diff --git a/grammar.js b/grammar.js index 9a16575..3bf7c8f 100644 --- a/grammar.js +++ b/grammar.js @@ -252,6 +252,7 @@ module.exports = grammar(C, { seq( // C uses _declaration_declarator here for some nice macro parsing in function declarators, // but this causes a world of pain for C++ so we'll just stick to the normal _declarator here. + optional($.ms_call_modifier), $._declarator, optional($.gnu_asm_expression), ), diff --git a/src/grammar.json b/src/grammar.json index c5d7670..b698b7f 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -2988,7 +2988,7 @@ } }, { - "type": "REPEAT", + "type": "REPEAT1", "content": { "type": "SYMBOL", "name": "declaration" @@ -3023,6 +3023,18 @@ { "type": "SEQ", "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "ms_call_modifier" + }, + { + "type": "BLANK" + } + ] + }, { "type": "SYMBOL", "name": "_declarator" @@ -3066,6 +3078,18 @@ { "type": "SEQ", "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "ms_call_modifier" + }, + { + "type": "BLANK" + } + ] + }, { "type": "SYMBOL", "name": "_declarator" diff --git a/src/node-types.json b/src/node-types.json index f095c55..35e9a47 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -2034,6 +2034,10 @@ "type": "init_declarator", "named": true }, + { + "type": "ms_call_modifier", + "named": true + }, { "type": "operator_cast", "named": true diff --git a/src/parser.c b/src/parser.c index 9dbabce..561c47a 100644 --- a/src/parser.c +++ b/src/parser.c @@ -13,15 +13,15 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 8838 -#define LARGE_STATE_COUNT 2365 +#define STATE_COUNT 8971 +#define LARGE_STATE_COUNT 2397 #define SYMBOL_COUNT 552 #define ALIAS_COUNT 5 #define TOKEN_COUNT 222 #define EXTERNAL_TOKEN_COUNT 2 #define FIELD_COUNT 53 #define MAX_ALIAS_SEQUENCE_LENGTH 9 -#define PRODUCTION_ID_COUNT 228 +#define PRODUCTION_ID_COUNT 231 enum ts_symbol_identifiers { sym_identifier = 1, @@ -4162,8 +4162,8 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [115] = {.index = 165, .length = 3}, [116] = {.index = 168, .length = 3}, [117] = {.index = 171, .length = 3}, - [118] = {.index = 174, .length = 2}, - [119] = {.index = 176, .length = 3}, + [118] = {.index = 174, .length = 3}, + [119] = {.index = 177, .length = 2}, [120] = {.index = 179, .length = 3}, [121] = {.index = 182, .length = 2}, [122] = {.index = 184, .length = 3}, @@ -4218,59 +4218,62 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [172] = {.index = 280, .length = 1}, [173] = {.index = 281, .length = 1}, [174] = {.index = 282, .length = 4}, - [175] = {.index = 286, .length = 2}, - [176] = {.index = 288, .length = 4}, - [177] = {.index = 292, .length = 1}, - [178] = {.index = 293, .length = 3}, - [179] = {.index = 296, .length = 2}, - [180] = {.index = 298, .length = 3}, - [181] = {.index = 301, .length = 5}, - [182] = {.index = 306, .length = 2}, - [183] = {.index = 308, .length = 2}, - [184] = {.index = 310, .length = 1}, - [185] = {.index = 311, .length = 2}, - [186] = {.index = 313, .length = 4}, - [187] = {.index = 317, .length = 2}, - [188] = {.index = 319, .length = 2}, - [189] = {.index = 321, .length = 3}, - [190] = {.index = 324, .length = 4}, + [175] = {.index = 286, .length = 4}, + [176] = {.index = 290, .length = 4}, + [177] = {.index = 294, .length = 2}, + [178] = {.index = 296, .length = 1}, + [179] = {.index = 297, .length = 3}, + [180] = {.index = 300, .length = 2}, + [181] = {.index = 302, .length = 3}, + [182] = {.index = 305, .length = 5}, + [183] = {.index = 310, .length = 2}, + [184] = {.index = 312, .length = 2}, + [185] = {.index = 314, .length = 1}, + [186] = {.index = 315, .length = 2}, + [187] = {.index = 317, .length = 4}, + [188] = {.index = 321, .length = 2}, + [189] = {.index = 323, .length = 2}, + [190] = {.index = 325, .length = 3}, [191] = {.index = 328, .length = 4}, - [192] = {.index = 332, .length = 3}, - [193] = {.index = 335, .length = 2}, - [194] = {.index = 337, .length = 3}, - [195] = {.index = 340, .length = 3}, - [196] = {.index = 343, .length = 2}, - [197] = {.index = 345, .length = 2}, - [198] = {.index = 347, .length = 2}, - [199] = {.index = 349, .length = 2}, - [200] = {.index = 351, .length = 3}, - [201] = {.index = 354, .length = 2}, - [202] = {.index = 356, .length = 2}, - [203] = {.index = 358, .length = 3}, - [204] = {.index = 361, .length = 3}, - [205] = {.index = 364, .length = 2}, - [206] = {.index = 366, .length = 2}, - [207] = {.index = 368, .length = 4}, - [208] = {.index = 372, .length = 5}, - [209] = {.index = 377, .length = 3}, + [192] = {.index = 332, .length = 4}, + [193] = {.index = 336, .length = 3}, + [194] = {.index = 339, .length = 2}, + [195] = {.index = 341, .length = 3}, + [196] = {.index = 344, .length = 3}, + [197] = {.index = 347, .length = 2}, + [198] = {.index = 349, .length = 2}, + [199] = {.index = 351, .length = 2}, + [200] = {.index = 353, .length = 2}, + [201] = {.index = 355, .length = 3}, + [202] = {.index = 358, .length = 2}, + [203] = {.index = 360, .length = 2}, + [204] = {.index = 362, .length = 3}, + [205] = {.index = 365, .length = 5}, + [206] = {.index = 370, .length = 3}, + [207] = {.index = 373, .length = 3}, + [208] = {.index = 376, .length = 2}, + [209] = {.index = 378, .length = 2}, [210] = {.index = 380, .length = 4}, - [211] = {.index = 384, .length = 2}, - [212] = {.index = 386, .length = 1}, - [213] = {.index = 387, .length = 4}, - [214] = {.index = 391, .length = 3}, - [215] = {.index = 394, .length = 2}, - [216] = {.index = 396, .length = 1}, - [217] = {.index = 397, .length = 5}, - [218] = {.index = 402, .length = 2}, - [219] = {.index = 404, .length = 2}, - [220] = {.index = 65, .length = 1}, - [221] = {.index = 406, .length = 5}, - [222] = {.index = 411, .length = 4}, - [223] = {.index = 415, .length = 2}, - [224] = {.index = 417, .length = 2}, - [225] = {.index = 419, .length = 5}, - [226] = {.index = 424, .length = 2}, - [227] = {.index = 426, .length = 3}, + [211] = {.index = 384, .length = 5}, + [212] = {.index = 389, .length = 3}, + [213] = {.index = 392, .length = 4}, + [214] = {.index = 396, .length = 2}, + [215] = {.index = 398, .length = 1}, + [216] = {.index = 399, .length = 4}, + [217] = {.index = 403, .length = 3}, + [218] = {.index = 406, .length = 2}, + [219] = {.index = 408, .length = 1}, + [220] = {.index = 409, .length = 5}, + [221] = {.index = 414, .length = 2}, + [222] = {.index = 416, .length = 2}, + [223] = {.index = 65, .length = 1}, + [224] = {.index = 418, .length = 5}, + [225] = {.index = 423, .length = 4}, + [226] = {.index = 427, .length = 2}, + [227] = {.index = 429, .length = 2}, + [228] = {.index = 431, .length = 5}, + [229] = {.index = 436, .length = 2}, + [230] = {.index = 438, .length = 3}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -4543,16 +4546,16 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_placement, 1}, {field_type, 2}, [171] = - {field_body, 3}, + {field_declarator, 1}, {field_declarator, 2}, {field_type, 0, .inherited = true}, [174] = - {field_declarator, 0}, - {field_value, 2}, - [176] = - {field_declarator, 1}, + {field_body, 3}, {field_declarator, 2}, {field_type, 0, .inherited = true}, + [177] = + {field_declarator, 0}, + {field_value, 2}, [179] = {field_declarator, 1}, {field_declarator, 2, .inherited = true}, @@ -4711,195 +4714,210 @@ static const TSFieldMapEntry ts_field_map_entries[] = { [286] = {field_declarator, 1}, {field_declarator, 2}, - [288] = + {field_declarator, 3}, + {field_type, 0, .inherited = true}, + [290] = {field_declarator, 1}, {field_declarator, 2}, {field_declarator, 3, .inherited = true}, {field_type, 0, .inherited = true}, - [292] = + [294] = + {field_declarator, 1}, + {field_declarator, 2}, + [296] = {field_declarator, 4}, - [293] = + [297] = {field_body, 4}, {field_declarator, 3}, {field_type, 1, .inherited = true}, - [296] = + [300] = {field_declarator, 0}, {field_size, 3}, - [298] = + [302] = {field_alternative, 4}, {field_condition, 0}, {field_consequence, 2}, - [301] = + [305] = {field_body, 4}, {field_captures, 0}, {field_constraint, 2}, {field_declarator, 3}, {field_template_parameters, 1}, - [306] = + [310] = {field_declarator, 1}, {field_default_value, 3}, - [308] = + [312] = {field_alternative, 4}, {field_condition, 1}, - [310] = + [314] = {field_size, 2}, - [311] = + [315] = {field_name, 1}, {field_type, 4}, - [313] = + [317] = {field_arguments, 5}, {field_declarator, 4}, {field_placement, 2}, {field_type, 3}, - [317] = + [321] = {field_body, 2}, {field_filter, 1}, - [319] = + [323] = {field_left, 2}, {field_right, 4}, - [321] = + [325] = {field_declarator, 1}, {field_default_value, 2}, {field_type, 0, .inherited = true}, - [324] = + [328] = {field_declarator, 1}, {field_declarator, 2, .inherited = true}, {field_default_value, 2, .inherited = true}, {field_type, 0, .inherited = true}, - [328] = + [332] = {field_declarator, 0, .inherited = true}, {field_declarator, 1, .inherited = true}, {field_default_value, 0, .inherited = true}, {field_default_value, 1, .inherited = true}, - [332] = + [336] = {field_declarator, 1}, {field_type, 0, .inherited = true}, {field_value, 3}, - [335] = + [339] = {field_condition, 1}, {field_update, 3}, - [337] = + [341] = {field_condition, 1}, {field_initializer, 0}, {field_update, 3}, - [340] = + [344] = {field_declarator, 1}, {field_right, 3}, {field_type, 0, .inherited = true}, - [343] = + [347] = {field_initializer, 0}, {field_update, 3}, - [345] = + [349] = {field_condition, 2}, {field_initializer, 0}, - [347] = + [351] = {field_member, 4}, {field_type, 2}, - [349] = + [353] = {field_operand, 1}, {field_operand, 2, .inherited = true}, - [351] = + [355] = {field_assembly_code, 2}, {field_input_operands, 4}, {field_output_operands, 3}, - [354] = + [358] = {field_assembly_code, 3}, {field_output_operands, 4}, - [356] = + [360] = {field_default_type, 3}, {field_name, 1}, - [358] = + [362] = {field_declarator, 1}, {field_default_value, 3}, {field_type, 0, .inherited = true}, - [361] = + [365] = + {field_declarator, 1}, + {field_declarator, 2}, + {field_declarator, 3}, + {field_declarator, 4, .inherited = true}, + {field_type, 0, .inherited = true}, + [370] = + {field_declarator, 1}, + {field_declarator, 2}, + {field_declarator, 3}, + [373] = {field_name, 5}, {field_namespace, 1}, {field_prefix, 3}, - [364] = + [376] = {field_end, 3}, {field_start, 1}, - [366] = + [378] = {field_declarator, 1}, {field_default_value, 2}, - [368] = + [380] = {field_declarator, 1}, {field_declarator, 3, .inherited = true}, {field_default_value, 3, .inherited = true}, {field_type, 0, .inherited = true}, - [372] = + [384] = {field_declarator, 1}, {field_declarator, 3, .inherited = true}, {field_default_value, 2}, {field_default_value, 3, .inherited = true}, {field_type, 0, .inherited = true}, - [377] = + [389] = {field_condition, 2}, {field_initializer, 0}, {field_update, 4}, - [380] = + [392] = {field_declarator, 2}, {field_initializer, 0}, {field_right, 4}, {field_type, 1, .inherited = true}, - [384] = + [396] = {field_operand, 0, .inherited = true}, {field_operand, 1, .inherited = true}, - [386] = + [398] = {field_register, 1}, - [387] = + [399] = {field_assembly_code, 2}, {field_clobbers, 5}, {field_input_operands, 4}, {field_output_operands, 3}, - [391] = + [403] = {field_assembly_code, 3}, {field_input_operands, 5}, {field_output_operands, 4}, - [394] = + [406] = {field_condition, 2}, {field_message, 4}, - [396] = + [408] = {field_delimiter, 1}, - [397] = + [409] = {field_declarator, 1}, {field_declarator, 4, .inherited = true}, {field_default_value, 3}, {field_default_value, 4, .inherited = true}, {field_type, 0, .inherited = true}, - [402] = + [414] = {field_constraint, 0}, {field_value, 2}, - [404] = + [416] = {field_register, 1}, {field_register, 2, .inherited = true}, - [406] = + [418] = {field_assembly_code, 2}, {field_clobbers, 5}, {field_goto_labels, 6}, {field_input_operands, 4}, {field_output_operands, 3}, - [411] = + [423] = {field_assembly_code, 3}, {field_clobbers, 6}, {field_input_operands, 5}, {field_output_operands, 4}, - [415] = + [427] = {field_register, 0, .inherited = true}, {field_register, 1, .inherited = true}, - [417] = + [429] = {field_label, 1}, {field_label, 2, .inherited = true}, - [419] = + [431] = {field_assembly_code, 3}, {field_clobbers, 6}, {field_goto_labels, 7}, {field_input_operands, 5}, {field_output_operands, 4}, - [424] = + [436] = {field_label, 0, .inherited = true}, {field_label, 1, .inherited = true}, - [426] = + [438] = {field_constraint, 3}, {field_symbol, 1}, {field_value, 5}, @@ -4995,13 +5013,13 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [171] = { [1] = alias_sym_namespace_identifier, }, - [185] = { + [186] = { [1] = alias_sym_type_identifier, }, - [198] = { + [199] = { [4] = alias_sym_field_identifier, }, - [202] = { + [203] = { [1] = alias_sym_type_identifier, }, }; @@ -5033,107 +5051,107 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [13] = 13, [14] = 14, [15] = 15, - [16] = 14, + [16] = 16, [17] = 17, - [18] = 17, - [19] = 15, - [20] = 17, + [18] = 18, + [19] = 19, + [20] = 20, [21] = 14, [22] = 13, - [23] = 13, - [24] = 15, + [23] = 15, + [24] = 18, [25] = 14, - [26] = 17, - [27] = 27, - [28] = 13, - [29] = 15, - [30] = 30, - [31] = 31, - [32] = 32, + [26] = 13, + [27] = 15, + [28] = 18, + [29] = 14, + [30] = 13, + [31] = 15, + [32] = 18, [33] = 33, [34] = 34, [35] = 35, [36] = 36, [37] = 37, [38] = 33, - [39] = 36, - [40] = 40, + [39] = 39, + [40] = 36, [41] = 41, - [42] = 33, - [43] = 43, - [44] = 36, - [45] = 40, - [46] = 41, - [47] = 47, - [48] = 43, - [49] = 43, - [50] = 36, - [51] = 51, - [52] = 40, - [53] = 41, - [54] = 43, - [55] = 55, + [42] = 42, + [43] = 36, + [44] = 44, + [45] = 39, + [46] = 36, + [47] = 41, + [48] = 44, + [49] = 49, + [50] = 39, + [51] = 36, + [52] = 41, + [53] = 33, + [54] = 36, + [55] = 39, [56] = 36, - [57] = 40, - [58] = 41, - [59] = 36, - [60] = 40, - [61] = 36, - [62] = 40, - [63] = 63, - [64] = 36, - [65] = 40, + [57] = 39, + [58] = 36, + [59] = 39, + [60] = 36, + [61] = 61, + [62] = 39, + [63] = 36, + [64] = 41, + [65] = 39, [66] = 36, - [67] = 40, - [68] = 40, - [69] = 36, - [70] = 40, + [67] = 39, + [68] = 36, + [69] = 44, + [70] = 39, [71] = 36, - [72] = 40, - [73] = 36, - [74] = 40, - [75] = 36, - [76] = 40, - [77] = 36, - [78] = 40, - [79] = 36, - [80] = 40, - [81] = 36, - [82] = 40, - [83] = 40, - [84] = 36, + [72] = 72, + [73] = 39, + [74] = 36, + [75] = 39, + [76] = 36, + [77] = 39, + [78] = 36, + [79] = 39, + [80] = 39, + [81] = 39, + [82] = 36, + [83] = 39, + [84] = 44, [85] = 85, [86] = 86, [87] = 87, [88] = 88, [89] = 89, - [90] = 87, + [90] = 86, [91] = 89, - [92] = 86, - [93] = 88, - [94] = 85, - [95] = 88, - [96] = 89, - [97] = 85, + [92] = 88, + [93] = 85, + [94] = 87, + [95] = 86, + [96] = 85, + [97] = 87, [98] = 89, - [99] = 86, - [100] = 87, + [99] = 88, + [100] = 85, [101] = 86, [102] = 88, - [103] = 85, - [104] = 87, + [103] = 87, + [104] = 89, [105] = 105, - [106] = 87, - [107] = 85, - [108] = 89, - [109] = 109, - [110] = 109, - [111] = 109, - [112] = 109, - [113] = 109, - [114] = 88, - [115] = 86, - [116] = 109, + [106] = 88, + [107] = 107, + [108] = 85, + [109] = 107, + [110] = 107, + [111] = 86, + [112] = 107, + [113] = 87, + [114] = 89, + [115] = 107, + [116] = 107, [117] = 117, [118] = 117, [119] = 117, @@ -5142,15 +5160,15 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [122] = 117, [123] = 123, [124] = 124, - [125] = 124, - [126] = 124, + [125] = 123, + [126] = 123, [127] = 127, - [128] = 127, - [129] = 127, - [130] = 127, - [131] = 127, - [132] = 127, - [133] = 133, + [128] = 128, + [129] = 128, + [130] = 128, + [131] = 128, + [132] = 128, + [133] = 128, [134] = 134, [135] = 135, [136] = 136, @@ -5158,107 +5176,107 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [138] = 137, [139] = 139, [140] = 140, - [141] = 141, - [142] = 139, - [143] = 143, - [144] = 143, + [141] = 139, + [142] = 142, + [143] = 142, + [144] = 144, [145] = 140, - [146] = 141, - [147] = 140, - [148] = 139, - [149] = 143, - [150] = 141, - [151] = 140, - [152] = 139, - [153] = 143, - [154] = 143, - [155] = 143, - [156] = 143, + [146] = 144, + [147] = 139, + [148] = 142, + [149] = 140, + [150] = 144, + [151] = 142, + [152] = 142, + [153] = 139, + [154] = 142, + [155] = 137, + [156] = 142, [157] = 139, - [158] = 137, + [158] = 144, [159] = 139, [160] = 139, - [161] = 139, - [162] = 143, - [163] = 143, - [164] = 141, - [165] = 139, - [166] = 143, - [167] = 139, - [168] = 143, - [169] = 139, - [170] = 143, + [161] = 142, + [162] = 142, + [163] = 139, + [164] = 139, + [165] = 142, + [166] = 139, + [167] = 142, + [168] = 139, + [169] = 142, + [170] = 140, [171] = 139, - [172] = 143, + [172] = 142, [173] = 139, [174] = 174, [175] = 175, - [176] = 176, - [177] = 174, + [176] = 175, + [177] = 177, [178] = 178, - [179] = 179, - [180] = 176, - [181] = 178, + [179] = 177, + [180] = 174, + [181] = 181, [182] = 182, [183] = 183, - [184] = 184, - [185] = 175, - [186] = 176, - [187] = 179, - [188] = 176, - [189] = 174, - [190] = 182, - [191] = 183, - [192] = 184, - [193] = 141, - [194] = 178, + [184] = 181, + [185] = 178, + [186] = 175, + [187] = 177, + [188] = 178, + [189] = 175, + [190] = 177, + [191] = 174, + [192] = 140, + [193] = 174, + [194] = 181, [195] = 182, [196] = 183, - [197] = 184, - [198] = 182, - [199] = 178, - [200] = 178, - [201] = 184, - [202] = 182, - [203] = 179, - [204] = 183, - [205] = 174, - [206] = 184, - [207] = 176, - [208] = 174, - [209] = 137, - [210] = 141, - [211] = 178, - [212] = 182, - [213] = 183, - [214] = 184, - [215] = 176, - [216] = 179, - [217] = 175, - [218] = 179, - [219] = 179, - [220] = 174, - [221] = 175, - [222] = 175, - [223] = 183, + [197] = 178, + [198] = 175, + [199] = 181, + [200] = 182, + [201] = 201, + [202] = 183, + [203] = 201, + [204] = 182, + [205] = 175, + [206] = 174, + [207] = 183, + [208] = 137, + [209] = 181, + [210] = 182, + [211] = 183, + [212] = 177, + [213] = 178, + [214] = 178, + [215] = 201, + [216] = 140, + [217] = 174, + [218] = 181, + [219] = 182, + [220] = 201, + [221] = 183, + [222] = 201, + [223] = 177, [224] = 224, - [225] = 225, - [226] = 137, + [225] = 137, + [226] = 226, [227] = 137, [228] = 228, [229] = 229, [230] = 230, - [231] = 224, - [232] = 229, - [233] = 225, - [234] = 229, - [235] = 229, - [236] = 137, + [231] = 226, + [232] = 224, + [233] = 228, + [234] = 228, + [235] = 228, + [236] = 236, [237] = 237, [238] = 238, - [239] = 136, - [240] = 240, - [241] = 135, + [239] = 137, + [240] = 135, + [241] = 136, [242] = 242, [243] = 243, [244] = 244, @@ -5268,7 +5286,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [248] = 248, [249] = 249, [250] = 250, - [251] = 240, + [251] = 251, [252] = 252, [253] = 253, [254] = 254, @@ -5277,11 +5295,11 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [257] = 257, [258] = 258, [259] = 259, - [260] = 237, + [260] = 260, [261] = 261, [262] = 262, [263] = 263, - [264] = 264, + [264] = 236, [265] = 265, [266] = 266, [267] = 267, @@ -5291,22 +5309,22 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [271] = 271, [272] = 272, [273] = 273, - [274] = 274, + [274] = 237, [275] = 275, [276] = 276, - [277] = 277, + [277] = 238, [278] = 278, [279] = 279, [280] = 280, [281] = 281, - [282] = 238, + [282] = 282, [283] = 283, [284] = 284, [285] = 285, [286] = 286, [287] = 287, [288] = 288, - [289] = 242, + [289] = 289, [290] = 290, [291] = 291, [292] = 292, @@ -5314,17 +5332,17 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [294] = 294, [295] = 295, [296] = 296, - [297] = 259, - [298] = 261, - [299] = 263, - [300] = 264, + [297] = 297, + [298] = 298, + [299] = 299, + [300] = 273, [301] = 301, - [302] = 302, - [303] = 303, - [304] = 304, + [302] = 279, + [303] = 282, + [304] = 285, [305] = 305, [306] = 306, - [307] = 307, + [307] = 251, [308] = 308, [309] = 309, [310] = 310, @@ -5340,16 +5358,16 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [320] = 320, [321] = 321, [322] = 322, - [323] = 266, + [323] = 323, [324] = 324, [325] = 325, - [326] = 326, + [326] = 280, [327] = 327, [328] = 328, [329] = 329, [330] = 330, [331] = 331, - [332] = 332, + [332] = 262, [333] = 333, [334] = 334, [335] = 335, @@ -5359,1536 +5377,1536 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [339] = 339, [340] = 340, [341] = 341, - [342] = 255, - [343] = 247, - [344] = 270, - [345] = 277, + [342] = 342, + [343] = 343, + [344] = 344, + [345] = 345, [346] = 346, [347] = 347, - [348] = 348, - [349] = 349, - [350] = 350, + [348] = 259, + [349] = 283, + [350] = 258, [351] = 351, [352] = 352, - [353] = 258, + [353] = 353, [354] = 354, - [355] = 355, + [355] = 278, [356] = 356, [357] = 357, [358] = 358, - [359] = 225, + [359] = 359, [360] = 360, [361] = 361, - [362] = 224, + [362] = 362, [363] = 363, - [364] = 364, + [364] = 226, [365] = 365, [366] = 366, - [367] = 278, - [368] = 280, - [369] = 281, - [370] = 228, + [367] = 224, + [368] = 368, + [369] = 369, + [370] = 370, [371] = 371, - [372] = 262, - [373] = 245, - [374] = 339, - [375] = 375, - [376] = 376, + [372] = 270, + [373] = 271, + [374] = 275, + [375] = 276, + [376] = 229, [377] = 377, - [378] = 375, - [379] = 376, - [380] = 252, - [381] = 253, - [382] = 269, - [383] = 243, - [384] = 244, - [385] = 371, - [386] = 371, + [378] = 281, + [379] = 284, + [380] = 380, + [381] = 381, + [382] = 380, + [383] = 381, + [384] = 384, + [385] = 244, + [386] = 245, [387] = 246, - [388] = 230, - [389] = 339, - [390] = 248, - [391] = 375, - [392] = 376, - [393] = 377, - [394] = 377, - [395] = 395, - [396] = 396, - [397] = 397, - [398] = 398, - [399] = 371, - [400] = 274, - [401] = 279, - [402] = 371, - [403] = 254, - [404] = 271, - [405] = 267, - [406] = 265, - [407] = 371, - [408] = 371, - [409] = 225, - [410] = 371, - [411] = 371, - [412] = 371, - [413] = 268, - [414] = 371, - [415] = 273, - [416] = 371, - [417] = 417, - [418] = 371, - [419] = 419, - [420] = 275, - [421] = 371, - [422] = 276, - [423] = 256, - [424] = 371, - [425] = 224, - [426] = 371, - [427] = 371, - [428] = 250, - [429] = 249, - [430] = 430, - [431] = 272, - [432] = 432, - [433] = 433, - [434] = 293, - [435] = 229, - [436] = 229, - [437] = 430, - [438] = 228, - [439] = 230, - [440] = 440, - [441] = 440, - [442] = 257, - [443] = 443, - [444] = 229, - [445] = 228, - [446] = 229, - [447] = 230, - [448] = 229, + [388] = 247, + [389] = 248, + [390] = 250, + [391] = 377, + [392] = 242, + [393] = 252, + [394] = 230, + [395] = 377, + [396] = 254, + [397] = 347, + [398] = 384, + [399] = 380, + [400] = 381, + [401] = 384, + [402] = 402, + [403] = 256, + [404] = 404, + [405] = 405, + [406] = 406, + [407] = 377, + [408] = 272, + [409] = 260, + [410] = 263, + [411] = 377, + [412] = 268, + [413] = 257, + [414] = 377, + [415] = 249, + [416] = 377, + [417] = 226, + [418] = 377, + [419] = 377, + [420] = 253, + [421] = 377, + [422] = 377, + [423] = 377, + [424] = 286, + [425] = 425, + [426] = 377, + [427] = 427, + [428] = 265, + [429] = 377, + [430] = 266, + [431] = 224, + [432] = 377, + [433] = 377, + [434] = 377, + [435] = 243, + [436] = 255, + [437] = 437, + [438] = 267, + [439] = 439, + [440] = 261, + [441] = 347, + [442] = 442, + [443] = 269, + [444] = 228, + [445] = 297, + [446] = 437, + [447] = 228, + [448] = 448, [449] = 229, - [450] = 238, - [451] = 451, - [452] = 451, - [453] = 136, - [454] = 135, - [455] = 136, - [456] = 240, - [457] = 135, - [458] = 240, - [459] = 459, - [460] = 237, - [461] = 237, - [462] = 459, - [463] = 459, - [464] = 459, - [465] = 459, - [466] = 459, - [467] = 459, - [468] = 459, - [469] = 459, - [470] = 459, - [471] = 459, - [472] = 459, - [473] = 238, - [474] = 273, - [475] = 331, - [476] = 288, - [477] = 315, - [478] = 332, - [479] = 333, - [480] = 334, - [481] = 335, - [482] = 336, - [483] = 483, - [484] = 294, - [485] = 337, - [486] = 316, - [487] = 312, - [488] = 274, - [489] = 338, - [490] = 295, - [491] = 250, - [492] = 290, - [493] = 291, - [494] = 305, - [495] = 340, - [496] = 341, - [497] = 303, - [498] = 308, - [499] = 499, - [500] = 317, - [501] = 321, - [502] = 268, - [503] = 309, - [504] = 504, - [505] = 505, - [506] = 506, + [450] = 229, + [451] = 230, + [452] = 228, + [453] = 230, + [454] = 228, + [455] = 442, + [456] = 228, + [457] = 228, + [458] = 458, + [459] = 458, + [460] = 238, + [461] = 458, + [462] = 237, + [463] = 458, + [464] = 458, + [465] = 458, + [466] = 458, + [467] = 458, + [468] = 458, + [469] = 458, + [470] = 458, + [471] = 237, + [472] = 236, + [473] = 135, + [474] = 458, + [475] = 136, + [476] = 476, + [477] = 236, + [478] = 136, + [479] = 476, + [480] = 135, + [481] = 238, + [482] = 370, + [483] = 334, + [484] = 335, + [485] = 336, + [486] = 337, + [487] = 308, + [488] = 338, + [489] = 339, + [490] = 340, + [491] = 341, + [492] = 296, + [493] = 342, + [494] = 494, + [495] = 322, + [496] = 343, + [497] = 312, + [498] = 306, + [499] = 344, + [500] = 298, + [501] = 243, + [502] = 345, + [503] = 290, + [504] = 346, + [505] = 309, + [506] = 310, [507] = 507, - [508] = 508, + [508] = 317, [509] = 509, - [510] = 284, - [511] = 346, - [512] = 285, - [513] = 347, - [514] = 348, - [515] = 349, - [516] = 304, - [517] = 351, - [518] = 352, - [519] = 292, - [520] = 354, - [521] = 355, - [522] = 356, - [523] = 310, - [524] = 254, - [525] = 263, - [526] = 357, - [527] = 318, - [528] = 528, - [529] = 279, - [530] = 249, - [531] = 531, - [532] = 532, - [533] = 533, - [534] = 255, - [535] = 277, - [536] = 358, - [537] = 258, - [538] = 267, - [539] = 264, - [540] = 272, - [541] = 274, - [542] = 247, - [543] = 432, - [544] = 271, - [545] = 279, + [510] = 510, + [511] = 253, + [512] = 512, + [513] = 260, + [514] = 514, + [515] = 515, + [516] = 516, + [517] = 517, + [518] = 518, + [519] = 519, + [520] = 520, + [521] = 299, + [522] = 351, + [523] = 352, + [524] = 353, + [525] = 354, + [526] = 526, + [527] = 280, + [528] = 283, + [529] = 278, + [530] = 357, + [531] = 358, + [532] = 257, + [533] = 359, + [534] = 360, + [535] = 361, + [536] = 261, + [537] = 259, + [538] = 263, + [539] = 362, + [540] = 255, + [541] = 541, + [542] = 313, + [543] = 249, + [544] = 544, + [545] = 545, [546] = 546, - [547] = 296, - [548] = 255, - [549] = 277, - [550] = 258, - [551] = 551, - [552] = 267, - [553] = 272, - [554] = 247, - [555] = 555, - [556] = 254, - [557] = 557, - [558] = 271, - [559] = 257, - [560] = 265, + [547] = 286, + [548] = 265, + [549] = 266, + [550] = 363, + [551] = 267, + [552] = 269, + [553] = 273, + [554] = 279, + [555] = 282, + [556] = 556, + [557] = 439, + [558] = 263, + [559] = 268, + [560] = 260, [561] = 561, - [562] = 325, - [563] = 563, - [564] = 265, - [565] = 565, - [566] = 330, - [567] = 249, - [568] = 275, - [569] = 273, - [570] = 276, - [571] = 256, - [572] = 275, - [573] = 242, - [574] = 276, - [575] = 259, - [576] = 261, - [577] = 263, - [578] = 256, - [579] = 264, - [580] = 266, - [581] = 257, - [582] = 313, - [583] = 242, - [584] = 360, - [585] = 361, - [586] = 259, - [587] = 587, - [588] = 246, - [589] = 261, - [590] = 590, - [591] = 270, - [592] = 268, - [593] = 311, - [594] = 257, - [595] = 266, - [596] = 270, - [597] = 597, - [598] = 598, - [599] = 314, - [600] = 250, - [601] = 278, - [602] = 283, - [603] = 280, - [604] = 281, - [605] = 306, - [606] = 322, - [607] = 262, - [608] = 262, - [609] = 245, - [610] = 252, - [611] = 433, - [612] = 364, - [613] = 252, - [614] = 245, - [615] = 253, - [616] = 269, - [617] = 248, - [618] = 326, - [619] = 307, - [620] = 319, - [621] = 286, - [622] = 287, - [623] = 327, - [624] = 328, - [625] = 625, - [626] = 243, - [627] = 244, - [628] = 329, - [629] = 320, - [630] = 246, - [631] = 324, - [632] = 248, - [633] = 253, - [634] = 365, - [635] = 366, - [636] = 269, - [637] = 278, - [638] = 638, - [639] = 243, - [640] = 244, - [641] = 641, - [642] = 642, - [643] = 643, - [644] = 280, - [645] = 645, - [646] = 301, - [647] = 281, - [648] = 302, - [649] = 363, - [650] = 285, - [651] = 307, - [652] = 308, - [653] = 309, - [654] = 301, - [655] = 310, - [656] = 311, - [657] = 303, - [658] = 304, - [659] = 305, - [660] = 283, - [661] = 312, - [662] = 306, - [663] = 307, - [664] = 314, - [665] = 315, - [666] = 316, - [667] = 313, - [668] = 314, - [669] = 318, - [670] = 319, - [671] = 320, - [672] = 315, - [673] = 316, - [674] = 317, - [675] = 321, - [676] = 324, - [677] = 325, - [678] = 326, - [679] = 327, - [680] = 328, - [681] = 335, - [682] = 336, - [683] = 337, - [684] = 318, - [685] = 340, - [686] = 341, - [687] = 319, - [688] = 320, - [689] = 346, - [690] = 347, - [691] = 349, - [692] = 351, - [693] = 352, - [694] = 356, - [695] = 430, - [696] = 284, - [697] = 321, - [698] = 287, - [699] = 288, - [700] = 291, - [701] = 293, - [702] = 295, - [703] = 322, - [704] = 302, - [705] = 324, - [706] = 325, - [707] = 308, - [708] = 309, - [709] = 310, - [710] = 311, - [711] = 283, - [712] = 312, - [713] = 313, - [714] = 317, - [715] = 326, - [716] = 322, - [717] = 327, - [718] = 328, - [719] = 329, - [720] = 330, - [721] = 331, - [722] = 329, - [723] = 332, - [724] = 333, - [725] = 334, - [726] = 348, - [727] = 330, - [728] = 331, - [729] = 354, - [730] = 306, - [731] = 358, - [732] = 332, - [733] = 333, - [734] = 334, - [735] = 360, - [736] = 361, - [737] = 335, - [738] = 433, - [739] = 364, - [740] = 365, - [741] = 366, - [742] = 336, - [743] = 337, - [744] = 338, - [745] = 338, - [746] = 357, - [747] = 340, - [748] = 341, - [749] = 346, - [750] = 347, - [751] = 348, - [752] = 349, - [753] = 351, - [754] = 352, - [755] = 354, - [756] = 355, - [757] = 356, - [758] = 357, - [759] = 358, - [760] = 430, - [761] = 432, + [562] = 280, + [563] = 283, + [564] = 278, + [565] = 301, + [566] = 257, + [567] = 261, + [568] = 259, + [569] = 569, + [570] = 253, + [571] = 287, + [572] = 314, + [573] = 315, + [574] = 574, + [575] = 258, + [576] = 576, + [577] = 249, + [578] = 578, + [579] = 305, + [580] = 243, + [581] = 286, + [582] = 265, + [583] = 266, + [584] = 323, + [585] = 267, + [586] = 324, + [587] = 273, + [588] = 279, + [589] = 244, + [590] = 282, + [591] = 285, + [592] = 251, + [593] = 245, + [594] = 262, + [595] = 269, + [596] = 246, + [597] = 247, + [598] = 365, + [599] = 366, + [600] = 600, + [601] = 248, + [602] = 318, + [603] = 288, + [604] = 258, + [605] = 255, + [606] = 325, + [607] = 319, + [608] = 292, + [609] = 328, + [610] = 293, + [611] = 329, + [612] = 272, + [613] = 285, + [614] = 251, + [615] = 270, + [616] = 271, + [617] = 330, + [618] = 275, + [619] = 276, + [620] = 331, + [621] = 316, + [622] = 281, + [623] = 270, + [624] = 284, + [625] = 271, + [626] = 368, + [627] = 369, + [628] = 244, + [629] = 275, + [630] = 245, + [631] = 246, + [632] = 276, + [633] = 291, + [634] = 250, + [635] = 242, + [636] = 252, + [637] = 294, + [638] = 256, + [639] = 295, + [640] = 272, + [641] = 247, + [642] = 248, + [643] = 268, + [644] = 269, + [645] = 250, + [646] = 242, + [647] = 252, + [648] = 320, + [649] = 254, + [650] = 289, + [651] = 651, + [652] = 321, + [653] = 256, + [654] = 371, + [655] = 262, + [656] = 281, + [657] = 657, + [658] = 284, + [659] = 254, + [660] = 311, + [661] = 661, + [662] = 333, + [663] = 663, + [664] = 664, + [665] = 327, + [666] = 290, + [667] = 321, + [668] = 305, + [669] = 322, + [670] = 308, + [671] = 309, + [672] = 310, + [673] = 311, + [674] = 320, + [675] = 319, + [676] = 320, + [677] = 321, + [678] = 323, + [679] = 323, + [680] = 324, + [681] = 325, + [682] = 324, + [683] = 325, + [684] = 327, + [685] = 329, + [686] = 330, + [687] = 331, + [688] = 333, + [689] = 334, + [690] = 341, + [691] = 342, + [692] = 343, + [693] = 345, + [694] = 346, + [695] = 327, + [696] = 328, + [697] = 351, + [698] = 352, + [699] = 354, + [700] = 357, + [701] = 358, + [702] = 361, + [703] = 329, + [704] = 330, + [705] = 437, + [706] = 331, + [707] = 289, + [708] = 292, + [709] = 293, + [710] = 295, + [711] = 297, + [712] = 299, + [713] = 333, + [714] = 306, + [715] = 334, + [716] = 335, + [717] = 313, + [718] = 314, + [719] = 315, + [720] = 316, + [721] = 317, + [722] = 287, + [723] = 318, + [724] = 322, + [725] = 336, + [726] = 337, + [727] = 328, + [728] = 338, + [729] = 339, + [730] = 340, + [731] = 341, + [732] = 335, + [733] = 336, + [734] = 337, + [735] = 342, + [736] = 338, + [737] = 339, + [738] = 340, + [739] = 353, + [740] = 343, + [741] = 344, + [742] = 359, + [743] = 360, + [744] = 363, + [745] = 345, + [746] = 346, + [747] = 365, + [748] = 366, + [749] = 368, + [750] = 369, + [751] = 370, + [752] = 371, + [753] = 344, + [754] = 351, + [755] = 362, + [756] = 352, + [757] = 353, + [758] = 354, + [759] = 357, + [760] = 358, + [761] = 359, [762] = 360, [763] = 361, - [764] = 363, - [765] = 284, - [766] = 285, - [767] = 286, - [768] = 287, + [764] = 362, + [765] = 319, + [766] = 363, + [767] = 437, + [768] = 439, [769] = 288, - [770] = 305, - [771] = 290, - [772] = 291, - [773] = 292, - [774] = 293, - [775] = 433, - [776] = 364, + [770] = 365, + [771] = 366, + [772] = 289, + [773] = 290, + [774] = 291, + [775] = 292, + [776] = 293, [777] = 294, [778] = 295, [779] = 296, - [780] = 365, - [781] = 366, - [782] = 432, - [783] = 301, - [784] = 302, - [785] = 296, - [786] = 363, - [787] = 286, - [788] = 303, - [789] = 290, - [790] = 292, - [791] = 294, - [792] = 304, - [793] = 355, - [794] = 137, - [795] = 795, - [796] = 796, - [797] = 796, - [798] = 795, - [799] = 799, - [800] = 800, - [801] = 796, - [802] = 795, - [803] = 796, - [804] = 587, - [805] = 795, - [806] = 796, - [807] = 795, - [808] = 796, - [809] = 795, - [810] = 795, - [811] = 795, - [812] = 587, - [813] = 796, - [814] = 795, - [815] = 796, - [816] = 796, - [817] = 795, - [818] = 796, - [819] = 137, - [820] = 137, - [821] = 137, - [822] = 137, - [823] = 137, - [824] = 824, - [825] = 825, - [826] = 825, - [827] = 451, - [828] = 828, - [829] = 829, - [830] = 451, - [831] = 451, - [832] = 832, - [833] = 832, - [834] = 832, - [835] = 832, - [836] = 832, - [837] = 832, - [838] = 832, - [839] = 839, + [780] = 297, + [781] = 368, + [782] = 369, + [783] = 298, + [784] = 299, + [785] = 301, + [786] = 318, + [787] = 305, + [788] = 306, + [789] = 370, + [790] = 371, + [791] = 308, + [792] = 439, + [793] = 309, + [794] = 310, + [795] = 311, + [796] = 288, + [797] = 312, + [798] = 291, + [799] = 294, + [800] = 296, + [801] = 298, + [802] = 313, + [803] = 314, + [804] = 301, + [805] = 315, + [806] = 316, + [807] = 317, + [808] = 287, + [809] = 312, + [810] = 137, + [811] = 811, + [812] = 812, + [813] = 811, + [814] = 600, + [815] = 812, + [816] = 812, + [817] = 811, + [818] = 811, + [819] = 811, + [820] = 812, + [821] = 821, + [822] = 811, + [823] = 600, + [824] = 812, + [825] = 811, + [826] = 811, + [827] = 812, + [828] = 812, + [829] = 812, + [830] = 811, + [831] = 831, + [832] = 811, + [833] = 812, + [834] = 812, + [835] = 137, + [836] = 137, + [837] = 137, + [838] = 137, + [839] = 137, [840] = 840, [841] = 841, - [842] = 842, + [842] = 841, [843] = 843, - [844] = 844, - [845] = 845, + [844] = 476, + [845] = 476, [846] = 846, - [847] = 843, - [848] = 839, - [849] = 843, - [850] = 843, - [851] = 843, - [852] = 845, - [853] = 839, - [854] = 843, - [855] = 841, - [856] = 846, - [857] = 839, + [847] = 476, + [848] = 848, + [849] = 848, + [850] = 848, + [851] = 848, + [852] = 848, + [853] = 848, + [854] = 848, + [855] = 855, + [856] = 856, + [857] = 857, [858] = 858, [859] = 859, - [860] = 860, - [861] = 861, + [860] = 855, + [861] = 857, [862] = 862, - [863] = 843, - [864] = 841, - [865] = 861, - [866] = 844, - [867] = 841, - [868] = 224, - [869] = 869, - [870] = 451, - [871] = 451, - [872] = 225, - [873] = 873, - [874] = 873, - [875] = 873, - [876] = 873, - [877] = 451, - [878] = 135, - [879] = 879, - [880] = 829, - [881] = 828, - [882] = 238, - [883] = 237, - [884] = 240, - [885] = 136, - [886] = 266, - [887] = 269, - [888] = 258, - [889] = 267, - [890] = 261, - [891] = 244, - [892] = 272, - [893] = 275, - [894] = 273, - [895] = 278, - [896] = 280, - [897] = 250, - [898] = 276, - [899] = 246, - [900] = 860, - [901] = 901, - [902] = 265, - [903] = 252, - [904] = 279, - [905] = 277, - [906] = 255, - [907] = 247, - [908] = 243, - [909] = 901, - [910] = 274, - [911] = 268, - [912] = 253, - [913] = 256, - [914] = 262, - [915] = 248, - [916] = 270, - [917] = 259, - [918] = 281, - [919] = 264, - [920] = 263, - [921] = 254, - [922] = 245, - [923] = 249, - [924] = 271, - [925] = 242, - [926] = 926, - [927] = 927, - [928] = 928, - [929] = 928, - [930] = 930, - [931] = 931, - [932] = 932, - [933] = 927, - [934] = 934, - [935] = 935, - [936] = 928, - [937] = 932, - [938] = 934, - [939] = 939, - [940] = 930, - [941] = 932, - [942] = 935, - [943] = 930, - [944] = 934, - [945] = 928, - [946] = 932, - [947] = 935, - [948] = 930, - [949] = 934, - [950] = 930, - [951] = 935, - [952] = 928, - [953] = 932, - [954] = 934, - [955] = 930, - [956] = 935, - [957] = 927, - [958] = 934, - [959] = 930, - [960] = 935, - [961] = 935, - [962] = 934, - [963] = 928, - [964] = 930, - [965] = 928, - [966] = 935, - [967] = 934, - [968] = 932, - [969] = 930, - [970] = 928, - [971] = 935, - [972] = 928, - [973] = 934, - [974] = 928, - [975] = 927, - [976] = 931, - [977] = 927, - [978] = 927, - [979] = 934, - [980] = 928, - [981] = 981, - [982] = 934, - [983] = 934, - [984] = 934, - [985] = 928, - [986] = 928, - [987] = 987, - [988] = 987, - [989] = 989, - [990] = 987, - [991] = 989, - [992] = 931, - [993] = 989, - [994] = 987, - [995] = 987, - [996] = 987, - [997] = 989, - [998] = 989, - [999] = 989, - [1000] = 1000, - [1001] = 1001, - [1002] = 1002, - [1003] = 1003, - [1004] = 1004, - [1005] = 1005, - [1006] = 1006, - [1007] = 1006, + [863] = 863, + [864] = 864, + [865] = 856, + [866] = 855, + [867] = 857, + [868] = 863, + [869] = 857, + [870] = 863, + [871] = 855, + [872] = 872, + [873] = 855, + [874] = 863, + [875] = 875, + [876] = 855, + [877] = 858, + [878] = 878, + [879] = 872, + [880] = 880, + [881] = 881, + [882] = 855, + [883] = 880, + [884] = 476, + [885] = 885, + [886] = 224, + [887] = 476, + [888] = 226, + [889] = 889, + [890] = 889, + [891] = 891, + [892] = 891, + [893] = 891, + [894] = 476, + [895] = 895, + [896] = 889, + [897] = 889, + [898] = 891, + [899] = 889, + [900] = 889, + [901] = 237, + [902] = 236, + [903] = 903, + [904] = 843, + [905] = 136, + [906] = 135, + [907] = 846, + [908] = 238, + [909] = 909, + [910] = 247, + [911] = 248, + [912] = 263, + [913] = 249, + [914] = 252, + [915] = 286, + [916] = 265, + [917] = 266, + [918] = 254, + [919] = 255, + [920] = 267, + [921] = 285, + [922] = 273, + [923] = 279, + [924] = 282, + [925] = 270, + [926] = 256, + [927] = 909, + [928] = 281, + [929] = 284, + [930] = 271, + [931] = 260, + [932] = 243, + [933] = 242, + [934] = 262, + [935] = 280, + [936] = 244, + [937] = 272, + [938] = 253, + [939] = 258, + [940] = 283, + [941] = 278, + [942] = 245, + [943] = 257, + [944] = 261, + [945] = 275, + [946] = 276, + [947] = 268, + [948] = 259, + [949] = 246, + [950] = 859, + [951] = 251, + [952] = 250, + [953] = 953, + [954] = 954, + [955] = 955, + [956] = 956, + [957] = 957, + [958] = 954, + [959] = 955, + [960] = 957, + [961] = 956, + [962] = 955, + [963] = 957, + [964] = 956, + [965] = 957, + [966] = 957, + [967] = 955, + [968] = 954, + [969] = 954, + [970] = 957, + [971] = 954, + [972] = 956, + [973] = 956, + [974] = 955, + [975] = 957, + [976] = 954, + [977] = 977, + [978] = 977, + [979] = 979, + [980] = 954, + [981] = 956, + [982] = 977, + [983] = 957, + [984] = 977, + [985] = 954, + [986] = 977, + [987] = 954, + [988] = 956, + [989] = 955, + [990] = 957, + [991] = 977, + [992] = 955, + [993] = 993, + [994] = 957, + [995] = 954, + [996] = 954, + [997] = 957, + [998] = 954, + [999] = 956, + [1000] = 957, + [1001] = 955, + [1002] = 895, + [1003] = 957, + [1004] = 954, + [1005] = 955, + [1006] = 956, + [1007] = 895, [1008] = 1008, - [1009] = 1004, - [1010] = 1005, - [1011] = 1004, - [1012] = 1005, - [1013] = 1004, - [1014] = 1004, - [1015] = 1004, - [1016] = 1004, - [1017] = 1017, - [1018] = 1004, + [1009] = 1009, + [1010] = 1008, + [1011] = 1009, + [1012] = 1009, + [1013] = 1009, + [1014] = 1009, + [1015] = 1008, + [1016] = 1008, + [1017] = 1008, + [1018] = 1009, [1019] = 1008, - [1020] = 1008, - [1021] = 1008, - [1022] = 1006, - [1023] = 1008, - [1024] = 1006, - [1025] = 1006, - [1026] = 1004, - [1027] = 1008, - [1028] = 1008, - [1029] = 1029, - [1030] = 1030, - [1031] = 1031, - [1032] = 1031, + [1020] = 1020, + [1021] = 1021, + [1022] = 1022, + [1023] = 1023, + [1024] = 1024, + [1025] = 1025, + [1026] = 1026, + [1027] = 1026, + [1028] = 1026, + [1029] = 1025, + [1030] = 1023, + [1031] = 1026, + [1032] = 1026, [1033] = 1033, [1034] = 1034, - [1035] = 1035, - [1036] = 1031, - [1037] = 1037, - [1038] = 1038, - [1039] = 1039, - [1040] = 1040, - [1041] = 1041, - [1042] = 1042, - [1043] = 1043, - [1044] = 1044, - [1045] = 1045, - [1046] = 1046, - [1047] = 1046, - [1048] = 1048, - [1049] = 1046, + [1035] = 1034, + [1036] = 1026, + [1037] = 1025, + [1038] = 1034, + [1039] = 1023, + [1040] = 1034, + [1041] = 1034, + [1042] = 1034, + [1043] = 1034, + [1044] = 1034, + [1045] = 1026, + [1046] = 1025, + [1047] = 1025, + [1048] = 1034, + [1049] = 1049, [1050] = 1050, - [1051] = 1046, + [1051] = 1051, [1052] = 1052, [1053] = 1053, [1054] = 1054, [1055] = 1055, - [1056] = 1053, - [1057] = 1054, - [1058] = 1046, - [1059] = 1053, - [1060] = 1054, - [1061] = 1053, - [1062] = 1046, + [1056] = 1056, + [1057] = 1057, + [1058] = 1053, + [1059] = 1059, + [1060] = 1060, + [1061] = 1061, + [1062] = 1062, [1063] = 1053, - [1064] = 1053, - [1065] = 1053, + [1064] = 1064, + [1065] = 1065, [1066] = 1066, - [1067] = 1067, - [1068] = 1053, + [1067] = 1066, + [1068] = 1068, [1069] = 1069, [1070] = 1070, - [1071] = 1071, - [1072] = 1046, - [1073] = 1046, - [1074] = 1053, - [1075] = 1053, - [1076] = 1054, - [1077] = 1077, - [1078] = 1046, - [1079] = 1079, - [1080] = 1054, + [1071] = 1066, + [1072] = 1072, + [1073] = 1072, + [1074] = 1065, + [1075] = 1065, + [1076] = 1065, + [1077] = 1066, + [1078] = 1078, + [1079] = 1072, + [1080] = 1065, [1081] = 1081, - [1082] = 1053, - [1083] = 1083, - [1084] = 1084, - [1085] = 1046, - [1086] = 1054, - [1087] = 1046, - [1088] = 1046, - [1089] = 1046, - [1090] = 1054, - [1091] = 1053, - [1092] = 1053, + [1082] = 1072, + [1083] = 1066, + [1084] = 1066, + [1085] = 1085, + [1086] = 1066, + [1087] = 1066, + [1088] = 1072, + [1089] = 1065, + [1090] = 1066, + [1091] = 1091, + [1092] = 1065, [1093] = 1093, [1094] = 1094, [1095] = 1095, - [1096] = 1096, - [1097] = 1097, + [1096] = 1065, + [1097] = 1066, [1098] = 1098, [1099] = 1099, - [1100] = 1100, - [1101] = 1101, - [1102] = 1102, + [1100] = 1065, + [1101] = 1066, + [1102] = 1072, [1103] = 1103, - [1104] = 1104, - [1105] = 1105, - [1106] = 1106, - [1107] = 1107, - [1108] = 1108, + [1104] = 1066, + [1105] = 1065, + [1106] = 1066, + [1107] = 1065, + [1108] = 1072, [1109] = 1109, [1110] = 1110, - [1111] = 1109, + [1111] = 1065, [1112] = 1112, - [1113] = 1113, + [1113] = 1065, [1114] = 1114, [1115] = 1115, [1116] = 1116, - [1117] = 1112, + [1117] = 1117, [1118] = 1118, [1119] = 1119, [1120] = 1120, - [1121] = 1098, + [1121] = 1121, [1122] = 1122, [1123] = 1123, [1124] = 1124, [1125] = 1125, - [1126] = 1106, - [1127] = 1104, - [1128] = 1101, - [1129] = 1108, + [1126] = 1126, + [1127] = 1117, + [1128] = 1128, + [1129] = 1129, [1130] = 1130, - [1131] = 1099, + [1131] = 1131, [1132] = 1132, [1133] = 1133, - [1134] = 1130, - [1135] = 1122, - [1136] = 1136, - [1137] = 1122, + [1134] = 1128, + [1135] = 1135, + [1136] = 1119, + [1137] = 1133, [1138] = 1138, - [1139] = 1114, - [1140] = 1107, - [1141] = 1110, + [1139] = 1139, + [1140] = 1140, + [1141] = 1141, [1142] = 1142, - [1143] = 1122, - [1144] = 1136, + [1143] = 1143, + [1144] = 1144, [1145] = 1145, - [1146] = 1122, - [1147] = 1147, - [1148] = 1105, - [1149] = 1122, - [1150] = 1150, - [1151] = 1151, - [1152] = 1122, - [1153] = 1145, - [1154] = 1138, - [1155] = 1122, - [1156] = 1123, - [1157] = 1151, + [1146] = 1115, + [1147] = 1143, + [1148] = 1120, + [1149] = 1149, + [1150] = 1128, + [1151] = 1121, + [1152] = 1152, + [1153] = 1153, + [1154] = 1131, + [1155] = 1140, + [1156] = 1141, + [1157] = 1141, [1158] = 1122, - [1159] = 1125, - [1160] = 1122, - [1161] = 1142, - [1162] = 1116, - [1163] = 1138, - [1164] = 1096, - [1165] = 1138, + [1159] = 1143, + [1160] = 1133, + [1161] = 1138, + [1162] = 1141, + [1163] = 1163, + [1164] = 1131, + [1165] = 1141, [1166] = 1118, - [1167] = 1136, - [1168] = 1145, - [1169] = 1169, - [1170] = 1138, - [1171] = 1145, - [1172] = 1102, - [1173] = 1130, - [1174] = 1123, - [1175] = 1142, - [1176] = 1138, - [1177] = 1113, - [1178] = 1123, - [1179] = 1100, - [1180] = 1138, - [1181] = 1095, - [1182] = 1138, - [1183] = 1145, - [1184] = 1138, - [1185] = 1138, - [1186] = 1115, - [1187] = 1123, - [1188] = 1119, - [1189] = 1138, - [1190] = 1138, + [1167] = 1142, + [1168] = 1141, + [1169] = 1123, + [1170] = 1130, + [1171] = 1141, + [1172] = 1133, + [1173] = 1133, + [1174] = 1141, + [1175] = 1175, + [1176] = 1176, + [1177] = 1141, + [1178] = 1143, + [1179] = 1141, + [1180] = 1145, + [1181] = 1181, + [1182] = 1133, + [1183] = 1183, + [1184] = 1184, + [1185] = 1185, + [1186] = 1133, + [1187] = 1152, + [1188] = 1163, + [1189] = 1133, + [1190] = 1114, [1191] = 1191, - [1192] = 1132, - [1193] = 1124, - [1194] = 1150, - [1195] = 1097, - [1196] = 1133, - [1197] = 1103, - [1198] = 1130, - [1199] = 1136, - [1200] = 1138, - [1201] = 1201, - [1202] = 1202, - [1203] = 1203, - [1204] = 1204, - [1205] = 1205, - [1206] = 1206, + [1192] = 1183, + [1193] = 1176, + [1194] = 1144, + [1195] = 1135, + [1196] = 1135, + [1197] = 1133, + [1198] = 1138, + [1199] = 1139, + [1200] = 1124, + [1201] = 1131, + [1202] = 1125, + [1203] = 1131, + [1204] = 1185, + [1205] = 1133, + [1206] = 1153, [1207] = 1207, - [1208] = 1208, - [1209] = 1209, - [1210] = 1202, - [1211] = 1205, - [1212] = 1212, - [1213] = 1213, - [1214] = 1214, - [1215] = 1215, - [1216] = 1216, - [1217] = 1217, - [1218] = 1218, - [1219] = 1219, - [1220] = 1220, - [1221] = 1207, + [1208] = 1149, + [1209] = 1133, + [1210] = 1175, + [1211] = 1211, + [1212] = 1133, + [1213] = 1133, + [1214] = 1138, + [1215] = 1207, + [1216] = 1181, + [1217] = 1126, + [1218] = 1135, + [1219] = 1138, + [1220] = 1116, + [1221] = 1221, [1222] = 1222, [1223] = 1223, [1224] = 1224, - [1225] = 1208, - [1226] = 1209, - [1227] = 1205, - [1228] = 1214, - [1229] = 1217, - [1230] = 1208, - [1231] = 1209, - [1232] = 1207, - [1233] = 1208, + [1225] = 1225, + [1226] = 1226, + [1227] = 1227, + [1228] = 1228, + [1229] = 1229, + [1230] = 1230, + [1231] = 1231, + [1232] = 1232, + [1233] = 1233, [1234] = 1234, - [1235] = 1205, - [1236] = 1209, - [1237] = 1205, - [1238] = 1214, + [1235] = 1235, + [1236] = 1236, + [1237] = 1237, + [1238] = 1238, [1239] = 1239, - [1240] = 1217, + [1240] = 1240, [1241] = 1241, - [1242] = 1234, - [1243] = 1207, - [1244] = 1205, - [1245] = 1217, + [1242] = 1242, + [1243] = 1243, + [1244] = 1244, + [1245] = 1221, [1246] = 1246, - [1247] = 1215, - [1248] = 1248, + [1247] = 1225, + [1248] = 1226, [1249] = 1249, - [1250] = 1250, - [1251] = 1251, - [1252] = 1201, - [1253] = 1253, - [1254] = 1254, - [1255] = 1255, - [1256] = 1208, - [1257] = 1257, + [1250] = 1227, + [1251] = 1228, + [1252] = 1229, + [1253] = 1230, + [1254] = 1231, + [1255] = 1232, + [1256] = 1234, + [1257] = 1235, [1258] = 1258, - [1259] = 1209, - [1260] = 1260, - [1261] = 1214, - [1262] = 1241, - [1263] = 1234, - [1264] = 1205, - [1265] = 1246, - [1266] = 1249, - [1267] = 1250, - [1268] = 1251, - [1269] = 1201, - [1270] = 1254, - [1271] = 1255, - [1272] = 1257, - [1273] = 1258, - [1274] = 1260, - [1275] = 1214, - [1276] = 1276, - [1277] = 1253, - [1278] = 1278, - [1279] = 1217, - [1280] = 1208, - [1281] = 1207, - [1282] = 1246, - [1283] = 1249, - [1284] = 1250, + [1259] = 1259, + [1260] = 1221, + [1261] = 1261, + [1262] = 1223, + [1263] = 1233, + [1264] = 1246, + [1265] = 1265, + [1266] = 1233, + [1267] = 1242, + [1268] = 1242, + [1269] = 1243, + [1270] = 1221, + [1271] = 1246, + [1272] = 1272, + [1273] = 1225, + [1274] = 1226, + [1275] = 1249, + [1276] = 1227, + [1277] = 1228, + [1278] = 1229, + [1279] = 1230, + [1280] = 1231, + [1281] = 1232, + [1282] = 1234, + [1283] = 1235, + [1284] = 1243, [1285] = 1285, - [1286] = 1251, - [1287] = 1201, - [1288] = 1254, - [1289] = 1255, - [1290] = 1207, - [1291] = 1257, - [1292] = 1258, - [1293] = 1217, - [1294] = 1260, - [1295] = 1214, - [1296] = 1296, - [1297] = 1234, - [1298] = 1246, - [1299] = 1249, - [1300] = 1250, - [1301] = 1251, - [1302] = 1201, - [1303] = 1254, - [1304] = 1255, - [1305] = 1257, - [1306] = 1258, - [1307] = 1260, - [1308] = 1308, - [1309] = 1208, - [1310] = 1209, - [1311] = 1205, - [1312] = 1214, - [1313] = 1217, - [1314] = 1207, - [1315] = 1215, - [1316] = 1248, - [1317] = 1253, + [1286] = 1286, + [1287] = 1258, + [1288] = 1288, + [1289] = 1289, + [1290] = 1233, + [1291] = 1242, + [1292] = 1243, + [1293] = 1246, + [1294] = 1236, + [1295] = 1237, + [1296] = 1235, + [1297] = 1297, + [1298] = 1298, + [1299] = 1258, + [1300] = 1233, + [1301] = 1301, + [1302] = 1242, + [1303] = 1243, + [1304] = 1246, + [1305] = 1235, + [1306] = 1306, + [1307] = 1307, + [1308] = 1258, + [1309] = 1233, + [1310] = 1246, + [1311] = 1235, + [1312] = 1258, + [1313] = 1233, + [1314] = 1314, + [1315] = 1265, + [1316] = 1316, + [1317] = 1317, [1318] = 1318, - [1319] = 1208, - [1320] = 1209, - [1321] = 1248, - [1322] = 1241, - [1323] = 1234, - [1324] = 1205, - [1325] = 1325, - [1326] = 1326, - [1327] = 1209, - [1328] = 1328, - [1329] = 1329, - [1330] = 1241, - [1331] = 1246, - [1332] = 1249, - [1333] = 1250, - [1334] = 1251, - [1335] = 1201, - [1336] = 1254, - [1337] = 1255, - [1338] = 1257, - [1339] = 1258, - [1340] = 1260, - [1341] = 1214, - [1342] = 1342, - [1343] = 1234, - [1344] = 1207, - [1345] = 1345, - [1346] = 1217, - [1347] = 1207, - [1348] = 1234, - [1349] = 1246, + [1319] = 1242, + [1320] = 1243, + [1321] = 1259, + [1322] = 1221, + [1323] = 1246, + [1324] = 1324, + [1325] = 1225, + [1326] = 1226, + [1327] = 1249, + [1328] = 1227, + [1329] = 1228, + [1330] = 1229, + [1331] = 1230, + [1332] = 1231, + [1333] = 1232, + [1334] = 1234, + [1335] = 1335, + [1336] = 1235, + [1337] = 1337, + [1338] = 1242, + [1339] = 1243, + [1340] = 1258, + [1341] = 1222, + [1342] = 1244, + [1343] = 1259, + [1344] = 1221, + [1345] = 1233, + [1346] = 1221, + [1347] = 1246, + [1348] = 1225, + [1349] = 1226, [1350] = 1249, - [1351] = 1250, - [1352] = 1251, - [1353] = 1201, - [1354] = 1254, - [1355] = 1255, - [1356] = 1257, - [1357] = 1258, - [1358] = 1260, - [1359] = 1208, - [1360] = 1209, - [1361] = 1215, - [1362] = 1253, - [1363] = 1241, - [1364] = 1364, - [1365] = 1285, - [1366] = 1246, - [1367] = 1234, - [1368] = 1246, - [1369] = 1249, - [1370] = 1250, - [1371] = 1251, - [1372] = 1201, - [1373] = 1254, - [1374] = 1255, - [1375] = 1257, - [1376] = 1258, - [1377] = 1260, - [1378] = 1215, - [1379] = 1253, - [1380] = 1208, - [1381] = 1209, - [1382] = 1234, - [1383] = 1234, - [1384] = 1246, - [1385] = 1249, - [1386] = 1250, - [1387] = 1251, - [1388] = 1201, - [1389] = 1389, - [1390] = 1255, - [1391] = 1257, - [1392] = 1258, - [1393] = 1260, - [1394] = 1215, - [1395] = 1253, - [1396] = 1205, - [1397] = 1215, - [1398] = 1253, + [1351] = 1227, + [1352] = 1228, + [1353] = 1229, + [1354] = 1230, + [1355] = 1231, + [1356] = 1232, + [1357] = 1234, + [1358] = 1242, + [1359] = 1243, + [1360] = 1246, + [1361] = 1235, + [1362] = 1258, + [1363] = 1233, + [1364] = 1265, + [1365] = 1316, + [1366] = 1318, + [1367] = 1242, + [1368] = 1243, + [1369] = 1259, + [1370] = 1221, + [1371] = 1246, + [1372] = 1225, + [1373] = 1226, + [1374] = 1249, + [1375] = 1227, + [1376] = 1228, + [1377] = 1229, + [1378] = 1230, + [1379] = 1231, + [1380] = 1232, + [1381] = 1234, + [1382] = 1235, + [1383] = 1258, + [1384] = 1225, + [1385] = 1226, + [1386] = 1249, + [1387] = 1227, + [1388] = 1228, + [1389] = 1229, + [1390] = 1230, + [1391] = 1231, + [1392] = 1233, + [1393] = 1232, + [1394] = 1234, + [1395] = 1235, + [1396] = 1221, + [1397] = 1225, + [1398] = 1226, [1399] = 1249, - [1400] = 1250, - [1401] = 1251, - [1402] = 1201, - [1403] = 1254, - [1404] = 1246, - [1405] = 1249, - [1406] = 1250, - [1407] = 1251, - [1408] = 1215, - [1409] = 1201, - [1410] = 1253, - [1411] = 1254, - [1412] = 1255, - [1413] = 1257, - [1414] = 1258, - [1415] = 1260, - [1416] = 1214, - [1417] = 1215, - [1418] = 1253, - [1419] = 1217, - [1420] = 1215, - [1421] = 1253, - [1422] = 1218, - [1423] = 1219, - [1424] = 1255, - [1425] = 1257, - [1426] = 1258, - [1427] = 1260, + [1400] = 1227, + [1401] = 1228, + [1402] = 1229, + [1403] = 1230, + [1404] = 1231, + [1405] = 1232, + [1406] = 1234, + [1407] = 1242, + [1408] = 1243, + [1409] = 1265, + [1410] = 1318, + [1411] = 1259, + [1412] = 1412, + [1413] = 1316, + [1414] = 1221, + [1415] = 1225, + [1416] = 1226, + [1417] = 1249, + [1418] = 1227, + [1419] = 1228, + [1420] = 1229, + [1421] = 1230, + [1422] = 1231, + [1423] = 1232, + [1424] = 1234, + [1425] = 1265, + [1426] = 1426, + [1427] = 1318, [1428] = 1318, - [1429] = 1325, - [1430] = 1234, - [1431] = 1205, - [1432] = 1214, - [1433] = 1246, + [1429] = 1429, + [1430] = 1430, + [1431] = 1221, + [1432] = 1225, + [1433] = 1226, [1434] = 1249, - [1435] = 1250, - [1436] = 1251, - [1437] = 1201, - [1438] = 1254, - [1439] = 1255, - [1440] = 1257, - [1441] = 1258, - [1442] = 1260, - [1443] = 1214, + [1435] = 1227, + [1436] = 1228, + [1437] = 1229, + [1438] = 1230, + [1439] = 1231, + [1440] = 1232, + [1441] = 1234, + [1442] = 1265, + [1443] = 1318, [1444] = 1444, - [1445] = 1445, - [1446] = 1203, - [1447] = 1217, - [1448] = 1276, - [1449] = 1207, - [1450] = 1212, - [1451] = 1318, - [1452] = 1325, - [1453] = 1217, - [1454] = 1444, - [1455] = 1445, - [1456] = 1203, - [1457] = 1276, - [1458] = 1212, - [1459] = 1318, - [1460] = 1325, - [1461] = 1444, - [1462] = 1445, - [1463] = 1203, - [1464] = 1276, - [1465] = 1212, - [1466] = 1318, - [1467] = 1325, - [1468] = 1444, - [1469] = 1445, - [1470] = 1203, - [1471] = 1276, - [1472] = 1212, - [1473] = 1444, - [1474] = 1445, - [1475] = 1203, - [1476] = 1276, - [1477] = 1444, - [1478] = 1212, - [1479] = 1444, - [1480] = 1445, - [1481] = 1276, - [1482] = 1215, - [1483] = 1253, - [1484] = 1389, - [1485] = 1208, - [1486] = 1209, - [1487] = 1326, - [1488] = 1215, - [1489] = 1253, - [1490] = 1249, - [1491] = 1326, - [1492] = 1326, - [1493] = 1326, - [1494] = 1326, - [1495] = 1326, - [1496] = 1241, - [1497] = 1234, - [1498] = 1246, - [1499] = 1249, - [1500] = 1250, - [1501] = 1251, - [1502] = 1201, - [1503] = 1254, - [1504] = 1255, - [1505] = 1257, - [1506] = 1258, - [1507] = 1260, - [1508] = 1208, - [1509] = 1209, - [1510] = 1205, - [1511] = 1214, - [1512] = 1217, - [1513] = 1207, - [1514] = 1234, - [1515] = 1205, - [1516] = 1246, - [1517] = 1250, - [1518] = 1251, - [1519] = 1254, - [1520] = 1255, - [1521] = 1257, - [1522] = 1258, - [1523] = 1260, - [1524] = 1214, - [1525] = 1445, - [1526] = 1217, - [1527] = 1207, - [1528] = 1215, - [1529] = 1253, - [1530] = 1208, - [1531] = 1209, - [1532] = 1207, - [1533] = 1389, - [1534] = 1389, - [1535] = 1389, - [1536] = 1389, - [1537] = 1254, - [1538] = 1538, - [1539] = 1539, - [1540] = 1540, - [1541] = 1541, - [1542] = 1542, - [1543] = 1543, - [1544] = 1544, - [1545] = 1545, - [1546] = 1546, - [1547] = 1547, - [1548] = 1547, - [1549] = 1549, - [1550] = 338, - [1551] = 357, - [1552] = 1552, - [1553] = 1540, - [1554] = 1538, - [1555] = 1539, - [1556] = 1544, - [1557] = 1541, - [1558] = 1552, - [1559] = 1552, - [1560] = 1545, - [1561] = 1542, - [1562] = 1543, - [1563] = 1552, - [1564] = 1541, - [1565] = 1546, - [1566] = 1542, - [1567] = 1543, - [1568] = 1538, - [1569] = 1545, - [1570] = 1544, - [1571] = 1539, - [1572] = 1540, - [1573] = 1573, - [1574] = 1546, - [1575] = 1541, - [1576] = 931, - [1577] = 1546, + [1445] = 1265, + [1446] = 1318, + [1447] = 1265, + [1448] = 1318, + [1449] = 1265, + [1450] = 1318, + [1451] = 1265, + [1452] = 1318, + [1453] = 1258, + [1454] = 1297, + [1455] = 1272, + [1456] = 1221, + [1457] = 1246, + [1458] = 1225, + [1459] = 1226, + [1460] = 1249, + [1461] = 1227, + [1462] = 1228, + [1463] = 1229, + [1464] = 1230, + [1465] = 1231, + [1466] = 1232, + [1467] = 1234, + [1468] = 1235, + [1469] = 1238, + [1470] = 1429, + [1471] = 1430, + [1472] = 1258, + [1473] = 1224, + [1474] = 1233, + [1475] = 1306, + [1476] = 1297, + [1477] = 1272, + [1478] = 1258, + [1479] = 1238, + [1480] = 1429, + [1481] = 1430, + [1482] = 1224, + [1483] = 1306, + [1484] = 1297, + [1485] = 1272, + [1486] = 1238, + [1487] = 1429, + [1488] = 1430, + [1489] = 1224, + [1490] = 1306, + [1491] = 1297, + [1492] = 1272, + [1493] = 1238, + [1494] = 1429, + [1495] = 1430, + [1496] = 1224, + [1497] = 1306, + [1498] = 1238, + [1499] = 1429, + [1500] = 1430, + [1501] = 1224, + [1502] = 1306, + [1503] = 1238, + [1504] = 1429, + [1505] = 1224, + [1506] = 1265, + [1507] = 1318, + [1508] = 1242, + [1509] = 1243, + [1510] = 1426, + [1511] = 1265, + [1512] = 1318, + [1513] = 1226, + [1514] = 1426, + [1515] = 1426, + [1516] = 1426, + [1517] = 1426, + [1518] = 1426, + [1519] = 1259, + [1520] = 1225, + [1521] = 1226, + [1522] = 1249, + [1523] = 1227, + [1524] = 1228, + [1525] = 1229, + [1526] = 1230, + [1527] = 1231, + [1528] = 1232, + [1529] = 1234, + [1530] = 1242, + [1531] = 1243, + [1532] = 1246, + [1533] = 1235, + [1534] = 1258, + [1535] = 1233, + [1536] = 1221, + [1537] = 1246, + [1538] = 1225, + [1539] = 1249, + [1540] = 1227, + [1541] = 1228, + [1542] = 1229, + [1543] = 1230, + [1544] = 1231, + [1545] = 1232, + [1546] = 1234, + [1547] = 1235, + [1548] = 1258, + [1549] = 1233, + [1550] = 1265, + [1551] = 1318, + [1552] = 1242, + [1553] = 1243, + [1554] = 1222, + [1555] = 1222, + [1556] = 1222, + [1557] = 1222, + [1558] = 1249, + [1559] = 1559, + [1560] = 1560, + [1561] = 1561, + [1562] = 1562, + [1563] = 1563, + [1564] = 1564, + [1565] = 1565, + [1566] = 1314, + [1567] = 1567, + [1568] = 1561, + [1569] = 1563, + [1570] = 1565, + [1571] = 1562, + [1572] = 1560, + [1573] = 1559, + [1574] = 1564, + [1575] = 1567, + [1576] = 1576, + [1577] = 1576, [1578] = 1578, - [1579] = 931, - [1580] = 1545, - [1581] = 1538, - [1582] = 1542, - [1583] = 1544, - [1584] = 1540, - [1585] = 1585, - [1586] = 1546, - [1587] = 1539, - [1588] = 1543, - [1589] = 931, - [1590] = 1590, - [1591] = 1591, - [1592] = 1592, - [1593] = 1593, - [1594] = 1592, - [1595] = 1593, - [1596] = 1545, - [1597] = 1538, - [1598] = 1542, - [1599] = 1540, - [1600] = 1544, - [1601] = 1543, - [1602] = 1539, - [1603] = 1603, - [1604] = 1546, - [1605] = 1593, - [1606] = 1606, - [1607] = 1607, + [1579] = 344, + [1580] = 362, + [1581] = 1581, + [1582] = 1581, + [1583] = 1581, + [1584] = 1581, + [1585] = 1314, + [1586] = 1563, + [1587] = 1561, + [1588] = 1565, + [1589] = 1559, + [1590] = 1562, + [1591] = 1560, + [1592] = 1567, + [1593] = 1314, + [1594] = 1564, + [1595] = 1595, + [1596] = 1561, + [1597] = 895, + [1598] = 1598, + [1599] = 895, + [1600] = 1562, + [1601] = 1564, + [1602] = 1565, + [1603] = 1567, + [1604] = 1563, + [1605] = 1559, + [1606] = 1560, + [1607] = 1561, [1608] = 1608, - [1609] = 1609, + [1609] = 895, [1610] = 1610, [1611] = 1611, [1612] = 1612, [1613] = 1613, - [1614] = 1614, - [1615] = 1615, - [1616] = 1616, - [1617] = 1614, - [1618] = 1618, - [1619] = 1592, - [1620] = 1620, - [1621] = 1621, - [1622] = 1622, + [1614] = 1612, + [1615] = 1613, + [1616] = 1567, + [1617] = 1562, + [1618] = 1560, + [1619] = 1559, + [1620] = 1565, + [1621] = 1564, + [1622] = 1563, [1623] = 1623, - [1624] = 1593, - [1625] = 1592, - [1626] = 1578, + [1624] = 1561, + [1625] = 1561, + [1626] = 1613, [1627] = 1627, - [1628] = 1578, - [1629] = 1627, - [1630] = 1627, - [1631] = 1627, + [1628] = 1628, + [1629] = 1629, + [1630] = 1630, + [1631] = 1631, [1632] = 1632, - [1633] = 1578, - [1634] = 1585, - [1635] = 1593, + [1633] = 1633, + [1634] = 1634, + [1635] = 1612, [1636] = 1636, - [1637] = 1592, - [1638] = 1632, - [1639] = 1632, - [1640] = 1636, - [1641] = 1636, - [1642] = 1632, - [1643] = 1636, - [1644] = 1632, - [1645] = 1632, - [1646] = 1636, - [1647] = 1636, - [1648] = 1632, - [1649] = 1614, - [1650] = 1636, - [1651] = 1590, - [1652] = 1591, - [1653] = 1614, - [1654] = 1578, - [1655] = 1578, - [1656] = 1585, - [1657] = 1591, - [1658] = 1590, - [1659] = 1546, - [1660] = 1590, - [1661] = 1661, - [1662] = 1591, - [1663] = 1663, - [1664] = 1538, - [1665] = 1542, - [1666] = 1543, - [1667] = 1540, - [1668] = 1544, - [1669] = 1585, - [1670] = 1670, - [1671] = 1539, - [1672] = 1614, - [1673] = 1546, - [1674] = 1585, - [1675] = 1545, - [1676] = 1591, - [1677] = 228, - [1678] = 1678, - [1679] = 224, - [1680] = 1539, - [1681] = 1543, - [1682] = 1591, - [1683] = 1542, - [1684] = 1684, - [1685] = 1545, - [1686] = 230, - [1687] = 1538, - [1688] = 1590, - [1689] = 1689, - [1690] = 225, - [1691] = 1540, - [1692] = 1692, - [1693] = 1544, - [1694] = 1694, - [1695] = 1590, - [1696] = 1696, - [1697] = 1696, - [1698] = 1698, - [1699] = 1696, - [1700] = 1696, - [1701] = 1546, - [1702] = 136, - [1703] = 1703, - [1704] = 135, - [1705] = 1541, - [1706] = 238, - [1707] = 257, + [1637] = 1637, + [1638] = 1638, + [1639] = 1639, + [1640] = 1633, + [1641] = 1641, + [1642] = 1642, + [1643] = 1643, + [1644] = 1644, + [1645] = 1612, + [1646] = 1613, + [1647] = 1598, + [1648] = 1648, + [1649] = 1648, + [1650] = 1648, + [1651] = 1648, + [1652] = 1598, + [1653] = 1633, + [1654] = 1654, + [1655] = 1655, + [1656] = 1655, + [1657] = 1654, + [1658] = 1654, + [1659] = 1613, + [1660] = 1655, + [1661] = 1654, + [1662] = 1654, + [1663] = 1655, + [1664] = 1654, + [1665] = 1655, + [1666] = 1654, + [1667] = 1608, + [1668] = 1655, + [1669] = 1598, + [1670] = 1655, + [1671] = 1612, + [1672] = 1610, + [1673] = 1633, + [1674] = 1598, + [1675] = 1608, + [1676] = 1598, + [1677] = 1611, + [1678] = 1611, + [1679] = 1610, + [1680] = 1610, + [1681] = 1681, + [1682] = 1611, + [1683] = 1567, + [1684] = 1633, + [1685] = 1685, + [1686] = 1561, + [1687] = 1563, + [1688] = 1608, + [1689] = 1608, + [1690] = 1559, + [1691] = 1560, + [1692] = 1564, + [1693] = 1565, + [1694] = 1562, + [1695] = 1695, + [1696] = 1564, + [1697] = 1562, + [1698] = 229, + [1699] = 1565, + [1700] = 1567, + [1701] = 1563, + [1702] = 1610, + [1703] = 1559, + [1704] = 1704, + [1705] = 1705, + [1706] = 1560, + [1707] = 1611, [1708] = 1708, - [1709] = 257, - [1710] = 302, - [1711] = 1711, - [1712] = 325, - [1713] = 1713, - [1714] = 326, - [1715] = 327, - [1716] = 348, - [1717] = 349, - [1718] = 246, - [1719] = 1719, - [1720] = 1720, - [1721] = 1721, - [1722] = 1722, - [1723] = 1541, - [1724] = 351, - [1725] = 1725, - [1726] = 266, - [1727] = 352, - [1728] = 1728, - [1729] = 328, - [1730] = 262, + [1709] = 226, + [1710] = 230, + [1711] = 1610, + [1712] = 1611, + [1713] = 224, + [1714] = 1714, + [1715] = 1715, + [1716] = 1716, + [1717] = 1717, + [1718] = 1717, + [1719] = 1717, + [1720] = 1717, + [1721] = 1314, + [1722] = 135, + [1723] = 269, + [1724] = 1561, + [1725] = 269, + [1726] = 237, + [1727] = 1727, + [1728] = 136, + [1729] = 1729, + [1730] = 371, [1731] = 1731, - [1732] = 1543, - [1733] = 245, - [1734] = 1720, - [1735] = 338, + [1732] = 1732, + [1733] = 1733, + [1734] = 285, + [1735] = 251, [1736] = 1736, - [1737] = 1737, - [1738] = 1738, - [1739] = 248, - [1740] = 357, - [1741] = 263, - [1742] = 1731, - [1743] = 1743, - [1744] = 1720, - [1745] = 1745, - [1746] = 1746, - [1747] = 1747, - [1748] = 361, - [1749] = 433, - [1750] = 364, - [1751] = 1751, - [1752] = 1720, - [1753] = 1753, - [1754] = 1754, - [1755] = 1755, - [1756] = 264, - [1757] = 1542, - [1758] = 1758, + [1737] = 270, + [1738] = 271, + [1739] = 275, + [1740] = 276, + [1741] = 1741, + [1742] = 365, + [1743] = 366, + [1744] = 250, + [1745] = 242, + [1746] = 252, + [1747] = 256, + [1748] = 1748, + [1749] = 1314, + [1750] = 1750, + [1751] = 262, + [1752] = 281, + [1753] = 284, + [1754] = 344, + [1755] = 254, + [1756] = 362, + [1757] = 368, + [1758] = 369, [1759] = 1759, - [1760] = 1720, - [1761] = 354, - [1762] = 355, - [1763] = 1545, - [1764] = 1764, - [1765] = 1765, - [1766] = 1766, - [1767] = 1767, - [1768] = 1768, + [1760] = 1760, + [1761] = 370, + [1762] = 437, + [1763] = 289, + [1764] = 290, + [1765] = 291, + [1766] = 292, + [1767] = 293, + [1768] = 295, [1769] = 1769, [1770] = 1770, [1771] = 1771, - [1772] = 358, - [1773] = 1773, - [1774] = 312, - [1775] = 366, - [1776] = 329, - [1777] = 330, - [1778] = 1778, - [1779] = 1779, - [1780] = 1780, - [1781] = 331, - [1782] = 313, - [1783] = 1720, + [1772] = 1772, + [1773] = 297, + [1774] = 1774, + [1775] = 1775, + [1776] = 299, + [1777] = 1564, + [1778] = 306, + [1779] = 1759, + [1780] = 311, + [1781] = 312, + [1782] = 1782, + [1783] = 313, [1784] = 1784, - [1785] = 1785, - [1786] = 1539, - [1787] = 332, - [1788] = 317, - [1789] = 1789, - [1790] = 1790, - [1791] = 278, - [1792] = 430, + [1785] = 314, + [1786] = 315, + [1787] = 1565, + [1788] = 1562, + [1789] = 1567, + [1790] = 316, + [1791] = 1791, + [1792] = 317, [1793] = 1793, - [1794] = 280, - [1795] = 1795, - [1796] = 284, - [1797] = 285, - [1798] = 286, - [1799] = 1799, - [1800] = 1731, - [1801] = 287, - [1802] = 288, - [1803] = 281, - [1804] = 360, - [1805] = 333, - [1806] = 291, - [1807] = 293, + [1794] = 1794, + [1795] = 318, + [1796] = 322, + [1797] = 1797, + [1798] = 1563, + [1799] = 1559, + [1800] = 1560, + [1801] = 1801, + [1802] = 328, + [1803] = 330, + [1804] = 331, + [1805] = 1805, + [1806] = 1806, + [1807] = 333, [1808] = 1808, [1809] = 334, - [1810] = 1810, - [1811] = 295, - [1812] = 1720, + [1810] = 335, + [1811] = 336, + [1812] = 337, [1813] = 1813, [1814] = 1814, [1815] = 1815, [1816] = 1816, - [1817] = 322, - [1818] = 1818, + [1817] = 338, + [1818] = 339, [1819] = 1819, [1820] = 1820, - [1821] = 306, - [1822] = 307, - [1823] = 308, - [1824] = 1824, - [1825] = 1538, - [1826] = 1540, - [1827] = 309, - [1828] = 310, - [1829] = 311, - [1830] = 1544, - [1831] = 1731, - [1832] = 283, - [1833] = 365, + [1821] = 1821, + [1822] = 1822, + [1823] = 1823, + [1824] = 340, + [1825] = 1825, + [1826] = 1826, + [1827] = 1827, + [1828] = 1828, + [1829] = 1829, + [1830] = 353, + [1831] = 1831, + [1832] = 354, + [1833] = 1814, [1834] = 1834, - [1835] = 1835, - [1836] = 228, - [1837] = 1837, - [1838] = 230, + [1835] = 1759, + [1836] = 357, + [1837] = 1814, + [1838] = 1759, [1839] = 1839, [1840] = 1840, - [1841] = 1841, + [1841] = 358, [1842] = 1842, [1843] = 1843, - [1844] = 1603, - [1845] = 225, - [1846] = 225, - [1847] = 1847, - [1848] = 1848, - [1849] = 1849, - [1850] = 1850, - [1851] = 224, + [1844] = 1814, + [1845] = 1759, + [1846] = 1846, + [1847] = 1759, + [1848] = 1759, + [1849] = 359, + [1850] = 360, + [1851] = 1851, [1852] = 1852, - [1853] = 1853, + [1853] = 363, [1854] = 1854, - [1855] = 230, - [1856] = 1546, - [1857] = 1541, - [1858] = 1591, - [1859] = 1859, - [1860] = 1592, - [1861] = 1593, - [1862] = 228, - [1863] = 1670, + [1855] = 1855, + [1856] = 1856, + [1857] = 287, + [1858] = 1858, + [1859] = 1611, + [1860] = 1612, + [1861] = 1861, + [1862] = 226, + [1863] = 1623, [1864] = 1864, [1865] = 1865, - [1866] = 1866, - [1867] = 1867, - [1868] = 1590, - [1869] = 1592, - [1870] = 1870, - [1871] = 1871, + [1866] = 1610, + [1867] = 1613, + [1868] = 226, + [1869] = 230, + [1870] = 224, + [1871] = 229, [1872] = 1872, [1873] = 1873, [1874] = 1874, @@ -6896,7 +6914,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1876] = 1876, [1877] = 1877, [1878] = 1878, - [1879] = 1879, + [1879] = 224, [1880] = 1880, [1881] = 1881, [1882] = 1882, @@ -6904,6957 +6922,7090 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1884] = 1884, [1885] = 1885, [1886] = 1886, - [1887] = 1887, + [1887] = 1612, [1888] = 1888, - [1889] = 1593, - [1890] = 224, - [1891] = 135, + [1889] = 1889, + [1890] = 1890, + [1891] = 1685, [1892] = 1892, - [1893] = 1816, - [1894] = 829, - [1895] = 1546, - [1896] = 1541, - [1897] = 828, - [1898] = 1835, + [1893] = 1561, + [1894] = 1314, + [1895] = 1895, + [1896] = 1896, + [1897] = 1897, + [1898] = 1898, [1899] = 1899, [1900] = 1900, [1901] = 1901, [1902] = 1902, - [1903] = 1903, + [1903] = 230, [1904] = 1904, [1905] = 1905, - [1906] = 1813, - [1907] = 136, - [1908] = 1814, - [1909] = 1888, - [1910] = 1790, + [1906] = 1906, + [1907] = 1907, + [1908] = 1908, + [1909] = 1909, + [1910] = 229, [1911] = 1911, [1912] = 1912, - [1913] = 135, - [1914] = 257, + [1913] = 1913, + [1914] = 1613, [1915] = 1915, - [1916] = 1546, - [1917] = 257, - [1918] = 1585, - [1919] = 136, - [1920] = 238, - [1921] = 1813, - [1922] = 257, - [1923] = 1814, - [1924] = 1912, - [1925] = 1912, - [1926] = 1578, + [1916] = 1916, + [1917] = 1917, + [1918] = 1314, + [1919] = 1805, + [1920] = 1920, + [1921] = 1921, + [1922] = 1784, + [1923] = 1808, + [1924] = 1924, + [1925] = 1904, + [1926] = 843, [1927] = 1927, [1928] = 1928, - [1929] = 1912, - [1930] = 1930, - [1931] = 136, - [1932] = 1912, - [1933] = 1912, - [1934] = 1912, - [1935] = 1935, - [1936] = 1790, - [1937] = 238, + [1929] = 1929, + [1930] = 1806, + [1931] = 846, + [1932] = 1865, + [1933] = 136, + [1934] = 1561, + [1935] = 135, + [1936] = 135, + [1937] = 1937, [1938] = 1938, - [1939] = 257, - [1940] = 1940, - [1941] = 1603, + [1939] = 136, + [1940] = 1598, + [1941] = 1941, [1942] = 1942, - [1943] = 1943, - [1944] = 1944, - [1945] = 1816, + [1943] = 1784, + [1944] = 1805, + [1945] = 237, [1946] = 1946, [1947] = 1947, [1948] = 1948, [1949] = 135, - [1950] = 1950, + [1950] = 269, [1951] = 1951, - [1952] = 288, - [1953] = 264, - [1954] = 311, - [1955] = 1746, - [1956] = 1956, - [1957] = 1766, - [1958] = 278, - [1959] = 365, - [1960] = 1824, - [1961] = 1719, - [1962] = 1770, - [1963] = 1785, - [1964] = 364, - [1965] = 280, - [1966] = 281, - [1967] = 1759, - [1968] = 322, - [1969] = 1764, - [1970] = 1736, - [1971] = 1737, - [1972] = 1738, - [1973] = 263, - [1974] = 1743, - [1975] = 1745, - [1976] = 1746, - [1977] = 1747, - [1978] = 1751, - [1979] = 1753, - [1980] = 1754, - [1981] = 246, - [1982] = 1765, - [1983] = 1759, - [1984] = 1764, - [1985] = 1765, - [1986] = 1767, - [1987] = 1768, - [1988] = 1769, - [1989] = 306, - [1990] = 264, - [1991] = 307, - [1992] = 1684, - [1993] = 1993, - [1994] = 1767, - [1995] = 1771, - [1996] = 1778, - [1997] = 1793, - [1998] = 1795, - [1999] = 1808, - [2000] = 1810, - [2001] = 1815, - [2002] = 1819, - [2003] = 1820, - [2004] = 1711, - [2005] = 1689, - [2006] = 266, - [2007] = 430, - [2008] = 1747, - [2009] = 325, - [2010] = 1692, - [2011] = 262, - [2012] = 245, - [2013] = 338, - [2014] = 354, - [2015] = 355, - [2016] = 248, - [2017] = 357, - [2018] = 248, - [2019] = 326, - [2020] = 366, - [2021] = 283, - [2022] = 360, - [2023] = 1758, - [2024] = 361, - [2025] = 1766, - [2026] = 1768, - [2027] = 1769, - [2028] = 1771, - [2029] = 357, - [2030] = 327, - [2031] = 284, - [2032] = 285, - [2033] = 328, - [2034] = 1942, - [2035] = 329, - [2036] = 1778, - [2037] = 330, - [2038] = 331, - [2039] = 287, - [2040] = 1888, - [2041] = 309, - [2042] = 291, - [2043] = 293, - [2044] = 332, - [2045] = 1736, - [2046] = 278, - [2047] = 295, - [2048] = 1904, - [2049] = 333, - [2050] = 2050, - [2051] = 2051, - [2052] = 280, - [2053] = 2053, - [2054] = 281, - [2055] = 1614, - [2056] = 2056, - [2057] = 334, - [2058] = 1793, - [2059] = 1795, - [2060] = 1808, - [2061] = 1993, - [2062] = 1810, - [2063] = 1815, - [2064] = 2064, - [2065] = 1956, - [2066] = 302, - [2067] = 364, - [2068] = 1903, - [2069] = 1901, - [2070] = 1743, - [2071] = 358, - [2072] = 325, - [2073] = 326, - [2074] = 1819, - [2075] = 348, - [2076] = 349, - [2077] = 1820, - [2078] = 1711, - [2079] = 348, - [2080] = 308, - [2081] = 327, - [2082] = 328, - [2083] = 1755, - [2084] = 351, - [2085] = 309, - [2086] = 310, - [2087] = 311, - [2088] = 283, - [2089] = 246, - [2090] = 262, - [2091] = 352, - [2092] = 1993, - [2093] = 312, - [2094] = 313, - [2095] = 245, - [2096] = 312, - [2097] = 2064, - [2098] = 433, - [2099] = 1670, - [2100] = 266, - [2101] = 1779, - [2102] = 313, - [2103] = 317, - [2104] = 1789, - [2105] = 354, - [2106] = 1670, - [2107] = 1728, - [2108] = 355, - [2109] = 1738, - [2110] = 1799, - [2111] = 430, - [2112] = 2112, - [2113] = 317, - [2114] = 338, - [2115] = 2064, - [2116] = 2116, - [2117] = 1899, - [2118] = 1755, - [2119] = 284, - [2120] = 1779, - [2121] = 285, - [2122] = 1789, - [2123] = 1799, - [2124] = 286, - [2125] = 1824, - [2126] = 1719, - [2127] = 1751, - [2128] = 1770, - [2129] = 287, - [2130] = 1785, - [2131] = 1670, - [2132] = 288, - [2133] = 1753, - [2134] = 310, - [2135] = 2135, - [2136] = 1993, - [2137] = 291, - [2138] = 293, - [2139] = 365, - [2140] = 349, - [2141] = 351, - [2142] = 352, - [2143] = 295, - [2144] = 366, - [2145] = 322, - [2146] = 1754, - [2147] = 286, - [2148] = 358, - [2149] = 1903, - [2150] = 302, - [2151] = 1737, - [2152] = 1745, - [2153] = 306, - [2154] = 307, - [2155] = 1904, - [2156] = 308, - [2157] = 360, - [2158] = 1758, - [2159] = 1614, - [2160] = 329, - [2161] = 330, - [2162] = 331, - [2163] = 361, - [2164] = 263, - [2165] = 332, - [2166] = 333, - [2167] = 334, - [2168] = 433, - [2169] = 2169, - [2170] = 1592, - [2171] = 2171, - [2172] = 1784, - [2173] = 2173, - [2174] = 1713, - [2175] = 2175, - [2176] = 2176, - [2177] = 2177, - [2178] = 2171, - [2179] = 2171, - [2180] = 1593, - [2181] = 2181, - [2182] = 1689, - [2183] = 2183, - [2184] = 2171, - [2185] = 2185, - [2186] = 2186, - [2187] = 2187, - [2188] = 2171, - [2189] = 1684, - [2190] = 2190, - [2191] = 2191, - [2192] = 2192, - [2193] = 2193, - [2194] = 2194, - [2195] = 1818, - [2196] = 1692, - [2197] = 2197, - [2198] = 1585, - [2199] = 2171, - [2200] = 2200, - [2201] = 2201, - [2202] = 1670, - [2203] = 2203, - [2204] = 1670, - [2205] = 2050, - [2206] = 2206, - [2207] = 1887, - [2208] = 1670, - [2209] = 1722, - [2210] = 2210, - [2211] = 1940, - [2212] = 1591, - [2213] = 1721, - [2214] = 1943, + [1952] = 269, + [1953] = 1953, + [1954] = 1954, + [1955] = 1806, + [1956] = 1954, + [1957] = 269, + [1958] = 269, + [1959] = 1959, + [1960] = 1960, + [1961] = 1961, + [1962] = 1962, + [1963] = 1954, + [1964] = 237, + [1965] = 1954, + [1966] = 1808, + [1967] = 1954, + [1968] = 1954, + [1969] = 1954, + [1970] = 1970, + [1971] = 1971, + [1972] = 1623, + [1973] = 1973, + [1974] = 1608, + [1975] = 1561, + [1976] = 1976, + [1977] = 1977, + [1978] = 1978, + [1979] = 1979, + [1980] = 1980, + [1981] = 1981, + [1982] = 136, + [1983] = 1983, + [1984] = 1984, + [1985] = 1985, + [1986] = 1986, + [1987] = 314, + [1988] = 330, + [1989] = 359, + [1990] = 360, + [1991] = 1842, + [1992] = 285, + [1993] = 1846, + [1994] = 370, + [1995] = 312, + [1996] = 371, + [1997] = 363, + [1998] = 331, + [1999] = 292, + [2000] = 251, + [2001] = 313, + [2002] = 293, + [2003] = 1685, + [2004] = 1927, + [2005] = 1813, + [2006] = 2006, + [2007] = 2006, + [2008] = 2008, + [2009] = 1928, + [2010] = 311, + [2011] = 315, + [2012] = 285, + [2013] = 1927, + [2014] = 251, + [2015] = 316, + [2016] = 1851, + [2017] = 2017, + [2018] = 1854, + [2019] = 2008, + [2020] = 333, + [2021] = 334, + [2022] = 1852, + [2023] = 1685, + [2024] = 317, + [2025] = 270, + [2026] = 271, + [2027] = 275, + [2028] = 276, + [2029] = 287, + [2030] = 318, + [2031] = 1816, + [2032] = 312, + [2033] = 322, + [2034] = 250, + [2035] = 242, + [2036] = 2036, + [2037] = 1731, + [2038] = 252, + [2039] = 1736, + [2040] = 359, + [2041] = 256, + [2042] = 254, + [2043] = 1741, + [2044] = 1760, + [2045] = 1769, + [2046] = 1770, + [2047] = 1771, + [2048] = 1772, + [2049] = 1708, + [2050] = 365, + [2051] = 270, + [2052] = 1815, + [2053] = 366, + [2054] = 1705, + [2055] = 262, + [2056] = 1813, + [2057] = 1815, + [2058] = 271, + [2059] = 1819, + [2060] = 1820, + [2061] = 1821, + [2062] = 1822, + [2063] = 1823, + [2064] = 1825, + [2065] = 1826, + [2066] = 1827, + [2067] = 1829, + [2068] = 1831, + [2069] = 1839, + [2070] = 1840, + [2071] = 1842, + [2072] = 1846, + [2073] = 1852, + [2074] = 1855, + [2075] = 1774, + [2076] = 1775, + [2077] = 1801, + [2078] = 1828, + [2079] = 1843, + [2080] = 275, + [2081] = 1829, + [2082] = 1794, + [2083] = 276, + [2084] = 1819, + [2085] = 370, + [2086] = 362, + [2087] = 1714, + [2088] = 1732, + [2089] = 281, + [2090] = 284, + [2091] = 1733, + [2092] = 344, + [2093] = 2093, + [2094] = 295, + [2095] = 2036, + [2096] = 297, + [2097] = 1820, + [2098] = 437, + [2099] = 254, + [2100] = 362, + [2101] = 328, + [2102] = 1821, + [2103] = 1827, + [2104] = 354, + [2105] = 1822, + [2106] = 1823, + [2107] = 357, + [2108] = 289, + [2109] = 290, + [2110] = 291, + [2111] = 1633, + [2112] = 358, + [2113] = 330, + [2114] = 1947, + [2115] = 331, + [2116] = 1928, + [2117] = 353, + [2118] = 293, + [2119] = 299, + [2120] = 333, + [2121] = 2036, + [2122] = 334, + [2123] = 1865, + [2124] = 2124, + [2125] = 295, + [2126] = 297, + [2127] = 1633, + [2128] = 335, + [2129] = 299, + [2130] = 250, + [2131] = 242, + [2132] = 1915, + [2133] = 2133, + [2134] = 336, + [2135] = 337, + [2136] = 371, + [2137] = 252, + [2138] = 365, + [2139] = 2006, + [2140] = 338, + [2141] = 289, + [2142] = 339, + [2143] = 306, + [2144] = 313, + [2145] = 314, + [2146] = 315, + [2147] = 316, + [2148] = 317, + [2149] = 287, + [2150] = 340, + [2151] = 318, + [2152] = 262, + [2153] = 322, + [2154] = 1731, + [2155] = 1831, + [2156] = 363, + [2157] = 1839, + [2158] = 1825, + [2159] = 1840, + [2160] = 2160, + [2161] = 368, + [2162] = 369, + [2163] = 306, + [2164] = 360, + [2165] = 290, + [2166] = 368, + [2167] = 2036, + [2168] = 1855, + [2169] = 1774, + [2170] = 353, + [2171] = 1851, + [2172] = 1685, + [2173] = 354, + [2174] = 1775, + [2175] = 1736, + [2176] = 1801, + [2177] = 1741, + [2178] = 1828, + [2179] = 256, + [2180] = 1826, + [2181] = 1843, + [2182] = 1794, + [2183] = 328, + [2184] = 1760, + [2185] = 1769, + [2186] = 1770, + [2187] = 1771, + [2188] = 1772, + [2189] = 1732, + [2190] = 369, + [2191] = 335, + [2192] = 1733, + [2193] = 366, + [2194] = 336, + [2195] = 337, + [2196] = 2196, + [2197] = 1854, + [2198] = 291, + [2199] = 338, + [2200] = 339, + [2201] = 340, + [2202] = 1917, + [2203] = 281, + [2204] = 284, + [2205] = 344, + [2206] = 357, + [2207] = 358, + [2208] = 2208, + [2209] = 437, + [2210] = 311, + [2211] = 292, + [2212] = 2212, + [2213] = 2213, + [2214] = 2214, [2215] = 2215, - [2216] = 2116, - [2217] = 2217, + [2216] = 2216, + [2217] = 1685, [2218] = 2218, [2219] = 2219, - [2220] = 2220, - [2221] = 1843, - [2222] = 2222, - [2223] = 1849, - [2224] = 2224, - [2225] = 1877, - [2226] = 1864, - [2227] = 1865, - [2228] = 1866, - [2229] = 1590, - [2230] = 2197, - [2231] = 1870, - [2232] = 1871, - [2233] = 1872, - [2234] = 1928, - [2235] = 1885, - [2236] = 1684, - [2237] = 2237, - [2238] = 2238, - [2239] = 1670, - [2240] = 1878, - [2241] = 1880, - [2242] = 2242, - [2243] = 1881, - [2244] = 1540, - [2245] = 1879, - [2246] = 1882, + [2220] = 1608, + [2221] = 1797, + [2222] = 2215, + [2223] = 1612, + [2224] = 2124, + [2225] = 2225, + [2226] = 2226, + [2227] = 2227, + [2228] = 2228, + [2229] = 2229, + [2230] = 2230, + [2231] = 2231, + [2232] = 2232, + [2233] = 1714, + [2234] = 1708, + [2235] = 1705, + [2236] = 1793, + [2237] = 1685, + [2238] = 2215, + [2239] = 2215, + [2240] = 2240, + [2241] = 2215, + [2242] = 1782, + [2243] = 2243, + [2244] = 2244, + [2245] = 2245, + [2246] = 2246, [2247] = 2247, - [2248] = 1935, - [2249] = 1883, - [2250] = 1790, - [2251] = 1834, - [2252] = 1773, - [2253] = 1884, - [2254] = 1950, - [2255] = 1839, - [2256] = 1948, - [2257] = 1840, - [2258] = 1841, - [2259] = 1544, - [2260] = 1816, - [2261] = 1847, - [2262] = 1848, - [2263] = 1850, - [2264] = 1852, - [2265] = 1951, - [2266] = 2266, - [2267] = 1853, - [2268] = 1854, - [2269] = 1930, + [2248] = 2215, + [2249] = 1613, + [2250] = 1913, + [2251] = 1611, + [2252] = 1886, + [2253] = 2244, + [2254] = 2254, + [2255] = 1896, + [2256] = 1897, + [2257] = 1898, + [2258] = 1705, + [2259] = 1948, + [2260] = 1902, + [2261] = 1959, + [2262] = 1899, + [2263] = 1900, + [2264] = 1901, + [2265] = 1564, + [2266] = 1685, + [2267] = 1750, + [2268] = 1978, + [2269] = 1979, [2270] = 2270, [2271] = 2271, - [2272] = 1835, - [2273] = 1902, - [2274] = 1837, - [2275] = 1938, - [2276] = 2276, - [2277] = 1944, - [2278] = 1946, - [2279] = 2279, - [2280] = 2280, - [2281] = 2051, - [2282] = 1725, - [2283] = 1886, + [2272] = 1858, + [2273] = 2133, + [2274] = 1906, + [2275] = 1907, + [2276] = 2160, + [2277] = 1806, + [2278] = 1980, + [2279] = 1984, + [2280] = 1908, + [2281] = 1960, + [2282] = 1937, + [2283] = 1565, [2284] = 2284, - [2285] = 1689, - [2286] = 1670, - [2287] = 2287, - [2288] = 1927, - [2289] = 1867, - [2290] = 1842, - [2291] = 1813, - [2292] = 1814, - [2293] = 1585, - [2294] = 1873, - [2295] = 1541, - [2296] = 1888, - [2297] = 1942, - [2298] = 2298, - [2299] = 1874, - [2300] = 1670, - [2301] = 1692, - [2302] = 1875, - [2303] = 1876, - [2304] = 1539, - [2305] = 1543, - [2306] = 1542, - [2307] = 1545, - [2308] = 1538, - [2309] = 1859, - [2310] = 1930, - [2311] = 2181, - [2312] = 1935, - [2313] = 2313, - [2314] = 1946, - [2315] = 1928, - [2316] = 1947, - [2317] = 1938, - [2318] = 1943, - [2319] = 1903, - [2320] = 1593, - [2321] = 2321, - [2322] = 2322, - [2323] = 1947, - [2324] = 2324, + [2285] = 1909, + [2286] = 1938, + [2287] = 1562, + [2288] = 1314, + [2289] = 1882, + [2290] = 1567, + [2291] = 1962, + [2292] = 1911, + [2293] = 1808, + [2294] = 1563, + [2295] = 1946, + [2296] = 2296, + [2297] = 1973, + [2298] = 1883, + [2299] = 1559, + [2300] = 1877, + [2301] = 2301, + [2302] = 1834, + [2303] = 1856, + [2304] = 1861, + [2305] = 1560, + [2306] = 1888, + [2307] = 1884, + [2308] = 2308, + [2309] = 1748, + [2310] = 1890, + [2311] = 1784, + [2312] = 1895, + [2313] = 1610, + [2314] = 1885, + [2315] = 2315, + [2316] = 1805, + [2317] = 1947, + [2318] = 1685, + [2319] = 1714, + [2320] = 1876, + [2321] = 1864, + [2322] = 1878, + [2323] = 1880, + [2324] = 1708, [2325] = 2325, - [2326] = 1943, - [2327] = 1951, - [2328] = 1728, - [2329] = 2191, - [2330] = 2206, - [2331] = 1944, - [2332] = 1928, - [2333] = 1773, - [2334] = 2190, - [2335] = 2200, - [2336] = 2201, - [2337] = 1944, - [2338] = 1546, - [2339] = 1725, - [2340] = 1904, - [2341] = 1927, - [2342] = 1721, - [2343] = 2175, - [2344] = 1946, - [2345] = 1722, - [2346] = 1927, - [2347] = 2347, - [2348] = 1950, - [2349] = 1948, - [2350] = 2183, - [2351] = 2193, - [2352] = 2192, - [2353] = 1950, - [2354] = 1948, - [2355] = 1935, - [2356] = 1940, - [2357] = 1940, - [2358] = 1942, - [2359] = 1592, - [2360] = 2173, - [2361] = 1951, - [2362] = 1930, - [2363] = 1938, - [2364] = 2186, - [2365] = 2365, - [2366] = 1721, - [2367] = 2367, - [2368] = 1773, - [2369] = 1942, - [2370] = 1684, - [2371] = 828, - [2372] = 1689, - [2373] = 2373, - [2374] = 829, - [2375] = 2050, - [2376] = 1692, - [2377] = 2377, - [2378] = 1722, - [2379] = 2379, - [2380] = 2380, - [2381] = 2381, - [2382] = 1725, - [2383] = 1614, - [2384] = 2384, - [2385] = 2385, - [2386] = 2386, - [2387] = 1947, - [2388] = 2388, - [2389] = 1721, - [2390] = 1773, - [2391] = 1722, - [2392] = 1725, - [2393] = 1784, - [2394] = 2394, - [2395] = 2395, - [2396] = 2396, - [2397] = 2397, - [2398] = 2398, - [2399] = 1728, - [2400] = 1818, + [2326] = 1685, + [2327] = 2327, + [2328] = 1889, + [2329] = 1905, + [2330] = 1912, + [2331] = 1865, + [2332] = 1875, + [2333] = 1685, + [2334] = 1608, + [2335] = 1916, + [2336] = 1881, + [2337] = 1872, + [2338] = 1904, + [2339] = 1873, + [2340] = 1874, + [2341] = 1892, + [2342] = 2342, + [2343] = 1951, + [2344] = 1948, + [2345] = 1959, + [2346] = 1978, + [2347] = 1979, + [2348] = 1980, + [2349] = 1984, + [2350] = 1960, + [2351] = 1937, + [2352] = 1938, + [2353] = 1962, + [2354] = 1946, + [2355] = 1973, + [2356] = 1951, + [2357] = 1948, + [2358] = 1959, + [2359] = 1978, + [2360] = 1979, + [2361] = 2361, + [2362] = 2362, + [2363] = 1980, + [2364] = 1984, + [2365] = 1960, + [2366] = 2230, + [2367] = 1938, + [2368] = 1962, + [2369] = 2247, + [2370] = 2370, + [2371] = 1946, + [2372] = 1973, + [2373] = 2227, + [2374] = 1816, + [2375] = 1561, + [2376] = 1834, + [2377] = 1856, + [2378] = 1748, + [2379] = 1750, + [2380] = 1947, + [2381] = 2228, + [2382] = 2213, + [2383] = 1927, + [2384] = 1928, + [2385] = 1612, + [2386] = 2245, + [2387] = 2246, + [2388] = 2214, + [2389] = 2216, + [2390] = 1613, + [2391] = 2391, + [2392] = 2231, + [2393] = 2393, + [2394] = 2226, + [2395] = 2229, + [2396] = 1937, + [2397] = 1793, + [2398] = 1633, + [2399] = 2399, + [2400] = 1951, [2401] = 2401, [2402] = 2402, [2403] = 2403, - [2404] = 2404, - [2405] = 2405, - [2406] = 1713, - [2407] = 2407, - [2408] = 1608, - [2409] = 1874, - [2410] = 2410, - [2411] = 1877, + [2404] = 1834, + [2405] = 1856, + [2406] = 1748, + [2407] = 1750, + [2408] = 2408, + [2409] = 2409, + [2410] = 1750, + [2411] = 2411, [2412] = 2412, - [2413] = 1620, - [2414] = 2414, - [2415] = 2415, - [2416] = 2416, + [2413] = 2413, + [2414] = 2124, + [2415] = 1714, + [2416] = 846, [2417] = 2417, [2418] = 2418, - [2419] = 2419, - [2420] = 1609, - [2421] = 1610, - [2422] = 1607, + [2419] = 1705, + [2420] = 1834, + [2421] = 1797, + [2422] = 2422, [2423] = 2423, - [2424] = 1725, - [2425] = 2425, - [2426] = 2426, - [2427] = 1613, - [2428] = 1616, - [2429] = 135, + [2424] = 2424, + [2425] = 1708, + [2426] = 1748, + [2427] = 2427, + [2428] = 2428, + [2429] = 1856, [2430] = 2430, [2431] = 2431, - [2432] = 1618, - [2433] = 1622, - [2434] = 1728, + [2432] = 2432, + [2433] = 1947, + [2434] = 2434, [2435] = 2435, - [2436] = 2436, - [2437] = 1773, - [2438] = 2050, - [2439] = 2439, - [2440] = 1875, + [2436] = 843, + [2437] = 1816, + [2438] = 2438, + [2439] = 1782, + [2440] = 1816, [2441] = 2441, [2442] = 2442, [2443] = 2443, - [2444] = 1721, - [2445] = 1773, - [2446] = 1722, - [2447] = 1725, + [2444] = 2444, + [2445] = 2445, + [2446] = 2446, + [2447] = 2447, [2448] = 2448, - [2449] = 2449, - [2450] = 1721, + [2449] = 1896, + [2450] = 2450, [2451] = 2451, [2452] = 2452, - [2453] = 2453, - [2454] = 1842, - [2455] = 2455, - [2456] = 2456, - [2457] = 1623, - [2458] = 1615, - [2459] = 2215, - [2460] = 1612, - [2461] = 2461, - [2462] = 1606, - [2463] = 2322, - [2464] = 2464, - [2465] = 2465, - [2466] = 2466, - [2467] = 1864, - [2468] = 1865, - [2469] = 1866, - [2470] = 2470, - [2471] = 2471, - [2472] = 2271, - [2473] = 2050, - [2474] = 1870, - [2475] = 1871, - [2476] = 1872, - [2477] = 2477, - [2478] = 2478, - [2479] = 1621, - [2480] = 2480, + [2453] = 1888, + [2454] = 2454, + [2455] = 1897, + [2456] = 1885, + [2457] = 1898, + [2458] = 1880, + [2459] = 1895, + [2460] = 2460, + [2461] = 1902, + [2462] = 2462, + [2463] = 2124, + [2464] = 1899, + [2465] = 2124, + [2466] = 1900, + [2467] = 1816, + [2468] = 2468, + [2469] = 1877, + [2470] = 1748, + [2471] = 135, + [2472] = 1911, + [2473] = 1834, + [2474] = 1856, + [2475] = 1901, + [2476] = 1748, + [2477] = 1750, + [2478] = 1883, + [2479] = 2479, + [2480] = 1861, [2481] = 2481, - [2482] = 2482, - [2483] = 1876, + [2482] = 1876, + [2483] = 1864, [2484] = 2484, [2485] = 2485, - [2486] = 2486, - [2487] = 1867, - [2488] = 1878, - [2489] = 1880, - [2490] = 1881, - [2491] = 1882, - [2492] = 1883, + [2486] = 1638, + [2487] = 2487, + [2488] = 2488, + [2489] = 2325, + [2490] = 2490, + [2491] = 2491, + [2492] = 2492, [2493] = 2493, [2494] = 2494, - [2495] = 2495, + [2495] = 1884, [2496] = 2496, - [2497] = 2497, + [2497] = 1639, [2498] = 2498, [2499] = 2499, - [2500] = 2500, - [2501] = 1859, - [2502] = 1837, - [2503] = 1728, - [2504] = 1884, - [2505] = 2505, + [2500] = 1889, + [2501] = 1905, + [2502] = 2502, + [2503] = 1886, + [2504] = 2504, + [2505] = 1858, [2506] = 2506, - [2507] = 1839, - [2508] = 1840, - [2509] = 1841, - [2510] = 1847, - [2511] = 1848, - [2512] = 1850, - [2513] = 1852, + [2507] = 2507, + [2508] = 2508, + [2509] = 1875, + [2510] = 2510, + [2511] = 2511, + [2512] = 1906, + [2513] = 2513, [2514] = 2514, - [2515] = 1853, - [2516] = 1854, - [2517] = 1843, - [2518] = 1849, - [2519] = 136, - [2520] = 1722, - [2521] = 2521, - [2522] = 1873, - [2523] = 1879, - [2524] = 2524, + [2515] = 1907, + [2516] = 1908, + [2517] = 1641, + [2518] = 1642, + [2519] = 1643, + [2520] = 1909, + [2521] = 1636, + [2522] = 1913, + [2523] = 1628, + [2524] = 1834, [2525] = 2525, - [2526] = 2526, - [2527] = 1611, - [2528] = 2321, - [2529] = 1885, - [2530] = 1886, - [2531] = 1887, - [2532] = 1834, - [2533] = 2533, - [2534] = 1813, - [2535] = 1938, - [2536] = 1539, + [2526] = 1872, + [2527] = 1873, + [2528] = 2271, + [2529] = 1637, + [2530] = 136, + [2531] = 1874, + [2532] = 2532, + [2533] = 1878, + [2534] = 1750, + [2535] = 2535, + [2536] = 1634, [2537] = 2537, - [2538] = 1543, - [2539] = 1542, - [2540] = 1545, - [2541] = 1538, - [2542] = 1540, - [2543] = 1544, - [2544] = 1614, - [2545] = 1940, - [2546] = 1943, - [2547] = 1603, - [2548] = 1944, - [2549] = 2051, - [2550] = 2550, - [2551] = 2116, - [2552] = 1946, - [2553] = 1930, - [2554] = 1948, - [2555] = 1899, - [2556] = 1814, - [2557] = 1790, - [2558] = 2558, - [2559] = 1901, - [2560] = 1721, - [2561] = 1773, - [2562] = 1722, - [2563] = 1725, + [2538] = 2538, + [2539] = 2539, + [2540] = 2540, + [2541] = 1856, + [2542] = 2542, + [2543] = 1881, + [2544] = 1882, + [2545] = 2545, + [2546] = 1644, + [2547] = 2547, + [2548] = 1627, + [2549] = 2549, + [2550] = 1892, + [2551] = 2551, + [2552] = 2552, + [2553] = 2553, + [2554] = 2391, + [2555] = 2555, + [2556] = 2556, + [2557] = 1629, + [2558] = 1890, + [2559] = 1630, + [2560] = 1631, + [2561] = 1632, + [2562] = 2562, + [2563] = 2342, [2564] = 2564, - [2565] = 2565, - [2566] = 1942, - [2567] = 1816, - [2568] = 2197, - [2569] = 1928, - [2570] = 1927, - [2571] = 1935, - [2572] = 1951, - [2573] = 1950, - [2574] = 2574, - [2575] = 1938, - [2576] = 1542, - [2577] = 2183, - [2578] = 2206, - [2579] = 2186, - [2580] = 2173, - [2581] = 2175, - [2582] = 1818, - [2583] = 1539, - [2584] = 1951, - [2585] = 1930, - [2586] = 2197, - [2587] = 1928, - [2588] = 1899, - [2589] = 1935, - [2590] = 1545, - [2591] = 1603, - [2592] = 1728, - [2593] = 2321, - [2594] = 1948, - [2595] = 1692, - [2596] = 1950, - [2597] = 1948, - [2598] = 1713, - [2599] = 1927, - [2600] = 1944, - [2601] = 1901, - [2602] = 1585, - [2603] = 1951, - [2604] = 1930, - [2605] = 2322, - [2606] = 1938, - [2607] = 1944, - [2608] = 1946, - [2609] = 1927, - [2610] = 2050, - [2611] = 1814, - [2612] = 1943, - [2613] = 1899, - [2614] = 2200, - [2615] = 1888, - [2616] = 1928, - [2617] = 1946, - [2618] = 2201, - [2619] = 1538, - [2620] = 1540, - [2621] = 1784, - [2622] = 1940, - [2623] = 1943, - [2624] = 1684, - [2625] = 1544, - [2626] = 1813, - [2627] = 1721, - [2628] = 1689, - [2629] = 1950, - [2630] = 1816, - [2631] = 1901, - [2632] = 1790, - [2633] = 2190, - [2634] = 2191, - [2635] = 1773, - [2636] = 1543, - [2637] = 2192, - [2638] = 2193, - [2639] = 1722, - [2640] = 1725, - [2641] = 1935, - [2642] = 2181, - [2643] = 1940, - [2644] = 1725, - [2645] = 1886, - [2646] = 1887, - [2647] = 1834, - [2648] = 1842, - [2649] = 1843, - [2650] = 1849, - [2651] = 1867, - [2652] = 1877, - [2653] = 1722, - [2654] = 2564, - [2655] = 1888, - [2656] = 2565, - [2657] = 1902, - [2658] = 1813, - [2659] = 1814, - [2660] = 2660, - [2661] = 1947, - [2662] = 1790, - [2663] = 2564, - [2664] = 2565, - [2665] = 1721, - [2666] = 1773, - [2667] = 1885, - [2668] = 1879, - [2669] = 1816, - [2670] = 1603, - [2671] = 2321, - [2672] = 1873, - [2673] = 1874, - [2674] = 1592, - [2675] = 1875, - [2676] = 1876, - [2677] = 1884, - [2678] = 1593, - [2679] = 1839, - [2680] = 2322, - [2681] = 1840, - [2682] = 1841, - [2683] = 1847, - [2684] = 1848, - [2685] = 1850, - [2686] = 1852, - [2687] = 1603, - [2688] = 1853, - [2689] = 1854, - [2690] = 2660, - [2691] = 1835, - [2692] = 1864, - [2693] = 1865, - [2694] = 1835, - [2695] = 2660, - [2696] = 1866, - [2697] = 2660, - [2698] = 1870, - [2699] = 1871, - [2700] = 1872, - [2701] = 1878, - [2702] = 1880, - [2703] = 1947, - [2704] = 1881, - [2705] = 1882, - [2706] = 1883, - [2707] = 1837, - [2708] = 1859, - [2709] = 1911, - [2710] = 1930, - [2711] = 1938, - [2712] = 1944, - [2713] = 1946, - [2714] = 1927, - [2715] = 1947, - [2716] = 1940, - [2717] = 1943, - [2718] = 1892, - [2719] = 271, - [2720] = 2720, - [2721] = 2721, - [2722] = 2197, - [2723] = 1591, - [2724] = 2724, - [2725] = 2725, - [2726] = 1813, - [2727] = 1814, - [2728] = 1888, - [2729] = 2724, - [2730] = 1790, - [2731] = 1603, - [2732] = 1948, - [2733] = 1951, - [2734] = 1539, - [2735] = 1543, - [2736] = 2724, - [2737] = 1542, - [2738] = 2738, - [2739] = 1545, - [2740] = 1538, - [2741] = 1540, - [2742] = 2724, - [2743] = 1544, - [2744] = 1901, - [2745] = 2724, - [2746] = 1905, - [2747] = 1603, - [2748] = 2724, - [2749] = 2051, - [2750] = 1900, - [2751] = 2751, + [2565] = 1912, + [2566] = 1937, + [2567] = 1938, + [2568] = 1962, + [2569] = 1564, + [2570] = 1565, + [2571] = 1562, + [2572] = 1567, + [2573] = 1563, + [2574] = 1559, + [2575] = 1560, + [2576] = 1917, + [2577] = 2577, + [2578] = 1623, + [2579] = 2133, + [2580] = 2160, + [2581] = 1805, + [2582] = 1806, + [2583] = 1808, + [2584] = 1834, + [2585] = 1856, + [2586] = 2586, + [2587] = 1750, + [2588] = 1915, + [2589] = 1980, + [2590] = 1946, + [2591] = 1973, + [2592] = 2592, + [2593] = 1984, + [2594] = 2594, + [2595] = 1633, + [2596] = 1947, + [2597] = 1960, + [2598] = 1784, + [2599] = 2244, + [2600] = 1948, + [2601] = 1959, + [2602] = 2602, + [2603] = 2603, + [2604] = 1978, + [2605] = 1979, + [2606] = 1748, + [2607] = 1960, + [2608] = 1816, + [2609] = 1946, + [2610] = 1973, + [2611] = 2391, + [2612] = 1917, + [2613] = 2228, + [2614] = 2213, + [2615] = 1564, + [2616] = 1797, + [2617] = 2499, + [2618] = 1915, + [2619] = 2245, + [2620] = 2246, + [2621] = 1782, + [2622] = 2214, + [2623] = 2216, + [2624] = 2226, + [2625] = 2229, + [2626] = 2230, + [2627] = 2231, + [2628] = 2247, + [2629] = 2227, + [2630] = 2244, + [2631] = 1948, + [2632] = 1917, + [2633] = 1959, + [2634] = 1978, + [2635] = 1979, + [2636] = 1980, + [2637] = 1984, + [2638] = 1937, + [2639] = 1938, + [2640] = 1962, + [2641] = 2124, + [2642] = 1946, + [2643] = 1973, + [2644] = 1865, + [2645] = 1962, + [2646] = 1565, + [2647] = 1938, + [2648] = 1834, + [2649] = 1856, + [2650] = 1567, + [2651] = 1748, + [2652] = 1750, + [2653] = 2506, + [2654] = 2342, + [2655] = 1805, + [2656] = 1806, + [2657] = 1708, + [2658] = 2507, + [2659] = 1808, + [2660] = 1959, + [2661] = 1623, + [2662] = 2510, + [2663] = 1915, + [2664] = 1705, + [2665] = 2511, + [2666] = 1978, + [2667] = 1563, + [2668] = 1979, + [2669] = 1559, + [2670] = 1714, + [2671] = 1560, + [2672] = 2498, + [2673] = 1784, + [2674] = 1608, + [2675] = 2504, + [2676] = 1793, + [2677] = 1948, + [2678] = 1980, + [2679] = 1984, + [2680] = 1960, + [2681] = 1937, + [2682] = 1562, + [2683] = 1861, + [2684] = 1784, + [2685] = 1916, + [2686] = 1876, + [2687] = 1750, + [2688] = 2342, + [2689] = 1878, + [2690] = 1880, + [2691] = 1834, + [2692] = 1881, + [2693] = 1882, + [2694] = 1883, + [2695] = 1612, + [2696] = 1884, + [2697] = 2391, + [2698] = 1856, + [2699] = 1805, + [2700] = 1806, + [2701] = 1613, + [2702] = 1885, + [2703] = 1886, + [2704] = 1904, + [2705] = 1561, + [2706] = 1896, + [2707] = 1897, + [2708] = 1898, + [2709] = 1895, + [2710] = 2602, + [2711] = 1951, + [2712] = 2603, + [2713] = 2603, + [2714] = 1899, + [2715] = 1900, + [2716] = 1865, + [2717] = 1901, + [2718] = 1902, + [2719] = 1748, + [2720] = 1808, + [2721] = 1907, + [2722] = 1908, + [2723] = 1911, + [2724] = 1909, + [2725] = 1913, + [2726] = 1892, + [2727] = 2727, + [2728] = 1889, + [2729] = 1905, + [2730] = 2727, + [2731] = 2727, + [2732] = 1912, + [2733] = 1888, + [2734] = 1875, + [2735] = 2727, + [2736] = 1951, + [2737] = 1872, + [2738] = 2602, + [2739] = 1904, + [2740] = 1623, + [2741] = 1864, + [2742] = 1873, + [2743] = 1874, + [2744] = 1858, + [2745] = 1623, + [2746] = 1877, + [2747] = 1890, + [2748] = 1906, + [2749] = 2749, + [2750] = 1973, + [2751] = 1917, [2752] = 2752, - [2753] = 1816, - [2754] = 1950, - [2755] = 1928, - [2756] = 1899, - [2757] = 1935, - [2758] = 2724, - [2759] = 274, - [2760] = 1888, - [2761] = 2116, - [2762] = 2448, - [2763] = 1542, - [2764] = 1545, - [2765] = 1538, + [2753] = 2133, + [2754] = 2160, + [2755] = 2749, + [2756] = 1623, + [2757] = 1806, + [2758] = 2749, + [2759] = 1929, + [2760] = 2760, + [2761] = 1611, + [2762] = 1980, + [2763] = 2749, + [2764] = 2749, + [2765] = 1917, [2766] = 2766, - [2767] = 1540, - [2768] = 2506, - [2769] = 1722, - [2770] = 2766, - [2771] = 2771, - [2772] = 2772, - [2773] = 2773, - [2774] = 2435, - [2775] = 2116, - [2776] = 2419, - [2777] = 1544, - [2778] = 2771, - [2779] = 2181, - [2780] = 2766, - [2781] = 2771, - [2782] = 2416, - [2783] = 1814, - [2784] = 1892, - [2785] = 1725, - [2786] = 2417, - [2787] = 1790, - [2788] = 2051, - [2789] = 2116, - [2790] = 2790, - [2791] = 2791, - [2792] = 2766, - [2793] = 2771, - [2794] = 1813, - [2795] = 2795, - [2796] = 2796, - [2797] = 2797, - [2798] = 2798, - [2799] = 2799, - [2800] = 2766, - [2801] = 2771, - [2802] = 2802, - [2803] = 2190, - [2804] = 2183, - [2805] = 2766, - [2806] = 1543, - [2807] = 2807, - [2808] = 2808, - [2809] = 1902, - [2810] = 2050, - [2811] = 2191, + [2767] = 1915, + [2768] = 1805, + [2769] = 1920, + [2770] = 1948, + [2771] = 1984, + [2772] = 1959, + [2773] = 1808, + [2774] = 2244, + [2775] = 1784, + [2776] = 1937, + [2777] = 1978, + [2778] = 1938, + [2779] = 2779, + [2780] = 2780, + [2781] = 1564, + [2782] = 272, + [2783] = 1962, + [2784] = 2749, + [2785] = 1565, + [2786] = 1924, + [2787] = 2787, + [2788] = 1562, + [2789] = 1915, + [2790] = 1567, + [2791] = 2749, + [2792] = 1563, + [2793] = 1979, + [2794] = 1559, + [2795] = 1560, + [2796] = 1946, + [2797] = 268, + [2798] = 1921, + [2799] = 1951, + [2800] = 1865, + [2801] = 1623, + [2802] = 1865, + [2803] = 1960, + [2804] = 1921, + [2805] = 1929, + [2806] = 2160, + [2807] = 2494, + [2808] = 2228, + [2809] = 2213, + [2810] = 2810, + [2811] = 2230, [2812] = 2812, - [2813] = 2813, - [2814] = 2192, - [2815] = 2193, - [2816] = 2206, + [2813] = 1924, + [2814] = 2227, + [2815] = 2815, + [2816] = 2816, [2817] = 2817, [2818] = 2818, [2819] = 2819, - [2820] = 2186, + [2820] = 2820, [2821] = 2821, - [2822] = 2418, - [2823] = 2200, - [2824] = 2201, - [2825] = 1721, - [2826] = 1911, - [2827] = 2524, - [2828] = 2173, - [2829] = 1773, - [2830] = 1816, - [2831] = 2322, - [2832] = 2321, - [2833] = 2766, - [2834] = 1905, - [2835] = 2175, - [2836] = 2414, - [2837] = 2771, - [2838] = 2415, - [2839] = 2051, - [2840] = 1900, - [2841] = 1539, - [2842] = 2771, - [2843] = 2843, - [2844] = 2183, - [2845] = 2564, - [2846] = 1888, - [2847] = 2565, - [2848] = 2206, - [2849] = 2186, - [2850] = 1614, - [2851] = 1870, - [2852] = 2200, - [2853] = 2201, - [2854] = 1847, - [2855] = 2855, - [2856] = 1878, - [2857] = 2857, - [2858] = 2192, - [2859] = 1947, - [2860] = 2860, - [2861] = 1864, - [2862] = 2193, - [2863] = 2860, - [2864] = 1546, - [2865] = 2173, - [2866] = 2190, - [2867] = 2175, - [2868] = 2197, - [2869] = 2181, - [2870] = 2870, - [2871] = 1839, - [2872] = 1885, - [2873] = 2191, - [2874] = 1888, - [2875] = 2200, - [2876] = 2190, - [2877] = 2860, - [2878] = 2878, - [2879] = 2169, - [2880] = 2191, - [2881] = 1905, - [2882] = 2181, - [2883] = 2878, - [2884] = 2821, - [2885] = 2860, - [2886] = 2855, + [2822] = 2822, + [2823] = 2823, + [2824] = 2824, + [2825] = 2825, + [2826] = 2826, + [2827] = 2827, + [2828] = 2226, + [2829] = 1748, + [2830] = 2124, + [2831] = 2810, + [2832] = 2342, + [2833] = 2556, + [2834] = 2812, + [2835] = 2810, + [2836] = 1916, + [2837] = 2812, + [2838] = 2838, + [2839] = 2839, + [2840] = 2231, + [2841] = 2245, + [2842] = 2246, + [2843] = 2810, + [2844] = 2812, + [2845] = 2133, + [2846] = 2214, + [2847] = 2160, + [2848] = 2810, + [2849] = 2812, + [2850] = 1805, + [2851] = 1808, + [2852] = 1750, + [2853] = 2810, + [2854] = 2812, + [2855] = 1806, + [2856] = 1784, + [2857] = 1920, + [2858] = 1834, + [2859] = 2247, + [2860] = 2810, + [2861] = 2812, + [2862] = 2133, + [2863] = 2391, + [2864] = 2535, + [2865] = 1856, + [2866] = 2866, + [2867] = 2867, + [2868] = 2868, + [2869] = 1564, + [2870] = 1565, + [2871] = 1562, + [2872] = 1567, + [2873] = 1563, + [2874] = 1559, + [2875] = 1560, + [2876] = 2229, + [2877] = 2216, + [2878] = 2226, + [2879] = 2231, + [2880] = 1633, + [2881] = 2228, + [2882] = 2247, + [2883] = 1876, + [2884] = 2227, + [2885] = 2213, + [2886] = 2246, [2887] = 2887, - [2888] = 2888, - [2889] = 2185, - [2890] = 2860, - [2891] = 1900, - [2892] = 2203, - [2893] = 2772, - [2894] = 2192, - [2895] = 2193, - [2896] = 1878, - [2897] = 2888, - [2898] = 2887, - [2899] = 2878, - [2900] = 2888, - [2901] = 1541, - [2902] = 2860, - [2903] = 2790, - [2904] = 2887, - [2905] = 1885, - [2906] = 1818, - [2907] = 2888, - [2908] = 2808, - [2909] = 2791, - [2910] = 2051, - [2911] = 2773, + [2888] = 2245, + [2889] = 2889, + [2890] = 1951, + [2891] = 2214, + [2892] = 2602, + [2893] = 1881, + [2894] = 2229, + [2895] = 2244, + [2896] = 2603, + [2897] = 2230, + [2898] = 2898, + [2899] = 2216, + [2900] = 1896, + [2901] = 1889, + [2902] = 2902, + [2903] = 2903, + [2904] = 1899, + [2905] = 1865, + [2906] = 1906, + [2907] = 1865, + [2908] = 2902, + [2909] = 2218, + [2910] = 1899, + [2911] = 2911, [2912] = 2912, - [2913] = 2795, - [2914] = 2796, - [2915] = 2817, - [2916] = 2176, - [2917] = 2201, - [2918] = 2116, - [2919] = 2912, - [2920] = 2920, - [2921] = 2878, - [2922] = 2797, - [2923] = 2798, - [2924] = 1713, - [2925] = 2194, - [2926] = 2878, - [2927] = 1847, - [2928] = 1784, - [2929] = 2206, - [2930] = 1864, - [2931] = 2186, - [2932] = 2920, - [2933] = 2878, - [2934] = 2812, - [2935] = 2480, - [2936] = 1899, - [2937] = 2887, - [2938] = 1839, - [2939] = 2920, - [2940] = 2887, - [2941] = 2920, - [2942] = 2912, - [2943] = 2878, - [2944] = 2920, - [2945] = 1541, - [2946] = 2920, - [2947] = 1901, - [2948] = 2888, - [2949] = 2813, - [2950] = 2870, - [2951] = 2887, - [2952] = 1546, - [2953] = 1901, - [2954] = 2920, - [2955] = 1911, - [2956] = 2860, - [2957] = 2183, - [2958] = 2888, - [2959] = 1870, - [2960] = 2888, - [2961] = 1892, - [2962] = 2860, - [2963] = 2799, - [2964] = 2802, - [2965] = 2173, - [2966] = 2807, - [2967] = 2175, - [2968] = 2818, - [2969] = 2887, - [2970] = 2819, - [2971] = 1899, - [2972] = 2186, - [2973] = 2973, - [2974] = 2181, - [2975] = 1590, - [2976] = 1859, - [2977] = 1818, - [2978] = 1879, - [2979] = 2183, - [2980] = 2321, - [2981] = 2860, - [2982] = 1947, - [2983] = 1902, - [2984] = 2206, - [2985] = 1546, - [2986] = 1873, - [2987] = 1874, - [2988] = 1728, - [2989] = 1875, - [2990] = 1876, - [2991] = 2860, - [2992] = 1865, - [2993] = 1866, - [2994] = 2860, - [2995] = 1784, - [2996] = 1871, - [2997] = 1872, - [2998] = 2860, - [2999] = 2999, - [3000] = 1880, - [3001] = 1881, - [3002] = 1882, - [3003] = 1883, - [3004] = 2860, - [3005] = 860, - [3006] = 2790, - [3007] = 2860, - [3008] = 1837, - [3009] = 3009, - [3010] = 2537, - [3011] = 3011, - [3012] = 1884, - [3013] = 2791, - [3014] = 2173, - [3015] = 1902, - [3016] = 2190, - [3017] = 2175, - [3018] = 2795, - [3019] = 1886, - [3020] = 1887, - [3021] = 2796, - [3022] = 1834, - [3023] = 2797, - [3024] = 2798, - [3025] = 1842, - [3026] = 2799, - [3027] = 1843, - [3028] = 1849, - [3029] = 2802, - [3030] = 2807, - [3031] = 2197, - [3032] = 1867, - [3033] = 2860, - [3034] = 2772, - [3035] = 1877, - [3036] = 2773, - [3037] = 2817, - [3038] = 2818, - [3039] = 2819, - [3040] = 2808, - [3041] = 2812, - [3042] = 3011, - [3043] = 2813, - [3044] = 1713, - [3045] = 1928, - [3046] = 1840, - [3047] = 1935, - [3048] = 1841, - [3049] = 1848, - [3050] = 1850, - [3051] = 2821, - [3052] = 1852, - [3053] = 2860, - [3054] = 1853, - [3055] = 1854, - [3056] = 3011, - [3057] = 1950, - [3058] = 1948, - [3059] = 1942, - [3060] = 2191, - [3061] = 828, - [3062] = 2322, - [3063] = 2973, - [3064] = 3011, - [3065] = 2247, - [3066] = 3066, - [3067] = 3011, - [3068] = 1541, - [3069] = 3011, - [3070] = 2176, - [3071] = 1951, - [3072] = 1930, - [3073] = 1938, - [3074] = 1944, - [3075] = 1946, - [3076] = 2276, - [3077] = 2194, - [3078] = 829, - [3079] = 2192, - [3080] = 1927, - [3081] = 3009, - [3082] = 3066, - [3083] = 2203, - [3084] = 1940, - [3085] = 1943, - [3086] = 2270, - [3087] = 2860, - [3088] = 2860, - [3089] = 3009, - [3090] = 2210, - [3091] = 1835, - [3092] = 3066, - [3093] = 3009, - [3094] = 1546, - [3095] = 3066, - [3096] = 3096, - [3097] = 2193, - [3098] = 3066, - [3099] = 3066, - [3100] = 2185, - [3101] = 3066, - [3102] = 2169, - [3103] = 3103, - [3104] = 2217, - [3105] = 2973, - [3106] = 2200, - [3107] = 2201, - [3108] = 2222, - [3109] = 3109, - [3110] = 2798, - [3111] = 1859, - [3112] = 2812, - [3113] = 1902, - [3114] = 1879, - [3115] = 1867, - [3116] = 2407, - [3117] = 1873, - [3118] = 1877, - [3119] = 3119, - [3120] = 3120, - [3121] = 1874, - [3122] = 2407, - [3123] = 1875, - [3124] = 1876, - [3125] = 1839, - [3126] = 2790, - [3127] = 1728, - [3128] = 1684, - [3129] = 1546, - [3130] = 2407, - [3131] = 1847, - [3132] = 2999, - [3133] = 2395, - [3134] = 1870, - [3135] = 2247, - [3136] = 2379, - [3137] = 1689, - [3138] = 2791, - [3139] = 2380, - [3140] = 2325, - [3141] = 1840, - [3142] = 1865, - [3143] = 1835, - [3144] = 1866, - [3145] = 2773, - [3146] = 1871, - [3147] = 2381, - [3148] = 1872, - [3149] = 1841, - [3150] = 1901, - [3151] = 1692, - [3152] = 2270, - [3153] = 2407, - [3154] = 1848, - [3155] = 2817, - [3156] = 2384, - [3157] = 1850, - [3158] = 2795, - [3159] = 2796, - [3160] = 2797, - [3161] = 2210, - [3162] = 1878, - [3163] = 2802, - [3164] = 2807, - [3165] = 2818, - [3166] = 2819, - [3167] = 2347, - [3168] = 2407, - [3169] = 1884, - [3170] = 1899, - [3171] = 2388, - [3172] = 1852, - [3173] = 1885, - [3174] = 2313, - [3175] = 1853, - [3176] = 1880, - [3177] = 2860, - [3178] = 1881, - [3179] = 2860, - [3180] = 1882, - [3181] = 2870, - [3182] = 1883, - [3183] = 2813, - [3184] = 2821, - [3185] = 1837, - [3186] = 2377, - [3187] = 1942, - [3188] = 1854, - [3189] = 2843, - [3190] = 1541, - [3191] = 1886, - [3192] = 1887, - [3193] = 2050, - [3194] = 1834, - [3195] = 1864, - [3196] = 1842, - [3197] = 2398, - [3198] = 1843, - [3199] = 2276, - [3200] = 1849, - [3201] = 2772, - [3202] = 2217, - [3203] = 2751, - [3204] = 2808, - [3205] = 2395, - [3206] = 2222, - [3207] = 2855, - [3208] = 2799, - [3209] = 2818, - [3210] = 1623, - [3211] = 1615, - [3212] = 2407, - [3213] = 2855, - [3214] = 1612, - [3215] = 3215, - [3216] = 2860, - [3217] = 1616, - [3218] = 3218, - [3219] = 135, - [3220] = 3215, - [3221] = 2398, - [3222] = 1609, - [3223] = 2860, - [3224] = 2812, - [3225] = 2414, - [3226] = 1818, - [3227] = 2514, - [3228] = 2415, - [3229] = 2416, - [3230] = 3215, - [3231] = 2224, - [3232] = 2417, - [3233] = 3233, - [3234] = 2418, - [3235] = 2870, - [3236] = 3215, - [3237] = 2197, - [3238] = 2419, - [3239] = 3215, - [3240] = 1611, - [3241] = 2505, - [3242] = 2480, - [3243] = 3233, - [3244] = 3215, - [3245] = 2279, - [3246] = 1610, - [3247] = 1607, - [3248] = 829, - [3249] = 2377, - [3250] = 2280, - [3251] = 2772, - [3252] = 3252, - [3253] = 2480, - [3254] = 2435, - [3255] = 2367, - [3256] = 2237, - [3257] = 3257, - [3258] = 1606, - [3259] = 1608, - [3260] = 2313, - [3261] = 2395, - [3262] = 2287, - [3263] = 2325, - [3264] = 2386, - [3265] = 136, - [3266] = 2397, - [3267] = 2298, - [3268] = 1618, - [3269] = 2574, - [3270] = 2860, - [3271] = 2407, - [3272] = 3215, - [3273] = 2860, + [2913] = 2244, + [2914] = 1906, + [2915] = 2247, + [2916] = 2214, + [2917] = 2887, + [2918] = 2216, + [2919] = 2919, + [2920] = 2912, + [2921] = 2450, + [2922] = 1314, + [2923] = 2911, + [2924] = 2160, + [2925] = 2912, + [2926] = 2926, + [2927] = 2919, + [2928] = 1876, + [2929] = 2911, + [2930] = 2912, + [2931] = 2911, + [2932] = 2838, + [2933] = 2912, + [2934] = 1797, + [2935] = 2911, + [2936] = 2912, + [2937] = 2824, + [2938] = 1881, + [2939] = 2826, + [2940] = 2940, + [2941] = 2919, + [2942] = 2212, + [2943] = 2919, + [2944] = 2227, + [2945] = 2243, + [2946] = 2919, + [2947] = 2911, + [2948] = 2825, + [2949] = 2911, + [2950] = 2926, + [2951] = 1782, + [2952] = 2903, + [2953] = 2839, + [2954] = 2228, + [2955] = 2912, + [2956] = 2940, + [2957] = 2919, + [2958] = 2940, + [2959] = 2919, + [2960] = 1889, + [2961] = 2245, + [2962] = 2213, + [2963] = 2902, + [2964] = 2940, + [2965] = 2919, + [2966] = 2911, + [2967] = 2940, + [2968] = 2225, + [2969] = 2866, + [2970] = 2240, + [2971] = 2940, + [2972] = 2902, + [2973] = 2911, + [2974] = 2912, + [2975] = 2817, + [2976] = 2940, + [2977] = 2912, + [2978] = 2940, + [2979] = 2229, + [2980] = 2940, + [2981] = 1920, + [2982] = 2230, + [2983] = 2818, + [2984] = 2819, + [2985] = 1921, + [2986] = 1917, + [2987] = 2231, + [2988] = 2820, + [2989] = 2902, + [2990] = 2821, + [2991] = 2926, + [2992] = 2822, + [2993] = 2823, + [2994] = 2867, + [2995] = 2815, + [2996] = 2919, + [2997] = 2246, + [2998] = 1924, + [2999] = 2868, + [3000] = 1561, + [3001] = 2902, + [3002] = 1929, + [3003] = 2827, + [3004] = 2133, + [3005] = 1314, + [3006] = 2902, + [3007] = 1915, + [3008] = 1896, + [3009] = 1793, + [3010] = 2902, + [3011] = 2816, + [3012] = 2226, + [3013] = 2213, + [3014] = 3014, + [3015] = 2838, + [3016] = 1901, + [3017] = 2839, + [3018] = 2866, + [3019] = 2867, + [3020] = 2868, + [3021] = 2902, + [3022] = 2231, + [3023] = 2240, + [3024] = 1897, + [3025] = 2254, + [3026] = 1793, + [3027] = 1895, + [3028] = 2902, + [3029] = 843, + [3030] = 3030, + [3031] = 3031, + [3032] = 2226, + [3033] = 1858, + [3034] = 2816, + [3035] = 1902, + [3036] = 1948, + [3037] = 2342, + [3038] = 2824, + [3039] = 1962, + [3040] = 1877, + [3041] = 1816, + [3042] = 1911, + [3043] = 1951, + [3044] = 2902, + [3045] = 1898, + [3046] = 1916, + [3047] = 2230, + [3048] = 1873, + [3049] = 1861, + [3050] = 2825, + [3051] = 3051, + [3052] = 3031, + [3053] = 1561, + [3054] = 1610, + [3055] = 1904, + [3056] = 1878, + [3057] = 1880, + [3058] = 2826, + [3059] = 3059, + [3060] = 1978, + [3061] = 1979, + [3062] = 2247, + [3063] = 2243, + [3064] = 1782, + [3065] = 2227, + [3066] = 1946, + [3067] = 1973, + [3068] = 1882, + [3069] = 1883, + [3070] = 1884, + [3071] = 2391, + [3072] = 1885, + [3073] = 1561, + [3074] = 3031, + [3075] = 2817, + [3076] = 1886, + [3077] = 2902, + [3078] = 1909, + [3079] = 1892, + [3080] = 2818, + [3081] = 3031, + [3082] = 1888, + [3083] = 2819, + [3084] = 1905, + [3085] = 1890, + [3086] = 2902, + [3087] = 1912, + [3088] = 2820, + [3089] = 3031, + [3090] = 1913, + [3091] = 1314, + [3092] = 2827, + [3093] = 2822, + [3094] = 2823, + [3095] = 2902, + [3096] = 846, + [3097] = 1875, + [3098] = 2229, + [3099] = 2218, + [3100] = 2284, + [3101] = 3051, + [3102] = 1947, + [3103] = 1874, + [3104] = 1959, + [3105] = 2225, + [3106] = 3014, + [3107] = 3107, + [3108] = 2902, + [3109] = 2902, + [3110] = 2902, + [3111] = 2902, + [3112] = 2902, + [3113] = 2902, + [3114] = 1907, + [3115] = 1864, + [3116] = 3051, + [3117] = 2594, + [3118] = 1900, + [3119] = 3014, + [3120] = 1908, + [3121] = 2301, + [3122] = 3031, + [3123] = 3051, + [3124] = 3014, + [3125] = 2228, + [3126] = 2815, + [3127] = 3014, + [3128] = 3014, + [3129] = 2270, + [3130] = 3130, + [3131] = 3014, + [3132] = 2327, + [3133] = 859, + [3134] = 1797, + [3135] = 2212, + [3136] = 3136, + [3137] = 3107, + [3138] = 1916, + [3139] = 2315, + [3140] = 2244, + [3141] = 1980, + [3142] = 1984, + [3143] = 2245, + [3144] = 1872, + [3145] = 2246, + [3146] = 1960, + [3147] = 1937, + [3148] = 2214, + [3149] = 1938, + [3150] = 2216, + [3151] = 3107, + [3152] = 2821, + [3153] = 2435, + [3154] = 1947, + [3155] = 1913, + [3156] = 1872, + [3157] = 1888, + [3158] = 1890, + [3159] = 1873, + [3160] = 1896, + [3161] = 1874, + [3162] = 1886, + [3163] = 2815, + [3164] = 1904, + [3165] = 2254, + [3166] = 1906, + [3167] = 1878, + [3168] = 3130, + [3169] = 1907, + [3170] = 2903, + [3171] = 1858, + [3172] = 1899, + [3173] = 1314, + [3174] = 1877, + [3175] = 1880, + [3176] = 2816, + [3177] = 2362, + [3178] = 2887, + [3179] = 2403, + [3180] = 2866, + [3181] = 1705, + [3182] = 2817, + [3183] = 2818, + [3184] = 2819, + [3185] = 2820, + [3186] = 2821, + [3187] = 2822, + [3188] = 2823, + [3189] = 2867, + [3190] = 2868, + [3191] = 2393, + [3192] = 1917, + [3193] = 2403, + [3194] = 2418, + [3195] = 2902, + [3196] = 1895, + [3197] = 1902, + [3198] = 2902, + [3199] = 2284, + [3200] = 2827, + [3201] = 1908, + [3202] = 1889, + [3203] = 2787, + [3204] = 1911, + [3205] = 2315, + [3206] = 1861, + [3207] = 1900, + [3208] = 2401, + [3209] = 2402, + [3210] = 1816, + [3211] = 3211, + [3212] = 1708, + [3213] = 1561, + [3214] = 2825, + [3215] = 2370, + [3216] = 1916, + [3217] = 2889, + [3218] = 1892, + [3219] = 2839, + [3220] = 1909, + [3221] = 1882, + [3222] = 2418, + [3223] = 2403, + [3224] = 2403, + [3225] = 2434, + [3226] = 2432, + [3227] = 1897, + [3228] = 1898, + [3229] = 1905, + [3230] = 2838, + [3231] = 1714, + [3232] = 2824, + [3233] = 1901, + [3234] = 2124, + [3235] = 1864, + [3236] = 3236, + [3237] = 2826, + [3238] = 1876, + [3239] = 2270, + [3240] = 1885, + [3241] = 1912, + [3242] = 1881, + [3243] = 2408, + [3244] = 2301, + [3245] = 1883, + [3246] = 2327, + [3247] = 1915, + [3248] = 2403, + [3249] = 1875, + [3250] = 1884, + [3251] = 2417, + [3252] = 2839, + [3253] = 3253, + [3254] = 2824, + [3255] = 2902, + [3256] = 3253, + [3257] = 2507, + [3258] = 2592, + [3259] = 2818, + [3260] = 2839, + [3261] = 2819, + [3262] = 2820, + [3263] = 2510, + [3264] = 2511, + [3265] = 1634, + [3266] = 1782, + [3267] = 2408, + [3268] = 1638, + [3269] = 2838, + [3270] = 2370, + [3271] = 2821, + [3272] = 3272, + [3273] = 2826, [3274] = 3274, - [3275] = 1613, - [3276] = 2505, - [3277] = 1622, - [3278] = 2238, - [3279] = 2821, - [3280] = 2790, - [3281] = 3252, - [3282] = 3282, - [3283] = 3283, - [3284] = 2284, - [3285] = 2218, - [3286] = 2219, - [3287] = 2791, - [3288] = 2220, - [3289] = 2381, - [3290] = 3215, - [3291] = 1725, - [3292] = 3252, - [3293] = 2514, - [3294] = 2404, - [3295] = 2860, - [3296] = 2379, - [3297] = 2347, - [3298] = 2407, - [3299] = 2860, - [3300] = 1621, - [3301] = 2321, - [3302] = 1620, - [3303] = 2322, - [3304] = 2377, - [3305] = 2772, - [3306] = 2379, - [3307] = 2380, - [3308] = 2773, - [3309] = 2381, - [3310] = 2790, - [3311] = 2791, - [3312] = 2817, - [3313] = 2384, - [3314] = 2795, - [3315] = 2796, - [3316] = 2797, - [3317] = 2798, - [3318] = 2799, - [3319] = 2802, - [3320] = 2807, - [3321] = 2324, - [3322] = 2819, - [3323] = 2388, - [3324] = 2808, - [3325] = 2812, - [3326] = 2813, - [3327] = 2821, - [3328] = 2050, - [3329] = 1713, - [3330] = 2380, - [3331] = 2817, - [3332] = 2384, - [3333] = 2398, - [3334] = 2795, - [3335] = 1546, - [3336] = 2478, - [3337] = 2796, - [3338] = 828, - [3339] = 2388, - [3340] = 1722, - [3341] = 2797, - [3342] = 2798, - [3343] = 1784, - [3344] = 2478, - [3345] = 3215, - [3346] = 2799, - [3347] = 2773, - [3348] = 2802, - [3349] = 2807, - [3350] = 2818, - [3351] = 2819, - [3352] = 2808, - [3353] = 2813, - [3354] = 2284, - [3355] = 2494, - [3356] = 2451, - [3357] = 1608, - [3358] = 1872, - [3359] = 135, - [3360] = 2870, - [3361] = 2197, - [3362] = 1928, - [3363] = 1935, - [3364] = 2373, - [3365] = 2480, - [3366] = 2395, - [3367] = 2276, - [3368] = 1950, - [3369] = 1948, - [3370] = 2860, - [3371] = 3371, - [3372] = 3372, - [3373] = 2461, - [3374] = 1951, - [3375] = 1930, - [3376] = 2470, - [3377] = 1938, - [3378] = 1944, - [3379] = 1946, - [3380] = 2471, - [3381] = 1609, - [3382] = 1610, - [3383] = 1607, - [3384] = 2396, - [3385] = 1927, - [3386] = 2533, - [3387] = 2217, - [3388] = 2397, - [3389] = 1940, - [3390] = 2401, - [3391] = 2481, - [3392] = 2218, - [3393] = 2219, - [3394] = 2220, - [3395] = 1943, - [3396] = 2482, - [3397] = 1886, - [3398] = 2197, - [3399] = 2324, - [3400] = 1882, - [3401] = 2423, - [3402] = 2407, - [3403] = 1848, - [3404] = 1850, - [3405] = 2860, - [3406] = 1887, - [3407] = 828, - [3408] = 2855, - [3409] = 1852, - [3410] = 2521, - [3411] = 1854, - [3412] = 2425, - [3413] = 1721, - [3414] = 2404, - [3415] = 1834, - [3416] = 1942, - [3417] = 2499, - [3418] = 2365, - [3419] = 1842, - [3420] = 2448, - [3421] = 2436, - [3422] = 829, - [3423] = 2514, - [3424] = 2496, - [3425] = 2426, - [3426] = 2500, - [3427] = 1843, - [3428] = 2524, - [3429] = 2298, - [3430] = 1613, - [3431] = 1616, - [3432] = 1883, - [3433] = 2497, - [3434] = 2466, - [3435] = 1541, - [3436] = 2403, - [3437] = 2405, - [3438] = 2439, - [3439] = 2495, - [3440] = 1849, - [3441] = 2449, - [3442] = 1618, - [3443] = 1622, - [3444] = 2484, - [3445] = 1840, - [3446] = 2485, - [3447] = 2486, - [3448] = 1773, - [3449] = 2386, - [3450] = 1866, - [3451] = 2441, - [3452] = 2430, - [3453] = 1835, - [3454] = 2402, - [3455] = 1899, - [3456] = 1901, - [3457] = 2224, - [3458] = 1865, - [3459] = 2860, - [3460] = 1689, - [3461] = 1880, - [3462] = 2237, - [3463] = 1692, - [3464] = 1722, - [3465] = 2442, - [3466] = 2477, - [3467] = 2464, - [3468] = 1837, - [3469] = 2443, - [3470] = 2465, - [3471] = 2210, - [3472] = 1585, - [3473] = 3371, - [3474] = 1725, - [3475] = 1611, - [3476] = 2367, - [3477] = 3372, - [3478] = 2271, - [3479] = 1606, - [3480] = 2279, - [3481] = 2280, - [3482] = 2287, - [3483] = 1841, - [3484] = 2238, - [3485] = 2860, - [3486] = 3371, - [3487] = 2860, - [3488] = 1881, - [3489] = 2051, - [3490] = 2116, - [3491] = 1859, - [3492] = 3372, - [3493] = 2222, - [3494] = 2407, - [3495] = 2478, - [3496] = 2431, - [3497] = 1867, - [3498] = 2498, - [3499] = 1877, - [3500] = 2410, - [3501] = 1621, - [3502] = 2505, - [3503] = 2452, - [3504] = 1879, - [3505] = 2453, - [3506] = 2480, - [3507] = 1902, - [3508] = 136, - [3509] = 2506, - [3510] = 2412, - [3511] = 1873, - [3512] = 1874, - [3513] = 1875, - [3514] = 1876, - [3515] = 2525, - [3516] = 2526, - [3517] = 1684, - [3518] = 1620, - [3519] = 2435, - [3520] = 2455, - [3521] = 2456, - [3522] = 1623, - [3523] = 1615, - [3524] = 2215, - [3525] = 1884, - [3526] = 1612, - [3527] = 2414, - [3528] = 2493, - [3529] = 2415, - [3530] = 2416, - [3531] = 2417, - [3532] = 2418, - [3533] = 2419, - [3534] = 1871, - [3535] = 2407, - [3536] = 1853, - [3537] = 2426, - [3538] = 2466, - [3539] = 1538, - [3540] = 2506, - [3541] = 2500, - [3542] = 1540, - [3543] = 2790, - [3544] = 2419, - [3545] = 2525, - [3546] = 2526, - [3547] = 2480, - [3548] = 1544, - [3549] = 2817, - [3550] = 2384, - [3551] = 1722, - [3552] = 1609, - [3553] = 2795, - [3554] = 2796, - [3555] = 2401, - [3556] = 2797, - [3557] = 2403, - [3558] = 1610, - [3559] = 2271, - [3560] = 2402, - [3561] = 2439, - [3562] = 2798, - [3563] = 2799, - [3564] = 1607, - [3565] = 2470, - [3566] = 2325, - [3567] = 2482, - [3568] = 2480, - [3569] = 136, - [3570] = 2802, - [3571] = 2365, - [3572] = 2791, - [3573] = 2495, - [3574] = 2843, - [3575] = 2521, - [3576] = 2321, - [3577] = 1725, - [3578] = 2388, - [3579] = 2431, - [3580] = 2448, - [3581] = 2405, - [3582] = 2821, - [3583] = 2430, - [3584] = 2807, - [3585] = 2423, - [3586] = 2455, - [3587] = 2478, - [3588] = 1546, - [3589] = 1611, - [3590] = 2514, - [3591] = 2812, - [3592] = 2322, - [3593] = 2498, - [3594] = 2425, - [3595] = 2818, - [3596] = 2484, - [3597] = 2485, - [3598] = 2436, - [3599] = 2486, - [3600] = 1813, - [3601] = 1814, - [3602] = 2480, - [3603] = 2410, - [3604] = 135, - [3605] = 2441, - [3606] = 2808, - [3607] = 2325, - [3608] = 2200, - [3609] = 2412, - [3610] = 2201, - [3611] = 2449, - [3612] = 2456, - [3613] = 2191, - [3614] = 2192, - [3615] = 2193, - [3616] = 2181, - [3617] = 1620, - [3618] = 2183, - [3619] = 2206, - [3620] = 2186, - [3621] = 2173, - [3622] = 2175, - [3623] = 1790, - [3624] = 1621, - [3625] = 2477, - [3626] = 2407, - [3627] = 2481, - [3628] = 2493, - [3629] = 3629, - [3630] = 2494, - [3631] = 2443, - [3632] = 2813, - [3633] = 1615, - [3634] = 2453, - [3635] = 2373, - [3636] = 2496, - [3637] = 2497, - [3638] = 3638, - [3639] = 2819, - [3640] = 2396, - [3641] = 2414, - [3642] = 2215, - [3643] = 2499, - [3644] = 3644, - [3645] = 1543, - [3646] = 2377, - [3647] = 2772, - [3648] = 1613, - [3649] = 1616, - [3650] = 2451, - [3651] = 2461, - [3652] = 2415, - [3653] = 2416, - [3654] = 1539, - [3655] = 1543, - [3656] = 1606, - [3657] = 1542, - [3658] = 1542, - [3659] = 2505, - [3660] = 1608, - [3661] = 1545, - [3662] = 2379, - [3663] = 2380, - [3664] = 1546, - [3665] = 2417, - [3666] = 1545, - [3667] = 2452, - [3668] = 2773, - [3669] = 1623, - [3670] = 2524, - [3671] = 2381, - [3672] = 1538, - [3673] = 1540, - [3674] = 1612, - [3675] = 3675, - [3676] = 1544, - [3677] = 1721, - [3678] = 2480, - [3679] = 2471, - [3680] = 2418, - [3681] = 1816, - [3682] = 1773, - [3683] = 2533, - [3684] = 1618, - [3685] = 2464, - [3686] = 2465, - [3687] = 1622, - [3688] = 2442, - [3689] = 2435, - [3690] = 1539, - [3691] = 3691, - [3692] = 2190, - [3693] = 3693, - [3694] = 3694, - [3695] = 1546, - [3696] = 3696, - [3697] = 3697, - [3698] = 2397, - [3699] = 3699, - [3700] = 3697, - [3701] = 3699, - [3702] = 3699, - [3703] = 3703, - [3704] = 3371, - [3705] = 3705, - [3706] = 3103, - [3707] = 3372, - [3708] = 1901, - [3709] = 1725, - [3710] = 3697, - [3711] = 3705, - [3712] = 2423, - [3713] = 3713, - [3714] = 2870, - [3715] = 3696, - [3716] = 3705, - [3717] = 3713, - [3718] = 3694, - [3719] = 2397, - [3720] = 3705, - [3721] = 3699, - [3722] = 3713, - [3723] = 3723, - [3724] = 3705, - [3725] = 3696, - [3726] = 3713, - [3727] = 1578, - [3728] = 3705, - [3729] = 3699, - [3730] = 3713, - [3731] = 3696, - [3732] = 3705, - [3733] = 3713, - [3734] = 3705, - [3735] = 3713, - [3736] = 3699, - [3737] = 1947, - [3738] = 3694, - [3739] = 3703, - [3740] = 3705, + [3275] = 2822, + [3276] = 2902, + [3277] = 3253, + [3278] = 2866, + [3279] = 135, + [3280] = 2903, + [3281] = 1644, + [3282] = 2430, + [3283] = 2827, + [3284] = 2823, + [3285] = 846, + [3286] = 2431, + [3287] = 2427, + [3288] = 3253, + [3289] = 2867, + [3290] = 2532, + [3291] = 2542, + [3292] = 2816, + [3293] = 843, + [3294] = 3294, + [3295] = 1629, + [3296] = 1942, + [3297] = 3253, + [3298] = 2403, + [3299] = 1641, + [3300] = 1642, + [3301] = 1628, + [3302] = 1643, + [3303] = 1637, + [3304] = 2868, + [3305] = 1748, + [3306] = 1631, + [3307] = 1630, + [3308] = 2428, + [3309] = 1986, + [3310] = 2435, + [3311] = 3253, + [3312] = 1632, + [3313] = 1941, + [3314] = 1627, + [3315] = 1797, + [3316] = 2513, + [3317] = 3253, + [3318] = 1985, + [3319] = 3319, + [3320] = 2391, + [3321] = 2417, + [3322] = 2342, + [3323] = 2450, + [3324] = 3319, + [3325] = 3325, + [3326] = 1953, + [3327] = 2434, + [3328] = 2838, + [3329] = 2401, + [3330] = 2402, + [3331] = 1983, + [3332] = 2506, + [3333] = 2815, + [3334] = 2816, + [3335] = 2866, + [3336] = 2435, + [3337] = 2817, + [3338] = 2818, + [3339] = 2819, + [3340] = 2820, + [3341] = 2821, + [3342] = 2822, + [3343] = 2823, + [3344] = 2867, + [3345] = 2868, + [3346] = 2417, + [3347] = 2513, + [3348] = 2824, + [3349] = 2825, + [3350] = 2826, + [3351] = 2827, + [3352] = 3253, + [3353] = 1639, + [3354] = 1976, + [3355] = 2124, + [3356] = 2244, + [3357] = 2902, + [3358] = 1793, + [3359] = 2403, + [3360] = 2815, + [3361] = 2432, + [3362] = 3325, + [3363] = 3363, + [3364] = 2401, + [3365] = 2825, + [3366] = 2450, + [3367] = 2393, + [3368] = 1961, + [3369] = 2532, + [3370] = 136, + [3371] = 2902, + [3372] = 1636, + [3373] = 2361, + [3374] = 1971, + [3375] = 2402, + [3376] = 2362, + [3377] = 2418, + [3378] = 2902, + [3379] = 1750, + [3380] = 1970, + [3381] = 2432, + [3382] = 2498, + [3383] = 2542, + [3384] = 1561, + [3385] = 1977, + [3386] = 3386, + [3387] = 2403, + [3388] = 2504, + [3389] = 3325, + [3390] = 2434, + [3391] = 2499, + [3392] = 3253, + [3393] = 2887, + [3394] = 2902, + [3395] = 2817, + [3396] = 2408, + [3397] = 1878, + [3398] = 846, + [3399] = 2564, + [3400] = 2430, + [3401] = 2443, + [3402] = 2903, + [3403] = 2428, + [3404] = 843, + [3405] = 2450, + [3406] = 1947, + [3407] = 1748, + [3408] = 3408, + [3409] = 2452, + [3410] = 3410, + [3411] = 2460, + [3412] = 2391, + [3413] = 3408, + [3414] = 2342, + [3415] = 3410, + [3416] = 2315, + [3417] = 2403, + [3418] = 1705, + [3419] = 1942, + [3420] = 2496, + [3421] = 1629, + [3422] = 2327, + [3423] = 2562, + [3424] = 1638, + [3425] = 2325, + [3426] = 1750, + [3427] = 2556, + [3428] = 2490, + [3429] = 2539, + [3430] = 2532, + [3431] = 2535, + [3432] = 2493, + [3433] = 2491, + [3434] = 2492, + [3435] = 2254, + [3436] = 3408, + [3437] = 3410, + [3438] = 2451, + [3439] = 1639, + [3440] = 2508, + [3441] = 1905, + [3442] = 1912, + [3443] = 1875, + [3444] = 2427, + [3445] = 1872, + [3446] = 2412, + [3447] = 1873, + [3448] = 2479, + [3449] = 1874, + [3450] = 1897, + [3451] = 2418, + [3452] = 1986, + [3453] = 2403, + [3454] = 1961, + [3455] = 1898, + [3456] = 1641, + [3457] = 1642, + [3458] = 1643, + [3459] = 2413, + [3460] = 2441, + [3461] = 1630, + [3462] = 1900, + [3463] = 2442, + [3464] = 2403, + [3465] = 1904, + [3466] = 1901, + [3467] = 1637, + [3468] = 1907, + [3469] = 2454, + [3470] = 1908, + [3471] = 2525, + [3472] = 1608, + [3473] = 1858, + [3474] = 1909, + [3475] = 1877, + [3476] = 2481, + [3477] = 2542, + [3478] = 2244, + [3479] = 1948, + [3480] = 1959, + [3481] = 2431, + [3482] = 2537, + [3483] = 1978, + [3484] = 1979, + [3485] = 2545, + [3486] = 2540, + [3487] = 1644, + [3488] = 1627, + [3489] = 1980, + [3490] = 1984, + [3491] = 1960, + [3492] = 1937, + [3493] = 1938, + [3494] = 1962, + [3495] = 2549, + [3496] = 1946, + [3497] = 1970, + [3498] = 1977, + [3499] = 1973, + [3500] = 1941, + [3501] = 2553, + [3502] = 1631, + [3503] = 2494, + [3504] = 2444, + [3505] = 2445, + [3506] = 1976, + [3507] = 1913, + [3508] = 2446, + [3509] = 2502, + [3510] = 2902, + [3511] = 1888, + [3512] = 1917, + [3513] = 1915, + [3514] = 1636, + [3515] = 2902, + [3516] = 2447, + [3517] = 2448, + [3518] = 2361, + [3519] = 1890, + [3520] = 2513, + [3521] = 1314, + [3522] = 2450, + [3523] = 2547, + [3524] = 2438, + [3525] = 1916, + [3526] = 2399, + [3527] = 136, + [3528] = 2409, + [3529] = 2488, + [3530] = 2284, + [3531] = 1895, + [3532] = 1902, + [3533] = 1911, + [3534] = 1861, + [3535] = 1983, + [3536] = 1985, + [3537] = 2411, + [3538] = 2902, + [3539] = 1953, + [3540] = 2538, + [3541] = 1971, + [3542] = 2504, + [3543] = 1708, + [3544] = 2555, + [3545] = 2902, + [3546] = 2133, + [3547] = 2160, + [3548] = 1628, + [3549] = 2887, + [3550] = 2551, + [3551] = 2902, + [3552] = 1864, + [3553] = 2498, + [3554] = 2499, + [3555] = 2506, + [3556] = 2507, + [3557] = 2510, + [3558] = 2511, + [3559] = 1634, + [3560] = 1856, + [3561] = 1834, + [3562] = 2552, + [3563] = 2484, + [3564] = 135, + [3565] = 2485, + [3566] = 2487, + [3567] = 2514, + [3568] = 1880, + [3569] = 1714, + [3570] = 1892, + [3571] = 1882, + [3572] = 1883, + [3573] = 1884, + [3574] = 2271, + [3575] = 1885, + [3576] = 2423, + [3577] = 1886, + [3578] = 2462, + [3579] = 2468, + [3580] = 1632, + [3581] = 1636, + [3582] = 2818, + [3583] = 1560, + [3584] = 2498, + [3585] = 2452, + [3586] = 2513, + [3587] = 2412, + [3588] = 2499, + [3589] = 136, + [3590] = 2506, + [3591] = 2479, + [3592] = 2507, + [3593] = 2817, + [3594] = 2494, + [3595] = 2496, + [3596] = 2510, + [3597] = 2450, + [3598] = 2511, + [3599] = 2481, + [3600] = 2444, + [3601] = 2447, + [3602] = 135, + [3603] = 1628, + [3604] = 2413, + [3605] = 1561, + [3606] = 2391, + [3607] = 2819, + [3608] = 3408, + [3609] = 2820, + [3610] = 3410, + [3611] = 2821, + [3612] = 2438, + [3613] = 2822, + [3614] = 2399, + [3615] = 2409, + [3616] = 2514, + [3617] = 2823, + [3618] = 2460, + [3619] = 2434, + [3620] = 2564, + [3621] = 2485, + [3622] = 2487, + [3623] = 2838, + [3624] = 1631, + [3625] = 2403, + [3626] = 2502, + [3627] = 1632, + [3628] = 2423, + [3629] = 1629, + [3630] = 3630, + [3631] = 1630, + [3632] = 2491, + [3633] = 2532, + [3634] = 2504, + [3635] = 2362, + [3636] = 2443, + [3637] = 3637, + [3638] = 1784, + [3639] = 2867, + [3640] = 2826, + [3641] = 2868, + [3642] = 2401, + [3643] = 1805, + [3644] = 2827, + [3645] = 3645, + [3646] = 2402, + [3647] = 2562, + [3648] = 1806, + [3649] = 2451, + [3650] = 1641, + [3651] = 2488, + [3652] = 2492, + [3653] = 2816, + [3654] = 2551, + [3655] = 2538, + [3656] = 2552, + [3657] = 2441, + [3658] = 2442, + [3659] = 2839, + [3660] = 1564, + [3661] = 2228, + [3662] = 1565, + [3663] = 2213, + [3664] = 1563, + [3665] = 1559, + [3666] = 1642, + [3667] = 2408, + [3668] = 2245, + [3669] = 1567, + [3670] = 2246, + [3671] = 1637, + [3672] = 2214, + [3673] = 2216, + [3674] = 2226, + [3675] = 2468, + [3676] = 2229, + [3677] = 2230, + [3678] = 2231, + [3679] = 1563, + [3680] = 2247, + [3681] = 2227, + [3682] = 1559, + [3683] = 1560, + [3684] = 1834, + [3685] = 1856, + [3686] = 2454, + [3687] = 2445, + [3688] = 2535, + [3689] = 2446, + [3690] = 2448, + [3691] = 2555, + [3692] = 1748, + [3693] = 2484, + [3694] = 1750, + [3695] = 1643, + [3696] = 2450, + [3697] = 2271, + [3698] = 1561, + [3699] = 1808, + [3700] = 3700, + [3701] = 2450, + [3702] = 2417, + [3703] = 2462, + [3704] = 1638, + [3705] = 2549, + [3706] = 2866, + [3707] = 2435, + [3708] = 2556, + [3709] = 2525, + [3710] = 2825, + [3711] = 2553, + [3712] = 2362, + [3713] = 2508, + [3714] = 2490, + [3715] = 2537, + [3716] = 2325, + [3717] = 2815, + [3718] = 1564, + [3719] = 2342, + [3720] = 2411, + [3721] = 2547, + [3722] = 2545, + [3723] = 2493, + [3724] = 3724, + [3725] = 1634, + [3726] = 2542, + [3727] = 1565, + [3728] = 2450, + [3729] = 1562, + [3730] = 1567, + [3731] = 1644, + [3732] = 2889, + [3733] = 2539, + [3734] = 2540, + [3735] = 1627, + [3736] = 1639, + [3737] = 2824, + [3738] = 1562, + [3739] = 1917, + [3740] = 3740, [3741] = 3741, - [3742] = 2466, - [3743] = 3743, - [3744] = 3696, - [3745] = 3697, - [3746] = 3697, - [3747] = 3713, - [3748] = 3748, - [3749] = 1722, - [3750] = 2379, - [3751] = 1888, - [3752] = 3697, - [3753] = 3697, - [3754] = 3699, - [3755] = 2380, - [3756] = 3697, - [3757] = 3697, - [3758] = 2443, - [3759] = 1942, - [3760] = 2384, - [3761] = 3761, - [3762] = 3696, - [3763] = 3697, - [3764] = 2855, - [3765] = 3694, - [3766] = 2381, - [3767] = 3694, - [3768] = 3696, - [3769] = 3697, - [3770] = 1899, - [3771] = 2482, - [3772] = 1721, - [3773] = 3713, - [3774] = 3699, - [3775] = 3696, - [3776] = 3697, - [3777] = 3697, - [3778] = 3697, - [3779] = 3741, - [3780] = 3697, - [3781] = 3694, - [3782] = 2377, - [3783] = 3697, - [3784] = 3703, - [3785] = 3696, - [3786] = 3741, - [3787] = 3787, - [3788] = 3697, - [3789] = 3703, - [3790] = 3741, - [3791] = 1773, - [3792] = 3703, - [3793] = 3741, - [3794] = 3699, - [3795] = 3703, - [3796] = 3741, - [3797] = 2388, - [3798] = 3109, - [3799] = 3799, - [3800] = 2497, - [3801] = 2498, - [3802] = 2494, - [3803] = 2499, - [3804] = 1622, - [3805] = 2441, - [3806] = 2500, - [3807] = 2843, - [3808] = 2524, - [3809] = 2443, - [3810] = 2464, - [3811] = 2465, - [3812] = 2452, - [3813] = 2448, - [3814] = 2466, - [3815] = 2453, - [3816] = 2423, - [3817] = 1541, - [3818] = 2050, - [3819] = 3799, - [3820] = 3283, - [3821] = 2484, - [3822] = 1892, - [3823] = 1911, - [3824] = 1905, - [3825] = 3371, - [3826] = 1900, - [3827] = 2452, - [3828] = 2453, - [3829] = 2455, - [3830] = 2481, - [3831] = 2456, - [3832] = 2426, - [3833] = 2485, - [3834] = 2486, - [3835] = 3799, - [3836] = 1623, - [3837] = 2271, - [3838] = 2215, - [3839] = 1612, - [3840] = 2426, - [3841] = 2470, - [3842] = 3799, - [3843] = 2455, - [3844] = 2456, - [3845] = 2410, - [3846] = 136, - [3847] = 2471, - [3848] = 3799, + [3742] = 2540, + [3743] = 3740, + [3744] = 2555, + [3745] = 2434, + [3746] = 1865, + [3747] = 2408, + [3748] = 3740, + [3749] = 3749, + [3750] = 3740, + [3751] = 2428, + [3752] = 1951, + [3753] = 3740, + [3754] = 2428, + [3755] = 3740, + [3756] = 2435, + [3757] = 3740, + [3758] = 3758, + [3759] = 2417, + [3760] = 3760, + [3761] = 3740, + [3762] = 3762, + [3763] = 3763, + [3764] = 3740, + [3765] = 3763, + [3766] = 3749, + [3767] = 3767, + [3768] = 3740, + [3769] = 3740, + [3770] = 3740, + [3771] = 3740, + [3772] = 3772, + [3773] = 3763, + [3774] = 3749, + [3775] = 2887, + [3776] = 3767, + [3777] = 1598, + [3778] = 3740, + [3779] = 1915, + [3780] = 3763, + [3781] = 3749, + [3782] = 3767, + [3783] = 3740, + [3784] = 3763, + [3785] = 3749, + [3786] = 3767, + [3787] = 3740, + [3788] = 3030, + [3789] = 3763, + [3790] = 3059, + [3791] = 3749, + [3792] = 1834, + [3793] = 1856, + [3794] = 3767, + [3795] = 3795, + [3796] = 3767, + [3797] = 3749, + [3798] = 3767, + [3799] = 3749, + [3800] = 3767, + [3801] = 1748, + [3802] = 3802, + [3803] = 1561, + [3804] = 1750, + [3805] = 3772, + [3806] = 3408, + [3807] = 2402, + [3808] = 3410, + [3809] = 3740, + [3810] = 2903, + [3811] = 3811, + [3812] = 1947, + [3813] = 3740, + [3814] = 3802, + [3815] = 3772, + [3816] = 3802, + [3817] = 3772, + [3818] = 3802, + [3819] = 3772, + [3820] = 3802, + [3821] = 3772, + [3822] = 3802, + [3823] = 3772, + [3824] = 3802, + [3825] = 3772, + [3826] = 3802, + [3827] = 3772, + [3828] = 3741, + [3829] = 3762, + [3830] = 3767, + [3831] = 3831, + [3832] = 2401, + [3833] = 3802, + [3834] = 2454, + [3835] = 3835, + [3836] = 3741, + [3837] = 3762, + [3838] = 3741, + [3839] = 3762, + [3840] = 3741, + [3841] = 3762, + [3842] = 3741, + [3843] = 3762, + [3844] = 2525, + [3845] = 3749, + [3846] = 1627, + [3847] = 2538, + [3848] = 1314, [3849] = 135, - [3850] = 3799, - [3851] = 2533, - [3852] = 1615, - [3853] = 2477, - [3854] = 2495, - [3855] = 2506, - [3856] = 3799, - [3857] = 1721, - [3858] = 1773, - [3859] = 2496, - [3860] = 2425, - [3861] = 2497, - [3862] = 2477, - [3863] = 1609, - [3864] = 2441, - [3865] = 2442, - [3866] = 2498, - [3867] = 2499, - [3868] = 1613, - [3869] = 3799, - [3870] = 2451, - [3871] = 1722, - [3872] = 3372, - [3873] = 1616, - [3874] = 1725, - [3875] = 1621, - [3876] = 3799, - [3877] = 2321, - [3878] = 2322, - [3879] = 3799, - [3880] = 2481, - [3881] = 3799, - [3882] = 3799, - [3883] = 3371, - [3884] = 3372, - [3885] = 2482, - [3886] = 3799, - [3887] = 2470, - [3888] = 2442, - [3889] = 2461, - [3890] = 3799, - [3891] = 3799, - [3892] = 2412, - [3893] = 2471, - [3894] = 3799, - [3895] = 1607, - [3896] = 2464, - [3897] = 2484, - [3898] = 2465, - [3899] = 2485, - [3900] = 2425, - [3901] = 2486, - [3902] = 2533, - [3903] = 1606, - [3904] = 3799, - [3905] = 2051, - [3906] = 2451, - [3907] = 1610, - [3908] = 2461, - [3909] = 2116, - [3910] = 3799, - [3911] = 3799, - [3912] = 2500, - [3913] = 2493, - [3914] = 2494, - [3915] = 1608, - [3916] = 1611, - [3917] = 1618, - [3918] = 2495, - [3919] = 2410, - [3920] = 2412, - [3921] = 1620, - [3922] = 2496, - [3923] = 2493, - [3924] = 3924, - [3925] = 1728, - [3926] = 3926, - [3927] = 3926, - [3928] = 3928, - [3929] = 1773, - [3930] = 3930, - [3931] = 1592, - [3932] = 3930, - [3933] = 1722, - [3934] = 1911, - [3935] = 3928, - [3936] = 3926, - [3937] = 1593, - [3938] = 3930, - [3939] = 2321, - [3940] = 3930, - [3941] = 3928, - [3942] = 2200, - [3943] = 2201, - [3944] = 3928, - [3945] = 3928, - [3946] = 3926, - [3947] = 2322, - [3948] = 3928, - [3949] = 1892, - [3950] = 1905, - [3951] = 2190, - [3952] = 2191, - [3953] = 1725, - [3954] = 2192, - [3955] = 2193, - [3956] = 2181, - [3957] = 3372, - [3958] = 3926, - [3959] = 2183, - [3960] = 2206, - [3961] = 2186, - [3962] = 1546, - [3963] = 3926, - [3964] = 3930, - [3965] = 1721, - [3966] = 3966, - [3967] = 3371, - [3968] = 1900, - [3969] = 3930, - [3970] = 3928, - [3971] = 2175, - [3972] = 3966, - [3973] = 3926, - [3974] = 2173, - [3975] = 3930, - [3976] = 2217, + [3850] = 2441, + [3851] = 2889, + [3852] = 2442, + [3853] = 1921, + [3854] = 1632, + [3855] = 2490, + [3856] = 2462, + [3857] = 1629, + [3858] = 2468, + [3859] = 1630, + [3860] = 3860, + [3861] = 1834, + [3862] = 1856, + [3863] = 2538, + [3864] = 1929, + [3865] = 2564, + [3866] = 2556, + [3867] = 3860, + [3868] = 2391, + [3869] = 1628, + [3870] = 2342, + [3871] = 2444, + [3872] = 1920, + [3873] = 1636, + [3874] = 2479, + [3875] = 2271, + [3876] = 3860, + [3877] = 2537, + [3878] = 1637, + [3879] = 2445, + [3880] = 2446, + [3881] = 3860, + [3882] = 3860, + [3883] = 2460, + [3884] = 3408, + [3885] = 3410, + [3886] = 2443, + [3887] = 2547, + [3888] = 2447, + [3889] = 3860, + [3890] = 2448, + [3891] = 3860, + [3892] = 1748, + [3893] = 2508, + [3894] = 1750, + [3895] = 1924, + [3896] = 3860, + [3897] = 3860, + [3898] = 2443, + [3899] = 2488, + [3900] = 3860, + [3901] = 3860, + [3902] = 3410, + [3903] = 2481, + [3904] = 2460, + [3905] = 3860, + [3906] = 1634, + [3907] = 2462, + [3908] = 3860, + [3909] = 1631, + [3910] = 2552, + [3911] = 2468, + [3912] = 2562, + [3913] = 2451, + [3914] = 2133, + [3915] = 2539, + [3916] = 2540, + [3917] = 2494, + [3918] = 2564, + [3919] = 2454, + [3920] = 2539, + [3921] = 2545, + [3922] = 2551, + [3923] = 3860, + [3924] = 1638, + [3925] = 2537, + [3926] = 2562, + [3927] = 2451, + [3928] = 3860, + [3929] = 2552, + [3930] = 2448, + [3931] = 3931, + [3932] = 2555, + [3933] = 2490, + [3934] = 2484, + [3935] = 2493, + [3936] = 2488, + [3937] = 1639, + [3938] = 2325, + [3939] = 2545, + [3940] = 3408, + [3941] = 2485, + [3942] = 2547, + [3943] = 2493, + [3944] = 2487, + [3945] = 2441, + [3946] = 2124, + [3947] = 2442, + [3948] = 2551, + [3949] = 1641, + [3950] = 1642, + [3951] = 1643, + [3952] = 2508, + [3953] = 2535, + [3954] = 3860, + [3955] = 3860, + [3956] = 2525, + [3957] = 2479, + [3958] = 2481, + [3959] = 1644, + [3960] = 3860, + [3961] = 2484, + [3962] = 3386, + [3963] = 3860, + [3964] = 2444, + [3965] = 2445, + [3966] = 2446, + [3967] = 2485, + [3968] = 2447, + [3969] = 3860, + [3970] = 2487, + [3971] = 136, + [3972] = 2160, + [3973] = 3973, + [3974] = 3973, + [3975] = 3975, + [3976] = 1613, [3977] = 3977, - [3978] = 1591, - [3979] = 1864, - [3980] = 2197, - [3981] = 3371, - [3982] = 3982, - [3983] = 3983, - [3984] = 3983, - [3985] = 1870, - [3986] = 1901, - [3987] = 1878, - [3988] = 3977, - [3989] = 3372, - [3990] = 3371, + [3978] = 1920, + [3979] = 3408, + [3980] = 3975, + [3981] = 3975, + [3982] = 3977, + [3983] = 3410, + [3984] = 1834, + [3985] = 3975, + [3986] = 2214, + [3987] = 2226, + [3988] = 1929, + [3989] = 3975, + [3990] = 2247, [3991] = 3977, - [3992] = 1590, - [3993] = 2210, - [3994] = 1839, - [3995] = 3371, - [3996] = 3372, - [3997] = 3372, - [3998] = 1899, - [3999] = 3983, - [4000] = 3372, - [4001] = 2197, - [4002] = 1885, - [4003] = 1847, - [4004] = 2222, - [4005] = 3371, - [4006] = 2276, - [4007] = 2322, - [4008] = 4008, - [4009] = 4009, - [4010] = 4010, - [4011] = 4009, - [4012] = 4012, - [4013] = 1818, - [4014] = 4009, - [4015] = 4012, - [4016] = 4010, - [4017] = 4012, - [4018] = 2394, - [4019] = 1784, - [4020] = 4008, - [4021] = 4010, - [4022] = 4009, - [4023] = 4012, - [4024] = 1713, - [4025] = 4025, - [4026] = 2050, - [4027] = 4008, - [4028] = 3748, - [4029] = 4012, - [4030] = 4009, - [4031] = 4012, - [4032] = 3371, - [4033] = 4010, - [4034] = 3372, - [4035] = 2321, - [4036] = 4008, - [4037] = 4009, - [4038] = 2197, - [4039] = 4008, - [4040] = 3371, - [4041] = 3372, - [4042] = 1899, - [4043] = 3761, - [4044] = 4010, - [4045] = 4008, - [4046] = 1901, - [4047] = 1541, - [4048] = 2385, - [4049] = 4009, - [4050] = 4008, - [4051] = 4012, - [4052] = 4010, - [4053] = 4010, - [4054] = 1865, - [4055] = 1853, - [4056] = 1854, - [4057] = 2322, - [4058] = 1585, - [4059] = 1900, - [4060] = 2321, - [4061] = 1834, - [4062] = 1842, - [4063] = 1866, - [4064] = 1840, - [4065] = 1905, - [4066] = 1549, - [4067] = 1841, - [4068] = 262, - [4069] = 1592, - [4070] = 1871, - [4071] = 1872, - [4072] = 3982, - [4073] = 1614, - [4074] = 1880, - [4075] = 1881, - [4076] = 245, - [4077] = 1882, - [4078] = 1877, - [4079] = 1883, - [4080] = 1843, - [4081] = 1859, - [4082] = 1875, - [4083] = 1837, - [4084] = 1593, - [4085] = 3983, - [4086] = 1892, - [4087] = 1879, - [4088] = 3977, - [4089] = 1849, - [4090] = 1848, - [4091] = 3371, - [4092] = 1867, - [4093] = 3372, - [4094] = 1850, - [4095] = 1852, - [4096] = 1884, - [4097] = 1876, - [4098] = 1886, - [4099] = 248, - [4100] = 1887, - [4101] = 357, - [4102] = 1873, - [4103] = 1911, - [4104] = 1874, - [4105] = 266, - [4106] = 338, - [4107] = 3371, - [4108] = 2796, - [4109] = 2797, - [4110] = 2798, - [4111] = 2799, - [4112] = 2802, - [4113] = 2807, - [4114] = 2818, - [4115] = 2819, - [4116] = 2808, - [4117] = 2812, - [4118] = 4118, - [4119] = 2813, - [4120] = 2821, - [4121] = 1892, - [4122] = 4122, - [4123] = 4123, - [4124] = 4124, - [4125] = 4125, - [4126] = 1541, - [4127] = 4127, - [4128] = 1578, - [4129] = 4118, - [4130] = 3977, - [4131] = 1578, - [4132] = 4132, - [4133] = 1911, - [4134] = 4134, - [4135] = 2222, - [4136] = 1905, - [4137] = 4122, - [4138] = 2276, - [4139] = 4123, - [4140] = 4124, - [4141] = 3372, - [4142] = 4125, - [4143] = 1900, - [4144] = 4144, - [4145] = 3977, - [4146] = 2448, - [4147] = 3983, - [4148] = 2210, - [4149] = 4122, - [4150] = 3371, - [4151] = 4123, - [4152] = 4124, - [4153] = 4125, - [4154] = 4144, - [4155] = 3372, - [4156] = 4156, - [4157] = 4132, - [4158] = 2772, - [4159] = 2773, - [4160] = 2524, - [4161] = 2217, - [4162] = 3372, - [4163] = 2506, - [4164] = 3983, - [4165] = 4134, - [4166] = 2817, - [4167] = 2790, - [4168] = 2791, - [4169] = 3371, - [4170] = 2795, - [4171] = 2404, + [3992] = 3975, + [3993] = 2246, + [3994] = 3973, + [3995] = 3995, + [3996] = 3975, + [3997] = 3975, + [3998] = 1561, + [3999] = 3977, + [4000] = 2227, + [4001] = 3973, + [4002] = 1750, + [4003] = 1816, + [4004] = 1856, + [4005] = 3977, + [4006] = 2216, + [4007] = 2228, + [4008] = 3973, + [4009] = 2213, + [4010] = 1924, + [4011] = 2229, + [4012] = 3973, + [4013] = 3973, + [4014] = 3977, + [4015] = 3977, + [4016] = 1748, + [4017] = 3995, + [4018] = 2245, + [4019] = 2230, + [4020] = 3977, + [4021] = 1921, + [4022] = 3975, + [4023] = 2231, + [4024] = 1612, + [4025] = 3973, + [4026] = 3973, + [4027] = 3977, + [4028] = 4028, + [4029] = 4029, + [4030] = 1611, + [4031] = 1917, + [4032] = 1915, + [4033] = 4028, + [4034] = 3408, + [4035] = 3408, + [4036] = 1610, + [4037] = 1899, + [4038] = 1906, + [4039] = 3410, + [4040] = 4028, + [4041] = 4041, + [4042] = 1876, + [4043] = 2284, + [4044] = 2254, + [4045] = 1896, + [4046] = 3410, + [4047] = 1881, + [4048] = 1889, + [4049] = 4029, + [4050] = 2315, + [4051] = 3408, + [4052] = 2244, + [4053] = 3410, + [4054] = 4029, + [4055] = 2244, + [4056] = 3408, + [4057] = 2327, + [4058] = 3410, + [4059] = 3408, + [4060] = 4060, + [4061] = 4061, + [4062] = 4060, + [4063] = 1314, + [4064] = 4060, + [4065] = 4065, + [4066] = 4065, + [4067] = 4065, + [4068] = 4065, + [4069] = 3758, + [4070] = 4060, + [4071] = 4065, + [4072] = 4060, + [4073] = 4073, + [4074] = 1793, + [4075] = 4073, + [4076] = 4065, + [4077] = 2124, + [4078] = 2244, + [4079] = 2424, + [4080] = 4065, + [4081] = 4073, + [4082] = 4061, + [4083] = 3410, + [4084] = 2391, + [4085] = 4085, + [4086] = 2342, + [4087] = 4061, + [4088] = 4073, + [4089] = 1797, + [4090] = 4073, + [4091] = 3410, + [4092] = 4061, + [4093] = 4073, + [4094] = 2422, + [4095] = 4060, + [4096] = 4061, + [4097] = 4073, + [4098] = 1915, + [4099] = 4028, + [4100] = 3408, + [4101] = 4029, + [4102] = 1782, + [4103] = 4060, + [4104] = 4061, + [4105] = 4061, + [4106] = 1917, + [4107] = 3760, + [4108] = 1890, + [4109] = 1877, + [4110] = 1912, + [4111] = 1929, + [4112] = 1878, + [4113] = 1633, + [4114] = 1900, + [4115] = 2342, + [4116] = 1920, + [4117] = 2391, + [4118] = 1858, + [4119] = 3408, + [4120] = 3410, + [4121] = 1897, + [4122] = 1613, + [4123] = 1898, + [4124] = 1901, + [4125] = 1888, + [4126] = 281, + [4127] = 284, + [4128] = 1875, + [4129] = 344, + [4130] = 1885, + [4131] = 1895, + [4132] = 1921, + [4133] = 1578, + [4134] = 1924, + [4135] = 1884, + [4136] = 1902, + [4137] = 262, + [4138] = 1911, + [4139] = 1861, + [4140] = 4041, + [4141] = 1907, + [4142] = 1872, + [4143] = 1908, + [4144] = 1892, + [4145] = 1864, + [4146] = 1909, + [4147] = 1905, + [4148] = 1882, + [4149] = 1880, + [4150] = 1612, + [4151] = 254, + [4152] = 362, + [4153] = 1913, + [4154] = 4028, + [4155] = 1883, + [4156] = 1873, + [4157] = 1874, + [4158] = 4029, + [4159] = 1886, + [4160] = 1608, + [4161] = 2821, + [4162] = 4029, + [4163] = 1314, + [4164] = 4164, + [4165] = 2556, + [4166] = 1920, + [4167] = 4167, + [4168] = 2838, + [4169] = 2816, + [4170] = 1924, + [4171] = 2535, [4172] = 4172, - [4173] = 4172, - [4174] = 2215, - [4175] = 1935, - [4176] = 3977, - [4177] = 4177, - [4178] = 2386, - [4179] = 4172, - [4180] = 1950, - [4181] = 1948, - [4182] = 3983, - [4183] = 2271, - [4184] = 4184, - [4185] = 2550, - [4186] = 2574, - [4187] = 2367, - [4188] = 4188, - [4189] = 2197, - [4190] = 3371, - [4191] = 4191, - [4192] = 1951, - [4193] = 1930, - [4194] = 1938, - [4195] = 1944, - [4196] = 1946, - [4197] = 2558, - [4198] = 1927, - [4199] = 2870, - [4200] = 2050, - [4201] = 2321, - [4202] = 2322, - [4203] = 1928, - [4204] = 4204, - [4205] = 2855, - [4206] = 1940, - [4207] = 1943, - [4208] = 1947, - [4209] = 1592, - [4210] = 1593, - [4211] = 3372, - [4212] = 3371, - [4213] = 3977, - [4214] = 2215, - [4215] = 3983, - [4216] = 3372, - [4217] = 1585, - [4218] = 1728, - [4219] = 4122, - [4220] = 1623, - [4221] = 1615, - [4222] = 1612, - [4223] = 4123, - [4224] = 4124, - [4225] = 4125, - [4226] = 1546, - [4227] = 1606, - [4228] = 1608, - [4229] = 1901, - [4230] = 1613, - [4231] = 1899, - [4232] = 135, - [4233] = 1616, - [4234] = 3983, - [4235] = 3983, - [4236] = 136, - [4237] = 1620, - [4238] = 1614, - [4239] = 1592, - [4240] = 1618, - [4241] = 1622, - [4242] = 4156, - [4243] = 2855, - [4244] = 1621, - [4245] = 3977, - [4246] = 3977, - [4247] = 1593, - [4248] = 1611, - [4249] = 4249, - [4250] = 2870, - [4251] = 1609, - [4252] = 1610, - [4253] = 3983, - [4254] = 4156, - [4255] = 3977, - [4256] = 1607, - [4257] = 2271, - [4258] = 2797, - [4259] = 3977, - [4260] = 2795, - [4261] = 4122, - [4262] = 4123, - [4263] = 4124, - [4264] = 4125, - [4265] = 2802, - [4266] = 2773, - [4267] = 1835, - [4268] = 2821, - [4269] = 2807, - [4270] = 4270, - [4271] = 4123, - [4272] = 2819, - [4273] = 2817, - [4274] = 2798, - [4275] = 1591, - [4276] = 3983, - [4277] = 2819, - [4278] = 2795, - [4279] = 2321, - [4280] = 2050, - [4281] = 1591, - [4282] = 2791, - [4283] = 2791, - [4284] = 2813, - [4285] = 2796, - [4286] = 2798, - [4287] = 4184, - [4288] = 2799, - [4289] = 1590, - [4290] = 2802, - [4291] = 2818, - [4292] = 3371, - [4293] = 2799, - [4294] = 2772, - [4295] = 4188, - [4296] = 2322, - [4297] = 4124, - [4298] = 4122, - [4299] = 3983, - [4300] = 4125, - [4301] = 3977, - [4302] = 2818, - [4303] = 4303, - [4304] = 3372, - [4305] = 2797, - [4306] = 2808, - [4307] = 2812, - [4308] = 2197, - [4309] = 2808, - [4310] = 2772, - [4311] = 2796, - [4312] = 4312, - [4313] = 2821, - [4314] = 2807, - [4315] = 2773, - [4316] = 1590, - [4317] = 2813, - [4318] = 2812, - [4319] = 2790, - [4320] = 2790, - [4321] = 2817, - [4322] = 4322, - [4323] = 4323, - [4324] = 2276, - [4325] = 4323, - [4326] = 4326, - [4327] = 4327, - [4328] = 4323, - [4329] = 2217, - [4330] = 4323, - [4331] = 4331, - [4332] = 4323, - [4333] = 4122, - [4334] = 4323, - [4335] = 4327, - [4336] = 4323, - [4337] = 4249, - [4338] = 4327, - [4339] = 4323, - [4340] = 4340, - [4341] = 2222, - [4342] = 4342, - [4343] = 4323, - [4344] = 4323, - [4345] = 4340, - [4346] = 1813, - [4347] = 1539, - [4348] = 4327, - [4349] = 4323, - [4350] = 1543, - [4351] = 1542, - [4352] = 1545, - [4353] = 1538, - [4354] = 1814, - [4355] = 1540, - [4356] = 1947, - [4357] = 1544, - [4358] = 2116, - [4359] = 1928, - [4360] = 4331, - [4361] = 4340, - [4362] = 2855, - [4363] = 4363, - [4364] = 4327, - [4365] = 4340, - [4366] = 4340, - [4367] = 4323, - [4368] = 4363, - [4369] = 2210, - [4370] = 4323, - [4371] = 1950, - [4372] = 4372, - [4373] = 3983, - [4374] = 3977, - [4375] = 1948, - [4376] = 1816, - [4377] = 4331, - [4378] = 1603, - [4379] = 1951, - [4380] = 2870, - [4381] = 1930, - [4382] = 2051, - [4383] = 1938, - [4384] = 1728, - [4385] = 4327, - [4386] = 2050, - [4387] = 1944, - [4388] = 1946, - [4389] = 1927, - [4390] = 4331, - [4391] = 4323, - [4392] = 1940, - [4393] = 1614, - [4394] = 1943, - [4395] = 4327, - [4396] = 4340, - [4397] = 4331, - [4398] = 1790, - [4399] = 4125, - [4400] = 4400, - [4401] = 4331, - [4402] = 4323, - [4403] = 4403, - [4404] = 4123, - [4405] = 4323, - [4406] = 4124, - [4407] = 4363, - [4408] = 4323, - [4409] = 1935, - [4410] = 2377, - [4411] = 4411, - [4412] = 2798, + [4173] = 4173, + [4174] = 4174, + [4175] = 3408, + [4176] = 3410, + [4177] = 2868, + [4178] = 4178, + [4179] = 4178, + [4180] = 1929, + [4181] = 2822, + [4182] = 2839, + [4183] = 2823, + [4184] = 2824, + [4185] = 3408, + [4186] = 1921, + [4187] = 4187, + [4188] = 2815, + [4189] = 4173, + [4190] = 4174, + [4191] = 2254, + [4192] = 4192, + [4193] = 2867, + [4194] = 2866, + [4195] = 4187, + [4196] = 4172, + [4197] = 4167, + [4198] = 4192, + [4199] = 2327, + [4200] = 2817, + [4201] = 2494, + [4202] = 4202, + [4203] = 2826, + [4204] = 2825, + [4205] = 1598, + [4206] = 4172, + [4207] = 4207, + [4208] = 3408, + [4209] = 4187, + [4210] = 2818, + [4211] = 3410, + [4212] = 4164, + [4213] = 4029, + [4214] = 4174, + [4215] = 1598, + [4216] = 2819, + [4217] = 2315, + [4218] = 4028, + [4219] = 2820, + [4220] = 2284, + [4221] = 4167, + [4222] = 2827, + [4223] = 4028, + [4224] = 3410, + [4225] = 4029, + [4226] = 4226, + [4227] = 4028, + [4228] = 2427, + [4229] = 3408, + [4230] = 4230, + [4231] = 2391, + [4232] = 3410, + [4233] = 2342, + [4234] = 1612, + [4235] = 4230, + [4236] = 1978, + [4237] = 1951, + [4238] = 2586, + [4239] = 1937, + [4240] = 2592, + [4241] = 1979, + [4242] = 1613, + [4243] = 4243, + [4244] = 1962, + [4245] = 1984, + [4246] = 4187, + [4247] = 1960, + [4248] = 1948, + [4249] = 2124, + [4250] = 1959, + [4251] = 2903, + [4252] = 2271, + [4253] = 2325, + [4254] = 4254, + [4255] = 1946, + [4256] = 4174, + [4257] = 1938, + [4258] = 4258, + [4259] = 1973, + [4260] = 4172, + [4261] = 4167, + [4262] = 2430, + [4263] = 2577, + [4264] = 1980, + [4265] = 4265, + [4266] = 4230, + [4267] = 2431, + [4268] = 2244, + [4269] = 2887, + [4270] = 1816, + [4271] = 4028, + [4272] = 4029, + [4273] = 4028, + [4274] = 1634, + [4275] = 1613, + [4276] = 2903, + [4277] = 3408, + [4278] = 3410, + [4279] = 2271, + [4280] = 1639, + [4281] = 1644, + [4282] = 1608, + [4283] = 4207, + [4284] = 1627, + [4285] = 1636, + [4286] = 1628, + [4287] = 1637, + [4288] = 2325, + [4289] = 4187, + [4290] = 1633, + [4291] = 4172, + [4292] = 4167, + [4293] = 4028, + [4294] = 2887, + [4295] = 1641, + [4296] = 1642, + [4297] = 1561, + [4298] = 4029, + [4299] = 1631, + [4300] = 1629, + [4301] = 1630, + [4302] = 1643, + [4303] = 1632, + [4304] = 4207, + [4305] = 1915, + [4306] = 4306, + [4307] = 4029, + [4308] = 1638, + [4309] = 1917, + [4310] = 4028, + [4311] = 136, + [4312] = 135, + [4313] = 1612, + [4314] = 4029, + [4315] = 4174, + [4316] = 2817, + [4317] = 2815, + [4318] = 2342, + [4319] = 2839, + [4320] = 2827, + [4321] = 1610, + [4322] = 4226, + [4323] = 2824, + [4324] = 2815, + [4325] = 1610, + [4326] = 2816, + [4327] = 4187, + [4328] = 4174, + [4329] = 4172, + [4330] = 4167, + [4331] = 2867, + [4332] = 4265, + [4333] = 2816, + [4334] = 4334, + [4335] = 1611, + [4336] = 2866, + [4337] = 2868, + [4338] = 2866, + [4339] = 4167, + [4340] = 2817, + [4341] = 2818, + [4342] = 2391, + [4343] = 2819, + [4344] = 2838, + [4345] = 2838, + [4346] = 2820, + [4347] = 2821, + [4348] = 2822, + [4349] = 2823, + [4350] = 2867, + [4351] = 2868, + [4352] = 3408, + [4353] = 4174, + [4354] = 2819, + [4355] = 2820, + [4356] = 4172, + [4357] = 2824, + [4358] = 2821, + [4359] = 2825, + [4360] = 4187, + [4361] = 2822, + [4362] = 2826, + [4363] = 2823, + [4364] = 2839, + [4365] = 4365, + [4366] = 2827, + [4367] = 1611, + [4368] = 4028, + [4369] = 1904, + [4370] = 2244, + [4371] = 4029, + [4372] = 2124, + [4373] = 2825, + [4374] = 4374, + [4375] = 4029, + [4376] = 3410, + [4377] = 2826, + [4378] = 4028, + [4379] = 2818, + [4380] = 2124, + [4381] = 1951, + [4382] = 4382, + [4383] = 1948, + [4384] = 1633, + [4385] = 4172, + [4386] = 4386, + [4387] = 1805, + [4388] = 1959, + [4389] = 4386, + [4390] = 4390, + [4391] = 4390, + [4392] = 4392, + [4393] = 4392, + [4394] = 4386, + [4395] = 1978, + [4396] = 4390, + [4397] = 4386, + [4398] = 4398, + [4399] = 1979, + [4400] = 4386, + [4401] = 4392, + [4402] = 4386, + [4403] = 1806, + [4404] = 4386, + [4405] = 1980, + [4406] = 1984, + [4407] = 4407, + [4408] = 1960, + [4409] = 1937, + [4410] = 4407, + [4411] = 1938, + [4412] = 1962, [4413] = 4413, - [4414] = 3977, - [4415] = 4124, - [4416] = 4122, - [4417] = 4417, - [4418] = 4418, - [4419] = 2799, - [4420] = 2381, - [4421] = 2790, - [4422] = 2802, - [4423] = 2201, - [4424] = 4424, - [4425] = 1888, - [4426] = 2807, - [4427] = 2380, - [4428] = 3983, - [4429] = 2813, - [4430] = 2818, - [4431] = 4431, - [4432] = 4432, - [4433] = 4433, - [4434] = 2173, - [4435] = 2791, - [4436] = 4125, - [4437] = 4417, - [4438] = 4123, - [4439] = 4124, - [4440] = 4440, - [4441] = 2819, - [4442] = 4122, - [4443] = 4417, - [4444] = 1901, - [4445] = 4125, - [4446] = 4446, - [4447] = 4417, - [4448] = 4417, - [4449] = 4123, - [4450] = 4450, - [4451] = 4124, - [4452] = 4452, - [4453] = 4440, - [4454] = 2322, - [4455] = 3983, - [4456] = 2808, - [4457] = 4457, - [4458] = 4417, - [4459] = 2175, - [4460] = 4460, - [4461] = 4461, - [4462] = 4462, - [4463] = 2325, - [4464] = 4440, - [4465] = 4125, - [4466] = 4457, - [4467] = 4122, - [4468] = 1784, - [4469] = 4469, + [4414] = 2903, + [4415] = 4386, + [4416] = 1946, + [4417] = 1973, + [4418] = 4407, + [4419] = 4167, + [4420] = 4420, + [4421] = 2254, + [4422] = 4028, + [4423] = 4029, + [4424] = 4390, + [4425] = 2327, + [4426] = 2284, + [4427] = 2133, + [4428] = 2160, + [4429] = 4386, + [4430] = 4430, + [4431] = 4392, + [4432] = 4390, + [4433] = 4392, + [4434] = 4386, + [4435] = 4187, + [4436] = 2315, + [4437] = 4407, + [4438] = 1564, + [4439] = 1565, + [4440] = 1562, + [4441] = 4386, + [4442] = 1567, + [4443] = 1563, + [4444] = 1559, + [4445] = 1560, + [4446] = 4306, + [4447] = 4174, + [4448] = 4413, + [4449] = 1816, + [4450] = 4386, + [4451] = 1808, + [4452] = 4390, + [4453] = 4392, + [4454] = 4386, + [4455] = 2887, + [4456] = 1623, + [4457] = 4386, + [4458] = 4386, + [4459] = 4407, + [4460] = 4407, + [4461] = 1784, + [4462] = 4386, + [4463] = 4463, + [4464] = 4390, + [4465] = 4465, + [4466] = 4413, + [4467] = 4386, + [4468] = 2822, + [4469] = 2246, [4470] = 4470, - [4471] = 2181, - [4472] = 4418, + [4471] = 4471, + [4472] = 4472, [4473] = 2821, [4474] = 4474, - [4475] = 4440, - [4476] = 4476, - [4477] = 4461, - [4478] = 2379, - [4479] = 2812, - [4480] = 1899, - [4481] = 4440, - [4482] = 4417, - [4483] = 4483, - [4484] = 4123, + [4475] = 2823, + [4476] = 2402, + [4477] = 4477, + [4478] = 4187, + [4479] = 1865, + [4480] = 4480, + [4481] = 4481, + [4482] = 4482, + [4483] = 2825, + [4484] = 4471, [4485] = 4485, - [4486] = 2773, - [4487] = 4124, - [4488] = 1614, - [4489] = 4489, - [4490] = 2772, - [4491] = 2190, - [4492] = 2773, - [4493] = 4457, - [4494] = 3233, - [4495] = 2790, - [4496] = 2384, - [4497] = 4417, - [4498] = 2388, - [4499] = 4125, - [4500] = 4457, - [4501] = 2183, - [4502] = 2797, - [4503] = 2321, - [4504] = 1728, - [4505] = 2791, - [4506] = 4440, - [4507] = 2388, - [4508] = 4417, - [4509] = 1546, - [4510] = 2817, - [4511] = 2795, - [4512] = 2796, - [4513] = 2197, - [4514] = 2191, - [4515] = 2797, - [4516] = 2798, - [4517] = 2790, - [4518] = 2791, - [4519] = 2817, - [4520] = 2795, - [4521] = 2796, - [4522] = 2797, - [4523] = 2798, - [4524] = 2799, - [4525] = 2802, - [4526] = 2807, - [4527] = 2818, - [4528] = 2819, - [4529] = 2808, - [4530] = 2812, - [4531] = 2813, - [4532] = 2821, - [4533] = 2772, - [4534] = 2799, - [4535] = 2773, - [4536] = 2802, - [4537] = 2192, - [4538] = 2807, - [4539] = 2206, - [4540] = 4540, - [4541] = 2193, - [4542] = 2818, - [4543] = 4543, - [4544] = 4417, - [4545] = 2377, - [4546] = 2186, - [4547] = 2379, - [4548] = 2819, - [4549] = 2380, - [4550] = 2381, - [4551] = 2772, - [4552] = 4457, - [4553] = 4553, - [4554] = 4440, - [4555] = 4322, - [4556] = 4556, - [4557] = 4557, - [4558] = 4127, - [4559] = 4559, - [4560] = 3977, - [4561] = 4461, - [4562] = 4461, - [4563] = 4123, - [4564] = 4417, - [4565] = 2808, - [4566] = 2812, - [4567] = 2813, - [4568] = 4568, - [4569] = 2821, - [4570] = 4156, - [4571] = 4457, - [4572] = 4122, - [4573] = 4417, - [4574] = 2817, - [4575] = 4417, - [4576] = 2384, - [4577] = 2200, - [4578] = 4474, - [4579] = 2795, - [4580] = 2796, - [4581] = 4476, - [4582] = 4461, + [4486] = 2867, + [4487] = 4487, + [4488] = 4481, + [4489] = 4481, + [4490] = 2868, + [4491] = 4471, + [4492] = 4174, + [4493] = 4493, + [4494] = 4029, + [4495] = 4172, + [4496] = 4496, + [4497] = 2247, + [4498] = 4498, + [4499] = 4499, + [4500] = 4500, + [4501] = 4501, + [4502] = 4167, + [4503] = 4028, + [4504] = 2214, + [4505] = 2401, + [4506] = 2434, + [4507] = 4507, + [4508] = 4508, + [4509] = 4509, + [4510] = 2824, + [4511] = 4493, + [4512] = 2827, + [4513] = 4174, + [4514] = 2838, + [4515] = 4172, + [4516] = 2216, + [4517] = 4499, + [4518] = 2839, + [4519] = 1797, + [4520] = 1561, + [4521] = 4521, + [4522] = 2826, + [4523] = 4471, + [4524] = 2435, + [4525] = 4481, + [4526] = 2417, + [4527] = 4527, + [4528] = 4028, + [4529] = 3319, + [4530] = 4202, + [4531] = 4499, + [4532] = 4167, + [4533] = 2839, + [4534] = 4534, + [4535] = 1816, + [4536] = 4481, + [4537] = 4521, + [4538] = 2816, + [4539] = 2815, + [4540] = 4527, + [4541] = 2816, + [4542] = 4471, + [4543] = 2226, + [4544] = 2227, + [4545] = 4545, + [4546] = 4187, + [4547] = 1917, + [4548] = 2866, + [4549] = 4471, + [4550] = 2817, + [4551] = 2818, + [4552] = 4481, + [4553] = 2408, + [4554] = 4499, + [4555] = 2819, + [4556] = 4481, + [4557] = 4174, + [4558] = 2815, + [4559] = 2816, + [4560] = 1633, + [4561] = 2817, + [4562] = 2818, + [4563] = 2819, + [4564] = 2820, + [4565] = 2821, + [4566] = 2822, + [4567] = 2823, + [4568] = 2867, + [4569] = 2868, + [4570] = 4172, + [4571] = 2824, + [4572] = 2825, + [4573] = 2826, + [4574] = 2827, + [4575] = 2820, + [4576] = 2838, + [4577] = 2839, + [4578] = 4521, + [4579] = 4167, + [4580] = 2229, + [4581] = 4545, + [4582] = 2821, [4583] = 4583, - [4584] = 1885, + [4584] = 4584, [4585] = 4585, - [4586] = 1886, - [4587] = 4587, - [4588] = 1887, - [4589] = 4585, - [4590] = 1834, - [4591] = 4585, - [4592] = 4585, - [4593] = 4593, - [4594] = 4594, - [4595] = 4593, - [4596] = 4596, - [4597] = 1842, - [4598] = 4598, - [4599] = 4599, - [4600] = 4600, - [4601] = 1899, - [4602] = 4602, + [4586] = 2822, + [4587] = 2823, + [4588] = 2867, + [4589] = 4481, + [4590] = 2868, + [4591] = 1915, + [4592] = 4592, + [4593] = 4430, + [4594] = 2434, + [4595] = 2342, + [4596] = 2401, + [4597] = 4481, + [4598] = 2402, + [4599] = 2408, + [4600] = 2245, + [4601] = 2838, + [4602] = 4499, [4603] = 4603, [4604] = 4604, - [4605] = 1843, - [4606] = 1849, - [4607] = 4607, - [4608] = 4608, - [4609] = 4585, - [4610] = 4610, - [4611] = 4611, - [4612] = 1859, - [4613] = 4613, - [4614] = 4585, - [4615] = 4615, - [4616] = 4616, - [4617] = 4610, - [4618] = 4607, - [4619] = 4619, - [4620] = 4620, - [4621] = 4587, - [4622] = 4613, - [4623] = 4623, - [4624] = 4594, - [4625] = 4615, - [4626] = 4610, - [4627] = 4593, - [4628] = 1837, - [4629] = 4594, - [4630] = 4610, - [4631] = 4583, - [4632] = 4632, - [4633] = 1884, - [4634] = 4600, - [4635] = 4613, - [4636] = 4602, - [4637] = 4603, - [4638] = 4122, - [4639] = 4123, - [4640] = 4124, - [4641] = 4125, - [4642] = 1873, + [4605] = 2230, + [4606] = 2815, + [4607] = 2231, + [4608] = 2866, + [4609] = 4187, + [4610] = 2824, + [4611] = 2825, + [4612] = 2435, + [4613] = 4481, + [4614] = 4029, + [4615] = 2817, + [4616] = 4499, + [4617] = 4481, + [4618] = 4174, + [4619] = 4172, + [4620] = 4167, + [4621] = 2818, + [4622] = 4521, + [4623] = 4471, + [4624] = 2826, + [4625] = 4481, + [4626] = 2417, + [4627] = 4207, + [4628] = 2819, + [4629] = 4521, + [4630] = 4630, + [4631] = 2244, + [4632] = 4481, + [4633] = 2228, + [4634] = 2827, + [4635] = 2213, + [4636] = 4187, + [4637] = 2820, + [4638] = 2391, + [4639] = 2362, + [4640] = 2866, + [4641] = 4641, + [4642] = 4642, [4643] = 4643, - [4644] = 4599, + [4644] = 4644, [4645] = 4645, - [4646] = 4583, - [4647] = 4583, - [4648] = 4585, - [4649] = 4607, - [4650] = 4594, - [4651] = 4602, - [4652] = 4610, - [4653] = 1874, - [4654] = 4616, - [4655] = 4583, - [4656] = 4585, + [4646] = 4646, + [4647] = 4647, + [4648] = 4648, + [4649] = 4646, + [4650] = 1884, + [4651] = 4651, + [4652] = 4652, + [4653] = 4653, + [4654] = 4654, + [4655] = 4655, + [4656] = 4656, [4657] = 4657, - [4658] = 4599, - [4659] = 1875, - [4660] = 1867, + [4658] = 4647, + [4659] = 4647, + [4660] = 4648, [4661] = 4661, - [4662] = 1864, - [4663] = 1865, - [4664] = 4607, - [4665] = 4665, - [4666] = 4657, - [4667] = 1866, - [4668] = 4599, - [4669] = 4620, - [4670] = 4587, - [4671] = 4615, - [4672] = 4613, - [4673] = 4616, + [4662] = 4662, + [4663] = 4662, + [4664] = 1889, + [4665] = 1905, + [4666] = 4654, + [4667] = 4656, + [4668] = 4029, + [4669] = 4648, + [4670] = 1912, + [4671] = 4662, + [4672] = 1888, + [4673] = 4673, [4674] = 4674, - [4675] = 4594, - [4676] = 4599, + [4675] = 4675, + [4676] = 4676, [4677] = 4677, - [4678] = 1877, - [4679] = 4583, - [4680] = 4583, - [4681] = 4620, - [4682] = 4607, - [4683] = 1876, - [4684] = 4599, - [4685] = 4603, - [4686] = 4616, - [4687] = 4587, + [4678] = 1902, + [4679] = 4657, + [4680] = 4677, + [4681] = 4681, + [4682] = 4681, + [4683] = 4681, + [4684] = 4673, + [4685] = 4652, + [4686] = 4686, + [4687] = 4648, [4688] = 4688, - [4689] = 4689, - [4690] = 2397, - [4691] = 4620, - [4692] = 4632, - [4693] = 1839, - [4694] = 4632, - [4695] = 1870, - [4696] = 4607, - [4697] = 4585, - [4698] = 4698, - [4699] = 1871, - [4700] = 4593, - [4701] = 1872, - [4702] = 4620, - [4703] = 4587, - [4704] = 4616, - [4705] = 4613, - [4706] = 1879, - [4707] = 4610, - [4708] = 4600, - [4709] = 4709, - [4710] = 1878, - [4711] = 4122, - [4712] = 4607, - [4713] = 4602, - [4714] = 4603, - [4715] = 4615, - [4716] = 1840, - [4717] = 4717, - [4718] = 4123, - [4719] = 4124, - [4720] = 1841, - [4721] = 4620, - [4722] = 4125, - [4723] = 4600, - [4724] = 4613, - [4725] = 4709, - [4726] = 1847, - [4727] = 4632, + [4689] = 4677, + [4690] = 1885, + [4691] = 4691, + [4692] = 4692, + [4693] = 4187, + [4694] = 4174, + [4695] = 4675, + [4696] = 4172, + [4697] = 4167, + [4698] = 4645, + [4699] = 4651, + [4700] = 1886, + [4701] = 4701, + [4702] = 4702, + [4703] = 4701, + [4704] = 4704, + [4705] = 4645, + [4706] = 4675, + [4707] = 4676, + [4708] = 2903, + [4709] = 2428, + [4710] = 4646, + [4711] = 4711, + [4712] = 1896, + [4713] = 4673, + [4714] = 4701, + [4715] = 4704, + [4716] = 4647, + [4717] = 1897, + [4718] = 4187, + [4719] = 1875, + [4720] = 1898, + [4721] = 1911, + [4722] = 1881, + [4723] = 4654, + [4724] = 4647, + [4725] = 4657, + [4726] = 4681, + [4727] = 4727, [4728] = 4728, - [4729] = 4594, - [4730] = 1880, - [4731] = 1848, - [4732] = 1850, - [4733] = 1852, - [4734] = 4674, - [4735] = 4735, - [4736] = 1881, - [4737] = 3983, - [4738] = 2870, - [4739] = 1882, - [4740] = 4585, - [4741] = 4616, - [4742] = 1901, - [4743] = 1883, - [4744] = 4744, - [4745] = 4593, - [4746] = 1853, - [4747] = 1854, - [4748] = 4599, - [4749] = 2855, - [4750] = 4620, - [4751] = 4600, - [4752] = 4752, - [4753] = 4602, - [4754] = 4603, - [4755] = 4585, - [4756] = 4587, - [4757] = 4610, - [4758] = 4616, - [4759] = 4585, - [4760] = 4616, - [4761] = 4594, - [4762] = 4762, - [4763] = 4717, - [4764] = 4764, - [4765] = 4765, - [4766] = 4766, - [4767] = 4616, - [4768] = 3977, - [4769] = 4661, - [4770] = 4665, - [4771] = 4665, - [4772] = 4665, - [4773] = 4665, - [4774] = 4665, - [4775] = 4613, - [4776] = 2247, - [4777] = 2455, - [4778] = 2506, - [4779] = 4709, - [4780] = 4780, - [4781] = 2464, - [4782] = 2465, - [4783] = 2466, + [4729] = 4681, + [4730] = 1864, + [4731] = 1899, + [4732] = 4174, + [4733] = 1900, + [4734] = 4645, + [4735] = 4172, + [4736] = 4647, + [4737] = 1858, + [4738] = 4167, + [4739] = 1872, + [4740] = 4655, + [4741] = 4673, + [4742] = 1873, + [4743] = 4688, + [4744] = 4677, + [4745] = 4681, + [4746] = 4704, + [4747] = 1861, + [4748] = 4675, + [4749] = 4643, + [4750] = 4704, + [4751] = 4676, + [4752] = 4681, + [4753] = 4657, + [4754] = 4754, + [4755] = 4654, + [4756] = 4643, + [4757] = 1895, + [4758] = 1901, + [4759] = 4645, + [4760] = 4654, + [4761] = 4648, + [4762] = 4656, + [4763] = 1877, + [4764] = 4648, + [4765] = 1874, + [4766] = 4655, + [4767] = 4028, + [4768] = 4643, + [4769] = 4655, + [4770] = 4662, + [4771] = 1906, + [4772] = 4772, + [4773] = 1890, + [4774] = 4646, + [4775] = 4775, + [4776] = 4776, + [4777] = 4775, + [4778] = 4675, + [4779] = 4681, + [4780] = 1882, + [4781] = 1876, + [4782] = 1917, + [4783] = 4657, [4784] = 4784, - [4785] = 4780, + [4785] = 1907, [4786] = 4786, - [4787] = 4787, - [4788] = 2410, - [4789] = 4709, - [4790] = 2456, - [4791] = 4780, - [4792] = 2470, - [4793] = 2471, - [4794] = 2533, - [4795] = 2215, - [4796] = 4780, - [4797] = 2477, - [4798] = 4780, - [4799] = 3983, - [4800] = 4780, - [4801] = 4780, - [4802] = 4709, - [4803] = 2481, - [4804] = 4709, - [4805] = 2482, - [4806] = 2484, - [4807] = 2485, - [4808] = 2486, - [4809] = 2493, - [4810] = 2494, - [4811] = 2495, - [4812] = 2496, - [4813] = 4813, - [4814] = 2498, - [4815] = 2499, - [4816] = 2425, - [4817] = 2412, - [4818] = 4122, - [4819] = 4123, - [4820] = 2451, - [4821] = 4124, - [4822] = 4125, - [4823] = 4709, - [4824] = 4709, - [4825] = 2271, - [4826] = 2116, - [4827] = 2448, - [4828] = 2441, - [4829] = 2461, - [4830] = 4830, - [4831] = 2524, - [4832] = 2423, - [4833] = 2442, - [4834] = 2452, - [4835] = 2426, - [4836] = 2051, - [4837] = 3977, - [4838] = 2453, - [4839] = 2500, - [4840] = 2443, - [4841] = 2497, - [4842] = 4842, - [4843] = 4709, - [4844] = 2193, - [4845] = 3983, - [4846] = 2321, - [4847] = 1901, - [4848] = 4125, - [4849] = 4849, - [4850] = 4850, - [4851] = 4849, - [4852] = 1784, - [4853] = 2050, - [4854] = 4123, - [4855] = 4125, - [4856] = 2200, - [4857] = 4709, - [4858] = 2175, - [4859] = 1818, - [4860] = 3977, - [4861] = 4842, - [4862] = 2190, - [4863] = 2322, - [4864] = 4709, - [4865] = 1593, - [4866] = 4709, - [4867] = 2322, - [4868] = 2181, - [4869] = 4122, - [4870] = 2173, - [4871] = 4123, - [4872] = 4709, - [4873] = 4873, - [4874] = 4124, - [4875] = 4123, - [4876] = 2321, - [4877] = 2201, - [4878] = 2191, - [4879] = 4709, - [4880] = 2197, - [4881] = 4124, - [4882] = 1592, - [4883] = 4709, - [4884] = 2183, - [4885] = 2192, - [4886] = 2206, - [4887] = 4887, - [4888] = 2186, - [4889] = 4125, - [4890] = 2321, - [4891] = 4122, - [4892] = 4709, - [4893] = 4709, - [4894] = 1713, - [4895] = 1899, - [4896] = 4709, - [4897] = 2322, - [4898] = 4873, - [4899] = 1834, - [4900] = 1867, - [4901] = 4125, - [4902] = 4709, - [4903] = 1864, - [4904] = 1854, - [4905] = 1843, - [4906] = 1870, - [4907] = 4123, - [4908] = 1842, - [4909] = 4124, - [4910] = 1849, - [4911] = 4911, - [4912] = 1871, - [4913] = 1872, - [4914] = 4914, - [4915] = 1887, - [4916] = 1840, - [4917] = 1878, - [4918] = 1880, - [4919] = 1879, - [4920] = 1881, - [4921] = 1835, - [4922] = 1885, - [4923] = 1875, - [4924] = 1884, - [4925] = 1882, - [4926] = 1865, - [4927] = 1866, - [4928] = 1883, - [4929] = 1873, - [4930] = 1847, - [4931] = 1874, - [4932] = 1848, - [4933] = 1876, - [4934] = 1850, - [4935] = 1837, - [4936] = 1886, - [4937] = 1841, - [4938] = 4709, - [4939] = 4914, - [4940] = 1877, - [4941] = 1852, - [4942] = 4942, - [4943] = 4911, - [4944] = 4122, - [4945] = 1853, - [4946] = 1839, - [4947] = 1902, - [4948] = 1859, - [4949] = 2321, - [4950] = 2322, - [4951] = 4911, - [4952] = 4911, - [4953] = 4914, - [4954] = 4914, - [4955] = 4709, - [4956] = 4914, - [4957] = 4709, - [4958] = 4123, - [4959] = 4911, - [4960] = 4709, - [4961] = 2051, - [4962] = 2116, - [4963] = 4125, - [4964] = 4124, - [4965] = 4911, - [4966] = 4914, - [4967] = 4709, - [4968] = 4911, - [4969] = 4914, - [4970] = 4911, - [4971] = 4122, - [4972] = 4709, - [4973] = 4709, - [4974] = 4914, - [4975] = 2537, - [4976] = 4124, - [4977] = 4709, - [4978] = 4978, - [4979] = 4978, - [4980] = 2197, - [4981] = 4981, - [4982] = 4981, - [4983] = 4978, - [4984] = 1946, - [4985] = 1938, - [4986] = 1593, - [4987] = 4911, - [4988] = 4978, - [4989] = 4914, - [4990] = 4978, - [4991] = 4709, - [4992] = 4914, - [4993] = 4911, - [4994] = 4981, - [4995] = 1928, - [4996] = 4123, - [4997] = 4122, - [4998] = 4709, - [4999] = 4981, - [5000] = 4914, - [5001] = 4978, - [5002] = 5002, - [5003] = 4914, - [5004] = 4911, - [5005] = 4911, - [5006] = 4981, - [5007] = 1950, - [5008] = 4981, - [5009] = 4125, - [5010] = 4978, - [5011] = 4709, - [5012] = 4981, - [5013] = 4914, - [5014] = 4978, - [5015] = 1927, - [5016] = 1951, - [5017] = 4911, - [5018] = 5018, - [5019] = 3283, - [5020] = 4911, - [5021] = 1944, - [5022] = 4981, - [5023] = 1940, - [5024] = 1943, - [5025] = 4978, - [5026] = 4911, - [5027] = 4911, - [5028] = 4911, - [5029] = 1935, - [5030] = 1930, - [5031] = 4914, - [5032] = 1592, - [5033] = 4981, - [5034] = 4911, - [5035] = 1948, - [5036] = 4709, - [5037] = 4914, - [5038] = 1614, - [5039] = 4914, - [5040] = 4914, - [5041] = 4914, - [5042] = 5042, - [5043] = 5043, - [5044] = 2192, - [5045] = 2193, - [5046] = 5046, - [5047] = 5043, - [5048] = 2181, - [5049] = 5049, - [5050] = 2183, - [5051] = 2206, - [5052] = 2186, - [5053] = 2173, - [5054] = 2175, - [5055] = 5055, - [5056] = 5056, - [5057] = 5057, - [5058] = 5057, - [5059] = 5043, - [5060] = 5043, - [5061] = 5042, - [5062] = 5057, - [5063] = 5056, - [5064] = 5056, - [5065] = 5065, - [5066] = 5046, - [5067] = 2537, - [5068] = 4911, - [5069] = 5049, - [5070] = 5070, - [5071] = 5070, - [5072] = 5055, - [5073] = 5049, - [5074] = 5049, - [5075] = 5070, - [5076] = 5070, - [5077] = 5055, - [5078] = 5055, - [5079] = 5057, - [5080] = 5043, - [5081] = 5056, - [5082] = 5057, - [5083] = 5043, - [5084] = 5046, - [5085] = 5057, - [5086] = 5065, - [5087] = 5043, - [5088] = 5057, - [5089] = 5056, - [5090] = 5065, - [5091] = 5043, - [5092] = 5042, - [5093] = 5057, - [5094] = 5046, - [5095] = 5043, - [5096] = 5042, - [5097] = 5065, - [5098] = 5046, - [5099] = 5065, - [5100] = 4914, - [5101] = 5056, - [5102] = 5043, - [5103] = 5055, - [5104] = 5057, - [5105] = 5070, - [5106] = 5057, - [5107] = 5043, - [5108] = 5056, - [5109] = 5057, - [5110] = 5043, - [5111] = 5056, - [5112] = 5049, - [5113] = 5070, - [5114] = 2537, - [5115] = 5057, - [5116] = 5049, - [5117] = 5070, - [5118] = 5055, - [5119] = 5049, - [5120] = 5042, - [5121] = 5046, - [5122] = 5057, - [5123] = 5065, - [5124] = 5043, - [5125] = 5043, - [5126] = 5056, - [5127] = 5057, - [5128] = 5056, - [5129] = 5043, - [5130] = 5057, - [5131] = 5056, - [5132] = 5056, - [5133] = 4911, - [5134] = 5042, - [5135] = 5055, - [5136] = 5057, - [5137] = 5057, - [5138] = 4914, - [5139] = 5056, - [5140] = 5043, - [5141] = 5056, - [5142] = 5043, - [5143] = 5042, - [5144] = 5057, - [5145] = 5056, - [5146] = 2200, - [5147] = 2201, - [5148] = 5056, - [5149] = 5046, - [5150] = 5065, - [5151] = 5056, - [5152] = 5043, - [5153] = 2190, - [5154] = 2191, - [5155] = 5056, - [5156] = 5156, - [5157] = 5156, - [5158] = 5156, - [5159] = 5159, - [5160] = 5160, - [5161] = 5156, - [5162] = 5160, - [5163] = 5156, - [5164] = 5156, - [5165] = 4911, - [5166] = 5166, - [5167] = 5160, - [5168] = 5168, - [5169] = 5159, - [5170] = 5159, - [5171] = 5159, - [5172] = 5159, - [5173] = 5156, - [5174] = 5174, - [5175] = 5159, - [5176] = 5156, - [5177] = 5159, - [5178] = 5159, - [5179] = 4911, - [5180] = 5180, - [5181] = 4914, - [5182] = 5160, - [5183] = 5159, - [5184] = 5180, - [5185] = 5160, - [5186] = 5174, - [5187] = 5159, - [5188] = 5160, - [5189] = 5156, - [5190] = 5156, - [5191] = 5174, - [5192] = 4914, - [5193] = 5193, - [5194] = 5156, - [5195] = 5159, - [5196] = 5180, - [5197] = 5174, - [5198] = 4914, - [5199] = 5159, - [5200] = 4911, - [5201] = 5156, - [5202] = 5156, - [5203] = 4914, - [5204] = 4911, - [5205] = 5156, - [5206] = 5174, - [5207] = 5159, - [5208] = 5174, - [5209] = 5180, - [5210] = 4914, - [5211] = 5159, - [5212] = 5159, - [5213] = 5159, - [5214] = 5160, - [5215] = 5180, - [5216] = 5159, - [5217] = 5217, - [5218] = 5160, - [5219] = 4911, - [5220] = 5156, - [5221] = 5174, - [5222] = 5156, - [5223] = 4914, - [5224] = 5159, - [5225] = 5156, - [5226] = 5160, - [5227] = 5174, + [4787] = 1908, + [4788] = 4676, + [4789] = 4789, + [4790] = 1909, + [4791] = 4647, + [4792] = 4676, + [4793] = 1913, + [4794] = 4657, + [4795] = 4656, + [4796] = 4796, + [4797] = 1878, + [4798] = 4646, + [4799] = 1915, + [4800] = 4675, + [4801] = 4681, + [4802] = 4673, + [4803] = 4646, + [4804] = 4804, + [4805] = 4701, + [4806] = 4647, + [4807] = 4704, + [4808] = 4655, + [4809] = 4647, + [4810] = 4810, + [4811] = 4811, + [4812] = 4654, + [4813] = 4656, + [4814] = 4643, + [4815] = 4648, + [4816] = 4643, + [4817] = 1880, + [4818] = 4655, + [4819] = 4655, + [4820] = 4653, + [4821] = 1892, + [4822] = 4822, + [4823] = 4654, + [4824] = 4656, + [4825] = 2887, + [4826] = 4826, + [4827] = 4827, + [4828] = 4646, + [4829] = 4681, + [4830] = 1883, + [4831] = 2301, + [4832] = 4675, + [4833] = 4681, + [4834] = 4643, + [4835] = 4822, + [4836] = 4822, + [4837] = 4822, + [4838] = 4822, + [4839] = 4822, + [4840] = 4681, + [4841] = 4657, + [4842] = 4701, + [4843] = 2493, + [4844] = 2442, + [4845] = 4845, + [4846] = 2547, + [4847] = 4847, + [4848] = 2479, + [4849] = 2325, + [4850] = 2454, + [4851] = 4688, + [4852] = 2460, + [4853] = 2564, + [4854] = 2555, + [4855] = 4855, + [4856] = 2443, + [4857] = 2490, + [4858] = 2484, + [4859] = 4855, + [4860] = 2535, + [4861] = 2445, + [4862] = 2481, + [4863] = 2551, + [4864] = 2539, + [4865] = 2485, + [4866] = 2487, + [4867] = 4187, + [4868] = 2552, + [4869] = 4174, + [4870] = 2451, + [4871] = 2444, + [4872] = 4172, + [4873] = 4167, + [4874] = 4855, + [4875] = 2446, + [4876] = 4688, + [4877] = 2133, + [4878] = 2468, + [4879] = 2508, + [4880] = 2271, + [4881] = 4855, + [4882] = 2540, + [4883] = 2447, + [4884] = 2448, + [4885] = 2525, + [4886] = 4688, + [4887] = 2494, + [4888] = 2545, + [4889] = 2488, + [4890] = 2556, + [4891] = 4855, + [4892] = 4688, + [4893] = 2538, + [4894] = 4894, + [4895] = 2160, + [4896] = 4029, + [4897] = 4897, + [4898] = 2562, + [4899] = 4028, + [4900] = 4688, + [4901] = 2441, + [4902] = 4855, + [4903] = 2537, + [4904] = 2462, + [4905] = 4688, + [4906] = 4906, + [4907] = 4855, + [4908] = 4908, + [4909] = 4688, + [4910] = 4688, + [4911] = 4167, + [4912] = 4174, + [4913] = 4913, + [4914] = 4167, + [4915] = 4913, + [4916] = 1612, + [4917] = 4917, + [4918] = 4918, + [4919] = 1917, + [4920] = 2391, + [4921] = 4187, + [4922] = 4174, + [4923] = 4172, + [4924] = 4167, + [4925] = 1613, + [4926] = 2342, + [4927] = 4688, + [4928] = 4917, + [4929] = 2124, + [4930] = 4930, + [4931] = 2244, + [4932] = 4028, + [4933] = 4918, + [4934] = 4187, + [4935] = 4174, + [4936] = 4688, + [4937] = 4029, + [4938] = 4172, + [4939] = 2391, + [4940] = 4688, + [4941] = 4688, + [4942] = 4688, + [4943] = 1782, + [4944] = 4688, + [4945] = 4688, + [4946] = 2342, + [4947] = 1793, + [4948] = 2228, + [4949] = 2391, + [4950] = 2213, + [4951] = 1797, + [4952] = 1915, + [4953] = 2245, + [4954] = 2342, + [4955] = 2246, + [4956] = 2214, + [4957] = 2216, + [4958] = 4688, + [4959] = 2226, + [4960] = 2229, + [4961] = 2230, + [4962] = 2231, + [4963] = 4688, + [4964] = 2247, + [4965] = 2227, + [4966] = 4688, + [4967] = 4967, + [4968] = 4187, + [4969] = 4172, + [4970] = 4970, + [4971] = 4967, + [4972] = 4972, + [4973] = 4688, + [4974] = 4688, + [4975] = 1916, + [4976] = 4174, + [4977] = 4167, + [4978] = 4972, + [4979] = 1888, + [4980] = 1890, + [4981] = 1895, + [4982] = 1902, + [4983] = 1911, + [4984] = 1861, + [4985] = 1864, + [4986] = 1876, + [4987] = 1878, + [4988] = 1880, + [4989] = 1881, + [4990] = 1882, + [4991] = 1877, + [4992] = 1884, + [4993] = 1885, + [4994] = 1886, + [4995] = 1904, + [4996] = 1896, + [4997] = 1897, + [4998] = 1898, + [4999] = 1899, + [5000] = 1900, + [5001] = 1901, + [5002] = 1906, + [5003] = 1907, + [5004] = 1908, + [5005] = 1909, + [5006] = 1913, + [5007] = 1892, + [5008] = 1889, + [5009] = 1905, + [5010] = 1912, + [5011] = 1875, + [5012] = 1872, + [5013] = 1873, + [5014] = 1874, + [5015] = 1858, + [5016] = 1883, + [5017] = 4972, + [5018] = 4172, + [5019] = 2391, + [5020] = 2342, + [5021] = 4688, + [5022] = 4688, + [5023] = 4967, + [5024] = 4972, + [5025] = 4967, + [5026] = 4972, + [5027] = 4967, + [5028] = 4972, + [5029] = 4688, + [5030] = 4167, + [5031] = 4967, + [5032] = 2594, + [5033] = 4967, + [5034] = 2133, + [5035] = 2160, + [5036] = 4187, + [5037] = 4972, + [5038] = 4688, + [5039] = 4688, + [5040] = 4174, + [5041] = 4688, + [5042] = 4967, + [5043] = 4972, + [5044] = 5044, + [5045] = 4688, + [5046] = 4967, + [5047] = 1948, + [5048] = 4972, + [5049] = 5044, + [5050] = 1946, + [5051] = 1973, + [5052] = 4967, + [5053] = 5053, + [5054] = 4167, + [5055] = 4967, + [5056] = 4972, + [5057] = 4688, + [5058] = 1978, + [5059] = 5044, + [5060] = 4967, + [5061] = 1979, + [5062] = 4972, + [5063] = 2244, + [5064] = 5053, + [5065] = 5044, + [5066] = 4972, + [5067] = 1633, + [5068] = 5053, + [5069] = 4967, + [5070] = 4967, + [5071] = 5053, + [5072] = 4688, + [5073] = 4972, + [5074] = 5053, + [5075] = 1980, + [5076] = 5044, + [5077] = 5044, + [5078] = 4187, + [5079] = 4972, + [5080] = 4972, + [5081] = 3386, + [5082] = 1962, + [5083] = 5053, + [5084] = 5044, + [5085] = 4967, + [5086] = 1984, + [5087] = 4174, + [5088] = 5053, + [5089] = 1960, + [5090] = 4172, + [5091] = 4972, + [5092] = 4967, + [5093] = 4972, + [5094] = 5094, + [5095] = 4967, + [5096] = 1938, + [5097] = 5053, + [5098] = 1959, + [5099] = 1937, + [5100] = 4967, + [5101] = 4688, + [5102] = 4972, + [5103] = 4972, + [5104] = 4967, + [5105] = 5105, + [5106] = 5044, + [5107] = 5044, + [5108] = 4688, + [5109] = 1612, + [5110] = 1613, + [5111] = 4967, + [5112] = 5053, + [5113] = 4972, + [5114] = 5114, + [5115] = 5115, + [5116] = 5116, + [5117] = 5117, + [5118] = 5118, + [5119] = 5119, + [5120] = 5120, + [5121] = 5121, + [5122] = 5116, + [5123] = 4967, + [5124] = 5117, + [5125] = 4972, + [5126] = 5115, + [5127] = 5127, + [5128] = 5117, + [5129] = 5115, + [5130] = 5127, + [5131] = 4967, + [5132] = 4972, + [5133] = 5115, + [5134] = 5117, + [5135] = 5115, + [5136] = 5127, + [5137] = 5127, + [5138] = 5114, + [5139] = 5118, + [5140] = 5119, + [5141] = 2594, + [5142] = 5114, + [5143] = 5118, + [5144] = 5119, + [5145] = 5120, + [5146] = 5121, + [5147] = 5116, + [5148] = 5117, + [5149] = 5115, + [5150] = 5114, + [5151] = 5118, + [5152] = 5119, + [5153] = 5120, + [5154] = 5121, + [5155] = 5116, + [5156] = 5114, + [5157] = 5118, + [5158] = 5119, + [5159] = 5120, + [5160] = 5121, + [5161] = 5116, + [5162] = 5127, + [5163] = 5114, + [5164] = 5118, + [5165] = 5119, + [5166] = 5120, + [5167] = 5121, + [5168] = 5116, + [5169] = 5117, + [5170] = 5127, + [5171] = 5127, + [5172] = 5114, + [5173] = 5118, + [5174] = 5119, + [5175] = 5120, + [5176] = 5121, + [5177] = 5116, + [5178] = 5117, + [5179] = 5115, + [5180] = 5127, + [5181] = 5117, + [5182] = 5115, + [5183] = 5127, + [5184] = 5117, + [5185] = 5115, + [5186] = 5127, + [5187] = 2594, + [5188] = 5117, + [5189] = 2228, + [5190] = 2213, + [5191] = 5115, + [5192] = 5127, + [5193] = 5117, + [5194] = 5115, + [5195] = 2245, + [5196] = 2246, + [5197] = 5127, + [5198] = 2214, + [5199] = 2216, + [5200] = 5117, + [5201] = 5115, + [5202] = 2226, + [5203] = 5127, + [5204] = 2229, + [5205] = 2230, + [5206] = 2231, + [5207] = 2247, + [5208] = 2227, + [5209] = 5117, + [5210] = 5115, + [5211] = 5127, + [5212] = 5117, + [5213] = 5115, + [5214] = 5127, + [5215] = 5117, + [5216] = 5115, + [5217] = 5127, + [5218] = 5117, + [5219] = 5115, + [5220] = 5127, + [5221] = 5117, + [5222] = 5115, + [5223] = 5127, + [5224] = 5120, + [5225] = 5121, + [5226] = 5117, + [5227] = 5115, [5228] = 5228, - [5229] = 4911, - [5230] = 5174, - [5231] = 5159, - [5232] = 5156, - [5233] = 5159, - [5234] = 5234, - [5235] = 4911, - [5236] = 4914, - [5237] = 4911, - [5238] = 4914, - [5239] = 5239, - [5240] = 5240, - [5241] = 5241, - [5242] = 5242, - [5243] = 1947, - [5244] = 5244, - [5245] = 5245, - [5246] = 5246, - [5247] = 5247, - [5248] = 5248, - [5249] = 5242, - [5250] = 5240, - [5251] = 5246, - [5252] = 5252, - [5253] = 4911, - [5254] = 4914, - [5255] = 4911, - [5256] = 4914, - [5257] = 5242, - [5258] = 1614, - [5259] = 5240, - [5260] = 5246, - [5261] = 4914, - [5262] = 5252, - [5263] = 5242, - [5264] = 5240, - [5265] = 5246, - [5266] = 5252, - [5267] = 3761, - [5268] = 3748, - [5269] = 5242, - [5270] = 5246, - [5271] = 5252, - [5272] = 5242, - [5273] = 5246, - [5274] = 5252, - [5275] = 5242, - [5276] = 5246, - [5277] = 5245, - [5278] = 5247, - [5279] = 5252, - [5280] = 5248, - [5281] = 5281, - [5282] = 4911, - [5283] = 5252, - [5284] = 5247, - [5285] = 3103, - [5286] = 5248, - [5287] = 5245, - [5288] = 5245, - [5289] = 5247, - [5290] = 5247, - [5291] = 5245, - [5292] = 5247, - [5293] = 5245, - [5294] = 5248, - [5295] = 5248, - [5296] = 5248, - [5297] = 5245, - [5298] = 5247, - [5299] = 5248, - [5300] = 5248, - [5301] = 5247, - [5302] = 5245, - [5303] = 5248, - [5304] = 5245, - [5305] = 5247, - [5306] = 5245, - [5307] = 5247, - [5308] = 5248, - [5309] = 5245, - [5310] = 5247, - [5311] = 5245, - [5312] = 5247, - [5313] = 5248, - [5314] = 5245, - [5315] = 5247, - [5316] = 5248, - [5317] = 5245, - [5318] = 5247, - [5319] = 5248, - [5320] = 5248, - [5321] = 5245, - [5322] = 5247, - [5323] = 5248, - [5324] = 5245, - [5325] = 5247, - [5326] = 5248, - [5327] = 3109, - [5328] = 5245, - [5329] = 5247, - [5330] = 5248, - [5331] = 5245, - [5332] = 5247, - [5333] = 5248, - [5334] = 5334, - [5335] = 5245, - [5336] = 5247, - [5337] = 5334, - [5338] = 5245, - [5339] = 5334, - [5340] = 5247, - [5341] = 5334, - [5342] = 5248, - [5343] = 5248, - [5344] = 5247, - [5345] = 5345, - [5346] = 5247, - [5347] = 5248, - [5348] = 5245, - [5349] = 5247, - [5350] = 5248, - [5351] = 5351, - [5352] = 5345, - [5353] = 5351, - [5354] = 5351, - [5355] = 5351, - [5356] = 5245, - [5357] = 5345, - [5358] = 5245, - [5359] = 5247, - [5360] = 5248, - [5361] = 5245, - [5362] = 5245, - [5363] = 5247, - [5364] = 5248, - [5365] = 5351, - [5366] = 5245, - [5367] = 5351, - [5368] = 5248, - [5369] = 5247, - [5370] = 5248, - [5371] = 5351, - [5372] = 5248, - [5373] = 5247, - [5374] = 5248, - [5375] = 5245, - [5376] = 5376, - [5377] = 5247, - [5378] = 5376, - [5379] = 5248, - [5380] = 5245, - [5381] = 5381, - [5382] = 5245, - [5383] = 5247, - [5384] = 5384, - [5385] = 5248, - [5386] = 5245, - [5387] = 5247, - [5388] = 5388, - [5389] = 5376, - [5390] = 5248, - [5391] = 5247, - [5392] = 5245, - [5393] = 5393, - [5394] = 5393, - [5395] = 5395, - [5396] = 5395, - [5397] = 5393, - [5398] = 5393, - [5399] = 5395, - [5400] = 5395, - [5401] = 5395, - [5402] = 5395, - [5403] = 5393, - [5404] = 5395, - [5405] = 5393, - [5406] = 5345, - [5407] = 5407, - [5408] = 5393, - [5409] = 5395, - [5410] = 5393, - [5411] = 5395, - [5412] = 5393, - [5413] = 5393, - [5414] = 5395, - [5415] = 5395, - [5416] = 5393, - [5417] = 5417, - [5418] = 5418, - [5419] = 5419, - [5420] = 5420, - [5421] = 5417, - [5422] = 5422, - [5423] = 5417, - [5424] = 5422, - [5425] = 2215, - [5426] = 5422, - [5427] = 2271, - [5428] = 5384, - [5429] = 5422, - [5430] = 5422, - [5431] = 5422, - [5432] = 5417, - [5433] = 5422, - [5434] = 5434, - [5435] = 5417, - [5436] = 5422, - [5437] = 5434, - [5438] = 5438, - [5439] = 5417, - [5440] = 5422, - [5441] = 5417, - [5442] = 5442, - [5443] = 5434, - [5444] = 5434, - [5445] = 5422, - [5446] = 5446, - [5447] = 5447, - [5448] = 5418, - [5449] = 5434, - [5450] = 5419, - [5451] = 5417, - [5452] = 5420, - [5453] = 5447, - [5454] = 5417, - [5455] = 5422, - [5456] = 5422, - [5457] = 5422, - [5458] = 5458, - [5459] = 5434, - [5460] = 5460, - [5461] = 5417, - [5462] = 5460, - [5463] = 5345, - [5464] = 5417, - [5465] = 5422, - [5466] = 5417, - [5467] = 5422, - [5468] = 5381, - [5469] = 5434, - [5470] = 5345, - [5471] = 5471, - [5472] = 5434, - [5473] = 5417, - [5474] = 5422, - [5475] = 5417, - [5476] = 5417, - [5477] = 5417, - [5478] = 5460, - [5479] = 5446, - [5480] = 5434, - [5481] = 5422, - [5482] = 5434, - [5483] = 5417, - [5484] = 5484, - [5485] = 5485, + [5229] = 4972, + [5230] = 5230, + [5231] = 5231, + [5232] = 5232, + [5233] = 4967, + [5234] = 5228, + [5235] = 5232, + [5236] = 5228, + [5237] = 5230, + [5238] = 5232, + [5239] = 5228, + [5240] = 5231, + [5241] = 5230, + [5242] = 5232, + [5243] = 5228, + [5244] = 4972, + [5245] = 4972, + [5246] = 5231, + [5247] = 5232, + [5248] = 5231, + [5249] = 5231, + [5250] = 5228, + [5251] = 4967, + [5252] = 5231, + [5253] = 5232, + [5254] = 5231, + [5255] = 5255, + [5256] = 5228, + [5257] = 5230, + [5258] = 5231, + [5259] = 5231, + [5260] = 5231, + [5261] = 5231, + [5262] = 4967, + [5263] = 5231, + [5264] = 4967, + [5265] = 4972, + [5266] = 5231, + [5267] = 5228, + [5268] = 5228, + [5269] = 4972, + [5270] = 5228, + [5271] = 5228, + [5272] = 5228, + [5273] = 5231, + [5274] = 5232, + [5275] = 5230, + [5276] = 5231, + [5277] = 5228, + [5278] = 5231, + [5279] = 5228, + [5280] = 5230, + [5281] = 5231, + [5282] = 5232, + [5283] = 5228, + [5284] = 4967, + [5285] = 5231, + [5286] = 5230, + [5287] = 5287, + [5288] = 5232, + [5289] = 5228, + [5290] = 5228, + [5291] = 5231, + [5292] = 5231, + [5293] = 5230, + [5294] = 4967, + [5295] = 4972, + [5296] = 5230, + [5297] = 5228, + [5298] = 5298, + [5299] = 5299, + [5300] = 5300, + [5301] = 5300, + [5302] = 5302, + [5303] = 5303, + [5304] = 5304, + [5305] = 1951, + [5306] = 5306, + [5307] = 5307, + [5308] = 3758, + [5309] = 5300, + [5310] = 5307, + [5311] = 3760, + [5312] = 5304, + [5313] = 5306, + [5314] = 5314, + [5315] = 5303, + [5316] = 5316, + [5317] = 5307, + [5318] = 5318, + [5319] = 5304, + [5320] = 5304, + [5321] = 5306, + [5322] = 5306, + [5323] = 5323, + [5324] = 5300, + [5325] = 5307, + [5326] = 5304, + [5327] = 5307, + [5328] = 5306, + [5329] = 5329, + [5330] = 5307, + [5331] = 4967, + [5332] = 5307, + [5333] = 5298, + [5334] = 4972, + [5335] = 5323, + [5336] = 4967, + [5337] = 4967, + [5338] = 5329, + [5339] = 4972, + [5340] = 4972, + [5341] = 5306, + [5342] = 4967, + [5343] = 4972, + [5344] = 5300, + [5345] = 5304, + [5346] = 5307, + [5347] = 5347, + [5348] = 5303, + [5349] = 5304, + [5350] = 4967, + [5351] = 5303, + [5352] = 4972, + [5353] = 5306, + [5354] = 1633, + [5355] = 5307, + [5356] = 5298, + [5357] = 5298, + [5358] = 5323, + [5359] = 5329, + [5360] = 5323, + [5361] = 5323, + [5362] = 5329, + [5363] = 5298, + [5364] = 5298, + [5365] = 3030, + [5366] = 5323, + [5367] = 5329, + [5368] = 5329, + [5369] = 5298, + [5370] = 5323, + [5371] = 5329, + [5372] = 5323, + [5373] = 5329, + [5374] = 5298, + [5375] = 5323, + [5376] = 5298, + [5377] = 5323, + [5378] = 5329, + [5379] = 5329, + [5380] = 5323, + [5381] = 5298, + [5382] = 3059, + [5383] = 5329, + [5384] = 5323, + [5385] = 5298, + [5386] = 5323, + [5387] = 5329, + [5388] = 5298, + [5389] = 5298, + [5390] = 5323, + [5391] = 5329, + [5392] = 5323, + [5393] = 5298, + [5394] = 5298, + [5395] = 5323, + [5396] = 5323, + [5397] = 5323, + [5398] = 5329, + [5399] = 5329, + [5400] = 5329, + [5401] = 5329, + [5402] = 5298, + [5403] = 5323, + [5404] = 5298, + [5405] = 5329, + [5406] = 5329, + [5407] = 5298, + [5408] = 5298, + [5409] = 5323, + [5410] = 5329, + [5411] = 5298, + [5412] = 5329, + [5413] = 5413, + [5414] = 5413, + [5415] = 5329, + [5416] = 5413, + [5417] = 5298, + [5418] = 5298, + [5419] = 5413, + [5420] = 5323, + [5421] = 5323, + [5422] = 5323, + [5423] = 5423, + [5424] = 5323, + [5425] = 5329, + [5426] = 5423, + [5427] = 5423, + [5428] = 5329, + [5429] = 5298, + [5430] = 5430, + [5431] = 5423, + [5432] = 5298, + [5433] = 5323, + [5434] = 5298, + [5435] = 5423, + [5436] = 5298, + [5437] = 5329, + [5438] = 5323, + [5439] = 5329, + [5440] = 5298, + [5441] = 5430, + [5442] = 5329, + [5443] = 5430, + [5444] = 5323, + [5445] = 5423, + [5446] = 5329, + [5447] = 5323, + [5448] = 5298, + [5449] = 5423, + [5450] = 5450, + [5451] = 5323, + [5452] = 5452, + [5453] = 5453, + [5454] = 5323, + [5455] = 5455, + [5456] = 5298, + [5457] = 5298, + [5458] = 5323, + [5459] = 5298, + [5460] = 5329, + [5461] = 5323, + [5462] = 5323, + [5463] = 5329, + [5464] = 5450, + [5465] = 5298, + [5466] = 5329, + [5467] = 5329, + [5468] = 5450, + [5469] = 5430, + [5470] = 5298, + [5471] = 5329, + [5472] = 5472, + [5473] = 5473, + [5474] = 5472, + [5475] = 5473, + [5476] = 5473, + [5477] = 5472, + [5478] = 5473, + [5479] = 5472, + [5480] = 5472, + [5481] = 5473, + [5482] = 5472, + [5483] = 5473, + [5484] = 5473, + [5485] = 5472, [5486] = 5486, - [5487] = 5484, - [5488] = 5485, - [5489] = 5489, - [5490] = 1615, - [5491] = 5419, - [5492] = 1606, - [5493] = 1608, - [5494] = 5494, - [5495] = 5495, + [5487] = 5473, + [5488] = 5430, + [5489] = 5472, + [5490] = 5473, + [5491] = 5473, + [5492] = 5472, + [5493] = 5473, + [5494] = 5472, + [5495] = 5472, [5496] = 5496, - [5497] = 5486, - [5498] = 5498, - [5499] = 5495, + [5497] = 5497, + [5498] = 5497, + [5499] = 5499, [5500] = 5496, - [5501] = 5495, - [5502] = 5486, - [5503] = 1621, - [5504] = 5484, - [5505] = 5485, - [5506] = 5506, - [5507] = 5489, - [5508] = 5484, - [5509] = 5495, - [5510] = 5496, - [5511] = 5484, - [5512] = 5485, - [5513] = 5489, - [5514] = 5447, - [5515] = 5486, - [5516] = 5485, - [5517] = 5506, - [5518] = 5495, - [5519] = 5496, - [5520] = 2271, - [5521] = 5484, - [5522] = 5485, - [5523] = 5489, + [5501] = 5499, + [5502] = 5496, + [5503] = 5499, + [5504] = 5496, + [5505] = 5497, + [5506] = 5497, + [5507] = 5507, + [5508] = 5497, + [5509] = 5497, + [5510] = 5499, + [5511] = 5496, + [5512] = 5499, + [5513] = 5496, + [5514] = 5499, + [5515] = 5496, + [5516] = 5499, + [5517] = 5496, + [5518] = 5497, + [5519] = 5430, + [5520] = 5430, + [5521] = 5497, + [5522] = 5499, + [5523] = 5496, [5524] = 5524, - [5525] = 5498, - [5526] = 5484, - [5527] = 5485, - [5528] = 5506, - [5529] = 5495, - [5530] = 5496, - [5531] = 5484, - [5532] = 5485, - [5533] = 5489, - [5534] = 5447, - [5535] = 5495, - [5536] = 5536, - [5537] = 5496, - [5538] = 5506, - [5539] = 5495, - [5540] = 5496, - [5541] = 5484, - [5542] = 5485, - [5543] = 5489, - [5544] = 5418, - [5545] = 5506, - [5546] = 5546, - [5547] = 5506, - [5548] = 5489, - [5549] = 5489, - [5550] = 5550, - [5551] = 5506, - [5552] = 5489, - [5553] = 5553, - [5554] = 5419, - [5555] = 5420, - [5556] = 5556, - [5557] = 5484, - [5558] = 5485, - [5559] = 5495, - [5560] = 5496, - [5561] = 5506, - [5562] = 5495, - [5563] = 5484, - [5564] = 5485, - [5565] = 5496, - [5566] = 5489, - [5567] = 5495, - [5568] = 5496, - [5569] = 5496, - [5570] = 5484, - [5571] = 5485, - [5572] = 5489, - [5573] = 5495, - [5574] = 5496, - [5575] = 5484, - [5576] = 5485, - [5577] = 1623, - [5578] = 2215, - [5579] = 1612, - [5580] = 5546, - [5581] = 5546, - [5582] = 5489, - [5583] = 5495, - [5584] = 5496, - [5585] = 5486, - [5586] = 5495, - [5587] = 5438, - [5588] = 5496, - [5589] = 5484, - [5590] = 5485, - [5591] = 5591, - [5592] = 5506, - [5593] = 5524, - [5594] = 136, - [5595] = 135, - [5596] = 5489, - [5597] = 5495, - [5598] = 5496, - [5599] = 5489, - [5600] = 5484, - [5601] = 5485, - [5602] = 5489, - [5603] = 5446, - [5604] = 1611, - [5605] = 1620, - [5606] = 5606, - [5607] = 5495, - [5608] = 5496, - [5609] = 1609, - [5610] = 1610, - [5611] = 1607, - [5612] = 5495, - [5613] = 5496, - [5614] = 5489, - [5615] = 5446, - [5616] = 5418, - [5617] = 5486, - [5618] = 1613, - [5619] = 5619, - [5620] = 5620, - [5621] = 5420, - [5622] = 1616, - [5623] = 5484, - [5624] = 5485, - [5625] = 1618, - [5626] = 1622, - [5627] = 5506, - [5628] = 5345, - [5629] = 5495, - [5630] = 5496, - [5631] = 5506, - [5632] = 5486, - [5633] = 5489, - [5634] = 5485, - [5635] = 5484, - [5636] = 5524, - [5637] = 5498, - [5638] = 5484, - [5639] = 5485, - [5640] = 5489, - [5641] = 5641, - [5642] = 5642, - [5643] = 5643, - [5644] = 5644, + [5525] = 5525, + [5526] = 5526, + [5527] = 5524, + [5528] = 5526, + [5529] = 5529, + [5530] = 5530, + [5531] = 5531, + [5532] = 5496, + [5533] = 5496, + [5534] = 2271, + [5535] = 2325, + [5536] = 5529, + [5537] = 5530, + [5538] = 5531, + [5539] = 5539, + [5540] = 5455, + [5541] = 5453, + [5542] = 5497, + [5543] = 5497, + [5544] = 5499, + [5545] = 5496, + [5546] = 5499, + [5547] = 5547, + [5548] = 5548, + [5549] = 5496, + [5550] = 5499, + [5551] = 5499, + [5552] = 5496, + [5553] = 5525, + [5554] = 5496, + [5555] = 5499, + [5556] = 5499, + [5557] = 5525, + [5558] = 5499, + [5559] = 5496, + [5560] = 5499, + [5561] = 5496, + [5562] = 5499, + [5563] = 5563, + [5564] = 5564, + [5565] = 1631, + [5566] = 1632, + [5567] = 5529, + [5568] = 5568, + [5569] = 5569, + [5570] = 5564, + [5571] = 5568, + [5572] = 5547, + [5573] = 5564, + [5574] = 1628, + [5575] = 5575, + [5576] = 1629, + [5577] = 1630, + [5578] = 5578, + [5579] = 5568, + [5580] = 5580, + [5581] = 5578, + [5582] = 5582, + [5583] = 5583, + [5584] = 5524, + [5585] = 5585, + [5586] = 5564, + [5587] = 5587, + [5588] = 5582, + [5589] = 5580, + [5590] = 5564, + [5591] = 5568, + [5592] = 5592, + [5593] = 5593, + [5594] = 5524, + [5595] = 1634, + [5596] = 5568, + [5597] = 5597, + [5598] = 5564, + [5599] = 5568, + [5600] = 5580, + [5601] = 5568, + [5602] = 5531, + [5603] = 5587, + [5604] = 5564, + [5605] = 5582, + [5606] = 5568, + [5607] = 5585, + [5608] = 5592, + [5609] = 5587, + [5610] = 5582, + [5611] = 5587, + [5612] = 5585, + [5613] = 5564, + [5614] = 5614, + [5615] = 5585, + [5616] = 5580, + [5617] = 5563, + [5618] = 5587, + [5619] = 5582, + [5620] = 5568, + [5621] = 5564, + [5622] = 5568, + [5623] = 5564, + [5624] = 5568, + [5625] = 5580, + [5626] = 5580, + [5627] = 5580, + [5628] = 5585, + [5629] = 5580, + [5630] = 5578, + [5631] = 1636, + [5632] = 5585, + [5633] = 5587, + [5634] = 5582, + [5635] = 5564, + [5636] = 5568, + [5637] = 5580, + [5638] = 2271, + [5639] = 1637, + [5640] = 5587, + [5641] = 5585, + [5642] = 5582, + [5643] = 5564, + [5644] = 1638, [5645] = 5645, - [5646] = 5646, - [5647] = 5641, - [5648] = 5648, - [5649] = 5649, - [5650] = 5650, - [5651] = 5651, - [5652] = 5652, - [5653] = 5653, - [5654] = 5654, - [5655] = 5655, - [5656] = 5656, - [5657] = 5657, - [5658] = 5658, - [5659] = 5654, - [5660] = 5660, - [5661] = 5661, - [5662] = 5653, - [5663] = 5655, - [5664] = 5658, - [5665] = 5660, - [5666] = 5666, - [5667] = 5667, - [5668] = 5650, - [5669] = 5653, - [5670] = 5655, - [5671] = 5658, - [5672] = 5660, - [5673] = 5673, - [5674] = 2855, - [5675] = 5651, - [5676] = 5654, - [5677] = 5653, - [5678] = 5655, - [5679] = 5658, - [5680] = 5660, - [5681] = 5641, - [5682] = 5641, - [5683] = 5345, - [5684] = 5651, - [5685] = 5654, - [5686] = 5686, - [5687] = 2247, - [5688] = 5442, - [5689] = 5651, - [5690] = 5641, - [5691] = 5651, - [5692] = 5345, - [5693] = 5651, - [5694] = 5644, - [5695] = 5641, - [5696] = 5650, - [5697] = 5697, - [5698] = 5651, - [5699] = 5699, - [5700] = 5700, - [5701] = 5653, - [5702] = 5654, - [5703] = 5655, - [5704] = 5704, - [5705] = 5705, - [5706] = 5658, - [5707] = 5707, - [5708] = 5708, - [5709] = 5660, - [5710] = 5710, - [5711] = 5711, - [5712] = 5712, - [5713] = 5653, - [5714] = 5655, - [5715] = 5658, - [5716] = 5660, - [5717] = 5717, - [5718] = 5718, - [5719] = 5719, + [5646] = 5580, + [5647] = 5587, + [5648] = 5568, + [5649] = 1639, + [5650] = 5564, + [5651] = 5587, + [5652] = 5582, + [5653] = 5580, + [5654] = 5585, + [5655] = 5526, + [5656] = 5568, + [5657] = 5578, + [5658] = 5585, + [5659] = 5564, + [5660] = 5568, + [5661] = 5585, + [5662] = 5580, + [5663] = 5663, + [5664] = 5580, + [5665] = 5582, + [5666] = 5530, + [5667] = 5587, + [5668] = 5582, + [5669] = 5592, + [5670] = 5670, + [5671] = 5526, + [5672] = 2325, + [5673] = 5564, + [5674] = 5568, + [5675] = 5580, + [5676] = 1641, + [5677] = 5677, + [5678] = 1642, + [5679] = 1643, + [5680] = 5580, + [5681] = 5587, + [5682] = 5430, + [5683] = 5582, + [5684] = 5587, + [5685] = 5587, + [5686] = 5582, + [5687] = 5578, + [5688] = 5597, + [5689] = 5582, + [5690] = 5564, + [5691] = 5568, + [5692] = 5587, + [5693] = 5563, + [5694] = 5585, + [5695] = 1644, + [5696] = 5582, + [5697] = 5580, + [5698] = 5582, + [5699] = 5578, + [5700] = 5587, + [5701] = 5582, + [5702] = 5564, + [5703] = 5529, + [5704] = 1627, + [5705] = 5587, + [5706] = 5568, + [5707] = 5580, + [5708] = 5530, + [5709] = 5531, + [5710] = 5582, + [5711] = 5587, + [5712] = 5587, + [5713] = 5582, + [5714] = 5597, + [5715] = 136, + [5716] = 5580, + [5717] = 5564, + [5718] = 135, + [5719] = 5578, [5720] = 5720, - [5721] = 5656, + [5721] = 5721, [5722] = 5722, - [5723] = 5650, - [5724] = 5700, - [5725] = 5654, - [5726] = 5704, - [5727] = 5707, - [5728] = 5644, - [5729] = 5708, - [5730] = 5710, - [5731] = 5731, - [5732] = 5650, - [5733] = 5458, - [5734] = 5641, - [5735] = 5644, - [5736] = 5650, - [5737] = 5654, - [5738] = 5711, - [5739] = 5717, - [5740] = 5345, - [5741] = 5718, - [5742] = 5719, - [5743] = 5720, - [5744] = 5644, - [5745] = 5644, - [5746] = 5650, - [5747] = 5471, - [5748] = 5651, - [5749] = 5641, - [5750] = 5654, - [5751] = 5751, - [5752] = 5644, - [5753] = 5345, - [5754] = 5650, + [5723] = 5723, + [5724] = 5724, + [5725] = 5725, + [5726] = 5726, + [5727] = 5726, + [5728] = 5728, + [5729] = 5729, + [5730] = 5507, + [5731] = 5722, + [5732] = 5724, + [5733] = 5733, + [5734] = 5734, + [5735] = 5735, + [5736] = 5728, + [5737] = 5430, + [5738] = 5729, + [5739] = 5722, + [5740] = 5724, + [5741] = 5430, + [5742] = 5721, + [5743] = 5728, + [5744] = 5729, + [5745] = 5722, + [5746] = 5724, + [5747] = 5734, + [5748] = 5748, + [5749] = 5721, + [5750] = 5750, + [5751] = 2903, + [5752] = 5752, + [5753] = 5753, + [5754] = 5754, [5755] = 5755, - [5756] = 5644, - [5757] = 5650, - [5758] = 5712, - [5759] = 5651, - [5760] = 5641, - [5761] = 5651, - [5762] = 5652, - [5763] = 5654, + [5756] = 5756, + [5757] = 5757, + [5758] = 5720, + [5759] = 5759, + [5760] = 5760, + [5761] = 5761, + [5762] = 5762, + [5763] = 5763, [5764] = 5764, [5765] = 5765, [5766] = 5766, [5767] = 5767, - [5768] = 5768, - [5769] = 5641, - [5770] = 5666, - [5771] = 5771, - [5772] = 5654, - [5773] = 5654, - [5774] = 5774, - [5775] = 5654, - [5776] = 5641, - [5777] = 5712, - [5778] = 5652, - [5779] = 5712, - [5780] = 5780, - [5781] = 5654, - [5782] = 5782, - [5783] = 5783, - [5784] = 5784, - [5785] = 5641, - [5786] = 5651, - [5787] = 5651, - [5788] = 5654, - [5789] = 5641, - [5790] = 5651, - [5791] = 5644, - [5792] = 5792, - [5793] = 5793, - [5794] = 5794, - [5795] = 2247, - [5796] = 5796, - [5797] = 5765, - [5798] = 5798, - [5799] = 5799, - [5800] = 2395, - [5801] = 5798, - [5802] = 5731, - [5803] = 5803, - [5804] = 5804, + [5768] = 5734, + [5769] = 5721, + [5770] = 5770, + [5771] = 5726, + [5772] = 5767, + [5773] = 5734, + [5774] = 5721, + [5775] = 5728, + [5776] = 5757, + [5777] = 5759, + [5778] = 5760, + [5779] = 5729, + [5780] = 5761, + [5781] = 5721, + [5782] = 5722, + [5783] = 5724, + [5784] = 5734, + [5785] = 5728, + [5786] = 5729, + [5787] = 5722, + [5788] = 5724, + [5789] = 5789, + [5790] = 5734, + [5791] = 5770, + [5792] = 5762, + [5793] = 5767, + [5794] = 5770, + [5795] = 5763, + [5796] = 5721, + [5797] = 5764, + [5798] = 5765, + [5799] = 5766, + [5800] = 5726, + [5801] = 5721, + [5802] = 5767, + [5803] = 5726, + [5804] = 2301, [5805] = 5805, - [5806] = 5697, - [5807] = 5796, - [5808] = 5699, - [5809] = 1901, - [5810] = 5794, - [5811] = 5705, + [5806] = 5548, + [5807] = 5726, + [5808] = 5770, + [5809] = 5767, + [5810] = 5810, + [5811] = 5430, [5812] = 5812, - [5813] = 5813, - [5814] = 5799, - [5815] = 5815, - [5816] = 5816, - [5817] = 1899, + [5813] = 5734, + [5814] = 5729, + [5815] = 5770, + [5816] = 5721, + [5817] = 5767, [5818] = 5818, - [5819] = 5819, - [5820] = 5820, - [5821] = 5646, - [5822] = 5822, - [5823] = 5766, - [5824] = 5649, - [5825] = 5767, - [5826] = 5645, - [5827] = 5827, - [5828] = 2855, + [5819] = 5721, + [5820] = 5770, + [5821] = 5767, + [5822] = 5770, + [5823] = 5770, + [5824] = 5767, + [5825] = 5825, + [5826] = 5726, + [5827] = 5726, + [5828] = 5734, [5829] = 5829, [5830] = 5830, - [5831] = 5831, - [5832] = 5832, - [5833] = 5774, - [5834] = 5780, - [5835] = 5835, - [5836] = 5836, - [5837] = 5805, - [5838] = 5796, - [5839] = 5839, - [5840] = 5840, - [5841] = 5841, - [5842] = 5722, - [5843] = 5843, - [5844] = 5805, - [5845] = 5799, - [5846] = 5846, - [5847] = 5796, - [5848] = 5794, - [5849] = 5849, - [5850] = 5796, - [5851] = 5345, - [5852] = 5794, - [5853] = 5673, - [5854] = 5642, + [5831] = 5734, + [5832] = 5726, + [5833] = 5721, + [5834] = 5834, + [5835] = 5539, + [5836] = 5726, + [5837] = 5825, + [5838] = 5430, + [5839] = 5734, + [5840] = 5767, + [5841] = 5818, + [5842] = 5734, + [5843] = 5726, + [5844] = 5721, + [5845] = 5728, + [5846] = 5721, + [5847] = 5825, + [5848] = 5848, + [5849] = 5830, + [5850] = 5825, + [5851] = 5851, + [5852] = 5852, + [5853] = 5853, + [5854] = 5854, [5855] = 5855, - [5856] = 5643, - [5857] = 5805, - [5858] = 5796, + [5856] = 5856, + [5857] = 5857, + [5858] = 5858, [5859] = 5859, - [5860] = 5796, - [5861] = 5345, - [5862] = 5862, - [5863] = 5794, - [5864] = 5864, - [5865] = 5771, + [5860] = 5860, + [5861] = 5861, + [5862] = 5726, + [5863] = 5734, + [5864] = 5725, + [5865] = 5830, [5866] = 5866, - [5867] = 5867, - [5868] = 5794, - [5869] = 5869, - [5870] = 5648, - [5871] = 5793, + [5867] = 5726, + [5868] = 5734, + [5869] = 5721, + [5870] = 5770, + [5871] = 2903, [5872] = 5872, - [5873] = 5794, + [5873] = 5873, [5874] = 5874, - [5875] = 5875, + [5875] = 5858, [5876] = 5876, [5877] = 5877, - [5878] = 5799, - [5879] = 5879, - [5880] = 5798, - [5881] = 5655, - [5882] = 5655, - [5883] = 5658, - [5884] = 1610, - [5885] = 2271, - [5886] = 5886, - [5887] = 1607, - [5888] = 5420, - [5889] = 2203, + [5878] = 5878, + [5879] = 5866, + [5880] = 5872, + [5881] = 5881, + [5882] = 5728, + [5883] = 5729, + [5884] = 5722, + [5885] = 5724, + [5886] = 5728, + [5887] = 5729, + [5888] = 5722, + [5889] = 5724, [5890] = 5890, - [5891] = 1623, - [5892] = 5660, - [5893] = 2407, - [5894] = 1615, - [5895] = 5420, - [5896] = 136, - [5897] = 2514, - [5898] = 1612, - [5899] = 1621, - [5900] = 828, - [5901] = 135, - [5902] = 5890, - [5903] = 2478, - [5904] = 5418, - [5905] = 5890, - [5906] = 5446, - [5907] = 2176, - [5908] = 1606, - [5909] = 5447, - [5910] = 5345, - [5911] = 1613, - [5912] = 2185, - [5913] = 1608, - [5914] = 5890, - [5915] = 5653, - [5916] = 5890, + [5891] = 5891, + [5892] = 5892, + [5893] = 1915, + [5894] = 5894, + [5895] = 5895, + [5896] = 5895, + [5897] = 2418, + [5898] = 5877, + [5899] = 5899, + [5900] = 5900, + [5901] = 5901, + [5902] = 5860, + [5903] = 5903, + [5904] = 5755, + [5905] = 5905, + [5906] = 5906, + [5907] = 5907, + [5908] = 5894, + [5909] = 5909, + [5910] = 5861, + [5911] = 5911, + [5912] = 5912, + [5913] = 5913, + [5914] = 5877, + [5915] = 5915, + [5916] = 5872, [5917] = 5917, - [5918] = 1611, - [5919] = 1622, - [5920] = 2194, - [5921] = 5658, - [5922] = 5660, - [5923] = 5923, + [5918] = 5872, + [5919] = 5919, + [5920] = 5756, + [5921] = 5894, + [5922] = 5922, + [5923] = 5895, [5924] = 5924, - [5925] = 5606, - [5926] = 2215, - [5927] = 5418, - [5928] = 829, - [5929] = 5446, - [5930] = 1609, - [5931] = 1618, - [5932] = 5447, - [5933] = 1620, - [5934] = 2169, - [5935] = 5419, - [5936] = 5653, - [5937] = 5937, - [5938] = 5536, - [5939] = 1616, - [5940] = 5419, - [5941] = 5660, - [5942] = 5653, - [5943] = 5655, - [5944] = 5658, - [5945] = 5660, - [5946] = 5345, - [5947] = 5947, + [5925] = 5789, + [5926] = 5895, + [5927] = 5927, + [5928] = 5928, + [5929] = 5929, + [5930] = 5856, + [5931] = 5895, + [5932] = 5855, + [5933] = 1917, + [5934] = 5934, + [5935] = 5748, + [5936] = 5936, + [5937] = 5859, + [5938] = 5938, + [5939] = 5872, + [5940] = 5940, + [5941] = 5857, + [5942] = 5872, + [5943] = 2301, + [5944] = 5430, + [5945] = 5945, + [5946] = 5946, + [5947] = 5430, [5948] = 5948, - [5949] = 5949, - [5950] = 5660, - [5951] = 2505, + [5949] = 5851, + [5950] = 5872, + [5951] = 5754, [5952] = 5952, - [5953] = 5655, - [5954] = 1546, - [5955] = 5653, - [5956] = 5658, - [5957] = 5660, - [5958] = 5658, - [5959] = 1689, - [5960] = 2270, - [5961] = 5345, - [5962] = 5962, - [5963] = 5655, - [5964] = 5948, + [5953] = 5953, + [5954] = 5894, + [5955] = 5878, + [5956] = 5895, + [5957] = 5877, + [5958] = 5958, + [5959] = 5959, + [5960] = 5854, + [5961] = 5829, + [5962] = 5852, + [5963] = 5878, + [5964] = 5853, [5965] = 5965, - [5966] = 5658, - [5967] = 1684, - [5968] = 5968, - [5969] = 5969, - [5970] = 1692, - [5971] = 5345, - [5972] = 5653, - [5973] = 5973, - [5974] = 5653, - [5975] = 5975, - [5976] = 5655, - [5977] = 5977, - [5978] = 2224, - [5979] = 5979, - [5980] = 2279, - [5981] = 2280, - [5982] = 2287, - [5983] = 5653, - [5984] = 5816, - [5985] = 5446, - [5986] = 5986, - [5987] = 5986, - [5988] = 5862, - [5989] = 2238, - [5990] = 5855, - [5991] = 5991, - [5992] = 5986, - [5993] = 5653, - [5994] = 5994, - [5995] = 5995, - [5996] = 5996, - [5997] = 5986, - [5998] = 5998, - [5999] = 5841, - [6000] = 5986, - [6001] = 6001, - [6002] = 5986, - [6003] = 6003, - [6004] = 6004, - [6005] = 6005, - [6006] = 6006, - [6007] = 6007, - [6008] = 6008, - [6009] = 6009, - [6010] = 6010, - [6011] = 5655, - [6012] = 5877, - [6013] = 5447, - [6014] = 5986, - [6015] = 5818, - [6016] = 5829, - [6017] = 5830, - [6018] = 5832, - [6019] = 2215, + [5966] = 5903, + [5967] = 5895, + [5968] = 2243, + [5969] = 5531, + [5970] = 2271, + [5971] = 5531, + [5972] = 5972, + [5973] = 2513, + [5974] = 2240, + [5975] = 5526, + [5976] = 5976, + [5977] = 1632, + [5978] = 2542, + [5979] = 135, + [5980] = 5529, + [5981] = 1644, + [5982] = 1636, + [5983] = 5531, + [5984] = 1628, + [5985] = 5524, + [5986] = 1637, + [5987] = 846, + [5988] = 5524, + [5989] = 5972, + [5990] = 5728, + [5991] = 5976, + [5992] = 5530, + [5993] = 5529, + [5994] = 5529, + [5995] = 5729, + [5996] = 5722, + [5997] = 5724, + [5998] = 5430, + [5999] = 5728, + [6000] = 2325, + [6001] = 5729, + [6002] = 5722, + [6003] = 5724, + [6004] = 1638, + [6005] = 5972, + [6006] = 2325, + [6007] = 5972, + [6008] = 1629, + [6009] = 1630, + [6010] = 5531, + [6011] = 1627, + [6012] = 5524, + [6013] = 5972, + [6014] = 5524, + [6015] = 5530, + [6016] = 5529, + [6017] = 5593, + [6018] = 1639, + [6019] = 5972, [6020] = 2271, - [6021] = 5986, - [6022] = 5986, - [6023] = 5655, - [6024] = 2414, - [6025] = 2415, - [6026] = 2416, - [6027] = 2417, - [6028] = 2418, - [6029] = 2419, - [6030] = 5986, - [6031] = 5658, - [6032] = 5839, - [6033] = 5418, - [6034] = 5447, - [6035] = 6035, - [6036] = 5658, - [6037] = 5986, - [6038] = 5446, - [6039] = 5345, - [6040] = 5660, - [6041] = 5876, - [6042] = 5419, - [6043] = 5660, - [6044] = 5986, - [6045] = 5846, - [6046] = 5420, - [6047] = 5812, - [6048] = 5836, - [6049] = 5813, - [6050] = 2237, - [6051] = 6001, - [6052] = 6003, - [6053] = 6004, - [6054] = 6005, - [6055] = 6006, - [6056] = 2298, - [6057] = 6007, - [6058] = 6008, - [6059] = 6009, - [6060] = 5986, - [6061] = 6061, - [6062] = 6062, - [6063] = 5418, - [6064] = 5419, - [6065] = 5986, - [6066] = 6066, - [6067] = 5420, - [6068] = 2435, - [6069] = 5986, - [6070] = 5986, - [6071] = 5819, - [6072] = 6001, - [6073] = 5820, - [6074] = 5822, - [6075] = 6075, - [6076] = 5827, - [6077] = 6003, - [6078] = 6004, - [6079] = 6005, - [6080] = 6006, - [6081] = 2284, - [6082] = 2218, - [6083] = 6007, - [6084] = 6008, - [6085] = 6009, - [6086] = 5986, - [6087] = 5792, - [6088] = 2219, - [6089] = 2220, - [6090] = 5986, - [6091] = 5986, - [6092] = 5804, - [6093] = 6093, - [6094] = 5653, - [6095] = 5655, - [6096] = 5658, - [6097] = 5660, - [6098] = 6098, - [6099] = 5655, - [6100] = 5653, - [6101] = 5655, - [6102] = 5658, - [6103] = 5660, - [6104] = 5658, - [6105] = 6105, - [6106] = 6106, - [6107] = 6107, - [6108] = 5658, - [6109] = 6093, - [6110] = 5653, - [6111] = 6111, - [6112] = 5660, - [6113] = 5653, - [6114] = 5655, - [6115] = 5658, - [6116] = 5660, - [6117] = 5660, - [6118] = 5660, - [6119] = 5660, + [6021] = 2212, + [6022] = 5972, + [6023] = 5530, + [6024] = 1641, + [6025] = 1642, + [6026] = 1643, + [6027] = 6027, + [6028] = 2225, + [6029] = 5976, + [6030] = 6030, + [6031] = 5526, + [6032] = 5976, + [6033] = 5976, + [6034] = 2218, + [6035] = 2403, + [6036] = 1634, + [6037] = 6037, + [6038] = 1631, + [6039] = 6039, + [6040] = 5645, + [6041] = 6041, + [6042] = 5526, + [6043] = 843, + [6044] = 5526, + [6045] = 136, + [6046] = 5530, + [6047] = 2225, + [6048] = 5722, + [6049] = 5724, + [6050] = 1705, + [6051] = 2212, + [6052] = 1561, + [6053] = 5722, + [6054] = 2240, + [6055] = 6055, + [6056] = 5728, + [6057] = 2270, + [6058] = 5430, + [6059] = 6059, + [6060] = 6060, + [6061] = 5729, + [6062] = 2218, + [6063] = 5722, + [6064] = 6064, + [6065] = 6065, + [6066] = 5728, + [6067] = 5729, + [6068] = 5430, + [6069] = 1714, + [6070] = 5729, + [6071] = 6071, + [6072] = 6072, + [6073] = 5430, + [6074] = 2243, + [6075] = 5724, + [6076] = 5728, + [6077] = 5724, + [6078] = 6078, + [6079] = 2532, + [6080] = 6080, + [6081] = 6081, + [6082] = 5728, + [6083] = 5729, + [6084] = 5722, + [6085] = 6064, + [6086] = 6086, + [6087] = 5724, + [6088] = 1708, + [6089] = 1970, + [6090] = 6090, + [6091] = 6090, + [6092] = 6092, + [6093] = 5940, + [6094] = 6090, + [6095] = 2498, + [6096] = 6096, + [6097] = 5881, + [6098] = 6090, + [6099] = 5952, + [6100] = 2499, + [6101] = 1976, + [6102] = 5724, + [6103] = 6103, + [6104] = 5722, + [6105] = 6090, + [6106] = 5724, + [6107] = 5913, + [6108] = 6090, + [6109] = 5953, + [6110] = 5430, + [6111] = 5529, + [6112] = 5948, + [6113] = 1942, + [6114] = 5728, + [6115] = 5531, + [6116] = 6116, + [6117] = 5524, + [6118] = 6090, + [6119] = 5722, [6120] = 6120, - [6121] = 6111, - [6122] = 5653, - [6123] = 5655, - [6124] = 5658, - [6125] = 5660, - [6126] = 6093, - [6127] = 5655, - [6128] = 6111, - [6129] = 6093, - [6130] = 5653, - [6131] = 6111, - [6132] = 6105, - [6133] = 5655, - [6134] = 6111, + [6121] = 5728, + [6122] = 1971, + [6123] = 5526, + [6124] = 6120, + [6125] = 5965, + [6126] = 5524, + [6127] = 1983, + [6128] = 6128, + [6129] = 6090, + [6130] = 6120, + [6131] = 1941, + [6132] = 5934, + [6133] = 5924, + [6134] = 6134, [6135] = 6135, - [6136] = 6093, - [6137] = 6137, - [6138] = 6111, - [6139] = 5653, - [6140] = 5345, - [6141] = 6141, - [6142] = 6098, - [6143] = 6105, - [6144] = 1942, - [6145] = 6120, - [6146] = 6146, - [6147] = 6147, - [6148] = 6148, - [6149] = 6135, - [6150] = 5658, - [6151] = 6093, - [6152] = 6152, - [6153] = 5653, - [6154] = 6111, - [6155] = 6155, + [6136] = 1985, + [6137] = 5901, + [6138] = 6138, + [6139] = 6139, + [6140] = 6140, + [6141] = 5907, + [6142] = 6134, + [6143] = 6135, + [6144] = 6144, + [6145] = 6145, + [6146] = 6090, + [6147] = 6096, + [6148] = 6092, + [6149] = 5927, + [6150] = 6140, + [6151] = 6151, + [6152] = 5529, + [6153] = 5959, + [6154] = 2507, + [6155] = 5530, [6156] = 6156, - [6157] = 6157, - [6158] = 6120, - [6159] = 6120, - [6160] = 6120, - [6161] = 6120, - [6162] = 6162, - [6163] = 5658, - [6164] = 6120, - [6165] = 6093, - [6166] = 6105, - [6167] = 6141, - [6168] = 6155, - [6169] = 5655, - [6170] = 6170, - [6171] = 6147, - [6172] = 6172, - [6173] = 6009, - [6174] = 6174, - [6175] = 5655, - [6176] = 6003, - [6177] = 5658, - [6178] = 5660, - [6179] = 6172, - [6180] = 6172, - [6181] = 6181, - [6182] = 5345, - [6183] = 6172, - [6184] = 2176, - [6185] = 6185, - [6186] = 6172, - [6187] = 5446, - [6188] = 5447, - [6189] = 5418, - [6190] = 5419, - [6191] = 5420, - [6192] = 6172, - [6193] = 6172, - [6194] = 6172, - [6195] = 2169, - [6196] = 5446, - [6197] = 5420, - [6198] = 5418, - [6199] = 5653, - [6200] = 5655, - [6201] = 5658, - [6202] = 5660, - [6203] = 5653, - [6204] = 5655, - [6205] = 5658, - [6206] = 5660, - [6207] = 5447, - [6208] = 6208, - [6209] = 5653, - [6210] = 2215, - [6211] = 5655, - [6212] = 5658, - [6213] = 5660, - [6214] = 6174, - [6215] = 6172, - [6216] = 2194, - [6217] = 6174, - [6218] = 6174, - [6219] = 2194, - [6220] = 6004, - [6221] = 6172, - [6222] = 6174, - [6223] = 6005, - [6224] = 6224, - [6225] = 2203, - [6226] = 6172, - [6227] = 2185, - [6228] = 5419, - [6229] = 5418, - [6230] = 2271, - [6231] = 6224, - [6232] = 6224, - [6233] = 6233, - [6234] = 2271, - [6235] = 2215, - [6236] = 6006, - [6237] = 5446, - [6238] = 2185, - [6239] = 5419, - [6240] = 6172, - [6241] = 6172, - [6242] = 6174, - [6243] = 6172, - [6244] = 1721, - [6245] = 6172, - [6246] = 2176, - [6247] = 6224, - [6248] = 5446, - [6249] = 6172, - [6250] = 1722, - [6251] = 2203, - [6252] = 5447, - [6253] = 5420, - [6254] = 5447, - [6255] = 6172, - [6256] = 6172, - [6257] = 6224, - [6258] = 6001, - [6259] = 1725, - [6260] = 5418, - [6261] = 5419, - [6262] = 6007, - [6263] = 5420, - [6264] = 2271, - [6265] = 2215, - [6266] = 6008, - [6267] = 6172, - [6268] = 5653, - [6269] = 1773, - [6270] = 6172, - [6271] = 6224, - [6272] = 6272, - [6273] = 6208, - [6274] = 6174, - [6275] = 6224, - [6276] = 2169, + [6157] = 5729, + [6158] = 2511, + [6159] = 6090, + [6160] = 5892, + [6161] = 2504, + [6162] = 6090, + [6163] = 6151, + [6164] = 6164, + [6165] = 2270, + [6166] = 6090, + [6167] = 5958, + [6168] = 6090, + [6169] = 6096, + [6170] = 6092, + [6171] = 6151, + [6172] = 2271, + [6173] = 6090, + [6174] = 5900, + [6175] = 6090, + [6176] = 5530, + [6177] = 5890, + [6178] = 1986, + [6179] = 6134, + [6180] = 5729, + [6181] = 2510, + [6182] = 5526, + [6183] = 1961, + [6184] = 6090, + [6185] = 6135, + [6186] = 5874, + [6187] = 6090, + [6188] = 6139, + [6189] = 5891, + [6190] = 5912, + [6191] = 1953, + [6192] = 2325, + [6193] = 6090, + [6194] = 6140, + [6195] = 5531, + [6196] = 1977, + [6197] = 2506, + [6198] = 6090, + [6199] = 6199, + [6200] = 6200, + [6201] = 6201, + [6202] = 5909, + [6203] = 6203, + [6204] = 6139, + [6205] = 6205, + [6206] = 6206, + [6207] = 5729, + [6208] = 5728, + [6209] = 6209, + [6210] = 6205, + [6211] = 6209, + [6212] = 6212, + [6213] = 6213, + [6214] = 5729, + [6215] = 6206, + [6216] = 6216, + [6217] = 5728, + [6218] = 6218, + [6219] = 6219, + [6220] = 5728, + [6221] = 5722, + [6222] = 5729, + [6223] = 5722, + [6224] = 5724, + [6225] = 5724, + [6226] = 6226, + [6227] = 5430, + [6228] = 6213, + [6229] = 6229, + [6230] = 5728, + [6231] = 5729, + [6232] = 5722, + [6233] = 5724, + [6234] = 5722, + [6235] = 6235, + [6236] = 6120, + [6237] = 6134, + [6238] = 6135, + [6239] = 6139, + [6240] = 6140, + [6241] = 6096, + [6242] = 6092, + [6243] = 6151, + [6244] = 6244, + [6245] = 5728, + [6246] = 6209, + [6247] = 6212, + [6248] = 6248, + [6249] = 6249, + [6250] = 5728, + [6251] = 5728, + [6252] = 5729, + [6253] = 5722, + [6254] = 5724, + [6255] = 6216, + [6256] = 5728, + [6257] = 5729, + [6258] = 5722, + [6259] = 5724, + [6260] = 6209, + [6261] = 6261, + [6262] = 6212, + [6263] = 1947, + [6264] = 5729, + [6265] = 6209, + [6266] = 6212, + [6267] = 6267, + [6268] = 6212, + [6269] = 5729, + [6270] = 5722, + [6271] = 6209, + [6272] = 5724, + [6273] = 6212, + [6274] = 6209, + [6275] = 6212, + [6276] = 6244, [6277] = 6277, - [6278] = 6009, + [6278] = 6219, [6279] = 6279, - [6280] = 6280, - [6281] = 6005, - [6282] = 6282, - [6283] = 6283, - [6284] = 6006, - [6285] = 6277, - [6286] = 6001, - [6287] = 6005, - [6288] = 6006, - [6289] = 6008, - [6290] = 6003, - [6291] = 6004, - [6292] = 6007, - [6293] = 6009, - [6294] = 6141, - [6295] = 6280, - [6296] = 6296, - [6297] = 6279, - [6298] = 6298, - [6299] = 6299, - [6300] = 6001, - [6301] = 6098, - [6302] = 6277, - [6303] = 6303, - [6304] = 6007, - [6305] = 6008, - [6306] = 6306, - [6307] = 2270, - [6308] = 2270, - [6309] = 6279, - [6310] = 6306, - [6311] = 6282, - [6312] = 6279, - [6313] = 6147, - [6314] = 5653, - [6315] = 5655, - [6316] = 5658, - [6317] = 5660, - [6318] = 6318, - [6319] = 6135, - [6320] = 6280, - [6321] = 6279, - [6322] = 6277, - [6323] = 6279, - [6324] = 6280, - [6325] = 6280, - [6326] = 6306, - [6327] = 6327, - [6328] = 6279, - [6329] = 6280, - [6330] = 5653, - [6331] = 6306, - [6332] = 6279, - [6333] = 5655, - [6334] = 5658, - [6335] = 5660, - [6336] = 6280, - [6337] = 6280, - [6338] = 6279, - [6339] = 6339, - [6340] = 6296, - [6341] = 5949, - [6342] = 6296, - [6343] = 6280, - [6344] = 6003, - [6345] = 6296, - [6346] = 6280, - [6347] = 6004, - [6348] = 6279, - [6349] = 6155, - [6350] = 6277, - [6351] = 5660, - [6352] = 6352, - [6353] = 6352, - [6354] = 6352, - [6355] = 6352, - [6356] = 3743, - [6357] = 2403, - [6358] = 5653, - [6359] = 6352, - [6360] = 5655, - [6361] = 5658, - [6362] = 5660, - [6363] = 5660, - [6364] = 6352, - [6365] = 6365, - [6366] = 6352, - [6367] = 6006, - [6368] = 6001, - [6369] = 6369, - [6370] = 5653, - [6371] = 6352, - [6372] = 5655, - [6373] = 5658, - [6374] = 6352, - [6375] = 6352, - [6376] = 6352, - [6377] = 5653, - [6378] = 6378, - [6379] = 6352, - [6380] = 6380, - [6381] = 6381, - [6382] = 6352, - [6383] = 6352, - [6384] = 5658, - [6385] = 6003, - [6386] = 6352, - [6387] = 6352, - [6388] = 5655, - [6389] = 6005, - [6390] = 6352, - [6391] = 6007, - [6392] = 6004, - [6393] = 6352, - [6394] = 6394, - [6395] = 6008, - [6396] = 6352, - [6397] = 6009, - [6398] = 6398, - [6399] = 6399, - [6400] = 6352, - [6401] = 6401, + [6280] = 5722, + [6281] = 6281, + [6282] = 6279, + [6283] = 6279, + [6284] = 6219, + [6285] = 6279, + [6286] = 6279, + [6287] = 6279, + [6288] = 6279, + [6289] = 5724, + [6290] = 6219, + [6291] = 5724, + [6292] = 6096, + [6293] = 6293, + [6294] = 5524, + [6295] = 5526, + [6296] = 5529, + [6297] = 5530, + [6298] = 5531, + [6299] = 5728, + [6300] = 5729, + [6301] = 5722, + [6302] = 5724, + [6303] = 6293, + [6304] = 5524, + [6305] = 5526, + [6306] = 5529, + [6307] = 5530, + [6308] = 5531, + [6309] = 6309, + [6310] = 5728, + [6311] = 5729, + [6312] = 5722, + [6313] = 5724, + [6314] = 6309, + [6315] = 6315, + [6316] = 6293, + [6317] = 6206, + [6318] = 6205, + [6319] = 6293, + [6320] = 6213, + [6321] = 6244, + [6322] = 6216, + [6323] = 6323, + [6324] = 6323, + [6325] = 6325, + [6326] = 6315, + [6327] = 6293, + [6328] = 6315, + [6329] = 6315, + [6330] = 6309, + [6331] = 6120, + [6332] = 6134, + [6333] = 6135, + [6334] = 6139, + [6335] = 6140, + [6336] = 6092, + [6337] = 6151, + [6338] = 6323, + [6339] = 2271, + [6340] = 6340, + [6341] = 6309, + [6342] = 6315, + [6343] = 1834, + [6344] = 5728, + [6345] = 5729, + [6346] = 5722, + [6347] = 5724, + [6348] = 5728, + [6349] = 5729, + [6350] = 5722, + [6351] = 5724, + [6352] = 6315, + [6353] = 1856, + [6354] = 2212, + [6355] = 2240, + [6356] = 6323, + [6357] = 2243, + [6358] = 2218, + [6359] = 2225, + [6360] = 2325, + [6361] = 6361, + [6362] = 6323, + [6363] = 2325, + [6364] = 6323, + [6365] = 6315, + [6366] = 6323, + [6367] = 6323, + [6368] = 6368, + [6369] = 1748, + [6370] = 6323, + [6371] = 6323, + [6372] = 6323, + [6373] = 6368, + [6374] = 1750, + [6375] = 6323, + [6376] = 6323, + [6377] = 6323, + [6378] = 6323, + [6379] = 6323, + [6380] = 6309, + [6381] = 5430, + [6382] = 6323, + [6383] = 6323, + [6384] = 6323, + [6385] = 2271, + [6386] = 6386, + [6387] = 6293, + [6388] = 6323, + [6389] = 6293, + [6390] = 6390, + [6391] = 5917, + [6392] = 6390, + [6393] = 6393, + [6394] = 6096, + [6395] = 6390, + [6396] = 6396, + [6397] = 5728, + [6398] = 5729, + [6399] = 5722, + [6400] = 5724, + [6401] = 6244, [6402] = 6402, [6403] = 6403, [6404] = 6404, - [6405] = 6006, - [6406] = 6406, - [6407] = 6001, - [6408] = 2322, - [6409] = 6004, - [6410] = 6410, - [6411] = 6411, - [6412] = 6412, - [6413] = 6003, - [6414] = 6414, - [6415] = 6410, - [6416] = 6406, - [6417] = 6004, - [6418] = 6007, - [6419] = 6410, - [6420] = 6009, - [6421] = 6009, - [6422] = 6422, - [6423] = 6098, - [6424] = 6424, - [6425] = 6406, - [6426] = 6003, - [6427] = 6427, - [6428] = 6428, - [6429] = 6429, - [6430] = 6410, - [6431] = 6431, - [6432] = 6431, - [6433] = 1543, - [6434] = 1542, - [6435] = 6435, - [6436] = 6005, - [6437] = 6437, - [6438] = 1545, - [6439] = 6431, - [6440] = 6410, - [6441] = 6006, - [6442] = 6437, - [6443] = 6443, - [6444] = 6444, - [6445] = 6431, - [6446] = 1539, - [6447] = 6155, - [6448] = 6437, - [6449] = 5446, - [6450] = 6001, - [6451] = 6135, - [6452] = 6004, - [6453] = 6453, - [6454] = 6454, - [6455] = 5447, - [6456] = 6406, - [6457] = 5418, - [6458] = 5419, - [6459] = 6437, - [6460] = 5420, - [6461] = 6437, - [6462] = 6431, - [6463] = 6410, - [6464] = 6005, - [6465] = 6003, - [6466] = 6004, - [6467] = 6007, - [6468] = 6005, - [6469] = 5446, - [6470] = 6006, - [6471] = 5447, - [6472] = 1538, - [6473] = 6473, - [6474] = 6431, - [6475] = 6431, - [6476] = 5418, - [6477] = 5419, - [6478] = 6444, - [6479] = 5420, - [6480] = 6480, - [6481] = 6406, - [6482] = 6444, - [6483] = 6444, - [6484] = 2271, - [6485] = 6485, - [6486] = 6008, - [6487] = 2215, - [6488] = 6488, - [6489] = 6444, - [6490] = 1540, - [6491] = 6491, - [6492] = 1544, - [6493] = 6147, - [6494] = 6494, - [6495] = 6437, + [6405] = 6405, + [6406] = 6396, + [6407] = 6407, + [6408] = 6216, + [6409] = 6120, + [6410] = 5917, + [6411] = 6120, + [6412] = 6139, + [6413] = 6140, + [6414] = 6402, + [6415] = 6092, + [6416] = 6134, + [6417] = 6135, + [6418] = 2270, + [6419] = 6096, + [6420] = 6151, + [6421] = 6393, + [6422] = 6393, + [6423] = 6403, + [6424] = 6403, + [6425] = 6393, + [6426] = 6393, + [6427] = 5873, + [6428] = 5728, + [6429] = 6403, + [6430] = 6430, + [6431] = 5729, + [6432] = 5722, + [6433] = 5724, + [6434] = 6092, + [6435] = 6081, + [6436] = 6436, + [6437] = 6206, + [6438] = 6205, + [6439] = 6393, + [6440] = 6403, + [6441] = 6441, + [6442] = 6393, + [6443] = 6403, + [6444] = 6151, + [6445] = 6445, + [6446] = 6396, + [6447] = 6396, + [6448] = 6403, + [6449] = 6404, + [6450] = 6404, + [6451] = 6213, + [6452] = 6403, + [6453] = 6134, + [6454] = 6135, + [6455] = 6390, + [6456] = 6403, + [6457] = 6139, + [6458] = 6140, + [6459] = 6404, + [6460] = 6393, + [6461] = 6403, + [6462] = 6462, + [6463] = 6463, + [6464] = 6393, + [6465] = 5873, + [6466] = 6396, + [6467] = 6393, + [6468] = 6468, + [6469] = 6135, + [6470] = 6120, + [6471] = 6471, + [6472] = 6472, + [6473] = 6472, + [6474] = 6472, + [6475] = 6475, + [6476] = 6476, + [6477] = 6472, + [6478] = 5722, + [6479] = 6472, + [6480] = 2403, + [6481] = 6481, + [6482] = 6472, + [6483] = 6134, + [6484] = 5728, + [6485] = 3831, + [6486] = 6472, + [6487] = 5728, + [6488] = 6472, + [6489] = 6489, + [6490] = 5729, + [6491] = 5722, + [6492] = 6472, + [6493] = 6472, + [6494] = 5724, + [6495] = 6472, [6496] = 6496, - [6497] = 6007, - [6498] = 6498, - [6499] = 6410, - [6500] = 6500, - [6501] = 6444, - [6502] = 6502, - [6503] = 6009, - [6504] = 6437, - [6505] = 6005, - [6506] = 6506, - [6507] = 6001, - [6508] = 6008, - [6509] = 6141, - [6510] = 6008, - [6511] = 6511, - [6512] = 2321, - [6513] = 6406, - [6514] = 6514, - [6515] = 6406, - [6516] = 6006, - [6517] = 6003, - [6518] = 6444, - [6519] = 6007, - [6520] = 6520, - [6521] = 6008, - [6522] = 6001, + [6497] = 6472, + [6498] = 6472, + [6499] = 5728, + [6500] = 5729, + [6501] = 6151, + [6502] = 5729, + [6503] = 6472, + [6504] = 6504, + [6505] = 5722, + [6506] = 6139, + [6507] = 2411, + [6508] = 6508, + [6509] = 5724, + [6510] = 6472, + [6511] = 2403, + [6512] = 6472, + [6513] = 6140, + [6514] = 5724, + [6515] = 6515, + [6516] = 6472, + [6517] = 6472, + [6518] = 6096, + [6519] = 6472, + [6520] = 6092, + [6521] = 6472, + [6522] = 6522, [6523] = 6523, - [6524] = 6009, + [6524] = 6524, [6525] = 6525, [6526] = 6526, - [6527] = 6527, - [6528] = 6001, - [6529] = 6003, - [6530] = 6004, - [6531] = 6005, - [6532] = 6006, - [6533] = 6007, - [6534] = 6008, - [6535] = 6009, - [6536] = 5446, - [6537] = 6003, - [6538] = 6007, - [6539] = 6009, - [6540] = 6001, - [6541] = 6005, - [6542] = 6006, - [6543] = 6008, - [6544] = 6525, - [6545] = 6003, - [6546] = 6004, - [6547] = 6007, - [6548] = 6009, + [6527] = 6092, + [6528] = 6528, + [6529] = 6529, + [6530] = 6120, + [6531] = 6531, + [6532] = 6532, + [6533] = 6523, + [6534] = 6534, + [6535] = 6529, + [6536] = 6134, + [6537] = 6537, + [6538] = 6538, + [6539] = 6135, + [6540] = 2271, + [6541] = 6139, + [6542] = 6140, + [6543] = 6543, + [6544] = 6544, + [6545] = 6523, + [6546] = 6096, + [6547] = 6092, + [6548] = 6548, [6549] = 6549, - [6550] = 6525, - [6551] = 6551, - [6552] = 6552, - [6553] = 6525, - [6554] = 6554, - [6555] = 6525, - [6556] = 6525, - [6557] = 6557, + [6550] = 6151, + [6551] = 6523, + [6552] = 6213, + [6553] = 6529, + [6554] = 6139, + [6555] = 6534, + [6556] = 6556, + [6557] = 6532, [6558] = 6558, - [6559] = 6525, + [6559] = 6559, [6560] = 6560, - [6561] = 6525, - [6562] = 5447, - [6563] = 6563, - [6564] = 6525, - [6565] = 5418, - [6566] = 6525, - [6567] = 5419, - [6568] = 5420, - [6569] = 6526, - [6570] = 6525, - [6571] = 6525, - [6572] = 6572, - [6573] = 6004, - [6574] = 6525, - [6575] = 6004, - [6576] = 5849, + [6561] = 6523, + [6562] = 6120, + [6563] = 6534, + [6564] = 6532, + [6565] = 6565, + [6566] = 6529, + [6567] = 6139, + [6568] = 6140, + [6569] = 6569, + [6570] = 6534, + [6571] = 6523, + [6572] = 6092, + [6573] = 5524, + [6574] = 6532, + [6575] = 5526, + [6576] = 6576, [6577] = 6577, - [6578] = 6578, - [6579] = 6578, - [6580] = 6578, + [6578] = 6534, + [6579] = 6532, + [6580] = 5529, [6581] = 6581, - [6582] = 6582, - [6583] = 6582, - [6584] = 6582, - [6585] = 6581, - [6586] = 6586, - [6587] = 6578, - [6588] = 6577, - [6589] = 6578, - [6590] = 6590, - [6591] = 6582, - [6592] = 6578, - [6593] = 6578, - [6594] = 6578, - [6595] = 6581, - [6596] = 6582, - [6597] = 6581, - [6598] = 6586, - [6599] = 6578, - [6600] = 6582, - [6601] = 6581, - [6602] = 6590, - [6603] = 6577, - [6604] = 6578, - [6605] = 6581, - [6606] = 6578, - [6607] = 6147, - [6608] = 6135, - [6609] = 6155, - [6610] = 6586, - [6611] = 6141, - [6612] = 6578, - [6613] = 6581, - [6614] = 6098, - [6615] = 6578, - [6616] = 6001, - [6617] = 6582, - [6618] = 6578, - [6619] = 6003, - [6620] = 6578, - [6621] = 6005, - [6622] = 6006, - [6623] = 6007, - [6624] = 6008, - [6625] = 6009, - [6626] = 6578, - [6627] = 6578, - [6628] = 6590, - [6629] = 6590, - [6630] = 6578, - [6631] = 6586, - [6632] = 6578, - [6633] = 6578, - [6634] = 6578, - [6635] = 6577, - [6636] = 5859, - [6637] = 6637, - [6638] = 6003, - [6639] = 6639, - [6640] = 6004, - [6641] = 6147, - [6642] = 6135, + [6582] = 6120, + [6583] = 6134, + [6584] = 6135, + [6585] = 6139, + [6586] = 6140, + [6587] = 6587, + [6588] = 6096, + [6589] = 6092, + [6590] = 6151, + [6591] = 1564, + [6592] = 6532, + [6593] = 5524, + [6594] = 6529, + [6595] = 2391, + [6596] = 5530, + [6597] = 6134, + [6598] = 5526, + [6599] = 6135, + [6600] = 5529, + [6601] = 6096, + [6602] = 5530, + [6603] = 5531, + [6604] = 6151, + [6605] = 2342, + [6606] = 5531, + [6607] = 1565, + [6608] = 1562, + [6609] = 1567, + [6610] = 6134, + [6611] = 6135, + [6612] = 6096, + [6613] = 6151, + [6614] = 6614, + [6615] = 1563, + [6616] = 1559, + [6617] = 1560, + [6618] = 6529, + [6619] = 6619, + [6620] = 2325, + [6621] = 6621, + [6622] = 6532, + [6623] = 6206, + [6624] = 6624, + [6625] = 6625, + [6626] = 6120, + [6627] = 6627, + [6628] = 6140, + [6629] = 6534, + [6630] = 6244, + [6631] = 6534, + [6632] = 6523, + [6633] = 6529, + [6634] = 6205, + [6635] = 6216, + [6636] = 6636, + [6637] = 6140, + [6638] = 6139, + [6639] = 6092, + [6640] = 6151, + [6641] = 6641, + [6642] = 6642, [6643] = 6643, [6644] = 6644, - [6645] = 6008, - [6646] = 6003, - [6647] = 6647, - [6648] = 6003, - [6649] = 6004, - [6650] = 6007, - [6651] = 5859, - [6652] = 6155, - [6653] = 5849, - [6654] = 6007, - [6655] = 6007, - [6656] = 6009, - [6657] = 6644, - [6658] = 6004, - [6659] = 6659, - [6660] = 6639, - [6661] = 2407, - [6662] = 6141, + [6645] = 6644, + [6646] = 6646, + [6647] = 5530, + [6648] = 6644, + [6649] = 6649, + [6650] = 6644, + [6651] = 5526, + [6652] = 6652, + [6653] = 5531, + [6654] = 6134, + [6655] = 6096, + [6656] = 6644, + [6657] = 6151, + [6658] = 6658, + [6659] = 6644, + [6660] = 6660, + [6661] = 6658, + [6662] = 6662, [6663] = 6663, - [6664] = 6009, - [6665] = 6665, - [6666] = 6004, - [6667] = 6667, - [6668] = 6668, - [6669] = 6669, - [6670] = 6098, - [6671] = 6639, - [6672] = 6672, - [6673] = 6005, - [6674] = 6674, + [6664] = 6135, + [6665] = 6644, + [6666] = 6644, + [6667] = 5524, + [6668] = 6644, + [6669] = 6120, + [6670] = 6120, + [6671] = 6139, + [6672] = 6140, + [6673] = 6092, + [6674] = 5529, [6675] = 6675, - [6676] = 6676, - [6677] = 6137, - [6678] = 6678, - [6679] = 6639, - [6680] = 6006, - [6681] = 6146, - [6682] = 6003, - [6683] = 6683, - [6684] = 6004, + [6676] = 6134, + [6677] = 6135, + [6678] = 6096, + [6679] = 6644, + [6680] = 6151, + [6681] = 6644, + [6682] = 6134, + [6683] = 6644, + [6684] = 6135, [6685] = 6644, - [6686] = 6686, - [6687] = 6007, - [6688] = 6106, + [6686] = 6096, + [6687] = 6687, + [6688] = 6688, [6689] = 6689, - [6690] = 6009, - [6691] = 6691, - [6692] = 6644, - [6693] = 6152, - [6694] = 6644, - [6695] = 6695, - [6696] = 6001, - [6697] = 6697, - [6698] = 6007, - [6699] = 6691, - [6700] = 6001, - [6701] = 6009, - [6702] = 6005, - [6703] = 6006, - [6704] = 6008, - [6705] = 6705, - [6706] = 6706, - [6707] = 6707, - [6708] = 6644, - [6709] = 6644, - [6710] = 6710, - [6711] = 6691, - [6712] = 6003, - [6713] = 6691, - [6714] = 6714, - [6715] = 6107, - [6716] = 6009, - [6717] = 6717, - [6718] = 6008, - [6719] = 6719, - [6720] = 6720, - [6721] = 6721, - [6722] = 6722, - [6723] = 2203, - [6724] = 6724, - [6725] = 6725, - [6726] = 6726, - [6727] = 2194, - [6728] = 6728, - [6729] = 6729, - [6730] = 6730, - [6731] = 2169, - [6732] = 6732, - [6733] = 6719, - [6734] = 6717, - [6735] = 6721, - [6736] = 6719, - [6737] = 6006, - [6738] = 6722, - [6739] = 6726, - [6740] = 6719, - [6741] = 6005, - [6742] = 6722, - [6743] = 6717, - [6744] = 6744, - [6745] = 6745, - [6746] = 6722, - [6747] = 6726, - [6748] = 6722, - [6749] = 2176, - [6750] = 6726, - [6751] = 6722, - [6752] = 6726, - [6753] = 2185, - [6754] = 6722, - [6755] = 6004, - [6756] = 6756, - [6757] = 6757, - [6758] = 6001, + [6690] = 6689, + [6691] = 6688, + [6692] = 6692, + [6693] = 6120, + [6694] = 6687, + [6695] = 6687, + [6696] = 6244, + [6697] = 6687, + [6698] = 6216, + [6699] = 6687, + [6700] = 6134, + [6701] = 6135, + [6702] = 6139, + [6703] = 6140, + [6704] = 6704, + [6705] = 6687, + [6706] = 6687, + [6707] = 6692, + [6708] = 6687, + [6709] = 6709, + [6710] = 6692, + [6711] = 6709, + [6712] = 6096, + [6713] = 6687, + [6714] = 6704, + [6715] = 6687, + [6716] = 6092, + [6717] = 6689, + [6718] = 6688, + [6719] = 6687, + [6720] = 6151, + [6721] = 6688, + [6722] = 6687, + [6723] = 6704, + [6724] = 6687, + [6725] = 6688, + [6726] = 6688, + [6727] = 6687, + [6728] = 6687, + [6729] = 6687, + [6730] = 6206, + [6731] = 6687, + [6732] = 6687, + [6733] = 6709, + [6734] = 6704, + [6735] = 6205, + [6736] = 6709, + [6737] = 6704, + [6738] = 6687, + [6739] = 6704, + [6740] = 6689, + [6741] = 6213, + [6742] = 6704, + [6743] = 6687, + [6744] = 6692, + [6745] = 6688, + [6746] = 6687, + [6747] = 6140, + [6748] = 6096, + [6749] = 6135, + [6750] = 6750, + [6751] = 6092, + [6752] = 6752, + [6753] = 6753, + [6754] = 6096, + [6755] = 6755, + [6756] = 6139, + [6757] = 6249, + [6758] = 6758, [6759] = 6759, - [6760] = 6007, - [6761] = 6730, - [6762] = 6009, - [6763] = 6003, - [6764] = 6730, - [6765] = 6721, - [6766] = 6745, - [6767] = 2407, - [6768] = 6768, - [6769] = 6721, - [6770] = 6726, - [6771] = 6730, - [6772] = 6729, - [6773] = 6773, - [6774] = 6717, - [6775] = 6726, + [6760] = 6151, + [6761] = 6135, + [6762] = 6096, + [6763] = 6206, + [6764] = 6764, + [6765] = 6765, + [6766] = 6120, + [6767] = 6767, + [6768] = 6139, + [6769] = 6769, + [6770] = 6769, + [6771] = 6771, + [6772] = 6092, + [6773] = 6244, + [6774] = 6229, + [6775] = 6775, [6776] = 6776, - [6777] = 6777, - [6778] = 6003, - [6779] = 6004, - [6780] = 6780, + [6777] = 6151, + [6778] = 6769, + [6779] = 6779, + [6780] = 6277, [6781] = 6781, - [6782] = 2270, - [6783] = 6783, + [6782] = 6782, + [6783] = 6134, [6784] = 6784, - [6785] = 6785, - [6786] = 6785, - [6787] = 6787, - [6788] = 6001, - [6789] = 6007, - [6790] = 6790, - [6791] = 6777, - [6792] = 6792, - [6793] = 6793, - [6794] = 6009, - [6795] = 6795, - [6796] = 6785, - [6797] = 6792, + [6785] = 6135, + [6786] = 6216, + [6787] = 6134, + [6788] = 6134, + [6789] = 6135, + [6790] = 6096, + [6791] = 6151, + [6792] = 6134, + [6793] = 6750, + [6794] = 6794, + [6795] = 6151, + [6796] = 6135, + [6797] = 6797, [6798] = 6798, - [6799] = 6793, - [6800] = 6299, - [6801] = 6785, - [6802] = 6781, - [6803] = 6803, - [6804] = 6793, + [6799] = 6799, + [6800] = 6120, + [6801] = 6769, + [6802] = 6261, + [6803] = 6151, + [6804] = 6779, [6805] = 6805, [6806] = 6806, - [6807] = 6006, - [6808] = 6785, + [6807] = 6769, + [6808] = 6205, [6809] = 6809, - [6810] = 6810, - [6811] = 6298, - [6812] = 6803, - [6813] = 6792, - [6814] = 6814, - [6815] = 6777, - [6816] = 6793, - [6817] = 6817, - [6818] = 6783, - [6819] = 6819, - [6820] = 6814, - [6821] = 6806, - [6822] = 6822, - [6823] = 6814, + [6810] = 6140, + [6811] = 6811, + [6812] = 6812, + [6813] = 6769, + [6814] = 6769, + [6815] = 6281, + [6816] = 6213, + [6817] = 6750, + [6818] = 6779, + [6819] = 6096, + [6820] = 6779, + [6821] = 6821, + [6822] = 6134, + [6823] = 6750, [6824] = 6824, - [6825] = 6008, - [6826] = 6783, - [6827] = 6785, - [6828] = 6283, - [6829] = 6829, - [6830] = 6803, - [6831] = 6831, + [6825] = 2225, + [6826] = 6826, + [6827] = 6827, + [6828] = 6828, + [6829] = 6140, + [6830] = 6830, + [6831] = 6826, [6832] = 6832, - [6833] = 6793, - [6834] = 6793, - [6835] = 6785, - [6836] = 6836, - [6837] = 6005, - [6838] = 6838, - [6839] = 6793, + [6833] = 6833, + [6834] = 6096, + [6835] = 6835, + [6836] = 6826, + [6837] = 6120, + [6838] = 2212, + [6839] = 6828, [6840] = 6840, - [6841] = 2407, - [6842] = 6798, - [6843] = 2407, - [6844] = 6844, - [6845] = 6798, - [6846] = 6781, - [6847] = 6806, + [6841] = 6833, + [6842] = 2218, + [6843] = 6824, + [6844] = 6828, + [6845] = 6845, + [6846] = 6846, + [6847] = 6828, [6848] = 6848, - [6849] = 6848, + [6849] = 6849, [6850] = 6850, - [6851] = 6851, - [6852] = 6852, - [6853] = 6853, + [6851] = 6151, + [6852] = 6833, + [6853] = 6139, [6854] = 6854, - [6855] = 5849, - [6856] = 6856, - [6857] = 6006, - [6858] = 6856, + [6855] = 6824, + [6856] = 6845, + [6857] = 6824, + [6858] = 6845, [6859] = 6859, - [6860] = 6851, - [6861] = 6861, - [6862] = 6852, - [6863] = 6004, - [6864] = 6864, + [6860] = 6824, + [6861] = 6845, + [6862] = 6824, + [6863] = 6863, + [6864] = 6845, [6865] = 6865, - [6866] = 6848, - [6867] = 6867, - [6868] = 6005, - [6869] = 6869, - [6870] = 6870, - [6871] = 6854, - [6872] = 6872, - [6873] = 6008, - [6874] = 2407, - [6875] = 6851, - [6876] = 6851, - [6877] = 2313, - [6878] = 2215, - [6879] = 6009, - [6880] = 6880, - [6881] = 2271, - [6882] = 6852, - [6883] = 6848, + [6866] = 6824, + [6867] = 6833, + [6868] = 6845, + [6869] = 6835, + [6870] = 6850, + [6871] = 6845, + [6872] = 2243, + [6873] = 6826, + [6874] = 6835, + [6875] = 6092, + [6876] = 6876, + [6877] = 6835, + [6878] = 6135, + [6879] = 2240, + [6880] = 6134, + [6881] = 6846, + [6882] = 6882, + [6883] = 6883, [6884] = 6884, - [6885] = 6853, - [6886] = 6001, - [6887] = 6854, - [6888] = 2407, + [6885] = 6885, + [6886] = 6886, + [6887] = 6887, + [6888] = 6888, [6889] = 6889, - [6890] = 6854, - [6891] = 6891, - [6892] = 6852, - [6893] = 6853, - [6894] = 6854, - [6895] = 6848, - [6896] = 6896, + [6890] = 6888, + [6891] = 6884, + [6892] = 6883, + [6893] = 6893, + [6894] = 6894, + [6895] = 6139, + [6896] = 6888, [6897] = 6897, - [6898] = 6853, - [6899] = 6856, - [6900] = 6854, - [6901] = 6856, - [6902] = 6854, - [6903] = 6003, - [6904] = 6870, - [6905] = 6007, - [6906] = 6848, - [6907] = 6848, - [6908] = 6854, - [6909] = 6856, - [6910] = 6853, - [6911] = 6853, - [6912] = 6848, - [6913] = 6856, + [6898] = 6898, + [6899] = 6140, + [6900] = 6096, + [6901] = 6901, + [6902] = 6902, + [6903] = 6884, + [6904] = 6904, + [6905] = 6883, + [6906] = 6906, + [6907] = 6907, + [6908] = 6884, + [6909] = 6898, + [6910] = 6430, + [6911] = 6911, + [6912] = 6912, + [6913] = 6092, [6914] = 6914, - [6915] = 6915, - [6916] = 6916, + [6915] = 6901, + [6916] = 6898, [6917] = 6917, - [6918] = 6856, - [6919] = 6853, - [6920] = 6848, - [6921] = 6856, - [6922] = 6853, - [6923] = 6923, - [6924] = 6853, + [6918] = 6904, + [6919] = 2403, + [6920] = 2270, + [6921] = 6914, + [6922] = 6907, + [6923] = 6884, + [6924] = 6134, [6925] = 6925, - [6926] = 6852, - [6927] = 6856, - [6928] = 6915, - [6929] = 6854, - [6930] = 6930, + [6926] = 6884, + [6927] = 6888, + [6928] = 6882, + [6929] = 6151, + [6930] = 6441, [6931] = 6931, [6932] = 6932, - [6933] = 6933, - [6934] = 6934, - [6935] = 6935, - [6936] = 6936, + [6933] = 6888, + [6934] = 6884, + [6935] = 2403, + [6936] = 6135, [6937] = 6937, - [6938] = 6933, - [6939] = 6933, - [6940] = 6940, - [6941] = 6941, - [6942] = 6942, - [6943] = 6943, + [6938] = 6938, + [6939] = 6882, + [6940] = 6907, + [6941] = 6938, + [6942] = 6888, + [6943] = 6445, [6944] = 6944, - [6945] = 6937, - [6946] = 6934, - [6947] = 6943, - [6948] = 6944, - [6949] = 6943, - [6950] = 6937, + [6945] = 6914, + [6946] = 6938, + [6947] = 6901, + [6948] = 6904, + [6949] = 6120, + [6950] = 6888, [6951] = 6951, - [6952] = 6937, + [6952] = 6952, [6953] = 6953, [6954] = 6954, - [6955] = 6954, + [6955] = 6955, [6956] = 6956, - [6957] = 6944, - [6958] = 6937, - [6959] = 6953, - [6960] = 6937, - [6961] = 6933, - [6962] = 6962, - [6963] = 6944, + [6957] = 6957, + [6958] = 6958, + [6959] = 6959, + [6960] = 6957, + [6961] = 6961, + [6962] = 6955, + [6963] = 6958, [6964] = 6964, - [6965] = 6934, - [6966] = 6937, - [6967] = 6937, - [6968] = 6953, - [6969] = 6969, - [6970] = 6934, + [6965] = 6965, + [6966] = 6958, + [6967] = 6955, + [6968] = 6968, + [6969] = 6955, + [6970] = 6970, [6971] = 6971, - [6972] = 6944, - [6973] = 6942, - [6974] = 6956, - [6975] = 6975, - [6976] = 6953, - [6977] = 6977, - [6978] = 6937, - [6979] = 6933, - [6980] = 6964, - [6981] = 6943, - [6982] = 6956, - [6983] = 6944, - [6984] = 6934, - [6985] = 6971, - [6986] = 6971, - [6987] = 6937, - [6988] = 6944, - [6989] = 6943, - [6990] = 6990, - [6991] = 6954, + [6972] = 6972, + [6973] = 2325, + [6974] = 6974, + [6975] = 6957, + [6976] = 6974, + [6977] = 6965, + [6978] = 6965, + [6979] = 6957, + [6980] = 6965, + [6981] = 6981, + [6982] = 6957, + [6983] = 6983, + [6984] = 5917, + [6985] = 6985, + [6986] = 6958, + [6987] = 6974, + [6988] = 6096, + [6989] = 6958, + [6990] = 6134, + [6991] = 6955, [6992] = 6992, - [6993] = 6937, - [6994] = 6971, - [6995] = 6934, - [6996] = 6944, - [6997] = 6934, - [6998] = 6943, - [6999] = 6964, - [7000] = 6971, - [7001] = 7001, - [7002] = 6943, - [7003] = 6930, - [7004] = 6931, - [7005] = 6992, - [7006] = 6954, - [7007] = 6943, - [7008] = 7008, - [7009] = 7009, - [7010] = 6934, - [7011] = 6930, - [7012] = 6931, - [7013] = 6934, - [7014] = 6931, - [7015] = 6937, - [7016] = 6930, - [7017] = 6944, - [7018] = 6937, - [7019] = 6992, + [6993] = 6972, + [6994] = 6955, + [6995] = 6995, + [6996] = 6151, + [6997] = 6957, + [6998] = 6965, + [6999] = 6092, + [7000] = 7000, + [7001] = 6955, + [7002] = 6955, + [7003] = 6957, + [7004] = 6120, + [7005] = 7005, + [7006] = 6965, + [7007] = 6139, + [7008] = 6972, + [7009] = 6958, + [7010] = 2403, + [7011] = 6955, + [7012] = 7012, + [7013] = 7013, + [7014] = 6957, + [7015] = 6965, + [7016] = 6965, + [7017] = 6965, + [7018] = 6958, + [7019] = 7019, [7020] = 7020, - [7021] = 6956, - [7022] = 6971, - [7023] = 6971, - [7024] = 6930, - [7025] = 6933, - [7026] = 6932, - [7027] = 7001, - [7028] = 7028, - [7029] = 2407, - [7030] = 6933, - [7031] = 7031, - [7032] = 6931, - [7033] = 6954, - [7034] = 7034, - [7035] = 6932, + [7021] = 2403, + [7022] = 6954, + [7023] = 7019, + [7024] = 2370, + [7025] = 6974, + [7026] = 6957, + [7027] = 6140, + [7028] = 6972, + [7029] = 7029, + [7030] = 6958, + [7031] = 6974, + [7032] = 6958, + [7033] = 7033, + [7034] = 2271, + [7035] = 6135, [7036] = 7036, - [7037] = 6942, - [7038] = 6943, + [7037] = 7037, + [7038] = 7037, [7039] = 7039, - [7040] = 6933, - [7041] = 6943, - [7042] = 7001, - [7043] = 6964, - [7044] = 6930, + [7040] = 7040, + [7041] = 7041, + [7042] = 7042, + [7043] = 7036, + [7044] = 7044, [7045] = 7045, - [7046] = 7034, - [7047] = 6942, + [7046] = 7046, + [7047] = 7047, [7048] = 7048, - [7049] = 6943, - [7050] = 7050, - [7051] = 6944, - [7052] = 6964, - [7053] = 6937, - [7054] = 7034, - [7055] = 6942, - [7056] = 6933, - [7057] = 6953, + [7049] = 7046, + [7050] = 7040, + [7051] = 7042, + [7052] = 7044, + [7053] = 7053, + [7054] = 7046, + [7055] = 7047, + [7056] = 7047, + [7057] = 7057, [7058] = 7058, - [7059] = 7059, - [7060] = 6943, - [7061] = 6943, - [7062] = 7034, - [7063] = 6942, - [7064] = 6937, - [7065] = 6954, - [7066] = 6954, - [7067] = 7036, - [7068] = 7068, - [7069] = 6933, - [7070] = 6964, - [7071] = 7034, - [7072] = 6942, - [7073] = 6943, - [7074] = 6937, - [7075] = 7034, - [7076] = 6942, - [7077] = 6992, + [7059] = 7040, + [7060] = 7060, + [7061] = 7042, + [7062] = 7036, + [7063] = 7044, + [7064] = 7046, + [7065] = 7047, + [7066] = 2403, + [7067] = 7040, + [7068] = 7036, + [7069] = 7044, + [7070] = 7047, + [7071] = 7040, + [7072] = 7040, + [7073] = 7073, + [7074] = 7036, + [7075] = 7044, + [7076] = 7047, + [7077] = 7040, [7078] = 7078, - [7079] = 7034, - [7080] = 6953, - [7081] = 6933, - [7082] = 6943, - [7083] = 6933, - [7084] = 6934, - [7085] = 6932, - [7086] = 6930, - [7087] = 6944, - [7088] = 6953, - [7089] = 6937, - [7090] = 6956, - [7091] = 7091, - [7092] = 7092, - [7093] = 7093, - [7094] = 6933, - [7095] = 6930, - [7096] = 6930, - [7097] = 7034, - [7098] = 5849, - [7099] = 6956, - [7100] = 6931, - [7101] = 6933, - [7102] = 6943, - [7103] = 6992, + [7079] = 7044, + [7080] = 7047, + [7081] = 7040, + [7082] = 7044, + [7083] = 7047, + [7084] = 7042, + [7085] = 7085, + [7086] = 7040, + [7087] = 7044, + [7088] = 7047, + [7089] = 7040, + [7090] = 7040, + [7091] = 7044, + [7092] = 7047, + [7093] = 7040, + [7094] = 7044, + [7095] = 7047, + [7096] = 7040, + [7097] = 7044, + [7098] = 7040, + [7099] = 7044, + [7100] = 7042, + [7101] = 7040, + [7102] = 7036, + [7103] = 7044, [7104] = 7104, - [7105] = 6931, - [7106] = 6933, + [7105] = 7053, + [7106] = 7036, [7107] = 7107, - [7108] = 6943, - [7109] = 6932, - [7110] = 6992, - [7111] = 6930, - [7112] = 6930, - [7113] = 6930, + [7108] = 7108, + [7109] = 7109, + [7110] = 7110, + [7111] = 7036, + [7112] = 7044, + [7113] = 7113, [7114] = 7114, - [7115] = 6964, - [7116] = 7116, - [7117] = 6943, - [7118] = 7034, - [7119] = 6933, + [7115] = 7044, + [7116] = 7045, + [7117] = 7114, + [7118] = 7118, + [7119] = 7119, [7120] = 7120, - [7121] = 6971, + [7121] = 7046, [7122] = 7122, - [7123] = 6932, - [7124] = 6937, - [7125] = 6943, - [7126] = 6934, - [7127] = 6934, - [7128] = 7036, - [7129] = 6933, - [7130] = 6937, - [7131] = 6942, - [7132] = 7001, - [7133] = 6992, - [7134] = 6944, - [7135] = 6971, + [7123] = 7047, + [7124] = 7124, + [7125] = 7040, + [7126] = 7042, + [7127] = 7104, + [7128] = 7037, + [7129] = 7129, + [7130] = 7078, + [7131] = 7085, + [7132] = 7047, + [7133] = 7053, + [7134] = 7107, + [7135] = 7040, [7136] = 7136, [7137] = 7137, - [7138] = 7138, - [7139] = 7139, - [7140] = 7140, - [7141] = 7141, - [7142] = 7142, - [7143] = 7143, - [7144] = 7144, - [7145] = 7145, - [7146] = 7146, - [7147] = 7147, - [7148] = 2453, - [7149] = 7149, - [7150] = 7150, - [7151] = 7151, - [7152] = 7152, - [7153] = 7140, - [7154] = 7154, - [7155] = 7151, - [7156] = 7156, - [7157] = 7157, + [7138] = 7078, + [7139] = 7042, + [7140] = 7085, + [7141] = 7042, + [7142] = 7036, + [7143] = 7044, + [7144] = 7036, + [7145] = 7044, + [7146] = 7053, + [7147] = 7104, + [7148] = 7148, + [7149] = 7085, + [7150] = 7078, + [7151] = 7053, + [7152] = 7107, + [7153] = 7113, + [7154] = 7114, + [7155] = 7045, + [7156] = 7046, + [7157] = 7047, [7158] = 7158, [7159] = 7159, - [7160] = 7147, - [7161] = 7161, - [7162] = 7162, + [7160] = 7113, + [7161] = 7037, + [7162] = 7078, [7163] = 7163, - [7164] = 7164, - [7165] = 7165, - [7166] = 7166, - [7167] = 7167, - [7168] = 7168, - [7169] = 7147, - [7170] = 7170, - [7171] = 7151, - [7172] = 7156, - [7173] = 7157, - [7174] = 7158, - [7175] = 7175, - [7176] = 7176, - [7177] = 7147, - [7178] = 7178, - [7179] = 7151, - [7180] = 7167, - [7181] = 7156, - [7182] = 7157, - [7183] = 7158, - [7184] = 7138, - [7185] = 7185, + [7164] = 7122, + [7165] = 7107, + [7166] = 7037, + [7167] = 7045, + [7168] = 7046, + [7169] = 7113, + [7170] = 7114, + [7171] = 7107, + [7172] = 7114, + [7173] = 7045, + [7174] = 7040, + [7175] = 7046, + [7176] = 7078, + [7177] = 7085, + [7178] = 7107, + [7179] = 7045, + [7180] = 7180, + [7181] = 7047, + [7182] = 7042, + [7183] = 7183, + [7184] = 7036, + [7185] = 7044, [7186] = 7186, - [7187] = 7187, - [7188] = 7188, - [7189] = 7156, - [7190] = 7157, - [7191] = 7158, - [7192] = 7147, - [7193] = 7151, - [7194] = 7156, - [7195] = 7157, - [7196] = 7158, - [7197] = 7140, - [7198] = 7198, - [7199] = 7199, - [7200] = 7168, - [7201] = 7154, - [7202] = 7147, - [7203] = 7151, - [7204] = 7156, - [7205] = 7157, - [7206] = 7158, - [7207] = 7141, - [7208] = 7208, - [7209] = 7146, - [7210] = 7147, - [7211] = 7151, - [7212] = 7156, - [7213] = 7157, - [7214] = 7158, - [7215] = 7215, - [7216] = 7216, - [7217] = 7147, - [7218] = 7151, - [7219] = 7156, - [7220] = 7157, - [7221] = 7158, - [7222] = 7222, - [7223] = 7175, - [7224] = 7224, - [7225] = 7225, - [7226] = 7149, - [7227] = 7147, - [7228] = 7228, - [7229] = 7151, - [7230] = 7156, - [7231] = 7157, - [7232] = 7158, - [7233] = 7137, - [7234] = 7234, - [7235] = 7224, - [7236] = 7151, - [7237] = 7147, - [7238] = 7151, - [7239] = 7156, - [7240] = 7157, - [7241] = 7158, - [7242] = 7147, + [7187] = 7107, + [7188] = 7053, + [7189] = 7189, + [7190] = 7113, + [7191] = 7037, + [7192] = 7046, + [7193] = 7047, + [7194] = 7163, + [7195] = 7195, + [7196] = 7196, + [7197] = 7122, + [7198] = 5917, + [7199] = 7037, + [7200] = 7113, + [7201] = 7085, + [7202] = 7104, + [7203] = 7042, + [7204] = 7046, + [7205] = 7040, + [7206] = 7206, + [7207] = 7078, + [7208] = 7114, + [7209] = 7163, + [7210] = 7195, + [7211] = 7122, + [7212] = 7212, + [7213] = 7042, + [7214] = 7163, + [7215] = 7122, + [7216] = 7036, + [7217] = 7044, + [7218] = 7163, + [7219] = 7122, + [7220] = 7053, + [7221] = 7163, + [7222] = 7122, + [7223] = 7163, + [7224] = 7122, + [7225] = 7163, + [7226] = 7122, + [7227] = 7163, + [7228] = 7042, + [7229] = 7046, + [7230] = 7113, + [7231] = 7231, + [7232] = 7046, + [7233] = 7233, + [7234] = 7047, + [7235] = 7235, + [7236] = 7236, + [7237] = 7237, + [7238] = 7045, + [7239] = 7195, + [7240] = 7053, + [7241] = 7053, + [7242] = 7242, [7243] = 7243, - [7244] = 7147, - [7245] = 7147, - [7246] = 7147, - [7247] = 7154, + [7244] = 7244, + [7245] = 7245, + [7246] = 7246, + [7247] = 7247, [7248] = 7248, [7249] = 7249, - [7250] = 7176, - [7251] = 7151, + [7250] = 7250, + [7251] = 7251, [7252] = 7252, - [7253] = 7253, + [7253] = 7247, [7254] = 7254, - [7255] = 7225, - [7256] = 7178, - [7257] = 7257, + [7255] = 7255, + [7256] = 7256, + [7257] = 7256, [7258] = 7258, [7259] = 7259, - [7260] = 7162, + [7260] = 7260, [7261] = 7261, - [7262] = 7163, - [7263] = 7164, - [7264] = 7264, + [7262] = 7262, + [7263] = 7263, + [7264] = 7247, [7265] = 7265, [7266] = 7266, - [7267] = 7166, + [7267] = 7267, [7268] = 7268, - [7269] = 7167, - [7270] = 7147, + [7269] = 7269, + [7270] = 236, [7271] = 7271, - [7272] = 7136, - [7273] = 7141, + [7272] = 7272, + [7273] = 7247, [7274] = 7274, - [7275] = 7275, + [7275] = 2551, [7276] = 7276, - [7277] = 7161, - [7278] = 7278, + [7277] = 2552, + [7278] = 7243, [7279] = 7279, - [7280] = 7147, + [7280] = 7280, [7281] = 7281, [7282] = 7282, [7283] = 7283, [7284] = 7284, [7285] = 7285, - [7286] = 7215, - [7287] = 7216, - [7288] = 7288, + [7286] = 7286, + [7287] = 7287, + [7288] = 7245, [7289] = 7289, - [7290] = 7186, - [7291] = 7187, - [7292] = 7147, - [7293] = 7156, - [7294] = 7294, - [7295] = 7162, - [7296] = 7138, + [7290] = 7290, + [7291] = 2441, + [7292] = 7287, + [7293] = 7282, + [7294] = 2442, + [7295] = 7283, + [7296] = 7282, [7297] = 7297, - [7298] = 7140, - [7299] = 7146, - [7300] = 7157, - [7301] = 7146, - [7302] = 7302, - [7303] = 7158, - [7304] = 7304, - [7305] = 7175, - [7306] = 7176, - [7307] = 7178, - [7308] = 7154, - [7309] = 7151, - [7310] = 7162, - [7311] = 7163, - [7312] = 7164, - [7313] = 2407, + [7298] = 7242, + [7299] = 7269, + [7300] = 2445, + [7301] = 7246, + [7302] = 7254, + [7303] = 7266, + [7304] = 7268, + [7305] = 2446, + [7306] = 7297, + [7307] = 7307, + [7308] = 7308, + [7309] = 7309, + [7310] = 2448, + [7311] = 7311, + [7312] = 7271, + [7313] = 7313, [7314] = 7314, [7315] = 7315, - [7316] = 7167, - [7317] = 6659, - [7318] = 7318, - [7319] = 7186, - [7320] = 7187, - [7321] = 7175, - [7322] = 7178, - [7323] = 7323, + [7316] = 7316, + [7317] = 7317, + [7318] = 7272, + [7319] = 7289, + [7320] = 7320, + [7321] = 7314, + [7322] = 7272, + [7323] = 7289, [7324] = 7324, - [7325] = 7156, - [7326] = 7157, - [7327] = 7186, - [7328] = 7187, - [7329] = 7156, - [7330] = 7157, - [7331] = 7158, - [7332] = 7198, - [7333] = 7158, - [7334] = 7168, - [7335] = 237, - [7336] = 7215, - [7337] = 7216, - [7338] = 7224, - [7339] = 7225, - [7340] = 7228, - [7341] = 7137, - [7342] = 7198, - [7343] = 7199, - [7344] = 7168, - [7345] = 7170, - [7346] = 7288, - [7347] = 7347, - [7348] = 7149, - [7349] = 7349, + [7325] = 7280, + [7326] = 7242, + [7327] = 7316, + [7328] = 7320, + [7329] = 7329, + [7330] = 7330, + [7331] = 7331, + [7332] = 7313, + [7333] = 7333, + [7334] = 7334, + [7335] = 7249, + [7336] = 7336, + [7337] = 7314, + [7338] = 7244, + [7339] = 7339, + [7340] = 7340, + [7341] = 7249, + [7342] = 7255, + [7343] = 7265, + [7344] = 7344, + [7345] = 7265, + [7346] = 7269, + [7347] = 7271, + [7348] = 7243, + [7349] = 7245, [7350] = 7350, - [7351] = 7186, - [7352] = 7224, - [7353] = 7225, - [7354] = 7215, - [7355] = 7249, - [7356] = 7216, - [7357] = 7253, - [7358] = 7254, + [7351] = 7351, + [7352] = 7352, + [7353] = 7353, + [7354] = 7255, + [7355] = 7355, + [7356] = 7282, + [7357] = 238, + [7358] = 7242, [7359] = 7359, - [7360] = 2471, - [7361] = 2533, - [7362] = 7136, - [7363] = 7268, + [7360] = 7313, + [7361] = 7361, + [7362] = 7362, + [7363] = 7324, [7364] = 7364, - [7365] = 7365, - [7366] = 7187, - [7367] = 7367, - [7368] = 7368, - [7369] = 7284, - [7370] = 7224, - [7371] = 7254, - [7372] = 7138, - [7373] = 7373, - [7374] = 7225, + [7365] = 7280, + [7366] = 7247, + [7367] = 7242, + [7368] = 7316, + [7369] = 7320, + [7370] = 7265, + [7371] = 7250, + [7372] = 7313, + [7373] = 7340, + [7374] = 7282, [7375] = 7375, - [7376] = 7288, - [7377] = 7156, + [7376] = 7249, + [7377] = 7313, [7378] = 7378, - [7379] = 7147, - [7380] = 7162, - [7381] = 7163, + [7379] = 7316, + [7380] = 7242, + [7381] = 7316, [7382] = 7382, - [7383] = 7164, - [7384] = 7228, - [7385] = 7138, - [7386] = 7140, - [7387] = 7137, - [7388] = 7146, + [7383] = 7383, + [7384] = 7384, + [7385] = 7320, + [7386] = 7386, + [7387] = 7246, + [7388] = 7246, [7389] = 7389, - [7390] = 7157, - [7391] = 7154, - [7392] = 7392, - [7393] = 7228, - [7394] = 7151, - [7395] = 7395, - [7396] = 7288, - [7397] = 7162, - [7398] = 7163, - [7399] = 7166, - [7400] = 7164, - [7401] = 7249, - [7402] = 7253, - [7403] = 7254, - [7404] = 7215, - [7405] = 7167, - [7406] = 7253, - [7407] = 7216, - [7408] = 7408, - [7409] = 7268, - [7410] = 7175, + [7390] = 7250, + [7391] = 7255, + [7392] = 7315, + [7393] = 7393, + [7394] = 7311, + [7395] = 7244, + [7396] = 7311, + [7397] = 7397, + [7398] = 7398, + [7399] = 7399, + [7400] = 7247, + [7401] = 2468, + [7402] = 7402, + [7403] = 7403, + [7404] = 7329, + [7405] = 7405, + [7406] = 7406, + [7407] = 7330, + [7408] = 7331, + [7409] = 7254, + [7410] = 7256, [7411] = 7411, - [7412] = 7158, - [7413] = 7175, - [7414] = 7178, - [7415] = 7186, - [7416] = 7187, - [7417] = 7156, - [7418] = 7157, - [7419] = 7158, - [7420] = 7198, - [7421] = 7228, - [7422] = 7168, - [7423] = 7249, - [7424] = 7254, - [7425] = 7268, + [7412] = 7320, + [7413] = 7413, + [7414] = 7274, + [7415] = 7276, + [7416] = 7250, + [7417] = 7266, + [7418] = 7268, + [7419] = 7333, + [7420] = 7283, + [7421] = 7421, + [7422] = 7422, + [7423] = 7247, + [7424] = 7334, + [7425] = 7287, [7426] = 7426, - [7427] = 7427, - [7428] = 7268, - [7429] = 7215, - [7430] = 7216, - [7431] = 7224, - [7432] = 7225, - [7433] = 7433, - [7434] = 7434, - [7435] = 7228, - [7436] = 7137, - [7437] = 7437, - [7438] = 7137, + [7427] = 7329, + [7428] = 7282, + [7429] = 7282, + [7430] = 7242, + [7431] = 7316, + [7432] = 7432, + [7433] = 7254, + [7434] = 7266, + [7435] = 7268, + [7436] = 7436, + [7437] = 7308, + [7438] = 7340, [7439] = 7439, - [7440] = 7440, - [7441] = 7441, - [7442] = 7249, - [7443] = 7254, + [7440] = 7320, + [7441] = 7247, + [7442] = 7297, + [7443] = 7272, [7444] = 7444, - [7445] = 7445, + [7445] = 7314, [7446] = 7446, - [7447] = 7268, - [7448] = 7167, - [7449] = 7282, - [7450] = 7176, - [7451] = 7451, - [7452] = 7249, - [7453] = 7254, - [7454] = 7454, - [7455] = 7268, - [7456] = 7136, - [7457] = 7249, - [7458] = 7284, - [7459] = 7459, - [7460] = 7249, - [7461] = 7254, - [7462] = 7254, - [7463] = 7284, - [7464] = 7254, - [7465] = 7465, - [7466] = 7254, - [7467] = 7254, - [7468] = 2485, - [7469] = 7288, - [7470] = 7470, - [7471] = 7471, - [7472] = 7147, - [7473] = 7253, - [7474] = 7474, - [7475] = 2486, - [7476] = 7253, - [7477] = 7477, - [7478] = 7478, - [7479] = 7136, - [7480] = 7138, - [7481] = 7161, - [7482] = 7140, - [7483] = 7178, - [7484] = 7282, - [7485] = 7154, - [7486] = 7151, - [7487] = 7487, - [7488] = 7162, - [7489] = 7163, - [7490] = 7164, - [7491] = 7198, - [7492] = 7282, - [7493] = 7167, - [7494] = 7494, - [7495] = 2493, - [7496] = 2494, - [7497] = 7497, - [7498] = 7166, - [7499] = 7175, - [7500] = 7186, - [7501] = 7136, - [7502] = 7187, - [7503] = 7156, - [7504] = 7157, - [7505] = 7158, - [7506] = 7198, - [7507] = 7136, - [7508] = 7168, - [7509] = 7509, - [7510] = 2496, - [7511] = 7215, - [7512] = 7216, - [7513] = 7224, - [7514] = 7514, - [7515] = 7225, - [7516] = 7228, - [7517] = 7198, - [7518] = 7284, - [7519] = 2497, - [7520] = 2499, - [7521] = 7521, - [7522] = 7163, - [7523] = 7199, - [7524] = 7288, - [7525] = 7164, - [7526] = 7136, - [7527] = 7284, - [7528] = 7284, - [7529] = 7168, - [7530] = 7284, - [7531] = 7288, - [7532] = 7147, - [7533] = 7170, - [7534] = 7199, - [7535] = 7138, - [7536] = 7288, - [7537] = 7147, - [7538] = 7538, - [7539] = 7539, - [7540] = 7151, - [7541] = 7162, - [7542] = 7163, - [7543] = 7164, - [7544] = 7147, - [7545] = 7545, - [7546] = 7546, - [7547] = 7138, - [7548] = 7548, - [7549] = 7140, - [7550] = 7141, - [7551] = 7146, - [7552] = 7156, - [7553] = 7157, - [7554] = 7158, - [7555] = 7198, - [7556] = 240, - [7557] = 7154, - [7558] = 7151, + [7447] = 7324, + [7448] = 7280, + [7449] = 7242, + [7450] = 7315, + [7451] = 7316, + [7452] = 7311, + [7453] = 7320, + [7454] = 7244, + [7455] = 7330, + [7456] = 7329, + [7457] = 7330, + [7458] = 7331, + [7459] = 7334, + [7460] = 7460, + [7461] = 7256, + [7462] = 7462, + [7463] = 7432, + [7464] = 7464, + [7465] = 7274, + [7466] = 7466, + [7467] = 7467, + [7468] = 7249, + [7469] = 7255, + [7470] = 7265, + [7471] = 7246, + [7472] = 7247, + [7473] = 7269, + [7474] = 7271, + [7475] = 7243, + [7476] = 7245, + [7477] = 7250, + [7478] = 7315, + [7479] = 7244, + [7480] = 7274, + [7481] = 7276, + [7482] = 7276, + [7483] = 7331, + [7484] = 7256, + [7485] = 7247, + [7486] = 7279, + [7487] = 7444, + [7488] = 7488, + [7489] = 7282, + [7490] = 7246, + [7491] = 7283, + [7492] = 7492, + [7493] = 7272, + [7494] = 7311, + [7495] = 7316, + [7496] = 7320, + [7497] = 7315, + [7498] = 7244, + [7499] = 7499, + [7500] = 7250, + [7501] = 7501, + [7502] = 7256, + [7503] = 7340, + [7504] = 7313, + [7505] = 7505, + [7506] = 7506, + [7507] = 7247, + [7508] = 7287, + [7509] = 7247, + [7510] = 7282, + [7511] = 7511, + [7512] = 7324, + [7513] = 7282, + [7514] = 7242, + [7515] = 7315, + [7516] = 7244, + [7517] = 7280, + [7518] = 7316, + [7519] = 7519, + [7520] = 7320, + [7521] = 7246, + [7522] = 7256, + [7523] = 7308, + [7524] = 7274, + [7525] = 7525, + [7526] = 7250, + [7527] = 7243, + [7528] = 7528, + [7529] = 7242, + [7530] = 7247, + [7531] = 7531, + [7532] = 7315, + [7533] = 7244, + [7534] = 7249, + [7535] = 7316, + [7536] = 7254, + [7537] = 7266, + [7538] = 7244, + [7539] = 7320, + [7540] = 7247, + [7541] = 7268, + [7542] = 7542, + [7543] = 7274, + [7544] = 7244, + [7545] = 7255, + [7546] = 7276, + [7547] = 7244, + [7548] = 7244, + [7549] = 7549, + [7550] = 7297, + [7551] = 7334, + [7552] = 7283, + [7553] = 7308, + [7554] = 7282, + [7555] = 7287, + [7556] = 7242, + [7557] = 7282, + [7558] = 7558, [7559] = 7559, - [7560] = 7560, - [7561] = 7561, - [7562] = 7562, - [7563] = 7563, - [7564] = 7564, - [7565] = 7565, - [7566] = 7566, - [7567] = 7567, - [7568] = 7568, + [7560] = 7316, + [7561] = 7254, + [7562] = 7266, + [7563] = 7268, + [7564] = 7320, + [7565] = 7279, + [7566] = 7308, + [7567] = 7308, + [7568] = 7324, [7569] = 7569, - [7570] = 7570, - [7571] = 7571, - [7572] = 7572, - [7573] = 7573, - [7574] = 7574, - [7575] = 7575, - [7576] = 7576, - [7577] = 7577, - [7578] = 7563, - [7579] = 7579, - [7580] = 7580, + [7570] = 7282, + [7571] = 7265, + [7572] = 7353, + [7573] = 7272, + [7574] = 7314, + [7575] = 7334, + [7576] = 7324, + [7577] = 7280, + [7578] = 7242, + [7579] = 7316, + [7580] = 7320, [7581] = 7581, - [7582] = 7568, - [7583] = 7583, - [7584] = 7584, - [7585] = 7585, + [7582] = 7329, + [7583] = 7330, + [7584] = 7331, + [7585] = 7334, [7586] = 7586, - [7587] = 7574, - [7588] = 7588, - [7589] = 7576, - [7590] = 7590, + [7587] = 7587, + [7588] = 7249, + [7589] = 7255, + [7590] = 7265, [7591] = 7591, - [7592] = 7561, - [7593] = 7593, - [7594] = 7581, - [7595] = 7595, - [7596] = 7596, - [7597] = 7573, + [7592] = 7269, + [7593] = 7271, + [7594] = 7594, + [7595] = 7243, + [7596] = 7245, + [7597] = 7247, [7598] = 7598, - [7599] = 7595, + [7599] = 7274, [7600] = 7600, - [7601] = 7574, - [7602] = 7598, - [7603] = 7576, - [7604] = 7600, - [7605] = 7605, - [7606] = 7606, - [7607] = 7565, - [7608] = 7608, - [7609] = 7565, - [7610] = 7563, - [7611] = 7611, - [7612] = 7573, - [7613] = 7563, - [7614] = 7581, - [7615] = 7595, - [7616] = 7595, - [7617] = 7577, - [7618] = 7598, - [7619] = 7573, - [7620] = 7565, - [7621] = 7573, - [7622] = 7622, + [7601] = 7444, + [7602] = 7602, + [7603] = 7254, + [7604] = 7276, + [7605] = 7272, + [7606] = 7289, + [7607] = 7314, + [7608] = 7282, + [7609] = 7242, + [7610] = 7316, + [7611] = 7320, + [7612] = 7283, + [7613] = 7266, + [7614] = 7614, + [7615] = 7615, + [7616] = 7269, + [7617] = 7271, + [7618] = 7268, + [7619] = 7619, + [7620] = 6812, + [7621] = 7313, + [7622] = 7313, [7623] = 7623, - [7624] = 7605, - [7625] = 7606, - [7626] = 7577, - [7627] = 7623, - [7628] = 7628, - [7629] = 7561, - [7630] = 7576, - [7631] = 7575, - [7632] = 7632, - [7633] = 7583, - [7634] = 7605, - [7635] = 7623, - [7636] = 7636, - [7637] = 7561, - [7638] = 7576, - [7639] = 7628, - [7640] = 7640, - [7641] = 7606, - [7642] = 7593, - [7643] = 7577, - [7644] = 7644, - [7645] = 7567, - [7646] = 7646, - [7647] = 7575, - [7648] = 7648, - [7649] = 7608, - [7650] = 7650, - [7651] = 7561, - [7652] = 7563, - [7653] = 7653, - [7654] = 7654, - [7655] = 7577, - [7656] = 7656, - [7657] = 7561, - [7658] = 7593, - [7659] = 7611, - [7660] = 7660, - [7661] = 7661, + [7624] = 7247, + [7625] = 7269, + [7626] = 7324, + [7627] = 7280, + [7628] = 7282, + [7629] = 7242, + [7630] = 7316, + [7631] = 7320, + [7632] = 2485, + [7633] = 7242, + [7634] = 7316, + [7635] = 7635, + [7636] = 2487, + [7637] = 7271, + [7638] = 7246, + [7639] = 7320, + [7640] = 2403, + [7641] = 7243, + [7642] = 7353, + [7643] = 7250, + [7644] = 7247, + [7645] = 7242, + [7646] = 7282, + [7647] = 7242, + [7648] = 7247, + [7649] = 7316, + [7650] = 7320, + [7651] = 7279, + [7652] = 7311, + [7653] = 7316, + [7654] = 7329, + [7655] = 7330, + [7656] = 7320, + [7657] = 7331, + [7658] = 7247, + [7659] = 7274, + [7660] = 7276, + [7661] = 7245, [7662] = 7662, - [7663] = 7576, - [7664] = 7577, - [7665] = 7567, - [7666] = 7646, - [7667] = 7574, + [7663] = 7333, + [7664] = 7664, + [7665] = 7334, + [7666] = 7432, + [7667] = 7329, [7668] = 7668, - [7669] = 7566, - [7670] = 7568, - [7671] = 7565, - [7672] = 7583, - [7673] = 7572, - [7674] = 7585, - [7675] = 7570, - [7676] = 7574, - [7677] = 7579, - [7678] = 7588, - [7679] = 7576, - [7680] = 7680, - [7681] = 7588, - [7682] = 7623, - [7683] = 7683, - [7684] = 7573, - [7685] = 7646, - [7686] = 7585, - [7687] = 7576, - [7688] = 7595, - [7689] = 7628, + [7669] = 7287, + [7670] = 7670, + [7671] = 7330, + [7672] = 7282, + [7673] = 7247, + [7674] = 7329, + [7675] = 7331, + [7676] = 7247, + [7677] = 7254, + [7678] = 7330, + [7679] = 7266, + [7680] = 7268, + [7681] = 7681, + [7682] = 7247, + [7683] = 7331, + [7684] = 7684, + [7685] = 7308, + [7686] = 7287, + [7687] = 7315, + [7688] = 7333, + [7689] = 7265, [7690] = 7690, - [7691] = 7566, - [7692] = 7605, - [7693] = 7606, - [7694] = 7577, - [7695] = 7575, - [7696] = 7595, - [7697] = 7576, + [7691] = 7691, + [7692] = 7692, + [7693] = 7693, + [7694] = 7694, + [7695] = 7695, + [7696] = 7696, + [7697] = 7697, [7698] = 7698, [7699] = 7699, - [7700] = 7632, - [7701] = 7653, - [7702] = 7654, - [7703] = 7656, - [7704] = 7561, - [7705] = 7611, - [7706] = 7660, - [7707] = 7661, - [7708] = 7654, - [7709] = 7563, - [7710] = 7581, + [7700] = 7700, + [7701] = 7701, + [7702] = 7702, + [7703] = 7703, + [7704] = 7704, + [7705] = 7705, + [7706] = 7706, + [7707] = 7707, + [7708] = 7708, + [7709] = 7709, + [7710] = 7696, [7711] = 7711, - [7712] = 7661, - [7713] = 7579, - [7714] = 7566, - [7715] = 7568, - [7716] = 7598, - [7717] = 7572, - [7718] = 7598, - [7719] = 7565, - [7720] = 7579, - [7721] = 7573, + [7712] = 7712, + [7713] = 7713, + [7714] = 7714, + [7715] = 7714, + [7716] = 7709, + [7717] = 7712, + [7718] = 7718, + [7719] = 7719, + [7720] = 7720, + [7721] = 7696, [7722] = 7722, - [7723] = 7623, - [7724] = 7724, - [7725] = 7577, - [7726] = 7653, - [7727] = 7570, - [7728] = 7656, - [7729] = 7567, + [7723] = 7691, + [7724] = 7722, + [7725] = 7701, + [7726] = 7695, + [7727] = 7727, + [7728] = 7707, + [7729] = 7711, [7730] = 7730, - [7731] = 7731, - [7732] = 7611, - [7733] = 7660, - [7734] = 7575, - [7735] = 7735, - [7736] = 7593, - [7737] = 7566, - [7738] = 7568, + [7731] = 7692, + [7732] = 7693, + [7733] = 7733, + [7734] = 7706, + [7735] = 7711, + [7736] = 7691, + [7737] = 7703, + [7738] = 7738, [7739] = 7739, - [7740] = 7572, - [7741] = 7579, - [7742] = 7742, - [7743] = 7608, - [7744] = 7744, - [7745] = 7632, - [7746] = 7573, - [7747] = 7656, - [7748] = 7632, - [7749] = 7611, + [7740] = 7711, + [7741] = 7741, + [7742] = 7718, + [7743] = 7743, + [7744] = 7714, + [7745] = 7707, + [7746] = 7714, + [7747] = 7706, + [7748] = 7722, + [7749] = 7730, [7750] = 7750, - [7751] = 7751, - [7752] = 7561, - [7753] = 7572, - [7754] = 7646, - [7755] = 7585, - [7756] = 7568, - [7757] = 7572, - [7758] = 7758, - [7759] = 7579, + [7751] = 7722, + [7752] = 7695, + [7753] = 7702, + [7754] = 7708, + [7755] = 7718, + [7756] = 7707, + [7757] = 7706, + [7758] = 7708, + [7759] = 7706, [7760] = 7760, [7761] = 7761, - [7762] = 7561, - [7763] = 7656, - [7764] = 7561, - [7765] = 7611, + [7762] = 7712, + [7763] = 7763, + [7764] = 7764, + [7765] = 7692, [7766] = 7766, - [7767] = 7656, - [7768] = 7575, - [7769] = 7605, - [7770] = 7646, - [7771] = 7568, - [7772] = 7606, - [7773] = 7572, - [7774] = 7598, - [7775] = 7775, - [7776] = 7776, - [7777] = 7567, + [7767] = 7767, + [7768] = 7719, + [7769] = 7769, + [7770] = 7720, + [7771] = 7771, + [7772] = 7727, + [7773] = 7712, + [7774] = 7774, + [7775] = 7691, + [7776] = 7767, + [7777] = 7722, [7778] = 7778, - [7779] = 7588, - [7780] = 7656, - [7781] = 7611, - [7782] = 7782, - [7783] = 7571, - [7784] = 7568, - [7785] = 7785, - [7786] = 7611, - [7787] = 7611, - [7788] = 7583, - [7789] = 7561, - [7790] = 7605, - [7791] = 7585, - [7792] = 7623, - [7793] = 7646, - [7794] = 7606, - [7795] = 7574, - [7796] = 7567, - [7797] = 7588, - [7798] = 7660, - [7799] = 7576, + [7779] = 7779, + [7780] = 7780, + [7781] = 7781, + [7782] = 7705, + [7783] = 7718, + [7784] = 7703, + [7785] = 7780, + [7786] = 7692, + [7787] = 7693, + [7788] = 7788, + [7789] = 7789, + [7790] = 7705, + [7791] = 7697, + [7792] = 7695, + [7793] = 7691, + [7794] = 7706, + [7795] = 7739, + [7796] = 7796, + [7797] = 7722, + [7798] = 7798, + [7799] = 7799, [7800] = 7800, - [7801] = 7628, - [7802] = 7654, - [7803] = 7563, - [7804] = 7608, - [7805] = 7574, - [7806] = 7653, - [7807] = 7576, - [7808] = 7654, - [7809] = 7595, - [7810] = 7810, - [7811] = 7605, - [7812] = 7606, - [7813] = 7583, - [7814] = 7608, - [7815] = 7561, - [7816] = 7816, - [7817] = 7656, - [7818] = 7654, - [7819] = 7819, - [7820] = 7576, - [7821] = 7591, - [7822] = 7822, - [7823] = 7561, - [7824] = 7563, - [7825] = 7581, - [7826] = 7826, - [7827] = 7600, - [7828] = 7828, - [7829] = 7561, - [7830] = 7646, - [7831] = 7565, - [7832] = 7581, - [7833] = 7573, - [7834] = 7653, - [7835] = 7623, - [7836] = 7581, - [7837] = 7567, - [7838] = 7661, - [7839] = 7577, - [7840] = 7611, - [7841] = 7577, - [7842] = 7565, - [7843] = 7567, - [7844] = 7605, - [7845] = 7606, - [7846] = 7573, - [7847] = 7571, - [7848] = 7660, - [7849] = 7849, - [7850] = 7567, - [7851] = 7563, - [7852] = 7565, - [7853] = 7595, - [7854] = 7563, - [7855] = 7661, - [7856] = 7567, - [7857] = 7571, - [7858] = 7622, - [7859] = 7571, - [7860] = 7661, - [7861] = 7561, - [7862] = 7583, - [7863] = 7863, - [7864] = 7605, - [7865] = 7606, - [7866] = 7585, - [7867] = 7567, - [7868] = 7608, - [7869] = 7622, - [7870] = 7583, - [7871] = 7660, - [7872] = 7574, - [7873] = 7576, - [7874] = 7583, - [7875] = 7724, - [7876] = 7561, - [7877] = 7576, - [7878] = 7567, - [7879] = 7574, - [7880] = 7622, - [7881] = 7605, - [7882] = 7606, - [7883] = 7573, - [7884] = 7595, - [7885] = 7588, - [7886] = 7585, - [7887] = 7576, - [7888] = 7605, - [7889] = 7606, - [7890] = 7574, - [7891] = 7574, - [7892] = 7632, - [7893] = 7563, - [7894] = 7570, - [7895] = 7895, - [7896] = 7595, - [7897] = 7588, - [7898] = 7565, - [7899] = 7573, - [7900] = 7724, - [7901] = 7623, - [7902] = 7605, - [7903] = 7606, - [7904] = 7577, - [7905] = 7724, - [7906] = 7724, - [7907] = 7724, - [7908] = 7908, - [7909] = 7576, - [7910] = 7724, - [7911] = 7724, - [7912] = 7724, - [7913] = 7724, - [7914] = 7724, - [7915] = 7724, - [7916] = 7724, - [7917] = 7724, - [7918] = 7724, - [7919] = 7724, - [7920] = 7724, - [7921] = 7583, - [7922] = 7600, - [7923] = 7923, - [7924] = 7924, - [7925] = 7925, - [7926] = 7926, - [7927] = 7927, - [7928] = 7928, - [7929] = 7929, - [7930] = 7930, - [7931] = 7931, - [7932] = 5771, - [7933] = 7933, - [7934] = 7934, - [7935] = 7935, - [7936] = 7936, + [7801] = 7766, + [7802] = 7704, + [7803] = 7730, + [7804] = 7719, + [7805] = 7718, + [7806] = 7702, + [7807] = 7722, + [7808] = 7808, + [7809] = 7809, + [7810] = 7727, + [7811] = 7780, + [7812] = 7812, + [7813] = 7692, + [7814] = 7693, + [7815] = 7694, + [7816] = 7707, + [7817] = 7703, + [7818] = 7701, + [7819] = 7695, + [7820] = 7703, + [7821] = 7704, + [7822] = 7722, + [7823] = 7823, + [7824] = 7691, + [7825] = 7825, + [7826] = 7709, + [7827] = 7711, + [7828] = 7711, + [7829] = 7706, + [7830] = 7722, + [7831] = 7714, + [7832] = 7714, + [7833] = 7714, + [7834] = 7706, + [7835] = 7705, + [7836] = 7788, + [7837] = 7705, + [7838] = 7719, + [7839] = 7697, + [7840] = 7796, + [7841] = 7706, + [7842] = 7842, + [7843] = 7798, + [7844] = 7800, + [7845] = 7766, + [7846] = 7846, + [7847] = 7695, + [7848] = 7722, + [7849] = 7719, + [7850] = 7722, + [7851] = 7808, + [7852] = 7800, + [7853] = 7809, + [7854] = 7727, + [7855] = 7730, + [7856] = 7812, + [7857] = 7691, + [7858] = 7694, + [7859] = 7695, + [7860] = 7706, + [7861] = 7788, + [7862] = 7697, + [7863] = 7766, + [7864] = 7730, + [7865] = 7798, + [7866] = 7800, + [7867] = 7867, + [7868] = 7695, + [7869] = 7808, + [7870] = 7809, + [7871] = 7871, + [7872] = 7712, + [7873] = 7812, + [7874] = 7708, + [7875] = 7875, + [7876] = 7842, + [7877] = 7694, + [7878] = 7727, + [7879] = 7796, + [7880] = 7880, + [7881] = 7780, + [7882] = 7766, + [7883] = 7707, + [7884] = 7706, + [7885] = 7692, + [7886] = 7693, + [7887] = 7697, + [7888] = 7798, + [7889] = 7809, + [7890] = 7812, + [7891] = 7704, + [7892] = 7694, + [7893] = 7706, + [7894] = 7712, + [7895] = 7722, + [7896] = 7711, + [7897] = 7697, + [7898] = 7798, + [7899] = 7692, + [7900] = 7706, + [7901] = 7809, + [7902] = 7902, + [7903] = 7903, + [7904] = 7718, + [7905] = 7809, + [7906] = 7780, + [7907] = 7812, + [7908] = 7693, + [7909] = 7691, + [7910] = 7910, + [7911] = 7796, + [7912] = 7722, + [7913] = 7767, + [7914] = 7706, + [7915] = 7697, + [7916] = 7916, + [7917] = 7798, + [7918] = 7918, + [7919] = 7809, + [7920] = 7712, + [7921] = 7712, + [7922] = 7798, + [7923] = 7702, + [7924] = 7708, + [7925] = 7798, + [7926] = 7767, + [7927] = 7808, + [7928] = 7702, + [7929] = 7718, + [7930] = 7727, + [7931] = 7692, + [7932] = 7693, + [7933] = 7800, + [7934] = 7703, + [7935] = 7788, + [7936] = 7705, [7937] = 7937, [7938] = 7938, [7939] = 7939, - [7940] = 7940, - [7941] = 7941, - [7942] = 7942, - [7943] = 7943, - [7944] = 7944, - [7945] = 7938, - [7946] = 7942, - [7947] = 7947, - [7948] = 7925, - [7949] = 7949, - [7950] = 7950, - [7951] = 7951, - [7952] = 7947, - [7953] = 7949, + [7940] = 7697, + [7941] = 7703, + [7942] = 7812, + [7943] = 7703, + [7944] = 7704, + [7945] = 7704, + [7946] = 7946, + [7947] = 7867, + [7948] = 7706, + [7949] = 7709, + [7950] = 7711, + [7951] = 7714, + [7952] = 7722, + [7953] = 7739, [7954] = 7954, - [7955] = 7955, - [7956] = 7956, - [7957] = 7941, - [7958] = 7958, - [7959] = 7959, + [7955] = 7719, + [7956] = 7703, + [7957] = 7798, + [7958] = 7695, + [7959] = 7704, [7960] = 7960, - [7961] = 7961, - [7962] = 7962, - [7963] = 7963, - [7964] = 7964, - [7965] = 7965, - [7966] = 7966, - [7967] = 7967, - [7968] = 7968, + [7961] = 7730, + [7962] = 7718, + [7963] = 7800, + [7964] = 7780, + [7965] = 7693, + [7966] = 7708, + [7967] = 7766, + [7968] = 7691, [7969] = 7969, - [7970] = 7970, - [7971] = 7971, - [7972] = 7972, - [7973] = 7942, - [7974] = 7947, - [7975] = 7975, - [7976] = 7976, - [7977] = 7977, - [7978] = 7949, - [7979] = 7979, + [7970] = 7708, + [7971] = 7709, + [7972] = 7798, + [7973] = 7696, + [7974] = 7796, + [7975] = 7712, + [7976] = 7692, + [7977] = 7693, + [7978] = 7767, + [7979] = 7714, [7980] = 7980, - [7981] = 7964, - [7982] = 7982, - [7983] = 7931, - [7984] = 7984, - [7985] = 7985, - [7986] = 7986, - [7987] = 7987, - [7988] = 7988, - [7989] = 7929, - [7990] = 7987, - [7991] = 7987, - [7992] = 7933, - [7993] = 7993, - [7994] = 7994, - [7995] = 7995, - [7996] = 7996, - [7997] = 7997, - [7998] = 7988, - [7999] = 7956, - [8000] = 7929, - [8001] = 8001, - [8002] = 8002, - [8003] = 8003, - [8004] = 8004, - [8005] = 8005, - [8006] = 7963, - [8007] = 7949, - [8008] = 8008, - [8009] = 7994, - [8010] = 8008, - [8011] = 7931, - [8012] = 8012, - [8013] = 8013, - [8014] = 7942, - [8015] = 8015, + [7981] = 7711, + [7982] = 7727, + [7983] = 7796, + [7984] = 7706, + [7985] = 7714, + [7986] = 7739, + [7987] = 7722, + [7988] = 7719, + [7989] = 7989, + [7990] = 7692, + [7991] = 7727, + [7992] = 7992, + [7993] = 7720, + [7994] = 7693, + [7995] = 7691, + [7996] = 7712, + [7997] = 7695, + [7998] = 7998, + [7999] = 7999, + [8000] = 7718, + [8001] = 7719, + [8002] = 7780, + [8003] = 7720, + [8004] = 7691, + [8005] = 7875, + [8006] = 7796, + [8007] = 7722, + [8008] = 7694, + [8009] = 7712, + [8010] = 7703, + [8011] = 7692, + [8012] = 7693, + [8013] = 7714, + [8014] = 7808, + [8015] = 7788, [8016] = 8016, - [8017] = 8017, - [8018] = 7994, - [8019] = 8019, - [8020] = 8015, - [8021] = 8021, - [8022] = 8022, + [8017] = 7709, + [8018] = 7809, + [8019] = 7727, + [8020] = 8020, + [8021] = 7692, + [8022] = 7693, [8023] = 8023, [8024] = 8024, - [8025] = 8025, - [8026] = 7996, - [8027] = 8027, - [8028] = 8028, - [8029] = 8029, - [8030] = 8030, - [8031] = 5673, - [8032] = 8032, - [8033] = 7931, - [8034] = 7976, + [8025] = 7867, + [8026] = 7812, + [8027] = 7867, + [8028] = 7711, + [8029] = 7701, + [8030] = 7727, + [8031] = 7714, + [8032] = 7875, + [8033] = 8033, + [8034] = 8034, [8035] = 8035, - [8036] = 8036, - [8037] = 8037, - [8038] = 8038, - [8039] = 8012, - [8040] = 7993, - [8041] = 8037, - [8042] = 8032, - [8043] = 8043, - [8044] = 8027, - [8045] = 8045, - [8046] = 7933, - [8047] = 8047, - [8048] = 7965, - [8049] = 8049, - [8050] = 8050, - [8051] = 8051, - [8052] = 7976, + [8036] = 7695, + [8037] = 7875, + [8038] = 7875, + [8039] = 7875, + [8040] = 7712, + [8041] = 7875, + [8042] = 7875, + [8043] = 7875, + [8044] = 7875, + [8045] = 7875, + [8046] = 7875, + [8047] = 7875, + [8048] = 7875, + [8049] = 7875, + [8050] = 7875, + [8051] = 7875, + [8052] = 7703, [8053] = 8053, [8054] = 8054, [8055] = 8055, [8056] = 8056, - [8057] = 8023, + [8057] = 8057, [8058] = 8058, - [8059] = 8025, - [8060] = 7987, - [8061] = 7924, - [8062] = 7925, - [8063] = 7933, - [8064] = 7996, + [8059] = 8059, + [8060] = 8060, + [8061] = 8061, + [8062] = 8062, + [8063] = 8063, + [8064] = 5754, [8065] = 8065, - [8066] = 7960, - [8067] = 7984, - [8068] = 8029, + [8066] = 8066, + [8067] = 8067, + [8068] = 8068, [8069] = 8069, - [8070] = 8012, - [8071] = 7961, + [8070] = 8070, + [8071] = 8071, [8072] = 8072, - [8073] = 7944, - [8074] = 7976, + [8073] = 8073, + [8074] = 8074, [8075] = 8075, - [8076] = 7931, - [8077] = 7964, - [8078] = 7954, - [8079] = 7955, - [8080] = 8080, - [8081] = 8080, - [8082] = 7993, + [8076] = 8076, + [8077] = 8060, + [8078] = 8078, + [8079] = 8065, + [8080] = 8066, + [8081] = 8081, + [8082] = 8082, [8083] = 8083, [8084] = 8084, - [8085] = 7963, - [8086] = 7928, - [8087] = 8087, - [8088] = 8047, + [8085] = 8085, + [8086] = 8086, + [8087] = 8070, + [8088] = 8088, [8089] = 8089, - [8090] = 7987, - [8091] = 7987, - [8092] = 7933, - [8093] = 5731, - [8094] = 7935, - [8095] = 8004, - [8096] = 7967, - [8097] = 8008, - [8098] = 7964, - [8099] = 8032, + [8090] = 8056, + [8091] = 8091, + [8092] = 8091, + [8093] = 8093, + [8094] = 8055, + [8095] = 8095, + [8096] = 8096, + [8097] = 8097, + [8098] = 8055, + [8099] = 8099, [8100] = 8100, - [8101] = 8015, + [8101] = 8100, [8102] = 8102, - [8103] = 7942, - [8104] = 8027, - [8105] = 7947, - [8106] = 8021, - [8107] = 8058, + [8103] = 8103, + [8104] = 8104, + [8105] = 8105, + [8106] = 8104, + [8107] = 8107, [8108] = 8108, [8109] = 8109, [8110] = 8110, [8111] = 8111, - [8112] = 7956, - [8113] = 8113, - [8114] = 7969, - [8115] = 7993, + [8112] = 8112, + [8113] = 8061, + [8114] = 8082, + [8115] = 8115, [8116] = 8116, - [8117] = 7971, - [8118] = 8003, - [8119] = 8119, - [8120] = 8120, - [8121] = 8043, - [8122] = 8008, - [8123] = 8123, - [8124] = 7942, - [8125] = 8080, + [8117] = 8117, + [8118] = 8118, + [8119] = 8054, + [8120] = 8056, + [8121] = 8075, + [8122] = 8110, + [8123] = 8056, + [8124] = 8082, + [8125] = 8125, [8126] = 8126, - [8127] = 7949, - [8128] = 7987, - [8129] = 7987, - [8130] = 8055, - [8131] = 7928, - [8132] = 7925, - [8133] = 7933, - [8134] = 7933, - [8135] = 7924, - [8136] = 7944, - [8137] = 7964, + [8127] = 8127, + [8128] = 8060, + [8129] = 8129, + [8130] = 8130, + [8131] = 8065, + [8132] = 8066, + [8133] = 8133, + [8134] = 8127, + [8135] = 8135, + [8136] = 8136, + [8137] = 8111, [8138] = 8138, - [8139] = 7938, - [8140] = 8053, - [8141] = 7975, + [8139] = 8139, + [8140] = 8140, + [8141] = 8141, [8142] = 8142, - [8143] = 7975, - [8144] = 8053, - [8145] = 7933, - [8146] = 7944, + [8143] = 8143, + [8144] = 8144, + [8145] = 8145, + [8146] = 8082, [8147] = 8147, - [8148] = 8148, + [8148] = 8130, [8149] = 8149, - [8150] = 7975, - [8151] = 7954, - [8152] = 7955, - [8153] = 8012, - [8154] = 8004, + [8150] = 8150, + [8151] = 8133, + [8152] = 8152, + [8153] = 8153, + [8154] = 8136, [8155] = 8155, [8156] = 8156, [8157] = 8157, - [8158] = 7933, - [8159] = 7976, - [8160] = 8160, - [8161] = 8021, - [8162] = 8023, - [8163] = 8023, - [8164] = 8025, + [8158] = 8142, + [8159] = 8095, + [8160] = 8111, + [8161] = 8161, + [8162] = 8110, + [8163] = 8163, + [8164] = 8164, [8165] = 8165, - [8166] = 8108, - [8167] = 8025, - [8168] = 7996, + [8166] = 8166, + [8167] = 8167, + [8168] = 8168, [8169] = 8169, - [8170] = 8170, + [8170] = 8143, [8171] = 8108, - [8172] = 7954, - [8173] = 8173, - [8174] = 8174, - [8175] = 8043, - [8176] = 8080, - [8177] = 1722, - [8178] = 8178, - [8179] = 8179, - [8180] = 8023, - [8181] = 8181, - [8182] = 7955, - [8183] = 8055, - [8184] = 7996, - [8185] = 8080, + [8172] = 8172, + [8173] = 8059, + [8174] = 8150, + [8175] = 8175, + [8176] = 8116, + [8177] = 8110, + [8178] = 8084, + [8179] = 8086, + [8180] = 8104, + [8181] = 8091, + [8182] = 8111, + [8183] = 8183, + [8184] = 8056, + [8185] = 8185, [8186] = 8186, - [8187] = 8029, - [8188] = 7924, - [8189] = 8189, + [8187] = 8107, + [8188] = 8058, + [8189] = 8097, [8190] = 8190, - [8191] = 8054, - [8192] = 8192, - [8193] = 8055, - [8194] = 8194, - [8195] = 8047, + [8191] = 8191, + [8192] = 8075, + [8193] = 8068, + [8194] = 8069, + [8195] = 8056, [8196] = 8196, - [8197] = 7965, - [8198] = 8198, - [8199] = 7944, - [8200] = 7949, - [8201] = 7987, + [8197] = 8126, + [8198] = 8149, + [8199] = 8199, + [8200] = 8136, + [8201] = 8201, [8202] = 8202, - [8203] = 8203, - [8204] = 7954, - [8205] = 7955, + [8203] = 8063, + [8204] = 8204, + [8205] = 8089, [8206] = 8206, - [8207] = 8004, - [8208] = 8208, - [8209] = 6859, - [8210] = 7987, - [8211] = 7933, - [8212] = 7988, + [8207] = 8072, + [8208] = 8140, + [8209] = 8059, + [8210] = 8118, + [8211] = 8211, + [8212] = 8212, [8213] = 8213, - [8214] = 8021, + [8214] = 8104, [8215] = 8215, - [8216] = 8206, + [8216] = 8129, [8217] = 8217, - [8218] = 7975, - [8219] = 7926, + [8218] = 8218, + [8219] = 8213, [8220] = 8220, - [8221] = 8221, - [8222] = 8222, - [8223] = 8119, - [8224] = 7988, - [8225] = 8049, - [8226] = 8226, - [8227] = 8043, - [8228] = 7936, + [8221] = 8135, + [8222] = 8115, + [8223] = 8223, + [8224] = 8061, + [8225] = 8225, + [8226] = 8059, + [8227] = 8089, + [8228] = 8228, [8229] = 8229, - [8230] = 8221, + [8230] = 5866, [8231] = 8231, - [8232] = 8119, - [8233] = 7934, - [8234] = 8027, - [8235] = 8235, - [8236] = 8226, - [8237] = 7924, - [8238] = 8012, - [8239] = 8239, - [8240] = 7936, - [8241] = 8087, - [8242] = 8054, + [8232] = 8091, + [8233] = 7005, + [8234] = 8206, + [8235] = 8056, + [8236] = 8157, + [8237] = 8215, + [8238] = 8074, + [8239] = 8220, + [8240] = 8086, + [8241] = 8111, + [8242] = 8056, [8243] = 8243, - [8244] = 8032, - [8245] = 7931, - [8246] = 7982, + [8244] = 8244, + [8245] = 8169, + [8246] = 8088, [8247] = 8247, - [8248] = 8047, - [8249] = 8029, - [8250] = 7954, - [8251] = 7955, - [8252] = 7993, - [8253] = 7944, - [8254] = 8254, - [8255] = 8036, - [8256] = 8256, - [8257] = 8257, - [8258] = 8003, - [8259] = 8043, + [8248] = 8248, + [8249] = 8249, + [8250] = 8175, + [8251] = 8251, + [8252] = 8153, + [8253] = 8111, + [8254] = 8251, + [8255] = 8070, + [8256] = 8116, + [8257] = 8059, + [8258] = 8067, + [8259] = 8259, [8260] = 8260, - [8261] = 8261, + [8261] = 8058, [8262] = 8262, - [8263] = 7924, - [8264] = 8264, - [8265] = 8008, - [8266] = 7955, - [8267] = 8267, - [8268] = 7931, - [8269] = 8016, - [8270] = 8056, - [8271] = 8271, - [8272] = 8043, - [8273] = 8058, - [8274] = 8274, - [8275] = 7924, - [8276] = 8016, - [8277] = 7955, - [8278] = 8278, - [8279] = 8279, - [8280] = 8226, - [8281] = 8235, - [8282] = 8043, - [8283] = 7924, - [8284] = 7955, - [8285] = 8053, - [8286] = 7926, - [8287] = 7924, - [8288] = 7955, - [8289] = 8004, - [8290] = 7987, - [8291] = 7924, - [8292] = 7955, - [8293] = 7924, - [8294] = 7955, - [8295] = 7924, - [8296] = 7955, - [8297] = 7924, - [8298] = 7955, - [8299] = 7924, - [8300] = 7955, - [8301] = 7924, - [8302] = 7955, - [8303] = 8005, - [8304] = 8054, - [8305] = 8003, + [8263] = 8167, + [8264] = 8083, + [8265] = 8125, + [8266] = 8068, + [8267] = 8069, + [8268] = 8268, + [8269] = 8126, + [8270] = 8270, + [8271] = 8196, + [8272] = 8272, + [8273] = 8273, + [8274] = 8086, + [8275] = 8111, + [8276] = 8251, + [8277] = 8110, + [8278] = 8117, + [8279] = 8118, + [8280] = 8083, + [8281] = 8153, + [8282] = 8282, + [8283] = 8283, + [8284] = 8284, + [8285] = 8130, + [8286] = 8135, + [8287] = 8133, + [8288] = 8142, + [8289] = 8143, + [8290] = 8273, + [8291] = 8150, + [8292] = 8292, + [8293] = 8293, + [8294] = 8294, + [8295] = 8213, + [8296] = 8109, + [8297] = 8117, + [8298] = 8298, + [8299] = 8136, + [8300] = 8157, + [8301] = 8167, + [8302] = 8168, + [8303] = 8251, + [8304] = 8304, + [8305] = 8305, [8306] = 8306, [8307] = 8307, - [8308] = 8279, - [8309] = 7977, - [8310] = 8310, - [8311] = 8311, - [8312] = 8312, - [8313] = 7972, - [8314] = 7928, + [8308] = 8169, + [8309] = 8309, + [8310] = 8217, + [8311] = 8083, + [8312] = 8055, + [8313] = 8175, + [8314] = 8058, [8315] = 8315, - [8316] = 7951, - [8317] = 7988, + [8316] = 8056, + [8317] = 8111, [8318] = 8318, - [8319] = 8221, - [8320] = 7929, - [8321] = 7933, - [8322] = 8108, - [8323] = 8045, - [8324] = 7938, - [8325] = 7964, - [8326] = 7923, - [8327] = 8327, - [8328] = 7942, - [8329] = 8329, - [8330] = 8330, - [8331] = 8331, - [8332] = 7947, - [8333] = 8123, - [8334] = 7975, - [8335] = 7934, + [8319] = 8319, + [8320] = 8320, + [8321] = 8321, + [8322] = 8056, + [8323] = 8157, + [8324] = 8058, + [8325] = 8196, + [8326] = 8063, + [8327] = 8249, + [8328] = 8061, + [8329] = 8068, + [8330] = 8069, + [8331] = 8270, + [8332] = 8118, + [8333] = 8104, + [8334] = 8083, + [8335] = 8335, [8336] = 8336, - [8337] = 8036, + [8337] = 8153, [8338] = 8338, - [8339] = 7970, + [8339] = 8135, [8340] = 8340, - [8341] = 7982, - [8342] = 8056, - [8343] = 8315, - [8344] = 7984, - [8345] = 8345, - [8346] = 8047, - [8347] = 7963, - [8348] = 8058, - [8349] = 8349, - [8350] = 8016, - [8351] = 7965, - [8352] = 8352, + [8341] = 8341, + [8342] = 8342, + [8343] = 8217, + [8344] = 8344, + [8345] = 8228, + [8346] = 8100, + [8347] = 8130, + [8348] = 8206, + [8349] = 8074, + [8350] = 8110, + [8351] = 8351, + [8352] = 8157, [8353] = 8353, - [8354] = 7982, - [8355] = 7994, - [8356] = 8356, - [8357] = 7988, - [8358] = 7958, - [8359] = 8032, - [8360] = 8025, - [8361] = 8361, - [8362] = 8043, - [8363] = 8363, - [8364] = 7942, - [8365] = 7984, - [8366] = 7931, - [8367] = 7949, - [8368] = 8174, + [8354] = 8133, + [8355] = 8355, + [8356] = 8142, + [8357] = 1750, + [8358] = 8143, + [8359] = 8359, + [8360] = 8126, + [8361] = 8130, + [8362] = 8175, + [8363] = 8133, + [8364] = 8133, + [8365] = 8142, + [8366] = 8111, + [8367] = 8056, + [8368] = 8143, [8369] = 8369, - [8370] = 5705, - [8371] = 8015, - [8372] = 8235, + [8370] = 8142, + [8371] = 8058, + [8372] = 8115, [8373] = 8373, [8374] = 8374, - [8375] = 7960, - [8376] = 7988, - [8377] = 7976, - [8378] = 8089, - [8379] = 8356, - [8380] = 8206, - [8381] = 7994, - [8382] = 7994, - [8383] = 8119, - [8384] = 7938, - [8385] = 8036, - [8386] = 8013, + [8375] = 8068, + [8376] = 8069, + [8377] = 8100, + [8378] = 8097, + [8379] = 8379, + [8380] = 8380, + [8381] = 8135, + [8382] = 8143, + [8383] = 8213, + [8384] = 8091, + [8385] = 8385, + [8386] = 8130, [8387] = 8387, - [8388] = 8388, - [8389] = 8389, - [8390] = 8221, - [8391] = 8391, - [8392] = 8027, - [8393] = 7961, - [8394] = 8222, - [8395] = 8395, - [8396] = 8119, - [8397] = 8174, - [8398] = 8021, - [8399] = 8023, - [8400] = 7924, - [8401] = 8025, - [8402] = 7987, - [8403] = 7996, - [8404] = 8005, - [8405] = 8206, - [8406] = 8029, - [8407] = 7934, - [8408] = 8003, - [8409] = 8215, - [8410] = 8226, - [8411] = 7931, - [8412] = 7931, - [8413] = 8221, - [8414] = 8119, - [8415] = 7936, - [8416] = 7987, - [8417] = 8306, - [8418] = 8226, - [8419] = 7936, - [8420] = 7933, - [8421] = 8243, - [8422] = 8422, - [8423] = 8032, - [8424] = 8080, - [8425] = 8425, - [8426] = 8110, - [8427] = 8310, - [8428] = 7954, - [8429] = 8311, - [8430] = 8045, - [8431] = 8431, - [8432] = 8045, - [8433] = 8433, - [8434] = 8221, - [8435] = 7925, - [8436] = 8056, - [8437] = 8437, - [8438] = 8012, - [8439] = 8012, - [8440] = 7976, + [8388] = 8157, + [8389] = 8133, + [8390] = 8172, + [8391] = 8086, + [8392] = 8175, + [8393] = 8393, + [8394] = 8394, + [8395] = 8069, + [8396] = 8063, + [8397] = 8142, + [8398] = 8135, + [8399] = 8143, + [8400] = 8400, + [8401] = 8251, + [8402] = 8402, + [8403] = 8072, + [8404] = 8404, + [8405] = 8157, + [8406] = 8088, + [8407] = 8084, + [8408] = 8175, + [8409] = 8118, + [8410] = 8069, + [8411] = 8168, + [8412] = 8196, + [8413] = 8129, + [8414] = 8414, + [8415] = 8157, + [8416] = 8175, + [8417] = 8069, + [8418] = 8418, + [8419] = 8419, + [8420] = 8175, + [8421] = 8069, + [8422] = 8103, + [8423] = 8260, + [8424] = 8175, + [8425] = 8069, + [8426] = 8175, + [8427] = 8069, + [8428] = 8175, + [8429] = 8069, + [8430] = 8175, + [8431] = 8069, + [8432] = 8175, + [8433] = 8069, + [8434] = 8175, + [8435] = 8069, + [8436] = 8436, + [8437] = 8109, + [8438] = 8088, + [8439] = 8439, + [8440] = 8248, [8441] = 8441, - [8442] = 8235, - [8443] = 7955, - [8444] = 8444, + [8442] = 8442, + [8443] = 8443, + [8444] = 8083, [8445] = 8445, - [8446] = 7994, - [8447] = 8110, - [8448] = 8331, - [8449] = 8215, - [8450] = 8311, - [8451] = 8451, - [8452] = 7963, - [8453] = 8453, + [8446] = 8282, + [8447] = 8447, + [8448] = 8102, + [8449] = 8260, + [8450] = 8060, + [8451] = 8065, + [8452] = 8130, + [8453] = 8066, [8454] = 8454, - [8455] = 7993, - [8456] = 8047, - [8457] = 8235, - [8458] = 7987, - [8459] = 8459, - [8460] = 8174, - [8461] = 7963, - [8462] = 8340, - [8463] = 8463, - [8464] = 8036, - [8465] = 1725, - [8466] = 8047, - [8467] = 8027, - [8468] = 8110, - [8469] = 8222, - [8470] = 7925, - [8471] = 8311, + [8455] = 8082, + [8456] = 8298, + [8457] = 8457, + [8458] = 8056, + [8459] = 8060, + [8460] = 8454, + [8461] = 8304, + [8462] = 8055, + [8463] = 8104, + [8464] = 8464, + [8465] = 8465, + [8466] = 8466, + [8467] = 8467, + [8468] = 8468, + [8469] = 8298, + [8470] = 8470, + [8471] = 8061, [8472] = 8472, - [8473] = 7993, - [8474] = 8003, - [8475] = 8003, - [8476] = 8476, - [8477] = 8329, - [8478] = 8478, - [8479] = 8056, - [8480] = 8480, - [8481] = 7987, - [8482] = 8058, - [8483] = 8441, - [8484] = 7988, - [8485] = 8012, - [8486] = 8353, + [8473] = 8473, + [8474] = 8474, + [8475] = 8260, + [8476] = 8054, + [8477] = 8097, + [8478] = 8065, + [8479] = 8129, + [8480] = 8066, + [8481] = 8108, + [8482] = 8061, + [8483] = 8483, + [8484] = 8484, + [8485] = 8485, + [8486] = 8486, [8487] = 8487, [8488] = 8488, - [8489] = 8489, - [8490] = 7937, - [8491] = 7951, - [8492] = 8029, - [8493] = 8493, - [8494] = 7928, - [8495] = 7933, - [8496] = 7964, - [8497] = 7942, - [8498] = 7975, - [8499] = 8004, - [8500] = 8005, - [8501] = 8087, + [8489] = 8202, + [8490] = 8304, + [8491] = 8320, + [8492] = 8060, + [8493] = 8065, + [8494] = 8066, + [8495] = 8495, + [8496] = 8082, + [8497] = 8497, + [8498] = 8498, + [8499] = 8084, + [8500] = 8084, + [8501] = 8501, [8502] = 8502, - [8503] = 8008, - [8504] = 8504, - [8505] = 8505, - [8506] = 8206, + [8503] = 8336, + [8504] = 8135, + [8505] = 8454, + [8506] = 8089, [8507] = 8507, - [8508] = 8306, - [8509] = 7977, - [8510] = 8310, - [8511] = 7972, - [8512] = 8512, - [8513] = 8315, + [8508] = 8228, + [8509] = 8082, + [8510] = 8510, + [8511] = 8511, + [8512] = 8126, + [8513] = 8169, [8514] = 8514, - [8515] = 8221, - [8516] = 8516, - [8517] = 8108, - [8518] = 8518, - [8519] = 8331, - [8520] = 8520, - [8521] = 8123, - [8522] = 8522, + [8515] = 8515, + [8516] = 8248, + [8517] = 5789, + [8518] = 8298, + [8519] = 8355, + [8520] = 8100, + [8521] = 8521, + [8522] = 8088, [8523] = 8523, - [8524] = 8524, - [8525] = 7970, - [8526] = 8340, - [8527] = 7984, - [8528] = 8528, - [8529] = 7924, - [8530] = 7965, - [8531] = 7988, - [8532] = 7958, - [8533] = 7937, - [8534] = 7937, - [8535] = 8089, - [8536] = 8013, - [8537] = 7951, - [8538] = 7951, - [8539] = 8306, - [8540] = 7977, - [8541] = 7972, - [8542] = 8169, - [8543] = 8315, - [8544] = 7949, + [8524] = 8130, + [8525] = 8153, + [8526] = 8104, + [8527] = 8084, + [8528] = 8108, + [8529] = 8172, + [8530] = 8116, + [8531] = 8531, + [8532] = 8117, + [8533] = 8466, + [8534] = 8534, + [8535] = 8454, + [8536] = 8228, + [8537] = 8215, + [8538] = 8127, + [8539] = 8127, + [8540] = 8540, + [8541] = 8111, + [8542] = 8095, + [8543] = 8089, + [8544] = 8212, [8545] = 8545, - [8546] = 8331, - [8547] = 8029, - [8548] = 8123, - [8549] = 8032, - [8550] = 8221, - [8551] = 7970, - [8552] = 8340, - [8553] = 8119, - [8554] = 7958, - [8555] = 8226, - [8556] = 7936, - [8557] = 8089, - [8558] = 8013, - [8559] = 8055, - [8560] = 8306, - [8561] = 7977, - [8562] = 7972, - [8563] = 8563, - [8564] = 8315, - [8565] = 8015, - [8566] = 7926, - [8567] = 8331, - [8568] = 8123, - [8569] = 8243, - [8570] = 8087, - [8571] = 7970, - [8572] = 8340, - [8573] = 8573, - [8574] = 7958, - [8575] = 7988, - [8576] = 8463, - [8577] = 8089, - [8578] = 8013, - [8579] = 7928, - [8580] = 8306, - [8581] = 7977, - [8582] = 7972, + [8546] = 8546, + [8547] = 8063, + [8548] = 8228, + [8549] = 8075, + [8550] = 8097, + [8551] = 8095, + [8552] = 8111, + [8553] = 8118, + [8554] = 8554, + [8555] = 8089, + [8556] = 8220, + [8557] = 8059, + [8558] = 8304, + [8559] = 8115, + [8560] = 8086, + [8561] = 8244, + [8562] = 8091, + [8563] = 8117, + [8564] = 8247, + [8565] = 8118, + [8566] = 8072, + [8567] = 8220, + [8568] = 8568, + [8569] = 8569, + [8570] = 8111, + [8571] = 8056, + [8572] = 8572, + [8573] = 8126, + [8574] = 8054, + [8575] = 8575, + [8576] = 8136, + [8577] = 8228, + [8578] = 8443, + [8579] = 8149, + [8580] = 8067, + [8581] = 5829, + [8582] = 8103, [8583] = 8583, - [8584] = 8315, - [8585] = 8585, - [8586] = 8087, - [8587] = 8123, - [8588] = 8221, - [8589] = 8478, - [8590] = 7970, - [8591] = 8340, - [8592] = 8021, - [8593] = 7958, + [8584] = 8063, + [8585] = 8165, + [8586] = 8273, + [8587] = 8587, + [8588] = 8588, + [8589] = 8589, + [8590] = 8590, + [8591] = 8244, + [8592] = 8088, + [8593] = 8248, [8594] = 8594, - [8595] = 8478, - [8596] = 8089, - [8597] = 8013, - [8598] = 8598, - [8599] = 8306, - [8600] = 7977, + [8595] = 8100, + [8596] = 8249, + [8597] = 8097, + [8598] = 8298, + [8599] = 8217, + [8600] = 8600, [8601] = 8601, - [8602] = 8315, - [8603] = 8603, - [8604] = 8604, - [8605] = 8119, - [8606] = 7988, - [8607] = 7970, - [8608] = 8340, - [8609] = 8609, - [8610] = 8226, - [8611] = 7969, - [8612] = 8089, - [8613] = 8613, - [8614] = 8306, - [8615] = 7977, - [8616] = 8315, - [8617] = 8037, - [8618] = 8340, - [8619] = 8619, - [8620] = 8221, - [8621] = 8089, - [8622] = 8206, - [8623] = 8306, - [8624] = 7977, - [8625] = 8315, - [8626] = 8110, - [8627] = 8340, - [8628] = 7936, - [8629] = 8089, - [8630] = 8306, - [8631] = 7977, - [8632] = 8315, - [8633] = 8340, - [8634] = 8089, - [8635] = 7977, - [8636] = 8340, - [8637] = 8089, - [8638] = 7977, - [8639] = 8340, - [8640] = 8089, - [8641] = 8340, - [8642] = 8089, - [8643] = 8340, - [8644] = 8089, - [8645] = 8340, - [8646] = 8089, - [8647] = 8340, - [8648] = 8089, - [8649] = 8340, - [8650] = 8089, - [8651] = 7963, - [8652] = 8652, - [8653] = 8310, - [8654] = 8654, + [8602] = 8602, + [8603] = 8084, + [8604] = 8196, + [8605] = 8336, + [8606] = 8115, + [8607] = 8304, + [8608] = 8534, + [8609] = 8088, + [8610] = 8129, + [8611] = 8304, + [8612] = 8111, + [8613] = 8127, + [8614] = 8614, + [8615] = 8150, + [8616] = 8616, + [8617] = 8304, + [8618] = 8068, + [8619] = 8104, + [8620] = 8620, + [8621] = 8213, + [8622] = 8622, + [8623] = 8135, + [8624] = 8111, + [8625] = 8108, + [8626] = 8260, + [8627] = 8157, + [8628] = 8110, + [8629] = 8140, + [8630] = 8454, + [8631] = 8190, + [8632] = 8130, + [8633] = 8133, + [8634] = 8142, + [8635] = 8143, + [8636] = 8414, + [8637] = 8100, + [8638] = 8069, + [8639] = 1748, + [8640] = 8175, + [8641] = 8439, + [8642] = 8442, + [8643] = 8443, + [8644] = 8282, + [8645] = 8116, + [8646] = 8102, + [8647] = 8130, + [8648] = 8130, + [8649] = 8251, + [8650] = 8056, + [8651] = 8651, + [8652] = 8464, + [8653] = 8653, + [8654] = 8466, [8655] = 8655, - [8656] = 7928, - [8657] = 8657, - [8658] = 8658, - [8659] = 8659, - [8660] = 8206, + [8656] = 8656, + [8657] = 8056, + [8658] = 8472, + [8659] = 8473, + [8660] = 8097, [8661] = 8661, [8662] = 8662, [8663] = 8663, - [8664] = 8012, - [8665] = 7984, + [8664] = 8304, + [8665] = 8320, [8666] = 8666, - [8667] = 8045, - [8668] = 7942, - [8669] = 7929, - [8670] = 8670, - [8671] = 8356, - [8672] = 8395, - [8673] = 7933, - [8674] = 8661, - [8675] = 7949, - [8676] = 7938, - [8677] = 8235, - [8678] = 8043, - [8679] = 8679, - [8680] = 7923, - [8681] = 8681, - [8682] = 8021, - [8683] = 8683, - [8684] = 8226, - [8685] = 8685, - [8686] = 7988, - [8687] = 8687, - [8688] = 8688, - [8689] = 8689, - [8690] = 8690, - [8691] = 8221, - [8692] = 7994, - [8693] = 8004, - [8694] = 8694, - [8695] = 7971, - [8696] = 8311, - [8697] = 8221, - [8698] = 7963, - [8699] = 8119, - [8700] = 8226, - [8701] = 7965, - [8702] = 8029, - [8703] = 7936, - [8704] = 7931, - [8705] = 7931, - [8706] = 8235, - [8707] = 8023, - [8708] = 8025, - [8709] = 8181, - [8710] = 7996, - [8711] = 8311, - [8712] = 7984, - [8713] = 8116, - [8714] = 8045, - [8715] = 8715, - [8716] = 7925, - [8717] = 8717, - [8718] = 7942, - [8719] = 7947, - [8720] = 8239, - [8721] = 8029, - [8722] = 7933, - [8723] = 7949, - [8724] = 8724, - [8725] = 7938, - [8726] = 8726, - [8727] = 8221, - [8728] = 7925, - [8729] = 8729, - [8730] = 8012, - [8731] = 8043, - [8732] = 8732, - [8733] = 7967, - [8734] = 7931, - [8735] = 7994, - [8736] = 7993, - [8737] = 8310, - [8738] = 8654, - [8739] = 8655, - [8740] = 7963, - [8741] = 7942, - [8742] = 7987, - [8743] = 7965, - [8744] = 8356, - [8745] = 8395, - [8746] = 8655, - [8747] = 8747, - [8748] = 7936, - [8749] = 7959, - [8750] = 8310, - [8751] = 8654, - [8752] = 8655, - [8753] = 8441, - [8754] = 8116, - [8755] = 8356, - [8756] = 8395, - [8757] = 7923, - [8758] = 8053, - [8759] = 8054, - [8760] = 8654, - [8761] = 8655, - [8762] = 8762, - [8763] = 7988, - [8764] = 8356, - [8765] = 8395, - [8766] = 7929, - [8767] = 8767, - [8768] = 8654, - [8769] = 8655, - [8770] = 8463, - [8771] = 7935, - [8772] = 8356, - [8773] = 8395, - [8774] = 8087, - [8775] = 8654, - [8776] = 8655, - [8777] = 8661, - [8778] = 8356, - [8779] = 8395, - [8780] = 7925, - [8781] = 8356, - [8782] = 8395, - [8783] = 8329, - [8784] = 8395, - [8785] = 7987, - [8786] = 8395, - [8787] = 7941, - [8788] = 8395, - [8789] = 8053, - [8790] = 8395, - [8791] = 8054, - [8792] = 8395, - [8793] = 8055, - [8794] = 8395, - [8795] = 7933, - [8796] = 8395, - [8797] = 7963, - [8798] = 8395, - [8799] = 8799, - [8800] = 8395, - [8801] = 8148, - [8802] = 8149, - [8803] = 8029, - [8804] = 8148, - [8805] = 8149, - [8806] = 7993, - [8807] = 8148, - [8808] = 8149, - [8809] = 7994, - [8810] = 8148, - [8811] = 8149, - [8812] = 8812, - [8813] = 8148, - [8814] = 8149, - [8815] = 7933, - [8816] = 8149, - [8817] = 8149, - [8818] = 8149, - [8819] = 8149, - [8820] = 8149, - [8821] = 8149, - [8822] = 8149, - [8823] = 8149, - [8824] = 8149, - [8825] = 8149, - [8826] = 8149, - [8827] = 8027, - [8828] = 8828, - [8829] = 8654, - [8830] = 8239, - [8831] = 7937, - [8832] = 8679, - [8833] = 8679, - [8834] = 8679, - [8835] = 8679, - [8836] = 8679, - [8837] = 8837, + [8667] = 8075, + [8668] = 8511, + [8669] = 8355, + [8670] = 8115, + [8671] = 8671, + [8672] = 8439, + [8673] = 8442, + [8674] = 8282, + [8675] = 8117, + [8676] = 8102, + [8677] = 8260, + [8678] = 8059, + [8679] = 8464, + [8680] = 8126, + [8681] = 8466, + [8682] = 8061, + [8683] = 8304, + [8684] = 8472, + [8685] = 8473, + [8686] = 8686, + [8687] = 8320, + [8688] = 8075, + [8689] = 8063, + [8690] = 8511, + [8691] = 8355, + [8692] = 8692, + [8693] = 8439, + [8694] = 8442, + [8695] = 8282, + [8696] = 8655, + [8697] = 8102, + [8698] = 8130, + [8699] = 8534, + [8700] = 8464, + [8701] = 8466, + [8702] = 8061, + [8703] = 8703, + [8704] = 8472, + [8705] = 8473, + [8706] = 8273, + [8707] = 8320, + [8708] = 8068, + [8709] = 8442, + [8710] = 8511, + [8711] = 8355, + [8712] = 8712, + [8713] = 8439, + [8714] = 8442, + [8715] = 8282, + [8716] = 8133, + [8717] = 8102, + [8718] = 8056, + [8719] = 8283, + [8720] = 8466, + [8721] = 8721, + [8722] = 8127, + [8723] = 8472, + [8724] = 8473, + [8725] = 8063, + [8726] = 8320, + [8727] = 8167, + [8728] = 8217, + [8729] = 8511, + [8730] = 8355, + [8731] = 8100, + [8732] = 8439, + [8733] = 8442, + [8734] = 8734, + [8735] = 8102, + [8736] = 8472, + [8737] = 8737, + [8738] = 8441, + [8739] = 8511, + [8740] = 8472, + [8741] = 8473, + [8742] = 8142, + [8743] = 8072, + [8744] = 8244, + [8745] = 8511, + [8746] = 8059, + [8747] = 8439, + [8748] = 8442, + [8749] = 8102, + [8750] = 8534, + [8751] = 8473, + [8752] = 8168, + [8753] = 8753, + [8754] = 8511, + [8755] = 8755, + [8756] = 8439, + [8757] = 8442, + [8758] = 8102, + [8759] = 8082, + [8760] = 8473, + [8761] = 8304, + [8762] = 8511, + [8763] = 8439, + [8764] = 8442, + [8765] = 8102, + [8766] = 8473, + [8767] = 8511, + [8768] = 8442, + [8769] = 8473, + [8770] = 8511, + [8771] = 8442, + [8772] = 8473, + [8773] = 8511, + [8774] = 8473, + [8775] = 8511, + [8776] = 8473, + [8777] = 8511, + [8778] = 8473, + [8779] = 8511, + [8780] = 8473, + [8781] = 8511, + [8782] = 8473, + [8783] = 8511, + [8784] = 8127, + [8785] = 8115, + [8786] = 8443, + [8787] = 8787, + [8788] = 8788, + [8789] = 8787, + [8790] = 8788, + [8791] = 8108, + [8792] = 8292, + [8793] = 8793, + [8794] = 8063, + [8795] = 8795, + [8796] = 8111, + [8797] = 8069, + [8798] = 8099, + [8799] = 8111, + [8800] = 8136, + [8801] = 8055, + [8802] = 8088, + [8803] = 8157, + [8804] = 8202, + [8805] = 8575, + [8806] = 8283, + [8807] = 8072, + [8808] = 8095, + [8809] = 8167, + [8810] = 8063, + [8811] = 8168, + [8812] = 8072, + [8813] = 8169, + [8814] = 8304, + [8815] = 8108, + [8816] = 8056, + [8817] = 8125, + [8818] = 8099, + [8819] = 8819, + [8820] = 8439, + [8821] = 8821, + [8822] = 8088, + [8823] = 8823, + [8824] = 8143, + [8825] = 8825, + [8826] = 8473, + [8827] = 8109, + [8828] = 8260, + [8829] = 8251, + [8830] = 8130, + [8831] = 8095, + [8832] = 8832, + [8833] = 8833, + [8834] = 8834, + [8835] = 8175, + [8836] = 8836, + [8837] = 8084, + [8838] = 8838, + [8839] = 8839, + [8840] = 8840, + [8841] = 8841, + [8842] = 8842, + [8843] = 8190, + [8844] = 8844, + [8845] = 8845, + [8846] = 8846, + [8847] = 8847, + [8848] = 8088, + [8849] = 8304, + [8850] = 8753, + [8851] = 8112, + [8852] = 8852, + [8853] = 8853, + [8854] = 8854, + [8855] = 8061, + [8856] = 8753, + [8857] = 8088, + [8858] = 8213, + [8859] = 8100, + [8860] = 8248, + [8861] = 8861, + [8862] = 8167, + [8863] = 8168, + [8864] = 8135, + [8865] = 8104, + [8866] = 8169, + [8867] = 8084, + [8868] = 8260, + [8869] = 8088, + [8870] = 8443, + [8871] = 8787, + [8872] = 8788, + [8873] = 8873, + [8874] = 8248, + [8875] = 8292, + [8876] = 8876, + [8877] = 8202, + [8878] = 8575, + [8879] = 8082, + [8880] = 8880, + [8881] = 8084, + [8882] = 8175, + [8883] = 8443, + [8884] = 8787, + [8885] = 8788, + [8886] = 8260, + [8887] = 8060, + [8888] = 8202, + [8889] = 8575, + [8890] = 8065, + [8891] = 8891, + [8892] = 8066, + [8893] = 8787, + [8894] = 8788, + [8895] = 8260, + [8896] = 8270, + [8897] = 8202, + [8898] = 8575, + [8899] = 8899, + [8900] = 8082, + [8901] = 8787, + [8902] = 8788, + [8903] = 8061, + [8904] = 8107, + [8905] = 8202, + [8906] = 8575, + [8907] = 8907, + [8908] = 8787, + [8909] = 8788, + [8910] = 8910, + [8911] = 8202, + [8912] = 8575, + [8913] = 8414, + [8914] = 8202, + [8915] = 8575, + [8916] = 8084, + [8917] = 8575, + [8918] = 8918, + [8919] = 8575, + [8920] = 8084, + [8921] = 8575, + [8922] = 8273, + [8923] = 8575, + [8924] = 8086, + [8925] = 8575, + [8926] = 8926, + [8927] = 8575, + [8928] = 8104, + [8929] = 8575, + [8930] = 8070, + [8931] = 8575, + [8932] = 8932, + [8933] = 8575, + [8934] = 8703, + [8935] = 8821, + [8936] = 8936, + [8937] = 8703, + [8938] = 8821, + [8939] = 8084, + [8940] = 8703, + [8941] = 8821, + [8942] = 8464, + [8943] = 8703, + [8944] = 8821, + [8945] = 8059, + [8946] = 8703, + [8947] = 8821, + [8948] = 8948, + [8949] = 8821, + [8950] = 8821, + [8951] = 8821, + [8952] = 8821, + [8953] = 8821, + [8954] = 8821, + [8955] = 8821, + [8956] = 8821, + [8957] = 8821, + [8958] = 8821, + [8959] = 8821, + [8960] = 8111, + [8961] = 8304, + [8962] = 8089, + [8963] = 8095, + [8964] = 8136, + [8965] = 8721, + [8966] = 8721, + [8967] = 8721, + [8968] = 8721, + [8969] = 8721, + [8970] = 8075, }; static TSCharacterRange sym_identifier_character_set_1[] = { @@ -14456,19 +14607,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(327); END_STATE(); case 79: - if (lookahead == '\n') SKIP(170); + if (lookahead == '\n') SKIP(220); END_STATE(); case 80: - if (lookahead == '\n') SKIP(170); + if (lookahead == '\n') SKIP(220); if (lookahead == '\r') SKIP(79); if (lookahead == 'U') ADVANCE(335); if (lookahead == 'u') ADVANCE(327); END_STATE(); case 81: - if (lookahead == '\n') SKIP(220); + if (lookahead == '\n') SKIP(170); END_STATE(); case 82: - if (lookahead == '\n') SKIP(220); + if (lookahead == '\n') SKIP(170); if (lookahead == '\r') SKIP(81); if (lookahead == 'U') ADVANCE(335); if (lookahead == 'u') ADVANCE(327); @@ -14528,22 +14679,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(327); END_STATE(); case 95: - if (lookahead == '\n') SKIP(178); + if (lookahead == '\n') SKIP(97); END_STATE(); case 96: - if (lookahead == '\n') SKIP(178); + if (lookahead == '\n') SKIP(97); if (lookahead == '\r') SKIP(95); - if (lookahead == 'U') ADVANCE(335); - if (lookahead == 'u') ADVANCE(327); END_STATE(); case 97: - if (lookahead == '\n') SKIP(99); - END_STATE(); - case 98: - if (lookahead == '\n') SKIP(99); - if (lookahead == '\r') SKIP(97); - END_STATE(); - case 99: ADVANCE_MAP( '\n', 349, '!', 273, @@ -14558,11 +14700,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '=', 274, '>', 445, ); - if (lookahead == '\\') SKIP(98); + if (lookahead == '\\') SKIP(96); if (lookahead == '^') ADVANCE(437); if (lookahead == '|') ADVANCE(436); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(99); + lookahead == ' ') SKIP(97); + END_STATE(); + case 98: + if (lookahead == '\n') SKIP(178); + END_STATE(); + case 99: + if (lookahead == '\n') SKIP(178); + if (lookahead == '\r') SKIP(98); + if (lookahead == 'U') ADVANCE(335); + if (lookahead == 'u') ADVANCE(327); END_STATE(); case 100: if (lookahead == '\n') SKIP(246); @@ -14601,13 +14752,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(327); END_STATE(); case 108: - if (lookahead == '\n') SKIP(236); - if (lookahead == '"') ADVANCE(525); - if (lookahead == '/') ADVANCE(526); - if (lookahead == '\\') ADVANCE(109); + if (lookahead == '\n') SKIP(247); + if (lookahead == '\'') ADVANCE(516); + if (lookahead == '/') ADVANCE(519); + if (lookahead == '\\') ADVANCE(518); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(529); - if (lookahead != 0) ADVANCE(530); + lookahead == ' ') ADVANCE(520); + if (lookahead != 0) ADVANCE(517); END_STATE(); case 109: if (lookahead == '\n') ADVANCE(532); @@ -14619,13 +14770,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0) ADVANCE(531); END_STATE(); case 110: - if (lookahead == '\n') SKIP(247); - if (lookahead == '\'') ADVANCE(516); - if (lookahead == '/') ADVANCE(519); - if (lookahead == '\\') ADVANCE(518); + if (lookahead == '\n') SKIP(236); + if (lookahead == '"') ADVANCE(525); + if (lookahead == '/') ADVANCE(526); + if (lookahead == '\\') ADVANCE(109); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(520); - if (lookahead != 0) ADVANCE(517); + lookahead == ' ') ADVANCE(529); + if (lookahead != 0) ADVANCE(530); END_STATE(); case 111: if (lookahead == '\n') ADVANCE(342); @@ -15244,7 +15395,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '=', 473, '>', 446, '[', 284, - '\\', 80, + '\\', 82, '^', 438, '|', 435, '~', 408, @@ -15318,7 +15469,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '.', 492, '/', 428, '0', 498, - ':', 461, + ':', 271, ';', 459, '<', 450, '=', 472, @@ -15594,7 +15745,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '0', 498, 'L', 560, 'U', 561, - '\\', 96, + '\\', 99, 'u', 562, '~', 408, ); @@ -16958,7 +17109,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 641, '?', 476, '[', 468, - '\\', 82, + '\\', 80, '^', 438, '|', 435, ); @@ -17557,7 +17708,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '/', 255, ':', 460, ';', 459, - '<', 450, '=', 472, '>', 641, '[', 468, @@ -17795,13 +17945,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 275: if (lookahead == '=') ADVANCE(447); - if (lookahead == '>') ADVANCE(276); + if (lookahead == '>') ADVANCE(457); END_STATE(); case 276: if (lookahead == '=') ADVANCE(483); END_STATE(); case 277: - if (lookahead == '>') ADVANCE(457); + if (lookahead == '>') ADVANCE(276); END_STATE(); case 278: if (lookahead == '>') ADVANCE(494); @@ -18163,7 +18313,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '.', 492, '/', 428, '0', 498, - ':', 461, + ':', 271, ';', 459, '<', 450, '=', 472, @@ -22110,7 +22260,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [39] = {.lex_state = 339}, [40] = {.lex_state = 339}, [41] = {.lex_state = 339}, - [42] = {.lex_state = 339}, + [42] = {.lex_state = 174}, [43] = {.lex_state = 339}, [44] = {.lex_state = 339}, [45] = {.lex_state = 339}, @@ -22119,7 +22269,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [48] = {.lex_state = 339}, [49] = {.lex_state = 339}, [50] = {.lex_state = 339}, - [51] = {.lex_state = 174}, + [51] = {.lex_state = 339}, [52] = {.lex_state = 339}, [53] = {.lex_state = 339}, [54] = {.lex_state = 339}, @@ -22168,11 +22318,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [97] = {.lex_state = 174}, [98] = {.lex_state = 174}, [99] = {.lex_state = 174}, - [100] = {.lex_state = 339}, - [101] = {.lex_state = 339}, - [102] = {.lex_state = 174}, + [100] = {.lex_state = 174}, + [101] = {.lex_state = 174}, + [102] = {.lex_state = 339}, [103] = {.lex_state = 339}, - [104] = {.lex_state = 174}, + [104] = {.lex_state = 339}, [105] = {.lex_state = 173}, [106] = {.lex_state = 173}, [107] = {.lex_state = 173}, @@ -22191,8 +22341,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [120] = {.lex_state = 173}, [121] = {.lex_state = 173}, [122] = {.lex_state = 173}, - [123] = {.lex_state = 173}, - [124] = {.lex_state = 175}, + [123] = {.lex_state = 175}, + [124] = {.lex_state = 173}, [125] = {.lex_state = 175}, [126] = {.lex_state = 175}, [127] = {.lex_state = 173}, @@ -22209,36 +22359,36 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [138] = {.lex_state = 164}, [139] = {.lex_state = 176}, [140] = {.lex_state = 173}, - [141] = {.lex_state = 173}, + [141] = {.lex_state = 176}, [142] = {.lex_state = 176}, [143] = {.lex_state = 176}, - [144] = {.lex_state = 176}, + [144] = {.lex_state = 173}, [145] = {.lex_state = 173}, [146] = {.lex_state = 173}, - [147] = {.lex_state = 173}, + [147] = {.lex_state = 176}, [148] = {.lex_state = 176}, - [149] = {.lex_state = 176}, + [149] = {.lex_state = 173}, [150] = {.lex_state = 173}, - [151] = {.lex_state = 173}, + [151] = {.lex_state = 176}, [152] = {.lex_state = 176}, [153] = {.lex_state = 176}, [154] = {.lex_state = 176}, - [155] = {.lex_state = 176}, + [155] = {.lex_state = 164}, [156] = {.lex_state = 176}, [157] = {.lex_state = 176}, - [158] = {.lex_state = 164}, + [158] = {.lex_state = 173}, [159] = {.lex_state = 176}, [160] = {.lex_state = 176}, [161] = {.lex_state = 176}, [162] = {.lex_state = 176}, [163] = {.lex_state = 176}, - [164] = {.lex_state = 173}, + [164] = {.lex_state = 176}, [165] = {.lex_state = 176}, [166] = {.lex_state = 176}, [167] = {.lex_state = 176}, [168] = {.lex_state = 176}, [169] = {.lex_state = 176}, - [170] = {.lex_state = 176}, + [170] = {.lex_state = 173}, [171] = {.lex_state = 176}, [172] = {.lex_state = 176}, [173] = {.lex_state = 176}, @@ -22276,8 +22426,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [205] = {.lex_state = 173}, [206] = {.lex_state = 173}, [207] = {.lex_state = 173}, - [208] = {.lex_state = 173}, - [209] = {.lex_state = 166}, + [208] = {.lex_state = 166}, + [209] = {.lex_state = 173}, [210] = {.lex_state = 173}, [211] = {.lex_state = 173}, [212] = {.lex_state = 173}, @@ -22293,21 +22443,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [222] = {.lex_state = 173}, [223] = {.lex_state = 173}, [224] = {.lex_state = 171}, - [225] = {.lex_state = 171}, - [226] = {.lex_state = 167}, + [225] = {.lex_state = 167}, + [226] = {.lex_state = 171}, [227] = {.lex_state = 164}, - [228] = {.lex_state = 171}, - [229] = {.lex_state = 339}, + [228] = {.lex_state = 339}, + [229] = {.lex_state = 171}, [230] = {.lex_state = 171}, [231] = {.lex_state = 339}, [232] = {.lex_state = 339}, [233] = {.lex_state = 339}, [234] = {.lex_state = 339}, [235] = {.lex_state = 339}, - [236] = {.lex_state = 166}, + [236] = {.lex_state = 171}, [237] = {.lex_state = 171}, [238] = {.lex_state = 171}, - [239] = {.lex_state = 171}, + [239] = {.lex_state = 166}, [240] = {.lex_state = 171}, [241] = {.lex_state = 171}, [242] = {.lex_state = 171}, @@ -22319,7 +22469,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [248] = {.lex_state = 171}, [249] = {.lex_state = 171}, [250] = {.lex_state = 171}, - [251] = {.lex_state = 339}, + [251] = {.lex_state = 171}, [252] = {.lex_state = 171}, [253] = {.lex_state = 171}, [254] = {.lex_state = 171}, @@ -22328,11 +22478,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [257] = {.lex_state = 171}, [258] = {.lex_state = 171}, [259] = {.lex_state = 171}, - [260] = {.lex_state = 339}, + [260] = {.lex_state = 171}, [261] = {.lex_state = 171}, [262] = {.lex_state = 171}, [263] = {.lex_state = 171}, - [264] = {.lex_state = 171}, + [264] = {.lex_state = 339}, [265] = {.lex_state = 171}, [266] = {.lex_state = 171}, [267] = {.lex_state = 171}, @@ -22342,22 +22492,22 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [271] = {.lex_state = 171}, [272] = {.lex_state = 171}, [273] = {.lex_state = 171}, - [274] = {.lex_state = 171}, + [274] = {.lex_state = 339}, [275] = {.lex_state = 171}, [276] = {.lex_state = 171}, - [277] = {.lex_state = 171}, + [277] = {.lex_state = 339}, [278] = {.lex_state = 171}, [279] = {.lex_state = 171}, [280] = {.lex_state = 171}, [281] = {.lex_state = 171}, - [282] = {.lex_state = 339}, + [282] = {.lex_state = 171}, [283] = {.lex_state = 171}, [284] = {.lex_state = 171}, [285] = {.lex_state = 171}, [286] = {.lex_state = 171}, [287] = {.lex_state = 171}, [288] = {.lex_state = 171}, - [289] = {.lex_state = 339}, + [289] = {.lex_state = 171}, [290] = {.lex_state = 171}, [291] = {.lex_state = 171}, [292] = {.lex_state = 171}, @@ -22365,17 +22515,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [294] = {.lex_state = 171}, [295] = {.lex_state = 171}, [296] = {.lex_state = 171}, - [297] = {.lex_state = 339}, - [298] = {.lex_state = 339}, - [299] = {.lex_state = 339}, + [297] = {.lex_state = 171}, + [298] = {.lex_state = 171}, + [299] = {.lex_state = 171}, [300] = {.lex_state = 339}, [301] = {.lex_state = 171}, - [302] = {.lex_state = 171}, - [303] = {.lex_state = 171}, - [304] = {.lex_state = 171}, + [302] = {.lex_state = 339}, + [303] = {.lex_state = 339}, + [304] = {.lex_state = 339}, [305] = {.lex_state = 171}, [306] = {.lex_state = 171}, - [307] = {.lex_state = 171}, + [307] = {.lex_state = 339}, [308] = {.lex_state = 171}, [309] = {.lex_state = 171}, [310] = {.lex_state = 171}, @@ -22391,146 +22541,146 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [320] = {.lex_state = 171}, [321] = {.lex_state = 171}, [322] = {.lex_state = 171}, - [323] = {.lex_state = 339}, + [323] = {.lex_state = 171}, [324] = {.lex_state = 171}, [325] = {.lex_state = 171}, - [326] = {.lex_state = 171}, + [326] = {.lex_state = 339}, [327] = {.lex_state = 171}, [328] = {.lex_state = 171}, [329] = {.lex_state = 171}, [330] = {.lex_state = 171}, [331] = {.lex_state = 171}, - [332] = {.lex_state = 171}, + [332] = {.lex_state = 339}, [333] = {.lex_state = 171}, [334] = {.lex_state = 171}, [335] = {.lex_state = 171}, [336] = {.lex_state = 171}, [337] = {.lex_state = 171}, [338] = {.lex_state = 171}, - [339] = {.lex_state = 239}, + [339] = {.lex_state = 171}, [340] = {.lex_state = 171}, [341] = {.lex_state = 171}, - [342] = {.lex_state = 339}, - [343] = {.lex_state = 339}, - [344] = {.lex_state = 339}, - [345] = {.lex_state = 339}, + [342] = {.lex_state = 171}, + [343] = {.lex_state = 171}, + [344] = {.lex_state = 171}, + [345] = {.lex_state = 171}, [346] = {.lex_state = 171}, - [347] = {.lex_state = 171}, - [348] = {.lex_state = 171}, - [349] = {.lex_state = 171}, - [350] = {.lex_state = 173}, + [347] = {.lex_state = 239}, + [348] = {.lex_state = 339}, + [349] = {.lex_state = 339}, + [350] = {.lex_state = 339}, [351] = {.lex_state = 171}, [352] = {.lex_state = 171}, - [353] = {.lex_state = 339}, + [353] = {.lex_state = 171}, [354] = {.lex_state = 171}, - [355] = {.lex_state = 171}, - [356] = {.lex_state = 171}, + [355] = {.lex_state = 339}, + [356] = {.lex_state = 173}, [357] = {.lex_state = 171}, [358] = {.lex_state = 171}, - [359] = {.lex_state = 174}, + [359] = {.lex_state = 171}, [360] = {.lex_state = 171}, [361] = {.lex_state = 171}, - [362] = {.lex_state = 174}, + [362] = {.lex_state = 171}, [363] = {.lex_state = 171}, - [364] = {.lex_state = 171}, + [364] = {.lex_state = 174}, [365] = {.lex_state = 171}, [366] = {.lex_state = 171}, - [367] = {.lex_state = 339}, - [368] = {.lex_state = 339}, - [369] = {.lex_state = 339}, - [370] = {.lex_state = 339}, - [371] = {.lex_state = 176}, + [367] = {.lex_state = 174}, + [368] = {.lex_state = 171}, + [369] = {.lex_state = 171}, + [370] = {.lex_state = 171}, + [371] = {.lex_state = 171}, [372] = {.lex_state = 339}, [373] = {.lex_state = 339}, - [374] = {.lex_state = 239}, - [375] = {.lex_state = 239}, - [376] = {.lex_state = 239}, - [377] = {.lex_state = 239}, - [378] = {.lex_state = 239}, - [379] = {.lex_state = 239}, - [380] = {.lex_state = 339}, - [381] = {.lex_state = 339}, - [382] = {.lex_state = 339}, - [383] = {.lex_state = 339}, - [384] = {.lex_state = 339}, - [385] = {.lex_state = 176}, - [386] = {.lex_state = 176}, + [374] = {.lex_state = 339}, + [375] = {.lex_state = 339}, + [376] = {.lex_state = 339}, + [377] = {.lex_state = 176}, + [378] = {.lex_state = 339}, + [379] = {.lex_state = 339}, + [380] = {.lex_state = 239}, + [381] = {.lex_state = 239}, + [382] = {.lex_state = 239}, + [383] = {.lex_state = 239}, + [384] = {.lex_state = 239}, + [385] = {.lex_state = 339}, + [386] = {.lex_state = 339}, [387] = {.lex_state = 339}, [388] = {.lex_state = 339}, - [389] = {.lex_state = 239}, + [389] = {.lex_state = 339}, [390] = {.lex_state = 339}, - [391] = {.lex_state = 239}, - [392] = {.lex_state = 239}, - [393] = {.lex_state = 239}, - [394] = {.lex_state = 239}, - [395] = {.lex_state = 239}, - [396] = {.lex_state = 239}, + [391] = {.lex_state = 176}, + [392] = {.lex_state = 339}, + [393] = {.lex_state = 339}, + [394] = {.lex_state = 339}, + [395] = {.lex_state = 176}, + [396] = {.lex_state = 339}, [397] = {.lex_state = 239}, [398] = {.lex_state = 239}, - [399] = {.lex_state = 176}, - [400] = {.lex_state = 339}, - [401] = {.lex_state = 339}, - [402] = {.lex_state = 176}, + [399] = {.lex_state = 239}, + [400] = {.lex_state = 239}, + [401] = {.lex_state = 239}, + [402] = {.lex_state = 239}, [403] = {.lex_state = 339}, - [404] = {.lex_state = 339}, - [405] = {.lex_state = 339}, - [406] = {.lex_state = 339}, + [404] = {.lex_state = 239}, + [405] = {.lex_state = 239}, + [406] = {.lex_state = 239}, [407] = {.lex_state = 176}, - [408] = {.lex_state = 176}, + [408] = {.lex_state = 339}, [409] = {.lex_state = 339}, - [410] = {.lex_state = 176}, + [410] = {.lex_state = 339}, [411] = {.lex_state = 176}, - [412] = {.lex_state = 176}, + [412] = {.lex_state = 339}, [413] = {.lex_state = 339}, [414] = {.lex_state = 176}, [415] = {.lex_state = 339}, [416] = {.lex_state = 176}, - [417] = {.lex_state = 173}, + [417] = {.lex_state = 339}, [418] = {.lex_state = 176}, - [419] = {.lex_state = 173}, + [419] = {.lex_state = 176}, [420] = {.lex_state = 339}, [421] = {.lex_state = 176}, - [422] = {.lex_state = 339}, - [423] = {.lex_state = 339}, - [424] = {.lex_state = 176}, - [425] = {.lex_state = 339}, + [422] = {.lex_state = 176}, + [423] = {.lex_state = 176}, + [424] = {.lex_state = 339}, + [425] = {.lex_state = 173}, [426] = {.lex_state = 176}, - [427] = {.lex_state = 176}, + [427] = {.lex_state = 173}, [428] = {.lex_state = 339}, - [429] = {.lex_state = 339}, - [430] = {.lex_state = 171}, + [429] = {.lex_state = 176}, + [430] = {.lex_state = 339}, [431] = {.lex_state = 339}, - [432] = {.lex_state = 171}, - [433] = {.lex_state = 171}, - [434] = {.lex_state = 339}, - [435] = {.lex_state = 173}, - [436] = {.lex_state = 173}, - [437] = {.lex_state = 339}, - [438] = {.lex_state = 174}, - [439] = {.lex_state = 174}, - [440] = {.lex_state = 175}, - [441] = {.lex_state = 175}, - [442] = {.lex_state = 339}, - [443] = {.lex_state = 176}, + [432] = {.lex_state = 176}, + [433] = {.lex_state = 176}, + [434] = {.lex_state = 176}, + [435] = {.lex_state = 339}, + [436] = {.lex_state = 339}, + [437] = {.lex_state = 171}, + [438] = {.lex_state = 339}, + [439] = {.lex_state = 171}, + [440] = {.lex_state = 339}, + [441] = {.lex_state = 239}, + [442] = {.lex_state = 175}, + [443] = {.lex_state = 339}, [444] = {.lex_state = 173}, [445] = {.lex_state = 339}, - [446] = {.lex_state = 173}, - [447] = {.lex_state = 339}, - [448] = {.lex_state = 173}, - [449] = {.lex_state = 173}, - [450] = {.lex_state = 174}, - [451] = {.lex_state = 173}, + [446] = {.lex_state = 339}, + [447] = {.lex_state = 173}, + [448] = {.lex_state = 176}, + [449] = {.lex_state = 174}, + [450] = {.lex_state = 339}, + [451] = {.lex_state = 174}, [452] = {.lex_state = 173}, - [453] = {.lex_state = 174}, - [454] = {.lex_state = 174}, - [455] = {.lex_state = 339}, - [456] = {.lex_state = 174}, - [457] = {.lex_state = 339}, - [458] = {.lex_state = 339}, + [453] = {.lex_state = 339}, + [454] = {.lex_state = 173}, + [455] = {.lex_state = 175}, + [456] = {.lex_state = 173}, + [457] = {.lex_state = 173}, + [458] = {.lex_state = 176}, [459] = {.lex_state = 176}, [460] = {.lex_state = 339}, - [461] = {.lex_state = 174}, - [462] = {.lex_state = 176}, + [461] = {.lex_state = 176}, + [462] = {.lex_state = 174}, [463] = {.lex_state = 176}, [464] = {.lex_state = 176}, [465] = {.lex_state = 176}, @@ -22539,17 +22689,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [468] = {.lex_state = 176}, [469] = {.lex_state = 176}, [470] = {.lex_state = 176}, - [471] = {.lex_state = 176}, - [472] = {.lex_state = 176}, + [471] = {.lex_state = 339}, + [472] = {.lex_state = 174}, [473] = {.lex_state = 339}, - [474] = {.lex_state = 339}, + [474] = {.lex_state = 176}, [475] = {.lex_state = 339}, - [476] = {.lex_state = 339}, + [476] = {.lex_state = 173}, [477] = {.lex_state = 339}, - [478] = {.lex_state = 339}, - [479] = {.lex_state = 339}, - [480] = {.lex_state = 339}, - [481] = {.lex_state = 339}, + [478] = {.lex_state = 174}, + [479] = {.lex_state = 173}, + [480] = {.lex_state = 174}, + [481] = {.lex_state = 174}, [482] = {.lex_state = 339}, [483] = {.lex_state = 339}, [484] = {.lex_state = 339}, @@ -22581,7 +22731,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [510] = {.lex_state = 339}, [511] = {.lex_state = 339}, [512] = {.lex_state = 339}, - [513] = {.lex_state = 339}, + [513] = {.lex_state = 174}, [514] = {.lex_state = 339}, [515] = {.lex_state = 339}, [516] = {.lex_state = 339}, @@ -22593,187 +22743,187 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [522] = {.lex_state = 339}, [523] = {.lex_state = 339}, [524] = {.lex_state = 339}, - [525] = {.lex_state = 174}, + [525] = {.lex_state = 339}, [526] = {.lex_state = 339}, - [527] = {.lex_state = 339}, - [528] = {.lex_state = 339}, + [527] = {.lex_state = 174}, + [528] = {.lex_state = 174}, [529] = {.lex_state = 174}, [530] = {.lex_state = 339}, [531] = {.lex_state = 339}, - [532] = {.lex_state = 339}, + [532] = {.lex_state = 174}, [533] = {.lex_state = 339}, - [534] = {.lex_state = 174}, - [535] = {.lex_state = 174}, - [536] = {.lex_state = 339}, + [534] = {.lex_state = 339}, + [535] = {.lex_state = 339}, + [536] = {.lex_state = 174}, [537] = {.lex_state = 174}, [538] = {.lex_state = 174}, - [539] = {.lex_state = 174}, - [540] = {.lex_state = 174}, - [541] = {.lex_state = 174}, - [542] = {.lex_state = 174}, - [543] = {.lex_state = 339}, + [539] = {.lex_state = 339}, + [540] = {.lex_state = 339}, + [541] = {.lex_state = 339}, + [542] = {.lex_state = 339}, + [543] = {.lex_state = 174}, [544] = {.lex_state = 339}, [545] = {.lex_state = 339}, [546] = {.lex_state = 339}, - [547] = {.lex_state = 339}, - [548] = {.lex_state = 339}, - [549] = {.lex_state = 339}, + [547] = {.lex_state = 174}, + [548] = {.lex_state = 174}, + [549] = {.lex_state = 174}, [550] = {.lex_state = 339}, - [551] = {.lex_state = 339}, + [551] = {.lex_state = 174}, [552] = {.lex_state = 339}, - [553] = {.lex_state = 339}, - [554] = {.lex_state = 339}, - [555] = {.lex_state = 339}, - [556] = {.lex_state = 174}, + [553] = {.lex_state = 174}, + [554] = {.lex_state = 174}, + [555] = {.lex_state = 174}, + [556] = {.lex_state = 339}, [557] = {.lex_state = 339}, - [558] = {.lex_state = 174}, - [559] = {.lex_state = 174}, - [560] = {.lex_state = 174}, + [558] = {.lex_state = 339}, + [559] = {.lex_state = 339}, + [560] = {.lex_state = 339}, [561] = {.lex_state = 339}, [562] = {.lex_state = 339}, [563] = {.lex_state = 339}, [564] = {.lex_state = 339}, [565] = {.lex_state = 339}, [566] = {.lex_state = 339}, - [567] = {.lex_state = 174}, + [567] = {.lex_state = 339}, [568] = {.lex_state = 339}, - [569] = {.lex_state = 174}, - [570] = {.lex_state = 339}, + [569] = {.lex_state = 339}, + [570] = {.lex_state = 174}, [571] = {.lex_state = 339}, - [572] = {.lex_state = 174}, + [572] = {.lex_state = 339}, [573] = {.lex_state = 339}, - [574] = {.lex_state = 174}, - [575] = {.lex_state = 339}, + [574] = {.lex_state = 339}, + [575] = {.lex_state = 174}, [576] = {.lex_state = 339}, [577] = {.lex_state = 339}, - [578] = {.lex_state = 174}, + [578] = {.lex_state = 339}, [579] = {.lex_state = 339}, - [580] = {.lex_state = 339}, + [580] = {.lex_state = 174}, [581] = {.lex_state = 339}, [582] = {.lex_state = 339}, - [583] = {.lex_state = 174}, + [583] = {.lex_state = 339}, [584] = {.lex_state = 339}, [585] = {.lex_state = 339}, - [586] = {.lex_state = 174}, - [587] = {.lex_state = 239}, - [588] = {.lex_state = 174}, + [586] = {.lex_state = 339}, + [587] = {.lex_state = 339}, + [588] = {.lex_state = 339}, [589] = {.lex_state = 174}, [590] = {.lex_state = 339}, [591] = {.lex_state = 339}, - [592] = {.lex_state = 174}, - [593] = {.lex_state = 339}, + [592] = {.lex_state = 339}, + [593] = {.lex_state = 174}, [594] = {.lex_state = 339}, - [595] = {.lex_state = 174}, + [595] = {.lex_state = 339}, [596] = {.lex_state = 174}, - [597] = {.lex_state = 339}, + [597] = {.lex_state = 174}, [598] = {.lex_state = 339}, [599] = {.lex_state = 339}, - [600] = {.lex_state = 174}, - [601] = {.lex_state = 339}, + [600] = {.lex_state = 239}, + [601] = {.lex_state = 174}, [602] = {.lex_state = 339}, [603] = {.lex_state = 339}, [604] = {.lex_state = 339}, - [605] = {.lex_state = 339}, + [605] = {.lex_state = 174}, [606] = {.lex_state = 339}, [607] = {.lex_state = 339}, - [608] = {.lex_state = 174}, + [608] = {.lex_state = 339}, [609] = {.lex_state = 339}, - [610] = {.lex_state = 174}, + [610] = {.lex_state = 339}, [611] = {.lex_state = 339}, [612] = {.lex_state = 339}, - [613] = {.lex_state = 339}, + [613] = {.lex_state = 174}, [614] = {.lex_state = 174}, [615] = {.lex_state = 339}, [616] = {.lex_state = 339}, - [617] = {.lex_state = 174}, + [617] = {.lex_state = 339}, [618] = {.lex_state = 339}, [619] = {.lex_state = 339}, [620] = {.lex_state = 339}, [621] = {.lex_state = 339}, [622] = {.lex_state = 339}, - [623] = {.lex_state = 339}, + [623] = {.lex_state = 174}, [624] = {.lex_state = 339}, - [625] = {.lex_state = 339}, + [625] = {.lex_state = 174}, [626] = {.lex_state = 339}, [627] = {.lex_state = 339}, [628] = {.lex_state = 339}, - [629] = {.lex_state = 339}, + [629] = {.lex_state = 174}, [630] = {.lex_state = 339}, [631] = {.lex_state = 339}, - [632] = {.lex_state = 339}, - [633] = {.lex_state = 174}, - [634] = {.lex_state = 339}, - [635] = {.lex_state = 339}, + [632] = {.lex_state = 174}, + [633] = {.lex_state = 339}, + [634] = {.lex_state = 174}, + [635] = {.lex_state = 174}, [636] = {.lex_state = 174}, - [637] = {.lex_state = 174}, - [638] = {.lex_state = 339}, - [639] = {.lex_state = 174}, + [637] = {.lex_state = 339}, + [638] = {.lex_state = 174}, + [639] = {.lex_state = 339}, [640] = {.lex_state = 174}, [641] = {.lex_state = 339}, [642] = {.lex_state = 339}, - [643] = {.lex_state = 339}, + [643] = {.lex_state = 174}, [644] = {.lex_state = 174}, [645] = {.lex_state = 339}, [646] = {.lex_state = 339}, - [647] = {.lex_state = 174}, + [647] = {.lex_state = 339}, [648] = {.lex_state = 339}, [649] = {.lex_state = 339}, - [650] = {.lex_state = 174}, + [650] = {.lex_state = 339}, [651] = {.lex_state = 339}, [652] = {.lex_state = 339}, [653] = {.lex_state = 339}, - [654] = {.lex_state = 174}, - [655] = {.lex_state = 339}, - [656] = {.lex_state = 339}, - [657] = {.lex_state = 174}, + [654] = {.lex_state = 339}, + [655] = {.lex_state = 174}, + [656] = {.lex_state = 174}, + [657] = {.lex_state = 339}, [658] = {.lex_state = 174}, [659] = {.lex_state = 174}, [660] = {.lex_state = 339}, [661] = {.lex_state = 339}, - [662] = {.lex_state = 174}, - [663] = {.lex_state = 174}, - [664] = {.lex_state = 174}, - [665] = {.lex_state = 174}, + [662] = {.lex_state = 339}, + [663] = {.lex_state = 339}, + [664] = {.lex_state = 339}, + [665] = {.lex_state = 339}, [666] = {.lex_state = 174}, [667] = {.lex_state = 339}, - [668] = {.lex_state = 339}, - [669] = {.lex_state = 174}, + [668] = {.lex_state = 174}, + [669] = {.lex_state = 339}, [670] = {.lex_state = 174}, [671] = {.lex_state = 174}, - [672] = {.lex_state = 339}, - [673] = {.lex_state = 339}, + [672] = {.lex_state = 174}, + [673] = {.lex_state = 174}, [674] = {.lex_state = 339}, [675] = {.lex_state = 174}, [676] = {.lex_state = 174}, [677] = {.lex_state = 174}, - [678] = {.lex_state = 174}, + [678] = {.lex_state = 339}, [679] = {.lex_state = 174}, [680] = {.lex_state = 174}, [681] = {.lex_state = 174}, - [682] = {.lex_state = 174}, - [683] = {.lex_state = 174}, - [684] = {.lex_state = 339}, + [682] = {.lex_state = 339}, + [683] = {.lex_state = 339}, + [684] = {.lex_state = 174}, [685] = {.lex_state = 174}, [686] = {.lex_state = 174}, - [687] = {.lex_state = 339}, - [688] = {.lex_state = 339}, + [687] = {.lex_state = 174}, + [688] = {.lex_state = 174}, [689] = {.lex_state = 174}, [690] = {.lex_state = 174}, [691] = {.lex_state = 174}, [692] = {.lex_state = 174}, [693] = {.lex_state = 174}, [694] = {.lex_state = 174}, - [695] = {.lex_state = 174}, - [696] = {.lex_state = 174}, - [697] = {.lex_state = 339}, + [695] = {.lex_state = 339}, + [696] = {.lex_state = 339}, + [697] = {.lex_state = 174}, [698] = {.lex_state = 174}, [699] = {.lex_state = 174}, [700] = {.lex_state = 174}, [701] = {.lex_state = 174}, [702] = {.lex_state = 174}, [703] = {.lex_state = 339}, - [704] = {.lex_state = 174}, - [705] = {.lex_state = 339}, + [704] = {.lex_state = 339}, + [705] = {.lex_state = 174}, [706] = {.lex_state = 339}, [707] = {.lex_state = 174}, [708] = {.lex_state = 174}, @@ -22781,49 +22931,49 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [710] = {.lex_state = 174}, [711] = {.lex_state = 174}, [712] = {.lex_state = 174}, - [713] = {.lex_state = 174}, + [713] = {.lex_state = 339}, [714] = {.lex_state = 174}, [715] = {.lex_state = 339}, - [716] = {.lex_state = 174}, - [717] = {.lex_state = 339}, - [718] = {.lex_state = 339}, + [716] = {.lex_state = 339}, + [717] = {.lex_state = 174}, + [718] = {.lex_state = 174}, [719] = {.lex_state = 174}, [720] = {.lex_state = 174}, [721] = {.lex_state = 174}, - [722] = {.lex_state = 339}, + [722] = {.lex_state = 174}, [723] = {.lex_state = 174}, [724] = {.lex_state = 174}, - [725] = {.lex_state = 174}, - [726] = {.lex_state = 174}, - [727] = {.lex_state = 339}, + [725] = {.lex_state = 339}, + [726] = {.lex_state = 339}, + [727] = {.lex_state = 174}, [728] = {.lex_state = 339}, - [729] = {.lex_state = 174}, + [729] = {.lex_state = 339}, [730] = {.lex_state = 339}, - [731] = {.lex_state = 174}, - [732] = {.lex_state = 339}, - [733] = {.lex_state = 339}, - [734] = {.lex_state = 339}, - [735] = {.lex_state = 174}, + [731] = {.lex_state = 339}, + [732] = {.lex_state = 174}, + [733] = {.lex_state = 174}, + [734] = {.lex_state = 174}, + [735] = {.lex_state = 339}, [736] = {.lex_state = 174}, - [737] = {.lex_state = 339}, + [737] = {.lex_state = 174}, [738] = {.lex_state = 174}, [739] = {.lex_state = 174}, - [740] = {.lex_state = 174}, - [741] = {.lex_state = 174}, - [742] = {.lex_state = 339}, - [743] = {.lex_state = 339}, - [744] = {.lex_state = 339}, - [745] = {.lex_state = 174}, - [746] = {.lex_state = 174}, - [747] = {.lex_state = 339}, - [748] = {.lex_state = 339}, - [749] = {.lex_state = 339}, - [750] = {.lex_state = 339}, - [751] = {.lex_state = 339}, - [752] = {.lex_state = 339}, - [753] = {.lex_state = 339}, + [740] = {.lex_state = 339}, + [741] = {.lex_state = 339}, + [742] = {.lex_state = 174}, + [743] = {.lex_state = 174}, + [744] = {.lex_state = 174}, + [745] = {.lex_state = 339}, + [746] = {.lex_state = 339}, + [747] = {.lex_state = 174}, + [748] = {.lex_state = 174}, + [749] = {.lex_state = 174}, + [750] = {.lex_state = 174}, + [751] = {.lex_state = 174}, + [752] = {.lex_state = 174}, + [753] = {.lex_state = 174}, [754] = {.lex_state = 339}, - [755] = {.lex_state = 339}, + [755] = {.lex_state = 174}, [756] = {.lex_state = 339}, [757] = {.lex_state = 339}, [758] = {.lex_state = 339}, @@ -22850,128 +23000,128 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [779] = {.lex_state = 339}, [780] = {.lex_state = 339}, [781] = {.lex_state = 339}, - [782] = {.lex_state = 174}, + [782] = {.lex_state = 339}, [783] = {.lex_state = 339}, [784] = {.lex_state = 339}, - [785] = {.lex_state = 174}, - [786] = {.lex_state = 174}, - [787] = {.lex_state = 174}, + [785] = {.lex_state = 339}, + [786] = {.lex_state = 339}, + [787] = {.lex_state = 339}, [788] = {.lex_state = 339}, - [789] = {.lex_state = 174}, - [790] = {.lex_state = 174}, - [791] = {.lex_state = 174}, - [792] = {.lex_state = 339}, - [793] = {.lex_state = 174}, - [794] = {.lex_state = 165}, - [795] = {.lex_state = 195}, - [796] = {.lex_state = 195}, - [797] = {.lex_state = 195}, - [798] = {.lex_state = 195}, - [799] = {.lex_state = 240}, - [800] = {.lex_state = 240}, - [801] = {.lex_state = 195}, - [802] = {.lex_state = 195}, - [803] = {.lex_state = 195}, - [804] = {.lex_state = 195}, - [805] = {.lex_state = 195}, - [806] = {.lex_state = 195}, - [807] = {.lex_state = 195}, - [808] = {.lex_state = 195}, - [809] = {.lex_state = 195}, - [810] = {.lex_state = 195}, + [789] = {.lex_state = 339}, + [790] = {.lex_state = 339}, + [791] = {.lex_state = 339}, + [792] = {.lex_state = 174}, + [793] = {.lex_state = 339}, + [794] = {.lex_state = 339}, + [795] = {.lex_state = 339}, + [796] = {.lex_state = 174}, + [797] = {.lex_state = 339}, + [798] = {.lex_state = 174}, + [799] = {.lex_state = 174}, + [800] = {.lex_state = 174}, + [801] = {.lex_state = 174}, + [802] = {.lex_state = 339}, + [803] = {.lex_state = 339}, + [804] = {.lex_state = 174}, + [805] = {.lex_state = 339}, + [806] = {.lex_state = 339}, + [807] = {.lex_state = 339}, + [808] = {.lex_state = 339}, + [809] = {.lex_state = 174}, + [810] = {.lex_state = 165}, [811] = {.lex_state = 195}, - [812] = {.lex_state = 240}, + [812] = {.lex_state = 195}, [813] = {.lex_state = 195}, [814] = {.lex_state = 195}, [815] = {.lex_state = 195}, [816] = {.lex_state = 195}, [817] = {.lex_state = 195}, [818] = {.lex_state = 195}, - [819] = {.lex_state = 165}, - [820] = {.lex_state = 165}, - [821] = {.lex_state = 165}, - [822] = {.lex_state = 165}, - [823] = {.lex_state = 168}, - [824] = {.lex_state = 165}, - [825] = {.lex_state = 169}, - [826] = {.lex_state = 169}, - [827] = {.lex_state = 176}, - [828] = {.lex_state = 339}, - [829] = {.lex_state = 339}, - [830] = {.lex_state = 176}, - [831] = {.lex_state = 176}, - [832] = {.lex_state = 239}, - [833] = {.lex_state = 239}, - [834] = {.lex_state = 239}, - [835] = {.lex_state = 239}, - [836] = {.lex_state = 239}, - [837] = {.lex_state = 239}, - [838] = {.lex_state = 239}, - [839] = {.lex_state = 176}, - [840] = {.lex_state = 176}, - [841] = {.lex_state = 176}, - [842] = {.lex_state = 176}, - [843] = {.lex_state = 239}, + [819] = {.lex_state = 195}, + [820] = {.lex_state = 195}, + [821] = {.lex_state = 240}, + [822] = {.lex_state = 195}, + [823] = {.lex_state = 240}, + [824] = {.lex_state = 195}, + [825] = {.lex_state = 195}, + [826] = {.lex_state = 195}, + [827] = {.lex_state = 195}, + [828] = {.lex_state = 195}, + [829] = {.lex_state = 195}, + [830] = {.lex_state = 195}, + [831] = {.lex_state = 240}, + [832] = {.lex_state = 195}, + [833] = {.lex_state = 195}, + [834] = {.lex_state = 195}, + [835] = {.lex_state = 165}, + [836] = {.lex_state = 165}, + [837] = {.lex_state = 165}, + [838] = {.lex_state = 168}, + [839] = {.lex_state = 165}, + [840] = {.lex_state = 165}, + [841] = {.lex_state = 169}, + [842] = {.lex_state = 169}, + [843] = {.lex_state = 339}, [844] = {.lex_state = 176}, [845] = {.lex_state = 176}, - [846] = {.lex_state = 176}, - [847] = {.lex_state = 239}, - [848] = {.lex_state = 176}, + [846] = {.lex_state = 339}, + [847] = {.lex_state = 176}, + [848] = {.lex_state = 239}, [849] = {.lex_state = 239}, [850] = {.lex_state = 239}, [851] = {.lex_state = 239}, - [852] = {.lex_state = 176}, - [853] = {.lex_state = 176}, + [852] = {.lex_state = 239}, + [853] = {.lex_state = 239}, [854] = {.lex_state = 239}, - [855] = {.lex_state = 176}, + [855] = {.lex_state = 239}, [856] = {.lex_state = 176}, [857] = {.lex_state = 176}, [858] = {.lex_state = 176}, - [859] = {.lex_state = 176}, - [860] = {.lex_state = 339}, + [859] = {.lex_state = 339}, + [860] = {.lex_state = 239}, [861] = {.lex_state = 176}, [862] = {.lex_state = 176}, - [863] = {.lex_state = 239}, + [863] = {.lex_state = 176}, [864] = {.lex_state = 176}, [865] = {.lex_state = 176}, - [866] = {.lex_state = 176}, + [866] = {.lex_state = 239}, [867] = {.lex_state = 176}, - [868] = {.lex_state = 173}, - [869] = {.lex_state = 188}, - [870] = {.lex_state = 175}, - [871] = {.lex_state = 175}, - [872] = {.lex_state = 173}, - [873] = {.lex_state = 188}, - [874] = {.lex_state = 188}, - [875] = {.lex_state = 188}, - [876] = {.lex_state = 188}, + [868] = {.lex_state = 176}, + [869] = {.lex_state = 176}, + [870] = {.lex_state = 176}, + [871] = {.lex_state = 239}, + [872] = {.lex_state = 176}, + [873] = {.lex_state = 239}, + [874] = {.lex_state = 176}, + [875] = {.lex_state = 176}, + [876] = {.lex_state = 239}, [877] = {.lex_state = 176}, - [878] = {.lex_state = 173}, - [879] = {.lex_state = 188}, - [880] = {.lex_state = 173}, - [881] = {.lex_state = 173}, - [882] = {.lex_state = 173}, - [883] = {.lex_state = 173}, - [884] = {.lex_state = 173}, - [885] = {.lex_state = 173}, + [878] = {.lex_state = 176}, + [879] = {.lex_state = 176}, + [880] = {.lex_state = 176}, + [881] = {.lex_state = 176}, + [882] = {.lex_state = 239}, + [883] = {.lex_state = 176}, + [884] = {.lex_state = 175}, + [885] = {.lex_state = 188}, [886] = {.lex_state = 173}, - [887] = {.lex_state = 173}, + [887] = {.lex_state = 175}, [888] = {.lex_state = 173}, - [889] = {.lex_state = 173}, - [890] = {.lex_state = 173}, - [891] = {.lex_state = 173}, - [892] = {.lex_state = 173}, - [893] = {.lex_state = 173}, - [894] = {.lex_state = 173}, - [895] = {.lex_state = 173}, - [896] = {.lex_state = 173}, - [897] = {.lex_state = 173}, - [898] = {.lex_state = 173}, - [899] = {.lex_state = 173}, - [900] = {.lex_state = 173}, - [901] = {.lex_state = 175}, + [889] = {.lex_state = 188}, + [890] = {.lex_state = 188}, + [891] = {.lex_state = 188}, + [892] = {.lex_state = 188}, + [893] = {.lex_state = 188}, + [894] = {.lex_state = 176}, + [895] = {.lex_state = 188}, + [896] = {.lex_state = 188}, + [897] = {.lex_state = 188}, + [898] = {.lex_state = 188}, + [899] = {.lex_state = 188}, + [900] = {.lex_state = 188}, + [901] = {.lex_state = 173}, [902] = {.lex_state = 173}, - [903] = {.lex_state = 173}, + [903] = {.lex_state = 188}, [904] = {.lex_state = 173}, [905] = {.lex_state = 173}, [906] = {.lex_state = 173}, @@ -22994,88 +23144,88 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [923] = {.lex_state = 173}, [924] = {.lex_state = 173}, [925] = {.lex_state = 173}, - [926] = {.lex_state = 239}, - [927] = {.lex_state = 188}, - [928] = {.lex_state = 177}, - [929] = {.lex_state = 177}, - [930] = {.lex_state = 176}, - [931] = {.lex_state = 188}, - [932] = {.lex_state = 176}, - [933] = {.lex_state = 188}, - [934] = {.lex_state = 177}, - [935] = {.lex_state = 176}, - [936] = {.lex_state = 177}, - [937] = {.lex_state = 176}, - [938] = {.lex_state = 177}, - [939] = {.lex_state = 176}, - [940] = {.lex_state = 176}, - [941] = {.lex_state = 176}, - [942] = {.lex_state = 176}, - [943] = {.lex_state = 176}, - [944] = {.lex_state = 177}, - [945] = {.lex_state = 177}, - [946] = {.lex_state = 176}, - [947] = {.lex_state = 176}, - [948] = {.lex_state = 176}, - [949] = {.lex_state = 177}, - [950] = {.lex_state = 176}, - [951] = {.lex_state = 176}, - [952] = {.lex_state = 177}, - [953] = {.lex_state = 176}, + [926] = {.lex_state = 173}, + [927] = {.lex_state = 175}, + [928] = {.lex_state = 173}, + [929] = {.lex_state = 173}, + [930] = {.lex_state = 173}, + [931] = {.lex_state = 173}, + [932] = {.lex_state = 173}, + [933] = {.lex_state = 173}, + [934] = {.lex_state = 173}, + [935] = {.lex_state = 173}, + [936] = {.lex_state = 173}, + [937] = {.lex_state = 173}, + [938] = {.lex_state = 173}, + [939] = {.lex_state = 173}, + [940] = {.lex_state = 173}, + [941] = {.lex_state = 173}, + [942] = {.lex_state = 173}, + [943] = {.lex_state = 173}, + [944] = {.lex_state = 173}, + [945] = {.lex_state = 173}, + [946] = {.lex_state = 173}, + [947] = {.lex_state = 173}, + [948] = {.lex_state = 173}, + [949] = {.lex_state = 173}, + [950] = {.lex_state = 173}, + [951] = {.lex_state = 173}, + [952] = {.lex_state = 173}, + [953] = {.lex_state = 239}, [954] = {.lex_state = 177}, [955] = {.lex_state = 176}, [956] = {.lex_state = 176}, - [957] = {.lex_state = 188}, + [957] = {.lex_state = 177}, [958] = {.lex_state = 177}, [959] = {.lex_state = 176}, - [960] = {.lex_state = 176}, + [960] = {.lex_state = 177}, [961] = {.lex_state = 176}, - [962] = {.lex_state = 177}, + [962] = {.lex_state = 176}, [963] = {.lex_state = 177}, [964] = {.lex_state = 176}, [965] = {.lex_state = 177}, - [966] = {.lex_state = 176}, - [967] = {.lex_state = 177}, - [968] = {.lex_state = 176}, - [969] = {.lex_state = 176}, + [966] = {.lex_state = 177}, + [967] = {.lex_state = 176}, + [968] = {.lex_state = 177}, + [969] = {.lex_state = 177}, [970] = {.lex_state = 177}, - [971] = {.lex_state = 176}, - [972] = {.lex_state = 177}, - [973] = {.lex_state = 177}, - [974] = {.lex_state = 177}, - [975] = {.lex_state = 188}, - [976] = {.lex_state = 184}, - [977] = {.lex_state = 188}, - [978] = {.lex_state = 188}, - [979] = {.lex_state = 177}, + [971] = {.lex_state = 177}, + [972] = {.lex_state = 176}, + [973] = {.lex_state = 176}, + [974] = {.lex_state = 176}, + [975] = {.lex_state = 177}, + [976] = {.lex_state = 177}, + [977] = {.lex_state = 176}, + [978] = {.lex_state = 176}, + [979] = {.lex_state = 176}, [980] = {.lex_state = 177}, [981] = {.lex_state = 176}, - [982] = {.lex_state = 177}, + [982] = {.lex_state = 176}, [983] = {.lex_state = 177}, - [984] = {.lex_state = 177}, + [984] = {.lex_state = 176}, [985] = {.lex_state = 177}, - [986] = {.lex_state = 177}, - [987] = {.lex_state = 176}, + [986] = {.lex_state = 176}, + [987] = {.lex_state = 177}, [988] = {.lex_state = 176}, [989] = {.lex_state = 176}, - [990] = {.lex_state = 176}, + [990] = {.lex_state = 177}, [991] = {.lex_state = 176}, - [992] = {.lex_state = 188}, + [992] = {.lex_state = 176}, [993] = {.lex_state = 176}, - [994] = {.lex_state = 176}, - [995] = {.lex_state = 176}, - [996] = {.lex_state = 176}, - [997] = {.lex_state = 176}, - [998] = {.lex_state = 176}, + [994] = {.lex_state = 177}, + [995] = {.lex_state = 177}, + [996] = {.lex_state = 177}, + [997] = {.lex_state = 177}, + [998] = {.lex_state = 177}, [999] = {.lex_state = 176}, - [1000] = {.lex_state = 176}, + [1000] = {.lex_state = 177}, [1001] = {.lex_state = 176}, - [1002] = {.lex_state = 176}, - [1003] = {.lex_state = 176}, - [1004] = {.lex_state = 176}, + [1002] = {.lex_state = 184}, + [1003] = {.lex_state = 177}, + [1004] = {.lex_state = 177}, [1005] = {.lex_state = 176}, [1006] = {.lex_state = 176}, - [1007] = {.lex_state = 176}, + [1007] = {.lex_state = 188}, [1008] = {.lex_state = 176}, [1009] = {.lex_state = 176}, [1010] = {.lex_state = 176}, @@ -23382,7 +23532,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1311] = {.lex_state = 176}, [1312] = {.lex_state = 176}, [1313] = {.lex_state = 176}, - [1314] = {.lex_state = 176}, + [1314] = {.lex_state = 196}, [1315] = {.lex_state = 176}, [1316] = {.lex_state = 176}, [1317] = {.lex_state = 176}, @@ -23606,203 +23756,203 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1535] = {.lex_state = 176}, [1536] = {.lex_state = 176}, [1537] = {.lex_state = 176}, - [1538] = {.lex_state = 196}, - [1539] = {.lex_state = 196}, - [1540] = {.lex_state = 196}, - [1541] = {.lex_state = 196}, - [1542] = {.lex_state = 196}, - [1543] = {.lex_state = 196}, - [1544] = {.lex_state = 196}, - [1545] = {.lex_state = 196}, - [1546] = {.lex_state = 196}, - [1547] = {.lex_state = 239}, - [1548] = {.lex_state = 239}, - [1549] = {.lex_state = 173}, - [1550] = {.lex_state = 173}, - [1551] = {.lex_state = 173}, - [1552] = {.lex_state = 239}, - [1553] = {.lex_state = 194}, - [1554] = {.lex_state = 194}, - [1555] = {.lex_state = 194}, - [1556] = {.lex_state = 194}, - [1557] = {.lex_state = 196}, - [1558] = {.lex_state = 239}, - [1559] = {.lex_state = 239}, - [1560] = {.lex_state = 194}, - [1561] = {.lex_state = 194}, - [1562] = {.lex_state = 194}, - [1563] = {.lex_state = 239}, - [1564] = {.lex_state = 210}, + [1538] = {.lex_state = 176}, + [1539] = {.lex_state = 176}, + [1540] = {.lex_state = 176}, + [1541] = {.lex_state = 176}, + [1542] = {.lex_state = 176}, + [1543] = {.lex_state = 176}, + [1544] = {.lex_state = 176}, + [1545] = {.lex_state = 176}, + [1546] = {.lex_state = 176}, + [1547] = {.lex_state = 176}, + [1548] = {.lex_state = 176}, + [1549] = {.lex_state = 176}, + [1550] = {.lex_state = 176}, + [1551] = {.lex_state = 176}, + [1552] = {.lex_state = 176}, + [1553] = {.lex_state = 176}, + [1554] = {.lex_state = 176}, + [1555] = {.lex_state = 176}, + [1556] = {.lex_state = 176}, + [1557] = {.lex_state = 176}, + [1558] = {.lex_state = 176}, + [1559] = {.lex_state = 196}, + [1560] = {.lex_state = 196}, + [1561] = {.lex_state = 196}, + [1562] = {.lex_state = 196}, + [1563] = {.lex_state = 196}, + [1564] = {.lex_state = 196}, [1565] = {.lex_state = 196}, - [1566] = {.lex_state = 210}, - [1567] = {.lex_state = 210}, - [1568] = {.lex_state = 210}, - [1569] = {.lex_state = 210}, - [1570] = {.lex_state = 210}, - [1571] = {.lex_state = 210}, - [1572] = {.lex_state = 210}, - [1573] = {.lex_state = 184}, - [1574] = {.lex_state = 210}, - [1575] = {.lex_state = 196}, - [1576] = {.lex_state = 185}, - [1577] = {.lex_state = 196}, - [1578] = {.lex_state = 199}, - [1579] = {.lex_state = 189}, - [1580] = {.lex_state = 210}, - [1581] = {.lex_state = 210}, - [1582] = {.lex_state = 210}, - [1583] = {.lex_state = 210}, - [1584] = {.lex_state = 210}, - [1585] = {.lex_state = 199}, + [1566] = {.lex_state = 196}, + [1567] = {.lex_state = 196}, + [1568] = {.lex_state = 196}, + [1569] = {.lex_state = 194}, + [1570] = {.lex_state = 194}, + [1571] = {.lex_state = 194}, + [1572] = {.lex_state = 194}, + [1573] = {.lex_state = 194}, + [1574] = {.lex_state = 194}, + [1575] = {.lex_state = 194}, + [1576] = {.lex_state = 239}, + [1577] = {.lex_state = 239}, + [1578] = {.lex_state = 173}, + [1579] = {.lex_state = 173}, + [1580] = {.lex_state = 173}, + [1581] = {.lex_state = 239}, + [1582] = {.lex_state = 239}, + [1583] = {.lex_state = 239}, + [1584] = {.lex_state = 239}, + [1585] = {.lex_state = 210}, [1586] = {.lex_state = 210}, [1587] = {.lex_state = 210}, [1588] = {.lex_state = 210}, - [1589] = {.lex_state = 179}, - [1590] = {.lex_state = 199}, - [1591] = {.lex_state = 199}, - [1592] = {.lex_state = 199}, - [1593] = {.lex_state = 199}, - [1594] = {.lex_state = 199}, - [1595] = {.lex_state = 199}, - [1596] = {.lex_state = 197}, - [1597] = {.lex_state = 197}, - [1598] = {.lex_state = 197}, - [1599] = {.lex_state = 197}, - [1600] = {.lex_state = 197}, - [1601] = {.lex_state = 197}, - [1602] = {.lex_state = 197}, - [1603] = {.lex_state = 239}, - [1604] = {.lex_state = 194}, - [1605] = {.lex_state = 213}, - [1606] = {.lex_state = 239}, - [1607] = {.lex_state = 239}, - [1608] = {.lex_state = 239}, - [1609] = {.lex_state = 239}, - [1610] = {.lex_state = 239}, - [1611] = {.lex_state = 239}, - [1612] = {.lex_state = 239}, - [1613] = {.lex_state = 239}, + [1589] = {.lex_state = 210}, + [1590] = {.lex_state = 210}, + [1591] = {.lex_state = 210}, + [1592] = {.lex_state = 210}, + [1593] = {.lex_state = 196}, + [1594] = {.lex_state = 210}, + [1595] = {.lex_state = 184}, + [1596] = {.lex_state = 196}, + [1597] = {.lex_state = 185}, + [1598] = {.lex_state = 199}, + [1599] = {.lex_state = 189}, + [1600] = {.lex_state = 210}, + [1601] = {.lex_state = 210}, + [1602] = {.lex_state = 210}, + [1603] = {.lex_state = 210}, + [1604] = {.lex_state = 210}, + [1605] = {.lex_state = 210}, + [1606] = {.lex_state = 210}, + [1607] = {.lex_state = 210}, + [1608] = {.lex_state = 199}, + [1609] = {.lex_state = 179}, + [1610] = {.lex_state = 199}, + [1611] = {.lex_state = 199}, + [1612] = {.lex_state = 199}, + [1613] = {.lex_state = 199}, [1614] = {.lex_state = 199}, - [1615] = {.lex_state = 239}, - [1616] = {.lex_state = 239}, - [1617] = {.lex_state = 199}, - [1618] = {.lex_state = 239}, - [1619] = {.lex_state = 213}, - [1620] = {.lex_state = 239}, - [1621] = {.lex_state = 239}, - [1622] = {.lex_state = 239}, + [1615] = {.lex_state = 199}, + [1616] = {.lex_state = 197}, + [1617] = {.lex_state = 197}, + [1618] = {.lex_state = 197}, + [1619] = {.lex_state = 197}, + [1620] = {.lex_state = 197}, + [1621] = {.lex_state = 197}, + [1622] = {.lex_state = 197}, [1623] = {.lex_state = 239}, - [1624] = {.lex_state = 221}, - [1625] = {.lex_state = 221}, + [1624] = {.lex_state = 194}, + [1625] = {.lex_state = 194}, [1626] = {.lex_state = 213}, [1627] = {.lex_state = 239}, - [1628] = {.lex_state = 221}, + [1628] = {.lex_state = 239}, [1629] = {.lex_state = 239}, [1630] = {.lex_state = 239}, [1631] = {.lex_state = 239}, [1632] = {.lex_state = 239}, - [1633] = {.lex_state = 239}, - [1634] = {.lex_state = 213}, + [1633] = {.lex_state = 199}, + [1634] = {.lex_state = 239}, [1635] = {.lex_state = 213}, [1636] = {.lex_state = 239}, - [1637] = {.lex_state = 213}, + [1637] = {.lex_state = 239}, [1638] = {.lex_state = 239}, [1639] = {.lex_state = 239}, - [1640] = {.lex_state = 239}, + [1640] = {.lex_state = 199}, [1641] = {.lex_state = 239}, [1642] = {.lex_state = 239}, [1643] = {.lex_state = 239}, [1644] = {.lex_state = 239}, - [1645] = {.lex_state = 239}, - [1646] = {.lex_state = 239}, - [1647] = {.lex_state = 239}, + [1645] = {.lex_state = 221}, + [1646] = {.lex_state = 221}, + [1647] = {.lex_state = 213}, [1648] = {.lex_state = 239}, - [1649] = {.lex_state = 213}, + [1649] = {.lex_state = 239}, [1650] = {.lex_state = 239}, - [1651] = {.lex_state = 213}, - [1652] = {.lex_state = 213}, - [1653] = {.lex_state = 221}, - [1654] = {.lex_state = 213}, - [1655] = {.lex_state = 205}, - [1656] = {.lex_state = 221}, + [1651] = {.lex_state = 239}, + [1652] = {.lex_state = 221}, + [1653] = {.lex_state = 213}, + [1654] = {.lex_state = 239}, + [1655] = {.lex_state = 239}, + [1656] = {.lex_state = 239}, [1657] = {.lex_state = 239}, [1658] = {.lex_state = 239}, - [1659] = {.lex_state = 194}, - [1660] = {.lex_state = 221}, + [1659] = {.lex_state = 213}, + [1660] = {.lex_state = 239}, [1661] = {.lex_state = 239}, - [1662] = {.lex_state = 221}, + [1662] = {.lex_state = 239}, [1663] = {.lex_state = 239}, - [1664] = {.lex_state = 209}, - [1665] = {.lex_state = 209}, - [1666] = {.lex_state = 209}, - [1667] = {.lex_state = 209}, - [1668] = {.lex_state = 209}, - [1669] = {.lex_state = 205}, - [1670] = {.lex_state = 179}, - [1671] = {.lex_state = 209}, + [1664] = {.lex_state = 239}, + [1665] = {.lex_state = 239}, + [1666] = {.lex_state = 239}, + [1667] = {.lex_state = 213}, + [1668] = {.lex_state = 239}, + [1669] = {.lex_state = 239}, + [1670] = {.lex_state = 239}, + [1671] = {.lex_state = 213}, [1672] = {.lex_state = 213}, - [1673] = {.lex_state = 194}, + [1673] = {.lex_state = 221}, [1674] = {.lex_state = 213}, - [1675] = {.lex_state = 209}, - [1676] = {.lex_state = 213}, - [1677] = {.lex_state = 239}, - [1678] = {.lex_state = 173}, - [1679] = {.lex_state = 239}, - [1680] = {.lex_state = 217}, - [1681] = {.lex_state = 217}, - [1682] = {.lex_state = 205}, - [1683] = {.lex_state = 217}, - [1684] = {.lex_state = 181}, - [1685] = {.lex_state = 217}, - [1686] = {.lex_state = 239}, - [1687] = {.lex_state = 217}, - [1688] = {.lex_state = 213}, - [1689] = {.lex_state = 181}, - [1690] = {.lex_state = 239}, - [1691] = {.lex_state = 217}, - [1692] = {.lex_state = 181}, - [1693] = {.lex_state = 217}, - [1694] = {.lex_state = 173}, - [1695] = {.lex_state = 205}, - [1696] = {.lex_state = 239}, - [1697] = {.lex_state = 239}, - [1698] = {.lex_state = 176}, - [1699] = {.lex_state = 239}, - [1700] = {.lex_state = 239}, - [1701] = {.lex_state = 210}, - [1702] = {.lex_state = 239}, - [1703] = {.lex_state = 239}, - [1704] = {.lex_state = 239}, - [1705] = {.lex_state = 210}, - [1706] = {.lex_state = 239}, - [1707] = {.lex_state = 239}, - [1708] = {.lex_state = 239}, + [1675] = {.lex_state = 221}, + [1676] = {.lex_state = 205}, + [1677] = {.lex_state = 213}, + [1678] = {.lex_state = 221}, + [1679] = {.lex_state = 221}, + [1680] = {.lex_state = 239}, + [1681] = {.lex_state = 239}, + [1682] = {.lex_state = 239}, + [1683] = {.lex_state = 209}, + [1684] = {.lex_state = 213}, + [1685] = {.lex_state = 179}, + [1686] = {.lex_state = 194}, + [1687] = {.lex_state = 209}, + [1688] = {.lex_state = 205}, + [1689] = {.lex_state = 213}, + [1690] = {.lex_state = 209}, + [1691] = {.lex_state = 209}, + [1692] = {.lex_state = 209}, + [1693] = {.lex_state = 209}, + [1694] = {.lex_state = 209}, + [1695] = {.lex_state = 239}, + [1696] = {.lex_state = 217}, + [1697] = {.lex_state = 217}, + [1698] = {.lex_state = 239}, + [1699] = {.lex_state = 217}, + [1700] = {.lex_state = 217}, + [1701] = {.lex_state = 217}, + [1702] = {.lex_state = 205}, + [1703] = {.lex_state = 217}, + [1704] = {.lex_state = 173}, + [1705] = {.lex_state = 181}, + [1706] = {.lex_state = 217}, + [1707] = {.lex_state = 213}, + [1708] = {.lex_state = 181}, [1709] = {.lex_state = 239}, [1710] = {.lex_state = 239}, - [1711] = {.lex_state = 239}, - [1712] = {.lex_state = 239}, - [1713] = {.lex_state = 226}, - [1714] = {.lex_state = 239}, - [1715] = {.lex_state = 239}, - [1716] = {.lex_state = 239}, + [1711] = {.lex_state = 213}, + [1712] = {.lex_state = 205}, + [1713] = {.lex_state = 239}, + [1714] = {.lex_state = 181}, + [1715] = {.lex_state = 173}, + [1716] = {.lex_state = 176}, [1717] = {.lex_state = 239}, [1718] = {.lex_state = 239}, [1719] = {.lex_state = 239}, - [1720] = {.lex_state = 194}, - [1721] = {.lex_state = 181}, - [1722] = {.lex_state = 181}, - [1723] = {.lex_state = 209}, - [1724] = {.lex_state = 239}, - [1725] = {.lex_state = 181}, + [1720] = {.lex_state = 239}, + [1721] = {.lex_state = 210}, + [1722] = {.lex_state = 239}, + [1723] = {.lex_state = 239}, + [1724] = {.lex_state = 210}, + [1725] = {.lex_state = 239}, [1726] = {.lex_state = 239}, [1727] = {.lex_state = 239}, - [1728] = {.lex_state = 200}, + [1728] = {.lex_state = 239}, [1729] = {.lex_state = 239}, [1730] = {.lex_state = 239}, - [1731] = {.lex_state = 194}, - [1732] = {.lex_state = 226}, + [1731] = {.lex_state = 239}, + [1732] = {.lex_state = 239}, [1733] = {.lex_state = 239}, - [1734] = {.lex_state = 194}, + [1734] = {.lex_state = 239}, [1735] = {.lex_state = 239}, [1736] = {.lex_state = 239}, [1737] = {.lex_state = 239}, @@ -23810,28 +23960,28 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1739] = {.lex_state = 239}, [1740] = {.lex_state = 239}, [1741] = {.lex_state = 239}, - [1742] = {.lex_state = 194}, + [1742] = {.lex_state = 239}, [1743] = {.lex_state = 239}, - [1744] = {.lex_state = 194}, + [1744] = {.lex_state = 239}, [1745] = {.lex_state = 239}, [1746] = {.lex_state = 239}, [1747] = {.lex_state = 239}, - [1748] = {.lex_state = 239}, - [1749] = {.lex_state = 239}, - [1750] = {.lex_state = 239}, + [1748] = {.lex_state = 181}, + [1749] = {.lex_state = 209}, + [1750] = {.lex_state = 181}, [1751] = {.lex_state = 239}, - [1752] = {.lex_state = 194}, + [1752] = {.lex_state = 239}, [1753] = {.lex_state = 239}, [1754] = {.lex_state = 239}, [1755] = {.lex_state = 239}, [1756] = {.lex_state = 239}, - [1757] = {.lex_state = 226}, + [1757] = {.lex_state = 239}, [1758] = {.lex_state = 239}, - [1759] = {.lex_state = 239}, - [1760] = {.lex_state = 194}, + [1759] = {.lex_state = 194}, + [1760] = {.lex_state = 239}, [1761] = {.lex_state = 239}, [1762] = {.lex_state = 239}, - [1763] = {.lex_state = 226}, + [1763] = {.lex_state = 239}, [1764] = {.lex_state = 239}, [1765] = {.lex_state = 239}, [1766] = {.lex_state = 239}, @@ -23841,105 +23991,105 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1770] = {.lex_state = 239}, [1771] = {.lex_state = 239}, [1772] = {.lex_state = 239}, - [1773] = {.lex_state = 181}, + [1773] = {.lex_state = 239}, [1774] = {.lex_state = 239}, [1775] = {.lex_state = 239}, [1776] = {.lex_state = 239}, - [1777] = {.lex_state = 239}, + [1777] = {.lex_state = 226}, [1778] = {.lex_state = 239}, - [1779] = {.lex_state = 239}, + [1779] = {.lex_state = 194}, [1780] = {.lex_state = 239}, [1781] = {.lex_state = 239}, - [1782] = {.lex_state = 239}, - [1783] = {.lex_state = 194}, - [1784] = {.lex_state = 205}, + [1782] = {.lex_state = 226}, + [1783] = {.lex_state = 239}, + [1784] = {.lex_state = 226}, [1785] = {.lex_state = 239}, - [1786] = {.lex_state = 226}, - [1787] = {.lex_state = 239}, - [1788] = {.lex_state = 239}, - [1789] = {.lex_state = 239}, - [1790] = {.lex_state = 226}, + [1786] = {.lex_state = 239}, + [1787] = {.lex_state = 226}, + [1788] = {.lex_state = 226}, + [1789] = {.lex_state = 226}, + [1790] = {.lex_state = 239}, [1791] = {.lex_state = 239}, [1792] = {.lex_state = 239}, - [1793] = {.lex_state = 239}, + [1793] = {.lex_state = 226}, [1794] = {.lex_state = 239}, [1795] = {.lex_state = 239}, [1796] = {.lex_state = 239}, - [1797] = {.lex_state = 239}, - [1798] = {.lex_state = 239}, - [1799] = {.lex_state = 239}, - [1800] = {.lex_state = 194}, + [1797] = {.lex_state = 205}, + [1798] = {.lex_state = 226}, + [1799] = {.lex_state = 226}, + [1800] = {.lex_state = 226}, [1801] = {.lex_state = 239}, [1802] = {.lex_state = 239}, [1803] = {.lex_state = 239}, [1804] = {.lex_state = 239}, - [1805] = {.lex_state = 239}, - [1806] = {.lex_state = 239}, + [1805] = {.lex_state = 226}, + [1806] = {.lex_state = 226}, [1807] = {.lex_state = 239}, - [1808] = {.lex_state = 239}, + [1808] = {.lex_state = 226}, [1809] = {.lex_state = 239}, [1810] = {.lex_state = 239}, [1811] = {.lex_state = 239}, - [1812] = {.lex_state = 194}, - [1813] = {.lex_state = 226}, - [1814] = {.lex_state = 226}, + [1812] = {.lex_state = 239}, + [1813] = {.lex_state = 239}, + [1814] = {.lex_state = 194}, [1815] = {.lex_state = 239}, - [1816] = {.lex_state = 226}, + [1816] = {.lex_state = 200}, [1817] = {.lex_state = 239}, - [1818] = {.lex_state = 226}, + [1818] = {.lex_state = 239}, [1819] = {.lex_state = 239}, [1820] = {.lex_state = 239}, [1821] = {.lex_state = 239}, [1822] = {.lex_state = 239}, [1823] = {.lex_state = 239}, [1824] = {.lex_state = 239}, - [1825] = {.lex_state = 226}, - [1826] = {.lex_state = 226}, + [1825] = {.lex_state = 239}, + [1826] = {.lex_state = 239}, [1827] = {.lex_state = 239}, [1828] = {.lex_state = 239}, [1829] = {.lex_state = 239}, - [1830] = {.lex_state = 226}, - [1831] = {.lex_state = 194}, + [1830] = {.lex_state = 239}, + [1831] = {.lex_state = 239}, [1832] = {.lex_state = 239}, - [1833] = {.lex_state = 239}, - [1834] = {.lex_state = 205}, - [1835] = {.lex_state = 239}, - [1836] = {.lex_state = 240}, - [1837] = {.lex_state = 205}, - [1838] = {.lex_state = 240}, - [1839] = {.lex_state = 205}, - [1840] = {.lex_state = 205}, - [1841] = {.lex_state = 205}, - [1842] = {.lex_state = 205}, - [1843] = {.lex_state = 205}, - [1844] = {.lex_state = 204}, - [1845] = {.lex_state = 195}, - [1846] = {.lex_state = 240}, - [1847] = {.lex_state = 205}, - [1848] = {.lex_state = 205}, - [1849] = {.lex_state = 205}, - [1850] = {.lex_state = 205}, - [1851] = {.lex_state = 240}, - [1852] = {.lex_state = 205}, - [1853] = {.lex_state = 205}, - [1854] = {.lex_state = 205}, - [1855] = {.lex_state = 195}, - [1856] = {.lex_state = 209}, - [1857] = {.lex_state = 217}, - [1858] = {.lex_state = 176}, - [1859] = {.lex_state = 205}, + [1833] = {.lex_state = 194}, + [1834] = {.lex_state = 181}, + [1835] = {.lex_state = 194}, + [1836] = {.lex_state = 239}, + [1837] = {.lex_state = 194}, + [1838] = {.lex_state = 194}, + [1839] = {.lex_state = 239}, + [1840] = {.lex_state = 239}, + [1841] = {.lex_state = 239}, + [1842] = {.lex_state = 239}, + [1843] = {.lex_state = 239}, + [1844] = {.lex_state = 194}, + [1845] = {.lex_state = 194}, + [1846] = {.lex_state = 239}, + [1847] = {.lex_state = 194}, + [1848] = {.lex_state = 194}, + [1849] = {.lex_state = 239}, + [1850] = {.lex_state = 239}, + [1851] = {.lex_state = 239}, + [1852] = {.lex_state = 239}, + [1853] = {.lex_state = 239}, + [1854] = {.lex_state = 239}, + [1855] = {.lex_state = 239}, + [1856] = {.lex_state = 181}, + [1857] = {.lex_state = 239}, + [1858] = {.lex_state = 205}, + [1859] = {.lex_state = 176}, [1860] = {.lex_state = 205}, [1861] = {.lex_state = 205}, [1862] = {.lex_state = 195}, - [1863] = {.lex_state = 179}, + [1863] = {.lex_state = 204}, [1864] = {.lex_state = 205}, [1865] = {.lex_state = 205}, - [1866] = {.lex_state = 205}, + [1866] = {.lex_state = 176}, [1867] = {.lex_state = 205}, - [1868] = {.lex_state = 176}, - [1869] = {.lex_state = 205}, - [1870] = {.lex_state = 205}, - [1871] = {.lex_state = 205}, + [1868] = {.lex_state = 240}, + [1869] = {.lex_state = 195}, + [1870] = {.lex_state = 240}, + [1871] = {.lex_state = 240}, [1872] = {.lex_state = 205}, [1873] = {.lex_state = 205}, [1874] = {.lex_state = 205}, @@ -23947,7 +24097,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1876] = {.lex_state = 205}, [1877] = {.lex_state = 205}, [1878] = {.lex_state = 205}, - [1879] = {.lex_state = 205}, + [1879] = {.lex_state = 195}, [1880] = {.lex_state = 205}, [1881] = {.lex_state = 205}, [1882] = {.lex_state = 205}, @@ -23958,1581 +24108,1581 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1887] = {.lex_state = 205}, [1888] = {.lex_state = 205}, [1889] = {.lex_state = 205}, - [1890] = {.lex_state = 195}, - [1891] = {.lex_state = 239}, - [1892] = {.lex_state = 200}, - [1893] = {.lex_state = 238}, - [1894] = {.lex_state = 238}, - [1895] = {.lex_state = 217}, - [1896] = {.lex_state = 197}, - [1897] = {.lex_state = 238}, - [1898] = {.lex_state = 206}, - [1899] = {.lex_state = 197}, - [1900] = {.lex_state = 200}, - [1901] = {.lex_state = 197}, - [1902] = {.lex_state = 206}, - [1903] = {.lex_state = 241}, - [1904] = {.lex_state = 241}, - [1905] = {.lex_state = 200}, - [1906] = {.lex_state = 238}, - [1907] = {.lex_state = 239}, - [1908] = {.lex_state = 238}, - [1909] = {.lex_state = 238}, - [1910] = {.lex_state = 238}, - [1911] = {.lex_state = 200}, - [1912] = {.lex_state = 239}, - [1913] = {.lex_state = 240}, - [1914] = {.lex_state = 240}, - [1915] = {.lex_state = 239}, - [1916] = {.lex_state = 197}, - [1917] = {.lex_state = 195}, - [1918] = {.lex_state = 239}, - [1919] = {.lex_state = 240}, - [1920] = {.lex_state = 240}, - [1921] = {.lex_state = 197}, - [1922] = {.lex_state = 195}, - [1923] = {.lex_state = 197}, - [1924] = {.lex_state = 239}, - [1925] = {.lex_state = 239}, - [1926] = {.lex_state = 230}, - [1927] = {.lex_state = 206}, - [1928] = {.lex_state = 206}, - [1929] = {.lex_state = 239}, - [1930] = {.lex_state = 206}, - [1931] = {.lex_state = 195}, - [1932] = {.lex_state = 239}, + [1890] = {.lex_state = 205}, + [1891] = {.lex_state = 179}, + [1892] = {.lex_state = 205}, + [1893] = {.lex_state = 209}, + [1894] = {.lex_state = 217}, + [1895] = {.lex_state = 205}, + [1896] = {.lex_state = 205}, + [1897] = {.lex_state = 205}, + [1898] = {.lex_state = 205}, + [1899] = {.lex_state = 205}, + [1900] = {.lex_state = 205}, + [1901] = {.lex_state = 205}, + [1902] = {.lex_state = 205}, + [1903] = {.lex_state = 240}, + [1904] = {.lex_state = 239}, + [1905] = {.lex_state = 205}, + [1906] = {.lex_state = 205}, + [1907] = {.lex_state = 205}, + [1908] = {.lex_state = 205}, + [1909] = {.lex_state = 205}, + [1910] = {.lex_state = 195}, + [1911] = {.lex_state = 205}, + [1912] = {.lex_state = 205}, + [1913] = {.lex_state = 205}, + [1914] = {.lex_state = 205}, + [1915] = {.lex_state = 197}, + [1916] = {.lex_state = 206}, + [1917] = {.lex_state = 197}, + [1918] = {.lex_state = 197}, + [1919] = {.lex_state = 238}, + [1920] = {.lex_state = 200}, + [1921] = {.lex_state = 200}, + [1922] = {.lex_state = 238}, + [1923] = {.lex_state = 238}, + [1924] = {.lex_state = 200}, + [1925] = {.lex_state = 206}, + [1926] = {.lex_state = 238}, + [1927] = {.lex_state = 241}, + [1928] = {.lex_state = 241}, + [1929] = {.lex_state = 200}, + [1930] = {.lex_state = 238}, + [1931] = {.lex_state = 238}, + [1932] = {.lex_state = 238}, [1933] = {.lex_state = 239}, - [1934] = {.lex_state = 239}, - [1935] = {.lex_state = 206}, - [1936] = {.lex_state = 197}, - [1937] = {.lex_state = 195}, + [1934] = {.lex_state = 217}, + [1935] = {.lex_state = 239}, + [1936] = {.lex_state = 240}, + [1937] = {.lex_state = 206}, [1938] = {.lex_state = 206}, [1939] = {.lex_state = 240}, - [1940] = {.lex_state = 206}, - [1941] = {.lex_state = 197}, - [1942] = {.lex_state = 181}, - [1943] = {.lex_state = 206}, - [1944] = {.lex_state = 206}, - [1945] = {.lex_state = 197}, + [1940] = {.lex_state = 230}, + [1941] = {.lex_state = 198}, + [1942] = {.lex_state = 198}, + [1943] = {.lex_state = 197}, + [1944] = {.lex_state = 197}, + [1945] = {.lex_state = 195}, [1946] = {.lex_state = 206}, - [1947] = {.lex_state = 206}, + [1947] = {.lex_state = 181}, [1948] = {.lex_state = 206}, [1949] = {.lex_state = 195}, - [1950] = {.lex_state = 206}, + [1950] = {.lex_state = 195}, [1951] = {.lex_state = 206}, - [1952] = {.lex_state = 195}, - [1953] = {.lex_state = 240}, - [1954] = {.lex_state = 240}, - [1955] = {.lex_state = 195}, - [1956] = {.lex_state = 184}, - [1957] = {.lex_state = 240}, + [1952] = {.lex_state = 240}, + [1953] = {.lex_state = 198}, + [1954] = {.lex_state = 239}, + [1955] = {.lex_state = 197}, + [1956] = {.lex_state = 239}, + [1957] = {.lex_state = 195}, [1958] = {.lex_state = 240}, - [1959] = {.lex_state = 195}, - [1960] = {.lex_state = 195}, - [1961] = {.lex_state = 195}, - [1962] = {.lex_state = 195}, - [1963] = {.lex_state = 195}, - [1964] = {.lex_state = 195}, - [1965] = {.lex_state = 240}, - [1966] = {.lex_state = 240}, - [1967] = {.lex_state = 195}, - [1968] = {.lex_state = 240}, - [1969] = {.lex_state = 195}, - [1970] = {.lex_state = 240}, - [1971] = {.lex_state = 240}, - [1972] = {.lex_state = 240}, - [1973] = {.lex_state = 195}, - [1974] = {.lex_state = 240}, - [1975] = {.lex_state = 240}, - [1976] = {.lex_state = 240}, - [1977] = {.lex_state = 240}, - [1978] = {.lex_state = 240}, - [1979] = {.lex_state = 240}, - [1980] = {.lex_state = 240}, - [1981] = {.lex_state = 240}, + [1959] = {.lex_state = 206}, + [1960] = {.lex_state = 206}, + [1961] = {.lex_state = 198}, + [1962] = {.lex_state = 206}, + [1963] = {.lex_state = 239}, + [1964] = {.lex_state = 240}, + [1965] = {.lex_state = 239}, + [1966] = {.lex_state = 197}, + [1967] = {.lex_state = 239}, + [1968] = {.lex_state = 239}, + [1969] = {.lex_state = 239}, + [1970] = {.lex_state = 198}, + [1971] = {.lex_state = 198}, + [1972] = {.lex_state = 197}, + [1973] = {.lex_state = 206}, + [1974] = {.lex_state = 239}, + [1975] = {.lex_state = 197}, + [1976] = {.lex_state = 198}, + [1977] = {.lex_state = 198}, + [1978] = {.lex_state = 206}, + [1979] = {.lex_state = 206}, + [1980] = {.lex_state = 206}, + [1981] = {.lex_state = 239}, [1982] = {.lex_state = 195}, - [1983] = {.lex_state = 240}, - [1984] = {.lex_state = 240}, - [1985] = {.lex_state = 240}, - [1986] = {.lex_state = 240}, + [1983] = {.lex_state = 198}, + [1984] = {.lex_state = 206}, + [1985] = {.lex_state = 198}, + [1986] = {.lex_state = 198}, [1987] = {.lex_state = 240}, - [1988] = {.lex_state = 240}, - [1989] = {.lex_state = 195}, - [1990] = {.lex_state = 195}, + [1988] = {.lex_state = 195}, + [1989] = {.lex_state = 240}, + [1990] = {.lex_state = 240}, [1991] = {.lex_state = 195}, - [1992] = {.lex_state = 181}, - [1993] = {.lex_state = 239}, - [1994] = {.lex_state = 195}, + [1992] = {.lex_state = 195}, + [1993] = {.lex_state = 195}, + [1994] = {.lex_state = 240}, [1995] = {.lex_state = 240}, [1996] = {.lex_state = 240}, [1997] = {.lex_state = 240}, - [1998] = {.lex_state = 240}, + [1998] = {.lex_state = 195}, [1999] = {.lex_state = 240}, - [2000] = {.lex_state = 240}, + [2000] = {.lex_state = 195}, [2001] = {.lex_state = 240}, [2002] = {.lex_state = 240}, - [2003] = {.lex_state = 240}, - [2004] = {.lex_state = 240}, - [2005] = {.lex_state = 181}, - [2006] = {.lex_state = 240}, - [2007] = {.lex_state = 195}, - [2008] = {.lex_state = 195}, - [2009] = {.lex_state = 240}, - [2010] = {.lex_state = 181}, + [2003] = {.lex_state = 179}, + [2004] = {.lex_state = 204}, + [2005] = {.lex_state = 195}, + [2006] = {.lex_state = 188}, + [2007] = {.lex_state = 184}, + [2008] = {.lex_state = 184}, + [2009] = {.lex_state = 204}, + [2010] = {.lex_state = 195}, [2011] = {.lex_state = 240}, [2012] = {.lex_state = 240}, - [2013] = {.lex_state = 240}, - [2014] = {.lex_state = 195}, - [2015] = {.lex_state = 195}, + [2013] = {.lex_state = 241}, + [2014] = {.lex_state = 240}, + [2015] = {.lex_state = 240}, [2016] = {.lex_state = 240}, - [2017] = {.lex_state = 240}, - [2018] = {.lex_state = 195}, - [2019] = {.lex_state = 240}, + [2017] = {.lex_state = 239}, + [2018] = {.lex_state = 240}, + [2019] = {.lex_state = 188}, [2020] = {.lex_state = 195}, - [2021] = {.lex_state = 240}, + [2021] = {.lex_state = 195}, [2022] = {.lex_state = 195}, - [2023] = {.lex_state = 195}, - [2024] = {.lex_state = 195}, - [2025] = {.lex_state = 195}, - [2026] = {.lex_state = 195}, - [2027] = {.lex_state = 195}, - [2028] = {.lex_state = 195}, - [2029] = {.lex_state = 195}, + [2023] = {.lex_state = 179}, + [2024] = {.lex_state = 240}, + [2025] = {.lex_state = 240}, + [2026] = {.lex_state = 240}, + [2027] = {.lex_state = 240}, + [2028] = {.lex_state = 240}, + [2029] = {.lex_state = 240}, [2030] = {.lex_state = 240}, - [2031] = {.lex_state = 195}, + [2031] = {.lex_state = 206}, [2032] = {.lex_state = 195}, [2033] = {.lex_state = 240}, - [2034] = {.lex_state = 181}, + [2034] = {.lex_state = 240}, [2035] = {.lex_state = 240}, - [2036] = {.lex_state = 195}, + [2036] = {.lex_state = 239}, [2037] = {.lex_state = 240}, [2038] = {.lex_state = 240}, - [2039] = {.lex_state = 195}, - [2040] = {.lex_state = 200}, + [2039] = {.lex_state = 240}, + [2040] = {.lex_state = 195}, [2041] = {.lex_state = 240}, [2042] = {.lex_state = 195}, - [2043] = {.lex_state = 195}, + [2043] = {.lex_state = 240}, [2044] = {.lex_state = 240}, - [2045] = {.lex_state = 195}, - [2046] = {.lex_state = 195}, - [2047] = {.lex_state = 195}, - [2048] = {.lex_state = 241}, - [2049] = {.lex_state = 240}, - [2050] = {.lex_state = 197}, - [2051] = {.lex_state = 200}, + [2045] = {.lex_state = 240}, + [2046] = {.lex_state = 240}, + [2047] = {.lex_state = 240}, + [2048] = {.lex_state = 240}, + [2049] = {.lex_state = 181}, + [2050] = {.lex_state = 240}, + [2051] = {.lex_state = 195}, [2052] = {.lex_state = 195}, - [2053] = {.lex_state = 239}, - [2054] = {.lex_state = 195}, - [2055] = {.lex_state = 205}, - [2056] = {.lex_state = 239}, + [2053] = {.lex_state = 240}, + [2054] = {.lex_state = 181}, + [2055] = {.lex_state = 240}, + [2056] = {.lex_state = 240}, [2057] = {.lex_state = 240}, [2058] = {.lex_state = 195}, - [2059] = {.lex_state = 195}, - [2060] = {.lex_state = 195}, - [2061] = {.lex_state = 239}, - [2062] = {.lex_state = 195}, - [2063] = {.lex_state = 195}, - [2064] = {.lex_state = 188}, - [2065] = {.lex_state = 188}, - [2066] = {.lex_state = 195}, + [2059] = {.lex_state = 240}, + [2060] = {.lex_state = 240}, + [2061] = {.lex_state = 240}, + [2062] = {.lex_state = 240}, + [2063] = {.lex_state = 240}, + [2064] = {.lex_state = 240}, + [2065] = {.lex_state = 240}, + [2066] = {.lex_state = 240}, [2067] = {.lex_state = 240}, - [2068] = {.lex_state = 241}, - [2069] = {.lex_state = 239}, - [2070] = {.lex_state = 195}, - [2071] = {.lex_state = 195}, - [2072] = {.lex_state = 195}, - [2073] = {.lex_state = 195}, - [2074] = {.lex_state = 195}, + [2068] = {.lex_state = 240}, + [2069] = {.lex_state = 240}, + [2070] = {.lex_state = 240}, + [2071] = {.lex_state = 240}, + [2072] = {.lex_state = 240}, + [2073] = {.lex_state = 240}, + [2074] = {.lex_state = 240}, [2075] = {.lex_state = 240}, [2076] = {.lex_state = 240}, - [2077] = {.lex_state = 195}, - [2078] = {.lex_state = 195}, - [2079] = {.lex_state = 195}, + [2077] = {.lex_state = 240}, + [2078] = {.lex_state = 240}, + [2079] = {.lex_state = 240}, [2080] = {.lex_state = 195}, [2081] = {.lex_state = 195}, - [2082] = {.lex_state = 195}, + [2082] = {.lex_state = 240}, [2083] = {.lex_state = 195}, - [2084] = {.lex_state = 240}, + [2084] = {.lex_state = 195}, [2085] = {.lex_state = 195}, [2086] = {.lex_state = 195}, - [2087] = {.lex_state = 195}, - [2088] = {.lex_state = 195}, - [2089] = {.lex_state = 195}, - [2090] = {.lex_state = 195}, + [2087] = {.lex_state = 181}, + [2088] = {.lex_state = 240}, + [2089] = {.lex_state = 240}, + [2090] = {.lex_state = 240}, [2091] = {.lex_state = 240}, - [2092] = {.lex_state = 239}, - [2093] = {.lex_state = 195}, - [2094] = {.lex_state = 195}, - [2095] = {.lex_state = 195}, + [2092] = {.lex_state = 240}, + [2093] = {.lex_state = 239}, + [2094] = {.lex_state = 240}, + [2095] = {.lex_state = 239}, [2096] = {.lex_state = 240}, - [2097] = {.lex_state = 188}, + [2097] = {.lex_state = 195}, [2098] = {.lex_state = 195}, - [2099] = {.lex_state = 179}, - [2100] = {.lex_state = 195}, - [2101] = {.lex_state = 195}, - [2102] = {.lex_state = 240}, + [2099] = {.lex_state = 240}, + [2100] = {.lex_state = 240}, + [2101] = {.lex_state = 240}, + [2102] = {.lex_state = 195}, [2103] = {.lex_state = 195}, [2104] = {.lex_state = 195}, - [2105] = {.lex_state = 240}, - [2106] = {.lex_state = 179}, - [2107] = {.lex_state = 206}, - [2108] = {.lex_state = 240}, + [2105] = {.lex_state = 195}, + [2106] = {.lex_state = 195}, + [2107] = {.lex_state = 195}, + [2108] = {.lex_state = 195}, [2109] = {.lex_state = 195}, [2110] = {.lex_state = 195}, - [2111] = {.lex_state = 240}, - [2112] = {.lex_state = 179}, + [2111] = {.lex_state = 205}, + [2112] = {.lex_state = 195}, [2113] = {.lex_state = 240}, - [2114] = {.lex_state = 195}, - [2115] = {.lex_state = 184}, - [2116] = {.lex_state = 200}, - [2117] = {.lex_state = 239}, - [2118] = {.lex_state = 240}, + [2114] = {.lex_state = 181}, + [2115] = {.lex_state = 240}, + [2116] = {.lex_state = 241}, + [2117] = {.lex_state = 195}, + [2118] = {.lex_state = 195}, [2119] = {.lex_state = 240}, [2120] = {.lex_state = 240}, - [2121] = {.lex_state = 240}, + [2121] = {.lex_state = 239}, [2122] = {.lex_state = 240}, - [2123] = {.lex_state = 240}, - [2124] = {.lex_state = 240}, - [2125] = {.lex_state = 240}, - [2126] = {.lex_state = 240}, - [2127] = {.lex_state = 195}, + [2123] = {.lex_state = 200}, + [2124] = {.lex_state = 197}, + [2125] = {.lex_state = 195}, + [2126] = {.lex_state = 195}, + [2127] = {.lex_state = 205}, [2128] = {.lex_state = 240}, - [2129] = {.lex_state = 240}, - [2130] = {.lex_state = 240}, - [2131] = {.lex_state = 179}, - [2132] = {.lex_state = 240}, - [2133] = {.lex_state = 195}, + [2129] = {.lex_state = 195}, + [2130] = {.lex_state = 195}, + [2131] = {.lex_state = 195}, + [2132] = {.lex_state = 239}, + [2133] = {.lex_state = 200}, [2134] = {.lex_state = 240}, - [2135] = {.lex_state = 239}, - [2136] = {.lex_state = 239}, - [2137] = {.lex_state = 240}, - [2138] = {.lex_state = 240}, - [2139] = {.lex_state = 240}, - [2140] = {.lex_state = 195}, - [2141] = {.lex_state = 195}, - [2142] = {.lex_state = 195}, - [2143] = {.lex_state = 240}, - [2144] = {.lex_state = 240}, + [2135] = {.lex_state = 240}, + [2136] = {.lex_state = 195}, + [2137] = {.lex_state = 195}, + [2138] = {.lex_state = 195}, + [2139] = {.lex_state = 188}, + [2140] = {.lex_state = 240}, + [2141] = {.lex_state = 240}, + [2142] = {.lex_state = 240}, + [2143] = {.lex_state = 195}, + [2144] = {.lex_state = 195}, [2145] = {.lex_state = 195}, [2146] = {.lex_state = 195}, [2147] = {.lex_state = 195}, - [2148] = {.lex_state = 240}, - [2149] = {.lex_state = 204}, + [2148] = {.lex_state = 195}, + [2149] = {.lex_state = 195}, [2150] = {.lex_state = 240}, [2151] = {.lex_state = 195}, [2152] = {.lex_state = 195}, - [2153] = {.lex_state = 240}, - [2154] = {.lex_state = 240}, - [2155] = {.lex_state = 204}, - [2156] = {.lex_state = 240}, - [2157] = {.lex_state = 240}, - [2158] = {.lex_state = 240}, - [2159] = {.lex_state = 205}, - [2160] = {.lex_state = 195}, - [2161] = {.lex_state = 195}, - [2162] = {.lex_state = 195}, + [2153] = {.lex_state = 195}, + [2154] = {.lex_state = 195}, + [2155] = {.lex_state = 195}, + [2156] = {.lex_state = 195}, + [2157] = {.lex_state = 195}, + [2158] = {.lex_state = 195}, + [2159] = {.lex_state = 195}, + [2160] = {.lex_state = 200}, + [2161] = {.lex_state = 240}, + [2162] = {.lex_state = 240}, [2163] = {.lex_state = 240}, - [2164] = {.lex_state = 240}, - [2165] = {.lex_state = 195}, + [2164] = {.lex_state = 195}, + [2165] = {.lex_state = 240}, [2166] = {.lex_state = 195}, - [2167] = {.lex_state = 195}, - [2168] = {.lex_state = 240}, - [2169] = {.lex_state = 198}, - [2170] = {.lex_state = 230}, - [2171] = {.lex_state = 179}, - [2172] = {.lex_state = 200}, - [2173] = {.lex_state = 200}, - [2174] = {.lex_state = 197}, - [2175] = {.lex_state = 200}, - [2176] = {.lex_state = 198}, - [2177] = {.lex_state = 179}, - [2178] = {.lex_state = 179}, - [2179] = {.lex_state = 179}, - [2180] = {.lex_state = 230}, - [2181] = {.lex_state = 200}, - [2182] = {.lex_state = 187}, - [2183] = {.lex_state = 200}, - [2184] = {.lex_state = 179}, - [2185] = {.lex_state = 198}, - [2186] = {.lex_state = 200}, - [2187] = {.lex_state = 179}, - [2188] = {.lex_state = 179}, - [2189] = {.lex_state = 187}, - [2190] = {.lex_state = 200}, - [2191] = {.lex_state = 200}, - [2192] = {.lex_state = 200}, - [2193] = {.lex_state = 200}, - [2194] = {.lex_state = 198}, - [2195] = {.lex_state = 197}, - [2196] = {.lex_state = 187}, - [2197] = {.lex_state = 197}, - [2198] = {.lex_state = 230}, - [2199] = {.lex_state = 179}, - [2200] = {.lex_state = 200}, - [2201] = {.lex_state = 200}, - [2202] = {.lex_state = 185}, - [2203] = {.lex_state = 198}, - [2204] = {.lex_state = 185}, - [2205] = {.lex_state = 197}, - [2206] = {.lex_state = 200}, - [2207] = {.lex_state = 200}, - [2208] = {.lex_state = 189}, - [2209] = {.lex_state = 181}, - [2210] = {.lex_state = 200}, - [2211] = {.lex_state = 197}, - [2212] = {.lex_state = 230}, - [2213] = {.lex_state = 181}, - [2214] = {.lex_state = 197}, - [2215] = {.lex_state = 239}, - [2216] = {.lex_state = 206}, - [2217] = {.lex_state = 200}, + [2167] = {.lex_state = 239}, + [2168] = {.lex_state = 195}, + [2169] = {.lex_state = 195}, + [2170] = {.lex_state = 240}, + [2171] = {.lex_state = 195}, + [2172] = {.lex_state = 179}, + [2173] = {.lex_state = 240}, + [2174] = {.lex_state = 195}, + [2175] = {.lex_state = 195}, + [2176] = {.lex_state = 195}, + [2177] = {.lex_state = 195}, + [2178] = {.lex_state = 195}, + [2179] = {.lex_state = 195}, + [2180] = {.lex_state = 195}, + [2181] = {.lex_state = 195}, + [2182] = {.lex_state = 195}, + [2183] = {.lex_state = 195}, + [2184] = {.lex_state = 195}, + [2185] = {.lex_state = 195}, + [2186] = {.lex_state = 195}, + [2187] = {.lex_state = 195}, + [2188] = {.lex_state = 195}, + [2189] = {.lex_state = 195}, + [2190] = {.lex_state = 195}, + [2191] = {.lex_state = 195}, + [2192] = {.lex_state = 195}, + [2193] = {.lex_state = 195}, + [2194] = {.lex_state = 195}, + [2195] = {.lex_state = 195}, + [2196] = {.lex_state = 179}, + [2197] = {.lex_state = 195}, + [2198] = {.lex_state = 240}, + [2199] = {.lex_state = 195}, + [2200] = {.lex_state = 195}, + [2201] = {.lex_state = 195}, + [2202] = {.lex_state = 239}, + [2203] = {.lex_state = 195}, + [2204] = {.lex_state = 195}, + [2205] = {.lex_state = 195}, + [2206] = {.lex_state = 240}, + [2207] = {.lex_state = 240}, + [2208] = {.lex_state = 239}, + [2209] = {.lex_state = 240}, + [2210] = {.lex_state = 240}, + [2211] = {.lex_state = 195}, + [2212] = {.lex_state = 198}, + [2213] = {.lex_state = 200}, + [2214] = {.lex_state = 200}, + [2215] = {.lex_state = 179}, + [2216] = {.lex_state = 200}, + [2217] = {.lex_state = 185}, [2218] = {.lex_state = 198}, - [2219] = {.lex_state = 198}, - [2220] = {.lex_state = 198}, + [2219] = {.lex_state = 179}, + [2220] = {.lex_state = 230}, [2221] = {.lex_state = 200}, - [2222] = {.lex_state = 200}, - [2223] = {.lex_state = 200}, - [2224] = {.lex_state = 198}, - [2225] = {.lex_state = 200}, + [2222] = {.lex_state = 179}, + [2223] = {.lex_state = 230}, + [2224] = {.lex_state = 197}, + [2225] = {.lex_state = 198}, [2226] = {.lex_state = 200}, [2227] = {.lex_state = 200}, [2228] = {.lex_state = 200}, - [2229] = {.lex_state = 230}, - [2230] = {.lex_state = 197}, + [2229] = {.lex_state = 200}, + [2230] = {.lex_state = 200}, [2231] = {.lex_state = 200}, - [2232] = {.lex_state = 200}, - [2233] = {.lex_state = 200}, - [2234] = {.lex_state = 197}, - [2235] = {.lex_state = 200}, - [2236] = {.lex_state = 191}, - [2237] = {.lex_state = 198}, - [2238] = {.lex_state = 198}, + [2232] = {.lex_state = 179}, + [2233] = {.lex_state = 187}, + [2234] = {.lex_state = 187}, + [2235] = {.lex_state = 187}, + [2236] = {.lex_state = 197}, + [2237] = {.lex_state = 185}, + [2238] = {.lex_state = 179}, [2239] = {.lex_state = 179}, - [2240] = {.lex_state = 200}, - [2241] = {.lex_state = 200}, - [2242] = {.lex_state = 179}, - [2243] = {.lex_state = 200}, - [2244] = {.lex_state = 239}, + [2240] = {.lex_state = 198}, + [2241] = {.lex_state = 179}, + [2242] = {.lex_state = 197}, + [2243] = {.lex_state = 198}, + [2244] = {.lex_state = 197}, [2245] = {.lex_state = 200}, [2246] = {.lex_state = 200}, - [2247] = {.lex_state = 198}, - [2248] = {.lex_state = 197}, - [2249] = {.lex_state = 200}, - [2250] = {.lex_state = 239}, - [2251] = {.lex_state = 200}, - [2252] = {.lex_state = 181}, - [2253] = {.lex_state = 200}, - [2254] = {.lex_state = 197}, + [2247] = {.lex_state = 200}, + [2248] = {.lex_state = 179}, + [2249] = {.lex_state = 230}, + [2250] = {.lex_state = 200}, + [2251] = {.lex_state = 230}, + [2252] = {.lex_state = 200}, + [2253] = {.lex_state = 197}, + [2254] = {.lex_state = 200}, [2255] = {.lex_state = 200}, - [2256] = {.lex_state = 197}, + [2256] = {.lex_state = 200}, [2257] = {.lex_state = 200}, - [2258] = {.lex_state = 200}, - [2259] = {.lex_state = 239}, - [2260] = {.lex_state = 239}, - [2261] = {.lex_state = 200}, + [2258] = {.lex_state = 191}, + [2259] = {.lex_state = 197}, + [2260] = {.lex_state = 200}, + [2261] = {.lex_state = 197}, [2262] = {.lex_state = 200}, [2263] = {.lex_state = 200}, [2264] = {.lex_state = 200}, - [2265] = {.lex_state = 197}, + [2265] = {.lex_state = 239}, [2266] = {.lex_state = 179}, - [2267] = {.lex_state = 200}, - [2268] = {.lex_state = 200}, + [2267] = {.lex_state = 181}, + [2268] = {.lex_state = 197}, [2269] = {.lex_state = 197}, [2270] = {.lex_state = 198}, [2271] = {.lex_state = 239}, [2272] = {.lex_state = 200}, - [2273] = {.lex_state = 200}, + [2273] = {.lex_state = 206}, [2274] = {.lex_state = 200}, - [2275] = {.lex_state = 197}, - [2276] = {.lex_state = 200}, - [2277] = {.lex_state = 197}, + [2275] = {.lex_state = 200}, + [2276] = {.lex_state = 206}, + [2277] = {.lex_state = 239}, [2278] = {.lex_state = 197}, - [2279] = {.lex_state = 198}, - [2280] = {.lex_state = 198}, - [2281] = {.lex_state = 206}, - [2282] = {.lex_state = 181}, - [2283] = {.lex_state = 200}, - [2284] = {.lex_state = 198}, - [2285] = {.lex_state = 191}, - [2286] = {.lex_state = 189}, - [2287] = {.lex_state = 198}, + [2279] = {.lex_state = 197}, + [2280] = {.lex_state = 200}, + [2281] = {.lex_state = 197}, + [2282] = {.lex_state = 197}, + [2283] = {.lex_state = 239}, + [2284] = {.lex_state = 200}, + [2285] = {.lex_state = 200}, + [2286] = {.lex_state = 197}, + [2287] = {.lex_state = 239}, [2288] = {.lex_state = 197}, [2289] = {.lex_state = 200}, - [2290] = {.lex_state = 200}, - [2291] = {.lex_state = 239}, - [2292] = {.lex_state = 239}, - [2293] = {.lex_state = 197}, - [2294] = {.lex_state = 200}, + [2290] = {.lex_state = 239}, + [2291] = {.lex_state = 197}, + [2292] = {.lex_state = 200}, + [2293] = {.lex_state = 239}, + [2294] = {.lex_state = 239}, [2295] = {.lex_state = 197}, - [2296] = {.lex_state = 239}, - [2297] = {.lex_state = 181}, - [2298] = {.lex_state = 198}, - [2299] = {.lex_state = 200}, - [2300] = {.lex_state = 179}, - [2301] = {.lex_state = 191}, - [2302] = {.lex_state = 200}, - [2303] = {.lex_state = 200}, - [2304] = {.lex_state = 239}, + [2296] = {.lex_state = 179}, + [2297] = {.lex_state = 197}, + [2298] = {.lex_state = 200}, + [2299] = {.lex_state = 239}, + [2300] = {.lex_state = 200}, + [2301] = {.lex_state = 198}, + [2302] = {.lex_state = 181}, + [2303] = {.lex_state = 181}, + [2304] = {.lex_state = 200}, [2305] = {.lex_state = 239}, - [2306] = {.lex_state = 239}, - [2307] = {.lex_state = 239}, - [2308] = {.lex_state = 239}, - [2309] = {.lex_state = 200}, + [2306] = {.lex_state = 200}, + [2307] = {.lex_state = 200}, + [2308] = {.lex_state = 179}, + [2309] = {.lex_state = 181}, [2310] = {.lex_state = 200}, - [2311] = {.lex_state = 206}, + [2311] = {.lex_state = 239}, [2312] = {.lex_state = 200}, - [2313] = {.lex_state = 197}, + [2313] = {.lex_state = 230}, [2314] = {.lex_state = 200}, [2315] = {.lex_state = 200}, - [2316] = {.lex_state = 200}, - [2317] = {.lex_state = 200}, - [2318] = {.lex_state = 200}, - [2319] = {.lex_state = 204}, - [2320] = {.lex_state = 239}, + [2316] = {.lex_state = 239}, + [2317] = {.lex_state = 181}, + [2318] = {.lex_state = 189}, + [2319] = {.lex_state = 191}, + [2320] = {.lex_state = 200}, [2321] = {.lex_state = 200}, [2322] = {.lex_state = 200}, - [2323] = {.lex_state = 229}, - [2324] = {.lex_state = 197}, - [2325] = {.lex_state = 200}, - [2326] = {.lex_state = 229}, + [2323] = {.lex_state = 200}, + [2324] = {.lex_state = 191}, + [2325] = {.lex_state = 239}, + [2326] = {.lex_state = 189}, [2327] = {.lex_state = 200}, - [2328] = {.lex_state = 229}, - [2329] = {.lex_state = 206}, - [2330] = {.lex_state = 206}, - [2331] = {.lex_state = 200}, - [2332] = {.lex_state = 229}, - [2333] = {.lex_state = 181}, - [2334] = {.lex_state = 206}, - [2335] = {.lex_state = 206}, - [2336] = {.lex_state = 206}, - [2337] = {.lex_state = 229}, - [2338] = {.lex_state = 197}, - [2339] = {.lex_state = 181}, - [2340] = {.lex_state = 204}, - [2341] = {.lex_state = 229}, - [2342] = {.lex_state = 181}, - [2343] = {.lex_state = 206}, - [2344] = {.lex_state = 229}, - [2345] = {.lex_state = 181}, + [2328] = {.lex_state = 200}, + [2329] = {.lex_state = 200}, + [2330] = {.lex_state = 200}, + [2331] = {.lex_state = 239}, + [2332] = {.lex_state = 200}, + [2333] = {.lex_state = 179}, + [2334] = {.lex_state = 197}, + [2335] = {.lex_state = 200}, + [2336] = {.lex_state = 200}, + [2337] = {.lex_state = 200}, + [2338] = {.lex_state = 200}, + [2339] = {.lex_state = 200}, + [2340] = {.lex_state = 200}, + [2341] = {.lex_state = 200}, + [2342] = {.lex_state = 200}, + [2343] = {.lex_state = 200}, + [2344] = {.lex_state = 200}, + [2345] = {.lex_state = 200}, [2346] = {.lex_state = 200}, - [2347] = {.lex_state = 197}, - [2348] = {.lex_state = 229}, - [2349] = {.lex_state = 229}, - [2350] = {.lex_state = 206}, - [2351] = {.lex_state = 206}, - [2352] = {.lex_state = 206}, + [2347] = {.lex_state = 200}, + [2348] = {.lex_state = 200}, + [2349] = {.lex_state = 200}, + [2350] = {.lex_state = 200}, + [2351] = {.lex_state = 200}, + [2352] = {.lex_state = 200}, [2353] = {.lex_state = 200}, [2354] = {.lex_state = 200}, - [2355] = {.lex_state = 229}, - [2356] = {.lex_state = 200}, + [2355] = {.lex_state = 200}, + [2356] = {.lex_state = 229}, [2357] = {.lex_state = 229}, - [2358] = {.lex_state = 187}, - [2359] = {.lex_state = 239}, - [2360] = {.lex_state = 206}, - [2361] = {.lex_state = 229}, - [2362] = {.lex_state = 229}, + [2358] = {.lex_state = 229}, + [2359] = {.lex_state = 229}, + [2360] = {.lex_state = 229}, + [2361] = {.lex_state = 197}, + [2362] = {.lex_state = 200}, [2363] = {.lex_state = 229}, - [2364] = {.lex_state = 206}, - [2365] = {.lex_state = 200}, - [2366] = {.lex_state = 187}, - [2367] = {.lex_state = 198}, - [2368] = {.lex_state = 187}, - [2369] = {.lex_state = 191}, - [2370] = {.lex_state = 187}, - [2371] = {.lex_state = 198}, - [2372] = {.lex_state = 187}, - [2373] = {.lex_state = 200}, - [2374] = {.lex_state = 198}, - [2375] = {.lex_state = 209}, - [2376] = {.lex_state = 187}, - [2377] = {.lex_state = 197}, - [2378] = {.lex_state = 187}, - [2379] = {.lex_state = 197}, - [2380] = {.lex_state = 197}, - [2381] = {.lex_state = 197}, - [2382] = {.lex_state = 187}, - [2383] = {.lex_state = 230}, - [2384] = {.lex_state = 197}, - [2385] = {.lex_state = 238}, - [2386] = {.lex_state = 198}, - [2387] = {.lex_state = 197}, - [2388] = {.lex_state = 197}, - [2389] = {.lex_state = 181}, - [2390] = {.lex_state = 181}, - [2391] = {.lex_state = 181}, - [2392] = {.lex_state = 181}, - [2393] = {.lex_state = 238}, - [2394] = {.lex_state = 238}, - [2395] = {.lex_state = 203}, - [2396] = {.lex_state = 200}, - [2397] = {.lex_state = 200}, - [2398] = {.lex_state = 197}, - [2399] = {.lex_state = 211}, - [2400] = {.lex_state = 238}, - [2401] = {.lex_state = 200}, - [2402] = {.lex_state = 200}, + [2364] = {.lex_state = 229}, + [2365] = {.lex_state = 229}, + [2366] = {.lex_state = 206}, + [2367] = {.lex_state = 229}, + [2368] = {.lex_state = 229}, + [2369] = {.lex_state = 206}, + [2370] = {.lex_state = 197}, + [2371] = {.lex_state = 229}, + [2372] = {.lex_state = 229}, + [2373] = {.lex_state = 206}, + [2374] = {.lex_state = 229}, + [2375] = {.lex_state = 197}, + [2376] = {.lex_state = 181}, + [2377] = {.lex_state = 181}, + [2378] = {.lex_state = 181}, + [2379] = {.lex_state = 181}, + [2380] = {.lex_state = 187}, + [2381] = {.lex_state = 206}, + [2382] = {.lex_state = 206}, + [2383] = {.lex_state = 204}, + [2384] = {.lex_state = 204}, + [2385] = {.lex_state = 239}, + [2386] = {.lex_state = 206}, + [2387] = {.lex_state = 206}, + [2388] = {.lex_state = 206}, + [2389] = {.lex_state = 206}, + [2390] = {.lex_state = 239}, + [2391] = {.lex_state = 200}, + [2392] = {.lex_state = 206}, + [2393] = {.lex_state = 197}, + [2394] = {.lex_state = 206}, + [2395] = {.lex_state = 206}, + [2396] = {.lex_state = 229}, + [2397] = {.lex_state = 238}, + [2398] = {.lex_state = 230}, + [2399] = {.lex_state = 200}, + [2400] = {.lex_state = 197}, + [2401] = {.lex_state = 197}, + [2402] = {.lex_state = 197}, [2403] = {.lex_state = 200}, - [2404] = {.lex_state = 198}, - [2405] = {.lex_state = 200}, - [2406] = {.lex_state = 238}, - [2407] = {.lex_state = 200}, - [2408] = {.lex_state = 200}, - [2409] = {.lex_state = 238}, - [2410] = {.lex_state = 200}, - [2411] = {.lex_state = 238}, + [2404] = {.lex_state = 181}, + [2405] = {.lex_state = 181}, + [2406] = {.lex_state = 181}, + [2407] = {.lex_state = 181}, + [2408] = {.lex_state = 197}, + [2409] = {.lex_state = 200}, + [2410] = {.lex_state = 187}, + [2411] = {.lex_state = 200}, [2412] = {.lex_state = 200}, [2413] = {.lex_state = 200}, - [2414] = {.lex_state = 200}, - [2415] = {.lex_state = 200}, - [2416] = {.lex_state = 200}, - [2417] = {.lex_state = 200}, - [2418] = {.lex_state = 200}, - [2419] = {.lex_state = 200}, - [2420] = {.lex_state = 200}, - [2421] = {.lex_state = 200}, - [2422] = {.lex_state = 200}, + [2414] = {.lex_state = 209}, + [2415] = {.lex_state = 187}, + [2416] = {.lex_state = 198}, + [2417] = {.lex_state = 197}, + [2418] = {.lex_state = 203}, + [2419] = {.lex_state = 187}, + [2420] = {.lex_state = 187}, + [2421] = {.lex_state = 238}, + [2422] = {.lex_state = 238}, [2423] = {.lex_state = 200}, - [2424] = {.lex_state = 187}, - [2425] = {.lex_state = 200}, - [2426] = {.lex_state = 200}, - [2427] = {.lex_state = 200}, + [2424] = {.lex_state = 238}, + [2425] = {.lex_state = 187}, + [2426] = {.lex_state = 187}, + [2427] = {.lex_state = 198}, [2428] = {.lex_state = 200}, - [2429] = {.lex_state = 200}, - [2430] = {.lex_state = 200}, - [2431] = {.lex_state = 200}, - [2432] = {.lex_state = 200}, - [2433] = {.lex_state = 200}, - [2434] = {.lex_state = 238}, - [2435] = {.lex_state = 200}, - [2436] = {.lex_state = 200}, - [2437] = {.lex_state = 187}, - [2438] = {.lex_state = 217}, - [2439] = {.lex_state = 200}, + [2429] = {.lex_state = 187}, + [2430] = {.lex_state = 198}, + [2431] = {.lex_state = 198}, + [2432] = {.lex_state = 197}, + [2433] = {.lex_state = 191}, + [2434] = {.lex_state = 197}, + [2435] = {.lex_state = 197}, + [2436] = {.lex_state = 198}, + [2437] = {.lex_state = 211}, + [2438] = {.lex_state = 200}, + [2439] = {.lex_state = 238}, [2440] = {.lex_state = 238}, [2441] = {.lex_state = 200}, [2442] = {.lex_state = 200}, [2443] = {.lex_state = 200}, - [2444] = {.lex_state = 191}, - [2445] = {.lex_state = 191}, - [2446] = {.lex_state = 191}, - [2447] = {.lex_state = 191}, + [2444] = {.lex_state = 200}, + [2445] = {.lex_state = 200}, + [2446] = {.lex_state = 200}, + [2447] = {.lex_state = 200}, [2448] = {.lex_state = 200}, - [2449] = {.lex_state = 200}, - [2450] = {.lex_state = 187}, + [2449] = {.lex_state = 238}, + [2450] = {.lex_state = 200}, [2451] = {.lex_state = 200}, [2452] = {.lex_state = 200}, - [2453] = {.lex_state = 200}, - [2454] = {.lex_state = 238}, - [2455] = {.lex_state = 200}, - [2456] = {.lex_state = 200}, - [2457] = {.lex_state = 200}, - [2458] = {.lex_state = 200}, - [2459] = {.lex_state = 200}, + [2453] = {.lex_state = 238}, + [2454] = {.lex_state = 200}, + [2455] = {.lex_state = 238}, + [2456] = {.lex_state = 238}, + [2457] = {.lex_state = 238}, + [2458] = {.lex_state = 238}, + [2459] = {.lex_state = 238}, [2460] = {.lex_state = 200}, - [2461] = {.lex_state = 200}, + [2461] = {.lex_state = 238}, [2462] = {.lex_state = 200}, - [2463] = {.lex_state = 200}, - [2464] = {.lex_state = 200}, - [2465] = {.lex_state = 200}, - [2466] = {.lex_state = 200}, - [2467] = {.lex_state = 238}, - [2468] = {.lex_state = 238}, + [2463] = {.lex_state = 238}, + [2464] = {.lex_state = 238}, + [2465] = {.lex_state = 217}, + [2466] = {.lex_state = 238}, + [2467] = {.lex_state = 218}, + [2468] = {.lex_state = 200}, [2469] = {.lex_state = 238}, - [2470] = {.lex_state = 200}, + [2470] = {.lex_state = 187}, [2471] = {.lex_state = 200}, - [2472] = {.lex_state = 200}, - [2473] = {.lex_state = 238}, - [2474] = {.lex_state = 238}, + [2472] = {.lex_state = 238}, + [2473] = {.lex_state = 191}, + [2474] = {.lex_state = 191}, [2475] = {.lex_state = 238}, - [2476] = {.lex_state = 238}, - [2477] = {.lex_state = 200}, - [2478] = {.lex_state = 200}, + [2476] = {.lex_state = 191}, + [2477] = {.lex_state = 191}, + [2478] = {.lex_state = 238}, [2479] = {.lex_state = 200}, - [2480] = {.lex_state = 200}, + [2480] = {.lex_state = 238}, [2481] = {.lex_state = 200}, - [2482] = {.lex_state = 200}, + [2482] = {.lex_state = 238}, [2483] = {.lex_state = 238}, [2484] = {.lex_state = 200}, [2485] = {.lex_state = 200}, [2486] = {.lex_state = 200}, - [2487] = {.lex_state = 238}, - [2488] = {.lex_state = 238}, - [2489] = {.lex_state = 238}, - [2490] = {.lex_state = 238}, - [2491] = {.lex_state = 238}, - [2492] = {.lex_state = 238}, + [2487] = {.lex_state = 200}, + [2488] = {.lex_state = 200}, + [2489] = {.lex_state = 200}, + [2490] = {.lex_state = 200}, + [2491] = {.lex_state = 200}, + [2492] = {.lex_state = 200}, [2493] = {.lex_state = 200}, [2494] = {.lex_state = 200}, - [2495] = {.lex_state = 200}, + [2495] = {.lex_state = 238}, [2496] = {.lex_state = 200}, [2497] = {.lex_state = 200}, [2498] = {.lex_state = 200}, [2499] = {.lex_state = 200}, - [2500] = {.lex_state = 200}, + [2500] = {.lex_state = 238}, [2501] = {.lex_state = 238}, - [2502] = {.lex_state = 238}, - [2503] = {.lex_state = 218}, - [2504] = {.lex_state = 238}, - [2505] = {.lex_state = 200}, + [2502] = {.lex_state = 200}, + [2503] = {.lex_state = 238}, + [2504] = {.lex_state = 200}, + [2505] = {.lex_state = 238}, [2506] = {.lex_state = 200}, - [2507] = {.lex_state = 238}, - [2508] = {.lex_state = 238}, + [2507] = {.lex_state = 200}, + [2508] = {.lex_state = 200}, [2509] = {.lex_state = 238}, - [2510] = {.lex_state = 238}, - [2511] = {.lex_state = 238}, + [2510] = {.lex_state = 200}, + [2511] = {.lex_state = 200}, [2512] = {.lex_state = 238}, - [2513] = {.lex_state = 238}, + [2513] = {.lex_state = 200}, [2514] = {.lex_state = 200}, [2515] = {.lex_state = 238}, [2516] = {.lex_state = 238}, - [2517] = {.lex_state = 238}, - [2518] = {.lex_state = 238}, + [2517] = {.lex_state = 200}, + [2518] = {.lex_state = 200}, [2519] = {.lex_state = 200}, - [2520] = {.lex_state = 187}, + [2520] = {.lex_state = 238}, [2521] = {.lex_state = 200}, [2522] = {.lex_state = 238}, - [2523] = {.lex_state = 238}, - [2524] = {.lex_state = 200}, + [2523] = {.lex_state = 200}, + [2524] = {.lex_state = 187}, [2525] = {.lex_state = 200}, - [2526] = {.lex_state = 200}, - [2527] = {.lex_state = 200}, + [2526] = {.lex_state = 238}, + [2527] = {.lex_state = 238}, [2528] = {.lex_state = 200}, - [2529] = {.lex_state = 238}, - [2530] = {.lex_state = 238}, + [2529] = {.lex_state = 200}, + [2530] = {.lex_state = 200}, [2531] = {.lex_state = 238}, - [2532] = {.lex_state = 238}, - [2533] = {.lex_state = 200}, - [2534] = {.lex_state = 228}, - [2535] = {.lex_state = 209}, - [2536] = {.lex_state = 228}, - [2537] = {.lex_state = 238}, - [2538] = {.lex_state = 228}, - [2539] = {.lex_state = 228}, - [2540] = {.lex_state = 228}, - [2541] = {.lex_state = 228}, - [2542] = {.lex_state = 228}, - [2543] = {.lex_state = 228}, - [2544] = {.lex_state = 239}, - [2545] = {.lex_state = 209}, - [2546] = {.lex_state = 209}, - [2547] = {.lex_state = 228}, - [2548] = {.lex_state = 209}, - [2549] = {.lex_state = 229}, + [2532] = {.lex_state = 200}, + [2533] = {.lex_state = 238}, + [2534] = {.lex_state = 187}, + [2535] = {.lex_state = 200}, + [2536] = {.lex_state = 200}, + [2537] = {.lex_state = 200}, + [2538] = {.lex_state = 200}, + [2539] = {.lex_state = 200}, + [2540] = {.lex_state = 200}, + [2541] = {.lex_state = 187}, + [2542] = {.lex_state = 200}, + [2543] = {.lex_state = 238}, + [2544] = {.lex_state = 238}, + [2545] = {.lex_state = 200}, + [2546] = {.lex_state = 200}, + [2547] = {.lex_state = 200}, + [2548] = {.lex_state = 200}, + [2549] = {.lex_state = 200}, [2550] = {.lex_state = 238}, - [2551] = {.lex_state = 229}, - [2552] = {.lex_state = 209}, - [2553] = {.lex_state = 209}, - [2554] = {.lex_state = 209}, - [2555] = {.lex_state = 209}, - [2556] = {.lex_state = 228}, - [2557] = {.lex_state = 228}, + [2551] = {.lex_state = 200}, + [2552] = {.lex_state = 200}, + [2553] = {.lex_state = 200}, + [2554] = {.lex_state = 200}, + [2555] = {.lex_state = 200}, + [2556] = {.lex_state = 200}, + [2557] = {.lex_state = 200}, [2558] = {.lex_state = 238}, - [2559] = {.lex_state = 209}, - [2560] = {.lex_state = 191}, - [2561] = {.lex_state = 191}, - [2562] = {.lex_state = 191}, - [2563] = {.lex_state = 191}, - [2564] = {.lex_state = 241}, - [2565] = {.lex_state = 241}, - [2566] = {.lex_state = 187}, - [2567] = {.lex_state = 228}, + [2559] = {.lex_state = 200}, + [2560] = {.lex_state = 200}, + [2561] = {.lex_state = 200}, + [2562] = {.lex_state = 200}, + [2563] = {.lex_state = 200}, + [2564] = {.lex_state = 200}, + [2565] = {.lex_state = 238}, + [2566] = {.lex_state = 209}, + [2567] = {.lex_state = 209}, [2568] = {.lex_state = 209}, - [2569] = {.lex_state = 209}, - [2570] = {.lex_state = 209}, - [2571] = {.lex_state = 209}, - [2572] = {.lex_state = 209}, - [2573] = {.lex_state = 209}, - [2574] = {.lex_state = 238}, - [2575] = {.lex_state = 238}, - [2576] = {.lex_state = 238}, - [2577] = {.lex_state = 229}, - [2578] = {.lex_state = 229}, + [2569] = {.lex_state = 228}, + [2570] = {.lex_state = 228}, + [2571] = {.lex_state = 228}, + [2572] = {.lex_state = 228}, + [2573] = {.lex_state = 228}, + [2574] = {.lex_state = 228}, + [2575] = {.lex_state = 228}, + [2576] = {.lex_state = 209}, + [2577] = {.lex_state = 238}, + [2578] = {.lex_state = 228}, [2579] = {.lex_state = 229}, [2580] = {.lex_state = 229}, - [2581] = {.lex_state = 229}, + [2581] = {.lex_state = 228}, [2582] = {.lex_state = 228}, - [2583] = {.lex_state = 238}, - [2584] = {.lex_state = 238}, - [2585] = {.lex_state = 238}, - [2586] = {.lex_state = 217}, - [2587] = {.lex_state = 217}, - [2588] = {.lex_state = 217}, - [2589] = {.lex_state = 217}, - [2590] = {.lex_state = 238}, + [2583] = {.lex_state = 228}, + [2584] = {.lex_state = 191}, + [2585] = {.lex_state = 191}, + [2586] = {.lex_state = 238}, + [2587] = {.lex_state = 191}, + [2588] = {.lex_state = 209}, + [2589] = {.lex_state = 209}, + [2590] = {.lex_state = 209}, [2591] = {.lex_state = 209}, - [2592] = {.lex_state = 211}, - [2593] = {.lex_state = 211}, + [2592] = {.lex_state = 238}, + [2593] = {.lex_state = 209}, [2594] = {.lex_state = 238}, - [2595] = {.lex_state = 183}, - [2596] = {.lex_state = 217}, - [2597] = {.lex_state = 217}, + [2595] = {.lex_state = 239}, + [2596] = {.lex_state = 187}, + [2597] = {.lex_state = 209}, [2598] = {.lex_state = 228}, - [2599] = {.lex_state = 238}, - [2600] = {.lex_state = 238}, - [2601] = {.lex_state = 176}, - [2602] = {.lex_state = 238}, - [2603] = {.lex_state = 217}, - [2604] = {.lex_state = 217}, - [2605] = {.lex_state = 211}, - [2606] = {.lex_state = 217}, + [2599] = {.lex_state = 209}, + [2600] = {.lex_state = 209}, + [2601] = {.lex_state = 209}, + [2602] = {.lex_state = 241}, + [2603] = {.lex_state = 241}, + [2604] = {.lex_state = 209}, + [2605] = {.lex_state = 209}, + [2606] = {.lex_state = 191}, [2607] = {.lex_state = 217}, - [2608] = {.lex_state = 217}, - [2609] = {.lex_state = 217}, - [2610] = {.lex_state = 209}, - [2611] = {.lex_state = 209}, - [2612] = {.lex_state = 217}, - [2613] = {.lex_state = 176}, + [2608] = {.lex_state = 211}, + [2609] = {.lex_state = 238}, + [2610] = {.lex_state = 238}, + [2611] = {.lex_state = 211}, + [2612] = {.lex_state = 176}, + [2613] = {.lex_state = 229}, [2614] = {.lex_state = 229}, - [2615] = {.lex_state = 229}, - [2616] = {.lex_state = 238}, - [2617] = {.lex_state = 238}, - [2618] = {.lex_state = 229}, - [2619] = {.lex_state = 238}, - [2620] = {.lex_state = 238}, - [2621] = {.lex_state = 229}, - [2622] = {.lex_state = 238}, - [2623] = {.lex_state = 238}, - [2624] = {.lex_state = 183}, - [2625] = {.lex_state = 238}, - [2626] = {.lex_state = 209}, - [2627] = {.lex_state = 187}, - [2628] = {.lex_state = 183}, - [2629] = {.lex_state = 238}, - [2630] = {.lex_state = 209}, + [2615] = {.lex_state = 238}, + [2616] = {.lex_state = 229}, + [2617] = {.lex_state = 198}, + [2618] = {.lex_state = 217}, + [2619] = {.lex_state = 229}, + [2620] = {.lex_state = 229}, + [2621] = {.lex_state = 228}, + [2622] = {.lex_state = 229}, + [2623] = {.lex_state = 229}, + [2624] = {.lex_state = 229}, + [2625] = {.lex_state = 229}, + [2626] = {.lex_state = 229}, + [2627] = {.lex_state = 229}, + [2628] = {.lex_state = 229}, + [2629] = {.lex_state = 229}, + [2630] = {.lex_state = 217}, [2631] = {.lex_state = 217}, - [2632] = {.lex_state = 209}, - [2633] = {.lex_state = 229}, - [2634] = {.lex_state = 229}, - [2635] = {.lex_state = 187}, - [2636] = {.lex_state = 238}, - [2637] = {.lex_state = 229}, - [2638] = {.lex_state = 229}, - [2639] = {.lex_state = 187}, - [2640] = {.lex_state = 187}, - [2641] = {.lex_state = 238}, - [2642] = {.lex_state = 229}, + [2632] = {.lex_state = 217}, + [2633] = {.lex_state = 217}, + [2634] = {.lex_state = 217}, + [2635] = {.lex_state = 217}, + [2636] = {.lex_state = 217}, + [2637] = {.lex_state = 217}, + [2638] = {.lex_state = 217}, + [2639] = {.lex_state = 217}, + [2640] = {.lex_state = 217}, + [2641] = {.lex_state = 209}, + [2642] = {.lex_state = 217}, [2643] = {.lex_state = 217}, - [2644] = {.lex_state = 187}, - [2645] = {.lex_state = 229}, - [2646] = {.lex_state = 229}, - [2647] = {.lex_state = 229}, - [2648] = {.lex_state = 229}, - [2649] = {.lex_state = 229}, - [2650] = {.lex_state = 229}, - [2651] = {.lex_state = 229}, - [2652] = {.lex_state = 229}, - [2653] = {.lex_state = 187}, - [2654] = {.lex_state = 241}, - [2655] = {.lex_state = 211}, - [2656] = {.lex_state = 241}, - [2657] = {.lex_state = 229}, - [2658] = {.lex_state = 217}, - [2659] = {.lex_state = 217}, - [2660] = {.lex_state = 233}, - [2661] = {.lex_state = 238}, - [2662] = {.lex_state = 217}, - [2663] = {.lex_state = 204}, - [2664] = {.lex_state = 204}, - [2665] = {.lex_state = 187}, - [2666] = {.lex_state = 187}, - [2667] = {.lex_state = 229}, - [2668] = {.lex_state = 229}, - [2669] = {.lex_state = 217}, - [2670] = {.lex_state = 209}, - [2671] = {.lex_state = 218}, - [2672] = {.lex_state = 229}, - [2673] = {.lex_state = 229}, - [2674] = {.lex_state = 239}, - [2675] = {.lex_state = 229}, - [2676] = {.lex_state = 229}, - [2677] = {.lex_state = 229}, - [2678] = {.lex_state = 239}, - [2679] = {.lex_state = 229}, - [2680] = {.lex_state = 218}, - [2681] = {.lex_state = 229}, - [2682] = {.lex_state = 229}, + [2644] = {.lex_state = 229}, + [2645] = {.lex_state = 238}, + [2646] = {.lex_state = 238}, + [2647] = {.lex_state = 238}, + [2648] = {.lex_state = 187}, + [2649] = {.lex_state = 187}, + [2650] = {.lex_state = 238}, + [2651] = {.lex_state = 187}, + [2652] = {.lex_state = 187}, + [2653] = {.lex_state = 198}, + [2654] = {.lex_state = 211}, + [2655] = {.lex_state = 209}, + [2656] = {.lex_state = 209}, + [2657] = {.lex_state = 183}, + [2658] = {.lex_state = 198}, + [2659] = {.lex_state = 209}, + [2660] = {.lex_state = 238}, + [2661] = {.lex_state = 209}, + [2662] = {.lex_state = 198}, + [2663] = {.lex_state = 176}, + [2664] = {.lex_state = 183}, + [2665] = {.lex_state = 198}, + [2666] = {.lex_state = 238}, + [2667] = {.lex_state = 238}, + [2668] = {.lex_state = 238}, + [2669] = {.lex_state = 238}, + [2670] = {.lex_state = 183}, + [2671] = {.lex_state = 238}, + [2672] = {.lex_state = 198}, + [2673] = {.lex_state = 209}, + [2674] = {.lex_state = 238}, + [2675] = {.lex_state = 198}, + [2676] = {.lex_state = 228}, + [2677] = {.lex_state = 238}, + [2678] = {.lex_state = 238}, + [2679] = {.lex_state = 238}, + [2680] = {.lex_state = 238}, + [2681] = {.lex_state = 238}, + [2682] = {.lex_state = 238}, [2683] = {.lex_state = 229}, - [2684] = {.lex_state = 229}, + [2684] = {.lex_state = 217}, [2685] = {.lex_state = 229}, [2686] = {.lex_state = 229}, - [2687] = {.lex_state = 217}, - [2688] = {.lex_state = 229}, + [2687] = {.lex_state = 187}, + [2688] = {.lex_state = 218}, [2689] = {.lex_state = 229}, - [2690] = {.lex_state = 233}, - [2691] = {.lex_state = 229}, + [2690] = {.lex_state = 229}, + [2691] = {.lex_state = 187}, [2692] = {.lex_state = 229}, [2693] = {.lex_state = 229}, - [2694] = {.lex_state = 238}, - [2695] = {.lex_state = 233}, + [2694] = {.lex_state = 229}, + [2695] = {.lex_state = 239}, [2696] = {.lex_state = 229}, - [2697] = {.lex_state = 233}, - [2698] = {.lex_state = 229}, - [2699] = {.lex_state = 229}, - [2700] = {.lex_state = 229}, - [2701] = {.lex_state = 229}, + [2697] = {.lex_state = 218}, + [2698] = {.lex_state = 187}, + [2699] = {.lex_state = 217}, + [2700] = {.lex_state = 217}, + [2701] = {.lex_state = 239}, [2702] = {.lex_state = 229}, - [2703] = {.lex_state = 209}, + [2703] = {.lex_state = 229}, [2704] = {.lex_state = 229}, - [2705] = {.lex_state = 229}, + [2705] = {.lex_state = 196}, [2706] = {.lex_state = 229}, [2707] = {.lex_state = 229}, [2708] = {.lex_state = 229}, - [2709] = {.lex_state = 209}, - [2710] = {.lex_state = 209}, - [2711] = {.lex_state = 209}, - [2712] = {.lex_state = 209}, - [2713] = {.lex_state = 209}, - [2714] = {.lex_state = 209}, - [2715] = {.lex_state = 217}, - [2716] = {.lex_state = 209}, - [2717] = {.lex_state = 209}, - [2718] = {.lex_state = 209}, - [2719] = {.lex_state = 176}, - [2720] = {.lex_state = 176}, - [2721] = {.lex_state = 176}, - [2722] = {.lex_state = 209}, - [2723] = {.lex_state = 238}, - [2724] = {.lex_state = 194}, - [2725] = {.lex_state = 176}, - [2726] = {.lex_state = 176}, - [2727] = {.lex_state = 176}, - [2728] = {.lex_state = 218}, - [2729] = {.lex_state = 194}, - [2730] = {.lex_state = 176}, - [2731] = {.lex_state = 238}, - [2732] = {.lex_state = 209}, - [2733] = {.lex_state = 209}, - [2734] = {.lex_state = 176}, - [2735] = {.lex_state = 176}, - [2736] = {.lex_state = 194}, - [2737] = {.lex_state = 176}, - [2738] = {.lex_state = 176}, - [2739] = {.lex_state = 176}, - [2740] = {.lex_state = 176}, - [2741] = {.lex_state = 176}, - [2742] = {.lex_state = 194}, - [2743] = {.lex_state = 176}, - [2744] = {.lex_state = 209}, - [2745] = {.lex_state = 194}, - [2746] = {.lex_state = 209}, - [2747] = {.lex_state = 176}, - [2748] = {.lex_state = 194}, - [2749] = {.lex_state = 209}, + [2709] = {.lex_state = 229}, + [2710] = {.lex_state = 204}, + [2711] = {.lex_state = 238}, + [2712] = {.lex_state = 204}, + [2713] = {.lex_state = 241}, + [2714] = {.lex_state = 229}, + [2715] = {.lex_state = 229}, + [2716] = {.lex_state = 211}, + [2717] = {.lex_state = 229}, + [2718] = {.lex_state = 229}, + [2719] = {.lex_state = 187}, + [2720] = {.lex_state = 217}, + [2721] = {.lex_state = 229}, + [2722] = {.lex_state = 229}, + [2723] = {.lex_state = 229}, + [2724] = {.lex_state = 229}, + [2725] = {.lex_state = 229}, + [2726] = {.lex_state = 229}, + [2727] = {.lex_state = 233}, + [2728] = {.lex_state = 229}, + [2729] = {.lex_state = 229}, + [2730] = {.lex_state = 233}, + [2731] = {.lex_state = 233}, + [2732] = {.lex_state = 229}, + [2733] = {.lex_state = 229}, + [2734] = {.lex_state = 229}, + [2735] = {.lex_state = 233}, + [2736] = {.lex_state = 209}, + [2737] = {.lex_state = 229}, + [2738] = {.lex_state = 241}, + [2739] = {.lex_state = 238}, + [2740] = {.lex_state = 217}, + [2741] = {.lex_state = 229}, + [2742] = {.lex_state = 229}, + [2743] = {.lex_state = 229}, + [2744] = {.lex_state = 229}, + [2745] = {.lex_state = 209}, + [2746] = {.lex_state = 229}, + [2747] = {.lex_state = 229}, + [2748] = {.lex_state = 229}, + [2749] = {.lex_state = 194}, [2750] = {.lex_state = 209}, - [2751] = {.lex_state = 238}, + [2751] = {.lex_state = 209}, [2752] = {.lex_state = 176}, - [2753] = {.lex_state = 176}, + [2753] = {.lex_state = 209}, [2754] = {.lex_state = 209}, - [2755] = {.lex_state = 209}, - [2756] = {.lex_state = 209}, - [2757] = {.lex_state = 209}, + [2755] = {.lex_state = 194}, + [2756] = {.lex_state = 238}, + [2757] = {.lex_state = 176}, [2758] = {.lex_state = 194}, - [2759] = {.lex_state = 176}, + [2759] = {.lex_state = 209}, [2760] = {.lex_state = 176}, - [2761] = {.lex_state = 209}, - [2762] = {.lex_state = 227}, - [2763] = {.lex_state = 209}, - [2764] = {.lex_state = 209}, - [2765] = {.lex_state = 209}, - [2766] = {.lex_state = 194}, - [2767] = {.lex_state = 209}, - [2768] = {.lex_state = 227}, - [2769] = {.lex_state = 183}, - [2770] = {.lex_state = 194}, - [2771] = {.lex_state = 194}, - [2772] = {.lex_state = 197}, - [2773] = {.lex_state = 197}, - [2774] = {.lex_state = 198}, - [2775] = {.lex_state = 238}, - [2776] = {.lex_state = 198}, + [2761] = {.lex_state = 238}, + [2762] = {.lex_state = 209}, + [2763] = {.lex_state = 194}, + [2764] = {.lex_state = 194}, + [2765] = {.lex_state = 238}, + [2766] = {.lex_state = 176}, + [2767] = {.lex_state = 238}, + [2768] = {.lex_state = 176}, + [2769] = {.lex_state = 209}, + [2770] = {.lex_state = 209}, + [2771] = {.lex_state = 209}, + [2772] = {.lex_state = 209}, + [2773] = {.lex_state = 176}, + [2774] = {.lex_state = 209}, + [2775] = {.lex_state = 176}, + [2776] = {.lex_state = 209}, [2777] = {.lex_state = 209}, - [2778] = {.lex_state = 194}, - [2779] = {.lex_state = 209}, - [2780] = {.lex_state = 194}, - [2781] = {.lex_state = 194}, - [2782] = {.lex_state = 198}, + [2778] = {.lex_state = 209}, + [2779] = {.lex_state = 176}, + [2780] = {.lex_state = 176}, + [2781] = {.lex_state = 176}, + [2782] = {.lex_state = 176}, [2783] = {.lex_state = 209}, - [2784] = {.lex_state = 217}, - [2785] = {.lex_state = 183}, - [2786] = {.lex_state = 198}, - [2787] = {.lex_state = 209}, - [2788] = {.lex_state = 238}, - [2789] = {.lex_state = 217}, - [2790] = {.lex_state = 197}, - [2791] = {.lex_state = 197}, - [2792] = {.lex_state = 194}, - [2793] = {.lex_state = 194}, - [2794] = {.lex_state = 209}, - [2795] = {.lex_state = 197}, - [2796] = {.lex_state = 197}, - [2797] = {.lex_state = 197}, - [2798] = {.lex_state = 197}, - [2799] = {.lex_state = 197}, - [2800] = {.lex_state = 194}, - [2801] = {.lex_state = 194}, - [2802] = {.lex_state = 197}, + [2784] = {.lex_state = 194}, + [2785] = {.lex_state = 176}, + [2786] = {.lex_state = 209}, + [2787] = {.lex_state = 238}, + [2788] = {.lex_state = 176}, + [2789] = {.lex_state = 209}, + [2790] = {.lex_state = 176}, + [2791] = {.lex_state = 194}, + [2792] = {.lex_state = 176}, + [2793] = {.lex_state = 209}, + [2794] = {.lex_state = 176}, + [2795] = {.lex_state = 176}, + [2796] = {.lex_state = 209}, + [2797] = {.lex_state = 176}, + [2798] = {.lex_state = 209}, + [2799] = {.lex_state = 217}, + [2800] = {.lex_state = 218}, + [2801] = {.lex_state = 176}, + [2802] = {.lex_state = 176}, [2803] = {.lex_state = 209}, - [2804] = {.lex_state = 209}, - [2805] = {.lex_state = 194}, - [2806] = {.lex_state = 209}, - [2807] = {.lex_state = 197}, - [2808] = {.lex_state = 197}, - [2809] = {.lex_state = 243}, - [2810] = {.lex_state = 238}, + [2804] = {.lex_state = 217}, + [2805] = {.lex_state = 217}, + [2806] = {.lex_state = 217}, + [2807] = {.lex_state = 227}, + [2808] = {.lex_state = 209}, + [2809] = {.lex_state = 209}, + [2810] = {.lex_state = 194}, [2811] = {.lex_state = 209}, - [2812] = {.lex_state = 197}, - [2813] = {.lex_state = 197}, + [2812] = {.lex_state = 194}, + [2813] = {.lex_state = 217}, [2814] = {.lex_state = 209}, - [2815] = {.lex_state = 209}, - [2816] = {.lex_state = 209}, + [2815] = {.lex_state = 197}, + [2816] = {.lex_state = 197}, [2817] = {.lex_state = 197}, [2818] = {.lex_state = 197}, [2819] = {.lex_state = 197}, - [2820] = {.lex_state = 209}, + [2820] = {.lex_state = 197}, [2821] = {.lex_state = 197}, - [2822] = {.lex_state = 198}, - [2823] = {.lex_state = 209}, - [2824] = {.lex_state = 209}, - [2825] = {.lex_state = 183}, - [2826] = {.lex_state = 217}, - [2827] = {.lex_state = 227}, + [2822] = {.lex_state = 197}, + [2823] = {.lex_state = 197}, + [2824] = {.lex_state = 197}, + [2825] = {.lex_state = 197}, + [2826] = {.lex_state = 197}, + [2827] = {.lex_state = 197}, [2828] = {.lex_state = 209}, [2829] = {.lex_state = 183}, - [2830] = {.lex_state = 209}, - [2831] = {.lex_state = 211}, + [2830] = {.lex_state = 238}, + [2831] = {.lex_state = 194}, [2832] = {.lex_state = 211}, - [2833] = {.lex_state = 194}, - [2834] = {.lex_state = 217}, - [2835] = {.lex_state = 209}, - [2836] = {.lex_state = 198}, + [2833] = {.lex_state = 227}, + [2834] = {.lex_state = 194}, + [2835] = {.lex_state = 194}, + [2836] = {.lex_state = 243}, [2837] = {.lex_state = 194}, - [2838] = {.lex_state = 198}, - [2839] = {.lex_state = 217}, - [2840] = {.lex_state = 217}, + [2838] = {.lex_state = 197}, + [2839] = {.lex_state = 197}, + [2840] = {.lex_state = 209}, [2841] = {.lex_state = 209}, - [2842] = {.lex_state = 194}, - [2843] = {.lex_state = 238}, - [2844] = {.lex_state = 217}, - [2845] = {.lex_state = 204}, - [2846] = {.lex_state = 211}, - [2847] = {.lex_state = 204}, - [2848] = {.lex_state = 217}, - [2849] = {.lex_state = 217}, - [2850] = {.lex_state = 239}, + [2842] = {.lex_state = 209}, + [2843] = {.lex_state = 194}, + [2844] = {.lex_state = 194}, + [2845] = {.lex_state = 238}, + [2846] = {.lex_state = 209}, + [2847] = {.lex_state = 238}, + [2848] = {.lex_state = 194}, + [2849] = {.lex_state = 194}, + [2850] = {.lex_state = 209}, [2851] = {.lex_state = 209}, - [2852] = {.lex_state = 217}, - [2853] = {.lex_state = 217}, - [2854] = {.lex_state = 209}, - [2855] = {.lex_state = 201}, + [2852] = {.lex_state = 183}, + [2853] = {.lex_state = 194}, + [2854] = {.lex_state = 194}, + [2855] = {.lex_state = 209}, [2856] = {.lex_state = 209}, - [2857] = {.lex_state = 238}, - [2858] = {.lex_state = 217}, + [2857] = {.lex_state = 217}, + [2858] = {.lex_state = 183}, [2859] = {.lex_state = 209}, - [2860] = {.lex_state = 242}, - [2861] = {.lex_state = 209}, + [2860] = {.lex_state = 194}, + [2861] = {.lex_state = 194}, [2862] = {.lex_state = 217}, - [2863] = {.lex_state = 242}, - [2864] = {.lex_state = 196}, - [2865] = {.lex_state = 217}, - [2866] = {.lex_state = 217}, - [2867] = {.lex_state = 217}, - [2868] = {.lex_state = 238}, - [2869] = {.lex_state = 217}, - [2870] = {.lex_state = 201}, + [2863] = {.lex_state = 211}, + [2864] = {.lex_state = 227}, + [2865] = {.lex_state = 183}, + [2866] = {.lex_state = 197}, + [2867] = {.lex_state = 197}, + [2868] = {.lex_state = 197}, + [2869] = {.lex_state = 209}, + [2870] = {.lex_state = 209}, [2871] = {.lex_state = 209}, [2872] = {.lex_state = 209}, - [2873] = {.lex_state = 217}, - [2874] = {.lex_state = 242}, - [2875] = {.lex_state = 238}, - [2876] = {.lex_state = 238}, - [2877] = {.lex_state = 242}, - [2878] = {.lex_state = 204}, - [2879] = {.lex_state = 210}, - [2880] = {.lex_state = 238}, - [2881] = {.lex_state = 209}, - [2882] = {.lex_state = 238}, - [2883] = {.lex_state = 204}, - [2884] = {.lex_state = 197}, - [2885] = {.lex_state = 238}, - [2886] = {.lex_state = 201}, - [2887] = {.lex_state = 204}, - [2888] = {.lex_state = 204}, - [2889] = {.lex_state = 210}, - [2890] = {.lex_state = 242}, - [2891] = {.lex_state = 209}, - [2892] = {.lex_state = 210}, - [2893] = {.lex_state = 197}, - [2894] = {.lex_state = 238}, + [2873] = {.lex_state = 209}, + [2874] = {.lex_state = 209}, + [2875] = {.lex_state = 209}, + [2876] = {.lex_state = 209}, + [2877] = {.lex_state = 209}, + [2878] = {.lex_state = 217}, + [2879] = {.lex_state = 217}, + [2880] = {.lex_state = 239}, + [2881] = {.lex_state = 217}, + [2882] = {.lex_state = 217}, + [2883] = {.lex_state = 209}, + [2884] = {.lex_state = 217}, + [2885] = {.lex_state = 217}, + [2886] = {.lex_state = 217}, + [2887] = {.lex_state = 201}, + [2888] = {.lex_state = 217}, + [2889] = {.lex_state = 238}, + [2890] = {.lex_state = 209}, + [2891] = {.lex_state = 217}, + [2892] = {.lex_state = 204}, + [2893] = {.lex_state = 209}, + [2894] = {.lex_state = 217}, [2895] = {.lex_state = 238}, - [2896] = {.lex_state = 217}, - [2897] = {.lex_state = 204}, - [2898] = {.lex_state = 204}, - [2899] = {.lex_state = 204}, - [2900] = {.lex_state = 204}, - [2901] = {.lex_state = 196}, + [2896] = {.lex_state = 204}, + [2897] = {.lex_state = 217}, + [2898] = {.lex_state = 238}, + [2899] = {.lex_state = 217}, + [2900] = {.lex_state = 209}, + [2901] = {.lex_state = 209}, [2902] = {.lex_state = 242}, - [2903] = {.lex_state = 197}, - [2904] = {.lex_state = 204}, - [2905] = {.lex_state = 217}, + [2903] = {.lex_state = 201}, + [2904] = {.lex_state = 209}, + [2905] = {.lex_state = 242}, [2906] = {.lex_state = 209}, - [2907] = {.lex_state = 204}, - [2908] = {.lex_state = 197}, - [2909] = {.lex_state = 197}, - [2910] = {.lex_state = 209}, - [2911] = {.lex_state = 197}, - [2912] = {.lex_state = 209}, - [2913] = {.lex_state = 197}, - [2914] = {.lex_state = 197}, - [2915] = {.lex_state = 197}, - [2916] = {.lex_state = 210}, - [2917] = {.lex_state = 238}, - [2918] = {.lex_state = 209}, - [2919] = {.lex_state = 209}, + [2907] = {.lex_state = 211}, + [2908] = {.lex_state = 242}, + [2909] = {.lex_state = 210}, + [2910] = {.lex_state = 217}, + [2911] = {.lex_state = 204}, + [2912] = {.lex_state = 204}, + [2913] = {.lex_state = 238}, + [2914] = {.lex_state = 217}, + [2915] = {.lex_state = 238}, + [2916] = {.lex_state = 238}, + [2917] = {.lex_state = 201}, + [2918] = {.lex_state = 238}, + [2919] = {.lex_state = 204}, [2920] = {.lex_state = 204}, - [2921] = {.lex_state = 204}, - [2922] = {.lex_state = 197}, - [2923] = {.lex_state = 197}, + [2921] = {.lex_state = 197}, + [2922] = {.lex_state = 196}, + [2923] = {.lex_state = 204}, [2924] = {.lex_state = 209}, - [2925] = {.lex_state = 210}, - [2926] = {.lex_state = 204}, - [2927] = {.lex_state = 217}, - [2928] = {.lex_state = 209}, - [2929] = {.lex_state = 238}, - [2930] = {.lex_state = 217}, - [2931] = {.lex_state = 238}, - [2932] = {.lex_state = 204}, + [2925] = {.lex_state = 204}, + [2926] = {.lex_state = 209}, + [2927] = {.lex_state = 204}, + [2928] = {.lex_state = 217}, + [2929] = {.lex_state = 204}, + [2930] = {.lex_state = 204}, + [2931] = {.lex_state = 204}, + [2932] = {.lex_state = 197}, [2933] = {.lex_state = 204}, - [2934] = {.lex_state = 197}, - [2935] = {.lex_state = 197}, - [2936] = {.lex_state = 238}, - [2937] = {.lex_state = 204}, + [2934] = {.lex_state = 209}, + [2935] = {.lex_state = 204}, + [2936] = {.lex_state = 204}, + [2937] = {.lex_state = 197}, [2938] = {.lex_state = 217}, - [2939] = {.lex_state = 204}, + [2939] = {.lex_state = 197}, [2940] = {.lex_state = 204}, [2941] = {.lex_state = 204}, - [2942] = {.lex_state = 209}, + [2942] = {.lex_state = 210}, [2943] = {.lex_state = 204}, - [2944] = {.lex_state = 204}, + [2944] = {.lex_state = 238}, [2945] = {.lex_state = 210}, [2946] = {.lex_state = 204}, - [2947] = {.lex_state = 238}, - [2948] = {.lex_state = 204}, - [2949] = {.lex_state = 197}, - [2950] = {.lex_state = 201}, - [2951] = {.lex_state = 204}, - [2952] = {.lex_state = 228}, - [2953] = {.lex_state = 238}, - [2954] = {.lex_state = 204}, - [2955] = {.lex_state = 209}, - [2956] = {.lex_state = 242}, - [2957] = {.lex_state = 238}, + [2947] = {.lex_state = 204}, + [2948] = {.lex_state = 197}, + [2949] = {.lex_state = 204}, + [2950] = {.lex_state = 209}, + [2951] = {.lex_state = 209}, + [2952] = {.lex_state = 201}, + [2953] = {.lex_state = 197}, + [2954] = {.lex_state = 238}, + [2955] = {.lex_state = 204}, + [2956] = {.lex_state = 204}, + [2957] = {.lex_state = 204}, [2958] = {.lex_state = 204}, - [2959] = {.lex_state = 217}, - [2960] = {.lex_state = 204}, - [2961] = {.lex_state = 209}, + [2959] = {.lex_state = 204}, + [2960] = {.lex_state = 217}, + [2961] = {.lex_state = 238}, [2962] = {.lex_state = 238}, - [2963] = {.lex_state = 197}, - [2964] = {.lex_state = 197}, - [2965] = {.lex_state = 238}, - [2966] = {.lex_state = 197}, - [2967] = {.lex_state = 238}, - [2968] = {.lex_state = 197}, - [2969] = {.lex_state = 204}, - [2970] = {.lex_state = 197}, - [2971] = {.lex_state = 238}, - [2972] = {.lex_state = 209}, - [2973] = {.lex_state = 239}, - [2974] = {.lex_state = 209}, - [2975] = {.lex_state = 238}, - [2976] = {.lex_state = 209}, - [2977] = {.lex_state = 217}, - [2978] = {.lex_state = 209}, - [2979] = {.lex_state = 209}, - [2980] = {.lex_state = 194}, - [2981] = {.lex_state = 238}, + [2963] = {.lex_state = 242}, + [2964] = {.lex_state = 204}, + [2965] = {.lex_state = 204}, + [2966] = {.lex_state = 204}, + [2967] = {.lex_state = 204}, + [2968] = {.lex_state = 210}, + [2969] = {.lex_state = 197}, + [2970] = {.lex_state = 210}, + [2971] = {.lex_state = 204}, + [2972] = {.lex_state = 242}, + [2973] = {.lex_state = 204}, + [2974] = {.lex_state = 204}, + [2975] = {.lex_state = 197}, + [2976] = {.lex_state = 204}, + [2977] = {.lex_state = 204}, + [2978] = {.lex_state = 204}, + [2979] = {.lex_state = 238}, + [2980] = {.lex_state = 204}, + [2981] = {.lex_state = 209}, [2982] = {.lex_state = 238}, - [2983] = {.lex_state = 209}, - [2984] = {.lex_state = 209}, - [2985] = {.lex_state = 204}, - [2986] = {.lex_state = 209}, - [2987] = {.lex_state = 209}, - [2988] = {.lex_state = 242}, - [2989] = {.lex_state = 209}, - [2990] = {.lex_state = 209}, - [2991] = {.lex_state = 194}, - [2992] = {.lex_state = 209}, - [2993] = {.lex_state = 209}, - [2994] = {.lex_state = 194}, - [2995] = {.lex_state = 217}, - [2996] = {.lex_state = 209}, - [2997] = {.lex_state = 209}, - [2998] = {.lex_state = 238}, - [2999] = {.lex_state = 238}, - [3000] = {.lex_state = 209}, - [3001] = {.lex_state = 209}, + [2983] = {.lex_state = 197}, + [2984] = {.lex_state = 197}, + [2985] = {.lex_state = 209}, + [2986] = {.lex_state = 238}, + [2987] = {.lex_state = 238}, + [2988] = {.lex_state = 197}, + [2989] = {.lex_state = 238}, + [2990] = {.lex_state = 197}, + [2991] = {.lex_state = 209}, + [2992] = {.lex_state = 197}, + [2993] = {.lex_state = 197}, + [2994] = {.lex_state = 197}, + [2995] = {.lex_state = 197}, + [2996] = {.lex_state = 204}, + [2997] = {.lex_state = 238}, + [2998] = {.lex_state = 209}, + [2999] = {.lex_state = 197}, + [3000] = {.lex_state = 228}, + [3001] = {.lex_state = 242}, [3002] = {.lex_state = 209}, - [3003] = {.lex_state = 209}, - [3004] = {.lex_state = 194}, - [3005] = {.lex_state = 239}, - [3006] = {.lex_state = 197}, + [3003] = {.lex_state = 197}, + [3004] = {.lex_state = 209}, + [3005] = {.lex_state = 210}, + [3006] = {.lex_state = 238}, [3007] = {.lex_state = 238}, - [3008] = {.lex_state = 209}, - [3009] = {.lex_state = 239}, - [3010] = {.lex_state = 238}, - [3011] = {.lex_state = 170}, - [3012] = {.lex_state = 209}, - [3013] = {.lex_state = 197}, - [3014] = {.lex_state = 209}, - [3015] = {.lex_state = 238}, + [3008] = {.lex_state = 217}, + [3009] = {.lex_state = 209}, + [3010] = {.lex_state = 242}, + [3011] = {.lex_state = 197}, + [3012] = {.lex_state = 238}, + [3013] = {.lex_state = 209}, + [3014] = {.lex_state = 239}, + [3015] = {.lex_state = 197}, [3016] = {.lex_state = 209}, - [3017] = {.lex_state = 209}, + [3017] = {.lex_state = 197}, [3018] = {.lex_state = 197}, - [3019] = {.lex_state = 209}, - [3020] = {.lex_state = 209}, - [3021] = {.lex_state = 197}, + [3019] = {.lex_state = 197}, + [3020] = {.lex_state = 197}, + [3021] = {.lex_state = 238}, [3022] = {.lex_state = 209}, - [3023] = {.lex_state = 197}, - [3024] = {.lex_state = 197}, + [3023] = {.lex_state = 220}, + [3024] = {.lex_state = 209}, [3025] = {.lex_state = 209}, - [3026] = {.lex_state = 197}, + [3026] = {.lex_state = 217}, [3027] = {.lex_state = 209}, - [3028] = {.lex_state = 209}, - [3029] = {.lex_state = 197}, - [3030] = {.lex_state = 197}, - [3031] = {.lex_state = 238}, + [3028] = {.lex_state = 238}, + [3029] = {.lex_state = 239}, + [3030] = {.lex_state = 238}, + [3031] = {.lex_state = 170}, [3032] = {.lex_state = 209}, - [3033] = {.lex_state = 194}, + [3033] = {.lex_state = 209}, [3034] = {.lex_state = 197}, [3035] = {.lex_state = 209}, - [3036] = {.lex_state = 197}, - [3037] = {.lex_state = 197}, + [3036] = {.lex_state = 238}, + [3037] = {.lex_state = 194}, [3038] = {.lex_state = 197}, - [3039] = {.lex_state = 197}, - [3040] = {.lex_state = 197}, - [3041] = {.lex_state = 197}, - [3042] = {.lex_state = 170}, - [3043] = {.lex_state = 197}, - [3044] = {.lex_state = 217}, - [3045] = {.lex_state = 238}, + [3039] = {.lex_state = 238}, + [3040] = {.lex_state = 209}, + [3041] = {.lex_state = 242}, + [3042] = {.lex_state = 209}, + [3043] = {.lex_state = 238}, + [3044] = {.lex_state = 194}, + [3045] = {.lex_state = 209}, [3046] = {.lex_state = 209}, - [3047] = {.lex_state = 238}, + [3047] = {.lex_state = 209}, [3048] = {.lex_state = 209}, [3049] = {.lex_state = 209}, - [3050] = {.lex_state = 209}, - [3051] = {.lex_state = 197}, - [3052] = {.lex_state = 209}, - [3053] = {.lex_state = 238}, - [3054] = {.lex_state = 209}, + [3050] = {.lex_state = 197}, + [3051] = {.lex_state = 239}, + [3052] = {.lex_state = 170}, + [3053] = {.lex_state = 204}, + [3054] = {.lex_state = 238}, [3055] = {.lex_state = 209}, - [3056] = {.lex_state = 170}, - [3057] = {.lex_state = 238}, - [3058] = {.lex_state = 238}, - [3059] = {.lex_state = 183}, - [3060] = {.lex_state = 209}, - [3061] = {.lex_state = 239}, - [3062] = {.lex_state = 194}, - [3063] = {.lex_state = 239}, - [3064] = {.lex_state = 170}, - [3065] = {.lex_state = 210}, - [3066] = {.lex_state = 239}, - [3067] = {.lex_state = 170}, + [3056] = {.lex_state = 209}, + [3057] = {.lex_state = 209}, + [3058] = {.lex_state = 197}, + [3059] = {.lex_state = 238}, + [3060] = {.lex_state = 238}, + [3061] = {.lex_state = 238}, + [3062] = {.lex_state = 209}, + [3063] = {.lex_state = 220}, + [3064] = {.lex_state = 217}, + [3065] = {.lex_state = 209}, + [3066] = {.lex_state = 238}, + [3067] = {.lex_state = 238}, [3068] = {.lex_state = 209}, - [3069] = {.lex_state = 170}, - [3070] = {.lex_state = 220}, - [3071] = {.lex_state = 238}, - [3072] = {.lex_state = 238}, - [3073] = {.lex_state = 238}, - [3074] = {.lex_state = 238}, - [3075] = {.lex_state = 238}, + [3069] = {.lex_state = 209}, + [3070] = {.lex_state = 209}, + [3071] = {.lex_state = 194}, + [3072] = {.lex_state = 209}, + [3073] = {.lex_state = 210}, + [3074] = {.lex_state = 170}, + [3075] = {.lex_state = 197}, [3076] = {.lex_state = 209}, - [3077] = {.lex_state = 220}, - [3078] = {.lex_state = 239}, + [3077] = {.lex_state = 194}, + [3078] = {.lex_state = 209}, [3079] = {.lex_state = 209}, - [3080] = {.lex_state = 238}, - [3081] = {.lex_state = 239}, - [3082] = {.lex_state = 239}, - [3083] = {.lex_state = 220}, - [3084] = {.lex_state = 238}, - [3085] = {.lex_state = 238}, - [3086] = {.lex_state = 210}, - [3087] = {.lex_state = 238}, - [3088] = {.lex_state = 238}, - [3089] = {.lex_state = 239}, + [3080] = {.lex_state = 197}, + [3081] = {.lex_state = 170}, + [3082] = {.lex_state = 209}, + [3083] = {.lex_state = 197}, + [3084] = {.lex_state = 209}, + [3085] = {.lex_state = 209}, + [3086] = {.lex_state = 194}, + [3087] = {.lex_state = 209}, + [3088] = {.lex_state = 197}, + [3089] = {.lex_state = 170}, [3090] = {.lex_state = 209}, [3091] = {.lex_state = 209}, - [3092] = {.lex_state = 239}, - [3093] = {.lex_state = 239}, - [3094] = {.lex_state = 210}, - [3095] = {.lex_state = 239}, - [3096] = {.lex_state = 176}, + [3092] = {.lex_state = 197}, + [3093] = {.lex_state = 197}, + [3094] = {.lex_state = 197}, + [3095] = {.lex_state = 238}, + [3096] = {.lex_state = 239}, [3097] = {.lex_state = 209}, - [3098] = {.lex_state = 239}, - [3099] = {.lex_state = 239}, - [3100] = {.lex_state = 220}, + [3098] = {.lex_state = 209}, + [3099] = {.lex_state = 220}, + [3100] = {.lex_state = 209}, [3101] = {.lex_state = 239}, - [3102] = {.lex_state = 220}, - [3103] = {.lex_state = 238}, - [3104] = {.lex_state = 209}, - [3105] = {.lex_state = 239}, - [3106] = {.lex_state = 209}, - [3107] = {.lex_state = 209}, - [3108] = {.lex_state = 209}, + [3102] = {.lex_state = 183}, + [3103] = {.lex_state = 209}, + [3104] = {.lex_state = 238}, + [3105] = {.lex_state = 220}, + [3106] = {.lex_state = 239}, + [3107] = {.lex_state = 239}, + [3108] = {.lex_state = 194}, [3109] = {.lex_state = 238}, - [3110] = {.lex_state = 209}, - [3111] = {.lex_state = 217}, - [3112] = {.lex_state = 209}, - [3113] = {.lex_state = 217}, - [3114] = {.lex_state = 217}, - [3115] = {.lex_state = 217}, - [3116] = {.lex_state = 197}, - [3117] = {.lex_state = 217}, - [3118] = {.lex_state = 217}, - [3119] = {.lex_state = 238}, - [3120] = {.lex_state = 239}, - [3121] = {.lex_state = 217}, - [3122] = {.lex_state = 196}, - [3123] = {.lex_state = 217}, - [3124] = {.lex_state = 217}, + [3110] = {.lex_state = 194}, + [3111] = {.lex_state = 238}, + [3112] = {.lex_state = 238}, + [3113] = {.lex_state = 194}, + [3114] = {.lex_state = 209}, + [3115] = {.lex_state = 209}, + [3116] = {.lex_state = 239}, + [3117] = {.lex_state = 238}, + [3118] = {.lex_state = 209}, + [3119] = {.lex_state = 239}, + [3120] = {.lex_state = 209}, + [3121] = {.lex_state = 210}, + [3122] = {.lex_state = 170}, + [3123] = {.lex_state = 239}, + [3124] = {.lex_state = 239}, [3125] = {.lex_state = 209}, - [3126] = {.lex_state = 209}, - [3127] = {.lex_state = 206}, - [3128] = {.lex_state = 183}, - [3129] = {.lex_state = 209}, - [3130] = {.lex_state = 196}, - [3131] = {.lex_state = 209}, - [3132] = {.lex_state = 239}, - [3133] = {.lex_state = 212}, - [3134] = {.lex_state = 209}, + [3126] = {.lex_state = 197}, + [3127] = {.lex_state = 239}, + [3128] = {.lex_state = 239}, + [3129] = {.lex_state = 210}, + [3130] = {.lex_state = 238}, + [3131] = {.lex_state = 239}, + [3132] = {.lex_state = 209}, + [3133] = {.lex_state = 239}, + [3134] = {.lex_state = 217}, [3135] = {.lex_state = 220}, - [3136] = {.lex_state = 209}, - [3137] = {.lex_state = 183}, - [3138] = {.lex_state = 209}, + [3136] = {.lex_state = 176}, + [3137] = {.lex_state = 239}, + [3138] = {.lex_state = 238}, [3139] = {.lex_state = 209}, - [3140] = {.lex_state = 209}, - [3141] = {.lex_state = 217}, - [3142] = {.lex_state = 217}, - [3143] = {.lex_state = 217}, - [3144] = {.lex_state = 217}, + [3140] = {.lex_state = 238}, + [3141] = {.lex_state = 238}, + [3142] = {.lex_state = 238}, + [3143] = {.lex_state = 209}, + [3144] = {.lex_state = 209}, [3145] = {.lex_state = 209}, - [3146] = {.lex_state = 217}, - [3147] = {.lex_state = 209}, - [3148] = {.lex_state = 217}, - [3149] = {.lex_state = 217}, - [3150] = {.lex_state = 238}, - [3151] = {.lex_state = 183}, - [3152] = {.lex_state = 220}, - [3153] = {.lex_state = 210}, - [3154] = {.lex_state = 217}, - [3155] = {.lex_state = 209}, - [3156] = {.lex_state = 209}, + [3146] = {.lex_state = 238}, + [3147] = {.lex_state = 238}, + [3148] = {.lex_state = 209}, + [3149] = {.lex_state = 238}, + [3150] = {.lex_state = 209}, + [3151] = {.lex_state = 239}, + [3152] = {.lex_state = 197}, + [3153] = {.lex_state = 209}, + [3154] = {.lex_state = 183}, + [3155] = {.lex_state = 217}, + [3156] = {.lex_state = 217}, [3157] = {.lex_state = 217}, - [3158] = {.lex_state = 209}, - [3159] = {.lex_state = 209}, + [3158] = {.lex_state = 217}, + [3159] = {.lex_state = 217}, [3160] = {.lex_state = 209}, [3161] = {.lex_state = 217}, - [3162] = {.lex_state = 209}, + [3162] = {.lex_state = 217}, [3163] = {.lex_state = 209}, - [3164] = {.lex_state = 209}, - [3165] = {.lex_state = 209}, + [3164] = {.lex_state = 217}, + [3165] = {.lex_state = 217}, [3166] = {.lex_state = 209}, - [3167] = {.lex_state = 209}, - [3168] = {.lex_state = 210}, + [3167] = {.lex_state = 217}, + [3168] = {.lex_state = 239}, [3169] = {.lex_state = 217}, - [3170] = {.lex_state = 238}, - [3171] = {.lex_state = 209}, - [3172] = {.lex_state = 217}, - [3173] = {.lex_state = 209}, - [3174] = {.lex_state = 209}, + [3170] = {.lex_state = 201}, + [3171] = {.lex_state = 217}, + [3172] = {.lex_state = 209}, + [3173] = {.lex_state = 217}, + [3174] = {.lex_state = 217}, [3175] = {.lex_state = 217}, - [3176] = {.lex_state = 217}, - [3177] = {.lex_state = 238}, - [3178] = {.lex_state = 217}, - [3179] = {.lex_state = 238}, - [3180] = {.lex_state = 217}, - [3181] = {.lex_state = 201}, - [3182] = {.lex_state = 217}, + [3176] = {.lex_state = 209}, + [3177] = {.lex_state = 209}, + [3178] = {.lex_state = 201}, + [3179] = {.lex_state = 197}, + [3180] = {.lex_state = 209}, + [3181] = {.lex_state = 183}, + [3182] = {.lex_state = 209}, [3183] = {.lex_state = 209}, [3184] = {.lex_state = 209}, - [3185] = {.lex_state = 217}, + [3185] = {.lex_state = 209}, [3186] = {.lex_state = 209}, - [3187] = {.lex_state = 183}, - [3188] = {.lex_state = 217}, - [3189] = {.lex_state = 238}, - [3190] = {.lex_state = 217}, - [3191] = {.lex_state = 217}, - [3192] = {.lex_state = 217}, - [3193] = {.lex_state = 204}, - [3194] = {.lex_state = 217}, - [3195] = {.lex_state = 209}, + [3187] = {.lex_state = 209}, + [3188] = {.lex_state = 209}, + [3189] = {.lex_state = 209}, + [3190] = {.lex_state = 209}, + [3191] = {.lex_state = 209}, + [3192] = {.lex_state = 238}, + [3193] = {.lex_state = 210}, + [3194] = {.lex_state = 212}, + [3195] = {.lex_state = 238}, [3196] = {.lex_state = 217}, - [3197] = {.lex_state = 209}, - [3198] = {.lex_state = 217}, + [3197] = {.lex_state = 217}, + [3198] = {.lex_state = 238}, [3199] = {.lex_state = 217}, - [3200] = {.lex_state = 217}, - [3201] = {.lex_state = 209}, - [3202] = {.lex_state = 217}, + [3200] = {.lex_state = 209}, + [3201] = {.lex_state = 217}, + [3202] = {.lex_state = 209}, [3203] = {.lex_state = 239}, - [3204] = {.lex_state = 209}, - [3205] = {.lex_state = 219}, + [3204] = {.lex_state = 217}, + [3205] = {.lex_state = 217}, [3206] = {.lex_state = 217}, - [3207] = {.lex_state = 201}, + [3207] = {.lex_state = 217}, [3208] = {.lex_state = 209}, - [3209] = {.lex_state = 200}, + [3209] = {.lex_state = 209}, [3210] = {.lex_state = 206}, - [3211] = {.lex_state = 206}, - [3212] = {.lex_state = 209}, - [3213] = {.lex_state = 214}, - [3214] = {.lex_state = 206}, + [3211] = {.lex_state = 239}, + [3212] = {.lex_state = 183}, + [3213] = {.lex_state = 209}, + [3214] = {.lex_state = 209}, [3215] = {.lex_state = 209}, - [3216] = {.lex_state = 238}, - [3217] = {.lex_state = 206}, - [3218] = {.lex_state = 197}, - [3219] = {.lex_state = 206}, - [3220] = {.lex_state = 209}, + [3216] = {.lex_state = 217}, + [3217] = {.lex_state = 238}, + [3218] = {.lex_state = 217}, + [3219] = {.lex_state = 209}, + [3220] = {.lex_state = 217}, [3221] = {.lex_state = 217}, - [3222] = {.lex_state = 206}, - [3223] = {.lex_state = 194}, - [3224] = {.lex_state = 217}, - [3225] = {.lex_state = 210}, + [3222] = {.lex_state = 219}, + [3223] = {.lex_state = 196}, + [3224] = {.lex_state = 196}, + [3225] = {.lex_state = 209}, [3226] = {.lex_state = 209}, - [3227] = {.lex_state = 196}, - [3228] = {.lex_state = 210}, - [3229] = {.lex_state = 210}, + [3227] = {.lex_state = 217}, + [3228] = {.lex_state = 217}, + [3229] = {.lex_state = 217}, [3230] = {.lex_state = 209}, - [3231] = {.lex_state = 210}, - [3232] = {.lex_state = 210}, - [3233] = {.lex_state = 210}, - [3234] = {.lex_state = 210}, - [3235] = {.lex_state = 214}, - [3236] = {.lex_state = 209}, - [3237] = {.lex_state = 204}, - [3238] = {.lex_state = 210}, - [3239] = {.lex_state = 209}, - [3240] = {.lex_state = 206}, - [3241] = {.lex_state = 196}, - [3242] = {.lex_state = 197}, - [3243] = {.lex_state = 196}, - [3244] = {.lex_state = 209}, - [3245] = {.lex_state = 210}, - [3246] = {.lex_state = 206}, - [3247] = {.lex_state = 206}, + [3231] = {.lex_state = 183}, + [3232] = {.lex_state = 209}, + [3233] = {.lex_state = 217}, + [3234] = {.lex_state = 204}, + [3235] = {.lex_state = 217}, + [3236] = {.lex_state = 238}, + [3237] = {.lex_state = 209}, + [3238] = {.lex_state = 209}, + [3239] = {.lex_state = 220}, + [3240] = {.lex_state = 217}, + [3241] = {.lex_state = 217}, + [3242] = {.lex_state = 209}, + [3243] = {.lex_state = 209}, + [3244] = {.lex_state = 220}, + [3245] = {.lex_state = 217}, + [3246] = {.lex_state = 217}, + [3247] = {.lex_state = 238}, [3248] = {.lex_state = 210}, [3249] = {.lex_state = 217}, - [3250] = {.lex_state = 210}, - [3251] = {.lex_state = 217}, - [3252] = {.lex_state = 196}, - [3253] = {.lex_state = 197}, - [3254] = {.lex_state = 210}, - [3255] = {.lex_state = 210}, - [3256] = {.lex_state = 210}, - [3257] = {.lex_state = 197}, - [3258] = {.lex_state = 206}, - [3259] = {.lex_state = 206}, + [3250] = {.lex_state = 217}, + [3251] = {.lex_state = 209}, + [3252] = {.lex_state = 200}, + [3253] = {.lex_state = 209}, + [3254] = {.lex_state = 217}, + [3255] = {.lex_state = 238}, + [3256] = {.lex_state = 209}, + [3257] = {.lex_state = 210}, + [3258] = {.lex_state = 239}, + [3259] = {.lex_state = 217}, [3260] = {.lex_state = 217}, - [3261] = {.lex_state = 216}, - [3262] = {.lex_state = 210}, - [3263] = {.lex_state = 217}, + [3261] = {.lex_state = 217}, + [3262] = {.lex_state = 217}, + [3263] = {.lex_state = 210}, [3264] = {.lex_state = 210}, [3265] = {.lex_state = 206}, [3266] = {.lex_state = 209}, - [3267] = {.lex_state = 210}, + [3267] = {.lex_state = 217}, [3268] = {.lex_state = 206}, - [3269] = {.lex_state = 239}, - [3270] = {.lex_state = 238}, - [3271] = {.lex_state = 209}, - [3272] = {.lex_state = 209}, - [3273] = {.lex_state = 238}, + [3269] = {.lex_state = 217}, + [3270] = {.lex_state = 217}, + [3271] = {.lex_state = 217}, + [3272] = {.lex_state = 197}, + [3273] = {.lex_state = 217}, [3274] = {.lex_state = 238}, - [3275] = {.lex_state = 206}, - [3276] = {.lex_state = 210}, - [3277] = {.lex_state = 206}, - [3278] = {.lex_state = 210}, - [3279] = {.lex_state = 217}, - [3280] = {.lex_state = 217}, - [3281] = {.lex_state = 196}, - [3282] = {.lex_state = 194}, - [3283] = {.lex_state = 243}, - [3284] = {.lex_state = 210}, + [3275] = {.lex_state = 217}, + [3276] = {.lex_state = 238}, + [3277] = {.lex_state = 209}, + [3278] = {.lex_state = 217}, + [3279] = {.lex_state = 206}, + [3280] = {.lex_state = 214}, + [3281] = {.lex_state = 206}, + [3282] = {.lex_state = 210}, + [3283] = {.lex_state = 217}, + [3284] = {.lex_state = 217}, [3285] = {.lex_state = 210}, [3286] = {.lex_state = 210}, - [3287] = {.lex_state = 217}, - [3288] = {.lex_state = 210}, + [3287] = {.lex_state = 210}, + [3288] = {.lex_state = 209}, [3289] = {.lex_state = 217}, - [3290] = {.lex_state = 209}, - [3291] = {.lex_state = 239}, - [3292] = {.lex_state = 210}, + [3290] = {.lex_state = 210}, + [3291] = {.lex_state = 196}, + [3292] = {.lex_state = 217}, [3293] = {.lex_state = 210}, - [3294] = {.lex_state = 210}, - [3295] = {.lex_state = 238}, - [3296] = {.lex_state = 217}, - [3297] = {.lex_state = 217}, + [3294] = {.lex_state = 197}, + [3295] = {.lex_state = 206}, + [3296] = {.lex_state = 210}, + [3297] = {.lex_state = 209}, [3298] = {.lex_state = 209}, - [3299] = {.lex_state = 194}, + [3299] = {.lex_state = 206}, [3300] = {.lex_state = 206}, - [3301] = {.lex_state = 238}, + [3301] = {.lex_state = 206}, [3302] = {.lex_state = 206}, - [3303] = {.lex_state = 238}, - [3304] = {.lex_state = 200}, - [3305] = {.lex_state = 200}, - [3306] = {.lex_state = 200}, - [3307] = {.lex_state = 200}, - [3308] = {.lex_state = 200}, - [3309] = {.lex_state = 200}, - [3310] = {.lex_state = 200}, - [3311] = {.lex_state = 200}, - [3312] = {.lex_state = 200}, - [3313] = {.lex_state = 200}, - [3314] = {.lex_state = 200}, - [3315] = {.lex_state = 200}, - [3316] = {.lex_state = 200}, - [3317] = {.lex_state = 200}, - [3318] = {.lex_state = 200}, - [3319] = {.lex_state = 200}, - [3320] = {.lex_state = 200}, - [3321] = {.lex_state = 209}, - [3322] = {.lex_state = 200}, - [3323] = {.lex_state = 200}, - [3324] = {.lex_state = 200}, - [3325] = {.lex_state = 200}, - [3326] = {.lex_state = 200}, + [3303] = {.lex_state = 206}, + [3304] = {.lex_state = 217}, + [3305] = {.lex_state = 239}, + [3306] = {.lex_state = 206}, + [3307] = {.lex_state = 206}, + [3308] = {.lex_state = 209}, + [3309] = {.lex_state = 210}, + [3310] = {.lex_state = 217}, + [3311] = {.lex_state = 209}, + [3312] = {.lex_state = 206}, + [3313] = {.lex_state = 210}, + [3314] = {.lex_state = 206}, + [3315] = {.lex_state = 209}, + [3316] = {.lex_state = 196}, + [3317] = {.lex_state = 209}, + [3318] = {.lex_state = 210}, + [3319] = {.lex_state = 210}, + [3320] = {.lex_state = 238}, + [3321] = {.lex_state = 217}, + [3322] = {.lex_state = 238}, + [3323] = {.lex_state = 197}, + [3324] = {.lex_state = 196}, + [3325] = {.lex_state = 196}, + [3326] = {.lex_state = 210}, [3327] = {.lex_state = 200}, - [3328] = {.lex_state = 204}, - [3329] = {.lex_state = 209}, - [3330] = {.lex_state = 217}, - [3331] = {.lex_state = 217}, - [3332] = {.lex_state = 217}, + [3328] = {.lex_state = 200}, + [3329] = {.lex_state = 200}, + [3330] = {.lex_state = 200}, + [3331] = {.lex_state = 210}, + [3332] = {.lex_state = 210}, [3333] = {.lex_state = 200}, - [3334] = {.lex_state = 217}, - [3335] = {.lex_state = 217}, - [3336] = {.lex_state = 210}, - [3337] = {.lex_state = 217}, - [3338] = {.lex_state = 210}, - [3339] = {.lex_state = 217}, - [3340] = {.lex_state = 239}, - [3341] = {.lex_state = 217}, - [3342] = {.lex_state = 217}, - [3343] = {.lex_state = 209}, - [3344] = {.lex_state = 196}, - [3345] = {.lex_state = 209}, - [3346] = {.lex_state = 217}, - [3347] = {.lex_state = 217}, - [3348] = {.lex_state = 217}, - [3349] = {.lex_state = 217}, - [3350] = {.lex_state = 217}, - [3351] = {.lex_state = 217}, - [3352] = {.lex_state = 217}, - [3353] = {.lex_state = 217}, - [3354] = {.lex_state = 220}, - [3355] = {.lex_state = 209}, - [3356] = {.lex_state = 209}, - [3357] = {.lex_state = 209}, + [3334] = {.lex_state = 200}, + [3335] = {.lex_state = 200}, + [3336] = {.lex_state = 200}, + [3337] = {.lex_state = 200}, + [3338] = {.lex_state = 200}, + [3339] = {.lex_state = 200}, + [3340] = {.lex_state = 200}, + [3341] = {.lex_state = 200}, + [3342] = {.lex_state = 200}, + [3343] = {.lex_state = 200}, + [3344] = {.lex_state = 200}, + [3345] = {.lex_state = 200}, + [3346] = {.lex_state = 200}, + [3347] = {.lex_state = 210}, + [3348] = {.lex_state = 200}, + [3349] = {.lex_state = 200}, + [3350] = {.lex_state = 200}, + [3351] = {.lex_state = 200}, + [3352] = {.lex_state = 209}, + [3353] = {.lex_state = 206}, + [3354] = {.lex_state = 210}, + [3355] = {.lex_state = 204}, + [3356] = {.lex_state = 204}, + [3357] = {.lex_state = 194}, [3358] = {.lex_state = 209}, [3359] = {.lex_state = 209}, - [3360] = {.lex_state = 222}, - [3361] = {.lex_state = 204}, - [3362] = {.lex_state = 204}, - [3363] = {.lex_state = 204}, - [3364] = {.lex_state = 209}, - [3365] = {.lex_state = 209}, - [3366] = {.lex_state = 224}, - [3367] = {.lex_state = 209}, - [3368] = {.lex_state = 204}, - [3369] = {.lex_state = 204}, - [3370] = {.lex_state = 242}, - [3371] = {.lex_state = 242}, - [3372] = {.lex_state = 242}, + [3360] = {.lex_state = 217}, + [3361] = {.lex_state = 200}, + [3362] = {.lex_state = 196}, + [3363] = {.lex_state = 194}, + [3364] = {.lex_state = 217}, + [3365] = {.lex_state = 217}, + [3366] = {.lex_state = 197}, + [3367] = {.lex_state = 217}, + [3368] = {.lex_state = 210}, + [3369] = {.lex_state = 196}, + [3370] = {.lex_state = 206}, + [3371] = {.lex_state = 238}, + [3372] = {.lex_state = 206}, [3373] = {.lex_state = 209}, - [3374] = {.lex_state = 204}, - [3375] = {.lex_state = 204}, - [3376] = {.lex_state = 209}, - [3377] = {.lex_state = 204}, - [3378] = {.lex_state = 204}, - [3379] = {.lex_state = 204}, - [3380] = {.lex_state = 209}, - [3381] = {.lex_state = 209}, - [3382] = {.lex_state = 209}, - [3383] = {.lex_state = 209}, - [3384] = {.lex_state = 209}, - [3385] = {.lex_state = 204}, - [3386] = {.lex_state = 209}, + [3374] = {.lex_state = 210}, + [3375] = {.lex_state = 217}, + [3376] = {.lex_state = 217}, + [3377] = {.lex_state = 216}, + [3378] = {.lex_state = 194}, + [3379] = {.lex_state = 239}, + [3380] = {.lex_state = 210}, + [3381] = {.lex_state = 217}, + [3382] = {.lex_state = 210}, + [3383] = {.lex_state = 210}, + [3384] = {.lex_state = 217}, + [3385] = {.lex_state = 210}, + [3386] = {.lex_state = 243}, [3387] = {.lex_state = 209}, - [3388] = {.lex_state = 217}, - [3389] = {.lex_state = 204}, - [3390] = {.lex_state = 209}, - [3391] = {.lex_state = 209}, - [3392] = {.lex_state = 220}, - [3393] = {.lex_state = 220}, - [3394] = {.lex_state = 220}, - [3395] = {.lex_state = 204}, - [3396] = {.lex_state = 209}, + [3388] = {.lex_state = 210}, + [3389] = {.lex_state = 210}, + [3390] = {.lex_state = 217}, + [3391] = {.lex_state = 210}, + [3392] = {.lex_state = 209}, + [3393] = {.lex_state = 214}, + [3394] = {.lex_state = 238}, + [3395] = {.lex_state = 217}, + [3396] = {.lex_state = 200}, [3397] = {.lex_state = 209}, - [3398] = {.lex_state = 238}, - [3399] = {.lex_state = 217}, - [3400] = {.lex_state = 209}, + [3398] = {.lex_state = 220}, + [3399] = {.lex_state = 209}, + [3400] = {.lex_state = 220}, [3401] = {.lex_state = 209}, - [3402] = {.lex_state = 197}, - [3403] = {.lex_state = 209}, - [3404] = {.lex_state = 209}, - [3405] = {.lex_state = 194}, - [3406] = {.lex_state = 209}, - [3407] = {.lex_state = 220}, - [3408] = {.lex_state = 222}, + [3402] = {.lex_state = 222}, + [3403] = {.lex_state = 217}, + [3404] = {.lex_state = 220}, + [3405] = {.lex_state = 209}, + [3406] = {.lex_state = 183}, + [3407] = {.lex_state = 183}, + [3408] = {.lex_state = 242}, [3409] = {.lex_state = 209}, - [3410] = {.lex_state = 209}, + [3410] = {.lex_state = 242}, [3411] = {.lex_state = 209}, - [3412] = {.lex_state = 209}, - [3413] = {.lex_state = 183}, - [3414] = {.lex_state = 220}, - [3415] = {.lex_state = 209}, - [3416] = {.lex_state = 183}, - [3417] = {.lex_state = 209}, - [3418] = {.lex_state = 209}, - [3419] = {.lex_state = 209}, + [3412] = {.lex_state = 242}, + [3413] = {.lex_state = 238}, + [3414] = {.lex_state = 242}, + [3415] = {.lex_state = 238}, + [3416] = {.lex_state = 209}, + [3417] = {.lex_state = 217}, + [3418] = {.lex_state = 193}, + [3419] = {.lex_state = 220}, [3420] = {.lex_state = 209}, [3421] = {.lex_state = 209}, - [3422] = {.lex_state = 220}, + [3422] = {.lex_state = 209}, [3423] = {.lex_state = 209}, [3424] = {.lex_state = 209}, [3425] = {.lex_state = 209}, - [3426] = {.lex_state = 209}, + [3426] = {.lex_state = 183}, [3427] = {.lex_state = 209}, [3428] = {.lex_state = 209}, - [3429] = {.lex_state = 220}, + [3429] = {.lex_state = 209}, [3430] = {.lex_state = 209}, [3431] = {.lex_state = 209}, [3432] = {.lex_state = 209}, [3433] = {.lex_state = 209}, [3434] = {.lex_state = 209}, - [3435] = {.lex_state = 238}, - [3436] = {.lex_state = 209}, - [3437] = {.lex_state = 209}, + [3435] = {.lex_state = 209}, + [3436] = {.lex_state = 242}, + [3437] = {.lex_state = 242}, [3438] = {.lex_state = 209}, [3439] = {.lex_state = 209}, [3440] = {.lex_state = 209}, [3441] = {.lex_state = 209}, [3442] = {.lex_state = 209}, [3443] = {.lex_state = 209}, - [3444] = {.lex_state = 209}, + [3444] = {.lex_state = 220}, [3445] = {.lex_state = 209}, [3446] = {.lex_state = 209}, [3447] = {.lex_state = 209}, - [3448] = {.lex_state = 183}, - [3449] = {.lex_state = 220}, + [3448] = {.lex_state = 209}, + [3449] = {.lex_state = 209}, [3450] = {.lex_state = 209}, - [3451] = {.lex_state = 209}, - [3452] = {.lex_state = 209}, - [3453] = {.lex_state = 209}, - [3454] = {.lex_state = 209}, - [3455] = {.lex_state = 204}, - [3456] = {.lex_state = 204}, - [3457] = {.lex_state = 220}, + [3451] = {.lex_state = 224}, + [3452] = {.lex_state = 220}, + [3453] = {.lex_state = 197}, + [3454] = {.lex_state = 220}, + [3455] = {.lex_state = 209}, + [3456] = {.lex_state = 209}, + [3457] = {.lex_state = 209}, [3458] = {.lex_state = 209}, - [3459] = {.lex_state = 242}, - [3460] = {.lex_state = 193}, + [3459] = {.lex_state = 209}, + [3460] = {.lex_state = 209}, [3461] = {.lex_state = 209}, - [3462] = {.lex_state = 220}, - [3463] = {.lex_state = 193}, - [3464] = {.lex_state = 183}, + [3462] = {.lex_state = 209}, + [3463] = {.lex_state = 209}, + [3464] = {.lex_state = 217}, [3465] = {.lex_state = 209}, [3466] = {.lex_state = 209}, [3467] = {.lex_state = 209}, @@ -25541,55 +25691,55 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3470] = {.lex_state = 209}, [3471] = {.lex_state = 209}, [3472] = {.lex_state = 204}, - [3473] = {.lex_state = 242}, - [3474] = {.lex_state = 183}, + [3473] = {.lex_state = 209}, + [3474] = {.lex_state = 209}, [3475] = {.lex_state = 209}, - [3476] = {.lex_state = 220}, - [3477] = {.lex_state = 242}, - [3478] = {.lex_state = 209}, - [3479] = {.lex_state = 209}, - [3480] = {.lex_state = 220}, + [3476] = {.lex_state = 209}, + [3477] = {.lex_state = 209}, + [3478] = {.lex_state = 204}, + [3479] = {.lex_state = 204}, + [3480] = {.lex_state = 204}, [3481] = {.lex_state = 220}, - [3482] = {.lex_state = 220}, - [3483] = {.lex_state = 209}, - [3484] = {.lex_state = 220}, - [3485] = {.lex_state = 242}, - [3486] = {.lex_state = 238}, - [3487] = {.lex_state = 242}, + [3482] = {.lex_state = 209}, + [3483] = {.lex_state = 204}, + [3484] = {.lex_state = 204}, + [3485] = {.lex_state = 209}, + [3486] = {.lex_state = 209}, + [3487] = {.lex_state = 209}, [3488] = {.lex_state = 209}, - [3489] = {.lex_state = 238}, - [3490] = {.lex_state = 238}, - [3491] = {.lex_state = 209}, - [3492] = {.lex_state = 238}, - [3493] = {.lex_state = 209}, - [3494] = {.lex_state = 217}, + [3489] = {.lex_state = 204}, + [3490] = {.lex_state = 204}, + [3491] = {.lex_state = 204}, + [3492] = {.lex_state = 204}, + [3493] = {.lex_state = 204}, + [3494] = {.lex_state = 204}, [3495] = {.lex_state = 209}, - [3496] = {.lex_state = 209}, - [3497] = {.lex_state = 209}, - [3498] = {.lex_state = 209}, - [3499] = {.lex_state = 209}, - [3500] = {.lex_state = 209}, + [3496] = {.lex_state = 204}, + [3497] = {.lex_state = 220}, + [3498] = {.lex_state = 220}, + [3499] = {.lex_state = 204}, + [3500] = {.lex_state = 220}, [3501] = {.lex_state = 209}, [3502] = {.lex_state = 209}, [3503] = {.lex_state = 209}, [3504] = {.lex_state = 209}, [3505] = {.lex_state = 209}, - [3506] = {.lex_state = 209}, + [3506] = {.lex_state = 220}, [3507] = {.lex_state = 209}, [3508] = {.lex_state = 209}, [3509] = {.lex_state = 209}, - [3510] = {.lex_state = 209}, + [3510] = {.lex_state = 194}, [3511] = {.lex_state = 209}, - [3512] = {.lex_state = 209}, - [3513] = {.lex_state = 209}, + [3512] = {.lex_state = 204}, + [3513] = {.lex_state = 204}, [3514] = {.lex_state = 209}, - [3515] = {.lex_state = 209}, + [3515] = {.lex_state = 242}, [3516] = {.lex_state = 209}, - [3517] = {.lex_state = 193}, - [3518] = {.lex_state = 209}, + [3517] = {.lex_state = 209}, + [3518] = {.lex_state = 217}, [3519] = {.lex_state = 209}, [3520] = {.lex_state = 209}, - [3521] = {.lex_state = 209}, + [3521] = {.lex_state = 238}, [3522] = {.lex_state = 209}, [3523] = {.lex_state = 209}, [3524] = {.lex_state = 209}, @@ -25603,1586 +25753,1586 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3532] = {.lex_state = 209}, [3533] = {.lex_state = 209}, [3534] = {.lex_state = 209}, - [3535] = {.lex_state = 217}, - [3536] = {.lex_state = 209}, - [3537] = {.lex_state = 217}, - [3538] = {.lex_state = 217}, - [3539] = {.lex_state = 200}, - [3540] = {.lex_state = 217}, - [3541] = {.lex_state = 217}, - [3542] = {.lex_state = 200}, - [3543] = {.lex_state = 209}, - [3544] = {.lex_state = 217}, - [3545] = {.lex_state = 217}, - [3546] = {.lex_state = 217}, - [3547] = {.lex_state = 217}, - [3548] = {.lex_state = 200}, - [3549] = {.lex_state = 209}, + [3535] = {.lex_state = 220}, + [3536] = {.lex_state = 220}, + [3537] = {.lex_state = 209}, + [3538] = {.lex_state = 242}, + [3539] = {.lex_state = 220}, + [3540] = {.lex_state = 209}, + [3541] = {.lex_state = 220}, + [3542] = {.lex_state = 209}, + [3543] = {.lex_state = 193}, + [3544] = {.lex_state = 209}, + [3545] = {.lex_state = 242}, + [3546] = {.lex_state = 238}, + [3547] = {.lex_state = 238}, + [3548] = {.lex_state = 209}, + [3549] = {.lex_state = 222}, [3550] = {.lex_state = 209}, - [3551] = {.lex_state = 183}, - [3552] = {.lex_state = 217}, + [3551] = {.lex_state = 242}, + [3552] = {.lex_state = 209}, [3553] = {.lex_state = 209}, [3554] = {.lex_state = 209}, - [3555] = {.lex_state = 217}, + [3555] = {.lex_state = 209}, [3556] = {.lex_state = 209}, - [3557] = {.lex_state = 217}, - [3558] = {.lex_state = 217}, - [3559] = {.lex_state = 217}, - [3560] = {.lex_state = 217}, - [3561] = {.lex_state = 217}, + [3557] = {.lex_state = 209}, + [3558] = {.lex_state = 209}, + [3559] = {.lex_state = 209}, + [3560] = {.lex_state = 183}, + [3561] = {.lex_state = 183}, [3562] = {.lex_state = 209}, [3563] = {.lex_state = 209}, - [3564] = {.lex_state = 217}, - [3565] = {.lex_state = 217}, + [3564] = {.lex_state = 209}, + [3565] = {.lex_state = 209}, [3566] = {.lex_state = 209}, - [3567] = {.lex_state = 217}, - [3568] = {.lex_state = 200}, - [3569] = {.lex_state = 217}, + [3567] = {.lex_state = 209}, + [3568] = {.lex_state = 209}, + [3569] = {.lex_state = 193}, [3570] = {.lex_state = 209}, - [3571] = {.lex_state = 217}, + [3571] = {.lex_state = 209}, [3572] = {.lex_state = 209}, - [3573] = {.lex_state = 217}, - [3574] = {.lex_state = 238}, - [3575] = {.lex_state = 217}, - [3576] = {.lex_state = 206}, - [3577] = {.lex_state = 183}, + [3573] = {.lex_state = 209}, + [3574] = {.lex_state = 209}, + [3575] = {.lex_state = 209}, + [3576] = {.lex_state = 209}, + [3577] = {.lex_state = 209}, [3578] = {.lex_state = 209}, - [3579] = {.lex_state = 217}, - [3580] = {.lex_state = 217}, + [3579] = {.lex_state = 209}, + [3580] = {.lex_state = 209}, [3581] = {.lex_state = 217}, [3582] = {.lex_state = 209}, - [3583] = {.lex_state = 217}, - [3584] = {.lex_state = 209}, + [3583] = {.lex_state = 200}, + [3584] = {.lex_state = 217}, [3585] = {.lex_state = 217}, [3586] = {.lex_state = 217}, [3587] = {.lex_state = 217}, - [3588] = {.lex_state = 204}, + [3588] = {.lex_state = 217}, [3589] = {.lex_state = 217}, [3590] = {.lex_state = 217}, - [3591] = {.lex_state = 209}, - [3592] = {.lex_state = 206}, - [3593] = {.lex_state = 217}, + [3591] = {.lex_state = 217}, + [3592] = {.lex_state = 217}, + [3593] = {.lex_state = 209}, [3594] = {.lex_state = 217}, - [3595] = {.lex_state = 209}, + [3595] = {.lex_state = 217}, [3596] = {.lex_state = 217}, - [3597] = {.lex_state = 217}, + [3597] = {.lex_state = 200}, [3598] = {.lex_state = 217}, [3599] = {.lex_state = 217}, - [3600] = {.lex_state = 204}, - [3601] = {.lex_state = 204}, + [3600] = {.lex_state = 217}, + [3601] = {.lex_state = 217}, [3602] = {.lex_state = 217}, [3603] = {.lex_state = 217}, [3604] = {.lex_state = 217}, - [3605] = {.lex_state = 217}, - [3606] = {.lex_state = 209}, - [3607] = {.lex_state = 206}, - [3608] = {.lex_state = 238}, - [3609] = {.lex_state = 217}, - [3610] = {.lex_state = 238}, - [3611] = {.lex_state = 217}, + [3605] = {.lex_state = 204}, + [3606] = {.lex_state = 206}, + [3607] = {.lex_state = 209}, + [3608] = {.lex_state = 194}, + [3609] = {.lex_state = 209}, + [3610] = {.lex_state = 194}, + [3611] = {.lex_state = 209}, [3612] = {.lex_state = 217}, - [3613] = {.lex_state = 238}, - [3614] = {.lex_state = 238}, - [3615] = {.lex_state = 238}, - [3616] = {.lex_state = 238}, - [3617] = {.lex_state = 217}, - [3618] = {.lex_state = 238}, - [3619] = {.lex_state = 238}, - [3620] = {.lex_state = 238}, - [3621] = {.lex_state = 238}, - [3622] = {.lex_state = 238}, - [3623] = {.lex_state = 204}, + [3613] = {.lex_state = 209}, + [3614] = {.lex_state = 217}, + [3615] = {.lex_state = 217}, + [3616] = {.lex_state = 217}, + [3617] = {.lex_state = 209}, + [3618] = {.lex_state = 217}, + [3619] = {.lex_state = 209}, + [3620] = {.lex_state = 217}, + [3621] = {.lex_state = 217}, + [3622] = {.lex_state = 217}, + [3623] = {.lex_state = 209}, [3624] = {.lex_state = 217}, - [3625] = {.lex_state = 217}, - [3626] = {.lex_state = 197}, + [3625] = {.lex_state = 197}, + [3626] = {.lex_state = 217}, [3627] = {.lex_state = 217}, [3628] = {.lex_state = 217}, - [3629] = {.lex_state = 239}, - [3630] = {.lex_state = 217}, + [3629] = {.lex_state = 217}, + [3630] = {.lex_state = 197}, [3631] = {.lex_state = 217}, - [3632] = {.lex_state = 209}, + [3632] = {.lex_state = 217}, [3633] = {.lex_state = 217}, [3634] = {.lex_state = 217}, - [3635] = {.lex_state = 217}, + [3635] = {.lex_state = 209}, [3636] = {.lex_state = 217}, - [3637] = {.lex_state = 217}, - [3638] = {.lex_state = 197}, + [3637] = {.lex_state = 197}, + [3638] = {.lex_state = 204}, [3639] = {.lex_state = 209}, - [3640] = {.lex_state = 217}, - [3641] = {.lex_state = 217}, - [3642] = {.lex_state = 217}, - [3643] = {.lex_state = 217}, - [3644] = {.lex_state = 197}, - [3645] = {.lex_state = 200}, + [3640] = {.lex_state = 209}, + [3641] = {.lex_state = 209}, + [3642] = {.lex_state = 209}, + [3643] = {.lex_state = 204}, + [3644] = {.lex_state = 209}, + [3645] = {.lex_state = 239}, [3646] = {.lex_state = 209}, - [3647] = {.lex_state = 209}, - [3648] = {.lex_state = 217}, + [3647] = {.lex_state = 217}, + [3648] = {.lex_state = 204}, [3649] = {.lex_state = 217}, [3650] = {.lex_state = 217}, [3651] = {.lex_state = 217}, [3652] = {.lex_state = 217}, - [3653] = {.lex_state = 217}, - [3654] = {.lex_state = 204}, - [3655] = {.lex_state = 204}, + [3653] = {.lex_state = 209}, + [3654] = {.lex_state = 217}, + [3655] = {.lex_state = 217}, [3656] = {.lex_state = 217}, - [3657] = {.lex_state = 204}, - [3658] = {.lex_state = 200}, - [3659] = {.lex_state = 217}, - [3660] = {.lex_state = 217}, - [3661] = {.lex_state = 200}, - [3662] = {.lex_state = 209}, - [3663] = {.lex_state = 209}, - [3664] = {.lex_state = 209}, - [3665] = {.lex_state = 217}, - [3666] = {.lex_state = 204}, - [3667] = {.lex_state = 217}, - [3668] = {.lex_state = 209}, - [3669] = {.lex_state = 217}, - [3670] = {.lex_state = 217}, - [3671] = {.lex_state = 209}, - [3672] = {.lex_state = 204}, - [3673] = {.lex_state = 204}, - [3674] = {.lex_state = 217}, - [3675] = {.lex_state = 197}, - [3676] = {.lex_state = 204}, - [3677] = {.lex_state = 183}, - [3678] = {.lex_state = 197}, - [3679] = {.lex_state = 217}, - [3680] = {.lex_state = 217}, - [3681] = {.lex_state = 204}, - [3682] = {.lex_state = 183}, - [3683] = {.lex_state = 217}, - [3684] = {.lex_state = 217}, - [3685] = {.lex_state = 217}, + [3657] = {.lex_state = 217}, + [3658] = {.lex_state = 217}, + [3659] = {.lex_state = 209}, + [3660] = {.lex_state = 204}, + [3661] = {.lex_state = 238}, + [3662] = {.lex_state = 204}, + [3663] = {.lex_state = 238}, + [3664] = {.lex_state = 200}, + [3665] = {.lex_state = 200}, + [3666] = {.lex_state = 217}, + [3667] = {.lex_state = 209}, + [3668] = {.lex_state = 238}, + [3669] = {.lex_state = 204}, + [3670] = {.lex_state = 238}, + [3671] = {.lex_state = 217}, + [3672] = {.lex_state = 238}, + [3673] = {.lex_state = 238}, + [3674] = {.lex_state = 238}, + [3675] = {.lex_state = 217}, + [3676] = {.lex_state = 238}, + [3677] = {.lex_state = 238}, + [3678] = {.lex_state = 238}, + [3679] = {.lex_state = 204}, + [3680] = {.lex_state = 238}, + [3681] = {.lex_state = 238}, + [3682] = {.lex_state = 204}, + [3683] = {.lex_state = 204}, + [3684] = {.lex_state = 183}, + [3685] = {.lex_state = 183}, [3686] = {.lex_state = 217}, [3687] = {.lex_state = 217}, [3688] = {.lex_state = 217}, [3689] = {.lex_state = 217}, - [3690] = {.lex_state = 200}, - [3691] = {.lex_state = 196}, - [3692] = {.lex_state = 238}, - [3693] = {.lex_state = 197}, - [3694] = {.lex_state = 239}, - [3695] = {.lex_state = 194}, - [3696] = {.lex_state = 239}, - [3697] = {.lex_state = 239}, + [3690] = {.lex_state = 217}, + [3691] = {.lex_state = 217}, + [3692] = {.lex_state = 183}, + [3693] = {.lex_state = 217}, + [3694] = {.lex_state = 183}, + [3695] = {.lex_state = 217}, + [3696] = {.lex_state = 217}, + [3697] = {.lex_state = 217}, [3698] = {.lex_state = 209}, - [3699] = {.lex_state = 239}, - [3700] = {.lex_state = 239}, - [3701] = {.lex_state = 239}, - [3702] = {.lex_state = 239}, - [3703] = {.lex_state = 239}, - [3704] = {.lex_state = 238}, - [3705] = {.lex_state = 239}, - [3706] = {.lex_state = 194}, - [3707] = {.lex_state = 238}, - [3708] = {.lex_state = 204}, - [3709] = {.lex_state = 183}, - [3710] = {.lex_state = 239}, - [3711] = {.lex_state = 239}, + [3699] = {.lex_state = 204}, + [3700] = {.lex_state = 197}, + [3701] = {.lex_state = 217}, + [3702] = {.lex_state = 209}, + [3703] = {.lex_state = 217}, + [3704] = {.lex_state = 217}, + [3705] = {.lex_state = 217}, + [3706] = {.lex_state = 209}, + [3707] = {.lex_state = 209}, + [3708] = {.lex_state = 217}, + [3709] = {.lex_state = 217}, + [3710] = {.lex_state = 209}, + [3711] = {.lex_state = 217}, [3712] = {.lex_state = 206}, - [3713] = {.lex_state = 239}, - [3714] = {.lex_state = 214}, - [3715] = {.lex_state = 239}, - [3716] = {.lex_state = 239}, - [3717] = {.lex_state = 239}, - [3718] = {.lex_state = 239}, + [3713] = {.lex_state = 217}, + [3714] = {.lex_state = 217}, + [3715] = {.lex_state = 217}, + [3716] = {.lex_state = 217}, + [3717] = {.lex_state = 209}, + [3718] = {.lex_state = 200}, [3719] = {.lex_state = 206}, - [3720] = {.lex_state = 239}, - [3721] = {.lex_state = 239}, - [3722] = {.lex_state = 239}, - [3723] = {.lex_state = 239}, - [3724] = {.lex_state = 239}, - [3725] = {.lex_state = 239}, - [3726] = {.lex_state = 239}, - [3727] = {.lex_state = 243}, - [3728] = {.lex_state = 239}, - [3729] = {.lex_state = 239}, - [3730] = {.lex_state = 239}, - [3731] = {.lex_state = 239}, - [3732] = {.lex_state = 239}, - [3733] = {.lex_state = 239}, - [3734] = {.lex_state = 239}, - [3735] = {.lex_state = 239}, - [3736] = {.lex_state = 239}, - [3737] = {.lex_state = 204}, - [3738] = {.lex_state = 239}, - [3739] = {.lex_state = 239}, + [3720] = {.lex_state = 217}, + [3721] = {.lex_state = 217}, + [3722] = {.lex_state = 217}, + [3723] = {.lex_state = 217}, + [3724] = {.lex_state = 196}, + [3725] = {.lex_state = 217}, + [3726] = {.lex_state = 217}, + [3727] = {.lex_state = 200}, + [3728] = {.lex_state = 197}, + [3729] = {.lex_state = 200}, + [3730] = {.lex_state = 200}, + [3731] = {.lex_state = 217}, + [3732] = {.lex_state = 238}, + [3733] = {.lex_state = 217}, + [3734] = {.lex_state = 217}, + [3735] = {.lex_state = 217}, + [3736] = {.lex_state = 217}, + [3737] = {.lex_state = 209}, + [3738] = {.lex_state = 204}, + [3739] = {.lex_state = 204}, [3740] = {.lex_state = 239}, [3741] = {.lex_state = 239}, [3742] = {.lex_state = 206}, [3743] = {.lex_state = 239}, - [3744] = {.lex_state = 239}, - [3745] = {.lex_state = 239}, - [3746] = {.lex_state = 239}, - [3747] = {.lex_state = 239}, - [3748] = {.lex_state = 243}, - [3749] = {.lex_state = 183}, - [3750] = {.lex_state = 204}, + [3744] = {.lex_state = 206}, + [3745] = {.lex_state = 204}, + [3746] = {.lex_state = 206}, + [3747] = {.lex_state = 204}, + [3748] = {.lex_state = 239}, + [3749] = {.lex_state = 239}, + [3750] = {.lex_state = 239}, [3751] = {.lex_state = 206}, - [3752] = {.lex_state = 239}, + [3752] = {.lex_state = 204}, [3753] = {.lex_state = 239}, - [3754] = {.lex_state = 239}, - [3755] = {.lex_state = 204}, - [3756] = {.lex_state = 239}, + [3754] = {.lex_state = 209}, + [3755] = {.lex_state = 239}, + [3756] = {.lex_state = 204}, [3757] = {.lex_state = 239}, - [3758] = {.lex_state = 206}, - [3759] = {.lex_state = 193}, - [3760] = {.lex_state = 204}, - [3761] = {.lex_state = 243}, + [3758] = {.lex_state = 243}, + [3759] = {.lex_state = 204}, + [3760] = {.lex_state = 243}, + [3761] = {.lex_state = 239}, [3762] = {.lex_state = 239}, [3763] = {.lex_state = 239}, - [3764] = {.lex_state = 214}, + [3764] = {.lex_state = 239}, [3765] = {.lex_state = 239}, - [3766] = {.lex_state = 204}, + [3766] = {.lex_state = 239}, [3767] = {.lex_state = 239}, [3768] = {.lex_state = 239}, [3769] = {.lex_state = 239}, - [3770] = {.lex_state = 204}, - [3771] = {.lex_state = 206}, - [3772] = {.lex_state = 183}, + [3770] = {.lex_state = 239}, + [3771] = {.lex_state = 239}, + [3772] = {.lex_state = 239}, [3773] = {.lex_state = 239}, [3774] = {.lex_state = 239}, - [3775] = {.lex_state = 239}, + [3775] = {.lex_state = 214}, [3776] = {.lex_state = 239}, - [3777] = {.lex_state = 239}, + [3777] = {.lex_state = 243}, [3778] = {.lex_state = 239}, - [3779] = {.lex_state = 239}, + [3779] = {.lex_state = 204}, [3780] = {.lex_state = 239}, [3781] = {.lex_state = 239}, - [3782] = {.lex_state = 204}, + [3782] = {.lex_state = 239}, [3783] = {.lex_state = 239}, [3784] = {.lex_state = 239}, [3785] = {.lex_state = 239}, [3786] = {.lex_state = 239}, [3787] = {.lex_state = 239}, - [3788] = {.lex_state = 239}, + [3788] = {.lex_state = 194}, [3789] = {.lex_state = 239}, - [3790] = {.lex_state = 239}, - [3791] = {.lex_state = 183}, - [3792] = {.lex_state = 239}, - [3793] = {.lex_state = 239}, + [3790] = {.lex_state = 194}, + [3791] = {.lex_state = 239}, + [3792] = {.lex_state = 183}, + [3793] = {.lex_state = 183}, [3794] = {.lex_state = 239}, - [3795] = {.lex_state = 239}, + [3795] = {.lex_state = 197}, [3796] = {.lex_state = 239}, - [3797] = {.lex_state = 204}, - [3798] = {.lex_state = 194}, + [3797] = {.lex_state = 239}, + [3798] = {.lex_state = 239}, [3799] = {.lex_state = 239}, - [3800] = {.lex_state = 209}, - [3801] = {.lex_state = 209}, - [3802] = {.lex_state = 206}, - [3803] = {.lex_state = 209}, - [3804] = {.lex_state = 209}, - [3805] = {.lex_state = 206}, - [3806] = {.lex_state = 206}, - [3807] = {.lex_state = 238}, - [3808] = {.lex_state = 209}, - [3809] = {.lex_state = 209}, - [3810] = {.lex_state = 209}, - [3811] = {.lex_state = 209}, - [3812] = {.lex_state = 209}, - [3813] = {.lex_state = 209}, - [3814] = {.lex_state = 209}, - [3815] = {.lex_state = 209}, - [3816] = {.lex_state = 209}, - [3817] = {.lex_state = 238}, - [3818] = {.lex_state = 228}, + [3800] = {.lex_state = 239}, + [3801] = {.lex_state = 183}, + [3802] = {.lex_state = 239}, + [3803] = {.lex_state = 194}, + [3804] = {.lex_state = 183}, + [3805] = {.lex_state = 239}, + [3806] = {.lex_state = 238}, + [3807] = {.lex_state = 204}, + [3808] = {.lex_state = 238}, + [3809] = {.lex_state = 239}, + [3810] = {.lex_state = 214}, + [3811] = {.lex_state = 239}, + [3812] = {.lex_state = 193}, + [3813] = {.lex_state = 239}, + [3814] = {.lex_state = 239}, + [3815] = {.lex_state = 239}, + [3816] = {.lex_state = 239}, + [3817] = {.lex_state = 239}, + [3818] = {.lex_state = 239}, [3819] = {.lex_state = 239}, - [3820] = {.lex_state = 241}, - [3821] = {.lex_state = 206}, - [3822] = {.lex_state = 204}, - [3823] = {.lex_state = 204}, - [3824] = {.lex_state = 204}, - [3825] = {.lex_state = 242}, - [3826] = {.lex_state = 204}, - [3827] = {.lex_state = 206}, - [3828] = {.lex_state = 206}, - [3829] = {.lex_state = 209}, - [3830] = {.lex_state = 206}, - [3831] = {.lex_state = 209}, - [3832] = {.lex_state = 209}, - [3833] = {.lex_state = 206}, + [3820] = {.lex_state = 239}, + [3821] = {.lex_state = 239}, + [3822] = {.lex_state = 239}, + [3823] = {.lex_state = 239}, + [3824] = {.lex_state = 239}, + [3825] = {.lex_state = 239}, + [3826] = {.lex_state = 239}, + [3827] = {.lex_state = 239}, + [3828] = {.lex_state = 239}, + [3829] = {.lex_state = 239}, + [3830] = {.lex_state = 239}, + [3831] = {.lex_state = 239}, + [3832] = {.lex_state = 204}, + [3833] = {.lex_state = 239}, [3834] = {.lex_state = 206}, [3835] = {.lex_state = 239}, - [3836] = {.lex_state = 209}, - [3837] = {.lex_state = 209}, - [3838] = {.lex_state = 209}, - [3839] = {.lex_state = 209}, - [3840] = {.lex_state = 206}, - [3841] = {.lex_state = 209}, + [3836] = {.lex_state = 239}, + [3837] = {.lex_state = 239}, + [3838] = {.lex_state = 239}, + [3839] = {.lex_state = 239}, + [3840] = {.lex_state = 239}, + [3841] = {.lex_state = 239}, [3842] = {.lex_state = 239}, - [3843] = {.lex_state = 206}, + [3843] = {.lex_state = 239}, [3844] = {.lex_state = 206}, - [3845] = {.lex_state = 206}, + [3845] = {.lex_state = 239}, [3846] = {.lex_state = 209}, [3847] = {.lex_state = 209}, - [3848] = {.lex_state = 239}, + [3848] = {.lex_state = 238}, [3849] = {.lex_state = 209}, - [3850] = {.lex_state = 239}, - [3851] = {.lex_state = 209}, + [3850] = {.lex_state = 209}, + [3851] = {.lex_state = 238}, [3852] = {.lex_state = 209}, - [3853] = {.lex_state = 206}, - [3854] = {.lex_state = 206}, - [3855] = {.lex_state = 209}, - [3856] = {.lex_state = 239}, - [3857] = {.lex_state = 193}, - [3858] = {.lex_state = 193}, - [3859] = {.lex_state = 206}, - [3860] = {.lex_state = 209}, - [3861] = {.lex_state = 206}, - [3862] = {.lex_state = 209}, - [3863] = {.lex_state = 209}, - [3864] = {.lex_state = 209}, - [3865] = {.lex_state = 206}, - [3866] = {.lex_state = 206}, - [3867] = {.lex_state = 206}, - [3868] = {.lex_state = 209}, - [3869] = {.lex_state = 239}, + [3853] = {.lex_state = 204}, + [3854] = {.lex_state = 209}, + [3855] = {.lex_state = 206}, + [3856] = {.lex_state = 206}, + [3857] = {.lex_state = 209}, + [3858] = {.lex_state = 206}, + [3859] = {.lex_state = 209}, + [3860] = {.lex_state = 239}, + [3861] = {.lex_state = 193}, + [3862] = {.lex_state = 193}, + [3863] = {.lex_state = 206}, + [3864] = {.lex_state = 204}, + [3865] = {.lex_state = 209}, + [3866] = {.lex_state = 209}, + [3867] = {.lex_state = 239}, + [3868] = {.lex_state = 206}, + [3869] = {.lex_state = 209}, [3870] = {.lex_state = 206}, - [3871] = {.lex_state = 193}, - [3872] = {.lex_state = 242}, + [3871] = {.lex_state = 209}, + [3872] = {.lex_state = 204}, [3873] = {.lex_state = 209}, - [3874] = {.lex_state = 193}, + [3874] = {.lex_state = 209}, [3875] = {.lex_state = 209}, [3876] = {.lex_state = 239}, - [3877] = {.lex_state = 206}, - [3878] = {.lex_state = 206}, - [3879] = {.lex_state = 239}, + [3877] = {.lex_state = 209}, + [3878] = {.lex_state = 209}, + [3879] = {.lex_state = 209}, [3880] = {.lex_state = 209}, [3881] = {.lex_state = 239}, [3882] = {.lex_state = 239}, - [3883] = {.lex_state = 241}, + [3883] = {.lex_state = 206}, [3884] = {.lex_state = 241}, - [3885] = {.lex_state = 209}, - [3886] = {.lex_state = 239}, + [3885] = {.lex_state = 241}, + [3886] = {.lex_state = 209}, [3887] = {.lex_state = 206}, [3888] = {.lex_state = 209}, - [3889] = {.lex_state = 206}, - [3890] = {.lex_state = 239}, + [3889] = {.lex_state = 239}, + [3890] = {.lex_state = 209}, [3891] = {.lex_state = 239}, - [3892] = {.lex_state = 206}, - [3893] = {.lex_state = 206}, - [3894] = {.lex_state = 239}, - [3895] = {.lex_state = 209}, - [3896] = {.lex_state = 206}, - [3897] = {.lex_state = 209}, + [3892] = {.lex_state = 193}, + [3893] = {.lex_state = 209}, + [3894] = {.lex_state = 193}, + [3895] = {.lex_state = 204}, + [3896] = {.lex_state = 239}, + [3897] = {.lex_state = 239}, [3898] = {.lex_state = 206}, - [3899] = {.lex_state = 209}, - [3900] = {.lex_state = 206}, - [3901] = {.lex_state = 209}, - [3902] = {.lex_state = 206}, + [3899] = {.lex_state = 206}, + [3900] = {.lex_state = 239}, + [3901] = {.lex_state = 239}, + [3902] = {.lex_state = 242}, [3903] = {.lex_state = 209}, - [3904] = {.lex_state = 239}, - [3905] = {.lex_state = 204}, + [3904] = {.lex_state = 209}, + [3905] = {.lex_state = 239}, [3906] = {.lex_state = 209}, [3907] = {.lex_state = 209}, - [3908] = {.lex_state = 209}, - [3909] = {.lex_state = 204}, - [3910] = {.lex_state = 239}, - [3911] = {.lex_state = 239}, + [3908] = {.lex_state = 239}, + [3909] = {.lex_state = 209}, + [3910] = {.lex_state = 209}, + [3911] = {.lex_state = 209}, [3912] = {.lex_state = 209}, [3913] = {.lex_state = 209}, - [3914] = {.lex_state = 209}, + [3914] = {.lex_state = 204}, [3915] = {.lex_state = 209}, [3916] = {.lex_state = 209}, [3917] = {.lex_state = 209}, - [3918] = {.lex_state = 209}, + [3918] = {.lex_state = 206}, [3919] = {.lex_state = 209}, - [3920] = {.lex_state = 209}, + [3920] = {.lex_state = 206}, [3921] = {.lex_state = 209}, - [3922] = {.lex_state = 209}, - [3923] = {.lex_state = 206}, - [3924] = {.lex_state = 239}, - [3925] = {.lex_state = 242}, - [3926] = {.lex_state = 204}, - [3927] = {.lex_state = 204}, - [3928] = {.lex_state = 204}, - [3929] = {.lex_state = 193}, - [3930] = {.lex_state = 204}, - [3931] = {.lex_state = 243}, - [3932] = {.lex_state = 204}, - [3933] = {.lex_state = 193}, - [3934] = {.lex_state = 204}, - [3935] = {.lex_state = 204}, - [3936] = {.lex_state = 204}, - [3937] = {.lex_state = 243}, - [3938] = {.lex_state = 204}, - [3939] = {.lex_state = 242}, - [3940] = {.lex_state = 204}, - [3941] = {.lex_state = 204}, - [3942] = {.lex_state = 204}, - [3943] = {.lex_state = 204}, - [3944] = {.lex_state = 204}, - [3945] = {.lex_state = 204}, - [3946] = {.lex_state = 204}, - [3947] = {.lex_state = 242}, - [3948] = {.lex_state = 204}, - [3949] = {.lex_state = 204}, - [3950] = {.lex_state = 204}, - [3951] = {.lex_state = 204}, - [3952] = {.lex_state = 204}, - [3953] = {.lex_state = 193}, - [3954] = {.lex_state = 204}, - [3955] = {.lex_state = 204}, - [3956] = {.lex_state = 204}, - [3957] = {.lex_state = 194}, - [3958] = {.lex_state = 204}, - [3959] = {.lex_state = 204}, - [3960] = {.lex_state = 204}, - [3961] = {.lex_state = 204}, - [3962] = {.lex_state = 238}, - [3963] = {.lex_state = 204}, - [3964] = {.lex_state = 204}, - [3965] = {.lex_state = 193}, - [3966] = {.lex_state = 241}, - [3967] = {.lex_state = 194}, - [3968] = {.lex_state = 204}, - [3969] = {.lex_state = 204}, - [3970] = {.lex_state = 204}, - [3971] = {.lex_state = 204}, - [3972] = {.lex_state = 241}, + [3922] = {.lex_state = 206}, + [3923] = {.lex_state = 239}, + [3924] = {.lex_state = 209}, + [3925] = {.lex_state = 206}, + [3926] = {.lex_state = 206}, + [3927] = {.lex_state = 206}, + [3928] = {.lex_state = 239}, + [3929] = {.lex_state = 206}, + [3930] = {.lex_state = 206}, + [3931] = {.lex_state = 239}, + [3932] = {.lex_state = 209}, + [3933] = {.lex_state = 209}, + [3934] = {.lex_state = 206}, + [3935] = {.lex_state = 209}, + [3936] = {.lex_state = 209}, + [3937] = {.lex_state = 209}, + [3938] = {.lex_state = 209}, + [3939] = {.lex_state = 206}, + [3940] = {.lex_state = 242}, + [3941] = {.lex_state = 206}, + [3942] = {.lex_state = 209}, + [3943] = {.lex_state = 206}, + [3944] = {.lex_state = 206}, + [3945] = {.lex_state = 206}, + [3946] = {.lex_state = 228}, + [3947] = {.lex_state = 206}, + [3948] = {.lex_state = 209}, + [3949] = {.lex_state = 209}, + [3950] = {.lex_state = 209}, + [3951] = {.lex_state = 209}, + [3952] = {.lex_state = 206}, + [3953] = {.lex_state = 209}, + [3954] = {.lex_state = 239}, + [3955] = {.lex_state = 239}, + [3956] = {.lex_state = 209}, + [3957] = {.lex_state = 206}, + [3958] = {.lex_state = 206}, + [3959] = {.lex_state = 209}, + [3960] = {.lex_state = 239}, + [3961] = {.lex_state = 209}, + [3962] = {.lex_state = 241}, + [3963] = {.lex_state = 239}, + [3964] = {.lex_state = 206}, + [3965] = {.lex_state = 206}, + [3966] = {.lex_state = 206}, + [3967] = {.lex_state = 209}, + [3968] = {.lex_state = 206}, + [3969] = {.lex_state = 239}, + [3970] = {.lex_state = 209}, + [3971] = {.lex_state = 209}, + [3972] = {.lex_state = 204}, [3973] = {.lex_state = 204}, [3974] = {.lex_state = 204}, [3975] = {.lex_state = 204}, - [3976] = {.lex_state = 206}, - [3977] = {.lex_state = 242}, - [3978] = {.lex_state = 243}, - [3979] = {.lex_state = 204}, - [3980] = {.lex_state = 228}, + [3976] = {.lex_state = 243}, + [3977] = {.lex_state = 204}, + [3978] = {.lex_state = 204}, + [3979] = {.lex_state = 194}, + [3980] = {.lex_state = 204}, [3981] = {.lex_state = 204}, - [3982] = {.lex_state = 238}, - [3983] = {.lex_state = 238}, - [3984] = {.lex_state = 242}, + [3982] = {.lex_state = 204}, + [3983] = {.lex_state = 194}, + [3984] = {.lex_state = 193}, [3985] = {.lex_state = 204}, - [3986] = {.lex_state = 228}, + [3986] = {.lex_state = 204}, [3987] = {.lex_state = 204}, - [3988] = {.lex_state = 242}, + [3988] = {.lex_state = 204}, [3989] = {.lex_state = 204}, - [3990] = {.lex_state = 241}, - [3991] = {.lex_state = 238}, - [3992] = {.lex_state = 243}, - [3993] = {.lex_state = 206}, + [3990] = {.lex_state = 204}, + [3991] = {.lex_state = 204}, + [3992] = {.lex_state = 204}, + [3993] = {.lex_state = 204}, [3994] = {.lex_state = 204}, [3995] = {.lex_state = 241}, [3996] = {.lex_state = 204}, - [3997] = {.lex_state = 241}, - [3998] = {.lex_state = 228}, - [3999] = {.lex_state = 242}, - [4000] = {.lex_state = 241}, - [4001] = {.lex_state = 238}, - [4002] = {.lex_state = 204}, - [4003] = {.lex_state = 204}, - [4004] = {.lex_state = 206}, + [3997] = {.lex_state = 204}, + [3998] = {.lex_state = 238}, + [3999] = {.lex_state = 204}, + [4000] = {.lex_state = 204}, + [4001] = {.lex_state = 204}, + [4002] = {.lex_state = 193}, + [4003] = {.lex_state = 242}, + [4004] = {.lex_state = 193}, [4005] = {.lex_state = 204}, - [4006] = {.lex_state = 206}, - [4007] = {.lex_state = 229}, - [4008] = {.lex_state = 239}, - [4009] = {.lex_state = 239}, - [4010] = {.lex_state = 239}, - [4011] = {.lex_state = 239}, - [4012] = {.lex_state = 239}, + [4006] = {.lex_state = 204}, + [4007] = {.lex_state = 204}, + [4008] = {.lex_state = 204}, + [4009] = {.lex_state = 204}, + [4010] = {.lex_state = 204}, + [4011] = {.lex_state = 204}, + [4012] = {.lex_state = 204}, [4013] = {.lex_state = 204}, - [4014] = {.lex_state = 239}, - [4015] = {.lex_state = 239}, - [4016] = {.lex_state = 239}, - [4017] = {.lex_state = 239}, - [4018] = {.lex_state = 194}, + [4014] = {.lex_state = 204}, + [4015] = {.lex_state = 204}, + [4016] = {.lex_state = 193}, + [4017] = {.lex_state = 241}, + [4018] = {.lex_state = 204}, [4019] = {.lex_state = 204}, - [4020] = {.lex_state = 239}, - [4021] = {.lex_state = 239}, - [4022] = {.lex_state = 239}, - [4023] = {.lex_state = 239}, - [4024] = {.lex_state = 204}, - [4025] = {.lex_state = 241}, - [4026] = {.lex_state = 238}, - [4027] = {.lex_state = 239}, - [4028] = {.lex_state = 241}, - [4029] = {.lex_state = 239}, - [4030] = {.lex_state = 239}, - [4031] = {.lex_state = 239}, - [4032] = {.lex_state = 238}, - [4033] = {.lex_state = 239}, - [4034] = {.lex_state = 238}, - [4035] = {.lex_state = 229}, - [4036] = {.lex_state = 239}, - [4037] = {.lex_state = 239}, - [4038] = {.lex_state = 238}, - [4039] = {.lex_state = 239}, - [4040] = {.lex_state = 241}, - [4041] = {.lex_state = 241}, - [4042] = {.lex_state = 238}, - [4043] = {.lex_state = 241}, - [4044] = {.lex_state = 239}, - [4045] = {.lex_state = 239}, - [4046] = {.lex_state = 238}, - [4047] = {.lex_state = 238}, - [4048] = {.lex_state = 194}, - [4049] = {.lex_state = 239}, - [4050] = {.lex_state = 239}, - [4051] = {.lex_state = 239}, - [4052] = {.lex_state = 239}, - [4053] = {.lex_state = 239}, - [4054] = {.lex_state = 204}, - [4055] = {.lex_state = 204}, - [4056] = {.lex_state = 204}, - [4057] = {.lex_state = 242}, - [4058] = {.lex_state = 243}, - [4059] = {.lex_state = 206}, - [4060] = {.lex_state = 242}, - [4061] = {.lex_state = 204}, - [4062] = {.lex_state = 204}, - [4063] = {.lex_state = 204}, - [4064] = {.lex_state = 204}, - [4065] = {.lex_state = 206}, + [4020] = {.lex_state = 204}, + [4021] = {.lex_state = 204}, + [4022] = {.lex_state = 204}, + [4023] = {.lex_state = 204}, + [4024] = {.lex_state = 243}, + [4025] = {.lex_state = 204}, + [4026] = {.lex_state = 204}, + [4027] = {.lex_state = 204}, + [4028] = {.lex_state = 242}, + [4029] = {.lex_state = 242}, + [4030] = {.lex_state = 243}, + [4031] = {.lex_state = 228}, + [4032] = {.lex_state = 228}, + [4033] = {.lex_state = 242}, + [4034] = {.lex_state = 204}, + [4035] = {.lex_state = 204}, + [4036] = {.lex_state = 243}, + [4037] = {.lex_state = 204}, + [4038] = {.lex_state = 204}, + [4039] = {.lex_state = 204}, + [4040] = {.lex_state = 238}, + [4041] = {.lex_state = 238}, + [4042] = {.lex_state = 204}, + [4043] = {.lex_state = 206}, + [4044] = {.lex_state = 206}, + [4045] = {.lex_state = 204}, + [4046] = {.lex_state = 204}, + [4047] = {.lex_state = 204}, + [4048] = {.lex_state = 204}, + [4049] = {.lex_state = 242}, + [4050] = {.lex_state = 206}, + [4051] = {.lex_state = 241}, + [4052] = {.lex_state = 228}, + [4053] = {.lex_state = 241}, + [4054] = {.lex_state = 238}, + [4055] = {.lex_state = 238}, + [4056] = {.lex_state = 241}, + [4057] = {.lex_state = 206}, + [4058] = {.lex_state = 241}, + [4059] = {.lex_state = 238}, + [4060] = {.lex_state = 239}, + [4061] = {.lex_state = 239}, + [4062] = {.lex_state = 239}, + [4063] = {.lex_state = 238}, + [4064] = {.lex_state = 239}, + [4065] = {.lex_state = 239}, [4066] = {.lex_state = 239}, - [4067] = {.lex_state = 204}, + [4067] = {.lex_state = 239}, [4068] = {.lex_state = 239}, - [4069] = {.lex_state = 245}, - [4070] = {.lex_state = 204}, - [4071] = {.lex_state = 204}, - [4072] = {.lex_state = 242}, - [4073] = {.lex_state = 243}, + [4069] = {.lex_state = 241}, + [4070] = {.lex_state = 239}, + [4071] = {.lex_state = 239}, + [4072] = {.lex_state = 239}, + [4073] = {.lex_state = 239}, [4074] = {.lex_state = 204}, - [4075] = {.lex_state = 204}, + [4075] = {.lex_state = 239}, [4076] = {.lex_state = 239}, - [4077] = {.lex_state = 204}, - [4078] = {.lex_state = 204}, - [4079] = {.lex_state = 204}, - [4080] = {.lex_state = 204}, - [4081] = {.lex_state = 204}, - [4082] = {.lex_state = 204}, - [4083] = {.lex_state = 204}, - [4084] = {.lex_state = 245}, - [4085] = {.lex_state = 238}, - [4086] = {.lex_state = 206}, - [4087] = {.lex_state = 204}, - [4088] = {.lex_state = 238}, + [4077] = {.lex_state = 238}, + [4078] = {.lex_state = 238}, + [4079] = {.lex_state = 194}, + [4080] = {.lex_state = 239}, + [4081] = {.lex_state = 239}, + [4082] = {.lex_state = 239}, + [4083] = {.lex_state = 241}, + [4084] = {.lex_state = 229}, + [4085] = {.lex_state = 241}, + [4086] = {.lex_state = 229}, + [4087] = {.lex_state = 239}, + [4088] = {.lex_state = 239}, [4089] = {.lex_state = 204}, - [4090] = {.lex_state = 204}, - [4091] = {.lex_state = 242}, - [4092] = {.lex_state = 204}, - [4093] = {.lex_state = 242}, - [4094] = {.lex_state = 204}, - [4095] = {.lex_state = 204}, - [4096] = {.lex_state = 204}, - [4097] = {.lex_state = 204}, - [4098] = {.lex_state = 204}, - [4099] = {.lex_state = 239}, - [4100] = {.lex_state = 204}, - [4101] = {.lex_state = 239}, + [4090] = {.lex_state = 239}, + [4091] = {.lex_state = 238}, + [4092] = {.lex_state = 239}, + [4093] = {.lex_state = 239}, + [4094] = {.lex_state = 194}, + [4095] = {.lex_state = 239}, + [4096] = {.lex_state = 239}, + [4097] = {.lex_state = 239}, + [4098] = {.lex_state = 238}, + [4099] = {.lex_state = 194}, + [4100] = {.lex_state = 241}, + [4101] = {.lex_state = 194}, [4102] = {.lex_state = 204}, - [4103] = {.lex_state = 206}, - [4104] = {.lex_state = 204}, + [4103] = {.lex_state = 239}, + [4104] = {.lex_state = 239}, [4105] = {.lex_state = 239}, - [4106] = {.lex_state = 239}, - [4107] = {.lex_state = 206}, + [4106] = {.lex_state = 238}, + [4107] = {.lex_state = 241}, [4108] = {.lex_state = 204}, [4109] = {.lex_state = 204}, [4110] = {.lex_state = 204}, - [4111] = {.lex_state = 204}, + [4111] = {.lex_state = 206}, [4112] = {.lex_state = 204}, - [4113] = {.lex_state = 204}, + [4113] = {.lex_state = 243}, [4114] = {.lex_state = 204}, - [4115] = {.lex_state = 204}, - [4116] = {.lex_state = 204}, - [4117] = {.lex_state = 204}, - [4118] = {.lex_state = 194}, - [4119] = {.lex_state = 204}, - [4120] = {.lex_state = 204}, - [4121] = {.lex_state = 229}, - [4122] = {.lex_state = 242}, - [4123] = {.lex_state = 242}, - [4124] = {.lex_state = 242}, - [4125] = {.lex_state = 242}, - [4126] = {.lex_state = 238}, - [4127] = {.lex_state = 204}, - [4128] = {.lex_state = 245}, - [4129] = {.lex_state = 194}, - [4130] = {.lex_state = 242}, - [4131] = {.lex_state = 241}, - [4132] = {.lex_state = 194}, - [4133] = {.lex_state = 229}, - [4134] = {.lex_state = 194}, + [4115] = {.lex_state = 242}, + [4116] = {.lex_state = 206}, + [4117] = {.lex_state = 242}, + [4118] = {.lex_state = 204}, + [4119] = {.lex_state = 242}, + [4120] = {.lex_state = 242}, + [4121] = {.lex_state = 204}, + [4122] = {.lex_state = 245}, + [4123] = {.lex_state = 204}, + [4124] = {.lex_state = 204}, + [4125] = {.lex_state = 204}, + [4126] = {.lex_state = 239}, + [4127] = {.lex_state = 239}, + [4128] = {.lex_state = 204}, + [4129] = {.lex_state = 239}, + [4130] = {.lex_state = 204}, + [4131] = {.lex_state = 204}, + [4132] = {.lex_state = 206}, + [4133] = {.lex_state = 239}, + [4134] = {.lex_state = 206}, [4135] = {.lex_state = 204}, - [4136] = {.lex_state = 229}, - [4137] = {.lex_state = 242}, + [4136] = {.lex_state = 204}, + [4137] = {.lex_state = 239}, [4138] = {.lex_state = 204}, - [4139] = {.lex_state = 242}, + [4139] = {.lex_state = 204}, [4140] = {.lex_state = 242}, - [4141] = {.lex_state = 241}, - [4142] = {.lex_state = 242}, - [4143] = {.lex_state = 229}, - [4144] = {.lex_state = 194}, - [4145] = {.lex_state = 241}, - [4146] = {.lex_state = 206}, - [4147] = {.lex_state = 241}, + [4141] = {.lex_state = 204}, + [4142] = {.lex_state = 204}, + [4143] = {.lex_state = 204}, + [4144] = {.lex_state = 204}, + [4145] = {.lex_state = 204}, + [4146] = {.lex_state = 204}, + [4147] = {.lex_state = 204}, [4148] = {.lex_state = 204}, - [4149] = {.lex_state = 238}, - [4150] = {.lex_state = 204}, - [4151] = {.lex_state = 238}, - [4152] = {.lex_state = 238}, - [4153] = {.lex_state = 238}, - [4154] = {.lex_state = 194}, - [4155] = {.lex_state = 206}, - [4156] = {.lex_state = 241}, - [4157] = {.lex_state = 194}, - [4158] = {.lex_state = 204}, + [4149] = {.lex_state = 204}, + [4150] = {.lex_state = 245}, + [4151] = {.lex_state = 239}, + [4152] = {.lex_state = 239}, + [4153] = {.lex_state = 204}, + [4154] = {.lex_state = 238}, + [4155] = {.lex_state = 204}, + [4156] = {.lex_state = 204}, + [4157] = {.lex_state = 204}, + [4158] = {.lex_state = 238}, [4159] = {.lex_state = 204}, - [4160] = {.lex_state = 206}, + [4160] = {.lex_state = 243}, [4161] = {.lex_state = 204}, - [4162] = {.lex_state = 204}, - [4163] = {.lex_state = 206}, - [4164] = {.lex_state = 242}, - [4165] = {.lex_state = 194}, - [4166] = {.lex_state = 204}, - [4167] = {.lex_state = 204}, + [4162] = {.lex_state = 242}, + [4163] = {.lex_state = 238}, + [4164] = {.lex_state = 194}, + [4165] = {.lex_state = 206}, + [4166] = {.lex_state = 229}, + [4167] = {.lex_state = 238}, [4168] = {.lex_state = 204}, - [4169] = {.lex_state = 241}, - [4170] = {.lex_state = 204}, - [4171] = {.lex_state = 242}, - [4172] = {.lex_state = 204}, - [4173] = {.lex_state = 204}, - [4174] = {.lex_state = 206}, - [4175] = {.lex_state = 242}, - [4176] = {.lex_state = 194}, - [4177] = {.lex_state = 194}, - [4178] = {.lex_state = 242}, - [4179] = {.lex_state = 204}, - [4180] = {.lex_state = 242}, - [4181] = {.lex_state = 242}, - [4182] = {.lex_state = 194}, - [4183] = {.lex_state = 206}, - [4184] = {.lex_state = 238}, - [4185] = {.lex_state = 194}, - [4186] = {.lex_state = 194}, + [4169] = {.lex_state = 204}, + [4170] = {.lex_state = 229}, + [4171] = {.lex_state = 206}, + [4172] = {.lex_state = 238}, + [4173] = {.lex_state = 194}, + [4174] = {.lex_state = 242}, + [4175] = {.lex_state = 206}, + [4176] = {.lex_state = 206}, + [4177] = {.lex_state = 204}, + [4178] = {.lex_state = 194}, + [4179] = {.lex_state = 194}, + [4180] = {.lex_state = 229}, + [4181] = {.lex_state = 204}, + [4182] = {.lex_state = 204}, + [4183] = {.lex_state = 204}, + [4184] = {.lex_state = 204}, + [4185] = {.lex_state = 241}, + [4186] = {.lex_state = 229}, [4187] = {.lex_state = 242}, - [4188] = {.lex_state = 238}, - [4189] = {.lex_state = 241}, - [4190] = {.lex_state = 241}, - [4191] = {.lex_state = 194}, - [4192] = {.lex_state = 242}, - [4193] = {.lex_state = 242}, - [4194] = {.lex_state = 242}, + [4188] = {.lex_state = 204}, + [4189] = {.lex_state = 194}, + [4190] = {.lex_state = 242}, + [4191] = {.lex_state = 204}, + [4192] = {.lex_state = 194}, + [4193] = {.lex_state = 204}, + [4194] = {.lex_state = 204}, [4195] = {.lex_state = 242}, [4196] = {.lex_state = 242}, - [4197] = {.lex_state = 194}, - [4198] = {.lex_state = 242}, - [4199] = {.lex_state = 207}, - [4200] = {.lex_state = 241}, - [4201] = {.lex_state = 242}, - [4202] = {.lex_state = 242}, - [4203] = {.lex_state = 242}, - [4204] = {.lex_state = 194}, - [4205] = {.lex_state = 207}, + [4197] = {.lex_state = 242}, + [4198] = {.lex_state = 194}, + [4199] = {.lex_state = 204}, + [4200] = {.lex_state = 204}, + [4201] = {.lex_state = 206}, + [4202] = {.lex_state = 204}, + [4203] = {.lex_state = 204}, + [4204] = {.lex_state = 204}, + [4205] = {.lex_state = 245}, [4206] = {.lex_state = 242}, - [4207] = {.lex_state = 242}, - [4208] = {.lex_state = 242}, - [4209] = {.lex_state = 205}, - [4210] = {.lex_state = 205}, - [4211] = {.lex_state = 241}, - [4212] = {.lex_state = 204}, - [4213] = {.lex_state = 204}, - [4214] = {.lex_state = 204}, - [4215] = {.lex_state = 204}, + [4207] = {.lex_state = 241}, + [4208] = {.lex_state = 204}, + [4209] = {.lex_state = 238}, + [4210] = {.lex_state = 204}, + [4211] = {.lex_state = 204}, + [4212] = {.lex_state = 194}, + [4213] = {.lex_state = 241}, + [4214] = {.lex_state = 238}, + [4215] = {.lex_state = 241}, [4216] = {.lex_state = 204}, - [4217] = {.lex_state = 245}, + [4217] = {.lex_state = 204}, [4218] = {.lex_state = 242}, - [4219] = {.lex_state = 238}, - [4220] = {.lex_state = 229}, - [4221] = {.lex_state = 229}, - [4222] = {.lex_state = 229}, - [4223] = {.lex_state = 238}, - [4224] = {.lex_state = 238}, - [4225] = {.lex_state = 238}, - [4226] = {.lex_state = 194}, - [4227] = {.lex_state = 229}, - [4228] = {.lex_state = 229}, + [4219] = {.lex_state = 204}, + [4220] = {.lex_state = 204}, + [4221] = {.lex_state = 242}, + [4222] = {.lex_state = 204}, + [4223] = {.lex_state = 241}, + [4224] = {.lex_state = 241}, + [4225] = {.lex_state = 194}, + [4226] = {.lex_state = 238}, + [4227] = {.lex_state = 194}, + [4228] = {.lex_state = 242}, [4229] = {.lex_state = 241}, - [4230] = {.lex_state = 229}, - [4231] = {.lex_state = 241}, - [4232] = {.lex_state = 229}, - [4233] = {.lex_state = 229}, - [4234] = {.lex_state = 241}, + [4230] = {.lex_state = 204}, + [4231] = {.lex_state = 242}, + [4232] = {.lex_state = 241}, + [4233] = {.lex_state = 242}, + [4234] = {.lex_state = 205}, [4235] = {.lex_state = 204}, - [4236] = {.lex_state = 229}, - [4237] = {.lex_state = 229}, - [4238] = {.lex_state = 245}, - [4239] = {.lex_state = 230}, - [4240] = {.lex_state = 229}, - [4241] = {.lex_state = 229}, - [4242] = {.lex_state = 204}, - [4243] = {.lex_state = 207}, - [4244] = {.lex_state = 229}, - [4245] = {.lex_state = 241}, - [4246] = {.lex_state = 241}, - [4247] = {.lex_state = 230}, - [4248] = {.lex_state = 229}, - [4249] = {.lex_state = 238}, - [4250] = {.lex_state = 207}, - [4251] = {.lex_state = 229}, - [4252] = {.lex_state = 229}, - [4253] = {.lex_state = 241}, - [4254] = {.lex_state = 241}, - [4255] = {.lex_state = 204}, - [4256] = {.lex_state = 229}, - [4257] = {.lex_state = 204}, - [4258] = {.lex_state = 204}, - [4259] = {.lex_state = 241}, - [4260] = {.lex_state = 204}, - [4261] = {.lex_state = 241}, - [4262] = {.lex_state = 241}, - [4263] = {.lex_state = 241}, - [4264] = {.lex_state = 241}, - [4265] = {.lex_state = 204}, + [4236] = {.lex_state = 242}, + [4237] = {.lex_state = 242}, + [4238] = {.lex_state = 194}, + [4239] = {.lex_state = 242}, + [4240] = {.lex_state = 194}, + [4241] = {.lex_state = 242}, + [4242] = {.lex_state = 205}, + [4243] = {.lex_state = 194}, + [4244] = {.lex_state = 242}, + [4245] = {.lex_state = 242}, + [4246] = {.lex_state = 194}, + [4247] = {.lex_state = 242}, + [4248] = {.lex_state = 242}, + [4249] = {.lex_state = 241}, + [4250] = {.lex_state = 242}, + [4251] = {.lex_state = 207}, + [4252] = {.lex_state = 206}, + [4253] = {.lex_state = 206}, + [4254] = {.lex_state = 194}, + [4255] = {.lex_state = 242}, + [4256] = {.lex_state = 194}, + [4257] = {.lex_state = 242}, + [4258] = {.lex_state = 194}, + [4259] = {.lex_state = 242}, + [4260] = {.lex_state = 194}, + [4261] = {.lex_state = 194}, + [4262] = {.lex_state = 242}, + [4263] = {.lex_state = 194}, + [4264] = {.lex_state = 242}, + [4265] = {.lex_state = 238}, [4266] = {.lex_state = 204}, [4267] = {.lex_state = 242}, - [4268] = {.lex_state = 204}, - [4269] = {.lex_state = 204}, - [4270] = {.lex_state = 204}, - [4271] = {.lex_state = 242}, + [4268] = {.lex_state = 241}, + [4269] = {.lex_state = 207}, + [4270] = {.lex_state = 242}, + [4271] = {.lex_state = 241}, [4272] = {.lex_state = 204}, [4273] = {.lex_state = 204}, - [4274] = {.lex_state = 204}, - [4275] = {.lex_state = 241}, - [4276] = {.lex_state = 241}, + [4274] = {.lex_state = 229}, + [4275] = {.lex_state = 230}, + [4276] = {.lex_state = 207}, [4277] = {.lex_state = 204}, [4278] = {.lex_state = 204}, - [4279] = {.lex_state = 242}, - [4280] = {.lex_state = 241}, - [4281] = {.lex_state = 245}, - [4282] = {.lex_state = 204}, + [4279] = {.lex_state = 204}, + [4280] = {.lex_state = 229}, + [4281] = {.lex_state = 229}, + [4282] = {.lex_state = 245}, [4283] = {.lex_state = 204}, - [4284] = {.lex_state = 204}, - [4285] = {.lex_state = 204}, - [4286] = {.lex_state = 204}, - [4287] = {.lex_state = 242}, + [4284] = {.lex_state = 229}, + [4285] = {.lex_state = 229}, + [4286] = {.lex_state = 229}, + [4287] = {.lex_state = 229}, [4288] = {.lex_state = 204}, - [4289] = {.lex_state = 241}, - [4290] = {.lex_state = 204}, - [4291] = {.lex_state = 204}, - [4292] = {.lex_state = 206}, + [4289] = {.lex_state = 238}, + [4290] = {.lex_state = 245}, + [4291] = {.lex_state = 238}, + [4292] = {.lex_state = 238}, [4293] = {.lex_state = 204}, - [4294] = {.lex_state = 204}, - [4295] = {.lex_state = 242}, - [4296] = {.lex_state = 242}, - [4297] = {.lex_state = 242}, - [4298] = {.lex_state = 242}, - [4299] = {.lex_state = 238}, - [4300] = {.lex_state = 242}, - [4301] = {.lex_state = 238}, - [4302] = {.lex_state = 204}, - [4303] = {.lex_state = 204}, - [4304] = {.lex_state = 206}, - [4305] = {.lex_state = 204}, - [4306] = {.lex_state = 204}, - [4307] = {.lex_state = 204}, - [4308] = {.lex_state = 241}, - [4309] = {.lex_state = 204}, - [4310] = {.lex_state = 204}, - [4311] = {.lex_state = 204}, - [4312] = {.lex_state = 204}, - [4313] = {.lex_state = 204}, - [4314] = {.lex_state = 204}, - [4315] = {.lex_state = 204}, - [4316] = {.lex_state = 245}, + [4294] = {.lex_state = 207}, + [4295] = {.lex_state = 229}, + [4296] = {.lex_state = 229}, + [4297] = {.lex_state = 194}, + [4298] = {.lex_state = 204}, + [4299] = {.lex_state = 229}, + [4300] = {.lex_state = 229}, + [4301] = {.lex_state = 229}, + [4302] = {.lex_state = 229}, + [4303] = {.lex_state = 229}, + [4304] = {.lex_state = 241}, + [4305] = {.lex_state = 241}, + [4306] = {.lex_state = 238}, + [4307] = {.lex_state = 241}, + [4308] = {.lex_state = 229}, + [4309] = {.lex_state = 241}, + [4310] = {.lex_state = 241}, + [4311] = {.lex_state = 229}, + [4312] = {.lex_state = 229}, + [4313] = {.lex_state = 230}, + [4314] = {.lex_state = 241}, + [4315] = {.lex_state = 238}, + [4316] = {.lex_state = 204}, [4317] = {.lex_state = 204}, - [4318] = {.lex_state = 204}, + [4318] = {.lex_state = 242}, [4319] = {.lex_state = 204}, [4320] = {.lex_state = 204}, - [4321] = {.lex_state = 204}, - [4322] = {.lex_state = 204}, - [4323] = {.lex_state = 229}, - [4324] = {.lex_state = 229}, - [4325] = {.lex_state = 229}, + [4321] = {.lex_state = 245}, + [4322] = {.lex_state = 242}, + [4323] = {.lex_state = 204}, + [4324] = {.lex_state = 204}, + [4325] = {.lex_state = 241}, [4326] = {.lex_state = 204}, - [4327] = {.lex_state = 204}, - [4328] = {.lex_state = 229}, - [4329] = {.lex_state = 229}, - [4330] = {.lex_state = 229}, + [4327] = {.lex_state = 241}, + [4328] = {.lex_state = 241}, + [4329] = {.lex_state = 241}, + [4330] = {.lex_state = 241}, [4331] = {.lex_state = 204}, - [4332] = {.lex_state = 229}, - [4333] = {.lex_state = 194}, - [4334] = {.lex_state = 229}, - [4335] = {.lex_state = 204}, - [4336] = {.lex_state = 229}, - [4337] = {.lex_state = 242}, + [4332] = {.lex_state = 242}, + [4333] = {.lex_state = 204}, + [4334] = {.lex_state = 204}, + [4335] = {.lex_state = 245}, + [4336] = {.lex_state = 204}, + [4337] = {.lex_state = 204}, [4338] = {.lex_state = 204}, - [4339] = {.lex_state = 229}, + [4339] = {.lex_state = 242}, [4340] = {.lex_state = 204}, - [4341] = {.lex_state = 229}, - [4342] = {.lex_state = 225}, - [4343] = {.lex_state = 229}, - [4344] = {.lex_state = 229}, + [4341] = {.lex_state = 204}, + [4342] = {.lex_state = 242}, + [4343] = {.lex_state = 204}, + [4344] = {.lex_state = 204}, [4345] = {.lex_state = 204}, - [4346] = {.lex_state = 241}, - [4347] = {.lex_state = 241}, + [4346] = {.lex_state = 204}, + [4347] = {.lex_state = 204}, [4348] = {.lex_state = 204}, - [4349] = {.lex_state = 229}, - [4350] = {.lex_state = 241}, - [4351] = {.lex_state = 241}, - [4352] = {.lex_state = 241}, - [4353] = {.lex_state = 241}, - [4354] = {.lex_state = 241}, - [4355] = {.lex_state = 241}, - [4356] = {.lex_state = 241}, - [4357] = {.lex_state = 241}, - [4358] = {.lex_state = 242}, - [4359] = {.lex_state = 241}, - [4360] = {.lex_state = 204}, + [4349] = {.lex_state = 204}, + [4350] = {.lex_state = 204}, + [4351] = {.lex_state = 204}, + [4352] = {.lex_state = 206}, + [4353] = {.lex_state = 242}, + [4354] = {.lex_state = 204}, + [4355] = {.lex_state = 204}, + [4356] = {.lex_state = 242}, + [4357] = {.lex_state = 204}, + [4358] = {.lex_state = 204}, + [4359] = {.lex_state = 204}, + [4360] = {.lex_state = 242}, [4361] = {.lex_state = 204}, - [4362] = {.lex_state = 207}, + [4362] = {.lex_state = 204}, [4363] = {.lex_state = 204}, [4364] = {.lex_state = 204}, [4365] = {.lex_state = 204}, [4366] = {.lex_state = 204}, - [4367] = {.lex_state = 229}, - [4368] = {.lex_state = 204}, - [4369] = {.lex_state = 229}, - [4370] = {.lex_state = 229}, - [4371] = {.lex_state = 241}, - [4372] = {.lex_state = 204}, - [4373] = {.lex_state = 242}, - [4374] = {.lex_state = 242}, + [4367] = {.lex_state = 241}, + [4368] = {.lex_state = 238}, + [4369] = {.lex_state = 242}, + [4370] = {.lex_state = 241}, + [4371] = {.lex_state = 238}, + [4372] = {.lex_state = 241}, + [4373] = {.lex_state = 204}, + [4374] = {.lex_state = 204}, [4375] = {.lex_state = 241}, - [4376] = {.lex_state = 241}, + [4376] = {.lex_state = 206}, [4377] = {.lex_state = 204}, [4378] = {.lex_state = 241}, - [4379] = {.lex_state = 241}, - [4380] = {.lex_state = 207}, + [4379] = {.lex_state = 204}, + [4380] = {.lex_state = 241}, [4381] = {.lex_state = 241}, - [4382] = {.lex_state = 242}, + [4382] = {.lex_state = 204}, [4383] = {.lex_state = 241}, - [4384] = {.lex_state = 244}, - [4385] = {.lex_state = 204}, - [4386] = {.lex_state = 241}, + [4384] = {.lex_state = 205}, + [4385] = {.lex_state = 194}, + [4386] = {.lex_state = 229}, [4387] = {.lex_state = 241}, [4388] = {.lex_state = 241}, - [4389] = {.lex_state = 241}, + [4389] = {.lex_state = 229}, [4390] = {.lex_state = 204}, - [4391] = {.lex_state = 229}, - [4392] = {.lex_state = 241}, - [4393] = {.lex_state = 205}, - [4394] = {.lex_state = 241}, - [4395] = {.lex_state = 204}, + [4391] = {.lex_state = 204}, + [4392] = {.lex_state = 204}, + [4393] = {.lex_state = 204}, + [4394] = {.lex_state = 229}, + [4395] = {.lex_state = 241}, [4396] = {.lex_state = 204}, - [4397] = {.lex_state = 204}, - [4398] = {.lex_state = 241}, - [4399] = {.lex_state = 194}, - [4400] = {.lex_state = 204}, + [4397] = {.lex_state = 229}, + [4398] = {.lex_state = 204}, + [4399] = {.lex_state = 241}, + [4400] = {.lex_state = 229}, [4401] = {.lex_state = 204}, [4402] = {.lex_state = 229}, - [4403] = {.lex_state = 204}, - [4404] = {.lex_state = 194}, - [4405] = {.lex_state = 229}, - [4406] = {.lex_state = 194}, + [4403] = {.lex_state = 241}, + [4404] = {.lex_state = 229}, + [4405] = {.lex_state = 241}, + [4406] = {.lex_state = 241}, [4407] = {.lex_state = 204}, - [4408] = {.lex_state = 229}, + [4408] = {.lex_state = 241}, [4409] = {.lex_state = 241}, - [4410] = {.lex_state = 229}, - [4411] = {.lex_state = 204}, - [4412] = {.lex_state = 229}, + [4410] = {.lex_state = 204}, + [4411] = {.lex_state = 241}, + [4412] = {.lex_state = 241}, [4413] = {.lex_state = 204}, - [4414] = {.lex_state = 204}, - [4415] = {.lex_state = 204}, + [4414] = {.lex_state = 207}, + [4415] = {.lex_state = 229}, [4416] = {.lex_state = 241}, - [4417] = {.lex_state = 206}, + [4417] = {.lex_state = 241}, [4418] = {.lex_state = 204}, - [4419] = {.lex_state = 229}, - [4420] = {.lex_state = 229}, + [4419] = {.lex_state = 194}, + [4420] = {.lex_state = 225}, [4421] = {.lex_state = 229}, - [4422] = {.lex_state = 229}, + [4422] = {.lex_state = 242}, [4423] = {.lex_state = 242}, [4424] = {.lex_state = 204}, - [4425] = {.lex_state = 244}, + [4425] = {.lex_state = 229}, [4426] = {.lex_state = 229}, - [4427] = {.lex_state = 229}, - [4428] = {.lex_state = 206}, + [4427] = {.lex_state = 242}, + [4428] = {.lex_state = 242}, [4429] = {.lex_state = 229}, - [4430] = {.lex_state = 229}, + [4430] = {.lex_state = 204}, [4431] = {.lex_state = 204}, [4432] = {.lex_state = 204}, [4433] = {.lex_state = 204}, - [4434] = {.lex_state = 242}, - [4435] = {.lex_state = 229}, - [4436] = {.lex_state = 204}, - [4437] = {.lex_state = 206}, + [4434] = {.lex_state = 229}, + [4435] = {.lex_state = 194}, + [4436] = {.lex_state = 229}, + [4437] = {.lex_state = 204}, [4438] = {.lex_state = 241}, [4439] = {.lex_state = 241}, - [4440] = {.lex_state = 204}, + [4440] = {.lex_state = 241}, [4441] = {.lex_state = 229}, - [4442] = {.lex_state = 204}, - [4443] = {.lex_state = 206}, + [4442] = {.lex_state = 241}, + [4443] = {.lex_state = 241}, [4444] = {.lex_state = 241}, [4445] = {.lex_state = 241}, - [4446] = {.lex_state = 204}, - [4447] = {.lex_state = 206}, - [4448] = {.lex_state = 206}, - [4449] = {.lex_state = 241}, - [4450] = {.lex_state = 204}, + [4446] = {.lex_state = 242}, + [4447] = {.lex_state = 194}, + [4448] = {.lex_state = 204}, + [4449] = {.lex_state = 244}, + [4450] = {.lex_state = 229}, [4451] = {.lex_state = 241}, [4452] = {.lex_state = 204}, [4453] = {.lex_state = 204}, - [4454] = {.lex_state = 244}, - [4455] = {.lex_state = 204}, - [4456] = {.lex_state = 229}, - [4457] = {.lex_state = 204}, - [4458] = {.lex_state = 206}, - [4459] = {.lex_state = 242}, + [4454] = {.lex_state = 229}, + [4455] = {.lex_state = 207}, + [4456] = {.lex_state = 241}, + [4457] = {.lex_state = 229}, + [4458] = {.lex_state = 229}, + [4459] = {.lex_state = 204}, [4460] = {.lex_state = 204}, - [4461] = {.lex_state = 204}, + [4461] = {.lex_state = 241}, [4462] = {.lex_state = 229}, - [4463] = {.lex_state = 229}, + [4463] = {.lex_state = 204}, [4464] = {.lex_state = 204}, - [4465] = {.lex_state = 241}, + [4465] = {.lex_state = 204}, [4466] = {.lex_state = 204}, - [4467] = {.lex_state = 204}, - [4468] = {.lex_state = 242}, - [4469] = {.lex_state = 204}, + [4467] = {.lex_state = 229}, + [4468] = {.lex_state = 229}, + [4469] = {.lex_state = 242}, [4470] = {.lex_state = 204}, - [4471] = {.lex_state = 242}, - [4472] = {.lex_state = 229}, + [4471] = {.lex_state = 204}, + [4472] = {.lex_state = 204}, [4473] = {.lex_state = 229}, - [4474] = {.lex_state = 229}, - [4475] = {.lex_state = 204}, + [4474] = {.lex_state = 204}, + [4475] = {.lex_state = 229}, [4476] = {.lex_state = 229}, - [4477] = {.lex_state = 204}, - [4478] = {.lex_state = 229}, - [4479] = {.lex_state = 229}, - [4480] = {.lex_state = 241}, - [4481] = {.lex_state = 204}, - [4482] = {.lex_state = 206}, - [4483] = {.lex_state = 204}, + [4477] = {.lex_state = 229}, + [4478] = {.lex_state = 204}, + [4479] = {.lex_state = 244}, + [4480] = {.lex_state = 204}, + [4481] = {.lex_state = 206}, + [4482] = {.lex_state = 204}, + [4483] = {.lex_state = 229}, [4484] = {.lex_state = 204}, [4485] = {.lex_state = 204}, [4486] = {.lex_state = 229}, [4487] = {.lex_state = 204}, - [4488] = {.lex_state = 230}, - [4489] = {.lex_state = 204}, - [4490] = {.lex_state = 206}, - [4491] = {.lex_state = 242}, - [4492] = {.lex_state = 206}, - [4493] = {.lex_state = 204}, - [4494] = {.lex_state = 194}, - [4495] = {.lex_state = 206}, - [4496] = {.lex_state = 206}, - [4497] = {.lex_state = 206}, - [4498] = {.lex_state = 206}, + [4488] = {.lex_state = 206}, + [4489] = {.lex_state = 206}, + [4490] = {.lex_state = 229}, + [4491] = {.lex_state = 204}, + [4492] = {.lex_state = 204}, + [4493] = {.lex_state = 229}, + [4494] = {.lex_state = 204}, + [4495] = {.lex_state = 204}, + [4496] = {.lex_state = 204}, + [4497] = {.lex_state = 242}, + [4498] = {.lex_state = 204}, [4499] = {.lex_state = 204}, [4500] = {.lex_state = 204}, - [4501] = {.lex_state = 242}, - [4502] = {.lex_state = 229}, - [4503] = {.lex_state = 244}, - [4504] = {.lex_state = 205}, - [4505] = {.lex_state = 206}, - [4506] = {.lex_state = 204}, - [4507] = {.lex_state = 229}, - [4508] = {.lex_state = 206}, - [4509] = {.lex_state = 228}, - [4510] = {.lex_state = 206}, - [4511] = {.lex_state = 206}, - [4512] = {.lex_state = 206}, - [4513] = {.lex_state = 241}, - [4514] = {.lex_state = 242}, - [4515] = {.lex_state = 206}, - [4516] = {.lex_state = 206}, + [4501] = {.lex_state = 204}, + [4502] = {.lex_state = 204}, + [4503] = {.lex_state = 206}, + [4504] = {.lex_state = 242}, + [4505] = {.lex_state = 229}, + [4506] = {.lex_state = 229}, + [4507] = {.lex_state = 204}, + [4508] = {.lex_state = 204}, + [4509] = {.lex_state = 204}, + [4510] = {.lex_state = 229}, + [4511] = {.lex_state = 204}, + [4512] = {.lex_state = 229}, + [4513] = {.lex_state = 204}, + [4514] = {.lex_state = 206}, + [4515] = {.lex_state = 204}, + [4516] = {.lex_state = 242}, [4517] = {.lex_state = 204}, - [4518] = {.lex_state = 204}, - [4519] = {.lex_state = 204}, - [4520] = {.lex_state = 204}, + [4518] = {.lex_state = 206}, + [4519] = {.lex_state = 242}, + [4520] = {.lex_state = 228}, [4521] = {.lex_state = 204}, - [4522] = {.lex_state = 204}, + [4522] = {.lex_state = 229}, [4523] = {.lex_state = 204}, - [4524] = {.lex_state = 204}, - [4525] = {.lex_state = 204}, - [4526] = {.lex_state = 204}, - [4527] = {.lex_state = 204}, + [4524] = {.lex_state = 206}, + [4525] = {.lex_state = 206}, + [4526] = {.lex_state = 206}, + [4527] = {.lex_state = 229}, [4528] = {.lex_state = 204}, - [4529] = {.lex_state = 204}, + [4529] = {.lex_state = 194}, [4530] = {.lex_state = 204}, [4531] = {.lex_state = 204}, [4532] = {.lex_state = 204}, - [4533] = {.lex_state = 204}, - [4534] = {.lex_state = 206}, - [4535] = {.lex_state = 204}, + [4533] = {.lex_state = 229}, + [4534] = {.lex_state = 204}, + [4535] = {.lex_state = 205}, [4536] = {.lex_state = 206}, - [4537] = {.lex_state = 242}, - [4538] = {.lex_state = 206}, - [4539] = {.lex_state = 242}, + [4537] = {.lex_state = 204}, + [4538] = {.lex_state = 229}, + [4539] = {.lex_state = 206}, [4540] = {.lex_state = 204}, - [4541] = {.lex_state = 242}, - [4542] = {.lex_state = 206}, - [4543] = {.lex_state = 204}, - [4544] = {.lex_state = 206}, - [4545] = {.lex_state = 206}, - [4546] = {.lex_state = 242}, - [4547] = {.lex_state = 206}, + [4541] = {.lex_state = 206}, + [4542] = {.lex_state = 204}, + [4543] = {.lex_state = 242}, + [4544] = {.lex_state = 242}, + [4545] = {.lex_state = 204}, + [4546] = {.lex_state = 241}, + [4547] = {.lex_state = 241}, [4548] = {.lex_state = 206}, - [4549] = {.lex_state = 206}, + [4549] = {.lex_state = 204}, [4550] = {.lex_state = 206}, - [4551] = {.lex_state = 229}, - [4552] = {.lex_state = 204}, - [4553] = {.lex_state = 204}, + [4551] = {.lex_state = 206}, + [4552] = {.lex_state = 206}, + [4553] = {.lex_state = 229}, [4554] = {.lex_state = 204}, [4555] = {.lex_state = 206}, - [4556] = {.lex_state = 204}, - [4557] = {.lex_state = 204}, + [4556] = {.lex_state = 206}, + [4557] = {.lex_state = 241}, [4558] = {.lex_state = 204}, [4559] = {.lex_state = 204}, - [4560] = {.lex_state = 206}, + [4560] = {.lex_state = 230}, [4561] = {.lex_state = 204}, [4562] = {.lex_state = 204}, [4563] = {.lex_state = 204}, - [4564] = {.lex_state = 206}, - [4565] = {.lex_state = 206}, - [4566] = {.lex_state = 206}, - [4567] = {.lex_state = 206}, + [4564] = {.lex_state = 204}, + [4565] = {.lex_state = 204}, + [4566] = {.lex_state = 204}, + [4567] = {.lex_state = 204}, [4568] = {.lex_state = 204}, - [4569] = {.lex_state = 206}, - [4570] = {.lex_state = 204}, + [4569] = {.lex_state = 204}, + [4570] = {.lex_state = 241}, [4571] = {.lex_state = 204}, - [4572] = {.lex_state = 241}, - [4573] = {.lex_state = 206}, - [4574] = {.lex_state = 229}, + [4572] = {.lex_state = 204}, + [4573] = {.lex_state = 204}, + [4574] = {.lex_state = 204}, [4575] = {.lex_state = 206}, - [4576] = {.lex_state = 229}, - [4577] = {.lex_state = 242}, + [4576] = {.lex_state = 204}, + [4577] = {.lex_state = 204}, [4578] = {.lex_state = 204}, - [4579] = {.lex_state = 229}, - [4580] = {.lex_state = 229}, - [4581] = {.lex_state = 204}, - [4582] = {.lex_state = 204}, - [4583] = {.lex_state = 239}, - [4584] = {.lex_state = 242}, + [4579] = {.lex_state = 241}, + [4580] = {.lex_state = 242}, + [4581] = {.lex_state = 229}, + [4582] = {.lex_state = 206}, + [4583] = {.lex_state = 204}, + [4584] = {.lex_state = 204}, [4585] = {.lex_state = 204}, - [4586] = {.lex_state = 242}, - [4587] = {.lex_state = 204}, - [4588] = {.lex_state = 242}, - [4589] = {.lex_state = 204}, - [4590] = {.lex_state = 242}, - [4591] = {.lex_state = 204}, + [4586] = {.lex_state = 206}, + [4587] = {.lex_state = 206}, + [4588] = {.lex_state = 206}, + [4589] = {.lex_state = 206}, + [4590] = {.lex_state = 206}, + [4591] = {.lex_state = 241}, [4592] = {.lex_state = 204}, [4593] = {.lex_state = 206}, - [4594] = {.lex_state = 239}, - [4595] = {.lex_state = 206}, - [4596] = {.lex_state = 204}, - [4597] = {.lex_state = 242}, - [4598] = {.lex_state = 204}, - [4599] = {.lex_state = 204}, - [4600] = {.lex_state = 204}, - [4601] = {.lex_state = 239}, + [4594] = {.lex_state = 206}, + [4595] = {.lex_state = 244}, + [4596] = {.lex_state = 206}, + [4597] = {.lex_state = 206}, + [4598] = {.lex_state = 206}, + [4599] = {.lex_state = 206}, + [4600] = {.lex_state = 242}, + [4601] = {.lex_state = 229}, [4602] = {.lex_state = 204}, [4603] = {.lex_state = 204}, [4604] = {.lex_state = 204}, [4605] = {.lex_state = 242}, - [4606] = {.lex_state = 242}, - [4607] = {.lex_state = 204}, - [4608] = {.lex_state = 204}, - [4609] = {.lex_state = 204}, - [4610] = {.lex_state = 239}, - [4611] = {.lex_state = 204}, - [4612] = {.lex_state = 242}, - [4613] = {.lex_state = 204}, - [4614] = {.lex_state = 204}, - [4615] = {.lex_state = 204}, + [4606] = {.lex_state = 229}, + [4607] = {.lex_state = 242}, + [4608] = {.lex_state = 229}, + [4609] = {.lex_state = 241}, + [4610] = {.lex_state = 206}, + [4611] = {.lex_state = 206}, + [4612] = {.lex_state = 229}, + [4613] = {.lex_state = 206}, + [4614] = {.lex_state = 206}, + [4615] = {.lex_state = 229}, [4616] = {.lex_state = 204}, - [4617] = {.lex_state = 239}, - [4618] = {.lex_state = 204}, - [4619] = {.lex_state = 204}, - [4620] = {.lex_state = 204}, - [4621] = {.lex_state = 204}, + [4617] = {.lex_state = 206}, + [4618] = {.lex_state = 241}, + [4619] = {.lex_state = 241}, + [4620] = {.lex_state = 241}, + [4621] = {.lex_state = 229}, [4622] = {.lex_state = 204}, - [4623] = {.lex_state = 242}, - [4624] = {.lex_state = 239}, - [4625] = {.lex_state = 204}, - [4626] = {.lex_state = 239}, - [4627] = {.lex_state = 206}, - [4628] = {.lex_state = 242}, - [4629] = {.lex_state = 239}, - [4630] = {.lex_state = 239}, - [4631] = {.lex_state = 239}, - [4632] = {.lex_state = 204}, + [4623] = {.lex_state = 204}, + [4624] = {.lex_state = 206}, + [4625] = {.lex_state = 206}, + [4626] = {.lex_state = 229}, + [4627] = {.lex_state = 204}, + [4628] = {.lex_state = 229}, + [4629] = {.lex_state = 204}, + [4630] = {.lex_state = 204}, + [4631] = {.lex_state = 241}, + [4632] = {.lex_state = 206}, [4633] = {.lex_state = 242}, - [4634] = {.lex_state = 204}, - [4635] = {.lex_state = 204}, + [4634] = {.lex_state = 206}, + [4635] = {.lex_state = 242}, [4636] = {.lex_state = 204}, - [4637] = {.lex_state = 204}, - [4638] = {.lex_state = 241}, - [4639] = {.lex_state = 241}, - [4640] = {.lex_state = 241}, - [4641] = {.lex_state = 241}, - [4642] = {.lex_state = 242}, - [4643] = {.lex_state = 204}, + [4637] = {.lex_state = 229}, + [4638] = {.lex_state = 244}, + [4639] = {.lex_state = 229}, + [4640] = {.lex_state = 204}, + [4641] = {.lex_state = 204}, + [4642] = {.lex_state = 204}, + [4643] = {.lex_state = 239}, [4644] = {.lex_state = 204}, [4645] = {.lex_state = 204}, - [4646] = {.lex_state = 239}, - [4647] = {.lex_state = 239}, + [4646] = {.lex_state = 204}, + [4647] = {.lex_state = 204}, [4648] = {.lex_state = 204}, [4649] = {.lex_state = 204}, - [4650] = {.lex_state = 239}, + [4650] = {.lex_state = 242}, [4651] = {.lex_state = 204}, - [4652] = {.lex_state = 239}, - [4653] = {.lex_state = 242}, + [4652] = {.lex_state = 204}, + [4653] = {.lex_state = 204}, [4654] = {.lex_state = 204}, - [4655] = {.lex_state = 239}, + [4655] = {.lex_state = 204}, [4656] = {.lex_state = 204}, - [4657] = {.lex_state = 204}, + [4657] = {.lex_state = 239}, [4658] = {.lex_state = 204}, - [4659] = {.lex_state = 242}, - [4660] = {.lex_state = 242}, + [4659] = {.lex_state = 204}, + [4660] = {.lex_state = 204}, [4661] = {.lex_state = 204}, - [4662] = {.lex_state = 242}, - [4663] = {.lex_state = 242}, - [4664] = {.lex_state = 204}, - [4665] = {.lex_state = 204}, + [4662] = {.lex_state = 204}, + [4663] = {.lex_state = 204}, + [4664] = {.lex_state = 242}, + [4665] = {.lex_state = 242}, [4666] = {.lex_state = 204}, - [4667] = {.lex_state = 242}, - [4668] = {.lex_state = 204}, + [4667] = {.lex_state = 204}, + [4668] = {.lex_state = 241}, [4669] = {.lex_state = 204}, - [4670] = {.lex_state = 204}, + [4670] = {.lex_state = 242}, [4671] = {.lex_state = 204}, - [4672] = {.lex_state = 204}, + [4672] = {.lex_state = 242}, [4673] = {.lex_state = 204}, [4674] = {.lex_state = 204}, [4675] = {.lex_state = 239}, - [4676] = {.lex_state = 204}, + [4676] = {.lex_state = 206}, [4677] = {.lex_state = 204}, [4678] = {.lex_state = 242}, [4679] = {.lex_state = 239}, - [4680] = {.lex_state = 239}, + [4680] = {.lex_state = 204}, [4681] = {.lex_state = 204}, [4682] = {.lex_state = 204}, - [4683] = {.lex_state = 242}, + [4683] = {.lex_state = 204}, [4684] = {.lex_state = 204}, [4685] = {.lex_state = 204}, [4686] = {.lex_state = 204}, [4687] = {.lex_state = 204}, - [4688] = {.lex_state = 204}, + [4688] = {.lex_state = 242}, [4689] = {.lex_state = 204}, - [4690] = {.lex_state = 229}, + [4690] = {.lex_state = 242}, [4691] = {.lex_state = 204}, [4692] = {.lex_state = 204}, - [4693] = {.lex_state = 242}, - [4694] = {.lex_state = 204}, - [4695] = {.lex_state = 242}, - [4696] = {.lex_state = 204}, - [4697] = {.lex_state = 204}, + [4693] = {.lex_state = 241}, + [4694] = {.lex_state = 241}, + [4695] = {.lex_state = 239}, + [4696] = {.lex_state = 241}, + [4697] = {.lex_state = 241}, [4698] = {.lex_state = 204}, - [4699] = {.lex_state = 242}, - [4700] = {.lex_state = 206}, - [4701] = {.lex_state = 242}, + [4699] = {.lex_state = 204}, + [4700] = {.lex_state = 242}, + [4701] = {.lex_state = 204}, [4702] = {.lex_state = 204}, [4703] = {.lex_state = 204}, [4704] = {.lex_state = 204}, [4705] = {.lex_state = 204}, - [4706] = {.lex_state = 242}, - [4707] = {.lex_state = 239}, - [4708] = {.lex_state = 204}, - [4709] = {.lex_state = 242}, - [4710] = {.lex_state = 242}, - [4711] = {.lex_state = 238}, - [4712] = {.lex_state = 204}, + [4706] = {.lex_state = 239}, + [4707] = {.lex_state = 206}, + [4708] = {.lex_state = 231}, + [4709] = {.lex_state = 229}, + [4710] = {.lex_state = 204}, + [4711] = {.lex_state = 204}, + [4712] = {.lex_state = 242}, [4713] = {.lex_state = 204}, [4714] = {.lex_state = 204}, [4715] = {.lex_state = 204}, - [4716] = {.lex_state = 242}, - [4717] = {.lex_state = 204}, + [4716] = {.lex_state = 204}, + [4717] = {.lex_state = 242}, [4718] = {.lex_state = 238}, - [4719] = {.lex_state = 238}, + [4719] = {.lex_state = 242}, [4720] = {.lex_state = 242}, - [4721] = {.lex_state = 204}, - [4722] = {.lex_state = 238}, + [4721] = {.lex_state = 242}, + [4722] = {.lex_state = 242}, [4723] = {.lex_state = 204}, [4724] = {.lex_state = 204}, - [4725] = {.lex_state = 242}, - [4726] = {.lex_state = 242}, - [4727] = {.lex_state = 204}, + [4725] = {.lex_state = 239}, + [4726] = {.lex_state = 204}, + [4727] = {.lex_state = 242}, [4728] = {.lex_state = 204}, - [4729] = {.lex_state = 239}, + [4729] = {.lex_state = 204}, [4730] = {.lex_state = 242}, [4731] = {.lex_state = 242}, - [4732] = {.lex_state = 242}, + [4732] = {.lex_state = 238}, [4733] = {.lex_state = 242}, [4734] = {.lex_state = 204}, - [4735] = {.lex_state = 204}, - [4736] = {.lex_state = 242}, - [4737] = {.lex_state = 241}, - [4738] = {.lex_state = 231}, + [4735] = {.lex_state = 238}, + [4736] = {.lex_state = 204}, + [4737] = {.lex_state = 242}, + [4738] = {.lex_state = 238}, [4739] = {.lex_state = 242}, [4740] = {.lex_state = 204}, [4741] = {.lex_state = 204}, - [4742] = {.lex_state = 239}, + [4742] = {.lex_state = 242}, [4743] = {.lex_state = 242}, [4744] = {.lex_state = 204}, - [4745] = {.lex_state = 206}, - [4746] = {.lex_state = 242}, + [4745] = {.lex_state = 204}, + [4746] = {.lex_state = 204}, [4747] = {.lex_state = 242}, - [4748] = {.lex_state = 204}, - [4749] = {.lex_state = 231}, + [4748] = {.lex_state = 239}, + [4749] = {.lex_state = 239}, [4750] = {.lex_state = 204}, - [4751] = {.lex_state = 204}, + [4751] = {.lex_state = 206}, [4752] = {.lex_state = 204}, - [4753] = {.lex_state = 204}, + [4753] = {.lex_state = 239}, [4754] = {.lex_state = 204}, [4755] = {.lex_state = 204}, - [4756] = {.lex_state = 204}, - [4757] = {.lex_state = 239}, - [4758] = {.lex_state = 204}, + [4756] = {.lex_state = 239}, + [4757] = {.lex_state = 242}, + [4758] = {.lex_state = 242}, [4759] = {.lex_state = 204}, [4760] = {.lex_state = 204}, - [4761] = {.lex_state = 239}, + [4761] = {.lex_state = 204}, [4762] = {.lex_state = 204}, - [4763] = {.lex_state = 204}, + [4763] = {.lex_state = 242}, [4764] = {.lex_state = 204}, - [4765] = {.lex_state = 204}, + [4765] = {.lex_state = 242}, [4766] = {.lex_state = 204}, - [4767] = {.lex_state = 204}, - [4768] = {.lex_state = 241}, + [4767] = {.lex_state = 241}, + [4768] = {.lex_state = 239}, [4769] = {.lex_state = 204}, [4770] = {.lex_state = 204}, - [4771] = {.lex_state = 204}, + [4771] = {.lex_state = 242}, [4772] = {.lex_state = 204}, - [4773] = {.lex_state = 204}, + [4773] = {.lex_state = 242}, [4774] = {.lex_state = 204}, [4775] = {.lex_state = 204}, - [4776] = {.lex_state = 238}, - [4777] = {.lex_state = 229}, - [4778] = {.lex_state = 229}, - [4779] = {.lex_state = 242}, - [4780] = {.lex_state = 204}, - [4781] = {.lex_state = 229}, - [4782] = {.lex_state = 229}, - [4783] = {.lex_state = 229}, + [4776] = {.lex_state = 204}, + [4777] = {.lex_state = 204}, + [4778] = {.lex_state = 239}, + [4779] = {.lex_state = 204}, + [4780] = {.lex_state = 242}, + [4781] = {.lex_state = 242}, + [4782] = {.lex_state = 239}, + [4783] = {.lex_state = 239}, [4784] = {.lex_state = 204}, - [4785] = {.lex_state = 204}, + [4785] = {.lex_state = 242}, [4786] = {.lex_state = 204}, - [4787] = {.lex_state = 207}, - [4788] = {.lex_state = 229}, - [4789] = {.lex_state = 238}, - [4790] = {.lex_state = 229}, + [4787] = {.lex_state = 242}, + [4788] = {.lex_state = 206}, + [4789] = {.lex_state = 204}, + [4790] = {.lex_state = 242}, [4791] = {.lex_state = 204}, - [4792] = {.lex_state = 229}, - [4793] = {.lex_state = 229}, - [4794] = {.lex_state = 229}, - [4795] = {.lex_state = 229}, + [4792] = {.lex_state = 206}, + [4793] = {.lex_state = 242}, + [4794] = {.lex_state = 239}, + [4795] = {.lex_state = 204}, [4796] = {.lex_state = 204}, - [4797] = {.lex_state = 229}, + [4797] = {.lex_state = 242}, [4798] = {.lex_state = 204}, - [4799] = {.lex_state = 204}, - [4800] = {.lex_state = 204}, + [4799] = {.lex_state = 239}, + [4800] = {.lex_state = 239}, [4801] = {.lex_state = 204}, - [4802] = {.lex_state = 238}, - [4803] = {.lex_state = 229}, - [4804] = {.lex_state = 242}, - [4805] = {.lex_state = 229}, - [4806] = {.lex_state = 229}, - [4807] = {.lex_state = 229}, - [4808] = {.lex_state = 229}, - [4809] = {.lex_state = 229}, - [4810] = {.lex_state = 229}, - [4811] = {.lex_state = 229}, - [4812] = {.lex_state = 229}, + [4802] = {.lex_state = 204}, + [4803] = {.lex_state = 204}, + [4804] = {.lex_state = 204}, + [4805] = {.lex_state = 204}, + [4806] = {.lex_state = 204}, + [4807] = {.lex_state = 204}, + [4808] = {.lex_state = 204}, + [4809] = {.lex_state = 204}, + [4810] = {.lex_state = 204}, + [4811] = {.lex_state = 204}, + [4812] = {.lex_state = 204}, [4813] = {.lex_state = 204}, - [4814] = {.lex_state = 229}, - [4815] = {.lex_state = 229}, - [4816] = {.lex_state = 229}, - [4817] = {.lex_state = 229}, - [4818] = {.lex_state = 242}, - [4819] = {.lex_state = 242}, - [4820] = {.lex_state = 229}, + [4814] = {.lex_state = 239}, + [4815] = {.lex_state = 204}, + [4816] = {.lex_state = 239}, + [4817] = {.lex_state = 242}, + [4818] = {.lex_state = 204}, + [4819] = {.lex_state = 204}, + [4820] = {.lex_state = 204}, [4821] = {.lex_state = 242}, - [4822] = {.lex_state = 242}, - [4823] = {.lex_state = 242}, - [4824] = {.lex_state = 242}, - [4825] = {.lex_state = 229}, - [4826] = {.lex_state = 241}, - [4827] = {.lex_state = 229}, - [4828] = {.lex_state = 229}, - [4829] = {.lex_state = 229}, - [4830] = {.lex_state = 194}, - [4831] = {.lex_state = 229}, - [4832] = {.lex_state = 229}, - [4833] = {.lex_state = 229}, - [4834] = {.lex_state = 229}, - [4835] = {.lex_state = 229}, - [4836] = {.lex_state = 241}, + [4822] = {.lex_state = 204}, + [4823] = {.lex_state = 204}, + [4824] = {.lex_state = 204}, + [4825] = {.lex_state = 231}, + [4826] = {.lex_state = 204}, + [4827] = {.lex_state = 204}, + [4828] = {.lex_state = 204}, + [4829] = {.lex_state = 204}, + [4830] = {.lex_state = 242}, + [4831] = {.lex_state = 238}, + [4832] = {.lex_state = 239}, + [4833] = {.lex_state = 204}, + [4834] = {.lex_state = 239}, + [4835] = {.lex_state = 204}, + [4836] = {.lex_state = 204}, [4837] = {.lex_state = 204}, - [4838] = {.lex_state = 229}, - [4839] = {.lex_state = 229}, - [4840] = {.lex_state = 229}, - [4841] = {.lex_state = 229}, - [4842] = {.lex_state = 194}, - [4843] = {.lex_state = 238}, - [4844] = {.lex_state = 241}, - [4845] = {.lex_state = 206}, - [4846] = {.lex_state = 205}, - [4847] = {.lex_state = 241}, - [4848] = {.lex_state = 241}, - [4849] = {.lex_state = 194}, - [4850] = {.lex_state = 204}, - [4851] = {.lex_state = 194}, - [4852] = {.lex_state = 241}, - [4853] = {.lex_state = 239}, - [4854] = {.lex_state = 204}, + [4838] = {.lex_state = 204}, + [4839] = {.lex_state = 204}, + [4840] = {.lex_state = 204}, + [4841] = {.lex_state = 239}, + [4842] = {.lex_state = 204}, + [4843] = {.lex_state = 229}, + [4844] = {.lex_state = 229}, + [4845] = {.lex_state = 204}, + [4846] = {.lex_state = 229}, + [4847] = {.lex_state = 207}, + [4848] = {.lex_state = 229}, + [4849] = {.lex_state = 229}, + [4850] = {.lex_state = 229}, + [4851] = {.lex_state = 242}, + [4852] = {.lex_state = 229}, + [4853] = {.lex_state = 229}, + [4854] = {.lex_state = 229}, [4855] = {.lex_state = 204}, - [4856] = {.lex_state = 241}, - [4857] = {.lex_state = 238}, - [4858] = {.lex_state = 241}, - [4859] = {.lex_state = 241}, - [4860] = {.lex_state = 206}, - [4861] = {.lex_state = 194}, - [4862] = {.lex_state = 241}, + [4856] = {.lex_state = 229}, + [4857] = {.lex_state = 229}, + [4858] = {.lex_state = 229}, + [4859] = {.lex_state = 204}, + [4860] = {.lex_state = 229}, + [4861] = {.lex_state = 229}, + [4862] = {.lex_state = 229}, [4863] = {.lex_state = 229}, - [4864] = {.lex_state = 238}, - [4865] = {.lex_state = 239}, - [4866] = {.lex_state = 238}, - [4867] = {.lex_state = 205}, - [4868] = {.lex_state = 241}, - [4869] = {.lex_state = 206}, - [4870] = {.lex_state = 241}, - [4871] = {.lex_state = 206}, - [4872] = {.lex_state = 238}, - [4873] = {.lex_state = 194}, + [4864] = {.lex_state = 229}, + [4865] = {.lex_state = 229}, + [4866] = {.lex_state = 229}, + [4867] = {.lex_state = 242}, + [4868] = {.lex_state = 229}, + [4869] = {.lex_state = 242}, + [4870] = {.lex_state = 229}, + [4871] = {.lex_state = 229}, + [4872] = {.lex_state = 242}, + [4873] = {.lex_state = 242}, [4874] = {.lex_state = 204}, - [4875] = {.lex_state = 241}, - [4876] = {.lex_state = 229}, + [4875] = {.lex_state = 229}, + [4876] = {.lex_state = 242}, [4877] = {.lex_state = 241}, - [4878] = {.lex_state = 241}, - [4879] = {.lex_state = 194}, - [4880] = {.lex_state = 238}, - [4881] = {.lex_state = 206}, - [4882] = {.lex_state = 239}, - [4883] = {.lex_state = 194}, - [4884] = {.lex_state = 241}, - [4885] = {.lex_state = 241}, - [4886] = {.lex_state = 241}, - [4887] = {.lex_state = 238}, - [4888] = {.lex_state = 241}, - [4889] = {.lex_state = 206}, - [4890] = {.lex_state = 206}, + [4878] = {.lex_state = 229}, + [4879] = {.lex_state = 229}, + [4880] = {.lex_state = 229}, + [4881] = {.lex_state = 204}, + [4882] = {.lex_state = 229}, + [4883] = {.lex_state = 229}, + [4884] = {.lex_state = 229}, + [4885] = {.lex_state = 229}, + [4886] = {.lex_state = 242}, + [4887] = {.lex_state = 229}, + [4888] = {.lex_state = 229}, + [4889] = {.lex_state = 229}, + [4890] = {.lex_state = 229}, [4891] = {.lex_state = 204}, - [4892] = {.lex_state = 194}, - [4893] = {.lex_state = 194}, - [4894] = {.lex_state = 241}, + [4892] = {.lex_state = 242}, + [4893] = {.lex_state = 229}, + [4894] = {.lex_state = 194}, [4895] = {.lex_state = 241}, - [4896] = {.lex_state = 238}, - [4897] = {.lex_state = 206}, - [4898] = {.lex_state = 194}, - [4899] = {.lex_state = 241}, - [4900] = {.lex_state = 241}, - [4901] = {.lex_state = 241}, - [4902] = {.lex_state = 238}, - [4903] = {.lex_state = 241}, - [4904] = {.lex_state = 241}, - [4905] = {.lex_state = 241}, - [4906] = {.lex_state = 241}, - [4907] = {.lex_state = 241}, - [4908] = {.lex_state = 241}, - [4909] = {.lex_state = 241}, - [4910] = {.lex_state = 241}, - [4911] = {.lex_state = 242}, + [4896] = {.lex_state = 204}, + [4897] = {.lex_state = 204}, + [4898] = {.lex_state = 229}, + [4899] = {.lex_state = 204}, + [4900] = {.lex_state = 238}, + [4901] = {.lex_state = 229}, + [4902] = {.lex_state = 204}, + [4903] = {.lex_state = 229}, + [4904] = {.lex_state = 229}, + [4905] = {.lex_state = 238}, + [4906] = {.lex_state = 204}, + [4907] = {.lex_state = 204}, + [4908] = {.lex_state = 238}, + [4909] = {.lex_state = 238}, + [4910] = {.lex_state = 238}, + [4911] = {.lex_state = 204}, [4912] = {.lex_state = 241}, - [4913] = {.lex_state = 241}, - [4914] = {.lex_state = 242}, - [4915] = {.lex_state = 241}, - [4916] = {.lex_state = 241}, - [4917] = {.lex_state = 241}, - [4918] = {.lex_state = 241}, + [4913] = {.lex_state = 194}, + [4914] = {.lex_state = 241}, + [4915] = {.lex_state = 194}, + [4916] = {.lex_state = 239}, + [4917] = {.lex_state = 194}, + [4918] = {.lex_state = 194}, [4919] = {.lex_state = 241}, - [4920] = {.lex_state = 241}, - [4921] = {.lex_state = 241}, - [4922] = {.lex_state = 241}, - [4923] = {.lex_state = 241}, - [4924] = {.lex_state = 241}, - [4925] = {.lex_state = 241}, - [4926] = {.lex_state = 241}, - [4927] = {.lex_state = 241}, - [4928] = {.lex_state = 241}, - [4929] = {.lex_state = 241}, - [4930] = {.lex_state = 241}, - [4931] = {.lex_state = 241}, - [4932] = {.lex_state = 241}, - [4933] = {.lex_state = 241}, - [4934] = {.lex_state = 241}, - [4935] = {.lex_state = 241}, - [4936] = {.lex_state = 241}, - [4937] = {.lex_state = 241}, - [4938] = {.lex_state = 238}, - [4939] = {.lex_state = 242}, - [4940] = {.lex_state = 241}, - [4941] = {.lex_state = 241}, - [4942] = {.lex_state = 239}, - [4943] = {.lex_state = 242}, - [4944] = {.lex_state = 241}, - [4945] = {.lex_state = 241}, - [4946] = {.lex_state = 241}, + [4920] = {.lex_state = 205}, + [4921] = {.lex_state = 206}, + [4922] = {.lex_state = 206}, + [4923] = {.lex_state = 206}, + [4924] = {.lex_state = 206}, + [4925] = {.lex_state = 239}, + [4926] = {.lex_state = 205}, + [4927] = {.lex_state = 194}, + [4928] = {.lex_state = 194}, + [4929] = {.lex_state = 239}, + [4930] = {.lex_state = 204}, + [4931] = {.lex_state = 238}, + [4932] = {.lex_state = 206}, + [4933] = {.lex_state = 194}, + [4934] = {.lex_state = 204}, + [4935] = {.lex_state = 204}, + [4936] = {.lex_state = 194}, + [4937] = {.lex_state = 206}, + [4938] = {.lex_state = 204}, + [4939] = {.lex_state = 206}, + [4940] = {.lex_state = 238}, + [4941] = {.lex_state = 194}, + [4942] = {.lex_state = 238}, + [4943] = {.lex_state = 241}, + [4944] = {.lex_state = 194}, + [4945] = {.lex_state = 238}, + [4946] = {.lex_state = 206}, [4947] = {.lex_state = 241}, [4948] = {.lex_state = 241}, - [4949] = {.lex_state = 242}, - [4950] = {.lex_state = 242}, - [4951] = {.lex_state = 238}, - [4952] = {.lex_state = 242}, - [4953] = {.lex_state = 238}, - [4954] = {.lex_state = 242}, - [4955] = {.lex_state = 238}, - [4956] = {.lex_state = 242}, - [4957] = {.lex_state = 194}, - [4958] = {.lex_state = 204}, - [4959] = {.lex_state = 242}, - [4960] = {.lex_state = 238}, - [4961] = {.lex_state = 239}, - [4962] = {.lex_state = 239}, - [4963] = {.lex_state = 204}, - [4964] = {.lex_state = 204}, - [4965] = {.lex_state = 242}, - [4966] = {.lex_state = 242}, - [4967] = {.lex_state = 238}, - [4968] = {.lex_state = 238}, - [4969] = {.lex_state = 242}, - [4970] = {.lex_state = 242}, - [4971] = {.lex_state = 204}, - [4972] = {.lex_state = 238}, - [4973] = {.lex_state = 194}, + [4949] = {.lex_state = 229}, + [4950] = {.lex_state = 241}, + [4951] = {.lex_state = 241}, + [4952] = {.lex_state = 241}, + [4953] = {.lex_state = 241}, + [4954] = {.lex_state = 229}, + [4955] = {.lex_state = 241}, + [4956] = {.lex_state = 241}, + [4957] = {.lex_state = 241}, + [4958] = {.lex_state = 238}, + [4959] = {.lex_state = 241}, + [4960] = {.lex_state = 241}, + [4961] = {.lex_state = 241}, + [4962] = {.lex_state = 241}, + [4963] = {.lex_state = 194}, + [4964] = {.lex_state = 241}, + [4965] = {.lex_state = 241}, + [4966] = {.lex_state = 194}, + [4967] = {.lex_state = 242}, + [4968] = {.lex_state = 241}, + [4969] = {.lex_state = 241}, + [4970] = {.lex_state = 239}, + [4971] = {.lex_state = 242}, + [4972] = {.lex_state = 242}, + [4973] = {.lex_state = 238}, [4974] = {.lex_state = 238}, [4975] = {.lex_state = 241}, - [4976] = {.lex_state = 206}, - [4977] = {.lex_state = 242}, - [4978] = {.lex_state = 239}, - [4979] = {.lex_state = 239}, - [4980] = {.lex_state = 239}, - [4981] = {.lex_state = 239}, - [4982] = {.lex_state = 239}, - [4983] = {.lex_state = 239}, - [4984] = {.lex_state = 239}, - [4985] = {.lex_state = 239}, - [4986] = {.lex_state = 239}, - [4987] = {.lex_state = 238}, - [4988] = {.lex_state = 239}, - [4989] = {.lex_state = 238}, - [4990] = {.lex_state = 239}, - [4991] = {.lex_state = 242}, - [4992] = {.lex_state = 196}, - [4993] = {.lex_state = 238}, - [4994] = {.lex_state = 239}, - [4995] = {.lex_state = 239}, - [4996] = {.lex_state = 206}, - [4997] = {.lex_state = 206}, - [4998] = {.lex_state = 242}, - [4999] = {.lex_state = 239}, - [5000] = {.lex_state = 238}, - [5001] = {.lex_state = 239}, - [5002] = {.lex_state = 239}, - [5003] = {.lex_state = 196}, - [5004] = {.lex_state = 196}, - [5005] = {.lex_state = 238}, - [5006] = {.lex_state = 239}, - [5007] = {.lex_state = 239}, - [5008] = {.lex_state = 239}, - [5009] = {.lex_state = 206}, - [5010] = {.lex_state = 239}, - [5011] = {.lex_state = 242}, - [5012] = {.lex_state = 239}, - [5013] = {.lex_state = 238}, - [5014] = {.lex_state = 239}, - [5015] = {.lex_state = 239}, - [5016] = {.lex_state = 239}, - [5017] = {.lex_state = 196}, - [5018] = {.lex_state = 239}, - [5019] = {.lex_state = 206}, - [5020] = {.lex_state = 196}, - [5021] = {.lex_state = 239}, - [5022] = {.lex_state = 239}, - [5023] = {.lex_state = 239}, - [5024] = {.lex_state = 239}, - [5025] = {.lex_state = 239}, - [5026] = {.lex_state = 196}, + [4976] = {.lex_state = 241}, + [4977] = {.lex_state = 241}, + [4978] = {.lex_state = 242}, + [4979] = {.lex_state = 241}, + [4980] = {.lex_state = 241}, + [4981] = {.lex_state = 241}, + [4982] = {.lex_state = 241}, + [4983] = {.lex_state = 241}, + [4984] = {.lex_state = 241}, + [4985] = {.lex_state = 241}, + [4986] = {.lex_state = 241}, + [4987] = {.lex_state = 241}, + [4988] = {.lex_state = 241}, + [4989] = {.lex_state = 241}, + [4990] = {.lex_state = 241}, + [4991] = {.lex_state = 241}, + [4992] = {.lex_state = 241}, + [4993] = {.lex_state = 241}, + [4994] = {.lex_state = 241}, + [4995] = {.lex_state = 241}, + [4996] = {.lex_state = 241}, + [4997] = {.lex_state = 241}, + [4998] = {.lex_state = 241}, + [4999] = {.lex_state = 241}, + [5000] = {.lex_state = 241}, + [5001] = {.lex_state = 241}, + [5002] = {.lex_state = 241}, + [5003] = {.lex_state = 241}, + [5004] = {.lex_state = 241}, + [5005] = {.lex_state = 241}, + [5006] = {.lex_state = 241}, + [5007] = {.lex_state = 241}, + [5008] = {.lex_state = 241}, + [5009] = {.lex_state = 241}, + [5010] = {.lex_state = 241}, + [5011] = {.lex_state = 241}, + [5012] = {.lex_state = 241}, + [5013] = {.lex_state = 241}, + [5014] = {.lex_state = 241}, + [5015] = {.lex_state = 241}, + [5016] = {.lex_state = 241}, + [5017] = {.lex_state = 242}, + [5018] = {.lex_state = 204}, + [5019] = {.lex_state = 242}, + [5020] = {.lex_state = 242}, + [5021] = {.lex_state = 238}, + [5022] = {.lex_state = 194}, + [5023] = {.lex_state = 242}, + [5024] = {.lex_state = 242}, + [5025] = {.lex_state = 242}, + [5026] = {.lex_state = 242}, [5027] = {.lex_state = 238}, [5028] = {.lex_state = 238}, - [5029] = {.lex_state = 239}, - [5030] = {.lex_state = 239}, + [5029] = {.lex_state = 194}, + [5030] = {.lex_state = 204}, [5031] = {.lex_state = 238}, - [5032] = {.lex_state = 239}, - [5033] = {.lex_state = 239}, - [5034] = {.lex_state = 238}, + [5032] = {.lex_state = 241}, + [5033] = {.lex_state = 242}, + [5034] = {.lex_state = 239}, [5035] = {.lex_state = 239}, - [5036] = {.lex_state = 194}, + [5036] = {.lex_state = 204}, [5037] = {.lex_state = 238}, - [5038] = {.lex_state = 239}, - [5039] = {.lex_state = 196}, - [5040] = {.lex_state = 238}, - [5041] = {.lex_state = 196}, - [5042] = {.lex_state = 196}, - [5043] = {.lex_state = 196}, + [5038] = {.lex_state = 238}, + [5039] = {.lex_state = 238}, + [5040] = {.lex_state = 204}, + [5041] = {.lex_state = 238}, + [5042] = {.lex_state = 242}, + [5043] = {.lex_state = 242}, [5044] = {.lex_state = 239}, - [5045] = {.lex_state = 239}, + [5045] = {.lex_state = 242}, [5046] = {.lex_state = 196}, - [5047] = {.lex_state = 196}, - [5048] = {.lex_state = 239}, - [5049] = {.lex_state = 196}, + [5047] = {.lex_state = 239}, + [5048] = {.lex_state = 196}, + [5049] = {.lex_state = 239}, [5050] = {.lex_state = 239}, [5051] = {.lex_state = 239}, - [5052] = {.lex_state = 239}, + [5052] = {.lex_state = 238}, [5053] = {.lex_state = 239}, - [5054] = {.lex_state = 239}, - [5055] = {.lex_state = 196}, + [5054] = {.lex_state = 206}, + [5055] = {.lex_state = 238}, [5056] = {.lex_state = 196}, - [5057] = {.lex_state = 196}, - [5058] = {.lex_state = 196}, - [5059] = {.lex_state = 196}, - [5060] = {.lex_state = 196}, - [5061] = {.lex_state = 196}, + [5057] = {.lex_state = 242}, + [5058] = {.lex_state = 239}, + [5059] = {.lex_state = 239}, + [5060] = {.lex_state = 238}, + [5061] = {.lex_state = 239}, [5062] = {.lex_state = 196}, - [5063] = {.lex_state = 196}, - [5064] = {.lex_state = 196}, - [5065] = {.lex_state = 196}, - [5066] = {.lex_state = 196}, - [5067] = {.lex_state = 204}, - [5068] = {.lex_state = 238}, + [5063] = {.lex_state = 239}, + [5064] = {.lex_state = 239}, + [5065] = {.lex_state = 239}, + [5066] = {.lex_state = 238}, + [5067] = {.lex_state = 239}, + [5068] = {.lex_state = 239}, [5069] = {.lex_state = 196}, - [5070] = {.lex_state = 196}, - [5071] = {.lex_state = 196}, - [5072] = {.lex_state = 196}, - [5073] = {.lex_state = 196}, - [5074] = {.lex_state = 196}, - [5075] = {.lex_state = 196}, - [5076] = {.lex_state = 196}, - [5077] = {.lex_state = 196}, - [5078] = {.lex_state = 196}, - [5079] = {.lex_state = 196}, - [5080] = {.lex_state = 196}, - [5081] = {.lex_state = 196}, - [5082] = {.lex_state = 196}, - [5083] = {.lex_state = 196}, - [5084] = {.lex_state = 196}, + [5070] = {.lex_state = 238}, + [5071] = {.lex_state = 239}, + [5072] = {.lex_state = 242}, + [5073] = {.lex_state = 238}, + [5074] = {.lex_state = 239}, + [5075] = {.lex_state = 239}, + [5076] = {.lex_state = 239}, + [5077] = {.lex_state = 239}, + [5078] = {.lex_state = 206}, + [5079] = {.lex_state = 238}, + [5080] = {.lex_state = 238}, + [5081] = {.lex_state = 206}, + [5082] = {.lex_state = 239}, + [5083] = {.lex_state = 239}, + [5084] = {.lex_state = 239}, [5085] = {.lex_state = 196}, - [5086] = {.lex_state = 196}, - [5087] = {.lex_state = 196}, - [5088] = {.lex_state = 196}, - [5089] = {.lex_state = 196}, - [5090] = {.lex_state = 196}, + [5086] = {.lex_state = 239}, + [5087] = {.lex_state = 206}, + [5088] = {.lex_state = 239}, + [5089] = {.lex_state = 239}, + [5090] = {.lex_state = 206}, [5091] = {.lex_state = 196}, [5092] = {.lex_state = 196}, - [5093] = {.lex_state = 196}, - [5094] = {.lex_state = 196}, - [5095] = {.lex_state = 196}, - [5096] = {.lex_state = 196}, - [5097] = {.lex_state = 196}, - [5098] = {.lex_state = 196}, - [5099] = {.lex_state = 196}, - [5100] = {.lex_state = 238}, - [5101] = {.lex_state = 196}, - [5102] = {.lex_state = 196}, + [5093] = {.lex_state = 238}, + [5094] = {.lex_state = 239}, + [5095] = {.lex_state = 238}, + [5096] = {.lex_state = 239}, + [5097] = {.lex_state = 239}, + [5098] = {.lex_state = 239}, + [5099] = {.lex_state = 239}, + [5100] = {.lex_state = 196}, + [5101] = {.lex_state = 242}, + [5102] = {.lex_state = 238}, [5103] = {.lex_state = 196}, - [5104] = {.lex_state = 196}, - [5105] = {.lex_state = 196}, - [5106] = {.lex_state = 196}, - [5107] = {.lex_state = 196}, - [5108] = {.lex_state = 196}, - [5109] = {.lex_state = 196}, - [5110] = {.lex_state = 196}, + [5104] = {.lex_state = 238}, + [5105] = {.lex_state = 239}, + [5106] = {.lex_state = 239}, + [5107] = {.lex_state = 239}, + [5108] = {.lex_state = 194}, + [5109] = {.lex_state = 239}, + [5110] = {.lex_state = 239}, [5111] = {.lex_state = 196}, - [5112] = {.lex_state = 196}, + [5112] = {.lex_state = 239}, [5113] = {.lex_state = 196}, - [5114] = {.lex_state = 204}, + [5114] = {.lex_state = 196}, [5115] = {.lex_state = 196}, [5116] = {.lex_state = 196}, [5117] = {.lex_state = 196}, @@ -27191,2487 +27341,2487 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5120] = {.lex_state = 196}, [5121] = {.lex_state = 196}, [5122] = {.lex_state = 196}, - [5123] = {.lex_state = 196}, + [5123] = {.lex_state = 238}, [5124] = {.lex_state = 196}, - [5125] = {.lex_state = 196}, + [5125] = {.lex_state = 238}, [5126] = {.lex_state = 196}, [5127] = {.lex_state = 196}, [5128] = {.lex_state = 196}, [5129] = {.lex_state = 196}, [5130] = {.lex_state = 196}, - [5131] = {.lex_state = 196}, - [5132] = {.lex_state = 196}, - [5133] = {.lex_state = 238}, + [5131] = {.lex_state = 238}, + [5132] = {.lex_state = 238}, + [5133] = {.lex_state = 196}, [5134] = {.lex_state = 196}, [5135] = {.lex_state = 196}, [5136] = {.lex_state = 196}, [5137] = {.lex_state = 196}, - [5138] = {.lex_state = 238}, + [5138] = {.lex_state = 196}, [5139] = {.lex_state = 196}, [5140] = {.lex_state = 196}, - [5141] = {.lex_state = 196}, + [5141] = {.lex_state = 204}, [5142] = {.lex_state = 196}, [5143] = {.lex_state = 196}, [5144] = {.lex_state = 196}, [5145] = {.lex_state = 196}, - [5146] = {.lex_state = 239}, - [5147] = {.lex_state = 239}, + [5146] = {.lex_state = 196}, + [5147] = {.lex_state = 196}, [5148] = {.lex_state = 196}, [5149] = {.lex_state = 196}, [5150] = {.lex_state = 196}, [5151] = {.lex_state = 196}, [5152] = {.lex_state = 196}, - [5153] = {.lex_state = 239}, - [5154] = {.lex_state = 239}, + [5153] = {.lex_state = 196}, + [5154] = {.lex_state = 196}, [5155] = {.lex_state = 196}, [5156] = {.lex_state = 196}, [5157] = {.lex_state = 196}, [5158] = {.lex_state = 196}, - [5159] = {.lex_state = 239}, - [5160] = {.lex_state = 239}, + [5159] = {.lex_state = 196}, + [5160] = {.lex_state = 196}, [5161] = {.lex_state = 196}, - [5162] = {.lex_state = 239}, + [5162] = {.lex_state = 196}, [5163] = {.lex_state = 196}, [5164] = {.lex_state = 196}, - [5165] = {.lex_state = 238}, - [5166] = {.lex_state = 239}, - [5167] = {.lex_state = 239}, - [5168] = {.lex_state = 204}, - [5169] = {.lex_state = 239}, - [5170] = {.lex_state = 239}, - [5171] = {.lex_state = 239}, - [5172] = {.lex_state = 239}, + [5165] = {.lex_state = 196}, + [5166] = {.lex_state = 196}, + [5167] = {.lex_state = 196}, + [5168] = {.lex_state = 196}, + [5169] = {.lex_state = 196}, + [5170] = {.lex_state = 196}, + [5171] = {.lex_state = 196}, + [5172] = {.lex_state = 196}, [5173] = {.lex_state = 196}, - [5174] = {.lex_state = 239}, - [5175] = {.lex_state = 239}, + [5174] = {.lex_state = 196}, + [5175] = {.lex_state = 196}, [5176] = {.lex_state = 196}, - [5177] = {.lex_state = 239}, - [5178] = {.lex_state = 239}, - [5179] = {.lex_state = 238}, - [5180] = {.lex_state = 204}, - [5181] = {.lex_state = 238}, - [5182] = {.lex_state = 239}, - [5183] = {.lex_state = 239}, - [5184] = {.lex_state = 204}, - [5185] = {.lex_state = 239}, - [5186] = {.lex_state = 239}, - [5187] = {.lex_state = 239}, - [5188] = {.lex_state = 239}, - [5189] = {.lex_state = 196}, - [5190] = {.lex_state = 196}, - [5191] = {.lex_state = 239}, - [5192] = {.lex_state = 238}, - [5193] = {.lex_state = 239}, + [5177] = {.lex_state = 196}, + [5178] = {.lex_state = 196}, + [5179] = {.lex_state = 196}, + [5180] = {.lex_state = 196}, + [5181] = {.lex_state = 196}, + [5182] = {.lex_state = 196}, + [5183] = {.lex_state = 196}, + [5184] = {.lex_state = 196}, + [5185] = {.lex_state = 196}, + [5186] = {.lex_state = 196}, + [5187] = {.lex_state = 204}, + [5188] = {.lex_state = 196}, + [5189] = {.lex_state = 239}, + [5190] = {.lex_state = 239}, + [5191] = {.lex_state = 196}, + [5192] = {.lex_state = 196}, + [5193] = {.lex_state = 196}, [5194] = {.lex_state = 196}, [5195] = {.lex_state = 239}, - [5196] = {.lex_state = 204}, - [5197] = {.lex_state = 239}, - [5198] = {.lex_state = 196}, + [5196] = {.lex_state = 239}, + [5197] = {.lex_state = 196}, + [5198] = {.lex_state = 239}, [5199] = {.lex_state = 239}, [5200] = {.lex_state = 196}, [5201] = {.lex_state = 196}, - [5202] = {.lex_state = 196}, + [5202] = {.lex_state = 239}, [5203] = {.lex_state = 196}, - [5204] = {.lex_state = 238}, - [5205] = {.lex_state = 196}, + [5204] = {.lex_state = 239}, + [5205] = {.lex_state = 239}, [5206] = {.lex_state = 239}, [5207] = {.lex_state = 239}, [5208] = {.lex_state = 239}, - [5209] = {.lex_state = 204}, - [5210] = {.lex_state = 238}, - [5211] = {.lex_state = 239}, - [5212] = {.lex_state = 239}, - [5213] = {.lex_state = 239}, - [5214] = {.lex_state = 239}, - [5215] = {.lex_state = 204}, - [5216] = {.lex_state = 239}, - [5217] = {.lex_state = 204}, - [5218] = {.lex_state = 239}, + [5209] = {.lex_state = 196}, + [5210] = {.lex_state = 196}, + [5211] = {.lex_state = 196}, + [5212] = {.lex_state = 196}, + [5213] = {.lex_state = 196}, + [5214] = {.lex_state = 196}, + [5215] = {.lex_state = 196}, + [5216] = {.lex_state = 196}, + [5217] = {.lex_state = 196}, + [5218] = {.lex_state = 196}, [5219] = {.lex_state = 196}, [5220] = {.lex_state = 196}, - [5221] = {.lex_state = 239}, + [5221] = {.lex_state = 196}, [5222] = {.lex_state = 196}, - [5223] = {.lex_state = 238}, - [5224] = {.lex_state = 239}, + [5223] = {.lex_state = 196}, + [5224] = {.lex_state = 196}, [5225] = {.lex_state = 196}, - [5226] = {.lex_state = 239}, - [5227] = {.lex_state = 239}, - [5228] = {.lex_state = 204}, - [5229] = {.lex_state = 238}, + [5226] = {.lex_state = 196}, + [5227] = {.lex_state = 196}, + [5228] = {.lex_state = 196}, + [5229] = {.lex_state = 196}, [5230] = {.lex_state = 239}, [5231] = {.lex_state = 239}, - [5232] = {.lex_state = 196}, - [5233] = {.lex_state = 239}, - [5234] = {.lex_state = 204}, - [5235] = {.lex_state = 198}, - [5236] = {.lex_state = 198}, - [5237] = {.lex_state = 198}, - [5238] = {.lex_state = 198}, - [5239] = {.lex_state = 239}, - [5240] = {.lex_state = 204}, + [5232] = {.lex_state = 239}, + [5233] = {.lex_state = 238}, + [5234] = {.lex_state = 196}, + [5235] = {.lex_state = 239}, + [5236] = {.lex_state = 196}, + [5237] = {.lex_state = 239}, + [5238] = {.lex_state = 239}, + [5239] = {.lex_state = 196}, + [5240] = {.lex_state = 239}, [5241] = {.lex_state = 239}, - [5242] = {.lex_state = 204}, - [5243] = {.lex_state = 239}, - [5244] = {.lex_state = 204}, - [5245] = {.lex_state = 242}, - [5246] = {.lex_state = 204}, - [5247] = {.lex_state = 242}, - [5248] = {.lex_state = 242}, - [5249] = {.lex_state = 204}, - [5250] = {.lex_state = 204}, - [5251] = {.lex_state = 204}, - [5252] = {.lex_state = 204}, - [5253] = {.lex_state = 198}, - [5254] = {.lex_state = 198}, - [5255] = {.lex_state = 196}, + [5242] = {.lex_state = 239}, + [5243] = {.lex_state = 196}, + [5244] = {.lex_state = 238}, + [5245] = {.lex_state = 238}, + [5246] = {.lex_state = 239}, + [5247] = {.lex_state = 239}, + [5248] = {.lex_state = 239}, + [5249] = {.lex_state = 239}, + [5250] = {.lex_state = 196}, + [5251] = {.lex_state = 238}, + [5252] = {.lex_state = 239}, + [5253] = {.lex_state = 239}, + [5254] = {.lex_state = 239}, + [5255] = {.lex_state = 239}, [5256] = {.lex_state = 196}, - [5257] = {.lex_state = 204}, + [5257] = {.lex_state = 239}, [5258] = {.lex_state = 239}, - [5259] = {.lex_state = 204}, - [5260] = {.lex_state = 204}, - [5261] = {.lex_state = 198}, - [5262] = {.lex_state = 204}, - [5263] = {.lex_state = 204}, - [5264] = {.lex_state = 204}, - [5265] = {.lex_state = 204}, - [5266] = {.lex_state = 204}, - [5267] = {.lex_state = 206}, - [5268] = {.lex_state = 206}, - [5269] = {.lex_state = 204}, - [5270] = {.lex_state = 204}, - [5271] = {.lex_state = 204}, - [5272] = {.lex_state = 204}, - [5273] = {.lex_state = 204}, - [5274] = {.lex_state = 204}, - [5275] = {.lex_state = 204}, - [5276] = {.lex_state = 204}, - [5277] = {.lex_state = 242}, - [5278] = {.lex_state = 242}, - [5279] = {.lex_state = 204}, - [5280] = {.lex_state = 242}, - [5281] = {.lex_state = 204}, - [5282] = {.lex_state = 198}, - [5283] = {.lex_state = 204}, - [5284] = {.lex_state = 238}, - [5285] = {.lex_state = 241}, - [5286] = {.lex_state = 238}, - [5287] = {.lex_state = 242}, - [5288] = {.lex_state = 238}, - [5289] = {.lex_state = 242}, - [5290] = {.lex_state = 242}, - [5291] = {.lex_state = 242}, - [5292] = {.lex_state = 242}, - [5293] = {.lex_state = 242}, - [5294] = {.lex_state = 242}, - [5295] = {.lex_state = 242}, - [5296] = {.lex_state = 242}, - [5297] = {.lex_state = 242}, + [5259] = {.lex_state = 239}, + [5260] = {.lex_state = 239}, + [5261] = {.lex_state = 239}, + [5262] = {.lex_state = 196}, + [5263] = {.lex_state = 239}, + [5264] = {.lex_state = 238}, + [5265] = {.lex_state = 238}, + [5266] = {.lex_state = 239}, + [5267] = {.lex_state = 196}, + [5268] = {.lex_state = 196}, + [5269] = {.lex_state = 238}, + [5270] = {.lex_state = 196}, + [5271] = {.lex_state = 196}, + [5272] = {.lex_state = 196}, + [5273] = {.lex_state = 239}, + [5274] = {.lex_state = 239}, + [5275] = {.lex_state = 239}, + [5276] = {.lex_state = 239}, + [5277] = {.lex_state = 196}, + [5278] = {.lex_state = 239}, + [5279] = {.lex_state = 196}, + [5280] = {.lex_state = 239}, + [5281] = {.lex_state = 239}, + [5282] = {.lex_state = 239}, + [5283] = {.lex_state = 196}, + [5284] = {.lex_state = 196}, + [5285] = {.lex_state = 239}, + [5286] = {.lex_state = 239}, + [5287] = {.lex_state = 239}, + [5288] = {.lex_state = 239}, + [5289] = {.lex_state = 196}, + [5290] = {.lex_state = 196}, + [5291] = {.lex_state = 239}, + [5292] = {.lex_state = 239}, + [5293] = {.lex_state = 239}, + [5294] = {.lex_state = 238}, + [5295] = {.lex_state = 196}, + [5296] = {.lex_state = 239}, + [5297] = {.lex_state = 196}, [5298] = {.lex_state = 242}, - [5299] = {.lex_state = 242}, - [5300] = {.lex_state = 238}, - [5301] = {.lex_state = 238}, - [5302] = {.lex_state = 238}, - [5303] = {.lex_state = 196}, - [5304] = {.lex_state = 238}, - [5305] = {.lex_state = 196}, - [5306] = {.lex_state = 196}, - [5307] = {.lex_state = 238}, - [5308] = {.lex_state = 238}, - [5309] = {.lex_state = 196}, - [5310] = {.lex_state = 196}, - [5311] = {.lex_state = 238}, - [5312] = {.lex_state = 238}, - [5313] = {.lex_state = 238}, - [5314] = {.lex_state = 238}, - [5315] = {.lex_state = 238}, - [5316] = {.lex_state = 238}, - [5317] = {.lex_state = 238}, - [5318] = {.lex_state = 238}, - [5319] = {.lex_state = 238}, - [5320] = {.lex_state = 196}, - [5321] = {.lex_state = 196}, - [5322] = {.lex_state = 196}, - [5323] = {.lex_state = 196}, - [5324] = {.lex_state = 196}, - [5325] = {.lex_state = 196}, - [5326] = {.lex_state = 196}, - [5327] = {.lex_state = 241}, - [5328] = {.lex_state = 238}, - [5329] = {.lex_state = 238}, - [5330] = {.lex_state = 238}, - [5331] = {.lex_state = 238}, - [5332] = {.lex_state = 238}, - [5333] = {.lex_state = 238}, - [5334] = {.lex_state = 239}, - [5335] = {.lex_state = 238}, - [5336] = {.lex_state = 238}, - [5337] = {.lex_state = 239}, - [5338] = {.lex_state = 238}, - [5339] = {.lex_state = 239}, - [5340] = {.lex_state = 238}, - [5341] = {.lex_state = 239}, - [5342] = {.lex_state = 238}, - [5343] = {.lex_state = 238}, - [5344] = {.lex_state = 196}, - [5345] = {.lex_state = 242}, - [5346] = {.lex_state = 238}, - [5347] = {.lex_state = 238}, - [5348] = {.lex_state = 238}, - [5349] = {.lex_state = 238}, - [5350] = {.lex_state = 238}, - [5351] = {.lex_state = 251}, - [5352] = {.lex_state = 238}, - [5353] = {.lex_state = 251}, - [5354] = {.lex_state = 251}, - [5355] = {.lex_state = 251}, - [5356] = {.lex_state = 196}, + [5299] = {.lex_state = 204}, + [5300] = {.lex_state = 204}, + [5301] = {.lex_state = 204}, + [5302] = {.lex_state = 204}, + [5303] = {.lex_state = 204}, + [5304] = {.lex_state = 204}, + [5305] = {.lex_state = 239}, + [5306] = {.lex_state = 204}, + [5307] = {.lex_state = 204}, + [5308] = {.lex_state = 206}, + [5309] = {.lex_state = 204}, + [5310] = {.lex_state = 204}, + [5311] = {.lex_state = 206}, + [5312] = {.lex_state = 204}, + [5313] = {.lex_state = 204}, + [5314] = {.lex_state = 204}, + [5315] = {.lex_state = 204}, + [5316] = {.lex_state = 239}, + [5317] = {.lex_state = 204}, + [5318] = {.lex_state = 204}, + [5319] = {.lex_state = 204}, + [5320] = {.lex_state = 204}, + [5321] = {.lex_state = 204}, + [5322] = {.lex_state = 204}, + [5323] = {.lex_state = 242}, + [5324] = {.lex_state = 204}, + [5325] = {.lex_state = 204}, + [5326] = {.lex_state = 204}, + [5327] = {.lex_state = 204}, + [5328] = {.lex_state = 204}, + [5329] = {.lex_state = 242}, + [5330] = {.lex_state = 204}, + [5331] = {.lex_state = 198}, + [5332] = {.lex_state = 204}, + [5333] = {.lex_state = 242}, + [5334] = {.lex_state = 198}, + [5335] = {.lex_state = 242}, + [5336] = {.lex_state = 198}, + [5337] = {.lex_state = 198}, + [5338] = {.lex_state = 242}, + [5339] = {.lex_state = 198}, + [5340] = {.lex_state = 198}, + [5341] = {.lex_state = 204}, + [5342] = {.lex_state = 198}, + [5343] = {.lex_state = 198}, + [5344] = {.lex_state = 204}, + [5345] = {.lex_state = 204}, + [5346] = {.lex_state = 204}, + [5347] = {.lex_state = 239}, + [5348] = {.lex_state = 204}, + [5349] = {.lex_state = 204}, + [5350] = {.lex_state = 196}, + [5351] = {.lex_state = 204}, + [5352] = {.lex_state = 196}, + [5353] = {.lex_state = 204}, + [5354] = {.lex_state = 239}, + [5355] = {.lex_state = 204}, + [5356] = {.lex_state = 238}, [5357] = {.lex_state = 242}, - [5358] = {.lex_state = 238}, + [5358] = {.lex_state = 242}, [5359] = {.lex_state = 238}, [5360] = {.lex_state = 238}, - [5361] = {.lex_state = 196}, - [5362] = {.lex_state = 238}, - [5363] = {.lex_state = 196}, - [5364] = {.lex_state = 196}, - [5365] = {.lex_state = 251}, - [5366] = {.lex_state = 238}, - [5367] = {.lex_state = 251}, - [5368] = {.lex_state = 196}, - [5369] = {.lex_state = 238}, - [5370] = {.lex_state = 238}, - [5371] = {.lex_state = 251}, - [5372] = {.lex_state = 198}, - [5373] = {.lex_state = 198}, - [5374] = {.lex_state = 198}, - [5375] = {.lex_state = 198}, - [5376] = {.lex_state = 242}, - [5377] = {.lex_state = 198}, - [5378] = {.lex_state = 242}, - [5379] = {.lex_state = 198}, - [5380] = {.lex_state = 198}, - [5381] = {.lex_state = 238}, - [5382] = {.lex_state = 198}, - [5383] = {.lex_state = 198}, - [5384] = {.lex_state = 238}, - [5385] = {.lex_state = 198}, + [5361] = {.lex_state = 238}, + [5362] = {.lex_state = 242}, + [5363] = {.lex_state = 238}, + [5364] = {.lex_state = 242}, + [5365] = {.lex_state = 241}, + [5366] = {.lex_state = 242}, + [5367] = {.lex_state = 238}, + [5368] = {.lex_state = 242}, + [5369] = {.lex_state = 242}, + [5370] = {.lex_state = 242}, + [5371] = {.lex_state = 242}, + [5372] = {.lex_state = 242}, + [5373] = {.lex_state = 242}, + [5374] = {.lex_state = 242}, + [5375] = {.lex_state = 196}, + [5376] = {.lex_state = 238}, + [5377] = {.lex_state = 238}, + [5378] = {.lex_state = 196}, + [5379] = {.lex_state = 196}, + [5380] = {.lex_state = 238}, + [5381] = {.lex_state = 196}, + [5382] = {.lex_state = 241}, + [5383] = {.lex_state = 238}, + [5384] = {.lex_state = 196}, + [5385] = {.lex_state = 196}, [5386] = {.lex_state = 196}, [5387] = {.lex_state = 196}, - [5388] = {.lex_state = 194}, - [5389] = {.lex_state = 242}, - [5390] = {.lex_state = 196}, - [5391] = {.lex_state = 198}, - [5392] = {.lex_state = 198}, + [5388] = {.lex_state = 238}, + [5389] = {.lex_state = 238}, + [5390] = {.lex_state = 238}, + [5391] = {.lex_state = 238}, + [5392] = {.lex_state = 238}, [5393] = {.lex_state = 196}, [5394] = {.lex_state = 196}, - [5395] = {.lex_state = 238}, - [5396] = {.lex_state = 238}, + [5395] = {.lex_state = 196}, + [5396] = {.lex_state = 196}, [5397] = {.lex_state = 196}, - [5398] = {.lex_state = 196}, + [5398] = {.lex_state = 238}, [5399] = {.lex_state = 238}, [5400] = {.lex_state = 238}, - [5401] = {.lex_state = 238}, + [5401] = {.lex_state = 196}, [5402] = {.lex_state = 238}, - [5403] = {.lex_state = 196}, + [5403] = {.lex_state = 238}, [5404] = {.lex_state = 238}, [5405] = {.lex_state = 196}, [5406] = {.lex_state = 238}, - [5407] = {.lex_state = 242}, - [5408] = {.lex_state = 196}, + [5407] = {.lex_state = 196}, + [5408] = {.lex_state = 238}, [5409] = {.lex_state = 238}, [5410] = {.lex_state = 196}, - [5411] = {.lex_state = 238}, - [5412] = {.lex_state = 196}, - [5413] = {.lex_state = 196}, - [5414] = {.lex_state = 238}, + [5411] = {.lex_state = 196}, + [5412] = {.lex_state = 238}, + [5413] = {.lex_state = 239}, + [5414] = {.lex_state = 239}, [5415] = {.lex_state = 238}, - [5416] = {.lex_state = 196}, - [5417] = {.lex_state = 251}, + [5416] = {.lex_state = 239}, + [5417] = {.lex_state = 238}, [5418] = {.lex_state = 238}, - [5419] = {.lex_state = 238}, + [5419] = {.lex_state = 239}, [5420] = {.lex_state = 238}, - [5421] = {.lex_state = 251}, - [5422] = {.lex_state = 251}, + [5421] = {.lex_state = 238}, + [5422] = {.lex_state = 196}, [5423] = {.lex_state = 251}, - [5424] = {.lex_state = 251}, - [5425] = {.lex_state = 238}, + [5424] = {.lex_state = 238}, + [5425] = {.lex_state = 196}, [5426] = {.lex_state = 251}, - [5427] = {.lex_state = 238}, - [5428] = {.lex_state = 242}, - [5429] = {.lex_state = 251}, - [5430] = {.lex_state = 251}, + [5427] = {.lex_state = 251}, + [5428] = {.lex_state = 196}, + [5429] = {.lex_state = 238}, + [5430] = {.lex_state = 238}, [5431] = {.lex_state = 251}, - [5432] = {.lex_state = 251}, - [5433] = {.lex_state = 251}, - [5434] = {.lex_state = 251}, + [5432] = {.lex_state = 238}, + [5433] = {.lex_state = 238}, + [5434] = {.lex_state = 196}, [5435] = {.lex_state = 251}, - [5436] = {.lex_state = 251}, - [5437] = {.lex_state = 251}, - [5438] = {.lex_state = 195}, - [5439] = {.lex_state = 251}, - [5440] = {.lex_state = 251}, - [5441] = {.lex_state = 251}, + [5436] = {.lex_state = 238}, + [5437] = {.lex_state = 238}, + [5438] = {.lex_state = 238}, + [5439] = {.lex_state = 238}, + [5440] = {.lex_state = 238}, + [5441] = {.lex_state = 242}, [5442] = {.lex_state = 238}, - [5443] = {.lex_state = 251}, - [5444] = {.lex_state = 251}, + [5443] = {.lex_state = 242}, + [5444] = {.lex_state = 196}, [5445] = {.lex_state = 251}, [5446] = {.lex_state = 238}, [5447] = {.lex_state = 238}, - [5448] = {.lex_state = 238}, + [5448] = {.lex_state = 196}, [5449] = {.lex_state = 251}, - [5450] = {.lex_state = 238}, - [5451] = {.lex_state = 251}, - [5452] = {.lex_state = 238}, + [5450] = {.lex_state = 242}, + [5451] = {.lex_state = 198}, + [5452] = {.lex_state = 194}, [5453] = {.lex_state = 238}, - [5454] = {.lex_state = 251}, - [5455] = {.lex_state = 251}, - [5456] = {.lex_state = 251}, - [5457] = {.lex_state = 251}, - [5458] = {.lex_state = 238}, - [5459] = {.lex_state = 251}, - [5460] = {.lex_state = 194}, - [5461] = {.lex_state = 251}, - [5462] = {.lex_state = 194}, - [5463] = {.lex_state = 241}, - [5464] = {.lex_state = 251}, - [5465] = {.lex_state = 251}, - [5466] = {.lex_state = 251}, - [5467] = {.lex_state = 251}, + [5454] = {.lex_state = 198}, + [5455] = {.lex_state = 238}, + [5456] = {.lex_state = 196}, + [5457] = {.lex_state = 198}, + [5458] = {.lex_state = 196}, + [5459] = {.lex_state = 198}, + [5460] = {.lex_state = 196}, + [5461] = {.lex_state = 198}, + [5462] = {.lex_state = 198}, + [5463] = {.lex_state = 198}, + [5464] = {.lex_state = 242}, + [5465] = {.lex_state = 198}, + [5466] = {.lex_state = 198}, + [5467] = {.lex_state = 198}, [5468] = {.lex_state = 242}, - [5469] = {.lex_state = 251}, - [5470] = {.lex_state = 242}, - [5471] = {.lex_state = 238}, - [5472] = {.lex_state = 251}, - [5473] = {.lex_state = 251}, - [5474] = {.lex_state = 251}, - [5475] = {.lex_state = 251}, - [5476] = {.lex_state = 251}, - [5477] = {.lex_state = 251}, - [5478] = {.lex_state = 194}, + [5469] = {.lex_state = 194}, + [5470] = {.lex_state = 198}, + [5471] = {.lex_state = 198}, + [5472] = {.lex_state = 238}, + [5473] = {.lex_state = 196}, + [5474] = {.lex_state = 238}, + [5475] = {.lex_state = 196}, + [5476] = {.lex_state = 196}, + [5477] = {.lex_state = 238}, + [5478] = {.lex_state = 196}, [5479] = {.lex_state = 238}, - [5480] = {.lex_state = 251}, - [5481] = {.lex_state = 251}, - [5482] = {.lex_state = 251}, - [5483] = {.lex_state = 251}, + [5480] = {.lex_state = 238}, + [5481] = {.lex_state = 196}, + [5482] = {.lex_state = 238}, + [5483] = {.lex_state = 196}, [5484] = {.lex_state = 196}, - [5485] = {.lex_state = 196}, - [5486] = {.lex_state = 238}, + [5485] = {.lex_state = 238}, + [5486] = {.lex_state = 242}, [5487] = {.lex_state = 196}, - [5488] = {.lex_state = 196}, - [5489] = {.lex_state = 196}, - [5490] = {.lex_state = 242}, - [5491] = {.lex_state = 242}, - [5492] = {.lex_state = 242}, - [5493] = {.lex_state = 242}, - [5494] = {.lex_state = 242}, - [5495] = {.lex_state = 196}, - [5496] = {.lex_state = 196}, - [5497] = {.lex_state = 238}, - [5498] = {.lex_state = 194}, - [5499] = {.lex_state = 196}, - [5500] = {.lex_state = 196}, - [5501] = {.lex_state = 196}, - [5502] = {.lex_state = 238}, - [5503] = {.lex_state = 242}, - [5504] = {.lex_state = 196}, - [5505] = {.lex_state = 196}, - [5506] = {.lex_state = 196}, - [5507] = {.lex_state = 196}, - [5508] = {.lex_state = 196}, - [5509] = {.lex_state = 196}, - [5510] = {.lex_state = 196}, - [5511] = {.lex_state = 196}, - [5512] = {.lex_state = 196}, - [5513] = {.lex_state = 196}, - [5514] = {.lex_state = 242}, - [5515] = {.lex_state = 238}, - [5516] = {.lex_state = 196}, - [5517] = {.lex_state = 196}, - [5518] = {.lex_state = 196}, - [5519] = {.lex_state = 196}, - [5520] = {.lex_state = 242}, - [5521] = {.lex_state = 196}, - [5522] = {.lex_state = 196}, - [5523] = {.lex_state = 196}, - [5524] = {.lex_state = 178}, + [5488] = {.lex_state = 238}, + [5489] = {.lex_state = 238}, + [5490] = {.lex_state = 196}, + [5491] = {.lex_state = 196}, + [5492] = {.lex_state = 238}, + [5493] = {.lex_state = 196}, + [5494] = {.lex_state = 238}, + [5495] = {.lex_state = 238}, + [5496] = {.lex_state = 251}, + [5497] = {.lex_state = 251}, + [5498] = {.lex_state = 251}, + [5499] = {.lex_state = 251}, + [5500] = {.lex_state = 251}, + [5501] = {.lex_state = 251}, + [5502] = {.lex_state = 251}, + [5503] = {.lex_state = 251}, + [5504] = {.lex_state = 251}, + [5505] = {.lex_state = 251}, + [5506] = {.lex_state = 251}, + [5507] = {.lex_state = 238}, + [5508] = {.lex_state = 251}, + [5509] = {.lex_state = 251}, + [5510] = {.lex_state = 251}, + [5511] = {.lex_state = 251}, + [5512] = {.lex_state = 251}, + [5513] = {.lex_state = 251}, + [5514] = {.lex_state = 251}, + [5515] = {.lex_state = 251}, + [5516] = {.lex_state = 251}, + [5517] = {.lex_state = 251}, + [5518] = {.lex_state = 251}, + [5519] = {.lex_state = 242}, + [5520] = {.lex_state = 241}, + [5521] = {.lex_state = 251}, + [5522] = {.lex_state = 251}, + [5523] = {.lex_state = 251}, + [5524] = {.lex_state = 238}, [5525] = {.lex_state = 194}, - [5526] = {.lex_state = 196}, - [5527] = {.lex_state = 196}, - [5528] = {.lex_state = 196}, - [5529] = {.lex_state = 196}, - [5530] = {.lex_state = 196}, - [5531] = {.lex_state = 196}, - [5532] = {.lex_state = 196}, - [5533] = {.lex_state = 196}, - [5534] = {.lex_state = 242}, - [5535] = {.lex_state = 196}, - [5536] = {.lex_state = 242}, - [5537] = {.lex_state = 196}, - [5538] = {.lex_state = 196}, - [5539] = {.lex_state = 196}, - [5540] = {.lex_state = 196}, - [5541] = {.lex_state = 196}, - [5542] = {.lex_state = 196}, - [5543] = {.lex_state = 196}, - [5544] = {.lex_state = 242}, - [5545] = {.lex_state = 196}, - [5546] = {.lex_state = 195}, - [5547] = {.lex_state = 196}, - [5548] = {.lex_state = 196}, - [5549] = {.lex_state = 196}, - [5550] = {.lex_state = 242}, - [5551] = {.lex_state = 196}, - [5552] = {.lex_state = 196}, - [5553] = {.lex_state = 242}, - [5554] = {.lex_state = 242}, - [5555] = {.lex_state = 242}, - [5556] = {.lex_state = 242}, - [5557] = {.lex_state = 196}, - [5558] = {.lex_state = 196}, - [5559] = {.lex_state = 196}, - [5560] = {.lex_state = 196}, - [5561] = {.lex_state = 196}, - [5562] = {.lex_state = 196}, - [5563] = {.lex_state = 196}, + [5526] = {.lex_state = 238}, + [5527] = {.lex_state = 238}, + [5528] = {.lex_state = 238}, + [5529] = {.lex_state = 238}, + [5530] = {.lex_state = 238}, + [5531] = {.lex_state = 238}, + [5532] = {.lex_state = 251}, + [5533] = {.lex_state = 251}, + [5534] = {.lex_state = 238}, + [5535] = {.lex_state = 238}, + [5536] = {.lex_state = 238}, + [5537] = {.lex_state = 238}, + [5538] = {.lex_state = 238}, + [5539] = {.lex_state = 238}, + [5540] = {.lex_state = 242}, + [5541] = {.lex_state = 242}, + [5542] = {.lex_state = 251}, + [5543] = {.lex_state = 251}, + [5544] = {.lex_state = 251}, + [5545] = {.lex_state = 251}, + [5546] = {.lex_state = 251}, + [5547] = {.lex_state = 195}, + [5548] = {.lex_state = 238}, + [5549] = {.lex_state = 251}, + [5550] = {.lex_state = 251}, + [5551] = {.lex_state = 251}, + [5552] = {.lex_state = 251}, + [5553] = {.lex_state = 194}, + [5554] = {.lex_state = 251}, + [5555] = {.lex_state = 251}, + [5556] = {.lex_state = 251}, + [5557] = {.lex_state = 194}, + [5558] = {.lex_state = 251}, + [5559] = {.lex_state = 251}, + [5560] = {.lex_state = 251}, + [5561] = {.lex_state = 251}, + [5562] = {.lex_state = 251}, + [5563] = {.lex_state = 195}, [5564] = {.lex_state = 196}, - [5565] = {.lex_state = 196}, - [5566] = {.lex_state = 196}, - [5567] = {.lex_state = 196}, + [5565] = {.lex_state = 242}, + [5566] = {.lex_state = 242}, + [5567] = {.lex_state = 242}, [5568] = {.lex_state = 196}, - [5569] = {.lex_state = 196}, + [5569] = {.lex_state = 194}, [5570] = {.lex_state = 196}, [5571] = {.lex_state = 196}, - [5572] = {.lex_state = 196}, + [5572] = {.lex_state = 97}, [5573] = {.lex_state = 196}, - [5574] = {.lex_state = 196}, - [5575] = {.lex_state = 196}, - [5576] = {.lex_state = 196}, + [5574] = {.lex_state = 242}, + [5575] = {.lex_state = 242}, + [5576] = {.lex_state = 242}, [5577] = {.lex_state = 242}, - [5578] = {.lex_state = 242}, - [5579] = {.lex_state = 242}, - [5580] = {.lex_state = 195}, - [5581] = {.lex_state = 195}, + [5578] = {.lex_state = 238}, + [5579] = {.lex_state = 196}, + [5580] = {.lex_state = 196}, + [5581] = {.lex_state = 238}, [5582] = {.lex_state = 196}, - [5583] = {.lex_state = 196}, - [5584] = {.lex_state = 196}, - [5585] = {.lex_state = 238}, + [5583] = {.lex_state = 242}, + [5584] = {.lex_state = 242}, + [5585] = {.lex_state = 196}, [5586] = {.lex_state = 196}, - [5587] = {.lex_state = 99}, + [5587] = {.lex_state = 196}, [5588] = {.lex_state = 196}, [5589] = {.lex_state = 196}, [5590] = {.lex_state = 196}, - [5591] = {.lex_state = 194}, - [5592] = {.lex_state = 196}, - [5593] = {.lex_state = 178}, + [5591] = {.lex_state = 196}, + [5592] = {.lex_state = 178}, + [5593] = {.lex_state = 242}, [5594] = {.lex_state = 242}, [5595] = {.lex_state = 242}, [5596] = {.lex_state = 196}, - [5597] = {.lex_state = 196}, + [5597] = {.lex_state = 194}, [5598] = {.lex_state = 196}, [5599] = {.lex_state = 196}, [5600] = {.lex_state = 196}, [5601] = {.lex_state = 196}, - [5602] = {.lex_state = 196}, - [5603] = {.lex_state = 242}, - [5604] = {.lex_state = 242}, - [5605] = {.lex_state = 242}, - [5606] = {.lex_state = 242}, + [5602] = {.lex_state = 242}, + [5603] = {.lex_state = 196}, + [5604] = {.lex_state = 196}, + [5605] = {.lex_state = 196}, + [5606] = {.lex_state = 196}, [5607] = {.lex_state = 196}, - [5608] = {.lex_state = 196}, - [5609] = {.lex_state = 242}, - [5610] = {.lex_state = 242}, - [5611] = {.lex_state = 242}, + [5608] = {.lex_state = 178}, + [5609] = {.lex_state = 196}, + [5610] = {.lex_state = 196}, + [5611] = {.lex_state = 196}, [5612] = {.lex_state = 196}, [5613] = {.lex_state = 196}, - [5614] = {.lex_state = 196}, - [5615] = {.lex_state = 242}, - [5616] = {.lex_state = 242}, - [5617] = {.lex_state = 238}, - [5618] = {.lex_state = 242}, - [5619] = {.lex_state = 242}, - [5620] = {.lex_state = 242}, - [5621] = {.lex_state = 242}, - [5622] = {.lex_state = 242}, + [5614] = {.lex_state = 242}, + [5615] = {.lex_state = 196}, + [5616] = {.lex_state = 196}, + [5617] = {.lex_state = 195}, + [5618] = {.lex_state = 196}, + [5619] = {.lex_state = 196}, + [5620] = {.lex_state = 196}, + [5621] = {.lex_state = 196}, + [5622] = {.lex_state = 196}, [5623] = {.lex_state = 196}, [5624] = {.lex_state = 196}, - [5625] = {.lex_state = 242}, - [5626] = {.lex_state = 242}, + [5625] = {.lex_state = 196}, + [5626] = {.lex_state = 196}, [5627] = {.lex_state = 196}, - [5628] = {.lex_state = 194}, + [5628] = {.lex_state = 196}, [5629] = {.lex_state = 196}, - [5630] = {.lex_state = 196}, - [5631] = {.lex_state = 196}, - [5632] = {.lex_state = 238}, + [5630] = {.lex_state = 238}, + [5631] = {.lex_state = 242}, + [5632] = {.lex_state = 196}, [5633] = {.lex_state = 196}, [5634] = {.lex_state = 196}, [5635] = {.lex_state = 196}, - [5636] = {.lex_state = 178}, - [5637] = {.lex_state = 194}, - [5638] = {.lex_state = 196}, - [5639] = {.lex_state = 196}, + [5636] = {.lex_state = 196}, + [5637] = {.lex_state = 196}, + [5638] = {.lex_state = 242}, + [5639] = {.lex_state = 242}, [5640] = {.lex_state = 196}, - [5641] = {.lex_state = 246}, - [5642] = {.lex_state = 195}, - [5643] = {.lex_state = 195}, - [5644] = {.lex_state = 239}, - [5645] = {.lex_state = 195}, - [5646] = {.lex_state = 195}, - [5647] = {.lex_state = 246}, - [5648] = {.lex_state = 195}, - [5649] = {.lex_state = 195}, - [5650] = {.lex_state = 239}, - [5651] = {.lex_state = 246}, - [5652] = {.lex_state = 178}, - [5653] = {.lex_state = 242}, - [5654] = {.lex_state = 194}, + [5641] = {.lex_state = 196}, + [5642] = {.lex_state = 196}, + [5643] = {.lex_state = 196}, + [5644] = {.lex_state = 242}, + [5645] = {.lex_state = 242}, + [5646] = {.lex_state = 196}, + [5647] = {.lex_state = 196}, + [5648] = {.lex_state = 196}, + [5649] = {.lex_state = 242}, + [5650] = {.lex_state = 196}, + [5651] = {.lex_state = 196}, + [5652] = {.lex_state = 196}, + [5653] = {.lex_state = 196}, + [5654] = {.lex_state = 196}, [5655] = {.lex_state = 242}, - [5656] = {.lex_state = 178}, - [5657] = {.lex_state = 178}, - [5658] = {.lex_state = 242}, - [5659] = {.lex_state = 194}, - [5660] = {.lex_state = 242}, - [5661] = {.lex_state = 178}, - [5662] = {.lex_state = 238}, - [5663] = {.lex_state = 238}, - [5664] = {.lex_state = 238}, - [5665] = {.lex_state = 238}, - [5666] = {.lex_state = 178}, - [5667] = {.lex_state = 246}, - [5668] = {.lex_state = 239}, - [5669] = {.lex_state = 242}, + [5656] = {.lex_state = 196}, + [5657] = {.lex_state = 238}, + [5658] = {.lex_state = 196}, + [5659] = {.lex_state = 196}, + [5660] = {.lex_state = 196}, + [5661] = {.lex_state = 196}, + [5662] = {.lex_state = 196}, + [5663] = {.lex_state = 242}, + [5664] = {.lex_state = 196}, + [5665] = {.lex_state = 196}, + [5666] = {.lex_state = 242}, + [5667] = {.lex_state = 196}, + [5668] = {.lex_state = 196}, + [5669] = {.lex_state = 178}, [5670] = {.lex_state = 242}, [5671] = {.lex_state = 242}, [5672] = {.lex_state = 242}, - [5673] = {.lex_state = 195}, - [5674] = {.lex_state = 195}, - [5675] = {.lex_state = 246}, - [5676] = {.lex_state = 194}, - [5677] = {.lex_state = 238}, - [5678] = {.lex_state = 238}, - [5679] = {.lex_state = 238}, - [5680] = {.lex_state = 238}, - [5681] = {.lex_state = 246}, - [5682] = {.lex_state = 246}, - [5683] = {.lex_state = 241}, - [5684] = {.lex_state = 246}, - [5685] = {.lex_state = 194}, - [5686] = {.lex_state = 178}, - [5687] = {.lex_state = 242}, - [5688] = {.lex_state = 242}, - [5689] = {.lex_state = 246}, - [5690] = {.lex_state = 246}, - [5691] = {.lex_state = 246}, - [5692] = {.lex_state = 204}, - [5693] = {.lex_state = 246}, - [5694] = {.lex_state = 239}, - [5695] = {.lex_state = 246}, - [5696] = {.lex_state = 239}, - [5697] = {.lex_state = 195}, - [5698] = {.lex_state = 246}, - [5699] = {.lex_state = 195}, - [5700] = {.lex_state = 178}, - [5701] = {.lex_state = 242}, - [5702] = {.lex_state = 194}, + [5673] = {.lex_state = 196}, + [5674] = {.lex_state = 196}, + [5675] = {.lex_state = 196}, + [5676] = {.lex_state = 242}, + [5677] = {.lex_state = 242}, + [5678] = {.lex_state = 242}, + [5679] = {.lex_state = 242}, + [5680] = {.lex_state = 196}, + [5681] = {.lex_state = 196}, + [5682] = {.lex_state = 194}, + [5683] = {.lex_state = 196}, + [5684] = {.lex_state = 196}, + [5685] = {.lex_state = 196}, + [5686] = {.lex_state = 196}, + [5687] = {.lex_state = 238}, + [5688] = {.lex_state = 194}, + [5689] = {.lex_state = 196}, + [5690] = {.lex_state = 196}, + [5691] = {.lex_state = 196}, + [5692] = {.lex_state = 196}, + [5693] = {.lex_state = 195}, + [5694] = {.lex_state = 196}, + [5695] = {.lex_state = 242}, + [5696] = {.lex_state = 196}, + [5697] = {.lex_state = 196}, + [5698] = {.lex_state = 196}, + [5699] = {.lex_state = 238}, + [5700] = {.lex_state = 196}, + [5701] = {.lex_state = 196}, + [5702] = {.lex_state = 196}, [5703] = {.lex_state = 242}, - [5704] = {.lex_state = 178}, - [5705] = {.lex_state = 195}, - [5706] = {.lex_state = 242}, - [5707] = {.lex_state = 178}, - [5708] = {.lex_state = 178}, + [5704] = {.lex_state = 242}, + [5705] = {.lex_state = 196}, + [5706] = {.lex_state = 196}, + [5707] = {.lex_state = 196}, + [5708] = {.lex_state = 242}, [5709] = {.lex_state = 242}, - [5710] = {.lex_state = 178}, - [5711] = {.lex_state = 178}, - [5712] = {.lex_state = 178}, - [5713] = {.lex_state = 242}, - [5714] = {.lex_state = 242}, + [5710] = {.lex_state = 196}, + [5711] = {.lex_state = 196}, + [5712] = {.lex_state = 196}, + [5713] = {.lex_state = 196}, + [5714] = {.lex_state = 194}, [5715] = {.lex_state = 242}, - [5716] = {.lex_state = 242}, - [5717] = {.lex_state = 178}, - [5718] = {.lex_state = 178}, - [5719] = {.lex_state = 178}, + [5716] = {.lex_state = 196}, + [5717] = {.lex_state = 196}, + [5718] = {.lex_state = 242}, + [5719] = {.lex_state = 238}, [5720] = {.lex_state = 178}, - [5721] = {.lex_state = 178}, - [5722] = {.lex_state = 195}, - [5723] = {.lex_state = 239}, - [5724] = {.lex_state = 178}, - [5725] = {.lex_state = 194}, - [5726] = {.lex_state = 178}, - [5727] = {.lex_state = 178}, - [5728] = {.lex_state = 239}, - [5729] = {.lex_state = 178}, - [5730] = {.lex_state = 178}, - [5731] = {.lex_state = 195}, - [5732] = {.lex_state = 239}, - [5733] = {.lex_state = 242}, + [5721] = {.lex_state = 194}, + [5722] = {.lex_state = 242}, + [5723] = {.lex_state = 246}, + [5724] = {.lex_state = 242}, + [5725] = {.lex_state = 178}, + [5726] = {.lex_state = 246}, + [5727] = {.lex_state = 246}, + [5728] = {.lex_state = 238}, + [5729] = {.lex_state = 238}, + [5730] = {.lex_state = 242}, + [5731] = {.lex_state = 238}, + [5732] = {.lex_state = 238}, + [5733] = {.lex_state = 178}, [5734] = {.lex_state = 246}, - [5735] = {.lex_state = 239}, - [5736] = {.lex_state = 239}, - [5737] = {.lex_state = 194}, - [5738] = {.lex_state = 178}, - [5739] = {.lex_state = 178}, - [5740] = {.lex_state = 204}, - [5741] = {.lex_state = 178}, - [5742] = {.lex_state = 178}, - [5743] = {.lex_state = 178}, - [5744] = {.lex_state = 239}, - [5745] = {.lex_state = 239}, - [5746] = {.lex_state = 239}, - [5747] = {.lex_state = 242}, - [5748] = {.lex_state = 246}, - [5749] = {.lex_state = 246}, - [5750] = {.lex_state = 194}, - [5751] = {.lex_state = 246}, - [5752] = {.lex_state = 239}, - [5753] = {.lex_state = 241}, - [5754] = {.lex_state = 239}, - [5755] = {.lex_state = 178}, - [5756] = {.lex_state = 239}, - [5757] = {.lex_state = 239}, + [5735] = {.lex_state = 195}, + [5736] = {.lex_state = 242}, + [5737] = {.lex_state = 241}, + [5738] = {.lex_state = 242}, + [5739] = {.lex_state = 242}, + [5740] = {.lex_state = 242}, + [5741] = {.lex_state = 204}, + [5742] = {.lex_state = 194}, + [5743] = {.lex_state = 238}, + [5744] = {.lex_state = 238}, + [5745] = {.lex_state = 238}, + [5746] = {.lex_state = 238}, + [5747] = {.lex_state = 246}, + [5748] = {.lex_state = 195}, + [5749] = {.lex_state = 194}, + [5750] = {.lex_state = 178}, + [5751] = {.lex_state = 195}, + [5752] = {.lex_state = 178}, + [5753] = {.lex_state = 178}, + [5754] = {.lex_state = 195}, + [5755] = {.lex_state = 195}, + [5756] = {.lex_state = 195}, + [5757] = {.lex_state = 178}, [5758] = {.lex_state = 178}, - [5759] = {.lex_state = 246}, - [5760] = {.lex_state = 246}, - [5761] = {.lex_state = 246}, + [5759] = {.lex_state = 178}, + [5760] = {.lex_state = 178}, + [5761] = {.lex_state = 178}, [5762] = {.lex_state = 178}, - [5763] = {.lex_state = 194}, - [5764] = {.lex_state = 195}, - [5765] = {.lex_state = 195}, - [5766] = {.lex_state = 195}, - [5767] = {.lex_state = 195}, - [5768] = {.lex_state = 178}, - [5769] = {.lex_state = 246}, - [5770] = {.lex_state = 178}, - [5771] = {.lex_state = 195}, - [5772] = {.lex_state = 194}, - [5773] = {.lex_state = 194}, - [5774] = {.lex_state = 195}, - [5775] = {.lex_state = 194}, - [5776] = {.lex_state = 246}, + [5763] = {.lex_state = 178}, + [5764] = {.lex_state = 178}, + [5765] = {.lex_state = 178}, + [5766] = {.lex_state = 178}, + [5767] = {.lex_state = 239}, + [5768] = {.lex_state = 246}, + [5769] = {.lex_state = 194}, + [5770] = {.lex_state = 239}, + [5771] = {.lex_state = 246}, + [5772] = {.lex_state = 239}, + [5773] = {.lex_state = 246}, + [5774] = {.lex_state = 194}, + [5775] = {.lex_state = 242}, + [5776] = {.lex_state = 178}, [5777] = {.lex_state = 178}, [5778] = {.lex_state = 178}, - [5779] = {.lex_state = 178}, - [5780] = {.lex_state = 195}, + [5779] = {.lex_state = 242}, + [5780] = {.lex_state = 178}, [5781] = {.lex_state = 194}, - [5782] = {.lex_state = 178}, - [5783] = {.lex_state = 178}, - [5784] = {.lex_state = 178}, - [5785] = {.lex_state = 246}, - [5786] = {.lex_state = 246}, - [5787] = {.lex_state = 246}, - [5788] = {.lex_state = 194}, - [5789] = {.lex_state = 246}, + [5782] = {.lex_state = 242}, + [5783] = {.lex_state = 242}, + [5784] = {.lex_state = 246}, + [5785] = {.lex_state = 242}, + [5786] = {.lex_state = 242}, + [5787] = {.lex_state = 242}, + [5788] = {.lex_state = 242}, + [5789] = {.lex_state = 195}, [5790] = {.lex_state = 246}, [5791] = {.lex_state = 239}, - [5792] = {.lex_state = 242}, - [5793] = {.lex_state = 195}, + [5792] = {.lex_state = 178}, + [5793] = {.lex_state = 239}, [5794] = {.lex_state = 239}, - [5795] = {.lex_state = 238}, + [5795] = {.lex_state = 178}, [5796] = {.lex_state = 194}, - [5797] = {.lex_state = 99}, - [5798] = {.lex_state = 99}, - [5799] = {.lex_state = 239}, - [5800] = {.lex_state = 250}, - [5801] = {.lex_state = 99}, - [5802] = {.lex_state = 99}, - [5803] = {.lex_state = 239}, + [5797] = {.lex_state = 178}, + [5798] = {.lex_state = 178}, + [5799] = {.lex_state = 178}, + [5800] = {.lex_state = 246}, + [5801] = {.lex_state = 194}, + [5802] = {.lex_state = 239}, + [5803] = {.lex_state = 246}, [5804] = {.lex_state = 242}, - [5805] = {.lex_state = 99}, - [5806] = {.lex_state = 99}, - [5807] = {.lex_state = 194}, - [5808] = {.lex_state = 99}, - [5809] = {.lex_state = 241}, - [5810] = {.lex_state = 239}, - [5811] = {.lex_state = 99}, - [5812] = {.lex_state = 242}, - [5813] = {.lex_state = 242}, - [5814] = {.lex_state = 239}, - [5815] = {.lex_state = 99}, - [5816] = {.lex_state = 242}, - [5817] = {.lex_state = 241}, - [5818] = {.lex_state = 242}, - [5819] = {.lex_state = 242}, - [5820] = {.lex_state = 242}, - [5821] = {.lex_state = 99}, - [5822] = {.lex_state = 242}, - [5823] = {.lex_state = 99}, - [5824] = {.lex_state = 99}, - [5825] = {.lex_state = 99}, - [5826] = {.lex_state = 99}, - [5827] = {.lex_state = 242}, - [5828] = {.lex_state = 99}, - [5829] = {.lex_state = 242}, - [5830] = {.lex_state = 242}, - [5831] = {.lex_state = 99}, - [5832] = {.lex_state = 242}, - [5833] = {.lex_state = 99}, - [5834] = {.lex_state = 99}, + [5805] = {.lex_state = 246}, + [5806] = {.lex_state = 242}, + [5807] = {.lex_state = 246}, + [5808] = {.lex_state = 239}, + [5809] = {.lex_state = 239}, + [5810] = {.lex_state = 178}, + [5811] = {.lex_state = 204}, + [5812] = {.lex_state = 178}, + [5813] = {.lex_state = 246}, + [5814] = {.lex_state = 242}, + [5815] = {.lex_state = 239}, + [5816] = {.lex_state = 194}, + [5817] = {.lex_state = 239}, + [5818] = {.lex_state = 178}, + [5819] = {.lex_state = 194}, + [5820] = {.lex_state = 239}, + [5821] = {.lex_state = 239}, + [5822] = {.lex_state = 239}, + [5823] = {.lex_state = 239}, + [5824] = {.lex_state = 239}, + [5825] = {.lex_state = 178}, + [5826] = {.lex_state = 246}, + [5827] = {.lex_state = 246}, + [5828] = {.lex_state = 246}, + [5829] = {.lex_state = 195}, + [5830] = {.lex_state = 178}, + [5831] = {.lex_state = 246}, + [5832] = {.lex_state = 246}, + [5833] = {.lex_state = 194}, + [5834] = {.lex_state = 178}, [5835] = {.lex_state = 242}, - [5836] = {.lex_state = 242}, - [5837] = {.lex_state = 99}, - [5838] = {.lex_state = 194}, - [5839] = {.lex_state = 242}, - [5840] = {.lex_state = 99}, - [5841] = {.lex_state = 242}, - [5842] = {.lex_state = 99}, - [5843] = {.lex_state = 99}, - [5844] = {.lex_state = 99}, - [5845] = {.lex_state = 239}, - [5846] = {.lex_state = 242}, - [5847] = {.lex_state = 194}, - [5848] = {.lex_state = 239}, - [5849] = {.lex_state = 238}, - [5850] = {.lex_state = 194}, - [5851] = {.lex_state = 241}, - [5852] = {.lex_state = 239}, - [5853] = {.lex_state = 99}, - [5854] = {.lex_state = 99}, - [5855] = {.lex_state = 242}, - [5856] = {.lex_state = 99}, - [5857] = {.lex_state = 99}, - [5858] = {.lex_state = 194}, - [5859] = {.lex_state = 238}, - [5860] = {.lex_state = 194}, - [5861] = {.lex_state = 238}, - [5862] = {.lex_state = 242}, - [5863] = {.lex_state = 239}, - [5864] = {.lex_state = 196}, - [5865] = {.lex_state = 99}, - [5866] = {.lex_state = 196}, - [5867] = {.lex_state = 99}, - [5868] = {.lex_state = 239}, - [5869] = {.lex_state = 196}, - [5870] = {.lex_state = 99}, - [5871] = {.lex_state = 195}, - [5872] = {.lex_state = 99}, - [5873] = {.lex_state = 239}, - [5874] = {.lex_state = 196}, - [5875] = {.lex_state = 196}, - [5876] = {.lex_state = 242}, - [5877] = {.lex_state = 242}, - [5878] = {.lex_state = 239}, - [5879] = {.lex_state = 99}, - [5880] = {.lex_state = 99}, - [5881] = {.lex_state = 238}, - [5882] = {.lex_state = 238}, - [5883] = {.lex_state = 238}, - [5884] = {.lex_state = 241}, - [5885] = {.lex_state = 241}, + [5836] = {.lex_state = 246}, + [5837] = {.lex_state = 178}, + [5838] = {.lex_state = 241}, + [5839] = {.lex_state = 246}, + [5840] = {.lex_state = 239}, + [5841] = {.lex_state = 178}, + [5842] = {.lex_state = 246}, + [5843] = {.lex_state = 246}, + [5844] = {.lex_state = 194}, + [5845] = {.lex_state = 242}, + [5846] = {.lex_state = 194}, + [5847] = {.lex_state = 178}, + [5848] = {.lex_state = 178}, + [5849] = {.lex_state = 178}, + [5850] = {.lex_state = 178}, + [5851] = {.lex_state = 195}, + [5852] = {.lex_state = 195}, + [5853] = {.lex_state = 195}, + [5854] = {.lex_state = 195}, + [5855] = {.lex_state = 195}, + [5856] = {.lex_state = 195}, + [5857] = {.lex_state = 195}, + [5858] = {.lex_state = 195}, + [5859] = {.lex_state = 195}, + [5860] = {.lex_state = 195}, + [5861] = {.lex_state = 195}, + [5862] = {.lex_state = 246}, + [5863] = {.lex_state = 246}, + [5864] = {.lex_state = 178}, + [5865] = {.lex_state = 178}, + [5866] = {.lex_state = 195}, + [5867] = {.lex_state = 246}, + [5868] = {.lex_state = 246}, + [5869] = {.lex_state = 194}, + [5870] = {.lex_state = 239}, + [5871] = {.lex_state = 97}, + [5872] = {.lex_state = 239}, + [5873] = {.lex_state = 238}, + [5874] = {.lex_state = 242}, + [5875] = {.lex_state = 97}, + [5876] = {.lex_state = 97}, + [5877] = {.lex_state = 239}, + [5878] = {.lex_state = 97}, + [5879] = {.lex_state = 97}, + [5880] = {.lex_state = 239}, + [5881] = {.lex_state = 242}, + [5882] = {.lex_state = 196}, + [5883] = {.lex_state = 196}, + [5884] = {.lex_state = 196}, + [5885] = {.lex_state = 196}, [5886] = {.lex_state = 196}, - [5887] = {.lex_state = 241}, - [5888] = {.lex_state = 241}, - [5889] = {.lex_state = 238}, - [5890] = {.lex_state = 238}, - [5891] = {.lex_state = 241}, - [5892] = {.lex_state = 238}, - [5893] = {.lex_state = 242}, - [5894] = {.lex_state = 241}, - [5895] = {.lex_state = 241}, - [5896] = {.lex_state = 241}, - [5897] = {.lex_state = 242}, - [5898] = {.lex_state = 241}, - [5899] = {.lex_state = 241}, + [5887] = {.lex_state = 196}, + [5888] = {.lex_state = 196}, + [5889] = {.lex_state = 196}, + [5890] = {.lex_state = 242}, + [5891] = {.lex_state = 242}, + [5892] = {.lex_state = 242}, + [5893] = {.lex_state = 241}, + [5894] = {.lex_state = 97}, + [5895] = {.lex_state = 194}, + [5896] = {.lex_state = 194}, + [5897] = {.lex_state = 250}, + [5898] = {.lex_state = 239}, + [5899] = {.lex_state = 196}, [5900] = {.lex_state = 242}, - [5901] = {.lex_state = 241}, - [5902] = {.lex_state = 238}, - [5903] = {.lex_state = 242}, - [5904] = {.lex_state = 241}, - [5905] = {.lex_state = 238}, - [5906] = {.lex_state = 241}, - [5907] = {.lex_state = 238}, - [5908] = {.lex_state = 241}, - [5909] = {.lex_state = 241}, - [5910] = {.lex_state = 242}, - [5911] = {.lex_state = 241}, - [5912] = {.lex_state = 238}, - [5913] = {.lex_state = 241}, - [5914] = {.lex_state = 238}, - [5915] = {.lex_state = 238}, - [5916] = {.lex_state = 238}, - [5917] = {.lex_state = 196}, - [5918] = {.lex_state = 241}, - [5919] = {.lex_state = 241}, - [5920] = {.lex_state = 238}, - [5921] = {.lex_state = 238}, - [5922] = {.lex_state = 238}, - [5923] = {.lex_state = 196}, - [5924] = {.lex_state = 196}, - [5925] = {.lex_state = 244}, - [5926] = {.lex_state = 241}, - [5927] = {.lex_state = 241}, - [5928] = {.lex_state = 242}, - [5929] = {.lex_state = 241}, - [5930] = {.lex_state = 241}, - [5931] = {.lex_state = 241}, - [5932] = {.lex_state = 241}, + [5901] = {.lex_state = 242}, + [5902] = {.lex_state = 97}, + [5903] = {.lex_state = 195}, + [5904] = {.lex_state = 97}, + [5905] = {.lex_state = 97}, + [5906] = {.lex_state = 242}, + [5907] = {.lex_state = 242}, + [5908] = {.lex_state = 97}, + [5909] = {.lex_state = 242}, + [5910] = {.lex_state = 97}, + [5911] = {.lex_state = 196}, + [5912] = {.lex_state = 242}, + [5913] = {.lex_state = 242}, + [5914] = {.lex_state = 239}, + [5915] = {.lex_state = 196}, + [5916] = {.lex_state = 239}, + [5917] = {.lex_state = 238}, + [5918] = {.lex_state = 239}, + [5919] = {.lex_state = 97}, + [5920] = {.lex_state = 97}, + [5921] = {.lex_state = 97}, + [5922] = {.lex_state = 239}, + [5923] = {.lex_state = 194}, + [5924] = {.lex_state = 242}, + [5925] = {.lex_state = 97}, + [5926] = {.lex_state = 194}, + [5927] = {.lex_state = 242}, + [5928] = {.lex_state = 97}, + [5929] = {.lex_state = 196}, + [5930] = {.lex_state = 97}, + [5931] = {.lex_state = 194}, + [5932] = {.lex_state = 97}, [5933] = {.lex_state = 241}, - [5934] = {.lex_state = 238}, - [5935] = {.lex_state = 241}, - [5936] = {.lex_state = 238}, - [5937] = {.lex_state = 238}, - [5938] = {.lex_state = 244}, - [5939] = {.lex_state = 241}, - [5940] = {.lex_state = 241}, - [5941] = {.lex_state = 242}, - [5942] = {.lex_state = 241}, - [5943] = {.lex_state = 241}, + [5934] = {.lex_state = 242}, + [5935] = {.lex_state = 97}, + [5936] = {.lex_state = 97}, + [5937] = {.lex_state = 97}, + [5938] = {.lex_state = 97}, + [5939] = {.lex_state = 239}, + [5940] = {.lex_state = 242}, + [5941] = {.lex_state = 97}, + [5942] = {.lex_state = 239}, + [5943] = {.lex_state = 238}, [5944] = {.lex_state = 241}, - [5945] = {.lex_state = 241}, - [5946] = {.lex_state = 206}, - [5947] = {.lex_state = 194}, - [5948] = {.lex_state = 194}, - [5949] = {.lex_state = 238}, - [5950] = {.lex_state = 242}, - [5951] = {.lex_state = 242}, - [5952] = {.lex_state = 196}, + [5945] = {.lex_state = 97}, + [5946] = {.lex_state = 196}, + [5947] = {.lex_state = 238}, + [5948] = {.lex_state = 242}, + [5949] = {.lex_state = 97}, + [5950] = {.lex_state = 239}, + [5951] = {.lex_state = 97}, + [5952] = {.lex_state = 242}, [5953] = {.lex_state = 242}, - [5954] = {.lex_state = 238}, - [5955] = {.lex_state = 242}, - [5956] = {.lex_state = 241}, - [5957] = {.lex_state = 241}, + [5954] = {.lex_state = 97}, + [5955] = {.lex_state = 97}, + [5956] = {.lex_state = 194}, + [5957] = {.lex_state = 239}, [5958] = {.lex_state = 242}, - [5959] = {.lex_state = 234}, - [5960] = {.lex_state = 238}, - [5961] = {.lex_state = 241}, - [5962] = {.lex_state = 194}, - [5963] = {.lex_state = 242}, - [5964] = {.lex_state = 194}, - [5965] = {.lex_state = 238}, - [5966] = {.lex_state = 242}, - [5967] = {.lex_state = 234}, - [5968] = {.lex_state = 246}, + [5959] = {.lex_state = 242}, + [5960] = {.lex_state = 97}, + [5961] = {.lex_state = 97}, + [5962] = {.lex_state = 97}, + [5963] = {.lex_state = 97}, + [5964] = {.lex_state = 97}, + [5965] = {.lex_state = 242}, + [5966] = {.lex_state = 195}, + [5967] = {.lex_state = 194}, + [5968] = {.lex_state = 238}, [5969] = {.lex_state = 196}, - [5970] = {.lex_state = 234}, - [5971] = {.lex_state = 175}, - [5972] = {.lex_state = 242}, - [5973] = {.lex_state = 246}, - [5974] = {.lex_state = 241}, - [5975] = {.lex_state = 196}, - [5976] = {.lex_state = 241}, - [5977] = {.lex_state = 234}, + [5970] = {.lex_state = 196}, + [5971] = {.lex_state = 196}, + [5972] = {.lex_state = 196}, + [5973] = {.lex_state = 242}, + [5974] = {.lex_state = 238}, + [5975] = {.lex_state = 241}, + [5976] = {.lex_state = 238}, + [5977] = {.lex_state = 241}, [5978] = {.lex_state = 242}, - [5979] = {.lex_state = 242}, - [5980] = {.lex_state = 242}, - [5981] = {.lex_state = 242}, - [5982] = {.lex_state = 242}, - [5983] = {.lex_state = 196}, - [5984] = {.lex_state = 244}, - [5985] = {.lex_state = 200}, - [5986] = {.lex_state = 239}, - [5987] = {.lex_state = 239}, - [5988] = {.lex_state = 244}, - [5989] = {.lex_state = 242}, - [5990] = {.lex_state = 244}, - [5991] = {.lex_state = 242}, - [5992] = {.lex_state = 239}, + [5979] = {.lex_state = 241}, + [5980] = {.lex_state = 241}, + [5981] = {.lex_state = 241}, + [5982] = {.lex_state = 241}, + [5983] = {.lex_state = 241}, + [5984] = {.lex_state = 241}, + [5985] = {.lex_state = 241}, + [5986] = {.lex_state = 241}, + [5987] = {.lex_state = 242}, + [5988] = {.lex_state = 196}, + [5989] = {.lex_state = 196}, + [5990] = {.lex_state = 238}, + [5991] = {.lex_state = 238}, + [5992] = {.lex_state = 241}, [5993] = {.lex_state = 196}, - [5994] = {.lex_state = 242}, - [5995] = {.lex_state = 242}, - [5996] = {.lex_state = 196}, - [5997] = {.lex_state = 239}, + [5994] = {.lex_state = 196}, + [5995] = {.lex_state = 238}, + [5996] = {.lex_state = 238}, + [5997] = {.lex_state = 238}, [5998] = {.lex_state = 242}, - [5999] = {.lex_state = 244}, - [6000] = {.lex_state = 239}, + [5999] = {.lex_state = 238}, + [6000] = {.lex_state = 196}, [6001] = {.lex_state = 238}, - [6002] = {.lex_state = 239}, + [6002] = {.lex_state = 238}, [6003] = {.lex_state = 238}, - [6004] = {.lex_state = 238}, - [6005] = {.lex_state = 238}, - [6006] = {.lex_state = 238}, - [6007] = {.lex_state = 238}, - [6008] = {.lex_state = 238}, - [6009] = {.lex_state = 238}, - [6010] = {.lex_state = 242}, - [6011] = {.lex_state = 196}, - [6012] = {.lex_state = 244}, - [6013] = {.lex_state = 200}, - [6014] = {.lex_state = 239}, - [6015] = {.lex_state = 244}, - [6016] = {.lex_state = 244}, + [6004] = {.lex_state = 241}, + [6005] = {.lex_state = 196}, + [6006] = {.lex_state = 241}, + [6007] = {.lex_state = 196}, + [6008] = {.lex_state = 241}, + [6009] = {.lex_state = 241}, + [6010] = {.lex_state = 241}, + [6011] = {.lex_state = 241}, + [6012] = {.lex_state = 241}, + [6013] = {.lex_state = 196}, + [6014] = {.lex_state = 196}, + [6015] = {.lex_state = 241}, + [6016] = {.lex_state = 241}, [6017] = {.lex_state = 244}, - [6018] = {.lex_state = 244}, - [6019] = {.lex_state = 200}, - [6020] = {.lex_state = 200}, - [6021] = {.lex_state = 239}, - [6022] = {.lex_state = 239}, + [6018] = {.lex_state = 241}, + [6019] = {.lex_state = 196}, + [6020] = {.lex_state = 241}, + [6021] = {.lex_state = 238}, + [6022] = {.lex_state = 196}, [6023] = {.lex_state = 196}, - [6024] = {.lex_state = 242}, - [6025] = {.lex_state = 242}, - [6026] = {.lex_state = 242}, - [6027] = {.lex_state = 242}, - [6028] = {.lex_state = 242}, - [6029] = {.lex_state = 242}, - [6030] = {.lex_state = 239}, - [6031] = {.lex_state = 196}, - [6032] = {.lex_state = 244}, - [6033] = {.lex_state = 200}, - [6034] = {.lex_state = 200}, + [6024] = {.lex_state = 241}, + [6025] = {.lex_state = 241}, + [6026] = {.lex_state = 241}, + [6027] = {.lex_state = 196}, + [6028] = {.lex_state = 238}, + [6029] = {.lex_state = 238}, + [6030] = {.lex_state = 196}, + [6031] = {.lex_state = 241}, + [6032] = {.lex_state = 238}, + [6033] = {.lex_state = 238}, + [6034] = {.lex_state = 238}, [6035] = {.lex_state = 242}, - [6036] = {.lex_state = 196}, - [6037] = {.lex_state = 239}, - [6038] = {.lex_state = 200}, - [6039] = {.lex_state = 175}, - [6040] = {.lex_state = 196}, - [6041] = {.lex_state = 244}, - [6042] = {.lex_state = 200}, - [6043] = {.lex_state = 196}, - [6044] = {.lex_state = 239}, - [6045] = {.lex_state = 244}, - [6046] = {.lex_state = 200}, - [6047] = {.lex_state = 244}, - [6048] = {.lex_state = 244}, - [6049] = {.lex_state = 244}, - [6050] = {.lex_state = 242}, - [6051] = {.lex_state = 242}, - [6052] = {.lex_state = 242}, + [6036] = {.lex_state = 241}, + [6037] = {.lex_state = 196}, + [6038] = {.lex_state = 241}, + [6039] = {.lex_state = 238}, + [6040] = {.lex_state = 244}, + [6041] = {.lex_state = 196}, + [6042] = {.lex_state = 196}, + [6043] = {.lex_state = 242}, + [6044] = {.lex_state = 196}, + [6045] = {.lex_state = 241}, + [6046] = {.lex_state = 196}, + [6047] = {.lex_state = 196}, + [6048] = {.lex_state = 241}, + [6049] = {.lex_state = 241}, + [6050] = {.lex_state = 234}, + [6051] = {.lex_state = 196}, + [6052] = {.lex_state = 238}, [6053] = {.lex_state = 242}, - [6054] = {.lex_state = 242}, - [6055] = {.lex_state = 242}, + [6054] = {.lex_state = 196}, + [6055] = {.lex_state = 196}, [6056] = {.lex_state = 242}, - [6057] = {.lex_state = 242}, - [6058] = {.lex_state = 242}, - [6059] = {.lex_state = 242}, - [6060] = {.lex_state = 239}, + [6057] = {.lex_state = 238}, + [6058] = {.lex_state = 175}, + [6059] = {.lex_state = 194}, + [6060] = {.lex_state = 194}, [6061] = {.lex_state = 242}, - [6062] = {.lex_state = 242}, - [6063] = {.lex_state = 200}, - [6064] = {.lex_state = 200}, - [6065] = {.lex_state = 239}, - [6066] = {.lex_state = 242}, - [6067] = {.lex_state = 200}, - [6068] = {.lex_state = 242}, - [6069] = {.lex_state = 239}, - [6070] = {.lex_state = 239}, - [6071] = {.lex_state = 244}, - [6072] = {.lex_state = 242}, - [6073] = {.lex_state = 244}, - [6074] = {.lex_state = 244}, + [6062] = {.lex_state = 196}, + [6063] = {.lex_state = 242}, + [6064] = {.lex_state = 194}, + [6065] = {.lex_state = 246}, + [6066] = {.lex_state = 241}, + [6067] = {.lex_state = 241}, + [6068] = {.lex_state = 241}, + [6069] = {.lex_state = 234}, + [6070] = {.lex_state = 242}, + [6071] = {.lex_state = 234}, + [6072] = {.lex_state = 196}, + [6073] = {.lex_state = 206}, + [6074] = {.lex_state = 196}, [6075] = {.lex_state = 242}, - [6076] = {.lex_state = 244}, + [6076] = {.lex_state = 242}, [6077] = {.lex_state = 242}, - [6078] = {.lex_state = 242}, + [6078] = {.lex_state = 246}, [6079] = {.lex_state = 242}, - [6080] = {.lex_state = 242}, - [6081] = {.lex_state = 242}, - [6082] = {.lex_state = 242}, - [6083] = {.lex_state = 242}, - [6084] = {.lex_state = 242}, - [6085] = {.lex_state = 242}, - [6086] = {.lex_state = 239}, - [6087] = {.lex_state = 244}, - [6088] = {.lex_state = 242}, + [6080] = {.lex_state = 238}, + [6081] = {.lex_state = 238}, + [6082] = {.lex_state = 241}, + [6083] = {.lex_state = 241}, + [6084] = {.lex_state = 241}, + [6085] = {.lex_state = 194}, + [6086] = {.lex_state = 196}, + [6087] = {.lex_state = 241}, + [6088] = {.lex_state = 234}, [6089] = {.lex_state = 242}, [6090] = {.lex_state = 239}, [6091] = {.lex_state = 239}, - [6092] = {.lex_state = 244}, - [6093] = {.lex_state = 188}, - [6094] = {.lex_state = 197}, - [6095] = {.lex_state = 197}, - [6096] = {.lex_state = 197}, - [6097] = {.lex_state = 197}, - [6098] = {.lex_state = 242}, - [6099] = {.lex_state = 241}, - [6100] = {.lex_state = 197}, - [6101] = {.lex_state = 197}, - [6102] = {.lex_state = 197}, - [6103] = {.lex_state = 197}, - [6104] = {.lex_state = 241}, - [6105] = {.lex_state = 196}, - [6106] = {.lex_state = 242}, - [6107] = {.lex_state = 242}, - [6108] = {.lex_state = 241}, - [6109] = {.lex_state = 188}, - [6110] = {.lex_state = 197}, - [6111] = {.lex_state = 188}, - [6112] = {.lex_state = 241}, - [6113] = {.lex_state = 217}, - [6114] = {.lex_state = 217}, - [6115] = {.lex_state = 217}, - [6116] = {.lex_state = 217}, - [6117] = {.lex_state = 241}, - [6118] = {.lex_state = 197}, - [6119] = {.lex_state = 197}, - [6120] = {.lex_state = 188}, - [6121] = {.lex_state = 188}, - [6122] = {.lex_state = 217}, - [6123] = {.lex_state = 217}, - [6124] = {.lex_state = 217}, - [6125] = {.lex_state = 217}, - [6126] = {.lex_state = 188}, - [6127] = {.lex_state = 241}, - [6128] = {.lex_state = 188}, - [6129] = {.lex_state = 188}, - [6130] = {.lex_state = 241}, - [6131] = {.lex_state = 188}, - [6132] = {.lex_state = 196}, - [6133] = {.lex_state = 197}, - [6134] = {.lex_state = 188}, + [6092] = {.lex_state = 238}, + [6093] = {.lex_state = 244}, + [6094] = {.lex_state = 239}, + [6095] = {.lex_state = 242}, + [6096] = {.lex_state = 238}, + [6097] = {.lex_state = 244}, + [6098] = {.lex_state = 239}, + [6099] = {.lex_state = 244}, + [6100] = {.lex_state = 242}, + [6101] = {.lex_state = 242}, + [6102] = {.lex_state = 196}, + [6103] = {.lex_state = 242}, + [6104] = {.lex_state = 196}, + [6105] = {.lex_state = 239}, + [6106] = {.lex_state = 196}, + [6107] = {.lex_state = 244}, + [6108] = {.lex_state = 239}, + [6109] = {.lex_state = 244}, + [6110] = {.lex_state = 175}, + [6111] = {.lex_state = 200}, + [6112] = {.lex_state = 244}, + [6113] = {.lex_state = 242}, + [6114] = {.lex_state = 196}, + [6115] = {.lex_state = 200}, + [6116] = {.lex_state = 242}, + [6117] = {.lex_state = 200}, + [6118] = {.lex_state = 239}, + [6119] = {.lex_state = 196}, + [6120] = {.lex_state = 238}, + [6121] = {.lex_state = 196}, + [6122] = {.lex_state = 242}, + [6123] = {.lex_state = 200}, + [6124] = {.lex_state = 242}, + [6125] = {.lex_state = 244}, + [6126] = {.lex_state = 200}, + [6127] = {.lex_state = 242}, + [6128] = {.lex_state = 196}, + [6129] = {.lex_state = 239}, + [6130] = {.lex_state = 242}, + [6131] = {.lex_state = 242}, + [6132] = {.lex_state = 244}, + [6133] = {.lex_state = 244}, + [6134] = {.lex_state = 242}, [6135] = {.lex_state = 242}, - [6136] = {.lex_state = 188}, - [6137] = {.lex_state = 242}, - [6138] = {.lex_state = 188}, - [6139] = {.lex_state = 197}, - [6140] = {.lex_state = 204}, - [6141] = {.lex_state = 242}, - [6142] = {.lex_state = 238}, - [6143] = {.lex_state = 196}, - [6144] = {.lex_state = 181}, - [6145] = {.lex_state = 188}, - [6146] = {.lex_state = 242}, - [6147] = {.lex_state = 238}, - [6148] = {.lex_state = 196}, - [6149] = {.lex_state = 238}, - [6150] = {.lex_state = 197}, - [6151] = {.lex_state = 188}, - [6152] = {.lex_state = 242}, - [6153] = {.lex_state = 241}, - [6154] = {.lex_state = 188}, - [6155] = {.lex_state = 242}, - [6156] = {.lex_state = 196}, + [6136] = {.lex_state = 242}, + [6137] = {.lex_state = 244}, + [6138] = {.lex_state = 242}, + [6139] = {.lex_state = 242}, + [6140] = {.lex_state = 242}, + [6141] = {.lex_state = 244}, + [6142] = {.lex_state = 242}, + [6143] = {.lex_state = 242}, + [6144] = {.lex_state = 242}, + [6145] = {.lex_state = 242}, + [6146] = {.lex_state = 239}, + [6147] = {.lex_state = 242}, + [6148] = {.lex_state = 242}, + [6149] = {.lex_state = 244}, + [6150] = {.lex_state = 242}, + [6151] = {.lex_state = 242}, + [6152] = {.lex_state = 200}, + [6153] = {.lex_state = 244}, + [6154] = {.lex_state = 242}, + [6155] = {.lex_state = 200}, + [6156] = {.lex_state = 242}, [6157] = {.lex_state = 196}, - [6158] = {.lex_state = 188}, - [6159] = {.lex_state = 188}, - [6160] = {.lex_state = 188}, - [6161] = {.lex_state = 188}, - [6162] = {.lex_state = 196}, - [6163] = {.lex_state = 197}, - [6164] = {.lex_state = 188}, - [6165] = {.lex_state = 188}, - [6166] = {.lex_state = 196}, - [6167] = {.lex_state = 238}, - [6168] = {.lex_state = 238}, - [6169] = {.lex_state = 197}, - [6170] = {.lex_state = 188}, + [6158] = {.lex_state = 242}, + [6159] = {.lex_state = 239}, + [6160] = {.lex_state = 244}, + [6161] = {.lex_state = 242}, + [6162] = {.lex_state = 239}, + [6163] = {.lex_state = 238}, + [6164] = {.lex_state = 242}, + [6165] = {.lex_state = 196}, + [6166] = {.lex_state = 239}, + [6167] = {.lex_state = 244}, + [6168] = {.lex_state = 239}, + [6169] = {.lex_state = 242}, + [6170] = {.lex_state = 242}, [6171] = {.lex_state = 242}, - [6172] = {.lex_state = 196}, - [6173] = {.lex_state = 238}, - [6174] = {.lex_state = 242}, - [6175] = {.lex_state = 217}, - [6176] = {.lex_state = 238}, - [6177] = {.lex_state = 217}, - [6178] = {.lex_state = 217}, - [6179] = {.lex_state = 196}, + [6172] = {.lex_state = 200}, + [6173] = {.lex_state = 239}, + [6174] = {.lex_state = 244}, + [6175] = {.lex_state = 239}, + [6176] = {.lex_state = 200}, + [6177] = {.lex_state = 244}, + [6178] = {.lex_state = 242}, + [6179] = {.lex_state = 238}, [6180] = {.lex_state = 196}, - [6181] = {.lex_state = 196}, - [6182] = {.lex_state = 205}, - [6183] = {.lex_state = 196}, - [6184] = {.lex_state = 242}, - [6185] = {.lex_state = 196}, - [6186] = {.lex_state = 196}, - [6187] = {.lex_state = 217}, - [6188] = {.lex_state = 217}, - [6189] = {.lex_state = 217}, - [6190] = {.lex_state = 217}, - [6191] = {.lex_state = 217}, - [6192] = {.lex_state = 196}, - [6193] = {.lex_state = 196}, - [6194] = {.lex_state = 196}, - [6195] = {.lex_state = 196}, - [6196] = {.lex_state = 217}, - [6197] = {.lex_state = 196}, - [6198] = {.lex_state = 196}, - [6199] = {.lex_state = 238}, - [6200] = {.lex_state = 238}, - [6201] = {.lex_state = 238}, - [6202] = {.lex_state = 238}, - [6203] = {.lex_state = 238}, - [6204] = {.lex_state = 238}, + [6181] = {.lex_state = 242}, + [6182] = {.lex_state = 200}, + [6183] = {.lex_state = 242}, + [6184] = {.lex_state = 239}, + [6185] = {.lex_state = 238}, + [6186] = {.lex_state = 244}, + [6187] = {.lex_state = 239}, + [6188] = {.lex_state = 238}, + [6189] = {.lex_state = 244}, + [6190] = {.lex_state = 244}, + [6191] = {.lex_state = 242}, + [6192] = {.lex_state = 200}, + [6193] = {.lex_state = 239}, + [6194] = {.lex_state = 238}, + [6195] = {.lex_state = 200}, + [6196] = {.lex_state = 242}, + [6197] = {.lex_state = 242}, + [6198] = {.lex_state = 239}, + [6199] = {.lex_state = 242}, + [6200] = {.lex_state = 242}, + [6201] = {.lex_state = 242}, + [6202] = {.lex_state = 244}, + [6203] = {.lex_state = 242}, + [6204] = {.lex_state = 242}, [6205] = {.lex_state = 238}, - [6206] = {.lex_state = 238}, - [6207] = {.lex_state = 217}, - [6208] = {.lex_state = 238}, - [6209] = {.lex_state = 217}, - [6210] = {.lex_state = 196}, - [6211] = {.lex_state = 217}, - [6212] = {.lex_state = 217}, - [6213] = {.lex_state = 217}, - [6214] = {.lex_state = 242}, - [6215] = {.lex_state = 196}, - [6216] = {.lex_state = 242}, - [6217] = {.lex_state = 242}, - [6218] = {.lex_state = 242}, + [6206] = {.lex_state = 242}, + [6207] = {.lex_state = 197}, + [6208] = {.lex_state = 197}, + [6209] = {.lex_state = 188}, + [6210] = {.lex_state = 242}, + [6211] = {.lex_state = 188}, + [6212] = {.lex_state = 188}, + [6213] = {.lex_state = 238}, + [6214] = {.lex_state = 197}, + [6215] = {.lex_state = 238}, + [6216] = {.lex_state = 238}, + [6217] = {.lex_state = 241}, + [6218] = {.lex_state = 196}, [6219] = {.lex_state = 196}, - [6220] = {.lex_state = 238}, - [6221] = {.lex_state = 196}, - [6222] = {.lex_state = 242}, - [6223] = {.lex_state = 238}, - [6224] = {.lex_state = 242}, - [6225] = {.lex_state = 242}, + [6220] = {.lex_state = 197}, + [6221] = {.lex_state = 197}, + [6222] = {.lex_state = 197}, + [6223] = {.lex_state = 197}, + [6224] = {.lex_state = 197}, + [6225] = {.lex_state = 197}, [6226] = {.lex_state = 196}, - [6227] = {.lex_state = 242}, - [6228] = {.lex_state = 196}, - [6229] = {.lex_state = 217}, - [6230] = {.lex_state = 217}, - [6231] = {.lex_state = 242}, - [6232] = {.lex_state = 242}, - [6233] = {.lex_state = 196}, - [6234] = {.lex_state = 196}, - [6235] = {.lex_state = 217}, - [6236] = {.lex_state = 238}, + [6227] = {.lex_state = 204}, + [6228] = {.lex_state = 242}, + [6229] = {.lex_state = 242}, + [6230] = {.lex_state = 197}, + [6231] = {.lex_state = 197}, + [6232] = {.lex_state = 197}, + [6233] = {.lex_state = 197}, + [6234] = {.lex_state = 197}, + [6235] = {.lex_state = 196}, + [6236] = {.lex_state = 196}, [6237] = {.lex_state = 196}, [6238] = {.lex_state = 196}, - [6239] = {.lex_state = 217}, + [6239] = {.lex_state = 196}, [6240] = {.lex_state = 196}, [6241] = {.lex_state = 196}, - [6242] = {.lex_state = 242}, + [6242] = {.lex_state = 196}, [6243] = {.lex_state = 196}, - [6244] = {.lex_state = 234}, - [6245] = {.lex_state = 196}, - [6246] = {.lex_state = 196}, - [6247] = {.lex_state = 242}, + [6244] = {.lex_state = 242}, + [6245] = {.lex_state = 197}, + [6246] = {.lex_state = 188}, + [6247] = {.lex_state = 188}, [6248] = {.lex_state = 196}, - [6249] = {.lex_state = 196}, - [6250] = {.lex_state = 234}, - [6251] = {.lex_state = 196}, - [6252] = {.lex_state = 196}, + [6249] = {.lex_state = 242}, + [6250] = {.lex_state = 241}, + [6251] = {.lex_state = 217}, + [6252] = {.lex_state = 217}, [6253] = {.lex_state = 217}, - [6254] = {.lex_state = 196}, - [6255] = {.lex_state = 196}, - [6256] = {.lex_state = 196}, - [6257] = {.lex_state = 242}, - [6258] = {.lex_state = 238}, - [6259] = {.lex_state = 234}, - [6260] = {.lex_state = 196}, - [6261] = {.lex_state = 196}, - [6262] = {.lex_state = 238}, - [6263] = {.lex_state = 196}, - [6264] = {.lex_state = 196}, - [6265] = {.lex_state = 196}, - [6266] = {.lex_state = 238}, - [6267] = {.lex_state = 196}, - [6268] = {.lex_state = 217}, - [6269] = {.lex_state = 234}, - [6270] = {.lex_state = 196}, - [6271] = {.lex_state = 242}, - [6272] = {.lex_state = 196}, - [6273] = {.lex_state = 238}, - [6274] = {.lex_state = 242}, - [6275] = {.lex_state = 242}, - [6276] = {.lex_state = 242}, - [6277] = {.lex_state = 196}, - [6278] = {.lex_state = 242}, - [6279] = {.lex_state = 194}, - [6280] = {.lex_state = 194}, + [6254] = {.lex_state = 217}, + [6255] = {.lex_state = 242}, + [6256] = {.lex_state = 217}, + [6257] = {.lex_state = 217}, + [6258] = {.lex_state = 217}, + [6259] = {.lex_state = 217}, + [6260] = {.lex_state = 188}, + [6261] = {.lex_state = 242}, + [6262] = {.lex_state = 188}, + [6263] = {.lex_state = 181}, + [6264] = {.lex_state = 241}, + [6265] = {.lex_state = 188}, + [6266] = {.lex_state = 188}, + [6267] = {.lex_state = 188}, + [6268] = {.lex_state = 188}, + [6269] = {.lex_state = 241}, + [6270] = {.lex_state = 241}, + [6271] = {.lex_state = 188}, + [6272] = {.lex_state = 241}, + [6273] = {.lex_state = 188}, + [6274] = {.lex_state = 188}, + [6275] = {.lex_state = 188}, + [6276] = {.lex_state = 238}, + [6277] = {.lex_state = 242}, + [6278] = {.lex_state = 196}, + [6279] = {.lex_state = 188}, + [6280] = {.lex_state = 241}, [6281] = {.lex_state = 242}, - [6282] = {.lex_state = 175}, - [6283] = {.lex_state = 242}, - [6284] = {.lex_state = 242}, - [6285] = {.lex_state = 196}, - [6286] = {.lex_state = 241}, - [6287] = {.lex_state = 241}, - [6288] = {.lex_state = 241}, + [6282] = {.lex_state = 188}, + [6283] = {.lex_state = 188}, + [6284] = {.lex_state = 196}, + [6285] = {.lex_state = 188}, + [6286] = {.lex_state = 188}, + [6287] = {.lex_state = 188}, + [6288] = {.lex_state = 188}, [6289] = {.lex_state = 241}, - [6290] = {.lex_state = 241}, - [6291] = {.lex_state = 241}, - [6292] = {.lex_state = 241}, - [6293] = {.lex_state = 241}, - [6294] = {.lex_state = 238}, - [6295] = {.lex_state = 194}, - [6296] = {.lex_state = 242}, - [6297] = {.lex_state = 194}, - [6298] = {.lex_state = 242}, - [6299] = {.lex_state = 242}, - [6300] = {.lex_state = 242}, - [6301] = {.lex_state = 238}, - [6302] = {.lex_state = 196}, - [6303] = {.lex_state = 175}, - [6304] = {.lex_state = 242}, - [6305] = {.lex_state = 242}, - [6306] = {.lex_state = 242}, - [6307] = {.lex_state = 196}, - [6308] = {.lex_state = 242}, - [6309] = {.lex_state = 194}, - [6310] = {.lex_state = 242}, - [6311] = {.lex_state = 175}, - [6312] = {.lex_state = 194}, - [6313] = {.lex_state = 238}, - [6314] = {.lex_state = 198}, - [6315] = {.lex_state = 198}, - [6316] = {.lex_state = 198}, - [6317] = {.lex_state = 198}, + [6290] = {.lex_state = 196}, + [6291] = {.lex_state = 197}, + [6292] = {.lex_state = 238}, + [6293] = {.lex_state = 242}, + [6294] = {.lex_state = 217}, + [6295] = {.lex_state = 217}, + [6296] = {.lex_state = 217}, + [6297] = {.lex_state = 217}, + [6298] = {.lex_state = 217}, + [6299] = {.lex_state = 217}, + [6300] = {.lex_state = 217}, + [6301] = {.lex_state = 217}, + [6302] = {.lex_state = 217}, + [6303] = {.lex_state = 242}, + [6304] = {.lex_state = 217}, + [6305] = {.lex_state = 217}, + [6306] = {.lex_state = 217}, + [6307] = {.lex_state = 217}, + [6308] = {.lex_state = 217}, + [6309] = {.lex_state = 196}, + [6310] = {.lex_state = 217}, + [6311] = {.lex_state = 217}, + [6312] = {.lex_state = 217}, + [6313] = {.lex_state = 217}, + [6314] = {.lex_state = 196}, + [6315] = {.lex_state = 242}, + [6316] = {.lex_state = 242}, + [6317] = {.lex_state = 196}, [6318] = {.lex_state = 196}, - [6319] = {.lex_state = 238}, - [6320] = {.lex_state = 194}, - [6321] = {.lex_state = 194}, + [6319] = {.lex_state = 242}, + [6320] = {.lex_state = 196}, + [6321] = {.lex_state = 196}, [6322] = {.lex_state = 196}, - [6323] = {.lex_state = 194}, - [6324] = {.lex_state = 194}, - [6325] = {.lex_state = 194}, + [6323] = {.lex_state = 196}, + [6324] = {.lex_state = 196}, + [6325] = {.lex_state = 196}, [6326] = {.lex_state = 242}, - [6327] = {.lex_state = 196}, - [6328] = {.lex_state = 194}, - [6329] = {.lex_state = 194}, - [6330] = {.lex_state = 198}, - [6331] = {.lex_state = 242}, - [6332] = {.lex_state = 194}, - [6333] = {.lex_state = 198}, - [6334] = {.lex_state = 198}, - [6335] = {.lex_state = 198}, - [6336] = {.lex_state = 194}, - [6337] = {.lex_state = 194}, - [6338] = {.lex_state = 194}, + [6327] = {.lex_state = 242}, + [6328] = {.lex_state = 242}, + [6329] = {.lex_state = 242}, + [6330] = {.lex_state = 196}, + [6331] = {.lex_state = 238}, + [6332] = {.lex_state = 238}, + [6333] = {.lex_state = 238}, + [6334] = {.lex_state = 238}, + [6335] = {.lex_state = 238}, + [6336] = {.lex_state = 238}, + [6337] = {.lex_state = 238}, + [6338] = {.lex_state = 196}, [6339] = {.lex_state = 196}, - [6340] = {.lex_state = 242}, - [6341] = {.lex_state = 242}, + [6340] = {.lex_state = 196}, + [6341] = {.lex_state = 196}, [6342] = {.lex_state = 242}, - [6343] = {.lex_state = 194}, - [6344] = {.lex_state = 242}, - [6345] = {.lex_state = 242}, - [6346] = {.lex_state = 194}, - [6347] = {.lex_state = 242}, - [6348] = {.lex_state = 194}, + [6343] = {.lex_state = 234}, + [6344] = {.lex_state = 238}, + [6345] = {.lex_state = 238}, + [6346] = {.lex_state = 238}, + [6347] = {.lex_state = 238}, + [6348] = {.lex_state = 238}, [6349] = {.lex_state = 238}, - [6350] = {.lex_state = 196}, - [6351] = {.lex_state = 200}, - [6352] = {.lex_state = 196}, - [6353] = {.lex_state = 196}, - [6354] = {.lex_state = 196}, - [6355] = {.lex_state = 196}, - [6356] = {.lex_state = 204}, + [6350] = {.lex_state = 238}, + [6351] = {.lex_state = 238}, + [6352] = {.lex_state = 242}, + [6353] = {.lex_state = 234}, + [6354] = {.lex_state = 242}, + [6355] = {.lex_state = 242}, + [6356] = {.lex_state = 196}, [6357] = {.lex_state = 242}, - [6358] = {.lex_state = 200}, - [6359] = {.lex_state = 196}, - [6360] = {.lex_state = 200}, - [6361] = {.lex_state = 200}, - [6362] = {.lex_state = 197}, - [6363] = {.lex_state = 200}, + [6358] = {.lex_state = 242}, + [6359] = {.lex_state = 242}, + [6360] = {.lex_state = 217}, + [6361] = {.lex_state = 196}, + [6362] = {.lex_state = 196}, + [6363] = {.lex_state = 196}, [6364] = {.lex_state = 196}, [6365] = {.lex_state = 242}, [6366] = {.lex_state = 196}, [6367] = {.lex_state = 196}, - [6368] = {.lex_state = 196}, - [6369] = {.lex_state = 242}, - [6370] = {.lex_state = 200}, + [6368] = {.lex_state = 238}, + [6369] = {.lex_state = 234}, + [6370] = {.lex_state = 196}, [6371] = {.lex_state = 196}, - [6372] = {.lex_state = 200}, - [6373] = {.lex_state = 200}, - [6374] = {.lex_state = 196}, + [6372] = {.lex_state = 196}, + [6373] = {.lex_state = 238}, + [6374] = {.lex_state = 234}, [6375] = {.lex_state = 196}, [6376] = {.lex_state = 196}, - [6377] = {.lex_state = 197}, - [6378] = {.lex_state = 242}, + [6377] = {.lex_state = 196}, + [6378] = {.lex_state = 196}, [6379] = {.lex_state = 196}, - [6380] = {.lex_state = 242}, - [6381] = {.lex_state = 242}, + [6380] = {.lex_state = 196}, + [6381] = {.lex_state = 205}, [6382] = {.lex_state = 196}, [6383] = {.lex_state = 196}, - [6384] = {.lex_state = 197}, - [6385] = {.lex_state = 196}, + [6384] = {.lex_state = 196}, + [6385] = {.lex_state = 217}, [6386] = {.lex_state = 196}, - [6387] = {.lex_state = 196}, - [6388] = {.lex_state = 197}, - [6389] = {.lex_state = 196}, - [6390] = {.lex_state = 196}, - [6391] = {.lex_state = 196}, - [6392] = {.lex_state = 196}, - [6393] = {.lex_state = 196}, - [6394] = {.lex_state = 0}, - [6395] = {.lex_state = 196}, + [6387] = {.lex_state = 242}, + [6388] = {.lex_state = 196}, + [6389] = {.lex_state = 242}, + [6390] = {.lex_state = 242}, + [6391] = {.lex_state = 238}, + [6392] = {.lex_state = 242}, + [6393] = {.lex_state = 194}, + [6394] = {.lex_state = 242}, + [6395] = {.lex_state = 242}, [6396] = {.lex_state = 196}, - [6397] = {.lex_state = 196}, - [6398] = {.lex_state = 242}, - [6399] = {.lex_state = 242}, - [6400] = {.lex_state = 196}, - [6401] = {.lex_state = 242}, - [6402] = {.lex_state = 196}, - [6403] = {.lex_state = 242}, - [6404] = {.lex_state = 196}, - [6405] = {.lex_state = 197}, + [6397] = {.lex_state = 198}, + [6398] = {.lex_state = 198}, + [6399] = {.lex_state = 198}, + [6400] = {.lex_state = 198}, + [6401] = {.lex_state = 238}, + [6402] = {.lex_state = 175}, + [6403] = {.lex_state = 194}, + [6404] = {.lex_state = 242}, + [6405] = {.lex_state = 175}, [6406] = {.lex_state = 196}, - [6407] = {.lex_state = 241}, - [6408] = {.lex_state = 229}, - [6409] = {.lex_state = 197}, - [6410] = {.lex_state = 196}, - [6411] = {.lex_state = 196}, - [6412] = {.lex_state = 196}, - [6413] = {.lex_state = 217}, - [6414] = {.lex_state = 196}, - [6415] = {.lex_state = 196}, - [6416] = {.lex_state = 196}, - [6417] = {.lex_state = 217}, - [6418] = {.lex_state = 217}, - [6419] = {.lex_state = 196}, + [6407] = {.lex_state = 196}, + [6408] = {.lex_state = 238}, + [6409] = {.lex_state = 242}, + [6410] = {.lex_state = 238}, + [6411] = {.lex_state = 241}, + [6412] = {.lex_state = 241}, + [6413] = {.lex_state = 241}, + [6414] = {.lex_state = 175}, + [6415] = {.lex_state = 241}, + [6416] = {.lex_state = 241}, + [6417] = {.lex_state = 241}, + [6418] = {.lex_state = 242}, + [6419] = {.lex_state = 241}, [6420] = {.lex_state = 241}, - [6421] = {.lex_state = 217}, - [6422] = {.lex_state = 196}, - [6423] = {.lex_state = 196}, - [6424] = {.lex_state = 196}, - [6425] = {.lex_state = 196}, - [6426] = {.lex_state = 241}, - [6427] = {.lex_state = 196}, - [6428] = {.lex_state = 196}, - [6429] = {.lex_state = 196}, - [6430] = {.lex_state = 196}, - [6431] = {.lex_state = 196}, - [6432] = {.lex_state = 196}, - [6433] = {.lex_state = 242}, + [6421] = {.lex_state = 194}, + [6422] = {.lex_state = 194}, + [6423] = {.lex_state = 194}, + [6424] = {.lex_state = 194}, + [6425] = {.lex_state = 194}, + [6426] = {.lex_state = 194}, + [6427] = {.lex_state = 238}, + [6428] = {.lex_state = 198}, + [6429] = {.lex_state = 194}, + [6430] = {.lex_state = 242}, + [6431] = {.lex_state = 198}, + [6432] = {.lex_state = 198}, + [6433] = {.lex_state = 198}, [6434] = {.lex_state = 242}, - [6435] = {.lex_state = 194}, - [6436] = {.lex_state = 241}, - [6437] = {.lex_state = 196}, - [6438] = {.lex_state = 242}, - [6439] = {.lex_state = 196}, - [6440] = {.lex_state = 196}, - [6441] = {.lex_state = 241}, - [6442] = {.lex_state = 196}, - [6443] = {.lex_state = 238}, - [6444] = {.lex_state = 196}, - [6445] = {.lex_state = 196}, - [6446] = {.lex_state = 242}, + [6435] = {.lex_state = 242}, + [6436] = {.lex_state = 196}, + [6437] = {.lex_state = 238}, + [6438] = {.lex_state = 238}, + [6439] = {.lex_state = 194}, + [6440] = {.lex_state = 194}, + [6441] = {.lex_state = 242}, + [6442] = {.lex_state = 194}, + [6443] = {.lex_state = 194}, + [6444] = {.lex_state = 242}, + [6445] = {.lex_state = 242}, + [6446] = {.lex_state = 196}, [6447] = {.lex_state = 196}, - [6448] = {.lex_state = 196}, - [6449] = {.lex_state = 198}, - [6450] = {.lex_state = 197}, - [6451] = {.lex_state = 196}, - [6452] = {.lex_state = 241}, - [6453] = {.lex_state = 235}, - [6454] = {.lex_state = 196}, - [6455] = {.lex_state = 198}, - [6456] = {.lex_state = 196}, - [6457] = {.lex_state = 198}, - [6458] = {.lex_state = 198}, - [6459] = {.lex_state = 196}, - [6460] = {.lex_state = 198}, - [6461] = {.lex_state = 196}, + [6448] = {.lex_state = 194}, + [6449] = {.lex_state = 242}, + [6450] = {.lex_state = 242}, + [6451] = {.lex_state = 238}, + [6452] = {.lex_state = 194}, + [6453] = {.lex_state = 242}, + [6454] = {.lex_state = 242}, + [6455] = {.lex_state = 242}, + [6456] = {.lex_state = 194}, + [6457] = {.lex_state = 242}, + [6458] = {.lex_state = 242}, + [6459] = {.lex_state = 242}, + [6460] = {.lex_state = 194}, + [6461] = {.lex_state = 194}, [6462] = {.lex_state = 196}, [6463] = {.lex_state = 196}, - [6464] = {.lex_state = 217}, - [6465] = {.lex_state = 197}, - [6466] = {.lex_state = 197}, - [6467] = {.lex_state = 197}, - [6468] = {.lex_state = 197}, - [6469] = {.lex_state = 198}, - [6470] = {.lex_state = 217}, - [6471] = {.lex_state = 198}, - [6472] = {.lex_state = 242}, - [6473] = {.lex_state = 235}, + [6464] = {.lex_state = 194}, + [6465] = {.lex_state = 238}, + [6466] = {.lex_state = 196}, + [6467] = {.lex_state = 194}, + [6468] = {.lex_state = 242}, + [6469] = {.lex_state = 196}, + [6470] = {.lex_state = 196}, + [6471] = {.lex_state = 242}, + [6472] = {.lex_state = 196}, + [6473] = {.lex_state = 196}, [6474] = {.lex_state = 196}, - [6475] = {.lex_state = 196}, - [6476] = {.lex_state = 198}, - [6477] = {.lex_state = 198}, - [6478] = {.lex_state = 196}, - [6479] = {.lex_state = 198}, - [6480] = {.lex_state = 196}, - [6481] = {.lex_state = 196}, + [6475] = {.lex_state = 242}, + [6476] = {.lex_state = 242}, + [6477] = {.lex_state = 196}, + [6478] = {.lex_state = 197}, + [6479] = {.lex_state = 196}, + [6480] = {.lex_state = 238}, + [6481] = {.lex_state = 242}, [6482] = {.lex_state = 196}, [6483] = {.lex_state = 196}, - [6484] = {.lex_state = 198}, - [6485] = {.lex_state = 196}, - [6486] = {.lex_state = 217}, - [6487] = {.lex_state = 198}, + [6484] = {.lex_state = 197}, + [6485] = {.lex_state = 204}, + [6486] = {.lex_state = 196}, + [6487] = {.lex_state = 200}, [6488] = {.lex_state = 196}, - [6489] = {.lex_state = 196}, - [6490] = {.lex_state = 242}, - [6491] = {.lex_state = 238}, - [6492] = {.lex_state = 242}, + [6489] = {.lex_state = 0}, + [6490] = {.lex_state = 200}, + [6491] = {.lex_state = 200}, + [6492] = {.lex_state = 196}, [6493] = {.lex_state = 196}, - [6494] = {.lex_state = 196}, + [6494] = {.lex_state = 200}, [6495] = {.lex_state = 196}, - [6496] = {.lex_state = 196}, - [6497] = {.lex_state = 197}, - [6498] = {.lex_state = 238}, - [6499] = {.lex_state = 196}, - [6500] = {.lex_state = 238}, + [6496] = {.lex_state = 242}, + [6497] = {.lex_state = 196}, + [6498] = {.lex_state = 196}, + [6499] = {.lex_state = 200}, + [6500] = {.lex_state = 200}, [6501] = {.lex_state = 196}, - [6502] = {.lex_state = 196}, - [6503] = {.lex_state = 197}, - [6504] = {.lex_state = 196}, - [6505] = {.lex_state = 197}, - [6506] = {.lex_state = 238}, - [6507] = {.lex_state = 197}, - [6508] = {.lex_state = 197}, - [6509] = {.lex_state = 196}, - [6510] = {.lex_state = 241}, - [6511] = {.lex_state = 196}, - [6512] = {.lex_state = 229}, + [6502] = {.lex_state = 197}, + [6503] = {.lex_state = 196}, + [6504] = {.lex_state = 242}, + [6505] = {.lex_state = 200}, + [6506] = {.lex_state = 196}, + [6507] = {.lex_state = 242}, + [6508] = {.lex_state = 242}, + [6509] = {.lex_state = 200}, + [6510] = {.lex_state = 196}, + [6511] = {.lex_state = 242}, + [6512] = {.lex_state = 196}, [6513] = {.lex_state = 196}, - [6514] = {.lex_state = 196}, - [6515] = {.lex_state = 196}, - [6516] = {.lex_state = 197}, - [6517] = {.lex_state = 197}, + [6514] = {.lex_state = 197}, + [6515] = {.lex_state = 242}, + [6516] = {.lex_state = 196}, + [6517] = {.lex_state = 196}, [6518] = {.lex_state = 196}, - [6519] = {.lex_state = 241}, + [6519] = {.lex_state = 196}, [6520] = {.lex_state = 196}, - [6521] = {.lex_state = 197}, - [6522] = {.lex_state = 217}, + [6521] = {.lex_state = 196}, + [6522] = {.lex_state = 196}, [6523] = {.lex_state = 196}, - [6524] = {.lex_state = 197}, - [6525] = {.lex_state = 194}, - [6526] = {.lex_state = 197}, - [6527] = {.lex_state = 196}, - [6528] = {.lex_state = 238}, - [6529] = {.lex_state = 238}, - [6530] = {.lex_state = 238}, - [6531] = {.lex_state = 238}, - [6532] = {.lex_state = 238}, - [6533] = {.lex_state = 238}, - [6534] = {.lex_state = 238}, - [6535] = {.lex_state = 238}, + [6524] = {.lex_state = 196}, + [6525] = {.lex_state = 196}, + [6526] = {.lex_state = 196}, + [6527] = {.lex_state = 197}, + [6528] = {.lex_state = 196}, + [6529] = {.lex_state = 196}, + [6530] = {.lex_state = 241}, + [6531] = {.lex_state = 196}, + [6532] = {.lex_state = 196}, + [6533] = {.lex_state = 196}, + [6534] = {.lex_state = 196}, + [6535] = {.lex_state = 196}, [6536] = {.lex_state = 197}, - [6537] = {.lex_state = 241}, - [6538] = {.lex_state = 241}, - [6539] = {.lex_state = 241}, - [6540] = {.lex_state = 217}, - [6541] = {.lex_state = 217}, - [6542] = {.lex_state = 217}, - [6543] = {.lex_state = 217}, - [6544] = {.lex_state = 194}, - [6545] = {.lex_state = 217}, - [6546] = {.lex_state = 217}, - [6547] = {.lex_state = 217}, - [6548] = {.lex_state = 217}, + [6537] = {.lex_state = 196}, + [6538] = {.lex_state = 196}, + [6539] = {.lex_state = 197}, + [6540] = {.lex_state = 198}, + [6541] = {.lex_state = 241}, + [6542] = {.lex_state = 241}, + [6543] = {.lex_state = 196}, + [6544] = {.lex_state = 196}, + [6545] = {.lex_state = 196}, + [6546] = {.lex_state = 197}, + [6547] = {.lex_state = 241}, + [6548] = {.lex_state = 196}, [6549] = {.lex_state = 196}, - [6550] = {.lex_state = 194}, + [6550] = {.lex_state = 197}, [6551] = {.lex_state = 196}, - [6552] = {.lex_state = 339}, - [6553] = {.lex_state = 194}, - [6554] = {.lex_state = 196}, - [6555] = {.lex_state = 194}, - [6556] = {.lex_state = 194}, + [6552] = {.lex_state = 196}, + [6553] = {.lex_state = 196}, + [6554] = {.lex_state = 197}, + [6555] = {.lex_state = 196}, + [6556] = {.lex_state = 238}, [6557] = {.lex_state = 196}, - [6558] = {.lex_state = 181}, - [6559] = {.lex_state = 194}, + [6558] = {.lex_state = 196}, + [6559] = {.lex_state = 196}, [6560] = {.lex_state = 196}, - [6561] = {.lex_state = 194}, - [6562] = {.lex_state = 197}, - [6563] = {.lex_state = 181}, - [6564] = {.lex_state = 194}, - [6565] = {.lex_state = 197}, - [6566] = {.lex_state = 194}, - [6567] = {.lex_state = 197}, - [6568] = {.lex_state = 197}, - [6569] = {.lex_state = 217}, - [6570] = {.lex_state = 194}, - [6571] = {.lex_state = 194}, - [6572] = {.lex_state = 196}, - [6573] = {.lex_state = 241}, - [6574] = {.lex_state = 194}, + [6561] = {.lex_state = 196}, + [6562] = {.lex_state = 217}, + [6563] = {.lex_state = 196}, + [6564] = {.lex_state = 196}, + [6565] = {.lex_state = 238}, + [6566] = {.lex_state = 196}, + [6567] = {.lex_state = 217}, + [6568] = {.lex_state = 217}, + [6569] = {.lex_state = 194}, + [6570] = {.lex_state = 196}, + [6571] = {.lex_state = 196}, + [6572] = {.lex_state = 217}, + [6573] = {.lex_state = 198}, + [6574] = {.lex_state = 196}, [6575] = {.lex_state = 198}, - [6576] = {.lex_state = 339}, - [6577] = {.lex_state = 235}, + [6576] = {.lex_state = 196}, + [6577] = {.lex_state = 196}, [6578] = {.lex_state = 196}, [6579] = {.lex_state = 196}, - [6580] = {.lex_state = 196}, + [6580] = {.lex_state = 198}, [6581] = {.lex_state = 196}, - [6582] = {.lex_state = 196}, - [6583] = {.lex_state = 196}, - [6584] = {.lex_state = 196}, - [6585] = {.lex_state = 196}, - [6586] = {.lex_state = 196}, - [6587] = {.lex_state = 196}, - [6588] = {.lex_state = 235}, - [6589] = {.lex_state = 196}, - [6590] = {.lex_state = 196}, - [6591] = {.lex_state = 196}, + [6582] = {.lex_state = 197}, + [6583] = {.lex_state = 241}, + [6584] = {.lex_state = 241}, + [6585] = {.lex_state = 197}, + [6586] = {.lex_state = 197}, + [6587] = {.lex_state = 238}, + [6588] = {.lex_state = 241}, + [6589] = {.lex_state = 197}, + [6590] = {.lex_state = 241}, + [6591] = {.lex_state = 242}, [6592] = {.lex_state = 196}, - [6593] = {.lex_state = 196}, + [6593] = {.lex_state = 198}, [6594] = {.lex_state = 196}, - [6595] = {.lex_state = 196}, - [6596] = {.lex_state = 196}, - [6597] = {.lex_state = 196}, - [6598] = {.lex_state = 196}, - [6599] = {.lex_state = 196}, - [6600] = {.lex_state = 196}, - [6601] = {.lex_state = 196}, - [6602] = {.lex_state = 196}, - [6603] = {.lex_state = 235}, - [6604] = {.lex_state = 196}, - [6605] = {.lex_state = 196}, - [6606] = {.lex_state = 196}, - [6607] = {.lex_state = 339}, - [6608] = {.lex_state = 339}, - [6609] = {.lex_state = 339}, - [6610] = {.lex_state = 196}, - [6611] = {.lex_state = 339}, - [6612] = {.lex_state = 196}, - [6613] = {.lex_state = 196}, - [6614] = {.lex_state = 339}, - [6615] = {.lex_state = 196}, - [6616] = {.lex_state = 198}, - [6617] = {.lex_state = 196}, + [6595] = {.lex_state = 229}, + [6596] = {.lex_state = 198}, + [6597] = {.lex_state = 217}, + [6598] = {.lex_state = 198}, + [6599] = {.lex_state = 217}, + [6600] = {.lex_state = 198}, + [6601] = {.lex_state = 217}, + [6602] = {.lex_state = 198}, + [6603] = {.lex_state = 198}, + [6604] = {.lex_state = 217}, + [6605] = {.lex_state = 229}, + [6606] = {.lex_state = 198}, + [6607] = {.lex_state = 242}, + [6608] = {.lex_state = 242}, + [6609] = {.lex_state = 242}, + [6610] = {.lex_state = 197}, + [6611] = {.lex_state = 197}, + [6612] = {.lex_state = 197}, + [6613] = {.lex_state = 197}, + [6614] = {.lex_state = 238}, + [6615] = {.lex_state = 242}, + [6616] = {.lex_state = 242}, + [6617] = {.lex_state = 242}, [6618] = {.lex_state = 196}, - [6619] = {.lex_state = 198}, - [6620] = {.lex_state = 196}, - [6621] = {.lex_state = 198}, - [6622] = {.lex_state = 198}, - [6623] = {.lex_state = 198}, - [6624] = {.lex_state = 198}, - [6625] = {.lex_state = 198}, - [6626] = {.lex_state = 196}, + [6619] = {.lex_state = 196}, + [6620] = {.lex_state = 198}, + [6621] = {.lex_state = 235}, + [6622] = {.lex_state = 196}, + [6623] = {.lex_state = 196}, + [6624] = {.lex_state = 238}, + [6625] = {.lex_state = 235}, + [6626] = {.lex_state = 197}, [6627] = {.lex_state = 196}, - [6628] = {.lex_state = 196}, + [6628] = {.lex_state = 197}, [6629] = {.lex_state = 196}, [6630] = {.lex_state = 196}, [6631] = {.lex_state = 196}, [6632] = {.lex_state = 196}, [6633] = {.lex_state = 196}, [6634] = {.lex_state = 196}, - [6635] = {.lex_state = 235}, - [6636] = {.lex_state = 339}, - [6637] = {.lex_state = 194}, - [6638] = {.lex_state = 200}, - [6639] = {.lex_state = 339}, - [6640] = {.lex_state = 200}, - [6641] = {.lex_state = 198}, - [6642] = {.lex_state = 198}, - [6643] = {.lex_state = 196}, - [6644] = {.lex_state = 339}, - [6645] = {.lex_state = 175}, - [6646] = {.lex_state = 175}, - [6647] = {.lex_state = 194}, - [6648] = {.lex_state = 197}, - [6649] = {.lex_state = 175}, - [6650] = {.lex_state = 200}, - [6651] = {.lex_state = 238}, - [6652] = {.lex_state = 198}, - [6653] = {.lex_state = 238}, - [6654] = {.lex_state = 197}, - [6655] = {.lex_state = 217}, - [6656] = {.lex_state = 200}, - [6657] = {.lex_state = 339}, - [6658] = {.lex_state = 217}, - [6659] = {.lex_state = 238}, - [6660] = {.lex_state = 339}, - [6661] = {.lex_state = 243}, - [6662] = {.lex_state = 198}, - [6663] = {.lex_state = 339}, - [6664] = {.lex_state = 197}, - [6665] = {.lex_state = 196}, - [6666] = {.lex_state = 197}, - [6667] = {.lex_state = 196}, - [6668] = {.lex_state = 196}, - [6669] = {.lex_state = 196}, - [6670] = {.lex_state = 198}, - [6671] = {.lex_state = 339}, - [6672] = {.lex_state = 339}, - [6673] = {.lex_state = 175}, - [6674] = {.lex_state = 175}, - [6675] = {.lex_state = 175}, - [6676] = {.lex_state = 196}, - [6677] = {.lex_state = 339}, - [6678] = {.lex_state = 241}, - [6679] = {.lex_state = 339}, - [6680] = {.lex_state = 175}, - [6681] = {.lex_state = 339}, - [6682] = {.lex_state = 241}, - [6683] = {.lex_state = 339}, - [6684] = {.lex_state = 241}, - [6685] = {.lex_state = 339}, - [6686] = {.lex_state = 339}, - [6687] = {.lex_state = 175}, - [6688] = {.lex_state = 339}, - [6689] = {.lex_state = 198}, - [6690] = {.lex_state = 175}, - [6691] = {.lex_state = 339}, - [6692] = {.lex_state = 339}, - [6693] = {.lex_state = 339}, - [6694] = {.lex_state = 339}, + [6635] = {.lex_state = 196}, + [6636] = {.lex_state = 196}, + [6637] = {.lex_state = 238}, + [6638] = {.lex_state = 238}, + [6639] = {.lex_state = 238}, + [6640] = {.lex_state = 238}, + [6641] = {.lex_state = 196}, + [6642] = {.lex_state = 196}, + [6643] = {.lex_state = 339}, + [6644] = {.lex_state = 194}, + [6645] = {.lex_state = 194}, + [6646] = {.lex_state = 181}, + [6647] = {.lex_state = 197}, + [6648] = {.lex_state = 194}, + [6649] = {.lex_state = 196}, + [6650] = {.lex_state = 194}, + [6651] = {.lex_state = 197}, + [6652] = {.lex_state = 196}, + [6653] = {.lex_state = 197}, + [6654] = {.lex_state = 241}, + [6655] = {.lex_state = 241}, + [6656] = {.lex_state = 194}, + [6657] = {.lex_state = 241}, + [6658] = {.lex_state = 197}, + [6659] = {.lex_state = 194}, + [6660] = {.lex_state = 181}, + [6661] = {.lex_state = 217}, + [6662] = {.lex_state = 196}, + [6663] = {.lex_state = 196}, + [6664] = {.lex_state = 241}, + [6665] = {.lex_state = 194}, + [6666] = {.lex_state = 194}, + [6667] = {.lex_state = 197}, + [6668] = {.lex_state = 194}, + [6669] = {.lex_state = 217}, + [6670] = {.lex_state = 238}, + [6671] = {.lex_state = 217}, + [6672] = {.lex_state = 217}, + [6673] = {.lex_state = 217}, + [6674] = {.lex_state = 197}, + [6675] = {.lex_state = 196}, + [6676] = {.lex_state = 217}, + [6677] = {.lex_state = 217}, + [6678] = {.lex_state = 217}, + [6679] = {.lex_state = 194}, + [6680] = {.lex_state = 217}, + [6681] = {.lex_state = 194}, + [6682] = {.lex_state = 238}, + [6683] = {.lex_state = 194}, + [6684] = {.lex_state = 238}, + [6685] = {.lex_state = 194}, + [6686] = {.lex_state = 238}, + [6687] = {.lex_state = 196}, + [6688] = {.lex_state = 196}, + [6689] = {.lex_state = 196}, + [6690] = {.lex_state = 196}, + [6691] = {.lex_state = 196}, + [6692] = {.lex_state = 196}, + [6693] = {.lex_state = 198}, + [6694] = {.lex_state = 196}, [6695] = {.lex_state = 196}, - [6696] = {.lex_state = 200}, + [6696] = {.lex_state = 339}, [6697] = {.lex_state = 196}, - [6698] = {.lex_state = 241}, - [6699] = {.lex_state = 339}, - [6700] = {.lex_state = 175}, - [6701] = {.lex_state = 241}, - [6702] = {.lex_state = 200}, - [6703] = {.lex_state = 200}, - [6704] = {.lex_state = 200}, + [6698] = {.lex_state = 339}, + [6699] = {.lex_state = 196}, + [6700] = {.lex_state = 198}, + [6701] = {.lex_state = 198}, + [6702] = {.lex_state = 198}, + [6703] = {.lex_state = 198}, + [6704] = {.lex_state = 196}, [6705] = {.lex_state = 196}, [6706] = {.lex_state = 196}, [6707] = {.lex_state = 196}, - [6708] = {.lex_state = 339}, - [6709] = {.lex_state = 339}, - [6710] = {.lex_state = 339}, - [6711] = {.lex_state = 339}, - [6712] = {.lex_state = 217}, - [6713] = {.lex_state = 339}, + [6708] = {.lex_state = 196}, + [6709] = {.lex_state = 235}, + [6710] = {.lex_state = 196}, + [6711] = {.lex_state = 235}, + [6712] = {.lex_state = 198}, + [6713] = {.lex_state = 196}, [6714] = {.lex_state = 196}, - [6715] = {.lex_state = 339}, - [6716] = {.lex_state = 217}, - [6717] = {.lex_state = 339}, - [6718] = {.lex_state = 175}, + [6715] = {.lex_state = 196}, + [6716] = {.lex_state = 198}, + [6717] = {.lex_state = 196}, + [6718] = {.lex_state = 196}, [6719] = {.lex_state = 196}, - [6720] = {.lex_state = 217}, - [6721] = {.lex_state = 339}, + [6720] = {.lex_state = 198}, + [6721] = {.lex_state = 196}, [6722] = {.lex_state = 196}, - [6723] = {.lex_state = 198}, - [6724] = {.lex_state = 339}, + [6723] = {.lex_state = 196}, + [6724] = {.lex_state = 196}, [6725] = {.lex_state = 196}, [6726] = {.lex_state = 196}, - [6727] = {.lex_state = 198}, - [6728] = {.lex_state = 175}, - [6729] = {.lex_state = 241}, - [6730] = {.lex_state = 196}, - [6731] = {.lex_state = 198}, + [6727] = {.lex_state = 196}, + [6728] = {.lex_state = 196}, + [6729] = {.lex_state = 196}, + [6730] = {.lex_state = 339}, + [6731] = {.lex_state = 196}, [6732] = {.lex_state = 196}, - [6733] = {.lex_state = 196}, - [6734] = {.lex_state = 339}, + [6733] = {.lex_state = 235}, + [6734] = {.lex_state = 196}, [6735] = {.lex_state = 339}, - [6736] = {.lex_state = 196}, - [6737] = {.lex_state = 175}, + [6736] = {.lex_state = 235}, + [6737] = {.lex_state = 196}, [6738] = {.lex_state = 196}, [6739] = {.lex_state = 196}, [6740] = {.lex_state = 196}, - [6741] = {.lex_state = 175}, + [6741] = {.lex_state = 339}, [6742] = {.lex_state = 196}, - [6743] = {.lex_state = 339}, - [6744] = {.lex_state = 339}, + [6743] = {.lex_state = 196}, + [6744] = {.lex_state = 196}, [6745] = {.lex_state = 196}, [6746] = {.lex_state = 196}, - [6747] = {.lex_state = 196}, - [6748] = {.lex_state = 196}, - [6749] = {.lex_state = 198}, - [6750] = {.lex_state = 196}, - [6751] = {.lex_state = 196}, - [6752] = {.lex_state = 196}, - [6753] = {.lex_state = 198}, - [6754] = {.lex_state = 196}, - [6755] = {.lex_state = 175}, + [6747] = {.lex_state = 200}, + [6748] = {.lex_state = 217}, + [6749] = {.lex_state = 241}, + [6750] = {.lex_state = 339}, + [6751] = {.lex_state = 175}, + [6752] = {.lex_state = 339}, + [6753] = {.lex_state = 196}, + [6754] = {.lex_state = 175}, + [6755] = {.lex_state = 339}, [6756] = {.lex_state = 175}, [6757] = {.lex_state = 339}, - [6758] = {.lex_state = 175}, - [6759] = {.lex_state = 217}, - [6760] = {.lex_state = 175}, - [6761] = {.lex_state = 196}, - [6762] = {.lex_state = 175}, - [6763] = {.lex_state = 175}, + [6758] = {.lex_state = 196}, + [6759] = {.lex_state = 196}, + [6760] = {.lex_state = 217}, + [6761] = {.lex_state = 197}, + [6762] = {.lex_state = 197}, + [6763] = {.lex_state = 198}, [6764] = {.lex_state = 196}, - [6765] = {.lex_state = 339}, - [6766] = {.lex_state = 196}, - [6767] = {.lex_state = 238}, - [6768] = {.lex_state = 217}, + [6765] = {.lex_state = 196}, + [6766] = {.lex_state = 200}, + [6767] = {.lex_state = 198}, + [6768] = {.lex_state = 200}, [6769] = {.lex_state = 339}, - [6770] = {.lex_state = 196}, + [6770] = {.lex_state = 339}, [6771] = {.lex_state = 196}, - [6772] = {.lex_state = 241}, - [6773] = {.lex_state = 339}, + [6772] = {.lex_state = 200}, + [6773] = {.lex_state = 198}, [6774] = {.lex_state = 339}, [6775] = {.lex_state = 196}, [6776] = {.lex_state = 194}, - [6777] = {.lex_state = 196}, - [6778] = {.lex_state = 197}, - [6779] = {.lex_state = 197}, - [6780] = {.lex_state = 194}, - [6781] = {.lex_state = 196}, - [6782] = {.lex_state = 198}, - [6783] = {.lex_state = 196}, - [6784] = {.lex_state = 239}, - [6785] = {.lex_state = 238}, - [6786] = {.lex_state = 238}, - [6787] = {.lex_state = 239}, - [6788] = {.lex_state = 197}, - [6789] = {.lex_state = 197}, - [6790] = {.lex_state = 239}, - [6791] = {.lex_state = 196}, - [6792] = {.lex_state = 196}, - [6793] = {.lex_state = 238}, - [6794] = {.lex_state = 197}, - [6795] = {.lex_state = 194}, - [6796] = {.lex_state = 238}, + [6777] = {.lex_state = 241}, + [6778] = {.lex_state = 339}, + [6779] = {.lex_state = 339}, + [6780] = {.lex_state = 339}, + [6781] = {.lex_state = 175}, + [6782] = {.lex_state = 339}, + [6783] = {.lex_state = 217}, + [6784] = {.lex_state = 196}, + [6785] = {.lex_state = 217}, + [6786] = {.lex_state = 198}, + [6787] = {.lex_state = 241}, + [6788] = {.lex_state = 200}, + [6789] = {.lex_state = 200}, + [6790] = {.lex_state = 200}, + [6791] = {.lex_state = 200}, + [6792] = {.lex_state = 175}, + [6793] = {.lex_state = 339}, + [6794] = {.lex_state = 194}, + [6795] = {.lex_state = 197}, + [6796] = {.lex_state = 175}, [6797] = {.lex_state = 196}, [6798] = {.lex_state = 196}, - [6799] = {.lex_state = 238}, - [6800] = {.lex_state = 339}, - [6801] = {.lex_state = 238}, - [6802] = {.lex_state = 196}, - [6803] = {.lex_state = 196}, - [6804] = {.lex_state = 238}, - [6805] = {.lex_state = 239}, - [6806] = {.lex_state = 196}, - [6807] = {.lex_state = 197}, - [6808] = {.lex_state = 238}, - [6809] = {.lex_state = 194}, - [6810] = {.lex_state = 194}, - [6811] = {.lex_state = 339}, - [6812] = {.lex_state = 196}, - [6813] = {.lex_state = 196}, - [6814] = {.lex_state = 196}, - [6815] = {.lex_state = 196}, - [6816] = {.lex_state = 238}, - [6817] = {.lex_state = 194}, - [6818] = {.lex_state = 196}, - [6819] = {.lex_state = 0}, - [6820] = {.lex_state = 196}, + [6799] = {.lex_state = 339}, + [6800] = {.lex_state = 175}, + [6801] = {.lex_state = 339}, + [6802] = {.lex_state = 339}, + [6803] = {.lex_state = 175}, + [6804] = {.lex_state = 339}, + [6805] = {.lex_state = 175}, + [6806] = {.lex_state = 339}, + [6807] = {.lex_state = 339}, + [6808] = {.lex_state = 198}, + [6809] = {.lex_state = 196}, + [6810] = {.lex_state = 175}, + [6811] = {.lex_state = 241}, + [6812] = {.lex_state = 238}, + [6813] = {.lex_state = 339}, + [6814] = {.lex_state = 339}, + [6815] = {.lex_state = 339}, + [6816] = {.lex_state = 198}, + [6817] = {.lex_state = 339}, + [6818] = {.lex_state = 339}, + [6819] = {.lex_state = 241}, + [6820] = {.lex_state = 339}, [6821] = {.lex_state = 196}, - [6822] = {.lex_state = 239}, - [6823] = {.lex_state = 196}, - [6824] = {.lex_state = 194}, - [6825] = {.lex_state = 197}, + [6822] = {.lex_state = 197}, + [6823] = {.lex_state = 339}, + [6824] = {.lex_state = 196}, + [6825] = {.lex_state = 198}, [6826] = {.lex_state = 196}, - [6827] = {.lex_state = 238}, - [6828] = {.lex_state = 339}, - [6829] = {.lex_state = 194}, - [6830] = {.lex_state = 196}, + [6827] = {.lex_state = 217}, + [6828] = {.lex_state = 196}, + [6829] = {.lex_state = 175}, + [6830] = {.lex_state = 339}, [6831] = {.lex_state = 196}, - [6832] = {.lex_state = 194}, - [6833] = {.lex_state = 238}, - [6834] = {.lex_state = 238}, - [6835] = {.lex_state = 238}, - [6836] = {.lex_state = 0}, - [6837] = {.lex_state = 197}, - [6838] = {.lex_state = 194}, - [6839] = {.lex_state = 238}, - [6840] = {.lex_state = 194}, + [6832] = {.lex_state = 217}, + [6833] = {.lex_state = 339}, + [6834] = {.lex_state = 175}, + [6835] = {.lex_state = 339}, + [6836] = {.lex_state = 196}, + [6837] = {.lex_state = 175}, + [6838] = {.lex_state = 198}, + [6839] = {.lex_state = 196}, + [6840] = {.lex_state = 339}, [6841] = {.lex_state = 339}, - [6842] = {.lex_state = 196}, - [6843] = {.lex_state = 339}, - [6844] = {.lex_state = 239}, + [6842] = {.lex_state = 198}, + [6843] = {.lex_state = 196}, + [6844] = {.lex_state = 196}, [6845] = {.lex_state = 196}, - [6846] = {.lex_state = 196}, + [6846] = {.lex_state = 241}, [6847] = {.lex_state = 196}, [6848] = {.lex_state = 196}, - [6849] = {.lex_state = 196}, - [6850] = {.lex_state = 238}, - [6851] = {.lex_state = 196}, - [6852] = {.lex_state = 196}, - [6853] = {.lex_state = 196}, - [6854] = {.lex_state = 196}, - [6855] = {.lex_state = 339}, + [6849] = {.lex_state = 175}, + [6850] = {.lex_state = 196}, + [6851] = {.lex_state = 175}, + [6852] = {.lex_state = 339}, + [6853] = {.lex_state = 175}, + [6854] = {.lex_state = 217}, + [6855] = {.lex_state = 196}, [6856] = {.lex_state = 196}, - [6857] = {.lex_state = 199}, + [6857] = {.lex_state = 196}, [6858] = {.lex_state = 196}, [6859] = {.lex_state = 196}, [6860] = {.lex_state = 196}, - [6861] = {.lex_state = 198}, + [6861] = {.lex_state = 196}, [6862] = {.lex_state = 196}, - [6863] = {.lex_state = 199}, + [6863] = {.lex_state = 175}, [6864] = {.lex_state = 196}, - [6865] = {.lex_state = 196}, + [6865] = {.lex_state = 339}, [6866] = {.lex_state = 196}, - [6867] = {.lex_state = 171}, - [6868] = {.lex_state = 199}, - [6869] = {.lex_state = 196}, - [6870] = {.lex_state = 175}, + [6867] = {.lex_state = 339}, + [6868] = {.lex_state = 196}, + [6869] = {.lex_state = 339}, + [6870] = {.lex_state = 196}, [6871] = {.lex_state = 196}, [6872] = {.lex_state = 198}, - [6873] = {.lex_state = 199}, + [6873] = {.lex_state = 196}, [6874] = {.lex_state = 339}, - [6875] = {.lex_state = 196}, - [6876] = {.lex_state = 196}, + [6875] = {.lex_state = 175}, + [6876] = {.lex_state = 339}, [6877] = {.lex_state = 339}, - [6878] = {.lex_state = 196}, - [6879] = {.lex_state = 199}, - [6880] = {.lex_state = 196}, - [6881] = {.lex_state = 196}, + [6878] = {.lex_state = 175}, + [6879] = {.lex_state = 198}, + [6880] = {.lex_state = 175}, + [6881] = {.lex_state = 241}, [6882] = {.lex_state = 196}, [6883] = {.lex_state = 196}, - [6884] = {.lex_state = 196}, + [6884] = {.lex_state = 238}, [6885] = {.lex_state = 196}, - [6886] = {.lex_state = 199}, - [6887] = {.lex_state = 196}, - [6888] = {.lex_state = 339}, - [6889] = {.lex_state = 196}, - [6890] = {.lex_state = 196}, - [6891] = {.lex_state = 196}, + [6886] = {.lex_state = 194}, + [6887] = {.lex_state = 239}, + [6888] = {.lex_state = 238}, + [6889] = {.lex_state = 239}, + [6890] = {.lex_state = 238}, + [6891] = {.lex_state = 238}, [6892] = {.lex_state = 196}, - [6893] = {.lex_state = 196}, - [6894] = {.lex_state = 196}, - [6895] = {.lex_state = 196}, - [6896] = {.lex_state = 198}, - [6897] = {.lex_state = 196}, + [6893] = {.lex_state = 194}, + [6894] = {.lex_state = 194}, + [6895] = {.lex_state = 197}, + [6896] = {.lex_state = 238}, + [6897] = {.lex_state = 239}, [6898] = {.lex_state = 196}, - [6899] = {.lex_state = 196}, - [6900] = {.lex_state = 196}, + [6899] = {.lex_state = 197}, + [6900] = {.lex_state = 197}, [6901] = {.lex_state = 196}, - [6902] = {.lex_state = 196}, - [6903] = {.lex_state = 199}, - [6904] = {.lex_state = 175}, - [6905] = {.lex_state = 199}, - [6906] = {.lex_state = 196}, + [6902] = {.lex_state = 194}, + [6903] = {.lex_state = 238}, + [6904] = {.lex_state = 196}, + [6905] = {.lex_state = 196}, + [6906] = {.lex_state = 194}, [6907] = {.lex_state = 196}, - [6908] = {.lex_state = 196}, + [6908] = {.lex_state = 238}, [6909] = {.lex_state = 196}, - [6910] = {.lex_state = 196}, - [6911] = {.lex_state = 196}, - [6912] = {.lex_state = 196}, - [6913] = {.lex_state = 196}, - [6914] = {.lex_state = 171}, - [6915] = {.lex_state = 175}, - [6916] = {.lex_state = 198}, - [6917] = {.lex_state = 217}, + [6910] = {.lex_state = 339}, + [6911] = {.lex_state = 194}, + [6912] = {.lex_state = 0}, + [6913] = {.lex_state = 197}, + [6914] = {.lex_state = 196}, + [6915] = {.lex_state = 196}, + [6916] = {.lex_state = 196}, + [6917] = {.lex_state = 239}, [6918] = {.lex_state = 196}, - [6919] = {.lex_state = 196}, - [6920] = {.lex_state = 196}, + [6919] = {.lex_state = 339}, + [6920] = {.lex_state = 198}, [6921] = {.lex_state = 196}, [6922] = {.lex_state = 196}, - [6923] = {.lex_state = 198}, - [6924] = {.lex_state = 196}, - [6925] = {.lex_state = 217}, - [6926] = {.lex_state = 196}, - [6927] = {.lex_state = 196}, - [6928] = {.lex_state = 175}, - [6929] = {.lex_state = 196}, - [6930] = {.lex_state = 199}, - [6931] = {.lex_state = 339}, - [6932] = {.lex_state = 196}, - [6933] = {.lex_state = 0}, - [6934] = {.lex_state = 199}, - [6935] = {.lex_state = 199}, - [6936] = {.lex_state = 199}, - [6937] = {.lex_state = 108}, - [6938] = {.lex_state = 0}, - [6939] = {.lex_state = 0}, - [6940] = {.lex_state = 238}, - [6941] = {.lex_state = 198}, - [6942] = {.lex_state = 339}, - [6943] = {.lex_state = 108}, - [6944] = {.lex_state = 110}, - [6945] = {.lex_state = 108}, - [6946] = {.lex_state = 199}, - [6947] = {.lex_state = 108}, - [6948] = {.lex_state = 110}, - [6949] = {.lex_state = 108}, - [6950] = {.lex_state = 108}, - [6951] = {.lex_state = 196}, - [6952] = {.lex_state = 108}, - [6953] = {.lex_state = 111}, - [6954] = {.lex_state = 199}, - [6955] = {.lex_state = 199}, - [6956] = {.lex_state = 339}, - [6957] = {.lex_state = 110}, - [6958] = {.lex_state = 108}, - [6959] = {.lex_state = 111}, - [6960] = {.lex_state = 108}, - [6961] = {.lex_state = 0}, - [6962] = {.lex_state = 199}, - [6963] = {.lex_state = 110}, - [6964] = {.lex_state = 238}, - [6965] = {.lex_state = 199}, - [6966] = {.lex_state = 108}, - [6967] = {.lex_state = 108}, - [6968] = {.lex_state = 111}, - [6969] = {.lex_state = 238}, - [6970] = {.lex_state = 199}, - [6971] = {.lex_state = 339}, - [6972] = {.lex_state = 110}, - [6973] = {.lex_state = 339}, - [6974] = {.lex_state = 339}, - [6975] = {.lex_state = 339}, - [6976] = {.lex_state = 111}, - [6977] = {.lex_state = 200}, - [6978] = {.lex_state = 108}, - [6979] = {.lex_state = 0}, - [6980] = {.lex_state = 238}, - [6981] = {.lex_state = 108}, - [6982] = {.lex_state = 339}, - [6983] = {.lex_state = 110}, - [6984] = {.lex_state = 199}, - [6985] = {.lex_state = 339}, - [6986] = {.lex_state = 339}, - [6987] = {.lex_state = 108}, - [6988] = {.lex_state = 110}, - [6989] = {.lex_state = 108}, - [6990] = {.lex_state = 0}, - [6991] = {.lex_state = 199}, - [6992] = {.lex_state = 339}, - [6993] = {.lex_state = 108}, - [6994] = {.lex_state = 339}, - [6995] = {.lex_state = 199}, - [6996] = {.lex_state = 110}, - [6997] = {.lex_state = 199}, - [6998] = {.lex_state = 108}, - [6999] = {.lex_state = 238}, - [7000] = {.lex_state = 339}, - [7001] = {.lex_state = 339}, - [7002] = {.lex_state = 108}, - [7003] = {.lex_state = 199}, - [7004] = {.lex_state = 339}, - [7005] = {.lex_state = 339}, - [7006] = {.lex_state = 199}, - [7007] = {.lex_state = 108}, + [6923] = {.lex_state = 238}, + [6924] = {.lex_state = 197}, + [6925] = {.lex_state = 194}, + [6926] = {.lex_state = 238}, + [6927] = {.lex_state = 238}, + [6928] = {.lex_state = 196}, + [6929] = {.lex_state = 197}, + [6930] = {.lex_state = 339}, + [6931] = {.lex_state = 194}, + [6932] = {.lex_state = 239}, + [6933] = {.lex_state = 238}, + [6934] = {.lex_state = 238}, + [6935] = {.lex_state = 339}, + [6936] = {.lex_state = 197}, + [6937] = {.lex_state = 194}, + [6938] = {.lex_state = 196}, + [6939] = {.lex_state = 196}, + [6940] = {.lex_state = 196}, + [6941] = {.lex_state = 196}, + [6942] = {.lex_state = 238}, + [6943] = {.lex_state = 339}, + [6944] = {.lex_state = 239}, + [6945] = {.lex_state = 196}, + [6946] = {.lex_state = 196}, + [6947] = {.lex_state = 196}, + [6948] = {.lex_state = 196}, + [6949] = {.lex_state = 197}, + [6950] = {.lex_state = 238}, + [6951] = {.lex_state = 194}, + [6952] = {.lex_state = 194}, + [6953] = {.lex_state = 0}, + [6954] = {.lex_state = 175}, + [6955] = {.lex_state = 196}, + [6956] = {.lex_state = 217}, + [6957] = {.lex_state = 196}, + [6958] = {.lex_state = 196}, + [6959] = {.lex_state = 196}, + [6960] = {.lex_state = 196}, + [6961] = {.lex_state = 196}, + [6962] = {.lex_state = 196}, + [6963] = {.lex_state = 196}, + [6964] = {.lex_state = 171}, + [6965] = {.lex_state = 196}, + [6966] = {.lex_state = 196}, + [6967] = {.lex_state = 196}, + [6968] = {.lex_state = 196}, + [6969] = {.lex_state = 196}, + [6970] = {.lex_state = 198}, + [6971] = {.lex_state = 198}, + [6972] = {.lex_state = 196}, + [6973] = {.lex_state = 196}, + [6974] = {.lex_state = 196}, + [6975] = {.lex_state = 196}, + [6976] = {.lex_state = 196}, + [6977] = {.lex_state = 196}, + [6978] = {.lex_state = 196}, + [6979] = {.lex_state = 196}, + [6980] = {.lex_state = 196}, + [6981] = {.lex_state = 171}, + [6982] = {.lex_state = 196}, + [6983] = {.lex_state = 238}, + [6984] = {.lex_state = 339}, + [6985] = {.lex_state = 196}, + [6986] = {.lex_state = 196}, + [6987] = {.lex_state = 196}, + [6988] = {.lex_state = 199}, + [6989] = {.lex_state = 196}, + [6990] = {.lex_state = 199}, + [6991] = {.lex_state = 196}, + [6992] = {.lex_state = 198}, + [6993] = {.lex_state = 196}, + [6994] = {.lex_state = 196}, + [6995] = {.lex_state = 196}, + [6996] = {.lex_state = 199}, + [6997] = {.lex_state = 196}, + [6998] = {.lex_state = 196}, + [6999] = {.lex_state = 199}, + [7000] = {.lex_state = 196}, + [7001] = {.lex_state = 196}, + [7002] = {.lex_state = 196}, + [7003] = {.lex_state = 196}, + [7004] = {.lex_state = 199}, + [7005] = {.lex_state = 196}, + [7006] = {.lex_state = 196}, + [7007] = {.lex_state = 199}, [7008] = {.lex_state = 196}, - [7009] = {.lex_state = 0}, - [7010] = {.lex_state = 199}, - [7011] = {.lex_state = 199}, - [7012] = {.lex_state = 339}, - [7013] = {.lex_state = 199}, - [7014] = {.lex_state = 339}, - [7015] = {.lex_state = 108}, - [7016] = {.lex_state = 199}, - [7017] = {.lex_state = 110}, - [7018] = {.lex_state = 108}, - [7019] = {.lex_state = 339}, - [7020] = {.lex_state = 110}, + [7009] = {.lex_state = 196}, + [7010] = {.lex_state = 339}, + [7011] = {.lex_state = 196}, + [7012] = {.lex_state = 217}, + [7013] = {.lex_state = 196}, + [7014] = {.lex_state = 196}, + [7015] = {.lex_state = 196}, + [7016] = {.lex_state = 196}, + [7017] = {.lex_state = 196}, + [7018] = {.lex_state = 196}, + [7019] = {.lex_state = 175}, + [7020] = {.lex_state = 198}, [7021] = {.lex_state = 339}, - [7022] = {.lex_state = 339}, - [7023] = {.lex_state = 339}, - [7024] = {.lex_state = 199}, - [7025] = {.lex_state = 0}, + [7022] = {.lex_state = 175}, + [7023] = {.lex_state = 175}, + [7024] = {.lex_state = 339}, + [7025] = {.lex_state = 196}, [7026] = {.lex_state = 196}, - [7027] = {.lex_state = 339}, - [7028] = {.lex_state = 199}, - [7029] = {.lex_state = 339}, - [7030] = {.lex_state = 0}, + [7027] = {.lex_state = 199}, + [7028] = {.lex_state = 196}, + [7029] = {.lex_state = 198}, + [7030] = {.lex_state = 196}, [7031] = {.lex_state = 196}, - [7032] = {.lex_state = 339}, - [7033] = {.lex_state = 199}, - [7034] = {.lex_state = 339}, - [7035] = {.lex_state = 196}, - [7036] = {.lex_state = 196}, + [7032] = {.lex_state = 196}, + [7033] = {.lex_state = 196}, + [7034] = {.lex_state = 196}, + [7035] = {.lex_state = 199}, + [7036] = {.lex_state = 108}, [7037] = {.lex_state = 339}, - [7038] = {.lex_state = 108}, - [7039] = {.lex_state = 108}, - [7040] = {.lex_state = 0}, - [7041] = {.lex_state = 108}, - [7042] = {.lex_state = 339}, - [7043] = {.lex_state = 238}, - [7044] = {.lex_state = 199}, - [7045] = {.lex_state = 217}, - [7046] = {.lex_state = 339}, - [7047] = {.lex_state = 339}, - [7048] = {.lex_state = 171}, - [7049] = {.lex_state = 108}, - [7050] = {.lex_state = 196}, - [7051] = {.lex_state = 110}, - [7052] = {.lex_state = 238}, - [7053] = {.lex_state = 108}, - [7054] = {.lex_state = 339}, - [7055] = {.lex_state = 339}, + [7038] = {.lex_state = 339}, + [7039] = {.lex_state = 196}, + [7040] = {.lex_state = 110}, + [7041] = {.lex_state = 199}, + [7042] = {.lex_state = 199}, + [7043] = {.lex_state = 108}, + [7044] = {.lex_state = 110}, + [7045] = {.lex_state = 238}, + [7046] = {.lex_state = 199}, + [7047] = {.lex_state = 0}, + [7048] = {.lex_state = 196}, + [7049] = {.lex_state = 199}, + [7050] = {.lex_state = 110}, + [7051] = {.lex_state = 199}, + [7052] = {.lex_state = 110}, + [7053] = {.lex_state = 339}, + [7054] = {.lex_state = 199}, + [7055] = {.lex_state = 0}, [7056] = {.lex_state = 0}, - [7057] = {.lex_state = 111}, - [7058] = {.lex_state = 196}, - [7059] = {.lex_state = 196}, - [7060] = {.lex_state = 108}, - [7061] = {.lex_state = 108}, - [7062] = {.lex_state = 339}, - [7063] = {.lex_state = 339}, - [7064] = {.lex_state = 108}, - [7065] = {.lex_state = 199}, - [7066] = {.lex_state = 199}, - [7067] = {.lex_state = 196}, - [7068] = {.lex_state = 0}, - [7069] = {.lex_state = 0}, - [7070] = {.lex_state = 238}, - [7071] = {.lex_state = 339}, - [7072] = {.lex_state = 339}, - [7073] = {.lex_state = 108}, + [7057] = {.lex_state = 238}, + [7058] = {.lex_state = 0}, + [7059] = {.lex_state = 110}, + [7060] = {.lex_state = 199}, + [7061] = {.lex_state = 199}, + [7062] = {.lex_state = 108}, + [7063] = {.lex_state = 110}, + [7064] = {.lex_state = 199}, + [7065] = {.lex_state = 0}, + [7066] = {.lex_state = 339}, + [7067] = {.lex_state = 110}, + [7068] = {.lex_state = 108}, + [7069] = {.lex_state = 110}, + [7070] = {.lex_state = 0}, + [7071] = {.lex_state = 110}, + [7072] = {.lex_state = 110}, + [7073] = {.lex_state = 238}, [7074] = {.lex_state = 108}, - [7075] = {.lex_state = 339}, - [7076] = {.lex_state = 339}, - [7077] = {.lex_state = 339}, - [7078] = {.lex_state = 196}, - [7079] = {.lex_state = 339}, - [7080] = {.lex_state = 111}, - [7081] = {.lex_state = 0}, - [7082] = {.lex_state = 108}, + [7075] = {.lex_state = 110}, + [7076] = {.lex_state = 0}, + [7077] = {.lex_state = 110}, + [7078] = {.lex_state = 111}, + [7079] = {.lex_state = 110}, + [7080] = {.lex_state = 0}, + [7081] = {.lex_state = 110}, + [7082] = {.lex_state = 110}, [7083] = {.lex_state = 0}, [7084] = {.lex_state = 199}, - [7085] = {.lex_state = 196}, - [7086] = {.lex_state = 199}, + [7085] = {.lex_state = 339}, + [7086] = {.lex_state = 110}, [7087] = {.lex_state = 110}, - [7088] = {.lex_state = 111}, - [7089] = {.lex_state = 108}, - [7090] = {.lex_state = 339}, - [7091] = {.lex_state = 196}, - [7092] = {.lex_state = 199}, - [7093] = {.lex_state = 199}, - [7094] = {.lex_state = 0}, - [7095] = {.lex_state = 199}, - [7096] = {.lex_state = 199}, - [7097] = {.lex_state = 339}, - [7098] = {.lex_state = 339}, - [7099] = {.lex_state = 339}, - [7100] = {.lex_state = 339}, - [7101] = {.lex_state = 0}, + [7088] = {.lex_state = 0}, + [7089] = {.lex_state = 110}, + [7090] = {.lex_state = 110}, + [7091] = {.lex_state = 110}, + [7092] = {.lex_state = 0}, + [7093] = {.lex_state = 110}, + [7094] = {.lex_state = 110}, + [7095] = {.lex_state = 0}, + [7096] = {.lex_state = 110}, + [7097] = {.lex_state = 110}, + [7098] = {.lex_state = 110}, + [7099] = {.lex_state = 110}, + [7100] = {.lex_state = 199}, + [7101] = {.lex_state = 110}, [7102] = {.lex_state = 108}, - [7103] = {.lex_state = 339}, - [7104] = {.lex_state = 171}, + [7103] = {.lex_state = 110}, + [7104] = {.lex_state = 339}, [7105] = {.lex_state = 339}, - [7106] = {.lex_state = 0}, + [7106] = {.lex_state = 108}, [7107] = {.lex_state = 199}, - [7108] = {.lex_state = 108}, - [7109] = {.lex_state = 196}, - [7110] = {.lex_state = 339}, - [7111] = {.lex_state = 199}, - [7112] = {.lex_state = 199}, - [7113] = {.lex_state = 199}, - [7114] = {.lex_state = 238}, - [7115] = {.lex_state = 238}, - [7116] = {.lex_state = 199}, - [7117] = {.lex_state = 108}, - [7118] = {.lex_state = 339}, - [7119] = {.lex_state = 0}, - [7120] = {.lex_state = 199}, - [7121] = {.lex_state = 339}, - [7122] = {.lex_state = 0}, - [7123] = {.lex_state = 196}, - [7124] = {.lex_state = 108}, - [7125] = {.lex_state = 108}, + [7108] = {.lex_state = 200}, + [7109] = {.lex_state = 171}, + [7110] = {.lex_state = 199}, + [7111] = {.lex_state = 108}, + [7112] = {.lex_state = 110}, + [7113] = {.lex_state = 339}, + [7114] = {.lex_state = 196}, + [7115] = {.lex_state = 110}, + [7116] = {.lex_state = 238}, + [7117] = {.lex_state = 196}, + [7118] = {.lex_state = 0}, + [7119] = {.lex_state = 199}, + [7120] = {.lex_state = 108}, + [7121] = {.lex_state = 199}, + [7122] = {.lex_state = 339}, + [7123] = {.lex_state = 0}, + [7124] = {.lex_state = 110}, + [7125] = {.lex_state = 110}, [7126] = {.lex_state = 199}, - [7127] = {.lex_state = 199}, - [7128] = {.lex_state = 196}, - [7129] = {.lex_state = 0}, - [7130] = {.lex_state = 108}, + [7127] = {.lex_state = 339}, + [7128] = {.lex_state = 339}, + [7129] = {.lex_state = 196}, + [7130] = {.lex_state = 111}, [7131] = {.lex_state = 339}, - [7132] = {.lex_state = 339}, + [7132] = {.lex_state = 0}, [7133] = {.lex_state = 339}, - [7134] = {.lex_state = 110}, - [7135] = {.lex_state = 339}, + [7134] = {.lex_state = 199}, + [7135] = {.lex_state = 110}, [7136] = {.lex_state = 171}, - [7137] = {.lex_state = 0}, - [7138] = {.lex_state = 171}, - [7139] = {.lex_state = 0}, - [7140] = {.lex_state = 0}, - [7141] = {.lex_state = 0}, - [7142] = {.lex_state = 199}, - [7143] = {.lex_state = 0}, - [7144] = {.lex_state = 0}, - [7145] = {.lex_state = 199}, - [7146] = {.lex_state = 0}, - [7147] = {.lex_state = 196}, - [7148] = {.lex_state = 196}, - [7149] = {.lex_state = 0}, - [7150] = {.lex_state = 0}, - [7151] = {.lex_state = 0}, - [7152] = {.lex_state = 0}, - [7153] = {.lex_state = 0}, - [7154] = {.lex_state = 199}, - [7155] = {.lex_state = 0}, - [7156] = {.lex_state = 0}, + [7137] = {.lex_state = 238}, + [7138] = {.lex_state = 111}, + [7139] = {.lex_state = 199}, + [7140] = {.lex_state = 339}, + [7141] = {.lex_state = 199}, + [7142] = {.lex_state = 108}, + [7143] = {.lex_state = 110}, + [7144] = {.lex_state = 108}, + [7145] = {.lex_state = 110}, + [7146] = {.lex_state = 339}, + [7147] = {.lex_state = 339}, + [7148] = {.lex_state = 0}, + [7149] = {.lex_state = 339}, + [7150] = {.lex_state = 111}, + [7151] = {.lex_state = 339}, + [7152] = {.lex_state = 199}, + [7153] = {.lex_state = 339}, + [7154] = {.lex_state = 196}, + [7155] = {.lex_state = 238}, + [7156] = {.lex_state = 199}, [7157] = {.lex_state = 0}, - [7158] = {.lex_state = 0}, - [7159] = {.lex_state = 0}, - [7160] = {.lex_state = 196}, - [7161] = {.lex_state = 0}, - [7162] = {.lex_state = 0}, - [7163] = {.lex_state = 0}, - [7164] = {.lex_state = 0}, - [7165] = {.lex_state = 0}, - [7166] = {.lex_state = 0}, - [7167] = {.lex_state = 196}, - [7168] = {.lex_state = 196}, - [7169] = {.lex_state = 196}, - [7170] = {.lex_state = 0}, - [7171] = {.lex_state = 0}, - [7172] = {.lex_state = 0}, - [7173] = {.lex_state = 0}, - [7174] = {.lex_state = 0}, - [7175] = {.lex_state = 0}, - [7176] = {.lex_state = 0}, - [7177] = {.lex_state = 196}, - [7178] = {.lex_state = 0}, - [7179] = {.lex_state = 0}, - [7180] = {.lex_state = 196}, + [7158] = {.lex_state = 196}, + [7159] = {.lex_state = 196}, + [7160] = {.lex_state = 339}, + [7161] = {.lex_state = 339}, + [7162] = {.lex_state = 111}, + [7163] = {.lex_state = 339}, + [7164] = {.lex_state = 339}, + [7165] = {.lex_state = 199}, + [7166] = {.lex_state = 339}, + [7167] = {.lex_state = 238}, + [7168] = {.lex_state = 199}, + [7169] = {.lex_state = 339}, + [7170] = {.lex_state = 196}, + [7171] = {.lex_state = 199}, + [7172] = {.lex_state = 196}, + [7173] = {.lex_state = 238}, + [7174] = {.lex_state = 110}, + [7175] = {.lex_state = 199}, + [7176] = {.lex_state = 111}, + [7177] = {.lex_state = 339}, + [7178] = {.lex_state = 199}, + [7179] = {.lex_state = 238}, + [7180] = {.lex_state = 199}, [7181] = {.lex_state = 0}, - [7182] = {.lex_state = 0}, - [7183] = {.lex_state = 0}, - [7184] = {.lex_state = 171}, - [7185] = {.lex_state = 0}, + [7182] = {.lex_state = 199}, + [7183] = {.lex_state = 199}, + [7184] = {.lex_state = 108}, + [7185] = {.lex_state = 110}, [7186] = {.lex_state = 199}, [7187] = {.lex_state = 199}, - [7188] = {.lex_state = 196}, - [7189] = {.lex_state = 0}, - [7190] = {.lex_state = 0}, - [7191] = {.lex_state = 0}, - [7192] = {.lex_state = 196}, + [7188] = {.lex_state = 339}, + [7189] = {.lex_state = 339}, + [7190] = {.lex_state = 339}, + [7191] = {.lex_state = 339}, + [7192] = {.lex_state = 199}, [7193] = {.lex_state = 0}, - [7194] = {.lex_state = 0}, - [7195] = {.lex_state = 0}, - [7196] = {.lex_state = 0}, - [7197] = {.lex_state = 0}, - [7198] = {.lex_state = 0}, - [7199] = {.lex_state = 0}, - [7200] = {.lex_state = 196}, - [7201] = {.lex_state = 199}, - [7202] = {.lex_state = 196}, - [7203] = {.lex_state = 0}, - [7204] = {.lex_state = 0}, - [7205] = {.lex_state = 0}, - [7206] = {.lex_state = 0}, - [7207] = {.lex_state = 0}, + [7194] = {.lex_state = 339}, + [7195] = {.lex_state = 196}, + [7196] = {.lex_state = 198}, + [7197] = {.lex_state = 339}, + [7198] = {.lex_state = 339}, + [7199] = {.lex_state = 339}, + [7200] = {.lex_state = 339}, + [7201] = {.lex_state = 339}, + [7202] = {.lex_state = 339}, + [7203] = {.lex_state = 199}, + [7204] = {.lex_state = 199}, + [7205] = {.lex_state = 110}, + [7206] = {.lex_state = 217}, + [7207] = {.lex_state = 111}, [7208] = {.lex_state = 196}, - [7209] = {.lex_state = 0}, + [7209] = {.lex_state = 339}, [7210] = {.lex_state = 196}, - [7211] = {.lex_state = 0}, - [7212] = {.lex_state = 0}, - [7213] = {.lex_state = 0}, - [7214] = {.lex_state = 0}, - [7215] = {.lex_state = 199}, - [7216] = {.lex_state = 199}, - [7217] = {.lex_state = 196}, - [7218] = {.lex_state = 0}, - [7219] = {.lex_state = 0}, - [7220] = {.lex_state = 0}, - [7221] = {.lex_state = 0}, - [7222] = {.lex_state = 0}, - [7223] = {.lex_state = 0}, - [7224] = {.lex_state = 199}, - [7225] = {.lex_state = 199}, - [7226] = {.lex_state = 0}, - [7227] = {.lex_state = 196}, + [7211] = {.lex_state = 339}, + [7212] = {.lex_state = 196}, + [7213] = {.lex_state = 199}, + [7214] = {.lex_state = 339}, + [7215] = {.lex_state = 339}, + [7216] = {.lex_state = 108}, + [7217] = {.lex_state = 110}, + [7218] = {.lex_state = 339}, + [7219] = {.lex_state = 339}, + [7220] = {.lex_state = 339}, + [7221] = {.lex_state = 339}, + [7222] = {.lex_state = 339}, + [7223] = {.lex_state = 339}, + [7224] = {.lex_state = 339}, + [7225] = {.lex_state = 339}, + [7226] = {.lex_state = 339}, + [7227] = {.lex_state = 339}, [7228] = {.lex_state = 199}, - [7229] = {.lex_state = 0}, - [7230] = {.lex_state = 0}, - [7231] = {.lex_state = 0}, - [7232] = {.lex_state = 0}, + [7229] = {.lex_state = 199}, + [7230] = {.lex_state = 339}, + [7231] = {.lex_state = 196}, + [7232] = {.lex_state = 199}, [7233] = {.lex_state = 0}, [7234] = {.lex_state = 0}, [7235] = {.lex_state = 199}, - [7236] = {.lex_state = 0}, - [7237] = {.lex_state = 196}, - [7238] = {.lex_state = 0}, - [7239] = {.lex_state = 0}, - [7240] = {.lex_state = 0}, - [7241] = {.lex_state = 0}, - [7242] = {.lex_state = 196}, - [7243] = {.lex_state = 0}, - [7244] = {.lex_state = 196}, - [7245] = {.lex_state = 196}, + [7236] = {.lex_state = 196}, + [7237] = {.lex_state = 199}, + [7238] = {.lex_state = 238}, + [7239] = {.lex_state = 196}, + [7240] = {.lex_state = 339}, + [7241] = {.lex_state = 339}, + [7242] = {.lex_state = 0}, + [7243] = {.lex_state = 199}, + [7244] = {.lex_state = 108}, + [7245] = {.lex_state = 0}, [7246] = {.lex_state = 196}, - [7247] = {.lex_state = 199}, - [7248] = {.lex_state = 199}, - [7249] = {.lex_state = 196}, + [7247] = {.lex_state = 196}, + [7248] = {.lex_state = 0}, + [7249] = {.lex_state = 199}, [7250] = {.lex_state = 0}, [7251] = {.lex_state = 0}, - [7252] = {.lex_state = 199}, + [7252] = {.lex_state = 0}, [7253] = {.lex_state = 196}, - [7254] = {.lex_state = 110}, + [7254] = {.lex_state = 0}, [7255] = {.lex_state = 199}, - [7256] = {.lex_state = 0}, - [7257] = {.lex_state = 0}, + [7256] = {.lex_state = 196}, + [7257] = {.lex_state = 196}, [7258] = {.lex_state = 0}, - [7259] = {.lex_state = 339}, + [7259] = {.lex_state = 0}, [7260] = {.lex_state = 0}, [7261] = {.lex_state = 0}, [7262] = {.lex_state = 0}, - [7263] = {.lex_state = 0}, - [7264] = {.lex_state = 0}, + [7263] = {.lex_state = 171}, + [7264] = {.lex_state = 196}, [7265] = {.lex_state = 0}, [7266] = {.lex_state = 0}, [7267] = {.lex_state = 0}, - [7268] = {.lex_state = 196}, - [7269] = {.lex_state = 196}, + [7268] = {.lex_state = 0}, + [7269] = {.lex_state = 199}, [7270] = {.lex_state = 196}, - [7271] = {.lex_state = 0}, - [7272] = {.lex_state = 171}, - [7273] = {.lex_state = 0}, - [7274] = {.lex_state = 0}, - [7275] = {.lex_state = 199}, - [7276] = {.lex_state = 199}, - [7277] = {.lex_state = 0}, - [7278] = {.lex_state = 0}, + [7271] = {.lex_state = 199}, + [7272] = {.lex_state = 0}, + [7273] = {.lex_state = 196}, + [7274] = {.lex_state = 171}, + [7275] = {.lex_state = 196}, + [7276] = {.lex_state = 0}, + [7277] = {.lex_state = 196}, + [7278] = {.lex_state = 199}, [7279] = {.lex_state = 0}, - [7280] = {.lex_state = 196}, + [7280] = {.lex_state = 199}, [7281] = {.lex_state = 0}, - [7282] = {.lex_state = 113}, + [7282] = {.lex_state = 0}, [7283] = {.lex_state = 0}, - [7284] = {.lex_state = 196}, - [7285] = {.lex_state = 175}, - [7286] = {.lex_state = 199}, + [7284] = {.lex_state = 0}, + [7285] = {.lex_state = 0}, + [7286] = {.lex_state = 0}, [7287] = {.lex_state = 199}, [7288] = {.lex_state = 0}, [7289] = {.lex_state = 0}, - [7290] = {.lex_state = 199}, - [7291] = {.lex_state = 199}, - [7292] = {.lex_state = 196}, + [7290] = {.lex_state = 0}, + [7291] = {.lex_state = 196}, + [7292] = {.lex_state = 199}, [7293] = {.lex_state = 0}, - [7294] = {.lex_state = 0}, + [7294] = {.lex_state = 196}, [7295] = {.lex_state = 0}, - [7296] = {.lex_state = 171}, + [7296] = {.lex_state = 0}, [7297] = {.lex_state = 0}, [7298] = {.lex_state = 0}, - [7299] = {.lex_state = 0}, - [7300] = {.lex_state = 0}, - [7301] = {.lex_state = 0}, + [7299] = {.lex_state = 199}, + [7300] = {.lex_state = 196}, + [7301] = {.lex_state = 196}, [7302] = {.lex_state = 0}, [7303] = {.lex_state = 0}, [7304] = {.lex_state = 0}, - [7305] = {.lex_state = 0}, + [7305] = {.lex_state = 196}, [7306] = {.lex_state = 0}, - [7307] = {.lex_state = 0}, - [7308] = {.lex_state = 199}, + [7307] = {.lex_state = 175}, + [7308] = {.lex_state = 196}, [7309] = {.lex_state = 0}, - [7310] = {.lex_state = 0}, - [7311] = {.lex_state = 0}, - [7312] = {.lex_state = 0}, - [7313] = {.lex_state = 339}, + [7310] = {.lex_state = 196}, + [7311] = {.lex_state = 196}, + [7312] = {.lex_state = 199}, + [7313] = {.lex_state = 171}, [7314] = {.lex_state = 0}, - [7315] = {.lex_state = 164}, - [7316] = {.lex_state = 196}, + [7315] = {.lex_state = 196}, + [7316] = {.lex_state = 0}, [7317] = {.lex_state = 339}, [7318] = {.lex_state = 0}, - [7319] = {.lex_state = 199}, - [7320] = {.lex_state = 199}, + [7319] = {.lex_state = 0}, + [7320] = {.lex_state = 0}, [7321] = {.lex_state = 0}, [7322] = {.lex_state = 0}, [7323] = {.lex_state = 0}, - [7324] = {.lex_state = 0}, - [7325] = {.lex_state = 0}, + [7324] = {.lex_state = 199}, + [7325] = {.lex_state = 199}, [7326] = {.lex_state = 0}, - [7327] = {.lex_state = 199}, - [7328] = {.lex_state = 199}, + [7327] = {.lex_state = 0}, + [7328] = {.lex_state = 0}, [7329] = {.lex_state = 0}, [7330] = {.lex_state = 0}, [7331] = {.lex_state = 0}, - [7332] = {.lex_state = 0}, + [7332] = {.lex_state = 171}, [7333] = {.lex_state = 0}, [7334] = {.lex_state = 196}, - [7335] = {.lex_state = 196}, - [7336] = {.lex_state = 199}, - [7337] = {.lex_state = 199}, - [7338] = {.lex_state = 199}, - [7339] = {.lex_state = 199}, - [7340] = {.lex_state = 199}, - [7341] = {.lex_state = 0}, - [7342] = {.lex_state = 0}, + [7335] = {.lex_state = 199}, + [7336] = {.lex_state = 0}, + [7337] = {.lex_state = 0}, + [7338] = {.lex_state = 108}, + [7339] = {.lex_state = 164}, + [7340] = {.lex_state = 113}, + [7341] = {.lex_state = 199}, + [7342] = {.lex_state = 199}, [7343] = {.lex_state = 0}, - [7344] = {.lex_state = 196}, + [7344] = {.lex_state = 0}, [7345] = {.lex_state = 0}, - [7346] = {.lex_state = 0}, - [7347] = {.lex_state = 217}, - [7348] = {.lex_state = 0}, + [7346] = {.lex_state = 199}, + [7347] = {.lex_state = 199}, + [7348] = {.lex_state = 199}, [7349] = {.lex_state = 0}, - [7350] = {.lex_state = 199}, - [7351] = {.lex_state = 199}, - [7352] = {.lex_state = 199}, - [7353] = {.lex_state = 199}, + [7350] = {.lex_state = 0}, + [7351] = {.lex_state = 196}, + [7352] = {.lex_state = 196}, + [7353] = {.lex_state = 0}, [7354] = {.lex_state = 199}, - [7355] = {.lex_state = 196}, - [7356] = {.lex_state = 199}, + [7355] = {.lex_state = 0}, + [7356] = {.lex_state = 0}, [7357] = {.lex_state = 196}, - [7358] = {.lex_state = 110}, + [7358] = {.lex_state = 0}, [7359] = {.lex_state = 0}, - [7360] = {.lex_state = 196}, - [7361] = {.lex_state = 196}, - [7362] = {.lex_state = 171}, - [7363] = {.lex_state = 196}, - [7364] = {.lex_state = 0}, - [7365] = {.lex_state = 0}, - [7366] = {.lex_state = 199}, + [7360] = {.lex_state = 171}, + [7361] = {.lex_state = 0}, + [7362] = {.lex_state = 199}, + [7363] = {.lex_state = 199}, + [7364] = {.lex_state = 199}, + [7365] = {.lex_state = 199}, + [7366] = {.lex_state = 196}, [7367] = {.lex_state = 0}, [7368] = {.lex_state = 0}, - [7369] = {.lex_state = 196}, - [7370] = {.lex_state = 199}, - [7371] = {.lex_state = 110}, + [7369] = {.lex_state = 0}, + [7370] = {.lex_state = 0}, + [7371] = {.lex_state = 0}, [7372] = {.lex_state = 171}, - [7373] = {.lex_state = 0}, - [7374] = {.lex_state = 199}, - [7375] = {.lex_state = 0}, - [7376] = {.lex_state = 0}, - [7377] = {.lex_state = 0}, - [7378] = {.lex_state = 196}, - [7379] = {.lex_state = 196}, + [7373] = {.lex_state = 113}, + [7374] = {.lex_state = 0}, + [7375] = {.lex_state = 175}, + [7376] = {.lex_state = 199}, + [7377] = {.lex_state = 171}, + [7378] = {.lex_state = 0}, + [7379] = {.lex_state = 0}, [7380] = {.lex_state = 0}, [7381] = {.lex_state = 0}, - [7382] = {.lex_state = 196}, + [7382] = {.lex_state = 0}, [7383] = {.lex_state = 0}, - [7384] = {.lex_state = 199}, - [7385] = {.lex_state = 171}, + [7384] = {.lex_state = 0}, + [7385] = {.lex_state = 0}, [7386] = {.lex_state = 0}, - [7387] = {.lex_state = 0}, - [7388] = {.lex_state = 0}, - [7389] = {.lex_state = 199}, + [7387] = {.lex_state = 196}, + [7388] = {.lex_state = 196}, + [7389] = {.lex_state = 0}, [7390] = {.lex_state = 0}, [7391] = {.lex_state = 199}, - [7392] = {.lex_state = 0}, - [7393] = {.lex_state = 199}, - [7394] = {.lex_state = 0}, - [7395] = {.lex_state = 171}, - [7396] = {.lex_state = 0}, + [7392] = {.lex_state = 196}, + [7393] = {.lex_state = 0}, + [7394] = {.lex_state = 196}, + [7395] = {.lex_state = 108}, + [7396] = {.lex_state = 196}, [7397] = {.lex_state = 0}, [7398] = {.lex_state = 0}, [7399] = {.lex_state = 0}, - [7400] = {.lex_state = 0}, + [7400] = {.lex_state = 196}, [7401] = {.lex_state = 196}, - [7402] = {.lex_state = 196}, - [7403] = {.lex_state = 110}, - [7404] = {.lex_state = 199}, - [7405] = {.lex_state = 196}, - [7406] = {.lex_state = 196}, - [7407] = {.lex_state = 199}, + [7402] = {.lex_state = 0}, + [7403] = {.lex_state = 0}, + [7404] = {.lex_state = 0}, + [7405] = {.lex_state = 0}, + [7406] = {.lex_state = 0}, + [7407] = {.lex_state = 0}, [7408] = {.lex_state = 0}, - [7409] = {.lex_state = 196}, - [7410] = {.lex_state = 0}, + [7409] = {.lex_state = 0}, + [7410] = {.lex_state = 196}, [7411] = {.lex_state = 0}, [7412] = {.lex_state = 0}, [7413] = {.lex_state = 0}, - [7414] = {.lex_state = 0}, - [7415] = {.lex_state = 199}, - [7416] = {.lex_state = 199}, + [7414] = {.lex_state = 171}, + [7415] = {.lex_state = 0}, + [7416] = {.lex_state = 0}, [7417] = {.lex_state = 0}, [7418] = {.lex_state = 0}, [7419] = {.lex_state = 0}, [7420] = {.lex_state = 0}, - [7421] = {.lex_state = 199}, + [7421] = {.lex_state = 0}, [7422] = {.lex_state = 196}, [7423] = {.lex_state = 196}, - [7424] = {.lex_state = 110}, - [7425] = {.lex_state = 196}, - [7426] = {.lex_state = 0}, - [7427] = {.lex_state = 196}, - [7428] = {.lex_state = 196}, - [7429] = {.lex_state = 199}, - [7430] = {.lex_state = 199}, - [7431] = {.lex_state = 199}, - [7432] = {.lex_state = 199}, + [7424] = {.lex_state = 196}, + [7425] = {.lex_state = 199}, + [7426] = {.lex_state = 196}, + [7427] = {.lex_state = 0}, + [7428] = {.lex_state = 0}, + [7429] = {.lex_state = 0}, + [7430] = {.lex_state = 0}, + [7431] = {.lex_state = 0}, + [7432] = {.lex_state = 0}, [7433] = {.lex_state = 0}, [7434] = {.lex_state = 0}, - [7435] = {.lex_state = 199}, + [7435] = {.lex_state = 0}, [7436] = {.lex_state = 0}, - [7437] = {.lex_state = 0}, - [7438] = {.lex_state = 0}, + [7437] = {.lex_state = 196}, + [7438] = {.lex_state = 113}, [7439] = {.lex_state = 0}, [7440] = {.lex_state = 0}, [7441] = {.lex_state = 196}, - [7442] = {.lex_state = 196}, - [7443] = {.lex_state = 110}, + [7442] = {.lex_state = 0}, + [7443] = {.lex_state = 0}, [7444] = {.lex_state = 0}, [7445] = {.lex_state = 0}, [7446] = {.lex_state = 0}, - [7447] = {.lex_state = 196}, - [7448] = {.lex_state = 196}, - [7449] = {.lex_state = 113}, - [7450] = {.lex_state = 0}, + [7447] = {.lex_state = 199}, + [7448] = {.lex_state = 199}, + [7449] = {.lex_state = 0}, + [7450] = {.lex_state = 196}, [7451] = {.lex_state = 0}, [7452] = {.lex_state = 196}, - [7453] = {.lex_state = 110}, - [7454] = {.lex_state = 0}, - [7455] = {.lex_state = 196}, - [7456] = {.lex_state = 171}, - [7457] = {.lex_state = 196}, - [7458] = {.lex_state = 196}, - [7459] = {.lex_state = 0}, + [7453] = {.lex_state = 0}, + [7454] = {.lex_state = 108}, + [7455] = {.lex_state = 0}, + [7456] = {.lex_state = 0}, + [7457] = {.lex_state = 0}, + [7458] = {.lex_state = 0}, + [7459] = {.lex_state = 196}, [7460] = {.lex_state = 196}, - [7461] = {.lex_state = 110}, - [7462] = {.lex_state = 110}, - [7463] = {.lex_state = 196}, - [7464] = {.lex_state = 110}, - [7465] = {.lex_state = 0}, - [7466] = {.lex_state = 110}, - [7467] = {.lex_state = 110}, - [7468] = {.lex_state = 196}, - [7469] = {.lex_state = 0}, + [7461] = {.lex_state = 196}, + [7462] = {.lex_state = 0}, + [7463] = {.lex_state = 0}, + [7464] = {.lex_state = 196}, + [7465] = {.lex_state = 171}, + [7466] = {.lex_state = 0}, + [7467] = {.lex_state = 0}, + [7468] = {.lex_state = 199}, + [7469] = {.lex_state = 199}, [7470] = {.lex_state = 0}, [7471] = {.lex_state = 196}, [7472] = {.lex_state = 196}, - [7473] = {.lex_state = 196}, - [7474] = {.lex_state = 196}, - [7475] = {.lex_state = 196}, - [7476] = {.lex_state = 196}, - [7477] = {.lex_state = 175}, - [7478] = {.lex_state = 175}, - [7479] = {.lex_state = 171}, + [7473] = {.lex_state = 199}, + [7474] = {.lex_state = 199}, + [7475] = {.lex_state = 199}, + [7476] = {.lex_state = 0}, + [7477] = {.lex_state = 0}, + [7478] = {.lex_state = 196}, + [7479] = {.lex_state = 108}, [7480] = {.lex_state = 171}, [7481] = {.lex_state = 0}, [7482] = {.lex_state = 0}, [7483] = {.lex_state = 0}, - [7484] = {.lex_state = 113}, - [7485] = {.lex_state = 199}, + [7484] = {.lex_state = 196}, + [7485] = {.lex_state = 196}, [7486] = {.lex_state = 0}, [7487] = {.lex_state = 0}, [7488] = {.lex_state = 0}, [7489] = {.lex_state = 0}, - [7490] = {.lex_state = 0}, + [7490] = {.lex_state = 196}, [7491] = {.lex_state = 0}, - [7492] = {.lex_state = 113}, - [7493] = {.lex_state = 196}, - [7494] = {.lex_state = 0}, - [7495] = {.lex_state = 196}, - [7496] = {.lex_state = 196}, - [7497] = {.lex_state = 0}, - [7498] = {.lex_state = 0}, + [7492] = {.lex_state = 0}, + [7493] = {.lex_state = 0}, + [7494] = {.lex_state = 196}, + [7495] = {.lex_state = 0}, + [7496] = {.lex_state = 0}, + [7497] = {.lex_state = 196}, + [7498] = {.lex_state = 108}, [7499] = {.lex_state = 0}, - [7500] = {.lex_state = 199}, - [7501] = {.lex_state = 171}, - [7502] = {.lex_state = 199}, - [7503] = {.lex_state = 0}, - [7504] = {.lex_state = 0}, + [7500] = {.lex_state = 0}, + [7501] = {.lex_state = 0}, + [7502] = {.lex_state = 196}, + [7503] = {.lex_state = 113}, + [7504] = {.lex_state = 171}, [7505] = {.lex_state = 0}, - [7506] = {.lex_state = 0}, - [7507] = {.lex_state = 171}, - [7508] = {.lex_state = 196}, - [7509] = {.lex_state = 0}, - [7510] = {.lex_state = 196}, - [7511] = {.lex_state = 199}, + [7506] = {.lex_state = 199}, + [7507] = {.lex_state = 196}, + [7508] = {.lex_state = 199}, + [7509] = {.lex_state = 196}, + [7510] = {.lex_state = 0}, + [7511] = {.lex_state = 0}, [7512] = {.lex_state = 199}, - [7513] = {.lex_state = 199}, - [7514] = {.lex_state = 196}, - [7515] = {.lex_state = 199}, - [7516] = {.lex_state = 199}, - [7517] = {.lex_state = 0}, - [7518] = {.lex_state = 196}, - [7519] = {.lex_state = 196}, - [7520] = {.lex_state = 196}, - [7521] = {.lex_state = 0}, - [7522] = {.lex_state = 0}, - [7523] = {.lex_state = 0}, - [7524] = {.lex_state = 0}, + [7513] = {.lex_state = 0}, + [7514] = {.lex_state = 0}, + [7515] = {.lex_state = 196}, + [7516] = {.lex_state = 108}, + [7517] = {.lex_state = 199}, + [7518] = {.lex_state = 0}, + [7519] = {.lex_state = 0}, + [7520] = {.lex_state = 0}, + [7521] = {.lex_state = 196}, + [7522] = {.lex_state = 196}, + [7523] = {.lex_state = 196}, + [7524] = {.lex_state = 171}, [7525] = {.lex_state = 0}, - [7526] = {.lex_state = 171}, - [7527] = {.lex_state = 196}, - [7528] = {.lex_state = 196}, - [7529] = {.lex_state = 196}, + [7526] = {.lex_state = 0}, + [7527] = {.lex_state = 199}, + [7528] = {.lex_state = 0}, + [7529] = {.lex_state = 0}, [7530] = {.lex_state = 196}, - [7531] = {.lex_state = 0}, + [7531] = {.lex_state = 175}, [7532] = {.lex_state = 196}, - [7533] = {.lex_state = 0}, - [7534] = {.lex_state = 0}, - [7535] = {.lex_state = 171}, + [7533] = {.lex_state = 108}, + [7534] = {.lex_state = 199}, + [7535] = {.lex_state = 0}, [7536] = {.lex_state = 0}, - [7537] = {.lex_state = 196}, - [7538] = {.lex_state = 0}, + [7537] = {.lex_state = 0}, + [7538] = {.lex_state = 108}, [7539] = {.lex_state = 0}, - [7540] = {.lex_state = 0}, + [7540] = {.lex_state = 196}, [7541] = {.lex_state = 0}, [7542] = {.lex_state = 0}, - [7543] = {.lex_state = 0}, - [7544] = {.lex_state = 196}, - [7545] = {.lex_state = 0}, + [7543] = {.lex_state = 171}, + [7544] = {.lex_state = 108}, + [7545] = {.lex_state = 199}, [7546] = {.lex_state = 0}, - [7547] = {.lex_state = 171}, - [7548] = {.lex_state = 0}, + [7547] = {.lex_state = 108}, + [7548] = {.lex_state = 108}, [7549] = {.lex_state = 0}, [7550] = {.lex_state = 0}, - [7551] = {.lex_state = 0}, + [7551] = {.lex_state = 196}, [7552] = {.lex_state = 0}, - [7553] = {.lex_state = 0}, + [7553] = {.lex_state = 196}, [7554] = {.lex_state = 0}, - [7555] = {.lex_state = 0}, - [7556] = {.lex_state = 196}, - [7557] = {.lex_state = 199}, + [7555] = {.lex_state = 199}, + [7556] = {.lex_state = 0}, + [7557] = {.lex_state = 0}, [7558] = {.lex_state = 0}, [7559] = {.lex_state = 196}, [7560] = {.lex_state = 0}, - [7561] = {.lex_state = 196}, + [7561] = {.lex_state = 0}, [7562] = {.lex_state = 0}, [7563] = {.lex_state = 0}, - [7564] = {.lex_state = 171}, + [7564] = {.lex_state = 0}, [7565] = {.lex_state = 0}, - [7566] = {.lex_state = 339}, - [7567] = {.lex_state = 0}, - [7568] = {.lex_state = 339}, - [7569] = {.lex_state = 0}, + [7566] = {.lex_state = 196}, + [7567] = {.lex_state = 196}, + [7568] = {.lex_state = 199}, + [7569] = {.lex_state = 196}, [7570] = {.lex_state = 0}, [7571] = {.lex_state = 0}, [7572] = {.lex_state = 0}, [7573] = {.lex_state = 0}, [7574] = {.lex_state = 0}, - [7575] = {.lex_state = 0}, - [7576] = {.lex_state = 339}, - [7577] = {.lex_state = 0}, + [7575] = {.lex_state = 196}, + [7576] = {.lex_state = 199}, + [7577] = {.lex_state = 199}, [7578] = {.lex_state = 0}, - [7579] = {.lex_state = 339}, + [7579] = {.lex_state = 0}, [7580] = {.lex_state = 0}, - [7581] = {.lex_state = 0}, - [7582] = {.lex_state = 339}, + [7581] = {.lex_state = 196}, + [7582] = {.lex_state = 0}, [7583] = {.lex_state = 0}, [7584] = {.lex_state = 0}, - [7585] = {.lex_state = 0}, - [7586] = {.lex_state = 0}, - [7587] = {.lex_state = 0}, - [7588] = {.lex_state = 112}, - [7589] = {.lex_state = 339}, + [7585] = {.lex_state = 196}, + [7586] = {.lex_state = 199}, + [7587] = {.lex_state = 199}, + [7588] = {.lex_state = 199}, + [7589] = {.lex_state = 199}, [7590] = {.lex_state = 0}, - [7591] = {.lex_state = 196}, - [7592] = {.lex_state = 196}, - [7593] = {.lex_state = 339}, + [7591] = {.lex_state = 0}, + [7592] = {.lex_state = 199}, + [7593] = {.lex_state = 199}, [7594] = {.lex_state = 0}, - [7595] = {.lex_state = 0}, + [7595] = {.lex_state = 199}, [7596] = {.lex_state = 0}, - [7597] = {.lex_state = 0}, + [7597] = {.lex_state = 196}, [7598] = {.lex_state = 0}, - [7599] = {.lex_state = 0}, + [7599] = {.lex_state = 171}, [7600] = {.lex_state = 0}, [7601] = {.lex_state = 0}, - [7602] = {.lex_state = 0}, - [7603] = {.lex_state = 339}, + [7602] = {.lex_state = 217}, + [7603] = {.lex_state = 0}, [7604] = {.lex_state = 0}, [7605] = {.lex_state = 0}, [7606] = {.lex_state = 0}, @@ -29679,388 +29829,388 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7608] = {.lex_state = 0}, [7609] = {.lex_state = 0}, [7610] = {.lex_state = 0}, - [7611] = {.lex_state = 339}, + [7611] = {.lex_state = 0}, [7612] = {.lex_state = 0}, [7613] = {.lex_state = 0}, [7614] = {.lex_state = 0}, [7615] = {.lex_state = 0}, - [7616] = {.lex_state = 0}, - [7617] = {.lex_state = 0}, + [7616] = {.lex_state = 199}, + [7617] = {.lex_state = 199}, [7618] = {.lex_state = 0}, [7619] = {.lex_state = 0}, - [7620] = {.lex_state = 0}, - [7621] = {.lex_state = 0}, - [7622] = {.lex_state = 0}, - [7623] = {.lex_state = 0}, - [7624] = {.lex_state = 0}, - [7625] = {.lex_state = 0}, - [7626] = {.lex_state = 0}, - [7627] = {.lex_state = 0}, + [7620] = {.lex_state = 339}, + [7621] = {.lex_state = 171}, + [7622] = {.lex_state = 171}, + [7623] = {.lex_state = 199}, + [7624] = {.lex_state = 196}, + [7625] = {.lex_state = 199}, + [7626] = {.lex_state = 199}, + [7627] = {.lex_state = 199}, [7628] = {.lex_state = 0}, - [7629] = {.lex_state = 196}, - [7630] = {.lex_state = 339}, + [7629] = {.lex_state = 0}, + [7630] = {.lex_state = 0}, [7631] = {.lex_state = 0}, - [7632] = {.lex_state = 339}, + [7632] = {.lex_state = 196}, [7633] = {.lex_state = 0}, [7634] = {.lex_state = 0}, [7635] = {.lex_state = 0}, - [7636] = {.lex_state = 112}, - [7637] = {.lex_state = 196}, - [7638] = {.lex_state = 339}, + [7636] = {.lex_state = 196}, + [7637] = {.lex_state = 199}, + [7638] = {.lex_state = 196}, [7639] = {.lex_state = 0}, - [7640] = {.lex_state = 0}, - [7641] = {.lex_state = 0}, - [7642] = {.lex_state = 339}, + [7640] = {.lex_state = 339}, + [7641] = {.lex_state = 199}, + [7642] = {.lex_state = 0}, [7643] = {.lex_state = 0}, - [7644] = {.lex_state = 339}, + [7644] = {.lex_state = 196}, [7645] = {.lex_state = 0}, - [7646] = {.lex_state = 112}, + [7646] = {.lex_state = 0}, [7647] = {.lex_state = 0}, - [7648] = {.lex_state = 0}, + [7648] = {.lex_state = 196}, [7649] = {.lex_state = 0}, [7650] = {.lex_state = 0}, - [7651] = {.lex_state = 196}, - [7652] = {.lex_state = 0}, - [7653] = {.lex_state = 339}, - [7654] = {.lex_state = 339}, + [7651] = {.lex_state = 0}, + [7652] = {.lex_state = 196}, + [7653] = {.lex_state = 0}, + [7654] = {.lex_state = 0}, [7655] = {.lex_state = 0}, [7656] = {.lex_state = 0}, - [7657] = {.lex_state = 196}, - [7658] = {.lex_state = 339}, - [7659] = {.lex_state = 339}, + [7657] = {.lex_state = 0}, + [7658] = {.lex_state = 196}, + [7659] = {.lex_state = 171}, [7660] = {.lex_state = 0}, - [7661] = {.lex_state = 339}, - [7662] = {.lex_state = 196}, - [7663] = {.lex_state = 339}, - [7664] = {.lex_state = 0}, - [7665] = {.lex_state = 0}, - [7666] = {.lex_state = 112}, + [7661] = {.lex_state = 0}, + [7662] = {.lex_state = 0}, + [7663] = {.lex_state = 0}, + [7664] = {.lex_state = 199}, + [7665] = {.lex_state = 196}, + [7666] = {.lex_state = 0}, [7667] = {.lex_state = 0}, [7668] = {.lex_state = 196}, - [7669] = {.lex_state = 339}, - [7670] = {.lex_state = 339}, + [7669] = {.lex_state = 199}, + [7670] = {.lex_state = 199}, [7671] = {.lex_state = 0}, [7672] = {.lex_state = 0}, - [7673] = {.lex_state = 0}, + [7673] = {.lex_state = 196}, [7674] = {.lex_state = 0}, [7675] = {.lex_state = 0}, - [7676] = {.lex_state = 0}, - [7677] = {.lex_state = 339}, - [7678] = {.lex_state = 112}, - [7679] = {.lex_state = 339}, + [7676] = {.lex_state = 196}, + [7677] = {.lex_state = 0}, + [7678] = {.lex_state = 0}, + [7679] = {.lex_state = 0}, [7680] = {.lex_state = 0}, - [7681] = {.lex_state = 112}, - [7682] = {.lex_state = 0}, - [7683] = {.lex_state = 196}, + [7681] = {.lex_state = 0}, + [7682] = {.lex_state = 196}, + [7683] = {.lex_state = 0}, [7684] = {.lex_state = 0}, - [7685] = {.lex_state = 112}, - [7686] = {.lex_state = 0}, - [7687] = {.lex_state = 339}, + [7685] = {.lex_state = 196}, + [7686] = {.lex_state = 199}, + [7687] = {.lex_state = 196}, [7688] = {.lex_state = 0}, [7689] = {.lex_state = 0}, - [7690] = {.lex_state = 171}, - [7691] = {.lex_state = 339}, + [7690] = {.lex_state = 0}, + [7691] = {.lex_state = 0}, [7692] = {.lex_state = 0}, [7693] = {.lex_state = 0}, - [7694] = {.lex_state = 0}, + [7694] = {.lex_state = 339}, [7695] = {.lex_state = 0}, [7696] = {.lex_state = 0}, - [7697] = {.lex_state = 339}, - [7698] = {.lex_state = 0}, + [7697] = {.lex_state = 0}, + [7698] = {.lex_state = 196}, [7699] = {.lex_state = 0}, - [7700] = {.lex_state = 339}, + [7700] = {.lex_state = 0}, [7701] = {.lex_state = 339}, [7702] = {.lex_state = 339}, [7703] = {.lex_state = 0}, - [7704] = {.lex_state = 196}, + [7704] = {.lex_state = 0}, [7705] = {.lex_state = 339}, - [7706] = {.lex_state = 0}, - [7707] = {.lex_state = 339}, - [7708] = {.lex_state = 339}, + [7706] = {.lex_state = 196}, + [7707] = {.lex_state = 0}, + [7708] = {.lex_state = 112}, [7709] = {.lex_state = 0}, [7710] = {.lex_state = 0}, [7711] = {.lex_state = 0}, - [7712] = {.lex_state = 339}, - [7713] = {.lex_state = 339}, - [7714] = {.lex_state = 339}, - [7715] = {.lex_state = 339}, + [7712] = {.lex_state = 0}, + [7713] = {.lex_state = 0}, + [7714] = {.lex_state = 0}, + [7715] = {.lex_state = 0}, [7716] = {.lex_state = 0}, [7717] = {.lex_state = 0}, [7718] = {.lex_state = 0}, [7719] = {.lex_state = 0}, - [7720] = {.lex_state = 339}, + [7720] = {.lex_state = 0}, [7721] = {.lex_state = 0}, - [7722] = {.lex_state = 0}, + [7722] = {.lex_state = 339}, [7723] = {.lex_state = 0}, - [7724] = {.lex_state = 339, .external_lex_state = 2}, - [7725] = {.lex_state = 0}, - [7726] = {.lex_state = 339}, + [7724] = {.lex_state = 339}, + [7725] = {.lex_state = 339}, + [7726] = {.lex_state = 0}, [7727] = {.lex_state = 0}, [7728] = {.lex_state = 0}, [7729] = {.lex_state = 0}, [7730] = {.lex_state = 0}, - [7731] = {.lex_state = 196}, - [7732] = {.lex_state = 339}, + [7731] = {.lex_state = 0}, + [7732] = {.lex_state = 0}, [7733] = {.lex_state = 0}, - [7734] = {.lex_state = 0}, + [7734] = {.lex_state = 196}, [7735] = {.lex_state = 0}, - [7736] = {.lex_state = 339}, - [7737] = {.lex_state = 339}, - [7738] = {.lex_state = 339}, - [7739] = {.lex_state = 112}, + [7736] = {.lex_state = 0}, + [7737] = {.lex_state = 0}, + [7738] = {.lex_state = 0}, + [7739] = {.lex_state = 0}, [7740] = {.lex_state = 0}, - [7741] = {.lex_state = 339}, - [7742] = {.lex_state = 171}, - [7743] = {.lex_state = 0}, + [7741] = {.lex_state = 0}, + [7742] = {.lex_state = 0}, + [7743] = {.lex_state = 171}, [7744] = {.lex_state = 0}, - [7745] = {.lex_state = 339}, + [7745] = {.lex_state = 0}, [7746] = {.lex_state = 0}, - [7747] = {.lex_state = 0}, + [7747] = {.lex_state = 196}, [7748] = {.lex_state = 339}, - [7749] = {.lex_state = 339}, + [7749] = {.lex_state = 0}, [7750] = {.lex_state = 0}, - [7751] = {.lex_state = 0}, - [7752] = {.lex_state = 196}, - [7753] = {.lex_state = 0}, + [7751] = {.lex_state = 339}, + [7752] = {.lex_state = 0}, + [7753] = {.lex_state = 339}, [7754] = {.lex_state = 112}, [7755] = {.lex_state = 0}, - [7756] = {.lex_state = 339}, - [7757] = {.lex_state = 0}, - [7758] = {.lex_state = 0}, - [7759] = {.lex_state = 339}, + [7756] = {.lex_state = 0}, + [7757] = {.lex_state = 196}, + [7758] = {.lex_state = 112}, + [7759] = {.lex_state = 196}, [7760] = {.lex_state = 0}, [7761] = {.lex_state = 0}, - [7762] = {.lex_state = 196}, + [7762] = {.lex_state = 0}, [7763] = {.lex_state = 0}, - [7764] = {.lex_state = 196}, - [7765] = {.lex_state = 339}, - [7766] = {.lex_state = 0}, + [7764] = {.lex_state = 0}, + [7765] = {.lex_state = 0}, + [7766] = {.lex_state = 339}, [7767] = {.lex_state = 0}, [7768] = {.lex_state = 0}, - [7769] = {.lex_state = 0}, - [7770] = {.lex_state = 112}, - [7771] = {.lex_state = 339}, + [7769] = {.lex_state = 196}, + [7770] = {.lex_state = 0}, + [7771] = {.lex_state = 0}, [7772] = {.lex_state = 0}, [7773] = {.lex_state = 0}, [7774] = {.lex_state = 0}, [7775] = {.lex_state = 0}, [7776] = {.lex_state = 0}, - [7777] = {.lex_state = 0}, + [7777] = {.lex_state = 339}, [7778] = {.lex_state = 0}, - [7779] = {.lex_state = 112}, + [7779] = {.lex_state = 0}, [7780] = {.lex_state = 0}, - [7781] = {.lex_state = 339}, - [7782] = {.lex_state = 0}, + [7781] = {.lex_state = 0}, + [7782] = {.lex_state = 339}, [7783] = {.lex_state = 0}, - [7784] = {.lex_state = 339}, + [7784] = {.lex_state = 0}, [7785] = {.lex_state = 0}, - [7786] = {.lex_state = 339}, - [7787] = {.lex_state = 339}, - [7788] = {.lex_state = 0}, - [7789] = {.lex_state = 196}, - [7790] = {.lex_state = 0}, + [7786] = {.lex_state = 0}, + [7787] = {.lex_state = 0}, + [7788] = {.lex_state = 339}, + [7789] = {.lex_state = 0}, + [7790] = {.lex_state = 339}, [7791] = {.lex_state = 0}, [7792] = {.lex_state = 0}, - [7793] = {.lex_state = 112}, - [7794] = {.lex_state = 0}, + [7793] = {.lex_state = 0}, + [7794] = {.lex_state = 196}, [7795] = {.lex_state = 0}, - [7796] = {.lex_state = 0}, - [7797] = {.lex_state = 112}, - [7798] = {.lex_state = 0}, - [7799] = {.lex_state = 339}, + [7796] = {.lex_state = 112}, + [7797] = {.lex_state = 339}, + [7798] = {.lex_state = 339}, + [7799] = {.lex_state = 0}, [7800] = {.lex_state = 0}, - [7801] = {.lex_state = 0}, - [7802] = {.lex_state = 339}, + [7801] = {.lex_state = 339}, + [7802] = {.lex_state = 0}, [7803] = {.lex_state = 0}, [7804] = {.lex_state = 0}, [7805] = {.lex_state = 0}, [7806] = {.lex_state = 339}, [7807] = {.lex_state = 339}, [7808] = {.lex_state = 339}, - [7809] = {.lex_state = 0}, + [7809] = {.lex_state = 339}, [7810] = {.lex_state = 0}, [7811] = {.lex_state = 0}, [7812] = {.lex_state = 0}, [7813] = {.lex_state = 0}, [7814] = {.lex_state = 0}, - [7815] = {.lex_state = 196}, + [7815] = {.lex_state = 339}, [7816] = {.lex_state = 0}, [7817] = {.lex_state = 0}, [7818] = {.lex_state = 339}, [7819] = {.lex_state = 0}, - [7820] = {.lex_state = 339}, - [7821] = {.lex_state = 196}, - [7822] = {.lex_state = 112}, - [7823] = {.lex_state = 196}, + [7820] = {.lex_state = 0}, + [7821] = {.lex_state = 0}, + [7822] = {.lex_state = 339}, + [7823] = {.lex_state = 112}, [7824] = {.lex_state = 0}, - [7825] = {.lex_state = 0}, + [7825] = {.lex_state = 339}, [7826] = {.lex_state = 0}, [7827] = {.lex_state = 0}, [7828] = {.lex_state = 0}, [7829] = {.lex_state = 196}, - [7830] = {.lex_state = 112}, + [7830] = {.lex_state = 339}, [7831] = {.lex_state = 0}, [7832] = {.lex_state = 0}, [7833] = {.lex_state = 0}, - [7834] = {.lex_state = 339}, - [7835] = {.lex_state = 0}, - [7836] = {.lex_state = 0}, - [7837] = {.lex_state = 0}, - [7838] = {.lex_state = 339}, + [7834] = {.lex_state = 196}, + [7835] = {.lex_state = 339}, + [7836] = {.lex_state = 339}, + [7837] = {.lex_state = 339}, + [7838] = {.lex_state = 0}, [7839] = {.lex_state = 0}, - [7840] = {.lex_state = 339}, - [7841] = {.lex_state = 0}, - [7842] = {.lex_state = 0}, - [7843] = {.lex_state = 0}, + [7840] = {.lex_state = 112}, + [7841] = {.lex_state = 196}, + [7842] = {.lex_state = 196}, + [7843] = {.lex_state = 339}, [7844] = {.lex_state = 0}, - [7845] = {.lex_state = 0}, - [7846] = {.lex_state = 0}, + [7845] = {.lex_state = 339}, + [7846] = {.lex_state = 171}, [7847] = {.lex_state = 0}, - [7848] = {.lex_state = 0}, - [7849] = {.lex_state = 171}, - [7850] = {.lex_state = 0}, - [7851] = {.lex_state = 0}, + [7848] = {.lex_state = 339}, + [7849] = {.lex_state = 0}, + [7850] = {.lex_state = 339}, + [7851] = {.lex_state = 339}, [7852] = {.lex_state = 0}, - [7853] = {.lex_state = 0}, + [7853] = {.lex_state = 339}, [7854] = {.lex_state = 0}, - [7855] = {.lex_state = 339}, + [7855] = {.lex_state = 0}, [7856] = {.lex_state = 0}, [7857] = {.lex_state = 0}, - [7858] = {.lex_state = 0}, + [7858] = {.lex_state = 339}, [7859] = {.lex_state = 0}, - [7860] = {.lex_state = 339}, - [7861] = {.lex_state = 196}, + [7860] = {.lex_state = 196}, + [7861] = {.lex_state = 339}, [7862] = {.lex_state = 0}, - [7863] = {.lex_state = 0}, + [7863] = {.lex_state = 339}, [7864] = {.lex_state = 0}, - [7865] = {.lex_state = 0}, + [7865] = {.lex_state = 339}, [7866] = {.lex_state = 0}, [7867] = {.lex_state = 0}, [7868] = {.lex_state = 0}, - [7869] = {.lex_state = 0}, - [7870] = {.lex_state = 0}, + [7869] = {.lex_state = 339}, + [7870] = {.lex_state = 339}, [7871] = {.lex_state = 0}, [7872] = {.lex_state = 0}, - [7873] = {.lex_state = 339}, - [7874] = {.lex_state = 0}, + [7873] = {.lex_state = 0}, + [7874] = {.lex_state = 112}, [7875] = {.lex_state = 339, .external_lex_state = 2}, [7876] = {.lex_state = 196}, [7877] = {.lex_state = 339}, [7878] = {.lex_state = 0}, - [7879] = {.lex_state = 0}, - [7880] = {.lex_state = 0}, + [7879] = {.lex_state = 112}, + [7880] = {.lex_state = 112}, [7881] = {.lex_state = 0}, - [7882] = {.lex_state = 0}, + [7882] = {.lex_state = 339}, [7883] = {.lex_state = 0}, - [7884] = {.lex_state = 0}, - [7885] = {.lex_state = 112}, + [7884] = {.lex_state = 196}, + [7885] = {.lex_state = 0}, [7886] = {.lex_state = 0}, - [7887] = {.lex_state = 339}, - [7888] = {.lex_state = 0}, - [7889] = {.lex_state = 0}, + [7887] = {.lex_state = 0}, + [7888] = {.lex_state = 339}, + [7889] = {.lex_state = 339}, [7890] = {.lex_state = 0}, [7891] = {.lex_state = 0}, [7892] = {.lex_state = 339}, - [7893] = {.lex_state = 0}, + [7893] = {.lex_state = 196}, [7894] = {.lex_state = 0}, - [7895] = {.lex_state = 0}, + [7895] = {.lex_state = 339}, [7896] = {.lex_state = 0}, - [7897] = {.lex_state = 112}, - [7898] = {.lex_state = 0}, + [7897] = {.lex_state = 0}, + [7898] = {.lex_state = 339}, [7899] = {.lex_state = 0}, - [7900] = {.lex_state = 339, .external_lex_state = 2}, - [7901] = {.lex_state = 0}, + [7900] = {.lex_state = 196}, + [7901] = {.lex_state = 339}, [7902] = {.lex_state = 0}, - [7903] = {.lex_state = 0}, + [7903] = {.lex_state = 196}, [7904] = {.lex_state = 0}, - [7905] = {.lex_state = 339, .external_lex_state = 2}, - [7906] = {.lex_state = 339, .external_lex_state = 2}, - [7907] = {.lex_state = 339, .external_lex_state = 2}, - [7908] = {.lex_state = 171}, - [7909] = {.lex_state = 339}, - [7910] = {.lex_state = 339, .external_lex_state = 2}, - [7911] = {.lex_state = 339, .external_lex_state = 2}, - [7912] = {.lex_state = 339, .external_lex_state = 2}, - [7913] = {.lex_state = 339, .external_lex_state = 2}, - [7914] = {.lex_state = 339, .external_lex_state = 2}, - [7915] = {.lex_state = 339, .external_lex_state = 2}, - [7916] = {.lex_state = 339, .external_lex_state = 2}, - [7917] = {.lex_state = 339, .external_lex_state = 2}, - [7918] = {.lex_state = 339, .external_lex_state = 2}, - [7919] = {.lex_state = 339, .external_lex_state = 2}, - [7920] = {.lex_state = 339, .external_lex_state = 2}, + [7905] = {.lex_state = 339}, + [7906] = {.lex_state = 0}, + [7907] = {.lex_state = 0}, + [7908] = {.lex_state = 0}, + [7909] = {.lex_state = 0}, + [7910] = {.lex_state = 0}, + [7911] = {.lex_state = 112}, + [7912] = {.lex_state = 339}, + [7913] = {.lex_state = 0}, + [7914] = {.lex_state = 196}, + [7915] = {.lex_state = 0}, + [7916] = {.lex_state = 0}, + [7917] = {.lex_state = 339}, + [7918] = {.lex_state = 0}, + [7919] = {.lex_state = 339}, + [7920] = {.lex_state = 0}, [7921] = {.lex_state = 0}, - [7922] = {.lex_state = 0}, - [7923] = {.lex_state = 173}, - [7924] = {.lex_state = 0}, - [7925] = {.lex_state = 0}, - [7926] = {.lex_state = 173}, - [7927] = {.lex_state = 0}, - [7928] = {.lex_state = 0}, + [7922] = {.lex_state = 339}, + [7923] = {.lex_state = 339}, + [7924] = {.lex_state = 112}, + [7925] = {.lex_state = 339}, + [7926] = {.lex_state = 0}, + [7927] = {.lex_state = 339}, + [7928] = {.lex_state = 339}, [7929] = {.lex_state = 0}, [7930] = {.lex_state = 0}, - [7931] = {.lex_state = 199}, - [7932] = {.lex_state = 113}, + [7931] = {.lex_state = 0}, + [7932] = {.lex_state = 0}, [7933] = {.lex_state = 0}, - [7934] = {.lex_state = 173}, - [7935] = {.lex_state = 173}, - [7936] = {.lex_state = 0}, - [7937] = {.lex_state = 0}, - [7938] = {.lex_state = 113}, + [7934] = {.lex_state = 0}, + [7935] = {.lex_state = 339}, + [7936] = {.lex_state = 339}, + [7937] = {.lex_state = 171}, + [7938] = {.lex_state = 0}, [7939] = {.lex_state = 0}, - [7940] = {.lex_state = 339}, + [7940] = {.lex_state = 0}, [7941] = {.lex_state = 0}, [7942] = {.lex_state = 0}, [7943] = {.lex_state = 0}, - [7944] = {.lex_state = 196}, - [7945] = {.lex_state = 113}, - [7946] = {.lex_state = 0}, + [7944] = {.lex_state = 0}, + [7945] = {.lex_state = 0}, + [7946] = {.lex_state = 171}, [7947] = {.lex_state = 0}, - [7948] = {.lex_state = 0}, + [7948] = {.lex_state = 196}, [7949] = {.lex_state = 0}, [7950] = {.lex_state = 0}, [7951] = {.lex_state = 0}, - [7952] = {.lex_state = 0}, + [7952] = {.lex_state = 339}, [7953] = {.lex_state = 0}, [7954] = {.lex_state = 0}, - [7955] = {.lex_state = 0, .external_lex_state = 2}, + [7955] = {.lex_state = 0}, [7956] = {.lex_state = 0}, - [7957] = {.lex_state = 0}, + [7957] = {.lex_state = 339}, [7958] = {.lex_state = 0}, - [7959] = {.lex_state = 196}, + [7959] = {.lex_state = 0}, [7960] = {.lex_state = 0}, [7961] = {.lex_state = 0}, - [7962] = {.lex_state = 196}, + [7962] = {.lex_state = 0}, [7963] = {.lex_state = 0}, [7964] = {.lex_state = 0}, [7965] = {.lex_state = 0}, - [7966] = {.lex_state = 0}, - [7967] = {.lex_state = 199}, - [7968] = {.lex_state = 171}, + [7966] = {.lex_state = 112}, + [7967] = {.lex_state = 339}, + [7968] = {.lex_state = 0}, [7969] = {.lex_state = 0}, - [7970] = {.lex_state = 339}, + [7970] = {.lex_state = 112}, [7971] = {.lex_state = 0}, [7972] = {.lex_state = 339}, [7973] = {.lex_state = 0}, - [7974] = {.lex_state = 0}, + [7974] = {.lex_state = 112}, [7975] = {.lex_state = 0}, [7976] = {.lex_state = 0}, - [7977] = {.lex_state = 339}, + [7977] = {.lex_state = 0}, [7978] = {.lex_state = 0}, - [7979] = {.lex_state = 196}, + [7979] = {.lex_state = 0}, [7980] = {.lex_state = 0}, [7981] = {.lex_state = 0}, [7982] = {.lex_state = 0}, - [7983] = {.lex_state = 199}, - [7984] = {.lex_state = 339}, + [7983] = {.lex_state = 112}, + [7984] = {.lex_state = 196}, [7985] = {.lex_state = 0}, [7986] = {.lex_state = 0}, - [7987] = {.lex_state = 0}, + [7987] = {.lex_state = 339}, [7988] = {.lex_state = 0}, [7989] = {.lex_state = 0}, [7990] = {.lex_state = 0}, [7991] = {.lex_state = 0}, - [7992] = {.lex_state = 0}, + [7992] = {.lex_state = 171}, [7993] = {.lex_state = 0}, [7994] = {.lex_state = 0}, [7995] = {.lex_state = 0}, @@ -30069,485 +30219,485 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7998] = {.lex_state = 0}, [7999] = {.lex_state = 0}, [8000] = {.lex_state = 0}, - [8001] = {.lex_state = 195}, - [8002] = {.lex_state = 239}, + [8001] = {.lex_state = 0}, + [8002] = {.lex_state = 0}, [8003] = {.lex_state = 0}, - [8004] = {.lex_state = 196}, - [8005] = {.lex_state = 196}, - [8006] = {.lex_state = 0}, - [8007] = {.lex_state = 0}, - [8008] = {.lex_state = 0}, + [8004] = {.lex_state = 0}, + [8005] = {.lex_state = 339, .external_lex_state = 2}, + [8006] = {.lex_state = 112}, + [8007] = {.lex_state = 339}, + [8008] = {.lex_state = 339}, [8009] = {.lex_state = 0}, [8010] = {.lex_state = 0}, - [8011] = {.lex_state = 199}, + [8011] = {.lex_state = 0}, [8012] = {.lex_state = 0}, - [8013] = {.lex_state = 199}, - [8014] = {.lex_state = 0}, - [8015] = {.lex_state = 196}, - [8016] = {.lex_state = 173}, - [8017] = {.lex_state = 196}, - [8018] = {.lex_state = 0}, - [8019] = {.lex_state = 339}, - [8020] = {.lex_state = 196}, - [8021] = {.lex_state = 339}, - [8022] = {.lex_state = 339}, + [8013] = {.lex_state = 0}, + [8014] = {.lex_state = 339}, + [8015] = {.lex_state = 339}, + [8016] = {.lex_state = 196}, + [8017] = {.lex_state = 0}, + [8018] = {.lex_state = 339}, + [8019] = {.lex_state = 0}, + [8020] = {.lex_state = 0}, + [8021] = {.lex_state = 0}, + [8022] = {.lex_state = 0}, [8023] = {.lex_state = 0}, - [8024] = {.lex_state = 0}, + [8024] = {.lex_state = 112}, [8025] = {.lex_state = 0}, [8026] = {.lex_state = 0}, [8027] = {.lex_state = 0}, - [8028] = {.lex_state = 339}, - [8029] = {.lex_state = 196}, + [8028] = {.lex_state = 0}, + [8029] = {.lex_state = 339}, [8030] = {.lex_state = 0}, - [8031] = {.lex_state = 113}, - [8032] = {.lex_state = 113}, - [8033] = {.lex_state = 199}, + [8031] = {.lex_state = 0}, + [8032] = {.lex_state = 339, .external_lex_state = 2}, + [8033] = {.lex_state = 0}, [8034] = {.lex_state = 0}, - [8035] = {.lex_state = 199}, - [8036] = {.lex_state = 199}, - [8037] = {.lex_state = 0}, - [8038] = {.lex_state = 0}, - [8039] = {.lex_state = 0}, + [8035] = {.lex_state = 0}, + [8036] = {.lex_state = 0}, + [8037] = {.lex_state = 339, .external_lex_state = 2}, + [8038] = {.lex_state = 339, .external_lex_state = 2}, + [8039] = {.lex_state = 339, .external_lex_state = 2}, [8040] = {.lex_state = 0}, - [8041] = {.lex_state = 0}, - [8042] = {.lex_state = 113}, - [8043] = {.lex_state = 339}, - [8044] = {.lex_state = 0}, - [8045] = {.lex_state = 196}, - [8046] = {.lex_state = 0}, - [8047] = {.lex_state = 0}, - [8048] = {.lex_state = 0}, - [8049] = {.lex_state = 339}, - [8050] = {.lex_state = 0}, - [8051] = {.lex_state = 0}, + [8041] = {.lex_state = 339, .external_lex_state = 2}, + [8042] = {.lex_state = 339, .external_lex_state = 2}, + [8043] = {.lex_state = 339, .external_lex_state = 2}, + [8044] = {.lex_state = 339, .external_lex_state = 2}, + [8045] = {.lex_state = 339, .external_lex_state = 2}, + [8046] = {.lex_state = 339, .external_lex_state = 2}, + [8047] = {.lex_state = 339, .external_lex_state = 2}, + [8048] = {.lex_state = 339, .external_lex_state = 2}, + [8049] = {.lex_state = 339, .external_lex_state = 2}, + [8050] = {.lex_state = 339, .external_lex_state = 2}, + [8051] = {.lex_state = 339, .external_lex_state = 2}, [8052] = {.lex_state = 0}, [8053] = {.lex_state = 0}, - [8054] = {.lex_state = 0}, - [8055] = {.lex_state = 196}, + [8054] = {.lex_state = 196}, + [8055] = {.lex_state = 0}, [8056] = {.lex_state = 0}, - [8057] = {.lex_state = 0}, - [8058] = {.lex_state = 0}, + [8057] = {.lex_state = 196}, + [8058] = {.lex_state = 196}, [8059] = {.lex_state = 0}, [8060] = {.lex_state = 0}, [8061] = {.lex_state = 0}, [8062] = {.lex_state = 0}, [8063] = {.lex_state = 0}, - [8064] = {.lex_state = 0}, - [8065] = {.lex_state = 171}, + [8064] = {.lex_state = 113}, + [8065] = {.lex_state = 0}, [8066] = {.lex_state = 0}, - [8067] = {.lex_state = 339}, - [8068] = {.lex_state = 196}, - [8069] = {.lex_state = 196}, - [8070] = {.lex_state = 0}, - [8071] = {.lex_state = 0}, + [8067] = {.lex_state = 173}, + [8068] = {.lex_state = 0}, + [8069] = {.lex_state = 0, .external_lex_state = 2}, + [8070] = {.lex_state = 113}, + [8071] = {.lex_state = 196}, [8072] = {.lex_state = 0}, [8073] = {.lex_state = 196}, [8074] = {.lex_state = 0}, [8075] = {.lex_state = 0}, - [8076] = {.lex_state = 199}, + [8076] = {.lex_state = 0}, [8077] = {.lex_state = 0}, - [8078] = {.lex_state = 0}, - [8079] = {.lex_state = 0, .external_lex_state = 2}, + [8078] = {.lex_state = 339}, + [8079] = {.lex_state = 0}, [8080] = {.lex_state = 0}, - [8081] = {.lex_state = 0}, - [8082] = {.lex_state = 0}, - [8083] = {.lex_state = 196}, - [8084] = {.lex_state = 339}, + [8081] = {.lex_state = 196}, + [8082] = {.lex_state = 196}, + [8083] = {.lex_state = 0}, + [8084] = {.lex_state = 199}, [8085] = {.lex_state = 0}, [8086] = {.lex_state = 0}, - [8087] = {.lex_state = 196}, + [8087] = {.lex_state = 113}, [8088] = {.lex_state = 0}, - [8089] = {.lex_state = 0}, + [8089] = {.lex_state = 113}, [8090] = {.lex_state = 0}, [8091] = {.lex_state = 0}, [8092] = {.lex_state = 0}, - [8093] = {.lex_state = 113}, - [8094] = {.lex_state = 173}, - [8095] = {.lex_state = 196}, - [8096] = {.lex_state = 199}, - [8097] = {.lex_state = 0}, + [8093] = {.lex_state = 196}, + [8094] = {.lex_state = 0}, + [8095] = {.lex_state = 0}, + [8096] = {.lex_state = 196}, + [8097] = {.lex_state = 339}, [8098] = {.lex_state = 0}, - [8099] = {.lex_state = 113}, + [8099] = {.lex_state = 173}, [8100] = {.lex_state = 0}, - [8101] = {.lex_state = 196}, - [8102] = {.lex_state = 0}, - [8103] = {.lex_state = 0}, + [8101] = {.lex_state = 0}, + [8102] = {.lex_state = 339}, + [8103] = {.lex_state = 173}, [8104] = {.lex_state = 0}, - [8105] = {.lex_state = 0}, - [8106] = {.lex_state = 339}, + [8105] = {.lex_state = 196}, + [8106] = {.lex_state = 0}, [8107] = {.lex_state = 0}, [8108] = {.lex_state = 0}, - [8109] = {.lex_state = 0}, - [8110] = {.lex_state = 0}, - [8111] = {.lex_state = 196}, - [8112] = {.lex_state = 0}, - [8113] = {.lex_state = 339}, - [8114] = {.lex_state = 0}, - [8115] = {.lex_state = 0}, - [8116] = {.lex_state = 173}, + [8109] = {.lex_state = 173}, + [8110] = {.lex_state = 113}, + [8111] = {.lex_state = 0}, + [8112] = {.lex_state = 339}, + [8113] = {.lex_state = 0}, + [8114] = {.lex_state = 196}, + [8115] = {.lex_state = 113}, + [8116] = {.lex_state = 0}, [8117] = {.lex_state = 0}, - [8118] = {.lex_state = 0}, - [8119] = {.lex_state = 0}, - [8120] = {.lex_state = 196}, - [8121] = {.lex_state = 339}, - [8122] = {.lex_state = 0}, - [8123] = {.lex_state = 339}, - [8124] = {.lex_state = 0}, - [8125] = {.lex_state = 0}, + [8118] = {.lex_state = 196}, + [8119] = {.lex_state = 196}, + [8120] = {.lex_state = 0}, + [8121] = {.lex_state = 0}, + [8122] = {.lex_state = 113}, + [8123] = {.lex_state = 0}, + [8124] = {.lex_state = 196}, + [8125] = {.lex_state = 173}, [8126] = {.lex_state = 0}, [8127] = {.lex_state = 0}, [8128] = {.lex_state = 0}, - [8129] = {.lex_state = 0}, - [8130] = {.lex_state = 196}, + [8129] = {.lex_state = 196}, + [8130] = {.lex_state = 0}, [8131] = {.lex_state = 0}, [8132] = {.lex_state = 0}, [8133] = {.lex_state = 0}, [8134] = {.lex_state = 0}, - [8135] = {.lex_state = 0}, - [8136] = {.lex_state = 196}, + [8135] = {.lex_state = 339}, + [8136] = {.lex_state = 0}, [8137] = {.lex_state = 0}, - [8138] = {.lex_state = 171}, - [8139] = {.lex_state = 113}, + [8138] = {.lex_state = 173}, + [8139] = {.lex_state = 199}, [8140] = {.lex_state = 0}, - [8141] = {.lex_state = 0}, + [8141] = {.lex_state = 196}, [8142] = {.lex_state = 0}, [8143] = {.lex_state = 0}, [8144] = {.lex_state = 0}, - [8145] = {.lex_state = 0}, + [8145] = {.lex_state = 199}, [8146] = {.lex_state = 196}, [8147] = {.lex_state = 0}, - [8148] = {.lex_state = 339}, - [8149] = {.lex_state = 339}, - [8150] = {.lex_state = 0}, + [8148] = {.lex_state = 0}, + [8149] = {.lex_state = 0}, + [8150] = {.lex_state = 173}, [8151] = {.lex_state = 0}, - [8152] = {.lex_state = 0, .external_lex_state = 2}, - [8153] = {.lex_state = 0}, - [8154] = {.lex_state = 196}, + [8152] = {.lex_state = 196}, + [8153] = {.lex_state = 199}, + [8154] = {.lex_state = 0}, [8155] = {.lex_state = 0}, - [8156] = {.lex_state = 0}, + [8156] = {.lex_state = 196}, [8157] = {.lex_state = 339}, [8158] = {.lex_state = 0}, [8159] = {.lex_state = 0}, - [8160] = {.lex_state = 173}, - [8161] = {.lex_state = 339}, - [8162] = {.lex_state = 0}, + [8160] = {.lex_state = 0}, + [8161] = {.lex_state = 196}, + [8162] = {.lex_state = 113}, [8163] = {.lex_state = 0}, - [8164] = {.lex_state = 0}, - [8165] = {.lex_state = 196}, + [8164] = {.lex_state = 173}, + [8165] = {.lex_state = 0}, [8166] = {.lex_state = 0}, [8167] = {.lex_state = 0}, [8168] = {.lex_state = 0}, - [8169] = {.lex_state = 0}, + [8169] = {.lex_state = 196}, [8170] = {.lex_state = 0}, [8171] = {.lex_state = 0}, [8172] = {.lex_state = 0}, - [8173] = {.lex_state = 196}, - [8174] = {.lex_state = 113}, - [8175] = {.lex_state = 339}, + [8173] = {.lex_state = 0}, + [8174] = {.lex_state = 173}, + [8175] = {.lex_state = 0}, [8176] = {.lex_state = 0}, [8177] = {.lex_state = 113}, - [8178] = {.lex_state = 0}, - [8179] = {.lex_state = 173}, + [8178] = {.lex_state = 199}, + [8179] = {.lex_state = 0}, [8180] = {.lex_state = 0}, [8181] = {.lex_state = 0}, - [8182] = {.lex_state = 0, .external_lex_state = 2}, - [8183] = {.lex_state = 196}, + [8182] = {.lex_state = 0}, + [8183] = {.lex_state = 173}, [8184] = {.lex_state = 0}, - [8185] = {.lex_state = 0}, + [8185] = {.lex_state = 196}, [8186] = {.lex_state = 0}, - [8187] = {.lex_state = 196}, - [8188] = {.lex_state = 0}, - [8189] = {.lex_state = 0}, + [8187] = {.lex_state = 0}, + [8188] = {.lex_state = 196}, + [8189] = {.lex_state = 339}, [8190] = {.lex_state = 0}, [8191] = {.lex_state = 0}, [8192] = {.lex_state = 0}, - [8193] = {.lex_state = 196}, - [8194] = {.lex_state = 0}, + [8193] = {.lex_state = 0}, + [8194] = {.lex_state = 0, .external_lex_state = 2}, [8195] = {.lex_state = 0}, [8196] = {.lex_state = 0}, [8197] = {.lex_state = 0}, [8198] = {.lex_state = 0}, - [8199] = {.lex_state = 196}, + [8199] = {.lex_state = 0}, [8200] = {.lex_state = 0}, - [8201] = {.lex_state = 0}, - [8202] = {.lex_state = 173}, + [8201] = {.lex_state = 171}, + [8202] = {.lex_state = 196}, [8203] = {.lex_state = 0}, [8204] = {.lex_state = 0}, - [8205] = {.lex_state = 0, .external_lex_state = 2}, - [8206] = {.lex_state = 113}, - [8207] = {.lex_state = 196}, + [8205] = {.lex_state = 113}, + [8206] = {.lex_state = 0}, + [8207] = {.lex_state = 0}, [8208] = {.lex_state = 0}, - [8209] = {.lex_state = 199}, - [8210] = {.lex_state = 0}, - [8211] = {.lex_state = 0}, + [8209] = {.lex_state = 0}, + [8210] = {.lex_state = 196}, + [8211] = {.lex_state = 339}, [8212] = {.lex_state = 0}, - [8213] = {.lex_state = 173}, - [8214] = {.lex_state = 339}, + [8213] = {.lex_state = 196}, + [8214] = {.lex_state = 0}, [8215] = {.lex_state = 0}, - [8216] = {.lex_state = 113}, + [8216] = {.lex_state = 196}, [8217] = {.lex_state = 0}, - [8218] = {.lex_state = 0}, - [8219] = {.lex_state = 173}, - [8220] = {.lex_state = 196}, - [8221] = {.lex_state = 0}, - [8222] = {.lex_state = 173}, + [8218] = {.lex_state = 171}, + [8219] = {.lex_state = 196}, + [8220] = {.lex_state = 173}, + [8221] = {.lex_state = 339}, + [8222] = {.lex_state = 113}, [8223] = {.lex_state = 0}, [8224] = {.lex_state = 0}, - [8225] = {.lex_state = 339}, + [8225] = {.lex_state = 0}, [8226] = {.lex_state = 0}, - [8227] = {.lex_state = 339}, - [8228] = {.lex_state = 0}, - [8229] = {.lex_state = 173}, - [8230] = {.lex_state = 0}, + [8227] = {.lex_state = 113}, + [8228] = {.lex_state = 196}, + [8229] = {.lex_state = 0}, + [8230] = {.lex_state = 113}, [8231] = {.lex_state = 0}, [8232] = {.lex_state = 0}, - [8233] = {.lex_state = 173}, + [8233] = {.lex_state = 199}, [8234] = {.lex_state = 0}, [8235] = {.lex_state = 0}, - [8236] = {.lex_state = 0}, + [8236] = {.lex_state = 339}, [8237] = {.lex_state = 0}, [8238] = {.lex_state = 0}, [8239] = {.lex_state = 173}, [8240] = {.lex_state = 0}, - [8241] = {.lex_state = 196}, + [8241] = {.lex_state = 0}, [8242] = {.lex_state = 0}, [8243] = {.lex_state = 0}, - [8244] = {.lex_state = 113}, - [8245] = {.lex_state = 199}, + [8244] = {.lex_state = 173}, + [8245] = {.lex_state = 196}, [8246] = {.lex_state = 0}, - [8247] = {.lex_state = 173}, + [8247] = {.lex_state = 196}, [8248] = {.lex_state = 0}, - [8249] = {.lex_state = 196}, + [8249] = {.lex_state = 0}, [8250] = {.lex_state = 0}, - [8251] = {.lex_state = 0, .external_lex_state = 2}, - [8252] = {.lex_state = 0}, - [8253] = {.lex_state = 196}, - [8254] = {.lex_state = 174}, - [8255] = {.lex_state = 199}, + [8251] = {.lex_state = 0}, + [8252] = {.lex_state = 199}, + [8253] = {.lex_state = 0}, + [8254] = {.lex_state = 0}, + [8255] = {.lex_state = 113}, [8256] = {.lex_state = 0}, - [8257] = {.lex_state = 173}, - [8258] = {.lex_state = 0}, - [8259] = {.lex_state = 339}, + [8257] = {.lex_state = 0}, + [8258] = {.lex_state = 173}, + [8259] = {.lex_state = 0}, [8260] = {.lex_state = 0}, [8261] = {.lex_state = 196}, - [8262] = {.lex_state = 173}, + [8262] = {.lex_state = 0}, [8263] = {.lex_state = 0}, [8264] = {.lex_state = 0}, - [8265] = {.lex_state = 0}, - [8266] = {.lex_state = 0, .external_lex_state = 2}, - [8267] = {.lex_state = 0}, - [8268] = {.lex_state = 199}, - [8269] = {.lex_state = 173}, - [8270] = {.lex_state = 0}, + [8265] = {.lex_state = 173}, + [8266] = {.lex_state = 0}, + [8267] = {.lex_state = 0, .external_lex_state = 2}, + [8268] = {.lex_state = 0}, + [8269] = {.lex_state = 0}, + [8270] = {.lex_state = 199}, [8271] = {.lex_state = 0}, - [8272] = {.lex_state = 339}, + [8272] = {.lex_state = 0}, [8273] = {.lex_state = 0}, - [8274] = {.lex_state = 196}, + [8274] = {.lex_state = 0}, [8275] = {.lex_state = 0}, - [8276] = {.lex_state = 173}, - [8277] = {.lex_state = 0, .external_lex_state = 2}, - [8278] = {.lex_state = 339}, - [8279] = {.lex_state = 339}, + [8276] = {.lex_state = 0}, + [8277] = {.lex_state = 113}, + [8278] = {.lex_state = 0}, + [8279] = {.lex_state = 196}, [8280] = {.lex_state = 0}, - [8281] = {.lex_state = 0}, + [8281] = {.lex_state = 199}, [8282] = {.lex_state = 339}, [8283] = {.lex_state = 0}, - [8284] = {.lex_state = 0, .external_lex_state = 2}, + [8284] = {.lex_state = 173}, [8285] = {.lex_state = 0}, - [8286] = {.lex_state = 173}, + [8286] = {.lex_state = 339}, [8287] = {.lex_state = 0}, - [8288] = {.lex_state = 0, .external_lex_state = 2}, - [8289] = {.lex_state = 196}, + [8288] = {.lex_state = 0}, + [8289] = {.lex_state = 0}, [8290] = {.lex_state = 0}, - [8291] = {.lex_state = 0}, - [8292] = {.lex_state = 0, .external_lex_state = 2}, - [8293] = {.lex_state = 0}, - [8294] = {.lex_state = 0, .external_lex_state = 2}, - [8295] = {.lex_state = 0}, - [8296] = {.lex_state = 0, .external_lex_state = 2}, + [8291] = {.lex_state = 173}, + [8292] = {.lex_state = 0}, + [8293] = {.lex_state = 173}, + [8294] = {.lex_state = 0}, + [8295] = {.lex_state = 196}, + [8296] = {.lex_state = 173}, [8297] = {.lex_state = 0}, - [8298] = {.lex_state = 0, .external_lex_state = 2}, + [8298] = {.lex_state = 0}, [8299] = {.lex_state = 0}, - [8300] = {.lex_state = 0, .external_lex_state = 2}, + [8300] = {.lex_state = 339}, [8301] = {.lex_state = 0}, - [8302] = {.lex_state = 0, .external_lex_state = 2}, - [8303] = {.lex_state = 196}, + [8302] = {.lex_state = 0}, + [8303] = {.lex_state = 0}, [8304] = {.lex_state = 0}, - [8305] = {.lex_state = 0}, - [8306] = {.lex_state = 339}, - [8307] = {.lex_state = 0}, - [8308] = {.lex_state = 339}, - [8309] = {.lex_state = 339}, - [8310] = {.lex_state = 339}, + [8305] = {.lex_state = 195}, + [8306] = {.lex_state = 196}, + [8307] = {.lex_state = 196}, + [8308] = {.lex_state = 196}, + [8309] = {.lex_state = 173}, + [8310] = {.lex_state = 0}, [8311] = {.lex_state = 0}, - [8312] = {.lex_state = 196}, - [8313] = {.lex_state = 339}, - [8314] = {.lex_state = 0}, - [8315] = {.lex_state = 339}, + [8312] = {.lex_state = 0}, + [8313] = {.lex_state = 0}, + [8314] = {.lex_state = 196}, + [8315] = {.lex_state = 0}, [8316] = {.lex_state = 0}, [8317] = {.lex_state = 0}, - [8318] = {.lex_state = 0}, + [8318] = {.lex_state = 339}, [8319] = {.lex_state = 0}, [8320] = {.lex_state = 0}, - [8321] = {.lex_state = 0}, + [8321] = {.lex_state = 173}, [8322] = {.lex_state = 0}, - [8323] = {.lex_state = 196}, - [8324] = {.lex_state = 113}, + [8323] = {.lex_state = 339}, + [8324] = {.lex_state = 196}, [8325] = {.lex_state = 0}, - [8326] = {.lex_state = 173}, + [8326] = {.lex_state = 0}, [8327] = {.lex_state = 0}, [8328] = {.lex_state = 0}, [8329] = {.lex_state = 0}, - [8330] = {.lex_state = 0}, - [8331] = {.lex_state = 196}, - [8332] = {.lex_state = 0}, - [8333] = {.lex_state = 339}, + [8330] = {.lex_state = 0, .external_lex_state = 2}, + [8331] = {.lex_state = 199}, + [8332] = {.lex_state = 196}, + [8333] = {.lex_state = 0}, [8334] = {.lex_state = 0}, - [8335] = {.lex_state = 173}, + [8335] = {.lex_state = 239}, [8336] = {.lex_state = 0}, [8337] = {.lex_state = 199}, [8338] = {.lex_state = 0}, [8339] = {.lex_state = 339}, - [8340] = {.lex_state = 0, .external_lex_state = 3}, - [8341] = {.lex_state = 0}, - [8342] = {.lex_state = 0}, - [8343] = {.lex_state = 339}, - [8344] = {.lex_state = 339}, + [8340] = {.lex_state = 196}, + [8341] = {.lex_state = 339}, + [8342] = {.lex_state = 173}, + [8343] = {.lex_state = 0}, + [8344] = {.lex_state = 171}, [8345] = {.lex_state = 196}, [8346] = {.lex_state = 0}, [8347] = {.lex_state = 0}, [8348] = {.lex_state = 0}, [8349] = {.lex_state = 0}, - [8350] = {.lex_state = 173}, + [8350] = {.lex_state = 113}, [8351] = {.lex_state = 0}, - [8352] = {.lex_state = 0}, - [8353] = {.lex_state = 196}, + [8352] = {.lex_state = 339}, + [8353] = {.lex_state = 339}, [8354] = {.lex_state = 0}, - [8355] = {.lex_state = 0}, - [8356] = {.lex_state = 196}, - [8357] = {.lex_state = 0}, + [8355] = {.lex_state = 199}, + [8356] = {.lex_state = 0}, + [8357] = {.lex_state = 113}, [8358] = {.lex_state = 0}, - [8359] = {.lex_state = 113}, + [8359] = {.lex_state = 0}, [8360] = {.lex_state = 0}, - [8361] = {.lex_state = 173}, - [8362] = {.lex_state = 339}, - [8363] = {.lex_state = 339}, + [8361] = {.lex_state = 0}, + [8362] = {.lex_state = 0}, + [8363] = {.lex_state = 0}, [8364] = {.lex_state = 0}, - [8365] = {.lex_state = 339}, - [8366] = {.lex_state = 199}, + [8365] = {.lex_state = 0}, + [8366] = {.lex_state = 0}, [8367] = {.lex_state = 0}, - [8368] = {.lex_state = 113}, + [8368] = {.lex_state = 0}, [8369] = {.lex_state = 0}, - [8370] = {.lex_state = 113}, + [8370] = {.lex_state = 0}, [8371] = {.lex_state = 196}, - [8372] = {.lex_state = 0}, - [8373] = {.lex_state = 196}, - [8374] = {.lex_state = 171}, + [8372] = {.lex_state = 113}, + [8373] = {.lex_state = 0}, + [8374] = {.lex_state = 196}, [8375] = {.lex_state = 0}, - [8376] = {.lex_state = 0}, + [8376] = {.lex_state = 0, .external_lex_state = 2}, [8377] = {.lex_state = 0}, - [8378] = {.lex_state = 0}, - [8379] = {.lex_state = 196}, - [8380] = {.lex_state = 113}, - [8381] = {.lex_state = 0}, + [8378] = {.lex_state = 339}, + [8379] = {.lex_state = 339}, + [8380] = {.lex_state = 339}, + [8381] = {.lex_state = 339}, [8382] = {.lex_state = 0}, - [8383] = {.lex_state = 0}, - [8384] = {.lex_state = 113}, - [8385] = {.lex_state = 199}, - [8386] = {.lex_state = 199}, - [8387] = {.lex_state = 173}, + [8383] = {.lex_state = 196}, + [8384] = {.lex_state = 0}, + [8385] = {.lex_state = 0}, + [8386] = {.lex_state = 0}, + [8387] = {.lex_state = 339}, [8388] = {.lex_state = 339}, [8389] = {.lex_state = 0}, [8390] = {.lex_state = 0}, [8391] = {.lex_state = 0}, [8392] = {.lex_state = 0}, [8393] = {.lex_state = 0}, - [8394] = {.lex_state = 173}, - [8395] = {.lex_state = 0, .external_lex_state = 3}, + [8394] = {.lex_state = 339}, + [8395] = {.lex_state = 0, .external_lex_state = 2}, [8396] = {.lex_state = 0}, - [8397] = {.lex_state = 113}, + [8397] = {.lex_state = 0}, [8398] = {.lex_state = 339}, [8399] = {.lex_state = 0}, - [8400] = {.lex_state = 0}, + [8400] = {.lex_state = 196}, [8401] = {.lex_state = 0}, [8402] = {.lex_state = 0}, [8403] = {.lex_state = 0}, - [8404] = {.lex_state = 196}, - [8405] = {.lex_state = 113}, - [8406] = {.lex_state = 196}, - [8407] = {.lex_state = 173}, + [8404] = {.lex_state = 339}, + [8405] = {.lex_state = 339}, + [8406] = {.lex_state = 0}, + [8407] = {.lex_state = 199}, [8408] = {.lex_state = 0}, - [8409] = {.lex_state = 0}, - [8410] = {.lex_state = 0}, - [8411] = {.lex_state = 199}, - [8412] = {.lex_state = 199}, - [8413] = {.lex_state = 0}, + [8409] = {.lex_state = 196}, + [8410] = {.lex_state = 0, .external_lex_state = 2}, + [8411] = {.lex_state = 0}, + [8412] = {.lex_state = 0}, + [8413] = {.lex_state = 196}, [8414] = {.lex_state = 0}, - [8415] = {.lex_state = 0}, + [8415] = {.lex_state = 339}, [8416] = {.lex_state = 0}, - [8417] = {.lex_state = 339}, - [8418] = {.lex_state = 0}, + [8417] = {.lex_state = 0, .external_lex_state = 2}, + [8418] = {.lex_state = 173}, [8419] = {.lex_state = 0}, [8420] = {.lex_state = 0}, - [8421] = {.lex_state = 0}, + [8421] = {.lex_state = 0, .external_lex_state = 2}, [8422] = {.lex_state = 173}, - [8423] = {.lex_state = 113}, + [8423] = {.lex_state = 0}, [8424] = {.lex_state = 0}, - [8425] = {.lex_state = 173}, + [8425] = {.lex_state = 0, .external_lex_state = 2}, [8426] = {.lex_state = 0}, - [8427] = {.lex_state = 339}, + [8427] = {.lex_state = 0, .external_lex_state = 2}, [8428] = {.lex_state = 0}, - [8429] = {.lex_state = 0}, - [8430] = {.lex_state = 196}, - [8431] = {.lex_state = 0}, - [8432] = {.lex_state = 196}, - [8433] = {.lex_state = 173}, + [8429] = {.lex_state = 0, .external_lex_state = 2}, + [8430] = {.lex_state = 0}, + [8431] = {.lex_state = 0, .external_lex_state = 2}, + [8432] = {.lex_state = 0}, + [8433] = {.lex_state = 0, .external_lex_state = 2}, [8434] = {.lex_state = 0}, - [8435] = {.lex_state = 0}, - [8436] = {.lex_state = 0}, - [8437] = {.lex_state = 0}, + [8435] = {.lex_state = 0, .external_lex_state = 2}, + [8436] = {.lex_state = 173}, + [8437] = {.lex_state = 173}, [8438] = {.lex_state = 0}, - [8439] = {.lex_state = 0}, + [8439] = {.lex_state = 339}, [8440] = {.lex_state = 0}, - [8441] = {.lex_state = 0}, - [8442] = {.lex_state = 0}, - [8443] = {.lex_state = 0, .external_lex_state = 2}, + [8441] = {.lex_state = 339}, + [8442] = {.lex_state = 339}, + [8443] = {.lex_state = 339}, [8444] = {.lex_state = 0}, [8445] = {.lex_state = 0}, - [8446] = {.lex_state = 0}, - [8447] = {.lex_state = 0}, - [8448] = {.lex_state = 196}, + [8446] = {.lex_state = 339}, + [8447] = {.lex_state = 173}, + [8448] = {.lex_state = 339}, [8449] = {.lex_state = 0}, [8450] = {.lex_state = 0}, - [8451] = {.lex_state = 196}, + [8451] = {.lex_state = 0}, [8452] = {.lex_state = 0}, [8453] = {.lex_state = 0}, - [8454] = {.lex_state = 196}, - [8455] = {.lex_state = 0}, + [8454] = {.lex_state = 0}, + [8455] = {.lex_state = 196}, [8456] = {.lex_state = 0}, [8457] = {.lex_state = 0}, [8458] = {.lex_state = 0}, [8459] = {.lex_state = 0}, - [8460] = {.lex_state = 113}, + [8460] = {.lex_state = 0}, [8461] = {.lex_state = 0}, - [8462] = {.lex_state = 0, .external_lex_state = 3}, + [8462] = {.lex_state = 0}, [8463] = {.lex_state = 0}, - [8464] = {.lex_state = 199}, - [8465] = {.lex_state = 113}, - [8466] = {.lex_state = 0}, + [8464] = {.lex_state = 196}, + [8465] = {.lex_state = 0}, + [8466] = {.lex_state = 339}, [8467] = {.lex_state = 0}, [8468] = {.lex_state = 0}, - [8469] = {.lex_state = 173}, + [8469] = {.lex_state = 0}, [8470] = {.lex_state = 0}, [8471] = {.lex_state = 0}, - [8472] = {.lex_state = 173}, - [8473] = {.lex_state = 0}, + [8472] = {.lex_state = 339}, + [8473] = {.lex_state = 0, .external_lex_state = 3}, [8474] = {.lex_state = 0}, [8475] = {.lex_state = 0}, - [8476] = {.lex_state = 339}, - [8477] = {.lex_state = 0}, + [8476] = {.lex_state = 196}, + [8477] = {.lex_state = 339}, [8478] = {.lex_state = 0}, - [8479] = {.lex_state = 0}, + [8479] = {.lex_state = 196}, [8480] = {.lex_state = 0}, [8481] = {.lex_state = 0}, [8482] = {.lex_state = 0}, @@ -30555,357 +30705,490 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [8484] = {.lex_state = 0}, [8485] = {.lex_state = 0}, [8486] = {.lex_state = 196}, - [8487] = {.lex_state = 196}, + [8487] = {.lex_state = 0}, [8488] = {.lex_state = 0}, [8489] = {.lex_state = 196}, [8490] = {.lex_state = 0}, [8491] = {.lex_state = 0}, - [8492] = {.lex_state = 196}, + [8492] = {.lex_state = 0}, [8493] = {.lex_state = 0}, [8494] = {.lex_state = 0}, - [8495] = {.lex_state = 0}, - [8496] = {.lex_state = 0}, - [8497] = {.lex_state = 0}, + [8495] = {.lex_state = 173}, + [8496] = {.lex_state = 196}, + [8497] = {.lex_state = 173}, [8498] = {.lex_state = 0}, - [8499] = {.lex_state = 196}, - [8500] = {.lex_state = 196}, - [8501] = {.lex_state = 196}, - [8502] = {.lex_state = 0}, + [8499] = {.lex_state = 199}, + [8500] = {.lex_state = 199}, + [8501] = {.lex_state = 173}, + [8502] = {.lex_state = 173}, [8503] = {.lex_state = 0}, - [8504] = {.lex_state = 173}, + [8504] = {.lex_state = 339}, [8505] = {.lex_state = 0}, [8506] = {.lex_state = 113}, - [8507] = {.lex_state = 339}, - [8508] = {.lex_state = 339}, - [8509] = {.lex_state = 339}, - [8510] = {.lex_state = 339}, - [8511] = {.lex_state = 339}, - [8512] = {.lex_state = 196}, - [8513] = {.lex_state = 339}, - [8514] = {.lex_state = 173}, - [8515] = {.lex_state = 0}, - [8516] = {.lex_state = 339}, - [8517] = {.lex_state = 0}, - [8518] = {.lex_state = 173}, - [8519] = {.lex_state = 196}, - [8520] = {.lex_state = 196}, - [8521] = {.lex_state = 339}, - [8522] = {.lex_state = 339}, + [8507] = {.lex_state = 0}, + [8508] = {.lex_state = 196}, + [8509] = {.lex_state = 196}, + [8510] = {.lex_state = 196}, + [8511] = {.lex_state = 0}, + [8512] = {.lex_state = 0}, + [8513] = {.lex_state = 196}, + [8514] = {.lex_state = 0}, + [8515] = {.lex_state = 173}, + [8516] = {.lex_state = 0}, + [8517] = {.lex_state = 113}, + [8518] = {.lex_state = 0}, + [8519] = {.lex_state = 199}, + [8520] = {.lex_state = 0}, + [8521] = {.lex_state = 174}, + [8522] = {.lex_state = 0}, [8523] = {.lex_state = 173}, - [8524] = {.lex_state = 173}, - [8525] = {.lex_state = 339}, - [8526] = {.lex_state = 0, .external_lex_state = 3}, - [8527] = {.lex_state = 339}, - [8528] = {.lex_state = 173}, + [8524] = {.lex_state = 0}, + [8525] = {.lex_state = 199}, + [8526] = {.lex_state = 0}, + [8527] = {.lex_state = 199}, + [8528] = {.lex_state = 0}, [8529] = {.lex_state = 0}, [8530] = {.lex_state = 0}, [8531] = {.lex_state = 0}, [8532] = {.lex_state = 0}, - [8533] = {.lex_state = 0}, + [8533] = {.lex_state = 339}, [8534] = {.lex_state = 0}, [8535] = {.lex_state = 0}, - [8536] = {.lex_state = 199}, + [8536] = {.lex_state = 196}, [8537] = {.lex_state = 0}, [8538] = {.lex_state = 0}, - [8539] = {.lex_state = 339}, - [8540] = {.lex_state = 339}, - [8541] = {.lex_state = 339}, + [8539] = {.lex_state = 0}, + [8540] = {.lex_state = 0}, + [8541] = {.lex_state = 0}, [8542] = {.lex_state = 0}, - [8543] = {.lex_state = 339}, + [8543] = {.lex_state = 113}, [8544] = {.lex_state = 0}, [8545] = {.lex_state = 0}, - [8546] = {.lex_state = 196}, - [8547] = {.lex_state = 196}, - [8548] = {.lex_state = 339}, - [8549] = {.lex_state = 113}, - [8550] = {.lex_state = 0}, - [8551] = {.lex_state = 339}, - [8552] = {.lex_state = 0, .external_lex_state = 3}, - [8553] = {.lex_state = 0}, + [8546] = {.lex_state = 0}, + [8547] = {.lex_state = 0}, + [8548] = {.lex_state = 196}, + [8549] = {.lex_state = 0}, + [8550] = {.lex_state = 339}, + [8551] = {.lex_state = 0}, + [8552] = {.lex_state = 0}, + [8553] = {.lex_state = 196}, [8554] = {.lex_state = 0}, - [8555] = {.lex_state = 0}, - [8556] = {.lex_state = 0}, + [8555] = {.lex_state = 113}, + [8556] = {.lex_state = 173}, [8557] = {.lex_state = 0}, - [8558] = {.lex_state = 199}, - [8559] = {.lex_state = 196}, - [8560] = {.lex_state = 339}, - [8561] = {.lex_state = 339}, - [8562] = {.lex_state = 339}, + [8558] = {.lex_state = 0}, + [8559] = {.lex_state = 113}, + [8560] = {.lex_state = 0}, + [8561] = {.lex_state = 173}, + [8562] = {.lex_state = 0}, [8563] = {.lex_state = 0}, - [8564] = {.lex_state = 339}, + [8564] = {.lex_state = 196}, [8565] = {.lex_state = 196}, - [8566] = {.lex_state = 173}, - [8567] = {.lex_state = 196}, - [8568] = {.lex_state = 339}, + [8566] = {.lex_state = 0}, + [8567] = {.lex_state = 173}, + [8568] = {.lex_state = 171}, [8569] = {.lex_state = 0}, - [8570] = {.lex_state = 196}, - [8571] = {.lex_state = 339}, - [8572] = {.lex_state = 0, .external_lex_state = 3}, - [8573] = {.lex_state = 173}, - [8574] = {.lex_state = 0}, - [8575] = {.lex_state = 0}, + [8570] = {.lex_state = 0}, + [8571] = {.lex_state = 0}, + [8572] = {.lex_state = 0}, + [8573] = {.lex_state = 0}, + [8574] = {.lex_state = 196}, + [8575] = {.lex_state = 0, .external_lex_state = 3}, [8576] = {.lex_state = 0}, - [8577] = {.lex_state = 0}, - [8578] = {.lex_state = 199}, + [8577] = {.lex_state = 196}, + [8578] = {.lex_state = 339}, [8579] = {.lex_state = 0}, - [8580] = {.lex_state = 339}, - [8581] = {.lex_state = 339}, - [8582] = {.lex_state = 339}, - [8583] = {.lex_state = 196}, - [8584] = {.lex_state = 339}, + [8580] = {.lex_state = 173}, + [8581] = {.lex_state = 113}, + [8582] = {.lex_state = 173}, + [8583] = {.lex_state = 0}, + [8584] = {.lex_state = 0}, [8585] = {.lex_state = 0}, - [8586] = {.lex_state = 196}, - [8587] = {.lex_state = 339}, + [8586] = {.lex_state = 0}, + [8587] = {.lex_state = 0}, [8588] = {.lex_state = 0}, [8589] = {.lex_state = 0}, - [8590] = {.lex_state = 339}, - [8591] = {.lex_state = 0, .external_lex_state = 3}, - [8592] = {.lex_state = 339}, + [8590] = {.lex_state = 196}, + [8591] = {.lex_state = 173}, + [8592] = {.lex_state = 0}, [8593] = {.lex_state = 0}, - [8594] = {.lex_state = 0}, + [8594] = {.lex_state = 339}, [8595] = {.lex_state = 0}, [8596] = {.lex_state = 0}, - [8597] = {.lex_state = 199}, - [8598] = {.lex_state = 199}, - [8599] = {.lex_state = 339}, - [8600] = {.lex_state = 339}, + [8597] = {.lex_state = 339}, + [8598] = {.lex_state = 0}, + [8599] = {.lex_state = 0}, + [8600] = {.lex_state = 173}, [8601] = {.lex_state = 0}, - [8602] = {.lex_state = 339}, - [8603] = {.lex_state = 196}, - [8604] = {.lex_state = 171}, + [8602] = {.lex_state = 173}, + [8603] = {.lex_state = 199}, + [8604] = {.lex_state = 0}, [8605] = {.lex_state = 0}, - [8606] = {.lex_state = 0}, - [8607] = {.lex_state = 339}, - [8608] = {.lex_state = 0, .external_lex_state = 3}, + [8606] = {.lex_state = 113}, + [8607] = {.lex_state = 0}, + [8608] = {.lex_state = 0}, [8609] = {.lex_state = 0}, - [8610] = {.lex_state = 0}, + [8610] = {.lex_state = 196}, [8611] = {.lex_state = 0}, [8612] = {.lex_state = 0}, [8613] = {.lex_state = 0}, - [8614] = {.lex_state = 339}, - [8615] = {.lex_state = 339}, + [8614] = {.lex_state = 173}, + [8615] = {.lex_state = 173}, [8616] = {.lex_state = 339}, [8617] = {.lex_state = 0}, - [8618] = {.lex_state = 0, .external_lex_state = 3}, + [8618] = {.lex_state = 0}, [8619] = {.lex_state = 0}, - [8620] = {.lex_state = 0}, - [8621] = {.lex_state = 0}, - [8622] = {.lex_state = 113}, + [8620] = {.lex_state = 196}, + [8621] = {.lex_state = 196}, + [8622] = {.lex_state = 0}, [8623] = {.lex_state = 339}, - [8624] = {.lex_state = 339}, - [8625] = {.lex_state = 339}, + [8624] = {.lex_state = 0}, + [8625] = {.lex_state = 0}, [8626] = {.lex_state = 0}, - [8627] = {.lex_state = 0, .external_lex_state = 3}, - [8628] = {.lex_state = 0}, + [8627] = {.lex_state = 339}, + [8628] = {.lex_state = 113}, [8629] = {.lex_state = 0}, - [8630] = {.lex_state = 339}, - [8631] = {.lex_state = 339}, - [8632] = {.lex_state = 339}, - [8633] = {.lex_state = 0, .external_lex_state = 3}, + [8630] = {.lex_state = 0}, + [8631] = {.lex_state = 0}, + [8632] = {.lex_state = 0}, + [8633] = {.lex_state = 0}, [8634] = {.lex_state = 0}, - [8635] = {.lex_state = 339}, - [8636] = {.lex_state = 0, .external_lex_state = 3}, + [8635] = {.lex_state = 0}, + [8636] = {.lex_state = 0}, [8637] = {.lex_state = 0}, - [8638] = {.lex_state = 339}, - [8639] = {.lex_state = 0, .external_lex_state = 3}, + [8638] = {.lex_state = 0, .external_lex_state = 2}, + [8639] = {.lex_state = 113}, [8640] = {.lex_state = 0}, - [8641] = {.lex_state = 0, .external_lex_state = 3}, - [8642] = {.lex_state = 0}, - [8643] = {.lex_state = 0, .external_lex_state = 3}, - [8644] = {.lex_state = 0}, - [8645] = {.lex_state = 0, .external_lex_state = 3}, - [8646] = {.lex_state = 0}, - [8647] = {.lex_state = 0, .external_lex_state = 3}, + [8641] = {.lex_state = 339}, + [8642] = {.lex_state = 339}, + [8643] = {.lex_state = 339}, + [8644] = {.lex_state = 339}, + [8645] = {.lex_state = 0}, + [8646] = {.lex_state = 339}, + [8647] = {.lex_state = 0}, [8648] = {.lex_state = 0}, - [8649] = {.lex_state = 0, .external_lex_state = 3}, + [8649] = {.lex_state = 0}, [8650] = {.lex_state = 0}, - [8651] = {.lex_state = 0}, + [8651] = {.lex_state = 196}, [8652] = {.lex_state = 196}, - [8653] = {.lex_state = 339}, + [8653] = {.lex_state = 0}, [8654] = {.lex_state = 339}, [8655] = {.lex_state = 196}, [8656] = {.lex_state = 0}, [8657] = {.lex_state = 0}, - [8658] = {.lex_state = 0}, - [8659] = {.lex_state = 0}, - [8660] = {.lex_state = 113}, + [8658] = {.lex_state = 339}, + [8659] = {.lex_state = 0, .external_lex_state = 3}, + [8660] = {.lex_state = 339}, [8661] = {.lex_state = 196}, - [8662] = {.lex_state = 196}, - [8663] = {.lex_state = 173}, + [8662] = {.lex_state = 0}, + [8663] = {.lex_state = 0}, [8664] = {.lex_state = 0}, - [8665] = {.lex_state = 339}, - [8666] = {.lex_state = 0}, - [8667] = {.lex_state = 196}, + [8665] = {.lex_state = 0}, + [8666] = {.lex_state = 196}, + [8667] = {.lex_state = 0}, [8668] = {.lex_state = 0}, - [8669] = {.lex_state = 0}, - [8670] = {.lex_state = 0}, + [8669] = {.lex_state = 199}, + [8670] = {.lex_state = 113}, [8671] = {.lex_state = 196}, - [8672] = {.lex_state = 0, .external_lex_state = 3}, - [8673] = {.lex_state = 0}, - [8674] = {.lex_state = 196}, + [8672] = {.lex_state = 339}, + [8673] = {.lex_state = 339}, + [8674] = {.lex_state = 339}, [8675] = {.lex_state = 0}, - [8676] = {.lex_state = 113}, + [8676] = {.lex_state = 339}, [8677] = {.lex_state = 0}, - [8678] = {.lex_state = 339}, - [8679] = {.lex_state = 339}, - [8680] = {.lex_state = 173}, - [8681] = {.lex_state = 0}, - [8682] = {.lex_state = 339}, - [8683] = {.lex_state = 339}, - [8684] = {.lex_state = 0}, - [8685] = {.lex_state = 0}, + [8678] = {.lex_state = 0}, + [8679] = {.lex_state = 196}, + [8680] = {.lex_state = 0}, + [8681] = {.lex_state = 339}, + [8682] = {.lex_state = 0}, + [8683] = {.lex_state = 0}, + [8684] = {.lex_state = 339}, + [8685] = {.lex_state = 0, .external_lex_state = 3}, [8686] = {.lex_state = 0}, - [8687] = {.lex_state = 196}, - [8688] = {.lex_state = 173}, - [8689] = {.lex_state = 196}, - [8690] = {.lex_state = 173}, - [8691] = {.lex_state = 0}, + [8687] = {.lex_state = 0}, + [8688] = {.lex_state = 0}, + [8689] = {.lex_state = 0}, + [8690] = {.lex_state = 0}, + [8691] = {.lex_state = 199}, [8692] = {.lex_state = 0}, - [8693] = {.lex_state = 196}, - [8694] = {.lex_state = 0}, - [8695] = {.lex_state = 0}, - [8696] = {.lex_state = 0}, - [8697] = {.lex_state = 0}, + [8693] = {.lex_state = 339}, + [8694] = {.lex_state = 339}, + [8695] = {.lex_state = 339}, + [8696] = {.lex_state = 196}, + [8697] = {.lex_state = 339}, [8698] = {.lex_state = 0}, [8699] = {.lex_state = 0}, - [8700] = {.lex_state = 0}, - [8701] = {.lex_state = 0}, - [8702] = {.lex_state = 196}, - [8703] = {.lex_state = 0}, - [8704] = {.lex_state = 199}, - [8705] = {.lex_state = 199}, + [8700] = {.lex_state = 196}, + [8701] = {.lex_state = 339}, + [8702] = {.lex_state = 0}, + [8703] = {.lex_state = 339}, + [8704] = {.lex_state = 339}, + [8705] = {.lex_state = 0, .external_lex_state = 3}, [8706] = {.lex_state = 0}, [8707] = {.lex_state = 0}, [8708] = {.lex_state = 0}, - [8709] = {.lex_state = 0}, + [8709] = {.lex_state = 339}, [8710] = {.lex_state = 0}, - [8711] = {.lex_state = 0}, - [8712] = {.lex_state = 339}, - [8713] = {.lex_state = 173}, - [8714] = {.lex_state = 196}, - [8715] = {.lex_state = 0}, + [8711] = {.lex_state = 199}, + [8712] = {.lex_state = 0}, + [8713] = {.lex_state = 339}, + [8714] = {.lex_state = 339}, + [8715] = {.lex_state = 339}, [8716] = {.lex_state = 0}, - [8717] = {.lex_state = 0}, + [8717] = {.lex_state = 339}, [8718] = {.lex_state = 0}, [8719] = {.lex_state = 0}, - [8720] = {.lex_state = 173}, - [8721] = {.lex_state = 196}, + [8720] = {.lex_state = 339}, + [8721] = {.lex_state = 339}, [8722] = {.lex_state = 0}, - [8723] = {.lex_state = 0}, - [8724] = {.lex_state = 173}, - [8725] = {.lex_state = 113}, - [8726] = {.lex_state = 196}, + [8723] = {.lex_state = 339}, + [8724] = {.lex_state = 0, .external_lex_state = 3}, + [8725] = {.lex_state = 0}, + [8726] = {.lex_state = 0}, [8727] = {.lex_state = 0}, [8728] = {.lex_state = 0}, [8729] = {.lex_state = 0}, - [8730] = {.lex_state = 0}, - [8731] = {.lex_state = 339}, - [8732] = {.lex_state = 0}, - [8733] = {.lex_state = 199}, - [8734] = {.lex_state = 199}, - [8735] = {.lex_state = 0}, - [8736] = {.lex_state = 0}, - [8737] = {.lex_state = 339}, + [8730] = {.lex_state = 199}, + [8731] = {.lex_state = 0}, + [8732] = {.lex_state = 339}, + [8733] = {.lex_state = 339}, + [8734] = {.lex_state = 173}, + [8735] = {.lex_state = 339}, + [8736] = {.lex_state = 339}, + [8737] = {.lex_state = 173}, [8738] = {.lex_state = 339}, - [8739] = {.lex_state = 196}, - [8740] = {.lex_state = 0}, - [8741] = {.lex_state = 0}, + [8739] = {.lex_state = 0}, + [8740] = {.lex_state = 339}, + [8741] = {.lex_state = 0, .external_lex_state = 3}, [8742] = {.lex_state = 0}, [8743] = {.lex_state = 0}, - [8744] = {.lex_state = 196}, - [8745] = {.lex_state = 0, .external_lex_state = 3}, - [8746] = {.lex_state = 196}, - [8747] = {.lex_state = 0}, - [8748] = {.lex_state = 0}, - [8749] = {.lex_state = 196}, - [8750] = {.lex_state = 339}, - [8751] = {.lex_state = 339}, - [8752] = {.lex_state = 196}, - [8753] = {.lex_state = 0}, - [8754] = {.lex_state = 173}, - [8755] = {.lex_state = 196}, - [8756] = {.lex_state = 0, .external_lex_state = 3}, - [8757] = {.lex_state = 173}, - [8758] = {.lex_state = 0}, - [8759] = {.lex_state = 0}, - [8760] = {.lex_state = 339}, - [8761] = {.lex_state = 196}, + [8744] = {.lex_state = 173}, + [8745] = {.lex_state = 0}, + [8746] = {.lex_state = 0}, + [8747] = {.lex_state = 339}, + [8748] = {.lex_state = 339}, + [8749] = {.lex_state = 339}, + [8750] = {.lex_state = 0}, + [8751] = {.lex_state = 0, .external_lex_state = 3}, + [8752] = {.lex_state = 0}, + [8753] = {.lex_state = 196}, + [8754] = {.lex_state = 0}, + [8755] = {.lex_state = 0}, + [8756] = {.lex_state = 339}, + [8757] = {.lex_state = 339}, + [8758] = {.lex_state = 339}, + [8759] = {.lex_state = 196}, + [8760] = {.lex_state = 0, .external_lex_state = 3}, + [8761] = {.lex_state = 0}, [8762] = {.lex_state = 0}, - [8763] = {.lex_state = 0}, - [8764] = {.lex_state = 196}, - [8765] = {.lex_state = 0, .external_lex_state = 3}, - [8766] = {.lex_state = 0}, + [8763] = {.lex_state = 339}, + [8764] = {.lex_state = 339}, + [8765] = {.lex_state = 339}, + [8766] = {.lex_state = 0, .external_lex_state = 3}, [8767] = {.lex_state = 0}, [8768] = {.lex_state = 339}, - [8769] = {.lex_state = 196}, + [8769] = {.lex_state = 0, .external_lex_state = 3}, [8770] = {.lex_state = 0}, - [8771] = {.lex_state = 173}, - [8772] = {.lex_state = 196}, - [8773] = {.lex_state = 0, .external_lex_state = 3}, - [8774] = {.lex_state = 196}, - [8775] = {.lex_state = 339}, - [8776] = {.lex_state = 196}, - [8777] = {.lex_state = 196}, - [8778] = {.lex_state = 196}, - [8779] = {.lex_state = 0, .external_lex_state = 3}, - [8780] = {.lex_state = 0}, - [8781] = {.lex_state = 196}, + [8771] = {.lex_state = 339}, + [8772] = {.lex_state = 0, .external_lex_state = 3}, + [8773] = {.lex_state = 0}, + [8774] = {.lex_state = 0, .external_lex_state = 3}, + [8775] = {.lex_state = 0}, + [8776] = {.lex_state = 0, .external_lex_state = 3}, + [8777] = {.lex_state = 0}, + [8778] = {.lex_state = 0, .external_lex_state = 3}, + [8779] = {.lex_state = 0}, + [8780] = {.lex_state = 0, .external_lex_state = 3}, + [8781] = {.lex_state = 0}, [8782] = {.lex_state = 0, .external_lex_state = 3}, [8783] = {.lex_state = 0}, - [8784] = {.lex_state = 0, .external_lex_state = 3}, - [8785] = {.lex_state = 0}, - [8786] = {.lex_state = 0, .external_lex_state = 3}, - [8787] = {.lex_state = 0}, - [8788] = {.lex_state = 0, .external_lex_state = 3}, - [8789] = {.lex_state = 0}, - [8790] = {.lex_state = 0, .external_lex_state = 3}, + [8784] = {.lex_state = 0}, + [8785] = {.lex_state = 113}, + [8786] = {.lex_state = 339}, + [8787] = {.lex_state = 339}, + [8788] = {.lex_state = 196}, + [8789] = {.lex_state = 339}, + [8790] = {.lex_state = 196}, [8791] = {.lex_state = 0}, - [8792] = {.lex_state = 0, .external_lex_state = 3}, - [8793] = {.lex_state = 196}, - [8794] = {.lex_state = 0, .external_lex_state = 3}, - [8795] = {.lex_state = 0}, - [8796] = {.lex_state = 0, .external_lex_state = 3}, - [8797] = {.lex_state = 0}, - [8798] = {.lex_state = 0, .external_lex_state = 3}, - [8799] = {.lex_state = 196}, - [8800] = {.lex_state = 0, .external_lex_state = 3}, - [8801] = {.lex_state = 339}, - [8802] = {.lex_state = 339}, - [8803] = {.lex_state = 196}, - [8804] = {.lex_state = 339}, - [8805] = {.lex_state = 339}, + [8792] = {.lex_state = 0}, + [8793] = {.lex_state = 0}, + [8794] = {.lex_state = 0}, + [8795] = {.lex_state = 173}, + [8796] = {.lex_state = 0}, + [8797] = {.lex_state = 0, .external_lex_state = 2}, + [8798] = {.lex_state = 173}, + [8799] = {.lex_state = 0}, + [8800] = {.lex_state = 0}, + [8801] = {.lex_state = 0}, + [8802] = {.lex_state = 0}, + [8803] = {.lex_state = 339}, + [8804] = {.lex_state = 196}, + [8805] = {.lex_state = 0, .external_lex_state = 3}, [8806] = {.lex_state = 0}, - [8807] = {.lex_state = 339}, - [8808] = {.lex_state = 339}, + [8807] = {.lex_state = 0}, + [8808] = {.lex_state = 0}, [8809] = {.lex_state = 0}, - [8810] = {.lex_state = 339}, - [8811] = {.lex_state = 339}, + [8810] = {.lex_state = 0}, + [8811] = {.lex_state = 0}, [8812] = {.lex_state = 0}, - [8813] = {.lex_state = 339}, - [8814] = {.lex_state = 339}, + [8813] = {.lex_state = 196}, + [8814] = {.lex_state = 0}, [8815] = {.lex_state = 0}, - [8816] = {.lex_state = 339}, - [8817] = {.lex_state = 339}, - [8818] = {.lex_state = 339}, + [8816] = {.lex_state = 0}, + [8817] = {.lex_state = 173}, + [8818] = {.lex_state = 173}, [8819] = {.lex_state = 339}, [8820] = {.lex_state = 339}, [8821] = {.lex_state = 339}, - [8822] = {.lex_state = 339}, - [8823] = {.lex_state = 339}, - [8824] = {.lex_state = 339}, - [8825] = {.lex_state = 339}, - [8826] = {.lex_state = 339}, - [8827] = {.lex_state = 0}, + [8822] = {.lex_state = 0}, + [8823] = {.lex_state = 0}, + [8824] = {.lex_state = 0}, + [8825] = {.lex_state = 0}, + [8826] = {.lex_state = 0, .external_lex_state = 3}, + [8827] = {.lex_state = 173}, [8828] = {.lex_state = 0}, - [8829] = {.lex_state = 339}, - [8830] = {.lex_state = 173}, + [8829] = {.lex_state = 0}, + [8830] = {.lex_state = 0}, [8831] = {.lex_state = 0}, - [8832] = {.lex_state = 339}, + [8832] = {.lex_state = 0}, [8833] = {.lex_state = 339}, - [8834] = {.lex_state = 339}, - [8835] = {.lex_state = 339}, - [8836] = {.lex_state = 339}, - [8837] = {.lex_state = 173}, + [8834] = {.lex_state = 0}, + [8835] = {.lex_state = 0}, + [8836] = {.lex_state = 0}, + [8837] = {.lex_state = 199}, + [8838] = {.lex_state = 0}, + [8839] = {.lex_state = 0}, + [8840] = {.lex_state = 0}, + [8841] = {.lex_state = 0}, + [8842] = {.lex_state = 0}, + [8843] = {.lex_state = 0}, + [8844] = {.lex_state = 0}, + [8845] = {.lex_state = 0}, + [8846] = {.lex_state = 0}, + [8847] = {.lex_state = 0}, + [8848] = {.lex_state = 0}, + [8849] = {.lex_state = 0}, + [8850] = {.lex_state = 196}, + [8851] = {.lex_state = 339}, + [8852] = {.lex_state = 0}, + [8853] = {.lex_state = 173}, + [8854] = {.lex_state = 196}, + [8855] = {.lex_state = 0}, + [8856] = {.lex_state = 196}, + [8857] = {.lex_state = 0}, + [8858] = {.lex_state = 196}, + [8859] = {.lex_state = 0}, + [8860] = {.lex_state = 0}, + [8861] = {.lex_state = 171}, + [8862] = {.lex_state = 0}, + [8863] = {.lex_state = 0}, + [8864] = {.lex_state = 339}, + [8865] = {.lex_state = 0}, + [8866] = {.lex_state = 196}, + [8867] = {.lex_state = 199}, + [8868] = {.lex_state = 0}, + [8869] = {.lex_state = 0}, + [8870] = {.lex_state = 339}, + [8871] = {.lex_state = 339}, + [8872] = {.lex_state = 196}, + [8873] = {.lex_state = 339}, + [8874] = {.lex_state = 0}, + [8875] = {.lex_state = 0}, + [8876] = {.lex_state = 173}, + [8877] = {.lex_state = 196}, + [8878] = {.lex_state = 0, .external_lex_state = 3}, + [8879] = {.lex_state = 196}, + [8880] = {.lex_state = 196}, + [8881] = {.lex_state = 199}, + [8882] = {.lex_state = 0}, + [8883] = {.lex_state = 339}, + [8884] = {.lex_state = 339}, + [8885] = {.lex_state = 196}, + [8886] = {.lex_state = 0}, + [8887] = {.lex_state = 0}, + [8888] = {.lex_state = 196}, + [8889] = {.lex_state = 0, .external_lex_state = 3}, + [8890] = {.lex_state = 0}, + [8891] = {.lex_state = 0}, + [8892] = {.lex_state = 0}, + [8893] = {.lex_state = 339}, + [8894] = {.lex_state = 196}, + [8895] = {.lex_state = 0}, + [8896] = {.lex_state = 199}, + [8897] = {.lex_state = 196}, + [8898] = {.lex_state = 0, .external_lex_state = 3}, + [8899] = {.lex_state = 0}, + [8900] = {.lex_state = 196}, + [8901] = {.lex_state = 339}, + [8902] = {.lex_state = 196}, + [8903] = {.lex_state = 0}, + [8904] = {.lex_state = 0}, + [8905] = {.lex_state = 196}, + [8906] = {.lex_state = 0, .external_lex_state = 3}, + [8907] = {.lex_state = 196}, + [8908] = {.lex_state = 339}, + [8909] = {.lex_state = 196}, + [8910] = {.lex_state = 0}, + [8911] = {.lex_state = 196}, + [8912] = {.lex_state = 0, .external_lex_state = 3}, + [8913] = {.lex_state = 0}, + [8914] = {.lex_state = 196}, + [8915] = {.lex_state = 0, .external_lex_state = 3}, + [8916] = {.lex_state = 199}, + [8917] = {.lex_state = 0, .external_lex_state = 3}, + [8918] = {.lex_state = 0}, + [8919] = {.lex_state = 0, .external_lex_state = 3}, + [8920] = {.lex_state = 199}, + [8921] = {.lex_state = 0, .external_lex_state = 3}, + [8922] = {.lex_state = 0}, + [8923] = {.lex_state = 0, .external_lex_state = 3}, + [8924] = {.lex_state = 0}, + [8925] = {.lex_state = 0, .external_lex_state = 3}, + [8926] = {.lex_state = 0}, + [8927] = {.lex_state = 0, .external_lex_state = 3}, + [8928] = {.lex_state = 0}, + [8929] = {.lex_state = 0, .external_lex_state = 3}, + [8930] = {.lex_state = 113}, + [8931] = {.lex_state = 0, .external_lex_state = 3}, + [8932] = {.lex_state = 0}, + [8933] = {.lex_state = 0, .external_lex_state = 3}, + [8934] = {.lex_state = 339}, + [8935] = {.lex_state = 339}, + [8936] = {.lex_state = 173}, + [8937] = {.lex_state = 339}, + [8938] = {.lex_state = 339}, + [8939] = {.lex_state = 199}, + [8940] = {.lex_state = 339}, + [8941] = {.lex_state = 339}, + [8942] = {.lex_state = 196}, + [8943] = {.lex_state = 339}, + [8944] = {.lex_state = 339}, + [8945] = {.lex_state = 0}, + [8946] = {.lex_state = 339}, + [8947] = {.lex_state = 339}, + [8948] = {.lex_state = 196}, + [8949] = {.lex_state = 339}, + [8950] = {.lex_state = 339}, + [8951] = {.lex_state = 339}, + [8952] = {.lex_state = 339}, + [8953] = {.lex_state = 339}, + [8954] = {.lex_state = 339}, + [8955] = {.lex_state = 339}, + [8956] = {.lex_state = 339}, + [8957] = {.lex_state = 339}, + [8958] = {.lex_state = 339}, + [8959] = {.lex_state = 339}, + [8960] = {.lex_state = 0}, + [8961] = {.lex_state = 0}, + [8962] = {.lex_state = 113}, + [8963] = {.lex_state = 0}, + [8964] = {.lex_state = 0}, + [8965] = {.lex_state = 339}, + [8966] = {.lex_state = 339}, + [8967] = {.lex_state = 339}, + [8968] = {.lex_state = 339}, + [8969] = {.lex_state = 339}, + [8970] = {.lex_state = 0}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -31123,7 +31406,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_content] = ACTIONS(1), }, [1] = { - [sym_translation_unit] = STATE(8391), + [sym_translation_unit] = STATE(8653), [sym__top_level_item] = STATE(34), [sym_preproc_include] = STATE(34), [sym_preproc_def] = STATE(34), @@ -31134,30 +31417,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(34), [sym_declaration] = STATE(34), [sym_type_definition] = STATE(34), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(4748), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(4803), [sym_linkage_specification] = STATE(34), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(860), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_call_modifier] = STATE(1925), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6326), - [sym_array_declarator] = STATE(5998), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(859), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_call_modifier] = STATE(1954), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6392), + [sym_array_declarator] = STATE(6145), [sym_compound_statement] = STATE(34), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2748), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(546), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2791), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(561), [sym__top_level_statement] = STATE(34), [sym_labeled_statement] = STATE(34), [sym__top_level_expression_statement] = STATE(34), @@ -31171,38 +31454,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(34), [sym_continue_statement] = STATE(34), [sym_goto_statement] = STATE(34), - [sym_expression] = STATE(4786), - [sym__string] = STATE(4787), - [sym_conditional_expression] = STATE(4850), - [sym_assignment_expression] = STATE(4850), - [sym_pointer_expression] = STATE(3693), - [sym_unary_expression] = STATE(4850), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(4850), - [sym_cast_expression] = STATE(4850), - [sym_sizeof_expression] = STATE(4850), - [sym_alignof_expression] = STATE(4850), - [sym_offsetof_expression] = STATE(4850), - [sym_generic_expression] = STATE(4850), - [sym_subscript_expression] = STATE(3693), - [sym_call_expression] = STATE(3693), - [sym_gnu_asm_expression] = STATE(4850), - [sym_extension_expression] = STATE(4850), - [sym_field_expression] = STATE(3693), - [sym_compound_literal_expression] = STATE(4850), - [sym_parenthesized_expression] = STATE(3693), - [sym_char_literal] = STATE(4787), - [sym_concatenated_string] = STATE(4787), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(4850), + [sym_expression] = STATE(4897), + [sym__string] = STATE(4847), + [sym_conditional_expression] = STATE(4930), + [sym_assignment_expression] = STATE(4930), + [sym_pointer_expression] = STATE(3795), + [sym_unary_expression] = STATE(4930), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(4930), + [sym_cast_expression] = STATE(4930), + [sym_sizeof_expression] = STATE(4930), + [sym_alignof_expression] = STATE(4930), + [sym_offsetof_expression] = STATE(4930), + [sym_generic_expression] = STATE(4930), + [sym_subscript_expression] = STATE(3795), + [sym_call_expression] = STATE(3795), + [sym_gnu_asm_expression] = STATE(4930), + [sym_extension_expression] = STATE(4930), + [sym_field_expression] = STATE(3795), + [sym_compound_literal_expression] = STATE(4930), + [sym_parenthesized_expression] = STATE(3795), + [sym_char_literal] = STATE(4847), + [sym_concatenated_string] = STATE(4847), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(4930), [sym__empty_declaration] = STATE(34), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_explicit_function_specifier] = STATE(1831), - [sym_dependent_type] = STATE(2523), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_explicit_function_specifier] = STATE(1814), + [sym_dependent_type] = STATE(2558), [sym_module_declaration] = STATE(34), [sym_export_declaration] = STATE(34), [sym_import_declaration] = STATE(34), @@ -31210,15 +31493,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_private_module_fragment_declaration] = STATE(34), [sym_template_declaration] = STATE(34), [sym_template_instantiation] = STATE(34), - [sym_operator_cast] = STATE(6833), - [sym__constructor_specifiers] = STATE(1831), + [sym_operator_cast] = STATE(6950), + [sym__constructor_specifiers] = STATE(1814), [sym_operator_cast_definition] = STATE(34), [sym_operator_cast_declaration] = STATE(34), [sym_constructor_or_destructor_definition] = STATE(34), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(4830), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(4894), [sym_namespace_definition] = STATE(34), [sym_namespace_alias_definition] = STATE(34), [sym_using_declaration] = STATE(34), @@ -31230,29 +31513,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_co_yield_statement] = STATE(34), [sym_throw_statement] = STATE(34), [sym_try_statement] = STATE(34), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(4850), - [sym_new_expression] = STATE(4850), - [sym_delete_expression] = STATE(4850), - [sym_requires_clause] = STATE(4850), - [sym_requires_expression] = STATE(4850), - [sym_lambda_expression] = STATE(4850), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(4850), - [sym_parameter_pack_expansion] = STATE(4850), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5460), - [sym_qualified_identifier] = STATE(3691), - [sym_qualified_type_identifier] = STATE(3109), - [sym_qualified_operator_cast_identifier] = STATE(6833), - [sym_operator_name] = STATE(5998), - [sym_user_defined_literal] = STATE(3693), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(4930), + [sym_new_expression] = STATE(4930), + [sym_delete_expression] = STATE(4930), + [sym_requires_clause] = STATE(4930), + [sym_requires_expression] = STATE(4930), + [sym_lambda_expression] = STATE(4930), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(4930), + [sym_parameter_pack_expansion] = STATE(4930), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5525), + [sym_qualified_identifier] = STATE(3724), + [sym_qualified_type_identifier] = STATE(3059), + [sym_qualified_operator_cast_identifier] = STATE(6950), + [sym_operator_name] = STATE(6145), + [sym_user_defined_literal] = STATE(3795), [aux_sym_translation_unit_repeat1] = STATE(34), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(145), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1831), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(144), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1814), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [aux_sym_preproc_include_token1] = ACTIONS(9), @@ -31390,139 +31673,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(121), }, [2] = { - [sym__block_item] = STATE(83), - [sym_preproc_include] = STATE(83), - [sym_preproc_def] = STATE(83), - [sym_preproc_function_def] = STATE(83), - [sym_preproc_call] = STATE(83), - [sym_preproc_if] = STATE(83), - [sym_preproc_ifdef] = STATE(83), - [sym_function_definition] = STATE(83), - [sym_declaration] = STATE(83), - [sym_type_definition] = STATE(83), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(4599), - [sym_linkage_specification] = STATE(83), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(860), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_call_modifier] = STATE(1924), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6331), - [sym_array_declarator] = STATE(5998), - [sym_compound_statement] = STATE(545), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2758), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(761), - [sym_statement] = STATE(83), - [sym_labeled_statement] = STATE(545), - [sym_expression_statement] = STATE(545), - [sym_if_statement] = STATE(545), - [sym_switch_statement] = STATE(545), - [sym_case_statement] = STATE(545), - [sym_while_statement] = STATE(545), - [sym_do_statement] = STATE(545), - [sym_for_statement] = STATE(545), - [sym_return_statement] = STATE(545), - [sym_break_statement] = STATE(545), - [sym_continue_statement] = STATE(545), - [sym_goto_statement] = STATE(545), - [sym_seh_try_statement] = STATE(545), - [sym_seh_leave_statement] = STATE(545), - [sym_expression] = STATE(4303), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8711), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_initializer_list] = STATE(7299), - [sym_initializer_pair] = STATE(7299), - [sym_subscript_designator] = STATE(6728), - [sym_subscript_range_designator] = STATE(6728), - [sym_field_designator] = STATE(6728), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym__empty_declaration] = STATE(83), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_explicit_function_specifier] = STATE(1800), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(83), - [sym_template_instantiation] = STATE(83), - [sym_operator_cast] = STATE(6799), - [sym__constructor_specifiers] = STATE(1800), - [sym_operator_cast_definition] = STATE(83), - [sym_operator_cast_declaration] = STATE(83), - [sym_constructor_or_destructor_definition] = STATE(83), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(4494), - [sym_namespace_definition] = STATE(83), - [sym_namespace_alias_definition] = STATE(83), - [sym_using_declaration] = STATE(83), - [sym_alias_declaration] = STATE(83), - [sym_static_assert_declaration] = STATE(83), - [sym_concept_definition] = STATE(83), - [sym_for_range_loop] = STATE(545), - [sym_co_return_statement] = STATE(545), - [sym_co_yield_statement] = STATE(545), - [sym_throw_statement] = STATE(545), - [sym_try_statement] = STATE(545), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5460), - [sym_qualified_identifier] = STATE(3281), - [sym_qualified_type_identifier] = STATE(3109), - [sym_qualified_operator_cast_identifier] = STATE(6799), - [sym_operator_name] = STATE(5998), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_preproc_if_repeat1] = STATE(83), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(140), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_initializer_pair_repeat1] = STATE(6728), - [aux_sym_operator_cast_definition_repeat1] = STATE(1800), + [sym__block_item] = STATE(54), + [sym_preproc_include] = STATE(54), + [sym_preproc_def] = STATE(54), + [sym_preproc_function_def] = STATE(54), + [sym_preproc_call] = STATE(54), + [sym_preproc_if] = STATE(54), + [sym_preproc_ifdef] = STATE(54), + [sym_function_definition] = STATE(54), + [sym_declaration] = STATE(54), + [sym_type_definition] = STATE(54), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(4646), + [sym_linkage_specification] = STATE(54), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(859), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_call_modifier] = STATE(1956), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6395), + [sym_array_declarator] = STATE(6145), + [sym_compound_statement] = STATE(560), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2764), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(768), + [sym_statement] = STATE(54), + [sym_labeled_statement] = STATE(560), + [sym_expression_statement] = STATE(560), + [sym_if_statement] = STATE(560), + [sym_switch_statement] = STATE(560), + [sym_case_statement] = STATE(560), + [sym_while_statement] = STATE(560), + [sym_do_statement] = STATE(560), + [sym_for_statement] = STATE(560), + [sym_return_statement] = STATE(560), + [sym_break_statement] = STATE(560), + [sym_continue_statement] = STATE(560), + [sym_goto_statement] = STATE(560), + [sym_seh_try_statement] = STATE(560), + [sym_seh_leave_statement] = STATE(560), + [sym_expression] = STATE(4334), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8083), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_initializer_list] = STATE(7612), + [sym_initializer_pair] = STATE(7612), + [sym_subscript_designator] = STATE(6849), + [sym_subscript_range_designator] = STATE(6849), + [sym_field_designator] = STATE(6849), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym__empty_declaration] = STATE(54), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_explicit_function_specifier] = STATE(1833), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(54), + [sym_template_instantiation] = STATE(54), + [sym_operator_cast] = STATE(6888), + [sym__constructor_specifiers] = STATE(1833), + [sym_operator_cast_definition] = STATE(54), + [sym_operator_cast_declaration] = STATE(54), + [sym_constructor_or_destructor_definition] = STATE(54), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(4529), + [sym_namespace_definition] = STATE(54), + [sym_namespace_alias_definition] = STATE(54), + [sym_using_declaration] = STATE(54), + [sym_alias_declaration] = STATE(54), + [sym_static_assert_declaration] = STATE(54), + [sym_concept_definition] = STATE(54), + [sym_for_range_loop] = STATE(560), + [sym_co_return_statement] = STATE(560), + [sym_co_yield_statement] = STATE(560), + [sym_throw_statement] = STATE(560), + [sym_try_statement] = STATE(560), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5525), + [sym_qualified_identifier] = STATE(3362), + [sym_qualified_type_identifier] = STATE(3059), + [sym_qualified_operator_cast_identifier] = STATE(6888), + [sym_operator_name] = STATE(6145), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_preproc_if_repeat1] = STATE(54), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(158), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_initializer_pair_repeat1] = STATE(6849), + [aux_sym_operator_cast_definition_repeat1] = STATE(1833), [sym_identifier] = ACTIONS(167), [aux_sym_preproc_include_token1] = ACTIONS(169), [aux_sym_preproc_def_token1] = ACTIONS(171), @@ -31661,139 +31944,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [3] = { - [sym__block_item] = STATE(80), - [sym_preproc_include] = STATE(80), - [sym_preproc_def] = STATE(80), - [sym_preproc_function_def] = STATE(80), - [sym_preproc_call] = STATE(80), - [sym_preproc_if] = STATE(80), - [sym_preproc_ifdef] = STATE(80), - [sym_function_definition] = STATE(80), - [sym_declaration] = STATE(80), - [sym_type_definition] = STATE(80), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(4599), - [sym_linkage_specification] = STATE(80), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(860), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_call_modifier] = STATE(1924), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6331), - [sym_array_declarator] = STATE(5998), - [sym_compound_statement] = STATE(545), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2758), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(761), - [sym_statement] = STATE(80), - [sym_labeled_statement] = STATE(545), - [sym_expression_statement] = STATE(545), - [sym_if_statement] = STATE(545), - [sym_switch_statement] = STATE(545), - [sym_case_statement] = STATE(545), - [sym_while_statement] = STATE(545), - [sym_do_statement] = STATE(545), - [sym_for_statement] = STATE(545), - [sym_return_statement] = STATE(545), - [sym_break_statement] = STATE(545), - [sym_continue_statement] = STATE(545), - [sym_goto_statement] = STATE(545), - [sym_seh_try_statement] = STATE(545), - [sym_seh_leave_statement] = STATE(545), - [sym_expression] = STATE(4303), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8711), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_initializer_list] = STATE(7299), - [sym_initializer_pair] = STATE(7299), - [sym_subscript_designator] = STATE(6728), - [sym_subscript_range_designator] = STATE(6728), - [sym_field_designator] = STATE(6728), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym__empty_declaration] = STATE(80), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_explicit_function_specifier] = STATE(1800), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(80), - [sym_template_instantiation] = STATE(80), - [sym_operator_cast] = STATE(6799), - [sym__constructor_specifiers] = STATE(1800), - [sym_operator_cast_definition] = STATE(80), - [sym_operator_cast_declaration] = STATE(80), - [sym_constructor_or_destructor_definition] = STATE(80), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(4494), - [sym_namespace_definition] = STATE(80), - [sym_namespace_alias_definition] = STATE(80), - [sym_using_declaration] = STATE(80), - [sym_alias_declaration] = STATE(80), - [sym_static_assert_declaration] = STATE(80), - [sym_concept_definition] = STATE(80), - [sym_for_range_loop] = STATE(545), - [sym_co_return_statement] = STATE(545), - [sym_co_yield_statement] = STATE(545), - [sym_throw_statement] = STATE(545), - [sym_try_statement] = STATE(545), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5460), - [sym_qualified_identifier] = STATE(3281), - [sym_qualified_type_identifier] = STATE(3109), - [sym_qualified_operator_cast_identifier] = STATE(6799), - [sym_operator_name] = STATE(5998), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_preproc_if_repeat1] = STATE(80), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(140), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_initializer_pair_repeat1] = STATE(6728), - [aux_sym_operator_cast_definition_repeat1] = STATE(1800), + [sym__block_item] = STATE(43), + [sym_preproc_include] = STATE(43), + [sym_preproc_def] = STATE(43), + [sym_preproc_function_def] = STATE(43), + [sym_preproc_call] = STATE(43), + [sym_preproc_if] = STATE(43), + [sym_preproc_ifdef] = STATE(43), + [sym_function_definition] = STATE(43), + [sym_declaration] = STATE(43), + [sym_type_definition] = STATE(43), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(4646), + [sym_linkage_specification] = STATE(43), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(859), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_call_modifier] = STATE(1956), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6395), + [sym_array_declarator] = STATE(6145), + [sym_compound_statement] = STATE(560), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2764), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(768), + [sym_statement] = STATE(43), + [sym_labeled_statement] = STATE(560), + [sym_expression_statement] = STATE(560), + [sym_if_statement] = STATE(560), + [sym_switch_statement] = STATE(560), + [sym_case_statement] = STATE(560), + [sym_while_statement] = STATE(560), + [sym_do_statement] = STATE(560), + [sym_for_statement] = STATE(560), + [sym_return_statement] = STATE(560), + [sym_break_statement] = STATE(560), + [sym_continue_statement] = STATE(560), + [sym_goto_statement] = STATE(560), + [sym_seh_try_statement] = STATE(560), + [sym_seh_leave_statement] = STATE(560), + [sym_expression] = STATE(4334), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8083), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_initializer_list] = STATE(7612), + [sym_initializer_pair] = STATE(7612), + [sym_subscript_designator] = STATE(6849), + [sym_subscript_range_designator] = STATE(6849), + [sym_field_designator] = STATE(6849), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym__empty_declaration] = STATE(43), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_explicit_function_specifier] = STATE(1833), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(43), + [sym_template_instantiation] = STATE(43), + [sym_operator_cast] = STATE(6888), + [sym__constructor_specifiers] = STATE(1833), + [sym_operator_cast_definition] = STATE(43), + [sym_operator_cast_declaration] = STATE(43), + [sym_constructor_or_destructor_definition] = STATE(43), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(4529), + [sym_namespace_definition] = STATE(43), + [sym_namespace_alias_definition] = STATE(43), + [sym_using_declaration] = STATE(43), + [sym_alias_declaration] = STATE(43), + [sym_static_assert_declaration] = STATE(43), + [sym_concept_definition] = STATE(43), + [sym_for_range_loop] = STATE(560), + [sym_co_return_statement] = STATE(560), + [sym_co_yield_statement] = STATE(560), + [sym_throw_statement] = STATE(560), + [sym_try_statement] = STATE(560), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5525), + [sym_qualified_identifier] = STATE(3362), + [sym_qualified_type_identifier] = STATE(3059), + [sym_qualified_operator_cast_identifier] = STATE(6888), + [sym_operator_name] = STATE(6145), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_preproc_if_repeat1] = STATE(43), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(158), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_initializer_pair_repeat1] = STATE(6849), + [aux_sym_operator_cast_definition_repeat1] = STATE(1833), [sym_identifier] = ACTIONS(167), [aux_sym_preproc_include_token1] = ACTIONS(169), [aux_sym_preproc_def_token1] = ACTIONS(171), @@ -31932,139 +32215,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [4] = { - [sym__block_item] = STATE(68), - [sym_preproc_include] = STATE(68), - [sym_preproc_def] = STATE(68), - [sym_preproc_function_def] = STATE(68), - [sym_preproc_call] = STATE(68), - [sym_preproc_if] = STATE(68), - [sym_preproc_ifdef] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_declaration] = STATE(68), - [sym_type_definition] = STATE(68), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(4599), - [sym_linkage_specification] = STATE(68), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(860), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_call_modifier] = STATE(1924), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6331), - [sym_array_declarator] = STATE(5998), - [sym_compound_statement] = STATE(545), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2758), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(761), - [sym_statement] = STATE(68), - [sym_labeled_statement] = STATE(545), - [sym_expression_statement] = STATE(545), - [sym_if_statement] = STATE(545), - [sym_switch_statement] = STATE(545), - [sym_case_statement] = STATE(545), - [sym_while_statement] = STATE(545), - [sym_do_statement] = STATE(545), - [sym_for_statement] = STATE(545), - [sym_return_statement] = STATE(545), - [sym_break_statement] = STATE(545), - [sym_continue_statement] = STATE(545), - [sym_goto_statement] = STATE(545), - [sym_seh_try_statement] = STATE(545), - [sym_seh_leave_statement] = STATE(545), - [sym_expression] = STATE(4303), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8711), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_initializer_list] = STATE(7299), - [sym_initializer_pair] = STATE(7299), - [sym_subscript_designator] = STATE(6728), - [sym_subscript_range_designator] = STATE(6728), - [sym_field_designator] = STATE(6728), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym__empty_declaration] = STATE(68), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_explicit_function_specifier] = STATE(1800), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(68), - [sym_template_instantiation] = STATE(68), - [sym_operator_cast] = STATE(6799), - [sym__constructor_specifiers] = STATE(1800), - [sym_operator_cast_definition] = STATE(68), - [sym_operator_cast_declaration] = STATE(68), - [sym_constructor_or_destructor_definition] = STATE(68), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(4494), - [sym_namespace_definition] = STATE(68), - [sym_namespace_alias_definition] = STATE(68), - [sym_using_declaration] = STATE(68), - [sym_alias_declaration] = STATE(68), - [sym_static_assert_declaration] = STATE(68), - [sym_concept_definition] = STATE(68), - [sym_for_range_loop] = STATE(545), - [sym_co_return_statement] = STATE(545), - [sym_co_yield_statement] = STATE(545), - [sym_throw_statement] = STATE(545), - [sym_try_statement] = STATE(545), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5460), - [sym_qualified_identifier] = STATE(3281), - [sym_qualified_type_identifier] = STATE(3109), - [sym_qualified_operator_cast_identifier] = STATE(6799), - [sym_operator_name] = STATE(5998), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_preproc_if_repeat1] = STATE(68), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(140), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_initializer_pair_repeat1] = STATE(6728), - [aux_sym_operator_cast_definition_repeat1] = STATE(1800), + [sym__block_item] = STATE(40), + [sym_preproc_include] = STATE(40), + [sym_preproc_def] = STATE(40), + [sym_preproc_function_def] = STATE(40), + [sym_preproc_call] = STATE(40), + [sym_preproc_if] = STATE(40), + [sym_preproc_ifdef] = STATE(40), + [sym_function_definition] = STATE(40), + [sym_declaration] = STATE(40), + [sym_type_definition] = STATE(40), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(4646), + [sym_linkage_specification] = STATE(40), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(859), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_call_modifier] = STATE(1956), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6395), + [sym_array_declarator] = STATE(6145), + [sym_compound_statement] = STATE(560), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2764), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(768), + [sym_statement] = STATE(40), + [sym_labeled_statement] = STATE(560), + [sym_expression_statement] = STATE(560), + [sym_if_statement] = STATE(560), + [sym_switch_statement] = STATE(560), + [sym_case_statement] = STATE(560), + [sym_while_statement] = STATE(560), + [sym_do_statement] = STATE(560), + [sym_for_statement] = STATE(560), + [sym_return_statement] = STATE(560), + [sym_break_statement] = STATE(560), + [sym_continue_statement] = STATE(560), + [sym_goto_statement] = STATE(560), + [sym_seh_try_statement] = STATE(560), + [sym_seh_leave_statement] = STATE(560), + [sym_expression] = STATE(4334), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8083), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_initializer_list] = STATE(7612), + [sym_initializer_pair] = STATE(7612), + [sym_subscript_designator] = STATE(6849), + [sym_subscript_range_designator] = STATE(6849), + [sym_field_designator] = STATE(6849), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym__empty_declaration] = STATE(40), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_explicit_function_specifier] = STATE(1833), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(40), + [sym_template_instantiation] = STATE(40), + [sym_operator_cast] = STATE(6888), + [sym__constructor_specifiers] = STATE(1833), + [sym_operator_cast_definition] = STATE(40), + [sym_operator_cast_declaration] = STATE(40), + [sym_constructor_or_destructor_definition] = STATE(40), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(4529), + [sym_namespace_definition] = STATE(40), + [sym_namespace_alias_definition] = STATE(40), + [sym_using_declaration] = STATE(40), + [sym_alias_declaration] = STATE(40), + [sym_static_assert_declaration] = STATE(40), + [sym_concept_definition] = STATE(40), + [sym_for_range_loop] = STATE(560), + [sym_co_return_statement] = STATE(560), + [sym_co_yield_statement] = STATE(560), + [sym_throw_statement] = STATE(560), + [sym_try_statement] = STATE(560), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5525), + [sym_qualified_identifier] = STATE(3362), + [sym_qualified_type_identifier] = STATE(3059), + [sym_qualified_operator_cast_identifier] = STATE(6888), + [sym_operator_name] = STATE(6145), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_preproc_if_repeat1] = STATE(40), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(158), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_initializer_pair_repeat1] = STATE(6849), + [aux_sym_operator_cast_definition_repeat1] = STATE(1833), [sym_identifier] = ACTIONS(167), [aux_sym_preproc_include_token1] = ACTIONS(169), [aux_sym_preproc_def_token1] = ACTIONS(171), @@ -32213,129 +32496,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(40), [sym_declaration] = STATE(40), [sym_type_definition] = STATE(40), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(4599), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(4646), [sym_linkage_specification] = STATE(40), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(860), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_call_modifier] = STATE(1924), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6331), - [sym_array_declarator] = STATE(5998), - [sym_compound_statement] = STATE(545), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2758), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(761), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(859), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_call_modifier] = STATE(1956), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6395), + [sym_array_declarator] = STATE(6145), + [sym_compound_statement] = STATE(560), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2764), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(768), [sym_statement] = STATE(40), - [sym_labeled_statement] = STATE(545), - [sym_expression_statement] = STATE(545), - [sym_if_statement] = STATE(545), - [sym_switch_statement] = STATE(545), - [sym_case_statement] = STATE(545), - [sym_while_statement] = STATE(545), - [sym_do_statement] = STATE(545), - [sym_for_statement] = STATE(545), - [sym_return_statement] = STATE(545), - [sym_break_statement] = STATE(545), - [sym_continue_statement] = STATE(545), - [sym_goto_statement] = STATE(545), - [sym_seh_try_statement] = STATE(545), - [sym_seh_leave_statement] = STATE(545), - [sym_expression] = STATE(4303), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8711), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_initializer_list] = STATE(7299), - [sym_initializer_pair] = STATE(7299), - [sym_subscript_designator] = STATE(6728), - [sym_subscript_range_designator] = STATE(6728), - [sym_field_designator] = STATE(6728), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), + [sym_labeled_statement] = STATE(560), + [sym_expression_statement] = STATE(560), + [sym_if_statement] = STATE(560), + [sym_switch_statement] = STATE(560), + [sym_case_statement] = STATE(560), + [sym_while_statement] = STATE(560), + [sym_do_statement] = STATE(560), + [sym_for_statement] = STATE(560), + [sym_return_statement] = STATE(560), + [sym_break_statement] = STATE(560), + [sym_continue_statement] = STATE(560), + [sym_goto_statement] = STATE(560), + [sym_seh_try_statement] = STATE(560), + [sym_seh_leave_statement] = STATE(560), + [sym_expression] = STATE(4334), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8083), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_initializer_list] = STATE(7612), + [sym_initializer_pair] = STATE(7612), + [sym_subscript_designator] = STATE(6849), + [sym_subscript_range_designator] = STATE(6849), + [sym_field_designator] = STATE(6849), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), [sym__empty_declaration] = STATE(40), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_explicit_function_specifier] = STATE(1800), - [sym_dependent_type] = STATE(2523), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_explicit_function_specifier] = STATE(1833), + [sym_dependent_type] = STATE(2558), [sym_template_declaration] = STATE(40), [sym_template_instantiation] = STATE(40), - [sym_operator_cast] = STATE(6799), - [sym__constructor_specifiers] = STATE(1800), + [sym_operator_cast] = STATE(6888), + [sym__constructor_specifiers] = STATE(1833), [sym_operator_cast_definition] = STATE(40), [sym_operator_cast_declaration] = STATE(40), [sym_constructor_or_destructor_definition] = STATE(40), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(4494), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(4529), [sym_namespace_definition] = STATE(40), [sym_namespace_alias_definition] = STATE(40), [sym_using_declaration] = STATE(40), [sym_alias_declaration] = STATE(40), [sym_static_assert_declaration] = STATE(40), [sym_concept_definition] = STATE(40), - [sym_for_range_loop] = STATE(545), - [sym_co_return_statement] = STATE(545), - [sym_co_yield_statement] = STATE(545), - [sym_throw_statement] = STATE(545), - [sym_try_statement] = STATE(545), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5460), - [sym_qualified_identifier] = STATE(3281), - [sym_qualified_type_identifier] = STATE(3109), - [sym_qualified_operator_cast_identifier] = STATE(6799), - [sym_operator_name] = STATE(5998), - [sym_user_defined_literal] = STATE(3242), + [sym_for_range_loop] = STATE(560), + [sym_co_return_statement] = STATE(560), + [sym_co_yield_statement] = STATE(560), + [sym_throw_statement] = STATE(560), + [sym_try_statement] = STATE(560), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5525), + [sym_qualified_identifier] = STATE(3362), + [sym_qualified_type_identifier] = STATE(3059), + [sym_qualified_operator_cast_identifier] = STATE(6888), + [sym_operator_name] = STATE(6145), + [sym_user_defined_literal] = STATE(3323), [aux_sym_preproc_if_repeat1] = STATE(40), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(140), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_initializer_pair_repeat1] = STATE(6728), - [aux_sym_operator_cast_definition_repeat1] = STATE(1800), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(158), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_initializer_pair_repeat1] = STATE(6849), + [aux_sym_operator_cast_definition_repeat1] = STATE(1833), [sym_identifier] = ACTIONS(167), [aux_sym_preproc_include_token1] = ACTIONS(169), [aux_sym_preproc_def_token1] = ACTIONS(171), @@ -32474,139 +32757,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [6] = { - [sym__block_item] = STATE(40), - [sym_preproc_include] = STATE(40), - [sym_preproc_def] = STATE(40), - [sym_preproc_function_def] = STATE(40), - [sym_preproc_call] = STATE(40), - [sym_preproc_if] = STATE(40), - [sym_preproc_ifdef] = STATE(40), - [sym_function_definition] = STATE(40), - [sym_declaration] = STATE(40), - [sym_type_definition] = STATE(40), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(4599), - [sym_linkage_specification] = STATE(40), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(860), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_call_modifier] = STATE(1924), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6331), - [sym_array_declarator] = STATE(5998), - [sym_compound_statement] = STATE(545), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2758), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(761), - [sym_statement] = STATE(40), - [sym_labeled_statement] = STATE(545), - [sym_expression_statement] = STATE(545), - [sym_if_statement] = STATE(545), - [sym_switch_statement] = STATE(545), - [sym_case_statement] = STATE(545), - [sym_while_statement] = STATE(545), - [sym_do_statement] = STATE(545), - [sym_for_statement] = STATE(545), - [sym_return_statement] = STATE(545), - [sym_break_statement] = STATE(545), - [sym_continue_statement] = STATE(545), - [sym_goto_statement] = STATE(545), - [sym_seh_try_statement] = STATE(545), - [sym_seh_leave_statement] = STATE(545), - [sym_expression] = STATE(4303), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8711), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_initializer_list] = STATE(7299), - [sym_initializer_pair] = STATE(7299), - [sym_subscript_designator] = STATE(6728), - [sym_subscript_range_designator] = STATE(6728), - [sym_field_designator] = STATE(6728), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym__empty_declaration] = STATE(40), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_explicit_function_specifier] = STATE(1800), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(40), - [sym_template_instantiation] = STATE(40), - [sym_operator_cast] = STATE(6799), - [sym__constructor_specifiers] = STATE(1800), - [sym_operator_cast_definition] = STATE(40), - [sym_operator_cast_declaration] = STATE(40), - [sym_constructor_or_destructor_definition] = STATE(40), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(4494), - [sym_namespace_definition] = STATE(40), - [sym_namespace_alias_definition] = STATE(40), - [sym_using_declaration] = STATE(40), - [sym_alias_declaration] = STATE(40), - [sym_static_assert_declaration] = STATE(40), - [sym_concept_definition] = STATE(40), - [sym_for_range_loop] = STATE(545), - [sym_co_return_statement] = STATE(545), - [sym_co_yield_statement] = STATE(545), - [sym_throw_statement] = STATE(545), - [sym_try_statement] = STATE(545), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5460), - [sym_qualified_identifier] = STATE(3281), - [sym_qualified_type_identifier] = STATE(3109), - [sym_qualified_operator_cast_identifier] = STATE(6799), - [sym_operator_name] = STATE(5998), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_preproc_if_repeat1] = STATE(40), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(140), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_initializer_pair_repeat1] = STATE(6728), - [aux_sym_operator_cast_definition_repeat1] = STATE(1800), + [sym__block_item] = STATE(51), + [sym_preproc_include] = STATE(51), + [sym_preproc_def] = STATE(51), + [sym_preproc_function_def] = STATE(51), + [sym_preproc_call] = STATE(51), + [sym_preproc_if] = STATE(51), + [sym_preproc_ifdef] = STATE(51), + [sym_function_definition] = STATE(51), + [sym_declaration] = STATE(51), + [sym_type_definition] = STATE(51), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(4646), + [sym_linkage_specification] = STATE(51), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(859), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_call_modifier] = STATE(1956), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6395), + [sym_array_declarator] = STATE(6145), + [sym_compound_statement] = STATE(560), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2764), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(768), + [sym_statement] = STATE(51), + [sym_labeled_statement] = STATE(560), + [sym_expression_statement] = STATE(560), + [sym_if_statement] = STATE(560), + [sym_switch_statement] = STATE(560), + [sym_case_statement] = STATE(560), + [sym_while_statement] = STATE(560), + [sym_do_statement] = STATE(560), + [sym_for_statement] = STATE(560), + [sym_return_statement] = STATE(560), + [sym_break_statement] = STATE(560), + [sym_continue_statement] = STATE(560), + [sym_goto_statement] = STATE(560), + [sym_seh_try_statement] = STATE(560), + [sym_seh_leave_statement] = STATE(560), + [sym_expression] = STATE(4334), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8083), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_initializer_list] = STATE(7612), + [sym_initializer_pair] = STATE(7612), + [sym_subscript_designator] = STATE(6849), + [sym_subscript_range_designator] = STATE(6849), + [sym_field_designator] = STATE(6849), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym__empty_declaration] = STATE(51), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_explicit_function_specifier] = STATE(1833), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(51), + [sym_template_instantiation] = STATE(51), + [sym_operator_cast] = STATE(6888), + [sym__constructor_specifiers] = STATE(1833), + [sym_operator_cast_definition] = STATE(51), + [sym_operator_cast_declaration] = STATE(51), + [sym_constructor_or_destructor_definition] = STATE(51), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(4529), + [sym_namespace_definition] = STATE(51), + [sym_namespace_alias_definition] = STATE(51), + [sym_using_declaration] = STATE(51), + [sym_alias_declaration] = STATE(51), + [sym_static_assert_declaration] = STATE(51), + [sym_concept_definition] = STATE(51), + [sym_for_range_loop] = STATE(560), + [sym_co_return_statement] = STATE(560), + [sym_co_yield_statement] = STATE(560), + [sym_throw_statement] = STATE(560), + [sym_try_statement] = STATE(560), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5525), + [sym_qualified_identifier] = STATE(3362), + [sym_qualified_type_identifier] = STATE(3059), + [sym_qualified_operator_cast_identifier] = STATE(6888), + [sym_operator_name] = STATE(6145), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_preproc_if_repeat1] = STATE(51), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(158), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_initializer_pair_repeat1] = STATE(6849), + [aux_sym_operator_cast_definition_repeat1] = STATE(1833), [sym_identifier] = ACTIONS(167), [aux_sym_preproc_include_token1] = ACTIONS(169), [aux_sym_preproc_def_token1] = ACTIONS(171), @@ -32745,139 +33028,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [7] = { - [sym__block_item] = STATE(52), - [sym_preproc_include] = STATE(52), - [sym_preproc_def] = STATE(52), - [sym_preproc_function_def] = STATE(52), - [sym_preproc_call] = STATE(52), - [sym_preproc_if] = STATE(52), - [sym_preproc_ifdef] = STATE(52), - [sym_function_definition] = STATE(52), - [sym_declaration] = STATE(52), - [sym_type_definition] = STATE(52), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(4599), - [sym_linkage_specification] = STATE(52), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(860), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_call_modifier] = STATE(1924), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6331), - [sym_array_declarator] = STATE(5998), - [sym_compound_statement] = STATE(545), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2758), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(761), - [sym_statement] = STATE(52), - [sym_labeled_statement] = STATE(545), - [sym_expression_statement] = STATE(545), - [sym_if_statement] = STATE(545), - [sym_switch_statement] = STATE(545), - [sym_case_statement] = STATE(545), - [sym_while_statement] = STATE(545), - [sym_do_statement] = STATE(545), - [sym_for_statement] = STATE(545), - [sym_return_statement] = STATE(545), - [sym_break_statement] = STATE(545), - [sym_continue_statement] = STATE(545), - [sym_goto_statement] = STATE(545), - [sym_seh_try_statement] = STATE(545), - [sym_seh_leave_statement] = STATE(545), - [sym_expression] = STATE(4303), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8711), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_initializer_list] = STATE(7299), - [sym_initializer_pair] = STATE(7299), - [sym_subscript_designator] = STATE(6728), - [sym_subscript_range_designator] = STATE(6728), - [sym_field_designator] = STATE(6728), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym__empty_declaration] = STATE(52), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_explicit_function_specifier] = STATE(1800), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(52), - [sym_template_instantiation] = STATE(52), - [sym_operator_cast] = STATE(6799), - [sym__constructor_specifiers] = STATE(1800), - [sym_operator_cast_definition] = STATE(52), - [sym_operator_cast_declaration] = STATE(52), - [sym_constructor_or_destructor_definition] = STATE(52), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(4494), - [sym_namespace_definition] = STATE(52), - [sym_namespace_alias_definition] = STATE(52), - [sym_using_declaration] = STATE(52), - [sym_alias_declaration] = STATE(52), - [sym_static_assert_declaration] = STATE(52), - [sym_concept_definition] = STATE(52), - [sym_for_range_loop] = STATE(545), - [sym_co_return_statement] = STATE(545), - [sym_co_yield_statement] = STATE(545), - [sym_throw_statement] = STATE(545), - [sym_try_statement] = STATE(545), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5460), - [sym_qualified_identifier] = STATE(3281), - [sym_qualified_type_identifier] = STATE(3109), - [sym_qualified_operator_cast_identifier] = STATE(6799), - [sym_operator_name] = STATE(5998), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_preproc_if_repeat1] = STATE(52), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(140), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_initializer_pair_repeat1] = STATE(6728), - [aux_sym_operator_cast_definition_repeat1] = STATE(1800), + [sym__block_item] = STATE(63), + [sym_preproc_include] = STATE(63), + [sym_preproc_def] = STATE(63), + [sym_preproc_function_def] = STATE(63), + [sym_preproc_call] = STATE(63), + [sym_preproc_if] = STATE(63), + [sym_preproc_ifdef] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_declaration] = STATE(63), + [sym_type_definition] = STATE(63), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(4646), + [sym_linkage_specification] = STATE(63), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(859), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_call_modifier] = STATE(1956), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6395), + [sym_array_declarator] = STATE(6145), + [sym_compound_statement] = STATE(560), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2764), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(768), + [sym_statement] = STATE(63), + [sym_labeled_statement] = STATE(560), + [sym_expression_statement] = STATE(560), + [sym_if_statement] = STATE(560), + [sym_switch_statement] = STATE(560), + [sym_case_statement] = STATE(560), + [sym_while_statement] = STATE(560), + [sym_do_statement] = STATE(560), + [sym_for_statement] = STATE(560), + [sym_return_statement] = STATE(560), + [sym_break_statement] = STATE(560), + [sym_continue_statement] = STATE(560), + [sym_goto_statement] = STATE(560), + [sym_seh_try_statement] = STATE(560), + [sym_seh_leave_statement] = STATE(560), + [sym_expression] = STATE(4334), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8083), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_initializer_list] = STATE(7612), + [sym_initializer_pair] = STATE(7612), + [sym_subscript_designator] = STATE(6849), + [sym_subscript_range_designator] = STATE(6849), + [sym_field_designator] = STATE(6849), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym__empty_declaration] = STATE(63), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_explicit_function_specifier] = STATE(1833), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(63), + [sym_template_instantiation] = STATE(63), + [sym_operator_cast] = STATE(6888), + [sym__constructor_specifiers] = STATE(1833), + [sym_operator_cast_definition] = STATE(63), + [sym_operator_cast_declaration] = STATE(63), + [sym_constructor_or_destructor_definition] = STATE(63), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(4529), + [sym_namespace_definition] = STATE(63), + [sym_namespace_alias_definition] = STATE(63), + [sym_using_declaration] = STATE(63), + [sym_alias_declaration] = STATE(63), + [sym_static_assert_declaration] = STATE(63), + [sym_concept_definition] = STATE(63), + [sym_for_range_loop] = STATE(560), + [sym_co_return_statement] = STATE(560), + [sym_co_yield_statement] = STATE(560), + [sym_throw_statement] = STATE(560), + [sym_try_statement] = STATE(560), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5525), + [sym_qualified_identifier] = STATE(3362), + [sym_qualified_type_identifier] = STATE(3059), + [sym_qualified_operator_cast_identifier] = STATE(6888), + [sym_operator_name] = STATE(6145), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_preproc_if_repeat1] = STATE(63), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(158), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_initializer_pair_repeat1] = STATE(6849), + [aux_sym_operator_cast_definition_repeat1] = STATE(1833), [sym_identifier] = ACTIONS(167), [aux_sym_preproc_include_token1] = ACTIONS(169), [aux_sym_preproc_def_token1] = ACTIONS(171), @@ -33016,139 +33299,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [8] = { - [sym__block_item] = STATE(65), - [sym_preproc_include] = STATE(65), - [sym_preproc_def] = STATE(65), - [sym_preproc_function_def] = STATE(65), - [sym_preproc_call] = STATE(65), - [sym_preproc_if] = STATE(65), - [sym_preproc_ifdef] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_declaration] = STATE(65), - [sym_type_definition] = STATE(65), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(4599), - [sym_linkage_specification] = STATE(65), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(860), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_call_modifier] = STATE(1924), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6331), - [sym_array_declarator] = STATE(5998), - [sym_compound_statement] = STATE(545), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2758), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(761), - [sym_statement] = STATE(65), - [sym_labeled_statement] = STATE(545), - [sym_expression_statement] = STATE(545), - [sym_if_statement] = STATE(545), - [sym_switch_statement] = STATE(545), - [sym_case_statement] = STATE(545), - [sym_while_statement] = STATE(545), - [sym_do_statement] = STATE(545), - [sym_for_statement] = STATE(545), - [sym_return_statement] = STATE(545), - [sym_break_statement] = STATE(545), - [sym_continue_statement] = STATE(545), - [sym_goto_statement] = STATE(545), - [sym_seh_try_statement] = STATE(545), - [sym_seh_leave_statement] = STATE(545), - [sym_expression] = STATE(4303), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8711), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_initializer_list] = STATE(7299), - [sym_initializer_pair] = STATE(7299), - [sym_subscript_designator] = STATE(6728), - [sym_subscript_range_designator] = STATE(6728), - [sym_field_designator] = STATE(6728), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym__empty_declaration] = STATE(65), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_explicit_function_specifier] = STATE(1800), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(65), - [sym_template_instantiation] = STATE(65), - [sym_operator_cast] = STATE(6799), - [sym__constructor_specifiers] = STATE(1800), - [sym_operator_cast_definition] = STATE(65), - [sym_operator_cast_declaration] = STATE(65), - [sym_constructor_or_destructor_definition] = STATE(65), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(4494), - [sym_namespace_definition] = STATE(65), - [sym_namespace_alias_definition] = STATE(65), - [sym_using_declaration] = STATE(65), - [sym_alias_declaration] = STATE(65), - [sym_static_assert_declaration] = STATE(65), - [sym_concept_definition] = STATE(65), - [sym_for_range_loop] = STATE(545), - [sym_co_return_statement] = STATE(545), - [sym_co_yield_statement] = STATE(545), - [sym_throw_statement] = STATE(545), - [sym_try_statement] = STATE(545), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5460), - [sym_qualified_identifier] = STATE(3281), - [sym_qualified_type_identifier] = STATE(3109), - [sym_qualified_operator_cast_identifier] = STATE(6799), - [sym_operator_name] = STATE(5998), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_preproc_if_repeat1] = STATE(65), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(140), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_initializer_pair_repeat1] = STATE(6728), - [aux_sym_operator_cast_definition_repeat1] = STATE(1800), + [sym__block_item] = STATE(60), + [sym_preproc_include] = STATE(60), + [sym_preproc_def] = STATE(60), + [sym_preproc_function_def] = STATE(60), + [sym_preproc_call] = STATE(60), + [sym_preproc_if] = STATE(60), + [sym_preproc_ifdef] = STATE(60), + [sym_function_definition] = STATE(60), + [sym_declaration] = STATE(60), + [sym_type_definition] = STATE(60), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(4646), + [sym_linkage_specification] = STATE(60), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(859), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_call_modifier] = STATE(1956), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6395), + [sym_array_declarator] = STATE(6145), + [sym_compound_statement] = STATE(560), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2764), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(768), + [sym_statement] = STATE(60), + [sym_labeled_statement] = STATE(560), + [sym_expression_statement] = STATE(560), + [sym_if_statement] = STATE(560), + [sym_switch_statement] = STATE(560), + [sym_case_statement] = STATE(560), + [sym_while_statement] = STATE(560), + [sym_do_statement] = STATE(560), + [sym_for_statement] = STATE(560), + [sym_return_statement] = STATE(560), + [sym_break_statement] = STATE(560), + [sym_continue_statement] = STATE(560), + [sym_goto_statement] = STATE(560), + [sym_seh_try_statement] = STATE(560), + [sym_seh_leave_statement] = STATE(560), + [sym_expression] = STATE(4334), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8083), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_initializer_list] = STATE(7612), + [sym_initializer_pair] = STATE(7612), + [sym_subscript_designator] = STATE(6849), + [sym_subscript_range_designator] = STATE(6849), + [sym_field_designator] = STATE(6849), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym__empty_declaration] = STATE(60), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_explicit_function_specifier] = STATE(1833), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(60), + [sym_template_instantiation] = STATE(60), + [sym_operator_cast] = STATE(6888), + [sym__constructor_specifiers] = STATE(1833), + [sym_operator_cast_definition] = STATE(60), + [sym_operator_cast_declaration] = STATE(60), + [sym_constructor_or_destructor_definition] = STATE(60), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(4529), + [sym_namespace_definition] = STATE(60), + [sym_namespace_alias_definition] = STATE(60), + [sym_using_declaration] = STATE(60), + [sym_alias_declaration] = STATE(60), + [sym_static_assert_declaration] = STATE(60), + [sym_concept_definition] = STATE(60), + [sym_for_range_loop] = STATE(560), + [sym_co_return_statement] = STATE(560), + [sym_co_yield_statement] = STATE(560), + [sym_throw_statement] = STATE(560), + [sym_try_statement] = STATE(560), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5525), + [sym_qualified_identifier] = STATE(3362), + [sym_qualified_type_identifier] = STATE(3059), + [sym_qualified_operator_cast_identifier] = STATE(6888), + [sym_operator_name] = STATE(6145), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_preproc_if_repeat1] = STATE(60), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(158), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_initializer_pair_repeat1] = STATE(6849), + [aux_sym_operator_cast_definition_repeat1] = STATE(1833), [sym_identifier] = ACTIONS(167), [aux_sym_preproc_include_token1] = ACTIONS(169), [aux_sym_preproc_def_token1] = ACTIONS(171), @@ -33287,139 +33570,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [9] = { - [sym__block_item] = STATE(62), - [sym_preproc_include] = STATE(62), - [sym_preproc_def] = STATE(62), - [sym_preproc_function_def] = STATE(62), - [sym_preproc_call] = STATE(62), - [sym_preproc_if] = STATE(62), - [sym_preproc_ifdef] = STATE(62), - [sym_function_definition] = STATE(62), - [sym_declaration] = STATE(62), - [sym_type_definition] = STATE(62), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(4599), - [sym_linkage_specification] = STATE(62), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(860), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_call_modifier] = STATE(1924), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6331), - [sym_array_declarator] = STATE(5998), - [sym_compound_statement] = STATE(545), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2758), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(761), - [sym_statement] = STATE(62), - [sym_labeled_statement] = STATE(545), - [sym_expression_statement] = STATE(545), - [sym_if_statement] = STATE(545), - [sym_switch_statement] = STATE(545), - [sym_case_statement] = STATE(545), - [sym_while_statement] = STATE(545), - [sym_do_statement] = STATE(545), - [sym_for_statement] = STATE(545), - [sym_return_statement] = STATE(545), - [sym_break_statement] = STATE(545), - [sym_continue_statement] = STATE(545), - [sym_goto_statement] = STATE(545), - [sym_seh_try_statement] = STATE(545), - [sym_seh_leave_statement] = STATE(545), - [sym_expression] = STATE(4303), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8711), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_initializer_list] = STATE(7299), - [sym_initializer_pair] = STATE(7299), - [sym_subscript_designator] = STATE(6728), - [sym_subscript_range_designator] = STATE(6728), - [sym_field_designator] = STATE(6728), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym__empty_declaration] = STATE(62), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_explicit_function_specifier] = STATE(1800), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(62), - [sym_template_instantiation] = STATE(62), - [sym_operator_cast] = STATE(6799), - [sym__constructor_specifiers] = STATE(1800), - [sym_operator_cast_definition] = STATE(62), - [sym_operator_cast_declaration] = STATE(62), - [sym_constructor_or_destructor_definition] = STATE(62), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(4494), - [sym_namespace_definition] = STATE(62), - [sym_namespace_alias_definition] = STATE(62), - [sym_using_declaration] = STATE(62), - [sym_alias_declaration] = STATE(62), - [sym_static_assert_declaration] = STATE(62), - [sym_concept_definition] = STATE(62), - [sym_for_range_loop] = STATE(545), - [sym_co_return_statement] = STATE(545), - [sym_co_yield_statement] = STATE(545), - [sym_throw_statement] = STATE(545), - [sym_try_statement] = STATE(545), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5460), - [sym_qualified_identifier] = STATE(3281), - [sym_qualified_type_identifier] = STATE(3109), - [sym_qualified_operator_cast_identifier] = STATE(6799), - [sym_operator_name] = STATE(5998), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_preproc_if_repeat1] = STATE(62), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(140), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_initializer_pair_repeat1] = STATE(6728), - [aux_sym_operator_cast_definition_repeat1] = STATE(1800), + [sym__block_item] = STATE(63), + [sym_preproc_include] = STATE(63), + [sym_preproc_def] = STATE(63), + [sym_preproc_function_def] = STATE(63), + [sym_preproc_call] = STATE(63), + [sym_preproc_if] = STATE(63), + [sym_preproc_ifdef] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_declaration] = STATE(63), + [sym_type_definition] = STATE(63), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(4646), + [sym_linkage_specification] = STATE(63), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(859), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_call_modifier] = STATE(1956), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6395), + [sym_array_declarator] = STATE(6145), + [sym_compound_statement] = STATE(560), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2764), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(768), + [sym_statement] = STATE(63), + [sym_labeled_statement] = STATE(560), + [sym_expression_statement] = STATE(560), + [sym_if_statement] = STATE(560), + [sym_switch_statement] = STATE(560), + [sym_case_statement] = STATE(560), + [sym_while_statement] = STATE(560), + [sym_do_statement] = STATE(560), + [sym_for_statement] = STATE(560), + [sym_return_statement] = STATE(560), + [sym_break_statement] = STATE(560), + [sym_continue_statement] = STATE(560), + [sym_goto_statement] = STATE(560), + [sym_seh_try_statement] = STATE(560), + [sym_seh_leave_statement] = STATE(560), + [sym_expression] = STATE(4334), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8083), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_initializer_list] = STATE(7612), + [sym_initializer_pair] = STATE(7612), + [sym_subscript_designator] = STATE(6849), + [sym_subscript_range_designator] = STATE(6849), + [sym_field_designator] = STATE(6849), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym__empty_declaration] = STATE(63), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_explicit_function_specifier] = STATE(1833), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(63), + [sym_template_instantiation] = STATE(63), + [sym_operator_cast] = STATE(6888), + [sym__constructor_specifiers] = STATE(1833), + [sym_operator_cast_definition] = STATE(63), + [sym_operator_cast_declaration] = STATE(63), + [sym_constructor_or_destructor_definition] = STATE(63), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(4529), + [sym_namespace_definition] = STATE(63), + [sym_namespace_alias_definition] = STATE(63), + [sym_using_declaration] = STATE(63), + [sym_alias_declaration] = STATE(63), + [sym_static_assert_declaration] = STATE(63), + [sym_concept_definition] = STATE(63), + [sym_for_range_loop] = STATE(560), + [sym_co_return_statement] = STATE(560), + [sym_co_yield_statement] = STATE(560), + [sym_throw_statement] = STATE(560), + [sym_try_statement] = STATE(560), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5525), + [sym_qualified_identifier] = STATE(3362), + [sym_qualified_type_identifier] = STATE(3059), + [sym_qualified_operator_cast_identifier] = STATE(6888), + [sym_operator_name] = STATE(6145), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_preproc_if_repeat1] = STATE(63), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(158), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_initializer_pair_repeat1] = STATE(6849), + [aux_sym_operator_cast_definition_repeat1] = STATE(1833), [sym_identifier] = ACTIONS(167), [aux_sym_preproc_include_token1] = ACTIONS(169), [aux_sym_preproc_def_token1] = ACTIONS(171), @@ -33558,139 +33841,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [10] = { - [sym__block_item] = STATE(65), - [sym_preproc_include] = STATE(65), - [sym_preproc_def] = STATE(65), - [sym_preproc_function_def] = STATE(65), - [sym_preproc_call] = STATE(65), - [sym_preproc_if] = STATE(65), - [sym_preproc_ifdef] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_declaration] = STATE(65), - [sym_type_definition] = STATE(65), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(4599), - [sym_linkage_specification] = STATE(65), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(860), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_call_modifier] = STATE(1924), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6331), - [sym_array_declarator] = STATE(5998), - [sym_compound_statement] = STATE(545), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2758), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(761), - [sym_statement] = STATE(65), - [sym_labeled_statement] = STATE(545), - [sym_expression_statement] = STATE(545), - [sym_if_statement] = STATE(545), - [sym_switch_statement] = STATE(545), - [sym_case_statement] = STATE(545), - [sym_while_statement] = STATE(545), - [sym_do_statement] = STATE(545), - [sym_for_statement] = STATE(545), - [sym_return_statement] = STATE(545), - [sym_break_statement] = STATE(545), - [sym_continue_statement] = STATE(545), - [sym_goto_statement] = STATE(545), - [sym_seh_try_statement] = STATE(545), - [sym_seh_leave_statement] = STATE(545), - [sym_expression] = STATE(4303), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8711), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_initializer_list] = STATE(7299), - [sym_initializer_pair] = STATE(7299), - [sym_subscript_designator] = STATE(6728), - [sym_subscript_range_designator] = STATE(6728), - [sym_field_designator] = STATE(6728), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym__empty_declaration] = STATE(65), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_explicit_function_specifier] = STATE(1800), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(65), - [sym_template_instantiation] = STATE(65), - [sym_operator_cast] = STATE(6799), - [sym__constructor_specifiers] = STATE(1800), - [sym_operator_cast_definition] = STATE(65), - [sym_operator_cast_declaration] = STATE(65), - [sym_constructor_or_destructor_definition] = STATE(65), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(4494), - [sym_namespace_definition] = STATE(65), - [sym_namespace_alias_definition] = STATE(65), - [sym_using_declaration] = STATE(65), - [sym_alias_declaration] = STATE(65), - [sym_static_assert_declaration] = STATE(65), - [sym_concept_definition] = STATE(65), - [sym_for_range_loop] = STATE(545), - [sym_co_return_statement] = STATE(545), - [sym_co_yield_statement] = STATE(545), - [sym_throw_statement] = STATE(545), - [sym_try_statement] = STATE(545), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5460), - [sym_qualified_identifier] = STATE(3281), - [sym_qualified_type_identifier] = STATE(3109), - [sym_qualified_operator_cast_identifier] = STATE(6799), - [sym_operator_name] = STATE(5998), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_preproc_if_repeat1] = STATE(65), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(140), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_initializer_pair_repeat1] = STATE(6728), - [aux_sym_operator_cast_definition_repeat1] = STATE(1800), + [sym__block_item] = STATE(36), + [sym_preproc_include] = STATE(36), + [sym_preproc_def] = STATE(36), + [sym_preproc_function_def] = STATE(36), + [sym_preproc_call] = STATE(36), + [sym_preproc_if] = STATE(36), + [sym_preproc_ifdef] = STATE(36), + [sym_function_definition] = STATE(36), + [sym_declaration] = STATE(36), + [sym_type_definition] = STATE(36), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(4646), + [sym_linkage_specification] = STATE(36), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(859), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_call_modifier] = STATE(1956), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6395), + [sym_array_declarator] = STATE(6145), + [sym_compound_statement] = STATE(560), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2764), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(768), + [sym_statement] = STATE(36), + [sym_labeled_statement] = STATE(560), + [sym_expression_statement] = STATE(560), + [sym_if_statement] = STATE(560), + [sym_switch_statement] = STATE(560), + [sym_case_statement] = STATE(560), + [sym_while_statement] = STATE(560), + [sym_do_statement] = STATE(560), + [sym_for_statement] = STATE(560), + [sym_return_statement] = STATE(560), + [sym_break_statement] = STATE(560), + [sym_continue_statement] = STATE(560), + [sym_goto_statement] = STATE(560), + [sym_seh_try_statement] = STATE(560), + [sym_seh_leave_statement] = STATE(560), + [sym_expression] = STATE(4334), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8083), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_initializer_list] = STATE(7612), + [sym_initializer_pair] = STATE(7612), + [sym_subscript_designator] = STATE(6849), + [sym_subscript_range_designator] = STATE(6849), + [sym_field_designator] = STATE(6849), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym__empty_declaration] = STATE(36), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_explicit_function_specifier] = STATE(1833), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(36), + [sym_template_instantiation] = STATE(36), + [sym_operator_cast] = STATE(6888), + [sym__constructor_specifiers] = STATE(1833), + [sym_operator_cast_definition] = STATE(36), + [sym_operator_cast_declaration] = STATE(36), + [sym_constructor_or_destructor_definition] = STATE(36), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(4529), + [sym_namespace_definition] = STATE(36), + [sym_namespace_alias_definition] = STATE(36), + [sym_using_declaration] = STATE(36), + [sym_alias_declaration] = STATE(36), + [sym_static_assert_declaration] = STATE(36), + [sym_concept_definition] = STATE(36), + [sym_for_range_loop] = STATE(560), + [sym_co_return_statement] = STATE(560), + [sym_co_yield_statement] = STATE(560), + [sym_throw_statement] = STATE(560), + [sym_try_statement] = STATE(560), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5525), + [sym_qualified_identifier] = STATE(3362), + [sym_qualified_type_identifier] = STATE(3059), + [sym_qualified_operator_cast_identifier] = STATE(6888), + [sym_operator_name] = STATE(6145), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_preproc_if_repeat1] = STATE(36), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(158), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_initializer_pair_repeat1] = STATE(6849), + [aux_sym_operator_cast_definition_repeat1] = STATE(1833), [sym_identifier] = ACTIONS(167), [aux_sym_preproc_include_token1] = ACTIONS(169), [aux_sym_preproc_def_token1] = ACTIONS(171), @@ -33829,139 +34112,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [11] = { - [sym__block_item] = STATE(80), - [sym_preproc_include] = STATE(80), - [sym_preproc_def] = STATE(80), - [sym_preproc_function_def] = STATE(80), - [sym_preproc_call] = STATE(80), - [sym_preproc_if] = STATE(80), - [sym_preproc_ifdef] = STATE(80), - [sym_function_definition] = STATE(80), - [sym_declaration] = STATE(80), - [sym_type_definition] = STATE(80), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(4599), - [sym_linkage_specification] = STATE(80), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(860), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_call_modifier] = STATE(1924), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6331), - [sym_array_declarator] = STATE(5998), - [sym_compound_statement] = STATE(545), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2758), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(761), - [sym_statement] = STATE(80), - [sym_labeled_statement] = STATE(545), - [sym_expression_statement] = STATE(545), - [sym_if_statement] = STATE(545), - [sym_switch_statement] = STATE(545), - [sym_case_statement] = STATE(545), - [sym_while_statement] = STATE(545), - [sym_do_statement] = STATE(545), - [sym_for_statement] = STATE(545), - [sym_return_statement] = STATE(545), - [sym_break_statement] = STATE(545), - [sym_continue_statement] = STATE(545), - [sym_goto_statement] = STATE(545), - [sym_seh_try_statement] = STATE(545), - [sym_seh_leave_statement] = STATE(545), - [sym_expression] = STATE(4303), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8711), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_initializer_list] = STATE(7299), - [sym_initializer_pair] = STATE(7299), - [sym_subscript_designator] = STATE(6728), - [sym_subscript_range_designator] = STATE(6728), - [sym_field_designator] = STATE(6728), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym__empty_declaration] = STATE(80), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_explicit_function_specifier] = STATE(1800), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(80), - [sym_template_instantiation] = STATE(80), - [sym_operator_cast] = STATE(6799), - [sym__constructor_specifiers] = STATE(1800), - [sym_operator_cast_definition] = STATE(80), - [sym_operator_cast_declaration] = STATE(80), - [sym_constructor_or_destructor_definition] = STATE(80), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(4494), - [sym_namespace_definition] = STATE(80), - [sym_namespace_alias_definition] = STATE(80), - [sym_using_declaration] = STATE(80), - [sym_alias_declaration] = STATE(80), - [sym_static_assert_declaration] = STATE(80), - [sym_concept_definition] = STATE(80), - [sym_for_range_loop] = STATE(545), - [sym_co_return_statement] = STATE(545), - [sym_co_yield_statement] = STATE(545), - [sym_throw_statement] = STATE(545), - [sym_try_statement] = STATE(545), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5460), - [sym_qualified_identifier] = STATE(3281), - [sym_qualified_type_identifier] = STATE(3109), - [sym_qualified_operator_cast_identifier] = STATE(6799), - [sym_operator_name] = STATE(5998), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_preproc_if_repeat1] = STATE(80), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(140), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_initializer_pair_repeat1] = STATE(6728), - [aux_sym_operator_cast_definition_repeat1] = STATE(1800), + [sym__block_item] = STATE(54), + [sym_preproc_include] = STATE(54), + [sym_preproc_def] = STATE(54), + [sym_preproc_function_def] = STATE(54), + [sym_preproc_call] = STATE(54), + [sym_preproc_if] = STATE(54), + [sym_preproc_ifdef] = STATE(54), + [sym_function_definition] = STATE(54), + [sym_declaration] = STATE(54), + [sym_type_definition] = STATE(54), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(4646), + [sym_linkage_specification] = STATE(54), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(859), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_call_modifier] = STATE(1956), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6395), + [sym_array_declarator] = STATE(6145), + [sym_compound_statement] = STATE(560), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2764), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(768), + [sym_statement] = STATE(54), + [sym_labeled_statement] = STATE(560), + [sym_expression_statement] = STATE(560), + [sym_if_statement] = STATE(560), + [sym_switch_statement] = STATE(560), + [sym_case_statement] = STATE(560), + [sym_while_statement] = STATE(560), + [sym_do_statement] = STATE(560), + [sym_for_statement] = STATE(560), + [sym_return_statement] = STATE(560), + [sym_break_statement] = STATE(560), + [sym_continue_statement] = STATE(560), + [sym_goto_statement] = STATE(560), + [sym_seh_try_statement] = STATE(560), + [sym_seh_leave_statement] = STATE(560), + [sym_expression] = STATE(4334), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8083), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_initializer_list] = STATE(7612), + [sym_initializer_pair] = STATE(7612), + [sym_subscript_designator] = STATE(6849), + [sym_subscript_range_designator] = STATE(6849), + [sym_field_designator] = STATE(6849), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym__empty_declaration] = STATE(54), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_explicit_function_specifier] = STATE(1833), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(54), + [sym_template_instantiation] = STATE(54), + [sym_operator_cast] = STATE(6888), + [sym__constructor_specifiers] = STATE(1833), + [sym_operator_cast_definition] = STATE(54), + [sym_operator_cast_declaration] = STATE(54), + [sym_constructor_or_destructor_definition] = STATE(54), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(4529), + [sym_namespace_definition] = STATE(54), + [sym_namespace_alias_definition] = STATE(54), + [sym_using_declaration] = STATE(54), + [sym_alias_declaration] = STATE(54), + [sym_static_assert_declaration] = STATE(54), + [sym_concept_definition] = STATE(54), + [sym_for_range_loop] = STATE(560), + [sym_co_return_statement] = STATE(560), + [sym_co_yield_statement] = STATE(560), + [sym_throw_statement] = STATE(560), + [sym_try_statement] = STATE(560), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5525), + [sym_qualified_identifier] = STATE(3362), + [sym_qualified_type_identifier] = STATE(3059), + [sym_qualified_operator_cast_identifier] = STATE(6888), + [sym_operator_name] = STATE(6145), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_preproc_if_repeat1] = STATE(54), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(158), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_initializer_pair_repeat1] = STATE(6849), + [aux_sym_operator_cast_definition_repeat1] = STATE(1833), [sym_identifier] = ACTIONS(167), [aux_sym_preproc_include_token1] = ACTIONS(169), [aux_sym_preproc_def_token1] = ACTIONS(171), @@ -34100,139 +34383,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [12] = { - [sym__block_item] = STATE(83), - [sym_preproc_include] = STATE(83), - [sym_preproc_def] = STATE(83), - [sym_preproc_function_def] = STATE(83), - [sym_preproc_call] = STATE(83), - [sym_preproc_if] = STATE(83), - [sym_preproc_ifdef] = STATE(83), - [sym_function_definition] = STATE(83), - [sym_declaration] = STATE(83), - [sym_type_definition] = STATE(83), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(4599), - [sym_linkage_specification] = STATE(83), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(860), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_call_modifier] = STATE(1924), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6331), - [sym_array_declarator] = STATE(5998), - [sym_compound_statement] = STATE(545), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2758), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(761), - [sym_statement] = STATE(83), - [sym_labeled_statement] = STATE(545), - [sym_expression_statement] = STATE(545), - [sym_if_statement] = STATE(545), - [sym_switch_statement] = STATE(545), - [sym_case_statement] = STATE(545), - [sym_while_statement] = STATE(545), - [sym_do_statement] = STATE(545), - [sym_for_statement] = STATE(545), - [sym_return_statement] = STATE(545), - [sym_break_statement] = STATE(545), - [sym_continue_statement] = STATE(545), - [sym_goto_statement] = STATE(545), - [sym_seh_try_statement] = STATE(545), - [sym_seh_leave_statement] = STATE(545), - [sym_expression] = STATE(4303), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8711), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_initializer_list] = STATE(7299), - [sym_initializer_pair] = STATE(7299), - [sym_subscript_designator] = STATE(6728), - [sym_subscript_range_designator] = STATE(6728), - [sym_field_designator] = STATE(6728), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym__empty_declaration] = STATE(83), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_explicit_function_specifier] = STATE(1800), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(83), - [sym_template_instantiation] = STATE(83), - [sym_operator_cast] = STATE(6799), - [sym__constructor_specifiers] = STATE(1800), - [sym_operator_cast_definition] = STATE(83), - [sym_operator_cast_declaration] = STATE(83), - [sym_constructor_or_destructor_definition] = STATE(83), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(4494), - [sym_namespace_definition] = STATE(83), - [sym_namespace_alias_definition] = STATE(83), - [sym_using_declaration] = STATE(83), - [sym_alias_declaration] = STATE(83), - [sym_static_assert_declaration] = STATE(83), - [sym_concept_definition] = STATE(83), - [sym_for_range_loop] = STATE(545), - [sym_co_return_statement] = STATE(545), - [sym_co_yield_statement] = STATE(545), - [sym_throw_statement] = STATE(545), - [sym_try_statement] = STATE(545), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5460), - [sym_qualified_identifier] = STATE(3281), - [sym_qualified_type_identifier] = STATE(3109), - [sym_qualified_operator_cast_identifier] = STATE(6799), - [sym_operator_name] = STATE(5998), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_preproc_if_repeat1] = STATE(83), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(140), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_initializer_pair_repeat1] = STATE(6728), - [aux_sym_operator_cast_definition_repeat1] = STATE(1800), + [sym__block_item] = STATE(36), + [sym_preproc_include] = STATE(36), + [sym_preproc_def] = STATE(36), + [sym_preproc_function_def] = STATE(36), + [sym_preproc_call] = STATE(36), + [sym_preproc_if] = STATE(36), + [sym_preproc_ifdef] = STATE(36), + [sym_function_definition] = STATE(36), + [sym_declaration] = STATE(36), + [sym_type_definition] = STATE(36), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(4646), + [sym_linkage_specification] = STATE(36), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(859), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_call_modifier] = STATE(1956), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6395), + [sym_array_declarator] = STATE(6145), + [sym_compound_statement] = STATE(560), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2764), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(768), + [sym_statement] = STATE(36), + [sym_labeled_statement] = STATE(560), + [sym_expression_statement] = STATE(560), + [sym_if_statement] = STATE(560), + [sym_switch_statement] = STATE(560), + [sym_case_statement] = STATE(560), + [sym_while_statement] = STATE(560), + [sym_do_statement] = STATE(560), + [sym_for_statement] = STATE(560), + [sym_return_statement] = STATE(560), + [sym_break_statement] = STATE(560), + [sym_continue_statement] = STATE(560), + [sym_goto_statement] = STATE(560), + [sym_seh_try_statement] = STATE(560), + [sym_seh_leave_statement] = STATE(560), + [sym_expression] = STATE(4334), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8083), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_initializer_list] = STATE(7612), + [sym_initializer_pair] = STATE(7612), + [sym_subscript_designator] = STATE(6849), + [sym_subscript_range_designator] = STATE(6849), + [sym_field_designator] = STATE(6849), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym__empty_declaration] = STATE(36), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_explicit_function_specifier] = STATE(1833), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(36), + [sym_template_instantiation] = STATE(36), + [sym_operator_cast] = STATE(6888), + [sym__constructor_specifiers] = STATE(1833), + [sym_operator_cast_definition] = STATE(36), + [sym_operator_cast_declaration] = STATE(36), + [sym_constructor_or_destructor_definition] = STATE(36), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(4529), + [sym_namespace_definition] = STATE(36), + [sym_namespace_alias_definition] = STATE(36), + [sym_using_declaration] = STATE(36), + [sym_alias_declaration] = STATE(36), + [sym_static_assert_declaration] = STATE(36), + [sym_concept_definition] = STATE(36), + [sym_for_range_loop] = STATE(560), + [sym_co_return_statement] = STATE(560), + [sym_co_yield_statement] = STATE(560), + [sym_throw_statement] = STATE(560), + [sym_try_statement] = STATE(560), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5525), + [sym_qualified_identifier] = STATE(3362), + [sym_qualified_type_identifier] = STATE(3059), + [sym_qualified_operator_cast_identifier] = STATE(6888), + [sym_operator_name] = STATE(6145), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_preproc_if_repeat1] = STATE(36), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(158), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_initializer_pair_repeat1] = STATE(6849), + [aux_sym_operator_cast_definition_repeat1] = STATE(1833), [sym_identifier] = ACTIONS(167), [aux_sym_preproc_include_token1] = ACTIONS(169), [aux_sym_preproc_def_token1] = ACTIONS(171), @@ -34371,136 +34654,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [13] = { - [sym__block_item] = STATE(33), - [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_preproc_else] = STATE(8233), - [sym_preproc_elif] = STATE(8233), - [sym_preproc_elifdef] = STATE(8233), - [sym_function_definition] = STATE(33), - [sym_declaration] = STATE(33), - [sym_type_definition] = STATE(33), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(4644), - [sym_linkage_specification] = STATE(33), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(860), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_call_modifier] = STATE(1929), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6310), - [sym_array_declarator] = STATE(5998), - [sym_compound_statement] = STATE(279), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2724), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(432), - [sym_statement] = STATE(33), - [sym_labeled_statement] = STATE(279), - [sym_expression_statement] = STATE(279), - [sym_if_statement] = STATE(279), - [sym_switch_statement] = STATE(279), - [sym_case_statement] = STATE(279), - [sym_while_statement] = STATE(279), - [sym_do_statement] = STATE(279), - [sym_for_statement] = STATE(279), - [sym_return_statement] = STATE(279), - [sym_break_statement] = STATE(279), - [sym_continue_statement] = STATE(279), - [sym_goto_statement] = STATE(279), - [sym_seh_try_statement] = STATE(279), - [sym_seh_leave_statement] = STATE(279), - [sym_expression] = STATE(4493), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8429), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym__empty_declaration] = STATE(33), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_explicit_function_specifier] = STATE(1731), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(33), - [sym_template_instantiation] = STATE(33), - [sym_operator_cast] = STATE(6804), - [sym__constructor_specifiers] = STATE(1731), - [sym_operator_cast_definition] = STATE(33), - [sym_operator_cast_declaration] = STATE(33), - [sym_constructor_or_destructor_definition] = STATE(33), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(4494), - [sym_namespace_definition] = STATE(33), - [sym_namespace_alias_definition] = STATE(33), - [sym_using_declaration] = STATE(33), - [sym_alias_declaration] = STATE(33), - [sym_static_assert_declaration] = STATE(33), - [sym_concept_definition] = STATE(33), - [sym_for_range_loop] = STATE(279), - [sym_co_return_statement] = STATE(279), - [sym_co_yield_statement] = STATE(279), - [sym_throw_statement] = STATE(279), - [sym_try_statement] = STATE(279), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5460), - [sym_qualified_identifier] = STATE(3281), - [sym_qualified_type_identifier] = STATE(3109), - [sym_qualified_operator_cast_identifier] = STATE(6804), - [sym_operator_name] = STATE(5998), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_preproc_if_repeat1] = STATE(33), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(147), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1731), + [sym__block_item] = STATE(18), + [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(8220), + [sym_preproc_elif] = STATE(8220), + [sym_preproc_elifdef] = STATE(8220), + [sym_function_definition] = STATE(18), + [sym_declaration] = STATE(18), + [sym_type_definition] = STATE(18), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(4710), + [sym_linkage_specification] = STATE(18), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(859), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_call_modifier] = STATE(1963), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6455), + [sym_array_declarator] = STATE(6145), + [sym_compound_statement] = STATE(260), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2784), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(439), + [sym_statement] = STATE(18), + [sym_labeled_statement] = STATE(260), + [sym_expression_statement] = STATE(260), + [sym_if_statement] = STATE(260), + [sym_switch_statement] = STATE(260), + [sym_case_statement] = STATE(260), + [sym_while_statement] = STATE(260), + [sym_do_statement] = STATE(260), + [sym_for_statement] = STATE(260), + [sym_return_statement] = STATE(260), + [sym_break_statement] = STATE(260), + [sym_continue_statement] = STATE(260), + [sym_goto_statement] = STATE(260), + [sym_seh_try_statement] = STATE(260), + [sym_seh_leave_statement] = STATE(260), + [sym_expression] = STATE(4517), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8280), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym__empty_declaration] = STATE(18), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_explicit_function_specifier] = STATE(1837), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(18), + [sym_template_instantiation] = STATE(18), + [sym_operator_cast] = STATE(6927), + [sym__constructor_specifiers] = STATE(1837), + [sym_operator_cast_definition] = STATE(18), + [sym_operator_cast_declaration] = STATE(18), + [sym_constructor_or_destructor_definition] = STATE(18), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(4529), + [sym_namespace_definition] = STATE(18), + [sym_namespace_alias_definition] = STATE(18), + [sym_using_declaration] = STATE(18), + [sym_alias_declaration] = STATE(18), + [sym_static_assert_declaration] = STATE(18), + [sym_concept_definition] = STATE(18), + [sym_for_range_loop] = STATE(260), + [sym_co_return_statement] = STATE(260), + [sym_co_yield_statement] = STATE(260), + [sym_throw_statement] = STATE(260), + [sym_try_statement] = STATE(260), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5525), + [sym_qualified_identifier] = STATE(3362), + [sym_qualified_type_identifier] = STATE(3059), + [sym_qualified_operator_cast_identifier] = STATE(6927), + [sym_operator_name] = STATE(6145), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_preproc_if_repeat1] = STATE(18), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(146), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1837), [sym_identifier] = ACTIONS(267), [aux_sym_preproc_include_token1] = ACTIONS(269), [aux_sym_preproc_def_token1] = ACTIONS(271), @@ -34641,136 +34924,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [14] = { - [sym__block_item] = STATE(22), - [sym_preproc_include] = STATE(22), - [sym_preproc_def] = STATE(22), - [sym_preproc_function_def] = STATE(22), - [sym_preproc_call] = STATE(22), - [sym_preproc_if] = STATE(22), - [sym_preproc_ifdef] = STATE(22), - [sym_preproc_else] = STATE(7926), - [sym_preproc_elif] = STATE(7926), - [sym_preproc_elifdef] = STATE(7926), - [sym_function_definition] = STATE(22), - [sym_declaration] = STATE(22), - [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(4644), - [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(860), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_call_modifier] = STATE(1929), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6310), - [sym_array_declarator] = STATE(5998), - [sym_compound_statement] = STATE(279), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2724), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(432), - [sym_statement] = STATE(22), - [sym_labeled_statement] = STATE(279), - [sym_expression_statement] = STATE(279), - [sym_if_statement] = STATE(279), - [sym_switch_statement] = STATE(279), - [sym_case_statement] = STATE(279), - [sym_while_statement] = STATE(279), - [sym_do_statement] = STATE(279), - [sym_for_statement] = STATE(279), - [sym_return_statement] = STATE(279), - [sym_break_statement] = STATE(279), - [sym_continue_statement] = STATE(279), - [sym_goto_statement] = STATE(279), - [sym_seh_try_statement] = STATE(279), - [sym_seh_leave_statement] = STATE(279), - [sym_expression] = STATE(4493), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8429), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym__empty_declaration] = STATE(22), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_explicit_function_specifier] = STATE(1731), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(22), - [sym_template_instantiation] = STATE(22), - [sym_operator_cast] = STATE(6804), - [sym__constructor_specifiers] = STATE(1731), - [sym_operator_cast_definition] = STATE(22), - [sym_operator_cast_declaration] = STATE(22), - [sym_constructor_or_destructor_definition] = STATE(22), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(4494), - [sym_namespace_definition] = STATE(22), - [sym_namespace_alias_definition] = STATE(22), - [sym_using_declaration] = STATE(22), - [sym_alias_declaration] = STATE(22), - [sym_static_assert_declaration] = STATE(22), - [sym_concept_definition] = STATE(22), - [sym_for_range_loop] = STATE(279), - [sym_co_return_statement] = STATE(279), - [sym_co_yield_statement] = STATE(279), - [sym_throw_statement] = STATE(279), - [sym_try_statement] = STATE(279), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5460), - [sym_qualified_identifier] = STATE(3281), - [sym_qualified_type_identifier] = STATE(3109), - [sym_qualified_operator_cast_identifier] = STATE(6804), - [sym_operator_name] = STATE(5998), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(147), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1731), + [sym__block_item] = STATE(15), + [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(8174), + [sym_preproc_elif] = STATE(8174), + [sym_preproc_elifdef] = STATE(8174), + [sym_function_definition] = STATE(15), + [sym_declaration] = STATE(15), + [sym_type_definition] = STATE(15), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(4710), + [sym_linkage_specification] = STATE(15), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(859), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_call_modifier] = STATE(1963), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6455), + [sym_array_declarator] = STATE(6145), + [sym_compound_statement] = STATE(260), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2784), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(439), + [sym_statement] = STATE(15), + [sym_labeled_statement] = STATE(260), + [sym_expression_statement] = STATE(260), + [sym_if_statement] = STATE(260), + [sym_switch_statement] = STATE(260), + [sym_case_statement] = STATE(260), + [sym_while_statement] = STATE(260), + [sym_do_statement] = STATE(260), + [sym_for_statement] = STATE(260), + [sym_return_statement] = STATE(260), + [sym_break_statement] = STATE(260), + [sym_continue_statement] = STATE(260), + [sym_goto_statement] = STATE(260), + [sym_seh_try_statement] = STATE(260), + [sym_seh_leave_statement] = STATE(260), + [sym_expression] = STATE(4517), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8280), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym__empty_declaration] = STATE(15), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_explicit_function_specifier] = STATE(1837), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(15), + [sym_template_instantiation] = STATE(15), + [sym_operator_cast] = STATE(6927), + [sym__constructor_specifiers] = STATE(1837), + [sym_operator_cast_definition] = STATE(15), + [sym_operator_cast_declaration] = STATE(15), + [sym_constructor_or_destructor_definition] = STATE(15), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(4529), + [sym_namespace_definition] = STATE(15), + [sym_namespace_alias_definition] = STATE(15), + [sym_using_declaration] = STATE(15), + [sym_alias_declaration] = STATE(15), + [sym_static_assert_declaration] = STATE(15), + [sym_concept_definition] = STATE(15), + [sym_for_range_loop] = STATE(260), + [sym_co_return_statement] = STATE(260), + [sym_co_yield_statement] = STATE(260), + [sym_throw_statement] = STATE(260), + [sym_try_statement] = STATE(260), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5525), + [sym_qualified_identifier] = STATE(3362), + [sym_qualified_type_identifier] = STATE(3059), + [sym_qualified_operator_cast_identifier] = STATE(6927), + [sym_operator_name] = STATE(6145), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_preproc_if_repeat1] = STATE(15), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(146), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1837), [sym_identifier] = ACTIONS(267), [aux_sym_preproc_include_token1] = ACTIONS(269), [aux_sym_preproc_def_token1] = ACTIONS(271), @@ -34911,136 +35194,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [15] = { - [sym__block_item] = STATE(17), - [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(8680), - [sym_preproc_elif] = STATE(8680), - [sym_preproc_elifdef] = STATE(8680), - [sym_function_definition] = STATE(17), - [sym_declaration] = STATE(17), - [sym_type_definition] = STATE(17), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(4644), - [sym_linkage_specification] = STATE(17), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(860), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_call_modifier] = STATE(1929), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6310), - [sym_array_declarator] = STATE(5998), - [sym_compound_statement] = STATE(279), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2724), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(432), - [sym_statement] = STATE(17), - [sym_labeled_statement] = STATE(279), - [sym_expression_statement] = STATE(279), - [sym_if_statement] = STATE(279), - [sym_switch_statement] = STATE(279), - [sym_case_statement] = STATE(279), - [sym_while_statement] = STATE(279), - [sym_do_statement] = STATE(279), - [sym_for_statement] = STATE(279), - [sym_return_statement] = STATE(279), - [sym_break_statement] = STATE(279), - [sym_continue_statement] = STATE(279), - [sym_goto_statement] = STATE(279), - [sym_seh_try_statement] = STATE(279), - [sym_seh_leave_statement] = STATE(279), - [sym_expression] = STATE(4493), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8429), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym__empty_declaration] = STATE(17), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_explicit_function_specifier] = STATE(1731), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(17), - [sym_template_instantiation] = STATE(17), - [sym_operator_cast] = STATE(6804), - [sym__constructor_specifiers] = STATE(1731), - [sym_operator_cast_definition] = STATE(17), - [sym_operator_cast_declaration] = STATE(17), - [sym_constructor_or_destructor_definition] = STATE(17), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(4494), - [sym_namespace_definition] = STATE(17), - [sym_namespace_alias_definition] = STATE(17), - [sym_using_declaration] = STATE(17), - [sym_alias_declaration] = STATE(17), - [sym_static_assert_declaration] = STATE(17), - [sym_concept_definition] = STATE(17), - [sym_for_range_loop] = STATE(279), - [sym_co_return_statement] = STATE(279), - [sym_co_yield_statement] = STATE(279), - [sym_throw_statement] = STATE(279), - [sym_try_statement] = STATE(279), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5460), - [sym_qualified_identifier] = STATE(3281), - [sym_qualified_type_identifier] = STATE(3109), - [sym_qualified_operator_cast_identifier] = STATE(6804), - [sym_operator_name] = STATE(5998), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_preproc_if_repeat1] = STATE(17), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(147), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1731), + [sym__block_item] = STATE(33), + [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_preproc_else] = STATE(8744), + [sym_preproc_elif] = STATE(8744), + [sym_preproc_elifdef] = STATE(8744), + [sym_function_definition] = STATE(33), + [sym_declaration] = STATE(33), + [sym_type_definition] = STATE(33), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(4710), + [sym_linkage_specification] = STATE(33), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(859), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_call_modifier] = STATE(1963), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6455), + [sym_array_declarator] = STATE(6145), + [sym_compound_statement] = STATE(260), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2784), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(439), + [sym_statement] = STATE(33), + [sym_labeled_statement] = STATE(260), + [sym_expression_statement] = STATE(260), + [sym_if_statement] = STATE(260), + [sym_switch_statement] = STATE(260), + [sym_case_statement] = STATE(260), + [sym_while_statement] = STATE(260), + [sym_do_statement] = STATE(260), + [sym_for_statement] = STATE(260), + [sym_return_statement] = STATE(260), + [sym_break_statement] = STATE(260), + [sym_continue_statement] = STATE(260), + [sym_goto_statement] = STATE(260), + [sym_seh_try_statement] = STATE(260), + [sym_seh_leave_statement] = STATE(260), + [sym_expression] = STATE(4517), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8280), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym__empty_declaration] = STATE(33), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_explicit_function_specifier] = STATE(1837), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(33), + [sym_template_instantiation] = STATE(33), + [sym_operator_cast] = STATE(6927), + [sym__constructor_specifiers] = STATE(1837), + [sym_operator_cast_definition] = STATE(33), + [sym_operator_cast_declaration] = STATE(33), + [sym_constructor_or_destructor_definition] = STATE(33), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(4529), + [sym_namespace_definition] = STATE(33), + [sym_namespace_alias_definition] = STATE(33), + [sym_using_declaration] = STATE(33), + [sym_alias_declaration] = STATE(33), + [sym_static_assert_declaration] = STATE(33), + [sym_concept_definition] = STATE(33), + [sym_for_range_loop] = STATE(260), + [sym_co_return_statement] = STATE(260), + [sym_co_yield_statement] = STATE(260), + [sym_throw_statement] = STATE(260), + [sym_try_statement] = STATE(260), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5525), + [sym_qualified_identifier] = STATE(3362), + [sym_qualified_type_identifier] = STATE(3059), + [sym_qualified_operator_cast_identifier] = STATE(6927), + [sym_operator_name] = STATE(6145), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_preproc_if_repeat1] = STATE(33), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(146), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1837), [sym_identifier] = ACTIONS(267), [aux_sym_preproc_include_token1] = ACTIONS(269), [aux_sym_preproc_def_token1] = ACTIONS(271), @@ -35181,136 +35464,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [16] = { - [sym__block_item] = STATE(13), - [sym_preproc_include] = STATE(13), - [sym_preproc_def] = STATE(13), - [sym_preproc_function_def] = STATE(13), - [sym_preproc_call] = STATE(13), - [sym_preproc_if] = STATE(13), - [sym_preproc_ifdef] = STATE(13), - [sym_preproc_else] = STATE(8219), - [sym_preproc_elif] = STATE(8219), - [sym_preproc_elifdef] = STATE(8219), - [sym_function_definition] = STATE(13), - [sym_declaration] = STATE(13), - [sym_type_definition] = STATE(13), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(4644), - [sym_linkage_specification] = STATE(13), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(860), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_call_modifier] = STATE(1929), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6310), - [sym_array_declarator] = STATE(5998), - [sym_compound_statement] = STATE(279), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2724), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(432), - [sym_statement] = STATE(13), - [sym_labeled_statement] = STATE(279), - [sym_expression_statement] = STATE(279), - [sym_if_statement] = STATE(279), - [sym_switch_statement] = STATE(279), - [sym_case_statement] = STATE(279), - [sym_while_statement] = STATE(279), - [sym_do_statement] = STATE(279), - [sym_for_statement] = STATE(279), - [sym_return_statement] = STATE(279), - [sym_break_statement] = STATE(279), - [sym_continue_statement] = STATE(279), - [sym_goto_statement] = STATE(279), - [sym_seh_try_statement] = STATE(279), - [sym_seh_leave_statement] = STATE(279), - [sym_expression] = STATE(4493), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8429), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym__empty_declaration] = STATE(13), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_explicit_function_specifier] = STATE(1731), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(13), - [sym_template_instantiation] = STATE(13), - [sym_operator_cast] = STATE(6804), - [sym__constructor_specifiers] = STATE(1731), - [sym_operator_cast_definition] = STATE(13), - [sym_operator_cast_declaration] = STATE(13), - [sym_constructor_or_destructor_definition] = STATE(13), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(4494), - [sym_namespace_definition] = STATE(13), - [sym_namespace_alias_definition] = STATE(13), - [sym_using_declaration] = STATE(13), - [sym_alias_declaration] = STATE(13), - [sym_static_assert_declaration] = STATE(13), - [sym_concept_definition] = STATE(13), - [sym_for_range_loop] = STATE(279), - [sym_co_return_statement] = STATE(279), - [sym_co_yield_statement] = STATE(279), - [sym_throw_statement] = STATE(279), - [sym_try_statement] = STATE(279), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5460), - [sym_qualified_identifier] = STATE(3281), - [sym_qualified_type_identifier] = STATE(3109), - [sym_qualified_operator_cast_identifier] = STATE(6804), - [sym_operator_name] = STATE(5998), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_preproc_if_repeat1] = STATE(13), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(147), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1731), + [sym__block_item] = STATE(20), + [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(8876), + [sym_preproc_elif] = STATE(8876), + [sym_preproc_elifdef] = STATE(8876), + [sym_function_definition] = STATE(20), + [sym_declaration] = STATE(20), + [sym_type_definition] = STATE(20), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(4710), + [sym_linkage_specification] = STATE(20), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(859), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_call_modifier] = STATE(1963), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6455), + [sym_array_declarator] = STATE(6145), + [sym_compound_statement] = STATE(260), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2784), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(439), + [sym_statement] = STATE(20), + [sym_labeled_statement] = STATE(260), + [sym_expression_statement] = STATE(260), + [sym_if_statement] = STATE(260), + [sym_switch_statement] = STATE(260), + [sym_case_statement] = STATE(260), + [sym_while_statement] = STATE(260), + [sym_do_statement] = STATE(260), + [sym_for_statement] = STATE(260), + [sym_return_statement] = STATE(260), + [sym_break_statement] = STATE(260), + [sym_continue_statement] = STATE(260), + [sym_goto_statement] = STATE(260), + [sym_seh_try_statement] = STATE(260), + [sym_seh_leave_statement] = STATE(260), + [sym_expression] = STATE(4517), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8280), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym__empty_declaration] = STATE(20), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_explicit_function_specifier] = STATE(1837), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(20), + [sym_template_instantiation] = STATE(20), + [sym_operator_cast] = STATE(6927), + [sym__constructor_specifiers] = STATE(1837), + [sym_operator_cast_definition] = STATE(20), + [sym_operator_cast_declaration] = STATE(20), + [sym_constructor_or_destructor_definition] = STATE(20), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(4529), + [sym_namespace_definition] = STATE(20), + [sym_namespace_alias_definition] = STATE(20), + [sym_using_declaration] = STATE(20), + [sym_alias_declaration] = STATE(20), + [sym_static_assert_declaration] = STATE(20), + [sym_concept_definition] = STATE(20), + [sym_for_range_loop] = STATE(260), + [sym_co_return_statement] = STATE(260), + [sym_co_yield_statement] = STATE(260), + [sym_throw_statement] = STATE(260), + [sym_try_statement] = STATE(260), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5525), + [sym_qualified_identifier] = STATE(3362), + [sym_qualified_type_identifier] = STATE(3059), + [sym_qualified_operator_cast_identifier] = STATE(6927), + [sym_operator_name] = STATE(6145), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_preproc_if_repeat1] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(146), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1837), [sym_identifier] = ACTIONS(267), [aux_sym_preproc_include_token1] = ACTIONS(269), [aux_sym_preproc_def_token1] = ACTIONS(271), @@ -35458,129 +35741,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(33), [sym_preproc_if] = STATE(33), [sym_preproc_ifdef] = STATE(33), - [sym_preproc_else] = STATE(8276), - [sym_preproc_elif] = STATE(8276), - [sym_preproc_elifdef] = STATE(8276), + [sym_preproc_else] = STATE(8284), + [sym_preproc_elif] = STATE(8284), + [sym_preproc_elifdef] = STATE(8284), [sym_function_definition] = STATE(33), [sym_declaration] = STATE(33), [sym_type_definition] = STATE(33), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(4644), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(4710), [sym_linkage_specification] = STATE(33), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(860), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_call_modifier] = STATE(1929), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6310), - [sym_array_declarator] = STATE(5998), - [sym_compound_statement] = STATE(279), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2724), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(432), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(859), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_call_modifier] = STATE(1963), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6455), + [sym_array_declarator] = STATE(6145), + [sym_compound_statement] = STATE(260), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2784), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(439), [sym_statement] = STATE(33), - [sym_labeled_statement] = STATE(279), - [sym_expression_statement] = STATE(279), - [sym_if_statement] = STATE(279), - [sym_switch_statement] = STATE(279), - [sym_case_statement] = STATE(279), - [sym_while_statement] = STATE(279), - [sym_do_statement] = STATE(279), - [sym_for_statement] = STATE(279), - [sym_return_statement] = STATE(279), - [sym_break_statement] = STATE(279), - [sym_continue_statement] = STATE(279), - [sym_goto_statement] = STATE(279), - [sym_seh_try_statement] = STATE(279), - [sym_seh_leave_statement] = STATE(279), - [sym_expression] = STATE(4493), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8429), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), + [sym_labeled_statement] = STATE(260), + [sym_expression_statement] = STATE(260), + [sym_if_statement] = STATE(260), + [sym_switch_statement] = STATE(260), + [sym_case_statement] = STATE(260), + [sym_while_statement] = STATE(260), + [sym_do_statement] = STATE(260), + [sym_for_statement] = STATE(260), + [sym_return_statement] = STATE(260), + [sym_break_statement] = STATE(260), + [sym_continue_statement] = STATE(260), + [sym_goto_statement] = STATE(260), + [sym_seh_try_statement] = STATE(260), + [sym_seh_leave_statement] = STATE(260), + [sym_expression] = STATE(4517), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8280), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), [sym__empty_declaration] = STATE(33), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_explicit_function_specifier] = STATE(1731), - [sym_dependent_type] = STATE(2523), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_explicit_function_specifier] = STATE(1837), + [sym_dependent_type] = STATE(2558), [sym_template_declaration] = STATE(33), [sym_template_instantiation] = STATE(33), - [sym_operator_cast] = STATE(6804), - [sym__constructor_specifiers] = STATE(1731), + [sym_operator_cast] = STATE(6927), + [sym__constructor_specifiers] = STATE(1837), [sym_operator_cast_definition] = STATE(33), [sym_operator_cast_declaration] = STATE(33), [sym_constructor_or_destructor_definition] = STATE(33), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(4494), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(4529), [sym_namespace_definition] = STATE(33), [sym_namespace_alias_definition] = STATE(33), [sym_using_declaration] = STATE(33), [sym_alias_declaration] = STATE(33), [sym_static_assert_declaration] = STATE(33), [sym_concept_definition] = STATE(33), - [sym_for_range_loop] = STATE(279), - [sym_co_return_statement] = STATE(279), - [sym_co_yield_statement] = STATE(279), - [sym_throw_statement] = STATE(279), - [sym_try_statement] = STATE(279), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5460), - [sym_qualified_identifier] = STATE(3281), - [sym_qualified_type_identifier] = STATE(3109), - [sym_qualified_operator_cast_identifier] = STATE(6804), - [sym_operator_name] = STATE(5998), - [sym_user_defined_literal] = STATE(3242), + [sym_for_range_loop] = STATE(260), + [sym_co_return_statement] = STATE(260), + [sym_co_yield_statement] = STATE(260), + [sym_throw_statement] = STATE(260), + [sym_try_statement] = STATE(260), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5525), + [sym_qualified_identifier] = STATE(3362), + [sym_qualified_type_identifier] = STATE(3059), + [sym_qualified_operator_cast_identifier] = STATE(6927), + [sym_operator_name] = STATE(6145), + [sym_user_defined_literal] = STATE(3323), [aux_sym_preproc_if_repeat1] = STATE(33), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(147), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1731), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(146), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1837), [sym_identifier] = ACTIONS(267), [aux_sym_preproc_include_token1] = ACTIONS(269), [aux_sym_preproc_def_token1] = ACTIONS(271), @@ -35728,129 +36011,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(33), [sym_preproc_if] = STATE(33), [sym_preproc_ifdef] = STATE(33), - [sym_preproc_else] = STATE(8016), - [sym_preproc_elif] = STATE(8016), - [sym_preproc_elifdef] = STATE(8016), + [sym_preproc_else] = STATE(8437), + [sym_preproc_elif] = STATE(8437), + [sym_preproc_elifdef] = STATE(8437), [sym_function_definition] = STATE(33), [sym_declaration] = STATE(33), [sym_type_definition] = STATE(33), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(4644), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(4710), [sym_linkage_specification] = STATE(33), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(860), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_call_modifier] = STATE(1929), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6310), - [sym_array_declarator] = STATE(5998), - [sym_compound_statement] = STATE(279), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2724), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(432), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(859), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_call_modifier] = STATE(1963), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6455), + [sym_array_declarator] = STATE(6145), + [sym_compound_statement] = STATE(260), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2784), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(439), [sym_statement] = STATE(33), - [sym_labeled_statement] = STATE(279), - [sym_expression_statement] = STATE(279), - [sym_if_statement] = STATE(279), - [sym_switch_statement] = STATE(279), - [sym_case_statement] = STATE(279), - [sym_while_statement] = STATE(279), - [sym_do_statement] = STATE(279), - [sym_for_statement] = STATE(279), - [sym_return_statement] = STATE(279), - [sym_break_statement] = STATE(279), - [sym_continue_statement] = STATE(279), - [sym_goto_statement] = STATE(279), - [sym_seh_try_statement] = STATE(279), - [sym_seh_leave_statement] = STATE(279), - [sym_expression] = STATE(4493), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8429), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), + [sym_labeled_statement] = STATE(260), + [sym_expression_statement] = STATE(260), + [sym_if_statement] = STATE(260), + [sym_switch_statement] = STATE(260), + [sym_case_statement] = STATE(260), + [sym_while_statement] = STATE(260), + [sym_do_statement] = STATE(260), + [sym_for_statement] = STATE(260), + [sym_return_statement] = STATE(260), + [sym_break_statement] = STATE(260), + [sym_continue_statement] = STATE(260), + [sym_goto_statement] = STATE(260), + [sym_seh_try_statement] = STATE(260), + [sym_seh_leave_statement] = STATE(260), + [sym_expression] = STATE(4517), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8280), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), [sym__empty_declaration] = STATE(33), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_explicit_function_specifier] = STATE(1731), - [sym_dependent_type] = STATE(2523), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_explicit_function_specifier] = STATE(1837), + [sym_dependent_type] = STATE(2558), [sym_template_declaration] = STATE(33), [sym_template_instantiation] = STATE(33), - [sym_operator_cast] = STATE(6804), - [sym__constructor_specifiers] = STATE(1731), + [sym_operator_cast] = STATE(6927), + [sym__constructor_specifiers] = STATE(1837), [sym_operator_cast_definition] = STATE(33), [sym_operator_cast_declaration] = STATE(33), [sym_constructor_or_destructor_definition] = STATE(33), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(4494), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(4529), [sym_namespace_definition] = STATE(33), [sym_namespace_alias_definition] = STATE(33), [sym_using_declaration] = STATE(33), [sym_alias_declaration] = STATE(33), [sym_static_assert_declaration] = STATE(33), [sym_concept_definition] = STATE(33), - [sym_for_range_loop] = STATE(279), - [sym_co_return_statement] = STATE(279), - [sym_co_yield_statement] = STATE(279), - [sym_throw_statement] = STATE(279), - [sym_try_statement] = STATE(279), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5460), - [sym_qualified_identifier] = STATE(3281), - [sym_qualified_type_identifier] = STATE(3109), - [sym_qualified_operator_cast_identifier] = STATE(6804), - [sym_operator_name] = STATE(5998), - [sym_user_defined_literal] = STATE(3242), + [sym_for_range_loop] = STATE(260), + [sym_co_return_statement] = STATE(260), + [sym_co_yield_statement] = STATE(260), + [sym_throw_statement] = STATE(260), + [sym_try_statement] = STATE(260), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5525), + [sym_qualified_identifier] = STATE(3362), + [sym_qualified_type_identifier] = STATE(3059), + [sym_qualified_operator_cast_identifier] = STATE(6927), + [sym_operator_name] = STATE(6145), + [sym_user_defined_literal] = STATE(3323), [aux_sym_preproc_if_repeat1] = STATE(33), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(147), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1731), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(146), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1837), [sym_identifier] = ACTIONS(267), [aux_sym_preproc_include_token1] = ACTIONS(269), [aux_sym_preproc_def_token1] = ACTIONS(271), @@ -35991,136 +36274,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [19] = { - [sym__block_item] = STATE(20), - [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(8326), - [sym_preproc_elif] = STATE(8326), - [sym_preproc_elifdef] = STATE(8326), - [sym_function_definition] = STATE(20), - [sym_declaration] = STATE(20), - [sym_type_definition] = STATE(20), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(4644), - [sym_linkage_specification] = STATE(20), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(860), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_call_modifier] = STATE(1929), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6310), - [sym_array_declarator] = STATE(5998), - [sym_compound_statement] = STATE(279), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2724), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(432), - [sym_statement] = STATE(20), - [sym_labeled_statement] = STATE(279), - [sym_expression_statement] = STATE(279), - [sym_if_statement] = STATE(279), - [sym_switch_statement] = STATE(279), - [sym_case_statement] = STATE(279), - [sym_while_statement] = STATE(279), - [sym_do_statement] = STATE(279), - [sym_for_statement] = STATE(279), - [sym_return_statement] = STATE(279), - [sym_break_statement] = STATE(279), - [sym_continue_statement] = STATE(279), - [sym_goto_statement] = STATE(279), - [sym_seh_try_statement] = STATE(279), - [sym_seh_leave_statement] = STATE(279), - [sym_expression] = STATE(4493), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8429), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym__empty_declaration] = STATE(20), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_explicit_function_specifier] = STATE(1731), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(20), - [sym_template_instantiation] = STATE(20), - [sym_operator_cast] = STATE(6804), - [sym__constructor_specifiers] = STATE(1731), - [sym_operator_cast_definition] = STATE(20), - [sym_operator_cast_declaration] = STATE(20), - [sym_constructor_or_destructor_definition] = STATE(20), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(4494), - [sym_namespace_definition] = STATE(20), - [sym_namespace_alias_definition] = STATE(20), - [sym_using_declaration] = STATE(20), - [sym_alias_declaration] = STATE(20), - [sym_static_assert_declaration] = STATE(20), - [sym_concept_definition] = STATE(20), - [sym_for_range_loop] = STATE(279), - [sym_co_return_statement] = STATE(279), - [sym_co_yield_statement] = STATE(279), - [sym_throw_statement] = STATE(279), - [sym_try_statement] = STATE(279), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5460), - [sym_qualified_identifier] = STATE(3281), - [sym_qualified_type_identifier] = STATE(3109), - [sym_qualified_operator_cast_identifier] = STATE(6804), - [sym_operator_name] = STATE(5998), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_preproc_if_repeat1] = STATE(20), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(147), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1731), + [sym__block_item] = STATE(17), + [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(8293), + [sym_preproc_elif] = STATE(8293), + [sym_preproc_elifdef] = STATE(8293), + [sym_function_definition] = STATE(17), + [sym_declaration] = STATE(17), + [sym_type_definition] = STATE(17), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(4710), + [sym_linkage_specification] = STATE(17), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(859), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_call_modifier] = STATE(1963), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6455), + [sym_array_declarator] = STATE(6145), + [sym_compound_statement] = STATE(260), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2784), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(439), + [sym_statement] = STATE(17), + [sym_labeled_statement] = STATE(260), + [sym_expression_statement] = STATE(260), + [sym_if_statement] = STATE(260), + [sym_switch_statement] = STATE(260), + [sym_case_statement] = STATE(260), + [sym_while_statement] = STATE(260), + [sym_do_statement] = STATE(260), + [sym_for_statement] = STATE(260), + [sym_return_statement] = STATE(260), + [sym_break_statement] = STATE(260), + [sym_continue_statement] = STATE(260), + [sym_goto_statement] = STATE(260), + [sym_seh_try_statement] = STATE(260), + [sym_seh_leave_statement] = STATE(260), + [sym_expression] = STATE(4517), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8280), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym__empty_declaration] = STATE(17), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_explicit_function_specifier] = STATE(1837), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(17), + [sym_template_instantiation] = STATE(17), + [sym_operator_cast] = STATE(6927), + [sym__constructor_specifiers] = STATE(1837), + [sym_operator_cast_definition] = STATE(17), + [sym_operator_cast_declaration] = STATE(17), + [sym_constructor_or_destructor_definition] = STATE(17), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(4529), + [sym_namespace_definition] = STATE(17), + [sym_namespace_alias_definition] = STATE(17), + [sym_using_declaration] = STATE(17), + [sym_alias_declaration] = STATE(17), + [sym_static_assert_declaration] = STATE(17), + [sym_concept_definition] = STATE(17), + [sym_for_range_loop] = STATE(260), + [sym_co_return_statement] = STATE(260), + [sym_co_yield_statement] = STATE(260), + [sym_throw_statement] = STATE(260), + [sym_try_statement] = STATE(260), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5525), + [sym_qualified_identifier] = STATE(3362), + [sym_qualified_type_identifier] = STATE(3059), + [sym_qualified_operator_cast_identifier] = STATE(6927), + [sym_operator_name] = STATE(6145), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_preproc_if_repeat1] = STATE(17), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(146), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1837), [sym_identifier] = ACTIONS(267), [aux_sym_preproc_include_token1] = ACTIONS(269), [aux_sym_preproc_def_token1] = ACTIONS(271), @@ -36268,129 +36551,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(33), [sym_preproc_if] = STATE(33), [sym_preproc_ifdef] = STATE(33), - [sym_preproc_else] = STATE(8350), - [sym_preproc_elif] = STATE(8350), - [sym_preproc_elifdef] = STATE(8350), + [sym_preproc_else] = STATE(8321), + [sym_preproc_elif] = STATE(8321), + [sym_preproc_elifdef] = STATE(8321), [sym_function_definition] = STATE(33), [sym_declaration] = STATE(33), [sym_type_definition] = STATE(33), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(4644), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(4710), [sym_linkage_specification] = STATE(33), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(860), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_call_modifier] = STATE(1929), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6310), - [sym_array_declarator] = STATE(5998), - [sym_compound_statement] = STATE(279), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2724), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(432), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(859), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_call_modifier] = STATE(1963), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6455), + [sym_array_declarator] = STATE(6145), + [sym_compound_statement] = STATE(260), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2784), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(439), [sym_statement] = STATE(33), - [sym_labeled_statement] = STATE(279), - [sym_expression_statement] = STATE(279), - [sym_if_statement] = STATE(279), - [sym_switch_statement] = STATE(279), - [sym_case_statement] = STATE(279), - [sym_while_statement] = STATE(279), - [sym_do_statement] = STATE(279), - [sym_for_statement] = STATE(279), - [sym_return_statement] = STATE(279), - [sym_break_statement] = STATE(279), - [sym_continue_statement] = STATE(279), - [sym_goto_statement] = STATE(279), - [sym_seh_try_statement] = STATE(279), - [sym_seh_leave_statement] = STATE(279), - [sym_expression] = STATE(4493), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8429), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), + [sym_labeled_statement] = STATE(260), + [sym_expression_statement] = STATE(260), + [sym_if_statement] = STATE(260), + [sym_switch_statement] = STATE(260), + [sym_case_statement] = STATE(260), + [sym_while_statement] = STATE(260), + [sym_do_statement] = STATE(260), + [sym_for_statement] = STATE(260), + [sym_return_statement] = STATE(260), + [sym_break_statement] = STATE(260), + [sym_continue_statement] = STATE(260), + [sym_goto_statement] = STATE(260), + [sym_seh_try_statement] = STATE(260), + [sym_seh_leave_statement] = STATE(260), + [sym_expression] = STATE(4517), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8280), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), [sym__empty_declaration] = STATE(33), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_explicit_function_specifier] = STATE(1731), - [sym_dependent_type] = STATE(2523), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_explicit_function_specifier] = STATE(1837), + [sym_dependent_type] = STATE(2558), [sym_template_declaration] = STATE(33), [sym_template_instantiation] = STATE(33), - [sym_operator_cast] = STATE(6804), - [sym__constructor_specifiers] = STATE(1731), + [sym_operator_cast] = STATE(6927), + [sym__constructor_specifiers] = STATE(1837), [sym_operator_cast_definition] = STATE(33), [sym_operator_cast_declaration] = STATE(33), [sym_constructor_or_destructor_definition] = STATE(33), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(4494), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(4529), [sym_namespace_definition] = STATE(33), [sym_namespace_alias_definition] = STATE(33), [sym_using_declaration] = STATE(33), [sym_alias_declaration] = STATE(33), [sym_static_assert_declaration] = STATE(33), [sym_concept_definition] = STATE(33), - [sym_for_range_loop] = STATE(279), - [sym_co_return_statement] = STATE(279), - [sym_co_yield_statement] = STATE(279), - [sym_throw_statement] = STATE(279), - [sym_try_statement] = STATE(279), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5460), - [sym_qualified_identifier] = STATE(3281), - [sym_qualified_type_identifier] = STATE(3109), - [sym_qualified_operator_cast_identifier] = STATE(6804), - [sym_operator_name] = STATE(5998), - [sym_user_defined_literal] = STATE(3242), + [sym_for_range_loop] = STATE(260), + [sym_co_return_statement] = STATE(260), + [sym_co_yield_statement] = STATE(260), + [sym_throw_statement] = STATE(260), + [sym_try_statement] = STATE(260), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5525), + [sym_qualified_identifier] = STATE(3362), + [sym_qualified_type_identifier] = STATE(3059), + [sym_qualified_operator_cast_identifier] = STATE(6927), + [sym_operator_name] = STATE(6145), + [sym_user_defined_literal] = STATE(3323), [aux_sym_preproc_if_repeat1] = STATE(33), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(147), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1731), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(146), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1837), [sym_identifier] = ACTIONS(267), [aux_sym_preproc_include_token1] = ACTIONS(269), [aux_sym_preproc_def_token1] = ACTIONS(271), @@ -36538,129 +36821,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(23), [sym_preproc_if] = STATE(23), [sym_preproc_ifdef] = STATE(23), - [sym_preproc_else] = STATE(8286), - [sym_preproc_elif] = STATE(8286), - [sym_preproc_elifdef] = STATE(8286), + [sym_preproc_else] = STATE(8291), + [sym_preproc_elif] = STATE(8291), + [sym_preproc_elifdef] = STATE(8291), [sym_function_definition] = STATE(23), [sym_declaration] = STATE(23), [sym_type_definition] = STATE(23), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(4644), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(4710), [sym_linkage_specification] = STATE(23), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(860), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_call_modifier] = STATE(1929), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6310), - [sym_array_declarator] = STATE(5998), - [sym_compound_statement] = STATE(279), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2724), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(432), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(859), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_call_modifier] = STATE(1963), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6455), + [sym_array_declarator] = STATE(6145), + [sym_compound_statement] = STATE(260), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2784), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(439), [sym_statement] = STATE(23), - [sym_labeled_statement] = STATE(279), - [sym_expression_statement] = STATE(279), - [sym_if_statement] = STATE(279), - [sym_switch_statement] = STATE(279), - [sym_case_statement] = STATE(279), - [sym_while_statement] = STATE(279), - [sym_do_statement] = STATE(279), - [sym_for_statement] = STATE(279), - [sym_return_statement] = STATE(279), - [sym_break_statement] = STATE(279), - [sym_continue_statement] = STATE(279), - [sym_goto_statement] = STATE(279), - [sym_seh_try_statement] = STATE(279), - [sym_seh_leave_statement] = STATE(279), - [sym_expression] = STATE(4493), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8429), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), + [sym_labeled_statement] = STATE(260), + [sym_expression_statement] = STATE(260), + [sym_if_statement] = STATE(260), + [sym_switch_statement] = STATE(260), + [sym_case_statement] = STATE(260), + [sym_while_statement] = STATE(260), + [sym_do_statement] = STATE(260), + [sym_for_statement] = STATE(260), + [sym_return_statement] = STATE(260), + [sym_break_statement] = STATE(260), + [sym_continue_statement] = STATE(260), + [sym_goto_statement] = STATE(260), + [sym_seh_try_statement] = STATE(260), + [sym_seh_leave_statement] = STATE(260), + [sym_expression] = STATE(4517), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8280), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), [sym__empty_declaration] = STATE(23), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_explicit_function_specifier] = STATE(1731), - [sym_dependent_type] = STATE(2523), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_explicit_function_specifier] = STATE(1837), + [sym_dependent_type] = STATE(2558), [sym_template_declaration] = STATE(23), [sym_template_instantiation] = STATE(23), - [sym_operator_cast] = STATE(6804), - [sym__constructor_specifiers] = STATE(1731), + [sym_operator_cast] = STATE(6927), + [sym__constructor_specifiers] = STATE(1837), [sym_operator_cast_definition] = STATE(23), [sym_operator_cast_declaration] = STATE(23), [sym_constructor_or_destructor_definition] = STATE(23), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(4494), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(4529), [sym_namespace_definition] = STATE(23), [sym_namespace_alias_definition] = STATE(23), [sym_using_declaration] = STATE(23), [sym_alias_declaration] = STATE(23), [sym_static_assert_declaration] = STATE(23), [sym_concept_definition] = STATE(23), - [sym_for_range_loop] = STATE(279), - [sym_co_return_statement] = STATE(279), - [sym_co_yield_statement] = STATE(279), - [sym_throw_statement] = STATE(279), - [sym_try_statement] = STATE(279), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5460), - [sym_qualified_identifier] = STATE(3281), - [sym_qualified_type_identifier] = STATE(3109), - [sym_qualified_operator_cast_identifier] = STATE(6804), - [sym_operator_name] = STATE(5998), - [sym_user_defined_literal] = STATE(3242), + [sym_for_range_loop] = STATE(260), + [sym_co_return_statement] = STATE(260), + [sym_co_yield_statement] = STATE(260), + [sym_throw_statement] = STATE(260), + [sym_try_statement] = STATE(260), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5525), + [sym_qualified_identifier] = STATE(3362), + [sym_qualified_type_identifier] = STATE(3059), + [sym_qualified_operator_cast_identifier] = STATE(6927), + [sym_operator_name] = STATE(6145), + [sym_user_defined_literal] = STATE(3323), [aux_sym_preproc_if_repeat1] = STATE(23), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(147), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1731), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(146), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1837), [sym_identifier] = ACTIONS(267), [aux_sym_preproc_include_token1] = ACTIONS(269), [aux_sym_preproc_def_token1] = ACTIONS(271), @@ -36801,136 +37084,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [22] = { - [sym__block_item] = STATE(33), - [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_preproc_else] = STATE(8335), - [sym_preproc_elif] = STATE(8335), - [sym_preproc_elifdef] = STATE(8335), - [sym_function_definition] = STATE(33), - [sym_declaration] = STATE(33), - [sym_type_definition] = STATE(33), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(4644), - [sym_linkage_specification] = STATE(33), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(860), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_call_modifier] = STATE(1929), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6310), - [sym_array_declarator] = STATE(5998), - [sym_compound_statement] = STATE(279), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2724), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(432), - [sym_statement] = STATE(33), - [sym_labeled_statement] = STATE(279), - [sym_expression_statement] = STATE(279), - [sym_if_statement] = STATE(279), - [sym_switch_statement] = STATE(279), - [sym_case_statement] = STATE(279), - [sym_while_statement] = STATE(279), - [sym_do_statement] = STATE(279), - [sym_for_statement] = STATE(279), - [sym_return_statement] = STATE(279), - [sym_break_statement] = STATE(279), - [sym_continue_statement] = STATE(279), - [sym_goto_statement] = STATE(279), - [sym_seh_try_statement] = STATE(279), - [sym_seh_leave_statement] = STATE(279), - [sym_expression] = STATE(4493), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8429), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym__empty_declaration] = STATE(33), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_explicit_function_specifier] = STATE(1731), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(33), - [sym_template_instantiation] = STATE(33), - [sym_operator_cast] = STATE(6804), - [sym__constructor_specifiers] = STATE(1731), - [sym_operator_cast_definition] = STATE(33), - [sym_operator_cast_declaration] = STATE(33), - [sym_constructor_or_destructor_definition] = STATE(33), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(4494), - [sym_namespace_definition] = STATE(33), - [sym_namespace_alias_definition] = STATE(33), - [sym_using_declaration] = STATE(33), - [sym_alias_declaration] = STATE(33), - [sym_static_assert_declaration] = STATE(33), - [sym_concept_definition] = STATE(33), - [sym_for_range_loop] = STATE(279), - [sym_co_return_statement] = STATE(279), - [sym_co_yield_statement] = STATE(279), - [sym_throw_statement] = STATE(279), - [sym_try_statement] = STATE(279), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5460), - [sym_qualified_identifier] = STATE(3281), - [sym_qualified_type_identifier] = STATE(3109), - [sym_qualified_operator_cast_identifier] = STATE(6804), - [sym_operator_name] = STATE(5998), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_preproc_if_repeat1] = STATE(33), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(147), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1731), + [sym__block_item] = STATE(24), + [sym_preproc_include] = STATE(24), + [sym_preproc_def] = STATE(24), + [sym_preproc_function_def] = STATE(24), + [sym_preproc_call] = STATE(24), + [sym_preproc_if] = STATE(24), + [sym_preproc_ifdef] = STATE(24), + [sym_preproc_else] = STATE(8567), + [sym_preproc_elif] = STATE(8567), + [sym_preproc_elifdef] = STATE(8567), + [sym_function_definition] = STATE(24), + [sym_declaration] = STATE(24), + [sym_type_definition] = STATE(24), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(4710), + [sym_linkage_specification] = STATE(24), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(859), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_call_modifier] = STATE(1963), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6455), + [sym_array_declarator] = STATE(6145), + [sym_compound_statement] = STATE(260), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2784), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(439), + [sym_statement] = STATE(24), + [sym_labeled_statement] = STATE(260), + [sym_expression_statement] = STATE(260), + [sym_if_statement] = STATE(260), + [sym_switch_statement] = STATE(260), + [sym_case_statement] = STATE(260), + [sym_while_statement] = STATE(260), + [sym_do_statement] = STATE(260), + [sym_for_statement] = STATE(260), + [sym_return_statement] = STATE(260), + [sym_break_statement] = STATE(260), + [sym_continue_statement] = STATE(260), + [sym_goto_statement] = STATE(260), + [sym_seh_try_statement] = STATE(260), + [sym_seh_leave_statement] = STATE(260), + [sym_expression] = STATE(4517), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8280), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym__empty_declaration] = STATE(24), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_explicit_function_specifier] = STATE(1837), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(24), + [sym_template_instantiation] = STATE(24), + [sym_operator_cast] = STATE(6927), + [sym__constructor_specifiers] = STATE(1837), + [sym_operator_cast_definition] = STATE(24), + [sym_operator_cast_declaration] = STATE(24), + [sym_constructor_or_destructor_definition] = STATE(24), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(4529), + [sym_namespace_definition] = STATE(24), + [sym_namespace_alias_definition] = STATE(24), + [sym_using_declaration] = STATE(24), + [sym_alias_declaration] = STATE(24), + [sym_static_assert_declaration] = STATE(24), + [sym_concept_definition] = STATE(24), + [sym_for_range_loop] = STATE(260), + [sym_co_return_statement] = STATE(260), + [sym_co_yield_statement] = STATE(260), + [sym_throw_statement] = STATE(260), + [sym_try_statement] = STATE(260), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5525), + [sym_qualified_identifier] = STATE(3362), + [sym_qualified_type_identifier] = STATE(3059), + [sym_qualified_operator_cast_identifier] = STATE(6927), + [sym_operator_name] = STATE(6145), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_preproc_if_repeat1] = STATE(24), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(146), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1837), [sym_identifier] = ACTIONS(267), [aux_sym_preproc_include_token1] = ACTIONS(269), [aux_sym_preproc_def_token1] = ACTIONS(271), @@ -37078,129 +37361,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(33), [sym_preproc_if] = STATE(33), [sym_preproc_ifdef] = STATE(33), - [sym_preproc_else] = STATE(8407), - [sym_preproc_elif] = STATE(8407), - [sym_preproc_elifdef] = STATE(8407), + [sym_preproc_else] = STATE(8591), + [sym_preproc_elif] = STATE(8591), + [sym_preproc_elifdef] = STATE(8591), [sym_function_definition] = STATE(33), [sym_declaration] = STATE(33), [sym_type_definition] = STATE(33), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(4644), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(4710), [sym_linkage_specification] = STATE(33), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(860), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_call_modifier] = STATE(1929), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6310), - [sym_array_declarator] = STATE(5998), - [sym_compound_statement] = STATE(279), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2724), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(432), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(859), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_call_modifier] = STATE(1963), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6455), + [sym_array_declarator] = STATE(6145), + [sym_compound_statement] = STATE(260), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2784), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(439), [sym_statement] = STATE(33), - [sym_labeled_statement] = STATE(279), - [sym_expression_statement] = STATE(279), - [sym_if_statement] = STATE(279), - [sym_switch_statement] = STATE(279), - [sym_case_statement] = STATE(279), - [sym_while_statement] = STATE(279), - [sym_do_statement] = STATE(279), - [sym_for_statement] = STATE(279), - [sym_return_statement] = STATE(279), - [sym_break_statement] = STATE(279), - [sym_continue_statement] = STATE(279), - [sym_goto_statement] = STATE(279), - [sym_seh_try_statement] = STATE(279), - [sym_seh_leave_statement] = STATE(279), - [sym_expression] = STATE(4493), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8429), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), + [sym_labeled_statement] = STATE(260), + [sym_expression_statement] = STATE(260), + [sym_if_statement] = STATE(260), + [sym_switch_statement] = STATE(260), + [sym_case_statement] = STATE(260), + [sym_while_statement] = STATE(260), + [sym_do_statement] = STATE(260), + [sym_for_statement] = STATE(260), + [sym_return_statement] = STATE(260), + [sym_break_statement] = STATE(260), + [sym_continue_statement] = STATE(260), + [sym_goto_statement] = STATE(260), + [sym_seh_try_statement] = STATE(260), + [sym_seh_leave_statement] = STATE(260), + [sym_expression] = STATE(4517), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8280), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), [sym__empty_declaration] = STATE(33), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_explicit_function_specifier] = STATE(1731), - [sym_dependent_type] = STATE(2523), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_explicit_function_specifier] = STATE(1837), + [sym_dependent_type] = STATE(2558), [sym_template_declaration] = STATE(33), [sym_template_instantiation] = STATE(33), - [sym_operator_cast] = STATE(6804), - [sym__constructor_specifiers] = STATE(1731), + [sym_operator_cast] = STATE(6927), + [sym__constructor_specifiers] = STATE(1837), [sym_operator_cast_definition] = STATE(33), [sym_operator_cast_declaration] = STATE(33), [sym_constructor_or_destructor_definition] = STATE(33), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(4494), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(4529), [sym_namespace_definition] = STATE(33), [sym_namespace_alias_definition] = STATE(33), [sym_using_declaration] = STATE(33), [sym_alias_declaration] = STATE(33), [sym_static_assert_declaration] = STATE(33), [sym_concept_definition] = STATE(33), - [sym_for_range_loop] = STATE(279), - [sym_co_return_statement] = STATE(279), - [sym_co_yield_statement] = STATE(279), - [sym_throw_statement] = STATE(279), - [sym_try_statement] = STATE(279), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5460), - [sym_qualified_identifier] = STATE(3281), - [sym_qualified_type_identifier] = STATE(3109), - [sym_qualified_operator_cast_identifier] = STATE(6804), - [sym_operator_name] = STATE(5998), - [sym_user_defined_literal] = STATE(3242), + [sym_for_range_loop] = STATE(260), + [sym_co_return_statement] = STATE(260), + [sym_co_yield_statement] = STATE(260), + [sym_throw_statement] = STATE(260), + [sym_try_statement] = STATE(260), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5525), + [sym_qualified_identifier] = STATE(3362), + [sym_qualified_type_identifier] = STATE(3059), + [sym_qualified_operator_cast_identifier] = STATE(6927), + [sym_operator_name] = STATE(6145), + [sym_user_defined_literal] = STATE(3323), [aux_sym_preproc_if_repeat1] = STATE(33), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(147), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1731), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(146), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1837), [sym_identifier] = ACTIONS(267), [aux_sym_preproc_include_token1] = ACTIONS(269), [aux_sym_preproc_def_token1] = ACTIONS(271), @@ -37341,136 +37624,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [24] = { - [sym__block_item] = STATE(26), - [sym_preproc_include] = STATE(26), - [sym_preproc_def] = STATE(26), - [sym_preproc_function_def] = STATE(26), - [sym_preproc_call] = STATE(26), - [sym_preproc_if] = STATE(26), - [sym_preproc_ifdef] = STATE(26), - [sym_preproc_else] = STATE(8757), - [sym_preproc_elif] = STATE(8757), - [sym_preproc_elifdef] = STATE(8757), - [sym_function_definition] = STATE(26), - [sym_declaration] = STATE(26), - [sym_type_definition] = STATE(26), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(4644), - [sym_linkage_specification] = STATE(26), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(860), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_call_modifier] = STATE(1929), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6310), - [sym_array_declarator] = STATE(5998), - [sym_compound_statement] = STATE(279), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2724), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(432), - [sym_statement] = STATE(26), - [sym_labeled_statement] = STATE(279), - [sym_expression_statement] = STATE(279), - [sym_if_statement] = STATE(279), - [sym_switch_statement] = STATE(279), - [sym_case_statement] = STATE(279), - [sym_while_statement] = STATE(279), - [sym_do_statement] = STATE(279), - [sym_for_statement] = STATE(279), - [sym_return_statement] = STATE(279), - [sym_break_statement] = STATE(279), - [sym_continue_statement] = STATE(279), - [sym_goto_statement] = STATE(279), - [sym_seh_try_statement] = STATE(279), - [sym_seh_leave_statement] = STATE(279), - [sym_expression] = STATE(4493), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8429), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym__empty_declaration] = STATE(26), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_explicit_function_specifier] = STATE(1731), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(26), - [sym_template_instantiation] = STATE(26), - [sym_operator_cast] = STATE(6804), - [sym__constructor_specifiers] = STATE(1731), - [sym_operator_cast_definition] = STATE(26), - [sym_operator_cast_declaration] = STATE(26), - [sym_constructor_or_destructor_definition] = STATE(26), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(4494), - [sym_namespace_definition] = STATE(26), - [sym_namespace_alias_definition] = STATE(26), - [sym_using_declaration] = STATE(26), - [sym_alias_declaration] = STATE(26), - [sym_static_assert_declaration] = STATE(26), - [sym_concept_definition] = STATE(26), - [sym_for_range_loop] = STATE(279), - [sym_co_return_statement] = STATE(279), - [sym_co_yield_statement] = STATE(279), - [sym_throw_statement] = STATE(279), - [sym_try_statement] = STATE(279), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5460), - [sym_qualified_identifier] = STATE(3281), - [sym_qualified_type_identifier] = STATE(3109), - [sym_qualified_operator_cast_identifier] = STATE(6804), - [sym_operator_name] = STATE(5998), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_preproc_if_repeat1] = STATE(26), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(147), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1731), + [sym__block_item] = STATE(33), + [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_preproc_else] = STATE(8109), + [sym_preproc_elif] = STATE(8109), + [sym_preproc_elifdef] = STATE(8109), + [sym_function_definition] = STATE(33), + [sym_declaration] = STATE(33), + [sym_type_definition] = STATE(33), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(4710), + [sym_linkage_specification] = STATE(33), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(859), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_call_modifier] = STATE(1963), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6455), + [sym_array_declarator] = STATE(6145), + [sym_compound_statement] = STATE(260), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2784), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(439), + [sym_statement] = STATE(33), + [sym_labeled_statement] = STATE(260), + [sym_expression_statement] = STATE(260), + [sym_if_statement] = STATE(260), + [sym_switch_statement] = STATE(260), + [sym_case_statement] = STATE(260), + [sym_while_statement] = STATE(260), + [sym_do_statement] = STATE(260), + [sym_for_statement] = STATE(260), + [sym_return_statement] = STATE(260), + [sym_break_statement] = STATE(260), + [sym_continue_statement] = STATE(260), + [sym_goto_statement] = STATE(260), + [sym_seh_try_statement] = STATE(260), + [sym_seh_leave_statement] = STATE(260), + [sym_expression] = STATE(4517), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8280), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym__empty_declaration] = STATE(33), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_explicit_function_specifier] = STATE(1837), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(33), + [sym_template_instantiation] = STATE(33), + [sym_operator_cast] = STATE(6927), + [sym__constructor_specifiers] = STATE(1837), + [sym_operator_cast_definition] = STATE(33), + [sym_operator_cast_declaration] = STATE(33), + [sym_constructor_or_destructor_definition] = STATE(33), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(4529), + [sym_namespace_definition] = STATE(33), + [sym_namespace_alias_definition] = STATE(33), + [sym_using_declaration] = STATE(33), + [sym_alias_declaration] = STATE(33), + [sym_static_assert_declaration] = STATE(33), + [sym_concept_definition] = STATE(33), + [sym_for_range_loop] = STATE(260), + [sym_co_return_statement] = STATE(260), + [sym_co_yield_statement] = STATE(260), + [sym_throw_statement] = STATE(260), + [sym_try_statement] = STATE(260), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5525), + [sym_qualified_identifier] = STATE(3362), + [sym_qualified_type_identifier] = STATE(3059), + [sym_qualified_operator_cast_identifier] = STATE(6927), + [sym_operator_name] = STATE(6145), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_preproc_if_repeat1] = STATE(33), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(146), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1837), [sym_identifier] = ACTIONS(267), [aux_sym_preproc_include_token1] = ACTIONS(269), [aux_sym_preproc_def_token1] = ACTIONS(271), @@ -37611,136 +37894,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [25] = { - [sym__block_item] = STATE(28), - [sym_preproc_include] = STATE(28), - [sym_preproc_def] = STATE(28), - [sym_preproc_function_def] = STATE(28), - [sym_preproc_call] = STATE(28), - [sym_preproc_if] = STATE(28), - [sym_preproc_ifdef] = STATE(28), - [sym_preproc_else] = STATE(8566), - [sym_preproc_elif] = STATE(8566), - [sym_preproc_elifdef] = STATE(8566), - [sym_function_definition] = STATE(28), - [sym_declaration] = STATE(28), - [sym_type_definition] = STATE(28), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(4644), - [sym_linkage_specification] = STATE(28), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(860), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_call_modifier] = STATE(1929), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6310), - [sym_array_declarator] = STATE(5998), - [sym_compound_statement] = STATE(279), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2724), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(432), - [sym_statement] = STATE(28), - [sym_labeled_statement] = STATE(279), - [sym_expression_statement] = STATE(279), - [sym_if_statement] = STATE(279), - [sym_switch_statement] = STATE(279), - [sym_case_statement] = STATE(279), - [sym_while_statement] = STATE(279), - [sym_do_statement] = STATE(279), - [sym_for_statement] = STATE(279), - [sym_return_statement] = STATE(279), - [sym_break_statement] = STATE(279), - [sym_continue_statement] = STATE(279), - [sym_goto_statement] = STATE(279), - [sym_seh_try_statement] = STATE(279), - [sym_seh_leave_statement] = STATE(279), - [sym_expression] = STATE(4493), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8429), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym__empty_declaration] = STATE(28), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_explicit_function_specifier] = STATE(1731), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(28), - [sym_template_instantiation] = STATE(28), - [sym_operator_cast] = STATE(6804), - [sym__constructor_specifiers] = STATE(1731), - [sym_operator_cast_definition] = STATE(28), - [sym_operator_cast_declaration] = STATE(28), - [sym_constructor_or_destructor_definition] = STATE(28), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(4494), - [sym_namespace_definition] = STATE(28), - [sym_namespace_alias_definition] = STATE(28), - [sym_using_declaration] = STATE(28), - [sym_alias_declaration] = STATE(28), - [sym_static_assert_declaration] = STATE(28), - [sym_concept_definition] = STATE(28), - [sym_for_range_loop] = STATE(279), - [sym_co_return_statement] = STATE(279), - [sym_co_yield_statement] = STATE(279), - [sym_throw_statement] = STATE(279), - [sym_try_statement] = STATE(279), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5460), - [sym_qualified_identifier] = STATE(3281), - [sym_qualified_type_identifier] = STATE(3109), - [sym_qualified_operator_cast_identifier] = STATE(6804), - [sym_operator_name] = STATE(5998), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_preproc_if_repeat1] = STATE(28), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(147), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1731), + [sym__block_item] = STATE(27), + [sym_preproc_include] = STATE(27), + [sym_preproc_def] = STATE(27), + [sym_preproc_function_def] = STATE(27), + [sym_preproc_call] = STATE(27), + [sym_preproc_if] = STATE(27), + [sym_preproc_ifdef] = STATE(27), + [sym_preproc_else] = STATE(8150), + [sym_preproc_elif] = STATE(8150), + [sym_preproc_elifdef] = STATE(8150), + [sym_function_definition] = STATE(27), + [sym_declaration] = STATE(27), + [sym_type_definition] = STATE(27), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(4710), + [sym_linkage_specification] = STATE(27), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(859), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_call_modifier] = STATE(1963), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6455), + [sym_array_declarator] = STATE(6145), + [sym_compound_statement] = STATE(260), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2784), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(439), + [sym_statement] = STATE(27), + [sym_labeled_statement] = STATE(260), + [sym_expression_statement] = STATE(260), + [sym_if_statement] = STATE(260), + [sym_switch_statement] = STATE(260), + [sym_case_statement] = STATE(260), + [sym_while_statement] = STATE(260), + [sym_do_statement] = STATE(260), + [sym_for_statement] = STATE(260), + [sym_return_statement] = STATE(260), + [sym_break_statement] = STATE(260), + [sym_continue_statement] = STATE(260), + [sym_goto_statement] = STATE(260), + [sym_seh_try_statement] = STATE(260), + [sym_seh_leave_statement] = STATE(260), + [sym_expression] = STATE(4517), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8280), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym__empty_declaration] = STATE(27), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_explicit_function_specifier] = STATE(1837), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(27), + [sym_template_instantiation] = STATE(27), + [sym_operator_cast] = STATE(6927), + [sym__constructor_specifiers] = STATE(1837), + [sym_operator_cast_definition] = STATE(27), + [sym_operator_cast_declaration] = STATE(27), + [sym_constructor_or_destructor_definition] = STATE(27), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(4529), + [sym_namespace_definition] = STATE(27), + [sym_namespace_alias_definition] = STATE(27), + [sym_using_declaration] = STATE(27), + [sym_alias_declaration] = STATE(27), + [sym_static_assert_declaration] = STATE(27), + [sym_concept_definition] = STATE(27), + [sym_for_range_loop] = STATE(260), + [sym_co_return_statement] = STATE(260), + [sym_co_yield_statement] = STATE(260), + [sym_throw_statement] = STATE(260), + [sym_try_statement] = STATE(260), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5525), + [sym_qualified_identifier] = STATE(3362), + [sym_qualified_type_identifier] = STATE(3059), + [sym_qualified_operator_cast_identifier] = STATE(6927), + [sym_operator_name] = STATE(6145), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_preproc_if_repeat1] = STATE(27), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(146), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1837), [sym_identifier] = ACTIONS(267), [aux_sym_preproc_include_token1] = ACTIONS(269), [aux_sym_preproc_def_token1] = ACTIONS(271), @@ -37881,136 +38164,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [26] = { - [sym__block_item] = STATE(33), - [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_preproc_else] = STATE(8269), - [sym_preproc_elif] = STATE(8269), - [sym_preproc_elifdef] = STATE(8269), - [sym_function_definition] = STATE(33), - [sym_declaration] = STATE(33), - [sym_type_definition] = STATE(33), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(4644), - [sym_linkage_specification] = STATE(33), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(860), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_call_modifier] = STATE(1929), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6310), - [sym_array_declarator] = STATE(5998), - [sym_compound_statement] = STATE(279), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2724), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(432), - [sym_statement] = STATE(33), - [sym_labeled_statement] = STATE(279), - [sym_expression_statement] = STATE(279), - [sym_if_statement] = STATE(279), - [sym_switch_statement] = STATE(279), - [sym_case_statement] = STATE(279), - [sym_while_statement] = STATE(279), - [sym_do_statement] = STATE(279), - [sym_for_statement] = STATE(279), - [sym_return_statement] = STATE(279), - [sym_break_statement] = STATE(279), - [sym_continue_statement] = STATE(279), - [sym_goto_statement] = STATE(279), - [sym_seh_try_statement] = STATE(279), - [sym_seh_leave_statement] = STATE(279), - [sym_expression] = STATE(4493), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8429), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym__empty_declaration] = STATE(33), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_explicit_function_specifier] = STATE(1731), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(33), - [sym_template_instantiation] = STATE(33), - [sym_operator_cast] = STATE(6804), - [sym__constructor_specifiers] = STATE(1731), - [sym_operator_cast_definition] = STATE(33), - [sym_operator_cast_declaration] = STATE(33), - [sym_constructor_or_destructor_definition] = STATE(33), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(4494), - [sym_namespace_definition] = STATE(33), - [sym_namespace_alias_definition] = STATE(33), - [sym_using_declaration] = STATE(33), - [sym_alias_declaration] = STATE(33), - [sym_static_assert_declaration] = STATE(33), - [sym_concept_definition] = STATE(33), - [sym_for_range_loop] = STATE(279), - [sym_co_return_statement] = STATE(279), - [sym_co_yield_statement] = STATE(279), - [sym_throw_statement] = STATE(279), - [sym_try_statement] = STATE(279), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5460), - [sym_qualified_identifier] = STATE(3281), - [sym_qualified_type_identifier] = STATE(3109), - [sym_qualified_operator_cast_identifier] = STATE(6804), - [sym_operator_name] = STATE(5998), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_preproc_if_repeat1] = STATE(33), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(147), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1731), + [sym__block_item] = STATE(28), + [sym_preproc_include] = STATE(28), + [sym_preproc_def] = STATE(28), + [sym_preproc_function_def] = STATE(28), + [sym_preproc_call] = STATE(28), + [sym_preproc_if] = STATE(28), + [sym_preproc_ifdef] = STATE(28), + [sym_preproc_else] = STATE(8556), + [sym_preproc_elif] = STATE(8556), + [sym_preproc_elifdef] = STATE(8556), + [sym_function_definition] = STATE(28), + [sym_declaration] = STATE(28), + [sym_type_definition] = STATE(28), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(4710), + [sym_linkage_specification] = STATE(28), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(859), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_call_modifier] = STATE(1963), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6455), + [sym_array_declarator] = STATE(6145), + [sym_compound_statement] = STATE(260), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2784), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(439), + [sym_statement] = STATE(28), + [sym_labeled_statement] = STATE(260), + [sym_expression_statement] = STATE(260), + [sym_if_statement] = STATE(260), + [sym_switch_statement] = STATE(260), + [sym_case_statement] = STATE(260), + [sym_while_statement] = STATE(260), + [sym_do_statement] = STATE(260), + [sym_for_statement] = STATE(260), + [sym_return_statement] = STATE(260), + [sym_break_statement] = STATE(260), + [sym_continue_statement] = STATE(260), + [sym_goto_statement] = STATE(260), + [sym_seh_try_statement] = STATE(260), + [sym_seh_leave_statement] = STATE(260), + [sym_expression] = STATE(4517), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8280), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym__empty_declaration] = STATE(28), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_explicit_function_specifier] = STATE(1837), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(28), + [sym_template_instantiation] = STATE(28), + [sym_operator_cast] = STATE(6927), + [sym__constructor_specifiers] = STATE(1837), + [sym_operator_cast_definition] = STATE(28), + [sym_operator_cast_declaration] = STATE(28), + [sym_constructor_or_destructor_definition] = STATE(28), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(4529), + [sym_namespace_definition] = STATE(28), + [sym_namespace_alias_definition] = STATE(28), + [sym_using_declaration] = STATE(28), + [sym_alias_declaration] = STATE(28), + [sym_static_assert_declaration] = STATE(28), + [sym_concept_definition] = STATE(28), + [sym_for_range_loop] = STATE(260), + [sym_co_return_statement] = STATE(260), + [sym_co_yield_statement] = STATE(260), + [sym_throw_statement] = STATE(260), + [sym_try_statement] = STATE(260), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5525), + [sym_qualified_identifier] = STATE(3362), + [sym_qualified_type_identifier] = STATE(3059), + [sym_qualified_operator_cast_identifier] = STATE(6927), + [sym_operator_name] = STATE(6145), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_preproc_if_repeat1] = STATE(28), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(146), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1837), [sym_identifier] = ACTIONS(267), [aux_sym_preproc_include_token1] = ACTIONS(269), [aux_sym_preproc_def_token1] = ACTIONS(271), @@ -38151,136 +38434,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [27] = { - [sym__block_item] = STATE(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_preproc_else] = STATE(8361), - [sym_preproc_elif] = STATE(8361), - [sym_preproc_elifdef] = STATE(8361), - [sym_function_definition] = STATE(30), - [sym_declaration] = STATE(30), - [sym_type_definition] = STATE(30), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(4644), - [sym_linkage_specification] = STATE(30), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(860), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_call_modifier] = STATE(1929), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6310), - [sym_array_declarator] = STATE(5998), - [sym_compound_statement] = STATE(279), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2724), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(432), - [sym_statement] = STATE(30), - [sym_labeled_statement] = STATE(279), - [sym_expression_statement] = STATE(279), - [sym_if_statement] = STATE(279), - [sym_switch_statement] = STATE(279), - [sym_case_statement] = STATE(279), - [sym_while_statement] = STATE(279), - [sym_do_statement] = STATE(279), - [sym_for_statement] = STATE(279), - [sym_return_statement] = STATE(279), - [sym_break_statement] = STATE(279), - [sym_continue_statement] = STATE(279), - [sym_goto_statement] = STATE(279), - [sym_seh_try_statement] = STATE(279), - [sym_seh_leave_statement] = STATE(279), - [sym_expression] = STATE(4493), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8429), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym__empty_declaration] = STATE(30), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_explicit_function_specifier] = STATE(1731), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(30), - [sym_template_instantiation] = STATE(30), - [sym_operator_cast] = STATE(6804), - [sym__constructor_specifiers] = STATE(1731), - [sym_operator_cast_definition] = STATE(30), - [sym_operator_cast_declaration] = STATE(30), - [sym_constructor_or_destructor_definition] = STATE(30), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(4494), - [sym_namespace_definition] = STATE(30), - [sym_namespace_alias_definition] = STATE(30), - [sym_using_declaration] = STATE(30), - [sym_alias_declaration] = STATE(30), - [sym_static_assert_declaration] = STATE(30), - [sym_concept_definition] = STATE(30), - [sym_for_range_loop] = STATE(279), - [sym_co_return_statement] = STATE(279), - [sym_co_yield_statement] = STATE(279), - [sym_throw_statement] = STATE(279), - [sym_try_statement] = STATE(279), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5460), - [sym_qualified_identifier] = STATE(3281), - [sym_qualified_type_identifier] = STATE(3109), - [sym_qualified_operator_cast_identifier] = STATE(6804), - [sym_operator_name] = STATE(5998), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_preproc_if_repeat1] = STATE(30), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(147), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1731), + [sym__block_item] = STATE(33), + [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_preproc_else] = STATE(8561), + [sym_preproc_elif] = STATE(8561), + [sym_preproc_elifdef] = STATE(8561), + [sym_function_definition] = STATE(33), + [sym_declaration] = STATE(33), + [sym_type_definition] = STATE(33), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(4710), + [sym_linkage_specification] = STATE(33), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(859), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_call_modifier] = STATE(1963), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6455), + [sym_array_declarator] = STATE(6145), + [sym_compound_statement] = STATE(260), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2784), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(439), + [sym_statement] = STATE(33), + [sym_labeled_statement] = STATE(260), + [sym_expression_statement] = STATE(260), + [sym_if_statement] = STATE(260), + [sym_switch_statement] = STATE(260), + [sym_case_statement] = STATE(260), + [sym_while_statement] = STATE(260), + [sym_do_statement] = STATE(260), + [sym_for_statement] = STATE(260), + [sym_return_statement] = STATE(260), + [sym_break_statement] = STATE(260), + [sym_continue_statement] = STATE(260), + [sym_goto_statement] = STATE(260), + [sym_seh_try_statement] = STATE(260), + [sym_seh_leave_statement] = STATE(260), + [sym_expression] = STATE(4517), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8280), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym__empty_declaration] = STATE(33), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_explicit_function_specifier] = STATE(1837), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(33), + [sym_template_instantiation] = STATE(33), + [sym_operator_cast] = STATE(6927), + [sym__constructor_specifiers] = STATE(1837), + [sym_operator_cast_definition] = STATE(33), + [sym_operator_cast_declaration] = STATE(33), + [sym_constructor_or_destructor_definition] = STATE(33), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(4529), + [sym_namespace_definition] = STATE(33), + [sym_namespace_alias_definition] = STATE(33), + [sym_using_declaration] = STATE(33), + [sym_alias_declaration] = STATE(33), + [sym_static_assert_declaration] = STATE(33), + [sym_concept_definition] = STATE(33), + [sym_for_range_loop] = STATE(260), + [sym_co_return_statement] = STATE(260), + [sym_co_yield_statement] = STATE(260), + [sym_throw_statement] = STATE(260), + [sym_try_statement] = STATE(260), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5525), + [sym_qualified_identifier] = STATE(3362), + [sym_qualified_type_identifier] = STATE(3059), + [sym_qualified_operator_cast_identifier] = STATE(6927), + [sym_operator_name] = STATE(6145), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_preproc_if_repeat1] = STATE(33), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(146), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1837), [sym_identifier] = ACTIONS(267), [aux_sym_preproc_include_token1] = ACTIONS(269), [aux_sym_preproc_def_token1] = ACTIONS(271), @@ -38428,129 +38711,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(33), [sym_preproc_if] = STATE(33), [sym_preproc_ifdef] = STATE(33), - [sym_preproc_else] = STATE(7934), - [sym_preproc_elif] = STATE(7934), - [sym_preproc_elifdef] = STATE(7934), + [sym_preproc_else] = STATE(8296), + [sym_preproc_elif] = STATE(8296), + [sym_preproc_elifdef] = STATE(8296), [sym_function_definition] = STATE(33), [sym_declaration] = STATE(33), [sym_type_definition] = STATE(33), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(4644), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(4710), [sym_linkage_specification] = STATE(33), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(860), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_call_modifier] = STATE(1929), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6310), - [sym_array_declarator] = STATE(5998), - [sym_compound_statement] = STATE(279), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2724), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(432), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(859), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_call_modifier] = STATE(1963), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6455), + [sym_array_declarator] = STATE(6145), + [sym_compound_statement] = STATE(260), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2784), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(439), [sym_statement] = STATE(33), - [sym_labeled_statement] = STATE(279), - [sym_expression_statement] = STATE(279), - [sym_if_statement] = STATE(279), - [sym_switch_statement] = STATE(279), - [sym_case_statement] = STATE(279), - [sym_while_statement] = STATE(279), - [sym_do_statement] = STATE(279), - [sym_for_statement] = STATE(279), - [sym_return_statement] = STATE(279), - [sym_break_statement] = STATE(279), - [sym_continue_statement] = STATE(279), - [sym_goto_statement] = STATE(279), - [sym_seh_try_statement] = STATE(279), - [sym_seh_leave_statement] = STATE(279), - [sym_expression] = STATE(4493), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8429), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), + [sym_labeled_statement] = STATE(260), + [sym_expression_statement] = STATE(260), + [sym_if_statement] = STATE(260), + [sym_switch_statement] = STATE(260), + [sym_case_statement] = STATE(260), + [sym_while_statement] = STATE(260), + [sym_do_statement] = STATE(260), + [sym_for_statement] = STATE(260), + [sym_return_statement] = STATE(260), + [sym_break_statement] = STATE(260), + [sym_continue_statement] = STATE(260), + [sym_goto_statement] = STATE(260), + [sym_seh_try_statement] = STATE(260), + [sym_seh_leave_statement] = STATE(260), + [sym_expression] = STATE(4517), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8280), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), [sym__empty_declaration] = STATE(33), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_explicit_function_specifier] = STATE(1731), - [sym_dependent_type] = STATE(2523), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_explicit_function_specifier] = STATE(1837), + [sym_dependent_type] = STATE(2558), [sym_template_declaration] = STATE(33), [sym_template_instantiation] = STATE(33), - [sym_operator_cast] = STATE(6804), - [sym__constructor_specifiers] = STATE(1731), + [sym_operator_cast] = STATE(6927), + [sym__constructor_specifiers] = STATE(1837), [sym_operator_cast_definition] = STATE(33), [sym_operator_cast_declaration] = STATE(33), [sym_constructor_or_destructor_definition] = STATE(33), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(4494), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(4529), [sym_namespace_definition] = STATE(33), [sym_namespace_alias_definition] = STATE(33), [sym_using_declaration] = STATE(33), [sym_alias_declaration] = STATE(33), [sym_static_assert_declaration] = STATE(33), [sym_concept_definition] = STATE(33), - [sym_for_range_loop] = STATE(279), - [sym_co_return_statement] = STATE(279), - [sym_co_yield_statement] = STATE(279), - [sym_throw_statement] = STATE(279), - [sym_try_statement] = STATE(279), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5460), - [sym_qualified_identifier] = STATE(3281), - [sym_qualified_type_identifier] = STATE(3109), - [sym_qualified_operator_cast_identifier] = STATE(6804), - [sym_operator_name] = STATE(5998), - [sym_user_defined_literal] = STATE(3242), + [sym_for_range_loop] = STATE(260), + [sym_co_return_statement] = STATE(260), + [sym_co_yield_statement] = STATE(260), + [sym_throw_statement] = STATE(260), + [sym_try_statement] = STATE(260), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5525), + [sym_qualified_identifier] = STATE(3362), + [sym_qualified_type_identifier] = STATE(3059), + [sym_qualified_operator_cast_identifier] = STATE(6927), + [sym_operator_name] = STATE(6145), + [sym_user_defined_literal] = STATE(3323), [aux_sym_preproc_if_repeat1] = STATE(33), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(147), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1731), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(146), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1837), [sym_identifier] = ACTIONS(267), [aux_sym_preproc_include_token1] = ACTIONS(269), [aux_sym_preproc_def_token1] = ACTIONS(271), @@ -38691,136 +38974,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [29] = { - [sym__block_item] = STATE(18), - [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(7923), - [sym_preproc_elif] = STATE(7923), - [sym_preproc_elifdef] = STATE(7923), - [sym_function_definition] = STATE(18), - [sym_declaration] = STATE(18), - [sym_type_definition] = STATE(18), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(4644), - [sym_linkage_specification] = STATE(18), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(860), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_call_modifier] = STATE(1929), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6310), - [sym_array_declarator] = STATE(5998), - [sym_compound_statement] = STATE(279), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2724), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(432), - [sym_statement] = STATE(18), - [sym_labeled_statement] = STATE(279), - [sym_expression_statement] = STATE(279), - [sym_if_statement] = STATE(279), - [sym_switch_statement] = STATE(279), - [sym_case_statement] = STATE(279), - [sym_while_statement] = STATE(279), - [sym_do_statement] = STATE(279), - [sym_for_statement] = STATE(279), - [sym_return_statement] = STATE(279), - [sym_break_statement] = STATE(279), - [sym_continue_statement] = STATE(279), - [sym_goto_statement] = STATE(279), - [sym_seh_try_statement] = STATE(279), - [sym_seh_leave_statement] = STATE(279), - [sym_expression] = STATE(4493), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8429), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym__empty_declaration] = STATE(18), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_explicit_function_specifier] = STATE(1731), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(18), - [sym_template_instantiation] = STATE(18), - [sym_operator_cast] = STATE(6804), - [sym__constructor_specifiers] = STATE(1731), - [sym_operator_cast_definition] = STATE(18), - [sym_operator_cast_declaration] = STATE(18), - [sym_constructor_or_destructor_definition] = STATE(18), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(4494), - [sym_namespace_definition] = STATE(18), - [sym_namespace_alias_definition] = STATE(18), - [sym_using_declaration] = STATE(18), - [sym_alias_declaration] = STATE(18), - [sym_static_assert_declaration] = STATE(18), - [sym_concept_definition] = STATE(18), - [sym_for_range_loop] = STATE(279), - [sym_co_return_statement] = STATE(279), - [sym_co_yield_statement] = STATE(279), - [sym_throw_statement] = STATE(279), - [sym_try_statement] = STATE(279), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5460), - [sym_qualified_identifier] = STATE(3281), - [sym_qualified_type_identifier] = STATE(3109), - [sym_qualified_operator_cast_identifier] = STATE(6804), - [sym_operator_name] = STATE(5998), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_preproc_if_repeat1] = STATE(18), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(147), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1731), + [sym__block_item] = STATE(31), + [sym_preproc_include] = STATE(31), + [sym_preproc_def] = STATE(31), + [sym_preproc_function_def] = STATE(31), + [sym_preproc_call] = STATE(31), + [sym_preproc_if] = STATE(31), + [sym_preproc_ifdef] = STATE(31), + [sym_preproc_else] = STATE(8615), + [sym_preproc_elif] = STATE(8615), + [sym_preproc_elifdef] = STATE(8615), + [sym_function_definition] = STATE(31), + [sym_declaration] = STATE(31), + [sym_type_definition] = STATE(31), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(4710), + [sym_linkage_specification] = STATE(31), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(859), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_call_modifier] = STATE(1963), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6455), + [sym_array_declarator] = STATE(6145), + [sym_compound_statement] = STATE(260), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2784), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(439), + [sym_statement] = STATE(31), + [sym_labeled_statement] = STATE(260), + [sym_expression_statement] = STATE(260), + [sym_if_statement] = STATE(260), + [sym_switch_statement] = STATE(260), + [sym_case_statement] = STATE(260), + [sym_while_statement] = STATE(260), + [sym_do_statement] = STATE(260), + [sym_for_statement] = STATE(260), + [sym_return_statement] = STATE(260), + [sym_break_statement] = STATE(260), + [sym_continue_statement] = STATE(260), + [sym_goto_statement] = STATE(260), + [sym_seh_try_statement] = STATE(260), + [sym_seh_leave_statement] = STATE(260), + [sym_expression] = STATE(4517), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8280), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym__empty_declaration] = STATE(31), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_explicit_function_specifier] = STATE(1837), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(31), + [sym_template_instantiation] = STATE(31), + [sym_operator_cast] = STATE(6927), + [sym__constructor_specifiers] = STATE(1837), + [sym_operator_cast_definition] = STATE(31), + [sym_operator_cast_declaration] = STATE(31), + [sym_constructor_or_destructor_definition] = STATE(31), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(4529), + [sym_namespace_definition] = STATE(31), + [sym_namespace_alias_definition] = STATE(31), + [sym_using_declaration] = STATE(31), + [sym_alias_declaration] = STATE(31), + [sym_static_assert_declaration] = STATE(31), + [sym_concept_definition] = STATE(31), + [sym_for_range_loop] = STATE(260), + [sym_co_return_statement] = STATE(260), + [sym_co_yield_statement] = STATE(260), + [sym_throw_statement] = STATE(260), + [sym_try_statement] = STATE(260), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5525), + [sym_qualified_identifier] = STATE(3362), + [sym_qualified_type_identifier] = STATE(3059), + [sym_qualified_operator_cast_identifier] = STATE(6927), + [sym_operator_name] = STATE(6145), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_preproc_if_repeat1] = STATE(31), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(146), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1837), [sym_identifier] = ACTIONS(267), [aux_sym_preproc_include_token1] = ACTIONS(269), [aux_sym_preproc_def_token1] = ACTIONS(271), @@ -38961,136 +39244,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [30] = { - [sym__block_item] = STATE(33), - [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_preproc_else] = STATE(8425), - [sym_preproc_elif] = STATE(8425), - [sym_preproc_elifdef] = STATE(8425), - [sym_function_definition] = STATE(33), - [sym_declaration] = STATE(33), - [sym_type_definition] = STATE(33), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(4644), - [sym_linkage_specification] = STATE(33), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(860), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_call_modifier] = STATE(1929), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6310), - [sym_array_declarator] = STATE(5998), - [sym_compound_statement] = STATE(279), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2724), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(432), - [sym_statement] = STATE(33), - [sym_labeled_statement] = STATE(279), - [sym_expression_statement] = STATE(279), - [sym_if_statement] = STATE(279), - [sym_switch_statement] = STATE(279), - [sym_case_statement] = STATE(279), - [sym_while_statement] = STATE(279), - [sym_do_statement] = STATE(279), - [sym_for_statement] = STATE(279), - [sym_return_statement] = STATE(279), - [sym_break_statement] = STATE(279), - [sym_continue_statement] = STATE(279), - [sym_goto_statement] = STATE(279), - [sym_seh_try_statement] = STATE(279), - [sym_seh_leave_statement] = STATE(279), - [sym_expression] = STATE(4493), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8429), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym__empty_declaration] = STATE(33), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_explicit_function_specifier] = STATE(1731), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(33), - [sym_template_instantiation] = STATE(33), - [sym_operator_cast] = STATE(6804), - [sym__constructor_specifiers] = STATE(1731), - [sym_operator_cast_definition] = STATE(33), - [sym_operator_cast_declaration] = STATE(33), - [sym_constructor_or_destructor_definition] = STATE(33), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(4494), - [sym_namespace_definition] = STATE(33), - [sym_namespace_alias_definition] = STATE(33), - [sym_using_declaration] = STATE(33), - [sym_alias_declaration] = STATE(33), - [sym_static_assert_declaration] = STATE(33), - [sym_concept_definition] = STATE(33), - [sym_for_range_loop] = STATE(279), - [sym_co_return_statement] = STATE(279), - [sym_co_yield_statement] = STATE(279), - [sym_throw_statement] = STATE(279), - [sym_try_statement] = STATE(279), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5460), - [sym_qualified_identifier] = STATE(3281), - [sym_qualified_type_identifier] = STATE(3109), - [sym_qualified_operator_cast_identifier] = STATE(6804), - [sym_operator_name] = STATE(5998), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_preproc_if_repeat1] = STATE(33), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(147), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1731), + [sym__block_item] = STATE(32), + [sym_preproc_include] = STATE(32), + [sym_preproc_def] = STATE(32), + [sym_preproc_function_def] = STATE(32), + [sym_preproc_call] = STATE(32), + [sym_preproc_if] = STATE(32), + [sym_preproc_ifdef] = STATE(32), + [sym_preproc_else] = STATE(8239), + [sym_preproc_elif] = STATE(8239), + [sym_preproc_elifdef] = STATE(8239), + [sym_function_definition] = STATE(32), + [sym_declaration] = STATE(32), + [sym_type_definition] = STATE(32), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(4710), + [sym_linkage_specification] = STATE(32), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(859), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_call_modifier] = STATE(1963), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6455), + [sym_array_declarator] = STATE(6145), + [sym_compound_statement] = STATE(260), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2784), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(439), + [sym_statement] = STATE(32), + [sym_labeled_statement] = STATE(260), + [sym_expression_statement] = STATE(260), + [sym_if_statement] = STATE(260), + [sym_switch_statement] = STATE(260), + [sym_case_statement] = STATE(260), + [sym_while_statement] = STATE(260), + [sym_do_statement] = STATE(260), + [sym_for_statement] = STATE(260), + [sym_return_statement] = STATE(260), + [sym_break_statement] = STATE(260), + [sym_continue_statement] = STATE(260), + [sym_goto_statement] = STATE(260), + [sym_seh_try_statement] = STATE(260), + [sym_seh_leave_statement] = STATE(260), + [sym_expression] = STATE(4517), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8280), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym__empty_declaration] = STATE(32), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_explicit_function_specifier] = STATE(1837), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(32), + [sym_template_instantiation] = STATE(32), + [sym_operator_cast] = STATE(6927), + [sym__constructor_specifiers] = STATE(1837), + [sym_operator_cast_definition] = STATE(32), + [sym_operator_cast_declaration] = STATE(32), + [sym_constructor_or_destructor_definition] = STATE(32), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(4529), + [sym_namespace_definition] = STATE(32), + [sym_namespace_alias_definition] = STATE(32), + [sym_using_declaration] = STATE(32), + [sym_alias_declaration] = STATE(32), + [sym_static_assert_declaration] = STATE(32), + [sym_concept_definition] = STATE(32), + [sym_for_range_loop] = STATE(260), + [sym_co_return_statement] = STATE(260), + [sym_co_yield_statement] = STATE(260), + [sym_throw_statement] = STATE(260), + [sym_try_statement] = STATE(260), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5525), + [sym_qualified_identifier] = STATE(3362), + [sym_qualified_type_identifier] = STATE(3059), + [sym_qualified_operator_cast_identifier] = STATE(6927), + [sym_operator_name] = STATE(6145), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_preproc_if_repeat1] = STATE(32), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(146), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1837), [sym_identifier] = ACTIONS(267), [aux_sym_preproc_include_token1] = ACTIONS(269), [aux_sym_preproc_def_token1] = ACTIONS(271), @@ -39231,136 +39514,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [31] = { - [sym__block_item] = STATE(32), - [sym_preproc_include] = STATE(32), - [sym_preproc_def] = STATE(32), - [sym_preproc_function_def] = STATE(32), - [sym_preproc_call] = STATE(32), - [sym_preproc_if] = STATE(32), - [sym_preproc_ifdef] = STATE(32), - [sym_preproc_else] = STATE(8422), - [sym_preproc_elif] = STATE(8422), - [sym_preproc_elifdef] = STATE(8422), - [sym_function_definition] = STATE(32), - [sym_declaration] = STATE(32), - [sym_type_definition] = STATE(32), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(4644), - [sym_linkage_specification] = STATE(32), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(860), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_call_modifier] = STATE(1929), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6310), - [sym_array_declarator] = STATE(5998), - [sym_compound_statement] = STATE(279), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2724), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(432), - [sym_statement] = STATE(32), - [sym_labeled_statement] = STATE(279), - [sym_expression_statement] = STATE(279), - [sym_if_statement] = STATE(279), - [sym_switch_statement] = STATE(279), - [sym_case_statement] = STATE(279), - [sym_while_statement] = STATE(279), - [sym_do_statement] = STATE(279), - [sym_for_statement] = STATE(279), - [sym_return_statement] = STATE(279), - [sym_break_statement] = STATE(279), - [sym_continue_statement] = STATE(279), - [sym_goto_statement] = STATE(279), - [sym_seh_try_statement] = STATE(279), - [sym_seh_leave_statement] = STATE(279), - [sym_expression] = STATE(4493), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8429), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym__empty_declaration] = STATE(32), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_explicit_function_specifier] = STATE(1731), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(32), - [sym_template_instantiation] = STATE(32), - [sym_operator_cast] = STATE(6804), - [sym__constructor_specifiers] = STATE(1731), - [sym_operator_cast_definition] = STATE(32), - [sym_operator_cast_declaration] = STATE(32), - [sym_constructor_or_destructor_definition] = STATE(32), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(4494), - [sym_namespace_definition] = STATE(32), - [sym_namespace_alias_definition] = STATE(32), - [sym_using_declaration] = STATE(32), - [sym_alias_declaration] = STATE(32), - [sym_static_assert_declaration] = STATE(32), - [sym_concept_definition] = STATE(32), - [sym_for_range_loop] = STATE(279), - [sym_co_return_statement] = STATE(279), - [sym_co_yield_statement] = STATE(279), - [sym_throw_statement] = STATE(279), - [sym_try_statement] = STATE(279), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5460), - [sym_qualified_identifier] = STATE(3281), - [sym_qualified_type_identifier] = STATE(3109), - [sym_qualified_operator_cast_identifier] = STATE(6804), - [sym_operator_name] = STATE(5998), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_preproc_if_repeat1] = STATE(32), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(147), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1731), + [sym__block_item] = STATE(33), + [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_preproc_else] = STATE(8244), + [sym_preproc_elif] = STATE(8244), + [sym_preproc_elifdef] = STATE(8244), + [sym_function_definition] = STATE(33), + [sym_declaration] = STATE(33), + [sym_type_definition] = STATE(33), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(4710), + [sym_linkage_specification] = STATE(33), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(859), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_call_modifier] = STATE(1963), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6455), + [sym_array_declarator] = STATE(6145), + [sym_compound_statement] = STATE(260), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2784), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(439), + [sym_statement] = STATE(33), + [sym_labeled_statement] = STATE(260), + [sym_expression_statement] = STATE(260), + [sym_if_statement] = STATE(260), + [sym_switch_statement] = STATE(260), + [sym_case_statement] = STATE(260), + [sym_while_statement] = STATE(260), + [sym_do_statement] = STATE(260), + [sym_for_statement] = STATE(260), + [sym_return_statement] = STATE(260), + [sym_break_statement] = STATE(260), + [sym_continue_statement] = STATE(260), + [sym_goto_statement] = STATE(260), + [sym_seh_try_statement] = STATE(260), + [sym_seh_leave_statement] = STATE(260), + [sym_expression] = STATE(4517), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8280), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym__empty_declaration] = STATE(33), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_explicit_function_specifier] = STATE(1837), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(33), + [sym_template_instantiation] = STATE(33), + [sym_operator_cast] = STATE(6927), + [sym__constructor_specifiers] = STATE(1837), + [sym_operator_cast_definition] = STATE(33), + [sym_operator_cast_declaration] = STATE(33), + [sym_constructor_or_destructor_definition] = STATE(33), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(4529), + [sym_namespace_definition] = STATE(33), + [sym_namespace_alias_definition] = STATE(33), + [sym_using_declaration] = STATE(33), + [sym_alias_declaration] = STATE(33), + [sym_static_assert_declaration] = STATE(33), + [sym_concept_definition] = STATE(33), + [sym_for_range_loop] = STATE(260), + [sym_co_return_statement] = STATE(260), + [sym_co_yield_statement] = STATE(260), + [sym_throw_statement] = STATE(260), + [sym_try_statement] = STATE(260), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5525), + [sym_qualified_identifier] = STATE(3362), + [sym_qualified_type_identifier] = STATE(3059), + [sym_qualified_operator_cast_identifier] = STATE(6927), + [sym_operator_name] = STATE(6145), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_preproc_if_repeat1] = STATE(33), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(146), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1837), [sym_identifier] = ACTIONS(267), [aux_sym_preproc_include_token1] = ACTIONS(269), [aux_sym_preproc_def_token1] = ACTIONS(271), @@ -39508,129 +39791,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(33), [sym_preproc_if] = STATE(33), [sym_preproc_ifdef] = STATE(33), - [sym_preproc_else] = STATE(8229), - [sym_preproc_elif] = STATE(8229), - [sym_preproc_elifdef] = STATE(8229), + [sym_preproc_else] = STATE(8827), + [sym_preproc_elif] = STATE(8827), + [sym_preproc_elifdef] = STATE(8827), [sym_function_definition] = STATE(33), [sym_declaration] = STATE(33), [sym_type_definition] = STATE(33), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(4644), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(4710), [sym_linkage_specification] = STATE(33), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(860), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_call_modifier] = STATE(1929), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6310), - [sym_array_declarator] = STATE(5998), - [sym_compound_statement] = STATE(279), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2724), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(432), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(859), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_call_modifier] = STATE(1963), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6455), + [sym_array_declarator] = STATE(6145), + [sym_compound_statement] = STATE(260), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2784), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(439), [sym_statement] = STATE(33), - [sym_labeled_statement] = STATE(279), - [sym_expression_statement] = STATE(279), - [sym_if_statement] = STATE(279), - [sym_switch_statement] = STATE(279), - [sym_case_statement] = STATE(279), - [sym_while_statement] = STATE(279), - [sym_do_statement] = STATE(279), - [sym_for_statement] = STATE(279), - [sym_return_statement] = STATE(279), - [sym_break_statement] = STATE(279), - [sym_continue_statement] = STATE(279), - [sym_goto_statement] = STATE(279), - [sym_seh_try_statement] = STATE(279), - [sym_seh_leave_statement] = STATE(279), - [sym_expression] = STATE(4493), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8429), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), + [sym_labeled_statement] = STATE(260), + [sym_expression_statement] = STATE(260), + [sym_if_statement] = STATE(260), + [sym_switch_statement] = STATE(260), + [sym_case_statement] = STATE(260), + [sym_while_statement] = STATE(260), + [sym_do_statement] = STATE(260), + [sym_for_statement] = STATE(260), + [sym_return_statement] = STATE(260), + [sym_break_statement] = STATE(260), + [sym_continue_statement] = STATE(260), + [sym_goto_statement] = STATE(260), + [sym_seh_try_statement] = STATE(260), + [sym_seh_leave_statement] = STATE(260), + [sym_expression] = STATE(4517), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8280), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), [sym__empty_declaration] = STATE(33), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_explicit_function_specifier] = STATE(1731), - [sym_dependent_type] = STATE(2523), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_explicit_function_specifier] = STATE(1837), + [sym_dependent_type] = STATE(2558), [sym_template_declaration] = STATE(33), [sym_template_instantiation] = STATE(33), - [sym_operator_cast] = STATE(6804), - [sym__constructor_specifiers] = STATE(1731), + [sym_operator_cast] = STATE(6927), + [sym__constructor_specifiers] = STATE(1837), [sym_operator_cast_definition] = STATE(33), [sym_operator_cast_declaration] = STATE(33), [sym_constructor_or_destructor_definition] = STATE(33), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(4494), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(4529), [sym_namespace_definition] = STATE(33), [sym_namespace_alias_definition] = STATE(33), [sym_using_declaration] = STATE(33), [sym_alias_declaration] = STATE(33), [sym_static_assert_declaration] = STATE(33), [sym_concept_definition] = STATE(33), - [sym_for_range_loop] = STATE(279), - [sym_co_return_statement] = STATE(279), - [sym_co_yield_statement] = STATE(279), - [sym_throw_statement] = STATE(279), - [sym_try_statement] = STATE(279), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5460), - [sym_qualified_identifier] = STATE(3281), - [sym_qualified_type_identifier] = STATE(3109), - [sym_qualified_operator_cast_identifier] = STATE(6804), - [sym_operator_name] = STATE(5998), - [sym_user_defined_literal] = STATE(3242), + [sym_for_range_loop] = STATE(260), + [sym_co_return_statement] = STATE(260), + [sym_co_yield_statement] = STATE(260), + [sym_throw_statement] = STATE(260), + [sym_try_statement] = STATE(260), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5525), + [sym_qualified_identifier] = STATE(3362), + [sym_qualified_type_identifier] = STATE(3059), + [sym_qualified_operator_cast_identifier] = STATE(6927), + [sym_operator_name] = STATE(6145), + [sym_user_defined_literal] = STATE(3323), [aux_sym_preproc_if_repeat1] = STATE(33), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(147), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1731), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(146), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1837), [sym_identifier] = ACTIONS(267), [aux_sym_preproc_include_token1] = ACTIONS(269), [aux_sym_preproc_def_token1] = ACTIONS(271), @@ -39781,123 +40064,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(33), [sym_declaration] = STATE(33), [sym_type_definition] = STATE(33), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(4644), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(4710), [sym_linkage_specification] = STATE(33), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(860), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_call_modifier] = STATE(1929), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6310), - [sym_array_declarator] = STATE(5998), - [sym_compound_statement] = STATE(279), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2724), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(432), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(859), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_call_modifier] = STATE(1963), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6455), + [sym_array_declarator] = STATE(6145), + [sym_compound_statement] = STATE(260), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2784), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(439), [sym_statement] = STATE(33), - [sym_labeled_statement] = STATE(279), - [sym_expression_statement] = STATE(279), - [sym_if_statement] = STATE(279), - [sym_switch_statement] = STATE(279), - [sym_case_statement] = STATE(279), - [sym_while_statement] = STATE(279), - [sym_do_statement] = STATE(279), - [sym_for_statement] = STATE(279), - [sym_return_statement] = STATE(279), - [sym_break_statement] = STATE(279), - [sym_continue_statement] = STATE(279), - [sym_goto_statement] = STATE(279), - [sym_seh_try_statement] = STATE(279), - [sym_seh_leave_statement] = STATE(279), - [sym_expression] = STATE(4493), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8429), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), + [sym_labeled_statement] = STATE(260), + [sym_expression_statement] = STATE(260), + [sym_if_statement] = STATE(260), + [sym_switch_statement] = STATE(260), + [sym_case_statement] = STATE(260), + [sym_while_statement] = STATE(260), + [sym_do_statement] = STATE(260), + [sym_for_statement] = STATE(260), + [sym_return_statement] = STATE(260), + [sym_break_statement] = STATE(260), + [sym_continue_statement] = STATE(260), + [sym_goto_statement] = STATE(260), + [sym_seh_try_statement] = STATE(260), + [sym_seh_leave_statement] = STATE(260), + [sym_expression] = STATE(4517), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8280), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), [sym__empty_declaration] = STATE(33), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_explicit_function_specifier] = STATE(1731), - [sym_dependent_type] = STATE(2523), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_explicit_function_specifier] = STATE(1837), + [sym_dependent_type] = STATE(2558), [sym_template_declaration] = STATE(33), [sym_template_instantiation] = STATE(33), - [sym_operator_cast] = STATE(6804), - [sym__constructor_specifiers] = STATE(1731), + [sym_operator_cast] = STATE(6927), + [sym__constructor_specifiers] = STATE(1837), [sym_operator_cast_definition] = STATE(33), [sym_operator_cast_declaration] = STATE(33), [sym_constructor_or_destructor_definition] = STATE(33), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(4494), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(4529), [sym_namespace_definition] = STATE(33), [sym_namespace_alias_definition] = STATE(33), [sym_using_declaration] = STATE(33), [sym_alias_declaration] = STATE(33), [sym_static_assert_declaration] = STATE(33), [sym_concept_definition] = STATE(33), - [sym_for_range_loop] = STATE(279), - [sym_co_return_statement] = STATE(279), - [sym_co_yield_statement] = STATE(279), - [sym_throw_statement] = STATE(279), - [sym_try_statement] = STATE(279), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5460), - [sym_qualified_identifier] = STATE(3281), - [sym_qualified_type_identifier] = STATE(3109), - [sym_qualified_operator_cast_identifier] = STATE(6804), - [sym_operator_name] = STATE(5998), - [sym_user_defined_literal] = STATE(3242), + [sym_for_range_loop] = STATE(260), + [sym_co_return_statement] = STATE(260), + [sym_co_yield_statement] = STATE(260), + [sym_throw_statement] = STATE(260), + [sym_try_statement] = STATE(260), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5525), + [sym_qualified_identifier] = STATE(3362), + [sym_qualified_type_identifier] = STATE(3059), + [sym_qualified_operator_cast_identifier] = STATE(6927), + [sym_operator_name] = STATE(6145), + [sym_user_defined_literal] = STATE(3323), [aux_sym_preproc_if_repeat1] = STATE(33), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(147), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1731), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(146), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1837), [sym_identifier] = ACTIONS(381), [aux_sym_preproc_include_token1] = ACTIONS(384), [aux_sym_preproc_def_token1] = ACTIONS(387), @@ -40048,30 +40331,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(35), [sym_declaration] = STATE(35), [sym_type_definition] = STATE(35), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(4748), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(4803), [sym_linkage_specification] = STATE(35), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(860), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_call_modifier] = STATE(1925), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6326), - [sym_array_declarator] = STATE(5998), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(859), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_call_modifier] = STATE(1954), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6392), + [sym_array_declarator] = STATE(6145), [sym_compound_statement] = STATE(35), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2748), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(546), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2791), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(561), [sym__top_level_statement] = STATE(35), [sym_labeled_statement] = STATE(35), [sym__top_level_expression_statement] = STATE(35), @@ -40085,38 +40368,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(35), [sym_continue_statement] = STATE(35), [sym_goto_statement] = STATE(35), - [sym_expression] = STATE(4786), - [sym__string] = STATE(4787), - [sym_conditional_expression] = STATE(4850), - [sym_assignment_expression] = STATE(4850), - [sym_pointer_expression] = STATE(3693), - [sym_unary_expression] = STATE(4850), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(4850), - [sym_cast_expression] = STATE(4850), - [sym_sizeof_expression] = STATE(4850), - [sym_alignof_expression] = STATE(4850), - [sym_offsetof_expression] = STATE(4850), - [sym_generic_expression] = STATE(4850), - [sym_subscript_expression] = STATE(3693), - [sym_call_expression] = STATE(3693), - [sym_gnu_asm_expression] = STATE(4850), - [sym_extension_expression] = STATE(4850), - [sym_field_expression] = STATE(3693), - [sym_compound_literal_expression] = STATE(4850), - [sym_parenthesized_expression] = STATE(3693), - [sym_char_literal] = STATE(4787), - [sym_concatenated_string] = STATE(4787), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(4850), + [sym_expression] = STATE(4897), + [sym__string] = STATE(4847), + [sym_conditional_expression] = STATE(4930), + [sym_assignment_expression] = STATE(4930), + [sym_pointer_expression] = STATE(3795), + [sym_unary_expression] = STATE(4930), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(4930), + [sym_cast_expression] = STATE(4930), + [sym_sizeof_expression] = STATE(4930), + [sym_alignof_expression] = STATE(4930), + [sym_offsetof_expression] = STATE(4930), + [sym_generic_expression] = STATE(4930), + [sym_subscript_expression] = STATE(3795), + [sym_call_expression] = STATE(3795), + [sym_gnu_asm_expression] = STATE(4930), + [sym_extension_expression] = STATE(4930), + [sym_field_expression] = STATE(3795), + [sym_compound_literal_expression] = STATE(4930), + [sym_parenthesized_expression] = STATE(3795), + [sym_char_literal] = STATE(4847), + [sym_concatenated_string] = STATE(4847), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(4930), [sym__empty_declaration] = STATE(35), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_explicit_function_specifier] = STATE(1831), - [sym_dependent_type] = STATE(2523), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_explicit_function_specifier] = STATE(1814), + [sym_dependent_type] = STATE(2558), [sym_module_declaration] = STATE(35), [sym_export_declaration] = STATE(35), [sym_import_declaration] = STATE(35), @@ -40124,15 +40407,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_private_module_fragment_declaration] = STATE(35), [sym_template_declaration] = STATE(35), [sym_template_instantiation] = STATE(35), - [sym_operator_cast] = STATE(6833), - [sym__constructor_specifiers] = STATE(1831), + [sym_operator_cast] = STATE(6950), + [sym__constructor_specifiers] = STATE(1814), [sym_operator_cast_definition] = STATE(35), [sym_operator_cast_declaration] = STATE(35), [sym_constructor_or_destructor_definition] = STATE(35), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(4830), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(4894), [sym_namespace_definition] = STATE(35), [sym_namespace_alias_definition] = STATE(35), [sym_using_declaration] = STATE(35), @@ -40144,29 +40427,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_co_yield_statement] = STATE(35), [sym_throw_statement] = STATE(35), [sym_try_statement] = STATE(35), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(4850), - [sym_new_expression] = STATE(4850), - [sym_delete_expression] = STATE(4850), - [sym_requires_clause] = STATE(4850), - [sym_requires_expression] = STATE(4850), - [sym_lambda_expression] = STATE(4850), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(4850), - [sym_parameter_pack_expansion] = STATE(4850), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5460), - [sym_qualified_identifier] = STATE(3691), - [sym_qualified_type_identifier] = STATE(3109), - [sym_qualified_operator_cast_identifier] = STATE(6833), - [sym_operator_name] = STATE(5998), - [sym_user_defined_literal] = STATE(3693), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(4930), + [sym_new_expression] = STATE(4930), + [sym_delete_expression] = STATE(4930), + [sym_requires_clause] = STATE(4930), + [sym_requires_expression] = STATE(4930), + [sym_lambda_expression] = STATE(4930), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(4930), + [sym_parameter_pack_expansion] = STATE(4930), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5525), + [sym_qualified_identifier] = STATE(3724), + [sym_qualified_type_identifier] = STATE(3059), + [sym_qualified_operator_cast_identifier] = STATE(6950), + [sym_operator_name] = STATE(6145), + [sym_user_defined_literal] = STATE(3795), [aux_sym_translation_unit_repeat1] = STATE(35), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(145), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1831), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(144), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1814), [ts_builtin_sym_end] = ACTIONS(620), [sym_identifier] = ACTIONS(7), [aux_sym_preproc_include_token1] = ACTIONS(9), @@ -40314,30 +40597,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(35), [sym_declaration] = STATE(35), [sym_type_definition] = STATE(35), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(4748), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(4803), [sym_linkage_specification] = STATE(35), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(860), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_call_modifier] = STATE(1925), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6326), - [sym_array_declarator] = STATE(5998), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(859), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_call_modifier] = STATE(1954), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6392), + [sym_array_declarator] = STATE(6145), [sym_compound_statement] = STATE(35), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2748), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(546), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2791), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(561), [sym__top_level_statement] = STATE(35), [sym_labeled_statement] = STATE(35), [sym__top_level_expression_statement] = STATE(35), @@ -40351,38 +40634,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(35), [sym_continue_statement] = STATE(35), [sym_goto_statement] = STATE(35), - [sym_expression] = STATE(4786), - [sym__string] = STATE(4787), - [sym_conditional_expression] = STATE(4850), - [sym_assignment_expression] = STATE(4850), - [sym_pointer_expression] = STATE(3693), - [sym_unary_expression] = STATE(4850), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(4850), - [sym_cast_expression] = STATE(4850), - [sym_sizeof_expression] = STATE(4850), - [sym_alignof_expression] = STATE(4850), - [sym_offsetof_expression] = STATE(4850), - [sym_generic_expression] = STATE(4850), - [sym_subscript_expression] = STATE(3693), - [sym_call_expression] = STATE(3693), - [sym_gnu_asm_expression] = STATE(4850), - [sym_extension_expression] = STATE(4850), - [sym_field_expression] = STATE(3693), - [sym_compound_literal_expression] = STATE(4850), - [sym_parenthesized_expression] = STATE(3693), - [sym_char_literal] = STATE(4787), - [sym_concatenated_string] = STATE(4787), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(4850), + [sym_expression] = STATE(4897), + [sym__string] = STATE(4847), + [sym_conditional_expression] = STATE(4930), + [sym_assignment_expression] = STATE(4930), + [sym_pointer_expression] = STATE(3795), + [sym_unary_expression] = STATE(4930), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(4930), + [sym_cast_expression] = STATE(4930), + [sym_sizeof_expression] = STATE(4930), + [sym_alignof_expression] = STATE(4930), + [sym_offsetof_expression] = STATE(4930), + [sym_generic_expression] = STATE(4930), + [sym_subscript_expression] = STATE(3795), + [sym_call_expression] = STATE(3795), + [sym_gnu_asm_expression] = STATE(4930), + [sym_extension_expression] = STATE(4930), + [sym_field_expression] = STATE(3795), + [sym_compound_literal_expression] = STATE(4930), + [sym_parenthesized_expression] = STATE(3795), + [sym_char_literal] = STATE(4847), + [sym_concatenated_string] = STATE(4847), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(4930), [sym__empty_declaration] = STATE(35), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_explicit_function_specifier] = STATE(1831), - [sym_dependent_type] = STATE(2523), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_explicit_function_specifier] = STATE(1814), + [sym_dependent_type] = STATE(2558), [sym_module_declaration] = STATE(35), [sym_export_declaration] = STATE(35), [sym_import_declaration] = STATE(35), @@ -40390,15 +40673,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_private_module_fragment_declaration] = STATE(35), [sym_template_declaration] = STATE(35), [sym_template_instantiation] = STATE(35), - [sym_operator_cast] = STATE(6833), - [sym__constructor_specifiers] = STATE(1831), + [sym_operator_cast] = STATE(6950), + [sym__constructor_specifiers] = STATE(1814), [sym_operator_cast_definition] = STATE(35), [sym_operator_cast_declaration] = STATE(35), [sym_constructor_or_destructor_definition] = STATE(35), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(4830), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(4894), [sym_namespace_definition] = STATE(35), [sym_namespace_alias_definition] = STATE(35), [sym_using_declaration] = STATE(35), @@ -40410,29 +40693,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_co_yield_statement] = STATE(35), [sym_throw_statement] = STATE(35), [sym_try_statement] = STATE(35), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(4850), - [sym_new_expression] = STATE(4850), - [sym_delete_expression] = STATE(4850), - [sym_requires_clause] = STATE(4850), - [sym_requires_expression] = STATE(4850), - [sym_lambda_expression] = STATE(4850), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(4850), - [sym_parameter_pack_expansion] = STATE(4850), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5460), - [sym_qualified_identifier] = STATE(3691), - [sym_qualified_type_identifier] = STATE(3109), - [sym_qualified_operator_cast_identifier] = STATE(6833), - [sym_operator_name] = STATE(5998), - [sym_user_defined_literal] = STATE(3693), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(4930), + [sym_new_expression] = STATE(4930), + [sym_delete_expression] = STATE(4930), + [sym_requires_clause] = STATE(4930), + [sym_requires_expression] = STATE(4930), + [sym_lambda_expression] = STATE(4930), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(4930), + [sym_parameter_pack_expansion] = STATE(4930), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5525), + [sym_qualified_identifier] = STATE(3724), + [sym_qualified_type_identifier] = STATE(3059), + [sym_qualified_operator_cast_identifier] = STATE(6950), + [sym_operator_name] = STATE(6145), + [sym_user_defined_literal] = STATE(3795), [aux_sym_translation_unit_repeat1] = STATE(35), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(145), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1831), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(144), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1814), [ts_builtin_sym_end] = ACTIONS(622), [sym_identifier] = ACTIONS(624), [aux_sym_preproc_include_token1] = ACTIONS(627), @@ -40570,133 +40853,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(795), }, [36] = { - [sym__block_item] = STATE(83), - [sym_preproc_include] = STATE(83), - [sym_preproc_def] = STATE(83), - [sym_preproc_function_def] = STATE(83), - [sym_preproc_call] = STATE(83), - [sym_preproc_if] = STATE(83), - [sym_preproc_ifdef] = STATE(83), - [sym_function_definition] = STATE(83), - [sym_declaration] = STATE(83), - [sym_type_definition] = STATE(83), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(4599), - [sym_linkage_specification] = STATE(83), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(860), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_call_modifier] = STATE(1924), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6331), - [sym_array_declarator] = STATE(5998), - [sym_compound_statement] = STATE(545), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2758), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(761), - [sym_statement] = STATE(83), - [sym_labeled_statement] = STATE(545), - [sym_expression_statement] = STATE(545), - [sym_if_statement] = STATE(545), - [sym_switch_statement] = STATE(545), - [sym_case_statement] = STATE(545), - [sym_while_statement] = STATE(545), - [sym_do_statement] = STATE(545), - [sym_for_statement] = STATE(545), - [sym_return_statement] = STATE(545), - [sym_break_statement] = STATE(545), - [sym_continue_statement] = STATE(545), - [sym_goto_statement] = STATE(545), - [sym_seh_try_statement] = STATE(545), - [sym_seh_leave_statement] = STATE(545), - [sym_expression] = STATE(4457), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8711), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym__empty_declaration] = STATE(83), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_explicit_function_specifier] = STATE(1800), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(83), - [sym_template_instantiation] = STATE(83), - [sym_operator_cast] = STATE(6799), - [sym__constructor_specifiers] = STATE(1800), - [sym_operator_cast_definition] = STATE(83), - [sym_operator_cast_declaration] = STATE(83), - [sym_constructor_or_destructor_definition] = STATE(83), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(4494), - [sym_namespace_definition] = STATE(83), - [sym_namespace_alias_definition] = STATE(83), - [sym_using_declaration] = STATE(83), - [sym_alias_declaration] = STATE(83), - [sym_static_assert_declaration] = STATE(83), - [sym_concept_definition] = STATE(83), - [sym_for_range_loop] = STATE(545), - [sym_co_return_statement] = STATE(545), - [sym_co_yield_statement] = STATE(545), - [sym_throw_statement] = STATE(545), - [sym_try_statement] = STATE(545), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5460), - [sym_qualified_identifier] = STATE(3281), - [sym_qualified_type_identifier] = STATE(3109), - [sym_qualified_operator_cast_identifier] = STATE(6799), - [sym_operator_name] = STATE(5998), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_preproc_if_repeat1] = STATE(83), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(140), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1800), + [sym__block_item] = STATE(53), + [sym_preproc_include] = STATE(53), + [sym_preproc_def] = STATE(53), + [sym_preproc_function_def] = STATE(53), + [sym_preproc_call] = STATE(53), + [sym_preproc_if] = STATE(53), + [sym_preproc_ifdef] = STATE(53), + [sym_function_definition] = STATE(53), + [sym_declaration] = STATE(53), + [sym_type_definition] = STATE(53), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(4646), + [sym_linkage_specification] = STATE(53), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(859), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_call_modifier] = STATE(1956), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6395), + [sym_array_declarator] = STATE(6145), + [sym_compound_statement] = STATE(560), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2764), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(768), + [sym_statement] = STATE(53), + [sym_labeled_statement] = STATE(560), + [sym_expression_statement] = STATE(560), + [sym_if_statement] = STATE(560), + [sym_switch_statement] = STATE(560), + [sym_case_statement] = STATE(560), + [sym_while_statement] = STATE(560), + [sym_do_statement] = STATE(560), + [sym_for_statement] = STATE(560), + [sym_return_statement] = STATE(560), + [sym_break_statement] = STATE(560), + [sym_continue_statement] = STATE(560), + [sym_goto_statement] = STATE(560), + [sym_seh_try_statement] = STATE(560), + [sym_seh_leave_statement] = STATE(560), + [sym_expression] = STATE(4554), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8083), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym__empty_declaration] = STATE(53), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_explicit_function_specifier] = STATE(1833), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(53), + [sym_template_instantiation] = STATE(53), + [sym_operator_cast] = STATE(6888), + [sym__constructor_specifiers] = STATE(1833), + [sym_operator_cast_definition] = STATE(53), + [sym_operator_cast_declaration] = STATE(53), + [sym_constructor_or_destructor_definition] = STATE(53), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(4529), + [sym_namespace_definition] = STATE(53), + [sym_namespace_alias_definition] = STATE(53), + [sym_using_declaration] = STATE(53), + [sym_alias_declaration] = STATE(53), + [sym_static_assert_declaration] = STATE(53), + [sym_concept_definition] = STATE(53), + [sym_for_range_loop] = STATE(560), + [sym_co_return_statement] = STATE(560), + [sym_co_yield_statement] = STATE(560), + [sym_throw_statement] = STATE(560), + [sym_try_statement] = STATE(560), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5525), + [sym_qualified_identifier] = STATE(3362), + [sym_qualified_type_identifier] = STATE(3059), + [sym_qualified_operator_cast_identifier] = STATE(6888), + [sym_operator_name] = STATE(6145), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_preproc_if_repeat1] = STATE(53), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(158), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1833), [sym_identifier] = ACTIONS(864), [aux_sym_preproc_include_token1] = ACTIONS(169), [aux_sym_preproc_def_token1] = ACTIONS(171), @@ -40833,133 +41116,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [37] = { - [sym__block_item] = STATE(51), - [sym_preproc_include] = STATE(51), - [sym_preproc_def] = STATE(51), - [sym_preproc_function_def] = STATE(51), - [sym_preproc_call] = STATE(51), - [sym_preproc_if] = STATE(51), - [sym_preproc_ifdef] = STATE(51), - [sym_function_definition] = STATE(51), - [sym_declaration] = STATE(51), - [sym_type_definition] = STATE(51), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(4658), - [sym_linkage_specification] = STATE(51), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(860), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_call_modifier] = STATE(1912), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6306), - [sym_array_declarator] = STATE(5998), - [sym_compound_statement] = STATE(529), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2729), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(782), - [sym_statement] = STATE(51), - [sym_labeled_statement] = STATE(529), - [sym_expression_statement] = STATE(529), - [sym_if_statement] = STATE(529), - [sym_switch_statement] = STATE(529), - [sym_case_statement] = STATE(529), - [sym_while_statement] = STATE(529), - [sym_do_statement] = STATE(529), - [sym_for_statement] = STATE(529), - [sym_return_statement] = STATE(529), - [sym_break_statement] = STATE(529), - [sym_continue_statement] = STATE(529), - [sym_goto_statement] = STATE(529), - [sym_seh_try_statement] = STATE(529), - [sym_seh_leave_statement] = STATE(529), - [sym_expression] = STATE(4500), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8311), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym__empty_declaration] = STATE(51), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_explicit_function_specifier] = STATE(1742), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(51), - [sym_template_instantiation] = STATE(51), - [sym_operator_cast] = STATE(6793), - [sym__constructor_specifiers] = STATE(1742), - [sym_operator_cast_definition] = STATE(51), - [sym_operator_cast_declaration] = STATE(51), - [sym_constructor_or_destructor_definition] = STATE(51), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(4494), - [sym_namespace_definition] = STATE(51), - [sym_namespace_alias_definition] = STATE(51), - [sym_using_declaration] = STATE(51), - [sym_alias_declaration] = STATE(51), - [sym_static_assert_declaration] = STATE(51), - [sym_concept_definition] = STATE(51), - [sym_for_range_loop] = STATE(529), - [sym_co_return_statement] = STATE(529), - [sym_co_yield_statement] = STATE(529), - [sym_throw_statement] = STATE(529), - [sym_try_statement] = STATE(529), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5460), - [sym_qualified_identifier] = STATE(3281), - [sym_qualified_type_identifier] = STATE(3109), - [sym_qualified_operator_cast_identifier] = STATE(6793), - [sym_operator_name] = STATE(5998), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_preproc_if_repeat1] = STATE(51), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(151), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1742), + [sym__block_item] = STATE(42), + [sym_preproc_include] = STATE(42), + [sym_preproc_def] = STATE(42), + [sym_preproc_function_def] = STATE(42), + [sym_preproc_call] = STATE(42), + [sym_preproc_if] = STATE(42), + [sym_preproc_ifdef] = STATE(42), + [sym_function_definition] = STATE(42), + [sym_declaration] = STATE(42), + [sym_type_definition] = STATE(42), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(4774), + [sym_linkage_specification] = STATE(42), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(859), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_call_modifier] = STATE(1965), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6390), + [sym_array_declarator] = STATE(6145), + [sym_compound_statement] = STATE(513), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2749), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(792), + [sym_statement] = STATE(42), + [sym_labeled_statement] = STATE(513), + [sym_expression_statement] = STATE(513), + [sym_if_statement] = STATE(513), + [sym_switch_statement] = STATE(513), + [sym_case_statement] = STATE(513), + [sym_while_statement] = STATE(513), + [sym_do_statement] = STATE(513), + [sym_for_statement] = STATE(513), + [sym_return_statement] = STATE(513), + [sym_break_statement] = STATE(513), + [sym_continue_statement] = STATE(513), + [sym_goto_statement] = STATE(513), + [sym_seh_try_statement] = STATE(513), + [sym_seh_leave_statement] = STATE(513), + [sym_expression] = STATE(4531), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8444), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym__empty_declaration] = STATE(42), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_explicit_function_specifier] = STATE(1844), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(42), + [sym_template_instantiation] = STATE(42), + [sym_operator_cast] = STATE(6933), + [sym__constructor_specifiers] = STATE(1844), + [sym_operator_cast_definition] = STATE(42), + [sym_operator_cast_declaration] = STATE(42), + [sym_constructor_or_destructor_definition] = STATE(42), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(4529), + [sym_namespace_definition] = STATE(42), + [sym_namespace_alias_definition] = STATE(42), + [sym_using_declaration] = STATE(42), + [sym_alias_declaration] = STATE(42), + [sym_static_assert_declaration] = STATE(42), + [sym_concept_definition] = STATE(42), + [sym_for_range_loop] = STATE(513), + [sym_co_return_statement] = STATE(513), + [sym_co_yield_statement] = STATE(513), + [sym_throw_statement] = STATE(513), + [sym_try_statement] = STATE(513), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5525), + [sym_qualified_identifier] = STATE(3362), + [sym_qualified_type_identifier] = STATE(3059), + [sym_qualified_operator_cast_identifier] = STATE(6933), + [sym_operator_name] = STATE(6145), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_preproc_if_repeat1] = STATE(42), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(150), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1844), [sym_identifier] = ACTIONS(870), [aux_sym_preproc_include_token1] = ACTIONS(872), [aux_sym_preproc_def_token1] = ACTIONS(874), @@ -41106,123 +41389,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(38), [sym_declaration] = STATE(38), [sym_type_definition] = STATE(38), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(4658), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(4774), [sym_linkage_specification] = STATE(38), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(860), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_call_modifier] = STATE(1912), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6306), - [sym_array_declarator] = STATE(5998), - [sym_compound_statement] = STATE(529), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2729), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(782), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(859), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_call_modifier] = STATE(1965), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6390), + [sym_array_declarator] = STATE(6145), + [sym_compound_statement] = STATE(513), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2749), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(792), [sym_statement] = STATE(38), - [sym_labeled_statement] = STATE(529), - [sym_expression_statement] = STATE(529), - [sym_if_statement] = STATE(529), - [sym_switch_statement] = STATE(529), - [sym_case_statement] = STATE(529), - [sym_while_statement] = STATE(529), - [sym_do_statement] = STATE(529), - [sym_for_statement] = STATE(529), - [sym_return_statement] = STATE(529), - [sym_break_statement] = STATE(529), - [sym_continue_statement] = STATE(529), - [sym_goto_statement] = STATE(529), - [sym_seh_try_statement] = STATE(529), - [sym_seh_leave_statement] = STATE(529), - [sym_expression] = STATE(4500), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8311), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), + [sym_labeled_statement] = STATE(513), + [sym_expression_statement] = STATE(513), + [sym_if_statement] = STATE(513), + [sym_switch_statement] = STATE(513), + [sym_case_statement] = STATE(513), + [sym_while_statement] = STATE(513), + [sym_do_statement] = STATE(513), + [sym_for_statement] = STATE(513), + [sym_return_statement] = STATE(513), + [sym_break_statement] = STATE(513), + [sym_continue_statement] = STATE(513), + [sym_goto_statement] = STATE(513), + [sym_seh_try_statement] = STATE(513), + [sym_seh_leave_statement] = STATE(513), + [sym_expression] = STATE(4531), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8444), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), [sym__empty_declaration] = STATE(38), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_explicit_function_specifier] = STATE(1742), - [sym_dependent_type] = STATE(2523), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_explicit_function_specifier] = STATE(1844), + [sym_dependent_type] = STATE(2558), [sym_template_declaration] = STATE(38), [sym_template_instantiation] = STATE(38), - [sym_operator_cast] = STATE(6793), - [sym__constructor_specifiers] = STATE(1742), + [sym_operator_cast] = STATE(6933), + [sym__constructor_specifiers] = STATE(1844), [sym_operator_cast_definition] = STATE(38), [sym_operator_cast_declaration] = STATE(38), [sym_constructor_or_destructor_definition] = STATE(38), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(4494), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(4529), [sym_namespace_definition] = STATE(38), [sym_namespace_alias_definition] = STATE(38), [sym_using_declaration] = STATE(38), [sym_alias_declaration] = STATE(38), [sym_static_assert_declaration] = STATE(38), [sym_concept_definition] = STATE(38), - [sym_for_range_loop] = STATE(529), - [sym_co_return_statement] = STATE(529), - [sym_co_yield_statement] = STATE(529), - [sym_throw_statement] = STATE(529), - [sym_try_statement] = STATE(529), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5460), - [sym_qualified_identifier] = STATE(3281), - [sym_qualified_type_identifier] = STATE(3109), - [sym_qualified_operator_cast_identifier] = STATE(6793), - [sym_operator_name] = STATE(5998), - [sym_user_defined_literal] = STATE(3242), + [sym_for_range_loop] = STATE(513), + [sym_co_return_statement] = STATE(513), + [sym_co_yield_statement] = STATE(513), + [sym_throw_statement] = STATE(513), + [sym_try_statement] = STATE(513), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5525), + [sym_qualified_identifier] = STATE(3362), + [sym_qualified_type_identifier] = STATE(3059), + [sym_qualified_operator_cast_identifier] = STATE(6933), + [sym_operator_name] = STATE(6145), + [sym_user_defined_literal] = STATE(3323), [aux_sym_preproc_if_repeat1] = STATE(38), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(151), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1742), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(150), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1844), [sym_identifier] = ACTIONS(940), [aux_sym_preproc_include_token1] = ACTIONS(943), [aux_sym_preproc_def_token1] = ACTIONS(946), @@ -41369,123 +41652,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(40), [sym_declaration] = STATE(40), [sym_type_definition] = STATE(40), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(4599), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(4646), [sym_linkage_specification] = STATE(40), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(860), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_call_modifier] = STATE(1924), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6331), - [sym_array_declarator] = STATE(5998), - [sym_compound_statement] = STATE(545), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2758), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(761), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(859), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_call_modifier] = STATE(1956), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6395), + [sym_array_declarator] = STATE(6145), + [sym_compound_statement] = STATE(560), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2764), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(768), [sym_statement] = STATE(40), - [sym_labeled_statement] = STATE(545), - [sym_expression_statement] = STATE(545), - [sym_if_statement] = STATE(545), - [sym_switch_statement] = STATE(545), - [sym_case_statement] = STATE(545), - [sym_while_statement] = STATE(545), - [sym_do_statement] = STATE(545), - [sym_for_statement] = STATE(545), - [sym_return_statement] = STATE(545), - [sym_break_statement] = STATE(545), - [sym_continue_statement] = STATE(545), - [sym_goto_statement] = STATE(545), - [sym_seh_try_statement] = STATE(545), - [sym_seh_leave_statement] = STATE(545), - [sym_expression] = STATE(4457), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8711), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), + [sym_labeled_statement] = STATE(560), + [sym_expression_statement] = STATE(560), + [sym_if_statement] = STATE(560), + [sym_switch_statement] = STATE(560), + [sym_case_statement] = STATE(560), + [sym_while_statement] = STATE(560), + [sym_do_statement] = STATE(560), + [sym_for_statement] = STATE(560), + [sym_return_statement] = STATE(560), + [sym_break_statement] = STATE(560), + [sym_continue_statement] = STATE(560), + [sym_goto_statement] = STATE(560), + [sym_seh_try_statement] = STATE(560), + [sym_seh_leave_statement] = STATE(560), + [sym_expression] = STATE(4554), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8083), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), [sym__empty_declaration] = STATE(40), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_explicit_function_specifier] = STATE(1800), - [sym_dependent_type] = STATE(2523), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_explicit_function_specifier] = STATE(1833), + [sym_dependent_type] = STATE(2558), [sym_template_declaration] = STATE(40), [sym_template_instantiation] = STATE(40), - [sym_operator_cast] = STATE(6799), - [sym__constructor_specifiers] = STATE(1800), + [sym_operator_cast] = STATE(6888), + [sym__constructor_specifiers] = STATE(1833), [sym_operator_cast_definition] = STATE(40), [sym_operator_cast_declaration] = STATE(40), [sym_constructor_or_destructor_definition] = STATE(40), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(4494), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(4529), [sym_namespace_definition] = STATE(40), [sym_namespace_alias_definition] = STATE(40), [sym_using_declaration] = STATE(40), [sym_alias_declaration] = STATE(40), [sym_static_assert_declaration] = STATE(40), [sym_concept_definition] = STATE(40), - [sym_for_range_loop] = STATE(545), - [sym_co_return_statement] = STATE(545), - [sym_co_yield_statement] = STATE(545), - [sym_throw_statement] = STATE(545), - [sym_try_statement] = STATE(545), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5460), - [sym_qualified_identifier] = STATE(3281), - [sym_qualified_type_identifier] = STATE(3109), - [sym_qualified_operator_cast_identifier] = STATE(6799), - [sym_operator_name] = STATE(5998), - [sym_user_defined_literal] = STATE(3242), + [sym_for_range_loop] = STATE(560), + [sym_co_return_statement] = STATE(560), + [sym_co_yield_statement] = STATE(560), + [sym_throw_statement] = STATE(560), + [sym_try_statement] = STATE(560), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5525), + [sym_qualified_identifier] = STATE(3362), + [sym_qualified_type_identifier] = STATE(3059), + [sym_qualified_operator_cast_identifier] = STATE(6888), + [sym_operator_name] = STATE(6145), + [sym_user_defined_literal] = STATE(3323), [aux_sym_preproc_if_repeat1] = STATE(40), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(140), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1800), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(158), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1833), [sym_identifier] = ACTIONS(864), [aux_sym_preproc_include_token1] = ACTIONS(169), [aux_sym_preproc_def_token1] = ACTIONS(171), @@ -41622,133 +41905,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [40] = { - [sym__block_item] = STATE(42), - [sym_preproc_include] = STATE(42), - [sym_preproc_def] = STATE(42), - [sym_preproc_function_def] = STATE(42), - [sym_preproc_call] = STATE(42), - [sym_preproc_if] = STATE(42), - [sym_preproc_ifdef] = STATE(42), - [sym_function_definition] = STATE(42), - [sym_declaration] = STATE(42), - [sym_type_definition] = STATE(42), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(4599), - [sym_linkage_specification] = STATE(42), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(860), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_call_modifier] = STATE(1924), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6331), - [sym_array_declarator] = STATE(5998), - [sym_compound_statement] = STATE(545), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2758), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(761), - [sym_statement] = STATE(42), - [sym_labeled_statement] = STATE(545), - [sym_expression_statement] = STATE(545), - [sym_if_statement] = STATE(545), - [sym_switch_statement] = STATE(545), - [sym_case_statement] = STATE(545), - [sym_while_statement] = STATE(545), - [sym_do_statement] = STATE(545), - [sym_for_statement] = STATE(545), - [sym_return_statement] = STATE(545), - [sym_break_statement] = STATE(545), - [sym_continue_statement] = STATE(545), - [sym_goto_statement] = STATE(545), - [sym_seh_try_statement] = STATE(545), - [sym_seh_leave_statement] = STATE(545), - [sym_expression] = STATE(4457), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8711), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym__empty_declaration] = STATE(42), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_explicit_function_specifier] = STATE(1800), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(42), - [sym_template_instantiation] = STATE(42), - [sym_operator_cast] = STATE(6799), - [sym__constructor_specifiers] = STATE(1800), - [sym_operator_cast_definition] = STATE(42), - [sym_operator_cast_declaration] = STATE(42), - [sym_constructor_or_destructor_definition] = STATE(42), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(4494), - [sym_namespace_definition] = STATE(42), - [sym_namespace_alias_definition] = STATE(42), - [sym_using_declaration] = STATE(42), - [sym_alias_declaration] = STATE(42), - [sym_static_assert_declaration] = STATE(42), - [sym_concept_definition] = STATE(42), - [sym_for_range_loop] = STATE(545), - [sym_co_return_statement] = STATE(545), - [sym_co_yield_statement] = STATE(545), - [sym_throw_statement] = STATE(545), - [sym_try_statement] = STATE(545), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5460), - [sym_qualified_identifier] = STATE(3281), - [sym_qualified_type_identifier] = STATE(3109), - [sym_qualified_operator_cast_identifier] = STATE(6799), - [sym_operator_name] = STATE(5998), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_preproc_if_repeat1] = STATE(42), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(140), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1800), + [sym__block_item] = STATE(53), + [sym_preproc_include] = STATE(53), + [sym_preproc_def] = STATE(53), + [sym_preproc_function_def] = STATE(53), + [sym_preproc_call] = STATE(53), + [sym_preproc_if] = STATE(53), + [sym_preproc_ifdef] = STATE(53), + [sym_function_definition] = STATE(53), + [sym_declaration] = STATE(53), + [sym_type_definition] = STATE(53), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(4646), + [sym_linkage_specification] = STATE(53), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(859), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_call_modifier] = STATE(1956), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6395), + [sym_array_declarator] = STATE(6145), + [sym_compound_statement] = STATE(560), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2764), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(768), + [sym_statement] = STATE(53), + [sym_labeled_statement] = STATE(560), + [sym_expression_statement] = STATE(560), + [sym_if_statement] = STATE(560), + [sym_switch_statement] = STATE(560), + [sym_case_statement] = STATE(560), + [sym_while_statement] = STATE(560), + [sym_do_statement] = STATE(560), + [sym_for_statement] = STATE(560), + [sym_return_statement] = STATE(560), + [sym_break_statement] = STATE(560), + [sym_continue_statement] = STATE(560), + [sym_goto_statement] = STATE(560), + [sym_seh_try_statement] = STATE(560), + [sym_seh_leave_statement] = STATE(560), + [sym_expression] = STATE(4554), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8083), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym__empty_declaration] = STATE(53), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_explicit_function_specifier] = STATE(1833), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(53), + [sym_template_instantiation] = STATE(53), + [sym_operator_cast] = STATE(6888), + [sym__constructor_specifiers] = STATE(1833), + [sym_operator_cast_definition] = STATE(53), + [sym_operator_cast_declaration] = STATE(53), + [sym_constructor_or_destructor_definition] = STATE(53), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(4529), + [sym_namespace_definition] = STATE(53), + [sym_namespace_alias_definition] = STATE(53), + [sym_using_declaration] = STATE(53), + [sym_alias_declaration] = STATE(53), + [sym_static_assert_declaration] = STATE(53), + [sym_concept_definition] = STATE(53), + [sym_for_range_loop] = STATE(560), + [sym_co_return_statement] = STATE(560), + [sym_co_yield_statement] = STATE(560), + [sym_throw_statement] = STATE(560), + [sym_try_statement] = STATE(560), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5525), + [sym_qualified_identifier] = STATE(3362), + [sym_qualified_type_identifier] = STATE(3059), + [sym_qualified_operator_cast_identifier] = STATE(6888), + [sym_operator_name] = STATE(6145), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_preproc_if_repeat1] = STATE(53), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(158), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1833), [sym_identifier] = ACTIONS(864), [aux_sym_preproc_include_token1] = ACTIONS(169), [aux_sym_preproc_def_token1] = ACTIONS(171), @@ -41885,133 +42168,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [41] = { - [sym__block_item] = STATE(43), - [sym_preproc_include] = STATE(43), - [sym_preproc_def] = STATE(43), - [sym_preproc_function_def] = STATE(43), - [sym_preproc_call] = STATE(43), - [sym_preproc_if] = STATE(43), - [sym_preproc_ifdef] = STATE(43), - [sym_function_definition] = STATE(43), - [sym_declaration] = STATE(43), - [sym_type_definition] = STATE(43), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(4599), - [sym_linkage_specification] = STATE(43), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(860), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_call_modifier] = STATE(1924), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6331), - [sym_array_declarator] = STATE(5998), - [sym_compound_statement] = STATE(545), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2758), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(761), - [sym_statement] = STATE(43), - [sym_labeled_statement] = STATE(545), - [sym_expression_statement] = STATE(545), - [sym_if_statement] = STATE(545), - [sym_switch_statement] = STATE(545), - [sym_case_statement] = STATE(545), - [sym_while_statement] = STATE(545), - [sym_do_statement] = STATE(545), - [sym_for_statement] = STATE(545), - [sym_return_statement] = STATE(545), - [sym_break_statement] = STATE(545), - [sym_continue_statement] = STATE(545), - [sym_goto_statement] = STATE(545), - [sym_seh_try_statement] = STATE(545), - [sym_seh_leave_statement] = STATE(545), - [sym_expression] = STATE(4457), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8711), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym__empty_declaration] = STATE(43), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_explicit_function_specifier] = STATE(1800), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(43), - [sym_template_instantiation] = STATE(43), - [sym_operator_cast] = STATE(6799), - [sym__constructor_specifiers] = STATE(1800), - [sym_operator_cast_definition] = STATE(43), - [sym_operator_cast_declaration] = STATE(43), - [sym_constructor_or_destructor_definition] = STATE(43), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(4494), - [sym_namespace_definition] = STATE(43), - [sym_namespace_alias_definition] = STATE(43), - [sym_using_declaration] = STATE(43), - [sym_alias_declaration] = STATE(43), - [sym_static_assert_declaration] = STATE(43), - [sym_concept_definition] = STATE(43), - [sym_for_range_loop] = STATE(545), - [sym_co_return_statement] = STATE(545), - [sym_co_yield_statement] = STATE(545), - [sym_throw_statement] = STATE(545), - [sym_try_statement] = STATE(545), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5460), - [sym_qualified_identifier] = STATE(3281), - [sym_qualified_type_identifier] = STATE(3109), - [sym_qualified_operator_cast_identifier] = STATE(6799), - [sym_operator_name] = STATE(5998), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_preproc_if_repeat1] = STATE(43), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(140), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1800), + [sym__block_item] = STATE(44), + [sym_preproc_include] = STATE(44), + [sym_preproc_def] = STATE(44), + [sym_preproc_function_def] = STATE(44), + [sym_preproc_call] = STATE(44), + [sym_preproc_if] = STATE(44), + [sym_preproc_ifdef] = STATE(44), + [sym_function_definition] = STATE(44), + [sym_declaration] = STATE(44), + [sym_type_definition] = STATE(44), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(4646), + [sym_linkage_specification] = STATE(44), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(859), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_call_modifier] = STATE(1956), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6395), + [sym_array_declarator] = STATE(6145), + [sym_compound_statement] = STATE(560), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2764), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(768), + [sym_statement] = STATE(44), + [sym_labeled_statement] = STATE(560), + [sym_expression_statement] = STATE(560), + [sym_if_statement] = STATE(560), + [sym_switch_statement] = STATE(560), + [sym_case_statement] = STATE(560), + [sym_while_statement] = STATE(560), + [sym_do_statement] = STATE(560), + [sym_for_statement] = STATE(560), + [sym_return_statement] = STATE(560), + [sym_break_statement] = STATE(560), + [sym_continue_statement] = STATE(560), + [sym_goto_statement] = STATE(560), + [sym_seh_try_statement] = STATE(560), + [sym_seh_leave_statement] = STATE(560), + [sym_expression] = STATE(4554), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8083), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym__empty_declaration] = STATE(44), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_explicit_function_specifier] = STATE(1833), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(44), + [sym_template_instantiation] = STATE(44), + [sym_operator_cast] = STATE(6888), + [sym__constructor_specifiers] = STATE(1833), + [sym_operator_cast_definition] = STATE(44), + [sym_operator_cast_declaration] = STATE(44), + [sym_constructor_or_destructor_definition] = STATE(44), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(4529), + [sym_namespace_definition] = STATE(44), + [sym_namespace_alias_definition] = STATE(44), + [sym_using_declaration] = STATE(44), + [sym_alias_declaration] = STATE(44), + [sym_static_assert_declaration] = STATE(44), + [sym_concept_definition] = STATE(44), + [sym_for_range_loop] = STATE(560), + [sym_co_return_statement] = STATE(560), + [sym_co_yield_statement] = STATE(560), + [sym_throw_statement] = STATE(560), + [sym_try_statement] = STATE(560), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5525), + [sym_qualified_identifier] = STATE(3362), + [sym_qualified_type_identifier] = STATE(3059), + [sym_qualified_operator_cast_identifier] = STATE(6888), + [sym_operator_name] = STATE(6145), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_preproc_if_repeat1] = STATE(44), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(158), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1833), [sym_identifier] = ACTIONS(864), [aux_sym_preproc_include_token1] = ACTIONS(169), [aux_sym_preproc_def_token1] = ACTIONS(171), @@ -42148,403 +42431,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [42] = { - [sym__block_item] = STATE(42), - [sym_preproc_include] = STATE(42), - [sym_preproc_def] = STATE(42), - [sym_preproc_function_def] = STATE(42), - [sym_preproc_call] = STATE(42), - [sym_preproc_if] = STATE(42), - [sym_preproc_ifdef] = STATE(42), - [sym_function_definition] = STATE(42), - [sym_declaration] = STATE(42), - [sym_type_definition] = STATE(42), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(4599), - [sym_linkage_specification] = STATE(42), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(860), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_call_modifier] = STATE(1924), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6331), - [sym_array_declarator] = STATE(5998), - [sym_compound_statement] = STATE(545), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2758), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(761), - [sym_statement] = STATE(42), - [sym_labeled_statement] = STATE(545), - [sym_expression_statement] = STATE(545), - [sym_if_statement] = STATE(545), - [sym_switch_statement] = STATE(545), - [sym_case_statement] = STATE(545), - [sym_while_statement] = STATE(545), - [sym_do_statement] = STATE(545), - [sym_for_statement] = STATE(545), - [sym_return_statement] = STATE(545), - [sym_break_statement] = STATE(545), - [sym_continue_statement] = STATE(545), - [sym_goto_statement] = STATE(545), - [sym_seh_try_statement] = STATE(545), - [sym_seh_leave_statement] = STATE(545), - [sym_expression] = STATE(4457), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8711), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym__empty_declaration] = STATE(42), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_explicit_function_specifier] = STATE(1800), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(42), - [sym_template_instantiation] = STATE(42), - [sym_operator_cast] = STATE(6799), - [sym__constructor_specifiers] = STATE(1800), - [sym_operator_cast_definition] = STATE(42), - [sym_operator_cast_declaration] = STATE(42), - [sym_constructor_or_destructor_definition] = STATE(42), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(4494), - [sym_namespace_definition] = STATE(42), - [sym_namespace_alias_definition] = STATE(42), - [sym_using_declaration] = STATE(42), - [sym_alias_declaration] = STATE(42), - [sym_static_assert_declaration] = STATE(42), - [sym_concept_definition] = STATE(42), - [sym_for_range_loop] = STATE(545), - [sym_co_return_statement] = STATE(545), - [sym_co_yield_statement] = STATE(545), - [sym_throw_statement] = STATE(545), - [sym_try_statement] = STATE(545), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5460), - [sym_qualified_identifier] = STATE(3281), - [sym_qualified_type_identifier] = STATE(3109), - [sym_qualified_operator_cast_identifier] = STATE(6799), - [sym_operator_name] = STATE(5998), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_preproc_if_repeat1] = STATE(42), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(140), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1800), - [sym_identifier] = ACTIONS(1048), - [aux_sym_preproc_include_token1] = ACTIONS(1051), - [aux_sym_preproc_def_token1] = ACTIONS(1054), - [aux_sym_preproc_if_token1] = ACTIONS(1057), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1060), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1060), - [sym_preproc_directive] = ACTIONS(1063), - [anon_sym_LPAREN2] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(404), - [anon_sym_TILDE] = ACTIONS(407), - [anon_sym_DASH] = ACTIONS(410), - [anon_sym_PLUS] = ACTIONS(410), - [anon_sym_STAR] = ACTIONS(413), - [anon_sym_AMP_AMP] = ACTIONS(416), - [anon_sym_AMP] = ACTIONS(419), - [anon_sym_SEMI] = ACTIONS(1066), - [anon_sym___extension__] = ACTIONS(1069), - [anon_sym_typedef] = ACTIONS(1072), - [anon_sym_virtual] = ACTIONS(431), - [anon_sym_extern] = ACTIONS(1075), - [anon_sym___attribute__] = ACTIONS(437), - [anon_sym___attribute] = ACTIONS(437), - [anon_sym_using] = ACTIONS(1078), - [anon_sym_COLON_COLON] = ACTIONS(443), - [anon_sym_LBRACK_LBRACK] = ACTIONS(446), - [anon_sym___declspec] = ACTIONS(449), - [anon_sym___based] = ACTIONS(452), - [anon_sym___cdecl] = ACTIONS(455), - [anon_sym___clrcall] = ACTIONS(455), - [anon_sym___stdcall] = ACTIONS(455), - [anon_sym___fastcall] = ACTIONS(455), - [anon_sym___thiscall] = ACTIONS(455), - [anon_sym___vectorcall] = ACTIONS(455), - [anon_sym_LBRACE] = ACTIONS(1081), - [anon_sym_RBRACE] = ACTIONS(1084), - [anon_sym_signed] = ACTIONS(461), - [anon_sym_unsigned] = ACTIONS(461), - [anon_sym_long] = ACTIONS(461), - [anon_sym_short] = ACTIONS(461), - [anon_sym_LBRACK] = ACTIONS(464), - [anon_sym_static] = ACTIONS(467), - [anon_sym_register] = ACTIONS(467), - [anon_sym_inline] = ACTIONS(1086), - [anon_sym___inline] = ACTIONS(467), - [anon_sym___inline__] = ACTIONS(467), - [anon_sym___forceinline] = ACTIONS(467), - [anon_sym_thread_local] = ACTIONS(467), - [anon_sym___thread] = ACTIONS(467), - [anon_sym_const] = ACTIONS(473), - [anon_sym_constexpr] = ACTIONS(473), - [anon_sym_volatile] = ACTIONS(473), - [anon_sym_restrict] = ACTIONS(473), - [anon_sym___restrict__] = ACTIONS(473), - [anon_sym__Atomic] = ACTIONS(473), - [anon_sym__Noreturn] = ACTIONS(473), - [anon_sym_noreturn] = ACTIONS(473), - [anon_sym__Nonnull] = ACTIONS(473), - [anon_sym_mutable] = ACTIONS(473), - [anon_sym_constinit] = ACTIONS(473), - [anon_sym_consteval] = ACTIONS(473), - [anon_sym_alignas] = ACTIONS(476), - [anon_sym__Alignas] = ACTIONS(476), - [sym_primitive_type] = ACTIONS(479), - [anon_sym_enum] = ACTIONS(482), - [anon_sym_class] = ACTIONS(485), - [anon_sym_struct] = ACTIONS(488), - [anon_sym_union] = ACTIONS(491), - [anon_sym_if] = ACTIONS(1089), - [anon_sym_switch] = ACTIONS(1092), - [anon_sym_case] = ACTIONS(1095), - [anon_sym_default] = ACTIONS(1098), - [anon_sym_while] = ACTIONS(1101), - [anon_sym_do] = ACTIONS(1104), - [anon_sym_for] = ACTIONS(1107), - [anon_sym_return] = ACTIONS(1110), - [anon_sym_break] = ACTIONS(1113), - [anon_sym_continue] = ACTIONS(1116), - [anon_sym_goto] = ACTIONS(1119), - [anon_sym___try] = ACTIONS(1122), - [anon_sym___leave] = ACTIONS(1125), - [anon_sym_not] = ACTIONS(410), - [anon_sym_compl] = ACTIONS(410), - [anon_sym_DASH_DASH] = ACTIONS(533), - [anon_sym_PLUS_PLUS] = ACTIONS(533), - [anon_sym_sizeof] = ACTIONS(536), - [anon_sym___alignof__] = ACTIONS(539), - [anon_sym___alignof] = ACTIONS(539), - [anon_sym__alignof] = ACTIONS(539), - [anon_sym_alignof] = ACTIONS(539), - [anon_sym__Alignof] = ACTIONS(539), - [anon_sym_offsetof] = ACTIONS(542), - [anon_sym__Generic] = ACTIONS(545), - [anon_sym_asm] = ACTIONS(548), - [anon_sym___asm__] = ACTIONS(548), - [anon_sym___asm] = ACTIONS(548), - [sym_number_literal] = ACTIONS(551), - [anon_sym_L_SQUOTE] = ACTIONS(554), - [anon_sym_u_SQUOTE] = ACTIONS(554), - [anon_sym_U_SQUOTE] = ACTIONS(554), - [anon_sym_u8_SQUOTE] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(554), - [anon_sym_L_DQUOTE] = ACTIONS(557), - [anon_sym_u_DQUOTE] = ACTIONS(557), - [anon_sym_U_DQUOTE] = ACTIONS(557), - [anon_sym_u8_DQUOTE] = ACTIONS(557), - [anon_sym_DQUOTE] = ACTIONS(557), - [sym_true] = ACTIONS(560), - [sym_false] = ACTIONS(560), - [anon_sym_NULL] = ACTIONS(563), - [anon_sym_nullptr] = ACTIONS(563), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(566), - [anon_sym_decltype] = ACTIONS(569), - [anon_sym_explicit] = ACTIONS(572), - [anon_sym_typename] = ACTIONS(575), - [anon_sym_template] = ACTIONS(1128), - [anon_sym_operator] = ACTIONS(581), - [anon_sym_try] = ACTIONS(1131), - [anon_sym_delete] = ACTIONS(587), - [anon_sym_throw] = ACTIONS(1134), - [anon_sym_namespace] = ACTIONS(1137), - [anon_sym_static_assert] = ACTIONS(1140), - [anon_sym_concept] = ACTIONS(1143), - [anon_sym_co_return] = ACTIONS(1146), - [anon_sym_co_yield] = ACTIONS(1149), - [anon_sym_R_DQUOTE] = ACTIONS(608), - [anon_sym_LR_DQUOTE] = ACTIONS(608), - [anon_sym_uR_DQUOTE] = ACTIONS(608), - [anon_sym_UR_DQUOTE] = ACTIONS(608), - [anon_sym_u8R_DQUOTE] = ACTIONS(608), - [anon_sym_co_await] = ACTIONS(611), - [anon_sym_new] = ACTIONS(614), - [anon_sym_requires] = ACTIONS(617), - [sym_this] = ACTIONS(560), - }, - [43] = { - [sym__block_item] = STATE(42), - [sym_preproc_include] = STATE(42), - [sym_preproc_def] = STATE(42), - [sym_preproc_function_def] = STATE(42), - [sym_preproc_call] = STATE(42), - [sym_preproc_if] = STATE(42), - [sym_preproc_ifdef] = STATE(42), - [sym_function_definition] = STATE(42), - [sym_declaration] = STATE(42), - [sym_type_definition] = STATE(42), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(4599), - [sym_linkage_specification] = STATE(42), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(860), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_call_modifier] = STATE(1924), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6331), - [sym_array_declarator] = STATE(5998), - [sym_compound_statement] = STATE(545), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2758), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(761), - [sym_statement] = STATE(42), - [sym_labeled_statement] = STATE(545), - [sym_expression_statement] = STATE(545), - [sym_if_statement] = STATE(545), - [sym_switch_statement] = STATE(545), - [sym_case_statement] = STATE(545), - [sym_while_statement] = STATE(545), - [sym_do_statement] = STATE(545), - [sym_for_statement] = STATE(545), - [sym_return_statement] = STATE(545), - [sym_break_statement] = STATE(545), - [sym_continue_statement] = STATE(545), - [sym_goto_statement] = STATE(545), - [sym_seh_try_statement] = STATE(545), - [sym_seh_leave_statement] = STATE(545), - [sym_expression] = STATE(4457), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8711), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym__empty_declaration] = STATE(42), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_explicit_function_specifier] = STATE(1800), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(42), - [sym_template_instantiation] = STATE(42), - [sym_operator_cast] = STATE(6799), - [sym__constructor_specifiers] = STATE(1800), - [sym_operator_cast_definition] = STATE(42), - [sym_operator_cast_declaration] = STATE(42), - [sym_constructor_or_destructor_definition] = STATE(42), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(4494), - [sym_namespace_definition] = STATE(42), - [sym_namespace_alias_definition] = STATE(42), - [sym_using_declaration] = STATE(42), - [sym_alias_declaration] = STATE(42), - [sym_static_assert_declaration] = STATE(42), - [sym_concept_definition] = STATE(42), - [sym_for_range_loop] = STATE(545), - [sym_co_return_statement] = STATE(545), - [sym_co_yield_statement] = STATE(545), - [sym_throw_statement] = STATE(545), - [sym_try_statement] = STATE(545), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5460), - [sym_qualified_identifier] = STATE(3281), - [sym_qualified_type_identifier] = STATE(3109), - [sym_qualified_operator_cast_identifier] = STATE(6799), - [sym_operator_name] = STATE(5998), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_preproc_if_repeat1] = STATE(42), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(140), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1800), - [sym_identifier] = ACTIONS(864), - [aux_sym_preproc_include_token1] = ACTIONS(169), - [aux_sym_preproc_def_token1] = ACTIONS(171), - [aux_sym_preproc_if_token1] = ACTIONS(175), - [aux_sym_preproc_ifdef_token1] = ACTIONS(177), - [aux_sym_preproc_ifdef_token2] = ACTIONS(177), - [sym_preproc_directive] = ACTIONS(179), + [sym__block_item] = STATE(38), + [sym_preproc_include] = STATE(38), + [sym_preproc_def] = STATE(38), + [sym_preproc_function_def] = STATE(38), + [sym_preproc_call] = STATE(38), + [sym_preproc_if] = STATE(38), + [sym_preproc_ifdef] = STATE(38), + [sym_function_definition] = STATE(38), + [sym_declaration] = STATE(38), + [sym_type_definition] = STATE(38), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(4774), + [sym_linkage_specification] = STATE(38), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(859), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_call_modifier] = STATE(1965), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6390), + [sym_array_declarator] = STATE(6145), + [sym_compound_statement] = STATE(513), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2749), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(792), + [sym_statement] = STATE(38), + [sym_labeled_statement] = STATE(513), + [sym_expression_statement] = STATE(513), + [sym_if_statement] = STATE(513), + [sym_switch_statement] = STATE(513), + [sym_case_statement] = STATE(513), + [sym_while_statement] = STATE(513), + [sym_do_statement] = STATE(513), + [sym_for_statement] = STATE(513), + [sym_return_statement] = STATE(513), + [sym_break_statement] = STATE(513), + [sym_continue_statement] = STATE(513), + [sym_goto_statement] = STATE(513), + [sym_seh_try_statement] = STATE(513), + [sym_seh_leave_statement] = STATE(513), + [sym_expression] = STATE(4531), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8444), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym__empty_declaration] = STATE(38), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_explicit_function_specifier] = STATE(1844), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(38), + [sym_template_instantiation] = STATE(38), + [sym_operator_cast] = STATE(6933), + [sym__constructor_specifiers] = STATE(1844), + [sym_operator_cast_definition] = STATE(38), + [sym_operator_cast_declaration] = STATE(38), + [sym_constructor_or_destructor_definition] = STATE(38), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(4529), + [sym_namespace_definition] = STATE(38), + [sym_namespace_alias_definition] = STATE(38), + [sym_using_declaration] = STATE(38), + [sym_alias_declaration] = STATE(38), + [sym_static_assert_declaration] = STATE(38), + [sym_concept_definition] = STATE(38), + [sym_for_range_loop] = STATE(513), + [sym_co_return_statement] = STATE(513), + [sym_co_yield_statement] = STATE(513), + [sym_throw_statement] = STATE(513), + [sym_try_statement] = STATE(513), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5525), + [sym_qualified_identifier] = STATE(3362), + [sym_qualified_type_identifier] = STATE(3059), + [sym_qualified_operator_cast_identifier] = STATE(6933), + [sym_operator_name] = STATE(6145), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_preproc_if_repeat1] = STATE(38), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(150), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1844), + [sym_identifier] = ACTIONS(870), + [aux_sym_preproc_include_token1] = ACTIONS(872), + [aux_sym_preproc_def_token1] = ACTIONS(874), + [aux_sym_preproc_if_token1] = ACTIONS(876), + [aux_sym_preproc_if_token2] = ACTIONS(1048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(880), + [aux_sym_preproc_ifdef_token2] = ACTIONS(880), + [sym_preproc_directive] = ACTIONS(882), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -42553,14 +42574,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(183), - [anon_sym_typedef] = ACTIONS(185), + [anon_sym_SEMI] = ACTIONS(884), + [anon_sym___extension__] = ACTIONS(886), + [anon_sym_typedef] = ACTIONS(888), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(187), + [anon_sym_extern] = ACTIONS(890), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(189), + [anon_sym_using] = ACTIONS(892), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -42571,8 +42592,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(1152), + [anon_sym_LBRACE] = ACTIONS(894), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -42580,7 +42600,270 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(197), + [anon_sym_inline] = ACTIONS(896), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(69), + [anon_sym__Alignas] = ACTIONS(69), + [sym_primitive_type] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(73), + [anon_sym_class] = ACTIONS(75), + [anon_sym_struct] = ACTIONS(77), + [anon_sym_union] = ACTIONS(79), + [anon_sym_if] = ACTIONS(898), + [anon_sym_switch] = ACTIONS(900), + [anon_sym_case] = ACTIONS(902), + [anon_sym_default] = ACTIONS(904), + [anon_sym_while] = ACTIONS(906), + [anon_sym_do] = ACTIONS(908), + [anon_sym_for] = ACTIONS(910), + [anon_sym_return] = ACTIONS(912), + [anon_sym_break] = ACTIONS(914), + [anon_sym_continue] = ACTIONS(916), + [anon_sym_goto] = ACTIONS(918), + [anon_sym___try] = ACTIONS(920), + [anon_sym___leave] = ACTIONS(922), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [anon_sym___alignof__] = ACTIONS(107), + [anon_sym___alignof] = ACTIONS(107), + [anon_sym__alignof] = ACTIONS(107), + [anon_sym_alignof] = ACTIONS(107), + [anon_sym__Alignof] = ACTIONS(107), + [anon_sym_offsetof] = ACTIONS(109), + [anon_sym__Generic] = ACTIONS(111), + [anon_sym_asm] = ACTIONS(113), + [anon_sym___asm__] = ACTIONS(113), + [anon_sym___asm] = ACTIONS(113), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(117), + [anon_sym_u_SQUOTE] = ACTIONS(117), + [anon_sym_U_SQUOTE] = ACTIONS(117), + [anon_sym_u8_SQUOTE] = ACTIONS(117), + [anon_sym_SQUOTE] = ACTIONS(117), + [anon_sym_L_DQUOTE] = ACTIONS(119), + [anon_sym_u_DQUOTE] = ACTIONS(119), + [anon_sym_U_DQUOTE] = ACTIONS(119), + [anon_sym_u8_DQUOTE] = ACTIONS(119), + [anon_sym_DQUOTE] = ACTIONS(119), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(123), + [anon_sym_nullptr] = ACTIONS(123), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(125), + [anon_sym_decltype] = ACTIONS(127), + [anon_sym_explicit] = ACTIONS(129), + [anon_sym_typename] = ACTIONS(131), + [anon_sym_template] = ACTIONS(924), + [anon_sym_operator] = ACTIONS(141), + [anon_sym_try] = ACTIONS(926), + [anon_sym_delete] = ACTIONS(145), + [anon_sym_throw] = ACTIONS(928), + [anon_sym_namespace] = ACTIONS(930), + [anon_sym_static_assert] = ACTIONS(932), + [anon_sym_concept] = ACTIONS(934), + [anon_sym_co_return] = ACTIONS(936), + [anon_sym_co_yield] = ACTIONS(938), + [anon_sym_R_DQUOTE] = ACTIONS(159), + [anon_sym_LR_DQUOTE] = ACTIONS(159), + [anon_sym_uR_DQUOTE] = ACTIONS(159), + [anon_sym_UR_DQUOTE] = ACTIONS(159), + [anon_sym_u8R_DQUOTE] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), + }, + [43] = { + [sym__block_item] = STATE(53), + [sym_preproc_include] = STATE(53), + [sym_preproc_def] = STATE(53), + [sym_preproc_function_def] = STATE(53), + [sym_preproc_call] = STATE(53), + [sym_preproc_if] = STATE(53), + [sym_preproc_ifdef] = STATE(53), + [sym_function_definition] = STATE(53), + [sym_declaration] = STATE(53), + [sym_type_definition] = STATE(53), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(4646), + [sym_linkage_specification] = STATE(53), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(859), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_call_modifier] = STATE(1956), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6395), + [sym_array_declarator] = STATE(6145), + [sym_compound_statement] = STATE(560), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2764), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(768), + [sym_statement] = STATE(53), + [sym_labeled_statement] = STATE(560), + [sym_expression_statement] = STATE(560), + [sym_if_statement] = STATE(560), + [sym_switch_statement] = STATE(560), + [sym_case_statement] = STATE(560), + [sym_while_statement] = STATE(560), + [sym_do_statement] = STATE(560), + [sym_for_statement] = STATE(560), + [sym_return_statement] = STATE(560), + [sym_break_statement] = STATE(560), + [sym_continue_statement] = STATE(560), + [sym_goto_statement] = STATE(560), + [sym_seh_try_statement] = STATE(560), + [sym_seh_leave_statement] = STATE(560), + [sym_expression] = STATE(4554), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8083), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym__empty_declaration] = STATE(53), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_explicit_function_specifier] = STATE(1833), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(53), + [sym_template_instantiation] = STATE(53), + [sym_operator_cast] = STATE(6888), + [sym__constructor_specifiers] = STATE(1833), + [sym_operator_cast_definition] = STATE(53), + [sym_operator_cast_declaration] = STATE(53), + [sym_constructor_or_destructor_definition] = STATE(53), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(4529), + [sym_namespace_definition] = STATE(53), + [sym_namespace_alias_definition] = STATE(53), + [sym_using_declaration] = STATE(53), + [sym_alias_declaration] = STATE(53), + [sym_static_assert_declaration] = STATE(53), + [sym_concept_definition] = STATE(53), + [sym_for_range_loop] = STATE(560), + [sym_co_return_statement] = STATE(560), + [sym_co_yield_statement] = STATE(560), + [sym_throw_statement] = STATE(560), + [sym_try_statement] = STATE(560), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5525), + [sym_qualified_identifier] = STATE(3362), + [sym_qualified_type_identifier] = STATE(3059), + [sym_qualified_operator_cast_identifier] = STATE(6888), + [sym_operator_name] = STATE(6145), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_preproc_if_repeat1] = STATE(53), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(158), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1833), + [sym_identifier] = ACTIONS(864), + [aux_sym_preproc_include_token1] = ACTIONS(169), + [aux_sym_preproc_def_token1] = ACTIONS(171), + [aux_sym_preproc_if_token1] = ACTIONS(175), + [aux_sym_preproc_ifdef_token1] = ACTIONS(177), + [aux_sym_preproc_ifdef_token2] = ACTIONS(177), + [sym_preproc_directive] = ACTIONS(179), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(181), + [anon_sym___extension__] = ACTIONS(183), + [anon_sym_typedef] = ACTIONS(185), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(187), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(189), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK_LBRACK] = ACTIONS(49), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_LBRACE] = ACTIONS(866), + [anon_sym_RBRACE] = ACTIONS(1050), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(197), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -42674,133 +42957,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [44] = { - [sym__block_item] = STATE(45), - [sym_preproc_include] = STATE(45), - [sym_preproc_def] = STATE(45), - [sym_preproc_function_def] = STATE(45), - [sym_preproc_call] = STATE(45), - [sym_preproc_if] = STATE(45), - [sym_preproc_ifdef] = STATE(45), - [sym_function_definition] = STATE(45), - [sym_declaration] = STATE(45), - [sym_type_definition] = STATE(45), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(4599), - [sym_linkage_specification] = STATE(45), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(860), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_call_modifier] = STATE(1924), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6331), - [sym_array_declarator] = STATE(5998), - [sym_compound_statement] = STATE(545), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2758), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(761), - [sym_statement] = STATE(45), - [sym_labeled_statement] = STATE(545), - [sym_expression_statement] = STATE(545), - [sym_if_statement] = STATE(545), - [sym_switch_statement] = STATE(545), - [sym_case_statement] = STATE(545), - [sym_while_statement] = STATE(545), - [sym_do_statement] = STATE(545), - [sym_for_statement] = STATE(545), - [sym_return_statement] = STATE(545), - [sym_break_statement] = STATE(545), - [sym_continue_statement] = STATE(545), - [sym_goto_statement] = STATE(545), - [sym_seh_try_statement] = STATE(545), - [sym_seh_leave_statement] = STATE(545), - [sym_expression] = STATE(4457), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8711), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym__empty_declaration] = STATE(45), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_explicit_function_specifier] = STATE(1800), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(45), - [sym_template_instantiation] = STATE(45), - [sym_operator_cast] = STATE(6799), - [sym__constructor_specifiers] = STATE(1800), - [sym_operator_cast_definition] = STATE(45), - [sym_operator_cast_declaration] = STATE(45), - [sym_constructor_or_destructor_definition] = STATE(45), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(4494), - [sym_namespace_definition] = STATE(45), - [sym_namespace_alias_definition] = STATE(45), - [sym_using_declaration] = STATE(45), - [sym_alias_declaration] = STATE(45), - [sym_static_assert_declaration] = STATE(45), - [sym_concept_definition] = STATE(45), - [sym_for_range_loop] = STATE(545), - [sym_co_return_statement] = STATE(545), - [sym_co_yield_statement] = STATE(545), - [sym_throw_statement] = STATE(545), - [sym_try_statement] = STATE(545), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5460), - [sym_qualified_identifier] = STATE(3281), - [sym_qualified_type_identifier] = STATE(3109), - [sym_qualified_operator_cast_identifier] = STATE(6799), - [sym_operator_name] = STATE(5998), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_preproc_if_repeat1] = STATE(45), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(140), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1800), + [sym__block_item] = STATE(53), + [sym_preproc_include] = STATE(53), + [sym_preproc_def] = STATE(53), + [sym_preproc_function_def] = STATE(53), + [sym_preproc_call] = STATE(53), + [sym_preproc_if] = STATE(53), + [sym_preproc_ifdef] = STATE(53), + [sym_function_definition] = STATE(53), + [sym_declaration] = STATE(53), + [sym_type_definition] = STATE(53), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(4646), + [sym_linkage_specification] = STATE(53), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(859), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_call_modifier] = STATE(1956), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6395), + [sym_array_declarator] = STATE(6145), + [sym_compound_statement] = STATE(560), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2764), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(768), + [sym_statement] = STATE(53), + [sym_labeled_statement] = STATE(560), + [sym_expression_statement] = STATE(560), + [sym_if_statement] = STATE(560), + [sym_switch_statement] = STATE(560), + [sym_case_statement] = STATE(560), + [sym_while_statement] = STATE(560), + [sym_do_statement] = STATE(560), + [sym_for_statement] = STATE(560), + [sym_return_statement] = STATE(560), + [sym_break_statement] = STATE(560), + [sym_continue_statement] = STATE(560), + [sym_goto_statement] = STATE(560), + [sym_seh_try_statement] = STATE(560), + [sym_seh_leave_statement] = STATE(560), + [sym_expression] = STATE(4554), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8083), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym__empty_declaration] = STATE(53), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_explicit_function_specifier] = STATE(1833), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(53), + [sym_template_instantiation] = STATE(53), + [sym_operator_cast] = STATE(6888), + [sym__constructor_specifiers] = STATE(1833), + [sym_operator_cast_definition] = STATE(53), + [sym_operator_cast_declaration] = STATE(53), + [sym_constructor_or_destructor_definition] = STATE(53), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(4529), + [sym_namespace_definition] = STATE(53), + [sym_namespace_alias_definition] = STATE(53), + [sym_using_declaration] = STATE(53), + [sym_alias_declaration] = STATE(53), + [sym_static_assert_declaration] = STATE(53), + [sym_concept_definition] = STATE(53), + [sym_for_range_loop] = STATE(560), + [sym_co_return_statement] = STATE(560), + [sym_co_yield_statement] = STATE(560), + [sym_throw_statement] = STATE(560), + [sym_try_statement] = STATE(560), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5525), + [sym_qualified_identifier] = STATE(3362), + [sym_qualified_type_identifier] = STATE(3059), + [sym_qualified_operator_cast_identifier] = STATE(6888), + [sym_operator_name] = STATE(6145), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_preproc_if_repeat1] = STATE(53), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(158), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1833), [sym_identifier] = ACTIONS(864), [aux_sym_preproc_include_token1] = ACTIONS(169), [aux_sym_preproc_def_token1] = ACTIONS(171), @@ -42835,7 +43118,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), [anon_sym_LBRACE] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(1154), + [anon_sym_RBRACE] = ACTIONS(1052), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -42937,133 +43220,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [45] = { - [sym__block_item] = STATE(42), - [sym_preproc_include] = STATE(42), - [sym_preproc_def] = STATE(42), - [sym_preproc_function_def] = STATE(42), - [sym_preproc_call] = STATE(42), - [sym_preproc_if] = STATE(42), - [sym_preproc_ifdef] = STATE(42), - [sym_function_definition] = STATE(42), - [sym_declaration] = STATE(42), - [sym_type_definition] = STATE(42), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(4599), - [sym_linkage_specification] = STATE(42), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(860), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_call_modifier] = STATE(1924), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6331), - [sym_array_declarator] = STATE(5998), - [sym_compound_statement] = STATE(545), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2758), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(761), - [sym_statement] = STATE(42), - [sym_labeled_statement] = STATE(545), - [sym_expression_statement] = STATE(545), - [sym_if_statement] = STATE(545), - [sym_switch_statement] = STATE(545), - [sym_case_statement] = STATE(545), - [sym_while_statement] = STATE(545), - [sym_do_statement] = STATE(545), - [sym_for_statement] = STATE(545), - [sym_return_statement] = STATE(545), - [sym_break_statement] = STATE(545), - [sym_continue_statement] = STATE(545), - [sym_goto_statement] = STATE(545), - [sym_seh_try_statement] = STATE(545), - [sym_seh_leave_statement] = STATE(545), - [sym_expression] = STATE(4457), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8711), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym__empty_declaration] = STATE(42), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_explicit_function_specifier] = STATE(1800), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(42), - [sym_template_instantiation] = STATE(42), - [sym_operator_cast] = STATE(6799), - [sym__constructor_specifiers] = STATE(1800), - [sym_operator_cast_definition] = STATE(42), - [sym_operator_cast_declaration] = STATE(42), - [sym_constructor_or_destructor_definition] = STATE(42), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(4494), - [sym_namespace_definition] = STATE(42), - [sym_namespace_alias_definition] = STATE(42), - [sym_using_declaration] = STATE(42), - [sym_alias_declaration] = STATE(42), - [sym_static_assert_declaration] = STATE(42), - [sym_concept_definition] = STATE(42), - [sym_for_range_loop] = STATE(545), - [sym_co_return_statement] = STATE(545), - [sym_co_yield_statement] = STATE(545), - [sym_throw_statement] = STATE(545), - [sym_try_statement] = STATE(545), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5460), - [sym_qualified_identifier] = STATE(3281), - [sym_qualified_type_identifier] = STATE(3109), - [sym_qualified_operator_cast_identifier] = STATE(6799), - [sym_operator_name] = STATE(5998), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_preproc_if_repeat1] = STATE(42), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(140), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1800), + [sym__block_item] = STATE(46), + [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_declaration] = STATE(46), + [sym_type_definition] = STATE(46), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(4646), + [sym_linkage_specification] = STATE(46), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(859), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_call_modifier] = STATE(1956), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6395), + [sym_array_declarator] = STATE(6145), + [sym_compound_statement] = STATE(560), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2764), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(768), + [sym_statement] = STATE(46), + [sym_labeled_statement] = STATE(560), + [sym_expression_statement] = STATE(560), + [sym_if_statement] = STATE(560), + [sym_switch_statement] = STATE(560), + [sym_case_statement] = STATE(560), + [sym_while_statement] = STATE(560), + [sym_do_statement] = STATE(560), + [sym_for_statement] = STATE(560), + [sym_return_statement] = STATE(560), + [sym_break_statement] = STATE(560), + [sym_continue_statement] = STATE(560), + [sym_goto_statement] = STATE(560), + [sym_seh_try_statement] = STATE(560), + [sym_seh_leave_statement] = STATE(560), + [sym_expression] = STATE(4554), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8083), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym__empty_declaration] = STATE(46), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_explicit_function_specifier] = STATE(1833), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(46), + [sym_template_instantiation] = STATE(46), + [sym_operator_cast] = STATE(6888), + [sym__constructor_specifiers] = STATE(1833), + [sym_operator_cast_definition] = STATE(46), + [sym_operator_cast_declaration] = STATE(46), + [sym_constructor_or_destructor_definition] = STATE(46), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(4529), + [sym_namespace_definition] = STATE(46), + [sym_namespace_alias_definition] = STATE(46), + [sym_using_declaration] = STATE(46), + [sym_alias_declaration] = STATE(46), + [sym_static_assert_declaration] = STATE(46), + [sym_concept_definition] = STATE(46), + [sym_for_range_loop] = STATE(560), + [sym_co_return_statement] = STATE(560), + [sym_co_yield_statement] = STATE(560), + [sym_throw_statement] = STATE(560), + [sym_try_statement] = STATE(560), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5525), + [sym_qualified_identifier] = STATE(3362), + [sym_qualified_type_identifier] = STATE(3059), + [sym_qualified_operator_cast_identifier] = STATE(6888), + [sym_operator_name] = STATE(6145), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_preproc_if_repeat1] = STATE(46), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(158), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1833), [sym_identifier] = ACTIONS(864), [aux_sym_preproc_include_token1] = ACTIONS(169), [aux_sym_preproc_def_token1] = ACTIONS(171), @@ -43098,7 +43381,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), [anon_sym_LBRACE] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(1156), + [anon_sym_RBRACE] = ACTIONS(1054), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -43200,133 +43483,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [46] = { - [sym__block_item] = STATE(49), - [sym_preproc_include] = STATE(49), - [sym_preproc_def] = STATE(49), - [sym_preproc_function_def] = STATE(49), - [sym_preproc_call] = STATE(49), - [sym_preproc_if] = STATE(49), - [sym_preproc_ifdef] = STATE(49), - [sym_function_definition] = STATE(49), - [sym_declaration] = STATE(49), - [sym_type_definition] = STATE(49), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(4599), - [sym_linkage_specification] = STATE(49), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(860), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_call_modifier] = STATE(1924), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6331), - [sym_array_declarator] = STATE(5998), - [sym_compound_statement] = STATE(545), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2758), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(761), - [sym_statement] = STATE(49), - [sym_labeled_statement] = STATE(545), - [sym_expression_statement] = STATE(545), - [sym_if_statement] = STATE(545), - [sym_switch_statement] = STATE(545), - [sym_case_statement] = STATE(545), - [sym_while_statement] = STATE(545), - [sym_do_statement] = STATE(545), - [sym_for_statement] = STATE(545), - [sym_return_statement] = STATE(545), - [sym_break_statement] = STATE(545), - [sym_continue_statement] = STATE(545), - [sym_goto_statement] = STATE(545), - [sym_seh_try_statement] = STATE(545), - [sym_seh_leave_statement] = STATE(545), - [sym_expression] = STATE(4457), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8711), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym__empty_declaration] = STATE(49), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_explicit_function_specifier] = STATE(1800), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(49), - [sym_template_instantiation] = STATE(49), - [sym_operator_cast] = STATE(6799), - [sym__constructor_specifiers] = STATE(1800), - [sym_operator_cast_definition] = STATE(49), - [sym_operator_cast_declaration] = STATE(49), - [sym_constructor_or_destructor_definition] = STATE(49), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(4494), - [sym_namespace_definition] = STATE(49), - [sym_namespace_alias_definition] = STATE(49), - [sym_using_declaration] = STATE(49), - [sym_alias_declaration] = STATE(49), - [sym_static_assert_declaration] = STATE(49), - [sym_concept_definition] = STATE(49), - [sym_for_range_loop] = STATE(545), - [sym_co_return_statement] = STATE(545), - [sym_co_yield_statement] = STATE(545), - [sym_throw_statement] = STATE(545), - [sym_try_statement] = STATE(545), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5460), - [sym_qualified_identifier] = STATE(3281), - [sym_qualified_type_identifier] = STATE(3109), - [sym_qualified_operator_cast_identifier] = STATE(6799), - [sym_operator_name] = STATE(5998), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_preproc_if_repeat1] = STATE(49), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(140), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1800), + [sym__block_item] = STATE(53), + [sym_preproc_include] = STATE(53), + [sym_preproc_def] = STATE(53), + [sym_preproc_function_def] = STATE(53), + [sym_preproc_call] = STATE(53), + [sym_preproc_if] = STATE(53), + [sym_preproc_ifdef] = STATE(53), + [sym_function_definition] = STATE(53), + [sym_declaration] = STATE(53), + [sym_type_definition] = STATE(53), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(4646), + [sym_linkage_specification] = STATE(53), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(859), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_call_modifier] = STATE(1956), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6395), + [sym_array_declarator] = STATE(6145), + [sym_compound_statement] = STATE(560), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2764), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(768), + [sym_statement] = STATE(53), + [sym_labeled_statement] = STATE(560), + [sym_expression_statement] = STATE(560), + [sym_if_statement] = STATE(560), + [sym_switch_statement] = STATE(560), + [sym_case_statement] = STATE(560), + [sym_while_statement] = STATE(560), + [sym_do_statement] = STATE(560), + [sym_for_statement] = STATE(560), + [sym_return_statement] = STATE(560), + [sym_break_statement] = STATE(560), + [sym_continue_statement] = STATE(560), + [sym_goto_statement] = STATE(560), + [sym_seh_try_statement] = STATE(560), + [sym_seh_leave_statement] = STATE(560), + [sym_expression] = STATE(4554), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8083), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym__empty_declaration] = STATE(53), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_explicit_function_specifier] = STATE(1833), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(53), + [sym_template_instantiation] = STATE(53), + [sym_operator_cast] = STATE(6888), + [sym__constructor_specifiers] = STATE(1833), + [sym_operator_cast_definition] = STATE(53), + [sym_operator_cast_declaration] = STATE(53), + [sym_constructor_or_destructor_definition] = STATE(53), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(4529), + [sym_namespace_definition] = STATE(53), + [sym_namespace_alias_definition] = STATE(53), + [sym_using_declaration] = STATE(53), + [sym_alias_declaration] = STATE(53), + [sym_static_assert_declaration] = STATE(53), + [sym_concept_definition] = STATE(53), + [sym_for_range_loop] = STATE(560), + [sym_co_return_statement] = STATE(560), + [sym_co_yield_statement] = STATE(560), + [sym_throw_statement] = STATE(560), + [sym_try_statement] = STATE(560), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5525), + [sym_qualified_identifier] = STATE(3362), + [sym_qualified_type_identifier] = STATE(3059), + [sym_qualified_operator_cast_identifier] = STATE(6888), + [sym_operator_name] = STATE(6145), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_preproc_if_repeat1] = STATE(53), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(158), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1833), [sym_identifier] = ACTIONS(864), [aux_sym_preproc_include_token1] = ACTIONS(169), [aux_sym_preproc_def_token1] = ACTIONS(171), @@ -43361,7 +43644,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), [anon_sym_LBRACE] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(1158), + [anon_sym_RBRACE] = ACTIONS(1056), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -43463,133 +43746,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [47] = { - [sym__block_item] = STATE(42), - [sym_preproc_include] = STATE(42), - [sym_preproc_def] = STATE(42), - [sym_preproc_function_def] = STATE(42), - [sym_preproc_call] = STATE(42), - [sym_preproc_if] = STATE(42), - [sym_preproc_ifdef] = STATE(42), - [sym_function_definition] = STATE(42), - [sym_declaration] = STATE(42), - [sym_type_definition] = STATE(42), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(4599), - [sym_linkage_specification] = STATE(42), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(860), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_call_modifier] = STATE(1924), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6331), - [sym_array_declarator] = STATE(5998), - [sym_compound_statement] = STATE(545), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2758), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(761), - [sym_statement] = STATE(42), - [sym_labeled_statement] = STATE(545), - [sym_expression_statement] = STATE(545), - [sym_if_statement] = STATE(545), - [sym_switch_statement] = STATE(545), - [sym_case_statement] = STATE(545), - [sym_while_statement] = STATE(545), - [sym_do_statement] = STATE(545), - [sym_for_statement] = STATE(545), - [sym_return_statement] = STATE(545), - [sym_break_statement] = STATE(545), - [sym_continue_statement] = STATE(545), - [sym_goto_statement] = STATE(545), - [sym_seh_try_statement] = STATE(545), - [sym_seh_leave_statement] = STATE(545), - [sym_expression] = STATE(4457), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8711), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym__empty_declaration] = STATE(42), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_explicit_function_specifier] = STATE(1800), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(42), - [sym_template_instantiation] = STATE(42), - [sym_operator_cast] = STATE(6799), - [sym__constructor_specifiers] = STATE(1800), - [sym_operator_cast_definition] = STATE(42), - [sym_operator_cast_declaration] = STATE(42), - [sym_constructor_or_destructor_definition] = STATE(42), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(4494), - [sym_namespace_definition] = STATE(42), - [sym_namespace_alias_definition] = STATE(42), - [sym_using_declaration] = STATE(42), - [sym_alias_declaration] = STATE(42), - [sym_static_assert_declaration] = STATE(42), - [sym_concept_definition] = STATE(42), - [sym_for_range_loop] = STATE(545), - [sym_co_return_statement] = STATE(545), - [sym_co_yield_statement] = STATE(545), - [sym_throw_statement] = STATE(545), - [sym_try_statement] = STATE(545), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5460), - [sym_qualified_identifier] = STATE(3281), - [sym_qualified_type_identifier] = STATE(3109), - [sym_qualified_operator_cast_identifier] = STATE(6799), - [sym_operator_name] = STATE(5998), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_preproc_if_repeat1] = STATE(42), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(140), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1800), + [sym__block_item] = STATE(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_declaration] = STATE(48), + [sym_type_definition] = STATE(48), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(4646), + [sym_linkage_specification] = STATE(48), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(859), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_call_modifier] = STATE(1956), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6395), + [sym_array_declarator] = STATE(6145), + [sym_compound_statement] = STATE(560), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2764), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(768), + [sym_statement] = STATE(48), + [sym_labeled_statement] = STATE(560), + [sym_expression_statement] = STATE(560), + [sym_if_statement] = STATE(560), + [sym_switch_statement] = STATE(560), + [sym_case_statement] = STATE(560), + [sym_while_statement] = STATE(560), + [sym_do_statement] = STATE(560), + [sym_for_statement] = STATE(560), + [sym_return_statement] = STATE(560), + [sym_break_statement] = STATE(560), + [sym_continue_statement] = STATE(560), + [sym_goto_statement] = STATE(560), + [sym_seh_try_statement] = STATE(560), + [sym_seh_leave_statement] = STATE(560), + [sym_expression] = STATE(4554), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8083), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym__empty_declaration] = STATE(48), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_explicit_function_specifier] = STATE(1833), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(48), + [sym_template_instantiation] = STATE(48), + [sym_operator_cast] = STATE(6888), + [sym__constructor_specifiers] = STATE(1833), + [sym_operator_cast_definition] = STATE(48), + [sym_operator_cast_declaration] = STATE(48), + [sym_constructor_or_destructor_definition] = STATE(48), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(4529), + [sym_namespace_definition] = STATE(48), + [sym_namespace_alias_definition] = STATE(48), + [sym_using_declaration] = STATE(48), + [sym_alias_declaration] = STATE(48), + [sym_static_assert_declaration] = STATE(48), + [sym_concept_definition] = STATE(48), + [sym_for_range_loop] = STATE(560), + [sym_co_return_statement] = STATE(560), + [sym_co_yield_statement] = STATE(560), + [sym_throw_statement] = STATE(560), + [sym_try_statement] = STATE(560), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5525), + [sym_qualified_identifier] = STATE(3362), + [sym_qualified_type_identifier] = STATE(3059), + [sym_qualified_operator_cast_identifier] = STATE(6888), + [sym_operator_name] = STATE(6145), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_preproc_if_repeat1] = STATE(48), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(158), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1833), [sym_identifier] = ACTIONS(864), [aux_sym_preproc_include_token1] = ACTIONS(169), [aux_sym_preproc_def_token1] = ACTIONS(171), @@ -43624,7 +43907,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), [anon_sym_LBRACE] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(1160), + [anon_sym_RBRACE] = ACTIONS(1058), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -43726,133 +44009,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [48] = { - [sym__block_item] = STATE(42), - [sym_preproc_include] = STATE(42), - [sym_preproc_def] = STATE(42), - [sym_preproc_function_def] = STATE(42), - [sym_preproc_call] = STATE(42), - [sym_preproc_if] = STATE(42), - [sym_preproc_ifdef] = STATE(42), - [sym_function_definition] = STATE(42), - [sym_declaration] = STATE(42), - [sym_type_definition] = STATE(42), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(4599), - [sym_linkage_specification] = STATE(42), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(860), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_call_modifier] = STATE(1924), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6331), - [sym_array_declarator] = STATE(5998), - [sym_compound_statement] = STATE(545), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2758), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(761), - [sym_statement] = STATE(42), - [sym_labeled_statement] = STATE(545), - [sym_expression_statement] = STATE(545), - [sym_if_statement] = STATE(545), - [sym_switch_statement] = STATE(545), - [sym_case_statement] = STATE(545), - [sym_while_statement] = STATE(545), - [sym_do_statement] = STATE(545), - [sym_for_statement] = STATE(545), - [sym_return_statement] = STATE(545), - [sym_break_statement] = STATE(545), - [sym_continue_statement] = STATE(545), - [sym_goto_statement] = STATE(545), - [sym_seh_try_statement] = STATE(545), - [sym_seh_leave_statement] = STATE(545), - [sym_expression] = STATE(4457), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8711), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym__empty_declaration] = STATE(42), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_explicit_function_specifier] = STATE(1800), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(42), - [sym_template_instantiation] = STATE(42), - [sym_operator_cast] = STATE(6799), - [sym__constructor_specifiers] = STATE(1800), - [sym_operator_cast_definition] = STATE(42), - [sym_operator_cast_declaration] = STATE(42), - [sym_constructor_or_destructor_definition] = STATE(42), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(4494), - [sym_namespace_definition] = STATE(42), - [sym_namespace_alias_definition] = STATE(42), - [sym_using_declaration] = STATE(42), - [sym_alias_declaration] = STATE(42), - [sym_static_assert_declaration] = STATE(42), - [sym_concept_definition] = STATE(42), - [sym_for_range_loop] = STATE(545), - [sym_co_return_statement] = STATE(545), - [sym_co_yield_statement] = STATE(545), - [sym_throw_statement] = STATE(545), - [sym_try_statement] = STATE(545), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5460), - [sym_qualified_identifier] = STATE(3281), - [sym_qualified_type_identifier] = STATE(3109), - [sym_qualified_operator_cast_identifier] = STATE(6799), - [sym_operator_name] = STATE(5998), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_preproc_if_repeat1] = STATE(42), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(140), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1800), + [sym__block_item] = STATE(53), + [sym_preproc_include] = STATE(53), + [sym_preproc_def] = STATE(53), + [sym_preproc_function_def] = STATE(53), + [sym_preproc_call] = STATE(53), + [sym_preproc_if] = STATE(53), + [sym_preproc_ifdef] = STATE(53), + [sym_function_definition] = STATE(53), + [sym_declaration] = STATE(53), + [sym_type_definition] = STATE(53), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(4646), + [sym_linkage_specification] = STATE(53), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(859), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_call_modifier] = STATE(1956), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6395), + [sym_array_declarator] = STATE(6145), + [sym_compound_statement] = STATE(560), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2764), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(768), + [sym_statement] = STATE(53), + [sym_labeled_statement] = STATE(560), + [sym_expression_statement] = STATE(560), + [sym_if_statement] = STATE(560), + [sym_switch_statement] = STATE(560), + [sym_case_statement] = STATE(560), + [sym_while_statement] = STATE(560), + [sym_do_statement] = STATE(560), + [sym_for_statement] = STATE(560), + [sym_return_statement] = STATE(560), + [sym_break_statement] = STATE(560), + [sym_continue_statement] = STATE(560), + [sym_goto_statement] = STATE(560), + [sym_seh_try_statement] = STATE(560), + [sym_seh_leave_statement] = STATE(560), + [sym_expression] = STATE(4554), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8083), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym__empty_declaration] = STATE(53), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_explicit_function_specifier] = STATE(1833), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(53), + [sym_template_instantiation] = STATE(53), + [sym_operator_cast] = STATE(6888), + [sym__constructor_specifiers] = STATE(1833), + [sym_operator_cast_definition] = STATE(53), + [sym_operator_cast_declaration] = STATE(53), + [sym_constructor_or_destructor_definition] = STATE(53), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(4529), + [sym_namespace_definition] = STATE(53), + [sym_namespace_alias_definition] = STATE(53), + [sym_using_declaration] = STATE(53), + [sym_alias_declaration] = STATE(53), + [sym_static_assert_declaration] = STATE(53), + [sym_concept_definition] = STATE(53), + [sym_for_range_loop] = STATE(560), + [sym_co_return_statement] = STATE(560), + [sym_co_yield_statement] = STATE(560), + [sym_throw_statement] = STATE(560), + [sym_try_statement] = STATE(560), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5525), + [sym_qualified_identifier] = STATE(3362), + [sym_qualified_type_identifier] = STATE(3059), + [sym_qualified_operator_cast_identifier] = STATE(6888), + [sym_operator_name] = STATE(6145), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_preproc_if_repeat1] = STATE(53), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(158), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1833), [sym_identifier] = ACTIONS(864), [aux_sym_preproc_include_token1] = ACTIONS(169), [aux_sym_preproc_def_token1] = ACTIONS(171), @@ -43887,7 +44170,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), [anon_sym_LBRACE] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(1162), + [anon_sym_RBRACE] = ACTIONS(1060), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -43989,133 +44272,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [49] = { - [sym__block_item] = STATE(42), - [sym_preproc_include] = STATE(42), - [sym_preproc_def] = STATE(42), - [sym_preproc_function_def] = STATE(42), - [sym_preproc_call] = STATE(42), - [sym_preproc_if] = STATE(42), - [sym_preproc_ifdef] = STATE(42), - [sym_function_definition] = STATE(42), - [sym_declaration] = STATE(42), - [sym_type_definition] = STATE(42), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(4599), - [sym_linkage_specification] = STATE(42), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(860), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_call_modifier] = STATE(1924), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6331), - [sym_array_declarator] = STATE(5998), - [sym_compound_statement] = STATE(545), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2758), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(761), - [sym_statement] = STATE(42), - [sym_labeled_statement] = STATE(545), - [sym_expression_statement] = STATE(545), - [sym_if_statement] = STATE(545), - [sym_switch_statement] = STATE(545), - [sym_case_statement] = STATE(545), - [sym_while_statement] = STATE(545), - [sym_do_statement] = STATE(545), - [sym_for_statement] = STATE(545), - [sym_return_statement] = STATE(545), - [sym_break_statement] = STATE(545), - [sym_continue_statement] = STATE(545), - [sym_goto_statement] = STATE(545), - [sym_seh_try_statement] = STATE(545), - [sym_seh_leave_statement] = STATE(545), - [sym_expression] = STATE(4457), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8711), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym__empty_declaration] = STATE(42), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_explicit_function_specifier] = STATE(1800), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(42), - [sym_template_instantiation] = STATE(42), - [sym_operator_cast] = STATE(6799), - [sym__constructor_specifiers] = STATE(1800), - [sym_operator_cast_definition] = STATE(42), - [sym_operator_cast_declaration] = STATE(42), - [sym_constructor_or_destructor_definition] = STATE(42), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(4494), - [sym_namespace_definition] = STATE(42), - [sym_namespace_alias_definition] = STATE(42), - [sym_using_declaration] = STATE(42), - [sym_alias_declaration] = STATE(42), - [sym_static_assert_declaration] = STATE(42), - [sym_concept_definition] = STATE(42), - [sym_for_range_loop] = STATE(545), - [sym_co_return_statement] = STATE(545), - [sym_co_yield_statement] = STATE(545), - [sym_throw_statement] = STATE(545), - [sym_try_statement] = STATE(545), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5460), - [sym_qualified_identifier] = STATE(3281), - [sym_qualified_type_identifier] = STATE(3109), - [sym_qualified_operator_cast_identifier] = STATE(6799), - [sym_operator_name] = STATE(5998), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_preproc_if_repeat1] = STATE(42), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(140), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1800), + [sym__block_item] = STATE(53), + [sym_preproc_include] = STATE(53), + [sym_preproc_def] = STATE(53), + [sym_preproc_function_def] = STATE(53), + [sym_preproc_call] = STATE(53), + [sym_preproc_if] = STATE(53), + [sym_preproc_ifdef] = STATE(53), + [sym_function_definition] = STATE(53), + [sym_declaration] = STATE(53), + [sym_type_definition] = STATE(53), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(4646), + [sym_linkage_specification] = STATE(53), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(859), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_call_modifier] = STATE(1956), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6395), + [sym_array_declarator] = STATE(6145), + [sym_compound_statement] = STATE(560), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2764), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(768), + [sym_statement] = STATE(53), + [sym_labeled_statement] = STATE(560), + [sym_expression_statement] = STATE(560), + [sym_if_statement] = STATE(560), + [sym_switch_statement] = STATE(560), + [sym_case_statement] = STATE(560), + [sym_while_statement] = STATE(560), + [sym_do_statement] = STATE(560), + [sym_for_statement] = STATE(560), + [sym_return_statement] = STATE(560), + [sym_break_statement] = STATE(560), + [sym_continue_statement] = STATE(560), + [sym_goto_statement] = STATE(560), + [sym_seh_try_statement] = STATE(560), + [sym_seh_leave_statement] = STATE(560), + [sym_expression] = STATE(4554), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8083), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym__empty_declaration] = STATE(53), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_explicit_function_specifier] = STATE(1833), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(53), + [sym_template_instantiation] = STATE(53), + [sym_operator_cast] = STATE(6888), + [sym__constructor_specifiers] = STATE(1833), + [sym_operator_cast_definition] = STATE(53), + [sym_operator_cast_declaration] = STATE(53), + [sym_constructor_or_destructor_definition] = STATE(53), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(4529), + [sym_namespace_definition] = STATE(53), + [sym_namespace_alias_definition] = STATE(53), + [sym_using_declaration] = STATE(53), + [sym_alias_declaration] = STATE(53), + [sym_static_assert_declaration] = STATE(53), + [sym_concept_definition] = STATE(53), + [sym_for_range_loop] = STATE(560), + [sym_co_return_statement] = STATE(560), + [sym_co_yield_statement] = STATE(560), + [sym_throw_statement] = STATE(560), + [sym_try_statement] = STATE(560), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5525), + [sym_qualified_identifier] = STATE(3362), + [sym_qualified_type_identifier] = STATE(3059), + [sym_qualified_operator_cast_identifier] = STATE(6888), + [sym_operator_name] = STATE(6145), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_preproc_if_repeat1] = STATE(53), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(158), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1833), [sym_identifier] = ACTIONS(864), [aux_sym_preproc_include_token1] = ACTIONS(169), [aux_sym_preproc_def_token1] = ACTIONS(171), @@ -44150,7 +44433,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), [anon_sym_LBRACE] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(1164), + [anon_sym_RBRACE] = ACTIONS(1062), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -44252,133 +44535,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [50] = { - [sym__block_item] = STATE(52), - [sym_preproc_include] = STATE(52), - [sym_preproc_def] = STATE(52), - [sym_preproc_function_def] = STATE(52), - [sym_preproc_call] = STATE(52), - [sym_preproc_if] = STATE(52), - [sym_preproc_ifdef] = STATE(52), - [sym_function_definition] = STATE(52), - [sym_declaration] = STATE(52), - [sym_type_definition] = STATE(52), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(4599), - [sym_linkage_specification] = STATE(52), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(860), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_call_modifier] = STATE(1924), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6331), - [sym_array_declarator] = STATE(5998), - [sym_compound_statement] = STATE(545), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2758), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(761), - [sym_statement] = STATE(52), - [sym_labeled_statement] = STATE(545), - [sym_expression_statement] = STATE(545), - [sym_if_statement] = STATE(545), - [sym_switch_statement] = STATE(545), - [sym_case_statement] = STATE(545), - [sym_while_statement] = STATE(545), - [sym_do_statement] = STATE(545), - [sym_for_statement] = STATE(545), - [sym_return_statement] = STATE(545), - [sym_break_statement] = STATE(545), - [sym_continue_statement] = STATE(545), - [sym_goto_statement] = STATE(545), - [sym_seh_try_statement] = STATE(545), - [sym_seh_leave_statement] = STATE(545), - [sym_expression] = STATE(4457), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8711), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym__empty_declaration] = STATE(52), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_explicit_function_specifier] = STATE(1800), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(52), - [sym_template_instantiation] = STATE(52), - [sym_operator_cast] = STATE(6799), - [sym__constructor_specifiers] = STATE(1800), - [sym_operator_cast_definition] = STATE(52), - [sym_operator_cast_declaration] = STATE(52), - [sym_constructor_or_destructor_definition] = STATE(52), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(4494), - [sym_namespace_definition] = STATE(52), - [sym_namespace_alias_definition] = STATE(52), - [sym_using_declaration] = STATE(52), - [sym_alias_declaration] = STATE(52), - [sym_static_assert_declaration] = STATE(52), - [sym_concept_definition] = STATE(52), - [sym_for_range_loop] = STATE(545), - [sym_co_return_statement] = STATE(545), - [sym_co_yield_statement] = STATE(545), - [sym_throw_statement] = STATE(545), - [sym_try_statement] = STATE(545), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5460), - [sym_qualified_identifier] = STATE(3281), - [sym_qualified_type_identifier] = STATE(3109), - [sym_qualified_operator_cast_identifier] = STATE(6799), - [sym_operator_name] = STATE(5998), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_preproc_if_repeat1] = STATE(52), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(140), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1800), + [sym__block_item] = STATE(51), + [sym_preproc_include] = STATE(51), + [sym_preproc_def] = STATE(51), + [sym_preproc_function_def] = STATE(51), + [sym_preproc_call] = STATE(51), + [sym_preproc_if] = STATE(51), + [sym_preproc_ifdef] = STATE(51), + [sym_function_definition] = STATE(51), + [sym_declaration] = STATE(51), + [sym_type_definition] = STATE(51), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(4646), + [sym_linkage_specification] = STATE(51), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(859), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_call_modifier] = STATE(1956), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6395), + [sym_array_declarator] = STATE(6145), + [sym_compound_statement] = STATE(560), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2764), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(768), + [sym_statement] = STATE(51), + [sym_labeled_statement] = STATE(560), + [sym_expression_statement] = STATE(560), + [sym_if_statement] = STATE(560), + [sym_switch_statement] = STATE(560), + [sym_case_statement] = STATE(560), + [sym_while_statement] = STATE(560), + [sym_do_statement] = STATE(560), + [sym_for_statement] = STATE(560), + [sym_return_statement] = STATE(560), + [sym_break_statement] = STATE(560), + [sym_continue_statement] = STATE(560), + [sym_goto_statement] = STATE(560), + [sym_seh_try_statement] = STATE(560), + [sym_seh_leave_statement] = STATE(560), + [sym_expression] = STATE(4554), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8083), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym__empty_declaration] = STATE(51), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_explicit_function_specifier] = STATE(1833), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(51), + [sym_template_instantiation] = STATE(51), + [sym_operator_cast] = STATE(6888), + [sym__constructor_specifiers] = STATE(1833), + [sym_operator_cast_definition] = STATE(51), + [sym_operator_cast_declaration] = STATE(51), + [sym_constructor_or_destructor_definition] = STATE(51), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(4529), + [sym_namespace_definition] = STATE(51), + [sym_namespace_alias_definition] = STATE(51), + [sym_using_declaration] = STATE(51), + [sym_alias_declaration] = STATE(51), + [sym_static_assert_declaration] = STATE(51), + [sym_concept_definition] = STATE(51), + [sym_for_range_loop] = STATE(560), + [sym_co_return_statement] = STATE(560), + [sym_co_yield_statement] = STATE(560), + [sym_throw_statement] = STATE(560), + [sym_try_statement] = STATE(560), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5525), + [sym_qualified_identifier] = STATE(3362), + [sym_qualified_type_identifier] = STATE(3059), + [sym_qualified_operator_cast_identifier] = STATE(6888), + [sym_operator_name] = STATE(6145), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_preproc_if_repeat1] = STATE(51), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(158), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1833), [sym_identifier] = ACTIONS(864), [aux_sym_preproc_include_token1] = ACTIONS(169), [aux_sym_preproc_def_token1] = ACTIONS(171), @@ -44413,7 +44696,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), [anon_sym_LBRACE] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(1166), + [anon_sym_RBRACE] = ACTIONS(1064), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -44515,396 +44798,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [51] = { - [sym__block_item] = STATE(38), - [sym_preproc_include] = STATE(38), - [sym_preproc_def] = STATE(38), - [sym_preproc_function_def] = STATE(38), - [sym_preproc_call] = STATE(38), - [sym_preproc_if] = STATE(38), - [sym_preproc_ifdef] = STATE(38), - [sym_function_definition] = STATE(38), - [sym_declaration] = STATE(38), - [sym_type_definition] = STATE(38), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(4658), - [sym_linkage_specification] = STATE(38), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(860), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_call_modifier] = STATE(1912), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6306), - [sym_array_declarator] = STATE(5998), - [sym_compound_statement] = STATE(529), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2729), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(782), - [sym_statement] = STATE(38), - [sym_labeled_statement] = STATE(529), - [sym_expression_statement] = STATE(529), - [sym_if_statement] = STATE(529), - [sym_switch_statement] = STATE(529), - [sym_case_statement] = STATE(529), - [sym_while_statement] = STATE(529), - [sym_do_statement] = STATE(529), - [sym_for_statement] = STATE(529), - [sym_return_statement] = STATE(529), - [sym_break_statement] = STATE(529), - [sym_continue_statement] = STATE(529), - [sym_goto_statement] = STATE(529), - [sym_seh_try_statement] = STATE(529), - [sym_seh_leave_statement] = STATE(529), - [sym_expression] = STATE(4500), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8311), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym__empty_declaration] = STATE(38), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_explicit_function_specifier] = STATE(1742), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(38), - [sym_template_instantiation] = STATE(38), - [sym_operator_cast] = STATE(6793), - [sym__constructor_specifiers] = STATE(1742), - [sym_operator_cast_definition] = STATE(38), - [sym_operator_cast_declaration] = STATE(38), - [sym_constructor_or_destructor_definition] = STATE(38), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(4494), - [sym_namespace_definition] = STATE(38), - [sym_namespace_alias_definition] = STATE(38), - [sym_using_declaration] = STATE(38), - [sym_alias_declaration] = STATE(38), - [sym_static_assert_declaration] = STATE(38), - [sym_concept_definition] = STATE(38), - [sym_for_range_loop] = STATE(529), - [sym_co_return_statement] = STATE(529), - [sym_co_yield_statement] = STATE(529), - [sym_throw_statement] = STATE(529), - [sym_try_statement] = STATE(529), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5460), - [sym_qualified_identifier] = STATE(3281), - [sym_qualified_type_identifier] = STATE(3109), - [sym_qualified_operator_cast_identifier] = STATE(6793), - [sym_operator_name] = STATE(5998), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_preproc_if_repeat1] = STATE(38), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(151), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1742), - [sym_identifier] = ACTIONS(870), - [aux_sym_preproc_include_token1] = ACTIONS(872), - [aux_sym_preproc_def_token1] = ACTIONS(874), - [aux_sym_preproc_if_token1] = ACTIONS(876), - [aux_sym_preproc_if_token2] = ACTIONS(1168), - [aux_sym_preproc_ifdef_token1] = ACTIONS(880), - [aux_sym_preproc_ifdef_token2] = ACTIONS(880), - [sym_preproc_directive] = ACTIONS(882), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(884), - [anon_sym___extension__] = ACTIONS(886), - [anon_sym_typedef] = ACTIONS(888), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(890), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(892), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(49), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym___cdecl] = ACTIONS(55), - [anon_sym___clrcall] = ACTIONS(55), - [anon_sym___stdcall] = ACTIONS(55), - [anon_sym___fastcall] = ACTIONS(55), - [anon_sym___thiscall] = ACTIONS(55), - [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(894), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(896), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(898), - [anon_sym_switch] = ACTIONS(900), - [anon_sym_case] = ACTIONS(902), - [anon_sym_default] = ACTIONS(904), - [anon_sym_while] = ACTIONS(906), - [anon_sym_do] = ACTIONS(908), - [anon_sym_for] = ACTIONS(910), - [anon_sym_return] = ACTIONS(912), - [anon_sym_break] = ACTIONS(914), - [anon_sym_continue] = ACTIONS(916), - [anon_sym_goto] = ACTIONS(918), - [anon_sym___try] = ACTIONS(920), - [anon_sym___leave] = ACTIONS(922), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(924), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_try] = ACTIONS(926), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(928), - [anon_sym_namespace] = ACTIONS(930), - [anon_sym_static_assert] = ACTIONS(932), - [anon_sym_concept] = ACTIONS(934), - [anon_sym_co_return] = ACTIONS(936), - [anon_sym_co_yield] = ACTIONS(938), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), - }, - [52] = { - [sym__block_item] = STATE(42), - [sym_preproc_include] = STATE(42), - [sym_preproc_def] = STATE(42), - [sym_preproc_function_def] = STATE(42), - [sym_preproc_call] = STATE(42), - [sym_preproc_if] = STATE(42), - [sym_preproc_ifdef] = STATE(42), - [sym_function_definition] = STATE(42), - [sym_declaration] = STATE(42), - [sym_type_definition] = STATE(42), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(4599), - [sym_linkage_specification] = STATE(42), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(860), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_call_modifier] = STATE(1924), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6331), - [sym_array_declarator] = STATE(5998), - [sym_compound_statement] = STATE(545), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2758), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(761), - [sym_statement] = STATE(42), - [sym_labeled_statement] = STATE(545), - [sym_expression_statement] = STATE(545), - [sym_if_statement] = STATE(545), - [sym_switch_statement] = STATE(545), - [sym_case_statement] = STATE(545), - [sym_while_statement] = STATE(545), - [sym_do_statement] = STATE(545), - [sym_for_statement] = STATE(545), - [sym_return_statement] = STATE(545), - [sym_break_statement] = STATE(545), - [sym_continue_statement] = STATE(545), - [sym_goto_statement] = STATE(545), - [sym_seh_try_statement] = STATE(545), - [sym_seh_leave_statement] = STATE(545), - [sym_expression] = STATE(4457), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8711), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym__empty_declaration] = STATE(42), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_explicit_function_specifier] = STATE(1800), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(42), - [sym_template_instantiation] = STATE(42), - [sym_operator_cast] = STATE(6799), - [sym__constructor_specifiers] = STATE(1800), - [sym_operator_cast_definition] = STATE(42), - [sym_operator_cast_declaration] = STATE(42), - [sym_constructor_or_destructor_definition] = STATE(42), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(4494), - [sym_namespace_definition] = STATE(42), - [sym_namespace_alias_definition] = STATE(42), - [sym_using_declaration] = STATE(42), - [sym_alias_declaration] = STATE(42), - [sym_static_assert_declaration] = STATE(42), - [sym_concept_definition] = STATE(42), - [sym_for_range_loop] = STATE(545), - [sym_co_return_statement] = STATE(545), - [sym_co_yield_statement] = STATE(545), - [sym_throw_statement] = STATE(545), - [sym_try_statement] = STATE(545), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5460), - [sym_qualified_identifier] = STATE(3281), - [sym_qualified_type_identifier] = STATE(3109), - [sym_qualified_operator_cast_identifier] = STATE(6799), - [sym_operator_name] = STATE(5998), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_preproc_if_repeat1] = STATE(42), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(140), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1800), + [sym__block_item] = STATE(53), + [sym_preproc_include] = STATE(53), + [sym_preproc_def] = STATE(53), + [sym_preproc_function_def] = STATE(53), + [sym_preproc_call] = STATE(53), + [sym_preproc_if] = STATE(53), + [sym_preproc_ifdef] = STATE(53), + [sym_function_definition] = STATE(53), + [sym_declaration] = STATE(53), + [sym_type_definition] = STATE(53), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(4646), + [sym_linkage_specification] = STATE(53), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(859), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_call_modifier] = STATE(1956), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6395), + [sym_array_declarator] = STATE(6145), + [sym_compound_statement] = STATE(560), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2764), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(768), + [sym_statement] = STATE(53), + [sym_labeled_statement] = STATE(560), + [sym_expression_statement] = STATE(560), + [sym_if_statement] = STATE(560), + [sym_switch_statement] = STATE(560), + [sym_case_statement] = STATE(560), + [sym_while_statement] = STATE(560), + [sym_do_statement] = STATE(560), + [sym_for_statement] = STATE(560), + [sym_return_statement] = STATE(560), + [sym_break_statement] = STATE(560), + [sym_continue_statement] = STATE(560), + [sym_goto_statement] = STATE(560), + [sym_seh_try_statement] = STATE(560), + [sym_seh_leave_statement] = STATE(560), + [sym_expression] = STATE(4554), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8083), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym__empty_declaration] = STATE(53), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_explicit_function_specifier] = STATE(1833), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(53), + [sym_template_instantiation] = STATE(53), + [sym_operator_cast] = STATE(6888), + [sym__constructor_specifiers] = STATE(1833), + [sym_operator_cast_definition] = STATE(53), + [sym_operator_cast_declaration] = STATE(53), + [sym_constructor_or_destructor_definition] = STATE(53), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(4529), + [sym_namespace_definition] = STATE(53), + [sym_namespace_alias_definition] = STATE(53), + [sym_using_declaration] = STATE(53), + [sym_alias_declaration] = STATE(53), + [sym_static_assert_declaration] = STATE(53), + [sym_concept_definition] = STATE(53), + [sym_for_range_loop] = STATE(560), + [sym_co_return_statement] = STATE(560), + [sym_co_yield_statement] = STATE(560), + [sym_throw_statement] = STATE(560), + [sym_try_statement] = STATE(560), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5525), + [sym_qualified_identifier] = STATE(3362), + [sym_qualified_type_identifier] = STATE(3059), + [sym_qualified_operator_cast_identifier] = STATE(6888), + [sym_operator_name] = STATE(6145), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_preproc_if_repeat1] = STATE(53), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(158), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1833), [sym_identifier] = ACTIONS(864), [aux_sym_preproc_include_token1] = ACTIONS(169), [aux_sym_preproc_def_token1] = ACTIONS(171), @@ -44939,7 +44959,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), [anon_sym_LBRACE] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(1170), + [anon_sym_RBRACE] = ACTIONS(1066), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -45040,134 +45060,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [53] = { - [sym__block_item] = STATE(54), - [sym_preproc_include] = STATE(54), - [sym_preproc_def] = STATE(54), - [sym_preproc_function_def] = STATE(54), - [sym_preproc_call] = STATE(54), - [sym_preproc_if] = STATE(54), - [sym_preproc_ifdef] = STATE(54), - [sym_function_definition] = STATE(54), - [sym_declaration] = STATE(54), - [sym_type_definition] = STATE(54), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(4599), - [sym_linkage_specification] = STATE(54), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(860), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_call_modifier] = STATE(1924), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6331), - [sym_array_declarator] = STATE(5998), - [sym_compound_statement] = STATE(545), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2758), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(761), - [sym_statement] = STATE(54), - [sym_labeled_statement] = STATE(545), - [sym_expression_statement] = STATE(545), - [sym_if_statement] = STATE(545), - [sym_switch_statement] = STATE(545), - [sym_case_statement] = STATE(545), - [sym_while_statement] = STATE(545), - [sym_do_statement] = STATE(545), - [sym_for_statement] = STATE(545), - [sym_return_statement] = STATE(545), - [sym_break_statement] = STATE(545), - [sym_continue_statement] = STATE(545), - [sym_goto_statement] = STATE(545), - [sym_seh_try_statement] = STATE(545), - [sym_seh_leave_statement] = STATE(545), - [sym_expression] = STATE(4457), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8711), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym__empty_declaration] = STATE(54), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_explicit_function_specifier] = STATE(1800), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(54), - [sym_template_instantiation] = STATE(54), - [sym_operator_cast] = STATE(6799), - [sym__constructor_specifiers] = STATE(1800), - [sym_operator_cast_definition] = STATE(54), - [sym_operator_cast_declaration] = STATE(54), - [sym_constructor_or_destructor_definition] = STATE(54), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(4494), - [sym_namespace_definition] = STATE(54), - [sym_namespace_alias_definition] = STATE(54), - [sym_using_declaration] = STATE(54), - [sym_alias_declaration] = STATE(54), - [sym_static_assert_declaration] = STATE(54), - [sym_concept_definition] = STATE(54), - [sym_for_range_loop] = STATE(545), - [sym_co_return_statement] = STATE(545), - [sym_co_yield_statement] = STATE(545), - [sym_throw_statement] = STATE(545), - [sym_try_statement] = STATE(545), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5460), - [sym_qualified_identifier] = STATE(3281), - [sym_qualified_type_identifier] = STATE(3109), - [sym_qualified_operator_cast_identifier] = STATE(6799), - [sym_operator_name] = STATE(5998), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_preproc_if_repeat1] = STATE(54), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(140), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1800), + [52] = { + [sym__block_item] = STATE(84), + [sym_preproc_include] = STATE(84), + [sym_preproc_def] = STATE(84), + [sym_preproc_function_def] = STATE(84), + [sym_preproc_call] = STATE(84), + [sym_preproc_if] = STATE(84), + [sym_preproc_ifdef] = STATE(84), + [sym_function_definition] = STATE(84), + [sym_declaration] = STATE(84), + [sym_type_definition] = STATE(84), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(4646), + [sym_linkage_specification] = STATE(84), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(859), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_call_modifier] = STATE(1956), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6395), + [sym_array_declarator] = STATE(6145), + [sym_compound_statement] = STATE(560), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2764), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(768), + [sym_statement] = STATE(84), + [sym_labeled_statement] = STATE(560), + [sym_expression_statement] = STATE(560), + [sym_if_statement] = STATE(560), + [sym_switch_statement] = STATE(560), + [sym_case_statement] = STATE(560), + [sym_while_statement] = STATE(560), + [sym_do_statement] = STATE(560), + [sym_for_statement] = STATE(560), + [sym_return_statement] = STATE(560), + [sym_break_statement] = STATE(560), + [sym_continue_statement] = STATE(560), + [sym_goto_statement] = STATE(560), + [sym_seh_try_statement] = STATE(560), + [sym_seh_leave_statement] = STATE(560), + [sym_expression] = STATE(4554), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8083), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym__empty_declaration] = STATE(84), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_explicit_function_specifier] = STATE(1833), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(84), + [sym_template_instantiation] = STATE(84), + [sym_operator_cast] = STATE(6888), + [sym__constructor_specifiers] = STATE(1833), + [sym_operator_cast_definition] = STATE(84), + [sym_operator_cast_declaration] = STATE(84), + [sym_constructor_or_destructor_definition] = STATE(84), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(4529), + [sym_namespace_definition] = STATE(84), + [sym_namespace_alias_definition] = STATE(84), + [sym_using_declaration] = STATE(84), + [sym_alias_declaration] = STATE(84), + [sym_static_assert_declaration] = STATE(84), + [sym_concept_definition] = STATE(84), + [sym_for_range_loop] = STATE(560), + [sym_co_return_statement] = STATE(560), + [sym_co_yield_statement] = STATE(560), + [sym_throw_statement] = STATE(560), + [sym_try_statement] = STATE(560), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5525), + [sym_qualified_identifier] = STATE(3362), + [sym_qualified_type_identifier] = STATE(3059), + [sym_qualified_operator_cast_identifier] = STATE(6888), + [sym_operator_name] = STATE(6145), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_preproc_if_repeat1] = STATE(84), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(158), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1833), [sym_identifier] = ACTIONS(864), [aux_sym_preproc_include_token1] = ACTIONS(169), [aux_sym_preproc_def_token1] = ACTIONS(171), @@ -45202,7 +45222,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), [anon_sym_LBRACE] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(1172), + [anon_sym_RBRACE] = ACTIONS(1068), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -45303,134 +45323,397 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, + [53] = { + [sym__block_item] = STATE(53), + [sym_preproc_include] = STATE(53), + [sym_preproc_def] = STATE(53), + [sym_preproc_function_def] = STATE(53), + [sym_preproc_call] = STATE(53), + [sym_preproc_if] = STATE(53), + [sym_preproc_ifdef] = STATE(53), + [sym_function_definition] = STATE(53), + [sym_declaration] = STATE(53), + [sym_type_definition] = STATE(53), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(4646), + [sym_linkage_specification] = STATE(53), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(859), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_call_modifier] = STATE(1956), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6395), + [sym_array_declarator] = STATE(6145), + [sym_compound_statement] = STATE(560), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2764), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(768), + [sym_statement] = STATE(53), + [sym_labeled_statement] = STATE(560), + [sym_expression_statement] = STATE(560), + [sym_if_statement] = STATE(560), + [sym_switch_statement] = STATE(560), + [sym_case_statement] = STATE(560), + [sym_while_statement] = STATE(560), + [sym_do_statement] = STATE(560), + [sym_for_statement] = STATE(560), + [sym_return_statement] = STATE(560), + [sym_break_statement] = STATE(560), + [sym_continue_statement] = STATE(560), + [sym_goto_statement] = STATE(560), + [sym_seh_try_statement] = STATE(560), + [sym_seh_leave_statement] = STATE(560), + [sym_expression] = STATE(4554), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8083), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym__empty_declaration] = STATE(53), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_explicit_function_specifier] = STATE(1833), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(53), + [sym_template_instantiation] = STATE(53), + [sym_operator_cast] = STATE(6888), + [sym__constructor_specifiers] = STATE(1833), + [sym_operator_cast_definition] = STATE(53), + [sym_operator_cast_declaration] = STATE(53), + [sym_constructor_or_destructor_definition] = STATE(53), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(4529), + [sym_namespace_definition] = STATE(53), + [sym_namespace_alias_definition] = STATE(53), + [sym_using_declaration] = STATE(53), + [sym_alias_declaration] = STATE(53), + [sym_static_assert_declaration] = STATE(53), + [sym_concept_definition] = STATE(53), + [sym_for_range_loop] = STATE(560), + [sym_co_return_statement] = STATE(560), + [sym_co_yield_statement] = STATE(560), + [sym_throw_statement] = STATE(560), + [sym_try_statement] = STATE(560), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5525), + [sym_qualified_identifier] = STATE(3362), + [sym_qualified_type_identifier] = STATE(3059), + [sym_qualified_operator_cast_identifier] = STATE(6888), + [sym_operator_name] = STATE(6145), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_preproc_if_repeat1] = STATE(53), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(158), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1833), + [sym_identifier] = ACTIONS(1070), + [aux_sym_preproc_include_token1] = ACTIONS(1073), + [aux_sym_preproc_def_token1] = ACTIONS(1076), + [aux_sym_preproc_if_token1] = ACTIONS(1079), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1082), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1082), + [sym_preproc_directive] = ACTIONS(1085), + [anon_sym_LPAREN2] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(404), + [anon_sym_TILDE] = ACTIONS(407), + [anon_sym_DASH] = ACTIONS(410), + [anon_sym_PLUS] = ACTIONS(410), + [anon_sym_STAR] = ACTIONS(413), + [anon_sym_AMP_AMP] = ACTIONS(416), + [anon_sym_AMP] = ACTIONS(419), + [anon_sym_SEMI] = ACTIONS(1088), + [anon_sym___extension__] = ACTIONS(1091), + [anon_sym_typedef] = ACTIONS(1094), + [anon_sym_virtual] = ACTIONS(431), + [anon_sym_extern] = ACTIONS(1097), + [anon_sym___attribute__] = ACTIONS(437), + [anon_sym___attribute] = ACTIONS(437), + [anon_sym_using] = ACTIONS(1100), + [anon_sym_COLON_COLON] = ACTIONS(443), + [anon_sym_LBRACK_LBRACK] = ACTIONS(446), + [anon_sym___declspec] = ACTIONS(449), + [anon_sym___based] = ACTIONS(452), + [anon_sym___cdecl] = ACTIONS(455), + [anon_sym___clrcall] = ACTIONS(455), + [anon_sym___stdcall] = ACTIONS(455), + [anon_sym___fastcall] = ACTIONS(455), + [anon_sym___thiscall] = ACTIONS(455), + [anon_sym___vectorcall] = ACTIONS(455), + [anon_sym_LBRACE] = ACTIONS(1103), + [anon_sym_RBRACE] = ACTIONS(1106), + [anon_sym_signed] = ACTIONS(461), + [anon_sym_unsigned] = ACTIONS(461), + [anon_sym_long] = ACTIONS(461), + [anon_sym_short] = ACTIONS(461), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_static] = ACTIONS(467), + [anon_sym_register] = ACTIONS(467), + [anon_sym_inline] = ACTIONS(1108), + [anon_sym___inline] = ACTIONS(467), + [anon_sym___inline__] = ACTIONS(467), + [anon_sym___forceinline] = ACTIONS(467), + [anon_sym_thread_local] = ACTIONS(467), + [anon_sym___thread] = ACTIONS(467), + [anon_sym_const] = ACTIONS(473), + [anon_sym_constexpr] = ACTIONS(473), + [anon_sym_volatile] = ACTIONS(473), + [anon_sym_restrict] = ACTIONS(473), + [anon_sym___restrict__] = ACTIONS(473), + [anon_sym__Atomic] = ACTIONS(473), + [anon_sym__Noreturn] = ACTIONS(473), + [anon_sym_noreturn] = ACTIONS(473), + [anon_sym__Nonnull] = ACTIONS(473), + [anon_sym_mutable] = ACTIONS(473), + [anon_sym_constinit] = ACTIONS(473), + [anon_sym_consteval] = ACTIONS(473), + [anon_sym_alignas] = ACTIONS(476), + [anon_sym__Alignas] = ACTIONS(476), + [sym_primitive_type] = ACTIONS(479), + [anon_sym_enum] = ACTIONS(482), + [anon_sym_class] = ACTIONS(485), + [anon_sym_struct] = ACTIONS(488), + [anon_sym_union] = ACTIONS(491), + [anon_sym_if] = ACTIONS(1111), + [anon_sym_switch] = ACTIONS(1114), + [anon_sym_case] = ACTIONS(1117), + [anon_sym_default] = ACTIONS(1120), + [anon_sym_while] = ACTIONS(1123), + [anon_sym_do] = ACTIONS(1126), + [anon_sym_for] = ACTIONS(1129), + [anon_sym_return] = ACTIONS(1132), + [anon_sym_break] = ACTIONS(1135), + [anon_sym_continue] = ACTIONS(1138), + [anon_sym_goto] = ACTIONS(1141), + [anon_sym___try] = ACTIONS(1144), + [anon_sym___leave] = ACTIONS(1147), + [anon_sym_not] = ACTIONS(410), + [anon_sym_compl] = ACTIONS(410), + [anon_sym_DASH_DASH] = ACTIONS(533), + [anon_sym_PLUS_PLUS] = ACTIONS(533), + [anon_sym_sizeof] = ACTIONS(536), + [anon_sym___alignof__] = ACTIONS(539), + [anon_sym___alignof] = ACTIONS(539), + [anon_sym__alignof] = ACTIONS(539), + [anon_sym_alignof] = ACTIONS(539), + [anon_sym__Alignof] = ACTIONS(539), + [anon_sym_offsetof] = ACTIONS(542), + [anon_sym__Generic] = ACTIONS(545), + [anon_sym_asm] = ACTIONS(548), + [anon_sym___asm__] = ACTIONS(548), + [anon_sym___asm] = ACTIONS(548), + [sym_number_literal] = ACTIONS(551), + [anon_sym_L_SQUOTE] = ACTIONS(554), + [anon_sym_u_SQUOTE] = ACTIONS(554), + [anon_sym_U_SQUOTE] = ACTIONS(554), + [anon_sym_u8_SQUOTE] = ACTIONS(554), + [anon_sym_SQUOTE] = ACTIONS(554), + [anon_sym_L_DQUOTE] = ACTIONS(557), + [anon_sym_u_DQUOTE] = ACTIONS(557), + [anon_sym_U_DQUOTE] = ACTIONS(557), + [anon_sym_u8_DQUOTE] = ACTIONS(557), + [anon_sym_DQUOTE] = ACTIONS(557), + [sym_true] = ACTIONS(560), + [sym_false] = ACTIONS(560), + [anon_sym_NULL] = ACTIONS(563), + [anon_sym_nullptr] = ACTIONS(563), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(566), + [anon_sym_decltype] = ACTIONS(569), + [anon_sym_explicit] = ACTIONS(572), + [anon_sym_typename] = ACTIONS(575), + [anon_sym_template] = ACTIONS(1150), + [anon_sym_operator] = ACTIONS(581), + [anon_sym_try] = ACTIONS(1153), + [anon_sym_delete] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(1156), + [anon_sym_namespace] = ACTIONS(1159), + [anon_sym_static_assert] = ACTIONS(1162), + [anon_sym_concept] = ACTIONS(1165), + [anon_sym_co_return] = ACTIONS(1168), + [anon_sym_co_yield] = ACTIONS(1171), + [anon_sym_R_DQUOTE] = ACTIONS(608), + [anon_sym_LR_DQUOTE] = ACTIONS(608), + [anon_sym_uR_DQUOTE] = ACTIONS(608), + [anon_sym_UR_DQUOTE] = ACTIONS(608), + [anon_sym_u8R_DQUOTE] = ACTIONS(608), + [anon_sym_co_await] = ACTIONS(611), + [anon_sym_new] = ACTIONS(614), + [anon_sym_requires] = ACTIONS(617), + [sym_this] = ACTIONS(560), + }, [54] = { - [sym__block_item] = STATE(42), - [sym_preproc_include] = STATE(42), - [sym_preproc_def] = STATE(42), - [sym_preproc_function_def] = STATE(42), - [sym_preproc_call] = STATE(42), - [sym_preproc_if] = STATE(42), - [sym_preproc_ifdef] = STATE(42), - [sym_function_definition] = STATE(42), - [sym_declaration] = STATE(42), - [sym_type_definition] = STATE(42), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(4599), - [sym_linkage_specification] = STATE(42), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(860), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_call_modifier] = STATE(1924), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6331), - [sym_array_declarator] = STATE(5998), - [sym_compound_statement] = STATE(545), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2758), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(761), - [sym_statement] = STATE(42), - [sym_labeled_statement] = STATE(545), - [sym_expression_statement] = STATE(545), - [sym_if_statement] = STATE(545), - [sym_switch_statement] = STATE(545), - [sym_case_statement] = STATE(545), - [sym_while_statement] = STATE(545), - [sym_do_statement] = STATE(545), - [sym_for_statement] = STATE(545), - [sym_return_statement] = STATE(545), - [sym_break_statement] = STATE(545), - [sym_continue_statement] = STATE(545), - [sym_goto_statement] = STATE(545), - [sym_seh_try_statement] = STATE(545), - [sym_seh_leave_statement] = STATE(545), - [sym_expression] = STATE(4457), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8711), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym__empty_declaration] = STATE(42), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_explicit_function_specifier] = STATE(1800), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(42), - [sym_template_instantiation] = STATE(42), - [sym_operator_cast] = STATE(6799), - [sym__constructor_specifiers] = STATE(1800), - [sym_operator_cast_definition] = STATE(42), - [sym_operator_cast_declaration] = STATE(42), - [sym_constructor_or_destructor_definition] = STATE(42), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(4494), - [sym_namespace_definition] = STATE(42), - [sym_namespace_alias_definition] = STATE(42), - [sym_using_declaration] = STATE(42), - [sym_alias_declaration] = STATE(42), - [sym_static_assert_declaration] = STATE(42), - [sym_concept_definition] = STATE(42), - [sym_for_range_loop] = STATE(545), - [sym_co_return_statement] = STATE(545), - [sym_co_yield_statement] = STATE(545), - [sym_throw_statement] = STATE(545), - [sym_try_statement] = STATE(545), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5460), - [sym_qualified_identifier] = STATE(3281), - [sym_qualified_type_identifier] = STATE(3109), - [sym_qualified_operator_cast_identifier] = STATE(6799), - [sym_operator_name] = STATE(5998), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_preproc_if_repeat1] = STATE(42), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(140), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1800), + [sym__block_item] = STATE(53), + [sym_preproc_include] = STATE(53), + [sym_preproc_def] = STATE(53), + [sym_preproc_function_def] = STATE(53), + [sym_preproc_call] = STATE(53), + [sym_preproc_if] = STATE(53), + [sym_preproc_ifdef] = STATE(53), + [sym_function_definition] = STATE(53), + [sym_declaration] = STATE(53), + [sym_type_definition] = STATE(53), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(4646), + [sym_linkage_specification] = STATE(53), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(859), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_call_modifier] = STATE(1956), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6395), + [sym_array_declarator] = STATE(6145), + [sym_compound_statement] = STATE(560), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2764), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(768), + [sym_statement] = STATE(53), + [sym_labeled_statement] = STATE(560), + [sym_expression_statement] = STATE(560), + [sym_if_statement] = STATE(560), + [sym_switch_statement] = STATE(560), + [sym_case_statement] = STATE(560), + [sym_while_statement] = STATE(560), + [sym_do_statement] = STATE(560), + [sym_for_statement] = STATE(560), + [sym_return_statement] = STATE(560), + [sym_break_statement] = STATE(560), + [sym_continue_statement] = STATE(560), + [sym_goto_statement] = STATE(560), + [sym_seh_try_statement] = STATE(560), + [sym_seh_leave_statement] = STATE(560), + [sym_expression] = STATE(4554), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8083), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym__empty_declaration] = STATE(53), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_explicit_function_specifier] = STATE(1833), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(53), + [sym_template_instantiation] = STATE(53), + [sym_operator_cast] = STATE(6888), + [sym__constructor_specifiers] = STATE(1833), + [sym_operator_cast_definition] = STATE(53), + [sym_operator_cast_declaration] = STATE(53), + [sym_constructor_or_destructor_definition] = STATE(53), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(4529), + [sym_namespace_definition] = STATE(53), + [sym_namespace_alias_definition] = STATE(53), + [sym_using_declaration] = STATE(53), + [sym_alias_declaration] = STATE(53), + [sym_static_assert_declaration] = STATE(53), + [sym_concept_definition] = STATE(53), + [sym_for_range_loop] = STATE(560), + [sym_co_return_statement] = STATE(560), + [sym_co_yield_statement] = STATE(560), + [sym_throw_statement] = STATE(560), + [sym_try_statement] = STATE(560), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5525), + [sym_qualified_identifier] = STATE(3362), + [sym_qualified_type_identifier] = STATE(3059), + [sym_qualified_operator_cast_identifier] = STATE(6888), + [sym_operator_name] = STATE(6145), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_preproc_if_repeat1] = STATE(53), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(158), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1833), [sym_identifier] = ACTIONS(864), [aux_sym_preproc_include_token1] = ACTIONS(169), [aux_sym_preproc_def_token1] = ACTIONS(171), @@ -45567,133 +45850,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [55] = { - [sym__block_item] = STATE(47), - [sym_preproc_include] = STATE(47), - [sym_preproc_def] = STATE(47), - [sym_preproc_function_def] = STATE(47), - [sym_preproc_call] = STATE(47), - [sym_preproc_if] = STATE(47), - [sym_preproc_ifdef] = STATE(47), - [sym_function_definition] = STATE(47), - [sym_declaration] = STATE(47), - [sym_type_definition] = STATE(47), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(4599), - [sym_linkage_specification] = STATE(47), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(860), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_call_modifier] = STATE(1924), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6331), - [sym_array_declarator] = STATE(5998), - [sym_compound_statement] = STATE(545), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2758), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(761), - [sym_statement] = STATE(47), - [sym_labeled_statement] = STATE(545), - [sym_expression_statement] = STATE(545), - [sym_if_statement] = STATE(545), - [sym_switch_statement] = STATE(545), - [sym_case_statement] = STATE(545), - [sym_while_statement] = STATE(545), - [sym_do_statement] = STATE(545), - [sym_for_statement] = STATE(545), - [sym_return_statement] = STATE(545), - [sym_break_statement] = STATE(545), - [sym_continue_statement] = STATE(545), - [sym_goto_statement] = STATE(545), - [sym_seh_try_statement] = STATE(545), - [sym_seh_leave_statement] = STATE(545), - [sym_expression] = STATE(4457), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8711), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym__empty_declaration] = STATE(47), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_explicit_function_specifier] = STATE(1800), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(47), - [sym_template_instantiation] = STATE(47), - [sym_operator_cast] = STATE(6799), - [sym__constructor_specifiers] = STATE(1800), - [sym_operator_cast_definition] = STATE(47), - [sym_operator_cast_declaration] = STATE(47), - [sym_constructor_or_destructor_definition] = STATE(47), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(4494), - [sym_namespace_definition] = STATE(47), - [sym_namespace_alias_definition] = STATE(47), - [sym_using_declaration] = STATE(47), - [sym_alias_declaration] = STATE(47), - [sym_static_assert_declaration] = STATE(47), - [sym_concept_definition] = STATE(47), - [sym_for_range_loop] = STATE(545), - [sym_co_return_statement] = STATE(545), - [sym_co_yield_statement] = STATE(545), - [sym_throw_statement] = STATE(545), - [sym_try_statement] = STATE(545), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5460), - [sym_qualified_identifier] = STATE(3281), - [sym_qualified_type_identifier] = STATE(3109), - [sym_qualified_operator_cast_identifier] = STATE(6799), - [sym_operator_name] = STATE(5998), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_preproc_if_repeat1] = STATE(47), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(140), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1800), + [sym__block_item] = STATE(56), + [sym_preproc_include] = STATE(56), + [sym_preproc_def] = STATE(56), + [sym_preproc_function_def] = STATE(56), + [sym_preproc_call] = STATE(56), + [sym_preproc_if] = STATE(56), + [sym_preproc_ifdef] = STATE(56), + [sym_function_definition] = STATE(56), + [sym_declaration] = STATE(56), + [sym_type_definition] = STATE(56), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(4646), + [sym_linkage_specification] = STATE(56), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(859), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_call_modifier] = STATE(1956), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6395), + [sym_array_declarator] = STATE(6145), + [sym_compound_statement] = STATE(560), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2764), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(768), + [sym_statement] = STATE(56), + [sym_labeled_statement] = STATE(560), + [sym_expression_statement] = STATE(560), + [sym_if_statement] = STATE(560), + [sym_switch_statement] = STATE(560), + [sym_case_statement] = STATE(560), + [sym_while_statement] = STATE(560), + [sym_do_statement] = STATE(560), + [sym_for_statement] = STATE(560), + [sym_return_statement] = STATE(560), + [sym_break_statement] = STATE(560), + [sym_continue_statement] = STATE(560), + [sym_goto_statement] = STATE(560), + [sym_seh_try_statement] = STATE(560), + [sym_seh_leave_statement] = STATE(560), + [sym_expression] = STATE(4554), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8083), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym__empty_declaration] = STATE(56), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_explicit_function_specifier] = STATE(1833), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(56), + [sym_template_instantiation] = STATE(56), + [sym_operator_cast] = STATE(6888), + [sym__constructor_specifiers] = STATE(1833), + [sym_operator_cast_definition] = STATE(56), + [sym_operator_cast_declaration] = STATE(56), + [sym_constructor_or_destructor_definition] = STATE(56), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(4529), + [sym_namespace_definition] = STATE(56), + [sym_namespace_alias_definition] = STATE(56), + [sym_using_declaration] = STATE(56), + [sym_alias_declaration] = STATE(56), + [sym_static_assert_declaration] = STATE(56), + [sym_concept_definition] = STATE(56), + [sym_for_range_loop] = STATE(560), + [sym_co_return_statement] = STATE(560), + [sym_co_yield_statement] = STATE(560), + [sym_throw_statement] = STATE(560), + [sym_try_statement] = STATE(560), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5525), + [sym_qualified_identifier] = STATE(3362), + [sym_qualified_type_identifier] = STATE(3059), + [sym_qualified_operator_cast_identifier] = STATE(6888), + [sym_operator_name] = STATE(6145), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_preproc_if_repeat1] = STATE(56), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(158), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1833), [sym_identifier] = ACTIONS(864), [aux_sym_preproc_include_token1] = ACTIONS(169), [aux_sym_preproc_def_token1] = ACTIONS(171), @@ -45830,133 +46113,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [56] = { - [sym__block_item] = STATE(57), - [sym_preproc_include] = STATE(57), - [sym_preproc_def] = STATE(57), - [sym_preproc_function_def] = STATE(57), - [sym_preproc_call] = STATE(57), - [sym_preproc_if] = STATE(57), - [sym_preproc_ifdef] = STATE(57), - [sym_function_definition] = STATE(57), - [sym_declaration] = STATE(57), - [sym_type_definition] = STATE(57), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(4599), - [sym_linkage_specification] = STATE(57), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(860), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_call_modifier] = STATE(1924), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6331), - [sym_array_declarator] = STATE(5998), - [sym_compound_statement] = STATE(545), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2758), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(761), - [sym_statement] = STATE(57), - [sym_labeled_statement] = STATE(545), - [sym_expression_statement] = STATE(545), - [sym_if_statement] = STATE(545), - [sym_switch_statement] = STATE(545), - [sym_case_statement] = STATE(545), - [sym_while_statement] = STATE(545), - [sym_do_statement] = STATE(545), - [sym_for_statement] = STATE(545), - [sym_return_statement] = STATE(545), - [sym_break_statement] = STATE(545), - [sym_continue_statement] = STATE(545), - [sym_goto_statement] = STATE(545), - [sym_seh_try_statement] = STATE(545), - [sym_seh_leave_statement] = STATE(545), - [sym_expression] = STATE(4457), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8711), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym__empty_declaration] = STATE(57), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_explicit_function_specifier] = STATE(1800), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(57), - [sym_template_instantiation] = STATE(57), - [sym_operator_cast] = STATE(6799), - [sym__constructor_specifiers] = STATE(1800), - [sym_operator_cast_definition] = STATE(57), - [sym_operator_cast_declaration] = STATE(57), - [sym_constructor_or_destructor_definition] = STATE(57), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(4494), - [sym_namespace_definition] = STATE(57), - [sym_namespace_alias_definition] = STATE(57), - [sym_using_declaration] = STATE(57), - [sym_alias_declaration] = STATE(57), - [sym_static_assert_declaration] = STATE(57), - [sym_concept_definition] = STATE(57), - [sym_for_range_loop] = STATE(545), - [sym_co_return_statement] = STATE(545), - [sym_co_yield_statement] = STATE(545), - [sym_throw_statement] = STATE(545), - [sym_try_statement] = STATE(545), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5460), - [sym_qualified_identifier] = STATE(3281), - [sym_qualified_type_identifier] = STATE(3109), - [sym_qualified_operator_cast_identifier] = STATE(6799), - [sym_operator_name] = STATE(5998), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_preproc_if_repeat1] = STATE(57), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(140), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1800), + [sym__block_item] = STATE(53), + [sym_preproc_include] = STATE(53), + [sym_preproc_def] = STATE(53), + [sym_preproc_function_def] = STATE(53), + [sym_preproc_call] = STATE(53), + [sym_preproc_if] = STATE(53), + [sym_preproc_ifdef] = STATE(53), + [sym_function_definition] = STATE(53), + [sym_declaration] = STATE(53), + [sym_type_definition] = STATE(53), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(4646), + [sym_linkage_specification] = STATE(53), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(859), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_call_modifier] = STATE(1956), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6395), + [sym_array_declarator] = STATE(6145), + [sym_compound_statement] = STATE(560), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2764), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(768), + [sym_statement] = STATE(53), + [sym_labeled_statement] = STATE(560), + [sym_expression_statement] = STATE(560), + [sym_if_statement] = STATE(560), + [sym_switch_statement] = STATE(560), + [sym_case_statement] = STATE(560), + [sym_while_statement] = STATE(560), + [sym_do_statement] = STATE(560), + [sym_for_statement] = STATE(560), + [sym_return_statement] = STATE(560), + [sym_break_statement] = STATE(560), + [sym_continue_statement] = STATE(560), + [sym_goto_statement] = STATE(560), + [sym_seh_try_statement] = STATE(560), + [sym_seh_leave_statement] = STATE(560), + [sym_expression] = STATE(4554), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8083), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym__empty_declaration] = STATE(53), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_explicit_function_specifier] = STATE(1833), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(53), + [sym_template_instantiation] = STATE(53), + [sym_operator_cast] = STATE(6888), + [sym__constructor_specifiers] = STATE(1833), + [sym_operator_cast_definition] = STATE(53), + [sym_operator_cast_declaration] = STATE(53), + [sym_constructor_or_destructor_definition] = STATE(53), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(4529), + [sym_namespace_definition] = STATE(53), + [sym_namespace_alias_definition] = STATE(53), + [sym_using_declaration] = STATE(53), + [sym_alias_declaration] = STATE(53), + [sym_static_assert_declaration] = STATE(53), + [sym_concept_definition] = STATE(53), + [sym_for_range_loop] = STATE(560), + [sym_co_return_statement] = STATE(560), + [sym_co_yield_statement] = STATE(560), + [sym_throw_statement] = STATE(560), + [sym_try_statement] = STATE(560), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5525), + [sym_qualified_identifier] = STATE(3362), + [sym_qualified_type_identifier] = STATE(3059), + [sym_qualified_operator_cast_identifier] = STATE(6888), + [sym_operator_name] = STATE(6145), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_preproc_if_repeat1] = STATE(53), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(158), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1833), [sym_identifier] = ACTIONS(864), [aux_sym_preproc_include_token1] = ACTIONS(169), [aux_sym_preproc_def_token1] = ACTIONS(171), @@ -46093,133 +46376,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [57] = { - [sym__block_item] = STATE(42), - [sym_preproc_include] = STATE(42), - [sym_preproc_def] = STATE(42), - [sym_preproc_function_def] = STATE(42), - [sym_preproc_call] = STATE(42), - [sym_preproc_if] = STATE(42), - [sym_preproc_ifdef] = STATE(42), - [sym_function_definition] = STATE(42), - [sym_declaration] = STATE(42), - [sym_type_definition] = STATE(42), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(4599), - [sym_linkage_specification] = STATE(42), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(860), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_call_modifier] = STATE(1924), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6331), - [sym_array_declarator] = STATE(5998), - [sym_compound_statement] = STATE(545), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2758), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(761), - [sym_statement] = STATE(42), - [sym_labeled_statement] = STATE(545), - [sym_expression_statement] = STATE(545), - [sym_if_statement] = STATE(545), - [sym_switch_statement] = STATE(545), - [sym_case_statement] = STATE(545), - [sym_while_statement] = STATE(545), - [sym_do_statement] = STATE(545), - [sym_for_statement] = STATE(545), - [sym_return_statement] = STATE(545), - [sym_break_statement] = STATE(545), - [sym_continue_statement] = STATE(545), - [sym_goto_statement] = STATE(545), - [sym_seh_try_statement] = STATE(545), - [sym_seh_leave_statement] = STATE(545), - [sym_expression] = STATE(4457), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8711), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym__empty_declaration] = STATE(42), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_explicit_function_specifier] = STATE(1800), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(42), - [sym_template_instantiation] = STATE(42), - [sym_operator_cast] = STATE(6799), - [sym__constructor_specifiers] = STATE(1800), - [sym_operator_cast_definition] = STATE(42), - [sym_operator_cast_declaration] = STATE(42), - [sym_constructor_or_destructor_definition] = STATE(42), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(4494), - [sym_namespace_definition] = STATE(42), - [sym_namespace_alias_definition] = STATE(42), - [sym_using_declaration] = STATE(42), - [sym_alias_declaration] = STATE(42), - [sym_static_assert_declaration] = STATE(42), - [sym_concept_definition] = STATE(42), - [sym_for_range_loop] = STATE(545), - [sym_co_return_statement] = STATE(545), - [sym_co_yield_statement] = STATE(545), - [sym_throw_statement] = STATE(545), - [sym_try_statement] = STATE(545), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5460), - [sym_qualified_identifier] = STATE(3281), - [sym_qualified_type_identifier] = STATE(3109), - [sym_qualified_operator_cast_identifier] = STATE(6799), - [sym_operator_name] = STATE(5998), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_preproc_if_repeat1] = STATE(42), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(140), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1800), + [sym__block_item] = STATE(58), + [sym_preproc_include] = STATE(58), + [sym_preproc_def] = STATE(58), + [sym_preproc_function_def] = STATE(58), + [sym_preproc_call] = STATE(58), + [sym_preproc_if] = STATE(58), + [sym_preproc_ifdef] = STATE(58), + [sym_function_definition] = STATE(58), + [sym_declaration] = STATE(58), + [sym_type_definition] = STATE(58), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(4646), + [sym_linkage_specification] = STATE(58), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(859), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_call_modifier] = STATE(1956), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6395), + [sym_array_declarator] = STATE(6145), + [sym_compound_statement] = STATE(560), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2764), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(768), + [sym_statement] = STATE(58), + [sym_labeled_statement] = STATE(560), + [sym_expression_statement] = STATE(560), + [sym_if_statement] = STATE(560), + [sym_switch_statement] = STATE(560), + [sym_case_statement] = STATE(560), + [sym_while_statement] = STATE(560), + [sym_do_statement] = STATE(560), + [sym_for_statement] = STATE(560), + [sym_return_statement] = STATE(560), + [sym_break_statement] = STATE(560), + [sym_continue_statement] = STATE(560), + [sym_goto_statement] = STATE(560), + [sym_seh_try_statement] = STATE(560), + [sym_seh_leave_statement] = STATE(560), + [sym_expression] = STATE(4554), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8083), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym__empty_declaration] = STATE(58), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_explicit_function_specifier] = STATE(1833), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(58), + [sym_template_instantiation] = STATE(58), + [sym_operator_cast] = STATE(6888), + [sym__constructor_specifiers] = STATE(1833), + [sym_operator_cast_definition] = STATE(58), + [sym_operator_cast_declaration] = STATE(58), + [sym_constructor_or_destructor_definition] = STATE(58), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(4529), + [sym_namespace_definition] = STATE(58), + [sym_namespace_alias_definition] = STATE(58), + [sym_using_declaration] = STATE(58), + [sym_alias_declaration] = STATE(58), + [sym_static_assert_declaration] = STATE(58), + [sym_concept_definition] = STATE(58), + [sym_for_range_loop] = STATE(560), + [sym_co_return_statement] = STATE(560), + [sym_co_yield_statement] = STATE(560), + [sym_throw_statement] = STATE(560), + [sym_try_statement] = STATE(560), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5525), + [sym_qualified_identifier] = STATE(3362), + [sym_qualified_type_identifier] = STATE(3059), + [sym_qualified_operator_cast_identifier] = STATE(6888), + [sym_operator_name] = STATE(6145), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_preproc_if_repeat1] = STATE(58), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(158), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1833), [sym_identifier] = ACTIONS(864), [aux_sym_preproc_include_token1] = ACTIONS(169), [aux_sym_preproc_def_token1] = ACTIONS(171), @@ -46356,133 +46639,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [58] = { - [sym__block_item] = STATE(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_declaration] = STATE(48), - [sym_type_definition] = STATE(48), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(4599), - [sym_linkage_specification] = STATE(48), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(860), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_call_modifier] = STATE(1924), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6331), - [sym_array_declarator] = STATE(5998), - [sym_compound_statement] = STATE(545), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2758), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(761), - [sym_statement] = STATE(48), - [sym_labeled_statement] = STATE(545), - [sym_expression_statement] = STATE(545), - [sym_if_statement] = STATE(545), - [sym_switch_statement] = STATE(545), - [sym_case_statement] = STATE(545), - [sym_while_statement] = STATE(545), - [sym_do_statement] = STATE(545), - [sym_for_statement] = STATE(545), - [sym_return_statement] = STATE(545), - [sym_break_statement] = STATE(545), - [sym_continue_statement] = STATE(545), - [sym_goto_statement] = STATE(545), - [sym_seh_try_statement] = STATE(545), - [sym_seh_leave_statement] = STATE(545), - [sym_expression] = STATE(4457), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8711), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym__empty_declaration] = STATE(48), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_explicit_function_specifier] = STATE(1800), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(48), - [sym_template_instantiation] = STATE(48), - [sym_operator_cast] = STATE(6799), - [sym__constructor_specifiers] = STATE(1800), - [sym_operator_cast_definition] = STATE(48), - [sym_operator_cast_declaration] = STATE(48), - [sym_constructor_or_destructor_definition] = STATE(48), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(4494), - [sym_namespace_definition] = STATE(48), - [sym_namespace_alias_definition] = STATE(48), - [sym_using_declaration] = STATE(48), - [sym_alias_declaration] = STATE(48), - [sym_static_assert_declaration] = STATE(48), - [sym_concept_definition] = STATE(48), - [sym_for_range_loop] = STATE(545), - [sym_co_return_statement] = STATE(545), - [sym_co_yield_statement] = STATE(545), - [sym_throw_statement] = STATE(545), - [sym_try_statement] = STATE(545), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5460), - [sym_qualified_identifier] = STATE(3281), - [sym_qualified_type_identifier] = STATE(3109), - [sym_qualified_operator_cast_identifier] = STATE(6799), - [sym_operator_name] = STATE(5998), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_preproc_if_repeat1] = STATE(48), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(140), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1800), + [sym__block_item] = STATE(53), + [sym_preproc_include] = STATE(53), + [sym_preproc_def] = STATE(53), + [sym_preproc_function_def] = STATE(53), + [sym_preproc_call] = STATE(53), + [sym_preproc_if] = STATE(53), + [sym_preproc_ifdef] = STATE(53), + [sym_function_definition] = STATE(53), + [sym_declaration] = STATE(53), + [sym_type_definition] = STATE(53), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(4646), + [sym_linkage_specification] = STATE(53), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(859), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_call_modifier] = STATE(1956), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6395), + [sym_array_declarator] = STATE(6145), + [sym_compound_statement] = STATE(560), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2764), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(768), + [sym_statement] = STATE(53), + [sym_labeled_statement] = STATE(560), + [sym_expression_statement] = STATE(560), + [sym_if_statement] = STATE(560), + [sym_switch_statement] = STATE(560), + [sym_case_statement] = STATE(560), + [sym_while_statement] = STATE(560), + [sym_do_statement] = STATE(560), + [sym_for_statement] = STATE(560), + [sym_return_statement] = STATE(560), + [sym_break_statement] = STATE(560), + [sym_continue_statement] = STATE(560), + [sym_goto_statement] = STATE(560), + [sym_seh_try_statement] = STATE(560), + [sym_seh_leave_statement] = STATE(560), + [sym_expression] = STATE(4554), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8083), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym__empty_declaration] = STATE(53), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_explicit_function_specifier] = STATE(1833), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(53), + [sym_template_instantiation] = STATE(53), + [sym_operator_cast] = STATE(6888), + [sym__constructor_specifiers] = STATE(1833), + [sym_operator_cast_definition] = STATE(53), + [sym_operator_cast_declaration] = STATE(53), + [sym_constructor_or_destructor_definition] = STATE(53), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(4529), + [sym_namespace_definition] = STATE(53), + [sym_namespace_alias_definition] = STATE(53), + [sym_using_declaration] = STATE(53), + [sym_alias_declaration] = STATE(53), + [sym_static_assert_declaration] = STATE(53), + [sym_concept_definition] = STATE(53), + [sym_for_range_loop] = STATE(560), + [sym_co_return_statement] = STATE(560), + [sym_co_yield_statement] = STATE(560), + [sym_throw_statement] = STATE(560), + [sym_try_statement] = STATE(560), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5525), + [sym_qualified_identifier] = STATE(3362), + [sym_qualified_type_identifier] = STATE(3059), + [sym_qualified_operator_cast_identifier] = STATE(6888), + [sym_operator_name] = STATE(6145), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_preproc_if_repeat1] = STATE(53), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(158), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1833), [sym_identifier] = ACTIONS(864), [aux_sym_preproc_include_token1] = ACTIONS(169), [aux_sym_preproc_def_token1] = ACTIONS(171), @@ -46629,123 +46912,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(60), [sym_declaration] = STATE(60), [sym_type_definition] = STATE(60), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(4599), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(4646), [sym_linkage_specification] = STATE(60), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(860), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_call_modifier] = STATE(1924), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6331), - [sym_array_declarator] = STATE(5998), - [sym_compound_statement] = STATE(545), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2758), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(761), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(859), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_call_modifier] = STATE(1956), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6395), + [sym_array_declarator] = STATE(6145), + [sym_compound_statement] = STATE(560), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2764), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(768), [sym_statement] = STATE(60), - [sym_labeled_statement] = STATE(545), - [sym_expression_statement] = STATE(545), - [sym_if_statement] = STATE(545), - [sym_switch_statement] = STATE(545), - [sym_case_statement] = STATE(545), - [sym_while_statement] = STATE(545), - [sym_do_statement] = STATE(545), - [sym_for_statement] = STATE(545), - [sym_return_statement] = STATE(545), - [sym_break_statement] = STATE(545), - [sym_continue_statement] = STATE(545), - [sym_goto_statement] = STATE(545), - [sym_seh_try_statement] = STATE(545), - [sym_seh_leave_statement] = STATE(545), - [sym_expression] = STATE(4457), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8711), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), + [sym_labeled_statement] = STATE(560), + [sym_expression_statement] = STATE(560), + [sym_if_statement] = STATE(560), + [sym_switch_statement] = STATE(560), + [sym_case_statement] = STATE(560), + [sym_while_statement] = STATE(560), + [sym_do_statement] = STATE(560), + [sym_for_statement] = STATE(560), + [sym_return_statement] = STATE(560), + [sym_break_statement] = STATE(560), + [sym_continue_statement] = STATE(560), + [sym_goto_statement] = STATE(560), + [sym_seh_try_statement] = STATE(560), + [sym_seh_leave_statement] = STATE(560), + [sym_expression] = STATE(4554), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8083), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), [sym__empty_declaration] = STATE(60), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_explicit_function_specifier] = STATE(1800), - [sym_dependent_type] = STATE(2523), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_explicit_function_specifier] = STATE(1833), + [sym_dependent_type] = STATE(2558), [sym_template_declaration] = STATE(60), [sym_template_instantiation] = STATE(60), - [sym_operator_cast] = STATE(6799), - [sym__constructor_specifiers] = STATE(1800), + [sym_operator_cast] = STATE(6888), + [sym__constructor_specifiers] = STATE(1833), [sym_operator_cast_definition] = STATE(60), [sym_operator_cast_declaration] = STATE(60), [sym_constructor_or_destructor_definition] = STATE(60), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(4494), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(4529), [sym_namespace_definition] = STATE(60), [sym_namespace_alias_definition] = STATE(60), [sym_using_declaration] = STATE(60), [sym_alias_declaration] = STATE(60), [sym_static_assert_declaration] = STATE(60), [sym_concept_definition] = STATE(60), - [sym_for_range_loop] = STATE(545), - [sym_co_return_statement] = STATE(545), - [sym_co_yield_statement] = STATE(545), - [sym_throw_statement] = STATE(545), - [sym_try_statement] = STATE(545), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5460), - [sym_qualified_identifier] = STATE(3281), - [sym_qualified_type_identifier] = STATE(3109), - [sym_qualified_operator_cast_identifier] = STATE(6799), - [sym_operator_name] = STATE(5998), - [sym_user_defined_literal] = STATE(3242), + [sym_for_range_loop] = STATE(560), + [sym_co_return_statement] = STATE(560), + [sym_co_yield_statement] = STATE(560), + [sym_throw_statement] = STATE(560), + [sym_try_statement] = STATE(560), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5525), + [sym_qualified_identifier] = STATE(3362), + [sym_qualified_type_identifier] = STATE(3059), + [sym_qualified_operator_cast_identifier] = STATE(6888), + [sym_operator_name] = STATE(6145), + [sym_user_defined_literal] = STATE(3323), [aux_sym_preproc_if_repeat1] = STATE(60), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(140), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1800), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(158), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1833), [sym_identifier] = ACTIONS(864), [aux_sym_preproc_include_token1] = ACTIONS(169), [aux_sym_preproc_def_token1] = ACTIONS(171), @@ -46882,133 +47165,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [60] = { - [sym__block_item] = STATE(42), - [sym_preproc_include] = STATE(42), - [sym_preproc_def] = STATE(42), - [sym_preproc_function_def] = STATE(42), - [sym_preproc_call] = STATE(42), - [sym_preproc_if] = STATE(42), - [sym_preproc_ifdef] = STATE(42), - [sym_function_definition] = STATE(42), - [sym_declaration] = STATE(42), - [sym_type_definition] = STATE(42), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(4599), - [sym_linkage_specification] = STATE(42), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(860), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_call_modifier] = STATE(1924), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6331), - [sym_array_declarator] = STATE(5998), - [sym_compound_statement] = STATE(545), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2758), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(761), - [sym_statement] = STATE(42), - [sym_labeled_statement] = STATE(545), - [sym_expression_statement] = STATE(545), - [sym_if_statement] = STATE(545), - [sym_switch_statement] = STATE(545), - [sym_case_statement] = STATE(545), - [sym_while_statement] = STATE(545), - [sym_do_statement] = STATE(545), - [sym_for_statement] = STATE(545), - [sym_return_statement] = STATE(545), - [sym_break_statement] = STATE(545), - [sym_continue_statement] = STATE(545), - [sym_goto_statement] = STATE(545), - [sym_seh_try_statement] = STATE(545), - [sym_seh_leave_statement] = STATE(545), - [sym_expression] = STATE(4457), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8711), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym__empty_declaration] = STATE(42), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_explicit_function_specifier] = STATE(1800), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(42), - [sym_template_instantiation] = STATE(42), - [sym_operator_cast] = STATE(6799), - [sym__constructor_specifiers] = STATE(1800), - [sym_operator_cast_definition] = STATE(42), - [sym_operator_cast_declaration] = STATE(42), - [sym_constructor_or_destructor_definition] = STATE(42), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(4494), - [sym_namespace_definition] = STATE(42), - [sym_namespace_alias_definition] = STATE(42), - [sym_using_declaration] = STATE(42), - [sym_alias_declaration] = STATE(42), - [sym_static_assert_declaration] = STATE(42), - [sym_concept_definition] = STATE(42), - [sym_for_range_loop] = STATE(545), - [sym_co_return_statement] = STATE(545), - [sym_co_yield_statement] = STATE(545), - [sym_throw_statement] = STATE(545), - [sym_try_statement] = STATE(545), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5460), - [sym_qualified_identifier] = STATE(3281), - [sym_qualified_type_identifier] = STATE(3109), - [sym_qualified_operator_cast_identifier] = STATE(6799), - [sym_operator_name] = STATE(5998), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_preproc_if_repeat1] = STATE(42), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(140), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1800), + [sym__block_item] = STATE(53), + [sym_preproc_include] = STATE(53), + [sym_preproc_def] = STATE(53), + [sym_preproc_function_def] = STATE(53), + [sym_preproc_call] = STATE(53), + [sym_preproc_if] = STATE(53), + [sym_preproc_ifdef] = STATE(53), + [sym_function_definition] = STATE(53), + [sym_declaration] = STATE(53), + [sym_type_definition] = STATE(53), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(4646), + [sym_linkage_specification] = STATE(53), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(859), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_call_modifier] = STATE(1956), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6395), + [sym_array_declarator] = STATE(6145), + [sym_compound_statement] = STATE(560), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2764), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(768), + [sym_statement] = STATE(53), + [sym_labeled_statement] = STATE(560), + [sym_expression_statement] = STATE(560), + [sym_if_statement] = STATE(560), + [sym_switch_statement] = STATE(560), + [sym_case_statement] = STATE(560), + [sym_while_statement] = STATE(560), + [sym_do_statement] = STATE(560), + [sym_for_statement] = STATE(560), + [sym_return_statement] = STATE(560), + [sym_break_statement] = STATE(560), + [sym_continue_statement] = STATE(560), + [sym_goto_statement] = STATE(560), + [sym_seh_try_statement] = STATE(560), + [sym_seh_leave_statement] = STATE(560), + [sym_expression] = STATE(4554), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8083), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym__empty_declaration] = STATE(53), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_explicit_function_specifier] = STATE(1833), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(53), + [sym_template_instantiation] = STATE(53), + [sym_operator_cast] = STATE(6888), + [sym__constructor_specifiers] = STATE(1833), + [sym_operator_cast_definition] = STATE(53), + [sym_operator_cast_declaration] = STATE(53), + [sym_constructor_or_destructor_definition] = STATE(53), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(4529), + [sym_namespace_definition] = STATE(53), + [sym_namespace_alias_definition] = STATE(53), + [sym_using_declaration] = STATE(53), + [sym_alias_declaration] = STATE(53), + [sym_static_assert_declaration] = STATE(53), + [sym_concept_definition] = STATE(53), + [sym_for_range_loop] = STATE(560), + [sym_co_return_statement] = STATE(560), + [sym_co_yield_statement] = STATE(560), + [sym_throw_statement] = STATE(560), + [sym_try_statement] = STATE(560), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5525), + [sym_qualified_identifier] = STATE(3362), + [sym_qualified_type_identifier] = STATE(3059), + [sym_qualified_operator_cast_identifier] = STATE(6888), + [sym_operator_name] = STATE(6145), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_preproc_if_repeat1] = STATE(53), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(158), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1833), [sym_identifier] = ACTIONS(864), [aux_sym_preproc_include_token1] = ACTIONS(169), [aux_sym_preproc_def_token1] = ACTIONS(171), @@ -47145,133 +47428,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [61] = { - [sym__block_item] = STATE(62), - [sym_preproc_include] = STATE(62), - [sym_preproc_def] = STATE(62), - [sym_preproc_function_def] = STATE(62), - [sym_preproc_call] = STATE(62), - [sym_preproc_if] = STATE(62), - [sym_preproc_ifdef] = STATE(62), - [sym_function_definition] = STATE(62), - [sym_declaration] = STATE(62), - [sym_type_definition] = STATE(62), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(4599), - [sym_linkage_specification] = STATE(62), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(860), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_call_modifier] = STATE(1924), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6331), - [sym_array_declarator] = STATE(5998), - [sym_compound_statement] = STATE(545), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2758), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(761), - [sym_statement] = STATE(62), - [sym_labeled_statement] = STATE(545), - [sym_expression_statement] = STATE(545), - [sym_if_statement] = STATE(545), - [sym_switch_statement] = STATE(545), - [sym_case_statement] = STATE(545), - [sym_while_statement] = STATE(545), - [sym_do_statement] = STATE(545), - [sym_for_statement] = STATE(545), - [sym_return_statement] = STATE(545), - [sym_break_statement] = STATE(545), - [sym_continue_statement] = STATE(545), - [sym_goto_statement] = STATE(545), - [sym_seh_try_statement] = STATE(545), - [sym_seh_leave_statement] = STATE(545), - [sym_expression] = STATE(4457), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8711), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym__empty_declaration] = STATE(62), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_explicit_function_specifier] = STATE(1800), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(62), - [sym_template_instantiation] = STATE(62), - [sym_operator_cast] = STATE(6799), - [sym__constructor_specifiers] = STATE(1800), - [sym_operator_cast_definition] = STATE(62), - [sym_operator_cast_declaration] = STATE(62), - [sym_constructor_or_destructor_definition] = STATE(62), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(4494), - [sym_namespace_definition] = STATE(62), - [sym_namespace_alias_definition] = STATE(62), - [sym_using_declaration] = STATE(62), - [sym_alias_declaration] = STATE(62), - [sym_static_assert_declaration] = STATE(62), - [sym_concept_definition] = STATE(62), - [sym_for_range_loop] = STATE(545), - [sym_co_return_statement] = STATE(545), - [sym_co_yield_statement] = STATE(545), - [sym_throw_statement] = STATE(545), - [sym_try_statement] = STATE(545), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5460), - [sym_qualified_identifier] = STATE(3281), - [sym_qualified_type_identifier] = STATE(3109), - [sym_qualified_operator_cast_identifier] = STATE(6799), - [sym_operator_name] = STATE(5998), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_preproc_if_repeat1] = STATE(62), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(140), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1800), + [sym__block_item] = STATE(49), + [sym_preproc_include] = STATE(49), + [sym_preproc_def] = STATE(49), + [sym_preproc_function_def] = STATE(49), + [sym_preproc_call] = STATE(49), + [sym_preproc_if] = STATE(49), + [sym_preproc_ifdef] = STATE(49), + [sym_function_definition] = STATE(49), + [sym_declaration] = STATE(49), + [sym_type_definition] = STATE(49), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(4646), + [sym_linkage_specification] = STATE(49), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(859), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_call_modifier] = STATE(1956), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6395), + [sym_array_declarator] = STATE(6145), + [sym_compound_statement] = STATE(560), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2764), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(768), + [sym_statement] = STATE(49), + [sym_labeled_statement] = STATE(560), + [sym_expression_statement] = STATE(560), + [sym_if_statement] = STATE(560), + [sym_switch_statement] = STATE(560), + [sym_case_statement] = STATE(560), + [sym_while_statement] = STATE(560), + [sym_do_statement] = STATE(560), + [sym_for_statement] = STATE(560), + [sym_return_statement] = STATE(560), + [sym_break_statement] = STATE(560), + [sym_continue_statement] = STATE(560), + [sym_goto_statement] = STATE(560), + [sym_seh_try_statement] = STATE(560), + [sym_seh_leave_statement] = STATE(560), + [sym_expression] = STATE(4554), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8083), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym__empty_declaration] = STATE(49), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_explicit_function_specifier] = STATE(1833), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(49), + [sym_template_instantiation] = STATE(49), + [sym_operator_cast] = STATE(6888), + [sym__constructor_specifiers] = STATE(1833), + [sym_operator_cast_definition] = STATE(49), + [sym_operator_cast_declaration] = STATE(49), + [sym_constructor_or_destructor_definition] = STATE(49), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(4529), + [sym_namespace_definition] = STATE(49), + [sym_namespace_alias_definition] = STATE(49), + [sym_using_declaration] = STATE(49), + [sym_alias_declaration] = STATE(49), + [sym_static_assert_declaration] = STATE(49), + [sym_concept_definition] = STATE(49), + [sym_for_range_loop] = STATE(560), + [sym_co_return_statement] = STATE(560), + [sym_co_yield_statement] = STATE(560), + [sym_throw_statement] = STATE(560), + [sym_try_statement] = STATE(560), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5525), + [sym_qualified_identifier] = STATE(3362), + [sym_qualified_type_identifier] = STATE(3059), + [sym_qualified_operator_cast_identifier] = STATE(6888), + [sym_operator_name] = STATE(6145), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_preproc_if_repeat1] = STATE(49), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(158), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1833), [sym_identifier] = ACTIONS(864), [aux_sym_preproc_include_token1] = ACTIONS(169), [aux_sym_preproc_def_token1] = ACTIONS(171), @@ -47408,133 +47691,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [62] = { - [sym__block_item] = STATE(42), - [sym_preproc_include] = STATE(42), - [sym_preproc_def] = STATE(42), - [sym_preproc_function_def] = STATE(42), - [sym_preproc_call] = STATE(42), - [sym_preproc_if] = STATE(42), - [sym_preproc_ifdef] = STATE(42), - [sym_function_definition] = STATE(42), - [sym_declaration] = STATE(42), - [sym_type_definition] = STATE(42), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(4599), - [sym_linkage_specification] = STATE(42), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(860), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_call_modifier] = STATE(1924), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6331), - [sym_array_declarator] = STATE(5998), - [sym_compound_statement] = STATE(545), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2758), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(761), - [sym_statement] = STATE(42), - [sym_labeled_statement] = STATE(545), - [sym_expression_statement] = STATE(545), - [sym_if_statement] = STATE(545), - [sym_switch_statement] = STATE(545), - [sym_case_statement] = STATE(545), - [sym_while_statement] = STATE(545), - [sym_do_statement] = STATE(545), - [sym_for_statement] = STATE(545), - [sym_return_statement] = STATE(545), - [sym_break_statement] = STATE(545), - [sym_continue_statement] = STATE(545), - [sym_goto_statement] = STATE(545), - [sym_seh_try_statement] = STATE(545), - [sym_seh_leave_statement] = STATE(545), - [sym_expression] = STATE(4457), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8711), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym__empty_declaration] = STATE(42), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_explicit_function_specifier] = STATE(1800), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(42), - [sym_template_instantiation] = STATE(42), - [sym_operator_cast] = STATE(6799), - [sym__constructor_specifiers] = STATE(1800), - [sym_operator_cast_definition] = STATE(42), - [sym_operator_cast_declaration] = STATE(42), - [sym_constructor_or_destructor_definition] = STATE(42), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(4494), - [sym_namespace_definition] = STATE(42), - [sym_namespace_alias_definition] = STATE(42), - [sym_using_declaration] = STATE(42), - [sym_alias_declaration] = STATE(42), - [sym_static_assert_declaration] = STATE(42), - [sym_concept_definition] = STATE(42), - [sym_for_range_loop] = STATE(545), - [sym_co_return_statement] = STATE(545), - [sym_co_yield_statement] = STATE(545), - [sym_throw_statement] = STATE(545), - [sym_try_statement] = STATE(545), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5460), - [sym_qualified_identifier] = STATE(3281), - [sym_qualified_type_identifier] = STATE(3109), - [sym_qualified_operator_cast_identifier] = STATE(6799), - [sym_operator_name] = STATE(5998), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_preproc_if_repeat1] = STATE(42), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(140), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1800), + [sym__block_item] = STATE(63), + [sym_preproc_include] = STATE(63), + [sym_preproc_def] = STATE(63), + [sym_preproc_function_def] = STATE(63), + [sym_preproc_call] = STATE(63), + [sym_preproc_if] = STATE(63), + [sym_preproc_ifdef] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_declaration] = STATE(63), + [sym_type_definition] = STATE(63), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(4646), + [sym_linkage_specification] = STATE(63), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(859), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_call_modifier] = STATE(1956), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6395), + [sym_array_declarator] = STATE(6145), + [sym_compound_statement] = STATE(560), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2764), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(768), + [sym_statement] = STATE(63), + [sym_labeled_statement] = STATE(560), + [sym_expression_statement] = STATE(560), + [sym_if_statement] = STATE(560), + [sym_switch_statement] = STATE(560), + [sym_case_statement] = STATE(560), + [sym_while_statement] = STATE(560), + [sym_do_statement] = STATE(560), + [sym_for_statement] = STATE(560), + [sym_return_statement] = STATE(560), + [sym_break_statement] = STATE(560), + [sym_continue_statement] = STATE(560), + [sym_goto_statement] = STATE(560), + [sym_seh_try_statement] = STATE(560), + [sym_seh_leave_statement] = STATE(560), + [sym_expression] = STATE(4554), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8083), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym__empty_declaration] = STATE(63), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_explicit_function_specifier] = STATE(1833), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(63), + [sym_template_instantiation] = STATE(63), + [sym_operator_cast] = STATE(6888), + [sym__constructor_specifiers] = STATE(1833), + [sym_operator_cast_definition] = STATE(63), + [sym_operator_cast_declaration] = STATE(63), + [sym_constructor_or_destructor_definition] = STATE(63), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(4529), + [sym_namespace_definition] = STATE(63), + [sym_namespace_alias_definition] = STATE(63), + [sym_using_declaration] = STATE(63), + [sym_alias_declaration] = STATE(63), + [sym_static_assert_declaration] = STATE(63), + [sym_concept_definition] = STATE(63), + [sym_for_range_loop] = STATE(560), + [sym_co_return_statement] = STATE(560), + [sym_co_yield_statement] = STATE(560), + [sym_throw_statement] = STATE(560), + [sym_try_statement] = STATE(560), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5525), + [sym_qualified_identifier] = STATE(3362), + [sym_qualified_type_identifier] = STATE(3059), + [sym_qualified_operator_cast_identifier] = STATE(6888), + [sym_operator_name] = STATE(6145), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_preproc_if_repeat1] = STATE(63), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(158), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1833), [sym_identifier] = ACTIONS(864), [aux_sym_preproc_include_token1] = ACTIONS(169), [aux_sym_preproc_def_token1] = ACTIONS(171), @@ -47671,139 +47954,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [63] = { - [sym__block_item] = STATE(551), - [sym_preproc_include] = STATE(551), - [sym_preproc_def] = STATE(551), - [sym_preproc_function_def] = STATE(551), - [sym_preproc_call] = STATE(551), - [sym_preproc_if] = STATE(551), - [sym_preproc_ifdef] = STATE(551), - [sym_function_definition] = STATE(551), - [sym_declaration] = STATE(551), - [sym_type_definition] = STATE(551), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(4748), - [sym_linkage_specification] = STATE(551), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(860), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_call_modifier] = STATE(1925), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6326), - [sym_array_declarator] = STATE(5998), - [sym_compound_statement] = STATE(401), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2748), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(543), - [sym_statement] = STATE(551), - [sym_labeled_statement] = STATE(401), - [sym_expression_statement] = STATE(401), - [sym_if_statement] = STATE(401), - [sym_switch_statement] = STATE(401), - [sym_case_statement] = STATE(401), - [sym_while_statement] = STATE(401), - [sym_do_statement] = STATE(401), - [sym_for_statement] = STATE(401), - [sym_return_statement] = STATE(401), - [sym_break_statement] = STATE(401), - [sym_continue_statement] = STATE(401), - [sym_goto_statement] = STATE(401), - [sym_seh_try_statement] = STATE(401), - [sym_seh_leave_statement] = STATE(401), - [sym_expression] = STATE(4552), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8450), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym__empty_declaration] = STATE(551), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_explicit_function_specifier] = STATE(1831), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(551), - [sym_template_instantiation] = STATE(551), - [sym_operator_cast] = STATE(6833), - [sym__constructor_specifiers] = STATE(1831), - [sym_operator_cast_definition] = STATE(551), - [sym_operator_cast_declaration] = STATE(551), - [sym_constructor_or_destructor_definition] = STATE(551), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(4494), - [sym_namespace_definition] = STATE(551), - [sym_namespace_alias_definition] = STATE(551), - [sym_using_declaration] = STATE(551), - [sym_alias_declaration] = STATE(551), - [sym_static_assert_declaration] = STATE(551), - [sym_concept_definition] = STATE(551), - [sym_for_range_loop] = STATE(401), - [sym_co_return_statement] = STATE(401), - [sym_co_yield_statement] = STATE(401), - [sym_throw_statement] = STATE(401), - [sym_try_statement] = STATE(401), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5460), - [sym_qualified_identifier] = STATE(3281), - [sym_qualified_type_identifier] = STATE(3109), - [sym_qualified_operator_cast_identifier] = STATE(6833), - [sym_operator_name] = STATE(5998), - [sym_user_defined_literal] = STATE(3242), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(145), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1831), - [sym_identifier] = ACTIONS(1192), - [aux_sym_preproc_include_token1] = ACTIONS(9), - [aux_sym_preproc_def_token1] = ACTIONS(11), - [aux_sym_preproc_if_token1] = ACTIONS(13), - [aux_sym_preproc_ifdef_token1] = ACTIONS(15), - [aux_sym_preproc_ifdef_token2] = ACTIONS(15), - [sym_preproc_directive] = ACTIONS(17), + [sym__block_item] = STATE(53), + [sym_preproc_include] = STATE(53), + [sym_preproc_def] = STATE(53), + [sym_preproc_function_def] = STATE(53), + [sym_preproc_call] = STATE(53), + [sym_preproc_if] = STATE(53), + [sym_preproc_ifdef] = STATE(53), + [sym_function_definition] = STATE(53), + [sym_declaration] = STATE(53), + [sym_type_definition] = STATE(53), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(4646), + [sym_linkage_specification] = STATE(53), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(859), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_call_modifier] = STATE(1956), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6395), + [sym_array_declarator] = STATE(6145), + [sym_compound_statement] = STATE(560), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2764), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(768), + [sym_statement] = STATE(53), + [sym_labeled_statement] = STATE(560), + [sym_expression_statement] = STATE(560), + [sym_if_statement] = STATE(560), + [sym_switch_statement] = STATE(560), + [sym_case_statement] = STATE(560), + [sym_while_statement] = STATE(560), + [sym_do_statement] = STATE(560), + [sym_for_statement] = STATE(560), + [sym_return_statement] = STATE(560), + [sym_break_statement] = STATE(560), + [sym_continue_statement] = STATE(560), + [sym_goto_statement] = STATE(560), + [sym_seh_try_statement] = STATE(560), + [sym_seh_leave_statement] = STATE(560), + [sym_expression] = STATE(4554), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8083), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym__empty_declaration] = STATE(53), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_explicit_function_specifier] = STATE(1833), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(53), + [sym_template_instantiation] = STATE(53), + [sym_operator_cast] = STATE(6888), + [sym__constructor_specifiers] = STATE(1833), + [sym_operator_cast_definition] = STATE(53), + [sym_operator_cast_declaration] = STATE(53), + [sym_constructor_or_destructor_definition] = STATE(53), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(4529), + [sym_namespace_definition] = STATE(53), + [sym_namespace_alias_definition] = STATE(53), + [sym_using_declaration] = STATE(53), + [sym_alias_declaration] = STATE(53), + [sym_static_assert_declaration] = STATE(53), + [sym_concept_definition] = STATE(53), + [sym_for_range_loop] = STATE(560), + [sym_co_return_statement] = STATE(560), + [sym_co_yield_statement] = STATE(560), + [sym_throw_statement] = STATE(560), + [sym_try_statement] = STATE(560), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5525), + [sym_qualified_identifier] = STATE(3362), + [sym_qualified_type_identifier] = STATE(3059), + [sym_qualified_operator_cast_identifier] = STATE(6888), + [sym_operator_name] = STATE(6145), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_preproc_if_repeat1] = STATE(53), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(158), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1833), + [sym_identifier] = ACTIONS(864), + [aux_sym_preproc_include_token1] = ACTIONS(169), + [aux_sym_preproc_def_token1] = ACTIONS(171), + [aux_sym_preproc_if_token1] = ACTIONS(175), + [aux_sym_preproc_ifdef_token1] = ACTIONS(177), + [aux_sym_preproc_ifdef_token2] = ACTIONS(177), + [sym_preproc_directive] = ACTIONS(179), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -47812,14 +48096,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(1194), - [anon_sym___extension__] = ACTIONS(35), - [anon_sym_typedef] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(181), + [anon_sym___extension__] = ACTIONS(183), + [anon_sym_typedef] = ACTIONS(185), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(41), + [anon_sym_extern] = ACTIONS(187), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(45), + [anon_sym_using] = ACTIONS(189), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -47830,7 +48114,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(1196), + [anon_sym_LBRACE] = ACTIONS(866), + [anon_sym_RBRACE] = ACTIONS(1192), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -47838,7 +48123,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(65), + [anon_sym_inline] = ACTIONS(197), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -47863,19 +48148,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(75), [anon_sym_struct] = ACTIONS(77), [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(81), - [anon_sym_switch] = ACTIONS(83), - [anon_sym_case] = ACTIONS(85), - [anon_sym_default] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_do] = ACTIONS(91), - [anon_sym_for] = ACTIONS(93), - [anon_sym_return] = ACTIONS(95), - [anon_sym_break] = ACTIONS(97), - [anon_sym_continue] = ACTIONS(99), - [anon_sym_goto] = ACTIONS(101), - [anon_sym___try] = ACTIONS(1198), - [anon_sym___leave] = ACTIONS(1200), + [anon_sym_if] = ACTIONS(199), + [anon_sym_switch] = ACTIONS(201), + [anon_sym_case] = ACTIONS(203), + [anon_sym_default] = ACTIONS(205), + [anon_sym_while] = ACTIONS(207), + [anon_sym_do] = ACTIONS(209), + [anon_sym_for] = ACTIONS(211), + [anon_sym_return] = ACTIONS(213), + [anon_sym_break] = ACTIONS(215), + [anon_sym_continue] = ACTIONS(217), + [anon_sym_goto] = ACTIONS(219), + [anon_sym___try] = ACTIONS(221), + [anon_sym___leave] = ACTIONS(223), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -47911,18 +48196,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_decltype] = ACTIONS(127), [anon_sym_explicit] = ACTIONS(129), [anon_sym_typename] = ACTIONS(131), - [anon_sym_module] = ACTIONS(1202), - [anon_sym_import] = ACTIONS(1204), - [anon_sym_template] = ACTIONS(139), + [anon_sym_template] = ACTIONS(231), [anon_sym_operator] = ACTIONS(141), - [anon_sym_try] = ACTIONS(143), + [anon_sym_try] = ACTIONS(233), [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(147), - [anon_sym_namespace] = ACTIONS(149), - [anon_sym_static_assert] = ACTIONS(151), - [anon_sym_concept] = ACTIONS(153), - [anon_sym_co_return] = ACTIONS(155), - [anon_sym_co_yield] = ACTIONS(157), + [anon_sym_throw] = ACTIONS(235), + [anon_sym_namespace] = ACTIONS(237), + [anon_sym_static_assert] = ACTIONS(239), + [anon_sym_concept] = ACTIONS(241), + [anon_sym_co_return] = ACTIONS(243), + [anon_sym_co_yield] = ACTIONS(245), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), @@ -47934,133 +48217,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [64] = { - [sym__block_item] = STATE(65), - [sym_preproc_include] = STATE(65), - [sym_preproc_def] = STATE(65), - [sym_preproc_function_def] = STATE(65), - [sym_preproc_call] = STATE(65), - [sym_preproc_if] = STATE(65), - [sym_preproc_ifdef] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_declaration] = STATE(65), - [sym_type_definition] = STATE(65), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(4599), - [sym_linkage_specification] = STATE(65), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(860), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_call_modifier] = STATE(1924), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6331), - [sym_array_declarator] = STATE(5998), - [sym_compound_statement] = STATE(545), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2758), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(761), - [sym_statement] = STATE(65), - [sym_labeled_statement] = STATE(545), - [sym_expression_statement] = STATE(545), - [sym_if_statement] = STATE(545), - [sym_switch_statement] = STATE(545), - [sym_case_statement] = STATE(545), - [sym_while_statement] = STATE(545), - [sym_do_statement] = STATE(545), - [sym_for_statement] = STATE(545), - [sym_return_statement] = STATE(545), - [sym_break_statement] = STATE(545), - [sym_continue_statement] = STATE(545), - [sym_goto_statement] = STATE(545), - [sym_seh_try_statement] = STATE(545), - [sym_seh_leave_statement] = STATE(545), - [sym_expression] = STATE(4457), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8711), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym__empty_declaration] = STATE(65), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_explicit_function_specifier] = STATE(1800), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(65), - [sym_template_instantiation] = STATE(65), - [sym_operator_cast] = STATE(6799), - [sym__constructor_specifiers] = STATE(1800), - [sym_operator_cast_definition] = STATE(65), - [sym_operator_cast_declaration] = STATE(65), - [sym_constructor_or_destructor_definition] = STATE(65), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(4494), - [sym_namespace_definition] = STATE(65), - [sym_namespace_alias_definition] = STATE(65), - [sym_using_declaration] = STATE(65), - [sym_alias_declaration] = STATE(65), - [sym_static_assert_declaration] = STATE(65), - [sym_concept_definition] = STATE(65), - [sym_for_range_loop] = STATE(545), - [sym_co_return_statement] = STATE(545), - [sym_co_yield_statement] = STATE(545), - [sym_throw_statement] = STATE(545), - [sym_try_statement] = STATE(545), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5460), - [sym_qualified_identifier] = STATE(3281), - [sym_qualified_type_identifier] = STATE(3109), - [sym_qualified_operator_cast_identifier] = STATE(6799), - [sym_operator_name] = STATE(5998), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_preproc_if_repeat1] = STATE(65), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(140), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1800), + [sym__block_item] = STATE(69), + [sym_preproc_include] = STATE(69), + [sym_preproc_def] = STATE(69), + [sym_preproc_function_def] = STATE(69), + [sym_preproc_call] = STATE(69), + [sym_preproc_if] = STATE(69), + [sym_preproc_ifdef] = STATE(69), + [sym_function_definition] = STATE(69), + [sym_declaration] = STATE(69), + [sym_type_definition] = STATE(69), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(4646), + [sym_linkage_specification] = STATE(69), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(859), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_call_modifier] = STATE(1956), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6395), + [sym_array_declarator] = STATE(6145), + [sym_compound_statement] = STATE(560), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2764), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(768), + [sym_statement] = STATE(69), + [sym_labeled_statement] = STATE(560), + [sym_expression_statement] = STATE(560), + [sym_if_statement] = STATE(560), + [sym_switch_statement] = STATE(560), + [sym_case_statement] = STATE(560), + [sym_while_statement] = STATE(560), + [sym_do_statement] = STATE(560), + [sym_for_statement] = STATE(560), + [sym_return_statement] = STATE(560), + [sym_break_statement] = STATE(560), + [sym_continue_statement] = STATE(560), + [sym_goto_statement] = STATE(560), + [sym_seh_try_statement] = STATE(560), + [sym_seh_leave_statement] = STATE(560), + [sym_expression] = STATE(4554), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8083), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym__empty_declaration] = STATE(69), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_explicit_function_specifier] = STATE(1833), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(69), + [sym_template_instantiation] = STATE(69), + [sym_operator_cast] = STATE(6888), + [sym__constructor_specifiers] = STATE(1833), + [sym_operator_cast_definition] = STATE(69), + [sym_operator_cast_declaration] = STATE(69), + [sym_constructor_or_destructor_definition] = STATE(69), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(4529), + [sym_namespace_definition] = STATE(69), + [sym_namespace_alias_definition] = STATE(69), + [sym_using_declaration] = STATE(69), + [sym_alias_declaration] = STATE(69), + [sym_static_assert_declaration] = STATE(69), + [sym_concept_definition] = STATE(69), + [sym_for_range_loop] = STATE(560), + [sym_co_return_statement] = STATE(560), + [sym_co_yield_statement] = STATE(560), + [sym_throw_statement] = STATE(560), + [sym_try_statement] = STATE(560), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5525), + [sym_qualified_identifier] = STATE(3362), + [sym_qualified_type_identifier] = STATE(3059), + [sym_qualified_operator_cast_identifier] = STATE(6888), + [sym_operator_name] = STATE(6145), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_preproc_if_repeat1] = STATE(69), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(158), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1833), [sym_identifier] = ACTIONS(864), [aux_sym_preproc_include_token1] = ACTIONS(169), [aux_sym_preproc_def_token1] = ACTIONS(171), @@ -48095,7 +48378,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), [anon_sym_LBRACE] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(1206), + [anon_sym_RBRACE] = ACTIONS(1194), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -48197,133 +48480,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [65] = { - [sym__block_item] = STATE(42), - [sym_preproc_include] = STATE(42), - [sym_preproc_def] = STATE(42), - [sym_preproc_function_def] = STATE(42), - [sym_preproc_call] = STATE(42), - [sym_preproc_if] = STATE(42), - [sym_preproc_ifdef] = STATE(42), - [sym_function_definition] = STATE(42), - [sym_declaration] = STATE(42), - [sym_type_definition] = STATE(42), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(4599), - [sym_linkage_specification] = STATE(42), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(860), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_call_modifier] = STATE(1924), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6331), - [sym_array_declarator] = STATE(5998), - [sym_compound_statement] = STATE(545), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2758), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(761), - [sym_statement] = STATE(42), - [sym_labeled_statement] = STATE(545), - [sym_expression_statement] = STATE(545), - [sym_if_statement] = STATE(545), - [sym_switch_statement] = STATE(545), - [sym_case_statement] = STATE(545), - [sym_while_statement] = STATE(545), - [sym_do_statement] = STATE(545), - [sym_for_statement] = STATE(545), - [sym_return_statement] = STATE(545), - [sym_break_statement] = STATE(545), - [sym_continue_statement] = STATE(545), - [sym_goto_statement] = STATE(545), - [sym_seh_try_statement] = STATE(545), - [sym_seh_leave_statement] = STATE(545), - [sym_expression] = STATE(4457), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8711), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym__empty_declaration] = STATE(42), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_explicit_function_specifier] = STATE(1800), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(42), - [sym_template_instantiation] = STATE(42), - [sym_operator_cast] = STATE(6799), - [sym__constructor_specifiers] = STATE(1800), - [sym_operator_cast_definition] = STATE(42), - [sym_operator_cast_declaration] = STATE(42), - [sym_constructor_or_destructor_definition] = STATE(42), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(4494), - [sym_namespace_definition] = STATE(42), - [sym_namespace_alias_definition] = STATE(42), - [sym_using_declaration] = STATE(42), - [sym_alias_declaration] = STATE(42), - [sym_static_assert_declaration] = STATE(42), - [sym_concept_definition] = STATE(42), - [sym_for_range_loop] = STATE(545), - [sym_co_return_statement] = STATE(545), - [sym_co_yield_statement] = STATE(545), - [sym_throw_statement] = STATE(545), - [sym_try_statement] = STATE(545), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5460), - [sym_qualified_identifier] = STATE(3281), - [sym_qualified_type_identifier] = STATE(3109), - [sym_qualified_operator_cast_identifier] = STATE(6799), - [sym_operator_name] = STATE(5998), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_preproc_if_repeat1] = STATE(42), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(140), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1800), + [sym__block_item] = STATE(66), + [sym_preproc_include] = STATE(66), + [sym_preproc_def] = STATE(66), + [sym_preproc_function_def] = STATE(66), + [sym_preproc_call] = STATE(66), + [sym_preproc_if] = STATE(66), + [sym_preproc_ifdef] = STATE(66), + [sym_function_definition] = STATE(66), + [sym_declaration] = STATE(66), + [sym_type_definition] = STATE(66), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(4646), + [sym_linkage_specification] = STATE(66), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(859), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_call_modifier] = STATE(1956), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6395), + [sym_array_declarator] = STATE(6145), + [sym_compound_statement] = STATE(560), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2764), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(768), + [sym_statement] = STATE(66), + [sym_labeled_statement] = STATE(560), + [sym_expression_statement] = STATE(560), + [sym_if_statement] = STATE(560), + [sym_switch_statement] = STATE(560), + [sym_case_statement] = STATE(560), + [sym_while_statement] = STATE(560), + [sym_do_statement] = STATE(560), + [sym_for_statement] = STATE(560), + [sym_return_statement] = STATE(560), + [sym_break_statement] = STATE(560), + [sym_continue_statement] = STATE(560), + [sym_goto_statement] = STATE(560), + [sym_seh_try_statement] = STATE(560), + [sym_seh_leave_statement] = STATE(560), + [sym_expression] = STATE(4554), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8083), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym__empty_declaration] = STATE(66), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_explicit_function_specifier] = STATE(1833), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(66), + [sym_template_instantiation] = STATE(66), + [sym_operator_cast] = STATE(6888), + [sym__constructor_specifiers] = STATE(1833), + [sym_operator_cast_definition] = STATE(66), + [sym_operator_cast_declaration] = STATE(66), + [sym_constructor_or_destructor_definition] = STATE(66), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(4529), + [sym_namespace_definition] = STATE(66), + [sym_namespace_alias_definition] = STATE(66), + [sym_using_declaration] = STATE(66), + [sym_alias_declaration] = STATE(66), + [sym_static_assert_declaration] = STATE(66), + [sym_concept_definition] = STATE(66), + [sym_for_range_loop] = STATE(560), + [sym_co_return_statement] = STATE(560), + [sym_co_yield_statement] = STATE(560), + [sym_throw_statement] = STATE(560), + [sym_try_statement] = STATE(560), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5525), + [sym_qualified_identifier] = STATE(3362), + [sym_qualified_type_identifier] = STATE(3059), + [sym_qualified_operator_cast_identifier] = STATE(6888), + [sym_operator_name] = STATE(6145), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_preproc_if_repeat1] = STATE(66), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(158), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1833), [sym_identifier] = ACTIONS(864), [aux_sym_preproc_include_token1] = ACTIONS(169), [aux_sym_preproc_def_token1] = ACTIONS(171), @@ -48358,7 +48641,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), [anon_sym_LBRACE] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(1208), + [anon_sym_RBRACE] = ACTIONS(1196), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -48460,133 +48743,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [66] = { - [sym__block_item] = STATE(67), - [sym_preproc_include] = STATE(67), - [sym_preproc_def] = STATE(67), - [sym_preproc_function_def] = STATE(67), - [sym_preproc_call] = STATE(67), - [sym_preproc_if] = STATE(67), - [sym_preproc_ifdef] = STATE(67), - [sym_function_definition] = STATE(67), - [sym_declaration] = STATE(67), - [sym_type_definition] = STATE(67), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(4599), - [sym_linkage_specification] = STATE(67), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(860), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_call_modifier] = STATE(1924), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6331), - [sym_array_declarator] = STATE(5998), - [sym_compound_statement] = STATE(545), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2758), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(761), - [sym_statement] = STATE(67), - [sym_labeled_statement] = STATE(545), - [sym_expression_statement] = STATE(545), - [sym_if_statement] = STATE(545), - [sym_switch_statement] = STATE(545), - [sym_case_statement] = STATE(545), - [sym_while_statement] = STATE(545), - [sym_do_statement] = STATE(545), - [sym_for_statement] = STATE(545), - [sym_return_statement] = STATE(545), - [sym_break_statement] = STATE(545), - [sym_continue_statement] = STATE(545), - [sym_goto_statement] = STATE(545), - [sym_seh_try_statement] = STATE(545), - [sym_seh_leave_statement] = STATE(545), - [sym_expression] = STATE(4457), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8711), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym__empty_declaration] = STATE(67), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_explicit_function_specifier] = STATE(1800), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(67), - [sym_template_instantiation] = STATE(67), - [sym_operator_cast] = STATE(6799), - [sym__constructor_specifiers] = STATE(1800), - [sym_operator_cast_definition] = STATE(67), - [sym_operator_cast_declaration] = STATE(67), - [sym_constructor_or_destructor_definition] = STATE(67), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(4494), - [sym_namespace_definition] = STATE(67), - [sym_namespace_alias_definition] = STATE(67), - [sym_using_declaration] = STATE(67), - [sym_alias_declaration] = STATE(67), - [sym_static_assert_declaration] = STATE(67), - [sym_concept_definition] = STATE(67), - [sym_for_range_loop] = STATE(545), - [sym_co_return_statement] = STATE(545), - [sym_co_yield_statement] = STATE(545), - [sym_throw_statement] = STATE(545), - [sym_try_statement] = STATE(545), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5460), - [sym_qualified_identifier] = STATE(3281), - [sym_qualified_type_identifier] = STATE(3109), - [sym_qualified_operator_cast_identifier] = STATE(6799), - [sym_operator_name] = STATE(5998), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_preproc_if_repeat1] = STATE(67), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(140), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1800), + [sym__block_item] = STATE(53), + [sym_preproc_include] = STATE(53), + [sym_preproc_def] = STATE(53), + [sym_preproc_function_def] = STATE(53), + [sym_preproc_call] = STATE(53), + [sym_preproc_if] = STATE(53), + [sym_preproc_ifdef] = STATE(53), + [sym_function_definition] = STATE(53), + [sym_declaration] = STATE(53), + [sym_type_definition] = STATE(53), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(4646), + [sym_linkage_specification] = STATE(53), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(859), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_call_modifier] = STATE(1956), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6395), + [sym_array_declarator] = STATE(6145), + [sym_compound_statement] = STATE(560), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2764), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(768), + [sym_statement] = STATE(53), + [sym_labeled_statement] = STATE(560), + [sym_expression_statement] = STATE(560), + [sym_if_statement] = STATE(560), + [sym_switch_statement] = STATE(560), + [sym_case_statement] = STATE(560), + [sym_while_statement] = STATE(560), + [sym_do_statement] = STATE(560), + [sym_for_statement] = STATE(560), + [sym_return_statement] = STATE(560), + [sym_break_statement] = STATE(560), + [sym_continue_statement] = STATE(560), + [sym_goto_statement] = STATE(560), + [sym_seh_try_statement] = STATE(560), + [sym_seh_leave_statement] = STATE(560), + [sym_expression] = STATE(4554), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8083), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym__empty_declaration] = STATE(53), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_explicit_function_specifier] = STATE(1833), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(53), + [sym_template_instantiation] = STATE(53), + [sym_operator_cast] = STATE(6888), + [sym__constructor_specifiers] = STATE(1833), + [sym_operator_cast_definition] = STATE(53), + [sym_operator_cast_declaration] = STATE(53), + [sym_constructor_or_destructor_definition] = STATE(53), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(4529), + [sym_namespace_definition] = STATE(53), + [sym_namespace_alias_definition] = STATE(53), + [sym_using_declaration] = STATE(53), + [sym_alias_declaration] = STATE(53), + [sym_static_assert_declaration] = STATE(53), + [sym_concept_definition] = STATE(53), + [sym_for_range_loop] = STATE(560), + [sym_co_return_statement] = STATE(560), + [sym_co_yield_statement] = STATE(560), + [sym_throw_statement] = STATE(560), + [sym_try_statement] = STATE(560), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5525), + [sym_qualified_identifier] = STATE(3362), + [sym_qualified_type_identifier] = STATE(3059), + [sym_qualified_operator_cast_identifier] = STATE(6888), + [sym_operator_name] = STATE(6145), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_preproc_if_repeat1] = STATE(53), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(158), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1833), [sym_identifier] = ACTIONS(864), [aux_sym_preproc_include_token1] = ACTIONS(169), [aux_sym_preproc_def_token1] = ACTIONS(171), @@ -48621,7 +48904,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), [anon_sym_LBRACE] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(1210), + [anon_sym_RBRACE] = ACTIONS(1198), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -48723,133 +49006,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [67] = { - [sym__block_item] = STATE(42), - [sym_preproc_include] = STATE(42), - [sym_preproc_def] = STATE(42), - [sym_preproc_function_def] = STATE(42), - [sym_preproc_call] = STATE(42), - [sym_preproc_if] = STATE(42), - [sym_preproc_ifdef] = STATE(42), - [sym_function_definition] = STATE(42), - [sym_declaration] = STATE(42), - [sym_type_definition] = STATE(42), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(4599), - [sym_linkage_specification] = STATE(42), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(860), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_call_modifier] = STATE(1924), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6331), - [sym_array_declarator] = STATE(5998), - [sym_compound_statement] = STATE(545), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2758), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(761), - [sym_statement] = STATE(42), - [sym_labeled_statement] = STATE(545), - [sym_expression_statement] = STATE(545), - [sym_if_statement] = STATE(545), - [sym_switch_statement] = STATE(545), - [sym_case_statement] = STATE(545), - [sym_while_statement] = STATE(545), - [sym_do_statement] = STATE(545), - [sym_for_statement] = STATE(545), - [sym_return_statement] = STATE(545), - [sym_break_statement] = STATE(545), - [sym_continue_statement] = STATE(545), - [sym_goto_statement] = STATE(545), - [sym_seh_try_statement] = STATE(545), - [sym_seh_leave_statement] = STATE(545), - [sym_expression] = STATE(4457), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8711), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym__empty_declaration] = STATE(42), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_explicit_function_specifier] = STATE(1800), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(42), - [sym_template_instantiation] = STATE(42), - [sym_operator_cast] = STATE(6799), - [sym__constructor_specifiers] = STATE(1800), - [sym_operator_cast_definition] = STATE(42), - [sym_operator_cast_declaration] = STATE(42), - [sym_constructor_or_destructor_definition] = STATE(42), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(4494), - [sym_namespace_definition] = STATE(42), - [sym_namespace_alias_definition] = STATE(42), - [sym_using_declaration] = STATE(42), - [sym_alias_declaration] = STATE(42), - [sym_static_assert_declaration] = STATE(42), - [sym_concept_definition] = STATE(42), - [sym_for_range_loop] = STATE(545), - [sym_co_return_statement] = STATE(545), - [sym_co_yield_statement] = STATE(545), - [sym_throw_statement] = STATE(545), - [sym_try_statement] = STATE(545), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5460), - [sym_qualified_identifier] = STATE(3281), - [sym_qualified_type_identifier] = STATE(3109), - [sym_qualified_operator_cast_identifier] = STATE(6799), - [sym_operator_name] = STATE(5998), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_preproc_if_repeat1] = STATE(42), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(140), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1800), + [sym__block_item] = STATE(68), + [sym_preproc_include] = STATE(68), + [sym_preproc_def] = STATE(68), + [sym_preproc_function_def] = STATE(68), + [sym_preproc_call] = STATE(68), + [sym_preproc_if] = STATE(68), + [sym_preproc_ifdef] = STATE(68), + [sym_function_definition] = STATE(68), + [sym_declaration] = STATE(68), + [sym_type_definition] = STATE(68), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(4646), + [sym_linkage_specification] = STATE(68), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(859), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_call_modifier] = STATE(1956), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6395), + [sym_array_declarator] = STATE(6145), + [sym_compound_statement] = STATE(560), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2764), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(768), + [sym_statement] = STATE(68), + [sym_labeled_statement] = STATE(560), + [sym_expression_statement] = STATE(560), + [sym_if_statement] = STATE(560), + [sym_switch_statement] = STATE(560), + [sym_case_statement] = STATE(560), + [sym_while_statement] = STATE(560), + [sym_do_statement] = STATE(560), + [sym_for_statement] = STATE(560), + [sym_return_statement] = STATE(560), + [sym_break_statement] = STATE(560), + [sym_continue_statement] = STATE(560), + [sym_goto_statement] = STATE(560), + [sym_seh_try_statement] = STATE(560), + [sym_seh_leave_statement] = STATE(560), + [sym_expression] = STATE(4554), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8083), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym__empty_declaration] = STATE(68), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_explicit_function_specifier] = STATE(1833), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(68), + [sym_template_instantiation] = STATE(68), + [sym_operator_cast] = STATE(6888), + [sym__constructor_specifiers] = STATE(1833), + [sym_operator_cast_definition] = STATE(68), + [sym_operator_cast_declaration] = STATE(68), + [sym_constructor_or_destructor_definition] = STATE(68), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(4529), + [sym_namespace_definition] = STATE(68), + [sym_namespace_alias_definition] = STATE(68), + [sym_using_declaration] = STATE(68), + [sym_alias_declaration] = STATE(68), + [sym_static_assert_declaration] = STATE(68), + [sym_concept_definition] = STATE(68), + [sym_for_range_loop] = STATE(560), + [sym_co_return_statement] = STATE(560), + [sym_co_yield_statement] = STATE(560), + [sym_throw_statement] = STATE(560), + [sym_try_statement] = STATE(560), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5525), + [sym_qualified_identifier] = STATE(3362), + [sym_qualified_type_identifier] = STATE(3059), + [sym_qualified_operator_cast_identifier] = STATE(6888), + [sym_operator_name] = STATE(6145), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_preproc_if_repeat1] = STATE(68), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(158), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1833), [sym_identifier] = ACTIONS(864), [aux_sym_preproc_include_token1] = ACTIONS(169), [aux_sym_preproc_def_token1] = ACTIONS(171), @@ -48884,7 +49167,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), [anon_sym_LBRACE] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(1212), + [anon_sym_RBRACE] = ACTIONS(1200), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -48986,133 +49269,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [68] = { - [sym__block_item] = STATE(42), - [sym_preproc_include] = STATE(42), - [sym_preproc_def] = STATE(42), - [sym_preproc_function_def] = STATE(42), - [sym_preproc_call] = STATE(42), - [sym_preproc_if] = STATE(42), - [sym_preproc_ifdef] = STATE(42), - [sym_function_definition] = STATE(42), - [sym_declaration] = STATE(42), - [sym_type_definition] = STATE(42), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(4599), - [sym_linkage_specification] = STATE(42), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(860), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_call_modifier] = STATE(1924), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6331), - [sym_array_declarator] = STATE(5998), - [sym_compound_statement] = STATE(545), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2758), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(761), - [sym_statement] = STATE(42), - [sym_labeled_statement] = STATE(545), - [sym_expression_statement] = STATE(545), - [sym_if_statement] = STATE(545), - [sym_switch_statement] = STATE(545), - [sym_case_statement] = STATE(545), - [sym_while_statement] = STATE(545), - [sym_do_statement] = STATE(545), - [sym_for_statement] = STATE(545), - [sym_return_statement] = STATE(545), - [sym_break_statement] = STATE(545), - [sym_continue_statement] = STATE(545), - [sym_goto_statement] = STATE(545), - [sym_seh_try_statement] = STATE(545), - [sym_seh_leave_statement] = STATE(545), - [sym_expression] = STATE(4457), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8711), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym__empty_declaration] = STATE(42), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_explicit_function_specifier] = STATE(1800), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(42), - [sym_template_instantiation] = STATE(42), - [sym_operator_cast] = STATE(6799), - [sym__constructor_specifiers] = STATE(1800), - [sym_operator_cast_definition] = STATE(42), - [sym_operator_cast_declaration] = STATE(42), - [sym_constructor_or_destructor_definition] = STATE(42), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(4494), - [sym_namespace_definition] = STATE(42), - [sym_namespace_alias_definition] = STATE(42), - [sym_using_declaration] = STATE(42), - [sym_alias_declaration] = STATE(42), - [sym_static_assert_declaration] = STATE(42), - [sym_concept_definition] = STATE(42), - [sym_for_range_loop] = STATE(545), - [sym_co_return_statement] = STATE(545), - [sym_co_yield_statement] = STATE(545), - [sym_throw_statement] = STATE(545), - [sym_try_statement] = STATE(545), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5460), - [sym_qualified_identifier] = STATE(3281), - [sym_qualified_type_identifier] = STATE(3109), - [sym_qualified_operator_cast_identifier] = STATE(6799), - [sym_operator_name] = STATE(5998), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_preproc_if_repeat1] = STATE(42), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(140), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1800), + [sym__block_item] = STATE(53), + [sym_preproc_include] = STATE(53), + [sym_preproc_def] = STATE(53), + [sym_preproc_function_def] = STATE(53), + [sym_preproc_call] = STATE(53), + [sym_preproc_if] = STATE(53), + [sym_preproc_ifdef] = STATE(53), + [sym_function_definition] = STATE(53), + [sym_declaration] = STATE(53), + [sym_type_definition] = STATE(53), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(4646), + [sym_linkage_specification] = STATE(53), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(859), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_call_modifier] = STATE(1956), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6395), + [sym_array_declarator] = STATE(6145), + [sym_compound_statement] = STATE(560), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2764), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(768), + [sym_statement] = STATE(53), + [sym_labeled_statement] = STATE(560), + [sym_expression_statement] = STATE(560), + [sym_if_statement] = STATE(560), + [sym_switch_statement] = STATE(560), + [sym_case_statement] = STATE(560), + [sym_while_statement] = STATE(560), + [sym_do_statement] = STATE(560), + [sym_for_statement] = STATE(560), + [sym_return_statement] = STATE(560), + [sym_break_statement] = STATE(560), + [sym_continue_statement] = STATE(560), + [sym_goto_statement] = STATE(560), + [sym_seh_try_statement] = STATE(560), + [sym_seh_leave_statement] = STATE(560), + [sym_expression] = STATE(4554), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8083), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym__empty_declaration] = STATE(53), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_explicit_function_specifier] = STATE(1833), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(53), + [sym_template_instantiation] = STATE(53), + [sym_operator_cast] = STATE(6888), + [sym__constructor_specifiers] = STATE(1833), + [sym_operator_cast_definition] = STATE(53), + [sym_operator_cast_declaration] = STATE(53), + [sym_constructor_or_destructor_definition] = STATE(53), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(4529), + [sym_namespace_definition] = STATE(53), + [sym_namespace_alias_definition] = STATE(53), + [sym_using_declaration] = STATE(53), + [sym_alias_declaration] = STATE(53), + [sym_static_assert_declaration] = STATE(53), + [sym_concept_definition] = STATE(53), + [sym_for_range_loop] = STATE(560), + [sym_co_return_statement] = STATE(560), + [sym_co_yield_statement] = STATE(560), + [sym_throw_statement] = STATE(560), + [sym_try_statement] = STATE(560), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5525), + [sym_qualified_identifier] = STATE(3362), + [sym_qualified_type_identifier] = STATE(3059), + [sym_qualified_operator_cast_identifier] = STATE(6888), + [sym_operator_name] = STATE(6145), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_preproc_if_repeat1] = STATE(53), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(158), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1833), [sym_identifier] = ACTIONS(864), [aux_sym_preproc_include_token1] = ACTIONS(169), [aux_sym_preproc_def_token1] = ACTIONS(171), @@ -49147,7 +49430,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), [anon_sym_LBRACE] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(1214), + [anon_sym_RBRACE] = ACTIONS(1202), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -49249,133 +49532,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [69] = { - [sym__block_item] = STATE(70), - [sym_preproc_include] = STATE(70), - [sym_preproc_def] = STATE(70), - [sym_preproc_function_def] = STATE(70), - [sym_preproc_call] = STATE(70), - [sym_preproc_if] = STATE(70), - [sym_preproc_ifdef] = STATE(70), - [sym_function_definition] = STATE(70), - [sym_declaration] = STATE(70), - [sym_type_definition] = STATE(70), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(4599), - [sym_linkage_specification] = STATE(70), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(860), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_call_modifier] = STATE(1924), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6331), - [sym_array_declarator] = STATE(5998), - [sym_compound_statement] = STATE(545), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2758), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(761), - [sym_statement] = STATE(70), - [sym_labeled_statement] = STATE(545), - [sym_expression_statement] = STATE(545), - [sym_if_statement] = STATE(545), - [sym_switch_statement] = STATE(545), - [sym_case_statement] = STATE(545), - [sym_while_statement] = STATE(545), - [sym_do_statement] = STATE(545), - [sym_for_statement] = STATE(545), - [sym_return_statement] = STATE(545), - [sym_break_statement] = STATE(545), - [sym_continue_statement] = STATE(545), - [sym_goto_statement] = STATE(545), - [sym_seh_try_statement] = STATE(545), - [sym_seh_leave_statement] = STATE(545), - [sym_expression] = STATE(4457), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8711), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym__empty_declaration] = STATE(70), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_explicit_function_specifier] = STATE(1800), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(70), - [sym_template_instantiation] = STATE(70), - [sym_operator_cast] = STATE(6799), - [sym__constructor_specifiers] = STATE(1800), - [sym_operator_cast_definition] = STATE(70), - [sym_operator_cast_declaration] = STATE(70), - [sym_constructor_or_destructor_definition] = STATE(70), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(4494), - [sym_namespace_definition] = STATE(70), - [sym_namespace_alias_definition] = STATE(70), - [sym_using_declaration] = STATE(70), - [sym_alias_declaration] = STATE(70), - [sym_static_assert_declaration] = STATE(70), - [sym_concept_definition] = STATE(70), - [sym_for_range_loop] = STATE(545), - [sym_co_return_statement] = STATE(545), - [sym_co_yield_statement] = STATE(545), - [sym_throw_statement] = STATE(545), - [sym_try_statement] = STATE(545), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5460), - [sym_qualified_identifier] = STATE(3281), - [sym_qualified_type_identifier] = STATE(3109), - [sym_qualified_operator_cast_identifier] = STATE(6799), - [sym_operator_name] = STATE(5998), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_preproc_if_repeat1] = STATE(70), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(140), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1800), + [sym__block_item] = STATE(53), + [sym_preproc_include] = STATE(53), + [sym_preproc_def] = STATE(53), + [sym_preproc_function_def] = STATE(53), + [sym_preproc_call] = STATE(53), + [sym_preproc_if] = STATE(53), + [sym_preproc_ifdef] = STATE(53), + [sym_function_definition] = STATE(53), + [sym_declaration] = STATE(53), + [sym_type_definition] = STATE(53), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(4646), + [sym_linkage_specification] = STATE(53), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(859), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_call_modifier] = STATE(1956), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6395), + [sym_array_declarator] = STATE(6145), + [sym_compound_statement] = STATE(560), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2764), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(768), + [sym_statement] = STATE(53), + [sym_labeled_statement] = STATE(560), + [sym_expression_statement] = STATE(560), + [sym_if_statement] = STATE(560), + [sym_switch_statement] = STATE(560), + [sym_case_statement] = STATE(560), + [sym_while_statement] = STATE(560), + [sym_do_statement] = STATE(560), + [sym_for_statement] = STATE(560), + [sym_return_statement] = STATE(560), + [sym_break_statement] = STATE(560), + [sym_continue_statement] = STATE(560), + [sym_goto_statement] = STATE(560), + [sym_seh_try_statement] = STATE(560), + [sym_seh_leave_statement] = STATE(560), + [sym_expression] = STATE(4554), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8083), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym__empty_declaration] = STATE(53), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_explicit_function_specifier] = STATE(1833), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(53), + [sym_template_instantiation] = STATE(53), + [sym_operator_cast] = STATE(6888), + [sym__constructor_specifiers] = STATE(1833), + [sym_operator_cast_definition] = STATE(53), + [sym_operator_cast_declaration] = STATE(53), + [sym_constructor_or_destructor_definition] = STATE(53), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(4529), + [sym_namespace_definition] = STATE(53), + [sym_namespace_alias_definition] = STATE(53), + [sym_using_declaration] = STATE(53), + [sym_alias_declaration] = STATE(53), + [sym_static_assert_declaration] = STATE(53), + [sym_concept_definition] = STATE(53), + [sym_for_range_loop] = STATE(560), + [sym_co_return_statement] = STATE(560), + [sym_co_yield_statement] = STATE(560), + [sym_throw_statement] = STATE(560), + [sym_try_statement] = STATE(560), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5525), + [sym_qualified_identifier] = STATE(3362), + [sym_qualified_type_identifier] = STATE(3059), + [sym_qualified_operator_cast_identifier] = STATE(6888), + [sym_operator_name] = STATE(6145), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_preproc_if_repeat1] = STATE(53), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(158), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1833), [sym_identifier] = ACTIONS(864), [aux_sym_preproc_include_token1] = ACTIONS(169), [aux_sym_preproc_def_token1] = ACTIONS(171), @@ -49410,7 +49693,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), [anon_sym_LBRACE] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(1216), + [anon_sym_RBRACE] = ACTIONS(1204), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -49512,133 +49795,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [70] = { - [sym__block_item] = STATE(42), - [sym_preproc_include] = STATE(42), - [sym_preproc_def] = STATE(42), - [sym_preproc_function_def] = STATE(42), - [sym_preproc_call] = STATE(42), - [sym_preproc_if] = STATE(42), - [sym_preproc_ifdef] = STATE(42), - [sym_function_definition] = STATE(42), - [sym_declaration] = STATE(42), - [sym_type_definition] = STATE(42), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(4599), - [sym_linkage_specification] = STATE(42), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(860), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_call_modifier] = STATE(1924), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6331), - [sym_array_declarator] = STATE(5998), - [sym_compound_statement] = STATE(545), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2758), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(761), - [sym_statement] = STATE(42), - [sym_labeled_statement] = STATE(545), - [sym_expression_statement] = STATE(545), - [sym_if_statement] = STATE(545), - [sym_switch_statement] = STATE(545), - [sym_case_statement] = STATE(545), - [sym_while_statement] = STATE(545), - [sym_do_statement] = STATE(545), - [sym_for_statement] = STATE(545), - [sym_return_statement] = STATE(545), - [sym_break_statement] = STATE(545), - [sym_continue_statement] = STATE(545), - [sym_goto_statement] = STATE(545), - [sym_seh_try_statement] = STATE(545), - [sym_seh_leave_statement] = STATE(545), - [sym_expression] = STATE(4457), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8711), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym__empty_declaration] = STATE(42), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_explicit_function_specifier] = STATE(1800), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(42), - [sym_template_instantiation] = STATE(42), - [sym_operator_cast] = STATE(6799), - [sym__constructor_specifiers] = STATE(1800), - [sym_operator_cast_definition] = STATE(42), - [sym_operator_cast_declaration] = STATE(42), - [sym_constructor_or_destructor_definition] = STATE(42), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(4494), - [sym_namespace_definition] = STATE(42), - [sym_namespace_alias_definition] = STATE(42), - [sym_using_declaration] = STATE(42), - [sym_alias_declaration] = STATE(42), - [sym_static_assert_declaration] = STATE(42), - [sym_concept_definition] = STATE(42), - [sym_for_range_loop] = STATE(545), - [sym_co_return_statement] = STATE(545), - [sym_co_yield_statement] = STATE(545), - [sym_throw_statement] = STATE(545), - [sym_try_statement] = STATE(545), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5460), - [sym_qualified_identifier] = STATE(3281), - [sym_qualified_type_identifier] = STATE(3109), - [sym_qualified_operator_cast_identifier] = STATE(6799), - [sym_operator_name] = STATE(5998), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_preproc_if_repeat1] = STATE(42), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(140), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1800), + [sym__block_item] = STATE(71), + [sym_preproc_include] = STATE(71), + [sym_preproc_def] = STATE(71), + [sym_preproc_function_def] = STATE(71), + [sym_preproc_call] = STATE(71), + [sym_preproc_if] = STATE(71), + [sym_preproc_ifdef] = STATE(71), + [sym_function_definition] = STATE(71), + [sym_declaration] = STATE(71), + [sym_type_definition] = STATE(71), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(4646), + [sym_linkage_specification] = STATE(71), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(859), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_call_modifier] = STATE(1956), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6395), + [sym_array_declarator] = STATE(6145), + [sym_compound_statement] = STATE(560), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2764), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(768), + [sym_statement] = STATE(71), + [sym_labeled_statement] = STATE(560), + [sym_expression_statement] = STATE(560), + [sym_if_statement] = STATE(560), + [sym_switch_statement] = STATE(560), + [sym_case_statement] = STATE(560), + [sym_while_statement] = STATE(560), + [sym_do_statement] = STATE(560), + [sym_for_statement] = STATE(560), + [sym_return_statement] = STATE(560), + [sym_break_statement] = STATE(560), + [sym_continue_statement] = STATE(560), + [sym_goto_statement] = STATE(560), + [sym_seh_try_statement] = STATE(560), + [sym_seh_leave_statement] = STATE(560), + [sym_expression] = STATE(4554), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8083), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym__empty_declaration] = STATE(71), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_explicit_function_specifier] = STATE(1833), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(71), + [sym_template_instantiation] = STATE(71), + [sym_operator_cast] = STATE(6888), + [sym__constructor_specifiers] = STATE(1833), + [sym_operator_cast_definition] = STATE(71), + [sym_operator_cast_declaration] = STATE(71), + [sym_constructor_or_destructor_definition] = STATE(71), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(4529), + [sym_namespace_definition] = STATE(71), + [sym_namespace_alias_definition] = STATE(71), + [sym_using_declaration] = STATE(71), + [sym_alias_declaration] = STATE(71), + [sym_static_assert_declaration] = STATE(71), + [sym_concept_definition] = STATE(71), + [sym_for_range_loop] = STATE(560), + [sym_co_return_statement] = STATE(560), + [sym_co_yield_statement] = STATE(560), + [sym_throw_statement] = STATE(560), + [sym_try_statement] = STATE(560), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5525), + [sym_qualified_identifier] = STATE(3362), + [sym_qualified_type_identifier] = STATE(3059), + [sym_qualified_operator_cast_identifier] = STATE(6888), + [sym_operator_name] = STATE(6145), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_preproc_if_repeat1] = STATE(71), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(158), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1833), [sym_identifier] = ACTIONS(864), [aux_sym_preproc_include_token1] = ACTIONS(169), [aux_sym_preproc_def_token1] = ACTIONS(171), @@ -49673,7 +49956,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), [anon_sym_LBRACE] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(1218), + [anon_sym_RBRACE] = ACTIONS(1206), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -49775,133 +50058,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [71] = { - [sym__block_item] = STATE(72), - [sym_preproc_include] = STATE(72), - [sym_preproc_def] = STATE(72), - [sym_preproc_function_def] = STATE(72), - [sym_preproc_call] = STATE(72), - [sym_preproc_if] = STATE(72), - [sym_preproc_ifdef] = STATE(72), - [sym_function_definition] = STATE(72), - [sym_declaration] = STATE(72), - [sym_type_definition] = STATE(72), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(4599), - [sym_linkage_specification] = STATE(72), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(860), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_call_modifier] = STATE(1924), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6331), - [sym_array_declarator] = STATE(5998), - [sym_compound_statement] = STATE(545), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2758), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(761), - [sym_statement] = STATE(72), - [sym_labeled_statement] = STATE(545), - [sym_expression_statement] = STATE(545), - [sym_if_statement] = STATE(545), - [sym_switch_statement] = STATE(545), - [sym_case_statement] = STATE(545), - [sym_while_statement] = STATE(545), - [sym_do_statement] = STATE(545), - [sym_for_statement] = STATE(545), - [sym_return_statement] = STATE(545), - [sym_break_statement] = STATE(545), - [sym_continue_statement] = STATE(545), - [sym_goto_statement] = STATE(545), - [sym_seh_try_statement] = STATE(545), - [sym_seh_leave_statement] = STATE(545), - [sym_expression] = STATE(4457), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8711), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym__empty_declaration] = STATE(72), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_explicit_function_specifier] = STATE(1800), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(72), - [sym_template_instantiation] = STATE(72), - [sym_operator_cast] = STATE(6799), - [sym__constructor_specifiers] = STATE(1800), - [sym_operator_cast_definition] = STATE(72), - [sym_operator_cast_declaration] = STATE(72), - [sym_constructor_or_destructor_definition] = STATE(72), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(4494), - [sym_namespace_definition] = STATE(72), - [sym_namespace_alias_definition] = STATE(72), - [sym_using_declaration] = STATE(72), - [sym_alias_declaration] = STATE(72), - [sym_static_assert_declaration] = STATE(72), - [sym_concept_definition] = STATE(72), - [sym_for_range_loop] = STATE(545), - [sym_co_return_statement] = STATE(545), - [sym_co_yield_statement] = STATE(545), - [sym_throw_statement] = STATE(545), - [sym_try_statement] = STATE(545), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5460), - [sym_qualified_identifier] = STATE(3281), - [sym_qualified_type_identifier] = STATE(3109), - [sym_qualified_operator_cast_identifier] = STATE(6799), - [sym_operator_name] = STATE(5998), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_preproc_if_repeat1] = STATE(72), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(140), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1800), + [sym__block_item] = STATE(53), + [sym_preproc_include] = STATE(53), + [sym_preproc_def] = STATE(53), + [sym_preproc_function_def] = STATE(53), + [sym_preproc_call] = STATE(53), + [sym_preproc_if] = STATE(53), + [sym_preproc_ifdef] = STATE(53), + [sym_function_definition] = STATE(53), + [sym_declaration] = STATE(53), + [sym_type_definition] = STATE(53), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(4646), + [sym_linkage_specification] = STATE(53), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(859), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_call_modifier] = STATE(1956), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6395), + [sym_array_declarator] = STATE(6145), + [sym_compound_statement] = STATE(560), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2764), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(768), + [sym_statement] = STATE(53), + [sym_labeled_statement] = STATE(560), + [sym_expression_statement] = STATE(560), + [sym_if_statement] = STATE(560), + [sym_switch_statement] = STATE(560), + [sym_case_statement] = STATE(560), + [sym_while_statement] = STATE(560), + [sym_do_statement] = STATE(560), + [sym_for_statement] = STATE(560), + [sym_return_statement] = STATE(560), + [sym_break_statement] = STATE(560), + [sym_continue_statement] = STATE(560), + [sym_goto_statement] = STATE(560), + [sym_seh_try_statement] = STATE(560), + [sym_seh_leave_statement] = STATE(560), + [sym_expression] = STATE(4554), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8083), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym__empty_declaration] = STATE(53), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_explicit_function_specifier] = STATE(1833), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(53), + [sym_template_instantiation] = STATE(53), + [sym_operator_cast] = STATE(6888), + [sym__constructor_specifiers] = STATE(1833), + [sym_operator_cast_definition] = STATE(53), + [sym_operator_cast_declaration] = STATE(53), + [sym_constructor_or_destructor_definition] = STATE(53), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(4529), + [sym_namespace_definition] = STATE(53), + [sym_namespace_alias_definition] = STATE(53), + [sym_using_declaration] = STATE(53), + [sym_alias_declaration] = STATE(53), + [sym_static_assert_declaration] = STATE(53), + [sym_concept_definition] = STATE(53), + [sym_for_range_loop] = STATE(560), + [sym_co_return_statement] = STATE(560), + [sym_co_yield_statement] = STATE(560), + [sym_throw_statement] = STATE(560), + [sym_try_statement] = STATE(560), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5525), + [sym_qualified_identifier] = STATE(3362), + [sym_qualified_type_identifier] = STATE(3059), + [sym_qualified_operator_cast_identifier] = STATE(6888), + [sym_operator_name] = STATE(6145), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_preproc_if_repeat1] = STATE(53), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(158), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1833), [sym_identifier] = ACTIONS(864), [aux_sym_preproc_include_token1] = ACTIONS(169), [aux_sym_preproc_def_token1] = ACTIONS(171), @@ -49936,7 +50219,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), [anon_sym_LBRACE] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(1220), + [anon_sym_RBRACE] = ACTIONS(1208), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -50038,133 +50321,396 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [72] = { - [sym__block_item] = STATE(42), - [sym_preproc_include] = STATE(42), - [sym_preproc_def] = STATE(42), - [sym_preproc_function_def] = STATE(42), - [sym_preproc_call] = STATE(42), - [sym_preproc_if] = STATE(42), - [sym_preproc_ifdef] = STATE(42), - [sym_function_definition] = STATE(42), - [sym_declaration] = STATE(42), - [sym_type_definition] = STATE(42), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(4599), - [sym_linkage_specification] = STATE(42), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(860), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_call_modifier] = STATE(1924), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6331), - [sym_array_declarator] = STATE(5998), - [sym_compound_statement] = STATE(545), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2758), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(761), - [sym_statement] = STATE(42), - [sym_labeled_statement] = STATE(545), - [sym_expression_statement] = STATE(545), - [sym_if_statement] = STATE(545), - [sym_switch_statement] = STATE(545), - [sym_case_statement] = STATE(545), - [sym_while_statement] = STATE(545), - [sym_do_statement] = STATE(545), - [sym_for_statement] = STATE(545), - [sym_return_statement] = STATE(545), - [sym_break_statement] = STATE(545), - [sym_continue_statement] = STATE(545), - [sym_goto_statement] = STATE(545), - [sym_seh_try_statement] = STATE(545), - [sym_seh_leave_statement] = STATE(545), - [sym_expression] = STATE(4457), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8711), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym__empty_declaration] = STATE(42), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_explicit_function_specifier] = STATE(1800), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(42), - [sym_template_instantiation] = STATE(42), - [sym_operator_cast] = STATE(6799), - [sym__constructor_specifiers] = STATE(1800), - [sym_operator_cast_definition] = STATE(42), - [sym_operator_cast_declaration] = STATE(42), - [sym_constructor_or_destructor_definition] = STATE(42), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(4494), - [sym_namespace_definition] = STATE(42), - [sym_namespace_alias_definition] = STATE(42), - [sym_using_declaration] = STATE(42), - [sym_alias_declaration] = STATE(42), - [sym_static_assert_declaration] = STATE(42), - [sym_concept_definition] = STATE(42), - [sym_for_range_loop] = STATE(545), - [sym_co_return_statement] = STATE(545), - [sym_co_yield_statement] = STATE(545), - [sym_throw_statement] = STATE(545), - [sym_try_statement] = STATE(545), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5460), - [sym_qualified_identifier] = STATE(3281), - [sym_qualified_type_identifier] = STATE(3109), - [sym_qualified_operator_cast_identifier] = STATE(6799), - [sym_operator_name] = STATE(5998), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_preproc_if_repeat1] = STATE(42), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(140), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1800), + [sym__block_item] = STATE(569), + [sym_preproc_include] = STATE(569), + [sym_preproc_def] = STATE(569), + [sym_preproc_function_def] = STATE(569), + [sym_preproc_call] = STATE(569), + [sym_preproc_if] = STATE(569), + [sym_preproc_ifdef] = STATE(569), + [sym_function_definition] = STATE(569), + [sym_declaration] = STATE(569), + [sym_type_definition] = STATE(569), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(4803), + [sym_linkage_specification] = STATE(569), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(859), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_call_modifier] = STATE(1954), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6392), + [sym_array_declarator] = STATE(6145), + [sym_compound_statement] = STATE(409), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2791), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(557), + [sym_statement] = STATE(569), + [sym_labeled_statement] = STATE(409), + [sym_expression_statement] = STATE(409), + [sym_if_statement] = STATE(409), + [sym_switch_statement] = STATE(409), + [sym_case_statement] = STATE(409), + [sym_while_statement] = STATE(409), + [sym_do_statement] = STATE(409), + [sym_for_statement] = STATE(409), + [sym_return_statement] = STATE(409), + [sym_break_statement] = STATE(409), + [sym_continue_statement] = STATE(409), + [sym_goto_statement] = STATE(409), + [sym_seh_try_statement] = STATE(409), + [sym_seh_leave_statement] = STATE(409), + [sym_expression] = STATE(4499), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8264), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym__empty_declaration] = STATE(569), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_explicit_function_specifier] = STATE(1814), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(569), + [sym_template_instantiation] = STATE(569), + [sym_operator_cast] = STATE(6950), + [sym__constructor_specifiers] = STATE(1814), + [sym_operator_cast_definition] = STATE(569), + [sym_operator_cast_declaration] = STATE(569), + [sym_constructor_or_destructor_definition] = STATE(569), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(4529), + [sym_namespace_definition] = STATE(569), + [sym_namespace_alias_definition] = STATE(569), + [sym_using_declaration] = STATE(569), + [sym_alias_declaration] = STATE(569), + [sym_static_assert_declaration] = STATE(569), + [sym_concept_definition] = STATE(569), + [sym_for_range_loop] = STATE(409), + [sym_co_return_statement] = STATE(409), + [sym_co_yield_statement] = STATE(409), + [sym_throw_statement] = STATE(409), + [sym_try_statement] = STATE(409), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5525), + [sym_qualified_identifier] = STATE(3362), + [sym_qualified_type_identifier] = STATE(3059), + [sym_qualified_operator_cast_identifier] = STATE(6950), + [sym_operator_name] = STATE(6145), + [sym_user_defined_literal] = STATE(3323), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(144), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1814), + [sym_identifier] = ACTIONS(1210), + [aux_sym_preproc_include_token1] = ACTIONS(9), + [aux_sym_preproc_def_token1] = ACTIONS(11), + [aux_sym_preproc_if_token1] = ACTIONS(13), + [aux_sym_preproc_ifdef_token1] = ACTIONS(15), + [aux_sym_preproc_ifdef_token2] = ACTIONS(15), + [sym_preproc_directive] = ACTIONS(17), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(1212), + [anon_sym___extension__] = ACTIONS(35), + [anon_sym_typedef] = ACTIONS(37), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(41), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(45), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK_LBRACK] = ACTIONS(49), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_LBRACE] = ACTIONS(1214), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(65), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(69), + [anon_sym__Alignas] = ACTIONS(69), + [sym_primitive_type] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(73), + [anon_sym_class] = ACTIONS(75), + [anon_sym_struct] = ACTIONS(77), + [anon_sym_union] = ACTIONS(79), + [anon_sym_if] = ACTIONS(81), + [anon_sym_switch] = ACTIONS(83), + [anon_sym_case] = ACTIONS(85), + [anon_sym_default] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_do] = ACTIONS(91), + [anon_sym_for] = ACTIONS(93), + [anon_sym_return] = ACTIONS(95), + [anon_sym_break] = ACTIONS(97), + [anon_sym_continue] = ACTIONS(99), + [anon_sym_goto] = ACTIONS(101), + [anon_sym___try] = ACTIONS(1216), + [anon_sym___leave] = ACTIONS(1218), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [anon_sym___alignof__] = ACTIONS(107), + [anon_sym___alignof] = ACTIONS(107), + [anon_sym__alignof] = ACTIONS(107), + [anon_sym_alignof] = ACTIONS(107), + [anon_sym__Alignof] = ACTIONS(107), + [anon_sym_offsetof] = ACTIONS(109), + [anon_sym__Generic] = ACTIONS(111), + [anon_sym_asm] = ACTIONS(113), + [anon_sym___asm__] = ACTIONS(113), + [anon_sym___asm] = ACTIONS(113), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(117), + [anon_sym_u_SQUOTE] = ACTIONS(117), + [anon_sym_U_SQUOTE] = ACTIONS(117), + [anon_sym_u8_SQUOTE] = ACTIONS(117), + [anon_sym_SQUOTE] = ACTIONS(117), + [anon_sym_L_DQUOTE] = ACTIONS(119), + [anon_sym_u_DQUOTE] = ACTIONS(119), + [anon_sym_U_DQUOTE] = ACTIONS(119), + [anon_sym_u8_DQUOTE] = ACTIONS(119), + [anon_sym_DQUOTE] = ACTIONS(119), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(123), + [anon_sym_nullptr] = ACTIONS(123), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(125), + [anon_sym_decltype] = ACTIONS(127), + [anon_sym_explicit] = ACTIONS(129), + [anon_sym_typename] = ACTIONS(131), + [anon_sym_module] = ACTIONS(1220), + [anon_sym_import] = ACTIONS(1222), + [anon_sym_template] = ACTIONS(139), + [anon_sym_operator] = ACTIONS(141), + [anon_sym_try] = ACTIONS(143), + [anon_sym_delete] = ACTIONS(145), + [anon_sym_throw] = ACTIONS(147), + [anon_sym_namespace] = ACTIONS(149), + [anon_sym_static_assert] = ACTIONS(151), + [anon_sym_concept] = ACTIONS(153), + [anon_sym_co_return] = ACTIONS(155), + [anon_sym_co_yield] = ACTIONS(157), + [anon_sym_R_DQUOTE] = ACTIONS(159), + [anon_sym_LR_DQUOTE] = ACTIONS(159), + [anon_sym_uR_DQUOTE] = ACTIONS(159), + [anon_sym_UR_DQUOTE] = ACTIONS(159), + [anon_sym_u8R_DQUOTE] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), + }, + [73] = { + [sym__block_item] = STATE(74), + [sym_preproc_include] = STATE(74), + [sym_preproc_def] = STATE(74), + [sym_preproc_function_def] = STATE(74), + [sym_preproc_call] = STATE(74), + [sym_preproc_if] = STATE(74), + [sym_preproc_ifdef] = STATE(74), + [sym_function_definition] = STATE(74), + [sym_declaration] = STATE(74), + [sym_type_definition] = STATE(74), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(4646), + [sym_linkage_specification] = STATE(74), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(859), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_call_modifier] = STATE(1956), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6395), + [sym_array_declarator] = STATE(6145), + [sym_compound_statement] = STATE(560), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2764), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(768), + [sym_statement] = STATE(74), + [sym_labeled_statement] = STATE(560), + [sym_expression_statement] = STATE(560), + [sym_if_statement] = STATE(560), + [sym_switch_statement] = STATE(560), + [sym_case_statement] = STATE(560), + [sym_while_statement] = STATE(560), + [sym_do_statement] = STATE(560), + [sym_for_statement] = STATE(560), + [sym_return_statement] = STATE(560), + [sym_break_statement] = STATE(560), + [sym_continue_statement] = STATE(560), + [sym_goto_statement] = STATE(560), + [sym_seh_try_statement] = STATE(560), + [sym_seh_leave_statement] = STATE(560), + [sym_expression] = STATE(4554), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8083), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym__empty_declaration] = STATE(74), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_explicit_function_specifier] = STATE(1833), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(74), + [sym_template_instantiation] = STATE(74), + [sym_operator_cast] = STATE(6888), + [sym__constructor_specifiers] = STATE(1833), + [sym_operator_cast_definition] = STATE(74), + [sym_operator_cast_declaration] = STATE(74), + [sym_constructor_or_destructor_definition] = STATE(74), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(4529), + [sym_namespace_definition] = STATE(74), + [sym_namespace_alias_definition] = STATE(74), + [sym_using_declaration] = STATE(74), + [sym_alias_declaration] = STATE(74), + [sym_static_assert_declaration] = STATE(74), + [sym_concept_definition] = STATE(74), + [sym_for_range_loop] = STATE(560), + [sym_co_return_statement] = STATE(560), + [sym_co_yield_statement] = STATE(560), + [sym_throw_statement] = STATE(560), + [sym_try_statement] = STATE(560), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5525), + [sym_qualified_identifier] = STATE(3362), + [sym_qualified_type_identifier] = STATE(3059), + [sym_qualified_operator_cast_identifier] = STATE(6888), + [sym_operator_name] = STATE(6145), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_preproc_if_repeat1] = STATE(74), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(158), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1833), [sym_identifier] = ACTIONS(864), [aux_sym_preproc_include_token1] = ACTIONS(169), [aux_sym_preproc_def_token1] = ACTIONS(171), @@ -50199,7 +50745,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), [anon_sym_LBRACE] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(1222), + [anon_sym_RBRACE] = ACTIONS(1224), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -50300,134 +50846,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [73] = { - [sym__block_item] = STATE(74), - [sym_preproc_include] = STATE(74), - [sym_preproc_def] = STATE(74), - [sym_preproc_function_def] = STATE(74), - [sym_preproc_call] = STATE(74), - [sym_preproc_if] = STATE(74), - [sym_preproc_ifdef] = STATE(74), - [sym_function_definition] = STATE(74), - [sym_declaration] = STATE(74), - [sym_type_definition] = STATE(74), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(4599), - [sym_linkage_specification] = STATE(74), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(860), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_call_modifier] = STATE(1924), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6331), - [sym_array_declarator] = STATE(5998), - [sym_compound_statement] = STATE(545), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2758), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(761), - [sym_statement] = STATE(74), - [sym_labeled_statement] = STATE(545), - [sym_expression_statement] = STATE(545), - [sym_if_statement] = STATE(545), - [sym_switch_statement] = STATE(545), - [sym_case_statement] = STATE(545), - [sym_while_statement] = STATE(545), - [sym_do_statement] = STATE(545), - [sym_for_statement] = STATE(545), - [sym_return_statement] = STATE(545), - [sym_break_statement] = STATE(545), - [sym_continue_statement] = STATE(545), - [sym_goto_statement] = STATE(545), - [sym_seh_try_statement] = STATE(545), - [sym_seh_leave_statement] = STATE(545), - [sym_expression] = STATE(4457), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8711), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym__empty_declaration] = STATE(74), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_explicit_function_specifier] = STATE(1800), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(74), - [sym_template_instantiation] = STATE(74), - [sym_operator_cast] = STATE(6799), - [sym__constructor_specifiers] = STATE(1800), - [sym_operator_cast_definition] = STATE(74), - [sym_operator_cast_declaration] = STATE(74), - [sym_constructor_or_destructor_definition] = STATE(74), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(4494), - [sym_namespace_definition] = STATE(74), - [sym_namespace_alias_definition] = STATE(74), - [sym_using_declaration] = STATE(74), - [sym_alias_declaration] = STATE(74), - [sym_static_assert_declaration] = STATE(74), - [sym_concept_definition] = STATE(74), - [sym_for_range_loop] = STATE(545), - [sym_co_return_statement] = STATE(545), - [sym_co_yield_statement] = STATE(545), - [sym_throw_statement] = STATE(545), - [sym_try_statement] = STATE(545), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5460), - [sym_qualified_identifier] = STATE(3281), - [sym_qualified_type_identifier] = STATE(3109), - [sym_qualified_operator_cast_identifier] = STATE(6799), - [sym_operator_name] = STATE(5998), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_preproc_if_repeat1] = STATE(74), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(140), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1800), + [74] = { + [sym__block_item] = STATE(53), + [sym_preproc_include] = STATE(53), + [sym_preproc_def] = STATE(53), + [sym_preproc_function_def] = STATE(53), + [sym_preproc_call] = STATE(53), + [sym_preproc_if] = STATE(53), + [sym_preproc_ifdef] = STATE(53), + [sym_function_definition] = STATE(53), + [sym_declaration] = STATE(53), + [sym_type_definition] = STATE(53), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(4646), + [sym_linkage_specification] = STATE(53), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(859), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_call_modifier] = STATE(1956), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6395), + [sym_array_declarator] = STATE(6145), + [sym_compound_statement] = STATE(560), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2764), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(768), + [sym_statement] = STATE(53), + [sym_labeled_statement] = STATE(560), + [sym_expression_statement] = STATE(560), + [sym_if_statement] = STATE(560), + [sym_switch_statement] = STATE(560), + [sym_case_statement] = STATE(560), + [sym_while_statement] = STATE(560), + [sym_do_statement] = STATE(560), + [sym_for_statement] = STATE(560), + [sym_return_statement] = STATE(560), + [sym_break_statement] = STATE(560), + [sym_continue_statement] = STATE(560), + [sym_goto_statement] = STATE(560), + [sym_seh_try_statement] = STATE(560), + [sym_seh_leave_statement] = STATE(560), + [sym_expression] = STATE(4554), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8083), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym__empty_declaration] = STATE(53), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_explicit_function_specifier] = STATE(1833), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(53), + [sym_template_instantiation] = STATE(53), + [sym_operator_cast] = STATE(6888), + [sym__constructor_specifiers] = STATE(1833), + [sym_operator_cast_definition] = STATE(53), + [sym_operator_cast_declaration] = STATE(53), + [sym_constructor_or_destructor_definition] = STATE(53), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(4529), + [sym_namespace_definition] = STATE(53), + [sym_namespace_alias_definition] = STATE(53), + [sym_using_declaration] = STATE(53), + [sym_alias_declaration] = STATE(53), + [sym_static_assert_declaration] = STATE(53), + [sym_concept_definition] = STATE(53), + [sym_for_range_loop] = STATE(560), + [sym_co_return_statement] = STATE(560), + [sym_co_yield_statement] = STATE(560), + [sym_throw_statement] = STATE(560), + [sym_try_statement] = STATE(560), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5525), + [sym_qualified_identifier] = STATE(3362), + [sym_qualified_type_identifier] = STATE(3059), + [sym_qualified_operator_cast_identifier] = STATE(6888), + [sym_operator_name] = STATE(6145), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_preproc_if_repeat1] = STATE(53), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(158), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1833), [sym_identifier] = ACTIONS(864), [aux_sym_preproc_include_token1] = ACTIONS(169), [aux_sym_preproc_def_token1] = ACTIONS(171), @@ -50462,7 +51008,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), [anon_sym_LBRACE] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(1224), + [anon_sym_RBRACE] = ACTIONS(1226), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -50563,134 +51109,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [74] = { - [sym__block_item] = STATE(42), - [sym_preproc_include] = STATE(42), - [sym_preproc_def] = STATE(42), - [sym_preproc_function_def] = STATE(42), - [sym_preproc_call] = STATE(42), - [sym_preproc_if] = STATE(42), - [sym_preproc_ifdef] = STATE(42), - [sym_function_definition] = STATE(42), - [sym_declaration] = STATE(42), - [sym_type_definition] = STATE(42), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(4599), - [sym_linkage_specification] = STATE(42), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(860), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_call_modifier] = STATE(1924), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6331), - [sym_array_declarator] = STATE(5998), - [sym_compound_statement] = STATE(545), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2758), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(761), - [sym_statement] = STATE(42), - [sym_labeled_statement] = STATE(545), - [sym_expression_statement] = STATE(545), - [sym_if_statement] = STATE(545), - [sym_switch_statement] = STATE(545), - [sym_case_statement] = STATE(545), - [sym_while_statement] = STATE(545), - [sym_do_statement] = STATE(545), - [sym_for_statement] = STATE(545), - [sym_return_statement] = STATE(545), - [sym_break_statement] = STATE(545), - [sym_continue_statement] = STATE(545), - [sym_goto_statement] = STATE(545), - [sym_seh_try_statement] = STATE(545), - [sym_seh_leave_statement] = STATE(545), - [sym_expression] = STATE(4457), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8711), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym__empty_declaration] = STATE(42), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_explicit_function_specifier] = STATE(1800), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(42), - [sym_template_instantiation] = STATE(42), - [sym_operator_cast] = STATE(6799), - [sym__constructor_specifiers] = STATE(1800), - [sym_operator_cast_definition] = STATE(42), - [sym_operator_cast_declaration] = STATE(42), - [sym_constructor_or_destructor_definition] = STATE(42), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(4494), - [sym_namespace_definition] = STATE(42), - [sym_namespace_alias_definition] = STATE(42), - [sym_using_declaration] = STATE(42), - [sym_alias_declaration] = STATE(42), - [sym_static_assert_declaration] = STATE(42), - [sym_concept_definition] = STATE(42), - [sym_for_range_loop] = STATE(545), - [sym_co_return_statement] = STATE(545), - [sym_co_yield_statement] = STATE(545), - [sym_throw_statement] = STATE(545), - [sym_try_statement] = STATE(545), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5460), - [sym_qualified_identifier] = STATE(3281), - [sym_qualified_type_identifier] = STATE(3109), - [sym_qualified_operator_cast_identifier] = STATE(6799), - [sym_operator_name] = STATE(5998), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_preproc_if_repeat1] = STATE(42), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(140), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1800), + [75] = { + [sym__block_item] = STATE(76), + [sym_preproc_include] = STATE(76), + [sym_preproc_def] = STATE(76), + [sym_preproc_function_def] = STATE(76), + [sym_preproc_call] = STATE(76), + [sym_preproc_if] = STATE(76), + [sym_preproc_ifdef] = STATE(76), + [sym_function_definition] = STATE(76), + [sym_declaration] = STATE(76), + [sym_type_definition] = STATE(76), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(4646), + [sym_linkage_specification] = STATE(76), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(859), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_call_modifier] = STATE(1956), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6395), + [sym_array_declarator] = STATE(6145), + [sym_compound_statement] = STATE(560), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2764), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(768), + [sym_statement] = STATE(76), + [sym_labeled_statement] = STATE(560), + [sym_expression_statement] = STATE(560), + [sym_if_statement] = STATE(560), + [sym_switch_statement] = STATE(560), + [sym_case_statement] = STATE(560), + [sym_while_statement] = STATE(560), + [sym_do_statement] = STATE(560), + [sym_for_statement] = STATE(560), + [sym_return_statement] = STATE(560), + [sym_break_statement] = STATE(560), + [sym_continue_statement] = STATE(560), + [sym_goto_statement] = STATE(560), + [sym_seh_try_statement] = STATE(560), + [sym_seh_leave_statement] = STATE(560), + [sym_expression] = STATE(4554), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8083), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym__empty_declaration] = STATE(76), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_explicit_function_specifier] = STATE(1833), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(76), + [sym_template_instantiation] = STATE(76), + [sym_operator_cast] = STATE(6888), + [sym__constructor_specifiers] = STATE(1833), + [sym_operator_cast_definition] = STATE(76), + [sym_operator_cast_declaration] = STATE(76), + [sym_constructor_or_destructor_definition] = STATE(76), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(4529), + [sym_namespace_definition] = STATE(76), + [sym_namespace_alias_definition] = STATE(76), + [sym_using_declaration] = STATE(76), + [sym_alias_declaration] = STATE(76), + [sym_static_assert_declaration] = STATE(76), + [sym_concept_definition] = STATE(76), + [sym_for_range_loop] = STATE(560), + [sym_co_return_statement] = STATE(560), + [sym_co_yield_statement] = STATE(560), + [sym_throw_statement] = STATE(560), + [sym_try_statement] = STATE(560), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5525), + [sym_qualified_identifier] = STATE(3362), + [sym_qualified_type_identifier] = STATE(3059), + [sym_qualified_operator_cast_identifier] = STATE(6888), + [sym_operator_name] = STATE(6145), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_preproc_if_repeat1] = STATE(76), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(158), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1833), [sym_identifier] = ACTIONS(864), [aux_sym_preproc_include_token1] = ACTIONS(169), [aux_sym_preproc_def_token1] = ACTIONS(171), @@ -50725,7 +51271,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), [anon_sym_LBRACE] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(1226), + [anon_sym_RBRACE] = ACTIONS(1228), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -50826,134 +51372,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [75] = { - [sym__block_item] = STATE(76), - [sym_preproc_include] = STATE(76), - [sym_preproc_def] = STATE(76), - [sym_preproc_function_def] = STATE(76), - [sym_preproc_call] = STATE(76), - [sym_preproc_if] = STATE(76), - [sym_preproc_ifdef] = STATE(76), - [sym_function_definition] = STATE(76), - [sym_declaration] = STATE(76), - [sym_type_definition] = STATE(76), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(4599), - [sym_linkage_specification] = STATE(76), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(860), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_call_modifier] = STATE(1924), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6331), - [sym_array_declarator] = STATE(5998), - [sym_compound_statement] = STATE(545), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2758), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(761), - [sym_statement] = STATE(76), - [sym_labeled_statement] = STATE(545), - [sym_expression_statement] = STATE(545), - [sym_if_statement] = STATE(545), - [sym_switch_statement] = STATE(545), - [sym_case_statement] = STATE(545), - [sym_while_statement] = STATE(545), - [sym_do_statement] = STATE(545), - [sym_for_statement] = STATE(545), - [sym_return_statement] = STATE(545), - [sym_break_statement] = STATE(545), - [sym_continue_statement] = STATE(545), - [sym_goto_statement] = STATE(545), - [sym_seh_try_statement] = STATE(545), - [sym_seh_leave_statement] = STATE(545), - [sym_expression] = STATE(4457), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8711), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym__empty_declaration] = STATE(76), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_explicit_function_specifier] = STATE(1800), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(76), - [sym_template_instantiation] = STATE(76), - [sym_operator_cast] = STATE(6799), - [sym__constructor_specifiers] = STATE(1800), - [sym_operator_cast_definition] = STATE(76), - [sym_operator_cast_declaration] = STATE(76), - [sym_constructor_or_destructor_definition] = STATE(76), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(4494), - [sym_namespace_definition] = STATE(76), - [sym_namespace_alias_definition] = STATE(76), - [sym_using_declaration] = STATE(76), - [sym_alias_declaration] = STATE(76), - [sym_static_assert_declaration] = STATE(76), - [sym_concept_definition] = STATE(76), - [sym_for_range_loop] = STATE(545), - [sym_co_return_statement] = STATE(545), - [sym_co_yield_statement] = STATE(545), - [sym_throw_statement] = STATE(545), - [sym_try_statement] = STATE(545), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5460), - [sym_qualified_identifier] = STATE(3281), - [sym_qualified_type_identifier] = STATE(3109), - [sym_qualified_operator_cast_identifier] = STATE(6799), - [sym_operator_name] = STATE(5998), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_preproc_if_repeat1] = STATE(76), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(140), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1800), + [76] = { + [sym__block_item] = STATE(53), + [sym_preproc_include] = STATE(53), + [sym_preproc_def] = STATE(53), + [sym_preproc_function_def] = STATE(53), + [sym_preproc_call] = STATE(53), + [sym_preproc_if] = STATE(53), + [sym_preproc_ifdef] = STATE(53), + [sym_function_definition] = STATE(53), + [sym_declaration] = STATE(53), + [sym_type_definition] = STATE(53), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(4646), + [sym_linkage_specification] = STATE(53), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(859), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_call_modifier] = STATE(1956), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6395), + [sym_array_declarator] = STATE(6145), + [sym_compound_statement] = STATE(560), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2764), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(768), + [sym_statement] = STATE(53), + [sym_labeled_statement] = STATE(560), + [sym_expression_statement] = STATE(560), + [sym_if_statement] = STATE(560), + [sym_switch_statement] = STATE(560), + [sym_case_statement] = STATE(560), + [sym_while_statement] = STATE(560), + [sym_do_statement] = STATE(560), + [sym_for_statement] = STATE(560), + [sym_return_statement] = STATE(560), + [sym_break_statement] = STATE(560), + [sym_continue_statement] = STATE(560), + [sym_goto_statement] = STATE(560), + [sym_seh_try_statement] = STATE(560), + [sym_seh_leave_statement] = STATE(560), + [sym_expression] = STATE(4554), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8083), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym__empty_declaration] = STATE(53), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_explicit_function_specifier] = STATE(1833), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(53), + [sym_template_instantiation] = STATE(53), + [sym_operator_cast] = STATE(6888), + [sym__constructor_specifiers] = STATE(1833), + [sym_operator_cast_definition] = STATE(53), + [sym_operator_cast_declaration] = STATE(53), + [sym_constructor_or_destructor_definition] = STATE(53), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(4529), + [sym_namespace_definition] = STATE(53), + [sym_namespace_alias_definition] = STATE(53), + [sym_using_declaration] = STATE(53), + [sym_alias_declaration] = STATE(53), + [sym_static_assert_declaration] = STATE(53), + [sym_concept_definition] = STATE(53), + [sym_for_range_loop] = STATE(560), + [sym_co_return_statement] = STATE(560), + [sym_co_yield_statement] = STATE(560), + [sym_throw_statement] = STATE(560), + [sym_try_statement] = STATE(560), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5525), + [sym_qualified_identifier] = STATE(3362), + [sym_qualified_type_identifier] = STATE(3059), + [sym_qualified_operator_cast_identifier] = STATE(6888), + [sym_operator_name] = STATE(6145), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_preproc_if_repeat1] = STATE(53), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(158), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1833), [sym_identifier] = ACTIONS(864), [aux_sym_preproc_include_token1] = ACTIONS(169), [aux_sym_preproc_def_token1] = ACTIONS(171), @@ -50988,7 +51534,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), [anon_sym_LBRACE] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(1228), + [anon_sym_RBRACE] = ACTIONS(1230), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -51089,134 +51635,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [76] = { - [sym__block_item] = STATE(42), - [sym_preproc_include] = STATE(42), - [sym_preproc_def] = STATE(42), - [sym_preproc_function_def] = STATE(42), - [sym_preproc_call] = STATE(42), - [sym_preproc_if] = STATE(42), - [sym_preproc_ifdef] = STATE(42), - [sym_function_definition] = STATE(42), - [sym_declaration] = STATE(42), - [sym_type_definition] = STATE(42), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(4599), - [sym_linkage_specification] = STATE(42), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(860), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_call_modifier] = STATE(1924), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6331), - [sym_array_declarator] = STATE(5998), - [sym_compound_statement] = STATE(545), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2758), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(761), - [sym_statement] = STATE(42), - [sym_labeled_statement] = STATE(545), - [sym_expression_statement] = STATE(545), - [sym_if_statement] = STATE(545), - [sym_switch_statement] = STATE(545), - [sym_case_statement] = STATE(545), - [sym_while_statement] = STATE(545), - [sym_do_statement] = STATE(545), - [sym_for_statement] = STATE(545), - [sym_return_statement] = STATE(545), - [sym_break_statement] = STATE(545), - [sym_continue_statement] = STATE(545), - [sym_goto_statement] = STATE(545), - [sym_seh_try_statement] = STATE(545), - [sym_seh_leave_statement] = STATE(545), - [sym_expression] = STATE(4457), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8711), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym__empty_declaration] = STATE(42), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_explicit_function_specifier] = STATE(1800), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(42), - [sym_template_instantiation] = STATE(42), - [sym_operator_cast] = STATE(6799), - [sym__constructor_specifiers] = STATE(1800), - [sym_operator_cast_definition] = STATE(42), - [sym_operator_cast_declaration] = STATE(42), - [sym_constructor_or_destructor_definition] = STATE(42), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(4494), - [sym_namespace_definition] = STATE(42), - [sym_namespace_alias_definition] = STATE(42), - [sym_using_declaration] = STATE(42), - [sym_alias_declaration] = STATE(42), - [sym_static_assert_declaration] = STATE(42), - [sym_concept_definition] = STATE(42), - [sym_for_range_loop] = STATE(545), - [sym_co_return_statement] = STATE(545), - [sym_co_yield_statement] = STATE(545), - [sym_throw_statement] = STATE(545), - [sym_try_statement] = STATE(545), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5460), - [sym_qualified_identifier] = STATE(3281), - [sym_qualified_type_identifier] = STATE(3109), - [sym_qualified_operator_cast_identifier] = STATE(6799), - [sym_operator_name] = STATE(5998), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_preproc_if_repeat1] = STATE(42), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(140), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1800), + [77] = { + [sym__block_item] = STATE(78), + [sym_preproc_include] = STATE(78), + [sym_preproc_def] = STATE(78), + [sym_preproc_function_def] = STATE(78), + [sym_preproc_call] = STATE(78), + [sym_preproc_if] = STATE(78), + [sym_preproc_ifdef] = STATE(78), + [sym_function_definition] = STATE(78), + [sym_declaration] = STATE(78), + [sym_type_definition] = STATE(78), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(4646), + [sym_linkage_specification] = STATE(78), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(859), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_call_modifier] = STATE(1956), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6395), + [sym_array_declarator] = STATE(6145), + [sym_compound_statement] = STATE(560), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2764), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(768), + [sym_statement] = STATE(78), + [sym_labeled_statement] = STATE(560), + [sym_expression_statement] = STATE(560), + [sym_if_statement] = STATE(560), + [sym_switch_statement] = STATE(560), + [sym_case_statement] = STATE(560), + [sym_while_statement] = STATE(560), + [sym_do_statement] = STATE(560), + [sym_for_statement] = STATE(560), + [sym_return_statement] = STATE(560), + [sym_break_statement] = STATE(560), + [sym_continue_statement] = STATE(560), + [sym_goto_statement] = STATE(560), + [sym_seh_try_statement] = STATE(560), + [sym_seh_leave_statement] = STATE(560), + [sym_expression] = STATE(4554), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8083), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym__empty_declaration] = STATE(78), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_explicit_function_specifier] = STATE(1833), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(78), + [sym_template_instantiation] = STATE(78), + [sym_operator_cast] = STATE(6888), + [sym__constructor_specifiers] = STATE(1833), + [sym_operator_cast_definition] = STATE(78), + [sym_operator_cast_declaration] = STATE(78), + [sym_constructor_or_destructor_definition] = STATE(78), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(4529), + [sym_namespace_definition] = STATE(78), + [sym_namespace_alias_definition] = STATE(78), + [sym_using_declaration] = STATE(78), + [sym_alias_declaration] = STATE(78), + [sym_static_assert_declaration] = STATE(78), + [sym_concept_definition] = STATE(78), + [sym_for_range_loop] = STATE(560), + [sym_co_return_statement] = STATE(560), + [sym_co_yield_statement] = STATE(560), + [sym_throw_statement] = STATE(560), + [sym_try_statement] = STATE(560), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5525), + [sym_qualified_identifier] = STATE(3362), + [sym_qualified_type_identifier] = STATE(3059), + [sym_qualified_operator_cast_identifier] = STATE(6888), + [sym_operator_name] = STATE(6145), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_preproc_if_repeat1] = STATE(78), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(158), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1833), [sym_identifier] = ACTIONS(864), [aux_sym_preproc_include_token1] = ACTIONS(169), [aux_sym_preproc_def_token1] = ACTIONS(171), @@ -51251,7 +51797,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), [anon_sym_LBRACE] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(1230), + [anon_sym_RBRACE] = ACTIONS(1232), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -51352,134 +51898,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [77] = { - [sym__block_item] = STATE(78), - [sym_preproc_include] = STATE(78), - [sym_preproc_def] = STATE(78), - [sym_preproc_function_def] = STATE(78), - [sym_preproc_call] = STATE(78), - [sym_preproc_if] = STATE(78), - [sym_preproc_ifdef] = STATE(78), - [sym_function_definition] = STATE(78), - [sym_declaration] = STATE(78), - [sym_type_definition] = STATE(78), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(4599), - [sym_linkage_specification] = STATE(78), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(860), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_call_modifier] = STATE(1924), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6331), - [sym_array_declarator] = STATE(5998), - [sym_compound_statement] = STATE(545), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2758), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(761), - [sym_statement] = STATE(78), - [sym_labeled_statement] = STATE(545), - [sym_expression_statement] = STATE(545), - [sym_if_statement] = STATE(545), - [sym_switch_statement] = STATE(545), - [sym_case_statement] = STATE(545), - [sym_while_statement] = STATE(545), - [sym_do_statement] = STATE(545), - [sym_for_statement] = STATE(545), - [sym_return_statement] = STATE(545), - [sym_break_statement] = STATE(545), - [sym_continue_statement] = STATE(545), - [sym_goto_statement] = STATE(545), - [sym_seh_try_statement] = STATE(545), - [sym_seh_leave_statement] = STATE(545), - [sym_expression] = STATE(4457), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8711), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym__empty_declaration] = STATE(78), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_explicit_function_specifier] = STATE(1800), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(78), - [sym_template_instantiation] = STATE(78), - [sym_operator_cast] = STATE(6799), - [sym__constructor_specifiers] = STATE(1800), - [sym_operator_cast_definition] = STATE(78), - [sym_operator_cast_declaration] = STATE(78), - [sym_constructor_or_destructor_definition] = STATE(78), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(4494), - [sym_namespace_definition] = STATE(78), - [sym_namespace_alias_definition] = STATE(78), - [sym_using_declaration] = STATE(78), - [sym_alias_declaration] = STATE(78), - [sym_static_assert_declaration] = STATE(78), - [sym_concept_definition] = STATE(78), - [sym_for_range_loop] = STATE(545), - [sym_co_return_statement] = STATE(545), - [sym_co_yield_statement] = STATE(545), - [sym_throw_statement] = STATE(545), - [sym_try_statement] = STATE(545), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5460), - [sym_qualified_identifier] = STATE(3281), - [sym_qualified_type_identifier] = STATE(3109), - [sym_qualified_operator_cast_identifier] = STATE(6799), - [sym_operator_name] = STATE(5998), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_preproc_if_repeat1] = STATE(78), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(140), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1800), + [78] = { + [sym__block_item] = STATE(53), + [sym_preproc_include] = STATE(53), + [sym_preproc_def] = STATE(53), + [sym_preproc_function_def] = STATE(53), + [sym_preproc_call] = STATE(53), + [sym_preproc_if] = STATE(53), + [sym_preproc_ifdef] = STATE(53), + [sym_function_definition] = STATE(53), + [sym_declaration] = STATE(53), + [sym_type_definition] = STATE(53), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(4646), + [sym_linkage_specification] = STATE(53), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(859), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_call_modifier] = STATE(1956), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6395), + [sym_array_declarator] = STATE(6145), + [sym_compound_statement] = STATE(560), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2764), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(768), + [sym_statement] = STATE(53), + [sym_labeled_statement] = STATE(560), + [sym_expression_statement] = STATE(560), + [sym_if_statement] = STATE(560), + [sym_switch_statement] = STATE(560), + [sym_case_statement] = STATE(560), + [sym_while_statement] = STATE(560), + [sym_do_statement] = STATE(560), + [sym_for_statement] = STATE(560), + [sym_return_statement] = STATE(560), + [sym_break_statement] = STATE(560), + [sym_continue_statement] = STATE(560), + [sym_goto_statement] = STATE(560), + [sym_seh_try_statement] = STATE(560), + [sym_seh_leave_statement] = STATE(560), + [sym_expression] = STATE(4554), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8083), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym__empty_declaration] = STATE(53), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_explicit_function_specifier] = STATE(1833), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(53), + [sym_template_instantiation] = STATE(53), + [sym_operator_cast] = STATE(6888), + [sym__constructor_specifiers] = STATE(1833), + [sym_operator_cast_definition] = STATE(53), + [sym_operator_cast_declaration] = STATE(53), + [sym_constructor_or_destructor_definition] = STATE(53), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(4529), + [sym_namespace_definition] = STATE(53), + [sym_namespace_alias_definition] = STATE(53), + [sym_using_declaration] = STATE(53), + [sym_alias_declaration] = STATE(53), + [sym_static_assert_declaration] = STATE(53), + [sym_concept_definition] = STATE(53), + [sym_for_range_loop] = STATE(560), + [sym_co_return_statement] = STATE(560), + [sym_co_yield_statement] = STATE(560), + [sym_throw_statement] = STATE(560), + [sym_try_statement] = STATE(560), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5525), + [sym_qualified_identifier] = STATE(3362), + [sym_qualified_type_identifier] = STATE(3059), + [sym_qualified_operator_cast_identifier] = STATE(6888), + [sym_operator_name] = STATE(6145), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_preproc_if_repeat1] = STATE(53), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(158), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1833), [sym_identifier] = ACTIONS(864), [aux_sym_preproc_include_token1] = ACTIONS(169), [aux_sym_preproc_def_token1] = ACTIONS(171), @@ -51514,7 +52060,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), [anon_sym_LBRACE] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(1232), + [anon_sym_RBRACE] = ACTIONS(1234), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -51615,134 +52161,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [78] = { - [sym__block_item] = STATE(42), - [sym_preproc_include] = STATE(42), - [sym_preproc_def] = STATE(42), - [sym_preproc_function_def] = STATE(42), - [sym_preproc_call] = STATE(42), - [sym_preproc_if] = STATE(42), - [sym_preproc_ifdef] = STATE(42), - [sym_function_definition] = STATE(42), - [sym_declaration] = STATE(42), - [sym_type_definition] = STATE(42), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(4599), - [sym_linkage_specification] = STATE(42), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(860), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_call_modifier] = STATE(1924), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6331), - [sym_array_declarator] = STATE(5998), - [sym_compound_statement] = STATE(545), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2758), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(761), - [sym_statement] = STATE(42), - [sym_labeled_statement] = STATE(545), - [sym_expression_statement] = STATE(545), - [sym_if_statement] = STATE(545), - [sym_switch_statement] = STATE(545), - [sym_case_statement] = STATE(545), - [sym_while_statement] = STATE(545), - [sym_do_statement] = STATE(545), - [sym_for_statement] = STATE(545), - [sym_return_statement] = STATE(545), - [sym_break_statement] = STATE(545), - [sym_continue_statement] = STATE(545), - [sym_goto_statement] = STATE(545), - [sym_seh_try_statement] = STATE(545), - [sym_seh_leave_statement] = STATE(545), - [sym_expression] = STATE(4457), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8711), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym__empty_declaration] = STATE(42), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_explicit_function_specifier] = STATE(1800), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(42), - [sym_template_instantiation] = STATE(42), - [sym_operator_cast] = STATE(6799), - [sym__constructor_specifiers] = STATE(1800), - [sym_operator_cast_definition] = STATE(42), - [sym_operator_cast_declaration] = STATE(42), - [sym_constructor_or_destructor_definition] = STATE(42), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(4494), - [sym_namespace_definition] = STATE(42), - [sym_namespace_alias_definition] = STATE(42), - [sym_using_declaration] = STATE(42), - [sym_alias_declaration] = STATE(42), - [sym_static_assert_declaration] = STATE(42), - [sym_concept_definition] = STATE(42), - [sym_for_range_loop] = STATE(545), - [sym_co_return_statement] = STATE(545), - [sym_co_yield_statement] = STATE(545), - [sym_throw_statement] = STATE(545), - [sym_try_statement] = STATE(545), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5460), - [sym_qualified_identifier] = STATE(3281), - [sym_qualified_type_identifier] = STATE(3109), - [sym_qualified_operator_cast_identifier] = STATE(6799), - [sym_operator_name] = STATE(5998), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_preproc_if_repeat1] = STATE(42), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(140), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1800), + [79] = { + [sym__block_item] = STATE(36), + [sym_preproc_include] = STATE(36), + [sym_preproc_def] = STATE(36), + [sym_preproc_function_def] = STATE(36), + [sym_preproc_call] = STATE(36), + [sym_preproc_if] = STATE(36), + [sym_preproc_ifdef] = STATE(36), + [sym_function_definition] = STATE(36), + [sym_declaration] = STATE(36), + [sym_type_definition] = STATE(36), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(4646), + [sym_linkage_specification] = STATE(36), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(859), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_call_modifier] = STATE(1956), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6395), + [sym_array_declarator] = STATE(6145), + [sym_compound_statement] = STATE(560), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2764), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(768), + [sym_statement] = STATE(36), + [sym_labeled_statement] = STATE(560), + [sym_expression_statement] = STATE(560), + [sym_if_statement] = STATE(560), + [sym_switch_statement] = STATE(560), + [sym_case_statement] = STATE(560), + [sym_while_statement] = STATE(560), + [sym_do_statement] = STATE(560), + [sym_for_statement] = STATE(560), + [sym_return_statement] = STATE(560), + [sym_break_statement] = STATE(560), + [sym_continue_statement] = STATE(560), + [sym_goto_statement] = STATE(560), + [sym_seh_try_statement] = STATE(560), + [sym_seh_leave_statement] = STATE(560), + [sym_expression] = STATE(4554), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8083), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym__empty_declaration] = STATE(36), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_explicit_function_specifier] = STATE(1833), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(36), + [sym_template_instantiation] = STATE(36), + [sym_operator_cast] = STATE(6888), + [sym__constructor_specifiers] = STATE(1833), + [sym_operator_cast_definition] = STATE(36), + [sym_operator_cast_declaration] = STATE(36), + [sym_constructor_or_destructor_definition] = STATE(36), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(4529), + [sym_namespace_definition] = STATE(36), + [sym_namespace_alias_definition] = STATE(36), + [sym_using_declaration] = STATE(36), + [sym_alias_declaration] = STATE(36), + [sym_static_assert_declaration] = STATE(36), + [sym_concept_definition] = STATE(36), + [sym_for_range_loop] = STATE(560), + [sym_co_return_statement] = STATE(560), + [sym_co_yield_statement] = STATE(560), + [sym_throw_statement] = STATE(560), + [sym_try_statement] = STATE(560), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5525), + [sym_qualified_identifier] = STATE(3362), + [sym_qualified_type_identifier] = STATE(3059), + [sym_qualified_operator_cast_identifier] = STATE(6888), + [sym_operator_name] = STATE(6145), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_preproc_if_repeat1] = STATE(36), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(158), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1833), [sym_identifier] = ACTIONS(864), [aux_sym_preproc_include_token1] = ACTIONS(169), [aux_sym_preproc_def_token1] = ACTIONS(171), @@ -51777,7 +52323,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), [anon_sym_LBRACE] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(1234), + [anon_sym_RBRACE] = ACTIONS(1236), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -51878,134 +52424,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [79] = { - [sym__block_item] = STATE(80), - [sym_preproc_include] = STATE(80), - [sym_preproc_def] = STATE(80), - [sym_preproc_function_def] = STATE(80), - [sym_preproc_call] = STATE(80), - [sym_preproc_if] = STATE(80), - [sym_preproc_ifdef] = STATE(80), - [sym_function_definition] = STATE(80), - [sym_declaration] = STATE(80), - [sym_type_definition] = STATE(80), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(4599), - [sym_linkage_specification] = STATE(80), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(860), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_call_modifier] = STATE(1924), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6331), - [sym_array_declarator] = STATE(5998), - [sym_compound_statement] = STATE(545), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2758), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(761), - [sym_statement] = STATE(80), - [sym_labeled_statement] = STATE(545), - [sym_expression_statement] = STATE(545), - [sym_if_statement] = STATE(545), - [sym_switch_statement] = STATE(545), - [sym_case_statement] = STATE(545), - [sym_while_statement] = STATE(545), - [sym_do_statement] = STATE(545), - [sym_for_statement] = STATE(545), - [sym_return_statement] = STATE(545), - [sym_break_statement] = STATE(545), - [sym_continue_statement] = STATE(545), - [sym_goto_statement] = STATE(545), - [sym_seh_try_statement] = STATE(545), - [sym_seh_leave_statement] = STATE(545), - [sym_expression] = STATE(4457), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8711), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym__empty_declaration] = STATE(80), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_explicit_function_specifier] = STATE(1800), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(80), - [sym_template_instantiation] = STATE(80), - [sym_operator_cast] = STATE(6799), - [sym__constructor_specifiers] = STATE(1800), - [sym_operator_cast_definition] = STATE(80), - [sym_operator_cast_declaration] = STATE(80), - [sym_constructor_or_destructor_definition] = STATE(80), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(4494), - [sym_namespace_definition] = STATE(80), - [sym_namespace_alias_definition] = STATE(80), - [sym_using_declaration] = STATE(80), - [sym_alias_declaration] = STATE(80), - [sym_static_assert_declaration] = STATE(80), - [sym_concept_definition] = STATE(80), - [sym_for_range_loop] = STATE(545), - [sym_co_return_statement] = STATE(545), - [sym_co_yield_statement] = STATE(545), - [sym_throw_statement] = STATE(545), - [sym_try_statement] = STATE(545), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5460), - [sym_qualified_identifier] = STATE(3281), - [sym_qualified_type_identifier] = STATE(3109), - [sym_qualified_operator_cast_identifier] = STATE(6799), - [sym_operator_name] = STATE(5998), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_preproc_if_repeat1] = STATE(80), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(140), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1800), + [80] = { + [sym__block_item] = STATE(43), + [sym_preproc_include] = STATE(43), + [sym_preproc_def] = STATE(43), + [sym_preproc_function_def] = STATE(43), + [sym_preproc_call] = STATE(43), + [sym_preproc_if] = STATE(43), + [sym_preproc_ifdef] = STATE(43), + [sym_function_definition] = STATE(43), + [sym_declaration] = STATE(43), + [sym_type_definition] = STATE(43), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(4646), + [sym_linkage_specification] = STATE(43), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(859), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_call_modifier] = STATE(1956), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6395), + [sym_array_declarator] = STATE(6145), + [sym_compound_statement] = STATE(560), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2764), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(768), + [sym_statement] = STATE(43), + [sym_labeled_statement] = STATE(560), + [sym_expression_statement] = STATE(560), + [sym_if_statement] = STATE(560), + [sym_switch_statement] = STATE(560), + [sym_case_statement] = STATE(560), + [sym_while_statement] = STATE(560), + [sym_do_statement] = STATE(560), + [sym_for_statement] = STATE(560), + [sym_return_statement] = STATE(560), + [sym_break_statement] = STATE(560), + [sym_continue_statement] = STATE(560), + [sym_goto_statement] = STATE(560), + [sym_seh_try_statement] = STATE(560), + [sym_seh_leave_statement] = STATE(560), + [sym_expression] = STATE(4554), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8083), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym__empty_declaration] = STATE(43), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_explicit_function_specifier] = STATE(1833), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(43), + [sym_template_instantiation] = STATE(43), + [sym_operator_cast] = STATE(6888), + [sym__constructor_specifiers] = STATE(1833), + [sym_operator_cast_definition] = STATE(43), + [sym_operator_cast_declaration] = STATE(43), + [sym_constructor_or_destructor_definition] = STATE(43), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(4529), + [sym_namespace_definition] = STATE(43), + [sym_namespace_alias_definition] = STATE(43), + [sym_using_declaration] = STATE(43), + [sym_alias_declaration] = STATE(43), + [sym_static_assert_declaration] = STATE(43), + [sym_concept_definition] = STATE(43), + [sym_for_range_loop] = STATE(560), + [sym_co_return_statement] = STATE(560), + [sym_co_yield_statement] = STATE(560), + [sym_throw_statement] = STATE(560), + [sym_try_statement] = STATE(560), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5525), + [sym_qualified_identifier] = STATE(3362), + [sym_qualified_type_identifier] = STATE(3059), + [sym_qualified_operator_cast_identifier] = STATE(6888), + [sym_operator_name] = STATE(6145), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_preproc_if_repeat1] = STATE(43), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(158), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1833), [sym_identifier] = ACTIONS(864), [aux_sym_preproc_include_token1] = ACTIONS(169), [aux_sym_preproc_def_token1] = ACTIONS(171), @@ -52040,7 +52586,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), [anon_sym_LBRACE] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(1236), + [anon_sym_RBRACE] = ACTIONS(1238), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -52141,134 +52687,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [80] = { - [sym__block_item] = STATE(42), - [sym_preproc_include] = STATE(42), - [sym_preproc_def] = STATE(42), - [sym_preproc_function_def] = STATE(42), - [sym_preproc_call] = STATE(42), - [sym_preproc_if] = STATE(42), - [sym_preproc_ifdef] = STATE(42), - [sym_function_definition] = STATE(42), - [sym_declaration] = STATE(42), - [sym_type_definition] = STATE(42), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(4599), - [sym_linkage_specification] = STATE(42), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(860), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_call_modifier] = STATE(1924), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6331), - [sym_array_declarator] = STATE(5998), - [sym_compound_statement] = STATE(545), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2758), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(761), - [sym_statement] = STATE(42), - [sym_labeled_statement] = STATE(545), - [sym_expression_statement] = STATE(545), - [sym_if_statement] = STATE(545), - [sym_switch_statement] = STATE(545), - [sym_case_statement] = STATE(545), - [sym_while_statement] = STATE(545), - [sym_do_statement] = STATE(545), - [sym_for_statement] = STATE(545), - [sym_return_statement] = STATE(545), - [sym_break_statement] = STATE(545), - [sym_continue_statement] = STATE(545), - [sym_goto_statement] = STATE(545), - [sym_seh_try_statement] = STATE(545), - [sym_seh_leave_statement] = STATE(545), - [sym_expression] = STATE(4457), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8711), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym__empty_declaration] = STATE(42), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_explicit_function_specifier] = STATE(1800), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(42), - [sym_template_instantiation] = STATE(42), - [sym_operator_cast] = STATE(6799), - [sym__constructor_specifiers] = STATE(1800), - [sym_operator_cast_definition] = STATE(42), - [sym_operator_cast_declaration] = STATE(42), - [sym_constructor_or_destructor_definition] = STATE(42), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(4494), - [sym_namespace_definition] = STATE(42), - [sym_namespace_alias_definition] = STATE(42), - [sym_using_declaration] = STATE(42), - [sym_alias_declaration] = STATE(42), - [sym_static_assert_declaration] = STATE(42), - [sym_concept_definition] = STATE(42), - [sym_for_range_loop] = STATE(545), - [sym_co_return_statement] = STATE(545), - [sym_co_yield_statement] = STATE(545), - [sym_throw_statement] = STATE(545), - [sym_try_statement] = STATE(545), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5460), - [sym_qualified_identifier] = STATE(3281), - [sym_qualified_type_identifier] = STATE(3109), - [sym_qualified_operator_cast_identifier] = STATE(6799), - [sym_operator_name] = STATE(5998), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_preproc_if_repeat1] = STATE(42), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(140), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1800), + [81] = { + [sym__block_item] = STATE(82), + [sym_preproc_include] = STATE(82), + [sym_preproc_def] = STATE(82), + [sym_preproc_function_def] = STATE(82), + [sym_preproc_call] = STATE(82), + [sym_preproc_if] = STATE(82), + [sym_preproc_ifdef] = STATE(82), + [sym_function_definition] = STATE(82), + [sym_declaration] = STATE(82), + [sym_type_definition] = STATE(82), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(4646), + [sym_linkage_specification] = STATE(82), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(859), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_call_modifier] = STATE(1956), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6395), + [sym_array_declarator] = STATE(6145), + [sym_compound_statement] = STATE(560), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2764), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(768), + [sym_statement] = STATE(82), + [sym_labeled_statement] = STATE(560), + [sym_expression_statement] = STATE(560), + [sym_if_statement] = STATE(560), + [sym_switch_statement] = STATE(560), + [sym_case_statement] = STATE(560), + [sym_while_statement] = STATE(560), + [sym_do_statement] = STATE(560), + [sym_for_statement] = STATE(560), + [sym_return_statement] = STATE(560), + [sym_break_statement] = STATE(560), + [sym_continue_statement] = STATE(560), + [sym_goto_statement] = STATE(560), + [sym_seh_try_statement] = STATE(560), + [sym_seh_leave_statement] = STATE(560), + [sym_expression] = STATE(4554), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8083), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym__empty_declaration] = STATE(82), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_explicit_function_specifier] = STATE(1833), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(82), + [sym_template_instantiation] = STATE(82), + [sym_operator_cast] = STATE(6888), + [sym__constructor_specifiers] = STATE(1833), + [sym_operator_cast_definition] = STATE(82), + [sym_operator_cast_declaration] = STATE(82), + [sym_constructor_or_destructor_definition] = STATE(82), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(4529), + [sym_namespace_definition] = STATE(82), + [sym_namespace_alias_definition] = STATE(82), + [sym_using_declaration] = STATE(82), + [sym_alias_declaration] = STATE(82), + [sym_static_assert_declaration] = STATE(82), + [sym_concept_definition] = STATE(82), + [sym_for_range_loop] = STATE(560), + [sym_co_return_statement] = STATE(560), + [sym_co_yield_statement] = STATE(560), + [sym_throw_statement] = STATE(560), + [sym_try_statement] = STATE(560), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5525), + [sym_qualified_identifier] = STATE(3362), + [sym_qualified_type_identifier] = STATE(3059), + [sym_qualified_operator_cast_identifier] = STATE(6888), + [sym_operator_name] = STATE(6145), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_preproc_if_repeat1] = STATE(82), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(158), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1833), [sym_identifier] = ACTIONS(864), [aux_sym_preproc_include_token1] = ACTIONS(169), [aux_sym_preproc_def_token1] = ACTIONS(171), @@ -52303,7 +52849,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), [anon_sym_LBRACE] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(1238), + [anon_sym_RBRACE] = ACTIONS(1240), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -52404,134 +52950,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [81] = { - [sym__block_item] = STATE(82), - [sym_preproc_include] = STATE(82), - [sym_preproc_def] = STATE(82), - [sym_preproc_function_def] = STATE(82), - [sym_preproc_call] = STATE(82), - [sym_preproc_if] = STATE(82), - [sym_preproc_ifdef] = STATE(82), - [sym_function_definition] = STATE(82), - [sym_declaration] = STATE(82), - [sym_type_definition] = STATE(82), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(4599), - [sym_linkage_specification] = STATE(82), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(860), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_call_modifier] = STATE(1924), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6331), - [sym_array_declarator] = STATE(5998), - [sym_compound_statement] = STATE(545), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2758), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(761), - [sym_statement] = STATE(82), - [sym_labeled_statement] = STATE(545), - [sym_expression_statement] = STATE(545), - [sym_if_statement] = STATE(545), - [sym_switch_statement] = STATE(545), - [sym_case_statement] = STATE(545), - [sym_while_statement] = STATE(545), - [sym_do_statement] = STATE(545), - [sym_for_statement] = STATE(545), - [sym_return_statement] = STATE(545), - [sym_break_statement] = STATE(545), - [sym_continue_statement] = STATE(545), - [sym_goto_statement] = STATE(545), - [sym_seh_try_statement] = STATE(545), - [sym_seh_leave_statement] = STATE(545), - [sym_expression] = STATE(4457), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8711), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym__empty_declaration] = STATE(82), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_explicit_function_specifier] = STATE(1800), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(82), - [sym_template_instantiation] = STATE(82), - [sym_operator_cast] = STATE(6799), - [sym__constructor_specifiers] = STATE(1800), - [sym_operator_cast_definition] = STATE(82), - [sym_operator_cast_declaration] = STATE(82), - [sym_constructor_or_destructor_definition] = STATE(82), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(4494), - [sym_namespace_definition] = STATE(82), - [sym_namespace_alias_definition] = STATE(82), - [sym_using_declaration] = STATE(82), - [sym_alias_declaration] = STATE(82), - [sym_static_assert_declaration] = STATE(82), - [sym_concept_definition] = STATE(82), - [sym_for_range_loop] = STATE(545), - [sym_co_return_statement] = STATE(545), - [sym_co_yield_statement] = STATE(545), - [sym_throw_statement] = STATE(545), - [sym_try_statement] = STATE(545), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5460), - [sym_qualified_identifier] = STATE(3281), - [sym_qualified_type_identifier] = STATE(3109), - [sym_qualified_operator_cast_identifier] = STATE(6799), - [sym_operator_name] = STATE(5998), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_preproc_if_repeat1] = STATE(82), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(140), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1800), + [82] = { + [sym__block_item] = STATE(53), + [sym_preproc_include] = STATE(53), + [sym_preproc_def] = STATE(53), + [sym_preproc_function_def] = STATE(53), + [sym_preproc_call] = STATE(53), + [sym_preproc_if] = STATE(53), + [sym_preproc_ifdef] = STATE(53), + [sym_function_definition] = STATE(53), + [sym_declaration] = STATE(53), + [sym_type_definition] = STATE(53), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(4646), + [sym_linkage_specification] = STATE(53), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(859), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_call_modifier] = STATE(1956), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6395), + [sym_array_declarator] = STATE(6145), + [sym_compound_statement] = STATE(560), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2764), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(768), + [sym_statement] = STATE(53), + [sym_labeled_statement] = STATE(560), + [sym_expression_statement] = STATE(560), + [sym_if_statement] = STATE(560), + [sym_switch_statement] = STATE(560), + [sym_case_statement] = STATE(560), + [sym_while_statement] = STATE(560), + [sym_do_statement] = STATE(560), + [sym_for_statement] = STATE(560), + [sym_return_statement] = STATE(560), + [sym_break_statement] = STATE(560), + [sym_continue_statement] = STATE(560), + [sym_goto_statement] = STATE(560), + [sym_seh_try_statement] = STATE(560), + [sym_seh_leave_statement] = STATE(560), + [sym_expression] = STATE(4554), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8083), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym__empty_declaration] = STATE(53), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_explicit_function_specifier] = STATE(1833), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(53), + [sym_template_instantiation] = STATE(53), + [sym_operator_cast] = STATE(6888), + [sym__constructor_specifiers] = STATE(1833), + [sym_operator_cast_definition] = STATE(53), + [sym_operator_cast_declaration] = STATE(53), + [sym_constructor_or_destructor_definition] = STATE(53), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(4529), + [sym_namespace_definition] = STATE(53), + [sym_namespace_alias_definition] = STATE(53), + [sym_using_declaration] = STATE(53), + [sym_alias_declaration] = STATE(53), + [sym_static_assert_declaration] = STATE(53), + [sym_concept_definition] = STATE(53), + [sym_for_range_loop] = STATE(560), + [sym_co_return_statement] = STATE(560), + [sym_co_yield_statement] = STATE(560), + [sym_throw_statement] = STATE(560), + [sym_try_statement] = STATE(560), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5525), + [sym_qualified_identifier] = STATE(3362), + [sym_qualified_type_identifier] = STATE(3059), + [sym_qualified_operator_cast_identifier] = STATE(6888), + [sym_operator_name] = STATE(6145), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_preproc_if_repeat1] = STATE(53), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(158), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1833), [sym_identifier] = ACTIONS(864), [aux_sym_preproc_include_token1] = ACTIONS(169), [aux_sym_preproc_def_token1] = ACTIONS(171), @@ -52566,7 +53112,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), [anon_sym_LBRACE] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(1240), + [anon_sym_RBRACE] = ACTIONS(1242), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -52667,134 +53213,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [82] = { - [sym__block_item] = STATE(42), - [sym_preproc_include] = STATE(42), - [sym_preproc_def] = STATE(42), - [sym_preproc_function_def] = STATE(42), - [sym_preproc_call] = STATE(42), - [sym_preproc_if] = STATE(42), - [sym_preproc_ifdef] = STATE(42), - [sym_function_definition] = STATE(42), - [sym_declaration] = STATE(42), - [sym_type_definition] = STATE(42), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(4599), - [sym_linkage_specification] = STATE(42), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(860), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_call_modifier] = STATE(1924), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6331), - [sym_array_declarator] = STATE(5998), - [sym_compound_statement] = STATE(545), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2758), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(761), - [sym_statement] = STATE(42), - [sym_labeled_statement] = STATE(545), - [sym_expression_statement] = STATE(545), - [sym_if_statement] = STATE(545), - [sym_switch_statement] = STATE(545), - [sym_case_statement] = STATE(545), - [sym_while_statement] = STATE(545), - [sym_do_statement] = STATE(545), - [sym_for_statement] = STATE(545), - [sym_return_statement] = STATE(545), - [sym_break_statement] = STATE(545), - [sym_continue_statement] = STATE(545), - [sym_goto_statement] = STATE(545), - [sym_seh_try_statement] = STATE(545), - [sym_seh_leave_statement] = STATE(545), - [sym_expression] = STATE(4457), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8711), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym__empty_declaration] = STATE(42), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_explicit_function_specifier] = STATE(1800), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(42), - [sym_template_instantiation] = STATE(42), - [sym_operator_cast] = STATE(6799), - [sym__constructor_specifiers] = STATE(1800), - [sym_operator_cast_definition] = STATE(42), - [sym_operator_cast_declaration] = STATE(42), - [sym_constructor_or_destructor_definition] = STATE(42), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(4494), - [sym_namespace_definition] = STATE(42), - [sym_namespace_alias_definition] = STATE(42), - [sym_using_declaration] = STATE(42), - [sym_alias_declaration] = STATE(42), - [sym_static_assert_declaration] = STATE(42), - [sym_concept_definition] = STATE(42), - [sym_for_range_loop] = STATE(545), - [sym_co_return_statement] = STATE(545), - [sym_co_yield_statement] = STATE(545), - [sym_throw_statement] = STATE(545), - [sym_try_statement] = STATE(545), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5460), - [sym_qualified_identifier] = STATE(3281), - [sym_qualified_type_identifier] = STATE(3109), - [sym_qualified_operator_cast_identifier] = STATE(6799), - [sym_operator_name] = STATE(5998), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_preproc_if_repeat1] = STATE(42), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(140), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1800), + [83] = { + [sym__block_item] = STATE(54), + [sym_preproc_include] = STATE(54), + [sym_preproc_def] = STATE(54), + [sym_preproc_function_def] = STATE(54), + [sym_preproc_call] = STATE(54), + [sym_preproc_if] = STATE(54), + [sym_preproc_ifdef] = STATE(54), + [sym_function_definition] = STATE(54), + [sym_declaration] = STATE(54), + [sym_type_definition] = STATE(54), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(4646), + [sym_linkage_specification] = STATE(54), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(859), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_call_modifier] = STATE(1956), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6395), + [sym_array_declarator] = STATE(6145), + [sym_compound_statement] = STATE(560), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2764), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(768), + [sym_statement] = STATE(54), + [sym_labeled_statement] = STATE(560), + [sym_expression_statement] = STATE(560), + [sym_if_statement] = STATE(560), + [sym_switch_statement] = STATE(560), + [sym_case_statement] = STATE(560), + [sym_while_statement] = STATE(560), + [sym_do_statement] = STATE(560), + [sym_for_statement] = STATE(560), + [sym_return_statement] = STATE(560), + [sym_break_statement] = STATE(560), + [sym_continue_statement] = STATE(560), + [sym_goto_statement] = STATE(560), + [sym_seh_try_statement] = STATE(560), + [sym_seh_leave_statement] = STATE(560), + [sym_expression] = STATE(4554), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8083), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym__empty_declaration] = STATE(54), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_explicit_function_specifier] = STATE(1833), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(54), + [sym_template_instantiation] = STATE(54), + [sym_operator_cast] = STATE(6888), + [sym__constructor_specifiers] = STATE(1833), + [sym_operator_cast_definition] = STATE(54), + [sym_operator_cast_declaration] = STATE(54), + [sym_constructor_or_destructor_definition] = STATE(54), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(4529), + [sym_namespace_definition] = STATE(54), + [sym_namespace_alias_definition] = STATE(54), + [sym_using_declaration] = STATE(54), + [sym_alias_declaration] = STATE(54), + [sym_static_assert_declaration] = STATE(54), + [sym_concept_definition] = STATE(54), + [sym_for_range_loop] = STATE(560), + [sym_co_return_statement] = STATE(560), + [sym_co_yield_statement] = STATE(560), + [sym_throw_statement] = STATE(560), + [sym_try_statement] = STATE(560), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5525), + [sym_qualified_identifier] = STATE(3362), + [sym_qualified_type_identifier] = STATE(3059), + [sym_qualified_operator_cast_identifier] = STATE(6888), + [sym_operator_name] = STATE(6145), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_preproc_if_repeat1] = STATE(54), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(158), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1833), [sym_identifier] = ACTIONS(864), [aux_sym_preproc_include_token1] = ACTIONS(169), [aux_sym_preproc_def_token1] = ACTIONS(171), @@ -52829,7 +53375,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), [anon_sym_LBRACE] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(1242), + [anon_sym_RBRACE] = ACTIONS(1244), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -52930,134 +53476,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [83] = { - [sym__block_item] = STATE(42), - [sym_preproc_include] = STATE(42), - [sym_preproc_def] = STATE(42), - [sym_preproc_function_def] = STATE(42), - [sym_preproc_call] = STATE(42), - [sym_preproc_if] = STATE(42), - [sym_preproc_ifdef] = STATE(42), - [sym_function_definition] = STATE(42), - [sym_declaration] = STATE(42), - [sym_type_definition] = STATE(42), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(4599), - [sym_linkage_specification] = STATE(42), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(860), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_call_modifier] = STATE(1924), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6331), - [sym_array_declarator] = STATE(5998), - [sym_compound_statement] = STATE(545), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2758), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(761), - [sym_statement] = STATE(42), - [sym_labeled_statement] = STATE(545), - [sym_expression_statement] = STATE(545), - [sym_if_statement] = STATE(545), - [sym_switch_statement] = STATE(545), - [sym_case_statement] = STATE(545), - [sym_while_statement] = STATE(545), - [sym_do_statement] = STATE(545), - [sym_for_statement] = STATE(545), - [sym_return_statement] = STATE(545), - [sym_break_statement] = STATE(545), - [sym_continue_statement] = STATE(545), - [sym_goto_statement] = STATE(545), - [sym_seh_try_statement] = STATE(545), - [sym_seh_leave_statement] = STATE(545), - [sym_expression] = STATE(4457), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8711), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym__empty_declaration] = STATE(42), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_explicit_function_specifier] = STATE(1800), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(42), - [sym_template_instantiation] = STATE(42), - [sym_operator_cast] = STATE(6799), - [sym__constructor_specifiers] = STATE(1800), - [sym_operator_cast_definition] = STATE(42), - [sym_operator_cast_declaration] = STATE(42), - [sym_constructor_or_destructor_definition] = STATE(42), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(4494), - [sym_namespace_definition] = STATE(42), - [sym_namespace_alias_definition] = STATE(42), - [sym_using_declaration] = STATE(42), - [sym_alias_declaration] = STATE(42), - [sym_static_assert_declaration] = STATE(42), - [sym_concept_definition] = STATE(42), - [sym_for_range_loop] = STATE(545), - [sym_co_return_statement] = STATE(545), - [sym_co_yield_statement] = STATE(545), - [sym_throw_statement] = STATE(545), - [sym_try_statement] = STATE(545), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5460), - [sym_qualified_identifier] = STATE(3281), - [sym_qualified_type_identifier] = STATE(3109), - [sym_qualified_operator_cast_identifier] = STATE(6799), - [sym_operator_name] = STATE(5998), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_preproc_if_repeat1] = STATE(42), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(140), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1800), + [84] = { + [sym__block_item] = STATE(53), + [sym_preproc_include] = STATE(53), + [sym_preproc_def] = STATE(53), + [sym_preproc_function_def] = STATE(53), + [sym_preproc_call] = STATE(53), + [sym_preproc_if] = STATE(53), + [sym_preproc_ifdef] = STATE(53), + [sym_function_definition] = STATE(53), + [sym_declaration] = STATE(53), + [sym_type_definition] = STATE(53), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(4646), + [sym_linkage_specification] = STATE(53), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(859), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_call_modifier] = STATE(1956), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6395), + [sym_array_declarator] = STATE(6145), + [sym_compound_statement] = STATE(560), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2764), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(768), + [sym_statement] = STATE(53), + [sym_labeled_statement] = STATE(560), + [sym_expression_statement] = STATE(560), + [sym_if_statement] = STATE(560), + [sym_switch_statement] = STATE(560), + [sym_case_statement] = STATE(560), + [sym_while_statement] = STATE(560), + [sym_do_statement] = STATE(560), + [sym_for_statement] = STATE(560), + [sym_return_statement] = STATE(560), + [sym_break_statement] = STATE(560), + [sym_continue_statement] = STATE(560), + [sym_goto_statement] = STATE(560), + [sym_seh_try_statement] = STATE(560), + [sym_seh_leave_statement] = STATE(560), + [sym_expression] = STATE(4554), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8083), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym__empty_declaration] = STATE(53), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_explicit_function_specifier] = STATE(1833), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(53), + [sym_template_instantiation] = STATE(53), + [sym_operator_cast] = STATE(6888), + [sym__constructor_specifiers] = STATE(1833), + [sym_operator_cast_definition] = STATE(53), + [sym_operator_cast_declaration] = STATE(53), + [sym_constructor_or_destructor_definition] = STATE(53), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(4529), + [sym_namespace_definition] = STATE(53), + [sym_namespace_alias_definition] = STATE(53), + [sym_using_declaration] = STATE(53), + [sym_alias_declaration] = STATE(53), + [sym_static_assert_declaration] = STATE(53), + [sym_concept_definition] = STATE(53), + [sym_for_range_loop] = STATE(560), + [sym_co_return_statement] = STATE(560), + [sym_co_yield_statement] = STATE(560), + [sym_throw_statement] = STATE(560), + [sym_try_statement] = STATE(560), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5525), + [sym_qualified_identifier] = STATE(3362), + [sym_qualified_type_identifier] = STATE(3059), + [sym_qualified_operator_cast_identifier] = STATE(6888), + [sym_operator_name] = STATE(6145), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_preproc_if_repeat1] = STATE(53), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(158), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1833), [sym_identifier] = ACTIONS(864), [aux_sym_preproc_include_token1] = ACTIONS(169), [aux_sym_preproc_def_token1] = ACTIONS(171), @@ -53092,7 +53638,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), [anon_sym_LBRACE] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(1244), + [anon_sym_RBRACE] = ACTIONS(1246), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -53193,177 +53739,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [84] = { - [sym__block_item] = STATE(68), - [sym_preproc_include] = STATE(68), - [sym_preproc_def] = STATE(68), - [sym_preproc_function_def] = STATE(68), - [sym_preproc_call] = STATE(68), - [sym_preproc_if] = STATE(68), - [sym_preproc_ifdef] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_declaration] = STATE(68), - [sym_type_definition] = STATE(68), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(4599), - [sym_linkage_specification] = STATE(68), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(860), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_call_modifier] = STATE(1924), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6331), - [sym_array_declarator] = STATE(5998), - [sym_compound_statement] = STATE(545), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2758), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(761), - [sym_statement] = STATE(68), - [sym_labeled_statement] = STATE(545), - [sym_expression_statement] = STATE(545), - [sym_if_statement] = STATE(545), - [sym_switch_statement] = STATE(545), - [sym_case_statement] = STATE(545), - [sym_while_statement] = STATE(545), - [sym_do_statement] = STATE(545), - [sym_for_statement] = STATE(545), - [sym_return_statement] = STATE(545), - [sym_break_statement] = STATE(545), - [sym_continue_statement] = STATE(545), - [sym_goto_statement] = STATE(545), - [sym_seh_try_statement] = STATE(545), - [sym_seh_leave_statement] = STATE(545), - [sym_expression] = STATE(4457), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8711), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym__empty_declaration] = STATE(68), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_explicit_function_specifier] = STATE(1800), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(68), - [sym_template_instantiation] = STATE(68), - [sym_operator_cast] = STATE(6799), - [sym__constructor_specifiers] = STATE(1800), - [sym_operator_cast_definition] = STATE(68), - [sym_operator_cast_declaration] = STATE(68), - [sym_constructor_or_destructor_definition] = STATE(68), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(4494), - [sym_namespace_definition] = STATE(68), - [sym_namespace_alias_definition] = STATE(68), - [sym_using_declaration] = STATE(68), - [sym_alias_declaration] = STATE(68), - [sym_static_assert_declaration] = STATE(68), - [sym_concept_definition] = STATE(68), - [sym_for_range_loop] = STATE(545), - [sym_co_return_statement] = STATE(545), - [sym_co_yield_statement] = STATE(545), - [sym_throw_statement] = STATE(545), - [sym_try_statement] = STATE(545), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5460), - [sym_qualified_identifier] = STATE(3281), - [sym_qualified_type_identifier] = STATE(3109), - [sym_qualified_operator_cast_identifier] = STATE(6799), - [sym_operator_name] = STATE(5998), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_preproc_if_repeat1] = STATE(68), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(140), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1800), - [sym_identifier] = ACTIONS(864), - [aux_sym_preproc_include_token1] = ACTIONS(169), - [aux_sym_preproc_def_token1] = ACTIONS(171), - [aux_sym_preproc_if_token1] = ACTIONS(175), - [aux_sym_preproc_ifdef_token1] = ACTIONS(177), - [aux_sym_preproc_ifdef_token2] = ACTIONS(177), - [sym_preproc_directive] = ACTIONS(179), - [anon_sym_LPAREN2] = ACTIONS(19), + [85] = { + [sym_declaration] = STATE(86), + [sym_type_definition] = STATE(86), + [sym__declaration_modifiers] = STATE(2095), + [sym__declaration_specifiers] = STATE(4645), + [sym_attribute_specifier] = STATE(2095), + [sym_attribute_declaration] = STATE(950), + [sym_ms_declspec_modifier] = STATE(2095), + [sym_compound_statement] = STATE(86), + [sym_storage_class_specifier] = STATE(2095), + [sym_type_qualifier] = STATE(2095), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(86), + [sym_labeled_statement] = STATE(86), + [sym_expression_statement] = STATE(86), + [sym_if_statement] = STATE(86), + [sym_switch_statement] = STATE(86), + [sym_while_statement] = STATE(86), + [sym_do_statement] = STATE(86), + [sym_for_statement] = STATE(86), + [sym_return_statement] = STATE(86), + [sym_break_statement] = STATE(86), + [sym_continue_statement] = STATE(86), + [sym_goto_statement] = STATE(86), + [sym_seh_try_statement] = STATE(86), + [sym_seh_leave_statement] = STATE(86), + [sym_expression] = STATE(4517), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8280), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_dependent_type] = STATE(2558), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(3898), + [sym_for_range_loop] = STATE(86), + [sym_co_return_statement] = STATE(86), + [sym_co_yield_statement] = STATE(86), + [sym_throw_statement] = STATE(86), + [sym_try_statement] = STATE(86), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5721), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(3059), + [sym_user_defined_literal] = STATE(3323), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(205), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_case_statement_repeat1] = STATE(86), + [sym_identifier] = ACTIONS(1248), + [aux_sym_preproc_include_token1] = ACTIONS(1250), + [aux_sym_preproc_def_token1] = ACTIONS(1250), + [aux_sym_preproc_if_token1] = ACTIONS(1250), + [aux_sym_preproc_if_token2] = ACTIONS(1250), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1250), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1250), + [aux_sym_preproc_else_token1] = ACTIONS(1250), + [aux_sym_preproc_elif_token1] = ACTIONS(1250), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1250), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1250), + [sym_preproc_directive] = ACTIONS(1250), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(183), - [anon_sym_typedef] = ACTIONS(185), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(187), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP_AMP] = ACTIONS(1256), + [anon_sym_AMP] = ACTIONS(1258), + [anon_sym_SEMI] = ACTIONS(287), + [anon_sym___extension__] = ACTIONS(1260), + [anon_sym_typedef] = ACTIONS(291), + [anon_sym_virtual] = ACTIONS(1262), + [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(189), + [anon_sym_using] = ACTIONS(1250), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(49), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym___cdecl] = ACTIONS(55), - [anon_sym___clrcall] = ACTIONS(55), - [anon_sym___stdcall] = ACTIONS(55), - [anon_sym___fastcall] = ACTIONS(55), - [anon_sym___thiscall] = ACTIONS(55), - [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(1246), + [anon_sym___based] = ACTIONS(1250), + [anon_sym___cdecl] = ACTIONS(1250), + [anon_sym___clrcall] = ACTIONS(1250), + [anon_sym___stdcall] = ACTIONS(1250), + [anon_sym___fastcall] = ACTIONS(1250), + [anon_sym___thiscall] = ACTIONS(1250), + [anon_sym___vectorcall] = ACTIONS(1250), + [anon_sym_LBRACE] = ACTIONS(297), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(1266), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(197), + [anon_sym_inline] = ACTIONS(63), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -53388,19 +53898,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(75), [anon_sym_struct] = ACTIONS(77), [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), - [anon_sym_case] = ACTIONS(203), - [anon_sym_default] = ACTIONS(205), - [anon_sym_while] = ACTIONS(207), - [anon_sym_do] = ACTIONS(209), - [anon_sym_for] = ACTIONS(211), - [anon_sym_return] = ACTIONS(213), - [anon_sym_break] = ACTIONS(215), - [anon_sym_continue] = ACTIONS(217), - [anon_sym_goto] = ACTIONS(219), - [anon_sym___try] = ACTIONS(221), - [anon_sym___leave] = ACTIONS(223), + [anon_sym_if] = ACTIONS(301), + [anon_sym_else] = ACTIONS(1250), + [anon_sym_switch] = ACTIONS(303), + [anon_sym_case] = ACTIONS(1250), + [anon_sym_default] = ACTIONS(1250), + [anon_sym_while] = ACTIONS(309), + [anon_sym_do] = ACTIONS(311), + [anon_sym_for] = ACTIONS(313), + [anon_sym_return] = ACTIONS(315), + [anon_sym_break] = ACTIONS(317), + [anon_sym_continue] = ACTIONS(319), + [anon_sym_goto] = ACTIONS(321), + [anon_sym___try] = ACTIONS(323), + [anon_sym___leave] = ACTIONS(325), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -53434,18 +53945,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), + [anon_sym_explicit] = ACTIONS(1250), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(231), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_try] = ACTIONS(233), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_operator] = ACTIONS(1250), + [anon_sym_try] = ACTIONS(329), [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(235), - [anon_sym_namespace] = ACTIONS(237), - [anon_sym_static_assert] = ACTIONS(239), - [anon_sym_concept] = ACTIONS(241), - [anon_sym_co_return] = ACTIONS(243), - [anon_sym_co_yield] = ACTIONS(245), + [anon_sym_throw] = ACTIONS(331), + [anon_sym_namespace] = ACTIONS(1250), + [anon_sym_static_assert] = ACTIONS(1250), + [anon_sym_concept] = ACTIONS(1250), + [anon_sym_co_return] = ACTIONS(339), + [anon_sym_co_yield] = ACTIONS(341), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), @@ -53456,251 +53967,251 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [85] = { - [sym_declaration] = STATE(85), - [sym_type_definition] = STATE(85), - [sym__declaration_modifiers] = STATE(2136), - [sym__declaration_specifiers] = STATE(5180), - [sym_attribute_specifier] = STATE(2136), - [sym_attribute_declaration] = STATE(900), - [sym_ms_declspec_modifier] = STATE(2136), - [sym_compound_statement] = STATE(85), - [sym_storage_class_specifier] = STATE(2136), - [sym_type_qualifier] = STATE(2136), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(85), - [sym_labeled_statement] = STATE(85), - [sym_expression_statement] = STATE(85), - [sym_if_statement] = STATE(85), - [sym_switch_statement] = STATE(85), - [sym_while_statement] = STATE(85), - [sym_do_statement] = STATE(85), - [sym_for_statement] = STATE(85), - [sym_return_statement] = STATE(85), - [sym_break_statement] = STATE(85), - [sym_continue_statement] = STATE(85), - [sym_goto_statement] = STATE(85), - [sym_seh_try_statement] = STATE(85), - [sym_seh_leave_statement] = STATE(85), - [sym_expression] = STATE(4493), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8429), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_dependent_type] = STATE(2523), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(3889), - [sym_for_range_loop] = STATE(85), - [sym_co_return_statement] = STATE(85), - [sym_co_yield_statement] = STATE(85), - [sym_throw_statement] = STATE(85), - [sym_try_statement] = STATE(85), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5725), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(3109), - [sym_user_defined_literal] = STATE(3242), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(203), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_case_statement_repeat1] = STATE(85), - [sym_identifier] = ACTIONS(1248), - [aux_sym_preproc_include_token1] = ACTIONS(1251), - [aux_sym_preproc_def_token1] = ACTIONS(1251), - [aux_sym_preproc_if_token1] = ACTIONS(1251), - [aux_sym_preproc_if_token2] = ACTIONS(1251), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1251), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1251), - [aux_sym_preproc_else_token1] = ACTIONS(1251), - [aux_sym_preproc_elif_token1] = ACTIONS(1251), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1251), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1251), - [sym_preproc_directive] = ACTIONS(1251), - [anon_sym_LPAREN2] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(1256), - [anon_sym_TILDE] = ACTIONS(1256), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_STAR] = ACTIONS(1262), - [anon_sym_AMP_AMP] = ACTIONS(1265), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_SEMI] = ACTIONS(1270), - [anon_sym___extension__] = ACTIONS(1273), - [anon_sym_typedef] = ACTIONS(1276), - [anon_sym_virtual] = ACTIONS(1279), - [anon_sym_extern] = ACTIONS(1282), - [anon_sym___attribute__] = ACTIONS(1285), - [anon_sym___attribute] = ACTIONS(1285), - [anon_sym_using] = ACTIONS(1251), - [anon_sym_COLON_COLON] = ACTIONS(1288), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1291), - [anon_sym___declspec] = ACTIONS(1294), - [anon_sym___based] = ACTIONS(1251), - [anon_sym___cdecl] = ACTIONS(1251), - [anon_sym___clrcall] = ACTIONS(1251), - [anon_sym___stdcall] = ACTIONS(1251), - [anon_sym___fastcall] = ACTIONS(1251), - [anon_sym___thiscall] = ACTIONS(1251), - [anon_sym___vectorcall] = ACTIONS(1251), - [anon_sym_LBRACE] = ACTIONS(1297), - [anon_sym_signed] = ACTIONS(1300), - [anon_sym_unsigned] = ACTIONS(1300), - [anon_sym_long] = ACTIONS(1300), - [anon_sym_short] = ACTIONS(1300), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_static] = ACTIONS(1282), - [anon_sym_register] = ACTIONS(1282), - [anon_sym_inline] = ACTIONS(1282), - [anon_sym___inline] = ACTIONS(1282), - [anon_sym___inline__] = ACTIONS(1282), - [anon_sym___forceinline] = ACTIONS(1282), - [anon_sym_thread_local] = ACTIONS(1282), - [anon_sym___thread] = ACTIONS(1282), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [anon_sym__Nonnull] = ACTIONS(1306), - [anon_sym_mutable] = ACTIONS(1306), - [anon_sym_constinit] = ACTIONS(1306), - [anon_sym_consteval] = ACTIONS(1306), - [anon_sym_alignas] = ACTIONS(1309), - [anon_sym__Alignas] = ACTIONS(1309), - [sym_primitive_type] = ACTIONS(1312), - [anon_sym_enum] = ACTIONS(1315), - [anon_sym_class] = ACTIONS(1318), - [anon_sym_struct] = ACTIONS(1321), - [anon_sym_union] = ACTIONS(1324), - [anon_sym_if] = ACTIONS(1327), - [anon_sym_else] = ACTIONS(1251), - [anon_sym_switch] = ACTIONS(1330), - [anon_sym_case] = ACTIONS(1251), - [anon_sym_default] = ACTIONS(1251), - [anon_sym_while] = ACTIONS(1333), - [anon_sym_do] = ACTIONS(1336), - [anon_sym_for] = ACTIONS(1339), - [anon_sym_return] = ACTIONS(1342), - [anon_sym_break] = ACTIONS(1345), - [anon_sym_continue] = ACTIONS(1348), - [anon_sym_goto] = ACTIONS(1351), - [anon_sym___try] = ACTIONS(1354), - [anon_sym___leave] = ACTIONS(1357), - [anon_sym_not] = ACTIONS(1259), - [anon_sym_compl] = ACTIONS(1259), - [anon_sym_DASH_DASH] = ACTIONS(1360), - [anon_sym_PLUS_PLUS] = ACTIONS(1360), - [anon_sym_sizeof] = ACTIONS(1363), - [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(1369), - [anon_sym__Generic] = ACTIONS(1372), - [anon_sym_asm] = ACTIONS(1375), - [anon_sym___asm__] = ACTIONS(1375), - [anon_sym___asm] = ACTIONS(1375), - [sym_number_literal] = ACTIONS(1378), - [anon_sym_L_SQUOTE] = ACTIONS(1381), - [anon_sym_u_SQUOTE] = ACTIONS(1381), - [anon_sym_U_SQUOTE] = ACTIONS(1381), - [anon_sym_u8_SQUOTE] = ACTIONS(1381), - [anon_sym_SQUOTE] = ACTIONS(1381), - [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(1387), - [sym_false] = ACTIONS(1387), - [anon_sym_NULL] = ACTIONS(1390), - [anon_sym_nullptr] = ACTIONS(1390), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1393), - [anon_sym_decltype] = ACTIONS(1396), - [anon_sym_explicit] = ACTIONS(1251), - [anon_sym_typename] = ACTIONS(1399), - [anon_sym_template] = ACTIONS(1402), - [anon_sym_operator] = ACTIONS(1251), - [anon_sym_try] = ACTIONS(1405), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_throw] = ACTIONS(1411), - [anon_sym_namespace] = ACTIONS(1251), - [anon_sym_static_assert] = ACTIONS(1251), - [anon_sym_concept] = ACTIONS(1251), - [anon_sym_co_return] = ACTIONS(1414), - [anon_sym_co_yield] = ACTIONS(1417), - [anon_sym_R_DQUOTE] = ACTIONS(1420), - [anon_sym_LR_DQUOTE] = ACTIONS(1420), - [anon_sym_uR_DQUOTE] = ACTIONS(1420), - [anon_sym_UR_DQUOTE] = ACTIONS(1420), - [anon_sym_u8R_DQUOTE] = ACTIONS(1420), - [anon_sym_co_await] = ACTIONS(1423), - [anon_sym_new] = ACTIONS(1426), - [anon_sym_requires] = ACTIONS(1429), - [sym_this] = ACTIONS(1387), - }, [86] = { + [sym_declaration] = STATE(86), + [sym_type_definition] = STATE(86), + [sym__declaration_modifiers] = STATE(2095), + [sym__declaration_specifiers] = STATE(4645), + [sym_attribute_specifier] = STATE(2095), + [sym_attribute_declaration] = STATE(950), + [sym_ms_declspec_modifier] = STATE(2095), + [sym_compound_statement] = STATE(86), + [sym_storage_class_specifier] = STATE(2095), + [sym_type_qualifier] = STATE(2095), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(86), + [sym_labeled_statement] = STATE(86), + [sym_expression_statement] = STATE(86), + [sym_if_statement] = STATE(86), + [sym_switch_statement] = STATE(86), + [sym_while_statement] = STATE(86), + [sym_do_statement] = STATE(86), + [sym_for_statement] = STATE(86), + [sym_return_statement] = STATE(86), + [sym_break_statement] = STATE(86), + [sym_continue_statement] = STATE(86), + [sym_goto_statement] = STATE(86), + [sym_seh_try_statement] = STATE(86), + [sym_seh_leave_statement] = STATE(86), + [sym_expression] = STATE(4517), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8280), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_dependent_type] = STATE(2558), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(3898), + [sym_for_range_loop] = STATE(86), + [sym_co_return_statement] = STATE(86), + [sym_co_yield_statement] = STATE(86), + [sym_throw_statement] = STATE(86), + [sym_try_statement] = STATE(86), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5721), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(3059), + [sym_user_defined_literal] = STATE(3323), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(205), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_case_statement_repeat1] = STATE(86), + [sym_identifier] = ACTIONS(1270), + [aux_sym_preproc_include_token1] = ACTIONS(1273), + [aux_sym_preproc_def_token1] = ACTIONS(1273), + [aux_sym_preproc_if_token1] = ACTIONS(1273), + [aux_sym_preproc_if_token2] = ACTIONS(1273), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1273), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1273), + [aux_sym_preproc_else_token1] = ACTIONS(1273), + [aux_sym_preproc_elif_token1] = ACTIONS(1273), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1273), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1273), + [sym_preproc_directive] = ACTIONS(1273), + [anon_sym_LPAREN2] = ACTIONS(1275), + [anon_sym_BANG] = ACTIONS(1278), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_DASH] = ACTIONS(1281), + [anon_sym_PLUS] = ACTIONS(1281), + [anon_sym_STAR] = ACTIONS(1284), + [anon_sym_AMP_AMP] = ACTIONS(1287), + [anon_sym_AMP] = ACTIONS(1289), + [anon_sym_SEMI] = ACTIONS(1292), + [anon_sym___extension__] = ACTIONS(1295), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_virtual] = ACTIONS(1301), + [anon_sym_extern] = ACTIONS(1304), + [anon_sym___attribute__] = ACTIONS(1307), + [anon_sym___attribute] = ACTIONS(1307), + [anon_sym_using] = ACTIONS(1273), + [anon_sym_COLON_COLON] = ACTIONS(1310), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1313), + [anon_sym___declspec] = ACTIONS(1316), + [anon_sym___based] = ACTIONS(1273), + [anon_sym___cdecl] = ACTIONS(1273), + [anon_sym___clrcall] = ACTIONS(1273), + [anon_sym___stdcall] = ACTIONS(1273), + [anon_sym___fastcall] = ACTIONS(1273), + [anon_sym___thiscall] = ACTIONS(1273), + [anon_sym___vectorcall] = ACTIONS(1273), + [anon_sym_LBRACE] = ACTIONS(1319), + [anon_sym_signed] = ACTIONS(1322), + [anon_sym_unsigned] = ACTIONS(1322), + [anon_sym_long] = ACTIONS(1322), + [anon_sym_short] = ACTIONS(1322), + [anon_sym_LBRACK] = ACTIONS(1325), + [anon_sym_static] = ACTIONS(1304), + [anon_sym_register] = ACTIONS(1304), + [anon_sym_inline] = ACTIONS(1304), + [anon_sym___inline] = ACTIONS(1304), + [anon_sym___inline__] = ACTIONS(1304), + [anon_sym___forceinline] = ACTIONS(1304), + [anon_sym_thread_local] = ACTIONS(1304), + [anon_sym___thread] = ACTIONS(1304), + [anon_sym_const] = ACTIONS(1328), + [anon_sym_constexpr] = ACTIONS(1328), + [anon_sym_volatile] = ACTIONS(1328), + [anon_sym_restrict] = ACTIONS(1328), + [anon_sym___restrict__] = ACTIONS(1328), + [anon_sym__Atomic] = ACTIONS(1328), + [anon_sym__Noreturn] = ACTIONS(1328), + [anon_sym_noreturn] = ACTIONS(1328), + [anon_sym__Nonnull] = ACTIONS(1328), + [anon_sym_mutable] = ACTIONS(1328), + [anon_sym_constinit] = ACTIONS(1328), + [anon_sym_consteval] = ACTIONS(1328), + [anon_sym_alignas] = ACTIONS(1331), + [anon_sym__Alignas] = ACTIONS(1331), + [sym_primitive_type] = ACTIONS(1334), + [anon_sym_enum] = ACTIONS(1337), + [anon_sym_class] = ACTIONS(1340), + [anon_sym_struct] = ACTIONS(1343), + [anon_sym_union] = ACTIONS(1346), + [anon_sym_if] = ACTIONS(1349), + [anon_sym_else] = ACTIONS(1273), + [anon_sym_switch] = ACTIONS(1352), + [anon_sym_case] = ACTIONS(1273), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_while] = ACTIONS(1355), + [anon_sym_do] = ACTIONS(1358), + [anon_sym_for] = ACTIONS(1361), + [anon_sym_return] = ACTIONS(1364), + [anon_sym_break] = ACTIONS(1367), + [anon_sym_continue] = ACTIONS(1370), + [anon_sym_goto] = ACTIONS(1373), + [anon_sym___try] = ACTIONS(1376), + [anon_sym___leave] = ACTIONS(1379), + [anon_sym_not] = ACTIONS(1281), + [anon_sym_compl] = ACTIONS(1281), + [anon_sym_DASH_DASH] = ACTIONS(1382), + [anon_sym_PLUS_PLUS] = ACTIONS(1382), + [anon_sym_sizeof] = ACTIONS(1385), + [anon_sym___alignof__] = ACTIONS(1388), + [anon_sym___alignof] = ACTIONS(1388), + [anon_sym__alignof] = ACTIONS(1388), + [anon_sym_alignof] = ACTIONS(1388), + [anon_sym__Alignof] = ACTIONS(1388), + [anon_sym_offsetof] = ACTIONS(1391), + [anon_sym__Generic] = ACTIONS(1394), + [anon_sym_asm] = ACTIONS(1397), + [anon_sym___asm__] = ACTIONS(1397), + [anon_sym___asm] = ACTIONS(1397), + [sym_number_literal] = ACTIONS(1400), + [anon_sym_L_SQUOTE] = ACTIONS(1403), + [anon_sym_u_SQUOTE] = ACTIONS(1403), + [anon_sym_U_SQUOTE] = ACTIONS(1403), + [anon_sym_u8_SQUOTE] = ACTIONS(1403), + [anon_sym_SQUOTE] = ACTIONS(1403), + [anon_sym_L_DQUOTE] = ACTIONS(1406), + [anon_sym_u_DQUOTE] = ACTIONS(1406), + [anon_sym_U_DQUOTE] = ACTIONS(1406), + [anon_sym_u8_DQUOTE] = ACTIONS(1406), + [anon_sym_DQUOTE] = ACTIONS(1406), + [sym_true] = ACTIONS(1409), + [sym_false] = ACTIONS(1409), + [anon_sym_NULL] = ACTIONS(1412), + [anon_sym_nullptr] = ACTIONS(1412), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1415), + [anon_sym_decltype] = ACTIONS(1418), + [anon_sym_explicit] = ACTIONS(1273), + [anon_sym_typename] = ACTIONS(1421), + [anon_sym_template] = ACTIONS(1424), + [anon_sym_operator] = ACTIONS(1273), + [anon_sym_try] = ACTIONS(1427), + [anon_sym_delete] = ACTIONS(1430), + [anon_sym_throw] = ACTIONS(1433), + [anon_sym_namespace] = ACTIONS(1273), + [anon_sym_static_assert] = ACTIONS(1273), + [anon_sym_concept] = ACTIONS(1273), + [anon_sym_co_return] = ACTIONS(1436), + [anon_sym_co_yield] = ACTIONS(1439), + [anon_sym_R_DQUOTE] = ACTIONS(1442), + [anon_sym_LR_DQUOTE] = ACTIONS(1442), + [anon_sym_uR_DQUOTE] = ACTIONS(1442), + [anon_sym_UR_DQUOTE] = ACTIONS(1442), + [anon_sym_u8R_DQUOTE] = ACTIONS(1442), + [anon_sym_co_await] = ACTIONS(1445), + [anon_sym_new] = ACTIONS(1448), + [anon_sym_requires] = ACTIONS(1451), + [sym_this] = ACTIONS(1409), + }, + [87] = { [sym_declaration] = STATE(88), [sym_type_definition] = STATE(88), - [sym__declaration_modifiers] = STATE(2136), - [sym__declaration_specifiers] = STATE(5180), - [sym_attribute_specifier] = STATE(2136), - [sym_attribute_declaration] = STATE(900), - [sym_ms_declspec_modifier] = STATE(2136), + [sym__declaration_modifiers] = STATE(2095), + [sym__declaration_specifiers] = STATE(4645), + [sym_attribute_specifier] = STATE(2095), + [sym_attribute_declaration] = STATE(950), + [sym_ms_declspec_modifier] = STATE(2095), [sym_compound_statement] = STATE(88), - [sym_storage_class_specifier] = STATE(2136), - [sym_type_qualifier] = STATE(2136), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), + [sym_storage_class_specifier] = STATE(2095), + [sym_type_qualifier] = STATE(2095), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), [sym_attributed_statement] = STATE(88), [sym_labeled_statement] = STATE(88), [sym_expression_statement] = STATE(88), @@ -53715,107 +54226,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(88), [sym_seh_try_statement] = STATE(88), [sym_seh_leave_statement] = STATE(88), - [sym_expression] = STATE(4493), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8429), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_dependent_type] = STATE(2523), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(3889), + [sym_expression] = STATE(4517), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8280), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_dependent_type] = STATE(2558), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(3898), [sym_for_range_loop] = STATE(88), [sym_co_return_statement] = STATE(88), [sym_co_yield_statement] = STATE(88), [sym_throw_statement] = STATE(88), [sym_try_statement] = STATE(88), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5725), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(3109), - [sym_user_defined_literal] = STATE(3242), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(203), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5721), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(3059), + [sym_user_defined_literal] = STATE(3323), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(205), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), [aux_sym_case_statement_repeat1] = STATE(88), - [sym_identifier] = ACTIONS(1432), - [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), + [sym_identifier] = ACTIONS(1248), + [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(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP_AMP] = ACTIONS(1440), - [anon_sym_AMP] = ACTIONS(1442), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP_AMP] = ACTIONS(1456), + [anon_sym_AMP] = ACTIONS(1258), [anon_sym_SEMI] = ACTIONS(287), - [anon_sym___extension__] = ACTIONS(1444), + [anon_sym___extension__] = ACTIONS(1260), [anon_sym_typedef] = ACTIONS(291), - [anon_sym_virtual] = ACTIONS(1446), + [anon_sym_virtual] = ACTIONS(1262), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1434), + [anon_sym_using] = ACTIONS(1454), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = 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___based] = 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(297), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1450), + [anon_sym_LBRACK] = ACTIONS(1266), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -53844,10 +54355,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(77), [anon_sym_union] = ACTIONS(79), [anon_sym_if] = ACTIONS(301), - [anon_sym_else] = ACTIONS(1434), + [anon_sym_else] = ACTIONS(1454), [anon_sym_switch] = ACTIONS(303), - [anon_sym_case] = ACTIONS(1434), - [anon_sym_default] = ACTIONS(1434), + [anon_sym_case] = ACTIONS(1454), + [anon_sym_default] = ACTIONS(1454), [anon_sym_while] = ACTIONS(309), [anon_sym_do] = ACTIONS(311), [anon_sym_for] = ACTIONS(313), @@ -53890,16 +54401,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(1434), + [anon_sym_explicit] = ACTIONS(1454), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_operator] = ACTIONS(1434), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_operator] = ACTIONS(1454), [anon_sym_try] = ACTIONS(329), [anon_sym_delete] = ACTIONS(145), [anon_sym_throw] = ACTIONS(331), - [anon_sym_namespace] = ACTIONS(1434), - [anon_sym_static_assert] = ACTIONS(1434), - [anon_sym_concept] = ACTIONS(1434), + [anon_sym_namespace] = ACTIONS(1454), + [anon_sym_static_assert] = ACTIONS(1454), + [anon_sym_concept] = ACTIONS(1454), [anon_sym_co_return] = ACTIONS(339), [anon_sym_co_yield] = ACTIONS(341), [anon_sym_R_DQUOTE] = ACTIONS(159), @@ -53912,138 +54423,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [87] = { - [sym_declaration] = STATE(89), - [sym_type_definition] = STATE(89), - [sym__declaration_modifiers] = STATE(2136), - [sym__declaration_specifiers] = STATE(5180), - [sym_attribute_specifier] = STATE(2136), - [sym_attribute_declaration] = STATE(900), - [sym_ms_declspec_modifier] = STATE(2136), - [sym_compound_statement] = STATE(89), - [sym_storage_class_specifier] = STATE(2136), - [sym_type_qualifier] = STATE(2136), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(89), - [sym_labeled_statement] = STATE(89), - [sym_expression_statement] = STATE(89), - [sym_if_statement] = STATE(89), - [sym_switch_statement] = STATE(89), - [sym_while_statement] = STATE(89), - [sym_do_statement] = STATE(89), - [sym_for_statement] = STATE(89), - [sym_return_statement] = STATE(89), - [sym_break_statement] = STATE(89), - [sym_continue_statement] = STATE(89), - [sym_goto_statement] = STATE(89), - [sym_seh_try_statement] = STATE(89), - [sym_seh_leave_statement] = STATE(89), - [sym_expression] = STATE(4493), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8429), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_dependent_type] = STATE(2523), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(3889), - [sym_for_range_loop] = STATE(89), - [sym_co_return_statement] = STATE(89), - [sym_co_yield_statement] = STATE(89), - [sym_throw_statement] = STATE(89), - [sym_try_statement] = STATE(89), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5725), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(3109), - [sym_user_defined_literal] = STATE(3242), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(203), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_case_statement_repeat1] = STATE(89), - [sym_identifier] = ACTIONS(1432), - [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(1436), + [88] = { + [sym_declaration] = STATE(86), + [sym_type_definition] = STATE(86), + [sym__declaration_modifiers] = STATE(2095), + [sym__declaration_specifiers] = STATE(4645), + [sym_attribute_specifier] = STATE(2095), + [sym_attribute_declaration] = STATE(950), + [sym_ms_declspec_modifier] = STATE(2095), + [sym_compound_statement] = STATE(86), + [sym_storage_class_specifier] = STATE(2095), + [sym_type_qualifier] = STATE(2095), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(86), + [sym_labeled_statement] = STATE(86), + [sym_expression_statement] = STATE(86), + [sym_if_statement] = STATE(86), + [sym_switch_statement] = STATE(86), + [sym_while_statement] = STATE(86), + [sym_do_statement] = STATE(86), + [sym_for_statement] = STATE(86), + [sym_return_statement] = STATE(86), + [sym_break_statement] = STATE(86), + [sym_continue_statement] = STATE(86), + [sym_goto_statement] = STATE(86), + [sym_seh_try_statement] = STATE(86), + [sym_seh_leave_statement] = STATE(86), + [sym_expression] = STATE(4517), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8280), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_dependent_type] = STATE(2558), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(3898), + [sym_for_range_loop] = STATE(86), + [sym_co_return_statement] = STATE(86), + [sym_co_yield_statement] = STATE(86), + [sym_throw_statement] = STATE(86), + [sym_try_statement] = STATE(86), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5721), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(3059), + [sym_user_defined_literal] = STATE(3323), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(205), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_case_statement_repeat1] = STATE(86), + [sym_identifier] = ACTIONS(1248), + [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(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP_AMP] = ACTIONS(1456), - [anon_sym_AMP] = ACTIONS(1442), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP_AMP] = ACTIONS(1460), + [anon_sym_AMP] = ACTIONS(1258), [anon_sym_SEMI] = ACTIONS(287), - [anon_sym___extension__] = ACTIONS(1444), + [anon_sym___extension__] = ACTIONS(1260), [anon_sym_typedef] = ACTIONS(291), - [anon_sym_virtual] = ACTIONS(1446), + [anon_sym_virtual] = ACTIONS(1262), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1454), + [anon_sym_using] = ACTIONS(1458), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = 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___based] = 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(297), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1450), + [anon_sym_LBRACK] = ACTIONS(1266), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -54072,10 +54583,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(77), [anon_sym_union] = ACTIONS(79), [anon_sym_if] = ACTIONS(301), - [anon_sym_else] = ACTIONS(1454), + [anon_sym_else] = ACTIONS(1458), [anon_sym_switch] = ACTIONS(303), - [anon_sym_case] = ACTIONS(1454), - [anon_sym_default] = ACTIONS(1454), + [anon_sym_case] = ACTIONS(1458), + [anon_sym_default] = ACTIONS(1458), [anon_sym_while] = ACTIONS(309), [anon_sym_do] = ACTIONS(311), [anon_sym_for] = ACTIONS(313), @@ -54118,16 +54629,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(1454), + [anon_sym_explicit] = ACTIONS(1458), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_operator] = ACTIONS(1454), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_operator] = ACTIONS(1458), [anon_sym_try] = ACTIONS(329), [anon_sym_delete] = ACTIONS(145), [anon_sym_throw] = ACTIONS(331), - [anon_sym_namespace] = ACTIONS(1454), - [anon_sym_static_assert] = ACTIONS(1454), - [anon_sym_concept] = ACTIONS(1454), + [anon_sym_namespace] = ACTIONS(1458), + [anon_sym_static_assert] = ACTIONS(1458), + [anon_sym_concept] = ACTIONS(1458), [anon_sym_co_return] = ACTIONS(339), [anon_sym_co_yield] = ACTIONS(341), [anon_sym_R_DQUOTE] = ACTIONS(159), @@ -54140,23 +54651,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [88] = { + [89] = { [sym_declaration] = STATE(85), [sym_type_definition] = STATE(85), - [sym__declaration_modifiers] = STATE(2136), - [sym__declaration_specifiers] = STATE(5180), - [sym_attribute_specifier] = STATE(2136), - [sym_attribute_declaration] = STATE(900), - [sym_ms_declspec_modifier] = STATE(2136), + [sym__declaration_modifiers] = STATE(2095), + [sym__declaration_specifiers] = STATE(4645), + [sym_attribute_specifier] = STATE(2095), + [sym_attribute_declaration] = STATE(950), + [sym_ms_declspec_modifier] = STATE(2095), [sym_compound_statement] = STATE(85), - [sym_storage_class_specifier] = STATE(2136), - [sym_type_qualifier] = STATE(2136), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), + [sym_storage_class_specifier] = STATE(2095), + [sym_type_qualifier] = STATE(2095), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), [sym_attributed_statement] = STATE(85), [sym_labeled_statement] = STATE(85), [sym_expression_statement] = STATE(85), @@ -54171,107 +54682,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(85), [sym_seh_try_statement] = STATE(85), [sym_seh_leave_statement] = STATE(85), - [sym_expression] = STATE(4493), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8429), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_dependent_type] = STATE(2523), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(3889), + [sym_expression] = STATE(4517), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8280), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_dependent_type] = STATE(2558), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(3898), [sym_for_range_loop] = STATE(85), [sym_co_return_statement] = STATE(85), [sym_co_yield_statement] = STATE(85), [sym_throw_statement] = STATE(85), [sym_try_statement] = STATE(85), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5725), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(3109), - [sym_user_defined_literal] = STATE(3242), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(203), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5721), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(3059), + [sym_user_defined_literal] = STATE(3323), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(205), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), [aux_sym_case_statement_repeat1] = STATE(85), - [sym_identifier] = ACTIONS(1432), - [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(1436), + [sym_identifier] = ACTIONS(1248), + [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(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP_AMP] = ACTIONS(1460), - [anon_sym_AMP] = ACTIONS(1442), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP_AMP] = ACTIONS(1464), + [anon_sym_AMP] = ACTIONS(1258), [anon_sym_SEMI] = ACTIONS(287), - [anon_sym___extension__] = ACTIONS(1444), + [anon_sym___extension__] = ACTIONS(1260), [anon_sym_typedef] = ACTIONS(291), - [anon_sym_virtual] = ACTIONS(1446), + [anon_sym_virtual] = ACTIONS(1262), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1458), + [anon_sym_using] = ACTIONS(1462), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = 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___based] = 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(297), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1450), + [anon_sym_LBRACK] = ACTIONS(1266), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -54300,10 +54811,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(77), [anon_sym_union] = ACTIONS(79), [anon_sym_if] = ACTIONS(301), - [anon_sym_else] = ACTIONS(1458), + [anon_sym_else] = ACTIONS(1462), [anon_sym_switch] = ACTIONS(303), - [anon_sym_case] = ACTIONS(1458), - [anon_sym_default] = ACTIONS(1458), + [anon_sym_case] = ACTIONS(1462), + [anon_sym_default] = ACTIONS(1462), [anon_sym_while] = ACTIONS(309), [anon_sym_do] = ACTIONS(311), [anon_sym_for] = ACTIONS(313), @@ -54346,16 +54857,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(1458), + [anon_sym_explicit] = ACTIONS(1462), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_operator] = ACTIONS(1458), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_operator] = ACTIONS(1462), [anon_sym_try] = ACTIONS(329), [anon_sym_delete] = ACTIONS(145), [anon_sym_throw] = ACTIONS(331), - [anon_sym_namespace] = ACTIONS(1458), - [anon_sym_static_assert] = ACTIONS(1458), - [anon_sym_concept] = ACTIONS(1458), + [anon_sym_namespace] = ACTIONS(1462), + [anon_sym_static_assert] = ACTIONS(1462), + [anon_sym_concept] = ACTIONS(1462), [anon_sym_co_return] = ACTIONS(339), [anon_sym_co_yield] = ACTIONS(341), [anon_sym_R_DQUOTE] = ACTIONS(159), @@ -54368,124 +54879,347 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [89] = { - [sym_declaration] = STATE(85), - [sym_type_definition] = STATE(85), - [sym__declaration_modifiers] = STATE(2136), - [sym__declaration_specifiers] = STATE(5180), - [sym_attribute_specifier] = STATE(2136), - [sym_attribute_declaration] = STATE(900), - [sym_ms_declspec_modifier] = STATE(2136), - [sym_compound_statement] = STATE(85), - [sym_storage_class_specifier] = STATE(2136), - [sym_type_qualifier] = STATE(2136), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(85), - [sym_labeled_statement] = STATE(85), - [sym_expression_statement] = STATE(85), - [sym_if_statement] = STATE(85), - [sym_switch_statement] = STATE(85), - [sym_while_statement] = STATE(85), - [sym_do_statement] = STATE(85), - [sym_for_statement] = STATE(85), - [sym_return_statement] = STATE(85), - [sym_break_statement] = STATE(85), - [sym_continue_statement] = STATE(85), - [sym_goto_statement] = STATE(85), - [sym_seh_try_statement] = STATE(85), - [sym_seh_leave_statement] = STATE(85), - [sym_expression] = STATE(4493), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8429), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_dependent_type] = STATE(2523), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(3889), - [sym_for_range_loop] = STATE(85), - [sym_co_return_statement] = STATE(85), - [sym_co_yield_statement] = STATE(85), - [sym_throw_statement] = STATE(85), - [sym_try_statement] = STATE(85), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5725), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(3109), - [sym_user_defined_literal] = STATE(3242), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(203), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_case_statement_repeat1] = STATE(85), - [sym_identifier] = ACTIONS(1432), + [90] = { + [sym_declaration] = STATE(90), + [sym_type_definition] = STATE(90), + [sym__declaration_modifiers] = STATE(2095), + [sym__declaration_specifiers] = STATE(4759), + [sym_attribute_specifier] = STATE(2095), + [sym_attribute_declaration] = STATE(950), + [sym_ms_declspec_modifier] = STATE(2095), + [sym_compound_statement] = STATE(90), + [sym_storage_class_specifier] = STATE(2095), + [sym_type_qualifier] = STATE(2095), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [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_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(4499), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8264), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_dependent_type] = STATE(2558), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(3898), + [sym_for_range_loop] = STATE(90), + [sym_co_return_statement] = STATE(90), + [sym_co_yield_statement] = STATE(90), + [sym_throw_statement] = STATE(90), + [sym_try_statement] = STATE(90), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5721), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(3059), + [sym_user_defined_literal] = STATE(3323), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(198), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_case_statement_repeat1] = STATE(90), + [ts_builtin_sym_end] = ACTIONS(1287), + [sym_identifier] = ACTIONS(1466), + [aux_sym_preproc_include_token1] = ACTIONS(1273), + [aux_sym_preproc_def_token1] = ACTIONS(1273), + [aux_sym_preproc_if_token1] = ACTIONS(1273), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1273), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1273), + [sym_preproc_directive] = ACTIONS(1273), + [anon_sym_LPAREN2] = ACTIONS(1275), + [anon_sym_BANG] = ACTIONS(1278), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_DASH] = ACTIONS(1281), + [anon_sym_PLUS] = ACTIONS(1281), + [anon_sym_STAR] = ACTIONS(1284), + [anon_sym_AMP_AMP] = ACTIONS(1287), + [anon_sym_AMP] = ACTIONS(1289), + [anon_sym_SEMI] = ACTIONS(1469), + [anon_sym___extension__] = ACTIONS(1472), + [anon_sym_typedef] = ACTIONS(1475), + [anon_sym_virtual] = ACTIONS(1301), + [anon_sym_extern] = ACTIONS(1304), + [anon_sym___attribute__] = ACTIONS(1307), + [anon_sym___attribute] = ACTIONS(1307), + [anon_sym_using] = ACTIONS(1273), + [anon_sym_COLON_COLON] = ACTIONS(1310), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1313), + [anon_sym___declspec] = ACTIONS(1316), + [anon_sym___based] = ACTIONS(1273), + [anon_sym___cdecl] = ACTIONS(1273), + [anon_sym___clrcall] = ACTIONS(1273), + [anon_sym___stdcall] = ACTIONS(1273), + [anon_sym___fastcall] = ACTIONS(1273), + [anon_sym___thiscall] = ACTIONS(1273), + [anon_sym___vectorcall] = ACTIONS(1273), + [anon_sym_LBRACE] = ACTIONS(1478), + [anon_sym_signed] = ACTIONS(1322), + [anon_sym_unsigned] = ACTIONS(1322), + [anon_sym_long] = ACTIONS(1322), + [anon_sym_short] = ACTIONS(1322), + [anon_sym_LBRACK] = ACTIONS(1325), + [anon_sym_static] = ACTIONS(1304), + [anon_sym_register] = ACTIONS(1304), + [anon_sym_inline] = ACTIONS(1304), + [anon_sym___inline] = ACTIONS(1304), + [anon_sym___inline__] = ACTIONS(1304), + [anon_sym___forceinline] = ACTIONS(1304), + [anon_sym_thread_local] = ACTIONS(1304), + [anon_sym___thread] = ACTIONS(1304), + [anon_sym_const] = ACTIONS(1328), + [anon_sym_constexpr] = ACTIONS(1328), + [anon_sym_volatile] = ACTIONS(1328), + [anon_sym_restrict] = ACTIONS(1328), + [anon_sym___restrict__] = ACTIONS(1328), + [anon_sym__Atomic] = ACTIONS(1328), + [anon_sym__Noreturn] = ACTIONS(1328), + [anon_sym_noreturn] = ACTIONS(1328), + [anon_sym__Nonnull] = ACTIONS(1328), + [anon_sym_mutable] = ACTIONS(1328), + [anon_sym_constinit] = ACTIONS(1328), + [anon_sym_consteval] = ACTIONS(1328), + [anon_sym_alignas] = ACTIONS(1331), + [anon_sym__Alignas] = ACTIONS(1331), + [sym_primitive_type] = ACTIONS(1334), + [anon_sym_enum] = ACTIONS(1337), + [anon_sym_class] = ACTIONS(1340), + [anon_sym_struct] = ACTIONS(1343), + [anon_sym_union] = ACTIONS(1346), + [anon_sym_if] = ACTIONS(1481), + [anon_sym_else] = ACTIONS(1273), + [anon_sym_switch] = ACTIONS(1484), + [anon_sym_case] = ACTIONS(1273), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_while] = ACTIONS(1487), + [anon_sym_do] = ACTIONS(1490), + [anon_sym_for] = ACTIONS(1493), + [anon_sym_return] = ACTIONS(1496), + [anon_sym_break] = ACTIONS(1499), + [anon_sym_continue] = ACTIONS(1502), + [anon_sym_goto] = ACTIONS(1505), + [anon_sym___try] = ACTIONS(1508), + [anon_sym___leave] = ACTIONS(1511), + [anon_sym_not] = ACTIONS(1281), + [anon_sym_compl] = ACTIONS(1281), + [anon_sym_DASH_DASH] = ACTIONS(1382), + [anon_sym_PLUS_PLUS] = ACTIONS(1382), + [anon_sym_sizeof] = ACTIONS(1385), + [anon_sym___alignof__] = ACTIONS(1388), + [anon_sym___alignof] = ACTIONS(1388), + [anon_sym__alignof] = ACTIONS(1388), + [anon_sym_alignof] = ACTIONS(1388), + [anon_sym__Alignof] = ACTIONS(1388), + [anon_sym_offsetof] = ACTIONS(1391), + [anon_sym__Generic] = ACTIONS(1394), + [anon_sym_asm] = ACTIONS(1397), + [anon_sym___asm__] = ACTIONS(1397), + [anon_sym___asm] = ACTIONS(1397), + [sym_number_literal] = ACTIONS(1400), + [anon_sym_L_SQUOTE] = ACTIONS(1403), + [anon_sym_u_SQUOTE] = ACTIONS(1403), + [anon_sym_U_SQUOTE] = ACTIONS(1403), + [anon_sym_u8_SQUOTE] = ACTIONS(1403), + [anon_sym_SQUOTE] = ACTIONS(1403), + [anon_sym_L_DQUOTE] = ACTIONS(1406), + [anon_sym_u_DQUOTE] = ACTIONS(1406), + [anon_sym_U_DQUOTE] = ACTIONS(1406), + [anon_sym_u8_DQUOTE] = ACTIONS(1406), + [anon_sym_DQUOTE] = ACTIONS(1406), + [sym_true] = ACTIONS(1409), + [sym_false] = ACTIONS(1409), + [anon_sym_NULL] = ACTIONS(1412), + [anon_sym_nullptr] = ACTIONS(1412), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1415), + [anon_sym_decltype] = ACTIONS(1418), + [anon_sym_explicit] = ACTIONS(1273), + [anon_sym_typename] = ACTIONS(1421), + [anon_sym_export] = ACTIONS(1273), + [anon_sym_module] = ACTIONS(1273), + [anon_sym_import] = ACTIONS(1273), + [anon_sym_template] = ACTIONS(1424), + [anon_sym_operator] = ACTIONS(1273), + [anon_sym_try] = ACTIONS(1514), + [anon_sym_delete] = ACTIONS(1430), + [anon_sym_throw] = ACTIONS(1517), + [anon_sym_namespace] = ACTIONS(1273), + [anon_sym_static_assert] = ACTIONS(1273), + [anon_sym_concept] = ACTIONS(1273), + [anon_sym_co_return] = ACTIONS(1520), + [anon_sym_co_yield] = ACTIONS(1523), + [anon_sym_R_DQUOTE] = ACTIONS(1442), + [anon_sym_LR_DQUOTE] = ACTIONS(1442), + [anon_sym_uR_DQUOTE] = ACTIONS(1442), + [anon_sym_UR_DQUOTE] = ACTIONS(1442), + [anon_sym_u8R_DQUOTE] = ACTIONS(1442), + [anon_sym_co_await] = ACTIONS(1445), + [anon_sym_new] = ACTIONS(1448), + [anon_sym_requires] = ACTIONS(1451), + [sym_this] = ACTIONS(1409), + }, + [91] = { + [sym_declaration] = STATE(93), + [sym_type_definition] = STATE(93), + [sym__declaration_modifiers] = STATE(2095), + [sym__declaration_specifiers] = STATE(4759), + [sym_attribute_specifier] = STATE(2095), + [sym_attribute_declaration] = STATE(950), + [sym_ms_declspec_modifier] = STATE(2095), + [sym_compound_statement] = STATE(93), + [sym_storage_class_specifier] = STATE(2095), + [sym_type_qualifier] = STATE(2095), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(93), + [sym_labeled_statement] = STATE(93), + [sym_expression_statement] = STATE(93), + [sym_if_statement] = STATE(93), + [sym_switch_statement] = STATE(93), + [sym_while_statement] = STATE(93), + [sym_do_statement] = STATE(93), + [sym_for_statement] = STATE(93), + [sym_return_statement] = STATE(93), + [sym_break_statement] = STATE(93), + [sym_continue_statement] = STATE(93), + [sym_goto_statement] = STATE(93), + [sym_seh_try_statement] = STATE(93), + [sym_seh_leave_statement] = STATE(93), + [sym_expression] = STATE(4499), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8264), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_dependent_type] = STATE(2558), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(3898), + [sym_for_range_loop] = STATE(93), + [sym_co_return_statement] = STATE(93), + [sym_co_yield_statement] = STATE(93), + [sym_throw_statement] = STATE(93), + [sym_try_statement] = STATE(93), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5721), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(3059), + [sym_user_defined_literal] = STATE(3323), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(198), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_case_statement_repeat1] = STATE(93), + [ts_builtin_sym_end] = ACTIONS(1464), + [sym_identifier] = ACTIONS(1526), [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(1436), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1254), [anon_sym_AMP_AMP] = ACTIONS(1464), - [anon_sym_AMP] = ACTIONS(1442), - [anon_sym_SEMI] = ACTIONS(287), - [anon_sym___extension__] = ACTIONS(1444), - [anon_sym_typedef] = ACTIONS(291), - [anon_sym_virtual] = ACTIONS(1446), + [anon_sym_AMP] = ACTIONS(1258), + [anon_sym_SEMI] = ACTIONS(1212), + [anon_sym___extension__] = ACTIONS(1528), + [anon_sym_typedef] = ACTIONS(37), + [anon_sym_virtual] = ACTIONS(1262), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), [anon_sym_using] = ACTIONS(1462), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(1462), [anon_sym___cdecl] = ACTIONS(1462), @@ -54494,12 +55228,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(1462), [anon_sym___thiscall] = ACTIONS(1462), [anon_sym___vectorcall] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(297), + [anon_sym_LBRACE] = ACTIONS(57), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1450), + [anon_sym_LBRACK] = ACTIONS(1266), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -54527,20 +55261,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(75), [anon_sym_struct] = ACTIONS(77), [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(301), + [anon_sym_if] = ACTIONS(81), [anon_sym_else] = ACTIONS(1462), - [anon_sym_switch] = ACTIONS(303), + [anon_sym_switch] = ACTIONS(83), [anon_sym_case] = ACTIONS(1462), [anon_sym_default] = ACTIONS(1462), - [anon_sym_while] = ACTIONS(309), - [anon_sym_do] = ACTIONS(311), - [anon_sym_for] = ACTIONS(313), - [anon_sym_return] = ACTIONS(315), - [anon_sym_break] = ACTIONS(317), - [anon_sym_continue] = ACTIONS(319), - [anon_sym_goto] = ACTIONS(321), - [anon_sym___try] = ACTIONS(323), - [anon_sym___leave] = ACTIONS(325), + [anon_sym_while] = ACTIONS(89), + [anon_sym_do] = ACTIONS(91), + [anon_sym_for] = ACTIONS(93), + [anon_sym_return] = ACTIONS(95), + [anon_sym_break] = ACTIONS(97), + [anon_sym_continue] = ACTIONS(99), + [anon_sym_goto] = ACTIONS(101), + [anon_sym___try] = ACTIONS(1216), + [anon_sym___leave] = ACTIONS(1218), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -54576,16 +55310,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_decltype] = ACTIONS(127), [anon_sym_explicit] = ACTIONS(1462), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_export] = ACTIONS(1462), + [anon_sym_module] = ACTIONS(1462), + [anon_sym_import] = ACTIONS(1462), + [anon_sym_template] = ACTIONS(1268), [anon_sym_operator] = ACTIONS(1462), - [anon_sym_try] = ACTIONS(329), + [anon_sym_try] = ACTIONS(143), [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(331), + [anon_sym_throw] = ACTIONS(147), [anon_sym_namespace] = ACTIONS(1462), [anon_sym_static_assert] = ACTIONS(1462), [anon_sym_concept] = ACTIONS(1462), - [anon_sym_co_return] = ACTIONS(339), - [anon_sym_co_yield] = ACTIONS(341), + [anon_sym_co_return] = ACTIONS(155), + [anon_sym_co_yield] = ACTIONS(157), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), @@ -54596,134 +55333,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [90] = { - [sym_declaration] = STATE(91), - [sym_type_definition] = STATE(91), - [sym__declaration_modifiers] = STATE(2136), - [sym__declaration_specifiers] = STATE(5215), - [sym_attribute_specifier] = STATE(2136), - [sym_attribute_declaration] = STATE(900), - [sym_ms_declspec_modifier] = STATE(2136), - [sym_compound_statement] = STATE(91), - [sym_storage_class_specifier] = STATE(2136), - [sym_type_qualifier] = STATE(2136), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [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_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(4552), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8450), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_dependent_type] = STATE(2523), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(3889), - [sym_for_range_loop] = STATE(91), - [sym_co_return_statement] = STATE(91), - [sym_co_yield_statement] = STATE(91), - [sym_throw_statement] = STATE(91), - [sym_try_statement] = STATE(91), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5725), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(3109), - [sym_user_defined_literal] = STATE(3242), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(187), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_case_statement_repeat1] = STATE(91), - [ts_builtin_sym_end] = ACTIONS(1456), - [sym_identifier] = ACTIONS(1466), - [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(1436), + [92] = { + [sym_declaration] = STATE(90), + [sym_type_definition] = STATE(90), + [sym__declaration_modifiers] = STATE(2095), + [sym__declaration_specifiers] = STATE(4759), + [sym_attribute_specifier] = STATE(2095), + [sym_attribute_declaration] = STATE(950), + [sym_ms_declspec_modifier] = STATE(2095), + [sym_compound_statement] = STATE(90), + [sym_storage_class_specifier] = STATE(2095), + [sym_type_qualifier] = STATE(2095), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [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_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(4499), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8264), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_dependent_type] = STATE(2558), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(3898), + [sym_for_range_loop] = STATE(90), + [sym_co_return_statement] = STATE(90), + [sym_co_yield_statement] = STATE(90), + [sym_throw_statement] = STATE(90), + [sym_try_statement] = STATE(90), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5721), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(3059), + [sym_user_defined_literal] = STATE(3323), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(198), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_case_statement_repeat1] = STATE(90), + [ts_builtin_sym_end] = ACTIONS(1460), + [sym_identifier] = ACTIONS(1526), + [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(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP_AMP] = ACTIONS(1456), - [anon_sym_AMP] = ACTIONS(1442), - [anon_sym_SEMI] = ACTIONS(1194), - [anon_sym___extension__] = ACTIONS(1468), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP_AMP] = ACTIONS(1460), + [anon_sym_AMP] = ACTIONS(1258), + [anon_sym_SEMI] = ACTIONS(1212), + [anon_sym___extension__] = ACTIONS(1528), [anon_sym_typedef] = ACTIONS(37), - [anon_sym_virtual] = ACTIONS(1446), + [anon_sym_virtual] = ACTIONS(1262), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1454), + [anon_sym_using] = ACTIONS(1458), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = 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___based] = 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(57), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1450), + [anon_sym_LBRACK] = ACTIONS(1266), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -54752,10 +55489,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(77), [anon_sym_union] = ACTIONS(79), [anon_sym_if] = ACTIONS(81), - [anon_sym_else] = ACTIONS(1454), + [anon_sym_else] = ACTIONS(1458), [anon_sym_switch] = ACTIONS(83), - [anon_sym_case] = ACTIONS(1454), - [anon_sym_default] = ACTIONS(1454), + [anon_sym_case] = ACTIONS(1458), + [anon_sym_default] = ACTIONS(1458), [anon_sym_while] = ACTIONS(89), [anon_sym_do] = ACTIONS(91), [anon_sym_for] = ACTIONS(93), @@ -54763,8 +55500,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(97), [anon_sym_continue] = ACTIONS(99), [anon_sym_goto] = ACTIONS(101), - [anon_sym___try] = ACTIONS(1198), - [anon_sym___leave] = ACTIONS(1200), + [anon_sym___try] = ACTIONS(1216), + [anon_sym___leave] = ACTIONS(1218), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -54798,19 +55535,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(1454), + [anon_sym_explicit] = ACTIONS(1458), [anon_sym_typename] = ACTIONS(131), - [anon_sym_export] = ACTIONS(1454), - [anon_sym_module] = ACTIONS(1454), - [anon_sym_import] = ACTIONS(1454), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_operator] = ACTIONS(1454), + [anon_sym_export] = ACTIONS(1458), + [anon_sym_module] = ACTIONS(1458), + [anon_sym_import] = ACTIONS(1458), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_operator] = ACTIONS(1458), [anon_sym_try] = ACTIONS(143), [anon_sym_delete] = ACTIONS(145), [anon_sym_throw] = ACTIONS(147), - [anon_sym_namespace] = ACTIONS(1454), - [anon_sym_static_assert] = ACTIONS(1454), - [anon_sym_concept] = ACTIONS(1454), + [anon_sym_namespace] = ACTIONS(1458), + [anon_sym_static_assert] = ACTIONS(1458), + [anon_sym_concept] = ACTIONS(1458), [anon_sym_co_return] = ACTIONS(155), [anon_sym_co_yield] = ACTIONS(157), [anon_sym_R_DQUOTE] = ACTIONS(159), @@ -54823,134 +55560,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [91] = { - [sym_declaration] = STATE(94), - [sym_type_definition] = STATE(94), - [sym__declaration_modifiers] = STATE(2136), - [sym__declaration_specifiers] = STATE(5215), - [sym_attribute_specifier] = STATE(2136), - [sym_attribute_declaration] = STATE(900), - [sym_ms_declspec_modifier] = STATE(2136), - [sym_compound_statement] = STATE(94), - [sym_storage_class_specifier] = STATE(2136), - [sym_type_qualifier] = STATE(2136), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(94), - [sym_labeled_statement] = STATE(94), - [sym_expression_statement] = STATE(94), - [sym_if_statement] = STATE(94), - [sym_switch_statement] = STATE(94), - [sym_while_statement] = STATE(94), - [sym_do_statement] = STATE(94), - [sym_for_statement] = STATE(94), - [sym_return_statement] = STATE(94), - [sym_break_statement] = STATE(94), - [sym_continue_statement] = STATE(94), - [sym_goto_statement] = STATE(94), - [sym_seh_try_statement] = STATE(94), - [sym_seh_leave_statement] = STATE(94), - [sym_expression] = STATE(4552), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8450), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_dependent_type] = STATE(2523), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(3889), - [sym_for_range_loop] = STATE(94), - [sym_co_return_statement] = STATE(94), - [sym_co_yield_statement] = STATE(94), - [sym_throw_statement] = STATE(94), - [sym_try_statement] = STATE(94), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5725), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(3109), - [sym_user_defined_literal] = STATE(3242), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(187), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_case_statement_repeat1] = STATE(94), - [ts_builtin_sym_end] = ACTIONS(1464), - [sym_identifier] = ACTIONS(1466), - [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(1436), + [93] = { + [sym_declaration] = STATE(90), + [sym_type_definition] = STATE(90), + [sym__declaration_modifiers] = STATE(2095), + [sym__declaration_specifiers] = STATE(4759), + [sym_attribute_specifier] = STATE(2095), + [sym_attribute_declaration] = STATE(950), + [sym_ms_declspec_modifier] = STATE(2095), + [sym_compound_statement] = STATE(90), + [sym_storage_class_specifier] = STATE(2095), + [sym_type_qualifier] = STATE(2095), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [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_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(4499), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8264), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_dependent_type] = STATE(2558), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(3898), + [sym_for_range_loop] = STATE(90), + [sym_co_return_statement] = STATE(90), + [sym_co_yield_statement] = STATE(90), + [sym_throw_statement] = STATE(90), + [sym_try_statement] = STATE(90), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5721), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(3059), + [sym_user_defined_literal] = STATE(3323), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(198), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_case_statement_repeat1] = STATE(90), + [ts_builtin_sym_end] = ACTIONS(1256), + [sym_identifier] = ACTIONS(1526), + [aux_sym_preproc_include_token1] = ACTIONS(1250), + [aux_sym_preproc_def_token1] = ACTIONS(1250), + [aux_sym_preproc_if_token1] = ACTIONS(1250), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1250), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1250), + [sym_preproc_directive] = ACTIONS(1250), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP_AMP] = ACTIONS(1464), - [anon_sym_AMP] = ACTIONS(1442), - [anon_sym_SEMI] = ACTIONS(1194), - [anon_sym___extension__] = ACTIONS(1468), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP_AMP] = ACTIONS(1256), + [anon_sym_AMP] = ACTIONS(1258), + [anon_sym_SEMI] = ACTIONS(1212), + [anon_sym___extension__] = ACTIONS(1528), [anon_sym_typedef] = ACTIONS(37), - [anon_sym_virtual] = ACTIONS(1446), + [anon_sym_virtual] = ACTIONS(1262), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1462), + [anon_sym_using] = ACTIONS(1250), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = 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___based] = ACTIONS(1250), + [anon_sym___cdecl] = ACTIONS(1250), + [anon_sym___clrcall] = ACTIONS(1250), + [anon_sym___stdcall] = ACTIONS(1250), + [anon_sym___fastcall] = ACTIONS(1250), + [anon_sym___thiscall] = ACTIONS(1250), + [anon_sym___vectorcall] = ACTIONS(1250), [anon_sym_LBRACE] = ACTIONS(57), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1450), + [anon_sym_LBRACK] = ACTIONS(1266), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -54979,10 +55716,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(77), [anon_sym_union] = ACTIONS(79), [anon_sym_if] = ACTIONS(81), - [anon_sym_else] = ACTIONS(1462), + [anon_sym_else] = ACTIONS(1250), [anon_sym_switch] = ACTIONS(83), - [anon_sym_case] = ACTIONS(1462), - [anon_sym_default] = ACTIONS(1462), + [anon_sym_case] = ACTIONS(1250), + [anon_sym_default] = ACTIONS(1250), [anon_sym_while] = ACTIONS(89), [anon_sym_do] = ACTIONS(91), [anon_sym_for] = ACTIONS(93), @@ -54990,8 +55727,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(97), [anon_sym_continue] = ACTIONS(99), [anon_sym_goto] = ACTIONS(101), - [anon_sym___try] = ACTIONS(1198), - [anon_sym___leave] = ACTIONS(1200), + [anon_sym___try] = ACTIONS(1216), + [anon_sym___leave] = ACTIONS(1218), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -55025,19 +55762,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(1462), + [anon_sym_explicit] = ACTIONS(1250), [anon_sym_typename] = ACTIONS(131), - [anon_sym_export] = ACTIONS(1462), - [anon_sym_module] = ACTIONS(1462), - [anon_sym_import] = ACTIONS(1462), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_operator] = ACTIONS(1462), + [anon_sym_export] = ACTIONS(1250), + [anon_sym_module] = ACTIONS(1250), + [anon_sym_import] = ACTIONS(1250), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_operator] = ACTIONS(1250), [anon_sym_try] = ACTIONS(143), [anon_sym_delete] = ACTIONS(145), [anon_sym_throw] = ACTIONS(147), - [anon_sym_namespace] = ACTIONS(1462), - [anon_sym_static_assert] = ACTIONS(1462), - [anon_sym_concept] = ACTIONS(1462), + [anon_sym_namespace] = ACTIONS(1250), + [anon_sym_static_assert] = ACTIONS(1250), + [anon_sym_concept] = ACTIONS(1250), [anon_sym_co_return] = ACTIONS(155), [anon_sym_co_yield] = ACTIONS(157), [anon_sym_R_DQUOTE] = ACTIONS(159), @@ -55050,134 +55787,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [92] = { - [sym_declaration] = STATE(93), - [sym_type_definition] = STATE(93), - [sym__declaration_modifiers] = STATE(2136), - [sym__declaration_specifiers] = STATE(5215), - [sym_attribute_specifier] = STATE(2136), - [sym_attribute_declaration] = STATE(900), - [sym_ms_declspec_modifier] = STATE(2136), - [sym_compound_statement] = STATE(93), - [sym_storage_class_specifier] = STATE(2136), - [sym_type_qualifier] = STATE(2136), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(93), - [sym_labeled_statement] = STATE(93), - [sym_expression_statement] = STATE(93), - [sym_if_statement] = STATE(93), - [sym_switch_statement] = STATE(93), - [sym_while_statement] = STATE(93), - [sym_do_statement] = STATE(93), - [sym_for_statement] = STATE(93), - [sym_return_statement] = STATE(93), - [sym_break_statement] = STATE(93), - [sym_continue_statement] = STATE(93), - [sym_goto_statement] = STATE(93), - [sym_seh_try_statement] = STATE(93), - [sym_seh_leave_statement] = STATE(93), - [sym_expression] = STATE(4552), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8450), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_dependent_type] = STATE(2523), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(3889), - [sym_for_range_loop] = STATE(93), - [sym_co_return_statement] = STATE(93), - [sym_co_yield_statement] = STATE(93), - [sym_throw_statement] = STATE(93), - [sym_try_statement] = STATE(93), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5725), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(3109), - [sym_user_defined_literal] = STATE(3242), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(187), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_case_statement_repeat1] = STATE(93), - [ts_builtin_sym_end] = ACTIONS(1440), - [sym_identifier] = ACTIONS(1466), - [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), + [94] = { + [sym_declaration] = STATE(92), + [sym_type_definition] = STATE(92), + [sym__declaration_modifiers] = STATE(2095), + [sym__declaration_specifiers] = STATE(4759), + [sym_attribute_specifier] = STATE(2095), + [sym_attribute_declaration] = STATE(950), + [sym_ms_declspec_modifier] = STATE(2095), + [sym_compound_statement] = STATE(92), + [sym_storage_class_specifier] = STATE(2095), + [sym_type_qualifier] = STATE(2095), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(92), + [sym_labeled_statement] = STATE(92), + [sym_expression_statement] = STATE(92), + [sym_if_statement] = STATE(92), + [sym_switch_statement] = STATE(92), + [sym_while_statement] = STATE(92), + [sym_do_statement] = STATE(92), + [sym_for_statement] = STATE(92), + [sym_return_statement] = STATE(92), + [sym_break_statement] = STATE(92), + [sym_continue_statement] = STATE(92), + [sym_goto_statement] = STATE(92), + [sym_seh_try_statement] = STATE(92), + [sym_seh_leave_statement] = STATE(92), + [sym_expression] = STATE(4499), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8264), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_dependent_type] = STATE(2558), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(3898), + [sym_for_range_loop] = STATE(92), + [sym_co_return_statement] = STATE(92), + [sym_co_yield_statement] = STATE(92), + [sym_throw_statement] = STATE(92), + [sym_try_statement] = STATE(92), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5721), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(3059), + [sym_user_defined_literal] = STATE(3323), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(198), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_case_statement_repeat1] = STATE(92), + [ts_builtin_sym_end] = ACTIONS(1456), + [sym_identifier] = ACTIONS(1526), + [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(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP_AMP] = ACTIONS(1440), - [anon_sym_AMP] = ACTIONS(1442), - [anon_sym_SEMI] = ACTIONS(1194), - [anon_sym___extension__] = ACTIONS(1468), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP_AMP] = ACTIONS(1456), + [anon_sym_AMP] = ACTIONS(1258), + [anon_sym_SEMI] = ACTIONS(1212), + [anon_sym___extension__] = ACTIONS(1528), [anon_sym_typedef] = ACTIONS(37), - [anon_sym_virtual] = ACTIONS(1446), + [anon_sym_virtual] = ACTIONS(1262), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1434), + [anon_sym_using] = ACTIONS(1454), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = 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___based] = 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(57), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1450), + [anon_sym_LBRACK] = ACTIONS(1266), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -55206,10 +55943,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(77), [anon_sym_union] = ACTIONS(79), [anon_sym_if] = ACTIONS(81), - [anon_sym_else] = ACTIONS(1434), + [anon_sym_else] = ACTIONS(1454), [anon_sym_switch] = ACTIONS(83), - [anon_sym_case] = ACTIONS(1434), - [anon_sym_default] = ACTIONS(1434), + [anon_sym_case] = ACTIONS(1454), + [anon_sym_default] = ACTIONS(1454), [anon_sym_while] = ACTIONS(89), [anon_sym_do] = ACTIONS(91), [anon_sym_for] = ACTIONS(93), @@ -55217,8 +55954,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(97), [anon_sym_continue] = ACTIONS(99), [anon_sym_goto] = ACTIONS(101), - [anon_sym___try] = ACTIONS(1198), - [anon_sym___leave] = ACTIONS(1200), + [anon_sym___try] = ACTIONS(1216), + [anon_sym___leave] = ACTIONS(1218), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -55252,19 +55989,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(1434), + [anon_sym_explicit] = ACTIONS(1454), [anon_sym_typename] = ACTIONS(131), - [anon_sym_export] = ACTIONS(1434), - [anon_sym_module] = ACTIONS(1434), - [anon_sym_import] = ACTIONS(1434), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_operator] = ACTIONS(1434), + [anon_sym_export] = ACTIONS(1454), + [anon_sym_module] = ACTIONS(1454), + [anon_sym_import] = ACTIONS(1454), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_operator] = ACTIONS(1454), [anon_sym_try] = ACTIONS(143), [anon_sym_delete] = ACTIONS(145), [anon_sym_throw] = ACTIONS(147), - [anon_sym_namespace] = ACTIONS(1434), - [anon_sym_static_assert] = ACTIONS(1434), - [anon_sym_concept] = ACTIONS(1434), + [anon_sym_namespace] = ACTIONS(1454), + [anon_sym_static_assert] = ACTIONS(1454), + [anon_sym_concept] = ACTIONS(1454), [anon_sym_co_return] = ACTIONS(155), [anon_sym_co_yield] = ACTIONS(157), [anon_sym_R_DQUOTE] = ACTIONS(159), @@ -55277,134 +56014,358 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [93] = { - [sym_declaration] = STATE(94), - [sym_type_definition] = STATE(94), - [sym__declaration_modifiers] = STATE(2136), - [sym__declaration_specifiers] = STATE(5215), - [sym_attribute_specifier] = STATE(2136), - [sym_attribute_declaration] = STATE(900), - [sym_ms_declspec_modifier] = STATE(2136), - [sym_compound_statement] = STATE(94), - [sym_storage_class_specifier] = STATE(2136), - [sym_type_qualifier] = STATE(2136), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(94), - [sym_labeled_statement] = STATE(94), - [sym_expression_statement] = STATE(94), - [sym_if_statement] = STATE(94), - [sym_switch_statement] = STATE(94), - [sym_while_statement] = STATE(94), - [sym_do_statement] = STATE(94), - [sym_for_statement] = STATE(94), - [sym_return_statement] = STATE(94), - [sym_break_statement] = STATE(94), - [sym_continue_statement] = STATE(94), - [sym_goto_statement] = STATE(94), - [sym_seh_try_statement] = STATE(94), - [sym_seh_leave_statement] = STATE(94), - [sym_expression] = STATE(4552), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8450), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_dependent_type] = STATE(2523), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(3889), - [sym_for_range_loop] = STATE(94), - [sym_co_return_statement] = STATE(94), - [sym_co_yield_statement] = STATE(94), - [sym_throw_statement] = STATE(94), - [sym_try_statement] = STATE(94), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5725), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(3109), - [sym_user_defined_literal] = STATE(3242), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(187), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_case_statement_repeat1] = STATE(94), - [ts_builtin_sym_end] = ACTIONS(1460), - [sym_identifier] = ACTIONS(1466), - [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(1436), + [95] = { + [sym_declaration] = STATE(95), + [sym_type_definition] = STATE(95), + [sym__declaration_modifiers] = STATE(2095), + [sym__declaration_specifiers] = STATE(4698), + [sym_attribute_specifier] = STATE(2095), + [sym_attribute_declaration] = STATE(950), + [sym_ms_declspec_modifier] = STATE(2095), + [sym_compound_statement] = STATE(95), + [sym_storage_class_specifier] = STATE(2095), + [sym_type_qualifier] = STATE(2095), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(95), + [sym_labeled_statement] = STATE(95), + [sym_expression_statement] = STATE(95), + [sym_if_statement] = STATE(95), + [sym_switch_statement] = STATE(95), + [sym_while_statement] = STATE(95), + [sym_do_statement] = STATE(95), + [sym_for_statement] = STATE(95), + [sym_return_statement] = STATE(95), + [sym_break_statement] = STATE(95), + [sym_continue_statement] = STATE(95), + [sym_goto_statement] = STATE(95), + [sym_seh_try_statement] = STATE(95), + [sym_seh_leave_statement] = STATE(95), + [sym_expression] = STATE(4554), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8083), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_dependent_type] = STATE(2558), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(3898), + [sym_for_range_loop] = STATE(95), + [sym_co_return_statement] = STATE(95), + [sym_co_yield_statement] = STATE(95), + [sym_throw_statement] = STATE(95), + [sym_try_statement] = STATE(95), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5721), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(3059), + [sym_user_defined_literal] = STATE(3323), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(186), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_case_statement_repeat1] = STATE(95), + [sym_identifier] = ACTIONS(1530), + [aux_sym_preproc_include_token1] = ACTIONS(1273), + [aux_sym_preproc_def_token1] = ACTIONS(1273), + [aux_sym_preproc_if_token1] = ACTIONS(1273), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1273), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1273), + [sym_preproc_directive] = ACTIONS(1273), + [anon_sym_LPAREN2] = ACTIONS(1275), + [anon_sym_BANG] = ACTIONS(1278), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_DASH] = ACTIONS(1281), + [anon_sym_PLUS] = ACTIONS(1281), + [anon_sym_STAR] = ACTIONS(1284), + [anon_sym_AMP_AMP] = ACTIONS(1287), + [anon_sym_AMP] = ACTIONS(1289), + [anon_sym_SEMI] = ACTIONS(1533), + [anon_sym___extension__] = ACTIONS(1536), + [anon_sym_typedef] = ACTIONS(1539), + [anon_sym_virtual] = ACTIONS(1301), + [anon_sym_extern] = ACTIONS(1304), + [anon_sym___attribute__] = ACTIONS(1307), + [anon_sym___attribute] = ACTIONS(1307), + [anon_sym_using] = ACTIONS(1273), + [anon_sym_COLON_COLON] = ACTIONS(1310), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1313), + [anon_sym___declspec] = ACTIONS(1316), + [anon_sym___based] = ACTIONS(1273), + [anon_sym___cdecl] = ACTIONS(1273), + [anon_sym___clrcall] = ACTIONS(1273), + [anon_sym___stdcall] = ACTIONS(1273), + [anon_sym___fastcall] = ACTIONS(1273), + [anon_sym___thiscall] = ACTIONS(1273), + [anon_sym___vectorcall] = ACTIONS(1273), + [anon_sym_LBRACE] = ACTIONS(1542), + [anon_sym_RBRACE] = ACTIONS(1287), + [anon_sym_signed] = ACTIONS(1322), + [anon_sym_unsigned] = ACTIONS(1322), + [anon_sym_long] = ACTIONS(1322), + [anon_sym_short] = ACTIONS(1322), + [anon_sym_LBRACK] = ACTIONS(1325), + [anon_sym_static] = ACTIONS(1304), + [anon_sym_register] = ACTIONS(1304), + [anon_sym_inline] = ACTIONS(1304), + [anon_sym___inline] = ACTIONS(1304), + [anon_sym___inline__] = ACTIONS(1304), + [anon_sym___forceinline] = ACTIONS(1304), + [anon_sym_thread_local] = ACTIONS(1304), + [anon_sym___thread] = ACTIONS(1304), + [anon_sym_const] = ACTIONS(1328), + [anon_sym_constexpr] = ACTIONS(1328), + [anon_sym_volatile] = ACTIONS(1328), + [anon_sym_restrict] = ACTIONS(1328), + [anon_sym___restrict__] = ACTIONS(1328), + [anon_sym__Atomic] = ACTIONS(1328), + [anon_sym__Noreturn] = ACTIONS(1328), + [anon_sym_noreturn] = ACTIONS(1328), + [anon_sym__Nonnull] = ACTIONS(1328), + [anon_sym_mutable] = ACTIONS(1328), + [anon_sym_constinit] = ACTIONS(1328), + [anon_sym_consteval] = ACTIONS(1328), + [anon_sym_alignas] = ACTIONS(1331), + [anon_sym__Alignas] = ACTIONS(1331), + [sym_primitive_type] = ACTIONS(1334), + [anon_sym_enum] = ACTIONS(1337), + [anon_sym_class] = ACTIONS(1340), + [anon_sym_struct] = ACTIONS(1343), + [anon_sym_union] = ACTIONS(1346), + [anon_sym_if] = ACTIONS(1545), + [anon_sym_else] = ACTIONS(1273), + [anon_sym_switch] = ACTIONS(1548), + [anon_sym_case] = ACTIONS(1273), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_while] = ACTIONS(1551), + [anon_sym_do] = ACTIONS(1554), + [anon_sym_for] = ACTIONS(1557), + [anon_sym_return] = ACTIONS(1560), + [anon_sym_break] = ACTIONS(1563), + [anon_sym_continue] = ACTIONS(1566), + [anon_sym_goto] = ACTIONS(1569), + [anon_sym___try] = ACTIONS(1572), + [anon_sym___leave] = ACTIONS(1575), + [anon_sym_not] = ACTIONS(1281), + [anon_sym_compl] = ACTIONS(1281), + [anon_sym_DASH_DASH] = ACTIONS(1382), + [anon_sym_PLUS_PLUS] = ACTIONS(1382), + [anon_sym_sizeof] = ACTIONS(1385), + [anon_sym___alignof__] = ACTIONS(1388), + [anon_sym___alignof] = ACTIONS(1388), + [anon_sym__alignof] = ACTIONS(1388), + [anon_sym_alignof] = ACTIONS(1388), + [anon_sym__Alignof] = ACTIONS(1388), + [anon_sym_offsetof] = ACTIONS(1391), + [anon_sym__Generic] = ACTIONS(1394), + [anon_sym_asm] = ACTIONS(1397), + [anon_sym___asm__] = ACTIONS(1397), + [anon_sym___asm] = ACTIONS(1397), + [sym_number_literal] = ACTIONS(1400), + [anon_sym_L_SQUOTE] = ACTIONS(1403), + [anon_sym_u_SQUOTE] = ACTIONS(1403), + [anon_sym_U_SQUOTE] = ACTIONS(1403), + [anon_sym_u8_SQUOTE] = ACTIONS(1403), + [anon_sym_SQUOTE] = ACTIONS(1403), + [anon_sym_L_DQUOTE] = ACTIONS(1406), + [anon_sym_u_DQUOTE] = ACTIONS(1406), + [anon_sym_U_DQUOTE] = ACTIONS(1406), + [anon_sym_u8_DQUOTE] = ACTIONS(1406), + [anon_sym_DQUOTE] = ACTIONS(1406), + [sym_true] = ACTIONS(1409), + [sym_false] = ACTIONS(1409), + [anon_sym_NULL] = ACTIONS(1412), + [anon_sym_nullptr] = ACTIONS(1412), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1415), + [anon_sym_decltype] = ACTIONS(1418), + [anon_sym_explicit] = ACTIONS(1273), + [anon_sym_typename] = ACTIONS(1421), + [anon_sym_template] = ACTIONS(1424), + [anon_sym_operator] = ACTIONS(1273), + [anon_sym_try] = ACTIONS(1578), + [anon_sym_delete] = ACTIONS(1430), + [anon_sym_throw] = ACTIONS(1581), + [anon_sym_namespace] = ACTIONS(1273), + [anon_sym_static_assert] = ACTIONS(1273), + [anon_sym_concept] = ACTIONS(1273), + [anon_sym_co_return] = ACTIONS(1584), + [anon_sym_co_yield] = ACTIONS(1587), + [anon_sym_R_DQUOTE] = ACTIONS(1442), + [anon_sym_LR_DQUOTE] = ACTIONS(1442), + [anon_sym_uR_DQUOTE] = ACTIONS(1442), + [anon_sym_UR_DQUOTE] = ACTIONS(1442), + [anon_sym_u8R_DQUOTE] = ACTIONS(1442), + [anon_sym_co_await] = ACTIONS(1445), + [anon_sym_new] = ACTIONS(1448), + [anon_sym_requires] = ACTIONS(1451), + [sym_this] = ACTIONS(1409), + }, + [96] = { + [sym_declaration] = STATE(95), + [sym_type_definition] = STATE(95), + [sym__declaration_modifiers] = STATE(2095), + [sym__declaration_specifiers] = STATE(4698), + [sym_attribute_specifier] = STATE(2095), + [sym_attribute_declaration] = STATE(950), + [sym_ms_declspec_modifier] = STATE(2095), + [sym_compound_statement] = STATE(95), + [sym_storage_class_specifier] = STATE(2095), + [sym_type_qualifier] = STATE(2095), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(95), + [sym_labeled_statement] = STATE(95), + [sym_expression_statement] = STATE(95), + [sym_if_statement] = STATE(95), + [sym_switch_statement] = STATE(95), + [sym_while_statement] = STATE(95), + [sym_do_statement] = STATE(95), + [sym_for_statement] = STATE(95), + [sym_return_statement] = STATE(95), + [sym_break_statement] = STATE(95), + [sym_continue_statement] = STATE(95), + [sym_goto_statement] = STATE(95), + [sym_seh_try_statement] = STATE(95), + [sym_seh_leave_statement] = STATE(95), + [sym_expression] = STATE(4554), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8083), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_dependent_type] = STATE(2558), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(3898), + [sym_for_range_loop] = STATE(95), + [sym_co_return_statement] = STATE(95), + [sym_co_yield_statement] = STATE(95), + [sym_throw_statement] = STATE(95), + [sym_try_statement] = STATE(95), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5721), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(3059), + [sym_user_defined_literal] = STATE(3323), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(186), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_case_statement_repeat1] = STATE(95), + [sym_identifier] = ACTIONS(1590), + [aux_sym_preproc_include_token1] = ACTIONS(1250), + [aux_sym_preproc_def_token1] = ACTIONS(1250), + [aux_sym_preproc_if_token1] = ACTIONS(1250), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1250), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1250), + [sym_preproc_directive] = ACTIONS(1250), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP_AMP] = ACTIONS(1460), - [anon_sym_AMP] = ACTIONS(1442), - [anon_sym_SEMI] = ACTIONS(1194), - [anon_sym___extension__] = ACTIONS(1468), - [anon_sym_typedef] = ACTIONS(37), - [anon_sym_virtual] = ACTIONS(1446), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP_AMP] = ACTIONS(1256), + [anon_sym_AMP] = ACTIONS(1258), + [anon_sym_SEMI] = ACTIONS(181), + [anon_sym___extension__] = ACTIONS(1592), + [anon_sym_typedef] = ACTIONS(185), + [anon_sym_virtual] = ACTIONS(1262), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1458), + [anon_sym_using] = ACTIONS(1250), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = 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(57), + [anon_sym___based] = ACTIONS(1250), + [anon_sym___cdecl] = ACTIONS(1250), + [anon_sym___clrcall] = ACTIONS(1250), + [anon_sym___stdcall] = ACTIONS(1250), + [anon_sym___fastcall] = ACTIONS(1250), + [anon_sym___thiscall] = ACTIONS(1250), + [anon_sym___vectorcall] = ACTIONS(1250), + [anon_sym_LBRACE] = ACTIONS(866), + [anon_sym_RBRACE] = ACTIONS(1256), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1450), + [anon_sym_LBRACK] = ACTIONS(1266), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -55432,20 +56393,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(75), [anon_sym_struct] = ACTIONS(77), [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(81), - [anon_sym_else] = ACTIONS(1458), - [anon_sym_switch] = ACTIONS(83), - [anon_sym_case] = ACTIONS(1458), - [anon_sym_default] = ACTIONS(1458), - [anon_sym_while] = ACTIONS(89), - [anon_sym_do] = ACTIONS(91), - [anon_sym_for] = ACTIONS(93), - [anon_sym_return] = ACTIONS(95), - [anon_sym_break] = ACTIONS(97), - [anon_sym_continue] = ACTIONS(99), - [anon_sym_goto] = ACTIONS(101), - [anon_sym___try] = ACTIONS(1198), - [anon_sym___leave] = ACTIONS(1200), + [anon_sym_if] = ACTIONS(199), + [anon_sym_else] = ACTIONS(1250), + [anon_sym_switch] = ACTIONS(201), + [anon_sym_case] = ACTIONS(1250), + [anon_sym_default] = ACTIONS(1250), + [anon_sym_while] = ACTIONS(207), + [anon_sym_do] = ACTIONS(209), + [anon_sym_for] = ACTIONS(211), + [anon_sym_return] = ACTIONS(213), + [anon_sym_break] = ACTIONS(215), + [anon_sym_continue] = ACTIONS(217), + [anon_sym_goto] = ACTIONS(219), + [anon_sym___try] = ACTIONS(221), + [anon_sym___leave] = ACTIONS(223), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -55479,21 +56440,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(1458), + [anon_sym_explicit] = ACTIONS(1250), [anon_sym_typename] = ACTIONS(131), - [anon_sym_export] = ACTIONS(1458), - [anon_sym_module] = ACTIONS(1458), - [anon_sym_import] = ACTIONS(1458), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_operator] = ACTIONS(1458), - [anon_sym_try] = ACTIONS(143), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_operator] = ACTIONS(1250), + [anon_sym_try] = ACTIONS(233), [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(147), - [anon_sym_namespace] = ACTIONS(1458), - [anon_sym_static_assert] = ACTIONS(1458), - [anon_sym_concept] = ACTIONS(1458), - [anon_sym_co_return] = ACTIONS(155), - [anon_sym_co_yield] = ACTIONS(157), + [anon_sym_throw] = ACTIONS(235), + [anon_sym_namespace] = ACTIONS(1250), + [anon_sym_static_assert] = ACTIONS(1250), + [anon_sym_concept] = ACTIONS(1250), + [anon_sym_co_return] = ACTIONS(243), + [anon_sym_co_yield] = ACTIONS(245), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), @@ -55504,361 +56462,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [94] = { - [sym_declaration] = STATE(94), - [sym_type_definition] = STATE(94), - [sym__declaration_modifiers] = STATE(2136), - [sym__declaration_specifiers] = STATE(5215), - [sym_attribute_specifier] = STATE(2136), - [sym_attribute_declaration] = STATE(900), - [sym_ms_declspec_modifier] = STATE(2136), - [sym_compound_statement] = STATE(94), - [sym_storage_class_specifier] = STATE(2136), - [sym_type_qualifier] = STATE(2136), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(94), - [sym_labeled_statement] = STATE(94), - [sym_expression_statement] = STATE(94), - [sym_if_statement] = STATE(94), - [sym_switch_statement] = STATE(94), - [sym_while_statement] = STATE(94), - [sym_do_statement] = STATE(94), - [sym_for_statement] = STATE(94), - [sym_return_statement] = STATE(94), - [sym_break_statement] = STATE(94), - [sym_continue_statement] = STATE(94), - [sym_goto_statement] = STATE(94), - [sym_seh_try_statement] = STATE(94), - [sym_seh_leave_statement] = STATE(94), - [sym_expression] = STATE(4552), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8450), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_dependent_type] = STATE(2523), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(3889), - [sym_for_range_loop] = STATE(94), - [sym_co_return_statement] = STATE(94), - [sym_co_yield_statement] = STATE(94), - [sym_throw_statement] = STATE(94), - [sym_try_statement] = STATE(94), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5725), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(3109), - [sym_user_defined_literal] = STATE(3242), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(187), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_case_statement_repeat1] = STATE(94), - [ts_builtin_sym_end] = ACTIONS(1265), - [sym_identifier] = ACTIONS(1470), - [aux_sym_preproc_include_token1] = ACTIONS(1251), - [aux_sym_preproc_def_token1] = ACTIONS(1251), - [aux_sym_preproc_if_token1] = ACTIONS(1251), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1251), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1251), - [sym_preproc_directive] = ACTIONS(1251), - [anon_sym_LPAREN2] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(1256), - [anon_sym_TILDE] = ACTIONS(1256), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_STAR] = ACTIONS(1262), - [anon_sym_AMP_AMP] = ACTIONS(1265), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_SEMI] = ACTIONS(1473), - [anon_sym___extension__] = ACTIONS(1476), - [anon_sym_typedef] = ACTIONS(1479), - [anon_sym_virtual] = ACTIONS(1279), - [anon_sym_extern] = ACTIONS(1282), - [anon_sym___attribute__] = ACTIONS(1285), - [anon_sym___attribute] = ACTIONS(1285), - [anon_sym_using] = ACTIONS(1251), - [anon_sym_COLON_COLON] = ACTIONS(1288), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1291), - [anon_sym___declspec] = ACTIONS(1294), - [anon_sym___based] = ACTIONS(1251), - [anon_sym___cdecl] = ACTIONS(1251), - [anon_sym___clrcall] = ACTIONS(1251), - [anon_sym___stdcall] = ACTIONS(1251), - [anon_sym___fastcall] = ACTIONS(1251), - [anon_sym___thiscall] = ACTIONS(1251), - [anon_sym___vectorcall] = ACTIONS(1251), - [anon_sym_LBRACE] = ACTIONS(1482), - [anon_sym_signed] = ACTIONS(1300), - [anon_sym_unsigned] = ACTIONS(1300), - [anon_sym_long] = ACTIONS(1300), - [anon_sym_short] = ACTIONS(1300), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_static] = ACTIONS(1282), - [anon_sym_register] = ACTIONS(1282), - [anon_sym_inline] = ACTIONS(1282), - [anon_sym___inline] = ACTIONS(1282), - [anon_sym___inline__] = ACTIONS(1282), - [anon_sym___forceinline] = ACTIONS(1282), - [anon_sym_thread_local] = ACTIONS(1282), - [anon_sym___thread] = ACTIONS(1282), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [anon_sym__Nonnull] = ACTIONS(1306), - [anon_sym_mutable] = ACTIONS(1306), - [anon_sym_constinit] = ACTIONS(1306), - [anon_sym_consteval] = ACTIONS(1306), - [anon_sym_alignas] = ACTIONS(1309), - [anon_sym__Alignas] = ACTIONS(1309), - [sym_primitive_type] = ACTIONS(1312), - [anon_sym_enum] = ACTIONS(1315), - [anon_sym_class] = ACTIONS(1318), - [anon_sym_struct] = ACTIONS(1321), - [anon_sym_union] = ACTIONS(1324), - [anon_sym_if] = ACTIONS(1485), - [anon_sym_else] = ACTIONS(1251), - [anon_sym_switch] = ACTIONS(1488), - [anon_sym_case] = ACTIONS(1251), - [anon_sym_default] = ACTIONS(1251), - [anon_sym_while] = ACTIONS(1491), - [anon_sym_do] = ACTIONS(1494), - [anon_sym_for] = ACTIONS(1497), - [anon_sym_return] = ACTIONS(1500), - [anon_sym_break] = ACTIONS(1503), - [anon_sym_continue] = ACTIONS(1506), - [anon_sym_goto] = ACTIONS(1509), - [anon_sym___try] = ACTIONS(1512), - [anon_sym___leave] = ACTIONS(1515), - [anon_sym_not] = ACTIONS(1259), - [anon_sym_compl] = ACTIONS(1259), - [anon_sym_DASH_DASH] = ACTIONS(1360), - [anon_sym_PLUS_PLUS] = ACTIONS(1360), - [anon_sym_sizeof] = ACTIONS(1363), - [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(1369), - [anon_sym__Generic] = ACTIONS(1372), - [anon_sym_asm] = ACTIONS(1375), - [anon_sym___asm__] = ACTIONS(1375), - [anon_sym___asm] = ACTIONS(1375), - [sym_number_literal] = ACTIONS(1378), - [anon_sym_L_SQUOTE] = ACTIONS(1381), - [anon_sym_u_SQUOTE] = ACTIONS(1381), - [anon_sym_U_SQUOTE] = ACTIONS(1381), - [anon_sym_u8_SQUOTE] = ACTIONS(1381), - [anon_sym_SQUOTE] = ACTIONS(1381), - [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(1387), - [sym_false] = ACTIONS(1387), - [anon_sym_NULL] = ACTIONS(1390), - [anon_sym_nullptr] = ACTIONS(1390), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1393), - [anon_sym_decltype] = ACTIONS(1396), - [anon_sym_explicit] = ACTIONS(1251), - [anon_sym_typename] = ACTIONS(1399), - [anon_sym_export] = ACTIONS(1251), - [anon_sym_module] = ACTIONS(1251), - [anon_sym_import] = ACTIONS(1251), - [anon_sym_template] = ACTIONS(1402), - [anon_sym_operator] = ACTIONS(1251), - [anon_sym_try] = ACTIONS(1518), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_throw] = ACTIONS(1521), - [anon_sym_namespace] = ACTIONS(1251), - [anon_sym_static_assert] = ACTIONS(1251), - [anon_sym_concept] = ACTIONS(1251), - [anon_sym_co_return] = ACTIONS(1524), - [anon_sym_co_yield] = ACTIONS(1527), - [anon_sym_R_DQUOTE] = ACTIONS(1420), - [anon_sym_LR_DQUOTE] = ACTIONS(1420), - [anon_sym_uR_DQUOTE] = ACTIONS(1420), - [anon_sym_UR_DQUOTE] = ACTIONS(1420), - [anon_sym_u8R_DQUOTE] = ACTIONS(1420), - [anon_sym_co_await] = ACTIONS(1423), - [anon_sym_new] = ACTIONS(1426), - [anon_sym_requires] = ACTIONS(1429), - [sym_this] = ACTIONS(1387), - }, - [95] = { - [sym_declaration] = STATE(103), - [sym_type_definition] = STATE(103), - [sym__declaration_modifiers] = STATE(2136), - [sym__declaration_specifiers] = STATE(5184), - [sym_attribute_specifier] = STATE(2136), - [sym_attribute_declaration] = STATE(900), - [sym_ms_declspec_modifier] = STATE(2136), - [sym_compound_statement] = STATE(103), - [sym_storage_class_specifier] = STATE(2136), - [sym_type_qualifier] = STATE(2136), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(103), - [sym_labeled_statement] = STATE(103), - [sym_expression_statement] = STATE(103), - [sym_if_statement] = STATE(103), - [sym_switch_statement] = STATE(103), - [sym_while_statement] = STATE(103), - [sym_do_statement] = STATE(103), - [sym_for_statement] = STATE(103), - [sym_return_statement] = STATE(103), - [sym_break_statement] = STATE(103), - [sym_continue_statement] = STATE(103), - [sym_goto_statement] = STATE(103), - [sym_seh_try_statement] = STATE(103), - [sym_seh_leave_statement] = STATE(103), - [sym_expression] = STATE(4457), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8711), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_dependent_type] = STATE(2523), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(3889), - [sym_for_range_loop] = STATE(103), - [sym_co_return_statement] = STATE(103), - [sym_co_yield_statement] = STATE(103), - [sym_throw_statement] = STATE(103), - [sym_try_statement] = STATE(103), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5725), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(3109), - [sym_user_defined_literal] = STATE(3242), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(219), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_case_statement_repeat1] = STATE(103), - [sym_identifier] = ACTIONS(1530), - [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(1436), + [97] = { + [sym_declaration] = STATE(99), + [sym_type_definition] = STATE(99), + [sym__declaration_modifiers] = STATE(2095), + [sym__declaration_specifiers] = STATE(4734), + [sym_attribute_specifier] = STATE(2095), + [sym_attribute_declaration] = STATE(950), + [sym_ms_declspec_modifier] = STATE(2095), + [sym_compound_statement] = STATE(99), + [sym_storage_class_specifier] = STATE(2095), + [sym_type_qualifier] = STATE(2095), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(99), + [sym_labeled_statement] = STATE(99), + [sym_expression_statement] = STATE(99), + [sym_if_statement] = STATE(99), + [sym_switch_statement] = STATE(99), + [sym_while_statement] = STATE(99), + [sym_do_statement] = STATE(99), + [sym_for_statement] = STATE(99), + [sym_return_statement] = STATE(99), + [sym_break_statement] = STATE(99), + [sym_continue_statement] = STATE(99), + [sym_goto_statement] = STATE(99), + [sym_seh_try_statement] = STATE(99), + [sym_seh_leave_statement] = STATE(99), + [sym_expression] = STATE(4531), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8444), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_dependent_type] = STATE(2558), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(3898), + [sym_for_range_loop] = STATE(99), + [sym_co_return_statement] = STATE(99), + [sym_co_yield_statement] = STATE(99), + [sym_throw_statement] = STATE(99), + [sym_try_statement] = STATE(99), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5721), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(3059), + [sym_user_defined_literal] = STATE(3323), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(175), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_case_statement_repeat1] = STATE(99), + [sym_identifier] = ACTIONS(1594), + [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(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP_AMP] = ACTIONS(1460), - [anon_sym_AMP] = ACTIONS(1442), - [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(1532), - [anon_sym_typedef] = ACTIONS(185), - [anon_sym_virtual] = ACTIONS(1446), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP_AMP] = ACTIONS(1456), + [anon_sym_AMP] = ACTIONS(1258), + [anon_sym_SEMI] = ACTIONS(884), + [anon_sym___extension__] = ACTIONS(1596), + [anon_sym_typedef] = ACTIONS(888), + [anon_sym_virtual] = ACTIONS(1262), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1458), + [anon_sym_using] = ACTIONS(1454), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = 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(866), - [anon_sym_RBRACE] = ACTIONS(1460), + [anon_sym___based] = 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(894), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1450), + [anon_sym_LBRACK] = ACTIONS(1266), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -55886,20 +56617,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(75), [anon_sym_struct] = ACTIONS(77), [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(199), - [anon_sym_else] = ACTIONS(1458), - [anon_sym_switch] = ACTIONS(201), - [anon_sym_case] = ACTIONS(1458), - [anon_sym_default] = ACTIONS(1458), - [anon_sym_while] = ACTIONS(207), - [anon_sym_do] = ACTIONS(209), - [anon_sym_for] = ACTIONS(211), - [anon_sym_return] = ACTIONS(213), - [anon_sym_break] = ACTIONS(215), - [anon_sym_continue] = ACTIONS(217), - [anon_sym_goto] = ACTIONS(219), - [anon_sym___try] = ACTIONS(221), - [anon_sym___leave] = ACTIONS(223), + [anon_sym_if] = ACTIONS(898), + [anon_sym_else] = ACTIONS(1454), + [anon_sym_switch] = ACTIONS(900), + [anon_sym_case] = ACTIONS(1454), + [anon_sym_default] = ACTIONS(1454), + [anon_sym_while] = ACTIONS(906), + [anon_sym_do] = ACTIONS(908), + [anon_sym_for] = ACTIONS(910), + [anon_sym_return] = ACTIONS(912), + [anon_sym_break] = ACTIONS(914), + [anon_sym_continue] = ACTIONS(916), + [anon_sym_goto] = ACTIONS(918), + [anon_sym___try] = ACTIONS(920), + [anon_sym___leave] = ACTIONS(922), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -55933,18 +56664,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(1458), + [anon_sym_explicit] = ACTIONS(1454), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_operator] = ACTIONS(1458), - [anon_sym_try] = ACTIONS(233), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_operator] = ACTIONS(1454), + [anon_sym_try] = ACTIONS(926), [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(235), - [anon_sym_namespace] = ACTIONS(1458), - [anon_sym_static_assert] = ACTIONS(1458), - [anon_sym_concept] = ACTIONS(1458), - [anon_sym_co_return] = ACTIONS(243), - [anon_sym_co_yield] = ACTIONS(245), + [anon_sym_throw] = ACTIONS(928), + [anon_sym_namespace] = ACTIONS(1454), + [anon_sym_static_assert] = ACTIONS(1454), + [anon_sym_concept] = ACTIONS(1454), + [anon_sym_co_return] = ACTIONS(936), + [anon_sym_co_yield] = ACTIONS(938), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), @@ -55955,119 +56686,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [96] = { - [sym_declaration] = STATE(103), - [sym_type_definition] = STATE(103), - [sym__declaration_modifiers] = STATE(2136), - [sym__declaration_specifiers] = STATE(5184), - [sym_attribute_specifier] = STATE(2136), - [sym_attribute_declaration] = STATE(900), - [sym_ms_declspec_modifier] = STATE(2136), - [sym_compound_statement] = STATE(103), - [sym_storage_class_specifier] = STATE(2136), - [sym_type_qualifier] = STATE(2136), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(103), - [sym_labeled_statement] = STATE(103), - [sym_expression_statement] = STATE(103), - [sym_if_statement] = STATE(103), - [sym_switch_statement] = STATE(103), - [sym_while_statement] = STATE(103), - [sym_do_statement] = STATE(103), - [sym_for_statement] = STATE(103), - [sym_return_statement] = STATE(103), - [sym_break_statement] = STATE(103), - [sym_continue_statement] = STATE(103), - [sym_goto_statement] = STATE(103), - [sym_seh_try_statement] = STATE(103), - [sym_seh_leave_statement] = STATE(103), - [sym_expression] = STATE(4457), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8711), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_dependent_type] = STATE(2523), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(3889), - [sym_for_range_loop] = STATE(103), - [sym_co_return_statement] = STATE(103), - [sym_co_yield_statement] = STATE(103), - [sym_throw_statement] = STATE(103), - [sym_try_statement] = STATE(103), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5725), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(3109), - [sym_user_defined_literal] = STATE(3242), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(219), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_case_statement_repeat1] = STATE(103), - [sym_identifier] = ACTIONS(1530), + [98] = { + [sym_declaration] = STATE(100), + [sym_type_definition] = STATE(100), + [sym__declaration_modifiers] = STATE(2095), + [sym__declaration_specifiers] = STATE(4734), + [sym_attribute_specifier] = STATE(2095), + [sym_attribute_declaration] = STATE(950), + [sym_ms_declspec_modifier] = STATE(2095), + [sym_compound_statement] = STATE(100), + [sym_storage_class_specifier] = STATE(2095), + [sym_type_qualifier] = STATE(2095), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(100), + [sym_labeled_statement] = STATE(100), + [sym_expression_statement] = STATE(100), + [sym_if_statement] = STATE(100), + [sym_switch_statement] = STATE(100), + [sym_while_statement] = STATE(100), + [sym_do_statement] = STATE(100), + [sym_for_statement] = STATE(100), + [sym_return_statement] = STATE(100), + [sym_break_statement] = STATE(100), + [sym_continue_statement] = STATE(100), + [sym_goto_statement] = STATE(100), + [sym_seh_try_statement] = STATE(100), + [sym_seh_leave_statement] = STATE(100), + [sym_expression] = STATE(4531), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8444), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_dependent_type] = STATE(2558), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(3898), + [sym_for_range_loop] = STATE(100), + [sym_co_return_statement] = STATE(100), + [sym_co_yield_statement] = STATE(100), + [sym_throw_statement] = STATE(100), + [sym_try_statement] = STATE(100), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5721), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(3059), + [sym_user_defined_literal] = STATE(3323), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(175), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_case_statement_repeat1] = STATE(100), + [sym_identifier] = ACTIONS(1594), [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(1436), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1254), [anon_sym_AMP_AMP] = ACTIONS(1464), - [anon_sym_AMP] = ACTIONS(1442), - [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(1532), - [anon_sym_typedef] = ACTIONS(185), - [anon_sym_virtual] = ACTIONS(1446), + [anon_sym_AMP] = ACTIONS(1258), + [anon_sym_SEMI] = ACTIONS(884), + [anon_sym___extension__] = ACTIONS(1596), + [anon_sym_typedef] = ACTIONS(888), + [anon_sym_virtual] = ACTIONS(1262), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), [anon_sym_using] = ACTIONS(1462), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(1462), [anon_sym___cdecl] = ACTIONS(1462), @@ -56076,13 +56808,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(1462), [anon_sym___thiscall] = ACTIONS(1462), [anon_sym___vectorcall] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(1464), + [anon_sym_LBRACE] = ACTIONS(894), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1450), + [anon_sym_LBRACK] = ACTIONS(1266), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -56110,20 +56841,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(75), [anon_sym_struct] = ACTIONS(77), [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(199), + [anon_sym_if] = ACTIONS(898), [anon_sym_else] = ACTIONS(1462), - [anon_sym_switch] = ACTIONS(201), + [anon_sym_switch] = ACTIONS(900), [anon_sym_case] = ACTIONS(1462), [anon_sym_default] = ACTIONS(1462), - [anon_sym_while] = ACTIONS(207), - [anon_sym_do] = ACTIONS(209), - [anon_sym_for] = ACTIONS(211), - [anon_sym_return] = ACTIONS(213), - [anon_sym_break] = ACTIONS(215), - [anon_sym_continue] = ACTIONS(217), - [anon_sym_goto] = ACTIONS(219), - [anon_sym___try] = ACTIONS(221), - [anon_sym___leave] = ACTIONS(223), + [anon_sym_while] = ACTIONS(906), + [anon_sym_do] = ACTIONS(908), + [anon_sym_for] = ACTIONS(910), + [anon_sym_return] = ACTIONS(912), + [anon_sym_break] = ACTIONS(914), + [anon_sym_continue] = ACTIONS(916), + [anon_sym_goto] = ACTIONS(918), + [anon_sym___try] = ACTIONS(920), + [anon_sym___leave] = ACTIONS(922), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -56159,16 +56890,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_decltype] = ACTIONS(127), [anon_sym_explicit] = ACTIONS(1462), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_operator] = ACTIONS(1462), - [anon_sym_try] = ACTIONS(233), + [anon_sym_try] = ACTIONS(926), [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(235), + [anon_sym_throw] = ACTIONS(928), [anon_sym_namespace] = ACTIONS(1462), [anon_sym_static_assert] = ACTIONS(1462), [anon_sym_concept] = ACTIONS(1462), - [anon_sym_co_return] = ACTIONS(243), - [anon_sym_co_yield] = ACTIONS(245), + [anon_sym_co_return] = ACTIONS(936), + [anon_sym_co_yield] = ACTIONS(938), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), @@ -56179,358 +56910,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [97] = { - [sym_declaration] = STATE(97), - [sym_type_definition] = STATE(97), - [sym__declaration_modifiers] = STATE(2136), - [sym__declaration_specifiers] = STATE(5196), - [sym_attribute_specifier] = STATE(2136), - [sym_attribute_declaration] = STATE(900), - [sym_ms_declspec_modifier] = STATE(2136), - [sym_compound_statement] = STATE(97), - [sym_storage_class_specifier] = STATE(2136), - [sym_type_qualifier] = STATE(2136), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(97), - [sym_labeled_statement] = STATE(97), - [sym_expression_statement] = STATE(97), - [sym_if_statement] = STATE(97), - [sym_switch_statement] = STATE(97), - [sym_while_statement] = STATE(97), - [sym_do_statement] = STATE(97), - [sym_for_statement] = STATE(97), - [sym_return_statement] = STATE(97), - [sym_break_statement] = STATE(97), - [sym_continue_statement] = STATE(97), - [sym_goto_statement] = STATE(97), - [sym_seh_try_statement] = STATE(97), - [sym_seh_leave_statement] = STATE(97), - [sym_expression] = STATE(4500), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8311), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_dependent_type] = STATE(2523), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(3889), - [sym_for_range_loop] = STATE(97), - [sym_co_return_statement] = STATE(97), - [sym_co_yield_statement] = STATE(97), - [sym_throw_statement] = STATE(97), - [sym_try_statement] = STATE(97), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5725), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(3109), - [sym_user_defined_literal] = STATE(3242), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(218), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_case_statement_repeat1] = STATE(97), - [sym_identifier] = ACTIONS(1534), - [aux_sym_preproc_include_token1] = ACTIONS(1251), - [aux_sym_preproc_def_token1] = ACTIONS(1251), - [aux_sym_preproc_if_token1] = ACTIONS(1251), - [aux_sym_preproc_if_token2] = ACTIONS(1251), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1251), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1251), - [sym_preproc_directive] = ACTIONS(1251), - [anon_sym_LPAREN2] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(1256), - [anon_sym_TILDE] = ACTIONS(1256), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_STAR] = ACTIONS(1262), - [anon_sym_AMP_AMP] = ACTIONS(1265), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_SEMI] = ACTIONS(1537), - [anon_sym___extension__] = ACTIONS(1540), - [anon_sym_typedef] = ACTIONS(1543), - [anon_sym_virtual] = ACTIONS(1279), - [anon_sym_extern] = ACTIONS(1282), - [anon_sym___attribute__] = ACTIONS(1285), - [anon_sym___attribute] = ACTIONS(1285), - [anon_sym_using] = ACTIONS(1251), - [anon_sym_COLON_COLON] = ACTIONS(1288), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1291), - [anon_sym___declspec] = ACTIONS(1294), - [anon_sym___based] = ACTIONS(1251), - [anon_sym___cdecl] = ACTIONS(1251), - [anon_sym___clrcall] = ACTIONS(1251), - [anon_sym___stdcall] = ACTIONS(1251), - [anon_sym___fastcall] = ACTIONS(1251), - [anon_sym___thiscall] = ACTIONS(1251), - [anon_sym___vectorcall] = ACTIONS(1251), - [anon_sym_LBRACE] = ACTIONS(1546), - [anon_sym_signed] = ACTIONS(1300), - [anon_sym_unsigned] = ACTIONS(1300), - [anon_sym_long] = ACTIONS(1300), - [anon_sym_short] = ACTIONS(1300), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_static] = ACTIONS(1282), - [anon_sym_register] = ACTIONS(1282), - [anon_sym_inline] = ACTIONS(1282), - [anon_sym___inline] = ACTIONS(1282), - [anon_sym___inline__] = ACTIONS(1282), - [anon_sym___forceinline] = ACTIONS(1282), - [anon_sym_thread_local] = ACTIONS(1282), - [anon_sym___thread] = ACTIONS(1282), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [anon_sym__Nonnull] = ACTIONS(1306), - [anon_sym_mutable] = ACTIONS(1306), - [anon_sym_constinit] = ACTIONS(1306), - [anon_sym_consteval] = ACTIONS(1306), - [anon_sym_alignas] = ACTIONS(1309), - [anon_sym__Alignas] = ACTIONS(1309), - [sym_primitive_type] = ACTIONS(1312), - [anon_sym_enum] = ACTIONS(1315), - [anon_sym_class] = ACTIONS(1318), - [anon_sym_struct] = ACTIONS(1321), - [anon_sym_union] = ACTIONS(1324), - [anon_sym_if] = ACTIONS(1549), - [anon_sym_else] = ACTIONS(1251), - [anon_sym_switch] = ACTIONS(1552), - [anon_sym_case] = ACTIONS(1251), - [anon_sym_default] = ACTIONS(1251), - [anon_sym_while] = ACTIONS(1555), - [anon_sym_do] = ACTIONS(1558), - [anon_sym_for] = ACTIONS(1561), - [anon_sym_return] = ACTIONS(1564), - [anon_sym_break] = ACTIONS(1567), - [anon_sym_continue] = ACTIONS(1570), - [anon_sym_goto] = ACTIONS(1573), - [anon_sym___try] = ACTIONS(1576), - [anon_sym___leave] = ACTIONS(1579), - [anon_sym_not] = ACTIONS(1259), - [anon_sym_compl] = ACTIONS(1259), - [anon_sym_DASH_DASH] = ACTIONS(1360), - [anon_sym_PLUS_PLUS] = ACTIONS(1360), - [anon_sym_sizeof] = ACTIONS(1363), - [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(1369), - [anon_sym__Generic] = ACTIONS(1372), - [anon_sym_asm] = ACTIONS(1375), - [anon_sym___asm__] = ACTIONS(1375), - [anon_sym___asm] = ACTIONS(1375), - [sym_number_literal] = ACTIONS(1378), - [anon_sym_L_SQUOTE] = ACTIONS(1381), - [anon_sym_u_SQUOTE] = ACTIONS(1381), - [anon_sym_U_SQUOTE] = ACTIONS(1381), - [anon_sym_u8_SQUOTE] = ACTIONS(1381), - [anon_sym_SQUOTE] = ACTIONS(1381), - [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(1387), - [sym_false] = ACTIONS(1387), - [anon_sym_NULL] = ACTIONS(1390), - [anon_sym_nullptr] = ACTIONS(1390), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1393), - [anon_sym_decltype] = ACTIONS(1396), - [anon_sym_explicit] = ACTIONS(1251), - [anon_sym_typename] = ACTIONS(1399), - [anon_sym_template] = ACTIONS(1402), - [anon_sym_operator] = ACTIONS(1251), - [anon_sym_try] = ACTIONS(1582), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_throw] = ACTIONS(1585), - [anon_sym_namespace] = ACTIONS(1251), - [anon_sym_static_assert] = ACTIONS(1251), - [anon_sym_concept] = ACTIONS(1251), - [anon_sym_co_return] = ACTIONS(1588), - [anon_sym_co_yield] = ACTIONS(1591), - [anon_sym_R_DQUOTE] = ACTIONS(1420), - [anon_sym_LR_DQUOTE] = ACTIONS(1420), - [anon_sym_uR_DQUOTE] = ACTIONS(1420), - [anon_sym_UR_DQUOTE] = ACTIONS(1420), - [anon_sym_u8R_DQUOTE] = ACTIONS(1420), - [anon_sym_co_await] = ACTIONS(1423), - [anon_sym_new] = ACTIONS(1426), - [anon_sym_requires] = ACTIONS(1429), - [sym_this] = ACTIONS(1387), - }, - [98] = { - [sym_declaration] = STATE(97), - [sym_type_definition] = STATE(97), - [sym__declaration_modifiers] = STATE(2136), - [sym__declaration_specifiers] = STATE(5196), - [sym_attribute_specifier] = STATE(2136), - [sym_attribute_declaration] = STATE(900), - [sym_ms_declspec_modifier] = STATE(2136), - [sym_compound_statement] = STATE(97), - [sym_storage_class_specifier] = STATE(2136), - [sym_type_qualifier] = STATE(2136), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(97), - [sym_labeled_statement] = STATE(97), - [sym_expression_statement] = STATE(97), - [sym_if_statement] = STATE(97), - [sym_switch_statement] = STATE(97), - [sym_while_statement] = STATE(97), - [sym_do_statement] = STATE(97), - [sym_for_statement] = STATE(97), - [sym_return_statement] = STATE(97), - [sym_break_statement] = STATE(97), - [sym_continue_statement] = STATE(97), - [sym_goto_statement] = STATE(97), - [sym_seh_try_statement] = STATE(97), - [sym_seh_leave_statement] = STATE(97), - [sym_expression] = STATE(4500), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8311), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_dependent_type] = STATE(2523), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(3889), - [sym_for_range_loop] = STATE(97), - [sym_co_return_statement] = STATE(97), - [sym_co_yield_statement] = STATE(97), - [sym_throw_statement] = STATE(97), - [sym_try_statement] = STATE(97), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5725), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(3109), - [sym_user_defined_literal] = STATE(3242), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(218), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_case_statement_repeat1] = STATE(97), + [99] = { + [sym_declaration] = STATE(101), + [sym_type_definition] = STATE(101), + [sym__declaration_modifiers] = STATE(2095), + [sym__declaration_specifiers] = STATE(4734), + [sym_attribute_specifier] = STATE(2095), + [sym_attribute_declaration] = STATE(950), + [sym_ms_declspec_modifier] = STATE(2095), + [sym_compound_statement] = STATE(101), + [sym_storage_class_specifier] = STATE(2095), + [sym_type_qualifier] = STATE(2095), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(101), + [sym_labeled_statement] = STATE(101), + [sym_expression_statement] = STATE(101), + [sym_if_statement] = STATE(101), + [sym_switch_statement] = STATE(101), + [sym_while_statement] = STATE(101), + [sym_do_statement] = STATE(101), + [sym_for_statement] = STATE(101), + [sym_return_statement] = STATE(101), + [sym_break_statement] = STATE(101), + [sym_continue_statement] = STATE(101), + [sym_goto_statement] = STATE(101), + [sym_seh_try_statement] = STATE(101), + [sym_seh_leave_statement] = STATE(101), + [sym_expression] = STATE(4531), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8444), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_dependent_type] = STATE(2558), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(3898), + [sym_for_range_loop] = STATE(101), + [sym_co_return_statement] = STATE(101), + [sym_co_yield_statement] = STATE(101), + [sym_throw_statement] = STATE(101), + [sym_try_statement] = STATE(101), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5721), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(3059), + [sym_user_defined_literal] = STATE(3323), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(175), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_case_statement_repeat1] = STATE(101), [sym_identifier] = ACTIONS(1594), - [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(1436), + [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(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP_AMP] = ACTIONS(1464), - [anon_sym_AMP] = ACTIONS(1442), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP_AMP] = ACTIONS(1460), + [anon_sym_AMP] = ACTIONS(1258), [anon_sym_SEMI] = ACTIONS(884), [anon_sym___extension__] = ACTIONS(1596), [anon_sym_typedef] = ACTIONS(888), - [anon_sym_virtual] = ACTIONS(1446), + [anon_sym_virtual] = ACTIONS(1262), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1462), + [anon_sym_using] = ACTIONS(1458), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = 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___based] = 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(894), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1450), + [anon_sym_LBRACK] = ACTIONS(1266), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -56559,10 +57066,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(77), [anon_sym_union] = ACTIONS(79), [anon_sym_if] = ACTIONS(898), - [anon_sym_else] = ACTIONS(1462), + [anon_sym_else] = ACTIONS(1458), [anon_sym_switch] = ACTIONS(900), - [anon_sym_case] = ACTIONS(1462), - [anon_sym_default] = ACTIONS(1462), + [anon_sym_case] = ACTIONS(1458), + [anon_sym_default] = ACTIONS(1458), [anon_sym_while] = ACTIONS(906), [anon_sym_do] = ACTIONS(908), [anon_sym_for] = ACTIONS(910), @@ -56605,16 +57112,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(1462), + [anon_sym_explicit] = ACTIONS(1458), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_operator] = ACTIONS(1462), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_operator] = ACTIONS(1458), [anon_sym_try] = ACTIONS(926), [anon_sym_delete] = ACTIONS(145), [anon_sym_throw] = ACTIONS(928), - [anon_sym_namespace] = ACTIONS(1462), - [anon_sym_static_assert] = ACTIONS(1462), - [anon_sym_concept] = ACTIONS(1462), + [anon_sym_namespace] = ACTIONS(1458), + [anon_sym_static_assert] = ACTIONS(1458), + [anon_sym_concept] = ACTIONS(1458), [anon_sym_co_return] = ACTIONS(936), [anon_sym_co_yield] = ACTIONS(938), [anon_sym_R_DQUOTE] = ACTIONS(159), @@ -56627,134 +57134,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [99] = { - [sym_declaration] = STATE(102), - [sym_type_definition] = STATE(102), - [sym__declaration_modifiers] = STATE(2136), - [sym__declaration_specifiers] = STATE(5196), - [sym_attribute_specifier] = STATE(2136), - [sym_attribute_declaration] = STATE(900), - [sym_ms_declspec_modifier] = STATE(2136), - [sym_compound_statement] = STATE(102), - [sym_storage_class_specifier] = STATE(2136), - [sym_type_qualifier] = STATE(2136), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(102), - [sym_labeled_statement] = STATE(102), - [sym_expression_statement] = STATE(102), - [sym_if_statement] = STATE(102), - [sym_switch_statement] = STATE(102), - [sym_while_statement] = STATE(102), - [sym_do_statement] = STATE(102), - [sym_for_statement] = STATE(102), - [sym_return_statement] = STATE(102), - [sym_break_statement] = STATE(102), - [sym_continue_statement] = STATE(102), - [sym_goto_statement] = STATE(102), - [sym_seh_try_statement] = STATE(102), - [sym_seh_leave_statement] = STATE(102), - [sym_expression] = STATE(4500), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8311), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_dependent_type] = STATE(2523), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(3889), - [sym_for_range_loop] = STATE(102), - [sym_co_return_statement] = STATE(102), - [sym_co_yield_statement] = STATE(102), - [sym_throw_statement] = STATE(102), - [sym_try_statement] = STATE(102), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5725), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(3109), - [sym_user_defined_literal] = STATE(3242), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(218), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_case_statement_repeat1] = STATE(102), + [100] = { + [sym_declaration] = STATE(101), + [sym_type_definition] = STATE(101), + [sym__declaration_modifiers] = STATE(2095), + [sym__declaration_specifiers] = STATE(4734), + [sym_attribute_specifier] = STATE(2095), + [sym_attribute_declaration] = STATE(950), + [sym_ms_declspec_modifier] = STATE(2095), + [sym_compound_statement] = STATE(101), + [sym_storage_class_specifier] = STATE(2095), + [sym_type_qualifier] = STATE(2095), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(101), + [sym_labeled_statement] = STATE(101), + [sym_expression_statement] = STATE(101), + [sym_if_statement] = STATE(101), + [sym_switch_statement] = STATE(101), + [sym_while_statement] = STATE(101), + [sym_do_statement] = STATE(101), + [sym_for_statement] = STATE(101), + [sym_return_statement] = STATE(101), + [sym_break_statement] = STATE(101), + [sym_continue_statement] = STATE(101), + [sym_goto_statement] = STATE(101), + [sym_seh_try_statement] = STATE(101), + [sym_seh_leave_statement] = STATE(101), + [sym_expression] = STATE(4531), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8444), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_dependent_type] = STATE(2558), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(3898), + [sym_for_range_loop] = STATE(101), + [sym_co_return_statement] = STATE(101), + [sym_co_yield_statement] = STATE(101), + [sym_throw_statement] = STATE(101), + [sym_try_statement] = STATE(101), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5721), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(3059), + [sym_user_defined_literal] = STATE(3323), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(175), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_case_statement_repeat1] = STATE(101), [sym_identifier] = ACTIONS(1594), - [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), + [aux_sym_preproc_include_token1] = ACTIONS(1250), + [aux_sym_preproc_def_token1] = ACTIONS(1250), + [aux_sym_preproc_if_token1] = ACTIONS(1250), + [aux_sym_preproc_if_token2] = ACTIONS(1250), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1250), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1250), + [sym_preproc_directive] = ACTIONS(1250), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP_AMP] = ACTIONS(1440), - [anon_sym_AMP] = ACTIONS(1442), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP_AMP] = ACTIONS(1256), + [anon_sym_AMP] = ACTIONS(1258), [anon_sym_SEMI] = ACTIONS(884), [anon_sym___extension__] = ACTIONS(1596), [anon_sym_typedef] = ACTIONS(888), - [anon_sym_virtual] = ACTIONS(1446), + [anon_sym_virtual] = ACTIONS(1262), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1434), + [anon_sym_using] = ACTIONS(1250), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = 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___based] = ACTIONS(1250), + [anon_sym___cdecl] = ACTIONS(1250), + [anon_sym___clrcall] = ACTIONS(1250), + [anon_sym___stdcall] = ACTIONS(1250), + [anon_sym___fastcall] = ACTIONS(1250), + [anon_sym___thiscall] = ACTIONS(1250), + [anon_sym___vectorcall] = ACTIONS(1250), [anon_sym_LBRACE] = ACTIONS(894), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1450), + [anon_sym_LBRACK] = ACTIONS(1266), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -56783,10 +57290,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(77), [anon_sym_union] = ACTIONS(79), [anon_sym_if] = ACTIONS(898), - [anon_sym_else] = ACTIONS(1434), + [anon_sym_else] = ACTIONS(1250), [anon_sym_switch] = ACTIONS(900), - [anon_sym_case] = ACTIONS(1434), - [anon_sym_default] = ACTIONS(1434), + [anon_sym_case] = ACTIONS(1250), + [anon_sym_default] = ACTIONS(1250), [anon_sym_while] = ACTIONS(906), [anon_sym_do] = ACTIONS(908), [anon_sym_for] = ACTIONS(910), @@ -56829,16 +57336,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(1434), + [anon_sym_explicit] = ACTIONS(1250), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_operator] = ACTIONS(1434), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_operator] = ACTIONS(1250), [anon_sym_try] = ACTIONS(926), [anon_sym_delete] = ACTIONS(145), [anon_sym_throw] = ACTIONS(928), - [anon_sym_namespace] = ACTIONS(1434), - [anon_sym_static_assert] = ACTIONS(1434), - [anon_sym_concept] = ACTIONS(1434), + [anon_sym_namespace] = ACTIONS(1250), + [anon_sym_static_assert] = ACTIONS(1250), + [anon_sym_concept] = ACTIONS(1250), [anon_sym_co_return] = ACTIONS(936), [anon_sym_co_yield] = ACTIONS(938), [anon_sym_R_DQUOTE] = ACTIONS(159), @@ -56851,247 +57358,247 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [100] = { - [sym_declaration] = STATE(96), - [sym_type_definition] = STATE(96), - [sym__declaration_modifiers] = STATE(2136), - [sym__declaration_specifiers] = STATE(5184), - [sym_attribute_specifier] = STATE(2136), - [sym_attribute_declaration] = STATE(900), - [sym_ms_declspec_modifier] = STATE(2136), - [sym_compound_statement] = STATE(96), - [sym_storage_class_specifier] = STATE(2136), - [sym_type_qualifier] = STATE(2136), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(96), - [sym_labeled_statement] = STATE(96), - [sym_expression_statement] = STATE(96), - [sym_if_statement] = STATE(96), - [sym_switch_statement] = STATE(96), - [sym_while_statement] = STATE(96), - [sym_do_statement] = STATE(96), - [sym_for_statement] = STATE(96), - [sym_return_statement] = STATE(96), - [sym_break_statement] = STATE(96), - [sym_continue_statement] = STATE(96), - [sym_goto_statement] = STATE(96), - [sym_seh_try_statement] = STATE(96), - [sym_seh_leave_statement] = STATE(96), - [sym_expression] = STATE(4457), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8711), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_dependent_type] = STATE(2523), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(3889), - [sym_for_range_loop] = STATE(96), - [sym_co_return_statement] = STATE(96), - [sym_co_yield_statement] = STATE(96), - [sym_throw_statement] = STATE(96), - [sym_try_statement] = STATE(96), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5725), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(3109), - [sym_user_defined_literal] = STATE(3242), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(219), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_case_statement_repeat1] = STATE(96), - [sym_identifier] = ACTIONS(1530), - [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(1436), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP_AMP] = ACTIONS(1456), - [anon_sym_AMP] = ACTIONS(1442), - [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(1532), - [anon_sym_typedef] = ACTIONS(185), - [anon_sym_virtual] = ACTIONS(1446), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1454), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = 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(866), - [anon_sym_RBRACE] = ACTIONS(1456), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1450), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(199), - [anon_sym_else] = ACTIONS(1454), - [anon_sym_switch] = ACTIONS(201), - [anon_sym_case] = ACTIONS(1454), - [anon_sym_default] = ACTIONS(1454), - [anon_sym_while] = ACTIONS(207), - [anon_sym_do] = ACTIONS(209), - [anon_sym_for] = ACTIONS(211), - [anon_sym_return] = ACTIONS(213), - [anon_sym_break] = ACTIONS(215), - [anon_sym_continue] = ACTIONS(217), - [anon_sym_goto] = ACTIONS(219), - [anon_sym___try] = ACTIONS(221), - [anon_sym___leave] = ACTIONS(223), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(1454), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_operator] = ACTIONS(1454), - [anon_sym_try] = ACTIONS(233), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(235), - [anon_sym_namespace] = ACTIONS(1454), - [anon_sym_static_assert] = ACTIONS(1454), - [anon_sym_concept] = ACTIONS(1454), - [anon_sym_co_return] = ACTIONS(243), - [anon_sym_co_yield] = ACTIONS(245), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), - }, [101] = { + [sym_declaration] = STATE(101), + [sym_type_definition] = STATE(101), + [sym__declaration_modifiers] = STATE(2095), + [sym__declaration_specifiers] = STATE(4734), + [sym_attribute_specifier] = STATE(2095), + [sym_attribute_declaration] = STATE(950), + [sym_ms_declspec_modifier] = STATE(2095), + [sym_compound_statement] = STATE(101), + [sym_storage_class_specifier] = STATE(2095), + [sym_type_qualifier] = STATE(2095), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(101), + [sym_labeled_statement] = STATE(101), + [sym_expression_statement] = STATE(101), + [sym_if_statement] = STATE(101), + [sym_switch_statement] = STATE(101), + [sym_while_statement] = STATE(101), + [sym_do_statement] = STATE(101), + [sym_for_statement] = STATE(101), + [sym_return_statement] = STATE(101), + [sym_break_statement] = STATE(101), + [sym_continue_statement] = STATE(101), + [sym_goto_statement] = STATE(101), + [sym_seh_try_statement] = STATE(101), + [sym_seh_leave_statement] = STATE(101), + [sym_expression] = STATE(4531), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8444), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_dependent_type] = STATE(2558), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(3898), + [sym_for_range_loop] = STATE(101), + [sym_co_return_statement] = STATE(101), + [sym_co_yield_statement] = STATE(101), + [sym_throw_statement] = STATE(101), + [sym_try_statement] = STATE(101), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5721), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(3059), + [sym_user_defined_literal] = STATE(3323), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(175), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_case_statement_repeat1] = STATE(101), + [sym_identifier] = ACTIONS(1598), + [aux_sym_preproc_include_token1] = ACTIONS(1273), + [aux_sym_preproc_def_token1] = ACTIONS(1273), + [aux_sym_preproc_if_token1] = ACTIONS(1273), + [aux_sym_preproc_if_token2] = ACTIONS(1273), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1273), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1273), + [sym_preproc_directive] = ACTIONS(1273), + [anon_sym_LPAREN2] = ACTIONS(1275), + [anon_sym_BANG] = ACTIONS(1278), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_DASH] = ACTIONS(1281), + [anon_sym_PLUS] = ACTIONS(1281), + [anon_sym_STAR] = ACTIONS(1284), + [anon_sym_AMP_AMP] = ACTIONS(1287), + [anon_sym_AMP] = ACTIONS(1289), + [anon_sym_SEMI] = ACTIONS(1601), + [anon_sym___extension__] = ACTIONS(1604), + [anon_sym_typedef] = ACTIONS(1607), + [anon_sym_virtual] = ACTIONS(1301), + [anon_sym_extern] = ACTIONS(1304), + [anon_sym___attribute__] = ACTIONS(1307), + [anon_sym___attribute] = ACTIONS(1307), + [anon_sym_using] = ACTIONS(1273), + [anon_sym_COLON_COLON] = ACTIONS(1310), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1313), + [anon_sym___declspec] = ACTIONS(1316), + [anon_sym___based] = ACTIONS(1273), + [anon_sym___cdecl] = ACTIONS(1273), + [anon_sym___clrcall] = ACTIONS(1273), + [anon_sym___stdcall] = ACTIONS(1273), + [anon_sym___fastcall] = ACTIONS(1273), + [anon_sym___thiscall] = ACTIONS(1273), + [anon_sym___vectorcall] = ACTIONS(1273), + [anon_sym_LBRACE] = ACTIONS(1610), + [anon_sym_signed] = ACTIONS(1322), + [anon_sym_unsigned] = ACTIONS(1322), + [anon_sym_long] = ACTIONS(1322), + [anon_sym_short] = ACTIONS(1322), + [anon_sym_LBRACK] = ACTIONS(1325), + [anon_sym_static] = ACTIONS(1304), + [anon_sym_register] = ACTIONS(1304), + [anon_sym_inline] = ACTIONS(1304), + [anon_sym___inline] = ACTIONS(1304), + [anon_sym___inline__] = ACTIONS(1304), + [anon_sym___forceinline] = ACTIONS(1304), + [anon_sym_thread_local] = ACTIONS(1304), + [anon_sym___thread] = ACTIONS(1304), + [anon_sym_const] = ACTIONS(1328), + [anon_sym_constexpr] = ACTIONS(1328), + [anon_sym_volatile] = ACTIONS(1328), + [anon_sym_restrict] = ACTIONS(1328), + [anon_sym___restrict__] = ACTIONS(1328), + [anon_sym__Atomic] = ACTIONS(1328), + [anon_sym__Noreturn] = ACTIONS(1328), + [anon_sym_noreturn] = ACTIONS(1328), + [anon_sym__Nonnull] = ACTIONS(1328), + [anon_sym_mutable] = ACTIONS(1328), + [anon_sym_constinit] = ACTIONS(1328), + [anon_sym_consteval] = ACTIONS(1328), + [anon_sym_alignas] = ACTIONS(1331), + [anon_sym__Alignas] = ACTIONS(1331), + [sym_primitive_type] = ACTIONS(1334), + [anon_sym_enum] = ACTIONS(1337), + [anon_sym_class] = ACTIONS(1340), + [anon_sym_struct] = ACTIONS(1343), + [anon_sym_union] = ACTIONS(1346), + [anon_sym_if] = ACTIONS(1613), + [anon_sym_else] = ACTIONS(1273), + [anon_sym_switch] = ACTIONS(1616), + [anon_sym_case] = ACTIONS(1273), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_while] = ACTIONS(1619), + [anon_sym_do] = ACTIONS(1622), + [anon_sym_for] = ACTIONS(1625), + [anon_sym_return] = ACTIONS(1628), + [anon_sym_break] = ACTIONS(1631), + [anon_sym_continue] = ACTIONS(1634), + [anon_sym_goto] = ACTIONS(1637), + [anon_sym___try] = ACTIONS(1640), + [anon_sym___leave] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1281), + [anon_sym_compl] = ACTIONS(1281), + [anon_sym_DASH_DASH] = ACTIONS(1382), + [anon_sym_PLUS_PLUS] = ACTIONS(1382), + [anon_sym_sizeof] = ACTIONS(1385), + [anon_sym___alignof__] = ACTIONS(1388), + [anon_sym___alignof] = ACTIONS(1388), + [anon_sym__alignof] = ACTIONS(1388), + [anon_sym_alignof] = ACTIONS(1388), + [anon_sym__Alignof] = ACTIONS(1388), + [anon_sym_offsetof] = ACTIONS(1391), + [anon_sym__Generic] = ACTIONS(1394), + [anon_sym_asm] = ACTIONS(1397), + [anon_sym___asm__] = ACTIONS(1397), + [anon_sym___asm] = ACTIONS(1397), + [sym_number_literal] = ACTIONS(1400), + [anon_sym_L_SQUOTE] = ACTIONS(1403), + [anon_sym_u_SQUOTE] = ACTIONS(1403), + [anon_sym_U_SQUOTE] = ACTIONS(1403), + [anon_sym_u8_SQUOTE] = ACTIONS(1403), + [anon_sym_SQUOTE] = ACTIONS(1403), + [anon_sym_L_DQUOTE] = ACTIONS(1406), + [anon_sym_u_DQUOTE] = ACTIONS(1406), + [anon_sym_U_DQUOTE] = ACTIONS(1406), + [anon_sym_u8_DQUOTE] = ACTIONS(1406), + [anon_sym_DQUOTE] = ACTIONS(1406), + [sym_true] = ACTIONS(1409), + [sym_false] = ACTIONS(1409), + [anon_sym_NULL] = ACTIONS(1412), + [anon_sym_nullptr] = ACTIONS(1412), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1415), + [anon_sym_decltype] = ACTIONS(1418), + [anon_sym_explicit] = ACTIONS(1273), + [anon_sym_typename] = ACTIONS(1421), + [anon_sym_template] = ACTIONS(1424), + [anon_sym_operator] = ACTIONS(1273), + [anon_sym_try] = ACTIONS(1646), + [anon_sym_delete] = ACTIONS(1430), + [anon_sym_throw] = ACTIONS(1649), + [anon_sym_namespace] = ACTIONS(1273), + [anon_sym_static_assert] = ACTIONS(1273), + [anon_sym_concept] = ACTIONS(1273), + [anon_sym_co_return] = ACTIONS(1652), + [anon_sym_co_yield] = ACTIONS(1655), + [anon_sym_R_DQUOTE] = ACTIONS(1442), + [anon_sym_LR_DQUOTE] = ACTIONS(1442), + [anon_sym_uR_DQUOTE] = ACTIONS(1442), + [anon_sym_UR_DQUOTE] = ACTIONS(1442), + [anon_sym_u8R_DQUOTE] = ACTIONS(1442), + [anon_sym_co_await] = ACTIONS(1445), + [anon_sym_new] = ACTIONS(1448), + [anon_sym_requires] = ACTIONS(1451), + [sym_this] = ACTIONS(1409), + }, + [102] = { [sym_declaration] = STATE(95), [sym_type_definition] = STATE(95), - [sym__declaration_modifiers] = STATE(2136), - [sym__declaration_specifiers] = STATE(5184), - [sym_attribute_specifier] = STATE(2136), - [sym_attribute_declaration] = STATE(900), - [sym_ms_declspec_modifier] = STATE(2136), + [sym__declaration_modifiers] = STATE(2095), + [sym__declaration_specifiers] = STATE(4698), + [sym_attribute_specifier] = STATE(2095), + [sym_attribute_declaration] = STATE(950), + [sym_ms_declspec_modifier] = STATE(2095), [sym_compound_statement] = STATE(95), - [sym_storage_class_specifier] = STATE(2136), - [sym_type_qualifier] = STATE(2136), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), + [sym_storage_class_specifier] = STATE(2095), + [sym_type_qualifier] = STATE(2095), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), [sym_attributed_statement] = STATE(95), [sym_labeled_statement] = STATE(95), [sym_expression_statement] = STATE(95), @@ -57106,103 +57613,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(95), [sym_seh_try_statement] = STATE(95), [sym_seh_leave_statement] = STATE(95), - [sym_expression] = STATE(4457), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8711), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_dependent_type] = STATE(2523), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(3889), + [sym_expression] = STATE(4554), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8083), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_dependent_type] = STATE(2558), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(3898), [sym_for_range_loop] = STATE(95), [sym_co_return_statement] = STATE(95), [sym_co_yield_statement] = STATE(95), [sym_throw_statement] = STATE(95), [sym_try_statement] = STATE(95), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5725), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(3109), - [sym_user_defined_literal] = STATE(3242), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(219), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5721), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(3059), + [sym_user_defined_literal] = STATE(3323), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(186), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), [aux_sym_case_statement_repeat1] = STATE(95), - [sym_identifier] = ACTIONS(1530), - [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), + [sym_identifier] = ACTIONS(1590), + [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(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP_AMP] = ACTIONS(1440), - [anon_sym_AMP] = ACTIONS(1442), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP_AMP] = ACTIONS(1460), + [anon_sym_AMP] = ACTIONS(1258), [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(1532), + [anon_sym___extension__] = ACTIONS(1592), [anon_sym_typedef] = ACTIONS(185), - [anon_sym_virtual] = ACTIONS(1446), + [anon_sym_virtual] = ACTIONS(1262), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1434), + [anon_sym_using] = ACTIONS(1458), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = 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___based] = 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(866), - [anon_sym_RBRACE] = ACTIONS(1440), + [anon_sym_RBRACE] = ACTIONS(1460), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1450), + [anon_sym_LBRACK] = ACTIONS(1266), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -57231,10 +57738,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(77), [anon_sym_union] = ACTIONS(79), [anon_sym_if] = ACTIONS(199), - [anon_sym_else] = ACTIONS(1434), + [anon_sym_else] = ACTIONS(1458), [anon_sym_switch] = ACTIONS(201), - [anon_sym_case] = ACTIONS(1434), - [anon_sym_default] = ACTIONS(1434), + [anon_sym_case] = ACTIONS(1458), + [anon_sym_default] = ACTIONS(1458), [anon_sym_while] = ACTIONS(207), [anon_sym_do] = ACTIONS(209), [anon_sym_for] = ACTIONS(211), @@ -57277,16 +57784,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(1434), + [anon_sym_explicit] = ACTIONS(1458), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_operator] = ACTIONS(1434), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_operator] = ACTIONS(1458), [anon_sym_try] = ACTIONS(233), [anon_sym_delete] = ACTIONS(145), [anon_sym_throw] = ACTIONS(235), - [anon_sym_namespace] = ACTIONS(1434), - [anon_sym_static_assert] = ACTIONS(1434), - [anon_sym_concept] = ACTIONS(1434), + [anon_sym_namespace] = ACTIONS(1458), + [anon_sym_static_assert] = ACTIONS(1458), + [anon_sym_concept] = ACTIONS(1458), [anon_sym_co_return] = ACTIONS(243), [anon_sym_co_yield] = ACTIONS(245), [anon_sym_R_DQUOTE] = ACTIONS(159), @@ -57299,134 +57806,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [102] = { - [sym_declaration] = STATE(97), - [sym_type_definition] = STATE(97), - [sym__declaration_modifiers] = STATE(2136), - [sym__declaration_specifiers] = STATE(5196), - [sym_attribute_specifier] = STATE(2136), - [sym_attribute_declaration] = STATE(900), - [sym_ms_declspec_modifier] = STATE(2136), - [sym_compound_statement] = STATE(97), - [sym_storage_class_specifier] = STATE(2136), - [sym_type_qualifier] = STATE(2136), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(97), - [sym_labeled_statement] = STATE(97), - [sym_expression_statement] = STATE(97), - [sym_if_statement] = STATE(97), - [sym_switch_statement] = STATE(97), - [sym_while_statement] = STATE(97), - [sym_do_statement] = STATE(97), - [sym_for_statement] = STATE(97), - [sym_return_statement] = STATE(97), - [sym_break_statement] = STATE(97), - [sym_continue_statement] = STATE(97), - [sym_goto_statement] = STATE(97), - [sym_seh_try_statement] = STATE(97), - [sym_seh_leave_statement] = STATE(97), - [sym_expression] = STATE(4500), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8311), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_dependent_type] = STATE(2523), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(3889), - [sym_for_range_loop] = STATE(97), - [sym_co_return_statement] = STATE(97), - [sym_co_yield_statement] = STATE(97), - [sym_throw_statement] = STATE(97), - [sym_try_statement] = STATE(97), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5725), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(3109), - [sym_user_defined_literal] = STATE(3242), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(218), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_case_statement_repeat1] = STATE(97), - [sym_identifier] = ACTIONS(1594), - [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(1436), + [103] = { + [sym_declaration] = STATE(102), + [sym_type_definition] = STATE(102), + [sym__declaration_modifiers] = STATE(2095), + [sym__declaration_specifiers] = STATE(4698), + [sym_attribute_specifier] = STATE(2095), + [sym_attribute_declaration] = STATE(950), + [sym_ms_declspec_modifier] = STATE(2095), + [sym_compound_statement] = STATE(102), + [sym_storage_class_specifier] = STATE(2095), + [sym_type_qualifier] = STATE(2095), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(102), + [sym_labeled_statement] = STATE(102), + [sym_expression_statement] = STATE(102), + [sym_if_statement] = STATE(102), + [sym_switch_statement] = STATE(102), + [sym_while_statement] = STATE(102), + [sym_do_statement] = STATE(102), + [sym_for_statement] = STATE(102), + [sym_return_statement] = STATE(102), + [sym_break_statement] = STATE(102), + [sym_continue_statement] = STATE(102), + [sym_goto_statement] = STATE(102), + [sym_seh_try_statement] = STATE(102), + [sym_seh_leave_statement] = STATE(102), + [sym_expression] = STATE(4554), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8083), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_dependent_type] = STATE(2558), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(3898), + [sym_for_range_loop] = STATE(102), + [sym_co_return_statement] = STATE(102), + [sym_co_yield_statement] = STATE(102), + [sym_throw_statement] = STATE(102), + [sym_try_statement] = STATE(102), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5721), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(3059), + [sym_user_defined_literal] = STATE(3323), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(186), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_case_statement_repeat1] = STATE(102), + [sym_identifier] = ACTIONS(1590), + [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(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP_AMP] = ACTIONS(1460), - [anon_sym_AMP] = ACTIONS(1442), - [anon_sym_SEMI] = ACTIONS(884), - [anon_sym___extension__] = ACTIONS(1596), - [anon_sym_typedef] = ACTIONS(888), - [anon_sym_virtual] = ACTIONS(1446), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP_AMP] = ACTIONS(1456), + [anon_sym_AMP] = ACTIONS(1258), + [anon_sym_SEMI] = ACTIONS(181), + [anon_sym___extension__] = ACTIONS(1592), + [anon_sym_typedef] = ACTIONS(185), + [anon_sym_virtual] = ACTIONS(1262), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1458), + [anon_sym_using] = ACTIONS(1454), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = 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(894), + [anon_sym___based] = 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(866), + [anon_sym_RBRACE] = ACTIONS(1456), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1450), + [anon_sym_LBRACK] = ACTIONS(1266), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -57454,20 +57961,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(75), [anon_sym_struct] = ACTIONS(77), [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(898), - [anon_sym_else] = ACTIONS(1458), - [anon_sym_switch] = ACTIONS(900), - [anon_sym_case] = ACTIONS(1458), - [anon_sym_default] = ACTIONS(1458), - [anon_sym_while] = ACTIONS(906), - [anon_sym_do] = ACTIONS(908), - [anon_sym_for] = ACTIONS(910), - [anon_sym_return] = ACTIONS(912), - [anon_sym_break] = ACTIONS(914), - [anon_sym_continue] = ACTIONS(916), - [anon_sym_goto] = ACTIONS(918), - [anon_sym___try] = ACTIONS(920), - [anon_sym___leave] = ACTIONS(922), + [anon_sym_if] = ACTIONS(199), + [anon_sym_else] = ACTIONS(1454), + [anon_sym_switch] = ACTIONS(201), + [anon_sym_case] = ACTIONS(1454), + [anon_sym_default] = ACTIONS(1454), + [anon_sym_while] = ACTIONS(207), + [anon_sym_do] = ACTIONS(209), + [anon_sym_for] = ACTIONS(211), + [anon_sym_return] = ACTIONS(213), + [anon_sym_break] = ACTIONS(215), + [anon_sym_continue] = ACTIONS(217), + [anon_sym_goto] = ACTIONS(219), + [anon_sym___try] = ACTIONS(221), + [anon_sym___leave] = ACTIONS(223), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -57501,18 +58008,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(1458), + [anon_sym_explicit] = ACTIONS(1454), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_operator] = ACTIONS(1458), - [anon_sym_try] = ACTIONS(926), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_operator] = ACTIONS(1454), + [anon_sym_try] = ACTIONS(233), [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(928), - [anon_sym_namespace] = ACTIONS(1458), - [anon_sym_static_assert] = ACTIONS(1458), - [anon_sym_concept] = ACTIONS(1458), - [anon_sym_co_return] = ACTIONS(936), - [anon_sym_co_yield] = ACTIONS(938), + [anon_sym_throw] = ACTIONS(235), + [anon_sym_namespace] = ACTIONS(1454), + [anon_sym_static_assert] = ACTIONS(1454), + [anon_sym_concept] = ACTIONS(1454), + [anon_sym_co_return] = ACTIONS(243), + [anon_sym_co_yield] = ACTIONS(245), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), @@ -57523,358 +58030,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [103] = { - [sym_declaration] = STATE(103), - [sym_type_definition] = STATE(103), - [sym__declaration_modifiers] = STATE(2136), - [sym__declaration_specifiers] = STATE(5184), - [sym_attribute_specifier] = STATE(2136), - [sym_attribute_declaration] = STATE(900), - [sym_ms_declspec_modifier] = STATE(2136), - [sym_compound_statement] = STATE(103), - [sym_storage_class_specifier] = STATE(2136), - [sym_type_qualifier] = STATE(2136), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(103), - [sym_labeled_statement] = STATE(103), - [sym_expression_statement] = STATE(103), - [sym_if_statement] = STATE(103), - [sym_switch_statement] = STATE(103), - [sym_while_statement] = STATE(103), - [sym_do_statement] = STATE(103), - [sym_for_statement] = STATE(103), - [sym_return_statement] = STATE(103), - [sym_break_statement] = STATE(103), - [sym_continue_statement] = STATE(103), - [sym_goto_statement] = STATE(103), - [sym_seh_try_statement] = STATE(103), - [sym_seh_leave_statement] = STATE(103), - [sym_expression] = STATE(4457), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8711), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_dependent_type] = STATE(2523), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(3889), - [sym_for_range_loop] = STATE(103), - [sym_co_return_statement] = STATE(103), - [sym_co_yield_statement] = STATE(103), - [sym_throw_statement] = STATE(103), - [sym_try_statement] = STATE(103), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5725), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(3109), - [sym_user_defined_literal] = STATE(3242), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(219), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_case_statement_repeat1] = STATE(103), - [sym_identifier] = ACTIONS(1598), - [aux_sym_preproc_include_token1] = ACTIONS(1251), - [aux_sym_preproc_def_token1] = ACTIONS(1251), - [aux_sym_preproc_if_token1] = ACTIONS(1251), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1251), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1251), - [sym_preproc_directive] = ACTIONS(1251), - [anon_sym_LPAREN2] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(1256), - [anon_sym_TILDE] = ACTIONS(1256), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_STAR] = ACTIONS(1262), - [anon_sym_AMP_AMP] = ACTIONS(1265), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_SEMI] = ACTIONS(1601), - [anon_sym___extension__] = ACTIONS(1604), - [anon_sym_typedef] = ACTIONS(1607), - [anon_sym_virtual] = ACTIONS(1279), - [anon_sym_extern] = ACTIONS(1282), - [anon_sym___attribute__] = ACTIONS(1285), - [anon_sym___attribute] = ACTIONS(1285), - [anon_sym_using] = ACTIONS(1251), - [anon_sym_COLON_COLON] = ACTIONS(1288), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1291), - [anon_sym___declspec] = ACTIONS(1294), - [anon_sym___based] = ACTIONS(1251), - [anon_sym___cdecl] = ACTIONS(1251), - [anon_sym___clrcall] = ACTIONS(1251), - [anon_sym___stdcall] = ACTIONS(1251), - [anon_sym___fastcall] = ACTIONS(1251), - [anon_sym___thiscall] = ACTIONS(1251), - [anon_sym___vectorcall] = ACTIONS(1251), - [anon_sym_LBRACE] = ACTIONS(1610), - [anon_sym_RBRACE] = ACTIONS(1265), - [anon_sym_signed] = ACTIONS(1300), - [anon_sym_unsigned] = ACTIONS(1300), - [anon_sym_long] = ACTIONS(1300), - [anon_sym_short] = ACTIONS(1300), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_static] = ACTIONS(1282), - [anon_sym_register] = ACTIONS(1282), - [anon_sym_inline] = ACTIONS(1282), - [anon_sym___inline] = ACTIONS(1282), - [anon_sym___inline__] = ACTIONS(1282), - [anon_sym___forceinline] = ACTIONS(1282), - [anon_sym_thread_local] = ACTIONS(1282), - [anon_sym___thread] = ACTIONS(1282), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [anon_sym__Nonnull] = ACTIONS(1306), - [anon_sym_mutable] = ACTIONS(1306), - [anon_sym_constinit] = ACTIONS(1306), - [anon_sym_consteval] = ACTIONS(1306), - [anon_sym_alignas] = ACTIONS(1309), - [anon_sym__Alignas] = ACTIONS(1309), - [sym_primitive_type] = ACTIONS(1312), - [anon_sym_enum] = ACTIONS(1315), - [anon_sym_class] = ACTIONS(1318), - [anon_sym_struct] = ACTIONS(1321), - [anon_sym_union] = ACTIONS(1324), - [anon_sym_if] = ACTIONS(1613), - [anon_sym_else] = ACTIONS(1251), - [anon_sym_switch] = ACTIONS(1616), - [anon_sym_case] = ACTIONS(1251), - [anon_sym_default] = ACTIONS(1251), - [anon_sym_while] = ACTIONS(1619), - [anon_sym_do] = ACTIONS(1622), - [anon_sym_for] = ACTIONS(1625), - [anon_sym_return] = ACTIONS(1628), - [anon_sym_break] = ACTIONS(1631), - [anon_sym_continue] = ACTIONS(1634), - [anon_sym_goto] = ACTIONS(1637), - [anon_sym___try] = ACTIONS(1640), - [anon_sym___leave] = ACTIONS(1643), - [anon_sym_not] = ACTIONS(1259), - [anon_sym_compl] = ACTIONS(1259), - [anon_sym_DASH_DASH] = ACTIONS(1360), - [anon_sym_PLUS_PLUS] = ACTIONS(1360), - [anon_sym_sizeof] = ACTIONS(1363), - [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(1369), - [anon_sym__Generic] = ACTIONS(1372), - [anon_sym_asm] = ACTIONS(1375), - [anon_sym___asm__] = ACTIONS(1375), - [anon_sym___asm] = ACTIONS(1375), - [sym_number_literal] = ACTIONS(1378), - [anon_sym_L_SQUOTE] = ACTIONS(1381), - [anon_sym_u_SQUOTE] = ACTIONS(1381), - [anon_sym_U_SQUOTE] = ACTIONS(1381), - [anon_sym_u8_SQUOTE] = ACTIONS(1381), - [anon_sym_SQUOTE] = ACTIONS(1381), - [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(1387), - [sym_false] = ACTIONS(1387), - [anon_sym_NULL] = ACTIONS(1390), - [anon_sym_nullptr] = ACTIONS(1390), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1393), - [anon_sym_decltype] = ACTIONS(1396), - [anon_sym_explicit] = ACTIONS(1251), - [anon_sym_typename] = ACTIONS(1399), - [anon_sym_template] = ACTIONS(1402), - [anon_sym_operator] = ACTIONS(1251), - [anon_sym_try] = ACTIONS(1646), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_throw] = ACTIONS(1649), - [anon_sym_namespace] = ACTIONS(1251), - [anon_sym_static_assert] = ACTIONS(1251), - [anon_sym_concept] = ACTIONS(1251), - [anon_sym_co_return] = ACTIONS(1652), - [anon_sym_co_yield] = ACTIONS(1655), - [anon_sym_R_DQUOTE] = ACTIONS(1420), - [anon_sym_LR_DQUOTE] = ACTIONS(1420), - [anon_sym_uR_DQUOTE] = ACTIONS(1420), - [anon_sym_UR_DQUOTE] = ACTIONS(1420), - [anon_sym_u8R_DQUOTE] = ACTIONS(1420), - [anon_sym_co_await] = ACTIONS(1423), - [anon_sym_new] = ACTIONS(1426), - [anon_sym_requires] = ACTIONS(1429), - [sym_this] = ACTIONS(1387), - }, [104] = { - [sym_declaration] = STATE(98), - [sym_type_definition] = STATE(98), - [sym__declaration_modifiers] = STATE(2136), - [sym__declaration_specifiers] = STATE(5196), - [sym_attribute_specifier] = STATE(2136), - [sym_attribute_declaration] = STATE(900), - [sym_ms_declspec_modifier] = STATE(2136), - [sym_compound_statement] = STATE(98), - [sym_storage_class_specifier] = STATE(2136), - [sym_type_qualifier] = STATE(2136), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(98), - [sym_labeled_statement] = STATE(98), - [sym_expression_statement] = STATE(98), - [sym_if_statement] = STATE(98), - [sym_switch_statement] = STATE(98), - [sym_while_statement] = STATE(98), - [sym_do_statement] = STATE(98), - [sym_for_statement] = STATE(98), - [sym_return_statement] = STATE(98), - [sym_break_statement] = STATE(98), - [sym_continue_statement] = STATE(98), - [sym_goto_statement] = STATE(98), - [sym_seh_try_statement] = STATE(98), - [sym_seh_leave_statement] = STATE(98), - [sym_expression] = STATE(4500), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8311), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_dependent_type] = STATE(2523), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(3889), - [sym_for_range_loop] = STATE(98), - [sym_co_return_statement] = STATE(98), - [sym_co_yield_statement] = STATE(98), - [sym_throw_statement] = STATE(98), - [sym_try_statement] = STATE(98), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5725), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(3109), - [sym_user_defined_literal] = STATE(3242), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(218), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_case_statement_repeat1] = STATE(98), - [sym_identifier] = ACTIONS(1594), - [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(1436), + [sym_declaration] = STATE(96), + [sym_type_definition] = STATE(96), + [sym__declaration_modifiers] = STATE(2095), + [sym__declaration_specifiers] = STATE(4698), + [sym_attribute_specifier] = STATE(2095), + [sym_attribute_declaration] = STATE(950), + [sym_ms_declspec_modifier] = STATE(2095), + [sym_compound_statement] = STATE(96), + [sym_storage_class_specifier] = STATE(2095), + [sym_type_qualifier] = STATE(2095), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(96), + [sym_labeled_statement] = STATE(96), + [sym_expression_statement] = STATE(96), + [sym_if_statement] = STATE(96), + [sym_switch_statement] = STATE(96), + [sym_while_statement] = STATE(96), + [sym_do_statement] = STATE(96), + [sym_for_statement] = STATE(96), + [sym_return_statement] = STATE(96), + [sym_break_statement] = STATE(96), + [sym_continue_statement] = STATE(96), + [sym_goto_statement] = STATE(96), + [sym_seh_try_statement] = STATE(96), + [sym_seh_leave_statement] = STATE(96), + [sym_expression] = STATE(4554), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8083), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_dependent_type] = STATE(2558), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(3898), + [sym_for_range_loop] = STATE(96), + [sym_co_return_statement] = STATE(96), + [sym_co_yield_statement] = STATE(96), + [sym_throw_statement] = STATE(96), + [sym_try_statement] = STATE(96), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5721), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(3059), + [sym_user_defined_literal] = STATE(3323), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(186), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_case_statement_repeat1] = STATE(96), + [sym_identifier] = ACTIONS(1590), + [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(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP_AMP] = ACTIONS(1456), - [anon_sym_AMP] = ACTIONS(1442), - [anon_sym_SEMI] = ACTIONS(884), - [anon_sym___extension__] = ACTIONS(1596), - [anon_sym_typedef] = ACTIONS(888), - [anon_sym_virtual] = ACTIONS(1446), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP_AMP] = ACTIONS(1464), + [anon_sym_AMP] = ACTIONS(1258), + [anon_sym_SEMI] = ACTIONS(181), + [anon_sym___extension__] = ACTIONS(1592), + [anon_sym_typedef] = ACTIONS(185), + [anon_sym_virtual] = ACTIONS(1262), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1454), + [anon_sym_using] = ACTIONS(1462), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = 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(894), + [anon_sym___based] = 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(866), + [anon_sym_RBRACE] = ACTIONS(1464), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1450), + [anon_sym_LBRACK] = ACTIONS(1266), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -57902,20 +58185,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(75), [anon_sym_struct] = ACTIONS(77), [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(898), - [anon_sym_else] = ACTIONS(1454), - [anon_sym_switch] = ACTIONS(900), - [anon_sym_case] = ACTIONS(1454), - [anon_sym_default] = ACTIONS(1454), - [anon_sym_while] = ACTIONS(906), - [anon_sym_do] = ACTIONS(908), - [anon_sym_for] = ACTIONS(910), - [anon_sym_return] = ACTIONS(912), - [anon_sym_break] = ACTIONS(914), - [anon_sym_continue] = ACTIONS(916), - [anon_sym_goto] = ACTIONS(918), - [anon_sym___try] = ACTIONS(920), - [anon_sym___leave] = ACTIONS(922), + [anon_sym_if] = ACTIONS(199), + [anon_sym_else] = ACTIONS(1462), + [anon_sym_switch] = ACTIONS(201), + [anon_sym_case] = ACTIONS(1462), + [anon_sym_default] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(207), + [anon_sym_do] = ACTIONS(209), + [anon_sym_for] = ACTIONS(211), + [anon_sym_return] = ACTIONS(213), + [anon_sym_break] = ACTIONS(215), + [anon_sym_continue] = ACTIONS(217), + [anon_sym_goto] = ACTIONS(219), + [anon_sym___try] = ACTIONS(221), + [anon_sym___leave] = ACTIONS(223), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -57949,18 +58232,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(1454), + [anon_sym_explicit] = ACTIONS(1462), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_operator] = ACTIONS(1454), - [anon_sym_try] = ACTIONS(926), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_operator] = ACTIONS(1462), + [anon_sym_try] = ACTIONS(233), [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(928), - [anon_sym_namespace] = ACTIONS(1454), - [anon_sym_static_assert] = ACTIONS(1454), - [anon_sym_concept] = ACTIONS(1454), - [anon_sym_co_return] = ACTIONS(936), - [anon_sym_co_yield] = ACTIONS(938), + [anon_sym_throw] = ACTIONS(235), + [anon_sym_namespace] = ACTIONS(1462), + [anon_sym_static_assert] = ACTIONS(1462), + [anon_sym_concept] = ACTIONS(1462), + [anon_sym_co_return] = ACTIONS(243), + [anon_sym_co_yield] = ACTIONS(245), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), @@ -57972,117 +58255,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [105] = { - [sym_declaration] = STATE(571), - [sym__declaration_modifiers] = STATE(2136), - [sym__declaration_specifiers] = STATE(5184), - [sym_attribute_specifier] = STATE(2136), - [sym_attribute_declaration] = STATE(900), - [sym_ms_declspec_modifier] = STATE(2136), - [sym_compound_statement] = STATE(545), - [sym_storage_class_specifier] = STATE(2136), - [sym_type_qualifier] = STATE(2136), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(545), - [sym_statement] = STATE(571), - [sym_labeled_statement] = STATE(545), - [sym_expression_statement] = STATE(545), - [sym_if_statement] = STATE(545), - [sym_switch_statement] = STATE(545), - [sym_case_statement] = STATE(545), - [sym_while_statement] = STATE(545), - [sym_do_statement] = STATE(545), - [sym_for_statement] = STATE(545), - [sym_return_statement] = STATE(545), - [sym_break_statement] = STATE(545), - [sym_continue_statement] = STATE(545), - [sym_goto_statement] = STATE(545), - [sym_seh_try_statement] = STATE(545), - [sym_seh_leave_statement] = STATE(545), - [sym_expression] = STATE(4403), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8711), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_initializer_list] = STATE(7580), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_dependent_type] = STATE(2523), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(3889), - [sym_for_range_loop] = STATE(545), - [sym_co_return_statement] = STATE(545), - [sym_co_yield_statement] = STATE(545), - [sym_throw_statement] = STATE(545), - [sym_try_statement] = STATE(545), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5725), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(3109), - [sym_user_defined_literal] = STATE(3242), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(219), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [sym_identifier] = ACTIONS(1530), - [anon_sym_LPAREN2] = ACTIONS(1436), + [sym_declaration] = STATE(585), + [sym__declaration_modifiers] = STATE(2095), + [sym__declaration_specifiers] = STATE(4698), + [sym_attribute_specifier] = STATE(2095), + [sym_attribute_declaration] = STATE(950), + [sym_ms_declspec_modifier] = STATE(2095), + [sym_compound_statement] = STATE(560), + [sym_storage_class_specifier] = STATE(2095), + [sym_type_qualifier] = STATE(2095), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(560), + [sym_statement] = STATE(585), + [sym_labeled_statement] = STATE(560), + [sym_expression_statement] = STATE(560), + [sym_if_statement] = STATE(560), + [sym_switch_statement] = STATE(560), + [sym_case_statement] = STATE(560), + [sym_while_statement] = STATE(560), + [sym_do_statement] = STATE(560), + [sym_for_statement] = STATE(560), + [sym_return_statement] = STATE(560), + [sym_break_statement] = STATE(560), + [sym_continue_statement] = STATE(560), + [sym_goto_statement] = STATE(560), + [sym_seh_try_statement] = STATE(560), + [sym_seh_leave_statement] = STATE(560), + [sym_expression] = STATE(4382), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8083), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_initializer_list] = STATE(7939), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_dependent_type] = STATE(2558), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(3898), + [sym_for_range_loop] = STATE(560), + [sym_co_return_statement] = STATE(560), + [sym_co_yield_statement] = STATE(560), + [sym_throw_statement] = STATE(560), + [sym_try_statement] = STATE(560), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5721), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(3059), + [sym_user_defined_literal] = STATE(3323), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(186), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(1590), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), [anon_sym_SEMI] = ACTIONS(181), [anon_sym___extension__] = ACTIONS(1658), - [anon_sym_virtual] = ACTIONS(1446), + [anon_sym_virtual] = ACTIONS(1262), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), [anon_sym___declspec] = ACTIONS(51), [anon_sym_LBRACE] = ACTIONS(191), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1450), + [anon_sym_LBRACK] = ACTIONS(1266), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -58157,7 +58440,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_try] = ACTIONS(233), [anon_sym_delete] = ACTIONS(145), [anon_sym_throw] = ACTIONS(235), @@ -58174,117 +58457,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [106] = { - [sym_declaration] = STATE(108), - [sym_type_definition] = STATE(108), - [sym__declaration_modifiers] = STATE(2136), - [sym__declaration_specifiers] = STATE(5209), - [sym_attribute_specifier] = STATE(2136), - [sym_attribute_declaration] = STATE(900), - [sym_ms_declspec_modifier] = STATE(2136), - [sym_compound_statement] = STATE(108), - [sym_storage_class_specifier] = STATE(2136), - [sym_type_qualifier] = STATE(2136), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(108), - [sym_labeled_statement] = STATE(108), - [sym_expression_statement] = STATE(108), - [sym_if_statement] = STATE(108), - [sym_switch_statement] = STATE(108), - [sym_while_statement] = STATE(108), - [sym_do_statement] = STATE(108), - [sym_for_statement] = STATE(108), - [sym_return_statement] = STATE(108), - [sym_break_statement] = STATE(108), - [sym_continue_statement] = STATE(108), - [sym_goto_statement] = STATE(108), - [sym_seh_try_statement] = STATE(108), - [sym_seh_leave_statement] = STATE(108), - [sym_expression] = STATE(4571), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8696), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_dependent_type] = STATE(2523), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(3889), - [sym_for_range_loop] = STATE(108), - [sym_co_return_statement] = STATE(108), - [sym_co_yield_statement] = STATE(108), - [sym_throw_statement] = STATE(108), - [sym_try_statement] = STATE(108), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5725), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(3109), - [sym_user_defined_literal] = STATE(3242), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(179), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_case_statement_repeat1] = STATE(108), + [sym_declaration] = STATE(111), + [sym_type_definition] = STATE(111), + [sym__declaration_modifiers] = STATE(2095), + [sym__declaration_specifiers] = STATE(4705), + [sym_attribute_specifier] = STATE(2095), + [sym_attribute_declaration] = STATE(950), + [sym_ms_declspec_modifier] = STATE(2095), + [sym_compound_statement] = STATE(111), + [sym_storage_class_specifier] = STATE(2095), + [sym_type_qualifier] = STATE(2095), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(111), + [sym_labeled_statement] = STATE(111), + [sym_expression_statement] = STATE(111), + [sym_if_statement] = STATE(111), + [sym_switch_statement] = STATE(111), + [sym_while_statement] = STATE(111), + [sym_do_statement] = STATE(111), + [sym_for_statement] = STATE(111), + [sym_return_statement] = STATE(111), + [sym_break_statement] = STATE(111), + [sym_continue_statement] = STATE(111), + [sym_goto_statement] = STATE(111), + [sym_seh_try_statement] = STATE(111), + [sym_seh_leave_statement] = STATE(111), + [sym_expression] = STATE(4602), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8311), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_dependent_type] = STATE(2558), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(3898), + [sym_for_range_loop] = STATE(111), + [sym_co_return_statement] = STATE(111), + [sym_co_yield_statement] = STATE(111), + [sym_throw_statement] = STATE(111), + [sym_try_statement] = STATE(111), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5721), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(3059), + [sym_user_defined_literal] = STATE(3323), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(176), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_case_statement_repeat1] = STATE(111), [sym_identifier] = ACTIONS(1660), - [anon_sym_LPAREN2] = ACTIONS(1436), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), [anon_sym_SEMI] = ACTIONS(1662), [anon_sym___extension__] = ACTIONS(1664), [anon_sym_typedef] = ACTIONS(1666), - [anon_sym_virtual] = ACTIONS(1446), + [anon_sym_virtual] = ACTIONS(1262), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), [anon_sym___declspec] = ACTIONS(51), [anon_sym_LBRACE] = ACTIONS(1668), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1450), + [anon_sym_LBRACK] = ACTIONS(1266), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -58313,7 +58596,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(77), [anon_sym_union] = ACTIONS(79), [anon_sym_if] = ACTIONS(1670), - [anon_sym_else] = ACTIONS(1454), + [anon_sym_else] = ACTIONS(1458), [anon_sym_switch] = ACTIONS(1672), [anon_sym_while] = ACTIONS(1674), [anon_sym_do] = ACTIONS(1676), @@ -58358,7 +58641,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_try] = ACTIONS(1692), [anon_sym_delete] = ACTIONS(145), [anon_sym_throw] = ACTIONS(1694), @@ -58375,318 +58658,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [107] = { - [sym_declaration] = STATE(107), - [sym_type_definition] = STATE(107), - [sym__declaration_modifiers] = STATE(2136), - [sym__declaration_specifiers] = STATE(5209), - [sym_attribute_specifier] = STATE(2136), - [sym_attribute_declaration] = STATE(900), - [sym_ms_declspec_modifier] = STATE(2136), - [sym_compound_statement] = STATE(107), - [sym_storage_class_specifier] = STATE(2136), - [sym_type_qualifier] = STATE(2136), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [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_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(4571), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8696), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_dependent_type] = STATE(2523), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(3889), - [sym_for_range_loop] = STATE(107), - [sym_co_return_statement] = STATE(107), - [sym_co_yield_statement] = STATE(107), - [sym_throw_statement] = STATE(107), - [sym_try_statement] = STATE(107), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5725), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(3109), - [sym_user_defined_literal] = STATE(3242), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(179), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_case_statement_repeat1] = STATE(107), - [sym_identifier] = ACTIONS(1700), - [anon_sym_LPAREN2] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(1256), - [anon_sym_TILDE] = ACTIONS(1256), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_STAR] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(1262), - [anon_sym_SEMI] = ACTIONS(1703), - [anon_sym___extension__] = ACTIONS(1706), - [anon_sym_typedef] = ACTIONS(1709), - [anon_sym_virtual] = ACTIONS(1279), - [anon_sym_extern] = ACTIONS(1282), - [anon_sym___attribute__] = ACTIONS(1285), - [anon_sym___attribute] = ACTIONS(1285), - [anon_sym_COLON_COLON] = ACTIONS(1288), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1291), - [anon_sym___declspec] = ACTIONS(1294), - [anon_sym_LBRACE] = ACTIONS(1712), - [anon_sym_signed] = ACTIONS(1300), - [anon_sym_unsigned] = ACTIONS(1300), - [anon_sym_long] = ACTIONS(1300), - [anon_sym_short] = ACTIONS(1300), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_static] = ACTIONS(1282), - [anon_sym_register] = ACTIONS(1282), - [anon_sym_inline] = ACTIONS(1282), - [anon_sym___inline] = ACTIONS(1282), - [anon_sym___inline__] = ACTIONS(1282), - [anon_sym___forceinline] = ACTIONS(1282), - [anon_sym_thread_local] = ACTIONS(1282), - [anon_sym___thread] = ACTIONS(1282), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [anon_sym__Nonnull] = ACTIONS(1306), - [anon_sym_mutable] = ACTIONS(1306), - [anon_sym_constinit] = ACTIONS(1306), - [anon_sym_consteval] = ACTIONS(1306), - [anon_sym_alignas] = ACTIONS(1309), - [anon_sym__Alignas] = ACTIONS(1309), - [sym_primitive_type] = ACTIONS(1312), - [anon_sym_enum] = ACTIONS(1315), - [anon_sym_class] = ACTIONS(1318), - [anon_sym_struct] = ACTIONS(1321), - [anon_sym_union] = ACTIONS(1324), - [anon_sym_if] = ACTIONS(1715), - [anon_sym_else] = ACTIONS(1251), - [anon_sym_switch] = ACTIONS(1718), - [anon_sym_while] = ACTIONS(1721), - [anon_sym_do] = ACTIONS(1724), - [anon_sym_for] = ACTIONS(1727), - [anon_sym_return] = ACTIONS(1730), - [anon_sym_break] = ACTIONS(1733), - [anon_sym_continue] = ACTIONS(1736), - [anon_sym_goto] = ACTIONS(1739), - [anon_sym___try] = ACTIONS(1742), - [anon_sym___leave] = ACTIONS(1745), - [anon_sym_not] = ACTIONS(1259), - [anon_sym_compl] = ACTIONS(1259), - [anon_sym_DASH_DASH] = ACTIONS(1360), - [anon_sym_PLUS_PLUS] = ACTIONS(1360), - [anon_sym_sizeof] = ACTIONS(1363), - [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(1369), - [anon_sym__Generic] = ACTIONS(1372), - [anon_sym_asm] = ACTIONS(1375), - [anon_sym___asm__] = ACTIONS(1375), - [anon_sym___asm] = ACTIONS(1375), - [sym_number_literal] = ACTIONS(1378), - [anon_sym_L_SQUOTE] = ACTIONS(1381), - [anon_sym_u_SQUOTE] = ACTIONS(1381), - [anon_sym_U_SQUOTE] = ACTIONS(1381), - [anon_sym_u8_SQUOTE] = ACTIONS(1381), - [anon_sym_SQUOTE] = ACTIONS(1381), - [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(1387), - [sym_false] = ACTIONS(1387), - [anon_sym_NULL] = ACTIONS(1390), - [anon_sym_nullptr] = ACTIONS(1390), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1393), - [anon_sym_decltype] = ACTIONS(1396), - [anon_sym_typename] = ACTIONS(1399), - [anon_sym_template] = ACTIONS(1402), - [anon_sym_try] = ACTIONS(1748), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_throw] = ACTIONS(1751), - [anon_sym_co_return] = ACTIONS(1754), - [anon_sym_co_yield] = ACTIONS(1757), - [anon_sym_R_DQUOTE] = ACTIONS(1420), - [anon_sym_LR_DQUOTE] = ACTIONS(1420), - [anon_sym_uR_DQUOTE] = ACTIONS(1420), - [anon_sym_UR_DQUOTE] = ACTIONS(1420), - [anon_sym_u8R_DQUOTE] = ACTIONS(1420), - [anon_sym_co_await] = ACTIONS(1423), - [anon_sym_new] = ACTIONS(1426), - [anon_sym_requires] = ACTIONS(1429), - [sym_this] = ACTIONS(1387), - }, - [108] = { - [sym_declaration] = STATE(107), - [sym_type_definition] = STATE(107), - [sym__declaration_modifiers] = STATE(2136), - [sym__declaration_specifiers] = STATE(5209), - [sym_attribute_specifier] = STATE(2136), - [sym_attribute_declaration] = STATE(900), - [sym_ms_declspec_modifier] = STATE(2136), - [sym_compound_statement] = STATE(107), - [sym_storage_class_specifier] = STATE(2136), - [sym_type_qualifier] = STATE(2136), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [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_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(4571), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8696), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_dependent_type] = STATE(2523), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(3889), - [sym_for_range_loop] = STATE(107), - [sym_co_return_statement] = STATE(107), - [sym_co_yield_statement] = STATE(107), - [sym_throw_statement] = STATE(107), - [sym_try_statement] = STATE(107), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5725), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(3109), - [sym_user_defined_literal] = STATE(3242), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(179), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_case_statement_repeat1] = STATE(107), - [sym_identifier] = ACTIONS(1660), - [anon_sym_LPAREN2] = ACTIONS(1436), + [sym_declaration] = STATE(267), + [sym__declaration_modifiers] = STATE(2095), + [sym__declaration_specifiers] = STATE(4645), + [sym_attribute_specifier] = STATE(2095), + [sym_attribute_declaration] = STATE(950), + [sym_ms_declspec_modifier] = STATE(2095), + [sym_compound_statement] = STATE(260), + [sym_storage_class_specifier] = STATE(2095), + [sym_type_qualifier] = STATE(2095), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(260), + [sym_statement] = STATE(267), + [sym_labeled_statement] = STATE(260), + [sym_expression_statement] = STATE(260), + [sym_if_statement] = STATE(260), + [sym_switch_statement] = STATE(260), + [sym_case_statement] = STATE(260), + [sym_while_statement] = STATE(260), + [sym_do_statement] = STATE(260), + [sym_for_statement] = STATE(260), + [sym_return_statement] = STATE(260), + [sym_break_statement] = STATE(260), + [sym_continue_statement] = STATE(260), + [sym_goto_statement] = STATE(260), + [sym_seh_try_statement] = STATE(260), + [sym_seh_leave_statement] = STATE(260), + [sym_expression] = STATE(4517), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8280), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_dependent_type] = STATE(2558), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(3898), + [sym_for_range_loop] = STATE(260), + [sym_co_return_statement] = STATE(260), + [sym_co_yield_statement] = STATE(260), + [sym_throw_statement] = STATE(260), + [sym_try_statement] = STATE(260), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5721), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(3059), + [sym_user_defined_literal] = STATE(3323), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(205), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(1248), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(1662), - [anon_sym___extension__] = ACTIONS(1664), - [anon_sym_typedef] = ACTIONS(1666), - [anon_sym_virtual] = ACTIONS(1446), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(287), + [anon_sym___extension__] = ACTIONS(1658), + [anon_sym_virtual] = ACTIONS(1262), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), [anon_sym___declspec] = ACTIONS(51), - [anon_sym_LBRACE] = ACTIONS(1668), + [anon_sym_LBRACE] = ACTIONS(297), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1450), + [anon_sym_LBRACK] = ACTIONS(1266), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -58714,18 +58795,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(75), [anon_sym_struct] = ACTIONS(77), [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(1670), - [anon_sym_else] = ACTIONS(1462), - [anon_sym_switch] = ACTIONS(1672), - [anon_sym_while] = ACTIONS(1674), - [anon_sym_do] = ACTIONS(1676), - [anon_sym_for] = ACTIONS(1678), - [anon_sym_return] = ACTIONS(1680), - [anon_sym_break] = ACTIONS(1682), - [anon_sym_continue] = ACTIONS(1684), - [anon_sym_goto] = ACTIONS(1686), - [anon_sym___try] = ACTIONS(1688), - [anon_sym___leave] = ACTIONS(1690), + [anon_sym_if] = ACTIONS(301), + [anon_sym_switch] = ACTIONS(303), + [anon_sym_case] = ACTIONS(305), + [anon_sym_default] = ACTIONS(307), + [anon_sym_while] = ACTIONS(309), + [anon_sym_do] = ACTIONS(311), + [anon_sym_for] = ACTIONS(313), + [anon_sym_return] = ACTIONS(315), + [anon_sym_break] = ACTIONS(317), + [anon_sym_continue] = ACTIONS(319), + [anon_sym_goto] = ACTIONS(321), + [anon_sym___try] = ACTIONS(323), + [anon_sym___leave] = ACTIONS(325), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -58760,12 +58842,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_try] = ACTIONS(1692), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_try] = ACTIONS(329), [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(1694), - [anon_sym_co_return] = ACTIONS(1696), - [anon_sym_co_yield] = ACTIONS(1698), + [anon_sym_throw] = ACTIONS(331), + [anon_sym_co_return] = ACTIONS(339), + [anon_sym_co_yield] = ACTIONS(341), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), @@ -58776,117 +58858,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [109] = { - [sym_declaration] = STATE(913), - [sym__declaration_modifiers] = STATE(2136), - [sym__declaration_specifiers] = STATE(5209), - [sym_attribute_specifier] = STATE(2136), - [sym_attribute_declaration] = STATE(900), - [sym_ms_declspec_modifier] = STATE(2136), - [sym_compound_statement] = STATE(904), - [sym_storage_class_specifier] = STATE(2136), - [sym_type_qualifier] = STATE(2136), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(904), - [sym_statement] = STATE(913), - [sym_labeled_statement] = STATE(904), - [sym_expression_statement] = STATE(904), - [sym_if_statement] = STATE(904), - [sym_switch_statement] = STATE(904), - [sym_case_statement] = STATE(904), - [sym_while_statement] = STATE(904), - [sym_do_statement] = STATE(904), - [sym_for_statement] = STATE(904), - [sym_return_statement] = STATE(904), - [sym_break_statement] = STATE(904), - [sym_continue_statement] = STATE(904), - [sym_goto_statement] = STATE(904), - [sym_seh_try_statement] = STATE(904), - [sym_seh_leave_statement] = STATE(904), - [sym_expression] = STATE(4571), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8696), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_dependent_type] = STATE(2523), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(3889), - [sym_for_range_loop] = STATE(904), - [sym_co_return_statement] = STATE(904), - [sym_co_yield_statement] = STATE(904), - [sym_throw_statement] = STATE(904), - [sym_try_statement] = STATE(904), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5725), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(3109), - [sym_user_defined_literal] = STATE(3242), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(179), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), + [108] = { + [sym_declaration] = STATE(111), + [sym_type_definition] = STATE(111), + [sym__declaration_modifiers] = STATE(2095), + [sym__declaration_specifiers] = STATE(4705), + [sym_attribute_specifier] = STATE(2095), + [sym_attribute_declaration] = STATE(950), + [sym_ms_declspec_modifier] = STATE(2095), + [sym_compound_statement] = STATE(111), + [sym_storage_class_specifier] = STATE(2095), + [sym_type_qualifier] = STATE(2095), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(111), + [sym_labeled_statement] = STATE(111), + [sym_expression_statement] = STATE(111), + [sym_if_statement] = STATE(111), + [sym_switch_statement] = STATE(111), + [sym_while_statement] = STATE(111), + [sym_do_statement] = STATE(111), + [sym_for_statement] = STATE(111), + [sym_return_statement] = STATE(111), + [sym_break_statement] = STATE(111), + [sym_continue_statement] = STATE(111), + [sym_goto_statement] = STATE(111), + [sym_seh_try_statement] = STATE(111), + [sym_seh_leave_statement] = STATE(111), + [sym_expression] = STATE(4602), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8311), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_dependent_type] = STATE(2558), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(3898), + [sym_for_range_loop] = STATE(111), + [sym_co_return_statement] = STATE(111), + [sym_co_yield_statement] = STATE(111), + [sym_throw_statement] = STATE(111), + [sym_try_statement] = STATE(111), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5721), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(3059), + [sym_user_defined_literal] = STATE(3323), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(176), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_case_statement_repeat1] = STATE(111), [sym_identifier] = ACTIONS(1660), - [anon_sym_LPAREN2] = ACTIONS(1436), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), [anon_sym_SEMI] = ACTIONS(1662), - [anon_sym___extension__] = ACTIONS(1658), - [anon_sym_virtual] = ACTIONS(1446), + [anon_sym___extension__] = ACTIONS(1664), + [anon_sym_typedef] = ACTIONS(1666), + [anon_sym_virtual] = ACTIONS(1262), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), [anon_sym___declspec] = ACTIONS(51), [anon_sym_LBRACE] = ACTIONS(1668), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1450), + [anon_sym_LBRACK] = ACTIONS(1266), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -58915,9 +58998,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(77), [anon_sym_union] = ACTIONS(79), [anon_sym_if] = ACTIONS(1670), + [anon_sym_else] = ACTIONS(1250), [anon_sym_switch] = ACTIONS(1672), - [anon_sym_case] = ACTIONS(1760), - [anon_sym_default] = ACTIONS(1762), [anon_sym_while] = ACTIONS(1674), [anon_sym_do] = ACTIONS(1676), [anon_sym_for] = ACTIONS(1678), @@ -58961,7 +59043,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_try] = ACTIONS(1692), [anon_sym_delete] = ACTIONS(145), [anon_sym_throw] = ACTIONS(1694), @@ -58977,117 +59059,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [110] = { - [sym_declaration] = STATE(423), - [sym__declaration_modifiers] = STATE(2136), - [sym__declaration_specifiers] = STATE(5215), - [sym_attribute_specifier] = STATE(2136), - [sym_attribute_declaration] = STATE(900), - [sym_ms_declspec_modifier] = STATE(2136), - [sym_compound_statement] = STATE(545), - [sym_storage_class_specifier] = STATE(2136), - [sym_type_qualifier] = STATE(2136), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(545), - [sym_statement] = STATE(423), - [sym_labeled_statement] = STATE(545), - [sym_expression_statement] = STATE(545), - [sym_if_statement] = STATE(545), - [sym_switch_statement] = STATE(545), - [sym_case_statement] = STATE(545), - [sym_while_statement] = STATE(545), - [sym_do_statement] = STATE(545), - [sym_for_statement] = STATE(545), - [sym_return_statement] = STATE(545), - [sym_break_statement] = STATE(545), - [sym_continue_statement] = STATE(545), - [sym_goto_statement] = STATE(545), - [sym_seh_try_statement] = STATE(545), - [sym_seh_leave_statement] = STATE(545), - [sym_expression] = STATE(4457), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8711), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_dependent_type] = STATE(2523), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(3889), - [sym_for_range_loop] = STATE(545), - [sym_co_return_statement] = STATE(545), - [sym_co_yield_statement] = STATE(545), - [sym_throw_statement] = STATE(545), - [sym_try_statement] = STATE(545), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5725), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(3109), - [sym_user_defined_literal] = STATE(3242), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(216), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [sym_identifier] = ACTIONS(1764), - [anon_sym_LPAREN2] = ACTIONS(1436), + [109] = { + [sym_declaration] = STATE(438), + [sym__declaration_modifiers] = STATE(2095), + [sym__declaration_specifiers] = STATE(4759), + [sym_attribute_specifier] = STATE(2095), + [sym_attribute_declaration] = STATE(950), + [sym_ms_declspec_modifier] = STATE(2095), + [sym_compound_statement] = STATE(560), + [sym_storage_class_specifier] = STATE(2095), + [sym_type_qualifier] = STATE(2095), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(560), + [sym_statement] = STATE(438), + [sym_labeled_statement] = STATE(560), + [sym_expression_statement] = STATE(560), + [sym_if_statement] = STATE(560), + [sym_switch_statement] = STATE(560), + [sym_case_statement] = STATE(560), + [sym_while_statement] = STATE(560), + [sym_do_statement] = STATE(560), + [sym_for_statement] = STATE(560), + [sym_return_statement] = STATE(560), + [sym_break_statement] = STATE(560), + [sym_continue_statement] = STATE(560), + [sym_goto_statement] = STATE(560), + [sym_seh_try_statement] = STATE(560), + [sym_seh_leave_statement] = STATE(560), + [sym_expression] = STATE(4554), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8083), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_dependent_type] = STATE(2558), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(3898), + [sym_for_range_loop] = STATE(560), + [sym_co_return_statement] = STATE(560), + [sym_co_yield_statement] = STATE(560), + [sym_throw_statement] = STATE(560), + [sym_try_statement] = STATE(560), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5721), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(3059), + [sym_user_defined_literal] = STATE(3323), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(189), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(1700), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), [anon_sym_SEMI] = ACTIONS(181), [anon_sym___extension__] = ACTIONS(1658), - [anon_sym_virtual] = ACTIONS(1446), + [anon_sym_virtual] = ACTIONS(1262), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), [anon_sym___declspec] = ACTIONS(51), [anon_sym_LBRACE] = ACTIONS(57), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1450), + [anon_sym_LBRACK] = ACTIONS(1266), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -59115,18 +59197,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(75), [anon_sym_struct] = ACTIONS(77), [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(1766), + [anon_sym_if] = ACTIONS(1702), [anon_sym_switch] = ACTIONS(83), - [anon_sym_case] = ACTIONS(1760), - [anon_sym_default] = ACTIONS(1762), - [anon_sym_while] = ACTIONS(1768), + [anon_sym_case] = ACTIONS(1704), + [anon_sym_default] = ACTIONS(1706), + [anon_sym_while] = ACTIONS(1708), [anon_sym_do] = ACTIONS(91), - [anon_sym_for] = ACTIONS(1770), + [anon_sym_for] = ACTIONS(1710), [anon_sym_return] = ACTIONS(95), [anon_sym_break] = ACTIONS(97), [anon_sym_continue] = ACTIONS(99), [anon_sym_goto] = ACTIONS(101), - [anon_sym___try] = ACTIONS(1772), + [anon_sym___try] = ACTIONS(1712), [anon_sym___leave] = ACTIONS(223), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), @@ -59162,7 +59244,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_try] = ACTIONS(143), [anon_sym_delete] = ACTIONS(145), [anon_sym_throw] = ACTIONS(147), @@ -59178,117 +59260,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [111] = { - [sym_declaration] = STATE(256), - [sym__declaration_modifiers] = STATE(2136), - [sym__declaration_specifiers] = STATE(5180), - [sym_attribute_specifier] = STATE(2136), - [sym_attribute_declaration] = STATE(900), - [sym_ms_declspec_modifier] = STATE(2136), - [sym_compound_statement] = STATE(279), - [sym_storage_class_specifier] = STATE(2136), - [sym_type_qualifier] = STATE(2136), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(279), - [sym_statement] = STATE(256), - [sym_labeled_statement] = STATE(279), - [sym_expression_statement] = STATE(279), - [sym_if_statement] = STATE(279), - [sym_switch_statement] = STATE(279), - [sym_case_statement] = STATE(279), - [sym_while_statement] = STATE(279), - [sym_do_statement] = STATE(279), - [sym_for_statement] = STATE(279), - [sym_return_statement] = STATE(279), - [sym_break_statement] = STATE(279), - [sym_continue_statement] = STATE(279), - [sym_goto_statement] = STATE(279), - [sym_seh_try_statement] = STATE(279), - [sym_seh_leave_statement] = STATE(279), - [sym_expression] = STATE(4493), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8429), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_dependent_type] = STATE(2523), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(3889), - [sym_for_range_loop] = STATE(279), - [sym_co_return_statement] = STATE(279), - [sym_co_yield_statement] = STATE(279), - [sym_throw_statement] = STATE(279), - [sym_try_statement] = STATE(279), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5725), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(3109), - [sym_user_defined_literal] = STATE(3242), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(203), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [sym_identifier] = ACTIONS(1432), - [anon_sym_LPAREN2] = ACTIONS(1436), + [110] = { + [sym_declaration] = STATE(920), + [sym__declaration_modifiers] = STATE(2095), + [sym__declaration_specifiers] = STATE(4705), + [sym_attribute_specifier] = STATE(2095), + [sym_attribute_declaration] = STATE(950), + [sym_ms_declspec_modifier] = STATE(2095), + [sym_compound_statement] = STATE(931), + [sym_storage_class_specifier] = STATE(2095), + [sym_type_qualifier] = STATE(2095), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(931), + [sym_statement] = STATE(920), + [sym_labeled_statement] = STATE(931), + [sym_expression_statement] = STATE(931), + [sym_if_statement] = STATE(931), + [sym_switch_statement] = STATE(931), + [sym_case_statement] = STATE(931), + [sym_while_statement] = STATE(931), + [sym_do_statement] = STATE(931), + [sym_for_statement] = STATE(931), + [sym_return_statement] = STATE(931), + [sym_break_statement] = STATE(931), + [sym_continue_statement] = STATE(931), + [sym_goto_statement] = STATE(931), + [sym_seh_try_statement] = STATE(931), + [sym_seh_leave_statement] = STATE(931), + [sym_expression] = STATE(4602), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8311), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_dependent_type] = STATE(2558), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(3898), + [sym_for_range_loop] = STATE(931), + [sym_co_return_statement] = STATE(931), + [sym_co_yield_statement] = STATE(931), + [sym_throw_statement] = STATE(931), + [sym_try_statement] = STATE(931), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5721), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(3059), + [sym_user_defined_literal] = STATE(3323), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(176), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(1660), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(1662), [anon_sym___extension__] = ACTIONS(1658), - [anon_sym_virtual] = ACTIONS(1446), + [anon_sym_virtual] = ACTIONS(1262), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), [anon_sym___declspec] = ACTIONS(51), - [anon_sym_LBRACE] = ACTIONS(297), + [anon_sym_LBRACE] = ACTIONS(1668), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1450), + [anon_sym_LBRACK] = ACTIONS(1266), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -59316,19 +59398,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(75), [anon_sym_struct] = ACTIONS(77), [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(301), - [anon_sym_switch] = ACTIONS(303), - [anon_sym_case] = ACTIONS(305), - [anon_sym_default] = ACTIONS(307), - [anon_sym_while] = ACTIONS(309), - [anon_sym_do] = ACTIONS(311), - [anon_sym_for] = ACTIONS(313), - [anon_sym_return] = ACTIONS(315), - [anon_sym_break] = ACTIONS(317), - [anon_sym_continue] = ACTIONS(319), - [anon_sym_goto] = ACTIONS(321), - [anon_sym___try] = ACTIONS(323), - [anon_sym___leave] = ACTIONS(325), + [anon_sym_if] = ACTIONS(1670), + [anon_sym_switch] = ACTIONS(1672), + [anon_sym_case] = ACTIONS(1704), + [anon_sym_default] = ACTIONS(1706), + [anon_sym_while] = ACTIONS(1674), + [anon_sym_do] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(1678), + [anon_sym_return] = ACTIONS(1680), + [anon_sym_break] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(1684), + [anon_sym_goto] = ACTIONS(1686), + [anon_sym___try] = ACTIONS(1688), + [anon_sym___leave] = ACTIONS(1690), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -59363,12 +59445,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_try] = ACTIONS(329), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_try] = ACTIONS(1692), [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(331), - [anon_sym_co_return] = ACTIONS(339), - [anon_sym_co_yield] = ACTIONS(341), + [anon_sym_throw] = ACTIONS(1694), + [anon_sym_co_return] = ACTIONS(1696), + [anon_sym_co_yield] = ACTIONS(1698), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), @@ -59379,117 +59461,318 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [112] = { - [sym_declaration] = STATE(578), - [sym__declaration_modifiers] = STATE(2136), - [sym__declaration_specifiers] = STATE(5196), - [sym_attribute_specifier] = STATE(2136), - [sym_attribute_declaration] = STATE(900), - [sym_ms_declspec_modifier] = STATE(2136), - [sym_compound_statement] = STATE(529), - [sym_storage_class_specifier] = STATE(2136), - [sym_type_qualifier] = STATE(2136), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(529), - [sym_statement] = STATE(578), - [sym_labeled_statement] = STATE(529), - [sym_expression_statement] = STATE(529), - [sym_if_statement] = STATE(529), - [sym_switch_statement] = STATE(529), - [sym_case_statement] = STATE(529), - [sym_while_statement] = STATE(529), - [sym_do_statement] = STATE(529), - [sym_for_statement] = STATE(529), - [sym_return_statement] = STATE(529), - [sym_break_statement] = STATE(529), - [sym_continue_statement] = STATE(529), - [sym_goto_statement] = STATE(529), - [sym_seh_try_statement] = STATE(529), - [sym_seh_leave_statement] = STATE(529), - [sym_expression] = STATE(4500), - [sym__string] = STATE(4250), + [111] = { + [sym_declaration] = STATE(111), + [sym_type_definition] = STATE(111), + [sym__declaration_modifiers] = STATE(2095), + [sym__declaration_specifiers] = STATE(4705), + [sym_attribute_specifier] = STATE(2095), + [sym_attribute_declaration] = STATE(950), + [sym_ms_declspec_modifier] = STATE(2095), + [sym_compound_statement] = STATE(111), + [sym_storage_class_specifier] = STATE(2095), + [sym_type_qualifier] = STATE(2095), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(111), + [sym_labeled_statement] = STATE(111), + [sym_expression_statement] = STATE(111), + [sym_if_statement] = STATE(111), + [sym_switch_statement] = STATE(111), + [sym_while_statement] = STATE(111), + [sym_do_statement] = STATE(111), + [sym_for_statement] = STATE(111), + [sym_return_statement] = STATE(111), + [sym_break_statement] = STATE(111), + [sym_continue_statement] = STATE(111), + [sym_goto_statement] = STATE(111), + [sym_seh_try_statement] = STATE(111), + [sym_seh_leave_statement] = STATE(111), + [sym_expression] = STATE(4602), + [sym__string] = STATE(4294), [sym_comma_expression] = STATE(8311), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_dependent_type] = STATE(2523), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(3889), - [sym_for_range_loop] = STATE(529), - [sym_co_return_statement] = STATE(529), - [sym_co_yield_statement] = STATE(529), - [sym_throw_statement] = STATE(529), - [sym_try_statement] = STATE(529), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5725), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(3109), - [sym_user_defined_literal] = STATE(3242), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(218), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_dependent_type] = STATE(2558), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(3898), + [sym_for_range_loop] = STATE(111), + [sym_co_return_statement] = STATE(111), + [sym_co_yield_statement] = STATE(111), + [sym_throw_statement] = STATE(111), + [sym_try_statement] = STATE(111), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5721), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(3059), + [sym_user_defined_literal] = STATE(3323), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(176), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_case_statement_repeat1] = STATE(111), + [sym_identifier] = ACTIONS(1714), + [anon_sym_LPAREN2] = ACTIONS(1275), + [anon_sym_BANG] = ACTIONS(1278), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_DASH] = ACTIONS(1281), + [anon_sym_PLUS] = ACTIONS(1281), + [anon_sym_STAR] = ACTIONS(1284), + [anon_sym_AMP] = ACTIONS(1284), + [anon_sym_SEMI] = ACTIONS(1717), + [anon_sym___extension__] = ACTIONS(1720), + [anon_sym_typedef] = ACTIONS(1723), + [anon_sym_virtual] = ACTIONS(1301), + [anon_sym_extern] = ACTIONS(1304), + [anon_sym___attribute__] = ACTIONS(1307), + [anon_sym___attribute] = ACTIONS(1307), + [anon_sym_COLON_COLON] = ACTIONS(1310), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1313), + [anon_sym___declspec] = ACTIONS(1316), + [anon_sym_LBRACE] = ACTIONS(1726), + [anon_sym_signed] = ACTIONS(1322), + [anon_sym_unsigned] = ACTIONS(1322), + [anon_sym_long] = ACTIONS(1322), + [anon_sym_short] = ACTIONS(1322), + [anon_sym_LBRACK] = ACTIONS(1325), + [anon_sym_static] = ACTIONS(1304), + [anon_sym_register] = ACTIONS(1304), + [anon_sym_inline] = ACTIONS(1304), + [anon_sym___inline] = ACTIONS(1304), + [anon_sym___inline__] = ACTIONS(1304), + [anon_sym___forceinline] = ACTIONS(1304), + [anon_sym_thread_local] = ACTIONS(1304), + [anon_sym___thread] = ACTIONS(1304), + [anon_sym_const] = ACTIONS(1328), + [anon_sym_constexpr] = ACTIONS(1328), + [anon_sym_volatile] = ACTIONS(1328), + [anon_sym_restrict] = ACTIONS(1328), + [anon_sym___restrict__] = ACTIONS(1328), + [anon_sym__Atomic] = ACTIONS(1328), + [anon_sym__Noreturn] = ACTIONS(1328), + [anon_sym_noreturn] = ACTIONS(1328), + [anon_sym__Nonnull] = ACTIONS(1328), + [anon_sym_mutable] = ACTIONS(1328), + [anon_sym_constinit] = ACTIONS(1328), + [anon_sym_consteval] = ACTIONS(1328), + [anon_sym_alignas] = ACTIONS(1331), + [anon_sym__Alignas] = ACTIONS(1331), + [sym_primitive_type] = ACTIONS(1334), + [anon_sym_enum] = ACTIONS(1337), + [anon_sym_class] = ACTIONS(1340), + [anon_sym_struct] = ACTIONS(1343), + [anon_sym_union] = ACTIONS(1346), + [anon_sym_if] = ACTIONS(1729), + [anon_sym_else] = ACTIONS(1273), + [anon_sym_switch] = ACTIONS(1732), + [anon_sym_while] = ACTIONS(1735), + [anon_sym_do] = ACTIONS(1738), + [anon_sym_for] = ACTIONS(1741), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1747), + [anon_sym_continue] = ACTIONS(1750), + [anon_sym_goto] = ACTIONS(1753), + [anon_sym___try] = ACTIONS(1756), + [anon_sym___leave] = ACTIONS(1759), + [anon_sym_not] = ACTIONS(1281), + [anon_sym_compl] = ACTIONS(1281), + [anon_sym_DASH_DASH] = ACTIONS(1382), + [anon_sym_PLUS_PLUS] = ACTIONS(1382), + [anon_sym_sizeof] = ACTIONS(1385), + [anon_sym___alignof__] = ACTIONS(1388), + [anon_sym___alignof] = ACTIONS(1388), + [anon_sym__alignof] = ACTIONS(1388), + [anon_sym_alignof] = ACTIONS(1388), + [anon_sym__Alignof] = ACTIONS(1388), + [anon_sym_offsetof] = ACTIONS(1391), + [anon_sym__Generic] = ACTIONS(1394), + [anon_sym_asm] = ACTIONS(1397), + [anon_sym___asm__] = ACTIONS(1397), + [anon_sym___asm] = ACTIONS(1397), + [sym_number_literal] = ACTIONS(1400), + [anon_sym_L_SQUOTE] = ACTIONS(1403), + [anon_sym_u_SQUOTE] = ACTIONS(1403), + [anon_sym_U_SQUOTE] = ACTIONS(1403), + [anon_sym_u8_SQUOTE] = ACTIONS(1403), + [anon_sym_SQUOTE] = ACTIONS(1403), + [anon_sym_L_DQUOTE] = ACTIONS(1406), + [anon_sym_u_DQUOTE] = ACTIONS(1406), + [anon_sym_U_DQUOTE] = ACTIONS(1406), + [anon_sym_u8_DQUOTE] = ACTIONS(1406), + [anon_sym_DQUOTE] = ACTIONS(1406), + [sym_true] = ACTIONS(1409), + [sym_false] = ACTIONS(1409), + [anon_sym_NULL] = ACTIONS(1412), + [anon_sym_nullptr] = ACTIONS(1412), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1415), + [anon_sym_decltype] = ACTIONS(1418), + [anon_sym_typename] = ACTIONS(1421), + [anon_sym_template] = ACTIONS(1424), + [anon_sym_try] = ACTIONS(1762), + [anon_sym_delete] = ACTIONS(1430), + [anon_sym_throw] = ACTIONS(1765), + [anon_sym_co_return] = ACTIONS(1768), + [anon_sym_co_yield] = ACTIONS(1771), + [anon_sym_R_DQUOTE] = ACTIONS(1442), + [anon_sym_LR_DQUOTE] = ACTIONS(1442), + [anon_sym_uR_DQUOTE] = ACTIONS(1442), + [anon_sym_UR_DQUOTE] = ACTIONS(1442), + [anon_sym_u8R_DQUOTE] = ACTIONS(1442), + [anon_sym_co_await] = ACTIONS(1445), + [anon_sym_new] = ACTIONS(1448), + [anon_sym_requires] = ACTIONS(1451), + [sym_this] = ACTIONS(1409), + }, + [112] = { + [sym_declaration] = STATE(551), + [sym__declaration_modifiers] = STATE(2095), + [sym__declaration_specifiers] = STATE(4734), + [sym_attribute_specifier] = STATE(2095), + [sym_attribute_declaration] = STATE(950), + [sym_ms_declspec_modifier] = STATE(2095), + [sym_compound_statement] = STATE(513), + [sym_storage_class_specifier] = STATE(2095), + [sym_type_qualifier] = STATE(2095), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(513), + [sym_statement] = STATE(551), + [sym_labeled_statement] = STATE(513), + [sym_expression_statement] = STATE(513), + [sym_if_statement] = STATE(513), + [sym_switch_statement] = STATE(513), + [sym_case_statement] = STATE(513), + [sym_while_statement] = STATE(513), + [sym_do_statement] = STATE(513), + [sym_for_statement] = STATE(513), + [sym_return_statement] = STATE(513), + [sym_break_statement] = STATE(513), + [sym_continue_statement] = STATE(513), + [sym_goto_statement] = STATE(513), + [sym_seh_try_statement] = STATE(513), + [sym_seh_leave_statement] = STATE(513), + [sym_expression] = STATE(4531), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8444), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_dependent_type] = STATE(2558), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(3898), + [sym_for_range_loop] = STATE(513), + [sym_co_return_statement] = STATE(513), + [sym_co_yield_statement] = STATE(513), + [sym_throw_statement] = STATE(513), + [sym_try_statement] = STATE(513), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5721), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(3059), + [sym_user_defined_literal] = STATE(3323), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(175), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), [sym_identifier] = ACTIONS(1594), - [anon_sym_LPAREN2] = ACTIONS(1436), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), [anon_sym_SEMI] = ACTIONS(884), [anon_sym___extension__] = ACTIONS(1658), - [anon_sym_virtual] = ACTIONS(1446), + [anon_sym_virtual] = ACTIONS(1262), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), [anon_sym___declspec] = ACTIONS(51), [anon_sym_LBRACE] = ACTIONS(894), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1450), + [anon_sym_LBRACK] = ACTIONS(1266), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -59564,7 +59847,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_try] = ACTIONS(926), [anon_sym_delete] = ACTIONS(145), [anon_sym_throw] = ACTIONS(928), @@ -59581,116 +59864,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [113] = { - [sym_declaration] = STATE(571), - [sym__declaration_modifiers] = STATE(2136), - [sym__declaration_specifiers] = STATE(5184), - [sym_attribute_specifier] = STATE(2136), - [sym_attribute_declaration] = STATE(900), - [sym_ms_declspec_modifier] = STATE(2136), - [sym_compound_statement] = STATE(545), - [sym_storage_class_specifier] = STATE(2136), - [sym_type_qualifier] = STATE(2136), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(545), - [sym_statement] = STATE(571), - [sym_labeled_statement] = STATE(545), - [sym_expression_statement] = STATE(545), - [sym_if_statement] = STATE(545), - [sym_switch_statement] = STATE(545), - [sym_case_statement] = STATE(545), - [sym_while_statement] = STATE(545), - [sym_do_statement] = STATE(545), - [sym_for_statement] = STATE(545), - [sym_return_statement] = STATE(545), - [sym_break_statement] = STATE(545), - [sym_continue_statement] = STATE(545), - [sym_goto_statement] = STATE(545), - [sym_seh_try_statement] = STATE(545), - [sym_seh_leave_statement] = STATE(545), - [sym_expression] = STATE(4457), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8711), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_dependent_type] = STATE(2523), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(3889), - [sym_for_range_loop] = STATE(545), - [sym_co_return_statement] = STATE(545), - [sym_co_yield_statement] = STATE(545), - [sym_throw_statement] = STATE(545), - [sym_try_statement] = STATE(545), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5725), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(3109), - [sym_user_defined_literal] = STATE(3242), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(219), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [sym_identifier] = ACTIONS(1530), - [anon_sym_LPAREN2] = ACTIONS(1436), + [sym_declaration] = STATE(106), + [sym_type_definition] = STATE(106), + [sym__declaration_modifiers] = STATE(2095), + [sym__declaration_specifiers] = STATE(4705), + [sym_attribute_specifier] = STATE(2095), + [sym_attribute_declaration] = STATE(950), + [sym_ms_declspec_modifier] = STATE(2095), + [sym_compound_statement] = STATE(106), + [sym_storage_class_specifier] = STATE(2095), + [sym_type_qualifier] = STATE(2095), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(106), + [sym_labeled_statement] = STATE(106), + [sym_expression_statement] = STATE(106), + [sym_if_statement] = STATE(106), + [sym_switch_statement] = STATE(106), + [sym_while_statement] = STATE(106), + [sym_do_statement] = STATE(106), + [sym_for_statement] = STATE(106), + [sym_return_statement] = STATE(106), + [sym_break_statement] = STATE(106), + [sym_continue_statement] = STATE(106), + [sym_goto_statement] = STATE(106), + [sym_seh_try_statement] = STATE(106), + [sym_seh_leave_statement] = STATE(106), + [sym_expression] = STATE(4602), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8311), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_dependent_type] = STATE(2558), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(3898), + [sym_for_range_loop] = STATE(106), + [sym_co_return_statement] = STATE(106), + [sym_co_yield_statement] = STATE(106), + [sym_throw_statement] = STATE(106), + [sym_try_statement] = STATE(106), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5721), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(3059), + [sym_user_defined_literal] = STATE(3323), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(176), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_case_statement_repeat1] = STATE(106), + [sym_identifier] = ACTIONS(1660), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(1658), - [anon_sym_virtual] = ACTIONS(1446), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(1662), + [anon_sym___extension__] = ACTIONS(1664), + [anon_sym_typedef] = ACTIONS(1666), + [anon_sym_virtual] = ACTIONS(1262), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), [anon_sym___declspec] = ACTIONS(51), - [anon_sym_LBRACE] = ACTIONS(866), + [anon_sym_LBRACE] = ACTIONS(1668), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1450), + [anon_sym_LBRACK] = ACTIONS(1266), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -59718,19 +60002,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(75), [anon_sym_struct] = ACTIONS(77), [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), - [anon_sym_case] = ACTIONS(203), - [anon_sym_default] = ACTIONS(205), - [anon_sym_while] = ACTIONS(207), - [anon_sym_do] = ACTIONS(209), - [anon_sym_for] = ACTIONS(211), - [anon_sym_return] = ACTIONS(213), - [anon_sym_break] = ACTIONS(215), - [anon_sym_continue] = ACTIONS(217), - [anon_sym_goto] = ACTIONS(219), - [anon_sym___try] = ACTIONS(221), - [anon_sym___leave] = ACTIONS(223), + [anon_sym_if] = ACTIONS(1670), + [anon_sym_else] = ACTIONS(1454), + [anon_sym_switch] = ACTIONS(1672), + [anon_sym_while] = ACTIONS(1674), + [anon_sym_do] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(1678), + [anon_sym_return] = ACTIONS(1680), + [anon_sym_break] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(1684), + [anon_sym_goto] = ACTIONS(1686), + [anon_sym___try] = ACTIONS(1688), + [anon_sym___leave] = ACTIONS(1690), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -59765,12 +60048,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_try] = ACTIONS(233), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_try] = ACTIONS(1692), [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(235), - [anon_sym_co_return] = ACTIONS(243), - [anon_sym_co_yield] = ACTIONS(245), + [anon_sym_throw] = ACTIONS(1694), + [anon_sym_co_return] = ACTIONS(1696), + [anon_sym_co_yield] = ACTIONS(1698), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), @@ -59782,117 +60065,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [114] = { - [sym_declaration] = STATE(107), - [sym_type_definition] = STATE(107), - [sym__declaration_modifiers] = STATE(2136), - [sym__declaration_specifiers] = STATE(5209), - [sym_attribute_specifier] = STATE(2136), - [sym_attribute_declaration] = STATE(900), - [sym_ms_declspec_modifier] = STATE(2136), - [sym_compound_statement] = STATE(107), - [sym_storage_class_specifier] = STATE(2136), - [sym_type_qualifier] = STATE(2136), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [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_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(4571), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8696), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_dependent_type] = STATE(2523), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(3889), - [sym_for_range_loop] = STATE(107), - [sym_co_return_statement] = STATE(107), - [sym_co_yield_statement] = STATE(107), - [sym_throw_statement] = STATE(107), - [sym_try_statement] = STATE(107), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5725), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(3109), - [sym_user_defined_literal] = STATE(3242), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(179), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_case_statement_repeat1] = STATE(107), + [sym_declaration] = STATE(108), + [sym_type_definition] = STATE(108), + [sym__declaration_modifiers] = STATE(2095), + [sym__declaration_specifiers] = STATE(4705), + [sym_attribute_specifier] = STATE(2095), + [sym_attribute_declaration] = STATE(950), + [sym_ms_declspec_modifier] = STATE(2095), + [sym_compound_statement] = STATE(108), + [sym_storage_class_specifier] = STATE(2095), + [sym_type_qualifier] = STATE(2095), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(108), + [sym_labeled_statement] = STATE(108), + [sym_expression_statement] = STATE(108), + [sym_if_statement] = STATE(108), + [sym_switch_statement] = STATE(108), + [sym_while_statement] = STATE(108), + [sym_do_statement] = STATE(108), + [sym_for_statement] = STATE(108), + [sym_return_statement] = STATE(108), + [sym_break_statement] = STATE(108), + [sym_continue_statement] = STATE(108), + [sym_goto_statement] = STATE(108), + [sym_seh_try_statement] = STATE(108), + [sym_seh_leave_statement] = STATE(108), + [sym_expression] = STATE(4602), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8311), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_dependent_type] = STATE(2558), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(3898), + [sym_for_range_loop] = STATE(108), + [sym_co_return_statement] = STATE(108), + [sym_co_yield_statement] = STATE(108), + [sym_throw_statement] = STATE(108), + [sym_try_statement] = STATE(108), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5721), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(3059), + [sym_user_defined_literal] = STATE(3323), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(176), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_case_statement_repeat1] = STATE(108), [sym_identifier] = ACTIONS(1660), - [anon_sym_LPAREN2] = ACTIONS(1436), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), [anon_sym_SEMI] = ACTIONS(1662), [anon_sym___extension__] = ACTIONS(1664), [anon_sym_typedef] = ACTIONS(1666), - [anon_sym_virtual] = ACTIONS(1446), + [anon_sym_virtual] = ACTIONS(1262), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), [anon_sym___declspec] = ACTIONS(51), [anon_sym_LBRACE] = ACTIONS(1668), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1450), + [anon_sym_LBRACK] = ACTIONS(1266), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -59921,7 +60204,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(77), [anon_sym_union] = ACTIONS(79), [anon_sym_if] = ACTIONS(1670), - [anon_sym_else] = ACTIONS(1458), + [anon_sym_else] = ACTIONS(1462), [anon_sym_switch] = ACTIONS(1672), [anon_sym_while] = ACTIONS(1674), [anon_sym_do] = ACTIONS(1676), @@ -59966,7 +60249,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_try] = ACTIONS(1692), [anon_sym_delete] = ACTIONS(145), [anon_sym_throw] = ACTIONS(1694), @@ -59983,117 +60266,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [115] = { - [sym_declaration] = STATE(114), - [sym_type_definition] = STATE(114), - [sym__declaration_modifiers] = STATE(2136), - [sym__declaration_specifiers] = STATE(5209), - [sym_attribute_specifier] = STATE(2136), - [sym_attribute_declaration] = STATE(900), - [sym_ms_declspec_modifier] = STATE(2136), - [sym_compound_statement] = STATE(114), - [sym_storage_class_specifier] = STATE(2136), - [sym_type_qualifier] = STATE(2136), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(114), - [sym_labeled_statement] = STATE(114), - [sym_expression_statement] = STATE(114), - [sym_if_statement] = STATE(114), - [sym_switch_statement] = STATE(114), - [sym_while_statement] = STATE(114), - [sym_do_statement] = STATE(114), - [sym_for_statement] = STATE(114), - [sym_return_statement] = STATE(114), - [sym_break_statement] = STATE(114), - [sym_continue_statement] = STATE(114), - [sym_goto_statement] = STATE(114), - [sym_seh_try_statement] = STATE(114), - [sym_seh_leave_statement] = STATE(114), - [sym_expression] = STATE(4571), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8696), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_dependent_type] = STATE(2523), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(3889), - [sym_for_range_loop] = STATE(114), - [sym_co_return_statement] = STATE(114), - [sym_co_yield_statement] = STATE(114), - [sym_throw_statement] = STATE(114), - [sym_try_statement] = STATE(114), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5725), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(3109), - [sym_user_defined_literal] = STATE(3242), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(179), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_case_statement_repeat1] = STATE(114), - [sym_identifier] = ACTIONS(1660), - [anon_sym_LPAREN2] = ACTIONS(1436), + [sym_declaration] = STATE(585), + [sym__declaration_modifiers] = STATE(2095), + [sym__declaration_specifiers] = STATE(4698), + [sym_attribute_specifier] = STATE(2095), + [sym_attribute_declaration] = STATE(950), + [sym_ms_declspec_modifier] = STATE(2095), + [sym_compound_statement] = STATE(560), + [sym_storage_class_specifier] = STATE(2095), + [sym_type_qualifier] = STATE(2095), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(560), + [sym_statement] = STATE(585), + [sym_labeled_statement] = STATE(560), + [sym_expression_statement] = STATE(560), + [sym_if_statement] = STATE(560), + [sym_switch_statement] = STATE(560), + [sym_case_statement] = STATE(560), + [sym_while_statement] = STATE(560), + [sym_do_statement] = STATE(560), + [sym_for_statement] = STATE(560), + [sym_return_statement] = STATE(560), + [sym_break_statement] = STATE(560), + [sym_continue_statement] = STATE(560), + [sym_goto_statement] = STATE(560), + [sym_seh_try_statement] = STATE(560), + [sym_seh_leave_statement] = STATE(560), + [sym_expression] = STATE(4554), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8083), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_dependent_type] = STATE(2558), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(3898), + [sym_for_range_loop] = STATE(560), + [sym_co_return_statement] = STATE(560), + [sym_co_yield_statement] = STATE(560), + [sym_throw_statement] = STATE(560), + [sym_try_statement] = STATE(560), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5721), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(3059), + [sym_user_defined_literal] = STATE(3323), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(186), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(1590), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(1662), - [anon_sym___extension__] = ACTIONS(1664), - [anon_sym_typedef] = ACTIONS(1666), - [anon_sym_virtual] = ACTIONS(1446), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(181), + [anon_sym___extension__] = ACTIONS(1658), + [anon_sym_virtual] = ACTIONS(1262), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), [anon_sym___declspec] = ACTIONS(51), - [anon_sym_LBRACE] = ACTIONS(1668), + [anon_sym_LBRACE] = ACTIONS(866), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1450), + [anon_sym_LBRACK] = ACTIONS(1266), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -60121,18 +60403,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(75), [anon_sym_struct] = ACTIONS(77), [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(1670), - [anon_sym_else] = ACTIONS(1434), - [anon_sym_switch] = ACTIONS(1672), - [anon_sym_while] = ACTIONS(1674), - [anon_sym_do] = ACTIONS(1676), - [anon_sym_for] = ACTIONS(1678), - [anon_sym_return] = ACTIONS(1680), - [anon_sym_break] = ACTIONS(1682), - [anon_sym_continue] = ACTIONS(1684), - [anon_sym_goto] = ACTIONS(1686), - [anon_sym___try] = ACTIONS(1688), - [anon_sym___leave] = ACTIONS(1690), + [anon_sym_if] = ACTIONS(199), + [anon_sym_switch] = ACTIONS(201), + [anon_sym_case] = ACTIONS(203), + [anon_sym_default] = ACTIONS(205), + [anon_sym_while] = ACTIONS(207), + [anon_sym_do] = ACTIONS(209), + [anon_sym_for] = ACTIONS(211), + [anon_sym_return] = ACTIONS(213), + [anon_sym_break] = ACTIONS(215), + [anon_sym_continue] = ACTIONS(217), + [anon_sym_goto] = ACTIONS(219), + [anon_sym___try] = ACTIONS(221), + [anon_sym___leave] = ACTIONS(223), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -60167,12 +60450,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_try] = ACTIONS(1692), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_try] = ACTIONS(233), [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(1694), - [anon_sym_co_return] = ACTIONS(1696), - [anon_sym_co_yield] = ACTIONS(1698), + [anon_sym_throw] = ACTIONS(235), + [anon_sym_co_return] = ACTIONS(243), + [anon_sym_co_yield] = ACTIONS(245), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), @@ -60184,116 +60467,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [116] = { - [sym_declaration] = STATE(423), - [sym__declaration_modifiers] = STATE(2136), - [sym__declaration_specifiers] = STATE(5215), - [sym_attribute_specifier] = STATE(2136), - [sym_attribute_declaration] = STATE(900), - [sym_ms_declspec_modifier] = STATE(2136), - [sym_compound_statement] = STATE(401), - [sym_storage_class_specifier] = STATE(2136), - [sym_type_qualifier] = STATE(2136), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_attributed_statement] = STATE(401), - [sym_statement] = STATE(423), - [sym_labeled_statement] = STATE(401), - [sym_expression_statement] = STATE(401), - [sym_if_statement] = STATE(401), - [sym_switch_statement] = STATE(401), - [sym_case_statement] = STATE(401), - [sym_while_statement] = STATE(401), - [sym_do_statement] = STATE(401), - [sym_for_statement] = STATE(401), - [sym_return_statement] = STATE(401), - [sym_break_statement] = STATE(401), - [sym_continue_statement] = STATE(401), - [sym_goto_statement] = STATE(401), - [sym_seh_try_statement] = STATE(401), - [sym_seh_leave_statement] = STATE(401), - [sym_expression] = STATE(4552), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8450), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_dependent_type] = STATE(2523), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(3889), - [sym_for_range_loop] = STATE(401), - [sym_co_return_statement] = STATE(401), - [sym_co_yield_statement] = STATE(401), - [sym_throw_statement] = STATE(401), - [sym_try_statement] = STATE(401), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5725), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(3109), - [sym_user_defined_literal] = STATE(3242), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_attributed_declarator_repeat1] = STATE(187), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [sym_identifier] = ACTIONS(1466), - [anon_sym_LPAREN2] = ACTIONS(1436), + [sym_declaration] = STATE(438), + [sym__declaration_modifiers] = STATE(2095), + [sym__declaration_specifiers] = STATE(4759), + [sym_attribute_specifier] = STATE(2095), + [sym_attribute_declaration] = STATE(950), + [sym_ms_declspec_modifier] = STATE(2095), + [sym_compound_statement] = STATE(409), + [sym_storage_class_specifier] = STATE(2095), + [sym_type_qualifier] = STATE(2095), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_attributed_statement] = STATE(409), + [sym_statement] = STATE(438), + [sym_labeled_statement] = STATE(409), + [sym_expression_statement] = STATE(409), + [sym_if_statement] = STATE(409), + [sym_switch_statement] = STATE(409), + [sym_case_statement] = STATE(409), + [sym_while_statement] = STATE(409), + [sym_do_statement] = STATE(409), + [sym_for_statement] = STATE(409), + [sym_return_statement] = STATE(409), + [sym_break_statement] = STATE(409), + [sym_continue_statement] = STATE(409), + [sym_goto_statement] = STATE(409), + [sym_seh_try_statement] = STATE(409), + [sym_seh_leave_statement] = STATE(409), + [sym_expression] = STATE(4499), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8264), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_dependent_type] = STATE(2558), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(3898), + [sym_for_range_loop] = STATE(409), + [sym_co_return_statement] = STATE(409), + [sym_co_yield_statement] = STATE(409), + [sym_throw_statement] = STATE(409), + [sym_try_statement] = STATE(409), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5721), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(3059), + [sym_user_defined_literal] = STATE(3323), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_attributed_declarator_repeat1] = STATE(198), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(1526), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(1194), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(1212), [anon_sym___extension__] = ACTIONS(1658), - [anon_sym_virtual] = ACTIONS(1446), + [anon_sym_virtual] = ACTIONS(1262), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), [anon_sym___declspec] = ACTIONS(51), [anon_sym_LBRACE] = ACTIONS(57), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1450), + [anon_sym_LBRACK] = ACTIONS(1266), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -60332,8 +60615,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(97), [anon_sym_continue] = ACTIONS(99), [anon_sym_goto] = ACTIONS(101), - [anon_sym___try] = ACTIONS(1198), - [anon_sym___leave] = ACTIONS(1200), + [anon_sym___try] = ACTIONS(1216), + [anon_sym___leave] = ACTIONS(1218), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -60368,7 +60651,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_try] = ACTIONS(143), [anon_sym_delete] = ACTIONS(145), [anon_sym_throw] = ACTIONS(147), @@ -60385,88 +60668,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [117] = { - [sym_declaration] = STATE(419), - [sym_type_definition] = STATE(4066), - [sym__declaration_modifiers] = STATE(2136), - [sym__declaration_specifiers] = STATE(5217), - [sym_attribute_specifier] = STATE(2136), - [sym_attribute_declaration] = STATE(2136), - [sym_ms_declspec_modifier] = STATE(2136), - [sym_storage_class_specifier] = STATE(2136), - [sym_type_qualifier] = STATE(2136), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_expression_statement] = STATE(4066), - [sym__for_statement_body] = STATE(8140), - [sym_expression] = STATE(4446), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8178), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_dependent_type] = STATE(2523), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(3889), - [sym_alias_declaration] = STATE(4066), - [sym__for_range_loop_body] = STATE(8242), - [sym_init_statement] = STATE(1915), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5725), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(3109), - [sym_user_defined_literal] = STATE(3242), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), + [sym_declaration] = STATE(427), + [sym_type_definition] = STATE(4133), + [sym__declaration_modifiers] = STATE(2095), + [sym__declaration_specifiers] = STATE(4804), + [sym_attribute_specifier] = STATE(2095), + [sym_attribute_declaration] = STATE(2095), + [sym_ms_declspec_modifier] = STATE(2095), + [sym_storage_class_specifier] = STATE(2095), + [sym_type_qualifier] = STATE(2095), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_expression_statement] = STATE(4133), + [sym__for_statement_body] = STATE(8727), + [sym_expression] = STATE(4500), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8144), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_dependent_type] = STATE(2558), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(3898), + [sym_alias_declaration] = STATE(4133), + [sym__for_range_loop_body] = STATE(8752), + [sym_init_statement] = STATE(1981), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5721), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(3059), + [sym_user_defined_literal] = STATE(3323), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), [sym_identifier] = ACTIONS(1774), - [anon_sym_LPAREN2] = ACTIONS(1436), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), [anon_sym_SEMI] = ACTIONS(1776), [anon_sym___extension__] = ACTIONS(1778), [anon_sym_typedef] = ACTIONS(1780), - [anon_sym_virtual] = ACTIONS(1446), + [anon_sym_virtual] = ACTIONS(1262), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), @@ -60478,7 +60761,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1450), + [anon_sym_LBRACK] = ACTIONS(1266), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -60540,7 +60823,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -60553,88 +60836,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [118] = { - [sym_declaration] = STATE(419), - [sym_type_definition] = STATE(4066), - [sym__declaration_modifiers] = STATE(2136), - [sym__declaration_specifiers] = STATE(5217), - [sym_attribute_specifier] = STATE(2136), - [sym_attribute_declaration] = STATE(2136), - [sym_ms_declspec_modifier] = STATE(2136), - [sym_storage_class_specifier] = STATE(2136), - [sym_type_qualifier] = STATE(2136), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_expression_statement] = STATE(4066), - [sym__for_statement_body] = STATE(8758), - [sym_expression] = STATE(4446), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8178), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_dependent_type] = STATE(2523), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(3889), - [sym_alias_declaration] = STATE(4066), - [sym__for_range_loop_body] = STATE(8759), - [sym_init_statement] = STATE(1915), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5725), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(3109), - [sym_user_defined_literal] = STATE(3242), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), + [sym_declaration] = STATE(427), + [sym_type_definition] = STATE(4133), + [sym__declaration_modifiers] = STATE(2095), + [sym__declaration_specifiers] = STATE(4804), + [sym_attribute_specifier] = STATE(2095), + [sym_attribute_declaration] = STATE(2095), + [sym_ms_declspec_modifier] = STATE(2095), + [sym_storage_class_specifier] = STATE(2095), + [sym_type_qualifier] = STATE(2095), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_expression_statement] = STATE(4133), + [sym__for_statement_body] = STATE(8301), + [sym_expression] = STATE(4500), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8144), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_dependent_type] = STATE(2558), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(3898), + [sym_alias_declaration] = STATE(4133), + [sym__for_range_loop_body] = STATE(8302), + [sym_init_statement] = STATE(1981), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5721), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(3059), + [sym_user_defined_literal] = STATE(3323), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), [sym_identifier] = ACTIONS(1774), - [anon_sym_LPAREN2] = ACTIONS(1436), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), [anon_sym_SEMI] = ACTIONS(1776), [anon_sym___extension__] = ACTIONS(1778), [anon_sym_typedef] = ACTIONS(1780), - [anon_sym_virtual] = ACTIONS(1446), + [anon_sym_virtual] = ACTIONS(1262), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), @@ -60646,7 +60929,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1450), + [anon_sym_LBRACK] = ACTIONS(1266), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -60708,7 +60991,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -60721,88 +61004,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [119] = { - [sym_declaration] = STATE(419), - [sym_type_definition] = STATE(4066), - [sym__declaration_modifiers] = STATE(2136), - [sym__declaration_specifiers] = STATE(5217), - [sym_attribute_specifier] = STATE(2136), - [sym_attribute_declaration] = STATE(2136), - [sym_ms_declspec_modifier] = STATE(2136), - [sym_storage_class_specifier] = STATE(2136), - [sym_type_qualifier] = STATE(2136), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_expression_statement] = STATE(4066), - [sym__for_statement_body] = STATE(8789), - [sym_expression] = STATE(4446), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8178), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_dependent_type] = STATE(2523), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(3889), - [sym_alias_declaration] = STATE(4066), - [sym__for_range_loop_body] = STATE(8791), - [sym_init_statement] = STATE(1915), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5725), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(3109), - [sym_user_defined_literal] = STATE(3242), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), + [sym_declaration] = STATE(427), + [sym_type_definition] = STATE(4133), + [sym__declaration_modifiers] = STATE(2095), + [sym__declaration_specifiers] = STATE(4804), + [sym_attribute_specifier] = STATE(2095), + [sym_attribute_declaration] = STATE(2095), + [sym_ms_declspec_modifier] = STATE(2095), + [sym_storage_class_specifier] = STATE(2095), + [sym_type_qualifier] = STATE(2095), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_expression_statement] = STATE(4133), + [sym__for_statement_body] = STATE(8263), + [sym_expression] = STATE(4500), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8144), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_dependent_type] = STATE(2558), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(3898), + [sym_alias_declaration] = STATE(4133), + [sym__for_range_loop_body] = STATE(8411), + [sym_init_statement] = STATE(1981), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5721), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(3059), + [sym_user_defined_literal] = STATE(3323), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), [sym_identifier] = ACTIONS(1774), - [anon_sym_LPAREN2] = ACTIONS(1436), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), [anon_sym_SEMI] = ACTIONS(1776), [anon_sym___extension__] = ACTIONS(1778), [anon_sym_typedef] = ACTIONS(1780), - [anon_sym_virtual] = ACTIONS(1446), + [anon_sym_virtual] = ACTIONS(1262), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), @@ -60814,7 +61097,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1450), + [anon_sym_LBRACK] = ACTIONS(1266), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -60876,7 +61159,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -60889,88 +61172,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [120] = { - [sym_declaration] = STATE(419), - [sym_type_definition] = STATE(4066), - [sym__declaration_modifiers] = STATE(2136), - [sym__declaration_specifiers] = STATE(5217), - [sym_attribute_specifier] = STATE(2136), - [sym_attribute_declaration] = STATE(2136), - [sym_ms_declspec_modifier] = STATE(2136), - [sym_storage_class_specifier] = STATE(2136), - [sym_type_qualifier] = STATE(2136), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_expression_statement] = STATE(4066), - [sym__for_statement_body] = STATE(8144), - [sym_expression] = STATE(4446), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8178), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_dependent_type] = STATE(2523), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(3889), - [sym_alias_declaration] = STATE(4066), - [sym__for_range_loop_body] = STATE(8191), - [sym_init_statement] = STATE(1915), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5725), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(3109), - [sym_user_defined_literal] = STATE(3242), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), + [sym_declaration] = STATE(427), + [sym_type_definition] = STATE(4133), + [sym__declaration_modifiers] = STATE(2095), + [sym__declaration_specifiers] = STATE(4804), + [sym_attribute_specifier] = STATE(2095), + [sym_attribute_declaration] = STATE(2095), + [sym_ms_declspec_modifier] = STATE(2095), + [sym_storage_class_specifier] = STATE(2095), + [sym_type_qualifier] = STATE(2095), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_expression_statement] = STATE(4133), + [sym__for_statement_body] = STATE(8809), + [sym_expression] = STATE(4500), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8144), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_dependent_type] = STATE(2558), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(3898), + [sym_alias_declaration] = STATE(4133), + [sym__for_range_loop_body] = STATE(8811), + [sym_init_statement] = STATE(1981), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5721), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(3059), + [sym_user_defined_literal] = STATE(3323), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), [sym_identifier] = ACTIONS(1774), - [anon_sym_LPAREN2] = ACTIONS(1436), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), [anon_sym_SEMI] = ACTIONS(1776), [anon_sym___extension__] = ACTIONS(1778), [anon_sym_typedef] = ACTIONS(1780), - [anon_sym_virtual] = ACTIONS(1446), + [anon_sym_virtual] = ACTIONS(1262), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), @@ -60982,7 +61265,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1450), + [anon_sym_LBRACK] = ACTIONS(1266), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -61044,7 +61327,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -61057,88 +61340,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [121] = { - [sym_declaration] = STATE(419), - [sym_type_definition] = STATE(4066), - [sym__declaration_modifiers] = STATE(2136), - [sym__declaration_specifiers] = STATE(5217), - [sym_attribute_specifier] = STATE(2136), - [sym_attribute_declaration] = STATE(2136), - [sym_ms_declspec_modifier] = STATE(2136), - [sym_storage_class_specifier] = STATE(2136), - [sym_type_qualifier] = STATE(2136), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_expression_statement] = STATE(4066), - [sym__for_statement_body] = STATE(8285), - [sym_expression] = STATE(4446), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8178), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_dependent_type] = STATE(2523), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(3889), - [sym_alias_declaration] = STATE(4066), - [sym__for_range_loop_body] = STATE(8304), - [sym_init_statement] = STATE(1915), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5725), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(3109), - [sym_user_defined_literal] = STATE(3242), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), + [sym_declaration] = STATE(427), + [sym_type_definition] = STATE(4133), + [sym__declaration_modifiers] = STATE(2095), + [sym__declaration_specifiers] = STATE(4804), + [sym_attribute_specifier] = STATE(2095), + [sym_attribute_declaration] = STATE(2095), + [sym_ms_declspec_modifier] = STATE(2095), + [sym_storage_class_specifier] = STATE(2095), + [sym_type_qualifier] = STATE(2095), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_expression_statement] = STATE(4133), + [sym__for_statement_body] = STATE(8862), + [sym_expression] = STATE(4500), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8144), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_dependent_type] = STATE(2558), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(3898), + [sym_alias_declaration] = STATE(4133), + [sym__for_range_loop_body] = STATE(8863), + [sym_init_statement] = STATE(1981), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5721), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(3059), + [sym_user_defined_literal] = STATE(3323), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), [sym_identifier] = ACTIONS(1774), - [anon_sym_LPAREN2] = ACTIONS(1436), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), [anon_sym_SEMI] = ACTIONS(1776), [anon_sym___extension__] = ACTIONS(1778), [anon_sym_typedef] = ACTIONS(1780), - [anon_sym_virtual] = ACTIONS(1446), + [anon_sym_virtual] = ACTIONS(1262), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), @@ -61150,7 +61433,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1450), + [anon_sym_LBRACK] = ACTIONS(1266), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -61212,7 +61495,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -61225,88 +61508,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [122] = { - [sym_declaration] = STATE(419), - [sym_type_definition] = STATE(4066), - [sym__declaration_modifiers] = STATE(2136), - [sym__declaration_specifiers] = STATE(5217), - [sym_attribute_specifier] = STATE(2136), - [sym_attribute_declaration] = STATE(2136), - [sym_ms_declspec_modifier] = STATE(2136), - [sym_storage_class_specifier] = STATE(2136), - [sym_type_qualifier] = STATE(2136), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_expression_statement] = STATE(4066), - [sym__for_statement_body] = STATE(8053), - [sym_expression] = STATE(4446), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8178), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_dependent_type] = STATE(2523), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(3889), - [sym_alias_declaration] = STATE(4066), - [sym__for_range_loop_body] = STATE(8054), - [sym_init_statement] = STATE(1915), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5725), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(3109), - [sym_user_defined_literal] = STATE(3242), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), + [sym_declaration] = STATE(427), + [sym_type_definition] = STATE(4133), + [sym__declaration_modifiers] = STATE(2095), + [sym__declaration_specifiers] = STATE(4804), + [sym_attribute_specifier] = STATE(2095), + [sym_attribute_declaration] = STATE(2095), + [sym_ms_declspec_modifier] = STATE(2095), + [sym_storage_class_specifier] = STATE(2095), + [sym_type_qualifier] = STATE(2095), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_expression_statement] = STATE(4133), + [sym__for_statement_body] = STATE(8167), + [sym_expression] = STATE(4500), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8144), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_dependent_type] = STATE(2558), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(3898), + [sym_alias_declaration] = STATE(4133), + [sym__for_range_loop_body] = STATE(8168), + [sym_init_statement] = STATE(1981), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5721), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(3059), + [sym_user_defined_literal] = STATE(3323), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), [sym_identifier] = ACTIONS(1774), - [anon_sym_LPAREN2] = ACTIONS(1436), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), [anon_sym_SEMI] = ACTIONS(1776), [anon_sym___extension__] = ACTIONS(1778), [anon_sym_typedef] = ACTIONS(1780), - [anon_sym_virtual] = ACTIONS(1446), + [anon_sym_virtual] = ACTIONS(1262), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), @@ -61318,7 +61601,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1450), + [anon_sym_LBRACK] = ACTIONS(1266), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -61380,7 +61663,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -61393,91 +61676,258 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [123] = { - [sym_declaration] = STATE(1549), - [sym_type_definition] = STATE(1549), - [sym__declaration_modifiers] = STATE(2136), - [sym__declaration_specifiers] = STATE(5168), - [sym_attribute_specifier] = STATE(2136), - [sym_attribute_declaration] = STATE(2136), - [sym_ms_declspec_modifier] = STATE(2136), - [sym_storage_class_specifier] = STATE(2136), - [sym_type_qualifier] = STATE(2136), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_expression_statement] = STATE(1549), - [sym_expression] = STATE(4400), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(7863), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_dependent_type] = STATE(2523), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(3889), - [sym_alias_declaration] = STATE(1549), + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_call_modifier] = STATE(5314), + [sym__declarator] = STATE(6806), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6145), + [sym_array_declarator] = STATE(6145), + [sym_compound_statement] = STATE(8629), + [sym_type_qualifier] = STATE(3891), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(4528), + [sym_sized_type_specifier] = STATE(1890), + [sym_enum_specifier] = STATE(1890), + [sym_struct_specifier] = STATE(1890), + [sym_union_specifier] = STATE(1890), + [sym_expression] = STATE(2991), + [sym__string] = STATE(3393), + [sym_comma_expression] = STATE(8629), + [sym_conditional_expression] = STATE(3401), + [sym_assignment_expression] = STATE(3401), + [sym_pointer_expression] = STATE(3405), + [sym_unary_expression] = STATE(3401), + [sym_binary_expression] = STATE(3401), + [sym_update_expression] = STATE(3401), + [sym_cast_expression] = STATE(3401), + [sym_type_descriptor] = STATE(8698), + [sym_sizeof_expression] = STATE(3401), + [sym_alignof_expression] = STATE(3401), + [sym_offsetof_expression] = STATE(3401), + [sym_generic_expression] = STATE(3401), + [sym_subscript_expression] = STATE(3405), + [sym_call_expression] = STATE(3405), + [sym_gnu_asm_expression] = STATE(3401), + [sym_extension_expression] = STATE(3401), + [sym_field_expression] = STATE(3405), + [sym_compound_literal_expression] = STATE(3401), + [sym_parenthesized_expression] = STATE(3405), + [sym_char_literal] = STATE(3393), + [sym_concatenated_string] = STATE(3393), + [sym_string_literal] = STATE(2380), + [sym_null] = STATE(3401), + [sym_placeholder_type_specifier] = STATE(1890), + [sym_decltype_auto] = STATE(1888), + [sym_decltype] = STATE(1782), + [sym_class_specifier] = STATE(1890), + [sym__class_name] = STATE(7745), + [sym_dependent_type] = STATE(1890), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(5365), + [sym_template_function] = STATE(3319), + [sym_raw_string_literal] = STATE(2380), + [sym_co_await_expression] = STATE(3401), + [sym_new_expression] = STATE(3401), + [sym_delete_expression] = STATE(3401), + [sym_requires_clause] = STATE(3401), + [sym_requires_expression] = STATE(3401), + [sym_lambda_expression] = STATE(3401), + [sym_lambda_capture_specifier] = STATE(5494), + [sym__unary_left_fold] = STATE(8716), + [sym__unary_right_fold] = STATE(8742), + [sym__binary_fold] = STATE(8824), + [sym_fold_expression] = STATE(3401), + [sym_parameter_pack_expansion] = STATE(3401), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5844), + [sym_qualified_identifier] = STATE(3389), + [sym_qualified_type_identifier] = STATE(5382), + [sym__assignment_expression_lhs] = STATE(8390), + [sym_operator_name] = STATE(6145), + [sym_user_defined_literal] = STATE(3405), + [aux_sym__type_definition_type_repeat1] = STATE(3891), + [aux_sym_sized_type_specifier_repeat1] = STATE(4234), + [sym_identifier] = ACTIONS(1786), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1788), + [anon_sym_LPAREN2] = ACTIONS(1790), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1794), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1800), + [anon_sym___extension__] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym___based] = ACTIONS(53), + [anon_sym___cdecl] = ACTIONS(1806), + [anon_sym___clrcall] = ACTIONS(1806), + [anon_sym___stdcall] = ACTIONS(1806), + [anon_sym___fastcall] = ACTIONS(1806), + [anon_sym___thiscall] = ACTIONS(1806), + [anon_sym___vectorcall] = ACTIONS(1806), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1808), + [anon_sym_unsigned] = ACTIONS(1808), + [anon_sym_long] = ACTIONS(1808), + [anon_sym_short] = ACTIONS(1808), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(69), + [anon_sym__Alignas] = ACTIONS(69), + [sym_primitive_type] = ACTIONS(1812), + [anon_sym_enum] = ACTIONS(1814), + [anon_sym_class] = ACTIONS(1816), + [anon_sym_struct] = ACTIONS(1818), + [anon_sym_union] = ACTIONS(1820), + [anon_sym_not] = ACTIONS(1796), + [anon_sym_compl] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_sizeof] = ACTIONS(1824), + [anon_sym___alignof__] = ACTIONS(1826), + [anon_sym___alignof] = ACTIONS(1826), + [anon_sym__alignof] = ACTIONS(1826), + [anon_sym_alignof] = ACTIONS(1826), + [anon_sym__Alignof] = ACTIONS(1826), + [anon_sym_offsetof] = ACTIONS(1828), + [anon_sym__Generic] = ACTIONS(1830), + [anon_sym_asm] = ACTIONS(1832), + [anon_sym___asm__] = ACTIONS(1832), + [anon_sym___asm] = ACTIONS(1832), + [sym_number_literal] = ACTIONS(1834), + [anon_sym_L_SQUOTE] = ACTIONS(1836), + [anon_sym_u_SQUOTE] = ACTIONS(1836), + [anon_sym_U_SQUOTE] = ACTIONS(1836), + [anon_sym_u8_SQUOTE] = ACTIONS(1836), + [anon_sym_SQUOTE] = ACTIONS(1836), + [anon_sym_L_DQUOTE] = ACTIONS(1838), + [anon_sym_u_DQUOTE] = ACTIONS(1838), + [anon_sym_U_DQUOTE] = ACTIONS(1838), + [anon_sym_u8_DQUOTE] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym_true] = ACTIONS(1840), + [sym_false] = ACTIONS(1840), + [anon_sym_NULL] = ACTIONS(1842), + [anon_sym_nullptr] = ACTIONS(1842), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1844), + [anon_sym_decltype] = ACTIONS(1846), + [anon_sym_typename] = ACTIONS(1848), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_operator] = ACTIONS(1850), + [anon_sym_delete] = ACTIONS(1852), + [anon_sym_R_DQUOTE] = ACTIONS(1854), + [anon_sym_LR_DQUOTE] = ACTIONS(1854), + [anon_sym_uR_DQUOTE] = ACTIONS(1854), + [anon_sym_UR_DQUOTE] = ACTIONS(1854), + [anon_sym_u8R_DQUOTE] = ACTIONS(1854), + [anon_sym_co_await] = ACTIONS(1856), + [anon_sym_new] = ACTIONS(1858), + [anon_sym_requires] = ACTIONS(1860), + [sym_this] = ACTIONS(1840), + }, + [124] = { + [sym_declaration] = STATE(1578), + [sym_type_definition] = STATE(1578), + [sym__declaration_modifiers] = STATE(2095), + [sym__declaration_specifiers] = STATE(4776), + [sym_attribute_specifier] = STATE(2095), + [sym_attribute_declaration] = STATE(2095), + [sym_ms_declspec_modifier] = STATE(2095), + [sym_storage_class_specifier] = STATE(2095), + [sym_type_qualifier] = STATE(2095), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_expression_statement] = STATE(1578), + [sym_expression] = STATE(4398), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(7700), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_dependent_type] = STATE(2558), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(3898), + [sym_alias_declaration] = STATE(1578), [sym_init_statement] = STATE(134), - [sym_condition_declaration] = STATE(8609), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5725), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(3109), - [sym_user_defined_literal] = STATE(3242), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), + [sym_condition_declaration] = STATE(8338), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5721), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(3059), + [sym_user_defined_literal] = STATE(3323), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), [sym_identifier] = ACTIONS(1774), - [anon_sym_LPAREN2] = ACTIONS(1436), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), [anon_sym_SEMI] = ACTIONS(1662), [anon_sym___extension__] = ACTIONS(1664), [anon_sym_typedef] = ACTIONS(1666), - [anon_sym_virtual] = ACTIONS(1446), + [anon_sym_virtual] = ACTIONS(1262), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1786), + [anon_sym_using] = ACTIONS(1862), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), @@ -61485,7 +61935,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1450), + [anon_sym_LBRACK] = ACTIONS(1266), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -61547,7 +61997,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -61559,107 +62009,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [124] = { - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_call_modifier] = STATE(5281), - [sym__declarator] = STATE(6672), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(5998), - [sym_array_declarator] = STATE(5998), - [sym_compound_statement] = STATE(8409), - [sym_type_qualifier] = STATE(3904), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(4455), - [sym_sized_type_specifier] = STATE(1879), - [sym_enum_specifier] = STATE(1879), - [sym_struct_specifier] = STATE(1879), - [sym_union_specifier] = STATE(1879), - [sym_expression] = STATE(2919), - [sym__string] = STATE(3235), - [sym_comma_expression] = STATE(8409), - [sym_conditional_expression] = STATE(3373), - [sym_assignment_expression] = STATE(3373), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3373), - [sym_binary_expression] = STATE(3373), - [sym_update_expression] = STATE(3373), - [sym_cast_expression] = STATE(3373), - [sym_type_descriptor] = STATE(8413), - [sym_sizeof_expression] = STATE(3373), - [sym_alignof_expression] = STATE(3373), - [sym_offsetof_expression] = STATE(3373), - [sym_generic_expression] = STATE(3373), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3373), - [sym_extension_expression] = STATE(3373), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3373), - [sym_parenthesized_expression] = STATE(3365), - [sym_char_literal] = STATE(3235), - [sym_concatenated_string] = STATE(3235), - [sym_string_literal] = STATE(2358), - [sym_null] = STATE(3373), - [sym_placeholder_type_specifier] = STATE(1879), - [sym_decltype_auto] = STATE(1859), - [sym_decltype] = STATE(1713), - [sym_class_specifier] = STATE(1879), - [sym__class_name] = STATE(7814), - [sym_dependent_type] = STATE(1879), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(5285), - [sym_template_function] = STATE(3233), - [sym_raw_string_literal] = STATE(2358), - [sym_co_await_expression] = STATE(3373), - [sym_new_expression] = STATE(3373), - [sym_delete_expression] = STATE(3373), - [sym_requires_clause] = STATE(3373), - [sym_requires_expression] = STATE(3373), - [sym_lambda_expression] = STATE(3373), - [sym_lambda_capture_specifier] = STATE(5414), - [sym__unary_left_fold] = STATE(8414), - [sym__unary_right_fold] = STATE(8418), - [sym__binary_fold] = STATE(8419), - [sym_fold_expression] = STATE(3373), - [sym_parameter_pack_expansion] = STATE(3373), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5788), - [sym_qualified_identifier] = STATE(3292), - [sym_qualified_type_identifier] = STATE(5327), - [sym__assignment_expression_lhs] = STATE(8421), - [sym_operator_name] = STATE(5998), - [sym_user_defined_literal] = STATE(3365), - [aux_sym__type_definition_type_repeat1] = STATE(3904), - [aux_sym_sized_type_specifier_repeat1] = STATE(4209), - [sym_identifier] = ACTIONS(1788), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1800), + [125] = { + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_call_modifier] = STATE(5314), + [sym__declarator] = STATE(6806), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6145), + [sym_array_declarator] = STATE(6145), + [sym_compound_statement] = STATE(8629), + [sym_type_qualifier] = STATE(3891), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(4528), + [sym_sized_type_specifier] = STATE(1890), + [sym_enum_specifier] = STATE(1890), + [sym_struct_specifier] = STATE(1890), + [sym_union_specifier] = STATE(1890), + [sym_expression] = STATE(2991), + [sym__string] = STATE(3393), + [sym_comma_expression] = STATE(8629), + [sym_conditional_expression] = STATE(3401), + [sym_assignment_expression] = STATE(3401), + [sym_pointer_expression] = STATE(3405), + [sym_unary_expression] = STATE(3401), + [sym_binary_expression] = STATE(3401), + [sym_update_expression] = STATE(3401), + [sym_cast_expression] = STATE(3401), + [sym_type_descriptor] = STATE(8148), + [sym_sizeof_expression] = STATE(3401), + [sym_alignof_expression] = STATE(3401), + [sym_offsetof_expression] = STATE(3401), + [sym_generic_expression] = STATE(3401), + [sym_subscript_expression] = STATE(3405), + [sym_call_expression] = STATE(3405), + [sym_gnu_asm_expression] = STATE(3401), + [sym_extension_expression] = STATE(3401), + [sym_field_expression] = STATE(3405), + [sym_compound_literal_expression] = STATE(3401), + [sym_parenthesized_expression] = STATE(3405), + [sym_char_literal] = STATE(3393), + [sym_concatenated_string] = STATE(3393), + [sym_string_literal] = STATE(2380), + [sym_null] = STATE(3401), + [sym_placeholder_type_specifier] = STATE(1890), + [sym_decltype_auto] = STATE(1888), + [sym_decltype] = STATE(1782), + [sym_class_specifier] = STATE(1890), + [sym__class_name] = STATE(7745), + [sym_dependent_type] = STATE(1890), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(5365), + [sym_template_function] = STATE(3319), + [sym_raw_string_literal] = STATE(2380), + [sym_co_await_expression] = STATE(3401), + [sym_new_expression] = STATE(3401), + [sym_delete_expression] = STATE(3401), + [sym_requires_clause] = STATE(3401), + [sym_requires_expression] = STATE(3401), + [sym_lambda_expression] = STATE(3401), + [sym_lambda_capture_specifier] = STATE(5494), + [sym__unary_left_fold] = STATE(8151), + [sym__unary_right_fold] = STATE(8158), + [sym__binary_fold] = STATE(8170), + [sym_fold_expression] = STATE(3401), + [sym_parameter_pack_expansion] = STATE(3401), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5844), + [sym_qualified_identifier] = STATE(3389), + [sym_qualified_type_identifier] = STATE(5382), + [sym__assignment_expression_lhs] = STATE(8390), + [sym_operator_name] = STATE(6145), + [sym_user_defined_literal] = STATE(3405), + [aux_sym__type_definition_type_repeat1] = STATE(3891), + [aux_sym_sized_type_specifier_repeat1] = STATE(4234), + [sym_identifier] = ACTIONS(1786), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1788), + [anon_sym_LPAREN2] = ACTIONS(1790), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1794), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1798), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1802), - [anon_sym___extension__] = ACTIONS(1804), - [anon_sym_COLON_COLON] = ACTIONS(1806), + [anon_sym_AMP] = ACTIONS(1800), + [anon_sym___extension__] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), [anon_sym___based] = ACTIONS(53), - [anon_sym___cdecl] = ACTIONS(1808), - [anon_sym___clrcall] = ACTIONS(1808), - [anon_sym___stdcall] = ACTIONS(1808), - [anon_sym___fastcall] = ACTIONS(1808), - [anon_sym___thiscall] = ACTIONS(1808), - [anon_sym___vectorcall] = ACTIONS(1808), + [anon_sym___cdecl] = ACTIONS(1806), + [anon_sym___clrcall] = ACTIONS(1806), + [anon_sym___stdcall] = ACTIONS(1806), + [anon_sym___fastcall] = ACTIONS(1806), + [anon_sym___thiscall] = ACTIONS(1806), + [anon_sym___vectorcall] = ACTIONS(1806), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1810), - [anon_sym_unsigned] = ACTIONS(1810), - [anon_sym_long] = ACTIONS(1810), - [anon_sym_short] = ACTIONS(1810), - [anon_sym_LBRACK] = ACTIONS(1812), + [anon_sym_signed] = ACTIONS(1808), + [anon_sym_unsigned] = ACTIONS(1808), + [anon_sym_long] = ACTIONS(1808), + [anon_sym_short] = ACTIONS(1808), + [anon_sym_LBRACK] = ACTIONS(1810), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -61674,159 +62124,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(1814), - [anon_sym_enum] = ACTIONS(1816), - [anon_sym_class] = ACTIONS(1818), - [anon_sym_struct] = ACTIONS(1820), - [anon_sym_union] = ACTIONS(1822), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1846), - [anon_sym_decltype] = ACTIONS(1848), - [anon_sym_typename] = ACTIONS(1850), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_operator] = ACTIONS(1852), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), + [sym_primitive_type] = ACTIONS(1812), + [anon_sym_enum] = ACTIONS(1814), + [anon_sym_class] = ACTIONS(1816), + [anon_sym_struct] = ACTIONS(1818), + [anon_sym_union] = ACTIONS(1820), + [anon_sym_not] = ACTIONS(1796), + [anon_sym_compl] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_sizeof] = ACTIONS(1824), + [anon_sym___alignof__] = ACTIONS(1826), + [anon_sym___alignof] = ACTIONS(1826), + [anon_sym__alignof] = ACTIONS(1826), + [anon_sym_alignof] = ACTIONS(1826), + [anon_sym__Alignof] = ACTIONS(1826), + [anon_sym_offsetof] = ACTIONS(1828), + [anon_sym__Generic] = ACTIONS(1830), + [anon_sym_asm] = ACTIONS(1832), + [anon_sym___asm__] = ACTIONS(1832), + [anon_sym___asm] = ACTIONS(1832), + [sym_number_literal] = ACTIONS(1834), + [anon_sym_L_SQUOTE] = ACTIONS(1836), + [anon_sym_u_SQUOTE] = ACTIONS(1836), + [anon_sym_U_SQUOTE] = ACTIONS(1836), + [anon_sym_u8_SQUOTE] = ACTIONS(1836), + [anon_sym_SQUOTE] = ACTIONS(1836), + [anon_sym_L_DQUOTE] = ACTIONS(1838), + [anon_sym_u_DQUOTE] = ACTIONS(1838), + [anon_sym_U_DQUOTE] = ACTIONS(1838), + [anon_sym_u8_DQUOTE] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym_true] = ACTIONS(1840), + [sym_false] = ACTIONS(1840), + [anon_sym_NULL] = ACTIONS(1842), + [anon_sym_nullptr] = ACTIONS(1842), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1844), + [anon_sym_decltype] = ACTIONS(1846), + [anon_sym_typename] = ACTIONS(1848), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_operator] = ACTIONS(1850), + [anon_sym_delete] = ACTIONS(1852), + [anon_sym_R_DQUOTE] = ACTIONS(1854), + [anon_sym_LR_DQUOTE] = ACTIONS(1854), + [anon_sym_uR_DQUOTE] = ACTIONS(1854), + [anon_sym_UR_DQUOTE] = ACTIONS(1854), + [anon_sym_u8R_DQUOTE] = ACTIONS(1854), + [anon_sym_co_await] = ACTIONS(1856), + [anon_sym_new] = ACTIONS(1858), + [anon_sym_requires] = ACTIONS(1860), + [sym_this] = ACTIONS(1840), }, - [125] = { - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_call_modifier] = STATE(5281), - [sym__declarator] = STATE(6672), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(5998), - [sym_array_declarator] = STATE(5998), - [sym_compound_statement] = STATE(8449), - [sym_type_qualifier] = STATE(3904), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(4455), - [sym_sized_type_specifier] = STATE(1879), - [sym_enum_specifier] = STATE(1879), - [sym_struct_specifier] = STATE(1879), - [sym_union_specifier] = STATE(1879), - [sym_expression] = STATE(2912), - [sym__string] = STATE(3235), - [sym_comma_expression] = STATE(8449), - [sym_conditional_expression] = STATE(3373), - [sym_assignment_expression] = STATE(3373), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3373), - [sym_binary_expression] = STATE(3373), - [sym_update_expression] = STATE(3373), - [sym_cast_expression] = STATE(3373), - [sym_type_descriptor] = STATE(8230), - [sym_sizeof_expression] = STATE(3373), - [sym_alignof_expression] = STATE(3373), - [sym_offsetof_expression] = STATE(3373), - [sym_generic_expression] = STATE(3373), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3373), - [sym_extension_expression] = STATE(3373), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3373), - [sym_parenthesized_expression] = STATE(3365), - [sym_char_literal] = STATE(3235), - [sym_concatenated_string] = STATE(3235), - [sym_string_literal] = STATE(2358), - [sym_null] = STATE(3373), - [sym_placeholder_type_specifier] = STATE(1879), - [sym_decltype_auto] = STATE(1859), - [sym_decltype] = STATE(1713), - [sym_class_specifier] = STATE(1879), - [sym__class_name] = STATE(7814), - [sym_dependent_type] = STATE(1879), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(5285), - [sym_template_function] = STATE(3233), - [sym_raw_string_literal] = STATE(2358), - [sym_co_await_expression] = STATE(3373), - [sym_new_expression] = STATE(3373), - [sym_delete_expression] = STATE(3373), - [sym_requires_clause] = STATE(3373), - [sym_requires_expression] = STATE(3373), - [sym_lambda_expression] = STATE(3373), - [sym_lambda_capture_specifier] = STATE(5414), - [sym__unary_left_fold] = STATE(8232), - [sym__unary_right_fold] = STATE(8236), - [sym__binary_fold] = STATE(8240), - [sym_fold_expression] = STATE(3373), - [sym_parameter_pack_expansion] = STATE(3373), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5788), - [sym_qualified_identifier] = STATE(3292), - [sym_qualified_type_identifier] = STATE(5327), - [sym__assignment_expression_lhs] = STATE(8569), - [sym_operator_name] = STATE(5998), - [sym_user_defined_literal] = STATE(3365), - [aux_sym__type_definition_type_repeat1] = STATE(3904), - [aux_sym_sized_type_specifier_repeat1] = STATE(4209), - [sym_identifier] = ACTIONS(1788), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1800), + [126] = { + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_call_modifier] = STATE(5314), + [sym__declarator] = STATE(6806), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6145), + [sym_array_declarator] = STATE(6145), + [sym_compound_statement] = STATE(8208), + [sym_type_qualifier] = STATE(3891), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(4528), + [sym_sized_type_specifier] = STATE(1890), + [sym_enum_specifier] = STATE(1890), + [sym_struct_specifier] = STATE(1890), + [sym_union_specifier] = STATE(1890), + [sym_expression] = STATE(2950), + [sym__string] = STATE(3393), + [sym_comma_expression] = STATE(8208), + [sym_conditional_expression] = STATE(3401), + [sym_assignment_expression] = STATE(3401), + [sym_pointer_expression] = STATE(3405), + [sym_unary_expression] = STATE(3401), + [sym_binary_expression] = STATE(3401), + [sym_update_expression] = STATE(3401), + [sym_cast_expression] = STATE(3401), + [sym_type_descriptor] = STATE(8347), + [sym_sizeof_expression] = STATE(3401), + [sym_alignof_expression] = STATE(3401), + [sym_offsetof_expression] = STATE(3401), + [sym_generic_expression] = STATE(3401), + [sym_subscript_expression] = STATE(3405), + [sym_call_expression] = STATE(3405), + [sym_gnu_asm_expression] = STATE(3401), + [sym_extension_expression] = STATE(3401), + [sym_field_expression] = STATE(3405), + [sym_compound_literal_expression] = STATE(3401), + [sym_parenthesized_expression] = STATE(3405), + [sym_char_literal] = STATE(3393), + [sym_concatenated_string] = STATE(3393), + [sym_string_literal] = STATE(2380), + [sym_null] = STATE(3401), + [sym_placeholder_type_specifier] = STATE(1890), + [sym_decltype_auto] = STATE(1888), + [sym_decltype] = STATE(1782), + [sym_class_specifier] = STATE(1890), + [sym__class_name] = STATE(7745), + [sym_dependent_type] = STATE(1890), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(5365), + [sym_template_function] = STATE(3319), + [sym_raw_string_literal] = STATE(2380), + [sym_co_await_expression] = STATE(3401), + [sym_new_expression] = STATE(3401), + [sym_delete_expression] = STATE(3401), + [sym_requires_clause] = STATE(3401), + [sym_requires_expression] = STATE(3401), + [sym_lambda_expression] = STATE(3401), + [sym_lambda_capture_specifier] = STATE(5494), + [sym__unary_left_fold] = STATE(8363), + [sym__unary_right_fold] = STATE(8370), + [sym__binary_fold] = STATE(8382), + [sym_fold_expression] = STATE(3401), + [sym_parameter_pack_expansion] = STATE(3401), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5844), + [sym_qualified_identifier] = STATE(3389), + [sym_qualified_type_identifier] = STATE(5382), + [sym__assignment_expression_lhs] = STATE(8529), + [sym_operator_name] = STATE(6145), + [sym_user_defined_literal] = STATE(3405), + [aux_sym__type_definition_type_repeat1] = STATE(3891), + [aux_sym_sized_type_specifier_repeat1] = STATE(4234), + [sym_identifier] = ACTIONS(1786), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1788), + [anon_sym_LPAREN2] = ACTIONS(1790), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1794), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1798), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1802), - [anon_sym___extension__] = ACTIONS(1804), - [anon_sym_COLON_COLON] = ACTIONS(1806), + [anon_sym_AMP] = ACTIONS(1800), + [anon_sym___extension__] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), [anon_sym___based] = ACTIONS(53), - [anon_sym___cdecl] = ACTIONS(1808), - [anon_sym___clrcall] = ACTIONS(1808), - [anon_sym___stdcall] = ACTIONS(1808), - [anon_sym___fastcall] = ACTIONS(1808), - [anon_sym___thiscall] = ACTIONS(1808), - [anon_sym___vectorcall] = ACTIONS(1808), + [anon_sym___cdecl] = ACTIONS(1806), + [anon_sym___clrcall] = ACTIONS(1806), + [anon_sym___stdcall] = ACTIONS(1806), + [anon_sym___fastcall] = ACTIONS(1806), + [anon_sym___thiscall] = ACTIONS(1806), + [anon_sym___vectorcall] = ACTIONS(1806), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1810), - [anon_sym_unsigned] = ACTIONS(1810), - [anon_sym_long] = ACTIONS(1810), - [anon_sym_short] = ACTIONS(1810), - [anon_sym_LBRACK] = ACTIONS(1812), + [anon_sym_signed] = ACTIONS(1808), + [anon_sym_unsigned] = ACTIONS(1808), + [anon_sym_long] = ACTIONS(1808), + [anon_sym_short] = ACTIONS(1808), + [anon_sym_LBRACK] = ACTIONS(1810), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -61841,159 +62291,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(1814), - [anon_sym_enum] = ACTIONS(1816), - [anon_sym_class] = ACTIONS(1818), - [anon_sym_struct] = ACTIONS(1820), - [anon_sym_union] = ACTIONS(1822), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1846), - [anon_sym_decltype] = ACTIONS(1848), - [anon_sym_typename] = ACTIONS(1850), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_operator] = ACTIONS(1852), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), + [sym_primitive_type] = ACTIONS(1812), + [anon_sym_enum] = ACTIONS(1814), + [anon_sym_class] = ACTIONS(1816), + [anon_sym_struct] = ACTIONS(1818), + [anon_sym_union] = ACTIONS(1820), + [anon_sym_not] = ACTIONS(1796), + [anon_sym_compl] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_sizeof] = ACTIONS(1824), + [anon_sym___alignof__] = ACTIONS(1826), + [anon_sym___alignof] = ACTIONS(1826), + [anon_sym__alignof] = ACTIONS(1826), + [anon_sym_alignof] = ACTIONS(1826), + [anon_sym__Alignof] = ACTIONS(1826), + [anon_sym_offsetof] = ACTIONS(1828), + [anon_sym__Generic] = ACTIONS(1830), + [anon_sym_asm] = ACTIONS(1832), + [anon_sym___asm__] = ACTIONS(1832), + [anon_sym___asm] = ACTIONS(1832), + [sym_number_literal] = ACTIONS(1834), + [anon_sym_L_SQUOTE] = ACTIONS(1836), + [anon_sym_u_SQUOTE] = ACTIONS(1836), + [anon_sym_U_SQUOTE] = ACTIONS(1836), + [anon_sym_u8_SQUOTE] = ACTIONS(1836), + [anon_sym_SQUOTE] = ACTIONS(1836), + [anon_sym_L_DQUOTE] = ACTIONS(1838), + [anon_sym_u_DQUOTE] = ACTIONS(1838), + [anon_sym_U_DQUOTE] = ACTIONS(1838), + [anon_sym_u8_DQUOTE] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym_true] = ACTIONS(1840), + [sym_false] = ACTIONS(1840), + [anon_sym_NULL] = ACTIONS(1842), + [anon_sym_nullptr] = ACTIONS(1842), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1844), + [anon_sym_decltype] = ACTIONS(1846), + [anon_sym_typename] = ACTIONS(1848), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_operator] = ACTIONS(1850), + [anon_sym_delete] = ACTIONS(1852), + [anon_sym_R_DQUOTE] = ACTIONS(1854), + [anon_sym_LR_DQUOTE] = ACTIONS(1854), + [anon_sym_uR_DQUOTE] = ACTIONS(1854), + [anon_sym_UR_DQUOTE] = ACTIONS(1854), + [anon_sym_u8R_DQUOTE] = ACTIONS(1854), + [anon_sym_co_await] = ACTIONS(1856), + [anon_sym_new] = ACTIONS(1858), + [anon_sym_requires] = ACTIONS(1860), + [sym_this] = ACTIONS(1840), }, - [126] = { - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_call_modifier] = STATE(5281), - [sym__declarator] = STATE(6672), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(5998), - [sym_array_declarator] = STATE(5998), - [sym_compound_statement] = STATE(8449), - [sym_type_qualifier] = STATE(3904), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(4455), - [sym_sized_type_specifier] = STATE(1879), - [sym_enum_specifier] = STATE(1879), - [sym_struct_specifier] = STATE(1879), - [sym_union_specifier] = STATE(1879), - [sym_expression] = STATE(2912), - [sym__string] = STATE(3235), - [sym_comma_expression] = STATE(8449), - [sym_conditional_expression] = STATE(3373), - [sym_assignment_expression] = STATE(3373), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3373), - [sym_binary_expression] = STATE(3373), - [sym_update_expression] = STATE(3373), - [sym_cast_expression] = STATE(3373), - [sym_type_descriptor] = STATE(8727), - [sym_sizeof_expression] = STATE(3373), - [sym_alignof_expression] = STATE(3373), - [sym_offsetof_expression] = STATE(3373), - [sym_generic_expression] = STATE(3373), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3373), - [sym_extension_expression] = STATE(3373), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3373), - [sym_parenthesized_expression] = STATE(3365), - [sym_char_literal] = STATE(3235), - [sym_concatenated_string] = STATE(3235), - [sym_string_literal] = STATE(2358), - [sym_null] = STATE(3373), - [sym_placeholder_type_specifier] = STATE(1879), - [sym_decltype_auto] = STATE(1859), - [sym_decltype] = STATE(1713), - [sym_class_specifier] = STATE(1879), - [sym__class_name] = STATE(7814), - [sym_dependent_type] = STATE(1879), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(5285), - [sym_template_function] = STATE(3233), - [sym_raw_string_literal] = STATE(2358), - [sym_co_await_expression] = STATE(3373), - [sym_new_expression] = STATE(3373), - [sym_delete_expression] = STATE(3373), - [sym_requires_clause] = STATE(3373), - [sym_requires_expression] = STATE(3373), - [sym_lambda_expression] = STATE(3373), - [sym_lambda_capture_specifier] = STATE(5414), - [sym__unary_left_fold] = STATE(8119), - [sym__unary_right_fold] = STATE(8280), - [sym__binary_fold] = STATE(7936), - [sym_fold_expression] = STATE(3373), - [sym_parameter_pack_expansion] = STATE(3373), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5788), - [sym_qualified_identifier] = STATE(3292), - [sym_qualified_type_identifier] = STATE(5327), - [sym__assignment_expression_lhs] = STATE(8569), - [sym_operator_name] = STATE(5998), - [sym_user_defined_literal] = STATE(3365), - [aux_sym__type_definition_type_repeat1] = STATE(3904), - [aux_sym_sized_type_specifier_repeat1] = STATE(4209), - [sym_identifier] = ACTIONS(1788), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1800), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1802), - [anon_sym___extension__] = ACTIONS(1804), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym___based] = ACTIONS(53), - [anon_sym___cdecl] = ACTIONS(1808), - [anon_sym___clrcall] = ACTIONS(1808), - [anon_sym___stdcall] = ACTIONS(1808), - [anon_sym___fastcall] = ACTIONS(1808), - [anon_sym___thiscall] = ACTIONS(1808), - [anon_sym___vectorcall] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1810), - [anon_sym_unsigned] = ACTIONS(1810), - [anon_sym_long] = ACTIONS(1810), - [anon_sym_short] = ACTIONS(1810), - [anon_sym_LBRACK] = ACTIONS(1812), + [127] = { + [sym__declaration_modifiers] = STATE(2121), + [sym__declaration_specifiers] = STATE(3995), + [sym_attribute_specifier] = STATE(2121), + [sym_attribute_declaration] = STATE(2121), + [sym_ms_declspec_modifier] = STATE(2121), + [sym_compound_statement] = STATE(7482), + [sym_storage_class_specifier] = STATE(2121), + [sym_type_qualifier] = STATE(2121), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_parameter_declaration] = STATE(7297), + [sym_expression] = STATE(4390), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_initializer_list] = STATE(7482), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_dependent_type] = STATE(2558), + [sym_optional_parameter_declaration] = STATE(7297), + [sym_variadic_parameter_declaration] = STATE(7297), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5774), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(3059), + [sym_user_defined_literal] = STATE(3323), + [aux_sym__declaration_specifiers_repeat1] = STATE(2121), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(1864), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1866), + [anon_sym_RPAREN] = ACTIONS(1868), + [anon_sym_LPAREN2] = ACTIONS(1252), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(1658), + [anon_sym_virtual] = ACTIONS(1870), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(1872), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -62008,150 +62457,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(1814), - [anon_sym_enum] = ACTIONS(1816), - [anon_sym_class] = ACTIONS(1818), - [anon_sym_struct] = ACTIONS(1820), - [anon_sym_union] = ACTIONS(1822), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1846), - [anon_sym_decltype] = ACTIONS(1848), - [anon_sym_typename] = ACTIONS(1850), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_operator] = ACTIONS(1852), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), + [sym_primitive_type] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(1874), + [anon_sym_class] = ACTIONS(1876), + [anon_sym_struct] = ACTIONS(1878), + [anon_sym_union] = ACTIONS(1880), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [anon_sym___alignof__] = ACTIONS(107), + [anon_sym___alignof] = ACTIONS(107), + [anon_sym__alignof] = ACTIONS(107), + [anon_sym_alignof] = ACTIONS(107), + [anon_sym__Alignof] = ACTIONS(107), + [anon_sym_offsetof] = ACTIONS(109), + [anon_sym__Generic] = ACTIONS(111), + [anon_sym_asm] = ACTIONS(113), + [anon_sym___asm__] = ACTIONS(113), + [anon_sym___asm] = ACTIONS(113), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(117), + [anon_sym_u_SQUOTE] = ACTIONS(117), + [anon_sym_U_SQUOTE] = ACTIONS(117), + [anon_sym_u8_SQUOTE] = ACTIONS(117), + [anon_sym_SQUOTE] = ACTIONS(117), + [anon_sym_L_DQUOTE] = ACTIONS(119), + [anon_sym_u_DQUOTE] = ACTIONS(119), + [anon_sym_U_DQUOTE] = ACTIONS(119), + [anon_sym_u8_DQUOTE] = ACTIONS(119), + [anon_sym_DQUOTE] = ACTIONS(119), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(123), + [anon_sym_nullptr] = ACTIONS(123), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(125), + [anon_sym_decltype] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(1882), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(145), + [anon_sym_R_DQUOTE] = ACTIONS(159), + [anon_sym_LR_DQUOTE] = ACTIONS(159), + [anon_sym_uR_DQUOTE] = ACTIONS(159), + [anon_sym_UR_DQUOTE] = ACTIONS(159), + [anon_sym_u8R_DQUOTE] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), }, - [127] = { - [sym__declaration_modifiers] = STATE(2061), - [sym__declaration_specifiers] = STATE(3966), - [sym_attribute_specifier] = STATE(2061), - [sym_attribute_declaration] = STATE(2061), - [sym_ms_declspec_modifier] = STATE(2061), - [sym_storage_class_specifier] = STATE(2061), - [sym_type_qualifier] = STATE(2061), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_parameter_declaration] = STATE(7359), - [sym_expression] = STATE(3345), - [sym__string] = STATE(3714), - [sym_conditional_expression] = STATE(3908), - [sym_assignment_expression] = STATE(3908), - [sym_pointer_expression] = STATE(3506), - [sym_unary_expression] = STATE(3908), - [sym_binary_expression] = STATE(3908), - [sym_update_expression] = STATE(3908), - [sym_cast_expression] = STATE(3908), - [sym_sizeof_expression] = STATE(3908), - [sym_alignof_expression] = STATE(3908), - [sym_offsetof_expression] = STATE(3908), - [sym_generic_expression] = STATE(3908), - [sym_subscript_expression] = STATE(3506), - [sym_call_expression] = STATE(3506), - [sym_gnu_asm_expression] = STATE(3908), - [sym_extension_expression] = STATE(3908), - [sym_field_expression] = STATE(3506), - [sym_compound_literal_expression] = STATE(3908), - [sym_parenthesized_expression] = STATE(3506), - [sym_char_literal] = STATE(3714), - [sym_concatenated_string] = STATE(3714), - [sym_string_literal] = STATE(2566), - [sym_null] = STATE(3908), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7868), - [sym_dependent_type] = STATE(2523), - [sym_optional_parameter_declaration] = STATE(7359), - [sym_variadic_parameter_declaration] = STATE(7359), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(3908), - [sym_raw_string_literal] = STATE(2566), - [sym_co_await_expression] = STATE(3908), - [sym_new_expression] = STATE(3908), - [sym_delete_expression] = STATE(3908), - [sym_requires_clause] = STATE(3908), - [sym_requires_expression] = STATE(3908), - [sym_lambda_expression] = STATE(3908), - [sym_lambda_capture_specifier] = STATE(5415), - [sym__unary_left_fold] = STATE(8414), - [sym__unary_right_fold] = STATE(8418), - [sym__binary_fold] = STATE(8419), - [sym_fold_expression] = STATE(3908), - [sym_parameter_pack_expansion] = STATE(3908), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5763), - [sym_qualified_identifier] = STATE(3506), - [sym_qualified_type_identifier] = STATE(3109), - [sym_user_defined_literal] = STATE(3506), - [aux_sym__declaration_specifiers_repeat1] = STATE(2061), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [sym_identifier] = ACTIONS(1864), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(1866), - [anon_sym_LPAREN2] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1870), - [anon_sym_TILDE] = ACTIONS(1870), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_PLUS] = ACTIONS(1872), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(1876), - [anon_sym_virtual] = ACTIONS(1878), + [128] = { + [sym__declaration_modifiers] = STATE(2121), + [sym__declaration_specifiers] = STATE(3995), + [sym_attribute_specifier] = STATE(2121), + [sym_attribute_declaration] = STATE(2121), + [sym_ms_declspec_modifier] = STATE(2121), + [sym_storage_class_specifier] = STATE(2121), + [sym_type_qualifier] = STATE(2121), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_parameter_declaration] = STATE(7389), + [sym_expression] = STATE(3352), + [sym__string] = STATE(3775), + [sym_conditional_expression] = STATE(3886), + [sym_assignment_expression] = STATE(3886), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(3886), + [sym_binary_expression] = STATE(3886), + [sym_update_expression] = STATE(3886), + [sym_cast_expression] = STATE(3886), + [sym_sizeof_expression] = STATE(3886), + [sym_alignof_expression] = STATE(3886), + [sym_offsetof_expression] = STATE(3886), + [sym_generic_expression] = STATE(3886), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(3886), + [sym_extension_expression] = STATE(3886), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(3886), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(3775), + [sym_concatenated_string] = STATE(3775), + [sym_string_literal] = STATE(2596), + [sym_null] = STATE(3886), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7756), + [sym_dependent_type] = STATE(2558), + [sym_optional_parameter_declaration] = STATE(7389), + [sym_variadic_parameter_declaration] = STATE(7389), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(3886), + [sym_raw_string_literal] = STATE(2596), + [sym_co_await_expression] = STATE(3886), + [sym_new_expression] = STATE(3886), + [sym_delete_expression] = STATE(3886), + [sym_requires_clause] = STATE(3886), + [sym_requires_expression] = STATE(3886), + [sym_lambda_expression] = STATE(3886), + [sym_lambda_capture_specifier] = STATE(5492), + [sym__unary_left_fold] = STATE(8151), + [sym__unary_right_fold] = STATE(8158), + [sym__binary_fold] = STATE(8170), + [sym_fold_expression] = STATE(3886), + [sym_parameter_pack_expansion] = STATE(3886), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5749), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3059), + [sym_user_defined_literal] = STATE(3522), + [aux_sym__declaration_specifiers_repeat1] = STATE(2121), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(1884), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1788), + [anon_sym_RPAREN] = ACTIONS(1886), + [anon_sym_LPAREN2] = ACTIONS(1888), + [anon_sym_BANG] = ACTIONS(1890), + [anon_sym_TILDE] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1892), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(1896), + [anon_sym_virtual] = ACTIONS(1870), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(1880), + [anon_sym_COLON_COLON] = ACTIONS(1898), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1450), + [anon_sym_LBRACK] = ACTIONS(1266), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -62174,149 +62622,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(1882), - [anon_sym_enum] = ACTIONS(1884), - [anon_sym_class] = ACTIONS(1886), - [anon_sym_struct] = ACTIONS(1888), - [anon_sym_union] = ACTIONS(1890), - [anon_sym_not] = ACTIONS(1872), - [anon_sym_compl] = ACTIONS(1872), - [anon_sym_DASH_DASH] = ACTIONS(1892), - [anon_sym_PLUS_PLUS] = ACTIONS(1892), - [anon_sym_sizeof] = ACTIONS(1894), - [anon_sym___alignof__] = ACTIONS(1896), - [anon_sym___alignof] = ACTIONS(1896), - [anon_sym__alignof] = ACTIONS(1896), - [anon_sym_alignof] = ACTIONS(1896), - [anon_sym__Alignof] = ACTIONS(1896), - [anon_sym_offsetof] = ACTIONS(1898), - [anon_sym__Generic] = ACTIONS(1900), - [anon_sym_asm] = ACTIONS(1902), - [anon_sym___asm__] = ACTIONS(1902), - [anon_sym___asm] = ACTIONS(1902), - [sym_number_literal] = ACTIONS(1904), - [anon_sym_L_SQUOTE] = ACTIONS(1906), - [anon_sym_u_SQUOTE] = ACTIONS(1906), - [anon_sym_U_SQUOTE] = ACTIONS(1906), - [anon_sym_u8_SQUOTE] = ACTIONS(1906), - [anon_sym_SQUOTE] = ACTIONS(1906), - [anon_sym_L_DQUOTE] = ACTIONS(1908), - [anon_sym_u_DQUOTE] = ACTIONS(1908), - [anon_sym_U_DQUOTE] = ACTIONS(1908), - [anon_sym_u8_DQUOTE] = ACTIONS(1908), - [anon_sym_DQUOTE] = ACTIONS(1908), - [sym_true] = ACTIONS(1910), - [sym_false] = ACTIONS(1910), - [anon_sym_NULL] = ACTIONS(1912), - [anon_sym_nullptr] = ACTIONS(1912), + [sym_primitive_type] = ACTIONS(1900), + [anon_sym_enum] = ACTIONS(1874), + [anon_sym_class] = ACTIONS(1876), + [anon_sym_struct] = ACTIONS(1878), + [anon_sym_union] = ACTIONS(1880), + [anon_sym_not] = ACTIONS(1892), + [anon_sym_compl] = ACTIONS(1892), + [anon_sym_DASH_DASH] = ACTIONS(1902), + [anon_sym_PLUS_PLUS] = ACTIONS(1902), + [anon_sym_sizeof] = ACTIONS(1904), + [anon_sym___alignof__] = ACTIONS(1906), + [anon_sym___alignof] = ACTIONS(1906), + [anon_sym__alignof] = ACTIONS(1906), + [anon_sym_alignof] = ACTIONS(1906), + [anon_sym__Alignof] = ACTIONS(1906), + [anon_sym_offsetof] = ACTIONS(1908), + [anon_sym__Generic] = ACTIONS(1910), + [anon_sym_asm] = ACTIONS(1912), + [anon_sym___asm__] = ACTIONS(1912), + [anon_sym___asm] = ACTIONS(1912), + [sym_number_literal] = ACTIONS(1914), + [anon_sym_L_SQUOTE] = ACTIONS(1916), + [anon_sym_u_SQUOTE] = ACTIONS(1916), + [anon_sym_U_SQUOTE] = ACTIONS(1916), + [anon_sym_u8_SQUOTE] = ACTIONS(1916), + [anon_sym_SQUOTE] = ACTIONS(1916), + [anon_sym_L_DQUOTE] = ACTIONS(1918), + [anon_sym_u_DQUOTE] = ACTIONS(1918), + [anon_sym_U_DQUOTE] = ACTIONS(1918), + [anon_sym_u8_DQUOTE] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1918), + [sym_true] = ACTIONS(1920), + [sym_false] = ACTIONS(1920), + [anon_sym_NULL] = ACTIONS(1922), + [anon_sym_nullptr] = ACTIONS(1922), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(1914), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1916), - [anon_sym_R_DQUOTE] = ACTIONS(1918), - [anon_sym_LR_DQUOTE] = ACTIONS(1918), - [anon_sym_uR_DQUOTE] = ACTIONS(1918), - [anon_sym_UR_DQUOTE] = ACTIONS(1918), - [anon_sym_u8R_DQUOTE] = ACTIONS(1918), - [anon_sym_co_await] = ACTIONS(1920), - [anon_sym_new] = ACTIONS(1922), - [anon_sym_requires] = ACTIONS(1924), - [sym_this] = ACTIONS(1910), + [anon_sym_typename] = ACTIONS(1882), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1924), + [anon_sym_R_DQUOTE] = ACTIONS(1926), + [anon_sym_LR_DQUOTE] = ACTIONS(1926), + [anon_sym_uR_DQUOTE] = ACTIONS(1926), + [anon_sym_UR_DQUOTE] = ACTIONS(1926), + [anon_sym_u8R_DQUOTE] = ACTIONS(1926), + [anon_sym_co_await] = ACTIONS(1928), + [anon_sym_new] = ACTIONS(1930), + [anon_sym_requires] = ACTIONS(1932), + [sym_this] = ACTIONS(1920), }, - [128] = { - [sym__declaration_modifiers] = STATE(2061), - [sym__declaration_specifiers] = STATE(3966), - [sym_attribute_specifier] = STATE(2061), - [sym_attribute_declaration] = STATE(2061), - [sym_ms_declspec_modifier] = STATE(2061), - [sym_storage_class_specifier] = STATE(2061), - [sym_type_qualifier] = STATE(2061), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_parameter_declaration] = STATE(7359), - [sym_expression] = STATE(3272), - [sym__string] = STATE(3714), - [sym_conditional_expression] = STATE(3908), - [sym_assignment_expression] = STATE(3908), - [sym_pointer_expression] = STATE(3506), - [sym_unary_expression] = STATE(3908), - [sym_binary_expression] = STATE(3908), - [sym_update_expression] = STATE(3908), - [sym_cast_expression] = STATE(3908), - [sym_sizeof_expression] = STATE(3908), - [sym_alignof_expression] = STATE(3908), - [sym_offsetof_expression] = STATE(3908), - [sym_generic_expression] = STATE(3908), - [sym_subscript_expression] = STATE(3506), - [sym_call_expression] = STATE(3506), - [sym_gnu_asm_expression] = STATE(3908), - [sym_extension_expression] = STATE(3908), - [sym_field_expression] = STATE(3506), - [sym_compound_literal_expression] = STATE(3908), - [sym_parenthesized_expression] = STATE(3506), - [sym_char_literal] = STATE(3714), - [sym_concatenated_string] = STATE(3714), - [sym_string_literal] = STATE(2566), - [sym_null] = STATE(3908), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7868), - [sym_dependent_type] = STATE(2523), - [sym_optional_parameter_declaration] = STATE(7359), - [sym_variadic_parameter_declaration] = STATE(7359), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(3908), - [sym_raw_string_literal] = STATE(2566), - [sym_co_await_expression] = STATE(3908), - [sym_new_expression] = STATE(3908), - [sym_delete_expression] = STATE(3908), - [sym_requires_clause] = STATE(3908), - [sym_requires_expression] = STATE(3908), - [sym_lambda_expression] = STATE(3908), - [sym_lambda_capture_specifier] = STATE(5415), - [sym__unary_left_fold] = STATE(8119), - [sym__unary_right_fold] = STATE(8280), - [sym__binary_fold] = STATE(7936), - [sym_fold_expression] = STATE(3908), - [sym_parameter_pack_expansion] = STATE(3908), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5763), - [sym_qualified_identifier] = STATE(3506), - [sym_qualified_type_identifier] = STATE(3109), - [sym_user_defined_literal] = STATE(3506), - [aux_sym__declaration_specifiers_repeat1] = STATE(2061), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [sym_identifier] = ACTIONS(1864), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(1866), - [anon_sym_LPAREN2] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1870), - [anon_sym_TILDE] = ACTIONS(1870), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_PLUS] = ACTIONS(1872), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(1876), - [anon_sym_virtual] = ACTIONS(1878), + [129] = { + [sym__declaration_modifiers] = STATE(2121), + [sym__declaration_specifiers] = STATE(3995), + [sym_attribute_specifier] = STATE(2121), + [sym_attribute_declaration] = STATE(2121), + [sym_ms_declspec_modifier] = STATE(2121), + [sym_storage_class_specifier] = STATE(2121), + [sym_type_qualifier] = STATE(2121), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_parameter_declaration] = STATE(7389), + [sym_expression] = STATE(3253), + [sym__string] = STATE(3775), + [sym_conditional_expression] = STATE(3886), + [sym_assignment_expression] = STATE(3886), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(3886), + [sym_binary_expression] = STATE(3886), + [sym_update_expression] = STATE(3886), + [sym_cast_expression] = STATE(3886), + [sym_sizeof_expression] = STATE(3886), + [sym_alignof_expression] = STATE(3886), + [sym_offsetof_expression] = STATE(3886), + [sym_generic_expression] = STATE(3886), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(3886), + [sym_extension_expression] = STATE(3886), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(3886), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(3775), + [sym_concatenated_string] = STATE(3775), + [sym_string_literal] = STATE(2596), + [sym_null] = STATE(3886), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7756), + [sym_dependent_type] = STATE(2558), + [sym_optional_parameter_declaration] = STATE(7389), + [sym_variadic_parameter_declaration] = STATE(7389), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(3886), + [sym_raw_string_literal] = STATE(2596), + [sym_co_await_expression] = STATE(3886), + [sym_new_expression] = STATE(3886), + [sym_delete_expression] = STATE(3886), + [sym_requires_clause] = STATE(3886), + [sym_requires_expression] = STATE(3886), + [sym_lambda_expression] = STATE(3886), + [sym_lambda_capture_specifier] = STATE(5492), + [sym__unary_left_fold] = STATE(8716), + [sym__unary_right_fold] = STATE(8742), + [sym__binary_fold] = STATE(8824), + [sym_fold_expression] = STATE(3886), + [sym_parameter_pack_expansion] = STATE(3886), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5749), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3059), + [sym_user_defined_literal] = STATE(3522), + [aux_sym__declaration_specifiers_repeat1] = STATE(2121), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(1884), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1788), + [anon_sym_RPAREN] = ACTIONS(1886), + [anon_sym_LPAREN2] = ACTIONS(1888), + [anon_sym_BANG] = ACTIONS(1890), + [anon_sym_TILDE] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1892), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(1896), + [anon_sym_virtual] = ACTIONS(1870), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(1880), + [anon_sym_COLON_COLON] = ACTIONS(1898), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1450), + [anon_sym_LBRACK] = ACTIONS(1266), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -62339,149 +62787,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(1882), - [anon_sym_enum] = ACTIONS(1884), - [anon_sym_class] = ACTIONS(1886), - [anon_sym_struct] = ACTIONS(1888), - [anon_sym_union] = ACTIONS(1890), - [anon_sym_not] = ACTIONS(1872), - [anon_sym_compl] = ACTIONS(1872), - [anon_sym_DASH_DASH] = ACTIONS(1892), - [anon_sym_PLUS_PLUS] = ACTIONS(1892), - [anon_sym_sizeof] = ACTIONS(1894), - [anon_sym___alignof__] = ACTIONS(1896), - [anon_sym___alignof] = ACTIONS(1896), - [anon_sym__alignof] = ACTIONS(1896), - [anon_sym_alignof] = ACTIONS(1896), - [anon_sym__Alignof] = ACTIONS(1896), - [anon_sym_offsetof] = ACTIONS(1898), - [anon_sym__Generic] = ACTIONS(1900), - [anon_sym_asm] = ACTIONS(1902), - [anon_sym___asm__] = ACTIONS(1902), - [anon_sym___asm] = ACTIONS(1902), - [sym_number_literal] = ACTIONS(1904), - [anon_sym_L_SQUOTE] = ACTIONS(1906), - [anon_sym_u_SQUOTE] = ACTIONS(1906), - [anon_sym_U_SQUOTE] = ACTIONS(1906), - [anon_sym_u8_SQUOTE] = ACTIONS(1906), - [anon_sym_SQUOTE] = ACTIONS(1906), - [anon_sym_L_DQUOTE] = ACTIONS(1908), - [anon_sym_u_DQUOTE] = ACTIONS(1908), - [anon_sym_U_DQUOTE] = ACTIONS(1908), - [anon_sym_u8_DQUOTE] = ACTIONS(1908), - [anon_sym_DQUOTE] = ACTIONS(1908), - [sym_true] = ACTIONS(1910), - [sym_false] = ACTIONS(1910), - [anon_sym_NULL] = ACTIONS(1912), - [anon_sym_nullptr] = ACTIONS(1912), + [sym_primitive_type] = ACTIONS(1900), + [anon_sym_enum] = ACTIONS(1874), + [anon_sym_class] = ACTIONS(1876), + [anon_sym_struct] = ACTIONS(1878), + [anon_sym_union] = ACTIONS(1880), + [anon_sym_not] = ACTIONS(1892), + [anon_sym_compl] = ACTIONS(1892), + [anon_sym_DASH_DASH] = ACTIONS(1902), + [anon_sym_PLUS_PLUS] = ACTIONS(1902), + [anon_sym_sizeof] = ACTIONS(1904), + [anon_sym___alignof__] = ACTIONS(1906), + [anon_sym___alignof] = ACTIONS(1906), + [anon_sym__alignof] = ACTIONS(1906), + [anon_sym_alignof] = ACTIONS(1906), + [anon_sym__Alignof] = ACTIONS(1906), + [anon_sym_offsetof] = ACTIONS(1908), + [anon_sym__Generic] = ACTIONS(1910), + [anon_sym_asm] = ACTIONS(1912), + [anon_sym___asm__] = ACTIONS(1912), + [anon_sym___asm] = ACTIONS(1912), + [sym_number_literal] = ACTIONS(1914), + [anon_sym_L_SQUOTE] = ACTIONS(1916), + [anon_sym_u_SQUOTE] = ACTIONS(1916), + [anon_sym_U_SQUOTE] = ACTIONS(1916), + [anon_sym_u8_SQUOTE] = ACTIONS(1916), + [anon_sym_SQUOTE] = ACTIONS(1916), + [anon_sym_L_DQUOTE] = ACTIONS(1918), + [anon_sym_u_DQUOTE] = ACTIONS(1918), + [anon_sym_U_DQUOTE] = ACTIONS(1918), + [anon_sym_u8_DQUOTE] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1918), + [sym_true] = ACTIONS(1920), + [sym_false] = ACTIONS(1920), + [anon_sym_NULL] = ACTIONS(1922), + [anon_sym_nullptr] = ACTIONS(1922), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(1914), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1916), - [anon_sym_R_DQUOTE] = ACTIONS(1918), - [anon_sym_LR_DQUOTE] = ACTIONS(1918), - [anon_sym_uR_DQUOTE] = ACTIONS(1918), - [anon_sym_UR_DQUOTE] = ACTIONS(1918), - [anon_sym_u8R_DQUOTE] = ACTIONS(1918), - [anon_sym_co_await] = ACTIONS(1920), - [anon_sym_new] = ACTIONS(1922), - [anon_sym_requires] = ACTIONS(1924), - [sym_this] = ACTIONS(1910), + [anon_sym_typename] = ACTIONS(1882), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1924), + [anon_sym_R_DQUOTE] = ACTIONS(1926), + [anon_sym_LR_DQUOTE] = ACTIONS(1926), + [anon_sym_uR_DQUOTE] = ACTIONS(1926), + [anon_sym_UR_DQUOTE] = ACTIONS(1926), + [anon_sym_u8R_DQUOTE] = ACTIONS(1926), + [anon_sym_co_await] = ACTIONS(1928), + [anon_sym_new] = ACTIONS(1930), + [anon_sym_requires] = ACTIONS(1932), + [sym_this] = ACTIONS(1920), }, - [129] = { - [sym__declaration_modifiers] = STATE(2061), - [sym__declaration_specifiers] = STATE(3966), - [sym_attribute_specifier] = STATE(2061), - [sym_attribute_declaration] = STATE(2061), - [sym_ms_declspec_modifier] = STATE(2061), - [sym_storage_class_specifier] = STATE(2061), - [sym_type_qualifier] = STATE(2061), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_parameter_declaration] = STATE(7359), - [sym_expression] = STATE(3244), - [sym__string] = STATE(3714), - [sym_conditional_expression] = STATE(3908), - [sym_assignment_expression] = STATE(3908), - [sym_pointer_expression] = STATE(3506), - [sym_unary_expression] = STATE(3908), - [sym_binary_expression] = STATE(3908), - [sym_update_expression] = STATE(3908), - [sym_cast_expression] = STATE(3908), - [sym_sizeof_expression] = STATE(3908), - [sym_alignof_expression] = STATE(3908), - [sym_offsetof_expression] = STATE(3908), - [sym_generic_expression] = STATE(3908), - [sym_subscript_expression] = STATE(3506), - [sym_call_expression] = STATE(3506), - [sym_gnu_asm_expression] = STATE(3908), - [sym_extension_expression] = STATE(3908), - [sym_field_expression] = STATE(3506), - [sym_compound_literal_expression] = STATE(3908), - [sym_parenthesized_expression] = STATE(3506), - [sym_char_literal] = STATE(3714), - [sym_concatenated_string] = STATE(3714), - [sym_string_literal] = STATE(2566), - [sym_null] = STATE(3908), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7868), - [sym_dependent_type] = STATE(2523), - [sym_optional_parameter_declaration] = STATE(7359), - [sym_variadic_parameter_declaration] = STATE(7359), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(3908), - [sym_raw_string_literal] = STATE(2566), - [sym_co_await_expression] = STATE(3908), - [sym_new_expression] = STATE(3908), - [sym_delete_expression] = STATE(3908), - [sym_requires_clause] = STATE(3908), - [sym_requires_expression] = STATE(3908), - [sym_lambda_expression] = STATE(3908), - [sym_lambda_capture_specifier] = STATE(5415), - [sym__unary_left_fold] = STATE(8232), - [sym__unary_right_fold] = STATE(8236), - [sym__binary_fold] = STATE(8240), - [sym_fold_expression] = STATE(3908), - [sym_parameter_pack_expansion] = STATE(3908), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5763), - [sym_qualified_identifier] = STATE(3506), - [sym_qualified_type_identifier] = STATE(3109), - [sym_user_defined_literal] = STATE(3506), - [aux_sym__declaration_specifiers_repeat1] = STATE(2061), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [sym_identifier] = ACTIONS(1864), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(1866), - [anon_sym_LPAREN2] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1870), - [anon_sym_TILDE] = ACTIONS(1870), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_PLUS] = ACTIONS(1872), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(1876), - [anon_sym_virtual] = ACTIONS(1878), + [130] = { + [sym__declaration_modifiers] = STATE(2121), + [sym__declaration_specifiers] = STATE(3995), + [sym_attribute_specifier] = STATE(2121), + [sym_attribute_declaration] = STATE(2121), + [sym_ms_declspec_modifier] = STATE(2121), + [sym_storage_class_specifier] = STATE(2121), + [sym_type_qualifier] = STATE(2121), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_parameter_declaration] = STATE(7389), + [sym_expression] = STATE(3277), + [sym__string] = STATE(3775), + [sym_conditional_expression] = STATE(3886), + [sym_assignment_expression] = STATE(3886), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(3886), + [sym_binary_expression] = STATE(3886), + [sym_update_expression] = STATE(3886), + [sym_cast_expression] = STATE(3886), + [sym_sizeof_expression] = STATE(3886), + [sym_alignof_expression] = STATE(3886), + [sym_offsetof_expression] = STATE(3886), + [sym_generic_expression] = STATE(3886), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(3886), + [sym_extension_expression] = STATE(3886), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(3886), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(3775), + [sym_concatenated_string] = STATE(3775), + [sym_string_literal] = STATE(2596), + [sym_null] = STATE(3886), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7756), + [sym_dependent_type] = STATE(2558), + [sym_optional_parameter_declaration] = STATE(7389), + [sym_variadic_parameter_declaration] = STATE(7389), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(3886), + [sym_raw_string_literal] = STATE(2596), + [sym_co_await_expression] = STATE(3886), + [sym_new_expression] = STATE(3886), + [sym_delete_expression] = STATE(3886), + [sym_requires_clause] = STATE(3886), + [sym_requires_expression] = STATE(3886), + [sym_lambda_expression] = STATE(3886), + [sym_lambda_capture_specifier] = STATE(5492), + [sym__unary_left_fold] = STATE(8287), + [sym__unary_right_fold] = STATE(8288), + [sym__binary_fold] = STATE(8289), + [sym_fold_expression] = STATE(3886), + [sym_parameter_pack_expansion] = STATE(3886), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5749), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3059), + [sym_user_defined_literal] = STATE(3522), + [aux_sym__declaration_specifiers_repeat1] = STATE(2121), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(1884), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1788), + [anon_sym_RPAREN] = ACTIONS(1886), + [anon_sym_LPAREN2] = ACTIONS(1888), + [anon_sym_BANG] = ACTIONS(1890), + [anon_sym_TILDE] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1892), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(1896), + [anon_sym_virtual] = ACTIONS(1870), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(1880), + [anon_sym_COLON_COLON] = ACTIONS(1898), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1450), + [anon_sym_LBRACK] = ACTIONS(1266), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -62504,149 +62952,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(1882), - [anon_sym_enum] = ACTIONS(1884), - [anon_sym_class] = ACTIONS(1886), - [anon_sym_struct] = ACTIONS(1888), - [anon_sym_union] = ACTIONS(1890), - [anon_sym_not] = ACTIONS(1872), - [anon_sym_compl] = ACTIONS(1872), - [anon_sym_DASH_DASH] = ACTIONS(1892), - [anon_sym_PLUS_PLUS] = ACTIONS(1892), - [anon_sym_sizeof] = ACTIONS(1894), - [anon_sym___alignof__] = ACTIONS(1896), - [anon_sym___alignof] = ACTIONS(1896), - [anon_sym__alignof] = ACTIONS(1896), - [anon_sym_alignof] = ACTIONS(1896), - [anon_sym__Alignof] = ACTIONS(1896), - [anon_sym_offsetof] = ACTIONS(1898), - [anon_sym__Generic] = ACTIONS(1900), - [anon_sym_asm] = ACTIONS(1902), - [anon_sym___asm__] = ACTIONS(1902), - [anon_sym___asm] = ACTIONS(1902), - [sym_number_literal] = ACTIONS(1904), - [anon_sym_L_SQUOTE] = ACTIONS(1906), - [anon_sym_u_SQUOTE] = ACTIONS(1906), - [anon_sym_U_SQUOTE] = ACTIONS(1906), - [anon_sym_u8_SQUOTE] = ACTIONS(1906), - [anon_sym_SQUOTE] = ACTIONS(1906), - [anon_sym_L_DQUOTE] = ACTIONS(1908), - [anon_sym_u_DQUOTE] = ACTIONS(1908), - [anon_sym_U_DQUOTE] = ACTIONS(1908), - [anon_sym_u8_DQUOTE] = ACTIONS(1908), - [anon_sym_DQUOTE] = ACTIONS(1908), - [sym_true] = ACTIONS(1910), - [sym_false] = ACTIONS(1910), - [anon_sym_NULL] = ACTIONS(1912), - [anon_sym_nullptr] = ACTIONS(1912), + [sym_primitive_type] = ACTIONS(1900), + [anon_sym_enum] = ACTIONS(1874), + [anon_sym_class] = ACTIONS(1876), + [anon_sym_struct] = ACTIONS(1878), + [anon_sym_union] = ACTIONS(1880), + [anon_sym_not] = ACTIONS(1892), + [anon_sym_compl] = ACTIONS(1892), + [anon_sym_DASH_DASH] = ACTIONS(1902), + [anon_sym_PLUS_PLUS] = ACTIONS(1902), + [anon_sym_sizeof] = ACTIONS(1904), + [anon_sym___alignof__] = ACTIONS(1906), + [anon_sym___alignof] = ACTIONS(1906), + [anon_sym__alignof] = ACTIONS(1906), + [anon_sym_alignof] = ACTIONS(1906), + [anon_sym__Alignof] = ACTIONS(1906), + [anon_sym_offsetof] = ACTIONS(1908), + [anon_sym__Generic] = ACTIONS(1910), + [anon_sym_asm] = ACTIONS(1912), + [anon_sym___asm__] = ACTIONS(1912), + [anon_sym___asm] = ACTIONS(1912), + [sym_number_literal] = ACTIONS(1914), + [anon_sym_L_SQUOTE] = ACTIONS(1916), + [anon_sym_u_SQUOTE] = ACTIONS(1916), + [anon_sym_U_SQUOTE] = ACTIONS(1916), + [anon_sym_u8_SQUOTE] = ACTIONS(1916), + [anon_sym_SQUOTE] = ACTIONS(1916), + [anon_sym_L_DQUOTE] = ACTIONS(1918), + [anon_sym_u_DQUOTE] = ACTIONS(1918), + [anon_sym_U_DQUOTE] = ACTIONS(1918), + [anon_sym_u8_DQUOTE] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1918), + [sym_true] = ACTIONS(1920), + [sym_false] = ACTIONS(1920), + [anon_sym_NULL] = ACTIONS(1922), + [anon_sym_nullptr] = ACTIONS(1922), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(1914), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1916), - [anon_sym_R_DQUOTE] = ACTIONS(1918), - [anon_sym_LR_DQUOTE] = ACTIONS(1918), - [anon_sym_uR_DQUOTE] = ACTIONS(1918), - [anon_sym_UR_DQUOTE] = ACTIONS(1918), - [anon_sym_u8R_DQUOTE] = ACTIONS(1918), - [anon_sym_co_await] = ACTIONS(1920), - [anon_sym_new] = ACTIONS(1922), - [anon_sym_requires] = ACTIONS(1924), - [sym_this] = ACTIONS(1910), + [anon_sym_typename] = ACTIONS(1882), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1924), + [anon_sym_R_DQUOTE] = ACTIONS(1926), + [anon_sym_LR_DQUOTE] = ACTIONS(1926), + [anon_sym_uR_DQUOTE] = ACTIONS(1926), + [anon_sym_UR_DQUOTE] = ACTIONS(1926), + [anon_sym_u8R_DQUOTE] = ACTIONS(1926), + [anon_sym_co_await] = ACTIONS(1928), + [anon_sym_new] = ACTIONS(1930), + [anon_sym_requires] = ACTIONS(1932), + [sym_this] = ACTIONS(1920), }, - [130] = { - [sym__declaration_modifiers] = STATE(2061), - [sym__declaration_specifiers] = STATE(3966), - [sym_attribute_specifier] = STATE(2061), - [sym_attribute_declaration] = STATE(2061), - [sym_ms_declspec_modifier] = STATE(2061), - [sym_storage_class_specifier] = STATE(2061), - [sym_type_qualifier] = STATE(2061), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_parameter_declaration] = STATE(7359), - [sym_expression] = STATE(3290), - [sym__string] = STATE(3714), - [sym_conditional_expression] = STATE(3908), - [sym_assignment_expression] = STATE(3908), - [sym_pointer_expression] = STATE(3506), - [sym_unary_expression] = STATE(3908), - [sym_binary_expression] = STATE(3908), - [sym_update_expression] = STATE(3908), - [sym_cast_expression] = STATE(3908), - [sym_sizeof_expression] = STATE(3908), - [sym_alignof_expression] = STATE(3908), - [sym_offsetof_expression] = STATE(3908), - [sym_generic_expression] = STATE(3908), - [sym_subscript_expression] = STATE(3506), - [sym_call_expression] = STATE(3506), - [sym_gnu_asm_expression] = STATE(3908), - [sym_extension_expression] = STATE(3908), - [sym_field_expression] = STATE(3506), - [sym_compound_literal_expression] = STATE(3908), - [sym_parenthesized_expression] = STATE(3506), - [sym_char_literal] = STATE(3714), - [sym_concatenated_string] = STATE(3714), - [sym_string_literal] = STATE(2566), - [sym_null] = STATE(3908), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7868), - [sym_dependent_type] = STATE(2523), - [sym_optional_parameter_declaration] = STATE(7359), - [sym_variadic_parameter_declaration] = STATE(7359), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(3908), - [sym_raw_string_literal] = STATE(2566), - [sym_co_await_expression] = STATE(3908), - [sym_new_expression] = STATE(3908), - [sym_delete_expression] = STATE(3908), - [sym_requires_clause] = STATE(3908), - [sym_requires_expression] = STATE(3908), - [sym_lambda_expression] = STATE(3908), - [sym_lambda_capture_specifier] = STATE(5415), - [sym__unary_left_fold] = STATE(8396), - [sym__unary_right_fold] = STATE(8410), - [sym__binary_fold] = STATE(8415), - [sym_fold_expression] = STATE(3908), - [sym_parameter_pack_expansion] = STATE(3908), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5763), - [sym_qualified_identifier] = STATE(3506), - [sym_qualified_type_identifier] = STATE(3109), - [sym_user_defined_literal] = STATE(3506), - [aux_sym__declaration_specifiers_repeat1] = STATE(2061), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [sym_identifier] = ACTIONS(1864), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(1866), - [anon_sym_LPAREN2] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1870), - [anon_sym_TILDE] = ACTIONS(1870), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_PLUS] = ACTIONS(1872), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(1876), - [anon_sym_virtual] = ACTIONS(1878), + [131] = { + [sym__declaration_modifiers] = STATE(2121), + [sym__declaration_specifiers] = STATE(3995), + [sym_attribute_specifier] = STATE(2121), + [sym_attribute_declaration] = STATE(2121), + [sym_ms_declspec_modifier] = STATE(2121), + [sym_storage_class_specifier] = STATE(2121), + [sym_type_qualifier] = STATE(2121), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_parameter_declaration] = STATE(7389), + [sym_expression] = STATE(3297), + [sym__string] = STATE(3775), + [sym_conditional_expression] = STATE(3886), + [sym_assignment_expression] = STATE(3886), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(3886), + [sym_binary_expression] = STATE(3886), + [sym_update_expression] = STATE(3886), + [sym_cast_expression] = STATE(3886), + [sym_sizeof_expression] = STATE(3886), + [sym_alignof_expression] = STATE(3886), + [sym_offsetof_expression] = STATE(3886), + [sym_generic_expression] = STATE(3886), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(3886), + [sym_extension_expression] = STATE(3886), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(3886), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(3775), + [sym_concatenated_string] = STATE(3775), + [sym_string_literal] = STATE(2596), + [sym_null] = STATE(3886), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7756), + [sym_dependent_type] = STATE(2558), + [sym_optional_parameter_declaration] = STATE(7389), + [sym_variadic_parameter_declaration] = STATE(7389), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(3886), + [sym_raw_string_literal] = STATE(2596), + [sym_co_await_expression] = STATE(3886), + [sym_new_expression] = STATE(3886), + [sym_delete_expression] = STATE(3886), + [sym_requires_clause] = STATE(3886), + [sym_requires_expression] = STATE(3886), + [sym_lambda_expression] = STATE(3886), + [sym_lambda_capture_specifier] = STATE(5492), + [sym__unary_left_fold] = STATE(8133), + [sym__unary_right_fold] = STATE(8142), + [sym__binary_fold] = STATE(8143), + [sym_fold_expression] = STATE(3886), + [sym_parameter_pack_expansion] = STATE(3886), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5749), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3059), + [sym_user_defined_literal] = STATE(3522), + [aux_sym__declaration_specifiers_repeat1] = STATE(2121), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(1884), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1788), + [anon_sym_RPAREN] = ACTIONS(1886), + [anon_sym_LPAREN2] = ACTIONS(1888), + [anon_sym_BANG] = ACTIONS(1890), + [anon_sym_TILDE] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1892), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(1896), + [anon_sym_virtual] = ACTIONS(1870), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(1880), + [anon_sym_COLON_COLON] = ACTIONS(1898), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1450), + [anon_sym_LBRACK] = ACTIONS(1266), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -62669,149 +63117,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(1882), - [anon_sym_enum] = ACTIONS(1884), - [anon_sym_class] = ACTIONS(1886), - [anon_sym_struct] = ACTIONS(1888), - [anon_sym_union] = ACTIONS(1890), - [anon_sym_not] = ACTIONS(1872), - [anon_sym_compl] = ACTIONS(1872), - [anon_sym_DASH_DASH] = ACTIONS(1892), - [anon_sym_PLUS_PLUS] = ACTIONS(1892), - [anon_sym_sizeof] = ACTIONS(1894), - [anon_sym___alignof__] = ACTIONS(1896), - [anon_sym___alignof] = ACTIONS(1896), - [anon_sym__alignof] = ACTIONS(1896), - [anon_sym_alignof] = ACTIONS(1896), - [anon_sym__Alignof] = ACTIONS(1896), - [anon_sym_offsetof] = ACTIONS(1898), - [anon_sym__Generic] = ACTIONS(1900), - [anon_sym_asm] = ACTIONS(1902), - [anon_sym___asm__] = ACTIONS(1902), - [anon_sym___asm] = ACTIONS(1902), - [sym_number_literal] = ACTIONS(1904), - [anon_sym_L_SQUOTE] = ACTIONS(1906), - [anon_sym_u_SQUOTE] = ACTIONS(1906), - [anon_sym_U_SQUOTE] = ACTIONS(1906), - [anon_sym_u8_SQUOTE] = ACTIONS(1906), - [anon_sym_SQUOTE] = ACTIONS(1906), - [anon_sym_L_DQUOTE] = ACTIONS(1908), - [anon_sym_u_DQUOTE] = ACTIONS(1908), - [anon_sym_U_DQUOTE] = ACTIONS(1908), - [anon_sym_u8_DQUOTE] = ACTIONS(1908), - [anon_sym_DQUOTE] = ACTIONS(1908), - [sym_true] = ACTIONS(1910), - [sym_false] = ACTIONS(1910), - [anon_sym_NULL] = ACTIONS(1912), - [anon_sym_nullptr] = ACTIONS(1912), + [sym_primitive_type] = ACTIONS(1900), + [anon_sym_enum] = ACTIONS(1874), + [anon_sym_class] = ACTIONS(1876), + [anon_sym_struct] = ACTIONS(1878), + [anon_sym_union] = ACTIONS(1880), + [anon_sym_not] = ACTIONS(1892), + [anon_sym_compl] = ACTIONS(1892), + [anon_sym_DASH_DASH] = ACTIONS(1902), + [anon_sym_PLUS_PLUS] = ACTIONS(1902), + [anon_sym_sizeof] = ACTIONS(1904), + [anon_sym___alignof__] = ACTIONS(1906), + [anon_sym___alignof] = ACTIONS(1906), + [anon_sym__alignof] = ACTIONS(1906), + [anon_sym_alignof] = ACTIONS(1906), + [anon_sym__Alignof] = ACTIONS(1906), + [anon_sym_offsetof] = ACTIONS(1908), + [anon_sym__Generic] = ACTIONS(1910), + [anon_sym_asm] = ACTIONS(1912), + [anon_sym___asm__] = ACTIONS(1912), + [anon_sym___asm] = ACTIONS(1912), + [sym_number_literal] = ACTIONS(1914), + [anon_sym_L_SQUOTE] = ACTIONS(1916), + [anon_sym_u_SQUOTE] = ACTIONS(1916), + [anon_sym_U_SQUOTE] = ACTIONS(1916), + [anon_sym_u8_SQUOTE] = ACTIONS(1916), + [anon_sym_SQUOTE] = ACTIONS(1916), + [anon_sym_L_DQUOTE] = ACTIONS(1918), + [anon_sym_u_DQUOTE] = ACTIONS(1918), + [anon_sym_U_DQUOTE] = ACTIONS(1918), + [anon_sym_u8_DQUOTE] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1918), + [sym_true] = ACTIONS(1920), + [sym_false] = ACTIONS(1920), + [anon_sym_NULL] = ACTIONS(1922), + [anon_sym_nullptr] = ACTIONS(1922), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(1914), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1916), - [anon_sym_R_DQUOTE] = ACTIONS(1918), - [anon_sym_LR_DQUOTE] = ACTIONS(1918), - [anon_sym_uR_DQUOTE] = ACTIONS(1918), - [anon_sym_UR_DQUOTE] = ACTIONS(1918), - [anon_sym_u8R_DQUOTE] = ACTIONS(1918), - [anon_sym_co_await] = ACTIONS(1920), - [anon_sym_new] = ACTIONS(1922), - [anon_sym_requires] = ACTIONS(1924), - [sym_this] = ACTIONS(1910), + [anon_sym_typename] = ACTIONS(1882), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1924), + [anon_sym_R_DQUOTE] = ACTIONS(1926), + [anon_sym_LR_DQUOTE] = ACTIONS(1926), + [anon_sym_uR_DQUOTE] = ACTIONS(1926), + [anon_sym_UR_DQUOTE] = ACTIONS(1926), + [anon_sym_u8R_DQUOTE] = ACTIONS(1926), + [anon_sym_co_await] = ACTIONS(1928), + [anon_sym_new] = ACTIONS(1930), + [anon_sym_requires] = ACTIONS(1932), + [sym_this] = ACTIONS(1920), }, - [131] = { - [sym__declaration_modifiers] = STATE(2061), - [sym__declaration_specifiers] = STATE(3966), - [sym_attribute_specifier] = STATE(2061), - [sym_attribute_declaration] = STATE(2061), - [sym_ms_declspec_modifier] = STATE(2061), - [sym_storage_class_specifier] = STATE(2061), - [sym_type_qualifier] = STATE(2061), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_parameter_declaration] = STATE(7359), - [sym_expression] = STATE(3220), - [sym__string] = STATE(3714), - [sym_conditional_expression] = STATE(3908), - [sym_assignment_expression] = STATE(3908), - [sym_pointer_expression] = STATE(3506), - [sym_unary_expression] = STATE(3908), - [sym_binary_expression] = STATE(3908), - [sym_update_expression] = STATE(3908), - [sym_cast_expression] = STATE(3908), - [sym_sizeof_expression] = STATE(3908), - [sym_alignof_expression] = STATE(3908), - [sym_offsetof_expression] = STATE(3908), - [sym_generic_expression] = STATE(3908), - [sym_subscript_expression] = STATE(3506), - [sym_call_expression] = STATE(3506), - [sym_gnu_asm_expression] = STATE(3908), - [sym_extension_expression] = STATE(3908), - [sym_field_expression] = STATE(3506), - [sym_compound_literal_expression] = STATE(3908), - [sym_parenthesized_expression] = STATE(3506), - [sym_char_literal] = STATE(3714), - [sym_concatenated_string] = STATE(3714), - [sym_string_literal] = STATE(2566), - [sym_null] = STATE(3908), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7868), - [sym_dependent_type] = STATE(2523), - [sym_optional_parameter_declaration] = STATE(7359), - [sym_variadic_parameter_declaration] = STATE(7359), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(3908), - [sym_raw_string_literal] = STATE(2566), - [sym_co_await_expression] = STATE(3908), - [sym_new_expression] = STATE(3908), - [sym_delete_expression] = STATE(3908), - [sym_requires_clause] = STATE(3908), - [sym_requires_expression] = STATE(3908), - [sym_lambda_expression] = STATE(3908), - [sym_lambda_capture_specifier] = STATE(5415), - [sym__unary_left_fold] = STATE(8699), - [sym__unary_right_fold] = STATE(8700), - [sym__binary_fold] = STATE(8703), - [sym_fold_expression] = STATE(3908), - [sym_parameter_pack_expansion] = STATE(3908), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5763), - [sym_qualified_identifier] = STATE(3506), - [sym_qualified_type_identifier] = STATE(3109), - [sym_user_defined_literal] = STATE(3506), - [aux_sym__declaration_specifiers_repeat1] = STATE(2061), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [sym_identifier] = ACTIONS(1864), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(1866), - [anon_sym_LPAREN2] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1870), - [anon_sym_TILDE] = ACTIONS(1870), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_PLUS] = ACTIONS(1872), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(1876), - [anon_sym_virtual] = ACTIONS(1878), + [132] = { + [sym__declaration_modifiers] = STATE(2121), + [sym__declaration_specifiers] = STATE(3995), + [sym_attribute_specifier] = STATE(2121), + [sym_attribute_declaration] = STATE(2121), + [sym_ms_declspec_modifier] = STATE(2121), + [sym_storage_class_specifier] = STATE(2121), + [sym_type_qualifier] = STATE(2121), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_parameter_declaration] = STATE(7389), + [sym_expression] = STATE(3311), + [sym__string] = STATE(3775), + [sym_conditional_expression] = STATE(3886), + [sym_assignment_expression] = STATE(3886), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(3886), + [sym_binary_expression] = STATE(3886), + [sym_update_expression] = STATE(3886), + [sym_cast_expression] = STATE(3886), + [sym_sizeof_expression] = STATE(3886), + [sym_alignof_expression] = STATE(3886), + [sym_offsetof_expression] = STATE(3886), + [sym_generic_expression] = STATE(3886), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(3886), + [sym_extension_expression] = STATE(3886), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(3886), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(3775), + [sym_concatenated_string] = STATE(3775), + [sym_string_literal] = STATE(2596), + [sym_null] = STATE(3886), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7756), + [sym_dependent_type] = STATE(2558), + [sym_optional_parameter_declaration] = STATE(7389), + [sym_variadic_parameter_declaration] = STATE(7389), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(3886), + [sym_raw_string_literal] = STATE(2596), + [sym_co_await_expression] = STATE(3886), + [sym_new_expression] = STATE(3886), + [sym_delete_expression] = STATE(3886), + [sym_requires_clause] = STATE(3886), + [sym_requires_expression] = STATE(3886), + [sym_lambda_expression] = STATE(3886), + [sym_lambda_capture_specifier] = STATE(5492), + [sym__unary_left_fold] = STATE(8363), + [sym__unary_right_fold] = STATE(8370), + [sym__binary_fold] = STATE(8382), + [sym_fold_expression] = STATE(3886), + [sym_parameter_pack_expansion] = STATE(3886), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5749), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3059), + [sym_user_defined_literal] = STATE(3522), + [aux_sym__declaration_specifiers_repeat1] = STATE(2121), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(1884), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1788), + [anon_sym_RPAREN] = ACTIONS(1886), + [anon_sym_LPAREN2] = ACTIONS(1888), + [anon_sym_BANG] = ACTIONS(1890), + [anon_sym_TILDE] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1892), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(1896), + [anon_sym_virtual] = ACTIONS(1870), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(1880), + [anon_sym_COLON_COLON] = ACTIONS(1898), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1450), + [anon_sym_LBRACK] = ACTIONS(1266), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -62834,149 +63282,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(1882), - [anon_sym_enum] = ACTIONS(1884), - [anon_sym_class] = ACTIONS(1886), - [anon_sym_struct] = ACTIONS(1888), - [anon_sym_union] = ACTIONS(1890), - [anon_sym_not] = ACTIONS(1872), - [anon_sym_compl] = ACTIONS(1872), - [anon_sym_DASH_DASH] = ACTIONS(1892), - [anon_sym_PLUS_PLUS] = ACTIONS(1892), - [anon_sym_sizeof] = ACTIONS(1894), - [anon_sym___alignof__] = ACTIONS(1896), - [anon_sym___alignof] = ACTIONS(1896), - [anon_sym__alignof] = ACTIONS(1896), - [anon_sym_alignof] = ACTIONS(1896), - [anon_sym__Alignof] = ACTIONS(1896), - [anon_sym_offsetof] = ACTIONS(1898), - [anon_sym__Generic] = ACTIONS(1900), - [anon_sym_asm] = ACTIONS(1902), - [anon_sym___asm__] = ACTIONS(1902), - [anon_sym___asm] = ACTIONS(1902), - [sym_number_literal] = ACTIONS(1904), - [anon_sym_L_SQUOTE] = ACTIONS(1906), - [anon_sym_u_SQUOTE] = ACTIONS(1906), - [anon_sym_U_SQUOTE] = ACTIONS(1906), - [anon_sym_u8_SQUOTE] = ACTIONS(1906), - [anon_sym_SQUOTE] = ACTIONS(1906), - [anon_sym_L_DQUOTE] = ACTIONS(1908), - [anon_sym_u_DQUOTE] = ACTIONS(1908), - [anon_sym_U_DQUOTE] = ACTIONS(1908), - [anon_sym_u8_DQUOTE] = ACTIONS(1908), - [anon_sym_DQUOTE] = ACTIONS(1908), - [sym_true] = ACTIONS(1910), - [sym_false] = ACTIONS(1910), - [anon_sym_NULL] = ACTIONS(1912), - [anon_sym_nullptr] = ACTIONS(1912), + [sym_primitive_type] = ACTIONS(1900), + [anon_sym_enum] = ACTIONS(1874), + [anon_sym_class] = ACTIONS(1876), + [anon_sym_struct] = ACTIONS(1878), + [anon_sym_union] = ACTIONS(1880), + [anon_sym_not] = ACTIONS(1892), + [anon_sym_compl] = ACTIONS(1892), + [anon_sym_DASH_DASH] = ACTIONS(1902), + [anon_sym_PLUS_PLUS] = ACTIONS(1902), + [anon_sym_sizeof] = ACTIONS(1904), + [anon_sym___alignof__] = ACTIONS(1906), + [anon_sym___alignof] = ACTIONS(1906), + [anon_sym__alignof] = ACTIONS(1906), + [anon_sym_alignof] = ACTIONS(1906), + [anon_sym__Alignof] = ACTIONS(1906), + [anon_sym_offsetof] = ACTIONS(1908), + [anon_sym__Generic] = ACTIONS(1910), + [anon_sym_asm] = ACTIONS(1912), + [anon_sym___asm__] = ACTIONS(1912), + [anon_sym___asm] = ACTIONS(1912), + [sym_number_literal] = ACTIONS(1914), + [anon_sym_L_SQUOTE] = ACTIONS(1916), + [anon_sym_u_SQUOTE] = ACTIONS(1916), + [anon_sym_U_SQUOTE] = ACTIONS(1916), + [anon_sym_u8_SQUOTE] = ACTIONS(1916), + [anon_sym_SQUOTE] = ACTIONS(1916), + [anon_sym_L_DQUOTE] = ACTIONS(1918), + [anon_sym_u_DQUOTE] = ACTIONS(1918), + [anon_sym_U_DQUOTE] = ACTIONS(1918), + [anon_sym_u8_DQUOTE] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1918), + [sym_true] = ACTIONS(1920), + [sym_false] = ACTIONS(1920), + [anon_sym_NULL] = ACTIONS(1922), + [anon_sym_nullptr] = ACTIONS(1922), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(1914), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1916), - [anon_sym_R_DQUOTE] = ACTIONS(1918), - [anon_sym_LR_DQUOTE] = ACTIONS(1918), - [anon_sym_uR_DQUOTE] = ACTIONS(1918), - [anon_sym_UR_DQUOTE] = ACTIONS(1918), - [anon_sym_u8R_DQUOTE] = ACTIONS(1918), - [anon_sym_co_await] = ACTIONS(1920), - [anon_sym_new] = ACTIONS(1922), - [anon_sym_requires] = ACTIONS(1924), - [sym_this] = ACTIONS(1910), + [anon_sym_typename] = ACTIONS(1882), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1924), + [anon_sym_R_DQUOTE] = ACTIONS(1926), + [anon_sym_LR_DQUOTE] = ACTIONS(1926), + [anon_sym_uR_DQUOTE] = ACTIONS(1926), + [anon_sym_UR_DQUOTE] = ACTIONS(1926), + [anon_sym_u8R_DQUOTE] = ACTIONS(1926), + [anon_sym_co_await] = ACTIONS(1928), + [anon_sym_new] = ACTIONS(1930), + [anon_sym_requires] = ACTIONS(1932), + [sym_this] = ACTIONS(1920), }, - [132] = { - [sym__declaration_modifiers] = STATE(2061), - [sym__declaration_specifiers] = STATE(3966), - [sym_attribute_specifier] = STATE(2061), - [sym_attribute_declaration] = STATE(2061), - [sym_ms_declspec_modifier] = STATE(2061), - [sym_storage_class_specifier] = STATE(2061), - [sym_type_qualifier] = STATE(2061), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_parameter_declaration] = STATE(7359), - [sym_expression] = STATE(3236), - [sym__string] = STATE(3714), - [sym_conditional_expression] = STATE(3908), - [sym_assignment_expression] = STATE(3908), - [sym_pointer_expression] = STATE(3506), - [sym_unary_expression] = STATE(3908), - [sym_binary_expression] = STATE(3908), - [sym_update_expression] = STATE(3908), - [sym_cast_expression] = STATE(3908), - [sym_sizeof_expression] = STATE(3908), - [sym_alignof_expression] = STATE(3908), - [sym_offsetof_expression] = STATE(3908), - [sym_generic_expression] = STATE(3908), - [sym_subscript_expression] = STATE(3506), - [sym_call_expression] = STATE(3506), - [sym_gnu_asm_expression] = STATE(3908), - [sym_extension_expression] = STATE(3908), - [sym_field_expression] = STATE(3506), - [sym_compound_literal_expression] = STATE(3908), - [sym_parenthesized_expression] = STATE(3506), - [sym_char_literal] = STATE(3714), - [sym_concatenated_string] = STATE(3714), - [sym_string_literal] = STATE(2566), - [sym_null] = STATE(3908), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7868), - [sym_dependent_type] = STATE(2523), - [sym_optional_parameter_declaration] = STATE(7359), - [sym_variadic_parameter_declaration] = STATE(7359), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(3908), - [sym_raw_string_literal] = STATE(2566), - [sym_co_await_expression] = STATE(3908), - [sym_new_expression] = STATE(3908), - [sym_delete_expression] = STATE(3908), - [sym_requires_clause] = STATE(3908), - [sym_requires_expression] = STATE(3908), - [sym_lambda_expression] = STATE(3908), - [sym_lambda_capture_specifier] = STATE(5415), - [sym__unary_left_fold] = STATE(8605), - [sym__unary_right_fold] = STATE(8610), - [sym__binary_fold] = STATE(8628), - [sym_fold_expression] = STATE(3908), - [sym_parameter_pack_expansion] = STATE(3908), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5763), - [sym_qualified_identifier] = STATE(3506), - [sym_qualified_type_identifier] = STATE(3109), - [sym_user_defined_literal] = STATE(3506), - [aux_sym__declaration_specifiers_repeat1] = STATE(2061), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [sym_identifier] = ACTIONS(1864), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(1866), - [anon_sym_LPAREN2] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1870), - [anon_sym_TILDE] = ACTIONS(1870), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_PLUS] = ACTIONS(1872), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(1876), - [anon_sym_virtual] = ACTIONS(1878), + [133] = { + [sym__declaration_modifiers] = STATE(2121), + [sym__declaration_specifiers] = STATE(3995), + [sym_attribute_specifier] = STATE(2121), + [sym_attribute_declaration] = STATE(2121), + [sym_ms_declspec_modifier] = STATE(2121), + [sym_storage_class_specifier] = STATE(2121), + [sym_type_qualifier] = STATE(2121), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_parameter_declaration] = STATE(7389), + [sym_expression] = STATE(3317), + [sym__string] = STATE(3775), + [sym_conditional_expression] = STATE(3886), + [sym_assignment_expression] = STATE(3886), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(3886), + [sym_binary_expression] = STATE(3886), + [sym_update_expression] = STATE(3886), + [sym_cast_expression] = STATE(3886), + [sym_sizeof_expression] = STATE(3886), + [sym_alignof_expression] = STATE(3886), + [sym_offsetof_expression] = STATE(3886), + [sym_generic_expression] = STATE(3886), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(3886), + [sym_extension_expression] = STATE(3886), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(3886), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(3775), + [sym_concatenated_string] = STATE(3775), + [sym_string_literal] = STATE(2596), + [sym_null] = STATE(3886), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7756), + [sym_dependent_type] = STATE(2558), + [sym_optional_parameter_declaration] = STATE(7389), + [sym_variadic_parameter_declaration] = STATE(7389), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(3886), + [sym_raw_string_literal] = STATE(2596), + [sym_co_await_expression] = STATE(3886), + [sym_new_expression] = STATE(3886), + [sym_delete_expression] = STATE(3886), + [sym_requires_clause] = STATE(3886), + [sym_requires_expression] = STATE(3886), + [sym_lambda_expression] = STATE(3886), + [sym_lambda_capture_specifier] = STATE(5492), + [sym__unary_left_fold] = STATE(8364), + [sym__unary_right_fold] = STATE(8365), + [sym__binary_fold] = STATE(8368), + [sym_fold_expression] = STATE(3886), + [sym_parameter_pack_expansion] = STATE(3886), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5749), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3059), + [sym_user_defined_literal] = STATE(3522), + [aux_sym__declaration_specifiers_repeat1] = STATE(2121), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(1884), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1788), + [anon_sym_RPAREN] = ACTIONS(1886), + [anon_sym_LPAREN2] = ACTIONS(1888), + [anon_sym_BANG] = ACTIONS(1890), + [anon_sym_TILDE] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1892), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(1896), + [anon_sym_virtual] = ACTIONS(1870), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(1880), + [anon_sym_COLON_COLON] = ACTIONS(1898), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1450), + [anon_sym_LBRACK] = ACTIONS(1266), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -62999,308 +63447,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(1882), - [anon_sym_enum] = ACTIONS(1884), - [anon_sym_class] = ACTIONS(1886), - [anon_sym_struct] = ACTIONS(1888), - [anon_sym_union] = ACTIONS(1890), - [anon_sym_not] = ACTIONS(1872), - [anon_sym_compl] = ACTIONS(1872), - [anon_sym_DASH_DASH] = ACTIONS(1892), - [anon_sym_PLUS_PLUS] = ACTIONS(1892), - [anon_sym_sizeof] = ACTIONS(1894), - [anon_sym___alignof__] = ACTIONS(1896), - [anon_sym___alignof] = ACTIONS(1896), - [anon_sym__alignof] = ACTIONS(1896), - [anon_sym_alignof] = ACTIONS(1896), - [anon_sym__Alignof] = ACTIONS(1896), - [anon_sym_offsetof] = ACTIONS(1898), - [anon_sym__Generic] = ACTIONS(1900), - [anon_sym_asm] = ACTIONS(1902), - [anon_sym___asm__] = ACTIONS(1902), - [anon_sym___asm] = ACTIONS(1902), - [sym_number_literal] = ACTIONS(1904), - [anon_sym_L_SQUOTE] = ACTIONS(1906), - [anon_sym_u_SQUOTE] = ACTIONS(1906), - [anon_sym_U_SQUOTE] = ACTIONS(1906), - [anon_sym_u8_SQUOTE] = ACTIONS(1906), - [anon_sym_SQUOTE] = ACTIONS(1906), - [anon_sym_L_DQUOTE] = ACTIONS(1908), - [anon_sym_u_DQUOTE] = ACTIONS(1908), - [anon_sym_U_DQUOTE] = ACTIONS(1908), - [anon_sym_u8_DQUOTE] = ACTIONS(1908), - [anon_sym_DQUOTE] = ACTIONS(1908), - [sym_true] = ACTIONS(1910), - [sym_false] = ACTIONS(1910), - [anon_sym_NULL] = ACTIONS(1912), - [anon_sym_nullptr] = ACTIONS(1912), + [sym_primitive_type] = ACTIONS(1900), + [anon_sym_enum] = ACTIONS(1874), + [anon_sym_class] = ACTIONS(1876), + [anon_sym_struct] = ACTIONS(1878), + [anon_sym_union] = ACTIONS(1880), + [anon_sym_not] = ACTIONS(1892), + [anon_sym_compl] = ACTIONS(1892), + [anon_sym_DASH_DASH] = ACTIONS(1902), + [anon_sym_PLUS_PLUS] = ACTIONS(1902), + [anon_sym_sizeof] = ACTIONS(1904), + [anon_sym___alignof__] = ACTIONS(1906), + [anon_sym___alignof] = ACTIONS(1906), + [anon_sym__alignof] = ACTIONS(1906), + [anon_sym_alignof] = ACTIONS(1906), + [anon_sym__Alignof] = ACTIONS(1906), + [anon_sym_offsetof] = ACTIONS(1908), + [anon_sym__Generic] = ACTIONS(1910), + [anon_sym_asm] = ACTIONS(1912), + [anon_sym___asm__] = ACTIONS(1912), + [anon_sym___asm] = ACTIONS(1912), + [sym_number_literal] = ACTIONS(1914), + [anon_sym_L_SQUOTE] = ACTIONS(1916), + [anon_sym_u_SQUOTE] = ACTIONS(1916), + [anon_sym_U_SQUOTE] = ACTIONS(1916), + [anon_sym_u8_SQUOTE] = ACTIONS(1916), + [anon_sym_SQUOTE] = ACTIONS(1916), + [anon_sym_L_DQUOTE] = ACTIONS(1918), + [anon_sym_u_DQUOTE] = ACTIONS(1918), + [anon_sym_U_DQUOTE] = ACTIONS(1918), + [anon_sym_u8_DQUOTE] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1918), + [sym_true] = ACTIONS(1920), + [sym_false] = ACTIONS(1920), + [anon_sym_NULL] = ACTIONS(1922), + [anon_sym_nullptr] = ACTIONS(1922), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(1914), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1916), - [anon_sym_R_DQUOTE] = ACTIONS(1918), - [anon_sym_LR_DQUOTE] = ACTIONS(1918), - [anon_sym_uR_DQUOTE] = ACTIONS(1918), - [anon_sym_UR_DQUOTE] = ACTIONS(1918), - [anon_sym_u8R_DQUOTE] = ACTIONS(1918), - [anon_sym_co_await] = ACTIONS(1920), - [anon_sym_new] = ACTIONS(1922), - [anon_sym_requires] = ACTIONS(1924), - [sym_this] = ACTIONS(1910), + [anon_sym_typename] = ACTIONS(1882), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1924), + [anon_sym_R_DQUOTE] = ACTIONS(1926), + [anon_sym_LR_DQUOTE] = ACTIONS(1926), + [anon_sym_uR_DQUOTE] = ACTIONS(1926), + [anon_sym_UR_DQUOTE] = ACTIONS(1926), + [anon_sym_u8R_DQUOTE] = ACTIONS(1926), + [anon_sym_co_await] = ACTIONS(1928), + [anon_sym_new] = ACTIONS(1930), + [anon_sym_requires] = ACTIONS(1932), + [sym_this] = ACTIONS(1920), }, - [133] = { - [sym__declaration_modifiers] = STATE(2061), - [sym__declaration_specifiers] = STATE(3966), - [sym_attribute_specifier] = STATE(2061), - [sym_attribute_declaration] = STATE(2061), - [sym_ms_declspec_modifier] = STATE(2061), - [sym_compound_statement] = STATE(7153), - [sym_storage_class_specifier] = STATE(2061), - [sym_type_qualifier] = STATE(2061), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_parameter_declaration] = STATE(7399), - [sym_expression] = STATE(4348), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_initializer_list] = STATE(7153), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_dependent_type] = STATE(2523), - [sym_optional_parameter_declaration] = STATE(7399), - [sym_variadic_parameter_declaration] = STATE(7399), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5775), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(3109), - [sym_user_defined_literal] = STATE(3242), - [aux_sym__declaration_specifiers_repeat1] = STATE(2061), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [sym_identifier] = ACTIONS(1926), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1928), - [anon_sym_RPAREN] = ACTIONS(1930), - [anon_sym_LPAREN2] = ACTIONS(1436), + [134] = { + [sym__declaration_modifiers] = STATE(2095), + [sym__declaration_specifiers] = STATE(5302), + [sym_attribute_specifier] = STATE(2095), + [sym_attribute_declaration] = STATE(2095), + [sym_ms_declspec_modifier] = STATE(2095), + [sym_storage_class_specifier] = STATE(2095), + [sym_type_qualifier] = STATE(2095), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_expression] = STATE(4509), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8147), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(7707), + [sym_dependent_type] = STATE(2558), + [sym_template_type] = STATE(3030), + [sym_template_function] = STATE(3898), + [sym_condition_declaration] = STATE(8147), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5721), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(3059), + [sym_user_defined_literal] = STATE(3323), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(1774), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), [anon_sym___extension__] = ACTIONS(1658), - [anon_sym_virtual] = ACTIONS(1878), + [anon_sym_virtual] = ACTIONS(1262), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), - [anon_sym_LBRACE] = ACTIONS(1932), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1450), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(1884), - [anon_sym_class] = ACTIONS(1886), - [anon_sym_struct] = ACTIONS(1888), - [anon_sym_union] = ACTIONS(1890), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(1914), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), - }, - [134] = { - [sym__declaration_modifiers] = STATE(2136), - [sym__declaration_specifiers] = STATE(5244), - [sym_attribute_specifier] = STATE(2136), - [sym_attribute_declaration] = STATE(2136), - [sym_ms_declspec_modifier] = STATE(2136), - [sym_storage_class_specifier] = STATE(2136), - [sym_type_qualifier] = STATE(2136), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_expression] = STATE(4470), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8444), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7608), - [sym_dependent_type] = STATE(2523), - [sym_template_type] = STATE(3103), - [sym_template_function] = STATE(3889), - [sym_condition_declaration] = STATE(8444), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5725), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(3109), - [sym_user_defined_literal] = STATE(3242), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [sym_identifier] = ACTIONS(1774), - [anon_sym_LPAREN2] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(1658), - [anon_sym_virtual] = ACTIONS(1446), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1450), + [anon_sym_LBRACK] = ACTIONS(1266), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -63362,7 +63645,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -63679,50 +63962,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(1940), }, [137] = { - [sym_expression] = STATE(2388), - [sym__string] = STATE(2870), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_initializer_list] = STATE(2441), - [sym_char_literal] = STATE(2870), - [sym_concatenated_string] = STATE(2870), - [sym_string_literal] = STATE(1942), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(1942), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), + [sym_expression] = STATE(2417), + [sym__string] = STATE(2887), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_initializer_list] = STATE(2488), + [sym_char_literal] = STATE(2887), + [sym_concatenated_string] = STATE(2887), + [sym_string_literal] = STATE(1947), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(1947), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), [sym_identifier] = ACTIONS(1942), [anon_sym_DOT_DOT_DOT] = ACTIONS(1944), [anon_sym_COMMA] = ACTIONS(1944), @@ -63814,7 +64097,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1976), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(1980), [anon_sym_R_DQUOTE] = ACTIONS(1982), [anon_sym_LR_DQUOTE] = ACTIONS(1982), @@ -63827,50 +64110,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(1974), }, [138] = { - [sym_expression] = STATE(2388), - [sym__string] = STATE(2950), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_initializer_list] = STATE(2441), - [sym_char_literal] = STATE(2950), - [sym_concatenated_string] = STATE(2950), - [sym_string_literal] = STATE(2034), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(2034), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), + [sym_expression] = STATE(2417), + [sym__string] = STATE(2917), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_initializer_list] = STATE(2488), + [sym_char_literal] = STATE(2917), + [sym_concatenated_string] = STATE(2917), + [sym_string_literal] = STATE(2114), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(2114), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), [sym_identifier] = ACTIONS(1990), [anon_sym_DOT_DOT_DOT] = ACTIONS(1944), [anon_sym_COMMA] = ACTIONS(1944), @@ -63961,7 +64244,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1976), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(2008), [anon_sym_R_DQUOTE] = ACTIONS(2010), [anon_sym_LR_DQUOTE] = ACTIONS(2010), @@ -63974,85 +64257,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(1974), }, [139] = { - [sym_compound_statement] = STATE(8409), - [sym_type_qualifier] = STATE(3904), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(4455), - [sym_sized_type_specifier] = STATE(1879), - [sym_enum_specifier] = STATE(1879), - [sym_struct_specifier] = STATE(1879), - [sym_union_specifier] = STATE(1879), - [sym_expression] = STATE(2919), - [sym__string] = STATE(3235), - [sym_comma_expression] = STATE(8409), - [sym_conditional_expression] = STATE(3373), - [sym_assignment_expression] = STATE(3373), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3373), - [sym_binary_expression] = STATE(3373), - [sym_update_expression] = STATE(3373), - [sym_cast_expression] = STATE(3373), - [sym_type_descriptor] = STATE(8691), - [sym_sizeof_expression] = STATE(3373), - [sym_alignof_expression] = STATE(3373), - [sym_offsetof_expression] = STATE(3373), - [sym_generic_expression] = STATE(3373), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3373), - [sym_extension_expression] = STATE(3373), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3373), - [sym_parenthesized_expression] = STATE(3365), - [sym_char_literal] = STATE(3235), - [sym_concatenated_string] = STATE(3235), - [sym_string_literal] = STATE(2358), - [sym_null] = STATE(3373), - [sym_placeholder_type_specifier] = STATE(1879), - [sym_decltype_auto] = STATE(1859), - [sym_decltype] = STATE(1713), - [sym_class_specifier] = STATE(1879), - [sym__class_name] = STATE(7814), - [sym_dependent_type] = STATE(1879), - [sym_template_type] = STATE(5285), - [sym_template_function] = STATE(3373), - [sym_raw_string_literal] = STATE(2358), - [sym_co_await_expression] = STATE(3373), - [sym_new_expression] = STATE(3373), - [sym_delete_expression] = STATE(3373), - [sym_requires_clause] = STATE(3373), - [sym_requires_expression] = STATE(3373), - [sym_lambda_expression] = STATE(3373), - [sym_lambda_capture_specifier] = STATE(5414), - [sym__unary_left_fold] = STATE(8699), - [sym__unary_right_fold] = STATE(8700), - [sym__binary_fold] = STATE(8703), - [sym_fold_expression] = STATE(3373), - [sym_parameter_pack_expansion] = STATE(3373), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5702), - [sym_qualified_identifier] = STATE(3365), - [sym_qualified_type_identifier] = STATE(5327), - [sym__assignment_expression_lhs] = STATE(8421), - [sym_user_defined_literal] = STATE(3365), - [aux_sym__type_definition_type_repeat1] = STATE(3904), - [aux_sym_sized_type_specifier_repeat1] = STATE(4209), + [sym_compound_statement] = STATE(8140), + [sym_type_qualifier] = STATE(3891), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(4528), + [sym_sized_type_specifier] = STATE(1890), + [sym_enum_specifier] = STATE(1890), + [sym_struct_specifier] = STATE(1890), + [sym_union_specifier] = STATE(1890), + [sym_expression] = STATE(2926), + [sym__string] = STATE(3393), + [sym_comma_expression] = STATE(8140), + [sym_conditional_expression] = STATE(3401), + [sym_assignment_expression] = STATE(3401), + [sym_pointer_expression] = STATE(3405), + [sym_unary_expression] = STATE(3401), + [sym_binary_expression] = STATE(3401), + [sym_update_expression] = STATE(3401), + [sym_cast_expression] = STATE(3401), + [sym_type_descriptor] = STATE(8130), + [sym_sizeof_expression] = STATE(3401), + [sym_alignof_expression] = STATE(3401), + [sym_offsetof_expression] = STATE(3401), + [sym_generic_expression] = STATE(3401), + [sym_subscript_expression] = STATE(3405), + [sym_call_expression] = STATE(3405), + [sym_gnu_asm_expression] = STATE(3401), + [sym_extension_expression] = STATE(3401), + [sym_field_expression] = STATE(3405), + [sym_compound_literal_expression] = STATE(3401), + [sym_parenthesized_expression] = STATE(3405), + [sym_char_literal] = STATE(3393), + [sym_concatenated_string] = STATE(3393), + [sym_string_literal] = STATE(2380), + [sym_null] = STATE(3401), + [sym_placeholder_type_specifier] = STATE(1890), + [sym_decltype_auto] = STATE(1888), + [sym_decltype] = STATE(1782), + [sym_class_specifier] = STATE(1890), + [sym__class_name] = STATE(7745), + [sym_dependent_type] = STATE(1890), + [sym_template_type] = STATE(5365), + [sym_template_function] = STATE(3401), + [sym_raw_string_literal] = STATE(2380), + [sym_co_await_expression] = STATE(3401), + [sym_new_expression] = STATE(3401), + [sym_delete_expression] = STATE(3401), + [sym_requires_clause] = STATE(3401), + [sym_requires_expression] = STATE(3401), + [sym_lambda_expression] = STATE(3401), + [sym_lambda_capture_specifier] = STATE(5494), + [sym__unary_left_fold] = STATE(8133), + [sym__unary_right_fold] = STATE(8142), + [sym__binary_fold] = STATE(8143), + [sym_fold_expression] = STATE(3401), + [sym_parameter_pack_expansion] = STATE(3401), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5846), + [sym_qualified_identifier] = STATE(3405), + [sym_qualified_type_identifier] = STATE(5382), + [sym__assignment_expression_lhs] = STATE(8172), + [sym_user_defined_literal] = STATE(3405), + [aux_sym__type_definition_type_repeat1] = STATE(3891), + [aux_sym_sized_type_specifier_repeat1] = STATE(4234), [sym_identifier] = ACTIONS(2016), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1790), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1788), [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(1804), - [anon_sym_COLON_COLON] = ACTIONS(1806), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1810), - [anon_sym_unsigned] = ACTIONS(1810), - [anon_sym_long] = ACTIONS(1810), - [anon_sym_short] = ACTIONS(1810), + [anon_sym_signed] = ACTIONS(1808), + [anon_sym_unsigned] = ACTIONS(1808), + [anon_sym_long] = ACTIONS(1808), + [anon_sym_short] = ACTIONS(1808), [anon_sym_LBRACK] = ACTIONS(2020), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), @@ -64068,429 +64351,283 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(1814), - [anon_sym_enum] = ACTIONS(1816), - [anon_sym_class] = ACTIONS(1818), - [anon_sym_struct] = ACTIONS(1820), - [anon_sym_union] = ACTIONS(1822), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1846), - [anon_sym_decltype] = ACTIONS(1848), - [anon_sym_typename] = ACTIONS(1850), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), + [sym_primitive_type] = ACTIONS(1812), + [anon_sym_enum] = ACTIONS(1814), + [anon_sym_class] = ACTIONS(1816), + [anon_sym_struct] = ACTIONS(1818), + [anon_sym_union] = ACTIONS(1820), + [anon_sym_not] = ACTIONS(1796), + [anon_sym_compl] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_sizeof] = ACTIONS(1824), + [anon_sym___alignof__] = ACTIONS(1826), + [anon_sym___alignof] = ACTIONS(1826), + [anon_sym__alignof] = ACTIONS(1826), + [anon_sym_alignof] = ACTIONS(1826), + [anon_sym__Alignof] = ACTIONS(1826), + [anon_sym_offsetof] = ACTIONS(1828), + [anon_sym__Generic] = ACTIONS(1830), + [anon_sym_asm] = ACTIONS(1832), + [anon_sym___asm__] = ACTIONS(1832), + [anon_sym___asm] = ACTIONS(1832), + [sym_number_literal] = ACTIONS(1834), + [anon_sym_L_SQUOTE] = ACTIONS(1836), + [anon_sym_u_SQUOTE] = ACTIONS(1836), + [anon_sym_U_SQUOTE] = ACTIONS(1836), + [anon_sym_u8_SQUOTE] = ACTIONS(1836), + [anon_sym_SQUOTE] = ACTIONS(1836), + [anon_sym_L_DQUOTE] = ACTIONS(1838), + [anon_sym_u_DQUOTE] = ACTIONS(1838), + [anon_sym_U_DQUOTE] = ACTIONS(1838), + [anon_sym_u8_DQUOTE] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym_true] = ACTIONS(1840), + [sym_false] = ACTIONS(1840), + [anon_sym_NULL] = ACTIONS(1842), + [anon_sym_nullptr] = ACTIONS(1842), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1844), + [anon_sym_decltype] = ACTIONS(1846), + [anon_sym_typename] = ACTIONS(1848), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1852), + [anon_sym_R_DQUOTE] = ACTIONS(1854), + [anon_sym_LR_DQUOTE] = ACTIONS(1854), + [anon_sym_uR_DQUOTE] = ACTIONS(1854), + [anon_sym_UR_DQUOTE] = ACTIONS(1854), + [anon_sym_u8R_DQUOTE] = ACTIONS(1854), + [anon_sym_co_await] = ACTIONS(1856), + [anon_sym_new] = ACTIONS(1858), + [anon_sym_requires] = ACTIONS(1860), + [sym_this] = ACTIONS(1840), }, [140] = { - [sym_attribute_declaration] = STATE(141), - [sym_compound_statement] = STATE(545), - [sym_attributed_statement] = STATE(545), - [sym_statement] = STATE(554), - [sym_labeled_statement] = STATE(545), - [sym_expression_statement] = STATE(545), - [sym_if_statement] = STATE(545), - [sym_switch_statement] = STATE(545), - [sym_case_statement] = STATE(545), - [sym_while_statement] = STATE(545), - [sym_do_statement] = STATE(545), - [sym_for_statement] = STATE(545), - [sym_return_statement] = STATE(545), - [sym_break_statement] = STATE(545), - [sym_continue_statement] = STATE(545), - [sym_goto_statement] = STATE(545), - [sym_seh_try_statement] = STATE(545), - [sym_seh_leave_statement] = STATE(545), - [sym_expression] = STATE(4457), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8711), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_for_range_loop] = STATE(545), - [sym_co_return_statement] = STATE(545), - [sym_co_yield_statement] = STATE(545), - [sym_throw_statement] = STATE(545), - [sym_try_statement] = STATE(545), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_attributed_declarator_repeat1] = STATE(141), + [sym_attribute_declaration] = STATE(140), + [sym_compound_statement] = STATE(560), + [sym_attributed_statement] = STATE(560), + [sym_statement] = STATE(568), + [sym_labeled_statement] = STATE(560), + [sym_expression_statement] = STATE(560), + [sym_if_statement] = STATE(560), + [sym_switch_statement] = STATE(560), + [sym_case_statement] = STATE(560), + [sym_while_statement] = STATE(560), + [sym_do_statement] = STATE(560), + [sym_for_statement] = STATE(560), + [sym_return_statement] = STATE(560), + [sym_break_statement] = STATE(560), + [sym_continue_statement] = STATE(560), + [sym_goto_statement] = STATE(560), + [sym_seh_try_statement] = STATE(560), + [sym_seh_leave_statement] = STATE(560), + [sym_expression] = STATE(4554), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8083), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_for_range_loop] = STATE(560), + [sym_co_return_statement] = STATE(560), + [sym_co_yield_statement] = STATE(560), + [sym_throw_statement] = STATE(560), + [sym_try_statement] = STATE(560), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_attributed_declarator_repeat1] = STATE(140), [sym_identifier] = ACTIONS(2022), - [anon_sym_LPAREN2] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(2024), - [anon_sym_using] = ACTIONS(2026), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), - [anon_sym_LBRACE] = ACTIONS(866), - [anon_sym_LBRACK] = ACTIONS(1450), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_if] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), - [anon_sym_case] = ACTIONS(203), - [anon_sym_default] = ACTIONS(205), - [anon_sym_while] = ACTIONS(207), - [anon_sym_do] = ACTIONS(209), - [anon_sym_for] = ACTIONS(211), - [anon_sym_return] = ACTIONS(213), - [anon_sym_break] = ACTIONS(215), - [anon_sym_continue] = ACTIONS(217), - [anon_sym_goto] = ACTIONS(219), - [anon_sym___try] = ACTIONS(221), - [anon_sym___leave] = ACTIONS(223), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_try] = ACTIONS(233), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(235), - [anon_sym_co_return] = ACTIONS(243), - [anon_sym_co_yield] = ACTIONS(245), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_LPAREN2] = ACTIONS(2025), + [anon_sym_BANG] = ACTIONS(2028), + [anon_sym_TILDE] = ACTIONS(2028), + [anon_sym_DASH] = ACTIONS(2031), + [anon_sym_PLUS] = ACTIONS(2031), + [anon_sym_STAR] = ACTIONS(2034), + [anon_sym_AMP] = ACTIONS(2034), + [anon_sym_SEMI] = ACTIONS(2037), + [anon_sym___extension__] = ACTIONS(2040), + [anon_sym_using] = ACTIONS(2043), + [anon_sym_COLON_COLON] = ACTIONS(2045), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2048), + [anon_sym_LBRACE] = ACTIONS(2051), + [anon_sym_LBRACK] = ACTIONS(2054), + [sym_primitive_type] = ACTIONS(2057), + [anon_sym_if] = ACTIONS(2060), + [anon_sym_switch] = ACTIONS(2063), + [anon_sym_case] = ACTIONS(2066), + [anon_sym_default] = ACTIONS(2069), + [anon_sym_while] = ACTIONS(2072), + [anon_sym_do] = ACTIONS(2075), + [anon_sym_for] = ACTIONS(2078), + [anon_sym_return] = ACTIONS(2081), + [anon_sym_break] = ACTIONS(2084), + [anon_sym_continue] = ACTIONS(2087), + [anon_sym_goto] = ACTIONS(2090), + [anon_sym___try] = ACTIONS(2093), + [anon_sym___leave] = ACTIONS(2096), + [anon_sym_not] = ACTIONS(2031), + [anon_sym_compl] = ACTIONS(2031), + [anon_sym_DASH_DASH] = ACTIONS(2099), + [anon_sym_PLUS_PLUS] = ACTIONS(2099), + [anon_sym_sizeof] = ACTIONS(2102), + [anon_sym___alignof__] = ACTIONS(2105), + [anon_sym___alignof] = ACTIONS(2105), + [anon_sym__alignof] = ACTIONS(2105), + [anon_sym_alignof] = ACTIONS(2105), + [anon_sym__Alignof] = ACTIONS(2105), + [anon_sym_offsetof] = ACTIONS(2108), + [anon_sym__Generic] = ACTIONS(2111), + [anon_sym_asm] = ACTIONS(2114), + [anon_sym___asm__] = ACTIONS(2114), + [anon_sym___asm] = ACTIONS(2114), + [sym_number_literal] = ACTIONS(2117), + [anon_sym_L_SQUOTE] = ACTIONS(2120), + [anon_sym_u_SQUOTE] = ACTIONS(2120), + [anon_sym_U_SQUOTE] = ACTIONS(2120), + [anon_sym_u8_SQUOTE] = ACTIONS(2120), + [anon_sym_SQUOTE] = ACTIONS(2120), + [anon_sym_L_DQUOTE] = ACTIONS(2123), + [anon_sym_u_DQUOTE] = ACTIONS(2123), + [anon_sym_U_DQUOTE] = ACTIONS(2123), + [anon_sym_u8_DQUOTE] = ACTIONS(2123), + [anon_sym_DQUOTE] = ACTIONS(2123), + [sym_true] = ACTIONS(2126), + [sym_false] = ACTIONS(2126), + [anon_sym_NULL] = ACTIONS(2129), + [anon_sym_nullptr] = ACTIONS(2129), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2132), + [anon_sym_template] = ACTIONS(2135), + [anon_sym_try] = ACTIONS(2138), + [anon_sym_delete] = ACTIONS(2141), + [anon_sym_throw] = ACTIONS(2144), + [anon_sym_co_return] = ACTIONS(2147), + [anon_sym_co_yield] = ACTIONS(2150), + [anon_sym_R_DQUOTE] = ACTIONS(2153), + [anon_sym_LR_DQUOTE] = ACTIONS(2153), + [anon_sym_uR_DQUOTE] = ACTIONS(2153), + [anon_sym_UR_DQUOTE] = ACTIONS(2153), + [anon_sym_u8R_DQUOTE] = ACTIONS(2153), + [anon_sym_co_await] = ACTIONS(2156), + [anon_sym_new] = ACTIONS(2159), + [anon_sym_requires] = ACTIONS(2162), + [sym_this] = ACTIONS(2126), }, [141] = { - [sym_attribute_declaration] = STATE(141), - [sym_compound_statement] = STATE(545), - [sym_attributed_statement] = STATE(545), - [sym_statement] = STATE(554), - [sym_labeled_statement] = STATE(545), - [sym_expression_statement] = STATE(545), - [sym_if_statement] = STATE(545), - [sym_switch_statement] = STATE(545), - [sym_case_statement] = STATE(545), - [sym_while_statement] = STATE(545), - [sym_do_statement] = STATE(545), - [sym_for_statement] = STATE(545), - [sym_return_statement] = STATE(545), - [sym_break_statement] = STATE(545), - [sym_continue_statement] = STATE(545), - [sym_goto_statement] = STATE(545), - [sym_seh_try_statement] = STATE(545), - [sym_seh_leave_statement] = STATE(545), - [sym_expression] = STATE(4457), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8711), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_for_range_loop] = STATE(545), - [sym_co_return_statement] = STATE(545), - [sym_co_yield_statement] = STATE(545), - [sym_throw_statement] = STATE(545), - [sym_try_statement] = STATE(545), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_attributed_declarator_repeat1] = STATE(141), - [sym_identifier] = ACTIONS(2030), - [anon_sym_LPAREN2] = ACTIONS(2033), - [anon_sym_BANG] = ACTIONS(2036), - [anon_sym_TILDE] = ACTIONS(2036), - [anon_sym_DASH] = ACTIONS(2039), - [anon_sym_PLUS] = ACTIONS(2039), - [anon_sym_STAR] = ACTIONS(2042), - [anon_sym_AMP] = ACTIONS(2042), - [anon_sym_SEMI] = ACTIONS(2045), - [anon_sym___extension__] = ACTIONS(2048), - [anon_sym_using] = ACTIONS(2051), - [anon_sym_COLON_COLON] = ACTIONS(2053), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2056), - [anon_sym_LBRACE] = ACTIONS(2059), - [anon_sym_LBRACK] = ACTIONS(2062), - [sym_primitive_type] = ACTIONS(2065), - [anon_sym_if] = ACTIONS(2068), - [anon_sym_switch] = ACTIONS(2071), - [anon_sym_case] = ACTIONS(2074), - [anon_sym_default] = ACTIONS(2077), - [anon_sym_while] = ACTIONS(2080), - [anon_sym_do] = ACTIONS(2083), - [anon_sym_for] = ACTIONS(2086), - [anon_sym_return] = ACTIONS(2089), - [anon_sym_break] = ACTIONS(2092), - [anon_sym_continue] = ACTIONS(2095), - [anon_sym_goto] = ACTIONS(2098), - [anon_sym___try] = ACTIONS(2101), - [anon_sym___leave] = ACTIONS(2104), - [anon_sym_not] = ACTIONS(2039), - [anon_sym_compl] = ACTIONS(2039), - [anon_sym_DASH_DASH] = ACTIONS(2107), - [anon_sym_PLUS_PLUS] = ACTIONS(2107), - [anon_sym_sizeof] = ACTIONS(2110), - [anon_sym___alignof__] = ACTIONS(2113), - [anon_sym___alignof] = ACTIONS(2113), - [anon_sym__alignof] = ACTIONS(2113), - [anon_sym_alignof] = ACTIONS(2113), - [anon_sym__Alignof] = ACTIONS(2113), - [anon_sym_offsetof] = ACTIONS(2116), - [anon_sym__Generic] = ACTIONS(2119), - [anon_sym_asm] = ACTIONS(2122), - [anon_sym___asm__] = ACTIONS(2122), - [anon_sym___asm] = ACTIONS(2122), - [sym_number_literal] = ACTIONS(2125), - [anon_sym_L_SQUOTE] = ACTIONS(2128), - [anon_sym_u_SQUOTE] = ACTIONS(2128), - [anon_sym_U_SQUOTE] = ACTIONS(2128), - [anon_sym_u8_SQUOTE] = ACTIONS(2128), - [anon_sym_SQUOTE] = ACTIONS(2128), - [anon_sym_L_DQUOTE] = ACTIONS(2131), - [anon_sym_u_DQUOTE] = ACTIONS(2131), - [anon_sym_U_DQUOTE] = ACTIONS(2131), - [anon_sym_u8_DQUOTE] = ACTIONS(2131), - [anon_sym_DQUOTE] = ACTIONS(2131), - [sym_true] = ACTIONS(2134), - [sym_false] = ACTIONS(2134), - [anon_sym_NULL] = ACTIONS(2137), - [anon_sym_nullptr] = ACTIONS(2137), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2140), - [anon_sym_template] = ACTIONS(2143), - [anon_sym_try] = ACTIONS(2146), - [anon_sym_delete] = ACTIONS(2149), - [anon_sym_throw] = ACTIONS(2152), - [anon_sym_co_return] = ACTIONS(2155), - [anon_sym_co_yield] = ACTIONS(2158), - [anon_sym_R_DQUOTE] = ACTIONS(2161), - [anon_sym_LR_DQUOTE] = ACTIONS(2161), - [anon_sym_uR_DQUOTE] = ACTIONS(2161), - [anon_sym_UR_DQUOTE] = ACTIONS(2161), - [anon_sym_u8R_DQUOTE] = ACTIONS(2161), - [anon_sym_co_await] = ACTIONS(2164), - [anon_sym_new] = ACTIONS(2167), - [anon_sym_requires] = ACTIONS(2170), - [sym_this] = ACTIONS(2134), - }, - [142] = { - [sym_compound_statement] = STATE(8409), - [sym_type_qualifier] = STATE(3904), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(4455), - [sym_sized_type_specifier] = STATE(1879), - [sym_enum_specifier] = STATE(1879), - [sym_struct_specifier] = STATE(1879), - [sym_union_specifier] = STATE(1879), - [sym_expression] = STATE(2919), - [sym__string] = STATE(3235), - [sym_comma_expression] = STATE(8409), - [sym_conditional_expression] = STATE(3373), - [sym_assignment_expression] = STATE(3373), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3373), - [sym_binary_expression] = STATE(3373), - [sym_update_expression] = STATE(3373), - [sym_cast_expression] = STATE(3373), - [sym_type_descriptor] = STATE(8413), - [sym_sizeof_expression] = STATE(3373), - [sym_alignof_expression] = STATE(3373), - [sym_offsetof_expression] = STATE(3373), - [sym_generic_expression] = STATE(3373), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3373), - [sym_extension_expression] = STATE(3373), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3373), - [sym_parenthesized_expression] = STATE(3365), - [sym_char_literal] = STATE(3235), - [sym_concatenated_string] = STATE(3235), - [sym_string_literal] = STATE(2358), - [sym_null] = STATE(3373), - [sym_placeholder_type_specifier] = STATE(1879), - [sym_decltype_auto] = STATE(1859), - [sym_decltype] = STATE(1713), - [sym_class_specifier] = STATE(1879), - [sym__class_name] = STATE(7814), - [sym_dependent_type] = STATE(1879), - [sym_template_type] = STATE(5285), - [sym_template_function] = STATE(3373), - [sym_raw_string_literal] = STATE(2358), - [sym_co_await_expression] = STATE(3373), - [sym_new_expression] = STATE(3373), - [sym_delete_expression] = STATE(3373), - [sym_requires_clause] = STATE(3373), - [sym_requires_expression] = STATE(3373), - [sym_lambda_expression] = STATE(3373), - [sym_lambda_capture_specifier] = STATE(5414), - [sym__unary_left_fold] = STATE(8414), - [sym__unary_right_fold] = STATE(8418), - [sym__binary_fold] = STATE(8419), - [sym_fold_expression] = STATE(3373), - [sym_parameter_pack_expansion] = STATE(3373), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5702), - [sym_qualified_identifier] = STATE(3365), - [sym_qualified_type_identifier] = STATE(5327), - [sym__assignment_expression_lhs] = STATE(8421), - [sym_user_defined_literal] = STATE(3365), - [aux_sym__type_definition_type_repeat1] = STATE(3904), - [aux_sym_sized_type_specifier_repeat1] = STATE(4209), + [sym_compound_statement] = STATE(8208), + [sym_type_qualifier] = STATE(3891), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(4528), + [sym_sized_type_specifier] = STATE(1890), + [sym_enum_specifier] = STATE(1890), + [sym_struct_specifier] = STATE(1890), + [sym_union_specifier] = STATE(1890), + [sym_expression] = STATE(2950), + [sym__string] = STATE(3393), + [sym_comma_expression] = STATE(8208), + [sym_conditional_expression] = STATE(3401), + [sym_assignment_expression] = STATE(3401), + [sym_pointer_expression] = STATE(3405), + [sym_unary_expression] = STATE(3401), + [sym_binary_expression] = STATE(3401), + [sym_update_expression] = STATE(3401), + [sym_cast_expression] = STATE(3401), + [sym_type_descriptor] = STATE(8347), + [sym_sizeof_expression] = STATE(3401), + [sym_alignof_expression] = STATE(3401), + [sym_offsetof_expression] = STATE(3401), + [sym_generic_expression] = STATE(3401), + [sym_subscript_expression] = STATE(3405), + [sym_call_expression] = STATE(3405), + [sym_gnu_asm_expression] = STATE(3401), + [sym_extension_expression] = STATE(3401), + [sym_field_expression] = STATE(3405), + [sym_compound_literal_expression] = STATE(3401), + [sym_parenthesized_expression] = STATE(3405), + [sym_char_literal] = STATE(3393), + [sym_concatenated_string] = STATE(3393), + [sym_string_literal] = STATE(2380), + [sym_null] = STATE(3401), + [sym_placeholder_type_specifier] = STATE(1890), + [sym_decltype_auto] = STATE(1888), + [sym_decltype] = STATE(1782), + [sym_class_specifier] = STATE(1890), + [sym__class_name] = STATE(7745), + [sym_dependent_type] = STATE(1890), + [sym_template_type] = STATE(5365), + [sym_template_function] = STATE(3401), + [sym_raw_string_literal] = STATE(2380), + [sym_co_await_expression] = STATE(3401), + [sym_new_expression] = STATE(3401), + [sym_delete_expression] = STATE(3401), + [sym_requires_clause] = STATE(3401), + [sym_requires_expression] = STATE(3401), + [sym_lambda_expression] = STATE(3401), + [sym_lambda_capture_specifier] = STATE(5494), + [sym__unary_left_fold] = STATE(8363), + [sym__unary_right_fold] = STATE(8370), + [sym__binary_fold] = STATE(8382), + [sym_fold_expression] = STATE(3401), + [sym_parameter_pack_expansion] = STATE(3401), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5846), + [sym_qualified_identifier] = STATE(3405), + [sym_qualified_type_identifier] = STATE(5382), + [sym__assignment_expression_lhs] = STATE(8529), + [sym_user_defined_literal] = STATE(3405), + [aux_sym__type_definition_type_repeat1] = STATE(3891), + [aux_sym_sized_type_specifier_repeat1] = STATE(4234), [sym_identifier] = ACTIONS(2016), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1790), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1788), [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(1804), - [anon_sym_COLON_COLON] = ACTIONS(1806), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1810), - [anon_sym_unsigned] = ACTIONS(1810), - [anon_sym_long] = ACTIONS(1810), - [anon_sym_short] = ACTIONS(1810), + [anon_sym_signed] = ACTIONS(1808), + [anon_sym_unsigned] = ACTIONS(1808), + [anon_sym_long] = ACTIONS(1808), + [anon_sym_short] = ACTIONS(1808), [anon_sym_LBRACK] = ACTIONS(2020), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), @@ -64506,137 +64643,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(1814), - [anon_sym_enum] = ACTIONS(1816), - [anon_sym_class] = ACTIONS(1818), - [anon_sym_struct] = ACTIONS(1820), - [anon_sym_union] = ACTIONS(1822), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1846), - [anon_sym_decltype] = ACTIONS(1848), - [anon_sym_typename] = ACTIONS(1850), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), + [sym_primitive_type] = ACTIONS(1812), + [anon_sym_enum] = ACTIONS(1814), + [anon_sym_class] = ACTIONS(1816), + [anon_sym_struct] = ACTIONS(1818), + [anon_sym_union] = ACTIONS(1820), + [anon_sym_not] = ACTIONS(1796), + [anon_sym_compl] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_sizeof] = ACTIONS(1824), + [anon_sym___alignof__] = ACTIONS(1826), + [anon_sym___alignof] = ACTIONS(1826), + [anon_sym__alignof] = ACTIONS(1826), + [anon_sym_alignof] = ACTIONS(1826), + [anon_sym__Alignof] = ACTIONS(1826), + [anon_sym_offsetof] = ACTIONS(1828), + [anon_sym__Generic] = ACTIONS(1830), + [anon_sym_asm] = ACTIONS(1832), + [anon_sym___asm__] = ACTIONS(1832), + [anon_sym___asm] = ACTIONS(1832), + [sym_number_literal] = ACTIONS(1834), + [anon_sym_L_SQUOTE] = ACTIONS(1836), + [anon_sym_u_SQUOTE] = ACTIONS(1836), + [anon_sym_U_SQUOTE] = ACTIONS(1836), + [anon_sym_u8_SQUOTE] = ACTIONS(1836), + [anon_sym_SQUOTE] = ACTIONS(1836), + [anon_sym_L_DQUOTE] = ACTIONS(1838), + [anon_sym_u_DQUOTE] = ACTIONS(1838), + [anon_sym_U_DQUOTE] = ACTIONS(1838), + [anon_sym_u8_DQUOTE] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym_true] = ACTIONS(1840), + [sym_false] = ACTIONS(1840), + [anon_sym_NULL] = ACTIONS(1842), + [anon_sym_nullptr] = ACTIONS(1842), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1844), + [anon_sym_decltype] = ACTIONS(1846), + [anon_sym_typename] = ACTIONS(1848), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1852), + [anon_sym_R_DQUOTE] = ACTIONS(1854), + [anon_sym_LR_DQUOTE] = ACTIONS(1854), + [anon_sym_uR_DQUOTE] = ACTIONS(1854), + [anon_sym_UR_DQUOTE] = ACTIONS(1854), + [anon_sym_u8R_DQUOTE] = ACTIONS(1854), + [anon_sym_co_await] = ACTIONS(1856), + [anon_sym_new] = ACTIONS(1858), + [anon_sym_requires] = ACTIONS(1860), + [sym_this] = ACTIONS(1840), }, - [143] = { - [sym_compound_statement] = STATE(8449), - [sym_type_qualifier] = STATE(3904), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(4455), - [sym_sized_type_specifier] = STATE(1879), - [sym_enum_specifier] = STATE(1879), - [sym_struct_specifier] = STATE(1879), - [sym_union_specifier] = STATE(1879), - [sym_expression] = STATE(2912), - [sym__string] = STATE(3235), - [sym_comma_expression] = STATE(8449), - [sym_conditional_expression] = STATE(3373), - [sym_assignment_expression] = STATE(3373), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3373), - [sym_binary_expression] = STATE(3373), - [sym_update_expression] = STATE(3373), - [sym_cast_expression] = STATE(3373), - [sym_type_descriptor] = STATE(8606), - [sym_sizeof_expression] = STATE(3373), - [sym_alignof_expression] = STATE(3373), - [sym_offsetof_expression] = STATE(3373), - [sym_generic_expression] = STATE(3373), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3373), - [sym_extension_expression] = STATE(3373), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3373), - [sym_parenthesized_expression] = STATE(3365), - [sym_char_literal] = STATE(3235), - [sym_concatenated_string] = STATE(3235), - [sym_string_literal] = STATE(2358), - [sym_null] = STATE(3373), - [sym_placeholder_type_specifier] = STATE(1879), - [sym_decltype_auto] = STATE(1859), - [sym_decltype] = STATE(1713), - [sym_class_specifier] = STATE(1879), - [sym__class_name] = STATE(7814), - [sym_dependent_type] = STATE(1879), - [sym_template_type] = STATE(5285), - [sym_template_function] = STATE(3373), - [sym_raw_string_literal] = STATE(2358), - [sym_co_await_expression] = STATE(3373), - [sym_new_expression] = STATE(3373), - [sym_delete_expression] = STATE(3373), - [sym_requires_clause] = STATE(3373), - [sym_requires_expression] = STATE(3373), - [sym_lambda_expression] = STATE(3373), - [sym_lambda_capture_specifier] = STATE(5414), - [sym__unary_left_fold] = STATE(8119), - [sym__unary_right_fold] = STATE(8280), - [sym__binary_fold] = STATE(7936), - [sym_fold_expression] = STATE(3373), - [sym_parameter_pack_expansion] = STATE(3373), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5702), - [sym_qualified_identifier] = STATE(3365), - [sym_qualified_type_identifier] = STATE(5327), - [sym__assignment_expression_lhs] = STATE(8569), - [sym_user_defined_literal] = STATE(3365), - [aux_sym__type_definition_type_repeat1] = STATE(3904), - [aux_sym_sized_type_specifier_repeat1] = STATE(4209), + [142] = { + [sym_compound_statement] = STATE(8208), + [sym_type_qualifier] = STATE(3891), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(4528), + [sym_sized_type_specifier] = STATE(1890), + [sym_enum_specifier] = STATE(1890), + [sym_struct_specifier] = STATE(1890), + [sym_union_specifier] = STATE(1890), + [sym_expression] = STATE(2950), + [sym__string] = STATE(3393), + [sym_comma_expression] = STATE(8208), + [sym_conditional_expression] = STATE(3401), + [sym_assignment_expression] = STATE(3401), + [sym_pointer_expression] = STATE(3405), + [sym_unary_expression] = STATE(3401), + [sym_binary_expression] = STATE(3401), + [sym_update_expression] = STATE(3401), + [sym_cast_expression] = STATE(3401), + [sym_type_descriptor] = STATE(8761), + [sym_sizeof_expression] = STATE(3401), + [sym_alignof_expression] = STATE(3401), + [sym_offsetof_expression] = STATE(3401), + [sym_generic_expression] = STATE(3401), + [sym_subscript_expression] = STATE(3405), + [sym_call_expression] = STATE(3405), + [sym_gnu_asm_expression] = STATE(3401), + [sym_extension_expression] = STATE(3401), + [sym_field_expression] = STATE(3405), + [sym_compound_literal_expression] = STATE(3401), + [sym_parenthesized_expression] = STATE(3405), + [sym_char_literal] = STATE(3393), + [sym_concatenated_string] = STATE(3393), + [sym_string_literal] = STATE(2380), + [sym_null] = STATE(3401), + [sym_placeholder_type_specifier] = STATE(1890), + [sym_decltype_auto] = STATE(1888), + [sym_decltype] = STATE(1782), + [sym_class_specifier] = STATE(1890), + [sym__class_name] = STATE(7745), + [sym_dependent_type] = STATE(1890), + [sym_template_type] = STATE(5365), + [sym_template_function] = STATE(3401), + [sym_raw_string_literal] = STATE(2380), + [sym_co_await_expression] = STATE(3401), + [sym_new_expression] = STATE(3401), + [sym_delete_expression] = STATE(3401), + [sym_requires_clause] = STATE(3401), + [sym_requires_expression] = STATE(3401), + [sym_lambda_expression] = STATE(3401), + [sym_lambda_capture_specifier] = STATE(5494), + [sym__unary_left_fold] = STATE(8363), + [sym__unary_right_fold] = STATE(8370), + [sym__binary_fold] = STATE(8382), + [sym_fold_expression] = STATE(3401), + [sym_parameter_pack_expansion] = STATE(3401), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5846), + [sym_qualified_identifier] = STATE(3405), + [sym_qualified_type_identifier] = STATE(5382), + [sym__assignment_expression_lhs] = STATE(8529), + [sym_user_defined_literal] = STATE(3405), + [aux_sym__type_definition_type_repeat1] = STATE(3891), + [aux_sym_sized_type_specifier_repeat1] = STATE(4234), [sym_identifier] = ACTIONS(2016), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1790), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1788), [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(1804), - [anon_sym_COLON_COLON] = ACTIONS(1806), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1810), - [anon_sym_unsigned] = ACTIONS(1810), - [anon_sym_long] = ACTIONS(1810), - [anon_sym_short] = ACTIONS(1810), + [anon_sym_signed] = ACTIONS(1808), + [anon_sym_unsigned] = ACTIONS(1808), + [anon_sym_long] = ACTIONS(1808), + [anon_sym_short] = ACTIONS(1808), [anon_sym_LBRACK] = ACTIONS(2020), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), @@ -64652,137 +64789,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(1814), - [anon_sym_enum] = ACTIONS(1816), - [anon_sym_class] = ACTIONS(1818), - [anon_sym_struct] = ACTIONS(1820), - [anon_sym_union] = ACTIONS(1822), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1846), - [anon_sym_decltype] = ACTIONS(1848), - [anon_sym_typename] = ACTIONS(1850), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), + [sym_primitive_type] = ACTIONS(1812), + [anon_sym_enum] = ACTIONS(1814), + [anon_sym_class] = ACTIONS(1816), + [anon_sym_struct] = ACTIONS(1818), + [anon_sym_union] = ACTIONS(1820), + [anon_sym_not] = ACTIONS(1796), + [anon_sym_compl] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_sizeof] = ACTIONS(1824), + [anon_sym___alignof__] = ACTIONS(1826), + [anon_sym___alignof] = ACTIONS(1826), + [anon_sym__alignof] = ACTIONS(1826), + [anon_sym_alignof] = ACTIONS(1826), + [anon_sym__Alignof] = ACTIONS(1826), + [anon_sym_offsetof] = ACTIONS(1828), + [anon_sym__Generic] = ACTIONS(1830), + [anon_sym_asm] = ACTIONS(1832), + [anon_sym___asm__] = ACTIONS(1832), + [anon_sym___asm] = ACTIONS(1832), + [sym_number_literal] = ACTIONS(1834), + [anon_sym_L_SQUOTE] = ACTIONS(1836), + [anon_sym_u_SQUOTE] = ACTIONS(1836), + [anon_sym_U_SQUOTE] = ACTIONS(1836), + [anon_sym_u8_SQUOTE] = ACTIONS(1836), + [anon_sym_SQUOTE] = ACTIONS(1836), + [anon_sym_L_DQUOTE] = ACTIONS(1838), + [anon_sym_u_DQUOTE] = ACTIONS(1838), + [anon_sym_U_DQUOTE] = ACTIONS(1838), + [anon_sym_u8_DQUOTE] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym_true] = ACTIONS(1840), + [sym_false] = ACTIONS(1840), + [anon_sym_NULL] = ACTIONS(1842), + [anon_sym_nullptr] = ACTIONS(1842), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1844), + [anon_sym_decltype] = ACTIONS(1846), + [anon_sym_typename] = ACTIONS(1848), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1852), + [anon_sym_R_DQUOTE] = ACTIONS(1854), + [anon_sym_LR_DQUOTE] = ACTIONS(1854), + [anon_sym_uR_DQUOTE] = ACTIONS(1854), + [anon_sym_UR_DQUOTE] = ACTIONS(1854), + [anon_sym_u8R_DQUOTE] = ACTIONS(1854), + [anon_sym_co_await] = ACTIONS(1856), + [anon_sym_new] = ACTIONS(1858), + [anon_sym_requires] = ACTIONS(1860), + [sym_this] = ACTIONS(1840), }, - [144] = { - [sym_compound_statement] = STATE(8409), - [sym_type_qualifier] = STATE(3904), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(4455), - [sym_sized_type_specifier] = STATE(1879), - [sym_enum_specifier] = STATE(1879), - [sym_struct_specifier] = STATE(1879), - [sym_union_specifier] = STATE(1879), - [sym_expression] = STATE(2919), - [sym__string] = STATE(3235), - [sym_comma_expression] = STATE(8409), - [sym_conditional_expression] = STATE(3373), - [sym_assignment_expression] = STATE(3373), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3373), - [sym_binary_expression] = STATE(3373), - [sym_update_expression] = STATE(3373), - [sym_cast_expression] = STATE(3373), - [sym_type_descriptor] = STATE(8763), - [sym_sizeof_expression] = STATE(3373), - [sym_alignof_expression] = STATE(3373), - [sym_offsetof_expression] = STATE(3373), - [sym_generic_expression] = STATE(3373), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3373), - [sym_extension_expression] = STATE(3373), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3373), - [sym_parenthesized_expression] = STATE(3365), - [sym_char_literal] = STATE(3235), - [sym_concatenated_string] = STATE(3235), - [sym_string_literal] = STATE(2358), - [sym_null] = STATE(3373), - [sym_placeholder_type_specifier] = STATE(1879), - [sym_decltype_auto] = STATE(1859), - [sym_decltype] = STATE(1713), - [sym_class_specifier] = STATE(1879), - [sym__class_name] = STATE(7814), - [sym_dependent_type] = STATE(1879), - [sym_template_type] = STATE(5285), - [sym_template_function] = STATE(3373), - [sym_raw_string_literal] = STATE(2358), - [sym_co_await_expression] = STATE(3373), - [sym_new_expression] = STATE(3373), - [sym_delete_expression] = STATE(3373), - [sym_requires_clause] = STATE(3373), - [sym_requires_expression] = STATE(3373), - [sym_lambda_expression] = STATE(3373), - [sym_lambda_capture_specifier] = STATE(5414), - [sym__unary_left_fold] = STATE(8414), - [sym__unary_right_fold] = STATE(8418), - [sym__binary_fold] = STATE(8419), - [sym_fold_expression] = STATE(3373), - [sym_parameter_pack_expansion] = STATE(3373), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5702), - [sym_qualified_identifier] = STATE(3365), - [sym_qualified_type_identifier] = STATE(5327), - [sym__assignment_expression_lhs] = STATE(8421), - [sym_user_defined_literal] = STATE(3365), - [aux_sym__type_definition_type_repeat1] = STATE(3904), - [aux_sym_sized_type_specifier_repeat1] = STATE(4209), + [143] = { + [sym_compound_statement] = STATE(8629), + [sym_type_qualifier] = STATE(3891), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(4528), + [sym_sized_type_specifier] = STATE(1890), + [sym_enum_specifier] = STATE(1890), + [sym_struct_specifier] = STATE(1890), + [sym_union_specifier] = STATE(1890), + [sym_expression] = STATE(2991), + [sym__string] = STATE(3393), + [sym_comma_expression] = STATE(8629), + [sym_conditional_expression] = STATE(3401), + [sym_assignment_expression] = STATE(3401), + [sym_pointer_expression] = STATE(3405), + [sym_unary_expression] = STATE(3401), + [sym_binary_expression] = STATE(3401), + [sym_update_expression] = STATE(3401), + [sym_cast_expression] = STATE(3401), + [sym_type_descriptor] = STATE(8558), + [sym_sizeof_expression] = STATE(3401), + [sym_alignof_expression] = STATE(3401), + [sym_offsetof_expression] = STATE(3401), + [sym_generic_expression] = STATE(3401), + [sym_subscript_expression] = STATE(3405), + [sym_call_expression] = STATE(3405), + [sym_gnu_asm_expression] = STATE(3401), + [sym_extension_expression] = STATE(3401), + [sym_field_expression] = STATE(3405), + [sym_compound_literal_expression] = STATE(3401), + [sym_parenthesized_expression] = STATE(3405), + [sym_char_literal] = STATE(3393), + [sym_concatenated_string] = STATE(3393), + [sym_string_literal] = STATE(2380), + [sym_null] = STATE(3401), + [sym_placeholder_type_specifier] = STATE(1890), + [sym_decltype_auto] = STATE(1888), + [sym_decltype] = STATE(1782), + [sym_class_specifier] = STATE(1890), + [sym__class_name] = STATE(7745), + [sym_dependent_type] = STATE(1890), + [sym_template_type] = STATE(5365), + [sym_template_function] = STATE(3401), + [sym_raw_string_literal] = STATE(2380), + [sym_co_await_expression] = STATE(3401), + [sym_new_expression] = STATE(3401), + [sym_delete_expression] = STATE(3401), + [sym_requires_clause] = STATE(3401), + [sym_requires_expression] = STATE(3401), + [sym_lambda_expression] = STATE(3401), + [sym_lambda_capture_specifier] = STATE(5494), + [sym__unary_left_fold] = STATE(8716), + [sym__unary_right_fold] = STATE(8742), + [sym__binary_fold] = STATE(8824), + [sym_fold_expression] = STATE(3401), + [sym_parameter_pack_expansion] = STATE(3401), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5846), + [sym_qualified_identifier] = STATE(3405), + [sym_qualified_type_identifier] = STATE(5382), + [sym__assignment_expression_lhs] = STATE(8390), + [sym_user_defined_literal] = STATE(3405), + [aux_sym__type_definition_type_repeat1] = STATE(3891), + [aux_sym_sized_type_specifier_repeat1] = STATE(4234), [sym_identifier] = ACTIONS(2016), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1790), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1788), [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(1804), - [anon_sym_COLON_COLON] = ACTIONS(1806), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1810), - [anon_sym_unsigned] = ACTIONS(1810), - [anon_sym_long] = ACTIONS(1810), - [anon_sym_short] = ACTIONS(1810), + [anon_sym_signed] = ACTIONS(1808), + [anon_sym_unsigned] = ACTIONS(1808), + [anon_sym_long] = ACTIONS(1808), + [anon_sym_short] = ACTIONS(1808), [anon_sym_LBRACK] = ACTIONS(2020), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), @@ -64798,142 +64935,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(1814), - [anon_sym_enum] = ACTIONS(1816), - [anon_sym_class] = ACTIONS(1818), - [anon_sym_struct] = ACTIONS(1820), - [anon_sym_union] = ACTIONS(1822), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1846), - [anon_sym_decltype] = ACTIONS(1848), - [anon_sym_typename] = ACTIONS(1850), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), + [sym_primitive_type] = ACTIONS(1812), + [anon_sym_enum] = ACTIONS(1814), + [anon_sym_class] = ACTIONS(1816), + [anon_sym_struct] = ACTIONS(1818), + [anon_sym_union] = ACTIONS(1820), + [anon_sym_not] = ACTIONS(1796), + [anon_sym_compl] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_sizeof] = ACTIONS(1824), + [anon_sym___alignof__] = ACTIONS(1826), + [anon_sym___alignof] = ACTIONS(1826), + [anon_sym__alignof] = ACTIONS(1826), + [anon_sym_alignof] = ACTIONS(1826), + [anon_sym__Alignof] = ACTIONS(1826), + [anon_sym_offsetof] = ACTIONS(1828), + [anon_sym__Generic] = ACTIONS(1830), + [anon_sym_asm] = ACTIONS(1832), + [anon_sym___asm__] = ACTIONS(1832), + [anon_sym___asm] = ACTIONS(1832), + [sym_number_literal] = ACTIONS(1834), + [anon_sym_L_SQUOTE] = ACTIONS(1836), + [anon_sym_u_SQUOTE] = ACTIONS(1836), + [anon_sym_U_SQUOTE] = ACTIONS(1836), + [anon_sym_u8_SQUOTE] = ACTIONS(1836), + [anon_sym_SQUOTE] = ACTIONS(1836), + [anon_sym_L_DQUOTE] = ACTIONS(1838), + [anon_sym_u_DQUOTE] = ACTIONS(1838), + [anon_sym_U_DQUOTE] = ACTIONS(1838), + [anon_sym_u8_DQUOTE] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym_true] = ACTIONS(1840), + [sym_false] = ACTIONS(1840), + [anon_sym_NULL] = ACTIONS(1842), + [anon_sym_nullptr] = ACTIONS(1842), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1844), + [anon_sym_decltype] = ACTIONS(1846), + [anon_sym_typename] = ACTIONS(1848), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1852), + [anon_sym_R_DQUOTE] = ACTIONS(1854), + [anon_sym_LR_DQUOTE] = ACTIONS(1854), + [anon_sym_uR_DQUOTE] = ACTIONS(1854), + [anon_sym_UR_DQUOTE] = ACTIONS(1854), + [anon_sym_u8R_DQUOTE] = ACTIONS(1854), + [anon_sym_co_await] = ACTIONS(1856), + [anon_sym_new] = ACTIONS(1858), + [anon_sym_requires] = ACTIONS(1860), + [sym_this] = ACTIONS(1840), }, - [145] = { - [sym_attribute_declaration] = STATE(164), - [sym_compound_statement] = STATE(401), - [sym_attributed_statement] = STATE(401), - [sym_statement] = STATE(343), - [sym_labeled_statement] = STATE(401), - [sym_expression_statement] = STATE(401), - [sym_if_statement] = STATE(401), - [sym_switch_statement] = STATE(401), - [sym_case_statement] = STATE(401), - [sym_while_statement] = STATE(401), - [sym_do_statement] = STATE(401), - [sym_for_statement] = STATE(401), - [sym_return_statement] = STATE(401), - [sym_break_statement] = STATE(401), - [sym_continue_statement] = STATE(401), - [sym_goto_statement] = STATE(401), - [sym_seh_try_statement] = STATE(401), - [sym_seh_leave_statement] = STATE(401), - [sym_expression] = STATE(4552), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8450), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_for_range_loop] = STATE(401), - [sym_co_return_statement] = STATE(401), - [sym_co_yield_statement] = STATE(401), - [sym_throw_statement] = STATE(401), - [sym_try_statement] = STATE(401), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_attributed_declarator_repeat1] = STATE(164), - [sym_identifier] = ACTIONS(2173), - [anon_sym_LPAREN2] = ACTIONS(1436), + [144] = { + [sym_attribute_declaration] = STATE(170), + [sym_compound_statement] = STATE(409), + [sym_attributed_statement] = STATE(409), + [sym_statement] = STATE(348), + [sym_labeled_statement] = STATE(409), + [sym_expression_statement] = STATE(409), + [sym_if_statement] = STATE(409), + [sym_switch_statement] = STATE(409), + [sym_case_statement] = STATE(409), + [sym_while_statement] = STATE(409), + [sym_do_statement] = STATE(409), + [sym_for_statement] = STATE(409), + [sym_return_statement] = STATE(409), + [sym_break_statement] = STATE(409), + [sym_continue_statement] = STATE(409), + [sym_goto_statement] = STATE(409), + [sym_seh_try_statement] = STATE(409), + [sym_seh_leave_statement] = STATE(409), + [sym_expression] = STATE(4499), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8264), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_for_range_loop] = STATE(409), + [sym_co_return_statement] = STATE(409), + [sym_co_yield_statement] = STATE(409), + [sym_throw_statement] = STATE(409), + [sym_try_statement] = STATE(409), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_attributed_declarator_repeat1] = STATE(170), + [sym_identifier] = ACTIONS(2165), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(1194), - [anon_sym___extension__] = ACTIONS(2024), - [anon_sym_using] = ACTIONS(2175), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(1212), + [anon_sym___extension__] = ACTIONS(2167), + [anon_sym_using] = ACTIONS(2169), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1450), - [sym_primitive_type] = ACTIONS(2028), + [anon_sym_LBRACK] = ACTIONS(1266), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_if] = ACTIONS(81), [anon_sym_switch] = ACTIONS(83), [anon_sym_case] = ACTIONS(85), @@ -64945,8 +65082,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(97), [anon_sym_continue] = ACTIONS(99), [anon_sym_goto] = ACTIONS(101), - [anon_sym___try] = ACTIONS(1198), - [anon_sym___leave] = ACTIONS(1200), + [anon_sym___try] = ACTIONS(1216), + [anon_sym___leave] = ACTIONS(1218), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -64979,7 +65116,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_try] = ACTIONS(143), [anon_sym_delete] = ACTIONS(145), [anon_sym_throw] = ACTIONS(147), @@ -64995,237 +65132,237 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [146] = { - [sym_attribute_declaration] = STATE(146), - [sym_compound_statement] = STATE(279), - [sym_attributed_statement] = STATE(279), - [sym_statement] = STATE(247), - [sym_labeled_statement] = STATE(279), - [sym_expression_statement] = STATE(279), - [sym_if_statement] = STATE(279), - [sym_switch_statement] = STATE(279), - [sym_case_statement] = STATE(279), - [sym_while_statement] = STATE(279), - [sym_do_statement] = STATE(279), - [sym_for_statement] = STATE(279), - [sym_return_statement] = STATE(279), - [sym_break_statement] = STATE(279), - [sym_continue_statement] = STATE(279), - [sym_goto_statement] = STATE(279), - [sym_seh_try_statement] = STATE(279), - [sym_seh_leave_statement] = STATE(279), - [sym_expression] = STATE(4493), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8429), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_for_range_loop] = STATE(279), - [sym_co_return_statement] = STATE(279), - [sym_co_yield_statement] = STATE(279), - [sym_throw_statement] = STATE(279), - [sym_try_statement] = STATE(279), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_attributed_declarator_repeat1] = STATE(146), - [sym_identifier] = ACTIONS(2177), - [anon_sym_LPAREN2] = ACTIONS(2033), - [anon_sym_BANG] = ACTIONS(2036), - [anon_sym_TILDE] = ACTIONS(2036), - [anon_sym_DASH] = ACTIONS(2039), - [anon_sym_PLUS] = ACTIONS(2039), - [anon_sym_STAR] = ACTIONS(2042), - [anon_sym_AMP] = ACTIONS(2042), - [anon_sym_SEMI] = ACTIONS(2180), - [anon_sym___extension__] = ACTIONS(2048), - [anon_sym_using] = ACTIONS(2051), - [anon_sym_COLON_COLON] = ACTIONS(2053), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2056), - [anon_sym_LBRACE] = ACTIONS(2183), - [anon_sym_LBRACK] = ACTIONS(2062), - [sym_primitive_type] = ACTIONS(2065), - [anon_sym_if] = ACTIONS(2186), - [anon_sym_switch] = ACTIONS(2189), - [anon_sym_case] = ACTIONS(2192), - [anon_sym_default] = ACTIONS(2195), - [anon_sym_while] = ACTIONS(2198), - [anon_sym_do] = ACTIONS(2201), - [anon_sym_for] = ACTIONS(2204), - [anon_sym_return] = ACTIONS(2207), - [anon_sym_break] = ACTIONS(2210), - [anon_sym_continue] = ACTIONS(2213), - [anon_sym_goto] = ACTIONS(2216), - [anon_sym___try] = ACTIONS(2219), - [anon_sym___leave] = ACTIONS(2222), - [anon_sym_not] = ACTIONS(2039), - [anon_sym_compl] = ACTIONS(2039), - [anon_sym_DASH_DASH] = ACTIONS(2107), - [anon_sym_PLUS_PLUS] = ACTIONS(2107), - [anon_sym_sizeof] = ACTIONS(2110), - [anon_sym___alignof__] = ACTIONS(2113), - [anon_sym___alignof] = ACTIONS(2113), - [anon_sym__alignof] = ACTIONS(2113), - [anon_sym_alignof] = ACTIONS(2113), - [anon_sym__Alignof] = ACTIONS(2113), - [anon_sym_offsetof] = ACTIONS(2116), - [anon_sym__Generic] = ACTIONS(2119), - [anon_sym_asm] = ACTIONS(2122), - [anon_sym___asm__] = ACTIONS(2122), - [anon_sym___asm] = ACTIONS(2122), - [sym_number_literal] = ACTIONS(2125), - [anon_sym_L_SQUOTE] = ACTIONS(2128), - [anon_sym_u_SQUOTE] = ACTIONS(2128), - [anon_sym_U_SQUOTE] = ACTIONS(2128), - [anon_sym_u8_SQUOTE] = ACTIONS(2128), - [anon_sym_SQUOTE] = ACTIONS(2128), - [anon_sym_L_DQUOTE] = ACTIONS(2131), - [anon_sym_u_DQUOTE] = ACTIONS(2131), - [anon_sym_U_DQUOTE] = ACTIONS(2131), - [anon_sym_u8_DQUOTE] = ACTIONS(2131), - [anon_sym_DQUOTE] = ACTIONS(2131), - [sym_true] = ACTIONS(2134), - [sym_false] = ACTIONS(2134), - [anon_sym_NULL] = ACTIONS(2137), - [anon_sym_nullptr] = ACTIONS(2137), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2140), - [anon_sym_template] = ACTIONS(2143), - [anon_sym_try] = ACTIONS(2225), - [anon_sym_delete] = ACTIONS(2149), - [anon_sym_throw] = ACTIONS(2228), - [anon_sym_co_return] = ACTIONS(2231), - [anon_sym_co_yield] = ACTIONS(2234), - [anon_sym_R_DQUOTE] = ACTIONS(2161), - [anon_sym_LR_DQUOTE] = ACTIONS(2161), - [anon_sym_uR_DQUOTE] = ACTIONS(2161), - [anon_sym_UR_DQUOTE] = ACTIONS(2161), - [anon_sym_u8R_DQUOTE] = ACTIONS(2161), - [anon_sym_co_await] = ACTIONS(2164), - [anon_sym_new] = ACTIONS(2167), - [anon_sym_requires] = ACTIONS(2170), - [sym_this] = ACTIONS(2134), + [145] = { + [sym_attribute_declaration] = STATE(145), + [sym_compound_statement] = STATE(260), + [sym_attributed_statement] = STATE(260), + [sym_statement] = STATE(259), + [sym_labeled_statement] = STATE(260), + [sym_expression_statement] = STATE(260), + [sym_if_statement] = STATE(260), + [sym_switch_statement] = STATE(260), + [sym_case_statement] = STATE(260), + [sym_while_statement] = STATE(260), + [sym_do_statement] = STATE(260), + [sym_for_statement] = STATE(260), + [sym_return_statement] = STATE(260), + [sym_break_statement] = STATE(260), + [sym_continue_statement] = STATE(260), + [sym_goto_statement] = STATE(260), + [sym_seh_try_statement] = STATE(260), + [sym_seh_leave_statement] = STATE(260), + [sym_expression] = STATE(4517), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8280), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_for_range_loop] = STATE(260), + [sym_co_return_statement] = STATE(260), + [sym_co_yield_statement] = STATE(260), + [sym_throw_statement] = STATE(260), + [sym_try_statement] = STATE(260), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_attributed_declarator_repeat1] = STATE(145), + [sym_identifier] = ACTIONS(2173), + [anon_sym_LPAREN2] = ACTIONS(2025), + [anon_sym_BANG] = ACTIONS(2028), + [anon_sym_TILDE] = ACTIONS(2028), + [anon_sym_DASH] = ACTIONS(2031), + [anon_sym_PLUS] = ACTIONS(2031), + [anon_sym_STAR] = ACTIONS(2034), + [anon_sym_AMP] = ACTIONS(2034), + [anon_sym_SEMI] = ACTIONS(2176), + [anon_sym___extension__] = ACTIONS(2040), + [anon_sym_using] = ACTIONS(2043), + [anon_sym_COLON_COLON] = ACTIONS(2045), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2048), + [anon_sym_LBRACE] = ACTIONS(2179), + [anon_sym_LBRACK] = ACTIONS(2054), + [sym_primitive_type] = ACTIONS(2057), + [anon_sym_if] = ACTIONS(2182), + [anon_sym_switch] = ACTIONS(2185), + [anon_sym_case] = ACTIONS(2188), + [anon_sym_default] = ACTIONS(2191), + [anon_sym_while] = ACTIONS(2194), + [anon_sym_do] = ACTIONS(2197), + [anon_sym_for] = ACTIONS(2200), + [anon_sym_return] = ACTIONS(2203), + [anon_sym_break] = ACTIONS(2206), + [anon_sym_continue] = ACTIONS(2209), + [anon_sym_goto] = ACTIONS(2212), + [anon_sym___try] = ACTIONS(2215), + [anon_sym___leave] = ACTIONS(2218), + [anon_sym_not] = ACTIONS(2031), + [anon_sym_compl] = ACTIONS(2031), + [anon_sym_DASH_DASH] = ACTIONS(2099), + [anon_sym_PLUS_PLUS] = ACTIONS(2099), + [anon_sym_sizeof] = ACTIONS(2102), + [anon_sym___alignof__] = ACTIONS(2105), + [anon_sym___alignof] = ACTIONS(2105), + [anon_sym__alignof] = ACTIONS(2105), + [anon_sym_alignof] = ACTIONS(2105), + [anon_sym__Alignof] = ACTIONS(2105), + [anon_sym_offsetof] = ACTIONS(2108), + [anon_sym__Generic] = ACTIONS(2111), + [anon_sym_asm] = ACTIONS(2114), + [anon_sym___asm__] = ACTIONS(2114), + [anon_sym___asm] = ACTIONS(2114), + [sym_number_literal] = ACTIONS(2117), + [anon_sym_L_SQUOTE] = ACTIONS(2120), + [anon_sym_u_SQUOTE] = ACTIONS(2120), + [anon_sym_U_SQUOTE] = ACTIONS(2120), + [anon_sym_u8_SQUOTE] = ACTIONS(2120), + [anon_sym_SQUOTE] = ACTIONS(2120), + [anon_sym_L_DQUOTE] = ACTIONS(2123), + [anon_sym_u_DQUOTE] = ACTIONS(2123), + [anon_sym_U_DQUOTE] = ACTIONS(2123), + [anon_sym_u8_DQUOTE] = ACTIONS(2123), + [anon_sym_DQUOTE] = ACTIONS(2123), + [sym_true] = ACTIONS(2126), + [sym_false] = ACTIONS(2126), + [anon_sym_NULL] = ACTIONS(2129), + [anon_sym_nullptr] = ACTIONS(2129), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2132), + [anon_sym_template] = ACTIONS(2135), + [anon_sym_try] = ACTIONS(2221), + [anon_sym_delete] = ACTIONS(2141), + [anon_sym_throw] = ACTIONS(2224), + [anon_sym_co_return] = ACTIONS(2227), + [anon_sym_co_yield] = ACTIONS(2230), + [anon_sym_R_DQUOTE] = ACTIONS(2153), + [anon_sym_LR_DQUOTE] = ACTIONS(2153), + [anon_sym_uR_DQUOTE] = ACTIONS(2153), + [anon_sym_UR_DQUOTE] = ACTIONS(2153), + [anon_sym_u8R_DQUOTE] = ACTIONS(2153), + [anon_sym_co_await] = ACTIONS(2156), + [anon_sym_new] = ACTIONS(2159), + [anon_sym_requires] = ACTIONS(2162), + [sym_this] = ACTIONS(2126), }, - [147] = { - [sym_attribute_declaration] = STATE(146), - [sym_compound_statement] = STATE(279), - [sym_attributed_statement] = STATE(279), - [sym_statement] = STATE(247), - [sym_labeled_statement] = STATE(279), - [sym_expression_statement] = STATE(279), - [sym_if_statement] = STATE(279), - [sym_switch_statement] = STATE(279), - [sym_case_statement] = STATE(279), - [sym_while_statement] = STATE(279), - [sym_do_statement] = STATE(279), - [sym_for_statement] = STATE(279), - [sym_return_statement] = STATE(279), - [sym_break_statement] = STATE(279), - [sym_continue_statement] = STATE(279), - [sym_goto_statement] = STATE(279), - [sym_seh_try_statement] = STATE(279), - [sym_seh_leave_statement] = STATE(279), - [sym_expression] = STATE(4493), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8429), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_for_range_loop] = STATE(279), - [sym_co_return_statement] = STATE(279), - [sym_co_yield_statement] = STATE(279), - [sym_throw_statement] = STATE(279), - [sym_try_statement] = STATE(279), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_attributed_declarator_repeat1] = STATE(146), - [sym_identifier] = ACTIONS(2237), - [anon_sym_LPAREN2] = ACTIONS(1436), + [146] = { + [sym_attribute_declaration] = STATE(145), + [sym_compound_statement] = STATE(260), + [sym_attributed_statement] = STATE(260), + [sym_statement] = STATE(259), + [sym_labeled_statement] = STATE(260), + [sym_expression_statement] = STATE(260), + [sym_if_statement] = STATE(260), + [sym_switch_statement] = STATE(260), + [sym_case_statement] = STATE(260), + [sym_while_statement] = STATE(260), + [sym_do_statement] = STATE(260), + [sym_for_statement] = STATE(260), + [sym_return_statement] = STATE(260), + [sym_break_statement] = STATE(260), + [sym_continue_statement] = STATE(260), + [sym_goto_statement] = STATE(260), + [sym_seh_try_statement] = STATE(260), + [sym_seh_leave_statement] = STATE(260), + [sym_expression] = STATE(4517), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8280), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_for_range_loop] = STATE(260), + [sym_co_return_statement] = STATE(260), + [sym_co_yield_statement] = STATE(260), + [sym_throw_statement] = STATE(260), + [sym_try_statement] = STATE(260), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_attributed_declarator_repeat1] = STATE(145), + [sym_identifier] = ACTIONS(2233), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), [anon_sym_SEMI] = ACTIONS(287), - [anon_sym___extension__] = ACTIONS(2024), - [anon_sym_using] = ACTIONS(2239), + [anon_sym___extension__] = ACTIONS(2167), + [anon_sym_using] = ACTIONS(2235), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), [anon_sym_LBRACE] = ACTIONS(297), - [anon_sym_LBRACK] = ACTIONS(1450), - [sym_primitive_type] = ACTIONS(2028), + [anon_sym_LBRACK] = ACTIONS(1266), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_if] = ACTIONS(301), [anon_sym_switch] = ACTIONS(303), [anon_sym_case] = ACTIONS(305), @@ -65271,7 +65408,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_try] = ACTIONS(329), [anon_sym_delete] = ACTIONS(145), [anon_sym_throw] = ACTIONS(331), @@ -65287,86 +65424,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [148] = { - [sym_compound_statement] = STATE(8449), - [sym_type_qualifier] = STATE(3904), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(4455), - [sym_sized_type_specifier] = STATE(1879), - [sym_enum_specifier] = STATE(1879), - [sym_struct_specifier] = STATE(1879), - [sym_union_specifier] = STATE(1879), - [sym_expression] = STATE(2912), - [sym__string] = STATE(3235), - [sym_comma_expression] = STATE(8449), - [sym_conditional_expression] = STATE(3373), - [sym_assignment_expression] = STATE(3373), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3373), - [sym_binary_expression] = STATE(3373), - [sym_update_expression] = STATE(3373), - [sym_cast_expression] = STATE(3373), - [sym_type_descriptor] = STATE(8230), - [sym_sizeof_expression] = STATE(3373), - [sym_alignof_expression] = STATE(3373), - [sym_offsetof_expression] = STATE(3373), - [sym_generic_expression] = STATE(3373), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3373), - [sym_extension_expression] = STATE(3373), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3373), - [sym_parenthesized_expression] = STATE(3365), - [sym_char_literal] = STATE(3235), - [sym_concatenated_string] = STATE(3235), - [sym_string_literal] = STATE(2358), - [sym_null] = STATE(3373), - [sym_placeholder_type_specifier] = STATE(1879), - [sym_decltype_auto] = STATE(1859), - [sym_decltype] = STATE(1713), - [sym_class_specifier] = STATE(1879), - [sym__class_name] = STATE(7814), - [sym_dependent_type] = STATE(1879), - [sym_template_type] = STATE(5285), - [sym_template_function] = STATE(3373), - [sym_raw_string_literal] = STATE(2358), - [sym_co_await_expression] = STATE(3373), - [sym_new_expression] = STATE(3373), - [sym_delete_expression] = STATE(3373), - [sym_requires_clause] = STATE(3373), - [sym_requires_expression] = STATE(3373), - [sym_lambda_expression] = STATE(3373), - [sym_lambda_capture_specifier] = STATE(5414), - [sym__unary_left_fold] = STATE(8232), - [sym__unary_right_fold] = STATE(8236), - [sym__binary_fold] = STATE(8240), - [sym_fold_expression] = STATE(3373), - [sym_parameter_pack_expansion] = STATE(3373), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5702), - [sym_qualified_identifier] = STATE(3365), - [sym_qualified_type_identifier] = STATE(5327), - [sym__assignment_expression_lhs] = STATE(8569), - [sym_user_defined_literal] = STATE(3365), - [aux_sym__type_definition_type_repeat1] = STATE(3904), - [aux_sym_sized_type_specifier_repeat1] = STATE(4209), + [147] = { + [sym_compound_statement] = STATE(8629), + [sym_type_qualifier] = STATE(3891), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(4528), + [sym_sized_type_specifier] = STATE(1890), + [sym_enum_specifier] = STATE(1890), + [sym_struct_specifier] = STATE(1890), + [sym_union_specifier] = STATE(1890), + [sym_expression] = STATE(2991), + [sym__string] = STATE(3393), + [sym_comma_expression] = STATE(8629), + [sym_conditional_expression] = STATE(3401), + [sym_assignment_expression] = STATE(3401), + [sym_pointer_expression] = STATE(3405), + [sym_unary_expression] = STATE(3401), + [sym_binary_expression] = STATE(3401), + [sym_update_expression] = STATE(3401), + [sym_cast_expression] = STATE(3401), + [sym_type_descriptor] = STATE(8148), + [sym_sizeof_expression] = STATE(3401), + [sym_alignof_expression] = STATE(3401), + [sym_offsetof_expression] = STATE(3401), + [sym_generic_expression] = STATE(3401), + [sym_subscript_expression] = STATE(3405), + [sym_call_expression] = STATE(3405), + [sym_gnu_asm_expression] = STATE(3401), + [sym_extension_expression] = STATE(3401), + [sym_field_expression] = STATE(3405), + [sym_compound_literal_expression] = STATE(3401), + [sym_parenthesized_expression] = STATE(3405), + [sym_char_literal] = STATE(3393), + [sym_concatenated_string] = STATE(3393), + [sym_string_literal] = STATE(2380), + [sym_null] = STATE(3401), + [sym_placeholder_type_specifier] = STATE(1890), + [sym_decltype_auto] = STATE(1888), + [sym_decltype] = STATE(1782), + [sym_class_specifier] = STATE(1890), + [sym__class_name] = STATE(7745), + [sym_dependent_type] = STATE(1890), + [sym_template_type] = STATE(5365), + [sym_template_function] = STATE(3401), + [sym_raw_string_literal] = STATE(2380), + [sym_co_await_expression] = STATE(3401), + [sym_new_expression] = STATE(3401), + [sym_delete_expression] = STATE(3401), + [sym_requires_clause] = STATE(3401), + [sym_requires_expression] = STATE(3401), + [sym_lambda_expression] = STATE(3401), + [sym_lambda_capture_specifier] = STATE(5494), + [sym__unary_left_fold] = STATE(8151), + [sym__unary_right_fold] = STATE(8158), + [sym__binary_fold] = STATE(8170), + [sym_fold_expression] = STATE(3401), + [sym_parameter_pack_expansion] = STATE(3401), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5846), + [sym_qualified_identifier] = STATE(3405), + [sym_qualified_type_identifier] = STATE(5382), + [sym__assignment_expression_lhs] = STATE(8390), + [sym_user_defined_literal] = STATE(3405), + [aux_sym__type_definition_type_repeat1] = STATE(3891), + [aux_sym_sized_type_specifier_repeat1] = STATE(4234), [sym_identifier] = ACTIONS(2016), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1790), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1788), [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(1804), - [anon_sym_COLON_COLON] = ACTIONS(1806), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1810), - [anon_sym_unsigned] = ACTIONS(1810), - [anon_sym_long] = ACTIONS(1810), - [anon_sym_short] = ACTIONS(1810), + [anon_sym_signed] = ACTIONS(1808), + [anon_sym_unsigned] = ACTIONS(1808), + [anon_sym_long] = ACTIONS(1808), + [anon_sym_short] = ACTIONS(1808), [anon_sym_LBRACK] = ACTIONS(2020), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), @@ -65382,137 +65519,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(1814), - [anon_sym_enum] = ACTIONS(1816), - [anon_sym_class] = ACTIONS(1818), - [anon_sym_struct] = ACTIONS(1820), - [anon_sym_union] = ACTIONS(1822), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1846), - [anon_sym_decltype] = ACTIONS(1848), - [anon_sym_typename] = ACTIONS(1850), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), + [sym_primitive_type] = ACTIONS(1812), + [anon_sym_enum] = ACTIONS(1814), + [anon_sym_class] = ACTIONS(1816), + [anon_sym_struct] = ACTIONS(1818), + [anon_sym_union] = ACTIONS(1820), + [anon_sym_not] = ACTIONS(1796), + [anon_sym_compl] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_sizeof] = ACTIONS(1824), + [anon_sym___alignof__] = ACTIONS(1826), + [anon_sym___alignof] = ACTIONS(1826), + [anon_sym__alignof] = ACTIONS(1826), + [anon_sym_alignof] = ACTIONS(1826), + [anon_sym__Alignof] = ACTIONS(1826), + [anon_sym_offsetof] = ACTIONS(1828), + [anon_sym__Generic] = ACTIONS(1830), + [anon_sym_asm] = ACTIONS(1832), + [anon_sym___asm__] = ACTIONS(1832), + [anon_sym___asm] = ACTIONS(1832), + [sym_number_literal] = ACTIONS(1834), + [anon_sym_L_SQUOTE] = ACTIONS(1836), + [anon_sym_u_SQUOTE] = ACTIONS(1836), + [anon_sym_U_SQUOTE] = ACTIONS(1836), + [anon_sym_u8_SQUOTE] = ACTIONS(1836), + [anon_sym_SQUOTE] = ACTIONS(1836), + [anon_sym_L_DQUOTE] = ACTIONS(1838), + [anon_sym_u_DQUOTE] = ACTIONS(1838), + [anon_sym_U_DQUOTE] = ACTIONS(1838), + [anon_sym_u8_DQUOTE] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym_true] = ACTIONS(1840), + [sym_false] = ACTIONS(1840), + [anon_sym_NULL] = ACTIONS(1842), + [anon_sym_nullptr] = ACTIONS(1842), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1844), + [anon_sym_decltype] = ACTIONS(1846), + [anon_sym_typename] = ACTIONS(1848), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1852), + [anon_sym_R_DQUOTE] = ACTIONS(1854), + [anon_sym_LR_DQUOTE] = ACTIONS(1854), + [anon_sym_uR_DQUOTE] = ACTIONS(1854), + [anon_sym_UR_DQUOTE] = ACTIONS(1854), + [anon_sym_u8R_DQUOTE] = ACTIONS(1854), + [anon_sym_co_await] = ACTIONS(1856), + [anon_sym_new] = ACTIONS(1858), + [anon_sym_requires] = ACTIONS(1860), + [sym_this] = ACTIONS(1840), }, - [149] = { - [sym_compound_statement] = STATE(8449), - [sym_type_qualifier] = STATE(3904), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(4455), - [sym_sized_type_specifier] = STATE(1879), - [sym_enum_specifier] = STATE(1879), - [sym_struct_specifier] = STATE(1879), - [sym_union_specifier] = STATE(1879), - [sym_expression] = STATE(2912), - [sym__string] = STATE(3235), - [sym_comma_expression] = STATE(8449), - [sym_conditional_expression] = STATE(3373), - [sym_assignment_expression] = STATE(3373), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3373), - [sym_binary_expression] = STATE(3373), - [sym_update_expression] = STATE(3373), - [sym_cast_expression] = STATE(3373), - [sym_type_descriptor] = STATE(8317), - [sym_sizeof_expression] = STATE(3373), - [sym_alignof_expression] = STATE(3373), - [sym_offsetof_expression] = STATE(3373), - [sym_generic_expression] = STATE(3373), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3373), - [sym_extension_expression] = STATE(3373), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3373), - [sym_parenthesized_expression] = STATE(3365), - [sym_char_literal] = STATE(3235), - [sym_concatenated_string] = STATE(3235), - [sym_string_literal] = STATE(2358), - [sym_null] = STATE(3373), - [sym_placeholder_type_specifier] = STATE(1879), - [sym_decltype_auto] = STATE(1859), - [sym_decltype] = STATE(1713), - [sym_class_specifier] = STATE(1879), - [sym__class_name] = STATE(7814), - [sym_dependent_type] = STATE(1879), - [sym_template_type] = STATE(5285), - [sym_template_function] = STATE(3373), - [sym_raw_string_literal] = STATE(2358), - [sym_co_await_expression] = STATE(3373), - [sym_new_expression] = STATE(3373), - [sym_delete_expression] = STATE(3373), - [sym_requires_clause] = STATE(3373), - [sym_requires_expression] = STATE(3373), - [sym_lambda_expression] = STATE(3373), - [sym_lambda_capture_specifier] = STATE(5414), - [sym__unary_left_fold] = STATE(8232), - [sym__unary_right_fold] = STATE(8236), - [sym__binary_fold] = STATE(8240), - [sym_fold_expression] = STATE(3373), - [sym_parameter_pack_expansion] = STATE(3373), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5702), - [sym_qualified_identifier] = STATE(3365), - [sym_qualified_type_identifier] = STATE(5327), - [sym__assignment_expression_lhs] = STATE(8569), - [sym_user_defined_literal] = STATE(3365), - [aux_sym__type_definition_type_repeat1] = STATE(3904), - [aux_sym_sized_type_specifier_repeat1] = STATE(4209), + [148] = { + [sym_compound_statement] = STATE(8629), + [sym_type_qualifier] = STATE(3891), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(4528), + [sym_sized_type_specifier] = STATE(1890), + [sym_enum_specifier] = STATE(1890), + [sym_struct_specifier] = STATE(1890), + [sym_union_specifier] = STATE(1890), + [sym_expression] = STATE(2991), + [sym__string] = STATE(3393), + [sym_comma_expression] = STATE(8629), + [sym_conditional_expression] = STATE(3401), + [sym_assignment_expression] = STATE(3401), + [sym_pointer_expression] = STATE(3405), + [sym_unary_expression] = STATE(3401), + [sym_binary_expression] = STATE(3401), + [sym_update_expression] = STATE(3401), + [sym_cast_expression] = STATE(3401), + [sym_type_descriptor] = STATE(8304), + [sym_sizeof_expression] = STATE(3401), + [sym_alignof_expression] = STATE(3401), + [sym_offsetof_expression] = STATE(3401), + [sym_generic_expression] = STATE(3401), + [sym_subscript_expression] = STATE(3405), + [sym_call_expression] = STATE(3405), + [sym_gnu_asm_expression] = STATE(3401), + [sym_extension_expression] = STATE(3401), + [sym_field_expression] = STATE(3405), + [sym_compound_literal_expression] = STATE(3401), + [sym_parenthesized_expression] = STATE(3405), + [sym_char_literal] = STATE(3393), + [sym_concatenated_string] = STATE(3393), + [sym_string_literal] = STATE(2380), + [sym_null] = STATE(3401), + [sym_placeholder_type_specifier] = STATE(1890), + [sym_decltype_auto] = STATE(1888), + [sym_decltype] = STATE(1782), + [sym_class_specifier] = STATE(1890), + [sym__class_name] = STATE(7745), + [sym_dependent_type] = STATE(1890), + [sym_template_type] = STATE(5365), + [sym_template_function] = STATE(3401), + [sym_raw_string_literal] = STATE(2380), + [sym_co_await_expression] = STATE(3401), + [sym_new_expression] = STATE(3401), + [sym_delete_expression] = STATE(3401), + [sym_requires_clause] = STATE(3401), + [sym_requires_expression] = STATE(3401), + [sym_lambda_expression] = STATE(3401), + [sym_lambda_capture_specifier] = STATE(5494), + [sym__unary_left_fold] = STATE(8151), + [sym__unary_right_fold] = STATE(8158), + [sym__binary_fold] = STATE(8170), + [sym_fold_expression] = STATE(3401), + [sym_parameter_pack_expansion] = STATE(3401), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5846), + [sym_qualified_identifier] = STATE(3405), + [sym_qualified_type_identifier] = STATE(5382), + [sym__assignment_expression_lhs] = STATE(8390), + [sym_user_defined_literal] = STATE(3405), + [aux_sym__type_definition_type_repeat1] = STATE(3891), + [aux_sym_sized_type_specifier_repeat1] = STATE(4234), [sym_identifier] = ACTIONS(2016), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1790), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1788), [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(1804), - [anon_sym_COLON_COLON] = ACTIONS(1806), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1810), - [anon_sym_unsigned] = ACTIONS(1810), - [anon_sym_long] = ACTIONS(1810), - [anon_sym_short] = ACTIONS(1810), + [anon_sym_signed] = ACTIONS(1808), + [anon_sym_unsigned] = ACTIONS(1808), + [anon_sym_long] = ACTIONS(1808), + [anon_sym_short] = ACTIONS(1808), [anon_sym_LBRACK] = ACTIONS(2020), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), @@ -65528,288 +65665,288 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(1814), - [anon_sym_enum] = ACTIONS(1816), - [anon_sym_class] = ACTIONS(1818), - [anon_sym_struct] = ACTIONS(1820), - [anon_sym_union] = ACTIONS(1822), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1846), - [anon_sym_decltype] = ACTIONS(1848), - [anon_sym_typename] = ACTIONS(1850), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), + [sym_primitive_type] = ACTIONS(1812), + [anon_sym_enum] = ACTIONS(1814), + [anon_sym_class] = ACTIONS(1816), + [anon_sym_struct] = ACTIONS(1818), + [anon_sym_union] = ACTIONS(1820), + [anon_sym_not] = ACTIONS(1796), + [anon_sym_compl] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_sizeof] = ACTIONS(1824), + [anon_sym___alignof__] = ACTIONS(1826), + [anon_sym___alignof] = ACTIONS(1826), + [anon_sym__alignof] = ACTIONS(1826), + [anon_sym_alignof] = ACTIONS(1826), + [anon_sym__Alignof] = ACTIONS(1826), + [anon_sym_offsetof] = ACTIONS(1828), + [anon_sym__Generic] = ACTIONS(1830), + [anon_sym_asm] = ACTIONS(1832), + [anon_sym___asm__] = ACTIONS(1832), + [anon_sym___asm] = ACTIONS(1832), + [sym_number_literal] = ACTIONS(1834), + [anon_sym_L_SQUOTE] = ACTIONS(1836), + [anon_sym_u_SQUOTE] = ACTIONS(1836), + [anon_sym_U_SQUOTE] = ACTIONS(1836), + [anon_sym_u8_SQUOTE] = ACTIONS(1836), + [anon_sym_SQUOTE] = ACTIONS(1836), + [anon_sym_L_DQUOTE] = ACTIONS(1838), + [anon_sym_u_DQUOTE] = ACTIONS(1838), + [anon_sym_U_DQUOTE] = ACTIONS(1838), + [anon_sym_u8_DQUOTE] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym_true] = ACTIONS(1840), + [sym_false] = ACTIONS(1840), + [anon_sym_NULL] = ACTIONS(1842), + [anon_sym_nullptr] = ACTIONS(1842), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1844), + [anon_sym_decltype] = ACTIONS(1846), + [anon_sym_typename] = ACTIONS(1848), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1852), + [anon_sym_R_DQUOTE] = ACTIONS(1854), + [anon_sym_LR_DQUOTE] = ACTIONS(1854), + [anon_sym_uR_DQUOTE] = ACTIONS(1854), + [anon_sym_UR_DQUOTE] = ACTIONS(1854), + [anon_sym_u8R_DQUOTE] = ACTIONS(1854), + [anon_sym_co_await] = ACTIONS(1856), + [anon_sym_new] = ACTIONS(1858), + [anon_sym_requires] = ACTIONS(1860), + [sym_this] = ACTIONS(1840), }, - [150] = { - [sym_attribute_declaration] = STATE(150), - [sym_compound_statement] = STATE(529), - [sym_attributed_statement] = STATE(529), - [sym_statement] = STATE(542), - [sym_labeled_statement] = STATE(529), - [sym_expression_statement] = STATE(529), - [sym_if_statement] = STATE(529), - [sym_switch_statement] = STATE(529), - [sym_case_statement] = STATE(529), - [sym_while_statement] = STATE(529), - [sym_do_statement] = STATE(529), - [sym_for_statement] = STATE(529), - [sym_return_statement] = STATE(529), - [sym_break_statement] = STATE(529), - [sym_continue_statement] = STATE(529), - [sym_goto_statement] = STATE(529), - [sym_seh_try_statement] = STATE(529), - [sym_seh_leave_statement] = STATE(529), - [sym_expression] = STATE(4500), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8311), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_for_range_loop] = STATE(529), - [sym_co_return_statement] = STATE(529), - [sym_co_yield_statement] = STATE(529), - [sym_throw_statement] = STATE(529), - [sym_try_statement] = STATE(529), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_attributed_declarator_repeat1] = STATE(150), - [sym_identifier] = ACTIONS(2241), - [anon_sym_LPAREN2] = ACTIONS(2033), - [anon_sym_BANG] = ACTIONS(2036), - [anon_sym_TILDE] = ACTIONS(2036), - [anon_sym_DASH] = ACTIONS(2039), - [anon_sym_PLUS] = ACTIONS(2039), - [anon_sym_STAR] = ACTIONS(2042), - [anon_sym_AMP] = ACTIONS(2042), - [anon_sym_SEMI] = ACTIONS(2244), - [anon_sym___extension__] = ACTIONS(2048), - [anon_sym_using] = ACTIONS(2051), - [anon_sym_COLON_COLON] = ACTIONS(2053), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2056), - [anon_sym_LBRACE] = ACTIONS(2247), - [anon_sym_LBRACK] = ACTIONS(2062), - [sym_primitive_type] = ACTIONS(2065), - [anon_sym_if] = ACTIONS(2250), - [anon_sym_switch] = ACTIONS(2253), - [anon_sym_case] = ACTIONS(2256), - [anon_sym_default] = ACTIONS(2259), - [anon_sym_while] = ACTIONS(2262), - [anon_sym_do] = ACTIONS(2265), - [anon_sym_for] = ACTIONS(2268), - [anon_sym_return] = ACTIONS(2271), - [anon_sym_break] = ACTIONS(2274), - [anon_sym_continue] = ACTIONS(2277), - [anon_sym_goto] = ACTIONS(2280), - [anon_sym___try] = ACTIONS(2283), - [anon_sym___leave] = ACTIONS(2286), - [anon_sym_not] = ACTIONS(2039), - [anon_sym_compl] = ACTIONS(2039), - [anon_sym_DASH_DASH] = ACTIONS(2107), - [anon_sym_PLUS_PLUS] = ACTIONS(2107), - [anon_sym_sizeof] = ACTIONS(2110), - [anon_sym___alignof__] = ACTIONS(2113), - [anon_sym___alignof] = ACTIONS(2113), - [anon_sym__alignof] = ACTIONS(2113), - [anon_sym_alignof] = ACTIONS(2113), - [anon_sym__Alignof] = ACTIONS(2113), - [anon_sym_offsetof] = ACTIONS(2116), - [anon_sym__Generic] = ACTIONS(2119), - [anon_sym_asm] = ACTIONS(2122), - [anon_sym___asm__] = ACTIONS(2122), - [anon_sym___asm] = ACTIONS(2122), - [sym_number_literal] = ACTIONS(2125), - [anon_sym_L_SQUOTE] = ACTIONS(2128), - [anon_sym_u_SQUOTE] = ACTIONS(2128), - [anon_sym_U_SQUOTE] = ACTIONS(2128), - [anon_sym_u8_SQUOTE] = ACTIONS(2128), - [anon_sym_SQUOTE] = ACTIONS(2128), - [anon_sym_L_DQUOTE] = ACTIONS(2131), - [anon_sym_u_DQUOTE] = ACTIONS(2131), - [anon_sym_U_DQUOTE] = ACTIONS(2131), - [anon_sym_u8_DQUOTE] = ACTIONS(2131), - [anon_sym_DQUOTE] = ACTIONS(2131), - [sym_true] = ACTIONS(2134), - [sym_false] = ACTIONS(2134), - [anon_sym_NULL] = ACTIONS(2137), - [anon_sym_nullptr] = ACTIONS(2137), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2140), - [anon_sym_template] = ACTIONS(2143), - [anon_sym_try] = ACTIONS(2289), - [anon_sym_delete] = ACTIONS(2149), - [anon_sym_throw] = ACTIONS(2292), - [anon_sym_co_return] = ACTIONS(2295), - [anon_sym_co_yield] = ACTIONS(2298), - [anon_sym_R_DQUOTE] = ACTIONS(2161), - [anon_sym_LR_DQUOTE] = ACTIONS(2161), - [anon_sym_uR_DQUOTE] = ACTIONS(2161), - [anon_sym_UR_DQUOTE] = ACTIONS(2161), - [anon_sym_u8R_DQUOTE] = ACTIONS(2161), - [anon_sym_co_await] = ACTIONS(2164), - [anon_sym_new] = ACTIONS(2167), - [anon_sym_requires] = ACTIONS(2170), - [sym_this] = ACTIONS(2134), + [149] = { + [sym_attribute_declaration] = STATE(149), + [sym_compound_statement] = STATE(513), + [sym_attributed_statement] = STATE(513), + [sym_statement] = STATE(537), + [sym_labeled_statement] = STATE(513), + [sym_expression_statement] = STATE(513), + [sym_if_statement] = STATE(513), + [sym_switch_statement] = STATE(513), + [sym_case_statement] = STATE(513), + [sym_while_statement] = STATE(513), + [sym_do_statement] = STATE(513), + [sym_for_statement] = STATE(513), + [sym_return_statement] = STATE(513), + [sym_break_statement] = STATE(513), + [sym_continue_statement] = STATE(513), + [sym_goto_statement] = STATE(513), + [sym_seh_try_statement] = STATE(513), + [sym_seh_leave_statement] = STATE(513), + [sym_expression] = STATE(4531), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8444), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_for_range_loop] = STATE(513), + [sym_co_return_statement] = STATE(513), + [sym_co_yield_statement] = STATE(513), + [sym_throw_statement] = STATE(513), + [sym_try_statement] = STATE(513), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_attributed_declarator_repeat1] = STATE(149), + [sym_identifier] = ACTIONS(2237), + [anon_sym_LPAREN2] = ACTIONS(2025), + [anon_sym_BANG] = ACTIONS(2028), + [anon_sym_TILDE] = ACTIONS(2028), + [anon_sym_DASH] = ACTIONS(2031), + [anon_sym_PLUS] = ACTIONS(2031), + [anon_sym_STAR] = ACTIONS(2034), + [anon_sym_AMP] = ACTIONS(2034), + [anon_sym_SEMI] = ACTIONS(2240), + [anon_sym___extension__] = ACTIONS(2040), + [anon_sym_using] = ACTIONS(2043), + [anon_sym_COLON_COLON] = ACTIONS(2045), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2048), + [anon_sym_LBRACE] = ACTIONS(2243), + [anon_sym_LBRACK] = ACTIONS(2054), + [sym_primitive_type] = ACTIONS(2057), + [anon_sym_if] = ACTIONS(2246), + [anon_sym_switch] = ACTIONS(2249), + [anon_sym_case] = ACTIONS(2252), + [anon_sym_default] = ACTIONS(2255), + [anon_sym_while] = ACTIONS(2258), + [anon_sym_do] = ACTIONS(2261), + [anon_sym_for] = ACTIONS(2264), + [anon_sym_return] = ACTIONS(2267), + [anon_sym_break] = ACTIONS(2270), + [anon_sym_continue] = ACTIONS(2273), + [anon_sym_goto] = ACTIONS(2276), + [anon_sym___try] = ACTIONS(2279), + [anon_sym___leave] = ACTIONS(2282), + [anon_sym_not] = ACTIONS(2031), + [anon_sym_compl] = ACTIONS(2031), + [anon_sym_DASH_DASH] = ACTIONS(2099), + [anon_sym_PLUS_PLUS] = ACTIONS(2099), + [anon_sym_sizeof] = ACTIONS(2102), + [anon_sym___alignof__] = ACTIONS(2105), + [anon_sym___alignof] = ACTIONS(2105), + [anon_sym__alignof] = ACTIONS(2105), + [anon_sym_alignof] = ACTIONS(2105), + [anon_sym__Alignof] = ACTIONS(2105), + [anon_sym_offsetof] = ACTIONS(2108), + [anon_sym__Generic] = ACTIONS(2111), + [anon_sym_asm] = ACTIONS(2114), + [anon_sym___asm__] = ACTIONS(2114), + [anon_sym___asm] = ACTIONS(2114), + [sym_number_literal] = ACTIONS(2117), + [anon_sym_L_SQUOTE] = ACTIONS(2120), + [anon_sym_u_SQUOTE] = ACTIONS(2120), + [anon_sym_U_SQUOTE] = ACTIONS(2120), + [anon_sym_u8_SQUOTE] = ACTIONS(2120), + [anon_sym_SQUOTE] = ACTIONS(2120), + [anon_sym_L_DQUOTE] = ACTIONS(2123), + [anon_sym_u_DQUOTE] = ACTIONS(2123), + [anon_sym_U_DQUOTE] = ACTIONS(2123), + [anon_sym_u8_DQUOTE] = ACTIONS(2123), + [anon_sym_DQUOTE] = ACTIONS(2123), + [sym_true] = ACTIONS(2126), + [sym_false] = ACTIONS(2126), + [anon_sym_NULL] = ACTIONS(2129), + [anon_sym_nullptr] = ACTIONS(2129), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2132), + [anon_sym_template] = ACTIONS(2135), + [anon_sym_try] = ACTIONS(2285), + [anon_sym_delete] = ACTIONS(2141), + [anon_sym_throw] = ACTIONS(2288), + [anon_sym_co_return] = ACTIONS(2291), + [anon_sym_co_yield] = ACTIONS(2294), + [anon_sym_R_DQUOTE] = ACTIONS(2153), + [anon_sym_LR_DQUOTE] = ACTIONS(2153), + [anon_sym_uR_DQUOTE] = ACTIONS(2153), + [anon_sym_UR_DQUOTE] = ACTIONS(2153), + [anon_sym_u8R_DQUOTE] = ACTIONS(2153), + [anon_sym_co_await] = ACTIONS(2156), + [anon_sym_new] = ACTIONS(2159), + [anon_sym_requires] = ACTIONS(2162), + [sym_this] = ACTIONS(2126), }, - [151] = { - [sym_attribute_declaration] = STATE(150), - [sym_compound_statement] = STATE(529), - [sym_attributed_statement] = STATE(529), - [sym_statement] = STATE(542), - [sym_labeled_statement] = STATE(529), - [sym_expression_statement] = STATE(529), - [sym_if_statement] = STATE(529), - [sym_switch_statement] = STATE(529), - [sym_case_statement] = STATE(529), - [sym_while_statement] = STATE(529), - [sym_do_statement] = STATE(529), - [sym_for_statement] = STATE(529), - [sym_return_statement] = STATE(529), - [sym_break_statement] = STATE(529), - [sym_continue_statement] = STATE(529), - [sym_goto_statement] = STATE(529), - [sym_seh_try_statement] = STATE(529), - [sym_seh_leave_statement] = STATE(529), - [sym_expression] = STATE(4500), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8311), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_for_range_loop] = STATE(529), - [sym_co_return_statement] = STATE(529), - [sym_co_yield_statement] = STATE(529), - [sym_throw_statement] = STATE(529), - [sym_try_statement] = STATE(529), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_attributed_declarator_repeat1] = STATE(150), - [sym_identifier] = ACTIONS(2301), - [anon_sym_LPAREN2] = ACTIONS(1436), + [150] = { + [sym_attribute_declaration] = STATE(149), + [sym_compound_statement] = STATE(513), + [sym_attributed_statement] = STATE(513), + [sym_statement] = STATE(537), + [sym_labeled_statement] = STATE(513), + [sym_expression_statement] = STATE(513), + [sym_if_statement] = STATE(513), + [sym_switch_statement] = STATE(513), + [sym_case_statement] = STATE(513), + [sym_while_statement] = STATE(513), + [sym_do_statement] = STATE(513), + [sym_for_statement] = STATE(513), + [sym_return_statement] = STATE(513), + [sym_break_statement] = STATE(513), + [sym_continue_statement] = STATE(513), + [sym_goto_statement] = STATE(513), + [sym_seh_try_statement] = STATE(513), + [sym_seh_leave_statement] = STATE(513), + [sym_expression] = STATE(4531), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8444), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_for_range_loop] = STATE(513), + [sym_co_return_statement] = STATE(513), + [sym_co_yield_statement] = STATE(513), + [sym_throw_statement] = STATE(513), + [sym_try_statement] = STATE(513), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_attributed_declarator_repeat1] = STATE(149), + [sym_identifier] = ACTIONS(2297), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), [anon_sym_SEMI] = ACTIONS(884), - [anon_sym___extension__] = ACTIONS(2024), - [anon_sym_using] = ACTIONS(2303), + [anon_sym___extension__] = ACTIONS(2167), + [anon_sym_using] = ACTIONS(2299), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), [anon_sym_LBRACE] = ACTIONS(894), - [anon_sym_LBRACK] = ACTIONS(1450), - [sym_primitive_type] = ACTIONS(2028), + [anon_sym_LBRACK] = ACTIONS(1266), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_if] = ACTIONS(898), [anon_sym_switch] = ACTIONS(900), [anon_sym_case] = ACTIONS(902), @@ -65855,7 +65992,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_try] = ACTIONS(926), [anon_sym_delete] = ACTIONS(145), [anon_sym_throw] = ACTIONS(928), @@ -65871,378 +66008,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [152] = { - [sym_compound_statement] = STATE(8215), - [sym_type_qualifier] = STATE(3904), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(4455), - [sym_sized_type_specifier] = STATE(1879), - [sym_enum_specifier] = STATE(1879), - [sym_struct_specifier] = STATE(1879), - [sym_union_specifier] = STATE(1879), - [sym_expression] = STATE(2942), - [sym__string] = STATE(3235), - [sym_comma_expression] = STATE(8215), - [sym_conditional_expression] = STATE(3373), - [sym_assignment_expression] = STATE(3373), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3373), - [sym_binary_expression] = STATE(3373), - [sym_update_expression] = STATE(3373), - [sym_cast_expression] = STATE(3373), - [sym_type_descriptor] = STATE(8390), - [sym_sizeof_expression] = STATE(3373), - [sym_alignof_expression] = STATE(3373), - [sym_offsetof_expression] = STATE(3373), - [sym_generic_expression] = STATE(3373), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3373), - [sym_extension_expression] = STATE(3373), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3373), - [sym_parenthesized_expression] = STATE(3365), - [sym_char_literal] = STATE(3235), - [sym_concatenated_string] = STATE(3235), - [sym_string_literal] = STATE(2358), - [sym_null] = STATE(3373), - [sym_placeholder_type_specifier] = STATE(1879), - [sym_decltype_auto] = STATE(1859), - [sym_decltype] = STATE(1713), - [sym_class_specifier] = STATE(1879), - [sym__class_name] = STATE(7814), - [sym_dependent_type] = STATE(1879), - [sym_template_type] = STATE(5285), - [sym_template_function] = STATE(3373), - [sym_raw_string_literal] = STATE(2358), - [sym_co_await_expression] = STATE(3373), - [sym_new_expression] = STATE(3373), - [sym_delete_expression] = STATE(3373), - [sym_requires_clause] = STATE(3373), - [sym_requires_expression] = STATE(3373), - [sym_lambda_expression] = STATE(3373), - [sym_lambda_capture_specifier] = STATE(5414), - [sym__unary_left_fold] = STATE(8396), - [sym__unary_right_fold] = STATE(8410), - [sym__binary_fold] = STATE(8415), - [sym_fold_expression] = STATE(3373), - [sym_parameter_pack_expansion] = STATE(3373), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5702), - [sym_qualified_identifier] = STATE(3365), - [sym_qualified_type_identifier] = STATE(5327), - [sym__assignment_expression_lhs] = STATE(8243), - [sym_user_defined_literal] = STATE(3365), - [aux_sym__type_definition_type_repeat1] = STATE(3904), - [aux_sym_sized_type_specifier_repeat1] = STATE(4209), - [sym_identifier] = ACTIONS(2016), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(1804), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1810), - [anon_sym_unsigned] = ACTIONS(1810), - [anon_sym_long] = ACTIONS(1810), - [anon_sym_short] = ACTIONS(1810), - [anon_sym_LBRACK] = ACTIONS(2020), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(1814), - [anon_sym_enum] = ACTIONS(1816), - [anon_sym_class] = ACTIONS(1818), - [anon_sym_struct] = ACTIONS(1820), - [anon_sym_union] = ACTIONS(1822), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1846), - [anon_sym_decltype] = ACTIONS(1848), - [anon_sym_typename] = ACTIONS(1850), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), - }, - [153] = { - [sym_compound_statement] = STATE(8215), - [sym_type_qualifier] = STATE(3904), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(4455), - [sym_sized_type_specifier] = STATE(1879), - [sym_enum_specifier] = STATE(1879), - [sym_struct_specifier] = STATE(1879), - [sym_union_specifier] = STATE(1879), - [sym_expression] = STATE(2942), - [sym__string] = STATE(3235), - [sym_comma_expression] = STATE(8215), - [sym_conditional_expression] = STATE(3373), - [sym_assignment_expression] = STATE(3373), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3373), - [sym_binary_expression] = STATE(3373), - [sym_update_expression] = STATE(3373), - [sym_cast_expression] = STATE(3373), - [sym_type_descriptor] = STATE(8575), - [sym_sizeof_expression] = STATE(3373), - [sym_alignof_expression] = STATE(3373), - [sym_offsetof_expression] = STATE(3373), - [sym_generic_expression] = STATE(3373), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3373), - [sym_extension_expression] = STATE(3373), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3373), - [sym_parenthesized_expression] = STATE(3365), - [sym_char_literal] = STATE(3235), - [sym_concatenated_string] = STATE(3235), - [sym_string_literal] = STATE(2358), - [sym_null] = STATE(3373), - [sym_placeholder_type_specifier] = STATE(1879), - [sym_decltype_auto] = STATE(1859), - [sym_decltype] = STATE(1713), - [sym_class_specifier] = STATE(1879), - [sym__class_name] = STATE(7814), - [sym_dependent_type] = STATE(1879), - [sym_template_type] = STATE(5285), - [sym_template_function] = STATE(3373), - [sym_raw_string_literal] = STATE(2358), - [sym_co_await_expression] = STATE(3373), - [sym_new_expression] = STATE(3373), - [sym_delete_expression] = STATE(3373), - [sym_requires_clause] = STATE(3373), - [sym_requires_expression] = STATE(3373), - [sym_lambda_expression] = STATE(3373), - [sym_lambda_capture_specifier] = STATE(5414), - [sym__unary_left_fold] = STATE(8396), - [sym__unary_right_fold] = STATE(8410), - [sym__binary_fold] = STATE(8415), - [sym_fold_expression] = STATE(3373), - [sym_parameter_pack_expansion] = STATE(3373), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5702), - [sym_qualified_identifier] = STATE(3365), - [sym_qualified_type_identifier] = STATE(5327), - [sym__assignment_expression_lhs] = STATE(8243), - [sym_user_defined_literal] = STATE(3365), - [aux_sym__type_definition_type_repeat1] = STATE(3904), - [aux_sym_sized_type_specifier_repeat1] = STATE(4209), - [sym_identifier] = ACTIONS(2016), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(1804), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1810), - [anon_sym_unsigned] = ACTIONS(1810), - [anon_sym_long] = ACTIONS(1810), - [anon_sym_short] = ACTIONS(1810), - [anon_sym_LBRACK] = ACTIONS(2020), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(1814), - [anon_sym_enum] = ACTIONS(1816), - [anon_sym_class] = ACTIONS(1818), - [anon_sym_struct] = ACTIONS(1820), - [anon_sym_union] = ACTIONS(1822), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1846), - [anon_sym_decltype] = ACTIONS(1848), - [anon_sym_typename] = ACTIONS(1850), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), - }, - [154] = { - [sym_compound_statement] = STATE(8409), - [sym_type_qualifier] = STATE(3904), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(4455), - [sym_sized_type_specifier] = STATE(1879), - [sym_enum_specifier] = STATE(1879), - [sym_struct_specifier] = STATE(1879), - [sym_union_specifier] = STATE(1879), - [sym_expression] = STATE(2919), - [sym__string] = STATE(3235), - [sym_comma_expression] = STATE(8409), - [sym_conditional_expression] = STATE(3373), - [sym_assignment_expression] = STATE(3373), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3373), - [sym_binary_expression] = STATE(3373), - [sym_update_expression] = STATE(3373), - [sym_cast_expression] = STATE(3373), - [sym_type_descriptor] = STATE(7998), - [sym_sizeof_expression] = STATE(3373), - [sym_alignof_expression] = STATE(3373), - [sym_offsetof_expression] = STATE(3373), - [sym_generic_expression] = STATE(3373), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3373), - [sym_extension_expression] = STATE(3373), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3373), - [sym_parenthesized_expression] = STATE(3365), - [sym_char_literal] = STATE(3235), - [sym_concatenated_string] = STATE(3235), - [sym_string_literal] = STATE(2358), - [sym_null] = STATE(3373), - [sym_placeholder_type_specifier] = STATE(1879), - [sym_decltype_auto] = STATE(1859), - [sym_decltype] = STATE(1713), - [sym_class_specifier] = STATE(1879), - [sym__class_name] = STATE(7814), - [sym_dependent_type] = STATE(1879), - [sym_template_type] = STATE(5285), - [sym_template_function] = STATE(3373), - [sym_raw_string_literal] = STATE(2358), - [sym_co_await_expression] = STATE(3373), - [sym_new_expression] = STATE(3373), - [sym_delete_expression] = STATE(3373), - [sym_requires_clause] = STATE(3373), - [sym_requires_expression] = STATE(3373), - [sym_lambda_expression] = STATE(3373), - [sym_lambda_capture_specifier] = STATE(5414), - [sym__unary_left_fold] = STATE(8699), - [sym__unary_right_fold] = STATE(8700), - [sym__binary_fold] = STATE(8703), - [sym_fold_expression] = STATE(3373), - [sym_parameter_pack_expansion] = STATE(3373), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5702), - [sym_qualified_identifier] = STATE(3365), - [sym_qualified_type_identifier] = STATE(5327), - [sym__assignment_expression_lhs] = STATE(8421), - [sym_user_defined_literal] = STATE(3365), - [aux_sym__type_definition_type_repeat1] = STATE(3904), - [aux_sym_sized_type_specifier_repeat1] = STATE(4209), + [151] = { + [sym_compound_statement] = STATE(8629), + [sym_type_qualifier] = STATE(3891), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(4528), + [sym_sized_type_specifier] = STATE(1890), + [sym_enum_specifier] = STATE(1890), + [sym_struct_specifier] = STATE(1890), + [sym_union_specifier] = STATE(1890), + [sym_expression] = STATE(2991), + [sym__string] = STATE(3393), + [sym_comma_expression] = STATE(8629), + [sym_conditional_expression] = STATE(3401), + [sym_assignment_expression] = STATE(3401), + [sym_pointer_expression] = STATE(3405), + [sym_unary_expression] = STATE(3401), + [sym_binary_expression] = STATE(3401), + [sym_update_expression] = STATE(3401), + [sym_cast_expression] = STATE(3401), + [sym_type_descriptor] = STATE(8664), + [sym_sizeof_expression] = STATE(3401), + [sym_alignof_expression] = STATE(3401), + [sym_offsetof_expression] = STATE(3401), + [sym_generic_expression] = STATE(3401), + [sym_subscript_expression] = STATE(3405), + [sym_call_expression] = STATE(3405), + [sym_gnu_asm_expression] = STATE(3401), + [sym_extension_expression] = STATE(3401), + [sym_field_expression] = STATE(3405), + [sym_compound_literal_expression] = STATE(3401), + [sym_parenthesized_expression] = STATE(3405), + [sym_char_literal] = STATE(3393), + [sym_concatenated_string] = STATE(3393), + [sym_string_literal] = STATE(2380), + [sym_null] = STATE(3401), + [sym_placeholder_type_specifier] = STATE(1890), + [sym_decltype_auto] = STATE(1888), + [sym_decltype] = STATE(1782), + [sym_class_specifier] = STATE(1890), + [sym__class_name] = STATE(7745), + [sym_dependent_type] = STATE(1890), + [sym_template_type] = STATE(5365), + [sym_template_function] = STATE(3401), + [sym_raw_string_literal] = STATE(2380), + [sym_co_await_expression] = STATE(3401), + [sym_new_expression] = STATE(3401), + [sym_delete_expression] = STATE(3401), + [sym_requires_clause] = STATE(3401), + [sym_requires_expression] = STATE(3401), + [sym_lambda_expression] = STATE(3401), + [sym_lambda_capture_specifier] = STATE(5494), + [sym__unary_left_fold] = STATE(8716), + [sym__unary_right_fold] = STATE(8742), + [sym__binary_fold] = STATE(8824), + [sym_fold_expression] = STATE(3401), + [sym_parameter_pack_expansion] = STATE(3401), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5846), + [sym_qualified_identifier] = STATE(3405), + [sym_qualified_type_identifier] = STATE(5382), + [sym__assignment_expression_lhs] = STATE(8390), + [sym_user_defined_literal] = STATE(3405), + [aux_sym__type_definition_type_repeat1] = STATE(3891), + [aux_sym_sized_type_specifier_repeat1] = STATE(4234), [sym_identifier] = ACTIONS(2016), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1790), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1788), [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(1804), - [anon_sym_COLON_COLON] = ACTIONS(1806), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1810), - [anon_sym_unsigned] = ACTIONS(1810), - [anon_sym_long] = ACTIONS(1810), - [anon_sym_short] = ACTIONS(1810), + [anon_sym_signed] = ACTIONS(1808), + [anon_sym_unsigned] = ACTIONS(1808), + [anon_sym_long] = ACTIONS(1808), + [anon_sym_short] = ACTIONS(1808), [anon_sym_LBRACK] = ACTIONS(2020), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), @@ -66258,137 +66103,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(1814), - [anon_sym_enum] = ACTIONS(1816), - [anon_sym_class] = ACTIONS(1818), - [anon_sym_struct] = ACTIONS(1820), - [anon_sym_union] = ACTIONS(1822), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1846), - [anon_sym_decltype] = ACTIONS(1848), - [anon_sym_typename] = ACTIONS(1850), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), + [sym_primitive_type] = ACTIONS(1812), + [anon_sym_enum] = ACTIONS(1814), + [anon_sym_class] = ACTIONS(1816), + [anon_sym_struct] = ACTIONS(1818), + [anon_sym_union] = ACTIONS(1820), + [anon_sym_not] = ACTIONS(1796), + [anon_sym_compl] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_sizeof] = ACTIONS(1824), + [anon_sym___alignof__] = ACTIONS(1826), + [anon_sym___alignof] = ACTIONS(1826), + [anon_sym__alignof] = ACTIONS(1826), + [anon_sym_alignof] = ACTIONS(1826), + [anon_sym__Alignof] = ACTIONS(1826), + [anon_sym_offsetof] = ACTIONS(1828), + [anon_sym__Generic] = ACTIONS(1830), + [anon_sym_asm] = ACTIONS(1832), + [anon_sym___asm__] = ACTIONS(1832), + [anon_sym___asm] = ACTIONS(1832), + [sym_number_literal] = ACTIONS(1834), + [anon_sym_L_SQUOTE] = ACTIONS(1836), + [anon_sym_u_SQUOTE] = ACTIONS(1836), + [anon_sym_U_SQUOTE] = ACTIONS(1836), + [anon_sym_u8_SQUOTE] = ACTIONS(1836), + [anon_sym_SQUOTE] = ACTIONS(1836), + [anon_sym_L_DQUOTE] = ACTIONS(1838), + [anon_sym_u_DQUOTE] = ACTIONS(1838), + [anon_sym_U_DQUOTE] = ACTIONS(1838), + [anon_sym_u8_DQUOTE] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym_true] = ACTIONS(1840), + [sym_false] = ACTIONS(1840), + [anon_sym_NULL] = ACTIONS(1842), + [anon_sym_nullptr] = ACTIONS(1842), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1844), + [anon_sym_decltype] = ACTIONS(1846), + [anon_sym_typename] = ACTIONS(1848), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1852), + [anon_sym_R_DQUOTE] = ACTIONS(1854), + [anon_sym_LR_DQUOTE] = ACTIONS(1854), + [anon_sym_uR_DQUOTE] = ACTIONS(1854), + [anon_sym_UR_DQUOTE] = ACTIONS(1854), + [anon_sym_u8R_DQUOTE] = ACTIONS(1854), + [anon_sym_co_await] = ACTIONS(1856), + [anon_sym_new] = ACTIONS(1858), + [anon_sym_requires] = ACTIONS(1860), + [sym_this] = ACTIONS(1840), }, - [155] = { - [sym_compound_statement] = STATE(8449), - [sym_type_qualifier] = STATE(3904), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(4455), - [sym_sized_type_specifier] = STATE(1879), - [sym_enum_specifier] = STATE(1879), - [sym_struct_specifier] = STATE(1879), - [sym_union_specifier] = STATE(1879), - [sym_expression] = STATE(2912), - [sym__string] = STATE(3235), - [sym_comma_expression] = STATE(8449), - [sym_conditional_expression] = STATE(3373), - [sym_assignment_expression] = STATE(3373), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3373), - [sym_binary_expression] = STATE(3373), - [sym_update_expression] = STATE(3373), - [sym_cast_expression] = STATE(3373), - [sym_type_descriptor] = STATE(8531), - [sym_sizeof_expression] = STATE(3373), - [sym_alignof_expression] = STATE(3373), - [sym_offsetof_expression] = STATE(3373), - [sym_generic_expression] = STATE(3373), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3373), - [sym_extension_expression] = STATE(3373), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3373), - [sym_parenthesized_expression] = STATE(3365), - [sym_char_literal] = STATE(3235), - [sym_concatenated_string] = STATE(3235), - [sym_string_literal] = STATE(2358), - [sym_null] = STATE(3373), - [sym_placeholder_type_specifier] = STATE(1879), - [sym_decltype_auto] = STATE(1859), - [sym_decltype] = STATE(1713), - [sym_class_specifier] = STATE(1879), - [sym__class_name] = STATE(7814), - [sym_dependent_type] = STATE(1879), - [sym_template_type] = STATE(5285), - [sym_template_function] = STATE(3373), - [sym_raw_string_literal] = STATE(2358), - [sym_co_await_expression] = STATE(3373), - [sym_new_expression] = STATE(3373), - [sym_delete_expression] = STATE(3373), - [sym_requires_clause] = STATE(3373), - [sym_requires_expression] = STATE(3373), - [sym_lambda_expression] = STATE(3373), - [sym_lambda_capture_specifier] = STATE(5414), - [sym__unary_left_fold] = STATE(8119), - [sym__unary_right_fold] = STATE(8280), - [sym__binary_fold] = STATE(7936), - [sym_fold_expression] = STATE(3373), - [sym_parameter_pack_expansion] = STATE(3373), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5702), - [sym_qualified_identifier] = STATE(3365), - [sym_qualified_type_identifier] = STATE(5327), - [sym__assignment_expression_lhs] = STATE(8569), - [sym_user_defined_literal] = STATE(3365), - [aux_sym__type_definition_type_repeat1] = STATE(3904), - [aux_sym_sized_type_specifier_repeat1] = STATE(4209), + [152] = { + [sym_compound_statement] = STATE(8140), + [sym_type_qualifier] = STATE(3891), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(4528), + [sym_sized_type_specifier] = STATE(1890), + [sym_enum_specifier] = STATE(1890), + [sym_struct_specifier] = STATE(1890), + [sym_union_specifier] = STATE(1890), + [sym_expression] = STATE(2926), + [sym__string] = STATE(3393), + [sym_comma_expression] = STATE(8140), + [sym_conditional_expression] = STATE(3401), + [sym_assignment_expression] = STATE(3401), + [sym_pointer_expression] = STATE(3405), + [sym_unary_expression] = STATE(3401), + [sym_binary_expression] = STATE(3401), + [sym_update_expression] = STATE(3401), + [sym_cast_expression] = STATE(3401), + [sym_type_descriptor] = STATE(8607), + [sym_sizeof_expression] = STATE(3401), + [sym_alignof_expression] = STATE(3401), + [sym_offsetof_expression] = STATE(3401), + [sym_generic_expression] = STATE(3401), + [sym_subscript_expression] = STATE(3405), + [sym_call_expression] = STATE(3405), + [sym_gnu_asm_expression] = STATE(3401), + [sym_extension_expression] = STATE(3401), + [sym_field_expression] = STATE(3405), + [sym_compound_literal_expression] = STATE(3401), + [sym_parenthesized_expression] = STATE(3405), + [sym_char_literal] = STATE(3393), + [sym_concatenated_string] = STATE(3393), + [sym_string_literal] = STATE(2380), + [sym_null] = STATE(3401), + [sym_placeholder_type_specifier] = STATE(1890), + [sym_decltype_auto] = STATE(1888), + [sym_decltype] = STATE(1782), + [sym_class_specifier] = STATE(1890), + [sym__class_name] = STATE(7745), + [sym_dependent_type] = STATE(1890), + [sym_template_type] = STATE(5365), + [sym_template_function] = STATE(3401), + [sym_raw_string_literal] = STATE(2380), + [sym_co_await_expression] = STATE(3401), + [sym_new_expression] = STATE(3401), + [sym_delete_expression] = STATE(3401), + [sym_requires_clause] = STATE(3401), + [sym_requires_expression] = STATE(3401), + [sym_lambda_expression] = STATE(3401), + [sym_lambda_capture_specifier] = STATE(5494), + [sym__unary_left_fold] = STATE(8133), + [sym__unary_right_fold] = STATE(8142), + [sym__binary_fold] = STATE(8143), + [sym_fold_expression] = STATE(3401), + [sym_parameter_pack_expansion] = STATE(3401), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5846), + [sym_qualified_identifier] = STATE(3405), + [sym_qualified_type_identifier] = STATE(5382), + [sym__assignment_expression_lhs] = STATE(8172), + [sym_user_defined_literal] = STATE(3405), + [aux_sym__type_definition_type_repeat1] = STATE(3891), + [aux_sym_sized_type_specifier_repeat1] = STATE(4234), [sym_identifier] = ACTIONS(2016), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1790), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1788), [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(1804), - [anon_sym_COLON_COLON] = ACTIONS(1806), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1810), - [anon_sym_unsigned] = ACTIONS(1810), - [anon_sym_long] = ACTIONS(1810), - [anon_sym_short] = ACTIONS(1810), + [anon_sym_signed] = ACTIONS(1808), + [anon_sym_unsigned] = ACTIONS(1808), + [anon_sym_long] = ACTIONS(1808), + [anon_sym_short] = ACTIONS(1808), [anon_sym_LBRACK] = ACTIONS(2020), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), @@ -66404,137 +66249,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(1814), - [anon_sym_enum] = ACTIONS(1816), - [anon_sym_class] = ACTIONS(1818), - [anon_sym_struct] = ACTIONS(1820), - [anon_sym_union] = ACTIONS(1822), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1846), - [anon_sym_decltype] = ACTIONS(1848), - [anon_sym_typename] = ACTIONS(1850), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), + [sym_primitive_type] = ACTIONS(1812), + [anon_sym_enum] = ACTIONS(1814), + [anon_sym_class] = ACTIONS(1816), + [anon_sym_struct] = ACTIONS(1818), + [anon_sym_union] = ACTIONS(1820), + [anon_sym_not] = ACTIONS(1796), + [anon_sym_compl] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_sizeof] = ACTIONS(1824), + [anon_sym___alignof__] = ACTIONS(1826), + [anon_sym___alignof] = ACTIONS(1826), + [anon_sym__alignof] = ACTIONS(1826), + [anon_sym_alignof] = ACTIONS(1826), + [anon_sym__Alignof] = ACTIONS(1826), + [anon_sym_offsetof] = ACTIONS(1828), + [anon_sym__Generic] = ACTIONS(1830), + [anon_sym_asm] = ACTIONS(1832), + [anon_sym___asm__] = ACTIONS(1832), + [anon_sym___asm] = ACTIONS(1832), + [sym_number_literal] = ACTIONS(1834), + [anon_sym_L_SQUOTE] = ACTIONS(1836), + [anon_sym_u_SQUOTE] = ACTIONS(1836), + [anon_sym_U_SQUOTE] = ACTIONS(1836), + [anon_sym_u8_SQUOTE] = ACTIONS(1836), + [anon_sym_SQUOTE] = ACTIONS(1836), + [anon_sym_L_DQUOTE] = ACTIONS(1838), + [anon_sym_u_DQUOTE] = ACTIONS(1838), + [anon_sym_U_DQUOTE] = ACTIONS(1838), + [anon_sym_u8_DQUOTE] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym_true] = ACTIONS(1840), + [sym_false] = ACTIONS(1840), + [anon_sym_NULL] = ACTIONS(1842), + [anon_sym_nullptr] = ACTIONS(1842), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1844), + [anon_sym_decltype] = ACTIONS(1846), + [anon_sym_typename] = ACTIONS(1848), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1852), + [anon_sym_R_DQUOTE] = ACTIONS(1854), + [anon_sym_LR_DQUOTE] = ACTIONS(1854), + [anon_sym_uR_DQUOTE] = ACTIONS(1854), + [anon_sym_UR_DQUOTE] = ACTIONS(1854), + [anon_sym_u8R_DQUOTE] = ACTIONS(1854), + [anon_sym_co_await] = ACTIONS(1856), + [anon_sym_new] = ACTIONS(1858), + [anon_sym_requires] = ACTIONS(1860), + [sym_this] = ACTIONS(1840), }, - [156] = { - [sym_compound_statement] = STATE(8215), - [sym_type_qualifier] = STATE(3904), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(4455), - [sym_sized_type_specifier] = STATE(1879), - [sym_enum_specifier] = STATE(1879), - [sym_struct_specifier] = STATE(1879), - [sym_union_specifier] = STATE(1879), - [sym_expression] = STATE(2942), - [sym__string] = STATE(3235), - [sym_comma_expression] = STATE(8215), - [sym_conditional_expression] = STATE(3373), - [sym_assignment_expression] = STATE(3373), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3373), - [sym_binary_expression] = STATE(3373), - [sym_update_expression] = STATE(3373), - [sym_cast_expression] = STATE(3373), - [sym_type_descriptor] = STATE(7988), - [sym_sizeof_expression] = STATE(3373), - [sym_alignof_expression] = STATE(3373), - [sym_offsetof_expression] = STATE(3373), - [sym_generic_expression] = STATE(3373), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3373), - [sym_extension_expression] = STATE(3373), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3373), - [sym_parenthesized_expression] = STATE(3365), - [sym_char_literal] = STATE(3235), - [sym_concatenated_string] = STATE(3235), - [sym_string_literal] = STATE(2358), - [sym_null] = STATE(3373), - [sym_placeholder_type_specifier] = STATE(1879), - [sym_decltype_auto] = STATE(1859), - [sym_decltype] = STATE(1713), - [sym_class_specifier] = STATE(1879), - [sym__class_name] = STATE(7814), - [sym_dependent_type] = STATE(1879), - [sym_template_type] = STATE(5285), - [sym_template_function] = STATE(3373), - [sym_raw_string_literal] = STATE(2358), - [sym_co_await_expression] = STATE(3373), - [sym_new_expression] = STATE(3373), - [sym_delete_expression] = STATE(3373), - [sym_requires_clause] = STATE(3373), - [sym_requires_expression] = STATE(3373), - [sym_lambda_expression] = STATE(3373), - [sym_lambda_capture_specifier] = STATE(5414), - [sym__unary_left_fold] = STATE(8605), - [sym__unary_right_fold] = STATE(8610), - [sym__binary_fold] = STATE(8628), - [sym_fold_expression] = STATE(3373), - [sym_parameter_pack_expansion] = STATE(3373), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5702), - [sym_qualified_identifier] = STATE(3365), - [sym_qualified_type_identifier] = STATE(5327), - [sym__assignment_expression_lhs] = STATE(8243), - [sym_user_defined_literal] = STATE(3365), - [aux_sym__type_definition_type_repeat1] = STATE(3904), - [aux_sym_sized_type_specifier_repeat1] = STATE(4209), + [153] = { + [sym_compound_statement] = STATE(8208), + [sym_type_qualifier] = STATE(3891), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(4528), + [sym_sized_type_specifier] = STATE(1890), + [sym_enum_specifier] = STATE(1890), + [sym_struct_specifier] = STATE(1890), + [sym_union_specifier] = STATE(1890), + [sym_expression] = STATE(2950), + [sym__string] = STATE(3393), + [sym_comma_expression] = STATE(8208), + [sym_conditional_expression] = STATE(3401), + [sym_assignment_expression] = STATE(3401), + [sym_pointer_expression] = STATE(3405), + [sym_unary_expression] = STATE(3401), + [sym_binary_expression] = STATE(3401), + [sym_update_expression] = STATE(3401), + [sym_cast_expression] = STATE(3401), + [sym_type_descriptor] = STATE(8361), + [sym_sizeof_expression] = STATE(3401), + [sym_alignof_expression] = STATE(3401), + [sym_offsetof_expression] = STATE(3401), + [sym_generic_expression] = STATE(3401), + [sym_subscript_expression] = STATE(3405), + [sym_call_expression] = STATE(3405), + [sym_gnu_asm_expression] = STATE(3401), + [sym_extension_expression] = STATE(3401), + [sym_field_expression] = STATE(3405), + [sym_compound_literal_expression] = STATE(3401), + [sym_parenthesized_expression] = STATE(3405), + [sym_char_literal] = STATE(3393), + [sym_concatenated_string] = STATE(3393), + [sym_string_literal] = STATE(2380), + [sym_null] = STATE(3401), + [sym_placeholder_type_specifier] = STATE(1890), + [sym_decltype_auto] = STATE(1888), + [sym_decltype] = STATE(1782), + [sym_class_specifier] = STATE(1890), + [sym__class_name] = STATE(7745), + [sym_dependent_type] = STATE(1890), + [sym_template_type] = STATE(5365), + [sym_template_function] = STATE(3401), + [sym_raw_string_literal] = STATE(2380), + [sym_co_await_expression] = STATE(3401), + [sym_new_expression] = STATE(3401), + [sym_delete_expression] = STATE(3401), + [sym_requires_clause] = STATE(3401), + [sym_requires_expression] = STATE(3401), + [sym_lambda_expression] = STATE(3401), + [sym_lambda_capture_specifier] = STATE(5494), + [sym__unary_left_fold] = STATE(8364), + [sym__unary_right_fold] = STATE(8365), + [sym__binary_fold] = STATE(8368), + [sym_fold_expression] = STATE(3401), + [sym_parameter_pack_expansion] = STATE(3401), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5846), + [sym_qualified_identifier] = STATE(3405), + [sym_qualified_type_identifier] = STATE(5382), + [sym__assignment_expression_lhs] = STATE(8529), + [sym_user_defined_literal] = STATE(3405), + [aux_sym__type_definition_type_repeat1] = STATE(3891), + [aux_sym_sized_type_specifier_repeat1] = STATE(4234), [sym_identifier] = ACTIONS(2016), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1790), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1788), [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(1804), - [anon_sym_COLON_COLON] = ACTIONS(1806), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1810), - [anon_sym_unsigned] = ACTIONS(1810), - [anon_sym_long] = ACTIONS(1810), - [anon_sym_short] = ACTIONS(1810), + [anon_sym_signed] = ACTIONS(1808), + [anon_sym_unsigned] = ACTIONS(1808), + [anon_sym_long] = ACTIONS(1808), + [anon_sym_short] = ACTIONS(1808), [anon_sym_LBRACK] = ACTIONS(2020), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), @@ -66550,137 +66395,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(1814), - [anon_sym_enum] = ACTIONS(1816), - [anon_sym_class] = ACTIONS(1818), - [anon_sym_struct] = ACTIONS(1820), - [anon_sym_union] = ACTIONS(1822), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1846), - [anon_sym_decltype] = ACTIONS(1848), - [anon_sym_typename] = ACTIONS(1850), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), + [sym_primitive_type] = ACTIONS(1812), + [anon_sym_enum] = ACTIONS(1814), + [anon_sym_class] = ACTIONS(1816), + [anon_sym_struct] = ACTIONS(1818), + [anon_sym_union] = ACTIONS(1820), + [anon_sym_not] = ACTIONS(1796), + [anon_sym_compl] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_sizeof] = ACTIONS(1824), + [anon_sym___alignof__] = ACTIONS(1826), + [anon_sym___alignof] = ACTIONS(1826), + [anon_sym__alignof] = ACTIONS(1826), + [anon_sym_alignof] = ACTIONS(1826), + [anon_sym__Alignof] = ACTIONS(1826), + [anon_sym_offsetof] = ACTIONS(1828), + [anon_sym__Generic] = ACTIONS(1830), + [anon_sym_asm] = ACTIONS(1832), + [anon_sym___asm__] = ACTIONS(1832), + [anon_sym___asm] = ACTIONS(1832), + [sym_number_literal] = ACTIONS(1834), + [anon_sym_L_SQUOTE] = ACTIONS(1836), + [anon_sym_u_SQUOTE] = ACTIONS(1836), + [anon_sym_U_SQUOTE] = ACTIONS(1836), + [anon_sym_u8_SQUOTE] = ACTIONS(1836), + [anon_sym_SQUOTE] = ACTIONS(1836), + [anon_sym_L_DQUOTE] = ACTIONS(1838), + [anon_sym_u_DQUOTE] = ACTIONS(1838), + [anon_sym_U_DQUOTE] = ACTIONS(1838), + [anon_sym_u8_DQUOTE] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym_true] = ACTIONS(1840), + [sym_false] = ACTIONS(1840), + [anon_sym_NULL] = ACTIONS(1842), + [anon_sym_nullptr] = ACTIONS(1842), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1844), + [anon_sym_decltype] = ACTIONS(1846), + [anon_sym_typename] = ACTIONS(1848), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1852), + [anon_sym_R_DQUOTE] = ACTIONS(1854), + [anon_sym_LR_DQUOTE] = ACTIONS(1854), + [anon_sym_uR_DQUOTE] = ACTIONS(1854), + [anon_sym_UR_DQUOTE] = ACTIONS(1854), + [anon_sym_u8R_DQUOTE] = ACTIONS(1854), + [anon_sym_co_await] = ACTIONS(1856), + [anon_sym_new] = ACTIONS(1858), + [anon_sym_requires] = ACTIONS(1860), + [sym_this] = ACTIONS(1840), }, - [157] = { - [sym_compound_statement] = STATE(8449), - [sym_type_qualifier] = STATE(3904), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(4455), - [sym_sized_type_specifier] = STATE(1879), - [sym_enum_specifier] = STATE(1879), - [sym_struct_specifier] = STATE(1879), - [sym_union_specifier] = STATE(1879), - [sym_expression] = STATE(2912), - [sym__string] = STATE(3235), - [sym_comma_expression] = STATE(8449), - [sym_conditional_expression] = STATE(3373), - [sym_assignment_expression] = STATE(3373), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3373), - [sym_binary_expression] = STATE(3373), - [sym_update_expression] = STATE(3373), - [sym_cast_expression] = STATE(3373), - [sym_type_descriptor] = STATE(8221), - [sym_sizeof_expression] = STATE(3373), - [sym_alignof_expression] = STATE(3373), - [sym_offsetof_expression] = STATE(3373), - [sym_generic_expression] = STATE(3373), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3373), - [sym_extension_expression] = STATE(3373), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3373), - [sym_parenthesized_expression] = STATE(3365), - [sym_char_literal] = STATE(3235), - [sym_concatenated_string] = STATE(3235), - [sym_string_literal] = STATE(2358), - [sym_null] = STATE(3373), - [sym_placeholder_type_specifier] = STATE(1879), - [sym_decltype_auto] = STATE(1859), - [sym_decltype] = STATE(1713), - [sym_class_specifier] = STATE(1879), - [sym__class_name] = STATE(7814), - [sym_dependent_type] = STATE(1879), - [sym_template_type] = STATE(5285), - [sym_template_function] = STATE(3373), - [sym_raw_string_literal] = STATE(2358), - [sym_co_await_expression] = STATE(3373), - [sym_new_expression] = STATE(3373), - [sym_delete_expression] = STATE(3373), - [sym_requires_clause] = STATE(3373), - [sym_requires_expression] = STATE(3373), - [sym_lambda_expression] = STATE(3373), - [sym_lambda_capture_specifier] = STATE(5414), - [sym__unary_left_fold] = STATE(8232), - [sym__unary_right_fold] = STATE(8236), - [sym__binary_fold] = STATE(8240), - [sym_fold_expression] = STATE(3373), - [sym_parameter_pack_expansion] = STATE(3373), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5702), - [sym_qualified_identifier] = STATE(3365), - [sym_qualified_type_identifier] = STATE(5327), - [sym__assignment_expression_lhs] = STATE(8569), - [sym_user_defined_literal] = STATE(3365), - [aux_sym__type_definition_type_repeat1] = STATE(3904), - [aux_sym_sized_type_specifier_repeat1] = STATE(4209), + [154] = { + [sym_compound_statement] = STATE(8208), + [sym_type_qualifier] = STATE(3891), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(4528), + [sym_sized_type_specifier] = STATE(1890), + [sym_enum_specifier] = STATE(1890), + [sym_struct_specifier] = STATE(1890), + [sym_union_specifier] = STATE(1890), + [sym_expression] = STATE(2950), + [sym__string] = STATE(3393), + [sym_comma_expression] = STATE(8208), + [sym_conditional_expression] = STATE(3401), + [sym_assignment_expression] = STATE(3401), + [sym_pointer_expression] = STATE(3405), + [sym_unary_expression] = STATE(3401), + [sym_binary_expression] = STATE(3401), + [sym_update_expression] = STATE(3401), + [sym_cast_expression] = STATE(3401), + [sym_type_descriptor] = STATE(8961), + [sym_sizeof_expression] = STATE(3401), + [sym_alignof_expression] = STATE(3401), + [sym_offsetof_expression] = STATE(3401), + [sym_generic_expression] = STATE(3401), + [sym_subscript_expression] = STATE(3405), + [sym_call_expression] = STATE(3405), + [sym_gnu_asm_expression] = STATE(3401), + [sym_extension_expression] = STATE(3401), + [sym_field_expression] = STATE(3405), + [sym_compound_literal_expression] = STATE(3401), + [sym_parenthesized_expression] = STATE(3405), + [sym_char_literal] = STATE(3393), + [sym_concatenated_string] = STATE(3393), + [sym_string_literal] = STATE(2380), + [sym_null] = STATE(3401), + [sym_placeholder_type_specifier] = STATE(1890), + [sym_decltype_auto] = STATE(1888), + [sym_decltype] = STATE(1782), + [sym_class_specifier] = STATE(1890), + [sym__class_name] = STATE(7745), + [sym_dependent_type] = STATE(1890), + [sym_template_type] = STATE(5365), + [sym_template_function] = STATE(3401), + [sym_raw_string_literal] = STATE(2380), + [sym_co_await_expression] = STATE(3401), + [sym_new_expression] = STATE(3401), + [sym_delete_expression] = STATE(3401), + [sym_requires_clause] = STATE(3401), + [sym_requires_expression] = STATE(3401), + [sym_lambda_expression] = STATE(3401), + [sym_lambda_capture_specifier] = STATE(5494), + [sym__unary_left_fold] = STATE(8364), + [sym__unary_right_fold] = STATE(8365), + [sym__binary_fold] = STATE(8368), + [sym_fold_expression] = STATE(3401), + [sym_parameter_pack_expansion] = STATE(3401), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5846), + [sym_qualified_identifier] = STATE(3405), + [sym_qualified_type_identifier] = STATE(5382), + [sym__assignment_expression_lhs] = STATE(8529), + [sym_user_defined_literal] = STATE(3405), + [aux_sym__type_definition_type_repeat1] = STATE(3891), + [aux_sym_sized_type_specifier_repeat1] = STATE(4234), [sym_identifier] = ACTIONS(2016), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1790), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1788), [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(1804), - [anon_sym_COLON_COLON] = ACTIONS(1806), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1810), - [anon_sym_unsigned] = ACTIONS(1810), - [anon_sym_long] = ACTIONS(1810), - [anon_sym_short] = ACTIONS(1810), + [anon_sym_signed] = ACTIONS(1808), + [anon_sym_unsigned] = ACTIONS(1808), + [anon_sym_long] = ACTIONS(1808), + [anon_sym_short] = ACTIONS(1808), [anon_sym_LBRACK] = ACTIONS(2020), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), @@ -66696,108 +66541,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(1814), - [anon_sym_enum] = ACTIONS(1816), - [anon_sym_class] = ACTIONS(1818), - [anon_sym_struct] = ACTIONS(1820), - [anon_sym_union] = ACTIONS(1822), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1846), - [anon_sym_decltype] = ACTIONS(1848), - [anon_sym_typename] = ACTIONS(1850), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), + [sym_primitive_type] = ACTIONS(1812), + [anon_sym_enum] = ACTIONS(1814), + [anon_sym_class] = ACTIONS(1816), + [anon_sym_struct] = ACTIONS(1818), + [anon_sym_union] = ACTIONS(1820), + [anon_sym_not] = ACTIONS(1796), + [anon_sym_compl] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_sizeof] = ACTIONS(1824), + [anon_sym___alignof__] = ACTIONS(1826), + [anon_sym___alignof] = ACTIONS(1826), + [anon_sym__alignof] = ACTIONS(1826), + [anon_sym_alignof] = ACTIONS(1826), + [anon_sym__Alignof] = ACTIONS(1826), + [anon_sym_offsetof] = ACTIONS(1828), + [anon_sym__Generic] = ACTIONS(1830), + [anon_sym_asm] = ACTIONS(1832), + [anon_sym___asm__] = ACTIONS(1832), + [anon_sym___asm] = ACTIONS(1832), + [sym_number_literal] = ACTIONS(1834), + [anon_sym_L_SQUOTE] = ACTIONS(1836), + [anon_sym_u_SQUOTE] = ACTIONS(1836), + [anon_sym_U_SQUOTE] = ACTIONS(1836), + [anon_sym_u8_SQUOTE] = ACTIONS(1836), + [anon_sym_SQUOTE] = ACTIONS(1836), + [anon_sym_L_DQUOTE] = ACTIONS(1838), + [anon_sym_u_DQUOTE] = ACTIONS(1838), + [anon_sym_U_DQUOTE] = ACTIONS(1838), + [anon_sym_u8_DQUOTE] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym_true] = ACTIONS(1840), + [sym_false] = ACTIONS(1840), + [anon_sym_NULL] = ACTIONS(1842), + [anon_sym_nullptr] = ACTIONS(1842), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1844), + [anon_sym_decltype] = ACTIONS(1846), + [anon_sym_typename] = ACTIONS(1848), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1852), + [anon_sym_R_DQUOTE] = ACTIONS(1854), + [anon_sym_LR_DQUOTE] = ACTIONS(1854), + [anon_sym_uR_DQUOTE] = ACTIONS(1854), + [anon_sym_UR_DQUOTE] = ACTIONS(1854), + [anon_sym_u8R_DQUOTE] = ACTIONS(1854), + [anon_sym_co_await] = ACTIONS(1856), + [anon_sym_new] = ACTIONS(1858), + [anon_sym_requires] = ACTIONS(1860), + [sym_this] = ACTIONS(1840), }, - [158] = { - [sym_expression] = STATE(2388), - [sym__string] = STATE(3181), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_initializer_list] = STATE(2441), - [sym_char_literal] = STATE(3181), - [sym_concatenated_string] = STATE(3181), - [sym_string_literal] = STATE(2297), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(2297), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), - [sym_identifier] = ACTIONS(2305), + [155] = { + [sym_expression] = STATE(2417), + [sym__string] = STATE(3178), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_initializer_list] = STATE(2488), + [sym_char_literal] = STATE(3178), + [sym_concatenated_string] = STATE(3178), + [sym_string_literal] = STATE(2317), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(2317), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), + [sym_identifier] = ACTIONS(2301), [anon_sym_DOT_DOT_DOT] = ACTIONS(1944), [anon_sym_COMMA] = ACTIONS(1944), [anon_sym_LPAREN2] = ACTIONS(1944), - [anon_sym_BANG] = ACTIONS(2307), - [anon_sym_TILDE] = ACTIONS(2309), + [anon_sym_BANG] = ACTIONS(2303), + [anon_sym_TILDE] = ACTIONS(2305), [anon_sym_DASH] = ACTIONS(1942), [anon_sym_PLUS] = ACTIONS(1942), [anon_sym_STAR] = ACTIONS(1942), @@ -66817,10 +66662,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1942), [anon_sym_GT_GT] = ACTIONS(1942), [anon_sym_SEMI] = ACTIONS(1944), - [anon_sym___extension__] = ACTIONS(2311), + [anon_sym___extension__] = ACTIONS(2307), [anon_sym___attribute__] = ACTIONS(1942), [anon_sym___attribute] = ACTIONS(1942), - [anon_sym_COLON_COLON] = ACTIONS(2313), + [anon_sym_COLON_COLON] = ACTIONS(2309), [anon_sym_LBRACE] = ACTIONS(1954), [anon_sym_LBRACK] = ACTIONS(1944), [anon_sym_EQ] = ACTIONS(1942), @@ -66839,8 +66684,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and_eq] = ACTIONS(1942), [anon_sym_or_eq] = ACTIONS(1942), [anon_sym_xor_eq] = ACTIONS(1942), - [anon_sym_not] = ACTIONS(2307), - [anon_sym_compl] = ACTIONS(2307), + [anon_sym_not] = ACTIONS(2303), + [anon_sym_compl] = ACTIONS(2303), [anon_sym_LT_EQ_GT] = ACTIONS(1944), [anon_sym_or] = ACTIONS(1942), [anon_sym_and] = ACTIONS(1942), @@ -66850,7 +66695,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_not_eq] = ACTIONS(1942), [anon_sym_DASH_DASH] = ACTIONS(1944), [anon_sym_PLUS_PLUS] = ACTIONS(1944), - [anon_sym_sizeof] = ACTIONS(2315), + [anon_sym_sizeof] = ACTIONS(2311), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), [anon_sym__alignof] = ACTIONS(1960), @@ -66864,115 +66709,553 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(1942), [anon_sym_DOT_STAR] = ACTIONS(1944), [anon_sym_DASH_GT] = ACTIONS(1944), - [sym_number_literal] = ACTIONS(2317), - [anon_sym_L_SQUOTE] = ACTIONS(2319), - [anon_sym_u_SQUOTE] = ACTIONS(2319), - [anon_sym_U_SQUOTE] = ACTIONS(2319), - [anon_sym_u8_SQUOTE] = ACTIONS(2319), - [anon_sym_SQUOTE] = ACTIONS(2319), - [anon_sym_L_DQUOTE] = ACTIONS(2321), - [anon_sym_u_DQUOTE] = ACTIONS(2321), - [anon_sym_U_DQUOTE] = ACTIONS(2321), - [anon_sym_u8_DQUOTE] = ACTIONS(2321), - [anon_sym_DQUOTE] = ACTIONS(2321), + [sym_number_literal] = ACTIONS(2313), + [anon_sym_L_SQUOTE] = ACTIONS(2315), + [anon_sym_u_SQUOTE] = ACTIONS(2315), + [anon_sym_U_SQUOTE] = ACTIONS(2315), + [anon_sym_u8_SQUOTE] = ACTIONS(2315), + [anon_sym_SQUOTE] = ACTIONS(2315), + [anon_sym_L_DQUOTE] = ACTIONS(2317), + [anon_sym_u_DQUOTE] = ACTIONS(2317), + [anon_sym_U_DQUOTE] = ACTIONS(2317), + [anon_sym_u8_DQUOTE] = ACTIONS(2317), + [anon_sym_DQUOTE] = ACTIONS(2317), [sym_true] = ACTIONS(1974), [sym_false] = ACTIONS(1974), [anon_sym_NULL] = ACTIONS(1976), [anon_sym_nullptr] = ACTIONS(1976), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(2323), - [anon_sym_R_DQUOTE] = ACTIONS(2325), - [anon_sym_LR_DQUOTE] = ACTIONS(2325), - [anon_sym_uR_DQUOTE] = ACTIONS(2325), - [anon_sym_UR_DQUOTE] = ACTIONS(2325), - [anon_sym_u8R_DQUOTE] = ACTIONS(2325), - [anon_sym_co_await] = ACTIONS(2327), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(2319), + [anon_sym_R_DQUOTE] = ACTIONS(2321), + [anon_sym_LR_DQUOTE] = ACTIONS(2321), + [anon_sym_uR_DQUOTE] = ACTIONS(2321), + [anon_sym_UR_DQUOTE] = ACTIONS(2321), + [anon_sym_u8R_DQUOTE] = ACTIONS(2321), + [anon_sym_co_await] = ACTIONS(2323), [anon_sym_new] = ACTIONS(2014), [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, + [156] = { + [sym_compound_statement] = STATE(8140), + [sym_type_qualifier] = STATE(3891), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(4528), + [sym_sized_type_specifier] = STATE(1890), + [sym_enum_specifier] = STATE(1890), + [sym_struct_specifier] = STATE(1890), + [sym_union_specifier] = STATE(1890), + [sym_expression] = STATE(2926), + [sym__string] = STATE(3393), + [sym_comma_expression] = STATE(8140), + [sym_conditional_expression] = STATE(3401), + [sym_assignment_expression] = STATE(3401), + [sym_pointer_expression] = STATE(3405), + [sym_unary_expression] = STATE(3401), + [sym_binary_expression] = STATE(3401), + [sym_update_expression] = STATE(3401), + [sym_cast_expression] = STATE(3401), + [sym_type_descriptor] = STATE(8461), + [sym_sizeof_expression] = STATE(3401), + [sym_alignof_expression] = STATE(3401), + [sym_offsetof_expression] = STATE(3401), + [sym_generic_expression] = STATE(3401), + [sym_subscript_expression] = STATE(3405), + [sym_call_expression] = STATE(3405), + [sym_gnu_asm_expression] = STATE(3401), + [sym_extension_expression] = STATE(3401), + [sym_field_expression] = STATE(3405), + [sym_compound_literal_expression] = STATE(3401), + [sym_parenthesized_expression] = STATE(3405), + [sym_char_literal] = STATE(3393), + [sym_concatenated_string] = STATE(3393), + [sym_string_literal] = STATE(2380), + [sym_null] = STATE(3401), + [sym_placeholder_type_specifier] = STATE(1890), + [sym_decltype_auto] = STATE(1888), + [sym_decltype] = STATE(1782), + [sym_class_specifier] = STATE(1890), + [sym__class_name] = STATE(7745), + [sym_dependent_type] = STATE(1890), + [sym_template_type] = STATE(5365), + [sym_template_function] = STATE(3401), + [sym_raw_string_literal] = STATE(2380), + [sym_co_await_expression] = STATE(3401), + [sym_new_expression] = STATE(3401), + [sym_delete_expression] = STATE(3401), + [sym_requires_clause] = STATE(3401), + [sym_requires_expression] = STATE(3401), + [sym_lambda_expression] = STATE(3401), + [sym_lambda_capture_specifier] = STATE(5494), + [sym__unary_left_fold] = STATE(8287), + [sym__unary_right_fold] = STATE(8288), + [sym__binary_fold] = STATE(8289), + [sym_fold_expression] = STATE(3401), + [sym_parameter_pack_expansion] = STATE(3401), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5846), + [sym_qualified_identifier] = STATE(3405), + [sym_qualified_type_identifier] = STATE(5382), + [sym__assignment_expression_lhs] = STATE(8172), + [sym_user_defined_literal] = STATE(3405), + [aux_sym__type_definition_type_repeat1] = STATE(3891), + [aux_sym_sized_type_specifier_repeat1] = STATE(4234), + [sym_identifier] = ACTIONS(2016), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1788), + [anon_sym_LPAREN2] = ACTIONS(2018), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1808), + [anon_sym_unsigned] = ACTIONS(1808), + [anon_sym_long] = ACTIONS(1808), + [anon_sym_short] = ACTIONS(1808), + [anon_sym_LBRACK] = ACTIONS(2020), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(69), + [anon_sym__Alignas] = ACTIONS(69), + [sym_primitive_type] = ACTIONS(1812), + [anon_sym_enum] = ACTIONS(1814), + [anon_sym_class] = ACTIONS(1816), + [anon_sym_struct] = ACTIONS(1818), + [anon_sym_union] = ACTIONS(1820), + [anon_sym_not] = ACTIONS(1796), + [anon_sym_compl] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_sizeof] = ACTIONS(1824), + [anon_sym___alignof__] = ACTIONS(1826), + [anon_sym___alignof] = ACTIONS(1826), + [anon_sym__alignof] = ACTIONS(1826), + [anon_sym_alignof] = ACTIONS(1826), + [anon_sym__Alignof] = ACTIONS(1826), + [anon_sym_offsetof] = ACTIONS(1828), + [anon_sym__Generic] = ACTIONS(1830), + [anon_sym_asm] = ACTIONS(1832), + [anon_sym___asm__] = ACTIONS(1832), + [anon_sym___asm] = ACTIONS(1832), + [sym_number_literal] = ACTIONS(1834), + [anon_sym_L_SQUOTE] = ACTIONS(1836), + [anon_sym_u_SQUOTE] = ACTIONS(1836), + [anon_sym_U_SQUOTE] = ACTIONS(1836), + [anon_sym_u8_SQUOTE] = ACTIONS(1836), + [anon_sym_SQUOTE] = ACTIONS(1836), + [anon_sym_L_DQUOTE] = ACTIONS(1838), + [anon_sym_u_DQUOTE] = ACTIONS(1838), + [anon_sym_U_DQUOTE] = ACTIONS(1838), + [anon_sym_u8_DQUOTE] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym_true] = ACTIONS(1840), + [sym_false] = ACTIONS(1840), + [anon_sym_NULL] = ACTIONS(1842), + [anon_sym_nullptr] = ACTIONS(1842), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1844), + [anon_sym_decltype] = ACTIONS(1846), + [anon_sym_typename] = ACTIONS(1848), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1852), + [anon_sym_R_DQUOTE] = ACTIONS(1854), + [anon_sym_LR_DQUOTE] = ACTIONS(1854), + [anon_sym_uR_DQUOTE] = ACTIONS(1854), + [anon_sym_UR_DQUOTE] = ACTIONS(1854), + [anon_sym_u8R_DQUOTE] = ACTIONS(1854), + [anon_sym_co_await] = ACTIONS(1856), + [anon_sym_new] = ACTIONS(1858), + [anon_sym_requires] = ACTIONS(1860), + [sym_this] = ACTIONS(1840), + }, + [157] = { + [sym_compound_statement] = STATE(8629), + [sym_type_qualifier] = STATE(3891), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(4528), + [sym_sized_type_specifier] = STATE(1890), + [sym_enum_specifier] = STATE(1890), + [sym_struct_specifier] = STATE(1890), + [sym_union_specifier] = STATE(1890), + [sym_expression] = STATE(2991), + [sym__string] = STATE(3393), + [sym_comma_expression] = STATE(8629), + [sym_conditional_expression] = STATE(3401), + [sym_assignment_expression] = STATE(3401), + [sym_pointer_expression] = STATE(3405), + [sym_unary_expression] = STATE(3401), + [sym_binary_expression] = STATE(3401), + [sym_update_expression] = STATE(3401), + [sym_cast_expression] = STATE(3401), + [sym_type_descriptor] = STATE(8632), + [sym_sizeof_expression] = STATE(3401), + [sym_alignof_expression] = STATE(3401), + [sym_offsetof_expression] = STATE(3401), + [sym_generic_expression] = STATE(3401), + [sym_subscript_expression] = STATE(3405), + [sym_call_expression] = STATE(3405), + [sym_gnu_asm_expression] = STATE(3401), + [sym_extension_expression] = STATE(3401), + [sym_field_expression] = STATE(3405), + [sym_compound_literal_expression] = STATE(3401), + [sym_parenthesized_expression] = STATE(3405), + [sym_char_literal] = STATE(3393), + [sym_concatenated_string] = STATE(3393), + [sym_string_literal] = STATE(2380), + [sym_null] = STATE(3401), + [sym_placeholder_type_specifier] = STATE(1890), + [sym_decltype_auto] = STATE(1888), + [sym_decltype] = STATE(1782), + [sym_class_specifier] = STATE(1890), + [sym__class_name] = STATE(7745), + [sym_dependent_type] = STATE(1890), + [sym_template_type] = STATE(5365), + [sym_template_function] = STATE(3401), + [sym_raw_string_literal] = STATE(2380), + [sym_co_await_expression] = STATE(3401), + [sym_new_expression] = STATE(3401), + [sym_delete_expression] = STATE(3401), + [sym_requires_clause] = STATE(3401), + [sym_requires_expression] = STATE(3401), + [sym_lambda_expression] = STATE(3401), + [sym_lambda_capture_specifier] = STATE(5494), + [sym__unary_left_fold] = STATE(8151), + [sym__unary_right_fold] = STATE(8158), + [sym__binary_fold] = STATE(8170), + [sym_fold_expression] = STATE(3401), + [sym_parameter_pack_expansion] = STATE(3401), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5846), + [sym_qualified_identifier] = STATE(3405), + [sym_qualified_type_identifier] = STATE(5382), + [sym__assignment_expression_lhs] = STATE(8390), + [sym_user_defined_literal] = STATE(3405), + [aux_sym__type_definition_type_repeat1] = STATE(3891), + [aux_sym_sized_type_specifier_repeat1] = STATE(4234), + [sym_identifier] = ACTIONS(2016), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1788), + [anon_sym_LPAREN2] = ACTIONS(2018), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1808), + [anon_sym_unsigned] = ACTIONS(1808), + [anon_sym_long] = ACTIONS(1808), + [anon_sym_short] = ACTIONS(1808), + [anon_sym_LBRACK] = ACTIONS(2020), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(69), + [anon_sym__Alignas] = ACTIONS(69), + [sym_primitive_type] = ACTIONS(1812), + [anon_sym_enum] = ACTIONS(1814), + [anon_sym_class] = ACTIONS(1816), + [anon_sym_struct] = ACTIONS(1818), + [anon_sym_union] = ACTIONS(1820), + [anon_sym_not] = ACTIONS(1796), + [anon_sym_compl] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_sizeof] = ACTIONS(1824), + [anon_sym___alignof__] = ACTIONS(1826), + [anon_sym___alignof] = ACTIONS(1826), + [anon_sym__alignof] = ACTIONS(1826), + [anon_sym_alignof] = ACTIONS(1826), + [anon_sym__Alignof] = ACTIONS(1826), + [anon_sym_offsetof] = ACTIONS(1828), + [anon_sym__Generic] = ACTIONS(1830), + [anon_sym_asm] = ACTIONS(1832), + [anon_sym___asm__] = ACTIONS(1832), + [anon_sym___asm] = ACTIONS(1832), + [sym_number_literal] = ACTIONS(1834), + [anon_sym_L_SQUOTE] = ACTIONS(1836), + [anon_sym_u_SQUOTE] = ACTIONS(1836), + [anon_sym_U_SQUOTE] = ACTIONS(1836), + [anon_sym_u8_SQUOTE] = ACTIONS(1836), + [anon_sym_SQUOTE] = ACTIONS(1836), + [anon_sym_L_DQUOTE] = ACTIONS(1838), + [anon_sym_u_DQUOTE] = ACTIONS(1838), + [anon_sym_U_DQUOTE] = ACTIONS(1838), + [anon_sym_u8_DQUOTE] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym_true] = ACTIONS(1840), + [sym_false] = ACTIONS(1840), + [anon_sym_NULL] = ACTIONS(1842), + [anon_sym_nullptr] = ACTIONS(1842), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1844), + [anon_sym_decltype] = ACTIONS(1846), + [anon_sym_typename] = ACTIONS(1848), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1852), + [anon_sym_R_DQUOTE] = ACTIONS(1854), + [anon_sym_LR_DQUOTE] = ACTIONS(1854), + [anon_sym_uR_DQUOTE] = ACTIONS(1854), + [anon_sym_UR_DQUOTE] = ACTIONS(1854), + [anon_sym_u8R_DQUOTE] = ACTIONS(1854), + [anon_sym_co_await] = ACTIONS(1856), + [anon_sym_new] = ACTIONS(1858), + [anon_sym_requires] = ACTIONS(1860), + [sym_this] = ACTIONS(1840), + }, + [158] = { + [sym_attribute_declaration] = STATE(140), + [sym_compound_statement] = STATE(560), + [sym_attributed_statement] = STATE(560), + [sym_statement] = STATE(568), + [sym_labeled_statement] = STATE(560), + [sym_expression_statement] = STATE(560), + [sym_if_statement] = STATE(560), + [sym_switch_statement] = STATE(560), + [sym_case_statement] = STATE(560), + [sym_while_statement] = STATE(560), + [sym_do_statement] = STATE(560), + [sym_for_statement] = STATE(560), + [sym_return_statement] = STATE(560), + [sym_break_statement] = STATE(560), + [sym_continue_statement] = STATE(560), + [sym_goto_statement] = STATE(560), + [sym_seh_try_statement] = STATE(560), + [sym_seh_leave_statement] = STATE(560), + [sym_expression] = STATE(4554), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8083), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_for_range_loop] = STATE(560), + [sym_co_return_statement] = STATE(560), + [sym_co_yield_statement] = STATE(560), + [sym_throw_statement] = STATE(560), + [sym_try_statement] = STATE(560), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_attributed_declarator_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(2325), + [anon_sym_LPAREN2] = ACTIONS(1252), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(181), + [anon_sym___extension__] = ACTIONS(2167), + [anon_sym_using] = ACTIONS(2327), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(866), + [anon_sym_LBRACK] = ACTIONS(1266), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_if] = ACTIONS(199), + [anon_sym_switch] = ACTIONS(201), + [anon_sym_case] = ACTIONS(203), + [anon_sym_default] = ACTIONS(205), + [anon_sym_while] = ACTIONS(207), + [anon_sym_do] = ACTIONS(209), + [anon_sym_for] = ACTIONS(211), + [anon_sym_return] = ACTIONS(213), + [anon_sym_break] = ACTIONS(215), + [anon_sym_continue] = ACTIONS(217), + [anon_sym_goto] = ACTIONS(219), + [anon_sym___try] = ACTIONS(221), + [anon_sym___leave] = ACTIONS(223), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [anon_sym___alignof__] = ACTIONS(107), + [anon_sym___alignof] = ACTIONS(107), + [anon_sym__alignof] = ACTIONS(107), + [anon_sym_alignof] = ACTIONS(107), + [anon_sym__Alignof] = ACTIONS(107), + [anon_sym_offsetof] = ACTIONS(109), + [anon_sym__Generic] = ACTIONS(111), + [anon_sym_asm] = ACTIONS(113), + [anon_sym___asm__] = ACTIONS(113), + [anon_sym___asm] = ACTIONS(113), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(117), + [anon_sym_u_SQUOTE] = ACTIONS(117), + [anon_sym_U_SQUOTE] = ACTIONS(117), + [anon_sym_u8_SQUOTE] = ACTIONS(117), + [anon_sym_SQUOTE] = ACTIONS(117), + [anon_sym_L_DQUOTE] = ACTIONS(119), + [anon_sym_u_DQUOTE] = ACTIONS(119), + [anon_sym_U_DQUOTE] = ACTIONS(119), + [anon_sym_u8_DQUOTE] = ACTIONS(119), + [anon_sym_DQUOTE] = ACTIONS(119), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(123), + [anon_sym_nullptr] = ACTIONS(123), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_try] = ACTIONS(233), + [anon_sym_delete] = ACTIONS(145), + [anon_sym_throw] = ACTIONS(235), + [anon_sym_co_return] = ACTIONS(243), + [anon_sym_co_yield] = ACTIONS(245), + [anon_sym_R_DQUOTE] = ACTIONS(159), + [anon_sym_LR_DQUOTE] = ACTIONS(159), + [anon_sym_uR_DQUOTE] = ACTIONS(159), + [anon_sym_UR_DQUOTE] = ACTIONS(159), + [anon_sym_u8R_DQUOTE] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), + }, [159] = { - [sym_compound_statement] = STATE(8449), - [sym_type_qualifier] = STATE(3904), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(4455), - [sym_sized_type_specifier] = STATE(1879), - [sym_enum_specifier] = STATE(1879), - [sym_struct_specifier] = STATE(1879), - [sym_union_specifier] = STATE(1879), - [sym_expression] = STATE(2912), - [sym__string] = STATE(3235), - [sym_comma_expression] = STATE(8449), - [sym_conditional_expression] = STATE(3373), - [sym_assignment_expression] = STATE(3373), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3373), - [sym_binary_expression] = STATE(3373), - [sym_update_expression] = STATE(3373), - [sym_cast_expression] = STATE(3373), - [sym_type_descriptor] = STATE(8550), - [sym_sizeof_expression] = STATE(3373), - [sym_alignof_expression] = STATE(3373), - [sym_offsetof_expression] = STATE(3373), - [sym_generic_expression] = STATE(3373), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3373), - [sym_extension_expression] = STATE(3373), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3373), - [sym_parenthesized_expression] = STATE(3365), - [sym_char_literal] = STATE(3235), - [sym_concatenated_string] = STATE(3235), - [sym_string_literal] = STATE(2358), - [sym_null] = STATE(3373), - [sym_placeholder_type_specifier] = STATE(1879), - [sym_decltype_auto] = STATE(1859), - [sym_decltype] = STATE(1713), - [sym_class_specifier] = STATE(1879), - [sym__class_name] = STATE(7814), - [sym_dependent_type] = STATE(1879), - [sym_template_type] = STATE(5285), - [sym_template_function] = STATE(3373), - [sym_raw_string_literal] = STATE(2358), - [sym_co_await_expression] = STATE(3373), - [sym_new_expression] = STATE(3373), - [sym_delete_expression] = STATE(3373), - [sym_requires_clause] = STATE(3373), - [sym_requires_expression] = STATE(3373), - [sym_lambda_expression] = STATE(3373), - [sym_lambda_capture_specifier] = STATE(5414), - [sym__unary_left_fold] = STATE(8232), - [sym__unary_right_fold] = STATE(8236), - [sym__binary_fold] = STATE(8240), - [sym_fold_expression] = STATE(3373), - [sym_parameter_pack_expansion] = STATE(3373), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5702), - [sym_qualified_identifier] = STATE(3365), - [sym_qualified_type_identifier] = STATE(5327), - [sym__assignment_expression_lhs] = STATE(8569), - [sym_user_defined_literal] = STATE(3365), - [aux_sym__type_definition_type_repeat1] = STATE(3904), - [aux_sym_sized_type_specifier_repeat1] = STATE(4209), + [sym_compound_statement] = STATE(8629), + [sym_type_qualifier] = STATE(3891), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(4528), + [sym_sized_type_specifier] = STATE(1890), + [sym_enum_specifier] = STATE(1890), + [sym_struct_specifier] = STATE(1890), + [sym_union_specifier] = STATE(1890), + [sym_expression] = STATE(2991), + [sym__string] = STATE(3393), + [sym_comma_expression] = STATE(8629), + [sym_conditional_expression] = STATE(3401), + [sym_assignment_expression] = STATE(3401), + [sym_pointer_expression] = STATE(3405), + [sym_unary_expression] = STATE(3401), + [sym_binary_expression] = STATE(3401), + [sym_update_expression] = STATE(3401), + [sym_cast_expression] = STATE(3401), + [sym_type_descriptor] = STATE(8386), + [sym_sizeof_expression] = STATE(3401), + [sym_alignof_expression] = STATE(3401), + [sym_offsetof_expression] = STATE(3401), + [sym_generic_expression] = STATE(3401), + [sym_subscript_expression] = STATE(3405), + [sym_call_expression] = STATE(3405), + [sym_gnu_asm_expression] = STATE(3401), + [sym_extension_expression] = STATE(3401), + [sym_field_expression] = STATE(3405), + [sym_compound_literal_expression] = STATE(3401), + [sym_parenthesized_expression] = STATE(3405), + [sym_char_literal] = STATE(3393), + [sym_concatenated_string] = STATE(3393), + [sym_string_literal] = STATE(2380), + [sym_null] = STATE(3401), + [sym_placeholder_type_specifier] = STATE(1890), + [sym_decltype_auto] = STATE(1888), + [sym_decltype] = STATE(1782), + [sym_class_specifier] = STATE(1890), + [sym__class_name] = STATE(7745), + [sym_dependent_type] = STATE(1890), + [sym_template_type] = STATE(5365), + [sym_template_function] = STATE(3401), + [sym_raw_string_literal] = STATE(2380), + [sym_co_await_expression] = STATE(3401), + [sym_new_expression] = STATE(3401), + [sym_delete_expression] = STATE(3401), + [sym_requires_clause] = STATE(3401), + [sym_requires_expression] = STATE(3401), + [sym_lambda_expression] = STATE(3401), + [sym_lambda_capture_specifier] = STATE(5494), + [sym__unary_left_fold] = STATE(8151), + [sym__unary_right_fold] = STATE(8158), + [sym__binary_fold] = STATE(8170), + [sym_fold_expression] = STATE(3401), + [sym_parameter_pack_expansion] = STATE(3401), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5846), + [sym_qualified_identifier] = STATE(3405), + [sym_qualified_type_identifier] = STATE(5382), + [sym__assignment_expression_lhs] = STATE(8390), + [sym_user_defined_literal] = STATE(3405), + [aux_sym__type_definition_type_repeat1] = STATE(3891), + [aux_sym_sized_type_specifier_repeat1] = STATE(4234), [sym_identifier] = ACTIONS(2016), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1790), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1788), [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(1804), - [anon_sym_COLON_COLON] = ACTIONS(1806), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1810), - [anon_sym_unsigned] = ACTIONS(1810), - [anon_sym_long] = ACTIONS(1810), - [anon_sym_short] = ACTIONS(1810), + [anon_sym_signed] = ACTIONS(1808), + [anon_sym_unsigned] = ACTIONS(1808), + [anon_sym_long] = ACTIONS(1808), + [anon_sym_short] = ACTIONS(1808), [anon_sym_LBRACK] = ACTIONS(2020), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), @@ -66988,137 +67271,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(1814), - [anon_sym_enum] = ACTIONS(1816), - [anon_sym_class] = ACTIONS(1818), - [anon_sym_struct] = ACTIONS(1820), - [anon_sym_union] = ACTIONS(1822), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1846), - [anon_sym_decltype] = ACTIONS(1848), - [anon_sym_typename] = ACTIONS(1850), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), + [sym_primitive_type] = ACTIONS(1812), + [anon_sym_enum] = ACTIONS(1814), + [anon_sym_class] = ACTIONS(1816), + [anon_sym_struct] = ACTIONS(1818), + [anon_sym_union] = ACTIONS(1820), + [anon_sym_not] = ACTIONS(1796), + [anon_sym_compl] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_sizeof] = ACTIONS(1824), + [anon_sym___alignof__] = ACTIONS(1826), + [anon_sym___alignof] = ACTIONS(1826), + [anon_sym__alignof] = ACTIONS(1826), + [anon_sym_alignof] = ACTIONS(1826), + [anon_sym__Alignof] = ACTIONS(1826), + [anon_sym_offsetof] = ACTIONS(1828), + [anon_sym__Generic] = ACTIONS(1830), + [anon_sym_asm] = ACTIONS(1832), + [anon_sym___asm__] = ACTIONS(1832), + [anon_sym___asm] = ACTIONS(1832), + [sym_number_literal] = ACTIONS(1834), + [anon_sym_L_SQUOTE] = ACTIONS(1836), + [anon_sym_u_SQUOTE] = ACTIONS(1836), + [anon_sym_U_SQUOTE] = ACTIONS(1836), + [anon_sym_u8_SQUOTE] = ACTIONS(1836), + [anon_sym_SQUOTE] = ACTIONS(1836), + [anon_sym_L_DQUOTE] = ACTIONS(1838), + [anon_sym_u_DQUOTE] = ACTIONS(1838), + [anon_sym_U_DQUOTE] = ACTIONS(1838), + [anon_sym_u8_DQUOTE] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym_true] = ACTIONS(1840), + [sym_false] = ACTIONS(1840), + [anon_sym_NULL] = ACTIONS(1842), + [anon_sym_nullptr] = ACTIONS(1842), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1844), + [anon_sym_decltype] = ACTIONS(1846), + [anon_sym_typename] = ACTIONS(1848), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1852), + [anon_sym_R_DQUOTE] = ACTIONS(1854), + [anon_sym_LR_DQUOTE] = ACTIONS(1854), + [anon_sym_uR_DQUOTE] = ACTIONS(1854), + [anon_sym_UR_DQUOTE] = ACTIONS(1854), + [anon_sym_u8R_DQUOTE] = ACTIONS(1854), + [anon_sym_co_await] = ACTIONS(1856), + [anon_sym_new] = ACTIONS(1858), + [anon_sym_requires] = ACTIONS(1860), + [sym_this] = ACTIONS(1840), }, [160] = { - [sym_compound_statement] = STATE(8449), - [sym_type_qualifier] = STATE(3904), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(4455), - [sym_sized_type_specifier] = STATE(1879), - [sym_enum_specifier] = STATE(1879), - [sym_struct_specifier] = STATE(1879), - [sym_union_specifier] = STATE(1879), - [sym_expression] = STATE(2912), - [sym__string] = STATE(3235), - [sym_comma_expression] = STATE(8449), - [sym_conditional_expression] = STATE(3373), - [sym_assignment_expression] = STATE(3373), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3373), - [sym_binary_expression] = STATE(3373), - [sym_update_expression] = STATE(3373), - [sym_cast_expression] = STATE(3373), - [sym_type_descriptor] = STATE(8727), - [sym_sizeof_expression] = STATE(3373), - [sym_alignof_expression] = STATE(3373), - [sym_offsetof_expression] = STATE(3373), - [sym_generic_expression] = STATE(3373), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3373), - [sym_extension_expression] = STATE(3373), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3373), - [sym_parenthesized_expression] = STATE(3365), - [sym_char_literal] = STATE(3235), - [sym_concatenated_string] = STATE(3235), - [sym_string_literal] = STATE(2358), - [sym_null] = STATE(3373), - [sym_placeholder_type_specifier] = STATE(1879), - [sym_decltype_auto] = STATE(1859), - [sym_decltype] = STATE(1713), - [sym_class_specifier] = STATE(1879), - [sym__class_name] = STATE(7814), - [sym_dependent_type] = STATE(1879), - [sym_template_type] = STATE(5285), - [sym_template_function] = STATE(3373), - [sym_raw_string_literal] = STATE(2358), - [sym_co_await_expression] = STATE(3373), - [sym_new_expression] = STATE(3373), - [sym_delete_expression] = STATE(3373), - [sym_requires_clause] = STATE(3373), - [sym_requires_expression] = STATE(3373), - [sym_lambda_expression] = STATE(3373), - [sym_lambda_capture_specifier] = STATE(5414), - [sym__unary_left_fold] = STATE(8119), - [sym__unary_right_fold] = STATE(8280), - [sym__binary_fold] = STATE(7936), - [sym_fold_expression] = STATE(3373), - [sym_parameter_pack_expansion] = STATE(3373), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5702), - [sym_qualified_identifier] = STATE(3365), - [sym_qualified_type_identifier] = STATE(5327), - [sym__assignment_expression_lhs] = STATE(8569), - [sym_user_defined_literal] = STATE(3365), - [aux_sym__type_definition_type_repeat1] = STATE(3904), - [aux_sym_sized_type_specifier_repeat1] = STATE(4209), + [sym_compound_statement] = STATE(8629), + [sym_type_qualifier] = STATE(3891), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(4528), + [sym_sized_type_specifier] = STATE(1890), + [sym_enum_specifier] = STATE(1890), + [sym_struct_specifier] = STATE(1890), + [sym_union_specifier] = STATE(1890), + [sym_expression] = STATE(2991), + [sym__string] = STATE(3393), + [sym_comma_expression] = STATE(8629), + [sym_conditional_expression] = STATE(3401), + [sym_assignment_expression] = STATE(3401), + [sym_pointer_expression] = STATE(3405), + [sym_unary_expression] = STATE(3401), + [sym_binary_expression] = STATE(3401), + [sym_update_expression] = STATE(3401), + [sym_cast_expression] = STATE(3401), + [sym_type_descriptor] = STATE(8524), + [sym_sizeof_expression] = STATE(3401), + [sym_alignof_expression] = STATE(3401), + [sym_offsetof_expression] = STATE(3401), + [sym_generic_expression] = STATE(3401), + [sym_subscript_expression] = STATE(3405), + [sym_call_expression] = STATE(3405), + [sym_gnu_asm_expression] = STATE(3401), + [sym_extension_expression] = STATE(3401), + [sym_field_expression] = STATE(3405), + [sym_compound_literal_expression] = STATE(3401), + [sym_parenthesized_expression] = STATE(3405), + [sym_char_literal] = STATE(3393), + [sym_concatenated_string] = STATE(3393), + [sym_string_literal] = STATE(2380), + [sym_null] = STATE(3401), + [sym_placeholder_type_specifier] = STATE(1890), + [sym_decltype_auto] = STATE(1888), + [sym_decltype] = STATE(1782), + [sym_class_specifier] = STATE(1890), + [sym__class_name] = STATE(7745), + [sym_dependent_type] = STATE(1890), + [sym_template_type] = STATE(5365), + [sym_template_function] = STATE(3401), + [sym_raw_string_literal] = STATE(2380), + [sym_co_await_expression] = STATE(3401), + [sym_new_expression] = STATE(3401), + [sym_delete_expression] = STATE(3401), + [sym_requires_clause] = STATE(3401), + [sym_requires_expression] = STATE(3401), + [sym_lambda_expression] = STATE(3401), + [sym_lambda_capture_specifier] = STATE(5494), + [sym__unary_left_fold] = STATE(8716), + [sym__unary_right_fold] = STATE(8742), + [sym__binary_fold] = STATE(8824), + [sym_fold_expression] = STATE(3401), + [sym_parameter_pack_expansion] = STATE(3401), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5846), + [sym_qualified_identifier] = STATE(3405), + [sym_qualified_type_identifier] = STATE(5382), + [sym__assignment_expression_lhs] = STATE(8390), + [sym_user_defined_literal] = STATE(3405), + [aux_sym__type_definition_type_repeat1] = STATE(3891), + [aux_sym_sized_type_specifier_repeat1] = STATE(4234), [sym_identifier] = ACTIONS(2016), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1790), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1788), [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(1804), - [anon_sym_COLON_COLON] = ACTIONS(1806), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1810), - [anon_sym_unsigned] = ACTIONS(1810), - [anon_sym_long] = ACTIONS(1810), - [anon_sym_short] = ACTIONS(1810), + [anon_sym_signed] = ACTIONS(1808), + [anon_sym_unsigned] = ACTIONS(1808), + [anon_sym_long] = ACTIONS(1808), + [anon_sym_short] = ACTIONS(1808), [anon_sym_LBRACK] = ACTIONS(2020), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), @@ -67134,137 +67417,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(1814), - [anon_sym_enum] = ACTIONS(1816), - [anon_sym_class] = ACTIONS(1818), - [anon_sym_struct] = ACTIONS(1820), - [anon_sym_union] = ACTIONS(1822), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1846), - [anon_sym_decltype] = ACTIONS(1848), - [anon_sym_typename] = ACTIONS(1850), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), + [sym_primitive_type] = ACTIONS(1812), + [anon_sym_enum] = ACTIONS(1814), + [anon_sym_class] = ACTIONS(1816), + [anon_sym_struct] = ACTIONS(1818), + [anon_sym_union] = ACTIONS(1820), + [anon_sym_not] = ACTIONS(1796), + [anon_sym_compl] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_sizeof] = ACTIONS(1824), + [anon_sym___alignof__] = ACTIONS(1826), + [anon_sym___alignof] = ACTIONS(1826), + [anon_sym__alignof] = ACTIONS(1826), + [anon_sym_alignof] = ACTIONS(1826), + [anon_sym__Alignof] = ACTIONS(1826), + [anon_sym_offsetof] = ACTIONS(1828), + [anon_sym__Generic] = ACTIONS(1830), + [anon_sym_asm] = ACTIONS(1832), + [anon_sym___asm__] = ACTIONS(1832), + [anon_sym___asm] = ACTIONS(1832), + [sym_number_literal] = ACTIONS(1834), + [anon_sym_L_SQUOTE] = ACTIONS(1836), + [anon_sym_u_SQUOTE] = ACTIONS(1836), + [anon_sym_U_SQUOTE] = ACTIONS(1836), + [anon_sym_u8_SQUOTE] = ACTIONS(1836), + [anon_sym_SQUOTE] = ACTIONS(1836), + [anon_sym_L_DQUOTE] = ACTIONS(1838), + [anon_sym_u_DQUOTE] = ACTIONS(1838), + [anon_sym_U_DQUOTE] = ACTIONS(1838), + [anon_sym_u8_DQUOTE] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym_true] = ACTIONS(1840), + [sym_false] = ACTIONS(1840), + [anon_sym_NULL] = ACTIONS(1842), + [anon_sym_nullptr] = ACTIONS(1842), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1844), + [anon_sym_decltype] = ACTIONS(1846), + [anon_sym_typename] = ACTIONS(1848), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1852), + [anon_sym_R_DQUOTE] = ACTIONS(1854), + [anon_sym_LR_DQUOTE] = ACTIONS(1854), + [anon_sym_uR_DQUOTE] = ACTIONS(1854), + [anon_sym_UR_DQUOTE] = ACTIONS(1854), + [anon_sym_u8R_DQUOTE] = ACTIONS(1854), + [anon_sym_co_await] = ACTIONS(1856), + [anon_sym_new] = ACTIONS(1858), + [anon_sym_requires] = ACTIONS(1860), + [sym_this] = ACTIONS(1840), }, [161] = { - [sym_compound_statement] = STATE(8449), - [sym_type_qualifier] = STATE(3904), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(4455), - [sym_sized_type_specifier] = STATE(1879), - [sym_enum_specifier] = STATE(1879), - [sym_struct_specifier] = STATE(1879), - [sym_union_specifier] = STATE(1879), - [sym_expression] = STATE(2912), - [sym__string] = STATE(3235), - [sym_comma_expression] = STATE(8449), - [sym_conditional_expression] = STATE(3373), - [sym_assignment_expression] = STATE(3373), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3373), - [sym_binary_expression] = STATE(3373), - [sym_update_expression] = STATE(3373), - [sym_cast_expression] = STATE(3373), - [sym_type_descriptor] = STATE(8434), - [sym_sizeof_expression] = STATE(3373), - [sym_alignof_expression] = STATE(3373), - [sym_offsetof_expression] = STATE(3373), - [sym_generic_expression] = STATE(3373), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3373), - [sym_extension_expression] = STATE(3373), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3373), - [sym_parenthesized_expression] = STATE(3365), - [sym_char_literal] = STATE(3235), - [sym_concatenated_string] = STATE(3235), - [sym_string_literal] = STATE(2358), - [sym_null] = STATE(3373), - [sym_placeholder_type_specifier] = STATE(1879), - [sym_decltype_auto] = STATE(1859), - [sym_decltype] = STATE(1713), - [sym_class_specifier] = STATE(1879), - [sym__class_name] = STATE(7814), - [sym_dependent_type] = STATE(1879), - [sym_template_type] = STATE(5285), - [sym_template_function] = STATE(3373), - [sym_raw_string_literal] = STATE(2358), - [sym_co_await_expression] = STATE(3373), - [sym_new_expression] = STATE(3373), - [sym_delete_expression] = STATE(3373), - [sym_requires_clause] = STATE(3373), - [sym_requires_expression] = STATE(3373), - [sym_lambda_expression] = STATE(3373), - [sym_lambda_capture_specifier] = STATE(5414), - [sym__unary_left_fold] = STATE(8119), - [sym__unary_right_fold] = STATE(8280), - [sym__binary_fold] = STATE(7936), - [sym_fold_expression] = STATE(3373), - [sym_parameter_pack_expansion] = STATE(3373), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5702), - [sym_qualified_identifier] = STATE(3365), - [sym_qualified_type_identifier] = STATE(5327), - [sym__assignment_expression_lhs] = STATE(8569), - [sym_user_defined_literal] = STATE(3365), - [aux_sym__type_definition_type_repeat1] = STATE(3904), - [aux_sym_sized_type_specifier_repeat1] = STATE(4209), + [sym_compound_statement] = STATE(8629), + [sym_type_qualifier] = STATE(3891), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(4528), + [sym_sized_type_specifier] = STATE(1890), + [sym_enum_specifier] = STATE(1890), + [sym_struct_specifier] = STATE(1890), + [sym_union_specifier] = STATE(1890), + [sym_expression] = STATE(2991), + [sym__string] = STATE(3393), + [sym_comma_expression] = STATE(8629), + [sym_conditional_expression] = STATE(3401), + [sym_assignment_expression] = STATE(3401), + [sym_pointer_expression] = STATE(3405), + [sym_unary_expression] = STATE(3401), + [sym_binary_expression] = STATE(3401), + [sym_update_expression] = STATE(3401), + [sym_cast_expression] = STATE(3401), + [sym_type_descriptor] = STATE(8849), + [sym_sizeof_expression] = STATE(3401), + [sym_alignof_expression] = STATE(3401), + [sym_offsetof_expression] = STATE(3401), + [sym_generic_expression] = STATE(3401), + [sym_subscript_expression] = STATE(3405), + [sym_call_expression] = STATE(3405), + [sym_gnu_asm_expression] = STATE(3401), + [sym_extension_expression] = STATE(3401), + [sym_field_expression] = STATE(3405), + [sym_compound_literal_expression] = STATE(3401), + [sym_parenthesized_expression] = STATE(3405), + [sym_char_literal] = STATE(3393), + [sym_concatenated_string] = STATE(3393), + [sym_string_literal] = STATE(2380), + [sym_null] = STATE(3401), + [sym_placeholder_type_specifier] = STATE(1890), + [sym_decltype_auto] = STATE(1888), + [sym_decltype] = STATE(1782), + [sym_class_specifier] = STATE(1890), + [sym__class_name] = STATE(7745), + [sym_dependent_type] = STATE(1890), + [sym_template_type] = STATE(5365), + [sym_template_function] = STATE(3401), + [sym_raw_string_literal] = STATE(2380), + [sym_co_await_expression] = STATE(3401), + [sym_new_expression] = STATE(3401), + [sym_delete_expression] = STATE(3401), + [sym_requires_clause] = STATE(3401), + [sym_requires_expression] = STATE(3401), + [sym_lambda_expression] = STATE(3401), + [sym_lambda_capture_specifier] = STATE(5494), + [sym__unary_left_fold] = STATE(8716), + [sym__unary_right_fold] = STATE(8742), + [sym__binary_fold] = STATE(8824), + [sym_fold_expression] = STATE(3401), + [sym_parameter_pack_expansion] = STATE(3401), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5846), + [sym_qualified_identifier] = STATE(3405), + [sym_qualified_type_identifier] = STATE(5382), + [sym__assignment_expression_lhs] = STATE(8390), + [sym_user_defined_literal] = STATE(3405), + [aux_sym__type_definition_type_repeat1] = STATE(3891), + [aux_sym_sized_type_specifier_repeat1] = STATE(4234), [sym_identifier] = ACTIONS(2016), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1790), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1788), [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(1804), - [anon_sym_COLON_COLON] = ACTIONS(1806), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1810), - [anon_sym_unsigned] = ACTIONS(1810), - [anon_sym_long] = ACTIONS(1810), - [anon_sym_short] = ACTIONS(1810), + [anon_sym_signed] = ACTIONS(1808), + [anon_sym_unsigned] = ACTIONS(1808), + [anon_sym_long] = ACTIONS(1808), + [anon_sym_short] = ACTIONS(1808), [anon_sym_LBRACK] = ACTIONS(2020), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), @@ -67280,137 +67563,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(1814), - [anon_sym_enum] = ACTIONS(1816), - [anon_sym_class] = ACTIONS(1818), - [anon_sym_struct] = ACTIONS(1820), - [anon_sym_union] = ACTIONS(1822), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1846), - [anon_sym_decltype] = ACTIONS(1848), - [anon_sym_typename] = ACTIONS(1850), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), + [sym_primitive_type] = ACTIONS(1812), + [anon_sym_enum] = ACTIONS(1814), + [anon_sym_class] = ACTIONS(1816), + [anon_sym_struct] = ACTIONS(1818), + [anon_sym_union] = ACTIONS(1820), + [anon_sym_not] = ACTIONS(1796), + [anon_sym_compl] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_sizeof] = ACTIONS(1824), + [anon_sym___alignof__] = ACTIONS(1826), + [anon_sym___alignof] = ACTIONS(1826), + [anon_sym__alignof] = ACTIONS(1826), + [anon_sym_alignof] = ACTIONS(1826), + [anon_sym__Alignof] = ACTIONS(1826), + [anon_sym_offsetof] = ACTIONS(1828), + [anon_sym__Generic] = ACTIONS(1830), + [anon_sym_asm] = ACTIONS(1832), + [anon_sym___asm__] = ACTIONS(1832), + [anon_sym___asm] = ACTIONS(1832), + [sym_number_literal] = ACTIONS(1834), + [anon_sym_L_SQUOTE] = ACTIONS(1836), + [anon_sym_u_SQUOTE] = ACTIONS(1836), + [anon_sym_U_SQUOTE] = ACTIONS(1836), + [anon_sym_u8_SQUOTE] = ACTIONS(1836), + [anon_sym_SQUOTE] = ACTIONS(1836), + [anon_sym_L_DQUOTE] = ACTIONS(1838), + [anon_sym_u_DQUOTE] = ACTIONS(1838), + [anon_sym_U_DQUOTE] = ACTIONS(1838), + [anon_sym_u8_DQUOTE] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym_true] = ACTIONS(1840), + [sym_false] = ACTIONS(1840), + [anon_sym_NULL] = ACTIONS(1842), + [anon_sym_nullptr] = ACTIONS(1842), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1844), + [anon_sym_decltype] = ACTIONS(1846), + [anon_sym_typename] = ACTIONS(1848), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1852), + [anon_sym_R_DQUOTE] = ACTIONS(1854), + [anon_sym_LR_DQUOTE] = ACTIONS(1854), + [anon_sym_uR_DQUOTE] = ACTIONS(1854), + [anon_sym_UR_DQUOTE] = ACTIONS(1854), + [anon_sym_u8R_DQUOTE] = ACTIONS(1854), + [anon_sym_co_await] = ACTIONS(1856), + [anon_sym_new] = ACTIONS(1858), + [anon_sym_requires] = ACTIONS(1860), + [sym_this] = ACTIONS(1840), }, [162] = { - [sym_compound_statement] = STATE(8449), - [sym_type_qualifier] = STATE(3904), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(4455), - [sym_sized_type_specifier] = STATE(1879), - [sym_enum_specifier] = STATE(1879), - [sym_struct_specifier] = STATE(1879), - [sym_union_specifier] = STATE(1879), - [sym_expression] = STATE(2912), - [sym__string] = STATE(3235), - [sym_comma_expression] = STATE(8449), - [sym_conditional_expression] = STATE(3373), - [sym_assignment_expression] = STATE(3373), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3373), - [sym_binary_expression] = STATE(3373), - [sym_update_expression] = STATE(3373), - [sym_cast_expression] = STATE(3373), - [sym_type_descriptor] = STATE(8376), - [sym_sizeof_expression] = STATE(3373), - [sym_alignof_expression] = STATE(3373), - [sym_offsetof_expression] = STATE(3373), - [sym_generic_expression] = STATE(3373), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3373), - [sym_extension_expression] = STATE(3373), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3373), - [sym_parenthesized_expression] = STATE(3365), - [sym_char_literal] = STATE(3235), - [sym_concatenated_string] = STATE(3235), - [sym_string_literal] = STATE(2358), - [sym_null] = STATE(3373), - [sym_placeholder_type_specifier] = STATE(1879), - [sym_decltype_auto] = STATE(1859), - [sym_decltype] = STATE(1713), - [sym_class_specifier] = STATE(1879), - [sym__class_name] = STATE(7814), - [sym_dependent_type] = STATE(1879), - [sym_template_type] = STATE(5285), - [sym_template_function] = STATE(3373), - [sym_raw_string_literal] = STATE(2358), - [sym_co_await_expression] = STATE(3373), - [sym_new_expression] = STATE(3373), - [sym_delete_expression] = STATE(3373), - [sym_requires_clause] = STATE(3373), - [sym_requires_expression] = STATE(3373), - [sym_lambda_expression] = STATE(3373), - [sym_lambda_capture_specifier] = STATE(5414), - [sym__unary_left_fold] = STATE(8119), - [sym__unary_right_fold] = STATE(8280), - [sym__binary_fold] = STATE(7936), - [sym_fold_expression] = STATE(3373), - [sym_parameter_pack_expansion] = STATE(3373), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5702), - [sym_qualified_identifier] = STATE(3365), - [sym_qualified_type_identifier] = STATE(5327), - [sym__assignment_expression_lhs] = STATE(8569), - [sym_user_defined_literal] = STATE(3365), - [aux_sym__type_definition_type_repeat1] = STATE(3904), - [aux_sym_sized_type_specifier_repeat1] = STATE(4209), + [sym_compound_statement] = STATE(8629), + [sym_type_qualifier] = STATE(3891), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(4528), + [sym_sized_type_specifier] = STATE(1890), + [sym_enum_specifier] = STATE(1890), + [sym_struct_specifier] = STATE(1890), + [sym_union_specifier] = STATE(1890), + [sym_expression] = STATE(2991), + [sym__string] = STATE(3393), + [sym_comma_expression] = STATE(8629), + [sym_conditional_expression] = STATE(3401), + [sym_assignment_expression] = STATE(3401), + [sym_pointer_expression] = STATE(3405), + [sym_unary_expression] = STATE(3401), + [sym_binary_expression] = STATE(3401), + [sym_update_expression] = STATE(3401), + [sym_cast_expression] = STATE(3401), + [sym_type_descriptor] = STATE(8611), + [sym_sizeof_expression] = STATE(3401), + [sym_alignof_expression] = STATE(3401), + [sym_offsetof_expression] = STATE(3401), + [sym_generic_expression] = STATE(3401), + [sym_subscript_expression] = STATE(3405), + [sym_call_expression] = STATE(3405), + [sym_gnu_asm_expression] = STATE(3401), + [sym_extension_expression] = STATE(3401), + [sym_field_expression] = STATE(3405), + [sym_compound_literal_expression] = STATE(3401), + [sym_parenthesized_expression] = STATE(3405), + [sym_char_literal] = STATE(3393), + [sym_concatenated_string] = STATE(3393), + [sym_string_literal] = STATE(2380), + [sym_null] = STATE(3401), + [sym_placeholder_type_specifier] = STATE(1890), + [sym_decltype_auto] = STATE(1888), + [sym_decltype] = STATE(1782), + [sym_class_specifier] = STATE(1890), + [sym__class_name] = STATE(7745), + [sym_dependent_type] = STATE(1890), + [sym_template_type] = STATE(5365), + [sym_template_function] = STATE(3401), + [sym_raw_string_literal] = STATE(2380), + [sym_co_await_expression] = STATE(3401), + [sym_new_expression] = STATE(3401), + [sym_delete_expression] = STATE(3401), + [sym_requires_clause] = STATE(3401), + [sym_requires_expression] = STATE(3401), + [sym_lambda_expression] = STATE(3401), + [sym_lambda_capture_specifier] = STATE(5494), + [sym__unary_left_fold] = STATE(8151), + [sym__unary_right_fold] = STATE(8158), + [sym__binary_fold] = STATE(8170), + [sym_fold_expression] = STATE(3401), + [sym_parameter_pack_expansion] = STATE(3401), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5846), + [sym_qualified_identifier] = STATE(3405), + [sym_qualified_type_identifier] = STATE(5382), + [sym__assignment_expression_lhs] = STATE(8390), + [sym_user_defined_literal] = STATE(3405), + [aux_sym__type_definition_type_repeat1] = STATE(3891), + [aux_sym_sized_type_specifier_repeat1] = STATE(4234), [sym_identifier] = ACTIONS(2016), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1790), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1788), [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(1804), - [anon_sym_COLON_COLON] = ACTIONS(1806), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1810), - [anon_sym_unsigned] = ACTIONS(1810), - [anon_sym_long] = ACTIONS(1810), - [anon_sym_short] = ACTIONS(1810), + [anon_sym_signed] = ACTIONS(1808), + [anon_sym_unsigned] = ACTIONS(1808), + [anon_sym_long] = ACTIONS(1808), + [anon_sym_short] = ACTIONS(1808), [anon_sym_LBRACK] = ACTIONS(2020), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), @@ -67426,137 +67709,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(1814), - [anon_sym_enum] = ACTIONS(1816), - [anon_sym_class] = ACTIONS(1818), - [anon_sym_struct] = ACTIONS(1820), - [anon_sym_union] = ACTIONS(1822), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1846), - [anon_sym_decltype] = ACTIONS(1848), - [anon_sym_typename] = ACTIONS(1850), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), + [sym_primitive_type] = ACTIONS(1812), + [anon_sym_enum] = ACTIONS(1814), + [anon_sym_class] = ACTIONS(1816), + [anon_sym_struct] = ACTIONS(1818), + [anon_sym_union] = ACTIONS(1820), + [anon_sym_not] = ACTIONS(1796), + [anon_sym_compl] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_sizeof] = ACTIONS(1824), + [anon_sym___alignof__] = ACTIONS(1826), + [anon_sym___alignof] = ACTIONS(1826), + [anon_sym__alignof] = ACTIONS(1826), + [anon_sym_alignof] = ACTIONS(1826), + [anon_sym__Alignof] = ACTIONS(1826), + [anon_sym_offsetof] = ACTIONS(1828), + [anon_sym__Generic] = ACTIONS(1830), + [anon_sym_asm] = ACTIONS(1832), + [anon_sym___asm__] = ACTIONS(1832), + [anon_sym___asm] = ACTIONS(1832), + [sym_number_literal] = ACTIONS(1834), + [anon_sym_L_SQUOTE] = ACTIONS(1836), + [anon_sym_u_SQUOTE] = ACTIONS(1836), + [anon_sym_U_SQUOTE] = ACTIONS(1836), + [anon_sym_u8_SQUOTE] = ACTIONS(1836), + [anon_sym_SQUOTE] = ACTIONS(1836), + [anon_sym_L_DQUOTE] = ACTIONS(1838), + [anon_sym_u_DQUOTE] = ACTIONS(1838), + [anon_sym_U_DQUOTE] = ACTIONS(1838), + [anon_sym_u8_DQUOTE] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym_true] = ACTIONS(1840), + [sym_false] = ACTIONS(1840), + [anon_sym_NULL] = ACTIONS(1842), + [anon_sym_nullptr] = ACTIONS(1842), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1844), + [anon_sym_decltype] = ACTIONS(1846), + [anon_sym_typename] = ACTIONS(1848), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1852), + [anon_sym_R_DQUOTE] = ACTIONS(1854), + [anon_sym_LR_DQUOTE] = ACTIONS(1854), + [anon_sym_uR_DQUOTE] = ACTIONS(1854), + [anon_sym_UR_DQUOTE] = ACTIONS(1854), + [anon_sym_u8R_DQUOTE] = ACTIONS(1854), + [anon_sym_co_await] = ACTIONS(1856), + [anon_sym_new] = ACTIONS(1858), + [anon_sym_requires] = ACTIONS(1860), + [sym_this] = ACTIONS(1840), }, [163] = { - [sym_compound_statement] = STATE(8449), - [sym_type_qualifier] = STATE(3904), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(4455), - [sym_sized_type_specifier] = STATE(1879), - [sym_enum_specifier] = STATE(1879), - [sym_struct_specifier] = STATE(1879), - [sym_union_specifier] = STATE(1879), - [sym_expression] = STATE(2912), - [sym__string] = STATE(3235), - [sym_comma_expression] = STATE(8449), - [sym_conditional_expression] = STATE(3373), - [sym_assignment_expression] = STATE(3373), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3373), - [sym_binary_expression] = STATE(3373), - [sym_update_expression] = STATE(3373), - [sym_cast_expression] = STATE(3373), - [sym_type_descriptor] = STATE(8686), - [sym_sizeof_expression] = STATE(3373), - [sym_alignof_expression] = STATE(3373), - [sym_offsetof_expression] = STATE(3373), - [sym_generic_expression] = STATE(3373), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3373), - [sym_extension_expression] = STATE(3373), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3373), - [sym_parenthesized_expression] = STATE(3365), - [sym_char_literal] = STATE(3235), - [sym_concatenated_string] = STATE(3235), - [sym_string_literal] = STATE(2358), - [sym_null] = STATE(3373), - [sym_placeholder_type_specifier] = STATE(1879), - [sym_decltype_auto] = STATE(1859), - [sym_decltype] = STATE(1713), - [sym_class_specifier] = STATE(1879), - [sym__class_name] = STATE(7814), - [sym_dependent_type] = STATE(1879), - [sym_template_type] = STATE(5285), - [sym_template_function] = STATE(3373), - [sym_raw_string_literal] = STATE(2358), - [sym_co_await_expression] = STATE(3373), - [sym_new_expression] = STATE(3373), - [sym_delete_expression] = STATE(3373), - [sym_requires_clause] = STATE(3373), - [sym_requires_expression] = STATE(3373), - [sym_lambda_expression] = STATE(3373), - [sym_lambda_capture_specifier] = STATE(5414), - [sym__unary_left_fold] = STATE(8232), - [sym__unary_right_fold] = STATE(8236), - [sym__binary_fold] = STATE(8240), - [sym_fold_expression] = STATE(3373), - [sym_parameter_pack_expansion] = STATE(3373), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5702), - [sym_qualified_identifier] = STATE(3365), - [sym_qualified_type_identifier] = STATE(5327), - [sym__assignment_expression_lhs] = STATE(8569), - [sym_user_defined_literal] = STATE(3365), - [aux_sym__type_definition_type_repeat1] = STATE(3904), - [aux_sym_sized_type_specifier_repeat1] = STATE(4209), + [sym_compound_statement] = STATE(8629), + [sym_type_qualifier] = STATE(3891), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(4528), + [sym_sized_type_specifier] = STATE(1890), + [sym_enum_specifier] = STATE(1890), + [sym_struct_specifier] = STATE(1890), + [sym_union_specifier] = STATE(1890), + [sym_expression] = STATE(2991), + [sym__string] = STATE(3393), + [sym_comma_expression] = STATE(8629), + [sym_conditional_expression] = STATE(3401), + [sym_assignment_expression] = STATE(3401), + [sym_pointer_expression] = STATE(3405), + [sym_unary_expression] = STATE(3401), + [sym_binary_expression] = STATE(3401), + [sym_update_expression] = STATE(3401), + [sym_cast_expression] = STATE(3401), + [sym_type_descriptor] = STATE(8647), + [sym_sizeof_expression] = STATE(3401), + [sym_alignof_expression] = STATE(3401), + [sym_offsetof_expression] = STATE(3401), + [sym_generic_expression] = STATE(3401), + [sym_subscript_expression] = STATE(3405), + [sym_call_expression] = STATE(3405), + [sym_gnu_asm_expression] = STATE(3401), + [sym_extension_expression] = STATE(3401), + [sym_field_expression] = STATE(3405), + [sym_compound_literal_expression] = STATE(3401), + [sym_parenthesized_expression] = STATE(3405), + [sym_char_literal] = STATE(3393), + [sym_concatenated_string] = STATE(3393), + [sym_string_literal] = STATE(2380), + [sym_null] = STATE(3401), + [sym_placeholder_type_specifier] = STATE(1890), + [sym_decltype_auto] = STATE(1888), + [sym_decltype] = STATE(1782), + [sym_class_specifier] = STATE(1890), + [sym__class_name] = STATE(7745), + [sym_dependent_type] = STATE(1890), + [sym_template_type] = STATE(5365), + [sym_template_function] = STATE(3401), + [sym_raw_string_literal] = STATE(2380), + [sym_co_await_expression] = STATE(3401), + [sym_new_expression] = STATE(3401), + [sym_delete_expression] = STATE(3401), + [sym_requires_clause] = STATE(3401), + [sym_requires_expression] = STATE(3401), + [sym_lambda_expression] = STATE(3401), + [sym_lambda_capture_specifier] = STATE(5494), + [sym__unary_left_fold] = STATE(8716), + [sym__unary_right_fold] = STATE(8742), + [sym__binary_fold] = STATE(8824), + [sym_fold_expression] = STATE(3401), + [sym_parameter_pack_expansion] = STATE(3401), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5846), + [sym_qualified_identifier] = STATE(3405), + [sym_qualified_type_identifier] = STATE(5382), + [sym__assignment_expression_lhs] = STATE(8390), + [sym_user_defined_literal] = STATE(3405), + [aux_sym__type_definition_type_repeat1] = STATE(3891), + [aux_sym_sized_type_specifier_repeat1] = STATE(4234), [sym_identifier] = ACTIONS(2016), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1790), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1788), [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(1804), - [anon_sym_COLON_COLON] = ACTIONS(1806), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1810), - [anon_sym_unsigned] = ACTIONS(1810), - [anon_sym_long] = ACTIONS(1810), - [anon_sym_short] = ACTIONS(1810), + [anon_sym_signed] = ACTIONS(1808), + [anon_sym_unsigned] = ACTIONS(1808), + [anon_sym_long] = ACTIONS(1808), + [anon_sym_short] = ACTIONS(1808), [anon_sym_LBRACK] = ACTIONS(2020), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), @@ -67572,283 +67855,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(1814), - [anon_sym_enum] = ACTIONS(1816), - [anon_sym_class] = ACTIONS(1818), - [anon_sym_struct] = ACTIONS(1820), - [anon_sym_union] = ACTIONS(1822), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1846), - [anon_sym_decltype] = ACTIONS(1848), - [anon_sym_typename] = ACTIONS(1850), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), + [sym_primitive_type] = ACTIONS(1812), + [anon_sym_enum] = ACTIONS(1814), + [anon_sym_class] = ACTIONS(1816), + [anon_sym_struct] = ACTIONS(1818), + [anon_sym_union] = ACTIONS(1820), + [anon_sym_not] = ACTIONS(1796), + [anon_sym_compl] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_sizeof] = ACTIONS(1824), + [anon_sym___alignof__] = ACTIONS(1826), + [anon_sym___alignof] = ACTIONS(1826), + [anon_sym__alignof] = ACTIONS(1826), + [anon_sym_alignof] = ACTIONS(1826), + [anon_sym__Alignof] = ACTIONS(1826), + [anon_sym_offsetof] = ACTIONS(1828), + [anon_sym__Generic] = ACTIONS(1830), + [anon_sym_asm] = ACTIONS(1832), + [anon_sym___asm__] = ACTIONS(1832), + [anon_sym___asm] = ACTIONS(1832), + [sym_number_literal] = ACTIONS(1834), + [anon_sym_L_SQUOTE] = ACTIONS(1836), + [anon_sym_u_SQUOTE] = ACTIONS(1836), + [anon_sym_U_SQUOTE] = ACTIONS(1836), + [anon_sym_u8_SQUOTE] = ACTIONS(1836), + [anon_sym_SQUOTE] = ACTIONS(1836), + [anon_sym_L_DQUOTE] = ACTIONS(1838), + [anon_sym_u_DQUOTE] = ACTIONS(1838), + [anon_sym_U_DQUOTE] = ACTIONS(1838), + [anon_sym_u8_DQUOTE] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym_true] = ACTIONS(1840), + [sym_false] = ACTIONS(1840), + [anon_sym_NULL] = ACTIONS(1842), + [anon_sym_nullptr] = ACTIONS(1842), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1844), + [anon_sym_decltype] = ACTIONS(1846), + [anon_sym_typename] = ACTIONS(1848), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1852), + [anon_sym_R_DQUOTE] = ACTIONS(1854), + [anon_sym_LR_DQUOTE] = ACTIONS(1854), + [anon_sym_uR_DQUOTE] = ACTIONS(1854), + [anon_sym_UR_DQUOTE] = ACTIONS(1854), + [anon_sym_u8R_DQUOTE] = ACTIONS(1854), + [anon_sym_co_await] = ACTIONS(1856), + [anon_sym_new] = ACTIONS(1858), + [anon_sym_requires] = ACTIONS(1860), + [sym_this] = ACTIONS(1840), }, [164] = { - [sym_attribute_declaration] = STATE(164), - [sym_compound_statement] = STATE(401), - [sym_attributed_statement] = STATE(401), - [sym_statement] = STATE(343), - [sym_labeled_statement] = STATE(401), - [sym_expression_statement] = STATE(401), - [sym_if_statement] = STATE(401), - [sym_switch_statement] = STATE(401), - [sym_case_statement] = STATE(401), - [sym_while_statement] = STATE(401), - [sym_do_statement] = STATE(401), - [sym_for_statement] = STATE(401), - [sym_return_statement] = STATE(401), - [sym_break_statement] = STATE(401), - [sym_continue_statement] = STATE(401), - [sym_goto_statement] = STATE(401), - [sym_seh_try_statement] = STATE(401), - [sym_seh_leave_statement] = STATE(401), - [sym_expression] = STATE(4552), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8450), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_for_range_loop] = STATE(401), - [sym_co_return_statement] = STATE(401), - [sym_co_yield_statement] = STATE(401), - [sym_throw_statement] = STATE(401), - [sym_try_statement] = STATE(401), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_attributed_declarator_repeat1] = STATE(164), - [sym_identifier] = ACTIONS(2329), - [anon_sym_LPAREN2] = ACTIONS(2033), - [anon_sym_BANG] = ACTIONS(2036), - [anon_sym_TILDE] = ACTIONS(2036), - [anon_sym_DASH] = ACTIONS(2039), - [anon_sym_PLUS] = ACTIONS(2039), - [anon_sym_STAR] = ACTIONS(2042), - [anon_sym_AMP] = ACTIONS(2042), - [anon_sym_SEMI] = ACTIONS(2332), - [anon_sym___extension__] = ACTIONS(2048), - [anon_sym_using] = ACTIONS(2051), - [anon_sym_COLON_COLON] = ACTIONS(2053), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2056), - [anon_sym_LBRACE] = ACTIONS(2335), - [anon_sym_LBRACK] = ACTIONS(2062), - [sym_primitive_type] = ACTIONS(2065), - [anon_sym_if] = ACTIONS(2338), - [anon_sym_switch] = ACTIONS(2341), - [anon_sym_case] = ACTIONS(2344), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2350), - [anon_sym_do] = ACTIONS(2353), - [anon_sym_for] = ACTIONS(2356), - [anon_sym_return] = ACTIONS(2359), - [anon_sym_break] = ACTIONS(2362), - [anon_sym_continue] = ACTIONS(2365), - [anon_sym_goto] = ACTIONS(2368), - [anon_sym___try] = ACTIONS(2371), - [anon_sym___leave] = ACTIONS(2374), - [anon_sym_not] = ACTIONS(2039), - [anon_sym_compl] = ACTIONS(2039), - [anon_sym_DASH_DASH] = ACTIONS(2107), - [anon_sym_PLUS_PLUS] = ACTIONS(2107), - [anon_sym_sizeof] = ACTIONS(2110), - [anon_sym___alignof__] = ACTIONS(2113), - [anon_sym___alignof] = ACTIONS(2113), - [anon_sym__alignof] = ACTIONS(2113), - [anon_sym_alignof] = ACTIONS(2113), - [anon_sym__Alignof] = ACTIONS(2113), - [anon_sym_offsetof] = ACTIONS(2116), - [anon_sym__Generic] = ACTIONS(2119), - [anon_sym_asm] = ACTIONS(2122), - [anon_sym___asm__] = ACTIONS(2122), - [anon_sym___asm] = ACTIONS(2122), - [sym_number_literal] = ACTIONS(2125), - [anon_sym_L_SQUOTE] = ACTIONS(2128), - [anon_sym_u_SQUOTE] = ACTIONS(2128), - [anon_sym_U_SQUOTE] = ACTIONS(2128), - [anon_sym_u8_SQUOTE] = ACTIONS(2128), - [anon_sym_SQUOTE] = ACTIONS(2128), - [anon_sym_L_DQUOTE] = ACTIONS(2131), - [anon_sym_u_DQUOTE] = ACTIONS(2131), - [anon_sym_U_DQUOTE] = ACTIONS(2131), - [anon_sym_u8_DQUOTE] = ACTIONS(2131), - [anon_sym_DQUOTE] = ACTIONS(2131), - [sym_true] = ACTIONS(2134), - [sym_false] = ACTIONS(2134), - [anon_sym_NULL] = ACTIONS(2137), - [anon_sym_nullptr] = ACTIONS(2137), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2140), - [anon_sym_template] = ACTIONS(2143), - [anon_sym_try] = ACTIONS(2377), - [anon_sym_delete] = ACTIONS(2149), - [anon_sym_throw] = ACTIONS(2380), - [anon_sym_co_return] = ACTIONS(2383), - [anon_sym_co_yield] = ACTIONS(2386), - [anon_sym_R_DQUOTE] = ACTIONS(2161), - [anon_sym_LR_DQUOTE] = ACTIONS(2161), - [anon_sym_uR_DQUOTE] = ACTIONS(2161), - [anon_sym_UR_DQUOTE] = ACTIONS(2161), - [anon_sym_u8R_DQUOTE] = ACTIONS(2161), - [anon_sym_co_await] = ACTIONS(2164), - [anon_sym_new] = ACTIONS(2167), - [anon_sym_requires] = ACTIONS(2170), - [sym_this] = ACTIONS(2134), - }, - [165] = { - [sym_compound_statement] = STATE(8449), - [sym_type_qualifier] = STATE(3904), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(4455), - [sym_sized_type_specifier] = STATE(1879), - [sym_enum_specifier] = STATE(1879), - [sym_struct_specifier] = STATE(1879), - [sym_union_specifier] = STATE(1879), - [sym_expression] = STATE(2912), - [sym__string] = STATE(3235), - [sym_comma_expression] = STATE(8449), - [sym_conditional_expression] = STATE(3373), - [sym_assignment_expression] = STATE(3373), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3373), - [sym_binary_expression] = STATE(3373), - [sym_update_expression] = STATE(3373), - [sym_cast_expression] = STATE(3373), - [sym_type_descriptor] = STATE(8620), - [sym_sizeof_expression] = STATE(3373), - [sym_alignof_expression] = STATE(3373), - [sym_offsetof_expression] = STATE(3373), - [sym_generic_expression] = STATE(3373), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3373), - [sym_extension_expression] = STATE(3373), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3373), - [sym_parenthesized_expression] = STATE(3365), - [sym_char_literal] = STATE(3235), - [sym_concatenated_string] = STATE(3235), - [sym_string_literal] = STATE(2358), - [sym_null] = STATE(3373), - [sym_placeholder_type_specifier] = STATE(1879), - [sym_decltype_auto] = STATE(1859), - [sym_decltype] = STATE(1713), - [sym_class_specifier] = STATE(1879), - [sym__class_name] = STATE(7814), - [sym_dependent_type] = STATE(1879), - [sym_template_type] = STATE(5285), - [sym_template_function] = STATE(3373), - [sym_raw_string_literal] = STATE(2358), - [sym_co_await_expression] = STATE(3373), - [sym_new_expression] = STATE(3373), - [sym_delete_expression] = STATE(3373), - [sym_requires_clause] = STATE(3373), - [sym_requires_expression] = STATE(3373), - [sym_lambda_expression] = STATE(3373), - [sym_lambda_capture_specifier] = STATE(5414), - [sym__unary_left_fold] = STATE(8119), - [sym__unary_right_fold] = STATE(8280), - [sym__binary_fold] = STATE(7936), - [sym_fold_expression] = STATE(3373), - [sym_parameter_pack_expansion] = STATE(3373), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5702), - [sym_qualified_identifier] = STATE(3365), - [sym_qualified_type_identifier] = STATE(5327), - [sym__assignment_expression_lhs] = STATE(8569), - [sym_user_defined_literal] = STATE(3365), - [aux_sym__type_definition_type_repeat1] = STATE(3904), - [aux_sym_sized_type_specifier_repeat1] = STATE(4209), + [sym_compound_statement] = STATE(8629), + [sym_type_qualifier] = STATE(3891), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(4528), + [sym_sized_type_specifier] = STATE(1890), + [sym_enum_specifier] = STATE(1890), + [sym_struct_specifier] = STATE(1890), + [sym_union_specifier] = STATE(1890), + [sym_expression] = STATE(2991), + [sym__string] = STATE(3393), + [sym_comma_expression] = STATE(8629), + [sym_conditional_expression] = STATE(3401), + [sym_assignment_expression] = STATE(3401), + [sym_pointer_expression] = STATE(3405), + [sym_unary_expression] = STATE(3401), + [sym_binary_expression] = STATE(3401), + [sym_update_expression] = STATE(3401), + [sym_cast_expression] = STATE(3401), + [sym_type_descriptor] = STATE(8698), + [sym_sizeof_expression] = STATE(3401), + [sym_alignof_expression] = STATE(3401), + [sym_offsetof_expression] = STATE(3401), + [sym_generic_expression] = STATE(3401), + [sym_subscript_expression] = STATE(3405), + [sym_call_expression] = STATE(3405), + [sym_gnu_asm_expression] = STATE(3401), + [sym_extension_expression] = STATE(3401), + [sym_field_expression] = STATE(3405), + [sym_compound_literal_expression] = STATE(3401), + [sym_parenthesized_expression] = STATE(3405), + [sym_char_literal] = STATE(3393), + [sym_concatenated_string] = STATE(3393), + [sym_string_literal] = STATE(2380), + [sym_null] = STATE(3401), + [sym_placeholder_type_specifier] = STATE(1890), + [sym_decltype_auto] = STATE(1888), + [sym_decltype] = STATE(1782), + [sym_class_specifier] = STATE(1890), + [sym__class_name] = STATE(7745), + [sym_dependent_type] = STATE(1890), + [sym_template_type] = STATE(5365), + [sym_template_function] = STATE(3401), + [sym_raw_string_literal] = STATE(2380), + [sym_co_await_expression] = STATE(3401), + [sym_new_expression] = STATE(3401), + [sym_delete_expression] = STATE(3401), + [sym_requires_clause] = STATE(3401), + [sym_requires_expression] = STATE(3401), + [sym_lambda_expression] = STATE(3401), + [sym_lambda_capture_specifier] = STATE(5494), + [sym__unary_left_fold] = STATE(8716), + [sym__unary_right_fold] = STATE(8742), + [sym__binary_fold] = STATE(8824), + [sym_fold_expression] = STATE(3401), + [sym_parameter_pack_expansion] = STATE(3401), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5846), + [sym_qualified_identifier] = STATE(3405), + [sym_qualified_type_identifier] = STATE(5382), + [sym__assignment_expression_lhs] = STATE(8390), + [sym_user_defined_literal] = STATE(3405), + [aux_sym__type_definition_type_repeat1] = STATE(3891), + [aux_sym_sized_type_specifier_repeat1] = STATE(4234), [sym_identifier] = ACTIONS(2016), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1790), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1788), [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(1804), - [anon_sym_COLON_COLON] = ACTIONS(1806), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1810), - [anon_sym_unsigned] = ACTIONS(1810), - [anon_sym_long] = ACTIONS(1810), - [anon_sym_short] = ACTIONS(1810), + [anon_sym_signed] = ACTIONS(1808), + [anon_sym_unsigned] = ACTIONS(1808), + [anon_sym_long] = ACTIONS(1808), + [anon_sym_short] = ACTIONS(1808), [anon_sym_LBRACK] = ACTIONS(2020), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), @@ -67864,137 +68001,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(1814), - [anon_sym_enum] = ACTIONS(1816), - [anon_sym_class] = ACTIONS(1818), - [anon_sym_struct] = ACTIONS(1820), - [anon_sym_union] = ACTIONS(1822), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1846), - [anon_sym_decltype] = ACTIONS(1848), - [anon_sym_typename] = ACTIONS(1850), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), + [sym_primitive_type] = ACTIONS(1812), + [anon_sym_enum] = ACTIONS(1814), + [anon_sym_class] = ACTIONS(1816), + [anon_sym_struct] = ACTIONS(1818), + [anon_sym_union] = ACTIONS(1820), + [anon_sym_not] = ACTIONS(1796), + [anon_sym_compl] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_sizeof] = ACTIONS(1824), + [anon_sym___alignof__] = ACTIONS(1826), + [anon_sym___alignof] = ACTIONS(1826), + [anon_sym__alignof] = ACTIONS(1826), + [anon_sym_alignof] = ACTIONS(1826), + [anon_sym__Alignof] = ACTIONS(1826), + [anon_sym_offsetof] = ACTIONS(1828), + [anon_sym__Generic] = ACTIONS(1830), + [anon_sym_asm] = ACTIONS(1832), + [anon_sym___asm__] = ACTIONS(1832), + [anon_sym___asm] = ACTIONS(1832), + [sym_number_literal] = ACTIONS(1834), + [anon_sym_L_SQUOTE] = ACTIONS(1836), + [anon_sym_u_SQUOTE] = ACTIONS(1836), + [anon_sym_U_SQUOTE] = ACTIONS(1836), + [anon_sym_u8_SQUOTE] = ACTIONS(1836), + [anon_sym_SQUOTE] = ACTIONS(1836), + [anon_sym_L_DQUOTE] = ACTIONS(1838), + [anon_sym_u_DQUOTE] = ACTIONS(1838), + [anon_sym_U_DQUOTE] = ACTIONS(1838), + [anon_sym_u8_DQUOTE] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym_true] = ACTIONS(1840), + [sym_false] = ACTIONS(1840), + [anon_sym_NULL] = ACTIONS(1842), + [anon_sym_nullptr] = ACTIONS(1842), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1844), + [anon_sym_decltype] = ACTIONS(1846), + [anon_sym_typename] = ACTIONS(1848), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1852), + [anon_sym_R_DQUOTE] = ACTIONS(1854), + [anon_sym_LR_DQUOTE] = ACTIONS(1854), + [anon_sym_uR_DQUOTE] = ACTIONS(1854), + [anon_sym_UR_DQUOTE] = ACTIONS(1854), + [anon_sym_u8R_DQUOTE] = ACTIONS(1854), + [anon_sym_co_await] = ACTIONS(1856), + [anon_sym_new] = ACTIONS(1858), + [anon_sym_requires] = ACTIONS(1860), + [sym_this] = ACTIONS(1840), }, - [166] = { - [sym_compound_statement] = STATE(8449), - [sym_type_qualifier] = STATE(3904), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(4455), - [sym_sized_type_specifier] = STATE(1879), - [sym_enum_specifier] = STATE(1879), - [sym_struct_specifier] = STATE(1879), - [sym_union_specifier] = STATE(1879), - [sym_expression] = STATE(2912), - [sym__string] = STATE(3235), - [sym_comma_expression] = STATE(8449), - [sym_conditional_expression] = STATE(3373), - [sym_assignment_expression] = STATE(3373), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3373), - [sym_binary_expression] = STATE(3373), - [sym_update_expression] = STATE(3373), - [sym_cast_expression] = STATE(3373), - [sym_type_descriptor] = STATE(8224), - [sym_sizeof_expression] = STATE(3373), - [sym_alignof_expression] = STATE(3373), - [sym_offsetof_expression] = STATE(3373), - [sym_generic_expression] = STATE(3373), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3373), - [sym_extension_expression] = STATE(3373), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3373), - [sym_parenthesized_expression] = STATE(3365), - [sym_char_literal] = STATE(3235), - [sym_concatenated_string] = STATE(3235), - [sym_string_literal] = STATE(2358), - [sym_null] = STATE(3373), - [sym_placeholder_type_specifier] = STATE(1879), - [sym_decltype_auto] = STATE(1859), - [sym_decltype] = STATE(1713), - [sym_class_specifier] = STATE(1879), - [sym__class_name] = STATE(7814), - [sym_dependent_type] = STATE(1879), - [sym_template_type] = STATE(5285), - [sym_template_function] = STATE(3373), - [sym_raw_string_literal] = STATE(2358), - [sym_co_await_expression] = STATE(3373), - [sym_new_expression] = STATE(3373), - [sym_delete_expression] = STATE(3373), - [sym_requires_clause] = STATE(3373), - [sym_requires_expression] = STATE(3373), - [sym_lambda_expression] = STATE(3373), - [sym_lambda_capture_specifier] = STATE(5414), - [sym__unary_left_fold] = STATE(8232), - [sym__unary_right_fold] = STATE(8236), - [sym__binary_fold] = STATE(8240), - [sym_fold_expression] = STATE(3373), - [sym_parameter_pack_expansion] = STATE(3373), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5702), - [sym_qualified_identifier] = STATE(3365), - [sym_qualified_type_identifier] = STATE(5327), - [sym__assignment_expression_lhs] = STATE(8569), - [sym_user_defined_literal] = STATE(3365), - [aux_sym__type_definition_type_repeat1] = STATE(3904), - [aux_sym_sized_type_specifier_repeat1] = STATE(4209), + [165] = { + [sym_compound_statement] = STATE(8629), + [sym_type_qualifier] = STATE(3891), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(4528), + [sym_sized_type_specifier] = STATE(1890), + [sym_enum_specifier] = STATE(1890), + [sym_struct_specifier] = STATE(1890), + [sym_union_specifier] = STATE(1890), + [sym_expression] = STATE(2991), + [sym__string] = STATE(3393), + [sym_comma_expression] = STATE(8629), + [sym_conditional_expression] = STATE(3401), + [sym_assignment_expression] = STATE(3401), + [sym_pointer_expression] = STATE(3405), + [sym_unary_expression] = STATE(3401), + [sym_binary_expression] = STATE(3401), + [sym_update_expression] = STATE(3401), + [sym_cast_expression] = STATE(3401), + [sym_type_descriptor] = STATE(8683), + [sym_sizeof_expression] = STATE(3401), + [sym_alignof_expression] = STATE(3401), + [sym_offsetof_expression] = STATE(3401), + [sym_generic_expression] = STATE(3401), + [sym_subscript_expression] = STATE(3405), + [sym_call_expression] = STATE(3405), + [sym_gnu_asm_expression] = STATE(3401), + [sym_extension_expression] = STATE(3401), + [sym_field_expression] = STATE(3405), + [sym_compound_literal_expression] = STATE(3401), + [sym_parenthesized_expression] = STATE(3405), + [sym_char_literal] = STATE(3393), + [sym_concatenated_string] = STATE(3393), + [sym_string_literal] = STATE(2380), + [sym_null] = STATE(3401), + [sym_placeholder_type_specifier] = STATE(1890), + [sym_decltype_auto] = STATE(1888), + [sym_decltype] = STATE(1782), + [sym_class_specifier] = STATE(1890), + [sym__class_name] = STATE(7745), + [sym_dependent_type] = STATE(1890), + [sym_template_type] = STATE(5365), + [sym_template_function] = STATE(3401), + [sym_raw_string_literal] = STATE(2380), + [sym_co_await_expression] = STATE(3401), + [sym_new_expression] = STATE(3401), + [sym_delete_expression] = STATE(3401), + [sym_requires_clause] = STATE(3401), + [sym_requires_expression] = STATE(3401), + [sym_lambda_expression] = STATE(3401), + [sym_lambda_capture_specifier] = STATE(5494), + [sym__unary_left_fold] = STATE(8151), + [sym__unary_right_fold] = STATE(8158), + [sym__binary_fold] = STATE(8170), + [sym_fold_expression] = STATE(3401), + [sym_parameter_pack_expansion] = STATE(3401), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5846), + [sym_qualified_identifier] = STATE(3405), + [sym_qualified_type_identifier] = STATE(5382), + [sym__assignment_expression_lhs] = STATE(8390), + [sym_user_defined_literal] = STATE(3405), + [aux_sym__type_definition_type_repeat1] = STATE(3891), + [aux_sym_sized_type_specifier_repeat1] = STATE(4234), [sym_identifier] = ACTIONS(2016), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1790), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1788), [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(1804), - [anon_sym_COLON_COLON] = ACTIONS(1806), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1810), - [anon_sym_unsigned] = ACTIONS(1810), - [anon_sym_long] = ACTIONS(1810), - [anon_sym_short] = ACTIONS(1810), + [anon_sym_signed] = ACTIONS(1808), + [anon_sym_unsigned] = ACTIONS(1808), + [anon_sym_long] = ACTIONS(1808), + [anon_sym_short] = ACTIONS(1808), [anon_sym_LBRACK] = ACTIONS(2020), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), @@ -68010,137 +68147,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(1814), - [anon_sym_enum] = ACTIONS(1816), - [anon_sym_class] = ACTIONS(1818), - [anon_sym_struct] = ACTIONS(1820), - [anon_sym_union] = ACTIONS(1822), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1846), - [anon_sym_decltype] = ACTIONS(1848), - [anon_sym_typename] = ACTIONS(1850), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), + [sym_primitive_type] = ACTIONS(1812), + [anon_sym_enum] = ACTIONS(1814), + [anon_sym_class] = ACTIONS(1816), + [anon_sym_struct] = ACTIONS(1818), + [anon_sym_union] = ACTIONS(1820), + [anon_sym_not] = ACTIONS(1796), + [anon_sym_compl] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_sizeof] = ACTIONS(1824), + [anon_sym___alignof__] = ACTIONS(1826), + [anon_sym___alignof] = ACTIONS(1826), + [anon_sym__alignof] = ACTIONS(1826), + [anon_sym_alignof] = ACTIONS(1826), + [anon_sym__Alignof] = ACTIONS(1826), + [anon_sym_offsetof] = ACTIONS(1828), + [anon_sym__Generic] = ACTIONS(1830), + [anon_sym_asm] = ACTIONS(1832), + [anon_sym___asm__] = ACTIONS(1832), + [anon_sym___asm] = ACTIONS(1832), + [sym_number_literal] = ACTIONS(1834), + [anon_sym_L_SQUOTE] = ACTIONS(1836), + [anon_sym_u_SQUOTE] = ACTIONS(1836), + [anon_sym_U_SQUOTE] = ACTIONS(1836), + [anon_sym_u8_SQUOTE] = ACTIONS(1836), + [anon_sym_SQUOTE] = ACTIONS(1836), + [anon_sym_L_DQUOTE] = ACTIONS(1838), + [anon_sym_u_DQUOTE] = ACTIONS(1838), + [anon_sym_U_DQUOTE] = ACTIONS(1838), + [anon_sym_u8_DQUOTE] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym_true] = ACTIONS(1840), + [sym_false] = ACTIONS(1840), + [anon_sym_NULL] = ACTIONS(1842), + [anon_sym_nullptr] = ACTIONS(1842), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1844), + [anon_sym_decltype] = ACTIONS(1846), + [anon_sym_typename] = ACTIONS(1848), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1852), + [anon_sym_R_DQUOTE] = ACTIONS(1854), + [anon_sym_LR_DQUOTE] = ACTIONS(1854), + [anon_sym_uR_DQUOTE] = ACTIONS(1854), + [anon_sym_UR_DQUOTE] = ACTIONS(1854), + [anon_sym_u8R_DQUOTE] = ACTIONS(1854), + [anon_sym_co_await] = ACTIONS(1856), + [anon_sym_new] = ACTIONS(1858), + [anon_sym_requires] = ACTIONS(1860), + [sym_this] = ACTIONS(1840), }, - [167] = { - [sym_compound_statement] = STATE(8449), - [sym_type_qualifier] = STATE(3904), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(4455), - [sym_sized_type_specifier] = STATE(1879), - [sym_enum_specifier] = STATE(1879), - [sym_struct_specifier] = STATE(1879), - [sym_union_specifier] = STATE(1879), - [sym_expression] = STATE(2912), - [sym__string] = STATE(3235), - [sym_comma_expression] = STATE(8449), - [sym_conditional_expression] = STATE(3373), - [sym_assignment_expression] = STATE(3373), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3373), - [sym_binary_expression] = STATE(3373), - [sym_update_expression] = STATE(3373), - [sym_cast_expression] = STATE(3373), - [sym_type_descriptor] = STATE(8319), - [sym_sizeof_expression] = STATE(3373), - [sym_alignof_expression] = STATE(3373), - [sym_offsetof_expression] = STATE(3373), - [sym_generic_expression] = STATE(3373), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3373), - [sym_extension_expression] = STATE(3373), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3373), - [sym_parenthesized_expression] = STATE(3365), - [sym_char_literal] = STATE(3235), - [sym_concatenated_string] = STATE(3235), - [sym_string_literal] = STATE(2358), - [sym_null] = STATE(3373), - [sym_placeholder_type_specifier] = STATE(1879), - [sym_decltype_auto] = STATE(1859), - [sym_decltype] = STATE(1713), - [sym_class_specifier] = STATE(1879), - [sym__class_name] = STATE(7814), - [sym_dependent_type] = STATE(1879), - [sym_template_type] = STATE(5285), - [sym_template_function] = STATE(3373), - [sym_raw_string_literal] = STATE(2358), - [sym_co_await_expression] = STATE(3373), - [sym_new_expression] = STATE(3373), - [sym_delete_expression] = STATE(3373), - [sym_requires_clause] = STATE(3373), - [sym_requires_expression] = STATE(3373), - [sym_lambda_expression] = STATE(3373), - [sym_lambda_capture_specifier] = STATE(5414), - [sym__unary_left_fold] = STATE(8119), - [sym__unary_right_fold] = STATE(8280), - [sym__binary_fold] = STATE(7936), - [sym_fold_expression] = STATE(3373), - [sym_parameter_pack_expansion] = STATE(3373), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5702), - [sym_qualified_identifier] = STATE(3365), - [sym_qualified_type_identifier] = STATE(5327), - [sym__assignment_expression_lhs] = STATE(8569), - [sym_user_defined_literal] = STATE(3365), - [aux_sym__type_definition_type_repeat1] = STATE(3904), - [aux_sym_sized_type_specifier_repeat1] = STATE(4209), + [166] = { + [sym_compound_statement] = STATE(8629), + [sym_type_qualifier] = STATE(3891), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(4528), + [sym_sized_type_specifier] = STATE(1890), + [sym_enum_specifier] = STATE(1890), + [sym_struct_specifier] = STATE(1890), + [sym_union_specifier] = STATE(1890), + [sym_expression] = STATE(2991), + [sym__string] = STATE(3393), + [sym_comma_expression] = STATE(8629), + [sym_conditional_expression] = STATE(3401), + [sym_assignment_expression] = STATE(3401), + [sym_pointer_expression] = STATE(3405), + [sym_unary_expression] = STATE(3401), + [sym_binary_expression] = STATE(3401), + [sym_update_expression] = STATE(3401), + [sym_cast_expression] = STATE(3401), + [sym_type_descriptor] = STATE(8452), + [sym_sizeof_expression] = STATE(3401), + [sym_alignof_expression] = STATE(3401), + [sym_offsetof_expression] = STATE(3401), + [sym_generic_expression] = STATE(3401), + [sym_subscript_expression] = STATE(3405), + [sym_call_expression] = STATE(3405), + [sym_gnu_asm_expression] = STATE(3401), + [sym_extension_expression] = STATE(3401), + [sym_field_expression] = STATE(3405), + [sym_compound_literal_expression] = STATE(3401), + [sym_parenthesized_expression] = STATE(3405), + [sym_char_literal] = STATE(3393), + [sym_concatenated_string] = STATE(3393), + [sym_string_literal] = STATE(2380), + [sym_null] = STATE(3401), + [sym_placeholder_type_specifier] = STATE(1890), + [sym_decltype_auto] = STATE(1888), + [sym_decltype] = STATE(1782), + [sym_class_specifier] = STATE(1890), + [sym__class_name] = STATE(7745), + [sym_dependent_type] = STATE(1890), + [sym_template_type] = STATE(5365), + [sym_template_function] = STATE(3401), + [sym_raw_string_literal] = STATE(2380), + [sym_co_await_expression] = STATE(3401), + [sym_new_expression] = STATE(3401), + [sym_delete_expression] = STATE(3401), + [sym_requires_clause] = STATE(3401), + [sym_requires_expression] = STATE(3401), + [sym_lambda_expression] = STATE(3401), + [sym_lambda_capture_specifier] = STATE(5494), + [sym__unary_left_fold] = STATE(8716), + [sym__unary_right_fold] = STATE(8742), + [sym__binary_fold] = STATE(8824), + [sym_fold_expression] = STATE(3401), + [sym_parameter_pack_expansion] = STATE(3401), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5846), + [sym_qualified_identifier] = STATE(3405), + [sym_qualified_type_identifier] = STATE(5382), + [sym__assignment_expression_lhs] = STATE(8390), + [sym_user_defined_literal] = STATE(3405), + [aux_sym__type_definition_type_repeat1] = STATE(3891), + [aux_sym_sized_type_specifier_repeat1] = STATE(4234), [sym_identifier] = ACTIONS(2016), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1790), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1788), [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(1804), - [anon_sym_COLON_COLON] = ACTIONS(1806), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1810), - [anon_sym_unsigned] = ACTIONS(1810), - [anon_sym_long] = ACTIONS(1810), - [anon_sym_short] = ACTIONS(1810), + [anon_sym_signed] = ACTIONS(1808), + [anon_sym_unsigned] = ACTIONS(1808), + [anon_sym_long] = ACTIONS(1808), + [anon_sym_short] = ACTIONS(1808), [anon_sym_LBRACK] = ACTIONS(2020), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), @@ -68156,137 +68293,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(1814), - [anon_sym_enum] = ACTIONS(1816), - [anon_sym_class] = ACTIONS(1818), - [anon_sym_struct] = ACTIONS(1820), - [anon_sym_union] = ACTIONS(1822), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1846), - [anon_sym_decltype] = ACTIONS(1848), - [anon_sym_typename] = ACTIONS(1850), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), + [sym_primitive_type] = ACTIONS(1812), + [anon_sym_enum] = ACTIONS(1814), + [anon_sym_class] = ACTIONS(1816), + [anon_sym_struct] = ACTIONS(1818), + [anon_sym_union] = ACTIONS(1820), + [anon_sym_not] = ACTIONS(1796), + [anon_sym_compl] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_sizeof] = ACTIONS(1824), + [anon_sym___alignof__] = ACTIONS(1826), + [anon_sym___alignof] = ACTIONS(1826), + [anon_sym__alignof] = ACTIONS(1826), + [anon_sym_alignof] = ACTIONS(1826), + [anon_sym__Alignof] = ACTIONS(1826), + [anon_sym_offsetof] = ACTIONS(1828), + [anon_sym__Generic] = ACTIONS(1830), + [anon_sym_asm] = ACTIONS(1832), + [anon_sym___asm__] = ACTIONS(1832), + [anon_sym___asm] = ACTIONS(1832), + [sym_number_literal] = ACTIONS(1834), + [anon_sym_L_SQUOTE] = ACTIONS(1836), + [anon_sym_u_SQUOTE] = ACTIONS(1836), + [anon_sym_U_SQUOTE] = ACTIONS(1836), + [anon_sym_u8_SQUOTE] = ACTIONS(1836), + [anon_sym_SQUOTE] = ACTIONS(1836), + [anon_sym_L_DQUOTE] = ACTIONS(1838), + [anon_sym_u_DQUOTE] = ACTIONS(1838), + [anon_sym_U_DQUOTE] = ACTIONS(1838), + [anon_sym_u8_DQUOTE] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym_true] = ACTIONS(1840), + [sym_false] = ACTIONS(1840), + [anon_sym_NULL] = ACTIONS(1842), + [anon_sym_nullptr] = ACTIONS(1842), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1844), + [anon_sym_decltype] = ACTIONS(1846), + [anon_sym_typename] = ACTIONS(1848), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1852), + [anon_sym_R_DQUOTE] = ACTIONS(1854), + [anon_sym_LR_DQUOTE] = ACTIONS(1854), + [anon_sym_uR_DQUOTE] = ACTIONS(1854), + [anon_sym_UR_DQUOTE] = ACTIONS(1854), + [anon_sym_u8R_DQUOTE] = ACTIONS(1854), + [anon_sym_co_await] = ACTIONS(1856), + [anon_sym_new] = ACTIONS(1858), + [anon_sym_requires] = ACTIONS(1860), + [sym_this] = ACTIONS(1840), }, - [168] = { - [sym_compound_statement] = STATE(8449), - [sym_type_qualifier] = STATE(3904), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(4455), - [sym_sized_type_specifier] = STATE(1879), - [sym_enum_specifier] = STATE(1879), - [sym_struct_specifier] = STATE(1879), - [sym_union_specifier] = STATE(1879), - [sym_expression] = STATE(2912), - [sym__string] = STATE(3235), - [sym_comma_expression] = STATE(8449), - [sym_conditional_expression] = STATE(3373), - [sym_assignment_expression] = STATE(3373), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3373), - [sym_binary_expression] = STATE(3373), - [sym_update_expression] = STATE(3373), - [sym_cast_expression] = STATE(3373), - [sym_type_descriptor] = STATE(8212), - [sym_sizeof_expression] = STATE(3373), - [sym_alignof_expression] = STATE(3373), - [sym_offsetof_expression] = STATE(3373), - [sym_generic_expression] = STATE(3373), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3373), - [sym_extension_expression] = STATE(3373), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3373), - [sym_parenthesized_expression] = STATE(3365), - [sym_char_literal] = STATE(3235), - [sym_concatenated_string] = STATE(3235), - [sym_string_literal] = STATE(2358), - [sym_null] = STATE(3373), - [sym_placeholder_type_specifier] = STATE(1879), - [sym_decltype_auto] = STATE(1859), - [sym_decltype] = STATE(1713), - [sym_class_specifier] = STATE(1879), - [sym__class_name] = STATE(7814), - [sym_dependent_type] = STATE(1879), - [sym_template_type] = STATE(5285), - [sym_template_function] = STATE(3373), - [sym_raw_string_literal] = STATE(2358), - [sym_co_await_expression] = STATE(3373), - [sym_new_expression] = STATE(3373), - [sym_delete_expression] = STATE(3373), - [sym_requires_clause] = STATE(3373), - [sym_requires_expression] = STATE(3373), - [sym_lambda_expression] = STATE(3373), - [sym_lambda_capture_specifier] = STATE(5414), - [sym__unary_left_fold] = STATE(8119), - [sym__unary_right_fold] = STATE(8280), - [sym__binary_fold] = STATE(7936), - [sym_fold_expression] = STATE(3373), - [sym_parameter_pack_expansion] = STATE(3373), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5702), - [sym_qualified_identifier] = STATE(3365), - [sym_qualified_type_identifier] = STATE(5327), - [sym__assignment_expression_lhs] = STATE(8569), - [sym_user_defined_literal] = STATE(3365), - [aux_sym__type_definition_type_repeat1] = STATE(3904), - [aux_sym_sized_type_specifier_repeat1] = STATE(4209), + [167] = { + [sym_compound_statement] = STATE(8629), + [sym_type_qualifier] = STATE(3891), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(4528), + [sym_sized_type_specifier] = STATE(1890), + [sym_enum_specifier] = STATE(1890), + [sym_struct_specifier] = STATE(1890), + [sym_union_specifier] = STATE(1890), + [sym_expression] = STATE(2991), + [sym__string] = STATE(3393), + [sym_comma_expression] = STATE(8629), + [sym_conditional_expression] = STATE(3401), + [sym_assignment_expression] = STATE(3401), + [sym_pointer_expression] = STATE(3405), + [sym_unary_expression] = STATE(3401), + [sym_binary_expression] = STATE(3401), + [sym_update_expression] = STATE(3401), + [sym_cast_expression] = STATE(3401), + [sym_type_descriptor] = STATE(8814), + [sym_sizeof_expression] = STATE(3401), + [sym_alignof_expression] = STATE(3401), + [sym_offsetof_expression] = STATE(3401), + [sym_generic_expression] = STATE(3401), + [sym_subscript_expression] = STATE(3405), + [sym_call_expression] = STATE(3405), + [sym_gnu_asm_expression] = STATE(3401), + [sym_extension_expression] = STATE(3401), + [sym_field_expression] = STATE(3405), + [sym_compound_literal_expression] = STATE(3401), + [sym_parenthesized_expression] = STATE(3405), + [sym_char_literal] = STATE(3393), + [sym_concatenated_string] = STATE(3393), + [sym_string_literal] = STATE(2380), + [sym_null] = STATE(3401), + [sym_placeholder_type_specifier] = STATE(1890), + [sym_decltype_auto] = STATE(1888), + [sym_decltype] = STATE(1782), + [sym_class_specifier] = STATE(1890), + [sym__class_name] = STATE(7745), + [sym_dependent_type] = STATE(1890), + [sym_template_type] = STATE(5365), + [sym_template_function] = STATE(3401), + [sym_raw_string_literal] = STATE(2380), + [sym_co_await_expression] = STATE(3401), + [sym_new_expression] = STATE(3401), + [sym_delete_expression] = STATE(3401), + [sym_requires_clause] = STATE(3401), + [sym_requires_expression] = STATE(3401), + [sym_lambda_expression] = STATE(3401), + [sym_lambda_capture_specifier] = STATE(5494), + [sym__unary_left_fold] = STATE(8716), + [sym__unary_right_fold] = STATE(8742), + [sym__binary_fold] = STATE(8824), + [sym_fold_expression] = STATE(3401), + [sym_parameter_pack_expansion] = STATE(3401), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5846), + [sym_qualified_identifier] = STATE(3405), + [sym_qualified_type_identifier] = STATE(5382), + [sym__assignment_expression_lhs] = STATE(8390), + [sym_user_defined_literal] = STATE(3405), + [aux_sym__type_definition_type_repeat1] = STATE(3891), + [aux_sym_sized_type_specifier_repeat1] = STATE(4234), [sym_identifier] = ACTIONS(2016), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1790), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1788), [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(1804), - [anon_sym_COLON_COLON] = ACTIONS(1806), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1810), - [anon_sym_unsigned] = ACTIONS(1810), - [anon_sym_long] = ACTIONS(1810), - [anon_sym_short] = ACTIONS(1810), + [anon_sym_signed] = ACTIONS(1808), + [anon_sym_unsigned] = ACTIONS(1808), + [anon_sym_long] = ACTIONS(1808), + [anon_sym_short] = ACTIONS(1808), [anon_sym_LBRACK] = ACTIONS(2020), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), @@ -68302,137 +68439,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(1814), - [anon_sym_enum] = ACTIONS(1816), - [anon_sym_class] = ACTIONS(1818), - [anon_sym_struct] = ACTIONS(1820), - [anon_sym_union] = ACTIONS(1822), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1846), - [anon_sym_decltype] = ACTIONS(1848), - [anon_sym_typename] = ACTIONS(1850), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), + [sym_primitive_type] = ACTIONS(1812), + [anon_sym_enum] = ACTIONS(1814), + [anon_sym_class] = ACTIONS(1816), + [anon_sym_struct] = ACTIONS(1818), + [anon_sym_union] = ACTIONS(1820), + [anon_sym_not] = ACTIONS(1796), + [anon_sym_compl] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_sizeof] = ACTIONS(1824), + [anon_sym___alignof__] = ACTIONS(1826), + [anon_sym___alignof] = ACTIONS(1826), + [anon_sym__alignof] = ACTIONS(1826), + [anon_sym_alignof] = ACTIONS(1826), + [anon_sym__Alignof] = ACTIONS(1826), + [anon_sym_offsetof] = ACTIONS(1828), + [anon_sym__Generic] = ACTIONS(1830), + [anon_sym_asm] = ACTIONS(1832), + [anon_sym___asm__] = ACTIONS(1832), + [anon_sym___asm] = ACTIONS(1832), + [sym_number_literal] = ACTIONS(1834), + [anon_sym_L_SQUOTE] = ACTIONS(1836), + [anon_sym_u_SQUOTE] = ACTIONS(1836), + [anon_sym_U_SQUOTE] = ACTIONS(1836), + [anon_sym_u8_SQUOTE] = ACTIONS(1836), + [anon_sym_SQUOTE] = ACTIONS(1836), + [anon_sym_L_DQUOTE] = ACTIONS(1838), + [anon_sym_u_DQUOTE] = ACTIONS(1838), + [anon_sym_U_DQUOTE] = ACTIONS(1838), + [anon_sym_u8_DQUOTE] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym_true] = ACTIONS(1840), + [sym_false] = ACTIONS(1840), + [anon_sym_NULL] = ACTIONS(1842), + [anon_sym_nullptr] = ACTIONS(1842), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1844), + [anon_sym_decltype] = ACTIONS(1846), + [anon_sym_typename] = ACTIONS(1848), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1852), + [anon_sym_R_DQUOTE] = ACTIONS(1854), + [anon_sym_LR_DQUOTE] = ACTIONS(1854), + [anon_sym_uR_DQUOTE] = ACTIONS(1854), + [anon_sym_UR_DQUOTE] = ACTIONS(1854), + [anon_sym_u8R_DQUOTE] = ACTIONS(1854), + [anon_sym_co_await] = ACTIONS(1856), + [anon_sym_new] = ACTIONS(1858), + [anon_sym_requires] = ACTIONS(1860), + [sym_this] = ACTIONS(1840), }, - [169] = { - [sym_compound_statement] = STATE(8449), - [sym_type_qualifier] = STATE(3904), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(4455), - [sym_sized_type_specifier] = STATE(1879), - [sym_enum_specifier] = STATE(1879), - [sym_struct_specifier] = STATE(1879), - [sym_union_specifier] = STATE(1879), - [sym_expression] = STATE(2912), - [sym__string] = STATE(3235), - [sym_comma_expression] = STATE(8449), - [sym_conditional_expression] = STATE(3373), - [sym_assignment_expression] = STATE(3373), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3373), - [sym_binary_expression] = STATE(3373), - [sym_update_expression] = STATE(3373), - [sym_cast_expression] = STATE(3373), - [sym_type_descriptor] = STATE(8515), - [sym_sizeof_expression] = STATE(3373), - [sym_alignof_expression] = STATE(3373), - [sym_offsetof_expression] = STATE(3373), - [sym_generic_expression] = STATE(3373), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3373), - [sym_extension_expression] = STATE(3373), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3373), - [sym_parenthesized_expression] = STATE(3365), - [sym_char_literal] = STATE(3235), - [sym_concatenated_string] = STATE(3235), - [sym_string_literal] = STATE(2358), - [sym_null] = STATE(3373), - [sym_placeholder_type_specifier] = STATE(1879), - [sym_decltype_auto] = STATE(1859), - [sym_decltype] = STATE(1713), - [sym_class_specifier] = STATE(1879), - [sym__class_name] = STATE(7814), - [sym_dependent_type] = STATE(1879), - [sym_template_type] = STATE(5285), - [sym_template_function] = STATE(3373), - [sym_raw_string_literal] = STATE(2358), - [sym_co_await_expression] = STATE(3373), - [sym_new_expression] = STATE(3373), - [sym_delete_expression] = STATE(3373), - [sym_requires_clause] = STATE(3373), - [sym_requires_expression] = STATE(3373), - [sym_lambda_expression] = STATE(3373), - [sym_lambda_capture_specifier] = STATE(5414), - [sym__unary_left_fold] = STATE(8119), - [sym__unary_right_fold] = STATE(8280), - [sym__binary_fold] = STATE(7936), - [sym_fold_expression] = STATE(3373), - [sym_parameter_pack_expansion] = STATE(3373), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5702), - [sym_qualified_identifier] = STATE(3365), - [sym_qualified_type_identifier] = STATE(5327), - [sym__assignment_expression_lhs] = STATE(8569), - [sym_user_defined_literal] = STATE(3365), - [aux_sym__type_definition_type_repeat1] = STATE(3904), - [aux_sym_sized_type_specifier_repeat1] = STATE(4209), + [168] = { + [sym_compound_statement] = STATE(8629), + [sym_type_qualifier] = STATE(3891), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(4528), + [sym_sized_type_specifier] = STATE(1890), + [sym_enum_specifier] = STATE(1890), + [sym_struct_specifier] = STATE(1890), + [sym_union_specifier] = STATE(1890), + [sym_expression] = STATE(2991), + [sym__string] = STATE(3393), + [sym_comma_expression] = STATE(8629), + [sym_conditional_expression] = STATE(3401), + [sym_assignment_expression] = STATE(3401), + [sym_pointer_expression] = STATE(3405), + [sym_unary_expression] = STATE(3401), + [sym_binary_expression] = STATE(3401), + [sym_update_expression] = STATE(3401), + [sym_cast_expression] = STATE(3401), + [sym_type_descriptor] = STATE(8648), + [sym_sizeof_expression] = STATE(3401), + [sym_alignof_expression] = STATE(3401), + [sym_offsetof_expression] = STATE(3401), + [sym_generic_expression] = STATE(3401), + [sym_subscript_expression] = STATE(3405), + [sym_call_expression] = STATE(3405), + [sym_gnu_asm_expression] = STATE(3401), + [sym_extension_expression] = STATE(3401), + [sym_field_expression] = STATE(3405), + [sym_compound_literal_expression] = STATE(3401), + [sym_parenthesized_expression] = STATE(3405), + [sym_char_literal] = STATE(3393), + [sym_concatenated_string] = STATE(3393), + [sym_string_literal] = STATE(2380), + [sym_null] = STATE(3401), + [sym_placeholder_type_specifier] = STATE(1890), + [sym_decltype_auto] = STATE(1888), + [sym_decltype] = STATE(1782), + [sym_class_specifier] = STATE(1890), + [sym__class_name] = STATE(7745), + [sym_dependent_type] = STATE(1890), + [sym_template_type] = STATE(5365), + [sym_template_function] = STATE(3401), + [sym_raw_string_literal] = STATE(2380), + [sym_co_await_expression] = STATE(3401), + [sym_new_expression] = STATE(3401), + [sym_delete_expression] = STATE(3401), + [sym_requires_clause] = STATE(3401), + [sym_requires_expression] = STATE(3401), + [sym_lambda_expression] = STATE(3401), + [sym_lambda_capture_specifier] = STATE(5494), + [sym__unary_left_fold] = STATE(8716), + [sym__unary_right_fold] = STATE(8742), + [sym__binary_fold] = STATE(8824), + [sym_fold_expression] = STATE(3401), + [sym_parameter_pack_expansion] = STATE(3401), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5846), + [sym_qualified_identifier] = STATE(3405), + [sym_qualified_type_identifier] = STATE(5382), + [sym__assignment_expression_lhs] = STATE(8390), + [sym_user_defined_literal] = STATE(3405), + [aux_sym__type_definition_type_repeat1] = STATE(3891), + [aux_sym_sized_type_specifier_repeat1] = STATE(4234), [sym_identifier] = ACTIONS(2016), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1790), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1788), [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(1804), - [anon_sym_COLON_COLON] = ACTIONS(1806), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1810), - [anon_sym_unsigned] = ACTIONS(1810), - [anon_sym_long] = ACTIONS(1810), - [anon_sym_short] = ACTIONS(1810), + [anon_sym_signed] = ACTIONS(1808), + [anon_sym_unsigned] = ACTIONS(1808), + [anon_sym_long] = ACTIONS(1808), + [anon_sym_short] = ACTIONS(1808), [anon_sym_LBRACK] = ACTIONS(2020), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), @@ -68448,137 +68585,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(1814), - [anon_sym_enum] = ACTIONS(1816), - [anon_sym_class] = ACTIONS(1818), - [anon_sym_struct] = ACTIONS(1820), - [anon_sym_union] = ACTIONS(1822), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1846), - [anon_sym_decltype] = ACTIONS(1848), - [anon_sym_typename] = ACTIONS(1850), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), + [sym_primitive_type] = ACTIONS(1812), + [anon_sym_enum] = ACTIONS(1814), + [anon_sym_class] = ACTIONS(1816), + [anon_sym_struct] = ACTIONS(1818), + [anon_sym_union] = ACTIONS(1820), + [anon_sym_not] = ACTIONS(1796), + [anon_sym_compl] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_sizeof] = ACTIONS(1824), + [anon_sym___alignof__] = ACTIONS(1826), + [anon_sym___alignof] = ACTIONS(1826), + [anon_sym__alignof] = ACTIONS(1826), + [anon_sym_alignof] = ACTIONS(1826), + [anon_sym__Alignof] = ACTIONS(1826), + [anon_sym_offsetof] = ACTIONS(1828), + [anon_sym__Generic] = ACTIONS(1830), + [anon_sym_asm] = ACTIONS(1832), + [anon_sym___asm__] = ACTIONS(1832), + [anon_sym___asm] = ACTIONS(1832), + [sym_number_literal] = ACTIONS(1834), + [anon_sym_L_SQUOTE] = ACTIONS(1836), + [anon_sym_u_SQUOTE] = ACTIONS(1836), + [anon_sym_U_SQUOTE] = ACTIONS(1836), + [anon_sym_u8_SQUOTE] = ACTIONS(1836), + [anon_sym_SQUOTE] = ACTIONS(1836), + [anon_sym_L_DQUOTE] = ACTIONS(1838), + [anon_sym_u_DQUOTE] = ACTIONS(1838), + [anon_sym_U_DQUOTE] = ACTIONS(1838), + [anon_sym_u8_DQUOTE] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym_true] = ACTIONS(1840), + [sym_false] = ACTIONS(1840), + [anon_sym_NULL] = ACTIONS(1842), + [anon_sym_nullptr] = ACTIONS(1842), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1844), + [anon_sym_decltype] = ACTIONS(1846), + [anon_sym_typename] = ACTIONS(1848), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1852), + [anon_sym_R_DQUOTE] = ACTIONS(1854), + [anon_sym_LR_DQUOTE] = ACTIONS(1854), + [anon_sym_uR_DQUOTE] = ACTIONS(1854), + [anon_sym_UR_DQUOTE] = ACTIONS(1854), + [anon_sym_u8R_DQUOTE] = ACTIONS(1854), + [anon_sym_co_await] = ACTIONS(1856), + [anon_sym_new] = ACTIONS(1858), + [anon_sym_requires] = ACTIONS(1860), + [sym_this] = ACTIONS(1840), }, - [170] = { - [sym_compound_statement] = STATE(8449), - [sym_type_qualifier] = STATE(3904), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(4455), - [sym_sized_type_specifier] = STATE(1879), - [sym_enum_specifier] = STATE(1879), - [sym_struct_specifier] = STATE(1879), - [sym_union_specifier] = STATE(1879), - [sym_expression] = STATE(2912), - [sym__string] = STATE(3235), - [sym_comma_expression] = STATE(8449), - [sym_conditional_expression] = STATE(3373), - [sym_assignment_expression] = STATE(3373), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3373), - [sym_binary_expression] = STATE(3373), - [sym_update_expression] = STATE(3373), - [sym_cast_expression] = STATE(3373), - [sym_type_descriptor] = STATE(8357), - [sym_sizeof_expression] = STATE(3373), - [sym_alignof_expression] = STATE(3373), - [sym_offsetof_expression] = STATE(3373), - [sym_generic_expression] = STATE(3373), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3373), - [sym_extension_expression] = STATE(3373), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3373), - [sym_parenthesized_expression] = STATE(3365), - [sym_char_literal] = STATE(3235), - [sym_concatenated_string] = STATE(3235), - [sym_string_literal] = STATE(2358), - [sym_null] = STATE(3373), - [sym_placeholder_type_specifier] = STATE(1879), - [sym_decltype_auto] = STATE(1859), - [sym_decltype] = STATE(1713), - [sym_class_specifier] = STATE(1879), - [sym__class_name] = STATE(7814), - [sym_dependent_type] = STATE(1879), - [sym_template_type] = STATE(5285), - [sym_template_function] = STATE(3373), - [sym_raw_string_literal] = STATE(2358), - [sym_co_await_expression] = STATE(3373), - [sym_new_expression] = STATE(3373), - [sym_delete_expression] = STATE(3373), - [sym_requires_clause] = STATE(3373), - [sym_requires_expression] = STATE(3373), - [sym_lambda_expression] = STATE(3373), - [sym_lambda_capture_specifier] = STATE(5414), - [sym__unary_left_fold] = STATE(8119), - [sym__unary_right_fold] = STATE(8280), - [sym__binary_fold] = STATE(7936), - [sym_fold_expression] = STATE(3373), - [sym_parameter_pack_expansion] = STATE(3373), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5702), - [sym_qualified_identifier] = STATE(3365), - [sym_qualified_type_identifier] = STATE(5327), - [sym__assignment_expression_lhs] = STATE(8569), - [sym_user_defined_literal] = STATE(3365), - [aux_sym__type_definition_type_repeat1] = STATE(3904), - [aux_sym_sized_type_specifier_repeat1] = STATE(4209), + [169] = { + [sym_compound_statement] = STATE(8629), + [sym_type_qualifier] = STATE(3891), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(4528), + [sym_sized_type_specifier] = STATE(1890), + [sym_enum_specifier] = STATE(1890), + [sym_struct_specifier] = STATE(1890), + [sym_union_specifier] = STATE(1890), + [sym_expression] = STATE(2991), + [sym__string] = STATE(3393), + [sym_comma_expression] = STATE(8629), + [sym_conditional_expression] = STATE(3401), + [sym_assignment_expression] = STATE(3401), + [sym_pointer_expression] = STATE(3405), + [sym_unary_expression] = STATE(3401), + [sym_binary_expression] = STATE(3401), + [sym_update_expression] = STATE(3401), + [sym_cast_expression] = STATE(3401), + [sym_type_descriptor] = STATE(8490), + [sym_sizeof_expression] = STATE(3401), + [sym_alignof_expression] = STATE(3401), + [sym_offsetof_expression] = STATE(3401), + [sym_generic_expression] = STATE(3401), + [sym_subscript_expression] = STATE(3405), + [sym_call_expression] = STATE(3405), + [sym_gnu_asm_expression] = STATE(3401), + [sym_extension_expression] = STATE(3401), + [sym_field_expression] = STATE(3405), + [sym_compound_literal_expression] = STATE(3401), + [sym_parenthesized_expression] = STATE(3405), + [sym_char_literal] = STATE(3393), + [sym_concatenated_string] = STATE(3393), + [sym_string_literal] = STATE(2380), + [sym_null] = STATE(3401), + [sym_placeholder_type_specifier] = STATE(1890), + [sym_decltype_auto] = STATE(1888), + [sym_decltype] = STATE(1782), + [sym_class_specifier] = STATE(1890), + [sym__class_name] = STATE(7745), + [sym_dependent_type] = STATE(1890), + [sym_template_type] = STATE(5365), + [sym_template_function] = STATE(3401), + [sym_raw_string_literal] = STATE(2380), + [sym_co_await_expression] = STATE(3401), + [sym_new_expression] = STATE(3401), + [sym_delete_expression] = STATE(3401), + [sym_requires_clause] = STATE(3401), + [sym_requires_expression] = STATE(3401), + [sym_lambda_expression] = STATE(3401), + [sym_lambda_capture_specifier] = STATE(5494), + [sym__unary_left_fold] = STATE(8716), + [sym__unary_right_fold] = STATE(8742), + [sym__binary_fold] = STATE(8824), + [sym_fold_expression] = STATE(3401), + [sym_parameter_pack_expansion] = STATE(3401), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5846), + [sym_qualified_identifier] = STATE(3405), + [sym_qualified_type_identifier] = STATE(5382), + [sym__assignment_expression_lhs] = STATE(8390), + [sym_user_defined_literal] = STATE(3405), + [aux_sym__type_definition_type_repeat1] = STATE(3891), + [aux_sym_sized_type_specifier_repeat1] = STATE(4234), [sym_identifier] = ACTIONS(2016), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1790), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1788), [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(1804), - [anon_sym_COLON_COLON] = ACTIONS(1806), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1810), - [anon_sym_unsigned] = ACTIONS(1810), - [anon_sym_long] = ACTIONS(1810), - [anon_sym_short] = ACTIONS(1810), + [anon_sym_signed] = ACTIONS(1808), + [anon_sym_unsigned] = ACTIONS(1808), + [anon_sym_long] = ACTIONS(1808), + [anon_sym_short] = ACTIONS(1808), [anon_sym_LBRACK] = ACTIONS(2020), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), @@ -68594,137 +68731,283 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(1814), - [anon_sym_enum] = ACTIONS(1816), - [anon_sym_class] = ACTIONS(1818), - [anon_sym_struct] = ACTIONS(1820), - [anon_sym_union] = ACTIONS(1822), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1846), - [anon_sym_decltype] = ACTIONS(1848), - [anon_sym_typename] = ACTIONS(1850), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), + [sym_primitive_type] = ACTIONS(1812), + [anon_sym_enum] = ACTIONS(1814), + [anon_sym_class] = ACTIONS(1816), + [anon_sym_struct] = ACTIONS(1818), + [anon_sym_union] = ACTIONS(1820), + [anon_sym_not] = ACTIONS(1796), + [anon_sym_compl] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_sizeof] = ACTIONS(1824), + [anon_sym___alignof__] = ACTIONS(1826), + [anon_sym___alignof] = ACTIONS(1826), + [anon_sym__alignof] = ACTIONS(1826), + [anon_sym_alignof] = ACTIONS(1826), + [anon_sym__Alignof] = ACTIONS(1826), + [anon_sym_offsetof] = ACTIONS(1828), + [anon_sym__Generic] = ACTIONS(1830), + [anon_sym_asm] = ACTIONS(1832), + [anon_sym___asm__] = ACTIONS(1832), + [anon_sym___asm] = ACTIONS(1832), + [sym_number_literal] = ACTIONS(1834), + [anon_sym_L_SQUOTE] = ACTIONS(1836), + [anon_sym_u_SQUOTE] = ACTIONS(1836), + [anon_sym_U_SQUOTE] = ACTIONS(1836), + [anon_sym_u8_SQUOTE] = ACTIONS(1836), + [anon_sym_SQUOTE] = ACTIONS(1836), + [anon_sym_L_DQUOTE] = ACTIONS(1838), + [anon_sym_u_DQUOTE] = ACTIONS(1838), + [anon_sym_U_DQUOTE] = ACTIONS(1838), + [anon_sym_u8_DQUOTE] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym_true] = ACTIONS(1840), + [sym_false] = ACTIONS(1840), + [anon_sym_NULL] = ACTIONS(1842), + [anon_sym_nullptr] = ACTIONS(1842), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1844), + [anon_sym_decltype] = ACTIONS(1846), + [anon_sym_typename] = ACTIONS(1848), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1852), + [anon_sym_R_DQUOTE] = ACTIONS(1854), + [anon_sym_LR_DQUOTE] = ACTIONS(1854), + [anon_sym_uR_DQUOTE] = ACTIONS(1854), + [anon_sym_UR_DQUOTE] = ACTIONS(1854), + [anon_sym_u8R_DQUOTE] = ACTIONS(1854), + [anon_sym_co_await] = ACTIONS(1856), + [anon_sym_new] = ACTIONS(1858), + [anon_sym_requires] = ACTIONS(1860), + [sym_this] = ACTIONS(1840), + }, + [170] = { + [sym_attribute_declaration] = STATE(170), + [sym_compound_statement] = STATE(409), + [sym_attributed_statement] = STATE(409), + [sym_statement] = STATE(348), + [sym_labeled_statement] = STATE(409), + [sym_expression_statement] = STATE(409), + [sym_if_statement] = STATE(409), + [sym_switch_statement] = STATE(409), + [sym_case_statement] = STATE(409), + [sym_while_statement] = STATE(409), + [sym_do_statement] = STATE(409), + [sym_for_statement] = STATE(409), + [sym_return_statement] = STATE(409), + [sym_break_statement] = STATE(409), + [sym_continue_statement] = STATE(409), + [sym_goto_statement] = STATE(409), + [sym_seh_try_statement] = STATE(409), + [sym_seh_leave_statement] = STATE(409), + [sym_expression] = STATE(4499), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8264), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_for_range_loop] = STATE(409), + [sym_co_return_statement] = STATE(409), + [sym_co_yield_statement] = STATE(409), + [sym_throw_statement] = STATE(409), + [sym_try_statement] = STATE(409), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_attributed_declarator_repeat1] = STATE(170), + [sym_identifier] = ACTIONS(2329), + [anon_sym_LPAREN2] = ACTIONS(2025), + [anon_sym_BANG] = ACTIONS(2028), + [anon_sym_TILDE] = ACTIONS(2028), + [anon_sym_DASH] = ACTIONS(2031), + [anon_sym_PLUS] = ACTIONS(2031), + [anon_sym_STAR] = ACTIONS(2034), + [anon_sym_AMP] = ACTIONS(2034), + [anon_sym_SEMI] = ACTIONS(2332), + [anon_sym___extension__] = ACTIONS(2040), + [anon_sym_using] = ACTIONS(2043), + [anon_sym_COLON_COLON] = ACTIONS(2045), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2048), + [anon_sym_LBRACE] = ACTIONS(2335), + [anon_sym_LBRACK] = ACTIONS(2054), + [sym_primitive_type] = ACTIONS(2057), + [anon_sym_if] = ACTIONS(2338), + [anon_sym_switch] = ACTIONS(2341), + [anon_sym_case] = ACTIONS(2344), + [anon_sym_default] = ACTIONS(2347), + [anon_sym_while] = ACTIONS(2350), + [anon_sym_do] = ACTIONS(2353), + [anon_sym_for] = ACTIONS(2356), + [anon_sym_return] = ACTIONS(2359), + [anon_sym_break] = ACTIONS(2362), + [anon_sym_continue] = ACTIONS(2365), + [anon_sym_goto] = ACTIONS(2368), + [anon_sym___try] = ACTIONS(2371), + [anon_sym___leave] = ACTIONS(2374), + [anon_sym_not] = ACTIONS(2031), + [anon_sym_compl] = ACTIONS(2031), + [anon_sym_DASH_DASH] = ACTIONS(2099), + [anon_sym_PLUS_PLUS] = ACTIONS(2099), + [anon_sym_sizeof] = ACTIONS(2102), + [anon_sym___alignof__] = ACTIONS(2105), + [anon_sym___alignof] = ACTIONS(2105), + [anon_sym__alignof] = ACTIONS(2105), + [anon_sym_alignof] = ACTIONS(2105), + [anon_sym__Alignof] = ACTIONS(2105), + [anon_sym_offsetof] = ACTIONS(2108), + [anon_sym__Generic] = ACTIONS(2111), + [anon_sym_asm] = ACTIONS(2114), + [anon_sym___asm__] = ACTIONS(2114), + [anon_sym___asm] = ACTIONS(2114), + [sym_number_literal] = ACTIONS(2117), + [anon_sym_L_SQUOTE] = ACTIONS(2120), + [anon_sym_u_SQUOTE] = ACTIONS(2120), + [anon_sym_U_SQUOTE] = ACTIONS(2120), + [anon_sym_u8_SQUOTE] = ACTIONS(2120), + [anon_sym_SQUOTE] = ACTIONS(2120), + [anon_sym_L_DQUOTE] = ACTIONS(2123), + [anon_sym_u_DQUOTE] = ACTIONS(2123), + [anon_sym_U_DQUOTE] = ACTIONS(2123), + [anon_sym_u8_DQUOTE] = ACTIONS(2123), + [anon_sym_DQUOTE] = ACTIONS(2123), + [sym_true] = ACTIONS(2126), + [sym_false] = ACTIONS(2126), + [anon_sym_NULL] = ACTIONS(2129), + [anon_sym_nullptr] = ACTIONS(2129), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2132), + [anon_sym_template] = ACTIONS(2135), + [anon_sym_try] = ACTIONS(2377), + [anon_sym_delete] = ACTIONS(2141), + [anon_sym_throw] = ACTIONS(2380), + [anon_sym_co_return] = ACTIONS(2383), + [anon_sym_co_yield] = ACTIONS(2386), + [anon_sym_R_DQUOTE] = ACTIONS(2153), + [anon_sym_LR_DQUOTE] = ACTIONS(2153), + [anon_sym_uR_DQUOTE] = ACTIONS(2153), + [anon_sym_UR_DQUOTE] = ACTIONS(2153), + [anon_sym_u8R_DQUOTE] = ACTIONS(2153), + [anon_sym_co_await] = ACTIONS(2156), + [anon_sym_new] = ACTIONS(2159), + [anon_sym_requires] = ACTIONS(2162), + [sym_this] = ACTIONS(2126), }, [171] = { - [sym_compound_statement] = STATE(8449), - [sym_type_qualifier] = STATE(3904), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(4455), - [sym_sized_type_specifier] = STATE(1879), - [sym_enum_specifier] = STATE(1879), - [sym_struct_specifier] = STATE(1879), - [sym_union_specifier] = STATE(1879), - [sym_expression] = STATE(2912), - [sym__string] = STATE(3235), - [sym_comma_expression] = STATE(8449), - [sym_conditional_expression] = STATE(3373), - [sym_assignment_expression] = STATE(3373), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3373), - [sym_binary_expression] = STATE(3373), - [sym_update_expression] = STATE(3373), - [sym_cast_expression] = STATE(3373), - [sym_type_descriptor] = STATE(8697), - [sym_sizeof_expression] = STATE(3373), - [sym_alignof_expression] = STATE(3373), - [sym_offsetof_expression] = STATE(3373), - [sym_generic_expression] = STATE(3373), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3373), - [sym_extension_expression] = STATE(3373), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3373), - [sym_parenthesized_expression] = STATE(3365), - [sym_char_literal] = STATE(3235), - [sym_concatenated_string] = STATE(3235), - [sym_string_literal] = STATE(2358), - [sym_null] = STATE(3373), - [sym_placeholder_type_specifier] = STATE(1879), - [sym_decltype_auto] = STATE(1859), - [sym_decltype] = STATE(1713), - [sym_class_specifier] = STATE(1879), - [sym__class_name] = STATE(7814), - [sym_dependent_type] = STATE(1879), - [sym_template_type] = STATE(5285), - [sym_template_function] = STATE(3373), - [sym_raw_string_literal] = STATE(2358), - [sym_co_await_expression] = STATE(3373), - [sym_new_expression] = STATE(3373), - [sym_delete_expression] = STATE(3373), - [sym_requires_clause] = STATE(3373), - [sym_requires_expression] = STATE(3373), - [sym_lambda_expression] = STATE(3373), - [sym_lambda_capture_specifier] = STATE(5414), - [sym__unary_left_fold] = STATE(8232), - [sym__unary_right_fold] = STATE(8236), - [sym__binary_fold] = STATE(8240), - [sym_fold_expression] = STATE(3373), - [sym_parameter_pack_expansion] = STATE(3373), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5702), - [sym_qualified_identifier] = STATE(3365), - [sym_qualified_type_identifier] = STATE(5327), - [sym__assignment_expression_lhs] = STATE(8569), - [sym_user_defined_literal] = STATE(3365), - [aux_sym__type_definition_type_repeat1] = STATE(3904), - [aux_sym_sized_type_specifier_repeat1] = STATE(4209), + [sym_compound_statement] = STATE(8629), + [sym_type_qualifier] = STATE(3891), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(4528), + [sym_sized_type_specifier] = STATE(1890), + [sym_enum_specifier] = STATE(1890), + [sym_struct_specifier] = STATE(1890), + [sym_union_specifier] = STATE(1890), + [sym_expression] = STATE(2991), + [sym__string] = STATE(3393), + [sym_comma_expression] = STATE(8629), + [sym_conditional_expression] = STATE(3401), + [sym_assignment_expression] = STATE(3401), + [sym_pointer_expression] = STATE(3405), + [sym_unary_expression] = STATE(3401), + [sym_binary_expression] = STATE(3401), + [sym_update_expression] = STATE(3401), + [sym_cast_expression] = STATE(3401), + [sym_type_descriptor] = STATE(8830), + [sym_sizeof_expression] = STATE(3401), + [sym_alignof_expression] = STATE(3401), + [sym_offsetof_expression] = STATE(3401), + [sym_generic_expression] = STATE(3401), + [sym_subscript_expression] = STATE(3405), + [sym_call_expression] = STATE(3405), + [sym_gnu_asm_expression] = STATE(3401), + [sym_extension_expression] = STATE(3401), + [sym_field_expression] = STATE(3405), + [sym_compound_literal_expression] = STATE(3401), + [sym_parenthesized_expression] = STATE(3405), + [sym_char_literal] = STATE(3393), + [sym_concatenated_string] = STATE(3393), + [sym_string_literal] = STATE(2380), + [sym_null] = STATE(3401), + [sym_placeholder_type_specifier] = STATE(1890), + [sym_decltype_auto] = STATE(1888), + [sym_decltype] = STATE(1782), + [sym_class_specifier] = STATE(1890), + [sym__class_name] = STATE(7745), + [sym_dependent_type] = STATE(1890), + [sym_template_type] = STATE(5365), + [sym_template_function] = STATE(3401), + [sym_raw_string_literal] = STATE(2380), + [sym_co_await_expression] = STATE(3401), + [sym_new_expression] = STATE(3401), + [sym_delete_expression] = STATE(3401), + [sym_requires_clause] = STATE(3401), + [sym_requires_expression] = STATE(3401), + [sym_lambda_expression] = STATE(3401), + [sym_lambda_capture_specifier] = STATE(5494), + [sym__unary_left_fold] = STATE(8151), + [sym__unary_right_fold] = STATE(8158), + [sym__binary_fold] = STATE(8170), + [sym_fold_expression] = STATE(3401), + [sym_parameter_pack_expansion] = STATE(3401), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5846), + [sym_qualified_identifier] = STATE(3405), + [sym_qualified_type_identifier] = STATE(5382), + [sym__assignment_expression_lhs] = STATE(8390), + [sym_user_defined_literal] = STATE(3405), + [aux_sym__type_definition_type_repeat1] = STATE(3891), + [aux_sym_sized_type_specifier_repeat1] = STATE(4234), [sym_identifier] = ACTIONS(2016), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1790), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1788), [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(1804), - [anon_sym_COLON_COLON] = ACTIONS(1806), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1810), - [anon_sym_unsigned] = ACTIONS(1810), - [anon_sym_long] = ACTIONS(1810), - [anon_sym_short] = ACTIONS(1810), + [anon_sym_signed] = ACTIONS(1808), + [anon_sym_unsigned] = ACTIONS(1808), + [anon_sym_long] = ACTIONS(1808), + [anon_sym_short] = ACTIONS(1808), [anon_sym_LBRACK] = ACTIONS(2020), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), @@ -68740,137 +69023,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(1814), - [anon_sym_enum] = ACTIONS(1816), - [anon_sym_class] = ACTIONS(1818), - [anon_sym_struct] = ACTIONS(1820), - [anon_sym_union] = ACTIONS(1822), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1846), - [anon_sym_decltype] = ACTIONS(1848), - [anon_sym_typename] = ACTIONS(1850), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), + [sym_primitive_type] = ACTIONS(1812), + [anon_sym_enum] = ACTIONS(1814), + [anon_sym_class] = ACTIONS(1816), + [anon_sym_struct] = ACTIONS(1818), + [anon_sym_union] = ACTIONS(1820), + [anon_sym_not] = ACTIONS(1796), + [anon_sym_compl] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_sizeof] = ACTIONS(1824), + [anon_sym___alignof__] = ACTIONS(1826), + [anon_sym___alignof] = ACTIONS(1826), + [anon_sym__alignof] = ACTIONS(1826), + [anon_sym_alignof] = ACTIONS(1826), + [anon_sym__Alignof] = ACTIONS(1826), + [anon_sym_offsetof] = ACTIONS(1828), + [anon_sym__Generic] = ACTIONS(1830), + [anon_sym_asm] = ACTIONS(1832), + [anon_sym___asm__] = ACTIONS(1832), + [anon_sym___asm] = ACTIONS(1832), + [sym_number_literal] = ACTIONS(1834), + [anon_sym_L_SQUOTE] = ACTIONS(1836), + [anon_sym_u_SQUOTE] = ACTIONS(1836), + [anon_sym_U_SQUOTE] = ACTIONS(1836), + [anon_sym_u8_SQUOTE] = ACTIONS(1836), + [anon_sym_SQUOTE] = ACTIONS(1836), + [anon_sym_L_DQUOTE] = ACTIONS(1838), + [anon_sym_u_DQUOTE] = ACTIONS(1838), + [anon_sym_U_DQUOTE] = ACTIONS(1838), + [anon_sym_u8_DQUOTE] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym_true] = ACTIONS(1840), + [sym_false] = ACTIONS(1840), + [anon_sym_NULL] = ACTIONS(1842), + [anon_sym_nullptr] = ACTIONS(1842), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1844), + [anon_sym_decltype] = ACTIONS(1846), + [anon_sym_typename] = ACTIONS(1848), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1852), + [anon_sym_R_DQUOTE] = ACTIONS(1854), + [anon_sym_LR_DQUOTE] = ACTIONS(1854), + [anon_sym_uR_DQUOTE] = ACTIONS(1854), + [anon_sym_UR_DQUOTE] = ACTIONS(1854), + [anon_sym_u8R_DQUOTE] = ACTIONS(1854), + [anon_sym_co_await] = ACTIONS(1856), + [anon_sym_new] = ACTIONS(1858), + [anon_sym_requires] = ACTIONS(1860), + [sym_this] = ACTIONS(1840), }, [172] = { - [sym_compound_statement] = STATE(8449), - [sym_type_qualifier] = STATE(3904), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(4455), - [sym_sized_type_specifier] = STATE(1879), - [sym_enum_specifier] = STATE(1879), - [sym_struct_specifier] = STATE(1879), - [sym_union_specifier] = STATE(1879), - [sym_expression] = STATE(2912), - [sym__string] = STATE(3235), - [sym_comma_expression] = STATE(8449), - [sym_conditional_expression] = STATE(3373), - [sym_assignment_expression] = STATE(3373), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3373), - [sym_binary_expression] = STATE(3373), - [sym_update_expression] = STATE(3373), - [sym_cast_expression] = STATE(3373), - [sym_type_descriptor] = STATE(8484), - [sym_sizeof_expression] = STATE(3373), - [sym_alignof_expression] = STATE(3373), - [sym_offsetof_expression] = STATE(3373), - [sym_generic_expression] = STATE(3373), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3373), - [sym_extension_expression] = STATE(3373), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3373), - [sym_parenthesized_expression] = STATE(3365), - [sym_char_literal] = STATE(3235), - [sym_concatenated_string] = STATE(3235), - [sym_string_literal] = STATE(2358), - [sym_null] = STATE(3373), - [sym_placeholder_type_specifier] = STATE(1879), - [sym_decltype_auto] = STATE(1859), - [sym_decltype] = STATE(1713), - [sym_class_specifier] = STATE(1879), - [sym__class_name] = STATE(7814), - [sym_dependent_type] = STATE(1879), - [sym_template_type] = STATE(5285), - [sym_template_function] = STATE(3373), - [sym_raw_string_literal] = STATE(2358), - [sym_co_await_expression] = STATE(3373), - [sym_new_expression] = STATE(3373), - [sym_delete_expression] = STATE(3373), - [sym_requires_clause] = STATE(3373), - [sym_requires_expression] = STATE(3373), - [sym_lambda_expression] = STATE(3373), - [sym_lambda_capture_specifier] = STATE(5414), - [sym__unary_left_fold] = STATE(8232), - [sym__unary_right_fold] = STATE(8236), - [sym__binary_fold] = STATE(8240), - [sym_fold_expression] = STATE(3373), - [sym_parameter_pack_expansion] = STATE(3373), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5702), - [sym_qualified_identifier] = STATE(3365), - [sym_qualified_type_identifier] = STATE(5327), - [sym__assignment_expression_lhs] = STATE(8569), - [sym_user_defined_literal] = STATE(3365), - [aux_sym__type_definition_type_repeat1] = STATE(3904), - [aux_sym_sized_type_specifier_repeat1] = STATE(4209), + [sym_compound_statement] = STATE(8629), + [sym_type_qualifier] = STATE(3891), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(4528), + [sym_sized_type_specifier] = STATE(1890), + [sym_enum_specifier] = STATE(1890), + [sym_struct_specifier] = STATE(1890), + [sym_union_specifier] = STATE(1890), + [sym_expression] = STATE(2991), + [sym__string] = STATE(3393), + [sym_comma_expression] = STATE(8629), + [sym_conditional_expression] = STATE(3401), + [sym_assignment_expression] = STATE(3401), + [sym_pointer_expression] = STATE(3405), + [sym_unary_expression] = STATE(3401), + [sym_binary_expression] = STATE(3401), + [sym_update_expression] = STATE(3401), + [sym_cast_expression] = STATE(3401), + [sym_type_descriptor] = STATE(8617), + [sym_sizeof_expression] = STATE(3401), + [sym_alignof_expression] = STATE(3401), + [sym_offsetof_expression] = STATE(3401), + [sym_generic_expression] = STATE(3401), + [sym_subscript_expression] = STATE(3405), + [sym_call_expression] = STATE(3405), + [sym_gnu_asm_expression] = STATE(3401), + [sym_extension_expression] = STATE(3401), + [sym_field_expression] = STATE(3405), + [sym_compound_literal_expression] = STATE(3401), + [sym_parenthesized_expression] = STATE(3405), + [sym_char_literal] = STATE(3393), + [sym_concatenated_string] = STATE(3393), + [sym_string_literal] = STATE(2380), + [sym_null] = STATE(3401), + [sym_placeholder_type_specifier] = STATE(1890), + [sym_decltype_auto] = STATE(1888), + [sym_decltype] = STATE(1782), + [sym_class_specifier] = STATE(1890), + [sym__class_name] = STATE(7745), + [sym_dependent_type] = STATE(1890), + [sym_template_type] = STATE(5365), + [sym_template_function] = STATE(3401), + [sym_raw_string_literal] = STATE(2380), + [sym_co_await_expression] = STATE(3401), + [sym_new_expression] = STATE(3401), + [sym_delete_expression] = STATE(3401), + [sym_requires_clause] = STATE(3401), + [sym_requires_expression] = STATE(3401), + [sym_lambda_expression] = STATE(3401), + [sym_lambda_capture_specifier] = STATE(5494), + [sym__unary_left_fold] = STATE(8151), + [sym__unary_right_fold] = STATE(8158), + [sym__binary_fold] = STATE(8170), + [sym_fold_expression] = STATE(3401), + [sym_parameter_pack_expansion] = STATE(3401), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5846), + [sym_qualified_identifier] = STATE(3405), + [sym_qualified_type_identifier] = STATE(5382), + [sym__assignment_expression_lhs] = STATE(8390), + [sym_user_defined_literal] = STATE(3405), + [aux_sym__type_definition_type_repeat1] = STATE(3891), + [aux_sym_sized_type_specifier_repeat1] = STATE(4234), [sym_identifier] = ACTIONS(2016), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1790), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1788), [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(1804), - [anon_sym_COLON_COLON] = ACTIONS(1806), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1810), - [anon_sym_unsigned] = ACTIONS(1810), - [anon_sym_long] = ACTIONS(1810), - [anon_sym_short] = ACTIONS(1810), + [anon_sym_signed] = ACTIONS(1808), + [anon_sym_unsigned] = ACTIONS(1808), + [anon_sym_long] = ACTIONS(1808), + [anon_sym_short] = ACTIONS(1808), [anon_sym_LBRACK] = ACTIONS(2020), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), @@ -68886,137 +69169,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(1814), - [anon_sym_enum] = ACTIONS(1816), - [anon_sym_class] = ACTIONS(1818), - [anon_sym_struct] = ACTIONS(1820), - [anon_sym_union] = ACTIONS(1822), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1846), - [anon_sym_decltype] = ACTIONS(1848), - [anon_sym_typename] = ACTIONS(1850), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), + [sym_primitive_type] = ACTIONS(1812), + [anon_sym_enum] = ACTIONS(1814), + [anon_sym_class] = ACTIONS(1816), + [anon_sym_struct] = ACTIONS(1818), + [anon_sym_union] = ACTIONS(1820), + [anon_sym_not] = ACTIONS(1796), + [anon_sym_compl] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_sizeof] = ACTIONS(1824), + [anon_sym___alignof__] = ACTIONS(1826), + [anon_sym___alignof] = ACTIONS(1826), + [anon_sym__alignof] = ACTIONS(1826), + [anon_sym_alignof] = ACTIONS(1826), + [anon_sym__Alignof] = ACTIONS(1826), + [anon_sym_offsetof] = ACTIONS(1828), + [anon_sym__Generic] = ACTIONS(1830), + [anon_sym_asm] = ACTIONS(1832), + [anon_sym___asm__] = ACTIONS(1832), + [anon_sym___asm] = ACTIONS(1832), + [sym_number_literal] = ACTIONS(1834), + [anon_sym_L_SQUOTE] = ACTIONS(1836), + [anon_sym_u_SQUOTE] = ACTIONS(1836), + [anon_sym_U_SQUOTE] = ACTIONS(1836), + [anon_sym_u8_SQUOTE] = ACTIONS(1836), + [anon_sym_SQUOTE] = ACTIONS(1836), + [anon_sym_L_DQUOTE] = ACTIONS(1838), + [anon_sym_u_DQUOTE] = ACTIONS(1838), + [anon_sym_U_DQUOTE] = ACTIONS(1838), + [anon_sym_u8_DQUOTE] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym_true] = ACTIONS(1840), + [sym_false] = ACTIONS(1840), + [anon_sym_NULL] = ACTIONS(1842), + [anon_sym_nullptr] = ACTIONS(1842), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1844), + [anon_sym_decltype] = ACTIONS(1846), + [anon_sym_typename] = ACTIONS(1848), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1852), + [anon_sym_R_DQUOTE] = ACTIONS(1854), + [anon_sym_LR_DQUOTE] = ACTIONS(1854), + [anon_sym_uR_DQUOTE] = ACTIONS(1854), + [anon_sym_UR_DQUOTE] = ACTIONS(1854), + [anon_sym_u8R_DQUOTE] = ACTIONS(1854), + [anon_sym_co_await] = ACTIONS(1856), + [anon_sym_new] = ACTIONS(1858), + [anon_sym_requires] = ACTIONS(1860), + [sym_this] = ACTIONS(1840), }, [173] = { - [sym_compound_statement] = STATE(8215), - [sym_type_qualifier] = STATE(3904), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(4455), - [sym_sized_type_specifier] = STATE(1879), - [sym_enum_specifier] = STATE(1879), - [sym_struct_specifier] = STATE(1879), - [sym_union_specifier] = STATE(1879), - [sym_expression] = STATE(2942), - [sym__string] = STATE(3235), - [sym_comma_expression] = STATE(8215), - [sym_conditional_expression] = STATE(3373), - [sym_assignment_expression] = STATE(3373), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3373), - [sym_binary_expression] = STATE(3373), - [sym_update_expression] = STATE(3373), - [sym_cast_expression] = STATE(3373), - [sym_type_descriptor] = STATE(8588), - [sym_sizeof_expression] = STATE(3373), - [sym_alignof_expression] = STATE(3373), - [sym_offsetof_expression] = STATE(3373), - [sym_generic_expression] = STATE(3373), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3373), - [sym_extension_expression] = STATE(3373), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3373), - [sym_parenthesized_expression] = STATE(3365), - [sym_char_literal] = STATE(3235), - [sym_concatenated_string] = STATE(3235), - [sym_string_literal] = STATE(2358), - [sym_null] = STATE(3373), - [sym_placeholder_type_specifier] = STATE(1879), - [sym_decltype_auto] = STATE(1859), - [sym_decltype] = STATE(1713), - [sym_class_specifier] = STATE(1879), - [sym__class_name] = STATE(7814), - [sym_dependent_type] = STATE(1879), - [sym_template_type] = STATE(5285), - [sym_template_function] = STATE(3373), - [sym_raw_string_literal] = STATE(2358), - [sym_co_await_expression] = STATE(3373), - [sym_new_expression] = STATE(3373), - [sym_delete_expression] = STATE(3373), - [sym_requires_clause] = STATE(3373), - [sym_requires_expression] = STATE(3373), - [sym_lambda_expression] = STATE(3373), - [sym_lambda_capture_specifier] = STATE(5414), - [sym__unary_left_fold] = STATE(8605), - [sym__unary_right_fold] = STATE(8610), - [sym__binary_fold] = STATE(8628), - [sym_fold_expression] = STATE(3373), - [sym_parameter_pack_expansion] = STATE(3373), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5702), - [sym_qualified_identifier] = STATE(3365), - [sym_qualified_type_identifier] = STATE(5327), - [sym__assignment_expression_lhs] = STATE(8243), - [sym_user_defined_literal] = STATE(3365), - [aux_sym__type_definition_type_repeat1] = STATE(3904), - [aux_sym_sized_type_specifier_repeat1] = STATE(4209), + [sym_compound_statement] = STATE(8140), + [sym_type_qualifier] = STATE(3891), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(4528), + [sym_sized_type_specifier] = STATE(1890), + [sym_enum_specifier] = STATE(1890), + [sym_struct_specifier] = STATE(1890), + [sym_union_specifier] = STATE(1890), + [sym_expression] = STATE(2926), + [sym__string] = STATE(3393), + [sym_comma_expression] = STATE(8140), + [sym_conditional_expression] = STATE(3401), + [sym_assignment_expression] = STATE(3401), + [sym_pointer_expression] = STATE(3405), + [sym_unary_expression] = STATE(3401), + [sym_binary_expression] = STATE(3401), + [sym_update_expression] = STATE(3401), + [sym_cast_expression] = STATE(3401), + [sym_type_descriptor] = STATE(8285), + [sym_sizeof_expression] = STATE(3401), + [sym_alignof_expression] = STATE(3401), + [sym_offsetof_expression] = STATE(3401), + [sym_generic_expression] = STATE(3401), + [sym_subscript_expression] = STATE(3405), + [sym_call_expression] = STATE(3405), + [sym_gnu_asm_expression] = STATE(3401), + [sym_extension_expression] = STATE(3401), + [sym_field_expression] = STATE(3405), + [sym_compound_literal_expression] = STATE(3401), + [sym_parenthesized_expression] = STATE(3405), + [sym_char_literal] = STATE(3393), + [sym_concatenated_string] = STATE(3393), + [sym_string_literal] = STATE(2380), + [sym_null] = STATE(3401), + [sym_placeholder_type_specifier] = STATE(1890), + [sym_decltype_auto] = STATE(1888), + [sym_decltype] = STATE(1782), + [sym_class_specifier] = STATE(1890), + [sym__class_name] = STATE(7745), + [sym_dependent_type] = STATE(1890), + [sym_template_type] = STATE(5365), + [sym_template_function] = STATE(3401), + [sym_raw_string_literal] = STATE(2380), + [sym_co_await_expression] = STATE(3401), + [sym_new_expression] = STATE(3401), + [sym_delete_expression] = STATE(3401), + [sym_requires_clause] = STATE(3401), + [sym_requires_expression] = STATE(3401), + [sym_lambda_expression] = STATE(3401), + [sym_lambda_capture_specifier] = STATE(5494), + [sym__unary_left_fold] = STATE(8287), + [sym__unary_right_fold] = STATE(8288), + [sym__binary_fold] = STATE(8289), + [sym_fold_expression] = STATE(3401), + [sym_parameter_pack_expansion] = STATE(3401), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5846), + [sym_qualified_identifier] = STATE(3405), + [sym_qualified_type_identifier] = STATE(5382), + [sym__assignment_expression_lhs] = STATE(8172), + [sym_user_defined_literal] = STATE(3405), + [aux_sym__type_definition_type_repeat1] = STATE(3891), + [aux_sym_sized_type_specifier_repeat1] = STATE(4234), [sym_identifier] = ACTIONS(2016), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1790), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1788), [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(1804), - [anon_sym_COLON_COLON] = ACTIONS(1806), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1804), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1810), - [anon_sym_unsigned] = ACTIONS(1810), - [anon_sym_long] = ACTIONS(1810), - [anon_sym_short] = ACTIONS(1810), + [anon_sym_signed] = ACTIONS(1808), + [anon_sym_unsigned] = ACTIONS(1808), + [anon_sym_long] = ACTIONS(1808), + [anon_sym_short] = ACTIONS(1808), [anon_sym_LBRACK] = ACTIONS(2020), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), @@ -69032,154 +69315,154 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(1814), - [anon_sym_enum] = ACTIONS(1816), - [anon_sym_class] = ACTIONS(1818), - [anon_sym_struct] = ACTIONS(1820), - [anon_sym_union] = ACTIONS(1822), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1846), - [anon_sym_decltype] = ACTIONS(1848), - [anon_sym_typename] = ACTIONS(1850), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), + [sym_primitive_type] = ACTIONS(1812), + [anon_sym_enum] = ACTIONS(1814), + [anon_sym_class] = ACTIONS(1816), + [anon_sym_struct] = ACTIONS(1818), + [anon_sym_union] = ACTIONS(1820), + [anon_sym_not] = ACTIONS(1796), + [anon_sym_compl] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_sizeof] = ACTIONS(1824), + [anon_sym___alignof__] = ACTIONS(1826), + [anon_sym___alignof] = ACTIONS(1826), + [anon_sym__alignof] = ACTIONS(1826), + [anon_sym_alignof] = ACTIONS(1826), + [anon_sym__Alignof] = ACTIONS(1826), + [anon_sym_offsetof] = ACTIONS(1828), + [anon_sym__Generic] = ACTIONS(1830), + [anon_sym_asm] = ACTIONS(1832), + [anon_sym___asm__] = ACTIONS(1832), + [anon_sym___asm] = ACTIONS(1832), + [sym_number_literal] = ACTIONS(1834), + [anon_sym_L_SQUOTE] = ACTIONS(1836), + [anon_sym_u_SQUOTE] = ACTIONS(1836), + [anon_sym_U_SQUOTE] = ACTIONS(1836), + [anon_sym_u8_SQUOTE] = ACTIONS(1836), + [anon_sym_SQUOTE] = ACTIONS(1836), + [anon_sym_L_DQUOTE] = ACTIONS(1838), + [anon_sym_u_DQUOTE] = ACTIONS(1838), + [anon_sym_U_DQUOTE] = ACTIONS(1838), + [anon_sym_u8_DQUOTE] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym_true] = ACTIONS(1840), + [sym_false] = ACTIONS(1840), + [anon_sym_NULL] = ACTIONS(1842), + [anon_sym_nullptr] = ACTIONS(1842), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1844), + [anon_sym_decltype] = ACTIONS(1846), + [anon_sym_typename] = ACTIONS(1848), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1852), + [anon_sym_R_DQUOTE] = ACTIONS(1854), + [anon_sym_LR_DQUOTE] = ACTIONS(1854), + [anon_sym_uR_DQUOTE] = ACTIONS(1854), + [anon_sym_UR_DQUOTE] = ACTIONS(1854), + [anon_sym_u8R_DQUOTE] = ACTIONS(1854), + [anon_sym_co_await] = ACTIONS(1856), + [anon_sym_new] = ACTIONS(1858), + [anon_sym_requires] = ACTIONS(1860), + [sym_this] = ACTIONS(1840), }, [174] = { - [sym_attribute_declaration] = STATE(203), - [sym_compound_statement] = STATE(279), - [sym_attributed_statement] = STATE(279), - [sym_statement] = STATE(273), - [sym_labeled_statement] = STATE(279), - [sym_expression_statement] = STATE(279), - [sym_if_statement] = STATE(279), - [sym_switch_statement] = STATE(279), - [sym_case_statement] = STATE(279), - [sym_while_statement] = STATE(279), - [sym_do_statement] = STATE(279), - [sym_for_statement] = STATE(279), - [sym_return_statement] = STATE(279), - [sym_break_statement] = STATE(279), - [sym_continue_statement] = STATE(279), - [sym_goto_statement] = STATE(279), - [sym_seh_try_statement] = STATE(279), - [sym_seh_leave_statement] = STATE(279), - [sym_expression] = STATE(4493), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8429), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_for_range_loop] = STATE(279), - [sym_co_return_statement] = STATE(279), - [sym_co_yield_statement] = STATE(279), - [sym_throw_statement] = STATE(279), - [sym_try_statement] = STATE(279), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_attributed_declarator_repeat1] = STATE(203), - [sym_identifier] = ACTIONS(2237), - [anon_sym_LPAREN2] = ACTIONS(1436), + [sym_attribute_declaration] = STATE(186), + [sym_compound_statement] = STATE(560), + [sym_attributed_statement] = STATE(560), + [sym_statement] = STATE(460), + [sym_labeled_statement] = STATE(560), + [sym_expression_statement] = STATE(560), + [sym_if_statement] = STATE(560), + [sym_switch_statement] = STATE(560), + [sym_case_statement] = STATE(560), + [sym_while_statement] = STATE(560), + [sym_do_statement] = STATE(560), + [sym_for_statement] = STATE(560), + [sym_return_statement] = STATE(560), + [sym_break_statement] = STATE(560), + [sym_continue_statement] = STATE(560), + [sym_goto_statement] = STATE(560), + [sym_seh_try_statement] = STATE(560), + [sym_seh_leave_statement] = STATE(560), + [sym_expression] = STATE(4554), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8083), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_for_range_loop] = STATE(560), + [sym_co_return_statement] = STATE(560), + [sym_co_yield_statement] = STATE(560), + [sym_throw_statement] = STATE(560), + [sym_try_statement] = STATE(560), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_attributed_declarator_repeat1] = STATE(186), + [sym_identifier] = ACTIONS(2325), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(287), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(181), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), - [anon_sym_LBRACE] = ACTIONS(297), - [anon_sym_LBRACK] = ACTIONS(1450), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_if] = ACTIONS(301), - [anon_sym_switch] = ACTIONS(303), - [anon_sym_case] = ACTIONS(305), - [anon_sym_default] = ACTIONS(307), - [anon_sym_while] = ACTIONS(309), - [anon_sym_do] = ACTIONS(311), - [anon_sym_for] = ACTIONS(313), - [anon_sym_return] = ACTIONS(315), - [anon_sym_break] = ACTIONS(317), - [anon_sym_continue] = ACTIONS(319), - [anon_sym_goto] = ACTIONS(321), - [anon_sym___try] = ACTIONS(323), - [anon_sym___leave] = ACTIONS(325), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(866), + [anon_sym_LBRACK] = ACTIONS(1266), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_if] = ACTIONS(199), + [anon_sym_switch] = ACTIONS(201), + [anon_sym_case] = ACTIONS(203), + [anon_sym_default] = ACTIONS(205), + [anon_sym_while] = ACTIONS(207), + [anon_sym_do] = ACTIONS(209), + [anon_sym_for] = ACTIONS(211), + [anon_sym_return] = ACTIONS(213), + [anon_sym_break] = ACTIONS(215), + [anon_sym_continue] = ACTIONS(217), + [anon_sym_goto] = ACTIONS(219), + [anon_sym___try] = ACTIONS(221), + [anon_sym___leave] = ACTIONS(223), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -69212,12 +69495,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_try] = ACTIONS(329), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_try] = ACTIONS(233), [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(331), - [anon_sym_co_return] = ACTIONS(339), - [anon_sym_co_yield] = ACTIONS(341), + [anon_sym_throw] = ACTIONS(235), + [anon_sym_co_return] = ACTIONS(243), + [anon_sym_co_yield] = ACTIONS(245), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), @@ -69229,102 +69512,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [175] = { - [sym_attribute_declaration] = STATE(216), - [sym_compound_statement] = STATE(545), - [sym_attributed_statement] = STATE(545), - [sym_statement] = STATE(8448), - [sym_labeled_statement] = STATE(545), - [sym_expression_statement] = STATE(545), - [sym_if_statement] = STATE(545), - [sym_switch_statement] = STATE(545), - [sym_case_statement] = STATE(545), - [sym_while_statement] = STATE(545), - [sym_do_statement] = STATE(545), - [sym_for_statement] = STATE(545), - [sym_return_statement] = STATE(545), - [sym_break_statement] = STATE(545), - [sym_continue_statement] = STATE(545), - [sym_goto_statement] = STATE(545), - [sym_seh_try_statement] = STATE(545), - [sym_seh_leave_statement] = STATE(545), - [sym_expression] = STATE(4457), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8711), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_for_range_loop] = STATE(545), - [sym_co_return_statement] = STATE(545), - [sym_co_yield_statement] = STATE(545), - [sym_throw_statement] = STATE(545), - [sym_try_statement] = STATE(545), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_attributed_declarator_repeat1] = STATE(216), - [sym_identifier] = ACTIONS(2389), - [anon_sym_LPAREN2] = ACTIONS(1436), + [sym_attribute_declaration] = STATE(149), + [sym_compound_statement] = STATE(513), + [sym_attributed_statement] = STATE(513), + [sym_statement] = STATE(537), + [sym_labeled_statement] = STATE(513), + [sym_expression_statement] = STATE(513), + [sym_if_statement] = STATE(513), + [sym_switch_statement] = STATE(513), + [sym_case_statement] = STATE(513), + [sym_while_statement] = STATE(513), + [sym_do_statement] = STATE(513), + [sym_for_statement] = STATE(513), + [sym_return_statement] = STATE(513), + [sym_break_statement] = STATE(513), + [sym_continue_statement] = STATE(513), + [sym_goto_statement] = STATE(513), + [sym_seh_try_statement] = STATE(513), + [sym_seh_leave_statement] = STATE(513), + [sym_expression] = STATE(4531), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8444), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_for_range_loop] = STATE(513), + [sym_co_return_statement] = STATE(513), + [sym_co_yield_statement] = STATE(513), + [sym_throw_statement] = STATE(513), + [sym_try_statement] = STATE(513), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_attributed_declarator_repeat1] = STATE(149), + [sym_identifier] = ACTIONS(2297), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(884), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1450), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_if] = ACTIONS(1766), - [anon_sym_switch] = ACTIONS(83), - [anon_sym_case] = ACTIONS(1760), - [anon_sym_default] = ACTIONS(1762), - [anon_sym_while] = ACTIONS(1768), - [anon_sym_do] = ACTIONS(91), - [anon_sym_for] = ACTIONS(1770), - [anon_sym_return] = ACTIONS(95), - [anon_sym_break] = ACTIONS(97), - [anon_sym_continue] = ACTIONS(99), - [anon_sym_goto] = ACTIONS(101), - [anon_sym___try] = ACTIONS(1772), - [anon_sym___leave] = ACTIONS(223), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(894), + [anon_sym_LBRACK] = ACTIONS(1266), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_if] = ACTIONS(898), + [anon_sym_switch] = ACTIONS(900), + [anon_sym_case] = ACTIONS(902), + [anon_sym_default] = ACTIONS(904), + [anon_sym_while] = ACTIONS(906), + [anon_sym_do] = ACTIONS(908), + [anon_sym_for] = ACTIONS(910), + [anon_sym_return] = ACTIONS(912), + [anon_sym_break] = ACTIONS(914), + [anon_sym_continue] = ACTIONS(916), + [anon_sym_goto] = ACTIONS(918), + [anon_sym___try] = ACTIONS(920), + [anon_sym___leave] = ACTIONS(922), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -69357,12 +69640,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_try] = ACTIONS(143), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_try] = ACTIONS(926), [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(147), - [anon_sym_co_return] = ACTIONS(155), - [anon_sym_co_yield] = ACTIONS(157), + [anon_sym_throw] = ACTIONS(928), + [anon_sym_co_return] = ACTIONS(936), + [anon_sym_co_yield] = ACTIONS(938), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), @@ -69374,102 +69657,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [176] = { - [sym_attribute_declaration] = STATE(218), - [sym_compound_statement] = STATE(529), - [sym_attributed_statement] = STATE(529), - [sym_statement] = STATE(456), - [sym_labeled_statement] = STATE(529), - [sym_expression_statement] = STATE(529), - [sym_if_statement] = STATE(529), - [sym_switch_statement] = STATE(529), - [sym_case_statement] = STATE(529), - [sym_while_statement] = STATE(529), - [sym_do_statement] = STATE(529), - [sym_for_statement] = STATE(529), - [sym_return_statement] = STATE(529), - [sym_break_statement] = STATE(529), - [sym_continue_statement] = STATE(529), - [sym_goto_statement] = STATE(529), - [sym_seh_try_statement] = STATE(529), - [sym_seh_leave_statement] = STATE(529), - [sym_expression] = STATE(4500), - [sym__string] = STATE(4250), + [sym_attribute_declaration] = STATE(192), + [sym_compound_statement] = STATE(931), + [sym_attributed_statement] = STATE(931), + [sym_statement] = STATE(948), + [sym_labeled_statement] = STATE(931), + [sym_expression_statement] = STATE(931), + [sym_if_statement] = STATE(931), + [sym_switch_statement] = STATE(931), + [sym_case_statement] = STATE(931), + [sym_while_statement] = STATE(931), + [sym_do_statement] = STATE(931), + [sym_for_statement] = STATE(931), + [sym_return_statement] = STATE(931), + [sym_break_statement] = STATE(931), + [sym_continue_statement] = STATE(931), + [sym_goto_statement] = STATE(931), + [sym_seh_try_statement] = STATE(931), + [sym_seh_leave_statement] = STATE(931), + [sym_expression] = STATE(4602), + [sym__string] = STATE(4294), [sym_comma_expression] = STATE(8311), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_for_range_loop] = STATE(529), - [sym_co_return_statement] = STATE(529), - [sym_co_yield_statement] = STATE(529), - [sym_throw_statement] = STATE(529), - [sym_try_statement] = STATE(529), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_attributed_declarator_repeat1] = STATE(218), - [sym_identifier] = ACTIONS(2301), - [anon_sym_LPAREN2] = ACTIONS(1436), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_for_range_loop] = STATE(931), + [sym_co_return_statement] = STATE(931), + [sym_co_yield_statement] = STATE(931), + [sym_throw_statement] = STATE(931), + [sym_try_statement] = STATE(931), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_attributed_declarator_repeat1] = STATE(192), + [sym_identifier] = ACTIONS(2389), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(884), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(1662), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), - [anon_sym_LBRACE] = ACTIONS(894), - [anon_sym_LBRACK] = ACTIONS(1450), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_if] = ACTIONS(898), - [anon_sym_switch] = ACTIONS(900), - [anon_sym_case] = ACTIONS(902), - [anon_sym_default] = ACTIONS(904), - [anon_sym_while] = ACTIONS(906), - [anon_sym_do] = ACTIONS(908), - [anon_sym_for] = ACTIONS(910), - [anon_sym_return] = ACTIONS(912), - [anon_sym_break] = ACTIONS(914), - [anon_sym_continue] = ACTIONS(916), - [anon_sym_goto] = ACTIONS(918), - [anon_sym___try] = ACTIONS(920), - [anon_sym___leave] = ACTIONS(922), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1668), + [anon_sym_LBRACK] = ACTIONS(1266), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_if] = ACTIONS(1670), + [anon_sym_switch] = ACTIONS(1672), + [anon_sym_case] = ACTIONS(1704), + [anon_sym_default] = ACTIONS(1706), + [anon_sym_while] = ACTIONS(1674), + [anon_sym_do] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(1678), + [anon_sym_return] = ACTIONS(1680), + [anon_sym_break] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(1684), + [anon_sym_goto] = ACTIONS(1686), + [anon_sym___try] = ACTIONS(1688), + [anon_sym___leave] = ACTIONS(1690), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -69502,12 +69785,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_try] = ACTIONS(926), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_try] = ACTIONS(1692), [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(928), - [anon_sym_co_return] = ACTIONS(936), - [anon_sym_co_yield] = ACTIONS(938), + [anon_sym_throw] = ACTIONS(1694), + [anon_sym_co_return] = ACTIONS(1696), + [anon_sym_co_yield] = ACTIONS(1698), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), @@ -69519,89 +69802,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [177] = { - [sym_attribute_declaration] = STATE(218), - [sym_compound_statement] = STATE(529), - [sym_attributed_statement] = STATE(529), - [sym_statement] = STATE(569), - [sym_labeled_statement] = STATE(529), - [sym_expression_statement] = STATE(529), - [sym_if_statement] = STATE(529), - [sym_switch_statement] = STATE(529), - [sym_case_statement] = STATE(529), - [sym_while_statement] = STATE(529), - [sym_do_statement] = STATE(529), - [sym_for_statement] = STATE(529), - [sym_return_statement] = STATE(529), - [sym_break_statement] = STATE(529), - [sym_continue_statement] = STATE(529), - [sym_goto_statement] = STATE(529), - [sym_seh_try_statement] = STATE(529), - [sym_seh_leave_statement] = STATE(529), - [sym_expression] = STATE(4500), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8311), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_for_range_loop] = STATE(529), - [sym_co_return_statement] = STATE(529), - [sym_co_yield_statement] = STATE(529), - [sym_throw_statement] = STATE(529), - [sym_try_statement] = STATE(529), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_attributed_declarator_repeat1] = STATE(218), - [sym_identifier] = ACTIONS(2301), - [anon_sym_LPAREN2] = ACTIONS(1436), + [sym_attribute_declaration] = STATE(175), + [sym_compound_statement] = STATE(513), + [sym_attributed_statement] = STATE(513), + [sym_statement] = STATE(472), + [sym_labeled_statement] = STATE(513), + [sym_expression_statement] = STATE(513), + [sym_if_statement] = STATE(513), + [sym_switch_statement] = STATE(513), + [sym_case_statement] = STATE(513), + [sym_while_statement] = STATE(513), + [sym_do_statement] = STATE(513), + [sym_for_statement] = STATE(513), + [sym_return_statement] = STATE(513), + [sym_break_statement] = STATE(513), + [sym_continue_statement] = STATE(513), + [sym_goto_statement] = STATE(513), + [sym_seh_try_statement] = STATE(513), + [sym_seh_leave_statement] = STATE(513), + [sym_expression] = STATE(4531), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8444), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_for_range_loop] = STATE(513), + [sym_co_return_statement] = STATE(513), + [sym_co_yield_statement] = STATE(513), + [sym_throw_statement] = STATE(513), + [sym_try_statement] = STATE(513), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_attributed_declarator_repeat1] = STATE(175), + [sym_identifier] = ACTIONS(2297), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), [anon_sym_SEMI] = ACTIONS(884), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), [anon_sym_LBRACE] = ACTIONS(894), - [anon_sym_LBRACK] = ACTIONS(1450), - [sym_primitive_type] = ACTIONS(2028), + [anon_sym_LBRACK] = ACTIONS(1266), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_if] = ACTIONS(898), [anon_sym_switch] = ACTIONS(900), [anon_sym_case] = ACTIONS(902), @@ -69647,7 +69930,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_try] = ACTIONS(926), [anon_sym_delete] = ACTIONS(145), [anon_sym_throw] = ACTIONS(928), @@ -69664,102 +69947,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [178] = { - [sym_attribute_declaration] = STATE(219), - [sym_compound_statement] = STATE(545), - [sym_attributed_statement] = STATE(545), - [sym_statement] = STATE(460), - [sym_labeled_statement] = STATE(545), - [sym_expression_statement] = STATE(545), - [sym_if_statement] = STATE(545), - [sym_switch_statement] = STATE(545), - [sym_case_statement] = STATE(545), - [sym_while_statement] = STATE(545), - [sym_do_statement] = STATE(545), - [sym_for_statement] = STATE(545), - [sym_return_statement] = STATE(545), - [sym_break_statement] = STATE(545), - [sym_continue_statement] = STATE(545), - [sym_goto_statement] = STATE(545), - [sym_seh_try_statement] = STATE(545), - [sym_seh_leave_statement] = STATE(545), - [sym_expression] = STATE(4457), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8711), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_for_range_loop] = STATE(545), - [sym_co_return_statement] = STATE(545), - [sym_co_yield_statement] = STATE(545), - [sym_throw_statement] = STATE(545), - [sym_try_statement] = STATE(545), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_attributed_declarator_repeat1] = STATE(219), - [sym_identifier] = ACTIONS(2022), - [anon_sym_LPAREN2] = ACTIONS(1436), + [sym_attribute_declaration] = STATE(175), + [sym_compound_statement] = STATE(513), + [sym_attributed_statement] = STATE(513), + [sym_statement] = STATE(547), + [sym_labeled_statement] = STATE(513), + [sym_expression_statement] = STATE(513), + [sym_if_statement] = STATE(513), + [sym_switch_statement] = STATE(513), + [sym_case_statement] = STATE(513), + [sym_while_statement] = STATE(513), + [sym_do_statement] = STATE(513), + [sym_for_statement] = STATE(513), + [sym_return_statement] = STATE(513), + [sym_break_statement] = STATE(513), + [sym_continue_statement] = STATE(513), + [sym_goto_statement] = STATE(513), + [sym_seh_try_statement] = STATE(513), + [sym_seh_leave_statement] = STATE(513), + [sym_expression] = STATE(4531), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8444), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_for_range_loop] = STATE(513), + [sym_co_return_statement] = STATE(513), + [sym_co_yield_statement] = STATE(513), + [sym_throw_statement] = STATE(513), + [sym_try_statement] = STATE(513), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_attributed_declarator_repeat1] = STATE(175), + [sym_identifier] = ACTIONS(2297), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(884), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), - [anon_sym_LBRACE] = ACTIONS(866), - [anon_sym_LBRACK] = ACTIONS(1450), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_if] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), - [anon_sym_case] = ACTIONS(203), - [anon_sym_default] = ACTIONS(205), - [anon_sym_while] = ACTIONS(207), - [anon_sym_do] = ACTIONS(209), - [anon_sym_for] = ACTIONS(211), - [anon_sym_return] = ACTIONS(213), - [anon_sym_break] = ACTIONS(215), - [anon_sym_continue] = ACTIONS(217), - [anon_sym_goto] = ACTIONS(219), - [anon_sym___try] = ACTIONS(221), - [anon_sym___leave] = ACTIONS(223), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(894), + [anon_sym_LBRACK] = ACTIONS(1266), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_if] = ACTIONS(898), + [anon_sym_switch] = ACTIONS(900), + [anon_sym_case] = ACTIONS(902), + [anon_sym_default] = ACTIONS(904), + [anon_sym_while] = ACTIONS(906), + [anon_sym_do] = ACTIONS(908), + [anon_sym_for] = ACTIONS(910), + [anon_sym_return] = ACTIONS(912), + [anon_sym_break] = ACTIONS(914), + [anon_sym_continue] = ACTIONS(916), + [anon_sym_goto] = ACTIONS(918), + [anon_sym___try] = ACTIONS(920), + [anon_sym___leave] = ACTIONS(922), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -69792,12 +70075,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_try] = ACTIONS(233), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_try] = ACTIONS(926), [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(235), - [anon_sym_co_return] = ACTIONS(243), - [anon_sym_co_yield] = ACTIONS(245), + [anon_sym_throw] = ACTIONS(928), + [anon_sym_co_return] = ACTIONS(936), + [anon_sym_co_yield] = ACTIONS(938), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), @@ -69809,234 +70092,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [179] = { - [sym_attribute_declaration] = STATE(193), - [sym_compound_statement] = STATE(904), - [sym_attributed_statement] = STATE(904), - [sym_statement] = STATE(907), - [sym_labeled_statement] = STATE(904), - [sym_expression_statement] = STATE(904), - [sym_if_statement] = STATE(904), - [sym_switch_statement] = STATE(904), - [sym_case_statement] = STATE(904), - [sym_while_statement] = STATE(904), - [sym_do_statement] = STATE(904), - [sym_for_statement] = STATE(904), - [sym_return_statement] = STATE(904), - [sym_break_statement] = STATE(904), - [sym_continue_statement] = STATE(904), - [sym_goto_statement] = STATE(904), - [sym_seh_try_statement] = STATE(904), - [sym_seh_leave_statement] = STATE(904), - [sym_expression] = STATE(4571), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8696), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_for_range_loop] = STATE(904), - [sym_co_return_statement] = STATE(904), - [sym_co_yield_statement] = STATE(904), - [sym_throw_statement] = STATE(904), - [sym_try_statement] = STATE(904), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_attributed_declarator_repeat1] = STATE(193), - [sym_identifier] = ACTIONS(2391), - [anon_sym_LPAREN2] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(1662), - [anon_sym___extension__] = ACTIONS(2024), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), - [anon_sym_LBRACE] = ACTIONS(1668), - [anon_sym_LBRACK] = ACTIONS(1450), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_if] = ACTIONS(1670), - [anon_sym_switch] = ACTIONS(1672), - [anon_sym_case] = ACTIONS(1760), - [anon_sym_default] = ACTIONS(1762), - [anon_sym_while] = ACTIONS(1674), - [anon_sym_do] = ACTIONS(1676), - [anon_sym_for] = ACTIONS(1678), - [anon_sym_return] = ACTIONS(1680), - [anon_sym_break] = ACTIONS(1682), - [anon_sym_continue] = ACTIONS(1684), - [anon_sym_goto] = ACTIONS(1686), - [anon_sym___try] = ACTIONS(1688), - [anon_sym___leave] = ACTIONS(1690), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_try] = ACTIONS(1692), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(1694), - [anon_sym_co_return] = ACTIONS(1696), - [anon_sym_co_yield] = ACTIONS(1698), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), - }, - [180] = { - [sym_attribute_declaration] = STATE(203), - [sym_compound_statement] = STATE(279), - [sym_attributed_statement] = STATE(279), - [sym_statement] = STATE(240), - [sym_labeled_statement] = STATE(279), - [sym_expression_statement] = STATE(279), - [sym_if_statement] = STATE(279), - [sym_switch_statement] = STATE(279), - [sym_case_statement] = STATE(279), - [sym_while_statement] = STATE(279), - [sym_do_statement] = STATE(279), - [sym_for_statement] = STATE(279), - [sym_return_statement] = STATE(279), - [sym_break_statement] = STATE(279), - [sym_continue_statement] = STATE(279), - [sym_goto_statement] = STATE(279), - [sym_seh_try_statement] = STATE(279), - [sym_seh_leave_statement] = STATE(279), - [sym_expression] = STATE(4493), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8429), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_for_range_loop] = STATE(279), - [sym_co_return_statement] = STATE(279), - [sym_co_yield_statement] = STATE(279), - [sym_throw_statement] = STATE(279), - [sym_try_statement] = STATE(279), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_attributed_declarator_repeat1] = STATE(203), - [sym_identifier] = ACTIONS(2237), - [anon_sym_LPAREN2] = ACTIONS(1436), + [sym_attribute_declaration] = STATE(205), + [sym_compound_statement] = STATE(260), + [sym_attributed_statement] = STATE(260), + [sym_statement] = STATE(236), + [sym_labeled_statement] = STATE(260), + [sym_expression_statement] = STATE(260), + [sym_if_statement] = STATE(260), + [sym_switch_statement] = STATE(260), + [sym_case_statement] = STATE(260), + [sym_while_statement] = STATE(260), + [sym_do_statement] = STATE(260), + [sym_for_statement] = STATE(260), + [sym_return_statement] = STATE(260), + [sym_break_statement] = STATE(260), + [sym_continue_statement] = STATE(260), + [sym_goto_statement] = STATE(260), + [sym_seh_try_statement] = STATE(260), + [sym_seh_leave_statement] = STATE(260), + [sym_expression] = STATE(4517), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8280), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_for_range_loop] = STATE(260), + [sym_co_return_statement] = STATE(260), + [sym_co_yield_statement] = STATE(260), + [sym_throw_statement] = STATE(260), + [sym_try_statement] = STATE(260), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_attributed_declarator_repeat1] = STATE(205), + [sym_identifier] = ACTIONS(2233), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), [anon_sym_SEMI] = ACTIONS(287), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), [anon_sym_LBRACE] = ACTIONS(297), - [anon_sym_LBRACK] = ACTIONS(1450), - [sym_primitive_type] = ACTIONS(2028), + [anon_sym_LBRACK] = ACTIONS(1266), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_if] = ACTIONS(301), [anon_sym_switch] = ACTIONS(303), [anon_sym_case] = ACTIONS(305), @@ -70082,7 +70220,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_try] = ACTIONS(329), [anon_sym_delete] = ACTIONS(145), [anon_sym_throw] = ACTIONS(331), @@ -70098,90 +70236,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [181] = { - [sym_attribute_declaration] = STATE(218), - [sym_compound_statement] = STATE(529), - [sym_attributed_statement] = STATE(529), - [sym_statement] = STATE(461), - [sym_labeled_statement] = STATE(529), - [sym_expression_statement] = STATE(529), - [sym_if_statement] = STATE(529), - [sym_switch_statement] = STATE(529), - [sym_case_statement] = STATE(529), - [sym_while_statement] = STATE(529), - [sym_do_statement] = STATE(529), - [sym_for_statement] = STATE(529), - [sym_return_statement] = STATE(529), - [sym_break_statement] = STATE(529), - [sym_continue_statement] = STATE(529), - [sym_goto_statement] = STATE(529), - [sym_seh_try_statement] = STATE(529), - [sym_seh_leave_statement] = STATE(529), - [sym_expression] = STATE(4500), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8311), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_for_range_loop] = STATE(529), - [sym_co_return_statement] = STATE(529), - [sym_co_yield_statement] = STATE(529), - [sym_throw_statement] = STATE(529), - [sym_try_statement] = STATE(529), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_attributed_declarator_repeat1] = STATE(218), - [sym_identifier] = ACTIONS(2301), - [anon_sym_LPAREN2] = ACTIONS(1436), + [180] = { + [sym_attribute_declaration] = STATE(175), + [sym_compound_statement] = STATE(513), + [sym_attributed_statement] = STATE(513), + [sym_statement] = STATE(481), + [sym_labeled_statement] = STATE(513), + [sym_expression_statement] = STATE(513), + [sym_if_statement] = STATE(513), + [sym_switch_statement] = STATE(513), + [sym_case_statement] = STATE(513), + [sym_while_statement] = STATE(513), + [sym_do_statement] = STATE(513), + [sym_for_statement] = STATE(513), + [sym_return_statement] = STATE(513), + [sym_break_statement] = STATE(513), + [sym_continue_statement] = STATE(513), + [sym_goto_statement] = STATE(513), + [sym_seh_try_statement] = STATE(513), + [sym_seh_leave_statement] = STATE(513), + [sym_expression] = STATE(4531), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8444), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_for_range_loop] = STATE(513), + [sym_co_return_statement] = STATE(513), + [sym_co_yield_statement] = STATE(513), + [sym_throw_statement] = STATE(513), + [sym_try_statement] = STATE(513), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_attributed_declarator_repeat1] = STATE(175), + [sym_identifier] = ACTIONS(2297), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), [anon_sym_SEMI] = ACTIONS(884), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), [anon_sym_LBRACE] = ACTIONS(894), - [anon_sym_LBRACK] = ACTIONS(1450), - [sym_primitive_type] = ACTIONS(2028), + [anon_sym_LBRACK] = ACTIONS(1266), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_if] = ACTIONS(898), [anon_sym_switch] = ACTIONS(900), [anon_sym_case] = ACTIONS(902), @@ -70227,7 +70365,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_try] = ACTIONS(926), [anon_sym_delete] = ACTIONS(145), [anon_sym_throw] = ACTIONS(928), @@ -70243,90 +70381,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [182] = { - [sym_attribute_declaration] = STATE(218), - [sym_compound_statement] = STATE(529), - [sym_attributed_statement] = STATE(529), - [sym_statement] = STATE(633), - [sym_labeled_statement] = STATE(529), - [sym_expression_statement] = STATE(529), - [sym_if_statement] = STATE(529), - [sym_switch_statement] = STATE(529), - [sym_case_statement] = STATE(529), - [sym_while_statement] = STATE(529), - [sym_do_statement] = STATE(529), - [sym_for_statement] = STATE(529), - [sym_return_statement] = STATE(529), - [sym_break_statement] = STATE(529), - [sym_continue_statement] = STATE(529), - [sym_goto_statement] = STATE(529), - [sym_seh_try_statement] = STATE(529), - [sym_seh_leave_statement] = STATE(529), - [sym_expression] = STATE(4500), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8311), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_for_range_loop] = STATE(529), - [sym_co_return_statement] = STATE(529), - [sym_co_yield_statement] = STATE(529), - [sym_throw_statement] = STATE(529), - [sym_try_statement] = STATE(529), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_attributed_declarator_repeat1] = STATE(218), - [sym_identifier] = ACTIONS(2301), - [anon_sym_LPAREN2] = ACTIONS(1436), + [181] = { + [sym_attribute_declaration] = STATE(175), + [sym_compound_statement] = STATE(513), + [sym_attributed_statement] = STATE(513), + [sym_statement] = STATE(593), + [sym_labeled_statement] = STATE(513), + [sym_expression_statement] = STATE(513), + [sym_if_statement] = STATE(513), + [sym_switch_statement] = STATE(513), + [sym_case_statement] = STATE(513), + [sym_while_statement] = STATE(513), + [sym_do_statement] = STATE(513), + [sym_for_statement] = STATE(513), + [sym_return_statement] = STATE(513), + [sym_break_statement] = STATE(513), + [sym_continue_statement] = STATE(513), + [sym_goto_statement] = STATE(513), + [sym_seh_try_statement] = STATE(513), + [sym_seh_leave_statement] = STATE(513), + [sym_expression] = STATE(4531), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8444), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_for_range_loop] = STATE(513), + [sym_co_return_statement] = STATE(513), + [sym_co_yield_statement] = STATE(513), + [sym_throw_statement] = STATE(513), + [sym_try_statement] = STATE(513), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_attributed_declarator_repeat1] = STATE(175), + [sym_identifier] = ACTIONS(2297), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), [anon_sym_SEMI] = ACTIONS(884), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), [anon_sym_LBRACE] = ACTIONS(894), - [anon_sym_LBRACK] = ACTIONS(1450), - [sym_primitive_type] = ACTIONS(2028), + [anon_sym_LBRACK] = ACTIONS(1266), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_if] = ACTIONS(898), [anon_sym_switch] = ACTIONS(900), [anon_sym_case] = ACTIONS(902), @@ -70372,7 +70510,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_try] = ACTIONS(926), [anon_sym_delete] = ACTIONS(145), [anon_sym_throw] = ACTIONS(928), @@ -70388,90 +70526,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [183] = { - [sym_attribute_declaration] = STATE(218), - [sym_compound_statement] = STATE(529), - [sym_attributed_statement] = STATE(529), - [sym_statement] = STATE(639), - [sym_labeled_statement] = STATE(529), - [sym_expression_statement] = STATE(529), - [sym_if_statement] = STATE(529), - [sym_switch_statement] = STATE(529), - [sym_case_statement] = STATE(529), - [sym_while_statement] = STATE(529), - [sym_do_statement] = STATE(529), - [sym_for_statement] = STATE(529), - [sym_return_statement] = STATE(529), - [sym_break_statement] = STATE(529), - [sym_continue_statement] = STATE(529), - [sym_goto_statement] = STATE(529), - [sym_seh_try_statement] = STATE(529), - [sym_seh_leave_statement] = STATE(529), - [sym_expression] = STATE(4500), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8311), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_for_range_loop] = STATE(529), - [sym_co_return_statement] = STATE(529), - [sym_co_yield_statement] = STATE(529), - [sym_throw_statement] = STATE(529), - [sym_try_statement] = STATE(529), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_attributed_declarator_repeat1] = STATE(218), - [sym_identifier] = ACTIONS(2301), - [anon_sym_LPAREN2] = ACTIONS(1436), + [182] = { + [sym_attribute_declaration] = STATE(175), + [sym_compound_statement] = STATE(513), + [sym_attributed_statement] = STATE(513), + [sym_statement] = STATE(597), + [sym_labeled_statement] = STATE(513), + [sym_expression_statement] = STATE(513), + [sym_if_statement] = STATE(513), + [sym_switch_statement] = STATE(513), + [sym_case_statement] = STATE(513), + [sym_while_statement] = STATE(513), + [sym_do_statement] = STATE(513), + [sym_for_statement] = STATE(513), + [sym_return_statement] = STATE(513), + [sym_break_statement] = STATE(513), + [sym_continue_statement] = STATE(513), + [sym_goto_statement] = STATE(513), + [sym_seh_try_statement] = STATE(513), + [sym_seh_leave_statement] = STATE(513), + [sym_expression] = STATE(4531), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8444), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_for_range_loop] = STATE(513), + [sym_co_return_statement] = STATE(513), + [sym_co_yield_statement] = STATE(513), + [sym_throw_statement] = STATE(513), + [sym_try_statement] = STATE(513), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_attributed_declarator_repeat1] = STATE(175), + [sym_identifier] = ACTIONS(2297), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), [anon_sym_SEMI] = ACTIONS(884), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), [anon_sym_LBRACE] = ACTIONS(894), - [anon_sym_LBRACK] = ACTIONS(1450), - [sym_primitive_type] = ACTIONS(2028), + [anon_sym_LBRACK] = ACTIONS(1266), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_if] = ACTIONS(898), [anon_sym_switch] = ACTIONS(900), [anon_sym_case] = ACTIONS(902), @@ -70517,7 +70655,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_try] = ACTIONS(926), [anon_sym_delete] = ACTIONS(145), [anon_sym_throw] = ACTIONS(928), @@ -70533,90 +70671,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [184] = { - [sym_attribute_declaration] = STATE(218), - [sym_compound_statement] = STATE(529), - [sym_attributed_statement] = STATE(529), - [sym_statement] = STATE(640), - [sym_labeled_statement] = STATE(529), - [sym_expression_statement] = STATE(529), - [sym_if_statement] = STATE(529), - [sym_switch_statement] = STATE(529), - [sym_case_statement] = STATE(529), - [sym_while_statement] = STATE(529), - [sym_do_statement] = STATE(529), - [sym_for_statement] = STATE(529), - [sym_return_statement] = STATE(529), - [sym_break_statement] = STATE(529), - [sym_continue_statement] = STATE(529), - [sym_goto_statement] = STATE(529), - [sym_seh_try_statement] = STATE(529), - [sym_seh_leave_statement] = STATE(529), - [sym_expression] = STATE(4500), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8311), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_for_range_loop] = STATE(529), - [sym_co_return_statement] = STATE(529), - [sym_co_yield_statement] = STATE(529), - [sym_throw_statement] = STATE(529), - [sym_try_statement] = STATE(529), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_attributed_declarator_repeat1] = STATE(218), - [sym_identifier] = ACTIONS(2301), - [anon_sym_LPAREN2] = ACTIONS(1436), + [183] = { + [sym_attribute_declaration] = STATE(175), + [sym_compound_statement] = STATE(513), + [sym_attributed_statement] = STATE(513), + [sym_statement] = STATE(601), + [sym_labeled_statement] = STATE(513), + [sym_expression_statement] = STATE(513), + [sym_if_statement] = STATE(513), + [sym_switch_statement] = STATE(513), + [sym_case_statement] = STATE(513), + [sym_while_statement] = STATE(513), + [sym_do_statement] = STATE(513), + [sym_for_statement] = STATE(513), + [sym_return_statement] = STATE(513), + [sym_break_statement] = STATE(513), + [sym_continue_statement] = STATE(513), + [sym_goto_statement] = STATE(513), + [sym_seh_try_statement] = STATE(513), + [sym_seh_leave_statement] = STATE(513), + [sym_expression] = STATE(4531), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8444), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_for_range_loop] = STATE(513), + [sym_co_return_statement] = STATE(513), + [sym_co_yield_statement] = STATE(513), + [sym_throw_statement] = STATE(513), + [sym_try_statement] = STATE(513), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_attributed_declarator_repeat1] = STATE(175), + [sym_identifier] = ACTIONS(2297), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), [anon_sym_SEMI] = ACTIONS(884), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), [anon_sym_LBRACE] = ACTIONS(894), - [anon_sym_LBRACK] = ACTIONS(1450), - [sym_primitive_type] = ACTIONS(2028), + [anon_sym_LBRACK] = ACTIONS(1266), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_if] = ACTIONS(898), [anon_sym_switch] = ACTIONS(900), [anon_sym_case] = ACTIONS(902), @@ -70662,7 +70800,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_try] = ACTIONS(926), [anon_sym_delete] = ACTIONS(145), [anon_sym_throw] = ACTIONS(928), @@ -70678,103 +70816,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [185] = { - [sym_attribute_declaration] = STATE(216), - [sym_compound_statement] = STATE(545), - [sym_attributed_statement] = STATE(545), - [sym_statement] = STATE(8567), - [sym_labeled_statement] = STATE(545), - [sym_expression_statement] = STATE(545), - [sym_if_statement] = STATE(545), - [sym_switch_statement] = STATE(545), - [sym_case_statement] = STATE(545), - [sym_while_statement] = STATE(545), - [sym_do_statement] = STATE(545), - [sym_for_statement] = STATE(545), - [sym_return_statement] = STATE(545), - [sym_break_statement] = STATE(545), - [sym_continue_statement] = STATE(545), - [sym_goto_statement] = STATE(545), - [sym_seh_try_statement] = STATE(545), - [sym_seh_leave_statement] = STATE(545), - [sym_expression] = STATE(4457), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8711), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_for_range_loop] = STATE(545), - [sym_co_return_statement] = STATE(545), - [sym_co_yield_statement] = STATE(545), - [sym_throw_statement] = STATE(545), - [sym_try_statement] = STATE(545), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_attributed_declarator_repeat1] = STATE(216), - [sym_identifier] = ACTIONS(2389), - [anon_sym_LPAREN2] = ACTIONS(1436), + [184] = { + [sym_attribute_declaration] = STATE(198), + [sym_compound_statement] = STATE(409), + [sym_attributed_statement] = STATE(409), + [sym_statement] = STATE(386), + [sym_labeled_statement] = STATE(409), + [sym_expression_statement] = STATE(409), + [sym_if_statement] = STATE(409), + [sym_switch_statement] = STATE(409), + [sym_case_statement] = STATE(409), + [sym_while_statement] = STATE(409), + [sym_do_statement] = STATE(409), + [sym_for_statement] = STATE(409), + [sym_return_statement] = STATE(409), + [sym_break_statement] = STATE(409), + [sym_continue_statement] = STATE(409), + [sym_goto_statement] = STATE(409), + [sym_seh_try_statement] = STATE(409), + [sym_seh_leave_statement] = STATE(409), + [sym_expression] = STATE(4499), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8264), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_for_range_loop] = STATE(409), + [sym_co_return_statement] = STATE(409), + [sym_co_yield_statement] = STATE(409), + [sym_throw_statement] = STATE(409), + [sym_try_statement] = STATE(409), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_attributed_declarator_repeat1] = STATE(198), + [sym_identifier] = ACTIONS(2165), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(1212), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1450), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_if] = ACTIONS(1766), + [anon_sym_LBRACK] = ACTIONS(1266), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_if] = ACTIONS(81), [anon_sym_switch] = ACTIONS(83), - [anon_sym_case] = ACTIONS(1760), - [anon_sym_default] = ACTIONS(1762), - [anon_sym_while] = ACTIONS(1768), + [anon_sym_case] = ACTIONS(85), + [anon_sym_default] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), [anon_sym_do] = ACTIONS(91), - [anon_sym_for] = ACTIONS(1770), + [anon_sym_for] = ACTIONS(93), [anon_sym_return] = ACTIONS(95), [anon_sym_break] = ACTIONS(97), [anon_sym_continue] = ACTIONS(99), [anon_sym_goto] = ACTIONS(101), - [anon_sym___try] = ACTIONS(1772), - [anon_sym___leave] = ACTIONS(223), + [anon_sym___try] = ACTIONS(1216), + [anon_sym___leave] = ACTIONS(1218), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -70807,7 +70945,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_try] = ACTIONS(143), [anon_sym_delete] = ACTIONS(145), [anon_sym_throw] = ACTIONS(147), @@ -70823,103 +70961,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [186] = { - [sym_attribute_declaration] = STATE(187), - [sym_compound_statement] = STATE(401), - [sym_attributed_statement] = STATE(401), - [sym_statement] = STATE(251), - [sym_labeled_statement] = STATE(401), - [sym_expression_statement] = STATE(401), - [sym_if_statement] = STATE(401), - [sym_switch_statement] = STATE(401), - [sym_case_statement] = STATE(401), - [sym_while_statement] = STATE(401), - [sym_do_statement] = STATE(401), - [sym_for_statement] = STATE(401), - [sym_return_statement] = STATE(401), - [sym_break_statement] = STATE(401), - [sym_continue_statement] = STATE(401), - [sym_goto_statement] = STATE(401), - [sym_seh_try_statement] = STATE(401), - [sym_seh_leave_statement] = STATE(401), - [sym_expression] = STATE(4552), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8450), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_for_range_loop] = STATE(401), - [sym_co_return_statement] = STATE(401), - [sym_co_yield_statement] = STATE(401), - [sym_throw_statement] = STATE(401), - [sym_try_statement] = STATE(401), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_attributed_declarator_repeat1] = STATE(187), - [sym_identifier] = ACTIONS(2173), - [anon_sym_LPAREN2] = ACTIONS(1436), + [185] = { + [sym_attribute_declaration] = STATE(205), + [sym_compound_statement] = STATE(260), + [sym_attributed_statement] = STATE(260), + [sym_statement] = STATE(286), + [sym_labeled_statement] = STATE(260), + [sym_expression_statement] = STATE(260), + [sym_if_statement] = STATE(260), + [sym_switch_statement] = STATE(260), + [sym_case_statement] = STATE(260), + [sym_while_statement] = STATE(260), + [sym_do_statement] = STATE(260), + [sym_for_statement] = STATE(260), + [sym_return_statement] = STATE(260), + [sym_break_statement] = STATE(260), + [sym_continue_statement] = STATE(260), + [sym_goto_statement] = STATE(260), + [sym_seh_try_statement] = STATE(260), + [sym_seh_leave_statement] = STATE(260), + [sym_expression] = STATE(4517), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8280), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_for_range_loop] = STATE(260), + [sym_co_return_statement] = STATE(260), + [sym_co_yield_statement] = STATE(260), + [sym_throw_statement] = STATE(260), + [sym_try_statement] = STATE(260), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_attributed_declarator_repeat1] = STATE(205), + [sym_identifier] = ACTIONS(2233), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(1194), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(287), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1450), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_if] = ACTIONS(81), - [anon_sym_switch] = ACTIONS(83), - [anon_sym_case] = ACTIONS(85), - [anon_sym_default] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_do] = ACTIONS(91), - [anon_sym_for] = ACTIONS(93), - [anon_sym_return] = ACTIONS(95), - [anon_sym_break] = ACTIONS(97), - [anon_sym_continue] = ACTIONS(99), - [anon_sym_goto] = ACTIONS(101), - [anon_sym___try] = ACTIONS(1198), - [anon_sym___leave] = ACTIONS(1200), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(297), + [anon_sym_LBRACK] = ACTIONS(1266), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_if] = ACTIONS(301), + [anon_sym_switch] = ACTIONS(303), + [anon_sym_case] = ACTIONS(305), + [anon_sym_default] = ACTIONS(307), + [anon_sym_while] = ACTIONS(309), + [anon_sym_do] = ACTIONS(311), + [anon_sym_for] = ACTIONS(313), + [anon_sym_return] = ACTIONS(315), + [anon_sym_break] = ACTIONS(317), + [anon_sym_continue] = ACTIONS(319), + [anon_sym_goto] = ACTIONS(321), + [anon_sym___try] = ACTIONS(323), + [anon_sym___leave] = ACTIONS(325), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -70952,12 +71090,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_try] = ACTIONS(143), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_try] = ACTIONS(329), [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(147), - [anon_sym_co_return] = ACTIONS(155), - [anon_sym_co_yield] = ACTIONS(157), + [anon_sym_throw] = ACTIONS(331), + [anon_sym_co_return] = ACTIONS(339), + [anon_sym_co_yield] = ACTIONS(341), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), @@ -70968,103 +71106,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [187] = { - [sym_attribute_declaration] = STATE(164), - [sym_compound_statement] = STATE(401), - [sym_attributed_statement] = STATE(401), - [sym_statement] = STATE(343), - [sym_labeled_statement] = STATE(401), - [sym_expression_statement] = STATE(401), - [sym_if_statement] = STATE(401), - [sym_switch_statement] = STATE(401), - [sym_case_statement] = STATE(401), - [sym_while_statement] = STATE(401), - [sym_do_statement] = STATE(401), - [sym_for_statement] = STATE(401), - [sym_return_statement] = STATE(401), - [sym_break_statement] = STATE(401), - [sym_continue_statement] = STATE(401), - [sym_goto_statement] = STATE(401), - [sym_seh_try_statement] = STATE(401), - [sym_seh_leave_statement] = STATE(401), - [sym_expression] = STATE(4552), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8450), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_for_range_loop] = STATE(401), - [sym_co_return_statement] = STATE(401), - [sym_co_yield_statement] = STATE(401), - [sym_throw_statement] = STATE(401), - [sym_try_statement] = STATE(401), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_attributed_declarator_repeat1] = STATE(164), - [sym_identifier] = ACTIONS(2173), - [anon_sym_LPAREN2] = ACTIONS(1436), + [186] = { + [sym_attribute_declaration] = STATE(140), + [sym_compound_statement] = STATE(560), + [sym_attributed_statement] = STATE(560), + [sym_statement] = STATE(568), + [sym_labeled_statement] = STATE(560), + [sym_expression_statement] = STATE(560), + [sym_if_statement] = STATE(560), + [sym_switch_statement] = STATE(560), + [sym_case_statement] = STATE(560), + [sym_while_statement] = STATE(560), + [sym_do_statement] = STATE(560), + [sym_for_statement] = STATE(560), + [sym_return_statement] = STATE(560), + [sym_break_statement] = STATE(560), + [sym_continue_statement] = STATE(560), + [sym_goto_statement] = STATE(560), + [sym_seh_try_statement] = STATE(560), + [sym_seh_leave_statement] = STATE(560), + [sym_expression] = STATE(4554), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8083), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_for_range_loop] = STATE(560), + [sym_co_return_statement] = STATE(560), + [sym_co_yield_statement] = STATE(560), + [sym_throw_statement] = STATE(560), + [sym_try_statement] = STATE(560), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_attributed_declarator_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(2325), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(1194), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(181), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1450), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_if] = ACTIONS(81), - [anon_sym_switch] = ACTIONS(83), - [anon_sym_case] = ACTIONS(85), - [anon_sym_default] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_do] = ACTIONS(91), - [anon_sym_for] = ACTIONS(93), - [anon_sym_return] = ACTIONS(95), - [anon_sym_break] = ACTIONS(97), - [anon_sym_continue] = ACTIONS(99), - [anon_sym_goto] = ACTIONS(101), - [anon_sym___try] = ACTIONS(1198), - [anon_sym___leave] = ACTIONS(1200), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(866), + [anon_sym_LBRACK] = ACTIONS(1266), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_if] = ACTIONS(199), + [anon_sym_switch] = ACTIONS(201), + [anon_sym_case] = ACTIONS(203), + [anon_sym_default] = ACTIONS(205), + [anon_sym_while] = ACTIONS(207), + [anon_sym_do] = ACTIONS(209), + [anon_sym_for] = ACTIONS(211), + [anon_sym_return] = ACTIONS(213), + [anon_sym_break] = ACTIONS(215), + [anon_sym_continue] = ACTIONS(217), + [anon_sym_goto] = ACTIONS(219), + [anon_sym___try] = ACTIONS(221), + [anon_sym___leave] = ACTIONS(223), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -71097,12 +71235,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_try] = ACTIONS(143), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_try] = ACTIONS(233), [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(147), - [anon_sym_co_return] = ACTIONS(155), - [anon_sym_co_yield] = ACTIONS(157), + [anon_sym_throw] = ACTIONS(235), + [anon_sym_co_return] = ACTIONS(243), + [anon_sym_co_yield] = ACTIONS(245), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), @@ -71113,94 +71251,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [188] = { - [sym_attribute_declaration] = STATE(179), - [sym_compound_statement] = STATE(904), - [sym_attributed_statement] = STATE(904), - [sym_statement] = STATE(884), - [sym_labeled_statement] = STATE(904), - [sym_expression_statement] = STATE(904), - [sym_if_statement] = STATE(904), - [sym_switch_statement] = STATE(904), - [sym_case_statement] = STATE(904), - [sym_while_statement] = STATE(904), - [sym_do_statement] = STATE(904), - [sym_for_statement] = STATE(904), - [sym_return_statement] = STATE(904), - [sym_break_statement] = STATE(904), - [sym_continue_statement] = STATE(904), - [sym_goto_statement] = STATE(904), - [sym_seh_try_statement] = STATE(904), - [sym_seh_leave_statement] = STATE(904), - [sym_expression] = STATE(4571), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8696), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_for_range_loop] = STATE(904), - [sym_co_return_statement] = STATE(904), - [sym_co_yield_statement] = STATE(904), - [sym_throw_statement] = STATE(904), - [sym_try_statement] = STATE(904), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_attributed_declarator_repeat1] = STATE(179), - [sym_identifier] = ACTIONS(2391), - [anon_sym_LPAREN2] = ACTIONS(1436), + [187] = { + [sym_attribute_declaration] = STATE(176), + [sym_compound_statement] = STATE(931), + [sym_attributed_statement] = STATE(931), + [sym_statement] = STATE(902), + [sym_labeled_statement] = STATE(931), + [sym_expression_statement] = STATE(931), + [sym_if_statement] = STATE(931), + [sym_switch_statement] = STATE(931), + [sym_case_statement] = STATE(931), + [sym_while_statement] = STATE(931), + [sym_do_statement] = STATE(931), + [sym_for_statement] = STATE(931), + [sym_return_statement] = STATE(931), + [sym_break_statement] = STATE(931), + [sym_continue_statement] = STATE(931), + [sym_goto_statement] = STATE(931), + [sym_seh_try_statement] = STATE(931), + [sym_seh_leave_statement] = STATE(931), + [sym_expression] = STATE(4602), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8311), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_for_range_loop] = STATE(931), + [sym_co_return_statement] = STATE(931), + [sym_co_yield_statement] = STATE(931), + [sym_throw_statement] = STATE(931), + [sym_try_statement] = STATE(931), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_attributed_declarator_repeat1] = STATE(176), + [sym_identifier] = ACTIONS(2389), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), [anon_sym_SEMI] = ACTIONS(1662), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), [anon_sym_LBRACE] = ACTIONS(1668), - [anon_sym_LBRACK] = ACTIONS(1450), - [sym_primitive_type] = ACTIONS(2028), + [anon_sym_LBRACK] = ACTIONS(1266), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_if] = ACTIONS(1670), [anon_sym_switch] = ACTIONS(1672), - [anon_sym_case] = ACTIONS(1760), - [anon_sym_default] = ACTIONS(1762), + [anon_sym_case] = ACTIONS(1704), + [anon_sym_default] = ACTIONS(1706), [anon_sym_while] = ACTIONS(1674), [anon_sym_do] = ACTIONS(1676), [anon_sym_for] = ACTIONS(1678), @@ -71242,7 +71380,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_try] = ACTIONS(1692), [anon_sym_delete] = ACTIONS(145), [anon_sym_throw] = ACTIONS(1694), @@ -71258,94 +71396,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [189] = { - [sym_attribute_declaration] = STATE(179), - [sym_compound_statement] = STATE(904), - [sym_attributed_statement] = STATE(904), - [sym_statement] = STATE(894), - [sym_labeled_statement] = STATE(904), - [sym_expression_statement] = STATE(904), - [sym_if_statement] = STATE(904), - [sym_switch_statement] = STATE(904), - [sym_case_statement] = STATE(904), - [sym_while_statement] = STATE(904), - [sym_do_statement] = STATE(904), - [sym_for_statement] = STATE(904), - [sym_return_statement] = STATE(904), - [sym_break_statement] = STATE(904), - [sym_continue_statement] = STATE(904), - [sym_goto_statement] = STATE(904), - [sym_seh_try_statement] = STATE(904), - [sym_seh_leave_statement] = STATE(904), - [sym_expression] = STATE(4571), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8696), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_for_range_loop] = STATE(904), - [sym_co_return_statement] = STATE(904), - [sym_co_yield_statement] = STATE(904), - [sym_throw_statement] = STATE(904), - [sym_try_statement] = STATE(904), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_attributed_declarator_repeat1] = STATE(179), - [sym_identifier] = ACTIONS(2391), - [anon_sym_LPAREN2] = ACTIONS(1436), + [188] = { + [sym_attribute_declaration] = STATE(176), + [sym_compound_statement] = STATE(931), + [sym_attributed_statement] = STATE(931), + [sym_statement] = STATE(915), + [sym_labeled_statement] = STATE(931), + [sym_expression_statement] = STATE(931), + [sym_if_statement] = STATE(931), + [sym_switch_statement] = STATE(931), + [sym_case_statement] = STATE(931), + [sym_while_statement] = STATE(931), + [sym_do_statement] = STATE(931), + [sym_for_statement] = STATE(931), + [sym_return_statement] = STATE(931), + [sym_break_statement] = STATE(931), + [sym_continue_statement] = STATE(931), + [sym_goto_statement] = STATE(931), + [sym_seh_try_statement] = STATE(931), + [sym_seh_leave_statement] = STATE(931), + [sym_expression] = STATE(4602), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8311), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_for_range_loop] = STATE(931), + [sym_co_return_statement] = STATE(931), + [sym_co_yield_statement] = STATE(931), + [sym_throw_statement] = STATE(931), + [sym_try_statement] = STATE(931), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_attributed_declarator_repeat1] = STATE(176), + [sym_identifier] = ACTIONS(2389), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), [anon_sym_SEMI] = ACTIONS(1662), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), [anon_sym_LBRACE] = ACTIONS(1668), - [anon_sym_LBRACK] = ACTIONS(1450), - [sym_primitive_type] = ACTIONS(2028), + [anon_sym_LBRACK] = ACTIONS(1266), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_if] = ACTIONS(1670), [anon_sym_switch] = ACTIONS(1672), - [anon_sym_case] = ACTIONS(1760), - [anon_sym_default] = ACTIONS(1762), + [anon_sym_case] = ACTIONS(1704), + [anon_sym_default] = ACTIONS(1706), [anon_sym_while] = ACTIONS(1674), [anon_sym_do] = ACTIONS(1676), [anon_sym_for] = ACTIONS(1678), @@ -71387,7 +71525,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_try] = ACTIONS(1692), [anon_sym_delete] = ACTIONS(145), [anon_sym_throw] = ACTIONS(1694), @@ -71403,102 +71541,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [190] = { - [sym_attribute_declaration] = STATE(219), - [sym_compound_statement] = STATE(545), - [sym_attributed_statement] = STATE(545), - [sym_statement] = STATE(615), - [sym_labeled_statement] = STATE(545), - [sym_expression_statement] = STATE(545), - [sym_if_statement] = STATE(545), - [sym_switch_statement] = STATE(545), - [sym_case_statement] = STATE(545), - [sym_while_statement] = STATE(545), - [sym_do_statement] = STATE(545), - [sym_for_statement] = STATE(545), - [sym_return_statement] = STATE(545), - [sym_break_statement] = STATE(545), - [sym_continue_statement] = STATE(545), - [sym_goto_statement] = STATE(545), - [sym_seh_try_statement] = STATE(545), - [sym_seh_leave_statement] = STATE(545), - [sym_expression] = STATE(4457), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8711), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_for_range_loop] = STATE(545), - [sym_co_return_statement] = STATE(545), - [sym_co_yield_statement] = STATE(545), - [sym_throw_statement] = STATE(545), - [sym_try_statement] = STATE(545), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_attributed_declarator_repeat1] = STATE(219), - [sym_identifier] = ACTIONS(2022), - [anon_sym_LPAREN2] = ACTIONS(1436), + [189] = { + [sym_attribute_declaration] = STATE(216), + [sym_compound_statement] = STATE(560), + [sym_attributed_statement] = STATE(560), + [sym_statement] = STATE(348), + [sym_labeled_statement] = STATE(560), + [sym_expression_statement] = STATE(560), + [sym_if_statement] = STATE(560), + [sym_switch_statement] = STATE(560), + [sym_case_statement] = STATE(560), + [sym_while_statement] = STATE(560), + [sym_do_statement] = STATE(560), + [sym_for_statement] = STATE(560), + [sym_return_statement] = STATE(560), + [sym_break_statement] = STATE(560), + [sym_continue_statement] = STATE(560), + [sym_goto_statement] = STATE(560), + [sym_seh_try_statement] = STATE(560), + [sym_seh_leave_statement] = STATE(560), + [sym_expression] = STATE(4554), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8083), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_for_range_loop] = STATE(560), + [sym_co_return_statement] = STATE(560), + [sym_co_yield_statement] = STATE(560), + [sym_throw_statement] = STATE(560), + [sym_try_statement] = STATE(560), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_attributed_declarator_repeat1] = STATE(216), + [sym_identifier] = ACTIONS(2391), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), - [anon_sym_LBRACE] = ACTIONS(866), - [anon_sym_LBRACK] = ACTIONS(1450), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_if] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), - [anon_sym_case] = ACTIONS(203), - [anon_sym_default] = ACTIONS(205), - [anon_sym_while] = ACTIONS(207), - [anon_sym_do] = ACTIONS(209), - [anon_sym_for] = ACTIONS(211), - [anon_sym_return] = ACTIONS(213), - [anon_sym_break] = ACTIONS(215), - [anon_sym_continue] = ACTIONS(217), - [anon_sym_goto] = ACTIONS(219), - [anon_sym___try] = ACTIONS(221), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(1266), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_switch] = ACTIONS(83), + [anon_sym_case] = ACTIONS(1704), + [anon_sym_default] = ACTIONS(1706), + [anon_sym_while] = ACTIONS(1708), + [anon_sym_do] = ACTIONS(91), + [anon_sym_for] = ACTIONS(1710), + [anon_sym_return] = ACTIONS(95), + [anon_sym_break] = ACTIONS(97), + [anon_sym_continue] = ACTIONS(99), + [anon_sym_goto] = ACTIONS(101), + [anon_sym___try] = ACTIONS(1712), [anon_sym___leave] = ACTIONS(223), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), @@ -71532,12 +71670,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_try] = ACTIONS(233), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_try] = ACTIONS(143), [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(235), - [anon_sym_co_return] = ACTIONS(243), - [anon_sym_co_yield] = ACTIONS(245), + [anon_sym_throw] = ACTIONS(147), + [anon_sym_co_return] = ACTIONS(155), + [anon_sym_co_yield] = ACTIONS(157), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), @@ -71548,90 +71686,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [191] = { - [sym_attribute_declaration] = STATE(187), - [sym_compound_statement] = STATE(401), - [sym_attributed_statement] = STATE(401), - [sym_statement] = STATE(383), - [sym_labeled_statement] = STATE(401), - [sym_expression_statement] = STATE(401), - [sym_if_statement] = STATE(401), - [sym_switch_statement] = STATE(401), - [sym_case_statement] = STATE(401), - [sym_while_statement] = STATE(401), - [sym_do_statement] = STATE(401), - [sym_for_statement] = STATE(401), - [sym_return_statement] = STATE(401), - [sym_break_statement] = STATE(401), - [sym_continue_statement] = STATE(401), - [sym_goto_statement] = STATE(401), - [sym_seh_try_statement] = STATE(401), - [sym_seh_leave_statement] = STATE(401), - [sym_expression] = STATE(4552), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8450), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_for_range_loop] = STATE(401), - [sym_co_return_statement] = STATE(401), - [sym_co_yield_statement] = STATE(401), - [sym_throw_statement] = STATE(401), - [sym_try_statement] = STATE(401), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_attributed_declarator_repeat1] = STATE(187), - [sym_identifier] = ACTIONS(2173), - [anon_sym_LPAREN2] = ACTIONS(1436), + [190] = { + [sym_attribute_declaration] = STATE(198), + [sym_compound_statement] = STATE(409), + [sym_attributed_statement] = STATE(409), + [sym_statement] = STATE(264), + [sym_labeled_statement] = STATE(409), + [sym_expression_statement] = STATE(409), + [sym_if_statement] = STATE(409), + [sym_switch_statement] = STATE(409), + [sym_case_statement] = STATE(409), + [sym_while_statement] = STATE(409), + [sym_do_statement] = STATE(409), + [sym_for_statement] = STATE(409), + [sym_return_statement] = STATE(409), + [sym_break_statement] = STATE(409), + [sym_continue_statement] = STATE(409), + [sym_goto_statement] = STATE(409), + [sym_seh_try_statement] = STATE(409), + [sym_seh_leave_statement] = STATE(409), + [sym_expression] = STATE(4499), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8264), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_for_range_loop] = STATE(409), + [sym_co_return_statement] = STATE(409), + [sym_co_yield_statement] = STATE(409), + [sym_throw_statement] = STATE(409), + [sym_try_statement] = STATE(409), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_attributed_declarator_repeat1] = STATE(198), + [sym_identifier] = ACTIONS(2165), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(1194), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(1212), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1450), - [sym_primitive_type] = ACTIONS(2028), + [anon_sym_LBRACK] = ACTIONS(1266), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_if] = ACTIONS(81), [anon_sym_switch] = ACTIONS(83), [anon_sym_case] = ACTIONS(85), @@ -71643,8 +71781,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(97), [anon_sym_continue] = ACTIONS(99), [anon_sym_goto] = ACTIONS(101), - [anon_sym___try] = ACTIONS(1198), - [anon_sym___leave] = ACTIONS(1200), + [anon_sym___try] = ACTIONS(1216), + [anon_sym___leave] = ACTIONS(1218), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -71677,7 +71815,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_try] = ACTIONS(143), [anon_sym_delete] = ACTIONS(145), [anon_sym_throw] = ACTIONS(147), @@ -71693,90 +71831,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [192] = { - [sym_attribute_declaration] = STATE(187), - [sym_compound_statement] = STATE(401), - [sym_attributed_statement] = STATE(401), - [sym_statement] = STATE(384), - [sym_labeled_statement] = STATE(401), - [sym_expression_statement] = STATE(401), - [sym_if_statement] = STATE(401), - [sym_switch_statement] = STATE(401), - [sym_case_statement] = STATE(401), - [sym_while_statement] = STATE(401), - [sym_do_statement] = STATE(401), - [sym_for_statement] = STATE(401), - [sym_return_statement] = STATE(401), - [sym_break_statement] = STATE(401), - [sym_continue_statement] = STATE(401), - [sym_goto_statement] = STATE(401), - [sym_seh_try_statement] = STATE(401), - [sym_seh_leave_statement] = STATE(401), - [sym_expression] = STATE(4552), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8450), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_for_range_loop] = STATE(401), - [sym_co_return_statement] = STATE(401), - [sym_co_yield_statement] = STATE(401), - [sym_throw_statement] = STATE(401), - [sym_try_statement] = STATE(401), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_attributed_declarator_repeat1] = STATE(187), - [sym_identifier] = ACTIONS(2173), - [anon_sym_LPAREN2] = ACTIONS(1436), + [191] = { + [sym_attribute_declaration] = STATE(198), + [sym_compound_statement] = STATE(409), + [sym_attributed_statement] = STATE(409), + [sym_statement] = STATE(277), + [sym_labeled_statement] = STATE(409), + [sym_expression_statement] = STATE(409), + [sym_if_statement] = STATE(409), + [sym_switch_statement] = STATE(409), + [sym_case_statement] = STATE(409), + [sym_while_statement] = STATE(409), + [sym_do_statement] = STATE(409), + [sym_for_statement] = STATE(409), + [sym_return_statement] = STATE(409), + [sym_break_statement] = STATE(409), + [sym_continue_statement] = STATE(409), + [sym_goto_statement] = STATE(409), + [sym_seh_try_statement] = STATE(409), + [sym_seh_leave_statement] = STATE(409), + [sym_expression] = STATE(4499), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8264), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_for_range_loop] = STATE(409), + [sym_co_return_statement] = STATE(409), + [sym_co_yield_statement] = STATE(409), + [sym_throw_statement] = STATE(409), + [sym_try_statement] = STATE(409), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_attributed_declarator_repeat1] = STATE(198), + [sym_identifier] = ACTIONS(2165), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(1194), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(1212), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1450), - [sym_primitive_type] = ACTIONS(2028), + [anon_sym_LBRACK] = ACTIONS(1266), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_if] = ACTIONS(81), [anon_sym_switch] = ACTIONS(83), [anon_sym_case] = ACTIONS(85), @@ -71788,8 +71926,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(97), [anon_sym_continue] = ACTIONS(99), [anon_sym_goto] = ACTIONS(101), - [anon_sym___try] = ACTIONS(1198), - [anon_sym___leave] = ACTIONS(1200), + [anon_sym___try] = ACTIONS(1216), + [anon_sym___leave] = ACTIONS(1218), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -71822,7 +71960,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_try] = ACTIONS(143), [anon_sym_delete] = ACTIONS(145), [anon_sym_throw] = ACTIONS(147), @@ -71838,90 +71976,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [193] = { - [sym_attribute_declaration] = STATE(193), - [sym_compound_statement] = STATE(904), - [sym_attributed_statement] = STATE(904), - [sym_statement] = STATE(907), - [sym_labeled_statement] = STATE(904), - [sym_expression_statement] = STATE(904), - [sym_if_statement] = STATE(904), - [sym_switch_statement] = STATE(904), - [sym_case_statement] = STATE(904), - [sym_while_statement] = STATE(904), - [sym_do_statement] = STATE(904), - [sym_for_statement] = STATE(904), - [sym_return_statement] = STATE(904), - [sym_break_statement] = STATE(904), - [sym_continue_statement] = STATE(904), - [sym_goto_statement] = STATE(904), - [sym_seh_try_statement] = STATE(904), - [sym_seh_leave_statement] = STATE(904), - [sym_expression] = STATE(4571), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8696), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_for_range_loop] = STATE(904), - [sym_co_return_statement] = STATE(904), - [sym_co_yield_statement] = STATE(904), - [sym_throw_statement] = STATE(904), - [sym_try_statement] = STATE(904), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_attributed_declarator_repeat1] = STATE(193), + [192] = { + [sym_attribute_declaration] = STATE(192), + [sym_compound_statement] = STATE(931), + [sym_attributed_statement] = STATE(931), + [sym_statement] = STATE(948), + [sym_labeled_statement] = STATE(931), + [sym_expression_statement] = STATE(931), + [sym_if_statement] = STATE(931), + [sym_switch_statement] = STATE(931), + [sym_case_statement] = STATE(931), + [sym_while_statement] = STATE(931), + [sym_do_statement] = STATE(931), + [sym_for_statement] = STATE(931), + [sym_return_statement] = STATE(931), + [sym_break_statement] = STATE(931), + [sym_continue_statement] = STATE(931), + [sym_goto_statement] = STATE(931), + [sym_seh_try_statement] = STATE(931), + [sym_seh_leave_statement] = STATE(931), + [sym_expression] = STATE(4602), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8311), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_for_range_loop] = STATE(931), + [sym_co_return_statement] = STATE(931), + [sym_co_yield_statement] = STATE(931), + [sym_throw_statement] = STATE(931), + [sym_try_statement] = STATE(931), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_attributed_declarator_repeat1] = STATE(192), [sym_identifier] = ACTIONS(2393), - [anon_sym_LPAREN2] = ACTIONS(2033), - [anon_sym_BANG] = ACTIONS(2036), - [anon_sym_TILDE] = ACTIONS(2036), - [anon_sym_DASH] = ACTIONS(2039), - [anon_sym_PLUS] = ACTIONS(2039), - [anon_sym_STAR] = ACTIONS(2042), - [anon_sym_AMP] = ACTIONS(2042), + [anon_sym_LPAREN2] = ACTIONS(2025), + [anon_sym_BANG] = ACTIONS(2028), + [anon_sym_TILDE] = ACTIONS(2028), + [anon_sym_DASH] = ACTIONS(2031), + [anon_sym_PLUS] = ACTIONS(2031), + [anon_sym_STAR] = ACTIONS(2034), + [anon_sym_AMP] = ACTIONS(2034), [anon_sym_SEMI] = ACTIONS(2396), - [anon_sym___extension__] = ACTIONS(2048), - [anon_sym_COLON_COLON] = ACTIONS(2053), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2056), + [anon_sym___extension__] = ACTIONS(2040), + [anon_sym_COLON_COLON] = ACTIONS(2045), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2048), [anon_sym_LBRACE] = ACTIONS(2399), - [anon_sym_LBRACK] = ACTIONS(2062), - [sym_primitive_type] = ACTIONS(2065), + [anon_sym_LBRACK] = ACTIONS(2054), + [sym_primitive_type] = ACTIONS(2057), [anon_sym_if] = ACTIONS(2402), [anon_sym_switch] = ACTIONS(2405), [anon_sym_case] = ACTIONS(2408), @@ -71935,142 +72073,287 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_goto] = ACTIONS(2432), [anon_sym___try] = ACTIONS(2435), [anon_sym___leave] = ACTIONS(2438), - [anon_sym_not] = ACTIONS(2039), - [anon_sym_compl] = ACTIONS(2039), - [anon_sym_DASH_DASH] = ACTIONS(2107), - [anon_sym_PLUS_PLUS] = ACTIONS(2107), - [anon_sym_sizeof] = ACTIONS(2110), - [anon_sym___alignof__] = ACTIONS(2113), - [anon_sym___alignof] = ACTIONS(2113), - [anon_sym__alignof] = ACTIONS(2113), - [anon_sym_alignof] = ACTIONS(2113), - [anon_sym__Alignof] = ACTIONS(2113), - [anon_sym_offsetof] = ACTIONS(2116), - [anon_sym__Generic] = ACTIONS(2119), - [anon_sym_asm] = ACTIONS(2122), - [anon_sym___asm__] = ACTIONS(2122), - [anon_sym___asm] = ACTIONS(2122), - [sym_number_literal] = ACTIONS(2125), - [anon_sym_L_SQUOTE] = ACTIONS(2128), - [anon_sym_u_SQUOTE] = ACTIONS(2128), - [anon_sym_U_SQUOTE] = ACTIONS(2128), - [anon_sym_u8_SQUOTE] = ACTIONS(2128), - [anon_sym_SQUOTE] = ACTIONS(2128), - [anon_sym_L_DQUOTE] = ACTIONS(2131), - [anon_sym_u_DQUOTE] = ACTIONS(2131), - [anon_sym_U_DQUOTE] = ACTIONS(2131), - [anon_sym_u8_DQUOTE] = ACTIONS(2131), - [anon_sym_DQUOTE] = ACTIONS(2131), - [sym_true] = ACTIONS(2134), - [sym_false] = ACTIONS(2134), - [anon_sym_NULL] = ACTIONS(2137), - [anon_sym_nullptr] = ACTIONS(2137), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2140), - [anon_sym_template] = ACTIONS(2143), + [anon_sym_not] = ACTIONS(2031), + [anon_sym_compl] = ACTIONS(2031), + [anon_sym_DASH_DASH] = ACTIONS(2099), + [anon_sym_PLUS_PLUS] = ACTIONS(2099), + [anon_sym_sizeof] = ACTIONS(2102), + [anon_sym___alignof__] = ACTIONS(2105), + [anon_sym___alignof] = ACTIONS(2105), + [anon_sym__alignof] = ACTIONS(2105), + [anon_sym_alignof] = ACTIONS(2105), + [anon_sym__Alignof] = ACTIONS(2105), + [anon_sym_offsetof] = ACTIONS(2108), + [anon_sym__Generic] = ACTIONS(2111), + [anon_sym_asm] = ACTIONS(2114), + [anon_sym___asm__] = ACTIONS(2114), + [anon_sym___asm] = ACTIONS(2114), + [sym_number_literal] = ACTIONS(2117), + [anon_sym_L_SQUOTE] = ACTIONS(2120), + [anon_sym_u_SQUOTE] = ACTIONS(2120), + [anon_sym_U_SQUOTE] = ACTIONS(2120), + [anon_sym_u8_SQUOTE] = ACTIONS(2120), + [anon_sym_SQUOTE] = ACTIONS(2120), + [anon_sym_L_DQUOTE] = ACTIONS(2123), + [anon_sym_u_DQUOTE] = ACTIONS(2123), + [anon_sym_U_DQUOTE] = ACTIONS(2123), + [anon_sym_u8_DQUOTE] = ACTIONS(2123), + [anon_sym_DQUOTE] = ACTIONS(2123), + [sym_true] = ACTIONS(2126), + [sym_false] = ACTIONS(2126), + [anon_sym_NULL] = ACTIONS(2129), + [anon_sym_nullptr] = ACTIONS(2129), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2132), + [anon_sym_template] = ACTIONS(2135), [anon_sym_try] = ACTIONS(2441), - [anon_sym_delete] = ACTIONS(2149), + [anon_sym_delete] = ACTIONS(2141), [anon_sym_throw] = ACTIONS(2444), [anon_sym_co_return] = ACTIONS(2447), [anon_sym_co_yield] = ACTIONS(2450), - [anon_sym_R_DQUOTE] = ACTIONS(2161), - [anon_sym_LR_DQUOTE] = ACTIONS(2161), - [anon_sym_uR_DQUOTE] = ACTIONS(2161), - [anon_sym_UR_DQUOTE] = ACTIONS(2161), - [anon_sym_u8R_DQUOTE] = ACTIONS(2161), - [anon_sym_co_await] = ACTIONS(2164), - [anon_sym_new] = ACTIONS(2167), - [anon_sym_requires] = ACTIONS(2170), - [sym_this] = ACTIONS(2134), + [anon_sym_R_DQUOTE] = ACTIONS(2153), + [anon_sym_LR_DQUOTE] = ACTIONS(2153), + [anon_sym_uR_DQUOTE] = ACTIONS(2153), + [anon_sym_UR_DQUOTE] = ACTIONS(2153), + [anon_sym_u8R_DQUOTE] = ACTIONS(2153), + [anon_sym_co_await] = ACTIONS(2156), + [anon_sym_new] = ACTIONS(2159), + [anon_sym_requires] = ACTIONS(2162), + [sym_this] = ACTIONS(2126), + }, + [193] = { + [sym_attribute_declaration] = STATE(176), + [sym_compound_statement] = STATE(931), + [sym_attributed_statement] = STATE(931), + [sym_statement] = STATE(908), + [sym_labeled_statement] = STATE(931), + [sym_expression_statement] = STATE(931), + [sym_if_statement] = STATE(931), + [sym_switch_statement] = STATE(931), + [sym_case_statement] = STATE(931), + [sym_while_statement] = STATE(931), + [sym_do_statement] = STATE(931), + [sym_for_statement] = STATE(931), + [sym_return_statement] = STATE(931), + [sym_break_statement] = STATE(931), + [sym_continue_statement] = STATE(931), + [sym_goto_statement] = STATE(931), + [sym_seh_try_statement] = STATE(931), + [sym_seh_leave_statement] = STATE(931), + [sym_expression] = STATE(4602), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8311), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_for_range_loop] = STATE(931), + [sym_co_return_statement] = STATE(931), + [sym_co_yield_statement] = STATE(931), + [sym_throw_statement] = STATE(931), + [sym_try_statement] = STATE(931), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_attributed_declarator_repeat1] = STATE(176), + [sym_identifier] = ACTIONS(2389), + [anon_sym_LPAREN2] = ACTIONS(1252), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(1662), + [anon_sym___extension__] = ACTIONS(2167), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1668), + [anon_sym_LBRACK] = ACTIONS(1266), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_if] = ACTIONS(1670), + [anon_sym_switch] = ACTIONS(1672), + [anon_sym_case] = ACTIONS(1704), + [anon_sym_default] = ACTIONS(1706), + [anon_sym_while] = ACTIONS(1674), + [anon_sym_do] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(1678), + [anon_sym_return] = ACTIONS(1680), + [anon_sym_break] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(1684), + [anon_sym_goto] = ACTIONS(1686), + [anon_sym___try] = ACTIONS(1688), + [anon_sym___leave] = ACTIONS(1690), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [anon_sym___alignof__] = ACTIONS(107), + [anon_sym___alignof] = ACTIONS(107), + [anon_sym__alignof] = ACTIONS(107), + [anon_sym_alignof] = ACTIONS(107), + [anon_sym__Alignof] = ACTIONS(107), + [anon_sym_offsetof] = ACTIONS(109), + [anon_sym__Generic] = ACTIONS(111), + [anon_sym_asm] = ACTIONS(113), + [anon_sym___asm__] = ACTIONS(113), + [anon_sym___asm] = ACTIONS(113), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(117), + [anon_sym_u_SQUOTE] = ACTIONS(117), + [anon_sym_U_SQUOTE] = ACTIONS(117), + [anon_sym_u8_SQUOTE] = ACTIONS(117), + [anon_sym_SQUOTE] = ACTIONS(117), + [anon_sym_L_DQUOTE] = ACTIONS(119), + [anon_sym_u_DQUOTE] = ACTIONS(119), + [anon_sym_U_DQUOTE] = ACTIONS(119), + [anon_sym_u8_DQUOTE] = ACTIONS(119), + [anon_sym_DQUOTE] = ACTIONS(119), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(123), + [anon_sym_nullptr] = ACTIONS(123), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_try] = ACTIONS(1692), + [anon_sym_delete] = ACTIONS(145), + [anon_sym_throw] = ACTIONS(1694), + [anon_sym_co_return] = ACTIONS(1696), + [anon_sym_co_yield] = ACTIONS(1698), + [anon_sym_R_DQUOTE] = ACTIONS(159), + [anon_sym_LR_DQUOTE] = ACTIONS(159), + [anon_sym_uR_DQUOTE] = ACTIONS(159), + [anon_sym_UR_DQUOTE] = ACTIONS(159), + [anon_sym_u8R_DQUOTE] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), }, [194] = { - [sym_attribute_declaration] = STATE(179), - [sym_compound_statement] = STATE(904), - [sym_attributed_statement] = STATE(904), - [sym_statement] = STATE(883), - [sym_labeled_statement] = STATE(904), - [sym_expression_statement] = STATE(904), - [sym_if_statement] = STATE(904), - [sym_switch_statement] = STATE(904), - [sym_case_statement] = STATE(904), - [sym_while_statement] = STATE(904), - [sym_do_statement] = STATE(904), - [sym_for_statement] = STATE(904), - [sym_return_statement] = STATE(904), - [sym_break_statement] = STATE(904), - [sym_continue_statement] = STATE(904), - [sym_goto_statement] = STATE(904), - [sym_seh_try_statement] = STATE(904), - [sym_seh_leave_statement] = STATE(904), - [sym_expression] = STATE(4571), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8696), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_for_range_loop] = STATE(904), - [sym_co_return_statement] = STATE(904), - [sym_co_yield_statement] = STATE(904), - [sym_throw_statement] = STATE(904), - [sym_try_statement] = STATE(904), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_attributed_declarator_repeat1] = STATE(179), - [sym_identifier] = ACTIONS(2391), - [anon_sym_LPAREN2] = ACTIONS(1436), + [sym_attribute_declaration] = STATE(176), + [sym_compound_statement] = STATE(931), + [sym_attributed_statement] = STATE(931), + [sym_statement] = STATE(942), + [sym_labeled_statement] = STATE(931), + [sym_expression_statement] = STATE(931), + [sym_if_statement] = STATE(931), + [sym_switch_statement] = STATE(931), + [sym_case_statement] = STATE(931), + [sym_while_statement] = STATE(931), + [sym_do_statement] = STATE(931), + [sym_for_statement] = STATE(931), + [sym_return_statement] = STATE(931), + [sym_break_statement] = STATE(931), + [sym_continue_statement] = STATE(931), + [sym_goto_statement] = STATE(931), + [sym_seh_try_statement] = STATE(931), + [sym_seh_leave_statement] = STATE(931), + [sym_expression] = STATE(4602), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8311), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_for_range_loop] = STATE(931), + [sym_co_return_statement] = STATE(931), + [sym_co_yield_statement] = STATE(931), + [sym_throw_statement] = STATE(931), + [sym_try_statement] = STATE(931), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_attributed_declarator_repeat1] = STATE(176), + [sym_identifier] = ACTIONS(2389), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), [anon_sym_SEMI] = ACTIONS(1662), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), [anon_sym_LBRACE] = ACTIONS(1668), - [anon_sym_LBRACK] = ACTIONS(1450), - [sym_primitive_type] = ACTIONS(2028), + [anon_sym_LBRACK] = ACTIONS(1266), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_if] = ACTIONS(1670), [anon_sym_switch] = ACTIONS(1672), - [anon_sym_case] = ACTIONS(1760), - [anon_sym_default] = ACTIONS(1762), + [anon_sym_case] = ACTIONS(1704), + [anon_sym_default] = ACTIONS(1706), [anon_sym_while] = ACTIONS(1674), [anon_sym_do] = ACTIONS(1676), [anon_sym_for] = ACTIONS(1678), @@ -72112,7 +72395,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_try] = ACTIONS(1692), [anon_sym_delete] = ACTIONS(145), [anon_sym_throw] = ACTIONS(1694), @@ -72129,93 +72412,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [195] = { - [sym_attribute_declaration] = STATE(179), - [sym_compound_statement] = STATE(904), - [sym_attributed_statement] = STATE(904), - [sym_statement] = STATE(912), - [sym_labeled_statement] = STATE(904), - [sym_expression_statement] = STATE(904), - [sym_if_statement] = STATE(904), - [sym_switch_statement] = STATE(904), - [sym_case_statement] = STATE(904), - [sym_while_statement] = STATE(904), - [sym_do_statement] = STATE(904), - [sym_for_statement] = STATE(904), - [sym_return_statement] = STATE(904), - [sym_break_statement] = STATE(904), - [sym_continue_statement] = STATE(904), - [sym_goto_statement] = STATE(904), - [sym_seh_try_statement] = STATE(904), - [sym_seh_leave_statement] = STATE(904), - [sym_expression] = STATE(4571), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8696), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_for_range_loop] = STATE(904), - [sym_co_return_statement] = STATE(904), - [sym_co_yield_statement] = STATE(904), - [sym_throw_statement] = STATE(904), - [sym_try_statement] = STATE(904), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_attributed_declarator_repeat1] = STATE(179), - [sym_identifier] = ACTIONS(2391), - [anon_sym_LPAREN2] = ACTIONS(1436), + [sym_attribute_declaration] = STATE(176), + [sym_compound_statement] = STATE(931), + [sym_attributed_statement] = STATE(931), + [sym_statement] = STATE(910), + [sym_labeled_statement] = STATE(931), + [sym_expression_statement] = STATE(931), + [sym_if_statement] = STATE(931), + [sym_switch_statement] = STATE(931), + [sym_case_statement] = STATE(931), + [sym_while_statement] = STATE(931), + [sym_do_statement] = STATE(931), + [sym_for_statement] = STATE(931), + [sym_return_statement] = STATE(931), + [sym_break_statement] = STATE(931), + [sym_continue_statement] = STATE(931), + [sym_goto_statement] = STATE(931), + [sym_seh_try_statement] = STATE(931), + [sym_seh_leave_statement] = STATE(931), + [sym_expression] = STATE(4602), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8311), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_for_range_loop] = STATE(931), + [sym_co_return_statement] = STATE(931), + [sym_co_yield_statement] = STATE(931), + [sym_throw_statement] = STATE(931), + [sym_try_statement] = STATE(931), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_attributed_declarator_repeat1] = STATE(176), + [sym_identifier] = ACTIONS(2389), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), [anon_sym_SEMI] = ACTIONS(1662), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), [anon_sym_LBRACE] = ACTIONS(1668), - [anon_sym_LBRACK] = ACTIONS(1450), - [sym_primitive_type] = ACTIONS(2028), + [anon_sym_LBRACK] = ACTIONS(1266), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_if] = ACTIONS(1670), [anon_sym_switch] = ACTIONS(1672), - [anon_sym_case] = ACTIONS(1760), - [anon_sym_default] = ACTIONS(1762), + [anon_sym_case] = ACTIONS(1704), + [anon_sym_default] = ACTIONS(1706), [anon_sym_while] = ACTIONS(1674), [anon_sym_do] = ACTIONS(1676), [anon_sym_for] = ACTIONS(1678), @@ -72257,7 +72540,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_try] = ACTIONS(1692), [anon_sym_delete] = ACTIONS(145), [anon_sym_throw] = ACTIONS(1694), @@ -72274,93 +72557,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [196] = { - [sym_attribute_declaration] = STATE(179), - [sym_compound_statement] = STATE(904), - [sym_attributed_statement] = STATE(904), - [sym_statement] = STATE(908), - [sym_labeled_statement] = STATE(904), - [sym_expression_statement] = STATE(904), - [sym_if_statement] = STATE(904), - [sym_switch_statement] = STATE(904), - [sym_case_statement] = STATE(904), - [sym_while_statement] = STATE(904), - [sym_do_statement] = STATE(904), - [sym_for_statement] = STATE(904), - [sym_return_statement] = STATE(904), - [sym_break_statement] = STATE(904), - [sym_continue_statement] = STATE(904), - [sym_goto_statement] = STATE(904), - [sym_seh_try_statement] = STATE(904), - [sym_seh_leave_statement] = STATE(904), - [sym_expression] = STATE(4571), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8696), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_for_range_loop] = STATE(904), - [sym_co_return_statement] = STATE(904), - [sym_co_yield_statement] = STATE(904), - [sym_throw_statement] = STATE(904), - [sym_try_statement] = STATE(904), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_attributed_declarator_repeat1] = STATE(179), - [sym_identifier] = ACTIONS(2391), - [anon_sym_LPAREN2] = ACTIONS(1436), + [sym_attribute_declaration] = STATE(176), + [sym_compound_statement] = STATE(931), + [sym_attributed_statement] = STATE(931), + [sym_statement] = STATE(911), + [sym_labeled_statement] = STATE(931), + [sym_expression_statement] = STATE(931), + [sym_if_statement] = STATE(931), + [sym_switch_statement] = STATE(931), + [sym_case_statement] = STATE(931), + [sym_while_statement] = STATE(931), + [sym_do_statement] = STATE(931), + [sym_for_statement] = STATE(931), + [sym_return_statement] = STATE(931), + [sym_break_statement] = STATE(931), + [sym_continue_statement] = STATE(931), + [sym_goto_statement] = STATE(931), + [sym_seh_try_statement] = STATE(931), + [sym_seh_leave_statement] = STATE(931), + [sym_expression] = STATE(4602), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8311), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_for_range_loop] = STATE(931), + [sym_co_return_statement] = STATE(931), + [sym_co_yield_statement] = STATE(931), + [sym_throw_statement] = STATE(931), + [sym_try_statement] = STATE(931), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_attributed_declarator_repeat1] = STATE(176), + [sym_identifier] = ACTIONS(2389), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), [anon_sym_SEMI] = ACTIONS(1662), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), [anon_sym_LBRACE] = ACTIONS(1668), - [anon_sym_LBRACK] = ACTIONS(1450), - [sym_primitive_type] = ACTIONS(2028), + [anon_sym_LBRACK] = ACTIONS(1266), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_if] = ACTIONS(1670), [anon_sym_switch] = ACTIONS(1672), - [anon_sym_case] = ACTIONS(1760), - [anon_sym_default] = ACTIONS(1762), + [anon_sym_case] = ACTIONS(1704), + [anon_sym_default] = ACTIONS(1706), [anon_sym_while] = ACTIONS(1674), [anon_sym_do] = ACTIONS(1676), [anon_sym_for] = ACTIONS(1678), @@ -72402,7 +72685,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_try] = ACTIONS(1692), [anon_sym_delete] = ACTIONS(145), [anon_sym_throw] = ACTIONS(1694), @@ -72419,102 +72702,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [197] = { - [sym_attribute_declaration] = STATE(179), - [sym_compound_statement] = STATE(904), - [sym_attributed_statement] = STATE(904), - [sym_statement] = STATE(891), - [sym_labeled_statement] = STATE(904), - [sym_expression_statement] = STATE(904), - [sym_if_statement] = STATE(904), - [sym_switch_statement] = STATE(904), - [sym_case_statement] = STATE(904), - [sym_while_statement] = STATE(904), - [sym_do_statement] = STATE(904), - [sym_for_statement] = STATE(904), - [sym_return_statement] = STATE(904), - [sym_break_statement] = STATE(904), - [sym_continue_statement] = STATE(904), - [sym_goto_statement] = STATE(904), - [sym_seh_try_statement] = STATE(904), - [sym_seh_leave_statement] = STATE(904), - [sym_expression] = STATE(4571), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8696), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_for_range_loop] = STATE(904), - [sym_co_return_statement] = STATE(904), - [sym_co_yield_statement] = STATE(904), - [sym_throw_statement] = STATE(904), - [sym_try_statement] = STATE(904), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_attributed_declarator_repeat1] = STATE(179), - [sym_identifier] = ACTIONS(2391), - [anon_sym_LPAREN2] = ACTIONS(1436), + [sym_attribute_declaration] = STATE(186), + [sym_compound_statement] = STATE(560), + [sym_attributed_statement] = STATE(560), + [sym_statement] = STATE(581), + [sym_labeled_statement] = STATE(560), + [sym_expression_statement] = STATE(560), + [sym_if_statement] = STATE(560), + [sym_switch_statement] = STATE(560), + [sym_case_statement] = STATE(560), + [sym_while_statement] = STATE(560), + [sym_do_statement] = STATE(560), + [sym_for_statement] = STATE(560), + [sym_return_statement] = STATE(560), + [sym_break_statement] = STATE(560), + [sym_continue_statement] = STATE(560), + [sym_goto_statement] = STATE(560), + [sym_seh_try_statement] = STATE(560), + [sym_seh_leave_statement] = STATE(560), + [sym_expression] = STATE(4554), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8083), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_for_range_loop] = STATE(560), + [sym_co_return_statement] = STATE(560), + [sym_co_yield_statement] = STATE(560), + [sym_throw_statement] = STATE(560), + [sym_try_statement] = STATE(560), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_attributed_declarator_repeat1] = STATE(186), + [sym_identifier] = ACTIONS(2325), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(1662), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(181), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), - [anon_sym_LBRACE] = ACTIONS(1668), - [anon_sym_LBRACK] = ACTIONS(1450), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_if] = ACTIONS(1670), - [anon_sym_switch] = ACTIONS(1672), - [anon_sym_case] = ACTIONS(1760), - [anon_sym_default] = ACTIONS(1762), - [anon_sym_while] = ACTIONS(1674), - [anon_sym_do] = ACTIONS(1676), - [anon_sym_for] = ACTIONS(1678), - [anon_sym_return] = ACTIONS(1680), - [anon_sym_break] = ACTIONS(1682), - [anon_sym_continue] = ACTIONS(1684), - [anon_sym_goto] = ACTIONS(1686), - [anon_sym___try] = ACTIONS(1688), - [anon_sym___leave] = ACTIONS(1690), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(866), + [anon_sym_LBRACK] = ACTIONS(1266), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_if] = ACTIONS(199), + [anon_sym_switch] = ACTIONS(201), + [anon_sym_case] = ACTIONS(203), + [anon_sym_default] = ACTIONS(205), + [anon_sym_while] = ACTIONS(207), + [anon_sym_do] = ACTIONS(209), + [anon_sym_for] = ACTIONS(211), + [anon_sym_return] = ACTIONS(213), + [anon_sym_break] = ACTIONS(215), + [anon_sym_continue] = ACTIONS(217), + [anon_sym_goto] = ACTIONS(219), + [anon_sym___try] = ACTIONS(221), + [anon_sym___leave] = ACTIONS(223), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -72547,12 +72830,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_try] = ACTIONS(1692), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_try] = ACTIONS(233), [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(1694), - [anon_sym_co_return] = ACTIONS(1696), - [anon_sym_co_yield] = ACTIONS(1698), + [anon_sym_throw] = ACTIONS(235), + [anon_sym_co_return] = ACTIONS(243), + [anon_sym_co_yield] = ACTIONS(245), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), @@ -72564,89 +72847,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [198] = { - [sym_attribute_declaration] = STATE(187), - [sym_compound_statement] = STATE(401), - [sym_attributed_statement] = STATE(401), - [sym_statement] = STATE(381), - [sym_labeled_statement] = STATE(401), - [sym_expression_statement] = STATE(401), - [sym_if_statement] = STATE(401), - [sym_switch_statement] = STATE(401), - [sym_case_statement] = STATE(401), - [sym_while_statement] = STATE(401), - [sym_do_statement] = STATE(401), - [sym_for_statement] = STATE(401), - [sym_return_statement] = STATE(401), - [sym_break_statement] = STATE(401), - [sym_continue_statement] = STATE(401), - [sym_goto_statement] = STATE(401), - [sym_seh_try_statement] = STATE(401), - [sym_seh_leave_statement] = STATE(401), - [sym_expression] = STATE(4552), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8450), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_for_range_loop] = STATE(401), - [sym_co_return_statement] = STATE(401), - [sym_co_yield_statement] = STATE(401), - [sym_throw_statement] = STATE(401), - [sym_try_statement] = STATE(401), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_attributed_declarator_repeat1] = STATE(187), - [sym_identifier] = ACTIONS(2173), - [anon_sym_LPAREN2] = ACTIONS(1436), + [sym_attribute_declaration] = STATE(170), + [sym_compound_statement] = STATE(409), + [sym_attributed_statement] = STATE(409), + [sym_statement] = STATE(348), + [sym_labeled_statement] = STATE(409), + [sym_expression_statement] = STATE(409), + [sym_if_statement] = STATE(409), + [sym_switch_statement] = STATE(409), + [sym_case_statement] = STATE(409), + [sym_while_statement] = STATE(409), + [sym_do_statement] = STATE(409), + [sym_for_statement] = STATE(409), + [sym_return_statement] = STATE(409), + [sym_break_statement] = STATE(409), + [sym_continue_statement] = STATE(409), + [sym_goto_statement] = STATE(409), + [sym_seh_try_statement] = STATE(409), + [sym_seh_leave_statement] = STATE(409), + [sym_expression] = STATE(4499), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8264), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_for_range_loop] = STATE(409), + [sym_co_return_statement] = STATE(409), + [sym_co_yield_statement] = STATE(409), + [sym_throw_statement] = STATE(409), + [sym_try_statement] = STATE(409), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_attributed_declarator_repeat1] = STATE(170), + [sym_identifier] = ACTIONS(2165), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(1194), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(1212), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1450), - [sym_primitive_type] = ACTIONS(2028), + [anon_sym_LBRACK] = ACTIONS(1266), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_if] = ACTIONS(81), [anon_sym_switch] = ACTIONS(83), [anon_sym_case] = ACTIONS(85), @@ -72658,8 +72941,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(97), [anon_sym_continue] = ACTIONS(99), [anon_sym_goto] = ACTIONS(101), - [anon_sym___try] = ACTIONS(1198), - [anon_sym___leave] = ACTIONS(1200), + [anon_sym___try] = ACTIONS(1216), + [anon_sym___leave] = ACTIONS(1218), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -72692,7 +72975,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_try] = ACTIONS(143), [anon_sym_delete] = ACTIONS(145), [anon_sym_throw] = ACTIONS(147), @@ -72709,102 +72992,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [199] = { - [sym_attribute_declaration] = STATE(203), - [sym_compound_statement] = STATE(279), - [sym_attributed_statement] = STATE(279), - [sym_statement] = STATE(237), - [sym_labeled_statement] = STATE(279), - [sym_expression_statement] = STATE(279), - [sym_if_statement] = STATE(279), - [sym_switch_statement] = STATE(279), - [sym_case_statement] = STATE(279), - [sym_while_statement] = STATE(279), - [sym_do_statement] = STATE(279), - [sym_for_statement] = STATE(279), - [sym_return_statement] = STATE(279), - [sym_break_statement] = STATE(279), - [sym_continue_statement] = STATE(279), - [sym_goto_statement] = STATE(279), - [sym_seh_try_statement] = STATE(279), - [sym_seh_leave_statement] = STATE(279), - [sym_expression] = STATE(4493), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8429), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_for_range_loop] = STATE(279), - [sym_co_return_statement] = STATE(279), - [sym_co_yield_statement] = STATE(279), - [sym_throw_statement] = STATE(279), - [sym_try_statement] = STATE(279), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_attributed_declarator_repeat1] = STATE(203), - [sym_identifier] = ACTIONS(2237), - [anon_sym_LPAREN2] = ACTIONS(1436), + [sym_attribute_declaration] = STATE(186), + [sym_compound_statement] = STATE(560), + [sym_attributed_statement] = STATE(560), + [sym_statement] = STATE(630), + [sym_labeled_statement] = STATE(560), + [sym_expression_statement] = STATE(560), + [sym_if_statement] = STATE(560), + [sym_switch_statement] = STATE(560), + [sym_case_statement] = STATE(560), + [sym_while_statement] = STATE(560), + [sym_do_statement] = STATE(560), + [sym_for_statement] = STATE(560), + [sym_return_statement] = STATE(560), + [sym_break_statement] = STATE(560), + [sym_continue_statement] = STATE(560), + [sym_goto_statement] = STATE(560), + [sym_seh_try_statement] = STATE(560), + [sym_seh_leave_statement] = STATE(560), + [sym_expression] = STATE(4554), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8083), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_for_range_loop] = STATE(560), + [sym_co_return_statement] = STATE(560), + [sym_co_yield_statement] = STATE(560), + [sym_throw_statement] = STATE(560), + [sym_try_statement] = STATE(560), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_attributed_declarator_repeat1] = STATE(186), + [sym_identifier] = ACTIONS(2325), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(287), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(181), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), - [anon_sym_LBRACE] = ACTIONS(297), - [anon_sym_LBRACK] = ACTIONS(1450), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_if] = ACTIONS(301), - [anon_sym_switch] = ACTIONS(303), - [anon_sym_case] = ACTIONS(305), - [anon_sym_default] = ACTIONS(307), - [anon_sym_while] = ACTIONS(309), - [anon_sym_do] = ACTIONS(311), - [anon_sym_for] = ACTIONS(313), - [anon_sym_return] = ACTIONS(315), - [anon_sym_break] = ACTIONS(317), - [anon_sym_continue] = ACTIONS(319), - [anon_sym_goto] = ACTIONS(321), - [anon_sym___try] = ACTIONS(323), - [anon_sym___leave] = ACTIONS(325), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(866), + [anon_sym_LBRACK] = ACTIONS(1266), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_if] = ACTIONS(199), + [anon_sym_switch] = ACTIONS(201), + [anon_sym_case] = ACTIONS(203), + [anon_sym_default] = ACTIONS(205), + [anon_sym_while] = ACTIONS(207), + [anon_sym_do] = ACTIONS(209), + [anon_sym_for] = ACTIONS(211), + [anon_sym_return] = ACTIONS(213), + [anon_sym_break] = ACTIONS(215), + [anon_sym_continue] = ACTIONS(217), + [anon_sym_goto] = ACTIONS(219), + [anon_sym___try] = ACTIONS(221), + [anon_sym___leave] = ACTIONS(223), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -72837,12 +73120,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_try] = ACTIONS(329), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_try] = ACTIONS(233), [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(331), - [anon_sym_co_return] = ACTIONS(339), - [anon_sym_co_yield] = ACTIONS(341), + [anon_sym_throw] = ACTIONS(235), + [anon_sym_co_return] = ACTIONS(243), + [anon_sym_co_yield] = ACTIONS(245), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), @@ -72854,89 +73137,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [200] = { - [sym_attribute_declaration] = STATE(187), - [sym_compound_statement] = STATE(401), - [sym_attributed_statement] = STATE(401), - [sym_statement] = STATE(260), - [sym_labeled_statement] = STATE(401), - [sym_expression_statement] = STATE(401), - [sym_if_statement] = STATE(401), - [sym_switch_statement] = STATE(401), - [sym_case_statement] = STATE(401), - [sym_while_statement] = STATE(401), - [sym_do_statement] = STATE(401), - [sym_for_statement] = STATE(401), - [sym_return_statement] = STATE(401), - [sym_break_statement] = STATE(401), - [sym_continue_statement] = STATE(401), - [sym_goto_statement] = STATE(401), - [sym_seh_try_statement] = STATE(401), - [sym_seh_leave_statement] = STATE(401), - [sym_expression] = STATE(4552), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8450), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_for_range_loop] = STATE(401), - [sym_co_return_statement] = STATE(401), - [sym_co_yield_statement] = STATE(401), - [sym_throw_statement] = STATE(401), - [sym_try_statement] = STATE(401), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_attributed_declarator_repeat1] = STATE(187), - [sym_identifier] = ACTIONS(2173), - [anon_sym_LPAREN2] = ACTIONS(1436), + [sym_attribute_declaration] = STATE(198), + [sym_compound_statement] = STATE(409), + [sym_attributed_statement] = STATE(409), + [sym_statement] = STATE(388), + [sym_labeled_statement] = STATE(409), + [sym_expression_statement] = STATE(409), + [sym_if_statement] = STATE(409), + [sym_switch_statement] = STATE(409), + [sym_case_statement] = STATE(409), + [sym_while_statement] = STATE(409), + [sym_do_statement] = STATE(409), + [sym_for_statement] = STATE(409), + [sym_return_statement] = STATE(409), + [sym_break_statement] = STATE(409), + [sym_continue_statement] = STATE(409), + [sym_goto_statement] = STATE(409), + [sym_seh_try_statement] = STATE(409), + [sym_seh_leave_statement] = STATE(409), + [sym_expression] = STATE(4499), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8264), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_for_range_loop] = STATE(409), + [sym_co_return_statement] = STATE(409), + [sym_co_yield_statement] = STATE(409), + [sym_throw_statement] = STATE(409), + [sym_try_statement] = STATE(409), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_attributed_declarator_repeat1] = STATE(198), + [sym_identifier] = ACTIONS(2165), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(1194), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(1212), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1450), - [sym_primitive_type] = ACTIONS(2028), + [anon_sym_LBRACK] = ACTIONS(1266), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_if] = ACTIONS(81), [anon_sym_switch] = ACTIONS(83), [anon_sym_case] = ACTIONS(85), @@ -72948,8 +73231,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(97), [anon_sym_continue] = ACTIONS(99), [anon_sym_goto] = ACTIONS(101), - [anon_sym___try] = ACTIONS(1198), - [anon_sym___leave] = ACTIONS(1200), + [anon_sym___try] = ACTIONS(1216), + [anon_sym___leave] = ACTIONS(1218), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -72982,7 +73265,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_try] = ACTIONS(143), [anon_sym_delete] = ACTIONS(145), [anon_sym_throw] = ACTIONS(147), @@ -72999,101 +73282,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [201] = { - [sym_attribute_declaration] = STATE(219), - [sym_compound_statement] = STATE(545), - [sym_attributed_statement] = STATE(545), - [sym_statement] = STATE(627), - [sym_labeled_statement] = STATE(545), - [sym_expression_statement] = STATE(545), - [sym_if_statement] = STATE(545), - [sym_switch_statement] = STATE(545), - [sym_case_statement] = STATE(545), - [sym_while_statement] = STATE(545), - [sym_do_statement] = STATE(545), - [sym_for_statement] = STATE(545), - [sym_return_statement] = STATE(545), - [sym_break_statement] = STATE(545), - [sym_continue_statement] = STATE(545), - [sym_goto_statement] = STATE(545), - [sym_seh_try_statement] = STATE(545), - [sym_seh_leave_statement] = STATE(545), - [sym_expression] = STATE(4457), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8711), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_for_range_loop] = STATE(545), - [sym_co_return_statement] = STATE(545), - [sym_co_yield_statement] = STATE(545), - [sym_throw_statement] = STATE(545), - [sym_try_statement] = STATE(545), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_attributed_declarator_repeat1] = STATE(219), - [sym_identifier] = ACTIONS(2022), - [anon_sym_LPAREN2] = ACTIONS(1436), + [sym_attribute_declaration] = STATE(189), + [sym_compound_statement] = STATE(560), + [sym_attributed_statement] = STATE(560), + [sym_statement] = STATE(8700), + [sym_labeled_statement] = STATE(560), + [sym_expression_statement] = STATE(560), + [sym_if_statement] = STATE(560), + [sym_switch_statement] = STATE(560), + [sym_case_statement] = STATE(560), + [sym_while_statement] = STATE(560), + [sym_do_statement] = STATE(560), + [sym_for_statement] = STATE(560), + [sym_return_statement] = STATE(560), + [sym_break_statement] = STATE(560), + [sym_continue_statement] = STATE(560), + [sym_goto_statement] = STATE(560), + [sym_seh_try_statement] = STATE(560), + [sym_seh_leave_statement] = STATE(560), + [sym_expression] = STATE(4554), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8083), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_for_range_loop] = STATE(560), + [sym_co_return_statement] = STATE(560), + [sym_co_yield_statement] = STATE(560), + [sym_throw_statement] = STATE(560), + [sym_try_statement] = STATE(560), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_attributed_declarator_repeat1] = STATE(189), + [sym_identifier] = ACTIONS(2391), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), - [anon_sym_LBRACE] = ACTIONS(866), - [anon_sym_LBRACK] = ACTIONS(1450), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_if] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), - [anon_sym_case] = ACTIONS(203), - [anon_sym_default] = ACTIONS(205), - [anon_sym_while] = ACTIONS(207), - [anon_sym_do] = ACTIONS(209), - [anon_sym_for] = ACTIONS(211), - [anon_sym_return] = ACTIONS(213), - [anon_sym_break] = ACTIONS(215), - [anon_sym_continue] = ACTIONS(217), - [anon_sym_goto] = ACTIONS(219), - [anon_sym___try] = ACTIONS(221), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(1266), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_switch] = ACTIONS(83), + [anon_sym_case] = ACTIONS(1704), + [anon_sym_default] = ACTIONS(1706), + [anon_sym_while] = ACTIONS(1708), + [anon_sym_do] = ACTIONS(91), + [anon_sym_for] = ACTIONS(1710), + [anon_sym_return] = ACTIONS(95), + [anon_sym_break] = ACTIONS(97), + [anon_sym_continue] = ACTIONS(99), + [anon_sym_goto] = ACTIONS(101), + [anon_sym___try] = ACTIONS(1712), [anon_sym___leave] = ACTIONS(223), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), @@ -73127,12 +73410,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_try] = ACTIONS(233), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_try] = ACTIONS(143), [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(235), - [anon_sym_co_return] = ACTIONS(243), - [anon_sym_co_yield] = ACTIONS(245), + [anon_sym_throw] = ACTIONS(147), + [anon_sym_co_return] = ACTIONS(155), + [anon_sym_co_yield] = ACTIONS(157), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), @@ -73144,102 +73427,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [202] = { - [sym_attribute_declaration] = STATE(203), - [sym_compound_statement] = STATE(279), - [sym_attributed_statement] = STATE(279), - [sym_statement] = STATE(253), - [sym_labeled_statement] = STATE(279), - [sym_expression_statement] = STATE(279), - [sym_if_statement] = STATE(279), - [sym_switch_statement] = STATE(279), - [sym_case_statement] = STATE(279), - [sym_while_statement] = STATE(279), - [sym_do_statement] = STATE(279), - [sym_for_statement] = STATE(279), - [sym_return_statement] = STATE(279), - [sym_break_statement] = STATE(279), - [sym_continue_statement] = STATE(279), - [sym_goto_statement] = STATE(279), - [sym_seh_try_statement] = STATE(279), - [sym_seh_leave_statement] = STATE(279), - [sym_expression] = STATE(4493), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8429), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_for_range_loop] = STATE(279), - [sym_co_return_statement] = STATE(279), - [sym_co_yield_statement] = STATE(279), - [sym_throw_statement] = STATE(279), - [sym_try_statement] = STATE(279), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_attributed_declarator_repeat1] = STATE(203), - [sym_identifier] = ACTIONS(2237), - [anon_sym_LPAREN2] = ACTIONS(1436), + [sym_attribute_declaration] = STATE(198), + [sym_compound_statement] = STATE(409), + [sym_attributed_statement] = STATE(409), + [sym_statement] = STATE(389), + [sym_labeled_statement] = STATE(409), + [sym_expression_statement] = STATE(409), + [sym_if_statement] = STATE(409), + [sym_switch_statement] = STATE(409), + [sym_case_statement] = STATE(409), + [sym_while_statement] = STATE(409), + [sym_do_statement] = STATE(409), + [sym_for_statement] = STATE(409), + [sym_return_statement] = STATE(409), + [sym_break_statement] = STATE(409), + [sym_continue_statement] = STATE(409), + [sym_goto_statement] = STATE(409), + [sym_seh_try_statement] = STATE(409), + [sym_seh_leave_statement] = STATE(409), + [sym_expression] = STATE(4499), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8264), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_for_range_loop] = STATE(409), + [sym_co_return_statement] = STATE(409), + [sym_co_yield_statement] = STATE(409), + [sym_throw_statement] = STATE(409), + [sym_try_statement] = STATE(409), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_attributed_declarator_repeat1] = STATE(198), + [sym_identifier] = ACTIONS(2165), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(287), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(1212), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), - [anon_sym_LBRACE] = ACTIONS(297), - [anon_sym_LBRACK] = ACTIONS(1450), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_if] = ACTIONS(301), - [anon_sym_switch] = ACTIONS(303), - [anon_sym_case] = ACTIONS(305), - [anon_sym_default] = ACTIONS(307), - [anon_sym_while] = ACTIONS(309), - [anon_sym_do] = ACTIONS(311), - [anon_sym_for] = ACTIONS(313), - [anon_sym_return] = ACTIONS(315), - [anon_sym_break] = ACTIONS(317), - [anon_sym_continue] = ACTIONS(319), - [anon_sym_goto] = ACTIONS(321), - [anon_sym___try] = ACTIONS(323), - [anon_sym___leave] = ACTIONS(325), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(1266), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_if] = ACTIONS(81), + [anon_sym_switch] = ACTIONS(83), + [anon_sym_case] = ACTIONS(85), + [anon_sym_default] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_do] = ACTIONS(91), + [anon_sym_for] = ACTIONS(93), + [anon_sym_return] = ACTIONS(95), + [anon_sym_break] = ACTIONS(97), + [anon_sym_continue] = ACTIONS(99), + [anon_sym_goto] = ACTIONS(101), + [anon_sym___try] = ACTIONS(1216), + [anon_sym___leave] = ACTIONS(1218), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -73272,12 +73555,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_try] = ACTIONS(329), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_try] = ACTIONS(143), [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(331), - [anon_sym_co_return] = ACTIONS(339), - [anon_sym_co_yield] = ACTIONS(341), + [anon_sym_throw] = ACTIONS(147), + [anon_sym_co_return] = ACTIONS(155), + [anon_sym_co_yield] = ACTIONS(157), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), @@ -73289,102 +73572,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [203] = { - [sym_attribute_declaration] = STATE(146), - [sym_compound_statement] = STATE(279), - [sym_attributed_statement] = STATE(279), - [sym_statement] = STATE(247), - [sym_labeled_statement] = STATE(279), - [sym_expression_statement] = STATE(279), - [sym_if_statement] = STATE(279), - [sym_switch_statement] = STATE(279), - [sym_case_statement] = STATE(279), - [sym_while_statement] = STATE(279), - [sym_do_statement] = STATE(279), - [sym_for_statement] = STATE(279), - [sym_return_statement] = STATE(279), - [sym_break_statement] = STATE(279), - [sym_continue_statement] = STATE(279), - [sym_goto_statement] = STATE(279), - [sym_seh_try_statement] = STATE(279), - [sym_seh_leave_statement] = STATE(279), - [sym_expression] = STATE(4493), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8429), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_for_range_loop] = STATE(279), - [sym_co_return_statement] = STATE(279), - [sym_co_yield_statement] = STATE(279), - [sym_throw_statement] = STATE(279), - [sym_try_statement] = STATE(279), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_attributed_declarator_repeat1] = STATE(146), - [sym_identifier] = ACTIONS(2237), - [anon_sym_LPAREN2] = ACTIONS(1436), + [sym_attribute_declaration] = STATE(189), + [sym_compound_statement] = STATE(560), + [sym_attributed_statement] = STATE(560), + [sym_statement] = STATE(8942), + [sym_labeled_statement] = STATE(560), + [sym_expression_statement] = STATE(560), + [sym_if_statement] = STATE(560), + [sym_switch_statement] = STATE(560), + [sym_case_statement] = STATE(560), + [sym_while_statement] = STATE(560), + [sym_do_statement] = STATE(560), + [sym_for_statement] = STATE(560), + [sym_return_statement] = STATE(560), + [sym_break_statement] = STATE(560), + [sym_continue_statement] = STATE(560), + [sym_goto_statement] = STATE(560), + [sym_seh_try_statement] = STATE(560), + [sym_seh_leave_statement] = STATE(560), + [sym_expression] = STATE(4554), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8083), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_for_range_loop] = STATE(560), + [sym_co_return_statement] = STATE(560), + [sym_co_yield_statement] = STATE(560), + [sym_throw_statement] = STATE(560), + [sym_try_statement] = STATE(560), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_attributed_declarator_repeat1] = STATE(189), + [sym_identifier] = ACTIONS(2391), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(287), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(181), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), - [anon_sym_LBRACE] = ACTIONS(297), - [anon_sym_LBRACK] = ACTIONS(1450), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_if] = ACTIONS(301), - [anon_sym_switch] = ACTIONS(303), - [anon_sym_case] = ACTIONS(305), - [anon_sym_default] = ACTIONS(307), - [anon_sym_while] = ACTIONS(309), - [anon_sym_do] = ACTIONS(311), - [anon_sym_for] = ACTIONS(313), - [anon_sym_return] = ACTIONS(315), - [anon_sym_break] = ACTIONS(317), - [anon_sym_continue] = ACTIONS(319), - [anon_sym_goto] = ACTIONS(321), - [anon_sym___try] = ACTIONS(323), - [anon_sym___leave] = ACTIONS(325), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(1266), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_switch] = ACTIONS(83), + [anon_sym_case] = ACTIONS(1704), + [anon_sym_default] = ACTIONS(1706), + [anon_sym_while] = ACTIONS(1708), + [anon_sym_do] = ACTIONS(91), + [anon_sym_for] = ACTIONS(1710), + [anon_sym_return] = ACTIONS(95), + [anon_sym_break] = ACTIONS(97), + [anon_sym_continue] = ACTIONS(99), + [anon_sym_goto] = ACTIONS(101), + [anon_sym___try] = ACTIONS(1712), + [anon_sym___leave] = ACTIONS(223), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -73417,12 +73700,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_try] = ACTIONS(329), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_try] = ACTIONS(143), [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(331), - [anon_sym_co_return] = ACTIONS(339), - [anon_sym_co_yield] = ACTIONS(341), + [anon_sym_throw] = ACTIONS(147), + [anon_sym_co_return] = ACTIONS(155), + [anon_sym_co_yield] = ACTIONS(157), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), @@ -73434,102 +73717,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [204] = { - [sym_attribute_declaration] = STATE(203), - [sym_compound_statement] = STATE(279), - [sym_attributed_statement] = STATE(279), - [sym_statement] = STATE(243), - [sym_labeled_statement] = STATE(279), - [sym_expression_statement] = STATE(279), - [sym_if_statement] = STATE(279), - [sym_switch_statement] = STATE(279), - [sym_case_statement] = STATE(279), - [sym_while_statement] = STATE(279), - [sym_do_statement] = STATE(279), - [sym_for_statement] = STATE(279), - [sym_return_statement] = STATE(279), - [sym_break_statement] = STATE(279), - [sym_continue_statement] = STATE(279), - [sym_goto_statement] = STATE(279), - [sym_seh_try_statement] = STATE(279), - [sym_seh_leave_statement] = STATE(279), - [sym_expression] = STATE(4493), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8429), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_for_range_loop] = STATE(279), - [sym_co_return_statement] = STATE(279), - [sym_co_yield_statement] = STATE(279), - [sym_throw_statement] = STATE(279), - [sym_try_statement] = STATE(279), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_attributed_declarator_repeat1] = STATE(203), - [sym_identifier] = ACTIONS(2237), - [anon_sym_LPAREN2] = ACTIONS(1436), + [sym_attribute_declaration] = STATE(186), + [sym_compound_statement] = STATE(560), + [sym_attributed_statement] = STATE(560), + [sym_statement] = STATE(641), + [sym_labeled_statement] = STATE(560), + [sym_expression_statement] = STATE(560), + [sym_if_statement] = STATE(560), + [sym_switch_statement] = STATE(560), + [sym_case_statement] = STATE(560), + [sym_while_statement] = STATE(560), + [sym_do_statement] = STATE(560), + [sym_for_statement] = STATE(560), + [sym_return_statement] = STATE(560), + [sym_break_statement] = STATE(560), + [sym_continue_statement] = STATE(560), + [sym_goto_statement] = STATE(560), + [sym_seh_try_statement] = STATE(560), + [sym_seh_leave_statement] = STATE(560), + [sym_expression] = STATE(4554), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8083), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_for_range_loop] = STATE(560), + [sym_co_return_statement] = STATE(560), + [sym_co_yield_statement] = STATE(560), + [sym_throw_statement] = STATE(560), + [sym_try_statement] = STATE(560), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_attributed_declarator_repeat1] = STATE(186), + [sym_identifier] = ACTIONS(2325), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(287), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(181), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), - [anon_sym_LBRACE] = ACTIONS(297), - [anon_sym_LBRACK] = ACTIONS(1450), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_if] = ACTIONS(301), - [anon_sym_switch] = ACTIONS(303), - [anon_sym_case] = ACTIONS(305), - [anon_sym_default] = ACTIONS(307), - [anon_sym_while] = ACTIONS(309), - [anon_sym_do] = ACTIONS(311), - [anon_sym_for] = ACTIONS(313), - [anon_sym_return] = ACTIONS(315), - [anon_sym_break] = ACTIONS(317), - [anon_sym_continue] = ACTIONS(319), - [anon_sym_goto] = ACTIONS(321), - [anon_sym___try] = ACTIONS(323), - [anon_sym___leave] = ACTIONS(325), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(866), + [anon_sym_LBRACK] = ACTIONS(1266), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_if] = ACTIONS(199), + [anon_sym_switch] = ACTIONS(201), + [anon_sym_case] = ACTIONS(203), + [anon_sym_default] = ACTIONS(205), + [anon_sym_while] = ACTIONS(207), + [anon_sym_do] = ACTIONS(209), + [anon_sym_for] = ACTIONS(211), + [anon_sym_return] = ACTIONS(213), + [anon_sym_break] = ACTIONS(215), + [anon_sym_continue] = ACTIONS(217), + [anon_sym_goto] = ACTIONS(219), + [anon_sym___try] = ACTIONS(221), + [anon_sym___leave] = ACTIONS(223), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -73562,12 +73845,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_try] = ACTIONS(329), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_try] = ACTIONS(233), [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(331), - [anon_sym_co_return] = ACTIONS(339), - [anon_sym_co_yield] = ACTIONS(341), + [anon_sym_throw] = ACTIONS(235), + [anon_sym_co_return] = ACTIONS(243), + [anon_sym_co_yield] = ACTIONS(245), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), @@ -73579,102 +73862,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [205] = { - [sym_attribute_declaration] = STATE(187), - [sym_compound_statement] = STATE(401), - [sym_attributed_statement] = STATE(401), - [sym_statement] = STATE(415), - [sym_labeled_statement] = STATE(401), - [sym_expression_statement] = STATE(401), - [sym_if_statement] = STATE(401), - [sym_switch_statement] = STATE(401), - [sym_case_statement] = STATE(401), - [sym_while_statement] = STATE(401), - [sym_do_statement] = STATE(401), - [sym_for_statement] = STATE(401), - [sym_return_statement] = STATE(401), - [sym_break_statement] = STATE(401), - [sym_continue_statement] = STATE(401), - [sym_goto_statement] = STATE(401), - [sym_seh_try_statement] = STATE(401), - [sym_seh_leave_statement] = STATE(401), - [sym_expression] = STATE(4552), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8450), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_for_range_loop] = STATE(401), - [sym_co_return_statement] = STATE(401), - [sym_co_yield_statement] = STATE(401), - [sym_throw_statement] = STATE(401), - [sym_try_statement] = STATE(401), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_attributed_declarator_repeat1] = STATE(187), - [sym_identifier] = ACTIONS(2173), - [anon_sym_LPAREN2] = ACTIONS(1436), + [sym_attribute_declaration] = STATE(145), + [sym_compound_statement] = STATE(260), + [sym_attributed_statement] = STATE(260), + [sym_statement] = STATE(259), + [sym_labeled_statement] = STATE(260), + [sym_expression_statement] = STATE(260), + [sym_if_statement] = STATE(260), + [sym_switch_statement] = STATE(260), + [sym_case_statement] = STATE(260), + [sym_while_statement] = STATE(260), + [sym_do_statement] = STATE(260), + [sym_for_statement] = STATE(260), + [sym_return_statement] = STATE(260), + [sym_break_statement] = STATE(260), + [sym_continue_statement] = STATE(260), + [sym_goto_statement] = STATE(260), + [sym_seh_try_statement] = STATE(260), + [sym_seh_leave_statement] = STATE(260), + [sym_expression] = STATE(4517), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8280), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_for_range_loop] = STATE(260), + [sym_co_return_statement] = STATE(260), + [sym_co_yield_statement] = STATE(260), + [sym_throw_statement] = STATE(260), + [sym_try_statement] = STATE(260), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_attributed_declarator_repeat1] = STATE(145), + [sym_identifier] = ACTIONS(2233), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(1194), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(287), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1450), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_if] = ACTIONS(81), - [anon_sym_switch] = ACTIONS(83), - [anon_sym_case] = ACTIONS(85), - [anon_sym_default] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_do] = ACTIONS(91), - [anon_sym_for] = ACTIONS(93), - [anon_sym_return] = ACTIONS(95), - [anon_sym_break] = ACTIONS(97), - [anon_sym_continue] = ACTIONS(99), - [anon_sym_goto] = ACTIONS(101), - [anon_sym___try] = ACTIONS(1198), - [anon_sym___leave] = ACTIONS(1200), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(297), + [anon_sym_LBRACK] = ACTIONS(1266), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_if] = ACTIONS(301), + [anon_sym_switch] = ACTIONS(303), + [anon_sym_case] = ACTIONS(305), + [anon_sym_default] = ACTIONS(307), + [anon_sym_while] = ACTIONS(309), + [anon_sym_do] = ACTIONS(311), + [anon_sym_for] = ACTIONS(313), + [anon_sym_return] = ACTIONS(315), + [anon_sym_break] = ACTIONS(317), + [anon_sym_continue] = ACTIONS(319), + [anon_sym_goto] = ACTIONS(321), + [anon_sym___try] = ACTIONS(323), + [anon_sym___leave] = ACTIONS(325), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -73707,12 +73990,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_try] = ACTIONS(143), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_try] = ACTIONS(329), [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(147), - [anon_sym_co_return] = ACTIONS(155), - [anon_sym_co_yield] = ACTIONS(157), + [anon_sym_throw] = ACTIONS(331), + [anon_sym_co_return] = ACTIONS(339), + [anon_sym_co_yield] = ACTIONS(341), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), @@ -73724,89 +74007,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [206] = { - [sym_attribute_declaration] = STATE(203), - [sym_compound_statement] = STATE(279), - [sym_attributed_statement] = STATE(279), - [sym_statement] = STATE(244), - [sym_labeled_statement] = STATE(279), - [sym_expression_statement] = STATE(279), - [sym_if_statement] = STATE(279), - [sym_switch_statement] = STATE(279), - [sym_case_statement] = STATE(279), - [sym_while_statement] = STATE(279), - [sym_do_statement] = STATE(279), - [sym_for_statement] = STATE(279), - [sym_return_statement] = STATE(279), - [sym_break_statement] = STATE(279), - [sym_continue_statement] = STATE(279), - [sym_goto_statement] = STATE(279), - [sym_seh_try_statement] = STATE(279), - [sym_seh_leave_statement] = STATE(279), - [sym_expression] = STATE(4493), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8429), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_for_range_loop] = STATE(279), - [sym_co_return_statement] = STATE(279), - [sym_co_yield_statement] = STATE(279), - [sym_throw_statement] = STATE(279), - [sym_try_statement] = STATE(279), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_attributed_declarator_repeat1] = STATE(203), - [sym_identifier] = ACTIONS(2237), - [anon_sym_LPAREN2] = ACTIONS(1436), + [sym_attribute_declaration] = STATE(205), + [sym_compound_statement] = STATE(260), + [sym_attributed_statement] = STATE(260), + [sym_statement] = STATE(238), + [sym_labeled_statement] = STATE(260), + [sym_expression_statement] = STATE(260), + [sym_if_statement] = STATE(260), + [sym_switch_statement] = STATE(260), + [sym_case_statement] = STATE(260), + [sym_while_statement] = STATE(260), + [sym_do_statement] = STATE(260), + [sym_for_statement] = STATE(260), + [sym_return_statement] = STATE(260), + [sym_break_statement] = STATE(260), + [sym_continue_statement] = STATE(260), + [sym_goto_statement] = STATE(260), + [sym_seh_try_statement] = STATE(260), + [sym_seh_leave_statement] = STATE(260), + [sym_expression] = STATE(4517), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8280), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_for_range_loop] = STATE(260), + [sym_co_return_statement] = STATE(260), + [sym_co_yield_statement] = STATE(260), + [sym_throw_statement] = STATE(260), + [sym_try_statement] = STATE(260), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_attributed_declarator_repeat1] = STATE(205), + [sym_identifier] = ACTIONS(2233), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), [anon_sym_SEMI] = ACTIONS(287), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), [anon_sym_LBRACE] = ACTIONS(297), - [anon_sym_LBRACK] = ACTIONS(1450), - [sym_primitive_type] = ACTIONS(2028), + [anon_sym_LBRACK] = ACTIONS(1266), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_if] = ACTIONS(301), [anon_sym_switch] = ACTIONS(303), [anon_sym_case] = ACTIONS(305), @@ -73852,7 +74135,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_try] = ACTIONS(329), [anon_sym_delete] = ACTIONS(145), [anon_sym_throw] = ACTIONS(331), @@ -73869,101 +74152,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [207] = { - [sym_attribute_declaration] = STATE(216), - [sym_compound_statement] = STATE(545), - [sym_attributed_statement] = STATE(545), - [sym_statement] = STATE(7556), - [sym_labeled_statement] = STATE(545), - [sym_expression_statement] = STATE(545), - [sym_if_statement] = STATE(545), - [sym_switch_statement] = STATE(545), - [sym_case_statement] = STATE(545), - [sym_while_statement] = STATE(545), - [sym_do_statement] = STATE(545), - [sym_for_statement] = STATE(545), - [sym_return_statement] = STATE(545), - [sym_break_statement] = STATE(545), - [sym_continue_statement] = STATE(545), - [sym_goto_statement] = STATE(545), - [sym_seh_try_statement] = STATE(545), - [sym_seh_leave_statement] = STATE(545), - [sym_expression] = STATE(4457), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8711), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_for_range_loop] = STATE(545), - [sym_co_return_statement] = STATE(545), - [sym_co_yield_statement] = STATE(545), - [sym_throw_statement] = STATE(545), - [sym_try_statement] = STATE(545), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_attributed_declarator_repeat1] = STATE(216), - [sym_identifier] = ACTIONS(2389), - [anon_sym_LPAREN2] = ACTIONS(1436), + [sym_attribute_declaration] = STATE(186), + [sym_compound_statement] = STATE(560), + [sym_attributed_statement] = STATE(560), + [sym_statement] = STATE(642), + [sym_labeled_statement] = STATE(560), + [sym_expression_statement] = STATE(560), + [sym_if_statement] = STATE(560), + [sym_switch_statement] = STATE(560), + [sym_case_statement] = STATE(560), + [sym_while_statement] = STATE(560), + [sym_do_statement] = STATE(560), + [sym_for_statement] = STATE(560), + [sym_return_statement] = STATE(560), + [sym_break_statement] = STATE(560), + [sym_continue_statement] = STATE(560), + [sym_goto_statement] = STATE(560), + [sym_seh_try_statement] = STATE(560), + [sym_seh_leave_statement] = STATE(560), + [sym_expression] = STATE(4554), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8083), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_for_range_loop] = STATE(560), + [sym_co_return_statement] = STATE(560), + [sym_co_yield_statement] = STATE(560), + [sym_throw_statement] = STATE(560), + [sym_try_statement] = STATE(560), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_attributed_declarator_repeat1] = STATE(186), + [sym_identifier] = ACTIONS(2325), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1450), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_if] = ACTIONS(1766), - [anon_sym_switch] = ACTIONS(83), - [anon_sym_case] = ACTIONS(1760), - [anon_sym_default] = ACTIONS(1762), - [anon_sym_while] = ACTIONS(1768), - [anon_sym_do] = ACTIONS(91), - [anon_sym_for] = ACTIONS(1770), - [anon_sym_return] = ACTIONS(95), - [anon_sym_break] = ACTIONS(97), - [anon_sym_continue] = ACTIONS(99), - [anon_sym_goto] = ACTIONS(101), - [anon_sym___try] = ACTIONS(1772), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(866), + [anon_sym_LBRACK] = ACTIONS(1266), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_if] = ACTIONS(199), + [anon_sym_switch] = ACTIONS(201), + [anon_sym_case] = ACTIONS(203), + [anon_sym_default] = ACTIONS(205), + [anon_sym_while] = ACTIONS(207), + [anon_sym_do] = ACTIONS(209), + [anon_sym_for] = ACTIONS(211), + [anon_sym_return] = ACTIONS(213), + [anon_sym_break] = ACTIONS(215), + [anon_sym_continue] = ACTIONS(217), + [anon_sym_goto] = ACTIONS(219), + [anon_sym___try] = ACTIONS(221), [anon_sym___leave] = ACTIONS(223), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), @@ -73997,12 +74280,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_try] = ACTIONS(143), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_try] = ACTIONS(233), [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(147), - [anon_sym_co_return] = ACTIONS(155), - [anon_sym_co_yield] = ACTIONS(157), + [anon_sym_throw] = ACTIONS(235), + [anon_sym_co_return] = ACTIONS(243), + [anon_sym_co_yield] = ACTIONS(245), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), @@ -74014,202 +74297,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [208] = { - [sym_attribute_declaration] = STATE(216), - [sym_compound_statement] = STATE(545), - [sym_attributed_statement] = STATE(545), - [sym_statement] = STATE(415), - [sym_labeled_statement] = STATE(545), - [sym_expression_statement] = STATE(545), - [sym_if_statement] = STATE(545), - [sym_switch_statement] = STATE(545), - [sym_case_statement] = STATE(545), - [sym_while_statement] = STATE(545), - [sym_do_statement] = STATE(545), - [sym_for_statement] = STATE(545), - [sym_return_statement] = STATE(545), - [sym_break_statement] = STATE(545), - [sym_continue_statement] = STATE(545), - [sym_goto_statement] = STATE(545), - [sym_seh_try_statement] = STATE(545), - [sym_seh_leave_statement] = STATE(545), - [sym_expression] = STATE(4457), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8711), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_for_range_loop] = STATE(545), - [sym_co_return_statement] = STATE(545), - [sym_co_yield_statement] = STATE(545), - [sym_throw_statement] = STATE(545), - [sym_try_statement] = STATE(545), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_attributed_declarator_repeat1] = STATE(216), - [sym_identifier] = ACTIONS(2389), - [anon_sym_LPAREN2] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(2024), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1450), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_if] = ACTIONS(1766), - [anon_sym_switch] = ACTIONS(83), - [anon_sym_case] = ACTIONS(1760), - [anon_sym_default] = ACTIONS(1762), - [anon_sym_while] = ACTIONS(1768), - [anon_sym_do] = ACTIONS(91), - [anon_sym_for] = ACTIONS(1770), - [anon_sym_return] = ACTIONS(95), - [anon_sym_break] = ACTIONS(97), - [anon_sym_continue] = ACTIONS(99), - [anon_sym_goto] = ACTIONS(101), - [anon_sym___try] = ACTIONS(1772), - [anon_sym___leave] = ACTIONS(223), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_try] = ACTIONS(143), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(147), - [anon_sym_co_return] = ACTIONS(155), - [anon_sym_co_yield] = ACTIONS(157), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), - }, - [209] = { - [sym_expression] = STATE(3171), - [sym__string] = STATE(3235), - [sym_conditional_expression] = STATE(3373), - [sym_assignment_expression] = STATE(3373), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3373), - [sym_binary_expression] = STATE(3373), - [sym_update_expression] = STATE(3373), - [sym_cast_expression] = STATE(3373), - [sym_sizeof_expression] = STATE(3373), - [sym_alignof_expression] = STATE(3373), - [sym_offsetof_expression] = STATE(3373), - [sym_generic_expression] = STATE(3373), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3373), - [sym_extension_expression] = STATE(3373), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3373), - [sym_parenthesized_expression] = STATE(3365), - [sym_initializer_list] = STATE(3451), - [sym_char_literal] = STATE(3235), - [sym_concatenated_string] = STATE(3235), - [sym_string_literal] = STATE(2358), - [sym_null] = STATE(3373), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7814), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3373), - [sym_raw_string_literal] = STATE(2358), - [sym_co_await_expression] = STATE(3373), - [sym_new_expression] = STATE(3373), - [sym_delete_expression] = STATE(3373), - [sym_requires_clause] = STATE(3373), - [sym_requires_expression] = STATE(3373), - [sym_lambda_expression] = STATE(3373), - [sym_lambda_capture_specifier] = STATE(5414), - [sym_fold_expression] = STATE(3373), - [sym_parameter_pack_expansion] = STATE(3373), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3365), - [sym_qualified_type_identifier] = STATE(7814), - [sym_user_defined_literal] = STATE(3365), + [sym_expression] = STATE(3251), + [sym__string] = STATE(3393), + [sym_conditional_expression] = STATE(3401), + [sym_assignment_expression] = STATE(3401), + [sym_pointer_expression] = STATE(3405), + [sym_unary_expression] = STATE(3401), + [sym_binary_expression] = STATE(3401), + [sym_update_expression] = STATE(3401), + [sym_cast_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3401), + [sym_alignof_expression] = STATE(3401), + [sym_offsetof_expression] = STATE(3401), + [sym_generic_expression] = STATE(3401), + [sym_subscript_expression] = STATE(3405), + [sym_call_expression] = STATE(3405), + [sym_gnu_asm_expression] = STATE(3401), + [sym_extension_expression] = STATE(3401), + [sym_field_expression] = STATE(3405), + [sym_compound_literal_expression] = STATE(3401), + [sym_parenthesized_expression] = STATE(3405), + [sym_initializer_list] = STATE(3529), + [sym_char_literal] = STATE(3393), + [sym_concatenated_string] = STATE(3393), + [sym_string_literal] = STATE(2380), + [sym_null] = STATE(3401), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7745), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3401), + [sym_raw_string_literal] = STATE(2380), + [sym_co_await_expression] = STATE(3401), + [sym_new_expression] = STATE(3401), + [sym_delete_expression] = STATE(3401), + [sym_requires_clause] = STATE(3401), + [sym_requires_expression] = STATE(3401), + [sym_lambda_expression] = STATE(3401), + [sym_lambda_capture_specifier] = STATE(5494), + [sym_fold_expression] = STATE(3401), + [sym_parameter_pack_expansion] = STATE(3401), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3405), + [sym_qualified_type_identifier] = STATE(7745), + [sym_user_defined_literal] = STATE(3405), [sym_identifier] = ACTIONS(2453), [anon_sym_DOT_DOT_DOT] = ACTIONS(1944), [anon_sym_COMMA] = ACTIONS(1944), [anon_sym_RPAREN] = ACTIONS(1944), [anon_sym_LPAREN2] = ACTIONS(1944), - [anon_sym_BANG] = ACTIONS(1798), - [anon_sym_TILDE] = ACTIONS(1794), + [anon_sym_BANG] = ACTIONS(1796), + [anon_sym_TILDE] = ACTIONS(1792), [anon_sym_DASH] = ACTIONS(1942), [anon_sym_PLUS] = ACTIONS(1942), [anon_sym_STAR] = ACTIONS(1942), @@ -74229,7 +74367,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1942), [anon_sym_GT_GT] = ACTIONS(1942), [anon_sym___extension__] = ACTIONS(2455), - [anon_sym_COLON_COLON] = ACTIONS(1806), + [anon_sym_COLON_COLON] = ACTIONS(1804), [anon_sym_LBRACE] = ACTIONS(2457), [anon_sym_LBRACK] = ACTIONS(1944), [anon_sym_EQ] = ACTIONS(1942), @@ -74248,8 +74386,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and_eq] = ACTIONS(1942), [anon_sym_or_eq] = ACTIONS(1942), [anon_sym_xor_eq] = ACTIONS(1942), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), + [anon_sym_not] = ACTIONS(1796), + [anon_sym_compl] = ACTIONS(1796), [anon_sym_LT_EQ_GT] = ACTIONS(1944), [anon_sym_or] = ACTIONS(1942), [anon_sym_and] = ACTIONS(1942), @@ -74259,292 +74397,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_not_eq] = ACTIONS(1942), [anon_sym_DASH_DASH] = ACTIONS(1944), [anon_sym_PLUS_PLUS] = ACTIONS(1944), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), + [anon_sym_sizeof] = ACTIONS(1824), + [anon_sym___alignof__] = ACTIONS(1826), + [anon_sym___alignof] = ACTIONS(1826), + [anon_sym__alignof] = ACTIONS(1826), + [anon_sym_alignof] = ACTIONS(1826), + [anon_sym__Alignof] = ACTIONS(1826), + [anon_sym_offsetof] = ACTIONS(1828), + [anon_sym__Generic] = ACTIONS(1830), + [anon_sym_asm] = ACTIONS(1832), + [anon_sym___asm__] = ACTIONS(1832), + [anon_sym___asm] = ACTIONS(1832), [anon_sym_DOT] = ACTIONS(1942), [anon_sym_DOT_STAR] = ACTIONS(1944), [anon_sym_DASH_GT] = ACTIONS(1942), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), + [sym_number_literal] = ACTIONS(1834), + [anon_sym_L_SQUOTE] = ACTIONS(1836), + [anon_sym_u_SQUOTE] = ACTIONS(1836), + [anon_sym_U_SQUOTE] = ACTIONS(1836), + [anon_sym_u8_SQUOTE] = ACTIONS(1836), + [anon_sym_SQUOTE] = ACTIONS(1836), + [anon_sym_L_DQUOTE] = ACTIONS(1838), + [anon_sym_u_DQUOTE] = ACTIONS(1838), + [anon_sym_U_DQUOTE] = ACTIONS(1838), + [anon_sym_u8_DQUOTE] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym_true] = ACTIONS(1840), + [sym_false] = ACTIONS(1840), + [anon_sym_NULL] = ACTIONS(1842), + [anon_sym_nullptr] = ACTIONS(1842), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1852), + [anon_sym_R_DQUOTE] = ACTIONS(1854), + [anon_sym_LR_DQUOTE] = ACTIONS(1854), + [anon_sym_uR_DQUOTE] = ACTIONS(1854), + [anon_sym_UR_DQUOTE] = ACTIONS(1854), + [anon_sym_u8R_DQUOTE] = ACTIONS(1854), + [anon_sym_co_await] = ACTIONS(1856), + [anon_sym_new] = ACTIONS(1858), + [anon_sym_requires] = ACTIONS(1860), [anon_sym_DASH_GT_STAR] = ACTIONS(1944), - [sym_this] = ACTIONS(1842), - }, - [210] = { - [sym_attribute_declaration] = STATE(210), - [sym_compound_statement] = STATE(545), - [sym_attributed_statement] = STATE(545), - [sym_statement] = STATE(343), - [sym_labeled_statement] = STATE(545), - [sym_expression_statement] = STATE(545), - [sym_if_statement] = STATE(545), - [sym_switch_statement] = STATE(545), - [sym_case_statement] = STATE(545), - [sym_while_statement] = STATE(545), - [sym_do_statement] = STATE(545), - [sym_for_statement] = STATE(545), - [sym_return_statement] = STATE(545), - [sym_break_statement] = STATE(545), - [sym_continue_statement] = STATE(545), - [sym_goto_statement] = STATE(545), - [sym_seh_try_statement] = STATE(545), - [sym_seh_leave_statement] = STATE(545), - [sym_expression] = STATE(4457), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8711), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_for_range_loop] = STATE(545), - [sym_co_return_statement] = STATE(545), - [sym_co_yield_statement] = STATE(545), - [sym_throw_statement] = STATE(545), - [sym_try_statement] = STATE(545), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_attributed_declarator_repeat1] = STATE(210), - [sym_identifier] = ACTIONS(2461), - [anon_sym_LPAREN2] = ACTIONS(2033), - [anon_sym_BANG] = ACTIONS(2036), - [anon_sym_TILDE] = ACTIONS(2036), - [anon_sym_DASH] = ACTIONS(2039), - [anon_sym_PLUS] = ACTIONS(2039), - [anon_sym_STAR] = ACTIONS(2042), - [anon_sym_AMP] = ACTIONS(2042), - [anon_sym_SEMI] = ACTIONS(2045), - [anon_sym___extension__] = ACTIONS(2048), - [anon_sym_COLON_COLON] = ACTIONS(2053), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2056), - [anon_sym_LBRACE] = ACTIONS(2335), - [anon_sym_LBRACK] = ACTIONS(2062), - [sym_primitive_type] = ACTIONS(2065), - [anon_sym_if] = ACTIONS(2464), - [anon_sym_switch] = ACTIONS(2341), - [anon_sym_case] = ACTIONS(2408), - [anon_sym_default] = ACTIONS(2411), - [anon_sym_while] = ACTIONS(2467), - [anon_sym_do] = ACTIONS(2353), - [anon_sym_for] = ACTIONS(2470), - [anon_sym_return] = ACTIONS(2359), - [anon_sym_break] = ACTIONS(2362), - [anon_sym_continue] = ACTIONS(2365), - [anon_sym_goto] = ACTIONS(2368), - [anon_sym___try] = ACTIONS(2473), - [anon_sym___leave] = ACTIONS(2104), - [anon_sym_not] = ACTIONS(2039), - [anon_sym_compl] = ACTIONS(2039), - [anon_sym_DASH_DASH] = ACTIONS(2107), - [anon_sym_PLUS_PLUS] = ACTIONS(2107), - [anon_sym_sizeof] = ACTIONS(2110), - [anon_sym___alignof__] = ACTIONS(2113), - [anon_sym___alignof] = ACTIONS(2113), - [anon_sym__alignof] = ACTIONS(2113), - [anon_sym_alignof] = ACTIONS(2113), - [anon_sym__Alignof] = ACTIONS(2113), - [anon_sym_offsetof] = ACTIONS(2116), - [anon_sym__Generic] = ACTIONS(2119), - [anon_sym_asm] = ACTIONS(2122), - [anon_sym___asm__] = ACTIONS(2122), - [anon_sym___asm] = ACTIONS(2122), - [sym_number_literal] = ACTIONS(2125), - [anon_sym_L_SQUOTE] = ACTIONS(2128), - [anon_sym_u_SQUOTE] = ACTIONS(2128), - [anon_sym_U_SQUOTE] = ACTIONS(2128), - [anon_sym_u8_SQUOTE] = ACTIONS(2128), - [anon_sym_SQUOTE] = ACTIONS(2128), - [anon_sym_L_DQUOTE] = ACTIONS(2131), - [anon_sym_u_DQUOTE] = ACTIONS(2131), - [anon_sym_U_DQUOTE] = ACTIONS(2131), - [anon_sym_u8_DQUOTE] = ACTIONS(2131), - [anon_sym_DQUOTE] = ACTIONS(2131), - [sym_true] = ACTIONS(2134), - [sym_false] = ACTIONS(2134), - [anon_sym_NULL] = ACTIONS(2137), - [anon_sym_nullptr] = ACTIONS(2137), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2140), - [anon_sym_template] = ACTIONS(2143), - [anon_sym_try] = ACTIONS(2377), - [anon_sym_delete] = ACTIONS(2149), - [anon_sym_throw] = ACTIONS(2380), - [anon_sym_co_return] = ACTIONS(2383), - [anon_sym_co_yield] = ACTIONS(2386), - [anon_sym_R_DQUOTE] = ACTIONS(2161), - [anon_sym_LR_DQUOTE] = ACTIONS(2161), - [anon_sym_uR_DQUOTE] = ACTIONS(2161), - [anon_sym_UR_DQUOTE] = ACTIONS(2161), - [anon_sym_u8R_DQUOTE] = ACTIONS(2161), - [anon_sym_co_await] = ACTIONS(2164), - [anon_sym_new] = ACTIONS(2167), - [anon_sym_requires] = ACTIONS(2170), - [sym_this] = ACTIONS(2134), + [sym_this] = ACTIONS(1840), }, - [211] = { - [sym_attribute_declaration] = STATE(216), - [sym_compound_statement] = STATE(545), - [sym_attributed_statement] = STATE(545), - [sym_statement] = STATE(7335), - [sym_labeled_statement] = STATE(545), - [sym_expression_statement] = STATE(545), - [sym_if_statement] = STATE(545), - [sym_switch_statement] = STATE(545), - [sym_case_statement] = STATE(545), - [sym_while_statement] = STATE(545), - [sym_do_statement] = STATE(545), - [sym_for_statement] = STATE(545), - [sym_return_statement] = STATE(545), - [sym_break_statement] = STATE(545), - [sym_continue_statement] = STATE(545), - [sym_goto_statement] = STATE(545), - [sym_seh_try_statement] = STATE(545), - [sym_seh_leave_statement] = STATE(545), - [sym_expression] = STATE(4457), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8711), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_for_range_loop] = STATE(545), - [sym_co_return_statement] = STATE(545), - [sym_co_yield_statement] = STATE(545), - [sym_throw_statement] = STATE(545), - [sym_try_statement] = STATE(545), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_attributed_declarator_repeat1] = STATE(216), - [sym_identifier] = ACTIONS(2389), - [anon_sym_LPAREN2] = ACTIONS(1436), + [209] = { + [sym_attribute_declaration] = STATE(205), + [sym_compound_statement] = STATE(260), + [sym_attributed_statement] = STATE(260), + [sym_statement] = STATE(245), + [sym_labeled_statement] = STATE(260), + [sym_expression_statement] = STATE(260), + [sym_if_statement] = STATE(260), + [sym_switch_statement] = STATE(260), + [sym_case_statement] = STATE(260), + [sym_while_statement] = STATE(260), + [sym_do_statement] = STATE(260), + [sym_for_statement] = STATE(260), + [sym_return_statement] = STATE(260), + [sym_break_statement] = STATE(260), + [sym_continue_statement] = STATE(260), + [sym_goto_statement] = STATE(260), + [sym_seh_try_statement] = STATE(260), + [sym_seh_leave_statement] = STATE(260), + [sym_expression] = STATE(4517), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8280), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_for_range_loop] = STATE(260), + [sym_co_return_statement] = STATE(260), + [sym_co_yield_statement] = STATE(260), + [sym_throw_statement] = STATE(260), + [sym_try_statement] = STATE(260), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_attributed_declarator_repeat1] = STATE(205), + [sym_identifier] = ACTIONS(2233), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(287), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1450), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_if] = ACTIONS(1766), - [anon_sym_switch] = ACTIONS(83), - [anon_sym_case] = ACTIONS(1760), - [anon_sym_default] = ACTIONS(1762), - [anon_sym_while] = ACTIONS(1768), - [anon_sym_do] = ACTIONS(91), - [anon_sym_for] = ACTIONS(1770), - [anon_sym_return] = ACTIONS(95), - [anon_sym_break] = ACTIONS(97), - [anon_sym_continue] = ACTIONS(99), - [anon_sym_goto] = ACTIONS(101), - [anon_sym___try] = ACTIONS(1772), - [anon_sym___leave] = ACTIONS(223), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(297), + [anon_sym_LBRACK] = ACTIONS(1266), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_if] = ACTIONS(301), + [anon_sym_switch] = ACTIONS(303), + [anon_sym_case] = ACTIONS(305), + [anon_sym_default] = ACTIONS(307), + [anon_sym_while] = ACTIONS(309), + [anon_sym_do] = ACTIONS(311), + [anon_sym_for] = ACTIONS(313), + [anon_sym_return] = ACTIONS(315), + [anon_sym_break] = ACTIONS(317), + [anon_sym_continue] = ACTIONS(319), + [anon_sym_goto] = ACTIONS(321), + [anon_sym___try] = ACTIONS(323), + [anon_sym___leave] = ACTIONS(325), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -74577,12 +74570,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_try] = ACTIONS(143), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_try] = ACTIONS(329), [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(147), - [anon_sym_co_return] = ACTIONS(155), - [anon_sym_co_yield] = ACTIONS(157), + [anon_sym_throw] = ACTIONS(331), + [anon_sym_co_return] = ACTIONS(339), + [anon_sym_co_yield] = ACTIONS(341), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), @@ -74593,103 +74586,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [212] = { - [sym_attribute_declaration] = STATE(216), - [sym_compound_statement] = STATE(545), - [sym_attributed_statement] = STATE(545), - [sym_statement] = STATE(381), - [sym_labeled_statement] = STATE(545), - [sym_expression_statement] = STATE(545), - [sym_if_statement] = STATE(545), - [sym_switch_statement] = STATE(545), - [sym_case_statement] = STATE(545), - [sym_while_statement] = STATE(545), - [sym_do_statement] = STATE(545), - [sym_for_statement] = STATE(545), - [sym_return_statement] = STATE(545), - [sym_break_statement] = STATE(545), - [sym_continue_statement] = STATE(545), - [sym_goto_statement] = STATE(545), - [sym_seh_try_statement] = STATE(545), - [sym_seh_leave_statement] = STATE(545), - [sym_expression] = STATE(4457), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8711), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_for_range_loop] = STATE(545), - [sym_co_return_statement] = STATE(545), - [sym_co_yield_statement] = STATE(545), - [sym_throw_statement] = STATE(545), - [sym_try_statement] = STATE(545), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_attributed_declarator_repeat1] = STATE(216), - [sym_identifier] = ACTIONS(2389), - [anon_sym_LPAREN2] = ACTIONS(1436), + [210] = { + [sym_attribute_declaration] = STATE(205), + [sym_compound_statement] = STATE(260), + [sym_attributed_statement] = STATE(260), + [sym_statement] = STATE(247), + [sym_labeled_statement] = STATE(260), + [sym_expression_statement] = STATE(260), + [sym_if_statement] = STATE(260), + [sym_switch_statement] = STATE(260), + [sym_case_statement] = STATE(260), + [sym_while_statement] = STATE(260), + [sym_do_statement] = STATE(260), + [sym_for_statement] = STATE(260), + [sym_return_statement] = STATE(260), + [sym_break_statement] = STATE(260), + [sym_continue_statement] = STATE(260), + [sym_goto_statement] = STATE(260), + [sym_seh_try_statement] = STATE(260), + [sym_seh_leave_statement] = STATE(260), + [sym_expression] = STATE(4517), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8280), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_for_range_loop] = STATE(260), + [sym_co_return_statement] = STATE(260), + [sym_co_yield_statement] = STATE(260), + [sym_throw_statement] = STATE(260), + [sym_try_statement] = STATE(260), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_attributed_declarator_repeat1] = STATE(205), + [sym_identifier] = ACTIONS(2233), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(287), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1450), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_if] = ACTIONS(1766), - [anon_sym_switch] = ACTIONS(83), - [anon_sym_case] = ACTIONS(1760), - [anon_sym_default] = ACTIONS(1762), - [anon_sym_while] = ACTIONS(1768), - [anon_sym_do] = ACTIONS(91), - [anon_sym_for] = ACTIONS(1770), - [anon_sym_return] = ACTIONS(95), - [anon_sym_break] = ACTIONS(97), - [anon_sym_continue] = ACTIONS(99), - [anon_sym_goto] = ACTIONS(101), - [anon_sym___try] = ACTIONS(1772), - [anon_sym___leave] = ACTIONS(223), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(297), + [anon_sym_LBRACK] = ACTIONS(1266), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_if] = ACTIONS(301), + [anon_sym_switch] = ACTIONS(303), + [anon_sym_case] = ACTIONS(305), + [anon_sym_default] = ACTIONS(307), + [anon_sym_while] = ACTIONS(309), + [anon_sym_do] = ACTIONS(311), + [anon_sym_for] = ACTIONS(313), + [anon_sym_return] = ACTIONS(315), + [anon_sym_break] = ACTIONS(317), + [anon_sym_continue] = ACTIONS(319), + [anon_sym_goto] = ACTIONS(321), + [anon_sym___try] = ACTIONS(323), + [anon_sym___leave] = ACTIONS(325), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -74722,12 +74715,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_try] = ACTIONS(143), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_try] = ACTIONS(329), [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(147), - [anon_sym_co_return] = ACTIONS(155), - [anon_sym_co_yield] = ACTIONS(157), + [anon_sym_throw] = ACTIONS(331), + [anon_sym_co_return] = ACTIONS(339), + [anon_sym_co_yield] = ACTIONS(341), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), @@ -74738,103 +74731,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [213] = { - [sym_attribute_declaration] = STATE(216), - [sym_compound_statement] = STATE(545), - [sym_attributed_statement] = STATE(545), - [sym_statement] = STATE(383), - [sym_labeled_statement] = STATE(545), - [sym_expression_statement] = STATE(545), - [sym_if_statement] = STATE(545), - [sym_switch_statement] = STATE(545), - [sym_case_statement] = STATE(545), - [sym_while_statement] = STATE(545), - [sym_do_statement] = STATE(545), - [sym_for_statement] = STATE(545), - [sym_return_statement] = STATE(545), - [sym_break_statement] = STATE(545), - [sym_continue_statement] = STATE(545), - [sym_goto_statement] = STATE(545), - [sym_seh_try_statement] = STATE(545), - [sym_seh_leave_statement] = STATE(545), - [sym_expression] = STATE(4457), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8711), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_for_range_loop] = STATE(545), - [sym_co_return_statement] = STATE(545), - [sym_co_yield_statement] = STATE(545), - [sym_throw_statement] = STATE(545), - [sym_try_statement] = STATE(545), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_attributed_declarator_repeat1] = STATE(216), - [sym_identifier] = ACTIONS(2389), - [anon_sym_LPAREN2] = ACTIONS(1436), + [211] = { + [sym_attribute_declaration] = STATE(205), + [sym_compound_statement] = STATE(260), + [sym_attributed_statement] = STATE(260), + [sym_statement] = STATE(248), + [sym_labeled_statement] = STATE(260), + [sym_expression_statement] = STATE(260), + [sym_if_statement] = STATE(260), + [sym_switch_statement] = STATE(260), + [sym_case_statement] = STATE(260), + [sym_while_statement] = STATE(260), + [sym_do_statement] = STATE(260), + [sym_for_statement] = STATE(260), + [sym_return_statement] = STATE(260), + [sym_break_statement] = STATE(260), + [sym_continue_statement] = STATE(260), + [sym_goto_statement] = STATE(260), + [sym_seh_try_statement] = STATE(260), + [sym_seh_leave_statement] = STATE(260), + [sym_expression] = STATE(4517), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8280), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_for_range_loop] = STATE(260), + [sym_co_return_statement] = STATE(260), + [sym_co_yield_statement] = STATE(260), + [sym_throw_statement] = STATE(260), + [sym_try_statement] = STATE(260), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_attributed_declarator_repeat1] = STATE(205), + [sym_identifier] = ACTIONS(2233), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(287), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1450), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_if] = ACTIONS(1766), - [anon_sym_switch] = ACTIONS(83), - [anon_sym_case] = ACTIONS(1760), - [anon_sym_default] = ACTIONS(1762), - [anon_sym_while] = ACTIONS(1768), - [anon_sym_do] = ACTIONS(91), - [anon_sym_for] = ACTIONS(1770), - [anon_sym_return] = ACTIONS(95), - [anon_sym_break] = ACTIONS(97), - [anon_sym_continue] = ACTIONS(99), - [anon_sym_goto] = ACTIONS(101), - [anon_sym___try] = ACTIONS(1772), - [anon_sym___leave] = ACTIONS(223), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(297), + [anon_sym_LBRACK] = ACTIONS(1266), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_if] = ACTIONS(301), + [anon_sym_switch] = ACTIONS(303), + [anon_sym_case] = ACTIONS(305), + [anon_sym_default] = ACTIONS(307), + [anon_sym_while] = ACTIONS(309), + [anon_sym_do] = ACTIONS(311), + [anon_sym_for] = ACTIONS(313), + [anon_sym_return] = ACTIONS(315), + [anon_sym_break] = ACTIONS(317), + [anon_sym_continue] = ACTIONS(319), + [anon_sym_goto] = ACTIONS(321), + [anon_sym___try] = ACTIONS(323), + [anon_sym___leave] = ACTIONS(325), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -74867,12 +74860,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_try] = ACTIONS(143), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_try] = ACTIONS(329), [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(147), - [anon_sym_co_return] = ACTIONS(155), - [anon_sym_co_yield] = ACTIONS(157), + [anon_sym_throw] = ACTIONS(331), + [anon_sym_co_return] = ACTIONS(339), + [anon_sym_co_yield] = ACTIONS(341), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), @@ -74883,102 +74876,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [214] = { - [sym_attribute_declaration] = STATE(216), - [sym_compound_statement] = STATE(545), - [sym_attributed_statement] = STATE(545), - [sym_statement] = STATE(384), - [sym_labeled_statement] = STATE(545), - [sym_expression_statement] = STATE(545), - [sym_if_statement] = STATE(545), - [sym_switch_statement] = STATE(545), - [sym_case_statement] = STATE(545), - [sym_while_statement] = STATE(545), - [sym_do_statement] = STATE(545), - [sym_for_statement] = STATE(545), - [sym_return_statement] = STATE(545), - [sym_break_statement] = STATE(545), - [sym_continue_statement] = STATE(545), - [sym_goto_statement] = STATE(545), - [sym_seh_try_statement] = STATE(545), - [sym_seh_leave_statement] = STATE(545), - [sym_expression] = STATE(4457), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8711), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_for_range_loop] = STATE(545), - [sym_co_return_statement] = STATE(545), - [sym_co_yield_statement] = STATE(545), - [sym_throw_statement] = STATE(545), - [sym_try_statement] = STATE(545), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_attributed_declarator_repeat1] = STATE(216), - [sym_identifier] = ACTIONS(2389), - [anon_sym_LPAREN2] = ACTIONS(1436), + [212] = { + [sym_attribute_declaration] = STATE(189), + [sym_compound_statement] = STATE(560), + [sym_attributed_statement] = STATE(560), + [sym_statement] = STATE(7270), + [sym_labeled_statement] = STATE(560), + [sym_expression_statement] = STATE(560), + [sym_if_statement] = STATE(560), + [sym_switch_statement] = STATE(560), + [sym_case_statement] = STATE(560), + [sym_while_statement] = STATE(560), + [sym_do_statement] = STATE(560), + [sym_for_statement] = STATE(560), + [sym_return_statement] = STATE(560), + [sym_break_statement] = STATE(560), + [sym_continue_statement] = STATE(560), + [sym_goto_statement] = STATE(560), + [sym_seh_try_statement] = STATE(560), + [sym_seh_leave_statement] = STATE(560), + [sym_expression] = STATE(4554), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8083), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_for_range_loop] = STATE(560), + [sym_co_return_statement] = STATE(560), + [sym_co_yield_statement] = STATE(560), + [sym_throw_statement] = STATE(560), + [sym_try_statement] = STATE(560), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_attributed_declarator_repeat1] = STATE(189), + [sym_identifier] = ACTIONS(2391), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1450), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_if] = ACTIONS(1766), + [anon_sym_LBRACK] = ACTIONS(1266), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_if] = ACTIONS(1702), [anon_sym_switch] = ACTIONS(83), - [anon_sym_case] = ACTIONS(1760), - [anon_sym_default] = ACTIONS(1762), - [anon_sym_while] = ACTIONS(1768), + [anon_sym_case] = ACTIONS(1704), + [anon_sym_default] = ACTIONS(1706), + [anon_sym_while] = ACTIONS(1708), [anon_sym_do] = ACTIONS(91), - [anon_sym_for] = ACTIONS(1770), + [anon_sym_for] = ACTIONS(1710), [anon_sym_return] = ACTIONS(95), [anon_sym_break] = ACTIONS(97), [anon_sym_continue] = ACTIONS(99), [anon_sym_goto] = ACTIONS(101), - [anon_sym___try] = ACTIONS(1772), + [anon_sym___try] = ACTIONS(1712), [anon_sym___leave] = ACTIONS(223), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), @@ -75012,7 +75005,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_try] = ACTIONS(143), [anon_sym_delete] = ACTIONS(145), [anon_sym_throw] = ACTIONS(147), @@ -75028,102 +75021,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [215] = { - [sym_attribute_declaration] = STATE(219), - [sym_compound_statement] = STATE(545), - [sym_attributed_statement] = STATE(545), - [sym_statement] = STATE(458), - [sym_labeled_statement] = STATE(545), - [sym_expression_statement] = STATE(545), - [sym_if_statement] = STATE(545), - [sym_switch_statement] = STATE(545), - [sym_case_statement] = STATE(545), - [sym_while_statement] = STATE(545), - [sym_do_statement] = STATE(545), - [sym_for_statement] = STATE(545), - [sym_return_statement] = STATE(545), - [sym_break_statement] = STATE(545), - [sym_continue_statement] = STATE(545), - [sym_goto_statement] = STATE(545), - [sym_seh_try_statement] = STATE(545), - [sym_seh_leave_statement] = STATE(545), - [sym_expression] = STATE(4457), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8711), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_for_range_loop] = STATE(545), - [sym_co_return_statement] = STATE(545), - [sym_co_yield_statement] = STATE(545), - [sym_throw_statement] = STATE(545), - [sym_try_statement] = STATE(545), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_attributed_declarator_repeat1] = STATE(219), - [sym_identifier] = ACTIONS(2022), - [anon_sym_LPAREN2] = ACTIONS(1436), + [213] = { + [sym_attribute_declaration] = STATE(189), + [sym_compound_statement] = STATE(560), + [sym_attributed_statement] = STATE(560), + [sym_statement] = STATE(424), + [sym_labeled_statement] = STATE(560), + [sym_expression_statement] = STATE(560), + [sym_if_statement] = STATE(560), + [sym_switch_statement] = STATE(560), + [sym_case_statement] = STATE(560), + [sym_while_statement] = STATE(560), + [sym_do_statement] = STATE(560), + [sym_for_statement] = STATE(560), + [sym_return_statement] = STATE(560), + [sym_break_statement] = STATE(560), + [sym_continue_statement] = STATE(560), + [sym_goto_statement] = STATE(560), + [sym_seh_try_statement] = STATE(560), + [sym_seh_leave_statement] = STATE(560), + [sym_expression] = STATE(4554), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8083), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_for_range_loop] = STATE(560), + [sym_co_return_statement] = STATE(560), + [sym_co_yield_statement] = STATE(560), + [sym_throw_statement] = STATE(560), + [sym_try_statement] = STATE(560), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_attributed_declarator_repeat1] = STATE(189), + [sym_identifier] = ACTIONS(2391), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), - [anon_sym_LBRACE] = ACTIONS(866), - [anon_sym_LBRACK] = ACTIONS(1450), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_if] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), - [anon_sym_case] = ACTIONS(203), - [anon_sym_default] = ACTIONS(205), - [anon_sym_while] = ACTIONS(207), - [anon_sym_do] = ACTIONS(209), - [anon_sym_for] = ACTIONS(211), - [anon_sym_return] = ACTIONS(213), - [anon_sym_break] = ACTIONS(215), - [anon_sym_continue] = ACTIONS(217), - [anon_sym_goto] = ACTIONS(219), - [anon_sym___try] = ACTIONS(221), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(1266), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_switch] = ACTIONS(83), + [anon_sym_case] = ACTIONS(1704), + [anon_sym_default] = ACTIONS(1706), + [anon_sym_while] = ACTIONS(1708), + [anon_sym_do] = ACTIONS(91), + [anon_sym_for] = ACTIONS(1710), + [anon_sym_return] = ACTIONS(95), + [anon_sym_break] = ACTIONS(97), + [anon_sym_continue] = ACTIONS(99), + [anon_sym_goto] = ACTIONS(101), + [anon_sym___try] = ACTIONS(1712), [anon_sym___leave] = ACTIONS(223), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), @@ -75157,12 +75150,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_try] = ACTIONS(233), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_try] = ACTIONS(143), [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(235), - [anon_sym_co_return] = ACTIONS(243), - [anon_sym_co_yield] = ACTIONS(245), + [anon_sym_throw] = ACTIONS(147), + [anon_sym_co_return] = ACTIONS(155), + [anon_sym_co_yield] = ACTIONS(157), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), @@ -75173,103 +75166,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [216] = { - [sym_attribute_declaration] = STATE(210), - [sym_compound_statement] = STATE(545), - [sym_attributed_statement] = STATE(545), - [sym_statement] = STATE(343), - [sym_labeled_statement] = STATE(545), - [sym_expression_statement] = STATE(545), - [sym_if_statement] = STATE(545), - [sym_switch_statement] = STATE(545), - [sym_case_statement] = STATE(545), - [sym_while_statement] = STATE(545), - [sym_do_statement] = STATE(545), - [sym_for_statement] = STATE(545), - [sym_return_statement] = STATE(545), - [sym_break_statement] = STATE(545), - [sym_continue_statement] = STATE(545), - [sym_goto_statement] = STATE(545), - [sym_seh_try_statement] = STATE(545), - [sym_seh_leave_statement] = STATE(545), - [sym_expression] = STATE(4457), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8711), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_for_range_loop] = STATE(545), - [sym_co_return_statement] = STATE(545), - [sym_co_yield_statement] = STATE(545), - [sym_throw_statement] = STATE(545), - [sym_try_statement] = STATE(545), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_attributed_declarator_repeat1] = STATE(210), - [sym_identifier] = ACTIONS(2389), - [anon_sym_LPAREN2] = ACTIONS(1436), + [214] = { + [sym_attribute_declaration] = STATE(198), + [sym_compound_statement] = STATE(409), + [sym_attributed_statement] = STATE(409), + [sym_statement] = STATE(424), + [sym_labeled_statement] = STATE(409), + [sym_expression_statement] = STATE(409), + [sym_if_statement] = STATE(409), + [sym_switch_statement] = STATE(409), + [sym_case_statement] = STATE(409), + [sym_while_statement] = STATE(409), + [sym_do_statement] = STATE(409), + [sym_for_statement] = STATE(409), + [sym_return_statement] = STATE(409), + [sym_break_statement] = STATE(409), + [sym_continue_statement] = STATE(409), + [sym_goto_statement] = STATE(409), + [sym_seh_try_statement] = STATE(409), + [sym_seh_leave_statement] = STATE(409), + [sym_expression] = STATE(4499), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8264), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_for_range_loop] = STATE(409), + [sym_co_return_statement] = STATE(409), + [sym_co_yield_statement] = STATE(409), + [sym_throw_statement] = STATE(409), + [sym_try_statement] = STATE(409), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_attributed_declarator_repeat1] = STATE(198), + [sym_identifier] = ACTIONS(2165), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(1212), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1450), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_if] = ACTIONS(1766), + [anon_sym_LBRACK] = ACTIONS(1266), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_if] = ACTIONS(81), [anon_sym_switch] = ACTIONS(83), - [anon_sym_case] = ACTIONS(1760), - [anon_sym_default] = ACTIONS(1762), - [anon_sym_while] = ACTIONS(1768), + [anon_sym_case] = ACTIONS(85), + [anon_sym_default] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), [anon_sym_do] = ACTIONS(91), - [anon_sym_for] = ACTIONS(1770), + [anon_sym_for] = ACTIONS(93), [anon_sym_return] = ACTIONS(95), [anon_sym_break] = ACTIONS(97), [anon_sym_continue] = ACTIONS(99), [anon_sym_goto] = ACTIONS(101), - [anon_sym___try] = ACTIONS(1772), - [anon_sym___leave] = ACTIONS(223), + [anon_sym___try] = ACTIONS(1216), + [anon_sym___leave] = ACTIONS(1218), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -75302,7 +75295,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_try] = ACTIONS(143), [anon_sym_delete] = ACTIONS(145), [anon_sym_throw] = ACTIONS(147), @@ -75318,102 +75311,392 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [217] = { + [215] = { + [sym_attribute_declaration] = STATE(189), + [sym_compound_statement] = STATE(560), + [sym_attributed_statement] = STATE(560), + [sym_statement] = STATE(8464), + [sym_labeled_statement] = STATE(560), + [sym_expression_statement] = STATE(560), + [sym_if_statement] = STATE(560), + [sym_switch_statement] = STATE(560), + [sym_case_statement] = STATE(560), + [sym_while_statement] = STATE(560), + [sym_do_statement] = STATE(560), + [sym_for_statement] = STATE(560), + [sym_return_statement] = STATE(560), + [sym_break_statement] = STATE(560), + [sym_continue_statement] = STATE(560), + [sym_goto_statement] = STATE(560), + [sym_seh_try_statement] = STATE(560), + [sym_seh_leave_statement] = STATE(560), + [sym_expression] = STATE(4554), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8083), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_for_range_loop] = STATE(560), + [sym_co_return_statement] = STATE(560), + [sym_co_yield_statement] = STATE(560), + [sym_throw_statement] = STATE(560), + [sym_try_statement] = STATE(560), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_attributed_declarator_repeat1] = STATE(189), + [sym_identifier] = ACTIONS(2391), + [anon_sym_LPAREN2] = ACTIONS(1252), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(181), + [anon_sym___extension__] = ACTIONS(2167), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(1266), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_switch] = ACTIONS(83), + [anon_sym_case] = ACTIONS(1704), + [anon_sym_default] = ACTIONS(1706), + [anon_sym_while] = ACTIONS(1708), + [anon_sym_do] = ACTIONS(91), + [anon_sym_for] = ACTIONS(1710), + [anon_sym_return] = ACTIONS(95), + [anon_sym_break] = ACTIONS(97), + [anon_sym_continue] = ACTIONS(99), + [anon_sym_goto] = ACTIONS(101), + [anon_sym___try] = ACTIONS(1712), + [anon_sym___leave] = ACTIONS(223), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [anon_sym___alignof__] = ACTIONS(107), + [anon_sym___alignof] = ACTIONS(107), + [anon_sym__alignof] = ACTIONS(107), + [anon_sym_alignof] = ACTIONS(107), + [anon_sym__Alignof] = ACTIONS(107), + [anon_sym_offsetof] = ACTIONS(109), + [anon_sym__Generic] = ACTIONS(111), + [anon_sym_asm] = ACTIONS(113), + [anon_sym___asm__] = ACTIONS(113), + [anon_sym___asm] = ACTIONS(113), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(117), + [anon_sym_u_SQUOTE] = ACTIONS(117), + [anon_sym_U_SQUOTE] = ACTIONS(117), + [anon_sym_u8_SQUOTE] = ACTIONS(117), + [anon_sym_SQUOTE] = ACTIONS(117), + [anon_sym_L_DQUOTE] = ACTIONS(119), + [anon_sym_u_DQUOTE] = ACTIONS(119), + [anon_sym_U_DQUOTE] = ACTIONS(119), + [anon_sym_u8_DQUOTE] = ACTIONS(119), + [anon_sym_DQUOTE] = ACTIONS(119), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(123), + [anon_sym_nullptr] = ACTIONS(123), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_try] = ACTIONS(143), + [anon_sym_delete] = ACTIONS(145), + [anon_sym_throw] = ACTIONS(147), + [anon_sym_co_return] = ACTIONS(155), + [anon_sym_co_yield] = ACTIONS(157), + [anon_sym_R_DQUOTE] = ACTIONS(159), + [anon_sym_LR_DQUOTE] = ACTIONS(159), + [anon_sym_uR_DQUOTE] = ACTIONS(159), + [anon_sym_UR_DQUOTE] = ACTIONS(159), + [anon_sym_u8R_DQUOTE] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), + }, + [216] = { [sym_attribute_declaration] = STATE(216), - [sym_compound_statement] = STATE(545), - [sym_attributed_statement] = STATE(545), - [sym_statement] = STATE(8331), - [sym_labeled_statement] = STATE(545), - [sym_expression_statement] = STATE(545), - [sym_if_statement] = STATE(545), - [sym_switch_statement] = STATE(545), - [sym_case_statement] = STATE(545), - [sym_while_statement] = STATE(545), - [sym_do_statement] = STATE(545), - [sym_for_statement] = STATE(545), - [sym_return_statement] = STATE(545), - [sym_break_statement] = STATE(545), - [sym_continue_statement] = STATE(545), - [sym_goto_statement] = STATE(545), - [sym_seh_try_statement] = STATE(545), - [sym_seh_leave_statement] = STATE(545), - [sym_expression] = STATE(4457), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8711), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_for_range_loop] = STATE(545), - [sym_co_return_statement] = STATE(545), - [sym_co_yield_statement] = STATE(545), - [sym_throw_statement] = STATE(545), - [sym_try_statement] = STATE(545), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), + [sym_compound_statement] = STATE(560), + [sym_attributed_statement] = STATE(560), + [sym_statement] = STATE(348), + [sym_labeled_statement] = STATE(560), + [sym_expression_statement] = STATE(560), + [sym_if_statement] = STATE(560), + [sym_switch_statement] = STATE(560), + [sym_case_statement] = STATE(560), + [sym_while_statement] = STATE(560), + [sym_do_statement] = STATE(560), + [sym_for_statement] = STATE(560), + [sym_return_statement] = STATE(560), + [sym_break_statement] = STATE(560), + [sym_continue_statement] = STATE(560), + [sym_goto_statement] = STATE(560), + [sym_seh_try_statement] = STATE(560), + [sym_seh_leave_statement] = STATE(560), + [sym_expression] = STATE(4554), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8083), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_for_range_loop] = STATE(560), + [sym_co_return_statement] = STATE(560), + [sym_co_yield_statement] = STATE(560), + [sym_throw_statement] = STATE(560), + [sym_try_statement] = STATE(560), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), [aux_sym_attributed_declarator_repeat1] = STATE(216), - [sym_identifier] = ACTIONS(2389), - [anon_sym_LPAREN2] = ACTIONS(1436), + [sym_identifier] = ACTIONS(2461), + [anon_sym_LPAREN2] = ACTIONS(2025), + [anon_sym_BANG] = ACTIONS(2028), + [anon_sym_TILDE] = ACTIONS(2028), + [anon_sym_DASH] = ACTIONS(2031), + [anon_sym_PLUS] = ACTIONS(2031), + [anon_sym_STAR] = ACTIONS(2034), + [anon_sym_AMP] = ACTIONS(2034), + [anon_sym_SEMI] = ACTIONS(2037), + [anon_sym___extension__] = ACTIONS(2040), + [anon_sym_COLON_COLON] = ACTIONS(2045), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2048), + [anon_sym_LBRACE] = ACTIONS(2335), + [anon_sym_LBRACK] = ACTIONS(2054), + [sym_primitive_type] = ACTIONS(2057), + [anon_sym_if] = ACTIONS(2464), + [anon_sym_switch] = ACTIONS(2341), + [anon_sym_case] = ACTIONS(2408), + [anon_sym_default] = ACTIONS(2411), + [anon_sym_while] = ACTIONS(2467), + [anon_sym_do] = ACTIONS(2353), + [anon_sym_for] = ACTIONS(2470), + [anon_sym_return] = ACTIONS(2359), + [anon_sym_break] = ACTIONS(2362), + [anon_sym_continue] = ACTIONS(2365), + [anon_sym_goto] = ACTIONS(2368), + [anon_sym___try] = ACTIONS(2473), + [anon_sym___leave] = ACTIONS(2096), + [anon_sym_not] = ACTIONS(2031), + [anon_sym_compl] = ACTIONS(2031), + [anon_sym_DASH_DASH] = ACTIONS(2099), + [anon_sym_PLUS_PLUS] = ACTIONS(2099), + [anon_sym_sizeof] = ACTIONS(2102), + [anon_sym___alignof__] = ACTIONS(2105), + [anon_sym___alignof] = ACTIONS(2105), + [anon_sym__alignof] = ACTIONS(2105), + [anon_sym_alignof] = ACTIONS(2105), + [anon_sym__Alignof] = ACTIONS(2105), + [anon_sym_offsetof] = ACTIONS(2108), + [anon_sym__Generic] = ACTIONS(2111), + [anon_sym_asm] = ACTIONS(2114), + [anon_sym___asm__] = ACTIONS(2114), + [anon_sym___asm] = ACTIONS(2114), + [sym_number_literal] = ACTIONS(2117), + [anon_sym_L_SQUOTE] = ACTIONS(2120), + [anon_sym_u_SQUOTE] = ACTIONS(2120), + [anon_sym_U_SQUOTE] = ACTIONS(2120), + [anon_sym_u8_SQUOTE] = ACTIONS(2120), + [anon_sym_SQUOTE] = ACTIONS(2120), + [anon_sym_L_DQUOTE] = ACTIONS(2123), + [anon_sym_u_DQUOTE] = ACTIONS(2123), + [anon_sym_U_DQUOTE] = ACTIONS(2123), + [anon_sym_u8_DQUOTE] = ACTIONS(2123), + [anon_sym_DQUOTE] = ACTIONS(2123), + [sym_true] = ACTIONS(2126), + [sym_false] = ACTIONS(2126), + [anon_sym_NULL] = ACTIONS(2129), + [anon_sym_nullptr] = ACTIONS(2129), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2132), + [anon_sym_template] = ACTIONS(2135), + [anon_sym_try] = ACTIONS(2377), + [anon_sym_delete] = ACTIONS(2141), + [anon_sym_throw] = ACTIONS(2380), + [anon_sym_co_return] = ACTIONS(2383), + [anon_sym_co_yield] = ACTIONS(2386), + [anon_sym_R_DQUOTE] = ACTIONS(2153), + [anon_sym_LR_DQUOTE] = ACTIONS(2153), + [anon_sym_uR_DQUOTE] = ACTIONS(2153), + [anon_sym_UR_DQUOTE] = ACTIONS(2153), + [anon_sym_u8R_DQUOTE] = ACTIONS(2153), + [anon_sym_co_await] = ACTIONS(2156), + [anon_sym_new] = ACTIONS(2159), + [anon_sym_requires] = ACTIONS(2162), + [sym_this] = ACTIONS(2126), + }, + [217] = { + [sym_attribute_declaration] = STATE(189), + [sym_compound_statement] = STATE(560), + [sym_attributed_statement] = STATE(560), + [sym_statement] = STATE(7357), + [sym_labeled_statement] = STATE(560), + [sym_expression_statement] = STATE(560), + [sym_if_statement] = STATE(560), + [sym_switch_statement] = STATE(560), + [sym_case_statement] = STATE(560), + [sym_while_statement] = STATE(560), + [sym_do_statement] = STATE(560), + [sym_for_statement] = STATE(560), + [sym_return_statement] = STATE(560), + [sym_break_statement] = STATE(560), + [sym_continue_statement] = STATE(560), + [sym_goto_statement] = STATE(560), + [sym_seh_try_statement] = STATE(560), + [sym_seh_leave_statement] = STATE(560), + [sym_expression] = STATE(4554), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8083), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_for_range_loop] = STATE(560), + [sym_co_return_statement] = STATE(560), + [sym_co_yield_statement] = STATE(560), + [sym_throw_statement] = STATE(560), + [sym_try_statement] = STATE(560), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_attributed_declarator_repeat1] = STATE(189), + [sym_identifier] = ACTIONS(2391), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1450), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_if] = ACTIONS(1766), + [anon_sym_LBRACK] = ACTIONS(1266), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_if] = ACTIONS(1702), [anon_sym_switch] = ACTIONS(83), - [anon_sym_case] = ACTIONS(1760), - [anon_sym_default] = ACTIONS(1762), - [anon_sym_while] = ACTIONS(1768), + [anon_sym_case] = ACTIONS(1704), + [anon_sym_default] = ACTIONS(1706), + [anon_sym_while] = ACTIONS(1708), [anon_sym_do] = ACTIONS(91), - [anon_sym_for] = ACTIONS(1770), + [anon_sym_for] = ACTIONS(1710), [anon_sym_return] = ACTIONS(95), [anon_sym_break] = ACTIONS(97), [anon_sym_continue] = ACTIONS(99), [anon_sym_goto] = ACTIONS(101), - [anon_sym___try] = ACTIONS(1772), + [anon_sym___try] = ACTIONS(1712), [anon_sym___leave] = ACTIONS(223), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), @@ -75447,7 +75730,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_try] = ACTIONS(143), [anon_sym_delete] = ACTIONS(145), [anon_sym_throw] = ACTIONS(147), @@ -75464,102 +75747,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [218] = { - [sym_attribute_declaration] = STATE(150), - [sym_compound_statement] = STATE(529), - [sym_attributed_statement] = STATE(529), - [sym_statement] = STATE(542), - [sym_labeled_statement] = STATE(529), - [sym_expression_statement] = STATE(529), - [sym_if_statement] = STATE(529), - [sym_switch_statement] = STATE(529), - [sym_case_statement] = STATE(529), - [sym_while_statement] = STATE(529), - [sym_do_statement] = STATE(529), - [sym_for_statement] = STATE(529), - [sym_return_statement] = STATE(529), - [sym_break_statement] = STATE(529), - [sym_continue_statement] = STATE(529), - [sym_goto_statement] = STATE(529), - [sym_seh_try_statement] = STATE(529), - [sym_seh_leave_statement] = STATE(529), - [sym_expression] = STATE(4500), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8311), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_for_range_loop] = STATE(529), - [sym_co_return_statement] = STATE(529), - [sym_co_yield_statement] = STATE(529), - [sym_throw_statement] = STATE(529), - [sym_try_statement] = STATE(529), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_attributed_declarator_repeat1] = STATE(150), - [sym_identifier] = ACTIONS(2301), - [anon_sym_LPAREN2] = ACTIONS(1436), + [sym_attribute_declaration] = STATE(189), + [sym_compound_statement] = STATE(560), + [sym_attributed_statement] = STATE(560), + [sym_statement] = STATE(386), + [sym_labeled_statement] = STATE(560), + [sym_expression_statement] = STATE(560), + [sym_if_statement] = STATE(560), + [sym_switch_statement] = STATE(560), + [sym_case_statement] = STATE(560), + [sym_while_statement] = STATE(560), + [sym_do_statement] = STATE(560), + [sym_for_statement] = STATE(560), + [sym_return_statement] = STATE(560), + [sym_break_statement] = STATE(560), + [sym_continue_statement] = STATE(560), + [sym_goto_statement] = STATE(560), + [sym_seh_try_statement] = STATE(560), + [sym_seh_leave_statement] = STATE(560), + [sym_expression] = STATE(4554), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8083), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_for_range_loop] = STATE(560), + [sym_co_return_statement] = STATE(560), + [sym_co_yield_statement] = STATE(560), + [sym_throw_statement] = STATE(560), + [sym_try_statement] = STATE(560), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_attributed_declarator_repeat1] = STATE(189), + [sym_identifier] = ACTIONS(2391), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(884), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(181), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), - [anon_sym_LBRACE] = ACTIONS(894), - [anon_sym_LBRACK] = ACTIONS(1450), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_if] = ACTIONS(898), - [anon_sym_switch] = ACTIONS(900), - [anon_sym_case] = ACTIONS(902), - [anon_sym_default] = ACTIONS(904), - [anon_sym_while] = ACTIONS(906), - [anon_sym_do] = ACTIONS(908), - [anon_sym_for] = ACTIONS(910), - [anon_sym_return] = ACTIONS(912), - [anon_sym_break] = ACTIONS(914), - [anon_sym_continue] = ACTIONS(916), - [anon_sym_goto] = ACTIONS(918), - [anon_sym___try] = ACTIONS(920), - [anon_sym___leave] = ACTIONS(922), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(1266), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_switch] = ACTIONS(83), + [anon_sym_case] = ACTIONS(1704), + [anon_sym_default] = ACTIONS(1706), + [anon_sym_while] = ACTIONS(1708), + [anon_sym_do] = ACTIONS(91), + [anon_sym_for] = ACTIONS(1710), + [anon_sym_return] = ACTIONS(95), + [anon_sym_break] = ACTIONS(97), + [anon_sym_continue] = ACTIONS(99), + [anon_sym_goto] = ACTIONS(101), + [anon_sym___try] = ACTIONS(1712), + [anon_sym___leave] = ACTIONS(223), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -75592,12 +75875,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_try] = ACTIONS(926), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_try] = ACTIONS(143), [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(928), - [anon_sym_co_return] = ACTIONS(936), - [anon_sym_co_yield] = ACTIONS(938), + [anon_sym_throw] = ACTIONS(147), + [anon_sym_co_return] = ACTIONS(155), + [anon_sym_co_yield] = ACTIONS(157), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), @@ -75609,101 +75892,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [219] = { - [sym_attribute_declaration] = STATE(141), - [sym_compound_statement] = STATE(545), - [sym_attributed_statement] = STATE(545), - [sym_statement] = STATE(554), - [sym_labeled_statement] = STATE(545), - [sym_expression_statement] = STATE(545), - [sym_if_statement] = STATE(545), - [sym_switch_statement] = STATE(545), - [sym_case_statement] = STATE(545), - [sym_while_statement] = STATE(545), - [sym_do_statement] = STATE(545), - [sym_for_statement] = STATE(545), - [sym_return_statement] = STATE(545), - [sym_break_statement] = STATE(545), - [sym_continue_statement] = STATE(545), - [sym_goto_statement] = STATE(545), - [sym_seh_try_statement] = STATE(545), - [sym_seh_leave_statement] = STATE(545), - [sym_expression] = STATE(4457), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8711), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_for_range_loop] = STATE(545), - [sym_co_return_statement] = STATE(545), - [sym_co_yield_statement] = STATE(545), - [sym_throw_statement] = STATE(545), - [sym_try_statement] = STATE(545), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_attributed_declarator_repeat1] = STATE(141), - [sym_identifier] = ACTIONS(2022), - [anon_sym_LPAREN2] = ACTIONS(1436), + [sym_attribute_declaration] = STATE(189), + [sym_compound_statement] = STATE(560), + [sym_attributed_statement] = STATE(560), + [sym_statement] = STATE(388), + [sym_labeled_statement] = STATE(560), + [sym_expression_statement] = STATE(560), + [sym_if_statement] = STATE(560), + [sym_switch_statement] = STATE(560), + [sym_case_statement] = STATE(560), + [sym_while_statement] = STATE(560), + [sym_do_statement] = STATE(560), + [sym_for_statement] = STATE(560), + [sym_return_statement] = STATE(560), + [sym_break_statement] = STATE(560), + [sym_continue_statement] = STATE(560), + [sym_goto_statement] = STATE(560), + [sym_seh_try_statement] = STATE(560), + [sym_seh_leave_statement] = STATE(560), + [sym_expression] = STATE(4554), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8083), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_for_range_loop] = STATE(560), + [sym_co_return_statement] = STATE(560), + [sym_co_yield_statement] = STATE(560), + [sym_throw_statement] = STATE(560), + [sym_try_statement] = STATE(560), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_attributed_declarator_repeat1] = STATE(189), + [sym_identifier] = ACTIONS(2391), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), - [anon_sym_LBRACE] = ACTIONS(866), - [anon_sym_LBRACK] = ACTIONS(1450), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_if] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), - [anon_sym_case] = ACTIONS(203), - [anon_sym_default] = ACTIONS(205), - [anon_sym_while] = ACTIONS(207), - [anon_sym_do] = ACTIONS(209), - [anon_sym_for] = ACTIONS(211), - [anon_sym_return] = ACTIONS(213), - [anon_sym_break] = ACTIONS(215), - [anon_sym_continue] = ACTIONS(217), - [anon_sym_goto] = ACTIONS(219), - [anon_sym___try] = ACTIONS(221), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(1266), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_switch] = ACTIONS(83), + [anon_sym_case] = ACTIONS(1704), + [anon_sym_default] = ACTIONS(1706), + [anon_sym_while] = ACTIONS(1708), + [anon_sym_do] = ACTIONS(91), + [anon_sym_for] = ACTIONS(1710), + [anon_sym_return] = ACTIONS(95), + [anon_sym_break] = ACTIONS(97), + [anon_sym_continue] = ACTIONS(99), + [anon_sym_goto] = ACTIONS(101), + [anon_sym___try] = ACTIONS(1712), [anon_sym___leave] = ACTIONS(223), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), @@ -75737,12 +76020,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_try] = ACTIONS(233), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_try] = ACTIONS(143), [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(235), - [anon_sym_co_return] = ACTIONS(243), - [anon_sym_co_yield] = ACTIONS(245), + [anon_sym_throw] = ACTIONS(147), + [anon_sym_co_return] = ACTIONS(155), + [anon_sym_co_yield] = ACTIONS(157), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), @@ -75754,101 +76037,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [220] = { - [sym_attribute_declaration] = STATE(219), - [sym_compound_statement] = STATE(545), - [sym_attributed_statement] = STATE(545), - [sym_statement] = STATE(474), - [sym_labeled_statement] = STATE(545), - [sym_expression_statement] = STATE(545), - [sym_if_statement] = STATE(545), - [sym_switch_statement] = STATE(545), - [sym_case_statement] = STATE(545), - [sym_while_statement] = STATE(545), - [sym_do_statement] = STATE(545), - [sym_for_statement] = STATE(545), - [sym_return_statement] = STATE(545), - [sym_break_statement] = STATE(545), - [sym_continue_statement] = STATE(545), - [sym_goto_statement] = STATE(545), - [sym_seh_try_statement] = STATE(545), - [sym_seh_leave_statement] = STATE(545), - [sym_expression] = STATE(4457), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8711), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_for_range_loop] = STATE(545), - [sym_co_return_statement] = STATE(545), - [sym_co_yield_statement] = STATE(545), - [sym_throw_statement] = STATE(545), - [sym_try_statement] = STATE(545), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_attributed_declarator_repeat1] = STATE(219), - [sym_identifier] = ACTIONS(2022), - [anon_sym_LPAREN2] = ACTIONS(1436), + [sym_attribute_declaration] = STATE(189), + [sym_compound_statement] = STATE(560), + [sym_attributed_statement] = STATE(560), + [sym_statement] = STATE(8652), + [sym_labeled_statement] = STATE(560), + [sym_expression_statement] = STATE(560), + [sym_if_statement] = STATE(560), + [sym_switch_statement] = STATE(560), + [sym_case_statement] = STATE(560), + [sym_while_statement] = STATE(560), + [sym_do_statement] = STATE(560), + [sym_for_statement] = STATE(560), + [sym_return_statement] = STATE(560), + [sym_break_statement] = STATE(560), + [sym_continue_statement] = STATE(560), + [sym_goto_statement] = STATE(560), + [sym_seh_try_statement] = STATE(560), + [sym_seh_leave_statement] = STATE(560), + [sym_expression] = STATE(4554), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8083), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_for_range_loop] = STATE(560), + [sym_co_return_statement] = STATE(560), + [sym_co_yield_statement] = STATE(560), + [sym_throw_statement] = STATE(560), + [sym_try_statement] = STATE(560), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_attributed_declarator_repeat1] = STATE(189), + [sym_identifier] = ACTIONS(2391), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), - [anon_sym_LBRACE] = ACTIONS(866), - [anon_sym_LBRACK] = ACTIONS(1450), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_if] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), - [anon_sym_case] = ACTIONS(203), - [anon_sym_default] = ACTIONS(205), - [anon_sym_while] = ACTIONS(207), - [anon_sym_do] = ACTIONS(209), - [anon_sym_for] = ACTIONS(211), - [anon_sym_return] = ACTIONS(213), - [anon_sym_break] = ACTIONS(215), - [anon_sym_continue] = ACTIONS(217), - [anon_sym_goto] = ACTIONS(219), - [anon_sym___try] = ACTIONS(221), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(1266), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_switch] = ACTIONS(83), + [anon_sym_case] = ACTIONS(1704), + [anon_sym_default] = ACTIONS(1706), + [anon_sym_while] = ACTIONS(1708), + [anon_sym_do] = ACTIONS(91), + [anon_sym_for] = ACTIONS(1710), + [anon_sym_return] = ACTIONS(95), + [anon_sym_break] = ACTIONS(97), + [anon_sym_continue] = ACTIONS(99), + [anon_sym_goto] = ACTIONS(101), + [anon_sym___try] = ACTIONS(1712), [anon_sym___leave] = ACTIONS(223), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), @@ -75882,12 +76165,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_try] = ACTIONS(233), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_try] = ACTIONS(143), [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(235), - [anon_sym_co_return] = ACTIONS(243), - [anon_sym_co_yield] = ACTIONS(245), + [anon_sym_throw] = ACTIONS(147), + [anon_sym_co_return] = ACTIONS(155), + [anon_sym_co_yield] = ACTIONS(157), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), @@ -75899,101 +76182,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [221] = { - [sym_attribute_declaration] = STATE(216), - [sym_compound_statement] = STATE(545), - [sym_attributed_statement] = STATE(545), - [sym_statement] = STATE(8519), - [sym_labeled_statement] = STATE(545), - [sym_expression_statement] = STATE(545), - [sym_if_statement] = STATE(545), - [sym_switch_statement] = STATE(545), - [sym_case_statement] = STATE(545), - [sym_while_statement] = STATE(545), - [sym_do_statement] = STATE(545), - [sym_for_statement] = STATE(545), - [sym_return_statement] = STATE(545), - [sym_break_statement] = STATE(545), - [sym_continue_statement] = STATE(545), - [sym_goto_statement] = STATE(545), - [sym_seh_try_statement] = STATE(545), - [sym_seh_leave_statement] = STATE(545), - [sym_expression] = STATE(4457), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8711), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_for_range_loop] = STATE(545), - [sym_co_return_statement] = STATE(545), - [sym_co_yield_statement] = STATE(545), - [sym_throw_statement] = STATE(545), - [sym_try_statement] = STATE(545), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_attributed_declarator_repeat1] = STATE(216), - [sym_identifier] = ACTIONS(2389), - [anon_sym_LPAREN2] = ACTIONS(1436), + [sym_attribute_declaration] = STATE(189), + [sym_compound_statement] = STATE(560), + [sym_attributed_statement] = STATE(560), + [sym_statement] = STATE(389), + [sym_labeled_statement] = STATE(560), + [sym_expression_statement] = STATE(560), + [sym_if_statement] = STATE(560), + [sym_switch_statement] = STATE(560), + [sym_case_statement] = STATE(560), + [sym_while_statement] = STATE(560), + [sym_do_statement] = STATE(560), + [sym_for_statement] = STATE(560), + [sym_return_statement] = STATE(560), + [sym_break_statement] = STATE(560), + [sym_continue_statement] = STATE(560), + [sym_goto_statement] = STATE(560), + [sym_seh_try_statement] = STATE(560), + [sym_seh_leave_statement] = STATE(560), + [sym_expression] = STATE(4554), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8083), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_for_range_loop] = STATE(560), + [sym_co_return_statement] = STATE(560), + [sym_co_yield_statement] = STATE(560), + [sym_throw_statement] = STATE(560), + [sym_try_statement] = STATE(560), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_attributed_declarator_repeat1] = STATE(189), + [sym_identifier] = ACTIONS(2391), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1450), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_if] = ACTIONS(1766), + [anon_sym_LBRACK] = ACTIONS(1266), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_if] = ACTIONS(1702), [anon_sym_switch] = ACTIONS(83), - [anon_sym_case] = ACTIONS(1760), - [anon_sym_default] = ACTIONS(1762), - [anon_sym_while] = ACTIONS(1768), + [anon_sym_case] = ACTIONS(1704), + [anon_sym_default] = ACTIONS(1706), + [anon_sym_while] = ACTIONS(1708), [anon_sym_do] = ACTIONS(91), - [anon_sym_for] = ACTIONS(1770), + [anon_sym_for] = ACTIONS(1710), [anon_sym_return] = ACTIONS(95), [anon_sym_break] = ACTIONS(97), [anon_sym_continue] = ACTIONS(99), [anon_sym_goto] = ACTIONS(101), - [anon_sym___try] = ACTIONS(1772), + [anon_sym___try] = ACTIONS(1712), [anon_sym___leave] = ACTIONS(223), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), @@ -76027,7 +76310,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_try] = ACTIONS(143), [anon_sym_delete] = ACTIONS(145), [anon_sym_throw] = ACTIONS(147), @@ -76044,101 +76327,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [222] = { - [sym_attribute_declaration] = STATE(216), - [sym_compound_statement] = STATE(545), - [sym_attributed_statement] = STATE(545), - [sym_statement] = STATE(8546), - [sym_labeled_statement] = STATE(545), - [sym_expression_statement] = STATE(545), - [sym_if_statement] = STATE(545), - [sym_switch_statement] = STATE(545), - [sym_case_statement] = STATE(545), - [sym_while_statement] = STATE(545), - [sym_do_statement] = STATE(545), - [sym_for_statement] = STATE(545), - [sym_return_statement] = STATE(545), - [sym_break_statement] = STATE(545), - [sym_continue_statement] = STATE(545), - [sym_goto_statement] = STATE(545), - [sym_seh_try_statement] = STATE(545), - [sym_seh_leave_statement] = STATE(545), - [sym_expression] = STATE(4457), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8711), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_for_range_loop] = STATE(545), - [sym_co_return_statement] = STATE(545), - [sym_co_yield_statement] = STATE(545), - [sym_throw_statement] = STATE(545), - [sym_try_statement] = STATE(545), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_attributed_declarator_repeat1] = STATE(216), - [sym_identifier] = ACTIONS(2389), - [anon_sym_LPAREN2] = ACTIONS(1436), + [sym_attribute_declaration] = STATE(189), + [sym_compound_statement] = STATE(560), + [sym_attributed_statement] = STATE(560), + [sym_statement] = STATE(8679), + [sym_labeled_statement] = STATE(560), + [sym_expression_statement] = STATE(560), + [sym_if_statement] = STATE(560), + [sym_switch_statement] = STATE(560), + [sym_case_statement] = STATE(560), + [sym_while_statement] = STATE(560), + [sym_do_statement] = STATE(560), + [sym_for_statement] = STATE(560), + [sym_return_statement] = STATE(560), + [sym_break_statement] = STATE(560), + [sym_continue_statement] = STATE(560), + [sym_goto_statement] = STATE(560), + [sym_seh_try_statement] = STATE(560), + [sym_seh_leave_statement] = STATE(560), + [sym_expression] = STATE(4554), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8083), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_for_range_loop] = STATE(560), + [sym_co_return_statement] = STATE(560), + [sym_co_yield_statement] = STATE(560), + [sym_throw_statement] = STATE(560), + [sym_try_statement] = STATE(560), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_attributed_declarator_repeat1] = STATE(189), + [sym_identifier] = ACTIONS(2391), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1450), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_if] = ACTIONS(1766), + [anon_sym_LBRACK] = ACTIONS(1266), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_if] = ACTIONS(1702), [anon_sym_switch] = ACTIONS(83), - [anon_sym_case] = ACTIONS(1760), - [anon_sym_default] = ACTIONS(1762), - [anon_sym_while] = ACTIONS(1768), + [anon_sym_case] = ACTIONS(1704), + [anon_sym_default] = ACTIONS(1706), + [anon_sym_while] = ACTIONS(1708), [anon_sym_do] = ACTIONS(91), - [anon_sym_for] = ACTIONS(1770), + [anon_sym_for] = ACTIONS(1710), [anon_sym_return] = ACTIONS(95), [anon_sym_break] = ACTIONS(97), [anon_sym_continue] = ACTIONS(99), [anon_sym_goto] = ACTIONS(101), - [anon_sym___try] = ACTIONS(1772), + [anon_sym___try] = ACTIONS(1712), [anon_sym___leave] = ACTIONS(223), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), @@ -76172,7 +76455,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_try] = ACTIONS(143), [anon_sym_delete] = ACTIONS(145), [anon_sym_throw] = ACTIONS(147), @@ -76189,89 +76472,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [223] = { - [sym_attribute_declaration] = STATE(219), - [sym_compound_statement] = STATE(545), - [sym_attributed_statement] = STATE(545), - [sym_statement] = STATE(626), - [sym_labeled_statement] = STATE(545), - [sym_expression_statement] = STATE(545), - [sym_if_statement] = STATE(545), - [sym_switch_statement] = STATE(545), - [sym_case_statement] = STATE(545), - [sym_while_statement] = STATE(545), - [sym_do_statement] = STATE(545), - [sym_for_statement] = STATE(545), - [sym_return_statement] = STATE(545), - [sym_break_statement] = STATE(545), - [sym_continue_statement] = STATE(545), - [sym_goto_statement] = STATE(545), - [sym_seh_try_statement] = STATE(545), - [sym_seh_leave_statement] = STATE(545), - [sym_expression] = STATE(4457), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8711), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_for_range_loop] = STATE(545), - [sym_co_return_statement] = STATE(545), - [sym_co_yield_statement] = STATE(545), - [sym_throw_statement] = STATE(545), - [sym_try_statement] = STATE(545), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_attributed_declarator_repeat1] = STATE(219), - [sym_identifier] = ACTIONS(2022), - [anon_sym_LPAREN2] = ACTIONS(1436), + [sym_attribute_declaration] = STATE(186), + [sym_compound_statement] = STATE(560), + [sym_attributed_statement] = STATE(560), + [sym_statement] = STATE(477), + [sym_labeled_statement] = STATE(560), + [sym_expression_statement] = STATE(560), + [sym_if_statement] = STATE(560), + [sym_switch_statement] = STATE(560), + [sym_case_statement] = STATE(560), + [sym_while_statement] = STATE(560), + [sym_do_statement] = STATE(560), + [sym_for_statement] = STATE(560), + [sym_return_statement] = STATE(560), + [sym_break_statement] = STATE(560), + [sym_continue_statement] = STATE(560), + [sym_goto_statement] = STATE(560), + [sym_seh_try_statement] = STATE(560), + [sym_seh_leave_statement] = STATE(560), + [sym_expression] = STATE(4554), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8083), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_for_range_loop] = STATE(560), + [sym_co_return_statement] = STATE(560), + [sym_co_yield_statement] = STATE(560), + [sym_throw_statement] = STATE(560), + [sym_try_statement] = STATE(560), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_attributed_declarator_repeat1] = STATE(186), + [sym_identifier] = ACTIONS(2325), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), [anon_sym_LBRACE] = ACTIONS(866), - [anon_sym_LBRACK] = ACTIONS(1450), - [sym_primitive_type] = ACTIONS(2028), + [anon_sym_LBRACK] = ACTIONS(1266), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_if] = ACTIONS(199), [anon_sym_switch] = ACTIONS(201), [anon_sym_case] = ACTIONS(203), @@ -76317,7 +76600,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_try] = ACTIONS(233), [anon_sym_delete] = ACTIONS(145), [anon_sym_throw] = ACTIONS(235), @@ -76478,200 +76761,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(2476), }, [225] = { - [sym_catch_clause] = STATE(224), - [aux_sym_constructor_try_statement_repeat1] = STATE(224), + [sym_expression] = STATE(3321), + [sym__string] = STATE(3549), + [sym_conditional_expression] = STATE(3636), + [sym_assignment_expression] = STATE(3636), + [sym_pointer_expression] = STATE(3696), + [sym_unary_expression] = STATE(3636), + [sym_binary_expression] = STATE(3636), + [sym_update_expression] = STATE(3636), + [sym_cast_expression] = STATE(3636), + [sym_sizeof_expression] = STATE(3636), + [sym_alignof_expression] = STATE(3636), + [sym_offsetof_expression] = STATE(3636), + [sym_generic_expression] = STATE(3636), + [sym_subscript_expression] = STATE(3696), + [sym_call_expression] = STATE(3696), + [sym_gnu_asm_expression] = STATE(3636), + [sym_extension_expression] = STATE(3636), + [sym_field_expression] = STATE(3696), + [sym_compound_literal_expression] = STATE(3636), + [sym_parenthesized_expression] = STATE(3696), + [sym_initializer_list] = STATE(3651), + [sym_char_literal] = STATE(3549), + [sym_concatenated_string] = STATE(3549), + [sym_string_literal] = STATE(2433), + [sym_null] = STATE(3636), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7883), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3636), + [sym_raw_string_literal] = STATE(2433), + [sym_co_await_expression] = STATE(3636), + [sym_new_expression] = STATE(3636), + [sym_delete_expression] = STATE(3636), + [sym_requires_clause] = STATE(3636), + [sym_requires_expression] = STATE(3636), + [sym_lambda_expression] = STATE(3636), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3636), + [sym_parameter_pack_expansion] = STATE(3636), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5769), + [sym_qualified_identifier] = STATE(3696), + [sym_qualified_type_identifier] = STATE(7883), + [sym_user_defined_literal] = STATE(3696), [sym_identifier] = ACTIONS(2483), - [aux_sym_preproc_include_token1] = ACTIONS(2483), - [aux_sym_preproc_def_token1] = ACTIONS(2483), - [aux_sym_preproc_if_token1] = ACTIONS(2483), - [aux_sym_preproc_if_token2] = ACTIONS(2483), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2483), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2483), - [aux_sym_preproc_else_token1] = ACTIONS(2483), - [aux_sym_preproc_elif_token1] = ACTIONS(2483), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2483), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2483), - [sym_preproc_directive] = ACTIONS(2483), - [anon_sym_LPAREN2] = ACTIONS(2485), - [anon_sym_BANG] = ACTIONS(2485), - [anon_sym_TILDE] = ACTIONS(2485), - [anon_sym_DASH] = ACTIONS(2483), - [anon_sym_PLUS] = ACTIONS(2483), - [anon_sym_STAR] = ACTIONS(2485), - [anon_sym_AMP_AMP] = ACTIONS(2485), - [anon_sym_AMP] = ACTIONS(2483), - [anon_sym_SEMI] = ACTIONS(2485), - [anon_sym___extension__] = ACTIONS(2483), - [anon_sym_typedef] = ACTIONS(2483), - [anon_sym_virtual] = ACTIONS(2483), - [anon_sym_extern] = ACTIONS(2483), - [anon_sym___attribute__] = ACTIONS(2483), - [anon_sym___attribute] = ACTIONS(2483), - [anon_sym_using] = ACTIONS(2483), - [anon_sym_COLON_COLON] = ACTIONS(2485), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2485), - [anon_sym___declspec] = ACTIONS(2483), - [anon_sym___based] = ACTIONS(2483), - [anon_sym___cdecl] = ACTIONS(2483), - [anon_sym___clrcall] = ACTIONS(2483), - [anon_sym___stdcall] = ACTIONS(2483), - [anon_sym___fastcall] = ACTIONS(2483), - [anon_sym___thiscall] = ACTIONS(2483), - [anon_sym___vectorcall] = ACTIONS(2483), - [anon_sym_LBRACE] = ACTIONS(2485), - [anon_sym_signed] = ACTIONS(2483), - [anon_sym_unsigned] = ACTIONS(2483), - [anon_sym_long] = ACTIONS(2483), - [anon_sym_short] = ACTIONS(2483), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_static] = ACTIONS(2483), - [anon_sym_register] = ACTIONS(2483), - [anon_sym_inline] = ACTIONS(2483), - [anon_sym___inline] = ACTIONS(2483), - [anon_sym___inline__] = ACTIONS(2483), - [anon_sym___forceinline] = ACTIONS(2483), - [anon_sym_thread_local] = ACTIONS(2483), - [anon_sym___thread] = ACTIONS(2483), - [anon_sym_const] = ACTIONS(2483), - [anon_sym_constexpr] = ACTIONS(2483), - [anon_sym_volatile] = ACTIONS(2483), - [anon_sym_restrict] = ACTIONS(2483), - [anon_sym___restrict__] = ACTIONS(2483), - [anon_sym__Atomic] = ACTIONS(2483), - [anon_sym__Noreturn] = ACTIONS(2483), - [anon_sym_noreturn] = ACTIONS(2483), - [anon_sym__Nonnull] = ACTIONS(2483), - [anon_sym_mutable] = ACTIONS(2483), - [anon_sym_constinit] = ACTIONS(2483), - [anon_sym_consteval] = ACTIONS(2483), - [anon_sym_alignas] = ACTIONS(2483), - [anon_sym__Alignas] = ACTIONS(2483), - [sym_primitive_type] = ACTIONS(2483), - [anon_sym_enum] = ACTIONS(2483), - [anon_sym_class] = ACTIONS(2483), - [anon_sym_struct] = ACTIONS(2483), - [anon_sym_union] = ACTIONS(2483), - [anon_sym_if] = ACTIONS(2483), - [anon_sym_else] = ACTIONS(2483), - [anon_sym_switch] = ACTIONS(2483), - [anon_sym_case] = ACTIONS(2483), - [anon_sym_default] = ACTIONS(2483), - [anon_sym_while] = ACTIONS(2483), - [anon_sym_do] = ACTIONS(2483), - [anon_sym_for] = ACTIONS(2483), - [anon_sym_return] = ACTIONS(2483), - [anon_sym_break] = ACTIONS(2483), - [anon_sym_continue] = ACTIONS(2483), - [anon_sym_goto] = ACTIONS(2483), - [anon_sym___try] = ACTIONS(2483), - [anon_sym___leave] = ACTIONS(2483), - [anon_sym_not] = ACTIONS(2483), - [anon_sym_compl] = ACTIONS(2483), - [anon_sym_DASH_DASH] = ACTIONS(2485), - [anon_sym_PLUS_PLUS] = ACTIONS(2485), - [anon_sym_sizeof] = ACTIONS(2483), - [anon_sym___alignof__] = ACTIONS(2483), - [anon_sym___alignof] = ACTIONS(2483), - [anon_sym__alignof] = ACTIONS(2483), - [anon_sym_alignof] = ACTIONS(2483), - [anon_sym__Alignof] = ACTIONS(2483), - [anon_sym_offsetof] = ACTIONS(2483), - [anon_sym__Generic] = ACTIONS(2483), - [anon_sym_asm] = ACTIONS(2483), - [anon_sym___asm__] = ACTIONS(2483), - [anon_sym___asm] = ACTIONS(2483), - [sym_number_literal] = ACTIONS(2485), - [anon_sym_L_SQUOTE] = ACTIONS(2485), - [anon_sym_u_SQUOTE] = ACTIONS(2485), - [anon_sym_U_SQUOTE] = ACTIONS(2485), - [anon_sym_u8_SQUOTE] = ACTIONS(2485), - [anon_sym_SQUOTE] = ACTIONS(2485), - [anon_sym_L_DQUOTE] = ACTIONS(2485), - [anon_sym_u_DQUOTE] = ACTIONS(2485), - [anon_sym_U_DQUOTE] = ACTIONS(2485), - [anon_sym_u8_DQUOTE] = ACTIONS(2485), - [anon_sym_DQUOTE] = ACTIONS(2485), - [sym_true] = ACTIONS(2483), - [sym_false] = ACTIONS(2483), - [anon_sym_NULL] = ACTIONS(2483), - [anon_sym_nullptr] = ACTIONS(2483), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2483), - [anon_sym_decltype] = ACTIONS(2483), - [anon_sym_explicit] = ACTIONS(2483), - [anon_sym_typename] = ACTIONS(2483), - [anon_sym_template] = ACTIONS(2483), - [anon_sym_operator] = ACTIONS(2483), - [anon_sym_try] = ACTIONS(2483), - [anon_sym_delete] = ACTIONS(2483), - [anon_sym_throw] = ACTIONS(2483), - [anon_sym_namespace] = ACTIONS(2483), - [anon_sym_static_assert] = ACTIONS(2483), - [anon_sym_concept] = ACTIONS(2483), - [anon_sym_co_return] = ACTIONS(2483), - [anon_sym_co_yield] = ACTIONS(2483), - [anon_sym_catch] = ACTIONS(2487), - [anon_sym_R_DQUOTE] = ACTIONS(2485), - [anon_sym_LR_DQUOTE] = ACTIONS(2485), - [anon_sym_uR_DQUOTE] = ACTIONS(2485), - [anon_sym_UR_DQUOTE] = ACTIONS(2485), - [anon_sym_u8R_DQUOTE] = ACTIONS(2485), - [anon_sym_co_await] = ACTIONS(2483), - [anon_sym_new] = ACTIONS(2483), - [anon_sym_requires] = ACTIONS(2483), - [sym_this] = ACTIONS(2483), - }, - [226] = { - [sym_expression] = STATE(3339), - [sym__string] = STATE(3360), - [sym_conditional_expression] = STATE(3651), - [sym_assignment_expression] = STATE(3651), - [sym_pointer_expression] = STATE(3547), - [sym_unary_expression] = STATE(3651), - [sym_binary_expression] = STATE(3651), - [sym_update_expression] = STATE(3651), - [sym_cast_expression] = STATE(3651), - [sym_sizeof_expression] = STATE(3651), - [sym_alignof_expression] = STATE(3651), - [sym_offsetof_expression] = STATE(3651), - [sym_generic_expression] = STATE(3651), - [sym_subscript_expression] = STATE(3547), - [sym_call_expression] = STATE(3547), - [sym_gnu_asm_expression] = STATE(3651), - [sym_extension_expression] = STATE(3651), - [sym_field_expression] = STATE(3547), - [sym_compound_literal_expression] = STATE(3651), - [sym_parenthesized_expression] = STATE(3547), - [sym_initializer_list] = STATE(3605), - [sym_char_literal] = STATE(3360), - [sym_concatenated_string] = STATE(3360), - [sym_string_literal] = STATE(2369), - [sym_null] = STATE(3651), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7649), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3651), - [sym_raw_string_literal] = STATE(2369), - [sym_co_await_expression] = STATE(3651), - [sym_new_expression] = STATE(3651), - [sym_delete_expression] = STATE(3651), - [sym_requires_clause] = STATE(3651), - [sym_requires_expression] = STATE(3651), - [sym_lambda_expression] = STATE(3651), - [sym_lambda_capture_specifier] = STATE(5395), - [sym_fold_expression] = STATE(3651), - [sym_parameter_pack_expansion] = STATE(3651), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5773), - [sym_qualified_identifier] = STATE(3547), - [sym_qualified_type_identifier] = STATE(7649), - [sym_user_defined_literal] = STATE(3547), - [sym_identifier] = ACTIONS(2489), [anon_sym_DOT_DOT_DOT] = ACTIONS(1944), [anon_sym_COMMA] = ACTIONS(1944), [anon_sym_LPAREN2] = ACTIONS(1944), - [anon_sym_BANG] = ACTIONS(2491), - [anon_sym_TILDE] = ACTIONS(2493), + [anon_sym_BANG] = ACTIONS(2485), + [anon_sym_TILDE] = ACTIONS(2487), [anon_sym_DASH] = ACTIONS(1942), [anon_sym_PLUS] = ACTIONS(1942), [anon_sym_STAR] = ACTIONS(1942), @@ -76690,12 +76829,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(1942), [anon_sym_LT_LT] = ACTIONS(1942), [anon_sym_GT_GT] = ACTIONS(1942), - [anon_sym___extension__] = ACTIONS(2495), - [anon_sym_COLON_COLON] = ACTIONS(2497), - [anon_sym_LBRACE] = ACTIONS(2499), + [anon_sym___extension__] = ACTIONS(2489), + [anon_sym_COLON_COLON] = ACTIONS(2491), + [anon_sym_LBRACE] = ACTIONS(2493), [anon_sym_LBRACK] = ACTIONS(1944), [anon_sym_EQ] = ACTIONS(1942), - [sym_primitive_type] = ACTIONS(2501), + [sym_primitive_type] = ACTIONS(2495), [anon_sym_QMARK] = ACTIONS(1944), [anon_sym_STAR_EQ] = ACTIONS(1944), [anon_sym_SLASH_EQ] = ACTIONS(1944), @@ -76710,8 +76849,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and_eq] = ACTIONS(1942), [anon_sym_or_eq] = ACTIONS(1942), [anon_sym_xor_eq] = ACTIONS(1942), - [anon_sym_not] = ACTIONS(2491), - [anon_sym_compl] = ACTIONS(2491), + [anon_sym_not] = ACTIONS(2485), + [anon_sym_compl] = ACTIONS(2485), [anon_sym_LT_EQ_GT] = ACTIONS(1944), [anon_sym_or] = ACTIONS(1942), [anon_sym_and] = ACTIONS(1942), @@ -76721,95 +76860,239 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_not_eq] = ACTIONS(1942), [anon_sym_DASH_DASH] = ACTIONS(1944), [anon_sym_PLUS_PLUS] = ACTIONS(1944), - [anon_sym_sizeof] = ACTIONS(2503), - [anon_sym___alignof__] = ACTIONS(2505), - [anon_sym___alignof] = ACTIONS(2505), - [anon_sym__alignof] = ACTIONS(2505), - [anon_sym_alignof] = ACTIONS(2505), - [anon_sym__Alignof] = ACTIONS(2505), - [anon_sym_offsetof] = ACTIONS(2507), - [anon_sym__Generic] = ACTIONS(2509), - [anon_sym_asm] = ACTIONS(2511), - [anon_sym___asm__] = ACTIONS(2511), - [anon_sym___asm] = ACTIONS(2511), + [anon_sym_sizeof] = ACTIONS(2497), + [anon_sym___alignof__] = ACTIONS(2499), + [anon_sym___alignof] = ACTIONS(2499), + [anon_sym__alignof] = ACTIONS(2499), + [anon_sym_alignof] = ACTIONS(2499), + [anon_sym__Alignof] = ACTIONS(2499), + [anon_sym_offsetof] = ACTIONS(2501), + [anon_sym__Generic] = ACTIONS(2503), + [anon_sym_asm] = ACTIONS(2505), + [anon_sym___asm__] = ACTIONS(2505), + [anon_sym___asm] = ACTIONS(2505), [anon_sym_DOT] = ACTIONS(1942), [anon_sym_DOT_STAR] = ACTIONS(1944), [anon_sym_DASH_GT] = ACTIONS(1944), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2515), - [anon_sym_u_SQUOTE] = ACTIONS(2515), - [anon_sym_U_SQUOTE] = ACTIONS(2515), - [anon_sym_u8_SQUOTE] = ACTIONS(2515), - [anon_sym_SQUOTE] = ACTIONS(2515), - [anon_sym_L_DQUOTE] = ACTIONS(2517), - [anon_sym_u_DQUOTE] = ACTIONS(2517), - [anon_sym_U_DQUOTE] = ACTIONS(2517), - [anon_sym_u8_DQUOTE] = ACTIONS(2517), - [anon_sym_DQUOTE] = ACTIONS(2517), - [sym_true] = ACTIONS(2519), - [sym_false] = ACTIONS(2519), - [anon_sym_NULL] = ACTIONS(2521), - [anon_sym_nullptr] = ACTIONS(2521), + [sym_number_literal] = ACTIONS(2507), + [anon_sym_L_SQUOTE] = ACTIONS(2509), + [anon_sym_u_SQUOTE] = ACTIONS(2509), + [anon_sym_U_SQUOTE] = ACTIONS(2509), + [anon_sym_u8_SQUOTE] = ACTIONS(2509), + [anon_sym_SQUOTE] = ACTIONS(2509), + [anon_sym_L_DQUOTE] = ACTIONS(2511), + [anon_sym_u_DQUOTE] = ACTIONS(2511), + [anon_sym_U_DQUOTE] = ACTIONS(2511), + [anon_sym_u8_DQUOTE] = ACTIONS(2511), + [anon_sym_DQUOTE] = ACTIONS(2511), + [sym_true] = ACTIONS(2513), + [sym_false] = ACTIONS(2513), + [anon_sym_NULL] = ACTIONS(2515), + [anon_sym_nullptr] = ACTIONS(2515), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_GT2] = ACTIONS(1944), - [anon_sym_delete] = ACTIONS(2523), - [anon_sym_R_DQUOTE] = ACTIONS(2525), - [anon_sym_LR_DQUOTE] = ACTIONS(2525), - [anon_sym_uR_DQUOTE] = ACTIONS(2525), - [anon_sym_UR_DQUOTE] = ACTIONS(2525), - [anon_sym_u8R_DQUOTE] = ACTIONS(2525), + [anon_sym_delete] = ACTIONS(2517), + [anon_sym_R_DQUOTE] = ACTIONS(2519), + [anon_sym_LR_DQUOTE] = ACTIONS(2519), + [anon_sym_uR_DQUOTE] = ACTIONS(2519), + [anon_sym_UR_DQUOTE] = ACTIONS(2519), + [anon_sym_u8R_DQUOTE] = ACTIONS(2519), + [anon_sym_co_await] = ACTIONS(2521), + [anon_sym_new] = ACTIONS(2523), + [anon_sym_requires] = ACTIONS(2525), + [sym_this] = ACTIONS(2513), + }, + [226] = { + [sym_catch_clause] = STATE(224), + [aux_sym_constructor_try_statement_repeat1] = STATE(224), + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token2] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [aux_sym_preproc_else_token1] = ACTIONS(2527), + [aux_sym_preproc_elif_token1] = ACTIONS(2527), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym___extension__] = ACTIONS(2527), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym___attribute] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym___inline] = ACTIONS(2527), + [anon_sym___inline__] = ACTIONS(2527), + [anon_sym___forceinline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym___thread] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym___restrict__] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym__Noreturn] = ACTIONS(2527), + [anon_sym_noreturn] = ACTIONS(2527), + [anon_sym__Nonnull] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_alignas] = ACTIONS(2527), + [anon_sym__Alignas] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym___try] = ACTIONS(2527), + [anon_sym___leave] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [anon_sym___alignof__] = ACTIONS(2527), + [anon_sym___alignof] = ACTIONS(2527), + [anon_sym__alignof] = ACTIONS(2527), + [anon_sym_alignof] = ACTIONS(2527), + [anon_sym__Alignof] = ACTIONS(2527), + [anon_sym_offsetof] = ACTIONS(2527), + [anon_sym__Generic] = ACTIONS(2527), + [anon_sym_asm] = ACTIONS(2527), + [anon_sym___asm__] = ACTIONS(2527), + [anon_sym___asm] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [anon_sym_NULL] = ACTIONS(2527), + [anon_sym_nullptr] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_catch] = ACTIONS(2531), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), [anon_sym_co_await] = ACTIONS(2527), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_requires] = ACTIONS(2531), - [sym_this] = ACTIONS(2519), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), }, [227] = { - [sym_expression] = STATE(3323), - [sym__string] = STATE(2950), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_initializer_list] = STATE(2441), - [sym_char_literal] = STATE(2950), - [sym_concatenated_string] = STATE(2950), - [sym_string_literal] = STATE(2034), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(2034), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), + [sym_expression] = STATE(3346), + [sym__string] = STATE(2917), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_initializer_list] = STATE(2488), + [sym_char_literal] = STATE(2917), + [sym_concatenated_string] = STATE(2917), + [sym_string_literal] = STATE(2114), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(2114), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), [sym_identifier] = ACTIONS(1990), [anon_sym_DOT_DOT_DOT] = ACTIONS(1944), [anon_sym_COMMA] = ACTIONS(1944), @@ -76897,7 +77180,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1976), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(2543), [anon_sym_R_DQUOTE] = ACTIONS(2010), [anon_sym_LR_DQUOTE] = ACTIONS(2010), @@ -76910,243 +77193,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(1974), }, [228] = { - [sym_catch_clause] = STATE(224), - [aux_sym_constructor_try_statement_repeat1] = STATE(224), + [sym_expression] = STATE(4345), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), [sym_identifier] = ACTIONS(2547), - [aux_sym_preproc_include_token1] = ACTIONS(2547), - [aux_sym_preproc_def_token1] = ACTIONS(2547), - [aux_sym_preproc_if_token1] = ACTIONS(2547), - [aux_sym_preproc_if_token2] = ACTIONS(2547), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2547), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2547), - [aux_sym_preproc_else_token1] = ACTIONS(2547), - [aux_sym_preproc_elif_token1] = ACTIONS(2547), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2547), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2547), - [sym_preproc_directive] = ACTIONS(2547), - [anon_sym_LPAREN2] = ACTIONS(2549), - [anon_sym_BANG] = ACTIONS(2549), - [anon_sym_TILDE] = ACTIONS(2549), - [anon_sym_DASH] = ACTIONS(2547), - [anon_sym_PLUS] = ACTIONS(2547), - [anon_sym_STAR] = ACTIONS(2549), - [anon_sym_AMP_AMP] = ACTIONS(2549), - [anon_sym_AMP] = ACTIONS(2547), - [anon_sym_SEMI] = ACTIONS(2549), - [anon_sym___extension__] = ACTIONS(2547), - [anon_sym_typedef] = ACTIONS(2547), - [anon_sym_virtual] = ACTIONS(2547), - [anon_sym_extern] = ACTIONS(2547), - [anon_sym___attribute__] = ACTIONS(2547), - [anon_sym___attribute] = ACTIONS(2547), - [anon_sym_using] = ACTIONS(2547), - [anon_sym_COLON_COLON] = ACTIONS(2549), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2549), - [anon_sym___declspec] = ACTIONS(2547), - [anon_sym___based] = ACTIONS(2547), - [anon_sym___cdecl] = ACTIONS(2547), - [anon_sym___clrcall] = ACTIONS(2547), - [anon_sym___stdcall] = ACTIONS(2547), - [anon_sym___fastcall] = ACTIONS(2547), - [anon_sym___thiscall] = ACTIONS(2547), - [anon_sym___vectorcall] = ACTIONS(2547), - [anon_sym_LBRACE] = ACTIONS(2549), - [anon_sym_signed] = ACTIONS(2547), - [anon_sym_unsigned] = ACTIONS(2547), - [anon_sym_long] = ACTIONS(2547), - [anon_sym_short] = ACTIONS(2547), - [anon_sym_LBRACK] = ACTIONS(2547), - [anon_sym_static] = ACTIONS(2547), - [anon_sym_register] = ACTIONS(2547), - [anon_sym_inline] = ACTIONS(2547), - [anon_sym___inline] = ACTIONS(2547), - [anon_sym___inline__] = ACTIONS(2547), - [anon_sym___forceinline] = ACTIONS(2547), - [anon_sym_thread_local] = ACTIONS(2547), - [anon_sym___thread] = ACTIONS(2547), - [anon_sym_const] = ACTIONS(2547), - [anon_sym_constexpr] = ACTIONS(2547), - [anon_sym_volatile] = ACTIONS(2547), - [anon_sym_restrict] = ACTIONS(2547), - [anon_sym___restrict__] = ACTIONS(2547), - [anon_sym__Atomic] = ACTIONS(2547), - [anon_sym__Noreturn] = ACTIONS(2547), - [anon_sym_noreturn] = ACTIONS(2547), - [anon_sym__Nonnull] = ACTIONS(2547), - [anon_sym_mutable] = ACTIONS(2547), - [anon_sym_constinit] = ACTIONS(2547), - [anon_sym_consteval] = ACTIONS(2547), - [anon_sym_alignas] = ACTIONS(2547), - [anon_sym__Alignas] = ACTIONS(2547), - [sym_primitive_type] = ACTIONS(2547), - [anon_sym_enum] = ACTIONS(2547), - [anon_sym_class] = ACTIONS(2547), - [anon_sym_struct] = ACTIONS(2547), - [anon_sym_union] = ACTIONS(2547), - [anon_sym_if] = ACTIONS(2547), - [anon_sym_switch] = ACTIONS(2547), - [anon_sym_case] = ACTIONS(2547), - [anon_sym_default] = ACTIONS(2547), - [anon_sym_while] = ACTIONS(2547), - [anon_sym_do] = ACTIONS(2547), - [anon_sym_for] = ACTIONS(2547), - [anon_sym_return] = ACTIONS(2547), - [anon_sym_break] = ACTIONS(2547), - [anon_sym_continue] = ACTIONS(2547), - [anon_sym_goto] = ACTIONS(2547), - [anon_sym___try] = ACTIONS(2547), - [anon_sym___leave] = ACTIONS(2547), - [anon_sym_not] = ACTIONS(2547), - [anon_sym_compl] = ACTIONS(2547), - [anon_sym_DASH_DASH] = ACTIONS(2549), - [anon_sym_PLUS_PLUS] = ACTIONS(2549), - [anon_sym_sizeof] = ACTIONS(2547), - [anon_sym___alignof__] = ACTIONS(2547), - [anon_sym___alignof] = ACTIONS(2547), - [anon_sym__alignof] = ACTIONS(2547), - [anon_sym_alignof] = ACTIONS(2547), - [anon_sym__Alignof] = ACTIONS(2547), - [anon_sym_offsetof] = ACTIONS(2547), - [anon_sym__Generic] = ACTIONS(2547), - [anon_sym_asm] = ACTIONS(2547), - [anon_sym___asm__] = ACTIONS(2547), - [anon_sym___asm] = ACTIONS(2547), - [sym_number_literal] = ACTIONS(2549), - [anon_sym_L_SQUOTE] = ACTIONS(2549), - [anon_sym_u_SQUOTE] = ACTIONS(2549), - [anon_sym_U_SQUOTE] = ACTIONS(2549), - [anon_sym_u8_SQUOTE] = ACTIONS(2549), - [anon_sym_SQUOTE] = ACTIONS(2549), - [anon_sym_L_DQUOTE] = ACTIONS(2549), - [anon_sym_u_DQUOTE] = ACTIONS(2549), - [anon_sym_U_DQUOTE] = ACTIONS(2549), - [anon_sym_u8_DQUOTE] = ACTIONS(2549), - [anon_sym_DQUOTE] = ACTIONS(2549), - [sym_true] = ACTIONS(2547), - [sym_false] = ACTIONS(2547), - [anon_sym_NULL] = ACTIONS(2547), - [anon_sym_nullptr] = ACTIONS(2547), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2547), - [anon_sym_decltype] = ACTIONS(2547), - [anon_sym_explicit] = ACTIONS(2547), - [anon_sym_typename] = ACTIONS(2547), - [anon_sym_template] = ACTIONS(2547), - [anon_sym_operator] = ACTIONS(2547), - [anon_sym_try] = ACTIONS(2547), - [anon_sym_delete] = ACTIONS(2547), - [anon_sym_throw] = ACTIONS(2547), - [anon_sym_namespace] = ACTIONS(2547), - [anon_sym_static_assert] = ACTIONS(2547), - [anon_sym_concept] = ACTIONS(2547), - [anon_sym_co_return] = ACTIONS(2547), - [anon_sym_co_yield] = ACTIONS(2547), - [anon_sym_catch] = ACTIONS(2487), - [anon_sym_R_DQUOTE] = ACTIONS(2549), - [anon_sym_LR_DQUOTE] = ACTIONS(2549), - [anon_sym_uR_DQUOTE] = ACTIONS(2549), - [anon_sym_UR_DQUOTE] = ACTIONS(2549), - [anon_sym_u8R_DQUOTE] = ACTIONS(2549), - [anon_sym_co_await] = ACTIONS(2547), - [anon_sym_new] = ACTIONS(2547), - [anon_sym_requires] = ACTIONS(2547), - [sym_this] = ACTIONS(2547), - }, - [229] = { - [sym_expression] = STATE(4294), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(2551), - [anon_sym_LPAREN2] = ACTIONS(2554), + [anon_sym_LPAREN2] = ACTIONS(2550), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(2557), + [anon_sym_TILDE] = ACTIONS(2553), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(2560), - [anon_sym_AMP_AMP] = ACTIONS(2563), - [anon_sym_AMP] = ACTIONS(2565), - [anon_sym___extension__] = ACTIONS(2568), - [anon_sym_typedef] = ACTIONS(2571), - [anon_sym_virtual] = ACTIONS(2573), - [anon_sym_extern] = ACTIONS(2573), - [anon_sym___attribute__] = ACTIONS(2573), - [anon_sym___attribute] = ACTIONS(2573), - [anon_sym_COLON_COLON] = ACTIONS(2575), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2563), - [anon_sym___declspec] = ACTIONS(2573), - [anon_sym___based] = ACTIONS(2573), - [anon_sym_signed] = ACTIONS(2573), - [anon_sym_unsigned] = ACTIONS(2573), - [anon_sym_long] = ACTIONS(2573), - [anon_sym_short] = ACTIONS(2573), - [anon_sym_LBRACK] = ACTIONS(2578), - [anon_sym_static] = ACTIONS(2573), - [anon_sym_register] = ACTIONS(2573), - [anon_sym_inline] = ACTIONS(2573), - [anon_sym___inline] = ACTIONS(2573), - [anon_sym___inline__] = ACTIONS(2573), - [anon_sym___forceinline] = ACTIONS(2573), - [anon_sym_thread_local] = ACTIONS(2573), - [anon_sym___thread] = ACTIONS(2573), - [anon_sym_const] = ACTIONS(2573), - [anon_sym_constexpr] = ACTIONS(2573), - [anon_sym_volatile] = ACTIONS(2573), - [anon_sym_restrict] = ACTIONS(2573), - [anon_sym___restrict__] = ACTIONS(2573), - [anon_sym__Atomic] = ACTIONS(2573), - [anon_sym__Noreturn] = ACTIONS(2573), - [anon_sym_noreturn] = ACTIONS(2573), - [anon_sym__Nonnull] = ACTIONS(2573), - [anon_sym_mutable] = ACTIONS(2573), - [anon_sym_constinit] = ACTIONS(2573), - [anon_sym_consteval] = ACTIONS(2573), - [anon_sym_alignas] = ACTIONS(2573), - [anon_sym__Alignas] = ACTIONS(2573), - [sym_primitive_type] = ACTIONS(2581), - [anon_sym_enum] = ACTIONS(2573), - [anon_sym_class] = ACTIONS(2573), - [anon_sym_struct] = ACTIONS(2573), - [anon_sym_union] = ACTIONS(2573), + [anon_sym_STAR] = ACTIONS(2556), + [anon_sym_AMP_AMP] = ACTIONS(2559), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2567), + [anon_sym_virtual] = ACTIONS(2569), + [anon_sym_extern] = ACTIONS(2569), + [anon_sym___attribute__] = ACTIONS(2569), + [anon_sym___attribute] = ACTIONS(2569), + [anon_sym_COLON_COLON] = ACTIONS(2571), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2559), + [anon_sym___declspec] = ACTIONS(2569), + [anon_sym___based] = ACTIONS(2569), + [anon_sym_signed] = ACTIONS(2569), + [anon_sym_unsigned] = ACTIONS(2569), + [anon_sym_long] = ACTIONS(2569), + [anon_sym_short] = ACTIONS(2569), + [anon_sym_LBRACK] = ACTIONS(2574), + [anon_sym_static] = ACTIONS(2569), + [anon_sym_register] = ACTIONS(2569), + [anon_sym_inline] = ACTIONS(2569), + [anon_sym___inline] = ACTIONS(2569), + [anon_sym___inline__] = ACTIONS(2569), + [anon_sym___forceinline] = ACTIONS(2569), + [anon_sym_thread_local] = ACTIONS(2569), + [anon_sym___thread] = ACTIONS(2569), + [anon_sym_const] = ACTIONS(2569), + [anon_sym_constexpr] = ACTIONS(2569), + [anon_sym_volatile] = ACTIONS(2569), + [anon_sym_restrict] = ACTIONS(2569), + [anon_sym___restrict__] = ACTIONS(2569), + [anon_sym__Atomic] = ACTIONS(2569), + [anon_sym__Noreturn] = ACTIONS(2569), + [anon_sym_noreturn] = ACTIONS(2569), + [anon_sym__Nonnull] = ACTIONS(2569), + [anon_sym_mutable] = ACTIONS(2569), + [anon_sym_constinit] = ACTIONS(2569), + [anon_sym_consteval] = ACTIONS(2569), + [anon_sym_alignas] = ACTIONS(2569), + [anon_sym__Alignas] = ACTIONS(2569), + [sym_primitive_type] = ACTIONS(2577), + [anon_sym_enum] = ACTIONS(2569), + [anon_sym_class] = ACTIONS(2569), + [anon_sym_struct] = ACTIONS(2569), + [anon_sym_union] = ACTIONS(2569), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -77178,12 +77318,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(123), [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2573), - [anon_sym_decltype] = ACTIONS(2584), - [anon_sym_explicit] = ACTIONS(2573), - [anon_sym_typename] = ACTIONS(2573), - [anon_sym_template] = ACTIONS(2587), - [anon_sym_operator] = ACTIONS(2573), + [sym_auto] = ACTIONS(2569), + [anon_sym_decltype] = ACTIONS(2580), + [anon_sym_explicit] = ACTIONS(2569), + [anon_sym_typename] = ACTIONS(2569), + [anon_sym_template] = ACTIONS(2583), + [anon_sym_operator] = ACTIONS(2569), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -77195,6 +77335,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, + [229] = { + [sym_catch_clause] = STATE(224), + [aux_sym_constructor_try_statement_repeat1] = STATE(224), + [sym_identifier] = ACTIONS(2586), + [aux_sym_preproc_include_token1] = ACTIONS(2586), + [aux_sym_preproc_def_token1] = ACTIONS(2586), + [aux_sym_preproc_if_token1] = ACTIONS(2586), + [aux_sym_preproc_if_token2] = ACTIONS(2586), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2586), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2586), + [aux_sym_preproc_else_token1] = ACTIONS(2586), + [aux_sym_preproc_elif_token1] = ACTIONS(2586), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2586), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2586), + [sym_preproc_directive] = ACTIONS(2586), + [anon_sym_LPAREN2] = ACTIONS(2588), + [anon_sym_BANG] = ACTIONS(2588), + [anon_sym_TILDE] = ACTIONS(2588), + [anon_sym_DASH] = ACTIONS(2586), + [anon_sym_PLUS] = ACTIONS(2586), + [anon_sym_STAR] = ACTIONS(2588), + [anon_sym_AMP_AMP] = ACTIONS(2588), + [anon_sym_AMP] = ACTIONS(2586), + [anon_sym_SEMI] = ACTIONS(2588), + [anon_sym___extension__] = ACTIONS(2586), + [anon_sym_typedef] = ACTIONS(2586), + [anon_sym_virtual] = ACTIONS(2586), + [anon_sym_extern] = ACTIONS(2586), + [anon_sym___attribute__] = ACTIONS(2586), + [anon_sym___attribute] = ACTIONS(2586), + [anon_sym_using] = ACTIONS(2586), + [anon_sym_COLON_COLON] = ACTIONS(2588), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2588), + [anon_sym___declspec] = ACTIONS(2586), + [anon_sym___based] = ACTIONS(2586), + [anon_sym___cdecl] = ACTIONS(2586), + [anon_sym___clrcall] = ACTIONS(2586), + [anon_sym___stdcall] = ACTIONS(2586), + [anon_sym___fastcall] = ACTIONS(2586), + [anon_sym___thiscall] = ACTIONS(2586), + [anon_sym___vectorcall] = ACTIONS(2586), + [anon_sym_LBRACE] = ACTIONS(2588), + [anon_sym_signed] = ACTIONS(2586), + [anon_sym_unsigned] = ACTIONS(2586), + [anon_sym_long] = ACTIONS(2586), + [anon_sym_short] = ACTIONS(2586), + [anon_sym_LBRACK] = ACTIONS(2586), + [anon_sym_static] = ACTIONS(2586), + [anon_sym_register] = ACTIONS(2586), + [anon_sym_inline] = ACTIONS(2586), + [anon_sym___inline] = ACTIONS(2586), + [anon_sym___inline__] = ACTIONS(2586), + [anon_sym___forceinline] = ACTIONS(2586), + [anon_sym_thread_local] = ACTIONS(2586), + [anon_sym___thread] = ACTIONS(2586), + [anon_sym_const] = ACTIONS(2586), + [anon_sym_constexpr] = ACTIONS(2586), + [anon_sym_volatile] = ACTIONS(2586), + [anon_sym_restrict] = ACTIONS(2586), + [anon_sym___restrict__] = ACTIONS(2586), + [anon_sym__Atomic] = ACTIONS(2586), + [anon_sym__Noreturn] = ACTIONS(2586), + [anon_sym_noreturn] = ACTIONS(2586), + [anon_sym__Nonnull] = ACTIONS(2586), + [anon_sym_mutable] = ACTIONS(2586), + [anon_sym_constinit] = ACTIONS(2586), + [anon_sym_consteval] = ACTIONS(2586), + [anon_sym_alignas] = ACTIONS(2586), + [anon_sym__Alignas] = ACTIONS(2586), + [sym_primitive_type] = ACTIONS(2586), + [anon_sym_enum] = ACTIONS(2586), + [anon_sym_class] = ACTIONS(2586), + [anon_sym_struct] = ACTIONS(2586), + [anon_sym_union] = ACTIONS(2586), + [anon_sym_if] = ACTIONS(2586), + [anon_sym_switch] = ACTIONS(2586), + [anon_sym_case] = ACTIONS(2586), + [anon_sym_default] = ACTIONS(2586), + [anon_sym_while] = ACTIONS(2586), + [anon_sym_do] = ACTIONS(2586), + [anon_sym_for] = ACTIONS(2586), + [anon_sym_return] = ACTIONS(2586), + [anon_sym_break] = ACTIONS(2586), + [anon_sym_continue] = ACTIONS(2586), + [anon_sym_goto] = ACTIONS(2586), + [anon_sym___try] = ACTIONS(2586), + [anon_sym___leave] = ACTIONS(2586), + [anon_sym_not] = ACTIONS(2586), + [anon_sym_compl] = ACTIONS(2586), + [anon_sym_DASH_DASH] = ACTIONS(2588), + [anon_sym_PLUS_PLUS] = ACTIONS(2588), + [anon_sym_sizeof] = ACTIONS(2586), + [anon_sym___alignof__] = ACTIONS(2586), + [anon_sym___alignof] = ACTIONS(2586), + [anon_sym__alignof] = ACTIONS(2586), + [anon_sym_alignof] = ACTIONS(2586), + [anon_sym__Alignof] = ACTIONS(2586), + [anon_sym_offsetof] = ACTIONS(2586), + [anon_sym__Generic] = ACTIONS(2586), + [anon_sym_asm] = ACTIONS(2586), + [anon_sym___asm__] = ACTIONS(2586), + [anon_sym___asm] = ACTIONS(2586), + [sym_number_literal] = ACTIONS(2588), + [anon_sym_L_SQUOTE] = ACTIONS(2588), + [anon_sym_u_SQUOTE] = ACTIONS(2588), + [anon_sym_U_SQUOTE] = ACTIONS(2588), + [anon_sym_u8_SQUOTE] = ACTIONS(2588), + [anon_sym_SQUOTE] = ACTIONS(2588), + [anon_sym_L_DQUOTE] = ACTIONS(2588), + [anon_sym_u_DQUOTE] = ACTIONS(2588), + [anon_sym_U_DQUOTE] = ACTIONS(2588), + [anon_sym_u8_DQUOTE] = ACTIONS(2588), + [anon_sym_DQUOTE] = ACTIONS(2588), + [sym_true] = ACTIONS(2586), + [sym_false] = ACTIONS(2586), + [anon_sym_NULL] = ACTIONS(2586), + [anon_sym_nullptr] = ACTIONS(2586), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2586), + [anon_sym_decltype] = ACTIONS(2586), + [anon_sym_explicit] = ACTIONS(2586), + [anon_sym_typename] = ACTIONS(2586), + [anon_sym_template] = ACTIONS(2586), + [anon_sym_operator] = ACTIONS(2586), + [anon_sym_try] = ACTIONS(2586), + [anon_sym_delete] = ACTIONS(2586), + [anon_sym_throw] = ACTIONS(2586), + [anon_sym_namespace] = ACTIONS(2586), + [anon_sym_static_assert] = ACTIONS(2586), + [anon_sym_concept] = ACTIONS(2586), + [anon_sym_co_return] = ACTIONS(2586), + [anon_sym_co_yield] = ACTIONS(2586), + [anon_sym_catch] = ACTIONS(2531), + [anon_sym_R_DQUOTE] = ACTIONS(2588), + [anon_sym_LR_DQUOTE] = ACTIONS(2588), + [anon_sym_uR_DQUOTE] = ACTIONS(2588), + [anon_sym_UR_DQUOTE] = ACTIONS(2588), + [anon_sym_u8R_DQUOTE] = ACTIONS(2588), + [anon_sym_co_await] = ACTIONS(2586), + [anon_sym_new] = ACTIONS(2586), + [anon_sym_requires] = ACTIONS(2586), + [sym_this] = ACTIONS(2586), + }, [230] = { [sym_catch_clause] = STATE(224), [aux_sym_constructor_try_statement_repeat1] = STATE(224), @@ -77327,7 +77610,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_concept] = ACTIONS(2590), [anon_sym_co_return] = ACTIONS(2590), [anon_sym_co_yield] = ACTIONS(2590), - [anon_sym_catch] = ACTIONS(2487), + [anon_sym_catch] = ACTIONS(2531), [anon_sym_R_DQUOTE] = ACTIONS(2592), [anon_sym_LR_DQUOTE] = ACTIONS(2592), [anon_sym_uR_DQUOTE] = ACTIONS(2592), @@ -77339,8 +77622,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(2590), }, [231] = { - [sym_catch_clause] = STATE(231), - [aux_sym_constructor_try_statement_repeat1] = STATE(231), + [sym_catch_clause] = STATE(232), + [aux_sym_constructor_try_statement_repeat1] = STATE(232), + [ts_builtin_sym_end] = ACTIONS(2529), + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym___extension__] = ACTIONS(2527), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym___attribute] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym___inline] = ACTIONS(2527), + [anon_sym___inline__] = ACTIONS(2527), + [anon_sym___forceinline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym___thread] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym___restrict__] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym__Noreturn] = ACTIONS(2527), + [anon_sym_noreturn] = ACTIONS(2527), + [anon_sym__Nonnull] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_alignas] = ACTIONS(2527), + [anon_sym__Alignas] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym___try] = ACTIONS(2527), + [anon_sym___leave] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [anon_sym___alignof__] = ACTIONS(2527), + [anon_sym___alignof] = ACTIONS(2527), + [anon_sym__alignof] = ACTIONS(2527), + [anon_sym_alignof] = ACTIONS(2527), + [anon_sym__Alignof] = ACTIONS(2527), + [anon_sym_offsetof] = ACTIONS(2527), + [anon_sym__Generic] = ACTIONS(2527), + [anon_sym_asm] = ACTIONS(2527), + [anon_sym___asm__] = ACTIONS(2527), + [anon_sym___asm] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [anon_sym_NULL] = ACTIONS(2527), + [anon_sym_nullptr] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_export] = ACTIONS(2527), + [anon_sym_module] = ACTIONS(2527), + [anon_sym_import] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_catch] = ACTIONS(2594), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + }, + [232] = { + [sym_catch_clause] = STATE(232), + [aux_sym_constructor_try_statement_repeat1] = STATE(232), [ts_builtin_sym_end] = ACTIONS(2478), [sym_identifier] = ACTIONS(2476), [aux_sym_preproc_include_token1] = ACTIONS(2476), @@ -77470,7 +77896,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_concept] = ACTIONS(2476), [anon_sym_co_return] = ACTIONS(2476), [anon_sym_co_yield] = ACTIONS(2476), - [anon_sym_catch] = ACTIONS(2594), + [anon_sym_catch] = ACTIONS(2596), [anon_sym_R_DQUOTE] = ACTIONS(2478), [anon_sym_LR_DQUOTE] = ACTIONS(2478), [anon_sym_uR_DQUOTE] = ACTIONS(2478), @@ -77481,387 +77907,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2476), [sym_this] = ACTIONS(2476), }, - [232] = { - [sym_expression] = STATE(4294), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(2551), - [anon_sym_LPAREN2] = ACTIONS(2554), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(2557), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(2560), - [anon_sym_AMP_AMP] = ACTIONS(2563), - [anon_sym_AMP] = ACTIONS(2565), - [anon_sym___extension__] = ACTIONS(2568), - [anon_sym_typedef] = ACTIONS(2597), - [anon_sym_virtual] = ACTIONS(2573), - [anon_sym_extern] = ACTIONS(2573), - [anon_sym___attribute__] = ACTIONS(2573), - [anon_sym___attribute] = ACTIONS(2573), - [anon_sym_COLON_COLON] = ACTIONS(2575), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2563), - [anon_sym___declspec] = ACTIONS(2573), - [anon_sym___based] = ACTIONS(2573), - [anon_sym_signed] = ACTIONS(2573), - [anon_sym_unsigned] = ACTIONS(2573), - [anon_sym_long] = ACTIONS(2573), - [anon_sym_short] = ACTIONS(2573), - [anon_sym_LBRACK] = ACTIONS(2578), - [anon_sym_static] = ACTIONS(2573), - [anon_sym_register] = ACTIONS(2573), - [anon_sym_inline] = ACTIONS(2573), - [anon_sym___inline] = ACTIONS(2573), - [anon_sym___inline__] = ACTIONS(2573), - [anon_sym___forceinline] = ACTIONS(2573), - [anon_sym_thread_local] = ACTIONS(2573), - [anon_sym___thread] = ACTIONS(2573), - [anon_sym_const] = ACTIONS(2573), - [anon_sym_constexpr] = ACTIONS(2573), - [anon_sym_volatile] = ACTIONS(2573), - [anon_sym_restrict] = ACTIONS(2573), - [anon_sym___restrict__] = ACTIONS(2573), - [anon_sym__Atomic] = ACTIONS(2573), - [anon_sym__Noreturn] = ACTIONS(2573), - [anon_sym_noreturn] = ACTIONS(2573), - [anon_sym__Nonnull] = ACTIONS(2573), - [anon_sym_mutable] = ACTIONS(2573), - [anon_sym_constinit] = ACTIONS(2573), - [anon_sym_consteval] = ACTIONS(2573), - [anon_sym_alignas] = ACTIONS(2573), - [anon_sym__Alignas] = ACTIONS(2573), - [sym_primitive_type] = ACTIONS(2581), - [anon_sym_enum] = ACTIONS(2573), - [anon_sym_class] = ACTIONS(2573), - [anon_sym_struct] = ACTIONS(2573), - [anon_sym_union] = ACTIONS(2573), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2573), - [anon_sym_decltype] = ACTIONS(2584), - [anon_sym_explicit] = ACTIONS(2573), - [anon_sym_typename] = ACTIONS(2573), - [anon_sym_template] = ACTIONS(2587), - [anon_sym_operator] = ACTIONS(2573), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), - }, [233] = { - [sym_catch_clause] = STATE(231), - [aux_sym_constructor_try_statement_repeat1] = STATE(231), - [ts_builtin_sym_end] = ACTIONS(2485), - [sym_identifier] = ACTIONS(2483), - [aux_sym_preproc_include_token1] = ACTIONS(2483), - [aux_sym_preproc_def_token1] = ACTIONS(2483), - [aux_sym_preproc_if_token1] = ACTIONS(2483), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2483), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2483), - [sym_preproc_directive] = ACTIONS(2483), - [anon_sym_LPAREN2] = ACTIONS(2485), - [anon_sym_BANG] = ACTIONS(2485), - [anon_sym_TILDE] = ACTIONS(2485), - [anon_sym_DASH] = ACTIONS(2483), - [anon_sym_PLUS] = ACTIONS(2483), - [anon_sym_STAR] = ACTIONS(2485), - [anon_sym_AMP_AMP] = ACTIONS(2485), - [anon_sym_AMP] = ACTIONS(2483), - [anon_sym_SEMI] = ACTIONS(2485), - [anon_sym___extension__] = ACTIONS(2483), - [anon_sym_typedef] = ACTIONS(2483), - [anon_sym_virtual] = ACTIONS(2483), - [anon_sym_extern] = ACTIONS(2483), - [anon_sym___attribute__] = ACTIONS(2483), - [anon_sym___attribute] = ACTIONS(2483), - [anon_sym_using] = ACTIONS(2483), - [anon_sym_COLON_COLON] = ACTIONS(2485), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2485), - [anon_sym___declspec] = ACTIONS(2483), - [anon_sym___based] = ACTIONS(2483), - [anon_sym___cdecl] = ACTIONS(2483), - [anon_sym___clrcall] = ACTIONS(2483), - [anon_sym___stdcall] = ACTIONS(2483), - [anon_sym___fastcall] = ACTIONS(2483), - [anon_sym___thiscall] = ACTIONS(2483), - [anon_sym___vectorcall] = ACTIONS(2483), - [anon_sym_LBRACE] = ACTIONS(2485), - [anon_sym_signed] = ACTIONS(2483), - [anon_sym_unsigned] = ACTIONS(2483), - [anon_sym_long] = ACTIONS(2483), - [anon_sym_short] = ACTIONS(2483), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_static] = ACTIONS(2483), - [anon_sym_register] = ACTIONS(2483), - [anon_sym_inline] = ACTIONS(2483), - [anon_sym___inline] = ACTIONS(2483), - [anon_sym___inline__] = ACTIONS(2483), - [anon_sym___forceinline] = ACTIONS(2483), - [anon_sym_thread_local] = ACTIONS(2483), - [anon_sym___thread] = ACTIONS(2483), - [anon_sym_const] = ACTIONS(2483), - [anon_sym_constexpr] = ACTIONS(2483), - [anon_sym_volatile] = ACTIONS(2483), - [anon_sym_restrict] = ACTIONS(2483), - [anon_sym___restrict__] = ACTIONS(2483), - [anon_sym__Atomic] = ACTIONS(2483), - [anon_sym__Noreturn] = ACTIONS(2483), - [anon_sym_noreturn] = ACTIONS(2483), - [anon_sym__Nonnull] = ACTIONS(2483), - [anon_sym_mutable] = ACTIONS(2483), - [anon_sym_constinit] = ACTIONS(2483), - [anon_sym_consteval] = ACTIONS(2483), - [anon_sym_alignas] = ACTIONS(2483), - [anon_sym__Alignas] = ACTIONS(2483), - [sym_primitive_type] = ACTIONS(2483), - [anon_sym_enum] = ACTIONS(2483), - [anon_sym_class] = ACTIONS(2483), - [anon_sym_struct] = ACTIONS(2483), - [anon_sym_union] = ACTIONS(2483), - [anon_sym_if] = ACTIONS(2483), - [anon_sym_else] = ACTIONS(2483), - [anon_sym_switch] = ACTIONS(2483), - [anon_sym_case] = ACTIONS(2483), - [anon_sym_default] = ACTIONS(2483), - [anon_sym_while] = ACTIONS(2483), - [anon_sym_do] = ACTIONS(2483), - [anon_sym_for] = ACTIONS(2483), - [anon_sym_return] = ACTIONS(2483), - [anon_sym_break] = ACTIONS(2483), - [anon_sym_continue] = ACTIONS(2483), - [anon_sym_goto] = ACTIONS(2483), - [anon_sym___try] = ACTIONS(2483), - [anon_sym___leave] = ACTIONS(2483), - [anon_sym_not] = ACTIONS(2483), - [anon_sym_compl] = ACTIONS(2483), - [anon_sym_DASH_DASH] = ACTIONS(2485), - [anon_sym_PLUS_PLUS] = ACTIONS(2485), - [anon_sym_sizeof] = ACTIONS(2483), - [anon_sym___alignof__] = ACTIONS(2483), - [anon_sym___alignof] = ACTIONS(2483), - [anon_sym__alignof] = ACTIONS(2483), - [anon_sym_alignof] = ACTIONS(2483), - [anon_sym__Alignof] = ACTIONS(2483), - [anon_sym_offsetof] = ACTIONS(2483), - [anon_sym__Generic] = ACTIONS(2483), - [anon_sym_asm] = ACTIONS(2483), - [anon_sym___asm__] = ACTIONS(2483), - [anon_sym___asm] = ACTIONS(2483), - [sym_number_literal] = ACTIONS(2485), - [anon_sym_L_SQUOTE] = ACTIONS(2485), - [anon_sym_u_SQUOTE] = ACTIONS(2485), - [anon_sym_U_SQUOTE] = ACTIONS(2485), - [anon_sym_u8_SQUOTE] = ACTIONS(2485), - [anon_sym_SQUOTE] = ACTIONS(2485), - [anon_sym_L_DQUOTE] = ACTIONS(2485), - [anon_sym_u_DQUOTE] = ACTIONS(2485), - [anon_sym_U_DQUOTE] = ACTIONS(2485), - [anon_sym_u8_DQUOTE] = ACTIONS(2485), - [anon_sym_DQUOTE] = ACTIONS(2485), - [sym_true] = ACTIONS(2483), - [sym_false] = ACTIONS(2483), - [anon_sym_NULL] = ACTIONS(2483), - [anon_sym_nullptr] = ACTIONS(2483), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2483), - [anon_sym_decltype] = ACTIONS(2483), - [anon_sym_explicit] = ACTIONS(2483), - [anon_sym_typename] = ACTIONS(2483), - [anon_sym_export] = ACTIONS(2483), - [anon_sym_module] = ACTIONS(2483), - [anon_sym_import] = ACTIONS(2483), - [anon_sym_template] = ACTIONS(2483), - [anon_sym_operator] = ACTIONS(2483), - [anon_sym_try] = ACTIONS(2483), - [anon_sym_delete] = ACTIONS(2483), - [anon_sym_throw] = ACTIONS(2483), - [anon_sym_namespace] = ACTIONS(2483), - [anon_sym_static_assert] = ACTIONS(2483), - [anon_sym_concept] = ACTIONS(2483), - [anon_sym_co_return] = ACTIONS(2483), - [anon_sym_co_yield] = ACTIONS(2483), - [anon_sym_catch] = ACTIONS(2599), - [anon_sym_R_DQUOTE] = ACTIONS(2485), - [anon_sym_LR_DQUOTE] = ACTIONS(2485), - [anon_sym_uR_DQUOTE] = ACTIONS(2485), - [anon_sym_UR_DQUOTE] = ACTIONS(2485), - [anon_sym_u8R_DQUOTE] = ACTIONS(2485), - [anon_sym_co_await] = ACTIONS(2483), - [anon_sym_new] = ACTIONS(2483), - [anon_sym_requires] = ACTIONS(2483), - [sym_this] = ACTIONS(2483), - }, - [234] = { - [sym_expression] = STATE(4294), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(2551), - [anon_sym_LPAREN2] = ACTIONS(2554), + [sym_expression] = STATE(4345), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(2547), + [anon_sym_LPAREN2] = ACTIONS(2550), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(2557), + [anon_sym_TILDE] = ACTIONS(2553), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(2560), - [anon_sym_AMP_AMP] = ACTIONS(2563), - [anon_sym_AMP] = ACTIONS(2565), - [anon_sym___extension__] = ACTIONS(2568), - [anon_sym_typedef] = ACTIONS(2601), - [anon_sym_virtual] = ACTIONS(2573), - [anon_sym_extern] = ACTIONS(2573), - [anon_sym___attribute__] = ACTIONS(2573), - [anon_sym___attribute] = ACTIONS(2573), - [anon_sym_COLON_COLON] = ACTIONS(2575), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2563), - [anon_sym___declspec] = ACTIONS(2573), - [anon_sym___based] = ACTIONS(2573), - [anon_sym_signed] = ACTIONS(2573), - [anon_sym_unsigned] = ACTIONS(2573), - [anon_sym_long] = ACTIONS(2573), - [anon_sym_short] = ACTIONS(2573), - [anon_sym_LBRACK] = ACTIONS(2578), - [anon_sym_static] = ACTIONS(2573), - [anon_sym_register] = ACTIONS(2573), - [anon_sym_inline] = ACTIONS(2573), - [anon_sym___inline] = ACTIONS(2573), - [anon_sym___inline__] = ACTIONS(2573), - [anon_sym___forceinline] = ACTIONS(2573), - [anon_sym_thread_local] = ACTIONS(2573), - [anon_sym___thread] = ACTIONS(2573), - [anon_sym_const] = ACTIONS(2573), - [anon_sym_constexpr] = ACTIONS(2573), - [anon_sym_volatile] = ACTIONS(2573), - [anon_sym_restrict] = ACTIONS(2573), - [anon_sym___restrict__] = ACTIONS(2573), - [anon_sym__Atomic] = ACTIONS(2573), - [anon_sym__Noreturn] = ACTIONS(2573), - [anon_sym_noreturn] = ACTIONS(2573), - [anon_sym__Nonnull] = ACTIONS(2573), - [anon_sym_mutable] = ACTIONS(2573), - [anon_sym_constinit] = ACTIONS(2573), - [anon_sym_consteval] = ACTIONS(2573), - [anon_sym_alignas] = ACTIONS(2573), - [anon_sym__Alignas] = ACTIONS(2573), - [sym_primitive_type] = ACTIONS(2581), - [anon_sym_enum] = ACTIONS(2573), - [anon_sym_class] = ACTIONS(2573), - [anon_sym_struct] = ACTIONS(2573), - [anon_sym_union] = ACTIONS(2573), + [anon_sym_STAR] = ACTIONS(2556), + [anon_sym_AMP_AMP] = ACTIONS(2559), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2599), + [anon_sym_virtual] = ACTIONS(2569), + [anon_sym_extern] = ACTIONS(2569), + [anon_sym___attribute__] = ACTIONS(2569), + [anon_sym___attribute] = ACTIONS(2569), + [anon_sym_COLON_COLON] = ACTIONS(2571), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2559), + [anon_sym___declspec] = ACTIONS(2569), + [anon_sym___based] = ACTIONS(2569), + [anon_sym_signed] = ACTIONS(2569), + [anon_sym_unsigned] = ACTIONS(2569), + [anon_sym_long] = ACTIONS(2569), + [anon_sym_short] = ACTIONS(2569), + [anon_sym_LBRACK] = ACTIONS(2574), + [anon_sym_static] = ACTIONS(2569), + [anon_sym_register] = ACTIONS(2569), + [anon_sym_inline] = ACTIONS(2569), + [anon_sym___inline] = ACTIONS(2569), + [anon_sym___inline__] = ACTIONS(2569), + [anon_sym___forceinline] = ACTIONS(2569), + [anon_sym_thread_local] = ACTIONS(2569), + [anon_sym___thread] = ACTIONS(2569), + [anon_sym_const] = ACTIONS(2569), + [anon_sym_constexpr] = ACTIONS(2569), + [anon_sym_volatile] = ACTIONS(2569), + [anon_sym_restrict] = ACTIONS(2569), + [anon_sym___restrict__] = ACTIONS(2569), + [anon_sym__Atomic] = ACTIONS(2569), + [anon_sym__Noreturn] = ACTIONS(2569), + [anon_sym_noreturn] = ACTIONS(2569), + [anon_sym__Nonnull] = ACTIONS(2569), + [anon_sym_mutable] = ACTIONS(2569), + [anon_sym_constinit] = ACTIONS(2569), + [anon_sym_consteval] = ACTIONS(2569), + [anon_sym_alignas] = ACTIONS(2569), + [anon_sym__Alignas] = ACTIONS(2569), + [sym_primitive_type] = ACTIONS(2577), + [anon_sym_enum] = ACTIONS(2569), + [anon_sym_class] = ACTIONS(2569), + [anon_sym_struct] = ACTIONS(2569), + [anon_sym_union] = ACTIONS(2569), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -77893,12 +78033,155 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(123), [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2573), - [anon_sym_decltype] = ACTIONS(2584), - [anon_sym_explicit] = ACTIONS(2573), - [anon_sym_typename] = ACTIONS(2573), - [anon_sym_template] = ACTIONS(2587), - [anon_sym_operator] = ACTIONS(2573), + [sym_auto] = ACTIONS(2569), + [anon_sym_decltype] = ACTIONS(2580), + [anon_sym_explicit] = ACTIONS(2569), + [anon_sym_typename] = ACTIONS(2569), + [anon_sym_template] = ACTIONS(2583), + [anon_sym_operator] = ACTIONS(2569), + [anon_sym_delete] = ACTIONS(145), + [anon_sym_R_DQUOTE] = ACTIONS(159), + [anon_sym_LR_DQUOTE] = ACTIONS(159), + [anon_sym_uR_DQUOTE] = ACTIONS(159), + [anon_sym_UR_DQUOTE] = ACTIONS(159), + [anon_sym_u8R_DQUOTE] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), + }, + [234] = { + [sym_expression] = STATE(4345), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(2547), + [anon_sym_LPAREN2] = ACTIONS(2550), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(2553), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(2556), + [anon_sym_AMP_AMP] = ACTIONS(2559), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2601), + [anon_sym_virtual] = ACTIONS(2569), + [anon_sym_extern] = ACTIONS(2569), + [anon_sym___attribute__] = ACTIONS(2569), + [anon_sym___attribute] = ACTIONS(2569), + [anon_sym_COLON_COLON] = ACTIONS(2571), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2559), + [anon_sym___declspec] = ACTIONS(2569), + [anon_sym___based] = ACTIONS(2569), + [anon_sym_signed] = ACTIONS(2569), + [anon_sym_unsigned] = ACTIONS(2569), + [anon_sym_long] = ACTIONS(2569), + [anon_sym_short] = ACTIONS(2569), + [anon_sym_LBRACK] = ACTIONS(2574), + [anon_sym_static] = ACTIONS(2569), + [anon_sym_register] = ACTIONS(2569), + [anon_sym_inline] = ACTIONS(2569), + [anon_sym___inline] = ACTIONS(2569), + [anon_sym___inline__] = ACTIONS(2569), + [anon_sym___forceinline] = ACTIONS(2569), + [anon_sym_thread_local] = ACTIONS(2569), + [anon_sym___thread] = ACTIONS(2569), + [anon_sym_const] = ACTIONS(2569), + [anon_sym_constexpr] = ACTIONS(2569), + [anon_sym_volatile] = ACTIONS(2569), + [anon_sym_restrict] = ACTIONS(2569), + [anon_sym___restrict__] = ACTIONS(2569), + [anon_sym__Atomic] = ACTIONS(2569), + [anon_sym__Noreturn] = ACTIONS(2569), + [anon_sym_noreturn] = ACTIONS(2569), + [anon_sym__Nonnull] = ACTIONS(2569), + [anon_sym_mutable] = ACTIONS(2569), + [anon_sym_constinit] = ACTIONS(2569), + [anon_sym_consteval] = ACTIONS(2569), + [anon_sym_alignas] = ACTIONS(2569), + [anon_sym__Alignas] = ACTIONS(2569), + [sym_primitive_type] = ACTIONS(2577), + [anon_sym_enum] = ACTIONS(2569), + [anon_sym_class] = ACTIONS(2569), + [anon_sym_struct] = ACTIONS(2569), + [anon_sym_union] = ACTIONS(2569), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [anon_sym___alignof__] = ACTIONS(107), + [anon_sym___alignof] = ACTIONS(107), + [anon_sym__alignof] = ACTIONS(107), + [anon_sym_alignof] = ACTIONS(107), + [anon_sym__Alignof] = ACTIONS(107), + [anon_sym_offsetof] = ACTIONS(109), + [anon_sym__Generic] = ACTIONS(111), + [anon_sym_asm] = ACTIONS(113), + [anon_sym___asm__] = ACTIONS(113), + [anon_sym___asm] = ACTIONS(113), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(117), + [anon_sym_u_SQUOTE] = ACTIONS(117), + [anon_sym_U_SQUOTE] = ACTIONS(117), + [anon_sym_u8_SQUOTE] = ACTIONS(117), + [anon_sym_SQUOTE] = ACTIONS(117), + [anon_sym_L_DQUOTE] = ACTIONS(119), + [anon_sym_u_DQUOTE] = ACTIONS(119), + [anon_sym_U_DQUOTE] = ACTIONS(119), + [anon_sym_u8_DQUOTE] = ACTIONS(119), + [anon_sym_DQUOTE] = ACTIONS(119), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(123), + [anon_sym_nullptr] = ACTIONS(123), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2569), + [anon_sym_decltype] = ACTIONS(2580), + [anon_sym_explicit] = ACTIONS(2569), + [anon_sym_typename] = ACTIONS(2569), + [anon_sym_template] = ACTIONS(2583), + [anon_sym_operator] = ACTIONS(2569), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -77911,100 +78194,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [235] = { - [sym_expression] = STATE(4294), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(2551), - [anon_sym_LPAREN2] = ACTIONS(2554), + [sym_expression] = STATE(4345), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(2547), + [anon_sym_LPAREN2] = ACTIONS(2550), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(2557), + [anon_sym_TILDE] = ACTIONS(2553), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(2560), - [anon_sym_AMP_AMP] = ACTIONS(2563), - [anon_sym_AMP] = ACTIONS(2565), - [anon_sym___extension__] = ACTIONS(2568), + [anon_sym_STAR] = ACTIONS(2556), + [anon_sym_AMP_AMP] = ACTIONS(2559), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym___extension__] = ACTIONS(2564), [anon_sym_typedef] = ACTIONS(2603), - [anon_sym_virtual] = ACTIONS(2573), - [anon_sym_extern] = ACTIONS(2573), - [anon_sym___attribute__] = ACTIONS(2573), - [anon_sym___attribute] = ACTIONS(2573), - [anon_sym_COLON_COLON] = ACTIONS(2575), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2563), - [anon_sym___declspec] = ACTIONS(2573), - [anon_sym___based] = ACTIONS(2573), - [anon_sym_signed] = ACTIONS(2573), - [anon_sym_unsigned] = ACTIONS(2573), - [anon_sym_long] = ACTIONS(2573), - [anon_sym_short] = ACTIONS(2573), - [anon_sym_LBRACK] = ACTIONS(2578), - [anon_sym_static] = ACTIONS(2573), - [anon_sym_register] = ACTIONS(2573), - [anon_sym_inline] = ACTIONS(2573), - [anon_sym___inline] = ACTIONS(2573), - [anon_sym___inline__] = ACTIONS(2573), - [anon_sym___forceinline] = ACTIONS(2573), - [anon_sym_thread_local] = ACTIONS(2573), - [anon_sym___thread] = ACTIONS(2573), - [anon_sym_const] = ACTIONS(2573), - [anon_sym_constexpr] = ACTIONS(2573), - [anon_sym_volatile] = ACTIONS(2573), - [anon_sym_restrict] = ACTIONS(2573), - [anon_sym___restrict__] = ACTIONS(2573), - [anon_sym__Atomic] = ACTIONS(2573), - [anon_sym__Noreturn] = ACTIONS(2573), - [anon_sym_noreturn] = ACTIONS(2573), - [anon_sym__Nonnull] = ACTIONS(2573), - [anon_sym_mutable] = ACTIONS(2573), - [anon_sym_constinit] = ACTIONS(2573), - [anon_sym_consteval] = ACTIONS(2573), - [anon_sym_alignas] = ACTIONS(2573), - [anon_sym__Alignas] = ACTIONS(2573), - [sym_primitive_type] = ACTIONS(2581), - [anon_sym_enum] = ACTIONS(2573), - [anon_sym_class] = ACTIONS(2573), - [anon_sym_struct] = ACTIONS(2573), - [anon_sym_union] = ACTIONS(2573), + [anon_sym_virtual] = ACTIONS(2569), + [anon_sym_extern] = ACTIONS(2569), + [anon_sym___attribute__] = ACTIONS(2569), + [anon_sym___attribute] = ACTIONS(2569), + [anon_sym_COLON_COLON] = ACTIONS(2571), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2559), + [anon_sym___declspec] = ACTIONS(2569), + [anon_sym___based] = ACTIONS(2569), + [anon_sym_signed] = ACTIONS(2569), + [anon_sym_unsigned] = ACTIONS(2569), + [anon_sym_long] = ACTIONS(2569), + [anon_sym_short] = ACTIONS(2569), + [anon_sym_LBRACK] = ACTIONS(2574), + [anon_sym_static] = ACTIONS(2569), + [anon_sym_register] = ACTIONS(2569), + [anon_sym_inline] = ACTIONS(2569), + [anon_sym___inline] = ACTIONS(2569), + [anon_sym___inline__] = ACTIONS(2569), + [anon_sym___forceinline] = ACTIONS(2569), + [anon_sym_thread_local] = ACTIONS(2569), + [anon_sym___thread] = ACTIONS(2569), + [anon_sym_const] = ACTIONS(2569), + [anon_sym_constexpr] = ACTIONS(2569), + [anon_sym_volatile] = ACTIONS(2569), + [anon_sym_restrict] = ACTIONS(2569), + [anon_sym___restrict__] = ACTIONS(2569), + [anon_sym__Atomic] = ACTIONS(2569), + [anon_sym__Noreturn] = ACTIONS(2569), + [anon_sym_noreturn] = ACTIONS(2569), + [anon_sym__Nonnull] = ACTIONS(2569), + [anon_sym_mutable] = ACTIONS(2569), + [anon_sym_constinit] = ACTIONS(2569), + [anon_sym_consteval] = ACTIONS(2569), + [anon_sym_alignas] = ACTIONS(2569), + [anon_sym__Alignas] = ACTIONS(2569), + [sym_primitive_type] = ACTIONS(2577), + [anon_sym_enum] = ACTIONS(2569), + [anon_sym_class] = ACTIONS(2569), + [anon_sym_struct] = ACTIONS(2569), + [anon_sym_union] = ACTIONS(2569), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -78036,12 +78319,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(123), [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2573), - [anon_sym_decltype] = ACTIONS(2584), - [anon_sym_explicit] = ACTIONS(2573), - [anon_sym_typename] = ACTIONS(2573), - [anon_sym_template] = ACTIONS(2587), - [anon_sym_operator] = ACTIONS(2573), + [sym_auto] = ACTIONS(2569), + [anon_sym_decltype] = ACTIONS(2580), + [anon_sym_explicit] = ACTIONS(2569), + [anon_sym_typename] = ACTIONS(2569), + [anon_sym_template] = ACTIONS(2583), + [anon_sym_operator] = ACTIONS(2569), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -78054,57 +78337,483 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [236] = { - [sym_expression] = STATE(3578), - [sym__string] = STATE(3714), - [sym_conditional_expression] = STATE(3908), - [sym_assignment_expression] = STATE(3908), - [sym_pointer_expression] = STATE(3506), - [sym_unary_expression] = STATE(3908), - [sym_binary_expression] = STATE(3908), - [sym_update_expression] = STATE(3908), - [sym_cast_expression] = STATE(3908), - [sym_sizeof_expression] = STATE(3908), - [sym_alignof_expression] = STATE(3908), - [sym_offsetof_expression] = STATE(3908), - [sym_generic_expression] = STATE(3908), - [sym_subscript_expression] = STATE(3506), - [sym_call_expression] = STATE(3506), - [sym_gnu_asm_expression] = STATE(3908), - [sym_extension_expression] = STATE(3908), - [sym_field_expression] = STATE(3506), - [sym_compound_literal_expression] = STATE(3908), - [sym_parenthesized_expression] = STATE(3506), - [sym_initializer_list] = STATE(3864), - [sym_char_literal] = STATE(3714), - [sym_concatenated_string] = STATE(3714), - [sym_string_literal] = STATE(2566), - [sym_null] = STATE(3908), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7868), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3908), - [sym_raw_string_literal] = STATE(2566), - [sym_co_await_expression] = STATE(3908), - [sym_new_expression] = STATE(3908), - [sym_delete_expression] = STATE(3908), - [sym_requires_clause] = STATE(3908), - [sym_requires_expression] = STATE(3908), - [sym_lambda_expression] = STATE(3908), - [sym_lambda_capture_specifier] = STATE(5415), - [sym_fold_expression] = STATE(3908), - [sym_parameter_pack_expansion] = STATE(3908), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3506), - [sym_qualified_type_identifier] = STATE(7868), - [sym_user_defined_literal] = STATE(3506), + [sym_else_clause] = STATE(258), [sym_identifier] = ACTIONS(2605), + [aux_sym_preproc_include_token1] = ACTIONS(2605), + [aux_sym_preproc_def_token1] = ACTIONS(2605), + [aux_sym_preproc_if_token1] = ACTIONS(2605), + [aux_sym_preproc_if_token2] = ACTIONS(2605), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2605), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2605), + [aux_sym_preproc_else_token1] = ACTIONS(2605), + [aux_sym_preproc_elif_token1] = ACTIONS(2605), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2605), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2605), + [sym_preproc_directive] = ACTIONS(2605), + [anon_sym_LPAREN2] = ACTIONS(2607), + [anon_sym_BANG] = ACTIONS(2607), + [anon_sym_TILDE] = ACTIONS(2607), + [anon_sym_DASH] = ACTIONS(2605), + [anon_sym_PLUS] = ACTIONS(2605), + [anon_sym_STAR] = ACTIONS(2607), + [anon_sym_AMP_AMP] = ACTIONS(2607), + [anon_sym_AMP] = ACTIONS(2605), + [anon_sym_SEMI] = ACTIONS(2607), + [anon_sym___extension__] = ACTIONS(2605), + [anon_sym_typedef] = ACTIONS(2605), + [anon_sym_virtual] = ACTIONS(2605), + [anon_sym_extern] = ACTIONS(2605), + [anon_sym___attribute__] = ACTIONS(2605), + [anon_sym___attribute] = ACTIONS(2605), + [anon_sym_using] = ACTIONS(2605), + [anon_sym_COLON_COLON] = ACTIONS(2607), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2607), + [anon_sym___declspec] = ACTIONS(2605), + [anon_sym___based] = ACTIONS(2605), + [anon_sym___cdecl] = ACTIONS(2605), + [anon_sym___clrcall] = ACTIONS(2605), + [anon_sym___stdcall] = ACTIONS(2605), + [anon_sym___fastcall] = ACTIONS(2605), + [anon_sym___thiscall] = ACTIONS(2605), + [anon_sym___vectorcall] = ACTIONS(2605), + [anon_sym_LBRACE] = ACTIONS(2607), + [anon_sym_signed] = ACTIONS(2605), + [anon_sym_unsigned] = ACTIONS(2605), + [anon_sym_long] = ACTIONS(2605), + [anon_sym_short] = ACTIONS(2605), + [anon_sym_LBRACK] = ACTIONS(2605), + [anon_sym_static] = ACTIONS(2605), + [anon_sym_register] = ACTIONS(2605), + [anon_sym_inline] = ACTIONS(2605), + [anon_sym___inline] = ACTIONS(2605), + [anon_sym___inline__] = ACTIONS(2605), + [anon_sym___forceinline] = ACTIONS(2605), + [anon_sym_thread_local] = ACTIONS(2605), + [anon_sym___thread] = ACTIONS(2605), + [anon_sym_const] = ACTIONS(2605), + [anon_sym_constexpr] = ACTIONS(2605), + [anon_sym_volatile] = ACTIONS(2605), + [anon_sym_restrict] = ACTIONS(2605), + [anon_sym___restrict__] = ACTIONS(2605), + [anon_sym__Atomic] = ACTIONS(2605), + [anon_sym__Noreturn] = ACTIONS(2605), + [anon_sym_noreturn] = ACTIONS(2605), + [anon_sym__Nonnull] = ACTIONS(2605), + [anon_sym_mutable] = ACTIONS(2605), + [anon_sym_constinit] = ACTIONS(2605), + [anon_sym_consteval] = ACTIONS(2605), + [anon_sym_alignas] = ACTIONS(2605), + [anon_sym__Alignas] = ACTIONS(2605), + [sym_primitive_type] = ACTIONS(2605), + [anon_sym_enum] = ACTIONS(2605), + [anon_sym_class] = ACTIONS(2605), + [anon_sym_struct] = ACTIONS(2605), + [anon_sym_union] = ACTIONS(2605), + [anon_sym_if] = ACTIONS(2605), + [anon_sym_else] = ACTIONS(2609), + [anon_sym_switch] = ACTIONS(2605), + [anon_sym_case] = ACTIONS(2605), + [anon_sym_default] = ACTIONS(2605), + [anon_sym_while] = ACTIONS(2605), + [anon_sym_do] = ACTIONS(2605), + [anon_sym_for] = ACTIONS(2605), + [anon_sym_return] = ACTIONS(2605), + [anon_sym_break] = ACTIONS(2605), + [anon_sym_continue] = ACTIONS(2605), + [anon_sym_goto] = ACTIONS(2605), + [anon_sym___try] = ACTIONS(2605), + [anon_sym___leave] = ACTIONS(2605), + [anon_sym_not] = ACTIONS(2605), + [anon_sym_compl] = ACTIONS(2605), + [anon_sym_DASH_DASH] = ACTIONS(2607), + [anon_sym_PLUS_PLUS] = ACTIONS(2607), + [anon_sym_sizeof] = ACTIONS(2605), + [anon_sym___alignof__] = ACTIONS(2605), + [anon_sym___alignof] = ACTIONS(2605), + [anon_sym__alignof] = ACTIONS(2605), + [anon_sym_alignof] = ACTIONS(2605), + [anon_sym__Alignof] = ACTIONS(2605), + [anon_sym_offsetof] = ACTIONS(2605), + [anon_sym__Generic] = ACTIONS(2605), + [anon_sym_asm] = ACTIONS(2605), + [anon_sym___asm__] = ACTIONS(2605), + [anon_sym___asm] = ACTIONS(2605), + [sym_number_literal] = ACTIONS(2607), + [anon_sym_L_SQUOTE] = ACTIONS(2607), + [anon_sym_u_SQUOTE] = ACTIONS(2607), + [anon_sym_U_SQUOTE] = ACTIONS(2607), + [anon_sym_u8_SQUOTE] = ACTIONS(2607), + [anon_sym_SQUOTE] = ACTIONS(2607), + [anon_sym_L_DQUOTE] = ACTIONS(2607), + [anon_sym_u_DQUOTE] = ACTIONS(2607), + [anon_sym_U_DQUOTE] = ACTIONS(2607), + [anon_sym_u8_DQUOTE] = ACTIONS(2607), + [anon_sym_DQUOTE] = ACTIONS(2607), + [sym_true] = ACTIONS(2605), + [sym_false] = ACTIONS(2605), + [anon_sym_NULL] = ACTIONS(2605), + [anon_sym_nullptr] = ACTIONS(2605), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2605), + [anon_sym_decltype] = ACTIONS(2605), + [anon_sym_explicit] = ACTIONS(2605), + [anon_sym_typename] = ACTIONS(2605), + [anon_sym_template] = ACTIONS(2605), + [anon_sym_operator] = ACTIONS(2605), + [anon_sym_try] = ACTIONS(2605), + [anon_sym_delete] = ACTIONS(2605), + [anon_sym_throw] = ACTIONS(2605), + [anon_sym_namespace] = ACTIONS(2605), + [anon_sym_static_assert] = ACTIONS(2605), + [anon_sym_concept] = ACTIONS(2605), + [anon_sym_co_return] = ACTIONS(2605), + [anon_sym_co_yield] = ACTIONS(2605), + [anon_sym_R_DQUOTE] = ACTIONS(2607), + [anon_sym_LR_DQUOTE] = ACTIONS(2607), + [anon_sym_uR_DQUOTE] = ACTIONS(2607), + [anon_sym_UR_DQUOTE] = ACTIONS(2607), + [anon_sym_u8R_DQUOTE] = ACTIONS(2607), + [anon_sym_co_await] = ACTIONS(2605), + [anon_sym_new] = ACTIONS(2605), + [anon_sym_requires] = ACTIONS(2605), + [sym_this] = ACTIONS(2605), + }, + [237] = { + [sym_identifier] = ACTIONS(2611), + [aux_sym_preproc_include_token1] = ACTIONS(2611), + [aux_sym_preproc_def_token1] = ACTIONS(2611), + [aux_sym_preproc_if_token1] = ACTIONS(2611), + [aux_sym_preproc_if_token2] = ACTIONS(2611), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2611), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2611), + [aux_sym_preproc_else_token1] = ACTIONS(2611), + [aux_sym_preproc_elif_token1] = ACTIONS(2611), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2611), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2611), + [sym_preproc_directive] = ACTIONS(2611), + [anon_sym_LPAREN2] = ACTIONS(2613), + [anon_sym_BANG] = ACTIONS(2613), + [anon_sym_TILDE] = ACTIONS(2613), + [anon_sym_DASH] = ACTIONS(2611), + [anon_sym_PLUS] = ACTIONS(2611), + [anon_sym_STAR] = ACTIONS(2613), + [anon_sym_AMP_AMP] = ACTIONS(2613), + [anon_sym_AMP] = ACTIONS(2611), + [anon_sym_SEMI] = ACTIONS(2613), + [anon_sym___extension__] = ACTIONS(2611), + [anon_sym_typedef] = ACTIONS(2611), + [anon_sym_virtual] = ACTIONS(2611), + [anon_sym_extern] = ACTIONS(2611), + [anon_sym___attribute__] = ACTIONS(2611), + [anon_sym___attribute] = ACTIONS(2611), + [anon_sym_using] = ACTIONS(2611), + [anon_sym_COLON_COLON] = ACTIONS(2613), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2613), + [anon_sym___declspec] = ACTIONS(2611), + [anon_sym___based] = ACTIONS(2611), + [anon_sym___cdecl] = ACTIONS(2611), + [anon_sym___clrcall] = ACTIONS(2611), + [anon_sym___stdcall] = ACTIONS(2611), + [anon_sym___fastcall] = ACTIONS(2611), + [anon_sym___thiscall] = ACTIONS(2611), + [anon_sym___vectorcall] = ACTIONS(2611), + [anon_sym_LBRACE] = ACTIONS(2613), + [anon_sym_signed] = ACTIONS(2611), + [anon_sym_unsigned] = ACTIONS(2611), + [anon_sym_long] = ACTIONS(2611), + [anon_sym_short] = ACTIONS(2611), + [anon_sym_LBRACK] = ACTIONS(2611), + [anon_sym_static] = ACTIONS(2611), + [anon_sym_register] = ACTIONS(2611), + [anon_sym_inline] = ACTIONS(2611), + [anon_sym___inline] = ACTIONS(2611), + [anon_sym___inline__] = ACTIONS(2611), + [anon_sym___forceinline] = ACTIONS(2611), + [anon_sym_thread_local] = ACTIONS(2611), + [anon_sym___thread] = ACTIONS(2611), + [anon_sym_const] = ACTIONS(2611), + [anon_sym_constexpr] = ACTIONS(2611), + [anon_sym_volatile] = ACTIONS(2611), + [anon_sym_restrict] = ACTIONS(2611), + [anon_sym___restrict__] = ACTIONS(2611), + [anon_sym__Atomic] = ACTIONS(2611), + [anon_sym__Noreturn] = ACTIONS(2611), + [anon_sym_noreturn] = ACTIONS(2611), + [anon_sym__Nonnull] = ACTIONS(2611), + [anon_sym_mutable] = ACTIONS(2611), + [anon_sym_constinit] = ACTIONS(2611), + [anon_sym_consteval] = ACTIONS(2611), + [anon_sym_alignas] = ACTIONS(2611), + [anon_sym__Alignas] = ACTIONS(2611), + [sym_primitive_type] = ACTIONS(2611), + [anon_sym_enum] = ACTIONS(2611), + [anon_sym_class] = ACTIONS(2611), + [anon_sym_struct] = ACTIONS(2611), + [anon_sym_union] = ACTIONS(2611), + [anon_sym_if] = ACTIONS(2611), + [anon_sym_else] = ACTIONS(2611), + [anon_sym_switch] = ACTIONS(2611), + [anon_sym_case] = ACTIONS(2611), + [anon_sym_default] = ACTIONS(2611), + [anon_sym_while] = ACTIONS(2611), + [anon_sym_do] = ACTIONS(2611), + [anon_sym_for] = ACTIONS(2611), + [anon_sym_return] = ACTIONS(2611), + [anon_sym_break] = ACTIONS(2611), + [anon_sym_continue] = ACTIONS(2611), + [anon_sym_goto] = ACTIONS(2611), + [anon_sym___try] = ACTIONS(2611), + [anon_sym___leave] = ACTIONS(2611), + [anon_sym_not] = ACTIONS(2611), + [anon_sym_compl] = ACTIONS(2611), + [anon_sym_DASH_DASH] = ACTIONS(2613), + [anon_sym_PLUS_PLUS] = ACTIONS(2613), + [anon_sym_sizeof] = ACTIONS(2611), + [anon_sym___alignof__] = ACTIONS(2611), + [anon_sym___alignof] = ACTIONS(2611), + [anon_sym__alignof] = ACTIONS(2611), + [anon_sym_alignof] = ACTIONS(2611), + [anon_sym__Alignof] = ACTIONS(2611), + [anon_sym_offsetof] = ACTIONS(2611), + [anon_sym__Generic] = ACTIONS(2611), + [anon_sym_asm] = ACTIONS(2611), + [anon_sym___asm__] = ACTIONS(2611), + [anon_sym___asm] = ACTIONS(2611), + [sym_number_literal] = ACTIONS(2613), + [anon_sym_L_SQUOTE] = ACTIONS(2613), + [anon_sym_u_SQUOTE] = ACTIONS(2613), + [anon_sym_U_SQUOTE] = ACTIONS(2613), + [anon_sym_u8_SQUOTE] = ACTIONS(2613), + [anon_sym_SQUOTE] = ACTIONS(2613), + [anon_sym_L_DQUOTE] = ACTIONS(2613), + [anon_sym_u_DQUOTE] = ACTIONS(2613), + [anon_sym_U_DQUOTE] = ACTIONS(2613), + [anon_sym_u8_DQUOTE] = ACTIONS(2613), + [anon_sym_DQUOTE] = ACTIONS(2613), + [sym_true] = ACTIONS(2611), + [sym_false] = ACTIONS(2611), + [anon_sym_NULL] = ACTIONS(2611), + [anon_sym_nullptr] = ACTIONS(2611), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2611), + [anon_sym_decltype] = ACTIONS(2611), + [anon_sym_explicit] = ACTIONS(2611), + [anon_sym_typename] = ACTIONS(2611), + [anon_sym_template] = ACTIONS(2611), + [anon_sym_operator] = ACTIONS(2611), + [anon_sym_try] = ACTIONS(2611), + [anon_sym_delete] = ACTIONS(2611), + [anon_sym_throw] = ACTIONS(2611), + [anon_sym_namespace] = ACTIONS(2611), + [anon_sym_static_assert] = ACTIONS(2611), + [anon_sym_concept] = ACTIONS(2611), + [anon_sym_co_return] = ACTIONS(2611), + [anon_sym_co_yield] = ACTIONS(2611), + [anon_sym_catch] = ACTIONS(2611), + [anon_sym_R_DQUOTE] = ACTIONS(2613), + [anon_sym_LR_DQUOTE] = ACTIONS(2613), + [anon_sym_uR_DQUOTE] = ACTIONS(2613), + [anon_sym_UR_DQUOTE] = ACTIONS(2613), + [anon_sym_u8R_DQUOTE] = ACTIONS(2613), + [anon_sym_co_await] = ACTIONS(2611), + [anon_sym_new] = ACTIONS(2611), + [anon_sym_requires] = ACTIONS(2611), + [sym_this] = ACTIONS(2611), + }, + [238] = { + [sym_else_clause] = STATE(244), + [sym_identifier] = ACTIONS(2615), + [aux_sym_preproc_include_token1] = ACTIONS(2615), + [aux_sym_preproc_def_token1] = ACTIONS(2615), + [aux_sym_preproc_if_token1] = ACTIONS(2615), + [aux_sym_preproc_if_token2] = ACTIONS(2615), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2615), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2615), + [aux_sym_preproc_else_token1] = ACTIONS(2615), + [aux_sym_preproc_elif_token1] = ACTIONS(2615), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2615), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2615), + [sym_preproc_directive] = ACTIONS(2615), + [anon_sym_LPAREN2] = ACTIONS(2617), + [anon_sym_BANG] = ACTIONS(2617), + [anon_sym_TILDE] = ACTIONS(2617), + [anon_sym_DASH] = ACTIONS(2615), + [anon_sym_PLUS] = ACTIONS(2615), + [anon_sym_STAR] = ACTIONS(2617), + [anon_sym_AMP_AMP] = ACTIONS(2617), + [anon_sym_AMP] = ACTIONS(2615), + [anon_sym_SEMI] = ACTIONS(2617), + [anon_sym___extension__] = ACTIONS(2615), + [anon_sym_typedef] = ACTIONS(2615), + [anon_sym_virtual] = ACTIONS(2615), + [anon_sym_extern] = ACTIONS(2615), + [anon_sym___attribute__] = ACTIONS(2615), + [anon_sym___attribute] = ACTIONS(2615), + [anon_sym_using] = ACTIONS(2615), + [anon_sym_COLON_COLON] = ACTIONS(2617), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2617), + [anon_sym___declspec] = ACTIONS(2615), + [anon_sym___based] = ACTIONS(2615), + [anon_sym___cdecl] = ACTIONS(2615), + [anon_sym___clrcall] = ACTIONS(2615), + [anon_sym___stdcall] = ACTIONS(2615), + [anon_sym___fastcall] = ACTIONS(2615), + [anon_sym___thiscall] = ACTIONS(2615), + [anon_sym___vectorcall] = ACTIONS(2615), + [anon_sym_LBRACE] = ACTIONS(2617), + [anon_sym_signed] = ACTIONS(2615), + [anon_sym_unsigned] = ACTIONS(2615), + [anon_sym_long] = ACTIONS(2615), + [anon_sym_short] = ACTIONS(2615), + [anon_sym_LBRACK] = ACTIONS(2615), + [anon_sym_static] = ACTIONS(2615), + [anon_sym_register] = ACTIONS(2615), + [anon_sym_inline] = ACTIONS(2615), + [anon_sym___inline] = ACTIONS(2615), + [anon_sym___inline__] = ACTIONS(2615), + [anon_sym___forceinline] = ACTIONS(2615), + [anon_sym_thread_local] = ACTIONS(2615), + [anon_sym___thread] = ACTIONS(2615), + [anon_sym_const] = ACTIONS(2615), + [anon_sym_constexpr] = ACTIONS(2615), + [anon_sym_volatile] = ACTIONS(2615), + [anon_sym_restrict] = ACTIONS(2615), + [anon_sym___restrict__] = ACTIONS(2615), + [anon_sym__Atomic] = ACTIONS(2615), + [anon_sym__Noreturn] = ACTIONS(2615), + [anon_sym_noreturn] = ACTIONS(2615), + [anon_sym__Nonnull] = ACTIONS(2615), + [anon_sym_mutable] = ACTIONS(2615), + [anon_sym_constinit] = ACTIONS(2615), + [anon_sym_consteval] = ACTIONS(2615), + [anon_sym_alignas] = ACTIONS(2615), + [anon_sym__Alignas] = ACTIONS(2615), + [sym_primitive_type] = ACTIONS(2615), + [anon_sym_enum] = ACTIONS(2615), + [anon_sym_class] = ACTIONS(2615), + [anon_sym_struct] = ACTIONS(2615), + [anon_sym_union] = ACTIONS(2615), + [anon_sym_if] = ACTIONS(2615), + [anon_sym_else] = ACTIONS(2609), + [anon_sym_switch] = ACTIONS(2615), + [anon_sym_case] = ACTIONS(2615), + [anon_sym_default] = ACTIONS(2615), + [anon_sym_while] = ACTIONS(2615), + [anon_sym_do] = ACTIONS(2615), + [anon_sym_for] = ACTIONS(2615), + [anon_sym_return] = ACTIONS(2615), + [anon_sym_break] = ACTIONS(2615), + [anon_sym_continue] = ACTIONS(2615), + [anon_sym_goto] = ACTIONS(2615), + [anon_sym___try] = ACTIONS(2615), + [anon_sym___leave] = ACTIONS(2615), + [anon_sym_not] = ACTIONS(2615), + [anon_sym_compl] = ACTIONS(2615), + [anon_sym_DASH_DASH] = ACTIONS(2617), + [anon_sym_PLUS_PLUS] = ACTIONS(2617), + [anon_sym_sizeof] = ACTIONS(2615), + [anon_sym___alignof__] = ACTIONS(2615), + [anon_sym___alignof] = ACTIONS(2615), + [anon_sym__alignof] = ACTIONS(2615), + [anon_sym_alignof] = ACTIONS(2615), + [anon_sym__Alignof] = ACTIONS(2615), + [anon_sym_offsetof] = ACTIONS(2615), + [anon_sym__Generic] = ACTIONS(2615), + [anon_sym_asm] = ACTIONS(2615), + [anon_sym___asm__] = ACTIONS(2615), + [anon_sym___asm] = ACTIONS(2615), + [sym_number_literal] = ACTIONS(2617), + [anon_sym_L_SQUOTE] = ACTIONS(2617), + [anon_sym_u_SQUOTE] = ACTIONS(2617), + [anon_sym_U_SQUOTE] = ACTIONS(2617), + [anon_sym_u8_SQUOTE] = ACTIONS(2617), + [anon_sym_SQUOTE] = ACTIONS(2617), + [anon_sym_L_DQUOTE] = ACTIONS(2617), + [anon_sym_u_DQUOTE] = ACTIONS(2617), + [anon_sym_U_DQUOTE] = ACTIONS(2617), + [anon_sym_u8_DQUOTE] = ACTIONS(2617), + [anon_sym_DQUOTE] = ACTIONS(2617), + [sym_true] = ACTIONS(2615), + [sym_false] = ACTIONS(2615), + [anon_sym_NULL] = ACTIONS(2615), + [anon_sym_nullptr] = ACTIONS(2615), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2615), + [anon_sym_decltype] = ACTIONS(2615), + [anon_sym_explicit] = ACTIONS(2615), + [anon_sym_typename] = ACTIONS(2615), + [anon_sym_template] = ACTIONS(2615), + [anon_sym_operator] = ACTIONS(2615), + [anon_sym_try] = ACTIONS(2615), + [anon_sym_delete] = ACTIONS(2615), + [anon_sym_throw] = ACTIONS(2615), + [anon_sym_namespace] = ACTIONS(2615), + [anon_sym_static_assert] = ACTIONS(2615), + [anon_sym_concept] = ACTIONS(2615), + [anon_sym_co_return] = ACTIONS(2615), + [anon_sym_co_yield] = ACTIONS(2615), + [anon_sym_R_DQUOTE] = ACTIONS(2617), + [anon_sym_LR_DQUOTE] = ACTIONS(2617), + [anon_sym_uR_DQUOTE] = ACTIONS(2617), + [anon_sym_UR_DQUOTE] = ACTIONS(2617), + [anon_sym_u8R_DQUOTE] = ACTIONS(2617), + [anon_sym_co_await] = ACTIONS(2615), + [anon_sym_new] = ACTIONS(2615), + [anon_sym_requires] = ACTIONS(2615), + [sym_this] = ACTIONS(2615), + }, + [239] = { + [sym_expression] = STATE(3702), + [sym__string] = STATE(3775), + [sym_conditional_expression] = STATE(3886), + [sym_assignment_expression] = STATE(3886), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(3886), + [sym_binary_expression] = STATE(3886), + [sym_update_expression] = STATE(3886), + [sym_cast_expression] = STATE(3886), + [sym_sizeof_expression] = STATE(3886), + [sym_alignof_expression] = STATE(3886), + [sym_offsetof_expression] = STATE(3886), + [sym_generic_expression] = STATE(3886), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(3886), + [sym_extension_expression] = STATE(3886), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(3886), + [sym_parenthesized_expression] = STATE(3522), + [sym_initializer_list] = STATE(3936), + [sym_char_literal] = STATE(3775), + [sym_concatenated_string] = STATE(3775), + [sym_string_literal] = STATE(2596), + [sym_null] = STATE(3886), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7756), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3886), + [sym_raw_string_literal] = STATE(2596), + [sym_co_await_expression] = STATE(3886), + [sym_new_expression] = STATE(3886), + [sym_delete_expression] = STATE(3886), + [sym_requires_clause] = STATE(3886), + [sym_requires_expression] = STATE(3886), + [sym_lambda_expression] = STATE(3886), + [sym_lambda_capture_specifier] = STATE(5492), + [sym_fold_expression] = STATE(3886), + [sym_parameter_pack_expansion] = STATE(3886), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(7756), + [sym_user_defined_literal] = STATE(3522), + [sym_identifier] = ACTIONS(2619), [anon_sym_DOT_DOT_DOT] = ACTIONS(1944), [anon_sym_COMMA] = ACTIONS(1944), [anon_sym_RPAREN] = ACTIONS(1944), [anon_sym_LPAREN2] = ACTIONS(1944), - [anon_sym_BANG] = ACTIONS(1872), - [anon_sym_TILDE] = ACTIONS(1870), + [anon_sym_BANG] = ACTIONS(1892), + [anon_sym_TILDE] = ACTIONS(1890), [anon_sym_DASH] = ACTIONS(1942), [anon_sym_PLUS] = ACTIONS(1942), [anon_sym_STAR] = ACTIONS(1942), @@ -78123,12 +78832,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(1942), [anon_sym_LT_LT] = ACTIONS(1942), [anon_sym_GT_GT] = ACTIONS(1942), - [anon_sym___extension__] = ACTIONS(2607), - [anon_sym_COLON_COLON] = ACTIONS(1880), - [anon_sym_LBRACE] = ACTIONS(2609), + [anon_sym___extension__] = ACTIONS(2621), + [anon_sym_COLON_COLON] = ACTIONS(1898), + [anon_sym_LBRACE] = ACTIONS(2623), [anon_sym_LBRACK] = ACTIONS(1944), [anon_sym_EQ] = ACTIONS(1942), - [sym_primitive_type] = ACTIONS(2611), + [sym_primitive_type] = ACTIONS(2625), [anon_sym_QMARK] = ACTIONS(1944), [anon_sym_STAR_EQ] = ACTIONS(1944), [anon_sym_SLASH_EQ] = ACTIONS(1944), @@ -78140,8 +78849,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_EQ] = ACTIONS(1944), [anon_sym_CARET_EQ] = ACTIONS(1944), [anon_sym_PIPE_EQ] = ACTIONS(1944), - [anon_sym_not] = ACTIONS(1872), - [anon_sym_compl] = ACTIONS(1872), + [anon_sym_not] = ACTIONS(1892), + [anon_sym_compl] = ACTIONS(1892), [anon_sym_LT_EQ_GT] = ACTIONS(1944), [anon_sym_or] = ACTIONS(1942), [anon_sym_and] = ACTIONS(1942), @@ -78151,619 +78860,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_not_eq] = ACTIONS(1942), [anon_sym_DASH_DASH] = ACTIONS(1944), [anon_sym_PLUS_PLUS] = ACTIONS(1944), - [anon_sym_sizeof] = ACTIONS(1894), - [anon_sym___alignof__] = ACTIONS(1896), - [anon_sym___alignof] = ACTIONS(1896), - [anon_sym__alignof] = ACTIONS(1896), - [anon_sym_alignof] = ACTIONS(1896), - [anon_sym__Alignof] = ACTIONS(1896), - [anon_sym_offsetof] = ACTIONS(1898), - [anon_sym__Generic] = ACTIONS(1900), - [anon_sym_asm] = ACTIONS(1902), - [anon_sym___asm__] = ACTIONS(1902), - [anon_sym___asm] = ACTIONS(1902), + [anon_sym_sizeof] = ACTIONS(1904), + [anon_sym___alignof__] = ACTIONS(1906), + [anon_sym___alignof] = ACTIONS(1906), + [anon_sym__alignof] = ACTIONS(1906), + [anon_sym_alignof] = ACTIONS(1906), + [anon_sym__Alignof] = ACTIONS(1906), + [anon_sym_offsetof] = ACTIONS(1908), + [anon_sym__Generic] = ACTIONS(1910), + [anon_sym_asm] = ACTIONS(1912), + [anon_sym___asm__] = ACTIONS(1912), + [anon_sym___asm] = ACTIONS(1912), [anon_sym_DOT] = ACTIONS(1942), [anon_sym_DOT_STAR] = ACTIONS(1944), [anon_sym_DASH_GT] = ACTIONS(1942), - [sym_number_literal] = ACTIONS(1904), - [anon_sym_L_SQUOTE] = ACTIONS(1906), - [anon_sym_u_SQUOTE] = ACTIONS(1906), - [anon_sym_U_SQUOTE] = ACTIONS(1906), - [anon_sym_u8_SQUOTE] = ACTIONS(1906), - [anon_sym_SQUOTE] = ACTIONS(1906), - [anon_sym_L_DQUOTE] = ACTIONS(1908), - [anon_sym_u_DQUOTE] = ACTIONS(1908), - [anon_sym_U_DQUOTE] = ACTIONS(1908), - [anon_sym_u8_DQUOTE] = ACTIONS(1908), - [anon_sym_DQUOTE] = ACTIONS(1908), - [sym_true] = ACTIONS(1910), - [sym_false] = ACTIONS(1910), - [anon_sym_NULL] = ACTIONS(1912), - [anon_sym_nullptr] = ACTIONS(1912), + [sym_number_literal] = ACTIONS(1914), + [anon_sym_L_SQUOTE] = ACTIONS(1916), + [anon_sym_u_SQUOTE] = ACTIONS(1916), + [anon_sym_U_SQUOTE] = ACTIONS(1916), + [anon_sym_u8_SQUOTE] = ACTIONS(1916), + [anon_sym_SQUOTE] = ACTIONS(1916), + [anon_sym_L_DQUOTE] = ACTIONS(1918), + [anon_sym_u_DQUOTE] = ACTIONS(1918), + [anon_sym_U_DQUOTE] = ACTIONS(1918), + [anon_sym_u8_DQUOTE] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1918), + [sym_true] = ACTIONS(1920), + [sym_false] = ACTIONS(1920), + [anon_sym_NULL] = ACTIONS(1922), + [anon_sym_nullptr] = ACTIONS(1922), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1916), - [anon_sym_R_DQUOTE] = ACTIONS(1918), - [anon_sym_LR_DQUOTE] = ACTIONS(1918), - [anon_sym_uR_DQUOTE] = ACTIONS(1918), - [anon_sym_UR_DQUOTE] = ACTIONS(1918), - [anon_sym_u8R_DQUOTE] = ACTIONS(1918), - [anon_sym_co_await] = ACTIONS(1920), - [anon_sym_new] = ACTIONS(1922), - [anon_sym_requires] = ACTIONS(1924), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1924), + [anon_sym_R_DQUOTE] = ACTIONS(1926), + [anon_sym_LR_DQUOTE] = ACTIONS(1926), + [anon_sym_uR_DQUOTE] = ACTIONS(1926), + [anon_sym_UR_DQUOTE] = ACTIONS(1926), + [anon_sym_u8R_DQUOTE] = ACTIONS(1926), + [anon_sym_co_await] = ACTIONS(1928), + [anon_sym_new] = ACTIONS(1930), + [anon_sym_requires] = ACTIONS(1932), [anon_sym_DASH_GT_STAR] = ACTIONS(1944), - [sym_this] = ACTIONS(1910), - }, - [237] = { - [sym_else_clause] = STATE(252), - [sym_identifier] = ACTIONS(2613), - [aux_sym_preproc_include_token1] = ACTIONS(2613), - [aux_sym_preproc_def_token1] = ACTIONS(2613), - [aux_sym_preproc_if_token1] = ACTIONS(2613), - [aux_sym_preproc_if_token2] = ACTIONS(2613), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2613), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2613), - [aux_sym_preproc_else_token1] = ACTIONS(2613), - [aux_sym_preproc_elif_token1] = ACTIONS(2613), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2613), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2613), - [sym_preproc_directive] = ACTIONS(2613), - [anon_sym_LPAREN2] = ACTIONS(2615), - [anon_sym_BANG] = ACTIONS(2615), - [anon_sym_TILDE] = ACTIONS(2615), - [anon_sym_DASH] = ACTIONS(2613), - [anon_sym_PLUS] = ACTIONS(2613), - [anon_sym_STAR] = ACTIONS(2615), - [anon_sym_AMP_AMP] = ACTIONS(2615), - [anon_sym_AMP] = ACTIONS(2613), - [anon_sym_SEMI] = ACTIONS(2615), - [anon_sym___extension__] = ACTIONS(2613), - [anon_sym_typedef] = ACTIONS(2613), - [anon_sym_virtual] = ACTIONS(2613), - [anon_sym_extern] = ACTIONS(2613), - [anon_sym___attribute__] = ACTIONS(2613), - [anon_sym___attribute] = ACTIONS(2613), - [anon_sym_using] = ACTIONS(2613), - [anon_sym_COLON_COLON] = ACTIONS(2615), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2615), - [anon_sym___declspec] = ACTIONS(2613), - [anon_sym___based] = ACTIONS(2613), - [anon_sym___cdecl] = ACTIONS(2613), - [anon_sym___clrcall] = ACTIONS(2613), - [anon_sym___stdcall] = ACTIONS(2613), - [anon_sym___fastcall] = ACTIONS(2613), - [anon_sym___thiscall] = ACTIONS(2613), - [anon_sym___vectorcall] = ACTIONS(2613), - [anon_sym_LBRACE] = ACTIONS(2615), - [anon_sym_signed] = ACTIONS(2613), - [anon_sym_unsigned] = ACTIONS(2613), - [anon_sym_long] = ACTIONS(2613), - [anon_sym_short] = ACTIONS(2613), - [anon_sym_LBRACK] = ACTIONS(2613), - [anon_sym_static] = ACTIONS(2613), - [anon_sym_register] = ACTIONS(2613), - [anon_sym_inline] = ACTIONS(2613), - [anon_sym___inline] = ACTIONS(2613), - [anon_sym___inline__] = ACTIONS(2613), - [anon_sym___forceinline] = ACTIONS(2613), - [anon_sym_thread_local] = ACTIONS(2613), - [anon_sym___thread] = ACTIONS(2613), - [anon_sym_const] = ACTIONS(2613), - [anon_sym_constexpr] = ACTIONS(2613), - [anon_sym_volatile] = ACTIONS(2613), - [anon_sym_restrict] = ACTIONS(2613), - [anon_sym___restrict__] = ACTIONS(2613), - [anon_sym__Atomic] = ACTIONS(2613), - [anon_sym__Noreturn] = ACTIONS(2613), - [anon_sym_noreturn] = ACTIONS(2613), - [anon_sym__Nonnull] = ACTIONS(2613), - [anon_sym_mutable] = ACTIONS(2613), - [anon_sym_constinit] = ACTIONS(2613), - [anon_sym_consteval] = ACTIONS(2613), - [anon_sym_alignas] = ACTIONS(2613), - [anon_sym__Alignas] = ACTIONS(2613), - [sym_primitive_type] = ACTIONS(2613), - [anon_sym_enum] = ACTIONS(2613), - [anon_sym_class] = ACTIONS(2613), - [anon_sym_struct] = ACTIONS(2613), - [anon_sym_union] = ACTIONS(2613), - [anon_sym_if] = ACTIONS(2613), - [anon_sym_else] = ACTIONS(2617), - [anon_sym_switch] = ACTIONS(2613), - [anon_sym_case] = ACTIONS(2613), - [anon_sym_default] = ACTIONS(2613), - [anon_sym_while] = ACTIONS(2613), - [anon_sym_do] = ACTIONS(2613), - [anon_sym_for] = ACTIONS(2613), - [anon_sym_return] = ACTIONS(2613), - [anon_sym_break] = ACTIONS(2613), - [anon_sym_continue] = ACTIONS(2613), - [anon_sym_goto] = ACTIONS(2613), - [anon_sym___try] = ACTIONS(2613), - [anon_sym___leave] = ACTIONS(2613), - [anon_sym_not] = ACTIONS(2613), - [anon_sym_compl] = ACTIONS(2613), - [anon_sym_DASH_DASH] = ACTIONS(2615), - [anon_sym_PLUS_PLUS] = ACTIONS(2615), - [anon_sym_sizeof] = ACTIONS(2613), - [anon_sym___alignof__] = ACTIONS(2613), - [anon_sym___alignof] = ACTIONS(2613), - [anon_sym__alignof] = ACTIONS(2613), - [anon_sym_alignof] = ACTIONS(2613), - [anon_sym__Alignof] = ACTIONS(2613), - [anon_sym_offsetof] = ACTIONS(2613), - [anon_sym__Generic] = ACTIONS(2613), - [anon_sym_asm] = ACTIONS(2613), - [anon_sym___asm__] = ACTIONS(2613), - [anon_sym___asm] = ACTIONS(2613), - [sym_number_literal] = ACTIONS(2615), - [anon_sym_L_SQUOTE] = ACTIONS(2615), - [anon_sym_u_SQUOTE] = ACTIONS(2615), - [anon_sym_U_SQUOTE] = ACTIONS(2615), - [anon_sym_u8_SQUOTE] = ACTIONS(2615), - [anon_sym_SQUOTE] = ACTIONS(2615), - [anon_sym_L_DQUOTE] = ACTIONS(2615), - [anon_sym_u_DQUOTE] = ACTIONS(2615), - [anon_sym_U_DQUOTE] = ACTIONS(2615), - [anon_sym_u8_DQUOTE] = ACTIONS(2615), - [anon_sym_DQUOTE] = ACTIONS(2615), - [sym_true] = ACTIONS(2613), - [sym_false] = ACTIONS(2613), - [anon_sym_NULL] = ACTIONS(2613), - [anon_sym_nullptr] = ACTIONS(2613), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2613), - [anon_sym_decltype] = ACTIONS(2613), - [anon_sym_explicit] = ACTIONS(2613), - [anon_sym_typename] = ACTIONS(2613), - [anon_sym_template] = ACTIONS(2613), - [anon_sym_operator] = ACTIONS(2613), - [anon_sym_try] = ACTIONS(2613), - [anon_sym_delete] = ACTIONS(2613), - [anon_sym_throw] = ACTIONS(2613), - [anon_sym_namespace] = ACTIONS(2613), - [anon_sym_static_assert] = ACTIONS(2613), - [anon_sym_concept] = ACTIONS(2613), - [anon_sym_co_return] = ACTIONS(2613), - [anon_sym_co_yield] = ACTIONS(2613), - [anon_sym_R_DQUOTE] = ACTIONS(2615), - [anon_sym_LR_DQUOTE] = ACTIONS(2615), - [anon_sym_uR_DQUOTE] = ACTIONS(2615), - [anon_sym_UR_DQUOTE] = ACTIONS(2615), - [anon_sym_u8R_DQUOTE] = ACTIONS(2615), - [anon_sym_co_await] = ACTIONS(2613), - [anon_sym_new] = ACTIONS(2613), - [anon_sym_requires] = ACTIONS(2613), - [sym_this] = ACTIONS(2613), - }, - [238] = { - [sym_identifier] = ACTIONS(2619), - [aux_sym_preproc_include_token1] = ACTIONS(2619), - [aux_sym_preproc_def_token1] = ACTIONS(2619), - [aux_sym_preproc_if_token1] = ACTIONS(2619), - [aux_sym_preproc_if_token2] = ACTIONS(2619), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2619), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2619), - [aux_sym_preproc_else_token1] = ACTIONS(2619), - [aux_sym_preproc_elif_token1] = ACTIONS(2619), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2619), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2619), - [sym_preproc_directive] = ACTIONS(2619), - [anon_sym_LPAREN2] = ACTIONS(2621), - [anon_sym_BANG] = ACTIONS(2621), - [anon_sym_TILDE] = ACTIONS(2621), - [anon_sym_DASH] = ACTIONS(2619), - [anon_sym_PLUS] = ACTIONS(2619), - [anon_sym_STAR] = ACTIONS(2621), - [anon_sym_AMP_AMP] = ACTIONS(2621), - [anon_sym_AMP] = ACTIONS(2619), - [anon_sym_SEMI] = ACTIONS(2621), - [anon_sym___extension__] = ACTIONS(2619), - [anon_sym_typedef] = ACTIONS(2619), - [anon_sym_virtual] = ACTIONS(2619), - [anon_sym_extern] = ACTIONS(2619), - [anon_sym___attribute__] = ACTIONS(2619), - [anon_sym___attribute] = ACTIONS(2619), - [anon_sym_using] = ACTIONS(2619), - [anon_sym_COLON_COLON] = ACTIONS(2621), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2621), - [anon_sym___declspec] = ACTIONS(2619), - [anon_sym___based] = ACTIONS(2619), - [anon_sym___cdecl] = ACTIONS(2619), - [anon_sym___clrcall] = ACTIONS(2619), - [anon_sym___stdcall] = ACTIONS(2619), - [anon_sym___fastcall] = ACTIONS(2619), - [anon_sym___thiscall] = ACTIONS(2619), - [anon_sym___vectorcall] = ACTIONS(2619), - [anon_sym_LBRACE] = ACTIONS(2621), - [anon_sym_signed] = ACTIONS(2619), - [anon_sym_unsigned] = ACTIONS(2619), - [anon_sym_long] = ACTIONS(2619), - [anon_sym_short] = ACTIONS(2619), - [anon_sym_LBRACK] = ACTIONS(2619), - [anon_sym_static] = ACTIONS(2619), - [anon_sym_register] = ACTIONS(2619), - [anon_sym_inline] = ACTIONS(2619), - [anon_sym___inline] = ACTIONS(2619), - [anon_sym___inline__] = ACTIONS(2619), - [anon_sym___forceinline] = ACTIONS(2619), - [anon_sym_thread_local] = ACTIONS(2619), - [anon_sym___thread] = ACTIONS(2619), - [anon_sym_const] = ACTIONS(2619), - [anon_sym_constexpr] = ACTIONS(2619), - [anon_sym_volatile] = ACTIONS(2619), - [anon_sym_restrict] = ACTIONS(2619), - [anon_sym___restrict__] = ACTIONS(2619), - [anon_sym__Atomic] = ACTIONS(2619), - [anon_sym__Noreturn] = ACTIONS(2619), - [anon_sym_noreturn] = ACTIONS(2619), - [anon_sym__Nonnull] = ACTIONS(2619), - [anon_sym_mutable] = ACTIONS(2619), - [anon_sym_constinit] = ACTIONS(2619), - [anon_sym_consteval] = ACTIONS(2619), - [anon_sym_alignas] = ACTIONS(2619), - [anon_sym__Alignas] = ACTIONS(2619), - [sym_primitive_type] = ACTIONS(2619), - [anon_sym_enum] = ACTIONS(2619), - [anon_sym_class] = ACTIONS(2619), - [anon_sym_struct] = ACTIONS(2619), - [anon_sym_union] = ACTIONS(2619), - [anon_sym_if] = ACTIONS(2619), - [anon_sym_else] = ACTIONS(2619), - [anon_sym_switch] = ACTIONS(2619), - [anon_sym_case] = ACTIONS(2619), - [anon_sym_default] = ACTIONS(2619), - [anon_sym_while] = ACTIONS(2619), - [anon_sym_do] = ACTIONS(2619), - [anon_sym_for] = ACTIONS(2619), - [anon_sym_return] = ACTIONS(2619), - [anon_sym_break] = ACTIONS(2619), - [anon_sym_continue] = ACTIONS(2619), - [anon_sym_goto] = ACTIONS(2619), - [anon_sym___try] = ACTIONS(2619), - [anon_sym___leave] = ACTIONS(2619), - [anon_sym_not] = ACTIONS(2619), - [anon_sym_compl] = ACTIONS(2619), - [anon_sym_DASH_DASH] = ACTIONS(2621), - [anon_sym_PLUS_PLUS] = ACTIONS(2621), - [anon_sym_sizeof] = ACTIONS(2619), - [anon_sym___alignof__] = ACTIONS(2619), - [anon_sym___alignof] = ACTIONS(2619), - [anon_sym__alignof] = ACTIONS(2619), - [anon_sym_alignof] = ACTIONS(2619), - [anon_sym__Alignof] = ACTIONS(2619), - [anon_sym_offsetof] = ACTIONS(2619), - [anon_sym__Generic] = ACTIONS(2619), - [anon_sym_asm] = ACTIONS(2619), - [anon_sym___asm__] = ACTIONS(2619), - [anon_sym___asm] = ACTIONS(2619), - [sym_number_literal] = ACTIONS(2621), - [anon_sym_L_SQUOTE] = ACTIONS(2621), - [anon_sym_u_SQUOTE] = ACTIONS(2621), - [anon_sym_U_SQUOTE] = ACTIONS(2621), - [anon_sym_u8_SQUOTE] = ACTIONS(2621), - [anon_sym_SQUOTE] = ACTIONS(2621), - [anon_sym_L_DQUOTE] = ACTIONS(2621), - [anon_sym_u_DQUOTE] = ACTIONS(2621), - [anon_sym_U_DQUOTE] = ACTIONS(2621), - [anon_sym_u8_DQUOTE] = ACTIONS(2621), - [anon_sym_DQUOTE] = ACTIONS(2621), - [sym_true] = ACTIONS(2619), - [sym_false] = ACTIONS(2619), - [anon_sym_NULL] = ACTIONS(2619), - [anon_sym_nullptr] = ACTIONS(2619), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2619), - [anon_sym_decltype] = ACTIONS(2619), - [anon_sym_explicit] = ACTIONS(2619), - [anon_sym_typename] = ACTIONS(2619), - [anon_sym_template] = ACTIONS(2619), - [anon_sym_operator] = ACTIONS(2619), - [anon_sym_try] = ACTIONS(2619), - [anon_sym_delete] = ACTIONS(2619), - [anon_sym_throw] = ACTIONS(2619), - [anon_sym_namespace] = ACTIONS(2619), - [anon_sym_static_assert] = ACTIONS(2619), - [anon_sym_concept] = ACTIONS(2619), - [anon_sym_co_return] = ACTIONS(2619), - [anon_sym_co_yield] = ACTIONS(2619), - [anon_sym_catch] = ACTIONS(2619), - [anon_sym_R_DQUOTE] = ACTIONS(2621), - [anon_sym_LR_DQUOTE] = ACTIONS(2621), - [anon_sym_uR_DQUOTE] = ACTIONS(2621), - [anon_sym_UR_DQUOTE] = ACTIONS(2621), - [anon_sym_u8R_DQUOTE] = ACTIONS(2621), - [anon_sym_co_await] = ACTIONS(2619), - [anon_sym_new] = ACTIONS(2619), - [anon_sym_requires] = ACTIONS(2619), - [sym_this] = ACTIONS(2619), - }, - [239] = { - [sym_identifier] = ACTIONS(1940), - [aux_sym_preproc_include_token1] = ACTIONS(1940), - [aux_sym_preproc_def_token1] = ACTIONS(1940), - [aux_sym_preproc_if_token1] = ACTIONS(1940), - [aux_sym_preproc_if_token2] = ACTIONS(1940), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1940), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1940), - [aux_sym_preproc_else_token1] = ACTIONS(1940), - [aux_sym_preproc_elif_token1] = ACTIONS(1940), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1940), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1940), - [sym_preproc_directive] = ACTIONS(1940), - [anon_sym_LPAREN2] = ACTIONS(1938), - [anon_sym_BANG] = ACTIONS(1938), - [anon_sym_TILDE] = ACTIONS(1938), - [anon_sym_DASH] = ACTIONS(1940), - [anon_sym_PLUS] = ACTIONS(1940), - [anon_sym_STAR] = ACTIONS(1938), - [anon_sym_AMP_AMP] = ACTIONS(1938), - [anon_sym_AMP] = ACTIONS(1940), - [anon_sym_SEMI] = ACTIONS(1938), - [anon_sym___extension__] = ACTIONS(1940), - [anon_sym_typedef] = ACTIONS(1940), - [anon_sym_virtual] = ACTIONS(1940), - [anon_sym_extern] = ACTIONS(1940), - [anon_sym___attribute__] = ACTIONS(1940), - [anon_sym___attribute] = ACTIONS(1940), - [anon_sym_using] = ACTIONS(1940), - [anon_sym_COLON_COLON] = ACTIONS(1938), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1938), - [anon_sym___declspec] = ACTIONS(1940), - [anon_sym___based] = ACTIONS(1940), - [anon_sym___cdecl] = ACTIONS(1940), - [anon_sym___clrcall] = ACTIONS(1940), - [anon_sym___stdcall] = ACTIONS(1940), - [anon_sym___fastcall] = ACTIONS(1940), - [anon_sym___thiscall] = ACTIONS(1940), - [anon_sym___vectorcall] = ACTIONS(1940), - [anon_sym_LBRACE] = ACTIONS(1938), - [anon_sym_signed] = ACTIONS(1940), - [anon_sym_unsigned] = ACTIONS(1940), - [anon_sym_long] = ACTIONS(1940), - [anon_sym_short] = ACTIONS(1940), - [anon_sym_LBRACK] = ACTIONS(1940), - [anon_sym_static] = ACTIONS(1940), - [anon_sym_register] = ACTIONS(1940), - [anon_sym_inline] = ACTIONS(1940), - [anon_sym___inline] = ACTIONS(1940), - [anon_sym___inline__] = ACTIONS(1940), - [anon_sym___forceinline] = ACTIONS(1940), - [anon_sym_thread_local] = ACTIONS(1940), - [anon_sym___thread] = ACTIONS(1940), - [anon_sym_const] = ACTIONS(1940), - [anon_sym_constexpr] = ACTIONS(1940), - [anon_sym_volatile] = ACTIONS(1940), - [anon_sym_restrict] = ACTIONS(1940), - [anon_sym___restrict__] = ACTIONS(1940), - [anon_sym__Atomic] = ACTIONS(1940), - [anon_sym__Noreturn] = ACTIONS(1940), - [anon_sym_noreturn] = ACTIONS(1940), - [anon_sym__Nonnull] = ACTIONS(1940), - [anon_sym_mutable] = ACTIONS(1940), - [anon_sym_constinit] = ACTIONS(1940), - [anon_sym_consteval] = ACTIONS(1940), - [anon_sym_alignas] = ACTIONS(1940), - [anon_sym__Alignas] = ACTIONS(1940), - [sym_primitive_type] = ACTIONS(1940), - [anon_sym_enum] = ACTIONS(1940), - [anon_sym_class] = ACTIONS(1940), - [anon_sym_struct] = ACTIONS(1940), - [anon_sym_union] = ACTIONS(1940), - [anon_sym_if] = ACTIONS(1940), - [anon_sym_else] = ACTIONS(1940), - [anon_sym_switch] = ACTIONS(1940), - [anon_sym_case] = ACTIONS(1940), - [anon_sym_default] = ACTIONS(1940), - [anon_sym_while] = ACTIONS(1940), - [anon_sym_do] = ACTIONS(1940), - [anon_sym_for] = ACTIONS(1940), - [anon_sym_return] = ACTIONS(1940), - [anon_sym_break] = ACTIONS(1940), - [anon_sym_continue] = ACTIONS(1940), - [anon_sym_goto] = ACTIONS(1940), - [anon_sym___try] = ACTIONS(1940), - [anon_sym___leave] = ACTIONS(1940), - [anon_sym_not] = ACTIONS(1940), - [anon_sym_compl] = ACTIONS(1940), - [anon_sym_DASH_DASH] = ACTIONS(1938), - [anon_sym_PLUS_PLUS] = ACTIONS(1938), - [anon_sym_sizeof] = ACTIONS(1940), - [anon_sym___alignof__] = ACTIONS(1940), - [anon_sym___alignof] = ACTIONS(1940), - [anon_sym__alignof] = ACTIONS(1940), - [anon_sym_alignof] = ACTIONS(1940), - [anon_sym__Alignof] = ACTIONS(1940), - [anon_sym_offsetof] = ACTIONS(1940), - [anon_sym__Generic] = ACTIONS(1940), - [anon_sym_asm] = ACTIONS(1940), - [anon_sym___asm__] = ACTIONS(1940), - [anon_sym___asm] = ACTIONS(1940), - [sym_number_literal] = ACTIONS(1938), - [anon_sym_L_SQUOTE] = ACTIONS(1938), - [anon_sym_u_SQUOTE] = ACTIONS(1938), - [anon_sym_U_SQUOTE] = ACTIONS(1938), - [anon_sym_u8_SQUOTE] = ACTIONS(1938), - [anon_sym_SQUOTE] = ACTIONS(1938), - [anon_sym_L_DQUOTE] = ACTIONS(1938), - [anon_sym_u_DQUOTE] = ACTIONS(1938), - [anon_sym_U_DQUOTE] = ACTIONS(1938), - [anon_sym_u8_DQUOTE] = ACTIONS(1938), - [anon_sym_DQUOTE] = ACTIONS(1938), - [sym_true] = ACTIONS(1940), - [sym_false] = ACTIONS(1940), - [anon_sym_NULL] = ACTIONS(1940), - [anon_sym_nullptr] = ACTIONS(1940), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1940), - [anon_sym_decltype] = ACTIONS(1940), - [anon_sym_explicit] = ACTIONS(1940), - [anon_sym_typename] = ACTIONS(1940), - [anon_sym_template] = ACTIONS(1940), - [anon_sym_operator] = ACTIONS(1940), - [anon_sym_try] = ACTIONS(1940), - [anon_sym_delete] = ACTIONS(1940), - [anon_sym_throw] = ACTIONS(1940), - [anon_sym_namespace] = ACTIONS(1940), - [anon_sym_static_assert] = ACTIONS(1940), - [anon_sym_concept] = ACTIONS(1940), - [anon_sym_co_return] = ACTIONS(1940), - [anon_sym_co_yield] = ACTIONS(1940), - [anon_sym_catch] = ACTIONS(1940), - [anon_sym_R_DQUOTE] = ACTIONS(1938), - [anon_sym_LR_DQUOTE] = ACTIONS(1938), - [anon_sym_uR_DQUOTE] = ACTIONS(1938), - [anon_sym_UR_DQUOTE] = ACTIONS(1938), - [anon_sym_u8R_DQUOTE] = ACTIONS(1938), - [anon_sym_co_await] = ACTIONS(1940), - [anon_sym_new] = ACTIONS(1940), - [anon_sym_requires] = ACTIONS(1940), - [sym_this] = ACTIONS(1940), + [sym_this] = ACTIONS(1920), }, [240] = { - [sym_else_clause] = STATE(270), - [sym_identifier] = ACTIONS(2623), - [aux_sym_preproc_include_token1] = ACTIONS(2623), - [aux_sym_preproc_def_token1] = ACTIONS(2623), - [aux_sym_preproc_if_token1] = ACTIONS(2623), - [aux_sym_preproc_if_token2] = ACTIONS(2623), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2623), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2623), - [aux_sym_preproc_else_token1] = ACTIONS(2623), - [aux_sym_preproc_elif_token1] = ACTIONS(2623), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2623), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2623), - [sym_preproc_directive] = ACTIONS(2623), - [anon_sym_LPAREN2] = ACTIONS(2625), - [anon_sym_BANG] = ACTIONS(2625), - [anon_sym_TILDE] = ACTIONS(2625), - [anon_sym_DASH] = ACTIONS(2623), - [anon_sym_PLUS] = ACTIONS(2623), - [anon_sym_STAR] = ACTIONS(2625), - [anon_sym_AMP_AMP] = ACTIONS(2625), - [anon_sym_AMP] = ACTIONS(2623), - [anon_sym_SEMI] = ACTIONS(2625), - [anon_sym___extension__] = ACTIONS(2623), - [anon_sym_typedef] = ACTIONS(2623), - [anon_sym_virtual] = ACTIONS(2623), - [anon_sym_extern] = ACTIONS(2623), - [anon_sym___attribute__] = ACTIONS(2623), - [anon_sym___attribute] = ACTIONS(2623), - [anon_sym_using] = ACTIONS(2623), - [anon_sym_COLON_COLON] = ACTIONS(2625), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2625), - [anon_sym___declspec] = ACTIONS(2623), - [anon_sym___based] = ACTIONS(2623), - [anon_sym___cdecl] = ACTIONS(2623), - [anon_sym___clrcall] = ACTIONS(2623), - [anon_sym___stdcall] = ACTIONS(2623), - [anon_sym___fastcall] = ACTIONS(2623), - [anon_sym___thiscall] = ACTIONS(2623), - [anon_sym___vectorcall] = ACTIONS(2623), - [anon_sym_LBRACE] = ACTIONS(2625), - [anon_sym_signed] = ACTIONS(2623), - [anon_sym_unsigned] = ACTIONS(2623), - [anon_sym_long] = ACTIONS(2623), - [anon_sym_short] = ACTIONS(2623), - [anon_sym_LBRACK] = ACTIONS(2623), - [anon_sym_static] = ACTIONS(2623), - [anon_sym_register] = ACTIONS(2623), - [anon_sym_inline] = ACTIONS(2623), - [anon_sym___inline] = ACTIONS(2623), - [anon_sym___inline__] = ACTIONS(2623), - [anon_sym___forceinline] = ACTIONS(2623), - [anon_sym_thread_local] = ACTIONS(2623), - [anon_sym___thread] = ACTIONS(2623), - [anon_sym_const] = ACTIONS(2623), - [anon_sym_constexpr] = ACTIONS(2623), - [anon_sym_volatile] = ACTIONS(2623), - [anon_sym_restrict] = ACTIONS(2623), - [anon_sym___restrict__] = ACTIONS(2623), - [anon_sym__Atomic] = ACTIONS(2623), - [anon_sym__Noreturn] = ACTIONS(2623), - [anon_sym_noreturn] = ACTIONS(2623), - [anon_sym__Nonnull] = ACTIONS(2623), - [anon_sym_mutable] = ACTIONS(2623), - [anon_sym_constinit] = ACTIONS(2623), - [anon_sym_consteval] = ACTIONS(2623), - [anon_sym_alignas] = ACTIONS(2623), - [anon_sym__Alignas] = ACTIONS(2623), - [sym_primitive_type] = ACTIONS(2623), - [anon_sym_enum] = ACTIONS(2623), - [anon_sym_class] = ACTIONS(2623), - [anon_sym_struct] = ACTIONS(2623), - [anon_sym_union] = ACTIONS(2623), - [anon_sym_if] = ACTIONS(2623), - [anon_sym_else] = ACTIONS(2617), - [anon_sym_switch] = ACTIONS(2623), - [anon_sym_case] = ACTIONS(2623), - [anon_sym_default] = ACTIONS(2623), - [anon_sym_while] = ACTIONS(2623), - [anon_sym_do] = ACTIONS(2623), - [anon_sym_for] = ACTIONS(2623), - [anon_sym_return] = ACTIONS(2623), - [anon_sym_break] = ACTIONS(2623), - [anon_sym_continue] = ACTIONS(2623), - [anon_sym_goto] = ACTIONS(2623), - [anon_sym___try] = ACTIONS(2623), - [anon_sym___leave] = ACTIONS(2623), - [anon_sym_not] = ACTIONS(2623), - [anon_sym_compl] = ACTIONS(2623), - [anon_sym_DASH_DASH] = ACTIONS(2625), - [anon_sym_PLUS_PLUS] = ACTIONS(2625), - [anon_sym_sizeof] = ACTIONS(2623), - [anon_sym___alignof__] = ACTIONS(2623), - [anon_sym___alignof] = ACTIONS(2623), - [anon_sym__alignof] = ACTIONS(2623), - [anon_sym_alignof] = ACTIONS(2623), - [anon_sym__Alignof] = ACTIONS(2623), - [anon_sym_offsetof] = ACTIONS(2623), - [anon_sym__Generic] = ACTIONS(2623), - [anon_sym_asm] = ACTIONS(2623), - [anon_sym___asm__] = ACTIONS(2623), - [anon_sym___asm] = ACTIONS(2623), - [sym_number_literal] = ACTIONS(2625), - [anon_sym_L_SQUOTE] = ACTIONS(2625), - [anon_sym_u_SQUOTE] = ACTIONS(2625), - [anon_sym_U_SQUOTE] = ACTIONS(2625), - [anon_sym_u8_SQUOTE] = ACTIONS(2625), - [anon_sym_SQUOTE] = ACTIONS(2625), - [anon_sym_L_DQUOTE] = ACTIONS(2625), - [anon_sym_u_DQUOTE] = ACTIONS(2625), - [anon_sym_U_DQUOTE] = ACTIONS(2625), - [anon_sym_u8_DQUOTE] = ACTIONS(2625), - [anon_sym_DQUOTE] = ACTIONS(2625), - [sym_true] = ACTIONS(2623), - [sym_false] = ACTIONS(2623), - [anon_sym_NULL] = ACTIONS(2623), - [anon_sym_nullptr] = ACTIONS(2623), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2623), - [anon_sym_decltype] = ACTIONS(2623), - [anon_sym_explicit] = ACTIONS(2623), - [anon_sym_typename] = ACTIONS(2623), - [anon_sym_template] = ACTIONS(2623), - [anon_sym_operator] = ACTIONS(2623), - [anon_sym_try] = ACTIONS(2623), - [anon_sym_delete] = ACTIONS(2623), - [anon_sym_throw] = ACTIONS(2623), - [anon_sym_namespace] = ACTIONS(2623), - [anon_sym_static_assert] = ACTIONS(2623), - [anon_sym_concept] = ACTIONS(2623), - [anon_sym_co_return] = ACTIONS(2623), - [anon_sym_co_yield] = ACTIONS(2623), - [anon_sym_R_DQUOTE] = ACTIONS(2625), - [anon_sym_LR_DQUOTE] = ACTIONS(2625), - [anon_sym_uR_DQUOTE] = ACTIONS(2625), - [anon_sym_UR_DQUOTE] = ACTIONS(2625), - [anon_sym_u8R_DQUOTE] = ACTIONS(2625), - [anon_sym_co_await] = ACTIONS(2623), - [anon_sym_new] = ACTIONS(2623), - [anon_sym_requires] = ACTIONS(2623), - [sym_this] = ACTIONS(2623), - }, - [241] = { [sym_identifier] = ACTIONS(1936), [aux_sym_preproc_include_token1] = ACTIONS(1936), [aux_sym_preproc_def_token1] = ACTIONS(1936), @@ -78905,6 +79046,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1936), [sym_this] = ACTIONS(1936), }, + [241] = { + [sym_identifier] = ACTIONS(1940), + [aux_sym_preproc_include_token1] = ACTIONS(1940), + [aux_sym_preproc_def_token1] = ACTIONS(1940), + [aux_sym_preproc_if_token1] = ACTIONS(1940), + [aux_sym_preproc_if_token2] = ACTIONS(1940), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1940), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1940), + [aux_sym_preproc_else_token1] = ACTIONS(1940), + [aux_sym_preproc_elif_token1] = ACTIONS(1940), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1940), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1940), + [sym_preproc_directive] = ACTIONS(1940), + [anon_sym_LPAREN2] = ACTIONS(1938), + [anon_sym_BANG] = ACTIONS(1938), + [anon_sym_TILDE] = ACTIONS(1938), + [anon_sym_DASH] = ACTIONS(1940), + [anon_sym_PLUS] = ACTIONS(1940), + [anon_sym_STAR] = ACTIONS(1938), + [anon_sym_AMP_AMP] = ACTIONS(1938), + [anon_sym_AMP] = ACTIONS(1940), + [anon_sym_SEMI] = ACTIONS(1938), + [anon_sym___extension__] = ACTIONS(1940), + [anon_sym_typedef] = ACTIONS(1940), + [anon_sym_virtual] = ACTIONS(1940), + [anon_sym_extern] = ACTIONS(1940), + [anon_sym___attribute__] = ACTIONS(1940), + [anon_sym___attribute] = ACTIONS(1940), + [anon_sym_using] = ACTIONS(1940), + [anon_sym_COLON_COLON] = ACTIONS(1938), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1938), + [anon_sym___declspec] = ACTIONS(1940), + [anon_sym___based] = ACTIONS(1940), + [anon_sym___cdecl] = ACTIONS(1940), + [anon_sym___clrcall] = ACTIONS(1940), + [anon_sym___stdcall] = ACTIONS(1940), + [anon_sym___fastcall] = ACTIONS(1940), + [anon_sym___thiscall] = ACTIONS(1940), + [anon_sym___vectorcall] = ACTIONS(1940), + [anon_sym_LBRACE] = ACTIONS(1938), + [anon_sym_signed] = ACTIONS(1940), + [anon_sym_unsigned] = ACTIONS(1940), + [anon_sym_long] = ACTIONS(1940), + [anon_sym_short] = ACTIONS(1940), + [anon_sym_LBRACK] = ACTIONS(1940), + [anon_sym_static] = ACTIONS(1940), + [anon_sym_register] = ACTIONS(1940), + [anon_sym_inline] = ACTIONS(1940), + [anon_sym___inline] = ACTIONS(1940), + [anon_sym___inline__] = ACTIONS(1940), + [anon_sym___forceinline] = ACTIONS(1940), + [anon_sym_thread_local] = ACTIONS(1940), + [anon_sym___thread] = ACTIONS(1940), + [anon_sym_const] = ACTIONS(1940), + [anon_sym_constexpr] = ACTIONS(1940), + [anon_sym_volatile] = ACTIONS(1940), + [anon_sym_restrict] = ACTIONS(1940), + [anon_sym___restrict__] = ACTIONS(1940), + [anon_sym__Atomic] = ACTIONS(1940), + [anon_sym__Noreturn] = ACTIONS(1940), + [anon_sym_noreturn] = ACTIONS(1940), + [anon_sym__Nonnull] = ACTIONS(1940), + [anon_sym_mutable] = ACTIONS(1940), + [anon_sym_constinit] = ACTIONS(1940), + [anon_sym_consteval] = ACTIONS(1940), + [anon_sym_alignas] = ACTIONS(1940), + [anon_sym__Alignas] = ACTIONS(1940), + [sym_primitive_type] = ACTIONS(1940), + [anon_sym_enum] = ACTIONS(1940), + [anon_sym_class] = ACTIONS(1940), + [anon_sym_struct] = ACTIONS(1940), + [anon_sym_union] = ACTIONS(1940), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_else] = ACTIONS(1940), + [anon_sym_switch] = ACTIONS(1940), + [anon_sym_case] = ACTIONS(1940), + [anon_sym_default] = ACTIONS(1940), + [anon_sym_while] = ACTIONS(1940), + [anon_sym_do] = ACTIONS(1940), + [anon_sym_for] = ACTIONS(1940), + [anon_sym_return] = ACTIONS(1940), + [anon_sym_break] = ACTIONS(1940), + [anon_sym_continue] = ACTIONS(1940), + [anon_sym_goto] = ACTIONS(1940), + [anon_sym___try] = ACTIONS(1940), + [anon_sym___leave] = ACTIONS(1940), + [anon_sym_not] = ACTIONS(1940), + [anon_sym_compl] = ACTIONS(1940), + [anon_sym_DASH_DASH] = ACTIONS(1938), + [anon_sym_PLUS_PLUS] = ACTIONS(1938), + [anon_sym_sizeof] = ACTIONS(1940), + [anon_sym___alignof__] = ACTIONS(1940), + [anon_sym___alignof] = ACTIONS(1940), + [anon_sym__alignof] = ACTIONS(1940), + [anon_sym_alignof] = ACTIONS(1940), + [anon_sym__Alignof] = ACTIONS(1940), + [anon_sym_offsetof] = ACTIONS(1940), + [anon_sym__Generic] = ACTIONS(1940), + [anon_sym_asm] = ACTIONS(1940), + [anon_sym___asm__] = ACTIONS(1940), + [anon_sym___asm] = ACTIONS(1940), + [sym_number_literal] = ACTIONS(1938), + [anon_sym_L_SQUOTE] = ACTIONS(1938), + [anon_sym_u_SQUOTE] = ACTIONS(1938), + [anon_sym_U_SQUOTE] = ACTIONS(1938), + [anon_sym_u8_SQUOTE] = ACTIONS(1938), + [anon_sym_SQUOTE] = ACTIONS(1938), + [anon_sym_L_DQUOTE] = ACTIONS(1938), + [anon_sym_u_DQUOTE] = ACTIONS(1938), + [anon_sym_U_DQUOTE] = ACTIONS(1938), + [anon_sym_u8_DQUOTE] = ACTIONS(1938), + [anon_sym_DQUOTE] = ACTIONS(1938), + [sym_true] = ACTIONS(1940), + [sym_false] = ACTIONS(1940), + [anon_sym_NULL] = ACTIONS(1940), + [anon_sym_nullptr] = ACTIONS(1940), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1940), + [anon_sym_decltype] = ACTIONS(1940), + [anon_sym_explicit] = ACTIONS(1940), + [anon_sym_typename] = ACTIONS(1940), + [anon_sym_template] = ACTIONS(1940), + [anon_sym_operator] = ACTIONS(1940), + [anon_sym_try] = ACTIONS(1940), + [anon_sym_delete] = ACTIONS(1940), + [anon_sym_throw] = ACTIONS(1940), + [anon_sym_namespace] = ACTIONS(1940), + [anon_sym_static_assert] = ACTIONS(1940), + [anon_sym_concept] = ACTIONS(1940), + [anon_sym_co_return] = ACTIONS(1940), + [anon_sym_co_yield] = ACTIONS(1940), + [anon_sym_catch] = ACTIONS(1940), + [anon_sym_R_DQUOTE] = ACTIONS(1938), + [anon_sym_LR_DQUOTE] = ACTIONS(1938), + [anon_sym_uR_DQUOTE] = ACTIONS(1938), + [anon_sym_UR_DQUOTE] = ACTIONS(1938), + [anon_sym_u8R_DQUOTE] = ACTIONS(1938), + [anon_sym_co_await] = ACTIONS(1940), + [anon_sym_new] = ACTIONS(1940), + [anon_sym_requires] = ACTIONS(1940), + [sym_this] = ACTIONS(1940), + }, [242] = { [sym_identifier] = ACTIONS(2627), [aux_sym_preproc_include_token1] = ACTIONS(2627), @@ -80175,991 +80458,991 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(2659), }, [251] = { - [sym_else_clause] = STATE(344), - [ts_builtin_sym_end] = ACTIONS(2625), - [sym_identifier] = ACTIONS(2623), - [aux_sym_preproc_include_token1] = ACTIONS(2623), - [aux_sym_preproc_def_token1] = ACTIONS(2623), - [aux_sym_preproc_if_token1] = ACTIONS(2623), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2623), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2623), - [sym_preproc_directive] = ACTIONS(2623), - [anon_sym_LPAREN2] = ACTIONS(2625), - [anon_sym_BANG] = ACTIONS(2625), - [anon_sym_TILDE] = ACTIONS(2625), - [anon_sym_DASH] = ACTIONS(2623), - [anon_sym_PLUS] = ACTIONS(2623), - [anon_sym_STAR] = ACTIONS(2625), - [anon_sym_AMP_AMP] = ACTIONS(2625), - [anon_sym_AMP] = ACTIONS(2623), - [anon_sym_SEMI] = ACTIONS(2625), - [anon_sym___extension__] = ACTIONS(2623), - [anon_sym_typedef] = ACTIONS(2623), - [anon_sym_virtual] = ACTIONS(2623), - [anon_sym_extern] = ACTIONS(2623), - [anon_sym___attribute__] = ACTIONS(2623), - [anon_sym___attribute] = ACTIONS(2623), - [anon_sym_using] = ACTIONS(2623), - [anon_sym_COLON_COLON] = ACTIONS(2625), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2625), - [anon_sym___declspec] = ACTIONS(2623), - [anon_sym___based] = ACTIONS(2623), - [anon_sym___cdecl] = ACTIONS(2623), - [anon_sym___clrcall] = ACTIONS(2623), - [anon_sym___stdcall] = ACTIONS(2623), - [anon_sym___fastcall] = ACTIONS(2623), - [anon_sym___thiscall] = ACTIONS(2623), - [anon_sym___vectorcall] = ACTIONS(2623), - [anon_sym_LBRACE] = ACTIONS(2625), - [anon_sym_signed] = ACTIONS(2623), - [anon_sym_unsigned] = ACTIONS(2623), - [anon_sym_long] = ACTIONS(2623), - [anon_sym_short] = ACTIONS(2623), - [anon_sym_LBRACK] = ACTIONS(2623), - [anon_sym_static] = ACTIONS(2623), - [anon_sym_register] = ACTIONS(2623), - [anon_sym_inline] = ACTIONS(2623), - [anon_sym___inline] = ACTIONS(2623), - [anon_sym___inline__] = ACTIONS(2623), - [anon_sym___forceinline] = ACTIONS(2623), - [anon_sym_thread_local] = ACTIONS(2623), - [anon_sym___thread] = ACTIONS(2623), - [anon_sym_const] = ACTIONS(2623), - [anon_sym_constexpr] = ACTIONS(2623), - [anon_sym_volatile] = ACTIONS(2623), - [anon_sym_restrict] = ACTIONS(2623), - [anon_sym___restrict__] = ACTIONS(2623), - [anon_sym__Atomic] = ACTIONS(2623), - [anon_sym__Noreturn] = ACTIONS(2623), - [anon_sym_noreturn] = ACTIONS(2623), - [anon_sym__Nonnull] = ACTIONS(2623), - [anon_sym_mutable] = ACTIONS(2623), - [anon_sym_constinit] = ACTIONS(2623), - [anon_sym_consteval] = ACTIONS(2623), - [anon_sym_alignas] = ACTIONS(2623), - [anon_sym__Alignas] = ACTIONS(2623), - [sym_primitive_type] = ACTIONS(2623), - [anon_sym_enum] = ACTIONS(2623), - [anon_sym_class] = ACTIONS(2623), - [anon_sym_struct] = ACTIONS(2623), - [anon_sym_union] = ACTIONS(2623), - [anon_sym_if] = ACTIONS(2623), + [sym_identifier] = ACTIONS(2663), + [aux_sym_preproc_include_token1] = ACTIONS(2663), + [aux_sym_preproc_def_token1] = ACTIONS(2663), + [aux_sym_preproc_if_token1] = ACTIONS(2663), + [aux_sym_preproc_if_token2] = ACTIONS(2663), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2663), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2663), + [aux_sym_preproc_else_token1] = ACTIONS(2663), + [aux_sym_preproc_elif_token1] = ACTIONS(2663), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2663), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2663), + [sym_preproc_directive] = ACTIONS(2663), + [anon_sym_LPAREN2] = ACTIONS(2665), + [anon_sym_BANG] = ACTIONS(2665), + [anon_sym_TILDE] = ACTIONS(2665), + [anon_sym_DASH] = ACTIONS(2663), + [anon_sym_PLUS] = ACTIONS(2663), + [anon_sym_STAR] = ACTIONS(2665), + [anon_sym_AMP_AMP] = ACTIONS(2665), + [anon_sym_AMP] = ACTIONS(2663), + [anon_sym_SEMI] = ACTIONS(2665), + [anon_sym___extension__] = ACTIONS(2663), + [anon_sym_typedef] = ACTIONS(2663), + [anon_sym_virtual] = ACTIONS(2663), + [anon_sym_extern] = ACTIONS(2663), + [anon_sym___attribute__] = ACTIONS(2663), + [anon_sym___attribute] = ACTIONS(2663), + [anon_sym_using] = ACTIONS(2663), + [anon_sym_COLON_COLON] = ACTIONS(2665), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2665), + [anon_sym___declspec] = ACTIONS(2663), + [anon_sym___based] = ACTIONS(2663), + [anon_sym___cdecl] = ACTIONS(2663), + [anon_sym___clrcall] = ACTIONS(2663), + [anon_sym___stdcall] = ACTIONS(2663), + [anon_sym___fastcall] = ACTIONS(2663), + [anon_sym___thiscall] = ACTIONS(2663), + [anon_sym___vectorcall] = ACTIONS(2663), + [anon_sym_LBRACE] = ACTIONS(2665), + [anon_sym_signed] = ACTIONS(2663), + [anon_sym_unsigned] = ACTIONS(2663), + [anon_sym_long] = ACTIONS(2663), + [anon_sym_short] = ACTIONS(2663), + [anon_sym_LBRACK] = ACTIONS(2663), + [anon_sym_static] = ACTIONS(2663), + [anon_sym_register] = ACTIONS(2663), + [anon_sym_inline] = ACTIONS(2663), + [anon_sym___inline] = ACTIONS(2663), + [anon_sym___inline__] = ACTIONS(2663), + [anon_sym___forceinline] = ACTIONS(2663), + [anon_sym_thread_local] = ACTIONS(2663), + [anon_sym___thread] = ACTIONS(2663), + [anon_sym_const] = ACTIONS(2663), + [anon_sym_constexpr] = ACTIONS(2663), + [anon_sym_volatile] = ACTIONS(2663), + [anon_sym_restrict] = ACTIONS(2663), + [anon_sym___restrict__] = ACTIONS(2663), + [anon_sym__Atomic] = ACTIONS(2663), + [anon_sym__Noreturn] = ACTIONS(2663), + [anon_sym_noreturn] = ACTIONS(2663), + [anon_sym__Nonnull] = ACTIONS(2663), + [anon_sym_mutable] = ACTIONS(2663), + [anon_sym_constinit] = ACTIONS(2663), + [anon_sym_consteval] = ACTIONS(2663), + [anon_sym_alignas] = ACTIONS(2663), + [anon_sym__Alignas] = ACTIONS(2663), + [sym_primitive_type] = ACTIONS(2663), + [anon_sym_enum] = ACTIONS(2663), + [anon_sym_class] = ACTIONS(2663), + [anon_sym_struct] = ACTIONS(2663), + [anon_sym_union] = ACTIONS(2663), + [anon_sym_if] = ACTIONS(2663), [anon_sym_else] = ACTIONS(2663), - [anon_sym_switch] = ACTIONS(2623), - [anon_sym_case] = ACTIONS(2623), - [anon_sym_default] = ACTIONS(2623), - [anon_sym_while] = ACTIONS(2623), - [anon_sym_do] = ACTIONS(2623), - [anon_sym_for] = ACTIONS(2623), - [anon_sym_return] = ACTIONS(2623), - [anon_sym_break] = ACTIONS(2623), - [anon_sym_continue] = ACTIONS(2623), - [anon_sym_goto] = ACTIONS(2623), - [anon_sym___try] = ACTIONS(2623), - [anon_sym___leave] = ACTIONS(2623), - [anon_sym_not] = ACTIONS(2623), - [anon_sym_compl] = ACTIONS(2623), - [anon_sym_DASH_DASH] = ACTIONS(2625), - [anon_sym_PLUS_PLUS] = ACTIONS(2625), - [anon_sym_sizeof] = ACTIONS(2623), - [anon_sym___alignof__] = ACTIONS(2623), - [anon_sym___alignof] = ACTIONS(2623), - [anon_sym__alignof] = ACTIONS(2623), - [anon_sym_alignof] = ACTIONS(2623), - [anon_sym__Alignof] = ACTIONS(2623), - [anon_sym_offsetof] = ACTIONS(2623), - [anon_sym__Generic] = ACTIONS(2623), - [anon_sym_asm] = ACTIONS(2623), - [anon_sym___asm__] = ACTIONS(2623), - [anon_sym___asm] = ACTIONS(2623), - [sym_number_literal] = ACTIONS(2625), - [anon_sym_L_SQUOTE] = ACTIONS(2625), - [anon_sym_u_SQUOTE] = ACTIONS(2625), - [anon_sym_U_SQUOTE] = ACTIONS(2625), - [anon_sym_u8_SQUOTE] = ACTIONS(2625), - [anon_sym_SQUOTE] = ACTIONS(2625), - [anon_sym_L_DQUOTE] = ACTIONS(2625), - [anon_sym_u_DQUOTE] = ACTIONS(2625), - [anon_sym_U_DQUOTE] = ACTIONS(2625), - [anon_sym_u8_DQUOTE] = ACTIONS(2625), - [anon_sym_DQUOTE] = ACTIONS(2625), - [sym_true] = ACTIONS(2623), - [sym_false] = ACTIONS(2623), - [anon_sym_NULL] = ACTIONS(2623), - [anon_sym_nullptr] = ACTIONS(2623), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2623), - [anon_sym_decltype] = ACTIONS(2623), - [anon_sym_explicit] = ACTIONS(2623), - [anon_sym_typename] = ACTIONS(2623), - [anon_sym_export] = ACTIONS(2623), - [anon_sym_module] = ACTIONS(2623), - [anon_sym_import] = ACTIONS(2623), - [anon_sym_template] = ACTIONS(2623), - [anon_sym_operator] = ACTIONS(2623), - [anon_sym_try] = ACTIONS(2623), - [anon_sym_delete] = ACTIONS(2623), - [anon_sym_throw] = ACTIONS(2623), - [anon_sym_namespace] = ACTIONS(2623), - [anon_sym_static_assert] = ACTIONS(2623), - [anon_sym_concept] = ACTIONS(2623), - [anon_sym_co_return] = ACTIONS(2623), - [anon_sym_co_yield] = ACTIONS(2623), - [anon_sym_R_DQUOTE] = ACTIONS(2625), - [anon_sym_LR_DQUOTE] = ACTIONS(2625), - [anon_sym_uR_DQUOTE] = ACTIONS(2625), - [anon_sym_UR_DQUOTE] = ACTIONS(2625), - [anon_sym_u8R_DQUOTE] = ACTIONS(2625), - [anon_sym_co_await] = ACTIONS(2623), - [anon_sym_new] = ACTIONS(2623), - [anon_sym_requires] = ACTIONS(2623), - [sym_this] = ACTIONS(2623), + [anon_sym_switch] = ACTIONS(2663), + [anon_sym_case] = ACTIONS(2663), + [anon_sym_default] = ACTIONS(2663), + [anon_sym_while] = ACTIONS(2663), + [anon_sym_do] = ACTIONS(2663), + [anon_sym_for] = ACTIONS(2663), + [anon_sym_return] = ACTIONS(2663), + [anon_sym_break] = ACTIONS(2663), + [anon_sym_continue] = ACTIONS(2663), + [anon_sym_goto] = ACTIONS(2663), + [anon_sym___try] = ACTIONS(2663), + [anon_sym___leave] = ACTIONS(2663), + [anon_sym_not] = ACTIONS(2663), + [anon_sym_compl] = ACTIONS(2663), + [anon_sym_DASH_DASH] = ACTIONS(2665), + [anon_sym_PLUS_PLUS] = ACTIONS(2665), + [anon_sym_sizeof] = ACTIONS(2663), + [anon_sym___alignof__] = ACTIONS(2663), + [anon_sym___alignof] = ACTIONS(2663), + [anon_sym__alignof] = ACTIONS(2663), + [anon_sym_alignof] = ACTIONS(2663), + [anon_sym__Alignof] = ACTIONS(2663), + [anon_sym_offsetof] = ACTIONS(2663), + [anon_sym__Generic] = ACTIONS(2663), + [anon_sym_asm] = ACTIONS(2663), + [anon_sym___asm__] = ACTIONS(2663), + [anon_sym___asm] = ACTIONS(2663), + [sym_number_literal] = ACTIONS(2665), + [anon_sym_L_SQUOTE] = ACTIONS(2665), + [anon_sym_u_SQUOTE] = ACTIONS(2665), + [anon_sym_U_SQUOTE] = ACTIONS(2665), + [anon_sym_u8_SQUOTE] = ACTIONS(2665), + [anon_sym_SQUOTE] = ACTIONS(2665), + [anon_sym_L_DQUOTE] = ACTIONS(2665), + [anon_sym_u_DQUOTE] = ACTIONS(2665), + [anon_sym_U_DQUOTE] = ACTIONS(2665), + [anon_sym_u8_DQUOTE] = ACTIONS(2665), + [anon_sym_DQUOTE] = ACTIONS(2665), + [sym_true] = ACTIONS(2663), + [sym_false] = ACTIONS(2663), + [anon_sym_NULL] = ACTIONS(2663), + [anon_sym_nullptr] = ACTIONS(2663), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2663), + [anon_sym_decltype] = ACTIONS(2663), + [anon_sym_explicit] = ACTIONS(2663), + [anon_sym_typename] = ACTIONS(2663), + [anon_sym_template] = ACTIONS(2663), + [anon_sym_operator] = ACTIONS(2663), + [anon_sym_try] = ACTIONS(2663), + [anon_sym_delete] = ACTIONS(2663), + [anon_sym_throw] = ACTIONS(2663), + [anon_sym_namespace] = ACTIONS(2663), + [anon_sym_static_assert] = ACTIONS(2663), + [anon_sym_concept] = ACTIONS(2663), + [anon_sym_co_return] = ACTIONS(2663), + [anon_sym_co_yield] = ACTIONS(2663), + [anon_sym_R_DQUOTE] = ACTIONS(2665), + [anon_sym_LR_DQUOTE] = ACTIONS(2665), + [anon_sym_uR_DQUOTE] = ACTIONS(2665), + [anon_sym_UR_DQUOTE] = ACTIONS(2665), + [anon_sym_u8R_DQUOTE] = ACTIONS(2665), + [anon_sym_co_await] = ACTIONS(2663), + [anon_sym_new] = ACTIONS(2663), + [anon_sym_requires] = ACTIONS(2663), + [sym_this] = ACTIONS(2663), }, [252] = { - [sym_identifier] = ACTIONS(2665), - [aux_sym_preproc_include_token1] = ACTIONS(2665), - [aux_sym_preproc_def_token1] = ACTIONS(2665), - [aux_sym_preproc_if_token1] = ACTIONS(2665), - [aux_sym_preproc_if_token2] = ACTIONS(2665), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2665), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2665), - [aux_sym_preproc_else_token1] = ACTIONS(2665), - [aux_sym_preproc_elif_token1] = ACTIONS(2665), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2665), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2665), - [sym_preproc_directive] = ACTIONS(2665), - [anon_sym_LPAREN2] = ACTIONS(2667), - [anon_sym_BANG] = ACTIONS(2667), - [anon_sym_TILDE] = ACTIONS(2667), - [anon_sym_DASH] = ACTIONS(2665), - [anon_sym_PLUS] = ACTIONS(2665), - [anon_sym_STAR] = ACTIONS(2667), - [anon_sym_AMP_AMP] = ACTIONS(2667), - [anon_sym_AMP] = ACTIONS(2665), - [anon_sym_SEMI] = ACTIONS(2667), - [anon_sym___extension__] = ACTIONS(2665), - [anon_sym_typedef] = ACTIONS(2665), - [anon_sym_virtual] = ACTIONS(2665), - [anon_sym_extern] = ACTIONS(2665), - [anon_sym___attribute__] = ACTIONS(2665), - [anon_sym___attribute] = ACTIONS(2665), - [anon_sym_using] = ACTIONS(2665), - [anon_sym_COLON_COLON] = ACTIONS(2667), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2667), - [anon_sym___declspec] = ACTIONS(2665), - [anon_sym___based] = ACTIONS(2665), - [anon_sym___cdecl] = ACTIONS(2665), - [anon_sym___clrcall] = ACTIONS(2665), - [anon_sym___stdcall] = ACTIONS(2665), - [anon_sym___fastcall] = ACTIONS(2665), - [anon_sym___thiscall] = ACTIONS(2665), - [anon_sym___vectorcall] = ACTIONS(2665), - [anon_sym_LBRACE] = ACTIONS(2667), - [anon_sym_signed] = ACTIONS(2665), - [anon_sym_unsigned] = ACTIONS(2665), - [anon_sym_long] = ACTIONS(2665), - [anon_sym_short] = ACTIONS(2665), - [anon_sym_LBRACK] = ACTIONS(2665), - [anon_sym_static] = ACTIONS(2665), - [anon_sym_register] = ACTIONS(2665), - [anon_sym_inline] = ACTIONS(2665), - [anon_sym___inline] = ACTIONS(2665), - [anon_sym___inline__] = ACTIONS(2665), - [anon_sym___forceinline] = ACTIONS(2665), - [anon_sym_thread_local] = ACTIONS(2665), - [anon_sym___thread] = ACTIONS(2665), - [anon_sym_const] = ACTIONS(2665), - [anon_sym_constexpr] = ACTIONS(2665), - [anon_sym_volatile] = ACTIONS(2665), - [anon_sym_restrict] = ACTIONS(2665), - [anon_sym___restrict__] = ACTIONS(2665), - [anon_sym__Atomic] = ACTIONS(2665), - [anon_sym__Noreturn] = ACTIONS(2665), - [anon_sym_noreturn] = ACTIONS(2665), - [anon_sym__Nonnull] = ACTIONS(2665), - [anon_sym_mutable] = ACTIONS(2665), - [anon_sym_constinit] = ACTIONS(2665), - [anon_sym_consteval] = ACTIONS(2665), - [anon_sym_alignas] = ACTIONS(2665), - [anon_sym__Alignas] = ACTIONS(2665), - [sym_primitive_type] = ACTIONS(2665), - [anon_sym_enum] = ACTIONS(2665), - [anon_sym_class] = ACTIONS(2665), - [anon_sym_struct] = ACTIONS(2665), - [anon_sym_union] = ACTIONS(2665), - [anon_sym_if] = ACTIONS(2665), - [anon_sym_else] = ACTIONS(2665), - [anon_sym_switch] = ACTIONS(2665), - [anon_sym_case] = ACTIONS(2665), - [anon_sym_default] = ACTIONS(2665), - [anon_sym_while] = ACTIONS(2665), - [anon_sym_do] = ACTIONS(2665), - [anon_sym_for] = ACTIONS(2665), - [anon_sym_return] = ACTIONS(2665), - [anon_sym_break] = ACTIONS(2665), - [anon_sym_continue] = ACTIONS(2665), - [anon_sym_goto] = ACTIONS(2665), - [anon_sym___try] = ACTIONS(2665), - [anon_sym___leave] = ACTIONS(2665), - [anon_sym_not] = ACTIONS(2665), - [anon_sym_compl] = ACTIONS(2665), - [anon_sym_DASH_DASH] = ACTIONS(2667), - [anon_sym_PLUS_PLUS] = ACTIONS(2667), - [anon_sym_sizeof] = ACTIONS(2665), - [anon_sym___alignof__] = ACTIONS(2665), - [anon_sym___alignof] = ACTIONS(2665), - [anon_sym__alignof] = ACTIONS(2665), - [anon_sym_alignof] = ACTIONS(2665), - [anon_sym__Alignof] = ACTIONS(2665), - [anon_sym_offsetof] = ACTIONS(2665), - [anon_sym__Generic] = ACTIONS(2665), - [anon_sym_asm] = ACTIONS(2665), - [anon_sym___asm__] = ACTIONS(2665), - [anon_sym___asm] = ACTIONS(2665), - [sym_number_literal] = ACTIONS(2667), - [anon_sym_L_SQUOTE] = ACTIONS(2667), - [anon_sym_u_SQUOTE] = ACTIONS(2667), - [anon_sym_U_SQUOTE] = ACTIONS(2667), - [anon_sym_u8_SQUOTE] = ACTIONS(2667), - [anon_sym_SQUOTE] = ACTIONS(2667), - [anon_sym_L_DQUOTE] = ACTIONS(2667), - [anon_sym_u_DQUOTE] = ACTIONS(2667), - [anon_sym_U_DQUOTE] = ACTIONS(2667), - [anon_sym_u8_DQUOTE] = ACTIONS(2667), - [anon_sym_DQUOTE] = ACTIONS(2667), - [sym_true] = ACTIONS(2665), - [sym_false] = ACTIONS(2665), - [anon_sym_NULL] = ACTIONS(2665), - [anon_sym_nullptr] = ACTIONS(2665), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2665), - [anon_sym_decltype] = ACTIONS(2665), - [anon_sym_explicit] = ACTIONS(2665), - [anon_sym_typename] = ACTIONS(2665), - [anon_sym_template] = ACTIONS(2665), - [anon_sym_operator] = ACTIONS(2665), - [anon_sym_try] = ACTIONS(2665), - [anon_sym_delete] = ACTIONS(2665), - [anon_sym_throw] = ACTIONS(2665), - [anon_sym_namespace] = ACTIONS(2665), - [anon_sym_static_assert] = ACTIONS(2665), - [anon_sym_concept] = ACTIONS(2665), - [anon_sym_co_return] = ACTIONS(2665), - [anon_sym_co_yield] = ACTIONS(2665), - [anon_sym_R_DQUOTE] = ACTIONS(2667), - [anon_sym_LR_DQUOTE] = ACTIONS(2667), - [anon_sym_uR_DQUOTE] = ACTIONS(2667), - [anon_sym_UR_DQUOTE] = ACTIONS(2667), - [anon_sym_u8R_DQUOTE] = ACTIONS(2667), - [anon_sym_co_await] = ACTIONS(2665), - [anon_sym_new] = ACTIONS(2665), - [anon_sym_requires] = ACTIONS(2665), - [sym_this] = ACTIONS(2665), + [sym_identifier] = ACTIONS(2627), + [aux_sym_preproc_include_token1] = ACTIONS(2627), + [aux_sym_preproc_def_token1] = ACTIONS(2627), + [aux_sym_preproc_if_token1] = ACTIONS(2627), + [aux_sym_preproc_if_token2] = ACTIONS(2627), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2627), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2627), + [aux_sym_preproc_else_token1] = ACTIONS(2627), + [aux_sym_preproc_elif_token1] = ACTIONS(2627), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2627), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2627), + [sym_preproc_directive] = ACTIONS(2627), + [anon_sym_LPAREN2] = ACTIONS(2629), + [anon_sym_BANG] = ACTIONS(2629), + [anon_sym_TILDE] = ACTIONS(2629), + [anon_sym_DASH] = ACTIONS(2627), + [anon_sym_PLUS] = ACTIONS(2627), + [anon_sym_STAR] = ACTIONS(2629), + [anon_sym_AMP_AMP] = ACTIONS(2629), + [anon_sym_AMP] = ACTIONS(2627), + [anon_sym_SEMI] = ACTIONS(2629), + [anon_sym___extension__] = ACTIONS(2627), + [anon_sym_typedef] = ACTIONS(2627), + [anon_sym_virtual] = ACTIONS(2627), + [anon_sym_extern] = ACTIONS(2627), + [anon_sym___attribute__] = ACTIONS(2627), + [anon_sym___attribute] = ACTIONS(2627), + [anon_sym_using] = ACTIONS(2627), + [anon_sym_COLON_COLON] = ACTIONS(2629), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2629), + [anon_sym___declspec] = ACTIONS(2627), + [anon_sym___based] = ACTIONS(2627), + [anon_sym___cdecl] = ACTIONS(2627), + [anon_sym___clrcall] = ACTIONS(2627), + [anon_sym___stdcall] = ACTIONS(2627), + [anon_sym___fastcall] = ACTIONS(2627), + [anon_sym___thiscall] = ACTIONS(2627), + [anon_sym___vectorcall] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(2629), + [anon_sym_signed] = ACTIONS(2627), + [anon_sym_unsigned] = ACTIONS(2627), + [anon_sym_long] = ACTIONS(2627), + [anon_sym_short] = ACTIONS(2627), + [anon_sym_LBRACK] = ACTIONS(2627), + [anon_sym_static] = ACTIONS(2627), + [anon_sym_register] = ACTIONS(2627), + [anon_sym_inline] = ACTIONS(2627), + [anon_sym___inline] = ACTIONS(2627), + [anon_sym___inline__] = ACTIONS(2627), + [anon_sym___forceinline] = ACTIONS(2627), + [anon_sym_thread_local] = ACTIONS(2627), + [anon_sym___thread] = ACTIONS(2627), + [anon_sym_const] = ACTIONS(2627), + [anon_sym_constexpr] = ACTIONS(2627), + [anon_sym_volatile] = ACTIONS(2627), + [anon_sym_restrict] = ACTIONS(2627), + [anon_sym___restrict__] = ACTIONS(2627), + [anon_sym__Atomic] = ACTIONS(2627), + [anon_sym__Noreturn] = ACTIONS(2627), + [anon_sym_noreturn] = ACTIONS(2627), + [anon_sym__Nonnull] = ACTIONS(2627), + [anon_sym_mutable] = ACTIONS(2627), + [anon_sym_constinit] = ACTIONS(2627), + [anon_sym_consteval] = ACTIONS(2627), + [anon_sym_alignas] = ACTIONS(2627), + [anon_sym__Alignas] = ACTIONS(2627), + [sym_primitive_type] = ACTIONS(2627), + [anon_sym_enum] = ACTIONS(2627), + [anon_sym_class] = ACTIONS(2627), + [anon_sym_struct] = ACTIONS(2627), + [anon_sym_union] = ACTIONS(2627), + [anon_sym_if] = ACTIONS(2627), + [anon_sym_else] = ACTIONS(2627), + [anon_sym_switch] = ACTIONS(2627), + [anon_sym_case] = ACTIONS(2627), + [anon_sym_default] = ACTIONS(2627), + [anon_sym_while] = ACTIONS(2627), + [anon_sym_do] = ACTIONS(2627), + [anon_sym_for] = ACTIONS(2627), + [anon_sym_return] = ACTIONS(2627), + [anon_sym_break] = ACTIONS(2627), + [anon_sym_continue] = ACTIONS(2627), + [anon_sym_goto] = ACTIONS(2627), + [anon_sym___try] = ACTIONS(2627), + [anon_sym___leave] = ACTIONS(2627), + [anon_sym_not] = ACTIONS(2627), + [anon_sym_compl] = ACTIONS(2627), + [anon_sym_DASH_DASH] = ACTIONS(2629), + [anon_sym_PLUS_PLUS] = ACTIONS(2629), + [anon_sym_sizeof] = ACTIONS(2627), + [anon_sym___alignof__] = ACTIONS(2627), + [anon_sym___alignof] = ACTIONS(2627), + [anon_sym__alignof] = ACTIONS(2627), + [anon_sym_alignof] = ACTIONS(2627), + [anon_sym__Alignof] = ACTIONS(2627), + [anon_sym_offsetof] = ACTIONS(2627), + [anon_sym__Generic] = ACTIONS(2627), + [anon_sym_asm] = ACTIONS(2627), + [anon_sym___asm__] = ACTIONS(2627), + [anon_sym___asm] = ACTIONS(2627), + [sym_number_literal] = ACTIONS(2629), + [anon_sym_L_SQUOTE] = ACTIONS(2629), + [anon_sym_u_SQUOTE] = ACTIONS(2629), + [anon_sym_U_SQUOTE] = ACTIONS(2629), + [anon_sym_u8_SQUOTE] = ACTIONS(2629), + [anon_sym_SQUOTE] = ACTIONS(2629), + [anon_sym_L_DQUOTE] = ACTIONS(2629), + [anon_sym_u_DQUOTE] = ACTIONS(2629), + [anon_sym_U_DQUOTE] = ACTIONS(2629), + [anon_sym_u8_DQUOTE] = ACTIONS(2629), + [anon_sym_DQUOTE] = ACTIONS(2629), + [sym_true] = ACTIONS(2627), + [sym_false] = ACTIONS(2627), + [anon_sym_NULL] = ACTIONS(2627), + [anon_sym_nullptr] = ACTIONS(2627), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2627), + [anon_sym_decltype] = ACTIONS(2627), + [anon_sym_explicit] = ACTIONS(2627), + [anon_sym_typename] = ACTIONS(2627), + [anon_sym_template] = ACTIONS(2627), + [anon_sym_operator] = ACTIONS(2627), + [anon_sym_try] = ACTIONS(2627), + [anon_sym_delete] = ACTIONS(2627), + [anon_sym_throw] = ACTIONS(2627), + [anon_sym_namespace] = ACTIONS(2627), + [anon_sym_static_assert] = ACTIONS(2627), + [anon_sym_concept] = ACTIONS(2627), + [anon_sym_co_return] = ACTIONS(2627), + [anon_sym_co_yield] = ACTIONS(2627), + [anon_sym_R_DQUOTE] = ACTIONS(2629), + [anon_sym_LR_DQUOTE] = ACTIONS(2629), + [anon_sym_uR_DQUOTE] = ACTIONS(2629), + [anon_sym_UR_DQUOTE] = ACTIONS(2629), + [anon_sym_u8R_DQUOTE] = ACTIONS(2629), + [anon_sym_co_await] = ACTIONS(2627), + [anon_sym_new] = ACTIONS(2627), + [anon_sym_requires] = ACTIONS(2627), + [sym_this] = ACTIONS(2627), }, [253] = { - [sym_identifier] = ACTIONS(2669), - [aux_sym_preproc_include_token1] = ACTIONS(2669), - [aux_sym_preproc_def_token1] = ACTIONS(2669), - [aux_sym_preproc_if_token1] = ACTIONS(2669), - [aux_sym_preproc_if_token2] = ACTIONS(2669), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2669), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2669), - [aux_sym_preproc_else_token1] = ACTIONS(2669), - [aux_sym_preproc_elif_token1] = ACTIONS(2669), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2669), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2669), - [sym_preproc_directive] = ACTIONS(2669), - [anon_sym_LPAREN2] = ACTIONS(2671), - [anon_sym_BANG] = ACTIONS(2671), - [anon_sym_TILDE] = ACTIONS(2671), - [anon_sym_DASH] = ACTIONS(2669), - [anon_sym_PLUS] = ACTIONS(2669), - [anon_sym_STAR] = ACTIONS(2671), - [anon_sym_AMP_AMP] = ACTIONS(2671), - [anon_sym_AMP] = ACTIONS(2669), - [anon_sym_SEMI] = ACTIONS(2671), - [anon_sym___extension__] = ACTIONS(2669), - [anon_sym_typedef] = ACTIONS(2669), - [anon_sym_virtual] = ACTIONS(2669), - [anon_sym_extern] = ACTIONS(2669), - [anon_sym___attribute__] = ACTIONS(2669), - [anon_sym___attribute] = ACTIONS(2669), - [anon_sym_using] = ACTIONS(2669), - [anon_sym_COLON_COLON] = ACTIONS(2671), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2671), - [anon_sym___declspec] = ACTIONS(2669), - [anon_sym___based] = ACTIONS(2669), - [anon_sym___cdecl] = ACTIONS(2669), - [anon_sym___clrcall] = ACTIONS(2669), - [anon_sym___stdcall] = ACTIONS(2669), - [anon_sym___fastcall] = ACTIONS(2669), - [anon_sym___thiscall] = ACTIONS(2669), - [anon_sym___vectorcall] = ACTIONS(2669), - [anon_sym_LBRACE] = ACTIONS(2671), - [anon_sym_signed] = ACTIONS(2669), - [anon_sym_unsigned] = ACTIONS(2669), - [anon_sym_long] = ACTIONS(2669), - [anon_sym_short] = ACTIONS(2669), - [anon_sym_LBRACK] = ACTIONS(2669), - [anon_sym_static] = ACTIONS(2669), - [anon_sym_register] = ACTIONS(2669), - [anon_sym_inline] = ACTIONS(2669), - [anon_sym___inline] = ACTIONS(2669), - [anon_sym___inline__] = ACTIONS(2669), - [anon_sym___forceinline] = ACTIONS(2669), - [anon_sym_thread_local] = ACTIONS(2669), - [anon_sym___thread] = ACTIONS(2669), - [anon_sym_const] = ACTIONS(2669), - [anon_sym_constexpr] = ACTIONS(2669), - [anon_sym_volatile] = ACTIONS(2669), - [anon_sym_restrict] = ACTIONS(2669), - [anon_sym___restrict__] = ACTIONS(2669), - [anon_sym__Atomic] = ACTIONS(2669), - [anon_sym__Noreturn] = ACTIONS(2669), - [anon_sym_noreturn] = ACTIONS(2669), - [anon_sym__Nonnull] = ACTIONS(2669), - [anon_sym_mutable] = ACTIONS(2669), - [anon_sym_constinit] = ACTIONS(2669), - [anon_sym_consteval] = ACTIONS(2669), - [anon_sym_alignas] = ACTIONS(2669), - [anon_sym__Alignas] = ACTIONS(2669), - [sym_primitive_type] = ACTIONS(2669), - [anon_sym_enum] = ACTIONS(2669), - [anon_sym_class] = ACTIONS(2669), - [anon_sym_struct] = ACTIONS(2669), - [anon_sym_union] = ACTIONS(2669), - [anon_sym_if] = ACTIONS(2669), - [anon_sym_else] = ACTIONS(2669), - [anon_sym_switch] = ACTIONS(2669), - [anon_sym_case] = ACTIONS(2669), - [anon_sym_default] = ACTIONS(2669), - [anon_sym_while] = ACTIONS(2669), - [anon_sym_do] = ACTIONS(2669), - [anon_sym_for] = ACTIONS(2669), - [anon_sym_return] = ACTIONS(2669), - [anon_sym_break] = ACTIONS(2669), - [anon_sym_continue] = ACTIONS(2669), - [anon_sym_goto] = ACTIONS(2669), - [anon_sym___try] = ACTIONS(2669), - [anon_sym___leave] = ACTIONS(2669), - [anon_sym_not] = ACTIONS(2669), - [anon_sym_compl] = ACTIONS(2669), - [anon_sym_DASH_DASH] = ACTIONS(2671), - [anon_sym_PLUS_PLUS] = ACTIONS(2671), - [anon_sym_sizeof] = ACTIONS(2669), - [anon_sym___alignof__] = ACTIONS(2669), - [anon_sym___alignof] = ACTIONS(2669), - [anon_sym__alignof] = ACTIONS(2669), - [anon_sym_alignof] = ACTIONS(2669), - [anon_sym__Alignof] = ACTIONS(2669), - [anon_sym_offsetof] = ACTIONS(2669), - [anon_sym__Generic] = ACTIONS(2669), - [anon_sym_asm] = ACTIONS(2669), - [anon_sym___asm__] = ACTIONS(2669), - [anon_sym___asm] = ACTIONS(2669), - [sym_number_literal] = ACTIONS(2671), - [anon_sym_L_SQUOTE] = ACTIONS(2671), - [anon_sym_u_SQUOTE] = ACTIONS(2671), - [anon_sym_U_SQUOTE] = ACTIONS(2671), - [anon_sym_u8_SQUOTE] = ACTIONS(2671), - [anon_sym_SQUOTE] = ACTIONS(2671), - [anon_sym_L_DQUOTE] = ACTIONS(2671), - [anon_sym_u_DQUOTE] = ACTIONS(2671), - [anon_sym_U_DQUOTE] = ACTIONS(2671), - [anon_sym_u8_DQUOTE] = ACTIONS(2671), - [anon_sym_DQUOTE] = ACTIONS(2671), - [sym_true] = ACTIONS(2669), - [sym_false] = ACTIONS(2669), - [anon_sym_NULL] = ACTIONS(2669), - [anon_sym_nullptr] = ACTIONS(2669), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2669), - [anon_sym_decltype] = ACTIONS(2669), - [anon_sym_explicit] = ACTIONS(2669), - [anon_sym_typename] = ACTIONS(2669), - [anon_sym_template] = ACTIONS(2669), - [anon_sym_operator] = ACTIONS(2669), - [anon_sym_try] = ACTIONS(2669), - [anon_sym_delete] = ACTIONS(2669), - [anon_sym_throw] = ACTIONS(2669), - [anon_sym_namespace] = ACTIONS(2669), - [anon_sym_static_assert] = ACTIONS(2669), - [anon_sym_concept] = ACTIONS(2669), - [anon_sym_co_return] = ACTIONS(2669), - [anon_sym_co_yield] = ACTIONS(2669), - [anon_sym_R_DQUOTE] = ACTIONS(2671), - [anon_sym_LR_DQUOTE] = ACTIONS(2671), - [anon_sym_uR_DQUOTE] = ACTIONS(2671), - [anon_sym_UR_DQUOTE] = ACTIONS(2671), - [anon_sym_u8R_DQUOTE] = ACTIONS(2671), - [anon_sym_co_await] = ACTIONS(2669), - [anon_sym_new] = ACTIONS(2669), - [anon_sym_requires] = ACTIONS(2669), - [sym_this] = ACTIONS(2669), + [sym_identifier] = ACTIONS(2667), + [aux_sym_preproc_include_token1] = ACTIONS(2667), + [aux_sym_preproc_def_token1] = ACTIONS(2667), + [aux_sym_preproc_if_token1] = ACTIONS(2667), + [aux_sym_preproc_if_token2] = ACTIONS(2667), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2667), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2667), + [aux_sym_preproc_else_token1] = ACTIONS(2667), + [aux_sym_preproc_elif_token1] = ACTIONS(2667), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2667), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2667), + [sym_preproc_directive] = ACTIONS(2667), + [anon_sym_LPAREN2] = ACTIONS(2669), + [anon_sym_BANG] = ACTIONS(2669), + [anon_sym_TILDE] = ACTIONS(2669), + [anon_sym_DASH] = ACTIONS(2667), + [anon_sym_PLUS] = ACTIONS(2667), + [anon_sym_STAR] = ACTIONS(2669), + [anon_sym_AMP_AMP] = ACTIONS(2669), + [anon_sym_AMP] = ACTIONS(2667), + [anon_sym_SEMI] = ACTIONS(2669), + [anon_sym___extension__] = ACTIONS(2667), + [anon_sym_typedef] = ACTIONS(2667), + [anon_sym_virtual] = ACTIONS(2667), + [anon_sym_extern] = ACTIONS(2667), + [anon_sym___attribute__] = ACTIONS(2667), + [anon_sym___attribute] = ACTIONS(2667), + [anon_sym_using] = ACTIONS(2667), + [anon_sym_COLON_COLON] = ACTIONS(2669), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2669), + [anon_sym___declspec] = ACTIONS(2667), + [anon_sym___based] = ACTIONS(2667), + [anon_sym___cdecl] = ACTIONS(2667), + [anon_sym___clrcall] = ACTIONS(2667), + [anon_sym___stdcall] = ACTIONS(2667), + [anon_sym___fastcall] = ACTIONS(2667), + [anon_sym___thiscall] = ACTIONS(2667), + [anon_sym___vectorcall] = ACTIONS(2667), + [anon_sym_LBRACE] = ACTIONS(2669), + [anon_sym_signed] = ACTIONS(2667), + [anon_sym_unsigned] = ACTIONS(2667), + [anon_sym_long] = ACTIONS(2667), + [anon_sym_short] = ACTIONS(2667), + [anon_sym_LBRACK] = ACTIONS(2667), + [anon_sym_static] = ACTIONS(2667), + [anon_sym_register] = ACTIONS(2667), + [anon_sym_inline] = ACTIONS(2667), + [anon_sym___inline] = ACTIONS(2667), + [anon_sym___inline__] = ACTIONS(2667), + [anon_sym___forceinline] = ACTIONS(2667), + [anon_sym_thread_local] = ACTIONS(2667), + [anon_sym___thread] = ACTIONS(2667), + [anon_sym_const] = ACTIONS(2667), + [anon_sym_constexpr] = ACTIONS(2667), + [anon_sym_volatile] = ACTIONS(2667), + [anon_sym_restrict] = ACTIONS(2667), + [anon_sym___restrict__] = ACTIONS(2667), + [anon_sym__Atomic] = ACTIONS(2667), + [anon_sym__Noreturn] = ACTIONS(2667), + [anon_sym_noreturn] = ACTIONS(2667), + [anon_sym__Nonnull] = ACTIONS(2667), + [anon_sym_mutable] = ACTIONS(2667), + [anon_sym_constinit] = ACTIONS(2667), + [anon_sym_consteval] = ACTIONS(2667), + [anon_sym_alignas] = ACTIONS(2667), + [anon_sym__Alignas] = ACTIONS(2667), + [sym_primitive_type] = ACTIONS(2667), + [anon_sym_enum] = ACTIONS(2667), + [anon_sym_class] = ACTIONS(2667), + [anon_sym_struct] = ACTIONS(2667), + [anon_sym_union] = ACTIONS(2667), + [anon_sym_if] = ACTIONS(2667), + [anon_sym_else] = ACTIONS(2667), + [anon_sym_switch] = ACTIONS(2667), + [anon_sym_case] = ACTIONS(2667), + [anon_sym_default] = ACTIONS(2667), + [anon_sym_while] = ACTIONS(2667), + [anon_sym_do] = ACTIONS(2667), + [anon_sym_for] = ACTIONS(2667), + [anon_sym_return] = ACTIONS(2667), + [anon_sym_break] = ACTIONS(2667), + [anon_sym_continue] = ACTIONS(2667), + [anon_sym_goto] = ACTIONS(2667), + [anon_sym___try] = ACTIONS(2667), + [anon_sym___leave] = ACTIONS(2667), + [anon_sym_not] = ACTIONS(2667), + [anon_sym_compl] = ACTIONS(2667), + [anon_sym_DASH_DASH] = ACTIONS(2669), + [anon_sym_PLUS_PLUS] = ACTIONS(2669), + [anon_sym_sizeof] = ACTIONS(2667), + [anon_sym___alignof__] = ACTIONS(2667), + [anon_sym___alignof] = ACTIONS(2667), + [anon_sym__alignof] = ACTIONS(2667), + [anon_sym_alignof] = ACTIONS(2667), + [anon_sym__Alignof] = ACTIONS(2667), + [anon_sym_offsetof] = ACTIONS(2667), + [anon_sym__Generic] = ACTIONS(2667), + [anon_sym_asm] = ACTIONS(2667), + [anon_sym___asm__] = ACTIONS(2667), + [anon_sym___asm] = ACTIONS(2667), + [sym_number_literal] = ACTIONS(2669), + [anon_sym_L_SQUOTE] = ACTIONS(2669), + [anon_sym_u_SQUOTE] = ACTIONS(2669), + [anon_sym_U_SQUOTE] = ACTIONS(2669), + [anon_sym_u8_SQUOTE] = ACTIONS(2669), + [anon_sym_SQUOTE] = ACTIONS(2669), + [anon_sym_L_DQUOTE] = ACTIONS(2669), + [anon_sym_u_DQUOTE] = ACTIONS(2669), + [anon_sym_U_DQUOTE] = ACTIONS(2669), + [anon_sym_u8_DQUOTE] = ACTIONS(2669), + [anon_sym_DQUOTE] = ACTIONS(2669), + [sym_true] = ACTIONS(2667), + [sym_false] = ACTIONS(2667), + [anon_sym_NULL] = ACTIONS(2667), + [anon_sym_nullptr] = ACTIONS(2667), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2667), + [anon_sym_decltype] = ACTIONS(2667), + [anon_sym_explicit] = ACTIONS(2667), + [anon_sym_typename] = ACTIONS(2667), + [anon_sym_template] = ACTIONS(2667), + [anon_sym_operator] = ACTIONS(2667), + [anon_sym_try] = ACTIONS(2667), + [anon_sym_delete] = ACTIONS(2667), + [anon_sym_throw] = ACTIONS(2667), + [anon_sym_namespace] = ACTIONS(2667), + [anon_sym_static_assert] = ACTIONS(2667), + [anon_sym_concept] = ACTIONS(2667), + [anon_sym_co_return] = ACTIONS(2667), + [anon_sym_co_yield] = ACTIONS(2667), + [anon_sym_R_DQUOTE] = ACTIONS(2669), + [anon_sym_LR_DQUOTE] = ACTIONS(2669), + [anon_sym_uR_DQUOTE] = ACTIONS(2669), + [anon_sym_UR_DQUOTE] = ACTIONS(2669), + [anon_sym_u8R_DQUOTE] = ACTIONS(2669), + [anon_sym_co_await] = ACTIONS(2667), + [anon_sym_new] = ACTIONS(2667), + [anon_sym_requires] = ACTIONS(2667), + [sym_this] = ACTIONS(2667), }, [254] = { - [sym_identifier] = ACTIONS(2673), - [aux_sym_preproc_include_token1] = ACTIONS(2673), - [aux_sym_preproc_def_token1] = ACTIONS(2673), - [aux_sym_preproc_if_token1] = ACTIONS(2673), - [aux_sym_preproc_if_token2] = ACTIONS(2673), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2673), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2673), - [aux_sym_preproc_else_token1] = ACTIONS(2673), - [aux_sym_preproc_elif_token1] = ACTIONS(2673), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2673), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2673), - [sym_preproc_directive] = ACTIONS(2673), - [anon_sym_LPAREN2] = ACTIONS(2675), - [anon_sym_BANG] = ACTIONS(2675), - [anon_sym_TILDE] = ACTIONS(2675), - [anon_sym_DASH] = ACTIONS(2673), - [anon_sym_PLUS] = ACTIONS(2673), - [anon_sym_STAR] = ACTIONS(2675), - [anon_sym_AMP_AMP] = ACTIONS(2675), - [anon_sym_AMP] = ACTIONS(2673), - [anon_sym_SEMI] = ACTIONS(2675), - [anon_sym___extension__] = ACTIONS(2673), - [anon_sym_typedef] = ACTIONS(2673), - [anon_sym_virtual] = ACTIONS(2673), - [anon_sym_extern] = ACTIONS(2673), - [anon_sym___attribute__] = ACTIONS(2673), - [anon_sym___attribute] = ACTIONS(2673), - [anon_sym_using] = ACTIONS(2673), - [anon_sym_COLON_COLON] = ACTIONS(2675), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2675), - [anon_sym___declspec] = ACTIONS(2673), - [anon_sym___based] = ACTIONS(2673), - [anon_sym___cdecl] = ACTIONS(2673), - [anon_sym___clrcall] = ACTIONS(2673), - [anon_sym___stdcall] = ACTIONS(2673), - [anon_sym___fastcall] = ACTIONS(2673), - [anon_sym___thiscall] = ACTIONS(2673), - [anon_sym___vectorcall] = ACTIONS(2673), - [anon_sym_LBRACE] = ACTIONS(2675), - [anon_sym_signed] = ACTIONS(2673), - [anon_sym_unsigned] = ACTIONS(2673), - [anon_sym_long] = ACTIONS(2673), - [anon_sym_short] = ACTIONS(2673), - [anon_sym_LBRACK] = ACTIONS(2673), - [anon_sym_static] = ACTIONS(2673), - [anon_sym_register] = ACTIONS(2673), - [anon_sym_inline] = ACTIONS(2673), - [anon_sym___inline] = ACTIONS(2673), - [anon_sym___inline__] = ACTIONS(2673), - [anon_sym___forceinline] = ACTIONS(2673), - [anon_sym_thread_local] = ACTIONS(2673), - [anon_sym___thread] = ACTIONS(2673), - [anon_sym_const] = ACTIONS(2673), - [anon_sym_constexpr] = ACTIONS(2673), - [anon_sym_volatile] = ACTIONS(2673), - [anon_sym_restrict] = ACTIONS(2673), - [anon_sym___restrict__] = ACTIONS(2673), - [anon_sym__Atomic] = ACTIONS(2673), - [anon_sym__Noreturn] = ACTIONS(2673), - [anon_sym_noreturn] = ACTIONS(2673), - [anon_sym__Nonnull] = ACTIONS(2673), - [anon_sym_mutable] = ACTIONS(2673), - [anon_sym_constinit] = ACTIONS(2673), - [anon_sym_consteval] = ACTIONS(2673), - [anon_sym_alignas] = ACTIONS(2673), - [anon_sym__Alignas] = ACTIONS(2673), - [sym_primitive_type] = ACTIONS(2673), - [anon_sym_enum] = ACTIONS(2673), - [anon_sym_class] = ACTIONS(2673), - [anon_sym_struct] = ACTIONS(2673), - [anon_sym_union] = ACTIONS(2673), - [anon_sym_if] = ACTIONS(2673), - [anon_sym_else] = ACTIONS(2673), - [anon_sym_switch] = ACTIONS(2673), - [anon_sym_case] = ACTIONS(2673), - [anon_sym_default] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2673), - [anon_sym_do] = ACTIONS(2673), - [anon_sym_for] = ACTIONS(2673), - [anon_sym_return] = ACTIONS(2673), - [anon_sym_break] = ACTIONS(2673), - [anon_sym_continue] = ACTIONS(2673), - [anon_sym_goto] = ACTIONS(2673), - [anon_sym___try] = ACTIONS(2673), - [anon_sym___leave] = ACTIONS(2673), - [anon_sym_not] = ACTIONS(2673), - [anon_sym_compl] = ACTIONS(2673), - [anon_sym_DASH_DASH] = ACTIONS(2675), - [anon_sym_PLUS_PLUS] = ACTIONS(2675), - [anon_sym_sizeof] = ACTIONS(2673), - [anon_sym___alignof__] = ACTIONS(2673), - [anon_sym___alignof] = ACTIONS(2673), - [anon_sym__alignof] = ACTIONS(2673), - [anon_sym_alignof] = ACTIONS(2673), - [anon_sym__Alignof] = ACTIONS(2673), - [anon_sym_offsetof] = ACTIONS(2673), - [anon_sym__Generic] = ACTIONS(2673), - [anon_sym_asm] = ACTIONS(2673), - [anon_sym___asm__] = ACTIONS(2673), - [anon_sym___asm] = ACTIONS(2673), - [sym_number_literal] = ACTIONS(2675), - [anon_sym_L_SQUOTE] = ACTIONS(2675), - [anon_sym_u_SQUOTE] = ACTIONS(2675), - [anon_sym_U_SQUOTE] = ACTIONS(2675), - [anon_sym_u8_SQUOTE] = ACTIONS(2675), - [anon_sym_SQUOTE] = ACTIONS(2675), - [anon_sym_L_DQUOTE] = ACTIONS(2675), - [anon_sym_u_DQUOTE] = ACTIONS(2675), - [anon_sym_U_DQUOTE] = ACTIONS(2675), - [anon_sym_u8_DQUOTE] = ACTIONS(2675), - [anon_sym_DQUOTE] = ACTIONS(2675), - [sym_true] = ACTIONS(2673), - [sym_false] = ACTIONS(2673), - [anon_sym_NULL] = ACTIONS(2673), - [anon_sym_nullptr] = ACTIONS(2673), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2673), - [anon_sym_decltype] = ACTIONS(2673), - [anon_sym_explicit] = ACTIONS(2673), - [anon_sym_typename] = ACTIONS(2673), - [anon_sym_template] = ACTIONS(2673), - [anon_sym_operator] = ACTIONS(2673), - [anon_sym_try] = ACTIONS(2673), - [anon_sym_delete] = ACTIONS(2673), - [anon_sym_throw] = ACTIONS(2673), - [anon_sym_namespace] = ACTIONS(2673), - [anon_sym_static_assert] = ACTIONS(2673), - [anon_sym_concept] = ACTIONS(2673), - [anon_sym_co_return] = ACTIONS(2673), - [anon_sym_co_yield] = ACTIONS(2673), - [anon_sym_R_DQUOTE] = ACTIONS(2675), - [anon_sym_LR_DQUOTE] = ACTIONS(2675), - [anon_sym_uR_DQUOTE] = ACTIONS(2675), - [anon_sym_UR_DQUOTE] = ACTIONS(2675), - [anon_sym_u8R_DQUOTE] = ACTIONS(2675), - [anon_sym_co_await] = ACTIONS(2673), - [anon_sym_new] = ACTIONS(2673), - [anon_sym_requires] = ACTIONS(2673), - [sym_this] = ACTIONS(2673), + [sym_identifier] = ACTIONS(2671), + [aux_sym_preproc_include_token1] = ACTIONS(2671), + [aux_sym_preproc_def_token1] = ACTIONS(2671), + [aux_sym_preproc_if_token1] = ACTIONS(2671), + [aux_sym_preproc_if_token2] = ACTIONS(2671), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2671), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2671), + [aux_sym_preproc_else_token1] = ACTIONS(2671), + [aux_sym_preproc_elif_token1] = ACTIONS(2671), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2671), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2671), + [sym_preproc_directive] = ACTIONS(2671), + [anon_sym_LPAREN2] = ACTIONS(2673), + [anon_sym_BANG] = ACTIONS(2673), + [anon_sym_TILDE] = ACTIONS(2673), + [anon_sym_DASH] = ACTIONS(2671), + [anon_sym_PLUS] = ACTIONS(2671), + [anon_sym_STAR] = ACTIONS(2673), + [anon_sym_AMP_AMP] = ACTIONS(2673), + [anon_sym_AMP] = ACTIONS(2671), + [anon_sym_SEMI] = ACTIONS(2673), + [anon_sym___extension__] = ACTIONS(2671), + [anon_sym_typedef] = ACTIONS(2671), + [anon_sym_virtual] = ACTIONS(2671), + [anon_sym_extern] = ACTIONS(2671), + [anon_sym___attribute__] = ACTIONS(2671), + [anon_sym___attribute] = ACTIONS(2671), + [anon_sym_using] = ACTIONS(2671), + [anon_sym_COLON_COLON] = ACTIONS(2673), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2673), + [anon_sym___declspec] = ACTIONS(2671), + [anon_sym___based] = ACTIONS(2671), + [anon_sym___cdecl] = ACTIONS(2671), + [anon_sym___clrcall] = ACTIONS(2671), + [anon_sym___stdcall] = ACTIONS(2671), + [anon_sym___fastcall] = ACTIONS(2671), + [anon_sym___thiscall] = ACTIONS(2671), + [anon_sym___vectorcall] = ACTIONS(2671), + [anon_sym_LBRACE] = ACTIONS(2673), + [anon_sym_signed] = ACTIONS(2671), + [anon_sym_unsigned] = ACTIONS(2671), + [anon_sym_long] = ACTIONS(2671), + [anon_sym_short] = ACTIONS(2671), + [anon_sym_LBRACK] = ACTIONS(2671), + [anon_sym_static] = ACTIONS(2671), + [anon_sym_register] = ACTIONS(2671), + [anon_sym_inline] = ACTIONS(2671), + [anon_sym___inline] = ACTIONS(2671), + [anon_sym___inline__] = ACTIONS(2671), + [anon_sym___forceinline] = ACTIONS(2671), + [anon_sym_thread_local] = ACTIONS(2671), + [anon_sym___thread] = ACTIONS(2671), + [anon_sym_const] = ACTIONS(2671), + [anon_sym_constexpr] = ACTIONS(2671), + [anon_sym_volatile] = ACTIONS(2671), + [anon_sym_restrict] = ACTIONS(2671), + [anon_sym___restrict__] = ACTIONS(2671), + [anon_sym__Atomic] = ACTIONS(2671), + [anon_sym__Noreturn] = ACTIONS(2671), + [anon_sym_noreturn] = ACTIONS(2671), + [anon_sym__Nonnull] = ACTIONS(2671), + [anon_sym_mutable] = ACTIONS(2671), + [anon_sym_constinit] = ACTIONS(2671), + [anon_sym_consteval] = ACTIONS(2671), + [anon_sym_alignas] = ACTIONS(2671), + [anon_sym__Alignas] = ACTIONS(2671), + [sym_primitive_type] = ACTIONS(2671), + [anon_sym_enum] = ACTIONS(2671), + [anon_sym_class] = ACTIONS(2671), + [anon_sym_struct] = ACTIONS(2671), + [anon_sym_union] = ACTIONS(2671), + [anon_sym_if] = ACTIONS(2671), + [anon_sym_else] = ACTIONS(2671), + [anon_sym_switch] = ACTIONS(2671), + [anon_sym_case] = ACTIONS(2671), + [anon_sym_default] = ACTIONS(2671), + [anon_sym_while] = ACTIONS(2671), + [anon_sym_do] = ACTIONS(2671), + [anon_sym_for] = ACTIONS(2671), + [anon_sym_return] = ACTIONS(2671), + [anon_sym_break] = ACTIONS(2671), + [anon_sym_continue] = ACTIONS(2671), + [anon_sym_goto] = ACTIONS(2671), + [anon_sym___try] = ACTIONS(2671), + [anon_sym___leave] = ACTIONS(2671), + [anon_sym_not] = ACTIONS(2671), + [anon_sym_compl] = ACTIONS(2671), + [anon_sym_DASH_DASH] = ACTIONS(2673), + [anon_sym_PLUS_PLUS] = ACTIONS(2673), + [anon_sym_sizeof] = ACTIONS(2671), + [anon_sym___alignof__] = ACTIONS(2671), + [anon_sym___alignof] = ACTIONS(2671), + [anon_sym__alignof] = ACTIONS(2671), + [anon_sym_alignof] = ACTIONS(2671), + [anon_sym__Alignof] = ACTIONS(2671), + [anon_sym_offsetof] = ACTIONS(2671), + [anon_sym__Generic] = ACTIONS(2671), + [anon_sym_asm] = ACTIONS(2671), + [anon_sym___asm__] = ACTIONS(2671), + [anon_sym___asm] = ACTIONS(2671), + [sym_number_literal] = ACTIONS(2673), + [anon_sym_L_SQUOTE] = ACTIONS(2673), + [anon_sym_u_SQUOTE] = ACTIONS(2673), + [anon_sym_U_SQUOTE] = ACTIONS(2673), + [anon_sym_u8_SQUOTE] = ACTIONS(2673), + [anon_sym_SQUOTE] = ACTIONS(2673), + [anon_sym_L_DQUOTE] = ACTIONS(2673), + [anon_sym_u_DQUOTE] = ACTIONS(2673), + [anon_sym_U_DQUOTE] = ACTIONS(2673), + [anon_sym_u8_DQUOTE] = ACTIONS(2673), + [anon_sym_DQUOTE] = ACTIONS(2673), + [sym_true] = ACTIONS(2671), + [sym_false] = ACTIONS(2671), + [anon_sym_NULL] = ACTIONS(2671), + [anon_sym_nullptr] = ACTIONS(2671), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2671), + [anon_sym_decltype] = ACTIONS(2671), + [anon_sym_explicit] = ACTIONS(2671), + [anon_sym_typename] = ACTIONS(2671), + [anon_sym_template] = ACTIONS(2671), + [anon_sym_operator] = ACTIONS(2671), + [anon_sym_try] = ACTIONS(2671), + [anon_sym_delete] = ACTIONS(2671), + [anon_sym_throw] = ACTIONS(2671), + [anon_sym_namespace] = ACTIONS(2671), + [anon_sym_static_assert] = ACTIONS(2671), + [anon_sym_concept] = ACTIONS(2671), + [anon_sym_co_return] = ACTIONS(2671), + [anon_sym_co_yield] = ACTIONS(2671), + [anon_sym_R_DQUOTE] = ACTIONS(2673), + [anon_sym_LR_DQUOTE] = ACTIONS(2673), + [anon_sym_uR_DQUOTE] = ACTIONS(2673), + [anon_sym_UR_DQUOTE] = ACTIONS(2673), + [anon_sym_u8R_DQUOTE] = ACTIONS(2673), + [anon_sym_co_await] = ACTIONS(2671), + [anon_sym_new] = ACTIONS(2671), + [anon_sym_requires] = ACTIONS(2671), + [sym_this] = ACTIONS(2671), }, [255] = { - [sym_identifier] = ACTIONS(2677), - [aux_sym_preproc_include_token1] = ACTIONS(2677), - [aux_sym_preproc_def_token1] = ACTIONS(2677), - [aux_sym_preproc_if_token1] = ACTIONS(2677), - [aux_sym_preproc_if_token2] = ACTIONS(2677), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2677), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2677), - [aux_sym_preproc_else_token1] = ACTIONS(2677), - [aux_sym_preproc_elif_token1] = ACTIONS(2677), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2677), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2677), - [sym_preproc_directive] = ACTIONS(2677), - [anon_sym_LPAREN2] = ACTIONS(2679), - [anon_sym_BANG] = ACTIONS(2679), - [anon_sym_TILDE] = ACTIONS(2679), - [anon_sym_DASH] = ACTIONS(2677), - [anon_sym_PLUS] = ACTIONS(2677), - [anon_sym_STAR] = ACTIONS(2679), - [anon_sym_AMP_AMP] = ACTIONS(2679), - [anon_sym_AMP] = ACTIONS(2677), - [anon_sym_SEMI] = ACTIONS(2679), - [anon_sym___extension__] = ACTIONS(2677), - [anon_sym_typedef] = ACTIONS(2677), - [anon_sym_virtual] = ACTIONS(2677), - [anon_sym_extern] = ACTIONS(2677), - [anon_sym___attribute__] = ACTIONS(2677), - [anon_sym___attribute] = ACTIONS(2677), - [anon_sym_using] = ACTIONS(2677), - [anon_sym_COLON_COLON] = ACTIONS(2679), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2679), - [anon_sym___declspec] = ACTIONS(2677), - [anon_sym___based] = ACTIONS(2677), - [anon_sym___cdecl] = ACTIONS(2677), - [anon_sym___clrcall] = ACTIONS(2677), - [anon_sym___stdcall] = ACTIONS(2677), - [anon_sym___fastcall] = ACTIONS(2677), - [anon_sym___thiscall] = ACTIONS(2677), - [anon_sym___vectorcall] = ACTIONS(2677), - [anon_sym_LBRACE] = ACTIONS(2679), - [anon_sym_signed] = ACTIONS(2677), - [anon_sym_unsigned] = ACTIONS(2677), - [anon_sym_long] = ACTIONS(2677), - [anon_sym_short] = ACTIONS(2677), - [anon_sym_LBRACK] = ACTIONS(2677), - [anon_sym_static] = ACTIONS(2677), - [anon_sym_register] = ACTIONS(2677), - [anon_sym_inline] = ACTIONS(2677), - [anon_sym___inline] = ACTIONS(2677), - [anon_sym___inline__] = ACTIONS(2677), - [anon_sym___forceinline] = ACTIONS(2677), - [anon_sym_thread_local] = ACTIONS(2677), - [anon_sym___thread] = ACTIONS(2677), - [anon_sym_const] = ACTIONS(2677), - [anon_sym_constexpr] = ACTIONS(2677), - [anon_sym_volatile] = ACTIONS(2677), - [anon_sym_restrict] = ACTIONS(2677), - [anon_sym___restrict__] = ACTIONS(2677), - [anon_sym__Atomic] = ACTIONS(2677), - [anon_sym__Noreturn] = ACTIONS(2677), - [anon_sym_noreturn] = ACTIONS(2677), - [anon_sym__Nonnull] = ACTIONS(2677), - [anon_sym_mutable] = ACTIONS(2677), - [anon_sym_constinit] = ACTIONS(2677), - [anon_sym_consteval] = ACTIONS(2677), - [anon_sym_alignas] = ACTIONS(2677), - [anon_sym__Alignas] = ACTIONS(2677), - [sym_primitive_type] = ACTIONS(2677), - [anon_sym_enum] = ACTIONS(2677), - [anon_sym_class] = ACTIONS(2677), - [anon_sym_struct] = ACTIONS(2677), - [anon_sym_union] = ACTIONS(2677), - [anon_sym_if] = ACTIONS(2677), - [anon_sym_else] = ACTIONS(2677), - [anon_sym_switch] = ACTIONS(2677), - [anon_sym_case] = ACTIONS(2677), - [anon_sym_default] = ACTIONS(2677), - [anon_sym_while] = ACTIONS(2677), - [anon_sym_do] = ACTIONS(2677), - [anon_sym_for] = ACTIONS(2677), - [anon_sym_return] = ACTIONS(2677), - [anon_sym_break] = ACTIONS(2677), - [anon_sym_continue] = ACTIONS(2677), - [anon_sym_goto] = ACTIONS(2677), - [anon_sym___try] = ACTIONS(2677), - [anon_sym___leave] = ACTIONS(2677), - [anon_sym_not] = ACTIONS(2677), - [anon_sym_compl] = ACTIONS(2677), - [anon_sym_DASH_DASH] = ACTIONS(2679), - [anon_sym_PLUS_PLUS] = ACTIONS(2679), - [anon_sym_sizeof] = ACTIONS(2677), - [anon_sym___alignof__] = ACTIONS(2677), - [anon_sym___alignof] = ACTIONS(2677), - [anon_sym__alignof] = ACTIONS(2677), - [anon_sym_alignof] = ACTIONS(2677), - [anon_sym__Alignof] = ACTIONS(2677), - [anon_sym_offsetof] = ACTIONS(2677), - [anon_sym__Generic] = ACTIONS(2677), - [anon_sym_asm] = ACTIONS(2677), - [anon_sym___asm__] = ACTIONS(2677), - [anon_sym___asm] = ACTIONS(2677), - [sym_number_literal] = ACTIONS(2679), - [anon_sym_L_SQUOTE] = ACTIONS(2679), - [anon_sym_u_SQUOTE] = ACTIONS(2679), - [anon_sym_U_SQUOTE] = ACTIONS(2679), - [anon_sym_u8_SQUOTE] = ACTIONS(2679), - [anon_sym_SQUOTE] = ACTIONS(2679), - [anon_sym_L_DQUOTE] = ACTIONS(2679), - [anon_sym_u_DQUOTE] = ACTIONS(2679), - [anon_sym_U_DQUOTE] = ACTIONS(2679), - [anon_sym_u8_DQUOTE] = ACTIONS(2679), - [anon_sym_DQUOTE] = ACTIONS(2679), - [sym_true] = ACTIONS(2677), - [sym_false] = ACTIONS(2677), - [anon_sym_NULL] = ACTIONS(2677), - [anon_sym_nullptr] = ACTIONS(2677), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2677), - [anon_sym_decltype] = ACTIONS(2677), - [anon_sym_explicit] = ACTIONS(2677), - [anon_sym_typename] = ACTIONS(2677), - [anon_sym_template] = ACTIONS(2677), - [anon_sym_operator] = ACTIONS(2677), - [anon_sym_try] = ACTIONS(2677), - [anon_sym_delete] = ACTIONS(2677), - [anon_sym_throw] = ACTIONS(2677), - [anon_sym_namespace] = ACTIONS(2677), - [anon_sym_static_assert] = ACTIONS(2677), - [anon_sym_concept] = ACTIONS(2677), - [anon_sym_co_return] = ACTIONS(2677), - [anon_sym_co_yield] = ACTIONS(2677), - [anon_sym_R_DQUOTE] = ACTIONS(2679), - [anon_sym_LR_DQUOTE] = ACTIONS(2679), - [anon_sym_uR_DQUOTE] = ACTIONS(2679), - [anon_sym_UR_DQUOTE] = ACTIONS(2679), - [anon_sym_u8R_DQUOTE] = ACTIONS(2679), - [anon_sym_co_await] = ACTIONS(2677), - [anon_sym_new] = ACTIONS(2677), - [anon_sym_requires] = ACTIONS(2677), - [sym_this] = ACTIONS(2677), + [sym_identifier] = ACTIONS(2675), + [aux_sym_preproc_include_token1] = ACTIONS(2675), + [aux_sym_preproc_def_token1] = ACTIONS(2675), + [aux_sym_preproc_if_token1] = ACTIONS(2675), + [aux_sym_preproc_if_token2] = ACTIONS(2675), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2675), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2675), + [aux_sym_preproc_else_token1] = ACTIONS(2675), + [aux_sym_preproc_elif_token1] = ACTIONS(2675), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2675), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2675), + [sym_preproc_directive] = ACTIONS(2675), + [anon_sym_LPAREN2] = ACTIONS(2677), + [anon_sym_BANG] = ACTIONS(2677), + [anon_sym_TILDE] = ACTIONS(2677), + [anon_sym_DASH] = ACTIONS(2675), + [anon_sym_PLUS] = ACTIONS(2675), + [anon_sym_STAR] = ACTIONS(2677), + [anon_sym_AMP_AMP] = ACTIONS(2677), + [anon_sym_AMP] = ACTIONS(2675), + [anon_sym_SEMI] = ACTIONS(2677), + [anon_sym___extension__] = ACTIONS(2675), + [anon_sym_typedef] = ACTIONS(2675), + [anon_sym_virtual] = ACTIONS(2675), + [anon_sym_extern] = ACTIONS(2675), + [anon_sym___attribute__] = ACTIONS(2675), + [anon_sym___attribute] = ACTIONS(2675), + [anon_sym_using] = ACTIONS(2675), + [anon_sym_COLON_COLON] = ACTIONS(2677), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2677), + [anon_sym___declspec] = ACTIONS(2675), + [anon_sym___based] = ACTIONS(2675), + [anon_sym___cdecl] = ACTIONS(2675), + [anon_sym___clrcall] = ACTIONS(2675), + [anon_sym___stdcall] = ACTIONS(2675), + [anon_sym___fastcall] = ACTIONS(2675), + [anon_sym___thiscall] = ACTIONS(2675), + [anon_sym___vectorcall] = ACTIONS(2675), + [anon_sym_LBRACE] = ACTIONS(2677), + [anon_sym_signed] = ACTIONS(2675), + [anon_sym_unsigned] = ACTIONS(2675), + [anon_sym_long] = ACTIONS(2675), + [anon_sym_short] = ACTIONS(2675), + [anon_sym_LBRACK] = ACTIONS(2675), + [anon_sym_static] = ACTIONS(2675), + [anon_sym_register] = ACTIONS(2675), + [anon_sym_inline] = ACTIONS(2675), + [anon_sym___inline] = ACTIONS(2675), + [anon_sym___inline__] = ACTIONS(2675), + [anon_sym___forceinline] = ACTIONS(2675), + [anon_sym_thread_local] = ACTIONS(2675), + [anon_sym___thread] = ACTIONS(2675), + [anon_sym_const] = ACTIONS(2675), + [anon_sym_constexpr] = ACTIONS(2675), + [anon_sym_volatile] = ACTIONS(2675), + [anon_sym_restrict] = ACTIONS(2675), + [anon_sym___restrict__] = ACTIONS(2675), + [anon_sym__Atomic] = ACTIONS(2675), + [anon_sym__Noreturn] = ACTIONS(2675), + [anon_sym_noreturn] = ACTIONS(2675), + [anon_sym__Nonnull] = ACTIONS(2675), + [anon_sym_mutable] = ACTIONS(2675), + [anon_sym_constinit] = ACTIONS(2675), + [anon_sym_consteval] = ACTIONS(2675), + [anon_sym_alignas] = ACTIONS(2675), + [anon_sym__Alignas] = ACTIONS(2675), + [sym_primitive_type] = ACTIONS(2675), + [anon_sym_enum] = ACTIONS(2675), + [anon_sym_class] = ACTIONS(2675), + [anon_sym_struct] = ACTIONS(2675), + [anon_sym_union] = ACTIONS(2675), + [anon_sym_if] = ACTIONS(2675), + [anon_sym_else] = ACTIONS(2675), + [anon_sym_switch] = ACTIONS(2675), + [anon_sym_case] = ACTIONS(2675), + [anon_sym_default] = ACTIONS(2675), + [anon_sym_while] = ACTIONS(2675), + [anon_sym_do] = ACTIONS(2675), + [anon_sym_for] = ACTIONS(2675), + [anon_sym_return] = ACTIONS(2675), + [anon_sym_break] = ACTIONS(2675), + [anon_sym_continue] = ACTIONS(2675), + [anon_sym_goto] = ACTIONS(2675), + [anon_sym___try] = ACTIONS(2675), + [anon_sym___leave] = ACTIONS(2675), + [anon_sym_not] = ACTIONS(2675), + [anon_sym_compl] = ACTIONS(2675), + [anon_sym_DASH_DASH] = ACTIONS(2677), + [anon_sym_PLUS_PLUS] = ACTIONS(2677), + [anon_sym_sizeof] = ACTIONS(2675), + [anon_sym___alignof__] = ACTIONS(2675), + [anon_sym___alignof] = ACTIONS(2675), + [anon_sym__alignof] = ACTIONS(2675), + [anon_sym_alignof] = ACTIONS(2675), + [anon_sym__Alignof] = ACTIONS(2675), + [anon_sym_offsetof] = ACTIONS(2675), + [anon_sym__Generic] = ACTIONS(2675), + [anon_sym_asm] = ACTIONS(2675), + [anon_sym___asm__] = ACTIONS(2675), + [anon_sym___asm] = ACTIONS(2675), + [sym_number_literal] = ACTIONS(2677), + [anon_sym_L_SQUOTE] = ACTIONS(2677), + [anon_sym_u_SQUOTE] = ACTIONS(2677), + [anon_sym_U_SQUOTE] = ACTIONS(2677), + [anon_sym_u8_SQUOTE] = ACTIONS(2677), + [anon_sym_SQUOTE] = ACTIONS(2677), + [anon_sym_L_DQUOTE] = ACTIONS(2677), + [anon_sym_u_DQUOTE] = ACTIONS(2677), + [anon_sym_U_DQUOTE] = ACTIONS(2677), + [anon_sym_u8_DQUOTE] = ACTIONS(2677), + [anon_sym_DQUOTE] = ACTIONS(2677), + [sym_true] = ACTIONS(2675), + [sym_false] = ACTIONS(2675), + [anon_sym_NULL] = ACTIONS(2675), + [anon_sym_nullptr] = ACTIONS(2675), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2675), + [anon_sym_decltype] = ACTIONS(2675), + [anon_sym_explicit] = ACTIONS(2675), + [anon_sym_typename] = ACTIONS(2675), + [anon_sym_template] = ACTIONS(2675), + [anon_sym_operator] = ACTIONS(2675), + [anon_sym_try] = ACTIONS(2675), + [anon_sym_delete] = ACTIONS(2675), + [anon_sym_throw] = ACTIONS(2675), + [anon_sym_namespace] = ACTIONS(2675), + [anon_sym_static_assert] = ACTIONS(2675), + [anon_sym_concept] = ACTIONS(2675), + [anon_sym_co_return] = ACTIONS(2675), + [anon_sym_co_yield] = ACTIONS(2675), + [anon_sym_R_DQUOTE] = ACTIONS(2677), + [anon_sym_LR_DQUOTE] = ACTIONS(2677), + [anon_sym_uR_DQUOTE] = ACTIONS(2677), + [anon_sym_UR_DQUOTE] = ACTIONS(2677), + [anon_sym_u8R_DQUOTE] = ACTIONS(2677), + [anon_sym_co_await] = ACTIONS(2675), + [anon_sym_new] = ACTIONS(2675), + [anon_sym_requires] = ACTIONS(2675), + [sym_this] = ACTIONS(2675), }, [256] = { - [sym_identifier] = ACTIONS(2681), - [aux_sym_preproc_include_token1] = ACTIONS(2681), - [aux_sym_preproc_def_token1] = ACTIONS(2681), - [aux_sym_preproc_if_token1] = ACTIONS(2681), - [aux_sym_preproc_if_token2] = ACTIONS(2681), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2681), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2681), - [aux_sym_preproc_else_token1] = ACTIONS(2681), - [aux_sym_preproc_elif_token1] = ACTIONS(2681), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2681), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2681), - [sym_preproc_directive] = ACTIONS(2681), - [anon_sym_LPAREN2] = ACTIONS(2683), - [anon_sym_BANG] = ACTIONS(2683), - [anon_sym_TILDE] = ACTIONS(2683), - [anon_sym_DASH] = ACTIONS(2681), - [anon_sym_PLUS] = ACTIONS(2681), - [anon_sym_STAR] = ACTIONS(2683), - [anon_sym_AMP_AMP] = ACTIONS(2683), - [anon_sym_AMP] = ACTIONS(2681), - [anon_sym_SEMI] = ACTIONS(2683), - [anon_sym___extension__] = ACTIONS(2681), - [anon_sym_typedef] = ACTIONS(2681), - [anon_sym_virtual] = ACTIONS(2681), - [anon_sym_extern] = ACTIONS(2681), - [anon_sym___attribute__] = ACTIONS(2681), - [anon_sym___attribute] = ACTIONS(2681), - [anon_sym_using] = ACTIONS(2681), - [anon_sym_COLON_COLON] = ACTIONS(2683), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2683), - [anon_sym___declspec] = ACTIONS(2681), - [anon_sym___based] = ACTIONS(2681), - [anon_sym___cdecl] = ACTIONS(2681), - [anon_sym___clrcall] = ACTIONS(2681), - [anon_sym___stdcall] = ACTIONS(2681), - [anon_sym___fastcall] = ACTIONS(2681), - [anon_sym___thiscall] = ACTIONS(2681), - [anon_sym___vectorcall] = ACTIONS(2681), - [anon_sym_LBRACE] = ACTIONS(2683), - [anon_sym_signed] = ACTIONS(2681), - [anon_sym_unsigned] = ACTIONS(2681), - [anon_sym_long] = ACTIONS(2681), - [anon_sym_short] = ACTIONS(2681), - [anon_sym_LBRACK] = ACTIONS(2681), - [anon_sym_static] = ACTIONS(2681), - [anon_sym_register] = ACTIONS(2681), - [anon_sym_inline] = ACTIONS(2681), - [anon_sym___inline] = ACTIONS(2681), - [anon_sym___inline__] = ACTIONS(2681), - [anon_sym___forceinline] = ACTIONS(2681), - [anon_sym_thread_local] = ACTIONS(2681), - [anon_sym___thread] = ACTIONS(2681), - [anon_sym_const] = ACTIONS(2681), - [anon_sym_constexpr] = ACTIONS(2681), - [anon_sym_volatile] = ACTIONS(2681), - [anon_sym_restrict] = ACTIONS(2681), - [anon_sym___restrict__] = ACTIONS(2681), - [anon_sym__Atomic] = ACTIONS(2681), - [anon_sym__Noreturn] = ACTIONS(2681), - [anon_sym_noreturn] = ACTIONS(2681), - [anon_sym__Nonnull] = ACTIONS(2681), - [anon_sym_mutable] = ACTIONS(2681), - [anon_sym_constinit] = ACTIONS(2681), - [anon_sym_consteval] = ACTIONS(2681), - [anon_sym_alignas] = ACTIONS(2681), - [anon_sym__Alignas] = ACTIONS(2681), - [sym_primitive_type] = ACTIONS(2681), - [anon_sym_enum] = ACTIONS(2681), - [anon_sym_class] = ACTIONS(2681), - [anon_sym_struct] = ACTIONS(2681), - [anon_sym_union] = ACTIONS(2681), - [anon_sym_if] = ACTIONS(2681), - [anon_sym_else] = ACTIONS(2681), - [anon_sym_switch] = ACTIONS(2681), - [anon_sym_case] = ACTIONS(2681), - [anon_sym_default] = ACTIONS(2681), - [anon_sym_while] = ACTIONS(2681), - [anon_sym_do] = ACTIONS(2681), - [anon_sym_for] = ACTIONS(2681), - [anon_sym_return] = ACTIONS(2681), - [anon_sym_break] = ACTIONS(2681), - [anon_sym_continue] = ACTIONS(2681), - [anon_sym_goto] = ACTIONS(2681), - [anon_sym___try] = ACTIONS(2681), - [anon_sym___leave] = ACTIONS(2681), - [anon_sym_not] = ACTIONS(2681), - [anon_sym_compl] = ACTIONS(2681), - [anon_sym_DASH_DASH] = ACTIONS(2683), - [anon_sym_PLUS_PLUS] = ACTIONS(2683), - [anon_sym_sizeof] = ACTIONS(2681), - [anon_sym___alignof__] = ACTIONS(2681), - [anon_sym___alignof] = ACTIONS(2681), - [anon_sym__alignof] = ACTIONS(2681), - [anon_sym_alignof] = ACTIONS(2681), - [anon_sym__Alignof] = ACTIONS(2681), - [anon_sym_offsetof] = ACTIONS(2681), - [anon_sym__Generic] = ACTIONS(2681), - [anon_sym_asm] = ACTIONS(2681), - [anon_sym___asm__] = ACTIONS(2681), - [anon_sym___asm] = ACTIONS(2681), - [sym_number_literal] = ACTIONS(2683), - [anon_sym_L_SQUOTE] = ACTIONS(2683), - [anon_sym_u_SQUOTE] = ACTIONS(2683), - [anon_sym_U_SQUOTE] = ACTIONS(2683), - [anon_sym_u8_SQUOTE] = ACTIONS(2683), - [anon_sym_SQUOTE] = ACTIONS(2683), - [anon_sym_L_DQUOTE] = ACTIONS(2683), - [anon_sym_u_DQUOTE] = ACTIONS(2683), - [anon_sym_U_DQUOTE] = ACTIONS(2683), - [anon_sym_u8_DQUOTE] = ACTIONS(2683), - [anon_sym_DQUOTE] = ACTIONS(2683), - [sym_true] = ACTIONS(2681), - [sym_false] = ACTIONS(2681), - [anon_sym_NULL] = ACTIONS(2681), - [anon_sym_nullptr] = ACTIONS(2681), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2681), - [anon_sym_decltype] = ACTIONS(2681), - [anon_sym_explicit] = ACTIONS(2681), - [anon_sym_typename] = ACTIONS(2681), - [anon_sym_template] = ACTIONS(2681), - [anon_sym_operator] = ACTIONS(2681), - [anon_sym_try] = ACTIONS(2681), - [anon_sym_delete] = ACTIONS(2681), - [anon_sym_throw] = ACTIONS(2681), - [anon_sym_namespace] = ACTIONS(2681), - [anon_sym_static_assert] = ACTIONS(2681), - [anon_sym_concept] = ACTIONS(2681), - [anon_sym_co_return] = ACTIONS(2681), - [anon_sym_co_yield] = ACTIONS(2681), - [anon_sym_R_DQUOTE] = ACTIONS(2683), - [anon_sym_LR_DQUOTE] = ACTIONS(2683), - [anon_sym_uR_DQUOTE] = ACTIONS(2683), - [anon_sym_UR_DQUOTE] = ACTIONS(2683), - [anon_sym_u8R_DQUOTE] = ACTIONS(2683), - [anon_sym_co_await] = ACTIONS(2681), - [anon_sym_new] = ACTIONS(2681), - [anon_sym_requires] = ACTIONS(2681), - [sym_this] = ACTIONS(2681), + [sym_identifier] = ACTIONS(2679), + [aux_sym_preproc_include_token1] = ACTIONS(2679), + [aux_sym_preproc_def_token1] = ACTIONS(2679), + [aux_sym_preproc_if_token1] = ACTIONS(2679), + [aux_sym_preproc_if_token2] = ACTIONS(2679), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2679), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2679), + [aux_sym_preproc_else_token1] = ACTIONS(2679), + [aux_sym_preproc_elif_token1] = ACTIONS(2679), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2679), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2679), + [sym_preproc_directive] = ACTIONS(2679), + [anon_sym_LPAREN2] = ACTIONS(2681), + [anon_sym_BANG] = ACTIONS(2681), + [anon_sym_TILDE] = ACTIONS(2681), + [anon_sym_DASH] = ACTIONS(2679), + [anon_sym_PLUS] = ACTIONS(2679), + [anon_sym_STAR] = ACTIONS(2681), + [anon_sym_AMP_AMP] = ACTIONS(2681), + [anon_sym_AMP] = ACTIONS(2679), + [anon_sym_SEMI] = ACTIONS(2681), + [anon_sym___extension__] = ACTIONS(2679), + [anon_sym_typedef] = ACTIONS(2679), + [anon_sym_virtual] = ACTIONS(2679), + [anon_sym_extern] = ACTIONS(2679), + [anon_sym___attribute__] = ACTIONS(2679), + [anon_sym___attribute] = ACTIONS(2679), + [anon_sym_using] = ACTIONS(2679), + [anon_sym_COLON_COLON] = ACTIONS(2681), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2681), + [anon_sym___declspec] = ACTIONS(2679), + [anon_sym___based] = ACTIONS(2679), + [anon_sym___cdecl] = ACTIONS(2679), + [anon_sym___clrcall] = ACTIONS(2679), + [anon_sym___stdcall] = ACTIONS(2679), + [anon_sym___fastcall] = ACTIONS(2679), + [anon_sym___thiscall] = ACTIONS(2679), + [anon_sym___vectorcall] = ACTIONS(2679), + [anon_sym_LBRACE] = ACTIONS(2681), + [anon_sym_signed] = ACTIONS(2679), + [anon_sym_unsigned] = ACTIONS(2679), + [anon_sym_long] = ACTIONS(2679), + [anon_sym_short] = ACTIONS(2679), + [anon_sym_LBRACK] = ACTIONS(2679), + [anon_sym_static] = ACTIONS(2679), + [anon_sym_register] = ACTIONS(2679), + [anon_sym_inline] = ACTIONS(2679), + [anon_sym___inline] = ACTIONS(2679), + [anon_sym___inline__] = ACTIONS(2679), + [anon_sym___forceinline] = ACTIONS(2679), + [anon_sym_thread_local] = ACTIONS(2679), + [anon_sym___thread] = ACTIONS(2679), + [anon_sym_const] = ACTIONS(2679), + [anon_sym_constexpr] = ACTIONS(2679), + [anon_sym_volatile] = ACTIONS(2679), + [anon_sym_restrict] = ACTIONS(2679), + [anon_sym___restrict__] = ACTIONS(2679), + [anon_sym__Atomic] = ACTIONS(2679), + [anon_sym__Noreturn] = ACTIONS(2679), + [anon_sym_noreturn] = ACTIONS(2679), + [anon_sym__Nonnull] = ACTIONS(2679), + [anon_sym_mutable] = ACTIONS(2679), + [anon_sym_constinit] = ACTIONS(2679), + [anon_sym_consteval] = ACTIONS(2679), + [anon_sym_alignas] = ACTIONS(2679), + [anon_sym__Alignas] = ACTIONS(2679), + [sym_primitive_type] = ACTIONS(2679), + [anon_sym_enum] = ACTIONS(2679), + [anon_sym_class] = ACTIONS(2679), + [anon_sym_struct] = ACTIONS(2679), + [anon_sym_union] = ACTIONS(2679), + [anon_sym_if] = ACTIONS(2679), + [anon_sym_else] = ACTIONS(2679), + [anon_sym_switch] = ACTIONS(2679), + [anon_sym_case] = ACTIONS(2679), + [anon_sym_default] = ACTIONS(2679), + [anon_sym_while] = ACTIONS(2679), + [anon_sym_do] = ACTIONS(2679), + [anon_sym_for] = ACTIONS(2679), + [anon_sym_return] = ACTIONS(2679), + [anon_sym_break] = ACTIONS(2679), + [anon_sym_continue] = ACTIONS(2679), + [anon_sym_goto] = ACTIONS(2679), + [anon_sym___try] = ACTIONS(2679), + [anon_sym___leave] = ACTIONS(2679), + [anon_sym_not] = ACTIONS(2679), + [anon_sym_compl] = ACTIONS(2679), + [anon_sym_DASH_DASH] = ACTIONS(2681), + [anon_sym_PLUS_PLUS] = ACTIONS(2681), + [anon_sym_sizeof] = ACTIONS(2679), + [anon_sym___alignof__] = ACTIONS(2679), + [anon_sym___alignof] = ACTIONS(2679), + [anon_sym__alignof] = ACTIONS(2679), + [anon_sym_alignof] = ACTIONS(2679), + [anon_sym__Alignof] = ACTIONS(2679), + [anon_sym_offsetof] = ACTIONS(2679), + [anon_sym__Generic] = ACTIONS(2679), + [anon_sym_asm] = ACTIONS(2679), + [anon_sym___asm__] = ACTIONS(2679), + [anon_sym___asm] = ACTIONS(2679), + [sym_number_literal] = ACTIONS(2681), + [anon_sym_L_SQUOTE] = ACTIONS(2681), + [anon_sym_u_SQUOTE] = ACTIONS(2681), + [anon_sym_U_SQUOTE] = ACTIONS(2681), + [anon_sym_u8_SQUOTE] = ACTIONS(2681), + [anon_sym_SQUOTE] = ACTIONS(2681), + [anon_sym_L_DQUOTE] = ACTIONS(2681), + [anon_sym_u_DQUOTE] = ACTIONS(2681), + [anon_sym_U_DQUOTE] = ACTIONS(2681), + [anon_sym_u8_DQUOTE] = ACTIONS(2681), + [anon_sym_DQUOTE] = ACTIONS(2681), + [sym_true] = ACTIONS(2679), + [sym_false] = ACTIONS(2679), + [anon_sym_NULL] = ACTIONS(2679), + [anon_sym_nullptr] = ACTIONS(2679), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2679), + [anon_sym_decltype] = ACTIONS(2679), + [anon_sym_explicit] = ACTIONS(2679), + [anon_sym_typename] = ACTIONS(2679), + [anon_sym_template] = ACTIONS(2679), + [anon_sym_operator] = ACTIONS(2679), + [anon_sym_try] = ACTIONS(2679), + [anon_sym_delete] = ACTIONS(2679), + [anon_sym_throw] = ACTIONS(2679), + [anon_sym_namespace] = ACTIONS(2679), + [anon_sym_static_assert] = ACTIONS(2679), + [anon_sym_concept] = ACTIONS(2679), + [anon_sym_co_return] = ACTIONS(2679), + [anon_sym_co_yield] = ACTIONS(2679), + [anon_sym_R_DQUOTE] = ACTIONS(2681), + [anon_sym_LR_DQUOTE] = ACTIONS(2681), + [anon_sym_uR_DQUOTE] = ACTIONS(2681), + [anon_sym_UR_DQUOTE] = ACTIONS(2681), + [anon_sym_u8R_DQUOTE] = ACTIONS(2681), + [anon_sym_co_await] = ACTIONS(2679), + [anon_sym_new] = ACTIONS(2679), + [anon_sym_requires] = ACTIONS(2679), + [sym_this] = ACTIONS(2679), }, [257] = { - [sym_identifier] = ACTIONS(1940), - [aux_sym_preproc_include_token1] = ACTIONS(1940), - [aux_sym_preproc_def_token1] = ACTIONS(1940), - [anon_sym_COMMA] = ACTIONS(2685), - [aux_sym_preproc_if_token1] = ACTIONS(1940), - [aux_sym_preproc_if_token2] = ACTIONS(1940), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1940), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1940), - [aux_sym_preproc_else_token1] = ACTIONS(1940), - [aux_sym_preproc_elif_token1] = ACTIONS(1940), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1940), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1940), - [sym_preproc_directive] = ACTIONS(1940), - [anon_sym_LPAREN2] = ACTIONS(1938), - [anon_sym_BANG] = ACTIONS(1938), - [anon_sym_TILDE] = ACTIONS(1938), - [anon_sym_DASH] = ACTIONS(1940), - [anon_sym_PLUS] = ACTIONS(1940), - [anon_sym_STAR] = ACTIONS(1938), - [anon_sym_AMP_AMP] = ACTIONS(1938), - [anon_sym_AMP] = ACTIONS(1940), + [sym_identifier] = ACTIONS(2683), + [aux_sym_preproc_include_token1] = ACTIONS(2683), + [aux_sym_preproc_def_token1] = ACTIONS(2683), + [aux_sym_preproc_if_token1] = ACTIONS(2683), + [aux_sym_preproc_if_token2] = ACTIONS(2683), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2683), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2683), + [aux_sym_preproc_else_token1] = ACTIONS(2683), + [aux_sym_preproc_elif_token1] = ACTIONS(2683), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2683), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2683), + [sym_preproc_directive] = ACTIONS(2683), + [anon_sym_LPAREN2] = ACTIONS(2685), + [anon_sym_BANG] = ACTIONS(2685), + [anon_sym_TILDE] = ACTIONS(2685), + [anon_sym_DASH] = ACTIONS(2683), + [anon_sym_PLUS] = ACTIONS(2683), + [anon_sym_STAR] = ACTIONS(2685), + [anon_sym_AMP_AMP] = ACTIONS(2685), + [anon_sym_AMP] = ACTIONS(2683), [anon_sym_SEMI] = ACTIONS(2685), - [anon_sym___extension__] = ACTIONS(1940), - [anon_sym_typedef] = ACTIONS(1940), - [anon_sym_virtual] = ACTIONS(1940), - [anon_sym_extern] = ACTIONS(1940), - [anon_sym___attribute__] = ACTIONS(1940), - [anon_sym___attribute] = ACTIONS(1940), - [anon_sym_using] = ACTIONS(1940), - [anon_sym_COLON_COLON] = ACTIONS(1938), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1938), - [anon_sym___declspec] = ACTIONS(1940), - [anon_sym___based] = ACTIONS(1940), - [anon_sym___cdecl] = ACTIONS(1940), - [anon_sym___clrcall] = ACTIONS(1940), - [anon_sym___stdcall] = ACTIONS(1940), - [anon_sym___fastcall] = ACTIONS(1940), - [anon_sym___thiscall] = ACTIONS(1940), - [anon_sym___vectorcall] = ACTIONS(1940), - [anon_sym_LBRACE] = ACTIONS(1938), - [anon_sym_signed] = ACTIONS(1940), - [anon_sym_unsigned] = ACTIONS(1940), - [anon_sym_long] = ACTIONS(1940), - [anon_sym_short] = ACTIONS(1940), - [anon_sym_LBRACK] = ACTIONS(1940), - [anon_sym_static] = ACTIONS(1940), - [anon_sym_register] = ACTIONS(1940), - [anon_sym_inline] = ACTIONS(1940), - [anon_sym___inline] = ACTIONS(1940), - [anon_sym___inline__] = ACTIONS(1940), - [anon_sym___forceinline] = ACTIONS(1940), - [anon_sym_thread_local] = ACTIONS(1940), - [anon_sym___thread] = ACTIONS(1940), - [anon_sym_const] = ACTIONS(1940), - [anon_sym_constexpr] = ACTIONS(1940), - [anon_sym_volatile] = ACTIONS(1940), - [anon_sym_restrict] = ACTIONS(1940), - [anon_sym___restrict__] = ACTIONS(1940), - [anon_sym__Atomic] = ACTIONS(1940), - [anon_sym__Noreturn] = ACTIONS(1940), - [anon_sym_noreturn] = ACTIONS(1940), - [anon_sym__Nonnull] = ACTIONS(1940), - [anon_sym_mutable] = ACTIONS(1940), - [anon_sym_constinit] = ACTIONS(1940), - [anon_sym_consteval] = ACTIONS(1940), - [anon_sym_alignas] = ACTIONS(1940), - [anon_sym__Alignas] = ACTIONS(1940), - [sym_primitive_type] = ACTIONS(1940), - [anon_sym_enum] = ACTIONS(1940), - [anon_sym_class] = ACTIONS(1940), - [anon_sym_struct] = ACTIONS(1940), - [anon_sym_union] = ACTIONS(1940), - [anon_sym_if] = ACTIONS(1940), - [anon_sym_switch] = ACTIONS(1940), - [anon_sym_case] = ACTIONS(1940), - [anon_sym_default] = ACTIONS(1940), - [anon_sym_while] = ACTIONS(1940), - [anon_sym_do] = ACTIONS(1940), - [anon_sym_for] = ACTIONS(1940), - [anon_sym_return] = ACTIONS(1940), - [anon_sym_break] = ACTIONS(1940), - [anon_sym_continue] = ACTIONS(1940), - [anon_sym_goto] = ACTIONS(1940), - [anon_sym___try] = ACTIONS(1940), - [anon_sym___leave] = ACTIONS(1940), - [anon_sym_not] = ACTIONS(1940), - [anon_sym_compl] = ACTIONS(1940), - [anon_sym_DASH_DASH] = ACTIONS(1938), - [anon_sym_PLUS_PLUS] = ACTIONS(1938), - [anon_sym_sizeof] = ACTIONS(1940), - [anon_sym___alignof__] = ACTIONS(1940), - [anon_sym___alignof] = ACTIONS(1940), - [anon_sym__alignof] = ACTIONS(1940), - [anon_sym_alignof] = ACTIONS(1940), - [anon_sym__Alignof] = ACTIONS(1940), - [anon_sym_offsetof] = ACTIONS(1940), - [anon_sym__Generic] = ACTIONS(1940), - [anon_sym_asm] = ACTIONS(1940), - [anon_sym___asm__] = ACTIONS(1940), - [anon_sym___asm] = ACTIONS(1940), - [sym_number_literal] = ACTIONS(1938), - [anon_sym_L_SQUOTE] = ACTIONS(1938), - [anon_sym_u_SQUOTE] = ACTIONS(1938), - [anon_sym_U_SQUOTE] = ACTIONS(1938), - [anon_sym_u8_SQUOTE] = ACTIONS(1938), - [anon_sym_SQUOTE] = ACTIONS(1938), - [anon_sym_L_DQUOTE] = ACTIONS(1938), - [anon_sym_u_DQUOTE] = ACTIONS(1938), - [anon_sym_U_DQUOTE] = ACTIONS(1938), - [anon_sym_u8_DQUOTE] = ACTIONS(1938), - [anon_sym_DQUOTE] = ACTIONS(1938), - [sym_true] = ACTIONS(1940), - [sym_false] = ACTIONS(1940), - [anon_sym_NULL] = ACTIONS(1940), - [anon_sym_nullptr] = ACTIONS(1940), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1940), - [anon_sym_decltype] = ACTIONS(1940), - [anon_sym_explicit] = ACTIONS(1940), - [anon_sym_typename] = ACTIONS(1940), - [anon_sym_template] = ACTIONS(1940), - [anon_sym_operator] = ACTIONS(1940), - [anon_sym_try] = ACTIONS(1940), - [anon_sym_delete] = ACTIONS(1940), - [anon_sym_throw] = ACTIONS(1940), - [anon_sym_namespace] = ACTIONS(1940), - [anon_sym_static_assert] = ACTIONS(1940), - [anon_sym_concept] = ACTIONS(1940), - [anon_sym_co_return] = ACTIONS(1940), - [anon_sym_co_yield] = ACTIONS(1940), - [anon_sym_R_DQUOTE] = ACTIONS(1938), - [anon_sym_LR_DQUOTE] = ACTIONS(1938), - [anon_sym_uR_DQUOTE] = ACTIONS(1938), - [anon_sym_UR_DQUOTE] = ACTIONS(1938), - [anon_sym_u8R_DQUOTE] = ACTIONS(1938), - [anon_sym_co_await] = ACTIONS(1940), - [anon_sym_new] = ACTIONS(1940), - [anon_sym_requires] = ACTIONS(1940), - [sym_this] = ACTIONS(1940), + [anon_sym___extension__] = ACTIONS(2683), + [anon_sym_typedef] = ACTIONS(2683), + [anon_sym_virtual] = ACTIONS(2683), + [anon_sym_extern] = ACTIONS(2683), + [anon_sym___attribute__] = ACTIONS(2683), + [anon_sym___attribute] = ACTIONS(2683), + [anon_sym_using] = ACTIONS(2683), + [anon_sym_COLON_COLON] = ACTIONS(2685), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2685), + [anon_sym___declspec] = ACTIONS(2683), + [anon_sym___based] = ACTIONS(2683), + [anon_sym___cdecl] = ACTIONS(2683), + [anon_sym___clrcall] = ACTIONS(2683), + [anon_sym___stdcall] = ACTIONS(2683), + [anon_sym___fastcall] = ACTIONS(2683), + [anon_sym___thiscall] = ACTIONS(2683), + [anon_sym___vectorcall] = ACTIONS(2683), + [anon_sym_LBRACE] = ACTIONS(2685), + [anon_sym_signed] = ACTIONS(2683), + [anon_sym_unsigned] = ACTIONS(2683), + [anon_sym_long] = ACTIONS(2683), + [anon_sym_short] = ACTIONS(2683), + [anon_sym_LBRACK] = ACTIONS(2683), + [anon_sym_static] = ACTIONS(2683), + [anon_sym_register] = ACTIONS(2683), + [anon_sym_inline] = ACTIONS(2683), + [anon_sym___inline] = ACTIONS(2683), + [anon_sym___inline__] = ACTIONS(2683), + [anon_sym___forceinline] = ACTIONS(2683), + [anon_sym_thread_local] = ACTIONS(2683), + [anon_sym___thread] = ACTIONS(2683), + [anon_sym_const] = ACTIONS(2683), + [anon_sym_constexpr] = ACTIONS(2683), + [anon_sym_volatile] = ACTIONS(2683), + [anon_sym_restrict] = ACTIONS(2683), + [anon_sym___restrict__] = ACTIONS(2683), + [anon_sym__Atomic] = ACTIONS(2683), + [anon_sym__Noreturn] = ACTIONS(2683), + [anon_sym_noreturn] = ACTIONS(2683), + [anon_sym__Nonnull] = ACTIONS(2683), + [anon_sym_mutable] = ACTIONS(2683), + [anon_sym_constinit] = ACTIONS(2683), + [anon_sym_consteval] = ACTIONS(2683), + [anon_sym_alignas] = ACTIONS(2683), + [anon_sym__Alignas] = ACTIONS(2683), + [sym_primitive_type] = ACTIONS(2683), + [anon_sym_enum] = ACTIONS(2683), + [anon_sym_class] = ACTIONS(2683), + [anon_sym_struct] = ACTIONS(2683), + [anon_sym_union] = ACTIONS(2683), + [anon_sym_if] = ACTIONS(2683), + [anon_sym_else] = ACTIONS(2683), + [anon_sym_switch] = ACTIONS(2683), + [anon_sym_case] = ACTIONS(2683), + [anon_sym_default] = ACTIONS(2683), + [anon_sym_while] = ACTIONS(2683), + [anon_sym_do] = ACTIONS(2683), + [anon_sym_for] = ACTIONS(2683), + [anon_sym_return] = ACTIONS(2683), + [anon_sym_break] = ACTIONS(2683), + [anon_sym_continue] = ACTIONS(2683), + [anon_sym_goto] = ACTIONS(2683), + [anon_sym___try] = ACTIONS(2683), + [anon_sym___leave] = ACTIONS(2683), + [anon_sym_not] = ACTIONS(2683), + [anon_sym_compl] = ACTIONS(2683), + [anon_sym_DASH_DASH] = ACTIONS(2685), + [anon_sym_PLUS_PLUS] = ACTIONS(2685), + [anon_sym_sizeof] = ACTIONS(2683), + [anon_sym___alignof__] = ACTIONS(2683), + [anon_sym___alignof] = ACTIONS(2683), + [anon_sym__alignof] = ACTIONS(2683), + [anon_sym_alignof] = ACTIONS(2683), + [anon_sym__Alignof] = ACTIONS(2683), + [anon_sym_offsetof] = ACTIONS(2683), + [anon_sym__Generic] = ACTIONS(2683), + [anon_sym_asm] = ACTIONS(2683), + [anon_sym___asm__] = ACTIONS(2683), + [anon_sym___asm] = ACTIONS(2683), + [sym_number_literal] = ACTIONS(2685), + [anon_sym_L_SQUOTE] = ACTIONS(2685), + [anon_sym_u_SQUOTE] = ACTIONS(2685), + [anon_sym_U_SQUOTE] = ACTIONS(2685), + [anon_sym_u8_SQUOTE] = ACTIONS(2685), + [anon_sym_SQUOTE] = ACTIONS(2685), + [anon_sym_L_DQUOTE] = ACTIONS(2685), + [anon_sym_u_DQUOTE] = ACTIONS(2685), + [anon_sym_U_DQUOTE] = ACTIONS(2685), + [anon_sym_u8_DQUOTE] = ACTIONS(2685), + [anon_sym_DQUOTE] = ACTIONS(2685), + [sym_true] = ACTIONS(2683), + [sym_false] = ACTIONS(2683), + [anon_sym_NULL] = ACTIONS(2683), + [anon_sym_nullptr] = ACTIONS(2683), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2683), + [anon_sym_decltype] = ACTIONS(2683), + [anon_sym_explicit] = ACTIONS(2683), + [anon_sym_typename] = ACTIONS(2683), + [anon_sym_template] = ACTIONS(2683), + [anon_sym_operator] = ACTIONS(2683), + [anon_sym_try] = ACTIONS(2683), + [anon_sym_delete] = ACTIONS(2683), + [anon_sym_throw] = ACTIONS(2683), + [anon_sym_namespace] = ACTIONS(2683), + [anon_sym_static_assert] = ACTIONS(2683), + [anon_sym_concept] = ACTIONS(2683), + [anon_sym_co_return] = ACTIONS(2683), + [anon_sym_co_yield] = ACTIONS(2683), + [anon_sym_R_DQUOTE] = ACTIONS(2685), + [anon_sym_LR_DQUOTE] = ACTIONS(2685), + [anon_sym_uR_DQUOTE] = ACTIONS(2685), + [anon_sym_UR_DQUOTE] = ACTIONS(2685), + [anon_sym_u8R_DQUOTE] = ACTIONS(2685), + [anon_sym_co_await] = ACTIONS(2683), + [anon_sym_new] = ACTIONS(2683), + [anon_sym_requires] = ACTIONS(2683), + [sym_this] = ACTIONS(2683), }, [258] = { [sym_identifier] = ACTIONS(2687), @@ -81444,147 +81727,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(2691), }, [260] = { - [sym_else_clause] = STATE(380), - [ts_builtin_sym_end] = ACTIONS(2615), - [sym_identifier] = ACTIONS(2613), - [aux_sym_preproc_include_token1] = ACTIONS(2613), - [aux_sym_preproc_def_token1] = ACTIONS(2613), - [aux_sym_preproc_if_token1] = ACTIONS(2613), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2613), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2613), - [sym_preproc_directive] = ACTIONS(2613), - [anon_sym_LPAREN2] = ACTIONS(2615), - [anon_sym_BANG] = ACTIONS(2615), - [anon_sym_TILDE] = ACTIONS(2615), - [anon_sym_DASH] = ACTIONS(2613), - [anon_sym_PLUS] = ACTIONS(2613), - [anon_sym_STAR] = ACTIONS(2615), - [anon_sym_AMP_AMP] = ACTIONS(2615), - [anon_sym_AMP] = ACTIONS(2613), - [anon_sym_SEMI] = ACTIONS(2615), - [anon_sym___extension__] = ACTIONS(2613), - [anon_sym_typedef] = ACTIONS(2613), - [anon_sym_virtual] = ACTIONS(2613), - [anon_sym_extern] = ACTIONS(2613), - [anon_sym___attribute__] = ACTIONS(2613), - [anon_sym___attribute] = ACTIONS(2613), - [anon_sym_using] = ACTIONS(2613), - [anon_sym_COLON_COLON] = ACTIONS(2615), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2615), - [anon_sym___declspec] = ACTIONS(2613), - [anon_sym___based] = ACTIONS(2613), - [anon_sym___cdecl] = ACTIONS(2613), - [anon_sym___clrcall] = ACTIONS(2613), - [anon_sym___stdcall] = ACTIONS(2613), - [anon_sym___fastcall] = ACTIONS(2613), - [anon_sym___thiscall] = ACTIONS(2613), - [anon_sym___vectorcall] = ACTIONS(2613), - [anon_sym_LBRACE] = ACTIONS(2615), - [anon_sym_signed] = ACTIONS(2613), - [anon_sym_unsigned] = ACTIONS(2613), - [anon_sym_long] = ACTIONS(2613), - [anon_sym_short] = ACTIONS(2613), - [anon_sym_LBRACK] = ACTIONS(2613), - [anon_sym_static] = ACTIONS(2613), - [anon_sym_register] = ACTIONS(2613), - [anon_sym_inline] = ACTIONS(2613), - [anon_sym___inline] = ACTIONS(2613), - [anon_sym___inline__] = ACTIONS(2613), - [anon_sym___forceinline] = ACTIONS(2613), - [anon_sym_thread_local] = ACTIONS(2613), - [anon_sym___thread] = ACTIONS(2613), - [anon_sym_const] = ACTIONS(2613), - [anon_sym_constexpr] = ACTIONS(2613), - [anon_sym_volatile] = ACTIONS(2613), - [anon_sym_restrict] = ACTIONS(2613), - [anon_sym___restrict__] = ACTIONS(2613), - [anon_sym__Atomic] = ACTIONS(2613), - [anon_sym__Noreturn] = ACTIONS(2613), - [anon_sym_noreturn] = ACTIONS(2613), - [anon_sym__Nonnull] = ACTIONS(2613), - [anon_sym_mutable] = ACTIONS(2613), - [anon_sym_constinit] = ACTIONS(2613), - [anon_sym_consteval] = ACTIONS(2613), - [anon_sym_alignas] = ACTIONS(2613), - [anon_sym__Alignas] = ACTIONS(2613), - [sym_primitive_type] = ACTIONS(2613), - [anon_sym_enum] = ACTIONS(2613), - [anon_sym_class] = ACTIONS(2613), - [anon_sym_struct] = ACTIONS(2613), - [anon_sym_union] = ACTIONS(2613), - [anon_sym_if] = ACTIONS(2613), - [anon_sym_else] = ACTIONS(2663), - [anon_sym_switch] = ACTIONS(2613), - [anon_sym_case] = ACTIONS(2613), - [anon_sym_default] = ACTIONS(2613), - [anon_sym_while] = ACTIONS(2613), - [anon_sym_do] = ACTIONS(2613), - [anon_sym_for] = ACTIONS(2613), - [anon_sym_return] = ACTIONS(2613), - [anon_sym_break] = ACTIONS(2613), - [anon_sym_continue] = ACTIONS(2613), - [anon_sym_goto] = ACTIONS(2613), - [anon_sym___try] = ACTIONS(2613), - [anon_sym___leave] = ACTIONS(2613), - [anon_sym_not] = ACTIONS(2613), - [anon_sym_compl] = ACTIONS(2613), - [anon_sym_DASH_DASH] = ACTIONS(2615), - [anon_sym_PLUS_PLUS] = ACTIONS(2615), - [anon_sym_sizeof] = ACTIONS(2613), - [anon_sym___alignof__] = ACTIONS(2613), - [anon_sym___alignof] = ACTIONS(2613), - [anon_sym__alignof] = ACTIONS(2613), - [anon_sym_alignof] = ACTIONS(2613), - [anon_sym__Alignof] = ACTIONS(2613), - [anon_sym_offsetof] = ACTIONS(2613), - [anon_sym__Generic] = ACTIONS(2613), - [anon_sym_asm] = ACTIONS(2613), - [anon_sym___asm__] = ACTIONS(2613), - [anon_sym___asm] = ACTIONS(2613), - [sym_number_literal] = ACTIONS(2615), - [anon_sym_L_SQUOTE] = ACTIONS(2615), - [anon_sym_u_SQUOTE] = ACTIONS(2615), - [anon_sym_U_SQUOTE] = ACTIONS(2615), - [anon_sym_u8_SQUOTE] = ACTIONS(2615), - [anon_sym_SQUOTE] = ACTIONS(2615), - [anon_sym_L_DQUOTE] = ACTIONS(2615), - [anon_sym_u_DQUOTE] = ACTIONS(2615), - [anon_sym_U_DQUOTE] = ACTIONS(2615), - [anon_sym_u8_DQUOTE] = ACTIONS(2615), - [anon_sym_DQUOTE] = ACTIONS(2615), - [sym_true] = ACTIONS(2613), - [sym_false] = ACTIONS(2613), - [anon_sym_NULL] = ACTIONS(2613), - [anon_sym_nullptr] = ACTIONS(2613), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2613), - [anon_sym_decltype] = ACTIONS(2613), - [anon_sym_explicit] = ACTIONS(2613), - [anon_sym_typename] = ACTIONS(2613), - [anon_sym_export] = ACTIONS(2613), - [anon_sym_module] = ACTIONS(2613), - [anon_sym_import] = ACTIONS(2613), - [anon_sym_template] = ACTIONS(2613), - [anon_sym_operator] = ACTIONS(2613), - [anon_sym_try] = ACTIONS(2613), - [anon_sym_delete] = ACTIONS(2613), - [anon_sym_throw] = ACTIONS(2613), - [anon_sym_namespace] = ACTIONS(2613), - [anon_sym_static_assert] = ACTIONS(2613), - [anon_sym_concept] = ACTIONS(2613), - [anon_sym_co_return] = ACTIONS(2613), - [anon_sym_co_yield] = ACTIONS(2613), - [anon_sym_R_DQUOTE] = ACTIONS(2615), - [anon_sym_LR_DQUOTE] = ACTIONS(2615), - [anon_sym_uR_DQUOTE] = ACTIONS(2615), - [anon_sym_UR_DQUOTE] = ACTIONS(2615), - [anon_sym_u8R_DQUOTE] = ACTIONS(2615), - [anon_sym_co_await] = ACTIONS(2613), - [anon_sym_new] = ACTIONS(2613), - [anon_sym_requires] = ACTIONS(2613), - [sym_this] = ACTIONS(2613), - }, - [261] = { [sym_identifier] = ACTIONS(2695), [aux_sym_preproc_include_token1] = ACTIONS(2695), [aux_sym_preproc_def_token1] = ACTIONS(2695), @@ -81725,7 +81867,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2695), [sym_this] = ACTIONS(2695), }, - [262] = { + [261] = { [sym_identifier] = ACTIONS(2699), [aux_sym_preproc_include_token1] = ACTIONS(2699), [aux_sym_preproc_def_token1] = ACTIONS(2699), @@ -81866,148 +82008,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2699), [sym_this] = ACTIONS(2699), }, - [263] = { - [sym_identifier] = ACTIONS(2703), - [aux_sym_preproc_include_token1] = ACTIONS(2703), - [aux_sym_preproc_def_token1] = ACTIONS(2703), - [aux_sym_preproc_if_token1] = ACTIONS(2703), - [aux_sym_preproc_if_token2] = ACTIONS(2703), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2703), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2703), - [aux_sym_preproc_else_token1] = ACTIONS(2703), - [aux_sym_preproc_elif_token1] = ACTIONS(2703), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2703), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2703), - [sym_preproc_directive] = ACTIONS(2703), - [anon_sym_LPAREN2] = ACTIONS(2705), - [anon_sym_BANG] = ACTIONS(2705), - [anon_sym_TILDE] = ACTIONS(2705), - [anon_sym_DASH] = ACTIONS(2703), - [anon_sym_PLUS] = ACTIONS(2703), - [anon_sym_STAR] = ACTIONS(2705), - [anon_sym_AMP_AMP] = ACTIONS(2705), - [anon_sym_AMP] = ACTIONS(2703), - [anon_sym_SEMI] = ACTIONS(2705), - [anon_sym___extension__] = ACTIONS(2703), - [anon_sym_typedef] = ACTIONS(2703), - [anon_sym_virtual] = ACTIONS(2703), - [anon_sym_extern] = ACTIONS(2703), - [anon_sym___attribute__] = ACTIONS(2703), - [anon_sym___attribute] = ACTIONS(2703), - [anon_sym_using] = ACTIONS(2703), - [anon_sym_COLON_COLON] = ACTIONS(2705), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2705), - [anon_sym___declspec] = ACTIONS(2703), - [anon_sym___based] = ACTIONS(2703), - [anon_sym___cdecl] = ACTIONS(2703), - [anon_sym___clrcall] = ACTIONS(2703), - [anon_sym___stdcall] = ACTIONS(2703), - [anon_sym___fastcall] = ACTIONS(2703), - [anon_sym___thiscall] = ACTIONS(2703), - [anon_sym___vectorcall] = ACTIONS(2703), - [anon_sym_LBRACE] = ACTIONS(2705), - [anon_sym_signed] = ACTIONS(2703), - [anon_sym_unsigned] = ACTIONS(2703), - [anon_sym_long] = ACTIONS(2703), - [anon_sym_short] = ACTIONS(2703), - [anon_sym_LBRACK] = ACTIONS(2703), - [anon_sym_static] = ACTIONS(2703), - [anon_sym_register] = ACTIONS(2703), - [anon_sym_inline] = ACTIONS(2703), - [anon_sym___inline] = ACTIONS(2703), - [anon_sym___inline__] = ACTIONS(2703), - [anon_sym___forceinline] = ACTIONS(2703), - [anon_sym_thread_local] = ACTIONS(2703), - [anon_sym___thread] = ACTIONS(2703), - [anon_sym_const] = ACTIONS(2703), - [anon_sym_constexpr] = ACTIONS(2703), - [anon_sym_volatile] = ACTIONS(2703), - [anon_sym_restrict] = ACTIONS(2703), - [anon_sym___restrict__] = ACTIONS(2703), - [anon_sym__Atomic] = ACTIONS(2703), - [anon_sym__Noreturn] = ACTIONS(2703), - [anon_sym_noreturn] = ACTIONS(2703), - [anon_sym__Nonnull] = ACTIONS(2703), - [anon_sym_mutable] = ACTIONS(2703), - [anon_sym_constinit] = ACTIONS(2703), - [anon_sym_consteval] = ACTIONS(2703), - [anon_sym_alignas] = ACTIONS(2703), - [anon_sym__Alignas] = ACTIONS(2703), - [sym_primitive_type] = ACTIONS(2703), - [anon_sym_enum] = ACTIONS(2703), - [anon_sym_class] = ACTIONS(2703), - [anon_sym_struct] = ACTIONS(2703), - [anon_sym_union] = ACTIONS(2703), - [anon_sym_if] = ACTIONS(2703), - [anon_sym_else] = ACTIONS(2703), - [anon_sym_switch] = ACTIONS(2703), - [anon_sym_case] = ACTIONS(2703), - [anon_sym_default] = ACTIONS(2703), - [anon_sym_while] = ACTIONS(2703), - [anon_sym_do] = ACTIONS(2703), - [anon_sym_for] = ACTIONS(2703), - [anon_sym_return] = ACTIONS(2703), - [anon_sym_break] = ACTIONS(2703), - [anon_sym_continue] = ACTIONS(2703), - [anon_sym_goto] = ACTIONS(2703), - [anon_sym___try] = ACTIONS(2703), - [anon_sym___leave] = ACTIONS(2703), - [anon_sym_not] = ACTIONS(2703), - [anon_sym_compl] = ACTIONS(2703), - [anon_sym_DASH_DASH] = ACTIONS(2705), - [anon_sym_PLUS_PLUS] = ACTIONS(2705), - [anon_sym_sizeof] = ACTIONS(2703), - [anon_sym___alignof__] = ACTIONS(2703), - [anon_sym___alignof] = ACTIONS(2703), - [anon_sym__alignof] = ACTIONS(2703), - [anon_sym_alignof] = ACTIONS(2703), - [anon_sym__Alignof] = ACTIONS(2703), - [anon_sym_offsetof] = ACTIONS(2703), - [anon_sym__Generic] = ACTIONS(2703), - [anon_sym_asm] = ACTIONS(2703), - [anon_sym___asm__] = ACTIONS(2703), - [anon_sym___asm] = ACTIONS(2703), - [sym_number_literal] = ACTIONS(2705), - [anon_sym_L_SQUOTE] = ACTIONS(2705), - [anon_sym_u_SQUOTE] = ACTIONS(2705), - [anon_sym_U_SQUOTE] = ACTIONS(2705), - [anon_sym_u8_SQUOTE] = ACTIONS(2705), - [anon_sym_SQUOTE] = ACTIONS(2705), - [anon_sym_L_DQUOTE] = ACTIONS(2705), - [anon_sym_u_DQUOTE] = ACTIONS(2705), - [anon_sym_U_DQUOTE] = ACTIONS(2705), - [anon_sym_u8_DQUOTE] = ACTIONS(2705), - [anon_sym_DQUOTE] = ACTIONS(2705), - [sym_true] = ACTIONS(2703), - [sym_false] = ACTIONS(2703), - [anon_sym_NULL] = ACTIONS(2703), - [anon_sym_nullptr] = ACTIONS(2703), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2703), - [anon_sym_decltype] = ACTIONS(2703), - [anon_sym_explicit] = ACTIONS(2703), - [anon_sym_typename] = ACTIONS(2703), - [anon_sym_template] = ACTIONS(2703), - [anon_sym_operator] = ACTIONS(2703), - [anon_sym_try] = ACTIONS(2703), - [anon_sym_delete] = ACTIONS(2703), - [anon_sym_throw] = ACTIONS(2703), - [anon_sym_namespace] = ACTIONS(2703), - [anon_sym_static_assert] = ACTIONS(2703), - [anon_sym_concept] = ACTIONS(2703), - [anon_sym_co_return] = ACTIONS(2703), - [anon_sym_co_yield] = ACTIONS(2703), - [anon_sym_R_DQUOTE] = ACTIONS(2705), - [anon_sym_LR_DQUOTE] = ACTIONS(2705), - [anon_sym_uR_DQUOTE] = ACTIONS(2705), - [anon_sym_UR_DQUOTE] = ACTIONS(2705), - [anon_sym_u8R_DQUOTE] = ACTIONS(2705), - [anon_sym_co_await] = ACTIONS(2703), - [anon_sym_new] = ACTIONS(2703), - [anon_sym_requires] = ACTIONS(2703), - [sym_this] = ACTIONS(2703), - }, - [264] = { + [262] = { [sym_identifier] = ACTIONS(2703), [aux_sym_preproc_include_token1] = ACTIONS(2703), [aux_sym_preproc_def_token1] = ACTIONS(2703), @@ -82148,7 +82149,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2703), [sym_this] = ACTIONS(2703), }, - [265] = { + [263] = { [sym_identifier] = ACTIONS(2707), [aux_sym_preproc_include_token1] = ACTIONS(2707), [aux_sym_preproc_def_token1] = ACTIONS(2707), @@ -82289,710 +82290,992 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2707), [sym_this] = ACTIONS(2707), }, - [266] = { - [sym_identifier] = ACTIONS(2711), - [aux_sym_preproc_include_token1] = ACTIONS(2711), - [aux_sym_preproc_def_token1] = ACTIONS(2711), - [aux_sym_preproc_if_token1] = ACTIONS(2711), - [aux_sym_preproc_if_token2] = ACTIONS(2711), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2711), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2711), - [aux_sym_preproc_else_token1] = ACTIONS(2711), - [aux_sym_preproc_elif_token1] = ACTIONS(2711), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2711), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2711), - [sym_preproc_directive] = ACTIONS(2711), - [anon_sym_LPAREN2] = ACTIONS(2713), - [anon_sym_BANG] = ACTIONS(2713), - [anon_sym_TILDE] = ACTIONS(2713), - [anon_sym_DASH] = ACTIONS(2711), - [anon_sym_PLUS] = ACTIONS(2711), - [anon_sym_STAR] = ACTIONS(2713), - [anon_sym_AMP_AMP] = ACTIONS(2713), - [anon_sym_AMP] = ACTIONS(2711), - [anon_sym_SEMI] = ACTIONS(2713), - [anon_sym___extension__] = ACTIONS(2711), - [anon_sym_typedef] = ACTIONS(2711), - [anon_sym_virtual] = ACTIONS(2711), - [anon_sym_extern] = ACTIONS(2711), - [anon_sym___attribute__] = ACTIONS(2711), - [anon_sym___attribute] = ACTIONS(2711), - [anon_sym_using] = ACTIONS(2711), - [anon_sym_COLON_COLON] = ACTIONS(2713), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2713), - [anon_sym___declspec] = ACTIONS(2711), - [anon_sym___based] = ACTIONS(2711), - [anon_sym___cdecl] = ACTIONS(2711), - [anon_sym___clrcall] = ACTIONS(2711), - [anon_sym___stdcall] = ACTIONS(2711), - [anon_sym___fastcall] = ACTIONS(2711), - [anon_sym___thiscall] = ACTIONS(2711), - [anon_sym___vectorcall] = ACTIONS(2711), - [anon_sym_LBRACE] = ACTIONS(2713), - [anon_sym_signed] = ACTIONS(2711), - [anon_sym_unsigned] = ACTIONS(2711), - [anon_sym_long] = ACTIONS(2711), - [anon_sym_short] = ACTIONS(2711), - [anon_sym_LBRACK] = ACTIONS(2711), - [anon_sym_static] = ACTIONS(2711), - [anon_sym_register] = ACTIONS(2711), - [anon_sym_inline] = ACTIONS(2711), - [anon_sym___inline] = ACTIONS(2711), - [anon_sym___inline__] = ACTIONS(2711), - [anon_sym___forceinline] = ACTIONS(2711), - [anon_sym_thread_local] = ACTIONS(2711), - [anon_sym___thread] = ACTIONS(2711), - [anon_sym_const] = ACTIONS(2711), - [anon_sym_constexpr] = ACTIONS(2711), - [anon_sym_volatile] = ACTIONS(2711), - [anon_sym_restrict] = ACTIONS(2711), - [anon_sym___restrict__] = ACTIONS(2711), - [anon_sym__Atomic] = ACTIONS(2711), - [anon_sym__Noreturn] = ACTIONS(2711), - [anon_sym_noreturn] = ACTIONS(2711), - [anon_sym__Nonnull] = ACTIONS(2711), - [anon_sym_mutable] = ACTIONS(2711), - [anon_sym_constinit] = ACTIONS(2711), - [anon_sym_consteval] = ACTIONS(2711), - [anon_sym_alignas] = ACTIONS(2711), - [anon_sym__Alignas] = ACTIONS(2711), - [sym_primitive_type] = ACTIONS(2711), - [anon_sym_enum] = ACTIONS(2711), - [anon_sym_class] = ACTIONS(2711), - [anon_sym_struct] = ACTIONS(2711), - [anon_sym_union] = ACTIONS(2711), - [anon_sym_if] = ACTIONS(2711), + [264] = { + [sym_else_clause] = STATE(350), + [ts_builtin_sym_end] = ACTIONS(2607), + [sym_identifier] = ACTIONS(2605), + [aux_sym_preproc_include_token1] = ACTIONS(2605), + [aux_sym_preproc_def_token1] = ACTIONS(2605), + [aux_sym_preproc_if_token1] = ACTIONS(2605), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2605), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2605), + [sym_preproc_directive] = ACTIONS(2605), + [anon_sym_LPAREN2] = ACTIONS(2607), + [anon_sym_BANG] = ACTIONS(2607), + [anon_sym_TILDE] = ACTIONS(2607), + [anon_sym_DASH] = ACTIONS(2605), + [anon_sym_PLUS] = ACTIONS(2605), + [anon_sym_STAR] = ACTIONS(2607), + [anon_sym_AMP_AMP] = ACTIONS(2607), + [anon_sym_AMP] = ACTIONS(2605), + [anon_sym_SEMI] = ACTIONS(2607), + [anon_sym___extension__] = ACTIONS(2605), + [anon_sym_typedef] = ACTIONS(2605), + [anon_sym_virtual] = ACTIONS(2605), + [anon_sym_extern] = ACTIONS(2605), + [anon_sym___attribute__] = ACTIONS(2605), + [anon_sym___attribute] = ACTIONS(2605), + [anon_sym_using] = ACTIONS(2605), + [anon_sym_COLON_COLON] = ACTIONS(2607), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2607), + [anon_sym___declspec] = ACTIONS(2605), + [anon_sym___based] = ACTIONS(2605), + [anon_sym___cdecl] = ACTIONS(2605), + [anon_sym___clrcall] = ACTIONS(2605), + [anon_sym___stdcall] = ACTIONS(2605), + [anon_sym___fastcall] = ACTIONS(2605), + [anon_sym___thiscall] = ACTIONS(2605), + [anon_sym___vectorcall] = ACTIONS(2605), + [anon_sym_LBRACE] = ACTIONS(2607), + [anon_sym_signed] = ACTIONS(2605), + [anon_sym_unsigned] = ACTIONS(2605), + [anon_sym_long] = ACTIONS(2605), + [anon_sym_short] = ACTIONS(2605), + [anon_sym_LBRACK] = ACTIONS(2605), + [anon_sym_static] = ACTIONS(2605), + [anon_sym_register] = ACTIONS(2605), + [anon_sym_inline] = ACTIONS(2605), + [anon_sym___inline] = ACTIONS(2605), + [anon_sym___inline__] = ACTIONS(2605), + [anon_sym___forceinline] = ACTIONS(2605), + [anon_sym_thread_local] = ACTIONS(2605), + [anon_sym___thread] = ACTIONS(2605), + [anon_sym_const] = ACTIONS(2605), + [anon_sym_constexpr] = ACTIONS(2605), + [anon_sym_volatile] = ACTIONS(2605), + [anon_sym_restrict] = ACTIONS(2605), + [anon_sym___restrict__] = ACTIONS(2605), + [anon_sym__Atomic] = ACTIONS(2605), + [anon_sym__Noreturn] = ACTIONS(2605), + [anon_sym_noreturn] = ACTIONS(2605), + [anon_sym__Nonnull] = ACTIONS(2605), + [anon_sym_mutable] = ACTIONS(2605), + [anon_sym_constinit] = ACTIONS(2605), + [anon_sym_consteval] = ACTIONS(2605), + [anon_sym_alignas] = ACTIONS(2605), + [anon_sym__Alignas] = ACTIONS(2605), + [sym_primitive_type] = ACTIONS(2605), + [anon_sym_enum] = ACTIONS(2605), + [anon_sym_class] = ACTIONS(2605), + [anon_sym_struct] = ACTIONS(2605), + [anon_sym_union] = ACTIONS(2605), + [anon_sym_if] = ACTIONS(2605), [anon_sym_else] = ACTIONS(2711), - [anon_sym_switch] = ACTIONS(2711), - [anon_sym_case] = ACTIONS(2711), - [anon_sym_default] = ACTIONS(2711), - [anon_sym_while] = ACTIONS(2711), - [anon_sym_do] = ACTIONS(2711), - [anon_sym_for] = ACTIONS(2711), - [anon_sym_return] = ACTIONS(2711), - [anon_sym_break] = ACTIONS(2711), - [anon_sym_continue] = ACTIONS(2711), - [anon_sym_goto] = ACTIONS(2711), - [anon_sym___try] = ACTIONS(2711), - [anon_sym___leave] = ACTIONS(2711), - [anon_sym_not] = ACTIONS(2711), - [anon_sym_compl] = ACTIONS(2711), - [anon_sym_DASH_DASH] = ACTIONS(2713), - [anon_sym_PLUS_PLUS] = ACTIONS(2713), - [anon_sym_sizeof] = ACTIONS(2711), - [anon_sym___alignof__] = ACTIONS(2711), - [anon_sym___alignof] = ACTIONS(2711), - [anon_sym__alignof] = ACTIONS(2711), - [anon_sym_alignof] = ACTIONS(2711), - [anon_sym__Alignof] = ACTIONS(2711), - [anon_sym_offsetof] = ACTIONS(2711), - [anon_sym__Generic] = ACTIONS(2711), - [anon_sym_asm] = ACTIONS(2711), - [anon_sym___asm__] = ACTIONS(2711), - [anon_sym___asm] = ACTIONS(2711), - [sym_number_literal] = ACTIONS(2713), - [anon_sym_L_SQUOTE] = ACTIONS(2713), - [anon_sym_u_SQUOTE] = ACTIONS(2713), - [anon_sym_U_SQUOTE] = ACTIONS(2713), - [anon_sym_u8_SQUOTE] = ACTIONS(2713), - [anon_sym_SQUOTE] = ACTIONS(2713), - [anon_sym_L_DQUOTE] = ACTIONS(2713), - [anon_sym_u_DQUOTE] = ACTIONS(2713), - [anon_sym_U_DQUOTE] = ACTIONS(2713), - [anon_sym_u8_DQUOTE] = ACTIONS(2713), - [anon_sym_DQUOTE] = ACTIONS(2713), - [sym_true] = ACTIONS(2711), - [sym_false] = ACTIONS(2711), - [anon_sym_NULL] = ACTIONS(2711), - [anon_sym_nullptr] = ACTIONS(2711), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2711), - [anon_sym_decltype] = ACTIONS(2711), - [anon_sym_explicit] = ACTIONS(2711), - [anon_sym_typename] = ACTIONS(2711), - [anon_sym_template] = ACTIONS(2711), - [anon_sym_operator] = ACTIONS(2711), - [anon_sym_try] = ACTIONS(2711), - [anon_sym_delete] = ACTIONS(2711), - [anon_sym_throw] = ACTIONS(2711), - [anon_sym_namespace] = ACTIONS(2711), - [anon_sym_static_assert] = ACTIONS(2711), - [anon_sym_concept] = ACTIONS(2711), - [anon_sym_co_return] = ACTIONS(2711), - [anon_sym_co_yield] = ACTIONS(2711), - [anon_sym_R_DQUOTE] = ACTIONS(2713), - [anon_sym_LR_DQUOTE] = ACTIONS(2713), - [anon_sym_uR_DQUOTE] = ACTIONS(2713), - [anon_sym_UR_DQUOTE] = ACTIONS(2713), - [anon_sym_u8R_DQUOTE] = ACTIONS(2713), - [anon_sym_co_await] = ACTIONS(2711), - [anon_sym_new] = ACTIONS(2711), - [anon_sym_requires] = ACTIONS(2711), - [sym_this] = ACTIONS(2711), + [anon_sym_switch] = ACTIONS(2605), + [anon_sym_case] = ACTIONS(2605), + [anon_sym_default] = ACTIONS(2605), + [anon_sym_while] = ACTIONS(2605), + [anon_sym_do] = ACTIONS(2605), + [anon_sym_for] = ACTIONS(2605), + [anon_sym_return] = ACTIONS(2605), + [anon_sym_break] = ACTIONS(2605), + [anon_sym_continue] = ACTIONS(2605), + [anon_sym_goto] = ACTIONS(2605), + [anon_sym___try] = ACTIONS(2605), + [anon_sym___leave] = ACTIONS(2605), + [anon_sym_not] = ACTIONS(2605), + [anon_sym_compl] = ACTIONS(2605), + [anon_sym_DASH_DASH] = ACTIONS(2607), + [anon_sym_PLUS_PLUS] = ACTIONS(2607), + [anon_sym_sizeof] = ACTIONS(2605), + [anon_sym___alignof__] = ACTIONS(2605), + [anon_sym___alignof] = ACTIONS(2605), + [anon_sym__alignof] = ACTIONS(2605), + [anon_sym_alignof] = ACTIONS(2605), + [anon_sym__Alignof] = ACTIONS(2605), + [anon_sym_offsetof] = ACTIONS(2605), + [anon_sym__Generic] = ACTIONS(2605), + [anon_sym_asm] = ACTIONS(2605), + [anon_sym___asm__] = ACTIONS(2605), + [anon_sym___asm] = ACTIONS(2605), + [sym_number_literal] = ACTIONS(2607), + [anon_sym_L_SQUOTE] = ACTIONS(2607), + [anon_sym_u_SQUOTE] = ACTIONS(2607), + [anon_sym_U_SQUOTE] = ACTIONS(2607), + [anon_sym_u8_SQUOTE] = ACTIONS(2607), + [anon_sym_SQUOTE] = ACTIONS(2607), + [anon_sym_L_DQUOTE] = ACTIONS(2607), + [anon_sym_u_DQUOTE] = ACTIONS(2607), + [anon_sym_U_DQUOTE] = ACTIONS(2607), + [anon_sym_u8_DQUOTE] = ACTIONS(2607), + [anon_sym_DQUOTE] = ACTIONS(2607), + [sym_true] = ACTIONS(2605), + [sym_false] = ACTIONS(2605), + [anon_sym_NULL] = ACTIONS(2605), + [anon_sym_nullptr] = ACTIONS(2605), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2605), + [anon_sym_decltype] = ACTIONS(2605), + [anon_sym_explicit] = ACTIONS(2605), + [anon_sym_typename] = ACTIONS(2605), + [anon_sym_export] = ACTIONS(2605), + [anon_sym_module] = ACTIONS(2605), + [anon_sym_import] = ACTIONS(2605), + [anon_sym_template] = ACTIONS(2605), + [anon_sym_operator] = ACTIONS(2605), + [anon_sym_try] = ACTIONS(2605), + [anon_sym_delete] = ACTIONS(2605), + [anon_sym_throw] = ACTIONS(2605), + [anon_sym_namespace] = ACTIONS(2605), + [anon_sym_static_assert] = ACTIONS(2605), + [anon_sym_concept] = ACTIONS(2605), + [anon_sym_co_return] = ACTIONS(2605), + [anon_sym_co_yield] = ACTIONS(2605), + [anon_sym_R_DQUOTE] = ACTIONS(2607), + [anon_sym_LR_DQUOTE] = ACTIONS(2607), + [anon_sym_uR_DQUOTE] = ACTIONS(2607), + [anon_sym_UR_DQUOTE] = ACTIONS(2607), + [anon_sym_u8R_DQUOTE] = ACTIONS(2607), + [anon_sym_co_await] = ACTIONS(2605), + [anon_sym_new] = ACTIONS(2605), + [anon_sym_requires] = ACTIONS(2605), + [sym_this] = ACTIONS(2605), + }, + [265] = { + [sym_identifier] = ACTIONS(2713), + [aux_sym_preproc_include_token1] = ACTIONS(2713), + [aux_sym_preproc_def_token1] = ACTIONS(2713), + [aux_sym_preproc_if_token1] = ACTIONS(2713), + [aux_sym_preproc_if_token2] = ACTIONS(2713), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2713), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2713), + [aux_sym_preproc_else_token1] = ACTIONS(2713), + [aux_sym_preproc_elif_token1] = ACTIONS(2713), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2713), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2713), + [sym_preproc_directive] = ACTIONS(2713), + [anon_sym_LPAREN2] = ACTIONS(2715), + [anon_sym_BANG] = ACTIONS(2715), + [anon_sym_TILDE] = ACTIONS(2715), + [anon_sym_DASH] = ACTIONS(2713), + [anon_sym_PLUS] = ACTIONS(2713), + [anon_sym_STAR] = ACTIONS(2715), + [anon_sym_AMP_AMP] = ACTIONS(2715), + [anon_sym_AMP] = ACTIONS(2713), + [anon_sym_SEMI] = ACTIONS(2715), + [anon_sym___extension__] = ACTIONS(2713), + [anon_sym_typedef] = ACTIONS(2713), + [anon_sym_virtual] = ACTIONS(2713), + [anon_sym_extern] = ACTIONS(2713), + [anon_sym___attribute__] = ACTIONS(2713), + [anon_sym___attribute] = ACTIONS(2713), + [anon_sym_using] = ACTIONS(2713), + [anon_sym_COLON_COLON] = ACTIONS(2715), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2715), + [anon_sym___declspec] = ACTIONS(2713), + [anon_sym___based] = ACTIONS(2713), + [anon_sym___cdecl] = ACTIONS(2713), + [anon_sym___clrcall] = ACTIONS(2713), + [anon_sym___stdcall] = ACTIONS(2713), + [anon_sym___fastcall] = ACTIONS(2713), + [anon_sym___thiscall] = ACTIONS(2713), + [anon_sym___vectorcall] = ACTIONS(2713), + [anon_sym_LBRACE] = ACTIONS(2715), + [anon_sym_signed] = ACTIONS(2713), + [anon_sym_unsigned] = ACTIONS(2713), + [anon_sym_long] = ACTIONS(2713), + [anon_sym_short] = ACTIONS(2713), + [anon_sym_LBRACK] = ACTIONS(2713), + [anon_sym_static] = ACTIONS(2713), + [anon_sym_register] = ACTIONS(2713), + [anon_sym_inline] = ACTIONS(2713), + [anon_sym___inline] = ACTIONS(2713), + [anon_sym___inline__] = ACTIONS(2713), + [anon_sym___forceinline] = ACTIONS(2713), + [anon_sym_thread_local] = ACTIONS(2713), + [anon_sym___thread] = ACTIONS(2713), + [anon_sym_const] = ACTIONS(2713), + [anon_sym_constexpr] = ACTIONS(2713), + [anon_sym_volatile] = ACTIONS(2713), + [anon_sym_restrict] = ACTIONS(2713), + [anon_sym___restrict__] = ACTIONS(2713), + [anon_sym__Atomic] = ACTIONS(2713), + [anon_sym__Noreturn] = ACTIONS(2713), + [anon_sym_noreturn] = ACTIONS(2713), + [anon_sym__Nonnull] = ACTIONS(2713), + [anon_sym_mutable] = ACTIONS(2713), + [anon_sym_constinit] = ACTIONS(2713), + [anon_sym_consteval] = ACTIONS(2713), + [anon_sym_alignas] = ACTIONS(2713), + [anon_sym__Alignas] = ACTIONS(2713), + [sym_primitive_type] = ACTIONS(2713), + [anon_sym_enum] = ACTIONS(2713), + [anon_sym_class] = ACTIONS(2713), + [anon_sym_struct] = ACTIONS(2713), + [anon_sym_union] = ACTIONS(2713), + [anon_sym_if] = ACTIONS(2713), + [anon_sym_else] = ACTIONS(2713), + [anon_sym_switch] = ACTIONS(2713), + [anon_sym_case] = ACTIONS(2713), + [anon_sym_default] = ACTIONS(2713), + [anon_sym_while] = ACTIONS(2713), + [anon_sym_do] = ACTIONS(2713), + [anon_sym_for] = ACTIONS(2713), + [anon_sym_return] = ACTIONS(2713), + [anon_sym_break] = ACTIONS(2713), + [anon_sym_continue] = ACTIONS(2713), + [anon_sym_goto] = ACTIONS(2713), + [anon_sym___try] = ACTIONS(2713), + [anon_sym___leave] = ACTIONS(2713), + [anon_sym_not] = ACTIONS(2713), + [anon_sym_compl] = ACTIONS(2713), + [anon_sym_DASH_DASH] = ACTIONS(2715), + [anon_sym_PLUS_PLUS] = ACTIONS(2715), + [anon_sym_sizeof] = ACTIONS(2713), + [anon_sym___alignof__] = ACTIONS(2713), + [anon_sym___alignof] = ACTIONS(2713), + [anon_sym__alignof] = ACTIONS(2713), + [anon_sym_alignof] = ACTIONS(2713), + [anon_sym__Alignof] = ACTIONS(2713), + [anon_sym_offsetof] = ACTIONS(2713), + [anon_sym__Generic] = ACTIONS(2713), + [anon_sym_asm] = ACTIONS(2713), + [anon_sym___asm__] = ACTIONS(2713), + [anon_sym___asm] = ACTIONS(2713), + [sym_number_literal] = ACTIONS(2715), + [anon_sym_L_SQUOTE] = ACTIONS(2715), + [anon_sym_u_SQUOTE] = ACTIONS(2715), + [anon_sym_U_SQUOTE] = ACTIONS(2715), + [anon_sym_u8_SQUOTE] = ACTIONS(2715), + [anon_sym_SQUOTE] = ACTIONS(2715), + [anon_sym_L_DQUOTE] = ACTIONS(2715), + [anon_sym_u_DQUOTE] = ACTIONS(2715), + [anon_sym_U_DQUOTE] = ACTIONS(2715), + [anon_sym_u8_DQUOTE] = ACTIONS(2715), + [anon_sym_DQUOTE] = ACTIONS(2715), + [sym_true] = ACTIONS(2713), + [sym_false] = ACTIONS(2713), + [anon_sym_NULL] = ACTIONS(2713), + [anon_sym_nullptr] = ACTIONS(2713), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2713), + [anon_sym_decltype] = ACTIONS(2713), + [anon_sym_explicit] = ACTIONS(2713), + [anon_sym_typename] = ACTIONS(2713), + [anon_sym_template] = ACTIONS(2713), + [anon_sym_operator] = ACTIONS(2713), + [anon_sym_try] = ACTIONS(2713), + [anon_sym_delete] = ACTIONS(2713), + [anon_sym_throw] = ACTIONS(2713), + [anon_sym_namespace] = ACTIONS(2713), + [anon_sym_static_assert] = ACTIONS(2713), + [anon_sym_concept] = ACTIONS(2713), + [anon_sym_co_return] = ACTIONS(2713), + [anon_sym_co_yield] = ACTIONS(2713), + [anon_sym_R_DQUOTE] = ACTIONS(2715), + [anon_sym_LR_DQUOTE] = ACTIONS(2715), + [anon_sym_uR_DQUOTE] = ACTIONS(2715), + [anon_sym_UR_DQUOTE] = ACTIONS(2715), + [anon_sym_u8R_DQUOTE] = ACTIONS(2715), + [anon_sym_co_await] = ACTIONS(2713), + [anon_sym_new] = ACTIONS(2713), + [anon_sym_requires] = ACTIONS(2713), + [sym_this] = ACTIONS(2713), + }, + [266] = { + [sym_identifier] = ACTIONS(2717), + [aux_sym_preproc_include_token1] = ACTIONS(2717), + [aux_sym_preproc_def_token1] = ACTIONS(2717), + [aux_sym_preproc_if_token1] = ACTIONS(2717), + [aux_sym_preproc_if_token2] = ACTIONS(2717), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2717), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2717), + [aux_sym_preproc_else_token1] = ACTIONS(2717), + [aux_sym_preproc_elif_token1] = ACTIONS(2717), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2717), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2717), + [sym_preproc_directive] = ACTIONS(2717), + [anon_sym_LPAREN2] = ACTIONS(2719), + [anon_sym_BANG] = ACTIONS(2719), + [anon_sym_TILDE] = ACTIONS(2719), + [anon_sym_DASH] = ACTIONS(2717), + [anon_sym_PLUS] = ACTIONS(2717), + [anon_sym_STAR] = ACTIONS(2719), + [anon_sym_AMP_AMP] = ACTIONS(2719), + [anon_sym_AMP] = ACTIONS(2717), + [anon_sym_SEMI] = ACTIONS(2719), + [anon_sym___extension__] = ACTIONS(2717), + [anon_sym_typedef] = ACTIONS(2717), + [anon_sym_virtual] = ACTIONS(2717), + [anon_sym_extern] = ACTIONS(2717), + [anon_sym___attribute__] = ACTIONS(2717), + [anon_sym___attribute] = ACTIONS(2717), + [anon_sym_using] = ACTIONS(2717), + [anon_sym_COLON_COLON] = ACTIONS(2719), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2719), + [anon_sym___declspec] = ACTIONS(2717), + [anon_sym___based] = ACTIONS(2717), + [anon_sym___cdecl] = ACTIONS(2717), + [anon_sym___clrcall] = ACTIONS(2717), + [anon_sym___stdcall] = ACTIONS(2717), + [anon_sym___fastcall] = ACTIONS(2717), + [anon_sym___thiscall] = ACTIONS(2717), + [anon_sym___vectorcall] = ACTIONS(2717), + [anon_sym_LBRACE] = ACTIONS(2719), + [anon_sym_signed] = ACTIONS(2717), + [anon_sym_unsigned] = ACTIONS(2717), + [anon_sym_long] = ACTIONS(2717), + [anon_sym_short] = ACTIONS(2717), + [anon_sym_LBRACK] = ACTIONS(2717), + [anon_sym_static] = ACTIONS(2717), + [anon_sym_register] = ACTIONS(2717), + [anon_sym_inline] = ACTIONS(2717), + [anon_sym___inline] = ACTIONS(2717), + [anon_sym___inline__] = ACTIONS(2717), + [anon_sym___forceinline] = ACTIONS(2717), + [anon_sym_thread_local] = ACTIONS(2717), + [anon_sym___thread] = ACTIONS(2717), + [anon_sym_const] = ACTIONS(2717), + [anon_sym_constexpr] = ACTIONS(2717), + [anon_sym_volatile] = ACTIONS(2717), + [anon_sym_restrict] = ACTIONS(2717), + [anon_sym___restrict__] = ACTIONS(2717), + [anon_sym__Atomic] = ACTIONS(2717), + [anon_sym__Noreturn] = ACTIONS(2717), + [anon_sym_noreturn] = ACTIONS(2717), + [anon_sym__Nonnull] = ACTIONS(2717), + [anon_sym_mutable] = ACTIONS(2717), + [anon_sym_constinit] = ACTIONS(2717), + [anon_sym_consteval] = ACTIONS(2717), + [anon_sym_alignas] = ACTIONS(2717), + [anon_sym__Alignas] = ACTIONS(2717), + [sym_primitive_type] = ACTIONS(2717), + [anon_sym_enum] = ACTIONS(2717), + [anon_sym_class] = ACTIONS(2717), + [anon_sym_struct] = ACTIONS(2717), + [anon_sym_union] = ACTIONS(2717), + [anon_sym_if] = ACTIONS(2717), + [anon_sym_else] = ACTIONS(2717), + [anon_sym_switch] = ACTIONS(2717), + [anon_sym_case] = ACTIONS(2717), + [anon_sym_default] = ACTIONS(2717), + [anon_sym_while] = ACTIONS(2717), + [anon_sym_do] = ACTIONS(2717), + [anon_sym_for] = ACTIONS(2717), + [anon_sym_return] = ACTIONS(2717), + [anon_sym_break] = ACTIONS(2717), + [anon_sym_continue] = ACTIONS(2717), + [anon_sym_goto] = ACTIONS(2717), + [anon_sym___try] = ACTIONS(2717), + [anon_sym___leave] = ACTIONS(2717), + [anon_sym_not] = ACTIONS(2717), + [anon_sym_compl] = ACTIONS(2717), + [anon_sym_DASH_DASH] = ACTIONS(2719), + [anon_sym_PLUS_PLUS] = ACTIONS(2719), + [anon_sym_sizeof] = ACTIONS(2717), + [anon_sym___alignof__] = ACTIONS(2717), + [anon_sym___alignof] = ACTIONS(2717), + [anon_sym__alignof] = ACTIONS(2717), + [anon_sym_alignof] = ACTIONS(2717), + [anon_sym__Alignof] = ACTIONS(2717), + [anon_sym_offsetof] = ACTIONS(2717), + [anon_sym__Generic] = ACTIONS(2717), + [anon_sym_asm] = ACTIONS(2717), + [anon_sym___asm__] = ACTIONS(2717), + [anon_sym___asm] = ACTIONS(2717), + [sym_number_literal] = ACTIONS(2719), + [anon_sym_L_SQUOTE] = ACTIONS(2719), + [anon_sym_u_SQUOTE] = ACTIONS(2719), + [anon_sym_U_SQUOTE] = ACTIONS(2719), + [anon_sym_u8_SQUOTE] = ACTIONS(2719), + [anon_sym_SQUOTE] = ACTIONS(2719), + [anon_sym_L_DQUOTE] = ACTIONS(2719), + [anon_sym_u_DQUOTE] = ACTIONS(2719), + [anon_sym_U_DQUOTE] = ACTIONS(2719), + [anon_sym_u8_DQUOTE] = ACTIONS(2719), + [anon_sym_DQUOTE] = ACTIONS(2719), + [sym_true] = ACTIONS(2717), + [sym_false] = ACTIONS(2717), + [anon_sym_NULL] = ACTIONS(2717), + [anon_sym_nullptr] = ACTIONS(2717), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2717), + [anon_sym_decltype] = ACTIONS(2717), + [anon_sym_explicit] = ACTIONS(2717), + [anon_sym_typename] = ACTIONS(2717), + [anon_sym_template] = ACTIONS(2717), + [anon_sym_operator] = ACTIONS(2717), + [anon_sym_try] = ACTIONS(2717), + [anon_sym_delete] = ACTIONS(2717), + [anon_sym_throw] = ACTIONS(2717), + [anon_sym_namespace] = ACTIONS(2717), + [anon_sym_static_assert] = ACTIONS(2717), + [anon_sym_concept] = ACTIONS(2717), + [anon_sym_co_return] = ACTIONS(2717), + [anon_sym_co_yield] = ACTIONS(2717), + [anon_sym_R_DQUOTE] = ACTIONS(2719), + [anon_sym_LR_DQUOTE] = ACTIONS(2719), + [anon_sym_uR_DQUOTE] = ACTIONS(2719), + [anon_sym_UR_DQUOTE] = ACTIONS(2719), + [anon_sym_u8R_DQUOTE] = ACTIONS(2719), + [anon_sym_co_await] = ACTIONS(2717), + [anon_sym_new] = ACTIONS(2717), + [anon_sym_requires] = ACTIONS(2717), + [sym_this] = ACTIONS(2717), }, [267] = { - [sym_identifier] = ACTIONS(2715), - [aux_sym_preproc_include_token1] = ACTIONS(2715), - [aux_sym_preproc_def_token1] = ACTIONS(2715), - [aux_sym_preproc_if_token1] = ACTIONS(2715), - [aux_sym_preproc_if_token2] = ACTIONS(2715), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2715), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2715), - [aux_sym_preproc_else_token1] = ACTIONS(2715), - [aux_sym_preproc_elif_token1] = ACTIONS(2715), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2715), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2715), - [sym_preproc_directive] = ACTIONS(2715), - [anon_sym_LPAREN2] = ACTIONS(2717), - [anon_sym_BANG] = ACTIONS(2717), - [anon_sym_TILDE] = ACTIONS(2717), - [anon_sym_DASH] = ACTIONS(2715), - [anon_sym_PLUS] = ACTIONS(2715), - [anon_sym_STAR] = ACTIONS(2717), - [anon_sym_AMP_AMP] = ACTIONS(2717), - [anon_sym_AMP] = ACTIONS(2715), - [anon_sym_SEMI] = ACTIONS(2717), - [anon_sym___extension__] = ACTIONS(2715), - [anon_sym_typedef] = ACTIONS(2715), - [anon_sym_virtual] = ACTIONS(2715), - [anon_sym_extern] = ACTIONS(2715), - [anon_sym___attribute__] = ACTIONS(2715), - [anon_sym___attribute] = ACTIONS(2715), - [anon_sym_using] = ACTIONS(2715), - [anon_sym_COLON_COLON] = ACTIONS(2717), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2717), - [anon_sym___declspec] = ACTIONS(2715), - [anon_sym___based] = ACTIONS(2715), - [anon_sym___cdecl] = ACTIONS(2715), - [anon_sym___clrcall] = ACTIONS(2715), - [anon_sym___stdcall] = ACTIONS(2715), - [anon_sym___fastcall] = ACTIONS(2715), - [anon_sym___thiscall] = ACTIONS(2715), - [anon_sym___vectorcall] = ACTIONS(2715), - [anon_sym_LBRACE] = ACTIONS(2717), - [anon_sym_signed] = ACTIONS(2715), - [anon_sym_unsigned] = ACTIONS(2715), - [anon_sym_long] = ACTIONS(2715), - [anon_sym_short] = ACTIONS(2715), - [anon_sym_LBRACK] = ACTIONS(2715), - [anon_sym_static] = ACTIONS(2715), - [anon_sym_register] = ACTIONS(2715), - [anon_sym_inline] = ACTIONS(2715), - [anon_sym___inline] = ACTIONS(2715), - [anon_sym___inline__] = ACTIONS(2715), - [anon_sym___forceinline] = ACTIONS(2715), - [anon_sym_thread_local] = ACTIONS(2715), - [anon_sym___thread] = ACTIONS(2715), - [anon_sym_const] = ACTIONS(2715), - [anon_sym_constexpr] = ACTIONS(2715), - [anon_sym_volatile] = ACTIONS(2715), - [anon_sym_restrict] = ACTIONS(2715), - [anon_sym___restrict__] = ACTIONS(2715), - [anon_sym__Atomic] = ACTIONS(2715), - [anon_sym__Noreturn] = ACTIONS(2715), - [anon_sym_noreturn] = ACTIONS(2715), - [anon_sym__Nonnull] = ACTIONS(2715), - [anon_sym_mutable] = ACTIONS(2715), - [anon_sym_constinit] = ACTIONS(2715), - [anon_sym_consteval] = ACTIONS(2715), - [anon_sym_alignas] = ACTIONS(2715), - [anon_sym__Alignas] = ACTIONS(2715), - [sym_primitive_type] = ACTIONS(2715), - [anon_sym_enum] = ACTIONS(2715), - [anon_sym_class] = ACTIONS(2715), - [anon_sym_struct] = ACTIONS(2715), - [anon_sym_union] = ACTIONS(2715), - [anon_sym_if] = ACTIONS(2715), - [anon_sym_else] = ACTIONS(2715), - [anon_sym_switch] = ACTIONS(2715), - [anon_sym_case] = ACTIONS(2715), - [anon_sym_default] = ACTIONS(2715), - [anon_sym_while] = ACTIONS(2715), - [anon_sym_do] = ACTIONS(2715), - [anon_sym_for] = ACTIONS(2715), - [anon_sym_return] = ACTIONS(2715), - [anon_sym_break] = ACTIONS(2715), - [anon_sym_continue] = ACTIONS(2715), - [anon_sym_goto] = ACTIONS(2715), - [anon_sym___try] = ACTIONS(2715), - [anon_sym___leave] = ACTIONS(2715), - [anon_sym_not] = ACTIONS(2715), - [anon_sym_compl] = ACTIONS(2715), - [anon_sym_DASH_DASH] = ACTIONS(2717), - [anon_sym_PLUS_PLUS] = ACTIONS(2717), - [anon_sym_sizeof] = ACTIONS(2715), - [anon_sym___alignof__] = ACTIONS(2715), - [anon_sym___alignof] = ACTIONS(2715), - [anon_sym__alignof] = ACTIONS(2715), - [anon_sym_alignof] = ACTIONS(2715), - [anon_sym__Alignof] = ACTIONS(2715), - [anon_sym_offsetof] = ACTIONS(2715), - [anon_sym__Generic] = ACTIONS(2715), - [anon_sym_asm] = ACTIONS(2715), - [anon_sym___asm__] = ACTIONS(2715), - [anon_sym___asm] = ACTIONS(2715), - [sym_number_literal] = ACTIONS(2717), - [anon_sym_L_SQUOTE] = ACTIONS(2717), - [anon_sym_u_SQUOTE] = ACTIONS(2717), - [anon_sym_U_SQUOTE] = ACTIONS(2717), - [anon_sym_u8_SQUOTE] = ACTIONS(2717), - [anon_sym_SQUOTE] = ACTIONS(2717), - [anon_sym_L_DQUOTE] = ACTIONS(2717), - [anon_sym_u_DQUOTE] = ACTIONS(2717), - [anon_sym_U_DQUOTE] = ACTIONS(2717), - [anon_sym_u8_DQUOTE] = ACTIONS(2717), - [anon_sym_DQUOTE] = ACTIONS(2717), - [sym_true] = ACTIONS(2715), - [sym_false] = ACTIONS(2715), - [anon_sym_NULL] = ACTIONS(2715), - [anon_sym_nullptr] = ACTIONS(2715), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2715), - [anon_sym_decltype] = ACTIONS(2715), - [anon_sym_explicit] = ACTIONS(2715), - [anon_sym_typename] = ACTIONS(2715), - [anon_sym_template] = ACTIONS(2715), - [anon_sym_operator] = ACTIONS(2715), - [anon_sym_try] = ACTIONS(2715), - [anon_sym_delete] = ACTIONS(2715), - [anon_sym_throw] = ACTIONS(2715), - [anon_sym_namespace] = ACTIONS(2715), - [anon_sym_static_assert] = ACTIONS(2715), - [anon_sym_concept] = ACTIONS(2715), - [anon_sym_co_return] = ACTIONS(2715), - [anon_sym_co_yield] = ACTIONS(2715), - [anon_sym_R_DQUOTE] = ACTIONS(2717), - [anon_sym_LR_DQUOTE] = ACTIONS(2717), - [anon_sym_uR_DQUOTE] = ACTIONS(2717), - [anon_sym_UR_DQUOTE] = ACTIONS(2717), - [anon_sym_u8R_DQUOTE] = ACTIONS(2717), - [anon_sym_co_await] = ACTIONS(2715), - [anon_sym_new] = ACTIONS(2715), - [anon_sym_requires] = ACTIONS(2715), - [sym_this] = ACTIONS(2715), + [sym_identifier] = ACTIONS(2721), + [aux_sym_preproc_include_token1] = ACTIONS(2721), + [aux_sym_preproc_def_token1] = ACTIONS(2721), + [aux_sym_preproc_if_token1] = ACTIONS(2721), + [aux_sym_preproc_if_token2] = ACTIONS(2721), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2721), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2721), + [aux_sym_preproc_else_token1] = ACTIONS(2721), + [aux_sym_preproc_elif_token1] = ACTIONS(2721), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2721), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2721), + [sym_preproc_directive] = ACTIONS(2721), + [anon_sym_LPAREN2] = ACTIONS(2723), + [anon_sym_BANG] = ACTIONS(2723), + [anon_sym_TILDE] = ACTIONS(2723), + [anon_sym_DASH] = ACTIONS(2721), + [anon_sym_PLUS] = ACTIONS(2721), + [anon_sym_STAR] = ACTIONS(2723), + [anon_sym_AMP_AMP] = ACTIONS(2723), + [anon_sym_AMP] = ACTIONS(2721), + [anon_sym_SEMI] = ACTIONS(2723), + [anon_sym___extension__] = ACTIONS(2721), + [anon_sym_typedef] = ACTIONS(2721), + [anon_sym_virtual] = ACTIONS(2721), + [anon_sym_extern] = ACTIONS(2721), + [anon_sym___attribute__] = ACTIONS(2721), + [anon_sym___attribute] = ACTIONS(2721), + [anon_sym_using] = ACTIONS(2721), + [anon_sym_COLON_COLON] = ACTIONS(2723), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2723), + [anon_sym___declspec] = ACTIONS(2721), + [anon_sym___based] = ACTIONS(2721), + [anon_sym___cdecl] = ACTIONS(2721), + [anon_sym___clrcall] = ACTIONS(2721), + [anon_sym___stdcall] = ACTIONS(2721), + [anon_sym___fastcall] = ACTIONS(2721), + [anon_sym___thiscall] = ACTIONS(2721), + [anon_sym___vectorcall] = ACTIONS(2721), + [anon_sym_LBRACE] = ACTIONS(2723), + [anon_sym_signed] = ACTIONS(2721), + [anon_sym_unsigned] = ACTIONS(2721), + [anon_sym_long] = ACTIONS(2721), + [anon_sym_short] = ACTIONS(2721), + [anon_sym_LBRACK] = ACTIONS(2721), + [anon_sym_static] = ACTIONS(2721), + [anon_sym_register] = ACTIONS(2721), + [anon_sym_inline] = ACTIONS(2721), + [anon_sym___inline] = ACTIONS(2721), + [anon_sym___inline__] = ACTIONS(2721), + [anon_sym___forceinline] = ACTIONS(2721), + [anon_sym_thread_local] = ACTIONS(2721), + [anon_sym___thread] = ACTIONS(2721), + [anon_sym_const] = ACTIONS(2721), + [anon_sym_constexpr] = ACTIONS(2721), + [anon_sym_volatile] = ACTIONS(2721), + [anon_sym_restrict] = ACTIONS(2721), + [anon_sym___restrict__] = ACTIONS(2721), + [anon_sym__Atomic] = ACTIONS(2721), + [anon_sym__Noreturn] = ACTIONS(2721), + [anon_sym_noreturn] = ACTIONS(2721), + [anon_sym__Nonnull] = ACTIONS(2721), + [anon_sym_mutable] = ACTIONS(2721), + [anon_sym_constinit] = ACTIONS(2721), + [anon_sym_consteval] = ACTIONS(2721), + [anon_sym_alignas] = ACTIONS(2721), + [anon_sym__Alignas] = ACTIONS(2721), + [sym_primitive_type] = ACTIONS(2721), + [anon_sym_enum] = ACTIONS(2721), + [anon_sym_class] = ACTIONS(2721), + [anon_sym_struct] = ACTIONS(2721), + [anon_sym_union] = ACTIONS(2721), + [anon_sym_if] = ACTIONS(2721), + [anon_sym_else] = ACTIONS(2721), + [anon_sym_switch] = ACTIONS(2721), + [anon_sym_case] = ACTIONS(2721), + [anon_sym_default] = ACTIONS(2721), + [anon_sym_while] = ACTIONS(2721), + [anon_sym_do] = ACTIONS(2721), + [anon_sym_for] = ACTIONS(2721), + [anon_sym_return] = ACTIONS(2721), + [anon_sym_break] = ACTIONS(2721), + [anon_sym_continue] = ACTIONS(2721), + [anon_sym_goto] = ACTIONS(2721), + [anon_sym___try] = ACTIONS(2721), + [anon_sym___leave] = ACTIONS(2721), + [anon_sym_not] = ACTIONS(2721), + [anon_sym_compl] = ACTIONS(2721), + [anon_sym_DASH_DASH] = ACTIONS(2723), + [anon_sym_PLUS_PLUS] = ACTIONS(2723), + [anon_sym_sizeof] = ACTIONS(2721), + [anon_sym___alignof__] = ACTIONS(2721), + [anon_sym___alignof] = ACTIONS(2721), + [anon_sym__alignof] = ACTIONS(2721), + [anon_sym_alignof] = ACTIONS(2721), + [anon_sym__Alignof] = ACTIONS(2721), + [anon_sym_offsetof] = ACTIONS(2721), + [anon_sym__Generic] = ACTIONS(2721), + [anon_sym_asm] = ACTIONS(2721), + [anon_sym___asm__] = ACTIONS(2721), + [anon_sym___asm] = ACTIONS(2721), + [sym_number_literal] = ACTIONS(2723), + [anon_sym_L_SQUOTE] = ACTIONS(2723), + [anon_sym_u_SQUOTE] = ACTIONS(2723), + [anon_sym_U_SQUOTE] = ACTIONS(2723), + [anon_sym_u8_SQUOTE] = ACTIONS(2723), + [anon_sym_SQUOTE] = ACTIONS(2723), + [anon_sym_L_DQUOTE] = ACTIONS(2723), + [anon_sym_u_DQUOTE] = ACTIONS(2723), + [anon_sym_U_DQUOTE] = ACTIONS(2723), + [anon_sym_u8_DQUOTE] = ACTIONS(2723), + [anon_sym_DQUOTE] = ACTIONS(2723), + [sym_true] = ACTIONS(2721), + [sym_false] = ACTIONS(2721), + [anon_sym_NULL] = ACTIONS(2721), + [anon_sym_nullptr] = ACTIONS(2721), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2721), + [anon_sym_decltype] = ACTIONS(2721), + [anon_sym_explicit] = ACTIONS(2721), + [anon_sym_typename] = ACTIONS(2721), + [anon_sym_template] = ACTIONS(2721), + [anon_sym_operator] = ACTIONS(2721), + [anon_sym_try] = ACTIONS(2721), + [anon_sym_delete] = ACTIONS(2721), + [anon_sym_throw] = ACTIONS(2721), + [anon_sym_namespace] = ACTIONS(2721), + [anon_sym_static_assert] = ACTIONS(2721), + [anon_sym_concept] = ACTIONS(2721), + [anon_sym_co_return] = ACTIONS(2721), + [anon_sym_co_yield] = ACTIONS(2721), + [anon_sym_R_DQUOTE] = ACTIONS(2723), + [anon_sym_LR_DQUOTE] = ACTIONS(2723), + [anon_sym_uR_DQUOTE] = ACTIONS(2723), + [anon_sym_UR_DQUOTE] = ACTIONS(2723), + [anon_sym_u8R_DQUOTE] = ACTIONS(2723), + [anon_sym_co_await] = ACTIONS(2721), + [anon_sym_new] = ACTIONS(2721), + [anon_sym_requires] = ACTIONS(2721), + [sym_this] = ACTIONS(2721), }, [268] = { - [sym_identifier] = ACTIONS(2719), - [aux_sym_preproc_include_token1] = ACTIONS(2719), - [aux_sym_preproc_def_token1] = ACTIONS(2719), - [aux_sym_preproc_if_token1] = ACTIONS(2719), - [aux_sym_preproc_if_token2] = ACTIONS(2719), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2719), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2719), - [aux_sym_preproc_else_token1] = ACTIONS(2719), - [aux_sym_preproc_elif_token1] = ACTIONS(2719), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2719), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2719), - [sym_preproc_directive] = ACTIONS(2719), - [anon_sym_LPAREN2] = ACTIONS(2721), - [anon_sym_BANG] = ACTIONS(2721), - [anon_sym_TILDE] = ACTIONS(2721), - [anon_sym_DASH] = ACTIONS(2719), - [anon_sym_PLUS] = ACTIONS(2719), - [anon_sym_STAR] = ACTIONS(2721), - [anon_sym_AMP_AMP] = ACTIONS(2721), - [anon_sym_AMP] = ACTIONS(2719), - [anon_sym_SEMI] = ACTIONS(2721), - [anon_sym___extension__] = ACTIONS(2719), - [anon_sym_typedef] = ACTIONS(2719), - [anon_sym_virtual] = ACTIONS(2719), - [anon_sym_extern] = ACTIONS(2719), - [anon_sym___attribute__] = ACTIONS(2719), - [anon_sym___attribute] = ACTIONS(2719), - [anon_sym_using] = ACTIONS(2719), - [anon_sym_COLON_COLON] = ACTIONS(2721), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2721), - [anon_sym___declspec] = ACTIONS(2719), - [anon_sym___based] = ACTIONS(2719), - [anon_sym___cdecl] = ACTIONS(2719), - [anon_sym___clrcall] = ACTIONS(2719), - [anon_sym___stdcall] = ACTIONS(2719), - [anon_sym___fastcall] = ACTIONS(2719), - [anon_sym___thiscall] = ACTIONS(2719), - [anon_sym___vectorcall] = ACTIONS(2719), - [anon_sym_LBRACE] = ACTIONS(2721), - [anon_sym_signed] = ACTIONS(2719), - [anon_sym_unsigned] = ACTIONS(2719), - [anon_sym_long] = ACTIONS(2719), - [anon_sym_short] = ACTIONS(2719), - [anon_sym_LBRACK] = ACTIONS(2719), - [anon_sym_static] = ACTIONS(2719), - [anon_sym_register] = ACTIONS(2719), - [anon_sym_inline] = ACTIONS(2719), - [anon_sym___inline] = ACTIONS(2719), - [anon_sym___inline__] = ACTIONS(2719), - [anon_sym___forceinline] = ACTIONS(2719), - [anon_sym_thread_local] = ACTIONS(2719), - [anon_sym___thread] = ACTIONS(2719), - [anon_sym_const] = ACTIONS(2719), - [anon_sym_constexpr] = ACTIONS(2719), - [anon_sym_volatile] = ACTIONS(2719), - [anon_sym_restrict] = ACTIONS(2719), - [anon_sym___restrict__] = ACTIONS(2719), - [anon_sym__Atomic] = ACTIONS(2719), - [anon_sym__Noreturn] = ACTIONS(2719), - [anon_sym_noreturn] = ACTIONS(2719), - [anon_sym__Nonnull] = ACTIONS(2719), - [anon_sym_mutable] = ACTIONS(2719), - [anon_sym_constinit] = ACTIONS(2719), - [anon_sym_consteval] = ACTIONS(2719), - [anon_sym_alignas] = ACTIONS(2719), - [anon_sym__Alignas] = ACTIONS(2719), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(2719), - [anon_sym_class] = ACTIONS(2719), - [anon_sym_struct] = ACTIONS(2719), - [anon_sym_union] = ACTIONS(2719), - [anon_sym_if] = ACTIONS(2719), - [anon_sym_else] = ACTIONS(2719), - [anon_sym_switch] = ACTIONS(2719), - [anon_sym_case] = ACTIONS(2719), - [anon_sym_default] = ACTIONS(2719), - [anon_sym_while] = ACTIONS(2719), - [anon_sym_do] = ACTIONS(2719), - [anon_sym_for] = ACTIONS(2719), - [anon_sym_return] = ACTIONS(2719), - [anon_sym_break] = ACTIONS(2719), - [anon_sym_continue] = ACTIONS(2719), - [anon_sym_goto] = ACTIONS(2719), - [anon_sym___try] = ACTIONS(2719), - [anon_sym___leave] = ACTIONS(2719), - [anon_sym_not] = ACTIONS(2719), - [anon_sym_compl] = ACTIONS(2719), - [anon_sym_DASH_DASH] = ACTIONS(2721), - [anon_sym_PLUS_PLUS] = ACTIONS(2721), - [anon_sym_sizeof] = ACTIONS(2719), - [anon_sym___alignof__] = ACTIONS(2719), - [anon_sym___alignof] = ACTIONS(2719), - [anon_sym__alignof] = ACTIONS(2719), - [anon_sym_alignof] = ACTIONS(2719), - [anon_sym__Alignof] = ACTIONS(2719), - [anon_sym_offsetof] = ACTIONS(2719), - [anon_sym__Generic] = ACTIONS(2719), - [anon_sym_asm] = ACTIONS(2719), - [anon_sym___asm__] = ACTIONS(2719), - [anon_sym___asm] = ACTIONS(2719), - [sym_number_literal] = ACTIONS(2721), - [anon_sym_L_SQUOTE] = ACTIONS(2721), - [anon_sym_u_SQUOTE] = ACTIONS(2721), - [anon_sym_U_SQUOTE] = ACTIONS(2721), - [anon_sym_u8_SQUOTE] = ACTIONS(2721), - [anon_sym_SQUOTE] = ACTIONS(2721), - [anon_sym_L_DQUOTE] = ACTIONS(2721), - [anon_sym_u_DQUOTE] = ACTIONS(2721), - [anon_sym_U_DQUOTE] = ACTIONS(2721), - [anon_sym_u8_DQUOTE] = ACTIONS(2721), - [anon_sym_DQUOTE] = ACTIONS(2721), - [sym_true] = ACTIONS(2719), - [sym_false] = ACTIONS(2719), - [anon_sym_NULL] = ACTIONS(2719), - [anon_sym_nullptr] = ACTIONS(2719), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2719), - [anon_sym_decltype] = ACTIONS(2719), - [anon_sym_explicit] = ACTIONS(2719), - [anon_sym_typename] = ACTIONS(2719), - [anon_sym_template] = ACTIONS(2719), - [anon_sym_operator] = ACTIONS(2719), - [anon_sym_try] = ACTIONS(2719), - [anon_sym_delete] = ACTIONS(2719), - [anon_sym_throw] = ACTIONS(2719), - [anon_sym_namespace] = ACTIONS(2719), - [anon_sym_static_assert] = ACTIONS(2719), - [anon_sym_concept] = ACTIONS(2719), - [anon_sym_co_return] = ACTIONS(2719), - [anon_sym_co_yield] = ACTIONS(2719), - [anon_sym_R_DQUOTE] = ACTIONS(2721), - [anon_sym_LR_DQUOTE] = ACTIONS(2721), - [anon_sym_uR_DQUOTE] = ACTIONS(2721), - [anon_sym_UR_DQUOTE] = ACTIONS(2721), - [anon_sym_u8R_DQUOTE] = ACTIONS(2721), - [anon_sym_co_await] = ACTIONS(2719), - [anon_sym_new] = ACTIONS(2719), - [anon_sym_requires] = ACTIONS(2719), - [sym_this] = ACTIONS(2719), + [sym_identifier] = ACTIONS(2725), + [aux_sym_preproc_include_token1] = ACTIONS(2725), + [aux_sym_preproc_def_token1] = ACTIONS(2725), + [aux_sym_preproc_if_token1] = ACTIONS(2725), + [aux_sym_preproc_if_token2] = ACTIONS(2725), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2725), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2725), + [aux_sym_preproc_else_token1] = ACTIONS(2725), + [aux_sym_preproc_elif_token1] = ACTIONS(2725), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2725), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2725), + [sym_preproc_directive] = ACTIONS(2725), + [anon_sym_LPAREN2] = ACTIONS(2727), + [anon_sym_BANG] = ACTIONS(2727), + [anon_sym_TILDE] = ACTIONS(2727), + [anon_sym_DASH] = ACTIONS(2725), + [anon_sym_PLUS] = ACTIONS(2725), + [anon_sym_STAR] = ACTIONS(2727), + [anon_sym_AMP_AMP] = ACTIONS(2727), + [anon_sym_AMP] = ACTIONS(2725), + [anon_sym_SEMI] = ACTIONS(2727), + [anon_sym___extension__] = ACTIONS(2725), + [anon_sym_typedef] = ACTIONS(2725), + [anon_sym_virtual] = ACTIONS(2725), + [anon_sym_extern] = ACTIONS(2725), + [anon_sym___attribute__] = ACTIONS(2725), + [anon_sym___attribute] = ACTIONS(2725), + [anon_sym_using] = ACTIONS(2725), + [anon_sym_COLON_COLON] = ACTIONS(2727), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2727), + [anon_sym___declspec] = ACTIONS(2725), + [anon_sym___based] = ACTIONS(2725), + [anon_sym___cdecl] = ACTIONS(2725), + [anon_sym___clrcall] = ACTIONS(2725), + [anon_sym___stdcall] = ACTIONS(2725), + [anon_sym___fastcall] = ACTIONS(2725), + [anon_sym___thiscall] = ACTIONS(2725), + [anon_sym___vectorcall] = ACTIONS(2725), + [anon_sym_LBRACE] = ACTIONS(2727), + [anon_sym_signed] = ACTIONS(2725), + [anon_sym_unsigned] = ACTIONS(2725), + [anon_sym_long] = ACTIONS(2725), + [anon_sym_short] = ACTIONS(2725), + [anon_sym_LBRACK] = ACTIONS(2725), + [anon_sym_static] = ACTIONS(2725), + [anon_sym_register] = ACTIONS(2725), + [anon_sym_inline] = ACTIONS(2725), + [anon_sym___inline] = ACTIONS(2725), + [anon_sym___inline__] = ACTIONS(2725), + [anon_sym___forceinline] = ACTIONS(2725), + [anon_sym_thread_local] = ACTIONS(2725), + [anon_sym___thread] = ACTIONS(2725), + [anon_sym_const] = ACTIONS(2725), + [anon_sym_constexpr] = ACTIONS(2725), + [anon_sym_volatile] = ACTIONS(2725), + [anon_sym_restrict] = ACTIONS(2725), + [anon_sym___restrict__] = ACTIONS(2725), + [anon_sym__Atomic] = ACTIONS(2725), + [anon_sym__Noreturn] = ACTIONS(2725), + [anon_sym_noreturn] = ACTIONS(2725), + [anon_sym__Nonnull] = ACTIONS(2725), + [anon_sym_mutable] = ACTIONS(2725), + [anon_sym_constinit] = ACTIONS(2725), + [anon_sym_consteval] = ACTIONS(2725), + [anon_sym_alignas] = ACTIONS(2725), + [anon_sym__Alignas] = ACTIONS(2725), + [sym_primitive_type] = ACTIONS(2725), + [anon_sym_enum] = ACTIONS(2725), + [anon_sym_class] = ACTIONS(2725), + [anon_sym_struct] = ACTIONS(2725), + [anon_sym_union] = ACTIONS(2725), + [anon_sym_if] = ACTIONS(2725), + [anon_sym_else] = ACTIONS(2725), + [anon_sym_switch] = ACTIONS(2725), + [anon_sym_case] = ACTIONS(2725), + [anon_sym_default] = ACTIONS(2725), + [anon_sym_while] = ACTIONS(2725), + [anon_sym_do] = ACTIONS(2725), + [anon_sym_for] = ACTIONS(2725), + [anon_sym_return] = ACTIONS(2725), + [anon_sym_break] = ACTIONS(2725), + [anon_sym_continue] = ACTIONS(2725), + [anon_sym_goto] = ACTIONS(2725), + [anon_sym___try] = ACTIONS(2725), + [anon_sym___leave] = ACTIONS(2725), + [anon_sym_not] = ACTIONS(2725), + [anon_sym_compl] = ACTIONS(2725), + [anon_sym_DASH_DASH] = ACTIONS(2727), + [anon_sym_PLUS_PLUS] = ACTIONS(2727), + [anon_sym_sizeof] = ACTIONS(2725), + [anon_sym___alignof__] = ACTIONS(2725), + [anon_sym___alignof] = ACTIONS(2725), + [anon_sym__alignof] = ACTIONS(2725), + [anon_sym_alignof] = ACTIONS(2725), + [anon_sym__Alignof] = ACTIONS(2725), + [anon_sym_offsetof] = ACTIONS(2725), + [anon_sym__Generic] = ACTIONS(2725), + [anon_sym_asm] = ACTIONS(2725), + [anon_sym___asm__] = ACTIONS(2725), + [anon_sym___asm] = ACTIONS(2725), + [sym_number_literal] = ACTIONS(2727), + [anon_sym_L_SQUOTE] = ACTIONS(2727), + [anon_sym_u_SQUOTE] = ACTIONS(2727), + [anon_sym_U_SQUOTE] = ACTIONS(2727), + [anon_sym_u8_SQUOTE] = ACTIONS(2727), + [anon_sym_SQUOTE] = ACTIONS(2727), + [anon_sym_L_DQUOTE] = ACTIONS(2727), + [anon_sym_u_DQUOTE] = ACTIONS(2727), + [anon_sym_U_DQUOTE] = ACTIONS(2727), + [anon_sym_u8_DQUOTE] = ACTIONS(2727), + [anon_sym_DQUOTE] = ACTIONS(2727), + [sym_true] = ACTIONS(2725), + [sym_false] = ACTIONS(2725), + [anon_sym_NULL] = ACTIONS(2725), + [anon_sym_nullptr] = ACTIONS(2725), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2725), + [anon_sym_decltype] = ACTIONS(2725), + [anon_sym_explicit] = ACTIONS(2725), + [anon_sym_typename] = ACTIONS(2725), + [anon_sym_template] = ACTIONS(2725), + [anon_sym_operator] = ACTIONS(2725), + [anon_sym_try] = ACTIONS(2725), + [anon_sym_delete] = ACTIONS(2725), + [anon_sym_throw] = ACTIONS(2725), + [anon_sym_namespace] = ACTIONS(2725), + [anon_sym_static_assert] = ACTIONS(2725), + [anon_sym_concept] = ACTIONS(2725), + [anon_sym_co_return] = ACTIONS(2725), + [anon_sym_co_yield] = ACTIONS(2725), + [anon_sym_R_DQUOTE] = ACTIONS(2727), + [anon_sym_LR_DQUOTE] = ACTIONS(2727), + [anon_sym_uR_DQUOTE] = ACTIONS(2727), + [anon_sym_UR_DQUOTE] = ACTIONS(2727), + [anon_sym_u8R_DQUOTE] = ACTIONS(2727), + [anon_sym_co_await] = ACTIONS(2725), + [anon_sym_new] = ACTIONS(2725), + [anon_sym_requires] = ACTIONS(2725), + [sym_this] = ACTIONS(2725), }, [269] = { - [sym_identifier] = ACTIONS(2723), - [aux_sym_preproc_include_token1] = ACTIONS(2723), - [aux_sym_preproc_def_token1] = ACTIONS(2723), - [aux_sym_preproc_if_token1] = ACTIONS(2723), - [aux_sym_preproc_if_token2] = ACTIONS(2723), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2723), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2723), - [aux_sym_preproc_else_token1] = ACTIONS(2723), - [aux_sym_preproc_elif_token1] = ACTIONS(2723), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2723), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2723), - [sym_preproc_directive] = ACTIONS(2723), - [anon_sym_LPAREN2] = ACTIONS(2725), - [anon_sym_BANG] = ACTIONS(2725), - [anon_sym_TILDE] = ACTIONS(2725), - [anon_sym_DASH] = ACTIONS(2723), - [anon_sym_PLUS] = ACTIONS(2723), - [anon_sym_STAR] = ACTIONS(2725), - [anon_sym_AMP_AMP] = ACTIONS(2725), - [anon_sym_AMP] = ACTIONS(2723), - [anon_sym_SEMI] = ACTIONS(2725), - [anon_sym___extension__] = ACTIONS(2723), - [anon_sym_typedef] = ACTIONS(2723), - [anon_sym_virtual] = ACTIONS(2723), - [anon_sym_extern] = ACTIONS(2723), - [anon_sym___attribute__] = ACTIONS(2723), - [anon_sym___attribute] = ACTIONS(2723), - [anon_sym_using] = ACTIONS(2723), - [anon_sym_COLON_COLON] = ACTIONS(2725), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2725), - [anon_sym___declspec] = ACTIONS(2723), - [anon_sym___based] = ACTIONS(2723), - [anon_sym___cdecl] = ACTIONS(2723), - [anon_sym___clrcall] = ACTIONS(2723), - [anon_sym___stdcall] = ACTIONS(2723), - [anon_sym___fastcall] = ACTIONS(2723), - [anon_sym___thiscall] = ACTIONS(2723), - [anon_sym___vectorcall] = ACTIONS(2723), - [anon_sym_LBRACE] = ACTIONS(2725), - [anon_sym_signed] = ACTIONS(2723), - [anon_sym_unsigned] = ACTIONS(2723), - [anon_sym_long] = ACTIONS(2723), - [anon_sym_short] = ACTIONS(2723), - [anon_sym_LBRACK] = ACTIONS(2723), - [anon_sym_static] = ACTIONS(2723), - [anon_sym_register] = ACTIONS(2723), - [anon_sym_inline] = ACTIONS(2723), - [anon_sym___inline] = ACTIONS(2723), - [anon_sym___inline__] = ACTIONS(2723), - [anon_sym___forceinline] = ACTIONS(2723), - [anon_sym_thread_local] = ACTIONS(2723), - [anon_sym___thread] = ACTIONS(2723), - [anon_sym_const] = ACTIONS(2723), - [anon_sym_constexpr] = ACTIONS(2723), - [anon_sym_volatile] = ACTIONS(2723), - [anon_sym_restrict] = ACTIONS(2723), - [anon_sym___restrict__] = ACTIONS(2723), - [anon_sym__Atomic] = ACTIONS(2723), - [anon_sym__Noreturn] = ACTIONS(2723), - [anon_sym_noreturn] = ACTIONS(2723), - [anon_sym__Nonnull] = ACTIONS(2723), - [anon_sym_mutable] = ACTIONS(2723), - [anon_sym_constinit] = ACTIONS(2723), - [anon_sym_consteval] = ACTIONS(2723), - [anon_sym_alignas] = ACTIONS(2723), - [anon_sym__Alignas] = ACTIONS(2723), - [sym_primitive_type] = ACTIONS(2723), - [anon_sym_enum] = ACTIONS(2723), - [anon_sym_class] = ACTIONS(2723), - [anon_sym_struct] = ACTIONS(2723), - [anon_sym_union] = ACTIONS(2723), - [anon_sym_if] = ACTIONS(2723), - [anon_sym_else] = ACTIONS(2723), - [anon_sym_switch] = ACTIONS(2723), - [anon_sym_case] = ACTIONS(2723), - [anon_sym_default] = ACTIONS(2723), - [anon_sym_while] = ACTIONS(2723), - [anon_sym_do] = ACTIONS(2723), - [anon_sym_for] = ACTIONS(2723), - [anon_sym_return] = ACTIONS(2723), - [anon_sym_break] = ACTIONS(2723), - [anon_sym_continue] = ACTIONS(2723), - [anon_sym_goto] = ACTIONS(2723), - [anon_sym___try] = ACTIONS(2723), - [anon_sym___leave] = ACTIONS(2723), - [anon_sym_not] = ACTIONS(2723), - [anon_sym_compl] = ACTIONS(2723), - [anon_sym_DASH_DASH] = ACTIONS(2725), - [anon_sym_PLUS_PLUS] = ACTIONS(2725), - [anon_sym_sizeof] = ACTIONS(2723), - [anon_sym___alignof__] = ACTIONS(2723), - [anon_sym___alignof] = ACTIONS(2723), - [anon_sym__alignof] = ACTIONS(2723), - [anon_sym_alignof] = ACTIONS(2723), - [anon_sym__Alignof] = ACTIONS(2723), - [anon_sym_offsetof] = ACTIONS(2723), - [anon_sym__Generic] = ACTIONS(2723), - [anon_sym_asm] = ACTIONS(2723), - [anon_sym___asm__] = ACTIONS(2723), - [anon_sym___asm] = ACTIONS(2723), - [sym_number_literal] = ACTIONS(2725), - [anon_sym_L_SQUOTE] = ACTIONS(2725), - [anon_sym_u_SQUOTE] = ACTIONS(2725), - [anon_sym_U_SQUOTE] = ACTIONS(2725), - [anon_sym_u8_SQUOTE] = ACTIONS(2725), - [anon_sym_SQUOTE] = ACTIONS(2725), - [anon_sym_L_DQUOTE] = ACTIONS(2725), - [anon_sym_u_DQUOTE] = ACTIONS(2725), - [anon_sym_U_DQUOTE] = ACTIONS(2725), - [anon_sym_u8_DQUOTE] = ACTIONS(2725), - [anon_sym_DQUOTE] = ACTIONS(2725), - [sym_true] = ACTIONS(2723), - [sym_false] = ACTIONS(2723), - [anon_sym_NULL] = ACTIONS(2723), - [anon_sym_nullptr] = ACTIONS(2723), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2723), - [anon_sym_decltype] = ACTIONS(2723), - [anon_sym_explicit] = ACTIONS(2723), - [anon_sym_typename] = ACTIONS(2723), - [anon_sym_template] = ACTIONS(2723), - [anon_sym_operator] = ACTIONS(2723), - [anon_sym_try] = ACTIONS(2723), - [anon_sym_delete] = ACTIONS(2723), - [anon_sym_throw] = ACTIONS(2723), - [anon_sym_namespace] = ACTIONS(2723), - [anon_sym_static_assert] = ACTIONS(2723), - [anon_sym_concept] = ACTIONS(2723), - [anon_sym_co_return] = ACTIONS(2723), - [anon_sym_co_yield] = ACTIONS(2723), - [anon_sym_R_DQUOTE] = ACTIONS(2725), - [anon_sym_LR_DQUOTE] = ACTIONS(2725), - [anon_sym_uR_DQUOTE] = ACTIONS(2725), - [anon_sym_UR_DQUOTE] = ACTIONS(2725), - [anon_sym_u8R_DQUOTE] = ACTIONS(2725), - [anon_sym_co_await] = ACTIONS(2723), - [anon_sym_new] = ACTIONS(2723), - [anon_sym_requires] = ACTIONS(2723), - [sym_this] = ACTIONS(2723), + [sym_identifier] = ACTIONS(1940), + [aux_sym_preproc_include_token1] = ACTIONS(1940), + [aux_sym_preproc_def_token1] = ACTIONS(1940), + [anon_sym_COMMA] = ACTIONS(2729), + [aux_sym_preproc_if_token1] = ACTIONS(1940), + [aux_sym_preproc_if_token2] = ACTIONS(1940), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1940), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1940), + [aux_sym_preproc_else_token1] = ACTIONS(1940), + [aux_sym_preproc_elif_token1] = ACTIONS(1940), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1940), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1940), + [sym_preproc_directive] = ACTIONS(1940), + [anon_sym_LPAREN2] = ACTIONS(1938), + [anon_sym_BANG] = ACTIONS(1938), + [anon_sym_TILDE] = ACTIONS(1938), + [anon_sym_DASH] = ACTIONS(1940), + [anon_sym_PLUS] = ACTIONS(1940), + [anon_sym_STAR] = ACTIONS(1938), + [anon_sym_AMP_AMP] = ACTIONS(1938), + [anon_sym_AMP] = ACTIONS(1940), + [anon_sym_SEMI] = ACTIONS(2729), + [anon_sym___extension__] = ACTIONS(1940), + [anon_sym_typedef] = ACTIONS(1940), + [anon_sym_virtual] = ACTIONS(1940), + [anon_sym_extern] = ACTIONS(1940), + [anon_sym___attribute__] = ACTIONS(1940), + [anon_sym___attribute] = ACTIONS(1940), + [anon_sym_using] = ACTIONS(1940), + [anon_sym_COLON_COLON] = ACTIONS(1938), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1938), + [anon_sym___declspec] = ACTIONS(1940), + [anon_sym___based] = ACTIONS(1940), + [anon_sym___cdecl] = ACTIONS(1940), + [anon_sym___clrcall] = ACTIONS(1940), + [anon_sym___stdcall] = ACTIONS(1940), + [anon_sym___fastcall] = ACTIONS(1940), + [anon_sym___thiscall] = ACTIONS(1940), + [anon_sym___vectorcall] = ACTIONS(1940), + [anon_sym_LBRACE] = ACTIONS(1938), + [anon_sym_signed] = ACTIONS(1940), + [anon_sym_unsigned] = ACTIONS(1940), + [anon_sym_long] = ACTIONS(1940), + [anon_sym_short] = ACTIONS(1940), + [anon_sym_LBRACK] = ACTIONS(1940), + [anon_sym_static] = ACTIONS(1940), + [anon_sym_register] = ACTIONS(1940), + [anon_sym_inline] = ACTIONS(1940), + [anon_sym___inline] = ACTIONS(1940), + [anon_sym___inline__] = ACTIONS(1940), + [anon_sym___forceinline] = ACTIONS(1940), + [anon_sym_thread_local] = ACTIONS(1940), + [anon_sym___thread] = ACTIONS(1940), + [anon_sym_const] = ACTIONS(1940), + [anon_sym_constexpr] = ACTIONS(1940), + [anon_sym_volatile] = ACTIONS(1940), + [anon_sym_restrict] = ACTIONS(1940), + [anon_sym___restrict__] = ACTIONS(1940), + [anon_sym__Atomic] = ACTIONS(1940), + [anon_sym__Noreturn] = ACTIONS(1940), + [anon_sym_noreturn] = ACTIONS(1940), + [anon_sym__Nonnull] = ACTIONS(1940), + [anon_sym_mutable] = ACTIONS(1940), + [anon_sym_constinit] = ACTIONS(1940), + [anon_sym_consteval] = ACTIONS(1940), + [anon_sym_alignas] = ACTIONS(1940), + [anon_sym__Alignas] = ACTIONS(1940), + [sym_primitive_type] = ACTIONS(1940), + [anon_sym_enum] = ACTIONS(1940), + [anon_sym_class] = ACTIONS(1940), + [anon_sym_struct] = ACTIONS(1940), + [anon_sym_union] = ACTIONS(1940), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_switch] = ACTIONS(1940), + [anon_sym_case] = ACTIONS(1940), + [anon_sym_default] = ACTIONS(1940), + [anon_sym_while] = ACTIONS(1940), + [anon_sym_do] = ACTIONS(1940), + [anon_sym_for] = ACTIONS(1940), + [anon_sym_return] = ACTIONS(1940), + [anon_sym_break] = ACTIONS(1940), + [anon_sym_continue] = ACTIONS(1940), + [anon_sym_goto] = ACTIONS(1940), + [anon_sym___try] = ACTIONS(1940), + [anon_sym___leave] = ACTIONS(1940), + [anon_sym_not] = ACTIONS(1940), + [anon_sym_compl] = ACTIONS(1940), + [anon_sym_DASH_DASH] = ACTIONS(1938), + [anon_sym_PLUS_PLUS] = ACTIONS(1938), + [anon_sym_sizeof] = ACTIONS(1940), + [anon_sym___alignof__] = ACTIONS(1940), + [anon_sym___alignof] = ACTIONS(1940), + [anon_sym__alignof] = ACTIONS(1940), + [anon_sym_alignof] = ACTIONS(1940), + [anon_sym__Alignof] = ACTIONS(1940), + [anon_sym_offsetof] = ACTIONS(1940), + [anon_sym__Generic] = ACTIONS(1940), + [anon_sym_asm] = ACTIONS(1940), + [anon_sym___asm__] = ACTIONS(1940), + [anon_sym___asm] = ACTIONS(1940), + [sym_number_literal] = ACTIONS(1938), + [anon_sym_L_SQUOTE] = ACTIONS(1938), + [anon_sym_u_SQUOTE] = ACTIONS(1938), + [anon_sym_U_SQUOTE] = ACTIONS(1938), + [anon_sym_u8_SQUOTE] = ACTIONS(1938), + [anon_sym_SQUOTE] = ACTIONS(1938), + [anon_sym_L_DQUOTE] = ACTIONS(1938), + [anon_sym_u_DQUOTE] = ACTIONS(1938), + [anon_sym_U_DQUOTE] = ACTIONS(1938), + [anon_sym_u8_DQUOTE] = ACTIONS(1938), + [anon_sym_DQUOTE] = ACTIONS(1938), + [sym_true] = ACTIONS(1940), + [sym_false] = ACTIONS(1940), + [anon_sym_NULL] = ACTIONS(1940), + [anon_sym_nullptr] = ACTIONS(1940), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1940), + [anon_sym_decltype] = ACTIONS(1940), + [anon_sym_explicit] = ACTIONS(1940), + [anon_sym_typename] = ACTIONS(1940), + [anon_sym_template] = ACTIONS(1940), + [anon_sym_operator] = ACTIONS(1940), + [anon_sym_try] = ACTIONS(1940), + [anon_sym_delete] = ACTIONS(1940), + [anon_sym_throw] = ACTIONS(1940), + [anon_sym_namespace] = ACTIONS(1940), + [anon_sym_static_assert] = ACTIONS(1940), + [anon_sym_concept] = ACTIONS(1940), + [anon_sym_co_return] = ACTIONS(1940), + [anon_sym_co_yield] = ACTIONS(1940), + [anon_sym_R_DQUOTE] = ACTIONS(1938), + [anon_sym_LR_DQUOTE] = ACTIONS(1938), + [anon_sym_uR_DQUOTE] = ACTIONS(1938), + [anon_sym_UR_DQUOTE] = ACTIONS(1938), + [anon_sym_u8R_DQUOTE] = ACTIONS(1938), + [anon_sym_co_await] = ACTIONS(1940), + [anon_sym_new] = ACTIONS(1940), + [anon_sym_requires] = ACTIONS(1940), + [sym_this] = ACTIONS(1940), }, [270] = { - [sym_identifier] = ACTIONS(2727), - [aux_sym_preproc_include_token1] = ACTIONS(2727), - [aux_sym_preproc_def_token1] = ACTIONS(2727), - [aux_sym_preproc_if_token1] = ACTIONS(2727), - [aux_sym_preproc_if_token2] = ACTIONS(2727), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2727), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2727), - [aux_sym_preproc_else_token1] = ACTIONS(2727), - [aux_sym_preproc_elif_token1] = ACTIONS(2727), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2727), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2727), - [sym_preproc_directive] = ACTIONS(2727), - [anon_sym_LPAREN2] = ACTIONS(2729), - [anon_sym_BANG] = ACTIONS(2729), - [anon_sym_TILDE] = ACTIONS(2729), - [anon_sym_DASH] = ACTIONS(2727), - [anon_sym_PLUS] = ACTIONS(2727), - [anon_sym_STAR] = ACTIONS(2729), - [anon_sym_AMP_AMP] = ACTIONS(2729), - [anon_sym_AMP] = ACTIONS(2727), - [anon_sym_SEMI] = ACTIONS(2729), - [anon_sym___extension__] = ACTIONS(2727), - [anon_sym_typedef] = ACTIONS(2727), - [anon_sym_virtual] = ACTIONS(2727), - [anon_sym_extern] = ACTIONS(2727), - [anon_sym___attribute__] = ACTIONS(2727), - [anon_sym___attribute] = ACTIONS(2727), - [anon_sym_using] = ACTIONS(2727), - [anon_sym_COLON_COLON] = ACTIONS(2729), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2729), - [anon_sym___declspec] = ACTIONS(2727), - [anon_sym___based] = ACTIONS(2727), - [anon_sym___cdecl] = ACTIONS(2727), - [anon_sym___clrcall] = ACTIONS(2727), - [anon_sym___stdcall] = ACTIONS(2727), - [anon_sym___fastcall] = ACTIONS(2727), - [anon_sym___thiscall] = ACTIONS(2727), - [anon_sym___vectorcall] = ACTIONS(2727), - [anon_sym_LBRACE] = ACTIONS(2729), - [anon_sym_signed] = ACTIONS(2727), - [anon_sym_unsigned] = ACTIONS(2727), - [anon_sym_long] = ACTIONS(2727), - [anon_sym_short] = ACTIONS(2727), - [anon_sym_LBRACK] = ACTIONS(2727), - [anon_sym_static] = ACTIONS(2727), - [anon_sym_register] = ACTIONS(2727), - [anon_sym_inline] = ACTIONS(2727), - [anon_sym___inline] = ACTIONS(2727), - [anon_sym___inline__] = ACTIONS(2727), - [anon_sym___forceinline] = ACTIONS(2727), - [anon_sym_thread_local] = ACTIONS(2727), - [anon_sym___thread] = ACTIONS(2727), - [anon_sym_const] = ACTIONS(2727), - [anon_sym_constexpr] = ACTIONS(2727), - [anon_sym_volatile] = ACTIONS(2727), - [anon_sym_restrict] = ACTIONS(2727), - [anon_sym___restrict__] = ACTIONS(2727), - [anon_sym__Atomic] = ACTIONS(2727), - [anon_sym__Noreturn] = ACTIONS(2727), - [anon_sym_noreturn] = ACTIONS(2727), - [anon_sym__Nonnull] = ACTIONS(2727), - [anon_sym_mutable] = ACTIONS(2727), - [anon_sym_constinit] = ACTIONS(2727), - [anon_sym_consteval] = ACTIONS(2727), - [anon_sym_alignas] = ACTIONS(2727), - [anon_sym__Alignas] = ACTIONS(2727), - [sym_primitive_type] = ACTIONS(2727), - [anon_sym_enum] = ACTIONS(2727), - [anon_sym_class] = ACTIONS(2727), - [anon_sym_struct] = ACTIONS(2727), - [anon_sym_union] = ACTIONS(2727), - [anon_sym_if] = ACTIONS(2727), - [anon_sym_else] = ACTIONS(2727), - [anon_sym_switch] = ACTIONS(2727), - [anon_sym_case] = ACTIONS(2727), - [anon_sym_default] = ACTIONS(2727), - [anon_sym_while] = ACTIONS(2727), - [anon_sym_do] = ACTIONS(2727), - [anon_sym_for] = ACTIONS(2727), - [anon_sym_return] = ACTIONS(2727), - [anon_sym_break] = ACTIONS(2727), - [anon_sym_continue] = ACTIONS(2727), - [anon_sym_goto] = ACTIONS(2727), - [anon_sym___try] = ACTIONS(2727), - [anon_sym___leave] = ACTIONS(2727), - [anon_sym_not] = ACTIONS(2727), - [anon_sym_compl] = ACTIONS(2727), - [anon_sym_DASH_DASH] = ACTIONS(2729), - [anon_sym_PLUS_PLUS] = ACTIONS(2729), - [anon_sym_sizeof] = ACTIONS(2727), - [anon_sym___alignof__] = ACTIONS(2727), - [anon_sym___alignof] = ACTIONS(2727), - [anon_sym__alignof] = ACTIONS(2727), - [anon_sym_alignof] = ACTIONS(2727), - [anon_sym__Alignof] = ACTIONS(2727), - [anon_sym_offsetof] = ACTIONS(2727), - [anon_sym__Generic] = ACTIONS(2727), - [anon_sym_asm] = ACTIONS(2727), - [anon_sym___asm__] = ACTIONS(2727), - [anon_sym___asm] = ACTIONS(2727), - [sym_number_literal] = ACTIONS(2729), - [anon_sym_L_SQUOTE] = ACTIONS(2729), - [anon_sym_u_SQUOTE] = ACTIONS(2729), - [anon_sym_U_SQUOTE] = ACTIONS(2729), - [anon_sym_u8_SQUOTE] = ACTIONS(2729), - [anon_sym_SQUOTE] = ACTIONS(2729), - [anon_sym_L_DQUOTE] = ACTIONS(2729), - [anon_sym_u_DQUOTE] = ACTIONS(2729), - [anon_sym_U_DQUOTE] = ACTIONS(2729), - [anon_sym_u8_DQUOTE] = ACTIONS(2729), - [anon_sym_DQUOTE] = ACTIONS(2729), - [sym_true] = ACTIONS(2727), - [sym_false] = ACTIONS(2727), - [anon_sym_NULL] = ACTIONS(2727), - [anon_sym_nullptr] = ACTIONS(2727), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2727), - [anon_sym_decltype] = ACTIONS(2727), - [anon_sym_explicit] = ACTIONS(2727), - [anon_sym_typename] = ACTIONS(2727), - [anon_sym_template] = ACTIONS(2727), - [anon_sym_operator] = ACTIONS(2727), - [anon_sym_try] = ACTIONS(2727), - [anon_sym_delete] = ACTIONS(2727), - [anon_sym_throw] = ACTIONS(2727), - [anon_sym_namespace] = ACTIONS(2727), - [anon_sym_static_assert] = ACTIONS(2727), - [anon_sym_concept] = ACTIONS(2727), - [anon_sym_co_return] = ACTIONS(2727), - [anon_sym_co_yield] = ACTIONS(2727), - [anon_sym_R_DQUOTE] = ACTIONS(2729), - [anon_sym_LR_DQUOTE] = ACTIONS(2729), - [anon_sym_uR_DQUOTE] = ACTIONS(2729), - [anon_sym_UR_DQUOTE] = ACTIONS(2729), - [anon_sym_u8R_DQUOTE] = ACTIONS(2729), - [anon_sym_co_await] = ACTIONS(2727), - [anon_sym_new] = ACTIONS(2727), - [anon_sym_requires] = ACTIONS(2727), - [sym_this] = ACTIONS(2727), + [sym_identifier] = ACTIONS(2731), + [aux_sym_preproc_include_token1] = ACTIONS(2731), + [aux_sym_preproc_def_token1] = ACTIONS(2731), + [aux_sym_preproc_if_token1] = ACTIONS(2731), + [aux_sym_preproc_if_token2] = ACTIONS(2731), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2731), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2731), + [aux_sym_preproc_else_token1] = ACTIONS(2731), + [aux_sym_preproc_elif_token1] = ACTIONS(2731), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2731), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2731), + [sym_preproc_directive] = ACTIONS(2731), + [anon_sym_LPAREN2] = ACTIONS(2733), + [anon_sym_BANG] = ACTIONS(2733), + [anon_sym_TILDE] = ACTIONS(2733), + [anon_sym_DASH] = ACTIONS(2731), + [anon_sym_PLUS] = ACTIONS(2731), + [anon_sym_STAR] = ACTIONS(2733), + [anon_sym_AMP_AMP] = ACTIONS(2733), + [anon_sym_AMP] = ACTIONS(2731), + [anon_sym_SEMI] = ACTIONS(2733), + [anon_sym___extension__] = ACTIONS(2731), + [anon_sym_typedef] = ACTIONS(2731), + [anon_sym_virtual] = ACTIONS(2731), + [anon_sym_extern] = ACTIONS(2731), + [anon_sym___attribute__] = ACTIONS(2731), + [anon_sym___attribute] = ACTIONS(2731), + [anon_sym_using] = ACTIONS(2731), + [anon_sym_COLON_COLON] = ACTIONS(2733), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2733), + [anon_sym___declspec] = ACTIONS(2731), + [anon_sym___based] = ACTIONS(2731), + [anon_sym___cdecl] = ACTIONS(2731), + [anon_sym___clrcall] = ACTIONS(2731), + [anon_sym___stdcall] = ACTIONS(2731), + [anon_sym___fastcall] = ACTIONS(2731), + [anon_sym___thiscall] = ACTIONS(2731), + [anon_sym___vectorcall] = ACTIONS(2731), + [anon_sym_LBRACE] = ACTIONS(2733), + [anon_sym_signed] = ACTIONS(2731), + [anon_sym_unsigned] = ACTIONS(2731), + [anon_sym_long] = ACTIONS(2731), + [anon_sym_short] = ACTIONS(2731), + [anon_sym_LBRACK] = ACTIONS(2731), + [anon_sym_static] = ACTIONS(2731), + [anon_sym_register] = ACTIONS(2731), + [anon_sym_inline] = ACTIONS(2731), + [anon_sym___inline] = ACTIONS(2731), + [anon_sym___inline__] = ACTIONS(2731), + [anon_sym___forceinline] = ACTIONS(2731), + [anon_sym_thread_local] = ACTIONS(2731), + [anon_sym___thread] = ACTIONS(2731), + [anon_sym_const] = ACTIONS(2731), + [anon_sym_constexpr] = ACTIONS(2731), + [anon_sym_volatile] = ACTIONS(2731), + [anon_sym_restrict] = ACTIONS(2731), + [anon_sym___restrict__] = ACTIONS(2731), + [anon_sym__Atomic] = ACTIONS(2731), + [anon_sym__Noreturn] = ACTIONS(2731), + [anon_sym_noreturn] = ACTIONS(2731), + [anon_sym__Nonnull] = ACTIONS(2731), + [anon_sym_mutable] = ACTIONS(2731), + [anon_sym_constinit] = ACTIONS(2731), + [anon_sym_consteval] = ACTIONS(2731), + [anon_sym_alignas] = ACTIONS(2731), + [anon_sym__Alignas] = ACTIONS(2731), + [sym_primitive_type] = ACTIONS(2731), + [anon_sym_enum] = ACTIONS(2731), + [anon_sym_class] = ACTIONS(2731), + [anon_sym_struct] = ACTIONS(2731), + [anon_sym_union] = ACTIONS(2731), + [anon_sym_if] = ACTIONS(2731), + [anon_sym_else] = ACTIONS(2731), + [anon_sym_switch] = ACTIONS(2731), + [anon_sym_case] = ACTIONS(2731), + [anon_sym_default] = ACTIONS(2731), + [anon_sym_while] = ACTIONS(2731), + [anon_sym_do] = ACTIONS(2731), + [anon_sym_for] = ACTIONS(2731), + [anon_sym_return] = ACTIONS(2731), + [anon_sym_break] = ACTIONS(2731), + [anon_sym_continue] = ACTIONS(2731), + [anon_sym_goto] = ACTIONS(2731), + [anon_sym___try] = ACTIONS(2731), + [anon_sym___leave] = ACTIONS(2731), + [anon_sym_not] = ACTIONS(2731), + [anon_sym_compl] = ACTIONS(2731), + [anon_sym_DASH_DASH] = ACTIONS(2733), + [anon_sym_PLUS_PLUS] = ACTIONS(2733), + [anon_sym_sizeof] = ACTIONS(2731), + [anon_sym___alignof__] = ACTIONS(2731), + [anon_sym___alignof] = ACTIONS(2731), + [anon_sym__alignof] = ACTIONS(2731), + [anon_sym_alignof] = ACTIONS(2731), + [anon_sym__Alignof] = ACTIONS(2731), + [anon_sym_offsetof] = ACTIONS(2731), + [anon_sym__Generic] = ACTIONS(2731), + [anon_sym_asm] = ACTIONS(2731), + [anon_sym___asm__] = ACTIONS(2731), + [anon_sym___asm] = ACTIONS(2731), + [sym_number_literal] = ACTIONS(2733), + [anon_sym_L_SQUOTE] = ACTIONS(2733), + [anon_sym_u_SQUOTE] = ACTIONS(2733), + [anon_sym_U_SQUOTE] = ACTIONS(2733), + [anon_sym_u8_SQUOTE] = ACTIONS(2733), + [anon_sym_SQUOTE] = ACTIONS(2733), + [anon_sym_L_DQUOTE] = ACTIONS(2733), + [anon_sym_u_DQUOTE] = ACTIONS(2733), + [anon_sym_U_DQUOTE] = ACTIONS(2733), + [anon_sym_u8_DQUOTE] = ACTIONS(2733), + [anon_sym_DQUOTE] = ACTIONS(2733), + [sym_true] = ACTIONS(2731), + [sym_false] = ACTIONS(2731), + [anon_sym_NULL] = ACTIONS(2731), + [anon_sym_nullptr] = ACTIONS(2731), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2731), + [anon_sym_decltype] = ACTIONS(2731), + [anon_sym_explicit] = ACTIONS(2731), + [anon_sym_typename] = ACTIONS(2731), + [anon_sym_template] = ACTIONS(2731), + [anon_sym_operator] = ACTIONS(2731), + [anon_sym_try] = ACTIONS(2731), + [anon_sym_delete] = ACTIONS(2731), + [anon_sym_throw] = ACTIONS(2731), + [anon_sym_namespace] = ACTIONS(2731), + [anon_sym_static_assert] = ACTIONS(2731), + [anon_sym_concept] = ACTIONS(2731), + [anon_sym_co_return] = ACTIONS(2731), + [anon_sym_co_yield] = ACTIONS(2731), + [anon_sym_R_DQUOTE] = ACTIONS(2733), + [anon_sym_LR_DQUOTE] = ACTIONS(2733), + [anon_sym_uR_DQUOTE] = ACTIONS(2733), + [anon_sym_UR_DQUOTE] = ACTIONS(2733), + [anon_sym_u8R_DQUOTE] = ACTIONS(2733), + [anon_sym_co_await] = ACTIONS(2731), + [anon_sym_new] = ACTIONS(2731), + [anon_sym_requires] = ACTIONS(2731), + [sym_this] = ACTIONS(2731), }, [271] = { [sym_identifier] = ACTIONS(2731), @@ -83418,6 +83701,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(2739), }, [274] = { + [ts_builtin_sym_end] = ACTIONS(2613), + [sym_identifier] = ACTIONS(2611), + [aux_sym_preproc_include_token1] = ACTIONS(2611), + [aux_sym_preproc_def_token1] = ACTIONS(2611), + [aux_sym_preproc_if_token1] = ACTIONS(2611), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2611), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2611), + [sym_preproc_directive] = ACTIONS(2611), + [anon_sym_LPAREN2] = ACTIONS(2613), + [anon_sym_BANG] = ACTIONS(2613), + [anon_sym_TILDE] = ACTIONS(2613), + [anon_sym_DASH] = ACTIONS(2611), + [anon_sym_PLUS] = ACTIONS(2611), + [anon_sym_STAR] = ACTIONS(2613), + [anon_sym_AMP_AMP] = ACTIONS(2613), + [anon_sym_AMP] = ACTIONS(2611), + [anon_sym_SEMI] = ACTIONS(2613), + [anon_sym___extension__] = ACTIONS(2611), + [anon_sym_typedef] = ACTIONS(2611), + [anon_sym_virtual] = ACTIONS(2611), + [anon_sym_extern] = ACTIONS(2611), + [anon_sym___attribute__] = ACTIONS(2611), + [anon_sym___attribute] = ACTIONS(2611), + [anon_sym_using] = ACTIONS(2611), + [anon_sym_COLON_COLON] = ACTIONS(2613), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2613), + [anon_sym___declspec] = ACTIONS(2611), + [anon_sym___based] = ACTIONS(2611), + [anon_sym___cdecl] = ACTIONS(2611), + [anon_sym___clrcall] = ACTIONS(2611), + [anon_sym___stdcall] = ACTIONS(2611), + [anon_sym___fastcall] = ACTIONS(2611), + [anon_sym___thiscall] = ACTIONS(2611), + [anon_sym___vectorcall] = ACTIONS(2611), + [anon_sym_LBRACE] = ACTIONS(2613), + [anon_sym_signed] = ACTIONS(2611), + [anon_sym_unsigned] = ACTIONS(2611), + [anon_sym_long] = ACTIONS(2611), + [anon_sym_short] = ACTIONS(2611), + [anon_sym_LBRACK] = ACTIONS(2611), + [anon_sym_static] = ACTIONS(2611), + [anon_sym_register] = ACTIONS(2611), + [anon_sym_inline] = ACTIONS(2611), + [anon_sym___inline] = ACTIONS(2611), + [anon_sym___inline__] = ACTIONS(2611), + [anon_sym___forceinline] = ACTIONS(2611), + [anon_sym_thread_local] = ACTIONS(2611), + [anon_sym___thread] = ACTIONS(2611), + [anon_sym_const] = ACTIONS(2611), + [anon_sym_constexpr] = ACTIONS(2611), + [anon_sym_volatile] = ACTIONS(2611), + [anon_sym_restrict] = ACTIONS(2611), + [anon_sym___restrict__] = ACTIONS(2611), + [anon_sym__Atomic] = ACTIONS(2611), + [anon_sym__Noreturn] = ACTIONS(2611), + [anon_sym_noreturn] = ACTIONS(2611), + [anon_sym__Nonnull] = ACTIONS(2611), + [anon_sym_mutable] = ACTIONS(2611), + [anon_sym_constinit] = ACTIONS(2611), + [anon_sym_consteval] = ACTIONS(2611), + [anon_sym_alignas] = ACTIONS(2611), + [anon_sym__Alignas] = ACTIONS(2611), + [sym_primitive_type] = ACTIONS(2611), + [anon_sym_enum] = ACTIONS(2611), + [anon_sym_class] = ACTIONS(2611), + [anon_sym_struct] = ACTIONS(2611), + [anon_sym_union] = ACTIONS(2611), + [anon_sym_if] = ACTIONS(2611), + [anon_sym_else] = ACTIONS(2611), + [anon_sym_switch] = ACTIONS(2611), + [anon_sym_case] = ACTIONS(2611), + [anon_sym_default] = ACTIONS(2611), + [anon_sym_while] = ACTIONS(2611), + [anon_sym_do] = ACTIONS(2611), + [anon_sym_for] = ACTIONS(2611), + [anon_sym_return] = ACTIONS(2611), + [anon_sym_break] = ACTIONS(2611), + [anon_sym_continue] = ACTIONS(2611), + [anon_sym_goto] = ACTIONS(2611), + [anon_sym___try] = ACTIONS(2611), + [anon_sym___leave] = ACTIONS(2611), + [anon_sym_not] = ACTIONS(2611), + [anon_sym_compl] = ACTIONS(2611), + [anon_sym_DASH_DASH] = ACTIONS(2613), + [anon_sym_PLUS_PLUS] = ACTIONS(2613), + [anon_sym_sizeof] = ACTIONS(2611), + [anon_sym___alignof__] = ACTIONS(2611), + [anon_sym___alignof] = ACTIONS(2611), + [anon_sym__alignof] = ACTIONS(2611), + [anon_sym_alignof] = ACTIONS(2611), + [anon_sym__Alignof] = ACTIONS(2611), + [anon_sym_offsetof] = ACTIONS(2611), + [anon_sym__Generic] = ACTIONS(2611), + [anon_sym_asm] = ACTIONS(2611), + [anon_sym___asm__] = ACTIONS(2611), + [anon_sym___asm] = ACTIONS(2611), + [sym_number_literal] = ACTIONS(2613), + [anon_sym_L_SQUOTE] = ACTIONS(2613), + [anon_sym_u_SQUOTE] = ACTIONS(2613), + [anon_sym_U_SQUOTE] = ACTIONS(2613), + [anon_sym_u8_SQUOTE] = ACTIONS(2613), + [anon_sym_SQUOTE] = ACTIONS(2613), + [anon_sym_L_DQUOTE] = ACTIONS(2613), + [anon_sym_u_DQUOTE] = ACTIONS(2613), + [anon_sym_U_DQUOTE] = ACTIONS(2613), + [anon_sym_u8_DQUOTE] = ACTIONS(2613), + [anon_sym_DQUOTE] = ACTIONS(2613), + [sym_true] = ACTIONS(2611), + [sym_false] = ACTIONS(2611), + [anon_sym_NULL] = ACTIONS(2611), + [anon_sym_nullptr] = ACTIONS(2611), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2611), + [anon_sym_decltype] = ACTIONS(2611), + [anon_sym_explicit] = ACTIONS(2611), + [anon_sym_typename] = ACTIONS(2611), + [anon_sym_export] = ACTIONS(2611), + [anon_sym_module] = ACTIONS(2611), + [anon_sym_import] = ACTIONS(2611), + [anon_sym_template] = ACTIONS(2611), + [anon_sym_operator] = ACTIONS(2611), + [anon_sym_try] = ACTIONS(2611), + [anon_sym_delete] = ACTIONS(2611), + [anon_sym_throw] = ACTIONS(2611), + [anon_sym_namespace] = ACTIONS(2611), + [anon_sym_static_assert] = ACTIONS(2611), + [anon_sym_concept] = ACTIONS(2611), + [anon_sym_co_return] = ACTIONS(2611), + [anon_sym_co_yield] = ACTIONS(2611), + [anon_sym_catch] = ACTIONS(2611), + [anon_sym_R_DQUOTE] = ACTIONS(2613), + [anon_sym_LR_DQUOTE] = ACTIONS(2613), + [anon_sym_uR_DQUOTE] = ACTIONS(2613), + [anon_sym_UR_DQUOTE] = ACTIONS(2613), + [anon_sym_u8R_DQUOTE] = ACTIONS(2613), + [anon_sym_co_await] = ACTIONS(2611), + [anon_sym_new] = ACTIONS(2611), + [anon_sym_requires] = ACTIONS(2611), + [sym_this] = ACTIONS(2611), + }, + [275] = { [sym_identifier] = ACTIONS(2743), [aux_sym_preproc_include_token1] = ACTIONS(2743), [aux_sym_preproc_def_token1] = ACTIONS(2743), @@ -83558,7 +83982,289 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2743), [sym_this] = ACTIONS(2743), }, - [275] = { + [276] = { + [sym_identifier] = ACTIONS(2743), + [aux_sym_preproc_include_token1] = ACTIONS(2743), + [aux_sym_preproc_def_token1] = ACTIONS(2743), + [aux_sym_preproc_if_token1] = ACTIONS(2743), + [aux_sym_preproc_if_token2] = ACTIONS(2743), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2743), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2743), + [aux_sym_preproc_else_token1] = ACTIONS(2743), + [aux_sym_preproc_elif_token1] = ACTIONS(2743), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2743), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2743), + [sym_preproc_directive] = ACTIONS(2743), + [anon_sym_LPAREN2] = ACTIONS(2745), + [anon_sym_BANG] = ACTIONS(2745), + [anon_sym_TILDE] = ACTIONS(2745), + [anon_sym_DASH] = ACTIONS(2743), + [anon_sym_PLUS] = ACTIONS(2743), + [anon_sym_STAR] = ACTIONS(2745), + [anon_sym_AMP_AMP] = ACTIONS(2745), + [anon_sym_AMP] = ACTIONS(2743), + [anon_sym_SEMI] = ACTIONS(2745), + [anon_sym___extension__] = ACTIONS(2743), + [anon_sym_typedef] = ACTIONS(2743), + [anon_sym_virtual] = ACTIONS(2743), + [anon_sym_extern] = ACTIONS(2743), + [anon_sym___attribute__] = ACTIONS(2743), + [anon_sym___attribute] = ACTIONS(2743), + [anon_sym_using] = ACTIONS(2743), + [anon_sym_COLON_COLON] = ACTIONS(2745), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2745), + [anon_sym___declspec] = ACTIONS(2743), + [anon_sym___based] = ACTIONS(2743), + [anon_sym___cdecl] = ACTIONS(2743), + [anon_sym___clrcall] = ACTIONS(2743), + [anon_sym___stdcall] = ACTIONS(2743), + [anon_sym___fastcall] = ACTIONS(2743), + [anon_sym___thiscall] = ACTIONS(2743), + [anon_sym___vectorcall] = ACTIONS(2743), + [anon_sym_LBRACE] = ACTIONS(2745), + [anon_sym_signed] = ACTIONS(2743), + [anon_sym_unsigned] = ACTIONS(2743), + [anon_sym_long] = ACTIONS(2743), + [anon_sym_short] = ACTIONS(2743), + [anon_sym_LBRACK] = ACTIONS(2743), + [anon_sym_static] = ACTIONS(2743), + [anon_sym_register] = ACTIONS(2743), + [anon_sym_inline] = ACTIONS(2743), + [anon_sym___inline] = ACTIONS(2743), + [anon_sym___inline__] = ACTIONS(2743), + [anon_sym___forceinline] = ACTIONS(2743), + [anon_sym_thread_local] = ACTIONS(2743), + [anon_sym___thread] = ACTIONS(2743), + [anon_sym_const] = ACTIONS(2743), + [anon_sym_constexpr] = ACTIONS(2743), + [anon_sym_volatile] = ACTIONS(2743), + [anon_sym_restrict] = ACTIONS(2743), + [anon_sym___restrict__] = ACTIONS(2743), + [anon_sym__Atomic] = ACTIONS(2743), + [anon_sym__Noreturn] = ACTIONS(2743), + [anon_sym_noreturn] = ACTIONS(2743), + [anon_sym__Nonnull] = ACTIONS(2743), + [anon_sym_mutable] = ACTIONS(2743), + [anon_sym_constinit] = ACTIONS(2743), + [anon_sym_consteval] = ACTIONS(2743), + [anon_sym_alignas] = ACTIONS(2743), + [anon_sym__Alignas] = ACTIONS(2743), + [sym_primitive_type] = ACTIONS(2743), + [anon_sym_enum] = ACTIONS(2743), + [anon_sym_class] = ACTIONS(2743), + [anon_sym_struct] = ACTIONS(2743), + [anon_sym_union] = ACTIONS(2743), + [anon_sym_if] = ACTIONS(2743), + [anon_sym_else] = ACTIONS(2743), + [anon_sym_switch] = ACTIONS(2743), + [anon_sym_case] = ACTIONS(2743), + [anon_sym_default] = ACTIONS(2743), + [anon_sym_while] = ACTIONS(2743), + [anon_sym_do] = ACTIONS(2743), + [anon_sym_for] = ACTIONS(2743), + [anon_sym_return] = ACTIONS(2743), + [anon_sym_break] = ACTIONS(2743), + [anon_sym_continue] = ACTIONS(2743), + [anon_sym_goto] = ACTIONS(2743), + [anon_sym___try] = ACTIONS(2743), + [anon_sym___leave] = ACTIONS(2743), + [anon_sym_not] = ACTIONS(2743), + [anon_sym_compl] = ACTIONS(2743), + [anon_sym_DASH_DASH] = ACTIONS(2745), + [anon_sym_PLUS_PLUS] = ACTIONS(2745), + [anon_sym_sizeof] = ACTIONS(2743), + [anon_sym___alignof__] = ACTIONS(2743), + [anon_sym___alignof] = ACTIONS(2743), + [anon_sym__alignof] = ACTIONS(2743), + [anon_sym_alignof] = ACTIONS(2743), + [anon_sym__Alignof] = ACTIONS(2743), + [anon_sym_offsetof] = ACTIONS(2743), + [anon_sym__Generic] = ACTIONS(2743), + [anon_sym_asm] = ACTIONS(2743), + [anon_sym___asm__] = ACTIONS(2743), + [anon_sym___asm] = ACTIONS(2743), + [sym_number_literal] = ACTIONS(2745), + [anon_sym_L_SQUOTE] = ACTIONS(2745), + [anon_sym_u_SQUOTE] = ACTIONS(2745), + [anon_sym_U_SQUOTE] = ACTIONS(2745), + [anon_sym_u8_SQUOTE] = ACTIONS(2745), + [anon_sym_SQUOTE] = ACTIONS(2745), + [anon_sym_L_DQUOTE] = ACTIONS(2745), + [anon_sym_u_DQUOTE] = ACTIONS(2745), + [anon_sym_U_DQUOTE] = ACTIONS(2745), + [anon_sym_u8_DQUOTE] = ACTIONS(2745), + [anon_sym_DQUOTE] = ACTIONS(2745), + [sym_true] = ACTIONS(2743), + [sym_false] = ACTIONS(2743), + [anon_sym_NULL] = ACTIONS(2743), + [anon_sym_nullptr] = ACTIONS(2743), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2743), + [anon_sym_decltype] = ACTIONS(2743), + [anon_sym_explicit] = ACTIONS(2743), + [anon_sym_typename] = ACTIONS(2743), + [anon_sym_template] = ACTIONS(2743), + [anon_sym_operator] = ACTIONS(2743), + [anon_sym_try] = ACTIONS(2743), + [anon_sym_delete] = ACTIONS(2743), + [anon_sym_throw] = ACTIONS(2743), + [anon_sym_namespace] = ACTIONS(2743), + [anon_sym_static_assert] = ACTIONS(2743), + [anon_sym_concept] = ACTIONS(2743), + [anon_sym_co_return] = ACTIONS(2743), + [anon_sym_co_yield] = ACTIONS(2743), + [anon_sym_R_DQUOTE] = ACTIONS(2745), + [anon_sym_LR_DQUOTE] = ACTIONS(2745), + [anon_sym_uR_DQUOTE] = ACTIONS(2745), + [anon_sym_UR_DQUOTE] = ACTIONS(2745), + [anon_sym_u8R_DQUOTE] = ACTIONS(2745), + [anon_sym_co_await] = ACTIONS(2743), + [anon_sym_new] = ACTIONS(2743), + [anon_sym_requires] = ACTIONS(2743), + [sym_this] = ACTIONS(2743), + }, + [277] = { + [sym_else_clause] = STATE(385), + [ts_builtin_sym_end] = ACTIONS(2617), + [sym_identifier] = ACTIONS(2615), + [aux_sym_preproc_include_token1] = ACTIONS(2615), + [aux_sym_preproc_def_token1] = ACTIONS(2615), + [aux_sym_preproc_if_token1] = ACTIONS(2615), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2615), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2615), + [sym_preproc_directive] = ACTIONS(2615), + [anon_sym_LPAREN2] = ACTIONS(2617), + [anon_sym_BANG] = ACTIONS(2617), + [anon_sym_TILDE] = ACTIONS(2617), + [anon_sym_DASH] = ACTIONS(2615), + [anon_sym_PLUS] = ACTIONS(2615), + [anon_sym_STAR] = ACTIONS(2617), + [anon_sym_AMP_AMP] = ACTIONS(2617), + [anon_sym_AMP] = ACTIONS(2615), + [anon_sym_SEMI] = ACTIONS(2617), + [anon_sym___extension__] = ACTIONS(2615), + [anon_sym_typedef] = ACTIONS(2615), + [anon_sym_virtual] = ACTIONS(2615), + [anon_sym_extern] = ACTIONS(2615), + [anon_sym___attribute__] = ACTIONS(2615), + [anon_sym___attribute] = ACTIONS(2615), + [anon_sym_using] = ACTIONS(2615), + [anon_sym_COLON_COLON] = ACTIONS(2617), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2617), + [anon_sym___declspec] = ACTIONS(2615), + [anon_sym___based] = ACTIONS(2615), + [anon_sym___cdecl] = ACTIONS(2615), + [anon_sym___clrcall] = ACTIONS(2615), + [anon_sym___stdcall] = ACTIONS(2615), + [anon_sym___fastcall] = ACTIONS(2615), + [anon_sym___thiscall] = ACTIONS(2615), + [anon_sym___vectorcall] = ACTIONS(2615), + [anon_sym_LBRACE] = ACTIONS(2617), + [anon_sym_signed] = ACTIONS(2615), + [anon_sym_unsigned] = ACTIONS(2615), + [anon_sym_long] = ACTIONS(2615), + [anon_sym_short] = ACTIONS(2615), + [anon_sym_LBRACK] = ACTIONS(2615), + [anon_sym_static] = ACTIONS(2615), + [anon_sym_register] = ACTIONS(2615), + [anon_sym_inline] = ACTIONS(2615), + [anon_sym___inline] = ACTIONS(2615), + [anon_sym___inline__] = ACTIONS(2615), + [anon_sym___forceinline] = ACTIONS(2615), + [anon_sym_thread_local] = ACTIONS(2615), + [anon_sym___thread] = ACTIONS(2615), + [anon_sym_const] = ACTIONS(2615), + [anon_sym_constexpr] = ACTIONS(2615), + [anon_sym_volatile] = ACTIONS(2615), + [anon_sym_restrict] = ACTIONS(2615), + [anon_sym___restrict__] = ACTIONS(2615), + [anon_sym__Atomic] = ACTIONS(2615), + [anon_sym__Noreturn] = ACTIONS(2615), + [anon_sym_noreturn] = ACTIONS(2615), + [anon_sym__Nonnull] = ACTIONS(2615), + [anon_sym_mutable] = ACTIONS(2615), + [anon_sym_constinit] = ACTIONS(2615), + [anon_sym_consteval] = ACTIONS(2615), + [anon_sym_alignas] = ACTIONS(2615), + [anon_sym__Alignas] = ACTIONS(2615), + [sym_primitive_type] = ACTIONS(2615), + [anon_sym_enum] = ACTIONS(2615), + [anon_sym_class] = ACTIONS(2615), + [anon_sym_struct] = ACTIONS(2615), + [anon_sym_union] = ACTIONS(2615), + [anon_sym_if] = ACTIONS(2615), + [anon_sym_else] = ACTIONS(2711), + [anon_sym_switch] = ACTIONS(2615), + [anon_sym_case] = ACTIONS(2615), + [anon_sym_default] = ACTIONS(2615), + [anon_sym_while] = ACTIONS(2615), + [anon_sym_do] = ACTIONS(2615), + [anon_sym_for] = ACTIONS(2615), + [anon_sym_return] = ACTIONS(2615), + [anon_sym_break] = ACTIONS(2615), + [anon_sym_continue] = ACTIONS(2615), + [anon_sym_goto] = ACTIONS(2615), + [anon_sym___try] = ACTIONS(2615), + [anon_sym___leave] = ACTIONS(2615), + [anon_sym_not] = ACTIONS(2615), + [anon_sym_compl] = ACTIONS(2615), + [anon_sym_DASH_DASH] = ACTIONS(2617), + [anon_sym_PLUS_PLUS] = ACTIONS(2617), + [anon_sym_sizeof] = ACTIONS(2615), + [anon_sym___alignof__] = ACTIONS(2615), + [anon_sym___alignof] = ACTIONS(2615), + [anon_sym__alignof] = ACTIONS(2615), + [anon_sym_alignof] = ACTIONS(2615), + [anon_sym__Alignof] = ACTIONS(2615), + [anon_sym_offsetof] = ACTIONS(2615), + [anon_sym__Generic] = ACTIONS(2615), + [anon_sym_asm] = ACTIONS(2615), + [anon_sym___asm__] = ACTIONS(2615), + [anon_sym___asm] = ACTIONS(2615), + [sym_number_literal] = ACTIONS(2617), + [anon_sym_L_SQUOTE] = ACTIONS(2617), + [anon_sym_u_SQUOTE] = ACTIONS(2617), + [anon_sym_U_SQUOTE] = ACTIONS(2617), + [anon_sym_u8_SQUOTE] = ACTIONS(2617), + [anon_sym_SQUOTE] = ACTIONS(2617), + [anon_sym_L_DQUOTE] = ACTIONS(2617), + [anon_sym_u_DQUOTE] = ACTIONS(2617), + [anon_sym_U_DQUOTE] = ACTIONS(2617), + [anon_sym_u8_DQUOTE] = ACTIONS(2617), + [anon_sym_DQUOTE] = ACTIONS(2617), + [sym_true] = ACTIONS(2615), + [sym_false] = ACTIONS(2615), + [anon_sym_NULL] = ACTIONS(2615), + [anon_sym_nullptr] = ACTIONS(2615), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2615), + [anon_sym_decltype] = ACTIONS(2615), + [anon_sym_explicit] = ACTIONS(2615), + [anon_sym_typename] = ACTIONS(2615), + [anon_sym_export] = ACTIONS(2615), + [anon_sym_module] = ACTIONS(2615), + [anon_sym_import] = ACTIONS(2615), + [anon_sym_template] = ACTIONS(2615), + [anon_sym_operator] = ACTIONS(2615), + [anon_sym_try] = ACTIONS(2615), + [anon_sym_delete] = ACTIONS(2615), + [anon_sym_throw] = ACTIONS(2615), + [anon_sym_namespace] = ACTIONS(2615), + [anon_sym_static_assert] = ACTIONS(2615), + [anon_sym_concept] = ACTIONS(2615), + [anon_sym_co_return] = ACTIONS(2615), + [anon_sym_co_yield] = ACTIONS(2615), + [anon_sym_R_DQUOTE] = ACTIONS(2617), + [anon_sym_LR_DQUOTE] = ACTIONS(2617), + [anon_sym_uR_DQUOTE] = ACTIONS(2617), + [anon_sym_UR_DQUOTE] = ACTIONS(2617), + [anon_sym_u8R_DQUOTE] = ACTIONS(2617), + [anon_sym_co_await] = ACTIONS(2615), + [anon_sym_new] = ACTIONS(2615), + [anon_sym_requires] = ACTIONS(2615), + [sym_this] = ACTIONS(2615), + }, + [278] = { [sym_identifier] = ACTIONS(2747), [aux_sym_preproc_include_token1] = ACTIONS(2747), [aux_sym_preproc_def_token1] = ACTIONS(2747), @@ -83699,7 +84405,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2747), [sym_this] = ACTIONS(2747), }, - [276] = { + [279] = { [sym_identifier] = ACTIONS(2751), [aux_sym_preproc_include_token1] = ACTIONS(2751), [aux_sym_preproc_def_token1] = ACTIONS(2751), @@ -83840,7 +84546,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2751), [sym_this] = ACTIONS(2751), }, - [277] = { + [280] = { [sym_identifier] = ACTIONS(2755), [aux_sym_preproc_include_token1] = ACTIONS(2755), [aux_sym_preproc_def_token1] = ACTIONS(2755), @@ -83981,7 +84687,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2755), [sym_this] = ACTIONS(2755), }, - [278] = { + [281] = { [sym_identifier] = ACTIONS(2759), [aux_sym_preproc_include_token1] = ACTIONS(2759), [aux_sym_preproc_def_token1] = ACTIONS(2759), @@ -84122,7 +84828,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2759), [sym_this] = ACTIONS(2759), }, - [279] = { + [282] = { [sym_identifier] = ACTIONS(2763), [aux_sym_preproc_include_token1] = ACTIONS(2763), [aux_sym_preproc_def_token1] = ACTIONS(2763), @@ -84263,148 +84969,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2763), [sym_this] = ACTIONS(2763), }, - [280] = { - [sym_identifier] = ACTIONS(2767), - [aux_sym_preproc_include_token1] = ACTIONS(2767), - [aux_sym_preproc_def_token1] = ACTIONS(2767), - [aux_sym_preproc_if_token1] = ACTIONS(2767), - [aux_sym_preproc_if_token2] = ACTIONS(2767), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2767), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2767), - [aux_sym_preproc_else_token1] = ACTIONS(2767), - [aux_sym_preproc_elif_token1] = ACTIONS(2767), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2767), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2767), - [sym_preproc_directive] = ACTIONS(2767), - [anon_sym_LPAREN2] = ACTIONS(2769), - [anon_sym_BANG] = ACTIONS(2769), - [anon_sym_TILDE] = ACTIONS(2769), - [anon_sym_DASH] = ACTIONS(2767), - [anon_sym_PLUS] = ACTIONS(2767), - [anon_sym_STAR] = ACTIONS(2769), - [anon_sym_AMP_AMP] = ACTIONS(2769), - [anon_sym_AMP] = ACTIONS(2767), - [anon_sym_SEMI] = ACTIONS(2769), - [anon_sym___extension__] = ACTIONS(2767), - [anon_sym_typedef] = ACTIONS(2767), - [anon_sym_virtual] = ACTIONS(2767), - [anon_sym_extern] = ACTIONS(2767), - [anon_sym___attribute__] = ACTIONS(2767), - [anon_sym___attribute] = ACTIONS(2767), - [anon_sym_using] = ACTIONS(2767), - [anon_sym_COLON_COLON] = ACTIONS(2769), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2769), - [anon_sym___declspec] = ACTIONS(2767), - [anon_sym___based] = ACTIONS(2767), - [anon_sym___cdecl] = ACTIONS(2767), - [anon_sym___clrcall] = ACTIONS(2767), - [anon_sym___stdcall] = ACTIONS(2767), - [anon_sym___fastcall] = ACTIONS(2767), - [anon_sym___thiscall] = ACTIONS(2767), - [anon_sym___vectorcall] = ACTIONS(2767), - [anon_sym_LBRACE] = ACTIONS(2769), - [anon_sym_signed] = ACTIONS(2767), - [anon_sym_unsigned] = ACTIONS(2767), - [anon_sym_long] = ACTIONS(2767), - [anon_sym_short] = ACTIONS(2767), - [anon_sym_LBRACK] = ACTIONS(2767), - [anon_sym_static] = ACTIONS(2767), - [anon_sym_register] = ACTIONS(2767), - [anon_sym_inline] = ACTIONS(2767), - [anon_sym___inline] = ACTIONS(2767), - [anon_sym___inline__] = ACTIONS(2767), - [anon_sym___forceinline] = ACTIONS(2767), - [anon_sym_thread_local] = ACTIONS(2767), - [anon_sym___thread] = ACTIONS(2767), - [anon_sym_const] = ACTIONS(2767), - [anon_sym_constexpr] = ACTIONS(2767), - [anon_sym_volatile] = ACTIONS(2767), - [anon_sym_restrict] = ACTIONS(2767), - [anon_sym___restrict__] = ACTIONS(2767), - [anon_sym__Atomic] = ACTIONS(2767), - [anon_sym__Noreturn] = ACTIONS(2767), - [anon_sym_noreturn] = ACTIONS(2767), - [anon_sym__Nonnull] = ACTIONS(2767), - [anon_sym_mutable] = ACTIONS(2767), - [anon_sym_constinit] = ACTIONS(2767), - [anon_sym_consteval] = ACTIONS(2767), - [anon_sym_alignas] = ACTIONS(2767), - [anon_sym__Alignas] = ACTIONS(2767), - [sym_primitive_type] = ACTIONS(2767), - [anon_sym_enum] = ACTIONS(2767), - [anon_sym_class] = ACTIONS(2767), - [anon_sym_struct] = ACTIONS(2767), - [anon_sym_union] = ACTIONS(2767), - [anon_sym_if] = ACTIONS(2767), - [anon_sym_else] = ACTIONS(2767), - [anon_sym_switch] = ACTIONS(2767), - [anon_sym_case] = ACTIONS(2767), - [anon_sym_default] = ACTIONS(2767), - [anon_sym_while] = ACTIONS(2767), - [anon_sym_do] = ACTIONS(2767), - [anon_sym_for] = ACTIONS(2767), - [anon_sym_return] = ACTIONS(2767), - [anon_sym_break] = ACTIONS(2767), - [anon_sym_continue] = ACTIONS(2767), - [anon_sym_goto] = ACTIONS(2767), - [anon_sym___try] = ACTIONS(2767), - [anon_sym___leave] = ACTIONS(2767), - [anon_sym_not] = ACTIONS(2767), - [anon_sym_compl] = ACTIONS(2767), - [anon_sym_DASH_DASH] = ACTIONS(2769), - [anon_sym_PLUS_PLUS] = ACTIONS(2769), - [anon_sym_sizeof] = ACTIONS(2767), - [anon_sym___alignof__] = ACTIONS(2767), - [anon_sym___alignof] = ACTIONS(2767), - [anon_sym__alignof] = ACTIONS(2767), - [anon_sym_alignof] = ACTIONS(2767), - [anon_sym__Alignof] = ACTIONS(2767), - [anon_sym_offsetof] = ACTIONS(2767), - [anon_sym__Generic] = ACTIONS(2767), - [anon_sym_asm] = ACTIONS(2767), - [anon_sym___asm__] = ACTIONS(2767), - [anon_sym___asm] = ACTIONS(2767), - [sym_number_literal] = ACTIONS(2769), - [anon_sym_L_SQUOTE] = ACTIONS(2769), - [anon_sym_u_SQUOTE] = ACTIONS(2769), - [anon_sym_U_SQUOTE] = ACTIONS(2769), - [anon_sym_u8_SQUOTE] = ACTIONS(2769), - [anon_sym_SQUOTE] = ACTIONS(2769), - [anon_sym_L_DQUOTE] = ACTIONS(2769), - [anon_sym_u_DQUOTE] = ACTIONS(2769), - [anon_sym_U_DQUOTE] = ACTIONS(2769), - [anon_sym_u8_DQUOTE] = ACTIONS(2769), - [anon_sym_DQUOTE] = ACTIONS(2769), - [sym_true] = ACTIONS(2767), - [sym_false] = ACTIONS(2767), - [anon_sym_NULL] = ACTIONS(2767), - [anon_sym_nullptr] = ACTIONS(2767), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2767), - [anon_sym_decltype] = ACTIONS(2767), - [anon_sym_explicit] = ACTIONS(2767), - [anon_sym_typename] = ACTIONS(2767), - [anon_sym_template] = ACTIONS(2767), - [anon_sym_operator] = ACTIONS(2767), - [anon_sym_try] = ACTIONS(2767), - [anon_sym_delete] = ACTIONS(2767), - [anon_sym_throw] = ACTIONS(2767), - [anon_sym_namespace] = ACTIONS(2767), - [anon_sym_static_assert] = ACTIONS(2767), - [anon_sym_concept] = ACTIONS(2767), - [anon_sym_co_return] = ACTIONS(2767), - [anon_sym_co_yield] = ACTIONS(2767), - [anon_sym_R_DQUOTE] = ACTIONS(2769), - [anon_sym_LR_DQUOTE] = ACTIONS(2769), - [anon_sym_uR_DQUOTE] = ACTIONS(2769), - [anon_sym_UR_DQUOTE] = ACTIONS(2769), - [anon_sym_u8R_DQUOTE] = ACTIONS(2769), - [anon_sym_co_await] = ACTIONS(2767), - [anon_sym_new] = ACTIONS(2767), - [anon_sym_requires] = ACTIONS(2767), - [sym_this] = ACTIONS(2767), - }, - [281] = { + [283] = { [sym_identifier] = ACTIONS(2767), [aux_sym_preproc_include_token1] = ACTIONS(2767), [aux_sym_preproc_def_token1] = ACTIONS(2767), @@ -84545,148 +85110,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2767), [sym_this] = ACTIONS(2767), }, - [282] = { - [ts_builtin_sym_end] = ACTIONS(2621), - [sym_identifier] = ACTIONS(2619), - [aux_sym_preproc_include_token1] = ACTIONS(2619), - [aux_sym_preproc_def_token1] = ACTIONS(2619), - [aux_sym_preproc_if_token1] = ACTIONS(2619), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2619), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2619), - [sym_preproc_directive] = ACTIONS(2619), - [anon_sym_LPAREN2] = ACTIONS(2621), - [anon_sym_BANG] = ACTIONS(2621), - [anon_sym_TILDE] = ACTIONS(2621), - [anon_sym_DASH] = ACTIONS(2619), - [anon_sym_PLUS] = ACTIONS(2619), - [anon_sym_STAR] = ACTIONS(2621), - [anon_sym_AMP_AMP] = ACTIONS(2621), - [anon_sym_AMP] = ACTIONS(2619), - [anon_sym_SEMI] = ACTIONS(2621), - [anon_sym___extension__] = ACTIONS(2619), - [anon_sym_typedef] = ACTIONS(2619), - [anon_sym_virtual] = ACTIONS(2619), - [anon_sym_extern] = ACTIONS(2619), - [anon_sym___attribute__] = ACTIONS(2619), - [anon_sym___attribute] = ACTIONS(2619), - [anon_sym_using] = ACTIONS(2619), - [anon_sym_COLON_COLON] = ACTIONS(2621), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2621), - [anon_sym___declspec] = ACTIONS(2619), - [anon_sym___based] = ACTIONS(2619), - [anon_sym___cdecl] = ACTIONS(2619), - [anon_sym___clrcall] = ACTIONS(2619), - [anon_sym___stdcall] = ACTIONS(2619), - [anon_sym___fastcall] = ACTIONS(2619), - [anon_sym___thiscall] = ACTIONS(2619), - [anon_sym___vectorcall] = ACTIONS(2619), - [anon_sym_LBRACE] = ACTIONS(2621), - [anon_sym_signed] = ACTIONS(2619), - [anon_sym_unsigned] = ACTIONS(2619), - [anon_sym_long] = ACTIONS(2619), - [anon_sym_short] = ACTIONS(2619), - [anon_sym_LBRACK] = ACTIONS(2619), - [anon_sym_static] = ACTIONS(2619), - [anon_sym_register] = ACTIONS(2619), - [anon_sym_inline] = ACTIONS(2619), - [anon_sym___inline] = ACTIONS(2619), - [anon_sym___inline__] = ACTIONS(2619), - [anon_sym___forceinline] = ACTIONS(2619), - [anon_sym_thread_local] = ACTIONS(2619), - [anon_sym___thread] = ACTIONS(2619), - [anon_sym_const] = ACTIONS(2619), - [anon_sym_constexpr] = ACTIONS(2619), - [anon_sym_volatile] = ACTIONS(2619), - [anon_sym_restrict] = ACTIONS(2619), - [anon_sym___restrict__] = ACTIONS(2619), - [anon_sym__Atomic] = ACTIONS(2619), - [anon_sym__Noreturn] = ACTIONS(2619), - [anon_sym_noreturn] = ACTIONS(2619), - [anon_sym__Nonnull] = ACTIONS(2619), - [anon_sym_mutable] = ACTIONS(2619), - [anon_sym_constinit] = ACTIONS(2619), - [anon_sym_consteval] = ACTIONS(2619), - [anon_sym_alignas] = ACTIONS(2619), - [anon_sym__Alignas] = ACTIONS(2619), - [sym_primitive_type] = ACTIONS(2619), - [anon_sym_enum] = ACTIONS(2619), - [anon_sym_class] = ACTIONS(2619), - [anon_sym_struct] = ACTIONS(2619), - [anon_sym_union] = ACTIONS(2619), - [anon_sym_if] = ACTIONS(2619), - [anon_sym_else] = ACTIONS(2619), - [anon_sym_switch] = ACTIONS(2619), - [anon_sym_case] = ACTIONS(2619), - [anon_sym_default] = ACTIONS(2619), - [anon_sym_while] = ACTIONS(2619), - [anon_sym_do] = ACTIONS(2619), - [anon_sym_for] = ACTIONS(2619), - [anon_sym_return] = ACTIONS(2619), - [anon_sym_break] = ACTIONS(2619), - [anon_sym_continue] = ACTIONS(2619), - [anon_sym_goto] = ACTIONS(2619), - [anon_sym___try] = ACTIONS(2619), - [anon_sym___leave] = ACTIONS(2619), - [anon_sym_not] = ACTIONS(2619), - [anon_sym_compl] = ACTIONS(2619), - [anon_sym_DASH_DASH] = ACTIONS(2621), - [anon_sym_PLUS_PLUS] = ACTIONS(2621), - [anon_sym_sizeof] = ACTIONS(2619), - [anon_sym___alignof__] = ACTIONS(2619), - [anon_sym___alignof] = ACTIONS(2619), - [anon_sym__alignof] = ACTIONS(2619), - [anon_sym_alignof] = ACTIONS(2619), - [anon_sym__Alignof] = ACTIONS(2619), - [anon_sym_offsetof] = ACTIONS(2619), - [anon_sym__Generic] = ACTIONS(2619), - [anon_sym_asm] = ACTIONS(2619), - [anon_sym___asm__] = ACTIONS(2619), - [anon_sym___asm] = ACTIONS(2619), - [sym_number_literal] = ACTIONS(2621), - [anon_sym_L_SQUOTE] = ACTIONS(2621), - [anon_sym_u_SQUOTE] = ACTIONS(2621), - [anon_sym_U_SQUOTE] = ACTIONS(2621), - [anon_sym_u8_SQUOTE] = ACTIONS(2621), - [anon_sym_SQUOTE] = ACTIONS(2621), - [anon_sym_L_DQUOTE] = ACTIONS(2621), - [anon_sym_u_DQUOTE] = ACTIONS(2621), - [anon_sym_U_DQUOTE] = ACTIONS(2621), - [anon_sym_u8_DQUOTE] = ACTIONS(2621), - [anon_sym_DQUOTE] = ACTIONS(2621), - [sym_true] = ACTIONS(2619), - [sym_false] = ACTIONS(2619), - [anon_sym_NULL] = ACTIONS(2619), - [anon_sym_nullptr] = ACTIONS(2619), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2619), - [anon_sym_decltype] = ACTIONS(2619), - [anon_sym_explicit] = ACTIONS(2619), - [anon_sym_typename] = ACTIONS(2619), - [anon_sym_export] = ACTIONS(2619), - [anon_sym_module] = ACTIONS(2619), - [anon_sym_import] = ACTIONS(2619), - [anon_sym_template] = ACTIONS(2619), - [anon_sym_operator] = ACTIONS(2619), - [anon_sym_try] = ACTIONS(2619), - [anon_sym_delete] = ACTIONS(2619), - [anon_sym_throw] = ACTIONS(2619), - [anon_sym_namespace] = ACTIONS(2619), - [anon_sym_static_assert] = ACTIONS(2619), - [anon_sym_concept] = ACTIONS(2619), - [anon_sym_co_return] = ACTIONS(2619), - [anon_sym_co_yield] = ACTIONS(2619), - [anon_sym_catch] = ACTIONS(2619), - [anon_sym_R_DQUOTE] = ACTIONS(2621), - [anon_sym_LR_DQUOTE] = ACTIONS(2621), - [anon_sym_uR_DQUOTE] = ACTIONS(2621), - [anon_sym_UR_DQUOTE] = ACTIONS(2621), - [anon_sym_u8R_DQUOTE] = ACTIONS(2621), - [anon_sym_co_await] = ACTIONS(2619), - [anon_sym_new] = ACTIONS(2619), - [anon_sym_requires] = ACTIONS(2619), - [sym_this] = ACTIONS(2619), - }, - [283] = { + [284] = { [sym_identifier] = ACTIONS(2771), [aux_sym_preproc_include_token1] = ACTIONS(2771), [aux_sym_preproc_def_token1] = ACTIONS(2771), @@ -84759,6 +85183,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(2771), [anon_sym_union] = ACTIONS(2771), [anon_sym_if] = ACTIONS(2771), + [anon_sym_else] = ACTIONS(2771), [anon_sym_switch] = ACTIONS(2771), [anon_sym_case] = ACTIONS(2771), [anon_sym_default] = ACTIONS(2771), @@ -84826,7 +85251,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2771), [sym_this] = ACTIONS(2771), }, - [284] = { + [285] = { + [sym_identifier] = ACTIONS(2663), + [aux_sym_preproc_include_token1] = ACTIONS(2663), + [aux_sym_preproc_def_token1] = ACTIONS(2663), + [aux_sym_preproc_if_token1] = ACTIONS(2663), + [aux_sym_preproc_if_token2] = ACTIONS(2663), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2663), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2663), + [aux_sym_preproc_else_token1] = ACTIONS(2663), + [aux_sym_preproc_elif_token1] = ACTIONS(2663), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2663), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2663), + [sym_preproc_directive] = ACTIONS(2663), + [anon_sym_LPAREN2] = ACTIONS(2665), + [anon_sym_BANG] = ACTIONS(2665), + [anon_sym_TILDE] = ACTIONS(2665), + [anon_sym_DASH] = ACTIONS(2663), + [anon_sym_PLUS] = ACTIONS(2663), + [anon_sym_STAR] = ACTIONS(2665), + [anon_sym_AMP_AMP] = ACTIONS(2665), + [anon_sym_AMP] = ACTIONS(2663), + [anon_sym_SEMI] = ACTIONS(2665), + [anon_sym___extension__] = ACTIONS(2663), + [anon_sym_typedef] = ACTIONS(2663), + [anon_sym_virtual] = ACTIONS(2663), + [anon_sym_extern] = ACTIONS(2663), + [anon_sym___attribute__] = ACTIONS(2663), + [anon_sym___attribute] = ACTIONS(2663), + [anon_sym_using] = ACTIONS(2663), + [anon_sym_COLON_COLON] = ACTIONS(2665), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2665), + [anon_sym___declspec] = ACTIONS(2663), + [anon_sym___based] = ACTIONS(2663), + [anon_sym___cdecl] = ACTIONS(2663), + [anon_sym___clrcall] = ACTIONS(2663), + [anon_sym___stdcall] = ACTIONS(2663), + [anon_sym___fastcall] = ACTIONS(2663), + [anon_sym___thiscall] = ACTIONS(2663), + [anon_sym___vectorcall] = ACTIONS(2663), + [anon_sym_LBRACE] = ACTIONS(2665), + [anon_sym_signed] = ACTIONS(2663), + [anon_sym_unsigned] = ACTIONS(2663), + [anon_sym_long] = ACTIONS(2663), + [anon_sym_short] = ACTIONS(2663), + [anon_sym_LBRACK] = ACTIONS(2663), + [anon_sym_static] = ACTIONS(2663), + [anon_sym_register] = ACTIONS(2663), + [anon_sym_inline] = ACTIONS(2663), + [anon_sym___inline] = ACTIONS(2663), + [anon_sym___inline__] = ACTIONS(2663), + [anon_sym___forceinline] = ACTIONS(2663), + [anon_sym_thread_local] = ACTIONS(2663), + [anon_sym___thread] = ACTIONS(2663), + [anon_sym_const] = ACTIONS(2663), + [anon_sym_constexpr] = ACTIONS(2663), + [anon_sym_volatile] = ACTIONS(2663), + [anon_sym_restrict] = ACTIONS(2663), + [anon_sym___restrict__] = ACTIONS(2663), + [anon_sym__Atomic] = ACTIONS(2663), + [anon_sym__Noreturn] = ACTIONS(2663), + [anon_sym_noreturn] = ACTIONS(2663), + [anon_sym__Nonnull] = ACTIONS(2663), + [anon_sym_mutable] = ACTIONS(2663), + [anon_sym_constinit] = ACTIONS(2663), + [anon_sym_consteval] = ACTIONS(2663), + [anon_sym_alignas] = ACTIONS(2663), + [anon_sym__Alignas] = ACTIONS(2663), + [sym_primitive_type] = ACTIONS(2663), + [anon_sym_enum] = ACTIONS(2663), + [anon_sym_class] = ACTIONS(2663), + [anon_sym_struct] = ACTIONS(2663), + [anon_sym_union] = ACTIONS(2663), + [anon_sym_if] = ACTIONS(2663), + [anon_sym_else] = ACTIONS(2663), + [anon_sym_switch] = ACTIONS(2663), + [anon_sym_case] = ACTIONS(2663), + [anon_sym_default] = ACTIONS(2663), + [anon_sym_while] = ACTIONS(2663), + [anon_sym_do] = ACTIONS(2663), + [anon_sym_for] = ACTIONS(2663), + [anon_sym_return] = ACTIONS(2663), + [anon_sym_break] = ACTIONS(2663), + [anon_sym_continue] = ACTIONS(2663), + [anon_sym_goto] = ACTIONS(2663), + [anon_sym___try] = ACTIONS(2663), + [anon_sym___leave] = ACTIONS(2663), + [anon_sym_not] = ACTIONS(2663), + [anon_sym_compl] = ACTIONS(2663), + [anon_sym_DASH_DASH] = ACTIONS(2665), + [anon_sym_PLUS_PLUS] = ACTIONS(2665), + [anon_sym_sizeof] = ACTIONS(2663), + [anon_sym___alignof__] = ACTIONS(2663), + [anon_sym___alignof] = ACTIONS(2663), + [anon_sym__alignof] = ACTIONS(2663), + [anon_sym_alignof] = ACTIONS(2663), + [anon_sym__Alignof] = ACTIONS(2663), + [anon_sym_offsetof] = ACTIONS(2663), + [anon_sym__Generic] = ACTIONS(2663), + [anon_sym_asm] = ACTIONS(2663), + [anon_sym___asm__] = ACTIONS(2663), + [anon_sym___asm] = ACTIONS(2663), + [sym_number_literal] = ACTIONS(2665), + [anon_sym_L_SQUOTE] = ACTIONS(2665), + [anon_sym_u_SQUOTE] = ACTIONS(2665), + [anon_sym_U_SQUOTE] = ACTIONS(2665), + [anon_sym_u8_SQUOTE] = ACTIONS(2665), + [anon_sym_SQUOTE] = ACTIONS(2665), + [anon_sym_L_DQUOTE] = ACTIONS(2665), + [anon_sym_u_DQUOTE] = ACTIONS(2665), + [anon_sym_U_DQUOTE] = ACTIONS(2665), + [anon_sym_u8_DQUOTE] = ACTIONS(2665), + [anon_sym_DQUOTE] = ACTIONS(2665), + [sym_true] = ACTIONS(2663), + [sym_false] = ACTIONS(2663), + [anon_sym_NULL] = ACTIONS(2663), + [anon_sym_nullptr] = ACTIONS(2663), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2663), + [anon_sym_decltype] = ACTIONS(2663), + [anon_sym_explicit] = ACTIONS(2663), + [anon_sym_typename] = ACTIONS(2663), + [anon_sym_template] = ACTIONS(2663), + [anon_sym_operator] = ACTIONS(2663), + [anon_sym_try] = ACTIONS(2663), + [anon_sym_delete] = ACTIONS(2663), + [anon_sym_throw] = ACTIONS(2663), + [anon_sym_namespace] = ACTIONS(2663), + [anon_sym_static_assert] = ACTIONS(2663), + [anon_sym_concept] = ACTIONS(2663), + [anon_sym_co_return] = ACTIONS(2663), + [anon_sym_co_yield] = ACTIONS(2663), + [anon_sym_R_DQUOTE] = ACTIONS(2665), + [anon_sym_LR_DQUOTE] = ACTIONS(2665), + [anon_sym_uR_DQUOTE] = ACTIONS(2665), + [anon_sym_UR_DQUOTE] = ACTIONS(2665), + [anon_sym_u8R_DQUOTE] = ACTIONS(2665), + [anon_sym_co_await] = ACTIONS(2663), + [anon_sym_new] = ACTIONS(2663), + [anon_sym_requires] = ACTIONS(2663), + [sym_this] = ACTIONS(2663), + }, + [286] = { [sym_identifier] = ACTIONS(2775), [aux_sym_preproc_include_token1] = ACTIONS(2775), [aux_sym_preproc_def_token1] = ACTIONS(2775), @@ -84899,6 +85465,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(2775), [anon_sym_union] = ACTIONS(2775), [anon_sym_if] = ACTIONS(2775), + [anon_sym_else] = ACTIONS(2775), [anon_sym_switch] = ACTIONS(2775), [anon_sym_case] = ACTIONS(2775), [anon_sym_default] = ACTIONS(2775), @@ -84966,7 +85533,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2775), [sym_this] = ACTIONS(2775), }, - [285] = { + [287] = { [sym_identifier] = ACTIONS(2779), [aux_sym_preproc_include_token1] = ACTIONS(2779), [aux_sym_preproc_def_token1] = ACTIONS(2779), @@ -85106,7 +85673,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2779), [sym_this] = ACTIONS(2779), }, - [286] = { + [288] = { [sym_identifier] = ACTIONS(2783), [aux_sym_preproc_include_token1] = ACTIONS(2783), [aux_sym_preproc_def_token1] = ACTIONS(2783), @@ -85246,7 +85813,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2783), [sym_this] = ACTIONS(2783), }, - [287] = { + [289] = { [sym_identifier] = ACTIONS(2787), [aux_sym_preproc_include_token1] = ACTIONS(2787), [aux_sym_preproc_def_token1] = ACTIONS(2787), @@ -85386,7 +85953,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2787), [sym_this] = ACTIONS(2787), }, - [288] = { + [290] = { [sym_identifier] = ACTIONS(2791), [aux_sym_preproc_include_token1] = ACTIONS(2791), [aux_sym_preproc_def_token1] = ACTIONS(2791), @@ -85526,147 +86093,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2791), [sym_this] = ACTIONS(2791), }, - [289] = { - [ts_builtin_sym_end] = ACTIONS(2629), - [sym_identifier] = ACTIONS(2627), - [aux_sym_preproc_include_token1] = ACTIONS(2627), - [aux_sym_preproc_def_token1] = ACTIONS(2627), - [aux_sym_preproc_if_token1] = ACTIONS(2627), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2627), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2627), - [sym_preproc_directive] = ACTIONS(2627), - [anon_sym_LPAREN2] = ACTIONS(2629), - [anon_sym_BANG] = ACTIONS(2629), - [anon_sym_TILDE] = ACTIONS(2629), - [anon_sym_DASH] = ACTIONS(2627), - [anon_sym_PLUS] = ACTIONS(2627), - [anon_sym_STAR] = ACTIONS(2629), - [anon_sym_AMP_AMP] = ACTIONS(2629), - [anon_sym_AMP] = ACTIONS(2627), - [anon_sym_SEMI] = ACTIONS(2629), - [anon_sym___extension__] = ACTIONS(2627), - [anon_sym_typedef] = ACTIONS(2627), - [anon_sym_virtual] = ACTIONS(2627), - [anon_sym_extern] = ACTIONS(2627), - [anon_sym___attribute__] = ACTIONS(2627), - [anon_sym___attribute] = ACTIONS(2627), - [anon_sym_using] = ACTIONS(2627), - [anon_sym_COLON_COLON] = ACTIONS(2629), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2629), - [anon_sym___declspec] = ACTIONS(2627), - [anon_sym___based] = ACTIONS(2627), - [anon_sym___cdecl] = ACTIONS(2627), - [anon_sym___clrcall] = ACTIONS(2627), - [anon_sym___stdcall] = ACTIONS(2627), - [anon_sym___fastcall] = ACTIONS(2627), - [anon_sym___thiscall] = ACTIONS(2627), - [anon_sym___vectorcall] = ACTIONS(2627), - [anon_sym_LBRACE] = ACTIONS(2629), - [anon_sym_signed] = ACTIONS(2627), - [anon_sym_unsigned] = ACTIONS(2627), - [anon_sym_long] = ACTIONS(2627), - [anon_sym_short] = ACTIONS(2627), - [anon_sym_LBRACK] = ACTIONS(2627), - [anon_sym_static] = ACTIONS(2627), - [anon_sym_register] = ACTIONS(2627), - [anon_sym_inline] = ACTIONS(2627), - [anon_sym___inline] = ACTIONS(2627), - [anon_sym___inline__] = ACTIONS(2627), - [anon_sym___forceinline] = ACTIONS(2627), - [anon_sym_thread_local] = ACTIONS(2627), - [anon_sym___thread] = ACTIONS(2627), - [anon_sym_const] = ACTIONS(2627), - [anon_sym_constexpr] = ACTIONS(2627), - [anon_sym_volatile] = ACTIONS(2627), - [anon_sym_restrict] = ACTIONS(2627), - [anon_sym___restrict__] = ACTIONS(2627), - [anon_sym__Atomic] = ACTIONS(2627), - [anon_sym__Noreturn] = ACTIONS(2627), - [anon_sym_noreturn] = ACTIONS(2627), - [anon_sym__Nonnull] = ACTIONS(2627), - [anon_sym_mutable] = ACTIONS(2627), - [anon_sym_constinit] = ACTIONS(2627), - [anon_sym_consteval] = ACTIONS(2627), - [anon_sym_alignas] = ACTIONS(2627), - [anon_sym__Alignas] = ACTIONS(2627), - [sym_primitive_type] = ACTIONS(2627), - [anon_sym_enum] = ACTIONS(2627), - [anon_sym_class] = ACTIONS(2627), - [anon_sym_struct] = ACTIONS(2627), - [anon_sym_union] = ACTIONS(2627), - [anon_sym_if] = ACTIONS(2627), - [anon_sym_else] = ACTIONS(2627), - [anon_sym_switch] = ACTIONS(2627), - [anon_sym_case] = ACTIONS(2627), - [anon_sym_default] = ACTIONS(2627), - [anon_sym_while] = ACTIONS(2627), - [anon_sym_do] = ACTIONS(2627), - [anon_sym_for] = ACTIONS(2627), - [anon_sym_return] = ACTIONS(2627), - [anon_sym_break] = ACTIONS(2627), - [anon_sym_continue] = ACTIONS(2627), - [anon_sym_goto] = ACTIONS(2627), - [anon_sym___try] = ACTIONS(2627), - [anon_sym___leave] = ACTIONS(2627), - [anon_sym_not] = ACTIONS(2627), - [anon_sym_compl] = ACTIONS(2627), - [anon_sym_DASH_DASH] = ACTIONS(2629), - [anon_sym_PLUS_PLUS] = ACTIONS(2629), - [anon_sym_sizeof] = ACTIONS(2627), - [anon_sym___alignof__] = ACTIONS(2627), - [anon_sym___alignof] = ACTIONS(2627), - [anon_sym__alignof] = ACTIONS(2627), - [anon_sym_alignof] = ACTIONS(2627), - [anon_sym__Alignof] = ACTIONS(2627), - [anon_sym_offsetof] = ACTIONS(2627), - [anon_sym__Generic] = ACTIONS(2627), - [anon_sym_asm] = ACTIONS(2627), - [anon_sym___asm__] = ACTIONS(2627), - [anon_sym___asm] = ACTIONS(2627), - [sym_number_literal] = ACTIONS(2629), - [anon_sym_L_SQUOTE] = ACTIONS(2629), - [anon_sym_u_SQUOTE] = ACTIONS(2629), - [anon_sym_U_SQUOTE] = ACTIONS(2629), - [anon_sym_u8_SQUOTE] = ACTIONS(2629), - [anon_sym_SQUOTE] = ACTIONS(2629), - [anon_sym_L_DQUOTE] = ACTIONS(2629), - [anon_sym_u_DQUOTE] = ACTIONS(2629), - [anon_sym_U_DQUOTE] = ACTIONS(2629), - [anon_sym_u8_DQUOTE] = ACTIONS(2629), - [anon_sym_DQUOTE] = ACTIONS(2629), - [sym_true] = ACTIONS(2627), - [sym_false] = ACTIONS(2627), - [anon_sym_NULL] = ACTIONS(2627), - [anon_sym_nullptr] = ACTIONS(2627), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2627), - [anon_sym_decltype] = ACTIONS(2627), - [anon_sym_explicit] = ACTIONS(2627), - [anon_sym_typename] = ACTIONS(2627), - [anon_sym_export] = ACTIONS(2627), - [anon_sym_module] = ACTIONS(2627), - [anon_sym_import] = ACTIONS(2627), - [anon_sym_template] = ACTIONS(2627), - [anon_sym_operator] = ACTIONS(2627), - [anon_sym_try] = ACTIONS(2627), - [anon_sym_delete] = ACTIONS(2627), - [anon_sym_throw] = ACTIONS(2627), - [anon_sym_namespace] = ACTIONS(2627), - [anon_sym_static_assert] = ACTIONS(2627), - [anon_sym_concept] = ACTIONS(2627), - [anon_sym_co_return] = ACTIONS(2627), - [anon_sym_co_yield] = ACTIONS(2627), - [anon_sym_R_DQUOTE] = ACTIONS(2629), - [anon_sym_LR_DQUOTE] = ACTIONS(2629), - [anon_sym_uR_DQUOTE] = ACTIONS(2629), - [anon_sym_UR_DQUOTE] = ACTIONS(2629), - [anon_sym_u8R_DQUOTE] = ACTIONS(2629), - [anon_sym_co_await] = ACTIONS(2627), - [anon_sym_new] = ACTIONS(2627), - [anon_sym_requires] = ACTIONS(2627), - [sym_this] = ACTIONS(2627), - }, - [290] = { + [291] = { [sym_identifier] = ACTIONS(2795), [aux_sym_preproc_include_token1] = ACTIONS(2795), [aux_sym_preproc_def_token1] = ACTIONS(2795), @@ -85806,7 +86233,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2795), [sym_this] = ACTIONS(2795), }, - [291] = { + [292] = { [sym_identifier] = ACTIONS(2799), [aux_sym_preproc_include_token1] = ACTIONS(2799), [aux_sym_preproc_def_token1] = ACTIONS(2799), @@ -85946,7 +86373,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2799), [sym_this] = ACTIONS(2799), }, - [292] = { + [293] = { [sym_identifier] = ACTIONS(2803), [aux_sym_preproc_include_token1] = ACTIONS(2803), [aux_sym_preproc_def_token1] = ACTIONS(2803), @@ -86086,7 +86513,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2803), [sym_this] = ACTIONS(2803), }, - [293] = { + [294] = { [sym_identifier] = ACTIONS(2807), [aux_sym_preproc_include_token1] = ACTIONS(2807), [aux_sym_preproc_def_token1] = ACTIONS(2807), @@ -86226,7 +86653,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2807), [sym_this] = ACTIONS(2807), }, - [294] = { + [295] = { [sym_identifier] = ACTIONS(2811), [aux_sym_preproc_include_token1] = ACTIONS(2811), [aux_sym_preproc_def_token1] = ACTIONS(2811), @@ -86366,7 +86793,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2811), [sym_this] = ACTIONS(2811), }, - [295] = { + [296] = { [sym_identifier] = ACTIONS(2815), [aux_sym_preproc_include_token1] = ACTIONS(2815), [aux_sym_preproc_def_token1] = ACTIONS(2815), @@ -86506,7 +86933,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2815), [sym_this] = ACTIONS(2815), }, - [296] = { + [297] = { [sym_identifier] = ACTIONS(2819), [aux_sym_preproc_include_token1] = ACTIONS(2819), [aux_sym_preproc_def_token1] = ACTIONS(2819), @@ -86646,567 +87073,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2819), [sym_this] = ACTIONS(2819), }, - [297] = { - [ts_builtin_sym_end] = ACTIONS(2693), - [sym_identifier] = ACTIONS(2691), - [aux_sym_preproc_include_token1] = ACTIONS(2691), - [aux_sym_preproc_def_token1] = ACTIONS(2691), - [aux_sym_preproc_if_token1] = ACTIONS(2691), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2691), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2691), - [sym_preproc_directive] = ACTIONS(2691), - [anon_sym_LPAREN2] = ACTIONS(2693), - [anon_sym_BANG] = ACTIONS(2693), - [anon_sym_TILDE] = ACTIONS(2693), - [anon_sym_DASH] = ACTIONS(2691), - [anon_sym_PLUS] = ACTIONS(2691), - [anon_sym_STAR] = ACTIONS(2693), - [anon_sym_AMP_AMP] = ACTIONS(2693), - [anon_sym_AMP] = ACTIONS(2691), - [anon_sym_SEMI] = ACTIONS(2693), - [anon_sym___extension__] = ACTIONS(2691), - [anon_sym_typedef] = ACTIONS(2691), - [anon_sym_virtual] = ACTIONS(2691), - [anon_sym_extern] = ACTIONS(2691), - [anon_sym___attribute__] = ACTIONS(2691), - [anon_sym___attribute] = ACTIONS(2691), - [anon_sym_using] = ACTIONS(2691), - [anon_sym_COLON_COLON] = ACTIONS(2693), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2693), - [anon_sym___declspec] = ACTIONS(2691), - [anon_sym___based] = ACTIONS(2691), - [anon_sym___cdecl] = ACTIONS(2691), - [anon_sym___clrcall] = ACTIONS(2691), - [anon_sym___stdcall] = ACTIONS(2691), - [anon_sym___fastcall] = ACTIONS(2691), - [anon_sym___thiscall] = ACTIONS(2691), - [anon_sym___vectorcall] = ACTIONS(2691), - [anon_sym_LBRACE] = ACTIONS(2693), - [anon_sym_signed] = ACTIONS(2691), - [anon_sym_unsigned] = ACTIONS(2691), - [anon_sym_long] = ACTIONS(2691), - [anon_sym_short] = ACTIONS(2691), - [anon_sym_LBRACK] = ACTIONS(2691), - [anon_sym_static] = ACTIONS(2691), - [anon_sym_register] = ACTIONS(2691), - [anon_sym_inline] = ACTIONS(2691), - [anon_sym___inline] = ACTIONS(2691), - [anon_sym___inline__] = ACTIONS(2691), - [anon_sym___forceinline] = ACTIONS(2691), - [anon_sym_thread_local] = ACTIONS(2691), - [anon_sym___thread] = ACTIONS(2691), - [anon_sym_const] = ACTIONS(2691), - [anon_sym_constexpr] = ACTIONS(2691), - [anon_sym_volatile] = ACTIONS(2691), - [anon_sym_restrict] = ACTIONS(2691), - [anon_sym___restrict__] = ACTIONS(2691), - [anon_sym__Atomic] = ACTIONS(2691), - [anon_sym__Noreturn] = ACTIONS(2691), - [anon_sym_noreturn] = ACTIONS(2691), - [anon_sym__Nonnull] = ACTIONS(2691), - [anon_sym_mutable] = ACTIONS(2691), - [anon_sym_constinit] = ACTIONS(2691), - [anon_sym_consteval] = ACTIONS(2691), - [anon_sym_alignas] = ACTIONS(2691), - [anon_sym__Alignas] = ACTIONS(2691), - [sym_primitive_type] = ACTIONS(2691), - [anon_sym_enum] = ACTIONS(2691), - [anon_sym_class] = ACTIONS(2691), - [anon_sym_struct] = ACTIONS(2691), - [anon_sym_union] = ACTIONS(2691), - [anon_sym_if] = ACTIONS(2691), - [anon_sym_else] = ACTIONS(2691), - [anon_sym_switch] = ACTIONS(2691), - [anon_sym_case] = ACTIONS(2691), - [anon_sym_default] = ACTIONS(2691), - [anon_sym_while] = ACTIONS(2691), - [anon_sym_do] = ACTIONS(2691), - [anon_sym_for] = ACTIONS(2691), - [anon_sym_return] = ACTIONS(2691), - [anon_sym_break] = ACTIONS(2691), - [anon_sym_continue] = ACTIONS(2691), - [anon_sym_goto] = ACTIONS(2691), - [anon_sym___try] = ACTIONS(2691), - [anon_sym___leave] = ACTIONS(2691), - [anon_sym_not] = ACTIONS(2691), - [anon_sym_compl] = ACTIONS(2691), - [anon_sym_DASH_DASH] = ACTIONS(2693), - [anon_sym_PLUS_PLUS] = ACTIONS(2693), - [anon_sym_sizeof] = ACTIONS(2691), - [anon_sym___alignof__] = ACTIONS(2691), - [anon_sym___alignof] = ACTIONS(2691), - [anon_sym__alignof] = ACTIONS(2691), - [anon_sym_alignof] = ACTIONS(2691), - [anon_sym__Alignof] = ACTIONS(2691), - [anon_sym_offsetof] = ACTIONS(2691), - [anon_sym__Generic] = ACTIONS(2691), - [anon_sym_asm] = ACTIONS(2691), - [anon_sym___asm__] = ACTIONS(2691), - [anon_sym___asm] = ACTIONS(2691), - [sym_number_literal] = ACTIONS(2693), - [anon_sym_L_SQUOTE] = ACTIONS(2693), - [anon_sym_u_SQUOTE] = ACTIONS(2693), - [anon_sym_U_SQUOTE] = ACTIONS(2693), - [anon_sym_u8_SQUOTE] = ACTIONS(2693), - [anon_sym_SQUOTE] = ACTIONS(2693), - [anon_sym_L_DQUOTE] = ACTIONS(2693), - [anon_sym_u_DQUOTE] = ACTIONS(2693), - [anon_sym_U_DQUOTE] = ACTIONS(2693), - [anon_sym_u8_DQUOTE] = ACTIONS(2693), - [anon_sym_DQUOTE] = ACTIONS(2693), - [sym_true] = ACTIONS(2691), - [sym_false] = ACTIONS(2691), - [anon_sym_NULL] = ACTIONS(2691), - [anon_sym_nullptr] = ACTIONS(2691), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2691), - [anon_sym_decltype] = ACTIONS(2691), - [anon_sym_explicit] = ACTIONS(2691), - [anon_sym_typename] = ACTIONS(2691), - [anon_sym_export] = ACTIONS(2691), - [anon_sym_module] = ACTIONS(2691), - [anon_sym_import] = ACTIONS(2691), - [anon_sym_template] = ACTIONS(2691), - [anon_sym_operator] = ACTIONS(2691), - [anon_sym_try] = ACTIONS(2691), - [anon_sym_delete] = ACTIONS(2691), - [anon_sym_throw] = ACTIONS(2691), - [anon_sym_namespace] = ACTIONS(2691), - [anon_sym_static_assert] = ACTIONS(2691), - [anon_sym_concept] = ACTIONS(2691), - [anon_sym_co_return] = ACTIONS(2691), - [anon_sym_co_yield] = ACTIONS(2691), - [anon_sym_R_DQUOTE] = ACTIONS(2693), - [anon_sym_LR_DQUOTE] = ACTIONS(2693), - [anon_sym_uR_DQUOTE] = ACTIONS(2693), - [anon_sym_UR_DQUOTE] = ACTIONS(2693), - [anon_sym_u8R_DQUOTE] = ACTIONS(2693), - [anon_sym_co_await] = ACTIONS(2691), - [anon_sym_new] = ACTIONS(2691), - [anon_sym_requires] = ACTIONS(2691), - [sym_this] = ACTIONS(2691), - }, [298] = { - [ts_builtin_sym_end] = ACTIONS(2697), - [sym_identifier] = ACTIONS(2695), - [aux_sym_preproc_include_token1] = ACTIONS(2695), - [aux_sym_preproc_def_token1] = ACTIONS(2695), - [aux_sym_preproc_if_token1] = ACTIONS(2695), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2695), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2695), - [sym_preproc_directive] = ACTIONS(2695), - [anon_sym_LPAREN2] = ACTIONS(2697), - [anon_sym_BANG] = ACTIONS(2697), - [anon_sym_TILDE] = ACTIONS(2697), - [anon_sym_DASH] = ACTIONS(2695), - [anon_sym_PLUS] = ACTIONS(2695), - [anon_sym_STAR] = ACTIONS(2697), - [anon_sym_AMP_AMP] = ACTIONS(2697), - [anon_sym_AMP] = ACTIONS(2695), - [anon_sym_SEMI] = ACTIONS(2697), - [anon_sym___extension__] = ACTIONS(2695), - [anon_sym_typedef] = ACTIONS(2695), - [anon_sym_virtual] = ACTIONS(2695), - [anon_sym_extern] = ACTIONS(2695), - [anon_sym___attribute__] = ACTIONS(2695), - [anon_sym___attribute] = ACTIONS(2695), - [anon_sym_using] = ACTIONS(2695), - [anon_sym_COLON_COLON] = ACTIONS(2697), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2697), - [anon_sym___declspec] = ACTIONS(2695), - [anon_sym___based] = ACTIONS(2695), - [anon_sym___cdecl] = ACTIONS(2695), - [anon_sym___clrcall] = ACTIONS(2695), - [anon_sym___stdcall] = ACTIONS(2695), - [anon_sym___fastcall] = ACTIONS(2695), - [anon_sym___thiscall] = ACTIONS(2695), - [anon_sym___vectorcall] = ACTIONS(2695), - [anon_sym_LBRACE] = ACTIONS(2697), - [anon_sym_signed] = ACTIONS(2695), - [anon_sym_unsigned] = ACTIONS(2695), - [anon_sym_long] = ACTIONS(2695), - [anon_sym_short] = ACTIONS(2695), - [anon_sym_LBRACK] = ACTIONS(2695), - [anon_sym_static] = ACTIONS(2695), - [anon_sym_register] = ACTIONS(2695), - [anon_sym_inline] = ACTIONS(2695), - [anon_sym___inline] = ACTIONS(2695), - [anon_sym___inline__] = ACTIONS(2695), - [anon_sym___forceinline] = ACTIONS(2695), - [anon_sym_thread_local] = ACTIONS(2695), - [anon_sym___thread] = ACTIONS(2695), - [anon_sym_const] = ACTIONS(2695), - [anon_sym_constexpr] = ACTIONS(2695), - [anon_sym_volatile] = ACTIONS(2695), - [anon_sym_restrict] = ACTIONS(2695), - [anon_sym___restrict__] = ACTIONS(2695), - [anon_sym__Atomic] = ACTIONS(2695), - [anon_sym__Noreturn] = ACTIONS(2695), - [anon_sym_noreturn] = ACTIONS(2695), - [anon_sym__Nonnull] = ACTIONS(2695), - [anon_sym_mutable] = ACTIONS(2695), - [anon_sym_constinit] = ACTIONS(2695), - [anon_sym_consteval] = ACTIONS(2695), - [anon_sym_alignas] = ACTIONS(2695), - [anon_sym__Alignas] = ACTIONS(2695), - [sym_primitive_type] = ACTIONS(2695), - [anon_sym_enum] = ACTIONS(2695), - [anon_sym_class] = ACTIONS(2695), - [anon_sym_struct] = ACTIONS(2695), - [anon_sym_union] = ACTIONS(2695), - [anon_sym_if] = ACTIONS(2695), - [anon_sym_else] = ACTIONS(2695), - [anon_sym_switch] = ACTIONS(2695), - [anon_sym_case] = ACTIONS(2695), - [anon_sym_default] = ACTIONS(2695), - [anon_sym_while] = ACTIONS(2695), - [anon_sym_do] = ACTIONS(2695), - [anon_sym_for] = ACTIONS(2695), - [anon_sym_return] = ACTIONS(2695), - [anon_sym_break] = ACTIONS(2695), - [anon_sym_continue] = ACTIONS(2695), - [anon_sym_goto] = ACTIONS(2695), - [anon_sym___try] = ACTIONS(2695), - [anon_sym___leave] = ACTIONS(2695), - [anon_sym_not] = ACTIONS(2695), - [anon_sym_compl] = ACTIONS(2695), - [anon_sym_DASH_DASH] = ACTIONS(2697), - [anon_sym_PLUS_PLUS] = ACTIONS(2697), - [anon_sym_sizeof] = ACTIONS(2695), - [anon_sym___alignof__] = ACTIONS(2695), - [anon_sym___alignof] = ACTIONS(2695), - [anon_sym__alignof] = ACTIONS(2695), - [anon_sym_alignof] = ACTIONS(2695), - [anon_sym__Alignof] = ACTIONS(2695), - [anon_sym_offsetof] = ACTIONS(2695), - [anon_sym__Generic] = ACTIONS(2695), - [anon_sym_asm] = ACTIONS(2695), - [anon_sym___asm__] = ACTIONS(2695), - [anon_sym___asm] = ACTIONS(2695), - [sym_number_literal] = ACTIONS(2697), - [anon_sym_L_SQUOTE] = ACTIONS(2697), - [anon_sym_u_SQUOTE] = ACTIONS(2697), - [anon_sym_U_SQUOTE] = ACTIONS(2697), - [anon_sym_u8_SQUOTE] = ACTIONS(2697), - [anon_sym_SQUOTE] = ACTIONS(2697), - [anon_sym_L_DQUOTE] = ACTIONS(2697), - [anon_sym_u_DQUOTE] = ACTIONS(2697), - [anon_sym_U_DQUOTE] = ACTIONS(2697), - [anon_sym_u8_DQUOTE] = ACTIONS(2697), - [anon_sym_DQUOTE] = ACTIONS(2697), - [sym_true] = ACTIONS(2695), - [sym_false] = ACTIONS(2695), - [anon_sym_NULL] = ACTIONS(2695), - [anon_sym_nullptr] = ACTIONS(2695), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2695), - [anon_sym_decltype] = ACTIONS(2695), - [anon_sym_explicit] = ACTIONS(2695), - [anon_sym_typename] = ACTIONS(2695), - [anon_sym_export] = ACTIONS(2695), - [anon_sym_module] = ACTIONS(2695), - [anon_sym_import] = ACTIONS(2695), - [anon_sym_template] = ACTIONS(2695), - [anon_sym_operator] = ACTIONS(2695), - [anon_sym_try] = ACTIONS(2695), - [anon_sym_delete] = ACTIONS(2695), - [anon_sym_throw] = ACTIONS(2695), - [anon_sym_namespace] = ACTIONS(2695), - [anon_sym_static_assert] = ACTIONS(2695), - [anon_sym_concept] = ACTIONS(2695), - [anon_sym_co_return] = ACTIONS(2695), - [anon_sym_co_yield] = ACTIONS(2695), - [anon_sym_R_DQUOTE] = ACTIONS(2697), - [anon_sym_LR_DQUOTE] = ACTIONS(2697), - [anon_sym_uR_DQUOTE] = ACTIONS(2697), - [anon_sym_UR_DQUOTE] = ACTIONS(2697), - [anon_sym_u8R_DQUOTE] = ACTIONS(2697), - [anon_sym_co_await] = ACTIONS(2695), - [anon_sym_new] = ACTIONS(2695), - [anon_sym_requires] = ACTIONS(2695), - [sym_this] = ACTIONS(2695), - }, - [299] = { - [ts_builtin_sym_end] = ACTIONS(2705), - [sym_identifier] = ACTIONS(2703), - [aux_sym_preproc_include_token1] = ACTIONS(2703), - [aux_sym_preproc_def_token1] = ACTIONS(2703), - [aux_sym_preproc_if_token1] = ACTIONS(2703), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2703), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2703), - [sym_preproc_directive] = ACTIONS(2703), - [anon_sym_LPAREN2] = ACTIONS(2705), - [anon_sym_BANG] = ACTIONS(2705), - [anon_sym_TILDE] = ACTIONS(2705), - [anon_sym_DASH] = ACTIONS(2703), - [anon_sym_PLUS] = ACTIONS(2703), - [anon_sym_STAR] = ACTIONS(2705), - [anon_sym_AMP_AMP] = ACTIONS(2705), - [anon_sym_AMP] = ACTIONS(2703), - [anon_sym_SEMI] = ACTIONS(2705), - [anon_sym___extension__] = ACTIONS(2703), - [anon_sym_typedef] = ACTIONS(2703), - [anon_sym_virtual] = ACTIONS(2703), - [anon_sym_extern] = ACTIONS(2703), - [anon_sym___attribute__] = ACTIONS(2703), - [anon_sym___attribute] = ACTIONS(2703), - [anon_sym_using] = ACTIONS(2703), - [anon_sym_COLON_COLON] = ACTIONS(2705), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2705), - [anon_sym___declspec] = ACTIONS(2703), - [anon_sym___based] = ACTIONS(2703), - [anon_sym___cdecl] = ACTIONS(2703), - [anon_sym___clrcall] = ACTIONS(2703), - [anon_sym___stdcall] = ACTIONS(2703), - [anon_sym___fastcall] = ACTIONS(2703), - [anon_sym___thiscall] = ACTIONS(2703), - [anon_sym___vectorcall] = ACTIONS(2703), - [anon_sym_LBRACE] = ACTIONS(2705), - [anon_sym_signed] = ACTIONS(2703), - [anon_sym_unsigned] = ACTIONS(2703), - [anon_sym_long] = ACTIONS(2703), - [anon_sym_short] = ACTIONS(2703), - [anon_sym_LBRACK] = ACTIONS(2703), - [anon_sym_static] = ACTIONS(2703), - [anon_sym_register] = ACTIONS(2703), - [anon_sym_inline] = ACTIONS(2703), - [anon_sym___inline] = ACTIONS(2703), - [anon_sym___inline__] = ACTIONS(2703), - [anon_sym___forceinline] = ACTIONS(2703), - [anon_sym_thread_local] = ACTIONS(2703), - [anon_sym___thread] = ACTIONS(2703), - [anon_sym_const] = ACTIONS(2703), - [anon_sym_constexpr] = ACTIONS(2703), - [anon_sym_volatile] = ACTIONS(2703), - [anon_sym_restrict] = ACTIONS(2703), - [anon_sym___restrict__] = ACTIONS(2703), - [anon_sym__Atomic] = ACTIONS(2703), - [anon_sym__Noreturn] = ACTIONS(2703), - [anon_sym_noreturn] = ACTIONS(2703), - [anon_sym__Nonnull] = ACTIONS(2703), - [anon_sym_mutable] = ACTIONS(2703), - [anon_sym_constinit] = ACTIONS(2703), - [anon_sym_consteval] = ACTIONS(2703), - [anon_sym_alignas] = ACTIONS(2703), - [anon_sym__Alignas] = ACTIONS(2703), - [sym_primitive_type] = ACTIONS(2703), - [anon_sym_enum] = ACTIONS(2703), - [anon_sym_class] = ACTIONS(2703), - [anon_sym_struct] = ACTIONS(2703), - [anon_sym_union] = ACTIONS(2703), - [anon_sym_if] = ACTIONS(2703), - [anon_sym_else] = ACTIONS(2703), - [anon_sym_switch] = ACTIONS(2703), - [anon_sym_case] = ACTIONS(2703), - [anon_sym_default] = ACTIONS(2703), - [anon_sym_while] = ACTIONS(2703), - [anon_sym_do] = ACTIONS(2703), - [anon_sym_for] = ACTIONS(2703), - [anon_sym_return] = ACTIONS(2703), - [anon_sym_break] = ACTIONS(2703), - [anon_sym_continue] = ACTIONS(2703), - [anon_sym_goto] = ACTIONS(2703), - [anon_sym___try] = ACTIONS(2703), - [anon_sym___leave] = ACTIONS(2703), - [anon_sym_not] = ACTIONS(2703), - [anon_sym_compl] = ACTIONS(2703), - [anon_sym_DASH_DASH] = ACTIONS(2705), - [anon_sym_PLUS_PLUS] = ACTIONS(2705), - [anon_sym_sizeof] = ACTIONS(2703), - [anon_sym___alignof__] = ACTIONS(2703), - [anon_sym___alignof] = ACTIONS(2703), - [anon_sym__alignof] = ACTIONS(2703), - [anon_sym_alignof] = ACTIONS(2703), - [anon_sym__Alignof] = ACTIONS(2703), - [anon_sym_offsetof] = ACTIONS(2703), - [anon_sym__Generic] = ACTIONS(2703), - [anon_sym_asm] = ACTIONS(2703), - [anon_sym___asm__] = ACTIONS(2703), - [anon_sym___asm] = ACTIONS(2703), - [sym_number_literal] = ACTIONS(2705), - [anon_sym_L_SQUOTE] = ACTIONS(2705), - [anon_sym_u_SQUOTE] = ACTIONS(2705), - [anon_sym_U_SQUOTE] = ACTIONS(2705), - [anon_sym_u8_SQUOTE] = ACTIONS(2705), - [anon_sym_SQUOTE] = ACTIONS(2705), - [anon_sym_L_DQUOTE] = ACTIONS(2705), - [anon_sym_u_DQUOTE] = ACTIONS(2705), - [anon_sym_U_DQUOTE] = ACTIONS(2705), - [anon_sym_u8_DQUOTE] = ACTIONS(2705), - [anon_sym_DQUOTE] = ACTIONS(2705), - [sym_true] = ACTIONS(2703), - [sym_false] = ACTIONS(2703), - [anon_sym_NULL] = ACTIONS(2703), - [anon_sym_nullptr] = ACTIONS(2703), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2703), - [anon_sym_decltype] = ACTIONS(2703), - [anon_sym_explicit] = ACTIONS(2703), - [anon_sym_typename] = ACTIONS(2703), - [anon_sym_export] = ACTIONS(2703), - [anon_sym_module] = ACTIONS(2703), - [anon_sym_import] = ACTIONS(2703), - [anon_sym_template] = ACTIONS(2703), - [anon_sym_operator] = ACTIONS(2703), - [anon_sym_try] = ACTIONS(2703), - [anon_sym_delete] = ACTIONS(2703), - [anon_sym_throw] = ACTIONS(2703), - [anon_sym_namespace] = ACTIONS(2703), - [anon_sym_static_assert] = ACTIONS(2703), - [anon_sym_concept] = ACTIONS(2703), - [anon_sym_co_return] = ACTIONS(2703), - [anon_sym_co_yield] = ACTIONS(2703), - [anon_sym_R_DQUOTE] = ACTIONS(2705), - [anon_sym_LR_DQUOTE] = ACTIONS(2705), - [anon_sym_uR_DQUOTE] = ACTIONS(2705), - [anon_sym_UR_DQUOTE] = ACTIONS(2705), - [anon_sym_u8R_DQUOTE] = ACTIONS(2705), - [anon_sym_co_await] = ACTIONS(2703), - [anon_sym_new] = ACTIONS(2703), - [anon_sym_requires] = ACTIONS(2703), - [sym_this] = ACTIONS(2703), - }, - [300] = { - [ts_builtin_sym_end] = ACTIONS(2705), - [sym_identifier] = ACTIONS(2703), - [aux_sym_preproc_include_token1] = ACTIONS(2703), - [aux_sym_preproc_def_token1] = ACTIONS(2703), - [aux_sym_preproc_if_token1] = ACTIONS(2703), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2703), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2703), - [sym_preproc_directive] = ACTIONS(2703), - [anon_sym_LPAREN2] = ACTIONS(2705), - [anon_sym_BANG] = ACTIONS(2705), - [anon_sym_TILDE] = ACTIONS(2705), - [anon_sym_DASH] = ACTIONS(2703), - [anon_sym_PLUS] = ACTIONS(2703), - [anon_sym_STAR] = ACTIONS(2705), - [anon_sym_AMP_AMP] = ACTIONS(2705), - [anon_sym_AMP] = ACTIONS(2703), - [anon_sym_SEMI] = ACTIONS(2705), - [anon_sym___extension__] = ACTIONS(2703), - [anon_sym_typedef] = ACTIONS(2703), - [anon_sym_virtual] = ACTIONS(2703), - [anon_sym_extern] = ACTIONS(2703), - [anon_sym___attribute__] = ACTIONS(2703), - [anon_sym___attribute] = ACTIONS(2703), - [anon_sym_using] = ACTIONS(2703), - [anon_sym_COLON_COLON] = ACTIONS(2705), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2705), - [anon_sym___declspec] = ACTIONS(2703), - [anon_sym___based] = ACTIONS(2703), - [anon_sym___cdecl] = ACTIONS(2703), - [anon_sym___clrcall] = ACTIONS(2703), - [anon_sym___stdcall] = ACTIONS(2703), - [anon_sym___fastcall] = ACTIONS(2703), - [anon_sym___thiscall] = ACTIONS(2703), - [anon_sym___vectorcall] = ACTIONS(2703), - [anon_sym_LBRACE] = ACTIONS(2705), - [anon_sym_signed] = ACTIONS(2703), - [anon_sym_unsigned] = ACTIONS(2703), - [anon_sym_long] = ACTIONS(2703), - [anon_sym_short] = ACTIONS(2703), - [anon_sym_LBRACK] = ACTIONS(2703), - [anon_sym_static] = ACTIONS(2703), - [anon_sym_register] = ACTIONS(2703), - [anon_sym_inline] = ACTIONS(2703), - [anon_sym___inline] = ACTIONS(2703), - [anon_sym___inline__] = ACTIONS(2703), - [anon_sym___forceinline] = ACTIONS(2703), - [anon_sym_thread_local] = ACTIONS(2703), - [anon_sym___thread] = ACTIONS(2703), - [anon_sym_const] = ACTIONS(2703), - [anon_sym_constexpr] = ACTIONS(2703), - [anon_sym_volatile] = ACTIONS(2703), - [anon_sym_restrict] = ACTIONS(2703), - [anon_sym___restrict__] = ACTIONS(2703), - [anon_sym__Atomic] = ACTIONS(2703), - [anon_sym__Noreturn] = ACTIONS(2703), - [anon_sym_noreturn] = ACTIONS(2703), - [anon_sym__Nonnull] = ACTIONS(2703), - [anon_sym_mutable] = ACTIONS(2703), - [anon_sym_constinit] = ACTIONS(2703), - [anon_sym_consteval] = ACTIONS(2703), - [anon_sym_alignas] = ACTIONS(2703), - [anon_sym__Alignas] = ACTIONS(2703), - [sym_primitive_type] = ACTIONS(2703), - [anon_sym_enum] = ACTIONS(2703), - [anon_sym_class] = ACTIONS(2703), - [anon_sym_struct] = ACTIONS(2703), - [anon_sym_union] = ACTIONS(2703), - [anon_sym_if] = ACTIONS(2703), - [anon_sym_else] = ACTIONS(2703), - [anon_sym_switch] = ACTIONS(2703), - [anon_sym_case] = ACTIONS(2703), - [anon_sym_default] = ACTIONS(2703), - [anon_sym_while] = ACTIONS(2703), - [anon_sym_do] = ACTIONS(2703), - [anon_sym_for] = ACTIONS(2703), - [anon_sym_return] = ACTIONS(2703), - [anon_sym_break] = ACTIONS(2703), - [anon_sym_continue] = ACTIONS(2703), - [anon_sym_goto] = ACTIONS(2703), - [anon_sym___try] = ACTIONS(2703), - [anon_sym___leave] = ACTIONS(2703), - [anon_sym_not] = ACTIONS(2703), - [anon_sym_compl] = ACTIONS(2703), - [anon_sym_DASH_DASH] = ACTIONS(2705), - [anon_sym_PLUS_PLUS] = ACTIONS(2705), - [anon_sym_sizeof] = ACTIONS(2703), - [anon_sym___alignof__] = ACTIONS(2703), - [anon_sym___alignof] = ACTIONS(2703), - [anon_sym__alignof] = ACTIONS(2703), - [anon_sym_alignof] = ACTIONS(2703), - [anon_sym__Alignof] = ACTIONS(2703), - [anon_sym_offsetof] = ACTIONS(2703), - [anon_sym__Generic] = ACTIONS(2703), - [anon_sym_asm] = ACTIONS(2703), - [anon_sym___asm__] = ACTIONS(2703), - [anon_sym___asm] = ACTIONS(2703), - [sym_number_literal] = ACTIONS(2705), - [anon_sym_L_SQUOTE] = ACTIONS(2705), - [anon_sym_u_SQUOTE] = ACTIONS(2705), - [anon_sym_U_SQUOTE] = ACTIONS(2705), - [anon_sym_u8_SQUOTE] = ACTIONS(2705), - [anon_sym_SQUOTE] = ACTIONS(2705), - [anon_sym_L_DQUOTE] = ACTIONS(2705), - [anon_sym_u_DQUOTE] = ACTIONS(2705), - [anon_sym_U_DQUOTE] = ACTIONS(2705), - [anon_sym_u8_DQUOTE] = ACTIONS(2705), - [anon_sym_DQUOTE] = ACTIONS(2705), - [sym_true] = ACTIONS(2703), - [sym_false] = ACTIONS(2703), - [anon_sym_NULL] = ACTIONS(2703), - [anon_sym_nullptr] = ACTIONS(2703), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2703), - [anon_sym_decltype] = ACTIONS(2703), - [anon_sym_explicit] = ACTIONS(2703), - [anon_sym_typename] = ACTIONS(2703), - [anon_sym_export] = ACTIONS(2703), - [anon_sym_module] = ACTIONS(2703), - [anon_sym_import] = ACTIONS(2703), - [anon_sym_template] = ACTIONS(2703), - [anon_sym_operator] = ACTIONS(2703), - [anon_sym_try] = ACTIONS(2703), - [anon_sym_delete] = ACTIONS(2703), - [anon_sym_throw] = ACTIONS(2703), - [anon_sym_namespace] = ACTIONS(2703), - [anon_sym_static_assert] = ACTIONS(2703), - [anon_sym_concept] = ACTIONS(2703), - [anon_sym_co_return] = ACTIONS(2703), - [anon_sym_co_yield] = ACTIONS(2703), - [anon_sym_R_DQUOTE] = ACTIONS(2705), - [anon_sym_LR_DQUOTE] = ACTIONS(2705), - [anon_sym_uR_DQUOTE] = ACTIONS(2705), - [anon_sym_UR_DQUOTE] = ACTIONS(2705), - [anon_sym_u8R_DQUOTE] = ACTIONS(2705), - [anon_sym_co_await] = ACTIONS(2703), - [anon_sym_new] = ACTIONS(2703), - [anon_sym_requires] = ACTIONS(2703), - [sym_this] = ACTIONS(2703), - }, - [301] = { [sym_identifier] = ACTIONS(2823), [aux_sym_preproc_include_token1] = ACTIONS(2823), [aux_sym_preproc_def_token1] = ACTIONS(2823), @@ -87346,7 +87213,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2823), [sym_this] = ACTIONS(2823), }, - [302] = { + [299] = { [sym_identifier] = ACTIONS(2827), [aux_sym_preproc_include_token1] = ACTIONS(2827), [aux_sym_preproc_def_token1] = ACTIONS(2827), @@ -87486,7 +87353,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2827), [sym_this] = ACTIONS(2827), }, - [303] = { + [300] = { + [ts_builtin_sym_end] = ACTIONS(2741), + [sym_identifier] = ACTIONS(2739), + [aux_sym_preproc_include_token1] = ACTIONS(2739), + [aux_sym_preproc_def_token1] = ACTIONS(2739), + [aux_sym_preproc_if_token1] = ACTIONS(2739), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2739), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2739), + [sym_preproc_directive] = ACTIONS(2739), + [anon_sym_LPAREN2] = ACTIONS(2741), + [anon_sym_BANG] = ACTIONS(2741), + [anon_sym_TILDE] = ACTIONS(2741), + [anon_sym_DASH] = ACTIONS(2739), + [anon_sym_PLUS] = ACTIONS(2739), + [anon_sym_STAR] = ACTIONS(2741), + [anon_sym_AMP_AMP] = ACTIONS(2741), + [anon_sym_AMP] = ACTIONS(2739), + [anon_sym_SEMI] = ACTIONS(2741), + [anon_sym___extension__] = ACTIONS(2739), + [anon_sym_typedef] = ACTIONS(2739), + [anon_sym_virtual] = ACTIONS(2739), + [anon_sym_extern] = ACTIONS(2739), + [anon_sym___attribute__] = ACTIONS(2739), + [anon_sym___attribute] = ACTIONS(2739), + [anon_sym_using] = ACTIONS(2739), + [anon_sym_COLON_COLON] = ACTIONS(2741), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2741), + [anon_sym___declspec] = ACTIONS(2739), + [anon_sym___based] = ACTIONS(2739), + [anon_sym___cdecl] = ACTIONS(2739), + [anon_sym___clrcall] = ACTIONS(2739), + [anon_sym___stdcall] = ACTIONS(2739), + [anon_sym___fastcall] = ACTIONS(2739), + [anon_sym___thiscall] = ACTIONS(2739), + [anon_sym___vectorcall] = ACTIONS(2739), + [anon_sym_LBRACE] = ACTIONS(2741), + [anon_sym_signed] = ACTIONS(2739), + [anon_sym_unsigned] = ACTIONS(2739), + [anon_sym_long] = ACTIONS(2739), + [anon_sym_short] = ACTIONS(2739), + [anon_sym_LBRACK] = ACTIONS(2739), + [anon_sym_static] = ACTIONS(2739), + [anon_sym_register] = ACTIONS(2739), + [anon_sym_inline] = ACTIONS(2739), + [anon_sym___inline] = ACTIONS(2739), + [anon_sym___inline__] = ACTIONS(2739), + [anon_sym___forceinline] = ACTIONS(2739), + [anon_sym_thread_local] = ACTIONS(2739), + [anon_sym___thread] = ACTIONS(2739), + [anon_sym_const] = ACTIONS(2739), + [anon_sym_constexpr] = ACTIONS(2739), + [anon_sym_volatile] = ACTIONS(2739), + [anon_sym_restrict] = ACTIONS(2739), + [anon_sym___restrict__] = ACTIONS(2739), + [anon_sym__Atomic] = ACTIONS(2739), + [anon_sym__Noreturn] = ACTIONS(2739), + [anon_sym_noreturn] = ACTIONS(2739), + [anon_sym__Nonnull] = ACTIONS(2739), + [anon_sym_mutable] = ACTIONS(2739), + [anon_sym_constinit] = ACTIONS(2739), + [anon_sym_consteval] = ACTIONS(2739), + [anon_sym_alignas] = ACTIONS(2739), + [anon_sym__Alignas] = ACTIONS(2739), + [sym_primitive_type] = ACTIONS(2739), + [anon_sym_enum] = ACTIONS(2739), + [anon_sym_class] = ACTIONS(2739), + [anon_sym_struct] = ACTIONS(2739), + [anon_sym_union] = ACTIONS(2739), + [anon_sym_if] = ACTIONS(2739), + [anon_sym_else] = ACTIONS(2739), + [anon_sym_switch] = ACTIONS(2739), + [anon_sym_case] = ACTIONS(2739), + [anon_sym_default] = ACTIONS(2739), + [anon_sym_while] = ACTIONS(2739), + [anon_sym_do] = ACTIONS(2739), + [anon_sym_for] = ACTIONS(2739), + [anon_sym_return] = ACTIONS(2739), + [anon_sym_break] = ACTIONS(2739), + [anon_sym_continue] = ACTIONS(2739), + [anon_sym_goto] = ACTIONS(2739), + [anon_sym___try] = ACTIONS(2739), + [anon_sym___leave] = ACTIONS(2739), + [anon_sym_not] = ACTIONS(2739), + [anon_sym_compl] = ACTIONS(2739), + [anon_sym_DASH_DASH] = ACTIONS(2741), + [anon_sym_PLUS_PLUS] = ACTIONS(2741), + [anon_sym_sizeof] = ACTIONS(2739), + [anon_sym___alignof__] = ACTIONS(2739), + [anon_sym___alignof] = ACTIONS(2739), + [anon_sym__alignof] = ACTIONS(2739), + [anon_sym_alignof] = ACTIONS(2739), + [anon_sym__Alignof] = ACTIONS(2739), + [anon_sym_offsetof] = ACTIONS(2739), + [anon_sym__Generic] = ACTIONS(2739), + [anon_sym_asm] = ACTIONS(2739), + [anon_sym___asm__] = ACTIONS(2739), + [anon_sym___asm] = ACTIONS(2739), + [sym_number_literal] = ACTIONS(2741), + [anon_sym_L_SQUOTE] = ACTIONS(2741), + [anon_sym_u_SQUOTE] = ACTIONS(2741), + [anon_sym_U_SQUOTE] = ACTIONS(2741), + [anon_sym_u8_SQUOTE] = ACTIONS(2741), + [anon_sym_SQUOTE] = ACTIONS(2741), + [anon_sym_L_DQUOTE] = ACTIONS(2741), + [anon_sym_u_DQUOTE] = ACTIONS(2741), + [anon_sym_U_DQUOTE] = ACTIONS(2741), + [anon_sym_u8_DQUOTE] = ACTIONS(2741), + [anon_sym_DQUOTE] = ACTIONS(2741), + [sym_true] = ACTIONS(2739), + [sym_false] = ACTIONS(2739), + [anon_sym_NULL] = ACTIONS(2739), + [anon_sym_nullptr] = ACTIONS(2739), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2739), + [anon_sym_decltype] = ACTIONS(2739), + [anon_sym_explicit] = ACTIONS(2739), + [anon_sym_typename] = ACTIONS(2739), + [anon_sym_export] = ACTIONS(2739), + [anon_sym_module] = ACTIONS(2739), + [anon_sym_import] = ACTIONS(2739), + [anon_sym_template] = ACTIONS(2739), + [anon_sym_operator] = ACTIONS(2739), + [anon_sym_try] = ACTIONS(2739), + [anon_sym_delete] = ACTIONS(2739), + [anon_sym_throw] = ACTIONS(2739), + [anon_sym_namespace] = ACTIONS(2739), + [anon_sym_static_assert] = ACTIONS(2739), + [anon_sym_concept] = ACTIONS(2739), + [anon_sym_co_return] = ACTIONS(2739), + [anon_sym_co_yield] = ACTIONS(2739), + [anon_sym_R_DQUOTE] = ACTIONS(2741), + [anon_sym_LR_DQUOTE] = ACTIONS(2741), + [anon_sym_uR_DQUOTE] = ACTIONS(2741), + [anon_sym_UR_DQUOTE] = ACTIONS(2741), + [anon_sym_u8R_DQUOTE] = ACTIONS(2741), + [anon_sym_co_await] = ACTIONS(2739), + [anon_sym_new] = ACTIONS(2739), + [anon_sym_requires] = ACTIONS(2739), + [sym_this] = ACTIONS(2739), + }, + [301] = { [sym_identifier] = ACTIONS(2831), [aux_sym_preproc_include_token1] = ACTIONS(2831), [aux_sym_preproc_def_token1] = ACTIONS(2831), @@ -87626,7 +87633,427 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2831), [sym_this] = ACTIONS(2831), }, + [302] = { + [ts_builtin_sym_end] = ACTIONS(2753), + [sym_identifier] = ACTIONS(2751), + [aux_sym_preproc_include_token1] = ACTIONS(2751), + [aux_sym_preproc_def_token1] = ACTIONS(2751), + [aux_sym_preproc_if_token1] = ACTIONS(2751), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2751), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2751), + [sym_preproc_directive] = ACTIONS(2751), + [anon_sym_LPAREN2] = ACTIONS(2753), + [anon_sym_BANG] = ACTIONS(2753), + [anon_sym_TILDE] = ACTIONS(2753), + [anon_sym_DASH] = ACTIONS(2751), + [anon_sym_PLUS] = ACTIONS(2751), + [anon_sym_STAR] = ACTIONS(2753), + [anon_sym_AMP_AMP] = ACTIONS(2753), + [anon_sym_AMP] = ACTIONS(2751), + [anon_sym_SEMI] = ACTIONS(2753), + [anon_sym___extension__] = ACTIONS(2751), + [anon_sym_typedef] = ACTIONS(2751), + [anon_sym_virtual] = ACTIONS(2751), + [anon_sym_extern] = ACTIONS(2751), + [anon_sym___attribute__] = ACTIONS(2751), + [anon_sym___attribute] = ACTIONS(2751), + [anon_sym_using] = ACTIONS(2751), + [anon_sym_COLON_COLON] = ACTIONS(2753), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2753), + [anon_sym___declspec] = ACTIONS(2751), + [anon_sym___based] = ACTIONS(2751), + [anon_sym___cdecl] = ACTIONS(2751), + [anon_sym___clrcall] = ACTIONS(2751), + [anon_sym___stdcall] = ACTIONS(2751), + [anon_sym___fastcall] = ACTIONS(2751), + [anon_sym___thiscall] = ACTIONS(2751), + [anon_sym___vectorcall] = ACTIONS(2751), + [anon_sym_LBRACE] = ACTIONS(2753), + [anon_sym_signed] = ACTIONS(2751), + [anon_sym_unsigned] = ACTIONS(2751), + [anon_sym_long] = ACTIONS(2751), + [anon_sym_short] = ACTIONS(2751), + [anon_sym_LBRACK] = ACTIONS(2751), + [anon_sym_static] = ACTIONS(2751), + [anon_sym_register] = ACTIONS(2751), + [anon_sym_inline] = ACTIONS(2751), + [anon_sym___inline] = ACTIONS(2751), + [anon_sym___inline__] = ACTIONS(2751), + [anon_sym___forceinline] = ACTIONS(2751), + [anon_sym_thread_local] = ACTIONS(2751), + [anon_sym___thread] = ACTIONS(2751), + [anon_sym_const] = ACTIONS(2751), + [anon_sym_constexpr] = ACTIONS(2751), + [anon_sym_volatile] = ACTIONS(2751), + [anon_sym_restrict] = ACTIONS(2751), + [anon_sym___restrict__] = ACTIONS(2751), + [anon_sym__Atomic] = ACTIONS(2751), + [anon_sym__Noreturn] = ACTIONS(2751), + [anon_sym_noreturn] = ACTIONS(2751), + [anon_sym__Nonnull] = ACTIONS(2751), + [anon_sym_mutable] = ACTIONS(2751), + [anon_sym_constinit] = ACTIONS(2751), + [anon_sym_consteval] = ACTIONS(2751), + [anon_sym_alignas] = ACTIONS(2751), + [anon_sym__Alignas] = ACTIONS(2751), + [sym_primitive_type] = ACTIONS(2751), + [anon_sym_enum] = ACTIONS(2751), + [anon_sym_class] = ACTIONS(2751), + [anon_sym_struct] = ACTIONS(2751), + [anon_sym_union] = ACTIONS(2751), + [anon_sym_if] = ACTIONS(2751), + [anon_sym_else] = ACTIONS(2751), + [anon_sym_switch] = ACTIONS(2751), + [anon_sym_case] = ACTIONS(2751), + [anon_sym_default] = ACTIONS(2751), + [anon_sym_while] = ACTIONS(2751), + [anon_sym_do] = ACTIONS(2751), + [anon_sym_for] = ACTIONS(2751), + [anon_sym_return] = ACTIONS(2751), + [anon_sym_break] = ACTIONS(2751), + [anon_sym_continue] = ACTIONS(2751), + [anon_sym_goto] = ACTIONS(2751), + [anon_sym___try] = ACTIONS(2751), + [anon_sym___leave] = ACTIONS(2751), + [anon_sym_not] = ACTIONS(2751), + [anon_sym_compl] = ACTIONS(2751), + [anon_sym_DASH_DASH] = ACTIONS(2753), + [anon_sym_PLUS_PLUS] = ACTIONS(2753), + [anon_sym_sizeof] = ACTIONS(2751), + [anon_sym___alignof__] = ACTIONS(2751), + [anon_sym___alignof] = ACTIONS(2751), + [anon_sym__alignof] = ACTIONS(2751), + [anon_sym_alignof] = ACTIONS(2751), + [anon_sym__Alignof] = ACTIONS(2751), + [anon_sym_offsetof] = ACTIONS(2751), + [anon_sym__Generic] = ACTIONS(2751), + [anon_sym_asm] = ACTIONS(2751), + [anon_sym___asm__] = ACTIONS(2751), + [anon_sym___asm] = ACTIONS(2751), + [sym_number_literal] = ACTIONS(2753), + [anon_sym_L_SQUOTE] = ACTIONS(2753), + [anon_sym_u_SQUOTE] = ACTIONS(2753), + [anon_sym_U_SQUOTE] = ACTIONS(2753), + [anon_sym_u8_SQUOTE] = ACTIONS(2753), + [anon_sym_SQUOTE] = ACTIONS(2753), + [anon_sym_L_DQUOTE] = ACTIONS(2753), + [anon_sym_u_DQUOTE] = ACTIONS(2753), + [anon_sym_U_DQUOTE] = ACTIONS(2753), + [anon_sym_u8_DQUOTE] = ACTIONS(2753), + [anon_sym_DQUOTE] = ACTIONS(2753), + [sym_true] = ACTIONS(2751), + [sym_false] = ACTIONS(2751), + [anon_sym_NULL] = ACTIONS(2751), + [anon_sym_nullptr] = ACTIONS(2751), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2751), + [anon_sym_decltype] = ACTIONS(2751), + [anon_sym_explicit] = ACTIONS(2751), + [anon_sym_typename] = ACTIONS(2751), + [anon_sym_export] = ACTIONS(2751), + [anon_sym_module] = ACTIONS(2751), + [anon_sym_import] = ACTIONS(2751), + [anon_sym_template] = ACTIONS(2751), + [anon_sym_operator] = ACTIONS(2751), + [anon_sym_try] = ACTIONS(2751), + [anon_sym_delete] = ACTIONS(2751), + [anon_sym_throw] = ACTIONS(2751), + [anon_sym_namespace] = ACTIONS(2751), + [anon_sym_static_assert] = ACTIONS(2751), + [anon_sym_concept] = ACTIONS(2751), + [anon_sym_co_return] = ACTIONS(2751), + [anon_sym_co_yield] = ACTIONS(2751), + [anon_sym_R_DQUOTE] = ACTIONS(2753), + [anon_sym_LR_DQUOTE] = ACTIONS(2753), + [anon_sym_uR_DQUOTE] = ACTIONS(2753), + [anon_sym_UR_DQUOTE] = ACTIONS(2753), + [anon_sym_u8R_DQUOTE] = ACTIONS(2753), + [anon_sym_co_await] = ACTIONS(2751), + [anon_sym_new] = ACTIONS(2751), + [anon_sym_requires] = ACTIONS(2751), + [sym_this] = ACTIONS(2751), + }, + [303] = { + [ts_builtin_sym_end] = ACTIONS(2765), + [sym_identifier] = ACTIONS(2763), + [aux_sym_preproc_include_token1] = ACTIONS(2763), + [aux_sym_preproc_def_token1] = ACTIONS(2763), + [aux_sym_preproc_if_token1] = ACTIONS(2763), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2763), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2763), + [sym_preproc_directive] = ACTIONS(2763), + [anon_sym_LPAREN2] = ACTIONS(2765), + [anon_sym_BANG] = ACTIONS(2765), + [anon_sym_TILDE] = ACTIONS(2765), + [anon_sym_DASH] = ACTIONS(2763), + [anon_sym_PLUS] = ACTIONS(2763), + [anon_sym_STAR] = ACTIONS(2765), + [anon_sym_AMP_AMP] = ACTIONS(2765), + [anon_sym_AMP] = ACTIONS(2763), + [anon_sym_SEMI] = ACTIONS(2765), + [anon_sym___extension__] = ACTIONS(2763), + [anon_sym_typedef] = ACTIONS(2763), + [anon_sym_virtual] = ACTIONS(2763), + [anon_sym_extern] = ACTIONS(2763), + [anon_sym___attribute__] = ACTIONS(2763), + [anon_sym___attribute] = ACTIONS(2763), + [anon_sym_using] = ACTIONS(2763), + [anon_sym_COLON_COLON] = ACTIONS(2765), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2765), + [anon_sym___declspec] = ACTIONS(2763), + [anon_sym___based] = ACTIONS(2763), + [anon_sym___cdecl] = ACTIONS(2763), + [anon_sym___clrcall] = ACTIONS(2763), + [anon_sym___stdcall] = ACTIONS(2763), + [anon_sym___fastcall] = ACTIONS(2763), + [anon_sym___thiscall] = ACTIONS(2763), + [anon_sym___vectorcall] = ACTIONS(2763), + [anon_sym_LBRACE] = ACTIONS(2765), + [anon_sym_signed] = ACTIONS(2763), + [anon_sym_unsigned] = ACTIONS(2763), + [anon_sym_long] = ACTIONS(2763), + [anon_sym_short] = ACTIONS(2763), + [anon_sym_LBRACK] = ACTIONS(2763), + [anon_sym_static] = ACTIONS(2763), + [anon_sym_register] = ACTIONS(2763), + [anon_sym_inline] = ACTIONS(2763), + [anon_sym___inline] = ACTIONS(2763), + [anon_sym___inline__] = ACTIONS(2763), + [anon_sym___forceinline] = ACTIONS(2763), + [anon_sym_thread_local] = ACTIONS(2763), + [anon_sym___thread] = ACTIONS(2763), + [anon_sym_const] = ACTIONS(2763), + [anon_sym_constexpr] = ACTIONS(2763), + [anon_sym_volatile] = ACTIONS(2763), + [anon_sym_restrict] = ACTIONS(2763), + [anon_sym___restrict__] = ACTIONS(2763), + [anon_sym__Atomic] = ACTIONS(2763), + [anon_sym__Noreturn] = ACTIONS(2763), + [anon_sym_noreturn] = ACTIONS(2763), + [anon_sym__Nonnull] = ACTIONS(2763), + [anon_sym_mutable] = ACTIONS(2763), + [anon_sym_constinit] = ACTIONS(2763), + [anon_sym_consteval] = ACTIONS(2763), + [anon_sym_alignas] = ACTIONS(2763), + [anon_sym__Alignas] = ACTIONS(2763), + [sym_primitive_type] = ACTIONS(2763), + [anon_sym_enum] = ACTIONS(2763), + [anon_sym_class] = ACTIONS(2763), + [anon_sym_struct] = ACTIONS(2763), + [anon_sym_union] = ACTIONS(2763), + [anon_sym_if] = ACTIONS(2763), + [anon_sym_else] = ACTIONS(2763), + [anon_sym_switch] = ACTIONS(2763), + [anon_sym_case] = ACTIONS(2763), + [anon_sym_default] = ACTIONS(2763), + [anon_sym_while] = ACTIONS(2763), + [anon_sym_do] = ACTIONS(2763), + [anon_sym_for] = ACTIONS(2763), + [anon_sym_return] = ACTIONS(2763), + [anon_sym_break] = ACTIONS(2763), + [anon_sym_continue] = ACTIONS(2763), + [anon_sym_goto] = ACTIONS(2763), + [anon_sym___try] = ACTIONS(2763), + [anon_sym___leave] = ACTIONS(2763), + [anon_sym_not] = ACTIONS(2763), + [anon_sym_compl] = ACTIONS(2763), + [anon_sym_DASH_DASH] = ACTIONS(2765), + [anon_sym_PLUS_PLUS] = ACTIONS(2765), + [anon_sym_sizeof] = ACTIONS(2763), + [anon_sym___alignof__] = ACTIONS(2763), + [anon_sym___alignof] = ACTIONS(2763), + [anon_sym__alignof] = ACTIONS(2763), + [anon_sym_alignof] = ACTIONS(2763), + [anon_sym__Alignof] = ACTIONS(2763), + [anon_sym_offsetof] = ACTIONS(2763), + [anon_sym__Generic] = ACTIONS(2763), + [anon_sym_asm] = ACTIONS(2763), + [anon_sym___asm__] = ACTIONS(2763), + [anon_sym___asm] = ACTIONS(2763), + [sym_number_literal] = ACTIONS(2765), + [anon_sym_L_SQUOTE] = ACTIONS(2765), + [anon_sym_u_SQUOTE] = ACTIONS(2765), + [anon_sym_U_SQUOTE] = ACTIONS(2765), + [anon_sym_u8_SQUOTE] = ACTIONS(2765), + [anon_sym_SQUOTE] = ACTIONS(2765), + [anon_sym_L_DQUOTE] = ACTIONS(2765), + [anon_sym_u_DQUOTE] = ACTIONS(2765), + [anon_sym_U_DQUOTE] = ACTIONS(2765), + [anon_sym_u8_DQUOTE] = ACTIONS(2765), + [anon_sym_DQUOTE] = ACTIONS(2765), + [sym_true] = ACTIONS(2763), + [sym_false] = ACTIONS(2763), + [anon_sym_NULL] = ACTIONS(2763), + [anon_sym_nullptr] = ACTIONS(2763), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2763), + [anon_sym_decltype] = ACTIONS(2763), + [anon_sym_explicit] = ACTIONS(2763), + [anon_sym_typename] = ACTIONS(2763), + [anon_sym_export] = ACTIONS(2763), + [anon_sym_module] = ACTIONS(2763), + [anon_sym_import] = ACTIONS(2763), + [anon_sym_template] = ACTIONS(2763), + [anon_sym_operator] = ACTIONS(2763), + [anon_sym_try] = ACTIONS(2763), + [anon_sym_delete] = ACTIONS(2763), + [anon_sym_throw] = ACTIONS(2763), + [anon_sym_namespace] = ACTIONS(2763), + [anon_sym_static_assert] = ACTIONS(2763), + [anon_sym_concept] = ACTIONS(2763), + [anon_sym_co_return] = ACTIONS(2763), + [anon_sym_co_yield] = ACTIONS(2763), + [anon_sym_R_DQUOTE] = ACTIONS(2765), + [anon_sym_LR_DQUOTE] = ACTIONS(2765), + [anon_sym_uR_DQUOTE] = ACTIONS(2765), + [anon_sym_UR_DQUOTE] = ACTIONS(2765), + [anon_sym_u8R_DQUOTE] = ACTIONS(2765), + [anon_sym_co_await] = ACTIONS(2763), + [anon_sym_new] = ACTIONS(2763), + [anon_sym_requires] = ACTIONS(2763), + [sym_this] = ACTIONS(2763), + }, [304] = { + [ts_builtin_sym_end] = ACTIONS(2665), + [sym_identifier] = ACTIONS(2663), + [aux_sym_preproc_include_token1] = ACTIONS(2663), + [aux_sym_preproc_def_token1] = ACTIONS(2663), + [aux_sym_preproc_if_token1] = ACTIONS(2663), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2663), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2663), + [sym_preproc_directive] = ACTIONS(2663), + [anon_sym_LPAREN2] = ACTIONS(2665), + [anon_sym_BANG] = ACTIONS(2665), + [anon_sym_TILDE] = ACTIONS(2665), + [anon_sym_DASH] = ACTIONS(2663), + [anon_sym_PLUS] = ACTIONS(2663), + [anon_sym_STAR] = ACTIONS(2665), + [anon_sym_AMP_AMP] = ACTIONS(2665), + [anon_sym_AMP] = ACTIONS(2663), + [anon_sym_SEMI] = ACTIONS(2665), + [anon_sym___extension__] = ACTIONS(2663), + [anon_sym_typedef] = ACTIONS(2663), + [anon_sym_virtual] = ACTIONS(2663), + [anon_sym_extern] = ACTIONS(2663), + [anon_sym___attribute__] = ACTIONS(2663), + [anon_sym___attribute] = ACTIONS(2663), + [anon_sym_using] = ACTIONS(2663), + [anon_sym_COLON_COLON] = ACTIONS(2665), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2665), + [anon_sym___declspec] = ACTIONS(2663), + [anon_sym___based] = ACTIONS(2663), + [anon_sym___cdecl] = ACTIONS(2663), + [anon_sym___clrcall] = ACTIONS(2663), + [anon_sym___stdcall] = ACTIONS(2663), + [anon_sym___fastcall] = ACTIONS(2663), + [anon_sym___thiscall] = ACTIONS(2663), + [anon_sym___vectorcall] = ACTIONS(2663), + [anon_sym_LBRACE] = ACTIONS(2665), + [anon_sym_signed] = ACTIONS(2663), + [anon_sym_unsigned] = ACTIONS(2663), + [anon_sym_long] = ACTIONS(2663), + [anon_sym_short] = ACTIONS(2663), + [anon_sym_LBRACK] = ACTIONS(2663), + [anon_sym_static] = ACTIONS(2663), + [anon_sym_register] = ACTIONS(2663), + [anon_sym_inline] = ACTIONS(2663), + [anon_sym___inline] = ACTIONS(2663), + [anon_sym___inline__] = ACTIONS(2663), + [anon_sym___forceinline] = ACTIONS(2663), + [anon_sym_thread_local] = ACTIONS(2663), + [anon_sym___thread] = ACTIONS(2663), + [anon_sym_const] = ACTIONS(2663), + [anon_sym_constexpr] = ACTIONS(2663), + [anon_sym_volatile] = ACTIONS(2663), + [anon_sym_restrict] = ACTIONS(2663), + [anon_sym___restrict__] = ACTIONS(2663), + [anon_sym__Atomic] = ACTIONS(2663), + [anon_sym__Noreturn] = ACTIONS(2663), + [anon_sym_noreturn] = ACTIONS(2663), + [anon_sym__Nonnull] = ACTIONS(2663), + [anon_sym_mutable] = ACTIONS(2663), + [anon_sym_constinit] = ACTIONS(2663), + [anon_sym_consteval] = ACTIONS(2663), + [anon_sym_alignas] = ACTIONS(2663), + [anon_sym__Alignas] = ACTIONS(2663), + [sym_primitive_type] = ACTIONS(2663), + [anon_sym_enum] = ACTIONS(2663), + [anon_sym_class] = ACTIONS(2663), + [anon_sym_struct] = ACTIONS(2663), + [anon_sym_union] = ACTIONS(2663), + [anon_sym_if] = ACTIONS(2663), + [anon_sym_else] = ACTIONS(2663), + [anon_sym_switch] = ACTIONS(2663), + [anon_sym_case] = ACTIONS(2663), + [anon_sym_default] = ACTIONS(2663), + [anon_sym_while] = ACTIONS(2663), + [anon_sym_do] = ACTIONS(2663), + [anon_sym_for] = ACTIONS(2663), + [anon_sym_return] = ACTIONS(2663), + [anon_sym_break] = ACTIONS(2663), + [anon_sym_continue] = ACTIONS(2663), + [anon_sym_goto] = ACTIONS(2663), + [anon_sym___try] = ACTIONS(2663), + [anon_sym___leave] = ACTIONS(2663), + [anon_sym_not] = ACTIONS(2663), + [anon_sym_compl] = ACTIONS(2663), + [anon_sym_DASH_DASH] = ACTIONS(2665), + [anon_sym_PLUS_PLUS] = ACTIONS(2665), + [anon_sym_sizeof] = ACTIONS(2663), + [anon_sym___alignof__] = ACTIONS(2663), + [anon_sym___alignof] = ACTIONS(2663), + [anon_sym__alignof] = ACTIONS(2663), + [anon_sym_alignof] = ACTIONS(2663), + [anon_sym__Alignof] = ACTIONS(2663), + [anon_sym_offsetof] = ACTIONS(2663), + [anon_sym__Generic] = ACTIONS(2663), + [anon_sym_asm] = ACTIONS(2663), + [anon_sym___asm__] = ACTIONS(2663), + [anon_sym___asm] = ACTIONS(2663), + [sym_number_literal] = ACTIONS(2665), + [anon_sym_L_SQUOTE] = ACTIONS(2665), + [anon_sym_u_SQUOTE] = ACTIONS(2665), + [anon_sym_U_SQUOTE] = ACTIONS(2665), + [anon_sym_u8_SQUOTE] = ACTIONS(2665), + [anon_sym_SQUOTE] = ACTIONS(2665), + [anon_sym_L_DQUOTE] = ACTIONS(2665), + [anon_sym_u_DQUOTE] = ACTIONS(2665), + [anon_sym_U_DQUOTE] = ACTIONS(2665), + [anon_sym_u8_DQUOTE] = ACTIONS(2665), + [anon_sym_DQUOTE] = ACTIONS(2665), + [sym_true] = ACTIONS(2663), + [sym_false] = ACTIONS(2663), + [anon_sym_NULL] = ACTIONS(2663), + [anon_sym_nullptr] = ACTIONS(2663), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2663), + [anon_sym_decltype] = ACTIONS(2663), + [anon_sym_explicit] = ACTIONS(2663), + [anon_sym_typename] = ACTIONS(2663), + [anon_sym_export] = ACTIONS(2663), + [anon_sym_module] = ACTIONS(2663), + [anon_sym_import] = ACTIONS(2663), + [anon_sym_template] = ACTIONS(2663), + [anon_sym_operator] = ACTIONS(2663), + [anon_sym_try] = ACTIONS(2663), + [anon_sym_delete] = ACTIONS(2663), + [anon_sym_throw] = ACTIONS(2663), + [anon_sym_namespace] = ACTIONS(2663), + [anon_sym_static_assert] = ACTIONS(2663), + [anon_sym_concept] = ACTIONS(2663), + [anon_sym_co_return] = ACTIONS(2663), + [anon_sym_co_yield] = ACTIONS(2663), + [anon_sym_R_DQUOTE] = ACTIONS(2665), + [anon_sym_LR_DQUOTE] = ACTIONS(2665), + [anon_sym_uR_DQUOTE] = ACTIONS(2665), + [anon_sym_UR_DQUOTE] = ACTIONS(2665), + [anon_sym_u8R_DQUOTE] = ACTIONS(2665), + [anon_sym_co_await] = ACTIONS(2663), + [anon_sym_new] = ACTIONS(2663), + [anon_sym_requires] = ACTIONS(2663), + [sym_this] = ACTIONS(2663), + }, + [305] = { [sym_identifier] = ACTIONS(2835), [aux_sym_preproc_include_token1] = ACTIONS(2835), [aux_sym_preproc_def_token1] = ACTIONS(2835), @@ -87766,7 +88193,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2835), [sym_this] = ACTIONS(2835), }, - [305] = { + [306] = { [sym_identifier] = ACTIONS(2839), [aux_sym_preproc_include_token1] = ACTIONS(2839), [aux_sym_preproc_def_token1] = ACTIONS(2839), @@ -87906,147 +88333,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2839), [sym_this] = ACTIONS(2839), }, - [306] = { - [sym_identifier] = ACTIONS(2843), - [aux_sym_preproc_include_token1] = ACTIONS(2843), - [aux_sym_preproc_def_token1] = ACTIONS(2843), - [aux_sym_preproc_if_token1] = ACTIONS(2843), - [aux_sym_preproc_if_token2] = ACTIONS(2843), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2843), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2843), - [aux_sym_preproc_else_token1] = ACTIONS(2843), - [aux_sym_preproc_elif_token1] = ACTIONS(2843), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2843), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2843), - [sym_preproc_directive] = ACTIONS(2843), - [anon_sym_LPAREN2] = ACTIONS(2845), - [anon_sym_BANG] = ACTIONS(2845), - [anon_sym_TILDE] = ACTIONS(2845), - [anon_sym_DASH] = ACTIONS(2843), - [anon_sym_PLUS] = ACTIONS(2843), - [anon_sym_STAR] = ACTIONS(2845), - [anon_sym_AMP_AMP] = ACTIONS(2845), - [anon_sym_AMP] = ACTIONS(2843), - [anon_sym_SEMI] = ACTIONS(2845), - [anon_sym___extension__] = ACTIONS(2843), - [anon_sym_typedef] = ACTIONS(2843), - [anon_sym_virtual] = ACTIONS(2843), - [anon_sym_extern] = ACTIONS(2843), - [anon_sym___attribute__] = ACTIONS(2843), - [anon_sym___attribute] = ACTIONS(2843), - [anon_sym_using] = ACTIONS(2843), - [anon_sym_COLON_COLON] = ACTIONS(2845), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2845), - [anon_sym___declspec] = ACTIONS(2843), - [anon_sym___based] = ACTIONS(2843), - [anon_sym___cdecl] = ACTIONS(2843), - [anon_sym___clrcall] = ACTIONS(2843), - [anon_sym___stdcall] = ACTIONS(2843), - [anon_sym___fastcall] = ACTIONS(2843), - [anon_sym___thiscall] = ACTIONS(2843), - [anon_sym___vectorcall] = ACTIONS(2843), - [anon_sym_LBRACE] = ACTIONS(2845), - [anon_sym_signed] = ACTIONS(2843), - [anon_sym_unsigned] = ACTIONS(2843), - [anon_sym_long] = ACTIONS(2843), - [anon_sym_short] = ACTIONS(2843), - [anon_sym_LBRACK] = ACTIONS(2843), - [anon_sym_static] = ACTIONS(2843), - [anon_sym_register] = ACTIONS(2843), - [anon_sym_inline] = ACTIONS(2843), - [anon_sym___inline] = ACTIONS(2843), - [anon_sym___inline__] = ACTIONS(2843), - [anon_sym___forceinline] = ACTIONS(2843), - [anon_sym_thread_local] = ACTIONS(2843), - [anon_sym___thread] = ACTIONS(2843), - [anon_sym_const] = ACTIONS(2843), - [anon_sym_constexpr] = ACTIONS(2843), - [anon_sym_volatile] = ACTIONS(2843), - [anon_sym_restrict] = ACTIONS(2843), - [anon_sym___restrict__] = ACTIONS(2843), - [anon_sym__Atomic] = ACTIONS(2843), - [anon_sym__Noreturn] = ACTIONS(2843), - [anon_sym_noreturn] = ACTIONS(2843), - [anon_sym__Nonnull] = ACTIONS(2843), - [anon_sym_mutable] = ACTIONS(2843), - [anon_sym_constinit] = ACTIONS(2843), - [anon_sym_consteval] = ACTIONS(2843), - [anon_sym_alignas] = ACTIONS(2843), - [anon_sym__Alignas] = ACTIONS(2843), - [sym_primitive_type] = ACTIONS(2843), - [anon_sym_enum] = ACTIONS(2843), - [anon_sym_class] = ACTIONS(2843), - [anon_sym_struct] = ACTIONS(2843), - [anon_sym_union] = ACTIONS(2843), - [anon_sym_if] = ACTIONS(2843), - [anon_sym_switch] = ACTIONS(2843), - [anon_sym_case] = ACTIONS(2843), - [anon_sym_default] = ACTIONS(2843), - [anon_sym_while] = ACTIONS(2843), - [anon_sym_do] = ACTIONS(2843), - [anon_sym_for] = ACTIONS(2843), - [anon_sym_return] = ACTIONS(2843), - [anon_sym_break] = ACTIONS(2843), - [anon_sym_continue] = ACTIONS(2843), - [anon_sym_goto] = ACTIONS(2843), - [anon_sym___try] = ACTIONS(2843), - [anon_sym___leave] = ACTIONS(2843), - [anon_sym_not] = ACTIONS(2843), - [anon_sym_compl] = ACTIONS(2843), - [anon_sym_DASH_DASH] = ACTIONS(2845), - [anon_sym_PLUS_PLUS] = ACTIONS(2845), - [anon_sym_sizeof] = ACTIONS(2843), - [anon_sym___alignof__] = ACTIONS(2843), - [anon_sym___alignof] = ACTIONS(2843), - [anon_sym__alignof] = ACTIONS(2843), - [anon_sym_alignof] = ACTIONS(2843), - [anon_sym__Alignof] = ACTIONS(2843), - [anon_sym_offsetof] = ACTIONS(2843), - [anon_sym__Generic] = ACTIONS(2843), - [anon_sym_asm] = ACTIONS(2843), - [anon_sym___asm__] = ACTIONS(2843), - [anon_sym___asm] = ACTIONS(2843), - [sym_number_literal] = ACTIONS(2845), - [anon_sym_L_SQUOTE] = ACTIONS(2845), - [anon_sym_u_SQUOTE] = ACTIONS(2845), - [anon_sym_U_SQUOTE] = ACTIONS(2845), - [anon_sym_u8_SQUOTE] = ACTIONS(2845), - [anon_sym_SQUOTE] = ACTIONS(2845), - [anon_sym_L_DQUOTE] = ACTIONS(2845), - [anon_sym_u_DQUOTE] = ACTIONS(2845), - [anon_sym_U_DQUOTE] = ACTIONS(2845), - [anon_sym_u8_DQUOTE] = ACTIONS(2845), - [anon_sym_DQUOTE] = ACTIONS(2845), - [sym_true] = ACTIONS(2843), - [sym_false] = ACTIONS(2843), - [anon_sym_NULL] = ACTIONS(2843), - [anon_sym_nullptr] = ACTIONS(2843), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2843), - [anon_sym_decltype] = ACTIONS(2843), - [anon_sym_explicit] = ACTIONS(2843), - [anon_sym_typename] = ACTIONS(2843), - [anon_sym_template] = ACTIONS(2843), - [anon_sym_operator] = ACTIONS(2843), - [anon_sym_try] = ACTIONS(2843), - [anon_sym_delete] = ACTIONS(2843), - [anon_sym_throw] = ACTIONS(2843), - [anon_sym_namespace] = ACTIONS(2843), - [anon_sym_static_assert] = ACTIONS(2843), - [anon_sym_concept] = ACTIONS(2843), - [anon_sym_co_return] = ACTIONS(2843), - [anon_sym_co_yield] = ACTIONS(2843), - [anon_sym_R_DQUOTE] = ACTIONS(2845), - [anon_sym_LR_DQUOTE] = ACTIONS(2845), - [anon_sym_uR_DQUOTE] = ACTIONS(2845), - [anon_sym_UR_DQUOTE] = ACTIONS(2845), - [anon_sym_u8R_DQUOTE] = ACTIONS(2845), - [anon_sym_co_await] = ACTIONS(2843), - [anon_sym_new] = ACTIONS(2843), - [anon_sym_requires] = ACTIONS(2843), - [sym_this] = ACTIONS(2843), - }, [307] = { + [ts_builtin_sym_end] = ACTIONS(2665), + [sym_identifier] = ACTIONS(2663), + [aux_sym_preproc_include_token1] = ACTIONS(2663), + [aux_sym_preproc_def_token1] = ACTIONS(2663), + [aux_sym_preproc_if_token1] = ACTIONS(2663), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2663), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2663), + [sym_preproc_directive] = ACTIONS(2663), + [anon_sym_LPAREN2] = ACTIONS(2665), + [anon_sym_BANG] = ACTIONS(2665), + [anon_sym_TILDE] = ACTIONS(2665), + [anon_sym_DASH] = ACTIONS(2663), + [anon_sym_PLUS] = ACTIONS(2663), + [anon_sym_STAR] = ACTIONS(2665), + [anon_sym_AMP_AMP] = ACTIONS(2665), + [anon_sym_AMP] = ACTIONS(2663), + [anon_sym_SEMI] = ACTIONS(2665), + [anon_sym___extension__] = ACTIONS(2663), + [anon_sym_typedef] = ACTIONS(2663), + [anon_sym_virtual] = ACTIONS(2663), + [anon_sym_extern] = ACTIONS(2663), + [anon_sym___attribute__] = ACTIONS(2663), + [anon_sym___attribute] = ACTIONS(2663), + [anon_sym_using] = ACTIONS(2663), + [anon_sym_COLON_COLON] = ACTIONS(2665), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2665), + [anon_sym___declspec] = ACTIONS(2663), + [anon_sym___based] = ACTIONS(2663), + [anon_sym___cdecl] = ACTIONS(2663), + [anon_sym___clrcall] = ACTIONS(2663), + [anon_sym___stdcall] = ACTIONS(2663), + [anon_sym___fastcall] = ACTIONS(2663), + [anon_sym___thiscall] = ACTIONS(2663), + [anon_sym___vectorcall] = ACTIONS(2663), + [anon_sym_LBRACE] = ACTIONS(2665), + [anon_sym_signed] = ACTIONS(2663), + [anon_sym_unsigned] = ACTIONS(2663), + [anon_sym_long] = ACTIONS(2663), + [anon_sym_short] = ACTIONS(2663), + [anon_sym_LBRACK] = ACTIONS(2663), + [anon_sym_static] = ACTIONS(2663), + [anon_sym_register] = ACTIONS(2663), + [anon_sym_inline] = ACTIONS(2663), + [anon_sym___inline] = ACTIONS(2663), + [anon_sym___inline__] = ACTIONS(2663), + [anon_sym___forceinline] = ACTIONS(2663), + [anon_sym_thread_local] = ACTIONS(2663), + [anon_sym___thread] = ACTIONS(2663), + [anon_sym_const] = ACTIONS(2663), + [anon_sym_constexpr] = ACTIONS(2663), + [anon_sym_volatile] = ACTIONS(2663), + [anon_sym_restrict] = ACTIONS(2663), + [anon_sym___restrict__] = ACTIONS(2663), + [anon_sym__Atomic] = ACTIONS(2663), + [anon_sym__Noreturn] = ACTIONS(2663), + [anon_sym_noreturn] = ACTIONS(2663), + [anon_sym__Nonnull] = ACTIONS(2663), + [anon_sym_mutable] = ACTIONS(2663), + [anon_sym_constinit] = ACTIONS(2663), + [anon_sym_consteval] = ACTIONS(2663), + [anon_sym_alignas] = ACTIONS(2663), + [anon_sym__Alignas] = ACTIONS(2663), + [sym_primitive_type] = ACTIONS(2663), + [anon_sym_enum] = ACTIONS(2663), + [anon_sym_class] = ACTIONS(2663), + [anon_sym_struct] = ACTIONS(2663), + [anon_sym_union] = ACTIONS(2663), + [anon_sym_if] = ACTIONS(2663), + [anon_sym_else] = ACTIONS(2663), + [anon_sym_switch] = ACTIONS(2663), + [anon_sym_case] = ACTIONS(2663), + [anon_sym_default] = ACTIONS(2663), + [anon_sym_while] = ACTIONS(2663), + [anon_sym_do] = ACTIONS(2663), + [anon_sym_for] = ACTIONS(2663), + [anon_sym_return] = ACTIONS(2663), + [anon_sym_break] = ACTIONS(2663), + [anon_sym_continue] = ACTIONS(2663), + [anon_sym_goto] = ACTIONS(2663), + [anon_sym___try] = ACTIONS(2663), + [anon_sym___leave] = ACTIONS(2663), + [anon_sym_not] = ACTIONS(2663), + [anon_sym_compl] = ACTIONS(2663), + [anon_sym_DASH_DASH] = ACTIONS(2665), + [anon_sym_PLUS_PLUS] = ACTIONS(2665), + [anon_sym_sizeof] = ACTIONS(2663), + [anon_sym___alignof__] = ACTIONS(2663), + [anon_sym___alignof] = ACTIONS(2663), + [anon_sym__alignof] = ACTIONS(2663), + [anon_sym_alignof] = ACTIONS(2663), + [anon_sym__Alignof] = ACTIONS(2663), + [anon_sym_offsetof] = ACTIONS(2663), + [anon_sym__Generic] = ACTIONS(2663), + [anon_sym_asm] = ACTIONS(2663), + [anon_sym___asm__] = ACTIONS(2663), + [anon_sym___asm] = ACTIONS(2663), + [sym_number_literal] = ACTIONS(2665), + [anon_sym_L_SQUOTE] = ACTIONS(2665), + [anon_sym_u_SQUOTE] = ACTIONS(2665), + [anon_sym_U_SQUOTE] = ACTIONS(2665), + [anon_sym_u8_SQUOTE] = ACTIONS(2665), + [anon_sym_SQUOTE] = ACTIONS(2665), + [anon_sym_L_DQUOTE] = ACTIONS(2665), + [anon_sym_u_DQUOTE] = ACTIONS(2665), + [anon_sym_U_DQUOTE] = ACTIONS(2665), + [anon_sym_u8_DQUOTE] = ACTIONS(2665), + [anon_sym_DQUOTE] = ACTIONS(2665), + [sym_true] = ACTIONS(2663), + [sym_false] = ACTIONS(2663), + [anon_sym_NULL] = ACTIONS(2663), + [anon_sym_nullptr] = ACTIONS(2663), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2663), + [anon_sym_decltype] = ACTIONS(2663), + [anon_sym_explicit] = ACTIONS(2663), + [anon_sym_typename] = ACTIONS(2663), + [anon_sym_export] = ACTIONS(2663), + [anon_sym_module] = ACTIONS(2663), + [anon_sym_import] = ACTIONS(2663), + [anon_sym_template] = ACTIONS(2663), + [anon_sym_operator] = ACTIONS(2663), + [anon_sym_try] = ACTIONS(2663), + [anon_sym_delete] = ACTIONS(2663), + [anon_sym_throw] = ACTIONS(2663), + [anon_sym_namespace] = ACTIONS(2663), + [anon_sym_static_assert] = ACTIONS(2663), + [anon_sym_concept] = ACTIONS(2663), + [anon_sym_co_return] = ACTIONS(2663), + [anon_sym_co_yield] = ACTIONS(2663), + [anon_sym_R_DQUOTE] = ACTIONS(2665), + [anon_sym_LR_DQUOTE] = ACTIONS(2665), + [anon_sym_uR_DQUOTE] = ACTIONS(2665), + [anon_sym_UR_DQUOTE] = ACTIONS(2665), + [anon_sym_u8R_DQUOTE] = ACTIONS(2665), + [anon_sym_co_await] = ACTIONS(2663), + [anon_sym_new] = ACTIONS(2663), + [anon_sym_requires] = ACTIONS(2663), + [sym_this] = ACTIONS(2663), + }, + [308] = { [sym_identifier] = ACTIONS(2843), [aux_sym_preproc_include_token1] = ACTIONS(2843), [aux_sym_preproc_def_token1] = ACTIONS(2843), @@ -88186,7 +88613,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2843), [sym_this] = ACTIONS(2843), }, - [308] = { + [309] = { [sym_identifier] = ACTIONS(2847), [aux_sym_preproc_include_token1] = ACTIONS(2847), [aux_sym_preproc_def_token1] = ACTIONS(2847), @@ -88326,7 +88753,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2847), [sym_this] = ACTIONS(2847), }, - [309] = { + [310] = { [sym_identifier] = ACTIONS(2851), [aux_sym_preproc_include_token1] = ACTIONS(2851), [aux_sym_preproc_def_token1] = ACTIONS(2851), @@ -88466,7 +88893,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2851), [sym_this] = ACTIONS(2851), }, - [310] = { + [311] = { [sym_identifier] = ACTIONS(2855), [aux_sym_preproc_include_token1] = ACTIONS(2855), [aux_sym_preproc_def_token1] = ACTIONS(2855), @@ -88606,7 +89033,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2855), [sym_this] = ACTIONS(2855), }, - [311] = { + [312] = { + [sym_identifier] = ACTIONS(2855), + [aux_sym_preproc_include_token1] = ACTIONS(2855), + [aux_sym_preproc_def_token1] = ACTIONS(2855), + [aux_sym_preproc_if_token1] = ACTIONS(2855), + [aux_sym_preproc_if_token2] = ACTIONS(2855), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2855), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2855), + [aux_sym_preproc_else_token1] = ACTIONS(2855), + [aux_sym_preproc_elif_token1] = ACTIONS(2855), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2855), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2855), + [sym_preproc_directive] = ACTIONS(2855), + [anon_sym_LPAREN2] = ACTIONS(2857), + [anon_sym_BANG] = ACTIONS(2857), + [anon_sym_TILDE] = ACTIONS(2857), + [anon_sym_DASH] = ACTIONS(2855), + [anon_sym_PLUS] = ACTIONS(2855), + [anon_sym_STAR] = ACTIONS(2857), + [anon_sym_AMP_AMP] = ACTIONS(2857), + [anon_sym_AMP] = ACTIONS(2855), + [anon_sym_SEMI] = ACTIONS(2857), + [anon_sym___extension__] = ACTIONS(2855), + [anon_sym_typedef] = ACTIONS(2855), + [anon_sym_virtual] = ACTIONS(2855), + [anon_sym_extern] = ACTIONS(2855), + [anon_sym___attribute__] = ACTIONS(2855), + [anon_sym___attribute] = ACTIONS(2855), + [anon_sym_using] = ACTIONS(2855), + [anon_sym_COLON_COLON] = ACTIONS(2857), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2857), + [anon_sym___declspec] = ACTIONS(2855), + [anon_sym___based] = ACTIONS(2855), + [anon_sym___cdecl] = ACTIONS(2855), + [anon_sym___clrcall] = ACTIONS(2855), + [anon_sym___stdcall] = ACTIONS(2855), + [anon_sym___fastcall] = ACTIONS(2855), + [anon_sym___thiscall] = ACTIONS(2855), + [anon_sym___vectorcall] = ACTIONS(2855), + [anon_sym_LBRACE] = ACTIONS(2857), + [anon_sym_signed] = ACTIONS(2855), + [anon_sym_unsigned] = ACTIONS(2855), + [anon_sym_long] = ACTIONS(2855), + [anon_sym_short] = ACTIONS(2855), + [anon_sym_LBRACK] = ACTIONS(2855), + [anon_sym_static] = ACTIONS(2855), + [anon_sym_register] = ACTIONS(2855), + [anon_sym_inline] = ACTIONS(2855), + [anon_sym___inline] = ACTIONS(2855), + [anon_sym___inline__] = ACTIONS(2855), + [anon_sym___forceinline] = ACTIONS(2855), + [anon_sym_thread_local] = ACTIONS(2855), + [anon_sym___thread] = ACTIONS(2855), + [anon_sym_const] = ACTIONS(2855), + [anon_sym_constexpr] = ACTIONS(2855), + [anon_sym_volatile] = ACTIONS(2855), + [anon_sym_restrict] = ACTIONS(2855), + [anon_sym___restrict__] = ACTIONS(2855), + [anon_sym__Atomic] = ACTIONS(2855), + [anon_sym__Noreturn] = ACTIONS(2855), + [anon_sym_noreturn] = ACTIONS(2855), + [anon_sym__Nonnull] = ACTIONS(2855), + [anon_sym_mutable] = ACTIONS(2855), + [anon_sym_constinit] = ACTIONS(2855), + [anon_sym_consteval] = ACTIONS(2855), + [anon_sym_alignas] = ACTIONS(2855), + [anon_sym__Alignas] = ACTIONS(2855), + [sym_primitive_type] = ACTIONS(2855), + [anon_sym_enum] = ACTIONS(2855), + [anon_sym_class] = ACTIONS(2855), + [anon_sym_struct] = ACTIONS(2855), + [anon_sym_union] = ACTIONS(2855), + [anon_sym_if] = ACTIONS(2855), + [anon_sym_switch] = ACTIONS(2855), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_default] = ACTIONS(2855), + [anon_sym_while] = ACTIONS(2855), + [anon_sym_do] = ACTIONS(2855), + [anon_sym_for] = ACTIONS(2855), + [anon_sym_return] = ACTIONS(2855), + [anon_sym_break] = ACTIONS(2855), + [anon_sym_continue] = ACTIONS(2855), + [anon_sym_goto] = ACTIONS(2855), + [anon_sym___try] = ACTIONS(2855), + [anon_sym___leave] = ACTIONS(2855), + [anon_sym_not] = ACTIONS(2855), + [anon_sym_compl] = ACTIONS(2855), + [anon_sym_DASH_DASH] = ACTIONS(2857), + [anon_sym_PLUS_PLUS] = ACTIONS(2857), + [anon_sym_sizeof] = ACTIONS(2855), + [anon_sym___alignof__] = ACTIONS(2855), + [anon_sym___alignof] = ACTIONS(2855), + [anon_sym__alignof] = ACTIONS(2855), + [anon_sym_alignof] = ACTIONS(2855), + [anon_sym__Alignof] = ACTIONS(2855), + [anon_sym_offsetof] = ACTIONS(2855), + [anon_sym__Generic] = ACTIONS(2855), + [anon_sym_asm] = ACTIONS(2855), + [anon_sym___asm__] = ACTIONS(2855), + [anon_sym___asm] = ACTIONS(2855), + [sym_number_literal] = ACTIONS(2857), + [anon_sym_L_SQUOTE] = ACTIONS(2857), + [anon_sym_u_SQUOTE] = ACTIONS(2857), + [anon_sym_U_SQUOTE] = ACTIONS(2857), + [anon_sym_u8_SQUOTE] = ACTIONS(2857), + [anon_sym_SQUOTE] = ACTIONS(2857), + [anon_sym_L_DQUOTE] = ACTIONS(2857), + [anon_sym_u_DQUOTE] = ACTIONS(2857), + [anon_sym_U_DQUOTE] = ACTIONS(2857), + [anon_sym_u8_DQUOTE] = ACTIONS(2857), + [anon_sym_DQUOTE] = ACTIONS(2857), + [sym_true] = ACTIONS(2855), + [sym_false] = ACTIONS(2855), + [anon_sym_NULL] = ACTIONS(2855), + [anon_sym_nullptr] = ACTIONS(2855), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2855), + [anon_sym_decltype] = ACTIONS(2855), + [anon_sym_explicit] = ACTIONS(2855), + [anon_sym_typename] = ACTIONS(2855), + [anon_sym_template] = ACTIONS(2855), + [anon_sym_operator] = ACTIONS(2855), + [anon_sym_try] = ACTIONS(2855), + [anon_sym_delete] = ACTIONS(2855), + [anon_sym_throw] = ACTIONS(2855), + [anon_sym_namespace] = ACTIONS(2855), + [anon_sym_static_assert] = ACTIONS(2855), + [anon_sym_concept] = ACTIONS(2855), + [anon_sym_co_return] = ACTIONS(2855), + [anon_sym_co_yield] = ACTIONS(2855), + [anon_sym_R_DQUOTE] = ACTIONS(2857), + [anon_sym_LR_DQUOTE] = ACTIONS(2857), + [anon_sym_uR_DQUOTE] = ACTIONS(2857), + [anon_sym_UR_DQUOTE] = ACTIONS(2857), + [anon_sym_u8R_DQUOTE] = ACTIONS(2857), + [anon_sym_co_await] = ACTIONS(2855), + [anon_sym_new] = ACTIONS(2855), + [anon_sym_requires] = ACTIONS(2855), + [sym_this] = ACTIONS(2855), + }, + [313] = { [sym_identifier] = ACTIONS(2859), [aux_sym_preproc_include_token1] = ACTIONS(2859), [aux_sym_preproc_def_token1] = ACTIONS(2859), @@ -88746,7 +89313,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2859), [sym_this] = ACTIONS(2859), }, - [312] = { + [314] = { [sym_identifier] = ACTIONS(2863), [aux_sym_preproc_include_token1] = ACTIONS(2863), [aux_sym_preproc_def_token1] = ACTIONS(2863), @@ -88886,7 +89453,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2863), [sym_this] = ACTIONS(2863), }, - [313] = { + [315] = { [sym_identifier] = ACTIONS(2867), [aux_sym_preproc_include_token1] = ACTIONS(2867), [aux_sym_preproc_def_token1] = ACTIONS(2867), @@ -89026,7 +89593,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2867), [sym_this] = ACTIONS(2867), }, - [314] = { + [316] = { [sym_identifier] = ACTIONS(2871), [aux_sym_preproc_include_token1] = ACTIONS(2871), [aux_sym_preproc_def_token1] = ACTIONS(2871), @@ -89166,7 +89733,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2871), [sym_this] = ACTIONS(2871), }, - [315] = { + [317] = { [sym_identifier] = ACTIONS(2875), [aux_sym_preproc_include_token1] = ACTIONS(2875), [aux_sym_preproc_def_token1] = ACTIONS(2875), @@ -89306,7 +89873,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2875), [sym_this] = ACTIONS(2875), }, - [316] = { + [318] = { [sym_identifier] = ACTIONS(2879), [aux_sym_preproc_include_token1] = ACTIONS(2879), [aux_sym_preproc_def_token1] = ACTIONS(2879), @@ -89446,7 +90013,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2879), [sym_this] = ACTIONS(2879), }, - [317] = { + [319] = { [sym_identifier] = ACTIONS(2883), [aux_sym_preproc_include_token1] = ACTIONS(2883), [aux_sym_preproc_def_token1] = ACTIONS(2883), @@ -89586,7 +90153,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2883), [sym_this] = ACTIONS(2883), }, - [318] = { + [320] = { [sym_identifier] = ACTIONS(2887), [aux_sym_preproc_include_token1] = ACTIONS(2887), [aux_sym_preproc_def_token1] = ACTIONS(2887), @@ -89726,7 +90293,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2887), [sym_this] = ACTIONS(2887), }, - [319] = { + [321] = { [sym_identifier] = ACTIONS(2891), [aux_sym_preproc_include_token1] = ACTIONS(2891), [aux_sym_preproc_def_token1] = ACTIONS(2891), @@ -89866,7 +90433,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2891), [sym_this] = ACTIONS(2891), }, - [320] = { + [322] = { [sym_identifier] = ACTIONS(2895), [aux_sym_preproc_include_token1] = ACTIONS(2895), [aux_sym_preproc_def_token1] = ACTIONS(2895), @@ -90006,7 +90573,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2895), [sym_this] = ACTIONS(2895), }, - [321] = { + [323] = { [sym_identifier] = ACTIONS(2899), [aux_sym_preproc_include_token1] = ACTIONS(2899), [aux_sym_preproc_def_token1] = ACTIONS(2899), @@ -90146,7 +90713,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2899), [sym_this] = ACTIONS(2899), }, - [322] = { + [324] = { [sym_identifier] = ACTIONS(2903), [aux_sym_preproc_include_token1] = ACTIONS(2903), [aux_sym_preproc_def_token1] = ACTIONS(2903), @@ -90286,147 +90853,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2903), [sym_this] = ACTIONS(2903), }, - [323] = { - [ts_builtin_sym_end] = ACTIONS(2713), - [sym_identifier] = ACTIONS(2711), - [aux_sym_preproc_include_token1] = ACTIONS(2711), - [aux_sym_preproc_def_token1] = ACTIONS(2711), - [aux_sym_preproc_if_token1] = ACTIONS(2711), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2711), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2711), - [sym_preproc_directive] = ACTIONS(2711), - [anon_sym_LPAREN2] = ACTIONS(2713), - [anon_sym_BANG] = ACTIONS(2713), - [anon_sym_TILDE] = ACTIONS(2713), - [anon_sym_DASH] = ACTIONS(2711), - [anon_sym_PLUS] = ACTIONS(2711), - [anon_sym_STAR] = ACTIONS(2713), - [anon_sym_AMP_AMP] = ACTIONS(2713), - [anon_sym_AMP] = ACTIONS(2711), - [anon_sym_SEMI] = ACTIONS(2713), - [anon_sym___extension__] = ACTIONS(2711), - [anon_sym_typedef] = ACTIONS(2711), - [anon_sym_virtual] = ACTIONS(2711), - [anon_sym_extern] = ACTIONS(2711), - [anon_sym___attribute__] = ACTIONS(2711), - [anon_sym___attribute] = ACTIONS(2711), - [anon_sym_using] = ACTIONS(2711), - [anon_sym_COLON_COLON] = ACTIONS(2713), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2713), - [anon_sym___declspec] = ACTIONS(2711), - [anon_sym___based] = ACTIONS(2711), - [anon_sym___cdecl] = ACTIONS(2711), - [anon_sym___clrcall] = ACTIONS(2711), - [anon_sym___stdcall] = ACTIONS(2711), - [anon_sym___fastcall] = ACTIONS(2711), - [anon_sym___thiscall] = ACTIONS(2711), - [anon_sym___vectorcall] = ACTIONS(2711), - [anon_sym_LBRACE] = ACTIONS(2713), - [anon_sym_signed] = ACTIONS(2711), - [anon_sym_unsigned] = ACTIONS(2711), - [anon_sym_long] = ACTIONS(2711), - [anon_sym_short] = ACTIONS(2711), - [anon_sym_LBRACK] = ACTIONS(2711), - [anon_sym_static] = ACTIONS(2711), - [anon_sym_register] = ACTIONS(2711), - [anon_sym_inline] = ACTIONS(2711), - [anon_sym___inline] = ACTIONS(2711), - [anon_sym___inline__] = ACTIONS(2711), - [anon_sym___forceinline] = ACTIONS(2711), - [anon_sym_thread_local] = ACTIONS(2711), - [anon_sym___thread] = ACTIONS(2711), - [anon_sym_const] = ACTIONS(2711), - [anon_sym_constexpr] = ACTIONS(2711), - [anon_sym_volatile] = ACTIONS(2711), - [anon_sym_restrict] = ACTIONS(2711), - [anon_sym___restrict__] = ACTIONS(2711), - [anon_sym__Atomic] = ACTIONS(2711), - [anon_sym__Noreturn] = ACTIONS(2711), - [anon_sym_noreturn] = ACTIONS(2711), - [anon_sym__Nonnull] = ACTIONS(2711), - [anon_sym_mutable] = ACTIONS(2711), - [anon_sym_constinit] = ACTIONS(2711), - [anon_sym_consteval] = ACTIONS(2711), - [anon_sym_alignas] = ACTIONS(2711), - [anon_sym__Alignas] = ACTIONS(2711), - [sym_primitive_type] = ACTIONS(2711), - [anon_sym_enum] = ACTIONS(2711), - [anon_sym_class] = ACTIONS(2711), - [anon_sym_struct] = ACTIONS(2711), - [anon_sym_union] = ACTIONS(2711), - [anon_sym_if] = ACTIONS(2711), - [anon_sym_else] = ACTIONS(2711), - [anon_sym_switch] = ACTIONS(2711), - [anon_sym_case] = ACTIONS(2711), - [anon_sym_default] = ACTIONS(2711), - [anon_sym_while] = ACTIONS(2711), - [anon_sym_do] = ACTIONS(2711), - [anon_sym_for] = ACTIONS(2711), - [anon_sym_return] = ACTIONS(2711), - [anon_sym_break] = ACTIONS(2711), - [anon_sym_continue] = ACTIONS(2711), - [anon_sym_goto] = ACTIONS(2711), - [anon_sym___try] = ACTIONS(2711), - [anon_sym___leave] = ACTIONS(2711), - [anon_sym_not] = ACTIONS(2711), - [anon_sym_compl] = ACTIONS(2711), - [anon_sym_DASH_DASH] = ACTIONS(2713), - [anon_sym_PLUS_PLUS] = ACTIONS(2713), - [anon_sym_sizeof] = ACTIONS(2711), - [anon_sym___alignof__] = ACTIONS(2711), - [anon_sym___alignof] = ACTIONS(2711), - [anon_sym__alignof] = ACTIONS(2711), - [anon_sym_alignof] = ACTIONS(2711), - [anon_sym__Alignof] = ACTIONS(2711), - [anon_sym_offsetof] = ACTIONS(2711), - [anon_sym__Generic] = ACTIONS(2711), - [anon_sym_asm] = ACTIONS(2711), - [anon_sym___asm__] = ACTIONS(2711), - [anon_sym___asm] = ACTIONS(2711), - [sym_number_literal] = ACTIONS(2713), - [anon_sym_L_SQUOTE] = ACTIONS(2713), - [anon_sym_u_SQUOTE] = ACTIONS(2713), - [anon_sym_U_SQUOTE] = ACTIONS(2713), - [anon_sym_u8_SQUOTE] = ACTIONS(2713), - [anon_sym_SQUOTE] = ACTIONS(2713), - [anon_sym_L_DQUOTE] = ACTIONS(2713), - [anon_sym_u_DQUOTE] = ACTIONS(2713), - [anon_sym_U_DQUOTE] = ACTIONS(2713), - [anon_sym_u8_DQUOTE] = ACTIONS(2713), - [anon_sym_DQUOTE] = ACTIONS(2713), - [sym_true] = ACTIONS(2711), - [sym_false] = ACTIONS(2711), - [anon_sym_NULL] = ACTIONS(2711), - [anon_sym_nullptr] = ACTIONS(2711), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2711), - [anon_sym_decltype] = ACTIONS(2711), - [anon_sym_explicit] = ACTIONS(2711), - [anon_sym_typename] = ACTIONS(2711), - [anon_sym_export] = ACTIONS(2711), - [anon_sym_module] = ACTIONS(2711), - [anon_sym_import] = ACTIONS(2711), - [anon_sym_template] = ACTIONS(2711), - [anon_sym_operator] = ACTIONS(2711), - [anon_sym_try] = ACTIONS(2711), - [anon_sym_delete] = ACTIONS(2711), - [anon_sym_throw] = ACTIONS(2711), - [anon_sym_namespace] = ACTIONS(2711), - [anon_sym_static_assert] = ACTIONS(2711), - [anon_sym_concept] = ACTIONS(2711), - [anon_sym_co_return] = ACTIONS(2711), - [anon_sym_co_yield] = ACTIONS(2711), - [anon_sym_R_DQUOTE] = ACTIONS(2713), - [anon_sym_LR_DQUOTE] = ACTIONS(2713), - [anon_sym_uR_DQUOTE] = ACTIONS(2713), - [anon_sym_UR_DQUOTE] = ACTIONS(2713), - [anon_sym_u8R_DQUOTE] = ACTIONS(2713), - [anon_sym_co_await] = ACTIONS(2711), - [anon_sym_new] = ACTIONS(2711), - [anon_sym_requires] = ACTIONS(2711), - [sym_this] = ACTIONS(2711), - }, - [324] = { + [325] = { [sym_identifier] = ACTIONS(2907), [aux_sym_preproc_include_token1] = ACTIONS(2907), [aux_sym_preproc_def_token1] = ACTIONS(2907), @@ -90566,7 +90993,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2907), [sym_this] = ACTIONS(2907), }, - [325] = { + [326] = { + [ts_builtin_sym_end] = ACTIONS(2757), + [sym_identifier] = ACTIONS(2755), + [aux_sym_preproc_include_token1] = ACTIONS(2755), + [aux_sym_preproc_def_token1] = ACTIONS(2755), + [aux_sym_preproc_if_token1] = ACTIONS(2755), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2755), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2755), + [sym_preproc_directive] = ACTIONS(2755), + [anon_sym_LPAREN2] = ACTIONS(2757), + [anon_sym_BANG] = ACTIONS(2757), + [anon_sym_TILDE] = ACTIONS(2757), + [anon_sym_DASH] = ACTIONS(2755), + [anon_sym_PLUS] = ACTIONS(2755), + [anon_sym_STAR] = ACTIONS(2757), + [anon_sym_AMP_AMP] = ACTIONS(2757), + [anon_sym_AMP] = ACTIONS(2755), + [anon_sym_SEMI] = ACTIONS(2757), + [anon_sym___extension__] = ACTIONS(2755), + [anon_sym_typedef] = ACTIONS(2755), + [anon_sym_virtual] = ACTIONS(2755), + [anon_sym_extern] = ACTIONS(2755), + [anon_sym___attribute__] = ACTIONS(2755), + [anon_sym___attribute] = ACTIONS(2755), + [anon_sym_using] = ACTIONS(2755), + [anon_sym_COLON_COLON] = ACTIONS(2757), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2757), + [anon_sym___declspec] = ACTIONS(2755), + [anon_sym___based] = ACTIONS(2755), + [anon_sym___cdecl] = ACTIONS(2755), + [anon_sym___clrcall] = ACTIONS(2755), + [anon_sym___stdcall] = ACTIONS(2755), + [anon_sym___fastcall] = ACTIONS(2755), + [anon_sym___thiscall] = ACTIONS(2755), + [anon_sym___vectorcall] = ACTIONS(2755), + [anon_sym_LBRACE] = ACTIONS(2757), + [anon_sym_signed] = ACTIONS(2755), + [anon_sym_unsigned] = ACTIONS(2755), + [anon_sym_long] = ACTIONS(2755), + [anon_sym_short] = ACTIONS(2755), + [anon_sym_LBRACK] = ACTIONS(2755), + [anon_sym_static] = ACTIONS(2755), + [anon_sym_register] = ACTIONS(2755), + [anon_sym_inline] = ACTIONS(2755), + [anon_sym___inline] = ACTIONS(2755), + [anon_sym___inline__] = ACTIONS(2755), + [anon_sym___forceinline] = ACTIONS(2755), + [anon_sym_thread_local] = ACTIONS(2755), + [anon_sym___thread] = ACTIONS(2755), + [anon_sym_const] = ACTIONS(2755), + [anon_sym_constexpr] = ACTIONS(2755), + [anon_sym_volatile] = ACTIONS(2755), + [anon_sym_restrict] = ACTIONS(2755), + [anon_sym___restrict__] = ACTIONS(2755), + [anon_sym__Atomic] = ACTIONS(2755), + [anon_sym__Noreturn] = ACTIONS(2755), + [anon_sym_noreturn] = ACTIONS(2755), + [anon_sym__Nonnull] = ACTIONS(2755), + [anon_sym_mutable] = ACTIONS(2755), + [anon_sym_constinit] = ACTIONS(2755), + [anon_sym_consteval] = ACTIONS(2755), + [anon_sym_alignas] = ACTIONS(2755), + [anon_sym__Alignas] = ACTIONS(2755), + [sym_primitive_type] = ACTIONS(2755), + [anon_sym_enum] = ACTIONS(2755), + [anon_sym_class] = ACTIONS(2755), + [anon_sym_struct] = ACTIONS(2755), + [anon_sym_union] = ACTIONS(2755), + [anon_sym_if] = ACTIONS(2755), + [anon_sym_else] = ACTIONS(2755), + [anon_sym_switch] = ACTIONS(2755), + [anon_sym_case] = ACTIONS(2755), + [anon_sym_default] = ACTIONS(2755), + [anon_sym_while] = ACTIONS(2755), + [anon_sym_do] = ACTIONS(2755), + [anon_sym_for] = ACTIONS(2755), + [anon_sym_return] = ACTIONS(2755), + [anon_sym_break] = ACTIONS(2755), + [anon_sym_continue] = ACTIONS(2755), + [anon_sym_goto] = ACTIONS(2755), + [anon_sym___try] = ACTIONS(2755), + [anon_sym___leave] = ACTIONS(2755), + [anon_sym_not] = ACTIONS(2755), + [anon_sym_compl] = ACTIONS(2755), + [anon_sym_DASH_DASH] = ACTIONS(2757), + [anon_sym_PLUS_PLUS] = ACTIONS(2757), + [anon_sym_sizeof] = ACTIONS(2755), + [anon_sym___alignof__] = ACTIONS(2755), + [anon_sym___alignof] = ACTIONS(2755), + [anon_sym__alignof] = ACTIONS(2755), + [anon_sym_alignof] = ACTIONS(2755), + [anon_sym__Alignof] = ACTIONS(2755), + [anon_sym_offsetof] = ACTIONS(2755), + [anon_sym__Generic] = ACTIONS(2755), + [anon_sym_asm] = ACTIONS(2755), + [anon_sym___asm__] = ACTIONS(2755), + [anon_sym___asm] = ACTIONS(2755), + [sym_number_literal] = ACTIONS(2757), + [anon_sym_L_SQUOTE] = ACTIONS(2757), + [anon_sym_u_SQUOTE] = ACTIONS(2757), + [anon_sym_U_SQUOTE] = ACTIONS(2757), + [anon_sym_u8_SQUOTE] = ACTIONS(2757), + [anon_sym_SQUOTE] = ACTIONS(2757), + [anon_sym_L_DQUOTE] = ACTIONS(2757), + [anon_sym_u_DQUOTE] = ACTIONS(2757), + [anon_sym_U_DQUOTE] = ACTIONS(2757), + [anon_sym_u8_DQUOTE] = ACTIONS(2757), + [anon_sym_DQUOTE] = ACTIONS(2757), + [sym_true] = ACTIONS(2755), + [sym_false] = ACTIONS(2755), + [anon_sym_NULL] = ACTIONS(2755), + [anon_sym_nullptr] = ACTIONS(2755), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2755), + [anon_sym_decltype] = ACTIONS(2755), + [anon_sym_explicit] = ACTIONS(2755), + [anon_sym_typename] = ACTIONS(2755), + [anon_sym_export] = ACTIONS(2755), + [anon_sym_module] = ACTIONS(2755), + [anon_sym_import] = ACTIONS(2755), + [anon_sym_template] = ACTIONS(2755), + [anon_sym_operator] = ACTIONS(2755), + [anon_sym_try] = ACTIONS(2755), + [anon_sym_delete] = ACTIONS(2755), + [anon_sym_throw] = ACTIONS(2755), + [anon_sym_namespace] = ACTIONS(2755), + [anon_sym_static_assert] = ACTIONS(2755), + [anon_sym_concept] = ACTIONS(2755), + [anon_sym_co_return] = ACTIONS(2755), + [anon_sym_co_yield] = ACTIONS(2755), + [anon_sym_R_DQUOTE] = ACTIONS(2757), + [anon_sym_LR_DQUOTE] = ACTIONS(2757), + [anon_sym_uR_DQUOTE] = ACTIONS(2757), + [anon_sym_UR_DQUOTE] = ACTIONS(2757), + [anon_sym_u8R_DQUOTE] = ACTIONS(2757), + [anon_sym_co_await] = ACTIONS(2755), + [anon_sym_new] = ACTIONS(2755), + [anon_sym_requires] = ACTIONS(2755), + [sym_this] = ACTIONS(2755), + }, + [327] = { [sym_identifier] = ACTIONS(2911), [aux_sym_preproc_include_token1] = ACTIONS(2911), [aux_sym_preproc_def_token1] = ACTIONS(2911), @@ -90706,286 +91273,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2911), [sym_this] = ACTIONS(2911), }, - [326] = { - [sym_identifier] = ACTIONS(2911), - [aux_sym_preproc_include_token1] = ACTIONS(2911), - [aux_sym_preproc_def_token1] = ACTIONS(2911), - [aux_sym_preproc_if_token1] = ACTIONS(2911), - [aux_sym_preproc_if_token2] = ACTIONS(2911), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2911), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2911), - [aux_sym_preproc_else_token1] = ACTIONS(2911), - [aux_sym_preproc_elif_token1] = ACTIONS(2911), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2911), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2911), - [sym_preproc_directive] = ACTIONS(2911), - [anon_sym_LPAREN2] = ACTIONS(2913), - [anon_sym_BANG] = ACTIONS(2913), - [anon_sym_TILDE] = ACTIONS(2913), - [anon_sym_DASH] = ACTIONS(2911), - [anon_sym_PLUS] = ACTIONS(2911), - [anon_sym_STAR] = ACTIONS(2913), - [anon_sym_AMP_AMP] = ACTIONS(2913), - [anon_sym_AMP] = ACTIONS(2911), - [anon_sym_SEMI] = ACTIONS(2913), - [anon_sym___extension__] = ACTIONS(2911), - [anon_sym_typedef] = ACTIONS(2911), - [anon_sym_virtual] = ACTIONS(2911), - [anon_sym_extern] = ACTIONS(2911), - [anon_sym___attribute__] = ACTIONS(2911), - [anon_sym___attribute] = ACTIONS(2911), - [anon_sym_using] = ACTIONS(2911), - [anon_sym_COLON_COLON] = ACTIONS(2913), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2913), - [anon_sym___declspec] = ACTIONS(2911), - [anon_sym___based] = ACTIONS(2911), - [anon_sym___cdecl] = ACTIONS(2911), - [anon_sym___clrcall] = ACTIONS(2911), - [anon_sym___stdcall] = ACTIONS(2911), - [anon_sym___fastcall] = ACTIONS(2911), - [anon_sym___thiscall] = ACTIONS(2911), - [anon_sym___vectorcall] = ACTIONS(2911), - [anon_sym_LBRACE] = ACTIONS(2913), - [anon_sym_signed] = ACTIONS(2911), - [anon_sym_unsigned] = ACTIONS(2911), - [anon_sym_long] = ACTIONS(2911), - [anon_sym_short] = ACTIONS(2911), - [anon_sym_LBRACK] = ACTIONS(2911), - [anon_sym_static] = ACTIONS(2911), - [anon_sym_register] = ACTIONS(2911), - [anon_sym_inline] = ACTIONS(2911), - [anon_sym___inline] = ACTIONS(2911), - [anon_sym___inline__] = ACTIONS(2911), - [anon_sym___forceinline] = ACTIONS(2911), - [anon_sym_thread_local] = ACTIONS(2911), - [anon_sym___thread] = ACTIONS(2911), - [anon_sym_const] = ACTIONS(2911), - [anon_sym_constexpr] = ACTIONS(2911), - [anon_sym_volatile] = ACTIONS(2911), - [anon_sym_restrict] = ACTIONS(2911), - [anon_sym___restrict__] = ACTIONS(2911), - [anon_sym__Atomic] = ACTIONS(2911), - [anon_sym__Noreturn] = ACTIONS(2911), - [anon_sym_noreturn] = ACTIONS(2911), - [anon_sym__Nonnull] = ACTIONS(2911), - [anon_sym_mutable] = ACTIONS(2911), - [anon_sym_constinit] = ACTIONS(2911), - [anon_sym_consteval] = ACTIONS(2911), - [anon_sym_alignas] = ACTIONS(2911), - [anon_sym__Alignas] = ACTIONS(2911), - [sym_primitive_type] = ACTIONS(2911), - [anon_sym_enum] = ACTIONS(2911), - [anon_sym_class] = ACTIONS(2911), - [anon_sym_struct] = ACTIONS(2911), - [anon_sym_union] = ACTIONS(2911), - [anon_sym_if] = ACTIONS(2911), - [anon_sym_switch] = ACTIONS(2911), - [anon_sym_case] = ACTIONS(2911), - [anon_sym_default] = ACTIONS(2911), - [anon_sym_while] = ACTIONS(2911), - [anon_sym_do] = ACTIONS(2911), - [anon_sym_for] = ACTIONS(2911), - [anon_sym_return] = ACTIONS(2911), - [anon_sym_break] = ACTIONS(2911), - [anon_sym_continue] = ACTIONS(2911), - [anon_sym_goto] = ACTIONS(2911), - [anon_sym___try] = ACTIONS(2911), - [anon_sym___leave] = ACTIONS(2911), - [anon_sym_not] = ACTIONS(2911), - [anon_sym_compl] = ACTIONS(2911), - [anon_sym_DASH_DASH] = ACTIONS(2913), - [anon_sym_PLUS_PLUS] = ACTIONS(2913), - [anon_sym_sizeof] = ACTIONS(2911), - [anon_sym___alignof__] = ACTIONS(2911), - [anon_sym___alignof] = ACTIONS(2911), - [anon_sym__alignof] = ACTIONS(2911), - [anon_sym_alignof] = ACTIONS(2911), - [anon_sym__Alignof] = ACTIONS(2911), - [anon_sym_offsetof] = ACTIONS(2911), - [anon_sym__Generic] = ACTIONS(2911), - [anon_sym_asm] = ACTIONS(2911), - [anon_sym___asm__] = ACTIONS(2911), - [anon_sym___asm] = ACTIONS(2911), - [sym_number_literal] = ACTIONS(2913), - [anon_sym_L_SQUOTE] = ACTIONS(2913), - [anon_sym_u_SQUOTE] = ACTIONS(2913), - [anon_sym_U_SQUOTE] = ACTIONS(2913), - [anon_sym_u8_SQUOTE] = ACTIONS(2913), - [anon_sym_SQUOTE] = ACTIONS(2913), - [anon_sym_L_DQUOTE] = ACTIONS(2913), - [anon_sym_u_DQUOTE] = ACTIONS(2913), - [anon_sym_U_DQUOTE] = ACTIONS(2913), - [anon_sym_u8_DQUOTE] = ACTIONS(2913), - [anon_sym_DQUOTE] = ACTIONS(2913), - [sym_true] = ACTIONS(2911), - [sym_false] = ACTIONS(2911), - [anon_sym_NULL] = ACTIONS(2911), - [anon_sym_nullptr] = ACTIONS(2911), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2911), - [anon_sym_decltype] = ACTIONS(2911), - [anon_sym_explicit] = ACTIONS(2911), - [anon_sym_typename] = ACTIONS(2911), - [anon_sym_template] = ACTIONS(2911), - [anon_sym_operator] = ACTIONS(2911), - [anon_sym_try] = ACTIONS(2911), - [anon_sym_delete] = ACTIONS(2911), - [anon_sym_throw] = ACTIONS(2911), - [anon_sym_namespace] = ACTIONS(2911), - [anon_sym_static_assert] = ACTIONS(2911), - [anon_sym_concept] = ACTIONS(2911), - [anon_sym_co_return] = ACTIONS(2911), - [anon_sym_co_yield] = ACTIONS(2911), - [anon_sym_R_DQUOTE] = ACTIONS(2913), - [anon_sym_LR_DQUOTE] = ACTIONS(2913), - [anon_sym_uR_DQUOTE] = ACTIONS(2913), - [anon_sym_UR_DQUOTE] = ACTIONS(2913), - [anon_sym_u8R_DQUOTE] = ACTIONS(2913), - [anon_sym_co_await] = ACTIONS(2911), - [anon_sym_new] = ACTIONS(2911), - [anon_sym_requires] = ACTIONS(2911), - [sym_this] = ACTIONS(2911), - }, - [327] = { - [sym_identifier] = ACTIONS(2915), - [aux_sym_preproc_include_token1] = ACTIONS(2915), - [aux_sym_preproc_def_token1] = ACTIONS(2915), - [aux_sym_preproc_if_token1] = ACTIONS(2915), - [aux_sym_preproc_if_token2] = ACTIONS(2915), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2915), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2915), - [aux_sym_preproc_else_token1] = ACTIONS(2915), - [aux_sym_preproc_elif_token1] = ACTIONS(2915), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2915), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2915), - [sym_preproc_directive] = ACTIONS(2915), - [anon_sym_LPAREN2] = ACTIONS(2917), - [anon_sym_BANG] = ACTIONS(2917), - [anon_sym_TILDE] = ACTIONS(2917), - [anon_sym_DASH] = ACTIONS(2915), - [anon_sym_PLUS] = ACTIONS(2915), - [anon_sym_STAR] = ACTIONS(2917), - [anon_sym_AMP_AMP] = ACTIONS(2917), - [anon_sym_AMP] = ACTIONS(2915), - [anon_sym_SEMI] = ACTIONS(2917), - [anon_sym___extension__] = ACTIONS(2915), - [anon_sym_typedef] = ACTIONS(2915), - [anon_sym_virtual] = ACTIONS(2915), - [anon_sym_extern] = ACTIONS(2915), - [anon_sym___attribute__] = ACTIONS(2915), - [anon_sym___attribute] = ACTIONS(2915), - [anon_sym_using] = ACTIONS(2915), - [anon_sym_COLON_COLON] = ACTIONS(2917), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2917), - [anon_sym___declspec] = ACTIONS(2915), - [anon_sym___based] = ACTIONS(2915), - [anon_sym___cdecl] = ACTIONS(2915), - [anon_sym___clrcall] = ACTIONS(2915), - [anon_sym___stdcall] = ACTIONS(2915), - [anon_sym___fastcall] = ACTIONS(2915), - [anon_sym___thiscall] = ACTIONS(2915), - [anon_sym___vectorcall] = ACTIONS(2915), - [anon_sym_LBRACE] = ACTIONS(2917), - [anon_sym_signed] = ACTIONS(2915), - [anon_sym_unsigned] = ACTIONS(2915), - [anon_sym_long] = ACTIONS(2915), - [anon_sym_short] = ACTIONS(2915), - [anon_sym_LBRACK] = ACTIONS(2915), - [anon_sym_static] = ACTIONS(2915), - [anon_sym_register] = ACTIONS(2915), - [anon_sym_inline] = ACTIONS(2915), - [anon_sym___inline] = ACTIONS(2915), - [anon_sym___inline__] = ACTIONS(2915), - [anon_sym___forceinline] = ACTIONS(2915), - [anon_sym_thread_local] = ACTIONS(2915), - [anon_sym___thread] = ACTIONS(2915), - [anon_sym_const] = ACTIONS(2915), - [anon_sym_constexpr] = ACTIONS(2915), - [anon_sym_volatile] = ACTIONS(2915), - [anon_sym_restrict] = ACTIONS(2915), - [anon_sym___restrict__] = ACTIONS(2915), - [anon_sym__Atomic] = ACTIONS(2915), - [anon_sym__Noreturn] = ACTIONS(2915), - [anon_sym_noreturn] = ACTIONS(2915), - [anon_sym__Nonnull] = ACTIONS(2915), - [anon_sym_mutable] = ACTIONS(2915), - [anon_sym_constinit] = ACTIONS(2915), - [anon_sym_consteval] = ACTIONS(2915), - [anon_sym_alignas] = ACTIONS(2915), - [anon_sym__Alignas] = ACTIONS(2915), - [sym_primitive_type] = ACTIONS(2915), - [anon_sym_enum] = ACTIONS(2915), - [anon_sym_class] = ACTIONS(2915), - [anon_sym_struct] = ACTIONS(2915), - [anon_sym_union] = ACTIONS(2915), - [anon_sym_if] = ACTIONS(2915), - [anon_sym_switch] = ACTIONS(2915), - [anon_sym_case] = ACTIONS(2915), - [anon_sym_default] = ACTIONS(2915), - [anon_sym_while] = ACTIONS(2915), - [anon_sym_do] = ACTIONS(2915), - [anon_sym_for] = ACTIONS(2915), - [anon_sym_return] = ACTIONS(2915), - [anon_sym_break] = ACTIONS(2915), - [anon_sym_continue] = ACTIONS(2915), - [anon_sym_goto] = ACTIONS(2915), - [anon_sym___try] = ACTIONS(2915), - [anon_sym___leave] = ACTIONS(2915), - [anon_sym_not] = ACTIONS(2915), - [anon_sym_compl] = ACTIONS(2915), - [anon_sym_DASH_DASH] = ACTIONS(2917), - [anon_sym_PLUS_PLUS] = ACTIONS(2917), - [anon_sym_sizeof] = ACTIONS(2915), - [anon_sym___alignof__] = ACTIONS(2915), - [anon_sym___alignof] = ACTIONS(2915), - [anon_sym__alignof] = ACTIONS(2915), - [anon_sym_alignof] = ACTIONS(2915), - [anon_sym__Alignof] = ACTIONS(2915), - [anon_sym_offsetof] = ACTIONS(2915), - [anon_sym__Generic] = ACTIONS(2915), - [anon_sym_asm] = ACTIONS(2915), - [anon_sym___asm__] = ACTIONS(2915), - [anon_sym___asm] = ACTIONS(2915), - [sym_number_literal] = ACTIONS(2917), - [anon_sym_L_SQUOTE] = ACTIONS(2917), - [anon_sym_u_SQUOTE] = ACTIONS(2917), - [anon_sym_U_SQUOTE] = ACTIONS(2917), - [anon_sym_u8_SQUOTE] = ACTIONS(2917), - [anon_sym_SQUOTE] = ACTIONS(2917), - [anon_sym_L_DQUOTE] = ACTIONS(2917), - [anon_sym_u_DQUOTE] = ACTIONS(2917), - [anon_sym_U_DQUOTE] = ACTIONS(2917), - [anon_sym_u8_DQUOTE] = ACTIONS(2917), - [anon_sym_DQUOTE] = ACTIONS(2917), - [sym_true] = ACTIONS(2915), - [sym_false] = ACTIONS(2915), - [anon_sym_NULL] = ACTIONS(2915), - [anon_sym_nullptr] = ACTIONS(2915), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2915), - [anon_sym_decltype] = ACTIONS(2915), - [anon_sym_explicit] = ACTIONS(2915), - [anon_sym_typename] = ACTIONS(2915), - [anon_sym_template] = ACTIONS(2915), - [anon_sym_operator] = ACTIONS(2915), - [anon_sym_try] = ACTIONS(2915), - [anon_sym_delete] = ACTIONS(2915), - [anon_sym_throw] = ACTIONS(2915), - [anon_sym_namespace] = ACTIONS(2915), - [anon_sym_static_assert] = ACTIONS(2915), - [anon_sym_concept] = ACTIONS(2915), - [anon_sym_co_return] = ACTIONS(2915), - [anon_sym_co_yield] = ACTIONS(2915), - [anon_sym_R_DQUOTE] = ACTIONS(2917), - [anon_sym_LR_DQUOTE] = ACTIONS(2917), - [anon_sym_uR_DQUOTE] = ACTIONS(2917), - [anon_sym_UR_DQUOTE] = ACTIONS(2917), - [anon_sym_u8R_DQUOTE] = ACTIONS(2917), - [anon_sym_co_await] = ACTIONS(2915), - [anon_sym_new] = ACTIONS(2915), - [anon_sym_requires] = ACTIONS(2915), - [sym_this] = ACTIONS(2915), - }, [328] = { [sym_identifier] = ACTIONS(2915), [aux_sym_preproc_include_token1] = ACTIONS(2915), @@ -91407,6 +91694,286 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(2923), }, [331] = { + [sym_identifier] = ACTIONS(2923), + [aux_sym_preproc_include_token1] = ACTIONS(2923), + [aux_sym_preproc_def_token1] = ACTIONS(2923), + [aux_sym_preproc_if_token1] = ACTIONS(2923), + [aux_sym_preproc_if_token2] = ACTIONS(2923), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2923), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2923), + [aux_sym_preproc_else_token1] = ACTIONS(2923), + [aux_sym_preproc_elif_token1] = ACTIONS(2923), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2923), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2923), + [sym_preproc_directive] = ACTIONS(2923), + [anon_sym_LPAREN2] = ACTIONS(2925), + [anon_sym_BANG] = ACTIONS(2925), + [anon_sym_TILDE] = ACTIONS(2925), + [anon_sym_DASH] = ACTIONS(2923), + [anon_sym_PLUS] = ACTIONS(2923), + [anon_sym_STAR] = ACTIONS(2925), + [anon_sym_AMP_AMP] = ACTIONS(2925), + [anon_sym_AMP] = ACTIONS(2923), + [anon_sym_SEMI] = ACTIONS(2925), + [anon_sym___extension__] = ACTIONS(2923), + [anon_sym_typedef] = ACTIONS(2923), + [anon_sym_virtual] = ACTIONS(2923), + [anon_sym_extern] = ACTIONS(2923), + [anon_sym___attribute__] = ACTIONS(2923), + [anon_sym___attribute] = ACTIONS(2923), + [anon_sym_using] = ACTIONS(2923), + [anon_sym_COLON_COLON] = ACTIONS(2925), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2925), + [anon_sym___declspec] = ACTIONS(2923), + [anon_sym___based] = ACTIONS(2923), + [anon_sym___cdecl] = ACTIONS(2923), + [anon_sym___clrcall] = ACTIONS(2923), + [anon_sym___stdcall] = ACTIONS(2923), + [anon_sym___fastcall] = ACTIONS(2923), + [anon_sym___thiscall] = ACTIONS(2923), + [anon_sym___vectorcall] = ACTIONS(2923), + [anon_sym_LBRACE] = ACTIONS(2925), + [anon_sym_signed] = ACTIONS(2923), + [anon_sym_unsigned] = ACTIONS(2923), + [anon_sym_long] = ACTIONS(2923), + [anon_sym_short] = ACTIONS(2923), + [anon_sym_LBRACK] = ACTIONS(2923), + [anon_sym_static] = ACTIONS(2923), + [anon_sym_register] = ACTIONS(2923), + [anon_sym_inline] = ACTIONS(2923), + [anon_sym___inline] = ACTIONS(2923), + [anon_sym___inline__] = ACTIONS(2923), + [anon_sym___forceinline] = ACTIONS(2923), + [anon_sym_thread_local] = ACTIONS(2923), + [anon_sym___thread] = ACTIONS(2923), + [anon_sym_const] = ACTIONS(2923), + [anon_sym_constexpr] = ACTIONS(2923), + [anon_sym_volatile] = ACTIONS(2923), + [anon_sym_restrict] = ACTIONS(2923), + [anon_sym___restrict__] = ACTIONS(2923), + [anon_sym__Atomic] = ACTIONS(2923), + [anon_sym__Noreturn] = ACTIONS(2923), + [anon_sym_noreturn] = ACTIONS(2923), + [anon_sym__Nonnull] = ACTIONS(2923), + [anon_sym_mutable] = ACTIONS(2923), + [anon_sym_constinit] = ACTIONS(2923), + [anon_sym_consteval] = ACTIONS(2923), + [anon_sym_alignas] = ACTIONS(2923), + [anon_sym__Alignas] = ACTIONS(2923), + [sym_primitive_type] = ACTIONS(2923), + [anon_sym_enum] = ACTIONS(2923), + [anon_sym_class] = ACTIONS(2923), + [anon_sym_struct] = ACTIONS(2923), + [anon_sym_union] = ACTIONS(2923), + [anon_sym_if] = ACTIONS(2923), + [anon_sym_switch] = ACTIONS(2923), + [anon_sym_case] = ACTIONS(2923), + [anon_sym_default] = ACTIONS(2923), + [anon_sym_while] = ACTIONS(2923), + [anon_sym_do] = ACTIONS(2923), + [anon_sym_for] = ACTIONS(2923), + [anon_sym_return] = ACTIONS(2923), + [anon_sym_break] = ACTIONS(2923), + [anon_sym_continue] = ACTIONS(2923), + [anon_sym_goto] = ACTIONS(2923), + [anon_sym___try] = ACTIONS(2923), + [anon_sym___leave] = ACTIONS(2923), + [anon_sym_not] = ACTIONS(2923), + [anon_sym_compl] = ACTIONS(2923), + [anon_sym_DASH_DASH] = ACTIONS(2925), + [anon_sym_PLUS_PLUS] = ACTIONS(2925), + [anon_sym_sizeof] = ACTIONS(2923), + [anon_sym___alignof__] = ACTIONS(2923), + [anon_sym___alignof] = ACTIONS(2923), + [anon_sym__alignof] = ACTIONS(2923), + [anon_sym_alignof] = ACTIONS(2923), + [anon_sym__Alignof] = ACTIONS(2923), + [anon_sym_offsetof] = ACTIONS(2923), + [anon_sym__Generic] = ACTIONS(2923), + [anon_sym_asm] = ACTIONS(2923), + [anon_sym___asm__] = ACTIONS(2923), + [anon_sym___asm] = ACTIONS(2923), + [sym_number_literal] = ACTIONS(2925), + [anon_sym_L_SQUOTE] = ACTIONS(2925), + [anon_sym_u_SQUOTE] = ACTIONS(2925), + [anon_sym_U_SQUOTE] = ACTIONS(2925), + [anon_sym_u8_SQUOTE] = ACTIONS(2925), + [anon_sym_SQUOTE] = ACTIONS(2925), + [anon_sym_L_DQUOTE] = ACTIONS(2925), + [anon_sym_u_DQUOTE] = ACTIONS(2925), + [anon_sym_U_DQUOTE] = ACTIONS(2925), + [anon_sym_u8_DQUOTE] = ACTIONS(2925), + [anon_sym_DQUOTE] = ACTIONS(2925), + [sym_true] = ACTIONS(2923), + [sym_false] = ACTIONS(2923), + [anon_sym_NULL] = ACTIONS(2923), + [anon_sym_nullptr] = ACTIONS(2923), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2923), + [anon_sym_decltype] = ACTIONS(2923), + [anon_sym_explicit] = ACTIONS(2923), + [anon_sym_typename] = ACTIONS(2923), + [anon_sym_template] = ACTIONS(2923), + [anon_sym_operator] = ACTIONS(2923), + [anon_sym_try] = ACTIONS(2923), + [anon_sym_delete] = ACTIONS(2923), + [anon_sym_throw] = ACTIONS(2923), + [anon_sym_namespace] = ACTIONS(2923), + [anon_sym_static_assert] = ACTIONS(2923), + [anon_sym_concept] = ACTIONS(2923), + [anon_sym_co_return] = ACTIONS(2923), + [anon_sym_co_yield] = ACTIONS(2923), + [anon_sym_R_DQUOTE] = ACTIONS(2925), + [anon_sym_LR_DQUOTE] = ACTIONS(2925), + [anon_sym_uR_DQUOTE] = ACTIONS(2925), + [anon_sym_UR_DQUOTE] = ACTIONS(2925), + [anon_sym_u8R_DQUOTE] = ACTIONS(2925), + [anon_sym_co_await] = ACTIONS(2923), + [anon_sym_new] = ACTIONS(2923), + [anon_sym_requires] = ACTIONS(2923), + [sym_this] = ACTIONS(2923), + }, + [332] = { + [ts_builtin_sym_end] = ACTIONS(2705), + [sym_identifier] = ACTIONS(2703), + [aux_sym_preproc_include_token1] = ACTIONS(2703), + [aux_sym_preproc_def_token1] = ACTIONS(2703), + [aux_sym_preproc_if_token1] = ACTIONS(2703), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2703), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2703), + [sym_preproc_directive] = ACTIONS(2703), + [anon_sym_LPAREN2] = ACTIONS(2705), + [anon_sym_BANG] = ACTIONS(2705), + [anon_sym_TILDE] = ACTIONS(2705), + [anon_sym_DASH] = ACTIONS(2703), + [anon_sym_PLUS] = ACTIONS(2703), + [anon_sym_STAR] = ACTIONS(2705), + [anon_sym_AMP_AMP] = ACTIONS(2705), + [anon_sym_AMP] = ACTIONS(2703), + [anon_sym_SEMI] = ACTIONS(2705), + [anon_sym___extension__] = ACTIONS(2703), + [anon_sym_typedef] = ACTIONS(2703), + [anon_sym_virtual] = ACTIONS(2703), + [anon_sym_extern] = ACTIONS(2703), + [anon_sym___attribute__] = ACTIONS(2703), + [anon_sym___attribute] = ACTIONS(2703), + [anon_sym_using] = ACTIONS(2703), + [anon_sym_COLON_COLON] = ACTIONS(2705), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2705), + [anon_sym___declspec] = ACTIONS(2703), + [anon_sym___based] = ACTIONS(2703), + [anon_sym___cdecl] = ACTIONS(2703), + [anon_sym___clrcall] = ACTIONS(2703), + [anon_sym___stdcall] = ACTIONS(2703), + [anon_sym___fastcall] = ACTIONS(2703), + [anon_sym___thiscall] = ACTIONS(2703), + [anon_sym___vectorcall] = ACTIONS(2703), + [anon_sym_LBRACE] = ACTIONS(2705), + [anon_sym_signed] = ACTIONS(2703), + [anon_sym_unsigned] = ACTIONS(2703), + [anon_sym_long] = ACTIONS(2703), + [anon_sym_short] = ACTIONS(2703), + [anon_sym_LBRACK] = ACTIONS(2703), + [anon_sym_static] = ACTIONS(2703), + [anon_sym_register] = ACTIONS(2703), + [anon_sym_inline] = ACTIONS(2703), + [anon_sym___inline] = ACTIONS(2703), + [anon_sym___inline__] = ACTIONS(2703), + [anon_sym___forceinline] = ACTIONS(2703), + [anon_sym_thread_local] = ACTIONS(2703), + [anon_sym___thread] = ACTIONS(2703), + [anon_sym_const] = ACTIONS(2703), + [anon_sym_constexpr] = ACTIONS(2703), + [anon_sym_volatile] = ACTIONS(2703), + [anon_sym_restrict] = ACTIONS(2703), + [anon_sym___restrict__] = ACTIONS(2703), + [anon_sym__Atomic] = ACTIONS(2703), + [anon_sym__Noreturn] = ACTIONS(2703), + [anon_sym_noreturn] = ACTIONS(2703), + [anon_sym__Nonnull] = ACTIONS(2703), + [anon_sym_mutable] = ACTIONS(2703), + [anon_sym_constinit] = ACTIONS(2703), + [anon_sym_consteval] = ACTIONS(2703), + [anon_sym_alignas] = ACTIONS(2703), + [anon_sym__Alignas] = ACTIONS(2703), + [sym_primitive_type] = ACTIONS(2703), + [anon_sym_enum] = ACTIONS(2703), + [anon_sym_class] = ACTIONS(2703), + [anon_sym_struct] = ACTIONS(2703), + [anon_sym_union] = ACTIONS(2703), + [anon_sym_if] = ACTIONS(2703), + [anon_sym_else] = ACTIONS(2703), + [anon_sym_switch] = ACTIONS(2703), + [anon_sym_case] = ACTIONS(2703), + [anon_sym_default] = ACTIONS(2703), + [anon_sym_while] = ACTIONS(2703), + [anon_sym_do] = ACTIONS(2703), + [anon_sym_for] = ACTIONS(2703), + [anon_sym_return] = ACTIONS(2703), + [anon_sym_break] = ACTIONS(2703), + [anon_sym_continue] = ACTIONS(2703), + [anon_sym_goto] = ACTIONS(2703), + [anon_sym___try] = ACTIONS(2703), + [anon_sym___leave] = ACTIONS(2703), + [anon_sym_not] = ACTIONS(2703), + [anon_sym_compl] = ACTIONS(2703), + [anon_sym_DASH_DASH] = ACTIONS(2705), + [anon_sym_PLUS_PLUS] = ACTIONS(2705), + [anon_sym_sizeof] = ACTIONS(2703), + [anon_sym___alignof__] = ACTIONS(2703), + [anon_sym___alignof] = ACTIONS(2703), + [anon_sym__alignof] = ACTIONS(2703), + [anon_sym_alignof] = ACTIONS(2703), + [anon_sym__Alignof] = ACTIONS(2703), + [anon_sym_offsetof] = ACTIONS(2703), + [anon_sym__Generic] = ACTIONS(2703), + [anon_sym_asm] = ACTIONS(2703), + [anon_sym___asm__] = ACTIONS(2703), + [anon_sym___asm] = ACTIONS(2703), + [sym_number_literal] = ACTIONS(2705), + [anon_sym_L_SQUOTE] = ACTIONS(2705), + [anon_sym_u_SQUOTE] = ACTIONS(2705), + [anon_sym_U_SQUOTE] = ACTIONS(2705), + [anon_sym_u8_SQUOTE] = ACTIONS(2705), + [anon_sym_SQUOTE] = ACTIONS(2705), + [anon_sym_L_DQUOTE] = ACTIONS(2705), + [anon_sym_u_DQUOTE] = ACTIONS(2705), + [anon_sym_U_DQUOTE] = ACTIONS(2705), + [anon_sym_u8_DQUOTE] = ACTIONS(2705), + [anon_sym_DQUOTE] = ACTIONS(2705), + [sym_true] = ACTIONS(2703), + [sym_false] = ACTIONS(2703), + [anon_sym_NULL] = ACTIONS(2703), + [anon_sym_nullptr] = ACTIONS(2703), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2703), + [anon_sym_decltype] = ACTIONS(2703), + [anon_sym_explicit] = ACTIONS(2703), + [anon_sym_typename] = ACTIONS(2703), + [anon_sym_export] = ACTIONS(2703), + [anon_sym_module] = ACTIONS(2703), + [anon_sym_import] = ACTIONS(2703), + [anon_sym_template] = ACTIONS(2703), + [anon_sym_operator] = ACTIONS(2703), + [anon_sym_try] = ACTIONS(2703), + [anon_sym_delete] = ACTIONS(2703), + [anon_sym_throw] = ACTIONS(2703), + [anon_sym_namespace] = ACTIONS(2703), + [anon_sym_static_assert] = ACTIONS(2703), + [anon_sym_concept] = ACTIONS(2703), + [anon_sym_co_return] = ACTIONS(2703), + [anon_sym_co_yield] = ACTIONS(2703), + [anon_sym_R_DQUOTE] = ACTIONS(2705), + [anon_sym_LR_DQUOTE] = ACTIONS(2705), + [anon_sym_uR_DQUOTE] = ACTIONS(2705), + [anon_sym_UR_DQUOTE] = ACTIONS(2705), + [anon_sym_u8R_DQUOTE] = ACTIONS(2705), + [anon_sym_co_await] = ACTIONS(2703), + [anon_sym_new] = ACTIONS(2703), + [anon_sym_requires] = ACTIONS(2703), + [sym_this] = ACTIONS(2703), + }, + [333] = { [sym_identifier] = ACTIONS(2927), [aux_sym_preproc_include_token1] = ACTIONS(2927), [aux_sym_preproc_def_token1] = ACTIONS(2927), @@ -91546,7 +92113,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2927), [sym_this] = ACTIONS(2927), }, - [332] = { + [334] = { + [sym_identifier] = ACTIONS(2927), + [aux_sym_preproc_include_token1] = ACTIONS(2927), + [aux_sym_preproc_def_token1] = ACTIONS(2927), + [aux_sym_preproc_if_token1] = ACTIONS(2927), + [aux_sym_preproc_if_token2] = ACTIONS(2927), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2927), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2927), + [aux_sym_preproc_else_token1] = ACTIONS(2927), + [aux_sym_preproc_elif_token1] = ACTIONS(2927), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2927), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2927), + [sym_preproc_directive] = ACTIONS(2927), + [anon_sym_LPAREN2] = ACTIONS(2929), + [anon_sym_BANG] = ACTIONS(2929), + [anon_sym_TILDE] = ACTIONS(2929), + [anon_sym_DASH] = ACTIONS(2927), + [anon_sym_PLUS] = ACTIONS(2927), + [anon_sym_STAR] = ACTIONS(2929), + [anon_sym_AMP_AMP] = ACTIONS(2929), + [anon_sym_AMP] = ACTIONS(2927), + [anon_sym_SEMI] = ACTIONS(2929), + [anon_sym___extension__] = ACTIONS(2927), + [anon_sym_typedef] = ACTIONS(2927), + [anon_sym_virtual] = ACTIONS(2927), + [anon_sym_extern] = ACTIONS(2927), + [anon_sym___attribute__] = ACTIONS(2927), + [anon_sym___attribute] = ACTIONS(2927), + [anon_sym_using] = ACTIONS(2927), + [anon_sym_COLON_COLON] = ACTIONS(2929), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2929), + [anon_sym___declspec] = ACTIONS(2927), + [anon_sym___based] = ACTIONS(2927), + [anon_sym___cdecl] = ACTIONS(2927), + [anon_sym___clrcall] = ACTIONS(2927), + [anon_sym___stdcall] = ACTIONS(2927), + [anon_sym___fastcall] = ACTIONS(2927), + [anon_sym___thiscall] = ACTIONS(2927), + [anon_sym___vectorcall] = ACTIONS(2927), + [anon_sym_LBRACE] = ACTIONS(2929), + [anon_sym_signed] = ACTIONS(2927), + [anon_sym_unsigned] = ACTIONS(2927), + [anon_sym_long] = ACTIONS(2927), + [anon_sym_short] = ACTIONS(2927), + [anon_sym_LBRACK] = ACTIONS(2927), + [anon_sym_static] = ACTIONS(2927), + [anon_sym_register] = ACTIONS(2927), + [anon_sym_inline] = ACTIONS(2927), + [anon_sym___inline] = ACTIONS(2927), + [anon_sym___inline__] = ACTIONS(2927), + [anon_sym___forceinline] = ACTIONS(2927), + [anon_sym_thread_local] = ACTIONS(2927), + [anon_sym___thread] = ACTIONS(2927), + [anon_sym_const] = ACTIONS(2927), + [anon_sym_constexpr] = ACTIONS(2927), + [anon_sym_volatile] = ACTIONS(2927), + [anon_sym_restrict] = ACTIONS(2927), + [anon_sym___restrict__] = ACTIONS(2927), + [anon_sym__Atomic] = ACTIONS(2927), + [anon_sym__Noreturn] = ACTIONS(2927), + [anon_sym_noreturn] = ACTIONS(2927), + [anon_sym__Nonnull] = ACTIONS(2927), + [anon_sym_mutable] = ACTIONS(2927), + [anon_sym_constinit] = ACTIONS(2927), + [anon_sym_consteval] = ACTIONS(2927), + [anon_sym_alignas] = ACTIONS(2927), + [anon_sym__Alignas] = ACTIONS(2927), + [sym_primitive_type] = ACTIONS(2927), + [anon_sym_enum] = ACTIONS(2927), + [anon_sym_class] = ACTIONS(2927), + [anon_sym_struct] = ACTIONS(2927), + [anon_sym_union] = ACTIONS(2927), + [anon_sym_if] = ACTIONS(2927), + [anon_sym_switch] = ACTIONS(2927), + [anon_sym_case] = ACTIONS(2927), + [anon_sym_default] = ACTIONS(2927), + [anon_sym_while] = ACTIONS(2927), + [anon_sym_do] = ACTIONS(2927), + [anon_sym_for] = ACTIONS(2927), + [anon_sym_return] = ACTIONS(2927), + [anon_sym_break] = ACTIONS(2927), + [anon_sym_continue] = ACTIONS(2927), + [anon_sym_goto] = ACTIONS(2927), + [anon_sym___try] = ACTIONS(2927), + [anon_sym___leave] = ACTIONS(2927), + [anon_sym_not] = ACTIONS(2927), + [anon_sym_compl] = ACTIONS(2927), + [anon_sym_DASH_DASH] = ACTIONS(2929), + [anon_sym_PLUS_PLUS] = ACTIONS(2929), + [anon_sym_sizeof] = ACTIONS(2927), + [anon_sym___alignof__] = ACTIONS(2927), + [anon_sym___alignof] = ACTIONS(2927), + [anon_sym__alignof] = ACTIONS(2927), + [anon_sym_alignof] = ACTIONS(2927), + [anon_sym__Alignof] = ACTIONS(2927), + [anon_sym_offsetof] = ACTIONS(2927), + [anon_sym__Generic] = ACTIONS(2927), + [anon_sym_asm] = ACTIONS(2927), + [anon_sym___asm__] = ACTIONS(2927), + [anon_sym___asm] = ACTIONS(2927), + [sym_number_literal] = ACTIONS(2929), + [anon_sym_L_SQUOTE] = ACTIONS(2929), + [anon_sym_u_SQUOTE] = ACTIONS(2929), + [anon_sym_U_SQUOTE] = ACTIONS(2929), + [anon_sym_u8_SQUOTE] = ACTIONS(2929), + [anon_sym_SQUOTE] = ACTIONS(2929), + [anon_sym_L_DQUOTE] = ACTIONS(2929), + [anon_sym_u_DQUOTE] = ACTIONS(2929), + [anon_sym_U_DQUOTE] = ACTIONS(2929), + [anon_sym_u8_DQUOTE] = ACTIONS(2929), + [anon_sym_DQUOTE] = ACTIONS(2929), + [sym_true] = ACTIONS(2927), + [sym_false] = ACTIONS(2927), + [anon_sym_NULL] = ACTIONS(2927), + [anon_sym_nullptr] = ACTIONS(2927), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2927), + [anon_sym_decltype] = ACTIONS(2927), + [anon_sym_explicit] = ACTIONS(2927), + [anon_sym_typename] = ACTIONS(2927), + [anon_sym_template] = ACTIONS(2927), + [anon_sym_operator] = ACTIONS(2927), + [anon_sym_try] = ACTIONS(2927), + [anon_sym_delete] = ACTIONS(2927), + [anon_sym_throw] = ACTIONS(2927), + [anon_sym_namespace] = ACTIONS(2927), + [anon_sym_static_assert] = ACTIONS(2927), + [anon_sym_concept] = ACTIONS(2927), + [anon_sym_co_return] = ACTIONS(2927), + [anon_sym_co_yield] = ACTIONS(2927), + [anon_sym_R_DQUOTE] = ACTIONS(2929), + [anon_sym_LR_DQUOTE] = ACTIONS(2929), + [anon_sym_uR_DQUOTE] = ACTIONS(2929), + [anon_sym_UR_DQUOTE] = ACTIONS(2929), + [anon_sym_u8R_DQUOTE] = ACTIONS(2929), + [anon_sym_co_await] = ACTIONS(2927), + [anon_sym_new] = ACTIONS(2927), + [anon_sym_requires] = ACTIONS(2927), + [sym_this] = ACTIONS(2927), + }, + [335] = { [sym_identifier] = ACTIONS(2931), [aux_sym_preproc_include_token1] = ACTIONS(2931), [aux_sym_preproc_def_token1] = ACTIONS(2931), @@ -91686,7 +92393,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2931), [sym_this] = ACTIONS(2931), }, - [333] = { + [336] = { [sym_identifier] = ACTIONS(2935), [aux_sym_preproc_include_token1] = ACTIONS(2935), [aux_sym_preproc_def_token1] = ACTIONS(2935), @@ -91826,7 +92533,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2935), [sym_this] = ACTIONS(2935), }, - [334] = { + [337] = { [sym_identifier] = ACTIONS(2939), [aux_sym_preproc_include_token1] = ACTIONS(2939), [aux_sym_preproc_def_token1] = ACTIONS(2939), @@ -91966,7 +92673,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2939), [sym_this] = ACTIONS(2939), }, - [335] = { + [338] = { [sym_identifier] = ACTIONS(2943), [aux_sym_preproc_include_token1] = ACTIONS(2943), [aux_sym_preproc_def_token1] = ACTIONS(2943), @@ -92106,7 +92813,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2943), [sym_this] = ACTIONS(2943), }, - [336] = { + [339] = { [sym_identifier] = ACTIONS(2947), [aux_sym_preproc_include_token1] = ACTIONS(2947), [aux_sym_preproc_def_token1] = ACTIONS(2947), @@ -92246,7 +92953,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2947), [sym_this] = ACTIONS(2947), }, - [337] = { + [340] = { [sym_identifier] = ACTIONS(2951), [aux_sym_preproc_include_token1] = ACTIONS(2951), [aux_sym_preproc_def_token1] = ACTIONS(2951), @@ -92386,7 +93093,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2951), [sym_this] = ACTIONS(2951), }, - [338] = { + [341] = { [sym_identifier] = ACTIONS(2955), [aux_sym_preproc_include_token1] = ACTIONS(2955), [aux_sym_preproc_def_token1] = ACTIONS(2955), @@ -92526,98 +93233,798 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2955), [sym_this] = ACTIONS(2955), }, - [339] = { - [sym_preproc_def] = STATE(379), - [sym_preproc_function_def] = STATE(379), - [sym_preproc_call] = STATE(379), - [sym_preproc_if_in_field_declaration_list] = STATE(379), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(379), - [sym_preproc_else_in_field_declaration_list] = STATE(8222), - [sym_preproc_elif_in_field_declaration_list] = STATE(8222), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(8222), - [sym_type_definition] = STATE(379), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(5637), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(3005), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6218), - [sym_array_declarator] = STATE(5998), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym__field_declaration_list_item] = STATE(379), - [sym_field_declaration] = STATE(379), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym_explicit_function_specifier] = STATE(1744), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(379), - [sym_operator_cast] = STATE(6834), - [sym_inline_method_definition] = STATE(379), - [sym__constructor_specifiers] = STATE(1744), - [sym_operator_cast_definition] = STATE(379), - [sym_operator_cast_declaration] = STATE(379), - [sym_constructor_or_destructor_definition] = STATE(379), - [sym_constructor_or_destructor_declaration] = STATE(379), - [sym_friend_declaration] = STATE(379), - [sym_access_specifier] = STATE(8733), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(2406), - [sym_template_function] = STATE(5998), - [sym_using_declaration] = STATE(379), - [sym_alias_declaration] = STATE(379), - [sym_static_assert_declaration] = STATE(379), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5478), - [sym_qualified_identifier] = STATE(5998), - [sym_qualified_type_identifier] = STATE(3015), - [sym_qualified_operator_cast_identifier] = STATE(6834), - [sym_operator_name] = STATE(5998), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(379), - [aux_sym__declaration_specifiers_repeat1] = STATE(1993), - [aux_sym_attributed_declarator_repeat1] = STATE(7128), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1744), + [342] = { [sym_identifier] = ACTIONS(2959), - [aux_sym_preproc_def_token1] = ACTIONS(2961), + [aux_sym_preproc_include_token1] = ACTIONS(2959), + [aux_sym_preproc_def_token1] = ACTIONS(2959), + [aux_sym_preproc_if_token1] = ACTIONS(2959), + [aux_sym_preproc_if_token2] = ACTIONS(2959), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2959), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2959), + [aux_sym_preproc_else_token1] = ACTIONS(2959), + [aux_sym_preproc_elif_token1] = ACTIONS(2959), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2959), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2959), + [sym_preproc_directive] = ACTIONS(2959), + [anon_sym_LPAREN2] = ACTIONS(2961), + [anon_sym_BANG] = ACTIONS(2961), + [anon_sym_TILDE] = ACTIONS(2961), + [anon_sym_DASH] = ACTIONS(2959), + [anon_sym_PLUS] = ACTIONS(2959), + [anon_sym_STAR] = ACTIONS(2961), + [anon_sym_AMP_AMP] = ACTIONS(2961), + [anon_sym_AMP] = ACTIONS(2959), + [anon_sym_SEMI] = ACTIONS(2961), + [anon_sym___extension__] = ACTIONS(2959), + [anon_sym_typedef] = ACTIONS(2959), + [anon_sym_virtual] = ACTIONS(2959), + [anon_sym_extern] = ACTIONS(2959), + [anon_sym___attribute__] = ACTIONS(2959), + [anon_sym___attribute] = ACTIONS(2959), + [anon_sym_using] = ACTIONS(2959), + [anon_sym_COLON_COLON] = ACTIONS(2961), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2961), + [anon_sym___declspec] = ACTIONS(2959), + [anon_sym___based] = ACTIONS(2959), + [anon_sym___cdecl] = ACTIONS(2959), + [anon_sym___clrcall] = ACTIONS(2959), + [anon_sym___stdcall] = ACTIONS(2959), + [anon_sym___fastcall] = ACTIONS(2959), + [anon_sym___thiscall] = ACTIONS(2959), + [anon_sym___vectorcall] = ACTIONS(2959), + [anon_sym_LBRACE] = ACTIONS(2961), + [anon_sym_signed] = ACTIONS(2959), + [anon_sym_unsigned] = ACTIONS(2959), + [anon_sym_long] = ACTIONS(2959), + [anon_sym_short] = ACTIONS(2959), + [anon_sym_LBRACK] = ACTIONS(2959), + [anon_sym_static] = ACTIONS(2959), + [anon_sym_register] = ACTIONS(2959), + [anon_sym_inline] = ACTIONS(2959), + [anon_sym___inline] = ACTIONS(2959), + [anon_sym___inline__] = ACTIONS(2959), + [anon_sym___forceinline] = ACTIONS(2959), + [anon_sym_thread_local] = ACTIONS(2959), + [anon_sym___thread] = ACTIONS(2959), + [anon_sym_const] = ACTIONS(2959), + [anon_sym_constexpr] = ACTIONS(2959), + [anon_sym_volatile] = ACTIONS(2959), + [anon_sym_restrict] = ACTIONS(2959), + [anon_sym___restrict__] = ACTIONS(2959), + [anon_sym__Atomic] = ACTIONS(2959), + [anon_sym__Noreturn] = ACTIONS(2959), + [anon_sym_noreturn] = ACTIONS(2959), + [anon_sym__Nonnull] = ACTIONS(2959), + [anon_sym_mutable] = ACTIONS(2959), + [anon_sym_constinit] = ACTIONS(2959), + [anon_sym_consteval] = ACTIONS(2959), + [anon_sym_alignas] = ACTIONS(2959), + [anon_sym__Alignas] = ACTIONS(2959), + [sym_primitive_type] = ACTIONS(2959), + [anon_sym_enum] = ACTIONS(2959), + [anon_sym_class] = ACTIONS(2959), + [anon_sym_struct] = ACTIONS(2959), + [anon_sym_union] = ACTIONS(2959), + [anon_sym_if] = ACTIONS(2959), + [anon_sym_switch] = ACTIONS(2959), + [anon_sym_case] = ACTIONS(2959), + [anon_sym_default] = ACTIONS(2959), + [anon_sym_while] = ACTIONS(2959), + [anon_sym_do] = ACTIONS(2959), + [anon_sym_for] = ACTIONS(2959), + [anon_sym_return] = ACTIONS(2959), + [anon_sym_break] = ACTIONS(2959), + [anon_sym_continue] = ACTIONS(2959), + [anon_sym_goto] = ACTIONS(2959), + [anon_sym___try] = ACTIONS(2959), + [anon_sym___leave] = ACTIONS(2959), + [anon_sym_not] = ACTIONS(2959), + [anon_sym_compl] = ACTIONS(2959), + [anon_sym_DASH_DASH] = ACTIONS(2961), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_sizeof] = ACTIONS(2959), + [anon_sym___alignof__] = ACTIONS(2959), + [anon_sym___alignof] = ACTIONS(2959), + [anon_sym__alignof] = ACTIONS(2959), + [anon_sym_alignof] = ACTIONS(2959), + [anon_sym__Alignof] = ACTIONS(2959), + [anon_sym_offsetof] = ACTIONS(2959), + [anon_sym__Generic] = ACTIONS(2959), + [anon_sym_asm] = ACTIONS(2959), + [anon_sym___asm__] = ACTIONS(2959), + [anon_sym___asm] = ACTIONS(2959), + [sym_number_literal] = ACTIONS(2961), + [anon_sym_L_SQUOTE] = ACTIONS(2961), + [anon_sym_u_SQUOTE] = ACTIONS(2961), + [anon_sym_U_SQUOTE] = ACTIONS(2961), + [anon_sym_u8_SQUOTE] = ACTIONS(2961), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_L_DQUOTE] = ACTIONS(2961), + [anon_sym_u_DQUOTE] = ACTIONS(2961), + [anon_sym_U_DQUOTE] = ACTIONS(2961), + [anon_sym_u8_DQUOTE] = ACTIONS(2961), + [anon_sym_DQUOTE] = ACTIONS(2961), + [sym_true] = ACTIONS(2959), + [sym_false] = ACTIONS(2959), + [anon_sym_NULL] = ACTIONS(2959), + [anon_sym_nullptr] = ACTIONS(2959), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2959), + [anon_sym_decltype] = ACTIONS(2959), + [anon_sym_explicit] = ACTIONS(2959), + [anon_sym_typename] = ACTIONS(2959), + [anon_sym_template] = ACTIONS(2959), + [anon_sym_operator] = ACTIONS(2959), + [anon_sym_try] = ACTIONS(2959), + [anon_sym_delete] = ACTIONS(2959), + [anon_sym_throw] = ACTIONS(2959), + [anon_sym_namespace] = ACTIONS(2959), + [anon_sym_static_assert] = ACTIONS(2959), + [anon_sym_concept] = ACTIONS(2959), + [anon_sym_co_return] = ACTIONS(2959), + [anon_sym_co_yield] = ACTIONS(2959), + [anon_sym_R_DQUOTE] = ACTIONS(2961), + [anon_sym_LR_DQUOTE] = ACTIONS(2961), + [anon_sym_uR_DQUOTE] = ACTIONS(2961), + [anon_sym_UR_DQUOTE] = ACTIONS(2961), + [anon_sym_u8R_DQUOTE] = ACTIONS(2961), + [anon_sym_co_await] = ACTIONS(2959), + [anon_sym_new] = ACTIONS(2959), + [anon_sym_requires] = ACTIONS(2959), + [sym_this] = ACTIONS(2959), + }, + [343] = { + [sym_identifier] = ACTIONS(2963), + [aux_sym_preproc_include_token1] = ACTIONS(2963), + [aux_sym_preproc_def_token1] = ACTIONS(2963), [aux_sym_preproc_if_token1] = ACTIONS(2963), - [aux_sym_preproc_if_token2] = ACTIONS(2965), + [aux_sym_preproc_if_token2] = ACTIONS(2963), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2963), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2963), + [aux_sym_preproc_else_token1] = ACTIONS(2963), + [aux_sym_preproc_elif_token1] = ACTIONS(2963), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2963), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2963), + [sym_preproc_directive] = ACTIONS(2963), + [anon_sym_LPAREN2] = ACTIONS(2965), + [anon_sym_BANG] = ACTIONS(2965), + [anon_sym_TILDE] = ACTIONS(2965), + [anon_sym_DASH] = ACTIONS(2963), + [anon_sym_PLUS] = ACTIONS(2963), + [anon_sym_STAR] = ACTIONS(2965), + [anon_sym_AMP_AMP] = ACTIONS(2965), + [anon_sym_AMP] = ACTIONS(2963), + [anon_sym_SEMI] = ACTIONS(2965), + [anon_sym___extension__] = ACTIONS(2963), + [anon_sym_typedef] = ACTIONS(2963), + [anon_sym_virtual] = ACTIONS(2963), + [anon_sym_extern] = ACTIONS(2963), + [anon_sym___attribute__] = ACTIONS(2963), + [anon_sym___attribute] = ACTIONS(2963), + [anon_sym_using] = ACTIONS(2963), + [anon_sym_COLON_COLON] = ACTIONS(2965), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2965), + [anon_sym___declspec] = ACTIONS(2963), + [anon_sym___based] = ACTIONS(2963), + [anon_sym___cdecl] = ACTIONS(2963), + [anon_sym___clrcall] = ACTIONS(2963), + [anon_sym___stdcall] = ACTIONS(2963), + [anon_sym___fastcall] = ACTIONS(2963), + [anon_sym___thiscall] = ACTIONS(2963), + [anon_sym___vectorcall] = ACTIONS(2963), + [anon_sym_LBRACE] = ACTIONS(2965), + [anon_sym_signed] = ACTIONS(2963), + [anon_sym_unsigned] = ACTIONS(2963), + [anon_sym_long] = ACTIONS(2963), + [anon_sym_short] = ACTIONS(2963), + [anon_sym_LBRACK] = ACTIONS(2963), + [anon_sym_static] = ACTIONS(2963), + [anon_sym_register] = ACTIONS(2963), + [anon_sym_inline] = ACTIONS(2963), + [anon_sym___inline] = ACTIONS(2963), + [anon_sym___inline__] = ACTIONS(2963), + [anon_sym___forceinline] = ACTIONS(2963), + [anon_sym_thread_local] = ACTIONS(2963), + [anon_sym___thread] = ACTIONS(2963), + [anon_sym_const] = ACTIONS(2963), + [anon_sym_constexpr] = ACTIONS(2963), + [anon_sym_volatile] = ACTIONS(2963), + [anon_sym_restrict] = ACTIONS(2963), + [anon_sym___restrict__] = ACTIONS(2963), + [anon_sym__Atomic] = ACTIONS(2963), + [anon_sym__Noreturn] = ACTIONS(2963), + [anon_sym_noreturn] = ACTIONS(2963), + [anon_sym__Nonnull] = ACTIONS(2963), + [anon_sym_mutable] = ACTIONS(2963), + [anon_sym_constinit] = ACTIONS(2963), + [anon_sym_consteval] = ACTIONS(2963), + [anon_sym_alignas] = ACTIONS(2963), + [anon_sym__Alignas] = ACTIONS(2963), + [sym_primitive_type] = ACTIONS(2963), + [anon_sym_enum] = ACTIONS(2963), + [anon_sym_class] = ACTIONS(2963), + [anon_sym_struct] = ACTIONS(2963), + [anon_sym_union] = ACTIONS(2963), + [anon_sym_if] = ACTIONS(2963), + [anon_sym_switch] = ACTIONS(2963), + [anon_sym_case] = ACTIONS(2963), + [anon_sym_default] = ACTIONS(2963), + [anon_sym_while] = ACTIONS(2963), + [anon_sym_do] = ACTIONS(2963), + [anon_sym_for] = ACTIONS(2963), + [anon_sym_return] = ACTIONS(2963), + [anon_sym_break] = ACTIONS(2963), + [anon_sym_continue] = ACTIONS(2963), + [anon_sym_goto] = ACTIONS(2963), + [anon_sym___try] = ACTIONS(2963), + [anon_sym___leave] = ACTIONS(2963), + [anon_sym_not] = ACTIONS(2963), + [anon_sym_compl] = ACTIONS(2963), + [anon_sym_DASH_DASH] = ACTIONS(2965), + [anon_sym_PLUS_PLUS] = ACTIONS(2965), + [anon_sym_sizeof] = ACTIONS(2963), + [anon_sym___alignof__] = ACTIONS(2963), + [anon_sym___alignof] = ACTIONS(2963), + [anon_sym__alignof] = ACTIONS(2963), + [anon_sym_alignof] = ACTIONS(2963), + [anon_sym__Alignof] = ACTIONS(2963), + [anon_sym_offsetof] = ACTIONS(2963), + [anon_sym__Generic] = ACTIONS(2963), + [anon_sym_asm] = ACTIONS(2963), + [anon_sym___asm__] = ACTIONS(2963), + [anon_sym___asm] = ACTIONS(2963), + [sym_number_literal] = ACTIONS(2965), + [anon_sym_L_SQUOTE] = ACTIONS(2965), + [anon_sym_u_SQUOTE] = ACTIONS(2965), + [anon_sym_U_SQUOTE] = ACTIONS(2965), + [anon_sym_u8_SQUOTE] = ACTIONS(2965), + [anon_sym_SQUOTE] = ACTIONS(2965), + [anon_sym_L_DQUOTE] = ACTIONS(2965), + [anon_sym_u_DQUOTE] = ACTIONS(2965), + [anon_sym_U_DQUOTE] = ACTIONS(2965), + [anon_sym_u8_DQUOTE] = ACTIONS(2965), + [anon_sym_DQUOTE] = ACTIONS(2965), + [sym_true] = ACTIONS(2963), + [sym_false] = ACTIONS(2963), + [anon_sym_NULL] = ACTIONS(2963), + [anon_sym_nullptr] = ACTIONS(2963), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2963), + [anon_sym_decltype] = ACTIONS(2963), + [anon_sym_explicit] = ACTIONS(2963), + [anon_sym_typename] = ACTIONS(2963), + [anon_sym_template] = ACTIONS(2963), + [anon_sym_operator] = ACTIONS(2963), + [anon_sym_try] = ACTIONS(2963), + [anon_sym_delete] = ACTIONS(2963), + [anon_sym_throw] = ACTIONS(2963), + [anon_sym_namespace] = ACTIONS(2963), + [anon_sym_static_assert] = ACTIONS(2963), + [anon_sym_concept] = ACTIONS(2963), + [anon_sym_co_return] = ACTIONS(2963), + [anon_sym_co_yield] = ACTIONS(2963), + [anon_sym_R_DQUOTE] = ACTIONS(2965), + [anon_sym_LR_DQUOTE] = ACTIONS(2965), + [anon_sym_uR_DQUOTE] = ACTIONS(2965), + [anon_sym_UR_DQUOTE] = ACTIONS(2965), + [anon_sym_u8R_DQUOTE] = ACTIONS(2965), + [anon_sym_co_await] = ACTIONS(2963), + [anon_sym_new] = ACTIONS(2963), + [anon_sym_requires] = ACTIONS(2963), + [sym_this] = ACTIONS(2963), + }, + [344] = { + [sym_identifier] = ACTIONS(2967), + [aux_sym_preproc_include_token1] = ACTIONS(2967), + [aux_sym_preproc_def_token1] = ACTIONS(2967), + [aux_sym_preproc_if_token1] = ACTIONS(2967), + [aux_sym_preproc_if_token2] = ACTIONS(2967), [aux_sym_preproc_ifdef_token1] = ACTIONS(2967), [aux_sym_preproc_ifdef_token2] = ACTIONS(2967), - [aux_sym_preproc_else_token1] = ACTIONS(2969), + [aux_sym_preproc_else_token1] = ACTIONS(2967), + [aux_sym_preproc_elif_token1] = ACTIONS(2967), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2967), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2967), + [sym_preproc_directive] = ACTIONS(2967), + [anon_sym_LPAREN2] = ACTIONS(2969), + [anon_sym_BANG] = ACTIONS(2969), + [anon_sym_TILDE] = ACTIONS(2969), + [anon_sym_DASH] = ACTIONS(2967), + [anon_sym_PLUS] = ACTIONS(2967), + [anon_sym_STAR] = ACTIONS(2969), + [anon_sym_AMP_AMP] = ACTIONS(2969), + [anon_sym_AMP] = ACTIONS(2967), + [anon_sym_SEMI] = ACTIONS(2969), + [anon_sym___extension__] = ACTIONS(2967), + [anon_sym_typedef] = ACTIONS(2967), + [anon_sym_virtual] = ACTIONS(2967), + [anon_sym_extern] = ACTIONS(2967), + [anon_sym___attribute__] = ACTIONS(2967), + [anon_sym___attribute] = ACTIONS(2967), + [anon_sym_using] = ACTIONS(2967), + [anon_sym_COLON_COLON] = ACTIONS(2969), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2969), + [anon_sym___declspec] = ACTIONS(2967), + [anon_sym___based] = ACTIONS(2967), + [anon_sym___cdecl] = ACTIONS(2967), + [anon_sym___clrcall] = ACTIONS(2967), + [anon_sym___stdcall] = ACTIONS(2967), + [anon_sym___fastcall] = ACTIONS(2967), + [anon_sym___thiscall] = ACTIONS(2967), + [anon_sym___vectorcall] = ACTIONS(2967), + [anon_sym_LBRACE] = ACTIONS(2969), + [anon_sym_signed] = ACTIONS(2967), + [anon_sym_unsigned] = ACTIONS(2967), + [anon_sym_long] = ACTIONS(2967), + [anon_sym_short] = ACTIONS(2967), + [anon_sym_LBRACK] = ACTIONS(2967), + [anon_sym_static] = ACTIONS(2967), + [anon_sym_register] = ACTIONS(2967), + [anon_sym_inline] = ACTIONS(2967), + [anon_sym___inline] = ACTIONS(2967), + [anon_sym___inline__] = ACTIONS(2967), + [anon_sym___forceinline] = ACTIONS(2967), + [anon_sym_thread_local] = ACTIONS(2967), + [anon_sym___thread] = ACTIONS(2967), + [anon_sym_const] = ACTIONS(2967), + [anon_sym_constexpr] = ACTIONS(2967), + [anon_sym_volatile] = ACTIONS(2967), + [anon_sym_restrict] = ACTIONS(2967), + [anon_sym___restrict__] = ACTIONS(2967), + [anon_sym__Atomic] = ACTIONS(2967), + [anon_sym__Noreturn] = ACTIONS(2967), + [anon_sym_noreturn] = ACTIONS(2967), + [anon_sym__Nonnull] = ACTIONS(2967), + [anon_sym_mutable] = ACTIONS(2967), + [anon_sym_constinit] = ACTIONS(2967), + [anon_sym_consteval] = ACTIONS(2967), + [anon_sym_alignas] = ACTIONS(2967), + [anon_sym__Alignas] = ACTIONS(2967), + [sym_primitive_type] = ACTIONS(2967), + [anon_sym_enum] = ACTIONS(2967), + [anon_sym_class] = ACTIONS(2967), + [anon_sym_struct] = ACTIONS(2967), + [anon_sym_union] = ACTIONS(2967), + [anon_sym_if] = ACTIONS(2967), + [anon_sym_switch] = ACTIONS(2967), + [anon_sym_case] = ACTIONS(2967), + [anon_sym_default] = ACTIONS(2967), + [anon_sym_while] = ACTIONS(2967), + [anon_sym_do] = ACTIONS(2967), + [anon_sym_for] = ACTIONS(2967), + [anon_sym_return] = ACTIONS(2967), + [anon_sym_break] = ACTIONS(2967), + [anon_sym_continue] = ACTIONS(2967), + [anon_sym_goto] = ACTIONS(2967), + [anon_sym___try] = ACTIONS(2967), + [anon_sym___leave] = ACTIONS(2967), + [anon_sym_not] = ACTIONS(2967), + [anon_sym_compl] = ACTIONS(2967), + [anon_sym_DASH_DASH] = ACTIONS(2969), + [anon_sym_PLUS_PLUS] = ACTIONS(2969), + [anon_sym_sizeof] = ACTIONS(2967), + [anon_sym___alignof__] = ACTIONS(2967), + [anon_sym___alignof] = ACTIONS(2967), + [anon_sym__alignof] = ACTIONS(2967), + [anon_sym_alignof] = ACTIONS(2967), + [anon_sym__Alignof] = ACTIONS(2967), + [anon_sym_offsetof] = ACTIONS(2967), + [anon_sym__Generic] = ACTIONS(2967), + [anon_sym_asm] = ACTIONS(2967), + [anon_sym___asm__] = ACTIONS(2967), + [anon_sym___asm] = ACTIONS(2967), + [sym_number_literal] = ACTIONS(2969), + [anon_sym_L_SQUOTE] = ACTIONS(2969), + [anon_sym_u_SQUOTE] = ACTIONS(2969), + [anon_sym_U_SQUOTE] = ACTIONS(2969), + [anon_sym_u8_SQUOTE] = ACTIONS(2969), + [anon_sym_SQUOTE] = ACTIONS(2969), + [anon_sym_L_DQUOTE] = ACTIONS(2969), + [anon_sym_u_DQUOTE] = ACTIONS(2969), + [anon_sym_U_DQUOTE] = ACTIONS(2969), + [anon_sym_u8_DQUOTE] = ACTIONS(2969), + [anon_sym_DQUOTE] = ACTIONS(2969), + [sym_true] = ACTIONS(2967), + [sym_false] = ACTIONS(2967), + [anon_sym_NULL] = ACTIONS(2967), + [anon_sym_nullptr] = ACTIONS(2967), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2967), + [anon_sym_decltype] = ACTIONS(2967), + [anon_sym_explicit] = ACTIONS(2967), + [anon_sym_typename] = ACTIONS(2967), + [anon_sym_template] = ACTIONS(2967), + [anon_sym_operator] = ACTIONS(2967), + [anon_sym_try] = ACTIONS(2967), + [anon_sym_delete] = ACTIONS(2967), + [anon_sym_throw] = ACTIONS(2967), + [anon_sym_namespace] = ACTIONS(2967), + [anon_sym_static_assert] = ACTIONS(2967), + [anon_sym_concept] = ACTIONS(2967), + [anon_sym_co_return] = ACTIONS(2967), + [anon_sym_co_yield] = ACTIONS(2967), + [anon_sym_R_DQUOTE] = ACTIONS(2969), + [anon_sym_LR_DQUOTE] = ACTIONS(2969), + [anon_sym_uR_DQUOTE] = ACTIONS(2969), + [anon_sym_UR_DQUOTE] = ACTIONS(2969), + [anon_sym_u8R_DQUOTE] = ACTIONS(2969), + [anon_sym_co_await] = ACTIONS(2967), + [anon_sym_new] = ACTIONS(2967), + [anon_sym_requires] = ACTIONS(2967), + [sym_this] = ACTIONS(2967), + }, + [345] = { + [sym_identifier] = ACTIONS(2971), + [aux_sym_preproc_include_token1] = ACTIONS(2971), + [aux_sym_preproc_def_token1] = ACTIONS(2971), + [aux_sym_preproc_if_token1] = ACTIONS(2971), + [aux_sym_preproc_if_token2] = ACTIONS(2971), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2971), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2971), + [aux_sym_preproc_else_token1] = ACTIONS(2971), [aux_sym_preproc_elif_token1] = ACTIONS(2971), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2973), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2973), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2971), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2971), + [sym_preproc_directive] = ACTIONS(2971), + [anon_sym_LPAREN2] = ACTIONS(2973), + [anon_sym_BANG] = ACTIONS(2973), + [anon_sym_TILDE] = ACTIONS(2973), + [anon_sym_DASH] = ACTIONS(2971), + [anon_sym_PLUS] = ACTIONS(2971), + [anon_sym_STAR] = ACTIONS(2973), + [anon_sym_AMP_AMP] = ACTIONS(2973), + [anon_sym_AMP] = ACTIONS(2971), + [anon_sym_SEMI] = ACTIONS(2973), + [anon_sym___extension__] = ACTIONS(2971), + [anon_sym_typedef] = ACTIONS(2971), + [anon_sym_virtual] = ACTIONS(2971), + [anon_sym_extern] = ACTIONS(2971), + [anon_sym___attribute__] = ACTIONS(2971), + [anon_sym___attribute] = ACTIONS(2971), + [anon_sym_using] = ACTIONS(2971), + [anon_sym_COLON_COLON] = ACTIONS(2973), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2973), + [anon_sym___declspec] = ACTIONS(2971), + [anon_sym___based] = ACTIONS(2971), + [anon_sym___cdecl] = ACTIONS(2971), + [anon_sym___clrcall] = ACTIONS(2971), + [anon_sym___stdcall] = ACTIONS(2971), + [anon_sym___fastcall] = ACTIONS(2971), + [anon_sym___thiscall] = ACTIONS(2971), + [anon_sym___vectorcall] = ACTIONS(2971), + [anon_sym_LBRACE] = ACTIONS(2973), + [anon_sym_signed] = ACTIONS(2971), + [anon_sym_unsigned] = ACTIONS(2971), + [anon_sym_long] = ACTIONS(2971), + [anon_sym_short] = ACTIONS(2971), + [anon_sym_LBRACK] = ACTIONS(2971), + [anon_sym_static] = ACTIONS(2971), + [anon_sym_register] = ACTIONS(2971), + [anon_sym_inline] = ACTIONS(2971), + [anon_sym___inline] = ACTIONS(2971), + [anon_sym___inline__] = ACTIONS(2971), + [anon_sym___forceinline] = ACTIONS(2971), + [anon_sym_thread_local] = ACTIONS(2971), + [anon_sym___thread] = ACTIONS(2971), + [anon_sym_const] = ACTIONS(2971), + [anon_sym_constexpr] = ACTIONS(2971), + [anon_sym_volatile] = ACTIONS(2971), + [anon_sym_restrict] = ACTIONS(2971), + [anon_sym___restrict__] = ACTIONS(2971), + [anon_sym__Atomic] = ACTIONS(2971), + [anon_sym__Noreturn] = ACTIONS(2971), + [anon_sym_noreturn] = ACTIONS(2971), + [anon_sym__Nonnull] = ACTIONS(2971), + [anon_sym_mutable] = ACTIONS(2971), + [anon_sym_constinit] = ACTIONS(2971), + [anon_sym_consteval] = ACTIONS(2971), + [anon_sym_alignas] = ACTIONS(2971), + [anon_sym__Alignas] = ACTIONS(2971), + [sym_primitive_type] = ACTIONS(2971), + [anon_sym_enum] = ACTIONS(2971), + [anon_sym_class] = ACTIONS(2971), + [anon_sym_struct] = ACTIONS(2971), + [anon_sym_union] = ACTIONS(2971), + [anon_sym_if] = ACTIONS(2971), + [anon_sym_switch] = ACTIONS(2971), + [anon_sym_case] = ACTIONS(2971), + [anon_sym_default] = ACTIONS(2971), + [anon_sym_while] = ACTIONS(2971), + [anon_sym_do] = ACTIONS(2971), + [anon_sym_for] = ACTIONS(2971), + [anon_sym_return] = ACTIONS(2971), + [anon_sym_break] = ACTIONS(2971), + [anon_sym_continue] = ACTIONS(2971), + [anon_sym_goto] = ACTIONS(2971), + [anon_sym___try] = ACTIONS(2971), + [anon_sym___leave] = ACTIONS(2971), + [anon_sym_not] = ACTIONS(2971), + [anon_sym_compl] = ACTIONS(2971), + [anon_sym_DASH_DASH] = ACTIONS(2973), + [anon_sym_PLUS_PLUS] = ACTIONS(2973), + [anon_sym_sizeof] = ACTIONS(2971), + [anon_sym___alignof__] = ACTIONS(2971), + [anon_sym___alignof] = ACTIONS(2971), + [anon_sym__alignof] = ACTIONS(2971), + [anon_sym_alignof] = ACTIONS(2971), + [anon_sym__Alignof] = ACTIONS(2971), + [anon_sym_offsetof] = ACTIONS(2971), + [anon_sym__Generic] = ACTIONS(2971), + [anon_sym_asm] = ACTIONS(2971), + [anon_sym___asm__] = ACTIONS(2971), + [anon_sym___asm] = ACTIONS(2971), + [sym_number_literal] = ACTIONS(2973), + [anon_sym_L_SQUOTE] = ACTIONS(2973), + [anon_sym_u_SQUOTE] = ACTIONS(2973), + [anon_sym_U_SQUOTE] = ACTIONS(2973), + [anon_sym_u8_SQUOTE] = ACTIONS(2973), + [anon_sym_SQUOTE] = ACTIONS(2973), + [anon_sym_L_DQUOTE] = ACTIONS(2973), + [anon_sym_u_DQUOTE] = ACTIONS(2973), + [anon_sym_U_DQUOTE] = ACTIONS(2973), + [anon_sym_u8_DQUOTE] = ACTIONS(2973), + [anon_sym_DQUOTE] = ACTIONS(2973), + [sym_true] = ACTIONS(2971), + [sym_false] = ACTIONS(2971), + [anon_sym_NULL] = ACTIONS(2971), + [anon_sym_nullptr] = ACTIONS(2971), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2971), + [anon_sym_decltype] = ACTIONS(2971), + [anon_sym_explicit] = ACTIONS(2971), + [anon_sym_typename] = ACTIONS(2971), + [anon_sym_template] = ACTIONS(2971), + [anon_sym_operator] = ACTIONS(2971), + [anon_sym_try] = ACTIONS(2971), + [anon_sym_delete] = ACTIONS(2971), + [anon_sym_throw] = ACTIONS(2971), + [anon_sym_namespace] = ACTIONS(2971), + [anon_sym_static_assert] = ACTIONS(2971), + [anon_sym_concept] = ACTIONS(2971), + [anon_sym_co_return] = ACTIONS(2971), + [anon_sym_co_yield] = ACTIONS(2971), + [anon_sym_R_DQUOTE] = ACTIONS(2973), + [anon_sym_LR_DQUOTE] = ACTIONS(2973), + [anon_sym_uR_DQUOTE] = ACTIONS(2973), + [anon_sym_UR_DQUOTE] = ACTIONS(2973), + [anon_sym_u8R_DQUOTE] = ACTIONS(2973), + [anon_sym_co_await] = ACTIONS(2971), + [anon_sym_new] = ACTIONS(2971), + [anon_sym_requires] = ACTIONS(2971), + [sym_this] = ACTIONS(2971), + }, + [346] = { + [sym_identifier] = ACTIONS(2975), + [aux_sym_preproc_include_token1] = ACTIONS(2975), + [aux_sym_preproc_def_token1] = ACTIONS(2975), + [aux_sym_preproc_if_token1] = ACTIONS(2975), + [aux_sym_preproc_if_token2] = ACTIONS(2975), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2975), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2975), + [aux_sym_preproc_else_token1] = ACTIONS(2975), + [aux_sym_preproc_elif_token1] = ACTIONS(2975), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2975), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2975), [sym_preproc_directive] = ACTIONS(2975), [anon_sym_LPAREN2] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2979), - [anon_sym_STAR] = ACTIONS(2981), + [anon_sym_BANG] = ACTIONS(2977), + [anon_sym_TILDE] = ACTIONS(2977), + [anon_sym_DASH] = ACTIONS(2975), + [anon_sym_PLUS] = ACTIONS(2975), + [anon_sym_STAR] = ACTIONS(2977), + [anon_sym_AMP_AMP] = ACTIONS(2977), + [anon_sym_AMP] = ACTIONS(2975), + [anon_sym_SEMI] = ACTIONS(2977), + [anon_sym___extension__] = ACTIONS(2975), + [anon_sym_typedef] = ACTIONS(2975), + [anon_sym_virtual] = ACTIONS(2975), + [anon_sym_extern] = ACTIONS(2975), + [anon_sym___attribute__] = ACTIONS(2975), + [anon_sym___attribute] = ACTIONS(2975), + [anon_sym_using] = ACTIONS(2975), + [anon_sym_COLON_COLON] = ACTIONS(2977), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2977), + [anon_sym___declspec] = ACTIONS(2975), + [anon_sym___based] = ACTIONS(2975), + [anon_sym___cdecl] = ACTIONS(2975), + [anon_sym___clrcall] = ACTIONS(2975), + [anon_sym___stdcall] = ACTIONS(2975), + [anon_sym___fastcall] = ACTIONS(2975), + [anon_sym___thiscall] = ACTIONS(2975), + [anon_sym___vectorcall] = ACTIONS(2975), + [anon_sym_LBRACE] = ACTIONS(2977), + [anon_sym_signed] = ACTIONS(2975), + [anon_sym_unsigned] = ACTIONS(2975), + [anon_sym_long] = ACTIONS(2975), + [anon_sym_short] = ACTIONS(2975), + [anon_sym_LBRACK] = ACTIONS(2975), + [anon_sym_static] = ACTIONS(2975), + [anon_sym_register] = ACTIONS(2975), + [anon_sym_inline] = ACTIONS(2975), + [anon_sym___inline] = ACTIONS(2975), + [anon_sym___inline__] = ACTIONS(2975), + [anon_sym___forceinline] = ACTIONS(2975), + [anon_sym_thread_local] = ACTIONS(2975), + [anon_sym___thread] = ACTIONS(2975), + [anon_sym_const] = ACTIONS(2975), + [anon_sym_constexpr] = ACTIONS(2975), + [anon_sym_volatile] = ACTIONS(2975), + [anon_sym_restrict] = ACTIONS(2975), + [anon_sym___restrict__] = ACTIONS(2975), + [anon_sym__Atomic] = ACTIONS(2975), + [anon_sym__Noreturn] = ACTIONS(2975), + [anon_sym_noreturn] = ACTIONS(2975), + [anon_sym__Nonnull] = ACTIONS(2975), + [anon_sym_mutable] = ACTIONS(2975), + [anon_sym_constinit] = ACTIONS(2975), + [anon_sym_consteval] = ACTIONS(2975), + [anon_sym_alignas] = ACTIONS(2975), + [anon_sym__Alignas] = ACTIONS(2975), + [sym_primitive_type] = ACTIONS(2975), + [anon_sym_enum] = ACTIONS(2975), + [anon_sym_class] = ACTIONS(2975), + [anon_sym_struct] = ACTIONS(2975), + [anon_sym_union] = ACTIONS(2975), + [anon_sym_if] = ACTIONS(2975), + [anon_sym_switch] = ACTIONS(2975), + [anon_sym_case] = ACTIONS(2975), + [anon_sym_default] = ACTIONS(2975), + [anon_sym_while] = ACTIONS(2975), + [anon_sym_do] = ACTIONS(2975), + [anon_sym_for] = ACTIONS(2975), + [anon_sym_return] = ACTIONS(2975), + [anon_sym_break] = ACTIONS(2975), + [anon_sym_continue] = ACTIONS(2975), + [anon_sym_goto] = ACTIONS(2975), + [anon_sym___try] = ACTIONS(2975), + [anon_sym___leave] = ACTIONS(2975), + [anon_sym_not] = ACTIONS(2975), + [anon_sym_compl] = ACTIONS(2975), + [anon_sym_DASH_DASH] = ACTIONS(2977), + [anon_sym_PLUS_PLUS] = ACTIONS(2977), + [anon_sym_sizeof] = ACTIONS(2975), + [anon_sym___alignof__] = ACTIONS(2975), + [anon_sym___alignof] = ACTIONS(2975), + [anon_sym__alignof] = ACTIONS(2975), + [anon_sym_alignof] = ACTIONS(2975), + [anon_sym__Alignof] = ACTIONS(2975), + [anon_sym_offsetof] = ACTIONS(2975), + [anon_sym__Generic] = ACTIONS(2975), + [anon_sym_asm] = ACTIONS(2975), + [anon_sym___asm__] = ACTIONS(2975), + [anon_sym___asm] = ACTIONS(2975), + [sym_number_literal] = ACTIONS(2977), + [anon_sym_L_SQUOTE] = ACTIONS(2977), + [anon_sym_u_SQUOTE] = ACTIONS(2977), + [anon_sym_U_SQUOTE] = ACTIONS(2977), + [anon_sym_u8_SQUOTE] = ACTIONS(2977), + [anon_sym_SQUOTE] = ACTIONS(2977), + [anon_sym_L_DQUOTE] = ACTIONS(2977), + [anon_sym_u_DQUOTE] = ACTIONS(2977), + [anon_sym_U_DQUOTE] = ACTIONS(2977), + [anon_sym_u8_DQUOTE] = ACTIONS(2977), + [anon_sym_DQUOTE] = ACTIONS(2977), + [sym_true] = ACTIONS(2975), + [sym_false] = ACTIONS(2975), + [anon_sym_NULL] = ACTIONS(2975), + [anon_sym_nullptr] = ACTIONS(2975), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2975), + [anon_sym_decltype] = ACTIONS(2975), + [anon_sym_explicit] = ACTIONS(2975), + [anon_sym_typename] = ACTIONS(2975), + [anon_sym_template] = ACTIONS(2975), + [anon_sym_operator] = ACTIONS(2975), + [anon_sym_try] = ACTIONS(2975), + [anon_sym_delete] = ACTIONS(2975), + [anon_sym_throw] = ACTIONS(2975), + [anon_sym_namespace] = ACTIONS(2975), + [anon_sym_static_assert] = ACTIONS(2975), + [anon_sym_concept] = ACTIONS(2975), + [anon_sym_co_return] = ACTIONS(2975), + [anon_sym_co_yield] = ACTIONS(2975), + [anon_sym_R_DQUOTE] = ACTIONS(2977), + [anon_sym_LR_DQUOTE] = ACTIONS(2977), + [anon_sym_uR_DQUOTE] = ACTIONS(2977), + [anon_sym_UR_DQUOTE] = ACTIONS(2977), + [anon_sym_u8R_DQUOTE] = ACTIONS(2977), + [anon_sym_co_await] = ACTIONS(2975), + [anon_sym_new] = ACTIONS(2975), + [anon_sym_requires] = ACTIONS(2975), + [sym_this] = ACTIONS(2975), + }, + [347] = { + [sym_preproc_def] = STATE(381), + [sym_preproc_function_def] = STATE(381), + [sym_preproc_call] = STATE(381), + [sym_preproc_if_in_field_declaration_list] = STATE(381), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(381), + [sym_preproc_else_in_field_declaration_list] = STATE(8125), + [sym_preproc_elif_in_field_declaration_list] = STATE(8125), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(8125), + [sym_type_definition] = STATE(381), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(5688), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(3133), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6303), + [sym_array_declarator] = STATE(6145), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym__field_declaration_list_item] = STATE(381), + [sym_field_declaration] = STATE(381), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym_explicit_function_specifier] = STATE(1845), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(381), + [sym_operator_cast] = STATE(6890), + [sym_inline_method_definition] = STATE(381), + [sym__constructor_specifiers] = STATE(1845), + [sym_operator_cast_definition] = STATE(381), + [sym_operator_cast_declaration] = STATE(381), + [sym_constructor_or_destructor_definition] = STATE(381), + [sym_constructor_or_destructor_declaration] = STATE(381), + [sym_friend_declaration] = STATE(381), + [sym_access_specifier] = STATE(8331), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(2439), + [sym_template_function] = STATE(6145), + [sym_using_declaration] = STATE(381), + [sym_alias_declaration] = STATE(381), + [sym_static_assert_declaration] = STATE(381), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5557), + [sym_qualified_identifier] = STATE(6145), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6890), + [sym_operator_name] = STATE(6145), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(381), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_attributed_declarator_repeat1] = STATE(7195), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1845), + [sym_identifier] = ACTIONS(2979), + [aux_sym_preproc_def_token1] = ACTIONS(2981), + [aux_sym_preproc_if_token1] = ACTIONS(2983), + [aux_sym_preproc_if_token2] = ACTIONS(2985), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2987), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2987), + [aux_sym_preproc_else_token1] = ACTIONS(2989), + [aux_sym_preproc_elif_token1] = ACTIONS(2991), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2993), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2993), + [sym_preproc_directive] = ACTIONS(2995), + [anon_sym_LPAREN2] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(3001), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2983), - [anon_sym_SEMI] = ACTIONS(2985), - [anon_sym___extension__] = ACTIONS(2987), - [anon_sym_typedef] = ACTIONS(2989), + [anon_sym_AMP] = ACTIONS(3003), + [anon_sym_SEMI] = ACTIONS(3005), + [anon_sym___extension__] = ACTIONS(3007), + [anon_sym_typedef] = ACTIONS(3009), [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(2991), - [anon_sym_COLON_COLON] = ACTIONS(2993), + [anon_sym_using] = ACTIONS(3011), + [anon_sym_COLON_COLON] = ACTIONS(3013), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), @@ -92625,7 +94032,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2995), + [anon_sym_LBRACK] = ACTIONS(3015), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -92635,7 +94042,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread_local] = ACTIONS(63), [anon_sym___thread] = ACTIONS(63), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(2997), + [anon_sym_constexpr] = ACTIONS(3017), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -92648,1285 +94055,445 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2999), - [anon_sym_enum] = ACTIONS(3001), - [anon_sym_class] = ACTIONS(3003), - [anon_sym_struct] = ACTIONS(3005), - [anon_sym_union] = ACTIONS(3007), + [sym_primitive_type] = ACTIONS(3019), + [anon_sym_enum] = ACTIONS(3021), + [anon_sym_class] = ACTIONS(3023), + [anon_sym_struct] = ACTIONS(3025), + [anon_sym_union] = ACTIONS(3027), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(3009), - [anon_sym_private] = ACTIONS(3011), - [anon_sym_template] = ACTIONS(3013), + [anon_sym_typename] = ACTIONS(3029), + [anon_sym_private] = ACTIONS(3031), + [anon_sym_template] = ACTIONS(3033), [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(3015), - [anon_sym_public] = ACTIONS(3011), - [anon_sym_protected] = ACTIONS(3011), - [anon_sym_static_assert] = ACTIONS(3017), - }, - [340] = { - [sym_identifier] = ACTIONS(3019), - [aux_sym_preproc_include_token1] = ACTIONS(3019), - [aux_sym_preproc_def_token1] = ACTIONS(3019), - [aux_sym_preproc_if_token1] = ACTIONS(3019), - [aux_sym_preproc_if_token2] = ACTIONS(3019), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3019), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3019), - [aux_sym_preproc_else_token1] = ACTIONS(3019), - [aux_sym_preproc_elif_token1] = ACTIONS(3019), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3019), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3019), - [sym_preproc_directive] = ACTIONS(3019), - [anon_sym_LPAREN2] = ACTIONS(3021), - [anon_sym_BANG] = ACTIONS(3021), - [anon_sym_TILDE] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3019), - [anon_sym_PLUS] = ACTIONS(3019), - [anon_sym_STAR] = ACTIONS(3021), - [anon_sym_AMP_AMP] = ACTIONS(3021), - [anon_sym_AMP] = ACTIONS(3019), - [anon_sym_SEMI] = ACTIONS(3021), - [anon_sym___extension__] = ACTIONS(3019), - [anon_sym_typedef] = ACTIONS(3019), - [anon_sym_virtual] = ACTIONS(3019), - [anon_sym_extern] = ACTIONS(3019), - [anon_sym___attribute__] = ACTIONS(3019), - [anon_sym___attribute] = ACTIONS(3019), - [anon_sym_using] = ACTIONS(3019), - [anon_sym_COLON_COLON] = ACTIONS(3021), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3021), - [anon_sym___declspec] = ACTIONS(3019), - [anon_sym___based] = ACTIONS(3019), - [anon_sym___cdecl] = ACTIONS(3019), - [anon_sym___clrcall] = ACTIONS(3019), - [anon_sym___stdcall] = ACTIONS(3019), - [anon_sym___fastcall] = ACTIONS(3019), - [anon_sym___thiscall] = ACTIONS(3019), - [anon_sym___vectorcall] = ACTIONS(3019), - [anon_sym_LBRACE] = ACTIONS(3021), - [anon_sym_signed] = ACTIONS(3019), - [anon_sym_unsigned] = ACTIONS(3019), - [anon_sym_long] = ACTIONS(3019), - [anon_sym_short] = ACTIONS(3019), - [anon_sym_LBRACK] = ACTIONS(3019), - [anon_sym_static] = ACTIONS(3019), - [anon_sym_register] = ACTIONS(3019), - [anon_sym_inline] = ACTIONS(3019), - [anon_sym___inline] = ACTIONS(3019), - [anon_sym___inline__] = ACTIONS(3019), - [anon_sym___forceinline] = ACTIONS(3019), - [anon_sym_thread_local] = ACTIONS(3019), - [anon_sym___thread] = ACTIONS(3019), - [anon_sym_const] = ACTIONS(3019), - [anon_sym_constexpr] = ACTIONS(3019), - [anon_sym_volatile] = ACTIONS(3019), - [anon_sym_restrict] = ACTIONS(3019), - [anon_sym___restrict__] = ACTIONS(3019), - [anon_sym__Atomic] = ACTIONS(3019), - [anon_sym__Noreturn] = ACTIONS(3019), - [anon_sym_noreturn] = ACTIONS(3019), - [anon_sym__Nonnull] = ACTIONS(3019), - [anon_sym_mutable] = ACTIONS(3019), - [anon_sym_constinit] = ACTIONS(3019), - [anon_sym_consteval] = ACTIONS(3019), - [anon_sym_alignas] = ACTIONS(3019), - [anon_sym__Alignas] = ACTIONS(3019), - [sym_primitive_type] = ACTIONS(3019), - [anon_sym_enum] = ACTIONS(3019), - [anon_sym_class] = ACTIONS(3019), - [anon_sym_struct] = ACTIONS(3019), - [anon_sym_union] = ACTIONS(3019), - [anon_sym_if] = ACTIONS(3019), - [anon_sym_switch] = ACTIONS(3019), - [anon_sym_case] = ACTIONS(3019), - [anon_sym_default] = ACTIONS(3019), - [anon_sym_while] = ACTIONS(3019), - [anon_sym_do] = ACTIONS(3019), - [anon_sym_for] = ACTIONS(3019), - [anon_sym_return] = ACTIONS(3019), - [anon_sym_break] = ACTIONS(3019), - [anon_sym_continue] = ACTIONS(3019), - [anon_sym_goto] = ACTIONS(3019), - [anon_sym___try] = ACTIONS(3019), - [anon_sym___leave] = ACTIONS(3019), - [anon_sym_not] = ACTIONS(3019), - [anon_sym_compl] = ACTIONS(3019), - [anon_sym_DASH_DASH] = ACTIONS(3021), - [anon_sym_PLUS_PLUS] = ACTIONS(3021), - [anon_sym_sizeof] = ACTIONS(3019), - [anon_sym___alignof__] = ACTIONS(3019), - [anon_sym___alignof] = ACTIONS(3019), - [anon_sym__alignof] = ACTIONS(3019), - [anon_sym_alignof] = ACTIONS(3019), - [anon_sym__Alignof] = ACTIONS(3019), - [anon_sym_offsetof] = ACTIONS(3019), - [anon_sym__Generic] = ACTIONS(3019), - [anon_sym_asm] = ACTIONS(3019), - [anon_sym___asm__] = ACTIONS(3019), - [anon_sym___asm] = ACTIONS(3019), - [sym_number_literal] = ACTIONS(3021), - [anon_sym_L_SQUOTE] = ACTIONS(3021), - [anon_sym_u_SQUOTE] = ACTIONS(3021), - [anon_sym_U_SQUOTE] = ACTIONS(3021), - [anon_sym_u8_SQUOTE] = ACTIONS(3021), - [anon_sym_SQUOTE] = ACTIONS(3021), - [anon_sym_L_DQUOTE] = ACTIONS(3021), - [anon_sym_u_DQUOTE] = ACTIONS(3021), - [anon_sym_U_DQUOTE] = ACTIONS(3021), - [anon_sym_u8_DQUOTE] = ACTIONS(3021), - [anon_sym_DQUOTE] = ACTIONS(3021), - [sym_true] = ACTIONS(3019), - [sym_false] = ACTIONS(3019), - [anon_sym_NULL] = ACTIONS(3019), - [anon_sym_nullptr] = ACTIONS(3019), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3019), - [anon_sym_decltype] = ACTIONS(3019), - [anon_sym_explicit] = ACTIONS(3019), - [anon_sym_typename] = ACTIONS(3019), - [anon_sym_template] = ACTIONS(3019), - [anon_sym_operator] = ACTIONS(3019), - [anon_sym_try] = ACTIONS(3019), - [anon_sym_delete] = ACTIONS(3019), - [anon_sym_throw] = ACTIONS(3019), - [anon_sym_namespace] = ACTIONS(3019), - [anon_sym_static_assert] = ACTIONS(3019), - [anon_sym_concept] = ACTIONS(3019), - [anon_sym_co_return] = ACTIONS(3019), - [anon_sym_co_yield] = ACTIONS(3019), - [anon_sym_R_DQUOTE] = ACTIONS(3021), - [anon_sym_LR_DQUOTE] = ACTIONS(3021), - [anon_sym_uR_DQUOTE] = ACTIONS(3021), - [anon_sym_UR_DQUOTE] = ACTIONS(3021), - [anon_sym_u8R_DQUOTE] = ACTIONS(3021), - [anon_sym_co_await] = ACTIONS(3019), - [anon_sym_new] = ACTIONS(3019), - [anon_sym_requires] = ACTIONS(3019), - [sym_this] = ACTIONS(3019), - }, - [341] = { - [sym_identifier] = ACTIONS(3023), - [aux_sym_preproc_include_token1] = ACTIONS(3023), - [aux_sym_preproc_def_token1] = ACTIONS(3023), - [aux_sym_preproc_if_token1] = ACTIONS(3023), - [aux_sym_preproc_if_token2] = ACTIONS(3023), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3023), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3023), - [aux_sym_preproc_else_token1] = ACTIONS(3023), - [aux_sym_preproc_elif_token1] = ACTIONS(3023), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3023), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3023), - [sym_preproc_directive] = ACTIONS(3023), - [anon_sym_LPAREN2] = ACTIONS(3025), - [anon_sym_BANG] = ACTIONS(3025), - [anon_sym_TILDE] = ACTIONS(3025), - [anon_sym_DASH] = ACTIONS(3023), - [anon_sym_PLUS] = ACTIONS(3023), - [anon_sym_STAR] = ACTIONS(3025), - [anon_sym_AMP_AMP] = ACTIONS(3025), - [anon_sym_AMP] = ACTIONS(3023), - [anon_sym_SEMI] = ACTIONS(3025), - [anon_sym___extension__] = ACTIONS(3023), - [anon_sym_typedef] = ACTIONS(3023), - [anon_sym_virtual] = ACTIONS(3023), - [anon_sym_extern] = ACTIONS(3023), - [anon_sym___attribute__] = ACTIONS(3023), - [anon_sym___attribute] = ACTIONS(3023), - [anon_sym_using] = ACTIONS(3023), - [anon_sym_COLON_COLON] = ACTIONS(3025), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3025), - [anon_sym___declspec] = ACTIONS(3023), - [anon_sym___based] = ACTIONS(3023), - [anon_sym___cdecl] = ACTIONS(3023), - [anon_sym___clrcall] = ACTIONS(3023), - [anon_sym___stdcall] = ACTIONS(3023), - [anon_sym___fastcall] = ACTIONS(3023), - [anon_sym___thiscall] = ACTIONS(3023), - [anon_sym___vectorcall] = ACTIONS(3023), - [anon_sym_LBRACE] = ACTIONS(3025), - [anon_sym_signed] = ACTIONS(3023), - [anon_sym_unsigned] = ACTIONS(3023), - [anon_sym_long] = ACTIONS(3023), - [anon_sym_short] = ACTIONS(3023), - [anon_sym_LBRACK] = ACTIONS(3023), - [anon_sym_static] = ACTIONS(3023), - [anon_sym_register] = ACTIONS(3023), - [anon_sym_inline] = ACTIONS(3023), - [anon_sym___inline] = ACTIONS(3023), - [anon_sym___inline__] = ACTIONS(3023), - [anon_sym___forceinline] = ACTIONS(3023), - [anon_sym_thread_local] = ACTIONS(3023), - [anon_sym___thread] = ACTIONS(3023), - [anon_sym_const] = ACTIONS(3023), - [anon_sym_constexpr] = ACTIONS(3023), - [anon_sym_volatile] = ACTIONS(3023), - [anon_sym_restrict] = ACTIONS(3023), - [anon_sym___restrict__] = ACTIONS(3023), - [anon_sym__Atomic] = ACTIONS(3023), - [anon_sym__Noreturn] = ACTIONS(3023), - [anon_sym_noreturn] = ACTIONS(3023), - [anon_sym__Nonnull] = ACTIONS(3023), - [anon_sym_mutable] = ACTIONS(3023), - [anon_sym_constinit] = ACTIONS(3023), - [anon_sym_consteval] = ACTIONS(3023), - [anon_sym_alignas] = ACTIONS(3023), - [anon_sym__Alignas] = ACTIONS(3023), - [sym_primitive_type] = ACTIONS(3023), - [anon_sym_enum] = ACTIONS(3023), - [anon_sym_class] = ACTIONS(3023), - [anon_sym_struct] = ACTIONS(3023), - [anon_sym_union] = ACTIONS(3023), - [anon_sym_if] = ACTIONS(3023), - [anon_sym_switch] = ACTIONS(3023), - [anon_sym_case] = ACTIONS(3023), - [anon_sym_default] = ACTIONS(3023), - [anon_sym_while] = ACTIONS(3023), - [anon_sym_do] = ACTIONS(3023), - [anon_sym_for] = ACTIONS(3023), - [anon_sym_return] = ACTIONS(3023), - [anon_sym_break] = ACTIONS(3023), - [anon_sym_continue] = ACTIONS(3023), - [anon_sym_goto] = ACTIONS(3023), - [anon_sym___try] = ACTIONS(3023), - [anon_sym___leave] = ACTIONS(3023), - [anon_sym_not] = ACTIONS(3023), - [anon_sym_compl] = ACTIONS(3023), - [anon_sym_DASH_DASH] = ACTIONS(3025), - [anon_sym_PLUS_PLUS] = ACTIONS(3025), - [anon_sym_sizeof] = ACTIONS(3023), - [anon_sym___alignof__] = ACTIONS(3023), - [anon_sym___alignof] = ACTIONS(3023), - [anon_sym__alignof] = ACTIONS(3023), - [anon_sym_alignof] = ACTIONS(3023), - [anon_sym__Alignof] = ACTIONS(3023), - [anon_sym_offsetof] = ACTIONS(3023), - [anon_sym__Generic] = ACTIONS(3023), - [anon_sym_asm] = ACTIONS(3023), - [anon_sym___asm__] = ACTIONS(3023), - [anon_sym___asm] = ACTIONS(3023), - [sym_number_literal] = ACTIONS(3025), - [anon_sym_L_SQUOTE] = ACTIONS(3025), - [anon_sym_u_SQUOTE] = ACTIONS(3025), - [anon_sym_U_SQUOTE] = ACTIONS(3025), - [anon_sym_u8_SQUOTE] = ACTIONS(3025), - [anon_sym_SQUOTE] = ACTIONS(3025), - [anon_sym_L_DQUOTE] = ACTIONS(3025), - [anon_sym_u_DQUOTE] = ACTIONS(3025), - [anon_sym_U_DQUOTE] = ACTIONS(3025), - [anon_sym_u8_DQUOTE] = ACTIONS(3025), - [anon_sym_DQUOTE] = ACTIONS(3025), - [sym_true] = ACTIONS(3023), - [sym_false] = ACTIONS(3023), - [anon_sym_NULL] = ACTIONS(3023), - [anon_sym_nullptr] = ACTIONS(3023), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3023), - [anon_sym_decltype] = ACTIONS(3023), - [anon_sym_explicit] = ACTIONS(3023), - [anon_sym_typename] = ACTIONS(3023), - [anon_sym_template] = ACTIONS(3023), - [anon_sym_operator] = ACTIONS(3023), - [anon_sym_try] = ACTIONS(3023), - [anon_sym_delete] = ACTIONS(3023), - [anon_sym_throw] = ACTIONS(3023), - [anon_sym_namespace] = ACTIONS(3023), - [anon_sym_static_assert] = ACTIONS(3023), - [anon_sym_concept] = ACTIONS(3023), - [anon_sym_co_return] = ACTIONS(3023), - [anon_sym_co_yield] = ACTIONS(3023), - [anon_sym_R_DQUOTE] = ACTIONS(3025), - [anon_sym_LR_DQUOTE] = ACTIONS(3025), - [anon_sym_uR_DQUOTE] = ACTIONS(3025), - [anon_sym_UR_DQUOTE] = ACTIONS(3025), - [anon_sym_u8R_DQUOTE] = ACTIONS(3025), - [anon_sym_co_await] = ACTIONS(3023), - [anon_sym_new] = ACTIONS(3023), - [anon_sym_requires] = ACTIONS(3023), - [sym_this] = ACTIONS(3023), - }, - [342] = { - [ts_builtin_sym_end] = ACTIONS(2679), - [sym_identifier] = ACTIONS(2677), - [aux_sym_preproc_include_token1] = ACTIONS(2677), - [aux_sym_preproc_def_token1] = ACTIONS(2677), - [aux_sym_preproc_if_token1] = ACTIONS(2677), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2677), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2677), - [sym_preproc_directive] = ACTIONS(2677), - [anon_sym_LPAREN2] = ACTIONS(2679), - [anon_sym_BANG] = ACTIONS(2679), - [anon_sym_TILDE] = ACTIONS(2679), - [anon_sym_DASH] = ACTIONS(2677), - [anon_sym_PLUS] = ACTIONS(2677), - [anon_sym_STAR] = ACTIONS(2679), - [anon_sym_AMP_AMP] = ACTIONS(2679), - [anon_sym_AMP] = ACTIONS(2677), - [anon_sym_SEMI] = ACTIONS(2679), - [anon_sym___extension__] = ACTIONS(2677), - [anon_sym_typedef] = ACTIONS(2677), - [anon_sym_virtual] = ACTIONS(2677), - [anon_sym_extern] = ACTIONS(2677), - [anon_sym___attribute__] = ACTIONS(2677), - [anon_sym___attribute] = ACTIONS(2677), - [anon_sym_using] = ACTIONS(2677), - [anon_sym_COLON_COLON] = ACTIONS(2679), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2679), - [anon_sym___declspec] = ACTIONS(2677), - [anon_sym___based] = ACTIONS(2677), - [anon_sym___cdecl] = ACTIONS(2677), - [anon_sym___clrcall] = ACTIONS(2677), - [anon_sym___stdcall] = ACTIONS(2677), - [anon_sym___fastcall] = ACTIONS(2677), - [anon_sym___thiscall] = ACTIONS(2677), - [anon_sym___vectorcall] = ACTIONS(2677), - [anon_sym_LBRACE] = ACTIONS(2679), - [anon_sym_signed] = ACTIONS(2677), - [anon_sym_unsigned] = ACTIONS(2677), - [anon_sym_long] = ACTIONS(2677), - [anon_sym_short] = ACTIONS(2677), - [anon_sym_LBRACK] = ACTIONS(2677), - [anon_sym_static] = ACTIONS(2677), - [anon_sym_register] = ACTIONS(2677), - [anon_sym_inline] = ACTIONS(2677), - [anon_sym___inline] = ACTIONS(2677), - [anon_sym___inline__] = ACTIONS(2677), - [anon_sym___forceinline] = ACTIONS(2677), - [anon_sym_thread_local] = ACTIONS(2677), - [anon_sym___thread] = ACTIONS(2677), - [anon_sym_const] = ACTIONS(2677), - [anon_sym_constexpr] = ACTIONS(2677), - [anon_sym_volatile] = ACTIONS(2677), - [anon_sym_restrict] = ACTIONS(2677), - [anon_sym___restrict__] = ACTIONS(2677), - [anon_sym__Atomic] = ACTIONS(2677), - [anon_sym__Noreturn] = ACTIONS(2677), - [anon_sym_noreturn] = ACTIONS(2677), - [anon_sym__Nonnull] = ACTIONS(2677), - [anon_sym_mutable] = ACTIONS(2677), - [anon_sym_constinit] = ACTIONS(2677), - [anon_sym_consteval] = ACTIONS(2677), - [anon_sym_alignas] = ACTIONS(2677), - [anon_sym__Alignas] = ACTIONS(2677), - [sym_primitive_type] = ACTIONS(2677), - [anon_sym_enum] = ACTIONS(2677), - [anon_sym_class] = ACTIONS(2677), - [anon_sym_struct] = ACTIONS(2677), - [anon_sym_union] = ACTIONS(2677), - [anon_sym_if] = ACTIONS(2677), - [anon_sym_else] = ACTIONS(2677), - [anon_sym_switch] = ACTIONS(2677), - [anon_sym_case] = ACTIONS(2677), - [anon_sym_default] = ACTIONS(2677), - [anon_sym_while] = ACTIONS(2677), - [anon_sym_do] = ACTIONS(2677), - [anon_sym_for] = ACTIONS(2677), - [anon_sym_return] = ACTIONS(2677), - [anon_sym_break] = ACTIONS(2677), - [anon_sym_continue] = ACTIONS(2677), - [anon_sym_goto] = ACTIONS(2677), - [anon_sym___try] = ACTIONS(2677), - [anon_sym___leave] = ACTIONS(2677), - [anon_sym_not] = ACTIONS(2677), - [anon_sym_compl] = ACTIONS(2677), - [anon_sym_DASH_DASH] = ACTIONS(2679), - [anon_sym_PLUS_PLUS] = ACTIONS(2679), - [anon_sym_sizeof] = ACTIONS(2677), - [anon_sym___alignof__] = ACTIONS(2677), - [anon_sym___alignof] = ACTIONS(2677), - [anon_sym__alignof] = ACTIONS(2677), - [anon_sym_alignof] = ACTIONS(2677), - [anon_sym__Alignof] = ACTIONS(2677), - [anon_sym_offsetof] = ACTIONS(2677), - [anon_sym__Generic] = ACTIONS(2677), - [anon_sym_asm] = ACTIONS(2677), - [anon_sym___asm__] = ACTIONS(2677), - [anon_sym___asm] = ACTIONS(2677), - [sym_number_literal] = ACTIONS(2679), - [anon_sym_L_SQUOTE] = ACTIONS(2679), - [anon_sym_u_SQUOTE] = ACTIONS(2679), - [anon_sym_U_SQUOTE] = ACTIONS(2679), - [anon_sym_u8_SQUOTE] = ACTIONS(2679), - [anon_sym_SQUOTE] = ACTIONS(2679), - [anon_sym_L_DQUOTE] = ACTIONS(2679), - [anon_sym_u_DQUOTE] = ACTIONS(2679), - [anon_sym_U_DQUOTE] = ACTIONS(2679), - [anon_sym_u8_DQUOTE] = ACTIONS(2679), - [anon_sym_DQUOTE] = ACTIONS(2679), - [sym_true] = ACTIONS(2677), - [sym_false] = ACTIONS(2677), - [anon_sym_NULL] = ACTIONS(2677), - [anon_sym_nullptr] = ACTIONS(2677), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2677), - [anon_sym_decltype] = ACTIONS(2677), - [anon_sym_explicit] = ACTIONS(2677), - [anon_sym_typename] = ACTIONS(2677), - [anon_sym_export] = ACTIONS(2677), - [anon_sym_module] = ACTIONS(2677), - [anon_sym_import] = ACTIONS(2677), - [anon_sym_template] = ACTIONS(2677), - [anon_sym_operator] = ACTIONS(2677), - [anon_sym_try] = ACTIONS(2677), - [anon_sym_delete] = ACTIONS(2677), - [anon_sym_throw] = ACTIONS(2677), - [anon_sym_namespace] = ACTIONS(2677), - [anon_sym_static_assert] = ACTIONS(2677), - [anon_sym_concept] = ACTIONS(2677), - [anon_sym_co_return] = ACTIONS(2677), - [anon_sym_co_yield] = ACTIONS(2677), - [anon_sym_R_DQUOTE] = ACTIONS(2679), - [anon_sym_LR_DQUOTE] = ACTIONS(2679), - [anon_sym_uR_DQUOTE] = ACTIONS(2679), - [anon_sym_UR_DQUOTE] = ACTIONS(2679), - [anon_sym_u8R_DQUOTE] = ACTIONS(2679), - [anon_sym_co_await] = ACTIONS(2677), - [anon_sym_new] = ACTIONS(2677), - [anon_sym_requires] = ACTIONS(2677), - [sym_this] = ACTIONS(2677), + [anon_sym_friend] = ACTIONS(3035), + [anon_sym_public] = ACTIONS(3031), + [anon_sym_protected] = ACTIONS(3031), + [anon_sym_static_assert] = ACTIONS(3037), }, - [343] = { - [ts_builtin_sym_end] = ACTIONS(2649), - [sym_identifier] = ACTIONS(2647), - [aux_sym_preproc_include_token1] = ACTIONS(2647), - [aux_sym_preproc_def_token1] = ACTIONS(2647), - [aux_sym_preproc_if_token1] = ACTIONS(2647), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2647), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2647), - [sym_preproc_directive] = ACTIONS(2647), - [anon_sym_LPAREN2] = ACTIONS(2649), - [anon_sym_BANG] = ACTIONS(2649), - [anon_sym_TILDE] = ACTIONS(2649), - [anon_sym_DASH] = ACTIONS(2647), - [anon_sym_PLUS] = ACTIONS(2647), - [anon_sym_STAR] = ACTIONS(2649), - [anon_sym_AMP_AMP] = ACTIONS(2649), - [anon_sym_AMP] = ACTIONS(2647), - [anon_sym_SEMI] = ACTIONS(2649), - [anon_sym___extension__] = ACTIONS(2647), - [anon_sym_typedef] = ACTIONS(2647), - [anon_sym_virtual] = ACTIONS(2647), - [anon_sym_extern] = ACTIONS(2647), - [anon_sym___attribute__] = ACTIONS(2647), - [anon_sym___attribute] = ACTIONS(2647), - [anon_sym_using] = ACTIONS(2647), - [anon_sym_COLON_COLON] = ACTIONS(2649), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2649), - [anon_sym___declspec] = ACTIONS(2647), - [anon_sym___based] = ACTIONS(2647), - [anon_sym___cdecl] = ACTIONS(2647), - [anon_sym___clrcall] = ACTIONS(2647), - [anon_sym___stdcall] = ACTIONS(2647), - [anon_sym___fastcall] = ACTIONS(2647), - [anon_sym___thiscall] = ACTIONS(2647), - [anon_sym___vectorcall] = ACTIONS(2647), - [anon_sym_LBRACE] = ACTIONS(2649), - [anon_sym_signed] = ACTIONS(2647), - [anon_sym_unsigned] = ACTIONS(2647), - [anon_sym_long] = ACTIONS(2647), - [anon_sym_short] = ACTIONS(2647), - [anon_sym_LBRACK] = ACTIONS(2647), - [anon_sym_static] = ACTIONS(2647), - [anon_sym_register] = ACTIONS(2647), - [anon_sym_inline] = ACTIONS(2647), - [anon_sym___inline] = ACTIONS(2647), - [anon_sym___inline__] = ACTIONS(2647), - [anon_sym___forceinline] = ACTIONS(2647), - [anon_sym_thread_local] = ACTIONS(2647), - [anon_sym___thread] = ACTIONS(2647), - [anon_sym_const] = ACTIONS(2647), - [anon_sym_constexpr] = ACTIONS(2647), - [anon_sym_volatile] = ACTIONS(2647), - [anon_sym_restrict] = ACTIONS(2647), - [anon_sym___restrict__] = ACTIONS(2647), - [anon_sym__Atomic] = ACTIONS(2647), - [anon_sym__Noreturn] = ACTIONS(2647), - [anon_sym_noreturn] = ACTIONS(2647), - [anon_sym__Nonnull] = ACTIONS(2647), - [anon_sym_mutable] = ACTIONS(2647), - [anon_sym_constinit] = ACTIONS(2647), - [anon_sym_consteval] = ACTIONS(2647), - [anon_sym_alignas] = ACTIONS(2647), - [anon_sym__Alignas] = ACTIONS(2647), - [sym_primitive_type] = ACTIONS(2647), - [anon_sym_enum] = ACTIONS(2647), - [anon_sym_class] = ACTIONS(2647), - [anon_sym_struct] = ACTIONS(2647), - [anon_sym_union] = ACTIONS(2647), - [anon_sym_if] = ACTIONS(2647), - [anon_sym_else] = ACTIONS(2647), - [anon_sym_switch] = ACTIONS(2647), - [anon_sym_case] = ACTIONS(2647), - [anon_sym_default] = ACTIONS(2647), - [anon_sym_while] = ACTIONS(2647), - [anon_sym_do] = ACTIONS(2647), - [anon_sym_for] = ACTIONS(2647), - [anon_sym_return] = ACTIONS(2647), - [anon_sym_break] = ACTIONS(2647), - [anon_sym_continue] = ACTIONS(2647), - [anon_sym_goto] = ACTIONS(2647), - [anon_sym___try] = ACTIONS(2647), - [anon_sym___leave] = ACTIONS(2647), - [anon_sym_not] = ACTIONS(2647), - [anon_sym_compl] = ACTIONS(2647), - [anon_sym_DASH_DASH] = ACTIONS(2649), - [anon_sym_PLUS_PLUS] = ACTIONS(2649), - [anon_sym_sizeof] = ACTIONS(2647), - [anon_sym___alignof__] = ACTIONS(2647), - [anon_sym___alignof] = ACTIONS(2647), - [anon_sym__alignof] = ACTIONS(2647), - [anon_sym_alignof] = ACTIONS(2647), - [anon_sym__Alignof] = ACTIONS(2647), - [anon_sym_offsetof] = ACTIONS(2647), - [anon_sym__Generic] = ACTIONS(2647), - [anon_sym_asm] = ACTIONS(2647), - [anon_sym___asm__] = ACTIONS(2647), - [anon_sym___asm] = ACTIONS(2647), - [sym_number_literal] = ACTIONS(2649), - [anon_sym_L_SQUOTE] = ACTIONS(2649), - [anon_sym_u_SQUOTE] = ACTIONS(2649), - [anon_sym_U_SQUOTE] = ACTIONS(2649), - [anon_sym_u8_SQUOTE] = ACTIONS(2649), - [anon_sym_SQUOTE] = ACTIONS(2649), - [anon_sym_L_DQUOTE] = ACTIONS(2649), - [anon_sym_u_DQUOTE] = ACTIONS(2649), - [anon_sym_U_DQUOTE] = ACTIONS(2649), - [anon_sym_u8_DQUOTE] = ACTIONS(2649), - [anon_sym_DQUOTE] = ACTIONS(2649), - [sym_true] = ACTIONS(2647), - [sym_false] = ACTIONS(2647), - [anon_sym_NULL] = ACTIONS(2647), - [anon_sym_nullptr] = ACTIONS(2647), + [348] = { + [ts_builtin_sym_end] = ACTIONS(2693), + [sym_identifier] = ACTIONS(2691), + [aux_sym_preproc_include_token1] = ACTIONS(2691), + [aux_sym_preproc_def_token1] = ACTIONS(2691), + [aux_sym_preproc_if_token1] = ACTIONS(2691), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2691), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2691), + [sym_preproc_directive] = ACTIONS(2691), + [anon_sym_LPAREN2] = ACTIONS(2693), + [anon_sym_BANG] = ACTIONS(2693), + [anon_sym_TILDE] = ACTIONS(2693), + [anon_sym_DASH] = ACTIONS(2691), + [anon_sym_PLUS] = ACTIONS(2691), + [anon_sym_STAR] = ACTIONS(2693), + [anon_sym_AMP_AMP] = ACTIONS(2693), + [anon_sym_AMP] = ACTIONS(2691), + [anon_sym_SEMI] = ACTIONS(2693), + [anon_sym___extension__] = ACTIONS(2691), + [anon_sym_typedef] = ACTIONS(2691), + [anon_sym_virtual] = ACTIONS(2691), + [anon_sym_extern] = ACTIONS(2691), + [anon_sym___attribute__] = ACTIONS(2691), + [anon_sym___attribute] = ACTIONS(2691), + [anon_sym_using] = ACTIONS(2691), + [anon_sym_COLON_COLON] = ACTIONS(2693), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2693), + [anon_sym___declspec] = ACTIONS(2691), + [anon_sym___based] = ACTIONS(2691), + [anon_sym___cdecl] = ACTIONS(2691), + [anon_sym___clrcall] = ACTIONS(2691), + [anon_sym___stdcall] = ACTIONS(2691), + [anon_sym___fastcall] = ACTIONS(2691), + [anon_sym___thiscall] = ACTIONS(2691), + [anon_sym___vectorcall] = ACTIONS(2691), + [anon_sym_LBRACE] = ACTIONS(2693), + [anon_sym_signed] = ACTIONS(2691), + [anon_sym_unsigned] = ACTIONS(2691), + [anon_sym_long] = ACTIONS(2691), + [anon_sym_short] = ACTIONS(2691), + [anon_sym_LBRACK] = ACTIONS(2691), + [anon_sym_static] = ACTIONS(2691), + [anon_sym_register] = ACTIONS(2691), + [anon_sym_inline] = ACTIONS(2691), + [anon_sym___inline] = ACTIONS(2691), + [anon_sym___inline__] = ACTIONS(2691), + [anon_sym___forceinline] = ACTIONS(2691), + [anon_sym_thread_local] = ACTIONS(2691), + [anon_sym___thread] = ACTIONS(2691), + [anon_sym_const] = ACTIONS(2691), + [anon_sym_constexpr] = ACTIONS(2691), + [anon_sym_volatile] = ACTIONS(2691), + [anon_sym_restrict] = ACTIONS(2691), + [anon_sym___restrict__] = ACTIONS(2691), + [anon_sym__Atomic] = ACTIONS(2691), + [anon_sym__Noreturn] = ACTIONS(2691), + [anon_sym_noreturn] = ACTIONS(2691), + [anon_sym__Nonnull] = ACTIONS(2691), + [anon_sym_mutable] = ACTIONS(2691), + [anon_sym_constinit] = ACTIONS(2691), + [anon_sym_consteval] = ACTIONS(2691), + [anon_sym_alignas] = ACTIONS(2691), + [anon_sym__Alignas] = ACTIONS(2691), + [sym_primitive_type] = ACTIONS(2691), + [anon_sym_enum] = ACTIONS(2691), + [anon_sym_class] = ACTIONS(2691), + [anon_sym_struct] = ACTIONS(2691), + [anon_sym_union] = ACTIONS(2691), + [anon_sym_if] = ACTIONS(2691), + [anon_sym_else] = ACTIONS(2691), + [anon_sym_switch] = ACTIONS(2691), + [anon_sym_case] = ACTIONS(2691), + [anon_sym_default] = ACTIONS(2691), + [anon_sym_while] = ACTIONS(2691), + [anon_sym_do] = ACTIONS(2691), + [anon_sym_for] = ACTIONS(2691), + [anon_sym_return] = ACTIONS(2691), + [anon_sym_break] = ACTIONS(2691), + [anon_sym_continue] = ACTIONS(2691), + [anon_sym_goto] = ACTIONS(2691), + [anon_sym___try] = ACTIONS(2691), + [anon_sym___leave] = ACTIONS(2691), + [anon_sym_not] = ACTIONS(2691), + [anon_sym_compl] = ACTIONS(2691), + [anon_sym_DASH_DASH] = ACTIONS(2693), + [anon_sym_PLUS_PLUS] = ACTIONS(2693), + [anon_sym_sizeof] = ACTIONS(2691), + [anon_sym___alignof__] = ACTIONS(2691), + [anon_sym___alignof] = ACTIONS(2691), + [anon_sym__alignof] = ACTIONS(2691), + [anon_sym_alignof] = ACTIONS(2691), + [anon_sym__Alignof] = ACTIONS(2691), + [anon_sym_offsetof] = ACTIONS(2691), + [anon_sym__Generic] = ACTIONS(2691), + [anon_sym_asm] = ACTIONS(2691), + [anon_sym___asm__] = ACTIONS(2691), + [anon_sym___asm] = ACTIONS(2691), + [sym_number_literal] = ACTIONS(2693), + [anon_sym_L_SQUOTE] = ACTIONS(2693), + [anon_sym_u_SQUOTE] = ACTIONS(2693), + [anon_sym_U_SQUOTE] = ACTIONS(2693), + [anon_sym_u8_SQUOTE] = ACTIONS(2693), + [anon_sym_SQUOTE] = ACTIONS(2693), + [anon_sym_L_DQUOTE] = ACTIONS(2693), + [anon_sym_u_DQUOTE] = ACTIONS(2693), + [anon_sym_U_DQUOTE] = ACTIONS(2693), + [anon_sym_u8_DQUOTE] = ACTIONS(2693), + [anon_sym_DQUOTE] = ACTIONS(2693), + [sym_true] = ACTIONS(2691), + [sym_false] = ACTIONS(2691), + [anon_sym_NULL] = ACTIONS(2691), + [anon_sym_nullptr] = ACTIONS(2691), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2647), - [anon_sym_decltype] = ACTIONS(2647), - [anon_sym_explicit] = ACTIONS(2647), - [anon_sym_typename] = ACTIONS(2647), - [anon_sym_export] = ACTIONS(2647), - [anon_sym_module] = ACTIONS(2647), - [anon_sym_import] = ACTIONS(2647), - [anon_sym_template] = ACTIONS(2647), - [anon_sym_operator] = ACTIONS(2647), - [anon_sym_try] = ACTIONS(2647), - [anon_sym_delete] = ACTIONS(2647), - [anon_sym_throw] = ACTIONS(2647), - [anon_sym_namespace] = ACTIONS(2647), - [anon_sym_static_assert] = ACTIONS(2647), - [anon_sym_concept] = ACTIONS(2647), - [anon_sym_co_return] = ACTIONS(2647), - [anon_sym_co_yield] = ACTIONS(2647), - [anon_sym_R_DQUOTE] = ACTIONS(2649), - [anon_sym_LR_DQUOTE] = ACTIONS(2649), - [anon_sym_uR_DQUOTE] = ACTIONS(2649), - [anon_sym_UR_DQUOTE] = ACTIONS(2649), - [anon_sym_u8R_DQUOTE] = ACTIONS(2649), - [anon_sym_co_await] = ACTIONS(2647), - [anon_sym_new] = ACTIONS(2647), - [anon_sym_requires] = ACTIONS(2647), - [sym_this] = ACTIONS(2647), - }, - [344] = { - [ts_builtin_sym_end] = ACTIONS(2729), - [sym_identifier] = ACTIONS(2727), - [aux_sym_preproc_include_token1] = ACTIONS(2727), - [aux_sym_preproc_def_token1] = ACTIONS(2727), - [aux_sym_preproc_if_token1] = ACTIONS(2727), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2727), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2727), - [sym_preproc_directive] = ACTIONS(2727), - [anon_sym_LPAREN2] = ACTIONS(2729), - [anon_sym_BANG] = ACTIONS(2729), - [anon_sym_TILDE] = ACTIONS(2729), - [anon_sym_DASH] = ACTIONS(2727), - [anon_sym_PLUS] = ACTIONS(2727), - [anon_sym_STAR] = ACTIONS(2729), - [anon_sym_AMP_AMP] = ACTIONS(2729), - [anon_sym_AMP] = ACTIONS(2727), - [anon_sym_SEMI] = ACTIONS(2729), - [anon_sym___extension__] = ACTIONS(2727), - [anon_sym_typedef] = ACTIONS(2727), - [anon_sym_virtual] = ACTIONS(2727), - [anon_sym_extern] = ACTIONS(2727), - [anon_sym___attribute__] = ACTIONS(2727), - [anon_sym___attribute] = ACTIONS(2727), - [anon_sym_using] = ACTIONS(2727), - [anon_sym_COLON_COLON] = ACTIONS(2729), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2729), - [anon_sym___declspec] = ACTIONS(2727), - [anon_sym___based] = ACTIONS(2727), - [anon_sym___cdecl] = ACTIONS(2727), - [anon_sym___clrcall] = ACTIONS(2727), - [anon_sym___stdcall] = ACTIONS(2727), - [anon_sym___fastcall] = ACTIONS(2727), - [anon_sym___thiscall] = ACTIONS(2727), - [anon_sym___vectorcall] = ACTIONS(2727), - [anon_sym_LBRACE] = ACTIONS(2729), - [anon_sym_signed] = ACTIONS(2727), - [anon_sym_unsigned] = ACTIONS(2727), - [anon_sym_long] = ACTIONS(2727), - [anon_sym_short] = ACTIONS(2727), - [anon_sym_LBRACK] = ACTIONS(2727), - [anon_sym_static] = ACTIONS(2727), - [anon_sym_register] = ACTIONS(2727), - [anon_sym_inline] = ACTIONS(2727), - [anon_sym___inline] = ACTIONS(2727), - [anon_sym___inline__] = ACTIONS(2727), - [anon_sym___forceinline] = ACTIONS(2727), - [anon_sym_thread_local] = ACTIONS(2727), - [anon_sym___thread] = ACTIONS(2727), - [anon_sym_const] = ACTIONS(2727), - [anon_sym_constexpr] = ACTIONS(2727), - [anon_sym_volatile] = ACTIONS(2727), - [anon_sym_restrict] = ACTIONS(2727), - [anon_sym___restrict__] = ACTIONS(2727), - [anon_sym__Atomic] = ACTIONS(2727), - [anon_sym__Noreturn] = ACTIONS(2727), - [anon_sym_noreturn] = ACTIONS(2727), - [anon_sym__Nonnull] = ACTIONS(2727), - [anon_sym_mutable] = ACTIONS(2727), - [anon_sym_constinit] = ACTIONS(2727), - [anon_sym_consteval] = ACTIONS(2727), - [anon_sym_alignas] = ACTIONS(2727), - [anon_sym__Alignas] = ACTIONS(2727), - [sym_primitive_type] = ACTIONS(2727), - [anon_sym_enum] = ACTIONS(2727), - [anon_sym_class] = ACTIONS(2727), - [anon_sym_struct] = ACTIONS(2727), - [anon_sym_union] = ACTIONS(2727), - [anon_sym_if] = ACTIONS(2727), - [anon_sym_else] = ACTIONS(2727), - [anon_sym_switch] = ACTIONS(2727), - [anon_sym_case] = ACTIONS(2727), - [anon_sym_default] = ACTIONS(2727), - [anon_sym_while] = ACTIONS(2727), - [anon_sym_do] = ACTIONS(2727), - [anon_sym_for] = ACTIONS(2727), - [anon_sym_return] = ACTIONS(2727), - [anon_sym_break] = ACTIONS(2727), - [anon_sym_continue] = ACTIONS(2727), - [anon_sym_goto] = ACTIONS(2727), - [anon_sym___try] = ACTIONS(2727), - [anon_sym___leave] = ACTIONS(2727), - [anon_sym_not] = ACTIONS(2727), - [anon_sym_compl] = ACTIONS(2727), - [anon_sym_DASH_DASH] = ACTIONS(2729), - [anon_sym_PLUS_PLUS] = ACTIONS(2729), - [anon_sym_sizeof] = ACTIONS(2727), - [anon_sym___alignof__] = ACTIONS(2727), - [anon_sym___alignof] = ACTIONS(2727), - [anon_sym__alignof] = ACTIONS(2727), - [anon_sym_alignof] = ACTIONS(2727), - [anon_sym__Alignof] = ACTIONS(2727), - [anon_sym_offsetof] = ACTIONS(2727), - [anon_sym__Generic] = ACTIONS(2727), - [anon_sym_asm] = ACTIONS(2727), - [anon_sym___asm__] = ACTIONS(2727), - [anon_sym___asm] = ACTIONS(2727), - [sym_number_literal] = ACTIONS(2729), - [anon_sym_L_SQUOTE] = ACTIONS(2729), - [anon_sym_u_SQUOTE] = ACTIONS(2729), - [anon_sym_U_SQUOTE] = ACTIONS(2729), - [anon_sym_u8_SQUOTE] = ACTIONS(2729), - [anon_sym_SQUOTE] = ACTIONS(2729), - [anon_sym_L_DQUOTE] = ACTIONS(2729), - [anon_sym_u_DQUOTE] = ACTIONS(2729), - [anon_sym_U_DQUOTE] = ACTIONS(2729), - [anon_sym_u8_DQUOTE] = ACTIONS(2729), - [anon_sym_DQUOTE] = ACTIONS(2729), - [sym_true] = ACTIONS(2727), - [sym_false] = ACTIONS(2727), - [anon_sym_NULL] = ACTIONS(2727), - [anon_sym_nullptr] = ACTIONS(2727), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2727), - [anon_sym_decltype] = ACTIONS(2727), - [anon_sym_explicit] = ACTIONS(2727), - [anon_sym_typename] = ACTIONS(2727), - [anon_sym_export] = ACTIONS(2727), - [anon_sym_module] = ACTIONS(2727), - [anon_sym_import] = ACTIONS(2727), - [anon_sym_template] = ACTIONS(2727), - [anon_sym_operator] = ACTIONS(2727), - [anon_sym_try] = ACTIONS(2727), - [anon_sym_delete] = ACTIONS(2727), - [anon_sym_throw] = ACTIONS(2727), - [anon_sym_namespace] = ACTIONS(2727), - [anon_sym_static_assert] = ACTIONS(2727), - [anon_sym_concept] = ACTIONS(2727), - [anon_sym_co_return] = ACTIONS(2727), - [anon_sym_co_yield] = ACTIONS(2727), - [anon_sym_R_DQUOTE] = ACTIONS(2729), - [anon_sym_LR_DQUOTE] = ACTIONS(2729), - [anon_sym_uR_DQUOTE] = ACTIONS(2729), - [anon_sym_UR_DQUOTE] = ACTIONS(2729), - [anon_sym_u8R_DQUOTE] = ACTIONS(2729), - [anon_sym_co_await] = ACTIONS(2727), - [anon_sym_new] = ACTIONS(2727), - [anon_sym_requires] = ACTIONS(2727), - [sym_this] = ACTIONS(2727), + [sym_auto] = ACTIONS(2691), + [anon_sym_decltype] = ACTIONS(2691), + [anon_sym_explicit] = ACTIONS(2691), + [anon_sym_typename] = ACTIONS(2691), + [anon_sym_export] = ACTIONS(2691), + [anon_sym_module] = ACTIONS(2691), + [anon_sym_import] = ACTIONS(2691), + [anon_sym_template] = ACTIONS(2691), + [anon_sym_operator] = ACTIONS(2691), + [anon_sym_try] = ACTIONS(2691), + [anon_sym_delete] = ACTIONS(2691), + [anon_sym_throw] = ACTIONS(2691), + [anon_sym_namespace] = ACTIONS(2691), + [anon_sym_static_assert] = ACTIONS(2691), + [anon_sym_concept] = ACTIONS(2691), + [anon_sym_co_return] = ACTIONS(2691), + [anon_sym_co_yield] = ACTIONS(2691), + [anon_sym_R_DQUOTE] = ACTIONS(2693), + [anon_sym_LR_DQUOTE] = ACTIONS(2693), + [anon_sym_uR_DQUOTE] = ACTIONS(2693), + [anon_sym_UR_DQUOTE] = ACTIONS(2693), + [anon_sym_u8R_DQUOTE] = ACTIONS(2693), + [anon_sym_co_await] = ACTIONS(2691), + [anon_sym_new] = ACTIONS(2691), + [anon_sym_requires] = ACTIONS(2691), + [sym_this] = ACTIONS(2691), }, - [345] = { - [ts_builtin_sym_end] = ACTIONS(2757), - [sym_identifier] = ACTIONS(2755), - [aux_sym_preproc_include_token1] = ACTIONS(2755), - [aux_sym_preproc_def_token1] = ACTIONS(2755), - [aux_sym_preproc_if_token1] = ACTIONS(2755), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2755), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2755), - [sym_preproc_directive] = ACTIONS(2755), - [anon_sym_LPAREN2] = ACTIONS(2757), - [anon_sym_BANG] = ACTIONS(2757), - [anon_sym_TILDE] = ACTIONS(2757), - [anon_sym_DASH] = ACTIONS(2755), - [anon_sym_PLUS] = ACTIONS(2755), - [anon_sym_STAR] = ACTIONS(2757), - [anon_sym_AMP_AMP] = ACTIONS(2757), - [anon_sym_AMP] = ACTIONS(2755), - [anon_sym_SEMI] = ACTIONS(2757), - [anon_sym___extension__] = ACTIONS(2755), - [anon_sym_typedef] = ACTIONS(2755), - [anon_sym_virtual] = ACTIONS(2755), - [anon_sym_extern] = ACTIONS(2755), - [anon_sym___attribute__] = ACTIONS(2755), - [anon_sym___attribute] = ACTIONS(2755), - [anon_sym_using] = ACTIONS(2755), - [anon_sym_COLON_COLON] = ACTIONS(2757), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2757), - [anon_sym___declspec] = ACTIONS(2755), - [anon_sym___based] = ACTIONS(2755), - [anon_sym___cdecl] = ACTIONS(2755), - [anon_sym___clrcall] = ACTIONS(2755), - [anon_sym___stdcall] = ACTIONS(2755), - [anon_sym___fastcall] = ACTIONS(2755), - [anon_sym___thiscall] = ACTIONS(2755), - [anon_sym___vectorcall] = ACTIONS(2755), - [anon_sym_LBRACE] = ACTIONS(2757), - [anon_sym_signed] = ACTIONS(2755), - [anon_sym_unsigned] = ACTIONS(2755), - [anon_sym_long] = ACTIONS(2755), - [anon_sym_short] = ACTIONS(2755), - [anon_sym_LBRACK] = ACTIONS(2755), - [anon_sym_static] = ACTIONS(2755), - [anon_sym_register] = ACTIONS(2755), - [anon_sym_inline] = ACTIONS(2755), - [anon_sym___inline] = ACTIONS(2755), - [anon_sym___inline__] = ACTIONS(2755), - [anon_sym___forceinline] = ACTIONS(2755), - [anon_sym_thread_local] = ACTIONS(2755), - [anon_sym___thread] = ACTIONS(2755), - [anon_sym_const] = ACTIONS(2755), - [anon_sym_constexpr] = ACTIONS(2755), - [anon_sym_volatile] = ACTIONS(2755), - [anon_sym_restrict] = ACTIONS(2755), - [anon_sym___restrict__] = ACTIONS(2755), - [anon_sym__Atomic] = ACTIONS(2755), - [anon_sym__Noreturn] = ACTIONS(2755), - [anon_sym_noreturn] = ACTIONS(2755), - [anon_sym__Nonnull] = ACTIONS(2755), - [anon_sym_mutable] = ACTIONS(2755), - [anon_sym_constinit] = ACTIONS(2755), - [anon_sym_consteval] = ACTIONS(2755), - [anon_sym_alignas] = ACTIONS(2755), - [anon_sym__Alignas] = ACTIONS(2755), - [sym_primitive_type] = ACTIONS(2755), - [anon_sym_enum] = ACTIONS(2755), - [anon_sym_class] = ACTIONS(2755), - [anon_sym_struct] = ACTIONS(2755), - [anon_sym_union] = ACTIONS(2755), - [anon_sym_if] = ACTIONS(2755), - [anon_sym_else] = ACTIONS(2755), - [anon_sym_switch] = ACTIONS(2755), - [anon_sym_case] = ACTIONS(2755), - [anon_sym_default] = ACTIONS(2755), - [anon_sym_while] = ACTIONS(2755), - [anon_sym_do] = ACTIONS(2755), - [anon_sym_for] = ACTIONS(2755), - [anon_sym_return] = ACTIONS(2755), - [anon_sym_break] = ACTIONS(2755), - [anon_sym_continue] = ACTIONS(2755), - [anon_sym_goto] = ACTIONS(2755), - [anon_sym___try] = ACTIONS(2755), - [anon_sym___leave] = ACTIONS(2755), - [anon_sym_not] = ACTIONS(2755), - [anon_sym_compl] = ACTIONS(2755), - [anon_sym_DASH_DASH] = ACTIONS(2757), - [anon_sym_PLUS_PLUS] = ACTIONS(2757), - [anon_sym_sizeof] = ACTIONS(2755), - [anon_sym___alignof__] = ACTIONS(2755), - [anon_sym___alignof] = ACTIONS(2755), - [anon_sym__alignof] = ACTIONS(2755), - [anon_sym_alignof] = ACTIONS(2755), - [anon_sym__Alignof] = ACTIONS(2755), - [anon_sym_offsetof] = ACTIONS(2755), - [anon_sym__Generic] = ACTIONS(2755), - [anon_sym_asm] = ACTIONS(2755), - [anon_sym___asm__] = ACTIONS(2755), - [anon_sym___asm] = ACTIONS(2755), - [sym_number_literal] = ACTIONS(2757), - [anon_sym_L_SQUOTE] = ACTIONS(2757), - [anon_sym_u_SQUOTE] = ACTIONS(2757), - [anon_sym_U_SQUOTE] = ACTIONS(2757), - [anon_sym_u8_SQUOTE] = ACTIONS(2757), - [anon_sym_SQUOTE] = ACTIONS(2757), - [anon_sym_L_DQUOTE] = ACTIONS(2757), - [anon_sym_u_DQUOTE] = ACTIONS(2757), - [anon_sym_U_DQUOTE] = ACTIONS(2757), - [anon_sym_u8_DQUOTE] = ACTIONS(2757), - [anon_sym_DQUOTE] = ACTIONS(2757), - [sym_true] = ACTIONS(2755), - [sym_false] = ACTIONS(2755), - [anon_sym_NULL] = ACTIONS(2755), - [anon_sym_nullptr] = ACTIONS(2755), + [349] = { + [ts_builtin_sym_end] = ACTIONS(2769), + [sym_identifier] = ACTIONS(2767), + [aux_sym_preproc_include_token1] = ACTIONS(2767), + [aux_sym_preproc_def_token1] = ACTIONS(2767), + [aux_sym_preproc_if_token1] = ACTIONS(2767), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2767), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2767), + [sym_preproc_directive] = ACTIONS(2767), + [anon_sym_LPAREN2] = ACTIONS(2769), + [anon_sym_BANG] = ACTIONS(2769), + [anon_sym_TILDE] = ACTIONS(2769), + [anon_sym_DASH] = ACTIONS(2767), + [anon_sym_PLUS] = ACTIONS(2767), + [anon_sym_STAR] = ACTIONS(2769), + [anon_sym_AMP_AMP] = ACTIONS(2769), + [anon_sym_AMP] = ACTIONS(2767), + [anon_sym_SEMI] = ACTIONS(2769), + [anon_sym___extension__] = ACTIONS(2767), + [anon_sym_typedef] = ACTIONS(2767), + [anon_sym_virtual] = ACTIONS(2767), + [anon_sym_extern] = ACTIONS(2767), + [anon_sym___attribute__] = ACTIONS(2767), + [anon_sym___attribute] = ACTIONS(2767), + [anon_sym_using] = ACTIONS(2767), + [anon_sym_COLON_COLON] = ACTIONS(2769), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2769), + [anon_sym___declspec] = ACTIONS(2767), + [anon_sym___based] = ACTIONS(2767), + [anon_sym___cdecl] = ACTIONS(2767), + [anon_sym___clrcall] = ACTIONS(2767), + [anon_sym___stdcall] = ACTIONS(2767), + [anon_sym___fastcall] = ACTIONS(2767), + [anon_sym___thiscall] = ACTIONS(2767), + [anon_sym___vectorcall] = ACTIONS(2767), + [anon_sym_LBRACE] = ACTIONS(2769), + [anon_sym_signed] = ACTIONS(2767), + [anon_sym_unsigned] = ACTIONS(2767), + [anon_sym_long] = ACTIONS(2767), + [anon_sym_short] = ACTIONS(2767), + [anon_sym_LBRACK] = ACTIONS(2767), + [anon_sym_static] = ACTIONS(2767), + [anon_sym_register] = ACTIONS(2767), + [anon_sym_inline] = ACTIONS(2767), + [anon_sym___inline] = ACTIONS(2767), + [anon_sym___inline__] = ACTIONS(2767), + [anon_sym___forceinline] = ACTIONS(2767), + [anon_sym_thread_local] = ACTIONS(2767), + [anon_sym___thread] = ACTIONS(2767), + [anon_sym_const] = ACTIONS(2767), + [anon_sym_constexpr] = ACTIONS(2767), + [anon_sym_volatile] = ACTIONS(2767), + [anon_sym_restrict] = ACTIONS(2767), + [anon_sym___restrict__] = ACTIONS(2767), + [anon_sym__Atomic] = ACTIONS(2767), + [anon_sym__Noreturn] = ACTIONS(2767), + [anon_sym_noreturn] = ACTIONS(2767), + [anon_sym__Nonnull] = ACTIONS(2767), + [anon_sym_mutable] = ACTIONS(2767), + [anon_sym_constinit] = ACTIONS(2767), + [anon_sym_consteval] = ACTIONS(2767), + [anon_sym_alignas] = ACTIONS(2767), + [anon_sym__Alignas] = ACTIONS(2767), + [sym_primitive_type] = ACTIONS(2767), + [anon_sym_enum] = ACTIONS(2767), + [anon_sym_class] = ACTIONS(2767), + [anon_sym_struct] = ACTIONS(2767), + [anon_sym_union] = ACTIONS(2767), + [anon_sym_if] = ACTIONS(2767), + [anon_sym_else] = ACTIONS(2767), + [anon_sym_switch] = ACTIONS(2767), + [anon_sym_case] = ACTIONS(2767), + [anon_sym_default] = ACTIONS(2767), + [anon_sym_while] = ACTIONS(2767), + [anon_sym_do] = ACTIONS(2767), + [anon_sym_for] = ACTIONS(2767), + [anon_sym_return] = ACTIONS(2767), + [anon_sym_break] = ACTIONS(2767), + [anon_sym_continue] = ACTIONS(2767), + [anon_sym_goto] = ACTIONS(2767), + [anon_sym___try] = ACTIONS(2767), + [anon_sym___leave] = ACTIONS(2767), + [anon_sym_not] = ACTIONS(2767), + [anon_sym_compl] = ACTIONS(2767), + [anon_sym_DASH_DASH] = ACTIONS(2769), + [anon_sym_PLUS_PLUS] = ACTIONS(2769), + [anon_sym_sizeof] = ACTIONS(2767), + [anon_sym___alignof__] = ACTIONS(2767), + [anon_sym___alignof] = ACTIONS(2767), + [anon_sym__alignof] = ACTIONS(2767), + [anon_sym_alignof] = ACTIONS(2767), + [anon_sym__Alignof] = ACTIONS(2767), + [anon_sym_offsetof] = ACTIONS(2767), + [anon_sym__Generic] = ACTIONS(2767), + [anon_sym_asm] = ACTIONS(2767), + [anon_sym___asm__] = ACTIONS(2767), + [anon_sym___asm] = ACTIONS(2767), + [sym_number_literal] = ACTIONS(2769), + [anon_sym_L_SQUOTE] = ACTIONS(2769), + [anon_sym_u_SQUOTE] = ACTIONS(2769), + [anon_sym_U_SQUOTE] = ACTIONS(2769), + [anon_sym_u8_SQUOTE] = ACTIONS(2769), + [anon_sym_SQUOTE] = ACTIONS(2769), + [anon_sym_L_DQUOTE] = ACTIONS(2769), + [anon_sym_u_DQUOTE] = ACTIONS(2769), + [anon_sym_U_DQUOTE] = ACTIONS(2769), + [anon_sym_u8_DQUOTE] = ACTIONS(2769), + [anon_sym_DQUOTE] = ACTIONS(2769), + [sym_true] = ACTIONS(2767), + [sym_false] = ACTIONS(2767), + [anon_sym_NULL] = ACTIONS(2767), + [anon_sym_nullptr] = ACTIONS(2767), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2755), - [anon_sym_decltype] = ACTIONS(2755), - [anon_sym_explicit] = ACTIONS(2755), - [anon_sym_typename] = ACTIONS(2755), - [anon_sym_export] = ACTIONS(2755), - [anon_sym_module] = ACTIONS(2755), - [anon_sym_import] = ACTIONS(2755), - [anon_sym_template] = ACTIONS(2755), - [anon_sym_operator] = ACTIONS(2755), - [anon_sym_try] = ACTIONS(2755), - [anon_sym_delete] = ACTIONS(2755), - [anon_sym_throw] = ACTIONS(2755), - [anon_sym_namespace] = ACTIONS(2755), - [anon_sym_static_assert] = ACTIONS(2755), - [anon_sym_concept] = ACTIONS(2755), - [anon_sym_co_return] = ACTIONS(2755), - [anon_sym_co_yield] = ACTIONS(2755), - [anon_sym_R_DQUOTE] = ACTIONS(2757), - [anon_sym_LR_DQUOTE] = ACTIONS(2757), - [anon_sym_uR_DQUOTE] = ACTIONS(2757), - [anon_sym_UR_DQUOTE] = ACTIONS(2757), - [anon_sym_u8R_DQUOTE] = ACTIONS(2757), - [anon_sym_co_await] = ACTIONS(2755), - [anon_sym_new] = ACTIONS(2755), - [anon_sym_requires] = ACTIONS(2755), - [sym_this] = ACTIONS(2755), - }, - [346] = { - [sym_identifier] = ACTIONS(3027), - [aux_sym_preproc_include_token1] = ACTIONS(3027), - [aux_sym_preproc_def_token1] = ACTIONS(3027), - [aux_sym_preproc_if_token1] = ACTIONS(3027), - [aux_sym_preproc_if_token2] = ACTIONS(3027), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3027), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3027), - [aux_sym_preproc_else_token1] = ACTIONS(3027), - [aux_sym_preproc_elif_token1] = ACTIONS(3027), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3027), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3027), - [sym_preproc_directive] = ACTIONS(3027), - [anon_sym_LPAREN2] = ACTIONS(3029), - [anon_sym_BANG] = ACTIONS(3029), - [anon_sym_TILDE] = ACTIONS(3029), - [anon_sym_DASH] = ACTIONS(3027), - [anon_sym_PLUS] = ACTIONS(3027), - [anon_sym_STAR] = ACTIONS(3029), - [anon_sym_AMP_AMP] = ACTIONS(3029), - [anon_sym_AMP] = ACTIONS(3027), - [anon_sym_SEMI] = ACTIONS(3029), - [anon_sym___extension__] = ACTIONS(3027), - [anon_sym_typedef] = ACTIONS(3027), - [anon_sym_virtual] = ACTIONS(3027), - [anon_sym_extern] = ACTIONS(3027), - [anon_sym___attribute__] = ACTIONS(3027), - [anon_sym___attribute] = ACTIONS(3027), - [anon_sym_using] = ACTIONS(3027), - [anon_sym_COLON_COLON] = ACTIONS(3029), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3029), - [anon_sym___declspec] = ACTIONS(3027), - [anon_sym___based] = ACTIONS(3027), - [anon_sym___cdecl] = ACTIONS(3027), - [anon_sym___clrcall] = ACTIONS(3027), - [anon_sym___stdcall] = ACTIONS(3027), - [anon_sym___fastcall] = ACTIONS(3027), - [anon_sym___thiscall] = ACTIONS(3027), - [anon_sym___vectorcall] = ACTIONS(3027), - [anon_sym_LBRACE] = ACTIONS(3029), - [anon_sym_signed] = ACTIONS(3027), - [anon_sym_unsigned] = ACTIONS(3027), - [anon_sym_long] = ACTIONS(3027), - [anon_sym_short] = ACTIONS(3027), - [anon_sym_LBRACK] = ACTIONS(3027), - [anon_sym_static] = ACTIONS(3027), - [anon_sym_register] = ACTIONS(3027), - [anon_sym_inline] = ACTIONS(3027), - [anon_sym___inline] = ACTIONS(3027), - [anon_sym___inline__] = ACTIONS(3027), - [anon_sym___forceinline] = ACTIONS(3027), - [anon_sym_thread_local] = ACTIONS(3027), - [anon_sym___thread] = ACTIONS(3027), - [anon_sym_const] = ACTIONS(3027), - [anon_sym_constexpr] = ACTIONS(3027), - [anon_sym_volatile] = ACTIONS(3027), - [anon_sym_restrict] = ACTIONS(3027), - [anon_sym___restrict__] = ACTIONS(3027), - [anon_sym__Atomic] = ACTIONS(3027), - [anon_sym__Noreturn] = ACTIONS(3027), - [anon_sym_noreturn] = ACTIONS(3027), - [anon_sym__Nonnull] = ACTIONS(3027), - [anon_sym_mutable] = ACTIONS(3027), - [anon_sym_constinit] = ACTIONS(3027), - [anon_sym_consteval] = ACTIONS(3027), - [anon_sym_alignas] = ACTIONS(3027), - [anon_sym__Alignas] = ACTIONS(3027), - [sym_primitive_type] = ACTIONS(3027), - [anon_sym_enum] = ACTIONS(3027), - [anon_sym_class] = ACTIONS(3027), - [anon_sym_struct] = ACTIONS(3027), - [anon_sym_union] = ACTIONS(3027), - [anon_sym_if] = ACTIONS(3027), - [anon_sym_switch] = ACTIONS(3027), - [anon_sym_case] = ACTIONS(3027), - [anon_sym_default] = ACTIONS(3027), - [anon_sym_while] = ACTIONS(3027), - [anon_sym_do] = ACTIONS(3027), - [anon_sym_for] = ACTIONS(3027), - [anon_sym_return] = ACTIONS(3027), - [anon_sym_break] = ACTIONS(3027), - [anon_sym_continue] = ACTIONS(3027), - [anon_sym_goto] = ACTIONS(3027), - [anon_sym___try] = ACTIONS(3027), - [anon_sym___leave] = ACTIONS(3027), - [anon_sym_not] = ACTIONS(3027), - [anon_sym_compl] = ACTIONS(3027), - [anon_sym_DASH_DASH] = ACTIONS(3029), - [anon_sym_PLUS_PLUS] = ACTIONS(3029), - [anon_sym_sizeof] = ACTIONS(3027), - [anon_sym___alignof__] = ACTIONS(3027), - [anon_sym___alignof] = ACTIONS(3027), - [anon_sym__alignof] = ACTIONS(3027), - [anon_sym_alignof] = ACTIONS(3027), - [anon_sym__Alignof] = ACTIONS(3027), - [anon_sym_offsetof] = ACTIONS(3027), - [anon_sym__Generic] = ACTIONS(3027), - [anon_sym_asm] = ACTIONS(3027), - [anon_sym___asm__] = ACTIONS(3027), - [anon_sym___asm] = ACTIONS(3027), - [sym_number_literal] = ACTIONS(3029), - [anon_sym_L_SQUOTE] = ACTIONS(3029), - [anon_sym_u_SQUOTE] = ACTIONS(3029), - [anon_sym_U_SQUOTE] = ACTIONS(3029), - [anon_sym_u8_SQUOTE] = ACTIONS(3029), - [anon_sym_SQUOTE] = ACTIONS(3029), - [anon_sym_L_DQUOTE] = ACTIONS(3029), - [anon_sym_u_DQUOTE] = ACTIONS(3029), - [anon_sym_U_DQUOTE] = ACTIONS(3029), - [anon_sym_u8_DQUOTE] = ACTIONS(3029), - [anon_sym_DQUOTE] = ACTIONS(3029), - [sym_true] = ACTIONS(3027), - [sym_false] = ACTIONS(3027), - [anon_sym_NULL] = ACTIONS(3027), - [anon_sym_nullptr] = ACTIONS(3027), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3027), - [anon_sym_decltype] = ACTIONS(3027), - [anon_sym_explicit] = ACTIONS(3027), - [anon_sym_typename] = ACTIONS(3027), - [anon_sym_template] = ACTIONS(3027), - [anon_sym_operator] = ACTIONS(3027), - [anon_sym_try] = ACTIONS(3027), - [anon_sym_delete] = ACTIONS(3027), - [anon_sym_throw] = ACTIONS(3027), - [anon_sym_namespace] = ACTIONS(3027), - [anon_sym_static_assert] = ACTIONS(3027), - [anon_sym_concept] = ACTIONS(3027), - [anon_sym_co_return] = ACTIONS(3027), - [anon_sym_co_yield] = ACTIONS(3027), - [anon_sym_R_DQUOTE] = ACTIONS(3029), - [anon_sym_LR_DQUOTE] = ACTIONS(3029), - [anon_sym_uR_DQUOTE] = ACTIONS(3029), - [anon_sym_UR_DQUOTE] = ACTIONS(3029), - [anon_sym_u8R_DQUOTE] = ACTIONS(3029), - [anon_sym_co_await] = ACTIONS(3027), - [anon_sym_new] = ACTIONS(3027), - [anon_sym_requires] = ACTIONS(3027), - [sym_this] = ACTIONS(3027), - }, - [347] = { - [sym_identifier] = ACTIONS(3031), - [aux_sym_preproc_include_token1] = ACTIONS(3031), - [aux_sym_preproc_def_token1] = ACTIONS(3031), - [aux_sym_preproc_if_token1] = ACTIONS(3031), - [aux_sym_preproc_if_token2] = ACTIONS(3031), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3031), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3031), - [aux_sym_preproc_else_token1] = ACTIONS(3031), - [aux_sym_preproc_elif_token1] = ACTIONS(3031), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3031), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3031), - [sym_preproc_directive] = ACTIONS(3031), - [anon_sym_LPAREN2] = ACTIONS(3033), - [anon_sym_BANG] = ACTIONS(3033), - [anon_sym_TILDE] = ACTIONS(3033), - [anon_sym_DASH] = ACTIONS(3031), - [anon_sym_PLUS] = ACTIONS(3031), - [anon_sym_STAR] = ACTIONS(3033), - [anon_sym_AMP_AMP] = ACTIONS(3033), - [anon_sym_AMP] = ACTIONS(3031), - [anon_sym_SEMI] = ACTIONS(3033), - [anon_sym___extension__] = ACTIONS(3031), - [anon_sym_typedef] = ACTIONS(3031), - [anon_sym_virtual] = ACTIONS(3031), - [anon_sym_extern] = ACTIONS(3031), - [anon_sym___attribute__] = ACTIONS(3031), - [anon_sym___attribute] = ACTIONS(3031), - [anon_sym_using] = ACTIONS(3031), - [anon_sym_COLON_COLON] = ACTIONS(3033), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3033), - [anon_sym___declspec] = ACTIONS(3031), - [anon_sym___based] = ACTIONS(3031), - [anon_sym___cdecl] = ACTIONS(3031), - [anon_sym___clrcall] = ACTIONS(3031), - [anon_sym___stdcall] = ACTIONS(3031), - [anon_sym___fastcall] = ACTIONS(3031), - [anon_sym___thiscall] = ACTIONS(3031), - [anon_sym___vectorcall] = ACTIONS(3031), - [anon_sym_LBRACE] = ACTIONS(3033), - [anon_sym_signed] = ACTIONS(3031), - [anon_sym_unsigned] = ACTIONS(3031), - [anon_sym_long] = ACTIONS(3031), - [anon_sym_short] = ACTIONS(3031), - [anon_sym_LBRACK] = ACTIONS(3031), - [anon_sym_static] = ACTIONS(3031), - [anon_sym_register] = ACTIONS(3031), - [anon_sym_inline] = ACTIONS(3031), - [anon_sym___inline] = ACTIONS(3031), - [anon_sym___inline__] = ACTIONS(3031), - [anon_sym___forceinline] = ACTIONS(3031), - [anon_sym_thread_local] = ACTIONS(3031), - [anon_sym___thread] = ACTIONS(3031), - [anon_sym_const] = ACTIONS(3031), - [anon_sym_constexpr] = ACTIONS(3031), - [anon_sym_volatile] = ACTIONS(3031), - [anon_sym_restrict] = ACTIONS(3031), - [anon_sym___restrict__] = ACTIONS(3031), - [anon_sym__Atomic] = ACTIONS(3031), - [anon_sym__Noreturn] = ACTIONS(3031), - [anon_sym_noreturn] = ACTIONS(3031), - [anon_sym__Nonnull] = ACTIONS(3031), - [anon_sym_mutable] = ACTIONS(3031), - [anon_sym_constinit] = ACTIONS(3031), - [anon_sym_consteval] = ACTIONS(3031), - [anon_sym_alignas] = ACTIONS(3031), - [anon_sym__Alignas] = ACTIONS(3031), - [sym_primitive_type] = ACTIONS(3031), - [anon_sym_enum] = ACTIONS(3031), - [anon_sym_class] = ACTIONS(3031), - [anon_sym_struct] = ACTIONS(3031), - [anon_sym_union] = ACTIONS(3031), - [anon_sym_if] = ACTIONS(3031), - [anon_sym_switch] = ACTIONS(3031), - [anon_sym_case] = ACTIONS(3031), - [anon_sym_default] = ACTIONS(3031), - [anon_sym_while] = ACTIONS(3031), - [anon_sym_do] = ACTIONS(3031), - [anon_sym_for] = ACTIONS(3031), - [anon_sym_return] = ACTIONS(3031), - [anon_sym_break] = ACTIONS(3031), - [anon_sym_continue] = ACTIONS(3031), - [anon_sym_goto] = ACTIONS(3031), - [anon_sym___try] = ACTIONS(3031), - [anon_sym___leave] = ACTIONS(3031), - [anon_sym_not] = ACTIONS(3031), - [anon_sym_compl] = ACTIONS(3031), - [anon_sym_DASH_DASH] = ACTIONS(3033), - [anon_sym_PLUS_PLUS] = ACTIONS(3033), - [anon_sym_sizeof] = ACTIONS(3031), - [anon_sym___alignof__] = ACTIONS(3031), - [anon_sym___alignof] = ACTIONS(3031), - [anon_sym__alignof] = ACTIONS(3031), - [anon_sym_alignof] = ACTIONS(3031), - [anon_sym__Alignof] = ACTIONS(3031), - [anon_sym_offsetof] = ACTIONS(3031), - [anon_sym__Generic] = ACTIONS(3031), - [anon_sym_asm] = ACTIONS(3031), - [anon_sym___asm__] = ACTIONS(3031), - [anon_sym___asm] = ACTIONS(3031), - [sym_number_literal] = ACTIONS(3033), - [anon_sym_L_SQUOTE] = ACTIONS(3033), - [anon_sym_u_SQUOTE] = ACTIONS(3033), - [anon_sym_U_SQUOTE] = ACTIONS(3033), - [anon_sym_u8_SQUOTE] = ACTIONS(3033), - [anon_sym_SQUOTE] = ACTIONS(3033), - [anon_sym_L_DQUOTE] = ACTIONS(3033), - [anon_sym_u_DQUOTE] = ACTIONS(3033), - [anon_sym_U_DQUOTE] = ACTIONS(3033), - [anon_sym_u8_DQUOTE] = ACTIONS(3033), - [anon_sym_DQUOTE] = ACTIONS(3033), - [sym_true] = ACTIONS(3031), - [sym_false] = ACTIONS(3031), - [anon_sym_NULL] = ACTIONS(3031), - [anon_sym_nullptr] = ACTIONS(3031), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3031), - [anon_sym_decltype] = ACTIONS(3031), - [anon_sym_explicit] = ACTIONS(3031), - [anon_sym_typename] = ACTIONS(3031), - [anon_sym_template] = ACTIONS(3031), - [anon_sym_operator] = ACTIONS(3031), - [anon_sym_try] = ACTIONS(3031), - [anon_sym_delete] = ACTIONS(3031), - [anon_sym_throw] = ACTIONS(3031), - [anon_sym_namespace] = ACTIONS(3031), - [anon_sym_static_assert] = ACTIONS(3031), - [anon_sym_concept] = ACTIONS(3031), - [anon_sym_co_return] = ACTIONS(3031), - [anon_sym_co_yield] = ACTIONS(3031), - [anon_sym_R_DQUOTE] = ACTIONS(3033), - [anon_sym_LR_DQUOTE] = ACTIONS(3033), - [anon_sym_uR_DQUOTE] = ACTIONS(3033), - [anon_sym_UR_DQUOTE] = ACTIONS(3033), - [anon_sym_u8R_DQUOTE] = ACTIONS(3033), - [anon_sym_co_await] = ACTIONS(3031), - [anon_sym_new] = ACTIONS(3031), - [anon_sym_requires] = ACTIONS(3031), - [sym_this] = ACTIONS(3031), + [sym_auto] = ACTIONS(2767), + [anon_sym_decltype] = ACTIONS(2767), + [anon_sym_explicit] = ACTIONS(2767), + [anon_sym_typename] = ACTIONS(2767), + [anon_sym_export] = ACTIONS(2767), + [anon_sym_module] = ACTIONS(2767), + [anon_sym_import] = ACTIONS(2767), + [anon_sym_template] = ACTIONS(2767), + [anon_sym_operator] = ACTIONS(2767), + [anon_sym_try] = ACTIONS(2767), + [anon_sym_delete] = ACTIONS(2767), + [anon_sym_throw] = ACTIONS(2767), + [anon_sym_namespace] = ACTIONS(2767), + [anon_sym_static_assert] = ACTIONS(2767), + [anon_sym_concept] = ACTIONS(2767), + [anon_sym_co_return] = ACTIONS(2767), + [anon_sym_co_yield] = ACTIONS(2767), + [anon_sym_R_DQUOTE] = ACTIONS(2769), + [anon_sym_LR_DQUOTE] = ACTIONS(2769), + [anon_sym_uR_DQUOTE] = ACTIONS(2769), + [anon_sym_UR_DQUOTE] = ACTIONS(2769), + [anon_sym_u8R_DQUOTE] = ACTIONS(2769), + [anon_sym_co_await] = ACTIONS(2767), + [anon_sym_new] = ACTIONS(2767), + [anon_sym_requires] = ACTIONS(2767), + [sym_this] = ACTIONS(2767), }, - [348] = { - [sym_identifier] = ACTIONS(3035), - [aux_sym_preproc_include_token1] = ACTIONS(3035), - [aux_sym_preproc_def_token1] = ACTIONS(3035), - [aux_sym_preproc_if_token1] = ACTIONS(3035), - [aux_sym_preproc_if_token2] = ACTIONS(3035), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3035), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3035), - [aux_sym_preproc_else_token1] = ACTIONS(3035), - [aux_sym_preproc_elif_token1] = ACTIONS(3035), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3035), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3035), - [sym_preproc_directive] = ACTIONS(3035), - [anon_sym_LPAREN2] = ACTIONS(3037), - [anon_sym_BANG] = ACTIONS(3037), - [anon_sym_TILDE] = ACTIONS(3037), - [anon_sym_DASH] = ACTIONS(3035), - [anon_sym_PLUS] = ACTIONS(3035), - [anon_sym_STAR] = ACTIONS(3037), - [anon_sym_AMP_AMP] = ACTIONS(3037), - [anon_sym_AMP] = ACTIONS(3035), - [anon_sym_SEMI] = ACTIONS(3037), - [anon_sym___extension__] = ACTIONS(3035), - [anon_sym_typedef] = ACTIONS(3035), - [anon_sym_virtual] = ACTIONS(3035), - [anon_sym_extern] = ACTIONS(3035), - [anon_sym___attribute__] = ACTIONS(3035), - [anon_sym___attribute] = ACTIONS(3035), - [anon_sym_using] = ACTIONS(3035), - [anon_sym_COLON_COLON] = ACTIONS(3037), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3037), - [anon_sym___declspec] = ACTIONS(3035), - [anon_sym___based] = ACTIONS(3035), - [anon_sym___cdecl] = ACTIONS(3035), - [anon_sym___clrcall] = ACTIONS(3035), - [anon_sym___stdcall] = ACTIONS(3035), - [anon_sym___fastcall] = ACTIONS(3035), - [anon_sym___thiscall] = ACTIONS(3035), - [anon_sym___vectorcall] = ACTIONS(3035), - [anon_sym_LBRACE] = ACTIONS(3037), - [anon_sym_signed] = ACTIONS(3035), - [anon_sym_unsigned] = ACTIONS(3035), - [anon_sym_long] = ACTIONS(3035), - [anon_sym_short] = ACTIONS(3035), - [anon_sym_LBRACK] = ACTIONS(3035), - [anon_sym_static] = ACTIONS(3035), - [anon_sym_register] = ACTIONS(3035), - [anon_sym_inline] = ACTIONS(3035), - [anon_sym___inline] = ACTIONS(3035), - [anon_sym___inline__] = ACTIONS(3035), - [anon_sym___forceinline] = ACTIONS(3035), - [anon_sym_thread_local] = ACTIONS(3035), - [anon_sym___thread] = ACTIONS(3035), - [anon_sym_const] = ACTIONS(3035), - [anon_sym_constexpr] = ACTIONS(3035), - [anon_sym_volatile] = ACTIONS(3035), - [anon_sym_restrict] = ACTIONS(3035), - [anon_sym___restrict__] = ACTIONS(3035), - [anon_sym__Atomic] = ACTIONS(3035), - [anon_sym__Noreturn] = ACTIONS(3035), - [anon_sym_noreturn] = ACTIONS(3035), - [anon_sym__Nonnull] = ACTIONS(3035), - [anon_sym_mutable] = ACTIONS(3035), - [anon_sym_constinit] = ACTIONS(3035), - [anon_sym_consteval] = ACTIONS(3035), - [anon_sym_alignas] = ACTIONS(3035), - [anon_sym__Alignas] = ACTIONS(3035), - [sym_primitive_type] = ACTIONS(3035), - [anon_sym_enum] = ACTIONS(3035), - [anon_sym_class] = ACTIONS(3035), - [anon_sym_struct] = ACTIONS(3035), - [anon_sym_union] = ACTIONS(3035), - [anon_sym_if] = ACTIONS(3035), - [anon_sym_switch] = ACTIONS(3035), - [anon_sym_case] = ACTIONS(3035), - [anon_sym_default] = ACTIONS(3035), - [anon_sym_while] = ACTIONS(3035), - [anon_sym_do] = ACTIONS(3035), - [anon_sym_for] = ACTIONS(3035), - [anon_sym_return] = ACTIONS(3035), - [anon_sym_break] = ACTIONS(3035), - [anon_sym_continue] = ACTIONS(3035), - [anon_sym_goto] = ACTIONS(3035), - [anon_sym___try] = ACTIONS(3035), - [anon_sym___leave] = ACTIONS(3035), - [anon_sym_not] = ACTIONS(3035), - [anon_sym_compl] = ACTIONS(3035), - [anon_sym_DASH_DASH] = ACTIONS(3037), - [anon_sym_PLUS_PLUS] = ACTIONS(3037), - [anon_sym_sizeof] = ACTIONS(3035), - [anon_sym___alignof__] = ACTIONS(3035), - [anon_sym___alignof] = ACTIONS(3035), - [anon_sym__alignof] = ACTIONS(3035), - [anon_sym_alignof] = ACTIONS(3035), - [anon_sym__Alignof] = ACTIONS(3035), - [anon_sym_offsetof] = ACTIONS(3035), - [anon_sym__Generic] = ACTIONS(3035), - [anon_sym_asm] = ACTIONS(3035), - [anon_sym___asm__] = ACTIONS(3035), - [anon_sym___asm] = ACTIONS(3035), - [sym_number_literal] = ACTIONS(3037), - [anon_sym_L_SQUOTE] = ACTIONS(3037), - [anon_sym_u_SQUOTE] = ACTIONS(3037), - [anon_sym_U_SQUOTE] = ACTIONS(3037), - [anon_sym_u8_SQUOTE] = ACTIONS(3037), - [anon_sym_SQUOTE] = ACTIONS(3037), - [anon_sym_L_DQUOTE] = ACTIONS(3037), - [anon_sym_u_DQUOTE] = ACTIONS(3037), - [anon_sym_U_DQUOTE] = ACTIONS(3037), - [anon_sym_u8_DQUOTE] = ACTIONS(3037), - [anon_sym_DQUOTE] = ACTIONS(3037), - [sym_true] = ACTIONS(3035), - [sym_false] = ACTIONS(3035), - [anon_sym_NULL] = ACTIONS(3035), - [anon_sym_nullptr] = ACTIONS(3035), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3035), - [anon_sym_decltype] = ACTIONS(3035), - [anon_sym_explicit] = ACTIONS(3035), - [anon_sym_typename] = ACTIONS(3035), - [anon_sym_template] = ACTIONS(3035), - [anon_sym_operator] = ACTIONS(3035), - [anon_sym_try] = ACTIONS(3035), - [anon_sym_delete] = ACTIONS(3035), - [anon_sym_throw] = ACTIONS(3035), - [anon_sym_namespace] = ACTIONS(3035), - [anon_sym_static_assert] = ACTIONS(3035), - [anon_sym_concept] = ACTIONS(3035), - [anon_sym_co_return] = ACTIONS(3035), - [anon_sym_co_yield] = ACTIONS(3035), - [anon_sym_R_DQUOTE] = ACTIONS(3037), - [anon_sym_LR_DQUOTE] = ACTIONS(3037), - [anon_sym_uR_DQUOTE] = ACTIONS(3037), - [anon_sym_UR_DQUOTE] = ACTIONS(3037), - [anon_sym_u8R_DQUOTE] = ACTIONS(3037), - [anon_sym_co_await] = ACTIONS(3035), - [anon_sym_new] = ACTIONS(3035), - [anon_sym_requires] = ACTIONS(3035), - [sym_this] = ACTIONS(3035), + [350] = { + [ts_builtin_sym_end] = ACTIONS(2689), + [sym_identifier] = ACTIONS(2687), + [aux_sym_preproc_include_token1] = ACTIONS(2687), + [aux_sym_preproc_def_token1] = ACTIONS(2687), + [aux_sym_preproc_if_token1] = ACTIONS(2687), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2687), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2687), + [sym_preproc_directive] = ACTIONS(2687), + [anon_sym_LPAREN2] = ACTIONS(2689), + [anon_sym_BANG] = ACTIONS(2689), + [anon_sym_TILDE] = ACTIONS(2689), + [anon_sym_DASH] = ACTIONS(2687), + [anon_sym_PLUS] = ACTIONS(2687), + [anon_sym_STAR] = ACTIONS(2689), + [anon_sym_AMP_AMP] = ACTIONS(2689), + [anon_sym_AMP] = ACTIONS(2687), + [anon_sym_SEMI] = ACTIONS(2689), + [anon_sym___extension__] = ACTIONS(2687), + [anon_sym_typedef] = ACTIONS(2687), + [anon_sym_virtual] = ACTIONS(2687), + [anon_sym_extern] = ACTIONS(2687), + [anon_sym___attribute__] = ACTIONS(2687), + [anon_sym___attribute] = ACTIONS(2687), + [anon_sym_using] = ACTIONS(2687), + [anon_sym_COLON_COLON] = ACTIONS(2689), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2689), + [anon_sym___declspec] = ACTIONS(2687), + [anon_sym___based] = ACTIONS(2687), + [anon_sym___cdecl] = ACTIONS(2687), + [anon_sym___clrcall] = ACTIONS(2687), + [anon_sym___stdcall] = ACTIONS(2687), + [anon_sym___fastcall] = ACTIONS(2687), + [anon_sym___thiscall] = ACTIONS(2687), + [anon_sym___vectorcall] = ACTIONS(2687), + [anon_sym_LBRACE] = ACTIONS(2689), + [anon_sym_signed] = ACTIONS(2687), + [anon_sym_unsigned] = ACTIONS(2687), + [anon_sym_long] = ACTIONS(2687), + [anon_sym_short] = ACTIONS(2687), + [anon_sym_LBRACK] = ACTIONS(2687), + [anon_sym_static] = ACTIONS(2687), + [anon_sym_register] = ACTIONS(2687), + [anon_sym_inline] = ACTIONS(2687), + [anon_sym___inline] = ACTIONS(2687), + [anon_sym___inline__] = ACTIONS(2687), + [anon_sym___forceinline] = ACTIONS(2687), + [anon_sym_thread_local] = ACTIONS(2687), + [anon_sym___thread] = ACTIONS(2687), + [anon_sym_const] = ACTIONS(2687), + [anon_sym_constexpr] = ACTIONS(2687), + [anon_sym_volatile] = ACTIONS(2687), + [anon_sym_restrict] = ACTIONS(2687), + [anon_sym___restrict__] = ACTIONS(2687), + [anon_sym__Atomic] = ACTIONS(2687), + [anon_sym__Noreturn] = ACTIONS(2687), + [anon_sym_noreturn] = ACTIONS(2687), + [anon_sym__Nonnull] = ACTIONS(2687), + [anon_sym_mutable] = ACTIONS(2687), + [anon_sym_constinit] = ACTIONS(2687), + [anon_sym_consteval] = ACTIONS(2687), + [anon_sym_alignas] = ACTIONS(2687), + [anon_sym__Alignas] = ACTIONS(2687), + [sym_primitive_type] = ACTIONS(2687), + [anon_sym_enum] = ACTIONS(2687), + [anon_sym_class] = ACTIONS(2687), + [anon_sym_struct] = ACTIONS(2687), + [anon_sym_union] = ACTIONS(2687), + [anon_sym_if] = ACTIONS(2687), + [anon_sym_else] = ACTIONS(2687), + [anon_sym_switch] = ACTIONS(2687), + [anon_sym_case] = ACTIONS(2687), + [anon_sym_default] = ACTIONS(2687), + [anon_sym_while] = ACTIONS(2687), + [anon_sym_do] = ACTIONS(2687), + [anon_sym_for] = ACTIONS(2687), + [anon_sym_return] = ACTIONS(2687), + [anon_sym_break] = ACTIONS(2687), + [anon_sym_continue] = ACTIONS(2687), + [anon_sym_goto] = ACTIONS(2687), + [anon_sym___try] = ACTIONS(2687), + [anon_sym___leave] = ACTIONS(2687), + [anon_sym_not] = ACTIONS(2687), + [anon_sym_compl] = ACTIONS(2687), + [anon_sym_DASH_DASH] = ACTIONS(2689), + [anon_sym_PLUS_PLUS] = ACTIONS(2689), + [anon_sym_sizeof] = ACTIONS(2687), + [anon_sym___alignof__] = ACTIONS(2687), + [anon_sym___alignof] = ACTIONS(2687), + [anon_sym__alignof] = ACTIONS(2687), + [anon_sym_alignof] = ACTIONS(2687), + [anon_sym__Alignof] = ACTIONS(2687), + [anon_sym_offsetof] = ACTIONS(2687), + [anon_sym__Generic] = ACTIONS(2687), + [anon_sym_asm] = ACTIONS(2687), + [anon_sym___asm__] = ACTIONS(2687), + [anon_sym___asm] = ACTIONS(2687), + [sym_number_literal] = ACTIONS(2689), + [anon_sym_L_SQUOTE] = ACTIONS(2689), + [anon_sym_u_SQUOTE] = ACTIONS(2689), + [anon_sym_U_SQUOTE] = ACTIONS(2689), + [anon_sym_u8_SQUOTE] = ACTIONS(2689), + [anon_sym_SQUOTE] = ACTIONS(2689), + [anon_sym_L_DQUOTE] = ACTIONS(2689), + [anon_sym_u_DQUOTE] = ACTIONS(2689), + [anon_sym_U_DQUOTE] = ACTIONS(2689), + [anon_sym_u8_DQUOTE] = ACTIONS(2689), + [anon_sym_DQUOTE] = ACTIONS(2689), + [sym_true] = ACTIONS(2687), + [sym_false] = ACTIONS(2687), + [anon_sym_NULL] = ACTIONS(2687), + [anon_sym_nullptr] = ACTIONS(2687), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2687), + [anon_sym_decltype] = ACTIONS(2687), + [anon_sym_explicit] = ACTIONS(2687), + [anon_sym_typename] = ACTIONS(2687), + [anon_sym_export] = ACTIONS(2687), + [anon_sym_module] = ACTIONS(2687), + [anon_sym_import] = ACTIONS(2687), + [anon_sym_template] = ACTIONS(2687), + [anon_sym_operator] = ACTIONS(2687), + [anon_sym_try] = ACTIONS(2687), + [anon_sym_delete] = ACTIONS(2687), + [anon_sym_throw] = ACTIONS(2687), + [anon_sym_namespace] = ACTIONS(2687), + [anon_sym_static_assert] = ACTIONS(2687), + [anon_sym_concept] = ACTIONS(2687), + [anon_sym_co_return] = ACTIONS(2687), + [anon_sym_co_yield] = ACTIONS(2687), + [anon_sym_R_DQUOTE] = ACTIONS(2689), + [anon_sym_LR_DQUOTE] = ACTIONS(2689), + [anon_sym_uR_DQUOTE] = ACTIONS(2689), + [anon_sym_UR_DQUOTE] = ACTIONS(2689), + [anon_sym_u8R_DQUOTE] = ACTIONS(2689), + [anon_sym_co_await] = ACTIONS(2687), + [anon_sym_new] = ACTIONS(2687), + [anon_sym_requires] = ACTIONS(2687), + [sym_this] = ACTIONS(2687), }, - [349] = { + [351] = { [sym_identifier] = ACTIONS(3039), [aux_sym_preproc_include_token1] = ACTIONS(3039), [aux_sym_preproc_def_token1] = ACTIONS(3039), @@ -94066,100 +94633,660 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(3039), [sym_this] = ACTIONS(3039), }, - [350] = { - [sym_expression] = STATE(4413), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(7997), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), + [352] = { [sym_identifier] = ACTIONS(3043), - [anon_sym_LPAREN2] = ACTIONS(1436), + [aux_sym_preproc_include_token1] = ACTIONS(3043), + [aux_sym_preproc_def_token1] = ACTIONS(3043), + [aux_sym_preproc_if_token1] = ACTIONS(3043), + [aux_sym_preproc_if_token2] = ACTIONS(3043), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3043), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3043), + [aux_sym_preproc_else_token1] = ACTIONS(3043), + [aux_sym_preproc_elif_token1] = ACTIONS(3043), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3043), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3043), + [sym_preproc_directive] = ACTIONS(3043), + [anon_sym_LPAREN2] = ACTIONS(3045), + [anon_sym_BANG] = ACTIONS(3045), + [anon_sym_TILDE] = ACTIONS(3045), + [anon_sym_DASH] = ACTIONS(3043), + [anon_sym_PLUS] = ACTIONS(3043), + [anon_sym_STAR] = ACTIONS(3045), + [anon_sym_AMP_AMP] = ACTIONS(3045), + [anon_sym_AMP] = ACTIONS(3043), + [anon_sym_SEMI] = ACTIONS(3045), + [anon_sym___extension__] = ACTIONS(3043), + [anon_sym_typedef] = ACTIONS(3043), + [anon_sym_virtual] = ACTIONS(3043), + [anon_sym_extern] = ACTIONS(3043), + [anon_sym___attribute__] = ACTIONS(3043), + [anon_sym___attribute] = ACTIONS(3043), + [anon_sym_using] = ACTIONS(3043), + [anon_sym_COLON_COLON] = ACTIONS(3045), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3045), + [anon_sym___declspec] = ACTIONS(3043), + [anon_sym___based] = ACTIONS(3043), + [anon_sym___cdecl] = ACTIONS(3043), + [anon_sym___clrcall] = ACTIONS(3043), + [anon_sym___stdcall] = ACTIONS(3043), + [anon_sym___fastcall] = ACTIONS(3043), + [anon_sym___thiscall] = ACTIONS(3043), + [anon_sym___vectorcall] = ACTIONS(3043), + [anon_sym_LBRACE] = ACTIONS(3045), + [anon_sym_signed] = ACTIONS(3043), + [anon_sym_unsigned] = ACTIONS(3043), + [anon_sym_long] = ACTIONS(3043), + [anon_sym_short] = ACTIONS(3043), + [anon_sym_LBRACK] = ACTIONS(3043), + [anon_sym_static] = ACTIONS(3043), + [anon_sym_register] = ACTIONS(3043), + [anon_sym_inline] = ACTIONS(3043), + [anon_sym___inline] = ACTIONS(3043), + [anon_sym___inline__] = ACTIONS(3043), + [anon_sym___forceinline] = ACTIONS(3043), + [anon_sym_thread_local] = ACTIONS(3043), + [anon_sym___thread] = ACTIONS(3043), + [anon_sym_const] = ACTIONS(3043), + [anon_sym_constexpr] = ACTIONS(3043), + [anon_sym_volatile] = ACTIONS(3043), + [anon_sym_restrict] = ACTIONS(3043), + [anon_sym___restrict__] = ACTIONS(3043), + [anon_sym__Atomic] = ACTIONS(3043), + [anon_sym__Noreturn] = ACTIONS(3043), + [anon_sym_noreturn] = ACTIONS(3043), + [anon_sym__Nonnull] = ACTIONS(3043), + [anon_sym_mutable] = ACTIONS(3043), + [anon_sym_constinit] = ACTIONS(3043), + [anon_sym_consteval] = ACTIONS(3043), + [anon_sym_alignas] = ACTIONS(3043), + [anon_sym__Alignas] = ACTIONS(3043), + [sym_primitive_type] = ACTIONS(3043), + [anon_sym_enum] = ACTIONS(3043), + [anon_sym_class] = ACTIONS(3043), + [anon_sym_struct] = ACTIONS(3043), + [anon_sym_union] = ACTIONS(3043), + [anon_sym_if] = ACTIONS(3043), + [anon_sym_switch] = ACTIONS(3043), + [anon_sym_case] = ACTIONS(3043), + [anon_sym_default] = ACTIONS(3043), + [anon_sym_while] = ACTIONS(3043), + [anon_sym_do] = ACTIONS(3043), + [anon_sym_for] = ACTIONS(3043), + [anon_sym_return] = ACTIONS(3043), + [anon_sym_break] = ACTIONS(3043), + [anon_sym_continue] = ACTIONS(3043), + [anon_sym_goto] = ACTIONS(3043), + [anon_sym___try] = ACTIONS(3043), + [anon_sym___leave] = ACTIONS(3043), + [anon_sym_not] = ACTIONS(3043), + [anon_sym_compl] = ACTIONS(3043), + [anon_sym_DASH_DASH] = ACTIONS(3045), + [anon_sym_PLUS_PLUS] = ACTIONS(3045), + [anon_sym_sizeof] = ACTIONS(3043), + [anon_sym___alignof__] = ACTIONS(3043), + [anon_sym___alignof] = ACTIONS(3043), + [anon_sym__alignof] = ACTIONS(3043), + [anon_sym_alignof] = ACTIONS(3043), + [anon_sym__Alignof] = ACTIONS(3043), + [anon_sym_offsetof] = ACTIONS(3043), + [anon_sym__Generic] = ACTIONS(3043), + [anon_sym_asm] = ACTIONS(3043), + [anon_sym___asm__] = ACTIONS(3043), + [anon_sym___asm] = ACTIONS(3043), + [sym_number_literal] = ACTIONS(3045), + [anon_sym_L_SQUOTE] = ACTIONS(3045), + [anon_sym_u_SQUOTE] = ACTIONS(3045), + [anon_sym_U_SQUOTE] = ACTIONS(3045), + [anon_sym_u8_SQUOTE] = ACTIONS(3045), + [anon_sym_SQUOTE] = ACTIONS(3045), + [anon_sym_L_DQUOTE] = ACTIONS(3045), + [anon_sym_u_DQUOTE] = ACTIONS(3045), + [anon_sym_U_DQUOTE] = ACTIONS(3045), + [anon_sym_u8_DQUOTE] = ACTIONS(3045), + [anon_sym_DQUOTE] = ACTIONS(3045), + [sym_true] = ACTIONS(3043), + [sym_false] = ACTIONS(3043), + [anon_sym_NULL] = ACTIONS(3043), + [anon_sym_nullptr] = ACTIONS(3043), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3043), + [anon_sym_decltype] = ACTIONS(3043), + [anon_sym_explicit] = ACTIONS(3043), + [anon_sym_typename] = ACTIONS(3043), + [anon_sym_template] = ACTIONS(3043), + [anon_sym_operator] = ACTIONS(3043), + [anon_sym_try] = ACTIONS(3043), + [anon_sym_delete] = ACTIONS(3043), + [anon_sym_throw] = ACTIONS(3043), + [anon_sym_namespace] = ACTIONS(3043), + [anon_sym_static_assert] = ACTIONS(3043), + [anon_sym_concept] = ACTIONS(3043), + [anon_sym_co_return] = ACTIONS(3043), + [anon_sym_co_yield] = ACTIONS(3043), + [anon_sym_R_DQUOTE] = ACTIONS(3045), + [anon_sym_LR_DQUOTE] = ACTIONS(3045), + [anon_sym_uR_DQUOTE] = ACTIONS(3045), + [anon_sym_UR_DQUOTE] = ACTIONS(3045), + [anon_sym_u8R_DQUOTE] = ACTIONS(3045), + [anon_sym_co_await] = ACTIONS(3043), + [anon_sym_new] = ACTIONS(3043), + [anon_sym_requires] = ACTIONS(3043), + [sym_this] = ACTIONS(3043), + }, + [353] = { + [sym_identifier] = ACTIONS(3047), + [aux_sym_preproc_include_token1] = ACTIONS(3047), + [aux_sym_preproc_def_token1] = ACTIONS(3047), + [aux_sym_preproc_if_token1] = ACTIONS(3047), + [aux_sym_preproc_if_token2] = ACTIONS(3047), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3047), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3047), + [aux_sym_preproc_else_token1] = ACTIONS(3047), + [aux_sym_preproc_elif_token1] = ACTIONS(3047), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3047), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3047), + [sym_preproc_directive] = ACTIONS(3047), + [anon_sym_LPAREN2] = ACTIONS(3049), + [anon_sym_BANG] = ACTIONS(3049), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_DASH] = ACTIONS(3047), + [anon_sym_PLUS] = ACTIONS(3047), + [anon_sym_STAR] = ACTIONS(3049), + [anon_sym_AMP_AMP] = ACTIONS(3049), + [anon_sym_AMP] = ACTIONS(3047), + [anon_sym_SEMI] = ACTIONS(3049), + [anon_sym___extension__] = ACTIONS(3047), + [anon_sym_typedef] = ACTIONS(3047), + [anon_sym_virtual] = ACTIONS(3047), + [anon_sym_extern] = ACTIONS(3047), + [anon_sym___attribute__] = ACTIONS(3047), + [anon_sym___attribute] = ACTIONS(3047), + [anon_sym_using] = ACTIONS(3047), + [anon_sym_COLON_COLON] = ACTIONS(3049), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3049), + [anon_sym___declspec] = ACTIONS(3047), + [anon_sym___based] = ACTIONS(3047), + [anon_sym___cdecl] = ACTIONS(3047), + [anon_sym___clrcall] = ACTIONS(3047), + [anon_sym___stdcall] = ACTIONS(3047), + [anon_sym___fastcall] = ACTIONS(3047), + [anon_sym___thiscall] = ACTIONS(3047), + [anon_sym___vectorcall] = ACTIONS(3047), + [anon_sym_LBRACE] = ACTIONS(3049), + [anon_sym_signed] = ACTIONS(3047), + [anon_sym_unsigned] = ACTIONS(3047), + [anon_sym_long] = ACTIONS(3047), + [anon_sym_short] = ACTIONS(3047), + [anon_sym_LBRACK] = ACTIONS(3047), + [anon_sym_static] = ACTIONS(3047), + [anon_sym_register] = ACTIONS(3047), + [anon_sym_inline] = ACTIONS(3047), + [anon_sym___inline] = ACTIONS(3047), + [anon_sym___inline__] = ACTIONS(3047), + [anon_sym___forceinline] = ACTIONS(3047), + [anon_sym_thread_local] = ACTIONS(3047), + [anon_sym___thread] = ACTIONS(3047), + [anon_sym_const] = ACTIONS(3047), + [anon_sym_constexpr] = ACTIONS(3047), + [anon_sym_volatile] = ACTIONS(3047), + [anon_sym_restrict] = ACTIONS(3047), + [anon_sym___restrict__] = ACTIONS(3047), + [anon_sym__Atomic] = ACTIONS(3047), + [anon_sym__Noreturn] = ACTIONS(3047), + [anon_sym_noreturn] = ACTIONS(3047), + [anon_sym__Nonnull] = ACTIONS(3047), + [anon_sym_mutable] = ACTIONS(3047), + [anon_sym_constinit] = ACTIONS(3047), + [anon_sym_consteval] = ACTIONS(3047), + [anon_sym_alignas] = ACTIONS(3047), + [anon_sym__Alignas] = ACTIONS(3047), + [sym_primitive_type] = ACTIONS(3047), + [anon_sym_enum] = ACTIONS(3047), + [anon_sym_class] = ACTIONS(3047), + [anon_sym_struct] = ACTIONS(3047), + [anon_sym_union] = ACTIONS(3047), + [anon_sym_if] = ACTIONS(3047), + [anon_sym_switch] = ACTIONS(3047), + [anon_sym_case] = ACTIONS(3047), + [anon_sym_default] = ACTIONS(3047), + [anon_sym_while] = ACTIONS(3047), + [anon_sym_do] = ACTIONS(3047), + [anon_sym_for] = ACTIONS(3047), + [anon_sym_return] = ACTIONS(3047), + [anon_sym_break] = ACTIONS(3047), + [anon_sym_continue] = ACTIONS(3047), + [anon_sym_goto] = ACTIONS(3047), + [anon_sym___try] = ACTIONS(3047), + [anon_sym___leave] = ACTIONS(3047), + [anon_sym_not] = ACTIONS(3047), + [anon_sym_compl] = ACTIONS(3047), + [anon_sym_DASH_DASH] = ACTIONS(3049), + [anon_sym_PLUS_PLUS] = ACTIONS(3049), + [anon_sym_sizeof] = ACTIONS(3047), + [anon_sym___alignof__] = ACTIONS(3047), + [anon_sym___alignof] = ACTIONS(3047), + [anon_sym__alignof] = ACTIONS(3047), + [anon_sym_alignof] = ACTIONS(3047), + [anon_sym__Alignof] = ACTIONS(3047), + [anon_sym_offsetof] = ACTIONS(3047), + [anon_sym__Generic] = ACTIONS(3047), + [anon_sym_asm] = ACTIONS(3047), + [anon_sym___asm__] = ACTIONS(3047), + [anon_sym___asm] = ACTIONS(3047), + [sym_number_literal] = ACTIONS(3049), + [anon_sym_L_SQUOTE] = ACTIONS(3049), + [anon_sym_u_SQUOTE] = ACTIONS(3049), + [anon_sym_U_SQUOTE] = ACTIONS(3049), + [anon_sym_u8_SQUOTE] = ACTIONS(3049), + [anon_sym_SQUOTE] = ACTIONS(3049), + [anon_sym_L_DQUOTE] = ACTIONS(3049), + [anon_sym_u_DQUOTE] = ACTIONS(3049), + [anon_sym_U_DQUOTE] = ACTIONS(3049), + [anon_sym_u8_DQUOTE] = ACTIONS(3049), + [anon_sym_DQUOTE] = ACTIONS(3049), + [sym_true] = ACTIONS(3047), + [sym_false] = ACTIONS(3047), + [anon_sym_NULL] = ACTIONS(3047), + [anon_sym_nullptr] = ACTIONS(3047), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3047), + [anon_sym_decltype] = ACTIONS(3047), + [anon_sym_explicit] = ACTIONS(3047), + [anon_sym_typename] = ACTIONS(3047), + [anon_sym_template] = ACTIONS(3047), + [anon_sym_operator] = ACTIONS(3047), + [anon_sym_try] = ACTIONS(3047), + [anon_sym_delete] = ACTIONS(3047), + [anon_sym_throw] = ACTIONS(3047), + [anon_sym_namespace] = ACTIONS(3047), + [anon_sym_static_assert] = ACTIONS(3047), + [anon_sym_concept] = ACTIONS(3047), + [anon_sym_co_return] = ACTIONS(3047), + [anon_sym_co_yield] = ACTIONS(3047), + [anon_sym_R_DQUOTE] = ACTIONS(3049), + [anon_sym_LR_DQUOTE] = ACTIONS(3049), + [anon_sym_uR_DQUOTE] = ACTIONS(3049), + [anon_sym_UR_DQUOTE] = ACTIONS(3049), + [anon_sym_u8R_DQUOTE] = ACTIONS(3049), + [anon_sym_co_await] = ACTIONS(3047), + [anon_sym_new] = ACTIONS(3047), + [anon_sym_requires] = ACTIONS(3047), + [sym_this] = ACTIONS(3047), + }, + [354] = { + [sym_identifier] = ACTIONS(3051), + [aux_sym_preproc_include_token1] = ACTIONS(3051), + [aux_sym_preproc_def_token1] = ACTIONS(3051), + [aux_sym_preproc_if_token1] = ACTIONS(3051), + [aux_sym_preproc_if_token2] = ACTIONS(3051), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3051), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3051), + [aux_sym_preproc_else_token1] = ACTIONS(3051), + [aux_sym_preproc_elif_token1] = ACTIONS(3051), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3051), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3051), + [sym_preproc_directive] = ACTIONS(3051), + [anon_sym_LPAREN2] = ACTIONS(3053), + [anon_sym_BANG] = ACTIONS(3053), + [anon_sym_TILDE] = ACTIONS(3053), + [anon_sym_DASH] = ACTIONS(3051), + [anon_sym_PLUS] = ACTIONS(3051), + [anon_sym_STAR] = ACTIONS(3053), + [anon_sym_AMP_AMP] = ACTIONS(3053), + [anon_sym_AMP] = ACTIONS(3051), + [anon_sym_SEMI] = ACTIONS(3053), + [anon_sym___extension__] = ACTIONS(3051), + [anon_sym_typedef] = ACTIONS(3051), + [anon_sym_virtual] = ACTIONS(3051), + [anon_sym_extern] = ACTIONS(3051), + [anon_sym___attribute__] = ACTIONS(3051), + [anon_sym___attribute] = ACTIONS(3051), + [anon_sym_using] = ACTIONS(3051), + [anon_sym_COLON_COLON] = ACTIONS(3053), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3053), + [anon_sym___declspec] = ACTIONS(3051), + [anon_sym___based] = ACTIONS(3051), + [anon_sym___cdecl] = ACTIONS(3051), + [anon_sym___clrcall] = ACTIONS(3051), + [anon_sym___stdcall] = ACTIONS(3051), + [anon_sym___fastcall] = ACTIONS(3051), + [anon_sym___thiscall] = ACTIONS(3051), + [anon_sym___vectorcall] = ACTIONS(3051), + [anon_sym_LBRACE] = ACTIONS(3053), + [anon_sym_signed] = ACTIONS(3051), + [anon_sym_unsigned] = ACTIONS(3051), + [anon_sym_long] = ACTIONS(3051), + [anon_sym_short] = ACTIONS(3051), + [anon_sym_LBRACK] = ACTIONS(3051), + [anon_sym_static] = ACTIONS(3051), + [anon_sym_register] = ACTIONS(3051), + [anon_sym_inline] = ACTIONS(3051), + [anon_sym___inline] = ACTIONS(3051), + [anon_sym___inline__] = ACTIONS(3051), + [anon_sym___forceinline] = ACTIONS(3051), + [anon_sym_thread_local] = ACTIONS(3051), + [anon_sym___thread] = ACTIONS(3051), + [anon_sym_const] = ACTIONS(3051), + [anon_sym_constexpr] = ACTIONS(3051), + [anon_sym_volatile] = ACTIONS(3051), + [anon_sym_restrict] = ACTIONS(3051), + [anon_sym___restrict__] = ACTIONS(3051), + [anon_sym__Atomic] = ACTIONS(3051), + [anon_sym__Noreturn] = ACTIONS(3051), + [anon_sym_noreturn] = ACTIONS(3051), + [anon_sym__Nonnull] = ACTIONS(3051), + [anon_sym_mutable] = ACTIONS(3051), + [anon_sym_constinit] = ACTIONS(3051), + [anon_sym_consteval] = ACTIONS(3051), + [anon_sym_alignas] = ACTIONS(3051), + [anon_sym__Alignas] = ACTIONS(3051), + [sym_primitive_type] = ACTIONS(3051), + [anon_sym_enum] = ACTIONS(3051), + [anon_sym_class] = ACTIONS(3051), + [anon_sym_struct] = ACTIONS(3051), + [anon_sym_union] = ACTIONS(3051), + [anon_sym_if] = ACTIONS(3051), + [anon_sym_switch] = ACTIONS(3051), + [anon_sym_case] = ACTIONS(3051), + [anon_sym_default] = ACTIONS(3051), + [anon_sym_while] = ACTIONS(3051), + [anon_sym_do] = ACTIONS(3051), + [anon_sym_for] = ACTIONS(3051), + [anon_sym_return] = ACTIONS(3051), + [anon_sym_break] = ACTIONS(3051), + [anon_sym_continue] = ACTIONS(3051), + [anon_sym_goto] = ACTIONS(3051), + [anon_sym___try] = ACTIONS(3051), + [anon_sym___leave] = ACTIONS(3051), + [anon_sym_not] = ACTIONS(3051), + [anon_sym_compl] = ACTIONS(3051), + [anon_sym_DASH_DASH] = ACTIONS(3053), + [anon_sym_PLUS_PLUS] = ACTIONS(3053), + [anon_sym_sizeof] = ACTIONS(3051), + [anon_sym___alignof__] = ACTIONS(3051), + [anon_sym___alignof] = ACTIONS(3051), + [anon_sym__alignof] = ACTIONS(3051), + [anon_sym_alignof] = ACTIONS(3051), + [anon_sym__Alignof] = ACTIONS(3051), + [anon_sym_offsetof] = ACTIONS(3051), + [anon_sym__Generic] = ACTIONS(3051), + [anon_sym_asm] = ACTIONS(3051), + [anon_sym___asm__] = ACTIONS(3051), + [anon_sym___asm] = ACTIONS(3051), + [sym_number_literal] = ACTIONS(3053), + [anon_sym_L_SQUOTE] = ACTIONS(3053), + [anon_sym_u_SQUOTE] = ACTIONS(3053), + [anon_sym_U_SQUOTE] = ACTIONS(3053), + [anon_sym_u8_SQUOTE] = ACTIONS(3053), + [anon_sym_SQUOTE] = ACTIONS(3053), + [anon_sym_L_DQUOTE] = ACTIONS(3053), + [anon_sym_u_DQUOTE] = ACTIONS(3053), + [anon_sym_U_DQUOTE] = ACTIONS(3053), + [anon_sym_u8_DQUOTE] = ACTIONS(3053), + [anon_sym_DQUOTE] = ACTIONS(3053), + [sym_true] = ACTIONS(3051), + [sym_false] = ACTIONS(3051), + [anon_sym_NULL] = ACTIONS(3051), + [anon_sym_nullptr] = ACTIONS(3051), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3051), + [anon_sym_decltype] = ACTIONS(3051), + [anon_sym_explicit] = ACTIONS(3051), + [anon_sym_typename] = ACTIONS(3051), + [anon_sym_template] = ACTIONS(3051), + [anon_sym_operator] = ACTIONS(3051), + [anon_sym_try] = ACTIONS(3051), + [anon_sym_delete] = ACTIONS(3051), + [anon_sym_throw] = ACTIONS(3051), + [anon_sym_namespace] = ACTIONS(3051), + [anon_sym_static_assert] = ACTIONS(3051), + [anon_sym_concept] = ACTIONS(3051), + [anon_sym_co_return] = ACTIONS(3051), + [anon_sym_co_yield] = ACTIONS(3051), + [anon_sym_R_DQUOTE] = ACTIONS(3053), + [anon_sym_LR_DQUOTE] = ACTIONS(3053), + [anon_sym_uR_DQUOTE] = ACTIONS(3053), + [anon_sym_UR_DQUOTE] = ACTIONS(3053), + [anon_sym_u8R_DQUOTE] = ACTIONS(3053), + [anon_sym_co_await] = ACTIONS(3051), + [anon_sym_new] = ACTIONS(3051), + [anon_sym_requires] = ACTIONS(3051), + [sym_this] = ACTIONS(3051), + }, + [355] = { + [ts_builtin_sym_end] = ACTIONS(2749), + [sym_identifier] = ACTIONS(2747), + [aux_sym_preproc_include_token1] = ACTIONS(2747), + [aux_sym_preproc_def_token1] = ACTIONS(2747), + [aux_sym_preproc_if_token1] = ACTIONS(2747), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2747), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2747), + [sym_preproc_directive] = ACTIONS(2747), + [anon_sym_LPAREN2] = ACTIONS(2749), + [anon_sym_BANG] = ACTIONS(2749), + [anon_sym_TILDE] = ACTIONS(2749), + [anon_sym_DASH] = ACTIONS(2747), + [anon_sym_PLUS] = ACTIONS(2747), + [anon_sym_STAR] = ACTIONS(2749), + [anon_sym_AMP_AMP] = ACTIONS(2749), + [anon_sym_AMP] = ACTIONS(2747), + [anon_sym_SEMI] = ACTIONS(2749), + [anon_sym___extension__] = ACTIONS(2747), + [anon_sym_typedef] = ACTIONS(2747), + [anon_sym_virtual] = ACTIONS(2747), + [anon_sym_extern] = ACTIONS(2747), + [anon_sym___attribute__] = ACTIONS(2747), + [anon_sym___attribute] = ACTIONS(2747), + [anon_sym_using] = ACTIONS(2747), + [anon_sym_COLON_COLON] = ACTIONS(2749), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2749), + [anon_sym___declspec] = ACTIONS(2747), + [anon_sym___based] = ACTIONS(2747), + [anon_sym___cdecl] = ACTIONS(2747), + [anon_sym___clrcall] = ACTIONS(2747), + [anon_sym___stdcall] = ACTIONS(2747), + [anon_sym___fastcall] = ACTIONS(2747), + [anon_sym___thiscall] = ACTIONS(2747), + [anon_sym___vectorcall] = ACTIONS(2747), + [anon_sym_LBRACE] = ACTIONS(2749), + [anon_sym_signed] = ACTIONS(2747), + [anon_sym_unsigned] = ACTIONS(2747), + [anon_sym_long] = ACTIONS(2747), + [anon_sym_short] = ACTIONS(2747), + [anon_sym_LBRACK] = ACTIONS(2747), + [anon_sym_static] = ACTIONS(2747), + [anon_sym_register] = ACTIONS(2747), + [anon_sym_inline] = ACTIONS(2747), + [anon_sym___inline] = ACTIONS(2747), + [anon_sym___inline__] = ACTIONS(2747), + [anon_sym___forceinline] = ACTIONS(2747), + [anon_sym_thread_local] = ACTIONS(2747), + [anon_sym___thread] = ACTIONS(2747), + [anon_sym_const] = ACTIONS(2747), + [anon_sym_constexpr] = ACTIONS(2747), + [anon_sym_volatile] = ACTIONS(2747), + [anon_sym_restrict] = ACTIONS(2747), + [anon_sym___restrict__] = ACTIONS(2747), + [anon_sym__Atomic] = ACTIONS(2747), + [anon_sym__Noreturn] = ACTIONS(2747), + [anon_sym_noreturn] = ACTIONS(2747), + [anon_sym__Nonnull] = ACTIONS(2747), + [anon_sym_mutable] = ACTIONS(2747), + [anon_sym_constinit] = ACTIONS(2747), + [anon_sym_consteval] = ACTIONS(2747), + [anon_sym_alignas] = ACTIONS(2747), + [anon_sym__Alignas] = ACTIONS(2747), + [sym_primitive_type] = ACTIONS(2747), + [anon_sym_enum] = ACTIONS(2747), + [anon_sym_class] = ACTIONS(2747), + [anon_sym_struct] = ACTIONS(2747), + [anon_sym_union] = ACTIONS(2747), + [anon_sym_if] = ACTIONS(2747), + [anon_sym_else] = ACTIONS(2747), + [anon_sym_switch] = ACTIONS(2747), + [anon_sym_case] = ACTIONS(2747), + [anon_sym_default] = ACTIONS(2747), + [anon_sym_while] = ACTIONS(2747), + [anon_sym_do] = ACTIONS(2747), + [anon_sym_for] = ACTIONS(2747), + [anon_sym_return] = ACTIONS(2747), + [anon_sym_break] = ACTIONS(2747), + [anon_sym_continue] = ACTIONS(2747), + [anon_sym_goto] = ACTIONS(2747), + [anon_sym___try] = ACTIONS(2747), + [anon_sym___leave] = ACTIONS(2747), + [anon_sym_not] = ACTIONS(2747), + [anon_sym_compl] = ACTIONS(2747), + [anon_sym_DASH_DASH] = ACTIONS(2749), + [anon_sym_PLUS_PLUS] = ACTIONS(2749), + [anon_sym_sizeof] = ACTIONS(2747), + [anon_sym___alignof__] = ACTIONS(2747), + [anon_sym___alignof] = ACTIONS(2747), + [anon_sym__alignof] = ACTIONS(2747), + [anon_sym_alignof] = ACTIONS(2747), + [anon_sym__Alignof] = ACTIONS(2747), + [anon_sym_offsetof] = ACTIONS(2747), + [anon_sym__Generic] = ACTIONS(2747), + [anon_sym_asm] = ACTIONS(2747), + [anon_sym___asm__] = ACTIONS(2747), + [anon_sym___asm] = ACTIONS(2747), + [sym_number_literal] = ACTIONS(2749), + [anon_sym_L_SQUOTE] = ACTIONS(2749), + [anon_sym_u_SQUOTE] = ACTIONS(2749), + [anon_sym_U_SQUOTE] = ACTIONS(2749), + [anon_sym_u8_SQUOTE] = ACTIONS(2749), + [anon_sym_SQUOTE] = ACTIONS(2749), + [anon_sym_L_DQUOTE] = ACTIONS(2749), + [anon_sym_u_DQUOTE] = ACTIONS(2749), + [anon_sym_U_DQUOTE] = ACTIONS(2749), + [anon_sym_u8_DQUOTE] = ACTIONS(2749), + [anon_sym_DQUOTE] = ACTIONS(2749), + [sym_true] = ACTIONS(2747), + [sym_false] = ACTIONS(2747), + [anon_sym_NULL] = ACTIONS(2747), + [anon_sym_nullptr] = ACTIONS(2747), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2747), + [anon_sym_decltype] = ACTIONS(2747), + [anon_sym_explicit] = ACTIONS(2747), + [anon_sym_typename] = ACTIONS(2747), + [anon_sym_export] = ACTIONS(2747), + [anon_sym_module] = ACTIONS(2747), + [anon_sym_import] = ACTIONS(2747), + [anon_sym_template] = ACTIONS(2747), + [anon_sym_operator] = ACTIONS(2747), + [anon_sym_try] = ACTIONS(2747), + [anon_sym_delete] = ACTIONS(2747), + [anon_sym_throw] = ACTIONS(2747), + [anon_sym_namespace] = ACTIONS(2747), + [anon_sym_static_assert] = ACTIONS(2747), + [anon_sym_concept] = ACTIONS(2747), + [anon_sym_co_return] = ACTIONS(2747), + [anon_sym_co_yield] = ACTIONS(2747), + [anon_sym_R_DQUOTE] = ACTIONS(2749), + [anon_sym_LR_DQUOTE] = ACTIONS(2749), + [anon_sym_uR_DQUOTE] = ACTIONS(2749), + [anon_sym_UR_DQUOTE] = ACTIONS(2749), + [anon_sym_u8R_DQUOTE] = ACTIONS(2749), + [anon_sym_co_await] = ACTIONS(2747), + [anon_sym_new] = ACTIONS(2747), + [anon_sym_requires] = ACTIONS(2747), + [sym_this] = ACTIONS(2747), + }, + [356] = { + [sym_expression] = STATE(4630), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8402), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3055), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(3046), - [anon_sym___extension__] = ACTIONS(3048), - [anon_sym_virtual] = ACTIONS(2731), - [anon_sym_extern] = ACTIONS(2731), - [anon_sym___attribute__] = ACTIONS(2731), - [anon_sym___attribute] = ACTIONS(2731), - [anon_sym_COLON_COLON] = ACTIONS(3051), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2733), - [anon_sym___declspec] = ACTIONS(2731), - [anon_sym_signed] = ACTIONS(2731), - [anon_sym_unsigned] = ACTIONS(2731), - [anon_sym_long] = ACTIONS(2731), - [anon_sym_short] = ACTIONS(2731), - [anon_sym_LBRACK] = ACTIONS(1450), - [anon_sym_static] = ACTIONS(2731), - [anon_sym_register] = ACTIONS(2731), - [anon_sym_inline] = ACTIONS(2731), - [anon_sym___inline] = ACTIONS(2731), - [anon_sym___inline__] = ACTIONS(2731), - [anon_sym___forceinline] = ACTIONS(2731), - [anon_sym_thread_local] = ACTIONS(2731), - [anon_sym___thread] = ACTIONS(2731), - [anon_sym_const] = ACTIONS(2731), - [anon_sym_constexpr] = ACTIONS(2731), - [anon_sym_volatile] = ACTIONS(2731), - [anon_sym_restrict] = ACTIONS(2731), - [anon_sym___restrict__] = ACTIONS(2731), - [anon_sym__Atomic] = ACTIONS(2731), - [anon_sym__Noreturn] = ACTIONS(2731), - [anon_sym_noreturn] = ACTIONS(2731), - [anon_sym__Nonnull] = ACTIONS(2731), - [anon_sym_mutable] = ACTIONS(2731), - [anon_sym_constinit] = ACTIONS(2731), - [anon_sym_consteval] = ACTIONS(2731), - [anon_sym_alignas] = ACTIONS(2731), - [anon_sym__Alignas] = ACTIONS(2731), - [sym_primitive_type] = ACTIONS(3054), - [anon_sym_enum] = ACTIONS(2731), - [anon_sym_class] = ACTIONS(2731), - [anon_sym_struct] = ACTIONS(2731), - [anon_sym_union] = ACTIONS(2731), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(3058), + [anon_sym___extension__] = ACTIONS(3060), + [anon_sym_virtual] = ACTIONS(2725), + [anon_sym_extern] = ACTIONS(2725), + [anon_sym___attribute__] = ACTIONS(2725), + [anon_sym___attribute] = ACTIONS(2725), + [anon_sym_COLON_COLON] = ACTIONS(3063), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2727), + [anon_sym___declspec] = ACTIONS(2725), + [anon_sym_signed] = ACTIONS(2725), + [anon_sym_unsigned] = ACTIONS(2725), + [anon_sym_long] = ACTIONS(2725), + [anon_sym_short] = ACTIONS(2725), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_static] = ACTIONS(2725), + [anon_sym_register] = ACTIONS(2725), + [anon_sym_inline] = ACTIONS(2725), + [anon_sym___inline] = ACTIONS(2725), + [anon_sym___inline__] = ACTIONS(2725), + [anon_sym___forceinline] = ACTIONS(2725), + [anon_sym_thread_local] = ACTIONS(2725), + [anon_sym___thread] = ACTIONS(2725), + [anon_sym_const] = ACTIONS(2725), + [anon_sym_constexpr] = ACTIONS(2725), + [anon_sym_volatile] = ACTIONS(2725), + [anon_sym_restrict] = ACTIONS(2725), + [anon_sym___restrict__] = ACTIONS(2725), + [anon_sym__Atomic] = ACTIONS(2725), + [anon_sym__Noreturn] = ACTIONS(2725), + [anon_sym_noreturn] = ACTIONS(2725), + [anon_sym__Nonnull] = ACTIONS(2725), + [anon_sym_mutable] = ACTIONS(2725), + [anon_sym_constinit] = ACTIONS(2725), + [anon_sym_consteval] = ACTIONS(2725), + [anon_sym_alignas] = ACTIONS(2725), + [anon_sym__Alignas] = ACTIONS(2725), + [sym_primitive_type] = ACTIONS(3066), + [anon_sym_enum] = ACTIONS(2725), + [anon_sym_class] = ACTIONS(2725), + [anon_sym_struct] = ACTIONS(2725), + [anon_sym_union] = ACTIONS(2725), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -94191,10 +95318,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(123), [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2731), - [anon_sym_decltype] = ACTIONS(3057), - [anon_sym_typename] = ACTIONS(2731), - [anon_sym_template] = ACTIONS(3060), + [sym_auto] = ACTIONS(2725), + [anon_sym_decltype] = ACTIONS(3069), + [anon_sym_typename] = ACTIONS(2725), + [anon_sym_template] = ACTIONS(3072), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -94206,707 +95333,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [351] = { - [sym_identifier] = ACTIONS(3063), - [aux_sym_preproc_include_token1] = ACTIONS(3063), - [aux_sym_preproc_def_token1] = ACTIONS(3063), - [aux_sym_preproc_if_token1] = ACTIONS(3063), - [aux_sym_preproc_if_token2] = ACTIONS(3063), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3063), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3063), - [aux_sym_preproc_else_token1] = ACTIONS(3063), - [aux_sym_preproc_elif_token1] = ACTIONS(3063), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3063), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3063), - [sym_preproc_directive] = ACTIONS(3063), - [anon_sym_LPAREN2] = ACTIONS(3065), - [anon_sym_BANG] = ACTIONS(3065), - [anon_sym_TILDE] = ACTIONS(3065), - [anon_sym_DASH] = ACTIONS(3063), - [anon_sym_PLUS] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3065), - [anon_sym_AMP_AMP] = ACTIONS(3065), - [anon_sym_AMP] = ACTIONS(3063), - [anon_sym_SEMI] = ACTIONS(3065), - [anon_sym___extension__] = ACTIONS(3063), - [anon_sym_typedef] = ACTIONS(3063), - [anon_sym_virtual] = ACTIONS(3063), - [anon_sym_extern] = ACTIONS(3063), - [anon_sym___attribute__] = ACTIONS(3063), - [anon_sym___attribute] = ACTIONS(3063), - [anon_sym_using] = ACTIONS(3063), - [anon_sym_COLON_COLON] = ACTIONS(3065), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3065), - [anon_sym___declspec] = ACTIONS(3063), - [anon_sym___based] = ACTIONS(3063), - [anon_sym___cdecl] = ACTIONS(3063), - [anon_sym___clrcall] = ACTIONS(3063), - [anon_sym___stdcall] = ACTIONS(3063), - [anon_sym___fastcall] = ACTIONS(3063), - [anon_sym___thiscall] = ACTIONS(3063), - [anon_sym___vectorcall] = ACTIONS(3063), - [anon_sym_LBRACE] = ACTIONS(3065), - [anon_sym_signed] = ACTIONS(3063), - [anon_sym_unsigned] = ACTIONS(3063), - [anon_sym_long] = ACTIONS(3063), - [anon_sym_short] = ACTIONS(3063), - [anon_sym_LBRACK] = ACTIONS(3063), - [anon_sym_static] = ACTIONS(3063), - [anon_sym_register] = ACTIONS(3063), - [anon_sym_inline] = ACTIONS(3063), - [anon_sym___inline] = ACTIONS(3063), - [anon_sym___inline__] = ACTIONS(3063), - [anon_sym___forceinline] = ACTIONS(3063), - [anon_sym_thread_local] = ACTIONS(3063), - [anon_sym___thread] = ACTIONS(3063), - [anon_sym_const] = ACTIONS(3063), - [anon_sym_constexpr] = ACTIONS(3063), - [anon_sym_volatile] = ACTIONS(3063), - [anon_sym_restrict] = ACTIONS(3063), - [anon_sym___restrict__] = ACTIONS(3063), - [anon_sym__Atomic] = ACTIONS(3063), - [anon_sym__Noreturn] = ACTIONS(3063), - [anon_sym_noreturn] = ACTIONS(3063), - [anon_sym__Nonnull] = ACTIONS(3063), - [anon_sym_mutable] = ACTIONS(3063), - [anon_sym_constinit] = ACTIONS(3063), - [anon_sym_consteval] = ACTIONS(3063), - [anon_sym_alignas] = ACTIONS(3063), - [anon_sym__Alignas] = ACTIONS(3063), - [sym_primitive_type] = ACTIONS(3063), - [anon_sym_enum] = ACTIONS(3063), - [anon_sym_class] = ACTIONS(3063), - [anon_sym_struct] = ACTIONS(3063), - [anon_sym_union] = ACTIONS(3063), - [anon_sym_if] = ACTIONS(3063), - [anon_sym_switch] = ACTIONS(3063), - [anon_sym_case] = ACTIONS(3063), - [anon_sym_default] = ACTIONS(3063), - [anon_sym_while] = ACTIONS(3063), - [anon_sym_do] = ACTIONS(3063), - [anon_sym_for] = ACTIONS(3063), - [anon_sym_return] = ACTIONS(3063), - [anon_sym_break] = ACTIONS(3063), - [anon_sym_continue] = ACTIONS(3063), - [anon_sym_goto] = ACTIONS(3063), - [anon_sym___try] = ACTIONS(3063), - [anon_sym___leave] = ACTIONS(3063), - [anon_sym_not] = ACTIONS(3063), - [anon_sym_compl] = ACTIONS(3063), - [anon_sym_DASH_DASH] = ACTIONS(3065), - [anon_sym_PLUS_PLUS] = ACTIONS(3065), - [anon_sym_sizeof] = ACTIONS(3063), - [anon_sym___alignof__] = ACTIONS(3063), - [anon_sym___alignof] = ACTIONS(3063), - [anon_sym__alignof] = ACTIONS(3063), - [anon_sym_alignof] = ACTIONS(3063), - [anon_sym__Alignof] = ACTIONS(3063), - [anon_sym_offsetof] = ACTIONS(3063), - [anon_sym__Generic] = ACTIONS(3063), - [anon_sym_asm] = ACTIONS(3063), - [anon_sym___asm__] = ACTIONS(3063), - [anon_sym___asm] = ACTIONS(3063), - [sym_number_literal] = ACTIONS(3065), - [anon_sym_L_SQUOTE] = ACTIONS(3065), - [anon_sym_u_SQUOTE] = ACTIONS(3065), - [anon_sym_U_SQUOTE] = ACTIONS(3065), - [anon_sym_u8_SQUOTE] = ACTIONS(3065), - [anon_sym_SQUOTE] = ACTIONS(3065), - [anon_sym_L_DQUOTE] = ACTIONS(3065), - [anon_sym_u_DQUOTE] = ACTIONS(3065), - [anon_sym_U_DQUOTE] = ACTIONS(3065), - [anon_sym_u8_DQUOTE] = ACTIONS(3065), - [anon_sym_DQUOTE] = ACTIONS(3065), - [sym_true] = ACTIONS(3063), - [sym_false] = ACTIONS(3063), - [anon_sym_NULL] = ACTIONS(3063), - [anon_sym_nullptr] = ACTIONS(3063), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3063), - [anon_sym_decltype] = ACTIONS(3063), - [anon_sym_explicit] = ACTIONS(3063), - [anon_sym_typename] = ACTIONS(3063), - [anon_sym_template] = ACTIONS(3063), - [anon_sym_operator] = ACTIONS(3063), - [anon_sym_try] = ACTIONS(3063), - [anon_sym_delete] = ACTIONS(3063), - [anon_sym_throw] = ACTIONS(3063), - [anon_sym_namespace] = ACTIONS(3063), - [anon_sym_static_assert] = ACTIONS(3063), - [anon_sym_concept] = ACTIONS(3063), - [anon_sym_co_return] = ACTIONS(3063), - [anon_sym_co_yield] = ACTIONS(3063), - [anon_sym_R_DQUOTE] = ACTIONS(3065), - [anon_sym_LR_DQUOTE] = ACTIONS(3065), - [anon_sym_uR_DQUOTE] = ACTIONS(3065), - [anon_sym_UR_DQUOTE] = ACTIONS(3065), - [anon_sym_u8R_DQUOTE] = ACTIONS(3065), - [anon_sym_co_await] = ACTIONS(3063), - [anon_sym_new] = ACTIONS(3063), - [anon_sym_requires] = ACTIONS(3063), - [sym_this] = ACTIONS(3063), - }, - [352] = { - [sym_identifier] = ACTIONS(3063), - [aux_sym_preproc_include_token1] = ACTIONS(3063), - [aux_sym_preproc_def_token1] = ACTIONS(3063), - [aux_sym_preproc_if_token1] = ACTIONS(3063), - [aux_sym_preproc_if_token2] = ACTIONS(3063), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3063), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3063), - [aux_sym_preproc_else_token1] = ACTIONS(3063), - [aux_sym_preproc_elif_token1] = ACTIONS(3063), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3063), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3063), - [sym_preproc_directive] = ACTIONS(3063), - [anon_sym_LPAREN2] = ACTIONS(3065), - [anon_sym_BANG] = ACTIONS(3065), - [anon_sym_TILDE] = ACTIONS(3065), - [anon_sym_DASH] = ACTIONS(3063), - [anon_sym_PLUS] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3065), - [anon_sym_AMP_AMP] = ACTIONS(3065), - [anon_sym_AMP] = ACTIONS(3063), - [anon_sym_SEMI] = ACTIONS(3065), - [anon_sym___extension__] = ACTIONS(3063), - [anon_sym_typedef] = ACTIONS(3063), - [anon_sym_virtual] = ACTIONS(3063), - [anon_sym_extern] = ACTIONS(3063), - [anon_sym___attribute__] = ACTIONS(3063), - [anon_sym___attribute] = ACTIONS(3063), - [anon_sym_using] = ACTIONS(3063), - [anon_sym_COLON_COLON] = ACTIONS(3065), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3065), - [anon_sym___declspec] = ACTIONS(3063), - [anon_sym___based] = ACTIONS(3063), - [anon_sym___cdecl] = ACTIONS(3063), - [anon_sym___clrcall] = ACTIONS(3063), - [anon_sym___stdcall] = ACTIONS(3063), - [anon_sym___fastcall] = ACTIONS(3063), - [anon_sym___thiscall] = ACTIONS(3063), - [anon_sym___vectorcall] = ACTIONS(3063), - [anon_sym_LBRACE] = ACTIONS(3065), - [anon_sym_signed] = ACTIONS(3063), - [anon_sym_unsigned] = ACTIONS(3063), - [anon_sym_long] = ACTIONS(3063), - [anon_sym_short] = ACTIONS(3063), - [anon_sym_LBRACK] = ACTIONS(3063), - [anon_sym_static] = ACTIONS(3063), - [anon_sym_register] = ACTIONS(3063), - [anon_sym_inline] = ACTIONS(3063), - [anon_sym___inline] = ACTIONS(3063), - [anon_sym___inline__] = ACTIONS(3063), - [anon_sym___forceinline] = ACTIONS(3063), - [anon_sym_thread_local] = ACTIONS(3063), - [anon_sym___thread] = ACTIONS(3063), - [anon_sym_const] = ACTIONS(3063), - [anon_sym_constexpr] = ACTIONS(3063), - [anon_sym_volatile] = ACTIONS(3063), - [anon_sym_restrict] = ACTIONS(3063), - [anon_sym___restrict__] = ACTIONS(3063), - [anon_sym__Atomic] = ACTIONS(3063), - [anon_sym__Noreturn] = ACTIONS(3063), - [anon_sym_noreturn] = ACTIONS(3063), - [anon_sym__Nonnull] = ACTIONS(3063), - [anon_sym_mutable] = ACTIONS(3063), - [anon_sym_constinit] = ACTIONS(3063), - [anon_sym_consteval] = ACTIONS(3063), - [anon_sym_alignas] = ACTIONS(3063), - [anon_sym__Alignas] = ACTIONS(3063), - [sym_primitive_type] = ACTIONS(3063), - [anon_sym_enum] = ACTIONS(3063), - [anon_sym_class] = ACTIONS(3063), - [anon_sym_struct] = ACTIONS(3063), - [anon_sym_union] = ACTIONS(3063), - [anon_sym_if] = ACTIONS(3063), - [anon_sym_switch] = ACTIONS(3063), - [anon_sym_case] = ACTIONS(3063), - [anon_sym_default] = ACTIONS(3063), - [anon_sym_while] = ACTIONS(3063), - [anon_sym_do] = ACTIONS(3063), - [anon_sym_for] = ACTIONS(3063), - [anon_sym_return] = ACTIONS(3063), - [anon_sym_break] = ACTIONS(3063), - [anon_sym_continue] = ACTIONS(3063), - [anon_sym_goto] = ACTIONS(3063), - [anon_sym___try] = ACTIONS(3063), - [anon_sym___leave] = ACTIONS(3063), - [anon_sym_not] = ACTIONS(3063), - [anon_sym_compl] = ACTIONS(3063), - [anon_sym_DASH_DASH] = ACTIONS(3065), - [anon_sym_PLUS_PLUS] = ACTIONS(3065), - [anon_sym_sizeof] = ACTIONS(3063), - [anon_sym___alignof__] = ACTIONS(3063), - [anon_sym___alignof] = ACTIONS(3063), - [anon_sym__alignof] = ACTIONS(3063), - [anon_sym_alignof] = ACTIONS(3063), - [anon_sym__Alignof] = ACTIONS(3063), - [anon_sym_offsetof] = ACTIONS(3063), - [anon_sym__Generic] = ACTIONS(3063), - [anon_sym_asm] = ACTIONS(3063), - [anon_sym___asm__] = ACTIONS(3063), - [anon_sym___asm] = ACTIONS(3063), - [sym_number_literal] = ACTIONS(3065), - [anon_sym_L_SQUOTE] = ACTIONS(3065), - [anon_sym_u_SQUOTE] = ACTIONS(3065), - [anon_sym_U_SQUOTE] = ACTIONS(3065), - [anon_sym_u8_SQUOTE] = ACTIONS(3065), - [anon_sym_SQUOTE] = ACTIONS(3065), - [anon_sym_L_DQUOTE] = ACTIONS(3065), - [anon_sym_u_DQUOTE] = ACTIONS(3065), - [anon_sym_U_DQUOTE] = ACTIONS(3065), - [anon_sym_u8_DQUOTE] = ACTIONS(3065), - [anon_sym_DQUOTE] = ACTIONS(3065), - [sym_true] = ACTIONS(3063), - [sym_false] = ACTIONS(3063), - [anon_sym_NULL] = ACTIONS(3063), - [anon_sym_nullptr] = ACTIONS(3063), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3063), - [anon_sym_decltype] = ACTIONS(3063), - [anon_sym_explicit] = ACTIONS(3063), - [anon_sym_typename] = ACTIONS(3063), - [anon_sym_template] = ACTIONS(3063), - [anon_sym_operator] = ACTIONS(3063), - [anon_sym_try] = ACTIONS(3063), - [anon_sym_delete] = ACTIONS(3063), - [anon_sym_throw] = ACTIONS(3063), - [anon_sym_namespace] = ACTIONS(3063), - [anon_sym_static_assert] = ACTIONS(3063), - [anon_sym_concept] = ACTIONS(3063), - [anon_sym_co_return] = ACTIONS(3063), - [anon_sym_co_yield] = ACTIONS(3063), - [anon_sym_R_DQUOTE] = ACTIONS(3065), - [anon_sym_LR_DQUOTE] = ACTIONS(3065), - [anon_sym_uR_DQUOTE] = ACTIONS(3065), - [anon_sym_UR_DQUOTE] = ACTIONS(3065), - [anon_sym_u8R_DQUOTE] = ACTIONS(3065), - [anon_sym_co_await] = ACTIONS(3063), - [anon_sym_new] = ACTIONS(3063), - [anon_sym_requires] = ACTIONS(3063), - [sym_this] = ACTIONS(3063), - }, - [353] = { - [ts_builtin_sym_end] = ACTIONS(2689), - [sym_identifier] = ACTIONS(2687), - [aux_sym_preproc_include_token1] = ACTIONS(2687), - [aux_sym_preproc_def_token1] = ACTIONS(2687), - [aux_sym_preproc_if_token1] = ACTIONS(2687), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2687), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2687), - [sym_preproc_directive] = ACTIONS(2687), - [anon_sym_LPAREN2] = ACTIONS(2689), - [anon_sym_BANG] = ACTIONS(2689), - [anon_sym_TILDE] = ACTIONS(2689), - [anon_sym_DASH] = ACTIONS(2687), - [anon_sym_PLUS] = ACTIONS(2687), - [anon_sym_STAR] = ACTIONS(2689), - [anon_sym_AMP_AMP] = ACTIONS(2689), - [anon_sym_AMP] = ACTIONS(2687), - [anon_sym_SEMI] = ACTIONS(2689), - [anon_sym___extension__] = ACTIONS(2687), - [anon_sym_typedef] = ACTIONS(2687), - [anon_sym_virtual] = ACTIONS(2687), - [anon_sym_extern] = ACTIONS(2687), - [anon_sym___attribute__] = ACTIONS(2687), - [anon_sym___attribute] = ACTIONS(2687), - [anon_sym_using] = ACTIONS(2687), - [anon_sym_COLON_COLON] = ACTIONS(2689), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2689), - [anon_sym___declspec] = ACTIONS(2687), - [anon_sym___based] = ACTIONS(2687), - [anon_sym___cdecl] = ACTIONS(2687), - [anon_sym___clrcall] = ACTIONS(2687), - [anon_sym___stdcall] = ACTIONS(2687), - [anon_sym___fastcall] = ACTIONS(2687), - [anon_sym___thiscall] = ACTIONS(2687), - [anon_sym___vectorcall] = ACTIONS(2687), - [anon_sym_LBRACE] = ACTIONS(2689), - [anon_sym_signed] = ACTIONS(2687), - [anon_sym_unsigned] = ACTIONS(2687), - [anon_sym_long] = ACTIONS(2687), - [anon_sym_short] = ACTIONS(2687), - [anon_sym_LBRACK] = ACTIONS(2687), - [anon_sym_static] = ACTIONS(2687), - [anon_sym_register] = ACTIONS(2687), - [anon_sym_inline] = ACTIONS(2687), - [anon_sym___inline] = ACTIONS(2687), - [anon_sym___inline__] = ACTIONS(2687), - [anon_sym___forceinline] = ACTIONS(2687), - [anon_sym_thread_local] = ACTIONS(2687), - [anon_sym___thread] = ACTIONS(2687), - [anon_sym_const] = ACTIONS(2687), - [anon_sym_constexpr] = ACTIONS(2687), - [anon_sym_volatile] = ACTIONS(2687), - [anon_sym_restrict] = ACTIONS(2687), - [anon_sym___restrict__] = ACTIONS(2687), - [anon_sym__Atomic] = ACTIONS(2687), - [anon_sym__Noreturn] = ACTIONS(2687), - [anon_sym_noreturn] = ACTIONS(2687), - [anon_sym__Nonnull] = ACTIONS(2687), - [anon_sym_mutable] = ACTIONS(2687), - [anon_sym_constinit] = ACTIONS(2687), - [anon_sym_consteval] = ACTIONS(2687), - [anon_sym_alignas] = ACTIONS(2687), - [anon_sym__Alignas] = ACTIONS(2687), - [sym_primitive_type] = ACTIONS(2687), - [anon_sym_enum] = ACTIONS(2687), - [anon_sym_class] = ACTIONS(2687), - [anon_sym_struct] = ACTIONS(2687), - [anon_sym_union] = ACTIONS(2687), - [anon_sym_if] = ACTIONS(2687), - [anon_sym_else] = ACTIONS(2687), - [anon_sym_switch] = ACTIONS(2687), - [anon_sym_case] = ACTIONS(2687), - [anon_sym_default] = ACTIONS(2687), - [anon_sym_while] = ACTIONS(2687), - [anon_sym_do] = ACTIONS(2687), - [anon_sym_for] = ACTIONS(2687), - [anon_sym_return] = ACTIONS(2687), - [anon_sym_break] = ACTIONS(2687), - [anon_sym_continue] = ACTIONS(2687), - [anon_sym_goto] = ACTIONS(2687), - [anon_sym___try] = ACTIONS(2687), - [anon_sym___leave] = ACTIONS(2687), - [anon_sym_not] = ACTIONS(2687), - [anon_sym_compl] = ACTIONS(2687), - [anon_sym_DASH_DASH] = ACTIONS(2689), - [anon_sym_PLUS_PLUS] = ACTIONS(2689), - [anon_sym_sizeof] = ACTIONS(2687), - [anon_sym___alignof__] = ACTIONS(2687), - [anon_sym___alignof] = ACTIONS(2687), - [anon_sym__alignof] = ACTIONS(2687), - [anon_sym_alignof] = ACTIONS(2687), - [anon_sym__Alignof] = ACTIONS(2687), - [anon_sym_offsetof] = ACTIONS(2687), - [anon_sym__Generic] = ACTIONS(2687), - [anon_sym_asm] = ACTIONS(2687), - [anon_sym___asm__] = ACTIONS(2687), - [anon_sym___asm] = ACTIONS(2687), - [sym_number_literal] = ACTIONS(2689), - [anon_sym_L_SQUOTE] = ACTIONS(2689), - [anon_sym_u_SQUOTE] = ACTIONS(2689), - [anon_sym_U_SQUOTE] = ACTIONS(2689), - [anon_sym_u8_SQUOTE] = ACTIONS(2689), - [anon_sym_SQUOTE] = ACTIONS(2689), - [anon_sym_L_DQUOTE] = ACTIONS(2689), - [anon_sym_u_DQUOTE] = ACTIONS(2689), - [anon_sym_U_DQUOTE] = ACTIONS(2689), - [anon_sym_u8_DQUOTE] = ACTIONS(2689), - [anon_sym_DQUOTE] = ACTIONS(2689), - [sym_true] = ACTIONS(2687), - [sym_false] = ACTIONS(2687), - [anon_sym_NULL] = ACTIONS(2687), - [anon_sym_nullptr] = ACTIONS(2687), + [357] = { + [sym_identifier] = ACTIONS(3075), + [aux_sym_preproc_include_token1] = ACTIONS(3075), + [aux_sym_preproc_def_token1] = ACTIONS(3075), + [aux_sym_preproc_if_token1] = ACTIONS(3075), + [aux_sym_preproc_if_token2] = ACTIONS(3075), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3075), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3075), + [aux_sym_preproc_else_token1] = ACTIONS(3075), + [aux_sym_preproc_elif_token1] = ACTIONS(3075), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3075), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3075), + [sym_preproc_directive] = ACTIONS(3075), + [anon_sym_LPAREN2] = ACTIONS(3077), + [anon_sym_BANG] = ACTIONS(3077), + [anon_sym_TILDE] = ACTIONS(3077), + [anon_sym_DASH] = ACTIONS(3075), + [anon_sym_PLUS] = ACTIONS(3075), + [anon_sym_STAR] = ACTIONS(3077), + [anon_sym_AMP_AMP] = ACTIONS(3077), + [anon_sym_AMP] = ACTIONS(3075), + [anon_sym_SEMI] = ACTIONS(3077), + [anon_sym___extension__] = ACTIONS(3075), + [anon_sym_typedef] = ACTIONS(3075), + [anon_sym_virtual] = ACTIONS(3075), + [anon_sym_extern] = ACTIONS(3075), + [anon_sym___attribute__] = ACTIONS(3075), + [anon_sym___attribute] = ACTIONS(3075), + [anon_sym_using] = ACTIONS(3075), + [anon_sym_COLON_COLON] = ACTIONS(3077), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3077), + [anon_sym___declspec] = ACTIONS(3075), + [anon_sym___based] = ACTIONS(3075), + [anon_sym___cdecl] = ACTIONS(3075), + [anon_sym___clrcall] = ACTIONS(3075), + [anon_sym___stdcall] = ACTIONS(3075), + [anon_sym___fastcall] = ACTIONS(3075), + [anon_sym___thiscall] = ACTIONS(3075), + [anon_sym___vectorcall] = ACTIONS(3075), + [anon_sym_LBRACE] = ACTIONS(3077), + [anon_sym_signed] = ACTIONS(3075), + [anon_sym_unsigned] = ACTIONS(3075), + [anon_sym_long] = ACTIONS(3075), + [anon_sym_short] = ACTIONS(3075), + [anon_sym_LBRACK] = ACTIONS(3075), + [anon_sym_static] = ACTIONS(3075), + [anon_sym_register] = ACTIONS(3075), + [anon_sym_inline] = ACTIONS(3075), + [anon_sym___inline] = ACTIONS(3075), + [anon_sym___inline__] = ACTIONS(3075), + [anon_sym___forceinline] = ACTIONS(3075), + [anon_sym_thread_local] = ACTIONS(3075), + [anon_sym___thread] = ACTIONS(3075), + [anon_sym_const] = ACTIONS(3075), + [anon_sym_constexpr] = ACTIONS(3075), + [anon_sym_volatile] = ACTIONS(3075), + [anon_sym_restrict] = ACTIONS(3075), + [anon_sym___restrict__] = ACTIONS(3075), + [anon_sym__Atomic] = ACTIONS(3075), + [anon_sym__Noreturn] = ACTIONS(3075), + [anon_sym_noreturn] = ACTIONS(3075), + [anon_sym__Nonnull] = ACTIONS(3075), + [anon_sym_mutable] = ACTIONS(3075), + [anon_sym_constinit] = ACTIONS(3075), + [anon_sym_consteval] = ACTIONS(3075), + [anon_sym_alignas] = ACTIONS(3075), + [anon_sym__Alignas] = ACTIONS(3075), + [sym_primitive_type] = ACTIONS(3075), + [anon_sym_enum] = ACTIONS(3075), + [anon_sym_class] = ACTIONS(3075), + [anon_sym_struct] = ACTIONS(3075), + [anon_sym_union] = ACTIONS(3075), + [anon_sym_if] = ACTIONS(3075), + [anon_sym_switch] = ACTIONS(3075), + [anon_sym_case] = ACTIONS(3075), + [anon_sym_default] = ACTIONS(3075), + [anon_sym_while] = ACTIONS(3075), + [anon_sym_do] = ACTIONS(3075), + [anon_sym_for] = ACTIONS(3075), + [anon_sym_return] = ACTIONS(3075), + [anon_sym_break] = ACTIONS(3075), + [anon_sym_continue] = ACTIONS(3075), + [anon_sym_goto] = ACTIONS(3075), + [anon_sym___try] = ACTIONS(3075), + [anon_sym___leave] = ACTIONS(3075), + [anon_sym_not] = ACTIONS(3075), + [anon_sym_compl] = ACTIONS(3075), + [anon_sym_DASH_DASH] = ACTIONS(3077), + [anon_sym_PLUS_PLUS] = ACTIONS(3077), + [anon_sym_sizeof] = ACTIONS(3075), + [anon_sym___alignof__] = ACTIONS(3075), + [anon_sym___alignof] = ACTIONS(3075), + [anon_sym__alignof] = ACTIONS(3075), + [anon_sym_alignof] = ACTIONS(3075), + [anon_sym__Alignof] = ACTIONS(3075), + [anon_sym_offsetof] = ACTIONS(3075), + [anon_sym__Generic] = ACTIONS(3075), + [anon_sym_asm] = ACTIONS(3075), + [anon_sym___asm__] = ACTIONS(3075), + [anon_sym___asm] = ACTIONS(3075), + [sym_number_literal] = ACTIONS(3077), + [anon_sym_L_SQUOTE] = ACTIONS(3077), + [anon_sym_u_SQUOTE] = ACTIONS(3077), + [anon_sym_U_SQUOTE] = ACTIONS(3077), + [anon_sym_u8_SQUOTE] = ACTIONS(3077), + [anon_sym_SQUOTE] = ACTIONS(3077), + [anon_sym_L_DQUOTE] = ACTIONS(3077), + [anon_sym_u_DQUOTE] = ACTIONS(3077), + [anon_sym_U_DQUOTE] = ACTIONS(3077), + [anon_sym_u8_DQUOTE] = ACTIONS(3077), + [anon_sym_DQUOTE] = ACTIONS(3077), + [sym_true] = ACTIONS(3075), + [sym_false] = ACTIONS(3075), + [anon_sym_NULL] = ACTIONS(3075), + [anon_sym_nullptr] = ACTIONS(3075), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2687), - [anon_sym_decltype] = ACTIONS(2687), - [anon_sym_explicit] = ACTIONS(2687), - [anon_sym_typename] = ACTIONS(2687), - [anon_sym_export] = ACTIONS(2687), - [anon_sym_module] = ACTIONS(2687), - [anon_sym_import] = ACTIONS(2687), - [anon_sym_template] = ACTIONS(2687), - [anon_sym_operator] = ACTIONS(2687), - [anon_sym_try] = ACTIONS(2687), - [anon_sym_delete] = ACTIONS(2687), - [anon_sym_throw] = ACTIONS(2687), - [anon_sym_namespace] = ACTIONS(2687), - [anon_sym_static_assert] = ACTIONS(2687), - [anon_sym_concept] = ACTIONS(2687), - [anon_sym_co_return] = ACTIONS(2687), - [anon_sym_co_yield] = ACTIONS(2687), - [anon_sym_R_DQUOTE] = ACTIONS(2689), - [anon_sym_LR_DQUOTE] = ACTIONS(2689), - [anon_sym_uR_DQUOTE] = ACTIONS(2689), - [anon_sym_UR_DQUOTE] = ACTIONS(2689), - [anon_sym_u8R_DQUOTE] = ACTIONS(2689), - [anon_sym_co_await] = ACTIONS(2687), - [anon_sym_new] = ACTIONS(2687), - [anon_sym_requires] = ACTIONS(2687), - [sym_this] = ACTIONS(2687), - }, - [354] = { - [sym_identifier] = ACTIONS(3067), - [aux_sym_preproc_include_token1] = ACTIONS(3067), - [aux_sym_preproc_def_token1] = ACTIONS(3067), - [aux_sym_preproc_if_token1] = ACTIONS(3067), - [aux_sym_preproc_if_token2] = ACTIONS(3067), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3067), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3067), - [aux_sym_preproc_else_token1] = ACTIONS(3067), - [aux_sym_preproc_elif_token1] = ACTIONS(3067), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3067), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3067), - [sym_preproc_directive] = ACTIONS(3067), - [anon_sym_LPAREN2] = ACTIONS(3069), - [anon_sym_BANG] = ACTIONS(3069), - [anon_sym_TILDE] = ACTIONS(3069), - [anon_sym_DASH] = ACTIONS(3067), - [anon_sym_PLUS] = ACTIONS(3067), - [anon_sym_STAR] = ACTIONS(3069), - [anon_sym_AMP_AMP] = ACTIONS(3069), - [anon_sym_AMP] = ACTIONS(3067), - [anon_sym_SEMI] = ACTIONS(3069), - [anon_sym___extension__] = ACTIONS(3067), - [anon_sym_typedef] = ACTIONS(3067), - [anon_sym_virtual] = ACTIONS(3067), - [anon_sym_extern] = ACTIONS(3067), - [anon_sym___attribute__] = ACTIONS(3067), - [anon_sym___attribute] = ACTIONS(3067), - [anon_sym_using] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(3069), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3069), - [anon_sym___declspec] = ACTIONS(3067), - [anon_sym___based] = ACTIONS(3067), - [anon_sym___cdecl] = ACTIONS(3067), - [anon_sym___clrcall] = ACTIONS(3067), - [anon_sym___stdcall] = ACTIONS(3067), - [anon_sym___fastcall] = ACTIONS(3067), - [anon_sym___thiscall] = ACTIONS(3067), - [anon_sym___vectorcall] = ACTIONS(3067), - [anon_sym_LBRACE] = ACTIONS(3069), - [anon_sym_signed] = ACTIONS(3067), - [anon_sym_unsigned] = ACTIONS(3067), - [anon_sym_long] = ACTIONS(3067), - [anon_sym_short] = ACTIONS(3067), - [anon_sym_LBRACK] = ACTIONS(3067), - [anon_sym_static] = ACTIONS(3067), - [anon_sym_register] = ACTIONS(3067), - [anon_sym_inline] = ACTIONS(3067), - [anon_sym___inline] = ACTIONS(3067), - [anon_sym___inline__] = ACTIONS(3067), - [anon_sym___forceinline] = ACTIONS(3067), - [anon_sym_thread_local] = ACTIONS(3067), - [anon_sym___thread] = ACTIONS(3067), - [anon_sym_const] = ACTIONS(3067), - [anon_sym_constexpr] = ACTIONS(3067), - [anon_sym_volatile] = ACTIONS(3067), - [anon_sym_restrict] = ACTIONS(3067), - [anon_sym___restrict__] = ACTIONS(3067), - [anon_sym__Atomic] = ACTIONS(3067), - [anon_sym__Noreturn] = ACTIONS(3067), - [anon_sym_noreturn] = ACTIONS(3067), - [anon_sym__Nonnull] = ACTIONS(3067), - [anon_sym_mutable] = ACTIONS(3067), - [anon_sym_constinit] = ACTIONS(3067), - [anon_sym_consteval] = ACTIONS(3067), - [anon_sym_alignas] = ACTIONS(3067), - [anon_sym__Alignas] = ACTIONS(3067), - [sym_primitive_type] = ACTIONS(3067), - [anon_sym_enum] = ACTIONS(3067), - [anon_sym_class] = ACTIONS(3067), - [anon_sym_struct] = ACTIONS(3067), - [anon_sym_union] = ACTIONS(3067), - [anon_sym_if] = ACTIONS(3067), - [anon_sym_switch] = ACTIONS(3067), - [anon_sym_case] = ACTIONS(3067), - [anon_sym_default] = ACTIONS(3067), - [anon_sym_while] = ACTIONS(3067), - [anon_sym_do] = ACTIONS(3067), - [anon_sym_for] = ACTIONS(3067), - [anon_sym_return] = ACTIONS(3067), - [anon_sym_break] = ACTIONS(3067), - [anon_sym_continue] = ACTIONS(3067), - [anon_sym_goto] = ACTIONS(3067), - [anon_sym___try] = ACTIONS(3067), - [anon_sym___leave] = ACTIONS(3067), - [anon_sym_not] = ACTIONS(3067), - [anon_sym_compl] = ACTIONS(3067), - [anon_sym_DASH_DASH] = ACTIONS(3069), - [anon_sym_PLUS_PLUS] = ACTIONS(3069), - [anon_sym_sizeof] = ACTIONS(3067), - [anon_sym___alignof__] = ACTIONS(3067), - [anon_sym___alignof] = ACTIONS(3067), - [anon_sym__alignof] = ACTIONS(3067), - [anon_sym_alignof] = ACTIONS(3067), - [anon_sym__Alignof] = ACTIONS(3067), - [anon_sym_offsetof] = ACTIONS(3067), - [anon_sym__Generic] = ACTIONS(3067), - [anon_sym_asm] = ACTIONS(3067), - [anon_sym___asm__] = ACTIONS(3067), - [anon_sym___asm] = ACTIONS(3067), - [sym_number_literal] = ACTIONS(3069), - [anon_sym_L_SQUOTE] = ACTIONS(3069), - [anon_sym_u_SQUOTE] = ACTIONS(3069), - [anon_sym_U_SQUOTE] = ACTIONS(3069), - [anon_sym_u8_SQUOTE] = ACTIONS(3069), - [anon_sym_SQUOTE] = ACTIONS(3069), - [anon_sym_L_DQUOTE] = ACTIONS(3069), - [anon_sym_u_DQUOTE] = ACTIONS(3069), - [anon_sym_U_DQUOTE] = ACTIONS(3069), - [anon_sym_u8_DQUOTE] = ACTIONS(3069), - [anon_sym_DQUOTE] = ACTIONS(3069), - [sym_true] = ACTIONS(3067), - [sym_false] = ACTIONS(3067), - [anon_sym_NULL] = ACTIONS(3067), - [anon_sym_nullptr] = ACTIONS(3067), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3067), - [anon_sym_decltype] = ACTIONS(3067), - [anon_sym_explicit] = ACTIONS(3067), - [anon_sym_typename] = ACTIONS(3067), - [anon_sym_template] = ACTIONS(3067), - [anon_sym_operator] = ACTIONS(3067), - [anon_sym_try] = ACTIONS(3067), - [anon_sym_delete] = ACTIONS(3067), - [anon_sym_throw] = ACTIONS(3067), - [anon_sym_namespace] = ACTIONS(3067), - [anon_sym_static_assert] = ACTIONS(3067), - [anon_sym_concept] = ACTIONS(3067), - [anon_sym_co_return] = ACTIONS(3067), - [anon_sym_co_yield] = ACTIONS(3067), - [anon_sym_R_DQUOTE] = ACTIONS(3069), - [anon_sym_LR_DQUOTE] = ACTIONS(3069), - [anon_sym_uR_DQUOTE] = ACTIONS(3069), - [anon_sym_UR_DQUOTE] = ACTIONS(3069), - [anon_sym_u8R_DQUOTE] = ACTIONS(3069), - [anon_sym_co_await] = ACTIONS(3067), - [anon_sym_new] = ACTIONS(3067), - [anon_sym_requires] = ACTIONS(3067), - [sym_this] = ACTIONS(3067), - }, - [355] = { - [sym_identifier] = ACTIONS(3071), - [aux_sym_preproc_include_token1] = ACTIONS(3071), - [aux_sym_preproc_def_token1] = ACTIONS(3071), - [aux_sym_preproc_if_token1] = ACTIONS(3071), - [aux_sym_preproc_if_token2] = ACTIONS(3071), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3071), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3071), - [aux_sym_preproc_else_token1] = ACTIONS(3071), - [aux_sym_preproc_elif_token1] = ACTIONS(3071), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3071), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3071), - [sym_preproc_directive] = ACTIONS(3071), - [anon_sym_LPAREN2] = ACTIONS(3073), - [anon_sym_BANG] = ACTIONS(3073), - [anon_sym_TILDE] = ACTIONS(3073), - [anon_sym_DASH] = ACTIONS(3071), - [anon_sym_PLUS] = ACTIONS(3071), - [anon_sym_STAR] = ACTIONS(3073), - [anon_sym_AMP_AMP] = ACTIONS(3073), - [anon_sym_AMP] = ACTIONS(3071), - [anon_sym_SEMI] = ACTIONS(3073), - [anon_sym___extension__] = ACTIONS(3071), - [anon_sym_typedef] = ACTIONS(3071), - [anon_sym_virtual] = ACTIONS(3071), - [anon_sym_extern] = ACTIONS(3071), - [anon_sym___attribute__] = ACTIONS(3071), - [anon_sym___attribute] = ACTIONS(3071), - [anon_sym_using] = ACTIONS(3071), - [anon_sym_COLON_COLON] = ACTIONS(3073), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3073), - [anon_sym___declspec] = ACTIONS(3071), - [anon_sym___based] = ACTIONS(3071), - [anon_sym___cdecl] = ACTIONS(3071), - [anon_sym___clrcall] = ACTIONS(3071), - [anon_sym___stdcall] = ACTIONS(3071), - [anon_sym___fastcall] = ACTIONS(3071), - [anon_sym___thiscall] = ACTIONS(3071), - [anon_sym___vectorcall] = ACTIONS(3071), - [anon_sym_LBRACE] = ACTIONS(3073), - [anon_sym_signed] = ACTIONS(3071), - [anon_sym_unsigned] = ACTIONS(3071), - [anon_sym_long] = ACTIONS(3071), - [anon_sym_short] = ACTIONS(3071), - [anon_sym_LBRACK] = ACTIONS(3071), - [anon_sym_static] = ACTIONS(3071), - [anon_sym_register] = ACTIONS(3071), - [anon_sym_inline] = ACTIONS(3071), - [anon_sym___inline] = ACTIONS(3071), - [anon_sym___inline__] = ACTIONS(3071), - [anon_sym___forceinline] = ACTIONS(3071), - [anon_sym_thread_local] = ACTIONS(3071), - [anon_sym___thread] = ACTIONS(3071), - [anon_sym_const] = ACTIONS(3071), - [anon_sym_constexpr] = ACTIONS(3071), - [anon_sym_volatile] = ACTIONS(3071), - [anon_sym_restrict] = ACTIONS(3071), - [anon_sym___restrict__] = ACTIONS(3071), - [anon_sym__Atomic] = ACTIONS(3071), - [anon_sym__Noreturn] = ACTIONS(3071), - [anon_sym_noreturn] = ACTIONS(3071), - [anon_sym__Nonnull] = ACTIONS(3071), - [anon_sym_mutable] = ACTIONS(3071), - [anon_sym_constinit] = ACTIONS(3071), - [anon_sym_consteval] = ACTIONS(3071), - [anon_sym_alignas] = ACTIONS(3071), - [anon_sym__Alignas] = ACTIONS(3071), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(3071), - [anon_sym_class] = ACTIONS(3071), - [anon_sym_struct] = ACTIONS(3071), - [anon_sym_union] = ACTIONS(3071), - [anon_sym_if] = ACTIONS(3071), - [anon_sym_switch] = ACTIONS(3071), - [anon_sym_case] = ACTIONS(3071), - [anon_sym_default] = ACTIONS(3071), - [anon_sym_while] = ACTIONS(3071), - [anon_sym_do] = ACTIONS(3071), - [anon_sym_for] = ACTIONS(3071), - [anon_sym_return] = ACTIONS(3071), - [anon_sym_break] = ACTIONS(3071), - [anon_sym_continue] = ACTIONS(3071), - [anon_sym_goto] = ACTIONS(3071), - [anon_sym___try] = ACTIONS(3071), - [anon_sym___leave] = ACTIONS(3071), - [anon_sym_not] = ACTIONS(3071), - [anon_sym_compl] = ACTIONS(3071), - [anon_sym_DASH_DASH] = ACTIONS(3073), - [anon_sym_PLUS_PLUS] = ACTIONS(3073), - [anon_sym_sizeof] = ACTIONS(3071), - [anon_sym___alignof__] = ACTIONS(3071), - [anon_sym___alignof] = ACTIONS(3071), - [anon_sym__alignof] = ACTIONS(3071), - [anon_sym_alignof] = ACTIONS(3071), - [anon_sym__Alignof] = ACTIONS(3071), - [anon_sym_offsetof] = ACTIONS(3071), - [anon_sym__Generic] = ACTIONS(3071), - [anon_sym_asm] = ACTIONS(3071), - [anon_sym___asm__] = ACTIONS(3071), - [anon_sym___asm] = ACTIONS(3071), - [sym_number_literal] = ACTIONS(3073), - [anon_sym_L_SQUOTE] = ACTIONS(3073), - [anon_sym_u_SQUOTE] = ACTIONS(3073), - [anon_sym_U_SQUOTE] = ACTIONS(3073), - [anon_sym_u8_SQUOTE] = ACTIONS(3073), - [anon_sym_SQUOTE] = ACTIONS(3073), - [anon_sym_L_DQUOTE] = ACTIONS(3073), - [anon_sym_u_DQUOTE] = ACTIONS(3073), - [anon_sym_U_DQUOTE] = ACTIONS(3073), - [anon_sym_u8_DQUOTE] = ACTIONS(3073), - [anon_sym_DQUOTE] = ACTIONS(3073), - [sym_true] = ACTIONS(3071), - [sym_false] = ACTIONS(3071), - [anon_sym_NULL] = ACTIONS(3071), - [anon_sym_nullptr] = ACTIONS(3071), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3071), - [anon_sym_decltype] = ACTIONS(3071), - [anon_sym_explicit] = ACTIONS(3071), - [anon_sym_typename] = ACTIONS(3071), - [anon_sym_template] = ACTIONS(3071), - [anon_sym_operator] = ACTIONS(3071), - [anon_sym_try] = ACTIONS(3071), - [anon_sym_delete] = ACTIONS(3071), - [anon_sym_throw] = ACTIONS(3071), - [anon_sym_namespace] = ACTIONS(3071), - [anon_sym_static_assert] = ACTIONS(3071), - [anon_sym_concept] = ACTIONS(3071), - [anon_sym_co_return] = ACTIONS(3071), - [anon_sym_co_yield] = ACTIONS(3071), - [anon_sym_R_DQUOTE] = ACTIONS(3073), - [anon_sym_LR_DQUOTE] = ACTIONS(3073), - [anon_sym_uR_DQUOTE] = ACTIONS(3073), - [anon_sym_UR_DQUOTE] = ACTIONS(3073), - [anon_sym_u8R_DQUOTE] = ACTIONS(3073), - [anon_sym_co_await] = ACTIONS(3071), - [anon_sym_new] = ACTIONS(3071), - [anon_sym_requires] = ACTIONS(3071), - [sym_this] = ACTIONS(3071), + [sym_auto] = ACTIONS(3075), + [anon_sym_decltype] = ACTIONS(3075), + [anon_sym_explicit] = ACTIONS(3075), + [anon_sym_typename] = ACTIONS(3075), + [anon_sym_template] = ACTIONS(3075), + [anon_sym_operator] = ACTIONS(3075), + [anon_sym_try] = ACTIONS(3075), + [anon_sym_delete] = ACTIONS(3075), + [anon_sym_throw] = ACTIONS(3075), + [anon_sym_namespace] = ACTIONS(3075), + [anon_sym_static_assert] = ACTIONS(3075), + [anon_sym_concept] = ACTIONS(3075), + [anon_sym_co_return] = ACTIONS(3075), + [anon_sym_co_yield] = ACTIONS(3075), + [anon_sym_R_DQUOTE] = ACTIONS(3077), + [anon_sym_LR_DQUOTE] = ACTIONS(3077), + [anon_sym_uR_DQUOTE] = ACTIONS(3077), + [anon_sym_UR_DQUOTE] = ACTIONS(3077), + [anon_sym_u8R_DQUOTE] = ACTIONS(3077), + [anon_sym_co_await] = ACTIONS(3075), + [anon_sym_new] = ACTIONS(3075), + [anon_sym_requires] = ACTIONS(3075), + [sym_this] = ACTIONS(3075), }, - [356] = { + [358] = { [sym_identifier] = ACTIONS(3075), [aux_sym_preproc_include_token1] = ACTIONS(3075), [aux_sym_preproc_def_token1] = ACTIONS(3075), @@ -95046,7 +95613,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(3075), [sym_this] = ACTIONS(3075), }, - [357] = { + [359] = { [sym_identifier] = ACTIONS(3079), [aux_sym_preproc_include_token1] = ACTIONS(3079), [aux_sym_preproc_def_token1] = ACTIONS(3079), @@ -95186,7 +95753,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(3079), [sym_this] = ACTIONS(3079), }, - [358] = { + [360] = { [sym_identifier] = ACTIONS(3083), [aux_sym_preproc_include_token1] = ACTIONS(3083), [aux_sym_preproc_def_token1] = ACTIONS(3083), @@ -95326,429 +95893,849 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(3083), [sym_this] = ACTIONS(3083), }, - [359] = { - [sym_catch_clause] = STATE(362), - [aux_sym_constructor_try_statement_repeat1] = STATE(362), - [sym_identifier] = ACTIONS(2483), - [aux_sym_preproc_include_token1] = ACTIONS(2483), - [aux_sym_preproc_def_token1] = ACTIONS(2483), - [aux_sym_preproc_if_token1] = ACTIONS(2483), - [aux_sym_preproc_if_token2] = ACTIONS(2483), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2483), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2483), - [sym_preproc_directive] = ACTIONS(2483), - [anon_sym_LPAREN2] = ACTIONS(2485), - [anon_sym_BANG] = ACTIONS(2485), - [anon_sym_TILDE] = ACTIONS(2485), - [anon_sym_DASH] = ACTIONS(2483), - [anon_sym_PLUS] = ACTIONS(2483), - [anon_sym_STAR] = ACTIONS(2485), - [anon_sym_AMP_AMP] = ACTIONS(2485), - [anon_sym_AMP] = ACTIONS(2483), - [anon_sym_SEMI] = ACTIONS(2485), - [anon_sym___extension__] = ACTIONS(2483), - [anon_sym_typedef] = ACTIONS(2483), - [anon_sym_virtual] = ACTIONS(2483), - [anon_sym_extern] = ACTIONS(2483), - [anon_sym___attribute__] = ACTIONS(2483), - [anon_sym___attribute] = ACTIONS(2483), - [anon_sym_using] = ACTIONS(2483), - [anon_sym_COLON_COLON] = ACTIONS(2485), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2485), - [anon_sym___declspec] = ACTIONS(2483), - [anon_sym___based] = ACTIONS(2483), - [anon_sym___cdecl] = ACTIONS(2483), - [anon_sym___clrcall] = ACTIONS(2483), - [anon_sym___stdcall] = ACTIONS(2483), - [anon_sym___fastcall] = ACTIONS(2483), - [anon_sym___thiscall] = ACTIONS(2483), - [anon_sym___vectorcall] = ACTIONS(2483), - [anon_sym_LBRACE] = ACTIONS(2485), - [anon_sym_signed] = ACTIONS(2483), - [anon_sym_unsigned] = ACTIONS(2483), - [anon_sym_long] = ACTIONS(2483), - [anon_sym_short] = ACTIONS(2483), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_static] = ACTIONS(2483), - [anon_sym_register] = ACTIONS(2483), - [anon_sym_inline] = ACTIONS(2483), - [anon_sym___inline] = ACTIONS(2483), - [anon_sym___inline__] = ACTIONS(2483), - [anon_sym___forceinline] = ACTIONS(2483), - [anon_sym_thread_local] = ACTIONS(2483), - [anon_sym___thread] = ACTIONS(2483), - [anon_sym_const] = ACTIONS(2483), - [anon_sym_constexpr] = ACTIONS(2483), - [anon_sym_volatile] = ACTIONS(2483), - [anon_sym_restrict] = ACTIONS(2483), - [anon_sym___restrict__] = ACTIONS(2483), - [anon_sym__Atomic] = ACTIONS(2483), - [anon_sym__Noreturn] = ACTIONS(2483), - [anon_sym_noreturn] = ACTIONS(2483), - [anon_sym__Nonnull] = ACTIONS(2483), - [anon_sym_mutable] = ACTIONS(2483), - [anon_sym_constinit] = ACTIONS(2483), - [anon_sym_consteval] = ACTIONS(2483), - [anon_sym_alignas] = ACTIONS(2483), - [anon_sym__Alignas] = ACTIONS(2483), - [sym_primitive_type] = ACTIONS(2483), - [anon_sym_enum] = ACTIONS(2483), - [anon_sym_class] = ACTIONS(2483), - [anon_sym_struct] = ACTIONS(2483), - [anon_sym_union] = ACTIONS(2483), - [anon_sym_if] = ACTIONS(2483), - [anon_sym_else] = ACTIONS(2483), - [anon_sym_switch] = ACTIONS(2483), - [anon_sym_case] = ACTIONS(2483), - [anon_sym_default] = ACTIONS(2483), - [anon_sym_while] = ACTIONS(2483), - [anon_sym_do] = ACTIONS(2483), - [anon_sym_for] = ACTIONS(2483), - [anon_sym_return] = ACTIONS(2483), - [anon_sym_break] = ACTIONS(2483), - [anon_sym_continue] = ACTIONS(2483), - [anon_sym_goto] = ACTIONS(2483), - [anon_sym___try] = ACTIONS(2483), - [anon_sym___leave] = ACTIONS(2483), - [anon_sym_not] = ACTIONS(2483), - [anon_sym_compl] = ACTIONS(2483), - [anon_sym_DASH_DASH] = ACTIONS(2485), - [anon_sym_PLUS_PLUS] = ACTIONS(2485), - [anon_sym_sizeof] = ACTIONS(2483), - [anon_sym___alignof__] = ACTIONS(2483), - [anon_sym___alignof] = ACTIONS(2483), - [anon_sym__alignof] = ACTIONS(2483), - [anon_sym_alignof] = ACTIONS(2483), - [anon_sym__Alignof] = ACTIONS(2483), - [anon_sym_offsetof] = ACTIONS(2483), - [anon_sym__Generic] = ACTIONS(2483), - [anon_sym_asm] = ACTIONS(2483), - [anon_sym___asm__] = ACTIONS(2483), - [anon_sym___asm] = ACTIONS(2483), - [sym_number_literal] = ACTIONS(2485), - [anon_sym_L_SQUOTE] = ACTIONS(2485), - [anon_sym_u_SQUOTE] = ACTIONS(2485), - [anon_sym_U_SQUOTE] = ACTIONS(2485), - [anon_sym_u8_SQUOTE] = ACTIONS(2485), - [anon_sym_SQUOTE] = ACTIONS(2485), - [anon_sym_L_DQUOTE] = ACTIONS(2485), - [anon_sym_u_DQUOTE] = ACTIONS(2485), - [anon_sym_U_DQUOTE] = ACTIONS(2485), - [anon_sym_u8_DQUOTE] = ACTIONS(2485), - [anon_sym_DQUOTE] = ACTIONS(2485), - [sym_true] = ACTIONS(2483), - [sym_false] = ACTIONS(2483), - [anon_sym_NULL] = ACTIONS(2483), - [anon_sym_nullptr] = ACTIONS(2483), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2483), - [anon_sym_decltype] = ACTIONS(2483), - [anon_sym_explicit] = ACTIONS(2483), - [anon_sym_typename] = ACTIONS(2483), - [anon_sym_template] = ACTIONS(2483), - [anon_sym_operator] = ACTIONS(2483), - [anon_sym_try] = ACTIONS(2483), - [anon_sym_delete] = ACTIONS(2483), - [anon_sym_throw] = ACTIONS(2483), - [anon_sym_namespace] = ACTIONS(2483), - [anon_sym_static_assert] = ACTIONS(2483), - [anon_sym_concept] = ACTIONS(2483), - [anon_sym_co_return] = ACTIONS(2483), - [anon_sym_co_yield] = ACTIONS(2483), - [anon_sym_catch] = ACTIONS(3087), - [anon_sym_R_DQUOTE] = ACTIONS(2485), - [anon_sym_LR_DQUOTE] = ACTIONS(2485), - [anon_sym_uR_DQUOTE] = ACTIONS(2485), - [anon_sym_UR_DQUOTE] = ACTIONS(2485), - [anon_sym_u8R_DQUOTE] = ACTIONS(2485), - [anon_sym_co_await] = ACTIONS(2483), - [anon_sym_new] = ACTIONS(2483), - [anon_sym_requires] = ACTIONS(2483), - [sym_this] = ACTIONS(2483), - }, - [360] = { - [sym_identifier] = ACTIONS(3089), - [aux_sym_preproc_include_token1] = ACTIONS(3089), - [aux_sym_preproc_def_token1] = ACTIONS(3089), - [aux_sym_preproc_if_token1] = ACTIONS(3089), - [aux_sym_preproc_if_token2] = ACTIONS(3089), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3089), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3089), - [aux_sym_preproc_else_token1] = ACTIONS(3089), - [aux_sym_preproc_elif_token1] = ACTIONS(3089), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3089), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3089), - [sym_preproc_directive] = ACTIONS(3089), - [anon_sym_LPAREN2] = ACTIONS(3091), - [anon_sym_BANG] = ACTIONS(3091), - [anon_sym_TILDE] = ACTIONS(3091), - [anon_sym_DASH] = ACTIONS(3089), - [anon_sym_PLUS] = ACTIONS(3089), - [anon_sym_STAR] = ACTIONS(3091), - [anon_sym_AMP_AMP] = ACTIONS(3091), - [anon_sym_AMP] = ACTIONS(3089), - [anon_sym_SEMI] = ACTIONS(3091), - [anon_sym___extension__] = ACTIONS(3089), - [anon_sym_typedef] = ACTIONS(3089), - [anon_sym_virtual] = ACTIONS(3089), - [anon_sym_extern] = ACTIONS(3089), - [anon_sym___attribute__] = ACTIONS(3089), - [anon_sym___attribute] = ACTIONS(3089), - [anon_sym_using] = ACTIONS(3089), - [anon_sym_COLON_COLON] = ACTIONS(3091), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3091), - [anon_sym___declspec] = ACTIONS(3089), - [anon_sym___based] = ACTIONS(3089), - [anon_sym___cdecl] = ACTIONS(3089), - [anon_sym___clrcall] = ACTIONS(3089), - [anon_sym___stdcall] = ACTIONS(3089), - [anon_sym___fastcall] = ACTIONS(3089), - [anon_sym___thiscall] = ACTIONS(3089), - [anon_sym___vectorcall] = ACTIONS(3089), - [anon_sym_LBRACE] = ACTIONS(3091), - [anon_sym_signed] = ACTIONS(3089), - [anon_sym_unsigned] = ACTIONS(3089), - [anon_sym_long] = ACTIONS(3089), - [anon_sym_short] = ACTIONS(3089), - [anon_sym_LBRACK] = ACTIONS(3089), - [anon_sym_static] = ACTIONS(3089), - [anon_sym_register] = ACTIONS(3089), - [anon_sym_inline] = ACTIONS(3089), - [anon_sym___inline] = ACTIONS(3089), - [anon_sym___inline__] = ACTIONS(3089), - [anon_sym___forceinline] = ACTIONS(3089), - [anon_sym_thread_local] = ACTIONS(3089), - [anon_sym___thread] = ACTIONS(3089), - [anon_sym_const] = ACTIONS(3089), - [anon_sym_constexpr] = ACTIONS(3089), - [anon_sym_volatile] = ACTIONS(3089), - [anon_sym_restrict] = ACTIONS(3089), - [anon_sym___restrict__] = ACTIONS(3089), - [anon_sym__Atomic] = ACTIONS(3089), - [anon_sym__Noreturn] = ACTIONS(3089), - [anon_sym_noreturn] = ACTIONS(3089), - [anon_sym__Nonnull] = ACTIONS(3089), - [anon_sym_mutable] = ACTIONS(3089), - [anon_sym_constinit] = ACTIONS(3089), - [anon_sym_consteval] = ACTIONS(3089), - [anon_sym_alignas] = ACTIONS(3089), - [anon_sym__Alignas] = ACTIONS(3089), - [sym_primitive_type] = ACTIONS(3089), - [anon_sym_enum] = ACTIONS(3089), - [anon_sym_class] = ACTIONS(3089), - [anon_sym_struct] = ACTIONS(3089), - [anon_sym_union] = ACTIONS(3089), - [anon_sym_if] = ACTIONS(3089), - [anon_sym_switch] = ACTIONS(3089), - [anon_sym_case] = ACTIONS(3089), - [anon_sym_default] = ACTIONS(3089), - [anon_sym_while] = ACTIONS(3089), - [anon_sym_do] = ACTIONS(3089), - [anon_sym_for] = ACTIONS(3089), - [anon_sym_return] = ACTIONS(3089), - [anon_sym_break] = ACTIONS(3089), - [anon_sym_continue] = ACTIONS(3089), - [anon_sym_goto] = ACTIONS(3089), - [anon_sym___try] = ACTIONS(3089), - [anon_sym___leave] = ACTIONS(3089), - [anon_sym_not] = ACTIONS(3089), - [anon_sym_compl] = ACTIONS(3089), - [anon_sym_DASH_DASH] = ACTIONS(3091), - [anon_sym_PLUS_PLUS] = ACTIONS(3091), - [anon_sym_sizeof] = ACTIONS(3089), - [anon_sym___alignof__] = ACTIONS(3089), - [anon_sym___alignof] = ACTIONS(3089), - [anon_sym__alignof] = ACTIONS(3089), - [anon_sym_alignof] = ACTIONS(3089), - [anon_sym__Alignof] = ACTIONS(3089), - [anon_sym_offsetof] = ACTIONS(3089), - [anon_sym__Generic] = ACTIONS(3089), - [anon_sym_asm] = ACTIONS(3089), - [anon_sym___asm__] = ACTIONS(3089), - [anon_sym___asm] = ACTIONS(3089), - [sym_number_literal] = ACTIONS(3091), - [anon_sym_L_SQUOTE] = ACTIONS(3091), - [anon_sym_u_SQUOTE] = ACTIONS(3091), - [anon_sym_U_SQUOTE] = ACTIONS(3091), - [anon_sym_u8_SQUOTE] = ACTIONS(3091), - [anon_sym_SQUOTE] = ACTIONS(3091), - [anon_sym_L_DQUOTE] = ACTIONS(3091), - [anon_sym_u_DQUOTE] = ACTIONS(3091), - [anon_sym_U_DQUOTE] = ACTIONS(3091), - [anon_sym_u8_DQUOTE] = ACTIONS(3091), - [anon_sym_DQUOTE] = ACTIONS(3091), - [sym_true] = ACTIONS(3089), - [sym_false] = ACTIONS(3089), - [anon_sym_NULL] = ACTIONS(3089), - [anon_sym_nullptr] = ACTIONS(3089), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3089), - [anon_sym_decltype] = ACTIONS(3089), - [anon_sym_explicit] = ACTIONS(3089), - [anon_sym_typename] = ACTIONS(3089), - [anon_sym_template] = ACTIONS(3089), - [anon_sym_operator] = ACTIONS(3089), - [anon_sym_try] = ACTIONS(3089), - [anon_sym_delete] = ACTIONS(3089), - [anon_sym_throw] = ACTIONS(3089), - [anon_sym_namespace] = ACTIONS(3089), - [anon_sym_static_assert] = ACTIONS(3089), - [anon_sym_concept] = ACTIONS(3089), - [anon_sym_co_return] = ACTIONS(3089), - [anon_sym_co_yield] = ACTIONS(3089), - [anon_sym_R_DQUOTE] = ACTIONS(3091), - [anon_sym_LR_DQUOTE] = ACTIONS(3091), - [anon_sym_uR_DQUOTE] = ACTIONS(3091), - [anon_sym_UR_DQUOTE] = ACTIONS(3091), - [anon_sym_u8R_DQUOTE] = ACTIONS(3091), - [anon_sym_co_await] = ACTIONS(3089), - [anon_sym_new] = ACTIONS(3089), - [anon_sym_requires] = ACTIONS(3089), - [sym_this] = ACTIONS(3089), - }, [361] = { - [sym_identifier] = ACTIONS(3093), - [aux_sym_preproc_include_token1] = ACTIONS(3093), - [aux_sym_preproc_def_token1] = ACTIONS(3093), - [aux_sym_preproc_if_token1] = ACTIONS(3093), - [aux_sym_preproc_if_token2] = ACTIONS(3093), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3093), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3093), - [aux_sym_preproc_else_token1] = ACTIONS(3093), - [aux_sym_preproc_elif_token1] = ACTIONS(3093), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3093), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3093), - [sym_preproc_directive] = ACTIONS(3093), - [anon_sym_LPAREN2] = ACTIONS(3095), - [anon_sym_BANG] = ACTIONS(3095), - [anon_sym_TILDE] = ACTIONS(3095), - [anon_sym_DASH] = ACTIONS(3093), - [anon_sym_PLUS] = ACTIONS(3093), - [anon_sym_STAR] = ACTIONS(3095), - [anon_sym_AMP_AMP] = ACTIONS(3095), - [anon_sym_AMP] = ACTIONS(3093), - [anon_sym_SEMI] = ACTIONS(3095), - [anon_sym___extension__] = ACTIONS(3093), - [anon_sym_typedef] = ACTIONS(3093), - [anon_sym_virtual] = ACTIONS(3093), - [anon_sym_extern] = ACTIONS(3093), - [anon_sym___attribute__] = ACTIONS(3093), - [anon_sym___attribute] = ACTIONS(3093), - [anon_sym_using] = ACTIONS(3093), - [anon_sym_COLON_COLON] = ACTIONS(3095), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3095), - [anon_sym___declspec] = ACTIONS(3093), - [anon_sym___based] = ACTIONS(3093), - [anon_sym___cdecl] = ACTIONS(3093), - [anon_sym___clrcall] = ACTIONS(3093), - [anon_sym___stdcall] = ACTIONS(3093), - [anon_sym___fastcall] = ACTIONS(3093), - [anon_sym___thiscall] = ACTIONS(3093), - [anon_sym___vectorcall] = ACTIONS(3093), - [anon_sym_LBRACE] = ACTIONS(3095), - [anon_sym_signed] = ACTIONS(3093), - [anon_sym_unsigned] = ACTIONS(3093), - [anon_sym_long] = ACTIONS(3093), - [anon_sym_short] = ACTIONS(3093), - [anon_sym_LBRACK] = ACTIONS(3093), - [anon_sym_static] = ACTIONS(3093), - [anon_sym_register] = ACTIONS(3093), - [anon_sym_inline] = ACTIONS(3093), - [anon_sym___inline] = ACTIONS(3093), - [anon_sym___inline__] = ACTIONS(3093), - [anon_sym___forceinline] = ACTIONS(3093), - [anon_sym_thread_local] = ACTIONS(3093), - [anon_sym___thread] = ACTIONS(3093), - [anon_sym_const] = ACTIONS(3093), - [anon_sym_constexpr] = ACTIONS(3093), - [anon_sym_volatile] = ACTIONS(3093), - [anon_sym_restrict] = ACTIONS(3093), - [anon_sym___restrict__] = ACTIONS(3093), - [anon_sym__Atomic] = ACTIONS(3093), - [anon_sym__Noreturn] = ACTIONS(3093), - [anon_sym_noreturn] = ACTIONS(3093), - [anon_sym__Nonnull] = ACTIONS(3093), - [anon_sym_mutable] = ACTIONS(3093), - [anon_sym_constinit] = ACTIONS(3093), - [anon_sym_consteval] = ACTIONS(3093), - [anon_sym_alignas] = ACTIONS(3093), - [anon_sym__Alignas] = ACTIONS(3093), - [sym_primitive_type] = ACTIONS(3093), - [anon_sym_enum] = ACTIONS(3093), - [anon_sym_class] = ACTIONS(3093), - [anon_sym_struct] = ACTIONS(3093), - [anon_sym_union] = ACTIONS(3093), - [anon_sym_if] = ACTIONS(3093), - [anon_sym_switch] = ACTIONS(3093), - [anon_sym_case] = ACTIONS(3093), - [anon_sym_default] = ACTIONS(3093), - [anon_sym_while] = ACTIONS(3093), - [anon_sym_do] = ACTIONS(3093), - [anon_sym_for] = ACTIONS(3093), - [anon_sym_return] = ACTIONS(3093), - [anon_sym_break] = ACTIONS(3093), - [anon_sym_continue] = ACTIONS(3093), - [anon_sym_goto] = ACTIONS(3093), - [anon_sym___try] = ACTIONS(3093), - [anon_sym___leave] = ACTIONS(3093), - [anon_sym_not] = ACTIONS(3093), - [anon_sym_compl] = ACTIONS(3093), - [anon_sym_DASH_DASH] = ACTIONS(3095), - [anon_sym_PLUS_PLUS] = ACTIONS(3095), - [anon_sym_sizeof] = ACTIONS(3093), - [anon_sym___alignof__] = ACTIONS(3093), - [anon_sym___alignof] = ACTIONS(3093), - [anon_sym__alignof] = ACTIONS(3093), - [anon_sym_alignof] = ACTIONS(3093), - [anon_sym__Alignof] = ACTIONS(3093), - [anon_sym_offsetof] = ACTIONS(3093), - [anon_sym__Generic] = ACTIONS(3093), - [anon_sym_asm] = ACTIONS(3093), - [anon_sym___asm__] = ACTIONS(3093), - [anon_sym___asm] = ACTIONS(3093), - [sym_number_literal] = ACTIONS(3095), - [anon_sym_L_SQUOTE] = ACTIONS(3095), - [anon_sym_u_SQUOTE] = ACTIONS(3095), - [anon_sym_U_SQUOTE] = ACTIONS(3095), - [anon_sym_u8_SQUOTE] = ACTIONS(3095), - [anon_sym_SQUOTE] = ACTIONS(3095), - [anon_sym_L_DQUOTE] = ACTIONS(3095), - [anon_sym_u_DQUOTE] = ACTIONS(3095), - [anon_sym_U_DQUOTE] = ACTIONS(3095), - [anon_sym_u8_DQUOTE] = ACTIONS(3095), - [anon_sym_DQUOTE] = ACTIONS(3095), - [sym_true] = ACTIONS(3093), - [sym_false] = ACTIONS(3093), - [anon_sym_NULL] = ACTIONS(3093), - [anon_sym_nullptr] = ACTIONS(3093), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3093), - [anon_sym_decltype] = ACTIONS(3093), - [anon_sym_explicit] = ACTIONS(3093), - [anon_sym_typename] = ACTIONS(3093), - [anon_sym_template] = ACTIONS(3093), - [anon_sym_operator] = ACTIONS(3093), - [anon_sym_try] = ACTIONS(3093), - [anon_sym_delete] = ACTIONS(3093), - [anon_sym_throw] = ACTIONS(3093), - [anon_sym_namespace] = ACTIONS(3093), - [anon_sym_static_assert] = ACTIONS(3093), - [anon_sym_concept] = ACTIONS(3093), - [anon_sym_co_return] = ACTIONS(3093), - [anon_sym_co_yield] = ACTIONS(3093), - [anon_sym_R_DQUOTE] = ACTIONS(3095), - [anon_sym_LR_DQUOTE] = ACTIONS(3095), - [anon_sym_uR_DQUOTE] = ACTIONS(3095), - [anon_sym_UR_DQUOTE] = ACTIONS(3095), - [anon_sym_u8R_DQUOTE] = ACTIONS(3095), - [anon_sym_co_await] = ACTIONS(3093), - [anon_sym_new] = ACTIONS(3093), - [anon_sym_requires] = ACTIONS(3093), - [sym_this] = ACTIONS(3093), + [sym_identifier] = ACTIONS(3087), + [aux_sym_preproc_include_token1] = ACTIONS(3087), + [aux_sym_preproc_def_token1] = ACTIONS(3087), + [aux_sym_preproc_if_token1] = ACTIONS(3087), + [aux_sym_preproc_if_token2] = ACTIONS(3087), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3087), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3087), + [aux_sym_preproc_else_token1] = ACTIONS(3087), + [aux_sym_preproc_elif_token1] = ACTIONS(3087), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3087), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3087), + [sym_preproc_directive] = ACTIONS(3087), + [anon_sym_LPAREN2] = ACTIONS(3089), + [anon_sym_BANG] = ACTIONS(3089), + [anon_sym_TILDE] = ACTIONS(3089), + [anon_sym_DASH] = ACTIONS(3087), + [anon_sym_PLUS] = ACTIONS(3087), + [anon_sym_STAR] = ACTIONS(3089), + [anon_sym_AMP_AMP] = ACTIONS(3089), + [anon_sym_AMP] = ACTIONS(3087), + [anon_sym_SEMI] = ACTIONS(3089), + [anon_sym___extension__] = ACTIONS(3087), + [anon_sym_typedef] = ACTIONS(3087), + [anon_sym_virtual] = ACTIONS(3087), + [anon_sym_extern] = ACTIONS(3087), + [anon_sym___attribute__] = ACTIONS(3087), + [anon_sym___attribute] = ACTIONS(3087), + [anon_sym_using] = ACTIONS(3087), + [anon_sym_COLON_COLON] = ACTIONS(3089), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3089), + [anon_sym___declspec] = ACTIONS(3087), + [anon_sym___based] = ACTIONS(3087), + [anon_sym___cdecl] = ACTIONS(3087), + [anon_sym___clrcall] = ACTIONS(3087), + [anon_sym___stdcall] = ACTIONS(3087), + [anon_sym___fastcall] = ACTIONS(3087), + [anon_sym___thiscall] = ACTIONS(3087), + [anon_sym___vectorcall] = ACTIONS(3087), + [anon_sym_LBRACE] = ACTIONS(3089), + [anon_sym_signed] = ACTIONS(3087), + [anon_sym_unsigned] = ACTIONS(3087), + [anon_sym_long] = ACTIONS(3087), + [anon_sym_short] = ACTIONS(3087), + [anon_sym_LBRACK] = ACTIONS(3087), + [anon_sym_static] = ACTIONS(3087), + [anon_sym_register] = ACTIONS(3087), + [anon_sym_inline] = ACTIONS(3087), + [anon_sym___inline] = ACTIONS(3087), + [anon_sym___inline__] = ACTIONS(3087), + [anon_sym___forceinline] = ACTIONS(3087), + [anon_sym_thread_local] = ACTIONS(3087), + [anon_sym___thread] = ACTIONS(3087), + [anon_sym_const] = ACTIONS(3087), + [anon_sym_constexpr] = ACTIONS(3087), + [anon_sym_volatile] = ACTIONS(3087), + [anon_sym_restrict] = ACTIONS(3087), + [anon_sym___restrict__] = ACTIONS(3087), + [anon_sym__Atomic] = ACTIONS(3087), + [anon_sym__Noreturn] = ACTIONS(3087), + [anon_sym_noreturn] = ACTIONS(3087), + [anon_sym__Nonnull] = ACTIONS(3087), + [anon_sym_mutable] = ACTIONS(3087), + [anon_sym_constinit] = ACTIONS(3087), + [anon_sym_consteval] = ACTIONS(3087), + [anon_sym_alignas] = ACTIONS(3087), + [anon_sym__Alignas] = ACTIONS(3087), + [sym_primitive_type] = ACTIONS(3087), + [anon_sym_enum] = ACTIONS(3087), + [anon_sym_class] = ACTIONS(3087), + [anon_sym_struct] = ACTIONS(3087), + [anon_sym_union] = ACTIONS(3087), + [anon_sym_if] = ACTIONS(3087), + [anon_sym_switch] = ACTIONS(3087), + [anon_sym_case] = ACTIONS(3087), + [anon_sym_default] = ACTIONS(3087), + [anon_sym_while] = ACTIONS(3087), + [anon_sym_do] = ACTIONS(3087), + [anon_sym_for] = ACTIONS(3087), + [anon_sym_return] = ACTIONS(3087), + [anon_sym_break] = ACTIONS(3087), + [anon_sym_continue] = ACTIONS(3087), + [anon_sym_goto] = ACTIONS(3087), + [anon_sym___try] = ACTIONS(3087), + [anon_sym___leave] = ACTIONS(3087), + [anon_sym_not] = ACTIONS(3087), + [anon_sym_compl] = ACTIONS(3087), + [anon_sym_DASH_DASH] = ACTIONS(3089), + [anon_sym_PLUS_PLUS] = ACTIONS(3089), + [anon_sym_sizeof] = ACTIONS(3087), + [anon_sym___alignof__] = ACTIONS(3087), + [anon_sym___alignof] = ACTIONS(3087), + [anon_sym__alignof] = ACTIONS(3087), + [anon_sym_alignof] = ACTIONS(3087), + [anon_sym__Alignof] = ACTIONS(3087), + [anon_sym_offsetof] = ACTIONS(3087), + [anon_sym__Generic] = ACTIONS(3087), + [anon_sym_asm] = ACTIONS(3087), + [anon_sym___asm__] = ACTIONS(3087), + [anon_sym___asm] = ACTIONS(3087), + [sym_number_literal] = ACTIONS(3089), + [anon_sym_L_SQUOTE] = ACTIONS(3089), + [anon_sym_u_SQUOTE] = ACTIONS(3089), + [anon_sym_U_SQUOTE] = ACTIONS(3089), + [anon_sym_u8_SQUOTE] = ACTIONS(3089), + [anon_sym_SQUOTE] = ACTIONS(3089), + [anon_sym_L_DQUOTE] = ACTIONS(3089), + [anon_sym_u_DQUOTE] = ACTIONS(3089), + [anon_sym_U_DQUOTE] = ACTIONS(3089), + [anon_sym_u8_DQUOTE] = ACTIONS(3089), + [anon_sym_DQUOTE] = ACTIONS(3089), + [sym_true] = ACTIONS(3087), + [sym_false] = ACTIONS(3087), + [anon_sym_NULL] = ACTIONS(3087), + [anon_sym_nullptr] = ACTIONS(3087), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3087), + [anon_sym_decltype] = ACTIONS(3087), + [anon_sym_explicit] = ACTIONS(3087), + [anon_sym_typename] = ACTIONS(3087), + [anon_sym_template] = ACTIONS(3087), + [anon_sym_operator] = ACTIONS(3087), + [anon_sym_try] = ACTIONS(3087), + [anon_sym_delete] = ACTIONS(3087), + [anon_sym_throw] = ACTIONS(3087), + [anon_sym_namespace] = ACTIONS(3087), + [anon_sym_static_assert] = ACTIONS(3087), + [anon_sym_concept] = ACTIONS(3087), + [anon_sym_co_return] = ACTIONS(3087), + [anon_sym_co_yield] = ACTIONS(3087), + [anon_sym_R_DQUOTE] = ACTIONS(3089), + [anon_sym_LR_DQUOTE] = ACTIONS(3089), + [anon_sym_uR_DQUOTE] = ACTIONS(3089), + [anon_sym_UR_DQUOTE] = ACTIONS(3089), + [anon_sym_u8R_DQUOTE] = ACTIONS(3089), + [anon_sym_co_await] = ACTIONS(3087), + [anon_sym_new] = ACTIONS(3087), + [anon_sym_requires] = ACTIONS(3087), + [sym_this] = ACTIONS(3087), }, [362] = { - [sym_catch_clause] = STATE(362), - [aux_sym_constructor_try_statement_repeat1] = STATE(362), + [sym_identifier] = ACTIONS(3091), + [aux_sym_preproc_include_token1] = ACTIONS(3091), + [aux_sym_preproc_def_token1] = ACTIONS(3091), + [aux_sym_preproc_if_token1] = ACTIONS(3091), + [aux_sym_preproc_if_token2] = ACTIONS(3091), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3091), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3091), + [aux_sym_preproc_else_token1] = ACTIONS(3091), + [aux_sym_preproc_elif_token1] = ACTIONS(3091), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3091), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3091), + [sym_preproc_directive] = ACTIONS(3091), + [anon_sym_LPAREN2] = ACTIONS(3093), + [anon_sym_BANG] = ACTIONS(3093), + [anon_sym_TILDE] = ACTIONS(3093), + [anon_sym_DASH] = ACTIONS(3091), + [anon_sym_PLUS] = ACTIONS(3091), + [anon_sym_STAR] = ACTIONS(3093), + [anon_sym_AMP_AMP] = ACTIONS(3093), + [anon_sym_AMP] = ACTIONS(3091), + [anon_sym_SEMI] = ACTIONS(3093), + [anon_sym___extension__] = ACTIONS(3091), + [anon_sym_typedef] = ACTIONS(3091), + [anon_sym_virtual] = ACTIONS(3091), + [anon_sym_extern] = ACTIONS(3091), + [anon_sym___attribute__] = ACTIONS(3091), + [anon_sym___attribute] = ACTIONS(3091), + [anon_sym_using] = ACTIONS(3091), + [anon_sym_COLON_COLON] = ACTIONS(3093), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3093), + [anon_sym___declspec] = ACTIONS(3091), + [anon_sym___based] = ACTIONS(3091), + [anon_sym___cdecl] = ACTIONS(3091), + [anon_sym___clrcall] = ACTIONS(3091), + [anon_sym___stdcall] = ACTIONS(3091), + [anon_sym___fastcall] = ACTIONS(3091), + [anon_sym___thiscall] = ACTIONS(3091), + [anon_sym___vectorcall] = ACTIONS(3091), + [anon_sym_LBRACE] = ACTIONS(3093), + [anon_sym_signed] = ACTIONS(3091), + [anon_sym_unsigned] = ACTIONS(3091), + [anon_sym_long] = ACTIONS(3091), + [anon_sym_short] = ACTIONS(3091), + [anon_sym_LBRACK] = ACTIONS(3091), + [anon_sym_static] = ACTIONS(3091), + [anon_sym_register] = ACTIONS(3091), + [anon_sym_inline] = ACTIONS(3091), + [anon_sym___inline] = ACTIONS(3091), + [anon_sym___inline__] = ACTIONS(3091), + [anon_sym___forceinline] = ACTIONS(3091), + [anon_sym_thread_local] = ACTIONS(3091), + [anon_sym___thread] = ACTIONS(3091), + [anon_sym_const] = ACTIONS(3091), + [anon_sym_constexpr] = ACTIONS(3091), + [anon_sym_volatile] = ACTIONS(3091), + [anon_sym_restrict] = ACTIONS(3091), + [anon_sym___restrict__] = ACTIONS(3091), + [anon_sym__Atomic] = ACTIONS(3091), + [anon_sym__Noreturn] = ACTIONS(3091), + [anon_sym_noreturn] = ACTIONS(3091), + [anon_sym__Nonnull] = ACTIONS(3091), + [anon_sym_mutable] = ACTIONS(3091), + [anon_sym_constinit] = ACTIONS(3091), + [anon_sym_consteval] = ACTIONS(3091), + [anon_sym_alignas] = ACTIONS(3091), + [anon_sym__Alignas] = ACTIONS(3091), + [sym_primitive_type] = ACTIONS(3091), + [anon_sym_enum] = ACTIONS(3091), + [anon_sym_class] = ACTIONS(3091), + [anon_sym_struct] = ACTIONS(3091), + [anon_sym_union] = ACTIONS(3091), + [anon_sym_if] = ACTIONS(3091), + [anon_sym_switch] = ACTIONS(3091), + [anon_sym_case] = ACTIONS(3091), + [anon_sym_default] = ACTIONS(3091), + [anon_sym_while] = ACTIONS(3091), + [anon_sym_do] = ACTIONS(3091), + [anon_sym_for] = ACTIONS(3091), + [anon_sym_return] = ACTIONS(3091), + [anon_sym_break] = ACTIONS(3091), + [anon_sym_continue] = ACTIONS(3091), + [anon_sym_goto] = ACTIONS(3091), + [anon_sym___try] = ACTIONS(3091), + [anon_sym___leave] = ACTIONS(3091), + [anon_sym_not] = ACTIONS(3091), + [anon_sym_compl] = ACTIONS(3091), + [anon_sym_DASH_DASH] = ACTIONS(3093), + [anon_sym_PLUS_PLUS] = ACTIONS(3093), + [anon_sym_sizeof] = ACTIONS(3091), + [anon_sym___alignof__] = ACTIONS(3091), + [anon_sym___alignof] = ACTIONS(3091), + [anon_sym__alignof] = ACTIONS(3091), + [anon_sym_alignof] = ACTIONS(3091), + [anon_sym__Alignof] = ACTIONS(3091), + [anon_sym_offsetof] = ACTIONS(3091), + [anon_sym__Generic] = ACTIONS(3091), + [anon_sym_asm] = ACTIONS(3091), + [anon_sym___asm__] = ACTIONS(3091), + [anon_sym___asm] = ACTIONS(3091), + [sym_number_literal] = ACTIONS(3093), + [anon_sym_L_SQUOTE] = ACTIONS(3093), + [anon_sym_u_SQUOTE] = ACTIONS(3093), + [anon_sym_U_SQUOTE] = ACTIONS(3093), + [anon_sym_u8_SQUOTE] = ACTIONS(3093), + [anon_sym_SQUOTE] = ACTIONS(3093), + [anon_sym_L_DQUOTE] = ACTIONS(3093), + [anon_sym_u_DQUOTE] = ACTIONS(3093), + [anon_sym_U_DQUOTE] = ACTIONS(3093), + [anon_sym_u8_DQUOTE] = ACTIONS(3093), + [anon_sym_DQUOTE] = ACTIONS(3093), + [sym_true] = ACTIONS(3091), + [sym_false] = ACTIONS(3091), + [anon_sym_NULL] = ACTIONS(3091), + [anon_sym_nullptr] = ACTIONS(3091), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3091), + [anon_sym_decltype] = ACTIONS(3091), + [anon_sym_explicit] = ACTIONS(3091), + [anon_sym_typename] = ACTIONS(3091), + [anon_sym_template] = ACTIONS(3091), + [anon_sym_operator] = ACTIONS(3091), + [anon_sym_try] = ACTIONS(3091), + [anon_sym_delete] = ACTIONS(3091), + [anon_sym_throw] = ACTIONS(3091), + [anon_sym_namespace] = ACTIONS(3091), + [anon_sym_static_assert] = ACTIONS(3091), + [anon_sym_concept] = ACTIONS(3091), + [anon_sym_co_return] = ACTIONS(3091), + [anon_sym_co_yield] = ACTIONS(3091), + [anon_sym_R_DQUOTE] = ACTIONS(3093), + [anon_sym_LR_DQUOTE] = ACTIONS(3093), + [anon_sym_uR_DQUOTE] = ACTIONS(3093), + [anon_sym_UR_DQUOTE] = ACTIONS(3093), + [anon_sym_u8R_DQUOTE] = ACTIONS(3093), + [anon_sym_co_await] = ACTIONS(3091), + [anon_sym_new] = ACTIONS(3091), + [anon_sym_requires] = ACTIONS(3091), + [sym_this] = ACTIONS(3091), + }, + [363] = { + [sym_identifier] = ACTIONS(3095), + [aux_sym_preproc_include_token1] = ACTIONS(3095), + [aux_sym_preproc_def_token1] = ACTIONS(3095), + [aux_sym_preproc_if_token1] = ACTIONS(3095), + [aux_sym_preproc_if_token2] = ACTIONS(3095), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3095), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3095), + [aux_sym_preproc_else_token1] = ACTIONS(3095), + [aux_sym_preproc_elif_token1] = ACTIONS(3095), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3095), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3095), + [sym_preproc_directive] = ACTIONS(3095), + [anon_sym_LPAREN2] = ACTIONS(3097), + [anon_sym_BANG] = ACTIONS(3097), + [anon_sym_TILDE] = ACTIONS(3097), + [anon_sym_DASH] = ACTIONS(3095), + [anon_sym_PLUS] = ACTIONS(3095), + [anon_sym_STAR] = ACTIONS(3097), + [anon_sym_AMP_AMP] = ACTIONS(3097), + [anon_sym_AMP] = ACTIONS(3095), + [anon_sym_SEMI] = ACTIONS(3097), + [anon_sym___extension__] = ACTIONS(3095), + [anon_sym_typedef] = ACTIONS(3095), + [anon_sym_virtual] = ACTIONS(3095), + [anon_sym_extern] = ACTIONS(3095), + [anon_sym___attribute__] = ACTIONS(3095), + [anon_sym___attribute] = ACTIONS(3095), + [anon_sym_using] = ACTIONS(3095), + [anon_sym_COLON_COLON] = ACTIONS(3097), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3097), + [anon_sym___declspec] = ACTIONS(3095), + [anon_sym___based] = ACTIONS(3095), + [anon_sym___cdecl] = ACTIONS(3095), + [anon_sym___clrcall] = ACTIONS(3095), + [anon_sym___stdcall] = ACTIONS(3095), + [anon_sym___fastcall] = ACTIONS(3095), + [anon_sym___thiscall] = ACTIONS(3095), + [anon_sym___vectorcall] = ACTIONS(3095), + [anon_sym_LBRACE] = ACTIONS(3097), + [anon_sym_signed] = ACTIONS(3095), + [anon_sym_unsigned] = ACTIONS(3095), + [anon_sym_long] = ACTIONS(3095), + [anon_sym_short] = ACTIONS(3095), + [anon_sym_LBRACK] = ACTIONS(3095), + [anon_sym_static] = ACTIONS(3095), + [anon_sym_register] = ACTIONS(3095), + [anon_sym_inline] = ACTIONS(3095), + [anon_sym___inline] = ACTIONS(3095), + [anon_sym___inline__] = ACTIONS(3095), + [anon_sym___forceinline] = ACTIONS(3095), + [anon_sym_thread_local] = ACTIONS(3095), + [anon_sym___thread] = ACTIONS(3095), + [anon_sym_const] = ACTIONS(3095), + [anon_sym_constexpr] = ACTIONS(3095), + [anon_sym_volatile] = ACTIONS(3095), + [anon_sym_restrict] = ACTIONS(3095), + [anon_sym___restrict__] = ACTIONS(3095), + [anon_sym__Atomic] = ACTIONS(3095), + [anon_sym__Noreturn] = ACTIONS(3095), + [anon_sym_noreturn] = ACTIONS(3095), + [anon_sym__Nonnull] = ACTIONS(3095), + [anon_sym_mutable] = ACTIONS(3095), + [anon_sym_constinit] = ACTIONS(3095), + [anon_sym_consteval] = ACTIONS(3095), + [anon_sym_alignas] = ACTIONS(3095), + [anon_sym__Alignas] = ACTIONS(3095), + [sym_primitive_type] = ACTIONS(3095), + [anon_sym_enum] = ACTIONS(3095), + [anon_sym_class] = ACTIONS(3095), + [anon_sym_struct] = ACTIONS(3095), + [anon_sym_union] = ACTIONS(3095), + [anon_sym_if] = ACTIONS(3095), + [anon_sym_switch] = ACTIONS(3095), + [anon_sym_case] = ACTIONS(3095), + [anon_sym_default] = ACTIONS(3095), + [anon_sym_while] = ACTIONS(3095), + [anon_sym_do] = ACTIONS(3095), + [anon_sym_for] = ACTIONS(3095), + [anon_sym_return] = ACTIONS(3095), + [anon_sym_break] = ACTIONS(3095), + [anon_sym_continue] = ACTIONS(3095), + [anon_sym_goto] = ACTIONS(3095), + [anon_sym___try] = ACTIONS(3095), + [anon_sym___leave] = ACTIONS(3095), + [anon_sym_not] = ACTIONS(3095), + [anon_sym_compl] = ACTIONS(3095), + [anon_sym_DASH_DASH] = ACTIONS(3097), + [anon_sym_PLUS_PLUS] = ACTIONS(3097), + [anon_sym_sizeof] = ACTIONS(3095), + [anon_sym___alignof__] = ACTIONS(3095), + [anon_sym___alignof] = ACTIONS(3095), + [anon_sym__alignof] = ACTIONS(3095), + [anon_sym_alignof] = ACTIONS(3095), + [anon_sym__Alignof] = ACTIONS(3095), + [anon_sym_offsetof] = ACTIONS(3095), + [anon_sym__Generic] = ACTIONS(3095), + [anon_sym_asm] = ACTIONS(3095), + [anon_sym___asm__] = ACTIONS(3095), + [anon_sym___asm] = ACTIONS(3095), + [sym_number_literal] = ACTIONS(3097), + [anon_sym_L_SQUOTE] = ACTIONS(3097), + [anon_sym_u_SQUOTE] = ACTIONS(3097), + [anon_sym_U_SQUOTE] = ACTIONS(3097), + [anon_sym_u8_SQUOTE] = ACTIONS(3097), + [anon_sym_SQUOTE] = ACTIONS(3097), + [anon_sym_L_DQUOTE] = ACTIONS(3097), + [anon_sym_u_DQUOTE] = ACTIONS(3097), + [anon_sym_U_DQUOTE] = ACTIONS(3097), + [anon_sym_u8_DQUOTE] = ACTIONS(3097), + [anon_sym_DQUOTE] = ACTIONS(3097), + [sym_true] = ACTIONS(3095), + [sym_false] = ACTIONS(3095), + [anon_sym_NULL] = ACTIONS(3095), + [anon_sym_nullptr] = ACTIONS(3095), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3095), + [anon_sym_decltype] = ACTIONS(3095), + [anon_sym_explicit] = ACTIONS(3095), + [anon_sym_typename] = ACTIONS(3095), + [anon_sym_template] = ACTIONS(3095), + [anon_sym_operator] = ACTIONS(3095), + [anon_sym_try] = ACTIONS(3095), + [anon_sym_delete] = ACTIONS(3095), + [anon_sym_throw] = ACTIONS(3095), + [anon_sym_namespace] = ACTIONS(3095), + [anon_sym_static_assert] = ACTIONS(3095), + [anon_sym_concept] = ACTIONS(3095), + [anon_sym_co_return] = ACTIONS(3095), + [anon_sym_co_yield] = ACTIONS(3095), + [anon_sym_R_DQUOTE] = ACTIONS(3097), + [anon_sym_LR_DQUOTE] = ACTIONS(3097), + [anon_sym_uR_DQUOTE] = ACTIONS(3097), + [anon_sym_UR_DQUOTE] = ACTIONS(3097), + [anon_sym_u8R_DQUOTE] = ACTIONS(3097), + [anon_sym_co_await] = ACTIONS(3095), + [anon_sym_new] = ACTIONS(3095), + [anon_sym_requires] = ACTIONS(3095), + [sym_this] = ACTIONS(3095), + }, + [364] = { + [sym_catch_clause] = STATE(367), + [aux_sym_constructor_try_statement_repeat1] = STATE(367), + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token2] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym___extension__] = ACTIONS(2527), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym___attribute] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym___inline] = ACTIONS(2527), + [anon_sym___inline__] = ACTIONS(2527), + [anon_sym___forceinline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym___thread] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym___restrict__] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym__Noreturn] = ACTIONS(2527), + [anon_sym_noreturn] = ACTIONS(2527), + [anon_sym__Nonnull] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_alignas] = ACTIONS(2527), + [anon_sym__Alignas] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym___try] = ACTIONS(2527), + [anon_sym___leave] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [anon_sym___alignof__] = ACTIONS(2527), + [anon_sym___alignof] = ACTIONS(2527), + [anon_sym__alignof] = ACTIONS(2527), + [anon_sym_alignof] = ACTIONS(2527), + [anon_sym__Alignof] = ACTIONS(2527), + [anon_sym_offsetof] = ACTIONS(2527), + [anon_sym__Generic] = ACTIONS(2527), + [anon_sym_asm] = ACTIONS(2527), + [anon_sym___asm__] = ACTIONS(2527), + [anon_sym___asm] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [anon_sym_NULL] = ACTIONS(2527), + [anon_sym_nullptr] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_catch] = ACTIONS(3099), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + }, + [365] = { + [sym_identifier] = ACTIONS(3101), + [aux_sym_preproc_include_token1] = ACTIONS(3101), + [aux_sym_preproc_def_token1] = ACTIONS(3101), + [aux_sym_preproc_if_token1] = ACTIONS(3101), + [aux_sym_preproc_if_token2] = ACTIONS(3101), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3101), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3101), + [aux_sym_preproc_else_token1] = ACTIONS(3101), + [aux_sym_preproc_elif_token1] = ACTIONS(3101), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3101), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3101), + [sym_preproc_directive] = ACTIONS(3101), + [anon_sym_LPAREN2] = ACTIONS(3103), + [anon_sym_BANG] = ACTIONS(3103), + [anon_sym_TILDE] = ACTIONS(3103), + [anon_sym_DASH] = ACTIONS(3101), + [anon_sym_PLUS] = ACTIONS(3101), + [anon_sym_STAR] = ACTIONS(3103), + [anon_sym_AMP_AMP] = ACTIONS(3103), + [anon_sym_AMP] = ACTIONS(3101), + [anon_sym_SEMI] = ACTIONS(3103), + [anon_sym___extension__] = ACTIONS(3101), + [anon_sym_typedef] = ACTIONS(3101), + [anon_sym_virtual] = ACTIONS(3101), + [anon_sym_extern] = ACTIONS(3101), + [anon_sym___attribute__] = ACTIONS(3101), + [anon_sym___attribute] = ACTIONS(3101), + [anon_sym_using] = ACTIONS(3101), + [anon_sym_COLON_COLON] = ACTIONS(3103), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3103), + [anon_sym___declspec] = ACTIONS(3101), + [anon_sym___based] = ACTIONS(3101), + [anon_sym___cdecl] = ACTIONS(3101), + [anon_sym___clrcall] = ACTIONS(3101), + [anon_sym___stdcall] = ACTIONS(3101), + [anon_sym___fastcall] = ACTIONS(3101), + [anon_sym___thiscall] = ACTIONS(3101), + [anon_sym___vectorcall] = ACTIONS(3101), + [anon_sym_LBRACE] = ACTIONS(3103), + [anon_sym_signed] = ACTIONS(3101), + [anon_sym_unsigned] = ACTIONS(3101), + [anon_sym_long] = ACTIONS(3101), + [anon_sym_short] = ACTIONS(3101), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_static] = ACTIONS(3101), + [anon_sym_register] = ACTIONS(3101), + [anon_sym_inline] = ACTIONS(3101), + [anon_sym___inline] = ACTIONS(3101), + [anon_sym___inline__] = ACTIONS(3101), + [anon_sym___forceinline] = ACTIONS(3101), + [anon_sym_thread_local] = ACTIONS(3101), + [anon_sym___thread] = ACTIONS(3101), + [anon_sym_const] = ACTIONS(3101), + [anon_sym_constexpr] = ACTIONS(3101), + [anon_sym_volatile] = ACTIONS(3101), + [anon_sym_restrict] = ACTIONS(3101), + [anon_sym___restrict__] = ACTIONS(3101), + [anon_sym__Atomic] = ACTIONS(3101), + [anon_sym__Noreturn] = ACTIONS(3101), + [anon_sym_noreturn] = ACTIONS(3101), + [anon_sym__Nonnull] = ACTIONS(3101), + [anon_sym_mutable] = ACTIONS(3101), + [anon_sym_constinit] = ACTIONS(3101), + [anon_sym_consteval] = ACTIONS(3101), + [anon_sym_alignas] = ACTIONS(3101), + [anon_sym__Alignas] = ACTIONS(3101), + [sym_primitive_type] = ACTIONS(3101), + [anon_sym_enum] = ACTIONS(3101), + [anon_sym_class] = ACTIONS(3101), + [anon_sym_struct] = ACTIONS(3101), + [anon_sym_union] = ACTIONS(3101), + [anon_sym_if] = ACTIONS(3101), + [anon_sym_switch] = ACTIONS(3101), + [anon_sym_case] = ACTIONS(3101), + [anon_sym_default] = ACTIONS(3101), + [anon_sym_while] = ACTIONS(3101), + [anon_sym_do] = ACTIONS(3101), + [anon_sym_for] = ACTIONS(3101), + [anon_sym_return] = ACTIONS(3101), + [anon_sym_break] = ACTIONS(3101), + [anon_sym_continue] = ACTIONS(3101), + [anon_sym_goto] = ACTIONS(3101), + [anon_sym___try] = ACTIONS(3101), + [anon_sym___leave] = ACTIONS(3101), + [anon_sym_not] = ACTIONS(3101), + [anon_sym_compl] = ACTIONS(3101), + [anon_sym_DASH_DASH] = ACTIONS(3103), + [anon_sym_PLUS_PLUS] = ACTIONS(3103), + [anon_sym_sizeof] = ACTIONS(3101), + [anon_sym___alignof__] = ACTIONS(3101), + [anon_sym___alignof] = ACTIONS(3101), + [anon_sym__alignof] = ACTIONS(3101), + [anon_sym_alignof] = ACTIONS(3101), + [anon_sym__Alignof] = ACTIONS(3101), + [anon_sym_offsetof] = ACTIONS(3101), + [anon_sym__Generic] = ACTIONS(3101), + [anon_sym_asm] = ACTIONS(3101), + [anon_sym___asm__] = ACTIONS(3101), + [anon_sym___asm] = ACTIONS(3101), + [sym_number_literal] = ACTIONS(3103), + [anon_sym_L_SQUOTE] = ACTIONS(3103), + [anon_sym_u_SQUOTE] = ACTIONS(3103), + [anon_sym_U_SQUOTE] = ACTIONS(3103), + [anon_sym_u8_SQUOTE] = ACTIONS(3103), + [anon_sym_SQUOTE] = ACTIONS(3103), + [anon_sym_L_DQUOTE] = ACTIONS(3103), + [anon_sym_u_DQUOTE] = ACTIONS(3103), + [anon_sym_U_DQUOTE] = ACTIONS(3103), + [anon_sym_u8_DQUOTE] = ACTIONS(3103), + [anon_sym_DQUOTE] = ACTIONS(3103), + [sym_true] = ACTIONS(3101), + [sym_false] = ACTIONS(3101), + [anon_sym_NULL] = ACTIONS(3101), + [anon_sym_nullptr] = ACTIONS(3101), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3101), + [anon_sym_decltype] = ACTIONS(3101), + [anon_sym_explicit] = ACTIONS(3101), + [anon_sym_typename] = ACTIONS(3101), + [anon_sym_template] = ACTIONS(3101), + [anon_sym_operator] = ACTIONS(3101), + [anon_sym_try] = ACTIONS(3101), + [anon_sym_delete] = ACTIONS(3101), + [anon_sym_throw] = ACTIONS(3101), + [anon_sym_namespace] = ACTIONS(3101), + [anon_sym_static_assert] = ACTIONS(3101), + [anon_sym_concept] = ACTIONS(3101), + [anon_sym_co_return] = ACTIONS(3101), + [anon_sym_co_yield] = ACTIONS(3101), + [anon_sym_R_DQUOTE] = ACTIONS(3103), + [anon_sym_LR_DQUOTE] = ACTIONS(3103), + [anon_sym_uR_DQUOTE] = ACTIONS(3103), + [anon_sym_UR_DQUOTE] = ACTIONS(3103), + [anon_sym_u8R_DQUOTE] = ACTIONS(3103), + [anon_sym_co_await] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3101), + [anon_sym_requires] = ACTIONS(3101), + [sym_this] = ACTIONS(3101), + }, + [366] = { + [sym_identifier] = ACTIONS(3105), + [aux_sym_preproc_include_token1] = ACTIONS(3105), + [aux_sym_preproc_def_token1] = ACTIONS(3105), + [aux_sym_preproc_if_token1] = ACTIONS(3105), + [aux_sym_preproc_if_token2] = ACTIONS(3105), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3105), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3105), + [aux_sym_preproc_else_token1] = ACTIONS(3105), + [aux_sym_preproc_elif_token1] = ACTIONS(3105), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3105), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3105), + [sym_preproc_directive] = ACTIONS(3105), + [anon_sym_LPAREN2] = ACTIONS(3107), + [anon_sym_BANG] = ACTIONS(3107), + [anon_sym_TILDE] = ACTIONS(3107), + [anon_sym_DASH] = ACTIONS(3105), + [anon_sym_PLUS] = ACTIONS(3105), + [anon_sym_STAR] = ACTIONS(3107), + [anon_sym_AMP_AMP] = ACTIONS(3107), + [anon_sym_AMP] = ACTIONS(3105), + [anon_sym_SEMI] = ACTIONS(3107), + [anon_sym___extension__] = ACTIONS(3105), + [anon_sym_typedef] = ACTIONS(3105), + [anon_sym_virtual] = ACTIONS(3105), + [anon_sym_extern] = ACTIONS(3105), + [anon_sym___attribute__] = ACTIONS(3105), + [anon_sym___attribute] = ACTIONS(3105), + [anon_sym_using] = ACTIONS(3105), + [anon_sym_COLON_COLON] = ACTIONS(3107), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3107), + [anon_sym___declspec] = ACTIONS(3105), + [anon_sym___based] = ACTIONS(3105), + [anon_sym___cdecl] = ACTIONS(3105), + [anon_sym___clrcall] = ACTIONS(3105), + [anon_sym___stdcall] = ACTIONS(3105), + [anon_sym___fastcall] = ACTIONS(3105), + [anon_sym___thiscall] = ACTIONS(3105), + [anon_sym___vectorcall] = ACTIONS(3105), + [anon_sym_LBRACE] = ACTIONS(3107), + [anon_sym_signed] = ACTIONS(3105), + [anon_sym_unsigned] = ACTIONS(3105), + [anon_sym_long] = ACTIONS(3105), + [anon_sym_short] = ACTIONS(3105), + [anon_sym_LBRACK] = ACTIONS(3105), + [anon_sym_static] = ACTIONS(3105), + [anon_sym_register] = ACTIONS(3105), + [anon_sym_inline] = ACTIONS(3105), + [anon_sym___inline] = ACTIONS(3105), + [anon_sym___inline__] = ACTIONS(3105), + [anon_sym___forceinline] = ACTIONS(3105), + [anon_sym_thread_local] = ACTIONS(3105), + [anon_sym___thread] = ACTIONS(3105), + [anon_sym_const] = ACTIONS(3105), + [anon_sym_constexpr] = ACTIONS(3105), + [anon_sym_volatile] = ACTIONS(3105), + [anon_sym_restrict] = ACTIONS(3105), + [anon_sym___restrict__] = ACTIONS(3105), + [anon_sym__Atomic] = ACTIONS(3105), + [anon_sym__Noreturn] = ACTIONS(3105), + [anon_sym_noreturn] = ACTIONS(3105), + [anon_sym__Nonnull] = ACTIONS(3105), + [anon_sym_mutable] = ACTIONS(3105), + [anon_sym_constinit] = ACTIONS(3105), + [anon_sym_consteval] = ACTIONS(3105), + [anon_sym_alignas] = ACTIONS(3105), + [anon_sym__Alignas] = ACTIONS(3105), + [sym_primitive_type] = ACTIONS(3105), + [anon_sym_enum] = ACTIONS(3105), + [anon_sym_class] = ACTIONS(3105), + [anon_sym_struct] = ACTIONS(3105), + [anon_sym_union] = ACTIONS(3105), + [anon_sym_if] = ACTIONS(3105), + [anon_sym_switch] = ACTIONS(3105), + [anon_sym_case] = ACTIONS(3105), + [anon_sym_default] = ACTIONS(3105), + [anon_sym_while] = ACTIONS(3105), + [anon_sym_do] = ACTIONS(3105), + [anon_sym_for] = ACTIONS(3105), + [anon_sym_return] = ACTIONS(3105), + [anon_sym_break] = ACTIONS(3105), + [anon_sym_continue] = ACTIONS(3105), + [anon_sym_goto] = ACTIONS(3105), + [anon_sym___try] = ACTIONS(3105), + [anon_sym___leave] = ACTIONS(3105), + [anon_sym_not] = ACTIONS(3105), + [anon_sym_compl] = ACTIONS(3105), + [anon_sym_DASH_DASH] = ACTIONS(3107), + [anon_sym_PLUS_PLUS] = ACTIONS(3107), + [anon_sym_sizeof] = ACTIONS(3105), + [anon_sym___alignof__] = ACTIONS(3105), + [anon_sym___alignof] = ACTIONS(3105), + [anon_sym__alignof] = ACTIONS(3105), + [anon_sym_alignof] = ACTIONS(3105), + [anon_sym__Alignof] = ACTIONS(3105), + [anon_sym_offsetof] = ACTIONS(3105), + [anon_sym__Generic] = ACTIONS(3105), + [anon_sym_asm] = ACTIONS(3105), + [anon_sym___asm__] = ACTIONS(3105), + [anon_sym___asm] = ACTIONS(3105), + [sym_number_literal] = ACTIONS(3107), + [anon_sym_L_SQUOTE] = ACTIONS(3107), + [anon_sym_u_SQUOTE] = ACTIONS(3107), + [anon_sym_U_SQUOTE] = ACTIONS(3107), + [anon_sym_u8_SQUOTE] = ACTIONS(3107), + [anon_sym_SQUOTE] = ACTIONS(3107), + [anon_sym_L_DQUOTE] = ACTIONS(3107), + [anon_sym_u_DQUOTE] = ACTIONS(3107), + [anon_sym_U_DQUOTE] = ACTIONS(3107), + [anon_sym_u8_DQUOTE] = ACTIONS(3107), + [anon_sym_DQUOTE] = ACTIONS(3107), + [sym_true] = ACTIONS(3105), + [sym_false] = ACTIONS(3105), + [anon_sym_NULL] = ACTIONS(3105), + [anon_sym_nullptr] = ACTIONS(3105), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3105), + [anon_sym_decltype] = ACTIONS(3105), + [anon_sym_explicit] = ACTIONS(3105), + [anon_sym_typename] = ACTIONS(3105), + [anon_sym_template] = ACTIONS(3105), + [anon_sym_operator] = ACTIONS(3105), + [anon_sym_try] = ACTIONS(3105), + [anon_sym_delete] = ACTIONS(3105), + [anon_sym_throw] = ACTIONS(3105), + [anon_sym_namespace] = ACTIONS(3105), + [anon_sym_static_assert] = ACTIONS(3105), + [anon_sym_concept] = ACTIONS(3105), + [anon_sym_co_return] = ACTIONS(3105), + [anon_sym_co_yield] = ACTIONS(3105), + [anon_sym_R_DQUOTE] = ACTIONS(3107), + [anon_sym_LR_DQUOTE] = ACTIONS(3107), + [anon_sym_uR_DQUOTE] = ACTIONS(3107), + [anon_sym_UR_DQUOTE] = ACTIONS(3107), + [anon_sym_u8R_DQUOTE] = ACTIONS(3107), + [anon_sym_co_await] = ACTIONS(3105), + [anon_sym_new] = ACTIONS(3105), + [anon_sym_requires] = ACTIONS(3105), + [sym_this] = ACTIONS(3105), + }, + [367] = { + [sym_catch_clause] = STATE(367), + [aux_sym_constructor_try_statement_repeat1] = STATE(367), [sym_identifier] = ACTIONS(2476), [aux_sym_preproc_include_token1] = ACTIONS(2476), [aux_sym_preproc_def_token1] = ACTIONS(2476), @@ -95875,7 +96862,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_concept] = ACTIONS(2476), [anon_sym_co_return] = ACTIONS(2476), [anon_sym_co_yield] = ACTIONS(2476), - [anon_sym_catch] = ACTIONS(3097), + [anon_sym_catch] = ACTIONS(3109), [anon_sym_R_DQUOTE] = ACTIONS(2478), [anon_sym_LR_DQUOTE] = ACTIONS(2478), [anon_sym_uR_DQUOTE] = ACTIONS(2478), @@ -95886,427 +96873,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2476), [sym_this] = ACTIONS(2476), }, - [363] = { - [sym_identifier] = ACTIONS(3100), - [aux_sym_preproc_include_token1] = ACTIONS(3100), - [aux_sym_preproc_def_token1] = ACTIONS(3100), - [aux_sym_preproc_if_token1] = ACTIONS(3100), - [aux_sym_preproc_if_token2] = ACTIONS(3100), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3100), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3100), - [aux_sym_preproc_else_token1] = ACTIONS(3100), - [aux_sym_preproc_elif_token1] = ACTIONS(3100), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3100), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3100), - [sym_preproc_directive] = ACTIONS(3100), - [anon_sym_LPAREN2] = ACTIONS(3102), - [anon_sym_BANG] = ACTIONS(3102), - [anon_sym_TILDE] = ACTIONS(3102), - [anon_sym_DASH] = ACTIONS(3100), - [anon_sym_PLUS] = ACTIONS(3100), - [anon_sym_STAR] = ACTIONS(3102), - [anon_sym_AMP_AMP] = ACTIONS(3102), - [anon_sym_AMP] = ACTIONS(3100), - [anon_sym_SEMI] = ACTIONS(3102), - [anon_sym___extension__] = ACTIONS(3100), - [anon_sym_typedef] = ACTIONS(3100), - [anon_sym_virtual] = ACTIONS(3100), - [anon_sym_extern] = ACTIONS(3100), - [anon_sym___attribute__] = ACTIONS(3100), - [anon_sym___attribute] = ACTIONS(3100), - [anon_sym_using] = ACTIONS(3100), - [anon_sym_COLON_COLON] = ACTIONS(3102), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3102), - [anon_sym___declspec] = ACTIONS(3100), - [anon_sym___based] = ACTIONS(3100), - [anon_sym___cdecl] = ACTIONS(3100), - [anon_sym___clrcall] = ACTIONS(3100), - [anon_sym___stdcall] = ACTIONS(3100), - [anon_sym___fastcall] = ACTIONS(3100), - [anon_sym___thiscall] = ACTIONS(3100), - [anon_sym___vectorcall] = ACTIONS(3100), - [anon_sym_LBRACE] = ACTIONS(3102), - [anon_sym_signed] = ACTIONS(3100), - [anon_sym_unsigned] = ACTIONS(3100), - [anon_sym_long] = ACTIONS(3100), - [anon_sym_short] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(3100), - [anon_sym_static] = ACTIONS(3100), - [anon_sym_register] = ACTIONS(3100), - [anon_sym_inline] = ACTIONS(3100), - [anon_sym___inline] = ACTIONS(3100), - [anon_sym___inline__] = ACTIONS(3100), - [anon_sym___forceinline] = ACTIONS(3100), - [anon_sym_thread_local] = ACTIONS(3100), - [anon_sym___thread] = ACTIONS(3100), - [anon_sym_const] = ACTIONS(3100), - [anon_sym_constexpr] = ACTIONS(3100), - [anon_sym_volatile] = ACTIONS(3100), - [anon_sym_restrict] = ACTIONS(3100), - [anon_sym___restrict__] = ACTIONS(3100), - [anon_sym__Atomic] = ACTIONS(3100), - [anon_sym__Noreturn] = ACTIONS(3100), - [anon_sym_noreturn] = ACTIONS(3100), - [anon_sym__Nonnull] = ACTIONS(3100), - [anon_sym_mutable] = ACTIONS(3100), - [anon_sym_constinit] = ACTIONS(3100), - [anon_sym_consteval] = ACTIONS(3100), - [anon_sym_alignas] = ACTIONS(3100), - [anon_sym__Alignas] = ACTIONS(3100), - [sym_primitive_type] = ACTIONS(3100), - [anon_sym_enum] = ACTIONS(3100), - [anon_sym_class] = ACTIONS(3100), - [anon_sym_struct] = ACTIONS(3100), - [anon_sym_union] = ACTIONS(3100), - [anon_sym_if] = ACTIONS(3100), - [anon_sym_switch] = ACTIONS(3100), - [anon_sym_case] = ACTIONS(3100), - [anon_sym_default] = ACTIONS(3100), - [anon_sym_while] = ACTIONS(3100), - [anon_sym_do] = ACTIONS(3100), - [anon_sym_for] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3100), - [anon_sym_break] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(3100), - [anon_sym_goto] = ACTIONS(3100), - [anon_sym___try] = ACTIONS(3100), - [anon_sym___leave] = ACTIONS(3100), - [anon_sym_not] = ACTIONS(3100), - [anon_sym_compl] = ACTIONS(3100), - [anon_sym_DASH_DASH] = ACTIONS(3102), - [anon_sym_PLUS_PLUS] = ACTIONS(3102), - [anon_sym_sizeof] = ACTIONS(3100), - [anon_sym___alignof__] = ACTIONS(3100), - [anon_sym___alignof] = ACTIONS(3100), - [anon_sym__alignof] = ACTIONS(3100), - [anon_sym_alignof] = ACTIONS(3100), - [anon_sym__Alignof] = ACTIONS(3100), - [anon_sym_offsetof] = ACTIONS(3100), - [anon_sym__Generic] = ACTIONS(3100), - [anon_sym_asm] = ACTIONS(3100), - [anon_sym___asm__] = ACTIONS(3100), - [anon_sym___asm] = ACTIONS(3100), - [sym_number_literal] = ACTIONS(3102), - [anon_sym_L_SQUOTE] = ACTIONS(3102), - [anon_sym_u_SQUOTE] = ACTIONS(3102), - [anon_sym_U_SQUOTE] = ACTIONS(3102), - [anon_sym_u8_SQUOTE] = ACTIONS(3102), - [anon_sym_SQUOTE] = ACTIONS(3102), - [anon_sym_L_DQUOTE] = ACTIONS(3102), - [anon_sym_u_DQUOTE] = ACTIONS(3102), - [anon_sym_U_DQUOTE] = ACTIONS(3102), - [anon_sym_u8_DQUOTE] = ACTIONS(3102), - [anon_sym_DQUOTE] = ACTIONS(3102), - [sym_true] = ACTIONS(3100), - [sym_false] = ACTIONS(3100), - [anon_sym_NULL] = ACTIONS(3100), - [anon_sym_nullptr] = ACTIONS(3100), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3100), - [anon_sym_decltype] = ACTIONS(3100), - [anon_sym_explicit] = ACTIONS(3100), - [anon_sym_typename] = ACTIONS(3100), - [anon_sym_template] = ACTIONS(3100), - [anon_sym_operator] = ACTIONS(3100), - [anon_sym_try] = ACTIONS(3100), - [anon_sym_delete] = ACTIONS(3100), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_namespace] = ACTIONS(3100), - [anon_sym_static_assert] = ACTIONS(3100), - [anon_sym_concept] = ACTIONS(3100), - [anon_sym_co_return] = ACTIONS(3100), - [anon_sym_co_yield] = ACTIONS(3100), - [anon_sym_R_DQUOTE] = ACTIONS(3102), - [anon_sym_LR_DQUOTE] = ACTIONS(3102), - [anon_sym_uR_DQUOTE] = ACTIONS(3102), - [anon_sym_UR_DQUOTE] = ACTIONS(3102), - [anon_sym_u8R_DQUOTE] = ACTIONS(3102), - [anon_sym_co_await] = ACTIONS(3100), - [anon_sym_new] = ACTIONS(3100), - [anon_sym_requires] = ACTIONS(3100), - [sym_this] = ACTIONS(3100), - }, - [364] = { - [sym_identifier] = ACTIONS(3104), - [aux_sym_preproc_include_token1] = ACTIONS(3104), - [aux_sym_preproc_def_token1] = ACTIONS(3104), - [aux_sym_preproc_if_token1] = ACTIONS(3104), - [aux_sym_preproc_if_token2] = ACTIONS(3104), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3104), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3104), - [aux_sym_preproc_else_token1] = ACTIONS(3104), - [aux_sym_preproc_elif_token1] = ACTIONS(3104), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3104), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3104), - [sym_preproc_directive] = ACTIONS(3104), - [anon_sym_LPAREN2] = ACTIONS(3106), - [anon_sym_BANG] = ACTIONS(3106), - [anon_sym_TILDE] = ACTIONS(3106), - [anon_sym_DASH] = ACTIONS(3104), - [anon_sym_PLUS] = ACTIONS(3104), - [anon_sym_STAR] = ACTIONS(3106), - [anon_sym_AMP_AMP] = ACTIONS(3106), - [anon_sym_AMP] = ACTIONS(3104), - [anon_sym_SEMI] = ACTIONS(3106), - [anon_sym___extension__] = ACTIONS(3104), - [anon_sym_typedef] = ACTIONS(3104), - [anon_sym_virtual] = ACTIONS(3104), - [anon_sym_extern] = ACTIONS(3104), - [anon_sym___attribute__] = ACTIONS(3104), - [anon_sym___attribute] = ACTIONS(3104), - [anon_sym_using] = ACTIONS(3104), - [anon_sym_COLON_COLON] = ACTIONS(3106), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3106), - [anon_sym___declspec] = ACTIONS(3104), - [anon_sym___based] = ACTIONS(3104), - [anon_sym___cdecl] = ACTIONS(3104), - [anon_sym___clrcall] = ACTIONS(3104), - [anon_sym___stdcall] = ACTIONS(3104), - [anon_sym___fastcall] = ACTIONS(3104), - [anon_sym___thiscall] = ACTIONS(3104), - [anon_sym___vectorcall] = ACTIONS(3104), - [anon_sym_LBRACE] = ACTIONS(3106), - [anon_sym_signed] = ACTIONS(3104), - [anon_sym_unsigned] = ACTIONS(3104), - [anon_sym_long] = ACTIONS(3104), - [anon_sym_short] = ACTIONS(3104), - [anon_sym_LBRACK] = ACTIONS(3104), - [anon_sym_static] = ACTIONS(3104), - [anon_sym_register] = ACTIONS(3104), - [anon_sym_inline] = ACTIONS(3104), - [anon_sym___inline] = ACTIONS(3104), - [anon_sym___inline__] = ACTIONS(3104), - [anon_sym___forceinline] = ACTIONS(3104), - [anon_sym_thread_local] = ACTIONS(3104), - [anon_sym___thread] = ACTIONS(3104), - [anon_sym_const] = ACTIONS(3104), - [anon_sym_constexpr] = ACTIONS(3104), - [anon_sym_volatile] = ACTIONS(3104), - [anon_sym_restrict] = ACTIONS(3104), - [anon_sym___restrict__] = ACTIONS(3104), - [anon_sym__Atomic] = ACTIONS(3104), - [anon_sym__Noreturn] = ACTIONS(3104), - [anon_sym_noreturn] = ACTIONS(3104), - [anon_sym__Nonnull] = ACTIONS(3104), - [anon_sym_mutable] = ACTIONS(3104), - [anon_sym_constinit] = ACTIONS(3104), - [anon_sym_consteval] = ACTIONS(3104), - [anon_sym_alignas] = ACTIONS(3104), - [anon_sym__Alignas] = ACTIONS(3104), - [sym_primitive_type] = ACTIONS(3104), - [anon_sym_enum] = ACTIONS(3104), - [anon_sym_class] = ACTIONS(3104), - [anon_sym_struct] = ACTIONS(3104), - [anon_sym_union] = ACTIONS(3104), - [anon_sym_if] = ACTIONS(3104), - [anon_sym_switch] = ACTIONS(3104), - [anon_sym_case] = ACTIONS(3104), - [anon_sym_default] = ACTIONS(3104), - [anon_sym_while] = ACTIONS(3104), - [anon_sym_do] = ACTIONS(3104), - [anon_sym_for] = ACTIONS(3104), - [anon_sym_return] = ACTIONS(3104), - [anon_sym_break] = ACTIONS(3104), - [anon_sym_continue] = ACTIONS(3104), - [anon_sym_goto] = ACTIONS(3104), - [anon_sym___try] = ACTIONS(3104), - [anon_sym___leave] = ACTIONS(3104), - [anon_sym_not] = ACTIONS(3104), - [anon_sym_compl] = ACTIONS(3104), - [anon_sym_DASH_DASH] = ACTIONS(3106), - [anon_sym_PLUS_PLUS] = ACTIONS(3106), - [anon_sym_sizeof] = ACTIONS(3104), - [anon_sym___alignof__] = ACTIONS(3104), - [anon_sym___alignof] = ACTIONS(3104), - [anon_sym__alignof] = ACTIONS(3104), - [anon_sym_alignof] = ACTIONS(3104), - [anon_sym__Alignof] = ACTIONS(3104), - [anon_sym_offsetof] = ACTIONS(3104), - [anon_sym__Generic] = ACTIONS(3104), - [anon_sym_asm] = ACTIONS(3104), - [anon_sym___asm__] = ACTIONS(3104), - [anon_sym___asm] = ACTIONS(3104), - [sym_number_literal] = ACTIONS(3106), - [anon_sym_L_SQUOTE] = ACTIONS(3106), - [anon_sym_u_SQUOTE] = ACTIONS(3106), - [anon_sym_U_SQUOTE] = ACTIONS(3106), - [anon_sym_u8_SQUOTE] = ACTIONS(3106), - [anon_sym_SQUOTE] = ACTIONS(3106), - [anon_sym_L_DQUOTE] = ACTIONS(3106), - [anon_sym_u_DQUOTE] = ACTIONS(3106), - [anon_sym_U_DQUOTE] = ACTIONS(3106), - [anon_sym_u8_DQUOTE] = ACTIONS(3106), - [anon_sym_DQUOTE] = ACTIONS(3106), - [sym_true] = ACTIONS(3104), - [sym_false] = ACTIONS(3104), - [anon_sym_NULL] = ACTIONS(3104), - [anon_sym_nullptr] = ACTIONS(3104), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3104), - [anon_sym_decltype] = ACTIONS(3104), - [anon_sym_explicit] = ACTIONS(3104), - [anon_sym_typename] = ACTIONS(3104), - [anon_sym_template] = ACTIONS(3104), - [anon_sym_operator] = ACTIONS(3104), - [anon_sym_try] = ACTIONS(3104), - [anon_sym_delete] = ACTIONS(3104), - [anon_sym_throw] = ACTIONS(3104), - [anon_sym_namespace] = ACTIONS(3104), - [anon_sym_static_assert] = ACTIONS(3104), - [anon_sym_concept] = ACTIONS(3104), - [anon_sym_co_return] = ACTIONS(3104), - [anon_sym_co_yield] = ACTIONS(3104), - [anon_sym_R_DQUOTE] = ACTIONS(3106), - [anon_sym_LR_DQUOTE] = ACTIONS(3106), - [anon_sym_uR_DQUOTE] = ACTIONS(3106), - [anon_sym_UR_DQUOTE] = ACTIONS(3106), - [anon_sym_u8R_DQUOTE] = ACTIONS(3106), - [anon_sym_co_await] = ACTIONS(3104), - [anon_sym_new] = ACTIONS(3104), - [anon_sym_requires] = ACTIONS(3104), - [sym_this] = ACTIONS(3104), - }, - [365] = { - [sym_identifier] = ACTIONS(3108), - [aux_sym_preproc_include_token1] = ACTIONS(3108), - [aux_sym_preproc_def_token1] = ACTIONS(3108), - [aux_sym_preproc_if_token1] = ACTIONS(3108), - [aux_sym_preproc_if_token2] = ACTIONS(3108), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3108), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3108), - [aux_sym_preproc_else_token1] = ACTIONS(3108), - [aux_sym_preproc_elif_token1] = ACTIONS(3108), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3108), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3108), - [sym_preproc_directive] = ACTIONS(3108), - [anon_sym_LPAREN2] = ACTIONS(3110), - [anon_sym_BANG] = ACTIONS(3110), - [anon_sym_TILDE] = ACTIONS(3110), - [anon_sym_DASH] = ACTIONS(3108), - [anon_sym_PLUS] = ACTIONS(3108), - [anon_sym_STAR] = ACTIONS(3110), - [anon_sym_AMP_AMP] = ACTIONS(3110), - [anon_sym_AMP] = ACTIONS(3108), - [anon_sym_SEMI] = ACTIONS(3110), - [anon_sym___extension__] = ACTIONS(3108), - [anon_sym_typedef] = ACTIONS(3108), - [anon_sym_virtual] = ACTIONS(3108), - [anon_sym_extern] = ACTIONS(3108), - [anon_sym___attribute__] = ACTIONS(3108), - [anon_sym___attribute] = ACTIONS(3108), - [anon_sym_using] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(3110), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3110), - [anon_sym___declspec] = ACTIONS(3108), - [anon_sym___based] = ACTIONS(3108), - [anon_sym___cdecl] = ACTIONS(3108), - [anon_sym___clrcall] = ACTIONS(3108), - [anon_sym___stdcall] = ACTIONS(3108), - [anon_sym___fastcall] = ACTIONS(3108), - [anon_sym___thiscall] = ACTIONS(3108), - [anon_sym___vectorcall] = ACTIONS(3108), - [anon_sym_LBRACE] = ACTIONS(3110), - [anon_sym_signed] = ACTIONS(3108), - [anon_sym_unsigned] = ACTIONS(3108), - [anon_sym_long] = ACTIONS(3108), - [anon_sym_short] = ACTIONS(3108), - [anon_sym_LBRACK] = ACTIONS(3108), - [anon_sym_static] = ACTIONS(3108), - [anon_sym_register] = ACTIONS(3108), - [anon_sym_inline] = ACTIONS(3108), - [anon_sym___inline] = ACTIONS(3108), - [anon_sym___inline__] = ACTIONS(3108), - [anon_sym___forceinline] = ACTIONS(3108), - [anon_sym_thread_local] = ACTIONS(3108), - [anon_sym___thread] = ACTIONS(3108), - [anon_sym_const] = ACTIONS(3108), - [anon_sym_constexpr] = ACTIONS(3108), - [anon_sym_volatile] = ACTIONS(3108), - [anon_sym_restrict] = ACTIONS(3108), - [anon_sym___restrict__] = ACTIONS(3108), - [anon_sym__Atomic] = ACTIONS(3108), - [anon_sym__Noreturn] = ACTIONS(3108), - [anon_sym_noreturn] = ACTIONS(3108), - [anon_sym__Nonnull] = ACTIONS(3108), - [anon_sym_mutable] = ACTIONS(3108), - [anon_sym_constinit] = ACTIONS(3108), - [anon_sym_consteval] = ACTIONS(3108), - [anon_sym_alignas] = ACTIONS(3108), - [anon_sym__Alignas] = ACTIONS(3108), - [sym_primitive_type] = ACTIONS(3108), - [anon_sym_enum] = ACTIONS(3108), - [anon_sym_class] = ACTIONS(3108), - [anon_sym_struct] = ACTIONS(3108), - [anon_sym_union] = ACTIONS(3108), - [anon_sym_if] = ACTIONS(3108), - [anon_sym_switch] = ACTIONS(3108), - [anon_sym_case] = ACTIONS(3108), - [anon_sym_default] = ACTIONS(3108), - [anon_sym_while] = ACTIONS(3108), - [anon_sym_do] = ACTIONS(3108), - [anon_sym_for] = ACTIONS(3108), - [anon_sym_return] = ACTIONS(3108), - [anon_sym_break] = ACTIONS(3108), - [anon_sym_continue] = ACTIONS(3108), - [anon_sym_goto] = ACTIONS(3108), - [anon_sym___try] = ACTIONS(3108), - [anon_sym___leave] = ACTIONS(3108), - [anon_sym_not] = ACTIONS(3108), - [anon_sym_compl] = ACTIONS(3108), - [anon_sym_DASH_DASH] = ACTIONS(3110), - [anon_sym_PLUS_PLUS] = ACTIONS(3110), - [anon_sym_sizeof] = ACTIONS(3108), - [anon_sym___alignof__] = ACTIONS(3108), - [anon_sym___alignof] = ACTIONS(3108), - [anon_sym__alignof] = ACTIONS(3108), - [anon_sym_alignof] = ACTIONS(3108), - [anon_sym__Alignof] = ACTIONS(3108), - [anon_sym_offsetof] = ACTIONS(3108), - [anon_sym__Generic] = ACTIONS(3108), - [anon_sym_asm] = ACTIONS(3108), - [anon_sym___asm__] = ACTIONS(3108), - [anon_sym___asm] = ACTIONS(3108), - [sym_number_literal] = ACTIONS(3110), - [anon_sym_L_SQUOTE] = ACTIONS(3110), - [anon_sym_u_SQUOTE] = ACTIONS(3110), - [anon_sym_U_SQUOTE] = ACTIONS(3110), - [anon_sym_u8_SQUOTE] = ACTIONS(3110), - [anon_sym_SQUOTE] = ACTIONS(3110), - [anon_sym_L_DQUOTE] = ACTIONS(3110), - [anon_sym_u_DQUOTE] = ACTIONS(3110), - [anon_sym_U_DQUOTE] = ACTIONS(3110), - [anon_sym_u8_DQUOTE] = ACTIONS(3110), - [anon_sym_DQUOTE] = ACTIONS(3110), - [sym_true] = ACTIONS(3108), - [sym_false] = ACTIONS(3108), - [anon_sym_NULL] = ACTIONS(3108), - [anon_sym_nullptr] = ACTIONS(3108), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3108), - [anon_sym_decltype] = ACTIONS(3108), - [anon_sym_explicit] = ACTIONS(3108), - [anon_sym_typename] = ACTIONS(3108), - [anon_sym_template] = ACTIONS(3108), - [anon_sym_operator] = ACTIONS(3108), - [anon_sym_try] = ACTIONS(3108), - [anon_sym_delete] = ACTIONS(3108), - [anon_sym_throw] = ACTIONS(3108), - [anon_sym_namespace] = ACTIONS(3108), - [anon_sym_static_assert] = ACTIONS(3108), - [anon_sym_concept] = ACTIONS(3108), - [anon_sym_co_return] = ACTIONS(3108), - [anon_sym_co_yield] = ACTIONS(3108), - [anon_sym_R_DQUOTE] = ACTIONS(3110), - [anon_sym_LR_DQUOTE] = ACTIONS(3110), - [anon_sym_uR_DQUOTE] = ACTIONS(3110), - [anon_sym_UR_DQUOTE] = ACTIONS(3110), - [anon_sym_u8R_DQUOTE] = ACTIONS(3110), - [anon_sym_co_await] = ACTIONS(3108), - [anon_sym_new] = ACTIONS(3108), - [anon_sym_requires] = ACTIONS(3108), - [sym_this] = ACTIONS(3108), - }, - [366] = { + [368] = { [sym_identifier] = ACTIONS(3112), [aux_sym_preproc_include_token1] = ACTIONS(3112), [aux_sym_preproc_def_token1] = ACTIONS(3112), @@ -96446,7 +97013,1267 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(3112), [sym_this] = ACTIONS(3112), }, - [367] = { + [369] = { + [sym_identifier] = ACTIONS(3116), + [aux_sym_preproc_include_token1] = ACTIONS(3116), + [aux_sym_preproc_def_token1] = ACTIONS(3116), + [aux_sym_preproc_if_token1] = ACTIONS(3116), + [aux_sym_preproc_if_token2] = ACTIONS(3116), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3116), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3116), + [aux_sym_preproc_else_token1] = ACTIONS(3116), + [aux_sym_preproc_elif_token1] = ACTIONS(3116), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3116), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3116), + [sym_preproc_directive] = ACTIONS(3116), + [anon_sym_LPAREN2] = ACTIONS(3118), + [anon_sym_BANG] = ACTIONS(3118), + [anon_sym_TILDE] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3116), + [anon_sym_PLUS] = ACTIONS(3116), + [anon_sym_STAR] = ACTIONS(3118), + [anon_sym_AMP_AMP] = ACTIONS(3118), + [anon_sym_AMP] = ACTIONS(3116), + [anon_sym_SEMI] = ACTIONS(3118), + [anon_sym___extension__] = ACTIONS(3116), + [anon_sym_typedef] = ACTIONS(3116), + [anon_sym_virtual] = ACTIONS(3116), + [anon_sym_extern] = ACTIONS(3116), + [anon_sym___attribute__] = ACTIONS(3116), + [anon_sym___attribute] = ACTIONS(3116), + [anon_sym_using] = ACTIONS(3116), + [anon_sym_COLON_COLON] = ACTIONS(3118), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3118), + [anon_sym___declspec] = ACTIONS(3116), + [anon_sym___based] = ACTIONS(3116), + [anon_sym___cdecl] = ACTIONS(3116), + [anon_sym___clrcall] = ACTIONS(3116), + [anon_sym___stdcall] = ACTIONS(3116), + [anon_sym___fastcall] = ACTIONS(3116), + [anon_sym___thiscall] = ACTIONS(3116), + [anon_sym___vectorcall] = ACTIONS(3116), + [anon_sym_LBRACE] = ACTIONS(3118), + [anon_sym_signed] = ACTIONS(3116), + [anon_sym_unsigned] = ACTIONS(3116), + [anon_sym_long] = ACTIONS(3116), + [anon_sym_short] = ACTIONS(3116), + [anon_sym_LBRACK] = ACTIONS(3116), + [anon_sym_static] = ACTIONS(3116), + [anon_sym_register] = ACTIONS(3116), + [anon_sym_inline] = ACTIONS(3116), + [anon_sym___inline] = ACTIONS(3116), + [anon_sym___inline__] = ACTIONS(3116), + [anon_sym___forceinline] = ACTIONS(3116), + [anon_sym_thread_local] = ACTIONS(3116), + [anon_sym___thread] = ACTIONS(3116), + [anon_sym_const] = ACTIONS(3116), + [anon_sym_constexpr] = ACTIONS(3116), + [anon_sym_volatile] = ACTIONS(3116), + [anon_sym_restrict] = ACTIONS(3116), + [anon_sym___restrict__] = ACTIONS(3116), + [anon_sym__Atomic] = ACTIONS(3116), + [anon_sym__Noreturn] = ACTIONS(3116), + [anon_sym_noreturn] = ACTIONS(3116), + [anon_sym__Nonnull] = ACTIONS(3116), + [anon_sym_mutable] = ACTIONS(3116), + [anon_sym_constinit] = ACTIONS(3116), + [anon_sym_consteval] = ACTIONS(3116), + [anon_sym_alignas] = ACTIONS(3116), + [anon_sym__Alignas] = ACTIONS(3116), + [sym_primitive_type] = ACTIONS(3116), + [anon_sym_enum] = ACTIONS(3116), + [anon_sym_class] = ACTIONS(3116), + [anon_sym_struct] = ACTIONS(3116), + [anon_sym_union] = ACTIONS(3116), + [anon_sym_if] = ACTIONS(3116), + [anon_sym_switch] = ACTIONS(3116), + [anon_sym_case] = ACTIONS(3116), + [anon_sym_default] = ACTIONS(3116), + [anon_sym_while] = ACTIONS(3116), + [anon_sym_do] = ACTIONS(3116), + [anon_sym_for] = ACTIONS(3116), + [anon_sym_return] = ACTIONS(3116), + [anon_sym_break] = ACTIONS(3116), + [anon_sym_continue] = ACTIONS(3116), + [anon_sym_goto] = ACTIONS(3116), + [anon_sym___try] = ACTIONS(3116), + [anon_sym___leave] = ACTIONS(3116), + [anon_sym_not] = ACTIONS(3116), + [anon_sym_compl] = ACTIONS(3116), + [anon_sym_DASH_DASH] = ACTIONS(3118), + [anon_sym_PLUS_PLUS] = ACTIONS(3118), + [anon_sym_sizeof] = ACTIONS(3116), + [anon_sym___alignof__] = ACTIONS(3116), + [anon_sym___alignof] = ACTIONS(3116), + [anon_sym__alignof] = ACTIONS(3116), + [anon_sym_alignof] = ACTIONS(3116), + [anon_sym__Alignof] = ACTIONS(3116), + [anon_sym_offsetof] = ACTIONS(3116), + [anon_sym__Generic] = ACTIONS(3116), + [anon_sym_asm] = ACTIONS(3116), + [anon_sym___asm__] = ACTIONS(3116), + [anon_sym___asm] = ACTIONS(3116), + [sym_number_literal] = ACTIONS(3118), + [anon_sym_L_SQUOTE] = ACTIONS(3118), + [anon_sym_u_SQUOTE] = ACTIONS(3118), + [anon_sym_U_SQUOTE] = ACTIONS(3118), + [anon_sym_u8_SQUOTE] = ACTIONS(3118), + [anon_sym_SQUOTE] = ACTIONS(3118), + [anon_sym_L_DQUOTE] = ACTIONS(3118), + [anon_sym_u_DQUOTE] = ACTIONS(3118), + [anon_sym_U_DQUOTE] = ACTIONS(3118), + [anon_sym_u8_DQUOTE] = ACTIONS(3118), + [anon_sym_DQUOTE] = ACTIONS(3118), + [sym_true] = ACTIONS(3116), + [sym_false] = ACTIONS(3116), + [anon_sym_NULL] = ACTIONS(3116), + [anon_sym_nullptr] = ACTIONS(3116), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3116), + [anon_sym_decltype] = ACTIONS(3116), + [anon_sym_explicit] = ACTIONS(3116), + [anon_sym_typename] = ACTIONS(3116), + [anon_sym_template] = ACTIONS(3116), + [anon_sym_operator] = ACTIONS(3116), + [anon_sym_try] = ACTIONS(3116), + [anon_sym_delete] = ACTIONS(3116), + [anon_sym_throw] = ACTIONS(3116), + [anon_sym_namespace] = ACTIONS(3116), + [anon_sym_static_assert] = ACTIONS(3116), + [anon_sym_concept] = ACTIONS(3116), + [anon_sym_co_return] = ACTIONS(3116), + [anon_sym_co_yield] = ACTIONS(3116), + [anon_sym_R_DQUOTE] = ACTIONS(3118), + [anon_sym_LR_DQUOTE] = ACTIONS(3118), + [anon_sym_uR_DQUOTE] = ACTIONS(3118), + [anon_sym_UR_DQUOTE] = ACTIONS(3118), + [anon_sym_u8R_DQUOTE] = ACTIONS(3118), + [anon_sym_co_await] = ACTIONS(3116), + [anon_sym_new] = ACTIONS(3116), + [anon_sym_requires] = ACTIONS(3116), + [sym_this] = ACTIONS(3116), + }, + [370] = { + [sym_identifier] = ACTIONS(3120), + [aux_sym_preproc_include_token1] = ACTIONS(3120), + [aux_sym_preproc_def_token1] = ACTIONS(3120), + [aux_sym_preproc_if_token1] = ACTIONS(3120), + [aux_sym_preproc_if_token2] = ACTIONS(3120), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3120), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3120), + [aux_sym_preproc_else_token1] = ACTIONS(3120), + [aux_sym_preproc_elif_token1] = ACTIONS(3120), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3120), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3120), + [sym_preproc_directive] = ACTIONS(3120), + [anon_sym_LPAREN2] = ACTIONS(3122), + [anon_sym_BANG] = ACTIONS(3122), + [anon_sym_TILDE] = ACTIONS(3122), + [anon_sym_DASH] = ACTIONS(3120), + [anon_sym_PLUS] = ACTIONS(3120), + [anon_sym_STAR] = ACTIONS(3122), + [anon_sym_AMP_AMP] = ACTIONS(3122), + [anon_sym_AMP] = ACTIONS(3120), + [anon_sym_SEMI] = ACTIONS(3122), + [anon_sym___extension__] = ACTIONS(3120), + [anon_sym_typedef] = ACTIONS(3120), + [anon_sym_virtual] = ACTIONS(3120), + [anon_sym_extern] = ACTIONS(3120), + [anon_sym___attribute__] = ACTIONS(3120), + [anon_sym___attribute] = ACTIONS(3120), + [anon_sym_using] = ACTIONS(3120), + [anon_sym_COLON_COLON] = ACTIONS(3122), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3122), + [anon_sym___declspec] = ACTIONS(3120), + [anon_sym___based] = ACTIONS(3120), + [anon_sym___cdecl] = ACTIONS(3120), + [anon_sym___clrcall] = ACTIONS(3120), + [anon_sym___stdcall] = ACTIONS(3120), + [anon_sym___fastcall] = ACTIONS(3120), + [anon_sym___thiscall] = ACTIONS(3120), + [anon_sym___vectorcall] = ACTIONS(3120), + [anon_sym_LBRACE] = ACTIONS(3122), + [anon_sym_signed] = ACTIONS(3120), + [anon_sym_unsigned] = ACTIONS(3120), + [anon_sym_long] = ACTIONS(3120), + [anon_sym_short] = ACTIONS(3120), + [anon_sym_LBRACK] = ACTIONS(3120), + [anon_sym_static] = ACTIONS(3120), + [anon_sym_register] = ACTIONS(3120), + [anon_sym_inline] = ACTIONS(3120), + [anon_sym___inline] = ACTIONS(3120), + [anon_sym___inline__] = ACTIONS(3120), + [anon_sym___forceinline] = ACTIONS(3120), + [anon_sym_thread_local] = ACTIONS(3120), + [anon_sym___thread] = ACTIONS(3120), + [anon_sym_const] = ACTIONS(3120), + [anon_sym_constexpr] = ACTIONS(3120), + [anon_sym_volatile] = ACTIONS(3120), + [anon_sym_restrict] = ACTIONS(3120), + [anon_sym___restrict__] = ACTIONS(3120), + [anon_sym__Atomic] = ACTIONS(3120), + [anon_sym__Noreturn] = ACTIONS(3120), + [anon_sym_noreturn] = ACTIONS(3120), + [anon_sym__Nonnull] = ACTIONS(3120), + [anon_sym_mutable] = ACTIONS(3120), + [anon_sym_constinit] = ACTIONS(3120), + [anon_sym_consteval] = ACTIONS(3120), + [anon_sym_alignas] = ACTIONS(3120), + [anon_sym__Alignas] = ACTIONS(3120), + [sym_primitive_type] = ACTIONS(3120), + [anon_sym_enum] = ACTIONS(3120), + [anon_sym_class] = ACTIONS(3120), + [anon_sym_struct] = ACTIONS(3120), + [anon_sym_union] = ACTIONS(3120), + [anon_sym_if] = ACTIONS(3120), + [anon_sym_switch] = ACTIONS(3120), + [anon_sym_case] = ACTIONS(3120), + [anon_sym_default] = ACTIONS(3120), + [anon_sym_while] = ACTIONS(3120), + [anon_sym_do] = ACTIONS(3120), + [anon_sym_for] = ACTIONS(3120), + [anon_sym_return] = ACTIONS(3120), + [anon_sym_break] = ACTIONS(3120), + [anon_sym_continue] = ACTIONS(3120), + [anon_sym_goto] = ACTIONS(3120), + [anon_sym___try] = ACTIONS(3120), + [anon_sym___leave] = ACTIONS(3120), + [anon_sym_not] = ACTIONS(3120), + [anon_sym_compl] = ACTIONS(3120), + [anon_sym_DASH_DASH] = ACTIONS(3122), + [anon_sym_PLUS_PLUS] = ACTIONS(3122), + [anon_sym_sizeof] = ACTIONS(3120), + [anon_sym___alignof__] = ACTIONS(3120), + [anon_sym___alignof] = ACTIONS(3120), + [anon_sym__alignof] = ACTIONS(3120), + [anon_sym_alignof] = ACTIONS(3120), + [anon_sym__Alignof] = ACTIONS(3120), + [anon_sym_offsetof] = ACTIONS(3120), + [anon_sym__Generic] = ACTIONS(3120), + [anon_sym_asm] = ACTIONS(3120), + [anon_sym___asm__] = ACTIONS(3120), + [anon_sym___asm] = ACTIONS(3120), + [sym_number_literal] = ACTIONS(3122), + [anon_sym_L_SQUOTE] = ACTIONS(3122), + [anon_sym_u_SQUOTE] = ACTIONS(3122), + [anon_sym_U_SQUOTE] = ACTIONS(3122), + [anon_sym_u8_SQUOTE] = ACTIONS(3122), + [anon_sym_SQUOTE] = ACTIONS(3122), + [anon_sym_L_DQUOTE] = ACTIONS(3122), + [anon_sym_u_DQUOTE] = ACTIONS(3122), + [anon_sym_U_DQUOTE] = ACTIONS(3122), + [anon_sym_u8_DQUOTE] = ACTIONS(3122), + [anon_sym_DQUOTE] = ACTIONS(3122), + [sym_true] = ACTIONS(3120), + [sym_false] = ACTIONS(3120), + [anon_sym_NULL] = ACTIONS(3120), + [anon_sym_nullptr] = ACTIONS(3120), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3120), + [anon_sym_decltype] = ACTIONS(3120), + [anon_sym_explicit] = ACTIONS(3120), + [anon_sym_typename] = ACTIONS(3120), + [anon_sym_template] = ACTIONS(3120), + [anon_sym_operator] = ACTIONS(3120), + [anon_sym_try] = ACTIONS(3120), + [anon_sym_delete] = ACTIONS(3120), + [anon_sym_throw] = ACTIONS(3120), + [anon_sym_namespace] = ACTIONS(3120), + [anon_sym_static_assert] = ACTIONS(3120), + [anon_sym_concept] = ACTIONS(3120), + [anon_sym_co_return] = ACTIONS(3120), + [anon_sym_co_yield] = ACTIONS(3120), + [anon_sym_R_DQUOTE] = ACTIONS(3122), + [anon_sym_LR_DQUOTE] = ACTIONS(3122), + [anon_sym_uR_DQUOTE] = ACTIONS(3122), + [anon_sym_UR_DQUOTE] = ACTIONS(3122), + [anon_sym_u8R_DQUOTE] = ACTIONS(3122), + [anon_sym_co_await] = ACTIONS(3120), + [anon_sym_new] = ACTIONS(3120), + [anon_sym_requires] = ACTIONS(3120), + [sym_this] = ACTIONS(3120), + }, + [371] = { + [sym_identifier] = ACTIONS(3124), + [aux_sym_preproc_include_token1] = ACTIONS(3124), + [aux_sym_preproc_def_token1] = ACTIONS(3124), + [aux_sym_preproc_if_token1] = ACTIONS(3124), + [aux_sym_preproc_if_token2] = ACTIONS(3124), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3124), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3124), + [aux_sym_preproc_else_token1] = ACTIONS(3124), + [aux_sym_preproc_elif_token1] = ACTIONS(3124), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3124), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3124), + [sym_preproc_directive] = ACTIONS(3124), + [anon_sym_LPAREN2] = ACTIONS(3126), + [anon_sym_BANG] = ACTIONS(3126), + [anon_sym_TILDE] = ACTIONS(3126), + [anon_sym_DASH] = ACTIONS(3124), + [anon_sym_PLUS] = ACTIONS(3124), + [anon_sym_STAR] = ACTIONS(3126), + [anon_sym_AMP_AMP] = ACTIONS(3126), + [anon_sym_AMP] = ACTIONS(3124), + [anon_sym_SEMI] = ACTIONS(3126), + [anon_sym___extension__] = ACTIONS(3124), + [anon_sym_typedef] = ACTIONS(3124), + [anon_sym_virtual] = ACTIONS(3124), + [anon_sym_extern] = ACTIONS(3124), + [anon_sym___attribute__] = ACTIONS(3124), + [anon_sym___attribute] = ACTIONS(3124), + [anon_sym_using] = ACTIONS(3124), + [anon_sym_COLON_COLON] = ACTIONS(3126), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3126), + [anon_sym___declspec] = ACTIONS(3124), + [anon_sym___based] = ACTIONS(3124), + [anon_sym___cdecl] = ACTIONS(3124), + [anon_sym___clrcall] = ACTIONS(3124), + [anon_sym___stdcall] = ACTIONS(3124), + [anon_sym___fastcall] = ACTIONS(3124), + [anon_sym___thiscall] = ACTIONS(3124), + [anon_sym___vectorcall] = ACTIONS(3124), + [anon_sym_LBRACE] = ACTIONS(3126), + [anon_sym_signed] = ACTIONS(3124), + [anon_sym_unsigned] = ACTIONS(3124), + [anon_sym_long] = ACTIONS(3124), + [anon_sym_short] = ACTIONS(3124), + [anon_sym_LBRACK] = ACTIONS(3124), + [anon_sym_static] = ACTIONS(3124), + [anon_sym_register] = ACTIONS(3124), + [anon_sym_inline] = ACTIONS(3124), + [anon_sym___inline] = ACTIONS(3124), + [anon_sym___inline__] = ACTIONS(3124), + [anon_sym___forceinline] = ACTIONS(3124), + [anon_sym_thread_local] = ACTIONS(3124), + [anon_sym___thread] = ACTIONS(3124), + [anon_sym_const] = ACTIONS(3124), + [anon_sym_constexpr] = ACTIONS(3124), + [anon_sym_volatile] = ACTIONS(3124), + [anon_sym_restrict] = ACTIONS(3124), + [anon_sym___restrict__] = ACTIONS(3124), + [anon_sym__Atomic] = ACTIONS(3124), + [anon_sym__Noreturn] = ACTIONS(3124), + [anon_sym_noreturn] = ACTIONS(3124), + [anon_sym__Nonnull] = ACTIONS(3124), + [anon_sym_mutable] = ACTIONS(3124), + [anon_sym_constinit] = ACTIONS(3124), + [anon_sym_consteval] = ACTIONS(3124), + [anon_sym_alignas] = ACTIONS(3124), + [anon_sym__Alignas] = ACTIONS(3124), + [sym_primitive_type] = ACTIONS(3124), + [anon_sym_enum] = ACTIONS(3124), + [anon_sym_class] = ACTIONS(3124), + [anon_sym_struct] = ACTIONS(3124), + [anon_sym_union] = ACTIONS(3124), + [anon_sym_if] = ACTIONS(3124), + [anon_sym_switch] = ACTIONS(3124), + [anon_sym_case] = ACTIONS(3124), + [anon_sym_default] = ACTIONS(3124), + [anon_sym_while] = ACTIONS(3124), + [anon_sym_do] = ACTIONS(3124), + [anon_sym_for] = ACTIONS(3124), + [anon_sym_return] = ACTIONS(3124), + [anon_sym_break] = ACTIONS(3124), + [anon_sym_continue] = ACTIONS(3124), + [anon_sym_goto] = ACTIONS(3124), + [anon_sym___try] = ACTIONS(3124), + [anon_sym___leave] = ACTIONS(3124), + [anon_sym_not] = ACTIONS(3124), + [anon_sym_compl] = ACTIONS(3124), + [anon_sym_DASH_DASH] = ACTIONS(3126), + [anon_sym_PLUS_PLUS] = ACTIONS(3126), + [anon_sym_sizeof] = ACTIONS(3124), + [anon_sym___alignof__] = ACTIONS(3124), + [anon_sym___alignof] = ACTIONS(3124), + [anon_sym__alignof] = ACTIONS(3124), + [anon_sym_alignof] = ACTIONS(3124), + [anon_sym__Alignof] = ACTIONS(3124), + [anon_sym_offsetof] = ACTIONS(3124), + [anon_sym__Generic] = ACTIONS(3124), + [anon_sym_asm] = ACTIONS(3124), + [anon_sym___asm__] = ACTIONS(3124), + [anon_sym___asm] = ACTIONS(3124), + [sym_number_literal] = ACTIONS(3126), + [anon_sym_L_SQUOTE] = ACTIONS(3126), + [anon_sym_u_SQUOTE] = ACTIONS(3126), + [anon_sym_U_SQUOTE] = ACTIONS(3126), + [anon_sym_u8_SQUOTE] = ACTIONS(3126), + [anon_sym_SQUOTE] = ACTIONS(3126), + [anon_sym_L_DQUOTE] = ACTIONS(3126), + [anon_sym_u_DQUOTE] = ACTIONS(3126), + [anon_sym_U_DQUOTE] = ACTIONS(3126), + [anon_sym_u8_DQUOTE] = ACTIONS(3126), + [anon_sym_DQUOTE] = ACTIONS(3126), + [sym_true] = ACTIONS(3124), + [sym_false] = ACTIONS(3124), + [anon_sym_NULL] = ACTIONS(3124), + [anon_sym_nullptr] = ACTIONS(3124), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3124), + [anon_sym_decltype] = ACTIONS(3124), + [anon_sym_explicit] = ACTIONS(3124), + [anon_sym_typename] = ACTIONS(3124), + [anon_sym_template] = ACTIONS(3124), + [anon_sym_operator] = ACTIONS(3124), + [anon_sym_try] = ACTIONS(3124), + [anon_sym_delete] = ACTIONS(3124), + [anon_sym_throw] = ACTIONS(3124), + [anon_sym_namespace] = ACTIONS(3124), + [anon_sym_static_assert] = ACTIONS(3124), + [anon_sym_concept] = ACTIONS(3124), + [anon_sym_co_return] = ACTIONS(3124), + [anon_sym_co_yield] = ACTIONS(3124), + [anon_sym_R_DQUOTE] = ACTIONS(3126), + [anon_sym_LR_DQUOTE] = ACTIONS(3126), + [anon_sym_uR_DQUOTE] = ACTIONS(3126), + [anon_sym_UR_DQUOTE] = ACTIONS(3126), + [anon_sym_u8R_DQUOTE] = ACTIONS(3126), + [anon_sym_co_await] = ACTIONS(3124), + [anon_sym_new] = ACTIONS(3124), + [anon_sym_requires] = ACTIONS(3124), + [sym_this] = ACTIONS(3124), + }, + [372] = { + [ts_builtin_sym_end] = ACTIONS(2733), + [sym_identifier] = ACTIONS(2731), + [aux_sym_preproc_include_token1] = ACTIONS(2731), + [aux_sym_preproc_def_token1] = ACTIONS(2731), + [aux_sym_preproc_if_token1] = ACTIONS(2731), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2731), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2731), + [sym_preproc_directive] = ACTIONS(2731), + [anon_sym_LPAREN2] = ACTIONS(2733), + [anon_sym_BANG] = ACTIONS(2733), + [anon_sym_TILDE] = ACTIONS(2733), + [anon_sym_DASH] = ACTIONS(2731), + [anon_sym_PLUS] = ACTIONS(2731), + [anon_sym_STAR] = ACTIONS(2733), + [anon_sym_AMP_AMP] = ACTIONS(2733), + [anon_sym_AMP] = ACTIONS(2731), + [anon_sym_SEMI] = ACTIONS(2733), + [anon_sym___extension__] = ACTIONS(2731), + [anon_sym_typedef] = ACTIONS(2731), + [anon_sym_virtual] = ACTIONS(2731), + [anon_sym_extern] = ACTIONS(2731), + [anon_sym___attribute__] = ACTIONS(2731), + [anon_sym___attribute] = ACTIONS(2731), + [anon_sym_using] = ACTIONS(2731), + [anon_sym_COLON_COLON] = ACTIONS(2733), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2733), + [anon_sym___declspec] = ACTIONS(2731), + [anon_sym___based] = ACTIONS(2731), + [anon_sym___cdecl] = ACTIONS(2731), + [anon_sym___clrcall] = ACTIONS(2731), + [anon_sym___stdcall] = ACTIONS(2731), + [anon_sym___fastcall] = ACTIONS(2731), + [anon_sym___thiscall] = ACTIONS(2731), + [anon_sym___vectorcall] = ACTIONS(2731), + [anon_sym_LBRACE] = ACTIONS(2733), + [anon_sym_signed] = ACTIONS(2731), + [anon_sym_unsigned] = ACTIONS(2731), + [anon_sym_long] = ACTIONS(2731), + [anon_sym_short] = ACTIONS(2731), + [anon_sym_LBRACK] = ACTIONS(2731), + [anon_sym_static] = ACTIONS(2731), + [anon_sym_register] = ACTIONS(2731), + [anon_sym_inline] = ACTIONS(2731), + [anon_sym___inline] = ACTIONS(2731), + [anon_sym___inline__] = ACTIONS(2731), + [anon_sym___forceinline] = ACTIONS(2731), + [anon_sym_thread_local] = ACTIONS(2731), + [anon_sym___thread] = ACTIONS(2731), + [anon_sym_const] = ACTIONS(2731), + [anon_sym_constexpr] = ACTIONS(2731), + [anon_sym_volatile] = ACTIONS(2731), + [anon_sym_restrict] = ACTIONS(2731), + [anon_sym___restrict__] = ACTIONS(2731), + [anon_sym__Atomic] = ACTIONS(2731), + [anon_sym__Noreturn] = ACTIONS(2731), + [anon_sym_noreturn] = ACTIONS(2731), + [anon_sym__Nonnull] = ACTIONS(2731), + [anon_sym_mutable] = ACTIONS(2731), + [anon_sym_constinit] = ACTIONS(2731), + [anon_sym_consteval] = ACTIONS(2731), + [anon_sym_alignas] = ACTIONS(2731), + [anon_sym__Alignas] = ACTIONS(2731), + [sym_primitive_type] = ACTIONS(2731), + [anon_sym_enum] = ACTIONS(2731), + [anon_sym_class] = ACTIONS(2731), + [anon_sym_struct] = ACTIONS(2731), + [anon_sym_union] = ACTIONS(2731), + [anon_sym_if] = ACTIONS(2731), + [anon_sym_else] = ACTIONS(2731), + [anon_sym_switch] = ACTIONS(2731), + [anon_sym_case] = ACTIONS(2731), + [anon_sym_default] = ACTIONS(2731), + [anon_sym_while] = ACTIONS(2731), + [anon_sym_do] = ACTIONS(2731), + [anon_sym_for] = ACTIONS(2731), + [anon_sym_return] = ACTIONS(2731), + [anon_sym_break] = ACTIONS(2731), + [anon_sym_continue] = ACTIONS(2731), + [anon_sym_goto] = ACTIONS(2731), + [anon_sym___try] = ACTIONS(2731), + [anon_sym___leave] = ACTIONS(2731), + [anon_sym_not] = ACTIONS(2731), + [anon_sym_compl] = ACTIONS(2731), + [anon_sym_DASH_DASH] = ACTIONS(2733), + [anon_sym_PLUS_PLUS] = ACTIONS(2733), + [anon_sym_sizeof] = ACTIONS(2731), + [anon_sym___alignof__] = ACTIONS(2731), + [anon_sym___alignof] = ACTIONS(2731), + [anon_sym__alignof] = ACTIONS(2731), + [anon_sym_alignof] = ACTIONS(2731), + [anon_sym__Alignof] = ACTIONS(2731), + [anon_sym_offsetof] = ACTIONS(2731), + [anon_sym__Generic] = ACTIONS(2731), + [anon_sym_asm] = ACTIONS(2731), + [anon_sym___asm__] = ACTIONS(2731), + [anon_sym___asm] = ACTIONS(2731), + [sym_number_literal] = ACTIONS(2733), + [anon_sym_L_SQUOTE] = ACTIONS(2733), + [anon_sym_u_SQUOTE] = ACTIONS(2733), + [anon_sym_U_SQUOTE] = ACTIONS(2733), + [anon_sym_u8_SQUOTE] = ACTIONS(2733), + [anon_sym_SQUOTE] = ACTIONS(2733), + [anon_sym_L_DQUOTE] = ACTIONS(2733), + [anon_sym_u_DQUOTE] = ACTIONS(2733), + [anon_sym_U_DQUOTE] = ACTIONS(2733), + [anon_sym_u8_DQUOTE] = ACTIONS(2733), + [anon_sym_DQUOTE] = ACTIONS(2733), + [sym_true] = ACTIONS(2731), + [sym_false] = ACTIONS(2731), + [anon_sym_NULL] = ACTIONS(2731), + [anon_sym_nullptr] = ACTIONS(2731), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2731), + [anon_sym_decltype] = ACTIONS(2731), + [anon_sym_explicit] = ACTIONS(2731), + [anon_sym_typename] = ACTIONS(2731), + [anon_sym_export] = ACTIONS(2731), + [anon_sym_module] = ACTIONS(2731), + [anon_sym_import] = ACTIONS(2731), + [anon_sym_template] = ACTIONS(2731), + [anon_sym_operator] = ACTIONS(2731), + [anon_sym_try] = ACTIONS(2731), + [anon_sym_delete] = ACTIONS(2731), + [anon_sym_throw] = ACTIONS(2731), + [anon_sym_namespace] = ACTIONS(2731), + [anon_sym_static_assert] = ACTIONS(2731), + [anon_sym_concept] = ACTIONS(2731), + [anon_sym_co_return] = ACTIONS(2731), + [anon_sym_co_yield] = ACTIONS(2731), + [anon_sym_R_DQUOTE] = ACTIONS(2733), + [anon_sym_LR_DQUOTE] = ACTIONS(2733), + [anon_sym_uR_DQUOTE] = ACTIONS(2733), + [anon_sym_UR_DQUOTE] = ACTIONS(2733), + [anon_sym_u8R_DQUOTE] = ACTIONS(2733), + [anon_sym_co_await] = ACTIONS(2731), + [anon_sym_new] = ACTIONS(2731), + [anon_sym_requires] = ACTIONS(2731), + [sym_this] = ACTIONS(2731), + }, + [373] = { + [ts_builtin_sym_end] = ACTIONS(2733), + [sym_identifier] = ACTIONS(2731), + [aux_sym_preproc_include_token1] = ACTIONS(2731), + [aux_sym_preproc_def_token1] = ACTIONS(2731), + [aux_sym_preproc_if_token1] = ACTIONS(2731), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2731), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2731), + [sym_preproc_directive] = ACTIONS(2731), + [anon_sym_LPAREN2] = ACTIONS(2733), + [anon_sym_BANG] = ACTIONS(2733), + [anon_sym_TILDE] = ACTIONS(2733), + [anon_sym_DASH] = ACTIONS(2731), + [anon_sym_PLUS] = ACTIONS(2731), + [anon_sym_STAR] = ACTIONS(2733), + [anon_sym_AMP_AMP] = ACTIONS(2733), + [anon_sym_AMP] = ACTIONS(2731), + [anon_sym_SEMI] = ACTIONS(2733), + [anon_sym___extension__] = ACTIONS(2731), + [anon_sym_typedef] = ACTIONS(2731), + [anon_sym_virtual] = ACTIONS(2731), + [anon_sym_extern] = ACTIONS(2731), + [anon_sym___attribute__] = ACTIONS(2731), + [anon_sym___attribute] = ACTIONS(2731), + [anon_sym_using] = ACTIONS(2731), + [anon_sym_COLON_COLON] = ACTIONS(2733), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2733), + [anon_sym___declspec] = ACTIONS(2731), + [anon_sym___based] = ACTIONS(2731), + [anon_sym___cdecl] = ACTIONS(2731), + [anon_sym___clrcall] = ACTIONS(2731), + [anon_sym___stdcall] = ACTIONS(2731), + [anon_sym___fastcall] = ACTIONS(2731), + [anon_sym___thiscall] = ACTIONS(2731), + [anon_sym___vectorcall] = ACTIONS(2731), + [anon_sym_LBRACE] = ACTIONS(2733), + [anon_sym_signed] = ACTIONS(2731), + [anon_sym_unsigned] = ACTIONS(2731), + [anon_sym_long] = ACTIONS(2731), + [anon_sym_short] = ACTIONS(2731), + [anon_sym_LBRACK] = ACTIONS(2731), + [anon_sym_static] = ACTIONS(2731), + [anon_sym_register] = ACTIONS(2731), + [anon_sym_inline] = ACTIONS(2731), + [anon_sym___inline] = ACTIONS(2731), + [anon_sym___inline__] = ACTIONS(2731), + [anon_sym___forceinline] = ACTIONS(2731), + [anon_sym_thread_local] = ACTIONS(2731), + [anon_sym___thread] = ACTIONS(2731), + [anon_sym_const] = ACTIONS(2731), + [anon_sym_constexpr] = ACTIONS(2731), + [anon_sym_volatile] = ACTIONS(2731), + [anon_sym_restrict] = ACTIONS(2731), + [anon_sym___restrict__] = ACTIONS(2731), + [anon_sym__Atomic] = ACTIONS(2731), + [anon_sym__Noreturn] = ACTIONS(2731), + [anon_sym_noreturn] = ACTIONS(2731), + [anon_sym__Nonnull] = ACTIONS(2731), + [anon_sym_mutable] = ACTIONS(2731), + [anon_sym_constinit] = ACTIONS(2731), + [anon_sym_consteval] = ACTIONS(2731), + [anon_sym_alignas] = ACTIONS(2731), + [anon_sym__Alignas] = ACTIONS(2731), + [sym_primitive_type] = ACTIONS(2731), + [anon_sym_enum] = ACTIONS(2731), + [anon_sym_class] = ACTIONS(2731), + [anon_sym_struct] = ACTIONS(2731), + [anon_sym_union] = ACTIONS(2731), + [anon_sym_if] = ACTIONS(2731), + [anon_sym_else] = ACTIONS(2731), + [anon_sym_switch] = ACTIONS(2731), + [anon_sym_case] = ACTIONS(2731), + [anon_sym_default] = ACTIONS(2731), + [anon_sym_while] = ACTIONS(2731), + [anon_sym_do] = ACTIONS(2731), + [anon_sym_for] = ACTIONS(2731), + [anon_sym_return] = ACTIONS(2731), + [anon_sym_break] = ACTIONS(2731), + [anon_sym_continue] = ACTIONS(2731), + [anon_sym_goto] = ACTIONS(2731), + [anon_sym___try] = ACTIONS(2731), + [anon_sym___leave] = ACTIONS(2731), + [anon_sym_not] = ACTIONS(2731), + [anon_sym_compl] = ACTIONS(2731), + [anon_sym_DASH_DASH] = ACTIONS(2733), + [anon_sym_PLUS_PLUS] = ACTIONS(2733), + [anon_sym_sizeof] = ACTIONS(2731), + [anon_sym___alignof__] = ACTIONS(2731), + [anon_sym___alignof] = ACTIONS(2731), + [anon_sym__alignof] = ACTIONS(2731), + [anon_sym_alignof] = ACTIONS(2731), + [anon_sym__Alignof] = ACTIONS(2731), + [anon_sym_offsetof] = ACTIONS(2731), + [anon_sym__Generic] = ACTIONS(2731), + [anon_sym_asm] = ACTIONS(2731), + [anon_sym___asm__] = ACTIONS(2731), + [anon_sym___asm] = ACTIONS(2731), + [sym_number_literal] = ACTIONS(2733), + [anon_sym_L_SQUOTE] = ACTIONS(2733), + [anon_sym_u_SQUOTE] = ACTIONS(2733), + [anon_sym_U_SQUOTE] = ACTIONS(2733), + [anon_sym_u8_SQUOTE] = ACTIONS(2733), + [anon_sym_SQUOTE] = ACTIONS(2733), + [anon_sym_L_DQUOTE] = ACTIONS(2733), + [anon_sym_u_DQUOTE] = ACTIONS(2733), + [anon_sym_U_DQUOTE] = ACTIONS(2733), + [anon_sym_u8_DQUOTE] = ACTIONS(2733), + [anon_sym_DQUOTE] = ACTIONS(2733), + [sym_true] = ACTIONS(2731), + [sym_false] = ACTIONS(2731), + [anon_sym_NULL] = ACTIONS(2731), + [anon_sym_nullptr] = ACTIONS(2731), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2731), + [anon_sym_decltype] = ACTIONS(2731), + [anon_sym_explicit] = ACTIONS(2731), + [anon_sym_typename] = ACTIONS(2731), + [anon_sym_export] = ACTIONS(2731), + [anon_sym_module] = ACTIONS(2731), + [anon_sym_import] = ACTIONS(2731), + [anon_sym_template] = ACTIONS(2731), + [anon_sym_operator] = ACTIONS(2731), + [anon_sym_try] = ACTIONS(2731), + [anon_sym_delete] = ACTIONS(2731), + [anon_sym_throw] = ACTIONS(2731), + [anon_sym_namespace] = ACTIONS(2731), + [anon_sym_static_assert] = ACTIONS(2731), + [anon_sym_concept] = ACTIONS(2731), + [anon_sym_co_return] = ACTIONS(2731), + [anon_sym_co_yield] = ACTIONS(2731), + [anon_sym_R_DQUOTE] = ACTIONS(2733), + [anon_sym_LR_DQUOTE] = ACTIONS(2733), + [anon_sym_uR_DQUOTE] = ACTIONS(2733), + [anon_sym_UR_DQUOTE] = ACTIONS(2733), + [anon_sym_u8R_DQUOTE] = ACTIONS(2733), + [anon_sym_co_await] = ACTIONS(2731), + [anon_sym_new] = ACTIONS(2731), + [anon_sym_requires] = ACTIONS(2731), + [sym_this] = ACTIONS(2731), + }, + [374] = { + [ts_builtin_sym_end] = ACTIONS(2745), + [sym_identifier] = ACTIONS(2743), + [aux_sym_preproc_include_token1] = ACTIONS(2743), + [aux_sym_preproc_def_token1] = ACTIONS(2743), + [aux_sym_preproc_if_token1] = ACTIONS(2743), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2743), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2743), + [sym_preproc_directive] = ACTIONS(2743), + [anon_sym_LPAREN2] = ACTIONS(2745), + [anon_sym_BANG] = ACTIONS(2745), + [anon_sym_TILDE] = ACTIONS(2745), + [anon_sym_DASH] = ACTIONS(2743), + [anon_sym_PLUS] = ACTIONS(2743), + [anon_sym_STAR] = ACTIONS(2745), + [anon_sym_AMP_AMP] = ACTIONS(2745), + [anon_sym_AMP] = ACTIONS(2743), + [anon_sym_SEMI] = ACTIONS(2745), + [anon_sym___extension__] = ACTIONS(2743), + [anon_sym_typedef] = ACTIONS(2743), + [anon_sym_virtual] = ACTIONS(2743), + [anon_sym_extern] = ACTIONS(2743), + [anon_sym___attribute__] = ACTIONS(2743), + [anon_sym___attribute] = ACTIONS(2743), + [anon_sym_using] = ACTIONS(2743), + [anon_sym_COLON_COLON] = ACTIONS(2745), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2745), + [anon_sym___declspec] = ACTIONS(2743), + [anon_sym___based] = ACTIONS(2743), + [anon_sym___cdecl] = ACTIONS(2743), + [anon_sym___clrcall] = ACTIONS(2743), + [anon_sym___stdcall] = ACTIONS(2743), + [anon_sym___fastcall] = ACTIONS(2743), + [anon_sym___thiscall] = ACTIONS(2743), + [anon_sym___vectorcall] = ACTIONS(2743), + [anon_sym_LBRACE] = ACTIONS(2745), + [anon_sym_signed] = ACTIONS(2743), + [anon_sym_unsigned] = ACTIONS(2743), + [anon_sym_long] = ACTIONS(2743), + [anon_sym_short] = ACTIONS(2743), + [anon_sym_LBRACK] = ACTIONS(2743), + [anon_sym_static] = ACTIONS(2743), + [anon_sym_register] = ACTIONS(2743), + [anon_sym_inline] = ACTIONS(2743), + [anon_sym___inline] = ACTIONS(2743), + [anon_sym___inline__] = ACTIONS(2743), + [anon_sym___forceinline] = ACTIONS(2743), + [anon_sym_thread_local] = ACTIONS(2743), + [anon_sym___thread] = ACTIONS(2743), + [anon_sym_const] = ACTIONS(2743), + [anon_sym_constexpr] = ACTIONS(2743), + [anon_sym_volatile] = ACTIONS(2743), + [anon_sym_restrict] = ACTIONS(2743), + [anon_sym___restrict__] = ACTIONS(2743), + [anon_sym__Atomic] = ACTIONS(2743), + [anon_sym__Noreturn] = ACTIONS(2743), + [anon_sym_noreturn] = ACTIONS(2743), + [anon_sym__Nonnull] = ACTIONS(2743), + [anon_sym_mutable] = ACTIONS(2743), + [anon_sym_constinit] = ACTIONS(2743), + [anon_sym_consteval] = ACTIONS(2743), + [anon_sym_alignas] = ACTIONS(2743), + [anon_sym__Alignas] = ACTIONS(2743), + [sym_primitive_type] = ACTIONS(2743), + [anon_sym_enum] = ACTIONS(2743), + [anon_sym_class] = ACTIONS(2743), + [anon_sym_struct] = ACTIONS(2743), + [anon_sym_union] = ACTIONS(2743), + [anon_sym_if] = ACTIONS(2743), + [anon_sym_else] = ACTIONS(2743), + [anon_sym_switch] = ACTIONS(2743), + [anon_sym_case] = ACTIONS(2743), + [anon_sym_default] = ACTIONS(2743), + [anon_sym_while] = ACTIONS(2743), + [anon_sym_do] = ACTIONS(2743), + [anon_sym_for] = ACTIONS(2743), + [anon_sym_return] = ACTIONS(2743), + [anon_sym_break] = ACTIONS(2743), + [anon_sym_continue] = ACTIONS(2743), + [anon_sym_goto] = ACTIONS(2743), + [anon_sym___try] = ACTIONS(2743), + [anon_sym___leave] = ACTIONS(2743), + [anon_sym_not] = ACTIONS(2743), + [anon_sym_compl] = ACTIONS(2743), + [anon_sym_DASH_DASH] = ACTIONS(2745), + [anon_sym_PLUS_PLUS] = ACTIONS(2745), + [anon_sym_sizeof] = ACTIONS(2743), + [anon_sym___alignof__] = ACTIONS(2743), + [anon_sym___alignof] = ACTIONS(2743), + [anon_sym__alignof] = ACTIONS(2743), + [anon_sym_alignof] = ACTIONS(2743), + [anon_sym__Alignof] = ACTIONS(2743), + [anon_sym_offsetof] = ACTIONS(2743), + [anon_sym__Generic] = ACTIONS(2743), + [anon_sym_asm] = ACTIONS(2743), + [anon_sym___asm__] = ACTIONS(2743), + [anon_sym___asm] = ACTIONS(2743), + [sym_number_literal] = ACTIONS(2745), + [anon_sym_L_SQUOTE] = ACTIONS(2745), + [anon_sym_u_SQUOTE] = ACTIONS(2745), + [anon_sym_U_SQUOTE] = ACTIONS(2745), + [anon_sym_u8_SQUOTE] = ACTIONS(2745), + [anon_sym_SQUOTE] = ACTIONS(2745), + [anon_sym_L_DQUOTE] = ACTIONS(2745), + [anon_sym_u_DQUOTE] = ACTIONS(2745), + [anon_sym_U_DQUOTE] = ACTIONS(2745), + [anon_sym_u8_DQUOTE] = ACTIONS(2745), + [anon_sym_DQUOTE] = ACTIONS(2745), + [sym_true] = ACTIONS(2743), + [sym_false] = ACTIONS(2743), + [anon_sym_NULL] = ACTIONS(2743), + [anon_sym_nullptr] = ACTIONS(2743), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2743), + [anon_sym_decltype] = ACTIONS(2743), + [anon_sym_explicit] = ACTIONS(2743), + [anon_sym_typename] = ACTIONS(2743), + [anon_sym_export] = ACTIONS(2743), + [anon_sym_module] = ACTIONS(2743), + [anon_sym_import] = ACTIONS(2743), + [anon_sym_template] = ACTIONS(2743), + [anon_sym_operator] = ACTIONS(2743), + [anon_sym_try] = ACTIONS(2743), + [anon_sym_delete] = ACTIONS(2743), + [anon_sym_throw] = ACTIONS(2743), + [anon_sym_namespace] = ACTIONS(2743), + [anon_sym_static_assert] = ACTIONS(2743), + [anon_sym_concept] = ACTIONS(2743), + [anon_sym_co_return] = ACTIONS(2743), + [anon_sym_co_yield] = ACTIONS(2743), + [anon_sym_R_DQUOTE] = ACTIONS(2745), + [anon_sym_LR_DQUOTE] = ACTIONS(2745), + [anon_sym_uR_DQUOTE] = ACTIONS(2745), + [anon_sym_UR_DQUOTE] = ACTIONS(2745), + [anon_sym_u8R_DQUOTE] = ACTIONS(2745), + [anon_sym_co_await] = ACTIONS(2743), + [anon_sym_new] = ACTIONS(2743), + [anon_sym_requires] = ACTIONS(2743), + [sym_this] = ACTIONS(2743), + }, + [375] = { + [ts_builtin_sym_end] = ACTIONS(2745), + [sym_identifier] = ACTIONS(2743), + [aux_sym_preproc_include_token1] = ACTIONS(2743), + [aux_sym_preproc_def_token1] = ACTIONS(2743), + [aux_sym_preproc_if_token1] = ACTIONS(2743), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2743), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2743), + [sym_preproc_directive] = ACTIONS(2743), + [anon_sym_LPAREN2] = ACTIONS(2745), + [anon_sym_BANG] = ACTIONS(2745), + [anon_sym_TILDE] = ACTIONS(2745), + [anon_sym_DASH] = ACTIONS(2743), + [anon_sym_PLUS] = ACTIONS(2743), + [anon_sym_STAR] = ACTIONS(2745), + [anon_sym_AMP_AMP] = ACTIONS(2745), + [anon_sym_AMP] = ACTIONS(2743), + [anon_sym_SEMI] = ACTIONS(2745), + [anon_sym___extension__] = ACTIONS(2743), + [anon_sym_typedef] = ACTIONS(2743), + [anon_sym_virtual] = ACTIONS(2743), + [anon_sym_extern] = ACTIONS(2743), + [anon_sym___attribute__] = ACTIONS(2743), + [anon_sym___attribute] = ACTIONS(2743), + [anon_sym_using] = ACTIONS(2743), + [anon_sym_COLON_COLON] = ACTIONS(2745), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2745), + [anon_sym___declspec] = ACTIONS(2743), + [anon_sym___based] = ACTIONS(2743), + [anon_sym___cdecl] = ACTIONS(2743), + [anon_sym___clrcall] = ACTIONS(2743), + [anon_sym___stdcall] = ACTIONS(2743), + [anon_sym___fastcall] = ACTIONS(2743), + [anon_sym___thiscall] = ACTIONS(2743), + [anon_sym___vectorcall] = ACTIONS(2743), + [anon_sym_LBRACE] = ACTIONS(2745), + [anon_sym_signed] = ACTIONS(2743), + [anon_sym_unsigned] = ACTIONS(2743), + [anon_sym_long] = ACTIONS(2743), + [anon_sym_short] = ACTIONS(2743), + [anon_sym_LBRACK] = ACTIONS(2743), + [anon_sym_static] = ACTIONS(2743), + [anon_sym_register] = ACTIONS(2743), + [anon_sym_inline] = ACTIONS(2743), + [anon_sym___inline] = ACTIONS(2743), + [anon_sym___inline__] = ACTIONS(2743), + [anon_sym___forceinline] = ACTIONS(2743), + [anon_sym_thread_local] = ACTIONS(2743), + [anon_sym___thread] = ACTIONS(2743), + [anon_sym_const] = ACTIONS(2743), + [anon_sym_constexpr] = ACTIONS(2743), + [anon_sym_volatile] = ACTIONS(2743), + [anon_sym_restrict] = ACTIONS(2743), + [anon_sym___restrict__] = ACTIONS(2743), + [anon_sym__Atomic] = ACTIONS(2743), + [anon_sym__Noreturn] = ACTIONS(2743), + [anon_sym_noreturn] = ACTIONS(2743), + [anon_sym__Nonnull] = ACTIONS(2743), + [anon_sym_mutable] = ACTIONS(2743), + [anon_sym_constinit] = ACTIONS(2743), + [anon_sym_consteval] = ACTIONS(2743), + [anon_sym_alignas] = ACTIONS(2743), + [anon_sym__Alignas] = ACTIONS(2743), + [sym_primitive_type] = ACTIONS(2743), + [anon_sym_enum] = ACTIONS(2743), + [anon_sym_class] = ACTIONS(2743), + [anon_sym_struct] = ACTIONS(2743), + [anon_sym_union] = ACTIONS(2743), + [anon_sym_if] = ACTIONS(2743), + [anon_sym_else] = ACTIONS(2743), + [anon_sym_switch] = ACTIONS(2743), + [anon_sym_case] = ACTIONS(2743), + [anon_sym_default] = ACTIONS(2743), + [anon_sym_while] = ACTIONS(2743), + [anon_sym_do] = ACTIONS(2743), + [anon_sym_for] = ACTIONS(2743), + [anon_sym_return] = ACTIONS(2743), + [anon_sym_break] = ACTIONS(2743), + [anon_sym_continue] = ACTIONS(2743), + [anon_sym_goto] = ACTIONS(2743), + [anon_sym___try] = ACTIONS(2743), + [anon_sym___leave] = ACTIONS(2743), + [anon_sym_not] = ACTIONS(2743), + [anon_sym_compl] = ACTIONS(2743), + [anon_sym_DASH_DASH] = ACTIONS(2745), + [anon_sym_PLUS_PLUS] = ACTIONS(2745), + [anon_sym_sizeof] = ACTIONS(2743), + [anon_sym___alignof__] = ACTIONS(2743), + [anon_sym___alignof] = ACTIONS(2743), + [anon_sym__alignof] = ACTIONS(2743), + [anon_sym_alignof] = ACTIONS(2743), + [anon_sym__Alignof] = ACTIONS(2743), + [anon_sym_offsetof] = ACTIONS(2743), + [anon_sym__Generic] = ACTIONS(2743), + [anon_sym_asm] = ACTIONS(2743), + [anon_sym___asm__] = ACTIONS(2743), + [anon_sym___asm] = ACTIONS(2743), + [sym_number_literal] = ACTIONS(2745), + [anon_sym_L_SQUOTE] = ACTIONS(2745), + [anon_sym_u_SQUOTE] = ACTIONS(2745), + [anon_sym_U_SQUOTE] = ACTIONS(2745), + [anon_sym_u8_SQUOTE] = ACTIONS(2745), + [anon_sym_SQUOTE] = ACTIONS(2745), + [anon_sym_L_DQUOTE] = ACTIONS(2745), + [anon_sym_u_DQUOTE] = ACTIONS(2745), + [anon_sym_U_DQUOTE] = ACTIONS(2745), + [anon_sym_u8_DQUOTE] = ACTIONS(2745), + [anon_sym_DQUOTE] = ACTIONS(2745), + [sym_true] = ACTIONS(2743), + [sym_false] = ACTIONS(2743), + [anon_sym_NULL] = ACTIONS(2743), + [anon_sym_nullptr] = ACTIONS(2743), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2743), + [anon_sym_decltype] = ACTIONS(2743), + [anon_sym_explicit] = ACTIONS(2743), + [anon_sym_typename] = ACTIONS(2743), + [anon_sym_export] = ACTIONS(2743), + [anon_sym_module] = ACTIONS(2743), + [anon_sym_import] = ACTIONS(2743), + [anon_sym_template] = ACTIONS(2743), + [anon_sym_operator] = ACTIONS(2743), + [anon_sym_try] = ACTIONS(2743), + [anon_sym_delete] = ACTIONS(2743), + [anon_sym_throw] = ACTIONS(2743), + [anon_sym_namespace] = ACTIONS(2743), + [anon_sym_static_assert] = ACTIONS(2743), + [anon_sym_concept] = ACTIONS(2743), + [anon_sym_co_return] = ACTIONS(2743), + [anon_sym_co_yield] = ACTIONS(2743), + [anon_sym_R_DQUOTE] = ACTIONS(2745), + [anon_sym_LR_DQUOTE] = ACTIONS(2745), + [anon_sym_uR_DQUOTE] = ACTIONS(2745), + [anon_sym_UR_DQUOTE] = ACTIONS(2745), + [anon_sym_u8R_DQUOTE] = ACTIONS(2745), + [anon_sym_co_await] = ACTIONS(2743), + [anon_sym_new] = ACTIONS(2743), + [anon_sym_requires] = ACTIONS(2743), + [sym_this] = ACTIONS(2743), + }, + [376] = { + [sym_catch_clause] = STATE(232), + [aux_sym_constructor_try_statement_repeat1] = STATE(232), + [ts_builtin_sym_end] = ACTIONS(2588), + [sym_identifier] = ACTIONS(2586), + [aux_sym_preproc_include_token1] = ACTIONS(2586), + [aux_sym_preproc_def_token1] = ACTIONS(2586), + [aux_sym_preproc_if_token1] = ACTIONS(2586), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2586), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2586), + [sym_preproc_directive] = ACTIONS(2586), + [anon_sym_LPAREN2] = ACTIONS(2588), + [anon_sym_BANG] = ACTIONS(2588), + [anon_sym_TILDE] = ACTIONS(2588), + [anon_sym_DASH] = ACTIONS(2586), + [anon_sym_PLUS] = ACTIONS(2586), + [anon_sym_STAR] = ACTIONS(2588), + [anon_sym_AMP_AMP] = ACTIONS(2588), + [anon_sym_AMP] = ACTIONS(2586), + [anon_sym_SEMI] = ACTIONS(2588), + [anon_sym___extension__] = ACTIONS(2586), + [anon_sym_typedef] = ACTIONS(2586), + [anon_sym_virtual] = ACTIONS(2586), + [anon_sym_extern] = ACTIONS(2586), + [anon_sym___attribute__] = ACTIONS(2586), + [anon_sym___attribute] = ACTIONS(2586), + [anon_sym_using] = ACTIONS(2586), + [anon_sym_COLON_COLON] = ACTIONS(2588), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2588), + [anon_sym___declspec] = ACTIONS(2586), + [anon_sym___based] = ACTIONS(2586), + [anon_sym___cdecl] = ACTIONS(2586), + [anon_sym___clrcall] = ACTIONS(2586), + [anon_sym___stdcall] = ACTIONS(2586), + [anon_sym___fastcall] = ACTIONS(2586), + [anon_sym___thiscall] = ACTIONS(2586), + [anon_sym___vectorcall] = ACTIONS(2586), + [anon_sym_LBRACE] = ACTIONS(2588), + [anon_sym_signed] = ACTIONS(2586), + [anon_sym_unsigned] = ACTIONS(2586), + [anon_sym_long] = ACTIONS(2586), + [anon_sym_short] = ACTIONS(2586), + [anon_sym_LBRACK] = ACTIONS(2586), + [anon_sym_static] = ACTIONS(2586), + [anon_sym_register] = ACTIONS(2586), + [anon_sym_inline] = ACTIONS(2586), + [anon_sym___inline] = ACTIONS(2586), + [anon_sym___inline__] = ACTIONS(2586), + [anon_sym___forceinline] = ACTIONS(2586), + [anon_sym_thread_local] = ACTIONS(2586), + [anon_sym___thread] = ACTIONS(2586), + [anon_sym_const] = ACTIONS(2586), + [anon_sym_constexpr] = ACTIONS(2586), + [anon_sym_volatile] = ACTIONS(2586), + [anon_sym_restrict] = ACTIONS(2586), + [anon_sym___restrict__] = ACTIONS(2586), + [anon_sym__Atomic] = ACTIONS(2586), + [anon_sym__Noreturn] = ACTIONS(2586), + [anon_sym_noreturn] = ACTIONS(2586), + [anon_sym__Nonnull] = ACTIONS(2586), + [anon_sym_mutable] = ACTIONS(2586), + [anon_sym_constinit] = ACTIONS(2586), + [anon_sym_consteval] = ACTIONS(2586), + [anon_sym_alignas] = ACTIONS(2586), + [anon_sym__Alignas] = ACTIONS(2586), + [sym_primitive_type] = ACTIONS(2586), + [anon_sym_enum] = ACTIONS(2586), + [anon_sym_class] = ACTIONS(2586), + [anon_sym_struct] = ACTIONS(2586), + [anon_sym_union] = ACTIONS(2586), + [anon_sym_if] = ACTIONS(2586), + [anon_sym_switch] = ACTIONS(2586), + [anon_sym_case] = ACTIONS(2586), + [anon_sym_default] = ACTIONS(2586), + [anon_sym_while] = ACTIONS(2586), + [anon_sym_do] = ACTIONS(2586), + [anon_sym_for] = ACTIONS(2586), + [anon_sym_return] = ACTIONS(2586), + [anon_sym_break] = ACTIONS(2586), + [anon_sym_continue] = ACTIONS(2586), + [anon_sym_goto] = ACTIONS(2586), + [anon_sym_not] = ACTIONS(2586), + [anon_sym_compl] = ACTIONS(2586), + [anon_sym_DASH_DASH] = ACTIONS(2588), + [anon_sym_PLUS_PLUS] = ACTIONS(2588), + [anon_sym_sizeof] = ACTIONS(2586), + [anon_sym___alignof__] = ACTIONS(2586), + [anon_sym___alignof] = ACTIONS(2586), + [anon_sym__alignof] = ACTIONS(2586), + [anon_sym_alignof] = ACTIONS(2586), + [anon_sym__Alignof] = ACTIONS(2586), + [anon_sym_offsetof] = ACTIONS(2586), + [anon_sym__Generic] = ACTIONS(2586), + [anon_sym_asm] = ACTIONS(2586), + [anon_sym___asm__] = ACTIONS(2586), + [anon_sym___asm] = ACTIONS(2586), + [sym_number_literal] = ACTIONS(2588), + [anon_sym_L_SQUOTE] = ACTIONS(2588), + [anon_sym_u_SQUOTE] = ACTIONS(2588), + [anon_sym_U_SQUOTE] = ACTIONS(2588), + [anon_sym_u8_SQUOTE] = ACTIONS(2588), + [anon_sym_SQUOTE] = ACTIONS(2588), + [anon_sym_L_DQUOTE] = ACTIONS(2588), + [anon_sym_u_DQUOTE] = ACTIONS(2588), + [anon_sym_U_DQUOTE] = ACTIONS(2588), + [anon_sym_u8_DQUOTE] = ACTIONS(2588), + [anon_sym_DQUOTE] = ACTIONS(2588), + [sym_true] = ACTIONS(2586), + [sym_false] = ACTIONS(2586), + [anon_sym_NULL] = ACTIONS(2586), + [anon_sym_nullptr] = ACTIONS(2586), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2586), + [anon_sym_decltype] = ACTIONS(2586), + [anon_sym_explicit] = ACTIONS(2586), + [anon_sym_typename] = ACTIONS(2586), + [anon_sym_export] = ACTIONS(2586), + [anon_sym_module] = ACTIONS(2586), + [anon_sym_import] = ACTIONS(2586), + [anon_sym_template] = ACTIONS(2586), + [anon_sym_operator] = ACTIONS(2586), + [anon_sym_try] = ACTIONS(2586), + [anon_sym_delete] = ACTIONS(2586), + [anon_sym_throw] = ACTIONS(2586), + [anon_sym_namespace] = ACTIONS(2586), + [anon_sym_static_assert] = ACTIONS(2586), + [anon_sym_concept] = ACTIONS(2586), + [anon_sym_co_return] = ACTIONS(2586), + [anon_sym_co_yield] = ACTIONS(2586), + [anon_sym_catch] = ACTIONS(2594), + [anon_sym_R_DQUOTE] = ACTIONS(2588), + [anon_sym_LR_DQUOTE] = ACTIONS(2588), + [anon_sym_uR_DQUOTE] = ACTIONS(2588), + [anon_sym_UR_DQUOTE] = ACTIONS(2588), + [anon_sym_u8R_DQUOTE] = ACTIONS(2588), + [anon_sym_co_await] = ACTIONS(2586), + [anon_sym_new] = ACTIONS(2586), + [anon_sym_requires] = ACTIONS(2586), + [sym_this] = ACTIONS(2586), + }, + [377] = { + [sym_type_qualifier] = STATE(3954), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(4767), + [sym_sized_type_specifier] = STATE(2747), + [sym_enum_specifier] = STATE(2747), + [sym_struct_specifier] = STATE(2747), + [sym_union_specifier] = STATE(2747), + [sym_expression] = STATE(4467), + [sym__string] = STATE(4825), + [sym_conditional_expression] = STATE(4856), + [sym_assignment_expression] = STATE(4856), + [sym_pointer_expression] = STATE(3701), + [sym_unary_expression] = STATE(4856), + [sym_binary_expression] = STATE(4856), + [sym_update_expression] = STATE(4856), + [sym_cast_expression] = STATE(4856), + [sym_type_descriptor] = STATE(7056), + [sym_sizeof_expression] = STATE(4856), + [sym_alignof_expression] = STATE(4856), + [sym_offsetof_expression] = STATE(4856), + [sym_generic_expression] = STATE(4856), + [sym_subscript_expression] = STATE(3701), + [sym_call_expression] = STATE(3701), + [sym_gnu_asm_expression] = STATE(4856), + [sym_extension_expression] = STATE(4856), + [sym_field_expression] = STATE(3701), + [sym_compound_literal_expression] = STATE(4856), + [sym_parenthesized_expression] = STATE(3701), + [sym_char_literal] = STATE(4825), + [sym_concatenated_string] = STATE(4825), + [sym_string_literal] = STATE(3812), + [sym_null] = STATE(4856), + [sym_placeholder_type_specifier] = STATE(2747), + [sym_decltype_auto] = STATE(2733), + [sym_decltype] = STATE(2621), + [sym_class_specifier] = STATE(2747), + [sym__class_name] = STATE(7816), + [sym_dependent_type] = STATE(2747), + [sym_template_type] = STATE(5365), + [sym_template_function] = STATE(4856), + [sym_raw_string_literal] = STATE(3812), + [sym_co_await_expression] = STATE(4856), + [sym_new_expression] = STATE(4856), + [sym_delete_expression] = STATE(4856), + [sym_requires_clause] = STATE(4856), + [sym_requires_expression] = STATE(4856), + [sym_lambda_expression] = STATE(4856), + [sym_lambda_capture_specifier] = STATE(5489), + [sym_fold_expression] = STATE(4856), + [sym_parameter_pack_expansion] = STATE(4856), + [sym_type_parameter_pack_expansion] = STATE(7293), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5742), + [sym_qualified_identifier] = STATE(3701), + [sym_qualified_type_identifier] = STATE(5382), + [sym_user_defined_literal] = STATE(3701), + [aux_sym__type_definition_type_repeat1] = STATE(3954), + [aux_sym_sized_type_specifier_repeat1] = STATE(4313), + [sym_identifier] = ACTIONS(3128), + [anon_sym_LPAREN2] = ACTIONS(3130), + [anon_sym_BANG] = ACTIONS(3132), + [anon_sym_TILDE] = ACTIONS(3132), + [anon_sym_DASH] = ACTIONS(3134), + [anon_sym_PLUS] = ACTIONS(3134), + [anon_sym_STAR] = ACTIONS(3136), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym___extension__] = ACTIONS(3138), + [anon_sym_COLON_COLON] = ACTIONS(3140), + [anon_sym_signed] = ACTIONS(3142), + [anon_sym_unsigned] = ACTIONS(3142), + [anon_sym_long] = ACTIONS(3142), + [anon_sym_short] = ACTIONS(3142), + [anon_sym_LBRACK] = ACTIONS(2020), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(69), + [anon_sym__Alignas] = ACTIONS(69), + [sym_primitive_type] = ACTIONS(3144), + [anon_sym_enum] = ACTIONS(3146), + [anon_sym_class] = ACTIONS(3148), + [anon_sym_struct] = ACTIONS(3150), + [anon_sym_union] = ACTIONS(3152), + [anon_sym_not] = ACTIONS(3134), + [anon_sym_compl] = ACTIONS(3134), + [anon_sym_DASH_DASH] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_sizeof] = ACTIONS(3156), + [anon_sym___alignof__] = ACTIONS(3158), + [anon_sym___alignof] = ACTIONS(3158), + [anon_sym__alignof] = ACTIONS(3158), + [anon_sym_alignof] = ACTIONS(3158), + [anon_sym__Alignof] = ACTIONS(3158), + [anon_sym_offsetof] = ACTIONS(3160), + [anon_sym__Generic] = ACTIONS(3162), + [anon_sym_asm] = ACTIONS(3164), + [anon_sym___asm__] = ACTIONS(3164), + [anon_sym___asm] = ACTIONS(3164), + [sym_number_literal] = ACTIONS(3166), + [anon_sym_L_SQUOTE] = ACTIONS(3168), + [anon_sym_u_SQUOTE] = ACTIONS(3168), + [anon_sym_U_SQUOTE] = ACTIONS(3168), + [anon_sym_u8_SQUOTE] = ACTIONS(3168), + [anon_sym_SQUOTE] = ACTIONS(3168), + [anon_sym_L_DQUOTE] = ACTIONS(3170), + [anon_sym_u_DQUOTE] = ACTIONS(3170), + [anon_sym_U_DQUOTE] = ACTIONS(3170), + [anon_sym_u8_DQUOTE] = ACTIONS(3170), + [anon_sym_DQUOTE] = ACTIONS(3170), + [sym_true] = ACTIONS(3172), + [sym_false] = ACTIONS(3172), + [anon_sym_NULL] = ACTIONS(3174), + [anon_sym_nullptr] = ACTIONS(3174), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3176), + [anon_sym_decltype] = ACTIONS(3178), + [anon_sym_typename] = ACTIONS(3180), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_GT2] = ACTIONS(3182), + [anon_sym_delete] = ACTIONS(3184), + [anon_sym_R_DQUOTE] = ACTIONS(3186), + [anon_sym_LR_DQUOTE] = ACTIONS(3186), + [anon_sym_uR_DQUOTE] = ACTIONS(3186), + [anon_sym_UR_DQUOTE] = ACTIONS(3186), + [anon_sym_u8R_DQUOTE] = ACTIONS(3186), + [anon_sym_co_await] = ACTIONS(3188), + [anon_sym_new] = ACTIONS(3190), + [anon_sym_requires] = ACTIONS(3192), + [sym_this] = ACTIONS(3172), + }, + [378] = { [ts_builtin_sym_end] = ACTIONS(2761), [sym_identifier] = ACTIONS(2759), [aux_sym_preproc_include_token1] = ACTIONS(2759), @@ -96586,1078 +98413,238 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2759), [sym_this] = ACTIONS(2759), }, - [368] = { - [ts_builtin_sym_end] = ACTIONS(2769), - [sym_identifier] = ACTIONS(2767), - [aux_sym_preproc_include_token1] = ACTIONS(2767), - [aux_sym_preproc_def_token1] = ACTIONS(2767), - [aux_sym_preproc_if_token1] = ACTIONS(2767), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2767), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2767), - [sym_preproc_directive] = ACTIONS(2767), - [anon_sym_LPAREN2] = ACTIONS(2769), - [anon_sym_BANG] = ACTIONS(2769), - [anon_sym_TILDE] = ACTIONS(2769), - [anon_sym_DASH] = ACTIONS(2767), - [anon_sym_PLUS] = ACTIONS(2767), - [anon_sym_STAR] = ACTIONS(2769), - [anon_sym_AMP_AMP] = ACTIONS(2769), - [anon_sym_AMP] = ACTIONS(2767), - [anon_sym_SEMI] = ACTIONS(2769), - [anon_sym___extension__] = ACTIONS(2767), - [anon_sym_typedef] = ACTIONS(2767), - [anon_sym_virtual] = ACTIONS(2767), - [anon_sym_extern] = ACTIONS(2767), - [anon_sym___attribute__] = ACTIONS(2767), - [anon_sym___attribute] = ACTIONS(2767), - [anon_sym_using] = ACTIONS(2767), - [anon_sym_COLON_COLON] = ACTIONS(2769), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2769), - [anon_sym___declspec] = ACTIONS(2767), - [anon_sym___based] = ACTIONS(2767), - [anon_sym___cdecl] = ACTIONS(2767), - [anon_sym___clrcall] = ACTIONS(2767), - [anon_sym___stdcall] = ACTIONS(2767), - [anon_sym___fastcall] = ACTIONS(2767), - [anon_sym___thiscall] = ACTIONS(2767), - [anon_sym___vectorcall] = ACTIONS(2767), - [anon_sym_LBRACE] = ACTIONS(2769), - [anon_sym_signed] = ACTIONS(2767), - [anon_sym_unsigned] = ACTIONS(2767), - [anon_sym_long] = ACTIONS(2767), - [anon_sym_short] = ACTIONS(2767), - [anon_sym_LBRACK] = ACTIONS(2767), - [anon_sym_static] = ACTIONS(2767), - [anon_sym_register] = ACTIONS(2767), - [anon_sym_inline] = ACTIONS(2767), - [anon_sym___inline] = ACTIONS(2767), - [anon_sym___inline__] = ACTIONS(2767), - [anon_sym___forceinline] = ACTIONS(2767), - [anon_sym_thread_local] = ACTIONS(2767), - [anon_sym___thread] = ACTIONS(2767), - [anon_sym_const] = ACTIONS(2767), - [anon_sym_constexpr] = ACTIONS(2767), - [anon_sym_volatile] = ACTIONS(2767), - [anon_sym_restrict] = ACTIONS(2767), - [anon_sym___restrict__] = ACTIONS(2767), - [anon_sym__Atomic] = ACTIONS(2767), - [anon_sym__Noreturn] = ACTIONS(2767), - [anon_sym_noreturn] = ACTIONS(2767), - [anon_sym__Nonnull] = ACTIONS(2767), - [anon_sym_mutable] = ACTIONS(2767), - [anon_sym_constinit] = ACTIONS(2767), - [anon_sym_consteval] = ACTIONS(2767), - [anon_sym_alignas] = ACTIONS(2767), - [anon_sym__Alignas] = ACTIONS(2767), - [sym_primitive_type] = ACTIONS(2767), - [anon_sym_enum] = ACTIONS(2767), - [anon_sym_class] = ACTIONS(2767), - [anon_sym_struct] = ACTIONS(2767), - [anon_sym_union] = ACTIONS(2767), - [anon_sym_if] = ACTIONS(2767), - [anon_sym_else] = ACTIONS(2767), - [anon_sym_switch] = ACTIONS(2767), - [anon_sym_case] = ACTIONS(2767), - [anon_sym_default] = ACTIONS(2767), - [anon_sym_while] = ACTIONS(2767), - [anon_sym_do] = ACTIONS(2767), - [anon_sym_for] = ACTIONS(2767), - [anon_sym_return] = ACTIONS(2767), - [anon_sym_break] = ACTIONS(2767), - [anon_sym_continue] = ACTIONS(2767), - [anon_sym_goto] = ACTIONS(2767), - [anon_sym___try] = ACTIONS(2767), - [anon_sym___leave] = ACTIONS(2767), - [anon_sym_not] = ACTIONS(2767), - [anon_sym_compl] = ACTIONS(2767), - [anon_sym_DASH_DASH] = ACTIONS(2769), - [anon_sym_PLUS_PLUS] = ACTIONS(2769), - [anon_sym_sizeof] = ACTIONS(2767), - [anon_sym___alignof__] = ACTIONS(2767), - [anon_sym___alignof] = ACTIONS(2767), - [anon_sym__alignof] = ACTIONS(2767), - [anon_sym_alignof] = ACTIONS(2767), - [anon_sym__Alignof] = ACTIONS(2767), - [anon_sym_offsetof] = ACTIONS(2767), - [anon_sym__Generic] = ACTIONS(2767), - [anon_sym_asm] = ACTIONS(2767), - [anon_sym___asm__] = ACTIONS(2767), - [anon_sym___asm] = ACTIONS(2767), - [sym_number_literal] = ACTIONS(2769), - [anon_sym_L_SQUOTE] = ACTIONS(2769), - [anon_sym_u_SQUOTE] = ACTIONS(2769), - [anon_sym_U_SQUOTE] = ACTIONS(2769), - [anon_sym_u8_SQUOTE] = ACTIONS(2769), - [anon_sym_SQUOTE] = ACTIONS(2769), - [anon_sym_L_DQUOTE] = ACTIONS(2769), - [anon_sym_u_DQUOTE] = ACTIONS(2769), - [anon_sym_U_DQUOTE] = ACTIONS(2769), - [anon_sym_u8_DQUOTE] = ACTIONS(2769), - [anon_sym_DQUOTE] = ACTIONS(2769), - [sym_true] = ACTIONS(2767), - [sym_false] = ACTIONS(2767), - [anon_sym_NULL] = ACTIONS(2767), - [anon_sym_nullptr] = ACTIONS(2767), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2767), - [anon_sym_decltype] = ACTIONS(2767), - [anon_sym_explicit] = ACTIONS(2767), - [anon_sym_typename] = ACTIONS(2767), - [anon_sym_export] = ACTIONS(2767), - [anon_sym_module] = ACTIONS(2767), - [anon_sym_import] = ACTIONS(2767), - [anon_sym_template] = ACTIONS(2767), - [anon_sym_operator] = ACTIONS(2767), - [anon_sym_try] = ACTIONS(2767), - [anon_sym_delete] = ACTIONS(2767), - [anon_sym_throw] = ACTIONS(2767), - [anon_sym_namespace] = ACTIONS(2767), - [anon_sym_static_assert] = ACTIONS(2767), - [anon_sym_concept] = ACTIONS(2767), - [anon_sym_co_return] = ACTIONS(2767), - [anon_sym_co_yield] = ACTIONS(2767), - [anon_sym_R_DQUOTE] = ACTIONS(2769), - [anon_sym_LR_DQUOTE] = ACTIONS(2769), - [anon_sym_uR_DQUOTE] = ACTIONS(2769), - [anon_sym_UR_DQUOTE] = ACTIONS(2769), - [anon_sym_u8R_DQUOTE] = ACTIONS(2769), - [anon_sym_co_await] = ACTIONS(2767), - [anon_sym_new] = ACTIONS(2767), - [anon_sym_requires] = ACTIONS(2767), - [sym_this] = ACTIONS(2767), - }, - [369] = { - [ts_builtin_sym_end] = ACTIONS(2769), - [sym_identifier] = ACTIONS(2767), - [aux_sym_preproc_include_token1] = ACTIONS(2767), - [aux_sym_preproc_def_token1] = ACTIONS(2767), - [aux_sym_preproc_if_token1] = ACTIONS(2767), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2767), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2767), - [sym_preproc_directive] = ACTIONS(2767), - [anon_sym_LPAREN2] = ACTIONS(2769), - [anon_sym_BANG] = ACTIONS(2769), - [anon_sym_TILDE] = ACTIONS(2769), - [anon_sym_DASH] = ACTIONS(2767), - [anon_sym_PLUS] = ACTIONS(2767), - [anon_sym_STAR] = ACTIONS(2769), - [anon_sym_AMP_AMP] = ACTIONS(2769), - [anon_sym_AMP] = ACTIONS(2767), - [anon_sym_SEMI] = ACTIONS(2769), - [anon_sym___extension__] = ACTIONS(2767), - [anon_sym_typedef] = ACTIONS(2767), - [anon_sym_virtual] = ACTIONS(2767), - [anon_sym_extern] = ACTIONS(2767), - [anon_sym___attribute__] = ACTIONS(2767), - [anon_sym___attribute] = ACTIONS(2767), - [anon_sym_using] = ACTIONS(2767), - [anon_sym_COLON_COLON] = ACTIONS(2769), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2769), - [anon_sym___declspec] = ACTIONS(2767), - [anon_sym___based] = ACTIONS(2767), - [anon_sym___cdecl] = ACTIONS(2767), - [anon_sym___clrcall] = ACTIONS(2767), - [anon_sym___stdcall] = ACTIONS(2767), - [anon_sym___fastcall] = ACTIONS(2767), - [anon_sym___thiscall] = ACTIONS(2767), - [anon_sym___vectorcall] = ACTIONS(2767), - [anon_sym_LBRACE] = ACTIONS(2769), - [anon_sym_signed] = ACTIONS(2767), - [anon_sym_unsigned] = ACTIONS(2767), - [anon_sym_long] = ACTIONS(2767), - [anon_sym_short] = ACTIONS(2767), - [anon_sym_LBRACK] = ACTIONS(2767), - [anon_sym_static] = ACTIONS(2767), - [anon_sym_register] = ACTIONS(2767), - [anon_sym_inline] = ACTIONS(2767), - [anon_sym___inline] = ACTIONS(2767), - [anon_sym___inline__] = ACTIONS(2767), - [anon_sym___forceinline] = ACTIONS(2767), - [anon_sym_thread_local] = ACTIONS(2767), - [anon_sym___thread] = ACTIONS(2767), - [anon_sym_const] = ACTIONS(2767), - [anon_sym_constexpr] = ACTIONS(2767), - [anon_sym_volatile] = ACTIONS(2767), - [anon_sym_restrict] = ACTIONS(2767), - [anon_sym___restrict__] = ACTIONS(2767), - [anon_sym__Atomic] = ACTIONS(2767), - [anon_sym__Noreturn] = ACTIONS(2767), - [anon_sym_noreturn] = ACTIONS(2767), - [anon_sym__Nonnull] = ACTIONS(2767), - [anon_sym_mutable] = ACTIONS(2767), - [anon_sym_constinit] = ACTIONS(2767), - [anon_sym_consteval] = ACTIONS(2767), - [anon_sym_alignas] = ACTIONS(2767), - [anon_sym__Alignas] = ACTIONS(2767), - [sym_primitive_type] = ACTIONS(2767), - [anon_sym_enum] = ACTIONS(2767), - [anon_sym_class] = ACTIONS(2767), - [anon_sym_struct] = ACTIONS(2767), - [anon_sym_union] = ACTIONS(2767), - [anon_sym_if] = ACTIONS(2767), - [anon_sym_else] = ACTIONS(2767), - [anon_sym_switch] = ACTIONS(2767), - [anon_sym_case] = ACTIONS(2767), - [anon_sym_default] = ACTIONS(2767), - [anon_sym_while] = ACTIONS(2767), - [anon_sym_do] = ACTIONS(2767), - [anon_sym_for] = ACTIONS(2767), - [anon_sym_return] = ACTIONS(2767), - [anon_sym_break] = ACTIONS(2767), - [anon_sym_continue] = ACTIONS(2767), - [anon_sym_goto] = ACTIONS(2767), - [anon_sym___try] = ACTIONS(2767), - [anon_sym___leave] = ACTIONS(2767), - [anon_sym_not] = ACTIONS(2767), - [anon_sym_compl] = ACTIONS(2767), - [anon_sym_DASH_DASH] = ACTIONS(2769), - [anon_sym_PLUS_PLUS] = ACTIONS(2769), - [anon_sym_sizeof] = ACTIONS(2767), - [anon_sym___alignof__] = ACTIONS(2767), - [anon_sym___alignof] = ACTIONS(2767), - [anon_sym__alignof] = ACTIONS(2767), - [anon_sym_alignof] = ACTIONS(2767), - [anon_sym__Alignof] = ACTIONS(2767), - [anon_sym_offsetof] = ACTIONS(2767), - [anon_sym__Generic] = ACTIONS(2767), - [anon_sym_asm] = ACTIONS(2767), - [anon_sym___asm__] = ACTIONS(2767), - [anon_sym___asm] = ACTIONS(2767), - [sym_number_literal] = ACTIONS(2769), - [anon_sym_L_SQUOTE] = ACTIONS(2769), - [anon_sym_u_SQUOTE] = ACTIONS(2769), - [anon_sym_U_SQUOTE] = ACTIONS(2769), - [anon_sym_u8_SQUOTE] = ACTIONS(2769), - [anon_sym_SQUOTE] = ACTIONS(2769), - [anon_sym_L_DQUOTE] = ACTIONS(2769), - [anon_sym_u_DQUOTE] = ACTIONS(2769), - [anon_sym_U_DQUOTE] = ACTIONS(2769), - [anon_sym_u8_DQUOTE] = ACTIONS(2769), - [anon_sym_DQUOTE] = ACTIONS(2769), - [sym_true] = ACTIONS(2767), - [sym_false] = ACTIONS(2767), - [anon_sym_NULL] = ACTIONS(2767), - [anon_sym_nullptr] = ACTIONS(2767), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2767), - [anon_sym_decltype] = ACTIONS(2767), - [anon_sym_explicit] = ACTIONS(2767), - [anon_sym_typename] = ACTIONS(2767), - [anon_sym_export] = ACTIONS(2767), - [anon_sym_module] = ACTIONS(2767), - [anon_sym_import] = ACTIONS(2767), - [anon_sym_template] = ACTIONS(2767), - [anon_sym_operator] = ACTIONS(2767), - [anon_sym_try] = ACTIONS(2767), - [anon_sym_delete] = ACTIONS(2767), - [anon_sym_throw] = ACTIONS(2767), - [anon_sym_namespace] = ACTIONS(2767), - [anon_sym_static_assert] = ACTIONS(2767), - [anon_sym_concept] = ACTIONS(2767), - [anon_sym_co_return] = ACTIONS(2767), - [anon_sym_co_yield] = ACTIONS(2767), - [anon_sym_R_DQUOTE] = ACTIONS(2769), - [anon_sym_LR_DQUOTE] = ACTIONS(2769), - [anon_sym_uR_DQUOTE] = ACTIONS(2769), - [anon_sym_UR_DQUOTE] = ACTIONS(2769), - [anon_sym_u8R_DQUOTE] = ACTIONS(2769), - [anon_sym_co_await] = ACTIONS(2767), - [anon_sym_new] = ACTIONS(2767), - [anon_sym_requires] = ACTIONS(2767), - [sym_this] = ACTIONS(2767), - }, - [370] = { - [sym_catch_clause] = STATE(231), - [aux_sym_constructor_try_statement_repeat1] = STATE(231), - [ts_builtin_sym_end] = ACTIONS(2549), - [sym_identifier] = ACTIONS(2547), - [aux_sym_preproc_include_token1] = ACTIONS(2547), - [aux_sym_preproc_def_token1] = ACTIONS(2547), - [aux_sym_preproc_if_token1] = ACTIONS(2547), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2547), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2547), - [sym_preproc_directive] = ACTIONS(2547), - [anon_sym_LPAREN2] = ACTIONS(2549), - [anon_sym_BANG] = ACTIONS(2549), - [anon_sym_TILDE] = ACTIONS(2549), - [anon_sym_DASH] = ACTIONS(2547), - [anon_sym_PLUS] = ACTIONS(2547), - [anon_sym_STAR] = ACTIONS(2549), - [anon_sym_AMP_AMP] = ACTIONS(2549), - [anon_sym_AMP] = ACTIONS(2547), - [anon_sym_SEMI] = ACTIONS(2549), - [anon_sym___extension__] = ACTIONS(2547), - [anon_sym_typedef] = ACTIONS(2547), - [anon_sym_virtual] = ACTIONS(2547), - [anon_sym_extern] = ACTIONS(2547), - [anon_sym___attribute__] = ACTIONS(2547), - [anon_sym___attribute] = ACTIONS(2547), - [anon_sym_using] = ACTIONS(2547), - [anon_sym_COLON_COLON] = ACTIONS(2549), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2549), - [anon_sym___declspec] = ACTIONS(2547), - [anon_sym___based] = ACTIONS(2547), - [anon_sym___cdecl] = ACTIONS(2547), - [anon_sym___clrcall] = ACTIONS(2547), - [anon_sym___stdcall] = ACTIONS(2547), - [anon_sym___fastcall] = ACTIONS(2547), - [anon_sym___thiscall] = ACTIONS(2547), - [anon_sym___vectorcall] = ACTIONS(2547), - [anon_sym_LBRACE] = ACTIONS(2549), - [anon_sym_signed] = ACTIONS(2547), - [anon_sym_unsigned] = ACTIONS(2547), - [anon_sym_long] = ACTIONS(2547), - [anon_sym_short] = ACTIONS(2547), - [anon_sym_LBRACK] = ACTIONS(2547), - [anon_sym_static] = ACTIONS(2547), - [anon_sym_register] = ACTIONS(2547), - [anon_sym_inline] = ACTIONS(2547), - [anon_sym___inline] = ACTIONS(2547), - [anon_sym___inline__] = ACTIONS(2547), - [anon_sym___forceinline] = ACTIONS(2547), - [anon_sym_thread_local] = ACTIONS(2547), - [anon_sym___thread] = ACTIONS(2547), - [anon_sym_const] = ACTIONS(2547), - [anon_sym_constexpr] = ACTIONS(2547), - [anon_sym_volatile] = ACTIONS(2547), - [anon_sym_restrict] = ACTIONS(2547), - [anon_sym___restrict__] = ACTIONS(2547), - [anon_sym__Atomic] = ACTIONS(2547), - [anon_sym__Noreturn] = ACTIONS(2547), - [anon_sym_noreturn] = ACTIONS(2547), - [anon_sym__Nonnull] = ACTIONS(2547), - [anon_sym_mutable] = ACTIONS(2547), - [anon_sym_constinit] = ACTIONS(2547), - [anon_sym_consteval] = ACTIONS(2547), - [anon_sym_alignas] = ACTIONS(2547), - [anon_sym__Alignas] = ACTIONS(2547), - [sym_primitive_type] = ACTIONS(2547), - [anon_sym_enum] = ACTIONS(2547), - [anon_sym_class] = ACTIONS(2547), - [anon_sym_struct] = ACTIONS(2547), - [anon_sym_union] = ACTIONS(2547), - [anon_sym_if] = ACTIONS(2547), - [anon_sym_switch] = ACTIONS(2547), - [anon_sym_case] = ACTIONS(2547), - [anon_sym_default] = ACTIONS(2547), - [anon_sym_while] = ACTIONS(2547), - [anon_sym_do] = ACTIONS(2547), - [anon_sym_for] = ACTIONS(2547), - [anon_sym_return] = ACTIONS(2547), - [anon_sym_break] = ACTIONS(2547), - [anon_sym_continue] = ACTIONS(2547), - [anon_sym_goto] = ACTIONS(2547), - [anon_sym_not] = ACTIONS(2547), - [anon_sym_compl] = ACTIONS(2547), - [anon_sym_DASH_DASH] = ACTIONS(2549), - [anon_sym_PLUS_PLUS] = ACTIONS(2549), - [anon_sym_sizeof] = ACTIONS(2547), - [anon_sym___alignof__] = ACTIONS(2547), - [anon_sym___alignof] = ACTIONS(2547), - [anon_sym__alignof] = ACTIONS(2547), - [anon_sym_alignof] = ACTIONS(2547), - [anon_sym__Alignof] = ACTIONS(2547), - [anon_sym_offsetof] = ACTIONS(2547), - [anon_sym__Generic] = ACTIONS(2547), - [anon_sym_asm] = ACTIONS(2547), - [anon_sym___asm__] = ACTIONS(2547), - [anon_sym___asm] = ACTIONS(2547), - [sym_number_literal] = ACTIONS(2549), - [anon_sym_L_SQUOTE] = ACTIONS(2549), - [anon_sym_u_SQUOTE] = ACTIONS(2549), - [anon_sym_U_SQUOTE] = ACTIONS(2549), - [anon_sym_u8_SQUOTE] = ACTIONS(2549), - [anon_sym_SQUOTE] = ACTIONS(2549), - [anon_sym_L_DQUOTE] = ACTIONS(2549), - [anon_sym_u_DQUOTE] = ACTIONS(2549), - [anon_sym_U_DQUOTE] = ACTIONS(2549), - [anon_sym_u8_DQUOTE] = ACTIONS(2549), - [anon_sym_DQUOTE] = ACTIONS(2549), - [sym_true] = ACTIONS(2547), - [sym_false] = ACTIONS(2547), - [anon_sym_NULL] = ACTIONS(2547), - [anon_sym_nullptr] = ACTIONS(2547), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2547), - [anon_sym_decltype] = ACTIONS(2547), - [anon_sym_explicit] = ACTIONS(2547), - [anon_sym_typename] = ACTIONS(2547), - [anon_sym_export] = ACTIONS(2547), - [anon_sym_module] = ACTIONS(2547), - [anon_sym_import] = ACTIONS(2547), - [anon_sym_template] = ACTIONS(2547), - [anon_sym_operator] = ACTIONS(2547), - [anon_sym_try] = ACTIONS(2547), - [anon_sym_delete] = ACTIONS(2547), - [anon_sym_throw] = ACTIONS(2547), - [anon_sym_namespace] = ACTIONS(2547), - [anon_sym_static_assert] = ACTIONS(2547), - [anon_sym_concept] = ACTIONS(2547), - [anon_sym_co_return] = ACTIONS(2547), - [anon_sym_co_yield] = ACTIONS(2547), - [anon_sym_catch] = ACTIONS(2599), - [anon_sym_R_DQUOTE] = ACTIONS(2549), - [anon_sym_LR_DQUOTE] = ACTIONS(2549), - [anon_sym_uR_DQUOTE] = ACTIONS(2549), - [anon_sym_UR_DQUOTE] = ACTIONS(2549), - [anon_sym_u8R_DQUOTE] = ACTIONS(2549), - [anon_sym_co_await] = ACTIONS(2547), - [anon_sym_new] = ACTIONS(2547), - [anon_sym_requires] = ACTIONS(2547), - [sym_this] = ACTIONS(2547), - }, - [371] = { - [sym_type_qualifier] = STATE(3910), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(4737), - [sym_sized_type_specifier] = STATE(2668), - [sym_enum_specifier] = STATE(2668), - [sym_struct_specifier] = STATE(2668), - [sym_union_specifier] = STATE(2668), - [sym_expression] = STATE(4408), - [sym__string] = STATE(4738), - [sym_conditional_expression] = STATE(4829), - [sym_assignment_expression] = STATE(4829), - [sym_pointer_expression] = STATE(3602), - [sym_unary_expression] = STATE(4829), - [sym_binary_expression] = STATE(4829), - [sym_update_expression] = STATE(4829), - [sym_cast_expression] = STATE(4829), - [sym_type_descriptor] = STATE(7129), - [sym_sizeof_expression] = STATE(4829), - [sym_alignof_expression] = STATE(4829), - [sym_offsetof_expression] = STATE(4829), - [sym_generic_expression] = STATE(4829), - [sym_subscript_expression] = STATE(3602), - [sym_call_expression] = STATE(3602), - [sym_gnu_asm_expression] = STATE(4829), - [sym_extension_expression] = STATE(4829), - [sym_field_expression] = STATE(3602), - [sym_compound_literal_expression] = STATE(4829), - [sym_parenthesized_expression] = STATE(3602), - [sym_char_literal] = STATE(4738), - [sym_concatenated_string] = STATE(4738), - [sym_string_literal] = STATE(3759), - [sym_null] = STATE(4829), - [sym_placeholder_type_specifier] = STATE(2668), - [sym_decltype_auto] = STATE(2708), - [sym_decltype] = STATE(2598), - [sym_class_specifier] = STATE(2668), - [sym__class_name] = STATE(7804), - [sym_dependent_type] = STATE(2668), - [sym_template_type] = STATE(5285), - [sym_template_function] = STATE(4829), - [sym_raw_string_literal] = STATE(3759), - [sym_co_await_expression] = STATE(4829), - [sym_new_expression] = STATE(4829), - [sym_delete_expression] = STATE(4829), - [sym_requires_clause] = STATE(4829), - [sym_requires_expression] = STATE(4829), - [sym_lambda_expression] = STATE(4829), - [sym_lambda_capture_specifier] = STATE(5401), - [sym_fold_expression] = STATE(4829), - [sym_parameter_pack_expansion] = STATE(4829), - [sym_type_parameter_pack_expansion] = STATE(7558), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5750), - [sym_qualified_identifier] = STATE(3602), - [sym_qualified_type_identifier] = STATE(5327), - [sym_user_defined_literal] = STATE(3602), - [aux_sym__type_definition_type_repeat1] = STATE(3910), - [aux_sym_sized_type_specifier_repeat1] = STATE(4239), - [sym_identifier] = ACTIONS(3116), - [anon_sym_LPAREN2] = ACTIONS(3118), - [anon_sym_BANG] = ACTIONS(3120), - [anon_sym_TILDE] = ACTIONS(3120), - [anon_sym_DASH] = ACTIONS(3122), - [anon_sym_PLUS] = ACTIONS(3122), - [anon_sym_STAR] = ACTIONS(3124), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym___extension__] = ACTIONS(3126), - [anon_sym_COLON_COLON] = ACTIONS(3128), - [anon_sym_signed] = ACTIONS(3130), - [anon_sym_unsigned] = ACTIONS(3130), - [anon_sym_long] = ACTIONS(3130), - [anon_sym_short] = ACTIONS(3130), - [anon_sym_LBRACK] = ACTIONS(2020), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(3132), - [anon_sym_enum] = ACTIONS(3134), - [anon_sym_class] = ACTIONS(3136), - [anon_sym_struct] = ACTIONS(3138), - [anon_sym_union] = ACTIONS(3140), - [anon_sym_not] = ACTIONS(3122), - [anon_sym_compl] = ACTIONS(3122), - [anon_sym_DASH_DASH] = ACTIONS(3142), - [anon_sym_PLUS_PLUS] = ACTIONS(3142), - [anon_sym_sizeof] = ACTIONS(3144), - [anon_sym___alignof__] = ACTIONS(3146), - [anon_sym___alignof] = ACTIONS(3146), - [anon_sym__alignof] = ACTIONS(3146), - [anon_sym_alignof] = ACTIONS(3146), - [anon_sym__Alignof] = ACTIONS(3146), - [anon_sym_offsetof] = ACTIONS(3148), - [anon_sym__Generic] = ACTIONS(3150), - [anon_sym_asm] = ACTIONS(3152), - [anon_sym___asm__] = ACTIONS(3152), - [anon_sym___asm] = ACTIONS(3152), - [sym_number_literal] = ACTIONS(3154), - [anon_sym_L_SQUOTE] = ACTIONS(3156), - [anon_sym_u_SQUOTE] = ACTIONS(3156), - [anon_sym_U_SQUOTE] = ACTIONS(3156), - [anon_sym_u8_SQUOTE] = ACTIONS(3156), - [anon_sym_SQUOTE] = ACTIONS(3156), - [anon_sym_L_DQUOTE] = ACTIONS(3158), - [anon_sym_u_DQUOTE] = ACTIONS(3158), - [anon_sym_U_DQUOTE] = ACTIONS(3158), - [anon_sym_u8_DQUOTE] = ACTIONS(3158), - [anon_sym_DQUOTE] = ACTIONS(3158), - [sym_true] = ACTIONS(3160), - [sym_false] = ACTIONS(3160), - [anon_sym_NULL] = ACTIONS(3162), - [anon_sym_nullptr] = ACTIONS(3162), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3164), - [anon_sym_decltype] = ACTIONS(3166), - [anon_sym_typename] = ACTIONS(3168), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_GT2] = ACTIONS(3170), - [anon_sym_delete] = ACTIONS(3172), - [anon_sym_R_DQUOTE] = ACTIONS(3174), - [anon_sym_LR_DQUOTE] = ACTIONS(3174), - [anon_sym_uR_DQUOTE] = ACTIONS(3174), - [anon_sym_UR_DQUOTE] = ACTIONS(3174), - [anon_sym_u8R_DQUOTE] = ACTIONS(3174), - [anon_sym_co_await] = ACTIONS(3176), - [anon_sym_new] = ACTIONS(3178), - [anon_sym_requires] = ACTIONS(3180), - [sym_this] = ACTIONS(3160), - }, - [372] = { - [ts_builtin_sym_end] = ACTIONS(2701), - [sym_identifier] = ACTIONS(2699), - [aux_sym_preproc_include_token1] = ACTIONS(2699), - [aux_sym_preproc_def_token1] = ACTIONS(2699), - [aux_sym_preproc_if_token1] = ACTIONS(2699), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2699), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2699), - [sym_preproc_directive] = ACTIONS(2699), - [anon_sym_LPAREN2] = ACTIONS(2701), - [anon_sym_BANG] = ACTIONS(2701), - [anon_sym_TILDE] = ACTIONS(2701), - [anon_sym_DASH] = ACTIONS(2699), - [anon_sym_PLUS] = ACTIONS(2699), - [anon_sym_STAR] = ACTIONS(2701), - [anon_sym_AMP_AMP] = ACTIONS(2701), - [anon_sym_AMP] = ACTIONS(2699), - [anon_sym_SEMI] = ACTIONS(2701), - [anon_sym___extension__] = ACTIONS(2699), - [anon_sym_typedef] = ACTIONS(2699), - [anon_sym_virtual] = ACTIONS(2699), - [anon_sym_extern] = ACTIONS(2699), - [anon_sym___attribute__] = ACTIONS(2699), - [anon_sym___attribute] = ACTIONS(2699), - [anon_sym_using] = ACTIONS(2699), - [anon_sym_COLON_COLON] = ACTIONS(2701), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2701), - [anon_sym___declspec] = ACTIONS(2699), - [anon_sym___based] = ACTIONS(2699), - [anon_sym___cdecl] = ACTIONS(2699), - [anon_sym___clrcall] = ACTIONS(2699), - [anon_sym___stdcall] = ACTIONS(2699), - [anon_sym___fastcall] = ACTIONS(2699), - [anon_sym___thiscall] = ACTIONS(2699), - [anon_sym___vectorcall] = ACTIONS(2699), - [anon_sym_LBRACE] = ACTIONS(2701), - [anon_sym_signed] = ACTIONS(2699), - [anon_sym_unsigned] = ACTIONS(2699), - [anon_sym_long] = ACTIONS(2699), - [anon_sym_short] = ACTIONS(2699), - [anon_sym_LBRACK] = ACTIONS(2699), - [anon_sym_static] = ACTIONS(2699), - [anon_sym_register] = ACTIONS(2699), - [anon_sym_inline] = ACTIONS(2699), - [anon_sym___inline] = ACTIONS(2699), - [anon_sym___inline__] = ACTIONS(2699), - [anon_sym___forceinline] = ACTIONS(2699), - [anon_sym_thread_local] = ACTIONS(2699), - [anon_sym___thread] = ACTIONS(2699), - [anon_sym_const] = ACTIONS(2699), - [anon_sym_constexpr] = ACTIONS(2699), - [anon_sym_volatile] = ACTIONS(2699), - [anon_sym_restrict] = ACTIONS(2699), - [anon_sym___restrict__] = ACTIONS(2699), - [anon_sym__Atomic] = ACTIONS(2699), - [anon_sym__Noreturn] = ACTIONS(2699), - [anon_sym_noreturn] = ACTIONS(2699), - [anon_sym__Nonnull] = ACTIONS(2699), - [anon_sym_mutable] = ACTIONS(2699), - [anon_sym_constinit] = ACTIONS(2699), - [anon_sym_consteval] = ACTIONS(2699), - [anon_sym_alignas] = ACTIONS(2699), - [anon_sym__Alignas] = ACTIONS(2699), - [sym_primitive_type] = ACTIONS(2699), - [anon_sym_enum] = ACTIONS(2699), - [anon_sym_class] = ACTIONS(2699), - [anon_sym_struct] = ACTIONS(2699), - [anon_sym_union] = ACTIONS(2699), - [anon_sym_if] = ACTIONS(2699), - [anon_sym_else] = ACTIONS(2699), - [anon_sym_switch] = ACTIONS(2699), - [anon_sym_case] = ACTIONS(2699), - [anon_sym_default] = ACTIONS(2699), - [anon_sym_while] = ACTIONS(2699), - [anon_sym_do] = ACTIONS(2699), - [anon_sym_for] = ACTIONS(2699), - [anon_sym_return] = ACTIONS(2699), - [anon_sym_break] = ACTIONS(2699), - [anon_sym_continue] = ACTIONS(2699), - [anon_sym_goto] = ACTIONS(2699), - [anon_sym___try] = ACTIONS(2699), - [anon_sym___leave] = ACTIONS(2699), - [anon_sym_not] = ACTIONS(2699), - [anon_sym_compl] = ACTIONS(2699), - [anon_sym_DASH_DASH] = ACTIONS(2701), - [anon_sym_PLUS_PLUS] = ACTIONS(2701), - [anon_sym_sizeof] = ACTIONS(2699), - [anon_sym___alignof__] = ACTIONS(2699), - [anon_sym___alignof] = ACTIONS(2699), - [anon_sym__alignof] = ACTIONS(2699), - [anon_sym_alignof] = ACTIONS(2699), - [anon_sym__Alignof] = ACTIONS(2699), - [anon_sym_offsetof] = ACTIONS(2699), - [anon_sym__Generic] = ACTIONS(2699), - [anon_sym_asm] = ACTIONS(2699), - [anon_sym___asm__] = ACTIONS(2699), - [anon_sym___asm] = ACTIONS(2699), - [sym_number_literal] = ACTIONS(2701), - [anon_sym_L_SQUOTE] = ACTIONS(2701), - [anon_sym_u_SQUOTE] = ACTIONS(2701), - [anon_sym_U_SQUOTE] = ACTIONS(2701), - [anon_sym_u8_SQUOTE] = ACTIONS(2701), - [anon_sym_SQUOTE] = ACTIONS(2701), - [anon_sym_L_DQUOTE] = ACTIONS(2701), - [anon_sym_u_DQUOTE] = ACTIONS(2701), - [anon_sym_U_DQUOTE] = ACTIONS(2701), - [anon_sym_u8_DQUOTE] = ACTIONS(2701), - [anon_sym_DQUOTE] = ACTIONS(2701), - [sym_true] = ACTIONS(2699), - [sym_false] = ACTIONS(2699), - [anon_sym_NULL] = ACTIONS(2699), - [anon_sym_nullptr] = ACTIONS(2699), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2699), - [anon_sym_decltype] = ACTIONS(2699), - [anon_sym_explicit] = ACTIONS(2699), - [anon_sym_typename] = ACTIONS(2699), - [anon_sym_export] = ACTIONS(2699), - [anon_sym_module] = ACTIONS(2699), - [anon_sym_import] = ACTIONS(2699), - [anon_sym_template] = ACTIONS(2699), - [anon_sym_operator] = ACTIONS(2699), - [anon_sym_try] = ACTIONS(2699), - [anon_sym_delete] = ACTIONS(2699), - [anon_sym_throw] = ACTIONS(2699), - [anon_sym_namespace] = ACTIONS(2699), - [anon_sym_static_assert] = ACTIONS(2699), - [anon_sym_concept] = ACTIONS(2699), - [anon_sym_co_return] = ACTIONS(2699), - [anon_sym_co_yield] = ACTIONS(2699), - [anon_sym_R_DQUOTE] = ACTIONS(2701), - [anon_sym_LR_DQUOTE] = ACTIONS(2701), - [anon_sym_uR_DQUOTE] = ACTIONS(2701), - [anon_sym_UR_DQUOTE] = ACTIONS(2701), - [anon_sym_u8R_DQUOTE] = ACTIONS(2701), - [anon_sym_co_await] = ACTIONS(2699), - [anon_sym_new] = ACTIONS(2699), - [anon_sym_requires] = ACTIONS(2699), - [sym_this] = ACTIONS(2699), - }, - [373] = { - [ts_builtin_sym_end] = ACTIONS(2641), - [sym_identifier] = ACTIONS(2639), - [aux_sym_preproc_include_token1] = ACTIONS(2639), - [aux_sym_preproc_def_token1] = ACTIONS(2639), - [aux_sym_preproc_if_token1] = ACTIONS(2639), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2639), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2639), - [sym_preproc_directive] = ACTIONS(2639), - [anon_sym_LPAREN2] = ACTIONS(2641), - [anon_sym_BANG] = ACTIONS(2641), - [anon_sym_TILDE] = ACTIONS(2641), - [anon_sym_DASH] = ACTIONS(2639), - [anon_sym_PLUS] = ACTIONS(2639), - [anon_sym_STAR] = ACTIONS(2641), - [anon_sym_AMP_AMP] = ACTIONS(2641), - [anon_sym_AMP] = ACTIONS(2639), - [anon_sym_SEMI] = ACTIONS(2641), - [anon_sym___extension__] = ACTIONS(2639), - [anon_sym_typedef] = ACTIONS(2639), - [anon_sym_virtual] = ACTIONS(2639), - [anon_sym_extern] = ACTIONS(2639), - [anon_sym___attribute__] = ACTIONS(2639), - [anon_sym___attribute] = ACTIONS(2639), - [anon_sym_using] = ACTIONS(2639), - [anon_sym_COLON_COLON] = ACTIONS(2641), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2641), - [anon_sym___declspec] = ACTIONS(2639), - [anon_sym___based] = ACTIONS(2639), - [anon_sym___cdecl] = ACTIONS(2639), - [anon_sym___clrcall] = ACTIONS(2639), - [anon_sym___stdcall] = ACTIONS(2639), - [anon_sym___fastcall] = ACTIONS(2639), - [anon_sym___thiscall] = ACTIONS(2639), - [anon_sym___vectorcall] = ACTIONS(2639), - [anon_sym_LBRACE] = ACTIONS(2641), - [anon_sym_signed] = ACTIONS(2639), - [anon_sym_unsigned] = ACTIONS(2639), - [anon_sym_long] = ACTIONS(2639), - [anon_sym_short] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(2639), - [anon_sym_static] = ACTIONS(2639), - [anon_sym_register] = ACTIONS(2639), - [anon_sym_inline] = ACTIONS(2639), - [anon_sym___inline] = ACTIONS(2639), - [anon_sym___inline__] = ACTIONS(2639), - [anon_sym___forceinline] = ACTIONS(2639), - [anon_sym_thread_local] = ACTIONS(2639), - [anon_sym___thread] = ACTIONS(2639), - [anon_sym_const] = ACTIONS(2639), - [anon_sym_constexpr] = ACTIONS(2639), - [anon_sym_volatile] = ACTIONS(2639), - [anon_sym_restrict] = ACTIONS(2639), - [anon_sym___restrict__] = ACTIONS(2639), - [anon_sym__Atomic] = ACTIONS(2639), - [anon_sym__Noreturn] = ACTIONS(2639), - [anon_sym_noreturn] = ACTIONS(2639), - [anon_sym__Nonnull] = ACTIONS(2639), - [anon_sym_mutable] = ACTIONS(2639), - [anon_sym_constinit] = ACTIONS(2639), - [anon_sym_consteval] = ACTIONS(2639), - [anon_sym_alignas] = ACTIONS(2639), - [anon_sym__Alignas] = ACTIONS(2639), - [sym_primitive_type] = ACTIONS(2639), - [anon_sym_enum] = ACTIONS(2639), - [anon_sym_class] = ACTIONS(2639), - [anon_sym_struct] = ACTIONS(2639), - [anon_sym_union] = ACTIONS(2639), - [anon_sym_if] = ACTIONS(2639), - [anon_sym_else] = ACTIONS(2639), - [anon_sym_switch] = ACTIONS(2639), - [anon_sym_case] = ACTIONS(2639), - [anon_sym_default] = ACTIONS(2639), - [anon_sym_while] = ACTIONS(2639), - [anon_sym_do] = ACTIONS(2639), - [anon_sym_for] = ACTIONS(2639), - [anon_sym_return] = ACTIONS(2639), - [anon_sym_break] = ACTIONS(2639), - [anon_sym_continue] = ACTIONS(2639), - [anon_sym_goto] = ACTIONS(2639), - [anon_sym___try] = ACTIONS(2639), - [anon_sym___leave] = ACTIONS(2639), - [anon_sym_not] = ACTIONS(2639), - [anon_sym_compl] = ACTIONS(2639), - [anon_sym_DASH_DASH] = ACTIONS(2641), - [anon_sym_PLUS_PLUS] = ACTIONS(2641), - [anon_sym_sizeof] = ACTIONS(2639), - [anon_sym___alignof__] = ACTIONS(2639), - [anon_sym___alignof] = ACTIONS(2639), - [anon_sym__alignof] = ACTIONS(2639), - [anon_sym_alignof] = ACTIONS(2639), - [anon_sym__Alignof] = ACTIONS(2639), - [anon_sym_offsetof] = ACTIONS(2639), - [anon_sym__Generic] = ACTIONS(2639), - [anon_sym_asm] = ACTIONS(2639), - [anon_sym___asm__] = ACTIONS(2639), - [anon_sym___asm] = ACTIONS(2639), - [sym_number_literal] = ACTIONS(2641), - [anon_sym_L_SQUOTE] = ACTIONS(2641), - [anon_sym_u_SQUOTE] = ACTIONS(2641), - [anon_sym_U_SQUOTE] = ACTIONS(2641), - [anon_sym_u8_SQUOTE] = ACTIONS(2641), - [anon_sym_SQUOTE] = ACTIONS(2641), - [anon_sym_L_DQUOTE] = ACTIONS(2641), - [anon_sym_u_DQUOTE] = ACTIONS(2641), - [anon_sym_U_DQUOTE] = ACTIONS(2641), - [anon_sym_u8_DQUOTE] = ACTIONS(2641), - [anon_sym_DQUOTE] = ACTIONS(2641), - [sym_true] = ACTIONS(2639), - [sym_false] = ACTIONS(2639), - [anon_sym_NULL] = ACTIONS(2639), - [anon_sym_nullptr] = ACTIONS(2639), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2639), - [anon_sym_decltype] = ACTIONS(2639), - [anon_sym_explicit] = ACTIONS(2639), - [anon_sym_typename] = ACTIONS(2639), - [anon_sym_export] = ACTIONS(2639), - [anon_sym_module] = ACTIONS(2639), - [anon_sym_import] = ACTIONS(2639), - [anon_sym_template] = ACTIONS(2639), - [anon_sym_operator] = ACTIONS(2639), - [anon_sym_try] = ACTIONS(2639), - [anon_sym_delete] = ACTIONS(2639), - [anon_sym_throw] = ACTIONS(2639), - [anon_sym_namespace] = ACTIONS(2639), - [anon_sym_static_assert] = ACTIONS(2639), - [anon_sym_concept] = ACTIONS(2639), - [anon_sym_co_return] = ACTIONS(2639), - [anon_sym_co_yield] = ACTIONS(2639), - [anon_sym_R_DQUOTE] = ACTIONS(2641), - [anon_sym_LR_DQUOTE] = ACTIONS(2641), - [anon_sym_uR_DQUOTE] = ACTIONS(2641), - [anon_sym_UR_DQUOTE] = ACTIONS(2641), - [anon_sym_u8R_DQUOTE] = ACTIONS(2641), - [anon_sym_co_await] = ACTIONS(2639), - [anon_sym_new] = ACTIONS(2639), - [anon_sym_requires] = ACTIONS(2639), - [sym_this] = ACTIONS(2639), - }, - [374] = { - [sym_preproc_def] = STATE(376), - [sym_preproc_function_def] = STATE(376), - [sym_preproc_call] = STATE(376), - [sym_preproc_if_in_field_declaration_list] = STATE(376), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(376), - [sym_preproc_else_in_field_declaration_list] = STATE(8394), - [sym_preproc_elif_in_field_declaration_list] = STATE(8394), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(8394), - [sym_type_definition] = STATE(376), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(5637), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(3005), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6218), - [sym_array_declarator] = STATE(5998), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym__field_declaration_list_item] = STATE(376), - [sym_field_declaration] = STATE(376), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym_explicit_function_specifier] = STATE(1744), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(376), - [sym_operator_cast] = STATE(6834), - [sym_inline_method_definition] = STATE(376), - [sym__constructor_specifiers] = STATE(1744), - [sym_operator_cast_definition] = STATE(376), - [sym_operator_cast_declaration] = STATE(376), - [sym_constructor_or_destructor_definition] = STATE(376), - [sym_constructor_or_destructor_declaration] = STATE(376), - [sym_friend_declaration] = STATE(376), - [sym_access_specifier] = STATE(8733), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(2406), - [sym_template_function] = STATE(5998), - [sym_using_declaration] = STATE(376), - [sym_alias_declaration] = STATE(376), - [sym_static_assert_declaration] = STATE(376), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5478), - [sym_qualified_identifier] = STATE(5998), - [sym_qualified_type_identifier] = STATE(3015), - [sym_qualified_operator_cast_identifier] = STATE(6834), - [sym_operator_name] = STATE(5998), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(376), - [aux_sym__declaration_specifiers_repeat1] = STATE(1993), - [aux_sym_attributed_declarator_repeat1] = STATE(7128), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1744), - [sym_identifier] = ACTIONS(2959), - [aux_sym_preproc_def_token1] = ACTIONS(2961), - [aux_sym_preproc_if_token1] = ACTIONS(2963), - [aux_sym_preproc_if_token2] = ACTIONS(3182), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2967), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2967), - [aux_sym_preproc_else_token1] = ACTIONS(2969), - [aux_sym_preproc_elif_token1] = ACTIONS(2971), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2973), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2973), - [sym_preproc_directive] = ACTIONS(2975), - [anon_sym_LPAREN2] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2979), - [anon_sym_STAR] = ACTIONS(2981), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2983), - [anon_sym_SEMI] = ACTIONS(3184), - [anon_sym___extension__] = ACTIONS(2987), - [anon_sym_typedef] = ACTIONS(2989), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(2991), - [anon_sym_COLON_COLON] = ACTIONS(2993), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2995), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(2997), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2999), - [anon_sym_enum] = ACTIONS(3001), - [anon_sym_class] = ACTIONS(3003), - [anon_sym_struct] = ACTIONS(3005), - [anon_sym_union] = ACTIONS(3007), + [379] = { + [ts_builtin_sym_end] = ACTIONS(2773), + [sym_identifier] = ACTIONS(2771), + [aux_sym_preproc_include_token1] = ACTIONS(2771), + [aux_sym_preproc_def_token1] = ACTIONS(2771), + [aux_sym_preproc_if_token1] = ACTIONS(2771), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2771), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2771), + [sym_preproc_directive] = ACTIONS(2771), + [anon_sym_LPAREN2] = ACTIONS(2773), + [anon_sym_BANG] = ACTIONS(2773), + [anon_sym_TILDE] = ACTIONS(2773), + [anon_sym_DASH] = ACTIONS(2771), + [anon_sym_PLUS] = ACTIONS(2771), + [anon_sym_STAR] = ACTIONS(2773), + [anon_sym_AMP_AMP] = ACTIONS(2773), + [anon_sym_AMP] = ACTIONS(2771), + [anon_sym_SEMI] = ACTIONS(2773), + [anon_sym___extension__] = ACTIONS(2771), + [anon_sym_typedef] = ACTIONS(2771), + [anon_sym_virtual] = ACTIONS(2771), + [anon_sym_extern] = ACTIONS(2771), + [anon_sym___attribute__] = ACTIONS(2771), + [anon_sym___attribute] = ACTIONS(2771), + [anon_sym_using] = ACTIONS(2771), + [anon_sym_COLON_COLON] = ACTIONS(2773), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2773), + [anon_sym___declspec] = ACTIONS(2771), + [anon_sym___based] = ACTIONS(2771), + [anon_sym___cdecl] = ACTIONS(2771), + [anon_sym___clrcall] = ACTIONS(2771), + [anon_sym___stdcall] = ACTIONS(2771), + [anon_sym___fastcall] = ACTIONS(2771), + [anon_sym___thiscall] = ACTIONS(2771), + [anon_sym___vectorcall] = ACTIONS(2771), + [anon_sym_LBRACE] = ACTIONS(2773), + [anon_sym_signed] = ACTIONS(2771), + [anon_sym_unsigned] = ACTIONS(2771), + [anon_sym_long] = ACTIONS(2771), + [anon_sym_short] = ACTIONS(2771), + [anon_sym_LBRACK] = ACTIONS(2771), + [anon_sym_static] = ACTIONS(2771), + [anon_sym_register] = ACTIONS(2771), + [anon_sym_inline] = ACTIONS(2771), + [anon_sym___inline] = ACTIONS(2771), + [anon_sym___inline__] = ACTIONS(2771), + [anon_sym___forceinline] = ACTIONS(2771), + [anon_sym_thread_local] = ACTIONS(2771), + [anon_sym___thread] = ACTIONS(2771), + [anon_sym_const] = ACTIONS(2771), + [anon_sym_constexpr] = ACTIONS(2771), + [anon_sym_volatile] = ACTIONS(2771), + [anon_sym_restrict] = ACTIONS(2771), + [anon_sym___restrict__] = ACTIONS(2771), + [anon_sym__Atomic] = ACTIONS(2771), + [anon_sym__Noreturn] = ACTIONS(2771), + [anon_sym_noreturn] = ACTIONS(2771), + [anon_sym__Nonnull] = ACTIONS(2771), + [anon_sym_mutable] = ACTIONS(2771), + [anon_sym_constinit] = ACTIONS(2771), + [anon_sym_consteval] = ACTIONS(2771), + [anon_sym_alignas] = ACTIONS(2771), + [anon_sym__Alignas] = ACTIONS(2771), + [sym_primitive_type] = ACTIONS(2771), + [anon_sym_enum] = ACTIONS(2771), + [anon_sym_class] = ACTIONS(2771), + [anon_sym_struct] = ACTIONS(2771), + [anon_sym_union] = ACTIONS(2771), + [anon_sym_if] = ACTIONS(2771), + [anon_sym_else] = ACTIONS(2771), + [anon_sym_switch] = ACTIONS(2771), + [anon_sym_case] = ACTIONS(2771), + [anon_sym_default] = ACTIONS(2771), + [anon_sym_while] = ACTIONS(2771), + [anon_sym_do] = ACTIONS(2771), + [anon_sym_for] = ACTIONS(2771), + [anon_sym_return] = ACTIONS(2771), + [anon_sym_break] = ACTIONS(2771), + [anon_sym_continue] = ACTIONS(2771), + [anon_sym_goto] = ACTIONS(2771), + [anon_sym___try] = ACTIONS(2771), + [anon_sym___leave] = ACTIONS(2771), + [anon_sym_not] = ACTIONS(2771), + [anon_sym_compl] = ACTIONS(2771), + [anon_sym_DASH_DASH] = ACTIONS(2773), + [anon_sym_PLUS_PLUS] = ACTIONS(2773), + [anon_sym_sizeof] = ACTIONS(2771), + [anon_sym___alignof__] = ACTIONS(2771), + [anon_sym___alignof] = ACTIONS(2771), + [anon_sym__alignof] = ACTIONS(2771), + [anon_sym_alignof] = ACTIONS(2771), + [anon_sym__Alignof] = ACTIONS(2771), + [anon_sym_offsetof] = ACTIONS(2771), + [anon_sym__Generic] = ACTIONS(2771), + [anon_sym_asm] = ACTIONS(2771), + [anon_sym___asm__] = ACTIONS(2771), + [anon_sym___asm] = ACTIONS(2771), + [sym_number_literal] = ACTIONS(2773), + [anon_sym_L_SQUOTE] = ACTIONS(2773), + [anon_sym_u_SQUOTE] = ACTIONS(2773), + [anon_sym_U_SQUOTE] = ACTIONS(2773), + [anon_sym_u8_SQUOTE] = ACTIONS(2773), + [anon_sym_SQUOTE] = ACTIONS(2773), + [anon_sym_L_DQUOTE] = ACTIONS(2773), + [anon_sym_u_DQUOTE] = ACTIONS(2773), + [anon_sym_U_DQUOTE] = ACTIONS(2773), + [anon_sym_u8_DQUOTE] = ACTIONS(2773), + [anon_sym_DQUOTE] = ACTIONS(2773), + [sym_true] = ACTIONS(2771), + [sym_false] = ACTIONS(2771), + [anon_sym_NULL] = ACTIONS(2771), + [anon_sym_nullptr] = ACTIONS(2771), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(3009), - [anon_sym_private] = ACTIONS(3011), - [anon_sym_template] = ACTIONS(3013), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(3015), - [anon_sym_public] = ACTIONS(3011), - [anon_sym_protected] = ACTIONS(3011), - [anon_sym_static_assert] = ACTIONS(3017), + [sym_auto] = ACTIONS(2771), + [anon_sym_decltype] = ACTIONS(2771), + [anon_sym_explicit] = ACTIONS(2771), + [anon_sym_typename] = ACTIONS(2771), + [anon_sym_export] = ACTIONS(2771), + [anon_sym_module] = ACTIONS(2771), + [anon_sym_import] = ACTIONS(2771), + [anon_sym_template] = ACTIONS(2771), + [anon_sym_operator] = ACTIONS(2771), + [anon_sym_try] = ACTIONS(2771), + [anon_sym_delete] = ACTIONS(2771), + [anon_sym_throw] = ACTIONS(2771), + [anon_sym_namespace] = ACTIONS(2771), + [anon_sym_static_assert] = ACTIONS(2771), + [anon_sym_concept] = ACTIONS(2771), + [anon_sym_co_return] = ACTIONS(2771), + [anon_sym_co_yield] = ACTIONS(2771), + [anon_sym_R_DQUOTE] = ACTIONS(2773), + [anon_sym_LR_DQUOTE] = ACTIONS(2773), + [anon_sym_uR_DQUOTE] = ACTIONS(2773), + [anon_sym_UR_DQUOTE] = ACTIONS(2773), + [anon_sym_u8R_DQUOTE] = ACTIONS(2773), + [anon_sym_co_await] = ACTIONS(2771), + [anon_sym_new] = ACTIONS(2771), + [anon_sym_requires] = ACTIONS(2771), + [sym_this] = ACTIONS(2771), }, - [375] = { - [sym_preproc_def] = STATE(377), - [sym_preproc_function_def] = STATE(377), - [sym_preproc_call] = STATE(377), - [sym_preproc_if_in_field_declaration_list] = STATE(377), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(377), - [sym_preproc_else_in_field_declaration_list] = STATE(8116), - [sym_preproc_elif_in_field_declaration_list] = STATE(8116), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(8116), - [sym_type_definition] = STATE(377), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(5637), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(3005), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6218), - [sym_array_declarator] = STATE(5998), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym__field_declaration_list_item] = STATE(377), - [sym_field_declaration] = STATE(377), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym_explicit_function_specifier] = STATE(1744), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(377), - [sym_operator_cast] = STATE(6834), - [sym_inline_method_definition] = STATE(377), - [sym__constructor_specifiers] = STATE(1744), - [sym_operator_cast_definition] = STATE(377), - [sym_operator_cast_declaration] = STATE(377), - [sym_constructor_or_destructor_definition] = STATE(377), - [sym_constructor_or_destructor_declaration] = STATE(377), - [sym_friend_declaration] = STATE(377), - [sym_access_specifier] = STATE(8733), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(2406), - [sym_template_function] = STATE(5998), - [sym_using_declaration] = STATE(377), - [sym_alias_declaration] = STATE(377), - [sym_static_assert_declaration] = STATE(377), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5478), - [sym_qualified_identifier] = STATE(5998), - [sym_qualified_type_identifier] = STATE(3015), - [sym_qualified_operator_cast_identifier] = STATE(6834), - [sym_operator_name] = STATE(5998), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(377), - [aux_sym__declaration_specifiers_repeat1] = STATE(1993), - [aux_sym_attributed_declarator_repeat1] = STATE(7128), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1744), - [sym_identifier] = ACTIONS(2959), - [aux_sym_preproc_def_token1] = ACTIONS(2961), - [aux_sym_preproc_if_token1] = ACTIONS(2963), - [aux_sym_preproc_if_token2] = ACTIONS(3186), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2967), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2967), - [aux_sym_preproc_else_token1] = ACTIONS(2969), - [aux_sym_preproc_elif_token1] = ACTIONS(2971), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2973), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2973), - [sym_preproc_directive] = ACTIONS(2975), - [anon_sym_LPAREN2] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2979), - [anon_sym_STAR] = ACTIONS(2981), + [380] = { + [sym_preproc_def] = STATE(398), + [sym_preproc_function_def] = STATE(398), + [sym_preproc_call] = STATE(398), + [sym_preproc_if_in_field_declaration_list] = STATE(398), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(398), + [sym_preproc_else_in_field_declaration_list] = STATE(8067), + [sym_preproc_elif_in_field_declaration_list] = STATE(8067), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(8067), + [sym_type_definition] = STATE(398), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(5688), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(3133), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6303), + [sym_array_declarator] = STATE(6145), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym__field_declaration_list_item] = STATE(398), + [sym_field_declaration] = STATE(398), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym_explicit_function_specifier] = STATE(1845), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(398), + [sym_operator_cast] = STATE(6890), + [sym_inline_method_definition] = STATE(398), + [sym__constructor_specifiers] = STATE(1845), + [sym_operator_cast_definition] = STATE(398), + [sym_operator_cast_declaration] = STATE(398), + [sym_constructor_or_destructor_definition] = STATE(398), + [sym_constructor_or_destructor_declaration] = STATE(398), + [sym_friend_declaration] = STATE(398), + [sym_access_specifier] = STATE(8331), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(2439), + [sym_template_function] = STATE(6145), + [sym_using_declaration] = STATE(398), + [sym_alias_declaration] = STATE(398), + [sym_static_assert_declaration] = STATE(398), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5557), + [sym_qualified_identifier] = STATE(6145), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6890), + [sym_operator_name] = STATE(6145), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(398), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_attributed_declarator_repeat1] = STATE(7195), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1845), + [sym_identifier] = ACTIONS(2979), + [aux_sym_preproc_def_token1] = ACTIONS(2981), + [aux_sym_preproc_if_token1] = ACTIONS(2983), + [aux_sym_preproc_if_token2] = ACTIONS(3194), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2987), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2987), + [aux_sym_preproc_else_token1] = ACTIONS(2989), + [aux_sym_preproc_elif_token1] = ACTIONS(2991), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2993), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2993), + [sym_preproc_directive] = ACTIONS(2995), + [anon_sym_LPAREN2] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(3001), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2983), - [anon_sym_SEMI] = ACTIONS(3188), - [anon_sym___extension__] = ACTIONS(2987), - [anon_sym_typedef] = ACTIONS(2989), + [anon_sym_AMP] = ACTIONS(3003), + [anon_sym_SEMI] = ACTIONS(3196), + [anon_sym___extension__] = ACTIONS(3007), + [anon_sym_typedef] = ACTIONS(3009), [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(2991), - [anon_sym_COLON_COLON] = ACTIONS(2993), + [anon_sym_using] = ACTIONS(3011), + [anon_sym_COLON_COLON] = ACTIONS(3013), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), @@ -97665,7 +98652,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2995), + [anon_sym_LBRACK] = ACTIONS(3015), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -97675,7 +98662,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread_local] = ACTIONS(63), [anon_sym___thread] = ACTIONS(63), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(2997), + [anon_sym_constexpr] = ACTIONS(3017), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -97688,116 +98675,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2999), - [anon_sym_enum] = ACTIONS(3001), - [anon_sym_class] = ACTIONS(3003), - [anon_sym_struct] = ACTIONS(3005), - [anon_sym_union] = ACTIONS(3007), + [sym_primitive_type] = ACTIONS(3019), + [anon_sym_enum] = ACTIONS(3021), + [anon_sym_class] = ACTIONS(3023), + [anon_sym_struct] = ACTIONS(3025), + [anon_sym_union] = ACTIONS(3027), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(3009), - [anon_sym_private] = ACTIONS(3011), - [anon_sym_template] = ACTIONS(3013), + [anon_sym_typename] = ACTIONS(3029), + [anon_sym_private] = ACTIONS(3031), + [anon_sym_template] = ACTIONS(3033), [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(3015), - [anon_sym_public] = ACTIONS(3011), - [anon_sym_protected] = ACTIONS(3011), - [anon_sym_static_assert] = ACTIONS(3017), + [anon_sym_friend] = ACTIONS(3035), + [anon_sym_public] = ACTIONS(3031), + [anon_sym_protected] = ACTIONS(3031), + [anon_sym_static_assert] = ACTIONS(3037), }, - [376] = { - [sym_preproc_def] = STATE(587), - [sym_preproc_function_def] = STATE(587), - [sym_preproc_call] = STATE(587), - [sym_preproc_if_in_field_declaration_list] = STATE(587), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(587), - [sym_preproc_else_in_field_declaration_list] = STATE(8239), - [sym_preproc_elif_in_field_declaration_list] = STATE(8239), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(8239), - [sym_type_definition] = STATE(587), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(5637), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(3005), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6218), - [sym_array_declarator] = STATE(5998), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym__field_declaration_list_item] = STATE(587), - [sym_field_declaration] = STATE(587), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym_explicit_function_specifier] = STATE(1744), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(587), - [sym_operator_cast] = STATE(6834), - [sym_inline_method_definition] = STATE(587), - [sym__constructor_specifiers] = STATE(1744), - [sym_operator_cast_definition] = STATE(587), - [sym_operator_cast_declaration] = STATE(587), - [sym_constructor_or_destructor_definition] = STATE(587), - [sym_constructor_or_destructor_declaration] = STATE(587), - [sym_friend_declaration] = STATE(587), - [sym_access_specifier] = STATE(8733), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(2406), - [sym_template_function] = STATE(5998), - [sym_using_declaration] = STATE(587), - [sym_alias_declaration] = STATE(587), - [sym_static_assert_declaration] = STATE(587), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5478), - [sym_qualified_identifier] = STATE(5998), - [sym_qualified_type_identifier] = STATE(3015), - [sym_qualified_operator_cast_identifier] = STATE(6834), - [sym_operator_name] = STATE(5998), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(587), - [aux_sym__declaration_specifiers_repeat1] = STATE(1993), - [aux_sym_attributed_declarator_repeat1] = STATE(7128), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1744), - [sym_identifier] = ACTIONS(2959), - [aux_sym_preproc_def_token1] = ACTIONS(2961), - [aux_sym_preproc_if_token1] = ACTIONS(2963), - [aux_sym_preproc_if_token2] = ACTIONS(3190), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2967), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2967), - [aux_sym_preproc_else_token1] = ACTIONS(2969), - [aux_sym_preproc_elif_token1] = ACTIONS(2971), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2973), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2973), - [sym_preproc_directive] = ACTIONS(2975), - [anon_sym_LPAREN2] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2979), - [anon_sym_STAR] = ACTIONS(2981), + [381] = { + [sym_preproc_def] = STATE(600), + [sym_preproc_function_def] = STATE(600), + [sym_preproc_call] = STATE(600), + [sym_preproc_if_in_field_declaration_list] = STATE(600), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(600), + [sym_preproc_else_in_field_declaration_list] = STATE(8422), + [sym_preproc_elif_in_field_declaration_list] = STATE(8422), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(8422), + [sym_type_definition] = STATE(600), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(5688), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(3133), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6303), + [sym_array_declarator] = STATE(6145), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym__field_declaration_list_item] = STATE(600), + [sym_field_declaration] = STATE(600), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym_explicit_function_specifier] = STATE(1845), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(600), + [sym_operator_cast] = STATE(6890), + [sym_inline_method_definition] = STATE(600), + [sym__constructor_specifiers] = STATE(1845), + [sym_operator_cast_definition] = STATE(600), + [sym_operator_cast_declaration] = STATE(600), + [sym_constructor_or_destructor_definition] = STATE(600), + [sym_constructor_or_destructor_declaration] = STATE(600), + [sym_friend_declaration] = STATE(600), + [sym_access_specifier] = STATE(8331), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(2439), + [sym_template_function] = STATE(6145), + [sym_using_declaration] = STATE(600), + [sym_alias_declaration] = STATE(600), + [sym_static_assert_declaration] = STATE(600), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5557), + [sym_qualified_identifier] = STATE(6145), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6890), + [sym_operator_name] = STATE(6145), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(600), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_attributed_declarator_repeat1] = STATE(7195), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1845), + [sym_identifier] = ACTIONS(2979), + [aux_sym_preproc_def_token1] = ACTIONS(2981), + [aux_sym_preproc_if_token1] = ACTIONS(2983), + [aux_sym_preproc_if_token2] = ACTIONS(3198), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2987), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2987), + [aux_sym_preproc_else_token1] = ACTIONS(2989), + [aux_sym_preproc_elif_token1] = ACTIONS(2991), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2993), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2993), + [sym_preproc_directive] = ACTIONS(2995), + [anon_sym_LPAREN2] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(3001), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2983), - [anon_sym_SEMI] = ACTIONS(3192), - [anon_sym___extension__] = ACTIONS(2987), - [anon_sym_typedef] = ACTIONS(2989), + [anon_sym_AMP] = ACTIONS(3003), + [anon_sym_SEMI] = ACTIONS(3200), + [anon_sym___extension__] = ACTIONS(3007), + [anon_sym_typedef] = ACTIONS(3009), [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(2991), - [anon_sym_COLON_COLON] = ACTIONS(2993), + [anon_sym_using] = ACTIONS(3011), + [anon_sym_COLON_COLON] = ACTIONS(3013), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), @@ -97805,7 +98792,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2995), + [anon_sym_LBRACK] = ACTIONS(3015), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -97815,7 +98802,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread_local] = ACTIONS(63), [anon_sym___thread] = ACTIONS(63), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(2997), + [anon_sym_constexpr] = ACTIONS(3017), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -97828,116 +98815,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2999), - [anon_sym_enum] = ACTIONS(3001), - [anon_sym_class] = ACTIONS(3003), - [anon_sym_struct] = ACTIONS(3005), - [anon_sym_union] = ACTIONS(3007), + [sym_primitive_type] = ACTIONS(3019), + [anon_sym_enum] = ACTIONS(3021), + [anon_sym_class] = ACTIONS(3023), + [anon_sym_struct] = ACTIONS(3025), + [anon_sym_union] = ACTIONS(3027), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(3009), - [anon_sym_private] = ACTIONS(3011), - [anon_sym_template] = ACTIONS(3013), + [anon_sym_typename] = ACTIONS(3029), + [anon_sym_private] = ACTIONS(3031), + [anon_sym_template] = ACTIONS(3033), [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(3015), - [anon_sym_public] = ACTIONS(3011), - [anon_sym_protected] = ACTIONS(3011), - [anon_sym_static_assert] = ACTIONS(3017), + [anon_sym_friend] = ACTIONS(3035), + [anon_sym_public] = ACTIONS(3031), + [anon_sym_protected] = ACTIONS(3031), + [anon_sym_static_assert] = ACTIONS(3037), }, - [377] = { - [sym_preproc_def] = STATE(587), - [sym_preproc_function_def] = STATE(587), - [sym_preproc_call] = STATE(587), - [sym_preproc_if_in_field_declaration_list] = STATE(587), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(587), - [sym_preproc_else_in_field_declaration_list] = STATE(8771), - [sym_preproc_elif_in_field_declaration_list] = STATE(8771), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(8771), - [sym_type_definition] = STATE(587), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(5637), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(3005), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6218), - [sym_array_declarator] = STATE(5998), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym__field_declaration_list_item] = STATE(587), - [sym_field_declaration] = STATE(587), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym_explicit_function_specifier] = STATE(1744), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(587), - [sym_operator_cast] = STATE(6834), - [sym_inline_method_definition] = STATE(587), - [sym__constructor_specifiers] = STATE(1744), - [sym_operator_cast_definition] = STATE(587), - [sym_operator_cast_declaration] = STATE(587), - [sym_constructor_or_destructor_definition] = STATE(587), - [sym_constructor_or_destructor_declaration] = STATE(587), - [sym_friend_declaration] = STATE(587), - [sym_access_specifier] = STATE(8733), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(2406), - [sym_template_function] = STATE(5998), - [sym_using_declaration] = STATE(587), - [sym_alias_declaration] = STATE(587), - [sym_static_assert_declaration] = STATE(587), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5478), - [sym_qualified_identifier] = STATE(5998), - [sym_qualified_type_identifier] = STATE(3015), - [sym_qualified_operator_cast_identifier] = STATE(6834), - [sym_operator_name] = STATE(5998), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(587), - [aux_sym__declaration_specifiers_repeat1] = STATE(1993), - [aux_sym_attributed_declarator_repeat1] = STATE(7128), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1744), - [sym_identifier] = ACTIONS(2959), - [aux_sym_preproc_def_token1] = ACTIONS(2961), - [aux_sym_preproc_if_token1] = ACTIONS(2963), - [aux_sym_preproc_if_token2] = ACTIONS(3194), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2967), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2967), - [aux_sym_preproc_else_token1] = ACTIONS(2969), - [aux_sym_preproc_elif_token1] = ACTIONS(2971), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2973), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2973), - [sym_preproc_directive] = ACTIONS(2975), - [anon_sym_LPAREN2] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2979), - [anon_sym_STAR] = ACTIONS(2981), + [382] = { + [sym_preproc_def] = STATE(384), + [sym_preproc_function_def] = STATE(384), + [sym_preproc_call] = STATE(384), + [sym_preproc_if_in_field_declaration_list] = STATE(384), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(384), + [sym_preproc_else_in_field_declaration_list] = STATE(8580), + [sym_preproc_elif_in_field_declaration_list] = STATE(8580), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(8580), + [sym_type_definition] = STATE(384), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(5688), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(3133), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6303), + [sym_array_declarator] = STATE(6145), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym__field_declaration_list_item] = STATE(384), + [sym_field_declaration] = STATE(384), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym_explicit_function_specifier] = STATE(1845), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(384), + [sym_operator_cast] = STATE(6890), + [sym_inline_method_definition] = STATE(384), + [sym__constructor_specifiers] = STATE(1845), + [sym_operator_cast_definition] = STATE(384), + [sym_operator_cast_declaration] = STATE(384), + [sym_constructor_or_destructor_definition] = STATE(384), + [sym_constructor_or_destructor_declaration] = STATE(384), + [sym_friend_declaration] = STATE(384), + [sym_access_specifier] = STATE(8331), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(2439), + [sym_template_function] = STATE(6145), + [sym_using_declaration] = STATE(384), + [sym_alias_declaration] = STATE(384), + [sym_static_assert_declaration] = STATE(384), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5557), + [sym_qualified_identifier] = STATE(6145), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6890), + [sym_operator_name] = STATE(6145), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(384), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_attributed_declarator_repeat1] = STATE(7195), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1845), + [sym_identifier] = ACTIONS(2979), + [aux_sym_preproc_def_token1] = ACTIONS(2981), + [aux_sym_preproc_if_token1] = ACTIONS(2983), + [aux_sym_preproc_if_token2] = ACTIONS(3202), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2987), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2987), + [aux_sym_preproc_else_token1] = ACTIONS(2989), + [aux_sym_preproc_elif_token1] = ACTIONS(2991), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2993), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2993), + [sym_preproc_directive] = ACTIONS(2995), + [anon_sym_LPAREN2] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(3001), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2983), - [anon_sym_SEMI] = ACTIONS(3192), - [anon_sym___extension__] = ACTIONS(2987), - [anon_sym_typedef] = ACTIONS(2989), + [anon_sym_AMP] = ACTIONS(3003), + [anon_sym_SEMI] = ACTIONS(3204), + [anon_sym___extension__] = ACTIONS(3007), + [anon_sym_typedef] = ACTIONS(3009), [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(2991), - [anon_sym_COLON_COLON] = ACTIONS(2993), + [anon_sym_using] = ACTIONS(3011), + [anon_sym_COLON_COLON] = ACTIONS(3013), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), @@ -97945,7 +98932,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2995), + [anon_sym_LBRACK] = ACTIONS(3015), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -97955,7 +98942,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread_local] = ACTIONS(63), [anon_sym___thread] = ACTIONS(63), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(2997), + [anon_sym_constexpr] = ACTIONS(3017), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -97968,116 +98955,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2999), - [anon_sym_enum] = ACTIONS(3001), - [anon_sym_class] = ACTIONS(3003), - [anon_sym_struct] = ACTIONS(3005), - [anon_sym_union] = ACTIONS(3007), + [sym_primitive_type] = ACTIONS(3019), + [anon_sym_enum] = ACTIONS(3021), + [anon_sym_class] = ACTIONS(3023), + [anon_sym_struct] = ACTIONS(3025), + [anon_sym_union] = ACTIONS(3027), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(3009), - [anon_sym_private] = ACTIONS(3011), - [anon_sym_template] = ACTIONS(3013), + [anon_sym_typename] = ACTIONS(3029), + [anon_sym_private] = ACTIONS(3031), + [anon_sym_template] = ACTIONS(3033), [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(3015), - [anon_sym_public] = ACTIONS(3011), - [anon_sym_protected] = ACTIONS(3011), - [anon_sym_static_assert] = ACTIONS(3017), + [anon_sym_friend] = ACTIONS(3035), + [anon_sym_public] = ACTIONS(3031), + [anon_sym_protected] = ACTIONS(3031), + [anon_sym_static_assert] = ACTIONS(3037), }, - [378] = { - [sym_preproc_def] = STATE(394), - [sym_preproc_function_def] = STATE(394), - [sym_preproc_call] = STATE(394), - [sym_preproc_if_in_field_declaration_list] = STATE(394), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(394), - [sym_preproc_else_in_field_declaration_list] = STATE(8754), - [sym_preproc_elif_in_field_declaration_list] = STATE(8754), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(8754), - [sym_type_definition] = STATE(394), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(5637), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(3005), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6218), - [sym_array_declarator] = STATE(5998), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym__field_declaration_list_item] = STATE(394), - [sym_field_declaration] = STATE(394), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym_explicit_function_specifier] = STATE(1744), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(394), - [sym_operator_cast] = STATE(6834), - [sym_inline_method_definition] = STATE(394), - [sym__constructor_specifiers] = STATE(1744), - [sym_operator_cast_definition] = STATE(394), - [sym_operator_cast_declaration] = STATE(394), - [sym_constructor_or_destructor_definition] = STATE(394), - [sym_constructor_or_destructor_declaration] = STATE(394), - [sym_friend_declaration] = STATE(394), - [sym_access_specifier] = STATE(8733), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(2406), - [sym_template_function] = STATE(5998), - [sym_using_declaration] = STATE(394), - [sym_alias_declaration] = STATE(394), - [sym_static_assert_declaration] = STATE(394), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5478), - [sym_qualified_identifier] = STATE(5998), - [sym_qualified_type_identifier] = STATE(3015), - [sym_qualified_operator_cast_identifier] = STATE(6834), - [sym_operator_name] = STATE(5998), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(394), - [aux_sym__declaration_specifiers_repeat1] = STATE(1993), - [aux_sym_attributed_declarator_repeat1] = STATE(7128), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1744), - [sym_identifier] = ACTIONS(2959), - [aux_sym_preproc_def_token1] = ACTIONS(2961), - [aux_sym_preproc_if_token1] = ACTIONS(2963), - [aux_sym_preproc_if_token2] = ACTIONS(3196), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2967), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2967), - [aux_sym_preproc_else_token1] = ACTIONS(2969), - [aux_sym_preproc_elif_token1] = ACTIONS(2971), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2973), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2973), - [sym_preproc_directive] = ACTIONS(2975), - [anon_sym_LPAREN2] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2979), - [anon_sym_STAR] = ACTIONS(2981), + [383] = { + [sym_preproc_def] = STATE(600), + [sym_preproc_function_def] = STATE(600), + [sym_preproc_call] = STATE(600), + [sym_preproc_if_in_field_declaration_list] = STATE(600), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(600), + [sym_preproc_else_in_field_declaration_list] = STATE(8582), + [sym_preproc_elif_in_field_declaration_list] = STATE(8582), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(8582), + [sym_type_definition] = STATE(600), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(5688), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(3133), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6303), + [sym_array_declarator] = STATE(6145), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym__field_declaration_list_item] = STATE(600), + [sym_field_declaration] = STATE(600), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym_explicit_function_specifier] = STATE(1845), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(600), + [sym_operator_cast] = STATE(6890), + [sym_inline_method_definition] = STATE(600), + [sym__constructor_specifiers] = STATE(1845), + [sym_operator_cast_definition] = STATE(600), + [sym_operator_cast_declaration] = STATE(600), + [sym_constructor_or_destructor_definition] = STATE(600), + [sym_constructor_or_destructor_declaration] = STATE(600), + [sym_friend_declaration] = STATE(600), + [sym_access_specifier] = STATE(8331), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(2439), + [sym_template_function] = STATE(6145), + [sym_using_declaration] = STATE(600), + [sym_alias_declaration] = STATE(600), + [sym_static_assert_declaration] = STATE(600), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5557), + [sym_qualified_identifier] = STATE(6145), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6890), + [sym_operator_name] = STATE(6145), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(600), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_attributed_declarator_repeat1] = STATE(7195), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1845), + [sym_identifier] = ACTIONS(2979), + [aux_sym_preproc_def_token1] = ACTIONS(2981), + [aux_sym_preproc_if_token1] = ACTIONS(2983), + [aux_sym_preproc_if_token2] = ACTIONS(3206), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2987), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2987), + [aux_sym_preproc_else_token1] = ACTIONS(2989), + [aux_sym_preproc_elif_token1] = ACTIONS(2991), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2993), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2993), + [sym_preproc_directive] = ACTIONS(2995), + [anon_sym_LPAREN2] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(3001), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2983), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym___extension__] = ACTIONS(2987), - [anon_sym_typedef] = ACTIONS(2989), + [anon_sym_AMP] = ACTIONS(3003), + [anon_sym_SEMI] = ACTIONS(3200), + [anon_sym___extension__] = ACTIONS(3007), + [anon_sym_typedef] = ACTIONS(3009), [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(2991), - [anon_sym_COLON_COLON] = ACTIONS(2993), + [anon_sym_using] = ACTIONS(3011), + [anon_sym_COLON_COLON] = ACTIONS(3013), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), @@ -98085,7 +99072,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2995), + [anon_sym_LBRACK] = ACTIONS(3015), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -98095,7 +99082,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread_local] = ACTIONS(63), [anon_sym___thread] = ACTIONS(63), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(2997), + [anon_sym_constexpr] = ACTIONS(3017), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -98108,116 +99095,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2999), - [anon_sym_enum] = ACTIONS(3001), - [anon_sym_class] = ACTIONS(3003), - [anon_sym_struct] = ACTIONS(3005), - [anon_sym_union] = ACTIONS(3007), + [sym_primitive_type] = ACTIONS(3019), + [anon_sym_enum] = ACTIONS(3021), + [anon_sym_class] = ACTIONS(3023), + [anon_sym_struct] = ACTIONS(3025), + [anon_sym_union] = ACTIONS(3027), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(3009), - [anon_sym_private] = ACTIONS(3011), - [anon_sym_template] = ACTIONS(3013), + [anon_sym_typename] = ACTIONS(3029), + [anon_sym_private] = ACTIONS(3031), + [anon_sym_template] = ACTIONS(3033), [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(3015), - [anon_sym_public] = ACTIONS(3011), - [anon_sym_protected] = ACTIONS(3011), - [anon_sym_static_assert] = ACTIONS(3017), + [anon_sym_friend] = ACTIONS(3035), + [anon_sym_public] = ACTIONS(3031), + [anon_sym_protected] = ACTIONS(3031), + [anon_sym_static_assert] = ACTIONS(3037), }, - [379] = { - [sym_preproc_def] = STATE(587), - [sym_preproc_function_def] = STATE(587), - [sym_preproc_call] = STATE(587), - [sym_preproc_if_in_field_declaration_list] = STATE(587), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(587), - [sym_preproc_else_in_field_declaration_list] = STATE(8830), - [sym_preproc_elif_in_field_declaration_list] = STATE(8830), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(8830), - [sym_type_definition] = STATE(587), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(5637), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(3005), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6218), - [sym_array_declarator] = STATE(5998), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym__field_declaration_list_item] = STATE(587), - [sym_field_declaration] = STATE(587), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym_explicit_function_specifier] = STATE(1744), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(587), - [sym_operator_cast] = STATE(6834), - [sym_inline_method_definition] = STATE(587), - [sym__constructor_specifiers] = STATE(1744), - [sym_operator_cast_definition] = STATE(587), - [sym_operator_cast_declaration] = STATE(587), - [sym_constructor_or_destructor_definition] = STATE(587), - [sym_constructor_or_destructor_declaration] = STATE(587), - [sym_friend_declaration] = STATE(587), - [sym_access_specifier] = STATE(8733), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(2406), - [sym_template_function] = STATE(5998), - [sym_using_declaration] = STATE(587), - [sym_alias_declaration] = STATE(587), - [sym_static_assert_declaration] = STATE(587), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5478), - [sym_qualified_identifier] = STATE(5998), - [sym_qualified_type_identifier] = STATE(3015), - [sym_qualified_operator_cast_identifier] = STATE(6834), - [sym_operator_name] = STATE(5998), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(587), - [aux_sym__declaration_specifiers_repeat1] = STATE(1993), - [aux_sym_attributed_declarator_repeat1] = STATE(7128), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1744), - [sym_identifier] = ACTIONS(2959), - [aux_sym_preproc_def_token1] = ACTIONS(2961), - [aux_sym_preproc_if_token1] = ACTIONS(2963), - [aux_sym_preproc_if_token2] = ACTIONS(3200), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2967), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2967), - [aux_sym_preproc_else_token1] = ACTIONS(2969), - [aux_sym_preproc_elif_token1] = ACTIONS(2971), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2973), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2973), - [sym_preproc_directive] = ACTIONS(2975), - [anon_sym_LPAREN2] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2979), - [anon_sym_STAR] = ACTIONS(2981), + [384] = { + [sym_preproc_def] = STATE(600), + [sym_preproc_function_def] = STATE(600), + [sym_preproc_call] = STATE(600), + [sym_preproc_if_in_field_declaration_list] = STATE(600), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(600), + [sym_preproc_else_in_field_declaration_list] = STATE(8798), + [sym_preproc_elif_in_field_declaration_list] = STATE(8798), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(8798), + [sym_type_definition] = STATE(600), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(5688), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(3133), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6303), + [sym_array_declarator] = STATE(6145), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym__field_declaration_list_item] = STATE(600), + [sym_field_declaration] = STATE(600), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym_explicit_function_specifier] = STATE(1845), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(600), + [sym_operator_cast] = STATE(6890), + [sym_inline_method_definition] = STATE(600), + [sym__constructor_specifiers] = STATE(1845), + [sym_operator_cast_definition] = STATE(600), + [sym_operator_cast_declaration] = STATE(600), + [sym_constructor_or_destructor_definition] = STATE(600), + [sym_constructor_or_destructor_declaration] = STATE(600), + [sym_friend_declaration] = STATE(600), + [sym_access_specifier] = STATE(8331), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(2439), + [sym_template_function] = STATE(6145), + [sym_using_declaration] = STATE(600), + [sym_alias_declaration] = STATE(600), + [sym_static_assert_declaration] = STATE(600), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5557), + [sym_qualified_identifier] = STATE(6145), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6890), + [sym_operator_name] = STATE(6145), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(600), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_attributed_declarator_repeat1] = STATE(7195), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1845), + [sym_identifier] = ACTIONS(2979), + [aux_sym_preproc_def_token1] = ACTIONS(2981), + [aux_sym_preproc_if_token1] = ACTIONS(2983), + [aux_sym_preproc_if_token2] = ACTIONS(3208), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2987), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2987), + [aux_sym_preproc_else_token1] = ACTIONS(2989), + [aux_sym_preproc_elif_token1] = ACTIONS(2991), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2993), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2993), + [sym_preproc_directive] = ACTIONS(2995), + [anon_sym_LPAREN2] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(3001), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2983), - [anon_sym_SEMI] = ACTIONS(3192), - [anon_sym___extension__] = ACTIONS(2987), - [anon_sym_typedef] = ACTIONS(2989), + [anon_sym_AMP] = ACTIONS(3003), + [anon_sym_SEMI] = ACTIONS(3200), + [anon_sym___extension__] = ACTIONS(3007), + [anon_sym_typedef] = ACTIONS(3009), [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(2991), - [anon_sym_COLON_COLON] = ACTIONS(2993), + [anon_sym_using] = ACTIONS(3011), + [anon_sym_COLON_COLON] = ACTIONS(3013), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), @@ -98225,7 +99212,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2995), + [anon_sym_LBRACK] = ACTIONS(3015), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -98235,7 +99222,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread_local] = ACTIONS(63), [anon_sym___thread] = ACTIONS(63), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(2997), + [anon_sym_constexpr] = ACTIONS(3017), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -98248,585 +99235,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2999), - [anon_sym_enum] = ACTIONS(3001), - [anon_sym_class] = ACTIONS(3003), - [anon_sym_struct] = ACTIONS(3005), - [anon_sym_union] = ACTIONS(3007), + [sym_primitive_type] = ACTIONS(3019), + [anon_sym_enum] = ACTIONS(3021), + [anon_sym_class] = ACTIONS(3023), + [anon_sym_struct] = ACTIONS(3025), + [anon_sym_union] = ACTIONS(3027), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(3009), - [anon_sym_private] = ACTIONS(3011), - [anon_sym_template] = ACTIONS(3013), + [anon_sym_typename] = ACTIONS(3029), + [anon_sym_private] = ACTIONS(3031), + [anon_sym_template] = ACTIONS(3033), [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(3015), - [anon_sym_public] = ACTIONS(3011), - [anon_sym_protected] = ACTIONS(3011), - [anon_sym_static_assert] = ACTIONS(3017), - }, - [380] = { - [ts_builtin_sym_end] = ACTIONS(2667), - [sym_identifier] = ACTIONS(2665), - [aux_sym_preproc_include_token1] = ACTIONS(2665), - [aux_sym_preproc_def_token1] = ACTIONS(2665), - [aux_sym_preproc_if_token1] = ACTIONS(2665), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2665), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2665), - [sym_preproc_directive] = ACTIONS(2665), - [anon_sym_LPAREN2] = ACTIONS(2667), - [anon_sym_BANG] = ACTIONS(2667), - [anon_sym_TILDE] = ACTIONS(2667), - [anon_sym_DASH] = ACTIONS(2665), - [anon_sym_PLUS] = ACTIONS(2665), - [anon_sym_STAR] = ACTIONS(2667), - [anon_sym_AMP_AMP] = ACTIONS(2667), - [anon_sym_AMP] = ACTIONS(2665), - [anon_sym_SEMI] = ACTIONS(2667), - [anon_sym___extension__] = ACTIONS(2665), - [anon_sym_typedef] = ACTIONS(2665), - [anon_sym_virtual] = ACTIONS(2665), - [anon_sym_extern] = ACTIONS(2665), - [anon_sym___attribute__] = ACTIONS(2665), - [anon_sym___attribute] = ACTIONS(2665), - [anon_sym_using] = ACTIONS(2665), - [anon_sym_COLON_COLON] = ACTIONS(2667), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2667), - [anon_sym___declspec] = ACTIONS(2665), - [anon_sym___based] = ACTIONS(2665), - [anon_sym___cdecl] = ACTIONS(2665), - [anon_sym___clrcall] = ACTIONS(2665), - [anon_sym___stdcall] = ACTIONS(2665), - [anon_sym___fastcall] = ACTIONS(2665), - [anon_sym___thiscall] = ACTIONS(2665), - [anon_sym___vectorcall] = ACTIONS(2665), - [anon_sym_LBRACE] = ACTIONS(2667), - [anon_sym_signed] = ACTIONS(2665), - [anon_sym_unsigned] = ACTIONS(2665), - [anon_sym_long] = ACTIONS(2665), - [anon_sym_short] = ACTIONS(2665), - [anon_sym_LBRACK] = ACTIONS(2665), - [anon_sym_static] = ACTIONS(2665), - [anon_sym_register] = ACTIONS(2665), - [anon_sym_inline] = ACTIONS(2665), - [anon_sym___inline] = ACTIONS(2665), - [anon_sym___inline__] = ACTIONS(2665), - [anon_sym___forceinline] = ACTIONS(2665), - [anon_sym_thread_local] = ACTIONS(2665), - [anon_sym___thread] = ACTIONS(2665), - [anon_sym_const] = ACTIONS(2665), - [anon_sym_constexpr] = ACTIONS(2665), - [anon_sym_volatile] = ACTIONS(2665), - [anon_sym_restrict] = ACTIONS(2665), - [anon_sym___restrict__] = ACTIONS(2665), - [anon_sym__Atomic] = ACTIONS(2665), - [anon_sym__Noreturn] = ACTIONS(2665), - [anon_sym_noreturn] = ACTIONS(2665), - [anon_sym__Nonnull] = ACTIONS(2665), - [anon_sym_mutable] = ACTIONS(2665), - [anon_sym_constinit] = ACTIONS(2665), - [anon_sym_consteval] = ACTIONS(2665), - [anon_sym_alignas] = ACTIONS(2665), - [anon_sym__Alignas] = ACTIONS(2665), - [sym_primitive_type] = ACTIONS(2665), - [anon_sym_enum] = ACTIONS(2665), - [anon_sym_class] = ACTIONS(2665), - [anon_sym_struct] = ACTIONS(2665), - [anon_sym_union] = ACTIONS(2665), - [anon_sym_if] = ACTIONS(2665), - [anon_sym_else] = ACTIONS(2665), - [anon_sym_switch] = ACTIONS(2665), - [anon_sym_case] = ACTIONS(2665), - [anon_sym_default] = ACTIONS(2665), - [anon_sym_while] = ACTIONS(2665), - [anon_sym_do] = ACTIONS(2665), - [anon_sym_for] = ACTIONS(2665), - [anon_sym_return] = ACTIONS(2665), - [anon_sym_break] = ACTIONS(2665), - [anon_sym_continue] = ACTIONS(2665), - [anon_sym_goto] = ACTIONS(2665), - [anon_sym___try] = ACTIONS(2665), - [anon_sym___leave] = ACTIONS(2665), - [anon_sym_not] = ACTIONS(2665), - [anon_sym_compl] = ACTIONS(2665), - [anon_sym_DASH_DASH] = ACTIONS(2667), - [anon_sym_PLUS_PLUS] = ACTIONS(2667), - [anon_sym_sizeof] = ACTIONS(2665), - [anon_sym___alignof__] = ACTIONS(2665), - [anon_sym___alignof] = ACTIONS(2665), - [anon_sym__alignof] = ACTIONS(2665), - [anon_sym_alignof] = ACTIONS(2665), - [anon_sym__Alignof] = ACTIONS(2665), - [anon_sym_offsetof] = ACTIONS(2665), - [anon_sym__Generic] = ACTIONS(2665), - [anon_sym_asm] = ACTIONS(2665), - [anon_sym___asm__] = ACTIONS(2665), - [anon_sym___asm] = ACTIONS(2665), - [sym_number_literal] = ACTIONS(2667), - [anon_sym_L_SQUOTE] = ACTIONS(2667), - [anon_sym_u_SQUOTE] = ACTIONS(2667), - [anon_sym_U_SQUOTE] = ACTIONS(2667), - [anon_sym_u8_SQUOTE] = ACTIONS(2667), - [anon_sym_SQUOTE] = ACTIONS(2667), - [anon_sym_L_DQUOTE] = ACTIONS(2667), - [anon_sym_u_DQUOTE] = ACTIONS(2667), - [anon_sym_U_DQUOTE] = ACTIONS(2667), - [anon_sym_u8_DQUOTE] = ACTIONS(2667), - [anon_sym_DQUOTE] = ACTIONS(2667), - [sym_true] = ACTIONS(2665), - [sym_false] = ACTIONS(2665), - [anon_sym_NULL] = ACTIONS(2665), - [anon_sym_nullptr] = ACTIONS(2665), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2665), - [anon_sym_decltype] = ACTIONS(2665), - [anon_sym_explicit] = ACTIONS(2665), - [anon_sym_typename] = ACTIONS(2665), - [anon_sym_export] = ACTIONS(2665), - [anon_sym_module] = ACTIONS(2665), - [anon_sym_import] = ACTIONS(2665), - [anon_sym_template] = ACTIONS(2665), - [anon_sym_operator] = ACTIONS(2665), - [anon_sym_try] = ACTIONS(2665), - [anon_sym_delete] = ACTIONS(2665), - [anon_sym_throw] = ACTIONS(2665), - [anon_sym_namespace] = ACTIONS(2665), - [anon_sym_static_assert] = ACTIONS(2665), - [anon_sym_concept] = ACTIONS(2665), - [anon_sym_co_return] = ACTIONS(2665), - [anon_sym_co_yield] = ACTIONS(2665), - [anon_sym_R_DQUOTE] = ACTIONS(2667), - [anon_sym_LR_DQUOTE] = ACTIONS(2667), - [anon_sym_uR_DQUOTE] = ACTIONS(2667), - [anon_sym_UR_DQUOTE] = ACTIONS(2667), - [anon_sym_u8R_DQUOTE] = ACTIONS(2667), - [anon_sym_co_await] = ACTIONS(2665), - [anon_sym_new] = ACTIONS(2665), - [anon_sym_requires] = ACTIONS(2665), - [sym_this] = ACTIONS(2665), - }, - [381] = { - [ts_builtin_sym_end] = ACTIONS(2671), - [sym_identifier] = ACTIONS(2669), - [aux_sym_preproc_include_token1] = ACTIONS(2669), - [aux_sym_preproc_def_token1] = ACTIONS(2669), - [aux_sym_preproc_if_token1] = ACTIONS(2669), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2669), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2669), - [sym_preproc_directive] = ACTIONS(2669), - [anon_sym_LPAREN2] = ACTIONS(2671), - [anon_sym_BANG] = ACTIONS(2671), - [anon_sym_TILDE] = ACTIONS(2671), - [anon_sym_DASH] = ACTIONS(2669), - [anon_sym_PLUS] = ACTIONS(2669), - [anon_sym_STAR] = ACTIONS(2671), - [anon_sym_AMP_AMP] = ACTIONS(2671), - [anon_sym_AMP] = ACTIONS(2669), - [anon_sym_SEMI] = ACTIONS(2671), - [anon_sym___extension__] = ACTIONS(2669), - [anon_sym_typedef] = ACTIONS(2669), - [anon_sym_virtual] = ACTIONS(2669), - [anon_sym_extern] = ACTIONS(2669), - [anon_sym___attribute__] = ACTIONS(2669), - [anon_sym___attribute] = ACTIONS(2669), - [anon_sym_using] = ACTIONS(2669), - [anon_sym_COLON_COLON] = ACTIONS(2671), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2671), - [anon_sym___declspec] = ACTIONS(2669), - [anon_sym___based] = ACTIONS(2669), - [anon_sym___cdecl] = ACTIONS(2669), - [anon_sym___clrcall] = ACTIONS(2669), - [anon_sym___stdcall] = ACTIONS(2669), - [anon_sym___fastcall] = ACTIONS(2669), - [anon_sym___thiscall] = ACTIONS(2669), - [anon_sym___vectorcall] = ACTIONS(2669), - [anon_sym_LBRACE] = ACTIONS(2671), - [anon_sym_signed] = ACTIONS(2669), - [anon_sym_unsigned] = ACTIONS(2669), - [anon_sym_long] = ACTIONS(2669), - [anon_sym_short] = ACTIONS(2669), - [anon_sym_LBRACK] = ACTIONS(2669), - [anon_sym_static] = ACTIONS(2669), - [anon_sym_register] = ACTIONS(2669), - [anon_sym_inline] = ACTIONS(2669), - [anon_sym___inline] = ACTIONS(2669), - [anon_sym___inline__] = ACTIONS(2669), - [anon_sym___forceinline] = ACTIONS(2669), - [anon_sym_thread_local] = ACTIONS(2669), - [anon_sym___thread] = ACTIONS(2669), - [anon_sym_const] = ACTIONS(2669), - [anon_sym_constexpr] = ACTIONS(2669), - [anon_sym_volatile] = ACTIONS(2669), - [anon_sym_restrict] = ACTIONS(2669), - [anon_sym___restrict__] = ACTIONS(2669), - [anon_sym__Atomic] = ACTIONS(2669), - [anon_sym__Noreturn] = ACTIONS(2669), - [anon_sym_noreturn] = ACTIONS(2669), - [anon_sym__Nonnull] = ACTIONS(2669), - [anon_sym_mutable] = ACTIONS(2669), - [anon_sym_constinit] = ACTIONS(2669), - [anon_sym_consteval] = ACTIONS(2669), - [anon_sym_alignas] = ACTIONS(2669), - [anon_sym__Alignas] = ACTIONS(2669), - [sym_primitive_type] = ACTIONS(2669), - [anon_sym_enum] = ACTIONS(2669), - [anon_sym_class] = ACTIONS(2669), - [anon_sym_struct] = ACTIONS(2669), - [anon_sym_union] = ACTIONS(2669), - [anon_sym_if] = ACTIONS(2669), - [anon_sym_else] = ACTIONS(2669), - [anon_sym_switch] = ACTIONS(2669), - [anon_sym_case] = ACTIONS(2669), - [anon_sym_default] = ACTIONS(2669), - [anon_sym_while] = ACTIONS(2669), - [anon_sym_do] = ACTIONS(2669), - [anon_sym_for] = ACTIONS(2669), - [anon_sym_return] = ACTIONS(2669), - [anon_sym_break] = ACTIONS(2669), - [anon_sym_continue] = ACTIONS(2669), - [anon_sym_goto] = ACTIONS(2669), - [anon_sym___try] = ACTIONS(2669), - [anon_sym___leave] = ACTIONS(2669), - [anon_sym_not] = ACTIONS(2669), - [anon_sym_compl] = ACTIONS(2669), - [anon_sym_DASH_DASH] = ACTIONS(2671), - [anon_sym_PLUS_PLUS] = ACTIONS(2671), - [anon_sym_sizeof] = ACTIONS(2669), - [anon_sym___alignof__] = ACTIONS(2669), - [anon_sym___alignof] = ACTIONS(2669), - [anon_sym__alignof] = ACTIONS(2669), - [anon_sym_alignof] = ACTIONS(2669), - [anon_sym__Alignof] = ACTIONS(2669), - [anon_sym_offsetof] = ACTIONS(2669), - [anon_sym__Generic] = ACTIONS(2669), - [anon_sym_asm] = ACTIONS(2669), - [anon_sym___asm__] = ACTIONS(2669), - [anon_sym___asm] = ACTIONS(2669), - [sym_number_literal] = ACTIONS(2671), - [anon_sym_L_SQUOTE] = ACTIONS(2671), - [anon_sym_u_SQUOTE] = ACTIONS(2671), - [anon_sym_U_SQUOTE] = ACTIONS(2671), - [anon_sym_u8_SQUOTE] = ACTIONS(2671), - [anon_sym_SQUOTE] = ACTIONS(2671), - [anon_sym_L_DQUOTE] = ACTIONS(2671), - [anon_sym_u_DQUOTE] = ACTIONS(2671), - [anon_sym_U_DQUOTE] = ACTIONS(2671), - [anon_sym_u8_DQUOTE] = ACTIONS(2671), - [anon_sym_DQUOTE] = ACTIONS(2671), - [sym_true] = ACTIONS(2669), - [sym_false] = ACTIONS(2669), - [anon_sym_NULL] = ACTIONS(2669), - [anon_sym_nullptr] = ACTIONS(2669), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2669), - [anon_sym_decltype] = ACTIONS(2669), - [anon_sym_explicit] = ACTIONS(2669), - [anon_sym_typename] = ACTIONS(2669), - [anon_sym_export] = ACTIONS(2669), - [anon_sym_module] = ACTIONS(2669), - [anon_sym_import] = ACTIONS(2669), - [anon_sym_template] = ACTIONS(2669), - [anon_sym_operator] = ACTIONS(2669), - [anon_sym_try] = ACTIONS(2669), - [anon_sym_delete] = ACTIONS(2669), - [anon_sym_throw] = ACTIONS(2669), - [anon_sym_namespace] = ACTIONS(2669), - [anon_sym_static_assert] = ACTIONS(2669), - [anon_sym_concept] = ACTIONS(2669), - [anon_sym_co_return] = ACTIONS(2669), - [anon_sym_co_yield] = ACTIONS(2669), - [anon_sym_R_DQUOTE] = ACTIONS(2671), - [anon_sym_LR_DQUOTE] = ACTIONS(2671), - [anon_sym_uR_DQUOTE] = ACTIONS(2671), - [anon_sym_UR_DQUOTE] = ACTIONS(2671), - [anon_sym_u8R_DQUOTE] = ACTIONS(2671), - [anon_sym_co_await] = ACTIONS(2669), - [anon_sym_new] = ACTIONS(2669), - [anon_sym_requires] = ACTIONS(2669), - [sym_this] = ACTIONS(2669), - }, - [382] = { - [ts_builtin_sym_end] = ACTIONS(2725), - [sym_identifier] = ACTIONS(2723), - [aux_sym_preproc_include_token1] = ACTIONS(2723), - [aux_sym_preproc_def_token1] = ACTIONS(2723), - [aux_sym_preproc_if_token1] = ACTIONS(2723), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2723), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2723), - [sym_preproc_directive] = ACTIONS(2723), - [anon_sym_LPAREN2] = ACTIONS(2725), - [anon_sym_BANG] = ACTIONS(2725), - [anon_sym_TILDE] = ACTIONS(2725), - [anon_sym_DASH] = ACTIONS(2723), - [anon_sym_PLUS] = ACTIONS(2723), - [anon_sym_STAR] = ACTIONS(2725), - [anon_sym_AMP_AMP] = ACTIONS(2725), - [anon_sym_AMP] = ACTIONS(2723), - [anon_sym_SEMI] = ACTIONS(2725), - [anon_sym___extension__] = ACTIONS(2723), - [anon_sym_typedef] = ACTIONS(2723), - [anon_sym_virtual] = ACTIONS(2723), - [anon_sym_extern] = ACTIONS(2723), - [anon_sym___attribute__] = ACTIONS(2723), - [anon_sym___attribute] = ACTIONS(2723), - [anon_sym_using] = ACTIONS(2723), - [anon_sym_COLON_COLON] = ACTIONS(2725), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2725), - [anon_sym___declspec] = ACTIONS(2723), - [anon_sym___based] = ACTIONS(2723), - [anon_sym___cdecl] = ACTIONS(2723), - [anon_sym___clrcall] = ACTIONS(2723), - [anon_sym___stdcall] = ACTIONS(2723), - [anon_sym___fastcall] = ACTIONS(2723), - [anon_sym___thiscall] = ACTIONS(2723), - [anon_sym___vectorcall] = ACTIONS(2723), - [anon_sym_LBRACE] = ACTIONS(2725), - [anon_sym_signed] = ACTIONS(2723), - [anon_sym_unsigned] = ACTIONS(2723), - [anon_sym_long] = ACTIONS(2723), - [anon_sym_short] = ACTIONS(2723), - [anon_sym_LBRACK] = ACTIONS(2723), - [anon_sym_static] = ACTIONS(2723), - [anon_sym_register] = ACTIONS(2723), - [anon_sym_inline] = ACTIONS(2723), - [anon_sym___inline] = ACTIONS(2723), - [anon_sym___inline__] = ACTIONS(2723), - [anon_sym___forceinline] = ACTIONS(2723), - [anon_sym_thread_local] = ACTIONS(2723), - [anon_sym___thread] = ACTIONS(2723), - [anon_sym_const] = ACTIONS(2723), - [anon_sym_constexpr] = ACTIONS(2723), - [anon_sym_volatile] = ACTIONS(2723), - [anon_sym_restrict] = ACTIONS(2723), - [anon_sym___restrict__] = ACTIONS(2723), - [anon_sym__Atomic] = ACTIONS(2723), - [anon_sym__Noreturn] = ACTIONS(2723), - [anon_sym_noreturn] = ACTIONS(2723), - [anon_sym__Nonnull] = ACTIONS(2723), - [anon_sym_mutable] = ACTIONS(2723), - [anon_sym_constinit] = ACTIONS(2723), - [anon_sym_consteval] = ACTIONS(2723), - [anon_sym_alignas] = ACTIONS(2723), - [anon_sym__Alignas] = ACTIONS(2723), - [sym_primitive_type] = ACTIONS(2723), - [anon_sym_enum] = ACTIONS(2723), - [anon_sym_class] = ACTIONS(2723), - [anon_sym_struct] = ACTIONS(2723), - [anon_sym_union] = ACTIONS(2723), - [anon_sym_if] = ACTIONS(2723), - [anon_sym_else] = ACTIONS(2723), - [anon_sym_switch] = ACTIONS(2723), - [anon_sym_case] = ACTIONS(2723), - [anon_sym_default] = ACTIONS(2723), - [anon_sym_while] = ACTIONS(2723), - [anon_sym_do] = ACTIONS(2723), - [anon_sym_for] = ACTIONS(2723), - [anon_sym_return] = ACTIONS(2723), - [anon_sym_break] = ACTIONS(2723), - [anon_sym_continue] = ACTIONS(2723), - [anon_sym_goto] = ACTIONS(2723), - [anon_sym___try] = ACTIONS(2723), - [anon_sym___leave] = ACTIONS(2723), - [anon_sym_not] = ACTIONS(2723), - [anon_sym_compl] = ACTIONS(2723), - [anon_sym_DASH_DASH] = ACTIONS(2725), - [anon_sym_PLUS_PLUS] = ACTIONS(2725), - [anon_sym_sizeof] = ACTIONS(2723), - [anon_sym___alignof__] = ACTIONS(2723), - [anon_sym___alignof] = ACTIONS(2723), - [anon_sym__alignof] = ACTIONS(2723), - [anon_sym_alignof] = ACTIONS(2723), - [anon_sym__Alignof] = ACTIONS(2723), - [anon_sym_offsetof] = ACTIONS(2723), - [anon_sym__Generic] = ACTIONS(2723), - [anon_sym_asm] = ACTIONS(2723), - [anon_sym___asm__] = ACTIONS(2723), - [anon_sym___asm] = ACTIONS(2723), - [sym_number_literal] = ACTIONS(2725), - [anon_sym_L_SQUOTE] = ACTIONS(2725), - [anon_sym_u_SQUOTE] = ACTIONS(2725), - [anon_sym_U_SQUOTE] = ACTIONS(2725), - [anon_sym_u8_SQUOTE] = ACTIONS(2725), - [anon_sym_SQUOTE] = ACTIONS(2725), - [anon_sym_L_DQUOTE] = ACTIONS(2725), - [anon_sym_u_DQUOTE] = ACTIONS(2725), - [anon_sym_U_DQUOTE] = ACTIONS(2725), - [anon_sym_u8_DQUOTE] = ACTIONS(2725), - [anon_sym_DQUOTE] = ACTIONS(2725), - [sym_true] = ACTIONS(2723), - [sym_false] = ACTIONS(2723), - [anon_sym_NULL] = ACTIONS(2723), - [anon_sym_nullptr] = ACTIONS(2723), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2723), - [anon_sym_decltype] = ACTIONS(2723), - [anon_sym_explicit] = ACTIONS(2723), - [anon_sym_typename] = ACTIONS(2723), - [anon_sym_export] = ACTIONS(2723), - [anon_sym_module] = ACTIONS(2723), - [anon_sym_import] = ACTIONS(2723), - [anon_sym_template] = ACTIONS(2723), - [anon_sym_operator] = ACTIONS(2723), - [anon_sym_try] = ACTIONS(2723), - [anon_sym_delete] = ACTIONS(2723), - [anon_sym_throw] = ACTIONS(2723), - [anon_sym_namespace] = ACTIONS(2723), - [anon_sym_static_assert] = ACTIONS(2723), - [anon_sym_concept] = ACTIONS(2723), - [anon_sym_co_return] = ACTIONS(2723), - [anon_sym_co_yield] = ACTIONS(2723), - [anon_sym_R_DQUOTE] = ACTIONS(2725), - [anon_sym_LR_DQUOTE] = ACTIONS(2725), - [anon_sym_uR_DQUOTE] = ACTIONS(2725), - [anon_sym_UR_DQUOTE] = ACTIONS(2725), - [anon_sym_u8R_DQUOTE] = ACTIONS(2725), - [anon_sym_co_await] = ACTIONS(2723), - [anon_sym_new] = ACTIONS(2723), - [anon_sym_requires] = ACTIONS(2723), - [sym_this] = ACTIONS(2723), - }, - [383] = { - [ts_builtin_sym_end] = ACTIONS(2633), - [sym_identifier] = ACTIONS(2631), - [aux_sym_preproc_include_token1] = ACTIONS(2631), - [aux_sym_preproc_def_token1] = ACTIONS(2631), - [aux_sym_preproc_if_token1] = ACTIONS(2631), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2631), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2631), - [sym_preproc_directive] = ACTIONS(2631), - [anon_sym_LPAREN2] = ACTIONS(2633), - [anon_sym_BANG] = ACTIONS(2633), - [anon_sym_TILDE] = ACTIONS(2633), - [anon_sym_DASH] = ACTIONS(2631), - [anon_sym_PLUS] = ACTIONS(2631), - [anon_sym_STAR] = ACTIONS(2633), - [anon_sym_AMP_AMP] = ACTIONS(2633), - [anon_sym_AMP] = ACTIONS(2631), - [anon_sym_SEMI] = ACTIONS(2633), - [anon_sym___extension__] = ACTIONS(2631), - [anon_sym_typedef] = ACTIONS(2631), - [anon_sym_virtual] = ACTIONS(2631), - [anon_sym_extern] = ACTIONS(2631), - [anon_sym___attribute__] = ACTIONS(2631), - [anon_sym___attribute] = ACTIONS(2631), - [anon_sym_using] = ACTIONS(2631), - [anon_sym_COLON_COLON] = ACTIONS(2633), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2633), - [anon_sym___declspec] = ACTIONS(2631), - [anon_sym___based] = ACTIONS(2631), - [anon_sym___cdecl] = ACTIONS(2631), - [anon_sym___clrcall] = ACTIONS(2631), - [anon_sym___stdcall] = ACTIONS(2631), - [anon_sym___fastcall] = ACTIONS(2631), - [anon_sym___thiscall] = ACTIONS(2631), - [anon_sym___vectorcall] = ACTIONS(2631), - [anon_sym_LBRACE] = ACTIONS(2633), - [anon_sym_signed] = ACTIONS(2631), - [anon_sym_unsigned] = ACTIONS(2631), - [anon_sym_long] = ACTIONS(2631), - [anon_sym_short] = ACTIONS(2631), - [anon_sym_LBRACK] = ACTIONS(2631), - [anon_sym_static] = ACTIONS(2631), - [anon_sym_register] = ACTIONS(2631), - [anon_sym_inline] = ACTIONS(2631), - [anon_sym___inline] = ACTIONS(2631), - [anon_sym___inline__] = ACTIONS(2631), - [anon_sym___forceinline] = ACTIONS(2631), - [anon_sym_thread_local] = ACTIONS(2631), - [anon_sym___thread] = ACTIONS(2631), - [anon_sym_const] = ACTIONS(2631), - [anon_sym_constexpr] = ACTIONS(2631), - [anon_sym_volatile] = ACTIONS(2631), - [anon_sym_restrict] = ACTIONS(2631), - [anon_sym___restrict__] = ACTIONS(2631), - [anon_sym__Atomic] = ACTIONS(2631), - [anon_sym__Noreturn] = ACTIONS(2631), - [anon_sym_noreturn] = ACTIONS(2631), - [anon_sym__Nonnull] = ACTIONS(2631), - [anon_sym_mutable] = ACTIONS(2631), - [anon_sym_constinit] = ACTIONS(2631), - [anon_sym_consteval] = ACTIONS(2631), - [anon_sym_alignas] = ACTIONS(2631), - [anon_sym__Alignas] = ACTIONS(2631), - [sym_primitive_type] = ACTIONS(2631), - [anon_sym_enum] = ACTIONS(2631), - [anon_sym_class] = ACTIONS(2631), - [anon_sym_struct] = ACTIONS(2631), - [anon_sym_union] = ACTIONS(2631), - [anon_sym_if] = ACTIONS(2631), - [anon_sym_else] = ACTIONS(2631), - [anon_sym_switch] = ACTIONS(2631), - [anon_sym_case] = ACTIONS(2631), - [anon_sym_default] = ACTIONS(2631), - [anon_sym_while] = ACTIONS(2631), - [anon_sym_do] = ACTIONS(2631), - [anon_sym_for] = ACTIONS(2631), - [anon_sym_return] = ACTIONS(2631), - [anon_sym_break] = ACTIONS(2631), - [anon_sym_continue] = ACTIONS(2631), - [anon_sym_goto] = ACTIONS(2631), - [anon_sym___try] = ACTIONS(2631), - [anon_sym___leave] = ACTIONS(2631), - [anon_sym_not] = ACTIONS(2631), - [anon_sym_compl] = ACTIONS(2631), - [anon_sym_DASH_DASH] = ACTIONS(2633), - [anon_sym_PLUS_PLUS] = ACTIONS(2633), - [anon_sym_sizeof] = ACTIONS(2631), - [anon_sym___alignof__] = ACTIONS(2631), - [anon_sym___alignof] = ACTIONS(2631), - [anon_sym__alignof] = ACTIONS(2631), - [anon_sym_alignof] = ACTIONS(2631), - [anon_sym__Alignof] = ACTIONS(2631), - [anon_sym_offsetof] = ACTIONS(2631), - [anon_sym__Generic] = ACTIONS(2631), - [anon_sym_asm] = ACTIONS(2631), - [anon_sym___asm__] = ACTIONS(2631), - [anon_sym___asm] = ACTIONS(2631), - [sym_number_literal] = ACTIONS(2633), - [anon_sym_L_SQUOTE] = ACTIONS(2633), - [anon_sym_u_SQUOTE] = ACTIONS(2633), - [anon_sym_U_SQUOTE] = ACTIONS(2633), - [anon_sym_u8_SQUOTE] = ACTIONS(2633), - [anon_sym_SQUOTE] = ACTIONS(2633), - [anon_sym_L_DQUOTE] = ACTIONS(2633), - [anon_sym_u_DQUOTE] = ACTIONS(2633), - [anon_sym_U_DQUOTE] = ACTIONS(2633), - [anon_sym_u8_DQUOTE] = ACTIONS(2633), - [anon_sym_DQUOTE] = ACTIONS(2633), - [sym_true] = ACTIONS(2631), - [sym_false] = ACTIONS(2631), - [anon_sym_NULL] = ACTIONS(2631), - [anon_sym_nullptr] = ACTIONS(2631), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2631), - [anon_sym_decltype] = ACTIONS(2631), - [anon_sym_explicit] = ACTIONS(2631), - [anon_sym_typename] = ACTIONS(2631), - [anon_sym_export] = ACTIONS(2631), - [anon_sym_module] = ACTIONS(2631), - [anon_sym_import] = ACTIONS(2631), - [anon_sym_template] = ACTIONS(2631), - [anon_sym_operator] = ACTIONS(2631), - [anon_sym_try] = ACTIONS(2631), - [anon_sym_delete] = ACTIONS(2631), - [anon_sym_throw] = ACTIONS(2631), - [anon_sym_namespace] = ACTIONS(2631), - [anon_sym_static_assert] = ACTIONS(2631), - [anon_sym_concept] = ACTIONS(2631), - [anon_sym_co_return] = ACTIONS(2631), - [anon_sym_co_yield] = ACTIONS(2631), - [anon_sym_R_DQUOTE] = ACTIONS(2633), - [anon_sym_LR_DQUOTE] = ACTIONS(2633), - [anon_sym_uR_DQUOTE] = ACTIONS(2633), - [anon_sym_UR_DQUOTE] = ACTIONS(2633), - [anon_sym_u8R_DQUOTE] = ACTIONS(2633), - [anon_sym_co_await] = ACTIONS(2631), - [anon_sym_new] = ACTIONS(2631), - [anon_sym_requires] = ACTIONS(2631), - [sym_this] = ACTIONS(2631), + [anon_sym_friend] = ACTIONS(3035), + [anon_sym_public] = ACTIONS(3031), + [anon_sym_protected] = ACTIONS(3031), + [anon_sym_static_assert] = ACTIONS(3037), }, - [384] = { + [385] = { [ts_builtin_sym_end] = ACTIONS(2637), [sym_identifier] = ACTIONS(2635), [aux_sym_preproc_include_token1] = ACTIONS(2635), @@ -98966,285 +99393,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2635), [sym_this] = ACTIONS(2635), }, - [385] = { - [sym_type_qualifier] = STATE(3910), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(4737), - [sym_sized_type_specifier] = STATE(2668), - [sym_enum_specifier] = STATE(2668), - [sym_struct_specifier] = STATE(2668), - [sym_union_specifier] = STATE(2668), - [sym_expression] = STATE(4349), - [sym__string] = STATE(4738), - [sym_conditional_expression] = STATE(4829), - [sym_assignment_expression] = STATE(4829), - [sym_pointer_expression] = STATE(3602), - [sym_unary_expression] = STATE(4829), - [sym_binary_expression] = STATE(4829), - [sym_update_expression] = STATE(4829), - [sym_cast_expression] = STATE(4829), - [sym_type_descriptor] = STATE(6933), - [sym_sizeof_expression] = STATE(4829), - [sym_alignof_expression] = STATE(4829), - [sym_offsetof_expression] = STATE(4829), - [sym_generic_expression] = STATE(4829), - [sym_subscript_expression] = STATE(3602), - [sym_call_expression] = STATE(3602), - [sym_gnu_asm_expression] = STATE(4829), - [sym_extension_expression] = STATE(4829), - [sym_field_expression] = STATE(3602), - [sym_compound_literal_expression] = STATE(4829), - [sym_parenthesized_expression] = STATE(3602), - [sym_char_literal] = STATE(4738), - [sym_concatenated_string] = STATE(4738), - [sym_string_literal] = STATE(3759), - [sym_null] = STATE(4829), - [sym_placeholder_type_specifier] = STATE(2668), - [sym_decltype_auto] = STATE(2708), - [sym_decltype] = STATE(2598), - [sym_class_specifier] = STATE(2668), - [sym__class_name] = STATE(7804), - [sym_dependent_type] = STATE(2668), - [sym_template_type] = STATE(5285), - [sym_template_function] = STATE(4829), - [sym_raw_string_literal] = STATE(3759), - [sym_co_await_expression] = STATE(4829), - [sym_new_expression] = STATE(4829), - [sym_delete_expression] = STATE(4829), - [sym_requires_clause] = STATE(4829), - [sym_requires_expression] = STATE(4829), - [sym_lambda_expression] = STATE(4829), - [sym_lambda_capture_specifier] = STATE(5401), - [sym_fold_expression] = STATE(4829), - [sym_parameter_pack_expansion] = STATE(4829), - [sym_type_parameter_pack_expansion] = STATE(7236), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5750), - [sym_qualified_identifier] = STATE(3602), - [sym_qualified_type_identifier] = STATE(5327), - [sym_user_defined_literal] = STATE(3602), - [aux_sym__type_definition_type_repeat1] = STATE(3910), - [aux_sym_sized_type_specifier_repeat1] = STATE(4239), - [sym_identifier] = ACTIONS(3116), - [anon_sym_LPAREN2] = ACTIONS(3118), - [anon_sym_BANG] = ACTIONS(3120), - [anon_sym_TILDE] = ACTIONS(3120), - [anon_sym_DASH] = ACTIONS(3122), - [anon_sym_PLUS] = ACTIONS(3122), - [anon_sym_STAR] = ACTIONS(3124), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym___extension__] = ACTIONS(3126), - [anon_sym_COLON_COLON] = ACTIONS(3128), - [anon_sym_signed] = ACTIONS(3130), - [anon_sym_unsigned] = ACTIONS(3130), - [anon_sym_long] = ACTIONS(3130), - [anon_sym_short] = ACTIONS(3130), - [anon_sym_LBRACK] = ACTIONS(2020), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(3132), - [anon_sym_enum] = ACTIONS(3134), - [anon_sym_class] = ACTIONS(3136), - [anon_sym_struct] = ACTIONS(3138), - [anon_sym_union] = ACTIONS(3140), - [anon_sym_not] = ACTIONS(3122), - [anon_sym_compl] = ACTIONS(3122), - [anon_sym_DASH_DASH] = ACTIONS(3142), - [anon_sym_PLUS_PLUS] = ACTIONS(3142), - [anon_sym_sizeof] = ACTIONS(3144), - [anon_sym___alignof__] = ACTIONS(3146), - [anon_sym___alignof] = ACTIONS(3146), - [anon_sym__alignof] = ACTIONS(3146), - [anon_sym_alignof] = ACTIONS(3146), - [anon_sym__Alignof] = ACTIONS(3146), - [anon_sym_offsetof] = ACTIONS(3148), - [anon_sym__Generic] = ACTIONS(3150), - [anon_sym_asm] = ACTIONS(3152), - [anon_sym___asm__] = ACTIONS(3152), - [anon_sym___asm] = ACTIONS(3152), - [sym_number_literal] = ACTIONS(3154), - [anon_sym_L_SQUOTE] = ACTIONS(3156), - [anon_sym_u_SQUOTE] = ACTIONS(3156), - [anon_sym_U_SQUOTE] = ACTIONS(3156), - [anon_sym_u8_SQUOTE] = ACTIONS(3156), - [anon_sym_SQUOTE] = ACTIONS(3156), - [anon_sym_L_DQUOTE] = ACTIONS(3158), - [anon_sym_u_DQUOTE] = ACTIONS(3158), - [anon_sym_U_DQUOTE] = ACTIONS(3158), - [anon_sym_u8_DQUOTE] = ACTIONS(3158), - [anon_sym_DQUOTE] = ACTIONS(3158), - [sym_true] = ACTIONS(3160), - [sym_false] = ACTIONS(3160), - [anon_sym_NULL] = ACTIONS(3162), - [anon_sym_nullptr] = ACTIONS(3162), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3164), - [anon_sym_decltype] = ACTIONS(3166), - [anon_sym_typename] = ACTIONS(3168), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_GT2] = ACTIONS(3202), - [anon_sym_delete] = ACTIONS(3172), - [anon_sym_R_DQUOTE] = ACTIONS(3174), - [anon_sym_LR_DQUOTE] = ACTIONS(3174), - [anon_sym_uR_DQUOTE] = ACTIONS(3174), - [anon_sym_UR_DQUOTE] = ACTIONS(3174), - [anon_sym_u8R_DQUOTE] = ACTIONS(3174), - [anon_sym_co_await] = ACTIONS(3176), - [anon_sym_new] = ACTIONS(3178), - [anon_sym_requires] = ACTIONS(3180), - [sym_this] = ACTIONS(3160), - }, [386] = { - [sym_type_qualifier] = STATE(3910), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(4737), - [sym_sized_type_specifier] = STATE(2668), - [sym_enum_specifier] = STATE(2668), - [sym_struct_specifier] = STATE(2668), - [sym_union_specifier] = STATE(2668), - [sym_expression] = STATE(4402), - [sym__string] = STATE(4738), - [sym_conditional_expression] = STATE(4829), - [sym_assignment_expression] = STATE(4829), - [sym_pointer_expression] = STATE(3602), - [sym_unary_expression] = STATE(4829), - [sym_binary_expression] = STATE(4829), - [sym_update_expression] = STATE(4829), - [sym_cast_expression] = STATE(4829), - [sym_type_descriptor] = STATE(7081), - [sym_sizeof_expression] = STATE(4829), - [sym_alignof_expression] = STATE(4829), - [sym_offsetof_expression] = STATE(4829), - [sym_generic_expression] = STATE(4829), - [sym_subscript_expression] = STATE(3602), - [sym_call_expression] = STATE(3602), - [sym_gnu_asm_expression] = STATE(4829), - [sym_extension_expression] = STATE(4829), - [sym_field_expression] = STATE(3602), - [sym_compound_literal_expression] = STATE(4829), - [sym_parenthesized_expression] = STATE(3602), - [sym_char_literal] = STATE(4738), - [sym_concatenated_string] = STATE(4738), - [sym_string_literal] = STATE(3759), - [sym_null] = STATE(4829), - [sym_placeholder_type_specifier] = STATE(2668), - [sym_decltype_auto] = STATE(2708), - [sym_decltype] = STATE(2598), - [sym_class_specifier] = STATE(2668), - [sym__class_name] = STATE(7804), - [sym_dependent_type] = STATE(2668), - [sym_template_type] = STATE(5285), - [sym_template_function] = STATE(4829), - [sym_raw_string_literal] = STATE(3759), - [sym_co_await_expression] = STATE(4829), - [sym_new_expression] = STATE(4829), - [sym_delete_expression] = STATE(4829), - [sym_requires_clause] = STATE(4829), - [sym_requires_expression] = STATE(4829), - [sym_lambda_expression] = STATE(4829), - [sym_lambda_capture_specifier] = STATE(5401), - [sym_fold_expression] = STATE(4829), - [sym_parameter_pack_expansion] = STATE(4829), - [sym_type_parameter_pack_expansion] = STATE(7251), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5750), - [sym_qualified_identifier] = STATE(3602), - [sym_qualified_type_identifier] = STATE(5327), - [sym_user_defined_literal] = STATE(3602), - [aux_sym__type_definition_type_repeat1] = STATE(3910), - [aux_sym_sized_type_specifier_repeat1] = STATE(4239), - [sym_identifier] = ACTIONS(3116), - [anon_sym_LPAREN2] = ACTIONS(3118), - [anon_sym_BANG] = ACTIONS(3120), - [anon_sym_TILDE] = ACTIONS(3120), - [anon_sym_DASH] = ACTIONS(3122), - [anon_sym_PLUS] = ACTIONS(3122), - [anon_sym_STAR] = ACTIONS(3124), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym___extension__] = ACTIONS(3126), - [anon_sym_COLON_COLON] = ACTIONS(3128), - [anon_sym_signed] = ACTIONS(3130), - [anon_sym_unsigned] = ACTIONS(3130), - [anon_sym_long] = ACTIONS(3130), - [anon_sym_short] = ACTIONS(3130), - [anon_sym_LBRACK] = ACTIONS(2020), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(3132), - [anon_sym_enum] = ACTIONS(3134), - [anon_sym_class] = ACTIONS(3136), - [anon_sym_struct] = ACTIONS(3138), - [anon_sym_union] = ACTIONS(3140), - [anon_sym_not] = ACTIONS(3122), - [anon_sym_compl] = ACTIONS(3122), - [anon_sym_DASH_DASH] = ACTIONS(3142), - [anon_sym_PLUS_PLUS] = ACTIONS(3142), - [anon_sym_sizeof] = ACTIONS(3144), - [anon_sym___alignof__] = ACTIONS(3146), - [anon_sym___alignof] = ACTIONS(3146), - [anon_sym__alignof] = ACTIONS(3146), - [anon_sym_alignof] = ACTIONS(3146), - [anon_sym__Alignof] = ACTIONS(3146), - [anon_sym_offsetof] = ACTIONS(3148), - [anon_sym__Generic] = ACTIONS(3150), - [anon_sym_asm] = ACTIONS(3152), - [anon_sym___asm__] = ACTIONS(3152), - [anon_sym___asm] = ACTIONS(3152), - [sym_number_literal] = ACTIONS(3154), - [anon_sym_L_SQUOTE] = ACTIONS(3156), - [anon_sym_u_SQUOTE] = ACTIONS(3156), - [anon_sym_U_SQUOTE] = ACTIONS(3156), - [anon_sym_u8_SQUOTE] = ACTIONS(3156), - [anon_sym_SQUOTE] = ACTIONS(3156), - [anon_sym_L_DQUOTE] = ACTIONS(3158), - [anon_sym_u_DQUOTE] = ACTIONS(3158), - [anon_sym_U_DQUOTE] = ACTIONS(3158), - [anon_sym_u8_DQUOTE] = ACTIONS(3158), - [anon_sym_DQUOTE] = ACTIONS(3158), - [sym_true] = ACTIONS(3160), - [sym_false] = ACTIONS(3160), - [anon_sym_NULL] = ACTIONS(3162), - [anon_sym_nullptr] = ACTIONS(3162), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3164), - [anon_sym_decltype] = ACTIONS(3166), - [anon_sym_typename] = ACTIONS(3168), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_GT2] = ACTIONS(3204), - [anon_sym_delete] = ACTIONS(3172), - [anon_sym_R_DQUOTE] = ACTIONS(3174), - [anon_sym_LR_DQUOTE] = ACTIONS(3174), - [anon_sym_uR_DQUOTE] = ACTIONS(3174), - [anon_sym_UR_DQUOTE] = ACTIONS(3174), - [anon_sym_u8R_DQUOTE] = ACTIONS(3174), - [anon_sym_co_await] = ACTIONS(3176), - [anon_sym_new] = ACTIONS(3178), - [anon_sym_requires] = ACTIONS(3180), - [sym_this] = ACTIONS(3160), + [ts_builtin_sym_end] = ACTIONS(2641), + [sym_identifier] = ACTIONS(2639), + [aux_sym_preproc_include_token1] = ACTIONS(2639), + [aux_sym_preproc_def_token1] = ACTIONS(2639), + [aux_sym_preproc_if_token1] = ACTIONS(2639), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2639), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2639), + [sym_preproc_directive] = ACTIONS(2639), + [anon_sym_LPAREN2] = ACTIONS(2641), + [anon_sym_BANG] = ACTIONS(2641), + [anon_sym_TILDE] = ACTIONS(2641), + [anon_sym_DASH] = ACTIONS(2639), + [anon_sym_PLUS] = ACTIONS(2639), + [anon_sym_STAR] = ACTIONS(2641), + [anon_sym_AMP_AMP] = ACTIONS(2641), + [anon_sym_AMP] = ACTIONS(2639), + [anon_sym_SEMI] = ACTIONS(2641), + [anon_sym___extension__] = ACTIONS(2639), + [anon_sym_typedef] = ACTIONS(2639), + [anon_sym_virtual] = ACTIONS(2639), + [anon_sym_extern] = ACTIONS(2639), + [anon_sym___attribute__] = ACTIONS(2639), + [anon_sym___attribute] = ACTIONS(2639), + [anon_sym_using] = ACTIONS(2639), + [anon_sym_COLON_COLON] = ACTIONS(2641), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2641), + [anon_sym___declspec] = ACTIONS(2639), + [anon_sym___based] = ACTIONS(2639), + [anon_sym___cdecl] = ACTIONS(2639), + [anon_sym___clrcall] = ACTIONS(2639), + [anon_sym___stdcall] = ACTIONS(2639), + [anon_sym___fastcall] = ACTIONS(2639), + [anon_sym___thiscall] = ACTIONS(2639), + [anon_sym___vectorcall] = ACTIONS(2639), + [anon_sym_LBRACE] = ACTIONS(2641), + [anon_sym_signed] = ACTIONS(2639), + [anon_sym_unsigned] = ACTIONS(2639), + [anon_sym_long] = ACTIONS(2639), + [anon_sym_short] = ACTIONS(2639), + [anon_sym_LBRACK] = ACTIONS(2639), + [anon_sym_static] = ACTIONS(2639), + [anon_sym_register] = ACTIONS(2639), + [anon_sym_inline] = ACTIONS(2639), + [anon_sym___inline] = ACTIONS(2639), + [anon_sym___inline__] = ACTIONS(2639), + [anon_sym___forceinline] = ACTIONS(2639), + [anon_sym_thread_local] = ACTIONS(2639), + [anon_sym___thread] = ACTIONS(2639), + [anon_sym_const] = ACTIONS(2639), + [anon_sym_constexpr] = ACTIONS(2639), + [anon_sym_volatile] = ACTIONS(2639), + [anon_sym_restrict] = ACTIONS(2639), + [anon_sym___restrict__] = ACTIONS(2639), + [anon_sym__Atomic] = ACTIONS(2639), + [anon_sym__Noreturn] = ACTIONS(2639), + [anon_sym_noreturn] = ACTIONS(2639), + [anon_sym__Nonnull] = ACTIONS(2639), + [anon_sym_mutable] = ACTIONS(2639), + [anon_sym_constinit] = ACTIONS(2639), + [anon_sym_consteval] = ACTIONS(2639), + [anon_sym_alignas] = ACTIONS(2639), + [anon_sym__Alignas] = ACTIONS(2639), + [sym_primitive_type] = ACTIONS(2639), + [anon_sym_enum] = ACTIONS(2639), + [anon_sym_class] = ACTIONS(2639), + [anon_sym_struct] = ACTIONS(2639), + [anon_sym_union] = ACTIONS(2639), + [anon_sym_if] = ACTIONS(2639), + [anon_sym_else] = ACTIONS(2639), + [anon_sym_switch] = ACTIONS(2639), + [anon_sym_case] = ACTIONS(2639), + [anon_sym_default] = ACTIONS(2639), + [anon_sym_while] = ACTIONS(2639), + [anon_sym_do] = ACTIONS(2639), + [anon_sym_for] = ACTIONS(2639), + [anon_sym_return] = ACTIONS(2639), + [anon_sym_break] = ACTIONS(2639), + [anon_sym_continue] = ACTIONS(2639), + [anon_sym_goto] = ACTIONS(2639), + [anon_sym___try] = ACTIONS(2639), + [anon_sym___leave] = ACTIONS(2639), + [anon_sym_not] = ACTIONS(2639), + [anon_sym_compl] = ACTIONS(2639), + [anon_sym_DASH_DASH] = ACTIONS(2641), + [anon_sym_PLUS_PLUS] = ACTIONS(2641), + [anon_sym_sizeof] = ACTIONS(2639), + [anon_sym___alignof__] = ACTIONS(2639), + [anon_sym___alignof] = ACTIONS(2639), + [anon_sym__alignof] = ACTIONS(2639), + [anon_sym_alignof] = ACTIONS(2639), + [anon_sym__Alignof] = ACTIONS(2639), + [anon_sym_offsetof] = ACTIONS(2639), + [anon_sym__Generic] = ACTIONS(2639), + [anon_sym_asm] = ACTIONS(2639), + [anon_sym___asm__] = ACTIONS(2639), + [anon_sym___asm] = ACTIONS(2639), + [sym_number_literal] = ACTIONS(2641), + [anon_sym_L_SQUOTE] = ACTIONS(2641), + [anon_sym_u_SQUOTE] = ACTIONS(2641), + [anon_sym_U_SQUOTE] = ACTIONS(2641), + [anon_sym_u8_SQUOTE] = ACTIONS(2641), + [anon_sym_SQUOTE] = ACTIONS(2641), + [anon_sym_L_DQUOTE] = ACTIONS(2641), + [anon_sym_u_DQUOTE] = ACTIONS(2641), + [anon_sym_U_DQUOTE] = ACTIONS(2641), + [anon_sym_u8_DQUOTE] = ACTIONS(2641), + [anon_sym_DQUOTE] = ACTIONS(2641), + [sym_true] = ACTIONS(2639), + [sym_false] = ACTIONS(2639), + [anon_sym_NULL] = ACTIONS(2639), + [anon_sym_nullptr] = ACTIONS(2639), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2639), + [anon_sym_decltype] = ACTIONS(2639), + [anon_sym_explicit] = ACTIONS(2639), + [anon_sym_typename] = ACTIONS(2639), + [anon_sym_export] = ACTIONS(2639), + [anon_sym_module] = ACTIONS(2639), + [anon_sym_import] = ACTIONS(2639), + [anon_sym_template] = ACTIONS(2639), + [anon_sym_operator] = ACTIONS(2639), + [anon_sym_try] = ACTIONS(2639), + [anon_sym_delete] = ACTIONS(2639), + [anon_sym_throw] = ACTIONS(2639), + [anon_sym_namespace] = ACTIONS(2639), + [anon_sym_static_assert] = ACTIONS(2639), + [anon_sym_concept] = ACTIONS(2639), + [anon_sym_co_return] = ACTIONS(2639), + [anon_sym_co_yield] = ACTIONS(2639), + [anon_sym_R_DQUOTE] = ACTIONS(2641), + [anon_sym_LR_DQUOTE] = ACTIONS(2641), + [anon_sym_uR_DQUOTE] = ACTIONS(2641), + [anon_sym_UR_DQUOTE] = ACTIONS(2641), + [anon_sym_u8R_DQUOTE] = ACTIONS(2641), + [anon_sym_co_await] = ACTIONS(2639), + [anon_sym_new] = ACTIONS(2639), + [anon_sym_requires] = ACTIONS(2639), + [sym_this] = ACTIONS(2639), }, [387] = { [ts_builtin_sym_end] = ACTIONS(2645), @@ -99387,286 +99674,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(2643), }, [388] = { - [sym_catch_clause] = STATE(231), - [aux_sym_constructor_try_statement_repeat1] = STATE(231), - [ts_builtin_sym_end] = ACTIONS(2592), - [sym_identifier] = ACTIONS(2590), - [aux_sym_preproc_include_token1] = ACTIONS(2590), - [aux_sym_preproc_def_token1] = ACTIONS(2590), - [aux_sym_preproc_if_token1] = ACTIONS(2590), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2590), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2590), - [sym_preproc_directive] = ACTIONS(2590), - [anon_sym_LPAREN2] = ACTIONS(2592), - [anon_sym_BANG] = ACTIONS(2592), - [anon_sym_TILDE] = ACTIONS(2592), - [anon_sym_DASH] = ACTIONS(2590), - [anon_sym_PLUS] = ACTIONS(2590), - [anon_sym_STAR] = ACTIONS(2592), - [anon_sym_AMP_AMP] = ACTIONS(2592), - [anon_sym_AMP] = ACTIONS(2590), - [anon_sym_SEMI] = ACTIONS(2592), - [anon_sym___extension__] = ACTIONS(2590), - [anon_sym_typedef] = ACTIONS(2590), - [anon_sym_virtual] = ACTIONS(2590), - [anon_sym_extern] = ACTIONS(2590), - [anon_sym___attribute__] = ACTIONS(2590), - [anon_sym___attribute] = ACTIONS(2590), - [anon_sym_using] = ACTIONS(2590), - [anon_sym_COLON_COLON] = ACTIONS(2592), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2592), - [anon_sym___declspec] = ACTIONS(2590), - [anon_sym___based] = ACTIONS(2590), - [anon_sym___cdecl] = ACTIONS(2590), - [anon_sym___clrcall] = ACTIONS(2590), - [anon_sym___stdcall] = ACTIONS(2590), - [anon_sym___fastcall] = ACTIONS(2590), - [anon_sym___thiscall] = ACTIONS(2590), - [anon_sym___vectorcall] = ACTIONS(2590), - [anon_sym_LBRACE] = ACTIONS(2592), - [anon_sym_signed] = ACTIONS(2590), - [anon_sym_unsigned] = ACTIONS(2590), - [anon_sym_long] = ACTIONS(2590), - [anon_sym_short] = ACTIONS(2590), - [anon_sym_LBRACK] = ACTIONS(2590), - [anon_sym_static] = ACTIONS(2590), - [anon_sym_register] = ACTIONS(2590), - [anon_sym_inline] = ACTIONS(2590), - [anon_sym___inline] = ACTIONS(2590), - [anon_sym___inline__] = ACTIONS(2590), - [anon_sym___forceinline] = ACTIONS(2590), - [anon_sym_thread_local] = ACTIONS(2590), - [anon_sym___thread] = ACTIONS(2590), - [anon_sym_const] = ACTIONS(2590), - [anon_sym_constexpr] = ACTIONS(2590), - [anon_sym_volatile] = ACTIONS(2590), - [anon_sym_restrict] = ACTIONS(2590), - [anon_sym___restrict__] = ACTIONS(2590), - [anon_sym__Atomic] = ACTIONS(2590), - [anon_sym__Noreturn] = ACTIONS(2590), - [anon_sym_noreturn] = ACTIONS(2590), - [anon_sym__Nonnull] = ACTIONS(2590), - [anon_sym_mutable] = ACTIONS(2590), - [anon_sym_constinit] = ACTIONS(2590), - [anon_sym_consteval] = ACTIONS(2590), - [anon_sym_alignas] = ACTIONS(2590), - [anon_sym__Alignas] = ACTIONS(2590), - [sym_primitive_type] = ACTIONS(2590), - [anon_sym_enum] = ACTIONS(2590), - [anon_sym_class] = ACTIONS(2590), - [anon_sym_struct] = ACTIONS(2590), - [anon_sym_union] = ACTIONS(2590), - [anon_sym_if] = ACTIONS(2590), - [anon_sym_switch] = ACTIONS(2590), - [anon_sym_case] = ACTIONS(2590), - [anon_sym_default] = ACTIONS(2590), - [anon_sym_while] = ACTIONS(2590), - [anon_sym_do] = ACTIONS(2590), - [anon_sym_for] = ACTIONS(2590), - [anon_sym_return] = ACTIONS(2590), - [anon_sym_break] = ACTIONS(2590), - [anon_sym_continue] = ACTIONS(2590), - [anon_sym_goto] = ACTIONS(2590), - [anon_sym_not] = ACTIONS(2590), - [anon_sym_compl] = ACTIONS(2590), - [anon_sym_DASH_DASH] = ACTIONS(2592), - [anon_sym_PLUS_PLUS] = ACTIONS(2592), - [anon_sym_sizeof] = ACTIONS(2590), - [anon_sym___alignof__] = ACTIONS(2590), - [anon_sym___alignof] = ACTIONS(2590), - [anon_sym__alignof] = ACTIONS(2590), - [anon_sym_alignof] = ACTIONS(2590), - [anon_sym__Alignof] = ACTIONS(2590), - [anon_sym_offsetof] = ACTIONS(2590), - [anon_sym__Generic] = ACTIONS(2590), - [anon_sym_asm] = ACTIONS(2590), - [anon_sym___asm__] = ACTIONS(2590), - [anon_sym___asm] = ACTIONS(2590), - [sym_number_literal] = ACTIONS(2592), - [anon_sym_L_SQUOTE] = ACTIONS(2592), - [anon_sym_u_SQUOTE] = ACTIONS(2592), - [anon_sym_U_SQUOTE] = ACTIONS(2592), - [anon_sym_u8_SQUOTE] = ACTIONS(2592), - [anon_sym_SQUOTE] = ACTIONS(2592), - [anon_sym_L_DQUOTE] = ACTIONS(2592), - [anon_sym_u_DQUOTE] = ACTIONS(2592), - [anon_sym_U_DQUOTE] = ACTIONS(2592), - [anon_sym_u8_DQUOTE] = ACTIONS(2592), - [anon_sym_DQUOTE] = ACTIONS(2592), - [sym_true] = ACTIONS(2590), - [sym_false] = ACTIONS(2590), - [anon_sym_NULL] = ACTIONS(2590), - [anon_sym_nullptr] = ACTIONS(2590), + [ts_builtin_sym_end] = ACTIONS(2649), + [sym_identifier] = ACTIONS(2647), + [aux_sym_preproc_include_token1] = ACTIONS(2647), + [aux_sym_preproc_def_token1] = ACTIONS(2647), + [aux_sym_preproc_if_token1] = ACTIONS(2647), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2647), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2647), + [sym_preproc_directive] = ACTIONS(2647), + [anon_sym_LPAREN2] = ACTIONS(2649), + [anon_sym_BANG] = ACTIONS(2649), + [anon_sym_TILDE] = ACTIONS(2649), + [anon_sym_DASH] = ACTIONS(2647), + [anon_sym_PLUS] = ACTIONS(2647), + [anon_sym_STAR] = ACTIONS(2649), + [anon_sym_AMP_AMP] = ACTIONS(2649), + [anon_sym_AMP] = ACTIONS(2647), + [anon_sym_SEMI] = ACTIONS(2649), + [anon_sym___extension__] = ACTIONS(2647), + [anon_sym_typedef] = ACTIONS(2647), + [anon_sym_virtual] = ACTIONS(2647), + [anon_sym_extern] = ACTIONS(2647), + [anon_sym___attribute__] = ACTIONS(2647), + [anon_sym___attribute] = ACTIONS(2647), + [anon_sym_using] = ACTIONS(2647), + [anon_sym_COLON_COLON] = ACTIONS(2649), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2649), + [anon_sym___declspec] = ACTIONS(2647), + [anon_sym___based] = ACTIONS(2647), + [anon_sym___cdecl] = ACTIONS(2647), + [anon_sym___clrcall] = ACTIONS(2647), + [anon_sym___stdcall] = ACTIONS(2647), + [anon_sym___fastcall] = ACTIONS(2647), + [anon_sym___thiscall] = ACTIONS(2647), + [anon_sym___vectorcall] = ACTIONS(2647), + [anon_sym_LBRACE] = ACTIONS(2649), + [anon_sym_signed] = ACTIONS(2647), + [anon_sym_unsigned] = ACTIONS(2647), + [anon_sym_long] = ACTIONS(2647), + [anon_sym_short] = ACTIONS(2647), + [anon_sym_LBRACK] = ACTIONS(2647), + [anon_sym_static] = ACTIONS(2647), + [anon_sym_register] = ACTIONS(2647), + [anon_sym_inline] = ACTIONS(2647), + [anon_sym___inline] = ACTIONS(2647), + [anon_sym___inline__] = ACTIONS(2647), + [anon_sym___forceinline] = ACTIONS(2647), + [anon_sym_thread_local] = ACTIONS(2647), + [anon_sym___thread] = ACTIONS(2647), + [anon_sym_const] = ACTIONS(2647), + [anon_sym_constexpr] = ACTIONS(2647), + [anon_sym_volatile] = ACTIONS(2647), + [anon_sym_restrict] = ACTIONS(2647), + [anon_sym___restrict__] = ACTIONS(2647), + [anon_sym__Atomic] = ACTIONS(2647), + [anon_sym__Noreturn] = ACTIONS(2647), + [anon_sym_noreturn] = ACTIONS(2647), + [anon_sym__Nonnull] = ACTIONS(2647), + [anon_sym_mutable] = ACTIONS(2647), + [anon_sym_constinit] = ACTIONS(2647), + [anon_sym_consteval] = ACTIONS(2647), + [anon_sym_alignas] = ACTIONS(2647), + [anon_sym__Alignas] = ACTIONS(2647), + [sym_primitive_type] = ACTIONS(2647), + [anon_sym_enum] = ACTIONS(2647), + [anon_sym_class] = ACTIONS(2647), + [anon_sym_struct] = ACTIONS(2647), + [anon_sym_union] = ACTIONS(2647), + [anon_sym_if] = ACTIONS(2647), + [anon_sym_else] = ACTIONS(2647), + [anon_sym_switch] = ACTIONS(2647), + [anon_sym_case] = ACTIONS(2647), + [anon_sym_default] = ACTIONS(2647), + [anon_sym_while] = ACTIONS(2647), + [anon_sym_do] = ACTIONS(2647), + [anon_sym_for] = ACTIONS(2647), + [anon_sym_return] = ACTIONS(2647), + [anon_sym_break] = ACTIONS(2647), + [anon_sym_continue] = ACTIONS(2647), + [anon_sym_goto] = ACTIONS(2647), + [anon_sym___try] = ACTIONS(2647), + [anon_sym___leave] = ACTIONS(2647), + [anon_sym_not] = ACTIONS(2647), + [anon_sym_compl] = ACTIONS(2647), + [anon_sym_DASH_DASH] = ACTIONS(2649), + [anon_sym_PLUS_PLUS] = ACTIONS(2649), + [anon_sym_sizeof] = ACTIONS(2647), + [anon_sym___alignof__] = ACTIONS(2647), + [anon_sym___alignof] = ACTIONS(2647), + [anon_sym__alignof] = ACTIONS(2647), + [anon_sym_alignof] = ACTIONS(2647), + [anon_sym__Alignof] = ACTIONS(2647), + [anon_sym_offsetof] = ACTIONS(2647), + [anon_sym__Generic] = ACTIONS(2647), + [anon_sym_asm] = ACTIONS(2647), + [anon_sym___asm__] = ACTIONS(2647), + [anon_sym___asm] = ACTIONS(2647), + [sym_number_literal] = ACTIONS(2649), + [anon_sym_L_SQUOTE] = ACTIONS(2649), + [anon_sym_u_SQUOTE] = ACTIONS(2649), + [anon_sym_U_SQUOTE] = ACTIONS(2649), + [anon_sym_u8_SQUOTE] = ACTIONS(2649), + [anon_sym_SQUOTE] = ACTIONS(2649), + [anon_sym_L_DQUOTE] = ACTIONS(2649), + [anon_sym_u_DQUOTE] = ACTIONS(2649), + [anon_sym_U_DQUOTE] = ACTIONS(2649), + [anon_sym_u8_DQUOTE] = ACTIONS(2649), + [anon_sym_DQUOTE] = ACTIONS(2649), + [sym_true] = ACTIONS(2647), + [sym_false] = ACTIONS(2647), + [anon_sym_NULL] = ACTIONS(2647), + [anon_sym_nullptr] = ACTIONS(2647), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2590), - [anon_sym_decltype] = ACTIONS(2590), - [anon_sym_explicit] = ACTIONS(2590), - [anon_sym_typename] = ACTIONS(2590), - [anon_sym_export] = ACTIONS(2590), - [anon_sym_module] = ACTIONS(2590), - [anon_sym_import] = ACTIONS(2590), - [anon_sym_template] = ACTIONS(2590), - [anon_sym_operator] = ACTIONS(2590), - [anon_sym_try] = ACTIONS(2590), - [anon_sym_delete] = ACTIONS(2590), - [anon_sym_throw] = ACTIONS(2590), - [anon_sym_namespace] = ACTIONS(2590), - [anon_sym_static_assert] = ACTIONS(2590), - [anon_sym_concept] = ACTIONS(2590), - [anon_sym_co_return] = ACTIONS(2590), - [anon_sym_co_yield] = ACTIONS(2590), - [anon_sym_catch] = ACTIONS(2599), - [anon_sym_R_DQUOTE] = ACTIONS(2592), - [anon_sym_LR_DQUOTE] = ACTIONS(2592), - [anon_sym_uR_DQUOTE] = ACTIONS(2592), - [anon_sym_UR_DQUOTE] = ACTIONS(2592), - [anon_sym_u8R_DQUOTE] = ACTIONS(2592), - [anon_sym_co_await] = ACTIONS(2590), - [anon_sym_new] = ACTIONS(2590), - [anon_sym_requires] = ACTIONS(2590), - [sym_this] = ACTIONS(2590), + [sym_auto] = ACTIONS(2647), + [anon_sym_decltype] = ACTIONS(2647), + [anon_sym_explicit] = ACTIONS(2647), + [anon_sym_typename] = ACTIONS(2647), + [anon_sym_export] = ACTIONS(2647), + [anon_sym_module] = ACTIONS(2647), + [anon_sym_import] = ACTIONS(2647), + [anon_sym_template] = ACTIONS(2647), + [anon_sym_operator] = ACTIONS(2647), + [anon_sym_try] = ACTIONS(2647), + [anon_sym_delete] = ACTIONS(2647), + [anon_sym_throw] = ACTIONS(2647), + [anon_sym_namespace] = ACTIONS(2647), + [anon_sym_static_assert] = ACTIONS(2647), + [anon_sym_concept] = ACTIONS(2647), + [anon_sym_co_return] = ACTIONS(2647), + [anon_sym_co_yield] = ACTIONS(2647), + [anon_sym_R_DQUOTE] = ACTIONS(2649), + [anon_sym_LR_DQUOTE] = ACTIONS(2649), + [anon_sym_uR_DQUOTE] = ACTIONS(2649), + [anon_sym_UR_DQUOTE] = ACTIONS(2649), + [anon_sym_u8R_DQUOTE] = ACTIONS(2649), + [anon_sym_co_await] = ACTIONS(2647), + [anon_sym_new] = ACTIONS(2647), + [anon_sym_requires] = ACTIONS(2647), + [sym_this] = ACTIONS(2647), }, [389] = { - [sym_preproc_def] = STATE(392), - [sym_preproc_function_def] = STATE(392), - [sym_preproc_call] = STATE(392), - [sym_preproc_if_in_field_declaration_list] = STATE(392), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(392), - [sym_preproc_else_in_field_declaration_list] = STATE(8469), - [sym_preproc_elif_in_field_declaration_list] = STATE(8469), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(8469), - [sym_type_definition] = STATE(392), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(5637), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(3005), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6218), - [sym_array_declarator] = STATE(5998), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym__field_declaration_list_item] = STATE(392), - [sym_field_declaration] = STATE(392), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym_explicit_function_specifier] = STATE(1744), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(392), - [sym_operator_cast] = STATE(6834), - [sym_inline_method_definition] = STATE(392), - [sym__constructor_specifiers] = STATE(1744), - [sym_operator_cast_definition] = STATE(392), - [sym_operator_cast_declaration] = STATE(392), - [sym_constructor_or_destructor_definition] = STATE(392), - [sym_constructor_or_destructor_declaration] = STATE(392), - [sym_friend_declaration] = STATE(392), - [sym_access_specifier] = STATE(8733), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(2406), - [sym_template_function] = STATE(5998), - [sym_using_declaration] = STATE(392), - [sym_alias_declaration] = STATE(392), - [sym_static_assert_declaration] = STATE(392), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5478), - [sym_qualified_identifier] = STATE(5998), - [sym_qualified_type_identifier] = STATE(3015), - [sym_qualified_operator_cast_identifier] = STATE(6834), - [sym_operator_name] = STATE(5998), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(392), - [aux_sym__declaration_specifiers_repeat1] = STATE(1993), - [aux_sym_attributed_declarator_repeat1] = STATE(7128), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1744), - [sym_identifier] = ACTIONS(2959), - [aux_sym_preproc_def_token1] = ACTIONS(2961), - [aux_sym_preproc_if_token1] = ACTIONS(2963), - [aux_sym_preproc_if_token2] = ACTIONS(3206), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2967), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2967), - [aux_sym_preproc_else_token1] = ACTIONS(2969), - [aux_sym_preproc_elif_token1] = ACTIONS(2971), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2973), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2973), - [sym_preproc_directive] = ACTIONS(2975), - [anon_sym_LPAREN2] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2979), - [anon_sym_STAR] = ACTIONS(2981), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2983), - [anon_sym_SEMI] = ACTIONS(3208), - [anon_sym___extension__] = ACTIONS(2987), - [anon_sym_typedef] = ACTIONS(2989), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(2991), - [anon_sym_COLON_COLON] = ACTIONS(2993), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2995), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(2997), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2999), - [anon_sym_enum] = ACTIONS(3001), - [anon_sym_class] = ACTIONS(3003), - [anon_sym_struct] = ACTIONS(3005), - [anon_sym_union] = ACTIONS(3007), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(3009), - [anon_sym_private] = ACTIONS(3011), - [anon_sym_template] = ACTIONS(3013), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(3015), - [anon_sym_public] = ACTIONS(3011), - [anon_sym_protected] = ACTIONS(3011), - [anon_sym_static_assert] = ACTIONS(3017), - }, - [390] = { [ts_builtin_sym_end] = ACTIONS(2653), [sym_identifier] = ACTIONS(2651), [aux_sym_preproc_include_token1] = ACTIONS(2651), @@ -99806,98 +99953,1078 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2651), [sym_this] = ACTIONS(2651), }, + [390] = { + [ts_builtin_sym_end] = ACTIONS(2661), + [sym_identifier] = ACTIONS(2659), + [aux_sym_preproc_include_token1] = ACTIONS(2659), + [aux_sym_preproc_def_token1] = ACTIONS(2659), + [aux_sym_preproc_if_token1] = ACTIONS(2659), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2659), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2659), + [sym_preproc_directive] = ACTIONS(2659), + [anon_sym_LPAREN2] = ACTIONS(2661), + [anon_sym_BANG] = ACTIONS(2661), + [anon_sym_TILDE] = ACTIONS(2661), + [anon_sym_DASH] = ACTIONS(2659), + [anon_sym_PLUS] = ACTIONS(2659), + [anon_sym_STAR] = ACTIONS(2661), + [anon_sym_AMP_AMP] = ACTIONS(2661), + [anon_sym_AMP] = ACTIONS(2659), + [anon_sym_SEMI] = ACTIONS(2661), + [anon_sym___extension__] = ACTIONS(2659), + [anon_sym_typedef] = ACTIONS(2659), + [anon_sym_virtual] = ACTIONS(2659), + [anon_sym_extern] = ACTIONS(2659), + [anon_sym___attribute__] = ACTIONS(2659), + [anon_sym___attribute] = ACTIONS(2659), + [anon_sym_using] = ACTIONS(2659), + [anon_sym_COLON_COLON] = ACTIONS(2661), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2661), + [anon_sym___declspec] = ACTIONS(2659), + [anon_sym___based] = ACTIONS(2659), + [anon_sym___cdecl] = ACTIONS(2659), + [anon_sym___clrcall] = ACTIONS(2659), + [anon_sym___stdcall] = ACTIONS(2659), + [anon_sym___fastcall] = ACTIONS(2659), + [anon_sym___thiscall] = ACTIONS(2659), + [anon_sym___vectorcall] = ACTIONS(2659), + [anon_sym_LBRACE] = ACTIONS(2661), + [anon_sym_signed] = ACTIONS(2659), + [anon_sym_unsigned] = ACTIONS(2659), + [anon_sym_long] = ACTIONS(2659), + [anon_sym_short] = ACTIONS(2659), + [anon_sym_LBRACK] = ACTIONS(2659), + [anon_sym_static] = ACTIONS(2659), + [anon_sym_register] = ACTIONS(2659), + [anon_sym_inline] = ACTIONS(2659), + [anon_sym___inline] = ACTIONS(2659), + [anon_sym___inline__] = ACTIONS(2659), + [anon_sym___forceinline] = ACTIONS(2659), + [anon_sym_thread_local] = ACTIONS(2659), + [anon_sym___thread] = ACTIONS(2659), + [anon_sym_const] = ACTIONS(2659), + [anon_sym_constexpr] = ACTIONS(2659), + [anon_sym_volatile] = ACTIONS(2659), + [anon_sym_restrict] = ACTIONS(2659), + [anon_sym___restrict__] = ACTIONS(2659), + [anon_sym__Atomic] = ACTIONS(2659), + [anon_sym__Noreturn] = ACTIONS(2659), + [anon_sym_noreturn] = ACTIONS(2659), + [anon_sym__Nonnull] = ACTIONS(2659), + [anon_sym_mutable] = ACTIONS(2659), + [anon_sym_constinit] = ACTIONS(2659), + [anon_sym_consteval] = ACTIONS(2659), + [anon_sym_alignas] = ACTIONS(2659), + [anon_sym__Alignas] = ACTIONS(2659), + [sym_primitive_type] = ACTIONS(2659), + [anon_sym_enum] = ACTIONS(2659), + [anon_sym_class] = ACTIONS(2659), + [anon_sym_struct] = ACTIONS(2659), + [anon_sym_union] = ACTIONS(2659), + [anon_sym_if] = ACTIONS(2659), + [anon_sym_else] = ACTIONS(2659), + [anon_sym_switch] = ACTIONS(2659), + [anon_sym_case] = ACTIONS(2659), + [anon_sym_default] = ACTIONS(2659), + [anon_sym_while] = ACTIONS(2659), + [anon_sym_do] = ACTIONS(2659), + [anon_sym_for] = ACTIONS(2659), + [anon_sym_return] = ACTIONS(2659), + [anon_sym_break] = ACTIONS(2659), + [anon_sym_continue] = ACTIONS(2659), + [anon_sym_goto] = ACTIONS(2659), + [anon_sym___try] = ACTIONS(2659), + [anon_sym___leave] = ACTIONS(2659), + [anon_sym_not] = ACTIONS(2659), + [anon_sym_compl] = ACTIONS(2659), + [anon_sym_DASH_DASH] = ACTIONS(2661), + [anon_sym_PLUS_PLUS] = ACTIONS(2661), + [anon_sym_sizeof] = ACTIONS(2659), + [anon_sym___alignof__] = ACTIONS(2659), + [anon_sym___alignof] = ACTIONS(2659), + [anon_sym__alignof] = ACTIONS(2659), + [anon_sym_alignof] = ACTIONS(2659), + [anon_sym__Alignof] = ACTIONS(2659), + [anon_sym_offsetof] = ACTIONS(2659), + [anon_sym__Generic] = ACTIONS(2659), + [anon_sym_asm] = ACTIONS(2659), + [anon_sym___asm__] = ACTIONS(2659), + [anon_sym___asm] = ACTIONS(2659), + [sym_number_literal] = ACTIONS(2661), + [anon_sym_L_SQUOTE] = ACTIONS(2661), + [anon_sym_u_SQUOTE] = ACTIONS(2661), + [anon_sym_U_SQUOTE] = ACTIONS(2661), + [anon_sym_u8_SQUOTE] = ACTIONS(2661), + [anon_sym_SQUOTE] = ACTIONS(2661), + [anon_sym_L_DQUOTE] = ACTIONS(2661), + [anon_sym_u_DQUOTE] = ACTIONS(2661), + [anon_sym_U_DQUOTE] = ACTIONS(2661), + [anon_sym_u8_DQUOTE] = ACTIONS(2661), + [anon_sym_DQUOTE] = ACTIONS(2661), + [sym_true] = ACTIONS(2659), + [sym_false] = ACTIONS(2659), + [anon_sym_NULL] = ACTIONS(2659), + [anon_sym_nullptr] = ACTIONS(2659), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2659), + [anon_sym_decltype] = ACTIONS(2659), + [anon_sym_explicit] = ACTIONS(2659), + [anon_sym_typename] = ACTIONS(2659), + [anon_sym_export] = ACTIONS(2659), + [anon_sym_module] = ACTIONS(2659), + [anon_sym_import] = ACTIONS(2659), + [anon_sym_template] = ACTIONS(2659), + [anon_sym_operator] = ACTIONS(2659), + [anon_sym_try] = ACTIONS(2659), + [anon_sym_delete] = ACTIONS(2659), + [anon_sym_throw] = ACTIONS(2659), + [anon_sym_namespace] = ACTIONS(2659), + [anon_sym_static_assert] = ACTIONS(2659), + [anon_sym_concept] = ACTIONS(2659), + [anon_sym_co_return] = ACTIONS(2659), + [anon_sym_co_yield] = ACTIONS(2659), + [anon_sym_R_DQUOTE] = ACTIONS(2661), + [anon_sym_LR_DQUOTE] = ACTIONS(2661), + [anon_sym_uR_DQUOTE] = ACTIONS(2661), + [anon_sym_UR_DQUOTE] = ACTIONS(2661), + [anon_sym_u8R_DQUOTE] = ACTIONS(2661), + [anon_sym_co_await] = ACTIONS(2659), + [anon_sym_new] = ACTIONS(2659), + [anon_sym_requires] = ACTIONS(2659), + [sym_this] = ACTIONS(2659), + }, [391] = { - [sym_preproc_def] = STATE(393), - [sym_preproc_function_def] = STATE(393), - [sym_preproc_call] = STATE(393), - [sym_preproc_if_in_field_declaration_list] = STATE(393), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(393), - [sym_preproc_else_in_field_declaration_list] = STATE(8713), - [sym_preproc_elif_in_field_declaration_list] = STATE(8713), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(8713), - [sym_type_definition] = STATE(393), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(5637), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(3005), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6218), - [sym_array_declarator] = STATE(5998), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym__field_declaration_list_item] = STATE(393), - [sym_field_declaration] = STATE(393), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym_explicit_function_specifier] = STATE(1744), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(393), - [sym_operator_cast] = STATE(6834), - [sym_inline_method_definition] = STATE(393), - [sym__constructor_specifiers] = STATE(1744), - [sym_operator_cast_definition] = STATE(393), - [sym_operator_cast_declaration] = STATE(393), - [sym_constructor_or_destructor_definition] = STATE(393), - [sym_constructor_or_destructor_declaration] = STATE(393), - [sym_friend_declaration] = STATE(393), - [sym_access_specifier] = STATE(8733), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(2406), - [sym_template_function] = STATE(5998), - [sym_using_declaration] = STATE(393), - [sym_alias_declaration] = STATE(393), - [sym_static_assert_declaration] = STATE(393), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5478), - [sym_qualified_identifier] = STATE(5998), - [sym_qualified_type_identifier] = STATE(3015), - [sym_qualified_operator_cast_identifier] = STATE(6834), - [sym_operator_name] = STATE(5998), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(393), - [aux_sym__declaration_specifiers_repeat1] = STATE(1993), - [aux_sym_attributed_declarator_repeat1] = STATE(7128), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1744), - [sym_identifier] = ACTIONS(2959), - [aux_sym_preproc_def_token1] = ACTIONS(2961), - [aux_sym_preproc_if_token1] = ACTIONS(2963), - [aux_sym_preproc_if_token2] = ACTIONS(3210), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2967), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2967), - [aux_sym_preproc_else_token1] = ACTIONS(2969), - [aux_sym_preproc_elif_token1] = ACTIONS(2971), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2973), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2973), - [sym_preproc_directive] = ACTIONS(2975), - [anon_sym_LPAREN2] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2979), - [anon_sym_STAR] = ACTIONS(2981), + [sym_type_qualifier] = STATE(3954), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(4767), + [sym_sized_type_specifier] = STATE(2747), + [sym_enum_specifier] = STATE(2747), + [sym_struct_specifier] = STATE(2747), + [sym_union_specifier] = STATE(2747), + [sym_expression] = STATE(4400), + [sym__string] = STATE(4825), + [sym_conditional_expression] = STATE(4856), + [sym_assignment_expression] = STATE(4856), + [sym_pointer_expression] = STATE(3701), + [sym_unary_expression] = STATE(4856), + [sym_binary_expression] = STATE(4856), + [sym_update_expression] = STATE(4856), + [sym_cast_expression] = STATE(4856), + [sym_type_descriptor] = STATE(7181), + [sym_sizeof_expression] = STATE(4856), + [sym_alignof_expression] = STATE(4856), + [sym_offsetof_expression] = STATE(4856), + [sym_generic_expression] = STATE(4856), + [sym_subscript_expression] = STATE(3701), + [sym_call_expression] = STATE(3701), + [sym_gnu_asm_expression] = STATE(4856), + [sym_extension_expression] = STATE(4856), + [sym_field_expression] = STATE(3701), + [sym_compound_literal_expression] = STATE(4856), + [sym_parenthesized_expression] = STATE(3701), + [sym_char_literal] = STATE(4825), + [sym_concatenated_string] = STATE(4825), + [sym_string_literal] = STATE(3812), + [sym_null] = STATE(4856), + [sym_placeholder_type_specifier] = STATE(2747), + [sym_decltype_auto] = STATE(2733), + [sym_decltype] = STATE(2621), + [sym_class_specifier] = STATE(2747), + [sym__class_name] = STATE(7816), + [sym_dependent_type] = STATE(2747), + [sym_template_type] = STATE(5365), + [sym_template_function] = STATE(4856), + [sym_raw_string_literal] = STATE(3812), + [sym_co_await_expression] = STATE(4856), + [sym_new_expression] = STATE(4856), + [sym_delete_expression] = STATE(4856), + [sym_requires_clause] = STATE(4856), + [sym_requires_expression] = STATE(4856), + [sym_lambda_expression] = STATE(4856), + [sym_lambda_capture_specifier] = STATE(5489), + [sym_fold_expression] = STATE(4856), + [sym_parameter_pack_expansion] = STATE(4856), + [sym_type_parameter_pack_expansion] = STATE(7510), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5742), + [sym_qualified_identifier] = STATE(3701), + [sym_qualified_type_identifier] = STATE(5382), + [sym_user_defined_literal] = STATE(3701), + [aux_sym__type_definition_type_repeat1] = STATE(3954), + [aux_sym_sized_type_specifier_repeat1] = STATE(4313), + [sym_identifier] = ACTIONS(3128), + [anon_sym_LPAREN2] = ACTIONS(3130), + [anon_sym_BANG] = ACTIONS(3132), + [anon_sym_TILDE] = ACTIONS(3132), + [anon_sym_DASH] = ACTIONS(3134), + [anon_sym_PLUS] = ACTIONS(3134), + [anon_sym_STAR] = ACTIONS(3136), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym___extension__] = ACTIONS(3138), + [anon_sym_COLON_COLON] = ACTIONS(3140), + [anon_sym_signed] = ACTIONS(3142), + [anon_sym_unsigned] = ACTIONS(3142), + [anon_sym_long] = ACTIONS(3142), + [anon_sym_short] = ACTIONS(3142), + [anon_sym_LBRACK] = ACTIONS(2020), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(69), + [anon_sym__Alignas] = ACTIONS(69), + [sym_primitive_type] = ACTIONS(3144), + [anon_sym_enum] = ACTIONS(3146), + [anon_sym_class] = ACTIONS(3148), + [anon_sym_struct] = ACTIONS(3150), + [anon_sym_union] = ACTIONS(3152), + [anon_sym_not] = ACTIONS(3134), + [anon_sym_compl] = ACTIONS(3134), + [anon_sym_DASH_DASH] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_sizeof] = ACTIONS(3156), + [anon_sym___alignof__] = ACTIONS(3158), + [anon_sym___alignof] = ACTIONS(3158), + [anon_sym__alignof] = ACTIONS(3158), + [anon_sym_alignof] = ACTIONS(3158), + [anon_sym__Alignof] = ACTIONS(3158), + [anon_sym_offsetof] = ACTIONS(3160), + [anon_sym__Generic] = ACTIONS(3162), + [anon_sym_asm] = ACTIONS(3164), + [anon_sym___asm__] = ACTIONS(3164), + [anon_sym___asm] = ACTIONS(3164), + [sym_number_literal] = ACTIONS(3166), + [anon_sym_L_SQUOTE] = ACTIONS(3168), + [anon_sym_u_SQUOTE] = ACTIONS(3168), + [anon_sym_U_SQUOTE] = ACTIONS(3168), + [anon_sym_u8_SQUOTE] = ACTIONS(3168), + [anon_sym_SQUOTE] = ACTIONS(3168), + [anon_sym_L_DQUOTE] = ACTIONS(3170), + [anon_sym_u_DQUOTE] = ACTIONS(3170), + [anon_sym_U_DQUOTE] = ACTIONS(3170), + [anon_sym_u8_DQUOTE] = ACTIONS(3170), + [anon_sym_DQUOTE] = ACTIONS(3170), + [sym_true] = ACTIONS(3172), + [sym_false] = ACTIONS(3172), + [anon_sym_NULL] = ACTIONS(3174), + [anon_sym_nullptr] = ACTIONS(3174), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3176), + [anon_sym_decltype] = ACTIONS(3178), + [anon_sym_typename] = ACTIONS(3180), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_GT2] = ACTIONS(3210), + [anon_sym_delete] = ACTIONS(3184), + [anon_sym_R_DQUOTE] = ACTIONS(3186), + [anon_sym_LR_DQUOTE] = ACTIONS(3186), + [anon_sym_uR_DQUOTE] = ACTIONS(3186), + [anon_sym_UR_DQUOTE] = ACTIONS(3186), + [anon_sym_u8R_DQUOTE] = ACTIONS(3186), + [anon_sym_co_await] = ACTIONS(3188), + [anon_sym_new] = ACTIONS(3190), + [anon_sym_requires] = ACTIONS(3192), + [sym_this] = ACTIONS(3172), + }, + [392] = { + [ts_builtin_sym_end] = ACTIONS(2629), + [sym_identifier] = ACTIONS(2627), + [aux_sym_preproc_include_token1] = ACTIONS(2627), + [aux_sym_preproc_def_token1] = ACTIONS(2627), + [aux_sym_preproc_if_token1] = ACTIONS(2627), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2627), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2627), + [sym_preproc_directive] = ACTIONS(2627), + [anon_sym_LPAREN2] = ACTIONS(2629), + [anon_sym_BANG] = ACTIONS(2629), + [anon_sym_TILDE] = ACTIONS(2629), + [anon_sym_DASH] = ACTIONS(2627), + [anon_sym_PLUS] = ACTIONS(2627), + [anon_sym_STAR] = ACTIONS(2629), + [anon_sym_AMP_AMP] = ACTIONS(2629), + [anon_sym_AMP] = ACTIONS(2627), + [anon_sym_SEMI] = ACTIONS(2629), + [anon_sym___extension__] = ACTIONS(2627), + [anon_sym_typedef] = ACTIONS(2627), + [anon_sym_virtual] = ACTIONS(2627), + [anon_sym_extern] = ACTIONS(2627), + [anon_sym___attribute__] = ACTIONS(2627), + [anon_sym___attribute] = ACTIONS(2627), + [anon_sym_using] = ACTIONS(2627), + [anon_sym_COLON_COLON] = ACTIONS(2629), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2629), + [anon_sym___declspec] = ACTIONS(2627), + [anon_sym___based] = ACTIONS(2627), + [anon_sym___cdecl] = ACTIONS(2627), + [anon_sym___clrcall] = ACTIONS(2627), + [anon_sym___stdcall] = ACTIONS(2627), + [anon_sym___fastcall] = ACTIONS(2627), + [anon_sym___thiscall] = ACTIONS(2627), + [anon_sym___vectorcall] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(2629), + [anon_sym_signed] = ACTIONS(2627), + [anon_sym_unsigned] = ACTIONS(2627), + [anon_sym_long] = ACTIONS(2627), + [anon_sym_short] = ACTIONS(2627), + [anon_sym_LBRACK] = ACTIONS(2627), + [anon_sym_static] = ACTIONS(2627), + [anon_sym_register] = ACTIONS(2627), + [anon_sym_inline] = ACTIONS(2627), + [anon_sym___inline] = ACTIONS(2627), + [anon_sym___inline__] = ACTIONS(2627), + [anon_sym___forceinline] = ACTIONS(2627), + [anon_sym_thread_local] = ACTIONS(2627), + [anon_sym___thread] = ACTIONS(2627), + [anon_sym_const] = ACTIONS(2627), + [anon_sym_constexpr] = ACTIONS(2627), + [anon_sym_volatile] = ACTIONS(2627), + [anon_sym_restrict] = ACTIONS(2627), + [anon_sym___restrict__] = ACTIONS(2627), + [anon_sym__Atomic] = ACTIONS(2627), + [anon_sym__Noreturn] = ACTIONS(2627), + [anon_sym_noreturn] = ACTIONS(2627), + [anon_sym__Nonnull] = ACTIONS(2627), + [anon_sym_mutable] = ACTIONS(2627), + [anon_sym_constinit] = ACTIONS(2627), + [anon_sym_consteval] = ACTIONS(2627), + [anon_sym_alignas] = ACTIONS(2627), + [anon_sym__Alignas] = ACTIONS(2627), + [sym_primitive_type] = ACTIONS(2627), + [anon_sym_enum] = ACTIONS(2627), + [anon_sym_class] = ACTIONS(2627), + [anon_sym_struct] = ACTIONS(2627), + [anon_sym_union] = ACTIONS(2627), + [anon_sym_if] = ACTIONS(2627), + [anon_sym_else] = ACTIONS(2627), + [anon_sym_switch] = ACTIONS(2627), + [anon_sym_case] = ACTIONS(2627), + [anon_sym_default] = ACTIONS(2627), + [anon_sym_while] = ACTIONS(2627), + [anon_sym_do] = ACTIONS(2627), + [anon_sym_for] = ACTIONS(2627), + [anon_sym_return] = ACTIONS(2627), + [anon_sym_break] = ACTIONS(2627), + [anon_sym_continue] = ACTIONS(2627), + [anon_sym_goto] = ACTIONS(2627), + [anon_sym___try] = ACTIONS(2627), + [anon_sym___leave] = ACTIONS(2627), + [anon_sym_not] = ACTIONS(2627), + [anon_sym_compl] = ACTIONS(2627), + [anon_sym_DASH_DASH] = ACTIONS(2629), + [anon_sym_PLUS_PLUS] = ACTIONS(2629), + [anon_sym_sizeof] = ACTIONS(2627), + [anon_sym___alignof__] = ACTIONS(2627), + [anon_sym___alignof] = ACTIONS(2627), + [anon_sym__alignof] = ACTIONS(2627), + [anon_sym_alignof] = ACTIONS(2627), + [anon_sym__Alignof] = ACTIONS(2627), + [anon_sym_offsetof] = ACTIONS(2627), + [anon_sym__Generic] = ACTIONS(2627), + [anon_sym_asm] = ACTIONS(2627), + [anon_sym___asm__] = ACTIONS(2627), + [anon_sym___asm] = ACTIONS(2627), + [sym_number_literal] = ACTIONS(2629), + [anon_sym_L_SQUOTE] = ACTIONS(2629), + [anon_sym_u_SQUOTE] = ACTIONS(2629), + [anon_sym_U_SQUOTE] = ACTIONS(2629), + [anon_sym_u8_SQUOTE] = ACTIONS(2629), + [anon_sym_SQUOTE] = ACTIONS(2629), + [anon_sym_L_DQUOTE] = ACTIONS(2629), + [anon_sym_u_DQUOTE] = ACTIONS(2629), + [anon_sym_U_DQUOTE] = ACTIONS(2629), + [anon_sym_u8_DQUOTE] = ACTIONS(2629), + [anon_sym_DQUOTE] = ACTIONS(2629), + [sym_true] = ACTIONS(2627), + [sym_false] = ACTIONS(2627), + [anon_sym_NULL] = ACTIONS(2627), + [anon_sym_nullptr] = ACTIONS(2627), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2627), + [anon_sym_decltype] = ACTIONS(2627), + [anon_sym_explicit] = ACTIONS(2627), + [anon_sym_typename] = ACTIONS(2627), + [anon_sym_export] = ACTIONS(2627), + [anon_sym_module] = ACTIONS(2627), + [anon_sym_import] = ACTIONS(2627), + [anon_sym_template] = ACTIONS(2627), + [anon_sym_operator] = ACTIONS(2627), + [anon_sym_try] = ACTIONS(2627), + [anon_sym_delete] = ACTIONS(2627), + [anon_sym_throw] = ACTIONS(2627), + [anon_sym_namespace] = ACTIONS(2627), + [anon_sym_static_assert] = ACTIONS(2627), + [anon_sym_concept] = ACTIONS(2627), + [anon_sym_co_return] = ACTIONS(2627), + [anon_sym_co_yield] = ACTIONS(2627), + [anon_sym_R_DQUOTE] = ACTIONS(2629), + [anon_sym_LR_DQUOTE] = ACTIONS(2629), + [anon_sym_uR_DQUOTE] = ACTIONS(2629), + [anon_sym_UR_DQUOTE] = ACTIONS(2629), + [anon_sym_u8R_DQUOTE] = ACTIONS(2629), + [anon_sym_co_await] = ACTIONS(2627), + [anon_sym_new] = ACTIONS(2627), + [anon_sym_requires] = ACTIONS(2627), + [sym_this] = ACTIONS(2627), + }, + [393] = { + [ts_builtin_sym_end] = ACTIONS(2629), + [sym_identifier] = ACTIONS(2627), + [aux_sym_preproc_include_token1] = ACTIONS(2627), + [aux_sym_preproc_def_token1] = ACTIONS(2627), + [aux_sym_preproc_if_token1] = ACTIONS(2627), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2627), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2627), + [sym_preproc_directive] = ACTIONS(2627), + [anon_sym_LPAREN2] = ACTIONS(2629), + [anon_sym_BANG] = ACTIONS(2629), + [anon_sym_TILDE] = ACTIONS(2629), + [anon_sym_DASH] = ACTIONS(2627), + [anon_sym_PLUS] = ACTIONS(2627), + [anon_sym_STAR] = ACTIONS(2629), + [anon_sym_AMP_AMP] = ACTIONS(2629), + [anon_sym_AMP] = ACTIONS(2627), + [anon_sym_SEMI] = ACTIONS(2629), + [anon_sym___extension__] = ACTIONS(2627), + [anon_sym_typedef] = ACTIONS(2627), + [anon_sym_virtual] = ACTIONS(2627), + [anon_sym_extern] = ACTIONS(2627), + [anon_sym___attribute__] = ACTIONS(2627), + [anon_sym___attribute] = ACTIONS(2627), + [anon_sym_using] = ACTIONS(2627), + [anon_sym_COLON_COLON] = ACTIONS(2629), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2629), + [anon_sym___declspec] = ACTIONS(2627), + [anon_sym___based] = ACTIONS(2627), + [anon_sym___cdecl] = ACTIONS(2627), + [anon_sym___clrcall] = ACTIONS(2627), + [anon_sym___stdcall] = ACTIONS(2627), + [anon_sym___fastcall] = ACTIONS(2627), + [anon_sym___thiscall] = ACTIONS(2627), + [anon_sym___vectorcall] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(2629), + [anon_sym_signed] = ACTIONS(2627), + [anon_sym_unsigned] = ACTIONS(2627), + [anon_sym_long] = ACTIONS(2627), + [anon_sym_short] = ACTIONS(2627), + [anon_sym_LBRACK] = ACTIONS(2627), + [anon_sym_static] = ACTIONS(2627), + [anon_sym_register] = ACTIONS(2627), + [anon_sym_inline] = ACTIONS(2627), + [anon_sym___inline] = ACTIONS(2627), + [anon_sym___inline__] = ACTIONS(2627), + [anon_sym___forceinline] = ACTIONS(2627), + [anon_sym_thread_local] = ACTIONS(2627), + [anon_sym___thread] = ACTIONS(2627), + [anon_sym_const] = ACTIONS(2627), + [anon_sym_constexpr] = ACTIONS(2627), + [anon_sym_volatile] = ACTIONS(2627), + [anon_sym_restrict] = ACTIONS(2627), + [anon_sym___restrict__] = ACTIONS(2627), + [anon_sym__Atomic] = ACTIONS(2627), + [anon_sym__Noreturn] = ACTIONS(2627), + [anon_sym_noreturn] = ACTIONS(2627), + [anon_sym__Nonnull] = ACTIONS(2627), + [anon_sym_mutable] = ACTIONS(2627), + [anon_sym_constinit] = ACTIONS(2627), + [anon_sym_consteval] = ACTIONS(2627), + [anon_sym_alignas] = ACTIONS(2627), + [anon_sym__Alignas] = ACTIONS(2627), + [sym_primitive_type] = ACTIONS(2627), + [anon_sym_enum] = ACTIONS(2627), + [anon_sym_class] = ACTIONS(2627), + [anon_sym_struct] = ACTIONS(2627), + [anon_sym_union] = ACTIONS(2627), + [anon_sym_if] = ACTIONS(2627), + [anon_sym_else] = ACTIONS(2627), + [anon_sym_switch] = ACTIONS(2627), + [anon_sym_case] = ACTIONS(2627), + [anon_sym_default] = ACTIONS(2627), + [anon_sym_while] = ACTIONS(2627), + [anon_sym_do] = ACTIONS(2627), + [anon_sym_for] = ACTIONS(2627), + [anon_sym_return] = ACTIONS(2627), + [anon_sym_break] = ACTIONS(2627), + [anon_sym_continue] = ACTIONS(2627), + [anon_sym_goto] = ACTIONS(2627), + [anon_sym___try] = ACTIONS(2627), + [anon_sym___leave] = ACTIONS(2627), + [anon_sym_not] = ACTIONS(2627), + [anon_sym_compl] = ACTIONS(2627), + [anon_sym_DASH_DASH] = ACTIONS(2629), + [anon_sym_PLUS_PLUS] = ACTIONS(2629), + [anon_sym_sizeof] = ACTIONS(2627), + [anon_sym___alignof__] = ACTIONS(2627), + [anon_sym___alignof] = ACTIONS(2627), + [anon_sym__alignof] = ACTIONS(2627), + [anon_sym_alignof] = ACTIONS(2627), + [anon_sym__Alignof] = ACTIONS(2627), + [anon_sym_offsetof] = ACTIONS(2627), + [anon_sym__Generic] = ACTIONS(2627), + [anon_sym_asm] = ACTIONS(2627), + [anon_sym___asm__] = ACTIONS(2627), + [anon_sym___asm] = ACTIONS(2627), + [sym_number_literal] = ACTIONS(2629), + [anon_sym_L_SQUOTE] = ACTIONS(2629), + [anon_sym_u_SQUOTE] = ACTIONS(2629), + [anon_sym_U_SQUOTE] = ACTIONS(2629), + [anon_sym_u8_SQUOTE] = ACTIONS(2629), + [anon_sym_SQUOTE] = ACTIONS(2629), + [anon_sym_L_DQUOTE] = ACTIONS(2629), + [anon_sym_u_DQUOTE] = ACTIONS(2629), + [anon_sym_U_DQUOTE] = ACTIONS(2629), + [anon_sym_u8_DQUOTE] = ACTIONS(2629), + [anon_sym_DQUOTE] = ACTIONS(2629), + [sym_true] = ACTIONS(2627), + [sym_false] = ACTIONS(2627), + [anon_sym_NULL] = ACTIONS(2627), + [anon_sym_nullptr] = ACTIONS(2627), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2627), + [anon_sym_decltype] = ACTIONS(2627), + [anon_sym_explicit] = ACTIONS(2627), + [anon_sym_typename] = ACTIONS(2627), + [anon_sym_export] = ACTIONS(2627), + [anon_sym_module] = ACTIONS(2627), + [anon_sym_import] = ACTIONS(2627), + [anon_sym_template] = ACTIONS(2627), + [anon_sym_operator] = ACTIONS(2627), + [anon_sym_try] = ACTIONS(2627), + [anon_sym_delete] = ACTIONS(2627), + [anon_sym_throw] = ACTIONS(2627), + [anon_sym_namespace] = ACTIONS(2627), + [anon_sym_static_assert] = ACTIONS(2627), + [anon_sym_concept] = ACTIONS(2627), + [anon_sym_co_return] = ACTIONS(2627), + [anon_sym_co_yield] = ACTIONS(2627), + [anon_sym_R_DQUOTE] = ACTIONS(2629), + [anon_sym_LR_DQUOTE] = ACTIONS(2629), + [anon_sym_uR_DQUOTE] = ACTIONS(2629), + [anon_sym_UR_DQUOTE] = ACTIONS(2629), + [anon_sym_u8R_DQUOTE] = ACTIONS(2629), + [anon_sym_co_await] = ACTIONS(2627), + [anon_sym_new] = ACTIONS(2627), + [anon_sym_requires] = ACTIONS(2627), + [sym_this] = ACTIONS(2627), + }, + [394] = { + [sym_catch_clause] = STATE(232), + [aux_sym_constructor_try_statement_repeat1] = STATE(232), + [ts_builtin_sym_end] = ACTIONS(2592), + [sym_identifier] = ACTIONS(2590), + [aux_sym_preproc_include_token1] = ACTIONS(2590), + [aux_sym_preproc_def_token1] = ACTIONS(2590), + [aux_sym_preproc_if_token1] = ACTIONS(2590), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2590), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2590), + [sym_preproc_directive] = ACTIONS(2590), + [anon_sym_LPAREN2] = ACTIONS(2592), + [anon_sym_BANG] = ACTIONS(2592), + [anon_sym_TILDE] = ACTIONS(2592), + [anon_sym_DASH] = ACTIONS(2590), + [anon_sym_PLUS] = ACTIONS(2590), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_AMP_AMP] = ACTIONS(2592), + [anon_sym_AMP] = ACTIONS(2590), + [anon_sym_SEMI] = ACTIONS(2592), + [anon_sym___extension__] = ACTIONS(2590), + [anon_sym_typedef] = ACTIONS(2590), + [anon_sym_virtual] = ACTIONS(2590), + [anon_sym_extern] = ACTIONS(2590), + [anon_sym___attribute__] = ACTIONS(2590), + [anon_sym___attribute] = ACTIONS(2590), + [anon_sym_using] = ACTIONS(2590), + [anon_sym_COLON_COLON] = ACTIONS(2592), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2592), + [anon_sym___declspec] = ACTIONS(2590), + [anon_sym___based] = ACTIONS(2590), + [anon_sym___cdecl] = ACTIONS(2590), + [anon_sym___clrcall] = ACTIONS(2590), + [anon_sym___stdcall] = ACTIONS(2590), + [anon_sym___fastcall] = ACTIONS(2590), + [anon_sym___thiscall] = ACTIONS(2590), + [anon_sym___vectorcall] = ACTIONS(2590), + [anon_sym_LBRACE] = ACTIONS(2592), + [anon_sym_signed] = ACTIONS(2590), + [anon_sym_unsigned] = ACTIONS(2590), + [anon_sym_long] = ACTIONS(2590), + [anon_sym_short] = ACTIONS(2590), + [anon_sym_LBRACK] = ACTIONS(2590), + [anon_sym_static] = ACTIONS(2590), + [anon_sym_register] = ACTIONS(2590), + [anon_sym_inline] = ACTIONS(2590), + [anon_sym___inline] = ACTIONS(2590), + [anon_sym___inline__] = ACTIONS(2590), + [anon_sym___forceinline] = ACTIONS(2590), + [anon_sym_thread_local] = ACTIONS(2590), + [anon_sym___thread] = ACTIONS(2590), + [anon_sym_const] = ACTIONS(2590), + [anon_sym_constexpr] = ACTIONS(2590), + [anon_sym_volatile] = ACTIONS(2590), + [anon_sym_restrict] = ACTIONS(2590), + [anon_sym___restrict__] = ACTIONS(2590), + [anon_sym__Atomic] = ACTIONS(2590), + [anon_sym__Noreturn] = ACTIONS(2590), + [anon_sym_noreturn] = ACTIONS(2590), + [anon_sym__Nonnull] = ACTIONS(2590), + [anon_sym_mutable] = ACTIONS(2590), + [anon_sym_constinit] = ACTIONS(2590), + [anon_sym_consteval] = ACTIONS(2590), + [anon_sym_alignas] = ACTIONS(2590), + [anon_sym__Alignas] = ACTIONS(2590), + [sym_primitive_type] = ACTIONS(2590), + [anon_sym_enum] = ACTIONS(2590), + [anon_sym_class] = ACTIONS(2590), + [anon_sym_struct] = ACTIONS(2590), + [anon_sym_union] = ACTIONS(2590), + [anon_sym_if] = ACTIONS(2590), + [anon_sym_switch] = ACTIONS(2590), + [anon_sym_case] = ACTIONS(2590), + [anon_sym_default] = ACTIONS(2590), + [anon_sym_while] = ACTIONS(2590), + [anon_sym_do] = ACTIONS(2590), + [anon_sym_for] = ACTIONS(2590), + [anon_sym_return] = ACTIONS(2590), + [anon_sym_break] = ACTIONS(2590), + [anon_sym_continue] = ACTIONS(2590), + [anon_sym_goto] = ACTIONS(2590), + [anon_sym_not] = ACTIONS(2590), + [anon_sym_compl] = ACTIONS(2590), + [anon_sym_DASH_DASH] = ACTIONS(2592), + [anon_sym_PLUS_PLUS] = ACTIONS(2592), + [anon_sym_sizeof] = ACTIONS(2590), + [anon_sym___alignof__] = ACTIONS(2590), + [anon_sym___alignof] = ACTIONS(2590), + [anon_sym__alignof] = ACTIONS(2590), + [anon_sym_alignof] = ACTIONS(2590), + [anon_sym__Alignof] = ACTIONS(2590), + [anon_sym_offsetof] = ACTIONS(2590), + [anon_sym__Generic] = ACTIONS(2590), + [anon_sym_asm] = ACTIONS(2590), + [anon_sym___asm__] = ACTIONS(2590), + [anon_sym___asm] = ACTIONS(2590), + [sym_number_literal] = ACTIONS(2592), + [anon_sym_L_SQUOTE] = ACTIONS(2592), + [anon_sym_u_SQUOTE] = ACTIONS(2592), + [anon_sym_U_SQUOTE] = ACTIONS(2592), + [anon_sym_u8_SQUOTE] = ACTIONS(2592), + [anon_sym_SQUOTE] = ACTIONS(2592), + [anon_sym_L_DQUOTE] = ACTIONS(2592), + [anon_sym_u_DQUOTE] = ACTIONS(2592), + [anon_sym_U_DQUOTE] = ACTIONS(2592), + [anon_sym_u8_DQUOTE] = ACTIONS(2592), + [anon_sym_DQUOTE] = ACTIONS(2592), + [sym_true] = ACTIONS(2590), + [sym_false] = ACTIONS(2590), + [anon_sym_NULL] = ACTIONS(2590), + [anon_sym_nullptr] = ACTIONS(2590), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2590), + [anon_sym_decltype] = ACTIONS(2590), + [anon_sym_explicit] = ACTIONS(2590), + [anon_sym_typename] = ACTIONS(2590), + [anon_sym_export] = ACTIONS(2590), + [anon_sym_module] = ACTIONS(2590), + [anon_sym_import] = ACTIONS(2590), + [anon_sym_template] = ACTIONS(2590), + [anon_sym_operator] = ACTIONS(2590), + [anon_sym_try] = ACTIONS(2590), + [anon_sym_delete] = ACTIONS(2590), + [anon_sym_throw] = ACTIONS(2590), + [anon_sym_namespace] = ACTIONS(2590), + [anon_sym_static_assert] = ACTIONS(2590), + [anon_sym_concept] = ACTIONS(2590), + [anon_sym_co_return] = ACTIONS(2590), + [anon_sym_co_yield] = ACTIONS(2590), + [anon_sym_catch] = ACTIONS(2594), + [anon_sym_R_DQUOTE] = ACTIONS(2592), + [anon_sym_LR_DQUOTE] = ACTIONS(2592), + [anon_sym_uR_DQUOTE] = ACTIONS(2592), + [anon_sym_UR_DQUOTE] = ACTIONS(2592), + [anon_sym_u8R_DQUOTE] = ACTIONS(2592), + [anon_sym_co_await] = ACTIONS(2590), + [anon_sym_new] = ACTIONS(2590), + [anon_sym_requires] = ACTIONS(2590), + [sym_this] = ACTIONS(2590), + }, + [395] = { + [sym_type_qualifier] = STATE(3954), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(4767), + [sym_sized_type_specifier] = STATE(2747), + [sym_enum_specifier] = STATE(2747), + [sym_struct_specifier] = STATE(2747), + [sym_union_specifier] = STATE(2747), + [sym_expression] = STATE(4389), + [sym__string] = STATE(4825), + [sym_conditional_expression] = STATE(4856), + [sym_assignment_expression] = STATE(4856), + [sym_pointer_expression] = STATE(3701), + [sym_unary_expression] = STATE(4856), + [sym_binary_expression] = STATE(4856), + [sym_update_expression] = STATE(4856), + [sym_cast_expression] = STATE(4856), + [sym_type_descriptor] = STATE(7132), + [sym_sizeof_expression] = STATE(4856), + [sym_alignof_expression] = STATE(4856), + [sym_offsetof_expression] = STATE(4856), + [sym_generic_expression] = STATE(4856), + [sym_subscript_expression] = STATE(3701), + [sym_call_expression] = STATE(3701), + [sym_gnu_asm_expression] = STATE(4856), + [sym_extension_expression] = STATE(4856), + [sym_field_expression] = STATE(3701), + [sym_compound_literal_expression] = STATE(4856), + [sym_parenthesized_expression] = STATE(3701), + [sym_char_literal] = STATE(4825), + [sym_concatenated_string] = STATE(4825), + [sym_string_literal] = STATE(3812), + [sym_null] = STATE(4856), + [sym_placeholder_type_specifier] = STATE(2747), + [sym_decltype_auto] = STATE(2733), + [sym_decltype] = STATE(2621), + [sym_class_specifier] = STATE(2747), + [sym__class_name] = STATE(7816), + [sym_dependent_type] = STATE(2747), + [sym_template_type] = STATE(5365), + [sym_template_function] = STATE(4856), + [sym_raw_string_literal] = STATE(3812), + [sym_co_await_expression] = STATE(4856), + [sym_new_expression] = STATE(4856), + [sym_delete_expression] = STATE(4856), + [sym_requires_clause] = STATE(4856), + [sym_requires_expression] = STATE(4856), + [sym_lambda_expression] = STATE(4856), + [sym_lambda_capture_specifier] = STATE(5489), + [sym_fold_expression] = STATE(4856), + [sym_parameter_pack_expansion] = STATE(4856), + [sym_type_parameter_pack_expansion] = STATE(7356), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5742), + [sym_qualified_identifier] = STATE(3701), + [sym_qualified_type_identifier] = STATE(5382), + [sym_user_defined_literal] = STATE(3701), + [aux_sym__type_definition_type_repeat1] = STATE(3954), + [aux_sym_sized_type_specifier_repeat1] = STATE(4313), + [sym_identifier] = ACTIONS(3128), + [anon_sym_LPAREN2] = ACTIONS(3130), + [anon_sym_BANG] = ACTIONS(3132), + [anon_sym_TILDE] = ACTIONS(3132), + [anon_sym_DASH] = ACTIONS(3134), + [anon_sym_PLUS] = ACTIONS(3134), + [anon_sym_STAR] = ACTIONS(3136), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym___extension__] = ACTIONS(3138), + [anon_sym_COLON_COLON] = ACTIONS(3140), + [anon_sym_signed] = ACTIONS(3142), + [anon_sym_unsigned] = ACTIONS(3142), + [anon_sym_long] = ACTIONS(3142), + [anon_sym_short] = ACTIONS(3142), + [anon_sym_LBRACK] = ACTIONS(2020), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(69), + [anon_sym__Alignas] = ACTIONS(69), + [sym_primitive_type] = ACTIONS(3144), + [anon_sym_enum] = ACTIONS(3146), + [anon_sym_class] = ACTIONS(3148), + [anon_sym_struct] = ACTIONS(3150), + [anon_sym_union] = ACTIONS(3152), + [anon_sym_not] = ACTIONS(3134), + [anon_sym_compl] = ACTIONS(3134), + [anon_sym_DASH_DASH] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_sizeof] = ACTIONS(3156), + [anon_sym___alignof__] = ACTIONS(3158), + [anon_sym___alignof] = ACTIONS(3158), + [anon_sym__alignof] = ACTIONS(3158), + [anon_sym_alignof] = ACTIONS(3158), + [anon_sym__Alignof] = ACTIONS(3158), + [anon_sym_offsetof] = ACTIONS(3160), + [anon_sym__Generic] = ACTIONS(3162), + [anon_sym_asm] = ACTIONS(3164), + [anon_sym___asm__] = ACTIONS(3164), + [anon_sym___asm] = ACTIONS(3164), + [sym_number_literal] = ACTIONS(3166), + [anon_sym_L_SQUOTE] = ACTIONS(3168), + [anon_sym_u_SQUOTE] = ACTIONS(3168), + [anon_sym_U_SQUOTE] = ACTIONS(3168), + [anon_sym_u8_SQUOTE] = ACTIONS(3168), + [anon_sym_SQUOTE] = ACTIONS(3168), + [anon_sym_L_DQUOTE] = ACTIONS(3170), + [anon_sym_u_DQUOTE] = ACTIONS(3170), + [anon_sym_U_DQUOTE] = ACTIONS(3170), + [anon_sym_u8_DQUOTE] = ACTIONS(3170), + [anon_sym_DQUOTE] = ACTIONS(3170), + [sym_true] = ACTIONS(3172), + [sym_false] = ACTIONS(3172), + [anon_sym_NULL] = ACTIONS(3174), + [anon_sym_nullptr] = ACTIONS(3174), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3176), + [anon_sym_decltype] = ACTIONS(3178), + [anon_sym_typename] = ACTIONS(3180), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_GT2] = ACTIONS(3212), + [anon_sym_delete] = ACTIONS(3184), + [anon_sym_R_DQUOTE] = ACTIONS(3186), + [anon_sym_LR_DQUOTE] = ACTIONS(3186), + [anon_sym_uR_DQUOTE] = ACTIONS(3186), + [anon_sym_UR_DQUOTE] = ACTIONS(3186), + [anon_sym_u8R_DQUOTE] = ACTIONS(3186), + [anon_sym_co_await] = ACTIONS(3188), + [anon_sym_new] = ACTIONS(3190), + [anon_sym_requires] = ACTIONS(3192), + [sym_this] = ACTIONS(3172), + }, + [396] = { + [ts_builtin_sym_end] = ACTIONS(2673), + [sym_identifier] = ACTIONS(2671), + [aux_sym_preproc_include_token1] = ACTIONS(2671), + [aux_sym_preproc_def_token1] = ACTIONS(2671), + [aux_sym_preproc_if_token1] = ACTIONS(2671), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2671), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2671), + [sym_preproc_directive] = ACTIONS(2671), + [anon_sym_LPAREN2] = ACTIONS(2673), + [anon_sym_BANG] = ACTIONS(2673), + [anon_sym_TILDE] = ACTIONS(2673), + [anon_sym_DASH] = ACTIONS(2671), + [anon_sym_PLUS] = ACTIONS(2671), + [anon_sym_STAR] = ACTIONS(2673), + [anon_sym_AMP_AMP] = ACTIONS(2673), + [anon_sym_AMP] = ACTIONS(2671), + [anon_sym_SEMI] = ACTIONS(2673), + [anon_sym___extension__] = ACTIONS(2671), + [anon_sym_typedef] = ACTIONS(2671), + [anon_sym_virtual] = ACTIONS(2671), + [anon_sym_extern] = ACTIONS(2671), + [anon_sym___attribute__] = ACTIONS(2671), + [anon_sym___attribute] = ACTIONS(2671), + [anon_sym_using] = ACTIONS(2671), + [anon_sym_COLON_COLON] = ACTIONS(2673), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2673), + [anon_sym___declspec] = ACTIONS(2671), + [anon_sym___based] = ACTIONS(2671), + [anon_sym___cdecl] = ACTIONS(2671), + [anon_sym___clrcall] = ACTIONS(2671), + [anon_sym___stdcall] = ACTIONS(2671), + [anon_sym___fastcall] = ACTIONS(2671), + [anon_sym___thiscall] = ACTIONS(2671), + [anon_sym___vectorcall] = ACTIONS(2671), + [anon_sym_LBRACE] = ACTIONS(2673), + [anon_sym_signed] = ACTIONS(2671), + [anon_sym_unsigned] = ACTIONS(2671), + [anon_sym_long] = ACTIONS(2671), + [anon_sym_short] = ACTIONS(2671), + [anon_sym_LBRACK] = ACTIONS(2671), + [anon_sym_static] = ACTIONS(2671), + [anon_sym_register] = ACTIONS(2671), + [anon_sym_inline] = ACTIONS(2671), + [anon_sym___inline] = ACTIONS(2671), + [anon_sym___inline__] = ACTIONS(2671), + [anon_sym___forceinline] = ACTIONS(2671), + [anon_sym_thread_local] = ACTIONS(2671), + [anon_sym___thread] = ACTIONS(2671), + [anon_sym_const] = ACTIONS(2671), + [anon_sym_constexpr] = ACTIONS(2671), + [anon_sym_volatile] = ACTIONS(2671), + [anon_sym_restrict] = ACTIONS(2671), + [anon_sym___restrict__] = ACTIONS(2671), + [anon_sym__Atomic] = ACTIONS(2671), + [anon_sym__Noreturn] = ACTIONS(2671), + [anon_sym_noreturn] = ACTIONS(2671), + [anon_sym__Nonnull] = ACTIONS(2671), + [anon_sym_mutable] = ACTIONS(2671), + [anon_sym_constinit] = ACTIONS(2671), + [anon_sym_consteval] = ACTIONS(2671), + [anon_sym_alignas] = ACTIONS(2671), + [anon_sym__Alignas] = ACTIONS(2671), + [sym_primitive_type] = ACTIONS(2671), + [anon_sym_enum] = ACTIONS(2671), + [anon_sym_class] = ACTIONS(2671), + [anon_sym_struct] = ACTIONS(2671), + [anon_sym_union] = ACTIONS(2671), + [anon_sym_if] = ACTIONS(2671), + [anon_sym_else] = ACTIONS(2671), + [anon_sym_switch] = ACTIONS(2671), + [anon_sym_case] = ACTIONS(2671), + [anon_sym_default] = ACTIONS(2671), + [anon_sym_while] = ACTIONS(2671), + [anon_sym_do] = ACTIONS(2671), + [anon_sym_for] = ACTIONS(2671), + [anon_sym_return] = ACTIONS(2671), + [anon_sym_break] = ACTIONS(2671), + [anon_sym_continue] = ACTIONS(2671), + [anon_sym_goto] = ACTIONS(2671), + [anon_sym___try] = ACTIONS(2671), + [anon_sym___leave] = ACTIONS(2671), + [anon_sym_not] = ACTIONS(2671), + [anon_sym_compl] = ACTIONS(2671), + [anon_sym_DASH_DASH] = ACTIONS(2673), + [anon_sym_PLUS_PLUS] = ACTIONS(2673), + [anon_sym_sizeof] = ACTIONS(2671), + [anon_sym___alignof__] = ACTIONS(2671), + [anon_sym___alignof] = ACTIONS(2671), + [anon_sym__alignof] = ACTIONS(2671), + [anon_sym_alignof] = ACTIONS(2671), + [anon_sym__Alignof] = ACTIONS(2671), + [anon_sym_offsetof] = ACTIONS(2671), + [anon_sym__Generic] = ACTIONS(2671), + [anon_sym_asm] = ACTIONS(2671), + [anon_sym___asm__] = ACTIONS(2671), + [anon_sym___asm] = ACTIONS(2671), + [sym_number_literal] = ACTIONS(2673), + [anon_sym_L_SQUOTE] = ACTIONS(2673), + [anon_sym_u_SQUOTE] = ACTIONS(2673), + [anon_sym_U_SQUOTE] = ACTIONS(2673), + [anon_sym_u8_SQUOTE] = ACTIONS(2673), + [anon_sym_SQUOTE] = ACTIONS(2673), + [anon_sym_L_DQUOTE] = ACTIONS(2673), + [anon_sym_u_DQUOTE] = ACTIONS(2673), + [anon_sym_U_DQUOTE] = ACTIONS(2673), + [anon_sym_u8_DQUOTE] = ACTIONS(2673), + [anon_sym_DQUOTE] = ACTIONS(2673), + [sym_true] = ACTIONS(2671), + [sym_false] = ACTIONS(2671), + [anon_sym_NULL] = ACTIONS(2671), + [anon_sym_nullptr] = ACTIONS(2671), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2671), + [anon_sym_decltype] = ACTIONS(2671), + [anon_sym_explicit] = ACTIONS(2671), + [anon_sym_typename] = ACTIONS(2671), + [anon_sym_export] = ACTIONS(2671), + [anon_sym_module] = ACTIONS(2671), + [anon_sym_import] = ACTIONS(2671), + [anon_sym_template] = ACTIONS(2671), + [anon_sym_operator] = ACTIONS(2671), + [anon_sym_try] = ACTIONS(2671), + [anon_sym_delete] = ACTIONS(2671), + [anon_sym_throw] = ACTIONS(2671), + [anon_sym_namespace] = ACTIONS(2671), + [anon_sym_static_assert] = ACTIONS(2671), + [anon_sym_concept] = ACTIONS(2671), + [anon_sym_co_return] = ACTIONS(2671), + [anon_sym_co_yield] = ACTIONS(2671), + [anon_sym_R_DQUOTE] = ACTIONS(2673), + [anon_sym_LR_DQUOTE] = ACTIONS(2673), + [anon_sym_uR_DQUOTE] = ACTIONS(2673), + [anon_sym_UR_DQUOTE] = ACTIONS(2673), + [anon_sym_u8R_DQUOTE] = ACTIONS(2673), + [anon_sym_co_await] = ACTIONS(2671), + [anon_sym_new] = ACTIONS(2671), + [anon_sym_requires] = ACTIONS(2671), + [sym_this] = ACTIONS(2671), + }, + [397] = { + [sym_preproc_def] = STATE(400), + [sym_preproc_function_def] = STATE(400), + [sym_preproc_call] = STATE(400), + [sym_preproc_if_in_field_declaration_list] = STATE(400), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(400), + [sym_preproc_else_in_field_declaration_list] = STATE(8817), + [sym_preproc_elif_in_field_declaration_list] = STATE(8817), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(8817), + [sym_type_definition] = STATE(400), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(5688), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(3133), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6303), + [sym_array_declarator] = STATE(6145), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym__field_declaration_list_item] = STATE(400), + [sym_field_declaration] = STATE(400), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym_explicit_function_specifier] = STATE(1845), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(400), + [sym_operator_cast] = STATE(6890), + [sym_inline_method_definition] = STATE(400), + [sym__constructor_specifiers] = STATE(1845), + [sym_operator_cast_definition] = STATE(400), + [sym_operator_cast_declaration] = STATE(400), + [sym_constructor_or_destructor_definition] = STATE(400), + [sym_constructor_or_destructor_declaration] = STATE(400), + [sym_friend_declaration] = STATE(400), + [sym_access_specifier] = STATE(8331), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(2439), + [sym_template_function] = STATE(6145), + [sym_using_declaration] = STATE(400), + [sym_alias_declaration] = STATE(400), + [sym_static_assert_declaration] = STATE(400), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5557), + [sym_qualified_identifier] = STATE(6145), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6890), + [sym_operator_name] = STATE(6145), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(400), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_attributed_declarator_repeat1] = STATE(7195), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1845), + [sym_identifier] = ACTIONS(2979), + [aux_sym_preproc_def_token1] = ACTIONS(2981), + [aux_sym_preproc_if_token1] = ACTIONS(2983), + [aux_sym_preproc_if_token2] = ACTIONS(3214), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2987), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2987), + [aux_sym_preproc_else_token1] = ACTIONS(2989), + [aux_sym_preproc_elif_token1] = ACTIONS(2991), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2993), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2993), + [sym_preproc_directive] = ACTIONS(2995), + [anon_sym_LPAREN2] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(3001), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2983), - [anon_sym_SEMI] = ACTIONS(3212), - [anon_sym___extension__] = ACTIONS(2987), - [anon_sym_typedef] = ACTIONS(2989), + [anon_sym_AMP] = ACTIONS(3003), + [anon_sym_SEMI] = ACTIONS(3216), + [anon_sym___extension__] = ACTIONS(3007), + [anon_sym_typedef] = ACTIONS(3009), [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(2991), - [anon_sym_COLON_COLON] = ACTIONS(2993), + [anon_sym_using] = ACTIONS(3011), + [anon_sym_COLON_COLON] = ACTIONS(3013), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), @@ -99905,7 +101032,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2995), + [anon_sym_LBRACK] = ACTIONS(3015), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -99915,7 +101042,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread_local] = ACTIONS(63), [anon_sym___thread] = ACTIONS(63), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(2997), + [anon_sym_constexpr] = ACTIONS(3017), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -99928,116 +101055,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2999), - [anon_sym_enum] = ACTIONS(3001), - [anon_sym_class] = ACTIONS(3003), - [anon_sym_struct] = ACTIONS(3005), - [anon_sym_union] = ACTIONS(3007), + [sym_primitive_type] = ACTIONS(3019), + [anon_sym_enum] = ACTIONS(3021), + [anon_sym_class] = ACTIONS(3023), + [anon_sym_struct] = ACTIONS(3025), + [anon_sym_union] = ACTIONS(3027), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(3009), - [anon_sym_private] = ACTIONS(3011), - [anon_sym_template] = ACTIONS(3013), + [anon_sym_typename] = ACTIONS(3029), + [anon_sym_private] = ACTIONS(3031), + [anon_sym_template] = ACTIONS(3033), [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(3015), - [anon_sym_public] = ACTIONS(3011), - [anon_sym_protected] = ACTIONS(3011), - [anon_sym_static_assert] = ACTIONS(3017), + [anon_sym_friend] = ACTIONS(3035), + [anon_sym_public] = ACTIONS(3031), + [anon_sym_protected] = ACTIONS(3031), + [anon_sym_static_assert] = ACTIONS(3037), }, - [392] = { - [sym_preproc_def] = STATE(587), - [sym_preproc_function_def] = STATE(587), - [sym_preproc_call] = STATE(587), - [sym_preproc_if_in_field_declaration_list] = STATE(587), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(587), - [sym_preproc_else_in_field_declaration_list] = STATE(8720), - [sym_preproc_elif_in_field_declaration_list] = STATE(8720), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(8720), - [sym_type_definition] = STATE(587), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(5637), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(3005), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6218), - [sym_array_declarator] = STATE(5998), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym__field_declaration_list_item] = STATE(587), - [sym_field_declaration] = STATE(587), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym_explicit_function_specifier] = STATE(1744), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(587), - [sym_operator_cast] = STATE(6834), - [sym_inline_method_definition] = STATE(587), - [sym__constructor_specifiers] = STATE(1744), - [sym_operator_cast_definition] = STATE(587), - [sym_operator_cast_declaration] = STATE(587), - [sym_constructor_or_destructor_definition] = STATE(587), - [sym_constructor_or_destructor_declaration] = STATE(587), - [sym_friend_declaration] = STATE(587), - [sym_access_specifier] = STATE(8733), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(2406), - [sym_template_function] = STATE(5998), - [sym_using_declaration] = STATE(587), - [sym_alias_declaration] = STATE(587), - [sym_static_assert_declaration] = STATE(587), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5478), - [sym_qualified_identifier] = STATE(5998), - [sym_qualified_type_identifier] = STATE(3015), - [sym_qualified_operator_cast_identifier] = STATE(6834), - [sym_operator_name] = STATE(5998), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(587), - [aux_sym__declaration_specifiers_repeat1] = STATE(1993), - [aux_sym_attributed_declarator_repeat1] = STATE(7128), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1744), - [sym_identifier] = ACTIONS(2959), - [aux_sym_preproc_def_token1] = ACTIONS(2961), - [aux_sym_preproc_if_token1] = ACTIONS(2963), - [aux_sym_preproc_if_token2] = ACTIONS(3214), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2967), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2967), - [aux_sym_preproc_else_token1] = ACTIONS(2969), - [aux_sym_preproc_elif_token1] = ACTIONS(2971), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2973), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2973), - [sym_preproc_directive] = ACTIONS(2975), - [anon_sym_LPAREN2] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2979), - [anon_sym_STAR] = ACTIONS(2981), + [398] = { + [sym_preproc_def] = STATE(600), + [sym_preproc_function_def] = STATE(600), + [sym_preproc_call] = STATE(600), + [sym_preproc_if_in_field_declaration_list] = STATE(600), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(600), + [sym_preproc_else_in_field_declaration_list] = STATE(8818), + [sym_preproc_elif_in_field_declaration_list] = STATE(8818), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(8818), + [sym_type_definition] = STATE(600), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(5688), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(3133), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6303), + [sym_array_declarator] = STATE(6145), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym__field_declaration_list_item] = STATE(600), + [sym_field_declaration] = STATE(600), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym_explicit_function_specifier] = STATE(1845), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(600), + [sym_operator_cast] = STATE(6890), + [sym_inline_method_definition] = STATE(600), + [sym__constructor_specifiers] = STATE(1845), + [sym_operator_cast_definition] = STATE(600), + [sym_operator_cast_declaration] = STATE(600), + [sym_constructor_or_destructor_definition] = STATE(600), + [sym_constructor_or_destructor_declaration] = STATE(600), + [sym_friend_declaration] = STATE(600), + [sym_access_specifier] = STATE(8331), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(2439), + [sym_template_function] = STATE(6145), + [sym_using_declaration] = STATE(600), + [sym_alias_declaration] = STATE(600), + [sym_static_assert_declaration] = STATE(600), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5557), + [sym_qualified_identifier] = STATE(6145), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6890), + [sym_operator_name] = STATE(6145), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(600), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_attributed_declarator_repeat1] = STATE(7195), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1845), + [sym_identifier] = ACTIONS(2979), + [aux_sym_preproc_def_token1] = ACTIONS(2981), + [aux_sym_preproc_if_token1] = ACTIONS(2983), + [aux_sym_preproc_if_token2] = ACTIONS(3218), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2987), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2987), + [aux_sym_preproc_else_token1] = ACTIONS(2989), + [aux_sym_preproc_elif_token1] = ACTIONS(2991), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2993), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2993), + [sym_preproc_directive] = ACTIONS(2995), + [anon_sym_LPAREN2] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(3001), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2983), - [anon_sym_SEMI] = ACTIONS(3192), - [anon_sym___extension__] = ACTIONS(2987), - [anon_sym_typedef] = ACTIONS(2989), + [anon_sym_AMP] = ACTIONS(3003), + [anon_sym_SEMI] = ACTIONS(3200), + [anon_sym___extension__] = ACTIONS(3007), + [anon_sym_typedef] = ACTIONS(3009), [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(2991), - [anon_sym_COLON_COLON] = ACTIONS(2993), + [anon_sym_using] = ACTIONS(3011), + [anon_sym_COLON_COLON] = ACTIONS(3013), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), @@ -100045,7 +101172,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2995), + [anon_sym_LBRACK] = ACTIONS(3015), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -100055,7 +101182,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread_local] = ACTIONS(63), [anon_sym___thread] = ACTIONS(63), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(2997), + [anon_sym_constexpr] = ACTIONS(3017), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -100068,116 +101195,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2999), - [anon_sym_enum] = ACTIONS(3001), - [anon_sym_class] = ACTIONS(3003), - [anon_sym_struct] = ACTIONS(3005), - [anon_sym_union] = ACTIONS(3007), + [sym_primitive_type] = ACTIONS(3019), + [anon_sym_enum] = ACTIONS(3021), + [anon_sym_class] = ACTIONS(3023), + [anon_sym_struct] = ACTIONS(3025), + [anon_sym_union] = ACTIONS(3027), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(3009), - [anon_sym_private] = ACTIONS(3011), - [anon_sym_template] = ACTIONS(3013), + [anon_sym_typename] = ACTIONS(3029), + [anon_sym_private] = ACTIONS(3031), + [anon_sym_template] = ACTIONS(3033), [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(3015), - [anon_sym_public] = ACTIONS(3011), - [anon_sym_protected] = ACTIONS(3011), - [anon_sym_static_assert] = ACTIONS(3017), + [anon_sym_friend] = ACTIONS(3035), + [anon_sym_public] = ACTIONS(3031), + [anon_sym_protected] = ACTIONS(3031), + [anon_sym_static_assert] = ACTIONS(3037), }, - [393] = { - [sym_preproc_def] = STATE(587), - [sym_preproc_function_def] = STATE(587), - [sym_preproc_call] = STATE(587), - [sym_preproc_if_in_field_declaration_list] = STATE(587), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(587), - [sym_preproc_else_in_field_declaration_list] = STATE(7935), - [sym_preproc_elif_in_field_declaration_list] = STATE(7935), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(7935), - [sym_type_definition] = STATE(587), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(5637), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(3005), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6218), - [sym_array_declarator] = STATE(5998), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym__field_declaration_list_item] = STATE(587), - [sym_field_declaration] = STATE(587), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym_explicit_function_specifier] = STATE(1744), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(587), - [sym_operator_cast] = STATE(6834), - [sym_inline_method_definition] = STATE(587), - [sym__constructor_specifiers] = STATE(1744), - [sym_operator_cast_definition] = STATE(587), - [sym_operator_cast_declaration] = STATE(587), - [sym_constructor_or_destructor_definition] = STATE(587), - [sym_constructor_or_destructor_declaration] = STATE(587), - [sym_friend_declaration] = STATE(587), - [sym_access_specifier] = STATE(8733), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(2406), - [sym_template_function] = STATE(5998), - [sym_using_declaration] = STATE(587), - [sym_alias_declaration] = STATE(587), - [sym_static_assert_declaration] = STATE(587), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5478), - [sym_qualified_identifier] = STATE(5998), - [sym_qualified_type_identifier] = STATE(3015), - [sym_qualified_operator_cast_identifier] = STATE(6834), - [sym_operator_name] = STATE(5998), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(587), - [aux_sym__declaration_specifiers_repeat1] = STATE(1993), - [aux_sym_attributed_declarator_repeat1] = STATE(7128), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1744), - [sym_identifier] = ACTIONS(2959), - [aux_sym_preproc_def_token1] = ACTIONS(2961), - [aux_sym_preproc_if_token1] = ACTIONS(2963), - [aux_sym_preproc_if_token2] = ACTIONS(3216), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2967), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2967), - [aux_sym_preproc_else_token1] = ACTIONS(2969), - [aux_sym_preproc_elif_token1] = ACTIONS(2971), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2973), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2973), - [sym_preproc_directive] = ACTIONS(2975), - [anon_sym_LPAREN2] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2979), - [anon_sym_STAR] = ACTIONS(2981), + [399] = { + [sym_preproc_def] = STATE(401), + [sym_preproc_function_def] = STATE(401), + [sym_preproc_call] = STATE(401), + [sym_preproc_if_in_field_declaration_list] = STATE(401), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(401), + [sym_preproc_else_in_field_declaration_list] = STATE(8258), + [sym_preproc_elif_in_field_declaration_list] = STATE(8258), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(8258), + [sym_type_definition] = STATE(401), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(5688), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(3133), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6303), + [sym_array_declarator] = STATE(6145), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym__field_declaration_list_item] = STATE(401), + [sym_field_declaration] = STATE(401), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym_explicit_function_specifier] = STATE(1845), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(401), + [sym_operator_cast] = STATE(6890), + [sym_inline_method_definition] = STATE(401), + [sym__constructor_specifiers] = STATE(1845), + [sym_operator_cast_definition] = STATE(401), + [sym_operator_cast_declaration] = STATE(401), + [sym_constructor_or_destructor_definition] = STATE(401), + [sym_constructor_or_destructor_declaration] = STATE(401), + [sym_friend_declaration] = STATE(401), + [sym_access_specifier] = STATE(8331), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(2439), + [sym_template_function] = STATE(6145), + [sym_using_declaration] = STATE(401), + [sym_alias_declaration] = STATE(401), + [sym_static_assert_declaration] = STATE(401), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5557), + [sym_qualified_identifier] = STATE(6145), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6890), + [sym_operator_name] = STATE(6145), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(401), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_attributed_declarator_repeat1] = STATE(7195), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1845), + [sym_identifier] = ACTIONS(2979), + [aux_sym_preproc_def_token1] = ACTIONS(2981), + [aux_sym_preproc_if_token1] = ACTIONS(2983), + [aux_sym_preproc_if_token2] = ACTIONS(3220), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2987), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2987), + [aux_sym_preproc_else_token1] = ACTIONS(2989), + [aux_sym_preproc_elif_token1] = ACTIONS(2991), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2993), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2993), + [sym_preproc_directive] = ACTIONS(2995), + [anon_sym_LPAREN2] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(3001), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2983), - [anon_sym_SEMI] = ACTIONS(3192), - [anon_sym___extension__] = ACTIONS(2987), - [anon_sym_typedef] = ACTIONS(2989), + [anon_sym_AMP] = ACTIONS(3003), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym___extension__] = ACTIONS(3007), + [anon_sym_typedef] = ACTIONS(3009), [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(2991), - [anon_sym_COLON_COLON] = ACTIONS(2993), + [anon_sym_using] = ACTIONS(3011), + [anon_sym_COLON_COLON] = ACTIONS(3013), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), @@ -100185,7 +101312,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2995), + [anon_sym_LBRACK] = ACTIONS(3015), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -100195,7 +101322,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread_local] = ACTIONS(63), [anon_sym___thread] = ACTIONS(63), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(2997), + [anon_sym_constexpr] = ACTIONS(3017), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -100208,116 +101335,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2999), - [anon_sym_enum] = ACTIONS(3001), - [anon_sym_class] = ACTIONS(3003), - [anon_sym_struct] = ACTIONS(3005), - [anon_sym_union] = ACTIONS(3007), + [sym_primitive_type] = ACTIONS(3019), + [anon_sym_enum] = ACTIONS(3021), + [anon_sym_class] = ACTIONS(3023), + [anon_sym_struct] = ACTIONS(3025), + [anon_sym_union] = ACTIONS(3027), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(3009), - [anon_sym_private] = ACTIONS(3011), - [anon_sym_template] = ACTIONS(3013), + [anon_sym_typename] = ACTIONS(3029), + [anon_sym_private] = ACTIONS(3031), + [anon_sym_template] = ACTIONS(3033), [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(3015), - [anon_sym_public] = ACTIONS(3011), - [anon_sym_protected] = ACTIONS(3011), - [anon_sym_static_assert] = ACTIONS(3017), + [anon_sym_friend] = ACTIONS(3035), + [anon_sym_public] = ACTIONS(3031), + [anon_sym_protected] = ACTIONS(3031), + [anon_sym_static_assert] = ACTIONS(3037), }, - [394] = { - [sym_preproc_def] = STATE(587), - [sym_preproc_function_def] = STATE(587), - [sym_preproc_call] = STATE(587), - [sym_preproc_if_in_field_declaration_list] = STATE(587), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(587), - [sym_preproc_else_in_field_declaration_list] = STATE(8094), - [sym_preproc_elif_in_field_declaration_list] = STATE(8094), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(8094), - [sym_type_definition] = STATE(587), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(5637), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(3005), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6218), - [sym_array_declarator] = STATE(5998), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym__field_declaration_list_item] = STATE(587), - [sym_field_declaration] = STATE(587), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym_explicit_function_specifier] = STATE(1744), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(587), - [sym_operator_cast] = STATE(6834), - [sym_inline_method_definition] = STATE(587), - [sym__constructor_specifiers] = STATE(1744), - [sym_operator_cast_definition] = STATE(587), - [sym_operator_cast_declaration] = STATE(587), - [sym_constructor_or_destructor_definition] = STATE(587), - [sym_constructor_or_destructor_declaration] = STATE(587), - [sym_friend_declaration] = STATE(587), - [sym_access_specifier] = STATE(8733), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(2406), - [sym_template_function] = STATE(5998), - [sym_using_declaration] = STATE(587), - [sym_alias_declaration] = STATE(587), - [sym_static_assert_declaration] = STATE(587), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5478), - [sym_qualified_identifier] = STATE(5998), - [sym_qualified_type_identifier] = STATE(3015), - [sym_qualified_operator_cast_identifier] = STATE(6834), - [sym_operator_name] = STATE(5998), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(587), - [aux_sym__declaration_specifiers_repeat1] = STATE(1993), - [aux_sym_attributed_declarator_repeat1] = STATE(7128), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1744), - [sym_identifier] = ACTIONS(2959), - [aux_sym_preproc_def_token1] = ACTIONS(2961), - [aux_sym_preproc_if_token1] = ACTIONS(2963), - [aux_sym_preproc_if_token2] = ACTIONS(3218), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2967), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2967), - [aux_sym_preproc_else_token1] = ACTIONS(2969), - [aux_sym_preproc_elif_token1] = ACTIONS(2971), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2973), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2973), - [sym_preproc_directive] = ACTIONS(2975), - [anon_sym_LPAREN2] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2979), - [anon_sym_STAR] = ACTIONS(2981), + [400] = { + [sym_preproc_def] = STATE(600), + [sym_preproc_function_def] = STATE(600), + [sym_preproc_call] = STATE(600), + [sym_preproc_if_in_field_declaration_list] = STATE(600), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(600), + [sym_preproc_else_in_field_declaration_list] = STATE(8103), + [sym_preproc_elif_in_field_declaration_list] = STATE(8103), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(8103), + [sym_type_definition] = STATE(600), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(5688), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(3133), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6303), + [sym_array_declarator] = STATE(6145), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym__field_declaration_list_item] = STATE(600), + [sym_field_declaration] = STATE(600), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym_explicit_function_specifier] = STATE(1845), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(600), + [sym_operator_cast] = STATE(6890), + [sym_inline_method_definition] = STATE(600), + [sym__constructor_specifiers] = STATE(1845), + [sym_operator_cast_definition] = STATE(600), + [sym_operator_cast_declaration] = STATE(600), + [sym_constructor_or_destructor_definition] = STATE(600), + [sym_constructor_or_destructor_declaration] = STATE(600), + [sym_friend_declaration] = STATE(600), + [sym_access_specifier] = STATE(8331), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(2439), + [sym_template_function] = STATE(6145), + [sym_using_declaration] = STATE(600), + [sym_alias_declaration] = STATE(600), + [sym_static_assert_declaration] = STATE(600), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5557), + [sym_qualified_identifier] = STATE(6145), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6890), + [sym_operator_name] = STATE(6145), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(600), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_attributed_declarator_repeat1] = STATE(7195), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1845), + [sym_identifier] = ACTIONS(2979), + [aux_sym_preproc_def_token1] = ACTIONS(2981), + [aux_sym_preproc_if_token1] = ACTIONS(2983), + [aux_sym_preproc_if_token2] = ACTIONS(3224), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2987), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2987), + [aux_sym_preproc_else_token1] = ACTIONS(2989), + [aux_sym_preproc_elif_token1] = ACTIONS(2991), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2993), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2993), + [sym_preproc_directive] = ACTIONS(2995), + [anon_sym_LPAREN2] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(3001), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2983), - [anon_sym_SEMI] = ACTIONS(3192), - [anon_sym___extension__] = ACTIONS(2987), - [anon_sym_typedef] = ACTIONS(2989), + [anon_sym_AMP] = ACTIONS(3003), + [anon_sym_SEMI] = ACTIONS(3200), + [anon_sym___extension__] = ACTIONS(3007), + [anon_sym_typedef] = ACTIONS(3009), [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(2991), - [anon_sym_COLON_COLON] = ACTIONS(2993), + [anon_sym_using] = ACTIONS(3011), + [anon_sym_COLON_COLON] = ACTIONS(3013), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), @@ -100325,7 +101452,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2995), + [anon_sym_LBRACK] = ACTIONS(3015), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -100335,7 +101462,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread_local] = ACTIONS(63), [anon_sym___thread] = ACTIONS(63), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(2997), + [anon_sym_constexpr] = ACTIONS(3017), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -100348,116 +101475,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2999), - [anon_sym_enum] = ACTIONS(3001), - [anon_sym_class] = ACTIONS(3003), - [anon_sym_struct] = ACTIONS(3005), - [anon_sym_union] = ACTIONS(3007), + [sym_primitive_type] = ACTIONS(3019), + [anon_sym_enum] = ACTIONS(3021), + [anon_sym_class] = ACTIONS(3023), + [anon_sym_struct] = ACTIONS(3025), + [anon_sym_union] = ACTIONS(3027), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(3009), - [anon_sym_private] = ACTIONS(3011), - [anon_sym_template] = ACTIONS(3013), + [anon_sym_typename] = ACTIONS(3029), + [anon_sym_private] = ACTIONS(3031), + [anon_sym_template] = ACTIONS(3033), [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(3015), - [anon_sym_public] = ACTIONS(3011), - [anon_sym_protected] = ACTIONS(3011), - [anon_sym_static_assert] = ACTIONS(3017), + [anon_sym_friend] = ACTIONS(3035), + [anon_sym_public] = ACTIONS(3031), + [anon_sym_protected] = ACTIONS(3031), + [anon_sym_static_assert] = ACTIONS(3037), }, - [395] = { - [sym_preproc_def] = STATE(397), - [sym_preproc_function_def] = STATE(397), - [sym_preproc_call] = STATE(397), - [sym_preproc_if_in_field_declaration_list] = STATE(397), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(397), - [sym_preproc_else_in_field_declaration_list] = STATE(8262), - [sym_preproc_elif_in_field_declaration_list] = STATE(8262), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(8262), - [sym_type_definition] = STATE(397), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(5637), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(3005), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6218), - [sym_array_declarator] = STATE(5998), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym__field_declaration_list_item] = STATE(397), - [sym_field_declaration] = STATE(397), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym_explicit_function_specifier] = STATE(1744), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(397), - [sym_operator_cast] = STATE(6834), - [sym_inline_method_definition] = STATE(397), - [sym__constructor_specifiers] = STATE(1744), - [sym_operator_cast_definition] = STATE(397), - [sym_operator_cast_declaration] = STATE(397), - [sym_constructor_or_destructor_definition] = STATE(397), - [sym_constructor_or_destructor_declaration] = STATE(397), - [sym_friend_declaration] = STATE(397), - [sym_access_specifier] = STATE(8733), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(2406), - [sym_template_function] = STATE(5998), - [sym_using_declaration] = STATE(397), - [sym_alias_declaration] = STATE(397), - [sym_static_assert_declaration] = STATE(397), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5478), - [sym_qualified_identifier] = STATE(5998), - [sym_qualified_type_identifier] = STATE(3015), - [sym_qualified_operator_cast_identifier] = STATE(6834), - [sym_operator_name] = STATE(5998), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(397), - [aux_sym__declaration_specifiers_repeat1] = STATE(1993), - [aux_sym_attributed_declarator_repeat1] = STATE(7128), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1744), - [sym_identifier] = ACTIONS(2959), - [aux_sym_preproc_def_token1] = ACTIONS(2961), - [aux_sym_preproc_if_token1] = ACTIONS(2963), - [aux_sym_preproc_if_token2] = ACTIONS(3220), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2967), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2967), - [aux_sym_preproc_else_token1] = ACTIONS(2969), - [aux_sym_preproc_elif_token1] = ACTIONS(2971), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2973), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2973), - [sym_preproc_directive] = ACTIONS(2975), - [anon_sym_LPAREN2] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2979), - [anon_sym_STAR] = ACTIONS(2981), + [401] = { + [sym_preproc_def] = STATE(600), + [sym_preproc_function_def] = STATE(600), + [sym_preproc_call] = STATE(600), + [sym_preproc_if_in_field_declaration_list] = STATE(600), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(600), + [sym_preproc_else_in_field_declaration_list] = STATE(8099), + [sym_preproc_elif_in_field_declaration_list] = STATE(8099), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(8099), + [sym_type_definition] = STATE(600), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(5688), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(3133), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6303), + [sym_array_declarator] = STATE(6145), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym__field_declaration_list_item] = STATE(600), + [sym_field_declaration] = STATE(600), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym_explicit_function_specifier] = STATE(1845), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(600), + [sym_operator_cast] = STATE(6890), + [sym_inline_method_definition] = STATE(600), + [sym__constructor_specifiers] = STATE(1845), + [sym_operator_cast_definition] = STATE(600), + [sym_operator_cast_declaration] = STATE(600), + [sym_constructor_or_destructor_definition] = STATE(600), + [sym_constructor_or_destructor_declaration] = STATE(600), + [sym_friend_declaration] = STATE(600), + [sym_access_specifier] = STATE(8331), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(2439), + [sym_template_function] = STATE(6145), + [sym_using_declaration] = STATE(600), + [sym_alias_declaration] = STATE(600), + [sym_static_assert_declaration] = STATE(600), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5557), + [sym_qualified_identifier] = STATE(6145), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6890), + [sym_operator_name] = STATE(6145), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(600), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_attributed_declarator_repeat1] = STATE(7195), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1845), + [sym_identifier] = ACTIONS(2979), + [aux_sym_preproc_def_token1] = ACTIONS(2981), + [aux_sym_preproc_if_token1] = ACTIONS(2983), + [aux_sym_preproc_if_token2] = ACTIONS(3226), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2987), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2987), + [aux_sym_preproc_else_token1] = ACTIONS(2989), + [aux_sym_preproc_elif_token1] = ACTIONS(2991), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2993), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2993), + [sym_preproc_directive] = ACTIONS(2995), + [anon_sym_LPAREN2] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(3001), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2983), - [anon_sym_SEMI] = ACTIONS(3222), - [anon_sym___extension__] = ACTIONS(2987), - [anon_sym_typedef] = ACTIONS(2989), + [anon_sym_AMP] = ACTIONS(3003), + [anon_sym_SEMI] = ACTIONS(3200), + [anon_sym___extension__] = ACTIONS(3007), + [anon_sym_typedef] = ACTIONS(3009), [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(2991), - [anon_sym_COLON_COLON] = ACTIONS(2993), + [anon_sym_using] = ACTIONS(3011), + [anon_sym_COLON_COLON] = ACTIONS(3013), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), @@ -100465,7 +101592,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2995), + [anon_sym_LBRACK] = ACTIONS(3015), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -100475,7 +101602,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread_local] = ACTIONS(63), [anon_sym___thread] = ACTIONS(63), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(2997), + [anon_sym_constexpr] = ACTIONS(3017), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -100488,116 +101615,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2999), - [anon_sym_enum] = ACTIONS(3001), - [anon_sym_class] = ACTIONS(3003), - [anon_sym_struct] = ACTIONS(3005), - [anon_sym_union] = ACTIONS(3007), + [sym_primitive_type] = ACTIONS(3019), + [anon_sym_enum] = ACTIONS(3021), + [anon_sym_class] = ACTIONS(3023), + [anon_sym_struct] = ACTIONS(3025), + [anon_sym_union] = ACTIONS(3027), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(3009), - [anon_sym_private] = ACTIONS(3011), - [anon_sym_template] = ACTIONS(3013), + [anon_sym_typename] = ACTIONS(3029), + [anon_sym_private] = ACTIONS(3031), + [anon_sym_template] = ACTIONS(3033), [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(3015), - [anon_sym_public] = ACTIONS(3011), - [anon_sym_protected] = ACTIONS(3011), - [anon_sym_static_assert] = ACTIONS(3017), + [anon_sym_friend] = ACTIONS(3035), + [anon_sym_public] = ACTIONS(3031), + [anon_sym_protected] = ACTIONS(3031), + [anon_sym_static_assert] = ACTIONS(3037), }, - [396] = { - [sym_preproc_def] = STATE(398), - [sym_preproc_function_def] = STATE(398), - [sym_preproc_call] = STATE(398), - [sym_preproc_if_in_field_declaration_list] = STATE(398), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(398), - [sym_preproc_else_in_field_declaration_list] = STATE(8518), - [sym_preproc_elif_in_field_declaration_list] = STATE(8518), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(8518), - [sym_type_definition] = STATE(398), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(5637), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(3005), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6218), - [sym_array_declarator] = STATE(5998), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym__field_declaration_list_item] = STATE(398), - [sym_field_declaration] = STATE(398), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym_explicit_function_specifier] = STATE(1744), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(398), - [sym_operator_cast] = STATE(6834), - [sym_inline_method_definition] = STATE(398), - [sym__constructor_specifiers] = STATE(1744), - [sym_operator_cast_definition] = STATE(398), - [sym_operator_cast_declaration] = STATE(398), - [sym_constructor_or_destructor_definition] = STATE(398), - [sym_constructor_or_destructor_declaration] = STATE(398), - [sym_friend_declaration] = STATE(398), - [sym_access_specifier] = STATE(8733), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(2406), - [sym_template_function] = STATE(5998), - [sym_using_declaration] = STATE(398), - [sym_alias_declaration] = STATE(398), - [sym_static_assert_declaration] = STATE(398), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5478), - [sym_qualified_identifier] = STATE(5998), - [sym_qualified_type_identifier] = STATE(3015), - [sym_qualified_operator_cast_identifier] = STATE(6834), - [sym_operator_name] = STATE(5998), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(398), - [aux_sym__declaration_specifiers_repeat1] = STATE(1993), - [aux_sym_attributed_declarator_repeat1] = STATE(7128), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1744), - [sym_identifier] = ACTIONS(2959), - [aux_sym_preproc_def_token1] = ACTIONS(2961), - [aux_sym_preproc_if_token1] = ACTIONS(2963), - [aux_sym_preproc_if_token2] = ACTIONS(3224), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2967), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2967), - [aux_sym_preproc_else_token1] = ACTIONS(2969), - [aux_sym_preproc_elif_token1] = ACTIONS(2971), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2973), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2973), - [sym_preproc_directive] = ACTIONS(2975), - [anon_sym_LPAREN2] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2979), - [anon_sym_STAR] = ACTIONS(2981), + [402] = { + [sym_preproc_def] = STATE(405), + [sym_preproc_function_def] = STATE(405), + [sym_preproc_call] = STATE(405), + [sym_preproc_if_in_field_declaration_list] = STATE(405), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(405), + [sym_preproc_else_in_field_declaration_list] = STATE(8853), + [sym_preproc_elif_in_field_declaration_list] = STATE(8853), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(8853), + [sym_type_definition] = STATE(405), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(5688), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(3133), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6303), + [sym_array_declarator] = STATE(6145), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym__field_declaration_list_item] = STATE(405), + [sym_field_declaration] = STATE(405), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym_explicit_function_specifier] = STATE(1845), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(405), + [sym_operator_cast] = STATE(6890), + [sym_inline_method_definition] = STATE(405), + [sym__constructor_specifiers] = STATE(1845), + [sym_operator_cast_definition] = STATE(405), + [sym_operator_cast_declaration] = STATE(405), + [sym_constructor_or_destructor_definition] = STATE(405), + [sym_constructor_or_destructor_declaration] = STATE(405), + [sym_friend_declaration] = STATE(405), + [sym_access_specifier] = STATE(8331), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(2439), + [sym_template_function] = STATE(6145), + [sym_using_declaration] = STATE(405), + [sym_alias_declaration] = STATE(405), + [sym_static_assert_declaration] = STATE(405), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5557), + [sym_qualified_identifier] = STATE(6145), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6890), + [sym_operator_name] = STATE(6145), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(405), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_attributed_declarator_repeat1] = STATE(7195), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1845), + [sym_identifier] = ACTIONS(2979), + [aux_sym_preproc_def_token1] = ACTIONS(2981), + [aux_sym_preproc_if_token1] = ACTIONS(2983), + [aux_sym_preproc_if_token2] = ACTIONS(3228), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2987), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2987), + [aux_sym_preproc_else_token1] = ACTIONS(2989), + [aux_sym_preproc_elif_token1] = ACTIONS(2991), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2993), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2993), + [sym_preproc_directive] = ACTIONS(2995), + [anon_sym_LPAREN2] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(3001), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2983), - [anon_sym_SEMI] = ACTIONS(3226), - [anon_sym___extension__] = ACTIONS(2987), - [anon_sym_typedef] = ACTIONS(2989), + [anon_sym_AMP] = ACTIONS(3003), + [anon_sym_SEMI] = ACTIONS(3230), + [anon_sym___extension__] = ACTIONS(3007), + [anon_sym_typedef] = ACTIONS(3009), [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(2991), - [anon_sym_COLON_COLON] = ACTIONS(2993), + [anon_sym_using] = ACTIONS(3011), + [anon_sym_COLON_COLON] = ACTIONS(3013), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), @@ -100605,7 +101732,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2995), + [anon_sym_LBRACK] = ACTIONS(3015), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -100615,7 +101742,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread_local] = ACTIONS(63), [anon_sym___thread] = ACTIONS(63), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(2997), + [anon_sym_constexpr] = ACTIONS(3017), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -100628,116 +101755,256 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2999), - [anon_sym_enum] = ACTIONS(3001), - [anon_sym_class] = ACTIONS(3003), - [anon_sym_struct] = ACTIONS(3005), - [anon_sym_union] = ACTIONS(3007), + [sym_primitive_type] = ACTIONS(3019), + [anon_sym_enum] = ACTIONS(3021), + [anon_sym_class] = ACTIONS(3023), + [anon_sym_struct] = ACTIONS(3025), + [anon_sym_union] = ACTIONS(3027), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(3009), - [anon_sym_private] = ACTIONS(3011), - [anon_sym_template] = ACTIONS(3013), + [anon_sym_typename] = ACTIONS(3029), + [anon_sym_private] = ACTIONS(3031), + [anon_sym_template] = ACTIONS(3033), [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(3015), - [anon_sym_public] = ACTIONS(3011), - [anon_sym_protected] = ACTIONS(3011), - [anon_sym_static_assert] = ACTIONS(3017), + [anon_sym_friend] = ACTIONS(3035), + [anon_sym_public] = ACTIONS(3031), + [anon_sym_protected] = ACTIONS(3031), + [anon_sym_static_assert] = ACTIONS(3037), }, - [397] = { - [sym_preproc_def] = STATE(587), - [sym_preproc_function_def] = STATE(587), - [sym_preproc_call] = STATE(587), - [sym_preproc_if_in_field_declaration_list] = STATE(587), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(587), - [sym_preproc_else_in_field_declaration_list] = STATE(8528), - [sym_preproc_elif_in_field_declaration_list] = STATE(8528), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(8528), - [sym_type_definition] = STATE(587), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(5637), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(3005), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6218), - [sym_array_declarator] = STATE(5998), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym__field_declaration_list_item] = STATE(587), - [sym_field_declaration] = STATE(587), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym_explicit_function_specifier] = STATE(1744), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(587), - [sym_operator_cast] = STATE(6834), - [sym_inline_method_definition] = STATE(587), - [sym__constructor_specifiers] = STATE(1744), - [sym_operator_cast_definition] = STATE(587), - [sym_operator_cast_declaration] = STATE(587), - [sym_constructor_or_destructor_definition] = STATE(587), - [sym_constructor_or_destructor_declaration] = STATE(587), - [sym_friend_declaration] = STATE(587), - [sym_access_specifier] = STATE(8733), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(2406), - [sym_template_function] = STATE(5998), - [sym_using_declaration] = STATE(587), - [sym_alias_declaration] = STATE(587), - [sym_static_assert_declaration] = STATE(587), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5478), - [sym_qualified_identifier] = STATE(5998), - [sym_qualified_type_identifier] = STATE(3015), - [sym_qualified_operator_cast_identifier] = STATE(6834), - [sym_operator_name] = STATE(5998), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(587), - [aux_sym__declaration_specifiers_repeat1] = STATE(1993), - [aux_sym_attributed_declarator_repeat1] = STATE(7128), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1744), - [sym_identifier] = ACTIONS(2959), - [aux_sym_preproc_def_token1] = ACTIONS(2961), - [aux_sym_preproc_if_token1] = ACTIONS(2963), - [aux_sym_preproc_if_token2] = ACTIONS(3228), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2967), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2967), - [aux_sym_preproc_else_token1] = ACTIONS(2969), - [aux_sym_preproc_elif_token1] = ACTIONS(2971), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2973), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2973), - [sym_preproc_directive] = ACTIONS(2975), - [anon_sym_LPAREN2] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2979), - [anon_sym_STAR] = ACTIONS(2981), + [403] = { + [ts_builtin_sym_end] = ACTIONS(2681), + [sym_identifier] = ACTIONS(2679), + [aux_sym_preproc_include_token1] = ACTIONS(2679), + [aux_sym_preproc_def_token1] = ACTIONS(2679), + [aux_sym_preproc_if_token1] = ACTIONS(2679), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2679), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2679), + [sym_preproc_directive] = ACTIONS(2679), + [anon_sym_LPAREN2] = ACTIONS(2681), + [anon_sym_BANG] = ACTIONS(2681), + [anon_sym_TILDE] = ACTIONS(2681), + [anon_sym_DASH] = ACTIONS(2679), + [anon_sym_PLUS] = ACTIONS(2679), + [anon_sym_STAR] = ACTIONS(2681), + [anon_sym_AMP_AMP] = ACTIONS(2681), + [anon_sym_AMP] = ACTIONS(2679), + [anon_sym_SEMI] = ACTIONS(2681), + [anon_sym___extension__] = ACTIONS(2679), + [anon_sym_typedef] = ACTIONS(2679), + [anon_sym_virtual] = ACTIONS(2679), + [anon_sym_extern] = ACTIONS(2679), + [anon_sym___attribute__] = ACTIONS(2679), + [anon_sym___attribute] = ACTIONS(2679), + [anon_sym_using] = ACTIONS(2679), + [anon_sym_COLON_COLON] = ACTIONS(2681), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2681), + [anon_sym___declspec] = ACTIONS(2679), + [anon_sym___based] = ACTIONS(2679), + [anon_sym___cdecl] = ACTIONS(2679), + [anon_sym___clrcall] = ACTIONS(2679), + [anon_sym___stdcall] = ACTIONS(2679), + [anon_sym___fastcall] = ACTIONS(2679), + [anon_sym___thiscall] = ACTIONS(2679), + [anon_sym___vectorcall] = ACTIONS(2679), + [anon_sym_LBRACE] = ACTIONS(2681), + [anon_sym_signed] = ACTIONS(2679), + [anon_sym_unsigned] = ACTIONS(2679), + [anon_sym_long] = ACTIONS(2679), + [anon_sym_short] = ACTIONS(2679), + [anon_sym_LBRACK] = ACTIONS(2679), + [anon_sym_static] = ACTIONS(2679), + [anon_sym_register] = ACTIONS(2679), + [anon_sym_inline] = ACTIONS(2679), + [anon_sym___inline] = ACTIONS(2679), + [anon_sym___inline__] = ACTIONS(2679), + [anon_sym___forceinline] = ACTIONS(2679), + [anon_sym_thread_local] = ACTIONS(2679), + [anon_sym___thread] = ACTIONS(2679), + [anon_sym_const] = ACTIONS(2679), + [anon_sym_constexpr] = ACTIONS(2679), + [anon_sym_volatile] = ACTIONS(2679), + [anon_sym_restrict] = ACTIONS(2679), + [anon_sym___restrict__] = ACTIONS(2679), + [anon_sym__Atomic] = ACTIONS(2679), + [anon_sym__Noreturn] = ACTIONS(2679), + [anon_sym_noreturn] = ACTIONS(2679), + [anon_sym__Nonnull] = ACTIONS(2679), + [anon_sym_mutable] = ACTIONS(2679), + [anon_sym_constinit] = ACTIONS(2679), + [anon_sym_consteval] = ACTIONS(2679), + [anon_sym_alignas] = ACTIONS(2679), + [anon_sym__Alignas] = ACTIONS(2679), + [sym_primitive_type] = ACTIONS(2679), + [anon_sym_enum] = ACTIONS(2679), + [anon_sym_class] = ACTIONS(2679), + [anon_sym_struct] = ACTIONS(2679), + [anon_sym_union] = ACTIONS(2679), + [anon_sym_if] = ACTIONS(2679), + [anon_sym_else] = ACTIONS(2679), + [anon_sym_switch] = ACTIONS(2679), + [anon_sym_case] = ACTIONS(2679), + [anon_sym_default] = ACTIONS(2679), + [anon_sym_while] = ACTIONS(2679), + [anon_sym_do] = ACTIONS(2679), + [anon_sym_for] = ACTIONS(2679), + [anon_sym_return] = ACTIONS(2679), + [anon_sym_break] = ACTIONS(2679), + [anon_sym_continue] = ACTIONS(2679), + [anon_sym_goto] = ACTIONS(2679), + [anon_sym___try] = ACTIONS(2679), + [anon_sym___leave] = ACTIONS(2679), + [anon_sym_not] = ACTIONS(2679), + [anon_sym_compl] = ACTIONS(2679), + [anon_sym_DASH_DASH] = ACTIONS(2681), + [anon_sym_PLUS_PLUS] = ACTIONS(2681), + [anon_sym_sizeof] = ACTIONS(2679), + [anon_sym___alignof__] = ACTIONS(2679), + [anon_sym___alignof] = ACTIONS(2679), + [anon_sym__alignof] = ACTIONS(2679), + [anon_sym_alignof] = ACTIONS(2679), + [anon_sym__Alignof] = ACTIONS(2679), + [anon_sym_offsetof] = ACTIONS(2679), + [anon_sym__Generic] = ACTIONS(2679), + [anon_sym_asm] = ACTIONS(2679), + [anon_sym___asm__] = ACTIONS(2679), + [anon_sym___asm] = ACTIONS(2679), + [sym_number_literal] = ACTIONS(2681), + [anon_sym_L_SQUOTE] = ACTIONS(2681), + [anon_sym_u_SQUOTE] = ACTIONS(2681), + [anon_sym_U_SQUOTE] = ACTIONS(2681), + [anon_sym_u8_SQUOTE] = ACTIONS(2681), + [anon_sym_SQUOTE] = ACTIONS(2681), + [anon_sym_L_DQUOTE] = ACTIONS(2681), + [anon_sym_u_DQUOTE] = ACTIONS(2681), + [anon_sym_U_DQUOTE] = ACTIONS(2681), + [anon_sym_u8_DQUOTE] = ACTIONS(2681), + [anon_sym_DQUOTE] = ACTIONS(2681), + [sym_true] = ACTIONS(2679), + [sym_false] = ACTIONS(2679), + [anon_sym_NULL] = ACTIONS(2679), + [anon_sym_nullptr] = ACTIONS(2679), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2679), + [anon_sym_decltype] = ACTIONS(2679), + [anon_sym_explicit] = ACTIONS(2679), + [anon_sym_typename] = ACTIONS(2679), + [anon_sym_export] = ACTIONS(2679), + [anon_sym_module] = ACTIONS(2679), + [anon_sym_import] = ACTIONS(2679), + [anon_sym_template] = ACTIONS(2679), + [anon_sym_operator] = ACTIONS(2679), + [anon_sym_try] = ACTIONS(2679), + [anon_sym_delete] = ACTIONS(2679), + [anon_sym_throw] = ACTIONS(2679), + [anon_sym_namespace] = ACTIONS(2679), + [anon_sym_static_assert] = ACTIONS(2679), + [anon_sym_concept] = ACTIONS(2679), + [anon_sym_co_return] = ACTIONS(2679), + [anon_sym_co_yield] = ACTIONS(2679), + [anon_sym_R_DQUOTE] = ACTIONS(2681), + [anon_sym_LR_DQUOTE] = ACTIONS(2681), + [anon_sym_uR_DQUOTE] = ACTIONS(2681), + [anon_sym_UR_DQUOTE] = ACTIONS(2681), + [anon_sym_u8R_DQUOTE] = ACTIONS(2681), + [anon_sym_co_await] = ACTIONS(2679), + [anon_sym_new] = ACTIONS(2679), + [anon_sym_requires] = ACTIONS(2679), + [sym_this] = ACTIONS(2679), + }, + [404] = { + [sym_preproc_def] = STATE(406), + [sym_preproc_function_def] = STATE(406), + [sym_preproc_call] = STATE(406), + [sym_preproc_if_in_field_declaration_list] = STATE(406), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(406), + [sym_preproc_else_in_field_declaration_list] = STATE(8602), + [sym_preproc_elif_in_field_declaration_list] = STATE(8602), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(8602), + [sym_type_definition] = STATE(406), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(5688), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(3133), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6303), + [sym_array_declarator] = STATE(6145), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym__field_declaration_list_item] = STATE(406), + [sym_field_declaration] = STATE(406), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym_explicit_function_specifier] = STATE(1845), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(406), + [sym_operator_cast] = STATE(6890), + [sym_inline_method_definition] = STATE(406), + [sym__constructor_specifiers] = STATE(1845), + [sym_operator_cast_definition] = STATE(406), + [sym_operator_cast_declaration] = STATE(406), + [sym_constructor_or_destructor_definition] = STATE(406), + [sym_constructor_or_destructor_declaration] = STATE(406), + [sym_friend_declaration] = STATE(406), + [sym_access_specifier] = STATE(8331), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(2439), + [sym_template_function] = STATE(6145), + [sym_using_declaration] = STATE(406), + [sym_alias_declaration] = STATE(406), + [sym_static_assert_declaration] = STATE(406), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5557), + [sym_qualified_identifier] = STATE(6145), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6890), + [sym_operator_name] = STATE(6145), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(406), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_attributed_declarator_repeat1] = STATE(7195), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1845), + [sym_identifier] = ACTIONS(2979), + [aux_sym_preproc_def_token1] = ACTIONS(2981), + [aux_sym_preproc_if_token1] = ACTIONS(2983), + [aux_sym_preproc_if_token2] = ACTIONS(3232), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2987), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2987), + [aux_sym_preproc_else_token1] = ACTIONS(2989), + [aux_sym_preproc_elif_token1] = ACTIONS(2991), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2993), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2993), + [sym_preproc_directive] = ACTIONS(2995), + [anon_sym_LPAREN2] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(3001), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2983), - [anon_sym_SEMI] = ACTIONS(3192), - [anon_sym___extension__] = ACTIONS(2987), - [anon_sym_typedef] = ACTIONS(2989), + [anon_sym_AMP] = ACTIONS(3003), + [anon_sym_SEMI] = ACTIONS(3234), + [anon_sym___extension__] = ACTIONS(3007), + [anon_sym_typedef] = ACTIONS(3009), [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(2991), - [anon_sym_COLON_COLON] = ACTIONS(2993), + [anon_sym_using] = ACTIONS(3011), + [anon_sym_COLON_COLON] = ACTIONS(3013), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), @@ -100745,7 +102012,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2995), + [anon_sym_LBRACK] = ACTIONS(3015), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -100755,7 +102022,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread_local] = ACTIONS(63), [anon_sym___thread] = ACTIONS(63), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(2997), + [anon_sym_constexpr] = ACTIONS(3017), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -100768,116 +102035,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2999), - [anon_sym_enum] = ACTIONS(3001), - [anon_sym_class] = ACTIONS(3003), - [anon_sym_struct] = ACTIONS(3005), - [anon_sym_union] = ACTIONS(3007), + [sym_primitive_type] = ACTIONS(3019), + [anon_sym_enum] = ACTIONS(3021), + [anon_sym_class] = ACTIONS(3023), + [anon_sym_struct] = ACTIONS(3025), + [anon_sym_union] = ACTIONS(3027), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(3009), - [anon_sym_private] = ACTIONS(3011), - [anon_sym_template] = ACTIONS(3013), + [anon_sym_typename] = ACTIONS(3029), + [anon_sym_private] = ACTIONS(3031), + [anon_sym_template] = ACTIONS(3033), [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(3015), - [anon_sym_public] = ACTIONS(3011), - [anon_sym_protected] = ACTIONS(3011), - [anon_sym_static_assert] = ACTIONS(3017), + [anon_sym_friend] = ACTIONS(3035), + [anon_sym_public] = ACTIONS(3031), + [anon_sym_protected] = ACTIONS(3031), + [anon_sym_static_assert] = ACTIONS(3037), }, - [398] = { - [sym_preproc_def] = STATE(587), - [sym_preproc_function_def] = STATE(587), - [sym_preproc_call] = STATE(587), - [sym_preproc_if_in_field_declaration_list] = STATE(587), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(587), - [sym_preproc_else_in_field_declaration_list] = STATE(8514), - [sym_preproc_elif_in_field_declaration_list] = STATE(8514), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(8514), - [sym_type_definition] = STATE(587), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(5637), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(3005), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6218), - [sym_array_declarator] = STATE(5998), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym__field_declaration_list_item] = STATE(587), - [sym_field_declaration] = STATE(587), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym_explicit_function_specifier] = STATE(1744), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(587), - [sym_operator_cast] = STATE(6834), - [sym_inline_method_definition] = STATE(587), - [sym__constructor_specifiers] = STATE(1744), - [sym_operator_cast_definition] = STATE(587), - [sym_operator_cast_declaration] = STATE(587), - [sym_constructor_or_destructor_definition] = STATE(587), - [sym_constructor_or_destructor_declaration] = STATE(587), - [sym_friend_declaration] = STATE(587), - [sym_access_specifier] = STATE(8733), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(2406), - [sym_template_function] = STATE(5998), - [sym_using_declaration] = STATE(587), - [sym_alias_declaration] = STATE(587), - [sym_static_assert_declaration] = STATE(587), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5478), - [sym_qualified_identifier] = STATE(5998), - [sym_qualified_type_identifier] = STATE(3015), - [sym_qualified_operator_cast_identifier] = STATE(6834), - [sym_operator_name] = STATE(5998), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(587), - [aux_sym__declaration_specifiers_repeat1] = STATE(1993), - [aux_sym_attributed_declarator_repeat1] = STATE(7128), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1744), - [sym_identifier] = ACTIONS(2959), - [aux_sym_preproc_def_token1] = ACTIONS(2961), - [aux_sym_preproc_if_token1] = ACTIONS(2963), - [aux_sym_preproc_if_token2] = ACTIONS(3230), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2967), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2967), - [aux_sym_preproc_else_token1] = ACTIONS(2969), - [aux_sym_preproc_elif_token1] = ACTIONS(2971), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2973), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2973), - [sym_preproc_directive] = ACTIONS(2975), - [anon_sym_LPAREN2] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2979), - [anon_sym_STAR] = ACTIONS(2981), + [405] = { + [sym_preproc_def] = STATE(600), + [sym_preproc_function_def] = STATE(600), + [sym_preproc_call] = STATE(600), + [sym_preproc_if_in_field_declaration_list] = STATE(600), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(600), + [sym_preproc_else_in_field_declaration_list] = STATE(8614), + [sym_preproc_elif_in_field_declaration_list] = STATE(8614), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(8614), + [sym_type_definition] = STATE(600), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(5688), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(3133), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6303), + [sym_array_declarator] = STATE(6145), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym__field_declaration_list_item] = STATE(600), + [sym_field_declaration] = STATE(600), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym_explicit_function_specifier] = STATE(1845), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(600), + [sym_operator_cast] = STATE(6890), + [sym_inline_method_definition] = STATE(600), + [sym__constructor_specifiers] = STATE(1845), + [sym_operator_cast_definition] = STATE(600), + [sym_operator_cast_declaration] = STATE(600), + [sym_constructor_or_destructor_definition] = STATE(600), + [sym_constructor_or_destructor_declaration] = STATE(600), + [sym_friend_declaration] = STATE(600), + [sym_access_specifier] = STATE(8331), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(2439), + [sym_template_function] = STATE(6145), + [sym_using_declaration] = STATE(600), + [sym_alias_declaration] = STATE(600), + [sym_static_assert_declaration] = STATE(600), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5557), + [sym_qualified_identifier] = STATE(6145), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6890), + [sym_operator_name] = STATE(6145), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(600), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_attributed_declarator_repeat1] = STATE(7195), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1845), + [sym_identifier] = ACTIONS(2979), + [aux_sym_preproc_def_token1] = ACTIONS(2981), + [aux_sym_preproc_if_token1] = ACTIONS(2983), + [aux_sym_preproc_if_token2] = ACTIONS(3236), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2987), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2987), + [aux_sym_preproc_else_token1] = ACTIONS(2989), + [aux_sym_preproc_elif_token1] = ACTIONS(2991), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2993), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2993), + [sym_preproc_directive] = ACTIONS(2995), + [anon_sym_LPAREN2] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(3001), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2983), - [anon_sym_SEMI] = ACTIONS(3192), - [anon_sym___extension__] = ACTIONS(2987), - [anon_sym_typedef] = ACTIONS(2989), + [anon_sym_AMP] = ACTIONS(3003), + [anon_sym_SEMI] = ACTIONS(3200), + [anon_sym___extension__] = ACTIONS(3007), + [anon_sym_typedef] = ACTIONS(3009), [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(2991), - [anon_sym_COLON_COLON] = ACTIONS(2993), + [anon_sym_using] = ACTIONS(3011), + [anon_sym_COLON_COLON] = ACTIONS(3013), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), @@ -100885,7 +102152,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2995), + [anon_sym_LBRACK] = ACTIONS(3015), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -100895,7 +102162,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread_local] = ACTIONS(63), [anon_sym___thread] = ACTIONS(63), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(2997), + [anon_sym_constexpr] = ACTIONS(3017), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -100908,100 +102175,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2999), - [anon_sym_enum] = ACTIONS(3001), - [anon_sym_class] = ACTIONS(3003), - [anon_sym_struct] = ACTIONS(3005), - [anon_sym_union] = ACTIONS(3007), + [sym_primitive_type] = ACTIONS(3019), + [anon_sym_enum] = ACTIONS(3021), + [anon_sym_class] = ACTIONS(3023), + [anon_sym_struct] = ACTIONS(3025), + [anon_sym_union] = ACTIONS(3027), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(3009), - [anon_sym_private] = ACTIONS(3011), - [anon_sym_template] = ACTIONS(3013), + [anon_sym_typename] = ACTIONS(3029), + [anon_sym_private] = ACTIONS(3031), + [anon_sym_template] = ACTIONS(3033), [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(3015), - [anon_sym_public] = ACTIONS(3011), - [anon_sym_protected] = ACTIONS(3011), - [anon_sym_static_assert] = ACTIONS(3017), + [anon_sym_friend] = ACTIONS(3035), + [anon_sym_public] = ACTIONS(3031), + [anon_sym_protected] = ACTIONS(3031), + [anon_sym_static_assert] = ACTIONS(3037), }, - [399] = { - [sym_type_qualifier] = STATE(3910), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(4737), - [sym_sized_type_specifier] = STATE(2668), - [sym_enum_specifier] = STATE(2668), - [sym_struct_specifier] = STATE(2668), - [sym_union_specifier] = STATE(2668), - [sym_expression] = STATE(4328), - [sym__string] = STATE(4738), - [sym_conditional_expression] = STATE(4829), - [sym_assignment_expression] = STATE(4829), - [sym_pointer_expression] = STATE(3602), - [sym_unary_expression] = STATE(4829), - [sym_binary_expression] = STATE(4829), - [sym_update_expression] = STATE(4829), - [sym_cast_expression] = STATE(4829), - [sym_type_descriptor] = STATE(7069), - [sym_sizeof_expression] = STATE(4829), - [sym_alignof_expression] = STATE(4829), - [sym_offsetof_expression] = STATE(4829), - [sym_generic_expression] = STATE(4829), - [sym_subscript_expression] = STATE(3602), - [sym_call_expression] = STATE(3602), - [sym_gnu_asm_expression] = STATE(4829), - [sym_extension_expression] = STATE(4829), - [sym_field_expression] = STATE(3602), - [sym_compound_literal_expression] = STATE(4829), - [sym_parenthesized_expression] = STATE(3602), - [sym_char_literal] = STATE(4738), - [sym_concatenated_string] = STATE(4738), - [sym_string_literal] = STATE(3759), - [sym_null] = STATE(4829), - [sym_placeholder_type_specifier] = STATE(2668), - [sym_decltype_auto] = STATE(2708), - [sym_decltype] = STATE(2598), - [sym_class_specifier] = STATE(2668), - [sym__class_name] = STATE(7804), - [sym_dependent_type] = STATE(2668), - [sym_template_type] = STATE(5285), - [sym_template_function] = STATE(4829), - [sym_raw_string_literal] = STATE(3759), - [sym_co_await_expression] = STATE(4829), - [sym_new_expression] = STATE(4829), - [sym_delete_expression] = STATE(4829), - [sym_requires_clause] = STATE(4829), - [sym_requires_expression] = STATE(4829), - [sym_lambda_expression] = STATE(4829), - [sym_lambda_capture_specifier] = STATE(5401), - [sym_fold_expression] = STATE(4829), - [sym_parameter_pack_expansion] = STATE(4829), - [sym_type_parameter_pack_expansion] = STATE(7155), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5750), - [sym_qualified_identifier] = STATE(3602), - [sym_qualified_type_identifier] = STATE(5327), - [sym_user_defined_literal] = STATE(3602), - [aux_sym__type_definition_type_repeat1] = STATE(3910), - [aux_sym_sized_type_specifier_repeat1] = STATE(4239), - [sym_identifier] = ACTIONS(3116), - [anon_sym_LPAREN2] = ACTIONS(3118), - [anon_sym_BANG] = ACTIONS(3120), - [anon_sym_TILDE] = ACTIONS(3120), - [anon_sym_DASH] = ACTIONS(3122), - [anon_sym_PLUS] = ACTIONS(3122), - [anon_sym_STAR] = ACTIONS(3124), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym___extension__] = ACTIONS(3126), - [anon_sym_COLON_COLON] = ACTIONS(3128), - [anon_sym_signed] = ACTIONS(3130), - [anon_sym_unsigned] = ACTIONS(3130), - [anon_sym_long] = ACTIONS(3130), - [anon_sym_short] = ACTIONS(3130), - [anon_sym_LBRACK] = ACTIONS(2020), + [406] = { + [sym_preproc_def] = STATE(600), + [sym_preproc_function_def] = STATE(600), + [sym_preproc_call] = STATE(600), + [sym_preproc_if_in_field_declaration_list] = STATE(600), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(600), + [sym_preproc_else_in_field_declaration_list] = STATE(8936), + [sym_preproc_elif_in_field_declaration_list] = STATE(8936), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(8936), + [sym_type_definition] = STATE(600), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(5688), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(3133), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6303), + [sym_array_declarator] = STATE(6145), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym__field_declaration_list_item] = STATE(600), + [sym_field_declaration] = STATE(600), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym_explicit_function_specifier] = STATE(1845), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(600), + [sym_operator_cast] = STATE(6890), + [sym_inline_method_definition] = STATE(600), + [sym__constructor_specifiers] = STATE(1845), + [sym_operator_cast_definition] = STATE(600), + [sym_operator_cast_declaration] = STATE(600), + [sym_constructor_or_destructor_definition] = STATE(600), + [sym_constructor_or_destructor_declaration] = STATE(600), + [sym_friend_declaration] = STATE(600), + [sym_access_specifier] = STATE(8331), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(2439), + [sym_template_function] = STATE(6145), + [sym_using_declaration] = STATE(600), + [sym_alias_declaration] = STATE(600), + [sym_static_assert_declaration] = STATE(600), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5557), + [sym_qualified_identifier] = STATE(6145), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6890), + [sym_operator_name] = STATE(6145), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(600), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_attributed_declarator_repeat1] = STATE(7195), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1845), + [sym_identifier] = ACTIONS(2979), + [aux_sym_preproc_def_token1] = ACTIONS(2981), + [aux_sym_preproc_if_token1] = ACTIONS(2983), + [aux_sym_preproc_if_token2] = ACTIONS(3238), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2987), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2987), + [aux_sym_preproc_else_token1] = ACTIONS(2989), + [aux_sym_preproc_elif_token1] = ACTIONS(2991), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2993), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2993), + [sym_preproc_directive] = ACTIONS(2995), + [anon_sym_LPAREN2] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(3001), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3003), + [anon_sym_SEMI] = ACTIONS(3200), + [anon_sym___extension__] = ACTIONS(3007), + [anon_sym_typedef] = ACTIONS(3009), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(3011), + [anon_sym_COLON_COLON] = ACTIONS(3013), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3015), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(3017), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -101014,411 +102315,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(3132), - [anon_sym_enum] = ACTIONS(3134), - [anon_sym_class] = ACTIONS(3136), - [anon_sym_struct] = ACTIONS(3138), - [anon_sym_union] = ACTIONS(3140), - [anon_sym_not] = ACTIONS(3122), - [anon_sym_compl] = ACTIONS(3122), - [anon_sym_DASH_DASH] = ACTIONS(3142), - [anon_sym_PLUS_PLUS] = ACTIONS(3142), - [anon_sym_sizeof] = ACTIONS(3144), - [anon_sym___alignof__] = ACTIONS(3146), - [anon_sym___alignof] = ACTIONS(3146), - [anon_sym__alignof] = ACTIONS(3146), - [anon_sym_alignof] = ACTIONS(3146), - [anon_sym__Alignof] = ACTIONS(3146), - [anon_sym_offsetof] = ACTIONS(3148), - [anon_sym__Generic] = ACTIONS(3150), - [anon_sym_asm] = ACTIONS(3152), - [anon_sym___asm__] = ACTIONS(3152), - [anon_sym___asm] = ACTIONS(3152), - [sym_number_literal] = ACTIONS(3154), - [anon_sym_L_SQUOTE] = ACTIONS(3156), - [anon_sym_u_SQUOTE] = ACTIONS(3156), - [anon_sym_U_SQUOTE] = ACTIONS(3156), - [anon_sym_u8_SQUOTE] = ACTIONS(3156), - [anon_sym_SQUOTE] = ACTIONS(3156), - [anon_sym_L_DQUOTE] = ACTIONS(3158), - [anon_sym_u_DQUOTE] = ACTIONS(3158), - [anon_sym_U_DQUOTE] = ACTIONS(3158), - [anon_sym_u8_DQUOTE] = ACTIONS(3158), - [anon_sym_DQUOTE] = ACTIONS(3158), - [sym_true] = ACTIONS(3160), - [sym_false] = ACTIONS(3160), - [anon_sym_NULL] = ACTIONS(3162), - [anon_sym_nullptr] = ACTIONS(3162), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3164), - [anon_sym_decltype] = ACTIONS(3166), - [anon_sym_typename] = ACTIONS(3168), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_GT2] = ACTIONS(3232), - [anon_sym_delete] = ACTIONS(3172), - [anon_sym_R_DQUOTE] = ACTIONS(3174), - [anon_sym_LR_DQUOTE] = ACTIONS(3174), - [anon_sym_uR_DQUOTE] = ACTIONS(3174), - [anon_sym_UR_DQUOTE] = ACTIONS(3174), - [anon_sym_u8R_DQUOTE] = ACTIONS(3174), - [anon_sym_co_await] = ACTIONS(3176), - [anon_sym_new] = ACTIONS(3178), - [anon_sym_requires] = ACTIONS(3180), - [sym_this] = ACTIONS(3160), + [sym_primitive_type] = ACTIONS(3019), + [anon_sym_enum] = ACTIONS(3021), + [anon_sym_class] = ACTIONS(3023), + [anon_sym_struct] = ACTIONS(3025), + [anon_sym_union] = ACTIONS(3027), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(125), + [anon_sym_decltype] = ACTIONS(127), + [anon_sym_explicit] = ACTIONS(129), + [anon_sym_typename] = ACTIONS(3029), + [anon_sym_private] = ACTIONS(3031), + [anon_sym_template] = ACTIONS(3033), + [anon_sym_operator] = ACTIONS(141), + [anon_sym_friend] = ACTIONS(3035), + [anon_sym_public] = ACTIONS(3031), + [anon_sym_protected] = ACTIONS(3031), + [anon_sym_static_assert] = ACTIONS(3037), }, - [400] = { - [ts_builtin_sym_end] = ACTIONS(2745), - [sym_identifier] = ACTIONS(2743), - [aux_sym_preproc_include_token1] = ACTIONS(2743), - [aux_sym_preproc_def_token1] = ACTIONS(2743), - [aux_sym_preproc_if_token1] = ACTIONS(2743), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2743), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2743), - [sym_preproc_directive] = ACTIONS(2743), - [anon_sym_LPAREN2] = ACTIONS(2745), - [anon_sym_BANG] = ACTIONS(2745), - [anon_sym_TILDE] = ACTIONS(2745), - [anon_sym_DASH] = ACTIONS(2743), - [anon_sym_PLUS] = ACTIONS(2743), - [anon_sym_STAR] = ACTIONS(2745), - [anon_sym_AMP_AMP] = ACTIONS(2745), - [anon_sym_AMP] = ACTIONS(2743), - [anon_sym_SEMI] = ACTIONS(2745), - [anon_sym___extension__] = ACTIONS(2743), - [anon_sym_typedef] = ACTIONS(2743), - [anon_sym_virtual] = ACTIONS(2743), - [anon_sym_extern] = ACTIONS(2743), - [anon_sym___attribute__] = ACTIONS(2743), - [anon_sym___attribute] = ACTIONS(2743), - [anon_sym_using] = ACTIONS(2743), - [anon_sym_COLON_COLON] = ACTIONS(2745), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2745), - [anon_sym___declspec] = ACTIONS(2743), - [anon_sym___based] = ACTIONS(2743), - [anon_sym___cdecl] = ACTIONS(2743), - [anon_sym___clrcall] = ACTIONS(2743), - [anon_sym___stdcall] = ACTIONS(2743), - [anon_sym___fastcall] = ACTIONS(2743), - [anon_sym___thiscall] = ACTIONS(2743), - [anon_sym___vectorcall] = ACTIONS(2743), - [anon_sym_LBRACE] = ACTIONS(2745), - [anon_sym_signed] = ACTIONS(2743), - [anon_sym_unsigned] = ACTIONS(2743), - [anon_sym_long] = ACTIONS(2743), - [anon_sym_short] = ACTIONS(2743), - [anon_sym_LBRACK] = ACTIONS(2743), - [anon_sym_static] = ACTIONS(2743), - [anon_sym_register] = ACTIONS(2743), - [anon_sym_inline] = ACTIONS(2743), - [anon_sym___inline] = ACTIONS(2743), - [anon_sym___inline__] = ACTIONS(2743), - [anon_sym___forceinline] = ACTIONS(2743), - [anon_sym_thread_local] = ACTIONS(2743), - [anon_sym___thread] = ACTIONS(2743), - [anon_sym_const] = ACTIONS(2743), - [anon_sym_constexpr] = ACTIONS(2743), - [anon_sym_volatile] = ACTIONS(2743), - [anon_sym_restrict] = ACTIONS(2743), - [anon_sym___restrict__] = ACTIONS(2743), - [anon_sym__Atomic] = ACTIONS(2743), - [anon_sym__Noreturn] = ACTIONS(2743), - [anon_sym_noreturn] = ACTIONS(2743), - [anon_sym__Nonnull] = ACTIONS(2743), - [anon_sym_mutable] = ACTIONS(2743), - [anon_sym_constinit] = ACTIONS(2743), - [anon_sym_consteval] = ACTIONS(2743), - [anon_sym_alignas] = ACTIONS(2743), - [anon_sym__Alignas] = ACTIONS(2743), - [sym_primitive_type] = ACTIONS(2743), - [anon_sym_enum] = ACTIONS(2743), - [anon_sym_class] = ACTIONS(2743), - [anon_sym_struct] = ACTIONS(2743), - [anon_sym_union] = ACTIONS(2743), - [anon_sym_if] = ACTIONS(2743), - [anon_sym_else] = ACTIONS(2743), - [anon_sym_switch] = ACTIONS(2743), - [anon_sym_case] = ACTIONS(2743), - [anon_sym_default] = ACTIONS(2743), - [anon_sym_while] = ACTIONS(2743), - [anon_sym_do] = ACTIONS(2743), - [anon_sym_for] = ACTIONS(2743), - [anon_sym_return] = ACTIONS(2743), - [anon_sym_break] = ACTIONS(2743), - [anon_sym_continue] = ACTIONS(2743), - [anon_sym_goto] = ACTIONS(2743), - [anon_sym___try] = ACTIONS(2743), - [anon_sym___leave] = ACTIONS(2743), - [anon_sym_not] = ACTIONS(2743), - [anon_sym_compl] = ACTIONS(2743), - [anon_sym_DASH_DASH] = ACTIONS(2745), - [anon_sym_PLUS_PLUS] = ACTIONS(2745), - [anon_sym_sizeof] = ACTIONS(2743), - [anon_sym___alignof__] = ACTIONS(2743), - [anon_sym___alignof] = ACTIONS(2743), - [anon_sym__alignof] = ACTIONS(2743), - [anon_sym_alignof] = ACTIONS(2743), - [anon_sym__Alignof] = ACTIONS(2743), - [anon_sym_offsetof] = ACTIONS(2743), - [anon_sym__Generic] = ACTIONS(2743), - [anon_sym_asm] = ACTIONS(2743), - [anon_sym___asm__] = ACTIONS(2743), - [anon_sym___asm] = ACTIONS(2743), - [sym_number_literal] = ACTIONS(2745), - [anon_sym_L_SQUOTE] = ACTIONS(2745), - [anon_sym_u_SQUOTE] = ACTIONS(2745), - [anon_sym_U_SQUOTE] = ACTIONS(2745), - [anon_sym_u8_SQUOTE] = ACTIONS(2745), - [anon_sym_SQUOTE] = ACTIONS(2745), - [anon_sym_L_DQUOTE] = ACTIONS(2745), - [anon_sym_u_DQUOTE] = ACTIONS(2745), - [anon_sym_U_DQUOTE] = ACTIONS(2745), - [anon_sym_u8_DQUOTE] = ACTIONS(2745), - [anon_sym_DQUOTE] = ACTIONS(2745), - [sym_true] = ACTIONS(2743), - [sym_false] = ACTIONS(2743), - [anon_sym_NULL] = ACTIONS(2743), - [anon_sym_nullptr] = ACTIONS(2743), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2743), - [anon_sym_decltype] = ACTIONS(2743), - [anon_sym_explicit] = ACTIONS(2743), - [anon_sym_typename] = ACTIONS(2743), - [anon_sym_export] = ACTIONS(2743), - [anon_sym_module] = ACTIONS(2743), - [anon_sym_import] = ACTIONS(2743), - [anon_sym_template] = ACTIONS(2743), - [anon_sym_operator] = ACTIONS(2743), - [anon_sym_try] = ACTIONS(2743), - [anon_sym_delete] = ACTIONS(2743), - [anon_sym_throw] = ACTIONS(2743), - [anon_sym_namespace] = ACTIONS(2743), - [anon_sym_static_assert] = ACTIONS(2743), - [anon_sym_concept] = ACTIONS(2743), - [anon_sym_co_return] = ACTIONS(2743), - [anon_sym_co_yield] = ACTIONS(2743), - [anon_sym_R_DQUOTE] = ACTIONS(2745), - [anon_sym_LR_DQUOTE] = ACTIONS(2745), - [anon_sym_uR_DQUOTE] = ACTIONS(2745), - [anon_sym_UR_DQUOTE] = ACTIONS(2745), - [anon_sym_u8R_DQUOTE] = ACTIONS(2745), - [anon_sym_co_await] = ACTIONS(2743), - [anon_sym_new] = ACTIONS(2743), - [anon_sym_requires] = ACTIONS(2743), - [sym_this] = ACTIONS(2743), - }, - [401] = { - [ts_builtin_sym_end] = ACTIONS(2765), - [sym_identifier] = ACTIONS(2763), - [aux_sym_preproc_include_token1] = ACTIONS(2763), - [aux_sym_preproc_def_token1] = ACTIONS(2763), - [aux_sym_preproc_if_token1] = ACTIONS(2763), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2763), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2763), - [sym_preproc_directive] = ACTIONS(2763), - [anon_sym_LPAREN2] = ACTIONS(2765), - [anon_sym_BANG] = ACTIONS(2765), - [anon_sym_TILDE] = ACTIONS(2765), - [anon_sym_DASH] = ACTIONS(2763), - [anon_sym_PLUS] = ACTIONS(2763), - [anon_sym_STAR] = ACTIONS(2765), - [anon_sym_AMP_AMP] = ACTIONS(2765), - [anon_sym_AMP] = ACTIONS(2763), - [anon_sym_SEMI] = ACTIONS(2765), - [anon_sym___extension__] = ACTIONS(2763), - [anon_sym_typedef] = ACTIONS(2763), - [anon_sym_virtual] = ACTIONS(2763), - [anon_sym_extern] = ACTIONS(2763), - [anon_sym___attribute__] = ACTIONS(2763), - [anon_sym___attribute] = ACTIONS(2763), - [anon_sym_using] = ACTIONS(2763), - [anon_sym_COLON_COLON] = ACTIONS(2765), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2765), - [anon_sym___declspec] = ACTIONS(2763), - [anon_sym___based] = ACTIONS(2763), - [anon_sym___cdecl] = ACTIONS(2763), - [anon_sym___clrcall] = ACTIONS(2763), - [anon_sym___stdcall] = ACTIONS(2763), - [anon_sym___fastcall] = ACTIONS(2763), - [anon_sym___thiscall] = ACTIONS(2763), - [anon_sym___vectorcall] = ACTIONS(2763), - [anon_sym_LBRACE] = ACTIONS(2765), - [anon_sym_signed] = ACTIONS(2763), - [anon_sym_unsigned] = ACTIONS(2763), - [anon_sym_long] = ACTIONS(2763), - [anon_sym_short] = ACTIONS(2763), - [anon_sym_LBRACK] = ACTIONS(2763), - [anon_sym_static] = ACTIONS(2763), - [anon_sym_register] = ACTIONS(2763), - [anon_sym_inline] = ACTIONS(2763), - [anon_sym___inline] = ACTIONS(2763), - [anon_sym___inline__] = ACTIONS(2763), - [anon_sym___forceinline] = ACTIONS(2763), - [anon_sym_thread_local] = ACTIONS(2763), - [anon_sym___thread] = ACTIONS(2763), - [anon_sym_const] = ACTIONS(2763), - [anon_sym_constexpr] = ACTIONS(2763), - [anon_sym_volatile] = ACTIONS(2763), - [anon_sym_restrict] = ACTIONS(2763), - [anon_sym___restrict__] = ACTIONS(2763), - [anon_sym__Atomic] = ACTIONS(2763), - [anon_sym__Noreturn] = ACTIONS(2763), - [anon_sym_noreturn] = ACTIONS(2763), - [anon_sym__Nonnull] = ACTIONS(2763), - [anon_sym_mutable] = ACTIONS(2763), - [anon_sym_constinit] = ACTIONS(2763), - [anon_sym_consteval] = ACTIONS(2763), - [anon_sym_alignas] = ACTIONS(2763), - [anon_sym__Alignas] = ACTIONS(2763), - [sym_primitive_type] = ACTIONS(2763), - [anon_sym_enum] = ACTIONS(2763), - [anon_sym_class] = ACTIONS(2763), - [anon_sym_struct] = ACTIONS(2763), - [anon_sym_union] = ACTIONS(2763), - [anon_sym_if] = ACTIONS(2763), - [anon_sym_else] = ACTIONS(2763), - [anon_sym_switch] = ACTIONS(2763), - [anon_sym_case] = ACTIONS(2763), - [anon_sym_default] = ACTIONS(2763), - [anon_sym_while] = ACTIONS(2763), - [anon_sym_do] = ACTIONS(2763), - [anon_sym_for] = ACTIONS(2763), - [anon_sym_return] = ACTIONS(2763), - [anon_sym_break] = ACTIONS(2763), - [anon_sym_continue] = ACTIONS(2763), - [anon_sym_goto] = ACTIONS(2763), - [anon_sym___try] = ACTIONS(2763), - [anon_sym___leave] = ACTIONS(2763), - [anon_sym_not] = ACTIONS(2763), - [anon_sym_compl] = ACTIONS(2763), - [anon_sym_DASH_DASH] = ACTIONS(2765), - [anon_sym_PLUS_PLUS] = ACTIONS(2765), - [anon_sym_sizeof] = ACTIONS(2763), - [anon_sym___alignof__] = ACTIONS(2763), - [anon_sym___alignof] = ACTIONS(2763), - [anon_sym__alignof] = ACTIONS(2763), - [anon_sym_alignof] = ACTIONS(2763), - [anon_sym__Alignof] = ACTIONS(2763), - [anon_sym_offsetof] = ACTIONS(2763), - [anon_sym__Generic] = ACTIONS(2763), - [anon_sym_asm] = ACTIONS(2763), - [anon_sym___asm__] = ACTIONS(2763), - [anon_sym___asm] = ACTIONS(2763), - [sym_number_literal] = ACTIONS(2765), - [anon_sym_L_SQUOTE] = ACTIONS(2765), - [anon_sym_u_SQUOTE] = ACTIONS(2765), - [anon_sym_U_SQUOTE] = ACTIONS(2765), - [anon_sym_u8_SQUOTE] = ACTIONS(2765), - [anon_sym_SQUOTE] = ACTIONS(2765), - [anon_sym_L_DQUOTE] = ACTIONS(2765), - [anon_sym_u_DQUOTE] = ACTIONS(2765), - [anon_sym_U_DQUOTE] = ACTIONS(2765), - [anon_sym_u8_DQUOTE] = ACTIONS(2765), - [anon_sym_DQUOTE] = ACTIONS(2765), - [sym_true] = ACTIONS(2763), - [sym_false] = ACTIONS(2763), - [anon_sym_NULL] = ACTIONS(2763), - [anon_sym_nullptr] = ACTIONS(2763), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2763), - [anon_sym_decltype] = ACTIONS(2763), - [anon_sym_explicit] = ACTIONS(2763), - [anon_sym_typename] = ACTIONS(2763), - [anon_sym_export] = ACTIONS(2763), - [anon_sym_module] = ACTIONS(2763), - [anon_sym_import] = ACTIONS(2763), - [anon_sym_template] = ACTIONS(2763), - [anon_sym_operator] = ACTIONS(2763), - [anon_sym_try] = ACTIONS(2763), - [anon_sym_delete] = ACTIONS(2763), - [anon_sym_throw] = ACTIONS(2763), - [anon_sym_namespace] = ACTIONS(2763), - [anon_sym_static_assert] = ACTIONS(2763), - [anon_sym_concept] = ACTIONS(2763), - [anon_sym_co_return] = ACTIONS(2763), - [anon_sym_co_yield] = ACTIONS(2763), - [anon_sym_R_DQUOTE] = ACTIONS(2765), - [anon_sym_LR_DQUOTE] = ACTIONS(2765), - [anon_sym_uR_DQUOTE] = ACTIONS(2765), - [anon_sym_UR_DQUOTE] = ACTIONS(2765), - [anon_sym_u8R_DQUOTE] = ACTIONS(2765), - [anon_sym_co_await] = ACTIONS(2763), - [anon_sym_new] = ACTIONS(2763), - [anon_sym_requires] = ACTIONS(2763), - [sym_this] = ACTIONS(2763), - }, - [402] = { - [sym_type_qualifier] = STATE(3910), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(4737), - [sym_sized_type_specifier] = STATE(2668), - [sym_enum_specifier] = STATE(2668), - [sym_struct_specifier] = STATE(2668), - [sym_union_specifier] = STATE(2668), - [sym_expression] = STATE(4344), - [sym__string] = STATE(4738), - [sym_conditional_expression] = STATE(4829), - [sym_assignment_expression] = STATE(4829), - [sym_pointer_expression] = STATE(3602), - [sym_unary_expression] = STATE(4829), - [sym_binary_expression] = STATE(4829), - [sym_update_expression] = STATE(4829), - [sym_cast_expression] = STATE(4829), - [sym_type_descriptor] = STATE(7056), - [sym_sizeof_expression] = STATE(4829), - [sym_alignof_expression] = STATE(4829), - [sym_offsetof_expression] = STATE(4829), - [sym_generic_expression] = STATE(4829), - [sym_subscript_expression] = STATE(3602), - [sym_call_expression] = STATE(3602), - [sym_gnu_asm_expression] = STATE(4829), - [sym_extension_expression] = STATE(4829), - [sym_field_expression] = STATE(3602), - [sym_compound_literal_expression] = STATE(4829), - [sym_parenthesized_expression] = STATE(3602), - [sym_char_literal] = STATE(4738), - [sym_concatenated_string] = STATE(4738), - [sym_string_literal] = STATE(3759), - [sym_null] = STATE(4829), - [sym_placeholder_type_specifier] = STATE(2668), - [sym_decltype_auto] = STATE(2708), - [sym_decltype] = STATE(2598), - [sym_class_specifier] = STATE(2668), - [sym__class_name] = STATE(7804), - [sym_dependent_type] = STATE(2668), - [sym_template_type] = STATE(5285), - [sym_template_function] = STATE(4829), - [sym_raw_string_literal] = STATE(3759), - [sym_co_await_expression] = STATE(4829), - [sym_new_expression] = STATE(4829), - [sym_delete_expression] = STATE(4829), - [sym_requires_clause] = STATE(4829), - [sym_requires_expression] = STATE(4829), - [sym_lambda_expression] = STATE(4829), - [sym_lambda_capture_specifier] = STATE(5401), - [sym_fold_expression] = STATE(4829), - [sym_parameter_pack_expansion] = STATE(4829), - [sym_type_parameter_pack_expansion] = STATE(7309), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5750), - [sym_qualified_identifier] = STATE(3602), - [sym_qualified_type_identifier] = STATE(5327), - [sym_user_defined_literal] = STATE(3602), - [aux_sym__type_definition_type_repeat1] = STATE(3910), - [aux_sym_sized_type_specifier_repeat1] = STATE(4239), - [sym_identifier] = ACTIONS(3116), - [anon_sym_LPAREN2] = ACTIONS(3118), - [anon_sym_BANG] = ACTIONS(3120), - [anon_sym_TILDE] = ACTIONS(3120), - [anon_sym_DASH] = ACTIONS(3122), - [anon_sym_PLUS] = ACTIONS(3122), - [anon_sym_STAR] = ACTIONS(3124), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym___extension__] = ACTIONS(3126), - [anon_sym_COLON_COLON] = ACTIONS(3128), - [anon_sym_signed] = ACTIONS(3130), - [anon_sym_unsigned] = ACTIONS(3130), - [anon_sym_long] = ACTIONS(3130), - [anon_sym_short] = ACTIONS(3130), + [407] = { + [sym_type_qualifier] = STATE(3954), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(4767), + [sym_sized_type_specifier] = STATE(2747), + [sym_enum_specifier] = STATE(2747), + [sym_struct_specifier] = STATE(2747), + [sym_union_specifier] = STATE(2747), + [sym_expression] = STATE(4394), + [sym__string] = STATE(4825), + [sym_conditional_expression] = STATE(4856), + [sym_assignment_expression] = STATE(4856), + [sym_pointer_expression] = STATE(3701), + [sym_unary_expression] = STATE(4856), + [sym_binary_expression] = STATE(4856), + [sym_update_expression] = STATE(4856), + [sym_cast_expression] = STATE(4856), + [sym_type_descriptor] = STATE(7123), + [sym_sizeof_expression] = STATE(4856), + [sym_alignof_expression] = STATE(4856), + [sym_offsetof_expression] = STATE(4856), + [sym_generic_expression] = STATE(4856), + [sym_subscript_expression] = STATE(3701), + [sym_call_expression] = STATE(3701), + [sym_gnu_asm_expression] = STATE(4856), + [sym_extension_expression] = STATE(4856), + [sym_field_expression] = STATE(3701), + [sym_compound_literal_expression] = STATE(4856), + [sym_parenthesized_expression] = STATE(3701), + [sym_char_literal] = STATE(4825), + [sym_concatenated_string] = STATE(4825), + [sym_string_literal] = STATE(3812), + [sym_null] = STATE(4856), + [sym_placeholder_type_specifier] = STATE(2747), + [sym_decltype_auto] = STATE(2733), + [sym_decltype] = STATE(2621), + [sym_class_specifier] = STATE(2747), + [sym__class_name] = STATE(7816), + [sym_dependent_type] = STATE(2747), + [sym_template_type] = STATE(5365), + [sym_template_function] = STATE(4856), + [sym_raw_string_literal] = STATE(3812), + [sym_co_await_expression] = STATE(4856), + [sym_new_expression] = STATE(4856), + [sym_delete_expression] = STATE(4856), + [sym_requires_clause] = STATE(4856), + [sym_requires_expression] = STATE(4856), + [sym_lambda_expression] = STATE(4856), + [sym_lambda_capture_specifier] = STATE(5489), + [sym_fold_expression] = STATE(4856), + [sym_parameter_pack_expansion] = STATE(4856), + [sym_type_parameter_pack_expansion] = STATE(7296), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5742), + [sym_qualified_identifier] = STATE(3701), + [sym_qualified_type_identifier] = STATE(5382), + [sym_user_defined_literal] = STATE(3701), + [aux_sym__type_definition_type_repeat1] = STATE(3954), + [aux_sym_sized_type_specifier_repeat1] = STATE(4313), + [sym_identifier] = ACTIONS(3128), + [anon_sym_LPAREN2] = ACTIONS(3130), + [anon_sym_BANG] = ACTIONS(3132), + [anon_sym_TILDE] = ACTIONS(3132), + [anon_sym_DASH] = ACTIONS(3134), + [anon_sym_PLUS] = ACTIONS(3134), + [anon_sym_STAR] = ACTIONS(3136), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym___extension__] = ACTIONS(3138), + [anon_sym_COLON_COLON] = ACTIONS(3140), + [anon_sym_signed] = ACTIONS(3142), + [anon_sym_unsigned] = ACTIONS(3142), + [anon_sym_long] = ACTIONS(3142), + [anon_sym_short] = ACTIONS(3142), [anon_sym_LBRACK] = ACTIONS(2020), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), @@ -101434,479 +102421,339 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(3132), - [anon_sym_enum] = ACTIONS(3134), - [anon_sym_class] = ACTIONS(3136), - [anon_sym_struct] = ACTIONS(3138), - [anon_sym_union] = ACTIONS(3140), - [anon_sym_not] = ACTIONS(3122), - [anon_sym_compl] = ACTIONS(3122), - [anon_sym_DASH_DASH] = ACTIONS(3142), - [anon_sym_PLUS_PLUS] = ACTIONS(3142), - [anon_sym_sizeof] = ACTIONS(3144), - [anon_sym___alignof__] = ACTIONS(3146), - [anon_sym___alignof] = ACTIONS(3146), - [anon_sym__alignof] = ACTIONS(3146), - [anon_sym_alignof] = ACTIONS(3146), - [anon_sym__Alignof] = ACTIONS(3146), - [anon_sym_offsetof] = ACTIONS(3148), - [anon_sym__Generic] = ACTIONS(3150), - [anon_sym_asm] = ACTIONS(3152), - [anon_sym___asm__] = ACTIONS(3152), - [anon_sym___asm] = ACTIONS(3152), - [sym_number_literal] = ACTIONS(3154), - [anon_sym_L_SQUOTE] = ACTIONS(3156), - [anon_sym_u_SQUOTE] = ACTIONS(3156), - [anon_sym_U_SQUOTE] = ACTIONS(3156), - [anon_sym_u8_SQUOTE] = ACTIONS(3156), - [anon_sym_SQUOTE] = ACTIONS(3156), - [anon_sym_L_DQUOTE] = ACTIONS(3158), - [anon_sym_u_DQUOTE] = ACTIONS(3158), - [anon_sym_U_DQUOTE] = ACTIONS(3158), - [anon_sym_u8_DQUOTE] = ACTIONS(3158), - [anon_sym_DQUOTE] = ACTIONS(3158), - [sym_true] = ACTIONS(3160), - [sym_false] = ACTIONS(3160), - [anon_sym_NULL] = ACTIONS(3162), - [anon_sym_nullptr] = ACTIONS(3162), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3164), - [anon_sym_decltype] = ACTIONS(3166), - [anon_sym_typename] = ACTIONS(3168), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_GT2] = ACTIONS(3234), - [anon_sym_delete] = ACTIONS(3172), - [anon_sym_R_DQUOTE] = ACTIONS(3174), - [anon_sym_LR_DQUOTE] = ACTIONS(3174), - [anon_sym_uR_DQUOTE] = ACTIONS(3174), - [anon_sym_UR_DQUOTE] = ACTIONS(3174), - [anon_sym_u8R_DQUOTE] = ACTIONS(3174), - [anon_sym_co_await] = ACTIONS(3176), - [anon_sym_new] = ACTIONS(3178), - [anon_sym_requires] = ACTIONS(3180), - [sym_this] = ACTIONS(3160), - }, - [403] = { - [ts_builtin_sym_end] = ACTIONS(2675), - [sym_identifier] = ACTIONS(2673), - [aux_sym_preproc_include_token1] = ACTIONS(2673), - [aux_sym_preproc_def_token1] = ACTIONS(2673), - [aux_sym_preproc_if_token1] = ACTIONS(2673), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2673), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2673), - [sym_preproc_directive] = ACTIONS(2673), - [anon_sym_LPAREN2] = ACTIONS(2675), - [anon_sym_BANG] = ACTIONS(2675), - [anon_sym_TILDE] = ACTIONS(2675), - [anon_sym_DASH] = ACTIONS(2673), - [anon_sym_PLUS] = ACTIONS(2673), - [anon_sym_STAR] = ACTIONS(2675), - [anon_sym_AMP_AMP] = ACTIONS(2675), - [anon_sym_AMP] = ACTIONS(2673), - [anon_sym_SEMI] = ACTIONS(2675), - [anon_sym___extension__] = ACTIONS(2673), - [anon_sym_typedef] = ACTIONS(2673), - [anon_sym_virtual] = ACTIONS(2673), - [anon_sym_extern] = ACTIONS(2673), - [anon_sym___attribute__] = ACTIONS(2673), - [anon_sym___attribute] = ACTIONS(2673), - [anon_sym_using] = ACTIONS(2673), - [anon_sym_COLON_COLON] = ACTIONS(2675), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2675), - [anon_sym___declspec] = ACTIONS(2673), - [anon_sym___based] = ACTIONS(2673), - [anon_sym___cdecl] = ACTIONS(2673), - [anon_sym___clrcall] = ACTIONS(2673), - [anon_sym___stdcall] = ACTIONS(2673), - [anon_sym___fastcall] = ACTIONS(2673), - [anon_sym___thiscall] = ACTIONS(2673), - [anon_sym___vectorcall] = ACTIONS(2673), - [anon_sym_LBRACE] = ACTIONS(2675), - [anon_sym_signed] = ACTIONS(2673), - [anon_sym_unsigned] = ACTIONS(2673), - [anon_sym_long] = ACTIONS(2673), - [anon_sym_short] = ACTIONS(2673), - [anon_sym_LBRACK] = ACTIONS(2673), - [anon_sym_static] = ACTIONS(2673), - [anon_sym_register] = ACTIONS(2673), - [anon_sym_inline] = ACTIONS(2673), - [anon_sym___inline] = ACTIONS(2673), - [anon_sym___inline__] = ACTIONS(2673), - [anon_sym___forceinline] = ACTIONS(2673), - [anon_sym_thread_local] = ACTIONS(2673), - [anon_sym___thread] = ACTIONS(2673), - [anon_sym_const] = ACTIONS(2673), - [anon_sym_constexpr] = ACTIONS(2673), - [anon_sym_volatile] = ACTIONS(2673), - [anon_sym_restrict] = ACTIONS(2673), - [anon_sym___restrict__] = ACTIONS(2673), - [anon_sym__Atomic] = ACTIONS(2673), - [anon_sym__Noreturn] = ACTIONS(2673), - [anon_sym_noreturn] = ACTIONS(2673), - [anon_sym__Nonnull] = ACTIONS(2673), - [anon_sym_mutable] = ACTIONS(2673), - [anon_sym_constinit] = ACTIONS(2673), - [anon_sym_consteval] = ACTIONS(2673), - [anon_sym_alignas] = ACTIONS(2673), - [anon_sym__Alignas] = ACTIONS(2673), - [sym_primitive_type] = ACTIONS(2673), - [anon_sym_enum] = ACTIONS(2673), - [anon_sym_class] = ACTIONS(2673), - [anon_sym_struct] = ACTIONS(2673), - [anon_sym_union] = ACTIONS(2673), - [anon_sym_if] = ACTIONS(2673), - [anon_sym_else] = ACTIONS(2673), - [anon_sym_switch] = ACTIONS(2673), - [anon_sym_case] = ACTIONS(2673), - [anon_sym_default] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2673), - [anon_sym_do] = ACTIONS(2673), - [anon_sym_for] = ACTIONS(2673), - [anon_sym_return] = ACTIONS(2673), - [anon_sym_break] = ACTIONS(2673), - [anon_sym_continue] = ACTIONS(2673), - [anon_sym_goto] = ACTIONS(2673), - [anon_sym___try] = ACTIONS(2673), - [anon_sym___leave] = ACTIONS(2673), - [anon_sym_not] = ACTIONS(2673), - [anon_sym_compl] = ACTIONS(2673), - [anon_sym_DASH_DASH] = ACTIONS(2675), - [anon_sym_PLUS_PLUS] = ACTIONS(2675), - [anon_sym_sizeof] = ACTIONS(2673), - [anon_sym___alignof__] = ACTIONS(2673), - [anon_sym___alignof] = ACTIONS(2673), - [anon_sym__alignof] = ACTIONS(2673), - [anon_sym_alignof] = ACTIONS(2673), - [anon_sym__Alignof] = ACTIONS(2673), - [anon_sym_offsetof] = ACTIONS(2673), - [anon_sym__Generic] = ACTIONS(2673), - [anon_sym_asm] = ACTIONS(2673), - [anon_sym___asm__] = ACTIONS(2673), - [anon_sym___asm] = ACTIONS(2673), - [sym_number_literal] = ACTIONS(2675), - [anon_sym_L_SQUOTE] = ACTIONS(2675), - [anon_sym_u_SQUOTE] = ACTIONS(2675), - [anon_sym_U_SQUOTE] = ACTIONS(2675), - [anon_sym_u8_SQUOTE] = ACTIONS(2675), - [anon_sym_SQUOTE] = ACTIONS(2675), - [anon_sym_L_DQUOTE] = ACTIONS(2675), - [anon_sym_u_DQUOTE] = ACTIONS(2675), - [anon_sym_U_DQUOTE] = ACTIONS(2675), - [anon_sym_u8_DQUOTE] = ACTIONS(2675), - [anon_sym_DQUOTE] = ACTIONS(2675), - [sym_true] = ACTIONS(2673), - [sym_false] = ACTIONS(2673), - [anon_sym_NULL] = ACTIONS(2673), - [anon_sym_nullptr] = ACTIONS(2673), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2673), - [anon_sym_decltype] = ACTIONS(2673), - [anon_sym_explicit] = ACTIONS(2673), - [anon_sym_typename] = ACTIONS(2673), - [anon_sym_export] = ACTIONS(2673), - [anon_sym_module] = ACTIONS(2673), - [anon_sym_import] = ACTIONS(2673), - [anon_sym_template] = ACTIONS(2673), - [anon_sym_operator] = ACTIONS(2673), - [anon_sym_try] = ACTIONS(2673), - [anon_sym_delete] = ACTIONS(2673), - [anon_sym_throw] = ACTIONS(2673), - [anon_sym_namespace] = ACTIONS(2673), - [anon_sym_static_assert] = ACTIONS(2673), - [anon_sym_concept] = ACTIONS(2673), - [anon_sym_co_return] = ACTIONS(2673), - [anon_sym_co_yield] = ACTIONS(2673), - [anon_sym_R_DQUOTE] = ACTIONS(2675), - [anon_sym_LR_DQUOTE] = ACTIONS(2675), - [anon_sym_uR_DQUOTE] = ACTIONS(2675), - [anon_sym_UR_DQUOTE] = ACTIONS(2675), - [anon_sym_u8R_DQUOTE] = ACTIONS(2675), - [anon_sym_co_await] = ACTIONS(2673), - [anon_sym_new] = ACTIONS(2673), - [anon_sym_requires] = ACTIONS(2673), - [sym_this] = ACTIONS(2673), + [sym_primitive_type] = ACTIONS(3144), + [anon_sym_enum] = ACTIONS(3146), + [anon_sym_class] = ACTIONS(3148), + [anon_sym_struct] = ACTIONS(3150), + [anon_sym_union] = ACTIONS(3152), + [anon_sym_not] = ACTIONS(3134), + [anon_sym_compl] = ACTIONS(3134), + [anon_sym_DASH_DASH] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_sizeof] = ACTIONS(3156), + [anon_sym___alignof__] = ACTIONS(3158), + [anon_sym___alignof] = ACTIONS(3158), + [anon_sym__alignof] = ACTIONS(3158), + [anon_sym_alignof] = ACTIONS(3158), + [anon_sym__Alignof] = ACTIONS(3158), + [anon_sym_offsetof] = ACTIONS(3160), + [anon_sym__Generic] = ACTIONS(3162), + [anon_sym_asm] = ACTIONS(3164), + [anon_sym___asm__] = ACTIONS(3164), + [anon_sym___asm] = ACTIONS(3164), + [sym_number_literal] = ACTIONS(3166), + [anon_sym_L_SQUOTE] = ACTIONS(3168), + [anon_sym_u_SQUOTE] = ACTIONS(3168), + [anon_sym_U_SQUOTE] = ACTIONS(3168), + [anon_sym_u8_SQUOTE] = ACTIONS(3168), + [anon_sym_SQUOTE] = ACTIONS(3168), + [anon_sym_L_DQUOTE] = ACTIONS(3170), + [anon_sym_u_DQUOTE] = ACTIONS(3170), + [anon_sym_U_DQUOTE] = ACTIONS(3170), + [anon_sym_u8_DQUOTE] = ACTIONS(3170), + [anon_sym_DQUOTE] = ACTIONS(3170), + [sym_true] = ACTIONS(3172), + [sym_false] = ACTIONS(3172), + [anon_sym_NULL] = ACTIONS(3174), + [anon_sym_nullptr] = ACTIONS(3174), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3176), + [anon_sym_decltype] = ACTIONS(3178), + [anon_sym_typename] = ACTIONS(3180), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_GT2] = ACTIONS(3240), + [anon_sym_delete] = ACTIONS(3184), + [anon_sym_R_DQUOTE] = ACTIONS(3186), + [anon_sym_LR_DQUOTE] = ACTIONS(3186), + [anon_sym_uR_DQUOTE] = ACTIONS(3186), + [anon_sym_UR_DQUOTE] = ACTIONS(3186), + [anon_sym_u8R_DQUOTE] = ACTIONS(3186), + [anon_sym_co_await] = ACTIONS(3188), + [anon_sym_new] = ACTIONS(3190), + [anon_sym_requires] = ACTIONS(3192), + [sym_this] = ACTIONS(3172), }, - [404] = { - [ts_builtin_sym_end] = ACTIONS(2733), - [sym_identifier] = ACTIONS(2731), - [aux_sym_preproc_include_token1] = ACTIONS(2731), - [aux_sym_preproc_def_token1] = ACTIONS(2731), - [aux_sym_preproc_if_token1] = ACTIONS(2731), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2731), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2731), - [sym_preproc_directive] = ACTIONS(2731), - [anon_sym_LPAREN2] = ACTIONS(2733), - [anon_sym_BANG] = ACTIONS(2733), - [anon_sym_TILDE] = ACTIONS(2733), - [anon_sym_DASH] = ACTIONS(2731), - [anon_sym_PLUS] = ACTIONS(2731), - [anon_sym_STAR] = ACTIONS(2733), - [anon_sym_AMP_AMP] = ACTIONS(2733), - [anon_sym_AMP] = ACTIONS(2731), - [anon_sym_SEMI] = ACTIONS(2733), - [anon_sym___extension__] = ACTIONS(2731), - [anon_sym_typedef] = ACTIONS(2731), - [anon_sym_virtual] = ACTIONS(2731), - [anon_sym_extern] = ACTIONS(2731), - [anon_sym___attribute__] = ACTIONS(2731), - [anon_sym___attribute] = ACTIONS(2731), - [anon_sym_using] = ACTIONS(2731), - [anon_sym_COLON_COLON] = ACTIONS(2733), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2733), - [anon_sym___declspec] = ACTIONS(2731), - [anon_sym___based] = ACTIONS(2731), - [anon_sym___cdecl] = ACTIONS(2731), - [anon_sym___clrcall] = ACTIONS(2731), - [anon_sym___stdcall] = ACTIONS(2731), - [anon_sym___fastcall] = ACTIONS(2731), - [anon_sym___thiscall] = ACTIONS(2731), - [anon_sym___vectorcall] = ACTIONS(2731), - [anon_sym_LBRACE] = ACTIONS(2733), - [anon_sym_signed] = ACTIONS(2731), - [anon_sym_unsigned] = ACTIONS(2731), - [anon_sym_long] = ACTIONS(2731), - [anon_sym_short] = ACTIONS(2731), - [anon_sym_LBRACK] = ACTIONS(2731), - [anon_sym_static] = ACTIONS(2731), - [anon_sym_register] = ACTIONS(2731), - [anon_sym_inline] = ACTIONS(2731), - [anon_sym___inline] = ACTIONS(2731), - [anon_sym___inline__] = ACTIONS(2731), - [anon_sym___forceinline] = ACTIONS(2731), - [anon_sym_thread_local] = ACTIONS(2731), - [anon_sym___thread] = ACTIONS(2731), - [anon_sym_const] = ACTIONS(2731), - [anon_sym_constexpr] = ACTIONS(2731), - [anon_sym_volatile] = ACTIONS(2731), - [anon_sym_restrict] = ACTIONS(2731), - [anon_sym___restrict__] = ACTIONS(2731), - [anon_sym__Atomic] = ACTIONS(2731), - [anon_sym__Noreturn] = ACTIONS(2731), - [anon_sym_noreturn] = ACTIONS(2731), - [anon_sym__Nonnull] = ACTIONS(2731), - [anon_sym_mutable] = ACTIONS(2731), - [anon_sym_constinit] = ACTIONS(2731), - [anon_sym_consteval] = ACTIONS(2731), - [anon_sym_alignas] = ACTIONS(2731), - [anon_sym__Alignas] = ACTIONS(2731), - [sym_primitive_type] = ACTIONS(2731), - [anon_sym_enum] = ACTIONS(2731), - [anon_sym_class] = ACTIONS(2731), - [anon_sym_struct] = ACTIONS(2731), - [anon_sym_union] = ACTIONS(2731), - [anon_sym_if] = ACTIONS(2731), - [anon_sym_else] = ACTIONS(2731), - [anon_sym_switch] = ACTIONS(2731), - [anon_sym_case] = ACTIONS(2731), - [anon_sym_default] = ACTIONS(2731), - [anon_sym_while] = ACTIONS(2731), - [anon_sym_do] = ACTIONS(2731), - [anon_sym_for] = ACTIONS(2731), - [anon_sym_return] = ACTIONS(2731), - [anon_sym_break] = ACTIONS(2731), - [anon_sym_continue] = ACTIONS(2731), - [anon_sym_goto] = ACTIONS(2731), - [anon_sym___try] = ACTIONS(2731), - [anon_sym___leave] = ACTIONS(2731), - [anon_sym_not] = ACTIONS(2731), - [anon_sym_compl] = ACTIONS(2731), - [anon_sym_DASH_DASH] = ACTIONS(2733), - [anon_sym_PLUS_PLUS] = ACTIONS(2733), - [anon_sym_sizeof] = ACTIONS(2731), - [anon_sym___alignof__] = ACTIONS(2731), - [anon_sym___alignof] = ACTIONS(2731), - [anon_sym__alignof] = ACTIONS(2731), - [anon_sym_alignof] = ACTIONS(2731), - [anon_sym__Alignof] = ACTIONS(2731), - [anon_sym_offsetof] = ACTIONS(2731), - [anon_sym__Generic] = ACTIONS(2731), - [anon_sym_asm] = ACTIONS(2731), - [anon_sym___asm__] = ACTIONS(2731), - [anon_sym___asm] = ACTIONS(2731), - [sym_number_literal] = ACTIONS(2733), - [anon_sym_L_SQUOTE] = ACTIONS(2733), - [anon_sym_u_SQUOTE] = ACTIONS(2733), - [anon_sym_U_SQUOTE] = ACTIONS(2733), - [anon_sym_u8_SQUOTE] = ACTIONS(2733), - [anon_sym_SQUOTE] = ACTIONS(2733), - [anon_sym_L_DQUOTE] = ACTIONS(2733), - [anon_sym_u_DQUOTE] = ACTIONS(2733), - [anon_sym_U_DQUOTE] = ACTIONS(2733), - [anon_sym_u8_DQUOTE] = ACTIONS(2733), - [anon_sym_DQUOTE] = ACTIONS(2733), - [sym_true] = ACTIONS(2731), - [sym_false] = ACTIONS(2731), - [anon_sym_NULL] = ACTIONS(2731), - [anon_sym_nullptr] = ACTIONS(2731), + [408] = { + [ts_builtin_sym_end] = ACTIONS(2737), + [sym_identifier] = ACTIONS(2735), + [aux_sym_preproc_include_token1] = ACTIONS(2735), + [aux_sym_preproc_def_token1] = ACTIONS(2735), + [aux_sym_preproc_if_token1] = ACTIONS(2735), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2735), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2735), + [sym_preproc_directive] = ACTIONS(2735), + [anon_sym_LPAREN2] = ACTIONS(2737), + [anon_sym_BANG] = ACTIONS(2737), + [anon_sym_TILDE] = ACTIONS(2737), + [anon_sym_DASH] = ACTIONS(2735), + [anon_sym_PLUS] = ACTIONS(2735), + [anon_sym_STAR] = ACTIONS(2737), + [anon_sym_AMP_AMP] = ACTIONS(2737), + [anon_sym_AMP] = ACTIONS(2735), + [anon_sym_SEMI] = ACTIONS(2737), + [anon_sym___extension__] = ACTIONS(2735), + [anon_sym_typedef] = ACTIONS(2735), + [anon_sym_virtual] = ACTIONS(2735), + [anon_sym_extern] = ACTIONS(2735), + [anon_sym___attribute__] = ACTIONS(2735), + [anon_sym___attribute] = ACTIONS(2735), + [anon_sym_using] = ACTIONS(2735), + [anon_sym_COLON_COLON] = ACTIONS(2737), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2737), + [anon_sym___declspec] = ACTIONS(2735), + [anon_sym___based] = ACTIONS(2735), + [anon_sym___cdecl] = ACTIONS(2735), + [anon_sym___clrcall] = ACTIONS(2735), + [anon_sym___stdcall] = ACTIONS(2735), + [anon_sym___fastcall] = ACTIONS(2735), + [anon_sym___thiscall] = ACTIONS(2735), + [anon_sym___vectorcall] = ACTIONS(2735), + [anon_sym_LBRACE] = ACTIONS(2737), + [anon_sym_signed] = ACTIONS(2735), + [anon_sym_unsigned] = ACTIONS(2735), + [anon_sym_long] = ACTIONS(2735), + [anon_sym_short] = ACTIONS(2735), + [anon_sym_LBRACK] = ACTIONS(2735), + [anon_sym_static] = ACTIONS(2735), + [anon_sym_register] = ACTIONS(2735), + [anon_sym_inline] = ACTIONS(2735), + [anon_sym___inline] = ACTIONS(2735), + [anon_sym___inline__] = ACTIONS(2735), + [anon_sym___forceinline] = ACTIONS(2735), + [anon_sym_thread_local] = ACTIONS(2735), + [anon_sym___thread] = ACTIONS(2735), + [anon_sym_const] = ACTIONS(2735), + [anon_sym_constexpr] = ACTIONS(2735), + [anon_sym_volatile] = ACTIONS(2735), + [anon_sym_restrict] = ACTIONS(2735), + [anon_sym___restrict__] = ACTIONS(2735), + [anon_sym__Atomic] = ACTIONS(2735), + [anon_sym__Noreturn] = ACTIONS(2735), + [anon_sym_noreturn] = ACTIONS(2735), + [anon_sym__Nonnull] = ACTIONS(2735), + [anon_sym_mutable] = ACTIONS(2735), + [anon_sym_constinit] = ACTIONS(2735), + [anon_sym_consteval] = ACTIONS(2735), + [anon_sym_alignas] = ACTIONS(2735), + [anon_sym__Alignas] = ACTIONS(2735), + [sym_primitive_type] = ACTIONS(2735), + [anon_sym_enum] = ACTIONS(2735), + [anon_sym_class] = ACTIONS(2735), + [anon_sym_struct] = ACTIONS(2735), + [anon_sym_union] = ACTIONS(2735), + [anon_sym_if] = ACTIONS(2735), + [anon_sym_else] = ACTIONS(2735), + [anon_sym_switch] = ACTIONS(2735), + [anon_sym_case] = ACTIONS(2735), + [anon_sym_default] = ACTIONS(2735), + [anon_sym_while] = ACTIONS(2735), + [anon_sym_do] = ACTIONS(2735), + [anon_sym_for] = ACTIONS(2735), + [anon_sym_return] = ACTIONS(2735), + [anon_sym_break] = ACTIONS(2735), + [anon_sym_continue] = ACTIONS(2735), + [anon_sym_goto] = ACTIONS(2735), + [anon_sym___try] = ACTIONS(2735), + [anon_sym___leave] = ACTIONS(2735), + [anon_sym_not] = ACTIONS(2735), + [anon_sym_compl] = ACTIONS(2735), + [anon_sym_DASH_DASH] = ACTIONS(2737), + [anon_sym_PLUS_PLUS] = ACTIONS(2737), + [anon_sym_sizeof] = ACTIONS(2735), + [anon_sym___alignof__] = ACTIONS(2735), + [anon_sym___alignof] = ACTIONS(2735), + [anon_sym__alignof] = ACTIONS(2735), + [anon_sym_alignof] = ACTIONS(2735), + [anon_sym__Alignof] = ACTIONS(2735), + [anon_sym_offsetof] = ACTIONS(2735), + [anon_sym__Generic] = ACTIONS(2735), + [anon_sym_asm] = ACTIONS(2735), + [anon_sym___asm__] = ACTIONS(2735), + [anon_sym___asm] = ACTIONS(2735), + [sym_number_literal] = ACTIONS(2737), + [anon_sym_L_SQUOTE] = ACTIONS(2737), + [anon_sym_u_SQUOTE] = ACTIONS(2737), + [anon_sym_U_SQUOTE] = ACTIONS(2737), + [anon_sym_u8_SQUOTE] = ACTIONS(2737), + [anon_sym_SQUOTE] = ACTIONS(2737), + [anon_sym_L_DQUOTE] = ACTIONS(2737), + [anon_sym_u_DQUOTE] = ACTIONS(2737), + [anon_sym_U_DQUOTE] = ACTIONS(2737), + [anon_sym_u8_DQUOTE] = ACTIONS(2737), + [anon_sym_DQUOTE] = ACTIONS(2737), + [sym_true] = ACTIONS(2735), + [sym_false] = ACTIONS(2735), + [anon_sym_NULL] = ACTIONS(2735), + [anon_sym_nullptr] = ACTIONS(2735), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2731), - [anon_sym_decltype] = ACTIONS(2731), - [anon_sym_explicit] = ACTIONS(2731), - [anon_sym_typename] = ACTIONS(2731), - [anon_sym_export] = ACTIONS(2731), - [anon_sym_module] = ACTIONS(2731), - [anon_sym_import] = ACTIONS(2731), - [anon_sym_template] = ACTIONS(2731), - [anon_sym_operator] = ACTIONS(2731), - [anon_sym_try] = ACTIONS(2731), - [anon_sym_delete] = ACTIONS(2731), - [anon_sym_throw] = ACTIONS(2731), - [anon_sym_namespace] = ACTIONS(2731), - [anon_sym_static_assert] = ACTIONS(2731), - [anon_sym_concept] = ACTIONS(2731), - [anon_sym_co_return] = ACTIONS(2731), - [anon_sym_co_yield] = ACTIONS(2731), - [anon_sym_R_DQUOTE] = ACTIONS(2733), - [anon_sym_LR_DQUOTE] = ACTIONS(2733), - [anon_sym_uR_DQUOTE] = ACTIONS(2733), - [anon_sym_UR_DQUOTE] = ACTIONS(2733), - [anon_sym_u8R_DQUOTE] = ACTIONS(2733), - [anon_sym_co_await] = ACTIONS(2731), - [anon_sym_new] = ACTIONS(2731), - [anon_sym_requires] = ACTIONS(2731), - [sym_this] = ACTIONS(2731), + [sym_auto] = ACTIONS(2735), + [anon_sym_decltype] = ACTIONS(2735), + [anon_sym_explicit] = ACTIONS(2735), + [anon_sym_typename] = ACTIONS(2735), + [anon_sym_export] = ACTIONS(2735), + [anon_sym_module] = ACTIONS(2735), + [anon_sym_import] = ACTIONS(2735), + [anon_sym_template] = ACTIONS(2735), + [anon_sym_operator] = ACTIONS(2735), + [anon_sym_try] = ACTIONS(2735), + [anon_sym_delete] = ACTIONS(2735), + [anon_sym_throw] = ACTIONS(2735), + [anon_sym_namespace] = ACTIONS(2735), + [anon_sym_static_assert] = ACTIONS(2735), + [anon_sym_concept] = ACTIONS(2735), + [anon_sym_co_return] = ACTIONS(2735), + [anon_sym_co_yield] = ACTIONS(2735), + [anon_sym_R_DQUOTE] = ACTIONS(2737), + [anon_sym_LR_DQUOTE] = ACTIONS(2737), + [anon_sym_uR_DQUOTE] = ACTIONS(2737), + [anon_sym_UR_DQUOTE] = ACTIONS(2737), + [anon_sym_u8R_DQUOTE] = ACTIONS(2737), + [anon_sym_co_await] = ACTIONS(2735), + [anon_sym_new] = ACTIONS(2735), + [anon_sym_requires] = ACTIONS(2735), + [sym_this] = ACTIONS(2735), }, - [405] = { - [ts_builtin_sym_end] = ACTIONS(2717), - [sym_identifier] = ACTIONS(2715), - [aux_sym_preproc_include_token1] = ACTIONS(2715), - [aux_sym_preproc_def_token1] = ACTIONS(2715), - [aux_sym_preproc_if_token1] = ACTIONS(2715), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2715), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2715), - [sym_preproc_directive] = ACTIONS(2715), - [anon_sym_LPAREN2] = ACTIONS(2717), - [anon_sym_BANG] = ACTIONS(2717), - [anon_sym_TILDE] = ACTIONS(2717), - [anon_sym_DASH] = ACTIONS(2715), - [anon_sym_PLUS] = ACTIONS(2715), - [anon_sym_STAR] = ACTIONS(2717), - [anon_sym_AMP_AMP] = ACTIONS(2717), - [anon_sym_AMP] = ACTIONS(2715), - [anon_sym_SEMI] = ACTIONS(2717), - [anon_sym___extension__] = ACTIONS(2715), - [anon_sym_typedef] = ACTIONS(2715), - [anon_sym_virtual] = ACTIONS(2715), - [anon_sym_extern] = ACTIONS(2715), - [anon_sym___attribute__] = ACTIONS(2715), - [anon_sym___attribute] = ACTIONS(2715), - [anon_sym_using] = ACTIONS(2715), - [anon_sym_COLON_COLON] = ACTIONS(2717), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2717), - [anon_sym___declspec] = ACTIONS(2715), - [anon_sym___based] = ACTIONS(2715), - [anon_sym___cdecl] = ACTIONS(2715), - [anon_sym___clrcall] = ACTIONS(2715), - [anon_sym___stdcall] = ACTIONS(2715), - [anon_sym___fastcall] = ACTIONS(2715), - [anon_sym___thiscall] = ACTIONS(2715), - [anon_sym___vectorcall] = ACTIONS(2715), - [anon_sym_LBRACE] = ACTIONS(2717), - [anon_sym_signed] = ACTIONS(2715), - [anon_sym_unsigned] = ACTIONS(2715), - [anon_sym_long] = ACTIONS(2715), - [anon_sym_short] = ACTIONS(2715), - [anon_sym_LBRACK] = ACTIONS(2715), - [anon_sym_static] = ACTIONS(2715), - [anon_sym_register] = ACTIONS(2715), - [anon_sym_inline] = ACTIONS(2715), - [anon_sym___inline] = ACTIONS(2715), - [anon_sym___inline__] = ACTIONS(2715), - [anon_sym___forceinline] = ACTIONS(2715), - [anon_sym_thread_local] = ACTIONS(2715), - [anon_sym___thread] = ACTIONS(2715), - [anon_sym_const] = ACTIONS(2715), - [anon_sym_constexpr] = ACTIONS(2715), - [anon_sym_volatile] = ACTIONS(2715), - [anon_sym_restrict] = ACTIONS(2715), - [anon_sym___restrict__] = ACTIONS(2715), - [anon_sym__Atomic] = ACTIONS(2715), - [anon_sym__Noreturn] = ACTIONS(2715), - [anon_sym_noreturn] = ACTIONS(2715), - [anon_sym__Nonnull] = ACTIONS(2715), - [anon_sym_mutable] = ACTIONS(2715), - [anon_sym_constinit] = ACTIONS(2715), - [anon_sym_consteval] = ACTIONS(2715), - [anon_sym_alignas] = ACTIONS(2715), - [anon_sym__Alignas] = ACTIONS(2715), - [sym_primitive_type] = ACTIONS(2715), - [anon_sym_enum] = ACTIONS(2715), - [anon_sym_class] = ACTIONS(2715), - [anon_sym_struct] = ACTIONS(2715), - [anon_sym_union] = ACTIONS(2715), - [anon_sym_if] = ACTIONS(2715), - [anon_sym_else] = ACTIONS(2715), - [anon_sym_switch] = ACTIONS(2715), - [anon_sym_case] = ACTIONS(2715), - [anon_sym_default] = ACTIONS(2715), - [anon_sym_while] = ACTIONS(2715), - [anon_sym_do] = ACTIONS(2715), - [anon_sym_for] = ACTIONS(2715), - [anon_sym_return] = ACTIONS(2715), - [anon_sym_break] = ACTIONS(2715), - [anon_sym_continue] = ACTIONS(2715), - [anon_sym_goto] = ACTIONS(2715), - [anon_sym___try] = ACTIONS(2715), - [anon_sym___leave] = ACTIONS(2715), - [anon_sym_not] = ACTIONS(2715), - [anon_sym_compl] = ACTIONS(2715), - [anon_sym_DASH_DASH] = ACTIONS(2717), - [anon_sym_PLUS_PLUS] = ACTIONS(2717), - [anon_sym_sizeof] = ACTIONS(2715), - [anon_sym___alignof__] = ACTIONS(2715), - [anon_sym___alignof] = ACTIONS(2715), - [anon_sym__alignof] = ACTIONS(2715), - [anon_sym_alignof] = ACTIONS(2715), - [anon_sym__Alignof] = ACTIONS(2715), - [anon_sym_offsetof] = ACTIONS(2715), - [anon_sym__Generic] = ACTIONS(2715), - [anon_sym_asm] = ACTIONS(2715), - [anon_sym___asm__] = ACTIONS(2715), - [anon_sym___asm] = ACTIONS(2715), - [sym_number_literal] = ACTIONS(2717), - [anon_sym_L_SQUOTE] = ACTIONS(2717), - [anon_sym_u_SQUOTE] = ACTIONS(2717), - [anon_sym_U_SQUOTE] = ACTIONS(2717), - [anon_sym_u8_SQUOTE] = ACTIONS(2717), - [anon_sym_SQUOTE] = ACTIONS(2717), - [anon_sym_L_DQUOTE] = ACTIONS(2717), - [anon_sym_u_DQUOTE] = ACTIONS(2717), - [anon_sym_U_DQUOTE] = ACTIONS(2717), - [anon_sym_u8_DQUOTE] = ACTIONS(2717), - [anon_sym_DQUOTE] = ACTIONS(2717), - [sym_true] = ACTIONS(2715), - [sym_false] = ACTIONS(2715), - [anon_sym_NULL] = ACTIONS(2715), - [anon_sym_nullptr] = ACTIONS(2715), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2715), - [anon_sym_decltype] = ACTIONS(2715), - [anon_sym_explicit] = ACTIONS(2715), - [anon_sym_typename] = ACTIONS(2715), - [anon_sym_export] = ACTIONS(2715), - [anon_sym_module] = ACTIONS(2715), - [anon_sym_import] = ACTIONS(2715), - [anon_sym_template] = ACTIONS(2715), - [anon_sym_operator] = ACTIONS(2715), - [anon_sym_try] = ACTIONS(2715), - [anon_sym_delete] = ACTIONS(2715), - [anon_sym_throw] = ACTIONS(2715), - [anon_sym_namespace] = ACTIONS(2715), - [anon_sym_static_assert] = ACTIONS(2715), - [anon_sym_concept] = ACTIONS(2715), - [anon_sym_co_return] = ACTIONS(2715), - [anon_sym_co_yield] = ACTIONS(2715), - [anon_sym_R_DQUOTE] = ACTIONS(2717), - [anon_sym_LR_DQUOTE] = ACTIONS(2717), - [anon_sym_uR_DQUOTE] = ACTIONS(2717), - [anon_sym_UR_DQUOTE] = ACTIONS(2717), - [anon_sym_u8R_DQUOTE] = ACTIONS(2717), - [anon_sym_co_await] = ACTIONS(2715), - [anon_sym_new] = ACTIONS(2715), - [anon_sym_requires] = ACTIONS(2715), - [sym_this] = ACTIONS(2715), + [409] = { + [ts_builtin_sym_end] = ACTIONS(2697), + [sym_identifier] = ACTIONS(2695), + [aux_sym_preproc_include_token1] = ACTIONS(2695), + [aux_sym_preproc_def_token1] = ACTIONS(2695), + [aux_sym_preproc_if_token1] = ACTIONS(2695), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2695), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2695), + [sym_preproc_directive] = ACTIONS(2695), + [anon_sym_LPAREN2] = ACTIONS(2697), + [anon_sym_BANG] = ACTIONS(2697), + [anon_sym_TILDE] = ACTIONS(2697), + [anon_sym_DASH] = ACTIONS(2695), + [anon_sym_PLUS] = ACTIONS(2695), + [anon_sym_STAR] = ACTIONS(2697), + [anon_sym_AMP_AMP] = ACTIONS(2697), + [anon_sym_AMP] = ACTIONS(2695), + [anon_sym_SEMI] = ACTIONS(2697), + [anon_sym___extension__] = ACTIONS(2695), + [anon_sym_typedef] = ACTIONS(2695), + [anon_sym_virtual] = ACTIONS(2695), + [anon_sym_extern] = ACTIONS(2695), + [anon_sym___attribute__] = ACTIONS(2695), + [anon_sym___attribute] = ACTIONS(2695), + [anon_sym_using] = ACTIONS(2695), + [anon_sym_COLON_COLON] = ACTIONS(2697), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2697), + [anon_sym___declspec] = ACTIONS(2695), + [anon_sym___based] = ACTIONS(2695), + [anon_sym___cdecl] = ACTIONS(2695), + [anon_sym___clrcall] = ACTIONS(2695), + [anon_sym___stdcall] = ACTIONS(2695), + [anon_sym___fastcall] = ACTIONS(2695), + [anon_sym___thiscall] = ACTIONS(2695), + [anon_sym___vectorcall] = ACTIONS(2695), + [anon_sym_LBRACE] = ACTIONS(2697), + [anon_sym_signed] = ACTIONS(2695), + [anon_sym_unsigned] = ACTIONS(2695), + [anon_sym_long] = ACTIONS(2695), + [anon_sym_short] = ACTIONS(2695), + [anon_sym_LBRACK] = ACTIONS(2695), + [anon_sym_static] = ACTIONS(2695), + [anon_sym_register] = ACTIONS(2695), + [anon_sym_inline] = ACTIONS(2695), + [anon_sym___inline] = ACTIONS(2695), + [anon_sym___inline__] = ACTIONS(2695), + [anon_sym___forceinline] = ACTIONS(2695), + [anon_sym_thread_local] = ACTIONS(2695), + [anon_sym___thread] = ACTIONS(2695), + [anon_sym_const] = ACTIONS(2695), + [anon_sym_constexpr] = ACTIONS(2695), + [anon_sym_volatile] = ACTIONS(2695), + [anon_sym_restrict] = ACTIONS(2695), + [anon_sym___restrict__] = ACTIONS(2695), + [anon_sym__Atomic] = ACTIONS(2695), + [anon_sym__Noreturn] = ACTIONS(2695), + [anon_sym_noreturn] = ACTIONS(2695), + [anon_sym__Nonnull] = ACTIONS(2695), + [anon_sym_mutable] = ACTIONS(2695), + [anon_sym_constinit] = ACTIONS(2695), + [anon_sym_consteval] = ACTIONS(2695), + [anon_sym_alignas] = ACTIONS(2695), + [anon_sym__Alignas] = ACTIONS(2695), + [sym_primitive_type] = ACTIONS(2695), + [anon_sym_enum] = ACTIONS(2695), + [anon_sym_class] = ACTIONS(2695), + [anon_sym_struct] = ACTIONS(2695), + [anon_sym_union] = ACTIONS(2695), + [anon_sym_if] = ACTIONS(2695), + [anon_sym_else] = ACTIONS(2695), + [anon_sym_switch] = ACTIONS(2695), + [anon_sym_case] = ACTIONS(2695), + [anon_sym_default] = ACTIONS(2695), + [anon_sym_while] = ACTIONS(2695), + [anon_sym_do] = ACTIONS(2695), + [anon_sym_for] = ACTIONS(2695), + [anon_sym_return] = ACTIONS(2695), + [anon_sym_break] = ACTIONS(2695), + [anon_sym_continue] = ACTIONS(2695), + [anon_sym_goto] = ACTIONS(2695), + [anon_sym___try] = ACTIONS(2695), + [anon_sym___leave] = ACTIONS(2695), + [anon_sym_not] = ACTIONS(2695), + [anon_sym_compl] = ACTIONS(2695), + [anon_sym_DASH_DASH] = ACTIONS(2697), + [anon_sym_PLUS_PLUS] = ACTIONS(2697), + [anon_sym_sizeof] = ACTIONS(2695), + [anon_sym___alignof__] = ACTIONS(2695), + [anon_sym___alignof] = ACTIONS(2695), + [anon_sym__alignof] = ACTIONS(2695), + [anon_sym_alignof] = ACTIONS(2695), + [anon_sym__Alignof] = ACTIONS(2695), + [anon_sym_offsetof] = ACTIONS(2695), + [anon_sym__Generic] = ACTIONS(2695), + [anon_sym_asm] = ACTIONS(2695), + [anon_sym___asm__] = ACTIONS(2695), + [anon_sym___asm] = ACTIONS(2695), + [sym_number_literal] = ACTIONS(2697), + [anon_sym_L_SQUOTE] = ACTIONS(2697), + [anon_sym_u_SQUOTE] = ACTIONS(2697), + [anon_sym_U_SQUOTE] = ACTIONS(2697), + [anon_sym_u8_SQUOTE] = ACTIONS(2697), + [anon_sym_SQUOTE] = ACTIONS(2697), + [anon_sym_L_DQUOTE] = ACTIONS(2697), + [anon_sym_u_DQUOTE] = ACTIONS(2697), + [anon_sym_U_DQUOTE] = ACTIONS(2697), + [anon_sym_u8_DQUOTE] = ACTIONS(2697), + [anon_sym_DQUOTE] = ACTIONS(2697), + [sym_true] = ACTIONS(2695), + [sym_false] = ACTIONS(2695), + [anon_sym_NULL] = ACTIONS(2695), + [anon_sym_nullptr] = ACTIONS(2695), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2695), + [anon_sym_decltype] = ACTIONS(2695), + [anon_sym_explicit] = ACTIONS(2695), + [anon_sym_typename] = ACTIONS(2695), + [anon_sym_export] = ACTIONS(2695), + [anon_sym_module] = ACTIONS(2695), + [anon_sym_import] = ACTIONS(2695), + [anon_sym_template] = ACTIONS(2695), + [anon_sym_operator] = ACTIONS(2695), + [anon_sym_try] = ACTIONS(2695), + [anon_sym_delete] = ACTIONS(2695), + [anon_sym_throw] = ACTIONS(2695), + [anon_sym_namespace] = ACTIONS(2695), + [anon_sym_static_assert] = ACTIONS(2695), + [anon_sym_concept] = ACTIONS(2695), + [anon_sym_co_return] = ACTIONS(2695), + [anon_sym_co_yield] = ACTIONS(2695), + [anon_sym_R_DQUOTE] = ACTIONS(2697), + [anon_sym_LR_DQUOTE] = ACTIONS(2697), + [anon_sym_uR_DQUOTE] = ACTIONS(2697), + [anon_sym_UR_DQUOTE] = ACTIONS(2697), + [anon_sym_u8R_DQUOTE] = ACTIONS(2697), + [anon_sym_co_await] = ACTIONS(2695), + [anon_sym_new] = ACTIONS(2695), + [anon_sym_requires] = ACTIONS(2695), + [sym_this] = ACTIONS(2695), }, - [406] = { + [410] = { [ts_builtin_sym_end] = ACTIONS(2709), [sym_identifier] = ACTIONS(2707), [aux_sym_preproc_include_token1] = ACTIONS(2707), @@ -102046,79 +102893,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2707), [sym_this] = ACTIONS(2707), }, - [407] = { - [sym_type_qualifier] = STATE(3910), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(4737), - [sym_sized_type_specifier] = STATE(2668), - [sym_enum_specifier] = STATE(2668), - [sym_struct_specifier] = STATE(2668), - [sym_union_specifier] = STATE(2668), - [sym_expression] = STATE(4370), - [sym__string] = STATE(4738), - [sym_conditional_expression] = STATE(4829), - [sym_assignment_expression] = STATE(4829), - [sym_pointer_expression] = STATE(3602), - [sym_unary_expression] = STATE(4829), - [sym_binary_expression] = STATE(4829), - [sym_update_expression] = STATE(4829), - [sym_cast_expression] = STATE(4829), - [sym_type_descriptor] = STATE(6961), - [sym_sizeof_expression] = STATE(4829), - [sym_alignof_expression] = STATE(4829), - [sym_offsetof_expression] = STATE(4829), - [sym_generic_expression] = STATE(4829), - [sym_subscript_expression] = STATE(3602), - [sym_call_expression] = STATE(3602), - [sym_gnu_asm_expression] = STATE(4829), - [sym_extension_expression] = STATE(4829), - [sym_field_expression] = STATE(3602), - [sym_compound_literal_expression] = STATE(4829), - [sym_parenthesized_expression] = STATE(3602), - [sym_char_literal] = STATE(4738), - [sym_concatenated_string] = STATE(4738), - [sym_string_literal] = STATE(3759), - [sym_null] = STATE(4829), - [sym_placeholder_type_specifier] = STATE(2668), - [sym_decltype_auto] = STATE(2708), - [sym_decltype] = STATE(2598), - [sym_class_specifier] = STATE(2668), - [sym__class_name] = STATE(7804), - [sym_dependent_type] = STATE(2668), - [sym_template_type] = STATE(5285), - [sym_template_function] = STATE(4829), - [sym_raw_string_literal] = STATE(3759), - [sym_co_await_expression] = STATE(4829), - [sym_new_expression] = STATE(4829), - [sym_delete_expression] = STATE(4829), - [sym_requires_clause] = STATE(4829), - [sym_requires_expression] = STATE(4829), - [sym_lambda_expression] = STATE(4829), - [sym_lambda_capture_specifier] = STATE(5401), - [sym_fold_expression] = STATE(4829), - [sym_parameter_pack_expansion] = STATE(4829), - [sym_type_parameter_pack_expansion] = STATE(7394), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5750), - [sym_qualified_identifier] = STATE(3602), - [sym_qualified_type_identifier] = STATE(5327), - [sym_user_defined_literal] = STATE(3602), - [aux_sym__type_definition_type_repeat1] = STATE(3910), - [aux_sym_sized_type_specifier_repeat1] = STATE(4239), - [sym_identifier] = ACTIONS(3116), - [anon_sym_LPAREN2] = ACTIONS(3118), - [anon_sym_BANG] = ACTIONS(3120), - [anon_sym_TILDE] = ACTIONS(3120), - [anon_sym_DASH] = ACTIONS(3122), - [anon_sym_PLUS] = ACTIONS(3122), - [anon_sym_STAR] = ACTIONS(3124), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym___extension__] = ACTIONS(3126), - [anon_sym_COLON_COLON] = ACTIONS(3128), - [anon_sym_signed] = ACTIONS(3130), - [anon_sym_unsigned] = ACTIONS(3130), - [anon_sym_long] = ACTIONS(3130), - [anon_sym_short] = ACTIONS(3130), + [411] = { + [sym_type_qualifier] = STATE(3954), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(4767), + [sym_sized_type_specifier] = STATE(2747), + [sym_enum_specifier] = STATE(2747), + [sym_struct_specifier] = STATE(2747), + [sym_union_specifier] = STATE(2747), + [sym_expression] = STATE(4434), + [sym__string] = STATE(4825), + [sym_conditional_expression] = STATE(4856), + [sym_assignment_expression] = STATE(4856), + [sym_pointer_expression] = STATE(3701), + [sym_unary_expression] = STATE(4856), + [sym_binary_expression] = STATE(4856), + [sym_update_expression] = STATE(4856), + [sym_cast_expression] = STATE(4856), + [sym_type_descriptor] = STATE(7157), + [sym_sizeof_expression] = STATE(4856), + [sym_alignof_expression] = STATE(4856), + [sym_offsetof_expression] = STATE(4856), + [sym_generic_expression] = STATE(4856), + [sym_subscript_expression] = STATE(3701), + [sym_call_expression] = STATE(3701), + [sym_gnu_asm_expression] = STATE(4856), + [sym_extension_expression] = STATE(4856), + [sym_field_expression] = STATE(3701), + [sym_compound_literal_expression] = STATE(4856), + [sym_parenthesized_expression] = STATE(3701), + [sym_char_literal] = STATE(4825), + [sym_concatenated_string] = STATE(4825), + [sym_string_literal] = STATE(3812), + [sym_null] = STATE(4856), + [sym_placeholder_type_specifier] = STATE(2747), + [sym_decltype_auto] = STATE(2733), + [sym_decltype] = STATE(2621), + [sym_class_specifier] = STATE(2747), + [sym__class_name] = STATE(7816), + [sym_dependent_type] = STATE(2747), + [sym_template_type] = STATE(5365), + [sym_template_function] = STATE(4856), + [sym_raw_string_literal] = STATE(3812), + [sym_co_await_expression] = STATE(4856), + [sym_new_expression] = STATE(4856), + [sym_delete_expression] = STATE(4856), + [sym_requires_clause] = STATE(4856), + [sym_requires_expression] = STATE(4856), + [sym_lambda_expression] = STATE(4856), + [sym_lambda_capture_specifier] = STATE(5489), + [sym_fold_expression] = STATE(4856), + [sym_parameter_pack_expansion] = STATE(4856), + [sym_type_parameter_pack_expansion] = STATE(7428), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5742), + [sym_qualified_identifier] = STATE(3701), + [sym_qualified_type_identifier] = STATE(5382), + [sym_user_defined_literal] = STATE(3701), + [aux_sym__type_definition_type_repeat1] = STATE(3954), + [aux_sym_sized_type_specifier_repeat1] = STATE(4313), + [sym_identifier] = ACTIONS(3128), + [anon_sym_LPAREN2] = ACTIONS(3130), + [anon_sym_BANG] = ACTIONS(3132), + [anon_sym_TILDE] = ACTIONS(3132), + [anon_sym_DASH] = ACTIONS(3134), + [anon_sym_PLUS] = ACTIONS(3134), + [anon_sym_STAR] = ACTIONS(3136), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym___extension__] = ACTIONS(3138), + [anon_sym_COLON_COLON] = ACTIONS(3140), + [anon_sym_signed] = ACTIONS(3142), + [anon_sym_unsigned] = ACTIONS(3142), + [anon_sym_long] = ACTIONS(3142), + [anon_sym_short] = ACTIONS(3142), [anon_sym_LBRACK] = ACTIONS(2020), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), @@ -102134,131 +102981,411 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(3132), - [anon_sym_enum] = ACTIONS(3134), - [anon_sym_class] = ACTIONS(3136), - [anon_sym_struct] = ACTIONS(3138), - [anon_sym_union] = ACTIONS(3140), - [anon_sym_not] = ACTIONS(3122), - [anon_sym_compl] = ACTIONS(3122), - [anon_sym_DASH_DASH] = ACTIONS(3142), - [anon_sym_PLUS_PLUS] = ACTIONS(3142), - [anon_sym_sizeof] = ACTIONS(3144), - [anon_sym___alignof__] = ACTIONS(3146), - [anon_sym___alignof] = ACTIONS(3146), - [anon_sym__alignof] = ACTIONS(3146), - [anon_sym_alignof] = ACTIONS(3146), - [anon_sym__Alignof] = ACTIONS(3146), - [anon_sym_offsetof] = ACTIONS(3148), - [anon_sym__Generic] = ACTIONS(3150), - [anon_sym_asm] = ACTIONS(3152), - [anon_sym___asm__] = ACTIONS(3152), - [anon_sym___asm] = ACTIONS(3152), - [sym_number_literal] = ACTIONS(3154), - [anon_sym_L_SQUOTE] = ACTIONS(3156), - [anon_sym_u_SQUOTE] = ACTIONS(3156), - [anon_sym_U_SQUOTE] = ACTIONS(3156), - [anon_sym_u8_SQUOTE] = ACTIONS(3156), - [anon_sym_SQUOTE] = ACTIONS(3156), - [anon_sym_L_DQUOTE] = ACTIONS(3158), - [anon_sym_u_DQUOTE] = ACTIONS(3158), - [anon_sym_U_DQUOTE] = ACTIONS(3158), - [anon_sym_u8_DQUOTE] = ACTIONS(3158), - [anon_sym_DQUOTE] = ACTIONS(3158), - [sym_true] = ACTIONS(3160), - [sym_false] = ACTIONS(3160), - [anon_sym_NULL] = ACTIONS(3162), - [anon_sym_nullptr] = ACTIONS(3162), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3164), - [anon_sym_decltype] = ACTIONS(3166), - [anon_sym_typename] = ACTIONS(3168), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_GT2] = ACTIONS(3236), - [anon_sym_delete] = ACTIONS(3172), - [anon_sym_R_DQUOTE] = ACTIONS(3174), - [anon_sym_LR_DQUOTE] = ACTIONS(3174), - [anon_sym_uR_DQUOTE] = ACTIONS(3174), - [anon_sym_UR_DQUOTE] = ACTIONS(3174), - [anon_sym_u8R_DQUOTE] = ACTIONS(3174), - [anon_sym_co_await] = ACTIONS(3176), - [anon_sym_new] = ACTIONS(3178), - [anon_sym_requires] = ACTIONS(3180), - [sym_this] = ACTIONS(3160), + [sym_primitive_type] = ACTIONS(3144), + [anon_sym_enum] = ACTIONS(3146), + [anon_sym_class] = ACTIONS(3148), + [anon_sym_struct] = ACTIONS(3150), + [anon_sym_union] = ACTIONS(3152), + [anon_sym_not] = ACTIONS(3134), + [anon_sym_compl] = ACTIONS(3134), + [anon_sym_DASH_DASH] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_sizeof] = ACTIONS(3156), + [anon_sym___alignof__] = ACTIONS(3158), + [anon_sym___alignof] = ACTIONS(3158), + [anon_sym__alignof] = ACTIONS(3158), + [anon_sym_alignof] = ACTIONS(3158), + [anon_sym__Alignof] = ACTIONS(3158), + [anon_sym_offsetof] = ACTIONS(3160), + [anon_sym__Generic] = ACTIONS(3162), + [anon_sym_asm] = ACTIONS(3164), + [anon_sym___asm__] = ACTIONS(3164), + [anon_sym___asm] = ACTIONS(3164), + [sym_number_literal] = ACTIONS(3166), + [anon_sym_L_SQUOTE] = ACTIONS(3168), + [anon_sym_u_SQUOTE] = ACTIONS(3168), + [anon_sym_U_SQUOTE] = ACTIONS(3168), + [anon_sym_u8_SQUOTE] = ACTIONS(3168), + [anon_sym_SQUOTE] = ACTIONS(3168), + [anon_sym_L_DQUOTE] = ACTIONS(3170), + [anon_sym_u_DQUOTE] = ACTIONS(3170), + [anon_sym_U_DQUOTE] = ACTIONS(3170), + [anon_sym_u8_DQUOTE] = ACTIONS(3170), + [anon_sym_DQUOTE] = ACTIONS(3170), + [sym_true] = ACTIONS(3172), + [sym_false] = ACTIONS(3172), + [anon_sym_NULL] = ACTIONS(3174), + [anon_sym_nullptr] = ACTIONS(3174), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3176), + [anon_sym_decltype] = ACTIONS(3178), + [anon_sym_typename] = ACTIONS(3180), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_GT2] = ACTIONS(3242), + [anon_sym_delete] = ACTIONS(3184), + [anon_sym_R_DQUOTE] = ACTIONS(3186), + [anon_sym_LR_DQUOTE] = ACTIONS(3186), + [anon_sym_uR_DQUOTE] = ACTIONS(3186), + [anon_sym_UR_DQUOTE] = ACTIONS(3186), + [anon_sym_u8R_DQUOTE] = ACTIONS(3186), + [anon_sym_co_await] = ACTIONS(3188), + [anon_sym_new] = ACTIONS(3190), + [anon_sym_requires] = ACTIONS(3192), + [sym_this] = ACTIONS(3172), }, - [408] = { - [sym_type_qualifier] = STATE(3910), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(4737), - [sym_sized_type_specifier] = STATE(2668), - [sym_enum_specifier] = STATE(2668), - [sym_struct_specifier] = STATE(2668), - [sym_union_specifier] = STATE(2668), - [sym_expression] = STATE(4343), - [sym__string] = STATE(4738), - [sym_conditional_expression] = STATE(4829), - [sym_assignment_expression] = STATE(4829), - [sym_pointer_expression] = STATE(3602), - [sym_unary_expression] = STATE(4829), - [sym_binary_expression] = STATE(4829), - [sym_update_expression] = STATE(4829), - [sym_cast_expression] = STATE(4829), - [sym_type_descriptor] = STATE(7101), - [sym_sizeof_expression] = STATE(4829), - [sym_alignof_expression] = STATE(4829), - [sym_offsetof_expression] = STATE(4829), - [sym_generic_expression] = STATE(4829), - [sym_subscript_expression] = STATE(3602), - [sym_call_expression] = STATE(3602), - [sym_gnu_asm_expression] = STATE(4829), - [sym_extension_expression] = STATE(4829), - [sym_field_expression] = STATE(3602), - [sym_compound_literal_expression] = STATE(4829), - [sym_parenthesized_expression] = STATE(3602), - [sym_char_literal] = STATE(4738), - [sym_concatenated_string] = STATE(4738), - [sym_string_literal] = STATE(3759), - [sym_null] = STATE(4829), - [sym_placeholder_type_specifier] = STATE(2668), - [sym_decltype_auto] = STATE(2708), - [sym_decltype] = STATE(2598), - [sym_class_specifier] = STATE(2668), - [sym__class_name] = STATE(7804), - [sym_dependent_type] = STATE(2668), - [sym_template_type] = STATE(5285), - [sym_template_function] = STATE(4829), - [sym_raw_string_literal] = STATE(3759), - [sym_co_await_expression] = STATE(4829), - [sym_new_expression] = STATE(4829), - [sym_delete_expression] = STATE(4829), - [sym_requires_clause] = STATE(4829), - [sym_requires_expression] = STATE(4829), - [sym_lambda_expression] = STATE(4829), - [sym_lambda_capture_specifier] = STATE(5401), - [sym_fold_expression] = STATE(4829), - [sym_parameter_pack_expansion] = STATE(4829), - [sym_type_parameter_pack_expansion] = STATE(7486), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5750), - [sym_qualified_identifier] = STATE(3602), - [sym_qualified_type_identifier] = STATE(5327), - [sym_user_defined_literal] = STATE(3602), - [aux_sym__type_definition_type_repeat1] = STATE(3910), - [aux_sym_sized_type_specifier_repeat1] = STATE(4239), - [sym_identifier] = ACTIONS(3116), - [anon_sym_LPAREN2] = ACTIONS(3118), - [anon_sym_BANG] = ACTIONS(3120), - [anon_sym_TILDE] = ACTIONS(3120), - [anon_sym_DASH] = ACTIONS(3122), - [anon_sym_PLUS] = ACTIONS(3122), - [anon_sym_STAR] = ACTIONS(3124), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym___extension__] = ACTIONS(3126), - [anon_sym_COLON_COLON] = ACTIONS(3128), - [anon_sym_signed] = ACTIONS(3130), - [anon_sym_unsigned] = ACTIONS(3130), - [anon_sym_long] = ACTIONS(3130), - [anon_sym_short] = ACTIONS(3130), + [412] = { + [ts_builtin_sym_end] = ACTIONS(2727), + [sym_identifier] = ACTIONS(2725), + [aux_sym_preproc_include_token1] = ACTIONS(2725), + [aux_sym_preproc_def_token1] = ACTIONS(2725), + [aux_sym_preproc_if_token1] = ACTIONS(2725), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2725), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2725), + [sym_preproc_directive] = ACTIONS(2725), + [anon_sym_LPAREN2] = ACTIONS(2727), + [anon_sym_BANG] = ACTIONS(2727), + [anon_sym_TILDE] = ACTIONS(2727), + [anon_sym_DASH] = ACTIONS(2725), + [anon_sym_PLUS] = ACTIONS(2725), + [anon_sym_STAR] = ACTIONS(2727), + [anon_sym_AMP_AMP] = ACTIONS(2727), + [anon_sym_AMP] = ACTIONS(2725), + [anon_sym_SEMI] = ACTIONS(2727), + [anon_sym___extension__] = ACTIONS(2725), + [anon_sym_typedef] = ACTIONS(2725), + [anon_sym_virtual] = ACTIONS(2725), + [anon_sym_extern] = ACTIONS(2725), + [anon_sym___attribute__] = ACTIONS(2725), + [anon_sym___attribute] = ACTIONS(2725), + [anon_sym_using] = ACTIONS(2725), + [anon_sym_COLON_COLON] = ACTIONS(2727), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2727), + [anon_sym___declspec] = ACTIONS(2725), + [anon_sym___based] = ACTIONS(2725), + [anon_sym___cdecl] = ACTIONS(2725), + [anon_sym___clrcall] = ACTIONS(2725), + [anon_sym___stdcall] = ACTIONS(2725), + [anon_sym___fastcall] = ACTIONS(2725), + [anon_sym___thiscall] = ACTIONS(2725), + [anon_sym___vectorcall] = ACTIONS(2725), + [anon_sym_LBRACE] = ACTIONS(2727), + [anon_sym_signed] = ACTIONS(2725), + [anon_sym_unsigned] = ACTIONS(2725), + [anon_sym_long] = ACTIONS(2725), + [anon_sym_short] = ACTIONS(2725), + [anon_sym_LBRACK] = ACTIONS(2725), + [anon_sym_static] = ACTIONS(2725), + [anon_sym_register] = ACTIONS(2725), + [anon_sym_inline] = ACTIONS(2725), + [anon_sym___inline] = ACTIONS(2725), + [anon_sym___inline__] = ACTIONS(2725), + [anon_sym___forceinline] = ACTIONS(2725), + [anon_sym_thread_local] = ACTIONS(2725), + [anon_sym___thread] = ACTIONS(2725), + [anon_sym_const] = ACTIONS(2725), + [anon_sym_constexpr] = ACTIONS(2725), + [anon_sym_volatile] = ACTIONS(2725), + [anon_sym_restrict] = ACTIONS(2725), + [anon_sym___restrict__] = ACTIONS(2725), + [anon_sym__Atomic] = ACTIONS(2725), + [anon_sym__Noreturn] = ACTIONS(2725), + [anon_sym_noreturn] = ACTIONS(2725), + [anon_sym__Nonnull] = ACTIONS(2725), + [anon_sym_mutable] = ACTIONS(2725), + [anon_sym_constinit] = ACTIONS(2725), + [anon_sym_consteval] = ACTIONS(2725), + [anon_sym_alignas] = ACTIONS(2725), + [anon_sym__Alignas] = ACTIONS(2725), + [sym_primitive_type] = ACTIONS(2725), + [anon_sym_enum] = ACTIONS(2725), + [anon_sym_class] = ACTIONS(2725), + [anon_sym_struct] = ACTIONS(2725), + [anon_sym_union] = ACTIONS(2725), + [anon_sym_if] = ACTIONS(2725), + [anon_sym_else] = ACTIONS(2725), + [anon_sym_switch] = ACTIONS(2725), + [anon_sym_case] = ACTIONS(2725), + [anon_sym_default] = ACTIONS(2725), + [anon_sym_while] = ACTIONS(2725), + [anon_sym_do] = ACTIONS(2725), + [anon_sym_for] = ACTIONS(2725), + [anon_sym_return] = ACTIONS(2725), + [anon_sym_break] = ACTIONS(2725), + [anon_sym_continue] = ACTIONS(2725), + [anon_sym_goto] = ACTIONS(2725), + [anon_sym___try] = ACTIONS(2725), + [anon_sym___leave] = ACTIONS(2725), + [anon_sym_not] = ACTIONS(2725), + [anon_sym_compl] = ACTIONS(2725), + [anon_sym_DASH_DASH] = ACTIONS(2727), + [anon_sym_PLUS_PLUS] = ACTIONS(2727), + [anon_sym_sizeof] = ACTIONS(2725), + [anon_sym___alignof__] = ACTIONS(2725), + [anon_sym___alignof] = ACTIONS(2725), + [anon_sym__alignof] = ACTIONS(2725), + [anon_sym_alignof] = ACTIONS(2725), + [anon_sym__Alignof] = ACTIONS(2725), + [anon_sym_offsetof] = ACTIONS(2725), + [anon_sym__Generic] = ACTIONS(2725), + [anon_sym_asm] = ACTIONS(2725), + [anon_sym___asm__] = ACTIONS(2725), + [anon_sym___asm] = ACTIONS(2725), + [sym_number_literal] = ACTIONS(2727), + [anon_sym_L_SQUOTE] = ACTIONS(2727), + [anon_sym_u_SQUOTE] = ACTIONS(2727), + [anon_sym_U_SQUOTE] = ACTIONS(2727), + [anon_sym_u8_SQUOTE] = ACTIONS(2727), + [anon_sym_SQUOTE] = ACTIONS(2727), + [anon_sym_L_DQUOTE] = ACTIONS(2727), + [anon_sym_u_DQUOTE] = ACTIONS(2727), + [anon_sym_U_DQUOTE] = ACTIONS(2727), + [anon_sym_u8_DQUOTE] = ACTIONS(2727), + [anon_sym_DQUOTE] = ACTIONS(2727), + [sym_true] = ACTIONS(2725), + [sym_false] = ACTIONS(2725), + [anon_sym_NULL] = ACTIONS(2725), + [anon_sym_nullptr] = ACTIONS(2725), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2725), + [anon_sym_decltype] = ACTIONS(2725), + [anon_sym_explicit] = ACTIONS(2725), + [anon_sym_typename] = ACTIONS(2725), + [anon_sym_export] = ACTIONS(2725), + [anon_sym_module] = ACTIONS(2725), + [anon_sym_import] = ACTIONS(2725), + [anon_sym_template] = ACTIONS(2725), + [anon_sym_operator] = ACTIONS(2725), + [anon_sym_try] = ACTIONS(2725), + [anon_sym_delete] = ACTIONS(2725), + [anon_sym_throw] = ACTIONS(2725), + [anon_sym_namespace] = ACTIONS(2725), + [anon_sym_static_assert] = ACTIONS(2725), + [anon_sym_concept] = ACTIONS(2725), + [anon_sym_co_return] = ACTIONS(2725), + [anon_sym_co_yield] = ACTIONS(2725), + [anon_sym_R_DQUOTE] = ACTIONS(2727), + [anon_sym_LR_DQUOTE] = ACTIONS(2727), + [anon_sym_uR_DQUOTE] = ACTIONS(2727), + [anon_sym_UR_DQUOTE] = ACTIONS(2727), + [anon_sym_u8R_DQUOTE] = ACTIONS(2727), + [anon_sym_co_await] = ACTIONS(2725), + [anon_sym_new] = ACTIONS(2725), + [anon_sym_requires] = ACTIONS(2725), + [sym_this] = ACTIONS(2725), + }, + [413] = { + [ts_builtin_sym_end] = ACTIONS(2685), + [sym_identifier] = ACTIONS(2683), + [aux_sym_preproc_include_token1] = ACTIONS(2683), + [aux_sym_preproc_def_token1] = ACTIONS(2683), + [aux_sym_preproc_if_token1] = ACTIONS(2683), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2683), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2683), + [sym_preproc_directive] = ACTIONS(2683), + [anon_sym_LPAREN2] = ACTIONS(2685), + [anon_sym_BANG] = ACTIONS(2685), + [anon_sym_TILDE] = ACTIONS(2685), + [anon_sym_DASH] = ACTIONS(2683), + [anon_sym_PLUS] = ACTIONS(2683), + [anon_sym_STAR] = ACTIONS(2685), + [anon_sym_AMP_AMP] = ACTIONS(2685), + [anon_sym_AMP] = ACTIONS(2683), + [anon_sym_SEMI] = ACTIONS(2685), + [anon_sym___extension__] = ACTIONS(2683), + [anon_sym_typedef] = ACTIONS(2683), + [anon_sym_virtual] = ACTIONS(2683), + [anon_sym_extern] = ACTIONS(2683), + [anon_sym___attribute__] = ACTIONS(2683), + [anon_sym___attribute] = ACTIONS(2683), + [anon_sym_using] = ACTIONS(2683), + [anon_sym_COLON_COLON] = ACTIONS(2685), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2685), + [anon_sym___declspec] = ACTIONS(2683), + [anon_sym___based] = ACTIONS(2683), + [anon_sym___cdecl] = ACTIONS(2683), + [anon_sym___clrcall] = ACTIONS(2683), + [anon_sym___stdcall] = ACTIONS(2683), + [anon_sym___fastcall] = ACTIONS(2683), + [anon_sym___thiscall] = ACTIONS(2683), + [anon_sym___vectorcall] = ACTIONS(2683), + [anon_sym_LBRACE] = ACTIONS(2685), + [anon_sym_signed] = ACTIONS(2683), + [anon_sym_unsigned] = ACTIONS(2683), + [anon_sym_long] = ACTIONS(2683), + [anon_sym_short] = ACTIONS(2683), + [anon_sym_LBRACK] = ACTIONS(2683), + [anon_sym_static] = ACTIONS(2683), + [anon_sym_register] = ACTIONS(2683), + [anon_sym_inline] = ACTIONS(2683), + [anon_sym___inline] = ACTIONS(2683), + [anon_sym___inline__] = ACTIONS(2683), + [anon_sym___forceinline] = ACTIONS(2683), + [anon_sym_thread_local] = ACTIONS(2683), + [anon_sym___thread] = ACTIONS(2683), + [anon_sym_const] = ACTIONS(2683), + [anon_sym_constexpr] = ACTIONS(2683), + [anon_sym_volatile] = ACTIONS(2683), + [anon_sym_restrict] = ACTIONS(2683), + [anon_sym___restrict__] = ACTIONS(2683), + [anon_sym__Atomic] = ACTIONS(2683), + [anon_sym__Noreturn] = ACTIONS(2683), + [anon_sym_noreturn] = ACTIONS(2683), + [anon_sym__Nonnull] = ACTIONS(2683), + [anon_sym_mutable] = ACTIONS(2683), + [anon_sym_constinit] = ACTIONS(2683), + [anon_sym_consteval] = ACTIONS(2683), + [anon_sym_alignas] = ACTIONS(2683), + [anon_sym__Alignas] = ACTIONS(2683), + [sym_primitive_type] = ACTIONS(2683), + [anon_sym_enum] = ACTIONS(2683), + [anon_sym_class] = ACTIONS(2683), + [anon_sym_struct] = ACTIONS(2683), + [anon_sym_union] = ACTIONS(2683), + [anon_sym_if] = ACTIONS(2683), + [anon_sym_else] = ACTIONS(2683), + [anon_sym_switch] = ACTIONS(2683), + [anon_sym_case] = ACTIONS(2683), + [anon_sym_default] = ACTIONS(2683), + [anon_sym_while] = ACTIONS(2683), + [anon_sym_do] = ACTIONS(2683), + [anon_sym_for] = ACTIONS(2683), + [anon_sym_return] = ACTIONS(2683), + [anon_sym_break] = ACTIONS(2683), + [anon_sym_continue] = ACTIONS(2683), + [anon_sym_goto] = ACTIONS(2683), + [anon_sym___try] = ACTIONS(2683), + [anon_sym___leave] = ACTIONS(2683), + [anon_sym_not] = ACTIONS(2683), + [anon_sym_compl] = ACTIONS(2683), + [anon_sym_DASH_DASH] = ACTIONS(2685), + [anon_sym_PLUS_PLUS] = ACTIONS(2685), + [anon_sym_sizeof] = ACTIONS(2683), + [anon_sym___alignof__] = ACTIONS(2683), + [anon_sym___alignof] = ACTIONS(2683), + [anon_sym__alignof] = ACTIONS(2683), + [anon_sym_alignof] = ACTIONS(2683), + [anon_sym__Alignof] = ACTIONS(2683), + [anon_sym_offsetof] = ACTIONS(2683), + [anon_sym__Generic] = ACTIONS(2683), + [anon_sym_asm] = ACTIONS(2683), + [anon_sym___asm__] = ACTIONS(2683), + [anon_sym___asm] = ACTIONS(2683), + [sym_number_literal] = ACTIONS(2685), + [anon_sym_L_SQUOTE] = ACTIONS(2685), + [anon_sym_u_SQUOTE] = ACTIONS(2685), + [anon_sym_U_SQUOTE] = ACTIONS(2685), + [anon_sym_u8_SQUOTE] = ACTIONS(2685), + [anon_sym_SQUOTE] = ACTIONS(2685), + [anon_sym_L_DQUOTE] = ACTIONS(2685), + [anon_sym_u_DQUOTE] = ACTIONS(2685), + [anon_sym_U_DQUOTE] = ACTIONS(2685), + [anon_sym_u8_DQUOTE] = ACTIONS(2685), + [anon_sym_DQUOTE] = ACTIONS(2685), + [sym_true] = ACTIONS(2683), + [sym_false] = ACTIONS(2683), + [anon_sym_NULL] = ACTIONS(2683), + [anon_sym_nullptr] = ACTIONS(2683), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2683), + [anon_sym_decltype] = ACTIONS(2683), + [anon_sym_explicit] = ACTIONS(2683), + [anon_sym_typename] = ACTIONS(2683), + [anon_sym_export] = ACTIONS(2683), + [anon_sym_module] = ACTIONS(2683), + [anon_sym_import] = ACTIONS(2683), + [anon_sym_template] = ACTIONS(2683), + [anon_sym_operator] = ACTIONS(2683), + [anon_sym_try] = ACTIONS(2683), + [anon_sym_delete] = ACTIONS(2683), + [anon_sym_throw] = ACTIONS(2683), + [anon_sym_namespace] = ACTIONS(2683), + [anon_sym_static_assert] = ACTIONS(2683), + [anon_sym_concept] = ACTIONS(2683), + [anon_sym_co_return] = ACTIONS(2683), + [anon_sym_co_yield] = ACTIONS(2683), + [anon_sym_R_DQUOTE] = ACTIONS(2685), + [anon_sym_LR_DQUOTE] = ACTIONS(2685), + [anon_sym_uR_DQUOTE] = ACTIONS(2685), + [anon_sym_UR_DQUOTE] = ACTIONS(2685), + [anon_sym_u8R_DQUOTE] = ACTIONS(2685), + [anon_sym_co_await] = ACTIONS(2683), + [anon_sym_new] = ACTIONS(2683), + [anon_sym_requires] = ACTIONS(2683), + [sym_this] = ACTIONS(2683), + }, + [414] = { + [sym_type_qualifier] = STATE(3954), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(4767), + [sym_sized_type_specifier] = STATE(2747), + [sym_enum_specifier] = STATE(2747), + [sym_struct_specifier] = STATE(2747), + [sym_union_specifier] = STATE(2747), + [sym_expression] = STATE(4454), + [sym__string] = STATE(4825), + [sym_conditional_expression] = STATE(4856), + [sym_assignment_expression] = STATE(4856), + [sym_pointer_expression] = STATE(3701), + [sym_unary_expression] = STATE(4856), + [sym_binary_expression] = STATE(4856), + [sym_update_expression] = STATE(4856), + [sym_cast_expression] = STATE(4856), + [sym_type_descriptor] = STATE(7193), + [sym_sizeof_expression] = STATE(4856), + [sym_alignof_expression] = STATE(4856), + [sym_offsetof_expression] = STATE(4856), + [sym_generic_expression] = STATE(4856), + [sym_subscript_expression] = STATE(3701), + [sym_call_expression] = STATE(3701), + [sym_gnu_asm_expression] = STATE(4856), + [sym_extension_expression] = STATE(4856), + [sym_field_expression] = STATE(3701), + [sym_compound_literal_expression] = STATE(4856), + [sym_parenthesized_expression] = STATE(3701), + [sym_char_literal] = STATE(4825), + [sym_concatenated_string] = STATE(4825), + [sym_string_literal] = STATE(3812), + [sym_null] = STATE(4856), + [sym_placeholder_type_specifier] = STATE(2747), + [sym_decltype_auto] = STATE(2733), + [sym_decltype] = STATE(2621), + [sym_class_specifier] = STATE(2747), + [sym__class_name] = STATE(7816), + [sym_dependent_type] = STATE(2747), + [sym_template_type] = STATE(5365), + [sym_template_function] = STATE(4856), + [sym_raw_string_literal] = STATE(3812), + [sym_co_await_expression] = STATE(4856), + [sym_new_expression] = STATE(4856), + [sym_delete_expression] = STATE(4856), + [sym_requires_clause] = STATE(4856), + [sym_requires_expression] = STATE(4856), + [sym_lambda_expression] = STATE(4856), + [sym_lambda_capture_specifier] = STATE(5489), + [sym_fold_expression] = STATE(4856), + [sym_parameter_pack_expansion] = STATE(4856), + [sym_type_parameter_pack_expansion] = STATE(7557), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5742), + [sym_qualified_identifier] = STATE(3701), + [sym_qualified_type_identifier] = STATE(5382), + [sym_user_defined_literal] = STATE(3701), + [aux_sym__type_definition_type_repeat1] = STATE(3954), + [aux_sym_sized_type_specifier_repeat1] = STATE(4313), + [sym_identifier] = ACTIONS(3128), + [anon_sym_LPAREN2] = ACTIONS(3130), + [anon_sym_BANG] = ACTIONS(3132), + [anon_sym_TILDE] = ACTIONS(3132), + [anon_sym_DASH] = ACTIONS(3134), + [anon_sym_PLUS] = ACTIONS(3134), + [anon_sym_STAR] = ACTIONS(3136), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym___extension__] = ACTIONS(3138), + [anon_sym_COLON_COLON] = ACTIONS(3140), + [anon_sym_signed] = ACTIONS(3142), + [anon_sym_unsigned] = ACTIONS(3142), + [anon_sym_long] = ACTIONS(3142), + [anon_sym_short] = ACTIONS(3142), [anon_sym_LBRACK] = ACTIONS(2020), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), @@ -102274,271 +103401,271 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(3132), - [anon_sym_enum] = ACTIONS(3134), - [anon_sym_class] = ACTIONS(3136), - [anon_sym_struct] = ACTIONS(3138), - [anon_sym_union] = ACTIONS(3140), - [anon_sym_not] = ACTIONS(3122), - [anon_sym_compl] = ACTIONS(3122), - [anon_sym_DASH_DASH] = ACTIONS(3142), - [anon_sym_PLUS_PLUS] = ACTIONS(3142), - [anon_sym_sizeof] = ACTIONS(3144), - [anon_sym___alignof__] = ACTIONS(3146), - [anon_sym___alignof] = ACTIONS(3146), - [anon_sym__alignof] = ACTIONS(3146), - [anon_sym_alignof] = ACTIONS(3146), - [anon_sym__Alignof] = ACTIONS(3146), - [anon_sym_offsetof] = ACTIONS(3148), - [anon_sym__Generic] = ACTIONS(3150), - [anon_sym_asm] = ACTIONS(3152), - [anon_sym___asm__] = ACTIONS(3152), - [anon_sym___asm] = ACTIONS(3152), - [sym_number_literal] = ACTIONS(3154), - [anon_sym_L_SQUOTE] = ACTIONS(3156), - [anon_sym_u_SQUOTE] = ACTIONS(3156), - [anon_sym_U_SQUOTE] = ACTIONS(3156), - [anon_sym_u8_SQUOTE] = ACTIONS(3156), - [anon_sym_SQUOTE] = ACTIONS(3156), - [anon_sym_L_DQUOTE] = ACTIONS(3158), - [anon_sym_u_DQUOTE] = ACTIONS(3158), - [anon_sym_U_DQUOTE] = ACTIONS(3158), - [anon_sym_u8_DQUOTE] = ACTIONS(3158), - [anon_sym_DQUOTE] = ACTIONS(3158), - [sym_true] = ACTIONS(3160), - [sym_false] = ACTIONS(3160), - [anon_sym_NULL] = ACTIONS(3162), - [anon_sym_nullptr] = ACTIONS(3162), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3164), - [anon_sym_decltype] = ACTIONS(3166), - [anon_sym_typename] = ACTIONS(3168), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_GT2] = ACTIONS(3238), - [anon_sym_delete] = ACTIONS(3172), - [anon_sym_R_DQUOTE] = ACTIONS(3174), - [anon_sym_LR_DQUOTE] = ACTIONS(3174), - [anon_sym_uR_DQUOTE] = ACTIONS(3174), - [anon_sym_UR_DQUOTE] = ACTIONS(3174), - [anon_sym_u8R_DQUOTE] = ACTIONS(3174), - [anon_sym_co_await] = ACTIONS(3176), - [anon_sym_new] = ACTIONS(3178), - [anon_sym_requires] = ACTIONS(3180), - [sym_this] = ACTIONS(3160), + [sym_primitive_type] = ACTIONS(3144), + [anon_sym_enum] = ACTIONS(3146), + [anon_sym_class] = ACTIONS(3148), + [anon_sym_struct] = ACTIONS(3150), + [anon_sym_union] = ACTIONS(3152), + [anon_sym_not] = ACTIONS(3134), + [anon_sym_compl] = ACTIONS(3134), + [anon_sym_DASH_DASH] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_sizeof] = ACTIONS(3156), + [anon_sym___alignof__] = ACTIONS(3158), + [anon_sym___alignof] = ACTIONS(3158), + [anon_sym__alignof] = ACTIONS(3158), + [anon_sym_alignof] = ACTIONS(3158), + [anon_sym__Alignof] = ACTIONS(3158), + [anon_sym_offsetof] = ACTIONS(3160), + [anon_sym__Generic] = ACTIONS(3162), + [anon_sym_asm] = ACTIONS(3164), + [anon_sym___asm__] = ACTIONS(3164), + [anon_sym___asm] = ACTIONS(3164), + [sym_number_literal] = ACTIONS(3166), + [anon_sym_L_SQUOTE] = ACTIONS(3168), + [anon_sym_u_SQUOTE] = ACTIONS(3168), + [anon_sym_U_SQUOTE] = ACTIONS(3168), + [anon_sym_u8_SQUOTE] = ACTIONS(3168), + [anon_sym_SQUOTE] = ACTIONS(3168), + [anon_sym_L_DQUOTE] = ACTIONS(3170), + [anon_sym_u_DQUOTE] = ACTIONS(3170), + [anon_sym_U_DQUOTE] = ACTIONS(3170), + [anon_sym_u8_DQUOTE] = ACTIONS(3170), + [anon_sym_DQUOTE] = ACTIONS(3170), + [sym_true] = ACTIONS(3172), + [sym_false] = ACTIONS(3172), + [anon_sym_NULL] = ACTIONS(3174), + [anon_sym_nullptr] = ACTIONS(3174), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3176), + [anon_sym_decltype] = ACTIONS(3178), + [anon_sym_typename] = ACTIONS(3180), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_GT2] = ACTIONS(3244), + [anon_sym_delete] = ACTIONS(3184), + [anon_sym_R_DQUOTE] = ACTIONS(3186), + [anon_sym_LR_DQUOTE] = ACTIONS(3186), + [anon_sym_uR_DQUOTE] = ACTIONS(3186), + [anon_sym_UR_DQUOTE] = ACTIONS(3186), + [anon_sym_u8R_DQUOTE] = ACTIONS(3186), + [anon_sym_co_await] = ACTIONS(3188), + [anon_sym_new] = ACTIONS(3190), + [anon_sym_requires] = ACTIONS(3192), + [sym_this] = ACTIONS(3172), }, - [409] = { - [sym_catch_clause] = STATE(425), - [aux_sym_constructor_try_statement_repeat1] = STATE(425), - [sym_identifier] = ACTIONS(2483), - [aux_sym_preproc_include_token1] = ACTIONS(2483), - [aux_sym_preproc_def_token1] = ACTIONS(2483), - [aux_sym_preproc_if_token1] = ACTIONS(2483), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2483), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2483), - [sym_preproc_directive] = ACTIONS(2483), - [anon_sym_LPAREN2] = ACTIONS(2485), - [anon_sym_BANG] = ACTIONS(2485), - [anon_sym_TILDE] = ACTIONS(2485), - [anon_sym_DASH] = ACTIONS(2483), - [anon_sym_PLUS] = ACTIONS(2483), - [anon_sym_STAR] = ACTIONS(2485), - [anon_sym_AMP_AMP] = ACTIONS(2485), - [anon_sym_AMP] = ACTIONS(2483), - [anon_sym_SEMI] = ACTIONS(2485), - [anon_sym___extension__] = ACTIONS(2483), - [anon_sym_typedef] = ACTIONS(2483), - [anon_sym_virtual] = ACTIONS(2483), - [anon_sym_extern] = ACTIONS(2483), - [anon_sym___attribute__] = ACTIONS(2483), - [anon_sym___attribute] = ACTIONS(2483), - [anon_sym_using] = ACTIONS(2483), - [anon_sym_COLON_COLON] = ACTIONS(2485), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2485), - [anon_sym___declspec] = ACTIONS(2483), - [anon_sym___based] = ACTIONS(2483), - [anon_sym___cdecl] = ACTIONS(2483), - [anon_sym___clrcall] = ACTIONS(2483), - [anon_sym___stdcall] = ACTIONS(2483), - [anon_sym___fastcall] = ACTIONS(2483), - [anon_sym___thiscall] = ACTIONS(2483), - [anon_sym___vectorcall] = ACTIONS(2483), - [anon_sym_LBRACE] = ACTIONS(2485), - [anon_sym_RBRACE] = ACTIONS(2485), - [anon_sym_signed] = ACTIONS(2483), - [anon_sym_unsigned] = ACTIONS(2483), - [anon_sym_long] = ACTIONS(2483), - [anon_sym_short] = ACTIONS(2483), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_static] = ACTIONS(2483), - [anon_sym_register] = ACTIONS(2483), - [anon_sym_inline] = ACTIONS(2483), - [anon_sym___inline] = ACTIONS(2483), - [anon_sym___inline__] = ACTIONS(2483), - [anon_sym___forceinline] = ACTIONS(2483), - [anon_sym_thread_local] = ACTIONS(2483), - [anon_sym___thread] = ACTIONS(2483), - [anon_sym_const] = ACTIONS(2483), - [anon_sym_constexpr] = ACTIONS(2483), - [anon_sym_volatile] = ACTIONS(2483), - [anon_sym_restrict] = ACTIONS(2483), - [anon_sym___restrict__] = ACTIONS(2483), - [anon_sym__Atomic] = ACTIONS(2483), - [anon_sym__Noreturn] = ACTIONS(2483), - [anon_sym_noreturn] = ACTIONS(2483), - [anon_sym__Nonnull] = ACTIONS(2483), - [anon_sym_mutable] = ACTIONS(2483), - [anon_sym_constinit] = ACTIONS(2483), - [anon_sym_consteval] = ACTIONS(2483), - [anon_sym_alignas] = ACTIONS(2483), - [anon_sym__Alignas] = ACTIONS(2483), - [sym_primitive_type] = ACTIONS(2483), - [anon_sym_enum] = ACTIONS(2483), - [anon_sym_class] = ACTIONS(2483), - [anon_sym_struct] = ACTIONS(2483), - [anon_sym_union] = ACTIONS(2483), - [anon_sym_if] = ACTIONS(2483), - [anon_sym_else] = ACTIONS(2483), - [anon_sym_switch] = ACTIONS(2483), - [anon_sym_case] = ACTIONS(2483), - [anon_sym_default] = ACTIONS(2483), - [anon_sym_while] = ACTIONS(2483), - [anon_sym_do] = ACTIONS(2483), - [anon_sym_for] = ACTIONS(2483), - [anon_sym_return] = ACTIONS(2483), - [anon_sym_break] = ACTIONS(2483), - [anon_sym_continue] = ACTIONS(2483), - [anon_sym_goto] = ACTIONS(2483), - [anon_sym___try] = ACTIONS(2483), - [anon_sym___leave] = ACTIONS(2483), - [anon_sym_not] = ACTIONS(2483), - [anon_sym_compl] = ACTIONS(2483), - [anon_sym_DASH_DASH] = ACTIONS(2485), - [anon_sym_PLUS_PLUS] = ACTIONS(2485), - [anon_sym_sizeof] = ACTIONS(2483), - [anon_sym___alignof__] = ACTIONS(2483), - [anon_sym___alignof] = ACTIONS(2483), - [anon_sym__alignof] = ACTIONS(2483), - [anon_sym_alignof] = ACTIONS(2483), - [anon_sym__Alignof] = ACTIONS(2483), - [anon_sym_offsetof] = ACTIONS(2483), - [anon_sym__Generic] = ACTIONS(2483), - [anon_sym_asm] = ACTIONS(2483), - [anon_sym___asm__] = ACTIONS(2483), - [anon_sym___asm] = ACTIONS(2483), - [sym_number_literal] = ACTIONS(2485), - [anon_sym_L_SQUOTE] = ACTIONS(2485), - [anon_sym_u_SQUOTE] = ACTIONS(2485), - [anon_sym_U_SQUOTE] = ACTIONS(2485), - [anon_sym_u8_SQUOTE] = ACTIONS(2485), - [anon_sym_SQUOTE] = ACTIONS(2485), - [anon_sym_L_DQUOTE] = ACTIONS(2485), - [anon_sym_u_DQUOTE] = ACTIONS(2485), - [anon_sym_U_DQUOTE] = ACTIONS(2485), - [anon_sym_u8_DQUOTE] = ACTIONS(2485), - [anon_sym_DQUOTE] = ACTIONS(2485), - [sym_true] = ACTIONS(2483), - [sym_false] = ACTIONS(2483), - [anon_sym_NULL] = ACTIONS(2483), - [anon_sym_nullptr] = ACTIONS(2483), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2483), - [anon_sym_decltype] = ACTIONS(2483), - [anon_sym_explicit] = ACTIONS(2483), - [anon_sym_typename] = ACTIONS(2483), - [anon_sym_template] = ACTIONS(2483), - [anon_sym_operator] = ACTIONS(2483), - [anon_sym_try] = ACTIONS(2483), - [anon_sym_delete] = ACTIONS(2483), - [anon_sym_throw] = ACTIONS(2483), - [anon_sym_namespace] = ACTIONS(2483), - [anon_sym_static_assert] = ACTIONS(2483), - [anon_sym_concept] = ACTIONS(2483), - [anon_sym_co_return] = ACTIONS(2483), - [anon_sym_co_yield] = ACTIONS(2483), - [anon_sym_catch] = ACTIONS(3240), - [anon_sym_R_DQUOTE] = ACTIONS(2485), - [anon_sym_LR_DQUOTE] = ACTIONS(2485), - [anon_sym_uR_DQUOTE] = ACTIONS(2485), - [anon_sym_UR_DQUOTE] = ACTIONS(2485), - [anon_sym_u8R_DQUOTE] = ACTIONS(2485), - [anon_sym_co_await] = ACTIONS(2483), - [anon_sym_new] = ACTIONS(2483), - [anon_sym_requires] = ACTIONS(2483), - [sym_this] = ACTIONS(2483), + [415] = { + [ts_builtin_sym_end] = ACTIONS(2657), + [sym_identifier] = ACTIONS(2655), + [aux_sym_preproc_include_token1] = ACTIONS(2655), + [aux_sym_preproc_def_token1] = ACTIONS(2655), + [aux_sym_preproc_if_token1] = ACTIONS(2655), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2655), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2655), + [sym_preproc_directive] = ACTIONS(2655), + [anon_sym_LPAREN2] = ACTIONS(2657), + [anon_sym_BANG] = ACTIONS(2657), + [anon_sym_TILDE] = ACTIONS(2657), + [anon_sym_DASH] = ACTIONS(2655), + [anon_sym_PLUS] = ACTIONS(2655), + [anon_sym_STAR] = ACTIONS(2657), + [anon_sym_AMP_AMP] = ACTIONS(2657), + [anon_sym_AMP] = ACTIONS(2655), + [anon_sym_SEMI] = ACTIONS(2657), + [anon_sym___extension__] = ACTIONS(2655), + [anon_sym_typedef] = ACTIONS(2655), + [anon_sym_virtual] = ACTIONS(2655), + [anon_sym_extern] = ACTIONS(2655), + [anon_sym___attribute__] = ACTIONS(2655), + [anon_sym___attribute] = ACTIONS(2655), + [anon_sym_using] = ACTIONS(2655), + [anon_sym_COLON_COLON] = ACTIONS(2657), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2657), + [anon_sym___declspec] = ACTIONS(2655), + [anon_sym___based] = ACTIONS(2655), + [anon_sym___cdecl] = ACTIONS(2655), + [anon_sym___clrcall] = ACTIONS(2655), + [anon_sym___stdcall] = ACTIONS(2655), + [anon_sym___fastcall] = ACTIONS(2655), + [anon_sym___thiscall] = ACTIONS(2655), + [anon_sym___vectorcall] = ACTIONS(2655), + [anon_sym_LBRACE] = ACTIONS(2657), + [anon_sym_signed] = ACTIONS(2655), + [anon_sym_unsigned] = ACTIONS(2655), + [anon_sym_long] = ACTIONS(2655), + [anon_sym_short] = ACTIONS(2655), + [anon_sym_LBRACK] = ACTIONS(2655), + [anon_sym_static] = ACTIONS(2655), + [anon_sym_register] = ACTIONS(2655), + [anon_sym_inline] = ACTIONS(2655), + [anon_sym___inline] = ACTIONS(2655), + [anon_sym___inline__] = ACTIONS(2655), + [anon_sym___forceinline] = ACTIONS(2655), + [anon_sym_thread_local] = ACTIONS(2655), + [anon_sym___thread] = ACTIONS(2655), + [anon_sym_const] = ACTIONS(2655), + [anon_sym_constexpr] = ACTIONS(2655), + [anon_sym_volatile] = ACTIONS(2655), + [anon_sym_restrict] = ACTIONS(2655), + [anon_sym___restrict__] = ACTIONS(2655), + [anon_sym__Atomic] = ACTIONS(2655), + [anon_sym__Noreturn] = ACTIONS(2655), + [anon_sym_noreturn] = ACTIONS(2655), + [anon_sym__Nonnull] = ACTIONS(2655), + [anon_sym_mutable] = ACTIONS(2655), + [anon_sym_constinit] = ACTIONS(2655), + [anon_sym_consteval] = ACTIONS(2655), + [anon_sym_alignas] = ACTIONS(2655), + [anon_sym__Alignas] = ACTIONS(2655), + [sym_primitive_type] = ACTIONS(2655), + [anon_sym_enum] = ACTIONS(2655), + [anon_sym_class] = ACTIONS(2655), + [anon_sym_struct] = ACTIONS(2655), + [anon_sym_union] = ACTIONS(2655), + [anon_sym_if] = ACTIONS(2655), + [anon_sym_else] = ACTIONS(2655), + [anon_sym_switch] = ACTIONS(2655), + [anon_sym_case] = ACTIONS(2655), + [anon_sym_default] = ACTIONS(2655), + [anon_sym_while] = ACTIONS(2655), + [anon_sym_do] = ACTIONS(2655), + [anon_sym_for] = ACTIONS(2655), + [anon_sym_return] = ACTIONS(2655), + [anon_sym_break] = ACTIONS(2655), + [anon_sym_continue] = ACTIONS(2655), + [anon_sym_goto] = ACTIONS(2655), + [anon_sym___try] = ACTIONS(2655), + [anon_sym___leave] = ACTIONS(2655), + [anon_sym_not] = ACTIONS(2655), + [anon_sym_compl] = ACTIONS(2655), + [anon_sym_DASH_DASH] = ACTIONS(2657), + [anon_sym_PLUS_PLUS] = ACTIONS(2657), + [anon_sym_sizeof] = ACTIONS(2655), + [anon_sym___alignof__] = ACTIONS(2655), + [anon_sym___alignof] = ACTIONS(2655), + [anon_sym__alignof] = ACTIONS(2655), + [anon_sym_alignof] = ACTIONS(2655), + [anon_sym__Alignof] = ACTIONS(2655), + [anon_sym_offsetof] = ACTIONS(2655), + [anon_sym__Generic] = ACTIONS(2655), + [anon_sym_asm] = ACTIONS(2655), + [anon_sym___asm__] = ACTIONS(2655), + [anon_sym___asm] = ACTIONS(2655), + [sym_number_literal] = ACTIONS(2657), + [anon_sym_L_SQUOTE] = ACTIONS(2657), + [anon_sym_u_SQUOTE] = ACTIONS(2657), + [anon_sym_U_SQUOTE] = ACTIONS(2657), + [anon_sym_u8_SQUOTE] = ACTIONS(2657), + [anon_sym_SQUOTE] = ACTIONS(2657), + [anon_sym_L_DQUOTE] = ACTIONS(2657), + [anon_sym_u_DQUOTE] = ACTIONS(2657), + [anon_sym_U_DQUOTE] = ACTIONS(2657), + [anon_sym_u8_DQUOTE] = ACTIONS(2657), + [anon_sym_DQUOTE] = ACTIONS(2657), + [sym_true] = ACTIONS(2655), + [sym_false] = ACTIONS(2655), + [anon_sym_NULL] = ACTIONS(2655), + [anon_sym_nullptr] = ACTIONS(2655), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2655), + [anon_sym_decltype] = ACTIONS(2655), + [anon_sym_explicit] = ACTIONS(2655), + [anon_sym_typename] = ACTIONS(2655), + [anon_sym_export] = ACTIONS(2655), + [anon_sym_module] = ACTIONS(2655), + [anon_sym_import] = ACTIONS(2655), + [anon_sym_template] = ACTIONS(2655), + [anon_sym_operator] = ACTIONS(2655), + [anon_sym_try] = ACTIONS(2655), + [anon_sym_delete] = ACTIONS(2655), + [anon_sym_throw] = ACTIONS(2655), + [anon_sym_namespace] = ACTIONS(2655), + [anon_sym_static_assert] = ACTIONS(2655), + [anon_sym_concept] = ACTIONS(2655), + [anon_sym_co_return] = ACTIONS(2655), + [anon_sym_co_yield] = ACTIONS(2655), + [anon_sym_R_DQUOTE] = ACTIONS(2657), + [anon_sym_LR_DQUOTE] = ACTIONS(2657), + [anon_sym_uR_DQUOTE] = ACTIONS(2657), + [anon_sym_UR_DQUOTE] = ACTIONS(2657), + [anon_sym_u8R_DQUOTE] = ACTIONS(2657), + [anon_sym_co_await] = ACTIONS(2655), + [anon_sym_new] = ACTIONS(2655), + [anon_sym_requires] = ACTIONS(2655), + [sym_this] = ACTIONS(2655), }, - [410] = { - [sym_type_qualifier] = STATE(3910), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(4737), - [sym_sized_type_specifier] = STATE(2668), - [sym_enum_specifier] = STATE(2668), - [sym_struct_specifier] = STATE(2668), - [sym_union_specifier] = STATE(2668), - [sym_expression] = STATE(4367), - [sym__string] = STATE(4738), - [sym_conditional_expression] = STATE(4829), - [sym_assignment_expression] = STATE(4829), - [sym_pointer_expression] = STATE(3602), - [sym_unary_expression] = STATE(4829), - [sym_binary_expression] = STATE(4829), - [sym_update_expression] = STATE(4829), - [sym_cast_expression] = STATE(4829), - [sym_type_descriptor] = STATE(7119), - [sym_sizeof_expression] = STATE(4829), - [sym_alignof_expression] = STATE(4829), - [sym_offsetof_expression] = STATE(4829), - [sym_generic_expression] = STATE(4829), - [sym_subscript_expression] = STATE(3602), - [sym_call_expression] = STATE(3602), - [sym_gnu_asm_expression] = STATE(4829), - [sym_extension_expression] = STATE(4829), - [sym_field_expression] = STATE(3602), - [sym_compound_literal_expression] = STATE(4829), - [sym_parenthesized_expression] = STATE(3602), - [sym_char_literal] = STATE(4738), - [sym_concatenated_string] = STATE(4738), - [sym_string_literal] = STATE(3759), - [sym_null] = STATE(4829), - [sym_placeholder_type_specifier] = STATE(2668), - [sym_decltype_auto] = STATE(2708), - [sym_decltype] = STATE(2598), - [sym_class_specifier] = STATE(2668), - [sym__class_name] = STATE(7804), - [sym_dependent_type] = STATE(2668), - [sym_template_type] = STATE(5285), - [sym_template_function] = STATE(4829), - [sym_raw_string_literal] = STATE(3759), - [sym_co_await_expression] = STATE(4829), - [sym_new_expression] = STATE(4829), - [sym_delete_expression] = STATE(4829), - [sym_requires_clause] = STATE(4829), - [sym_requires_expression] = STATE(4829), - [sym_lambda_expression] = STATE(4829), - [sym_lambda_capture_specifier] = STATE(5401), - [sym_fold_expression] = STATE(4829), - [sym_parameter_pack_expansion] = STATE(4829), - [sym_type_parameter_pack_expansion] = STATE(7540), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5750), - [sym_qualified_identifier] = STATE(3602), - [sym_qualified_type_identifier] = STATE(5327), - [sym_user_defined_literal] = STATE(3602), - [aux_sym__type_definition_type_repeat1] = STATE(3910), - [aux_sym_sized_type_specifier_repeat1] = STATE(4239), - [sym_identifier] = ACTIONS(3116), - [anon_sym_LPAREN2] = ACTIONS(3118), - [anon_sym_BANG] = ACTIONS(3120), - [anon_sym_TILDE] = ACTIONS(3120), - [anon_sym_DASH] = ACTIONS(3122), - [anon_sym_PLUS] = ACTIONS(3122), - [anon_sym_STAR] = ACTIONS(3124), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym___extension__] = ACTIONS(3126), - [anon_sym_COLON_COLON] = ACTIONS(3128), - [anon_sym_signed] = ACTIONS(3130), - [anon_sym_unsigned] = ACTIONS(3130), - [anon_sym_long] = ACTIONS(3130), - [anon_sym_short] = ACTIONS(3130), + [416] = { + [sym_type_qualifier] = STATE(3954), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(4767), + [sym_sized_type_specifier] = STATE(2747), + [sym_enum_specifier] = STATE(2747), + [sym_struct_specifier] = STATE(2747), + [sym_union_specifier] = STATE(2747), + [sym_expression] = STATE(4402), + [sym__string] = STATE(4825), + [sym_conditional_expression] = STATE(4856), + [sym_assignment_expression] = STATE(4856), + [sym_pointer_expression] = STATE(3701), + [sym_unary_expression] = STATE(4856), + [sym_binary_expression] = STATE(4856), + [sym_update_expression] = STATE(4856), + [sym_cast_expression] = STATE(4856), + [sym_type_descriptor] = STATE(7234), + [sym_sizeof_expression] = STATE(4856), + [sym_alignof_expression] = STATE(4856), + [sym_offsetof_expression] = STATE(4856), + [sym_generic_expression] = STATE(4856), + [sym_subscript_expression] = STATE(3701), + [sym_call_expression] = STATE(3701), + [sym_gnu_asm_expression] = STATE(4856), + [sym_extension_expression] = STATE(4856), + [sym_field_expression] = STATE(3701), + [sym_compound_literal_expression] = STATE(4856), + [sym_parenthesized_expression] = STATE(3701), + [sym_char_literal] = STATE(4825), + [sym_concatenated_string] = STATE(4825), + [sym_string_literal] = STATE(3812), + [sym_null] = STATE(4856), + [sym_placeholder_type_specifier] = STATE(2747), + [sym_decltype_auto] = STATE(2733), + [sym_decltype] = STATE(2621), + [sym_class_specifier] = STATE(2747), + [sym__class_name] = STATE(7816), + [sym_dependent_type] = STATE(2747), + [sym_template_type] = STATE(5365), + [sym_template_function] = STATE(4856), + [sym_raw_string_literal] = STATE(3812), + [sym_co_await_expression] = STATE(4856), + [sym_new_expression] = STATE(4856), + [sym_delete_expression] = STATE(4856), + [sym_requires_clause] = STATE(4856), + [sym_requires_expression] = STATE(4856), + [sym_lambda_expression] = STATE(4856), + [sym_lambda_capture_specifier] = STATE(5489), + [sym_fold_expression] = STATE(4856), + [sym_parameter_pack_expansion] = STATE(4856), + [sym_type_parameter_pack_expansion] = STATE(7672), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5742), + [sym_qualified_identifier] = STATE(3701), + [sym_qualified_type_identifier] = STATE(5382), + [sym_user_defined_literal] = STATE(3701), + [aux_sym__type_definition_type_repeat1] = STATE(3954), + [aux_sym_sized_type_specifier_repeat1] = STATE(4313), + [sym_identifier] = ACTIONS(3128), + [anon_sym_LPAREN2] = ACTIONS(3130), + [anon_sym_BANG] = ACTIONS(3132), + [anon_sym_TILDE] = ACTIONS(3132), + [anon_sym_DASH] = ACTIONS(3134), + [anon_sym_PLUS] = ACTIONS(3134), + [anon_sym_STAR] = ACTIONS(3136), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym___extension__] = ACTIONS(3138), + [anon_sym_COLON_COLON] = ACTIONS(3140), + [anon_sym_signed] = ACTIONS(3142), + [anon_sym_unsigned] = ACTIONS(3142), + [anon_sym_long] = ACTIONS(3142), + [anon_sym_short] = ACTIONS(3142), [anon_sym_LBRACK] = ACTIONS(2020), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), @@ -102554,131 +103681,271 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(3132), - [anon_sym_enum] = ACTIONS(3134), - [anon_sym_class] = ACTIONS(3136), - [anon_sym_struct] = ACTIONS(3138), - [anon_sym_union] = ACTIONS(3140), - [anon_sym_not] = ACTIONS(3122), - [anon_sym_compl] = ACTIONS(3122), - [anon_sym_DASH_DASH] = ACTIONS(3142), - [anon_sym_PLUS_PLUS] = ACTIONS(3142), - [anon_sym_sizeof] = ACTIONS(3144), - [anon_sym___alignof__] = ACTIONS(3146), - [anon_sym___alignof] = ACTIONS(3146), - [anon_sym__alignof] = ACTIONS(3146), - [anon_sym_alignof] = ACTIONS(3146), - [anon_sym__Alignof] = ACTIONS(3146), - [anon_sym_offsetof] = ACTIONS(3148), - [anon_sym__Generic] = ACTIONS(3150), - [anon_sym_asm] = ACTIONS(3152), - [anon_sym___asm__] = ACTIONS(3152), - [anon_sym___asm] = ACTIONS(3152), - [sym_number_literal] = ACTIONS(3154), - [anon_sym_L_SQUOTE] = ACTIONS(3156), - [anon_sym_u_SQUOTE] = ACTIONS(3156), - [anon_sym_U_SQUOTE] = ACTIONS(3156), - [anon_sym_u8_SQUOTE] = ACTIONS(3156), - [anon_sym_SQUOTE] = ACTIONS(3156), - [anon_sym_L_DQUOTE] = ACTIONS(3158), - [anon_sym_u_DQUOTE] = ACTIONS(3158), - [anon_sym_U_DQUOTE] = ACTIONS(3158), - [anon_sym_u8_DQUOTE] = ACTIONS(3158), - [anon_sym_DQUOTE] = ACTIONS(3158), - [sym_true] = ACTIONS(3160), - [sym_false] = ACTIONS(3160), - [anon_sym_NULL] = ACTIONS(3162), - [anon_sym_nullptr] = ACTIONS(3162), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3164), - [anon_sym_decltype] = ACTIONS(3166), - [anon_sym_typename] = ACTIONS(3168), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_GT2] = ACTIONS(3242), - [anon_sym_delete] = ACTIONS(3172), - [anon_sym_R_DQUOTE] = ACTIONS(3174), - [anon_sym_LR_DQUOTE] = ACTIONS(3174), - [anon_sym_uR_DQUOTE] = ACTIONS(3174), - [anon_sym_UR_DQUOTE] = ACTIONS(3174), - [anon_sym_u8R_DQUOTE] = ACTIONS(3174), - [anon_sym_co_await] = ACTIONS(3176), - [anon_sym_new] = ACTIONS(3178), - [anon_sym_requires] = ACTIONS(3180), - [sym_this] = ACTIONS(3160), + [sym_primitive_type] = ACTIONS(3144), + [anon_sym_enum] = ACTIONS(3146), + [anon_sym_class] = ACTIONS(3148), + [anon_sym_struct] = ACTIONS(3150), + [anon_sym_union] = ACTIONS(3152), + [anon_sym_not] = ACTIONS(3134), + [anon_sym_compl] = ACTIONS(3134), + [anon_sym_DASH_DASH] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_sizeof] = ACTIONS(3156), + [anon_sym___alignof__] = ACTIONS(3158), + [anon_sym___alignof] = ACTIONS(3158), + [anon_sym__alignof] = ACTIONS(3158), + [anon_sym_alignof] = ACTIONS(3158), + [anon_sym__Alignof] = ACTIONS(3158), + [anon_sym_offsetof] = ACTIONS(3160), + [anon_sym__Generic] = ACTIONS(3162), + [anon_sym_asm] = ACTIONS(3164), + [anon_sym___asm__] = ACTIONS(3164), + [anon_sym___asm] = ACTIONS(3164), + [sym_number_literal] = ACTIONS(3166), + [anon_sym_L_SQUOTE] = ACTIONS(3168), + [anon_sym_u_SQUOTE] = ACTIONS(3168), + [anon_sym_U_SQUOTE] = ACTIONS(3168), + [anon_sym_u8_SQUOTE] = ACTIONS(3168), + [anon_sym_SQUOTE] = ACTIONS(3168), + [anon_sym_L_DQUOTE] = ACTIONS(3170), + [anon_sym_u_DQUOTE] = ACTIONS(3170), + [anon_sym_U_DQUOTE] = ACTIONS(3170), + [anon_sym_u8_DQUOTE] = ACTIONS(3170), + [anon_sym_DQUOTE] = ACTIONS(3170), + [sym_true] = ACTIONS(3172), + [sym_false] = ACTIONS(3172), + [anon_sym_NULL] = ACTIONS(3174), + [anon_sym_nullptr] = ACTIONS(3174), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3176), + [anon_sym_decltype] = ACTIONS(3178), + [anon_sym_typename] = ACTIONS(3180), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_GT2] = ACTIONS(3246), + [anon_sym_delete] = ACTIONS(3184), + [anon_sym_R_DQUOTE] = ACTIONS(3186), + [anon_sym_LR_DQUOTE] = ACTIONS(3186), + [anon_sym_uR_DQUOTE] = ACTIONS(3186), + [anon_sym_UR_DQUOTE] = ACTIONS(3186), + [anon_sym_u8R_DQUOTE] = ACTIONS(3186), + [anon_sym_co_await] = ACTIONS(3188), + [anon_sym_new] = ACTIONS(3190), + [anon_sym_requires] = ACTIONS(3192), + [sym_this] = ACTIONS(3172), }, - [411] = { - [sym_type_qualifier] = STATE(3910), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(4737), - [sym_sized_type_specifier] = STATE(2668), - [sym_enum_specifier] = STATE(2668), - [sym_struct_specifier] = STATE(2668), - [sym_union_specifier] = STATE(2668), - [sym_expression] = STATE(4391), - [sym__string] = STATE(4738), - [sym_conditional_expression] = STATE(4829), - [sym_assignment_expression] = STATE(4829), - [sym_pointer_expression] = STATE(3602), - [sym_unary_expression] = STATE(4829), - [sym_binary_expression] = STATE(4829), - [sym_update_expression] = STATE(4829), - [sym_cast_expression] = STATE(4829), - [sym_type_descriptor] = STATE(7025), - [sym_sizeof_expression] = STATE(4829), - [sym_alignof_expression] = STATE(4829), - [sym_offsetof_expression] = STATE(4829), - [sym_generic_expression] = STATE(4829), - [sym_subscript_expression] = STATE(3602), - [sym_call_expression] = STATE(3602), - [sym_gnu_asm_expression] = STATE(4829), - [sym_extension_expression] = STATE(4829), - [sym_field_expression] = STATE(3602), - [sym_compound_literal_expression] = STATE(4829), - [sym_parenthesized_expression] = STATE(3602), - [sym_char_literal] = STATE(4738), - [sym_concatenated_string] = STATE(4738), - [sym_string_literal] = STATE(3759), - [sym_null] = STATE(4829), - [sym_placeholder_type_specifier] = STATE(2668), - [sym_decltype_auto] = STATE(2708), - [sym_decltype] = STATE(2598), - [sym_class_specifier] = STATE(2668), - [sym__class_name] = STATE(7804), - [sym_dependent_type] = STATE(2668), - [sym_template_type] = STATE(5285), - [sym_template_function] = STATE(4829), - [sym_raw_string_literal] = STATE(3759), - [sym_co_await_expression] = STATE(4829), - [sym_new_expression] = STATE(4829), - [sym_delete_expression] = STATE(4829), - [sym_requires_clause] = STATE(4829), - [sym_requires_expression] = STATE(4829), - [sym_lambda_expression] = STATE(4829), - [sym_lambda_capture_specifier] = STATE(5401), - [sym_fold_expression] = STATE(4829), - [sym_parameter_pack_expansion] = STATE(4829), - [sym_type_parameter_pack_expansion] = STATE(7151), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5750), - [sym_qualified_identifier] = STATE(3602), - [sym_qualified_type_identifier] = STATE(5327), - [sym_user_defined_literal] = STATE(3602), - [aux_sym__type_definition_type_repeat1] = STATE(3910), - [aux_sym_sized_type_specifier_repeat1] = STATE(4239), - [sym_identifier] = ACTIONS(3116), - [anon_sym_LPAREN2] = ACTIONS(3118), - [anon_sym_BANG] = ACTIONS(3120), - [anon_sym_TILDE] = ACTIONS(3120), - [anon_sym_DASH] = ACTIONS(3122), - [anon_sym_PLUS] = ACTIONS(3122), - [anon_sym_STAR] = ACTIONS(3124), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym___extension__] = ACTIONS(3126), - [anon_sym_COLON_COLON] = ACTIONS(3128), - [anon_sym_signed] = ACTIONS(3130), - [anon_sym_unsigned] = ACTIONS(3130), - [anon_sym_long] = ACTIONS(3130), - [anon_sym_short] = ACTIONS(3130), + [417] = { + [sym_catch_clause] = STATE(431), + [aux_sym_constructor_try_statement_repeat1] = STATE(431), + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_include_token1] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym___extension__] = ACTIONS(2527), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym___attribute] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym___cdecl] = ACTIONS(2527), + [anon_sym___clrcall] = ACTIONS(2527), + [anon_sym___stdcall] = ACTIONS(2527), + [anon_sym___fastcall] = ACTIONS(2527), + [anon_sym___thiscall] = ACTIONS(2527), + [anon_sym___vectorcall] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_RBRACE] = ACTIONS(2529), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym___inline] = ACTIONS(2527), + [anon_sym___inline__] = ACTIONS(2527), + [anon_sym___forceinline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym___thread] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym___restrict__] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym__Noreturn] = ACTIONS(2527), + [anon_sym_noreturn] = ACTIONS(2527), + [anon_sym__Nonnull] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_alignas] = ACTIONS(2527), + [anon_sym__Alignas] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_case] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym___try] = ACTIONS(2527), + [anon_sym___leave] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [anon_sym___alignof__] = ACTIONS(2527), + [anon_sym___alignof] = ACTIONS(2527), + [anon_sym__alignof] = ACTIONS(2527), + [anon_sym_alignof] = ACTIONS(2527), + [anon_sym__Alignof] = ACTIONS(2527), + [anon_sym_offsetof] = ACTIONS(2527), + [anon_sym__Generic] = ACTIONS(2527), + [anon_sym_asm] = ACTIONS(2527), + [anon_sym___asm__] = ACTIONS(2527), + [anon_sym___asm] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [anon_sym_NULL] = ACTIONS(2527), + [anon_sym_nullptr] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_namespace] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_concept] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_catch] = ACTIONS(3248), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + }, + [418] = { + [sym_type_qualifier] = STATE(3954), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(4767), + [sym_sized_type_specifier] = STATE(2747), + [sym_enum_specifier] = STATE(2747), + [sym_struct_specifier] = STATE(2747), + [sym_union_specifier] = STATE(2747), + [sym_expression] = STATE(4450), + [sym__string] = STATE(4825), + [sym_conditional_expression] = STATE(4856), + [sym_assignment_expression] = STATE(4856), + [sym_pointer_expression] = STATE(3701), + [sym_unary_expression] = STATE(4856), + [sym_binary_expression] = STATE(4856), + [sym_update_expression] = STATE(4856), + [sym_cast_expression] = STATE(4856), + [sym_type_descriptor] = STATE(7047), + [sym_sizeof_expression] = STATE(4856), + [sym_alignof_expression] = STATE(4856), + [sym_offsetof_expression] = STATE(4856), + [sym_generic_expression] = STATE(4856), + [sym_subscript_expression] = STATE(3701), + [sym_call_expression] = STATE(3701), + [sym_gnu_asm_expression] = STATE(4856), + [sym_extension_expression] = STATE(4856), + [sym_field_expression] = STATE(3701), + [sym_compound_literal_expression] = STATE(4856), + [sym_parenthesized_expression] = STATE(3701), + [sym_char_literal] = STATE(4825), + [sym_concatenated_string] = STATE(4825), + [sym_string_literal] = STATE(3812), + [sym_null] = STATE(4856), + [sym_placeholder_type_specifier] = STATE(2747), + [sym_decltype_auto] = STATE(2733), + [sym_decltype] = STATE(2621), + [sym_class_specifier] = STATE(2747), + [sym__class_name] = STATE(7816), + [sym_dependent_type] = STATE(2747), + [sym_template_type] = STATE(5365), + [sym_template_function] = STATE(4856), + [sym_raw_string_literal] = STATE(3812), + [sym_co_await_expression] = STATE(4856), + [sym_new_expression] = STATE(4856), + [sym_delete_expression] = STATE(4856), + [sym_requires_clause] = STATE(4856), + [sym_requires_expression] = STATE(4856), + [sym_lambda_expression] = STATE(4856), + [sym_lambda_capture_specifier] = STATE(5489), + [sym_fold_expression] = STATE(4856), + [sym_parameter_pack_expansion] = STATE(4856), + [sym_type_parameter_pack_expansion] = STATE(7570), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5742), + [sym_qualified_identifier] = STATE(3701), + [sym_qualified_type_identifier] = STATE(5382), + [sym_user_defined_literal] = STATE(3701), + [aux_sym__type_definition_type_repeat1] = STATE(3954), + [aux_sym_sized_type_specifier_repeat1] = STATE(4313), + [sym_identifier] = ACTIONS(3128), + [anon_sym_LPAREN2] = ACTIONS(3130), + [anon_sym_BANG] = ACTIONS(3132), + [anon_sym_TILDE] = ACTIONS(3132), + [anon_sym_DASH] = ACTIONS(3134), + [anon_sym_PLUS] = ACTIONS(3134), + [anon_sym_STAR] = ACTIONS(3136), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym___extension__] = ACTIONS(3138), + [anon_sym_COLON_COLON] = ACTIONS(3140), + [anon_sym_signed] = ACTIONS(3142), + [anon_sym_unsigned] = ACTIONS(3142), + [anon_sym_long] = ACTIONS(3142), + [anon_sym_short] = ACTIONS(3142), [anon_sym_LBRACK] = ACTIONS(2020), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), @@ -102694,131 +103961,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(3132), - [anon_sym_enum] = ACTIONS(3134), - [anon_sym_class] = ACTIONS(3136), - [anon_sym_struct] = ACTIONS(3138), - [anon_sym_union] = ACTIONS(3140), - [anon_sym_not] = ACTIONS(3122), - [anon_sym_compl] = ACTIONS(3122), - [anon_sym_DASH_DASH] = ACTIONS(3142), - [anon_sym_PLUS_PLUS] = ACTIONS(3142), - [anon_sym_sizeof] = ACTIONS(3144), - [anon_sym___alignof__] = ACTIONS(3146), - [anon_sym___alignof] = ACTIONS(3146), - [anon_sym__alignof] = ACTIONS(3146), - [anon_sym_alignof] = ACTIONS(3146), - [anon_sym__Alignof] = ACTIONS(3146), - [anon_sym_offsetof] = ACTIONS(3148), - [anon_sym__Generic] = ACTIONS(3150), - [anon_sym_asm] = ACTIONS(3152), - [anon_sym___asm__] = ACTIONS(3152), - [anon_sym___asm] = ACTIONS(3152), - [sym_number_literal] = ACTIONS(3154), - [anon_sym_L_SQUOTE] = ACTIONS(3156), - [anon_sym_u_SQUOTE] = ACTIONS(3156), - [anon_sym_U_SQUOTE] = ACTIONS(3156), - [anon_sym_u8_SQUOTE] = ACTIONS(3156), - [anon_sym_SQUOTE] = ACTIONS(3156), - [anon_sym_L_DQUOTE] = ACTIONS(3158), - [anon_sym_u_DQUOTE] = ACTIONS(3158), - [anon_sym_U_DQUOTE] = ACTIONS(3158), - [anon_sym_u8_DQUOTE] = ACTIONS(3158), - [anon_sym_DQUOTE] = ACTIONS(3158), - [sym_true] = ACTIONS(3160), - [sym_false] = ACTIONS(3160), - [anon_sym_NULL] = ACTIONS(3162), - [anon_sym_nullptr] = ACTIONS(3162), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3164), - [anon_sym_decltype] = ACTIONS(3166), - [anon_sym_typename] = ACTIONS(3168), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_GT2] = ACTIONS(3244), - [anon_sym_delete] = ACTIONS(3172), - [anon_sym_R_DQUOTE] = ACTIONS(3174), - [anon_sym_LR_DQUOTE] = ACTIONS(3174), - [anon_sym_uR_DQUOTE] = ACTIONS(3174), - [anon_sym_UR_DQUOTE] = ACTIONS(3174), - [anon_sym_u8R_DQUOTE] = ACTIONS(3174), - [anon_sym_co_await] = ACTIONS(3176), - [anon_sym_new] = ACTIONS(3178), - [anon_sym_requires] = ACTIONS(3180), - [sym_this] = ACTIONS(3160), + [sym_primitive_type] = ACTIONS(3144), + [anon_sym_enum] = ACTIONS(3146), + [anon_sym_class] = ACTIONS(3148), + [anon_sym_struct] = ACTIONS(3150), + [anon_sym_union] = ACTIONS(3152), + [anon_sym_not] = ACTIONS(3134), + [anon_sym_compl] = ACTIONS(3134), + [anon_sym_DASH_DASH] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_sizeof] = ACTIONS(3156), + [anon_sym___alignof__] = ACTIONS(3158), + [anon_sym___alignof] = ACTIONS(3158), + [anon_sym__alignof] = ACTIONS(3158), + [anon_sym_alignof] = ACTIONS(3158), + [anon_sym__Alignof] = ACTIONS(3158), + [anon_sym_offsetof] = ACTIONS(3160), + [anon_sym__Generic] = ACTIONS(3162), + [anon_sym_asm] = ACTIONS(3164), + [anon_sym___asm__] = ACTIONS(3164), + [anon_sym___asm] = ACTIONS(3164), + [sym_number_literal] = ACTIONS(3166), + [anon_sym_L_SQUOTE] = ACTIONS(3168), + [anon_sym_u_SQUOTE] = ACTIONS(3168), + [anon_sym_U_SQUOTE] = ACTIONS(3168), + [anon_sym_u8_SQUOTE] = ACTIONS(3168), + [anon_sym_SQUOTE] = ACTIONS(3168), + [anon_sym_L_DQUOTE] = ACTIONS(3170), + [anon_sym_u_DQUOTE] = ACTIONS(3170), + [anon_sym_U_DQUOTE] = ACTIONS(3170), + [anon_sym_u8_DQUOTE] = ACTIONS(3170), + [anon_sym_DQUOTE] = ACTIONS(3170), + [sym_true] = ACTIONS(3172), + [sym_false] = ACTIONS(3172), + [anon_sym_NULL] = ACTIONS(3174), + [anon_sym_nullptr] = ACTIONS(3174), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3176), + [anon_sym_decltype] = ACTIONS(3178), + [anon_sym_typename] = ACTIONS(3180), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_GT2] = ACTIONS(3250), + [anon_sym_delete] = ACTIONS(3184), + [anon_sym_R_DQUOTE] = ACTIONS(3186), + [anon_sym_LR_DQUOTE] = ACTIONS(3186), + [anon_sym_uR_DQUOTE] = ACTIONS(3186), + [anon_sym_UR_DQUOTE] = ACTIONS(3186), + [anon_sym_u8R_DQUOTE] = ACTIONS(3186), + [anon_sym_co_await] = ACTIONS(3188), + [anon_sym_new] = ACTIONS(3190), + [anon_sym_requires] = ACTIONS(3192), + [sym_this] = ACTIONS(3172), }, - [412] = { - [sym_type_qualifier] = STATE(3910), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(4737), - [sym_sized_type_specifier] = STATE(2668), - [sym_enum_specifier] = STATE(2668), - [sym_struct_specifier] = STATE(2668), - [sym_union_specifier] = STATE(2668), - [sym_expression] = STATE(4405), - [sym__string] = STATE(4738), - [sym_conditional_expression] = STATE(4829), - [sym_assignment_expression] = STATE(4829), - [sym_pointer_expression] = STATE(3602), - [sym_unary_expression] = STATE(4829), - [sym_binary_expression] = STATE(4829), - [sym_update_expression] = STATE(4829), - [sym_cast_expression] = STATE(4829), - [sym_type_descriptor] = STATE(7106), - [sym_sizeof_expression] = STATE(4829), - [sym_alignof_expression] = STATE(4829), - [sym_offsetof_expression] = STATE(4829), - [sym_generic_expression] = STATE(4829), - [sym_subscript_expression] = STATE(3602), - [sym_call_expression] = STATE(3602), - [sym_gnu_asm_expression] = STATE(4829), - [sym_extension_expression] = STATE(4829), - [sym_field_expression] = STATE(3602), - [sym_compound_literal_expression] = STATE(4829), - [sym_parenthesized_expression] = STATE(3602), - [sym_char_literal] = STATE(4738), - [sym_concatenated_string] = STATE(4738), - [sym_string_literal] = STATE(3759), - [sym_null] = STATE(4829), - [sym_placeholder_type_specifier] = STATE(2668), - [sym_decltype_auto] = STATE(2708), - [sym_decltype] = STATE(2598), - [sym_class_specifier] = STATE(2668), - [sym__class_name] = STATE(7804), - [sym_dependent_type] = STATE(2668), - [sym_template_type] = STATE(5285), - [sym_template_function] = STATE(4829), - [sym_raw_string_literal] = STATE(3759), - [sym_co_await_expression] = STATE(4829), - [sym_new_expression] = STATE(4829), - [sym_delete_expression] = STATE(4829), - [sym_requires_clause] = STATE(4829), - [sym_requires_expression] = STATE(4829), - [sym_lambda_expression] = STATE(4829), - [sym_lambda_capture_specifier] = STATE(5401), - [sym_fold_expression] = STATE(4829), - [sym_parameter_pack_expansion] = STATE(4829), - [sym_type_parameter_pack_expansion] = STATE(7171), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5750), - [sym_qualified_identifier] = STATE(3602), - [sym_qualified_type_identifier] = STATE(5327), - [sym_user_defined_literal] = STATE(3602), - [aux_sym__type_definition_type_repeat1] = STATE(3910), - [aux_sym_sized_type_specifier_repeat1] = STATE(4239), - [sym_identifier] = ACTIONS(3116), - [anon_sym_LPAREN2] = ACTIONS(3118), - [anon_sym_BANG] = ACTIONS(3120), - [anon_sym_TILDE] = ACTIONS(3120), - [anon_sym_DASH] = ACTIONS(3122), - [anon_sym_PLUS] = ACTIONS(3122), - [anon_sym_STAR] = ACTIONS(3124), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym___extension__] = ACTIONS(3126), - [anon_sym_COLON_COLON] = ACTIONS(3128), - [anon_sym_signed] = ACTIONS(3130), - [anon_sym_unsigned] = ACTIONS(3130), - [anon_sym_long] = ACTIONS(3130), - [anon_sym_short] = ACTIONS(3130), + [419] = { + [sym_type_qualifier] = STATE(3954), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(4767), + [sym_sized_type_specifier] = STATE(2747), + [sym_enum_specifier] = STATE(2747), + [sym_struct_specifier] = STATE(2747), + [sym_union_specifier] = STATE(2747), + [sym_expression] = STATE(4457), + [sym__string] = STATE(4825), + [sym_conditional_expression] = STATE(4856), + [sym_assignment_expression] = STATE(4856), + [sym_pointer_expression] = STATE(3701), + [sym_unary_expression] = STATE(4856), + [sym_binary_expression] = STATE(4856), + [sym_update_expression] = STATE(4856), + [sym_cast_expression] = STATE(4856), + [sym_type_descriptor] = STATE(7055), + [sym_sizeof_expression] = STATE(4856), + [sym_alignof_expression] = STATE(4856), + [sym_offsetof_expression] = STATE(4856), + [sym_generic_expression] = STATE(4856), + [sym_subscript_expression] = STATE(3701), + [sym_call_expression] = STATE(3701), + [sym_gnu_asm_expression] = STATE(4856), + [sym_extension_expression] = STATE(4856), + [sym_field_expression] = STATE(3701), + [sym_compound_literal_expression] = STATE(4856), + [sym_parenthesized_expression] = STATE(3701), + [sym_char_literal] = STATE(4825), + [sym_concatenated_string] = STATE(4825), + [sym_string_literal] = STATE(3812), + [sym_null] = STATE(4856), + [sym_placeholder_type_specifier] = STATE(2747), + [sym_decltype_auto] = STATE(2733), + [sym_decltype] = STATE(2621), + [sym_class_specifier] = STATE(2747), + [sym__class_name] = STATE(7816), + [sym_dependent_type] = STATE(2747), + [sym_template_type] = STATE(5365), + [sym_template_function] = STATE(4856), + [sym_raw_string_literal] = STATE(3812), + [sym_co_await_expression] = STATE(4856), + [sym_new_expression] = STATE(4856), + [sym_delete_expression] = STATE(4856), + [sym_requires_clause] = STATE(4856), + [sym_requires_expression] = STATE(4856), + [sym_lambda_expression] = STATE(4856), + [sym_lambda_capture_specifier] = STATE(5489), + [sym_fold_expression] = STATE(4856), + [sym_parameter_pack_expansion] = STATE(4856), + [sym_type_parameter_pack_expansion] = STATE(7282), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5742), + [sym_qualified_identifier] = STATE(3701), + [sym_qualified_type_identifier] = STATE(5382), + [sym_user_defined_literal] = STATE(3701), + [aux_sym__type_definition_type_repeat1] = STATE(3954), + [aux_sym_sized_type_specifier_repeat1] = STATE(4313), + [sym_identifier] = ACTIONS(3128), + [anon_sym_LPAREN2] = ACTIONS(3130), + [anon_sym_BANG] = ACTIONS(3132), + [anon_sym_TILDE] = ACTIONS(3132), + [anon_sym_DASH] = ACTIONS(3134), + [anon_sym_PLUS] = ACTIONS(3134), + [anon_sym_STAR] = ACTIONS(3136), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym___extension__] = ACTIONS(3138), + [anon_sym_COLON_COLON] = ACTIONS(3140), + [anon_sym_signed] = ACTIONS(3142), + [anon_sym_unsigned] = ACTIONS(3142), + [anon_sym_long] = ACTIONS(3142), + [anon_sym_short] = ACTIONS(3142), [anon_sym_LBRACK] = ACTIONS(2020), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), @@ -102834,271 +104101,271 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(3132), - [anon_sym_enum] = ACTIONS(3134), - [anon_sym_class] = ACTIONS(3136), - [anon_sym_struct] = ACTIONS(3138), - [anon_sym_union] = ACTIONS(3140), - [anon_sym_not] = ACTIONS(3122), - [anon_sym_compl] = ACTIONS(3122), - [anon_sym_DASH_DASH] = ACTIONS(3142), - [anon_sym_PLUS_PLUS] = ACTIONS(3142), - [anon_sym_sizeof] = ACTIONS(3144), - [anon_sym___alignof__] = ACTIONS(3146), - [anon_sym___alignof] = ACTIONS(3146), - [anon_sym__alignof] = ACTIONS(3146), - [anon_sym_alignof] = ACTIONS(3146), - [anon_sym__Alignof] = ACTIONS(3146), - [anon_sym_offsetof] = ACTIONS(3148), - [anon_sym__Generic] = ACTIONS(3150), - [anon_sym_asm] = ACTIONS(3152), - [anon_sym___asm__] = ACTIONS(3152), - [anon_sym___asm] = ACTIONS(3152), - [sym_number_literal] = ACTIONS(3154), - [anon_sym_L_SQUOTE] = ACTIONS(3156), - [anon_sym_u_SQUOTE] = ACTIONS(3156), - [anon_sym_U_SQUOTE] = ACTIONS(3156), - [anon_sym_u8_SQUOTE] = ACTIONS(3156), - [anon_sym_SQUOTE] = ACTIONS(3156), - [anon_sym_L_DQUOTE] = ACTIONS(3158), - [anon_sym_u_DQUOTE] = ACTIONS(3158), - [anon_sym_U_DQUOTE] = ACTIONS(3158), - [anon_sym_u8_DQUOTE] = ACTIONS(3158), - [anon_sym_DQUOTE] = ACTIONS(3158), - [sym_true] = ACTIONS(3160), - [sym_false] = ACTIONS(3160), - [anon_sym_NULL] = ACTIONS(3162), - [anon_sym_nullptr] = ACTIONS(3162), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3164), - [anon_sym_decltype] = ACTIONS(3166), - [anon_sym_typename] = ACTIONS(3168), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_GT2] = ACTIONS(3246), - [anon_sym_delete] = ACTIONS(3172), - [anon_sym_R_DQUOTE] = ACTIONS(3174), - [anon_sym_LR_DQUOTE] = ACTIONS(3174), - [anon_sym_uR_DQUOTE] = ACTIONS(3174), - [anon_sym_UR_DQUOTE] = ACTIONS(3174), - [anon_sym_u8R_DQUOTE] = ACTIONS(3174), - [anon_sym_co_await] = ACTIONS(3176), - [anon_sym_new] = ACTIONS(3178), - [anon_sym_requires] = ACTIONS(3180), - [sym_this] = ACTIONS(3160), + [sym_primitive_type] = ACTIONS(3144), + [anon_sym_enum] = ACTIONS(3146), + [anon_sym_class] = ACTIONS(3148), + [anon_sym_struct] = ACTIONS(3150), + [anon_sym_union] = ACTIONS(3152), + [anon_sym_not] = ACTIONS(3134), + [anon_sym_compl] = ACTIONS(3134), + [anon_sym_DASH_DASH] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_sizeof] = ACTIONS(3156), + [anon_sym___alignof__] = ACTIONS(3158), + [anon_sym___alignof] = ACTIONS(3158), + [anon_sym__alignof] = ACTIONS(3158), + [anon_sym_alignof] = ACTIONS(3158), + [anon_sym__Alignof] = ACTIONS(3158), + [anon_sym_offsetof] = ACTIONS(3160), + [anon_sym__Generic] = ACTIONS(3162), + [anon_sym_asm] = ACTIONS(3164), + [anon_sym___asm__] = ACTIONS(3164), + [anon_sym___asm] = ACTIONS(3164), + [sym_number_literal] = ACTIONS(3166), + [anon_sym_L_SQUOTE] = ACTIONS(3168), + [anon_sym_u_SQUOTE] = ACTIONS(3168), + [anon_sym_U_SQUOTE] = ACTIONS(3168), + [anon_sym_u8_SQUOTE] = ACTIONS(3168), + [anon_sym_SQUOTE] = ACTIONS(3168), + [anon_sym_L_DQUOTE] = ACTIONS(3170), + [anon_sym_u_DQUOTE] = ACTIONS(3170), + [anon_sym_U_DQUOTE] = ACTIONS(3170), + [anon_sym_u8_DQUOTE] = ACTIONS(3170), + [anon_sym_DQUOTE] = ACTIONS(3170), + [sym_true] = ACTIONS(3172), + [sym_false] = ACTIONS(3172), + [anon_sym_NULL] = ACTIONS(3174), + [anon_sym_nullptr] = ACTIONS(3174), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3176), + [anon_sym_decltype] = ACTIONS(3178), + [anon_sym_typename] = ACTIONS(3180), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_GT2] = ACTIONS(3252), + [anon_sym_delete] = ACTIONS(3184), + [anon_sym_R_DQUOTE] = ACTIONS(3186), + [anon_sym_LR_DQUOTE] = ACTIONS(3186), + [anon_sym_uR_DQUOTE] = ACTIONS(3186), + [anon_sym_UR_DQUOTE] = ACTIONS(3186), + [anon_sym_u8R_DQUOTE] = ACTIONS(3186), + [anon_sym_co_await] = ACTIONS(3188), + [anon_sym_new] = ACTIONS(3190), + [anon_sym_requires] = ACTIONS(3192), + [sym_this] = ACTIONS(3172), }, - [413] = { - [ts_builtin_sym_end] = ACTIONS(2721), - [sym_identifier] = ACTIONS(2719), - [aux_sym_preproc_include_token1] = ACTIONS(2719), - [aux_sym_preproc_def_token1] = ACTIONS(2719), - [aux_sym_preproc_if_token1] = ACTIONS(2719), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2719), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2719), - [sym_preproc_directive] = ACTIONS(2719), - [anon_sym_LPAREN2] = ACTIONS(2721), - [anon_sym_BANG] = ACTIONS(2721), - [anon_sym_TILDE] = ACTIONS(2721), - [anon_sym_DASH] = ACTIONS(2719), - [anon_sym_PLUS] = ACTIONS(2719), - [anon_sym_STAR] = ACTIONS(2721), - [anon_sym_AMP_AMP] = ACTIONS(2721), - [anon_sym_AMP] = ACTIONS(2719), - [anon_sym_SEMI] = ACTIONS(2721), - [anon_sym___extension__] = ACTIONS(2719), - [anon_sym_typedef] = ACTIONS(2719), - [anon_sym_virtual] = ACTIONS(2719), - [anon_sym_extern] = ACTIONS(2719), - [anon_sym___attribute__] = ACTIONS(2719), - [anon_sym___attribute] = ACTIONS(2719), - [anon_sym_using] = ACTIONS(2719), - [anon_sym_COLON_COLON] = ACTIONS(2721), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2721), - [anon_sym___declspec] = ACTIONS(2719), - [anon_sym___based] = ACTIONS(2719), - [anon_sym___cdecl] = ACTIONS(2719), - [anon_sym___clrcall] = ACTIONS(2719), - [anon_sym___stdcall] = ACTIONS(2719), - [anon_sym___fastcall] = ACTIONS(2719), - [anon_sym___thiscall] = ACTIONS(2719), - [anon_sym___vectorcall] = ACTIONS(2719), - [anon_sym_LBRACE] = ACTIONS(2721), - [anon_sym_signed] = ACTIONS(2719), - [anon_sym_unsigned] = ACTIONS(2719), - [anon_sym_long] = ACTIONS(2719), - [anon_sym_short] = ACTIONS(2719), - [anon_sym_LBRACK] = ACTIONS(2719), - [anon_sym_static] = ACTIONS(2719), - [anon_sym_register] = ACTIONS(2719), - [anon_sym_inline] = ACTIONS(2719), - [anon_sym___inline] = ACTIONS(2719), - [anon_sym___inline__] = ACTIONS(2719), - [anon_sym___forceinline] = ACTIONS(2719), - [anon_sym_thread_local] = ACTIONS(2719), - [anon_sym___thread] = ACTIONS(2719), - [anon_sym_const] = ACTIONS(2719), - [anon_sym_constexpr] = ACTIONS(2719), - [anon_sym_volatile] = ACTIONS(2719), - [anon_sym_restrict] = ACTIONS(2719), - [anon_sym___restrict__] = ACTIONS(2719), - [anon_sym__Atomic] = ACTIONS(2719), - [anon_sym__Noreturn] = ACTIONS(2719), - [anon_sym_noreturn] = ACTIONS(2719), - [anon_sym__Nonnull] = ACTIONS(2719), - [anon_sym_mutable] = ACTIONS(2719), - [anon_sym_constinit] = ACTIONS(2719), - [anon_sym_consteval] = ACTIONS(2719), - [anon_sym_alignas] = ACTIONS(2719), - [anon_sym__Alignas] = ACTIONS(2719), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(2719), - [anon_sym_class] = ACTIONS(2719), - [anon_sym_struct] = ACTIONS(2719), - [anon_sym_union] = ACTIONS(2719), - [anon_sym_if] = ACTIONS(2719), - [anon_sym_else] = ACTIONS(2719), - [anon_sym_switch] = ACTIONS(2719), - [anon_sym_case] = ACTIONS(2719), - [anon_sym_default] = ACTIONS(2719), - [anon_sym_while] = ACTIONS(2719), - [anon_sym_do] = ACTIONS(2719), - [anon_sym_for] = ACTIONS(2719), - [anon_sym_return] = ACTIONS(2719), - [anon_sym_break] = ACTIONS(2719), - [anon_sym_continue] = ACTIONS(2719), - [anon_sym_goto] = ACTIONS(2719), - [anon_sym___try] = ACTIONS(2719), - [anon_sym___leave] = ACTIONS(2719), - [anon_sym_not] = ACTIONS(2719), - [anon_sym_compl] = ACTIONS(2719), - [anon_sym_DASH_DASH] = ACTIONS(2721), - [anon_sym_PLUS_PLUS] = ACTIONS(2721), - [anon_sym_sizeof] = ACTIONS(2719), - [anon_sym___alignof__] = ACTIONS(2719), - [anon_sym___alignof] = ACTIONS(2719), - [anon_sym__alignof] = ACTIONS(2719), - [anon_sym_alignof] = ACTIONS(2719), - [anon_sym__Alignof] = ACTIONS(2719), - [anon_sym_offsetof] = ACTIONS(2719), - [anon_sym__Generic] = ACTIONS(2719), - [anon_sym_asm] = ACTIONS(2719), - [anon_sym___asm__] = ACTIONS(2719), - [anon_sym___asm] = ACTIONS(2719), - [sym_number_literal] = ACTIONS(2721), - [anon_sym_L_SQUOTE] = ACTIONS(2721), - [anon_sym_u_SQUOTE] = ACTIONS(2721), - [anon_sym_U_SQUOTE] = ACTIONS(2721), - [anon_sym_u8_SQUOTE] = ACTIONS(2721), - [anon_sym_SQUOTE] = ACTIONS(2721), - [anon_sym_L_DQUOTE] = ACTIONS(2721), - [anon_sym_u_DQUOTE] = ACTIONS(2721), - [anon_sym_U_DQUOTE] = ACTIONS(2721), - [anon_sym_u8_DQUOTE] = ACTIONS(2721), - [anon_sym_DQUOTE] = ACTIONS(2721), - [sym_true] = ACTIONS(2719), - [sym_false] = ACTIONS(2719), - [anon_sym_NULL] = ACTIONS(2719), - [anon_sym_nullptr] = ACTIONS(2719), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2719), - [anon_sym_decltype] = ACTIONS(2719), - [anon_sym_explicit] = ACTIONS(2719), - [anon_sym_typename] = ACTIONS(2719), - [anon_sym_export] = ACTIONS(2719), - [anon_sym_module] = ACTIONS(2719), - [anon_sym_import] = ACTIONS(2719), - [anon_sym_template] = ACTIONS(2719), - [anon_sym_operator] = ACTIONS(2719), - [anon_sym_try] = ACTIONS(2719), - [anon_sym_delete] = ACTIONS(2719), - [anon_sym_throw] = ACTIONS(2719), - [anon_sym_namespace] = ACTIONS(2719), - [anon_sym_static_assert] = ACTIONS(2719), - [anon_sym_concept] = ACTIONS(2719), - [anon_sym_co_return] = ACTIONS(2719), - [anon_sym_co_yield] = ACTIONS(2719), - [anon_sym_R_DQUOTE] = ACTIONS(2721), - [anon_sym_LR_DQUOTE] = ACTIONS(2721), - [anon_sym_uR_DQUOTE] = ACTIONS(2721), - [anon_sym_UR_DQUOTE] = ACTIONS(2721), - [anon_sym_u8R_DQUOTE] = ACTIONS(2721), - [anon_sym_co_await] = ACTIONS(2719), - [anon_sym_new] = ACTIONS(2719), - [anon_sym_requires] = ACTIONS(2719), - [sym_this] = ACTIONS(2719), + [420] = { + [ts_builtin_sym_end] = ACTIONS(2669), + [sym_identifier] = ACTIONS(2667), + [aux_sym_preproc_include_token1] = ACTIONS(2667), + [aux_sym_preproc_def_token1] = ACTIONS(2667), + [aux_sym_preproc_if_token1] = ACTIONS(2667), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2667), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2667), + [sym_preproc_directive] = ACTIONS(2667), + [anon_sym_LPAREN2] = ACTIONS(2669), + [anon_sym_BANG] = ACTIONS(2669), + [anon_sym_TILDE] = ACTIONS(2669), + [anon_sym_DASH] = ACTIONS(2667), + [anon_sym_PLUS] = ACTIONS(2667), + [anon_sym_STAR] = ACTIONS(2669), + [anon_sym_AMP_AMP] = ACTIONS(2669), + [anon_sym_AMP] = ACTIONS(2667), + [anon_sym_SEMI] = ACTIONS(2669), + [anon_sym___extension__] = ACTIONS(2667), + [anon_sym_typedef] = ACTIONS(2667), + [anon_sym_virtual] = ACTIONS(2667), + [anon_sym_extern] = ACTIONS(2667), + [anon_sym___attribute__] = ACTIONS(2667), + [anon_sym___attribute] = ACTIONS(2667), + [anon_sym_using] = ACTIONS(2667), + [anon_sym_COLON_COLON] = ACTIONS(2669), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2669), + [anon_sym___declspec] = ACTIONS(2667), + [anon_sym___based] = ACTIONS(2667), + [anon_sym___cdecl] = ACTIONS(2667), + [anon_sym___clrcall] = ACTIONS(2667), + [anon_sym___stdcall] = ACTIONS(2667), + [anon_sym___fastcall] = ACTIONS(2667), + [anon_sym___thiscall] = ACTIONS(2667), + [anon_sym___vectorcall] = ACTIONS(2667), + [anon_sym_LBRACE] = ACTIONS(2669), + [anon_sym_signed] = ACTIONS(2667), + [anon_sym_unsigned] = ACTIONS(2667), + [anon_sym_long] = ACTIONS(2667), + [anon_sym_short] = ACTIONS(2667), + [anon_sym_LBRACK] = ACTIONS(2667), + [anon_sym_static] = ACTIONS(2667), + [anon_sym_register] = ACTIONS(2667), + [anon_sym_inline] = ACTIONS(2667), + [anon_sym___inline] = ACTIONS(2667), + [anon_sym___inline__] = ACTIONS(2667), + [anon_sym___forceinline] = ACTIONS(2667), + [anon_sym_thread_local] = ACTIONS(2667), + [anon_sym___thread] = ACTIONS(2667), + [anon_sym_const] = ACTIONS(2667), + [anon_sym_constexpr] = ACTIONS(2667), + [anon_sym_volatile] = ACTIONS(2667), + [anon_sym_restrict] = ACTIONS(2667), + [anon_sym___restrict__] = ACTIONS(2667), + [anon_sym__Atomic] = ACTIONS(2667), + [anon_sym__Noreturn] = ACTIONS(2667), + [anon_sym_noreturn] = ACTIONS(2667), + [anon_sym__Nonnull] = ACTIONS(2667), + [anon_sym_mutable] = ACTIONS(2667), + [anon_sym_constinit] = ACTIONS(2667), + [anon_sym_consteval] = ACTIONS(2667), + [anon_sym_alignas] = ACTIONS(2667), + [anon_sym__Alignas] = ACTIONS(2667), + [sym_primitive_type] = ACTIONS(2667), + [anon_sym_enum] = ACTIONS(2667), + [anon_sym_class] = ACTIONS(2667), + [anon_sym_struct] = ACTIONS(2667), + [anon_sym_union] = ACTIONS(2667), + [anon_sym_if] = ACTIONS(2667), + [anon_sym_else] = ACTIONS(2667), + [anon_sym_switch] = ACTIONS(2667), + [anon_sym_case] = ACTIONS(2667), + [anon_sym_default] = ACTIONS(2667), + [anon_sym_while] = ACTIONS(2667), + [anon_sym_do] = ACTIONS(2667), + [anon_sym_for] = ACTIONS(2667), + [anon_sym_return] = ACTIONS(2667), + [anon_sym_break] = ACTIONS(2667), + [anon_sym_continue] = ACTIONS(2667), + [anon_sym_goto] = ACTIONS(2667), + [anon_sym___try] = ACTIONS(2667), + [anon_sym___leave] = ACTIONS(2667), + [anon_sym_not] = ACTIONS(2667), + [anon_sym_compl] = ACTIONS(2667), + [anon_sym_DASH_DASH] = ACTIONS(2669), + [anon_sym_PLUS_PLUS] = ACTIONS(2669), + [anon_sym_sizeof] = ACTIONS(2667), + [anon_sym___alignof__] = ACTIONS(2667), + [anon_sym___alignof] = ACTIONS(2667), + [anon_sym__alignof] = ACTIONS(2667), + [anon_sym_alignof] = ACTIONS(2667), + [anon_sym__Alignof] = ACTIONS(2667), + [anon_sym_offsetof] = ACTIONS(2667), + [anon_sym__Generic] = ACTIONS(2667), + [anon_sym_asm] = ACTIONS(2667), + [anon_sym___asm__] = ACTIONS(2667), + [anon_sym___asm] = ACTIONS(2667), + [sym_number_literal] = ACTIONS(2669), + [anon_sym_L_SQUOTE] = ACTIONS(2669), + [anon_sym_u_SQUOTE] = ACTIONS(2669), + [anon_sym_U_SQUOTE] = ACTIONS(2669), + [anon_sym_u8_SQUOTE] = ACTIONS(2669), + [anon_sym_SQUOTE] = ACTIONS(2669), + [anon_sym_L_DQUOTE] = ACTIONS(2669), + [anon_sym_u_DQUOTE] = ACTIONS(2669), + [anon_sym_U_DQUOTE] = ACTIONS(2669), + [anon_sym_u8_DQUOTE] = ACTIONS(2669), + [anon_sym_DQUOTE] = ACTIONS(2669), + [sym_true] = ACTIONS(2667), + [sym_false] = ACTIONS(2667), + [anon_sym_NULL] = ACTIONS(2667), + [anon_sym_nullptr] = ACTIONS(2667), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2667), + [anon_sym_decltype] = ACTIONS(2667), + [anon_sym_explicit] = ACTIONS(2667), + [anon_sym_typename] = ACTIONS(2667), + [anon_sym_export] = ACTIONS(2667), + [anon_sym_module] = ACTIONS(2667), + [anon_sym_import] = ACTIONS(2667), + [anon_sym_template] = ACTIONS(2667), + [anon_sym_operator] = ACTIONS(2667), + [anon_sym_try] = ACTIONS(2667), + [anon_sym_delete] = ACTIONS(2667), + [anon_sym_throw] = ACTIONS(2667), + [anon_sym_namespace] = ACTIONS(2667), + [anon_sym_static_assert] = ACTIONS(2667), + [anon_sym_concept] = ACTIONS(2667), + [anon_sym_co_return] = ACTIONS(2667), + [anon_sym_co_yield] = ACTIONS(2667), + [anon_sym_R_DQUOTE] = ACTIONS(2669), + [anon_sym_LR_DQUOTE] = ACTIONS(2669), + [anon_sym_uR_DQUOTE] = ACTIONS(2669), + [anon_sym_UR_DQUOTE] = ACTIONS(2669), + [anon_sym_u8R_DQUOTE] = ACTIONS(2669), + [anon_sym_co_await] = ACTIONS(2667), + [anon_sym_new] = ACTIONS(2667), + [anon_sym_requires] = ACTIONS(2667), + [sym_this] = ACTIONS(2667), }, - [414] = { - [sym_type_qualifier] = STATE(3910), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(4737), - [sym_sized_type_specifier] = STATE(2668), - [sym_enum_specifier] = STATE(2668), - [sym_struct_specifier] = STATE(2668), - [sym_union_specifier] = STATE(2668), - [sym_expression] = STATE(4323), - [sym__string] = STATE(4738), - [sym_conditional_expression] = STATE(4829), - [sym_assignment_expression] = STATE(4829), - [sym_pointer_expression] = STATE(3602), - [sym_unary_expression] = STATE(4829), - [sym_binary_expression] = STATE(4829), - [sym_update_expression] = STATE(4829), - [sym_cast_expression] = STATE(4829), - [sym_type_descriptor] = STATE(7040), - [sym_sizeof_expression] = STATE(4829), - [sym_alignof_expression] = STATE(4829), - [sym_offsetof_expression] = STATE(4829), - [sym_generic_expression] = STATE(4829), - [sym_subscript_expression] = STATE(3602), - [sym_call_expression] = STATE(3602), - [sym_gnu_asm_expression] = STATE(4829), - [sym_extension_expression] = STATE(4829), - [sym_field_expression] = STATE(3602), - [sym_compound_literal_expression] = STATE(4829), - [sym_parenthesized_expression] = STATE(3602), - [sym_char_literal] = STATE(4738), - [sym_concatenated_string] = STATE(4738), - [sym_string_literal] = STATE(3759), - [sym_null] = STATE(4829), - [sym_placeholder_type_specifier] = STATE(2668), - [sym_decltype_auto] = STATE(2708), - [sym_decltype] = STATE(2598), - [sym_class_specifier] = STATE(2668), - [sym__class_name] = STATE(7804), - [sym_dependent_type] = STATE(2668), - [sym_template_type] = STATE(5285), - [sym_template_function] = STATE(4829), - [sym_raw_string_literal] = STATE(3759), - [sym_co_await_expression] = STATE(4829), - [sym_new_expression] = STATE(4829), - [sym_delete_expression] = STATE(4829), - [sym_requires_clause] = STATE(4829), - [sym_requires_expression] = STATE(4829), - [sym_lambda_expression] = STATE(4829), - [sym_lambda_capture_specifier] = STATE(5401), - [sym_fold_expression] = STATE(4829), - [sym_parameter_pack_expansion] = STATE(4829), - [sym_type_parameter_pack_expansion] = STATE(7179), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5750), - [sym_qualified_identifier] = STATE(3602), - [sym_qualified_type_identifier] = STATE(5327), - [sym_user_defined_literal] = STATE(3602), - [aux_sym__type_definition_type_repeat1] = STATE(3910), - [aux_sym_sized_type_specifier_repeat1] = STATE(4239), - [sym_identifier] = ACTIONS(3116), - [anon_sym_LPAREN2] = ACTIONS(3118), - [anon_sym_BANG] = ACTIONS(3120), - [anon_sym_TILDE] = ACTIONS(3120), - [anon_sym_DASH] = ACTIONS(3122), - [anon_sym_PLUS] = ACTIONS(3122), - [anon_sym_STAR] = ACTIONS(3124), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym___extension__] = ACTIONS(3126), - [anon_sym_COLON_COLON] = ACTIONS(3128), - [anon_sym_signed] = ACTIONS(3130), - [anon_sym_unsigned] = ACTIONS(3130), - [anon_sym_long] = ACTIONS(3130), - [anon_sym_short] = ACTIONS(3130), + [421] = { + [sym_type_qualifier] = STATE(3954), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(4767), + [sym_sized_type_specifier] = STATE(2747), + [sym_enum_specifier] = STATE(2747), + [sym_struct_specifier] = STATE(2747), + [sym_union_specifier] = STATE(2747), + [sym_expression] = STATE(4462), + [sym__string] = STATE(4825), + [sym_conditional_expression] = STATE(4856), + [sym_assignment_expression] = STATE(4856), + [sym_pointer_expression] = STATE(3701), + [sym_unary_expression] = STATE(4856), + [sym_binary_expression] = STATE(4856), + [sym_update_expression] = STATE(4856), + [sym_cast_expression] = STATE(4856), + [sym_type_descriptor] = STATE(7065), + [sym_sizeof_expression] = STATE(4856), + [sym_alignof_expression] = STATE(4856), + [sym_offsetof_expression] = STATE(4856), + [sym_generic_expression] = STATE(4856), + [sym_subscript_expression] = STATE(3701), + [sym_call_expression] = STATE(3701), + [sym_gnu_asm_expression] = STATE(4856), + [sym_extension_expression] = STATE(4856), + [sym_field_expression] = STATE(3701), + [sym_compound_literal_expression] = STATE(4856), + [sym_parenthesized_expression] = STATE(3701), + [sym_char_literal] = STATE(4825), + [sym_concatenated_string] = STATE(4825), + [sym_string_literal] = STATE(3812), + [sym_null] = STATE(4856), + [sym_placeholder_type_specifier] = STATE(2747), + [sym_decltype_auto] = STATE(2733), + [sym_decltype] = STATE(2621), + [sym_class_specifier] = STATE(2747), + [sym__class_name] = STATE(7816), + [sym_dependent_type] = STATE(2747), + [sym_template_type] = STATE(5365), + [sym_template_function] = STATE(4856), + [sym_raw_string_literal] = STATE(3812), + [sym_co_await_expression] = STATE(4856), + [sym_new_expression] = STATE(4856), + [sym_delete_expression] = STATE(4856), + [sym_requires_clause] = STATE(4856), + [sym_requires_expression] = STATE(4856), + [sym_lambda_expression] = STATE(4856), + [sym_lambda_capture_specifier] = STATE(5489), + [sym_fold_expression] = STATE(4856), + [sym_parameter_pack_expansion] = STATE(4856), + [sym_type_parameter_pack_expansion] = STATE(7374), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5742), + [sym_qualified_identifier] = STATE(3701), + [sym_qualified_type_identifier] = STATE(5382), + [sym_user_defined_literal] = STATE(3701), + [aux_sym__type_definition_type_repeat1] = STATE(3954), + [aux_sym_sized_type_specifier_repeat1] = STATE(4313), + [sym_identifier] = ACTIONS(3128), + [anon_sym_LPAREN2] = ACTIONS(3130), + [anon_sym_BANG] = ACTIONS(3132), + [anon_sym_TILDE] = ACTIONS(3132), + [anon_sym_DASH] = ACTIONS(3134), + [anon_sym_PLUS] = ACTIONS(3134), + [anon_sym_STAR] = ACTIONS(3136), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym___extension__] = ACTIONS(3138), + [anon_sym_COLON_COLON] = ACTIONS(3140), + [anon_sym_signed] = ACTIONS(3142), + [anon_sym_unsigned] = ACTIONS(3142), + [anon_sym_long] = ACTIONS(3142), + [anon_sym_short] = ACTIONS(3142), [anon_sym_LBRACK] = ACTIONS(2020), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), @@ -103114,271 +104381,271 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(3132), - [anon_sym_enum] = ACTIONS(3134), - [anon_sym_class] = ACTIONS(3136), - [anon_sym_struct] = ACTIONS(3138), - [anon_sym_union] = ACTIONS(3140), - [anon_sym_not] = ACTIONS(3122), - [anon_sym_compl] = ACTIONS(3122), - [anon_sym_DASH_DASH] = ACTIONS(3142), - [anon_sym_PLUS_PLUS] = ACTIONS(3142), - [anon_sym_sizeof] = ACTIONS(3144), - [anon_sym___alignof__] = ACTIONS(3146), - [anon_sym___alignof] = ACTIONS(3146), - [anon_sym__alignof] = ACTIONS(3146), - [anon_sym_alignof] = ACTIONS(3146), - [anon_sym__Alignof] = ACTIONS(3146), - [anon_sym_offsetof] = ACTIONS(3148), - [anon_sym__Generic] = ACTIONS(3150), - [anon_sym_asm] = ACTIONS(3152), - [anon_sym___asm__] = ACTIONS(3152), - [anon_sym___asm] = ACTIONS(3152), - [sym_number_literal] = ACTIONS(3154), - [anon_sym_L_SQUOTE] = ACTIONS(3156), - [anon_sym_u_SQUOTE] = ACTIONS(3156), - [anon_sym_U_SQUOTE] = ACTIONS(3156), - [anon_sym_u8_SQUOTE] = ACTIONS(3156), - [anon_sym_SQUOTE] = ACTIONS(3156), - [anon_sym_L_DQUOTE] = ACTIONS(3158), - [anon_sym_u_DQUOTE] = ACTIONS(3158), - [anon_sym_U_DQUOTE] = ACTIONS(3158), - [anon_sym_u8_DQUOTE] = ACTIONS(3158), - [anon_sym_DQUOTE] = ACTIONS(3158), - [sym_true] = ACTIONS(3160), - [sym_false] = ACTIONS(3160), - [anon_sym_NULL] = ACTIONS(3162), - [anon_sym_nullptr] = ACTIONS(3162), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3164), - [anon_sym_decltype] = ACTIONS(3166), - [anon_sym_typename] = ACTIONS(3168), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_GT2] = ACTIONS(3248), - [anon_sym_delete] = ACTIONS(3172), - [anon_sym_R_DQUOTE] = ACTIONS(3174), - [anon_sym_LR_DQUOTE] = ACTIONS(3174), - [anon_sym_uR_DQUOTE] = ACTIONS(3174), - [anon_sym_UR_DQUOTE] = ACTIONS(3174), - [anon_sym_u8R_DQUOTE] = ACTIONS(3174), - [anon_sym_co_await] = ACTIONS(3176), - [anon_sym_new] = ACTIONS(3178), - [anon_sym_requires] = ACTIONS(3180), - [sym_this] = ACTIONS(3160), + [sym_primitive_type] = ACTIONS(3144), + [anon_sym_enum] = ACTIONS(3146), + [anon_sym_class] = ACTIONS(3148), + [anon_sym_struct] = ACTIONS(3150), + [anon_sym_union] = ACTIONS(3152), + [anon_sym_not] = ACTIONS(3134), + [anon_sym_compl] = ACTIONS(3134), + [anon_sym_DASH_DASH] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_sizeof] = ACTIONS(3156), + [anon_sym___alignof__] = ACTIONS(3158), + [anon_sym___alignof] = ACTIONS(3158), + [anon_sym__alignof] = ACTIONS(3158), + [anon_sym_alignof] = ACTIONS(3158), + [anon_sym__Alignof] = ACTIONS(3158), + [anon_sym_offsetof] = ACTIONS(3160), + [anon_sym__Generic] = ACTIONS(3162), + [anon_sym_asm] = ACTIONS(3164), + [anon_sym___asm__] = ACTIONS(3164), + [anon_sym___asm] = ACTIONS(3164), + [sym_number_literal] = ACTIONS(3166), + [anon_sym_L_SQUOTE] = ACTIONS(3168), + [anon_sym_u_SQUOTE] = ACTIONS(3168), + [anon_sym_U_SQUOTE] = ACTIONS(3168), + [anon_sym_u8_SQUOTE] = ACTIONS(3168), + [anon_sym_SQUOTE] = ACTIONS(3168), + [anon_sym_L_DQUOTE] = ACTIONS(3170), + [anon_sym_u_DQUOTE] = ACTIONS(3170), + [anon_sym_U_DQUOTE] = ACTIONS(3170), + [anon_sym_u8_DQUOTE] = ACTIONS(3170), + [anon_sym_DQUOTE] = ACTIONS(3170), + [sym_true] = ACTIONS(3172), + [sym_false] = ACTIONS(3172), + [anon_sym_NULL] = ACTIONS(3174), + [anon_sym_nullptr] = ACTIONS(3174), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3176), + [anon_sym_decltype] = ACTIONS(3178), + [anon_sym_typename] = ACTIONS(3180), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_GT2] = ACTIONS(3254), + [anon_sym_delete] = ACTIONS(3184), + [anon_sym_R_DQUOTE] = ACTIONS(3186), + [anon_sym_LR_DQUOTE] = ACTIONS(3186), + [anon_sym_uR_DQUOTE] = ACTIONS(3186), + [anon_sym_UR_DQUOTE] = ACTIONS(3186), + [anon_sym_u8R_DQUOTE] = ACTIONS(3186), + [anon_sym_co_await] = ACTIONS(3188), + [anon_sym_new] = ACTIONS(3190), + [anon_sym_requires] = ACTIONS(3192), + [sym_this] = ACTIONS(3172), }, - [415] = { - [ts_builtin_sym_end] = ACTIONS(2741), - [sym_identifier] = ACTIONS(2739), - [aux_sym_preproc_include_token1] = ACTIONS(2739), - [aux_sym_preproc_def_token1] = ACTIONS(2739), - [aux_sym_preproc_if_token1] = ACTIONS(2739), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2739), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2739), - [sym_preproc_directive] = ACTIONS(2739), - [anon_sym_LPAREN2] = ACTIONS(2741), - [anon_sym_BANG] = ACTIONS(2741), - [anon_sym_TILDE] = ACTIONS(2741), - [anon_sym_DASH] = ACTIONS(2739), - [anon_sym_PLUS] = ACTIONS(2739), - [anon_sym_STAR] = ACTIONS(2741), - [anon_sym_AMP_AMP] = ACTIONS(2741), - [anon_sym_AMP] = ACTIONS(2739), - [anon_sym_SEMI] = ACTIONS(2741), - [anon_sym___extension__] = ACTIONS(2739), - [anon_sym_typedef] = ACTIONS(2739), - [anon_sym_virtual] = ACTIONS(2739), - [anon_sym_extern] = ACTIONS(2739), - [anon_sym___attribute__] = ACTIONS(2739), - [anon_sym___attribute] = ACTIONS(2739), - [anon_sym_using] = ACTIONS(2739), - [anon_sym_COLON_COLON] = ACTIONS(2741), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2741), - [anon_sym___declspec] = ACTIONS(2739), - [anon_sym___based] = ACTIONS(2739), - [anon_sym___cdecl] = ACTIONS(2739), - [anon_sym___clrcall] = ACTIONS(2739), - [anon_sym___stdcall] = ACTIONS(2739), - [anon_sym___fastcall] = ACTIONS(2739), - [anon_sym___thiscall] = ACTIONS(2739), - [anon_sym___vectorcall] = ACTIONS(2739), - [anon_sym_LBRACE] = ACTIONS(2741), - [anon_sym_signed] = ACTIONS(2739), - [anon_sym_unsigned] = ACTIONS(2739), - [anon_sym_long] = ACTIONS(2739), - [anon_sym_short] = ACTIONS(2739), - [anon_sym_LBRACK] = ACTIONS(2739), - [anon_sym_static] = ACTIONS(2739), - [anon_sym_register] = ACTIONS(2739), - [anon_sym_inline] = ACTIONS(2739), - [anon_sym___inline] = ACTIONS(2739), - [anon_sym___inline__] = ACTIONS(2739), - [anon_sym___forceinline] = ACTIONS(2739), - [anon_sym_thread_local] = ACTIONS(2739), - [anon_sym___thread] = ACTIONS(2739), - [anon_sym_const] = ACTIONS(2739), - [anon_sym_constexpr] = ACTIONS(2739), - [anon_sym_volatile] = ACTIONS(2739), - [anon_sym_restrict] = ACTIONS(2739), - [anon_sym___restrict__] = ACTIONS(2739), - [anon_sym__Atomic] = ACTIONS(2739), - [anon_sym__Noreturn] = ACTIONS(2739), - [anon_sym_noreturn] = ACTIONS(2739), - [anon_sym__Nonnull] = ACTIONS(2739), - [anon_sym_mutable] = ACTIONS(2739), - [anon_sym_constinit] = ACTIONS(2739), - [anon_sym_consteval] = ACTIONS(2739), - [anon_sym_alignas] = ACTIONS(2739), - [anon_sym__Alignas] = ACTIONS(2739), - [sym_primitive_type] = ACTIONS(2739), - [anon_sym_enum] = ACTIONS(2739), - [anon_sym_class] = ACTIONS(2739), - [anon_sym_struct] = ACTIONS(2739), - [anon_sym_union] = ACTIONS(2739), - [anon_sym_if] = ACTIONS(2739), - [anon_sym_else] = ACTIONS(2739), - [anon_sym_switch] = ACTIONS(2739), - [anon_sym_case] = ACTIONS(2739), - [anon_sym_default] = ACTIONS(2739), - [anon_sym_while] = ACTIONS(2739), - [anon_sym_do] = ACTIONS(2739), - [anon_sym_for] = ACTIONS(2739), - [anon_sym_return] = ACTIONS(2739), - [anon_sym_break] = ACTIONS(2739), - [anon_sym_continue] = ACTIONS(2739), - [anon_sym_goto] = ACTIONS(2739), - [anon_sym___try] = ACTIONS(2739), - [anon_sym___leave] = ACTIONS(2739), - [anon_sym_not] = ACTIONS(2739), - [anon_sym_compl] = ACTIONS(2739), - [anon_sym_DASH_DASH] = ACTIONS(2741), - [anon_sym_PLUS_PLUS] = ACTIONS(2741), - [anon_sym_sizeof] = ACTIONS(2739), - [anon_sym___alignof__] = ACTIONS(2739), - [anon_sym___alignof] = ACTIONS(2739), - [anon_sym__alignof] = ACTIONS(2739), - [anon_sym_alignof] = ACTIONS(2739), - [anon_sym__Alignof] = ACTIONS(2739), - [anon_sym_offsetof] = ACTIONS(2739), - [anon_sym__Generic] = ACTIONS(2739), - [anon_sym_asm] = ACTIONS(2739), - [anon_sym___asm__] = ACTIONS(2739), - [anon_sym___asm] = ACTIONS(2739), - [sym_number_literal] = ACTIONS(2741), - [anon_sym_L_SQUOTE] = ACTIONS(2741), - [anon_sym_u_SQUOTE] = ACTIONS(2741), - [anon_sym_U_SQUOTE] = ACTIONS(2741), - [anon_sym_u8_SQUOTE] = ACTIONS(2741), - [anon_sym_SQUOTE] = ACTIONS(2741), - [anon_sym_L_DQUOTE] = ACTIONS(2741), - [anon_sym_u_DQUOTE] = ACTIONS(2741), - [anon_sym_U_DQUOTE] = ACTIONS(2741), - [anon_sym_u8_DQUOTE] = ACTIONS(2741), - [anon_sym_DQUOTE] = ACTIONS(2741), - [sym_true] = ACTIONS(2739), - [sym_false] = ACTIONS(2739), - [anon_sym_NULL] = ACTIONS(2739), - [anon_sym_nullptr] = ACTIONS(2739), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2739), - [anon_sym_decltype] = ACTIONS(2739), - [anon_sym_explicit] = ACTIONS(2739), - [anon_sym_typename] = ACTIONS(2739), - [anon_sym_export] = ACTIONS(2739), - [anon_sym_module] = ACTIONS(2739), - [anon_sym_import] = ACTIONS(2739), - [anon_sym_template] = ACTIONS(2739), - [anon_sym_operator] = ACTIONS(2739), - [anon_sym_try] = ACTIONS(2739), - [anon_sym_delete] = ACTIONS(2739), - [anon_sym_throw] = ACTIONS(2739), - [anon_sym_namespace] = ACTIONS(2739), - [anon_sym_static_assert] = ACTIONS(2739), - [anon_sym_concept] = ACTIONS(2739), - [anon_sym_co_return] = ACTIONS(2739), - [anon_sym_co_yield] = ACTIONS(2739), - [anon_sym_R_DQUOTE] = ACTIONS(2741), - [anon_sym_LR_DQUOTE] = ACTIONS(2741), - [anon_sym_uR_DQUOTE] = ACTIONS(2741), - [anon_sym_UR_DQUOTE] = ACTIONS(2741), - [anon_sym_u8R_DQUOTE] = ACTIONS(2741), - [anon_sym_co_await] = ACTIONS(2739), - [anon_sym_new] = ACTIONS(2739), - [anon_sym_requires] = ACTIONS(2739), - [sym_this] = ACTIONS(2739), + [422] = { + [sym_type_qualifier] = STATE(3954), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(4767), + [sym_sized_type_specifier] = STATE(2747), + [sym_enum_specifier] = STATE(2747), + [sym_struct_specifier] = STATE(2747), + [sym_union_specifier] = STATE(2747), + [sym_expression] = STATE(4386), + [sym__string] = STATE(4825), + [sym_conditional_expression] = STATE(4856), + [sym_assignment_expression] = STATE(4856), + [sym_pointer_expression] = STATE(3701), + [sym_unary_expression] = STATE(4856), + [sym_binary_expression] = STATE(4856), + [sym_update_expression] = STATE(4856), + [sym_cast_expression] = STATE(4856), + [sym_type_descriptor] = STATE(7070), + [sym_sizeof_expression] = STATE(4856), + [sym_alignof_expression] = STATE(4856), + [sym_offsetof_expression] = STATE(4856), + [sym_generic_expression] = STATE(4856), + [sym_subscript_expression] = STATE(3701), + [sym_call_expression] = STATE(3701), + [sym_gnu_asm_expression] = STATE(4856), + [sym_extension_expression] = STATE(4856), + [sym_field_expression] = STATE(3701), + [sym_compound_literal_expression] = STATE(4856), + [sym_parenthesized_expression] = STATE(3701), + [sym_char_literal] = STATE(4825), + [sym_concatenated_string] = STATE(4825), + [sym_string_literal] = STATE(3812), + [sym_null] = STATE(4856), + [sym_placeholder_type_specifier] = STATE(2747), + [sym_decltype_auto] = STATE(2733), + [sym_decltype] = STATE(2621), + [sym_class_specifier] = STATE(2747), + [sym__class_name] = STATE(7816), + [sym_dependent_type] = STATE(2747), + [sym_template_type] = STATE(5365), + [sym_template_function] = STATE(4856), + [sym_raw_string_literal] = STATE(3812), + [sym_co_await_expression] = STATE(4856), + [sym_new_expression] = STATE(4856), + [sym_delete_expression] = STATE(4856), + [sym_requires_clause] = STATE(4856), + [sym_requires_expression] = STATE(4856), + [sym_lambda_expression] = STATE(4856), + [sym_lambda_capture_specifier] = STATE(5489), + [sym_fold_expression] = STATE(4856), + [sym_parameter_pack_expansion] = STATE(4856), + [sym_type_parameter_pack_expansion] = STATE(7429), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5742), + [sym_qualified_identifier] = STATE(3701), + [sym_qualified_type_identifier] = STATE(5382), + [sym_user_defined_literal] = STATE(3701), + [aux_sym__type_definition_type_repeat1] = STATE(3954), + [aux_sym_sized_type_specifier_repeat1] = STATE(4313), + [sym_identifier] = ACTIONS(3128), + [anon_sym_LPAREN2] = ACTIONS(3130), + [anon_sym_BANG] = ACTIONS(3132), + [anon_sym_TILDE] = ACTIONS(3132), + [anon_sym_DASH] = ACTIONS(3134), + [anon_sym_PLUS] = ACTIONS(3134), + [anon_sym_STAR] = ACTIONS(3136), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym___extension__] = ACTIONS(3138), + [anon_sym_COLON_COLON] = ACTIONS(3140), + [anon_sym_signed] = ACTIONS(3142), + [anon_sym_unsigned] = ACTIONS(3142), + [anon_sym_long] = ACTIONS(3142), + [anon_sym_short] = ACTIONS(3142), + [anon_sym_LBRACK] = ACTIONS(2020), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(69), + [anon_sym__Alignas] = ACTIONS(69), + [sym_primitive_type] = ACTIONS(3144), + [anon_sym_enum] = ACTIONS(3146), + [anon_sym_class] = ACTIONS(3148), + [anon_sym_struct] = ACTIONS(3150), + [anon_sym_union] = ACTIONS(3152), + [anon_sym_not] = ACTIONS(3134), + [anon_sym_compl] = ACTIONS(3134), + [anon_sym_DASH_DASH] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_sizeof] = ACTIONS(3156), + [anon_sym___alignof__] = ACTIONS(3158), + [anon_sym___alignof] = ACTIONS(3158), + [anon_sym__alignof] = ACTIONS(3158), + [anon_sym_alignof] = ACTIONS(3158), + [anon_sym__Alignof] = ACTIONS(3158), + [anon_sym_offsetof] = ACTIONS(3160), + [anon_sym__Generic] = ACTIONS(3162), + [anon_sym_asm] = ACTIONS(3164), + [anon_sym___asm__] = ACTIONS(3164), + [anon_sym___asm] = ACTIONS(3164), + [sym_number_literal] = ACTIONS(3166), + [anon_sym_L_SQUOTE] = ACTIONS(3168), + [anon_sym_u_SQUOTE] = ACTIONS(3168), + [anon_sym_U_SQUOTE] = ACTIONS(3168), + [anon_sym_u8_SQUOTE] = ACTIONS(3168), + [anon_sym_SQUOTE] = ACTIONS(3168), + [anon_sym_L_DQUOTE] = ACTIONS(3170), + [anon_sym_u_DQUOTE] = ACTIONS(3170), + [anon_sym_U_DQUOTE] = ACTIONS(3170), + [anon_sym_u8_DQUOTE] = ACTIONS(3170), + [anon_sym_DQUOTE] = ACTIONS(3170), + [sym_true] = ACTIONS(3172), + [sym_false] = ACTIONS(3172), + [anon_sym_NULL] = ACTIONS(3174), + [anon_sym_nullptr] = ACTIONS(3174), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3176), + [anon_sym_decltype] = ACTIONS(3178), + [anon_sym_typename] = ACTIONS(3180), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_GT2] = ACTIONS(3256), + [anon_sym_delete] = ACTIONS(3184), + [anon_sym_R_DQUOTE] = ACTIONS(3186), + [anon_sym_LR_DQUOTE] = ACTIONS(3186), + [anon_sym_uR_DQUOTE] = ACTIONS(3186), + [anon_sym_UR_DQUOTE] = ACTIONS(3186), + [anon_sym_u8R_DQUOTE] = ACTIONS(3186), + [anon_sym_co_await] = ACTIONS(3188), + [anon_sym_new] = ACTIONS(3190), + [anon_sym_requires] = ACTIONS(3192), + [sym_this] = ACTIONS(3172), }, - [416] = { - [sym_type_qualifier] = STATE(3910), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(4737), - [sym_sized_type_specifier] = STATE(2668), - [sym_enum_specifier] = STATE(2668), - [sym_struct_specifier] = STATE(2668), - [sym_union_specifier] = STATE(2668), - [sym_expression] = STATE(4325), - [sym__string] = STATE(4738), - [sym_conditional_expression] = STATE(4829), - [sym_assignment_expression] = STATE(4829), - [sym_pointer_expression] = STATE(3602), - [sym_unary_expression] = STATE(4829), - [sym_binary_expression] = STATE(4829), - [sym_update_expression] = STATE(4829), - [sym_cast_expression] = STATE(4829), - [sym_type_descriptor] = STATE(6938), - [sym_sizeof_expression] = STATE(4829), - [sym_alignof_expression] = STATE(4829), - [sym_offsetof_expression] = STATE(4829), - [sym_generic_expression] = STATE(4829), - [sym_subscript_expression] = STATE(3602), - [sym_call_expression] = STATE(3602), - [sym_gnu_asm_expression] = STATE(4829), - [sym_extension_expression] = STATE(4829), - [sym_field_expression] = STATE(3602), - [sym_compound_literal_expression] = STATE(4829), - [sym_parenthesized_expression] = STATE(3602), - [sym_char_literal] = STATE(4738), - [sym_concatenated_string] = STATE(4738), - [sym_string_literal] = STATE(3759), - [sym_null] = STATE(4829), - [sym_placeholder_type_specifier] = STATE(2668), - [sym_decltype_auto] = STATE(2708), - [sym_decltype] = STATE(2598), - [sym_class_specifier] = STATE(2668), - [sym__class_name] = STATE(7804), - [sym_dependent_type] = STATE(2668), - [sym_template_type] = STATE(5285), - [sym_template_function] = STATE(4829), - [sym_raw_string_literal] = STATE(3759), - [sym_co_await_expression] = STATE(4829), - [sym_new_expression] = STATE(4829), - [sym_delete_expression] = STATE(4829), - [sym_requires_clause] = STATE(4829), - [sym_requires_expression] = STATE(4829), - [sym_lambda_expression] = STATE(4829), - [sym_lambda_capture_specifier] = STATE(5401), - [sym_fold_expression] = STATE(4829), - [sym_parameter_pack_expansion] = STATE(4829), - [sym_type_parameter_pack_expansion] = STATE(7193), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5750), - [sym_qualified_identifier] = STATE(3602), - [sym_qualified_type_identifier] = STATE(5327), - [sym_user_defined_literal] = STATE(3602), - [aux_sym__type_definition_type_repeat1] = STATE(3910), - [aux_sym_sized_type_specifier_repeat1] = STATE(4239), - [sym_identifier] = ACTIONS(3116), - [anon_sym_LPAREN2] = ACTIONS(3118), - [anon_sym_BANG] = ACTIONS(3120), - [anon_sym_TILDE] = ACTIONS(3120), - [anon_sym_DASH] = ACTIONS(3122), - [anon_sym_PLUS] = ACTIONS(3122), - [anon_sym_STAR] = ACTIONS(3124), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym___extension__] = ACTIONS(3126), - [anon_sym_COLON_COLON] = ACTIONS(3128), - [anon_sym_signed] = ACTIONS(3130), - [anon_sym_unsigned] = ACTIONS(3130), - [anon_sym_long] = ACTIONS(3130), - [anon_sym_short] = ACTIONS(3130), + [423] = { + [sym_type_qualifier] = STATE(3954), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(4767), + [sym_sized_type_specifier] = STATE(2747), + [sym_enum_specifier] = STATE(2747), + [sym_struct_specifier] = STATE(2747), + [sym_union_specifier] = STATE(2747), + [sym_expression] = STATE(4397), + [sym__string] = STATE(4825), + [sym_conditional_expression] = STATE(4856), + [sym_assignment_expression] = STATE(4856), + [sym_pointer_expression] = STATE(3701), + [sym_unary_expression] = STATE(4856), + [sym_binary_expression] = STATE(4856), + [sym_update_expression] = STATE(4856), + [sym_cast_expression] = STATE(4856), + [sym_type_descriptor] = STATE(7076), + [sym_sizeof_expression] = STATE(4856), + [sym_alignof_expression] = STATE(4856), + [sym_offsetof_expression] = STATE(4856), + [sym_generic_expression] = STATE(4856), + [sym_subscript_expression] = STATE(3701), + [sym_call_expression] = STATE(3701), + [sym_gnu_asm_expression] = STATE(4856), + [sym_extension_expression] = STATE(4856), + [sym_field_expression] = STATE(3701), + [sym_compound_literal_expression] = STATE(4856), + [sym_parenthesized_expression] = STATE(3701), + [sym_char_literal] = STATE(4825), + [sym_concatenated_string] = STATE(4825), + [sym_string_literal] = STATE(3812), + [sym_null] = STATE(4856), + [sym_placeholder_type_specifier] = STATE(2747), + [sym_decltype_auto] = STATE(2733), + [sym_decltype] = STATE(2621), + [sym_class_specifier] = STATE(2747), + [sym__class_name] = STATE(7816), + [sym_dependent_type] = STATE(2747), + [sym_template_type] = STATE(5365), + [sym_template_function] = STATE(4856), + [sym_raw_string_literal] = STATE(3812), + [sym_co_await_expression] = STATE(4856), + [sym_new_expression] = STATE(4856), + [sym_delete_expression] = STATE(4856), + [sym_requires_clause] = STATE(4856), + [sym_requires_expression] = STATE(4856), + [sym_lambda_expression] = STATE(4856), + [sym_lambda_capture_specifier] = STATE(5489), + [sym_fold_expression] = STATE(4856), + [sym_parameter_pack_expansion] = STATE(4856), + [sym_type_parameter_pack_expansion] = STATE(7489), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5742), + [sym_qualified_identifier] = STATE(3701), + [sym_qualified_type_identifier] = STATE(5382), + [sym_user_defined_literal] = STATE(3701), + [aux_sym__type_definition_type_repeat1] = STATE(3954), + [aux_sym_sized_type_specifier_repeat1] = STATE(4313), + [sym_identifier] = ACTIONS(3128), + [anon_sym_LPAREN2] = ACTIONS(3130), + [anon_sym_BANG] = ACTIONS(3132), + [anon_sym_TILDE] = ACTIONS(3132), + [anon_sym_DASH] = ACTIONS(3134), + [anon_sym_PLUS] = ACTIONS(3134), + [anon_sym_STAR] = ACTIONS(3136), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym___extension__] = ACTIONS(3138), + [anon_sym_COLON_COLON] = ACTIONS(3140), + [anon_sym_signed] = ACTIONS(3142), + [anon_sym_unsigned] = ACTIONS(3142), + [anon_sym_long] = ACTIONS(3142), + [anon_sym_short] = ACTIONS(3142), [anon_sym_LBRACK] = ACTIONS(2020), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), @@ -103394,152 +104661,292 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(3132), - [anon_sym_enum] = ACTIONS(3134), - [anon_sym_class] = ACTIONS(3136), - [anon_sym_struct] = ACTIONS(3138), - [anon_sym_union] = ACTIONS(3140), - [anon_sym_not] = ACTIONS(3122), - [anon_sym_compl] = ACTIONS(3122), - [anon_sym_DASH_DASH] = ACTIONS(3142), - [anon_sym_PLUS_PLUS] = ACTIONS(3142), - [anon_sym_sizeof] = ACTIONS(3144), - [anon_sym___alignof__] = ACTIONS(3146), - [anon_sym___alignof] = ACTIONS(3146), - [anon_sym__alignof] = ACTIONS(3146), - [anon_sym_alignof] = ACTIONS(3146), - [anon_sym__Alignof] = ACTIONS(3146), - [anon_sym_offsetof] = ACTIONS(3148), - [anon_sym__Generic] = ACTIONS(3150), - [anon_sym_asm] = ACTIONS(3152), - [anon_sym___asm__] = ACTIONS(3152), - [anon_sym___asm] = ACTIONS(3152), - [sym_number_literal] = ACTIONS(3154), - [anon_sym_L_SQUOTE] = ACTIONS(3156), - [anon_sym_u_SQUOTE] = ACTIONS(3156), - [anon_sym_U_SQUOTE] = ACTIONS(3156), - [anon_sym_u8_SQUOTE] = ACTIONS(3156), - [anon_sym_SQUOTE] = ACTIONS(3156), - [anon_sym_L_DQUOTE] = ACTIONS(3158), - [anon_sym_u_DQUOTE] = ACTIONS(3158), - [anon_sym_U_DQUOTE] = ACTIONS(3158), - [anon_sym_u8_DQUOTE] = ACTIONS(3158), - [anon_sym_DQUOTE] = ACTIONS(3158), - [sym_true] = ACTIONS(3160), - [sym_false] = ACTIONS(3160), - [anon_sym_NULL] = ACTIONS(3162), - [anon_sym_nullptr] = ACTIONS(3162), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3164), - [anon_sym_decltype] = ACTIONS(3166), - [anon_sym_typename] = ACTIONS(3168), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_GT2] = ACTIONS(3250), - [anon_sym_delete] = ACTIONS(3172), - [anon_sym_R_DQUOTE] = ACTIONS(3174), - [anon_sym_LR_DQUOTE] = ACTIONS(3174), - [anon_sym_uR_DQUOTE] = ACTIONS(3174), - [anon_sym_UR_DQUOTE] = ACTIONS(3174), - [anon_sym_u8R_DQUOTE] = ACTIONS(3174), - [anon_sym_co_await] = ACTIONS(3176), - [anon_sym_new] = ACTIONS(3178), - [anon_sym_requires] = ACTIONS(3180), - [sym_this] = ACTIONS(3160), + [sym_primitive_type] = ACTIONS(3144), + [anon_sym_enum] = ACTIONS(3146), + [anon_sym_class] = ACTIONS(3148), + [anon_sym_struct] = ACTIONS(3150), + [anon_sym_union] = ACTIONS(3152), + [anon_sym_not] = ACTIONS(3134), + [anon_sym_compl] = ACTIONS(3134), + [anon_sym_DASH_DASH] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_sizeof] = ACTIONS(3156), + [anon_sym___alignof__] = ACTIONS(3158), + [anon_sym___alignof] = ACTIONS(3158), + [anon_sym__alignof] = ACTIONS(3158), + [anon_sym_alignof] = ACTIONS(3158), + [anon_sym__Alignof] = ACTIONS(3158), + [anon_sym_offsetof] = ACTIONS(3160), + [anon_sym__Generic] = ACTIONS(3162), + [anon_sym_asm] = ACTIONS(3164), + [anon_sym___asm__] = ACTIONS(3164), + [anon_sym___asm] = ACTIONS(3164), + [sym_number_literal] = ACTIONS(3166), + [anon_sym_L_SQUOTE] = ACTIONS(3168), + [anon_sym_u_SQUOTE] = ACTIONS(3168), + [anon_sym_U_SQUOTE] = ACTIONS(3168), + [anon_sym_u8_SQUOTE] = ACTIONS(3168), + [anon_sym_SQUOTE] = ACTIONS(3168), + [anon_sym_L_DQUOTE] = ACTIONS(3170), + [anon_sym_u_DQUOTE] = ACTIONS(3170), + [anon_sym_U_DQUOTE] = ACTIONS(3170), + [anon_sym_u8_DQUOTE] = ACTIONS(3170), + [anon_sym_DQUOTE] = ACTIONS(3170), + [sym_true] = ACTIONS(3172), + [sym_false] = ACTIONS(3172), + [anon_sym_NULL] = ACTIONS(3174), + [anon_sym_nullptr] = ACTIONS(3174), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3176), + [anon_sym_decltype] = ACTIONS(3178), + [anon_sym_typename] = ACTIONS(3180), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_GT2] = ACTIONS(3258), + [anon_sym_delete] = ACTIONS(3184), + [anon_sym_R_DQUOTE] = ACTIONS(3186), + [anon_sym_LR_DQUOTE] = ACTIONS(3186), + [anon_sym_uR_DQUOTE] = ACTIONS(3186), + [anon_sym_UR_DQUOTE] = ACTIONS(3186), + [anon_sym_u8R_DQUOTE] = ACTIONS(3186), + [anon_sym_co_await] = ACTIONS(3188), + [anon_sym_new] = ACTIONS(3190), + [anon_sym_requires] = ACTIONS(3192), + [sym_this] = ACTIONS(3172), }, - [417] = { - [sym_expression] = STATE(4553), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8659), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3252), - [anon_sym_LPAREN2] = ACTIONS(1436), + [424] = { + [ts_builtin_sym_end] = ACTIONS(2777), + [sym_identifier] = ACTIONS(2775), + [aux_sym_preproc_include_token1] = ACTIONS(2775), + [aux_sym_preproc_def_token1] = ACTIONS(2775), + [aux_sym_preproc_if_token1] = ACTIONS(2775), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2775), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2775), + [sym_preproc_directive] = ACTIONS(2775), + [anon_sym_LPAREN2] = ACTIONS(2777), + [anon_sym_BANG] = ACTIONS(2777), + [anon_sym_TILDE] = ACTIONS(2777), + [anon_sym_DASH] = ACTIONS(2775), + [anon_sym_PLUS] = ACTIONS(2775), + [anon_sym_STAR] = ACTIONS(2777), + [anon_sym_AMP_AMP] = ACTIONS(2777), + [anon_sym_AMP] = ACTIONS(2775), + [anon_sym_SEMI] = ACTIONS(2777), + [anon_sym___extension__] = ACTIONS(2775), + [anon_sym_typedef] = ACTIONS(2775), + [anon_sym_virtual] = ACTIONS(2775), + [anon_sym_extern] = ACTIONS(2775), + [anon_sym___attribute__] = ACTIONS(2775), + [anon_sym___attribute] = ACTIONS(2775), + [anon_sym_using] = ACTIONS(2775), + [anon_sym_COLON_COLON] = ACTIONS(2777), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2777), + [anon_sym___declspec] = ACTIONS(2775), + [anon_sym___based] = ACTIONS(2775), + [anon_sym___cdecl] = ACTIONS(2775), + [anon_sym___clrcall] = ACTIONS(2775), + [anon_sym___stdcall] = ACTIONS(2775), + [anon_sym___fastcall] = ACTIONS(2775), + [anon_sym___thiscall] = ACTIONS(2775), + [anon_sym___vectorcall] = ACTIONS(2775), + [anon_sym_LBRACE] = ACTIONS(2777), + [anon_sym_signed] = ACTIONS(2775), + [anon_sym_unsigned] = ACTIONS(2775), + [anon_sym_long] = ACTIONS(2775), + [anon_sym_short] = ACTIONS(2775), + [anon_sym_LBRACK] = ACTIONS(2775), + [anon_sym_static] = ACTIONS(2775), + [anon_sym_register] = ACTIONS(2775), + [anon_sym_inline] = ACTIONS(2775), + [anon_sym___inline] = ACTIONS(2775), + [anon_sym___inline__] = ACTIONS(2775), + [anon_sym___forceinline] = ACTIONS(2775), + [anon_sym_thread_local] = ACTIONS(2775), + [anon_sym___thread] = ACTIONS(2775), + [anon_sym_const] = ACTIONS(2775), + [anon_sym_constexpr] = ACTIONS(2775), + [anon_sym_volatile] = ACTIONS(2775), + [anon_sym_restrict] = ACTIONS(2775), + [anon_sym___restrict__] = ACTIONS(2775), + [anon_sym__Atomic] = ACTIONS(2775), + [anon_sym__Noreturn] = ACTIONS(2775), + [anon_sym_noreturn] = ACTIONS(2775), + [anon_sym__Nonnull] = ACTIONS(2775), + [anon_sym_mutable] = ACTIONS(2775), + [anon_sym_constinit] = ACTIONS(2775), + [anon_sym_consteval] = ACTIONS(2775), + [anon_sym_alignas] = ACTIONS(2775), + [anon_sym__Alignas] = ACTIONS(2775), + [sym_primitive_type] = ACTIONS(2775), + [anon_sym_enum] = ACTIONS(2775), + [anon_sym_class] = ACTIONS(2775), + [anon_sym_struct] = ACTIONS(2775), + [anon_sym_union] = ACTIONS(2775), + [anon_sym_if] = ACTIONS(2775), + [anon_sym_else] = ACTIONS(2775), + [anon_sym_switch] = ACTIONS(2775), + [anon_sym_case] = ACTIONS(2775), + [anon_sym_default] = ACTIONS(2775), + [anon_sym_while] = ACTIONS(2775), + [anon_sym_do] = ACTIONS(2775), + [anon_sym_for] = ACTIONS(2775), + [anon_sym_return] = ACTIONS(2775), + [anon_sym_break] = ACTIONS(2775), + [anon_sym_continue] = ACTIONS(2775), + [anon_sym_goto] = ACTIONS(2775), + [anon_sym___try] = ACTIONS(2775), + [anon_sym___leave] = ACTIONS(2775), + [anon_sym_not] = ACTIONS(2775), + [anon_sym_compl] = ACTIONS(2775), + [anon_sym_DASH_DASH] = ACTIONS(2777), + [anon_sym_PLUS_PLUS] = ACTIONS(2777), + [anon_sym_sizeof] = ACTIONS(2775), + [anon_sym___alignof__] = ACTIONS(2775), + [anon_sym___alignof] = ACTIONS(2775), + [anon_sym__alignof] = ACTIONS(2775), + [anon_sym_alignof] = ACTIONS(2775), + [anon_sym__Alignof] = ACTIONS(2775), + [anon_sym_offsetof] = ACTIONS(2775), + [anon_sym__Generic] = ACTIONS(2775), + [anon_sym_asm] = ACTIONS(2775), + [anon_sym___asm__] = ACTIONS(2775), + [anon_sym___asm] = ACTIONS(2775), + [sym_number_literal] = ACTIONS(2777), + [anon_sym_L_SQUOTE] = ACTIONS(2777), + [anon_sym_u_SQUOTE] = ACTIONS(2777), + [anon_sym_U_SQUOTE] = ACTIONS(2777), + [anon_sym_u8_SQUOTE] = ACTIONS(2777), + [anon_sym_SQUOTE] = ACTIONS(2777), + [anon_sym_L_DQUOTE] = ACTIONS(2777), + [anon_sym_u_DQUOTE] = ACTIONS(2777), + [anon_sym_U_DQUOTE] = ACTIONS(2777), + [anon_sym_u8_DQUOTE] = ACTIONS(2777), + [anon_sym_DQUOTE] = ACTIONS(2777), + [sym_true] = ACTIONS(2775), + [sym_false] = ACTIONS(2775), + [anon_sym_NULL] = ACTIONS(2775), + [anon_sym_nullptr] = ACTIONS(2775), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2775), + [anon_sym_decltype] = ACTIONS(2775), + [anon_sym_explicit] = ACTIONS(2775), + [anon_sym_typename] = ACTIONS(2775), + [anon_sym_export] = ACTIONS(2775), + [anon_sym_module] = ACTIONS(2775), + [anon_sym_import] = ACTIONS(2775), + [anon_sym_template] = ACTIONS(2775), + [anon_sym_operator] = ACTIONS(2775), + [anon_sym_try] = ACTIONS(2775), + [anon_sym_delete] = ACTIONS(2775), + [anon_sym_throw] = ACTIONS(2775), + [anon_sym_namespace] = ACTIONS(2775), + [anon_sym_static_assert] = ACTIONS(2775), + [anon_sym_concept] = ACTIONS(2775), + [anon_sym_co_return] = ACTIONS(2775), + [anon_sym_co_yield] = ACTIONS(2775), + [anon_sym_R_DQUOTE] = ACTIONS(2777), + [anon_sym_LR_DQUOTE] = ACTIONS(2777), + [anon_sym_uR_DQUOTE] = ACTIONS(2777), + [anon_sym_UR_DQUOTE] = ACTIONS(2777), + [anon_sym_u8R_DQUOTE] = ACTIONS(2777), + [anon_sym_co_await] = ACTIONS(2775), + [anon_sym_new] = ACTIONS(2775), + [anon_sym_requires] = ACTIONS(2775), + [sym_this] = ACTIONS(2775), + }, + [425] = { + [sym_expression] = STATE(4584), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8231), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3260), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(3255), - [anon_sym___extension__] = ACTIONS(3257), - [anon_sym_virtual] = ACTIONS(2743), - [anon_sym_extern] = ACTIONS(2743), - [anon_sym___attribute__] = ACTIONS(2743), - [anon_sym___attribute] = ACTIONS(2743), - [anon_sym_COLON_COLON] = ACTIONS(3260), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2745), - [anon_sym___declspec] = ACTIONS(2743), - [anon_sym_signed] = ACTIONS(2743), - [anon_sym_unsigned] = ACTIONS(2743), - [anon_sym_long] = ACTIONS(2743), - [anon_sym_short] = ACTIONS(2743), - [anon_sym_LBRACK] = ACTIONS(1450), - [anon_sym_static] = ACTIONS(2743), - [anon_sym_register] = ACTIONS(2743), - [anon_sym_inline] = ACTIONS(2743), - [anon_sym___inline] = ACTIONS(2743), - [anon_sym___inline__] = ACTIONS(2743), - [anon_sym___forceinline] = ACTIONS(2743), - [anon_sym_thread_local] = ACTIONS(2743), - [anon_sym___thread] = ACTIONS(2743), - [anon_sym_const] = ACTIONS(2743), - [anon_sym_constexpr] = ACTIONS(2743), - [anon_sym_volatile] = ACTIONS(2743), - [anon_sym_restrict] = ACTIONS(2743), - [anon_sym___restrict__] = ACTIONS(2743), - [anon_sym__Atomic] = ACTIONS(2743), - [anon_sym__Noreturn] = ACTIONS(2743), - [anon_sym_noreturn] = ACTIONS(2743), - [anon_sym__Nonnull] = ACTIONS(2743), - [anon_sym_mutable] = ACTIONS(2743), - [anon_sym_constinit] = ACTIONS(2743), - [anon_sym_consteval] = ACTIONS(2743), - [anon_sym_alignas] = ACTIONS(2743), - [anon_sym__Alignas] = ACTIONS(2743), - [sym_primitive_type] = ACTIONS(3263), - [anon_sym_enum] = ACTIONS(2743), - [anon_sym_class] = ACTIONS(2743), - [anon_sym_struct] = ACTIONS(2743), - [anon_sym_union] = ACTIONS(2743), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(3263), + [anon_sym___extension__] = ACTIONS(3265), + [anon_sym_virtual] = ACTIONS(2735), + [anon_sym_extern] = ACTIONS(2735), + [anon_sym___attribute__] = ACTIONS(2735), + [anon_sym___attribute] = ACTIONS(2735), + [anon_sym_COLON_COLON] = ACTIONS(3268), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2737), + [anon_sym___declspec] = ACTIONS(2735), + [anon_sym_signed] = ACTIONS(2735), + [anon_sym_unsigned] = ACTIONS(2735), + [anon_sym_long] = ACTIONS(2735), + [anon_sym_short] = ACTIONS(2735), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_static] = ACTIONS(2735), + [anon_sym_register] = ACTIONS(2735), + [anon_sym_inline] = ACTIONS(2735), + [anon_sym___inline] = ACTIONS(2735), + [anon_sym___inline__] = ACTIONS(2735), + [anon_sym___forceinline] = ACTIONS(2735), + [anon_sym_thread_local] = ACTIONS(2735), + [anon_sym___thread] = ACTIONS(2735), + [anon_sym_const] = ACTIONS(2735), + [anon_sym_constexpr] = ACTIONS(2735), + [anon_sym_volatile] = ACTIONS(2735), + [anon_sym_restrict] = ACTIONS(2735), + [anon_sym___restrict__] = ACTIONS(2735), + [anon_sym__Atomic] = ACTIONS(2735), + [anon_sym__Noreturn] = ACTIONS(2735), + [anon_sym_noreturn] = ACTIONS(2735), + [anon_sym__Nonnull] = ACTIONS(2735), + [anon_sym_mutable] = ACTIONS(2735), + [anon_sym_constinit] = ACTIONS(2735), + [anon_sym_consteval] = ACTIONS(2735), + [anon_sym_alignas] = ACTIONS(2735), + [anon_sym__Alignas] = ACTIONS(2735), + [sym_primitive_type] = ACTIONS(3271), + [anon_sym_enum] = ACTIONS(2735), + [anon_sym_class] = ACTIONS(2735), + [anon_sym_struct] = ACTIONS(2735), + [anon_sym_union] = ACTIONS(2735), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -103571,10 +104978,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(123), [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2743), - [anon_sym_decltype] = ACTIONS(3266), - [anon_sym_typename] = ACTIONS(2743), - [anon_sym_template] = ACTIONS(3269), + [sym_auto] = ACTIONS(2735), + [anon_sym_decltype] = ACTIONS(3274), + [anon_sym_typename] = ACTIONS(2735), + [anon_sym_template] = ACTIONS(3277), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -103586,79 +104993,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [418] = { - [sym_type_qualifier] = STATE(3910), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(4737), - [sym_sized_type_specifier] = STATE(2668), - [sym_enum_specifier] = STATE(2668), - [sym_struct_specifier] = STATE(2668), - [sym_union_specifier] = STATE(2668), - [sym_expression] = STATE(4330), - [sym__string] = STATE(4738), - [sym_conditional_expression] = STATE(4829), - [sym_assignment_expression] = STATE(4829), - [sym_pointer_expression] = STATE(3602), - [sym_unary_expression] = STATE(4829), - [sym_binary_expression] = STATE(4829), - [sym_update_expression] = STATE(4829), - [sym_cast_expression] = STATE(4829), - [sym_type_descriptor] = STATE(7083), - [sym_sizeof_expression] = STATE(4829), - [sym_alignof_expression] = STATE(4829), - [sym_offsetof_expression] = STATE(4829), - [sym_generic_expression] = STATE(4829), - [sym_subscript_expression] = STATE(3602), - [sym_call_expression] = STATE(3602), - [sym_gnu_asm_expression] = STATE(4829), - [sym_extension_expression] = STATE(4829), - [sym_field_expression] = STATE(3602), - [sym_compound_literal_expression] = STATE(4829), - [sym_parenthesized_expression] = STATE(3602), - [sym_char_literal] = STATE(4738), - [sym_concatenated_string] = STATE(4738), - [sym_string_literal] = STATE(3759), - [sym_null] = STATE(4829), - [sym_placeholder_type_specifier] = STATE(2668), - [sym_decltype_auto] = STATE(2708), - [sym_decltype] = STATE(2598), - [sym_class_specifier] = STATE(2668), - [sym__class_name] = STATE(7804), - [sym_dependent_type] = STATE(2668), - [sym_template_type] = STATE(5285), - [sym_template_function] = STATE(4829), - [sym_raw_string_literal] = STATE(3759), - [sym_co_await_expression] = STATE(4829), - [sym_new_expression] = STATE(4829), - [sym_delete_expression] = STATE(4829), - [sym_requires_clause] = STATE(4829), - [sym_requires_expression] = STATE(4829), - [sym_lambda_expression] = STATE(4829), - [sym_lambda_capture_specifier] = STATE(5401), - [sym_fold_expression] = STATE(4829), - [sym_parameter_pack_expansion] = STATE(4829), - [sym_type_parameter_pack_expansion] = STATE(7203), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5750), - [sym_qualified_identifier] = STATE(3602), - [sym_qualified_type_identifier] = STATE(5327), - [sym_user_defined_literal] = STATE(3602), - [aux_sym__type_definition_type_repeat1] = STATE(3910), - [aux_sym_sized_type_specifier_repeat1] = STATE(4239), - [sym_identifier] = ACTIONS(3116), - [anon_sym_LPAREN2] = ACTIONS(3118), - [anon_sym_BANG] = ACTIONS(3120), - [anon_sym_TILDE] = ACTIONS(3120), - [anon_sym_DASH] = ACTIONS(3122), - [anon_sym_PLUS] = ACTIONS(3122), - [anon_sym_STAR] = ACTIONS(3124), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym___extension__] = ACTIONS(3126), - [anon_sym_COLON_COLON] = ACTIONS(3128), - [anon_sym_signed] = ACTIONS(3130), - [anon_sym_unsigned] = ACTIONS(3130), - [anon_sym_long] = ACTIONS(3130), - [anon_sym_short] = ACTIONS(3130), + [426] = { + [sym_type_qualifier] = STATE(3954), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(4767), + [sym_sized_type_specifier] = STATE(2747), + [sym_enum_specifier] = STATE(2747), + [sym_struct_specifier] = STATE(2747), + [sym_union_specifier] = STATE(2747), + [sym_expression] = STATE(4404), + [sym__string] = STATE(4825), + [sym_conditional_expression] = STATE(4856), + [sym_assignment_expression] = STATE(4856), + [sym_pointer_expression] = STATE(3701), + [sym_unary_expression] = STATE(4856), + [sym_binary_expression] = STATE(4856), + [sym_update_expression] = STATE(4856), + [sym_cast_expression] = STATE(4856), + [sym_type_descriptor] = STATE(7080), + [sym_sizeof_expression] = STATE(4856), + [sym_alignof_expression] = STATE(4856), + [sym_offsetof_expression] = STATE(4856), + [sym_generic_expression] = STATE(4856), + [sym_subscript_expression] = STATE(3701), + [sym_call_expression] = STATE(3701), + [sym_gnu_asm_expression] = STATE(4856), + [sym_extension_expression] = STATE(4856), + [sym_field_expression] = STATE(3701), + [sym_compound_literal_expression] = STATE(4856), + [sym_parenthesized_expression] = STATE(3701), + [sym_char_literal] = STATE(4825), + [sym_concatenated_string] = STATE(4825), + [sym_string_literal] = STATE(3812), + [sym_null] = STATE(4856), + [sym_placeholder_type_specifier] = STATE(2747), + [sym_decltype_auto] = STATE(2733), + [sym_decltype] = STATE(2621), + [sym_class_specifier] = STATE(2747), + [sym__class_name] = STATE(7816), + [sym_dependent_type] = STATE(2747), + [sym_template_type] = STATE(5365), + [sym_template_function] = STATE(4856), + [sym_raw_string_literal] = STATE(3812), + [sym_co_await_expression] = STATE(4856), + [sym_new_expression] = STATE(4856), + [sym_delete_expression] = STATE(4856), + [sym_requires_clause] = STATE(4856), + [sym_requires_expression] = STATE(4856), + [sym_lambda_expression] = STATE(4856), + [sym_lambda_capture_specifier] = STATE(5489), + [sym_fold_expression] = STATE(4856), + [sym_parameter_pack_expansion] = STATE(4856), + [sym_type_parameter_pack_expansion] = STATE(7513), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5742), + [sym_qualified_identifier] = STATE(3701), + [sym_qualified_type_identifier] = STATE(5382), + [sym_user_defined_literal] = STATE(3701), + [aux_sym__type_definition_type_repeat1] = STATE(3954), + [aux_sym_sized_type_specifier_repeat1] = STATE(4313), + [sym_identifier] = ACTIONS(3128), + [anon_sym_LPAREN2] = ACTIONS(3130), + [anon_sym_BANG] = ACTIONS(3132), + [anon_sym_TILDE] = ACTIONS(3132), + [anon_sym_DASH] = ACTIONS(3134), + [anon_sym_PLUS] = ACTIONS(3134), + [anon_sym_STAR] = ACTIONS(3136), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym___extension__] = ACTIONS(3138), + [anon_sym_COLON_COLON] = ACTIONS(3140), + [anon_sym_signed] = ACTIONS(3142), + [anon_sym_unsigned] = ACTIONS(3142), + [anon_sym_long] = ACTIONS(3142), + [anon_sym_short] = ACTIONS(3142), [anon_sym_LBRACK] = ACTIONS(2020), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), @@ -103674,152 +105081,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(3132), - [anon_sym_enum] = ACTIONS(3134), - [anon_sym_class] = ACTIONS(3136), - [anon_sym_struct] = ACTIONS(3138), - [anon_sym_union] = ACTIONS(3140), - [anon_sym_not] = ACTIONS(3122), - [anon_sym_compl] = ACTIONS(3122), - [anon_sym_DASH_DASH] = ACTIONS(3142), - [anon_sym_PLUS_PLUS] = ACTIONS(3142), - [anon_sym_sizeof] = ACTIONS(3144), - [anon_sym___alignof__] = ACTIONS(3146), - [anon_sym___alignof] = ACTIONS(3146), - [anon_sym__alignof] = ACTIONS(3146), - [anon_sym_alignof] = ACTIONS(3146), - [anon_sym__Alignof] = ACTIONS(3146), - [anon_sym_offsetof] = ACTIONS(3148), - [anon_sym__Generic] = ACTIONS(3150), - [anon_sym_asm] = ACTIONS(3152), - [anon_sym___asm__] = ACTIONS(3152), - [anon_sym___asm] = ACTIONS(3152), - [sym_number_literal] = ACTIONS(3154), - [anon_sym_L_SQUOTE] = ACTIONS(3156), - [anon_sym_u_SQUOTE] = ACTIONS(3156), - [anon_sym_U_SQUOTE] = ACTIONS(3156), - [anon_sym_u8_SQUOTE] = ACTIONS(3156), - [anon_sym_SQUOTE] = ACTIONS(3156), - [anon_sym_L_DQUOTE] = ACTIONS(3158), - [anon_sym_u_DQUOTE] = ACTIONS(3158), - [anon_sym_U_DQUOTE] = ACTIONS(3158), - [anon_sym_u8_DQUOTE] = ACTIONS(3158), - [anon_sym_DQUOTE] = ACTIONS(3158), - [sym_true] = ACTIONS(3160), - [sym_false] = ACTIONS(3160), - [anon_sym_NULL] = ACTIONS(3162), - [anon_sym_nullptr] = ACTIONS(3162), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3164), - [anon_sym_decltype] = ACTIONS(3166), - [anon_sym_typename] = ACTIONS(3168), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_GT2] = ACTIONS(3272), - [anon_sym_delete] = ACTIONS(3172), - [anon_sym_R_DQUOTE] = ACTIONS(3174), - [anon_sym_LR_DQUOTE] = ACTIONS(3174), - [anon_sym_uR_DQUOTE] = ACTIONS(3174), - [anon_sym_UR_DQUOTE] = ACTIONS(3174), - [anon_sym_u8R_DQUOTE] = ACTIONS(3174), - [anon_sym_co_await] = ACTIONS(3176), - [anon_sym_new] = ACTIONS(3178), - [anon_sym_requires] = ACTIONS(3180), - [sym_this] = ACTIONS(3160), + [sym_primitive_type] = ACTIONS(3144), + [anon_sym_enum] = ACTIONS(3146), + [anon_sym_class] = ACTIONS(3148), + [anon_sym_struct] = ACTIONS(3150), + [anon_sym_union] = ACTIONS(3152), + [anon_sym_not] = ACTIONS(3134), + [anon_sym_compl] = ACTIONS(3134), + [anon_sym_DASH_DASH] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_sizeof] = ACTIONS(3156), + [anon_sym___alignof__] = ACTIONS(3158), + [anon_sym___alignof] = ACTIONS(3158), + [anon_sym__alignof] = ACTIONS(3158), + [anon_sym_alignof] = ACTIONS(3158), + [anon_sym__Alignof] = ACTIONS(3158), + [anon_sym_offsetof] = ACTIONS(3160), + [anon_sym__Generic] = ACTIONS(3162), + [anon_sym_asm] = ACTIONS(3164), + [anon_sym___asm__] = ACTIONS(3164), + [anon_sym___asm] = ACTIONS(3164), + [sym_number_literal] = ACTIONS(3166), + [anon_sym_L_SQUOTE] = ACTIONS(3168), + [anon_sym_u_SQUOTE] = ACTIONS(3168), + [anon_sym_U_SQUOTE] = ACTIONS(3168), + [anon_sym_u8_SQUOTE] = ACTIONS(3168), + [anon_sym_SQUOTE] = ACTIONS(3168), + [anon_sym_L_DQUOTE] = ACTIONS(3170), + [anon_sym_u_DQUOTE] = ACTIONS(3170), + [anon_sym_U_DQUOTE] = ACTIONS(3170), + [anon_sym_u8_DQUOTE] = ACTIONS(3170), + [anon_sym_DQUOTE] = ACTIONS(3170), + [sym_true] = ACTIONS(3172), + [sym_false] = ACTIONS(3172), + [anon_sym_NULL] = ACTIONS(3174), + [anon_sym_nullptr] = ACTIONS(3174), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3176), + [anon_sym_decltype] = ACTIONS(3178), + [anon_sym_typename] = ACTIONS(3180), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_GT2] = ACTIONS(3280), + [anon_sym_delete] = ACTIONS(3184), + [anon_sym_R_DQUOTE] = ACTIONS(3186), + [anon_sym_LR_DQUOTE] = ACTIONS(3186), + [anon_sym_uR_DQUOTE] = ACTIONS(3186), + [anon_sym_UR_DQUOTE] = ACTIONS(3186), + [anon_sym_u8R_DQUOTE] = ACTIONS(3186), + [anon_sym_co_await] = ACTIONS(3188), + [anon_sym_new] = ACTIONS(3190), + [anon_sym_requires] = ACTIONS(3192), + [sym_this] = ACTIONS(3172), }, - [419] = { - [sym_expression] = STATE(4559), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8670), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3274), - [anon_sym_LPAREN2] = ACTIONS(1436), + [427] = { + [sym_expression] = STATE(4592), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8243), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3282), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(3277), - [anon_sym___extension__] = ACTIONS(3279), - [anon_sym_virtual] = ACTIONS(3282), - [anon_sym_extern] = ACTIONS(3282), - [anon_sym___attribute__] = ACTIONS(3282), - [anon_sym___attribute] = ACTIONS(3282), - [anon_sym_COLON_COLON] = ACTIONS(3284), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3287), - [anon_sym___declspec] = ACTIONS(3282), - [anon_sym_signed] = ACTIONS(3282), - [anon_sym_unsigned] = ACTIONS(3282), - [anon_sym_long] = ACTIONS(3282), - [anon_sym_short] = ACTIONS(3282), - [anon_sym_LBRACK] = ACTIONS(1450), - [anon_sym_static] = ACTIONS(3282), - [anon_sym_register] = ACTIONS(3282), - [anon_sym_inline] = ACTIONS(3282), - [anon_sym___inline] = ACTIONS(3282), - [anon_sym___inline__] = ACTIONS(3282), - [anon_sym___forceinline] = ACTIONS(3282), - [anon_sym_thread_local] = ACTIONS(3282), - [anon_sym___thread] = ACTIONS(3282), - [anon_sym_const] = ACTIONS(3282), - [anon_sym_constexpr] = ACTIONS(3282), - [anon_sym_volatile] = ACTIONS(3282), - [anon_sym_restrict] = ACTIONS(3282), - [anon_sym___restrict__] = ACTIONS(3282), - [anon_sym__Atomic] = ACTIONS(3282), - [anon_sym__Noreturn] = ACTIONS(3282), - [anon_sym_noreturn] = ACTIONS(3282), - [anon_sym__Nonnull] = ACTIONS(3282), - [anon_sym_mutable] = ACTIONS(3282), - [anon_sym_constinit] = ACTIONS(3282), - [anon_sym_consteval] = ACTIONS(3282), - [anon_sym_alignas] = ACTIONS(3282), - [anon_sym__Alignas] = ACTIONS(3282), - [sym_primitive_type] = ACTIONS(3289), - [anon_sym_enum] = ACTIONS(3282), - [anon_sym_class] = ACTIONS(3282), - [anon_sym_struct] = ACTIONS(3282), - [anon_sym_union] = ACTIONS(3282), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(3285), + [anon_sym___extension__] = ACTIONS(3287), + [anon_sym_virtual] = ACTIONS(3290), + [anon_sym_extern] = ACTIONS(3290), + [anon_sym___attribute__] = ACTIONS(3290), + [anon_sym___attribute] = ACTIONS(3290), + [anon_sym_COLON_COLON] = ACTIONS(3292), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3295), + [anon_sym___declspec] = ACTIONS(3290), + [anon_sym_signed] = ACTIONS(3290), + [anon_sym_unsigned] = ACTIONS(3290), + [anon_sym_long] = ACTIONS(3290), + [anon_sym_short] = ACTIONS(3290), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_static] = ACTIONS(3290), + [anon_sym_register] = ACTIONS(3290), + [anon_sym_inline] = ACTIONS(3290), + [anon_sym___inline] = ACTIONS(3290), + [anon_sym___inline__] = ACTIONS(3290), + [anon_sym___forceinline] = ACTIONS(3290), + [anon_sym_thread_local] = ACTIONS(3290), + [anon_sym___thread] = ACTIONS(3290), + [anon_sym_const] = ACTIONS(3290), + [anon_sym_constexpr] = ACTIONS(3290), + [anon_sym_volatile] = ACTIONS(3290), + [anon_sym_restrict] = ACTIONS(3290), + [anon_sym___restrict__] = ACTIONS(3290), + [anon_sym__Atomic] = ACTIONS(3290), + [anon_sym__Noreturn] = ACTIONS(3290), + [anon_sym_noreturn] = ACTIONS(3290), + [anon_sym__Nonnull] = ACTIONS(3290), + [anon_sym_mutable] = ACTIONS(3290), + [anon_sym_constinit] = ACTIONS(3290), + [anon_sym_consteval] = ACTIONS(3290), + [anon_sym_alignas] = ACTIONS(3290), + [anon_sym__Alignas] = ACTIONS(3290), + [sym_primitive_type] = ACTIONS(3297), + [anon_sym_enum] = ACTIONS(3290), + [anon_sym_class] = ACTIONS(3290), + [anon_sym_struct] = ACTIONS(3290), + [anon_sym_union] = ACTIONS(3290), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -103851,10 +105258,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(123), [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3282), - [anon_sym_decltype] = ACTIONS(3292), - [anon_sym_typename] = ACTIONS(3282), - [anon_sym_template] = ACTIONS(3295), + [sym_auto] = ACTIONS(3290), + [anon_sym_decltype] = ACTIONS(3300), + [anon_sym_typename] = ACTIONS(3290), + [anon_sym_template] = ACTIONS(3303), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -103866,219 +105273,219 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [420] = { - [ts_builtin_sym_end] = ACTIONS(2749), - [sym_identifier] = ACTIONS(2747), - [aux_sym_preproc_include_token1] = ACTIONS(2747), - [aux_sym_preproc_def_token1] = ACTIONS(2747), - [aux_sym_preproc_if_token1] = ACTIONS(2747), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2747), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2747), - [sym_preproc_directive] = ACTIONS(2747), - [anon_sym_LPAREN2] = ACTIONS(2749), - [anon_sym_BANG] = ACTIONS(2749), - [anon_sym_TILDE] = ACTIONS(2749), - [anon_sym_DASH] = ACTIONS(2747), - [anon_sym_PLUS] = ACTIONS(2747), - [anon_sym_STAR] = ACTIONS(2749), - [anon_sym_AMP_AMP] = ACTIONS(2749), - [anon_sym_AMP] = ACTIONS(2747), - [anon_sym_SEMI] = ACTIONS(2749), - [anon_sym___extension__] = ACTIONS(2747), - [anon_sym_typedef] = ACTIONS(2747), - [anon_sym_virtual] = ACTIONS(2747), - [anon_sym_extern] = ACTIONS(2747), - [anon_sym___attribute__] = ACTIONS(2747), - [anon_sym___attribute] = ACTIONS(2747), - [anon_sym_using] = ACTIONS(2747), - [anon_sym_COLON_COLON] = ACTIONS(2749), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2749), - [anon_sym___declspec] = ACTIONS(2747), - [anon_sym___based] = ACTIONS(2747), - [anon_sym___cdecl] = ACTIONS(2747), - [anon_sym___clrcall] = ACTIONS(2747), - [anon_sym___stdcall] = ACTIONS(2747), - [anon_sym___fastcall] = ACTIONS(2747), - [anon_sym___thiscall] = ACTIONS(2747), - [anon_sym___vectorcall] = ACTIONS(2747), - [anon_sym_LBRACE] = ACTIONS(2749), - [anon_sym_signed] = ACTIONS(2747), - [anon_sym_unsigned] = ACTIONS(2747), - [anon_sym_long] = ACTIONS(2747), - [anon_sym_short] = ACTIONS(2747), - [anon_sym_LBRACK] = ACTIONS(2747), - [anon_sym_static] = ACTIONS(2747), - [anon_sym_register] = ACTIONS(2747), - [anon_sym_inline] = ACTIONS(2747), - [anon_sym___inline] = ACTIONS(2747), - [anon_sym___inline__] = ACTIONS(2747), - [anon_sym___forceinline] = ACTIONS(2747), - [anon_sym_thread_local] = ACTIONS(2747), - [anon_sym___thread] = ACTIONS(2747), - [anon_sym_const] = ACTIONS(2747), - [anon_sym_constexpr] = ACTIONS(2747), - [anon_sym_volatile] = ACTIONS(2747), - [anon_sym_restrict] = ACTIONS(2747), - [anon_sym___restrict__] = ACTIONS(2747), - [anon_sym__Atomic] = ACTIONS(2747), - [anon_sym__Noreturn] = ACTIONS(2747), - [anon_sym_noreturn] = ACTIONS(2747), - [anon_sym__Nonnull] = ACTIONS(2747), - [anon_sym_mutable] = ACTIONS(2747), - [anon_sym_constinit] = ACTIONS(2747), - [anon_sym_consteval] = ACTIONS(2747), - [anon_sym_alignas] = ACTIONS(2747), - [anon_sym__Alignas] = ACTIONS(2747), - [sym_primitive_type] = ACTIONS(2747), - [anon_sym_enum] = ACTIONS(2747), - [anon_sym_class] = ACTIONS(2747), - [anon_sym_struct] = ACTIONS(2747), - [anon_sym_union] = ACTIONS(2747), - [anon_sym_if] = ACTIONS(2747), - [anon_sym_else] = ACTIONS(2747), - [anon_sym_switch] = ACTIONS(2747), - [anon_sym_case] = ACTIONS(2747), - [anon_sym_default] = ACTIONS(2747), - [anon_sym_while] = ACTIONS(2747), - [anon_sym_do] = ACTIONS(2747), - [anon_sym_for] = ACTIONS(2747), - [anon_sym_return] = ACTIONS(2747), - [anon_sym_break] = ACTIONS(2747), - [anon_sym_continue] = ACTIONS(2747), - [anon_sym_goto] = ACTIONS(2747), - [anon_sym___try] = ACTIONS(2747), - [anon_sym___leave] = ACTIONS(2747), - [anon_sym_not] = ACTIONS(2747), - [anon_sym_compl] = ACTIONS(2747), - [anon_sym_DASH_DASH] = ACTIONS(2749), - [anon_sym_PLUS_PLUS] = ACTIONS(2749), - [anon_sym_sizeof] = ACTIONS(2747), - [anon_sym___alignof__] = ACTIONS(2747), - [anon_sym___alignof] = ACTIONS(2747), - [anon_sym__alignof] = ACTIONS(2747), - [anon_sym_alignof] = ACTIONS(2747), - [anon_sym__Alignof] = ACTIONS(2747), - [anon_sym_offsetof] = ACTIONS(2747), - [anon_sym__Generic] = ACTIONS(2747), - [anon_sym_asm] = ACTIONS(2747), - [anon_sym___asm__] = ACTIONS(2747), - [anon_sym___asm] = ACTIONS(2747), - [sym_number_literal] = ACTIONS(2749), - [anon_sym_L_SQUOTE] = ACTIONS(2749), - [anon_sym_u_SQUOTE] = ACTIONS(2749), - [anon_sym_U_SQUOTE] = ACTIONS(2749), - [anon_sym_u8_SQUOTE] = ACTIONS(2749), - [anon_sym_SQUOTE] = ACTIONS(2749), - [anon_sym_L_DQUOTE] = ACTIONS(2749), - [anon_sym_u_DQUOTE] = ACTIONS(2749), - [anon_sym_U_DQUOTE] = ACTIONS(2749), - [anon_sym_u8_DQUOTE] = ACTIONS(2749), - [anon_sym_DQUOTE] = ACTIONS(2749), - [sym_true] = ACTIONS(2747), - [sym_false] = ACTIONS(2747), - [anon_sym_NULL] = ACTIONS(2747), - [anon_sym_nullptr] = ACTIONS(2747), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2747), - [anon_sym_decltype] = ACTIONS(2747), - [anon_sym_explicit] = ACTIONS(2747), - [anon_sym_typename] = ACTIONS(2747), - [anon_sym_export] = ACTIONS(2747), - [anon_sym_module] = ACTIONS(2747), - [anon_sym_import] = ACTIONS(2747), - [anon_sym_template] = ACTIONS(2747), - [anon_sym_operator] = ACTIONS(2747), - [anon_sym_try] = ACTIONS(2747), - [anon_sym_delete] = ACTIONS(2747), - [anon_sym_throw] = ACTIONS(2747), - [anon_sym_namespace] = ACTIONS(2747), - [anon_sym_static_assert] = ACTIONS(2747), - [anon_sym_concept] = ACTIONS(2747), - [anon_sym_co_return] = ACTIONS(2747), - [anon_sym_co_yield] = ACTIONS(2747), - [anon_sym_R_DQUOTE] = ACTIONS(2749), - [anon_sym_LR_DQUOTE] = ACTIONS(2749), - [anon_sym_uR_DQUOTE] = ACTIONS(2749), - [anon_sym_UR_DQUOTE] = ACTIONS(2749), - [anon_sym_u8R_DQUOTE] = ACTIONS(2749), - [anon_sym_co_await] = ACTIONS(2747), - [anon_sym_new] = ACTIONS(2747), - [anon_sym_requires] = ACTIONS(2747), - [sym_this] = ACTIONS(2747), + [428] = { + [ts_builtin_sym_end] = ACTIONS(2715), + [sym_identifier] = ACTIONS(2713), + [aux_sym_preproc_include_token1] = ACTIONS(2713), + [aux_sym_preproc_def_token1] = ACTIONS(2713), + [aux_sym_preproc_if_token1] = ACTIONS(2713), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2713), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2713), + [sym_preproc_directive] = ACTIONS(2713), + [anon_sym_LPAREN2] = ACTIONS(2715), + [anon_sym_BANG] = ACTIONS(2715), + [anon_sym_TILDE] = ACTIONS(2715), + [anon_sym_DASH] = ACTIONS(2713), + [anon_sym_PLUS] = ACTIONS(2713), + [anon_sym_STAR] = ACTIONS(2715), + [anon_sym_AMP_AMP] = ACTIONS(2715), + [anon_sym_AMP] = ACTIONS(2713), + [anon_sym_SEMI] = ACTIONS(2715), + [anon_sym___extension__] = ACTIONS(2713), + [anon_sym_typedef] = ACTIONS(2713), + [anon_sym_virtual] = ACTIONS(2713), + [anon_sym_extern] = ACTIONS(2713), + [anon_sym___attribute__] = ACTIONS(2713), + [anon_sym___attribute] = ACTIONS(2713), + [anon_sym_using] = ACTIONS(2713), + [anon_sym_COLON_COLON] = ACTIONS(2715), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2715), + [anon_sym___declspec] = ACTIONS(2713), + [anon_sym___based] = ACTIONS(2713), + [anon_sym___cdecl] = ACTIONS(2713), + [anon_sym___clrcall] = ACTIONS(2713), + [anon_sym___stdcall] = ACTIONS(2713), + [anon_sym___fastcall] = ACTIONS(2713), + [anon_sym___thiscall] = ACTIONS(2713), + [anon_sym___vectorcall] = ACTIONS(2713), + [anon_sym_LBRACE] = ACTIONS(2715), + [anon_sym_signed] = ACTIONS(2713), + [anon_sym_unsigned] = ACTIONS(2713), + [anon_sym_long] = ACTIONS(2713), + [anon_sym_short] = ACTIONS(2713), + [anon_sym_LBRACK] = ACTIONS(2713), + [anon_sym_static] = ACTIONS(2713), + [anon_sym_register] = ACTIONS(2713), + [anon_sym_inline] = ACTIONS(2713), + [anon_sym___inline] = ACTIONS(2713), + [anon_sym___inline__] = ACTIONS(2713), + [anon_sym___forceinline] = ACTIONS(2713), + [anon_sym_thread_local] = ACTIONS(2713), + [anon_sym___thread] = ACTIONS(2713), + [anon_sym_const] = ACTIONS(2713), + [anon_sym_constexpr] = ACTIONS(2713), + [anon_sym_volatile] = ACTIONS(2713), + [anon_sym_restrict] = ACTIONS(2713), + [anon_sym___restrict__] = ACTIONS(2713), + [anon_sym__Atomic] = ACTIONS(2713), + [anon_sym__Noreturn] = ACTIONS(2713), + [anon_sym_noreturn] = ACTIONS(2713), + [anon_sym__Nonnull] = ACTIONS(2713), + [anon_sym_mutable] = ACTIONS(2713), + [anon_sym_constinit] = ACTIONS(2713), + [anon_sym_consteval] = ACTIONS(2713), + [anon_sym_alignas] = ACTIONS(2713), + [anon_sym__Alignas] = ACTIONS(2713), + [sym_primitive_type] = ACTIONS(2713), + [anon_sym_enum] = ACTIONS(2713), + [anon_sym_class] = ACTIONS(2713), + [anon_sym_struct] = ACTIONS(2713), + [anon_sym_union] = ACTIONS(2713), + [anon_sym_if] = ACTIONS(2713), + [anon_sym_else] = ACTIONS(2713), + [anon_sym_switch] = ACTIONS(2713), + [anon_sym_case] = ACTIONS(2713), + [anon_sym_default] = ACTIONS(2713), + [anon_sym_while] = ACTIONS(2713), + [anon_sym_do] = ACTIONS(2713), + [anon_sym_for] = ACTIONS(2713), + [anon_sym_return] = ACTIONS(2713), + [anon_sym_break] = ACTIONS(2713), + [anon_sym_continue] = ACTIONS(2713), + [anon_sym_goto] = ACTIONS(2713), + [anon_sym___try] = ACTIONS(2713), + [anon_sym___leave] = ACTIONS(2713), + [anon_sym_not] = ACTIONS(2713), + [anon_sym_compl] = ACTIONS(2713), + [anon_sym_DASH_DASH] = ACTIONS(2715), + [anon_sym_PLUS_PLUS] = ACTIONS(2715), + [anon_sym_sizeof] = ACTIONS(2713), + [anon_sym___alignof__] = ACTIONS(2713), + [anon_sym___alignof] = ACTIONS(2713), + [anon_sym__alignof] = ACTIONS(2713), + [anon_sym_alignof] = ACTIONS(2713), + [anon_sym__Alignof] = ACTIONS(2713), + [anon_sym_offsetof] = ACTIONS(2713), + [anon_sym__Generic] = ACTIONS(2713), + [anon_sym_asm] = ACTIONS(2713), + [anon_sym___asm__] = ACTIONS(2713), + [anon_sym___asm] = ACTIONS(2713), + [sym_number_literal] = ACTIONS(2715), + [anon_sym_L_SQUOTE] = ACTIONS(2715), + [anon_sym_u_SQUOTE] = ACTIONS(2715), + [anon_sym_U_SQUOTE] = ACTIONS(2715), + [anon_sym_u8_SQUOTE] = ACTIONS(2715), + [anon_sym_SQUOTE] = ACTIONS(2715), + [anon_sym_L_DQUOTE] = ACTIONS(2715), + [anon_sym_u_DQUOTE] = ACTIONS(2715), + [anon_sym_U_DQUOTE] = ACTIONS(2715), + [anon_sym_u8_DQUOTE] = ACTIONS(2715), + [anon_sym_DQUOTE] = ACTIONS(2715), + [sym_true] = ACTIONS(2713), + [sym_false] = ACTIONS(2713), + [anon_sym_NULL] = ACTIONS(2713), + [anon_sym_nullptr] = ACTIONS(2713), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2713), + [anon_sym_decltype] = ACTIONS(2713), + [anon_sym_explicit] = ACTIONS(2713), + [anon_sym_typename] = ACTIONS(2713), + [anon_sym_export] = ACTIONS(2713), + [anon_sym_module] = ACTIONS(2713), + [anon_sym_import] = ACTIONS(2713), + [anon_sym_template] = ACTIONS(2713), + [anon_sym_operator] = ACTIONS(2713), + [anon_sym_try] = ACTIONS(2713), + [anon_sym_delete] = ACTIONS(2713), + [anon_sym_throw] = ACTIONS(2713), + [anon_sym_namespace] = ACTIONS(2713), + [anon_sym_static_assert] = ACTIONS(2713), + [anon_sym_concept] = ACTIONS(2713), + [anon_sym_co_return] = ACTIONS(2713), + [anon_sym_co_yield] = ACTIONS(2713), + [anon_sym_R_DQUOTE] = ACTIONS(2715), + [anon_sym_LR_DQUOTE] = ACTIONS(2715), + [anon_sym_uR_DQUOTE] = ACTIONS(2715), + [anon_sym_UR_DQUOTE] = ACTIONS(2715), + [anon_sym_u8R_DQUOTE] = ACTIONS(2715), + [anon_sym_co_await] = ACTIONS(2713), + [anon_sym_new] = ACTIONS(2713), + [anon_sym_requires] = ACTIONS(2713), + [sym_this] = ACTIONS(2713), }, - [421] = { - [sym_type_qualifier] = STATE(3910), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(4737), - [sym_sized_type_specifier] = STATE(2668), - [sym_enum_specifier] = STATE(2668), - [sym_struct_specifier] = STATE(2668), - [sym_union_specifier] = STATE(2668), - [sym_expression] = STATE(4332), - [sym__string] = STATE(4738), - [sym_conditional_expression] = STATE(4829), - [sym_assignment_expression] = STATE(4829), - [sym_pointer_expression] = STATE(3602), - [sym_unary_expression] = STATE(4829), - [sym_binary_expression] = STATE(4829), - [sym_update_expression] = STATE(4829), - [sym_cast_expression] = STATE(4829), - [sym_type_descriptor] = STATE(6979), - [sym_sizeof_expression] = STATE(4829), - [sym_alignof_expression] = STATE(4829), - [sym_offsetof_expression] = STATE(4829), - [sym_generic_expression] = STATE(4829), - [sym_subscript_expression] = STATE(3602), - [sym_call_expression] = STATE(3602), - [sym_gnu_asm_expression] = STATE(4829), - [sym_extension_expression] = STATE(4829), - [sym_field_expression] = STATE(3602), - [sym_compound_literal_expression] = STATE(4829), - [sym_parenthesized_expression] = STATE(3602), - [sym_char_literal] = STATE(4738), - [sym_concatenated_string] = STATE(4738), - [sym_string_literal] = STATE(3759), - [sym_null] = STATE(4829), - [sym_placeholder_type_specifier] = STATE(2668), - [sym_decltype_auto] = STATE(2708), - [sym_decltype] = STATE(2598), - [sym_class_specifier] = STATE(2668), - [sym__class_name] = STATE(7804), - [sym_dependent_type] = STATE(2668), - [sym_template_type] = STATE(5285), - [sym_template_function] = STATE(4829), - [sym_raw_string_literal] = STATE(3759), - [sym_co_await_expression] = STATE(4829), - [sym_new_expression] = STATE(4829), - [sym_delete_expression] = STATE(4829), - [sym_requires_clause] = STATE(4829), - [sym_requires_expression] = STATE(4829), - [sym_lambda_expression] = STATE(4829), - [sym_lambda_capture_specifier] = STATE(5401), - [sym_fold_expression] = STATE(4829), - [sym_parameter_pack_expansion] = STATE(4829), - [sym_type_parameter_pack_expansion] = STATE(7211), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5750), - [sym_qualified_identifier] = STATE(3602), - [sym_qualified_type_identifier] = STATE(5327), - [sym_user_defined_literal] = STATE(3602), - [aux_sym__type_definition_type_repeat1] = STATE(3910), - [aux_sym_sized_type_specifier_repeat1] = STATE(4239), - [sym_identifier] = ACTIONS(3116), - [anon_sym_LPAREN2] = ACTIONS(3118), - [anon_sym_BANG] = ACTIONS(3120), - [anon_sym_TILDE] = ACTIONS(3120), - [anon_sym_DASH] = ACTIONS(3122), - [anon_sym_PLUS] = ACTIONS(3122), - [anon_sym_STAR] = ACTIONS(3124), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym___extension__] = ACTIONS(3126), - [anon_sym_COLON_COLON] = ACTIONS(3128), - [anon_sym_signed] = ACTIONS(3130), - [anon_sym_unsigned] = ACTIONS(3130), - [anon_sym_long] = ACTIONS(3130), - [anon_sym_short] = ACTIONS(3130), + [429] = { + [sym_type_qualifier] = STATE(3954), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(4767), + [sym_sized_type_specifier] = STATE(2747), + [sym_enum_specifier] = STATE(2747), + [sym_struct_specifier] = STATE(2747), + [sym_union_specifier] = STATE(2747), + [sym_expression] = STATE(4415), + [sym__string] = STATE(4825), + [sym_conditional_expression] = STATE(4856), + [sym_assignment_expression] = STATE(4856), + [sym_pointer_expression] = STATE(3701), + [sym_unary_expression] = STATE(4856), + [sym_binary_expression] = STATE(4856), + [sym_update_expression] = STATE(4856), + [sym_cast_expression] = STATE(4856), + [sym_type_descriptor] = STATE(7083), + [sym_sizeof_expression] = STATE(4856), + [sym_alignof_expression] = STATE(4856), + [sym_offsetof_expression] = STATE(4856), + [sym_generic_expression] = STATE(4856), + [sym_subscript_expression] = STATE(3701), + [sym_call_expression] = STATE(3701), + [sym_gnu_asm_expression] = STATE(4856), + [sym_extension_expression] = STATE(4856), + [sym_field_expression] = STATE(3701), + [sym_compound_literal_expression] = STATE(4856), + [sym_parenthesized_expression] = STATE(3701), + [sym_char_literal] = STATE(4825), + [sym_concatenated_string] = STATE(4825), + [sym_string_literal] = STATE(3812), + [sym_null] = STATE(4856), + [sym_placeholder_type_specifier] = STATE(2747), + [sym_decltype_auto] = STATE(2733), + [sym_decltype] = STATE(2621), + [sym_class_specifier] = STATE(2747), + [sym__class_name] = STATE(7816), + [sym_dependent_type] = STATE(2747), + [sym_template_type] = STATE(5365), + [sym_template_function] = STATE(4856), + [sym_raw_string_literal] = STATE(3812), + [sym_co_await_expression] = STATE(4856), + [sym_new_expression] = STATE(4856), + [sym_delete_expression] = STATE(4856), + [sym_requires_clause] = STATE(4856), + [sym_requires_expression] = STATE(4856), + [sym_lambda_expression] = STATE(4856), + [sym_lambda_capture_specifier] = STATE(5489), + [sym_fold_expression] = STATE(4856), + [sym_parameter_pack_expansion] = STATE(4856), + [sym_type_parameter_pack_expansion] = STATE(7554), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5742), + [sym_qualified_identifier] = STATE(3701), + [sym_qualified_type_identifier] = STATE(5382), + [sym_user_defined_literal] = STATE(3701), + [aux_sym__type_definition_type_repeat1] = STATE(3954), + [aux_sym_sized_type_specifier_repeat1] = STATE(4313), + [sym_identifier] = ACTIONS(3128), + [anon_sym_LPAREN2] = ACTIONS(3130), + [anon_sym_BANG] = ACTIONS(3132), + [anon_sym_TILDE] = ACTIONS(3132), + [anon_sym_DASH] = ACTIONS(3134), + [anon_sym_PLUS] = ACTIONS(3134), + [anon_sym_STAR] = ACTIONS(3136), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym___extension__] = ACTIONS(3138), + [anon_sym_COLON_COLON] = ACTIONS(3140), + [anon_sym_signed] = ACTIONS(3142), + [anon_sym_unsigned] = ACTIONS(3142), + [anon_sym_long] = ACTIONS(3142), + [anon_sym_short] = ACTIONS(3142), [anon_sym_LBRACK] = ACTIONS(2020), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), @@ -104094,481 +105501,201 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(3132), - [anon_sym_enum] = ACTIONS(3134), - [anon_sym_class] = ACTIONS(3136), - [anon_sym_struct] = ACTIONS(3138), - [anon_sym_union] = ACTIONS(3140), - [anon_sym_not] = ACTIONS(3122), - [anon_sym_compl] = ACTIONS(3122), - [anon_sym_DASH_DASH] = ACTIONS(3142), - [anon_sym_PLUS_PLUS] = ACTIONS(3142), - [anon_sym_sizeof] = ACTIONS(3144), - [anon_sym___alignof__] = ACTIONS(3146), - [anon_sym___alignof] = ACTIONS(3146), - [anon_sym__alignof] = ACTIONS(3146), - [anon_sym_alignof] = ACTIONS(3146), - [anon_sym__Alignof] = ACTIONS(3146), - [anon_sym_offsetof] = ACTIONS(3148), - [anon_sym__Generic] = ACTIONS(3150), - [anon_sym_asm] = ACTIONS(3152), - [anon_sym___asm__] = ACTIONS(3152), - [anon_sym___asm] = ACTIONS(3152), - [sym_number_literal] = ACTIONS(3154), - [anon_sym_L_SQUOTE] = ACTIONS(3156), - [anon_sym_u_SQUOTE] = ACTIONS(3156), - [anon_sym_U_SQUOTE] = ACTIONS(3156), - [anon_sym_u8_SQUOTE] = ACTIONS(3156), - [anon_sym_SQUOTE] = ACTIONS(3156), - [anon_sym_L_DQUOTE] = ACTIONS(3158), - [anon_sym_u_DQUOTE] = ACTIONS(3158), - [anon_sym_U_DQUOTE] = ACTIONS(3158), - [anon_sym_u8_DQUOTE] = ACTIONS(3158), - [anon_sym_DQUOTE] = ACTIONS(3158), - [sym_true] = ACTIONS(3160), - [sym_false] = ACTIONS(3160), - [anon_sym_NULL] = ACTIONS(3162), - [anon_sym_nullptr] = ACTIONS(3162), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3164), - [anon_sym_decltype] = ACTIONS(3166), - [anon_sym_typename] = ACTIONS(3168), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_GT2] = ACTIONS(3298), - [anon_sym_delete] = ACTIONS(3172), - [anon_sym_R_DQUOTE] = ACTIONS(3174), - [anon_sym_LR_DQUOTE] = ACTIONS(3174), - [anon_sym_uR_DQUOTE] = ACTIONS(3174), - [anon_sym_UR_DQUOTE] = ACTIONS(3174), - [anon_sym_u8R_DQUOTE] = ACTIONS(3174), - [anon_sym_co_await] = ACTIONS(3176), - [anon_sym_new] = ACTIONS(3178), - [anon_sym_requires] = ACTIONS(3180), - [sym_this] = ACTIONS(3160), - }, - [422] = { - [ts_builtin_sym_end] = ACTIONS(2753), - [sym_identifier] = ACTIONS(2751), - [aux_sym_preproc_include_token1] = ACTIONS(2751), - [aux_sym_preproc_def_token1] = ACTIONS(2751), - [aux_sym_preproc_if_token1] = ACTIONS(2751), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2751), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2751), - [sym_preproc_directive] = ACTIONS(2751), - [anon_sym_LPAREN2] = ACTIONS(2753), - [anon_sym_BANG] = ACTIONS(2753), - [anon_sym_TILDE] = ACTIONS(2753), - [anon_sym_DASH] = ACTIONS(2751), - [anon_sym_PLUS] = ACTIONS(2751), - [anon_sym_STAR] = ACTIONS(2753), - [anon_sym_AMP_AMP] = ACTIONS(2753), - [anon_sym_AMP] = ACTIONS(2751), - [anon_sym_SEMI] = ACTIONS(2753), - [anon_sym___extension__] = ACTIONS(2751), - [anon_sym_typedef] = ACTIONS(2751), - [anon_sym_virtual] = ACTIONS(2751), - [anon_sym_extern] = ACTIONS(2751), - [anon_sym___attribute__] = ACTIONS(2751), - [anon_sym___attribute] = ACTIONS(2751), - [anon_sym_using] = ACTIONS(2751), - [anon_sym_COLON_COLON] = ACTIONS(2753), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2753), - [anon_sym___declspec] = ACTIONS(2751), - [anon_sym___based] = ACTIONS(2751), - [anon_sym___cdecl] = ACTIONS(2751), - [anon_sym___clrcall] = ACTIONS(2751), - [anon_sym___stdcall] = ACTIONS(2751), - [anon_sym___fastcall] = ACTIONS(2751), - [anon_sym___thiscall] = ACTIONS(2751), - [anon_sym___vectorcall] = ACTIONS(2751), - [anon_sym_LBRACE] = ACTIONS(2753), - [anon_sym_signed] = ACTIONS(2751), - [anon_sym_unsigned] = ACTIONS(2751), - [anon_sym_long] = ACTIONS(2751), - [anon_sym_short] = ACTIONS(2751), - [anon_sym_LBRACK] = ACTIONS(2751), - [anon_sym_static] = ACTIONS(2751), - [anon_sym_register] = ACTIONS(2751), - [anon_sym_inline] = ACTIONS(2751), - [anon_sym___inline] = ACTIONS(2751), - [anon_sym___inline__] = ACTIONS(2751), - [anon_sym___forceinline] = ACTIONS(2751), - [anon_sym_thread_local] = ACTIONS(2751), - [anon_sym___thread] = ACTIONS(2751), - [anon_sym_const] = ACTIONS(2751), - [anon_sym_constexpr] = ACTIONS(2751), - [anon_sym_volatile] = ACTIONS(2751), - [anon_sym_restrict] = ACTIONS(2751), - [anon_sym___restrict__] = ACTIONS(2751), - [anon_sym__Atomic] = ACTIONS(2751), - [anon_sym__Noreturn] = ACTIONS(2751), - [anon_sym_noreturn] = ACTIONS(2751), - [anon_sym__Nonnull] = ACTIONS(2751), - [anon_sym_mutable] = ACTIONS(2751), - [anon_sym_constinit] = ACTIONS(2751), - [anon_sym_consteval] = ACTIONS(2751), - [anon_sym_alignas] = ACTIONS(2751), - [anon_sym__Alignas] = ACTIONS(2751), - [sym_primitive_type] = ACTIONS(2751), - [anon_sym_enum] = ACTIONS(2751), - [anon_sym_class] = ACTIONS(2751), - [anon_sym_struct] = ACTIONS(2751), - [anon_sym_union] = ACTIONS(2751), - [anon_sym_if] = ACTIONS(2751), - [anon_sym_else] = ACTIONS(2751), - [anon_sym_switch] = ACTIONS(2751), - [anon_sym_case] = ACTIONS(2751), - [anon_sym_default] = ACTIONS(2751), - [anon_sym_while] = ACTIONS(2751), - [anon_sym_do] = ACTIONS(2751), - [anon_sym_for] = ACTIONS(2751), - [anon_sym_return] = ACTIONS(2751), - [anon_sym_break] = ACTIONS(2751), - [anon_sym_continue] = ACTIONS(2751), - [anon_sym_goto] = ACTIONS(2751), - [anon_sym___try] = ACTIONS(2751), - [anon_sym___leave] = ACTIONS(2751), - [anon_sym_not] = ACTIONS(2751), - [anon_sym_compl] = ACTIONS(2751), - [anon_sym_DASH_DASH] = ACTIONS(2753), - [anon_sym_PLUS_PLUS] = ACTIONS(2753), - [anon_sym_sizeof] = ACTIONS(2751), - [anon_sym___alignof__] = ACTIONS(2751), - [anon_sym___alignof] = ACTIONS(2751), - [anon_sym__alignof] = ACTIONS(2751), - [anon_sym_alignof] = ACTIONS(2751), - [anon_sym__Alignof] = ACTIONS(2751), - [anon_sym_offsetof] = ACTIONS(2751), - [anon_sym__Generic] = ACTIONS(2751), - [anon_sym_asm] = ACTIONS(2751), - [anon_sym___asm__] = ACTIONS(2751), - [anon_sym___asm] = ACTIONS(2751), - [sym_number_literal] = ACTIONS(2753), - [anon_sym_L_SQUOTE] = ACTIONS(2753), - [anon_sym_u_SQUOTE] = ACTIONS(2753), - [anon_sym_U_SQUOTE] = ACTIONS(2753), - [anon_sym_u8_SQUOTE] = ACTIONS(2753), - [anon_sym_SQUOTE] = ACTIONS(2753), - [anon_sym_L_DQUOTE] = ACTIONS(2753), - [anon_sym_u_DQUOTE] = ACTIONS(2753), - [anon_sym_U_DQUOTE] = ACTIONS(2753), - [anon_sym_u8_DQUOTE] = ACTIONS(2753), - [anon_sym_DQUOTE] = ACTIONS(2753), - [sym_true] = ACTIONS(2751), - [sym_false] = ACTIONS(2751), - [anon_sym_NULL] = ACTIONS(2751), - [anon_sym_nullptr] = ACTIONS(2751), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2751), - [anon_sym_decltype] = ACTIONS(2751), - [anon_sym_explicit] = ACTIONS(2751), - [anon_sym_typename] = ACTIONS(2751), - [anon_sym_export] = ACTIONS(2751), - [anon_sym_module] = ACTIONS(2751), - [anon_sym_import] = ACTIONS(2751), - [anon_sym_template] = ACTIONS(2751), - [anon_sym_operator] = ACTIONS(2751), - [anon_sym_try] = ACTIONS(2751), - [anon_sym_delete] = ACTIONS(2751), - [anon_sym_throw] = ACTIONS(2751), - [anon_sym_namespace] = ACTIONS(2751), - [anon_sym_static_assert] = ACTIONS(2751), - [anon_sym_concept] = ACTIONS(2751), - [anon_sym_co_return] = ACTIONS(2751), - [anon_sym_co_yield] = ACTIONS(2751), - [anon_sym_R_DQUOTE] = ACTIONS(2753), - [anon_sym_LR_DQUOTE] = ACTIONS(2753), - [anon_sym_uR_DQUOTE] = ACTIONS(2753), - [anon_sym_UR_DQUOTE] = ACTIONS(2753), - [anon_sym_u8R_DQUOTE] = ACTIONS(2753), - [anon_sym_co_await] = ACTIONS(2751), - [anon_sym_new] = ACTIONS(2751), - [anon_sym_requires] = ACTIONS(2751), - [sym_this] = ACTIONS(2751), - }, - [423] = { - [ts_builtin_sym_end] = ACTIONS(2683), - [sym_identifier] = ACTIONS(2681), - [aux_sym_preproc_include_token1] = ACTIONS(2681), - [aux_sym_preproc_def_token1] = ACTIONS(2681), - [aux_sym_preproc_if_token1] = ACTIONS(2681), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2681), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2681), - [sym_preproc_directive] = ACTIONS(2681), - [anon_sym_LPAREN2] = ACTIONS(2683), - [anon_sym_BANG] = ACTIONS(2683), - [anon_sym_TILDE] = ACTIONS(2683), - [anon_sym_DASH] = ACTIONS(2681), - [anon_sym_PLUS] = ACTIONS(2681), - [anon_sym_STAR] = ACTIONS(2683), - [anon_sym_AMP_AMP] = ACTIONS(2683), - [anon_sym_AMP] = ACTIONS(2681), - [anon_sym_SEMI] = ACTIONS(2683), - [anon_sym___extension__] = ACTIONS(2681), - [anon_sym_typedef] = ACTIONS(2681), - [anon_sym_virtual] = ACTIONS(2681), - [anon_sym_extern] = ACTIONS(2681), - [anon_sym___attribute__] = ACTIONS(2681), - [anon_sym___attribute] = ACTIONS(2681), - [anon_sym_using] = ACTIONS(2681), - [anon_sym_COLON_COLON] = ACTIONS(2683), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2683), - [anon_sym___declspec] = ACTIONS(2681), - [anon_sym___based] = ACTIONS(2681), - [anon_sym___cdecl] = ACTIONS(2681), - [anon_sym___clrcall] = ACTIONS(2681), - [anon_sym___stdcall] = ACTIONS(2681), - [anon_sym___fastcall] = ACTIONS(2681), - [anon_sym___thiscall] = ACTIONS(2681), - [anon_sym___vectorcall] = ACTIONS(2681), - [anon_sym_LBRACE] = ACTIONS(2683), - [anon_sym_signed] = ACTIONS(2681), - [anon_sym_unsigned] = ACTIONS(2681), - [anon_sym_long] = ACTIONS(2681), - [anon_sym_short] = ACTIONS(2681), - [anon_sym_LBRACK] = ACTIONS(2681), - [anon_sym_static] = ACTIONS(2681), - [anon_sym_register] = ACTIONS(2681), - [anon_sym_inline] = ACTIONS(2681), - [anon_sym___inline] = ACTIONS(2681), - [anon_sym___inline__] = ACTIONS(2681), - [anon_sym___forceinline] = ACTIONS(2681), - [anon_sym_thread_local] = ACTIONS(2681), - [anon_sym___thread] = ACTIONS(2681), - [anon_sym_const] = ACTIONS(2681), - [anon_sym_constexpr] = ACTIONS(2681), - [anon_sym_volatile] = ACTIONS(2681), - [anon_sym_restrict] = ACTIONS(2681), - [anon_sym___restrict__] = ACTIONS(2681), - [anon_sym__Atomic] = ACTIONS(2681), - [anon_sym__Noreturn] = ACTIONS(2681), - [anon_sym_noreturn] = ACTIONS(2681), - [anon_sym__Nonnull] = ACTIONS(2681), - [anon_sym_mutable] = ACTIONS(2681), - [anon_sym_constinit] = ACTIONS(2681), - [anon_sym_consteval] = ACTIONS(2681), - [anon_sym_alignas] = ACTIONS(2681), - [anon_sym__Alignas] = ACTIONS(2681), - [sym_primitive_type] = ACTIONS(2681), - [anon_sym_enum] = ACTIONS(2681), - [anon_sym_class] = ACTIONS(2681), - [anon_sym_struct] = ACTIONS(2681), - [anon_sym_union] = ACTIONS(2681), - [anon_sym_if] = ACTIONS(2681), - [anon_sym_else] = ACTIONS(2681), - [anon_sym_switch] = ACTIONS(2681), - [anon_sym_case] = ACTIONS(2681), - [anon_sym_default] = ACTIONS(2681), - [anon_sym_while] = ACTIONS(2681), - [anon_sym_do] = ACTIONS(2681), - [anon_sym_for] = ACTIONS(2681), - [anon_sym_return] = ACTIONS(2681), - [anon_sym_break] = ACTIONS(2681), - [anon_sym_continue] = ACTIONS(2681), - [anon_sym_goto] = ACTIONS(2681), - [anon_sym___try] = ACTIONS(2681), - [anon_sym___leave] = ACTIONS(2681), - [anon_sym_not] = ACTIONS(2681), - [anon_sym_compl] = ACTIONS(2681), - [anon_sym_DASH_DASH] = ACTIONS(2683), - [anon_sym_PLUS_PLUS] = ACTIONS(2683), - [anon_sym_sizeof] = ACTIONS(2681), - [anon_sym___alignof__] = ACTIONS(2681), - [anon_sym___alignof] = ACTIONS(2681), - [anon_sym__alignof] = ACTIONS(2681), - [anon_sym_alignof] = ACTIONS(2681), - [anon_sym__Alignof] = ACTIONS(2681), - [anon_sym_offsetof] = ACTIONS(2681), - [anon_sym__Generic] = ACTIONS(2681), - [anon_sym_asm] = ACTIONS(2681), - [anon_sym___asm__] = ACTIONS(2681), - [anon_sym___asm] = ACTIONS(2681), - [sym_number_literal] = ACTIONS(2683), - [anon_sym_L_SQUOTE] = ACTIONS(2683), - [anon_sym_u_SQUOTE] = ACTIONS(2683), - [anon_sym_U_SQUOTE] = ACTIONS(2683), - [anon_sym_u8_SQUOTE] = ACTIONS(2683), - [anon_sym_SQUOTE] = ACTIONS(2683), - [anon_sym_L_DQUOTE] = ACTIONS(2683), - [anon_sym_u_DQUOTE] = ACTIONS(2683), - [anon_sym_U_DQUOTE] = ACTIONS(2683), - [anon_sym_u8_DQUOTE] = ACTIONS(2683), - [anon_sym_DQUOTE] = ACTIONS(2683), - [sym_true] = ACTIONS(2681), - [sym_false] = ACTIONS(2681), - [anon_sym_NULL] = ACTIONS(2681), - [anon_sym_nullptr] = ACTIONS(2681), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2681), - [anon_sym_decltype] = ACTIONS(2681), - [anon_sym_explicit] = ACTIONS(2681), - [anon_sym_typename] = ACTIONS(2681), - [anon_sym_export] = ACTIONS(2681), - [anon_sym_module] = ACTIONS(2681), - [anon_sym_import] = ACTIONS(2681), - [anon_sym_template] = ACTIONS(2681), - [anon_sym_operator] = ACTIONS(2681), - [anon_sym_try] = ACTIONS(2681), - [anon_sym_delete] = ACTIONS(2681), - [anon_sym_throw] = ACTIONS(2681), - [anon_sym_namespace] = ACTIONS(2681), - [anon_sym_static_assert] = ACTIONS(2681), - [anon_sym_concept] = ACTIONS(2681), - [anon_sym_co_return] = ACTIONS(2681), - [anon_sym_co_yield] = ACTIONS(2681), - [anon_sym_R_DQUOTE] = ACTIONS(2683), - [anon_sym_LR_DQUOTE] = ACTIONS(2683), - [anon_sym_uR_DQUOTE] = ACTIONS(2683), - [anon_sym_UR_DQUOTE] = ACTIONS(2683), - [anon_sym_u8R_DQUOTE] = ACTIONS(2683), - [anon_sym_co_await] = ACTIONS(2681), - [anon_sym_new] = ACTIONS(2681), - [anon_sym_requires] = ACTIONS(2681), - [sym_this] = ACTIONS(2681), + [sym_primitive_type] = ACTIONS(3144), + [anon_sym_enum] = ACTIONS(3146), + [anon_sym_class] = ACTIONS(3148), + [anon_sym_struct] = ACTIONS(3150), + [anon_sym_union] = ACTIONS(3152), + [anon_sym_not] = ACTIONS(3134), + [anon_sym_compl] = ACTIONS(3134), + [anon_sym_DASH_DASH] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_sizeof] = ACTIONS(3156), + [anon_sym___alignof__] = ACTIONS(3158), + [anon_sym___alignof] = ACTIONS(3158), + [anon_sym__alignof] = ACTIONS(3158), + [anon_sym_alignof] = ACTIONS(3158), + [anon_sym__Alignof] = ACTIONS(3158), + [anon_sym_offsetof] = ACTIONS(3160), + [anon_sym__Generic] = ACTIONS(3162), + [anon_sym_asm] = ACTIONS(3164), + [anon_sym___asm__] = ACTIONS(3164), + [anon_sym___asm] = ACTIONS(3164), + [sym_number_literal] = ACTIONS(3166), + [anon_sym_L_SQUOTE] = ACTIONS(3168), + [anon_sym_u_SQUOTE] = ACTIONS(3168), + [anon_sym_U_SQUOTE] = ACTIONS(3168), + [anon_sym_u8_SQUOTE] = ACTIONS(3168), + [anon_sym_SQUOTE] = ACTIONS(3168), + [anon_sym_L_DQUOTE] = ACTIONS(3170), + [anon_sym_u_DQUOTE] = ACTIONS(3170), + [anon_sym_U_DQUOTE] = ACTIONS(3170), + [anon_sym_u8_DQUOTE] = ACTIONS(3170), + [anon_sym_DQUOTE] = ACTIONS(3170), + [sym_true] = ACTIONS(3172), + [sym_false] = ACTIONS(3172), + [anon_sym_NULL] = ACTIONS(3174), + [anon_sym_nullptr] = ACTIONS(3174), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3176), + [anon_sym_decltype] = ACTIONS(3178), + [anon_sym_typename] = ACTIONS(3180), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_GT2] = ACTIONS(3306), + [anon_sym_delete] = ACTIONS(3184), + [anon_sym_R_DQUOTE] = ACTIONS(3186), + [anon_sym_LR_DQUOTE] = ACTIONS(3186), + [anon_sym_uR_DQUOTE] = ACTIONS(3186), + [anon_sym_UR_DQUOTE] = ACTIONS(3186), + [anon_sym_u8R_DQUOTE] = ACTIONS(3186), + [anon_sym_co_await] = ACTIONS(3188), + [anon_sym_new] = ACTIONS(3190), + [anon_sym_requires] = ACTIONS(3192), + [sym_this] = ACTIONS(3172), }, - [424] = { - [sym_type_qualifier] = STATE(3910), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(4737), - [sym_sized_type_specifier] = STATE(2668), - [sym_enum_specifier] = STATE(2668), - [sym_struct_specifier] = STATE(2668), - [sym_union_specifier] = STATE(2668), - [sym_expression] = STATE(4334), - [sym__string] = STATE(4738), - [sym_conditional_expression] = STATE(4829), - [sym_assignment_expression] = STATE(4829), - [sym_pointer_expression] = STATE(3602), - [sym_unary_expression] = STATE(4829), - [sym_binary_expression] = STATE(4829), - [sym_update_expression] = STATE(4829), - [sym_cast_expression] = STATE(4829), - [sym_type_descriptor] = STATE(7030), - [sym_sizeof_expression] = STATE(4829), - [sym_alignof_expression] = STATE(4829), - [sym_offsetof_expression] = STATE(4829), - [sym_generic_expression] = STATE(4829), - [sym_subscript_expression] = STATE(3602), - [sym_call_expression] = STATE(3602), - [sym_gnu_asm_expression] = STATE(4829), - [sym_extension_expression] = STATE(4829), - [sym_field_expression] = STATE(3602), - [sym_compound_literal_expression] = STATE(4829), - [sym_parenthesized_expression] = STATE(3602), - [sym_char_literal] = STATE(4738), - [sym_concatenated_string] = STATE(4738), - [sym_string_literal] = STATE(3759), - [sym_null] = STATE(4829), - [sym_placeholder_type_specifier] = STATE(2668), - [sym_decltype_auto] = STATE(2708), - [sym_decltype] = STATE(2598), - [sym_class_specifier] = STATE(2668), - [sym__class_name] = STATE(7804), - [sym_dependent_type] = STATE(2668), - [sym_template_type] = STATE(5285), - [sym_template_function] = STATE(4829), - [sym_raw_string_literal] = STATE(3759), - [sym_co_await_expression] = STATE(4829), - [sym_new_expression] = STATE(4829), - [sym_delete_expression] = STATE(4829), - [sym_requires_clause] = STATE(4829), - [sym_requires_expression] = STATE(4829), - [sym_lambda_expression] = STATE(4829), - [sym_lambda_capture_specifier] = STATE(5401), - [sym_fold_expression] = STATE(4829), - [sym_parameter_pack_expansion] = STATE(4829), - [sym_type_parameter_pack_expansion] = STATE(7218), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5750), - [sym_qualified_identifier] = STATE(3602), - [sym_qualified_type_identifier] = STATE(5327), - [sym_user_defined_literal] = STATE(3602), - [aux_sym__type_definition_type_repeat1] = STATE(3910), - [aux_sym_sized_type_specifier_repeat1] = STATE(4239), - [sym_identifier] = ACTIONS(3116), - [anon_sym_LPAREN2] = ACTIONS(3118), - [anon_sym_BANG] = ACTIONS(3120), - [anon_sym_TILDE] = ACTIONS(3120), - [anon_sym_DASH] = ACTIONS(3122), - [anon_sym_PLUS] = ACTIONS(3122), - [anon_sym_STAR] = ACTIONS(3124), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym___extension__] = ACTIONS(3126), - [anon_sym_COLON_COLON] = ACTIONS(3128), - [anon_sym_signed] = ACTIONS(3130), - [anon_sym_unsigned] = ACTIONS(3130), - [anon_sym_long] = ACTIONS(3130), - [anon_sym_short] = ACTIONS(3130), - [anon_sym_LBRACK] = ACTIONS(2020), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(3132), - [anon_sym_enum] = ACTIONS(3134), - [anon_sym_class] = ACTIONS(3136), - [anon_sym_struct] = ACTIONS(3138), - [anon_sym_union] = ACTIONS(3140), - [anon_sym_not] = ACTIONS(3122), - [anon_sym_compl] = ACTIONS(3122), - [anon_sym_DASH_DASH] = ACTIONS(3142), - [anon_sym_PLUS_PLUS] = ACTIONS(3142), - [anon_sym_sizeof] = ACTIONS(3144), - [anon_sym___alignof__] = ACTIONS(3146), - [anon_sym___alignof] = ACTIONS(3146), - [anon_sym__alignof] = ACTIONS(3146), - [anon_sym_alignof] = ACTIONS(3146), - [anon_sym__Alignof] = ACTIONS(3146), - [anon_sym_offsetof] = ACTIONS(3148), - [anon_sym__Generic] = ACTIONS(3150), - [anon_sym_asm] = ACTIONS(3152), - [anon_sym___asm__] = ACTIONS(3152), - [anon_sym___asm] = ACTIONS(3152), - [sym_number_literal] = ACTIONS(3154), - [anon_sym_L_SQUOTE] = ACTIONS(3156), - [anon_sym_u_SQUOTE] = ACTIONS(3156), - [anon_sym_U_SQUOTE] = ACTIONS(3156), - [anon_sym_u8_SQUOTE] = ACTIONS(3156), - [anon_sym_SQUOTE] = ACTIONS(3156), - [anon_sym_L_DQUOTE] = ACTIONS(3158), - [anon_sym_u_DQUOTE] = ACTIONS(3158), - [anon_sym_U_DQUOTE] = ACTIONS(3158), - [anon_sym_u8_DQUOTE] = ACTIONS(3158), - [anon_sym_DQUOTE] = ACTIONS(3158), - [sym_true] = ACTIONS(3160), - [sym_false] = ACTIONS(3160), - [anon_sym_NULL] = ACTIONS(3162), - [anon_sym_nullptr] = ACTIONS(3162), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3164), - [anon_sym_decltype] = ACTIONS(3166), - [anon_sym_typename] = ACTIONS(3168), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_GT2] = ACTIONS(3300), - [anon_sym_delete] = ACTIONS(3172), - [anon_sym_R_DQUOTE] = ACTIONS(3174), - [anon_sym_LR_DQUOTE] = ACTIONS(3174), - [anon_sym_uR_DQUOTE] = ACTIONS(3174), - [anon_sym_UR_DQUOTE] = ACTIONS(3174), - [anon_sym_u8R_DQUOTE] = ACTIONS(3174), - [anon_sym_co_await] = ACTIONS(3176), - [anon_sym_new] = ACTIONS(3178), - [anon_sym_requires] = ACTIONS(3180), - [sym_this] = ACTIONS(3160), + [430] = { + [ts_builtin_sym_end] = ACTIONS(2719), + [sym_identifier] = ACTIONS(2717), + [aux_sym_preproc_include_token1] = ACTIONS(2717), + [aux_sym_preproc_def_token1] = ACTIONS(2717), + [aux_sym_preproc_if_token1] = ACTIONS(2717), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2717), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2717), + [sym_preproc_directive] = ACTIONS(2717), + [anon_sym_LPAREN2] = ACTIONS(2719), + [anon_sym_BANG] = ACTIONS(2719), + [anon_sym_TILDE] = ACTIONS(2719), + [anon_sym_DASH] = ACTIONS(2717), + [anon_sym_PLUS] = ACTIONS(2717), + [anon_sym_STAR] = ACTIONS(2719), + [anon_sym_AMP_AMP] = ACTIONS(2719), + [anon_sym_AMP] = ACTIONS(2717), + [anon_sym_SEMI] = ACTIONS(2719), + [anon_sym___extension__] = ACTIONS(2717), + [anon_sym_typedef] = ACTIONS(2717), + [anon_sym_virtual] = ACTIONS(2717), + [anon_sym_extern] = ACTIONS(2717), + [anon_sym___attribute__] = ACTIONS(2717), + [anon_sym___attribute] = ACTIONS(2717), + [anon_sym_using] = ACTIONS(2717), + [anon_sym_COLON_COLON] = ACTIONS(2719), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2719), + [anon_sym___declspec] = ACTIONS(2717), + [anon_sym___based] = ACTIONS(2717), + [anon_sym___cdecl] = ACTIONS(2717), + [anon_sym___clrcall] = ACTIONS(2717), + [anon_sym___stdcall] = ACTIONS(2717), + [anon_sym___fastcall] = ACTIONS(2717), + [anon_sym___thiscall] = ACTIONS(2717), + [anon_sym___vectorcall] = ACTIONS(2717), + [anon_sym_LBRACE] = ACTIONS(2719), + [anon_sym_signed] = ACTIONS(2717), + [anon_sym_unsigned] = ACTIONS(2717), + [anon_sym_long] = ACTIONS(2717), + [anon_sym_short] = ACTIONS(2717), + [anon_sym_LBRACK] = ACTIONS(2717), + [anon_sym_static] = ACTIONS(2717), + [anon_sym_register] = ACTIONS(2717), + [anon_sym_inline] = ACTIONS(2717), + [anon_sym___inline] = ACTIONS(2717), + [anon_sym___inline__] = ACTIONS(2717), + [anon_sym___forceinline] = ACTIONS(2717), + [anon_sym_thread_local] = ACTIONS(2717), + [anon_sym___thread] = ACTIONS(2717), + [anon_sym_const] = ACTIONS(2717), + [anon_sym_constexpr] = ACTIONS(2717), + [anon_sym_volatile] = ACTIONS(2717), + [anon_sym_restrict] = ACTIONS(2717), + [anon_sym___restrict__] = ACTIONS(2717), + [anon_sym__Atomic] = ACTIONS(2717), + [anon_sym__Noreturn] = ACTIONS(2717), + [anon_sym_noreturn] = ACTIONS(2717), + [anon_sym__Nonnull] = ACTIONS(2717), + [anon_sym_mutable] = ACTIONS(2717), + [anon_sym_constinit] = ACTIONS(2717), + [anon_sym_consteval] = ACTIONS(2717), + [anon_sym_alignas] = ACTIONS(2717), + [anon_sym__Alignas] = ACTIONS(2717), + [sym_primitive_type] = ACTIONS(2717), + [anon_sym_enum] = ACTIONS(2717), + [anon_sym_class] = ACTIONS(2717), + [anon_sym_struct] = ACTIONS(2717), + [anon_sym_union] = ACTIONS(2717), + [anon_sym_if] = ACTIONS(2717), + [anon_sym_else] = ACTIONS(2717), + [anon_sym_switch] = ACTIONS(2717), + [anon_sym_case] = ACTIONS(2717), + [anon_sym_default] = ACTIONS(2717), + [anon_sym_while] = ACTIONS(2717), + [anon_sym_do] = ACTIONS(2717), + [anon_sym_for] = ACTIONS(2717), + [anon_sym_return] = ACTIONS(2717), + [anon_sym_break] = ACTIONS(2717), + [anon_sym_continue] = ACTIONS(2717), + [anon_sym_goto] = ACTIONS(2717), + [anon_sym___try] = ACTIONS(2717), + [anon_sym___leave] = ACTIONS(2717), + [anon_sym_not] = ACTIONS(2717), + [anon_sym_compl] = ACTIONS(2717), + [anon_sym_DASH_DASH] = ACTIONS(2719), + [anon_sym_PLUS_PLUS] = ACTIONS(2719), + [anon_sym_sizeof] = ACTIONS(2717), + [anon_sym___alignof__] = ACTIONS(2717), + [anon_sym___alignof] = ACTIONS(2717), + [anon_sym__alignof] = ACTIONS(2717), + [anon_sym_alignof] = ACTIONS(2717), + [anon_sym__Alignof] = ACTIONS(2717), + [anon_sym_offsetof] = ACTIONS(2717), + [anon_sym__Generic] = ACTIONS(2717), + [anon_sym_asm] = ACTIONS(2717), + [anon_sym___asm__] = ACTIONS(2717), + [anon_sym___asm] = ACTIONS(2717), + [sym_number_literal] = ACTIONS(2719), + [anon_sym_L_SQUOTE] = ACTIONS(2719), + [anon_sym_u_SQUOTE] = ACTIONS(2719), + [anon_sym_U_SQUOTE] = ACTIONS(2719), + [anon_sym_u8_SQUOTE] = ACTIONS(2719), + [anon_sym_SQUOTE] = ACTIONS(2719), + [anon_sym_L_DQUOTE] = ACTIONS(2719), + [anon_sym_u_DQUOTE] = ACTIONS(2719), + [anon_sym_U_DQUOTE] = ACTIONS(2719), + [anon_sym_u8_DQUOTE] = ACTIONS(2719), + [anon_sym_DQUOTE] = ACTIONS(2719), + [sym_true] = ACTIONS(2717), + [sym_false] = ACTIONS(2717), + [anon_sym_NULL] = ACTIONS(2717), + [anon_sym_nullptr] = ACTIONS(2717), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2717), + [anon_sym_decltype] = ACTIONS(2717), + [anon_sym_explicit] = ACTIONS(2717), + [anon_sym_typename] = ACTIONS(2717), + [anon_sym_export] = ACTIONS(2717), + [anon_sym_module] = ACTIONS(2717), + [anon_sym_import] = ACTIONS(2717), + [anon_sym_template] = ACTIONS(2717), + [anon_sym_operator] = ACTIONS(2717), + [anon_sym_try] = ACTIONS(2717), + [anon_sym_delete] = ACTIONS(2717), + [anon_sym_throw] = ACTIONS(2717), + [anon_sym_namespace] = ACTIONS(2717), + [anon_sym_static_assert] = ACTIONS(2717), + [anon_sym_concept] = ACTIONS(2717), + [anon_sym_co_return] = ACTIONS(2717), + [anon_sym_co_yield] = ACTIONS(2717), + [anon_sym_R_DQUOTE] = ACTIONS(2719), + [anon_sym_LR_DQUOTE] = ACTIONS(2719), + [anon_sym_uR_DQUOTE] = ACTIONS(2719), + [anon_sym_UR_DQUOTE] = ACTIONS(2719), + [anon_sym_u8R_DQUOTE] = ACTIONS(2719), + [anon_sym_co_await] = ACTIONS(2717), + [anon_sym_new] = ACTIONS(2717), + [anon_sym_requires] = ACTIONS(2717), + [sym_this] = ACTIONS(2717), }, - [425] = { - [sym_catch_clause] = STATE(425), - [aux_sym_constructor_try_statement_repeat1] = STATE(425), + [431] = { + [sym_catch_clause] = STATE(431), + [aux_sym_constructor_try_statement_repeat1] = STATE(431), [sym_identifier] = ACTIONS(2476), [aux_sym_preproc_include_token1] = ACTIONS(2476), [aux_sym_preproc_def_token1] = ACTIONS(2476), @@ -104695,7 +105822,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_concept] = ACTIONS(2476), [anon_sym_co_return] = ACTIONS(2476), [anon_sym_co_yield] = ACTIONS(2476), - [anon_sym_catch] = ACTIONS(3302), + [anon_sym_catch] = ACTIONS(3308), [anon_sym_R_DQUOTE] = ACTIONS(2478), [anon_sym_LR_DQUOTE] = ACTIONS(2478), [anon_sym_uR_DQUOTE] = ACTIONS(2478), @@ -104706,79 +105833,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2476), [sym_this] = ACTIONS(2476), }, - [426] = { - [sym_type_qualifier] = STATE(3910), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(4737), - [sym_sized_type_specifier] = STATE(2668), - [sym_enum_specifier] = STATE(2668), - [sym_struct_specifier] = STATE(2668), - [sym_union_specifier] = STATE(2668), - [sym_expression] = STATE(4336), - [sym__string] = STATE(4738), - [sym_conditional_expression] = STATE(4829), - [sym_assignment_expression] = STATE(4829), - [sym_pointer_expression] = STATE(3602), - [sym_unary_expression] = STATE(4829), - [sym_binary_expression] = STATE(4829), - [sym_update_expression] = STATE(4829), - [sym_cast_expression] = STATE(4829), - [sym_type_descriptor] = STATE(7094), - [sym_sizeof_expression] = STATE(4829), - [sym_alignof_expression] = STATE(4829), - [sym_offsetof_expression] = STATE(4829), - [sym_generic_expression] = STATE(4829), - [sym_subscript_expression] = STATE(3602), - [sym_call_expression] = STATE(3602), - [sym_gnu_asm_expression] = STATE(4829), - [sym_extension_expression] = STATE(4829), - [sym_field_expression] = STATE(3602), - [sym_compound_literal_expression] = STATE(4829), - [sym_parenthesized_expression] = STATE(3602), - [sym_char_literal] = STATE(4738), - [sym_concatenated_string] = STATE(4738), - [sym_string_literal] = STATE(3759), - [sym_null] = STATE(4829), - [sym_placeholder_type_specifier] = STATE(2668), - [sym_decltype_auto] = STATE(2708), - [sym_decltype] = STATE(2598), - [sym_class_specifier] = STATE(2668), - [sym__class_name] = STATE(7804), - [sym_dependent_type] = STATE(2668), - [sym_template_type] = STATE(5285), - [sym_template_function] = STATE(4829), - [sym_raw_string_literal] = STATE(3759), - [sym_co_await_expression] = STATE(4829), - [sym_new_expression] = STATE(4829), - [sym_delete_expression] = STATE(4829), - [sym_requires_clause] = STATE(4829), - [sym_requires_expression] = STATE(4829), - [sym_lambda_expression] = STATE(4829), - [sym_lambda_capture_specifier] = STATE(5401), - [sym_fold_expression] = STATE(4829), - [sym_parameter_pack_expansion] = STATE(4829), - [sym_type_parameter_pack_expansion] = STATE(7229), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5750), - [sym_qualified_identifier] = STATE(3602), - [sym_qualified_type_identifier] = STATE(5327), - [sym_user_defined_literal] = STATE(3602), - [aux_sym__type_definition_type_repeat1] = STATE(3910), - [aux_sym_sized_type_specifier_repeat1] = STATE(4239), - [sym_identifier] = ACTIONS(3116), - [anon_sym_LPAREN2] = ACTIONS(3118), - [anon_sym_BANG] = ACTIONS(3120), - [anon_sym_TILDE] = ACTIONS(3120), - [anon_sym_DASH] = ACTIONS(3122), - [anon_sym_PLUS] = ACTIONS(3122), - [anon_sym_STAR] = ACTIONS(3124), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym___extension__] = ACTIONS(3126), - [anon_sym_COLON_COLON] = ACTIONS(3128), - [anon_sym_signed] = ACTIONS(3130), - [anon_sym_unsigned] = ACTIONS(3130), - [anon_sym_long] = ACTIONS(3130), - [anon_sym_short] = ACTIONS(3130), + [432] = { + [sym_type_qualifier] = STATE(3954), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(4767), + [sym_sized_type_specifier] = STATE(2747), + [sym_enum_specifier] = STATE(2747), + [sym_struct_specifier] = STATE(2747), + [sym_union_specifier] = STATE(2747), + [sym_expression] = STATE(4429), + [sym__string] = STATE(4825), + [sym_conditional_expression] = STATE(4856), + [sym_assignment_expression] = STATE(4856), + [sym_pointer_expression] = STATE(3701), + [sym_unary_expression] = STATE(4856), + [sym_binary_expression] = STATE(4856), + [sym_update_expression] = STATE(4856), + [sym_cast_expression] = STATE(4856), + [sym_type_descriptor] = STATE(7088), + [sym_sizeof_expression] = STATE(4856), + [sym_alignof_expression] = STATE(4856), + [sym_offsetof_expression] = STATE(4856), + [sym_generic_expression] = STATE(4856), + [sym_subscript_expression] = STATE(3701), + [sym_call_expression] = STATE(3701), + [sym_gnu_asm_expression] = STATE(4856), + [sym_extension_expression] = STATE(4856), + [sym_field_expression] = STATE(3701), + [sym_compound_literal_expression] = STATE(4856), + [sym_parenthesized_expression] = STATE(3701), + [sym_char_literal] = STATE(4825), + [sym_concatenated_string] = STATE(4825), + [sym_string_literal] = STATE(3812), + [sym_null] = STATE(4856), + [sym_placeholder_type_specifier] = STATE(2747), + [sym_decltype_auto] = STATE(2733), + [sym_decltype] = STATE(2621), + [sym_class_specifier] = STATE(2747), + [sym__class_name] = STATE(7816), + [sym_dependent_type] = STATE(2747), + [sym_template_type] = STATE(5365), + [sym_template_function] = STATE(4856), + [sym_raw_string_literal] = STATE(3812), + [sym_co_await_expression] = STATE(4856), + [sym_new_expression] = STATE(4856), + [sym_delete_expression] = STATE(4856), + [sym_requires_clause] = STATE(4856), + [sym_requires_expression] = STATE(4856), + [sym_lambda_expression] = STATE(4856), + [sym_lambda_capture_specifier] = STATE(5489), + [sym_fold_expression] = STATE(4856), + [sym_parameter_pack_expansion] = STATE(4856), + [sym_type_parameter_pack_expansion] = STATE(7608), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5742), + [sym_qualified_identifier] = STATE(3701), + [sym_qualified_type_identifier] = STATE(5382), + [sym_user_defined_literal] = STATE(3701), + [aux_sym__type_definition_type_repeat1] = STATE(3954), + [aux_sym_sized_type_specifier_repeat1] = STATE(4313), + [sym_identifier] = ACTIONS(3128), + [anon_sym_LPAREN2] = ACTIONS(3130), + [anon_sym_BANG] = ACTIONS(3132), + [anon_sym_TILDE] = ACTIONS(3132), + [anon_sym_DASH] = ACTIONS(3134), + [anon_sym_PLUS] = ACTIONS(3134), + [anon_sym_STAR] = ACTIONS(3136), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym___extension__] = ACTIONS(3138), + [anon_sym_COLON_COLON] = ACTIONS(3140), + [anon_sym_signed] = ACTIONS(3142), + [anon_sym_unsigned] = ACTIONS(3142), + [anon_sym_long] = ACTIONS(3142), + [anon_sym_short] = ACTIONS(3142), [anon_sym_LBRACK] = ACTIONS(2020), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), @@ -104794,131 +105921,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(3132), - [anon_sym_enum] = ACTIONS(3134), - [anon_sym_class] = ACTIONS(3136), - [anon_sym_struct] = ACTIONS(3138), - [anon_sym_union] = ACTIONS(3140), - [anon_sym_not] = ACTIONS(3122), - [anon_sym_compl] = ACTIONS(3122), - [anon_sym_DASH_DASH] = ACTIONS(3142), - [anon_sym_PLUS_PLUS] = ACTIONS(3142), - [anon_sym_sizeof] = ACTIONS(3144), - [anon_sym___alignof__] = ACTIONS(3146), - [anon_sym___alignof] = ACTIONS(3146), - [anon_sym__alignof] = ACTIONS(3146), - [anon_sym_alignof] = ACTIONS(3146), - [anon_sym__Alignof] = ACTIONS(3146), - [anon_sym_offsetof] = ACTIONS(3148), - [anon_sym__Generic] = ACTIONS(3150), - [anon_sym_asm] = ACTIONS(3152), - [anon_sym___asm__] = ACTIONS(3152), - [anon_sym___asm] = ACTIONS(3152), - [sym_number_literal] = ACTIONS(3154), - [anon_sym_L_SQUOTE] = ACTIONS(3156), - [anon_sym_u_SQUOTE] = ACTIONS(3156), - [anon_sym_U_SQUOTE] = ACTIONS(3156), - [anon_sym_u8_SQUOTE] = ACTIONS(3156), - [anon_sym_SQUOTE] = ACTIONS(3156), - [anon_sym_L_DQUOTE] = ACTIONS(3158), - [anon_sym_u_DQUOTE] = ACTIONS(3158), - [anon_sym_U_DQUOTE] = ACTIONS(3158), - [anon_sym_u8_DQUOTE] = ACTIONS(3158), - [anon_sym_DQUOTE] = ACTIONS(3158), - [sym_true] = ACTIONS(3160), - [sym_false] = ACTIONS(3160), - [anon_sym_NULL] = ACTIONS(3162), - [anon_sym_nullptr] = ACTIONS(3162), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3164), - [anon_sym_decltype] = ACTIONS(3166), - [anon_sym_typename] = ACTIONS(3168), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_GT2] = ACTIONS(3305), - [anon_sym_delete] = ACTIONS(3172), - [anon_sym_R_DQUOTE] = ACTIONS(3174), - [anon_sym_LR_DQUOTE] = ACTIONS(3174), - [anon_sym_uR_DQUOTE] = ACTIONS(3174), - [anon_sym_UR_DQUOTE] = ACTIONS(3174), - [anon_sym_u8R_DQUOTE] = ACTIONS(3174), - [anon_sym_co_await] = ACTIONS(3176), - [anon_sym_new] = ACTIONS(3178), - [anon_sym_requires] = ACTIONS(3180), - [sym_this] = ACTIONS(3160), + [sym_primitive_type] = ACTIONS(3144), + [anon_sym_enum] = ACTIONS(3146), + [anon_sym_class] = ACTIONS(3148), + [anon_sym_struct] = ACTIONS(3150), + [anon_sym_union] = ACTIONS(3152), + [anon_sym_not] = ACTIONS(3134), + [anon_sym_compl] = ACTIONS(3134), + [anon_sym_DASH_DASH] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_sizeof] = ACTIONS(3156), + [anon_sym___alignof__] = ACTIONS(3158), + [anon_sym___alignof] = ACTIONS(3158), + [anon_sym__alignof] = ACTIONS(3158), + [anon_sym_alignof] = ACTIONS(3158), + [anon_sym__Alignof] = ACTIONS(3158), + [anon_sym_offsetof] = ACTIONS(3160), + [anon_sym__Generic] = ACTIONS(3162), + [anon_sym_asm] = ACTIONS(3164), + [anon_sym___asm__] = ACTIONS(3164), + [anon_sym___asm] = ACTIONS(3164), + [sym_number_literal] = ACTIONS(3166), + [anon_sym_L_SQUOTE] = ACTIONS(3168), + [anon_sym_u_SQUOTE] = ACTIONS(3168), + [anon_sym_U_SQUOTE] = ACTIONS(3168), + [anon_sym_u8_SQUOTE] = ACTIONS(3168), + [anon_sym_SQUOTE] = ACTIONS(3168), + [anon_sym_L_DQUOTE] = ACTIONS(3170), + [anon_sym_u_DQUOTE] = ACTIONS(3170), + [anon_sym_U_DQUOTE] = ACTIONS(3170), + [anon_sym_u8_DQUOTE] = ACTIONS(3170), + [anon_sym_DQUOTE] = ACTIONS(3170), + [sym_true] = ACTIONS(3172), + [sym_false] = ACTIONS(3172), + [anon_sym_NULL] = ACTIONS(3174), + [anon_sym_nullptr] = ACTIONS(3174), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3176), + [anon_sym_decltype] = ACTIONS(3178), + [anon_sym_typename] = ACTIONS(3180), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_GT2] = ACTIONS(3311), + [anon_sym_delete] = ACTIONS(3184), + [anon_sym_R_DQUOTE] = ACTIONS(3186), + [anon_sym_LR_DQUOTE] = ACTIONS(3186), + [anon_sym_uR_DQUOTE] = ACTIONS(3186), + [anon_sym_UR_DQUOTE] = ACTIONS(3186), + [anon_sym_u8R_DQUOTE] = ACTIONS(3186), + [anon_sym_co_await] = ACTIONS(3188), + [anon_sym_new] = ACTIONS(3190), + [anon_sym_requires] = ACTIONS(3192), + [sym_this] = ACTIONS(3172), }, - [427] = { - [sym_type_qualifier] = STATE(3910), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(4737), - [sym_sized_type_specifier] = STATE(2668), - [sym_enum_specifier] = STATE(2668), - [sym_struct_specifier] = STATE(2668), - [sym_union_specifier] = STATE(2668), - [sym_expression] = STATE(4339), - [sym__string] = STATE(4738), - [sym_conditional_expression] = STATE(4829), - [sym_assignment_expression] = STATE(4829), - [sym_pointer_expression] = STATE(3602), - [sym_unary_expression] = STATE(4829), - [sym_binary_expression] = STATE(4829), - [sym_update_expression] = STATE(4829), - [sym_cast_expression] = STATE(4829), - [sym_type_descriptor] = STATE(6939), - [sym_sizeof_expression] = STATE(4829), - [sym_alignof_expression] = STATE(4829), - [sym_offsetof_expression] = STATE(4829), - [sym_generic_expression] = STATE(4829), - [sym_subscript_expression] = STATE(3602), - [sym_call_expression] = STATE(3602), - [sym_gnu_asm_expression] = STATE(4829), - [sym_extension_expression] = STATE(4829), - [sym_field_expression] = STATE(3602), - [sym_compound_literal_expression] = STATE(4829), - [sym_parenthesized_expression] = STATE(3602), - [sym_char_literal] = STATE(4738), - [sym_concatenated_string] = STATE(4738), - [sym_string_literal] = STATE(3759), - [sym_null] = STATE(4829), - [sym_placeholder_type_specifier] = STATE(2668), - [sym_decltype_auto] = STATE(2708), - [sym_decltype] = STATE(2598), - [sym_class_specifier] = STATE(2668), - [sym__class_name] = STATE(7804), - [sym_dependent_type] = STATE(2668), - [sym_template_type] = STATE(5285), - [sym_template_function] = STATE(4829), - [sym_raw_string_literal] = STATE(3759), - [sym_co_await_expression] = STATE(4829), - [sym_new_expression] = STATE(4829), - [sym_delete_expression] = STATE(4829), - [sym_requires_clause] = STATE(4829), - [sym_requires_expression] = STATE(4829), - [sym_lambda_expression] = STATE(4829), - [sym_lambda_capture_specifier] = STATE(5401), - [sym_fold_expression] = STATE(4829), - [sym_parameter_pack_expansion] = STATE(4829), - [sym_type_parameter_pack_expansion] = STATE(7238), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5750), - [sym_qualified_identifier] = STATE(3602), - [sym_qualified_type_identifier] = STATE(5327), - [sym_user_defined_literal] = STATE(3602), - [aux_sym__type_definition_type_repeat1] = STATE(3910), - [aux_sym_sized_type_specifier_repeat1] = STATE(4239), - [sym_identifier] = ACTIONS(3116), - [anon_sym_LPAREN2] = ACTIONS(3118), - [anon_sym_BANG] = ACTIONS(3120), - [anon_sym_TILDE] = ACTIONS(3120), - [anon_sym_DASH] = ACTIONS(3122), - [anon_sym_PLUS] = ACTIONS(3122), - [anon_sym_STAR] = ACTIONS(3124), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym___extension__] = ACTIONS(3126), - [anon_sym_COLON_COLON] = ACTIONS(3128), - [anon_sym_signed] = ACTIONS(3130), - [anon_sym_unsigned] = ACTIONS(3130), - [anon_sym_long] = ACTIONS(3130), - [anon_sym_short] = ACTIONS(3130), + [433] = { + [sym_type_qualifier] = STATE(3954), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(4767), + [sym_sized_type_specifier] = STATE(2747), + [sym_enum_specifier] = STATE(2747), + [sym_struct_specifier] = STATE(2747), + [sym_union_specifier] = STATE(2747), + [sym_expression] = STATE(4441), + [sym__string] = STATE(4825), + [sym_conditional_expression] = STATE(4856), + [sym_assignment_expression] = STATE(4856), + [sym_pointer_expression] = STATE(3701), + [sym_unary_expression] = STATE(4856), + [sym_binary_expression] = STATE(4856), + [sym_update_expression] = STATE(4856), + [sym_cast_expression] = STATE(4856), + [sym_type_descriptor] = STATE(7092), + [sym_sizeof_expression] = STATE(4856), + [sym_alignof_expression] = STATE(4856), + [sym_offsetof_expression] = STATE(4856), + [sym_generic_expression] = STATE(4856), + [sym_subscript_expression] = STATE(3701), + [sym_call_expression] = STATE(3701), + [sym_gnu_asm_expression] = STATE(4856), + [sym_extension_expression] = STATE(4856), + [sym_field_expression] = STATE(3701), + [sym_compound_literal_expression] = STATE(4856), + [sym_parenthesized_expression] = STATE(3701), + [sym_char_literal] = STATE(4825), + [sym_concatenated_string] = STATE(4825), + [sym_string_literal] = STATE(3812), + [sym_null] = STATE(4856), + [sym_placeholder_type_specifier] = STATE(2747), + [sym_decltype_auto] = STATE(2733), + [sym_decltype] = STATE(2621), + [sym_class_specifier] = STATE(2747), + [sym__class_name] = STATE(7816), + [sym_dependent_type] = STATE(2747), + [sym_template_type] = STATE(5365), + [sym_template_function] = STATE(4856), + [sym_raw_string_literal] = STATE(3812), + [sym_co_await_expression] = STATE(4856), + [sym_new_expression] = STATE(4856), + [sym_delete_expression] = STATE(4856), + [sym_requires_clause] = STATE(4856), + [sym_requires_expression] = STATE(4856), + [sym_lambda_expression] = STATE(4856), + [sym_lambda_capture_specifier] = STATE(5489), + [sym_fold_expression] = STATE(4856), + [sym_parameter_pack_expansion] = STATE(4856), + [sym_type_parameter_pack_expansion] = STATE(7628), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5742), + [sym_qualified_identifier] = STATE(3701), + [sym_qualified_type_identifier] = STATE(5382), + [sym_user_defined_literal] = STATE(3701), + [aux_sym__type_definition_type_repeat1] = STATE(3954), + [aux_sym_sized_type_specifier_repeat1] = STATE(4313), + [sym_identifier] = ACTIONS(3128), + [anon_sym_LPAREN2] = ACTIONS(3130), + [anon_sym_BANG] = ACTIONS(3132), + [anon_sym_TILDE] = ACTIONS(3132), + [anon_sym_DASH] = ACTIONS(3134), + [anon_sym_PLUS] = ACTIONS(3134), + [anon_sym_STAR] = ACTIONS(3136), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym___extension__] = ACTIONS(3138), + [anon_sym_COLON_COLON] = ACTIONS(3140), + [anon_sym_signed] = ACTIONS(3142), + [anon_sym_unsigned] = ACTIONS(3142), + [anon_sym_long] = ACTIONS(3142), + [anon_sym_short] = ACTIONS(3142), [anon_sym_LBRACK] = ACTIONS(2020), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), @@ -104934,2017 +106061,1324 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(3132), - [anon_sym_enum] = ACTIONS(3134), - [anon_sym_class] = ACTIONS(3136), - [anon_sym_struct] = ACTIONS(3138), - [anon_sym_union] = ACTIONS(3140), - [anon_sym_not] = ACTIONS(3122), - [anon_sym_compl] = ACTIONS(3122), - [anon_sym_DASH_DASH] = ACTIONS(3142), - [anon_sym_PLUS_PLUS] = ACTIONS(3142), - [anon_sym_sizeof] = ACTIONS(3144), - [anon_sym___alignof__] = ACTIONS(3146), - [anon_sym___alignof] = ACTIONS(3146), - [anon_sym__alignof] = ACTIONS(3146), - [anon_sym_alignof] = ACTIONS(3146), - [anon_sym__Alignof] = ACTIONS(3146), - [anon_sym_offsetof] = ACTIONS(3148), - [anon_sym__Generic] = ACTIONS(3150), - [anon_sym_asm] = ACTIONS(3152), - [anon_sym___asm__] = ACTIONS(3152), - [anon_sym___asm] = ACTIONS(3152), - [sym_number_literal] = ACTIONS(3154), - [anon_sym_L_SQUOTE] = ACTIONS(3156), - [anon_sym_u_SQUOTE] = ACTIONS(3156), - [anon_sym_U_SQUOTE] = ACTIONS(3156), - [anon_sym_u8_SQUOTE] = ACTIONS(3156), - [anon_sym_SQUOTE] = ACTIONS(3156), - [anon_sym_L_DQUOTE] = ACTIONS(3158), - [anon_sym_u_DQUOTE] = ACTIONS(3158), - [anon_sym_U_DQUOTE] = ACTIONS(3158), - [anon_sym_u8_DQUOTE] = ACTIONS(3158), - [anon_sym_DQUOTE] = ACTIONS(3158), - [sym_true] = ACTIONS(3160), - [sym_false] = ACTIONS(3160), - [anon_sym_NULL] = ACTIONS(3162), - [anon_sym_nullptr] = ACTIONS(3162), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3164), - [anon_sym_decltype] = ACTIONS(3166), - [anon_sym_typename] = ACTIONS(3168), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_GT2] = ACTIONS(3307), - [anon_sym_delete] = ACTIONS(3172), - [anon_sym_R_DQUOTE] = ACTIONS(3174), - [anon_sym_LR_DQUOTE] = ACTIONS(3174), - [anon_sym_uR_DQUOTE] = ACTIONS(3174), - [anon_sym_UR_DQUOTE] = ACTIONS(3174), - [anon_sym_u8R_DQUOTE] = ACTIONS(3174), - [anon_sym_co_await] = ACTIONS(3176), - [anon_sym_new] = ACTIONS(3178), - [anon_sym_requires] = ACTIONS(3180), - [sym_this] = ACTIONS(3160), + [sym_primitive_type] = ACTIONS(3144), + [anon_sym_enum] = ACTIONS(3146), + [anon_sym_class] = ACTIONS(3148), + [anon_sym_struct] = ACTIONS(3150), + [anon_sym_union] = ACTIONS(3152), + [anon_sym_not] = ACTIONS(3134), + [anon_sym_compl] = ACTIONS(3134), + [anon_sym_DASH_DASH] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_sizeof] = ACTIONS(3156), + [anon_sym___alignof__] = ACTIONS(3158), + [anon_sym___alignof] = ACTIONS(3158), + [anon_sym__alignof] = ACTIONS(3158), + [anon_sym_alignof] = ACTIONS(3158), + [anon_sym__Alignof] = ACTIONS(3158), + [anon_sym_offsetof] = ACTIONS(3160), + [anon_sym__Generic] = ACTIONS(3162), + [anon_sym_asm] = ACTIONS(3164), + [anon_sym___asm__] = ACTIONS(3164), + [anon_sym___asm] = ACTIONS(3164), + [sym_number_literal] = ACTIONS(3166), + [anon_sym_L_SQUOTE] = ACTIONS(3168), + [anon_sym_u_SQUOTE] = ACTIONS(3168), + [anon_sym_U_SQUOTE] = ACTIONS(3168), + [anon_sym_u8_SQUOTE] = ACTIONS(3168), + [anon_sym_SQUOTE] = ACTIONS(3168), + [anon_sym_L_DQUOTE] = ACTIONS(3170), + [anon_sym_u_DQUOTE] = ACTIONS(3170), + [anon_sym_U_DQUOTE] = ACTIONS(3170), + [anon_sym_u8_DQUOTE] = ACTIONS(3170), + [anon_sym_DQUOTE] = ACTIONS(3170), + [sym_true] = ACTIONS(3172), + [sym_false] = ACTIONS(3172), + [anon_sym_NULL] = ACTIONS(3174), + [anon_sym_nullptr] = ACTIONS(3174), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3176), + [anon_sym_decltype] = ACTIONS(3178), + [anon_sym_typename] = ACTIONS(3180), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_GT2] = ACTIONS(3313), + [anon_sym_delete] = ACTIONS(3184), + [anon_sym_R_DQUOTE] = ACTIONS(3186), + [anon_sym_LR_DQUOTE] = ACTIONS(3186), + [anon_sym_uR_DQUOTE] = ACTIONS(3186), + [anon_sym_UR_DQUOTE] = ACTIONS(3186), + [anon_sym_u8R_DQUOTE] = ACTIONS(3186), + [anon_sym_co_await] = ACTIONS(3188), + [anon_sym_new] = ACTIONS(3190), + [anon_sym_requires] = ACTIONS(3192), + [sym_this] = ACTIONS(3172), }, - [428] = { - [ts_builtin_sym_end] = ACTIONS(2661), - [sym_identifier] = ACTIONS(2659), - [aux_sym_preproc_include_token1] = ACTIONS(2659), - [aux_sym_preproc_def_token1] = ACTIONS(2659), - [aux_sym_preproc_if_token1] = ACTIONS(2659), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2659), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2659), - [sym_preproc_directive] = ACTIONS(2659), - [anon_sym_LPAREN2] = ACTIONS(2661), - [anon_sym_BANG] = ACTIONS(2661), - [anon_sym_TILDE] = ACTIONS(2661), - [anon_sym_DASH] = ACTIONS(2659), - [anon_sym_PLUS] = ACTIONS(2659), - [anon_sym_STAR] = ACTIONS(2661), - [anon_sym_AMP_AMP] = ACTIONS(2661), - [anon_sym_AMP] = ACTIONS(2659), - [anon_sym_SEMI] = ACTIONS(2661), - [anon_sym___extension__] = ACTIONS(2659), - [anon_sym_typedef] = ACTIONS(2659), - [anon_sym_virtual] = ACTIONS(2659), - [anon_sym_extern] = ACTIONS(2659), - [anon_sym___attribute__] = ACTIONS(2659), - [anon_sym___attribute] = ACTIONS(2659), - [anon_sym_using] = ACTIONS(2659), - [anon_sym_COLON_COLON] = ACTIONS(2661), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2661), - [anon_sym___declspec] = ACTIONS(2659), - [anon_sym___based] = ACTIONS(2659), - [anon_sym___cdecl] = ACTIONS(2659), - [anon_sym___clrcall] = ACTIONS(2659), - [anon_sym___stdcall] = ACTIONS(2659), - [anon_sym___fastcall] = ACTIONS(2659), - [anon_sym___thiscall] = ACTIONS(2659), - [anon_sym___vectorcall] = ACTIONS(2659), - [anon_sym_LBRACE] = ACTIONS(2661), - [anon_sym_signed] = ACTIONS(2659), - [anon_sym_unsigned] = ACTIONS(2659), - [anon_sym_long] = ACTIONS(2659), - [anon_sym_short] = ACTIONS(2659), - [anon_sym_LBRACK] = ACTIONS(2659), - [anon_sym_static] = ACTIONS(2659), - [anon_sym_register] = ACTIONS(2659), - [anon_sym_inline] = ACTIONS(2659), - [anon_sym___inline] = ACTIONS(2659), - [anon_sym___inline__] = ACTIONS(2659), - [anon_sym___forceinline] = ACTIONS(2659), - [anon_sym_thread_local] = ACTIONS(2659), - [anon_sym___thread] = ACTIONS(2659), - [anon_sym_const] = ACTIONS(2659), - [anon_sym_constexpr] = ACTIONS(2659), - [anon_sym_volatile] = ACTIONS(2659), - [anon_sym_restrict] = ACTIONS(2659), - [anon_sym___restrict__] = ACTIONS(2659), - [anon_sym__Atomic] = ACTIONS(2659), - [anon_sym__Noreturn] = ACTIONS(2659), - [anon_sym_noreturn] = ACTIONS(2659), - [anon_sym__Nonnull] = ACTIONS(2659), - [anon_sym_mutable] = ACTIONS(2659), - [anon_sym_constinit] = ACTIONS(2659), - [anon_sym_consteval] = ACTIONS(2659), - [anon_sym_alignas] = ACTIONS(2659), - [anon_sym__Alignas] = ACTIONS(2659), - [sym_primitive_type] = ACTIONS(2659), - [anon_sym_enum] = ACTIONS(2659), - [anon_sym_class] = ACTIONS(2659), - [anon_sym_struct] = ACTIONS(2659), - [anon_sym_union] = ACTIONS(2659), - [anon_sym_if] = ACTIONS(2659), - [anon_sym_else] = ACTIONS(2659), - [anon_sym_switch] = ACTIONS(2659), - [anon_sym_case] = ACTIONS(2659), - [anon_sym_default] = ACTIONS(2659), - [anon_sym_while] = ACTIONS(2659), - [anon_sym_do] = ACTIONS(2659), - [anon_sym_for] = ACTIONS(2659), - [anon_sym_return] = ACTIONS(2659), - [anon_sym_break] = ACTIONS(2659), - [anon_sym_continue] = ACTIONS(2659), - [anon_sym_goto] = ACTIONS(2659), - [anon_sym___try] = ACTIONS(2659), - [anon_sym___leave] = ACTIONS(2659), - [anon_sym_not] = ACTIONS(2659), - [anon_sym_compl] = ACTIONS(2659), - [anon_sym_DASH_DASH] = ACTIONS(2661), - [anon_sym_PLUS_PLUS] = ACTIONS(2661), - [anon_sym_sizeof] = ACTIONS(2659), - [anon_sym___alignof__] = ACTIONS(2659), - [anon_sym___alignof] = ACTIONS(2659), - [anon_sym__alignof] = ACTIONS(2659), - [anon_sym_alignof] = ACTIONS(2659), - [anon_sym__Alignof] = ACTIONS(2659), - [anon_sym_offsetof] = ACTIONS(2659), - [anon_sym__Generic] = ACTIONS(2659), - [anon_sym_asm] = ACTIONS(2659), - [anon_sym___asm__] = ACTIONS(2659), - [anon_sym___asm] = ACTIONS(2659), - [sym_number_literal] = ACTIONS(2661), - [anon_sym_L_SQUOTE] = ACTIONS(2661), - [anon_sym_u_SQUOTE] = ACTIONS(2661), - [anon_sym_U_SQUOTE] = ACTIONS(2661), - [anon_sym_u8_SQUOTE] = ACTIONS(2661), - [anon_sym_SQUOTE] = ACTIONS(2661), - [anon_sym_L_DQUOTE] = ACTIONS(2661), - [anon_sym_u_DQUOTE] = ACTIONS(2661), - [anon_sym_U_DQUOTE] = ACTIONS(2661), - [anon_sym_u8_DQUOTE] = ACTIONS(2661), - [anon_sym_DQUOTE] = ACTIONS(2661), - [sym_true] = ACTIONS(2659), - [sym_false] = ACTIONS(2659), - [anon_sym_NULL] = ACTIONS(2659), - [anon_sym_nullptr] = ACTIONS(2659), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2659), - [anon_sym_decltype] = ACTIONS(2659), - [anon_sym_explicit] = ACTIONS(2659), - [anon_sym_typename] = ACTIONS(2659), - [anon_sym_export] = ACTIONS(2659), - [anon_sym_module] = ACTIONS(2659), - [anon_sym_import] = ACTIONS(2659), - [anon_sym_template] = ACTIONS(2659), - [anon_sym_operator] = ACTIONS(2659), - [anon_sym_try] = ACTIONS(2659), - [anon_sym_delete] = ACTIONS(2659), - [anon_sym_throw] = ACTIONS(2659), - [anon_sym_namespace] = ACTIONS(2659), - [anon_sym_static_assert] = ACTIONS(2659), - [anon_sym_concept] = ACTIONS(2659), - [anon_sym_co_return] = ACTIONS(2659), - [anon_sym_co_yield] = ACTIONS(2659), - [anon_sym_R_DQUOTE] = ACTIONS(2661), - [anon_sym_LR_DQUOTE] = ACTIONS(2661), - [anon_sym_uR_DQUOTE] = ACTIONS(2661), - [anon_sym_UR_DQUOTE] = ACTIONS(2661), - [anon_sym_u8R_DQUOTE] = ACTIONS(2661), - [anon_sym_co_await] = ACTIONS(2659), - [anon_sym_new] = ACTIONS(2659), - [anon_sym_requires] = ACTIONS(2659), - [sym_this] = ACTIONS(2659), + [434] = { + [sym_type_qualifier] = STATE(3954), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(4767), + [sym_sized_type_specifier] = STATE(2747), + [sym_enum_specifier] = STATE(2747), + [sym_struct_specifier] = STATE(2747), + [sym_union_specifier] = STATE(2747), + [sym_expression] = STATE(4458), + [sym__string] = STATE(4825), + [sym_conditional_expression] = STATE(4856), + [sym_assignment_expression] = STATE(4856), + [sym_pointer_expression] = STATE(3701), + [sym_unary_expression] = STATE(4856), + [sym_binary_expression] = STATE(4856), + [sym_update_expression] = STATE(4856), + [sym_cast_expression] = STATE(4856), + [sym_type_descriptor] = STATE(7095), + [sym_sizeof_expression] = STATE(4856), + [sym_alignof_expression] = STATE(4856), + [sym_offsetof_expression] = STATE(4856), + [sym_generic_expression] = STATE(4856), + [sym_subscript_expression] = STATE(3701), + [sym_call_expression] = STATE(3701), + [sym_gnu_asm_expression] = STATE(4856), + [sym_extension_expression] = STATE(4856), + [sym_field_expression] = STATE(3701), + [sym_compound_literal_expression] = STATE(4856), + [sym_parenthesized_expression] = STATE(3701), + [sym_char_literal] = STATE(4825), + [sym_concatenated_string] = STATE(4825), + [sym_string_literal] = STATE(3812), + [sym_null] = STATE(4856), + [sym_placeholder_type_specifier] = STATE(2747), + [sym_decltype_auto] = STATE(2733), + [sym_decltype] = STATE(2621), + [sym_class_specifier] = STATE(2747), + [sym__class_name] = STATE(7816), + [sym_dependent_type] = STATE(2747), + [sym_template_type] = STATE(5365), + [sym_template_function] = STATE(4856), + [sym_raw_string_literal] = STATE(3812), + [sym_co_await_expression] = STATE(4856), + [sym_new_expression] = STATE(4856), + [sym_delete_expression] = STATE(4856), + [sym_requires_clause] = STATE(4856), + [sym_requires_expression] = STATE(4856), + [sym_lambda_expression] = STATE(4856), + [sym_lambda_capture_specifier] = STATE(5489), + [sym_fold_expression] = STATE(4856), + [sym_parameter_pack_expansion] = STATE(4856), + [sym_type_parameter_pack_expansion] = STATE(7646), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5742), + [sym_qualified_identifier] = STATE(3701), + [sym_qualified_type_identifier] = STATE(5382), + [sym_user_defined_literal] = STATE(3701), + [aux_sym__type_definition_type_repeat1] = STATE(3954), + [aux_sym_sized_type_specifier_repeat1] = STATE(4313), + [sym_identifier] = ACTIONS(3128), + [anon_sym_LPAREN2] = ACTIONS(3130), + [anon_sym_BANG] = ACTIONS(3132), + [anon_sym_TILDE] = ACTIONS(3132), + [anon_sym_DASH] = ACTIONS(3134), + [anon_sym_PLUS] = ACTIONS(3134), + [anon_sym_STAR] = ACTIONS(3136), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym___extension__] = ACTIONS(3138), + [anon_sym_COLON_COLON] = ACTIONS(3140), + [anon_sym_signed] = ACTIONS(3142), + [anon_sym_unsigned] = ACTIONS(3142), + [anon_sym_long] = ACTIONS(3142), + [anon_sym_short] = ACTIONS(3142), + [anon_sym_LBRACK] = ACTIONS(2020), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(69), + [anon_sym__Alignas] = ACTIONS(69), + [sym_primitive_type] = ACTIONS(3144), + [anon_sym_enum] = ACTIONS(3146), + [anon_sym_class] = ACTIONS(3148), + [anon_sym_struct] = ACTIONS(3150), + [anon_sym_union] = ACTIONS(3152), + [anon_sym_not] = ACTIONS(3134), + [anon_sym_compl] = ACTIONS(3134), + [anon_sym_DASH_DASH] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_sizeof] = ACTIONS(3156), + [anon_sym___alignof__] = ACTIONS(3158), + [anon_sym___alignof] = ACTIONS(3158), + [anon_sym__alignof] = ACTIONS(3158), + [anon_sym_alignof] = ACTIONS(3158), + [anon_sym__Alignof] = ACTIONS(3158), + [anon_sym_offsetof] = ACTIONS(3160), + [anon_sym__Generic] = ACTIONS(3162), + [anon_sym_asm] = ACTIONS(3164), + [anon_sym___asm__] = ACTIONS(3164), + [anon_sym___asm] = ACTIONS(3164), + [sym_number_literal] = ACTIONS(3166), + [anon_sym_L_SQUOTE] = ACTIONS(3168), + [anon_sym_u_SQUOTE] = ACTIONS(3168), + [anon_sym_U_SQUOTE] = ACTIONS(3168), + [anon_sym_u8_SQUOTE] = ACTIONS(3168), + [anon_sym_SQUOTE] = ACTIONS(3168), + [anon_sym_L_DQUOTE] = ACTIONS(3170), + [anon_sym_u_DQUOTE] = ACTIONS(3170), + [anon_sym_U_DQUOTE] = ACTIONS(3170), + [anon_sym_u8_DQUOTE] = ACTIONS(3170), + [anon_sym_DQUOTE] = ACTIONS(3170), + [sym_true] = ACTIONS(3172), + [sym_false] = ACTIONS(3172), + [anon_sym_NULL] = ACTIONS(3174), + [anon_sym_nullptr] = ACTIONS(3174), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3176), + [anon_sym_decltype] = ACTIONS(3178), + [anon_sym_typename] = ACTIONS(3180), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_GT2] = ACTIONS(3315), + [anon_sym_delete] = ACTIONS(3184), + [anon_sym_R_DQUOTE] = ACTIONS(3186), + [anon_sym_LR_DQUOTE] = ACTIONS(3186), + [anon_sym_uR_DQUOTE] = ACTIONS(3186), + [anon_sym_UR_DQUOTE] = ACTIONS(3186), + [anon_sym_u8R_DQUOTE] = ACTIONS(3186), + [anon_sym_co_await] = ACTIONS(3188), + [anon_sym_new] = ACTIONS(3190), + [anon_sym_requires] = ACTIONS(3192), + [sym_this] = ACTIONS(3172), }, - [429] = { - [ts_builtin_sym_end] = ACTIONS(2657), - [sym_identifier] = ACTIONS(2655), - [aux_sym_preproc_include_token1] = ACTIONS(2655), - [aux_sym_preproc_def_token1] = ACTIONS(2655), - [aux_sym_preproc_if_token1] = ACTIONS(2655), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2655), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2655), - [sym_preproc_directive] = ACTIONS(2655), - [anon_sym_LPAREN2] = ACTIONS(2657), - [anon_sym_BANG] = ACTIONS(2657), - [anon_sym_TILDE] = ACTIONS(2657), - [anon_sym_DASH] = ACTIONS(2655), - [anon_sym_PLUS] = ACTIONS(2655), - [anon_sym_STAR] = ACTIONS(2657), - [anon_sym_AMP_AMP] = ACTIONS(2657), - [anon_sym_AMP] = ACTIONS(2655), - [anon_sym_SEMI] = ACTIONS(2657), - [anon_sym___extension__] = ACTIONS(2655), - [anon_sym_typedef] = ACTIONS(2655), - [anon_sym_virtual] = ACTIONS(2655), - [anon_sym_extern] = ACTIONS(2655), - [anon_sym___attribute__] = ACTIONS(2655), - [anon_sym___attribute] = ACTIONS(2655), - [anon_sym_using] = ACTIONS(2655), - [anon_sym_COLON_COLON] = ACTIONS(2657), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2657), - [anon_sym___declspec] = ACTIONS(2655), - [anon_sym___based] = ACTIONS(2655), - [anon_sym___cdecl] = ACTIONS(2655), - [anon_sym___clrcall] = ACTIONS(2655), - [anon_sym___stdcall] = ACTIONS(2655), - [anon_sym___fastcall] = ACTIONS(2655), - [anon_sym___thiscall] = ACTIONS(2655), - [anon_sym___vectorcall] = ACTIONS(2655), - [anon_sym_LBRACE] = ACTIONS(2657), - [anon_sym_signed] = ACTIONS(2655), - [anon_sym_unsigned] = ACTIONS(2655), - [anon_sym_long] = ACTIONS(2655), - [anon_sym_short] = ACTIONS(2655), - [anon_sym_LBRACK] = ACTIONS(2655), - [anon_sym_static] = ACTIONS(2655), - [anon_sym_register] = ACTIONS(2655), - [anon_sym_inline] = ACTIONS(2655), - [anon_sym___inline] = ACTIONS(2655), - [anon_sym___inline__] = ACTIONS(2655), - [anon_sym___forceinline] = ACTIONS(2655), - [anon_sym_thread_local] = ACTIONS(2655), - [anon_sym___thread] = ACTIONS(2655), - [anon_sym_const] = ACTIONS(2655), - [anon_sym_constexpr] = ACTIONS(2655), - [anon_sym_volatile] = ACTIONS(2655), - [anon_sym_restrict] = ACTIONS(2655), - [anon_sym___restrict__] = ACTIONS(2655), - [anon_sym__Atomic] = ACTIONS(2655), - [anon_sym__Noreturn] = ACTIONS(2655), - [anon_sym_noreturn] = ACTIONS(2655), - [anon_sym__Nonnull] = ACTIONS(2655), - [anon_sym_mutable] = ACTIONS(2655), - [anon_sym_constinit] = ACTIONS(2655), - [anon_sym_consteval] = ACTIONS(2655), - [anon_sym_alignas] = ACTIONS(2655), - [anon_sym__Alignas] = ACTIONS(2655), - [sym_primitive_type] = ACTIONS(2655), - [anon_sym_enum] = ACTIONS(2655), - [anon_sym_class] = ACTIONS(2655), - [anon_sym_struct] = ACTIONS(2655), - [anon_sym_union] = ACTIONS(2655), - [anon_sym_if] = ACTIONS(2655), - [anon_sym_else] = ACTIONS(2655), - [anon_sym_switch] = ACTIONS(2655), - [anon_sym_case] = ACTIONS(2655), - [anon_sym_default] = ACTIONS(2655), - [anon_sym_while] = ACTIONS(2655), - [anon_sym_do] = ACTIONS(2655), - [anon_sym_for] = ACTIONS(2655), - [anon_sym_return] = ACTIONS(2655), - [anon_sym_break] = ACTIONS(2655), - [anon_sym_continue] = ACTIONS(2655), - [anon_sym_goto] = ACTIONS(2655), - [anon_sym___try] = ACTIONS(2655), - [anon_sym___leave] = ACTIONS(2655), - [anon_sym_not] = ACTIONS(2655), - [anon_sym_compl] = ACTIONS(2655), - [anon_sym_DASH_DASH] = ACTIONS(2657), - [anon_sym_PLUS_PLUS] = ACTIONS(2657), - [anon_sym_sizeof] = ACTIONS(2655), - [anon_sym___alignof__] = ACTIONS(2655), - [anon_sym___alignof] = ACTIONS(2655), - [anon_sym__alignof] = ACTIONS(2655), - [anon_sym_alignof] = ACTIONS(2655), - [anon_sym__Alignof] = ACTIONS(2655), - [anon_sym_offsetof] = ACTIONS(2655), - [anon_sym__Generic] = ACTIONS(2655), - [anon_sym_asm] = ACTIONS(2655), - [anon_sym___asm__] = ACTIONS(2655), - [anon_sym___asm] = ACTIONS(2655), - [sym_number_literal] = ACTIONS(2657), - [anon_sym_L_SQUOTE] = ACTIONS(2657), - [anon_sym_u_SQUOTE] = ACTIONS(2657), - [anon_sym_U_SQUOTE] = ACTIONS(2657), - [anon_sym_u8_SQUOTE] = ACTIONS(2657), - [anon_sym_SQUOTE] = ACTIONS(2657), - [anon_sym_L_DQUOTE] = ACTIONS(2657), - [anon_sym_u_DQUOTE] = ACTIONS(2657), - [anon_sym_U_DQUOTE] = ACTIONS(2657), - [anon_sym_u8_DQUOTE] = ACTIONS(2657), - [anon_sym_DQUOTE] = ACTIONS(2657), - [sym_true] = ACTIONS(2655), - [sym_false] = ACTIONS(2655), - [anon_sym_NULL] = ACTIONS(2655), - [anon_sym_nullptr] = ACTIONS(2655), + [435] = { + [ts_builtin_sym_end] = ACTIONS(2633), + [sym_identifier] = ACTIONS(2631), + [aux_sym_preproc_include_token1] = ACTIONS(2631), + [aux_sym_preproc_def_token1] = ACTIONS(2631), + [aux_sym_preproc_if_token1] = ACTIONS(2631), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2631), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2631), + [sym_preproc_directive] = ACTIONS(2631), + [anon_sym_LPAREN2] = ACTIONS(2633), + [anon_sym_BANG] = ACTIONS(2633), + [anon_sym_TILDE] = ACTIONS(2633), + [anon_sym_DASH] = ACTIONS(2631), + [anon_sym_PLUS] = ACTIONS(2631), + [anon_sym_STAR] = ACTIONS(2633), + [anon_sym_AMP_AMP] = ACTIONS(2633), + [anon_sym_AMP] = ACTIONS(2631), + [anon_sym_SEMI] = ACTIONS(2633), + [anon_sym___extension__] = ACTIONS(2631), + [anon_sym_typedef] = ACTIONS(2631), + [anon_sym_virtual] = ACTIONS(2631), + [anon_sym_extern] = ACTIONS(2631), + [anon_sym___attribute__] = ACTIONS(2631), + [anon_sym___attribute] = ACTIONS(2631), + [anon_sym_using] = ACTIONS(2631), + [anon_sym_COLON_COLON] = ACTIONS(2633), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2633), + [anon_sym___declspec] = ACTIONS(2631), + [anon_sym___based] = ACTIONS(2631), + [anon_sym___cdecl] = ACTIONS(2631), + [anon_sym___clrcall] = ACTIONS(2631), + [anon_sym___stdcall] = ACTIONS(2631), + [anon_sym___fastcall] = ACTIONS(2631), + [anon_sym___thiscall] = ACTIONS(2631), + [anon_sym___vectorcall] = ACTIONS(2631), + [anon_sym_LBRACE] = ACTIONS(2633), + [anon_sym_signed] = ACTIONS(2631), + [anon_sym_unsigned] = ACTIONS(2631), + [anon_sym_long] = ACTIONS(2631), + [anon_sym_short] = ACTIONS(2631), + [anon_sym_LBRACK] = ACTIONS(2631), + [anon_sym_static] = ACTIONS(2631), + [anon_sym_register] = ACTIONS(2631), + [anon_sym_inline] = ACTIONS(2631), + [anon_sym___inline] = ACTIONS(2631), + [anon_sym___inline__] = ACTIONS(2631), + [anon_sym___forceinline] = ACTIONS(2631), + [anon_sym_thread_local] = ACTIONS(2631), + [anon_sym___thread] = ACTIONS(2631), + [anon_sym_const] = ACTIONS(2631), + [anon_sym_constexpr] = ACTIONS(2631), + [anon_sym_volatile] = ACTIONS(2631), + [anon_sym_restrict] = ACTIONS(2631), + [anon_sym___restrict__] = ACTIONS(2631), + [anon_sym__Atomic] = ACTIONS(2631), + [anon_sym__Noreturn] = ACTIONS(2631), + [anon_sym_noreturn] = ACTIONS(2631), + [anon_sym__Nonnull] = ACTIONS(2631), + [anon_sym_mutable] = ACTIONS(2631), + [anon_sym_constinit] = ACTIONS(2631), + [anon_sym_consteval] = ACTIONS(2631), + [anon_sym_alignas] = ACTIONS(2631), + [anon_sym__Alignas] = ACTIONS(2631), + [sym_primitive_type] = ACTIONS(2631), + [anon_sym_enum] = ACTIONS(2631), + [anon_sym_class] = ACTIONS(2631), + [anon_sym_struct] = ACTIONS(2631), + [anon_sym_union] = ACTIONS(2631), + [anon_sym_if] = ACTIONS(2631), + [anon_sym_else] = ACTIONS(2631), + [anon_sym_switch] = ACTIONS(2631), + [anon_sym_case] = ACTIONS(2631), + [anon_sym_default] = ACTIONS(2631), + [anon_sym_while] = ACTIONS(2631), + [anon_sym_do] = ACTIONS(2631), + [anon_sym_for] = ACTIONS(2631), + [anon_sym_return] = ACTIONS(2631), + [anon_sym_break] = ACTIONS(2631), + [anon_sym_continue] = ACTIONS(2631), + [anon_sym_goto] = ACTIONS(2631), + [anon_sym___try] = ACTIONS(2631), + [anon_sym___leave] = ACTIONS(2631), + [anon_sym_not] = ACTIONS(2631), + [anon_sym_compl] = ACTIONS(2631), + [anon_sym_DASH_DASH] = ACTIONS(2633), + [anon_sym_PLUS_PLUS] = ACTIONS(2633), + [anon_sym_sizeof] = ACTIONS(2631), + [anon_sym___alignof__] = ACTIONS(2631), + [anon_sym___alignof] = ACTIONS(2631), + [anon_sym__alignof] = ACTIONS(2631), + [anon_sym_alignof] = ACTIONS(2631), + [anon_sym__Alignof] = ACTIONS(2631), + [anon_sym_offsetof] = ACTIONS(2631), + [anon_sym__Generic] = ACTIONS(2631), + [anon_sym_asm] = ACTIONS(2631), + [anon_sym___asm__] = ACTIONS(2631), + [anon_sym___asm] = ACTIONS(2631), + [sym_number_literal] = ACTIONS(2633), + [anon_sym_L_SQUOTE] = ACTIONS(2633), + [anon_sym_u_SQUOTE] = ACTIONS(2633), + [anon_sym_U_SQUOTE] = ACTIONS(2633), + [anon_sym_u8_SQUOTE] = ACTIONS(2633), + [anon_sym_SQUOTE] = ACTIONS(2633), + [anon_sym_L_DQUOTE] = ACTIONS(2633), + [anon_sym_u_DQUOTE] = ACTIONS(2633), + [anon_sym_U_DQUOTE] = ACTIONS(2633), + [anon_sym_u8_DQUOTE] = ACTIONS(2633), + [anon_sym_DQUOTE] = ACTIONS(2633), + [sym_true] = ACTIONS(2631), + [sym_false] = ACTIONS(2631), + [anon_sym_NULL] = ACTIONS(2631), + [anon_sym_nullptr] = ACTIONS(2631), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2655), - [anon_sym_decltype] = ACTIONS(2655), - [anon_sym_explicit] = ACTIONS(2655), - [anon_sym_typename] = ACTIONS(2655), - [anon_sym_export] = ACTIONS(2655), - [anon_sym_module] = ACTIONS(2655), - [anon_sym_import] = ACTIONS(2655), - [anon_sym_template] = ACTIONS(2655), - [anon_sym_operator] = ACTIONS(2655), - [anon_sym_try] = ACTIONS(2655), - [anon_sym_delete] = ACTIONS(2655), - [anon_sym_throw] = ACTIONS(2655), - [anon_sym_namespace] = ACTIONS(2655), - [anon_sym_static_assert] = ACTIONS(2655), - [anon_sym_concept] = ACTIONS(2655), - [anon_sym_co_return] = ACTIONS(2655), - [anon_sym_co_yield] = ACTIONS(2655), - [anon_sym_R_DQUOTE] = ACTIONS(2657), - [anon_sym_LR_DQUOTE] = ACTIONS(2657), - [anon_sym_uR_DQUOTE] = ACTIONS(2657), - [anon_sym_UR_DQUOTE] = ACTIONS(2657), - [anon_sym_u8R_DQUOTE] = ACTIONS(2657), - [anon_sym_co_await] = ACTIONS(2655), - [anon_sym_new] = ACTIONS(2655), - [anon_sym_requires] = ACTIONS(2655), - [sym_this] = ACTIONS(2655), - }, - [430] = { - [sym_identifier] = ACTIONS(3309), - [aux_sym_preproc_include_token1] = ACTIONS(3309), - [aux_sym_preproc_def_token1] = ACTIONS(3309), - [aux_sym_preproc_if_token1] = ACTIONS(3309), - [aux_sym_preproc_if_token2] = ACTIONS(3309), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3309), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3309), - [aux_sym_preproc_else_token1] = ACTIONS(3309), - [aux_sym_preproc_elif_token1] = ACTIONS(3309), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3309), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3309), - [sym_preproc_directive] = ACTIONS(3309), - [anon_sym_LPAREN2] = ACTIONS(3311), - [anon_sym_BANG] = ACTIONS(3311), - [anon_sym_TILDE] = ACTIONS(3311), - [anon_sym_DASH] = ACTIONS(3309), - [anon_sym_PLUS] = ACTIONS(3309), - [anon_sym_STAR] = ACTIONS(3311), - [anon_sym_AMP_AMP] = ACTIONS(3311), - [anon_sym_AMP] = ACTIONS(3309), - [anon_sym_SEMI] = ACTIONS(3311), - [anon_sym___extension__] = ACTIONS(3309), - [anon_sym_typedef] = ACTIONS(3309), - [anon_sym_virtual] = ACTIONS(3309), - [anon_sym_extern] = ACTIONS(3309), - [anon_sym___attribute__] = ACTIONS(3309), - [anon_sym___attribute] = ACTIONS(3309), - [anon_sym_using] = ACTIONS(3309), - [anon_sym_COLON_COLON] = ACTIONS(3311), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3311), - [anon_sym___declspec] = ACTIONS(3309), - [anon_sym___based] = ACTIONS(3309), - [anon_sym___cdecl] = ACTIONS(3309), - [anon_sym___clrcall] = ACTIONS(3309), - [anon_sym___stdcall] = ACTIONS(3309), - [anon_sym___fastcall] = ACTIONS(3309), - [anon_sym___thiscall] = ACTIONS(3309), - [anon_sym___vectorcall] = ACTIONS(3309), - [anon_sym_LBRACE] = ACTIONS(3311), - [anon_sym_signed] = ACTIONS(3309), - [anon_sym_unsigned] = ACTIONS(3309), - [anon_sym_long] = ACTIONS(3309), - [anon_sym_short] = ACTIONS(3309), - [anon_sym_LBRACK] = ACTIONS(3309), - [anon_sym_static] = ACTIONS(3309), - [anon_sym_register] = ACTIONS(3309), - [anon_sym_inline] = ACTIONS(3309), - [anon_sym___inline] = ACTIONS(3309), - [anon_sym___inline__] = ACTIONS(3309), - [anon_sym___forceinline] = ACTIONS(3309), - [anon_sym_thread_local] = ACTIONS(3309), - [anon_sym___thread] = ACTIONS(3309), - [anon_sym_const] = ACTIONS(3309), - [anon_sym_constexpr] = ACTIONS(3309), - [anon_sym_volatile] = ACTIONS(3309), - [anon_sym_restrict] = ACTIONS(3309), - [anon_sym___restrict__] = ACTIONS(3309), - [anon_sym__Atomic] = ACTIONS(3309), - [anon_sym__Noreturn] = ACTIONS(3309), - [anon_sym_noreturn] = ACTIONS(3309), - [anon_sym__Nonnull] = ACTIONS(3309), - [anon_sym_mutable] = ACTIONS(3309), - [anon_sym_constinit] = ACTIONS(3309), - [anon_sym_consteval] = ACTIONS(3309), - [anon_sym_alignas] = ACTIONS(3309), - [anon_sym__Alignas] = ACTIONS(3309), - [sym_primitive_type] = ACTIONS(3309), - [anon_sym_enum] = ACTIONS(3309), - [anon_sym_class] = ACTIONS(3309), - [anon_sym_struct] = ACTIONS(3309), - [anon_sym_union] = ACTIONS(3309), - [anon_sym_if] = ACTIONS(3309), - [anon_sym_switch] = ACTIONS(3309), - [anon_sym_case] = ACTIONS(3309), - [anon_sym_default] = ACTIONS(3309), - [anon_sym_while] = ACTIONS(3309), - [anon_sym_do] = ACTIONS(3309), - [anon_sym_for] = ACTIONS(3309), - [anon_sym_return] = ACTIONS(3309), - [anon_sym_break] = ACTIONS(3309), - [anon_sym_continue] = ACTIONS(3309), - [anon_sym_goto] = ACTIONS(3309), - [anon_sym___try] = ACTIONS(3309), - [anon_sym___leave] = ACTIONS(3309), - [anon_sym_not] = ACTIONS(3309), - [anon_sym_compl] = ACTIONS(3309), - [anon_sym_DASH_DASH] = ACTIONS(3311), - [anon_sym_PLUS_PLUS] = ACTIONS(3311), - [anon_sym_sizeof] = ACTIONS(3309), - [anon_sym___alignof__] = ACTIONS(3309), - [anon_sym___alignof] = ACTIONS(3309), - [anon_sym__alignof] = ACTIONS(3309), - [anon_sym_alignof] = ACTIONS(3309), - [anon_sym__Alignof] = ACTIONS(3309), - [anon_sym_offsetof] = ACTIONS(3309), - [anon_sym__Generic] = ACTIONS(3309), - [anon_sym_asm] = ACTIONS(3309), - [anon_sym___asm__] = ACTIONS(3309), - [anon_sym___asm] = ACTIONS(3309), - [sym_number_literal] = ACTIONS(3311), - [anon_sym_L_SQUOTE] = ACTIONS(3311), - [anon_sym_u_SQUOTE] = ACTIONS(3311), - [anon_sym_U_SQUOTE] = ACTIONS(3311), - [anon_sym_u8_SQUOTE] = ACTIONS(3311), - [anon_sym_SQUOTE] = ACTIONS(3311), - [anon_sym_L_DQUOTE] = ACTIONS(3311), - [anon_sym_u_DQUOTE] = ACTIONS(3311), - [anon_sym_U_DQUOTE] = ACTIONS(3311), - [anon_sym_u8_DQUOTE] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(3311), - [sym_true] = ACTIONS(3309), - [sym_false] = ACTIONS(3309), - [anon_sym_NULL] = ACTIONS(3309), - [anon_sym_nullptr] = ACTIONS(3309), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3309), - [anon_sym_decltype] = ACTIONS(3309), - [anon_sym_explicit] = ACTIONS(3309), - [anon_sym_typename] = ACTIONS(3309), - [anon_sym_template] = ACTIONS(3309), - [anon_sym_operator] = ACTIONS(3309), - [anon_sym_try] = ACTIONS(3309), - [anon_sym_delete] = ACTIONS(3309), - [anon_sym_throw] = ACTIONS(3309), - [anon_sym_namespace] = ACTIONS(3309), - [anon_sym_static_assert] = ACTIONS(3309), - [anon_sym_concept] = ACTIONS(3309), - [anon_sym_co_return] = ACTIONS(3309), - [anon_sym_co_yield] = ACTIONS(3309), - [anon_sym_R_DQUOTE] = ACTIONS(3311), - [anon_sym_LR_DQUOTE] = ACTIONS(3311), - [anon_sym_uR_DQUOTE] = ACTIONS(3311), - [anon_sym_UR_DQUOTE] = ACTIONS(3311), - [anon_sym_u8R_DQUOTE] = ACTIONS(3311), - [anon_sym_co_await] = ACTIONS(3309), - [anon_sym_new] = ACTIONS(3309), - [anon_sym_requires] = ACTIONS(3309), - [sym_this] = ACTIONS(3309), - }, - [431] = { - [ts_builtin_sym_end] = ACTIONS(2737), - [sym_identifier] = ACTIONS(2735), - [aux_sym_preproc_include_token1] = ACTIONS(2735), - [aux_sym_preproc_def_token1] = ACTIONS(2735), - [aux_sym_preproc_if_token1] = ACTIONS(2735), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2735), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2735), - [sym_preproc_directive] = ACTIONS(2735), - [anon_sym_LPAREN2] = ACTIONS(2737), - [anon_sym_BANG] = ACTIONS(2737), - [anon_sym_TILDE] = ACTIONS(2737), - [anon_sym_DASH] = ACTIONS(2735), - [anon_sym_PLUS] = ACTIONS(2735), - [anon_sym_STAR] = ACTIONS(2737), - [anon_sym_AMP_AMP] = ACTIONS(2737), - [anon_sym_AMP] = ACTIONS(2735), - [anon_sym_SEMI] = ACTIONS(2737), - [anon_sym___extension__] = ACTIONS(2735), - [anon_sym_typedef] = ACTIONS(2735), - [anon_sym_virtual] = ACTIONS(2735), - [anon_sym_extern] = ACTIONS(2735), - [anon_sym___attribute__] = ACTIONS(2735), - [anon_sym___attribute] = ACTIONS(2735), - [anon_sym_using] = ACTIONS(2735), - [anon_sym_COLON_COLON] = ACTIONS(2737), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2737), - [anon_sym___declspec] = ACTIONS(2735), - [anon_sym___based] = ACTIONS(2735), - [anon_sym___cdecl] = ACTIONS(2735), - [anon_sym___clrcall] = ACTIONS(2735), - [anon_sym___stdcall] = ACTIONS(2735), - [anon_sym___fastcall] = ACTIONS(2735), - [anon_sym___thiscall] = ACTIONS(2735), - [anon_sym___vectorcall] = ACTIONS(2735), - [anon_sym_LBRACE] = ACTIONS(2737), - [anon_sym_signed] = ACTIONS(2735), - [anon_sym_unsigned] = ACTIONS(2735), - [anon_sym_long] = ACTIONS(2735), - [anon_sym_short] = ACTIONS(2735), - [anon_sym_LBRACK] = ACTIONS(2735), - [anon_sym_static] = ACTIONS(2735), - [anon_sym_register] = ACTIONS(2735), - [anon_sym_inline] = ACTIONS(2735), - [anon_sym___inline] = ACTIONS(2735), - [anon_sym___inline__] = ACTIONS(2735), - [anon_sym___forceinline] = ACTIONS(2735), - [anon_sym_thread_local] = ACTIONS(2735), - [anon_sym___thread] = ACTIONS(2735), - [anon_sym_const] = ACTIONS(2735), - [anon_sym_constexpr] = ACTIONS(2735), - [anon_sym_volatile] = ACTIONS(2735), - [anon_sym_restrict] = ACTIONS(2735), - [anon_sym___restrict__] = ACTIONS(2735), - [anon_sym__Atomic] = ACTIONS(2735), - [anon_sym__Noreturn] = ACTIONS(2735), - [anon_sym_noreturn] = ACTIONS(2735), - [anon_sym__Nonnull] = ACTIONS(2735), - [anon_sym_mutable] = ACTIONS(2735), - [anon_sym_constinit] = ACTIONS(2735), - [anon_sym_consteval] = ACTIONS(2735), - [anon_sym_alignas] = ACTIONS(2735), - [anon_sym__Alignas] = ACTIONS(2735), - [sym_primitive_type] = ACTIONS(2735), - [anon_sym_enum] = ACTIONS(2735), - [anon_sym_class] = ACTIONS(2735), - [anon_sym_struct] = ACTIONS(2735), - [anon_sym_union] = ACTIONS(2735), - [anon_sym_if] = ACTIONS(2735), - [anon_sym_else] = ACTIONS(2735), - [anon_sym_switch] = ACTIONS(2735), - [anon_sym_case] = ACTIONS(2735), - [anon_sym_default] = ACTIONS(2735), - [anon_sym_while] = ACTIONS(2735), - [anon_sym_do] = ACTIONS(2735), - [anon_sym_for] = ACTIONS(2735), - [anon_sym_return] = ACTIONS(2735), - [anon_sym_break] = ACTIONS(2735), - [anon_sym_continue] = ACTIONS(2735), - [anon_sym_goto] = ACTIONS(2735), - [anon_sym___try] = ACTIONS(2735), - [anon_sym___leave] = ACTIONS(2735), - [anon_sym_not] = ACTIONS(2735), - [anon_sym_compl] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2737), - [anon_sym_PLUS_PLUS] = ACTIONS(2737), - [anon_sym_sizeof] = ACTIONS(2735), - [anon_sym___alignof__] = ACTIONS(2735), - [anon_sym___alignof] = ACTIONS(2735), - [anon_sym__alignof] = ACTIONS(2735), - [anon_sym_alignof] = ACTIONS(2735), - [anon_sym__Alignof] = ACTIONS(2735), - [anon_sym_offsetof] = ACTIONS(2735), - [anon_sym__Generic] = ACTIONS(2735), - [anon_sym_asm] = ACTIONS(2735), - [anon_sym___asm__] = ACTIONS(2735), - [anon_sym___asm] = ACTIONS(2735), - [sym_number_literal] = ACTIONS(2737), - [anon_sym_L_SQUOTE] = ACTIONS(2737), - [anon_sym_u_SQUOTE] = ACTIONS(2737), - [anon_sym_U_SQUOTE] = ACTIONS(2737), - [anon_sym_u8_SQUOTE] = ACTIONS(2737), - [anon_sym_SQUOTE] = ACTIONS(2737), - [anon_sym_L_DQUOTE] = ACTIONS(2737), - [anon_sym_u_DQUOTE] = ACTIONS(2737), - [anon_sym_U_DQUOTE] = ACTIONS(2737), - [anon_sym_u8_DQUOTE] = ACTIONS(2737), - [anon_sym_DQUOTE] = ACTIONS(2737), - [sym_true] = ACTIONS(2735), - [sym_false] = ACTIONS(2735), - [anon_sym_NULL] = ACTIONS(2735), - [anon_sym_nullptr] = ACTIONS(2735), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2735), - [anon_sym_decltype] = ACTIONS(2735), - [anon_sym_explicit] = ACTIONS(2735), - [anon_sym_typename] = ACTIONS(2735), - [anon_sym_export] = ACTIONS(2735), - [anon_sym_module] = ACTIONS(2735), - [anon_sym_import] = ACTIONS(2735), - [anon_sym_template] = ACTIONS(2735), - [anon_sym_operator] = ACTIONS(2735), - [anon_sym_try] = ACTIONS(2735), - [anon_sym_delete] = ACTIONS(2735), - [anon_sym_throw] = ACTIONS(2735), - [anon_sym_namespace] = ACTIONS(2735), - [anon_sym_static_assert] = ACTIONS(2735), - [anon_sym_concept] = ACTIONS(2735), - [anon_sym_co_return] = ACTIONS(2735), - [anon_sym_co_yield] = ACTIONS(2735), - [anon_sym_R_DQUOTE] = ACTIONS(2737), - [anon_sym_LR_DQUOTE] = ACTIONS(2737), - [anon_sym_uR_DQUOTE] = ACTIONS(2737), - [anon_sym_UR_DQUOTE] = ACTIONS(2737), - [anon_sym_u8R_DQUOTE] = ACTIONS(2737), - [anon_sym_co_await] = ACTIONS(2735), - [anon_sym_new] = ACTIONS(2735), - [anon_sym_requires] = ACTIONS(2735), - [sym_this] = ACTIONS(2735), - }, - [432] = { - [sym_identifier] = ACTIONS(3313), - [aux_sym_preproc_include_token1] = ACTIONS(3313), - [aux_sym_preproc_def_token1] = ACTIONS(3313), - [aux_sym_preproc_if_token1] = ACTIONS(3313), - [aux_sym_preproc_if_token2] = ACTIONS(3313), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3313), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3313), - [aux_sym_preproc_else_token1] = ACTIONS(3313), - [aux_sym_preproc_elif_token1] = ACTIONS(3313), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3313), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3313), - [sym_preproc_directive] = ACTIONS(3313), - [anon_sym_LPAREN2] = ACTIONS(3316), - [anon_sym_BANG] = ACTIONS(3316), - [anon_sym_TILDE] = ACTIONS(3316), - [anon_sym_DASH] = ACTIONS(3313), - [anon_sym_PLUS] = ACTIONS(3313), - [anon_sym_STAR] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_AMP] = ACTIONS(3313), - [anon_sym_SEMI] = ACTIONS(3316), - [anon_sym___extension__] = ACTIONS(3313), - [anon_sym_typedef] = ACTIONS(3313), - [anon_sym_virtual] = ACTIONS(3313), - [anon_sym_extern] = ACTIONS(3313), - [anon_sym___attribute__] = ACTIONS(3313), - [anon_sym___attribute] = ACTIONS(3313), - [anon_sym_using] = ACTIONS(3313), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3316), - [anon_sym___declspec] = ACTIONS(3313), - [anon_sym___based] = ACTIONS(3313), - [anon_sym___cdecl] = ACTIONS(3313), - [anon_sym___clrcall] = ACTIONS(3313), - [anon_sym___stdcall] = ACTIONS(3313), - [anon_sym___fastcall] = ACTIONS(3313), - [anon_sym___thiscall] = ACTIONS(3313), - [anon_sym___vectorcall] = ACTIONS(3313), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_signed] = ACTIONS(3313), - [anon_sym_unsigned] = ACTIONS(3313), - [anon_sym_long] = ACTIONS(3313), - [anon_sym_short] = ACTIONS(3313), - [anon_sym_LBRACK] = ACTIONS(3313), - [anon_sym_static] = ACTIONS(3313), - [anon_sym_register] = ACTIONS(3313), - [anon_sym_inline] = ACTIONS(3313), - [anon_sym___inline] = ACTIONS(3313), - [anon_sym___inline__] = ACTIONS(3313), - [anon_sym___forceinline] = ACTIONS(3313), - [anon_sym_thread_local] = ACTIONS(3313), - [anon_sym___thread] = ACTIONS(3313), - [anon_sym_const] = ACTIONS(3313), - [anon_sym_constexpr] = ACTIONS(3313), - [anon_sym_volatile] = ACTIONS(3313), - [anon_sym_restrict] = ACTIONS(3313), - [anon_sym___restrict__] = ACTIONS(3313), - [anon_sym__Atomic] = ACTIONS(3313), - [anon_sym__Noreturn] = ACTIONS(3313), - [anon_sym_noreturn] = ACTIONS(3313), - [anon_sym__Nonnull] = ACTIONS(3313), - [anon_sym_mutable] = ACTIONS(3313), - [anon_sym_constinit] = ACTIONS(3313), - [anon_sym_consteval] = ACTIONS(3313), - [anon_sym_alignas] = ACTIONS(3313), - [anon_sym__Alignas] = ACTIONS(3313), - [sym_primitive_type] = ACTIONS(3313), - [anon_sym_enum] = ACTIONS(3313), - [anon_sym_class] = ACTIONS(3313), - [anon_sym_struct] = ACTIONS(3313), - [anon_sym_union] = ACTIONS(3313), - [anon_sym_if] = ACTIONS(3313), - [anon_sym_switch] = ACTIONS(3313), - [anon_sym_case] = ACTIONS(3313), - [anon_sym_default] = ACTIONS(3313), - [anon_sym_while] = ACTIONS(3313), - [anon_sym_do] = ACTIONS(3313), - [anon_sym_for] = ACTIONS(3313), - [anon_sym_return] = ACTIONS(3313), - [anon_sym_break] = ACTIONS(3313), - [anon_sym_continue] = ACTIONS(3313), - [anon_sym_goto] = ACTIONS(3313), - [anon_sym___try] = ACTIONS(3313), - [anon_sym___leave] = ACTIONS(3313), - [anon_sym_not] = ACTIONS(3313), - [anon_sym_compl] = ACTIONS(3313), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_sizeof] = ACTIONS(3313), - [anon_sym___alignof__] = ACTIONS(3313), - [anon_sym___alignof] = ACTIONS(3313), - [anon_sym__alignof] = ACTIONS(3313), - [anon_sym_alignof] = ACTIONS(3313), - [anon_sym__Alignof] = ACTIONS(3313), - [anon_sym_offsetof] = ACTIONS(3313), - [anon_sym__Generic] = ACTIONS(3313), - [anon_sym_asm] = ACTIONS(3313), - [anon_sym___asm__] = ACTIONS(3313), - [anon_sym___asm] = ACTIONS(3313), - [sym_number_literal] = ACTIONS(3316), - [anon_sym_L_SQUOTE] = ACTIONS(3316), - [anon_sym_u_SQUOTE] = ACTIONS(3316), - [anon_sym_U_SQUOTE] = ACTIONS(3316), - [anon_sym_u8_SQUOTE] = ACTIONS(3316), - [anon_sym_SQUOTE] = ACTIONS(3316), - [anon_sym_L_DQUOTE] = ACTIONS(3316), - [anon_sym_u_DQUOTE] = ACTIONS(3316), - [anon_sym_U_DQUOTE] = ACTIONS(3316), - [anon_sym_u8_DQUOTE] = ACTIONS(3316), - [anon_sym_DQUOTE] = ACTIONS(3316), - [sym_true] = ACTIONS(3313), - [sym_false] = ACTIONS(3313), - [anon_sym_NULL] = ACTIONS(3313), - [anon_sym_nullptr] = ACTIONS(3313), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3313), - [anon_sym_decltype] = ACTIONS(3313), - [anon_sym_explicit] = ACTIONS(3313), - [anon_sym_typename] = ACTIONS(3313), - [anon_sym_template] = ACTIONS(3313), - [anon_sym_operator] = ACTIONS(3313), - [anon_sym_try] = ACTIONS(3313), - [anon_sym_delete] = ACTIONS(3313), - [anon_sym_throw] = ACTIONS(3313), - [anon_sym_namespace] = ACTIONS(3313), - [anon_sym_static_assert] = ACTIONS(3313), - [anon_sym_concept] = ACTIONS(3313), - [anon_sym_co_return] = ACTIONS(3313), - [anon_sym_co_yield] = ACTIONS(3313), - [anon_sym_R_DQUOTE] = ACTIONS(3316), - [anon_sym_LR_DQUOTE] = ACTIONS(3316), - [anon_sym_uR_DQUOTE] = ACTIONS(3316), - [anon_sym_UR_DQUOTE] = ACTIONS(3316), - [anon_sym_u8R_DQUOTE] = ACTIONS(3316), - [anon_sym_co_await] = ACTIONS(3313), - [anon_sym_new] = ACTIONS(3313), - [anon_sym_requires] = ACTIONS(3313), - [sym_this] = ACTIONS(3313), - }, - [433] = { - [sym_identifier] = ACTIONS(3319), - [aux_sym_preproc_include_token1] = ACTIONS(3319), - [aux_sym_preproc_def_token1] = ACTIONS(3319), - [aux_sym_preproc_if_token1] = ACTIONS(3319), - [aux_sym_preproc_if_token2] = ACTIONS(3319), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3319), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3319), - [aux_sym_preproc_else_token1] = ACTIONS(3319), - [aux_sym_preproc_elif_token1] = ACTIONS(3319), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3319), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3319), - [sym_preproc_directive] = ACTIONS(3319), - [anon_sym_LPAREN2] = ACTIONS(3321), - [anon_sym_BANG] = ACTIONS(3321), - [anon_sym_TILDE] = ACTIONS(3321), - [anon_sym_DASH] = ACTIONS(3319), - [anon_sym_PLUS] = ACTIONS(3319), - [anon_sym_STAR] = ACTIONS(3321), - [anon_sym_AMP_AMP] = ACTIONS(3321), - [anon_sym_AMP] = ACTIONS(3319), - [anon_sym_SEMI] = ACTIONS(3321), - [anon_sym___extension__] = ACTIONS(3319), - [anon_sym_typedef] = ACTIONS(3319), - [anon_sym_virtual] = ACTIONS(3319), - [anon_sym_extern] = ACTIONS(3319), - [anon_sym___attribute__] = ACTIONS(3319), - [anon_sym___attribute] = ACTIONS(3319), - [anon_sym_using] = ACTIONS(3319), - [anon_sym_COLON_COLON] = ACTIONS(3321), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3321), - [anon_sym___declspec] = ACTIONS(3319), - [anon_sym___based] = ACTIONS(3319), - [anon_sym___cdecl] = ACTIONS(3319), - [anon_sym___clrcall] = ACTIONS(3319), - [anon_sym___stdcall] = ACTIONS(3319), - [anon_sym___fastcall] = ACTIONS(3319), - [anon_sym___thiscall] = ACTIONS(3319), - [anon_sym___vectorcall] = ACTIONS(3319), - [anon_sym_LBRACE] = ACTIONS(3321), - [anon_sym_signed] = ACTIONS(3319), - [anon_sym_unsigned] = ACTIONS(3319), - [anon_sym_long] = ACTIONS(3319), - [anon_sym_short] = ACTIONS(3319), - [anon_sym_LBRACK] = ACTIONS(3319), - [anon_sym_static] = ACTIONS(3319), - [anon_sym_register] = ACTIONS(3319), - [anon_sym_inline] = ACTIONS(3319), - [anon_sym___inline] = ACTIONS(3319), - [anon_sym___inline__] = ACTIONS(3319), - [anon_sym___forceinline] = ACTIONS(3319), - [anon_sym_thread_local] = ACTIONS(3319), - [anon_sym___thread] = ACTIONS(3319), - [anon_sym_const] = ACTIONS(3319), - [anon_sym_constexpr] = ACTIONS(3319), - [anon_sym_volatile] = ACTIONS(3319), - [anon_sym_restrict] = ACTIONS(3319), - [anon_sym___restrict__] = ACTIONS(3319), - [anon_sym__Atomic] = ACTIONS(3319), - [anon_sym__Noreturn] = ACTIONS(3319), - [anon_sym_noreturn] = ACTIONS(3319), - [anon_sym__Nonnull] = ACTIONS(3319), - [anon_sym_mutable] = ACTIONS(3319), - [anon_sym_constinit] = ACTIONS(3319), - [anon_sym_consteval] = ACTIONS(3319), - [anon_sym_alignas] = ACTIONS(3319), - [anon_sym__Alignas] = ACTIONS(3319), - [sym_primitive_type] = ACTIONS(3319), - [anon_sym_enum] = ACTIONS(3319), - [anon_sym_class] = ACTIONS(3319), - [anon_sym_struct] = ACTIONS(3319), - [anon_sym_union] = ACTIONS(3319), - [anon_sym_if] = ACTIONS(3319), - [anon_sym_switch] = ACTIONS(3319), - [anon_sym_case] = ACTIONS(3319), - [anon_sym_default] = ACTIONS(3319), - [anon_sym_while] = ACTIONS(3319), - [anon_sym_do] = ACTIONS(3319), - [anon_sym_for] = ACTIONS(3319), - [anon_sym_return] = ACTIONS(3319), - [anon_sym_break] = ACTIONS(3319), - [anon_sym_continue] = ACTIONS(3319), - [anon_sym_goto] = ACTIONS(3319), - [anon_sym___try] = ACTIONS(3319), - [anon_sym___leave] = ACTIONS(3319), - [anon_sym_not] = ACTIONS(3319), - [anon_sym_compl] = ACTIONS(3319), - [anon_sym_DASH_DASH] = ACTIONS(3321), - [anon_sym_PLUS_PLUS] = ACTIONS(3321), - [anon_sym_sizeof] = ACTIONS(3319), - [anon_sym___alignof__] = ACTIONS(3319), - [anon_sym___alignof] = ACTIONS(3319), - [anon_sym__alignof] = ACTIONS(3319), - [anon_sym_alignof] = ACTIONS(3319), - [anon_sym__Alignof] = ACTIONS(3319), - [anon_sym_offsetof] = ACTIONS(3319), - [anon_sym__Generic] = ACTIONS(3319), - [anon_sym_asm] = ACTIONS(3319), - [anon_sym___asm__] = ACTIONS(3319), - [anon_sym___asm] = ACTIONS(3319), - [sym_number_literal] = ACTIONS(3321), - [anon_sym_L_SQUOTE] = ACTIONS(3321), - [anon_sym_u_SQUOTE] = ACTIONS(3321), - [anon_sym_U_SQUOTE] = ACTIONS(3321), - [anon_sym_u8_SQUOTE] = ACTIONS(3321), - [anon_sym_SQUOTE] = ACTIONS(3321), - [anon_sym_L_DQUOTE] = ACTIONS(3321), - [anon_sym_u_DQUOTE] = ACTIONS(3321), - [anon_sym_U_DQUOTE] = ACTIONS(3321), - [anon_sym_u8_DQUOTE] = ACTIONS(3321), - [anon_sym_DQUOTE] = ACTIONS(3321), - [sym_true] = ACTIONS(3319), - [sym_false] = ACTIONS(3319), - [anon_sym_NULL] = ACTIONS(3319), - [anon_sym_nullptr] = ACTIONS(3319), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3319), - [anon_sym_decltype] = ACTIONS(3319), - [anon_sym_explicit] = ACTIONS(3319), - [anon_sym_typename] = ACTIONS(3319), - [anon_sym_template] = ACTIONS(3319), - [anon_sym_operator] = ACTIONS(3319), - [anon_sym_try] = ACTIONS(3319), - [anon_sym_delete] = ACTIONS(3319), - [anon_sym_throw] = ACTIONS(3319), - [anon_sym_namespace] = ACTIONS(3319), - [anon_sym_static_assert] = ACTIONS(3319), - [anon_sym_concept] = ACTIONS(3319), - [anon_sym_co_return] = ACTIONS(3319), - [anon_sym_co_yield] = ACTIONS(3319), - [anon_sym_R_DQUOTE] = ACTIONS(3321), - [anon_sym_LR_DQUOTE] = ACTIONS(3321), - [anon_sym_uR_DQUOTE] = ACTIONS(3321), - [anon_sym_UR_DQUOTE] = ACTIONS(3321), - [anon_sym_u8R_DQUOTE] = ACTIONS(3321), - [anon_sym_co_await] = ACTIONS(3319), - [anon_sym_new] = ACTIONS(3319), - [anon_sym_requires] = ACTIONS(3319), - [sym_this] = ACTIONS(3319), - }, - [434] = { - [ts_builtin_sym_end] = ACTIONS(2809), - [sym_identifier] = ACTIONS(2807), - [aux_sym_preproc_include_token1] = ACTIONS(2807), - [aux_sym_preproc_def_token1] = ACTIONS(2807), - [anon_sym_COMMA] = ACTIONS(2809), - [aux_sym_preproc_if_token1] = ACTIONS(2807), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2807), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2807), - [sym_preproc_directive] = ACTIONS(2807), - [anon_sym_LPAREN2] = ACTIONS(2809), - [anon_sym_BANG] = ACTIONS(2809), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_DASH] = ACTIONS(2807), - [anon_sym_PLUS] = ACTIONS(2807), - [anon_sym_STAR] = ACTIONS(2809), - [anon_sym_AMP_AMP] = ACTIONS(2809), - [anon_sym_AMP] = ACTIONS(2807), - [anon_sym_SEMI] = ACTIONS(2809), - [anon_sym___extension__] = ACTIONS(2807), - [anon_sym_typedef] = ACTIONS(2807), - [anon_sym_virtual] = ACTIONS(2807), - [anon_sym_extern] = ACTIONS(2807), - [anon_sym___attribute__] = ACTIONS(2807), - [anon_sym___attribute] = ACTIONS(2807), - [anon_sym_using] = ACTIONS(2807), - [anon_sym_COLON_COLON] = ACTIONS(2809), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2809), - [anon_sym___declspec] = ACTIONS(2807), - [anon_sym___based] = ACTIONS(2807), - [anon_sym___cdecl] = ACTIONS(2807), - [anon_sym___clrcall] = ACTIONS(2807), - [anon_sym___stdcall] = ACTIONS(2807), - [anon_sym___fastcall] = ACTIONS(2807), - [anon_sym___thiscall] = ACTIONS(2807), - [anon_sym___vectorcall] = ACTIONS(2807), - [anon_sym_LBRACE] = ACTIONS(2809), - [anon_sym_RBRACE] = ACTIONS(2809), - [anon_sym_signed] = ACTIONS(2807), - [anon_sym_unsigned] = ACTIONS(2807), - [anon_sym_long] = ACTIONS(2807), - [anon_sym_short] = ACTIONS(2807), - [anon_sym_LBRACK] = ACTIONS(2807), - [anon_sym_static] = ACTIONS(2807), - [anon_sym_register] = ACTIONS(2807), - [anon_sym_inline] = ACTIONS(2807), - [anon_sym___inline] = ACTIONS(2807), - [anon_sym___inline__] = ACTIONS(2807), - [anon_sym___forceinline] = ACTIONS(2807), - [anon_sym_thread_local] = ACTIONS(2807), - [anon_sym___thread] = ACTIONS(2807), - [anon_sym_const] = ACTIONS(2807), - [anon_sym_constexpr] = ACTIONS(2807), - [anon_sym_volatile] = ACTIONS(2807), - [anon_sym_restrict] = ACTIONS(2807), - [anon_sym___restrict__] = ACTIONS(2807), - [anon_sym__Atomic] = ACTIONS(2807), - [anon_sym__Noreturn] = ACTIONS(2807), - [anon_sym_noreturn] = ACTIONS(2807), - [anon_sym__Nonnull] = ACTIONS(2807), - [anon_sym_mutable] = ACTIONS(2807), - [anon_sym_constinit] = ACTIONS(2807), - [anon_sym_consteval] = ACTIONS(2807), - [anon_sym_alignas] = ACTIONS(2807), - [anon_sym__Alignas] = ACTIONS(2807), - [sym_primitive_type] = ACTIONS(2807), - [anon_sym_enum] = ACTIONS(2807), - [anon_sym_class] = ACTIONS(2807), - [anon_sym_struct] = ACTIONS(2807), - [anon_sym_union] = ACTIONS(2807), - [anon_sym_if] = ACTIONS(2807), - [anon_sym_switch] = ACTIONS(2807), - [anon_sym_case] = ACTIONS(2807), - [anon_sym_default] = ACTIONS(2807), - [anon_sym_while] = ACTIONS(2807), - [anon_sym_do] = ACTIONS(2807), - [anon_sym_for] = ACTIONS(2807), - [anon_sym_return] = ACTIONS(2807), - [anon_sym_break] = ACTIONS(2807), - [anon_sym_continue] = ACTIONS(2807), - [anon_sym_goto] = ACTIONS(2807), - [anon_sym_not] = ACTIONS(2807), - [anon_sym_compl] = ACTIONS(2807), - [anon_sym_DASH_DASH] = ACTIONS(2809), - [anon_sym_PLUS_PLUS] = ACTIONS(2809), - [anon_sym_sizeof] = ACTIONS(2807), - [anon_sym___alignof__] = ACTIONS(2807), - [anon_sym___alignof] = ACTIONS(2807), - [anon_sym__alignof] = ACTIONS(2807), - [anon_sym_alignof] = ACTIONS(2807), - [anon_sym__Alignof] = ACTIONS(2807), - [anon_sym_offsetof] = ACTIONS(2807), - [anon_sym__Generic] = ACTIONS(2807), - [anon_sym_asm] = ACTIONS(2807), - [anon_sym___asm__] = ACTIONS(2807), - [anon_sym___asm] = ACTIONS(2807), - [sym_number_literal] = ACTIONS(2809), - [anon_sym_L_SQUOTE] = ACTIONS(2809), - [anon_sym_u_SQUOTE] = ACTIONS(2809), - [anon_sym_U_SQUOTE] = ACTIONS(2809), - [anon_sym_u8_SQUOTE] = ACTIONS(2809), - [anon_sym_SQUOTE] = ACTIONS(2809), - [anon_sym_L_DQUOTE] = ACTIONS(2809), - [anon_sym_u_DQUOTE] = ACTIONS(2809), - [anon_sym_U_DQUOTE] = ACTIONS(2809), - [anon_sym_u8_DQUOTE] = ACTIONS(2809), - [anon_sym_DQUOTE] = ACTIONS(2809), - [sym_true] = ACTIONS(2807), - [sym_false] = ACTIONS(2807), - [anon_sym_NULL] = ACTIONS(2807), - [anon_sym_nullptr] = ACTIONS(2807), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2807), - [anon_sym_decltype] = ACTIONS(2807), - [anon_sym_explicit] = ACTIONS(2807), - [anon_sym_typename] = ACTIONS(2807), - [anon_sym_export] = ACTIONS(2807), - [anon_sym_module] = ACTIONS(2807), - [anon_sym_import] = ACTIONS(2807), - [anon_sym_template] = ACTIONS(2807), - [anon_sym_operator] = ACTIONS(2807), - [anon_sym_try] = ACTIONS(2807), - [anon_sym_delete] = ACTIONS(2807), - [anon_sym_throw] = ACTIONS(2807), - [anon_sym_namespace] = ACTIONS(2807), - [anon_sym_static_assert] = ACTIONS(2807), - [anon_sym_concept] = ACTIONS(2807), - [anon_sym_co_return] = ACTIONS(2807), - [anon_sym_co_yield] = ACTIONS(2807), - [anon_sym_R_DQUOTE] = ACTIONS(2809), - [anon_sym_LR_DQUOTE] = ACTIONS(2809), - [anon_sym_uR_DQUOTE] = ACTIONS(2809), - [anon_sym_UR_DQUOTE] = ACTIONS(2809), - [anon_sym_u8R_DQUOTE] = ACTIONS(2809), - [anon_sym_co_await] = ACTIONS(2807), - [anon_sym_new] = ACTIONS(2807), - [anon_sym_requires] = ACTIONS(2807), - [sym_this] = ACTIONS(2807), - }, - [435] = { - [sym_expression] = STATE(4294), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(2551), - [anon_sym_LPAREN2] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2568), - [anon_sym_typedef] = ACTIONS(2601), - [anon_sym_virtual] = ACTIONS(2573), - [anon_sym_extern] = ACTIONS(2573), - [anon_sym___attribute__] = ACTIONS(2573), - [anon_sym___attribute] = ACTIONS(2573), - [anon_sym_COLON_COLON] = ACTIONS(2575), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2563), - [anon_sym___declspec] = ACTIONS(2573), - [anon_sym_signed] = ACTIONS(2573), - [anon_sym_unsigned] = ACTIONS(2573), - [anon_sym_long] = ACTIONS(2573), - [anon_sym_short] = ACTIONS(2573), - [anon_sym_LBRACK] = ACTIONS(1450), - [anon_sym_static] = ACTIONS(2573), - [anon_sym_register] = ACTIONS(2573), - [anon_sym_inline] = ACTIONS(2573), - [anon_sym___inline] = ACTIONS(2573), - [anon_sym___inline__] = ACTIONS(2573), - [anon_sym___forceinline] = ACTIONS(2573), - [anon_sym_thread_local] = ACTIONS(2573), - [anon_sym___thread] = ACTIONS(2573), - [anon_sym_const] = ACTIONS(2573), - [anon_sym_constexpr] = ACTIONS(2573), - [anon_sym_volatile] = ACTIONS(2573), - [anon_sym_restrict] = ACTIONS(2573), - [anon_sym___restrict__] = ACTIONS(2573), - [anon_sym__Atomic] = ACTIONS(2573), - [anon_sym__Noreturn] = ACTIONS(2573), - [anon_sym_noreturn] = ACTIONS(2573), - [anon_sym__Nonnull] = ACTIONS(2573), - [anon_sym_mutable] = ACTIONS(2573), - [anon_sym_constinit] = ACTIONS(2573), - [anon_sym_consteval] = ACTIONS(2573), - [anon_sym_alignas] = ACTIONS(2573), - [anon_sym__Alignas] = ACTIONS(2573), - [sym_primitive_type] = ACTIONS(2581), - [anon_sym_enum] = ACTIONS(2573), - [anon_sym_class] = ACTIONS(2573), - [anon_sym_struct] = ACTIONS(2573), - [anon_sym_union] = ACTIONS(2573), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2573), - [anon_sym_decltype] = ACTIONS(2584), - [anon_sym_typename] = ACTIONS(2573), - [anon_sym_template] = ACTIONS(2587), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [sym_auto] = ACTIONS(2631), + [anon_sym_decltype] = ACTIONS(2631), + [anon_sym_explicit] = ACTIONS(2631), + [anon_sym_typename] = ACTIONS(2631), + [anon_sym_export] = ACTIONS(2631), + [anon_sym_module] = ACTIONS(2631), + [anon_sym_import] = ACTIONS(2631), + [anon_sym_template] = ACTIONS(2631), + [anon_sym_operator] = ACTIONS(2631), + [anon_sym_try] = ACTIONS(2631), + [anon_sym_delete] = ACTIONS(2631), + [anon_sym_throw] = ACTIONS(2631), + [anon_sym_namespace] = ACTIONS(2631), + [anon_sym_static_assert] = ACTIONS(2631), + [anon_sym_concept] = ACTIONS(2631), + [anon_sym_co_return] = ACTIONS(2631), + [anon_sym_co_yield] = ACTIONS(2631), + [anon_sym_R_DQUOTE] = ACTIONS(2633), + [anon_sym_LR_DQUOTE] = ACTIONS(2633), + [anon_sym_uR_DQUOTE] = ACTIONS(2633), + [anon_sym_UR_DQUOTE] = ACTIONS(2633), + [anon_sym_u8R_DQUOTE] = ACTIONS(2633), + [anon_sym_co_await] = ACTIONS(2631), + [anon_sym_new] = ACTIONS(2631), + [anon_sym_requires] = ACTIONS(2631), + [sym_this] = ACTIONS(2631), }, [436] = { - [sym_expression] = STATE(4294), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(2551), - [anon_sym_LPAREN2] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2568), - [anon_sym_typedef] = ACTIONS(2603), - [anon_sym_virtual] = ACTIONS(2573), - [anon_sym_extern] = ACTIONS(2573), - [anon_sym___attribute__] = ACTIONS(2573), - [anon_sym___attribute] = ACTIONS(2573), - [anon_sym_COLON_COLON] = ACTIONS(2575), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2563), - [anon_sym___declspec] = ACTIONS(2573), - [anon_sym_signed] = ACTIONS(2573), - [anon_sym_unsigned] = ACTIONS(2573), - [anon_sym_long] = ACTIONS(2573), - [anon_sym_short] = ACTIONS(2573), - [anon_sym_LBRACK] = ACTIONS(1450), - [anon_sym_static] = ACTIONS(2573), - [anon_sym_register] = ACTIONS(2573), - [anon_sym_inline] = ACTIONS(2573), - [anon_sym___inline] = ACTIONS(2573), - [anon_sym___inline__] = ACTIONS(2573), - [anon_sym___forceinline] = ACTIONS(2573), - [anon_sym_thread_local] = ACTIONS(2573), - [anon_sym___thread] = ACTIONS(2573), - [anon_sym_const] = ACTIONS(2573), - [anon_sym_constexpr] = ACTIONS(2573), - [anon_sym_volatile] = ACTIONS(2573), - [anon_sym_restrict] = ACTIONS(2573), - [anon_sym___restrict__] = ACTIONS(2573), - [anon_sym__Atomic] = ACTIONS(2573), - [anon_sym__Noreturn] = ACTIONS(2573), - [anon_sym_noreturn] = ACTIONS(2573), - [anon_sym__Nonnull] = ACTIONS(2573), - [anon_sym_mutable] = ACTIONS(2573), - [anon_sym_constinit] = ACTIONS(2573), - [anon_sym_consteval] = ACTIONS(2573), - [anon_sym_alignas] = ACTIONS(2573), - [anon_sym__Alignas] = ACTIONS(2573), - [sym_primitive_type] = ACTIONS(2581), - [anon_sym_enum] = ACTIONS(2573), - [anon_sym_class] = ACTIONS(2573), - [anon_sym_struct] = ACTIONS(2573), - [anon_sym_union] = ACTIONS(2573), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2573), - [anon_sym_decltype] = ACTIONS(2584), - [anon_sym_typename] = ACTIONS(2573), - [anon_sym_template] = ACTIONS(2587), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [ts_builtin_sym_end] = ACTIONS(2677), + [sym_identifier] = ACTIONS(2675), + [aux_sym_preproc_include_token1] = ACTIONS(2675), + [aux_sym_preproc_def_token1] = ACTIONS(2675), + [aux_sym_preproc_if_token1] = ACTIONS(2675), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2675), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2675), + [sym_preproc_directive] = ACTIONS(2675), + [anon_sym_LPAREN2] = ACTIONS(2677), + [anon_sym_BANG] = ACTIONS(2677), + [anon_sym_TILDE] = ACTIONS(2677), + [anon_sym_DASH] = ACTIONS(2675), + [anon_sym_PLUS] = ACTIONS(2675), + [anon_sym_STAR] = ACTIONS(2677), + [anon_sym_AMP_AMP] = ACTIONS(2677), + [anon_sym_AMP] = ACTIONS(2675), + [anon_sym_SEMI] = ACTIONS(2677), + [anon_sym___extension__] = ACTIONS(2675), + [anon_sym_typedef] = ACTIONS(2675), + [anon_sym_virtual] = ACTIONS(2675), + [anon_sym_extern] = ACTIONS(2675), + [anon_sym___attribute__] = ACTIONS(2675), + [anon_sym___attribute] = ACTIONS(2675), + [anon_sym_using] = ACTIONS(2675), + [anon_sym_COLON_COLON] = ACTIONS(2677), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2677), + [anon_sym___declspec] = ACTIONS(2675), + [anon_sym___based] = ACTIONS(2675), + [anon_sym___cdecl] = ACTIONS(2675), + [anon_sym___clrcall] = ACTIONS(2675), + [anon_sym___stdcall] = ACTIONS(2675), + [anon_sym___fastcall] = ACTIONS(2675), + [anon_sym___thiscall] = ACTIONS(2675), + [anon_sym___vectorcall] = ACTIONS(2675), + [anon_sym_LBRACE] = ACTIONS(2677), + [anon_sym_signed] = ACTIONS(2675), + [anon_sym_unsigned] = ACTIONS(2675), + [anon_sym_long] = ACTIONS(2675), + [anon_sym_short] = ACTIONS(2675), + [anon_sym_LBRACK] = ACTIONS(2675), + [anon_sym_static] = ACTIONS(2675), + [anon_sym_register] = ACTIONS(2675), + [anon_sym_inline] = ACTIONS(2675), + [anon_sym___inline] = ACTIONS(2675), + [anon_sym___inline__] = ACTIONS(2675), + [anon_sym___forceinline] = ACTIONS(2675), + [anon_sym_thread_local] = ACTIONS(2675), + [anon_sym___thread] = ACTIONS(2675), + [anon_sym_const] = ACTIONS(2675), + [anon_sym_constexpr] = ACTIONS(2675), + [anon_sym_volatile] = ACTIONS(2675), + [anon_sym_restrict] = ACTIONS(2675), + [anon_sym___restrict__] = ACTIONS(2675), + [anon_sym__Atomic] = ACTIONS(2675), + [anon_sym__Noreturn] = ACTIONS(2675), + [anon_sym_noreturn] = ACTIONS(2675), + [anon_sym__Nonnull] = ACTIONS(2675), + [anon_sym_mutable] = ACTIONS(2675), + [anon_sym_constinit] = ACTIONS(2675), + [anon_sym_consteval] = ACTIONS(2675), + [anon_sym_alignas] = ACTIONS(2675), + [anon_sym__Alignas] = ACTIONS(2675), + [sym_primitive_type] = ACTIONS(2675), + [anon_sym_enum] = ACTIONS(2675), + [anon_sym_class] = ACTIONS(2675), + [anon_sym_struct] = ACTIONS(2675), + [anon_sym_union] = ACTIONS(2675), + [anon_sym_if] = ACTIONS(2675), + [anon_sym_else] = ACTIONS(2675), + [anon_sym_switch] = ACTIONS(2675), + [anon_sym_case] = ACTIONS(2675), + [anon_sym_default] = ACTIONS(2675), + [anon_sym_while] = ACTIONS(2675), + [anon_sym_do] = ACTIONS(2675), + [anon_sym_for] = ACTIONS(2675), + [anon_sym_return] = ACTIONS(2675), + [anon_sym_break] = ACTIONS(2675), + [anon_sym_continue] = ACTIONS(2675), + [anon_sym_goto] = ACTIONS(2675), + [anon_sym___try] = ACTIONS(2675), + [anon_sym___leave] = ACTIONS(2675), + [anon_sym_not] = ACTIONS(2675), + [anon_sym_compl] = ACTIONS(2675), + [anon_sym_DASH_DASH] = ACTIONS(2677), + [anon_sym_PLUS_PLUS] = ACTIONS(2677), + [anon_sym_sizeof] = ACTIONS(2675), + [anon_sym___alignof__] = ACTIONS(2675), + [anon_sym___alignof] = ACTIONS(2675), + [anon_sym__alignof] = ACTIONS(2675), + [anon_sym_alignof] = ACTIONS(2675), + [anon_sym__Alignof] = ACTIONS(2675), + [anon_sym_offsetof] = ACTIONS(2675), + [anon_sym__Generic] = ACTIONS(2675), + [anon_sym_asm] = ACTIONS(2675), + [anon_sym___asm__] = ACTIONS(2675), + [anon_sym___asm] = ACTIONS(2675), + [sym_number_literal] = ACTIONS(2677), + [anon_sym_L_SQUOTE] = ACTIONS(2677), + [anon_sym_u_SQUOTE] = ACTIONS(2677), + [anon_sym_U_SQUOTE] = ACTIONS(2677), + [anon_sym_u8_SQUOTE] = ACTIONS(2677), + [anon_sym_SQUOTE] = ACTIONS(2677), + [anon_sym_L_DQUOTE] = ACTIONS(2677), + [anon_sym_u_DQUOTE] = ACTIONS(2677), + [anon_sym_U_DQUOTE] = ACTIONS(2677), + [anon_sym_u8_DQUOTE] = ACTIONS(2677), + [anon_sym_DQUOTE] = ACTIONS(2677), + [sym_true] = ACTIONS(2675), + [sym_false] = ACTIONS(2675), + [anon_sym_NULL] = ACTIONS(2675), + [anon_sym_nullptr] = ACTIONS(2675), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2675), + [anon_sym_decltype] = ACTIONS(2675), + [anon_sym_explicit] = ACTIONS(2675), + [anon_sym_typename] = ACTIONS(2675), + [anon_sym_export] = ACTIONS(2675), + [anon_sym_module] = ACTIONS(2675), + [anon_sym_import] = ACTIONS(2675), + [anon_sym_template] = ACTIONS(2675), + [anon_sym_operator] = ACTIONS(2675), + [anon_sym_try] = ACTIONS(2675), + [anon_sym_delete] = ACTIONS(2675), + [anon_sym_throw] = ACTIONS(2675), + [anon_sym_namespace] = ACTIONS(2675), + [anon_sym_static_assert] = ACTIONS(2675), + [anon_sym_concept] = ACTIONS(2675), + [anon_sym_co_return] = ACTIONS(2675), + [anon_sym_co_yield] = ACTIONS(2675), + [anon_sym_R_DQUOTE] = ACTIONS(2677), + [anon_sym_LR_DQUOTE] = ACTIONS(2677), + [anon_sym_uR_DQUOTE] = ACTIONS(2677), + [anon_sym_UR_DQUOTE] = ACTIONS(2677), + [anon_sym_u8R_DQUOTE] = ACTIONS(2677), + [anon_sym_co_await] = ACTIONS(2675), + [anon_sym_new] = ACTIONS(2675), + [anon_sym_requires] = ACTIONS(2675), + [sym_this] = ACTIONS(2675), }, [437] = { - [ts_builtin_sym_end] = ACTIONS(3311), - [sym_identifier] = ACTIONS(3309), - [aux_sym_preproc_include_token1] = ACTIONS(3309), - [aux_sym_preproc_def_token1] = ACTIONS(3309), - [anon_sym_COMMA] = ACTIONS(3311), - [aux_sym_preproc_if_token1] = ACTIONS(3309), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3309), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3309), - [sym_preproc_directive] = ACTIONS(3309), - [anon_sym_LPAREN2] = ACTIONS(3311), - [anon_sym_BANG] = ACTIONS(3311), - [anon_sym_TILDE] = ACTIONS(3311), - [anon_sym_DASH] = ACTIONS(3309), - [anon_sym_PLUS] = ACTIONS(3309), - [anon_sym_STAR] = ACTIONS(3311), - [anon_sym_AMP_AMP] = ACTIONS(3311), - [anon_sym_AMP] = ACTIONS(3309), - [anon_sym_SEMI] = ACTIONS(3311), - [anon_sym___extension__] = ACTIONS(3309), - [anon_sym_typedef] = ACTIONS(3309), - [anon_sym_virtual] = ACTIONS(3309), - [anon_sym_extern] = ACTIONS(3309), - [anon_sym___attribute__] = ACTIONS(3309), - [anon_sym___attribute] = ACTIONS(3309), - [anon_sym_using] = ACTIONS(3309), - [anon_sym_COLON_COLON] = ACTIONS(3311), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3311), - [anon_sym___declspec] = ACTIONS(3309), - [anon_sym___based] = ACTIONS(3309), - [anon_sym___cdecl] = ACTIONS(3309), - [anon_sym___clrcall] = ACTIONS(3309), - [anon_sym___stdcall] = ACTIONS(3309), - [anon_sym___fastcall] = ACTIONS(3309), - [anon_sym___thiscall] = ACTIONS(3309), - [anon_sym___vectorcall] = ACTIONS(3309), - [anon_sym_LBRACE] = ACTIONS(3311), - [anon_sym_RBRACE] = ACTIONS(3311), - [anon_sym_signed] = ACTIONS(3309), - [anon_sym_unsigned] = ACTIONS(3309), - [anon_sym_long] = ACTIONS(3309), - [anon_sym_short] = ACTIONS(3309), - [anon_sym_LBRACK] = ACTIONS(3309), - [anon_sym_static] = ACTIONS(3309), - [anon_sym_register] = ACTIONS(3309), - [anon_sym_inline] = ACTIONS(3309), - [anon_sym___inline] = ACTIONS(3309), - [anon_sym___inline__] = ACTIONS(3309), - [anon_sym___forceinline] = ACTIONS(3309), - [anon_sym_thread_local] = ACTIONS(3309), - [anon_sym___thread] = ACTIONS(3309), - [anon_sym_const] = ACTIONS(3309), - [anon_sym_constexpr] = ACTIONS(3309), - [anon_sym_volatile] = ACTIONS(3309), - [anon_sym_restrict] = ACTIONS(3309), - [anon_sym___restrict__] = ACTIONS(3309), - [anon_sym__Atomic] = ACTIONS(3309), - [anon_sym__Noreturn] = ACTIONS(3309), - [anon_sym_noreturn] = ACTIONS(3309), - [anon_sym__Nonnull] = ACTIONS(3309), - [anon_sym_mutable] = ACTIONS(3309), - [anon_sym_constinit] = ACTIONS(3309), - [anon_sym_consteval] = ACTIONS(3309), - [anon_sym_alignas] = ACTIONS(3309), - [anon_sym__Alignas] = ACTIONS(3309), - [sym_primitive_type] = ACTIONS(3309), - [anon_sym_enum] = ACTIONS(3309), - [anon_sym_class] = ACTIONS(3309), - [anon_sym_struct] = ACTIONS(3309), - [anon_sym_union] = ACTIONS(3309), - [anon_sym_if] = ACTIONS(3309), - [anon_sym_switch] = ACTIONS(3309), - [anon_sym_case] = ACTIONS(3309), - [anon_sym_default] = ACTIONS(3309), - [anon_sym_while] = ACTIONS(3309), - [anon_sym_do] = ACTIONS(3309), - [anon_sym_for] = ACTIONS(3309), - [anon_sym_return] = ACTIONS(3309), - [anon_sym_break] = ACTIONS(3309), - [anon_sym_continue] = ACTIONS(3309), - [anon_sym_goto] = ACTIONS(3309), - [anon_sym_not] = ACTIONS(3309), - [anon_sym_compl] = ACTIONS(3309), - [anon_sym_DASH_DASH] = ACTIONS(3311), - [anon_sym_PLUS_PLUS] = ACTIONS(3311), - [anon_sym_sizeof] = ACTIONS(3309), - [anon_sym___alignof__] = ACTIONS(3309), - [anon_sym___alignof] = ACTIONS(3309), - [anon_sym__alignof] = ACTIONS(3309), - [anon_sym_alignof] = ACTIONS(3309), - [anon_sym__Alignof] = ACTIONS(3309), - [anon_sym_offsetof] = ACTIONS(3309), - [anon_sym__Generic] = ACTIONS(3309), - [anon_sym_asm] = ACTIONS(3309), - [anon_sym___asm__] = ACTIONS(3309), - [anon_sym___asm] = ACTIONS(3309), - [sym_number_literal] = ACTIONS(3311), - [anon_sym_L_SQUOTE] = ACTIONS(3311), - [anon_sym_u_SQUOTE] = ACTIONS(3311), - [anon_sym_U_SQUOTE] = ACTIONS(3311), - [anon_sym_u8_SQUOTE] = ACTIONS(3311), - [anon_sym_SQUOTE] = ACTIONS(3311), - [anon_sym_L_DQUOTE] = ACTIONS(3311), - [anon_sym_u_DQUOTE] = ACTIONS(3311), - [anon_sym_U_DQUOTE] = ACTIONS(3311), - [anon_sym_u8_DQUOTE] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(3311), - [sym_true] = ACTIONS(3309), - [sym_false] = ACTIONS(3309), - [anon_sym_NULL] = ACTIONS(3309), - [anon_sym_nullptr] = ACTIONS(3309), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3309), - [anon_sym_decltype] = ACTIONS(3309), - [anon_sym_explicit] = ACTIONS(3309), - [anon_sym_typename] = ACTIONS(3309), - [anon_sym_export] = ACTIONS(3309), - [anon_sym_module] = ACTIONS(3309), - [anon_sym_import] = ACTIONS(3309), - [anon_sym_template] = ACTIONS(3309), - [anon_sym_operator] = ACTIONS(3309), - [anon_sym_try] = ACTIONS(3309), - [anon_sym_delete] = ACTIONS(3309), - [anon_sym_throw] = ACTIONS(3309), - [anon_sym_namespace] = ACTIONS(3309), - [anon_sym_static_assert] = ACTIONS(3309), - [anon_sym_concept] = ACTIONS(3309), - [anon_sym_co_return] = ACTIONS(3309), - [anon_sym_co_yield] = ACTIONS(3309), - [anon_sym_R_DQUOTE] = ACTIONS(3311), - [anon_sym_LR_DQUOTE] = ACTIONS(3311), - [anon_sym_uR_DQUOTE] = ACTIONS(3311), - [anon_sym_UR_DQUOTE] = ACTIONS(3311), - [anon_sym_u8R_DQUOTE] = ACTIONS(3311), - [anon_sym_co_await] = ACTIONS(3309), - [anon_sym_new] = ACTIONS(3309), - [anon_sym_requires] = ACTIONS(3309), - [sym_this] = ACTIONS(3309), + [sym_identifier] = ACTIONS(3317), + [aux_sym_preproc_include_token1] = ACTIONS(3317), + [aux_sym_preproc_def_token1] = ACTIONS(3317), + [aux_sym_preproc_if_token1] = ACTIONS(3317), + [aux_sym_preproc_if_token2] = ACTIONS(3317), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3317), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3317), + [aux_sym_preproc_else_token1] = ACTIONS(3317), + [aux_sym_preproc_elif_token1] = ACTIONS(3317), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3317), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3317), + [sym_preproc_directive] = ACTIONS(3317), + [anon_sym_LPAREN2] = ACTIONS(3319), + [anon_sym_BANG] = ACTIONS(3319), + [anon_sym_TILDE] = ACTIONS(3319), + [anon_sym_DASH] = ACTIONS(3317), + [anon_sym_PLUS] = ACTIONS(3317), + [anon_sym_STAR] = ACTIONS(3319), + [anon_sym_AMP_AMP] = ACTIONS(3319), + [anon_sym_AMP] = ACTIONS(3317), + [anon_sym_SEMI] = ACTIONS(3319), + [anon_sym___extension__] = ACTIONS(3317), + [anon_sym_typedef] = ACTIONS(3317), + [anon_sym_virtual] = ACTIONS(3317), + [anon_sym_extern] = ACTIONS(3317), + [anon_sym___attribute__] = ACTIONS(3317), + [anon_sym___attribute] = ACTIONS(3317), + [anon_sym_using] = ACTIONS(3317), + [anon_sym_COLON_COLON] = ACTIONS(3319), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3319), + [anon_sym___declspec] = ACTIONS(3317), + [anon_sym___based] = ACTIONS(3317), + [anon_sym___cdecl] = ACTIONS(3317), + [anon_sym___clrcall] = ACTIONS(3317), + [anon_sym___stdcall] = ACTIONS(3317), + [anon_sym___fastcall] = ACTIONS(3317), + [anon_sym___thiscall] = ACTIONS(3317), + [anon_sym___vectorcall] = ACTIONS(3317), + [anon_sym_LBRACE] = ACTIONS(3319), + [anon_sym_signed] = ACTIONS(3317), + [anon_sym_unsigned] = ACTIONS(3317), + [anon_sym_long] = ACTIONS(3317), + [anon_sym_short] = ACTIONS(3317), + [anon_sym_LBRACK] = ACTIONS(3317), + [anon_sym_static] = ACTIONS(3317), + [anon_sym_register] = ACTIONS(3317), + [anon_sym_inline] = ACTIONS(3317), + [anon_sym___inline] = ACTIONS(3317), + [anon_sym___inline__] = ACTIONS(3317), + [anon_sym___forceinline] = ACTIONS(3317), + [anon_sym_thread_local] = ACTIONS(3317), + [anon_sym___thread] = ACTIONS(3317), + [anon_sym_const] = ACTIONS(3317), + [anon_sym_constexpr] = ACTIONS(3317), + [anon_sym_volatile] = ACTIONS(3317), + [anon_sym_restrict] = ACTIONS(3317), + [anon_sym___restrict__] = ACTIONS(3317), + [anon_sym__Atomic] = ACTIONS(3317), + [anon_sym__Noreturn] = ACTIONS(3317), + [anon_sym_noreturn] = ACTIONS(3317), + [anon_sym__Nonnull] = ACTIONS(3317), + [anon_sym_mutable] = ACTIONS(3317), + [anon_sym_constinit] = ACTIONS(3317), + [anon_sym_consteval] = ACTIONS(3317), + [anon_sym_alignas] = ACTIONS(3317), + [anon_sym__Alignas] = ACTIONS(3317), + [sym_primitive_type] = ACTIONS(3317), + [anon_sym_enum] = ACTIONS(3317), + [anon_sym_class] = ACTIONS(3317), + [anon_sym_struct] = ACTIONS(3317), + [anon_sym_union] = ACTIONS(3317), + [anon_sym_if] = ACTIONS(3317), + [anon_sym_switch] = ACTIONS(3317), + [anon_sym_case] = ACTIONS(3317), + [anon_sym_default] = ACTIONS(3317), + [anon_sym_while] = ACTIONS(3317), + [anon_sym_do] = ACTIONS(3317), + [anon_sym_for] = ACTIONS(3317), + [anon_sym_return] = ACTIONS(3317), + [anon_sym_break] = ACTIONS(3317), + [anon_sym_continue] = ACTIONS(3317), + [anon_sym_goto] = ACTIONS(3317), + [anon_sym___try] = ACTIONS(3317), + [anon_sym___leave] = ACTIONS(3317), + [anon_sym_not] = ACTIONS(3317), + [anon_sym_compl] = ACTIONS(3317), + [anon_sym_DASH_DASH] = ACTIONS(3319), + [anon_sym_PLUS_PLUS] = ACTIONS(3319), + [anon_sym_sizeof] = ACTIONS(3317), + [anon_sym___alignof__] = ACTIONS(3317), + [anon_sym___alignof] = ACTIONS(3317), + [anon_sym__alignof] = ACTIONS(3317), + [anon_sym_alignof] = ACTIONS(3317), + [anon_sym__Alignof] = ACTIONS(3317), + [anon_sym_offsetof] = ACTIONS(3317), + [anon_sym__Generic] = ACTIONS(3317), + [anon_sym_asm] = ACTIONS(3317), + [anon_sym___asm__] = ACTIONS(3317), + [anon_sym___asm] = ACTIONS(3317), + [sym_number_literal] = ACTIONS(3319), + [anon_sym_L_SQUOTE] = ACTIONS(3319), + [anon_sym_u_SQUOTE] = ACTIONS(3319), + [anon_sym_U_SQUOTE] = ACTIONS(3319), + [anon_sym_u8_SQUOTE] = ACTIONS(3319), + [anon_sym_SQUOTE] = ACTIONS(3319), + [anon_sym_L_DQUOTE] = ACTIONS(3319), + [anon_sym_u_DQUOTE] = ACTIONS(3319), + [anon_sym_U_DQUOTE] = ACTIONS(3319), + [anon_sym_u8_DQUOTE] = ACTIONS(3319), + [anon_sym_DQUOTE] = ACTIONS(3319), + [sym_true] = ACTIONS(3317), + [sym_false] = ACTIONS(3317), + [anon_sym_NULL] = ACTIONS(3317), + [anon_sym_nullptr] = ACTIONS(3317), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3317), + [anon_sym_decltype] = ACTIONS(3317), + [anon_sym_explicit] = ACTIONS(3317), + [anon_sym_typename] = ACTIONS(3317), + [anon_sym_template] = ACTIONS(3317), + [anon_sym_operator] = ACTIONS(3317), + [anon_sym_try] = ACTIONS(3317), + [anon_sym_delete] = ACTIONS(3317), + [anon_sym_throw] = ACTIONS(3317), + [anon_sym_namespace] = ACTIONS(3317), + [anon_sym_static_assert] = ACTIONS(3317), + [anon_sym_concept] = ACTIONS(3317), + [anon_sym_co_return] = ACTIONS(3317), + [anon_sym_co_yield] = ACTIONS(3317), + [anon_sym_R_DQUOTE] = ACTIONS(3319), + [anon_sym_LR_DQUOTE] = ACTIONS(3319), + [anon_sym_uR_DQUOTE] = ACTIONS(3319), + [anon_sym_UR_DQUOTE] = ACTIONS(3319), + [anon_sym_u8R_DQUOTE] = ACTIONS(3319), + [anon_sym_co_await] = ACTIONS(3317), + [anon_sym_new] = ACTIONS(3317), + [anon_sym_requires] = ACTIONS(3317), + [sym_this] = ACTIONS(3317), }, [438] = { - [sym_catch_clause] = STATE(362), - [aux_sym_constructor_try_statement_repeat1] = STATE(362), - [sym_identifier] = ACTIONS(2547), - [aux_sym_preproc_include_token1] = ACTIONS(2547), - [aux_sym_preproc_def_token1] = ACTIONS(2547), - [aux_sym_preproc_if_token1] = ACTIONS(2547), - [aux_sym_preproc_if_token2] = ACTIONS(2547), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2547), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2547), - [sym_preproc_directive] = ACTIONS(2547), - [anon_sym_LPAREN2] = ACTIONS(2549), - [anon_sym_BANG] = ACTIONS(2549), - [anon_sym_TILDE] = ACTIONS(2549), - [anon_sym_DASH] = ACTIONS(2547), - [anon_sym_PLUS] = ACTIONS(2547), - [anon_sym_STAR] = ACTIONS(2549), - [anon_sym_AMP_AMP] = ACTIONS(2549), - [anon_sym_AMP] = ACTIONS(2547), - [anon_sym_SEMI] = ACTIONS(2549), - [anon_sym___extension__] = ACTIONS(2547), - [anon_sym_typedef] = ACTIONS(2547), - [anon_sym_virtual] = ACTIONS(2547), - [anon_sym_extern] = ACTIONS(2547), - [anon_sym___attribute__] = ACTIONS(2547), - [anon_sym___attribute] = ACTIONS(2547), - [anon_sym_using] = ACTIONS(2547), - [anon_sym_COLON_COLON] = ACTIONS(2549), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2549), - [anon_sym___declspec] = ACTIONS(2547), - [anon_sym___based] = ACTIONS(2547), - [anon_sym___cdecl] = ACTIONS(2547), - [anon_sym___clrcall] = ACTIONS(2547), - [anon_sym___stdcall] = ACTIONS(2547), - [anon_sym___fastcall] = ACTIONS(2547), - [anon_sym___thiscall] = ACTIONS(2547), - [anon_sym___vectorcall] = ACTIONS(2547), - [anon_sym_LBRACE] = ACTIONS(2549), - [anon_sym_signed] = ACTIONS(2547), - [anon_sym_unsigned] = ACTIONS(2547), - [anon_sym_long] = ACTIONS(2547), - [anon_sym_short] = ACTIONS(2547), - [anon_sym_LBRACK] = ACTIONS(2547), - [anon_sym_static] = ACTIONS(2547), - [anon_sym_register] = ACTIONS(2547), - [anon_sym_inline] = ACTIONS(2547), - [anon_sym___inline] = ACTIONS(2547), - [anon_sym___inline__] = ACTIONS(2547), - [anon_sym___forceinline] = ACTIONS(2547), - [anon_sym_thread_local] = ACTIONS(2547), - [anon_sym___thread] = ACTIONS(2547), - [anon_sym_const] = ACTIONS(2547), - [anon_sym_constexpr] = ACTIONS(2547), - [anon_sym_volatile] = ACTIONS(2547), - [anon_sym_restrict] = ACTIONS(2547), - [anon_sym___restrict__] = ACTIONS(2547), - [anon_sym__Atomic] = ACTIONS(2547), - [anon_sym__Noreturn] = ACTIONS(2547), - [anon_sym_noreturn] = ACTIONS(2547), - [anon_sym__Nonnull] = ACTIONS(2547), - [anon_sym_mutable] = ACTIONS(2547), - [anon_sym_constinit] = ACTIONS(2547), - [anon_sym_consteval] = ACTIONS(2547), - [anon_sym_alignas] = ACTIONS(2547), - [anon_sym__Alignas] = ACTIONS(2547), - [sym_primitive_type] = ACTIONS(2547), - [anon_sym_enum] = ACTIONS(2547), - [anon_sym_class] = ACTIONS(2547), - [anon_sym_struct] = ACTIONS(2547), - [anon_sym_union] = ACTIONS(2547), - [anon_sym_if] = ACTIONS(2547), - [anon_sym_switch] = ACTIONS(2547), - [anon_sym_case] = ACTIONS(2547), - [anon_sym_default] = ACTIONS(2547), - [anon_sym_while] = ACTIONS(2547), - [anon_sym_do] = ACTIONS(2547), - [anon_sym_for] = ACTIONS(2547), - [anon_sym_return] = ACTIONS(2547), - [anon_sym_break] = ACTIONS(2547), - [anon_sym_continue] = ACTIONS(2547), - [anon_sym_goto] = ACTIONS(2547), - [anon_sym___try] = ACTIONS(2547), - [anon_sym___leave] = ACTIONS(2547), - [anon_sym_not] = ACTIONS(2547), - [anon_sym_compl] = ACTIONS(2547), - [anon_sym_DASH_DASH] = ACTIONS(2549), - [anon_sym_PLUS_PLUS] = ACTIONS(2549), - [anon_sym_sizeof] = ACTIONS(2547), - [anon_sym___alignof__] = ACTIONS(2547), - [anon_sym___alignof] = ACTIONS(2547), - [anon_sym__alignof] = ACTIONS(2547), - [anon_sym_alignof] = ACTIONS(2547), - [anon_sym__Alignof] = ACTIONS(2547), - [anon_sym_offsetof] = ACTIONS(2547), - [anon_sym__Generic] = ACTIONS(2547), - [anon_sym_asm] = ACTIONS(2547), - [anon_sym___asm__] = ACTIONS(2547), - [anon_sym___asm] = ACTIONS(2547), - [sym_number_literal] = ACTIONS(2549), - [anon_sym_L_SQUOTE] = ACTIONS(2549), - [anon_sym_u_SQUOTE] = ACTIONS(2549), - [anon_sym_U_SQUOTE] = ACTIONS(2549), - [anon_sym_u8_SQUOTE] = ACTIONS(2549), - [anon_sym_SQUOTE] = ACTIONS(2549), - [anon_sym_L_DQUOTE] = ACTIONS(2549), - [anon_sym_u_DQUOTE] = ACTIONS(2549), - [anon_sym_U_DQUOTE] = ACTIONS(2549), - [anon_sym_u8_DQUOTE] = ACTIONS(2549), - [anon_sym_DQUOTE] = ACTIONS(2549), - [sym_true] = ACTIONS(2547), - [sym_false] = ACTIONS(2547), - [anon_sym_NULL] = ACTIONS(2547), - [anon_sym_nullptr] = ACTIONS(2547), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2547), - [anon_sym_decltype] = ACTIONS(2547), - [anon_sym_explicit] = ACTIONS(2547), - [anon_sym_typename] = ACTIONS(2547), - [anon_sym_template] = ACTIONS(2547), - [anon_sym_operator] = ACTIONS(2547), - [anon_sym_try] = ACTIONS(2547), - [anon_sym_delete] = ACTIONS(2547), - [anon_sym_throw] = ACTIONS(2547), - [anon_sym_namespace] = ACTIONS(2547), - [anon_sym_static_assert] = ACTIONS(2547), - [anon_sym_concept] = ACTIONS(2547), - [anon_sym_co_return] = ACTIONS(2547), - [anon_sym_co_yield] = ACTIONS(2547), - [anon_sym_catch] = ACTIONS(3087), - [anon_sym_R_DQUOTE] = ACTIONS(2549), - [anon_sym_LR_DQUOTE] = ACTIONS(2549), - [anon_sym_uR_DQUOTE] = ACTIONS(2549), - [anon_sym_UR_DQUOTE] = ACTIONS(2549), - [anon_sym_u8R_DQUOTE] = ACTIONS(2549), - [anon_sym_co_await] = ACTIONS(2547), - [anon_sym_new] = ACTIONS(2547), - [anon_sym_requires] = ACTIONS(2547), - [sym_this] = ACTIONS(2547), + [ts_builtin_sym_end] = ACTIONS(2723), + [sym_identifier] = ACTIONS(2721), + [aux_sym_preproc_include_token1] = ACTIONS(2721), + [aux_sym_preproc_def_token1] = ACTIONS(2721), + [aux_sym_preproc_if_token1] = ACTIONS(2721), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2721), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2721), + [sym_preproc_directive] = ACTIONS(2721), + [anon_sym_LPAREN2] = ACTIONS(2723), + [anon_sym_BANG] = ACTIONS(2723), + [anon_sym_TILDE] = ACTIONS(2723), + [anon_sym_DASH] = ACTIONS(2721), + [anon_sym_PLUS] = ACTIONS(2721), + [anon_sym_STAR] = ACTIONS(2723), + [anon_sym_AMP_AMP] = ACTIONS(2723), + [anon_sym_AMP] = ACTIONS(2721), + [anon_sym_SEMI] = ACTIONS(2723), + [anon_sym___extension__] = ACTIONS(2721), + [anon_sym_typedef] = ACTIONS(2721), + [anon_sym_virtual] = ACTIONS(2721), + [anon_sym_extern] = ACTIONS(2721), + [anon_sym___attribute__] = ACTIONS(2721), + [anon_sym___attribute] = ACTIONS(2721), + [anon_sym_using] = ACTIONS(2721), + [anon_sym_COLON_COLON] = ACTIONS(2723), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2723), + [anon_sym___declspec] = ACTIONS(2721), + [anon_sym___based] = ACTIONS(2721), + [anon_sym___cdecl] = ACTIONS(2721), + [anon_sym___clrcall] = ACTIONS(2721), + [anon_sym___stdcall] = ACTIONS(2721), + [anon_sym___fastcall] = ACTIONS(2721), + [anon_sym___thiscall] = ACTIONS(2721), + [anon_sym___vectorcall] = ACTIONS(2721), + [anon_sym_LBRACE] = ACTIONS(2723), + [anon_sym_signed] = ACTIONS(2721), + [anon_sym_unsigned] = ACTIONS(2721), + [anon_sym_long] = ACTIONS(2721), + [anon_sym_short] = ACTIONS(2721), + [anon_sym_LBRACK] = ACTIONS(2721), + [anon_sym_static] = ACTIONS(2721), + [anon_sym_register] = ACTIONS(2721), + [anon_sym_inline] = ACTIONS(2721), + [anon_sym___inline] = ACTIONS(2721), + [anon_sym___inline__] = ACTIONS(2721), + [anon_sym___forceinline] = ACTIONS(2721), + [anon_sym_thread_local] = ACTIONS(2721), + [anon_sym___thread] = ACTIONS(2721), + [anon_sym_const] = ACTIONS(2721), + [anon_sym_constexpr] = ACTIONS(2721), + [anon_sym_volatile] = ACTIONS(2721), + [anon_sym_restrict] = ACTIONS(2721), + [anon_sym___restrict__] = ACTIONS(2721), + [anon_sym__Atomic] = ACTIONS(2721), + [anon_sym__Noreturn] = ACTIONS(2721), + [anon_sym_noreturn] = ACTIONS(2721), + [anon_sym__Nonnull] = ACTIONS(2721), + [anon_sym_mutable] = ACTIONS(2721), + [anon_sym_constinit] = ACTIONS(2721), + [anon_sym_consteval] = ACTIONS(2721), + [anon_sym_alignas] = ACTIONS(2721), + [anon_sym__Alignas] = ACTIONS(2721), + [sym_primitive_type] = ACTIONS(2721), + [anon_sym_enum] = ACTIONS(2721), + [anon_sym_class] = ACTIONS(2721), + [anon_sym_struct] = ACTIONS(2721), + [anon_sym_union] = ACTIONS(2721), + [anon_sym_if] = ACTIONS(2721), + [anon_sym_else] = ACTIONS(2721), + [anon_sym_switch] = ACTIONS(2721), + [anon_sym_case] = ACTIONS(2721), + [anon_sym_default] = ACTIONS(2721), + [anon_sym_while] = ACTIONS(2721), + [anon_sym_do] = ACTIONS(2721), + [anon_sym_for] = ACTIONS(2721), + [anon_sym_return] = ACTIONS(2721), + [anon_sym_break] = ACTIONS(2721), + [anon_sym_continue] = ACTIONS(2721), + [anon_sym_goto] = ACTIONS(2721), + [anon_sym___try] = ACTIONS(2721), + [anon_sym___leave] = ACTIONS(2721), + [anon_sym_not] = ACTIONS(2721), + [anon_sym_compl] = ACTIONS(2721), + [anon_sym_DASH_DASH] = ACTIONS(2723), + [anon_sym_PLUS_PLUS] = ACTIONS(2723), + [anon_sym_sizeof] = ACTIONS(2721), + [anon_sym___alignof__] = ACTIONS(2721), + [anon_sym___alignof] = ACTIONS(2721), + [anon_sym__alignof] = ACTIONS(2721), + [anon_sym_alignof] = ACTIONS(2721), + [anon_sym__Alignof] = ACTIONS(2721), + [anon_sym_offsetof] = ACTIONS(2721), + [anon_sym__Generic] = ACTIONS(2721), + [anon_sym_asm] = ACTIONS(2721), + [anon_sym___asm__] = ACTIONS(2721), + [anon_sym___asm] = ACTIONS(2721), + [sym_number_literal] = ACTIONS(2723), + [anon_sym_L_SQUOTE] = ACTIONS(2723), + [anon_sym_u_SQUOTE] = ACTIONS(2723), + [anon_sym_U_SQUOTE] = ACTIONS(2723), + [anon_sym_u8_SQUOTE] = ACTIONS(2723), + [anon_sym_SQUOTE] = ACTIONS(2723), + [anon_sym_L_DQUOTE] = ACTIONS(2723), + [anon_sym_u_DQUOTE] = ACTIONS(2723), + [anon_sym_U_DQUOTE] = ACTIONS(2723), + [anon_sym_u8_DQUOTE] = ACTIONS(2723), + [anon_sym_DQUOTE] = ACTIONS(2723), + [sym_true] = ACTIONS(2721), + [sym_false] = ACTIONS(2721), + [anon_sym_NULL] = ACTIONS(2721), + [anon_sym_nullptr] = ACTIONS(2721), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2721), + [anon_sym_decltype] = ACTIONS(2721), + [anon_sym_explicit] = ACTIONS(2721), + [anon_sym_typename] = ACTIONS(2721), + [anon_sym_export] = ACTIONS(2721), + [anon_sym_module] = ACTIONS(2721), + [anon_sym_import] = ACTIONS(2721), + [anon_sym_template] = ACTIONS(2721), + [anon_sym_operator] = ACTIONS(2721), + [anon_sym_try] = ACTIONS(2721), + [anon_sym_delete] = ACTIONS(2721), + [anon_sym_throw] = ACTIONS(2721), + [anon_sym_namespace] = ACTIONS(2721), + [anon_sym_static_assert] = ACTIONS(2721), + [anon_sym_concept] = ACTIONS(2721), + [anon_sym_co_return] = ACTIONS(2721), + [anon_sym_co_yield] = ACTIONS(2721), + [anon_sym_R_DQUOTE] = ACTIONS(2723), + [anon_sym_LR_DQUOTE] = ACTIONS(2723), + [anon_sym_uR_DQUOTE] = ACTIONS(2723), + [anon_sym_UR_DQUOTE] = ACTIONS(2723), + [anon_sym_u8R_DQUOTE] = ACTIONS(2723), + [anon_sym_co_await] = ACTIONS(2721), + [anon_sym_new] = ACTIONS(2721), + [anon_sym_requires] = ACTIONS(2721), + [sym_this] = ACTIONS(2721), }, [439] = { - [sym_catch_clause] = STATE(362), - [aux_sym_constructor_try_statement_repeat1] = STATE(362), - [sym_identifier] = ACTIONS(2590), - [aux_sym_preproc_include_token1] = ACTIONS(2590), - [aux_sym_preproc_def_token1] = ACTIONS(2590), - [aux_sym_preproc_if_token1] = ACTIONS(2590), - [aux_sym_preproc_if_token2] = ACTIONS(2590), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2590), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2590), - [sym_preproc_directive] = ACTIONS(2590), - [anon_sym_LPAREN2] = ACTIONS(2592), - [anon_sym_BANG] = ACTIONS(2592), - [anon_sym_TILDE] = ACTIONS(2592), - [anon_sym_DASH] = ACTIONS(2590), - [anon_sym_PLUS] = ACTIONS(2590), - [anon_sym_STAR] = ACTIONS(2592), - [anon_sym_AMP_AMP] = ACTIONS(2592), - [anon_sym_AMP] = ACTIONS(2590), - [anon_sym_SEMI] = ACTIONS(2592), - [anon_sym___extension__] = ACTIONS(2590), - [anon_sym_typedef] = ACTIONS(2590), - [anon_sym_virtual] = ACTIONS(2590), - [anon_sym_extern] = ACTIONS(2590), - [anon_sym___attribute__] = ACTIONS(2590), - [anon_sym___attribute] = ACTIONS(2590), - [anon_sym_using] = ACTIONS(2590), - [anon_sym_COLON_COLON] = ACTIONS(2592), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2592), - [anon_sym___declspec] = ACTIONS(2590), - [anon_sym___based] = ACTIONS(2590), - [anon_sym___cdecl] = ACTIONS(2590), - [anon_sym___clrcall] = ACTIONS(2590), - [anon_sym___stdcall] = ACTIONS(2590), - [anon_sym___fastcall] = ACTIONS(2590), - [anon_sym___thiscall] = ACTIONS(2590), - [anon_sym___vectorcall] = ACTIONS(2590), - [anon_sym_LBRACE] = ACTIONS(2592), - [anon_sym_signed] = ACTIONS(2590), - [anon_sym_unsigned] = ACTIONS(2590), - [anon_sym_long] = ACTIONS(2590), - [anon_sym_short] = ACTIONS(2590), - [anon_sym_LBRACK] = ACTIONS(2590), - [anon_sym_static] = ACTIONS(2590), - [anon_sym_register] = ACTIONS(2590), - [anon_sym_inline] = ACTIONS(2590), - [anon_sym___inline] = ACTIONS(2590), - [anon_sym___inline__] = ACTIONS(2590), - [anon_sym___forceinline] = ACTIONS(2590), - [anon_sym_thread_local] = ACTIONS(2590), - [anon_sym___thread] = ACTIONS(2590), - [anon_sym_const] = ACTIONS(2590), - [anon_sym_constexpr] = ACTIONS(2590), - [anon_sym_volatile] = ACTIONS(2590), - [anon_sym_restrict] = ACTIONS(2590), - [anon_sym___restrict__] = ACTIONS(2590), - [anon_sym__Atomic] = ACTIONS(2590), - [anon_sym__Noreturn] = ACTIONS(2590), - [anon_sym_noreturn] = ACTIONS(2590), - [anon_sym__Nonnull] = ACTIONS(2590), - [anon_sym_mutable] = ACTIONS(2590), - [anon_sym_constinit] = ACTIONS(2590), - [anon_sym_consteval] = ACTIONS(2590), - [anon_sym_alignas] = ACTIONS(2590), - [anon_sym__Alignas] = ACTIONS(2590), - [sym_primitive_type] = ACTIONS(2590), - [anon_sym_enum] = ACTIONS(2590), - [anon_sym_class] = ACTIONS(2590), - [anon_sym_struct] = ACTIONS(2590), - [anon_sym_union] = ACTIONS(2590), - [anon_sym_if] = ACTIONS(2590), - [anon_sym_switch] = ACTIONS(2590), - [anon_sym_case] = ACTIONS(2590), - [anon_sym_default] = ACTIONS(2590), - [anon_sym_while] = ACTIONS(2590), - [anon_sym_do] = ACTIONS(2590), - [anon_sym_for] = ACTIONS(2590), - [anon_sym_return] = ACTIONS(2590), - [anon_sym_break] = ACTIONS(2590), - [anon_sym_continue] = ACTIONS(2590), - [anon_sym_goto] = ACTIONS(2590), - [anon_sym___try] = ACTIONS(2590), - [anon_sym___leave] = ACTIONS(2590), - [anon_sym_not] = ACTIONS(2590), - [anon_sym_compl] = ACTIONS(2590), - [anon_sym_DASH_DASH] = ACTIONS(2592), - [anon_sym_PLUS_PLUS] = ACTIONS(2592), - [anon_sym_sizeof] = ACTIONS(2590), - [anon_sym___alignof__] = ACTIONS(2590), - [anon_sym___alignof] = ACTIONS(2590), - [anon_sym__alignof] = ACTIONS(2590), - [anon_sym_alignof] = ACTIONS(2590), - [anon_sym__Alignof] = ACTIONS(2590), - [anon_sym_offsetof] = ACTIONS(2590), - [anon_sym__Generic] = ACTIONS(2590), - [anon_sym_asm] = ACTIONS(2590), - [anon_sym___asm__] = ACTIONS(2590), - [anon_sym___asm] = ACTIONS(2590), - [sym_number_literal] = ACTIONS(2592), - [anon_sym_L_SQUOTE] = ACTIONS(2592), - [anon_sym_u_SQUOTE] = ACTIONS(2592), - [anon_sym_U_SQUOTE] = ACTIONS(2592), - [anon_sym_u8_SQUOTE] = ACTIONS(2592), - [anon_sym_SQUOTE] = ACTIONS(2592), - [anon_sym_L_DQUOTE] = ACTIONS(2592), - [anon_sym_u_DQUOTE] = ACTIONS(2592), - [anon_sym_U_DQUOTE] = ACTIONS(2592), - [anon_sym_u8_DQUOTE] = ACTIONS(2592), - [anon_sym_DQUOTE] = ACTIONS(2592), - [sym_true] = ACTIONS(2590), - [sym_false] = ACTIONS(2590), - [anon_sym_NULL] = ACTIONS(2590), - [anon_sym_nullptr] = ACTIONS(2590), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2590), - [anon_sym_decltype] = ACTIONS(2590), - [anon_sym_explicit] = ACTIONS(2590), - [anon_sym_typename] = ACTIONS(2590), - [anon_sym_template] = ACTIONS(2590), - [anon_sym_operator] = ACTIONS(2590), - [anon_sym_try] = ACTIONS(2590), - [anon_sym_delete] = ACTIONS(2590), - [anon_sym_throw] = ACTIONS(2590), - [anon_sym_namespace] = ACTIONS(2590), - [anon_sym_static_assert] = ACTIONS(2590), - [anon_sym_concept] = ACTIONS(2590), - [anon_sym_co_return] = ACTIONS(2590), - [anon_sym_co_yield] = ACTIONS(2590), - [anon_sym_catch] = ACTIONS(3087), - [anon_sym_R_DQUOTE] = ACTIONS(2592), - [anon_sym_LR_DQUOTE] = ACTIONS(2592), - [anon_sym_uR_DQUOTE] = ACTIONS(2592), - [anon_sym_UR_DQUOTE] = ACTIONS(2592), - [anon_sym_u8R_DQUOTE] = ACTIONS(2592), - [anon_sym_co_await] = ACTIONS(2590), - [anon_sym_new] = ACTIONS(2590), - [anon_sym_requires] = ACTIONS(2590), - [sym_this] = ACTIONS(2590), + [sym_identifier] = ACTIONS(3321), + [aux_sym_preproc_include_token1] = ACTIONS(3321), + [aux_sym_preproc_def_token1] = ACTIONS(3321), + [aux_sym_preproc_if_token1] = ACTIONS(3321), + [aux_sym_preproc_if_token2] = ACTIONS(3321), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3321), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3321), + [aux_sym_preproc_else_token1] = ACTIONS(3321), + [aux_sym_preproc_elif_token1] = ACTIONS(3321), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3321), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3321), + [sym_preproc_directive] = ACTIONS(3321), + [anon_sym_LPAREN2] = ACTIONS(3324), + [anon_sym_BANG] = ACTIONS(3324), + [anon_sym_TILDE] = ACTIONS(3324), + [anon_sym_DASH] = ACTIONS(3321), + [anon_sym_PLUS] = ACTIONS(3321), + [anon_sym_STAR] = ACTIONS(3324), + [anon_sym_AMP_AMP] = ACTIONS(3324), + [anon_sym_AMP] = ACTIONS(3321), + [anon_sym_SEMI] = ACTIONS(3324), + [anon_sym___extension__] = ACTIONS(3321), + [anon_sym_typedef] = ACTIONS(3321), + [anon_sym_virtual] = ACTIONS(3321), + [anon_sym_extern] = ACTIONS(3321), + [anon_sym___attribute__] = ACTIONS(3321), + [anon_sym___attribute] = ACTIONS(3321), + [anon_sym_using] = ACTIONS(3321), + [anon_sym_COLON_COLON] = ACTIONS(3324), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3324), + [anon_sym___declspec] = ACTIONS(3321), + [anon_sym___based] = ACTIONS(3321), + [anon_sym___cdecl] = ACTIONS(3321), + [anon_sym___clrcall] = ACTIONS(3321), + [anon_sym___stdcall] = ACTIONS(3321), + [anon_sym___fastcall] = ACTIONS(3321), + [anon_sym___thiscall] = ACTIONS(3321), + [anon_sym___vectorcall] = ACTIONS(3321), + [anon_sym_LBRACE] = ACTIONS(3324), + [anon_sym_signed] = ACTIONS(3321), + [anon_sym_unsigned] = ACTIONS(3321), + [anon_sym_long] = ACTIONS(3321), + [anon_sym_short] = ACTIONS(3321), + [anon_sym_LBRACK] = ACTIONS(3321), + [anon_sym_static] = ACTIONS(3321), + [anon_sym_register] = ACTIONS(3321), + [anon_sym_inline] = ACTIONS(3321), + [anon_sym___inline] = ACTIONS(3321), + [anon_sym___inline__] = ACTIONS(3321), + [anon_sym___forceinline] = ACTIONS(3321), + [anon_sym_thread_local] = ACTIONS(3321), + [anon_sym___thread] = ACTIONS(3321), + [anon_sym_const] = ACTIONS(3321), + [anon_sym_constexpr] = ACTIONS(3321), + [anon_sym_volatile] = ACTIONS(3321), + [anon_sym_restrict] = ACTIONS(3321), + [anon_sym___restrict__] = ACTIONS(3321), + [anon_sym__Atomic] = ACTIONS(3321), + [anon_sym__Noreturn] = ACTIONS(3321), + [anon_sym_noreturn] = ACTIONS(3321), + [anon_sym__Nonnull] = ACTIONS(3321), + [anon_sym_mutable] = ACTIONS(3321), + [anon_sym_constinit] = ACTIONS(3321), + [anon_sym_consteval] = ACTIONS(3321), + [anon_sym_alignas] = ACTIONS(3321), + [anon_sym__Alignas] = ACTIONS(3321), + [sym_primitive_type] = ACTIONS(3321), + [anon_sym_enum] = ACTIONS(3321), + [anon_sym_class] = ACTIONS(3321), + [anon_sym_struct] = ACTIONS(3321), + [anon_sym_union] = ACTIONS(3321), + [anon_sym_if] = ACTIONS(3321), + [anon_sym_switch] = ACTIONS(3321), + [anon_sym_case] = ACTIONS(3321), + [anon_sym_default] = ACTIONS(3321), + [anon_sym_while] = ACTIONS(3321), + [anon_sym_do] = ACTIONS(3321), + [anon_sym_for] = ACTIONS(3321), + [anon_sym_return] = ACTIONS(3321), + [anon_sym_break] = ACTIONS(3321), + [anon_sym_continue] = ACTIONS(3321), + [anon_sym_goto] = ACTIONS(3321), + [anon_sym___try] = ACTIONS(3321), + [anon_sym___leave] = ACTIONS(3321), + [anon_sym_not] = ACTIONS(3321), + [anon_sym_compl] = ACTIONS(3321), + [anon_sym_DASH_DASH] = ACTIONS(3324), + [anon_sym_PLUS_PLUS] = ACTIONS(3324), + [anon_sym_sizeof] = ACTIONS(3321), + [anon_sym___alignof__] = ACTIONS(3321), + [anon_sym___alignof] = ACTIONS(3321), + [anon_sym__alignof] = ACTIONS(3321), + [anon_sym_alignof] = ACTIONS(3321), + [anon_sym__Alignof] = ACTIONS(3321), + [anon_sym_offsetof] = ACTIONS(3321), + [anon_sym__Generic] = ACTIONS(3321), + [anon_sym_asm] = ACTIONS(3321), + [anon_sym___asm__] = ACTIONS(3321), + [anon_sym___asm] = ACTIONS(3321), + [sym_number_literal] = ACTIONS(3324), + [anon_sym_L_SQUOTE] = ACTIONS(3324), + [anon_sym_u_SQUOTE] = ACTIONS(3324), + [anon_sym_U_SQUOTE] = ACTIONS(3324), + [anon_sym_u8_SQUOTE] = ACTIONS(3324), + [anon_sym_SQUOTE] = ACTIONS(3324), + [anon_sym_L_DQUOTE] = ACTIONS(3324), + [anon_sym_u_DQUOTE] = ACTIONS(3324), + [anon_sym_U_DQUOTE] = ACTIONS(3324), + [anon_sym_u8_DQUOTE] = ACTIONS(3324), + [anon_sym_DQUOTE] = ACTIONS(3324), + [sym_true] = ACTIONS(3321), + [sym_false] = ACTIONS(3321), + [anon_sym_NULL] = ACTIONS(3321), + [anon_sym_nullptr] = ACTIONS(3321), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3321), + [anon_sym_decltype] = ACTIONS(3321), + [anon_sym_explicit] = ACTIONS(3321), + [anon_sym_typename] = ACTIONS(3321), + [anon_sym_template] = ACTIONS(3321), + [anon_sym_operator] = ACTIONS(3321), + [anon_sym_try] = ACTIONS(3321), + [anon_sym_delete] = ACTIONS(3321), + [anon_sym_throw] = ACTIONS(3321), + [anon_sym_namespace] = ACTIONS(3321), + [anon_sym_static_assert] = ACTIONS(3321), + [anon_sym_concept] = ACTIONS(3321), + [anon_sym_co_return] = ACTIONS(3321), + [anon_sym_co_yield] = ACTIONS(3321), + [anon_sym_R_DQUOTE] = ACTIONS(3324), + [anon_sym_LR_DQUOTE] = ACTIONS(3324), + [anon_sym_uR_DQUOTE] = ACTIONS(3324), + [anon_sym_UR_DQUOTE] = ACTIONS(3324), + [anon_sym_u8R_DQUOTE] = ACTIONS(3324), + [anon_sym_co_await] = ACTIONS(3321), + [anon_sym_new] = ACTIONS(3321), + [anon_sym_requires] = ACTIONS(3321), + [sym_this] = ACTIONS(3321), }, [440] = { - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_unaligned_ptr_modifier] = STATE(4043), - [sym_ms_pointer_modifier] = STATE(2954), - [sym__declarator] = STATE(6493), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(5998), - [sym_array_declarator] = STATE(5998), - [sym_type_qualifier] = STATE(3928), - [sym_alignas_qualifier] = STATE(4289), - [sym_expression] = STATE(3197), - [sym__string] = STATE(3235), - [sym_conditional_expression] = STATE(3373), - [sym_assignment_expression] = STATE(3373), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3373), - [sym_binary_expression] = STATE(3373), - [sym_update_expression] = STATE(3373), - [sym_cast_expression] = STATE(3373), - [sym_sizeof_expression] = STATE(3373), - [sym_alignof_expression] = STATE(3373), - [sym_offsetof_expression] = STATE(3373), - [sym_generic_expression] = STATE(3373), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3373), - [sym_extension_expression] = STATE(3373), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3373), - [sym_parenthesized_expression] = STATE(3365), - [sym_char_literal] = STATE(3235), - [sym_concatenated_string] = STATE(3235), - [sym_string_literal] = STATE(2358), - [sym_null] = STATE(3373), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7814), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3233), - [sym_raw_string_literal] = STATE(2358), - [sym_co_await_expression] = STATE(3373), - [sym_new_expression] = STATE(3373), - [sym_delete_expression] = STATE(3373), - [sym_requires_clause] = STATE(3373), - [sym_requires_expression] = STATE(3373), - [sym_lambda_expression] = STATE(3373), - [sym_lambda_capture_specifier] = STATE(5414), - [sym_fold_expression] = STATE(3373), - [sym_parameter_pack_expansion] = STATE(3373), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5659), - [sym_qualified_identifier] = STATE(3292), - [sym_qualified_type_identifier] = STATE(7814), - [sym_operator_name] = STATE(5998), - [sym_user_defined_literal] = STATE(3365), - [aux_sym__type_definition_type_repeat1] = STATE(3928), - [aux_sym_pointer_declarator_repeat1] = STATE(2954), - [sym_identifier] = ACTIONS(3323), - [anon_sym_LPAREN2] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1800), + [ts_builtin_sym_end] = ACTIONS(2701), + [sym_identifier] = ACTIONS(2699), + [aux_sym_preproc_include_token1] = ACTIONS(2699), + [aux_sym_preproc_def_token1] = ACTIONS(2699), + [aux_sym_preproc_if_token1] = ACTIONS(2699), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2699), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2699), + [sym_preproc_directive] = ACTIONS(2699), + [anon_sym_LPAREN2] = ACTIONS(2701), + [anon_sym_BANG] = ACTIONS(2701), + [anon_sym_TILDE] = ACTIONS(2701), + [anon_sym_DASH] = ACTIONS(2699), + [anon_sym_PLUS] = ACTIONS(2699), + [anon_sym_STAR] = ACTIONS(2701), + [anon_sym_AMP_AMP] = ACTIONS(2701), + [anon_sym_AMP] = ACTIONS(2699), + [anon_sym_SEMI] = ACTIONS(2701), + [anon_sym___extension__] = ACTIONS(2699), + [anon_sym_typedef] = ACTIONS(2699), + [anon_sym_virtual] = ACTIONS(2699), + [anon_sym_extern] = ACTIONS(2699), + [anon_sym___attribute__] = ACTIONS(2699), + [anon_sym___attribute] = ACTIONS(2699), + [anon_sym_using] = ACTIONS(2699), + [anon_sym_COLON_COLON] = ACTIONS(2701), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2701), + [anon_sym___declspec] = ACTIONS(2699), + [anon_sym___based] = ACTIONS(2699), + [anon_sym___cdecl] = ACTIONS(2699), + [anon_sym___clrcall] = ACTIONS(2699), + [anon_sym___stdcall] = ACTIONS(2699), + [anon_sym___fastcall] = ACTIONS(2699), + [anon_sym___thiscall] = ACTIONS(2699), + [anon_sym___vectorcall] = ACTIONS(2699), + [anon_sym_LBRACE] = ACTIONS(2701), + [anon_sym_signed] = ACTIONS(2699), + [anon_sym_unsigned] = ACTIONS(2699), + [anon_sym_long] = ACTIONS(2699), + [anon_sym_short] = ACTIONS(2699), + [anon_sym_LBRACK] = ACTIONS(2699), + [anon_sym_static] = ACTIONS(2699), + [anon_sym_register] = ACTIONS(2699), + [anon_sym_inline] = ACTIONS(2699), + [anon_sym___inline] = ACTIONS(2699), + [anon_sym___inline__] = ACTIONS(2699), + [anon_sym___forceinline] = ACTIONS(2699), + [anon_sym_thread_local] = ACTIONS(2699), + [anon_sym___thread] = ACTIONS(2699), + [anon_sym_const] = ACTIONS(2699), + [anon_sym_constexpr] = ACTIONS(2699), + [anon_sym_volatile] = ACTIONS(2699), + [anon_sym_restrict] = ACTIONS(2699), + [anon_sym___restrict__] = ACTIONS(2699), + [anon_sym__Atomic] = ACTIONS(2699), + [anon_sym__Noreturn] = ACTIONS(2699), + [anon_sym_noreturn] = ACTIONS(2699), + [anon_sym__Nonnull] = ACTIONS(2699), + [anon_sym_mutable] = ACTIONS(2699), + [anon_sym_constinit] = ACTIONS(2699), + [anon_sym_consteval] = ACTIONS(2699), + [anon_sym_alignas] = ACTIONS(2699), + [anon_sym__Alignas] = ACTIONS(2699), + [sym_primitive_type] = ACTIONS(2699), + [anon_sym_enum] = ACTIONS(2699), + [anon_sym_class] = ACTIONS(2699), + [anon_sym_struct] = ACTIONS(2699), + [anon_sym_union] = ACTIONS(2699), + [anon_sym_if] = ACTIONS(2699), + [anon_sym_else] = ACTIONS(2699), + [anon_sym_switch] = ACTIONS(2699), + [anon_sym_case] = ACTIONS(2699), + [anon_sym_default] = ACTIONS(2699), + [anon_sym_while] = ACTIONS(2699), + [anon_sym_do] = ACTIONS(2699), + [anon_sym_for] = ACTIONS(2699), + [anon_sym_return] = ACTIONS(2699), + [anon_sym_break] = ACTIONS(2699), + [anon_sym_continue] = ACTIONS(2699), + [anon_sym_goto] = ACTIONS(2699), + [anon_sym___try] = ACTIONS(2699), + [anon_sym___leave] = ACTIONS(2699), + [anon_sym_not] = ACTIONS(2699), + [anon_sym_compl] = ACTIONS(2699), + [anon_sym_DASH_DASH] = ACTIONS(2701), + [anon_sym_PLUS_PLUS] = ACTIONS(2701), + [anon_sym_sizeof] = ACTIONS(2699), + [anon_sym___alignof__] = ACTIONS(2699), + [anon_sym___alignof] = ACTIONS(2699), + [anon_sym__alignof] = ACTIONS(2699), + [anon_sym_alignof] = ACTIONS(2699), + [anon_sym__Alignof] = ACTIONS(2699), + [anon_sym_offsetof] = ACTIONS(2699), + [anon_sym__Generic] = ACTIONS(2699), + [anon_sym_asm] = ACTIONS(2699), + [anon_sym___asm__] = ACTIONS(2699), + [anon_sym___asm] = ACTIONS(2699), + [sym_number_literal] = ACTIONS(2701), + [anon_sym_L_SQUOTE] = ACTIONS(2701), + [anon_sym_u_SQUOTE] = ACTIONS(2701), + [anon_sym_U_SQUOTE] = ACTIONS(2701), + [anon_sym_u8_SQUOTE] = ACTIONS(2701), + [anon_sym_SQUOTE] = ACTIONS(2701), + [anon_sym_L_DQUOTE] = ACTIONS(2701), + [anon_sym_u_DQUOTE] = ACTIONS(2701), + [anon_sym_U_DQUOTE] = ACTIONS(2701), + [anon_sym_u8_DQUOTE] = ACTIONS(2701), + [anon_sym_DQUOTE] = ACTIONS(2701), + [sym_true] = ACTIONS(2699), + [sym_false] = ACTIONS(2699), + [anon_sym_NULL] = ACTIONS(2699), + [anon_sym_nullptr] = ACTIONS(2699), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2699), + [anon_sym_decltype] = ACTIONS(2699), + [anon_sym_explicit] = ACTIONS(2699), + [anon_sym_typename] = ACTIONS(2699), + [anon_sym_export] = ACTIONS(2699), + [anon_sym_module] = ACTIONS(2699), + [anon_sym_import] = ACTIONS(2699), + [anon_sym_template] = ACTIONS(2699), + [anon_sym_operator] = ACTIONS(2699), + [anon_sym_try] = ACTIONS(2699), + [anon_sym_delete] = ACTIONS(2699), + [anon_sym_throw] = ACTIONS(2699), + [anon_sym_namespace] = ACTIONS(2699), + [anon_sym_static_assert] = ACTIONS(2699), + [anon_sym_concept] = ACTIONS(2699), + [anon_sym_co_return] = ACTIONS(2699), + [anon_sym_co_yield] = ACTIONS(2699), + [anon_sym_R_DQUOTE] = ACTIONS(2701), + [anon_sym_LR_DQUOTE] = ACTIONS(2701), + [anon_sym_uR_DQUOTE] = ACTIONS(2701), + [anon_sym_UR_DQUOTE] = ACTIONS(2701), + [anon_sym_u8R_DQUOTE] = ACTIONS(2701), + [anon_sym_co_await] = ACTIONS(2699), + [anon_sym_new] = ACTIONS(2699), + [anon_sym_requires] = ACTIONS(2699), + [sym_this] = ACTIONS(2699), + }, + [441] = { + [sym_preproc_def] = STATE(383), + [sym_preproc_function_def] = STATE(383), + [sym_preproc_call] = STATE(383), + [sym_preproc_if_in_field_declaration_list] = STATE(383), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(383), + [sym_preproc_else_in_field_declaration_list] = STATE(8265), + [sym_preproc_elif_in_field_declaration_list] = STATE(8265), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(8265), + [sym_type_definition] = STATE(383), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(5688), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(3133), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6303), + [sym_array_declarator] = STATE(6145), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym__field_declaration_list_item] = STATE(383), + [sym_field_declaration] = STATE(383), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym_explicit_function_specifier] = STATE(1845), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(383), + [sym_operator_cast] = STATE(6890), + [sym_inline_method_definition] = STATE(383), + [sym__constructor_specifiers] = STATE(1845), + [sym_operator_cast_definition] = STATE(383), + [sym_operator_cast_declaration] = STATE(383), + [sym_constructor_or_destructor_definition] = STATE(383), + [sym_constructor_or_destructor_declaration] = STATE(383), + [sym_friend_declaration] = STATE(383), + [sym_access_specifier] = STATE(8331), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(2439), + [sym_template_function] = STATE(6145), + [sym_using_declaration] = STATE(383), + [sym_alias_declaration] = STATE(383), + [sym_static_assert_declaration] = STATE(383), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5557), + [sym_qualified_identifier] = STATE(6145), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6890), + [sym_operator_name] = STATE(6145), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(383), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_attributed_declarator_repeat1] = STATE(7195), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1845), + [sym_identifier] = ACTIONS(2979), + [aux_sym_preproc_def_token1] = ACTIONS(2981), + [aux_sym_preproc_if_token1] = ACTIONS(2983), + [aux_sym_preproc_if_token2] = ACTIONS(3327), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2987), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2987), + [aux_sym_preproc_else_token1] = ACTIONS(2989), + [aux_sym_preproc_elif_token1] = ACTIONS(2991), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2993), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2993), + [sym_preproc_directive] = ACTIONS(2995), + [anon_sym_LPAREN2] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(3001), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1802), - [anon_sym___extension__] = ACTIONS(3325), - [anon_sym_COLON_COLON] = ACTIONS(1806), + [anon_sym_AMP] = ACTIONS(3003), + [anon_sym_SEMI] = ACTIONS(3329), + [anon_sym___extension__] = ACTIONS(3007), + [anon_sym_typedef] = ACTIONS(3009), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(3011), + [anon_sym_COLON_COLON] = ACTIONS(3013), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), + [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), - [sym_ms_restrict_modifier] = ACTIONS(3327), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(3327), - [sym_ms_signed_ptr_modifier] = ACTIONS(3327), - [anon_sym__unaligned] = ACTIONS(3329), - [anon_sym___unaligned] = ACTIONS(3329), - [anon_sym_LBRACK] = ACTIONS(1812), - [anon_sym_const] = ACTIONS(3331), - [anon_sym_constexpr] = ACTIONS(3331), - [anon_sym_volatile] = ACTIONS(3331), - [anon_sym_restrict] = ACTIONS(3331), - [anon_sym___restrict__] = ACTIONS(3331), - [anon_sym__Atomic] = ACTIONS(3331), - [anon_sym__Noreturn] = ACTIONS(3331), - [anon_sym_noreturn] = ACTIONS(3331), - [anon_sym__Nonnull] = ACTIONS(3331), - [anon_sym_mutable] = ACTIONS(3331), - [anon_sym_constinit] = ACTIONS(3331), - [anon_sym_consteval] = ACTIONS(3331), - [anon_sym_alignas] = ACTIONS(3333), - [anon_sym__Alignas] = ACTIONS(3333), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3015), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(3017), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(69), + [anon_sym__Alignas] = ACTIONS(69), + [sym_primitive_type] = ACTIONS(3019), + [anon_sym_enum] = ACTIONS(3021), + [anon_sym_class] = ACTIONS(3023), + [anon_sym_struct] = ACTIONS(3025), + [anon_sym_union] = ACTIONS(3027), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_operator] = ACTIONS(1852), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), + [sym_auto] = ACTIONS(125), + [anon_sym_decltype] = ACTIONS(127), + [anon_sym_explicit] = ACTIONS(129), + [anon_sym_typename] = ACTIONS(3029), + [anon_sym_private] = ACTIONS(3031), + [anon_sym_template] = ACTIONS(3033), + [anon_sym_operator] = ACTIONS(141), + [anon_sym_friend] = ACTIONS(3035), + [anon_sym_public] = ACTIONS(3031), + [anon_sym_protected] = ACTIONS(3031), + [anon_sym_static_assert] = ACTIONS(3037), }, - [441] = { - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_unaligned_ptr_modifier] = STATE(4043), - [sym_ms_pointer_modifier] = STATE(2954), - [sym__declarator] = STATE(6493), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(5998), - [sym_array_declarator] = STATE(5998), - [sym_type_qualifier] = STATE(3928), - [sym_alignas_qualifier] = STATE(4289), - [sym_expression] = STATE(2398), - [sym__string] = STATE(2950), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(2950), - [sym_concatenated_string] = STATE(2950), - [sym_string_literal] = STATE(2034), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3243), - [sym_raw_string_literal] = STATE(2034), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5654), - [sym_qualified_identifier] = STATE(3252), - [sym_qualified_type_identifier] = STATE(7743), - [sym_operator_name] = STATE(5998), - [sym_user_defined_literal] = STATE(2480), - [aux_sym__type_definition_type_repeat1] = STATE(3928), - [aux_sym_pointer_declarator_repeat1] = STATE(2954), - [sym_identifier] = ACTIONS(3335), - [anon_sym_LPAREN2] = ACTIONS(3337), - [anon_sym_BANG] = ACTIONS(1994), - [anon_sym_TILDE] = ACTIONS(3339), - [anon_sym_DASH] = ACTIONS(1992), - [anon_sym_PLUS] = ACTIONS(1992), - [anon_sym_STAR] = ACTIONS(27), + [442] = { + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_unaligned_ptr_modifier] = STATE(4069), + [sym_ms_pointer_modifier] = STATE(2958), + [sym__declarator] = STATE(6623), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6145), + [sym_array_declarator] = STATE(6145), + [sym_type_qualifier] = STATE(4022), + [sym_alignas_qualifier] = STATE(4325), + [sym_expression] = STATE(3226), + [sym__string] = STATE(3393), + [sym_conditional_expression] = STATE(3401), + [sym_assignment_expression] = STATE(3401), + [sym_pointer_expression] = STATE(3405), + [sym_unary_expression] = STATE(3401), + [sym_binary_expression] = STATE(3401), + [sym_update_expression] = STATE(3401), + [sym_cast_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3401), + [sym_alignof_expression] = STATE(3401), + [sym_offsetof_expression] = STATE(3401), + [sym_generic_expression] = STATE(3401), + [sym_subscript_expression] = STATE(3405), + [sym_call_expression] = STATE(3405), + [sym_gnu_asm_expression] = STATE(3401), + [sym_extension_expression] = STATE(3401), + [sym_field_expression] = STATE(3405), + [sym_compound_literal_expression] = STATE(3401), + [sym_parenthesized_expression] = STATE(3405), + [sym_char_literal] = STATE(3393), + [sym_concatenated_string] = STATE(3393), + [sym_string_literal] = STATE(2380), + [sym_null] = STATE(3401), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7745), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3319), + [sym_raw_string_literal] = STATE(2380), + [sym_co_await_expression] = STATE(3401), + [sym_new_expression] = STATE(3401), + [sym_delete_expression] = STATE(3401), + [sym_requires_clause] = STATE(3401), + [sym_requires_expression] = STATE(3401), + [sym_lambda_expression] = STATE(3401), + [sym_lambda_capture_specifier] = STATE(5494), + [sym_fold_expression] = STATE(3401), + [sym_parameter_pack_expansion] = STATE(3401), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5869), + [sym_qualified_identifier] = STATE(3389), + [sym_qualified_type_identifier] = STATE(7745), + [sym_operator_name] = STATE(6145), + [sym_user_defined_literal] = STATE(3405), + [aux_sym__type_definition_type_repeat1] = STATE(4022), + [aux_sym_pointer_declarator_repeat1] = STATE(2958), + [sym_identifier] = ACTIONS(3331), + [anon_sym_LPAREN2] = ACTIONS(1790), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1794), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1798), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym___extension__] = ACTIONS(3341), - [anon_sym_COLON_COLON] = ACTIONS(1998), + [anon_sym_AMP] = ACTIONS(1800), + [anon_sym___extension__] = ACTIONS(3333), + [anon_sym_COLON_COLON] = ACTIONS(1804), [anon_sym___based] = ACTIONS(53), - [sym_ms_restrict_modifier] = ACTIONS(3327), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(3327), - [sym_ms_signed_ptr_modifier] = ACTIONS(3327), - [anon_sym__unaligned] = ACTIONS(3329), - [anon_sym___unaligned] = ACTIONS(3329), - [anon_sym_LBRACK] = ACTIONS(1812), - [anon_sym_const] = ACTIONS(3331), - [anon_sym_constexpr] = ACTIONS(3331), - [anon_sym_volatile] = ACTIONS(3331), - [anon_sym_restrict] = ACTIONS(3331), - [anon_sym___restrict__] = ACTIONS(3331), - [anon_sym__Atomic] = ACTIONS(3331), - [anon_sym__Noreturn] = ACTIONS(3331), - [anon_sym_noreturn] = ACTIONS(3331), - [anon_sym__Nonnull] = ACTIONS(3331), - [anon_sym_mutable] = ACTIONS(3331), - [anon_sym_constinit] = ACTIONS(3331), - [anon_sym_consteval] = ACTIONS(3331), - [anon_sym_alignas] = ACTIONS(3333), - [anon_sym__Alignas] = ACTIONS(3333), - [sym_primitive_type] = ACTIONS(1956), - [anon_sym_not] = ACTIONS(1992), - [anon_sym_compl] = ACTIONS(1992), - [anon_sym_DASH_DASH] = ACTIONS(3343), - [anon_sym_PLUS_PLUS] = ACTIONS(3343), - [anon_sym_sizeof] = ACTIONS(2000), - [anon_sym___alignof__] = ACTIONS(1960), - [anon_sym___alignof] = ACTIONS(1960), - [anon_sym__alignof] = ACTIONS(1960), - [anon_sym_alignof] = ACTIONS(1960), - [anon_sym__Alignof] = ACTIONS(1960), - [anon_sym_offsetof] = ACTIONS(1962), - [anon_sym__Generic] = ACTIONS(1964), - [anon_sym_asm] = ACTIONS(1966), - [anon_sym___asm__] = ACTIONS(1966), - [anon_sym___asm] = ACTIONS(1966), - [sym_number_literal] = ACTIONS(2002), - [anon_sym_L_SQUOTE] = ACTIONS(2004), - [anon_sym_u_SQUOTE] = ACTIONS(2004), - [anon_sym_U_SQUOTE] = ACTIONS(2004), - [anon_sym_u8_SQUOTE] = ACTIONS(2004), - [anon_sym_SQUOTE] = ACTIONS(2004), - [anon_sym_L_DQUOTE] = ACTIONS(2006), - [anon_sym_u_DQUOTE] = ACTIONS(2006), - [anon_sym_U_DQUOTE] = ACTIONS(2006), - [anon_sym_u8_DQUOTE] = ACTIONS(2006), - [anon_sym_DQUOTE] = ACTIONS(2006), - [sym_true] = ACTIONS(1974), - [sym_false] = ACTIONS(1974), - [anon_sym_NULL] = ACTIONS(1976), - [anon_sym_nullptr] = ACTIONS(1976), + [sym_ms_restrict_modifier] = ACTIONS(3335), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(3335), + [sym_ms_signed_ptr_modifier] = ACTIONS(3335), + [anon_sym__unaligned] = ACTIONS(3337), + [anon_sym___unaligned] = ACTIONS(3337), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_const] = ACTIONS(3339), + [anon_sym_constexpr] = ACTIONS(3339), + [anon_sym_volatile] = ACTIONS(3339), + [anon_sym_restrict] = ACTIONS(3339), + [anon_sym___restrict__] = ACTIONS(3339), + [anon_sym__Atomic] = ACTIONS(3339), + [anon_sym__Noreturn] = ACTIONS(3339), + [anon_sym_noreturn] = ACTIONS(3339), + [anon_sym__Nonnull] = ACTIONS(3339), + [anon_sym_mutable] = ACTIONS(3339), + [anon_sym_constinit] = ACTIONS(3339), + [anon_sym_consteval] = ACTIONS(3339), + [anon_sym_alignas] = ACTIONS(3341), + [anon_sym__Alignas] = ACTIONS(3341), + [sym_primitive_type] = ACTIONS(2459), + [anon_sym_not] = ACTIONS(1796), + [anon_sym_compl] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_sizeof] = ACTIONS(1824), + [anon_sym___alignof__] = ACTIONS(1826), + [anon_sym___alignof] = ACTIONS(1826), + [anon_sym__alignof] = ACTIONS(1826), + [anon_sym_alignof] = ACTIONS(1826), + [anon_sym__Alignof] = ACTIONS(1826), + [anon_sym_offsetof] = ACTIONS(1828), + [anon_sym__Generic] = ACTIONS(1830), + [anon_sym_asm] = ACTIONS(1832), + [anon_sym___asm__] = ACTIONS(1832), + [anon_sym___asm] = ACTIONS(1832), + [sym_number_literal] = ACTIONS(1834), + [anon_sym_L_SQUOTE] = ACTIONS(1836), + [anon_sym_u_SQUOTE] = ACTIONS(1836), + [anon_sym_U_SQUOTE] = ACTIONS(1836), + [anon_sym_u8_SQUOTE] = ACTIONS(1836), + [anon_sym_SQUOTE] = ACTIONS(1836), + [anon_sym_L_DQUOTE] = ACTIONS(1838), + [anon_sym_u_DQUOTE] = ACTIONS(1838), + [anon_sym_U_DQUOTE] = ACTIONS(1838), + [anon_sym_u8_DQUOTE] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym_true] = ACTIONS(1840), + [sym_false] = ACTIONS(1840), + [anon_sym_NULL] = ACTIONS(1842), + [anon_sym_nullptr] = ACTIONS(1842), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_operator] = ACTIONS(1852), - [anon_sym_delete] = ACTIONS(2008), - [anon_sym_R_DQUOTE] = ACTIONS(2010), - [anon_sym_LR_DQUOTE] = ACTIONS(2010), - [anon_sym_uR_DQUOTE] = ACTIONS(2010), - [anon_sym_UR_DQUOTE] = ACTIONS(2010), - [anon_sym_u8R_DQUOTE] = ACTIONS(2010), - [anon_sym_co_await] = ACTIONS(2012), - [anon_sym_new] = ACTIONS(2014), - [anon_sym_requires] = ACTIONS(1988), - [sym_this] = ACTIONS(1974), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_operator] = ACTIONS(1850), + [anon_sym_delete] = ACTIONS(1852), + [anon_sym_R_DQUOTE] = ACTIONS(1854), + [anon_sym_LR_DQUOTE] = ACTIONS(1854), + [anon_sym_uR_DQUOTE] = ACTIONS(1854), + [anon_sym_UR_DQUOTE] = ACTIONS(1854), + [anon_sym_u8R_DQUOTE] = ACTIONS(1854), + [anon_sym_co_await] = ACTIONS(1856), + [anon_sym_new] = ACTIONS(1858), + [anon_sym_requires] = ACTIONS(1860), + [sym_this] = ACTIONS(1840), }, - [442] = { + [443] = { [ts_builtin_sym_end] = ACTIONS(1938), [sym_identifier] = ACTIONS(1940), [aux_sym_preproc_include_token1] = ACTIONS(1940), [aux_sym_preproc_def_token1] = ACTIONS(1940), - [anon_sym_COMMA] = ACTIONS(2685), - [anon_sym_RPAREN] = ACTIONS(2685), + [anon_sym_COMMA] = ACTIONS(2729), + [anon_sym_RPAREN] = ACTIONS(2729), [aux_sym_preproc_if_token1] = ACTIONS(1940), [aux_sym_preproc_ifdef_token1] = ACTIONS(1940), [aux_sym_preproc_ifdef_token2] = ACTIONS(1940), @@ -106957,7 +107391,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1938), [anon_sym_AMP_AMP] = ACTIONS(1938), [anon_sym_AMP] = ACTIONS(1940), - [anon_sym_SEMI] = ACTIONS(2685), + [anon_sym_SEMI] = ACTIONS(2729), [anon_sym___extension__] = ACTIONS(1940), [anon_sym_typedef] = ACTIONS(1940), [anon_sym_virtual] = ACTIONS(1940), @@ -107077,238 +107511,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1940), [sym_this] = ACTIONS(1940), }, - [443] = { - [sym_type_qualifier] = STATE(3910), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(4737), - [sym_sized_type_specifier] = STATE(2668), - [sym_enum_specifier] = STATE(2668), - [sym_struct_specifier] = STATE(2668), - [sym_union_specifier] = STATE(2668), - [sym_expression] = STATE(4462), - [sym__string] = STATE(4738), - [sym_conditional_expression] = STATE(4829), - [sym_assignment_expression] = STATE(4829), - [sym_pointer_expression] = STATE(3602), - [sym_unary_expression] = STATE(4829), - [sym_binary_expression] = STATE(4829), - [sym_update_expression] = STATE(4829), - [sym_cast_expression] = STATE(4829), - [sym_type_descriptor] = STATE(7408), - [sym_sizeof_expression] = STATE(4829), - [sym_alignof_expression] = STATE(4829), - [sym_offsetof_expression] = STATE(4829), - [sym_generic_expression] = STATE(4829), - [sym_subscript_expression] = STATE(3602), - [sym_call_expression] = STATE(3602), - [sym_gnu_asm_expression] = STATE(4829), - [sym_extension_expression] = STATE(4829), - [sym_field_expression] = STATE(3602), - [sym_compound_literal_expression] = STATE(4829), - [sym_parenthesized_expression] = STATE(3602), - [sym_char_literal] = STATE(4738), - [sym_concatenated_string] = STATE(4738), - [sym_string_literal] = STATE(3759), - [sym_null] = STATE(4829), - [sym_placeholder_type_specifier] = STATE(2668), - [sym_decltype_auto] = STATE(2708), - [sym_decltype] = STATE(2598), - [sym_class_specifier] = STATE(2668), - [sym__class_name] = STATE(7804), - [sym_dependent_type] = STATE(2668), - [sym_template_type] = STATE(5285), - [sym_template_function] = STATE(4829), - [sym_raw_string_literal] = STATE(3759), - [sym_co_await_expression] = STATE(4829), - [sym_new_expression] = STATE(4829), - [sym_delete_expression] = STATE(4829), - [sym_requires_clause] = STATE(4829), - [sym_requires_expression] = STATE(4829), - [sym_lambda_expression] = STATE(4829), - [sym_lambda_capture_specifier] = STATE(5401), - [sym_fold_expression] = STATE(4829), - [sym_parameter_pack_expansion] = STATE(4829), - [sym_type_parameter_pack_expansion] = STATE(7711), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5750), - [sym_qualified_identifier] = STATE(3602), - [sym_qualified_type_identifier] = STATE(5327), - [sym_user_defined_literal] = STATE(3602), - [aux_sym__type_definition_type_repeat1] = STATE(3910), - [aux_sym_sized_type_specifier_repeat1] = STATE(4239), - [sym_identifier] = ACTIONS(3116), - [anon_sym_LPAREN2] = ACTIONS(3118), - [anon_sym_BANG] = ACTIONS(3120), - [anon_sym_TILDE] = ACTIONS(3120), - [anon_sym_DASH] = ACTIONS(3122), - [anon_sym_PLUS] = ACTIONS(3122), - [anon_sym_STAR] = ACTIONS(3124), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym___extension__] = ACTIONS(3126), - [anon_sym_COLON_COLON] = ACTIONS(3128), - [anon_sym_signed] = ACTIONS(3130), - [anon_sym_unsigned] = ACTIONS(3130), - [anon_sym_long] = ACTIONS(3130), - [anon_sym_short] = ACTIONS(3130), - [anon_sym_LBRACK] = ACTIONS(2020), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(3132), - [anon_sym_enum] = ACTIONS(3134), - [anon_sym_class] = ACTIONS(3136), - [anon_sym_struct] = ACTIONS(3138), - [anon_sym_union] = ACTIONS(3140), - [anon_sym_not] = ACTIONS(3122), - [anon_sym_compl] = ACTIONS(3122), - [anon_sym_DASH_DASH] = ACTIONS(3142), - [anon_sym_PLUS_PLUS] = ACTIONS(3142), - [anon_sym_sizeof] = ACTIONS(3144), - [anon_sym___alignof__] = ACTIONS(3146), - [anon_sym___alignof] = ACTIONS(3146), - [anon_sym__alignof] = ACTIONS(3146), - [anon_sym_alignof] = ACTIONS(3146), - [anon_sym__Alignof] = ACTIONS(3146), - [anon_sym_offsetof] = ACTIONS(3148), - [anon_sym__Generic] = ACTIONS(3150), - [anon_sym_asm] = ACTIONS(3152), - [anon_sym___asm__] = ACTIONS(3152), - [anon_sym___asm] = ACTIONS(3152), - [sym_number_literal] = ACTIONS(3154), - [anon_sym_L_SQUOTE] = ACTIONS(3156), - [anon_sym_u_SQUOTE] = ACTIONS(3156), - [anon_sym_U_SQUOTE] = ACTIONS(3156), - [anon_sym_u8_SQUOTE] = ACTIONS(3156), - [anon_sym_SQUOTE] = ACTIONS(3156), - [anon_sym_L_DQUOTE] = ACTIONS(3158), - [anon_sym_u_DQUOTE] = ACTIONS(3158), - [anon_sym_U_DQUOTE] = ACTIONS(3158), - [anon_sym_u8_DQUOTE] = ACTIONS(3158), - [anon_sym_DQUOTE] = ACTIONS(3158), - [sym_true] = ACTIONS(3160), - [sym_false] = ACTIONS(3160), - [anon_sym_NULL] = ACTIONS(3162), - [anon_sym_nullptr] = ACTIONS(3162), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3164), - [anon_sym_decltype] = ACTIONS(3166), - [anon_sym_typename] = ACTIONS(3168), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3172), - [anon_sym_R_DQUOTE] = ACTIONS(3174), - [anon_sym_LR_DQUOTE] = ACTIONS(3174), - [anon_sym_uR_DQUOTE] = ACTIONS(3174), - [anon_sym_UR_DQUOTE] = ACTIONS(3174), - [anon_sym_u8R_DQUOTE] = ACTIONS(3174), - [anon_sym_co_await] = ACTIONS(3176), - [anon_sym_new] = ACTIONS(3178), - [anon_sym_requires] = ACTIONS(3180), - [sym_this] = ACTIONS(3160), - }, [444] = { - [sym_expression] = STATE(4294), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(2551), - [anon_sym_LPAREN2] = ACTIONS(1436), + [sym_expression] = STATE(4345), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(2547), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2568), - [anon_sym_typedef] = ACTIONS(3345), - [anon_sym_virtual] = ACTIONS(2573), - [anon_sym_extern] = ACTIONS(2573), - [anon_sym___attribute__] = ACTIONS(2573), - [anon_sym___attribute] = ACTIONS(2573), - [anon_sym_COLON_COLON] = ACTIONS(2575), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2563), - [anon_sym___declspec] = ACTIONS(2573), - [anon_sym_signed] = ACTIONS(2573), - [anon_sym_unsigned] = ACTIONS(2573), - [anon_sym_long] = ACTIONS(2573), - [anon_sym_short] = ACTIONS(2573), - [anon_sym_LBRACK] = ACTIONS(1450), - [anon_sym_static] = ACTIONS(2573), - [anon_sym_register] = ACTIONS(2573), - [anon_sym_inline] = ACTIONS(2573), - [anon_sym___inline] = ACTIONS(2573), - [anon_sym___inline__] = ACTIONS(2573), - [anon_sym___forceinline] = ACTIONS(2573), - [anon_sym_thread_local] = ACTIONS(2573), - [anon_sym___thread] = ACTIONS(2573), - [anon_sym_const] = ACTIONS(2573), - [anon_sym_constexpr] = ACTIONS(2573), - [anon_sym_volatile] = ACTIONS(2573), - [anon_sym_restrict] = ACTIONS(2573), - [anon_sym___restrict__] = ACTIONS(2573), - [anon_sym__Atomic] = ACTIONS(2573), - [anon_sym__Noreturn] = ACTIONS(2573), - [anon_sym_noreturn] = ACTIONS(2573), - [anon_sym__Nonnull] = ACTIONS(2573), - [anon_sym_mutable] = ACTIONS(2573), - [anon_sym_constinit] = ACTIONS(2573), - [anon_sym_consteval] = ACTIONS(2573), - [anon_sym_alignas] = ACTIONS(2573), - [anon_sym__Alignas] = ACTIONS(2573), - [sym_primitive_type] = ACTIONS(2581), - [anon_sym_enum] = ACTIONS(2573), - [anon_sym_class] = ACTIONS(2573), - [anon_sym_struct] = ACTIONS(2573), - [anon_sym_union] = ACTIONS(2573), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(3343), + [anon_sym_virtual] = ACTIONS(2569), + [anon_sym_extern] = ACTIONS(2569), + [anon_sym___attribute__] = ACTIONS(2569), + [anon_sym___attribute] = ACTIONS(2569), + [anon_sym_COLON_COLON] = ACTIONS(2571), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2559), + [anon_sym___declspec] = ACTIONS(2569), + [anon_sym_signed] = ACTIONS(2569), + [anon_sym_unsigned] = ACTIONS(2569), + [anon_sym_long] = ACTIONS(2569), + [anon_sym_short] = ACTIONS(2569), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_static] = ACTIONS(2569), + [anon_sym_register] = ACTIONS(2569), + [anon_sym_inline] = ACTIONS(2569), + [anon_sym___inline] = ACTIONS(2569), + [anon_sym___inline__] = ACTIONS(2569), + [anon_sym___forceinline] = ACTIONS(2569), + [anon_sym_thread_local] = ACTIONS(2569), + [anon_sym___thread] = ACTIONS(2569), + [anon_sym_const] = ACTIONS(2569), + [anon_sym_constexpr] = ACTIONS(2569), + [anon_sym_volatile] = ACTIONS(2569), + [anon_sym_restrict] = ACTIONS(2569), + [anon_sym___restrict__] = ACTIONS(2569), + [anon_sym__Atomic] = ACTIONS(2569), + [anon_sym__Noreturn] = ACTIONS(2569), + [anon_sym_noreturn] = ACTIONS(2569), + [anon_sym__Nonnull] = ACTIONS(2569), + [anon_sym_mutable] = ACTIONS(2569), + [anon_sym_constinit] = ACTIONS(2569), + [anon_sym_consteval] = ACTIONS(2569), + [anon_sym_alignas] = ACTIONS(2569), + [anon_sym__Alignas] = ACTIONS(2569), + [sym_primitive_type] = ACTIONS(2577), + [anon_sym_enum] = ACTIONS(2569), + [anon_sym_class] = ACTIONS(2569), + [anon_sym_struct] = ACTIONS(2569), + [anon_sym_union] = ACTIONS(2569), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -107340,10 +107635,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(123), [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2573), - [anon_sym_decltype] = ACTIONS(2584), - [anon_sym_typename] = ACTIONS(2573), - [anon_sym_template] = ACTIONS(2587), + [sym_auto] = ACTIONS(2569), + [anon_sym_decltype] = ACTIONS(2580), + [anon_sym_typename] = ACTIONS(2569), + [anon_sym_template] = ACTIONS(2583), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -107356,237 +107651,376 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [445] = { - [sym_catch_clause] = STATE(425), - [aux_sym_constructor_try_statement_repeat1] = STATE(425), - [sym_identifier] = ACTIONS(2547), - [aux_sym_preproc_include_token1] = ACTIONS(2547), - [aux_sym_preproc_def_token1] = ACTIONS(2547), - [aux_sym_preproc_if_token1] = ACTIONS(2547), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2547), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2547), - [sym_preproc_directive] = ACTIONS(2547), - [anon_sym_LPAREN2] = ACTIONS(2549), - [anon_sym_BANG] = ACTIONS(2549), - [anon_sym_TILDE] = ACTIONS(2549), - [anon_sym_DASH] = ACTIONS(2547), - [anon_sym_PLUS] = ACTIONS(2547), - [anon_sym_STAR] = ACTIONS(2549), - [anon_sym_AMP_AMP] = ACTIONS(2549), - [anon_sym_AMP] = ACTIONS(2547), - [anon_sym_SEMI] = ACTIONS(2549), - [anon_sym___extension__] = ACTIONS(2547), - [anon_sym_typedef] = ACTIONS(2547), - [anon_sym_virtual] = ACTIONS(2547), - [anon_sym_extern] = ACTIONS(2547), - [anon_sym___attribute__] = ACTIONS(2547), - [anon_sym___attribute] = ACTIONS(2547), - [anon_sym_using] = ACTIONS(2547), - [anon_sym_COLON_COLON] = ACTIONS(2549), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2549), - [anon_sym___declspec] = ACTIONS(2547), - [anon_sym___based] = ACTIONS(2547), - [anon_sym___cdecl] = ACTIONS(2547), - [anon_sym___clrcall] = ACTIONS(2547), - [anon_sym___stdcall] = ACTIONS(2547), - [anon_sym___fastcall] = ACTIONS(2547), - [anon_sym___thiscall] = ACTIONS(2547), - [anon_sym___vectorcall] = ACTIONS(2547), - [anon_sym_LBRACE] = ACTIONS(2549), - [anon_sym_RBRACE] = ACTIONS(2549), - [anon_sym_signed] = ACTIONS(2547), - [anon_sym_unsigned] = ACTIONS(2547), - [anon_sym_long] = ACTIONS(2547), - [anon_sym_short] = ACTIONS(2547), - [anon_sym_LBRACK] = ACTIONS(2547), - [anon_sym_static] = ACTIONS(2547), - [anon_sym_register] = ACTIONS(2547), - [anon_sym_inline] = ACTIONS(2547), - [anon_sym___inline] = ACTIONS(2547), - [anon_sym___inline__] = ACTIONS(2547), - [anon_sym___forceinline] = ACTIONS(2547), - [anon_sym_thread_local] = ACTIONS(2547), - [anon_sym___thread] = ACTIONS(2547), - [anon_sym_const] = ACTIONS(2547), - [anon_sym_constexpr] = ACTIONS(2547), - [anon_sym_volatile] = ACTIONS(2547), - [anon_sym_restrict] = ACTIONS(2547), - [anon_sym___restrict__] = ACTIONS(2547), - [anon_sym__Atomic] = ACTIONS(2547), - [anon_sym__Noreturn] = ACTIONS(2547), - [anon_sym_noreturn] = ACTIONS(2547), - [anon_sym__Nonnull] = ACTIONS(2547), - [anon_sym_mutable] = ACTIONS(2547), - [anon_sym_constinit] = ACTIONS(2547), - [anon_sym_consteval] = ACTIONS(2547), - [anon_sym_alignas] = ACTIONS(2547), - [anon_sym__Alignas] = ACTIONS(2547), - [sym_primitive_type] = ACTIONS(2547), - [anon_sym_enum] = ACTIONS(2547), - [anon_sym_class] = ACTIONS(2547), - [anon_sym_struct] = ACTIONS(2547), - [anon_sym_union] = ACTIONS(2547), - [anon_sym_if] = ACTIONS(2547), - [anon_sym_switch] = ACTIONS(2547), - [anon_sym_case] = ACTIONS(2547), - [anon_sym_default] = ACTIONS(2547), - [anon_sym_while] = ACTIONS(2547), - [anon_sym_do] = ACTIONS(2547), - [anon_sym_for] = ACTIONS(2547), - [anon_sym_return] = ACTIONS(2547), - [anon_sym_break] = ACTIONS(2547), - [anon_sym_continue] = ACTIONS(2547), - [anon_sym_goto] = ACTIONS(2547), - [anon_sym___try] = ACTIONS(2547), - [anon_sym___leave] = ACTIONS(2547), - [anon_sym_not] = ACTIONS(2547), - [anon_sym_compl] = ACTIONS(2547), - [anon_sym_DASH_DASH] = ACTIONS(2549), - [anon_sym_PLUS_PLUS] = ACTIONS(2549), - [anon_sym_sizeof] = ACTIONS(2547), - [anon_sym___alignof__] = ACTIONS(2547), - [anon_sym___alignof] = ACTIONS(2547), - [anon_sym__alignof] = ACTIONS(2547), - [anon_sym_alignof] = ACTIONS(2547), - [anon_sym__Alignof] = ACTIONS(2547), - [anon_sym_offsetof] = ACTIONS(2547), - [anon_sym__Generic] = ACTIONS(2547), - [anon_sym_asm] = ACTIONS(2547), - [anon_sym___asm__] = ACTIONS(2547), - [anon_sym___asm] = ACTIONS(2547), - [sym_number_literal] = ACTIONS(2549), - [anon_sym_L_SQUOTE] = ACTIONS(2549), - [anon_sym_u_SQUOTE] = ACTIONS(2549), - [anon_sym_U_SQUOTE] = ACTIONS(2549), - [anon_sym_u8_SQUOTE] = ACTIONS(2549), - [anon_sym_SQUOTE] = ACTIONS(2549), - [anon_sym_L_DQUOTE] = ACTIONS(2549), - [anon_sym_u_DQUOTE] = ACTIONS(2549), - [anon_sym_U_DQUOTE] = ACTIONS(2549), - [anon_sym_u8_DQUOTE] = ACTIONS(2549), - [anon_sym_DQUOTE] = ACTIONS(2549), - [sym_true] = ACTIONS(2547), - [sym_false] = ACTIONS(2547), - [anon_sym_NULL] = ACTIONS(2547), - [anon_sym_nullptr] = ACTIONS(2547), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2547), - [anon_sym_decltype] = ACTIONS(2547), - [anon_sym_explicit] = ACTIONS(2547), - [anon_sym_typename] = ACTIONS(2547), - [anon_sym_template] = ACTIONS(2547), - [anon_sym_operator] = ACTIONS(2547), - [anon_sym_try] = ACTIONS(2547), - [anon_sym_delete] = ACTIONS(2547), - [anon_sym_throw] = ACTIONS(2547), - [anon_sym_namespace] = ACTIONS(2547), - [anon_sym_static_assert] = ACTIONS(2547), - [anon_sym_concept] = ACTIONS(2547), - [anon_sym_co_return] = ACTIONS(2547), - [anon_sym_co_yield] = ACTIONS(2547), - [anon_sym_catch] = ACTIONS(3240), - [anon_sym_R_DQUOTE] = ACTIONS(2549), - [anon_sym_LR_DQUOTE] = ACTIONS(2549), - [anon_sym_uR_DQUOTE] = ACTIONS(2549), - [anon_sym_UR_DQUOTE] = ACTIONS(2549), - [anon_sym_u8R_DQUOTE] = ACTIONS(2549), - [anon_sym_co_await] = ACTIONS(2547), - [anon_sym_new] = ACTIONS(2547), - [anon_sym_requires] = ACTIONS(2547), - [sym_this] = ACTIONS(2547), + [ts_builtin_sym_end] = ACTIONS(2821), + [sym_identifier] = ACTIONS(2819), + [aux_sym_preproc_include_token1] = ACTIONS(2819), + [aux_sym_preproc_def_token1] = ACTIONS(2819), + [anon_sym_COMMA] = ACTIONS(2821), + [aux_sym_preproc_if_token1] = ACTIONS(2819), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2819), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2819), + [sym_preproc_directive] = ACTIONS(2819), + [anon_sym_LPAREN2] = ACTIONS(2821), + [anon_sym_BANG] = ACTIONS(2821), + [anon_sym_TILDE] = ACTIONS(2821), + [anon_sym_DASH] = ACTIONS(2819), + [anon_sym_PLUS] = ACTIONS(2819), + [anon_sym_STAR] = ACTIONS(2821), + [anon_sym_AMP_AMP] = ACTIONS(2821), + [anon_sym_AMP] = ACTIONS(2819), + [anon_sym_SEMI] = ACTIONS(2821), + [anon_sym___extension__] = ACTIONS(2819), + [anon_sym_typedef] = ACTIONS(2819), + [anon_sym_virtual] = ACTIONS(2819), + [anon_sym_extern] = ACTIONS(2819), + [anon_sym___attribute__] = ACTIONS(2819), + [anon_sym___attribute] = ACTIONS(2819), + [anon_sym_using] = ACTIONS(2819), + [anon_sym_COLON_COLON] = ACTIONS(2821), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2821), + [anon_sym___declspec] = ACTIONS(2819), + [anon_sym___based] = ACTIONS(2819), + [anon_sym___cdecl] = ACTIONS(2819), + [anon_sym___clrcall] = ACTIONS(2819), + [anon_sym___stdcall] = ACTIONS(2819), + [anon_sym___fastcall] = ACTIONS(2819), + [anon_sym___thiscall] = ACTIONS(2819), + [anon_sym___vectorcall] = ACTIONS(2819), + [anon_sym_LBRACE] = ACTIONS(2821), + [anon_sym_RBRACE] = ACTIONS(2821), + [anon_sym_signed] = ACTIONS(2819), + [anon_sym_unsigned] = ACTIONS(2819), + [anon_sym_long] = ACTIONS(2819), + [anon_sym_short] = ACTIONS(2819), + [anon_sym_LBRACK] = ACTIONS(2819), + [anon_sym_static] = ACTIONS(2819), + [anon_sym_register] = ACTIONS(2819), + [anon_sym_inline] = ACTIONS(2819), + [anon_sym___inline] = ACTIONS(2819), + [anon_sym___inline__] = ACTIONS(2819), + [anon_sym___forceinline] = ACTIONS(2819), + [anon_sym_thread_local] = ACTIONS(2819), + [anon_sym___thread] = ACTIONS(2819), + [anon_sym_const] = ACTIONS(2819), + [anon_sym_constexpr] = ACTIONS(2819), + [anon_sym_volatile] = ACTIONS(2819), + [anon_sym_restrict] = ACTIONS(2819), + [anon_sym___restrict__] = ACTIONS(2819), + [anon_sym__Atomic] = ACTIONS(2819), + [anon_sym__Noreturn] = ACTIONS(2819), + [anon_sym_noreturn] = ACTIONS(2819), + [anon_sym__Nonnull] = ACTIONS(2819), + [anon_sym_mutable] = ACTIONS(2819), + [anon_sym_constinit] = ACTIONS(2819), + [anon_sym_consteval] = ACTIONS(2819), + [anon_sym_alignas] = ACTIONS(2819), + [anon_sym__Alignas] = ACTIONS(2819), + [sym_primitive_type] = ACTIONS(2819), + [anon_sym_enum] = ACTIONS(2819), + [anon_sym_class] = ACTIONS(2819), + [anon_sym_struct] = ACTIONS(2819), + [anon_sym_union] = ACTIONS(2819), + [anon_sym_if] = ACTIONS(2819), + [anon_sym_switch] = ACTIONS(2819), + [anon_sym_case] = ACTIONS(2819), + [anon_sym_default] = ACTIONS(2819), + [anon_sym_while] = ACTIONS(2819), + [anon_sym_do] = ACTIONS(2819), + [anon_sym_for] = ACTIONS(2819), + [anon_sym_return] = ACTIONS(2819), + [anon_sym_break] = ACTIONS(2819), + [anon_sym_continue] = ACTIONS(2819), + [anon_sym_goto] = ACTIONS(2819), + [anon_sym_not] = ACTIONS(2819), + [anon_sym_compl] = ACTIONS(2819), + [anon_sym_DASH_DASH] = ACTIONS(2821), + [anon_sym_PLUS_PLUS] = ACTIONS(2821), + [anon_sym_sizeof] = ACTIONS(2819), + [anon_sym___alignof__] = ACTIONS(2819), + [anon_sym___alignof] = ACTIONS(2819), + [anon_sym__alignof] = ACTIONS(2819), + [anon_sym_alignof] = ACTIONS(2819), + [anon_sym__Alignof] = ACTIONS(2819), + [anon_sym_offsetof] = ACTIONS(2819), + [anon_sym__Generic] = ACTIONS(2819), + [anon_sym_asm] = ACTIONS(2819), + [anon_sym___asm__] = ACTIONS(2819), + [anon_sym___asm] = ACTIONS(2819), + [sym_number_literal] = ACTIONS(2821), + [anon_sym_L_SQUOTE] = ACTIONS(2821), + [anon_sym_u_SQUOTE] = ACTIONS(2821), + [anon_sym_U_SQUOTE] = ACTIONS(2821), + [anon_sym_u8_SQUOTE] = ACTIONS(2821), + [anon_sym_SQUOTE] = ACTIONS(2821), + [anon_sym_L_DQUOTE] = ACTIONS(2821), + [anon_sym_u_DQUOTE] = ACTIONS(2821), + [anon_sym_U_DQUOTE] = ACTIONS(2821), + [anon_sym_u8_DQUOTE] = ACTIONS(2821), + [anon_sym_DQUOTE] = ACTIONS(2821), + [sym_true] = ACTIONS(2819), + [sym_false] = ACTIONS(2819), + [anon_sym_NULL] = ACTIONS(2819), + [anon_sym_nullptr] = ACTIONS(2819), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2819), + [anon_sym_decltype] = ACTIONS(2819), + [anon_sym_explicit] = ACTIONS(2819), + [anon_sym_typename] = ACTIONS(2819), + [anon_sym_export] = ACTIONS(2819), + [anon_sym_module] = ACTIONS(2819), + [anon_sym_import] = ACTIONS(2819), + [anon_sym_template] = ACTIONS(2819), + [anon_sym_operator] = ACTIONS(2819), + [anon_sym_try] = ACTIONS(2819), + [anon_sym_delete] = ACTIONS(2819), + [anon_sym_throw] = ACTIONS(2819), + [anon_sym_namespace] = ACTIONS(2819), + [anon_sym_static_assert] = ACTIONS(2819), + [anon_sym_concept] = ACTIONS(2819), + [anon_sym_co_return] = ACTIONS(2819), + [anon_sym_co_yield] = ACTIONS(2819), + [anon_sym_R_DQUOTE] = ACTIONS(2821), + [anon_sym_LR_DQUOTE] = ACTIONS(2821), + [anon_sym_uR_DQUOTE] = ACTIONS(2821), + [anon_sym_UR_DQUOTE] = ACTIONS(2821), + [anon_sym_u8R_DQUOTE] = ACTIONS(2821), + [anon_sym_co_await] = ACTIONS(2819), + [anon_sym_new] = ACTIONS(2819), + [anon_sym_requires] = ACTIONS(2819), + [sym_this] = ACTIONS(2819), }, [446] = { - [sym_expression] = STATE(4294), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(2551), - [anon_sym_LPAREN2] = ACTIONS(1436), + [ts_builtin_sym_end] = ACTIONS(3319), + [sym_identifier] = ACTIONS(3317), + [aux_sym_preproc_include_token1] = ACTIONS(3317), + [aux_sym_preproc_def_token1] = ACTIONS(3317), + [anon_sym_COMMA] = ACTIONS(3319), + [aux_sym_preproc_if_token1] = ACTIONS(3317), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3317), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3317), + [sym_preproc_directive] = ACTIONS(3317), + [anon_sym_LPAREN2] = ACTIONS(3319), + [anon_sym_BANG] = ACTIONS(3319), + [anon_sym_TILDE] = ACTIONS(3319), + [anon_sym_DASH] = ACTIONS(3317), + [anon_sym_PLUS] = ACTIONS(3317), + [anon_sym_STAR] = ACTIONS(3319), + [anon_sym_AMP_AMP] = ACTIONS(3319), + [anon_sym_AMP] = ACTIONS(3317), + [anon_sym_SEMI] = ACTIONS(3319), + [anon_sym___extension__] = ACTIONS(3317), + [anon_sym_typedef] = ACTIONS(3317), + [anon_sym_virtual] = ACTIONS(3317), + [anon_sym_extern] = ACTIONS(3317), + [anon_sym___attribute__] = ACTIONS(3317), + [anon_sym___attribute] = ACTIONS(3317), + [anon_sym_using] = ACTIONS(3317), + [anon_sym_COLON_COLON] = ACTIONS(3319), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3319), + [anon_sym___declspec] = ACTIONS(3317), + [anon_sym___based] = ACTIONS(3317), + [anon_sym___cdecl] = ACTIONS(3317), + [anon_sym___clrcall] = ACTIONS(3317), + [anon_sym___stdcall] = ACTIONS(3317), + [anon_sym___fastcall] = ACTIONS(3317), + [anon_sym___thiscall] = ACTIONS(3317), + [anon_sym___vectorcall] = ACTIONS(3317), + [anon_sym_LBRACE] = ACTIONS(3319), + [anon_sym_RBRACE] = ACTIONS(3319), + [anon_sym_signed] = ACTIONS(3317), + [anon_sym_unsigned] = ACTIONS(3317), + [anon_sym_long] = ACTIONS(3317), + [anon_sym_short] = ACTIONS(3317), + [anon_sym_LBRACK] = ACTIONS(3317), + [anon_sym_static] = ACTIONS(3317), + [anon_sym_register] = ACTIONS(3317), + [anon_sym_inline] = ACTIONS(3317), + [anon_sym___inline] = ACTIONS(3317), + [anon_sym___inline__] = ACTIONS(3317), + [anon_sym___forceinline] = ACTIONS(3317), + [anon_sym_thread_local] = ACTIONS(3317), + [anon_sym___thread] = ACTIONS(3317), + [anon_sym_const] = ACTIONS(3317), + [anon_sym_constexpr] = ACTIONS(3317), + [anon_sym_volatile] = ACTIONS(3317), + [anon_sym_restrict] = ACTIONS(3317), + [anon_sym___restrict__] = ACTIONS(3317), + [anon_sym__Atomic] = ACTIONS(3317), + [anon_sym__Noreturn] = ACTIONS(3317), + [anon_sym_noreturn] = ACTIONS(3317), + [anon_sym__Nonnull] = ACTIONS(3317), + [anon_sym_mutable] = ACTIONS(3317), + [anon_sym_constinit] = ACTIONS(3317), + [anon_sym_consteval] = ACTIONS(3317), + [anon_sym_alignas] = ACTIONS(3317), + [anon_sym__Alignas] = ACTIONS(3317), + [sym_primitive_type] = ACTIONS(3317), + [anon_sym_enum] = ACTIONS(3317), + [anon_sym_class] = ACTIONS(3317), + [anon_sym_struct] = ACTIONS(3317), + [anon_sym_union] = ACTIONS(3317), + [anon_sym_if] = ACTIONS(3317), + [anon_sym_switch] = ACTIONS(3317), + [anon_sym_case] = ACTIONS(3317), + [anon_sym_default] = ACTIONS(3317), + [anon_sym_while] = ACTIONS(3317), + [anon_sym_do] = ACTIONS(3317), + [anon_sym_for] = ACTIONS(3317), + [anon_sym_return] = ACTIONS(3317), + [anon_sym_break] = ACTIONS(3317), + [anon_sym_continue] = ACTIONS(3317), + [anon_sym_goto] = ACTIONS(3317), + [anon_sym_not] = ACTIONS(3317), + [anon_sym_compl] = ACTIONS(3317), + [anon_sym_DASH_DASH] = ACTIONS(3319), + [anon_sym_PLUS_PLUS] = ACTIONS(3319), + [anon_sym_sizeof] = ACTIONS(3317), + [anon_sym___alignof__] = ACTIONS(3317), + [anon_sym___alignof] = ACTIONS(3317), + [anon_sym__alignof] = ACTIONS(3317), + [anon_sym_alignof] = ACTIONS(3317), + [anon_sym__Alignof] = ACTIONS(3317), + [anon_sym_offsetof] = ACTIONS(3317), + [anon_sym__Generic] = ACTIONS(3317), + [anon_sym_asm] = ACTIONS(3317), + [anon_sym___asm__] = ACTIONS(3317), + [anon_sym___asm] = ACTIONS(3317), + [sym_number_literal] = ACTIONS(3319), + [anon_sym_L_SQUOTE] = ACTIONS(3319), + [anon_sym_u_SQUOTE] = ACTIONS(3319), + [anon_sym_U_SQUOTE] = ACTIONS(3319), + [anon_sym_u8_SQUOTE] = ACTIONS(3319), + [anon_sym_SQUOTE] = ACTIONS(3319), + [anon_sym_L_DQUOTE] = ACTIONS(3319), + [anon_sym_u_DQUOTE] = ACTIONS(3319), + [anon_sym_U_DQUOTE] = ACTIONS(3319), + [anon_sym_u8_DQUOTE] = ACTIONS(3319), + [anon_sym_DQUOTE] = ACTIONS(3319), + [sym_true] = ACTIONS(3317), + [sym_false] = ACTIONS(3317), + [anon_sym_NULL] = ACTIONS(3317), + [anon_sym_nullptr] = ACTIONS(3317), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3317), + [anon_sym_decltype] = ACTIONS(3317), + [anon_sym_explicit] = ACTIONS(3317), + [anon_sym_typename] = ACTIONS(3317), + [anon_sym_export] = ACTIONS(3317), + [anon_sym_module] = ACTIONS(3317), + [anon_sym_import] = ACTIONS(3317), + [anon_sym_template] = ACTIONS(3317), + [anon_sym_operator] = ACTIONS(3317), + [anon_sym_try] = ACTIONS(3317), + [anon_sym_delete] = ACTIONS(3317), + [anon_sym_throw] = ACTIONS(3317), + [anon_sym_namespace] = ACTIONS(3317), + [anon_sym_static_assert] = ACTIONS(3317), + [anon_sym_concept] = ACTIONS(3317), + [anon_sym_co_return] = ACTIONS(3317), + [anon_sym_co_yield] = ACTIONS(3317), + [anon_sym_R_DQUOTE] = ACTIONS(3319), + [anon_sym_LR_DQUOTE] = ACTIONS(3319), + [anon_sym_uR_DQUOTE] = ACTIONS(3319), + [anon_sym_UR_DQUOTE] = ACTIONS(3319), + [anon_sym_u8R_DQUOTE] = ACTIONS(3319), + [anon_sym_co_await] = ACTIONS(3317), + [anon_sym_new] = ACTIONS(3317), + [anon_sym_requires] = ACTIONS(3317), + [sym_this] = ACTIONS(3317), + }, + [447] = { + [sym_expression] = STATE(4345), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(2547), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2568), - [anon_sym_typedef] = ACTIONS(2597), - [anon_sym_virtual] = ACTIONS(2573), - [anon_sym_extern] = ACTIONS(2573), - [anon_sym___attribute__] = ACTIONS(2573), - [anon_sym___attribute] = ACTIONS(2573), - [anon_sym_COLON_COLON] = ACTIONS(2575), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2563), - [anon_sym___declspec] = ACTIONS(2573), - [anon_sym_signed] = ACTIONS(2573), - [anon_sym_unsigned] = ACTIONS(2573), - [anon_sym_long] = ACTIONS(2573), - [anon_sym_short] = ACTIONS(2573), - [anon_sym_LBRACK] = ACTIONS(1450), - [anon_sym_static] = ACTIONS(2573), - [anon_sym_register] = ACTIONS(2573), - [anon_sym_inline] = ACTIONS(2573), - [anon_sym___inline] = ACTIONS(2573), - [anon_sym___inline__] = ACTIONS(2573), - [anon_sym___forceinline] = ACTIONS(2573), - [anon_sym_thread_local] = ACTIONS(2573), - [anon_sym___thread] = ACTIONS(2573), - [anon_sym_const] = ACTIONS(2573), - [anon_sym_constexpr] = ACTIONS(2573), - [anon_sym_volatile] = ACTIONS(2573), - [anon_sym_restrict] = ACTIONS(2573), - [anon_sym___restrict__] = ACTIONS(2573), - [anon_sym__Atomic] = ACTIONS(2573), - [anon_sym__Noreturn] = ACTIONS(2573), - [anon_sym_noreturn] = ACTIONS(2573), - [anon_sym__Nonnull] = ACTIONS(2573), - [anon_sym_mutable] = ACTIONS(2573), - [anon_sym_constinit] = ACTIONS(2573), - [anon_sym_consteval] = ACTIONS(2573), - [anon_sym_alignas] = ACTIONS(2573), - [anon_sym__Alignas] = ACTIONS(2573), - [sym_primitive_type] = ACTIONS(2581), - [anon_sym_enum] = ACTIONS(2573), - [anon_sym_class] = ACTIONS(2573), - [anon_sym_struct] = ACTIONS(2573), - [anon_sym_union] = ACTIONS(2573), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2567), + [anon_sym_virtual] = ACTIONS(2569), + [anon_sym_extern] = ACTIONS(2569), + [anon_sym___attribute__] = ACTIONS(2569), + [anon_sym___attribute] = ACTIONS(2569), + [anon_sym_COLON_COLON] = ACTIONS(2571), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2559), + [anon_sym___declspec] = ACTIONS(2569), + [anon_sym_signed] = ACTIONS(2569), + [anon_sym_unsigned] = ACTIONS(2569), + [anon_sym_long] = ACTIONS(2569), + [anon_sym_short] = ACTIONS(2569), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_static] = ACTIONS(2569), + [anon_sym_register] = ACTIONS(2569), + [anon_sym_inline] = ACTIONS(2569), + [anon_sym___inline] = ACTIONS(2569), + [anon_sym___inline__] = ACTIONS(2569), + [anon_sym___forceinline] = ACTIONS(2569), + [anon_sym_thread_local] = ACTIONS(2569), + [anon_sym___thread] = ACTIONS(2569), + [anon_sym_const] = ACTIONS(2569), + [anon_sym_constexpr] = ACTIONS(2569), + [anon_sym_volatile] = ACTIONS(2569), + [anon_sym_restrict] = ACTIONS(2569), + [anon_sym___restrict__] = ACTIONS(2569), + [anon_sym__Atomic] = ACTIONS(2569), + [anon_sym__Noreturn] = ACTIONS(2569), + [anon_sym_noreturn] = ACTIONS(2569), + [anon_sym__Nonnull] = ACTIONS(2569), + [anon_sym_mutable] = ACTIONS(2569), + [anon_sym_constinit] = ACTIONS(2569), + [anon_sym_consteval] = ACTIONS(2569), + [anon_sym_alignas] = ACTIONS(2569), + [anon_sym__Alignas] = ACTIONS(2569), + [sym_primitive_type] = ACTIONS(2577), + [anon_sym_enum] = ACTIONS(2569), + [anon_sym_class] = ACTIONS(2569), + [anon_sym_struct] = ACTIONS(2569), + [anon_sym_union] = ACTIONS(2569), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -107618,10 +108052,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(123), [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2573), - [anon_sym_decltype] = ACTIONS(2584), - [anon_sym_typename] = ACTIONS(2573), - [anon_sym_template] = ACTIONS(2587), + [sym_auto] = ACTIONS(2569), + [anon_sym_decltype] = ACTIONS(2580), + [anon_sym_typename] = ACTIONS(2569), + [anon_sym_template] = ACTIONS(2583), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -107633,13 +108067,431 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [447] = { - [sym_catch_clause] = STATE(425), - [aux_sym_constructor_try_statement_repeat1] = STATE(425), + [448] = { + [sym_type_qualifier] = STATE(3954), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(4767), + [sym_sized_type_specifier] = STATE(2747), + [sym_enum_specifier] = STATE(2747), + [sym_struct_specifier] = STATE(2747), + [sym_union_specifier] = STATE(2747), + [sym_expression] = STATE(4477), + [sym__string] = STATE(4825), + [sym_conditional_expression] = STATE(4856), + [sym_assignment_expression] = STATE(4856), + [sym_pointer_expression] = STATE(3701), + [sym_unary_expression] = STATE(4856), + [sym_binary_expression] = STATE(4856), + [sym_update_expression] = STATE(4856), + [sym_cast_expression] = STATE(4856), + [sym_type_descriptor] = STATE(7406), + [sym_sizeof_expression] = STATE(4856), + [sym_alignof_expression] = STATE(4856), + [sym_offsetof_expression] = STATE(4856), + [sym_generic_expression] = STATE(4856), + [sym_subscript_expression] = STATE(3701), + [sym_call_expression] = STATE(3701), + [sym_gnu_asm_expression] = STATE(4856), + [sym_extension_expression] = STATE(4856), + [sym_field_expression] = STATE(3701), + [sym_compound_literal_expression] = STATE(4856), + [sym_parenthesized_expression] = STATE(3701), + [sym_char_literal] = STATE(4825), + [sym_concatenated_string] = STATE(4825), + [sym_string_literal] = STATE(3812), + [sym_null] = STATE(4856), + [sym_placeholder_type_specifier] = STATE(2747), + [sym_decltype_auto] = STATE(2733), + [sym_decltype] = STATE(2621), + [sym_class_specifier] = STATE(2747), + [sym__class_name] = STATE(7816), + [sym_dependent_type] = STATE(2747), + [sym_template_type] = STATE(5365), + [sym_template_function] = STATE(4856), + [sym_raw_string_literal] = STATE(3812), + [sym_co_await_expression] = STATE(4856), + [sym_new_expression] = STATE(4856), + [sym_delete_expression] = STATE(4856), + [sym_requires_clause] = STATE(4856), + [sym_requires_expression] = STATE(4856), + [sym_lambda_expression] = STATE(4856), + [sym_lambda_capture_specifier] = STATE(5489), + [sym_fold_expression] = STATE(4856), + [sym_parameter_pack_expansion] = STATE(4856), + [sym_type_parameter_pack_expansion] = STATE(7760), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5742), + [sym_qualified_identifier] = STATE(3701), + [sym_qualified_type_identifier] = STATE(5382), + [sym_user_defined_literal] = STATE(3701), + [aux_sym__type_definition_type_repeat1] = STATE(3954), + [aux_sym_sized_type_specifier_repeat1] = STATE(4313), + [sym_identifier] = ACTIONS(3128), + [anon_sym_LPAREN2] = ACTIONS(3130), + [anon_sym_BANG] = ACTIONS(3132), + [anon_sym_TILDE] = ACTIONS(3132), + [anon_sym_DASH] = ACTIONS(3134), + [anon_sym_PLUS] = ACTIONS(3134), + [anon_sym_STAR] = ACTIONS(3136), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym___extension__] = ACTIONS(3138), + [anon_sym_COLON_COLON] = ACTIONS(3140), + [anon_sym_signed] = ACTIONS(3142), + [anon_sym_unsigned] = ACTIONS(3142), + [anon_sym_long] = ACTIONS(3142), + [anon_sym_short] = ACTIONS(3142), + [anon_sym_LBRACK] = ACTIONS(2020), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(69), + [anon_sym__Alignas] = ACTIONS(69), + [sym_primitive_type] = ACTIONS(3144), + [anon_sym_enum] = ACTIONS(3146), + [anon_sym_class] = ACTIONS(3148), + [anon_sym_struct] = ACTIONS(3150), + [anon_sym_union] = ACTIONS(3152), + [anon_sym_not] = ACTIONS(3134), + [anon_sym_compl] = ACTIONS(3134), + [anon_sym_DASH_DASH] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_sizeof] = ACTIONS(3156), + [anon_sym___alignof__] = ACTIONS(3158), + [anon_sym___alignof] = ACTIONS(3158), + [anon_sym__alignof] = ACTIONS(3158), + [anon_sym_alignof] = ACTIONS(3158), + [anon_sym__Alignof] = ACTIONS(3158), + [anon_sym_offsetof] = ACTIONS(3160), + [anon_sym__Generic] = ACTIONS(3162), + [anon_sym_asm] = ACTIONS(3164), + [anon_sym___asm__] = ACTIONS(3164), + [anon_sym___asm] = ACTIONS(3164), + [sym_number_literal] = ACTIONS(3166), + [anon_sym_L_SQUOTE] = ACTIONS(3168), + [anon_sym_u_SQUOTE] = ACTIONS(3168), + [anon_sym_U_SQUOTE] = ACTIONS(3168), + [anon_sym_u8_SQUOTE] = ACTIONS(3168), + [anon_sym_SQUOTE] = ACTIONS(3168), + [anon_sym_L_DQUOTE] = ACTIONS(3170), + [anon_sym_u_DQUOTE] = ACTIONS(3170), + [anon_sym_U_DQUOTE] = ACTIONS(3170), + [anon_sym_u8_DQUOTE] = ACTIONS(3170), + [anon_sym_DQUOTE] = ACTIONS(3170), + [sym_true] = ACTIONS(3172), + [sym_false] = ACTIONS(3172), + [anon_sym_NULL] = ACTIONS(3174), + [anon_sym_nullptr] = ACTIONS(3174), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3176), + [anon_sym_decltype] = ACTIONS(3178), + [anon_sym_typename] = ACTIONS(3180), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3184), + [anon_sym_R_DQUOTE] = ACTIONS(3186), + [anon_sym_LR_DQUOTE] = ACTIONS(3186), + [anon_sym_uR_DQUOTE] = ACTIONS(3186), + [anon_sym_UR_DQUOTE] = ACTIONS(3186), + [anon_sym_u8R_DQUOTE] = ACTIONS(3186), + [anon_sym_co_await] = ACTIONS(3188), + [anon_sym_new] = ACTIONS(3190), + [anon_sym_requires] = ACTIONS(3192), + [sym_this] = ACTIONS(3172), + }, + [449] = { + [sym_catch_clause] = STATE(367), + [aux_sym_constructor_try_statement_repeat1] = STATE(367), + [sym_identifier] = ACTIONS(2586), + [aux_sym_preproc_include_token1] = ACTIONS(2586), + [aux_sym_preproc_def_token1] = ACTIONS(2586), + [aux_sym_preproc_if_token1] = ACTIONS(2586), + [aux_sym_preproc_if_token2] = ACTIONS(2586), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2586), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2586), + [sym_preproc_directive] = ACTIONS(2586), + [anon_sym_LPAREN2] = ACTIONS(2588), + [anon_sym_BANG] = ACTIONS(2588), + [anon_sym_TILDE] = ACTIONS(2588), + [anon_sym_DASH] = ACTIONS(2586), + [anon_sym_PLUS] = ACTIONS(2586), + [anon_sym_STAR] = ACTIONS(2588), + [anon_sym_AMP_AMP] = ACTIONS(2588), + [anon_sym_AMP] = ACTIONS(2586), + [anon_sym_SEMI] = ACTIONS(2588), + [anon_sym___extension__] = ACTIONS(2586), + [anon_sym_typedef] = ACTIONS(2586), + [anon_sym_virtual] = ACTIONS(2586), + [anon_sym_extern] = ACTIONS(2586), + [anon_sym___attribute__] = ACTIONS(2586), + [anon_sym___attribute] = ACTIONS(2586), + [anon_sym_using] = ACTIONS(2586), + [anon_sym_COLON_COLON] = ACTIONS(2588), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2588), + [anon_sym___declspec] = ACTIONS(2586), + [anon_sym___based] = ACTIONS(2586), + [anon_sym___cdecl] = ACTIONS(2586), + [anon_sym___clrcall] = ACTIONS(2586), + [anon_sym___stdcall] = ACTIONS(2586), + [anon_sym___fastcall] = ACTIONS(2586), + [anon_sym___thiscall] = ACTIONS(2586), + [anon_sym___vectorcall] = ACTIONS(2586), + [anon_sym_LBRACE] = ACTIONS(2588), + [anon_sym_signed] = ACTIONS(2586), + [anon_sym_unsigned] = ACTIONS(2586), + [anon_sym_long] = ACTIONS(2586), + [anon_sym_short] = ACTIONS(2586), + [anon_sym_LBRACK] = ACTIONS(2586), + [anon_sym_static] = ACTIONS(2586), + [anon_sym_register] = ACTIONS(2586), + [anon_sym_inline] = ACTIONS(2586), + [anon_sym___inline] = ACTIONS(2586), + [anon_sym___inline__] = ACTIONS(2586), + [anon_sym___forceinline] = ACTIONS(2586), + [anon_sym_thread_local] = ACTIONS(2586), + [anon_sym___thread] = ACTIONS(2586), + [anon_sym_const] = ACTIONS(2586), + [anon_sym_constexpr] = ACTIONS(2586), + [anon_sym_volatile] = ACTIONS(2586), + [anon_sym_restrict] = ACTIONS(2586), + [anon_sym___restrict__] = ACTIONS(2586), + [anon_sym__Atomic] = ACTIONS(2586), + [anon_sym__Noreturn] = ACTIONS(2586), + [anon_sym_noreturn] = ACTIONS(2586), + [anon_sym__Nonnull] = ACTIONS(2586), + [anon_sym_mutable] = ACTIONS(2586), + [anon_sym_constinit] = ACTIONS(2586), + [anon_sym_consteval] = ACTIONS(2586), + [anon_sym_alignas] = ACTIONS(2586), + [anon_sym__Alignas] = ACTIONS(2586), + [sym_primitive_type] = ACTIONS(2586), + [anon_sym_enum] = ACTIONS(2586), + [anon_sym_class] = ACTIONS(2586), + [anon_sym_struct] = ACTIONS(2586), + [anon_sym_union] = ACTIONS(2586), + [anon_sym_if] = ACTIONS(2586), + [anon_sym_switch] = ACTIONS(2586), + [anon_sym_case] = ACTIONS(2586), + [anon_sym_default] = ACTIONS(2586), + [anon_sym_while] = ACTIONS(2586), + [anon_sym_do] = ACTIONS(2586), + [anon_sym_for] = ACTIONS(2586), + [anon_sym_return] = ACTIONS(2586), + [anon_sym_break] = ACTIONS(2586), + [anon_sym_continue] = ACTIONS(2586), + [anon_sym_goto] = ACTIONS(2586), + [anon_sym___try] = ACTIONS(2586), + [anon_sym___leave] = ACTIONS(2586), + [anon_sym_not] = ACTIONS(2586), + [anon_sym_compl] = ACTIONS(2586), + [anon_sym_DASH_DASH] = ACTIONS(2588), + [anon_sym_PLUS_PLUS] = ACTIONS(2588), + [anon_sym_sizeof] = ACTIONS(2586), + [anon_sym___alignof__] = ACTIONS(2586), + [anon_sym___alignof] = ACTIONS(2586), + [anon_sym__alignof] = ACTIONS(2586), + [anon_sym_alignof] = ACTIONS(2586), + [anon_sym__Alignof] = ACTIONS(2586), + [anon_sym_offsetof] = ACTIONS(2586), + [anon_sym__Generic] = ACTIONS(2586), + [anon_sym_asm] = ACTIONS(2586), + [anon_sym___asm__] = ACTIONS(2586), + [anon_sym___asm] = ACTIONS(2586), + [sym_number_literal] = ACTIONS(2588), + [anon_sym_L_SQUOTE] = ACTIONS(2588), + [anon_sym_u_SQUOTE] = ACTIONS(2588), + [anon_sym_U_SQUOTE] = ACTIONS(2588), + [anon_sym_u8_SQUOTE] = ACTIONS(2588), + [anon_sym_SQUOTE] = ACTIONS(2588), + [anon_sym_L_DQUOTE] = ACTIONS(2588), + [anon_sym_u_DQUOTE] = ACTIONS(2588), + [anon_sym_U_DQUOTE] = ACTIONS(2588), + [anon_sym_u8_DQUOTE] = ACTIONS(2588), + [anon_sym_DQUOTE] = ACTIONS(2588), + [sym_true] = ACTIONS(2586), + [sym_false] = ACTIONS(2586), + [anon_sym_NULL] = ACTIONS(2586), + [anon_sym_nullptr] = ACTIONS(2586), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2586), + [anon_sym_decltype] = ACTIONS(2586), + [anon_sym_explicit] = ACTIONS(2586), + [anon_sym_typename] = ACTIONS(2586), + [anon_sym_template] = ACTIONS(2586), + [anon_sym_operator] = ACTIONS(2586), + [anon_sym_try] = ACTIONS(2586), + [anon_sym_delete] = ACTIONS(2586), + [anon_sym_throw] = ACTIONS(2586), + [anon_sym_namespace] = ACTIONS(2586), + [anon_sym_static_assert] = ACTIONS(2586), + [anon_sym_concept] = ACTIONS(2586), + [anon_sym_co_return] = ACTIONS(2586), + [anon_sym_co_yield] = ACTIONS(2586), + [anon_sym_catch] = ACTIONS(3099), + [anon_sym_R_DQUOTE] = ACTIONS(2588), + [anon_sym_LR_DQUOTE] = ACTIONS(2588), + [anon_sym_uR_DQUOTE] = ACTIONS(2588), + [anon_sym_UR_DQUOTE] = ACTIONS(2588), + [anon_sym_u8R_DQUOTE] = ACTIONS(2588), + [anon_sym_co_await] = ACTIONS(2586), + [anon_sym_new] = ACTIONS(2586), + [anon_sym_requires] = ACTIONS(2586), + [sym_this] = ACTIONS(2586), + }, + [450] = { + [sym_catch_clause] = STATE(431), + [aux_sym_constructor_try_statement_repeat1] = STATE(431), + [sym_identifier] = ACTIONS(2586), + [aux_sym_preproc_include_token1] = ACTIONS(2586), + [aux_sym_preproc_def_token1] = ACTIONS(2586), + [aux_sym_preproc_if_token1] = ACTIONS(2586), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2586), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2586), + [sym_preproc_directive] = ACTIONS(2586), + [anon_sym_LPAREN2] = ACTIONS(2588), + [anon_sym_BANG] = ACTIONS(2588), + [anon_sym_TILDE] = ACTIONS(2588), + [anon_sym_DASH] = ACTIONS(2586), + [anon_sym_PLUS] = ACTIONS(2586), + [anon_sym_STAR] = ACTIONS(2588), + [anon_sym_AMP_AMP] = ACTIONS(2588), + [anon_sym_AMP] = ACTIONS(2586), + [anon_sym_SEMI] = ACTIONS(2588), + [anon_sym___extension__] = ACTIONS(2586), + [anon_sym_typedef] = ACTIONS(2586), + [anon_sym_virtual] = ACTIONS(2586), + [anon_sym_extern] = ACTIONS(2586), + [anon_sym___attribute__] = ACTIONS(2586), + [anon_sym___attribute] = ACTIONS(2586), + [anon_sym_using] = ACTIONS(2586), + [anon_sym_COLON_COLON] = ACTIONS(2588), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2588), + [anon_sym___declspec] = ACTIONS(2586), + [anon_sym___based] = ACTIONS(2586), + [anon_sym___cdecl] = ACTIONS(2586), + [anon_sym___clrcall] = ACTIONS(2586), + [anon_sym___stdcall] = ACTIONS(2586), + [anon_sym___fastcall] = ACTIONS(2586), + [anon_sym___thiscall] = ACTIONS(2586), + [anon_sym___vectorcall] = ACTIONS(2586), + [anon_sym_LBRACE] = ACTIONS(2588), + [anon_sym_RBRACE] = ACTIONS(2588), + [anon_sym_signed] = ACTIONS(2586), + [anon_sym_unsigned] = ACTIONS(2586), + [anon_sym_long] = ACTIONS(2586), + [anon_sym_short] = ACTIONS(2586), + [anon_sym_LBRACK] = ACTIONS(2586), + [anon_sym_static] = ACTIONS(2586), + [anon_sym_register] = ACTIONS(2586), + [anon_sym_inline] = ACTIONS(2586), + [anon_sym___inline] = ACTIONS(2586), + [anon_sym___inline__] = ACTIONS(2586), + [anon_sym___forceinline] = ACTIONS(2586), + [anon_sym_thread_local] = ACTIONS(2586), + [anon_sym___thread] = ACTIONS(2586), + [anon_sym_const] = ACTIONS(2586), + [anon_sym_constexpr] = ACTIONS(2586), + [anon_sym_volatile] = ACTIONS(2586), + [anon_sym_restrict] = ACTIONS(2586), + [anon_sym___restrict__] = ACTIONS(2586), + [anon_sym__Atomic] = ACTIONS(2586), + [anon_sym__Noreturn] = ACTIONS(2586), + [anon_sym_noreturn] = ACTIONS(2586), + [anon_sym__Nonnull] = ACTIONS(2586), + [anon_sym_mutable] = ACTIONS(2586), + [anon_sym_constinit] = ACTIONS(2586), + [anon_sym_consteval] = ACTIONS(2586), + [anon_sym_alignas] = ACTIONS(2586), + [anon_sym__Alignas] = ACTIONS(2586), + [sym_primitive_type] = ACTIONS(2586), + [anon_sym_enum] = ACTIONS(2586), + [anon_sym_class] = ACTIONS(2586), + [anon_sym_struct] = ACTIONS(2586), + [anon_sym_union] = ACTIONS(2586), + [anon_sym_if] = ACTIONS(2586), + [anon_sym_switch] = ACTIONS(2586), + [anon_sym_case] = ACTIONS(2586), + [anon_sym_default] = ACTIONS(2586), + [anon_sym_while] = ACTIONS(2586), + [anon_sym_do] = ACTIONS(2586), + [anon_sym_for] = ACTIONS(2586), + [anon_sym_return] = ACTIONS(2586), + [anon_sym_break] = ACTIONS(2586), + [anon_sym_continue] = ACTIONS(2586), + [anon_sym_goto] = ACTIONS(2586), + [anon_sym___try] = ACTIONS(2586), + [anon_sym___leave] = ACTIONS(2586), + [anon_sym_not] = ACTIONS(2586), + [anon_sym_compl] = ACTIONS(2586), + [anon_sym_DASH_DASH] = ACTIONS(2588), + [anon_sym_PLUS_PLUS] = ACTIONS(2588), + [anon_sym_sizeof] = ACTIONS(2586), + [anon_sym___alignof__] = ACTIONS(2586), + [anon_sym___alignof] = ACTIONS(2586), + [anon_sym__alignof] = ACTIONS(2586), + [anon_sym_alignof] = ACTIONS(2586), + [anon_sym__Alignof] = ACTIONS(2586), + [anon_sym_offsetof] = ACTIONS(2586), + [anon_sym__Generic] = ACTIONS(2586), + [anon_sym_asm] = ACTIONS(2586), + [anon_sym___asm__] = ACTIONS(2586), + [anon_sym___asm] = ACTIONS(2586), + [sym_number_literal] = ACTIONS(2588), + [anon_sym_L_SQUOTE] = ACTIONS(2588), + [anon_sym_u_SQUOTE] = ACTIONS(2588), + [anon_sym_U_SQUOTE] = ACTIONS(2588), + [anon_sym_u8_SQUOTE] = ACTIONS(2588), + [anon_sym_SQUOTE] = ACTIONS(2588), + [anon_sym_L_DQUOTE] = ACTIONS(2588), + [anon_sym_u_DQUOTE] = ACTIONS(2588), + [anon_sym_U_DQUOTE] = ACTIONS(2588), + [anon_sym_u8_DQUOTE] = ACTIONS(2588), + [anon_sym_DQUOTE] = ACTIONS(2588), + [sym_true] = ACTIONS(2586), + [sym_false] = ACTIONS(2586), + [anon_sym_NULL] = ACTIONS(2586), + [anon_sym_nullptr] = ACTIONS(2586), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2586), + [anon_sym_decltype] = ACTIONS(2586), + [anon_sym_explicit] = ACTIONS(2586), + [anon_sym_typename] = ACTIONS(2586), + [anon_sym_template] = ACTIONS(2586), + [anon_sym_operator] = ACTIONS(2586), + [anon_sym_try] = ACTIONS(2586), + [anon_sym_delete] = ACTIONS(2586), + [anon_sym_throw] = ACTIONS(2586), + [anon_sym_namespace] = ACTIONS(2586), + [anon_sym_static_assert] = ACTIONS(2586), + [anon_sym_concept] = ACTIONS(2586), + [anon_sym_co_return] = ACTIONS(2586), + [anon_sym_co_yield] = ACTIONS(2586), + [anon_sym_catch] = ACTIONS(3248), + [anon_sym_R_DQUOTE] = ACTIONS(2588), + [anon_sym_LR_DQUOTE] = ACTIONS(2588), + [anon_sym_uR_DQUOTE] = ACTIONS(2588), + [anon_sym_UR_DQUOTE] = ACTIONS(2588), + [anon_sym_u8R_DQUOTE] = ACTIONS(2588), + [anon_sym_co_await] = ACTIONS(2586), + [anon_sym_new] = ACTIONS(2586), + [anon_sym_requires] = ACTIONS(2586), + [sym_this] = ACTIONS(2586), + }, + [451] = { + [sym_catch_clause] = STATE(367), + [aux_sym_constructor_try_statement_repeat1] = STATE(367), [sym_identifier] = ACTIONS(2590), [aux_sym_preproc_include_token1] = ACTIONS(2590), [aux_sym_preproc_def_token1] = ACTIONS(2590), [aux_sym_preproc_if_token1] = ACTIONS(2590), + [aux_sym_preproc_if_token2] = ACTIONS(2590), [aux_sym_preproc_ifdef_token1] = ACTIONS(2590), [aux_sym_preproc_ifdef_token2] = ACTIONS(2590), [sym_preproc_directive] = ACTIONS(2590), @@ -107670,7 +108522,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(2590), [anon_sym___vectorcall] = ACTIONS(2590), [anon_sym_LBRACE] = ACTIONS(2592), - [anon_sym_RBRACE] = ACTIONS(2592), [anon_sym_signed] = ACTIONS(2590), [anon_sym_unsigned] = ACTIONS(2590), [anon_sym_long] = ACTIONS(2590), @@ -107761,7 +108612,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_concept] = ACTIONS(2590), [anon_sym_co_return] = ACTIONS(2590), [anon_sym_co_yield] = ACTIONS(2590), - [anon_sym_catch] = ACTIONS(3240), + [anon_sym_catch] = ACTIONS(3099), [anon_sym_R_DQUOTE] = ACTIONS(2592), [anon_sym_LR_DQUOTE] = ACTIONS(2592), [anon_sym_uR_DQUOTE] = ACTIONS(2592), @@ -107772,238 +108623,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2590), [sym_this] = ACTIONS(2590), }, - [448] = { - [sym_expression] = STATE(4294), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(2551), - [anon_sym_LPAREN2] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2568), - [anon_sym_typedef] = ACTIONS(3347), - [anon_sym_virtual] = ACTIONS(2573), - [anon_sym_extern] = ACTIONS(2573), - [anon_sym___attribute__] = ACTIONS(2573), - [anon_sym___attribute] = ACTIONS(2573), - [anon_sym_COLON_COLON] = ACTIONS(2575), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2563), - [anon_sym___declspec] = ACTIONS(2573), - [anon_sym_signed] = ACTIONS(2573), - [anon_sym_unsigned] = ACTIONS(2573), - [anon_sym_long] = ACTIONS(2573), - [anon_sym_short] = ACTIONS(2573), - [anon_sym_LBRACK] = ACTIONS(1450), - [anon_sym_static] = ACTIONS(2573), - [anon_sym_register] = ACTIONS(2573), - [anon_sym_inline] = ACTIONS(2573), - [anon_sym___inline] = ACTIONS(2573), - [anon_sym___inline__] = ACTIONS(2573), - [anon_sym___forceinline] = ACTIONS(2573), - [anon_sym_thread_local] = ACTIONS(2573), - [anon_sym___thread] = ACTIONS(2573), - [anon_sym_const] = ACTIONS(2573), - [anon_sym_constexpr] = ACTIONS(2573), - [anon_sym_volatile] = ACTIONS(2573), - [anon_sym_restrict] = ACTIONS(2573), - [anon_sym___restrict__] = ACTIONS(2573), - [anon_sym__Atomic] = ACTIONS(2573), - [anon_sym__Noreturn] = ACTIONS(2573), - [anon_sym_noreturn] = ACTIONS(2573), - [anon_sym__Nonnull] = ACTIONS(2573), - [anon_sym_mutable] = ACTIONS(2573), - [anon_sym_constinit] = ACTIONS(2573), - [anon_sym_consteval] = ACTIONS(2573), - [anon_sym_alignas] = ACTIONS(2573), - [anon_sym__Alignas] = ACTIONS(2573), - [sym_primitive_type] = ACTIONS(2581), - [anon_sym_enum] = ACTIONS(2573), - [anon_sym_class] = ACTIONS(2573), - [anon_sym_struct] = ACTIONS(2573), - [anon_sym_union] = ACTIONS(2573), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2573), - [anon_sym_decltype] = ACTIONS(2584), - [anon_sym_typename] = ACTIONS(2573), - [anon_sym_template] = ACTIONS(2587), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), - }, - [449] = { - [sym_expression] = STATE(4294), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(2551), - [anon_sym_LPAREN2] = ACTIONS(1436), + [452] = { + [sym_expression] = STATE(4345), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(2547), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2568), - [anon_sym_typedef] = ACTIONS(2571), - [anon_sym_virtual] = ACTIONS(2573), - [anon_sym_extern] = ACTIONS(2573), - [anon_sym___attribute__] = ACTIONS(2573), - [anon_sym___attribute] = ACTIONS(2573), - [anon_sym_COLON_COLON] = ACTIONS(2575), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2563), - [anon_sym___declspec] = ACTIONS(2573), - [anon_sym_signed] = ACTIONS(2573), - [anon_sym_unsigned] = ACTIONS(2573), - [anon_sym_long] = ACTIONS(2573), - [anon_sym_short] = ACTIONS(2573), - [anon_sym_LBRACK] = ACTIONS(1450), - [anon_sym_static] = ACTIONS(2573), - [anon_sym_register] = ACTIONS(2573), - [anon_sym_inline] = ACTIONS(2573), - [anon_sym___inline] = ACTIONS(2573), - [anon_sym___inline__] = ACTIONS(2573), - [anon_sym___forceinline] = ACTIONS(2573), - [anon_sym_thread_local] = ACTIONS(2573), - [anon_sym___thread] = ACTIONS(2573), - [anon_sym_const] = ACTIONS(2573), - [anon_sym_constexpr] = ACTIONS(2573), - [anon_sym_volatile] = ACTIONS(2573), - [anon_sym_restrict] = ACTIONS(2573), - [anon_sym___restrict__] = ACTIONS(2573), - [anon_sym__Atomic] = ACTIONS(2573), - [anon_sym__Noreturn] = ACTIONS(2573), - [anon_sym_noreturn] = ACTIONS(2573), - [anon_sym__Nonnull] = ACTIONS(2573), - [anon_sym_mutable] = ACTIONS(2573), - [anon_sym_constinit] = ACTIONS(2573), - [anon_sym_consteval] = ACTIONS(2573), - [anon_sym_alignas] = ACTIONS(2573), - [anon_sym__Alignas] = ACTIONS(2573), - [sym_primitive_type] = ACTIONS(2581), - [anon_sym_enum] = ACTIONS(2573), - [anon_sym_class] = ACTIONS(2573), - [anon_sym_struct] = ACTIONS(2573), - [anon_sym_union] = ACTIONS(2573), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2603), + [anon_sym_virtual] = ACTIONS(2569), + [anon_sym_extern] = ACTIONS(2569), + [anon_sym___attribute__] = ACTIONS(2569), + [anon_sym___attribute] = ACTIONS(2569), + [anon_sym_COLON_COLON] = ACTIONS(2571), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2559), + [anon_sym___declspec] = ACTIONS(2569), + [anon_sym_signed] = ACTIONS(2569), + [anon_sym_unsigned] = ACTIONS(2569), + [anon_sym_long] = ACTIONS(2569), + [anon_sym_short] = ACTIONS(2569), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_static] = ACTIONS(2569), + [anon_sym_register] = ACTIONS(2569), + [anon_sym_inline] = ACTIONS(2569), + [anon_sym___inline] = ACTIONS(2569), + [anon_sym___inline__] = ACTIONS(2569), + [anon_sym___forceinline] = ACTIONS(2569), + [anon_sym_thread_local] = ACTIONS(2569), + [anon_sym___thread] = ACTIONS(2569), + [anon_sym_const] = ACTIONS(2569), + [anon_sym_constexpr] = ACTIONS(2569), + [anon_sym_volatile] = ACTIONS(2569), + [anon_sym_restrict] = ACTIONS(2569), + [anon_sym___restrict__] = ACTIONS(2569), + [anon_sym__Atomic] = ACTIONS(2569), + [anon_sym__Noreturn] = ACTIONS(2569), + [anon_sym_noreturn] = ACTIONS(2569), + [anon_sym__Nonnull] = ACTIONS(2569), + [anon_sym_mutable] = ACTIONS(2569), + [anon_sym_constinit] = ACTIONS(2569), + [anon_sym_consteval] = ACTIONS(2569), + [anon_sym_alignas] = ACTIONS(2569), + [anon_sym__Alignas] = ACTIONS(2569), + [sym_primitive_type] = ACTIONS(2577), + [anon_sym_enum] = ACTIONS(2569), + [anon_sym_class] = ACTIONS(2569), + [anon_sym_struct] = ACTIONS(2569), + [anon_sym_union] = ACTIONS(2569), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -108035,10 +108747,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(123), [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2573), - [anon_sym_decltype] = ACTIONS(2584), - [anon_sym_typename] = ACTIONS(2573), - [anon_sym_template] = ACTIONS(2587), + [sym_auto] = ACTIONS(2569), + [anon_sym_decltype] = ACTIONS(2580), + [anon_sym_typename] = ACTIONS(2569), + [anon_sym_template] = ACTIONS(2583), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -108050,249 +108762,251 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [450] = { - [sym_identifier] = ACTIONS(2619), - [aux_sym_preproc_include_token1] = ACTIONS(2619), - [aux_sym_preproc_def_token1] = ACTIONS(2619), - [aux_sym_preproc_if_token1] = ACTIONS(2619), - [aux_sym_preproc_if_token2] = ACTIONS(2619), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2619), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2619), - [sym_preproc_directive] = ACTIONS(2619), - [anon_sym_LPAREN2] = ACTIONS(2621), - [anon_sym_BANG] = ACTIONS(2621), - [anon_sym_TILDE] = ACTIONS(2621), - [anon_sym_DASH] = ACTIONS(2619), - [anon_sym_PLUS] = ACTIONS(2619), - [anon_sym_STAR] = ACTIONS(2621), - [anon_sym_AMP_AMP] = ACTIONS(2621), - [anon_sym_AMP] = ACTIONS(2619), - [anon_sym_SEMI] = ACTIONS(2621), - [anon_sym___extension__] = ACTIONS(2619), - [anon_sym_typedef] = ACTIONS(2619), - [anon_sym_virtual] = ACTIONS(2619), - [anon_sym_extern] = ACTIONS(2619), - [anon_sym___attribute__] = ACTIONS(2619), - [anon_sym___attribute] = ACTIONS(2619), - [anon_sym_using] = ACTIONS(2619), - [anon_sym_COLON_COLON] = ACTIONS(2621), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2621), - [anon_sym___declspec] = ACTIONS(2619), - [anon_sym___based] = ACTIONS(2619), - [anon_sym___cdecl] = ACTIONS(2619), - [anon_sym___clrcall] = ACTIONS(2619), - [anon_sym___stdcall] = ACTIONS(2619), - [anon_sym___fastcall] = ACTIONS(2619), - [anon_sym___thiscall] = ACTIONS(2619), - [anon_sym___vectorcall] = ACTIONS(2619), - [anon_sym_LBRACE] = ACTIONS(2621), - [anon_sym_signed] = ACTIONS(2619), - [anon_sym_unsigned] = ACTIONS(2619), - [anon_sym_long] = ACTIONS(2619), - [anon_sym_short] = ACTIONS(2619), - [anon_sym_LBRACK] = ACTIONS(2619), - [anon_sym_static] = ACTIONS(2619), - [anon_sym_register] = ACTIONS(2619), - [anon_sym_inline] = ACTIONS(2619), - [anon_sym___inline] = ACTIONS(2619), - [anon_sym___inline__] = ACTIONS(2619), - [anon_sym___forceinline] = ACTIONS(2619), - [anon_sym_thread_local] = ACTIONS(2619), - [anon_sym___thread] = ACTIONS(2619), - [anon_sym_const] = ACTIONS(2619), - [anon_sym_constexpr] = ACTIONS(2619), - [anon_sym_volatile] = ACTIONS(2619), - [anon_sym_restrict] = ACTIONS(2619), - [anon_sym___restrict__] = ACTIONS(2619), - [anon_sym__Atomic] = ACTIONS(2619), - [anon_sym__Noreturn] = ACTIONS(2619), - [anon_sym_noreturn] = ACTIONS(2619), - [anon_sym__Nonnull] = ACTIONS(2619), - [anon_sym_mutable] = ACTIONS(2619), - [anon_sym_constinit] = ACTIONS(2619), - [anon_sym_consteval] = ACTIONS(2619), - [anon_sym_alignas] = ACTIONS(2619), - [anon_sym__Alignas] = ACTIONS(2619), - [sym_primitive_type] = ACTIONS(2619), - [anon_sym_enum] = ACTIONS(2619), - [anon_sym_class] = ACTIONS(2619), - [anon_sym_struct] = ACTIONS(2619), - [anon_sym_union] = ACTIONS(2619), - [anon_sym_if] = ACTIONS(2619), - [anon_sym_else] = ACTIONS(2619), - [anon_sym_switch] = ACTIONS(2619), - [anon_sym_case] = ACTIONS(2619), - [anon_sym_default] = ACTIONS(2619), - [anon_sym_while] = ACTIONS(2619), - [anon_sym_do] = ACTIONS(2619), - [anon_sym_for] = ACTIONS(2619), - [anon_sym_return] = ACTIONS(2619), - [anon_sym_break] = ACTIONS(2619), - [anon_sym_continue] = ACTIONS(2619), - [anon_sym_goto] = ACTIONS(2619), - [anon_sym___try] = ACTIONS(2619), - [anon_sym___leave] = ACTIONS(2619), - [anon_sym_not] = ACTIONS(2619), - [anon_sym_compl] = ACTIONS(2619), - [anon_sym_DASH_DASH] = ACTIONS(2621), - [anon_sym_PLUS_PLUS] = ACTIONS(2621), - [anon_sym_sizeof] = ACTIONS(2619), - [anon_sym___alignof__] = ACTIONS(2619), - [anon_sym___alignof] = ACTIONS(2619), - [anon_sym__alignof] = ACTIONS(2619), - [anon_sym_alignof] = ACTIONS(2619), - [anon_sym__Alignof] = ACTIONS(2619), - [anon_sym_offsetof] = ACTIONS(2619), - [anon_sym__Generic] = ACTIONS(2619), - [anon_sym_asm] = ACTIONS(2619), - [anon_sym___asm__] = ACTIONS(2619), - [anon_sym___asm] = ACTIONS(2619), - [sym_number_literal] = ACTIONS(2621), - [anon_sym_L_SQUOTE] = ACTIONS(2621), - [anon_sym_u_SQUOTE] = ACTIONS(2621), - [anon_sym_U_SQUOTE] = ACTIONS(2621), - [anon_sym_u8_SQUOTE] = ACTIONS(2621), - [anon_sym_SQUOTE] = ACTIONS(2621), - [anon_sym_L_DQUOTE] = ACTIONS(2621), - [anon_sym_u_DQUOTE] = ACTIONS(2621), - [anon_sym_U_DQUOTE] = ACTIONS(2621), - [anon_sym_u8_DQUOTE] = ACTIONS(2621), - [anon_sym_DQUOTE] = ACTIONS(2621), - [sym_true] = ACTIONS(2619), - [sym_false] = ACTIONS(2619), - [anon_sym_NULL] = ACTIONS(2619), - [anon_sym_nullptr] = ACTIONS(2619), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2619), - [anon_sym_decltype] = ACTIONS(2619), - [anon_sym_explicit] = ACTIONS(2619), - [anon_sym_typename] = ACTIONS(2619), - [anon_sym_template] = ACTIONS(2619), - [anon_sym_operator] = ACTIONS(2619), - [anon_sym_try] = ACTIONS(2619), - [anon_sym_delete] = ACTIONS(2619), - [anon_sym_throw] = ACTIONS(2619), - [anon_sym_namespace] = ACTIONS(2619), - [anon_sym_static_assert] = ACTIONS(2619), - [anon_sym_concept] = ACTIONS(2619), - [anon_sym_co_return] = ACTIONS(2619), - [anon_sym_co_yield] = ACTIONS(2619), - [anon_sym_catch] = ACTIONS(2619), - [anon_sym_R_DQUOTE] = ACTIONS(2621), - [anon_sym_LR_DQUOTE] = ACTIONS(2621), - [anon_sym_uR_DQUOTE] = ACTIONS(2621), - [anon_sym_UR_DQUOTE] = ACTIONS(2621), - [anon_sym_u8R_DQUOTE] = ACTIONS(2621), - [anon_sym_co_await] = ACTIONS(2619), - [anon_sym_new] = ACTIONS(2619), - [anon_sym_requires] = ACTIONS(2619), - [sym_this] = ACTIONS(2619), - }, - [451] = { - [sym_expression] = STATE(4294), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(2551), - [anon_sym_LPAREN2] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2568), - [anon_sym_virtual] = ACTIONS(2573), - [anon_sym_extern] = ACTIONS(2573), - [anon_sym___attribute__] = ACTIONS(2573), - [anon_sym___attribute] = ACTIONS(2573), - [anon_sym_COLON_COLON] = ACTIONS(2575), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2563), - [anon_sym___declspec] = ACTIONS(2573), - [anon_sym_signed] = ACTIONS(2573), - [anon_sym_unsigned] = ACTIONS(2573), - [anon_sym_long] = ACTIONS(2573), - [anon_sym_short] = ACTIONS(2573), - [anon_sym_LBRACK] = ACTIONS(1450), - [anon_sym_static] = ACTIONS(2573), - [anon_sym_register] = ACTIONS(2573), - [anon_sym_inline] = ACTIONS(2573), - [anon_sym___inline] = ACTIONS(2573), - [anon_sym___inline__] = ACTIONS(2573), - [anon_sym___forceinline] = ACTIONS(2573), - [anon_sym_thread_local] = ACTIONS(2573), - [anon_sym___thread] = ACTIONS(2573), - [anon_sym_const] = ACTIONS(2573), - [anon_sym_constexpr] = ACTIONS(2573), - [anon_sym_volatile] = ACTIONS(2573), - [anon_sym_restrict] = ACTIONS(2573), - [anon_sym___restrict__] = ACTIONS(2573), - [anon_sym__Atomic] = ACTIONS(2573), - [anon_sym__Noreturn] = ACTIONS(2573), - [anon_sym_noreturn] = ACTIONS(2573), - [anon_sym__Nonnull] = ACTIONS(2573), - [anon_sym_mutable] = ACTIONS(2573), - [anon_sym_constinit] = ACTIONS(2573), - [anon_sym_consteval] = ACTIONS(2573), - [anon_sym_alignas] = ACTIONS(2573), - [anon_sym__Alignas] = ACTIONS(2573), - [sym_primitive_type] = ACTIONS(2581), - [anon_sym_enum] = ACTIONS(2573), - [anon_sym_class] = ACTIONS(2573), - [anon_sym_struct] = ACTIONS(2573), - [anon_sym_union] = ACTIONS(2573), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), + [453] = { + [sym_catch_clause] = STATE(431), + [aux_sym_constructor_try_statement_repeat1] = STATE(431), + [sym_identifier] = ACTIONS(2590), + [aux_sym_preproc_include_token1] = ACTIONS(2590), + [aux_sym_preproc_def_token1] = ACTIONS(2590), + [aux_sym_preproc_if_token1] = ACTIONS(2590), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2590), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2590), + [sym_preproc_directive] = ACTIONS(2590), + [anon_sym_LPAREN2] = ACTIONS(2592), + [anon_sym_BANG] = ACTIONS(2592), + [anon_sym_TILDE] = ACTIONS(2592), + [anon_sym_DASH] = ACTIONS(2590), + [anon_sym_PLUS] = ACTIONS(2590), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_AMP_AMP] = ACTIONS(2592), + [anon_sym_AMP] = ACTIONS(2590), + [anon_sym_SEMI] = ACTIONS(2592), + [anon_sym___extension__] = ACTIONS(2590), + [anon_sym_typedef] = ACTIONS(2590), + [anon_sym_virtual] = ACTIONS(2590), + [anon_sym_extern] = ACTIONS(2590), + [anon_sym___attribute__] = ACTIONS(2590), + [anon_sym___attribute] = ACTIONS(2590), + [anon_sym_using] = ACTIONS(2590), + [anon_sym_COLON_COLON] = ACTIONS(2592), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2592), + [anon_sym___declspec] = ACTIONS(2590), + [anon_sym___based] = ACTIONS(2590), + [anon_sym___cdecl] = ACTIONS(2590), + [anon_sym___clrcall] = ACTIONS(2590), + [anon_sym___stdcall] = ACTIONS(2590), + [anon_sym___fastcall] = ACTIONS(2590), + [anon_sym___thiscall] = ACTIONS(2590), + [anon_sym___vectorcall] = ACTIONS(2590), + [anon_sym_LBRACE] = ACTIONS(2592), + [anon_sym_RBRACE] = ACTIONS(2592), + [anon_sym_signed] = ACTIONS(2590), + [anon_sym_unsigned] = ACTIONS(2590), + [anon_sym_long] = ACTIONS(2590), + [anon_sym_short] = ACTIONS(2590), + [anon_sym_LBRACK] = ACTIONS(2590), + [anon_sym_static] = ACTIONS(2590), + [anon_sym_register] = ACTIONS(2590), + [anon_sym_inline] = ACTIONS(2590), + [anon_sym___inline] = ACTIONS(2590), + [anon_sym___inline__] = ACTIONS(2590), + [anon_sym___forceinline] = ACTIONS(2590), + [anon_sym_thread_local] = ACTIONS(2590), + [anon_sym___thread] = ACTIONS(2590), + [anon_sym_const] = ACTIONS(2590), + [anon_sym_constexpr] = ACTIONS(2590), + [anon_sym_volatile] = ACTIONS(2590), + [anon_sym_restrict] = ACTIONS(2590), + [anon_sym___restrict__] = ACTIONS(2590), + [anon_sym__Atomic] = ACTIONS(2590), + [anon_sym__Noreturn] = ACTIONS(2590), + [anon_sym_noreturn] = ACTIONS(2590), + [anon_sym__Nonnull] = ACTIONS(2590), + [anon_sym_mutable] = ACTIONS(2590), + [anon_sym_constinit] = ACTIONS(2590), + [anon_sym_consteval] = ACTIONS(2590), + [anon_sym_alignas] = ACTIONS(2590), + [anon_sym__Alignas] = ACTIONS(2590), + [sym_primitive_type] = ACTIONS(2590), + [anon_sym_enum] = ACTIONS(2590), + [anon_sym_class] = ACTIONS(2590), + [anon_sym_struct] = ACTIONS(2590), + [anon_sym_union] = ACTIONS(2590), + [anon_sym_if] = ACTIONS(2590), + [anon_sym_switch] = ACTIONS(2590), + [anon_sym_case] = ACTIONS(2590), + [anon_sym_default] = ACTIONS(2590), + [anon_sym_while] = ACTIONS(2590), + [anon_sym_do] = ACTIONS(2590), + [anon_sym_for] = ACTIONS(2590), + [anon_sym_return] = ACTIONS(2590), + [anon_sym_break] = ACTIONS(2590), + [anon_sym_continue] = ACTIONS(2590), + [anon_sym_goto] = ACTIONS(2590), + [anon_sym___try] = ACTIONS(2590), + [anon_sym___leave] = ACTIONS(2590), + [anon_sym_not] = ACTIONS(2590), + [anon_sym_compl] = ACTIONS(2590), + [anon_sym_DASH_DASH] = ACTIONS(2592), + [anon_sym_PLUS_PLUS] = ACTIONS(2592), + [anon_sym_sizeof] = ACTIONS(2590), + [anon_sym___alignof__] = ACTIONS(2590), + [anon_sym___alignof] = ACTIONS(2590), + [anon_sym__alignof] = ACTIONS(2590), + [anon_sym_alignof] = ACTIONS(2590), + [anon_sym__Alignof] = ACTIONS(2590), + [anon_sym_offsetof] = ACTIONS(2590), + [anon_sym__Generic] = ACTIONS(2590), + [anon_sym_asm] = ACTIONS(2590), + [anon_sym___asm__] = ACTIONS(2590), + [anon_sym___asm] = ACTIONS(2590), + [sym_number_literal] = ACTIONS(2592), + [anon_sym_L_SQUOTE] = ACTIONS(2592), + [anon_sym_u_SQUOTE] = ACTIONS(2592), + [anon_sym_U_SQUOTE] = ACTIONS(2592), + [anon_sym_u8_SQUOTE] = ACTIONS(2592), + [anon_sym_SQUOTE] = ACTIONS(2592), + [anon_sym_L_DQUOTE] = ACTIONS(2592), + [anon_sym_u_DQUOTE] = ACTIONS(2592), + [anon_sym_U_DQUOTE] = ACTIONS(2592), + [anon_sym_u8_DQUOTE] = ACTIONS(2592), + [anon_sym_DQUOTE] = ACTIONS(2592), + [sym_true] = ACTIONS(2590), + [sym_false] = ACTIONS(2590), + [anon_sym_NULL] = ACTIONS(2590), + [anon_sym_nullptr] = ACTIONS(2590), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2590), + [anon_sym_decltype] = ACTIONS(2590), + [anon_sym_explicit] = ACTIONS(2590), + [anon_sym_typename] = ACTIONS(2590), + [anon_sym_template] = ACTIONS(2590), + [anon_sym_operator] = ACTIONS(2590), + [anon_sym_try] = ACTIONS(2590), + [anon_sym_delete] = ACTIONS(2590), + [anon_sym_throw] = ACTIONS(2590), + [anon_sym_namespace] = ACTIONS(2590), + [anon_sym_static_assert] = ACTIONS(2590), + [anon_sym_concept] = ACTIONS(2590), + [anon_sym_co_return] = ACTIONS(2590), + [anon_sym_co_yield] = ACTIONS(2590), + [anon_sym_catch] = ACTIONS(3248), + [anon_sym_R_DQUOTE] = ACTIONS(2592), + [anon_sym_LR_DQUOTE] = ACTIONS(2592), + [anon_sym_uR_DQUOTE] = ACTIONS(2592), + [anon_sym_UR_DQUOTE] = ACTIONS(2592), + [anon_sym_u8R_DQUOTE] = ACTIONS(2592), + [anon_sym_co_await] = ACTIONS(2590), + [anon_sym_new] = ACTIONS(2590), + [anon_sym_requires] = ACTIONS(2590), + [sym_this] = ACTIONS(2590), + }, + [454] = { + [sym_expression] = STATE(4345), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(2547), + [anon_sym_LPAREN2] = ACTIONS(1252), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(3345), + [anon_sym_virtual] = ACTIONS(2569), + [anon_sym_extern] = ACTIONS(2569), + [anon_sym___attribute__] = ACTIONS(2569), + [anon_sym___attribute] = ACTIONS(2569), + [anon_sym_COLON_COLON] = ACTIONS(2571), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2559), + [anon_sym___declspec] = ACTIONS(2569), + [anon_sym_signed] = ACTIONS(2569), + [anon_sym_unsigned] = ACTIONS(2569), + [anon_sym_long] = ACTIONS(2569), + [anon_sym_short] = ACTIONS(2569), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_static] = ACTIONS(2569), + [anon_sym_register] = ACTIONS(2569), + [anon_sym_inline] = ACTIONS(2569), + [anon_sym___inline] = ACTIONS(2569), + [anon_sym___inline__] = ACTIONS(2569), + [anon_sym___forceinline] = ACTIONS(2569), + [anon_sym_thread_local] = ACTIONS(2569), + [anon_sym___thread] = ACTIONS(2569), + [anon_sym_const] = ACTIONS(2569), + [anon_sym_constexpr] = ACTIONS(2569), + [anon_sym_volatile] = ACTIONS(2569), + [anon_sym_restrict] = ACTIONS(2569), + [anon_sym___restrict__] = ACTIONS(2569), + [anon_sym__Atomic] = ACTIONS(2569), + [anon_sym__Noreturn] = ACTIONS(2569), + [anon_sym_noreturn] = ACTIONS(2569), + [anon_sym__Nonnull] = ACTIONS(2569), + [anon_sym_mutable] = ACTIONS(2569), + [anon_sym_constinit] = ACTIONS(2569), + [anon_sym_consteval] = ACTIONS(2569), + [anon_sym_alignas] = ACTIONS(2569), + [anon_sym__Alignas] = ACTIONS(2569), + [sym_primitive_type] = ACTIONS(2577), + [anon_sym_enum] = ACTIONS(2569), + [anon_sym_class] = ACTIONS(2569), + [anon_sym_struct] = ACTIONS(2569), + [anon_sym_union] = ACTIONS(2569), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [anon_sym___alignof__] = ACTIONS(107), + [anon_sym___alignof] = ACTIONS(107), + [anon_sym__alignof] = ACTIONS(107), + [anon_sym_alignof] = ACTIONS(107), + [anon_sym__Alignof] = ACTIONS(107), + [anon_sym_offsetof] = ACTIONS(109), + [anon_sym__Generic] = ACTIONS(111), + [anon_sym_asm] = ACTIONS(113), [anon_sym___asm__] = ACTIONS(113), [anon_sym___asm] = ACTIONS(113), [sym_number_literal] = ACTIONS(227), @@ -108311,10 +109025,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(123), [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2573), - [anon_sym_decltype] = ACTIONS(2584), - [anon_sym_typename] = ACTIONS(2573), - [anon_sym_template] = ACTIONS(2587), + [sym_auto] = ACTIONS(2569), + [anon_sym_decltype] = ACTIONS(2580), + [anon_sym_typename] = ACTIONS(2569), + [anon_sym_template] = ACTIONS(2583), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -108326,1064 +109040,377 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [452] = { - [sym_expression] = STATE(3647), - [sym__string] = STATE(3714), - [sym_conditional_expression] = STATE(3908), - [sym_assignment_expression] = STATE(3908), - [sym_pointer_expression] = STATE(3506), - [sym_unary_expression] = STATE(3908), - [sym_binary_expression] = STATE(3908), - [sym_update_expression] = STATE(3908), - [sym_cast_expression] = STATE(3908), - [sym_sizeof_expression] = STATE(3908), - [sym_alignof_expression] = STATE(3908), - [sym_offsetof_expression] = STATE(3908), - [sym_generic_expression] = STATE(3908), - [sym_subscript_expression] = STATE(3506), - [sym_call_expression] = STATE(3506), - [sym_gnu_asm_expression] = STATE(3908), - [sym_extension_expression] = STATE(3908), - [sym_field_expression] = STATE(3506), - [sym_compound_literal_expression] = STATE(3908), - [sym_parenthesized_expression] = STATE(3506), - [sym_char_literal] = STATE(3714), - [sym_concatenated_string] = STATE(3714), - [sym_string_literal] = STATE(2566), - [sym_null] = STATE(3908), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7868), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3908), - [sym_raw_string_literal] = STATE(2566), - [sym_co_await_expression] = STATE(3908), - [sym_new_expression] = STATE(3908), - [sym_delete_expression] = STATE(3908), - [sym_requires_clause] = STATE(3908), - [sym_requires_expression] = STATE(3908), - [sym_lambda_expression] = STATE(3908), - [sym_lambda_capture_specifier] = STATE(5415), - [sym_fold_expression] = STATE(3908), - [sym_parameter_pack_expansion] = STATE(3908), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3506), - [sym_qualified_type_identifier] = STATE(7868), - [sym_user_defined_literal] = STATE(3506), - [sym_identifier] = ACTIONS(3349), - [anon_sym_LPAREN2] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1870), - [anon_sym_TILDE] = ACTIONS(1870), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_PLUS] = ACTIONS(1872), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(3352), - [anon_sym_virtual] = ACTIONS(2573), - [anon_sym_extern] = ACTIONS(2573), - [anon_sym___attribute__] = ACTIONS(2573), - [anon_sym___attribute] = ACTIONS(2573), - [anon_sym_COLON_COLON] = ACTIONS(3355), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2563), - [anon_sym___declspec] = ACTIONS(2573), - [anon_sym_signed] = ACTIONS(2573), - [anon_sym_unsigned] = ACTIONS(2573), - [anon_sym_long] = ACTIONS(2573), - [anon_sym_short] = ACTIONS(2573), - [anon_sym_LBRACK] = ACTIONS(1450), - [anon_sym_static] = ACTIONS(2573), - [anon_sym_register] = ACTIONS(2573), - [anon_sym_inline] = ACTIONS(2573), - [anon_sym___inline] = ACTIONS(2573), - [anon_sym___inline__] = ACTIONS(2573), - [anon_sym___forceinline] = ACTIONS(2573), - [anon_sym_thread_local] = ACTIONS(2573), - [anon_sym___thread] = ACTIONS(2573), - [anon_sym_const] = ACTIONS(2573), - [anon_sym_constexpr] = ACTIONS(2573), - [anon_sym_volatile] = ACTIONS(2573), - [anon_sym_restrict] = ACTIONS(2573), - [anon_sym___restrict__] = ACTIONS(2573), - [anon_sym__Atomic] = ACTIONS(2573), - [anon_sym__Noreturn] = ACTIONS(2573), - [anon_sym_noreturn] = ACTIONS(2573), - [anon_sym__Nonnull] = ACTIONS(2573), - [anon_sym_mutable] = ACTIONS(2573), - [anon_sym_constinit] = ACTIONS(2573), - [anon_sym_consteval] = ACTIONS(2573), - [anon_sym_alignas] = ACTIONS(2573), - [anon_sym__Alignas] = ACTIONS(2573), - [sym_primitive_type] = ACTIONS(3358), - [anon_sym_enum] = ACTIONS(2573), - [anon_sym_class] = ACTIONS(2573), - [anon_sym_struct] = ACTIONS(2573), - [anon_sym_union] = ACTIONS(2573), - [anon_sym_not] = ACTIONS(1872), - [anon_sym_compl] = ACTIONS(1872), - [anon_sym_DASH_DASH] = ACTIONS(1892), - [anon_sym_PLUS_PLUS] = ACTIONS(1892), - [anon_sym_sizeof] = ACTIONS(1894), - [anon_sym___alignof__] = ACTIONS(1896), - [anon_sym___alignof] = ACTIONS(1896), - [anon_sym__alignof] = ACTIONS(1896), - [anon_sym_alignof] = ACTIONS(1896), - [anon_sym__Alignof] = ACTIONS(1896), - [anon_sym_offsetof] = ACTIONS(1898), - [anon_sym__Generic] = ACTIONS(1900), - [anon_sym_asm] = ACTIONS(1902), - [anon_sym___asm__] = ACTIONS(1902), - [anon_sym___asm] = ACTIONS(1902), - [sym_number_literal] = ACTIONS(1904), - [anon_sym_L_SQUOTE] = ACTIONS(1906), - [anon_sym_u_SQUOTE] = ACTIONS(1906), - [anon_sym_U_SQUOTE] = ACTIONS(1906), - [anon_sym_u8_SQUOTE] = ACTIONS(1906), - [anon_sym_SQUOTE] = ACTIONS(1906), - [anon_sym_L_DQUOTE] = ACTIONS(1908), - [anon_sym_u_DQUOTE] = ACTIONS(1908), - [anon_sym_U_DQUOTE] = ACTIONS(1908), - [anon_sym_u8_DQUOTE] = ACTIONS(1908), - [anon_sym_DQUOTE] = ACTIONS(1908), - [sym_true] = ACTIONS(1910), - [sym_false] = ACTIONS(1910), - [anon_sym_NULL] = ACTIONS(1912), - [anon_sym_nullptr] = ACTIONS(1912), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2573), - [anon_sym_decltype] = ACTIONS(2584), - [anon_sym_typename] = ACTIONS(2573), - [anon_sym_template] = ACTIONS(2587), - [anon_sym_delete] = ACTIONS(1916), - [anon_sym_R_DQUOTE] = ACTIONS(1918), - [anon_sym_LR_DQUOTE] = ACTIONS(1918), - [anon_sym_uR_DQUOTE] = ACTIONS(1918), - [anon_sym_UR_DQUOTE] = ACTIONS(1918), - [anon_sym_u8R_DQUOTE] = ACTIONS(1918), - [anon_sym_co_await] = ACTIONS(1920), - [anon_sym_new] = ACTIONS(1922), - [anon_sym_requires] = ACTIONS(1924), - [sym_this] = ACTIONS(1910), - }, - [453] = { - [sym_identifier] = ACTIONS(1940), - [aux_sym_preproc_include_token1] = ACTIONS(1940), - [aux_sym_preproc_def_token1] = ACTIONS(1940), - [aux_sym_preproc_if_token1] = ACTIONS(1940), - [aux_sym_preproc_if_token2] = ACTIONS(1940), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1940), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1940), - [sym_preproc_directive] = ACTIONS(1940), - [anon_sym_LPAREN2] = ACTIONS(1938), - [anon_sym_BANG] = ACTIONS(1938), - [anon_sym_TILDE] = ACTIONS(1938), - [anon_sym_DASH] = ACTIONS(1940), - [anon_sym_PLUS] = ACTIONS(1940), - [anon_sym_STAR] = ACTIONS(1938), - [anon_sym_AMP_AMP] = ACTIONS(1938), - [anon_sym_AMP] = ACTIONS(1940), - [anon_sym_SEMI] = ACTIONS(1938), - [anon_sym___extension__] = ACTIONS(1940), - [anon_sym_typedef] = ACTIONS(1940), - [anon_sym_virtual] = ACTIONS(1940), - [anon_sym_extern] = ACTIONS(1940), - [anon_sym___attribute__] = ACTIONS(1940), - [anon_sym___attribute] = ACTIONS(1940), - [anon_sym_using] = ACTIONS(1940), - [anon_sym_COLON_COLON] = ACTIONS(1938), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1938), - [anon_sym___declspec] = ACTIONS(1940), - [anon_sym___based] = ACTIONS(1940), - [anon_sym___cdecl] = ACTIONS(1940), - [anon_sym___clrcall] = ACTIONS(1940), - [anon_sym___stdcall] = ACTIONS(1940), - [anon_sym___fastcall] = ACTIONS(1940), - [anon_sym___thiscall] = ACTIONS(1940), - [anon_sym___vectorcall] = ACTIONS(1940), - [anon_sym_LBRACE] = ACTIONS(1938), - [anon_sym_signed] = ACTIONS(1940), - [anon_sym_unsigned] = ACTIONS(1940), - [anon_sym_long] = ACTIONS(1940), - [anon_sym_short] = ACTIONS(1940), - [anon_sym_LBRACK] = ACTIONS(1940), - [anon_sym_static] = ACTIONS(1940), - [anon_sym_register] = ACTIONS(1940), - [anon_sym_inline] = ACTIONS(1940), - [anon_sym___inline] = ACTIONS(1940), - [anon_sym___inline__] = ACTIONS(1940), - [anon_sym___forceinline] = ACTIONS(1940), - [anon_sym_thread_local] = ACTIONS(1940), - [anon_sym___thread] = ACTIONS(1940), - [anon_sym_const] = ACTIONS(1940), - [anon_sym_constexpr] = ACTIONS(1940), - [anon_sym_volatile] = ACTIONS(1940), - [anon_sym_restrict] = ACTIONS(1940), - [anon_sym___restrict__] = ACTIONS(1940), - [anon_sym__Atomic] = ACTIONS(1940), - [anon_sym__Noreturn] = ACTIONS(1940), - [anon_sym_noreturn] = ACTIONS(1940), - [anon_sym__Nonnull] = ACTIONS(1940), - [anon_sym_mutable] = ACTIONS(1940), - [anon_sym_constinit] = ACTIONS(1940), - [anon_sym_consteval] = ACTIONS(1940), - [anon_sym_alignas] = ACTIONS(1940), - [anon_sym__Alignas] = ACTIONS(1940), - [sym_primitive_type] = ACTIONS(1940), - [anon_sym_enum] = ACTIONS(1940), - [anon_sym_class] = ACTIONS(1940), - [anon_sym_struct] = ACTIONS(1940), - [anon_sym_union] = ACTIONS(1940), - [anon_sym_if] = ACTIONS(1940), - [anon_sym_else] = ACTIONS(1940), - [anon_sym_switch] = ACTIONS(1940), - [anon_sym_case] = ACTIONS(1940), - [anon_sym_default] = ACTIONS(1940), - [anon_sym_while] = ACTIONS(1940), - [anon_sym_do] = ACTIONS(1940), - [anon_sym_for] = ACTIONS(1940), - [anon_sym_return] = ACTIONS(1940), - [anon_sym_break] = ACTIONS(1940), - [anon_sym_continue] = ACTIONS(1940), - [anon_sym_goto] = ACTIONS(1940), - [anon_sym___try] = ACTIONS(1940), - [anon_sym___leave] = ACTIONS(1940), - [anon_sym_not] = ACTIONS(1940), - [anon_sym_compl] = ACTIONS(1940), - [anon_sym_DASH_DASH] = ACTIONS(1938), - [anon_sym_PLUS_PLUS] = ACTIONS(1938), - [anon_sym_sizeof] = ACTIONS(1940), - [anon_sym___alignof__] = ACTIONS(1940), - [anon_sym___alignof] = ACTIONS(1940), - [anon_sym__alignof] = ACTIONS(1940), - [anon_sym_alignof] = ACTIONS(1940), - [anon_sym__Alignof] = ACTIONS(1940), - [anon_sym_offsetof] = ACTIONS(1940), - [anon_sym__Generic] = ACTIONS(1940), - [anon_sym_asm] = ACTIONS(1940), - [anon_sym___asm__] = ACTIONS(1940), - [anon_sym___asm] = ACTIONS(1940), - [sym_number_literal] = ACTIONS(1938), - [anon_sym_L_SQUOTE] = ACTIONS(1938), - [anon_sym_u_SQUOTE] = ACTIONS(1938), - [anon_sym_U_SQUOTE] = ACTIONS(1938), - [anon_sym_u8_SQUOTE] = ACTIONS(1938), - [anon_sym_SQUOTE] = ACTIONS(1938), - [anon_sym_L_DQUOTE] = ACTIONS(1938), - [anon_sym_u_DQUOTE] = ACTIONS(1938), - [anon_sym_U_DQUOTE] = ACTIONS(1938), - [anon_sym_u8_DQUOTE] = ACTIONS(1938), - [anon_sym_DQUOTE] = ACTIONS(1938), - [sym_true] = ACTIONS(1940), - [sym_false] = ACTIONS(1940), - [anon_sym_NULL] = ACTIONS(1940), - [anon_sym_nullptr] = ACTIONS(1940), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1940), - [anon_sym_decltype] = ACTIONS(1940), - [anon_sym_explicit] = ACTIONS(1940), - [anon_sym_typename] = ACTIONS(1940), - [anon_sym_template] = ACTIONS(1940), - [anon_sym_operator] = ACTIONS(1940), - [anon_sym_try] = ACTIONS(1940), - [anon_sym_delete] = ACTIONS(1940), - [anon_sym_throw] = ACTIONS(1940), - [anon_sym_namespace] = ACTIONS(1940), - [anon_sym_static_assert] = ACTIONS(1940), - [anon_sym_concept] = ACTIONS(1940), - [anon_sym_co_return] = ACTIONS(1940), - [anon_sym_co_yield] = ACTIONS(1940), - [anon_sym_catch] = ACTIONS(1940), - [anon_sym_R_DQUOTE] = ACTIONS(1938), - [anon_sym_LR_DQUOTE] = ACTIONS(1938), - [anon_sym_uR_DQUOTE] = ACTIONS(1938), - [anon_sym_UR_DQUOTE] = ACTIONS(1938), - [anon_sym_u8R_DQUOTE] = ACTIONS(1938), - [anon_sym_co_await] = ACTIONS(1940), - [anon_sym_new] = ACTIONS(1940), - [anon_sym_requires] = ACTIONS(1940), - [sym_this] = ACTIONS(1940), - }, - [454] = { - [sym_identifier] = ACTIONS(1936), - [aux_sym_preproc_include_token1] = ACTIONS(1936), - [aux_sym_preproc_def_token1] = ACTIONS(1936), - [aux_sym_preproc_if_token1] = ACTIONS(1936), - [aux_sym_preproc_if_token2] = ACTIONS(1936), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1936), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1936), - [sym_preproc_directive] = ACTIONS(1936), - [anon_sym_LPAREN2] = ACTIONS(1934), - [anon_sym_BANG] = ACTIONS(1934), - [anon_sym_TILDE] = ACTIONS(1934), - [anon_sym_DASH] = ACTIONS(1936), - [anon_sym_PLUS] = ACTIONS(1936), - [anon_sym_STAR] = ACTIONS(1934), - [anon_sym_AMP_AMP] = ACTIONS(1934), - [anon_sym_AMP] = ACTIONS(1936), - [anon_sym_SEMI] = ACTIONS(1934), - [anon_sym___extension__] = ACTIONS(1936), - [anon_sym_typedef] = ACTIONS(1936), - [anon_sym_virtual] = ACTIONS(1936), - [anon_sym_extern] = ACTIONS(1936), - [anon_sym___attribute__] = ACTIONS(1936), - [anon_sym___attribute] = ACTIONS(1936), - [anon_sym_using] = ACTIONS(1936), - [anon_sym_COLON_COLON] = ACTIONS(1934), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1934), - [anon_sym___declspec] = ACTIONS(1936), - [anon_sym___based] = ACTIONS(1936), - [anon_sym___cdecl] = ACTIONS(1936), - [anon_sym___clrcall] = ACTIONS(1936), - [anon_sym___stdcall] = ACTIONS(1936), - [anon_sym___fastcall] = ACTIONS(1936), - [anon_sym___thiscall] = ACTIONS(1936), - [anon_sym___vectorcall] = ACTIONS(1936), - [anon_sym_LBRACE] = ACTIONS(1934), - [anon_sym_signed] = ACTIONS(1936), - [anon_sym_unsigned] = ACTIONS(1936), - [anon_sym_long] = ACTIONS(1936), - [anon_sym_short] = ACTIONS(1936), - [anon_sym_LBRACK] = ACTIONS(1936), - [anon_sym_static] = ACTIONS(1936), - [anon_sym_register] = ACTIONS(1936), - [anon_sym_inline] = ACTIONS(1936), - [anon_sym___inline] = ACTIONS(1936), - [anon_sym___inline__] = ACTIONS(1936), - [anon_sym___forceinline] = ACTIONS(1936), - [anon_sym_thread_local] = ACTIONS(1936), - [anon_sym___thread] = ACTIONS(1936), - [anon_sym_const] = ACTIONS(1936), - [anon_sym_constexpr] = ACTIONS(1936), - [anon_sym_volatile] = ACTIONS(1936), - [anon_sym_restrict] = ACTIONS(1936), - [anon_sym___restrict__] = ACTIONS(1936), - [anon_sym__Atomic] = ACTIONS(1936), - [anon_sym__Noreturn] = ACTIONS(1936), - [anon_sym_noreturn] = ACTIONS(1936), - [anon_sym__Nonnull] = ACTIONS(1936), - [anon_sym_mutable] = ACTIONS(1936), - [anon_sym_constinit] = ACTIONS(1936), - [anon_sym_consteval] = ACTIONS(1936), - [anon_sym_alignas] = ACTIONS(1936), - [anon_sym__Alignas] = ACTIONS(1936), - [sym_primitive_type] = ACTIONS(1936), - [anon_sym_enum] = ACTIONS(1936), - [anon_sym_class] = ACTIONS(1936), - [anon_sym_struct] = ACTIONS(1936), - [anon_sym_union] = ACTIONS(1936), - [anon_sym_if] = ACTIONS(1936), - [anon_sym_else] = ACTIONS(1936), - [anon_sym_switch] = ACTIONS(1936), - [anon_sym_case] = ACTIONS(1936), - [anon_sym_default] = ACTIONS(1936), - [anon_sym_while] = ACTIONS(1936), - [anon_sym_do] = ACTIONS(1936), - [anon_sym_for] = ACTIONS(1936), - [anon_sym_return] = ACTIONS(1936), - [anon_sym_break] = ACTIONS(1936), - [anon_sym_continue] = ACTIONS(1936), - [anon_sym_goto] = ACTIONS(1936), - [anon_sym___try] = ACTIONS(1936), - [anon_sym___leave] = ACTIONS(1936), - [anon_sym_not] = ACTIONS(1936), - [anon_sym_compl] = ACTIONS(1936), - [anon_sym_DASH_DASH] = ACTIONS(1934), - [anon_sym_PLUS_PLUS] = ACTIONS(1934), - [anon_sym_sizeof] = ACTIONS(1936), - [anon_sym___alignof__] = ACTIONS(1936), - [anon_sym___alignof] = ACTIONS(1936), - [anon_sym__alignof] = ACTIONS(1936), - [anon_sym_alignof] = ACTIONS(1936), - [anon_sym__Alignof] = ACTIONS(1936), - [anon_sym_offsetof] = ACTIONS(1936), - [anon_sym__Generic] = ACTIONS(1936), - [anon_sym_asm] = ACTIONS(1936), - [anon_sym___asm__] = ACTIONS(1936), - [anon_sym___asm] = ACTIONS(1936), - [sym_number_literal] = ACTIONS(1934), - [anon_sym_L_SQUOTE] = ACTIONS(1934), - [anon_sym_u_SQUOTE] = ACTIONS(1934), - [anon_sym_U_SQUOTE] = ACTIONS(1934), - [anon_sym_u8_SQUOTE] = ACTIONS(1934), - [anon_sym_SQUOTE] = ACTIONS(1934), - [anon_sym_L_DQUOTE] = ACTIONS(1934), - [anon_sym_u_DQUOTE] = ACTIONS(1934), - [anon_sym_U_DQUOTE] = ACTIONS(1934), - [anon_sym_u8_DQUOTE] = ACTIONS(1934), - [anon_sym_DQUOTE] = ACTIONS(1934), - [sym_true] = ACTIONS(1936), - [sym_false] = ACTIONS(1936), - [anon_sym_NULL] = ACTIONS(1936), - [anon_sym_nullptr] = ACTIONS(1936), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1936), - [anon_sym_decltype] = ACTIONS(1936), - [anon_sym_explicit] = ACTIONS(1936), - [anon_sym_typename] = ACTIONS(1936), - [anon_sym_template] = ACTIONS(1936), - [anon_sym_operator] = ACTIONS(1936), - [anon_sym_try] = ACTIONS(1936), - [anon_sym_delete] = ACTIONS(1936), - [anon_sym_throw] = ACTIONS(1936), - [anon_sym_namespace] = ACTIONS(1936), - [anon_sym_static_assert] = ACTIONS(1936), - [anon_sym_concept] = ACTIONS(1936), - [anon_sym_co_return] = ACTIONS(1936), - [anon_sym_co_yield] = ACTIONS(1936), - [anon_sym_catch] = ACTIONS(1936), - [anon_sym_R_DQUOTE] = ACTIONS(1934), - [anon_sym_LR_DQUOTE] = ACTIONS(1934), - [anon_sym_uR_DQUOTE] = ACTIONS(1934), - [anon_sym_UR_DQUOTE] = ACTIONS(1934), - [anon_sym_u8R_DQUOTE] = ACTIONS(1934), - [anon_sym_co_await] = ACTIONS(1936), - [anon_sym_new] = ACTIONS(1936), - [anon_sym_requires] = ACTIONS(1936), - [sym_this] = ACTIONS(1936), - }, [455] = { - [sym_identifier] = ACTIONS(1940), - [aux_sym_preproc_include_token1] = ACTIONS(1940), - [aux_sym_preproc_def_token1] = ACTIONS(1940), - [aux_sym_preproc_if_token1] = ACTIONS(1940), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1940), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1940), - [sym_preproc_directive] = ACTIONS(1940), - [anon_sym_LPAREN2] = ACTIONS(1938), - [anon_sym_BANG] = ACTIONS(1938), - [anon_sym_TILDE] = ACTIONS(1938), - [anon_sym_DASH] = ACTIONS(1940), - [anon_sym_PLUS] = ACTIONS(1940), - [anon_sym_STAR] = ACTIONS(1938), - [anon_sym_AMP_AMP] = ACTIONS(1938), - [anon_sym_AMP] = ACTIONS(1940), - [anon_sym_SEMI] = ACTIONS(1938), - [anon_sym___extension__] = ACTIONS(1940), - [anon_sym_typedef] = ACTIONS(1940), - [anon_sym_virtual] = ACTIONS(1940), - [anon_sym_extern] = ACTIONS(1940), - [anon_sym___attribute__] = ACTIONS(1940), - [anon_sym___attribute] = ACTIONS(1940), - [anon_sym_using] = ACTIONS(1940), - [anon_sym_COLON_COLON] = ACTIONS(1938), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1938), - [anon_sym___declspec] = ACTIONS(1940), - [anon_sym___based] = ACTIONS(1940), - [anon_sym___cdecl] = ACTIONS(1940), - [anon_sym___clrcall] = ACTIONS(1940), - [anon_sym___stdcall] = ACTIONS(1940), - [anon_sym___fastcall] = ACTIONS(1940), - [anon_sym___thiscall] = ACTIONS(1940), - [anon_sym___vectorcall] = ACTIONS(1940), - [anon_sym_LBRACE] = ACTIONS(1938), - [anon_sym_RBRACE] = ACTIONS(1938), - [anon_sym_signed] = ACTIONS(1940), - [anon_sym_unsigned] = ACTIONS(1940), - [anon_sym_long] = ACTIONS(1940), - [anon_sym_short] = ACTIONS(1940), - [anon_sym_LBRACK] = ACTIONS(1940), - [anon_sym_static] = ACTIONS(1940), - [anon_sym_register] = ACTIONS(1940), - [anon_sym_inline] = ACTIONS(1940), - [anon_sym___inline] = ACTIONS(1940), - [anon_sym___inline__] = ACTIONS(1940), - [anon_sym___forceinline] = ACTIONS(1940), - [anon_sym_thread_local] = ACTIONS(1940), - [anon_sym___thread] = ACTIONS(1940), - [anon_sym_const] = ACTIONS(1940), - [anon_sym_constexpr] = ACTIONS(1940), - [anon_sym_volatile] = ACTIONS(1940), - [anon_sym_restrict] = ACTIONS(1940), - [anon_sym___restrict__] = ACTIONS(1940), - [anon_sym__Atomic] = ACTIONS(1940), - [anon_sym__Noreturn] = ACTIONS(1940), - [anon_sym_noreturn] = ACTIONS(1940), - [anon_sym__Nonnull] = ACTIONS(1940), - [anon_sym_mutable] = ACTIONS(1940), - [anon_sym_constinit] = ACTIONS(1940), - [anon_sym_consteval] = ACTIONS(1940), - [anon_sym_alignas] = ACTIONS(1940), - [anon_sym__Alignas] = ACTIONS(1940), - [sym_primitive_type] = ACTIONS(1940), - [anon_sym_enum] = ACTIONS(1940), - [anon_sym_class] = ACTIONS(1940), - [anon_sym_struct] = ACTIONS(1940), - [anon_sym_union] = ACTIONS(1940), - [anon_sym_if] = ACTIONS(1940), - [anon_sym_else] = ACTIONS(1940), - [anon_sym_switch] = ACTIONS(1940), - [anon_sym_case] = ACTIONS(1940), - [anon_sym_default] = ACTIONS(1940), - [anon_sym_while] = ACTIONS(1940), - [anon_sym_do] = ACTIONS(1940), - [anon_sym_for] = ACTIONS(1940), - [anon_sym_return] = ACTIONS(1940), - [anon_sym_break] = ACTIONS(1940), - [anon_sym_continue] = ACTIONS(1940), - [anon_sym_goto] = ACTIONS(1940), - [anon_sym___try] = ACTIONS(1940), - [anon_sym___leave] = ACTIONS(1940), - [anon_sym_not] = ACTIONS(1940), - [anon_sym_compl] = ACTIONS(1940), - [anon_sym_DASH_DASH] = ACTIONS(1938), - [anon_sym_PLUS_PLUS] = ACTIONS(1938), - [anon_sym_sizeof] = ACTIONS(1940), - [anon_sym___alignof__] = ACTIONS(1940), - [anon_sym___alignof] = ACTIONS(1940), - [anon_sym__alignof] = ACTIONS(1940), - [anon_sym_alignof] = ACTIONS(1940), - [anon_sym__Alignof] = ACTIONS(1940), - [anon_sym_offsetof] = ACTIONS(1940), - [anon_sym__Generic] = ACTIONS(1940), - [anon_sym_asm] = ACTIONS(1940), - [anon_sym___asm__] = ACTIONS(1940), - [anon_sym___asm] = ACTIONS(1940), - [sym_number_literal] = ACTIONS(1938), - [anon_sym_L_SQUOTE] = ACTIONS(1938), - [anon_sym_u_SQUOTE] = ACTIONS(1938), - [anon_sym_U_SQUOTE] = ACTIONS(1938), - [anon_sym_u8_SQUOTE] = ACTIONS(1938), - [anon_sym_SQUOTE] = ACTIONS(1938), - [anon_sym_L_DQUOTE] = ACTIONS(1938), - [anon_sym_u_DQUOTE] = ACTIONS(1938), - [anon_sym_U_DQUOTE] = ACTIONS(1938), - [anon_sym_u8_DQUOTE] = ACTIONS(1938), - [anon_sym_DQUOTE] = ACTIONS(1938), - [sym_true] = ACTIONS(1940), - [sym_false] = ACTIONS(1940), - [anon_sym_NULL] = ACTIONS(1940), - [anon_sym_nullptr] = ACTIONS(1940), + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_unaligned_ptr_modifier] = STATE(4069), + [sym_ms_pointer_modifier] = STATE(2958), + [sym__declarator] = STATE(6623), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6145), + [sym_array_declarator] = STATE(6145), + [sym_type_qualifier] = STATE(4022), + [sym_alignas_qualifier] = STATE(4325), + [sym_expression] = STATE(2432), + [sym__string] = STATE(2917), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(2917), + [sym_concatenated_string] = STATE(2917), + [sym_string_literal] = STATE(2114), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3324), + [sym_raw_string_literal] = STATE(2114), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5796), + [sym_qualified_identifier] = STATE(3325), + [sym_qualified_type_identifier] = STATE(7728), + [sym_operator_name] = STATE(6145), + [sym_user_defined_literal] = STATE(2450), + [aux_sym__type_definition_type_repeat1] = STATE(4022), + [aux_sym_pointer_declarator_repeat1] = STATE(2958), + [sym_identifier] = ACTIONS(3347), + [anon_sym_LPAREN2] = ACTIONS(3349), + [anon_sym_BANG] = ACTIONS(1994), + [anon_sym_TILDE] = ACTIONS(3351), + [anon_sym_DASH] = ACTIONS(1992), + [anon_sym_PLUS] = ACTIONS(1992), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym___extension__] = ACTIONS(3353), + [anon_sym_COLON_COLON] = ACTIONS(1998), + [anon_sym___based] = ACTIONS(53), + [sym_ms_restrict_modifier] = ACTIONS(3335), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(3335), + [sym_ms_signed_ptr_modifier] = ACTIONS(3335), + [anon_sym__unaligned] = ACTIONS(3337), + [anon_sym___unaligned] = ACTIONS(3337), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_const] = ACTIONS(3339), + [anon_sym_constexpr] = ACTIONS(3339), + [anon_sym_volatile] = ACTIONS(3339), + [anon_sym_restrict] = ACTIONS(3339), + [anon_sym___restrict__] = ACTIONS(3339), + [anon_sym__Atomic] = ACTIONS(3339), + [anon_sym__Noreturn] = ACTIONS(3339), + [anon_sym_noreturn] = ACTIONS(3339), + [anon_sym__Nonnull] = ACTIONS(3339), + [anon_sym_mutable] = ACTIONS(3339), + [anon_sym_constinit] = ACTIONS(3339), + [anon_sym_consteval] = ACTIONS(3339), + [anon_sym_alignas] = ACTIONS(3341), + [anon_sym__Alignas] = ACTIONS(3341), + [sym_primitive_type] = ACTIONS(1956), + [anon_sym_not] = ACTIONS(1992), + [anon_sym_compl] = ACTIONS(1992), + [anon_sym_DASH_DASH] = ACTIONS(3355), + [anon_sym_PLUS_PLUS] = ACTIONS(3355), + [anon_sym_sizeof] = ACTIONS(2000), + [anon_sym___alignof__] = ACTIONS(1960), + [anon_sym___alignof] = ACTIONS(1960), + [anon_sym__alignof] = ACTIONS(1960), + [anon_sym_alignof] = ACTIONS(1960), + [anon_sym__Alignof] = ACTIONS(1960), + [anon_sym_offsetof] = ACTIONS(1962), + [anon_sym__Generic] = ACTIONS(1964), + [anon_sym_asm] = ACTIONS(1966), + [anon_sym___asm__] = ACTIONS(1966), + [anon_sym___asm] = ACTIONS(1966), + [sym_number_literal] = ACTIONS(2002), + [anon_sym_L_SQUOTE] = ACTIONS(2004), + [anon_sym_u_SQUOTE] = ACTIONS(2004), + [anon_sym_U_SQUOTE] = ACTIONS(2004), + [anon_sym_u8_SQUOTE] = ACTIONS(2004), + [anon_sym_SQUOTE] = ACTIONS(2004), + [anon_sym_L_DQUOTE] = ACTIONS(2006), + [anon_sym_u_DQUOTE] = ACTIONS(2006), + [anon_sym_U_DQUOTE] = ACTIONS(2006), + [anon_sym_u8_DQUOTE] = ACTIONS(2006), + [anon_sym_DQUOTE] = ACTIONS(2006), + [sym_true] = ACTIONS(1974), + [sym_false] = ACTIONS(1974), + [anon_sym_NULL] = ACTIONS(1976), + [anon_sym_nullptr] = ACTIONS(1976), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1940), - [anon_sym_decltype] = ACTIONS(1940), - [anon_sym_explicit] = ACTIONS(1940), - [anon_sym_typename] = ACTIONS(1940), - [anon_sym_template] = ACTIONS(1940), - [anon_sym_operator] = ACTIONS(1940), - [anon_sym_try] = ACTIONS(1940), - [anon_sym_delete] = ACTIONS(1940), - [anon_sym_throw] = ACTIONS(1940), - [anon_sym_namespace] = ACTIONS(1940), - [anon_sym_static_assert] = ACTIONS(1940), - [anon_sym_concept] = ACTIONS(1940), - [anon_sym_co_return] = ACTIONS(1940), - [anon_sym_co_yield] = ACTIONS(1940), - [anon_sym_catch] = ACTIONS(1940), - [anon_sym_R_DQUOTE] = ACTIONS(1938), - [anon_sym_LR_DQUOTE] = ACTIONS(1938), - [anon_sym_uR_DQUOTE] = ACTIONS(1938), - [anon_sym_UR_DQUOTE] = ACTIONS(1938), - [anon_sym_u8R_DQUOTE] = ACTIONS(1938), - [anon_sym_co_await] = ACTIONS(1940), - [anon_sym_new] = ACTIONS(1940), - [anon_sym_requires] = ACTIONS(1940), - [sym_this] = ACTIONS(1940), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_operator] = ACTIONS(1850), + [anon_sym_delete] = ACTIONS(2008), + [anon_sym_R_DQUOTE] = ACTIONS(2010), + [anon_sym_LR_DQUOTE] = ACTIONS(2010), + [anon_sym_uR_DQUOTE] = ACTIONS(2010), + [anon_sym_UR_DQUOTE] = ACTIONS(2010), + [anon_sym_u8R_DQUOTE] = ACTIONS(2010), + [anon_sym_co_await] = ACTIONS(2012), + [anon_sym_new] = ACTIONS(2014), + [anon_sym_requires] = ACTIONS(1988), + [sym_this] = ACTIONS(1974), }, [456] = { - [sym_else_clause] = STATE(596), - [sym_identifier] = ACTIONS(2623), - [aux_sym_preproc_include_token1] = ACTIONS(2623), - [aux_sym_preproc_def_token1] = ACTIONS(2623), - [aux_sym_preproc_if_token1] = ACTIONS(2623), - [aux_sym_preproc_if_token2] = ACTIONS(2623), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2623), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2623), - [sym_preproc_directive] = ACTIONS(2623), - [anon_sym_LPAREN2] = ACTIONS(2625), - [anon_sym_BANG] = ACTIONS(2625), - [anon_sym_TILDE] = ACTIONS(2625), - [anon_sym_DASH] = ACTIONS(2623), - [anon_sym_PLUS] = ACTIONS(2623), - [anon_sym_STAR] = ACTIONS(2625), - [anon_sym_AMP_AMP] = ACTIONS(2625), - [anon_sym_AMP] = ACTIONS(2623), - [anon_sym_SEMI] = ACTIONS(2625), - [anon_sym___extension__] = ACTIONS(2623), - [anon_sym_typedef] = ACTIONS(2623), - [anon_sym_virtual] = ACTIONS(2623), - [anon_sym_extern] = ACTIONS(2623), - [anon_sym___attribute__] = ACTIONS(2623), - [anon_sym___attribute] = ACTIONS(2623), - [anon_sym_using] = ACTIONS(2623), - [anon_sym_COLON_COLON] = ACTIONS(2625), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2625), - [anon_sym___declspec] = ACTIONS(2623), - [anon_sym___based] = ACTIONS(2623), - [anon_sym___cdecl] = ACTIONS(2623), - [anon_sym___clrcall] = ACTIONS(2623), - [anon_sym___stdcall] = ACTIONS(2623), - [anon_sym___fastcall] = ACTIONS(2623), - [anon_sym___thiscall] = ACTIONS(2623), - [anon_sym___vectorcall] = ACTIONS(2623), - [anon_sym_LBRACE] = ACTIONS(2625), - [anon_sym_signed] = ACTIONS(2623), - [anon_sym_unsigned] = ACTIONS(2623), - [anon_sym_long] = ACTIONS(2623), - [anon_sym_short] = ACTIONS(2623), - [anon_sym_LBRACK] = ACTIONS(2623), - [anon_sym_static] = ACTIONS(2623), - [anon_sym_register] = ACTIONS(2623), - [anon_sym_inline] = ACTIONS(2623), - [anon_sym___inline] = ACTIONS(2623), - [anon_sym___inline__] = ACTIONS(2623), - [anon_sym___forceinline] = ACTIONS(2623), - [anon_sym_thread_local] = ACTIONS(2623), - [anon_sym___thread] = ACTIONS(2623), - [anon_sym_const] = ACTIONS(2623), - [anon_sym_constexpr] = ACTIONS(2623), - [anon_sym_volatile] = ACTIONS(2623), - [anon_sym_restrict] = ACTIONS(2623), - [anon_sym___restrict__] = ACTIONS(2623), - [anon_sym__Atomic] = ACTIONS(2623), - [anon_sym__Noreturn] = ACTIONS(2623), - [anon_sym_noreturn] = ACTIONS(2623), - [anon_sym__Nonnull] = ACTIONS(2623), - [anon_sym_mutable] = ACTIONS(2623), - [anon_sym_constinit] = ACTIONS(2623), - [anon_sym_consteval] = ACTIONS(2623), - [anon_sym_alignas] = ACTIONS(2623), - [anon_sym__Alignas] = ACTIONS(2623), - [sym_primitive_type] = ACTIONS(2623), - [anon_sym_enum] = ACTIONS(2623), - [anon_sym_class] = ACTIONS(2623), - [anon_sym_struct] = ACTIONS(2623), - [anon_sym_union] = ACTIONS(2623), - [anon_sym_if] = ACTIONS(2623), - [anon_sym_else] = ACTIONS(3361), - [anon_sym_switch] = ACTIONS(2623), - [anon_sym_case] = ACTIONS(2623), - [anon_sym_default] = ACTIONS(2623), - [anon_sym_while] = ACTIONS(2623), - [anon_sym_do] = ACTIONS(2623), - [anon_sym_for] = ACTIONS(2623), - [anon_sym_return] = ACTIONS(2623), - [anon_sym_break] = ACTIONS(2623), - [anon_sym_continue] = ACTIONS(2623), - [anon_sym_goto] = ACTIONS(2623), - [anon_sym___try] = ACTIONS(2623), - [anon_sym___leave] = ACTIONS(2623), - [anon_sym_not] = ACTIONS(2623), - [anon_sym_compl] = ACTIONS(2623), - [anon_sym_DASH_DASH] = ACTIONS(2625), - [anon_sym_PLUS_PLUS] = ACTIONS(2625), - [anon_sym_sizeof] = ACTIONS(2623), - [anon_sym___alignof__] = ACTIONS(2623), - [anon_sym___alignof] = ACTIONS(2623), - [anon_sym__alignof] = ACTIONS(2623), - [anon_sym_alignof] = ACTIONS(2623), - [anon_sym__Alignof] = ACTIONS(2623), - [anon_sym_offsetof] = ACTIONS(2623), - [anon_sym__Generic] = ACTIONS(2623), - [anon_sym_asm] = ACTIONS(2623), - [anon_sym___asm__] = ACTIONS(2623), - [anon_sym___asm] = ACTIONS(2623), - [sym_number_literal] = ACTIONS(2625), - [anon_sym_L_SQUOTE] = ACTIONS(2625), - [anon_sym_u_SQUOTE] = ACTIONS(2625), - [anon_sym_U_SQUOTE] = ACTIONS(2625), - [anon_sym_u8_SQUOTE] = ACTIONS(2625), - [anon_sym_SQUOTE] = ACTIONS(2625), - [anon_sym_L_DQUOTE] = ACTIONS(2625), - [anon_sym_u_DQUOTE] = ACTIONS(2625), - [anon_sym_U_DQUOTE] = ACTIONS(2625), - [anon_sym_u8_DQUOTE] = ACTIONS(2625), - [anon_sym_DQUOTE] = ACTIONS(2625), - [sym_true] = ACTIONS(2623), - [sym_false] = ACTIONS(2623), - [anon_sym_NULL] = ACTIONS(2623), - [anon_sym_nullptr] = ACTIONS(2623), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2623), - [anon_sym_decltype] = ACTIONS(2623), - [anon_sym_explicit] = ACTIONS(2623), - [anon_sym_typename] = ACTIONS(2623), - [anon_sym_template] = ACTIONS(2623), - [anon_sym_operator] = ACTIONS(2623), - [anon_sym_try] = ACTIONS(2623), - [anon_sym_delete] = ACTIONS(2623), - [anon_sym_throw] = ACTIONS(2623), - [anon_sym_namespace] = ACTIONS(2623), - [anon_sym_static_assert] = ACTIONS(2623), - [anon_sym_concept] = ACTIONS(2623), - [anon_sym_co_return] = ACTIONS(2623), - [anon_sym_co_yield] = ACTIONS(2623), - [anon_sym_R_DQUOTE] = ACTIONS(2625), - [anon_sym_LR_DQUOTE] = ACTIONS(2625), - [anon_sym_uR_DQUOTE] = ACTIONS(2625), - [anon_sym_UR_DQUOTE] = ACTIONS(2625), - [anon_sym_u8R_DQUOTE] = ACTIONS(2625), - [anon_sym_co_await] = ACTIONS(2623), - [anon_sym_new] = ACTIONS(2623), - [anon_sym_requires] = ACTIONS(2623), - [sym_this] = ACTIONS(2623), - }, - [457] = { - [sym_identifier] = ACTIONS(1936), - [aux_sym_preproc_include_token1] = ACTIONS(1936), - [aux_sym_preproc_def_token1] = ACTIONS(1936), - [aux_sym_preproc_if_token1] = ACTIONS(1936), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1936), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1936), - [sym_preproc_directive] = ACTIONS(1936), - [anon_sym_LPAREN2] = ACTIONS(1934), - [anon_sym_BANG] = ACTIONS(1934), - [anon_sym_TILDE] = ACTIONS(1934), - [anon_sym_DASH] = ACTIONS(1936), - [anon_sym_PLUS] = ACTIONS(1936), - [anon_sym_STAR] = ACTIONS(1934), - [anon_sym_AMP_AMP] = ACTIONS(1934), - [anon_sym_AMP] = ACTIONS(1936), - [anon_sym_SEMI] = ACTIONS(1934), - [anon_sym___extension__] = ACTIONS(1936), - [anon_sym_typedef] = ACTIONS(1936), - [anon_sym_virtual] = ACTIONS(1936), - [anon_sym_extern] = ACTIONS(1936), - [anon_sym___attribute__] = ACTIONS(1936), - [anon_sym___attribute] = ACTIONS(1936), - [anon_sym_using] = ACTIONS(1936), - [anon_sym_COLON_COLON] = ACTIONS(1934), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1934), - [anon_sym___declspec] = ACTIONS(1936), - [anon_sym___based] = ACTIONS(1936), - [anon_sym___cdecl] = ACTIONS(1936), - [anon_sym___clrcall] = ACTIONS(1936), - [anon_sym___stdcall] = ACTIONS(1936), - [anon_sym___fastcall] = ACTIONS(1936), - [anon_sym___thiscall] = ACTIONS(1936), - [anon_sym___vectorcall] = ACTIONS(1936), - [anon_sym_LBRACE] = ACTIONS(1934), - [anon_sym_RBRACE] = ACTIONS(1934), - [anon_sym_signed] = ACTIONS(1936), - [anon_sym_unsigned] = ACTIONS(1936), - [anon_sym_long] = ACTIONS(1936), - [anon_sym_short] = ACTIONS(1936), - [anon_sym_LBRACK] = ACTIONS(1936), - [anon_sym_static] = ACTIONS(1936), - [anon_sym_register] = ACTIONS(1936), - [anon_sym_inline] = ACTIONS(1936), - [anon_sym___inline] = ACTIONS(1936), - [anon_sym___inline__] = ACTIONS(1936), - [anon_sym___forceinline] = ACTIONS(1936), - [anon_sym_thread_local] = ACTIONS(1936), - [anon_sym___thread] = ACTIONS(1936), - [anon_sym_const] = ACTIONS(1936), - [anon_sym_constexpr] = ACTIONS(1936), - [anon_sym_volatile] = ACTIONS(1936), - [anon_sym_restrict] = ACTIONS(1936), - [anon_sym___restrict__] = ACTIONS(1936), - [anon_sym__Atomic] = ACTIONS(1936), - [anon_sym__Noreturn] = ACTIONS(1936), - [anon_sym_noreturn] = ACTIONS(1936), - [anon_sym__Nonnull] = ACTIONS(1936), - [anon_sym_mutable] = ACTIONS(1936), - [anon_sym_constinit] = ACTIONS(1936), - [anon_sym_consteval] = ACTIONS(1936), - [anon_sym_alignas] = ACTIONS(1936), - [anon_sym__Alignas] = ACTIONS(1936), - [sym_primitive_type] = ACTIONS(1936), - [anon_sym_enum] = ACTIONS(1936), - [anon_sym_class] = ACTIONS(1936), - [anon_sym_struct] = ACTIONS(1936), - [anon_sym_union] = ACTIONS(1936), - [anon_sym_if] = ACTIONS(1936), - [anon_sym_else] = ACTIONS(1936), - [anon_sym_switch] = ACTIONS(1936), - [anon_sym_case] = ACTIONS(1936), - [anon_sym_default] = ACTIONS(1936), - [anon_sym_while] = ACTIONS(1936), - [anon_sym_do] = ACTIONS(1936), - [anon_sym_for] = ACTIONS(1936), - [anon_sym_return] = ACTIONS(1936), - [anon_sym_break] = ACTIONS(1936), - [anon_sym_continue] = ACTIONS(1936), - [anon_sym_goto] = ACTIONS(1936), - [anon_sym___try] = ACTIONS(1936), - [anon_sym___leave] = ACTIONS(1936), - [anon_sym_not] = ACTIONS(1936), - [anon_sym_compl] = ACTIONS(1936), - [anon_sym_DASH_DASH] = ACTIONS(1934), - [anon_sym_PLUS_PLUS] = ACTIONS(1934), - [anon_sym_sizeof] = ACTIONS(1936), - [anon_sym___alignof__] = ACTIONS(1936), - [anon_sym___alignof] = ACTIONS(1936), - [anon_sym__alignof] = ACTIONS(1936), - [anon_sym_alignof] = ACTIONS(1936), - [anon_sym__Alignof] = ACTIONS(1936), - [anon_sym_offsetof] = ACTIONS(1936), - [anon_sym__Generic] = ACTIONS(1936), - [anon_sym_asm] = ACTIONS(1936), - [anon_sym___asm__] = ACTIONS(1936), - [anon_sym___asm] = ACTIONS(1936), - [sym_number_literal] = ACTIONS(1934), - [anon_sym_L_SQUOTE] = ACTIONS(1934), - [anon_sym_u_SQUOTE] = ACTIONS(1934), - [anon_sym_U_SQUOTE] = ACTIONS(1934), - [anon_sym_u8_SQUOTE] = ACTIONS(1934), - [anon_sym_SQUOTE] = ACTIONS(1934), - [anon_sym_L_DQUOTE] = ACTIONS(1934), - [anon_sym_u_DQUOTE] = ACTIONS(1934), - [anon_sym_U_DQUOTE] = ACTIONS(1934), - [anon_sym_u8_DQUOTE] = ACTIONS(1934), - [anon_sym_DQUOTE] = ACTIONS(1934), - [sym_true] = ACTIONS(1936), - [sym_false] = ACTIONS(1936), - [anon_sym_NULL] = ACTIONS(1936), - [anon_sym_nullptr] = ACTIONS(1936), + [sym_expression] = STATE(4345), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(2547), + [anon_sym_LPAREN2] = ACTIONS(1252), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2601), + [anon_sym_virtual] = ACTIONS(2569), + [anon_sym_extern] = ACTIONS(2569), + [anon_sym___attribute__] = ACTIONS(2569), + [anon_sym___attribute] = ACTIONS(2569), + [anon_sym_COLON_COLON] = ACTIONS(2571), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2559), + [anon_sym___declspec] = ACTIONS(2569), + [anon_sym_signed] = ACTIONS(2569), + [anon_sym_unsigned] = ACTIONS(2569), + [anon_sym_long] = ACTIONS(2569), + [anon_sym_short] = ACTIONS(2569), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_static] = ACTIONS(2569), + [anon_sym_register] = ACTIONS(2569), + [anon_sym_inline] = ACTIONS(2569), + [anon_sym___inline] = ACTIONS(2569), + [anon_sym___inline__] = ACTIONS(2569), + [anon_sym___forceinline] = ACTIONS(2569), + [anon_sym_thread_local] = ACTIONS(2569), + [anon_sym___thread] = ACTIONS(2569), + [anon_sym_const] = ACTIONS(2569), + [anon_sym_constexpr] = ACTIONS(2569), + [anon_sym_volatile] = ACTIONS(2569), + [anon_sym_restrict] = ACTIONS(2569), + [anon_sym___restrict__] = ACTIONS(2569), + [anon_sym__Atomic] = ACTIONS(2569), + [anon_sym__Noreturn] = ACTIONS(2569), + [anon_sym_noreturn] = ACTIONS(2569), + [anon_sym__Nonnull] = ACTIONS(2569), + [anon_sym_mutable] = ACTIONS(2569), + [anon_sym_constinit] = ACTIONS(2569), + [anon_sym_consteval] = ACTIONS(2569), + [anon_sym_alignas] = ACTIONS(2569), + [anon_sym__Alignas] = ACTIONS(2569), + [sym_primitive_type] = ACTIONS(2577), + [anon_sym_enum] = ACTIONS(2569), + [anon_sym_class] = ACTIONS(2569), + [anon_sym_struct] = ACTIONS(2569), + [anon_sym_union] = ACTIONS(2569), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [anon_sym___alignof__] = ACTIONS(107), + [anon_sym___alignof] = ACTIONS(107), + [anon_sym__alignof] = ACTIONS(107), + [anon_sym_alignof] = ACTIONS(107), + [anon_sym__Alignof] = ACTIONS(107), + [anon_sym_offsetof] = ACTIONS(109), + [anon_sym__Generic] = ACTIONS(111), + [anon_sym_asm] = ACTIONS(113), + [anon_sym___asm__] = ACTIONS(113), + [anon_sym___asm] = ACTIONS(113), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(117), + [anon_sym_u_SQUOTE] = ACTIONS(117), + [anon_sym_U_SQUOTE] = ACTIONS(117), + [anon_sym_u8_SQUOTE] = ACTIONS(117), + [anon_sym_SQUOTE] = ACTIONS(117), + [anon_sym_L_DQUOTE] = ACTIONS(119), + [anon_sym_u_DQUOTE] = ACTIONS(119), + [anon_sym_U_DQUOTE] = ACTIONS(119), + [anon_sym_u8_DQUOTE] = ACTIONS(119), + [anon_sym_DQUOTE] = ACTIONS(119), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(123), + [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1936), - [anon_sym_decltype] = ACTIONS(1936), - [anon_sym_explicit] = ACTIONS(1936), - [anon_sym_typename] = ACTIONS(1936), - [anon_sym_template] = ACTIONS(1936), - [anon_sym_operator] = ACTIONS(1936), - [anon_sym_try] = ACTIONS(1936), - [anon_sym_delete] = ACTIONS(1936), - [anon_sym_throw] = ACTIONS(1936), - [anon_sym_namespace] = ACTIONS(1936), - [anon_sym_static_assert] = ACTIONS(1936), - [anon_sym_concept] = ACTIONS(1936), - [anon_sym_co_return] = ACTIONS(1936), - [anon_sym_co_yield] = ACTIONS(1936), - [anon_sym_catch] = ACTIONS(1936), - [anon_sym_R_DQUOTE] = ACTIONS(1934), - [anon_sym_LR_DQUOTE] = ACTIONS(1934), - [anon_sym_uR_DQUOTE] = ACTIONS(1934), - [anon_sym_UR_DQUOTE] = ACTIONS(1934), - [anon_sym_u8R_DQUOTE] = ACTIONS(1934), - [anon_sym_co_await] = ACTIONS(1936), - [anon_sym_new] = ACTIONS(1936), - [anon_sym_requires] = ACTIONS(1936), - [sym_this] = ACTIONS(1936), - }, - [458] = { - [sym_else_clause] = STATE(591), - [sym_identifier] = ACTIONS(2623), - [aux_sym_preproc_include_token1] = ACTIONS(2623), - [aux_sym_preproc_def_token1] = ACTIONS(2623), - [aux_sym_preproc_if_token1] = ACTIONS(2623), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2623), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2623), - [sym_preproc_directive] = ACTIONS(2623), - [anon_sym_LPAREN2] = ACTIONS(2625), - [anon_sym_BANG] = ACTIONS(2625), - [anon_sym_TILDE] = ACTIONS(2625), - [anon_sym_DASH] = ACTIONS(2623), - [anon_sym_PLUS] = ACTIONS(2623), - [anon_sym_STAR] = ACTIONS(2625), - [anon_sym_AMP_AMP] = ACTIONS(2625), - [anon_sym_AMP] = ACTIONS(2623), - [anon_sym_SEMI] = ACTIONS(2625), - [anon_sym___extension__] = ACTIONS(2623), - [anon_sym_typedef] = ACTIONS(2623), - [anon_sym_virtual] = ACTIONS(2623), - [anon_sym_extern] = ACTIONS(2623), - [anon_sym___attribute__] = ACTIONS(2623), - [anon_sym___attribute] = ACTIONS(2623), - [anon_sym_using] = ACTIONS(2623), - [anon_sym_COLON_COLON] = ACTIONS(2625), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2625), - [anon_sym___declspec] = ACTIONS(2623), - [anon_sym___based] = ACTIONS(2623), - [anon_sym___cdecl] = ACTIONS(2623), - [anon_sym___clrcall] = ACTIONS(2623), - [anon_sym___stdcall] = ACTIONS(2623), - [anon_sym___fastcall] = ACTIONS(2623), - [anon_sym___thiscall] = ACTIONS(2623), - [anon_sym___vectorcall] = ACTIONS(2623), - [anon_sym_LBRACE] = ACTIONS(2625), - [anon_sym_RBRACE] = ACTIONS(2625), - [anon_sym_signed] = ACTIONS(2623), - [anon_sym_unsigned] = ACTIONS(2623), - [anon_sym_long] = ACTIONS(2623), - [anon_sym_short] = ACTIONS(2623), - [anon_sym_LBRACK] = ACTIONS(2623), - [anon_sym_static] = ACTIONS(2623), - [anon_sym_register] = ACTIONS(2623), - [anon_sym_inline] = ACTIONS(2623), - [anon_sym___inline] = ACTIONS(2623), - [anon_sym___inline__] = ACTIONS(2623), - [anon_sym___forceinline] = ACTIONS(2623), - [anon_sym_thread_local] = ACTIONS(2623), - [anon_sym___thread] = ACTIONS(2623), - [anon_sym_const] = ACTIONS(2623), - [anon_sym_constexpr] = ACTIONS(2623), - [anon_sym_volatile] = ACTIONS(2623), - [anon_sym_restrict] = ACTIONS(2623), - [anon_sym___restrict__] = ACTIONS(2623), - [anon_sym__Atomic] = ACTIONS(2623), - [anon_sym__Noreturn] = ACTIONS(2623), - [anon_sym_noreturn] = ACTIONS(2623), - [anon_sym__Nonnull] = ACTIONS(2623), - [anon_sym_mutable] = ACTIONS(2623), - [anon_sym_constinit] = ACTIONS(2623), - [anon_sym_consteval] = ACTIONS(2623), - [anon_sym_alignas] = ACTIONS(2623), - [anon_sym__Alignas] = ACTIONS(2623), - [sym_primitive_type] = ACTIONS(2623), - [anon_sym_enum] = ACTIONS(2623), - [anon_sym_class] = ACTIONS(2623), - [anon_sym_struct] = ACTIONS(2623), - [anon_sym_union] = ACTIONS(2623), - [anon_sym_if] = ACTIONS(2623), - [anon_sym_else] = ACTIONS(3363), - [anon_sym_switch] = ACTIONS(2623), - [anon_sym_case] = ACTIONS(2623), - [anon_sym_default] = ACTIONS(2623), - [anon_sym_while] = ACTIONS(2623), - [anon_sym_do] = ACTIONS(2623), - [anon_sym_for] = ACTIONS(2623), - [anon_sym_return] = ACTIONS(2623), - [anon_sym_break] = ACTIONS(2623), - [anon_sym_continue] = ACTIONS(2623), - [anon_sym_goto] = ACTIONS(2623), - [anon_sym___try] = ACTIONS(2623), - [anon_sym___leave] = ACTIONS(2623), - [anon_sym_not] = ACTIONS(2623), - [anon_sym_compl] = ACTIONS(2623), - [anon_sym_DASH_DASH] = ACTIONS(2625), - [anon_sym_PLUS_PLUS] = ACTIONS(2625), - [anon_sym_sizeof] = ACTIONS(2623), - [anon_sym___alignof__] = ACTIONS(2623), - [anon_sym___alignof] = ACTIONS(2623), - [anon_sym__alignof] = ACTIONS(2623), - [anon_sym_alignof] = ACTIONS(2623), - [anon_sym__Alignof] = ACTIONS(2623), - [anon_sym_offsetof] = ACTIONS(2623), - [anon_sym__Generic] = ACTIONS(2623), - [anon_sym_asm] = ACTIONS(2623), - [anon_sym___asm__] = ACTIONS(2623), - [anon_sym___asm] = ACTIONS(2623), - [sym_number_literal] = ACTIONS(2625), - [anon_sym_L_SQUOTE] = ACTIONS(2625), - [anon_sym_u_SQUOTE] = ACTIONS(2625), - [anon_sym_U_SQUOTE] = ACTIONS(2625), - [anon_sym_u8_SQUOTE] = ACTIONS(2625), - [anon_sym_SQUOTE] = ACTIONS(2625), - [anon_sym_L_DQUOTE] = ACTIONS(2625), - [anon_sym_u_DQUOTE] = ACTIONS(2625), - [anon_sym_U_DQUOTE] = ACTIONS(2625), - [anon_sym_u8_DQUOTE] = ACTIONS(2625), - [anon_sym_DQUOTE] = ACTIONS(2625), - [sym_true] = ACTIONS(2623), - [sym_false] = ACTIONS(2623), - [anon_sym_NULL] = ACTIONS(2623), - [anon_sym_nullptr] = ACTIONS(2623), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2623), - [anon_sym_decltype] = ACTIONS(2623), - [anon_sym_explicit] = ACTIONS(2623), - [anon_sym_typename] = ACTIONS(2623), - [anon_sym_template] = ACTIONS(2623), - [anon_sym_operator] = ACTIONS(2623), - [anon_sym_try] = ACTIONS(2623), - [anon_sym_delete] = ACTIONS(2623), - [anon_sym_throw] = ACTIONS(2623), - [anon_sym_namespace] = ACTIONS(2623), - [anon_sym_static_assert] = ACTIONS(2623), - [anon_sym_concept] = ACTIONS(2623), - [anon_sym_co_return] = ACTIONS(2623), - [anon_sym_co_yield] = ACTIONS(2623), - [anon_sym_R_DQUOTE] = ACTIONS(2625), - [anon_sym_LR_DQUOTE] = ACTIONS(2625), - [anon_sym_uR_DQUOTE] = ACTIONS(2625), - [anon_sym_UR_DQUOTE] = ACTIONS(2625), - [anon_sym_u8R_DQUOTE] = ACTIONS(2625), - [anon_sym_co_await] = ACTIONS(2623), - [anon_sym_new] = ACTIONS(2623), - [anon_sym_requires] = ACTIONS(2623), - [sym_this] = ACTIONS(2623), + [sym_auto] = ACTIONS(2569), + [anon_sym_decltype] = ACTIONS(2580), + [anon_sym_typename] = ACTIONS(2569), + [anon_sym_template] = ACTIONS(2583), + [anon_sym_delete] = ACTIONS(145), + [anon_sym_R_DQUOTE] = ACTIONS(159), + [anon_sym_LR_DQUOTE] = ACTIONS(159), + [anon_sym_uR_DQUOTE] = ACTIONS(159), + [anon_sym_UR_DQUOTE] = ACTIONS(159), + [anon_sym_u8R_DQUOTE] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), }, - [459] = { - [sym_type_qualifier] = STATE(3904), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(4455), - [sym_sized_type_specifier] = STATE(1879), - [sym_enum_specifier] = STATE(1879), - [sym_struct_specifier] = STATE(1879), - [sym_union_specifier] = STATE(1879), - [sym_expression] = STATE(4591), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_type_descriptor] = STATE(8741), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_placeholder_type_specifier] = STATE(1879), - [sym_decltype_auto] = STATE(1859), - [sym_decltype] = STATE(1713), - [sym_class_specifier] = STATE(1879), - [sym__class_name] = STATE(7608), - [sym_dependent_type] = STATE(1879), - [sym_template_type] = STATE(5285), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5676), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(5327), - [sym_user_defined_literal] = STATE(3242), - [aux_sym__type_definition_type_repeat1] = STATE(3904), - [aux_sym_sized_type_specifier_repeat1] = STATE(4209), - [sym_identifier] = ACTIONS(3365), - [anon_sym_LPAREN2] = ACTIONS(1436), + [457] = { + [sym_expression] = STATE(4345), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(2547), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(3367), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1810), - [anon_sym_unsigned] = ACTIONS(1810), - [anon_sym_long] = ACTIONS(1810), - [anon_sym_short] = ACTIONS(1810), - [anon_sym_LBRACK] = ACTIONS(2020), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(3369), - [anon_sym_enum] = ACTIONS(1816), - [anon_sym_class] = ACTIONS(1818), - [anon_sym_struct] = ACTIONS(1820), - [anon_sym_union] = ACTIONS(1822), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2599), + [anon_sym_virtual] = ACTIONS(2569), + [anon_sym_extern] = ACTIONS(2569), + [anon_sym___attribute__] = ACTIONS(2569), + [anon_sym___attribute] = ACTIONS(2569), + [anon_sym_COLON_COLON] = ACTIONS(2571), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2559), + [anon_sym___declspec] = ACTIONS(2569), + [anon_sym_signed] = ACTIONS(2569), + [anon_sym_unsigned] = ACTIONS(2569), + [anon_sym_long] = ACTIONS(2569), + [anon_sym_short] = ACTIONS(2569), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_static] = ACTIONS(2569), + [anon_sym_register] = ACTIONS(2569), + [anon_sym_inline] = ACTIONS(2569), + [anon_sym___inline] = ACTIONS(2569), + [anon_sym___inline__] = ACTIONS(2569), + [anon_sym___forceinline] = ACTIONS(2569), + [anon_sym_thread_local] = ACTIONS(2569), + [anon_sym___thread] = ACTIONS(2569), + [anon_sym_const] = ACTIONS(2569), + [anon_sym_constexpr] = ACTIONS(2569), + [anon_sym_volatile] = ACTIONS(2569), + [anon_sym_restrict] = ACTIONS(2569), + [anon_sym___restrict__] = ACTIONS(2569), + [anon_sym__Atomic] = ACTIONS(2569), + [anon_sym__Noreturn] = ACTIONS(2569), + [anon_sym_noreturn] = ACTIONS(2569), + [anon_sym__Nonnull] = ACTIONS(2569), + [anon_sym_mutable] = ACTIONS(2569), + [anon_sym_constinit] = ACTIONS(2569), + [anon_sym_consteval] = ACTIONS(2569), + [anon_sym_alignas] = ACTIONS(2569), + [anon_sym__Alignas] = ACTIONS(2569), + [sym_primitive_type] = ACTIONS(2577), + [anon_sym_enum] = ACTIONS(2569), + [anon_sym_class] = ACTIONS(2569), + [anon_sym_struct] = ACTIONS(2569), + [anon_sym_union] = ACTIONS(2569), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -109415,10 +109442,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(123), [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1846), - [anon_sym_decltype] = ACTIONS(1848), - [anon_sym_typename] = ACTIONS(1850), - [anon_sym_template] = ACTIONS(1452), + [sym_auto] = ACTIONS(2569), + [anon_sym_decltype] = ACTIONS(2580), + [anon_sym_typename] = ACTIONS(2569), + [anon_sym_template] = ACTIONS(2583), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -109430,354 +109457,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [460] = { - [sym_else_clause] = STATE(613), - [sym_identifier] = ACTIONS(2613), - [aux_sym_preproc_include_token1] = ACTIONS(2613), - [aux_sym_preproc_def_token1] = ACTIONS(2613), - [aux_sym_preproc_if_token1] = ACTIONS(2613), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2613), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2613), - [sym_preproc_directive] = ACTIONS(2613), - [anon_sym_LPAREN2] = ACTIONS(2615), - [anon_sym_BANG] = ACTIONS(2615), - [anon_sym_TILDE] = ACTIONS(2615), - [anon_sym_DASH] = ACTIONS(2613), - [anon_sym_PLUS] = ACTIONS(2613), - [anon_sym_STAR] = ACTIONS(2615), - [anon_sym_AMP_AMP] = ACTIONS(2615), - [anon_sym_AMP] = ACTIONS(2613), - [anon_sym_SEMI] = ACTIONS(2615), - [anon_sym___extension__] = ACTIONS(2613), - [anon_sym_typedef] = ACTIONS(2613), - [anon_sym_virtual] = ACTIONS(2613), - [anon_sym_extern] = ACTIONS(2613), - [anon_sym___attribute__] = ACTIONS(2613), - [anon_sym___attribute] = ACTIONS(2613), - [anon_sym_using] = ACTIONS(2613), - [anon_sym_COLON_COLON] = ACTIONS(2615), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2615), - [anon_sym___declspec] = ACTIONS(2613), - [anon_sym___based] = ACTIONS(2613), - [anon_sym___cdecl] = ACTIONS(2613), - [anon_sym___clrcall] = ACTIONS(2613), - [anon_sym___stdcall] = ACTIONS(2613), - [anon_sym___fastcall] = ACTIONS(2613), - [anon_sym___thiscall] = ACTIONS(2613), - [anon_sym___vectorcall] = ACTIONS(2613), - [anon_sym_LBRACE] = ACTIONS(2615), - [anon_sym_RBRACE] = ACTIONS(2615), - [anon_sym_signed] = ACTIONS(2613), - [anon_sym_unsigned] = ACTIONS(2613), - [anon_sym_long] = ACTIONS(2613), - [anon_sym_short] = ACTIONS(2613), - [anon_sym_LBRACK] = ACTIONS(2613), - [anon_sym_static] = ACTIONS(2613), - [anon_sym_register] = ACTIONS(2613), - [anon_sym_inline] = ACTIONS(2613), - [anon_sym___inline] = ACTIONS(2613), - [anon_sym___inline__] = ACTIONS(2613), - [anon_sym___forceinline] = ACTIONS(2613), - [anon_sym_thread_local] = ACTIONS(2613), - [anon_sym___thread] = ACTIONS(2613), - [anon_sym_const] = ACTIONS(2613), - [anon_sym_constexpr] = ACTIONS(2613), - [anon_sym_volatile] = ACTIONS(2613), - [anon_sym_restrict] = ACTIONS(2613), - [anon_sym___restrict__] = ACTIONS(2613), - [anon_sym__Atomic] = ACTIONS(2613), - [anon_sym__Noreturn] = ACTIONS(2613), - [anon_sym_noreturn] = ACTIONS(2613), - [anon_sym__Nonnull] = ACTIONS(2613), - [anon_sym_mutable] = ACTIONS(2613), - [anon_sym_constinit] = ACTIONS(2613), - [anon_sym_consteval] = ACTIONS(2613), - [anon_sym_alignas] = ACTIONS(2613), - [anon_sym__Alignas] = ACTIONS(2613), - [sym_primitive_type] = ACTIONS(2613), - [anon_sym_enum] = ACTIONS(2613), - [anon_sym_class] = ACTIONS(2613), - [anon_sym_struct] = ACTIONS(2613), - [anon_sym_union] = ACTIONS(2613), - [anon_sym_if] = ACTIONS(2613), - [anon_sym_else] = ACTIONS(3363), - [anon_sym_switch] = ACTIONS(2613), - [anon_sym_case] = ACTIONS(2613), - [anon_sym_default] = ACTIONS(2613), - [anon_sym_while] = ACTIONS(2613), - [anon_sym_do] = ACTIONS(2613), - [anon_sym_for] = ACTIONS(2613), - [anon_sym_return] = ACTIONS(2613), - [anon_sym_break] = ACTIONS(2613), - [anon_sym_continue] = ACTIONS(2613), - [anon_sym_goto] = ACTIONS(2613), - [anon_sym___try] = ACTIONS(2613), - [anon_sym___leave] = ACTIONS(2613), - [anon_sym_not] = ACTIONS(2613), - [anon_sym_compl] = ACTIONS(2613), - [anon_sym_DASH_DASH] = ACTIONS(2615), - [anon_sym_PLUS_PLUS] = ACTIONS(2615), - [anon_sym_sizeof] = ACTIONS(2613), - [anon_sym___alignof__] = ACTIONS(2613), - [anon_sym___alignof] = ACTIONS(2613), - [anon_sym__alignof] = ACTIONS(2613), - [anon_sym_alignof] = ACTIONS(2613), - [anon_sym__Alignof] = ACTIONS(2613), - [anon_sym_offsetof] = ACTIONS(2613), - [anon_sym__Generic] = ACTIONS(2613), - [anon_sym_asm] = ACTIONS(2613), - [anon_sym___asm__] = ACTIONS(2613), - [anon_sym___asm] = ACTIONS(2613), - [sym_number_literal] = ACTIONS(2615), - [anon_sym_L_SQUOTE] = ACTIONS(2615), - [anon_sym_u_SQUOTE] = ACTIONS(2615), - [anon_sym_U_SQUOTE] = ACTIONS(2615), - [anon_sym_u8_SQUOTE] = ACTIONS(2615), - [anon_sym_SQUOTE] = ACTIONS(2615), - [anon_sym_L_DQUOTE] = ACTIONS(2615), - [anon_sym_u_DQUOTE] = ACTIONS(2615), - [anon_sym_U_DQUOTE] = ACTIONS(2615), - [anon_sym_u8_DQUOTE] = ACTIONS(2615), - [anon_sym_DQUOTE] = ACTIONS(2615), - [sym_true] = ACTIONS(2613), - [sym_false] = ACTIONS(2613), - [anon_sym_NULL] = ACTIONS(2613), - [anon_sym_nullptr] = ACTIONS(2613), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2613), - [anon_sym_decltype] = ACTIONS(2613), - [anon_sym_explicit] = ACTIONS(2613), - [anon_sym_typename] = ACTIONS(2613), - [anon_sym_template] = ACTIONS(2613), - [anon_sym_operator] = ACTIONS(2613), - [anon_sym_try] = ACTIONS(2613), - [anon_sym_delete] = ACTIONS(2613), - [anon_sym_throw] = ACTIONS(2613), - [anon_sym_namespace] = ACTIONS(2613), - [anon_sym_static_assert] = ACTIONS(2613), - [anon_sym_concept] = ACTIONS(2613), - [anon_sym_co_return] = ACTIONS(2613), - [anon_sym_co_yield] = ACTIONS(2613), - [anon_sym_R_DQUOTE] = ACTIONS(2615), - [anon_sym_LR_DQUOTE] = ACTIONS(2615), - [anon_sym_uR_DQUOTE] = ACTIONS(2615), - [anon_sym_UR_DQUOTE] = ACTIONS(2615), - [anon_sym_u8R_DQUOTE] = ACTIONS(2615), - [anon_sym_co_await] = ACTIONS(2613), - [anon_sym_new] = ACTIONS(2613), - [anon_sym_requires] = ACTIONS(2613), - [sym_this] = ACTIONS(2613), - }, - [461] = { - [sym_else_clause] = STATE(610), - [sym_identifier] = ACTIONS(2613), - [aux_sym_preproc_include_token1] = ACTIONS(2613), - [aux_sym_preproc_def_token1] = ACTIONS(2613), - [aux_sym_preproc_if_token1] = ACTIONS(2613), - [aux_sym_preproc_if_token2] = ACTIONS(2613), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2613), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2613), - [sym_preproc_directive] = ACTIONS(2613), - [anon_sym_LPAREN2] = ACTIONS(2615), - [anon_sym_BANG] = ACTIONS(2615), - [anon_sym_TILDE] = ACTIONS(2615), - [anon_sym_DASH] = ACTIONS(2613), - [anon_sym_PLUS] = ACTIONS(2613), - [anon_sym_STAR] = ACTIONS(2615), - [anon_sym_AMP_AMP] = ACTIONS(2615), - [anon_sym_AMP] = ACTIONS(2613), - [anon_sym_SEMI] = ACTIONS(2615), - [anon_sym___extension__] = ACTIONS(2613), - [anon_sym_typedef] = ACTIONS(2613), - [anon_sym_virtual] = ACTIONS(2613), - [anon_sym_extern] = ACTIONS(2613), - [anon_sym___attribute__] = ACTIONS(2613), - [anon_sym___attribute] = ACTIONS(2613), - [anon_sym_using] = ACTIONS(2613), - [anon_sym_COLON_COLON] = ACTIONS(2615), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2615), - [anon_sym___declspec] = ACTIONS(2613), - [anon_sym___based] = ACTIONS(2613), - [anon_sym___cdecl] = ACTIONS(2613), - [anon_sym___clrcall] = ACTIONS(2613), - [anon_sym___stdcall] = ACTIONS(2613), - [anon_sym___fastcall] = ACTIONS(2613), - [anon_sym___thiscall] = ACTIONS(2613), - [anon_sym___vectorcall] = ACTIONS(2613), - [anon_sym_LBRACE] = ACTIONS(2615), - [anon_sym_signed] = ACTIONS(2613), - [anon_sym_unsigned] = ACTIONS(2613), - [anon_sym_long] = ACTIONS(2613), - [anon_sym_short] = ACTIONS(2613), - [anon_sym_LBRACK] = ACTIONS(2613), - [anon_sym_static] = ACTIONS(2613), - [anon_sym_register] = ACTIONS(2613), - [anon_sym_inline] = ACTIONS(2613), - [anon_sym___inline] = ACTIONS(2613), - [anon_sym___inline__] = ACTIONS(2613), - [anon_sym___forceinline] = ACTIONS(2613), - [anon_sym_thread_local] = ACTIONS(2613), - [anon_sym___thread] = ACTIONS(2613), - [anon_sym_const] = ACTIONS(2613), - [anon_sym_constexpr] = ACTIONS(2613), - [anon_sym_volatile] = ACTIONS(2613), - [anon_sym_restrict] = ACTIONS(2613), - [anon_sym___restrict__] = ACTIONS(2613), - [anon_sym__Atomic] = ACTIONS(2613), - [anon_sym__Noreturn] = ACTIONS(2613), - [anon_sym_noreturn] = ACTIONS(2613), - [anon_sym__Nonnull] = ACTIONS(2613), - [anon_sym_mutable] = ACTIONS(2613), - [anon_sym_constinit] = ACTIONS(2613), - [anon_sym_consteval] = ACTIONS(2613), - [anon_sym_alignas] = ACTIONS(2613), - [anon_sym__Alignas] = ACTIONS(2613), - [sym_primitive_type] = ACTIONS(2613), - [anon_sym_enum] = ACTIONS(2613), - [anon_sym_class] = ACTIONS(2613), - [anon_sym_struct] = ACTIONS(2613), - [anon_sym_union] = ACTIONS(2613), - [anon_sym_if] = ACTIONS(2613), - [anon_sym_else] = ACTIONS(3361), - [anon_sym_switch] = ACTIONS(2613), - [anon_sym_case] = ACTIONS(2613), - [anon_sym_default] = ACTIONS(2613), - [anon_sym_while] = ACTIONS(2613), - [anon_sym_do] = ACTIONS(2613), - [anon_sym_for] = ACTIONS(2613), - [anon_sym_return] = ACTIONS(2613), - [anon_sym_break] = ACTIONS(2613), - [anon_sym_continue] = ACTIONS(2613), - [anon_sym_goto] = ACTIONS(2613), - [anon_sym___try] = ACTIONS(2613), - [anon_sym___leave] = ACTIONS(2613), - [anon_sym_not] = ACTIONS(2613), - [anon_sym_compl] = ACTIONS(2613), - [anon_sym_DASH_DASH] = ACTIONS(2615), - [anon_sym_PLUS_PLUS] = ACTIONS(2615), - [anon_sym_sizeof] = ACTIONS(2613), - [anon_sym___alignof__] = ACTIONS(2613), - [anon_sym___alignof] = ACTIONS(2613), - [anon_sym__alignof] = ACTIONS(2613), - [anon_sym_alignof] = ACTIONS(2613), - [anon_sym__Alignof] = ACTIONS(2613), - [anon_sym_offsetof] = ACTIONS(2613), - [anon_sym__Generic] = ACTIONS(2613), - [anon_sym_asm] = ACTIONS(2613), - [anon_sym___asm__] = ACTIONS(2613), - [anon_sym___asm] = ACTIONS(2613), - [sym_number_literal] = ACTIONS(2615), - [anon_sym_L_SQUOTE] = ACTIONS(2615), - [anon_sym_u_SQUOTE] = ACTIONS(2615), - [anon_sym_U_SQUOTE] = ACTIONS(2615), - [anon_sym_u8_SQUOTE] = ACTIONS(2615), - [anon_sym_SQUOTE] = ACTIONS(2615), - [anon_sym_L_DQUOTE] = ACTIONS(2615), - [anon_sym_u_DQUOTE] = ACTIONS(2615), - [anon_sym_U_DQUOTE] = ACTIONS(2615), - [anon_sym_u8_DQUOTE] = ACTIONS(2615), - [anon_sym_DQUOTE] = ACTIONS(2615), - [sym_true] = ACTIONS(2613), - [sym_false] = ACTIONS(2613), - [anon_sym_NULL] = ACTIONS(2613), - [anon_sym_nullptr] = ACTIONS(2613), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2613), - [anon_sym_decltype] = ACTIONS(2613), - [anon_sym_explicit] = ACTIONS(2613), - [anon_sym_typename] = ACTIONS(2613), - [anon_sym_template] = ACTIONS(2613), - [anon_sym_operator] = ACTIONS(2613), - [anon_sym_try] = ACTIONS(2613), - [anon_sym_delete] = ACTIONS(2613), - [anon_sym_throw] = ACTIONS(2613), - [anon_sym_namespace] = ACTIONS(2613), - [anon_sym_static_assert] = ACTIONS(2613), - [anon_sym_concept] = ACTIONS(2613), - [anon_sym_co_return] = ACTIONS(2613), - [anon_sym_co_yield] = ACTIONS(2613), - [anon_sym_R_DQUOTE] = ACTIONS(2615), - [anon_sym_LR_DQUOTE] = ACTIONS(2615), - [anon_sym_uR_DQUOTE] = ACTIONS(2615), - [anon_sym_UR_DQUOTE] = ACTIONS(2615), - [anon_sym_u8R_DQUOTE] = ACTIONS(2615), - [anon_sym_co_await] = ACTIONS(2613), - [anon_sym_new] = ACTIONS(2613), - [anon_sym_requires] = ACTIONS(2613), - [sym_this] = ACTIONS(2613), - }, - [462] = { - [sym_type_qualifier] = STATE(3904), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(4455), - [sym_sized_type_specifier] = STATE(1879), - [sym_enum_specifier] = STATE(1879), - [sym_struct_specifier] = STATE(1879), - [sym_union_specifier] = STATE(1879), - [sym_expression] = STATE(4609), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_type_descriptor] = STATE(8718), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_placeholder_type_specifier] = STATE(1879), - [sym_decltype_auto] = STATE(1859), - [sym_decltype] = STATE(1713), - [sym_class_specifier] = STATE(1879), - [sym__class_name] = STATE(7608), - [sym_dependent_type] = STATE(1879), - [sym_template_type] = STATE(5285), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5676), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(5327), - [sym_user_defined_literal] = STATE(3242), - [aux_sym__type_definition_type_repeat1] = STATE(3904), - [aux_sym_sized_type_specifier_repeat1] = STATE(4209), - [sym_identifier] = ACTIONS(3365), - [anon_sym_LPAREN2] = ACTIONS(1436), + [458] = { + [sym_type_qualifier] = STATE(3891), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(4528), + [sym_sized_type_specifier] = STATE(1890), + [sym_enum_specifier] = STATE(1890), + [sym_struct_specifier] = STATE(1890), + [sym_union_specifier] = STATE(1890), + [sym_expression] = STATE(4840), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_type_descriptor] = STATE(8857), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_placeholder_type_specifier] = STATE(1890), + [sym_decltype_auto] = STATE(1888), + [sym_decltype] = STATE(1782), + [sym_class_specifier] = STATE(1890), + [sym__class_name] = STATE(7707), + [sym_dependent_type] = STATE(1890), + [sym_template_type] = STATE(5365), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5819), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(5382), + [sym_user_defined_literal] = STATE(3323), + [aux_sym__type_definition_type_repeat1] = STATE(3891), + [aux_sym_sized_type_specifier_repeat1] = STATE(4234), + [sym_identifier] = ACTIONS(3357), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(3367), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(3359), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1810), - [anon_sym_unsigned] = ACTIONS(1810), - [anon_sym_long] = ACTIONS(1810), - [anon_sym_short] = ACTIONS(1810), + [anon_sym_signed] = ACTIONS(1808), + [anon_sym_unsigned] = ACTIONS(1808), + [anon_sym_long] = ACTIONS(1808), + [anon_sym_short] = ACTIONS(1808), [anon_sym_LBRACK] = ACTIONS(2020), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), @@ -109793,11 +109544,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(3369), - [anon_sym_enum] = ACTIONS(1816), - [anon_sym_class] = ACTIONS(1818), - [anon_sym_struct] = ACTIONS(1820), - [anon_sym_union] = ACTIONS(1822), + [sym_primitive_type] = ACTIONS(3361), + [anon_sym_enum] = ACTIONS(1814), + [anon_sym_class] = ACTIONS(1816), + [anon_sym_struct] = ACTIONS(1818), + [anon_sym_union] = ACTIONS(1820), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -109829,10 +109580,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(123), [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1846), - [anon_sym_decltype] = ACTIONS(1848), - [anon_sym_typename] = ACTIONS(1850), - [anon_sym_template] = ACTIONS(1452), + [sym_auto] = ACTIONS(1844), + [anon_sym_decltype] = ACTIONS(1846), + [anon_sym_typename] = ACTIONS(1848), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -109844,78 +109595,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [463] = { - [sym_type_qualifier] = STATE(3904), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(4455), - [sym_sized_type_specifier] = STATE(1879), - [sym_enum_specifier] = STATE(1879), - [sym_struct_specifier] = STATE(1879), - [sym_union_specifier] = STATE(1879), - [sym_expression] = STATE(4759), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_type_descriptor] = STATE(7942), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_placeholder_type_specifier] = STATE(1879), - [sym_decltype_auto] = STATE(1859), - [sym_decltype] = STATE(1713), - [sym_class_specifier] = STATE(1879), - [sym__class_name] = STATE(7608), - [sym_dependent_type] = STATE(1879), - [sym_template_type] = STATE(5285), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5676), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(5327), - [sym_user_defined_literal] = STATE(3242), - [aux_sym__type_definition_type_repeat1] = STATE(3904), - [aux_sym_sized_type_specifier_repeat1] = STATE(4209), - [sym_identifier] = ACTIONS(3365), - [anon_sym_LPAREN2] = ACTIONS(1436), + [459] = { + [sym_type_qualifier] = STATE(3891), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(4528), + [sym_sized_type_specifier] = STATE(1890), + [sym_enum_specifier] = STATE(1890), + [sym_struct_specifier] = STATE(1890), + [sym_union_specifier] = STATE(1890), + [sym_expression] = STATE(4681), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_type_descriptor] = STATE(8088), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_placeholder_type_specifier] = STATE(1890), + [sym_decltype_auto] = STATE(1888), + [sym_decltype] = STATE(1782), + [sym_class_specifier] = STATE(1890), + [sym__class_name] = STATE(7707), + [sym_dependent_type] = STATE(1890), + [sym_template_type] = STATE(5365), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5819), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(5382), + [sym_user_defined_literal] = STATE(3323), + [aux_sym__type_definition_type_repeat1] = STATE(3891), + [aux_sym_sized_type_specifier_repeat1] = STATE(4234), + [sym_identifier] = ACTIONS(3357), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(3367), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(3359), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1810), - [anon_sym_unsigned] = ACTIONS(1810), - [anon_sym_long] = ACTIONS(1810), - [anon_sym_short] = ACTIONS(1810), + [anon_sym_signed] = ACTIONS(1808), + [anon_sym_unsigned] = ACTIONS(1808), + [anon_sym_long] = ACTIONS(1808), + [anon_sym_short] = ACTIONS(1808), [anon_sym_LBRACK] = ACTIONS(2020), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), @@ -109931,11 +109682,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(3369), - [anon_sym_enum] = ACTIONS(1816), - [anon_sym_class] = ACTIONS(1818), - [anon_sym_struct] = ACTIONS(1820), - [anon_sym_union] = ACTIONS(1822), + [sym_primitive_type] = ACTIONS(3361), + [anon_sym_enum] = ACTIONS(1814), + [anon_sym_class] = ACTIONS(1816), + [anon_sym_struct] = ACTIONS(1818), + [anon_sym_union] = ACTIONS(1820), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -109967,10 +109718,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(123), [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1846), - [anon_sym_decltype] = ACTIONS(1848), - [anon_sym_typename] = ACTIONS(1850), - [anon_sym_template] = ACTIONS(1452), + [sym_auto] = ACTIONS(1844), + [anon_sym_decltype] = ACTIONS(1846), + [anon_sym_typename] = ACTIONS(1848), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -109982,78 +109733,216 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [464] = { - [sym_type_qualifier] = STATE(3904), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(4455), - [sym_sized_type_specifier] = STATE(1879), - [sym_enum_specifier] = STATE(1879), - [sym_struct_specifier] = STATE(1879), - [sym_union_specifier] = STATE(1879), - [sym_expression] = STATE(4656), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_type_descriptor] = STATE(8124), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_placeholder_type_specifier] = STATE(1879), - [sym_decltype_auto] = STATE(1859), - [sym_decltype] = STATE(1713), - [sym_class_specifier] = STATE(1879), - [sym__class_name] = STATE(7608), - [sym_dependent_type] = STATE(1879), - [sym_template_type] = STATE(5285), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5676), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(5327), - [sym_user_defined_literal] = STATE(3242), - [aux_sym__type_definition_type_repeat1] = STATE(3904), - [aux_sym_sized_type_specifier_repeat1] = STATE(4209), - [sym_identifier] = ACTIONS(3365), - [anon_sym_LPAREN2] = ACTIONS(1436), + [460] = { + [sym_else_clause] = STATE(628), + [sym_identifier] = ACTIONS(2615), + [aux_sym_preproc_include_token1] = ACTIONS(2615), + [aux_sym_preproc_def_token1] = ACTIONS(2615), + [aux_sym_preproc_if_token1] = ACTIONS(2615), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2615), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2615), + [sym_preproc_directive] = ACTIONS(2615), + [anon_sym_LPAREN2] = ACTIONS(2617), + [anon_sym_BANG] = ACTIONS(2617), + [anon_sym_TILDE] = ACTIONS(2617), + [anon_sym_DASH] = ACTIONS(2615), + [anon_sym_PLUS] = ACTIONS(2615), + [anon_sym_STAR] = ACTIONS(2617), + [anon_sym_AMP_AMP] = ACTIONS(2617), + [anon_sym_AMP] = ACTIONS(2615), + [anon_sym_SEMI] = ACTIONS(2617), + [anon_sym___extension__] = ACTIONS(2615), + [anon_sym_typedef] = ACTIONS(2615), + [anon_sym_virtual] = ACTIONS(2615), + [anon_sym_extern] = ACTIONS(2615), + [anon_sym___attribute__] = ACTIONS(2615), + [anon_sym___attribute] = ACTIONS(2615), + [anon_sym_using] = ACTIONS(2615), + [anon_sym_COLON_COLON] = ACTIONS(2617), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2617), + [anon_sym___declspec] = ACTIONS(2615), + [anon_sym___based] = ACTIONS(2615), + [anon_sym___cdecl] = ACTIONS(2615), + [anon_sym___clrcall] = ACTIONS(2615), + [anon_sym___stdcall] = ACTIONS(2615), + [anon_sym___fastcall] = ACTIONS(2615), + [anon_sym___thiscall] = ACTIONS(2615), + [anon_sym___vectorcall] = ACTIONS(2615), + [anon_sym_LBRACE] = ACTIONS(2617), + [anon_sym_RBRACE] = ACTIONS(2617), + [anon_sym_signed] = ACTIONS(2615), + [anon_sym_unsigned] = ACTIONS(2615), + [anon_sym_long] = ACTIONS(2615), + [anon_sym_short] = ACTIONS(2615), + [anon_sym_LBRACK] = ACTIONS(2615), + [anon_sym_static] = ACTIONS(2615), + [anon_sym_register] = ACTIONS(2615), + [anon_sym_inline] = ACTIONS(2615), + [anon_sym___inline] = ACTIONS(2615), + [anon_sym___inline__] = ACTIONS(2615), + [anon_sym___forceinline] = ACTIONS(2615), + [anon_sym_thread_local] = ACTIONS(2615), + [anon_sym___thread] = ACTIONS(2615), + [anon_sym_const] = ACTIONS(2615), + [anon_sym_constexpr] = ACTIONS(2615), + [anon_sym_volatile] = ACTIONS(2615), + [anon_sym_restrict] = ACTIONS(2615), + [anon_sym___restrict__] = ACTIONS(2615), + [anon_sym__Atomic] = ACTIONS(2615), + [anon_sym__Noreturn] = ACTIONS(2615), + [anon_sym_noreturn] = ACTIONS(2615), + [anon_sym__Nonnull] = ACTIONS(2615), + [anon_sym_mutable] = ACTIONS(2615), + [anon_sym_constinit] = ACTIONS(2615), + [anon_sym_consteval] = ACTIONS(2615), + [anon_sym_alignas] = ACTIONS(2615), + [anon_sym__Alignas] = ACTIONS(2615), + [sym_primitive_type] = ACTIONS(2615), + [anon_sym_enum] = ACTIONS(2615), + [anon_sym_class] = ACTIONS(2615), + [anon_sym_struct] = ACTIONS(2615), + [anon_sym_union] = ACTIONS(2615), + [anon_sym_if] = ACTIONS(2615), + [anon_sym_else] = ACTIONS(3363), + [anon_sym_switch] = ACTIONS(2615), + [anon_sym_case] = ACTIONS(2615), + [anon_sym_default] = ACTIONS(2615), + [anon_sym_while] = ACTIONS(2615), + [anon_sym_do] = ACTIONS(2615), + [anon_sym_for] = ACTIONS(2615), + [anon_sym_return] = ACTIONS(2615), + [anon_sym_break] = ACTIONS(2615), + [anon_sym_continue] = ACTIONS(2615), + [anon_sym_goto] = ACTIONS(2615), + [anon_sym___try] = ACTIONS(2615), + [anon_sym___leave] = ACTIONS(2615), + [anon_sym_not] = ACTIONS(2615), + [anon_sym_compl] = ACTIONS(2615), + [anon_sym_DASH_DASH] = ACTIONS(2617), + [anon_sym_PLUS_PLUS] = ACTIONS(2617), + [anon_sym_sizeof] = ACTIONS(2615), + [anon_sym___alignof__] = ACTIONS(2615), + [anon_sym___alignof] = ACTIONS(2615), + [anon_sym__alignof] = ACTIONS(2615), + [anon_sym_alignof] = ACTIONS(2615), + [anon_sym__Alignof] = ACTIONS(2615), + [anon_sym_offsetof] = ACTIONS(2615), + [anon_sym__Generic] = ACTIONS(2615), + [anon_sym_asm] = ACTIONS(2615), + [anon_sym___asm__] = ACTIONS(2615), + [anon_sym___asm] = ACTIONS(2615), + [sym_number_literal] = ACTIONS(2617), + [anon_sym_L_SQUOTE] = ACTIONS(2617), + [anon_sym_u_SQUOTE] = ACTIONS(2617), + [anon_sym_U_SQUOTE] = ACTIONS(2617), + [anon_sym_u8_SQUOTE] = ACTIONS(2617), + [anon_sym_SQUOTE] = ACTIONS(2617), + [anon_sym_L_DQUOTE] = ACTIONS(2617), + [anon_sym_u_DQUOTE] = ACTIONS(2617), + [anon_sym_U_DQUOTE] = ACTIONS(2617), + [anon_sym_u8_DQUOTE] = ACTIONS(2617), + [anon_sym_DQUOTE] = ACTIONS(2617), + [sym_true] = ACTIONS(2615), + [sym_false] = ACTIONS(2615), + [anon_sym_NULL] = ACTIONS(2615), + [anon_sym_nullptr] = ACTIONS(2615), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2615), + [anon_sym_decltype] = ACTIONS(2615), + [anon_sym_explicit] = ACTIONS(2615), + [anon_sym_typename] = ACTIONS(2615), + [anon_sym_template] = ACTIONS(2615), + [anon_sym_operator] = ACTIONS(2615), + [anon_sym_try] = ACTIONS(2615), + [anon_sym_delete] = ACTIONS(2615), + [anon_sym_throw] = ACTIONS(2615), + [anon_sym_namespace] = ACTIONS(2615), + [anon_sym_static_assert] = ACTIONS(2615), + [anon_sym_concept] = ACTIONS(2615), + [anon_sym_co_return] = ACTIONS(2615), + [anon_sym_co_yield] = ACTIONS(2615), + [anon_sym_R_DQUOTE] = ACTIONS(2617), + [anon_sym_LR_DQUOTE] = ACTIONS(2617), + [anon_sym_uR_DQUOTE] = ACTIONS(2617), + [anon_sym_UR_DQUOTE] = ACTIONS(2617), + [anon_sym_u8R_DQUOTE] = ACTIONS(2617), + [anon_sym_co_await] = ACTIONS(2615), + [anon_sym_new] = ACTIONS(2615), + [anon_sym_requires] = ACTIONS(2615), + [sym_this] = ACTIONS(2615), + }, + [461] = { + [sym_type_qualifier] = STATE(3891), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(4528), + [sym_sized_type_specifier] = STATE(1890), + [sym_enum_specifier] = STATE(1890), + [sym_struct_specifier] = STATE(1890), + [sym_union_specifier] = STATE(1890), + [sym_expression] = STATE(4683), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_type_descriptor] = STATE(8246), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_placeholder_type_specifier] = STATE(1890), + [sym_decltype_auto] = STATE(1888), + [sym_decltype] = STATE(1782), + [sym_class_specifier] = STATE(1890), + [sym__class_name] = STATE(7707), + [sym_dependent_type] = STATE(1890), + [sym_template_type] = STATE(5365), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5819), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(5382), + [sym_user_defined_literal] = STATE(3323), + [aux_sym__type_definition_type_repeat1] = STATE(3891), + [aux_sym_sized_type_specifier_repeat1] = STATE(4234), + [sym_identifier] = ACTIONS(3357), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(3367), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(3359), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1810), - [anon_sym_unsigned] = ACTIONS(1810), - [anon_sym_long] = ACTIONS(1810), - [anon_sym_short] = ACTIONS(1810), + [anon_sym_signed] = ACTIONS(1808), + [anon_sym_unsigned] = ACTIONS(1808), + [anon_sym_long] = ACTIONS(1808), + [anon_sym_short] = ACTIONS(1808), [anon_sym_LBRACK] = ACTIONS(2020), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), @@ -110069,11 +109958,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(3369), - [anon_sym_enum] = ACTIONS(1816), - [anon_sym_class] = ACTIONS(1818), - [anon_sym_struct] = ACTIONS(1820), - [anon_sym_union] = ACTIONS(1822), + [sym_primitive_type] = ACTIONS(3361), + [anon_sym_enum] = ACTIONS(1814), + [anon_sym_class] = ACTIONS(1816), + [anon_sym_struct] = ACTIONS(1818), + [anon_sym_union] = ACTIONS(1820), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -110105,10 +109994,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(123), [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1846), - [anon_sym_decltype] = ACTIONS(1848), - [anon_sym_typename] = ACTIONS(1850), - [anon_sym_template] = ACTIONS(1452), + [sym_auto] = ACTIONS(1844), + [anon_sym_decltype] = ACTIONS(1846), + [anon_sym_typename] = ACTIONS(1848), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -110120,78 +110009,216 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [465] = { - [sym_type_qualifier] = STATE(3904), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(4455), - [sym_sized_type_specifier] = STATE(1879), - [sym_enum_specifier] = STATE(1879), - [sym_struct_specifier] = STATE(1879), - [sym_union_specifier] = STATE(1879), - [sym_expression] = STATE(4614), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_type_descriptor] = STATE(7946), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_placeholder_type_specifier] = STATE(1879), - [sym_decltype_auto] = STATE(1859), - [sym_decltype] = STATE(1713), - [sym_class_specifier] = STATE(1879), - [sym__class_name] = STATE(7608), - [sym_dependent_type] = STATE(1879), - [sym_template_type] = STATE(5285), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5676), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(5327), - [sym_user_defined_literal] = STATE(3242), - [aux_sym__type_definition_type_repeat1] = STATE(3904), - [aux_sym_sized_type_specifier_repeat1] = STATE(4209), - [sym_identifier] = ACTIONS(3365), - [anon_sym_LPAREN2] = ACTIONS(1436), + [462] = { + [sym_identifier] = ACTIONS(2611), + [aux_sym_preproc_include_token1] = ACTIONS(2611), + [aux_sym_preproc_def_token1] = ACTIONS(2611), + [aux_sym_preproc_if_token1] = ACTIONS(2611), + [aux_sym_preproc_if_token2] = ACTIONS(2611), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2611), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2611), + [sym_preproc_directive] = ACTIONS(2611), + [anon_sym_LPAREN2] = ACTIONS(2613), + [anon_sym_BANG] = ACTIONS(2613), + [anon_sym_TILDE] = ACTIONS(2613), + [anon_sym_DASH] = ACTIONS(2611), + [anon_sym_PLUS] = ACTIONS(2611), + [anon_sym_STAR] = ACTIONS(2613), + [anon_sym_AMP_AMP] = ACTIONS(2613), + [anon_sym_AMP] = ACTIONS(2611), + [anon_sym_SEMI] = ACTIONS(2613), + [anon_sym___extension__] = ACTIONS(2611), + [anon_sym_typedef] = ACTIONS(2611), + [anon_sym_virtual] = ACTIONS(2611), + [anon_sym_extern] = ACTIONS(2611), + [anon_sym___attribute__] = ACTIONS(2611), + [anon_sym___attribute] = ACTIONS(2611), + [anon_sym_using] = ACTIONS(2611), + [anon_sym_COLON_COLON] = ACTIONS(2613), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2613), + [anon_sym___declspec] = ACTIONS(2611), + [anon_sym___based] = ACTIONS(2611), + [anon_sym___cdecl] = ACTIONS(2611), + [anon_sym___clrcall] = ACTIONS(2611), + [anon_sym___stdcall] = ACTIONS(2611), + [anon_sym___fastcall] = ACTIONS(2611), + [anon_sym___thiscall] = ACTIONS(2611), + [anon_sym___vectorcall] = ACTIONS(2611), + [anon_sym_LBRACE] = ACTIONS(2613), + [anon_sym_signed] = ACTIONS(2611), + [anon_sym_unsigned] = ACTIONS(2611), + [anon_sym_long] = ACTIONS(2611), + [anon_sym_short] = ACTIONS(2611), + [anon_sym_LBRACK] = ACTIONS(2611), + [anon_sym_static] = ACTIONS(2611), + [anon_sym_register] = ACTIONS(2611), + [anon_sym_inline] = ACTIONS(2611), + [anon_sym___inline] = ACTIONS(2611), + [anon_sym___inline__] = ACTIONS(2611), + [anon_sym___forceinline] = ACTIONS(2611), + [anon_sym_thread_local] = ACTIONS(2611), + [anon_sym___thread] = ACTIONS(2611), + [anon_sym_const] = ACTIONS(2611), + [anon_sym_constexpr] = ACTIONS(2611), + [anon_sym_volatile] = ACTIONS(2611), + [anon_sym_restrict] = ACTIONS(2611), + [anon_sym___restrict__] = ACTIONS(2611), + [anon_sym__Atomic] = ACTIONS(2611), + [anon_sym__Noreturn] = ACTIONS(2611), + [anon_sym_noreturn] = ACTIONS(2611), + [anon_sym__Nonnull] = ACTIONS(2611), + [anon_sym_mutable] = ACTIONS(2611), + [anon_sym_constinit] = ACTIONS(2611), + [anon_sym_consteval] = ACTIONS(2611), + [anon_sym_alignas] = ACTIONS(2611), + [anon_sym__Alignas] = ACTIONS(2611), + [sym_primitive_type] = ACTIONS(2611), + [anon_sym_enum] = ACTIONS(2611), + [anon_sym_class] = ACTIONS(2611), + [anon_sym_struct] = ACTIONS(2611), + [anon_sym_union] = ACTIONS(2611), + [anon_sym_if] = ACTIONS(2611), + [anon_sym_else] = ACTIONS(2611), + [anon_sym_switch] = ACTIONS(2611), + [anon_sym_case] = ACTIONS(2611), + [anon_sym_default] = ACTIONS(2611), + [anon_sym_while] = ACTIONS(2611), + [anon_sym_do] = ACTIONS(2611), + [anon_sym_for] = ACTIONS(2611), + [anon_sym_return] = ACTIONS(2611), + [anon_sym_break] = ACTIONS(2611), + [anon_sym_continue] = ACTIONS(2611), + [anon_sym_goto] = ACTIONS(2611), + [anon_sym___try] = ACTIONS(2611), + [anon_sym___leave] = ACTIONS(2611), + [anon_sym_not] = ACTIONS(2611), + [anon_sym_compl] = ACTIONS(2611), + [anon_sym_DASH_DASH] = ACTIONS(2613), + [anon_sym_PLUS_PLUS] = ACTIONS(2613), + [anon_sym_sizeof] = ACTIONS(2611), + [anon_sym___alignof__] = ACTIONS(2611), + [anon_sym___alignof] = ACTIONS(2611), + [anon_sym__alignof] = ACTIONS(2611), + [anon_sym_alignof] = ACTIONS(2611), + [anon_sym__Alignof] = ACTIONS(2611), + [anon_sym_offsetof] = ACTIONS(2611), + [anon_sym__Generic] = ACTIONS(2611), + [anon_sym_asm] = ACTIONS(2611), + [anon_sym___asm__] = ACTIONS(2611), + [anon_sym___asm] = ACTIONS(2611), + [sym_number_literal] = ACTIONS(2613), + [anon_sym_L_SQUOTE] = ACTIONS(2613), + [anon_sym_u_SQUOTE] = ACTIONS(2613), + [anon_sym_U_SQUOTE] = ACTIONS(2613), + [anon_sym_u8_SQUOTE] = ACTIONS(2613), + [anon_sym_SQUOTE] = ACTIONS(2613), + [anon_sym_L_DQUOTE] = ACTIONS(2613), + [anon_sym_u_DQUOTE] = ACTIONS(2613), + [anon_sym_U_DQUOTE] = ACTIONS(2613), + [anon_sym_u8_DQUOTE] = ACTIONS(2613), + [anon_sym_DQUOTE] = ACTIONS(2613), + [sym_true] = ACTIONS(2611), + [sym_false] = ACTIONS(2611), + [anon_sym_NULL] = ACTIONS(2611), + [anon_sym_nullptr] = ACTIONS(2611), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2611), + [anon_sym_decltype] = ACTIONS(2611), + [anon_sym_explicit] = ACTIONS(2611), + [anon_sym_typename] = ACTIONS(2611), + [anon_sym_template] = ACTIONS(2611), + [anon_sym_operator] = ACTIONS(2611), + [anon_sym_try] = ACTIONS(2611), + [anon_sym_delete] = ACTIONS(2611), + [anon_sym_throw] = ACTIONS(2611), + [anon_sym_namespace] = ACTIONS(2611), + [anon_sym_static_assert] = ACTIONS(2611), + [anon_sym_concept] = ACTIONS(2611), + [anon_sym_co_return] = ACTIONS(2611), + [anon_sym_co_yield] = ACTIONS(2611), + [anon_sym_catch] = ACTIONS(2611), + [anon_sym_R_DQUOTE] = ACTIONS(2613), + [anon_sym_LR_DQUOTE] = ACTIONS(2613), + [anon_sym_uR_DQUOTE] = ACTIONS(2613), + [anon_sym_UR_DQUOTE] = ACTIONS(2613), + [anon_sym_u8R_DQUOTE] = ACTIONS(2613), + [anon_sym_co_await] = ACTIONS(2611), + [anon_sym_new] = ACTIONS(2611), + [anon_sym_requires] = ACTIONS(2611), + [sym_this] = ACTIONS(2611), + }, + [463] = { + [sym_type_qualifier] = STATE(3891), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(4528), + [sym_sized_type_specifier] = STATE(1890), + [sym_enum_specifier] = STATE(1890), + [sym_struct_specifier] = STATE(1890), + [sym_union_specifier] = STATE(1890), + [sym_expression] = STATE(4729), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_type_descriptor] = STATE(8869), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_placeholder_type_specifier] = STATE(1890), + [sym_decltype_auto] = STATE(1888), + [sym_decltype] = STATE(1782), + [sym_class_specifier] = STATE(1890), + [sym__class_name] = STATE(7707), + [sym_dependent_type] = STATE(1890), + [sym_template_type] = STATE(5365), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5819), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(5382), + [sym_user_defined_literal] = STATE(3323), + [aux_sym__type_definition_type_repeat1] = STATE(3891), + [aux_sym_sized_type_specifier_repeat1] = STATE(4234), + [sym_identifier] = ACTIONS(3357), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(3367), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(3359), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1810), - [anon_sym_unsigned] = ACTIONS(1810), - [anon_sym_long] = ACTIONS(1810), - [anon_sym_short] = ACTIONS(1810), + [anon_sym_signed] = ACTIONS(1808), + [anon_sym_unsigned] = ACTIONS(1808), + [anon_sym_long] = ACTIONS(1808), + [anon_sym_short] = ACTIONS(1808), [anon_sym_LBRACK] = ACTIONS(2020), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), @@ -110207,11 +110234,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(3369), - [anon_sym_enum] = ACTIONS(1816), - [anon_sym_class] = ACTIONS(1818), - [anon_sym_struct] = ACTIONS(1820), - [anon_sym_union] = ACTIONS(1822), + [sym_primitive_type] = ACTIONS(3361), + [anon_sym_enum] = ACTIONS(1814), + [anon_sym_class] = ACTIONS(1816), + [anon_sym_struct] = ACTIONS(1818), + [anon_sym_union] = ACTIONS(1820), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -110243,10 +110270,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(123), [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1846), - [anon_sym_decltype] = ACTIONS(1848), - [anon_sym_typename] = ACTIONS(1850), - [anon_sym_template] = ACTIONS(1452), + [sym_auto] = ACTIONS(1844), + [anon_sym_decltype] = ACTIONS(1846), + [anon_sym_typename] = ACTIONS(1848), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -110258,78 +110285,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [466] = { - [sym_type_qualifier] = STATE(3904), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(4455), - [sym_sized_type_specifier] = STATE(1879), - [sym_enum_specifier] = STATE(1879), - [sym_struct_specifier] = STATE(1879), - [sym_union_specifier] = STATE(1879), - [sym_expression] = STATE(4648), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_type_descriptor] = STATE(7973), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_placeholder_type_specifier] = STATE(1879), - [sym_decltype_auto] = STATE(1859), - [sym_decltype] = STATE(1713), - [sym_class_specifier] = STATE(1879), - [sym__class_name] = STATE(7608), - [sym_dependent_type] = STATE(1879), - [sym_template_type] = STATE(5285), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5676), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(5327), - [sym_user_defined_literal] = STATE(3242), - [aux_sym__type_definition_type_repeat1] = STATE(3904), - [aux_sym_sized_type_specifier_repeat1] = STATE(4209), - [sym_identifier] = ACTIONS(3365), - [anon_sym_LPAREN2] = ACTIONS(1436), + [464] = { + [sym_type_qualifier] = STATE(3891), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(4528), + [sym_sized_type_specifier] = STATE(1890), + [sym_enum_specifier] = STATE(1890), + [sym_struct_specifier] = STATE(1890), + [sym_union_specifier] = STATE(1890), + [sym_expression] = STATE(4801), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_type_descriptor] = STATE(8438), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_placeholder_type_specifier] = STATE(1890), + [sym_decltype_auto] = STATE(1888), + [sym_decltype] = STATE(1782), + [sym_class_specifier] = STATE(1890), + [sym__class_name] = STATE(7707), + [sym_dependent_type] = STATE(1890), + [sym_template_type] = STATE(5365), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5819), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(5382), + [sym_user_defined_literal] = STATE(3323), + [aux_sym__type_definition_type_repeat1] = STATE(3891), + [aux_sym_sized_type_specifier_repeat1] = STATE(4234), + [sym_identifier] = ACTIONS(3357), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(3367), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(3359), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1810), - [anon_sym_unsigned] = ACTIONS(1810), - [anon_sym_long] = ACTIONS(1810), - [anon_sym_short] = ACTIONS(1810), + [anon_sym_signed] = ACTIONS(1808), + [anon_sym_unsigned] = ACTIONS(1808), + [anon_sym_long] = ACTIONS(1808), + [anon_sym_short] = ACTIONS(1808), [anon_sym_LBRACK] = ACTIONS(2020), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), @@ -110345,11 +110372,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(3369), - [anon_sym_enum] = ACTIONS(1816), - [anon_sym_class] = ACTIONS(1818), - [anon_sym_struct] = ACTIONS(1820), - [anon_sym_union] = ACTIONS(1822), + [sym_primitive_type] = ACTIONS(3361), + [anon_sym_enum] = ACTIONS(1814), + [anon_sym_class] = ACTIONS(1816), + [anon_sym_struct] = ACTIONS(1818), + [anon_sym_union] = ACTIONS(1820), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -110381,10 +110408,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(123), [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1846), - [anon_sym_decltype] = ACTIONS(1848), - [anon_sym_typename] = ACTIONS(1850), - [anon_sym_template] = ACTIONS(1452), + [sym_auto] = ACTIONS(1844), + [anon_sym_decltype] = ACTIONS(1846), + [anon_sym_typename] = ACTIONS(1848), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -110396,78 +110423,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [467] = { - [sym_type_qualifier] = STATE(3904), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(4455), - [sym_sized_type_specifier] = STATE(1879), - [sym_enum_specifier] = STATE(1879), - [sym_struct_specifier] = STATE(1879), - [sym_union_specifier] = STATE(1879), - [sym_expression] = STATE(4697), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_type_descriptor] = STATE(8364), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_placeholder_type_specifier] = STATE(1879), - [sym_decltype_auto] = STATE(1859), - [sym_decltype] = STATE(1713), - [sym_class_specifier] = STATE(1879), - [sym__class_name] = STATE(7608), - [sym_dependent_type] = STATE(1879), - [sym_template_type] = STATE(5285), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5676), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(5327), - [sym_user_defined_literal] = STATE(3242), - [aux_sym__type_definition_type_repeat1] = STATE(3904), - [aux_sym_sized_type_specifier_repeat1] = STATE(4209), - [sym_identifier] = ACTIONS(3365), - [anon_sym_LPAREN2] = ACTIONS(1436), + [465] = { + [sym_type_qualifier] = STATE(3891), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(4528), + [sym_sized_type_specifier] = STATE(1890), + [sym_enum_specifier] = STATE(1890), + [sym_struct_specifier] = STATE(1890), + [sym_union_specifier] = STATE(1890), + [sym_expression] = STATE(4745), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_type_descriptor] = STATE(8822), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_placeholder_type_specifier] = STATE(1890), + [sym_decltype_auto] = STATE(1888), + [sym_decltype] = STATE(1782), + [sym_class_specifier] = STATE(1890), + [sym__class_name] = STATE(7707), + [sym_dependent_type] = STATE(1890), + [sym_template_type] = STATE(5365), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5819), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(5382), + [sym_user_defined_literal] = STATE(3323), + [aux_sym__type_definition_type_repeat1] = STATE(3891), + [aux_sym_sized_type_specifier_repeat1] = STATE(4234), + [sym_identifier] = ACTIONS(3357), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(3367), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(3359), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1810), - [anon_sym_unsigned] = ACTIONS(1810), - [anon_sym_long] = ACTIONS(1810), - [anon_sym_short] = ACTIONS(1810), + [anon_sym_signed] = ACTIONS(1808), + [anon_sym_unsigned] = ACTIONS(1808), + [anon_sym_long] = ACTIONS(1808), + [anon_sym_short] = ACTIONS(1808), [anon_sym_LBRACK] = ACTIONS(2020), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), @@ -110483,11 +110510,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(3369), - [anon_sym_enum] = ACTIONS(1816), - [anon_sym_class] = ACTIONS(1818), - [anon_sym_struct] = ACTIONS(1820), - [anon_sym_union] = ACTIONS(1822), + [sym_primitive_type] = ACTIONS(3361), + [anon_sym_enum] = ACTIONS(1814), + [anon_sym_class] = ACTIONS(1816), + [anon_sym_struct] = ACTIONS(1818), + [anon_sym_union] = ACTIONS(1820), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -110519,10 +110546,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(123), [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1846), - [anon_sym_decltype] = ACTIONS(1848), - [anon_sym_typename] = ACTIONS(1850), - [anon_sym_template] = ACTIONS(1452), + [sym_auto] = ACTIONS(1844), + [anon_sym_decltype] = ACTIONS(1846), + [anon_sym_typename] = ACTIONS(1848), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -110534,78 +110561,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [468] = { - [sym_type_qualifier] = STATE(3904), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(4455), - [sym_sized_type_specifier] = STATE(1879), - [sym_enum_specifier] = STATE(1879), - [sym_struct_specifier] = STATE(1879), - [sym_union_specifier] = STATE(1879), - [sym_expression] = STATE(4740), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_type_descriptor] = STATE(8668), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_placeholder_type_specifier] = STATE(1879), - [sym_decltype_auto] = STATE(1859), - [sym_decltype] = STATE(1713), - [sym_class_specifier] = STATE(1879), - [sym__class_name] = STATE(7608), - [sym_dependent_type] = STATE(1879), - [sym_template_type] = STATE(5285), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5676), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(5327), - [sym_user_defined_literal] = STATE(3242), - [aux_sym__type_definition_type_repeat1] = STATE(3904), - [aux_sym_sized_type_specifier_repeat1] = STATE(4209), - [sym_identifier] = ACTIONS(3365), - [anon_sym_LPAREN2] = ACTIONS(1436), + [466] = { + [sym_type_qualifier] = STATE(3891), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(4528), + [sym_sized_type_specifier] = STATE(1890), + [sym_enum_specifier] = STATE(1890), + [sym_struct_specifier] = STATE(1890), + [sym_union_specifier] = STATE(1890), + [sym_expression] = STATE(4829), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_type_descriptor] = STATE(8406), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_placeholder_type_specifier] = STATE(1890), + [sym_decltype_auto] = STATE(1888), + [sym_decltype] = STATE(1782), + [sym_class_specifier] = STATE(1890), + [sym__class_name] = STATE(7707), + [sym_dependent_type] = STATE(1890), + [sym_template_type] = STATE(5365), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5819), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(5382), + [sym_user_defined_literal] = STATE(3323), + [aux_sym__type_definition_type_repeat1] = STATE(3891), + [aux_sym_sized_type_specifier_repeat1] = STATE(4234), + [sym_identifier] = ACTIONS(3357), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(3367), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(3359), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1810), - [anon_sym_unsigned] = ACTIONS(1810), - [anon_sym_long] = ACTIONS(1810), - [anon_sym_short] = ACTIONS(1810), + [anon_sym_signed] = ACTIONS(1808), + [anon_sym_unsigned] = ACTIONS(1808), + [anon_sym_long] = ACTIONS(1808), + [anon_sym_short] = ACTIONS(1808), [anon_sym_LBRACK] = ACTIONS(2020), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), @@ -110621,11 +110648,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(3369), - [anon_sym_enum] = ACTIONS(1816), - [anon_sym_class] = ACTIONS(1818), - [anon_sym_struct] = ACTIONS(1820), - [anon_sym_union] = ACTIONS(1822), + [sym_primitive_type] = ACTIONS(3361), + [anon_sym_enum] = ACTIONS(1814), + [anon_sym_class] = ACTIONS(1816), + [anon_sym_struct] = ACTIONS(1818), + [anon_sym_union] = ACTIONS(1820), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -110657,10 +110684,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(123), [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1846), - [anon_sym_decltype] = ACTIONS(1848), - [anon_sym_typename] = ACTIONS(1850), - [anon_sym_template] = ACTIONS(1452), + [sym_auto] = ACTIONS(1844), + [anon_sym_decltype] = ACTIONS(1846), + [anon_sym_typename] = ACTIONS(1848), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -110672,78 +110699,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [469] = { - [sym_type_qualifier] = STATE(3904), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(4455), - [sym_sized_type_specifier] = STATE(1879), - [sym_enum_specifier] = STATE(1879), - [sym_struct_specifier] = STATE(1879), - [sym_union_specifier] = STATE(1879), - [sym_expression] = STATE(4755), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_type_descriptor] = STATE(8103), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_placeholder_type_specifier] = STATE(1879), - [sym_decltype_auto] = STATE(1859), - [sym_decltype] = STATE(1713), - [sym_class_specifier] = STATE(1879), - [sym__class_name] = STATE(7608), - [sym_dependent_type] = STATE(1879), - [sym_template_type] = STATE(5285), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5676), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(5327), - [sym_user_defined_literal] = STATE(3242), - [aux_sym__type_definition_type_repeat1] = STATE(3904), - [aux_sym_sized_type_specifier_repeat1] = STATE(4209), - [sym_identifier] = ACTIONS(3365), - [anon_sym_LPAREN2] = ACTIONS(1436), + [467] = { + [sym_type_qualifier] = STATE(3891), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(4528), + [sym_sized_type_specifier] = STATE(1890), + [sym_enum_specifier] = STATE(1890), + [sym_struct_specifier] = STATE(1890), + [sym_union_specifier] = STATE(1890), + [sym_expression] = STATE(4779), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_type_descriptor] = STATE(8609), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_placeholder_type_specifier] = STATE(1890), + [sym_decltype_auto] = STATE(1888), + [sym_decltype] = STATE(1782), + [sym_class_specifier] = STATE(1890), + [sym__class_name] = STATE(7707), + [sym_dependent_type] = STATE(1890), + [sym_template_type] = STATE(5365), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5819), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(5382), + [sym_user_defined_literal] = STATE(3323), + [aux_sym__type_definition_type_repeat1] = STATE(3891), + [aux_sym_sized_type_specifier_repeat1] = STATE(4234), + [sym_identifier] = ACTIONS(3357), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(3367), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(3359), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1810), - [anon_sym_unsigned] = ACTIONS(1810), - [anon_sym_long] = ACTIONS(1810), - [anon_sym_short] = ACTIONS(1810), + [anon_sym_signed] = ACTIONS(1808), + [anon_sym_unsigned] = ACTIONS(1808), + [anon_sym_long] = ACTIONS(1808), + [anon_sym_short] = ACTIONS(1808), [anon_sym_LBRACK] = ACTIONS(2020), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), @@ -110759,11 +110786,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(3369), - [anon_sym_enum] = ACTIONS(1816), - [anon_sym_class] = ACTIONS(1818), - [anon_sym_struct] = ACTIONS(1820), - [anon_sym_union] = ACTIONS(1822), + [sym_primitive_type] = ACTIONS(3361), + [anon_sym_enum] = ACTIONS(1814), + [anon_sym_class] = ACTIONS(1816), + [anon_sym_struct] = ACTIONS(1818), + [anon_sym_union] = ACTIONS(1820), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -110795,10 +110822,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(123), [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1846), - [anon_sym_decltype] = ACTIONS(1848), - [anon_sym_typename] = ACTIONS(1850), - [anon_sym_template] = ACTIONS(1452), + [sym_auto] = ACTIONS(1844), + [anon_sym_decltype] = ACTIONS(1846), + [anon_sym_typename] = ACTIONS(1848), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -110810,78 +110837,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [470] = { - [sym_type_qualifier] = STATE(3904), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(4455), - [sym_sized_type_specifier] = STATE(1879), - [sym_enum_specifier] = STATE(1879), - [sym_struct_specifier] = STATE(1879), - [sym_union_specifier] = STATE(1879), - [sym_expression] = STATE(4585), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_type_descriptor] = STATE(8497), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_placeholder_type_specifier] = STATE(1879), - [sym_decltype_auto] = STATE(1859), - [sym_decltype] = STATE(1713), - [sym_class_specifier] = STATE(1879), - [sym__class_name] = STATE(7608), - [sym_dependent_type] = STATE(1879), - [sym_template_type] = STATE(5285), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5676), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(5327), - [sym_user_defined_literal] = STATE(3242), - [aux_sym__type_definition_type_repeat1] = STATE(3904), - [aux_sym_sized_type_specifier_repeat1] = STATE(4209), - [sym_identifier] = ACTIONS(3365), - [anon_sym_LPAREN2] = ACTIONS(1436), + [468] = { + [sym_type_qualifier] = STATE(3891), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(4528), + [sym_sized_type_specifier] = STATE(1890), + [sym_enum_specifier] = STATE(1890), + [sym_struct_specifier] = STATE(1890), + [sym_union_specifier] = STATE(1890), + [sym_expression] = STATE(4682), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_type_descriptor] = STATE(8802), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_placeholder_type_specifier] = STATE(1890), + [sym_decltype_auto] = STATE(1888), + [sym_decltype] = STATE(1782), + [sym_class_specifier] = STATE(1890), + [sym__class_name] = STATE(7707), + [sym_dependent_type] = STATE(1890), + [sym_template_type] = STATE(5365), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5819), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(5382), + [sym_user_defined_literal] = STATE(3323), + [aux_sym__type_definition_type_repeat1] = STATE(3891), + [aux_sym_sized_type_specifier_repeat1] = STATE(4234), + [sym_identifier] = ACTIONS(3357), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(3367), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(3359), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1810), - [anon_sym_unsigned] = ACTIONS(1810), - [anon_sym_long] = ACTIONS(1810), - [anon_sym_short] = ACTIONS(1810), + [anon_sym_signed] = ACTIONS(1808), + [anon_sym_unsigned] = ACTIONS(1808), + [anon_sym_long] = ACTIONS(1808), + [anon_sym_short] = ACTIONS(1808), [anon_sym_LBRACK] = ACTIONS(2020), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), @@ -110897,11 +110924,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(3369), - [anon_sym_enum] = ACTIONS(1816), - [anon_sym_class] = ACTIONS(1818), - [anon_sym_struct] = ACTIONS(1820), - [anon_sym_union] = ACTIONS(1822), + [sym_primitive_type] = ACTIONS(3361), + [anon_sym_enum] = ACTIONS(1814), + [anon_sym_class] = ACTIONS(1816), + [anon_sym_struct] = ACTIONS(1818), + [anon_sym_union] = ACTIONS(1820), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -110933,10 +110960,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(123), [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1846), - [anon_sym_decltype] = ACTIONS(1848), - [anon_sym_typename] = ACTIONS(1850), - [anon_sym_template] = ACTIONS(1452), + [sym_auto] = ACTIONS(1844), + [anon_sym_decltype] = ACTIONS(1846), + [anon_sym_typename] = ACTIONS(1848), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -110948,78 +110975,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [471] = { - [sym_type_qualifier] = STATE(3904), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(4455), - [sym_sized_type_specifier] = STATE(1879), - [sym_enum_specifier] = STATE(1879), - [sym_struct_specifier] = STATE(1879), - [sym_union_specifier] = STATE(1879), - [sym_expression] = STATE(4589), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_type_descriptor] = STATE(8014), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_placeholder_type_specifier] = STATE(1879), - [sym_decltype_auto] = STATE(1859), - [sym_decltype] = STATE(1713), - [sym_class_specifier] = STATE(1879), - [sym__class_name] = STATE(7608), - [sym_dependent_type] = STATE(1879), - [sym_template_type] = STATE(5285), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5676), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(5327), - [sym_user_defined_literal] = STATE(3242), - [aux_sym__type_definition_type_repeat1] = STATE(3904), - [aux_sym_sized_type_specifier_repeat1] = STATE(4209), - [sym_identifier] = ACTIONS(3365), - [anon_sym_LPAREN2] = ACTIONS(1436), + [469] = { + [sym_type_qualifier] = STATE(3891), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(4528), + [sym_sized_type_specifier] = STATE(1890), + [sym_enum_specifier] = STATE(1890), + [sym_struct_specifier] = STATE(1890), + [sym_union_specifier] = STATE(1890), + [sym_expression] = STATE(4726), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_type_descriptor] = STATE(8522), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_placeholder_type_specifier] = STATE(1890), + [sym_decltype_auto] = STATE(1888), + [sym_decltype] = STATE(1782), + [sym_class_specifier] = STATE(1890), + [sym__class_name] = STATE(7707), + [sym_dependent_type] = STATE(1890), + [sym_template_type] = STATE(5365), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5819), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(5382), + [sym_user_defined_literal] = STATE(3323), + [aux_sym__type_definition_type_repeat1] = STATE(3891), + [aux_sym_sized_type_specifier_repeat1] = STATE(4234), + [sym_identifier] = ACTIONS(3357), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(3367), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(3359), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1810), - [anon_sym_unsigned] = ACTIONS(1810), - [anon_sym_long] = ACTIONS(1810), - [anon_sym_short] = ACTIONS(1810), + [anon_sym_signed] = ACTIONS(1808), + [anon_sym_unsigned] = ACTIONS(1808), + [anon_sym_long] = ACTIONS(1808), + [anon_sym_short] = ACTIONS(1808), [anon_sym_LBRACK] = ACTIONS(2020), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), @@ -111035,11 +111062,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(3369), - [anon_sym_enum] = ACTIONS(1816), - [anon_sym_class] = ACTIONS(1818), - [anon_sym_struct] = ACTIONS(1820), - [anon_sym_union] = ACTIONS(1822), + [sym_primitive_type] = ACTIONS(3361), + [anon_sym_enum] = ACTIONS(1814), + [anon_sym_class] = ACTIONS(1816), + [anon_sym_struct] = ACTIONS(1818), + [anon_sym_union] = ACTIONS(1820), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -111071,10 +111098,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(123), [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1846), - [anon_sym_decltype] = ACTIONS(1848), - [anon_sym_typename] = ACTIONS(1850), - [anon_sym_template] = ACTIONS(1452), + [sym_auto] = ACTIONS(1844), + [anon_sym_decltype] = ACTIONS(1846), + [anon_sym_typename] = ACTIONS(1848), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -111086,78 +111113,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [472] = { - [sym_type_qualifier] = STATE(3904), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(4455), - [sym_sized_type_specifier] = STATE(1879), - [sym_enum_specifier] = STATE(1879), - [sym_struct_specifier] = STATE(1879), - [sym_union_specifier] = STATE(1879), - [sym_expression] = STATE(4592), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_type_descriptor] = STATE(8328), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_placeholder_type_specifier] = STATE(1879), - [sym_decltype_auto] = STATE(1859), - [sym_decltype] = STATE(1713), - [sym_class_specifier] = STATE(1879), - [sym__class_name] = STATE(7608), - [sym_dependent_type] = STATE(1879), - [sym_template_type] = STATE(5285), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5676), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(5327), - [sym_user_defined_literal] = STATE(3242), - [aux_sym__type_definition_type_repeat1] = STATE(3904), - [aux_sym_sized_type_specifier_repeat1] = STATE(4209), - [sym_identifier] = ACTIONS(3365), - [anon_sym_LPAREN2] = ACTIONS(1436), + [470] = { + [sym_type_qualifier] = STATE(3891), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(4528), + [sym_sized_type_specifier] = STATE(1890), + [sym_enum_specifier] = STATE(1890), + [sym_struct_specifier] = STATE(1890), + [sym_union_specifier] = STATE(1890), + [sym_expression] = STATE(4752), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_type_descriptor] = STATE(8848), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_placeholder_type_specifier] = STATE(1890), + [sym_decltype_auto] = STATE(1888), + [sym_decltype] = STATE(1782), + [sym_class_specifier] = STATE(1890), + [sym__class_name] = STATE(7707), + [sym_dependent_type] = STATE(1890), + [sym_template_type] = STATE(5365), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5819), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(5382), + [sym_user_defined_literal] = STATE(3323), + [aux_sym__type_definition_type_repeat1] = STATE(3891), + [aux_sym_sized_type_specifier_repeat1] = STATE(4234), + [sym_identifier] = ACTIONS(3357), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(3367), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(3359), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1810), - [anon_sym_unsigned] = ACTIONS(1810), - [anon_sym_long] = ACTIONS(1810), - [anon_sym_short] = ACTIONS(1810), + [anon_sym_signed] = ACTIONS(1808), + [anon_sym_unsigned] = ACTIONS(1808), + [anon_sym_long] = ACTIONS(1808), + [anon_sym_short] = ACTIONS(1808), [anon_sym_LBRACK] = ACTIONS(2020), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), @@ -111173,11 +111200,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(3369), - [anon_sym_enum] = ACTIONS(1816), - [anon_sym_class] = ACTIONS(1818), - [anon_sym_struct] = ACTIONS(1820), - [anon_sym_union] = ACTIONS(1822), + [sym_primitive_type] = ACTIONS(3361), + [anon_sym_enum] = ACTIONS(1814), + [anon_sym_class] = ACTIONS(1816), + [anon_sym_struct] = ACTIONS(1818), + [anon_sym_union] = ACTIONS(1820), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -111209,10 +111236,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(123), [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1846), - [anon_sym_decltype] = ACTIONS(1848), - [anon_sym_typename] = ACTIONS(1850), - [anon_sym_template] = ACTIONS(1452), + [sym_auto] = ACTIONS(1844), + [anon_sym_decltype] = ACTIONS(1846), + [anon_sym_typename] = ACTIONS(1848), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -111224,282 +111251,1662 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, + [471] = { + [sym_identifier] = ACTIONS(2611), + [aux_sym_preproc_include_token1] = ACTIONS(2611), + [aux_sym_preproc_def_token1] = ACTIONS(2611), + [aux_sym_preproc_if_token1] = ACTIONS(2611), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2611), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2611), + [sym_preproc_directive] = ACTIONS(2611), + [anon_sym_LPAREN2] = ACTIONS(2613), + [anon_sym_BANG] = ACTIONS(2613), + [anon_sym_TILDE] = ACTIONS(2613), + [anon_sym_DASH] = ACTIONS(2611), + [anon_sym_PLUS] = ACTIONS(2611), + [anon_sym_STAR] = ACTIONS(2613), + [anon_sym_AMP_AMP] = ACTIONS(2613), + [anon_sym_AMP] = ACTIONS(2611), + [anon_sym_SEMI] = ACTIONS(2613), + [anon_sym___extension__] = ACTIONS(2611), + [anon_sym_typedef] = ACTIONS(2611), + [anon_sym_virtual] = ACTIONS(2611), + [anon_sym_extern] = ACTIONS(2611), + [anon_sym___attribute__] = ACTIONS(2611), + [anon_sym___attribute] = ACTIONS(2611), + [anon_sym_using] = ACTIONS(2611), + [anon_sym_COLON_COLON] = ACTIONS(2613), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2613), + [anon_sym___declspec] = ACTIONS(2611), + [anon_sym___based] = ACTIONS(2611), + [anon_sym___cdecl] = ACTIONS(2611), + [anon_sym___clrcall] = ACTIONS(2611), + [anon_sym___stdcall] = ACTIONS(2611), + [anon_sym___fastcall] = ACTIONS(2611), + [anon_sym___thiscall] = ACTIONS(2611), + [anon_sym___vectorcall] = ACTIONS(2611), + [anon_sym_LBRACE] = ACTIONS(2613), + [anon_sym_RBRACE] = ACTIONS(2613), + [anon_sym_signed] = ACTIONS(2611), + [anon_sym_unsigned] = ACTIONS(2611), + [anon_sym_long] = ACTIONS(2611), + [anon_sym_short] = ACTIONS(2611), + [anon_sym_LBRACK] = ACTIONS(2611), + [anon_sym_static] = ACTIONS(2611), + [anon_sym_register] = ACTIONS(2611), + [anon_sym_inline] = ACTIONS(2611), + [anon_sym___inline] = ACTIONS(2611), + [anon_sym___inline__] = ACTIONS(2611), + [anon_sym___forceinline] = ACTIONS(2611), + [anon_sym_thread_local] = ACTIONS(2611), + [anon_sym___thread] = ACTIONS(2611), + [anon_sym_const] = ACTIONS(2611), + [anon_sym_constexpr] = ACTIONS(2611), + [anon_sym_volatile] = ACTIONS(2611), + [anon_sym_restrict] = ACTIONS(2611), + [anon_sym___restrict__] = ACTIONS(2611), + [anon_sym__Atomic] = ACTIONS(2611), + [anon_sym__Noreturn] = ACTIONS(2611), + [anon_sym_noreturn] = ACTIONS(2611), + [anon_sym__Nonnull] = ACTIONS(2611), + [anon_sym_mutable] = ACTIONS(2611), + [anon_sym_constinit] = ACTIONS(2611), + [anon_sym_consteval] = ACTIONS(2611), + [anon_sym_alignas] = ACTIONS(2611), + [anon_sym__Alignas] = ACTIONS(2611), + [sym_primitive_type] = ACTIONS(2611), + [anon_sym_enum] = ACTIONS(2611), + [anon_sym_class] = ACTIONS(2611), + [anon_sym_struct] = ACTIONS(2611), + [anon_sym_union] = ACTIONS(2611), + [anon_sym_if] = ACTIONS(2611), + [anon_sym_else] = ACTIONS(2611), + [anon_sym_switch] = ACTIONS(2611), + [anon_sym_case] = ACTIONS(2611), + [anon_sym_default] = ACTIONS(2611), + [anon_sym_while] = ACTIONS(2611), + [anon_sym_do] = ACTIONS(2611), + [anon_sym_for] = ACTIONS(2611), + [anon_sym_return] = ACTIONS(2611), + [anon_sym_break] = ACTIONS(2611), + [anon_sym_continue] = ACTIONS(2611), + [anon_sym_goto] = ACTIONS(2611), + [anon_sym___try] = ACTIONS(2611), + [anon_sym___leave] = ACTIONS(2611), + [anon_sym_not] = ACTIONS(2611), + [anon_sym_compl] = ACTIONS(2611), + [anon_sym_DASH_DASH] = ACTIONS(2613), + [anon_sym_PLUS_PLUS] = ACTIONS(2613), + [anon_sym_sizeof] = ACTIONS(2611), + [anon_sym___alignof__] = ACTIONS(2611), + [anon_sym___alignof] = ACTIONS(2611), + [anon_sym__alignof] = ACTIONS(2611), + [anon_sym_alignof] = ACTIONS(2611), + [anon_sym__Alignof] = ACTIONS(2611), + [anon_sym_offsetof] = ACTIONS(2611), + [anon_sym__Generic] = ACTIONS(2611), + [anon_sym_asm] = ACTIONS(2611), + [anon_sym___asm__] = ACTIONS(2611), + [anon_sym___asm] = ACTIONS(2611), + [sym_number_literal] = ACTIONS(2613), + [anon_sym_L_SQUOTE] = ACTIONS(2613), + [anon_sym_u_SQUOTE] = ACTIONS(2613), + [anon_sym_U_SQUOTE] = ACTIONS(2613), + [anon_sym_u8_SQUOTE] = ACTIONS(2613), + [anon_sym_SQUOTE] = ACTIONS(2613), + [anon_sym_L_DQUOTE] = ACTIONS(2613), + [anon_sym_u_DQUOTE] = ACTIONS(2613), + [anon_sym_U_DQUOTE] = ACTIONS(2613), + [anon_sym_u8_DQUOTE] = ACTIONS(2613), + [anon_sym_DQUOTE] = ACTIONS(2613), + [sym_true] = ACTIONS(2611), + [sym_false] = ACTIONS(2611), + [anon_sym_NULL] = ACTIONS(2611), + [anon_sym_nullptr] = ACTIONS(2611), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2611), + [anon_sym_decltype] = ACTIONS(2611), + [anon_sym_explicit] = ACTIONS(2611), + [anon_sym_typename] = ACTIONS(2611), + [anon_sym_template] = ACTIONS(2611), + [anon_sym_operator] = ACTIONS(2611), + [anon_sym_try] = ACTIONS(2611), + [anon_sym_delete] = ACTIONS(2611), + [anon_sym_throw] = ACTIONS(2611), + [anon_sym_namespace] = ACTIONS(2611), + [anon_sym_static_assert] = ACTIONS(2611), + [anon_sym_concept] = ACTIONS(2611), + [anon_sym_co_return] = ACTIONS(2611), + [anon_sym_co_yield] = ACTIONS(2611), + [anon_sym_catch] = ACTIONS(2611), + [anon_sym_R_DQUOTE] = ACTIONS(2613), + [anon_sym_LR_DQUOTE] = ACTIONS(2613), + [anon_sym_uR_DQUOTE] = ACTIONS(2613), + [anon_sym_UR_DQUOTE] = ACTIONS(2613), + [anon_sym_u8R_DQUOTE] = ACTIONS(2613), + [anon_sym_co_await] = ACTIONS(2611), + [anon_sym_new] = ACTIONS(2611), + [anon_sym_requires] = ACTIONS(2611), + [sym_this] = ACTIONS(2611), + }, + [472] = { + [sym_else_clause] = STATE(575), + [sym_identifier] = ACTIONS(2605), + [aux_sym_preproc_include_token1] = ACTIONS(2605), + [aux_sym_preproc_def_token1] = ACTIONS(2605), + [aux_sym_preproc_if_token1] = ACTIONS(2605), + [aux_sym_preproc_if_token2] = ACTIONS(2605), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2605), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2605), + [sym_preproc_directive] = ACTIONS(2605), + [anon_sym_LPAREN2] = ACTIONS(2607), + [anon_sym_BANG] = ACTIONS(2607), + [anon_sym_TILDE] = ACTIONS(2607), + [anon_sym_DASH] = ACTIONS(2605), + [anon_sym_PLUS] = ACTIONS(2605), + [anon_sym_STAR] = ACTIONS(2607), + [anon_sym_AMP_AMP] = ACTIONS(2607), + [anon_sym_AMP] = ACTIONS(2605), + [anon_sym_SEMI] = ACTIONS(2607), + [anon_sym___extension__] = ACTIONS(2605), + [anon_sym_typedef] = ACTIONS(2605), + [anon_sym_virtual] = ACTIONS(2605), + [anon_sym_extern] = ACTIONS(2605), + [anon_sym___attribute__] = ACTIONS(2605), + [anon_sym___attribute] = ACTIONS(2605), + [anon_sym_using] = ACTIONS(2605), + [anon_sym_COLON_COLON] = ACTIONS(2607), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2607), + [anon_sym___declspec] = ACTIONS(2605), + [anon_sym___based] = ACTIONS(2605), + [anon_sym___cdecl] = ACTIONS(2605), + [anon_sym___clrcall] = ACTIONS(2605), + [anon_sym___stdcall] = ACTIONS(2605), + [anon_sym___fastcall] = ACTIONS(2605), + [anon_sym___thiscall] = ACTIONS(2605), + [anon_sym___vectorcall] = ACTIONS(2605), + [anon_sym_LBRACE] = ACTIONS(2607), + [anon_sym_signed] = ACTIONS(2605), + [anon_sym_unsigned] = ACTIONS(2605), + [anon_sym_long] = ACTIONS(2605), + [anon_sym_short] = ACTIONS(2605), + [anon_sym_LBRACK] = ACTIONS(2605), + [anon_sym_static] = ACTIONS(2605), + [anon_sym_register] = ACTIONS(2605), + [anon_sym_inline] = ACTIONS(2605), + [anon_sym___inline] = ACTIONS(2605), + [anon_sym___inline__] = ACTIONS(2605), + [anon_sym___forceinline] = ACTIONS(2605), + [anon_sym_thread_local] = ACTIONS(2605), + [anon_sym___thread] = ACTIONS(2605), + [anon_sym_const] = ACTIONS(2605), + [anon_sym_constexpr] = ACTIONS(2605), + [anon_sym_volatile] = ACTIONS(2605), + [anon_sym_restrict] = ACTIONS(2605), + [anon_sym___restrict__] = ACTIONS(2605), + [anon_sym__Atomic] = ACTIONS(2605), + [anon_sym__Noreturn] = ACTIONS(2605), + [anon_sym_noreturn] = ACTIONS(2605), + [anon_sym__Nonnull] = ACTIONS(2605), + [anon_sym_mutable] = ACTIONS(2605), + [anon_sym_constinit] = ACTIONS(2605), + [anon_sym_consteval] = ACTIONS(2605), + [anon_sym_alignas] = ACTIONS(2605), + [anon_sym__Alignas] = ACTIONS(2605), + [sym_primitive_type] = ACTIONS(2605), + [anon_sym_enum] = ACTIONS(2605), + [anon_sym_class] = ACTIONS(2605), + [anon_sym_struct] = ACTIONS(2605), + [anon_sym_union] = ACTIONS(2605), + [anon_sym_if] = ACTIONS(2605), + [anon_sym_else] = ACTIONS(3365), + [anon_sym_switch] = ACTIONS(2605), + [anon_sym_case] = ACTIONS(2605), + [anon_sym_default] = ACTIONS(2605), + [anon_sym_while] = ACTIONS(2605), + [anon_sym_do] = ACTIONS(2605), + [anon_sym_for] = ACTIONS(2605), + [anon_sym_return] = ACTIONS(2605), + [anon_sym_break] = ACTIONS(2605), + [anon_sym_continue] = ACTIONS(2605), + [anon_sym_goto] = ACTIONS(2605), + [anon_sym___try] = ACTIONS(2605), + [anon_sym___leave] = ACTIONS(2605), + [anon_sym_not] = ACTIONS(2605), + [anon_sym_compl] = ACTIONS(2605), + [anon_sym_DASH_DASH] = ACTIONS(2607), + [anon_sym_PLUS_PLUS] = ACTIONS(2607), + [anon_sym_sizeof] = ACTIONS(2605), + [anon_sym___alignof__] = ACTIONS(2605), + [anon_sym___alignof] = ACTIONS(2605), + [anon_sym__alignof] = ACTIONS(2605), + [anon_sym_alignof] = ACTIONS(2605), + [anon_sym__Alignof] = ACTIONS(2605), + [anon_sym_offsetof] = ACTIONS(2605), + [anon_sym__Generic] = ACTIONS(2605), + [anon_sym_asm] = ACTIONS(2605), + [anon_sym___asm__] = ACTIONS(2605), + [anon_sym___asm] = ACTIONS(2605), + [sym_number_literal] = ACTIONS(2607), + [anon_sym_L_SQUOTE] = ACTIONS(2607), + [anon_sym_u_SQUOTE] = ACTIONS(2607), + [anon_sym_U_SQUOTE] = ACTIONS(2607), + [anon_sym_u8_SQUOTE] = ACTIONS(2607), + [anon_sym_SQUOTE] = ACTIONS(2607), + [anon_sym_L_DQUOTE] = ACTIONS(2607), + [anon_sym_u_DQUOTE] = ACTIONS(2607), + [anon_sym_U_DQUOTE] = ACTIONS(2607), + [anon_sym_u8_DQUOTE] = ACTIONS(2607), + [anon_sym_DQUOTE] = ACTIONS(2607), + [sym_true] = ACTIONS(2605), + [sym_false] = ACTIONS(2605), + [anon_sym_NULL] = ACTIONS(2605), + [anon_sym_nullptr] = ACTIONS(2605), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2605), + [anon_sym_decltype] = ACTIONS(2605), + [anon_sym_explicit] = ACTIONS(2605), + [anon_sym_typename] = ACTIONS(2605), + [anon_sym_template] = ACTIONS(2605), + [anon_sym_operator] = ACTIONS(2605), + [anon_sym_try] = ACTIONS(2605), + [anon_sym_delete] = ACTIONS(2605), + [anon_sym_throw] = ACTIONS(2605), + [anon_sym_namespace] = ACTIONS(2605), + [anon_sym_static_assert] = ACTIONS(2605), + [anon_sym_concept] = ACTIONS(2605), + [anon_sym_co_return] = ACTIONS(2605), + [anon_sym_co_yield] = ACTIONS(2605), + [anon_sym_R_DQUOTE] = ACTIONS(2607), + [anon_sym_LR_DQUOTE] = ACTIONS(2607), + [anon_sym_uR_DQUOTE] = ACTIONS(2607), + [anon_sym_UR_DQUOTE] = ACTIONS(2607), + [anon_sym_u8R_DQUOTE] = ACTIONS(2607), + [anon_sym_co_await] = ACTIONS(2605), + [anon_sym_new] = ACTIONS(2605), + [anon_sym_requires] = ACTIONS(2605), + [sym_this] = ACTIONS(2605), + }, [473] = { - [sym_identifier] = ACTIONS(2619), - [aux_sym_preproc_include_token1] = ACTIONS(2619), - [aux_sym_preproc_def_token1] = ACTIONS(2619), - [aux_sym_preproc_if_token1] = ACTIONS(2619), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2619), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2619), - [sym_preproc_directive] = ACTIONS(2619), - [anon_sym_LPAREN2] = ACTIONS(2621), - [anon_sym_BANG] = ACTIONS(2621), - [anon_sym_TILDE] = ACTIONS(2621), - [anon_sym_DASH] = ACTIONS(2619), - [anon_sym_PLUS] = ACTIONS(2619), - [anon_sym_STAR] = ACTIONS(2621), - [anon_sym_AMP_AMP] = ACTIONS(2621), - [anon_sym_AMP] = ACTIONS(2619), - [anon_sym_SEMI] = ACTIONS(2621), - [anon_sym___extension__] = ACTIONS(2619), - [anon_sym_typedef] = ACTIONS(2619), - [anon_sym_virtual] = ACTIONS(2619), - [anon_sym_extern] = ACTIONS(2619), - [anon_sym___attribute__] = ACTIONS(2619), - [anon_sym___attribute] = ACTIONS(2619), - [anon_sym_using] = ACTIONS(2619), - [anon_sym_COLON_COLON] = ACTIONS(2621), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2621), - [anon_sym___declspec] = ACTIONS(2619), - [anon_sym___based] = ACTIONS(2619), - [anon_sym___cdecl] = ACTIONS(2619), - [anon_sym___clrcall] = ACTIONS(2619), - [anon_sym___stdcall] = ACTIONS(2619), - [anon_sym___fastcall] = ACTIONS(2619), - [anon_sym___thiscall] = ACTIONS(2619), - [anon_sym___vectorcall] = ACTIONS(2619), - [anon_sym_LBRACE] = ACTIONS(2621), - [anon_sym_RBRACE] = ACTIONS(2621), - [anon_sym_signed] = ACTIONS(2619), - [anon_sym_unsigned] = ACTIONS(2619), - [anon_sym_long] = ACTIONS(2619), - [anon_sym_short] = ACTIONS(2619), - [anon_sym_LBRACK] = ACTIONS(2619), - [anon_sym_static] = ACTIONS(2619), - [anon_sym_register] = ACTIONS(2619), - [anon_sym_inline] = ACTIONS(2619), - [anon_sym___inline] = ACTIONS(2619), - [anon_sym___inline__] = ACTIONS(2619), - [anon_sym___forceinline] = ACTIONS(2619), - [anon_sym_thread_local] = ACTIONS(2619), - [anon_sym___thread] = ACTIONS(2619), - [anon_sym_const] = ACTIONS(2619), - [anon_sym_constexpr] = ACTIONS(2619), - [anon_sym_volatile] = ACTIONS(2619), - [anon_sym_restrict] = ACTIONS(2619), - [anon_sym___restrict__] = ACTIONS(2619), - [anon_sym__Atomic] = ACTIONS(2619), - [anon_sym__Noreturn] = ACTIONS(2619), - [anon_sym_noreturn] = ACTIONS(2619), - [anon_sym__Nonnull] = ACTIONS(2619), - [anon_sym_mutable] = ACTIONS(2619), - [anon_sym_constinit] = ACTIONS(2619), - [anon_sym_consteval] = ACTIONS(2619), - [anon_sym_alignas] = ACTIONS(2619), - [anon_sym__Alignas] = ACTIONS(2619), - [sym_primitive_type] = ACTIONS(2619), - [anon_sym_enum] = ACTIONS(2619), - [anon_sym_class] = ACTIONS(2619), - [anon_sym_struct] = ACTIONS(2619), - [anon_sym_union] = ACTIONS(2619), - [anon_sym_if] = ACTIONS(2619), - [anon_sym_else] = ACTIONS(2619), - [anon_sym_switch] = ACTIONS(2619), - [anon_sym_case] = ACTIONS(2619), - [anon_sym_default] = ACTIONS(2619), - [anon_sym_while] = ACTIONS(2619), - [anon_sym_do] = ACTIONS(2619), - [anon_sym_for] = ACTIONS(2619), - [anon_sym_return] = ACTIONS(2619), - [anon_sym_break] = ACTIONS(2619), - [anon_sym_continue] = ACTIONS(2619), - [anon_sym_goto] = ACTIONS(2619), - [anon_sym___try] = ACTIONS(2619), - [anon_sym___leave] = ACTIONS(2619), - [anon_sym_not] = ACTIONS(2619), - [anon_sym_compl] = ACTIONS(2619), - [anon_sym_DASH_DASH] = ACTIONS(2621), - [anon_sym_PLUS_PLUS] = ACTIONS(2621), - [anon_sym_sizeof] = ACTIONS(2619), - [anon_sym___alignof__] = ACTIONS(2619), - [anon_sym___alignof] = ACTIONS(2619), - [anon_sym__alignof] = ACTIONS(2619), - [anon_sym_alignof] = ACTIONS(2619), - [anon_sym__Alignof] = ACTIONS(2619), - [anon_sym_offsetof] = ACTIONS(2619), - [anon_sym__Generic] = ACTIONS(2619), - [anon_sym_asm] = ACTIONS(2619), - [anon_sym___asm__] = ACTIONS(2619), - [anon_sym___asm] = ACTIONS(2619), - [sym_number_literal] = ACTIONS(2621), - [anon_sym_L_SQUOTE] = ACTIONS(2621), - [anon_sym_u_SQUOTE] = ACTIONS(2621), - [anon_sym_U_SQUOTE] = ACTIONS(2621), - [anon_sym_u8_SQUOTE] = ACTIONS(2621), - [anon_sym_SQUOTE] = ACTIONS(2621), - [anon_sym_L_DQUOTE] = ACTIONS(2621), - [anon_sym_u_DQUOTE] = ACTIONS(2621), - [anon_sym_U_DQUOTE] = ACTIONS(2621), - [anon_sym_u8_DQUOTE] = ACTIONS(2621), - [anon_sym_DQUOTE] = ACTIONS(2621), - [sym_true] = ACTIONS(2619), - [sym_false] = ACTIONS(2619), - [anon_sym_NULL] = ACTIONS(2619), - [anon_sym_nullptr] = ACTIONS(2619), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2619), - [anon_sym_decltype] = ACTIONS(2619), - [anon_sym_explicit] = ACTIONS(2619), - [anon_sym_typename] = ACTIONS(2619), - [anon_sym_template] = ACTIONS(2619), - [anon_sym_operator] = ACTIONS(2619), - [anon_sym_try] = ACTIONS(2619), - [anon_sym_delete] = ACTIONS(2619), - [anon_sym_throw] = ACTIONS(2619), - [anon_sym_namespace] = ACTIONS(2619), - [anon_sym_static_assert] = ACTIONS(2619), - [anon_sym_concept] = ACTIONS(2619), - [anon_sym_co_return] = ACTIONS(2619), - [anon_sym_co_yield] = ACTIONS(2619), - [anon_sym_catch] = ACTIONS(2619), - [anon_sym_R_DQUOTE] = ACTIONS(2621), - [anon_sym_LR_DQUOTE] = ACTIONS(2621), - [anon_sym_uR_DQUOTE] = ACTIONS(2621), - [anon_sym_UR_DQUOTE] = ACTIONS(2621), - [anon_sym_u8R_DQUOTE] = ACTIONS(2621), - [anon_sym_co_await] = ACTIONS(2619), - [anon_sym_new] = ACTIONS(2619), - [anon_sym_requires] = ACTIONS(2619), - [sym_this] = ACTIONS(2619), + [sym_identifier] = ACTIONS(1936), + [aux_sym_preproc_include_token1] = ACTIONS(1936), + [aux_sym_preproc_def_token1] = ACTIONS(1936), + [aux_sym_preproc_if_token1] = ACTIONS(1936), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1936), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1936), + [sym_preproc_directive] = ACTIONS(1936), + [anon_sym_LPAREN2] = ACTIONS(1934), + [anon_sym_BANG] = ACTIONS(1934), + [anon_sym_TILDE] = ACTIONS(1934), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_STAR] = ACTIONS(1934), + [anon_sym_AMP_AMP] = ACTIONS(1934), + [anon_sym_AMP] = ACTIONS(1936), + [anon_sym_SEMI] = ACTIONS(1934), + [anon_sym___extension__] = ACTIONS(1936), + [anon_sym_typedef] = ACTIONS(1936), + [anon_sym_virtual] = ACTIONS(1936), + [anon_sym_extern] = ACTIONS(1936), + [anon_sym___attribute__] = ACTIONS(1936), + [anon_sym___attribute] = ACTIONS(1936), + [anon_sym_using] = ACTIONS(1936), + [anon_sym_COLON_COLON] = ACTIONS(1934), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1934), + [anon_sym___declspec] = ACTIONS(1936), + [anon_sym___based] = ACTIONS(1936), + [anon_sym___cdecl] = ACTIONS(1936), + [anon_sym___clrcall] = ACTIONS(1936), + [anon_sym___stdcall] = ACTIONS(1936), + [anon_sym___fastcall] = ACTIONS(1936), + [anon_sym___thiscall] = ACTIONS(1936), + [anon_sym___vectorcall] = ACTIONS(1936), + [anon_sym_LBRACE] = ACTIONS(1934), + [anon_sym_RBRACE] = ACTIONS(1934), + [anon_sym_signed] = ACTIONS(1936), + [anon_sym_unsigned] = ACTIONS(1936), + [anon_sym_long] = ACTIONS(1936), + [anon_sym_short] = ACTIONS(1936), + [anon_sym_LBRACK] = ACTIONS(1936), + [anon_sym_static] = ACTIONS(1936), + [anon_sym_register] = ACTIONS(1936), + [anon_sym_inline] = ACTIONS(1936), + [anon_sym___inline] = ACTIONS(1936), + [anon_sym___inline__] = ACTIONS(1936), + [anon_sym___forceinline] = ACTIONS(1936), + [anon_sym_thread_local] = ACTIONS(1936), + [anon_sym___thread] = ACTIONS(1936), + [anon_sym_const] = ACTIONS(1936), + [anon_sym_constexpr] = ACTIONS(1936), + [anon_sym_volatile] = ACTIONS(1936), + [anon_sym_restrict] = ACTIONS(1936), + [anon_sym___restrict__] = ACTIONS(1936), + [anon_sym__Atomic] = ACTIONS(1936), + [anon_sym__Noreturn] = ACTIONS(1936), + [anon_sym_noreturn] = ACTIONS(1936), + [anon_sym__Nonnull] = ACTIONS(1936), + [anon_sym_mutable] = ACTIONS(1936), + [anon_sym_constinit] = ACTIONS(1936), + [anon_sym_consteval] = ACTIONS(1936), + [anon_sym_alignas] = ACTIONS(1936), + [anon_sym__Alignas] = ACTIONS(1936), + [sym_primitive_type] = ACTIONS(1936), + [anon_sym_enum] = ACTIONS(1936), + [anon_sym_class] = ACTIONS(1936), + [anon_sym_struct] = ACTIONS(1936), + [anon_sym_union] = ACTIONS(1936), + [anon_sym_if] = ACTIONS(1936), + [anon_sym_else] = ACTIONS(1936), + [anon_sym_switch] = ACTIONS(1936), + [anon_sym_case] = ACTIONS(1936), + [anon_sym_default] = ACTIONS(1936), + [anon_sym_while] = ACTIONS(1936), + [anon_sym_do] = ACTIONS(1936), + [anon_sym_for] = ACTIONS(1936), + [anon_sym_return] = ACTIONS(1936), + [anon_sym_break] = ACTIONS(1936), + [anon_sym_continue] = ACTIONS(1936), + [anon_sym_goto] = ACTIONS(1936), + [anon_sym___try] = ACTIONS(1936), + [anon_sym___leave] = ACTIONS(1936), + [anon_sym_not] = ACTIONS(1936), + [anon_sym_compl] = ACTIONS(1936), + [anon_sym_DASH_DASH] = ACTIONS(1934), + [anon_sym_PLUS_PLUS] = ACTIONS(1934), + [anon_sym_sizeof] = ACTIONS(1936), + [anon_sym___alignof__] = ACTIONS(1936), + [anon_sym___alignof] = ACTIONS(1936), + [anon_sym__alignof] = ACTIONS(1936), + [anon_sym_alignof] = ACTIONS(1936), + [anon_sym__Alignof] = ACTIONS(1936), + [anon_sym_offsetof] = ACTIONS(1936), + [anon_sym__Generic] = ACTIONS(1936), + [anon_sym_asm] = ACTIONS(1936), + [anon_sym___asm__] = ACTIONS(1936), + [anon_sym___asm] = ACTIONS(1936), + [sym_number_literal] = ACTIONS(1934), + [anon_sym_L_SQUOTE] = ACTIONS(1934), + [anon_sym_u_SQUOTE] = ACTIONS(1934), + [anon_sym_U_SQUOTE] = ACTIONS(1934), + [anon_sym_u8_SQUOTE] = ACTIONS(1934), + [anon_sym_SQUOTE] = ACTIONS(1934), + [anon_sym_L_DQUOTE] = ACTIONS(1934), + [anon_sym_u_DQUOTE] = ACTIONS(1934), + [anon_sym_U_DQUOTE] = ACTIONS(1934), + [anon_sym_u8_DQUOTE] = ACTIONS(1934), + [anon_sym_DQUOTE] = ACTIONS(1934), + [sym_true] = ACTIONS(1936), + [sym_false] = ACTIONS(1936), + [anon_sym_NULL] = ACTIONS(1936), + [anon_sym_nullptr] = ACTIONS(1936), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1936), + [anon_sym_decltype] = ACTIONS(1936), + [anon_sym_explicit] = ACTIONS(1936), + [anon_sym_typename] = ACTIONS(1936), + [anon_sym_template] = ACTIONS(1936), + [anon_sym_operator] = ACTIONS(1936), + [anon_sym_try] = ACTIONS(1936), + [anon_sym_delete] = ACTIONS(1936), + [anon_sym_throw] = ACTIONS(1936), + [anon_sym_namespace] = ACTIONS(1936), + [anon_sym_static_assert] = ACTIONS(1936), + [anon_sym_concept] = ACTIONS(1936), + [anon_sym_co_return] = ACTIONS(1936), + [anon_sym_co_yield] = ACTIONS(1936), + [anon_sym_catch] = ACTIONS(1936), + [anon_sym_R_DQUOTE] = ACTIONS(1934), + [anon_sym_LR_DQUOTE] = ACTIONS(1934), + [anon_sym_uR_DQUOTE] = ACTIONS(1934), + [anon_sym_UR_DQUOTE] = ACTIONS(1934), + [anon_sym_u8R_DQUOTE] = ACTIONS(1934), + [anon_sym_co_await] = ACTIONS(1936), + [anon_sym_new] = ACTIONS(1936), + [anon_sym_requires] = ACTIONS(1936), + [sym_this] = ACTIONS(1936), }, [474] = { - [sym_identifier] = ACTIONS(2739), - [aux_sym_preproc_include_token1] = ACTIONS(2739), - [aux_sym_preproc_def_token1] = ACTIONS(2739), - [aux_sym_preproc_if_token1] = ACTIONS(2739), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2739), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2739), - [sym_preproc_directive] = ACTIONS(2739), - [anon_sym_LPAREN2] = ACTIONS(2741), - [anon_sym_BANG] = ACTIONS(2741), - [anon_sym_TILDE] = ACTIONS(2741), - [anon_sym_DASH] = ACTIONS(2739), - [anon_sym_PLUS] = ACTIONS(2739), - [anon_sym_STAR] = ACTIONS(2741), - [anon_sym_AMP_AMP] = ACTIONS(2741), - [anon_sym_AMP] = ACTIONS(2739), - [anon_sym_SEMI] = ACTIONS(2741), - [anon_sym___extension__] = ACTIONS(2739), - [anon_sym_typedef] = ACTIONS(2739), - [anon_sym_virtual] = ACTIONS(2739), - [anon_sym_extern] = ACTIONS(2739), - [anon_sym___attribute__] = ACTIONS(2739), - [anon_sym___attribute] = ACTIONS(2739), - [anon_sym_using] = ACTIONS(2739), - [anon_sym_COLON_COLON] = ACTIONS(2741), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2741), - [anon_sym___declspec] = ACTIONS(2739), - [anon_sym___based] = ACTIONS(2739), - [anon_sym___cdecl] = ACTIONS(2739), - [anon_sym___clrcall] = ACTIONS(2739), - [anon_sym___stdcall] = ACTIONS(2739), - [anon_sym___fastcall] = ACTIONS(2739), - [anon_sym___thiscall] = ACTIONS(2739), - [anon_sym___vectorcall] = ACTIONS(2739), - [anon_sym_LBRACE] = ACTIONS(2741), - [anon_sym_RBRACE] = ACTIONS(2741), - [anon_sym_signed] = ACTIONS(2739), - [anon_sym_unsigned] = ACTIONS(2739), - [anon_sym_long] = ACTIONS(2739), - [anon_sym_short] = ACTIONS(2739), - [anon_sym_LBRACK] = ACTIONS(2739), - [anon_sym_static] = ACTIONS(2739), - [anon_sym_register] = ACTIONS(2739), - [anon_sym_inline] = ACTIONS(2739), - [anon_sym___inline] = ACTIONS(2739), - [anon_sym___inline__] = ACTIONS(2739), - [anon_sym___forceinline] = ACTIONS(2739), - [anon_sym_thread_local] = ACTIONS(2739), - [anon_sym___thread] = ACTIONS(2739), - [anon_sym_const] = ACTIONS(2739), - [anon_sym_constexpr] = ACTIONS(2739), - [anon_sym_volatile] = ACTIONS(2739), - [anon_sym_restrict] = ACTIONS(2739), - [anon_sym___restrict__] = ACTIONS(2739), - [anon_sym__Atomic] = ACTIONS(2739), - [anon_sym__Noreturn] = ACTIONS(2739), - [anon_sym_noreturn] = ACTIONS(2739), - [anon_sym__Nonnull] = ACTIONS(2739), - [anon_sym_mutable] = ACTIONS(2739), - [anon_sym_constinit] = ACTIONS(2739), - [anon_sym_consteval] = ACTIONS(2739), - [anon_sym_alignas] = ACTIONS(2739), - [anon_sym__Alignas] = ACTIONS(2739), - [sym_primitive_type] = ACTIONS(2739), - [anon_sym_enum] = ACTIONS(2739), - [anon_sym_class] = ACTIONS(2739), - [anon_sym_struct] = ACTIONS(2739), - [anon_sym_union] = ACTIONS(2739), - [anon_sym_if] = ACTIONS(2739), - [anon_sym_else] = ACTIONS(2739), - [anon_sym_switch] = ACTIONS(2739), - [anon_sym_case] = ACTIONS(2739), - [anon_sym_default] = ACTIONS(2739), - [anon_sym_while] = ACTIONS(2739), - [anon_sym_do] = ACTIONS(2739), - [anon_sym_for] = ACTIONS(2739), - [anon_sym_return] = ACTIONS(2739), - [anon_sym_break] = ACTIONS(2739), - [anon_sym_continue] = ACTIONS(2739), - [anon_sym_goto] = ACTIONS(2739), - [anon_sym___try] = ACTIONS(2739), - [anon_sym___leave] = ACTIONS(2739), - [anon_sym_not] = ACTIONS(2739), - [anon_sym_compl] = ACTIONS(2739), - [anon_sym_DASH_DASH] = ACTIONS(2741), - [anon_sym_PLUS_PLUS] = ACTIONS(2741), - [anon_sym_sizeof] = ACTIONS(2739), - [anon_sym___alignof__] = ACTIONS(2739), - [anon_sym___alignof] = ACTIONS(2739), - [anon_sym__alignof] = ACTIONS(2739), - [anon_sym_alignof] = ACTIONS(2739), - [anon_sym__Alignof] = ACTIONS(2739), - [anon_sym_offsetof] = ACTIONS(2739), - [anon_sym__Generic] = ACTIONS(2739), - [anon_sym_asm] = ACTIONS(2739), - [anon_sym___asm__] = ACTIONS(2739), - [anon_sym___asm] = ACTIONS(2739), - [sym_number_literal] = ACTIONS(2741), - [anon_sym_L_SQUOTE] = ACTIONS(2741), - [anon_sym_u_SQUOTE] = ACTIONS(2741), - [anon_sym_U_SQUOTE] = ACTIONS(2741), - [anon_sym_u8_SQUOTE] = ACTIONS(2741), - [anon_sym_SQUOTE] = ACTIONS(2741), - [anon_sym_L_DQUOTE] = ACTIONS(2741), - [anon_sym_u_DQUOTE] = ACTIONS(2741), - [anon_sym_U_DQUOTE] = ACTIONS(2741), - [anon_sym_u8_DQUOTE] = ACTIONS(2741), - [anon_sym_DQUOTE] = ACTIONS(2741), - [sym_true] = ACTIONS(2739), - [sym_false] = ACTIONS(2739), - [anon_sym_NULL] = ACTIONS(2739), - [anon_sym_nullptr] = ACTIONS(2739), + [sym_type_qualifier] = STATE(3891), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(4528), + [sym_sized_type_specifier] = STATE(1890), + [sym_enum_specifier] = STATE(1890), + [sym_struct_specifier] = STATE(1890), + [sym_union_specifier] = STATE(1890), + [sym_expression] = STATE(4833), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_type_descriptor] = STATE(8592), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_placeholder_type_specifier] = STATE(1890), + [sym_decltype_auto] = STATE(1888), + [sym_decltype] = STATE(1782), + [sym_class_specifier] = STATE(1890), + [sym__class_name] = STATE(7707), + [sym_dependent_type] = STATE(1890), + [sym_template_type] = STATE(5365), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5819), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(5382), + [sym_user_defined_literal] = STATE(3323), + [aux_sym__type_definition_type_repeat1] = STATE(3891), + [aux_sym_sized_type_specifier_repeat1] = STATE(4234), + [sym_identifier] = ACTIONS(3357), + [anon_sym_LPAREN2] = ACTIONS(1252), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(3359), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(1808), + [anon_sym_unsigned] = ACTIONS(1808), + [anon_sym_long] = ACTIONS(1808), + [anon_sym_short] = ACTIONS(1808), + [anon_sym_LBRACK] = ACTIONS(2020), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(69), + [anon_sym__Alignas] = ACTIONS(69), + [sym_primitive_type] = ACTIONS(3361), + [anon_sym_enum] = ACTIONS(1814), + [anon_sym_class] = ACTIONS(1816), + [anon_sym_struct] = ACTIONS(1818), + [anon_sym_union] = ACTIONS(1820), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [anon_sym___alignof__] = ACTIONS(107), + [anon_sym___alignof] = ACTIONS(107), + [anon_sym__alignof] = ACTIONS(107), + [anon_sym_alignof] = ACTIONS(107), + [anon_sym__Alignof] = ACTIONS(107), + [anon_sym_offsetof] = ACTIONS(109), + [anon_sym__Generic] = ACTIONS(111), + [anon_sym_asm] = ACTIONS(113), + [anon_sym___asm__] = ACTIONS(113), + [anon_sym___asm] = ACTIONS(113), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(117), + [anon_sym_u_SQUOTE] = ACTIONS(117), + [anon_sym_U_SQUOTE] = ACTIONS(117), + [anon_sym_u8_SQUOTE] = ACTIONS(117), + [anon_sym_SQUOTE] = ACTIONS(117), + [anon_sym_L_DQUOTE] = ACTIONS(119), + [anon_sym_u_DQUOTE] = ACTIONS(119), + [anon_sym_U_DQUOTE] = ACTIONS(119), + [anon_sym_u8_DQUOTE] = ACTIONS(119), + [anon_sym_DQUOTE] = ACTIONS(119), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(123), + [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2739), - [anon_sym_decltype] = ACTIONS(2739), - [anon_sym_explicit] = ACTIONS(2739), - [anon_sym_typename] = ACTIONS(2739), - [anon_sym_template] = ACTIONS(2739), - [anon_sym_operator] = ACTIONS(2739), - [anon_sym_try] = ACTIONS(2739), - [anon_sym_delete] = ACTIONS(2739), - [anon_sym_throw] = ACTIONS(2739), - [anon_sym_namespace] = ACTIONS(2739), - [anon_sym_static_assert] = ACTIONS(2739), - [anon_sym_concept] = ACTIONS(2739), - [anon_sym_co_return] = ACTIONS(2739), - [anon_sym_co_yield] = ACTIONS(2739), - [anon_sym_R_DQUOTE] = ACTIONS(2741), - [anon_sym_LR_DQUOTE] = ACTIONS(2741), - [anon_sym_uR_DQUOTE] = ACTIONS(2741), - [anon_sym_UR_DQUOTE] = ACTIONS(2741), - [anon_sym_u8R_DQUOTE] = ACTIONS(2741), - [anon_sym_co_await] = ACTIONS(2739), - [anon_sym_new] = ACTIONS(2739), - [anon_sym_requires] = ACTIONS(2739), - [sym_this] = ACTIONS(2739), + [sym_auto] = ACTIONS(1844), + [anon_sym_decltype] = ACTIONS(1846), + [anon_sym_typename] = ACTIONS(1848), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(145), + [anon_sym_R_DQUOTE] = ACTIONS(159), + [anon_sym_LR_DQUOTE] = ACTIONS(159), + [anon_sym_uR_DQUOTE] = ACTIONS(159), + [anon_sym_UR_DQUOTE] = ACTIONS(159), + [anon_sym_u8R_DQUOTE] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), }, [475] = { + [sym_identifier] = ACTIONS(1940), + [aux_sym_preproc_include_token1] = ACTIONS(1940), + [aux_sym_preproc_def_token1] = ACTIONS(1940), + [aux_sym_preproc_if_token1] = ACTIONS(1940), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1940), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1940), + [sym_preproc_directive] = ACTIONS(1940), + [anon_sym_LPAREN2] = ACTIONS(1938), + [anon_sym_BANG] = ACTIONS(1938), + [anon_sym_TILDE] = ACTIONS(1938), + [anon_sym_DASH] = ACTIONS(1940), + [anon_sym_PLUS] = ACTIONS(1940), + [anon_sym_STAR] = ACTIONS(1938), + [anon_sym_AMP_AMP] = ACTIONS(1938), + [anon_sym_AMP] = ACTIONS(1940), + [anon_sym_SEMI] = ACTIONS(1938), + [anon_sym___extension__] = ACTIONS(1940), + [anon_sym_typedef] = ACTIONS(1940), + [anon_sym_virtual] = ACTIONS(1940), + [anon_sym_extern] = ACTIONS(1940), + [anon_sym___attribute__] = ACTIONS(1940), + [anon_sym___attribute] = ACTIONS(1940), + [anon_sym_using] = ACTIONS(1940), + [anon_sym_COLON_COLON] = ACTIONS(1938), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1938), + [anon_sym___declspec] = ACTIONS(1940), + [anon_sym___based] = ACTIONS(1940), + [anon_sym___cdecl] = ACTIONS(1940), + [anon_sym___clrcall] = ACTIONS(1940), + [anon_sym___stdcall] = ACTIONS(1940), + [anon_sym___fastcall] = ACTIONS(1940), + [anon_sym___thiscall] = ACTIONS(1940), + [anon_sym___vectorcall] = ACTIONS(1940), + [anon_sym_LBRACE] = ACTIONS(1938), + [anon_sym_RBRACE] = ACTIONS(1938), + [anon_sym_signed] = ACTIONS(1940), + [anon_sym_unsigned] = ACTIONS(1940), + [anon_sym_long] = ACTIONS(1940), + [anon_sym_short] = ACTIONS(1940), + [anon_sym_LBRACK] = ACTIONS(1940), + [anon_sym_static] = ACTIONS(1940), + [anon_sym_register] = ACTIONS(1940), + [anon_sym_inline] = ACTIONS(1940), + [anon_sym___inline] = ACTIONS(1940), + [anon_sym___inline__] = ACTIONS(1940), + [anon_sym___forceinline] = ACTIONS(1940), + [anon_sym_thread_local] = ACTIONS(1940), + [anon_sym___thread] = ACTIONS(1940), + [anon_sym_const] = ACTIONS(1940), + [anon_sym_constexpr] = ACTIONS(1940), + [anon_sym_volatile] = ACTIONS(1940), + [anon_sym_restrict] = ACTIONS(1940), + [anon_sym___restrict__] = ACTIONS(1940), + [anon_sym__Atomic] = ACTIONS(1940), + [anon_sym__Noreturn] = ACTIONS(1940), + [anon_sym_noreturn] = ACTIONS(1940), + [anon_sym__Nonnull] = ACTIONS(1940), + [anon_sym_mutable] = ACTIONS(1940), + [anon_sym_constinit] = ACTIONS(1940), + [anon_sym_consteval] = ACTIONS(1940), + [anon_sym_alignas] = ACTIONS(1940), + [anon_sym__Alignas] = ACTIONS(1940), + [sym_primitive_type] = ACTIONS(1940), + [anon_sym_enum] = ACTIONS(1940), + [anon_sym_class] = ACTIONS(1940), + [anon_sym_struct] = ACTIONS(1940), + [anon_sym_union] = ACTIONS(1940), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_else] = ACTIONS(1940), + [anon_sym_switch] = ACTIONS(1940), + [anon_sym_case] = ACTIONS(1940), + [anon_sym_default] = ACTIONS(1940), + [anon_sym_while] = ACTIONS(1940), + [anon_sym_do] = ACTIONS(1940), + [anon_sym_for] = ACTIONS(1940), + [anon_sym_return] = ACTIONS(1940), + [anon_sym_break] = ACTIONS(1940), + [anon_sym_continue] = ACTIONS(1940), + [anon_sym_goto] = ACTIONS(1940), + [anon_sym___try] = ACTIONS(1940), + [anon_sym___leave] = ACTIONS(1940), + [anon_sym_not] = ACTIONS(1940), + [anon_sym_compl] = ACTIONS(1940), + [anon_sym_DASH_DASH] = ACTIONS(1938), + [anon_sym_PLUS_PLUS] = ACTIONS(1938), + [anon_sym_sizeof] = ACTIONS(1940), + [anon_sym___alignof__] = ACTIONS(1940), + [anon_sym___alignof] = ACTIONS(1940), + [anon_sym__alignof] = ACTIONS(1940), + [anon_sym_alignof] = ACTIONS(1940), + [anon_sym__Alignof] = ACTIONS(1940), + [anon_sym_offsetof] = ACTIONS(1940), + [anon_sym__Generic] = ACTIONS(1940), + [anon_sym_asm] = ACTIONS(1940), + [anon_sym___asm__] = ACTIONS(1940), + [anon_sym___asm] = ACTIONS(1940), + [sym_number_literal] = ACTIONS(1938), + [anon_sym_L_SQUOTE] = ACTIONS(1938), + [anon_sym_u_SQUOTE] = ACTIONS(1938), + [anon_sym_U_SQUOTE] = ACTIONS(1938), + [anon_sym_u8_SQUOTE] = ACTIONS(1938), + [anon_sym_SQUOTE] = ACTIONS(1938), + [anon_sym_L_DQUOTE] = ACTIONS(1938), + [anon_sym_u_DQUOTE] = ACTIONS(1938), + [anon_sym_U_DQUOTE] = ACTIONS(1938), + [anon_sym_u8_DQUOTE] = ACTIONS(1938), + [anon_sym_DQUOTE] = ACTIONS(1938), + [sym_true] = ACTIONS(1940), + [sym_false] = ACTIONS(1940), + [anon_sym_NULL] = ACTIONS(1940), + [anon_sym_nullptr] = ACTIONS(1940), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1940), + [anon_sym_decltype] = ACTIONS(1940), + [anon_sym_explicit] = ACTIONS(1940), + [anon_sym_typename] = ACTIONS(1940), + [anon_sym_template] = ACTIONS(1940), + [anon_sym_operator] = ACTIONS(1940), + [anon_sym_try] = ACTIONS(1940), + [anon_sym_delete] = ACTIONS(1940), + [anon_sym_throw] = ACTIONS(1940), + [anon_sym_namespace] = ACTIONS(1940), + [anon_sym_static_assert] = ACTIONS(1940), + [anon_sym_concept] = ACTIONS(1940), + [anon_sym_co_return] = ACTIONS(1940), + [anon_sym_co_yield] = ACTIONS(1940), + [anon_sym_catch] = ACTIONS(1940), + [anon_sym_R_DQUOTE] = ACTIONS(1938), + [anon_sym_LR_DQUOTE] = ACTIONS(1938), + [anon_sym_uR_DQUOTE] = ACTIONS(1938), + [anon_sym_UR_DQUOTE] = ACTIONS(1938), + [anon_sym_u8R_DQUOTE] = ACTIONS(1938), + [anon_sym_co_await] = ACTIONS(1940), + [anon_sym_new] = ACTIONS(1940), + [anon_sym_requires] = ACTIONS(1940), + [sym_this] = ACTIONS(1940), + }, + [476] = { + [sym_expression] = STATE(3623), + [sym__string] = STATE(3775), + [sym_conditional_expression] = STATE(3886), + [sym_assignment_expression] = STATE(3886), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(3886), + [sym_binary_expression] = STATE(3886), + [sym_update_expression] = STATE(3886), + [sym_cast_expression] = STATE(3886), + [sym_sizeof_expression] = STATE(3886), + [sym_alignof_expression] = STATE(3886), + [sym_offsetof_expression] = STATE(3886), + [sym_generic_expression] = STATE(3886), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(3886), + [sym_extension_expression] = STATE(3886), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(3886), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(3775), + [sym_concatenated_string] = STATE(3775), + [sym_string_literal] = STATE(2596), + [sym_null] = STATE(3886), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7756), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3886), + [sym_raw_string_literal] = STATE(2596), + [sym_co_await_expression] = STATE(3886), + [sym_new_expression] = STATE(3886), + [sym_delete_expression] = STATE(3886), + [sym_requires_clause] = STATE(3886), + [sym_requires_expression] = STATE(3886), + [sym_lambda_expression] = STATE(3886), + [sym_lambda_capture_specifier] = STATE(5492), + [sym_fold_expression] = STATE(3886), + [sym_parameter_pack_expansion] = STATE(3886), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(7756), + [sym_user_defined_literal] = STATE(3522), + [sym_identifier] = ACTIONS(3367), + [anon_sym_LPAREN2] = ACTIONS(1888), + [anon_sym_BANG] = ACTIONS(1890), + [anon_sym_TILDE] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1892), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(3370), + [anon_sym_virtual] = ACTIONS(2569), + [anon_sym_extern] = ACTIONS(2569), + [anon_sym___attribute__] = ACTIONS(2569), + [anon_sym___attribute] = ACTIONS(2569), + [anon_sym_COLON_COLON] = ACTIONS(3373), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2559), + [anon_sym___declspec] = ACTIONS(2569), + [anon_sym_signed] = ACTIONS(2569), + [anon_sym_unsigned] = ACTIONS(2569), + [anon_sym_long] = ACTIONS(2569), + [anon_sym_short] = ACTIONS(2569), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_static] = ACTIONS(2569), + [anon_sym_register] = ACTIONS(2569), + [anon_sym_inline] = ACTIONS(2569), + [anon_sym___inline] = ACTIONS(2569), + [anon_sym___inline__] = ACTIONS(2569), + [anon_sym___forceinline] = ACTIONS(2569), + [anon_sym_thread_local] = ACTIONS(2569), + [anon_sym___thread] = ACTIONS(2569), + [anon_sym_const] = ACTIONS(2569), + [anon_sym_constexpr] = ACTIONS(2569), + [anon_sym_volatile] = ACTIONS(2569), + [anon_sym_restrict] = ACTIONS(2569), + [anon_sym___restrict__] = ACTIONS(2569), + [anon_sym__Atomic] = ACTIONS(2569), + [anon_sym__Noreturn] = ACTIONS(2569), + [anon_sym_noreturn] = ACTIONS(2569), + [anon_sym__Nonnull] = ACTIONS(2569), + [anon_sym_mutable] = ACTIONS(2569), + [anon_sym_constinit] = ACTIONS(2569), + [anon_sym_consteval] = ACTIONS(2569), + [anon_sym_alignas] = ACTIONS(2569), + [anon_sym__Alignas] = ACTIONS(2569), + [sym_primitive_type] = ACTIONS(3376), + [anon_sym_enum] = ACTIONS(2569), + [anon_sym_class] = ACTIONS(2569), + [anon_sym_struct] = ACTIONS(2569), + [anon_sym_union] = ACTIONS(2569), + [anon_sym_not] = ACTIONS(1892), + [anon_sym_compl] = ACTIONS(1892), + [anon_sym_DASH_DASH] = ACTIONS(1902), + [anon_sym_PLUS_PLUS] = ACTIONS(1902), + [anon_sym_sizeof] = ACTIONS(1904), + [anon_sym___alignof__] = ACTIONS(1906), + [anon_sym___alignof] = ACTIONS(1906), + [anon_sym__alignof] = ACTIONS(1906), + [anon_sym_alignof] = ACTIONS(1906), + [anon_sym__Alignof] = ACTIONS(1906), + [anon_sym_offsetof] = ACTIONS(1908), + [anon_sym__Generic] = ACTIONS(1910), + [anon_sym_asm] = ACTIONS(1912), + [anon_sym___asm__] = ACTIONS(1912), + [anon_sym___asm] = ACTIONS(1912), + [sym_number_literal] = ACTIONS(1914), + [anon_sym_L_SQUOTE] = ACTIONS(1916), + [anon_sym_u_SQUOTE] = ACTIONS(1916), + [anon_sym_U_SQUOTE] = ACTIONS(1916), + [anon_sym_u8_SQUOTE] = ACTIONS(1916), + [anon_sym_SQUOTE] = ACTIONS(1916), + [anon_sym_L_DQUOTE] = ACTIONS(1918), + [anon_sym_u_DQUOTE] = ACTIONS(1918), + [anon_sym_U_DQUOTE] = ACTIONS(1918), + [anon_sym_u8_DQUOTE] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1918), + [sym_true] = ACTIONS(1920), + [sym_false] = ACTIONS(1920), + [anon_sym_NULL] = ACTIONS(1922), + [anon_sym_nullptr] = ACTIONS(1922), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2569), + [anon_sym_decltype] = ACTIONS(2580), + [anon_sym_typename] = ACTIONS(2569), + [anon_sym_template] = ACTIONS(2583), + [anon_sym_delete] = ACTIONS(1924), + [anon_sym_R_DQUOTE] = ACTIONS(1926), + [anon_sym_LR_DQUOTE] = ACTIONS(1926), + [anon_sym_uR_DQUOTE] = ACTIONS(1926), + [anon_sym_UR_DQUOTE] = ACTIONS(1926), + [anon_sym_u8R_DQUOTE] = ACTIONS(1926), + [anon_sym_co_await] = ACTIONS(1928), + [anon_sym_new] = ACTIONS(1930), + [anon_sym_requires] = ACTIONS(1932), + [sym_this] = ACTIONS(1920), + }, + [477] = { + [sym_else_clause] = STATE(604), + [sym_identifier] = ACTIONS(2605), + [aux_sym_preproc_include_token1] = ACTIONS(2605), + [aux_sym_preproc_def_token1] = ACTIONS(2605), + [aux_sym_preproc_if_token1] = ACTIONS(2605), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2605), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2605), + [sym_preproc_directive] = ACTIONS(2605), + [anon_sym_LPAREN2] = ACTIONS(2607), + [anon_sym_BANG] = ACTIONS(2607), + [anon_sym_TILDE] = ACTIONS(2607), + [anon_sym_DASH] = ACTIONS(2605), + [anon_sym_PLUS] = ACTIONS(2605), + [anon_sym_STAR] = ACTIONS(2607), + [anon_sym_AMP_AMP] = ACTIONS(2607), + [anon_sym_AMP] = ACTIONS(2605), + [anon_sym_SEMI] = ACTIONS(2607), + [anon_sym___extension__] = ACTIONS(2605), + [anon_sym_typedef] = ACTIONS(2605), + [anon_sym_virtual] = ACTIONS(2605), + [anon_sym_extern] = ACTIONS(2605), + [anon_sym___attribute__] = ACTIONS(2605), + [anon_sym___attribute] = ACTIONS(2605), + [anon_sym_using] = ACTIONS(2605), + [anon_sym_COLON_COLON] = ACTIONS(2607), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2607), + [anon_sym___declspec] = ACTIONS(2605), + [anon_sym___based] = ACTIONS(2605), + [anon_sym___cdecl] = ACTIONS(2605), + [anon_sym___clrcall] = ACTIONS(2605), + [anon_sym___stdcall] = ACTIONS(2605), + [anon_sym___fastcall] = ACTIONS(2605), + [anon_sym___thiscall] = ACTIONS(2605), + [anon_sym___vectorcall] = ACTIONS(2605), + [anon_sym_LBRACE] = ACTIONS(2607), + [anon_sym_RBRACE] = ACTIONS(2607), + [anon_sym_signed] = ACTIONS(2605), + [anon_sym_unsigned] = ACTIONS(2605), + [anon_sym_long] = ACTIONS(2605), + [anon_sym_short] = ACTIONS(2605), + [anon_sym_LBRACK] = ACTIONS(2605), + [anon_sym_static] = ACTIONS(2605), + [anon_sym_register] = ACTIONS(2605), + [anon_sym_inline] = ACTIONS(2605), + [anon_sym___inline] = ACTIONS(2605), + [anon_sym___inline__] = ACTIONS(2605), + [anon_sym___forceinline] = ACTIONS(2605), + [anon_sym_thread_local] = ACTIONS(2605), + [anon_sym___thread] = ACTIONS(2605), + [anon_sym_const] = ACTIONS(2605), + [anon_sym_constexpr] = ACTIONS(2605), + [anon_sym_volatile] = ACTIONS(2605), + [anon_sym_restrict] = ACTIONS(2605), + [anon_sym___restrict__] = ACTIONS(2605), + [anon_sym__Atomic] = ACTIONS(2605), + [anon_sym__Noreturn] = ACTIONS(2605), + [anon_sym_noreturn] = ACTIONS(2605), + [anon_sym__Nonnull] = ACTIONS(2605), + [anon_sym_mutable] = ACTIONS(2605), + [anon_sym_constinit] = ACTIONS(2605), + [anon_sym_consteval] = ACTIONS(2605), + [anon_sym_alignas] = ACTIONS(2605), + [anon_sym__Alignas] = ACTIONS(2605), + [sym_primitive_type] = ACTIONS(2605), + [anon_sym_enum] = ACTIONS(2605), + [anon_sym_class] = ACTIONS(2605), + [anon_sym_struct] = ACTIONS(2605), + [anon_sym_union] = ACTIONS(2605), + [anon_sym_if] = ACTIONS(2605), + [anon_sym_else] = ACTIONS(3363), + [anon_sym_switch] = ACTIONS(2605), + [anon_sym_case] = ACTIONS(2605), + [anon_sym_default] = ACTIONS(2605), + [anon_sym_while] = ACTIONS(2605), + [anon_sym_do] = ACTIONS(2605), + [anon_sym_for] = ACTIONS(2605), + [anon_sym_return] = ACTIONS(2605), + [anon_sym_break] = ACTIONS(2605), + [anon_sym_continue] = ACTIONS(2605), + [anon_sym_goto] = ACTIONS(2605), + [anon_sym___try] = ACTIONS(2605), + [anon_sym___leave] = ACTIONS(2605), + [anon_sym_not] = ACTIONS(2605), + [anon_sym_compl] = ACTIONS(2605), + [anon_sym_DASH_DASH] = ACTIONS(2607), + [anon_sym_PLUS_PLUS] = ACTIONS(2607), + [anon_sym_sizeof] = ACTIONS(2605), + [anon_sym___alignof__] = ACTIONS(2605), + [anon_sym___alignof] = ACTIONS(2605), + [anon_sym__alignof] = ACTIONS(2605), + [anon_sym_alignof] = ACTIONS(2605), + [anon_sym__Alignof] = ACTIONS(2605), + [anon_sym_offsetof] = ACTIONS(2605), + [anon_sym__Generic] = ACTIONS(2605), + [anon_sym_asm] = ACTIONS(2605), + [anon_sym___asm__] = ACTIONS(2605), + [anon_sym___asm] = ACTIONS(2605), + [sym_number_literal] = ACTIONS(2607), + [anon_sym_L_SQUOTE] = ACTIONS(2607), + [anon_sym_u_SQUOTE] = ACTIONS(2607), + [anon_sym_U_SQUOTE] = ACTIONS(2607), + [anon_sym_u8_SQUOTE] = ACTIONS(2607), + [anon_sym_SQUOTE] = ACTIONS(2607), + [anon_sym_L_DQUOTE] = ACTIONS(2607), + [anon_sym_u_DQUOTE] = ACTIONS(2607), + [anon_sym_U_DQUOTE] = ACTIONS(2607), + [anon_sym_u8_DQUOTE] = ACTIONS(2607), + [anon_sym_DQUOTE] = ACTIONS(2607), + [sym_true] = ACTIONS(2605), + [sym_false] = ACTIONS(2605), + [anon_sym_NULL] = ACTIONS(2605), + [anon_sym_nullptr] = ACTIONS(2605), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2605), + [anon_sym_decltype] = ACTIONS(2605), + [anon_sym_explicit] = ACTIONS(2605), + [anon_sym_typename] = ACTIONS(2605), + [anon_sym_template] = ACTIONS(2605), + [anon_sym_operator] = ACTIONS(2605), + [anon_sym_try] = ACTIONS(2605), + [anon_sym_delete] = ACTIONS(2605), + [anon_sym_throw] = ACTIONS(2605), + [anon_sym_namespace] = ACTIONS(2605), + [anon_sym_static_assert] = ACTIONS(2605), + [anon_sym_concept] = ACTIONS(2605), + [anon_sym_co_return] = ACTIONS(2605), + [anon_sym_co_yield] = ACTIONS(2605), + [anon_sym_R_DQUOTE] = ACTIONS(2607), + [anon_sym_LR_DQUOTE] = ACTIONS(2607), + [anon_sym_uR_DQUOTE] = ACTIONS(2607), + [anon_sym_UR_DQUOTE] = ACTIONS(2607), + [anon_sym_u8R_DQUOTE] = ACTIONS(2607), + [anon_sym_co_await] = ACTIONS(2605), + [anon_sym_new] = ACTIONS(2605), + [anon_sym_requires] = ACTIONS(2605), + [sym_this] = ACTIONS(2605), + }, + [478] = { + [sym_identifier] = ACTIONS(1940), + [aux_sym_preproc_include_token1] = ACTIONS(1940), + [aux_sym_preproc_def_token1] = ACTIONS(1940), + [aux_sym_preproc_if_token1] = ACTIONS(1940), + [aux_sym_preproc_if_token2] = ACTIONS(1940), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1940), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1940), + [sym_preproc_directive] = ACTIONS(1940), + [anon_sym_LPAREN2] = ACTIONS(1938), + [anon_sym_BANG] = ACTIONS(1938), + [anon_sym_TILDE] = ACTIONS(1938), + [anon_sym_DASH] = ACTIONS(1940), + [anon_sym_PLUS] = ACTIONS(1940), + [anon_sym_STAR] = ACTIONS(1938), + [anon_sym_AMP_AMP] = ACTIONS(1938), + [anon_sym_AMP] = ACTIONS(1940), + [anon_sym_SEMI] = ACTIONS(1938), + [anon_sym___extension__] = ACTIONS(1940), + [anon_sym_typedef] = ACTIONS(1940), + [anon_sym_virtual] = ACTIONS(1940), + [anon_sym_extern] = ACTIONS(1940), + [anon_sym___attribute__] = ACTIONS(1940), + [anon_sym___attribute] = ACTIONS(1940), + [anon_sym_using] = ACTIONS(1940), + [anon_sym_COLON_COLON] = ACTIONS(1938), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1938), + [anon_sym___declspec] = ACTIONS(1940), + [anon_sym___based] = ACTIONS(1940), + [anon_sym___cdecl] = ACTIONS(1940), + [anon_sym___clrcall] = ACTIONS(1940), + [anon_sym___stdcall] = ACTIONS(1940), + [anon_sym___fastcall] = ACTIONS(1940), + [anon_sym___thiscall] = ACTIONS(1940), + [anon_sym___vectorcall] = ACTIONS(1940), + [anon_sym_LBRACE] = ACTIONS(1938), + [anon_sym_signed] = ACTIONS(1940), + [anon_sym_unsigned] = ACTIONS(1940), + [anon_sym_long] = ACTIONS(1940), + [anon_sym_short] = ACTIONS(1940), + [anon_sym_LBRACK] = ACTIONS(1940), + [anon_sym_static] = ACTIONS(1940), + [anon_sym_register] = ACTIONS(1940), + [anon_sym_inline] = ACTIONS(1940), + [anon_sym___inline] = ACTIONS(1940), + [anon_sym___inline__] = ACTIONS(1940), + [anon_sym___forceinline] = ACTIONS(1940), + [anon_sym_thread_local] = ACTIONS(1940), + [anon_sym___thread] = ACTIONS(1940), + [anon_sym_const] = ACTIONS(1940), + [anon_sym_constexpr] = ACTIONS(1940), + [anon_sym_volatile] = ACTIONS(1940), + [anon_sym_restrict] = ACTIONS(1940), + [anon_sym___restrict__] = ACTIONS(1940), + [anon_sym__Atomic] = ACTIONS(1940), + [anon_sym__Noreturn] = ACTIONS(1940), + [anon_sym_noreturn] = ACTIONS(1940), + [anon_sym__Nonnull] = ACTIONS(1940), + [anon_sym_mutable] = ACTIONS(1940), + [anon_sym_constinit] = ACTIONS(1940), + [anon_sym_consteval] = ACTIONS(1940), + [anon_sym_alignas] = ACTIONS(1940), + [anon_sym__Alignas] = ACTIONS(1940), + [sym_primitive_type] = ACTIONS(1940), + [anon_sym_enum] = ACTIONS(1940), + [anon_sym_class] = ACTIONS(1940), + [anon_sym_struct] = ACTIONS(1940), + [anon_sym_union] = ACTIONS(1940), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_else] = ACTIONS(1940), + [anon_sym_switch] = ACTIONS(1940), + [anon_sym_case] = ACTIONS(1940), + [anon_sym_default] = ACTIONS(1940), + [anon_sym_while] = ACTIONS(1940), + [anon_sym_do] = ACTIONS(1940), + [anon_sym_for] = ACTIONS(1940), + [anon_sym_return] = ACTIONS(1940), + [anon_sym_break] = ACTIONS(1940), + [anon_sym_continue] = ACTIONS(1940), + [anon_sym_goto] = ACTIONS(1940), + [anon_sym___try] = ACTIONS(1940), + [anon_sym___leave] = ACTIONS(1940), + [anon_sym_not] = ACTIONS(1940), + [anon_sym_compl] = ACTIONS(1940), + [anon_sym_DASH_DASH] = ACTIONS(1938), + [anon_sym_PLUS_PLUS] = ACTIONS(1938), + [anon_sym_sizeof] = ACTIONS(1940), + [anon_sym___alignof__] = ACTIONS(1940), + [anon_sym___alignof] = ACTIONS(1940), + [anon_sym__alignof] = ACTIONS(1940), + [anon_sym_alignof] = ACTIONS(1940), + [anon_sym__Alignof] = ACTIONS(1940), + [anon_sym_offsetof] = ACTIONS(1940), + [anon_sym__Generic] = ACTIONS(1940), + [anon_sym_asm] = ACTIONS(1940), + [anon_sym___asm__] = ACTIONS(1940), + [anon_sym___asm] = ACTIONS(1940), + [sym_number_literal] = ACTIONS(1938), + [anon_sym_L_SQUOTE] = ACTIONS(1938), + [anon_sym_u_SQUOTE] = ACTIONS(1938), + [anon_sym_U_SQUOTE] = ACTIONS(1938), + [anon_sym_u8_SQUOTE] = ACTIONS(1938), + [anon_sym_SQUOTE] = ACTIONS(1938), + [anon_sym_L_DQUOTE] = ACTIONS(1938), + [anon_sym_u_DQUOTE] = ACTIONS(1938), + [anon_sym_U_DQUOTE] = ACTIONS(1938), + [anon_sym_u8_DQUOTE] = ACTIONS(1938), + [anon_sym_DQUOTE] = ACTIONS(1938), + [sym_true] = ACTIONS(1940), + [sym_false] = ACTIONS(1940), + [anon_sym_NULL] = ACTIONS(1940), + [anon_sym_nullptr] = ACTIONS(1940), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1940), + [anon_sym_decltype] = ACTIONS(1940), + [anon_sym_explicit] = ACTIONS(1940), + [anon_sym_typename] = ACTIONS(1940), + [anon_sym_template] = ACTIONS(1940), + [anon_sym_operator] = ACTIONS(1940), + [anon_sym_try] = ACTIONS(1940), + [anon_sym_delete] = ACTIONS(1940), + [anon_sym_throw] = ACTIONS(1940), + [anon_sym_namespace] = ACTIONS(1940), + [anon_sym_static_assert] = ACTIONS(1940), + [anon_sym_concept] = ACTIONS(1940), + [anon_sym_co_return] = ACTIONS(1940), + [anon_sym_co_yield] = ACTIONS(1940), + [anon_sym_catch] = ACTIONS(1940), + [anon_sym_R_DQUOTE] = ACTIONS(1938), + [anon_sym_LR_DQUOTE] = ACTIONS(1938), + [anon_sym_uR_DQUOTE] = ACTIONS(1938), + [anon_sym_UR_DQUOTE] = ACTIONS(1938), + [anon_sym_u8R_DQUOTE] = ACTIONS(1938), + [anon_sym_co_await] = ACTIONS(1940), + [anon_sym_new] = ACTIONS(1940), + [anon_sym_requires] = ACTIONS(1940), + [sym_this] = ACTIONS(1940), + }, + [479] = { + [sym_expression] = STATE(4345), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(2547), + [anon_sym_LPAREN2] = ACTIONS(1252), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_virtual] = ACTIONS(2569), + [anon_sym_extern] = ACTIONS(2569), + [anon_sym___attribute__] = ACTIONS(2569), + [anon_sym___attribute] = ACTIONS(2569), + [anon_sym_COLON_COLON] = ACTIONS(2571), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2559), + [anon_sym___declspec] = ACTIONS(2569), + [anon_sym_signed] = ACTIONS(2569), + [anon_sym_unsigned] = ACTIONS(2569), + [anon_sym_long] = ACTIONS(2569), + [anon_sym_short] = ACTIONS(2569), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_static] = ACTIONS(2569), + [anon_sym_register] = ACTIONS(2569), + [anon_sym_inline] = ACTIONS(2569), + [anon_sym___inline] = ACTIONS(2569), + [anon_sym___inline__] = ACTIONS(2569), + [anon_sym___forceinline] = ACTIONS(2569), + [anon_sym_thread_local] = ACTIONS(2569), + [anon_sym___thread] = ACTIONS(2569), + [anon_sym_const] = ACTIONS(2569), + [anon_sym_constexpr] = ACTIONS(2569), + [anon_sym_volatile] = ACTIONS(2569), + [anon_sym_restrict] = ACTIONS(2569), + [anon_sym___restrict__] = ACTIONS(2569), + [anon_sym__Atomic] = ACTIONS(2569), + [anon_sym__Noreturn] = ACTIONS(2569), + [anon_sym_noreturn] = ACTIONS(2569), + [anon_sym__Nonnull] = ACTIONS(2569), + [anon_sym_mutable] = ACTIONS(2569), + [anon_sym_constinit] = ACTIONS(2569), + [anon_sym_consteval] = ACTIONS(2569), + [anon_sym_alignas] = ACTIONS(2569), + [anon_sym__Alignas] = ACTIONS(2569), + [sym_primitive_type] = ACTIONS(2577), + [anon_sym_enum] = ACTIONS(2569), + [anon_sym_class] = ACTIONS(2569), + [anon_sym_struct] = ACTIONS(2569), + [anon_sym_union] = ACTIONS(2569), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [anon_sym___alignof__] = ACTIONS(107), + [anon_sym___alignof] = ACTIONS(107), + [anon_sym__alignof] = ACTIONS(107), + [anon_sym_alignof] = ACTIONS(107), + [anon_sym__Alignof] = ACTIONS(107), + [anon_sym_offsetof] = ACTIONS(109), + [anon_sym__Generic] = ACTIONS(111), + [anon_sym_asm] = ACTIONS(113), + [anon_sym___asm__] = ACTIONS(113), + [anon_sym___asm] = ACTIONS(113), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(117), + [anon_sym_u_SQUOTE] = ACTIONS(117), + [anon_sym_U_SQUOTE] = ACTIONS(117), + [anon_sym_u8_SQUOTE] = ACTIONS(117), + [anon_sym_SQUOTE] = ACTIONS(117), + [anon_sym_L_DQUOTE] = ACTIONS(119), + [anon_sym_u_DQUOTE] = ACTIONS(119), + [anon_sym_U_DQUOTE] = ACTIONS(119), + [anon_sym_u8_DQUOTE] = ACTIONS(119), + [anon_sym_DQUOTE] = ACTIONS(119), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(123), + [anon_sym_nullptr] = ACTIONS(123), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2569), + [anon_sym_decltype] = ACTIONS(2580), + [anon_sym_typename] = ACTIONS(2569), + [anon_sym_template] = ACTIONS(2583), + [anon_sym_delete] = ACTIONS(145), + [anon_sym_R_DQUOTE] = ACTIONS(159), + [anon_sym_LR_DQUOTE] = ACTIONS(159), + [anon_sym_uR_DQUOTE] = ACTIONS(159), + [anon_sym_UR_DQUOTE] = ACTIONS(159), + [anon_sym_u8R_DQUOTE] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), + }, + [480] = { + [sym_identifier] = ACTIONS(1936), + [aux_sym_preproc_include_token1] = ACTIONS(1936), + [aux_sym_preproc_def_token1] = ACTIONS(1936), + [aux_sym_preproc_if_token1] = ACTIONS(1936), + [aux_sym_preproc_if_token2] = ACTIONS(1936), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1936), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1936), + [sym_preproc_directive] = ACTIONS(1936), + [anon_sym_LPAREN2] = ACTIONS(1934), + [anon_sym_BANG] = ACTIONS(1934), + [anon_sym_TILDE] = ACTIONS(1934), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_STAR] = ACTIONS(1934), + [anon_sym_AMP_AMP] = ACTIONS(1934), + [anon_sym_AMP] = ACTIONS(1936), + [anon_sym_SEMI] = ACTIONS(1934), + [anon_sym___extension__] = ACTIONS(1936), + [anon_sym_typedef] = ACTIONS(1936), + [anon_sym_virtual] = ACTIONS(1936), + [anon_sym_extern] = ACTIONS(1936), + [anon_sym___attribute__] = ACTIONS(1936), + [anon_sym___attribute] = ACTIONS(1936), + [anon_sym_using] = ACTIONS(1936), + [anon_sym_COLON_COLON] = ACTIONS(1934), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1934), + [anon_sym___declspec] = ACTIONS(1936), + [anon_sym___based] = ACTIONS(1936), + [anon_sym___cdecl] = ACTIONS(1936), + [anon_sym___clrcall] = ACTIONS(1936), + [anon_sym___stdcall] = ACTIONS(1936), + [anon_sym___fastcall] = ACTIONS(1936), + [anon_sym___thiscall] = ACTIONS(1936), + [anon_sym___vectorcall] = ACTIONS(1936), + [anon_sym_LBRACE] = ACTIONS(1934), + [anon_sym_signed] = ACTIONS(1936), + [anon_sym_unsigned] = ACTIONS(1936), + [anon_sym_long] = ACTIONS(1936), + [anon_sym_short] = ACTIONS(1936), + [anon_sym_LBRACK] = ACTIONS(1936), + [anon_sym_static] = ACTIONS(1936), + [anon_sym_register] = ACTIONS(1936), + [anon_sym_inline] = ACTIONS(1936), + [anon_sym___inline] = ACTIONS(1936), + [anon_sym___inline__] = ACTIONS(1936), + [anon_sym___forceinline] = ACTIONS(1936), + [anon_sym_thread_local] = ACTIONS(1936), + [anon_sym___thread] = ACTIONS(1936), + [anon_sym_const] = ACTIONS(1936), + [anon_sym_constexpr] = ACTIONS(1936), + [anon_sym_volatile] = ACTIONS(1936), + [anon_sym_restrict] = ACTIONS(1936), + [anon_sym___restrict__] = ACTIONS(1936), + [anon_sym__Atomic] = ACTIONS(1936), + [anon_sym__Noreturn] = ACTIONS(1936), + [anon_sym_noreturn] = ACTIONS(1936), + [anon_sym__Nonnull] = ACTIONS(1936), + [anon_sym_mutable] = ACTIONS(1936), + [anon_sym_constinit] = ACTIONS(1936), + [anon_sym_consteval] = ACTIONS(1936), + [anon_sym_alignas] = ACTIONS(1936), + [anon_sym__Alignas] = ACTIONS(1936), + [sym_primitive_type] = ACTIONS(1936), + [anon_sym_enum] = ACTIONS(1936), + [anon_sym_class] = ACTIONS(1936), + [anon_sym_struct] = ACTIONS(1936), + [anon_sym_union] = ACTIONS(1936), + [anon_sym_if] = ACTIONS(1936), + [anon_sym_else] = ACTIONS(1936), + [anon_sym_switch] = ACTIONS(1936), + [anon_sym_case] = ACTIONS(1936), + [anon_sym_default] = ACTIONS(1936), + [anon_sym_while] = ACTIONS(1936), + [anon_sym_do] = ACTIONS(1936), + [anon_sym_for] = ACTIONS(1936), + [anon_sym_return] = ACTIONS(1936), + [anon_sym_break] = ACTIONS(1936), + [anon_sym_continue] = ACTIONS(1936), + [anon_sym_goto] = ACTIONS(1936), + [anon_sym___try] = ACTIONS(1936), + [anon_sym___leave] = ACTIONS(1936), + [anon_sym_not] = ACTIONS(1936), + [anon_sym_compl] = ACTIONS(1936), + [anon_sym_DASH_DASH] = ACTIONS(1934), + [anon_sym_PLUS_PLUS] = ACTIONS(1934), + [anon_sym_sizeof] = ACTIONS(1936), + [anon_sym___alignof__] = ACTIONS(1936), + [anon_sym___alignof] = ACTIONS(1936), + [anon_sym__alignof] = ACTIONS(1936), + [anon_sym_alignof] = ACTIONS(1936), + [anon_sym__Alignof] = ACTIONS(1936), + [anon_sym_offsetof] = ACTIONS(1936), + [anon_sym__Generic] = ACTIONS(1936), + [anon_sym_asm] = ACTIONS(1936), + [anon_sym___asm__] = ACTIONS(1936), + [anon_sym___asm] = ACTIONS(1936), + [sym_number_literal] = ACTIONS(1934), + [anon_sym_L_SQUOTE] = ACTIONS(1934), + [anon_sym_u_SQUOTE] = ACTIONS(1934), + [anon_sym_U_SQUOTE] = ACTIONS(1934), + [anon_sym_u8_SQUOTE] = ACTIONS(1934), + [anon_sym_SQUOTE] = ACTIONS(1934), + [anon_sym_L_DQUOTE] = ACTIONS(1934), + [anon_sym_u_DQUOTE] = ACTIONS(1934), + [anon_sym_U_DQUOTE] = ACTIONS(1934), + [anon_sym_u8_DQUOTE] = ACTIONS(1934), + [anon_sym_DQUOTE] = ACTIONS(1934), + [sym_true] = ACTIONS(1936), + [sym_false] = ACTIONS(1936), + [anon_sym_NULL] = ACTIONS(1936), + [anon_sym_nullptr] = ACTIONS(1936), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1936), + [anon_sym_decltype] = ACTIONS(1936), + [anon_sym_explicit] = ACTIONS(1936), + [anon_sym_typename] = ACTIONS(1936), + [anon_sym_template] = ACTIONS(1936), + [anon_sym_operator] = ACTIONS(1936), + [anon_sym_try] = ACTIONS(1936), + [anon_sym_delete] = ACTIONS(1936), + [anon_sym_throw] = ACTIONS(1936), + [anon_sym_namespace] = ACTIONS(1936), + [anon_sym_static_assert] = ACTIONS(1936), + [anon_sym_concept] = ACTIONS(1936), + [anon_sym_co_return] = ACTIONS(1936), + [anon_sym_co_yield] = ACTIONS(1936), + [anon_sym_catch] = ACTIONS(1936), + [anon_sym_R_DQUOTE] = ACTIONS(1934), + [anon_sym_LR_DQUOTE] = ACTIONS(1934), + [anon_sym_uR_DQUOTE] = ACTIONS(1934), + [anon_sym_UR_DQUOTE] = ACTIONS(1934), + [anon_sym_u8R_DQUOTE] = ACTIONS(1934), + [anon_sym_co_await] = ACTIONS(1936), + [anon_sym_new] = ACTIONS(1936), + [anon_sym_requires] = ACTIONS(1936), + [sym_this] = ACTIONS(1936), + }, + [481] = { + [sym_else_clause] = STATE(589), + [sym_identifier] = ACTIONS(2615), + [aux_sym_preproc_include_token1] = ACTIONS(2615), + [aux_sym_preproc_def_token1] = ACTIONS(2615), + [aux_sym_preproc_if_token1] = ACTIONS(2615), + [aux_sym_preproc_if_token2] = ACTIONS(2615), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2615), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2615), + [sym_preproc_directive] = ACTIONS(2615), + [anon_sym_LPAREN2] = ACTIONS(2617), + [anon_sym_BANG] = ACTIONS(2617), + [anon_sym_TILDE] = ACTIONS(2617), + [anon_sym_DASH] = ACTIONS(2615), + [anon_sym_PLUS] = ACTIONS(2615), + [anon_sym_STAR] = ACTIONS(2617), + [anon_sym_AMP_AMP] = ACTIONS(2617), + [anon_sym_AMP] = ACTIONS(2615), + [anon_sym_SEMI] = ACTIONS(2617), + [anon_sym___extension__] = ACTIONS(2615), + [anon_sym_typedef] = ACTIONS(2615), + [anon_sym_virtual] = ACTIONS(2615), + [anon_sym_extern] = ACTIONS(2615), + [anon_sym___attribute__] = ACTIONS(2615), + [anon_sym___attribute] = ACTIONS(2615), + [anon_sym_using] = ACTIONS(2615), + [anon_sym_COLON_COLON] = ACTIONS(2617), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2617), + [anon_sym___declspec] = ACTIONS(2615), + [anon_sym___based] = ACTIONS(2615), + [anon_sym___cdecl] = ACTIONS(2615), + [anon_sym___clrcall] = ACTIONS(2615), + [anon_sym___stdcall] = ACTIONS(2615), + [anon_sym___fastcall] = ACTIONS(2615), + [anon_sym___thiscall] = ACTIONS(2615), + [anon_sym___vectorcall] = ACTIONS(2615), + [anon_sym_LBRACE] = ACTIONS(2617), + [anon_sym_signed] = ACTIONS(2615), + [anon_sym_unsigned] = ACTIONS(2615), + [anon_sym_long] = ACTIONS(2615), + [anon_sym_short] = ACTIONS(2615), + [anon_sym_LBRACK] = ACTIONS(2615), + [anon_sym_static] = ACTIONS(2615), + [anon_sym_register] = ACTIONS(2615), + [anon_sym_inline] = ACTIONS(2615), + [anon_sym___inline] = ACTIONS(2615), + [anon_sym___inline__] = ACTIONS(2615), + [anon_sym___forceinline] = ACTIONS(2615), + [anon_sym_thread_local] = ACTIONS(2615), + [anon_sym___thread] = ACTIONS(2615), + [anon_sym_const] = ACTIONS(2615), + [anon_sym_constexpr] = ACTIONS(2615), + [anon_sym_volatile] = ACTIONS(2615), + [anon_sym_restrict] = ACTIONS(2615), + [anon_sym___restrict__] = ACTIONS(2615), + [anon_sym__Atomic] = ACTIONS(2615), + [anon_sym__Noreturn] = ACTIONS(2615), + [anon_sym_noreturn] = ACTIONS(2615), + [anon_sym__Nonnull] = ACTIONS(2615), + [anon_sym_mutable] = ACTIONS(2615), + [anon_sym_constinit] = ACTIONS(2615), + [anon_sym_consteval] = ACTIONS(2615), + [anon_sym_alignas] = ACTIONS(2615), + [anon_sym__Alignas] = ACTIONS(2615), + [sym_primitive_type] = ACTIONS(2615), + [anon_sym_enum] = ACTIONS(2615), + [anon_sym_class] = ACTIONS(2615), + [anon_sym_struct] = ACTIONS(2615), + [anon_sym_union] = ACTIONS(2615), + [anon_sym_if] = ACTIONS(2615), + [anon_sym_else] = ACTIONS(3365), + [anon_sym_switch] = ACTIONS(2615), + [anon_sym_case] = ACTIONS(2615), + [anon_sym_default] = ACTIONS(2615), + [anon_sym_while] = ACTIONS(2615), + [anon_sym_do] = ACTIONS(2615), + [anon_sym_for] = ACTIONS(2615), + [anon_sym_return] = ACTIONS(2615), + [anon_sym_break] = ACTIONS(2615), + [anon_sym_continue] = ACTIONS(2615), + [anon_sym_goto] = ACTIONS(2615), + [anon_sym___try] = ACTIONS(2615), + [anon_sym___leave] = ACTIONS(2615), + [anon_sym_not] = ACTIONS(2615), + [anon_sym_compl] = ACTIONS(2615), + [anon_sym_DASH_DASH] = ACTIONS(2617), + [anon_sym_PLUS_PLUS] = ACTIONS(2617), + [anon_sym_sizeof] = ACTIONS(2615), + [anon_sym___alignof__] = ACTIONS(2615), + [anon_sym___alignof] = ACTIONS(2615), + [anon_sym__alignof] = ACTIONS(2615), + [anon_sym_alignof] = ACTIONS(2615), + [anon_sym__Alignof] = ACTIONS(2615), + [anon_sym_offsetof] = ACTIONS(2615), + [anon_sym__Generic] = ACTIONS(2615), + [anon_sym_asm] = ACTIONS(2615), + [anon_sym___asm__] = ACTIONS(2615), + [anon_sym___asm] = ACTIONS(2615), + [sym_number_literal] = ACTIONS(2617), + [anon_sym_L_SQUOTE] = ACTIONS(2617), + [anon_sym_u_SQUOTE] = ACTIONS(2617), + [anon_sym_U_SQUOTE] = ACTIONS(2617), + [anon_sym_u8_SQUOTE] = ACTIONS(2617), + [anon_sym_SQUOTE] = ACTIONS(2617), + [anon_sym_L_DQUOTE] = ACTIONS(2617), + [anon_sym_u_DQUOTE] = ACTIONS(2617), + [anon_sym_U_DQUOTE] = ACTIONS(2617), + [anon_sym_u8_DQUOTE] = ACTIONS(2617), + [anon_sym_DQUOTE] = ACTIONS(2617), + [sym_true] = ACTIONS(2615), + [sym_false] = ACTIONS(2615), + [anon_sym_NULL] = ACTIONS(2615), + [anon_sym_nullptr] = ACTIONS(2615), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2615), + [anon_sym_decltype] = ACTIONS(2615), + [anon_sym_explicit] = ACTIONS(2615), + [anon_sym_typename] = ACTIONS(2615), + [anon_sym_template] = ACTIONS(2615), + [anon_sym_operator] = ACTIONS(2615), + [anon_sym_try] = ACTIONS(2615), + [anon_sym_delete] = ACTIONS(2615), + [anon_sym_throw] = ACTIONS(2615), + [anon_sym_namespace] = ACTIONS(2615), + [anon_sym_static_assert] = ACTIONS(2615), + [anon_sym_concept] = ACTIONS(2615), + [anon_sym_co_return] = ACTIONS(2615), + [anon_sym_co_yield] = ACTIONS(2615), + [anon_sym_R_DQUOTE] = ACTIONS(2617), + [anon_sym_LR_DQUOTE] = ACTIONS(2617), + [anon_sym_uR_DQUOTE] = ACTIONS(2617), + [anon_sym_UR_DQUOTE] = ACTIONS(2617), + [anon_sym_u8R_DQUOTE] = ACTIONS(2617), + [anon_sym_co_await] = ACTIONS(2615), + [anon_sym_new] = ACTIONS(2615), + [anon_sym_requires] = ACTIONS(2615), + [sym_this] = ACTIONS(2615), + }, + [482] = { + [ts_builtin_sym_end] = ACTIONS(3122), + [sym_identifier] = ACTIONS(3120), + [aux_sym_preproc_include_token1] = ACTIONS(3120), + [aux_sym_preproc_def_token1] = ACTIONS(3120), + [aux_sym_preproc_if_token1] = ACTIONS(3120), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3120), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3120), + [sym_preproc_directive] = ACTIONS(3120), + [anon_sym_LPAREN2] = ACTIONS(3122), + [anon_sym_BANG] = ACTIONS(3122), + [anon_sym_TILDE] = ACTIONS(3122), + [anon_sym_DASH] = ACTIONS(3120), + [anon_sym_PLUS] = ACTIONS(3120), + [anon_sym_STAR] = ACTIONS(3122), + [anon_sym_AMP_AMP] = ACTIONS(3122), + [anon_sym_AMP] = ACTIONS(3120), + [anon_sym_SEMI] = ACTIONS(3122), + [anon_sym___extension__] = ACTIONS(3120), + [anon_sym_typedef] = ACTIONS(3120), + [anon_sym_virtual] = ACTIONS(3120), + [anon_sym_extern] = ACTIONS(3120), + [anon_sym___attribute__] = ACTIONS(3120), + [anon_sym___attribute] = ACTIONS(3120), + [anon_sym_using] = ACTIONS(3120), + [anon_sym_COLON_COLON] = ACTIONS(3122), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3122), + [anon_sym___declspec] = ACTIONS(3120), + [anon_sym___based] = ACTIONS(3120), + [anon_sym___cdecl] = ACTIONS(3120), + [anon_sym___clrcall] = ACTIONS(3120), + [anon_sym___stdcall] = ACTIONS(3120), + [anon_sym___fastcall] = ACTIONS(3120), + [anon_sym___thiscall] = ACTIONS(3120), + [anon_sym___vectorcall] = ACTIONS(3120), + [anon_sym_LBRACE] = ACTIONS(3122), + [anon_sym_signed] = ACTIONS(3120), + [anon_sym_unsigned] = ACTIONS(3120), + [anon_sym_long] = ACTIONS(3120), + [anon_sym_short] = ACTIONS(3120), + [anon_sym_LBRACK] = ACTIONS(3120), + [anon_sym_static] = ACTIONS(3120), + [anon_sym_register] = ACTIONS(3120), + [anon_sym_inline] = ACTIONS(3120), + [anon_sym___inline] = ACTIONS(3120), + [anon_sym___inline__] = ACTIONS(3120), + [anon_sym___forceinline] = ACTIONS(3120), + [anon_sym_thread_local] = ACTIONS(3120), + [anon_sym___thread] = ACTIONS(3120), + [anon_sym_const] = ACTIONS(3120), + [anon_sym_constexpr] = ACTIONS(3120), + [anon_sym_volatile] = ACTIONS(3120), + [anon_sym_restrict] = ACTIONS(3120), + [anon_sym___restrict__] = ACTIONS(3120), + [anon_sym__Atomic] = ACTIONS(3120), + [anon_sym__Noreturn] = ACTIONS(3120), + [anon_sym_noreturn] = ACTIONS(3120), + [anon_sym__Nonnull] = ACTIONS(3120), + [anon_sym_mutable] = ACTIONS(3120), + [anon_sym_constinit] = ACTIONS(3120), + [anon_sym_consteval] = ACTIONS(3120), + [anon_sym_alignas] = ACTIONS(3120), + [anon_sym__Alignas] = ACTIONS(3120), + [sym_primitive_type] = ACTIONS(3120), + [anon_sym_enum] = ACTIONS(3120), + [anon_sym_class] = ACTIONS(3120), + [anon_sym_struct] = ACTIONS(3120), + [anon_sym_union] = ACTIONS(3120), + [anon_sym_if] = ACTIONS(3120), + [anon_sym_switch] = ACTIONS(3120), + [anon_sym_case] = ACTIONS(3120), + [anon_sym_default] = ACTIONS(3120), + [anon_sym_while] = ACTIONS(3120), + [anon_sym_do] = ACTIONS(3120), + [anon_sym_for] = ACTIONS(3120), + [anon_sym_return] = ACTIONS(3120), + [anon_sym_break] = ACTIONS(3120), + [anon_sym_continue] = ACTIONS(3120), + [anon_sym_goto] = ACTIONS(3120), + [anon_sym_not] = ACTIONS(3120), + [anon_sym_compl] = ACTIONS(3120), + [anon_sym_DASH_DASH] = ACTIONS(3122), + [anon_sym_PLUS_PLUS] = ACTIONS(3122), + [anon_sym_sizeof] = ACTIONS(3120), + [anon_sym___alignof__] = ACTIONS(3120), + [anon_sym___alignof] = ACTIONS(3120), + [anon_sym__alignof] = ACTIONS(3120), + [anon_sym_alignof] = ACTIONS(3120), + [anon_sym__Alignof] = ACTIONS(3120), + [anon_sym_offsetof] = ACTIONS(3120), + [anon_sym__Generic] = ACTIONS(3120), + [anon_sym_asm] = ACTIONS(3120), + [anon_sym___asm__] = ACTIONS(3120), + [anon_sym___asm] = ACTIONS(3120), + [sym_number_literal] = ACTIONS(3122), + [anon_sym_L_SQUOTE] = ACTIONS(3122), + [anon_sym_u_SQUOTE] = ACTIONS(3122), + [anon_sym_U_SQUOTE] = ACTIONS(3122), + [anon_sym_u8_SQUOTE] = ACTIONS(3122), + [anon_sym_SQUOTE] = ACTIONS(3122), + [anon_sym_L_DQUOTE] = ACTIONS(3122), + [anon_sym_u_DQUOTE] = ACTIONS(3122), + [anon_sym_U_DQUOTE] = ACTIONS(3122), + [anon_sym_u8_DQUOTE] = ACTIONS(3122), + [anon_sym_DQUOTE] = ACTIONS(3122), + [sym_true] = ACTIONS(3120), + [sym_false] = ACTIONS(3120), + [anon_sym_NULL] = ACTIONS(3120), + [anon_sym_nullptr] = ACTIONS(3120), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3120), + [anon_sym_decltype] = ACTIONS(3120), + [anon_sym_explicit] = ACTIONS(3120), + [anon_sym_typename] = ACTIONS(3120), + [anon_sym_export] = ACTIONS(3120), + [anon_sym_module] = ACTIONS(3120), + [anon_sym_import] = ACTIONS(3120), + [anon_sym_template] = ACTIONS(3120), + [anon_sym_operator] = ACTIONS(3120), + [anon_sym_try] = ACTIONS(3120), + [anon_sym_delete] = ACTIONS(3120), + [anon_sym_throw] = ACTIONS(3120), + [anon_sym_namespace] = ACTIONS(3120), + [anon_sym_static_assert] = ACTIONS(3120), + [anon_sym_concept] = ACTIONS(3120), + [anon_sym_co_return] = ACTIONS(3120), + [anon_sym_co_yield] = ACTIONS(3120), + [anon_sym_R_DQUOTE] = ACTIONS(3122), + [anon_sym_LR_DQUOTE] = ACTIONS(3122), + [anon_sym_uR_DQUOTE] = ACTIONS(3122), + [anon_sym_UR_DQUOTE] = ACTIONS(3122), + [anon_sym_u8R_DQUOTE] = ACTIONS(3122), + [anon_sym_co_await] = ACTIONS(3120), + [anon_sym_new] = ACTIONS(3120), + [anon_sym_requires] = ACTIONS(3120), + [sym_this] = ACTIONS(3120), + }, + [483] = { [ts_builtin_sym_end] = ACTIONS(2929), [sym_identifier] = ACTIONS(2927), [aux_sym_preproc_include_token1] = ACTIONS(2927), @@ -111636,281 +113043,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2927), [sym_this] = ACTIONS(2927), }, - [476] = { - [ts_builtin_sym_end] = ACTIONS(2793), - [sym_identifier] = ACTIONS(2791), - [aux_sym_preproc_include_token1] = ACTIONS(2791), - [aux_sym_preproc_def_token1] = ACTIONS(2791), - [aux_sym_preproc_if_token1] = ACTIONS(2791), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2791), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2791), - [sym_preproc_directive] = ACTIONS(2791), - [anon_sym_LPAREN2] = ACTIONS(2793), - [anon_sym_BANG] = ACTIONS(2793), - [anon_sym_TILDE] = ACTIONS(2793), - [anon_sym_DASH] = ACTIONS(2791), - [anon_sym_PLUS] = ACTIONS(2791), - [anon_sym_STAR] = ACTIONS(2793), - [anon_sym_AMP_AMP] = ACTIONS(2793), - [anon_sym_AMP] = ACTIONS(2791), - [anon_sym_SEMI] = ACTIONS(2793), - [anon_sym___extension__] = ACTIONS(2791), - [anon_sym_typedef] = ACTIONS(2791), - [anon_sym_virtual] = ACTIONS(2791), - [anon_sym_extern] = ACTIONS(2791), - [anon_sym___attribute__] = ACTIONS(2791), - [anon_sym___attribute] = ACTIONS(2791), - [anon_sym_using] = ACTIONS(2791), - [anon_sym_COLON_COLON] = ACTIONS(2793), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2793), - [anon_sym___declspec] = ACTIONS(2791), - [anon_sym___based] = ACTIONS(2791), - [anon_sym___cdecl] = ACTIONS(2791), - [anon_sym___clrcall] = ACTIONS(2791), - [anon_sym___stdcall] = ACTIONS(2791), - [anon_sym___fastcall] = ACTIONS(2791), - [anon_sym___thiscall] = ACTIONS(2791), - [anon_sym___vectorcall] = ACTIONS(2791), - [anon_sym_LBRACE] = ACTIONS(2793), - [anon_sym_signed] = ACTIONS(2791), - [anon_sym_unsigned] = ACTIONS(2791), - [anon_sym_long] = ACTIONS(2791), - [anon_sym_short] = ACTIONS(2791), - [anon_sym_LBRACK] = ACTIONS(2791), - [anon_sym_static] = ACTIONS(2791), - [anon_sym_register] = ACTIONS(2791), - [anon_sym_inline] = ACTIONS(2791), - [anon_sym___inline] = ACTIONS(2791), - [anon_sym___inline__] = ACTIONS(2791), - [anon_sym___forceinline] = ACTIONS(2791), - [anon_sym_thread_local] = ACTIONS(2791), - [anon_sym___thread] = ACTIONS(2791), - [anon_sym_const] = ACTIONS(2791), - [anon_sym_constexpr] = ACTIONS(2791), - [anon_sym_volatile] = ACTIONS(2791), - [anon_sym_restrict] = ACTIONS(2791), - [anon_sym___restrict__] = ACTIONS(2791), - [anon_sym__Atomic] = ACTIONS(2791), - [anon_sym__Noreturn] = ACTIONS(2791), - [anon_sym_noreturn] = ACTIONS(2791), - [anon_sym__Nonnull] = ACTIONS(2791), - [anon_sym_mutable] = ACTIONS(2791), - [anon_sym_constinit] = ACTIONS(2791), - [anon_sym_consteval] = ACTIONS(2791), - [anon_sym_alignas] = ACTIONS(2791), - [anon_sym__Alignas] = ACTIONS(2791), - [sym_primitive_type] = ACTIONS(2791), - [anon_sym_enum] = ACTIONS(2791), - [anon_sym_class] = ACTIONS(2791), - [anon_sym_struct] = ACTIONS(2791), - [anon_sym_union] = ACTIONS(2791), - [anon_sym_if] = ACTIONS(2791), - [anon_sym_switch] = ACTIONS(2791), - [anon_sym_case] = ACTIONS(2791), - [anon_sym_default] = ACTIONS(2791), - [anon_sym_while] = ACTIONS(2791), - [anon_sym_do] = ACTIONS(2791), - [anon_sym_for] = ACTIONS(2791), - [anon_sym_return] = ACTIONS(2791), - [anon_sym_break] = ACTIONS(2791), - [anon_sym_continue] = ACTIONS(2791), - [anon_sym_goto] = ACTIONS(2791), - [anon_sym_not] = ACTIONS(2791), - [anon_sym_compl] = ACTIONS(2791), - [anon_sym_DASH_DASH] = ACTIONS(2793), - [anon_sym_PLUS_PLUS] = ACTIONS(2793), - [anon_sym_sizeof] = ACTIONS(2791), - [anon_sym___alignof__] = ACTIONS(2791), - [anon_sym___alignof] = ACTIONS(2791), - [anon_sym__alignof] = ACTIONS(2791), - [anon_sym_alignof] = ACTIONS(2791), - [anon_sym__Alignof] = ACTIONS(2791), - [anon_sym_offsetof] = ACTIONS(2791), - [anon_sym__Generic] = ACTIONS(2791), - [anon_sym_asm] = ACTIONS(2791), - [anon_sym___asm__] = ACTIONS(2791), - [anon_sym___asm] = ACTIONS(2791), - [sym_number_literal] = ACTIONS(2793), - [anon_sym_L_SQUOTE] = ACTIONS(2793), - [anon_sym_u_SQUOTE] = ACTIONS(2793), - [anon_sym_U_SQUOTE] = ACTIONS(2793), - [anon_sym_u8_SQUOTE] = ACTIONS(2793), - [anon_sym_SQUOTE] = ACTIONS(2793), - [anon_sym_L_DQUOTE] = ACTIONS(2793), - [anon_sym_u_DQUOTE] = ACTIONS(2793), - [anon_sym_U_DQUOTE] = ACTIONS(2793), - [anon_sym_u8_DQUOTE] = ACTIONS(2793), - [anon_sym_DQUOTE] = ACTIONS(2793), - [sym_true] = ACTIONS(2791), - [sym_false] = ACTIONS(2791), - [anon_sym_NULL] = ACTIONS(2791), - [anon_sym_nullptr] = ACTIONS(2791), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2791), - [anon_sym_decltype] = ACTIONS(2791), - [anon_sym_explicit] = ACTIONS(2791), - [anon_sym_typename] = ACTIONS(2791), - [anon_sym_export] = ACTIONS(2791), - [anon_sym_module] = ACTIONS(2791), - [anon_sym_import] = ACTIONS(2791), - [anon_sym_template] = ACTIONS(2791), - [anon_sym_operator] = ACTIONS(2791), - [anon_sym_try] = ACTIONS(2791), - [anon_sym_delete] = ACTIONS(2791), - [anon_sym_throw] = ACTIONS(2791), - [anon_sym_namespace] = ACTIONS(2791), - [anon_sym_static_assert] = ACTIONS(2791), - [anon_sym_concept] = ACTIONS(2791), - [anon_sym_co_return] = ACTIONS(2791), - [anon_sym_co_yield] = ACTIONS(2791), - [anon_sym_R_DQUOTE] = ACTIONS(2793), - [anon_sym_LR_DQUOTE] = ACTIONS(2793), - [anon_sym_uR_DQUOTE] = ACTIONS(2793), - [anon_sym_UR_DQUOTE] = ACTIONS(2793), - [anon_sym_u8R_DQUOTE] = ACTIONS(2793), - [anon_sym_co_await] = ACTIONS(2791), - [anon_sym_new] = ACTIONS(2791), - [anon_sym_requires] = ACTIONS(2791), - [sym_this] = ACTIONS(2791), - }, - [477] = { - [ts_builtin_sym_end] = ACTIONS(2877), - [sym_identifier] = ACTIONS(2875), - [aux_sym_preproc_include_token1] = ACTIONS(2875), - [aux_sym_preproc_def_token1] = ACTIONS(2875), - [aux_sym_preproc_if_token1] = ACTIONS(2875), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2875), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2875), - [sym_preproc_directive] = ACTIONS(2875), - [anon_sym_LPAREN2] = ACTIONS(2877), - [anon_sym_BANG] = ACTIONS(2877), - [anon_sym_TILDE] = ACTIONS(2877), - [anon_sym_DASH] = ACTIONS(2875), - [anon_sym_PLUS] = ACTIONS(2875), - [anon_sym_STAR] = ACTIONS(2877), - [anon_sym_AMP_AMP] = ACTIONS(2877), - [anon_sym_AMP] = ACTIONS(2875), - [anon_sym_SEMI] = ACTIONS(2877), - [anon_sym___extension__] = ACTIONS(2875), - [anon_sym_typedef] = ACTIONS(2875), - [anon_sym_virtual] = ACTIONS(2875), - [anon_sym_extern] = ACTIONS(2875), - [anon_sym___attribute__] = ACTIONS(2875), - [anon_sym___attribute] = ACTIONS(2875), - [anon_sym_using] = ACTIONS(2875), - [anon_sym_COLON_COLON] = ACTIONS(2877), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2877), - [anon_sym___declspec] = ACTIONS(2875), - [anon_sym___based] = ACTIONS(2875), - [anon_sym___cdecl] = ACTIONS(2875), - [anon_sym___clrcall] = ACTIONS(2875), - [anon_sym___stdcall] = ACTIONS(2875), - [anon_sym___fastcall] = ACTIONS(2875), - [anon_sym___thiscall] = ACTIONS(2875), - [anon_sym___vectorcall] = ACTIONS(2875), - [anon_sym_LBRACE] = ACTIONS(2877), - [anon_sym_signed] = ACTIONS(2875), - [anon_sym_unsigned] = ACTIONS(2875), - [anon_sym_long] = ACTIONS(2875), - [anon_sym_short] = ACTIONS(2875), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_static] = ACTIONS(2875), - [anon_sym_register] = ACTIONS(2875), - [anon_sym_inline] = ACTIONS(2875), - [anon_sym___inline] = ACTIONS(2875), - [anon_sym___inline__] = ACTIONS(2875), - [anon_sym___forceinline] = ACTIONS(2875), - [anon_sym_thread_local] = ACTIONS(2875), - [anon_sym___thread] = ACTIONS(2875), - [anon_sym_const] = ACTIONS(2875), - [anon_sym_constexpr] = ACTIONS(2875), - [anon_sym_volatile] = ACTIONS(2875), - [anon_sym_restrict] = ACTIONS(2875), - [anon_sym___restrict__] = ACTIONS(2875), - [anon_sym__Atomic] = ACTIONS(2875), - [anon_sym__Noreturn] = ACTIONS(2875), - [anon_sym_noreturn] = ACTIONS(2875), - [anon_sym__Nonnull] = ACTIONS(2875), - [anon_sym_mutable] = ACTIONS(2875), - [anon_sym_constinit] = ACTIONS(2875), - [anon_sym_consteval] = ACTIONS(2875), - [anon_sym_alignas] = ACTIONS(2875), - [anon_sym__Alignas] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2875), - [anon_sym_enum] = ACTIONS(2875), - [anon_sym_class] = ACTIONS(2875), - [anon_sym_struct] = ACTIONS(2875), - [anon_sym_union] = ACTIONS(2875), - [anon_sym_if] = ACTIONS(2875), - [anon_sym_switch] = ACTIONS(2875), - [anon_sym_case] = ACTIONS(2875), - [anon_sym_default] = ACTIONS(2875), - [anon_sym_while] = ACTIONS(2875), - [anon_sym_do] = ACTIONS(2875), - [anon_sym_for] = ACTIONS(2875), - [anon_sym_return] = ACTIONS(2875), - [anon_sym_break] = ACTIONS(2875), - [anon_sym_continue] = ACTIONS(2875), - [anon_sym_goto] = ACTIONS(2875), - [anon_sym_not] = ACTIONS(2875), - [anon_sym_compl] = ACTIONS(2875), - [anon_sym_DASH_DASH] = ACTIONS(2877), - [anon_sym_PLUS_PLUS] = ACTIONS(2877), - [anon_sym_sizeof] = ACTIONS(2875), - [anon_sym___alignof__] = ACTIONS(2875), - [anon_sym___alignof] = ACTIONS(2875), - [anon_sym__alignof] = ACTIONS(2875), - [anon_sym_alignof] = ACTIONS(2875), - [anon_sym__Alignof] = ACTIONS(2875), - [anon_sym_offsetof] = ACTIONS(2875), - [anon_sym__Generic] = ACTIONS(2875), - [anon_sym_asm] = ACTIONS(2875), - [anon_sym___asm__] = ACTIONS(2875), - [anon_sym___asm] = ACTIONS(2875), - [sym_number_literal] = ACTIONS(2877), - [anon_sym_L_SQUOTE] = ACTIONS(2877), - [anon_sym_u_SQUOTE] = ACTIONS(2877), - [anon_sym_U_SQUOTE] = ACTIONS(2877), - [anon_sym_u8_SQUOTE] = ACTIONS(2877), - [anon_sym_SQUOTE] = ACTIONS(2877), - [anon_sym_L_DQUOTE] = ACTIONS(2877), - [anon_sym_u_DQUOTE] = ACTIONS(2877), - [anon_sym_U_DQUOTE] = ACTIONS(2877), - [anon_sym_u8_DQUOTE] = ACTIONS(2877), - [anon_sym_DQUOTE] = ACTIONS(2877), - [sym_true] = ACTIONS(2875), - [sym_false] = ACTIONS(2875), - [anon_sym_NULL] = ACTIONS(2875), - [anon_sym_nullptr] = ACTIONS(2875), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2875), - [anon_sym_decltype] = ACTIONS(2875), - [anon_sym_explicit] = ACTIONS(2875), - [anon_sym_typename] = ACTIONS(2875), - [anon_sym_export] = ACTIONS(2875), - [anon_sym_module] = ACTIONS(2875), - [anon_sym_import] = ACTIONS(2875), - [anon_sym_template] = ACTIONS(2875), - [anon_sym_operator] = ACTIONS(2875), - [anon_sym_try] = ACTIONS(2875), - [anon_sym_delete] = ACTIONS(2875), - [anon_sym_throw] = ACTIONS(2875), - [anon_sym_namespace] = ACTIONS(2875), - [anon_sym_static_assert] = ACTIONS(2875), - [anon_sym_concept] = ACTIONS(2875), - [anon_sym_co_return] = ACTIONS(2875), - [anon_sym_co_yield] = ACTIONS(2875), - [anon_sym_R_DQUOTE] = ACTIONS(2877), - [anon_sym_LR_DQUOTE] = ACTIONS(2877), - [anon_sym_uR_DQUOTE] = ACTIONS(2877), - [anon_sym_UR_DQUOTE] = ACTIONS(2877), - [anon_sym_u8R_DQUOTE] = ACTIONS(2877), - [anon_sym_co_await] = ACTIONS(2875), - [anon_sym_new] = ACTIONS(2875), - [anon_sym_requires] = ACTIONS(2875), - [sym_this] = ACTIONS(2875), - }, - [478] = { + [484] = { [ts_builtin_sym_end] = ACTIONS(2933), [sym_identifier] = ACTIONS(2931), [aux_sym_preproc_include_token1] = ACTIONS(2931), @@ -112047,7 +113180,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2931), [sym_this] = ACTIONS(2931), }, - [479] = { + [485] = { [ts_builtin_sym_end] = ACTIONS(2937), [sym_identifier] = ACTIONS(2935), [aux_sym_preproc_include_token1] = ACTIONS(2935), @@ -112184,7 +113317,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2935), [sym_this] = ACTIONS(2935), }, - [480] = { + [486] = { [ts_builtin_sym_end] = ACTIONS(2941), [sym_identifier] = ACTIONS(2939), [aux_sym_preproc_include_token1] = ACTIONS(2939), @@ -112321,90 +113454,227 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2939), [sym_this] = ACTIONS(2939), }, - [481] = { - [ts_builtin_sym_end] = ACTIONS(2945), - [sym_identifier] = ACTIONS(2943), - [aux_sym_preproc_include_token1] = ACTIONS(2943), - [aux_sym_preproc_def_token1] = ACTIONS(2943), - [aux_sym_preproc_if_token1] = ACTIONS(2943), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2943), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2943), - [sym_preproc_directive] = ACTIONS(2943), - [anon_sym_LPAREN2] = ACTIONS(2945), - [anon_sym_BANG] = ACTIONS(2945), - [anon_sym_TILDE] = ACTIONS(2945), - [anon_sym_DASH] = ACTIONS(2943), - [anon_sym_PLUS] = ACTIONS(2943), - [anon_sym_STAR] = ACTIONS(2945), - [anon_sym_AMP_AMP] = ACTIONS(2945), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_SEMI] = ACTIONS(2945), - [anon_sym___extension__] = ACTIONS(2943), - [anon_sym_typedef] = ACTIONS(2943), - [anon_sym_virtual] = ACTIONS(2943), - [anon_sym_extern] = ACTIONS(2943), - [anon_sym___attribute__] = ACTIONS(2943), - [anon_sym___attribute] = ACTIONS(2943), - [anon_sym_using] = ACTIONS(2943), - [anon_sym_COLON_COLON] = ACTIONS(2945), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2945), - [anon_sym___declspec] = ACTIONS(2943), - [anon_sym___based] = ACTIONS(2943), - [anon_sym___cdecl] = ACTIONS(2943), - [anon_sym___clrcall] = ACTIONS(2943), - [anon_sym___stdcall] = ACTIONS(2943), - [anon_sym___fastcall] = ACTIONS(2943), - [anon_sym___thiscall] = ACTIONS(2943), - [anon_sym___vectorcall] = ACTIONS(2943), - [anon_sym_LBRACE] = ACTIONS(2945), - [anon_sym_signed] = ACTIONS(2943), - [anon_sym_unsigned] = ACTIONS(2943), - [anon_sym_long] = ACTIONS(2943), - [anon_sym_short] = ACTIONS(2943), - [anon_sym_LBRACK] = ACTIONS(2943), - [anon_sym_static] = ACTIONS(2943), - [anon_sym_register] = ACTIONS(2943), - [anon_sym_inline] = ACTIONS(2943), - [anon_sym___inline] = ACTIONS(2943), - [anon_sym___inline__] = ACTIONS(2943), - [anon_sym___forceinline] = ACTIONS(2943), - [anon_sym_thread_local] = ACTIONS(2943), - [anon_sym___thread] = ACTIONS(2943), - [anon_sym_const] = ACTIONS(2943), - [anon_sym_constexpr] = ACTIONS(2943), - [anon_sym_volatile] = ACTIONS(2943), - [anon_sym_restrict] = ACTIONS(2943), - [anon_sym___restrict__] = ACTIONS(2943), - [anon_sym__Atomic] = ACTIONS(2943), - [anon_sym__Noreturn] = ACTIONS(2943), - [anon_sym_noreturn] = ACTIONS(2943), - [anon_sym__Nonnull] = ACTIONS(2943), - [anon_sym_mutable] = ACTIONS(2943), - [anon_sym_constinit] = ACTIONS(2943), - [anon_sym_consteval] = ACTIONS(2943), - [anon_sym_alignas] = ACTIONS(2943), - [anon_sym__Alignas] = ACTIONS(2943), - [sym_primitive_type] = ACTIONS(2943), - [anon_sym_enum] = ACTIONS(2943), - [anon_sym_class] = ACTIONS(2943), - [anon_sym_struct] = ACTIONS(2943), - [anon_sym_union] = ACTIONS(2943), - [anon_sym_if] = ACTIONS(2943), - [anon_sym_switch] = ACTIONS(2943), - [anon_sym_case] = ACTIONS(2943), - [anon_sym_default] = ACTIONS(2943), - [anon_sym_while] = ACTIONS(2943), - [anon_sym_do] = ACTIONS(2943), - [anon_sym_for] = ACTIONS(2943), - [anon_sym_return] = ACTIONS(2943), - [anon_sym_break] = ACTIONS(2943), - [anon_sym_continue] = ACTIONS(2943), - [anon_sym_goto] = ACTIONS(2943), - [anon_sym_not] = ACTIONS(2943), - [anon_sym_compl] = ACTIONS(2943), - [anon_sym_DASH_DASH] = ACTIONS(2945), - [anon_sym_PLUS_PLUS] = ACTIONS(2945), - [anon_sym_sizeof] = ACTIONS(2943), + [487] = { + [ts_builtin_sym_end] = ACTIONS(2845), + [sym_identifier] = ACTIONS(2843), + [aux_sym_preproc_include_token1] = ACTIONS(2843), + [aux_sym_preproc_def_token1] = ACTIONS(2843), + [aux_sym_preproc_if_token1] = ACTIONS(2843), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2843), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2843), + [sym_preproc_directive] = ACTIONS(2843), + [anon_sym_LPAREN2] = ACTIONS(2845), + [anon_sym_BANG] = ACTIONS(2845), + [anon_sym_TILDE] = ACTIONS(2845), + [anon_sym_DASH] = ACTIONS(2843), + [anon_sym_PLUS] = ACTIONS(2843), + [anon_sym_STAR] = ACTIONS(2845), + [anon_sym_AMP_AMP] = ACTIONS(2845), + [anon_sym_AMP] = ACTIONS(2843), + [anon_sym_SEMI] = ACTIONS(2845), + [anon_sym___extension__] = ACTIONS(2843), + [anon_sym_typedef] = ACTIONS(2843), + [anon_sym_virtual] = ACTIONS(2843), + [anon_sym_extern] = ACTIONS(2843), + [anon_sym___attribute__] = ACTIONS(2843), + [anon_sym___attribute] = ACTIONS(2843), + [anon_sym_using] = ACTIONS(2843), + [anon_sym_COLON_COLON] = ACTIONS(2845), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2845), + [anon_sym___declspec] = ACTIONS(2843), + [anon_sym___based] = ACTIONS(2843), + [anon_sym___cdecl] = ACTIONS(2843), + [anon_sym___clrcall] = ACTIONS(2843), + [anon_sym___stdcall] = ACTIONS(2843), + [anon_sym___fastcall] = ACTIONS(2843), + [anon_sym___thiscall] = ACTIONS(2843), + [anon_sym___vectorcall] = ACTIONS(2843), + [anon_sym_LBRACE] = ACTIONS(2845), + [anon_sym_signed] = ACTIONS(2843), + [anon_sym_unsigned] = ACTIONS(2843), + [anon_sym_long] = ACTIONS(2843), + [anon_sym_short] = ACTIONS(2843), + [anon_sym_LBRACK] = ACTIONS(2843), + [anon_sym_static] = ACTIONS(2843), + [anon_sym_register] = ACTIONS(2843), + [anon_sym_inline] = ACTIONS(2843), + [anon_sym___inline] = ACTIONS(2843), + [anon_sym___inline__] = ACTIONS(2843), + [anon_sym___forceinline] = ACTIONS(2843), + [anon_sym_thread_local] = ACTIONS(2843), + [anon_sym___thread] = ACTIONS(2843), + [anon_sym_const] = ACTIONS(2843), + [anon_sym_constexpr] = ACTIONS(2843), + [anon_sym_volatile] = ACTIONS(2843), + [anon_sym_restrict] = ACTIONS(2843), + [anon_sym___restrict__] = ACTIONS(2843), + [anon_sym__Atomic] = ACTIONS(2843), + [anon_sym__Noreturn] = ACTIONS(2843), + [anon_sym_noreturn] = ACTIONS(2843), + [anon_sym__Nonnull] = ACTIONS(2843), + [anon_sym_mutable] = ACTIONS(2843), + [anon_sym_constinit] = ACTIONS(2843), + [anon_sym_consteval] = ACTIONS(2843), + [anon_sym_alignas] = ACTIONS(2843), + [anon_sym__Alignas] = ACTIONS(2843), + [sym_primitive_type] = ACTIONS(2843), + [anon_sym_enum] = ACTIONS(2843), + [anon_sym_class] = ACTIONS(2843), + [anon_sym_struct] = ACTIONS(2843), + [anon_sym_union] = ACTIONS(2843), + [anon_sym_if] = ACTIONS(2843), + [anon_sym_switch] = ACTIONS(2843), + [anon_sym_case] = ACTIONS(2843), + [anon_sym_default] = ACTIONS(2843), + [anon_sym_while] = ACTIONS(2843), + [anon_sym_do] = ACTIONS(2843), + [anon_sym_for] = ACTIONS(2843), + [anon_sym_return] = ACTIONS(2843), + [anon_sym_break] = ACTIONS(2843), + [anon_sym_continue] = ACTIONS(2843), + [anon_sym_goto] = ACTIONS(2843), + [anon_sym_not] = ACTIONS(2843), + [anon_sym_compl] = ACTIONS(2843), + [anon_sym_DASH_DASH] = ACTIONS(2845), + [anon_sym_PLUS_PLUS] = ACTIONS(2845), + [anon_sym_sizeof] = ACTIONS(2843), + [anon_sym___alignof__] = ACTIONS(2843), + [anon_sym___alignof] = ACTIONS(2843), + [anon_sym__alignof] = ACTIONS(2843), + [anon_sym_alignof] = ACTIONS(2843), + [anon_sym__Alignof] = ACTIONS(2843), + [anon_sym_offsetof] = ACTIONS(2843), + [anon_sym__Generic] = ACTIONS(2843), + [anon_sym_asm] = ACTIONS(2843), + [anon_sym___asm__] = ACTIONS(2843), + [anon_sym___asm] = ACTIONS(2843), + [sym_number_literal] = ACTIONS(2845), + [anon_sym_L_SQUOTE] = ACTIONS(2845), + [anon_sym_u_SQUOTE] = ACTIONS(2845), + [anon_sym_U_SQUOTE] = ACTIONS(2845), + [anon_sym_u8_SQUOTE] = ACTIONS(2845), + [anon_sym_SQUOTE] = ACTIONS(2845), + [anon_sym_L_DQUOTE] = ACTIONS(2845), + [anon_sym_u_DQUOTE] = ACTIONS(2845), + [anon_sym_U_DQUOTE] = ACTIONS(2845), + [anon_sym_u8_DQUOTE] = ACTIONS(2845), + [anon_sym_DQUOTE] = ACTIONS(2845), + [sym_true] = ACTIONS(2843), + [sym_false] = ACTIONS(2843), + [anon_sym_NULL] = ACTIONS(2843), + [anon_sym_nullptr] = ACTIONS(2843), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2843), + [anon_sym_decltype] = ACTIONS(2843), + [anon_sym_explicit] = ACTIONS(2843), + [anon_sym_typename] = ACTIONS(2843), + [anon_sym_export] = ACTIONS(2843), + [anon_sym_module] = ACTIONS(2843), + [anon_sym_import] = ACTIONS(2843), + [anon_sym_template] = ACTIONS(2843), + [anon_sym_operator] = ACTIONS(2843), + [anon_sym_try] = ACTIONS(2843), + [anon_sym_delete] = ACTIONS(2843), + [anon_sym_throw] = ACTIONS(2843), + [anon_sym_namespace] = ACTIONS(2843), + [anon_sym_static_assert] = ACTIONS(2843), + [anon_sym_concept] = ACTIONS(2843), + [anon_sym_co_return] = ACTIONS(2843), + [anon_sym_co_yield] = ACTIONS(2843), + [anon_sym_R_DQUOTE] = ACTIONS(2845), + [anon_sym_LR_DQUOTE] = ACTIONS(2845), + [anon_sym_uR_DQUOTE] = ACTIONS(2845), + [anon_sym_UR_DQUOTE] = ACTIONS(2845), + [anon_sym_u8R_DQUOTE] = ACTIONS(2845), + [anon_sym_co_await] = ACTIONS(2843), + [anon_sym_new] = ACTIONS(2843), + [anon_sym_requires] = ACTIONS(2843), + [sym_this] = ACTIONS(2843), + }, + [488] = { + [ts_builtin_sym_end] = ACTIONS(2945), + [sym_identifier] = ACTIONS(2943), + [aux_sym_preproc_include_token1] = ACTIONS(2943), + [aux_sym_preproc_def_token1] = ACTIONS(2943), + [aux_sym_preproc_if_token1] = ACTIONS(2943), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2943), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2943), + [sym_preproc_directive] = ACTIONS(2943), + [anon_sym_LPAREN2] = ACTIONS(2945), + [anon_sym_BANG] = ACTIONS(2945), + [anon_sym_TILDE] = ACTIONS(2945), + [anon_sym_DASH] = ACTIONS(2943), + [anon_sym_PLUS] = ACTIONS(2943), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_AMP_AMP] = ACTIONS(2945), + [anon_sym_AMP] = ACTIONS(2943), + [anon_sym_SEMI] = ACTIONS(2945), + [anon_sym___extension__] = ACTIONS(2943), + [anon_sym_typedef] = ACTIONS(2943), + [anon_sym_virtual] = ACTIONS(2943), + [anon_sym_extern] = ACTIONS(2943), + [anon_sym___attribute__] = ACTIONS(2943), + [anon_sym___attribute] = ACTIONS(2943), + [anon_sym_using] = ACTIONS(2943), + [anon_sym_COLON_COLON] = ACTIONS(2945), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2945), + [anon_sym___declspec] = ACTIONS(2943), + [anon_sym___based] = ACTIONS(2943), + [anon_sym___cdecl] = ACTIONS(2943), + [anon_sym___clrcall] = ACTIONS(2943), + [anon_sym___stdcall] = ACTIONS(2943), + [anon_sym___fastcall] = ACTIONS(2943), + [anon_sym___thiscall] = ACTIONS(2943), + [anon_sym___vectorcall] = ACTIONS(2943), + [anon_sym_LBRACE] = ACTIONS(2945), + [anon_sym_signed] = ACTIONS(2943), + [anon_sym_unsigned] = ACTIONS(2943), + [anon_sym_long] = ACTIONS(2943), + [anon_sym_short] = ACTIONS(2943), + [anon_sym_LBRACK] = ACTIONS(2943), + [anon_sym_static] = ACTIONS(2943), + [anon_sym_register] = ACTIONS(2943), + [anon_sym_inline] = ACTIONS(2943), + [anon_sym___inline] = ACTIONS(2943), + [anon_sym___inline__] = ACTIONS(2943), + [anon_sym___forceinline] = ACTIONS(2943), + [anon_sym_thread_local] = ACTIONS(2943), + [anon_sym___thread] = ACTIONS(2943), + [anon_sym_const] = ACTIONS(2943), + [anon_sym_constexpr] = ACTIONS(2943), + [anon_sym_volatile] = ACTIONS(2943), + [anon_sym_restrict] = ACTIONS(2943), + [anon_sym___restrict__] = ACTIONS(2943), + [anon_sym__Atomic] = ACTIONS(2943), + [anon_sym__Noreturn] = ACTIONS(2943), + [anon_sym_noreturn] = ACTIONS(2943), + [anon_sym__Nonnull] = ACTIONS(2943), + [anon_sym_mutable] = ACTIONS(2943), + [anon_sym_constinit] = ACTIONS(2943), + [anon_sym_consteval] = ACTIONS(2943), + [anon_sym_alignas] = ACTIONS(2943), + [anon_sym__Alignas] = ACTIONS(2943), + [sym_primitive_type] = ACTIONS(2943), + [anon_sym_enum] = ACTIONS(2943), + [anon_sym_class] = ACTIONS(2943), + [anon_sym_struct] = ACTIONS(2943), + [anon_sym_union] = ACTIONS(2943), + [anon_sym_if] = ACTIONS(2943), + [anon_sym_switch] = ACTIONS(2943), + [anon_sym_case] = ACTIONS(2943), + [anon_sym_default] = ACTIONS(2943), + [anon_sym_while] = ACTIONS(2943), + [anon_sym_do] = ACTIONS(2943), + [anon_sym_for] = ACTIONS(2943), + [anon_sym_return] = ACTIONS(2943), + [anon_sym_break] = ACTIONS(2943), + [anon_sym_continue] = ACTIONS(2943), + [anon_sym_goto] = ACTIONS(2943), + [anon_sym_not] = ACTIONS(2943), + [anon_sym_compl] = ACTIONS(2943), + [anon_sym_DASH_DASH] = ACTIONS(2945), + [anon_sym_PLUS_PLUS] = ACTIONS(2945), + [anon_sym_sizeof] = ACTIONS(2943), [anon_sym___alignof__] = ACTIONS(2943), [anon_sym___alignof] = ACTIONS(2943), [anon_sym__alignof] = ACTIONS(2943), @@ -112458,7 +113728,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2943), [sym_this] = ACTIONS(2943), }, - [482] = { + [489] = { [ts_builtin_sym_end] = ACTIONS(2949), [sym_identifier] = ACTIONS(2947), [aux_sym_preproc_include_token1] = ACTIONS(2947), @@ -112595,281 +113865,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2947), [sym_this] = ACTIONS(2947), }, - [483] = { - [ts_builtin_sym_end] = ACTIONS(3371), - [sym_identifier] = ACTIONS(3373), - [aux_sym_preproc_include_token1] = ACTIONS(3373), - [aux_sym_preproc_def_token1] = ACTIONS(3373), - [aux_sym_preproc_if_token1] = ACTIONS(3373), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3373), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3373), - [sym_preproc_directive] = ACTIONS(3373), - [anon_sym_LPAREN2] = ACTIONS(3371), - [anon_sym_BANG] = ACTIONS(3371), - [anon_sym_TILDE] = ACTIONS(3371), - [anon_sym_DASH] = ACTIONS(3373), - [anon_sym_PLUS] = ACTIONS(3373), - [anon_sym_STAR] = ACTIONS(3371), - [anon_sym_AMP_AMP] = ACTIONS(3371), - [anon_sym_AMP] = ACTIONS(3373), - [anon_sym_SEMI] = ACTIONS(3371), - [anon_sym___extension__] = ACTIONS(3373), - [anon_sym_typedef] = ACTIONS(3373), - [anon_sym_virtual] = ACTIONS(3373), - [anon_sym_extern] = ACTIONS(3373), - [anon_sym___attribute__] = ACTIONS(3373), - [anon_sym___attribute] = ACTIONS(3373), - [anon_sym_using] = ACTIONS(3373), - [anon_sym_COLON_COLON] = ACTIONS(3371), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3371), - [anon_sym___declspec] = ACTIONS(3373), - [anon_sym___based] = ACTIONS(3373), - [anon_sym___cdecl] = ACTIONS(3373), - [anon_sym___clrcall] = ACTIONS(3373), - [anon_sym___stdcall] = ACTIONS(3373), - [anon_sym___fastcall] = ACTIONS(3373), - [anon_sym___thiscall] = ACTIONS(3373), - [anon_sym___vectorcall] = ACTIONS(3373), - [anon_sym_LBRACE] = ACTIONS(3371), - [anon_sym_signed] = ACTIONS(3373), - [anon_sym_unsigned] = ACTIONS(3373), - [anon_sym_long] = ACTIONS(3373), - [anon_sym_short] = ACTIONS(3373), - [anon_sym_LBRACK] = ACTIONS(3373), - [anon_sym_static] = ACTIONS(3373), - [anon_sym_register] = ACTIONS(3373), - [anon_sym_inline] = ACTIONS(3373), - [anon_sym___inline] = ACTIONS(3373), - [anon_sym___inline__] = ACTIONS(3373), - [anon_sym___forceinline] = ACTIONS(3373), - [anon_sym_thread_local] = ACTIONS(3373), - [anon_sym___thread] = ACTIONS(3373), - [anon_sym_const] = ACTIONS(3373), - [anon_sym_constexpr] = ACTIONS(3373), - [anon_sym_volatile] = ACTIONS(3373), - [anon_sym_restrict] = ACTIONS(3373), - [anon_sym___restrict__] = ACTIONS(3373), - [anon_sym__Atomic] = ACTIONS(3373), - [anon_sym__Noreturn] = ACTIONS(3373), - [anon_sym_noreturn] = ACTIONS(3373), - [anon_sym__Nonnull] = ACTIONS(3373), - [anon_sym_mutable] = ACTIONS(3373), - [anon_sym_constinit] = ACTIONS(3373), - [anon_sym_consteval] = ACTIONS(3373), - [anon_sym_alignas] = ACTIONS(3373), - [anon_sym__Alignas] = ACTIONS(3373), - [sym_primitive_type] = ACTIONS(3373), - [anon_sym_enum] = ACTIONS(3373), - [anon_sym_class] = ACTIONS(3373), - [anon_sym_struct] = ACTIONS(3373), - [anon_sym_union] = ACTIONS(3373), - [anon_sym_if] = ACTIONS(3373), - [anon_sym_switch] = ACTIONS(3373), - [anon_sym_case] = ACTIONS(3373), - [anon_sym_default] = ACTIONS(3373), - [anon_sym_while] = ACTIONS(3373), - [anon_sym_do] = ACTIONS(3373), - [anon_sym_for] = ACTIONS(3373), - [anon_sym_return] = ACTIONS(3373), - [anon_sym_break] = ACTIONS(3373), - [anon_sym_continue] = ACTIONS(3373), - [anon_sym_goto] = ACTIONS(3373), - [anon_sym_not] = ACTIONS(3373), - [anon_sym_compl] = ACTIONS(3373), - [anon_sym_DASH_DASH] = ACTIONS(3371), - [anon_sym_PLUS_PLUS] = ACTIONS(3371), - [anon_sym_sizeof] = ACTIONS(3373), - [anon_sym___alignof__] = ACTIONS(3373), - [anon_sym___alignof] = ACTIONS(3373), - [anon_sym__alignof] = ACTIONS(3373), - [anon_sym_alignof] = ACTIONS(3373), - [anon_sym__Alignof] = ACTIONS(3373), - [anon_sym_offsetof] = ACTIONS(3373), - [anon_sym__Generic] = ACTIONS(3373), - [anon_sym_asm] = ACTIONS(3373), - [anon_sym___asm__] = ACTIONS(3373), - [anon_sym___asm] = ACTIONS(3373), - [sym_number_literal] = ACTIONS(3371), - [anon_sym_L_SQUOTE] = ACTIONS(3371), - [anon_sym_u_SQUOTE] = ACTIONS(3371), - [anon_sym_U_SQUOTE] = ACTIONS(3371), - [anon_sym_u8_SQUOTE] = ACTIONS(3371), - [anon_sym_SQUOTE] = ACTIONS(3371), - [anon_sym_L_DQUOTE] = ACTIONS(3371), - [anon_sym_u_DQUOTE] = ACTIONS(3371), - [anon_sym_U_DQUOTE] = ACTIONS(3371), - [anon_sym_u8_DQUOTE] = ACTIONS(3371), - [anon_sym_DQUOTE] = ACTIONS(3371), - [sym_true] = ACTIONS(3373), - [sym_false] = ACTIONS(3373), - [anon_sym_NULL] = ACTIONS(3373), - [anon_sym_nullptr] = ACTIONS(3373), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3373), - [anon_sym_decltype] = ACTIONS(3373), - [anon_sym_explicit] = ACTIONS(3373), - [anon_sym_typename] = ACTIONS(3373), - [anon_sym_export] = ACTIONS(3373), - [anon_sym_module] = ACTIONS(3373), - [anon_sym_import] = ACTIONS(3373), - [anon_sym_template] = ACTIONS(3373), - [anon_sym_operator] = ACTIONS(3373), - [anon_sym_try] = ACTIONS(3373), - [anon_sym_delete] = ACTIONS(3373), - [anon_sym_throw] = ACTIONS(3373), - [anon_sym_namespace] = ACTIONS(3373), - [anon_sym_static_assert] = ACTIONS(3373), - [anon_sym_concept] = ACTIONS(3373), - [anon_sym_co_return] = ACTIONS(3373), - [anon_sym_co_yield] = ACTIONS(3373), - [anon_sym_R_DQUOTE] = ACTIONS(3371), - [anon_sym_LR_DQUOTE] = ACTIONS(3371), - [anon_sym_uR_DQUOTE] = ACTIONS(3371), - [anon_sym_UR_DQUOTE] = ACTIONS(3371), - [anon_sym_u8R_DQUOTE] = ACTIONS(3371), - [anon_sym_co_await] = ACTIONS(3373), - [anon_sym_new] = ACTIONS(3373), - [anon_sym_requires] = ACTIONS(3373), - [sym_this] = ACTIONS(3373), - }, - [484] = { - [ts_builtin_sym_end] = ACTIONS(2813), - [sym_identifier] = ACTIONS(2811), - [aux_sym_preproc_include_token1] = ACTIONS(2811), - [aux_sym_preproc_def_token1] = ACTIONS(2811), - [aux_sym_preproc_if_token1] = ACTIONS(2811), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2811), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2811), - [sym_preproc_directive] = ACTIONS(2811), - [anon_sym_LPAREN2] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(2813), - [anon_sym_TILDE] = ACTIONS(2813), - [anon_sym_DASH] = ACTIONS(2811), - [anon_sym_PLUS] = ACTIONS(2811), - [anon_sym_STAR] = ACTIONS(2813), - [anon_sym_AMP_AMP] = ACTIONS(2813), - [anon_sym_AMP] = ACTIONS(2811), - [anon_sym_SEMI] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(2811), - [anon_sym_typedef] = ACTIONS(2811), - [anon_sym_virtual] = ACTIONS(2811), - [anon_sym_extern] = ACTIONS(2811), - [anon_sym___attribute__] = ACTIONS(2811), - [anon_sym___attribute] = ACTIONS(2811), - [anon_sym_using] = ACTIONS(2811), - [anon_sym_COLON_COLON] = ACTIONS(2813), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2813), - [anon_sym___declspec] = ACTIONS(2811), - [anon_sym___based] = ACTIONS(2811), - [anon_sym___cdecl] = ACTIONS(2811), - [anon_sym___clrcall] = ACTIONS(2811), - [anon_sym___stdcall] = ACTIONS(2811), - [anon_sym___fastcall] = ACTIONS(2811), - [anon_sym___thiscall] = ACTIONS(2811), - [anon_sym___vectorcall] = ACTIONS(2811), - [anon_sym_LBRACE] = ACTIONS(2813), - [anon_sym_signed] = ACTIONS(2811), - [anon_sym_unsigned] = ACTIONS(2811), - [anon_sym_long] = ACTIONS(2811), - [anon_sym_short] = ACTIONS(2811), - [anon_sym_LBRACK] = ACTIONS(2811), - [anon_sym_static] = ACTIONS(2811), - [anon_sym_register] = ACTIONS(2811), - [anon_sym_inline] = ACTIONS(2811), - [anon_sym___inline] = ACTIONS(2811), - [anon_sym___inline__] = ACTIONS(2811), - [anon_sym___forceinline] = ACTIONS(2811), - [anon_sym_thread_local] = ACTIONS(2811), - [anon_sym___thread] = ACTIONS(2811), - [anon_sym_const] = ACTIONS(2811), - [anon_sym_constexpr] = ACTIONS(2811), - [anon_sym_volatile] = ACTIONS(2811), - [anon_sym_restrict] = ACTIONS(2811), - [anon_sym___restrict__] = ACTIONS(2811), - [anon_sym__Atomic] = ACTIONS(2811), - [anon_sym__Noreturn] = ACTIONS(2811), - [anon_sym_noreturn] = ACTIONS(2811), - [anon_sym__Nonnull] = ACTIONS(2811), - [anon_sym_mutable] = ACTIONS(2811), - [anon_sym_constinit] = ACTIONS(2811), - [anon_sym_consteval] = ACTIONS(2811), - [anon_sym_alignas] = ACTIONS(2811), - [anon_sym__Alignas] = ACTIONS(2811), - [sym_primitive_type] = ACTIONS(2811), - [anon_sym_enum] = ACTIONS(2811), - [anon_sym_class] = ACTIONS(2811), - [anon_sym_struct] = ACTIONS(2811), - [anon_sym_union] = ACTIONS(2811), - [anon_sym_if] = ACTIONS(2811), - [anon_sym_switch] = ACTIONS(2811), - [anon_sym_case] = ACTIONS(2811), - [anon_sym_default] = ACTIONS(2811), - [anon_sym_while] = ACTIONS(2811), - [anon_sym_do] = ACTIONS(2811), - [anon_sym_for] = ACTIONS(2811), - [anon_sym_return] = ACTIONS(2811), - [anon_sym_break] = ACTIONS(2811), - [anon_sym_continue] = ACTIONS(2811), - [anon_sym_goto] = ACTIONS(2811), - [anon_sym_not] = ACTIONS(2811), - [anon_sym_compl] = ACTIONS(2811), - [anon_sym_DASH_DASH] = ACTIONS(2813), - [anon_sym_PLUS_PLUS] = ACTIONS(2813), - [anon_sym_sizeof] = ACTIONS(2811), - [anon_sym___alignof__] = ACTIONS(2811), - [anon_sym___alignof] = ACTIONS(2811), - [anon_sym__alignof] = ACTIONS(2811), - [anon_sym_alignof] = ACTIONS(2811), - [anon_sym__Alignof] = ACTIONS(2811), - [anon_sym_offsetof] = ACTIONS(2811), - [anon_sym__Generic] = ACTIONS(2811), - [anon_sym_asm] = ACTIONS(2811), - [anon_sym___asm__] = ACTIONS(2811), - [anon_sym___asm] = ACTIONS(2811), - [sym_number_literal] = ACTIONS(2813), - [anon_sym_L_SQUOTE] = ACTIONS(2813), - [anon_sym_u_SQUOTE] = ACTIONS(2813), - [anon_sym_U_SQUOTE] = ACTIONS(2813), - [anon_sym_u8_SQUOTE] = ACTIONS(2813), - [anon_sym_SQUOTE] = ACTIONS(2813), - [anon_sym_L_DQUOTE] = ACTIONS(2813), - [anon_sym_u_DQUOTE] = ACTIONS(2813), - [anon_sym_U_DQUOTE] = ACTIONS(2813), - [anon_sym_u8_DQUOTE] = ACTIONS(2813), - [anon_sym_DQUOTE] = ACTIONS(2813), - [sym_true] = ACTIONS(2811), - [sym_false] = ACTIONS(2811), - [anon_sym_NULL] = ACTIONS(2811), - [anon_sym_nullptr] = ACTIONS(2811), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2811), - [anon_sym_decltype] = ACTIONS(2811), - [anon_sym_explicit] = ACTIONS(2811), - [anon_sym_typename] = ACTIONS(2811), - [anon_sym_export] = ACTIONS(2811), - [anon_sym_module] = ACTIONS(2811), - [anon_sym_import] = ACTIONS(2811), - [anon_sym_template] = ACTIONS(2811), - [anon_sym_operator] = ACTIONS(2811), - [anon_sym_try] = ACTIONS(2811), - [anon_sym_delete] = ACTIONS(2811), - [anon_sym_throw] = ACTIONS(2811), - [anon_sym_namespace] = ACTIONS(2811), - [anon_sym_static_assert] = ACTIONS(2811), - [anon_sym_concept] = ACTIONS(2811), - [anon_sym_co_return] = ACTIONS(2811), - [anon_sym_co_yield] = ACTIONS(2811), - [anon_sym_R_DQUOTE] = ACTIONS(2813), - [anon_sym_LR_DQUOTE] = ACTIONS(2813), - [anon_sym_uR_DQUOTE] = ACTIONS(2813), - [anon_sym_UR_DQUOTE] = ACTIONS(2813), - [anon_sym_u8R_DQUOTE] = ACTIONS(2813), - [anon_sym_co_await] = ACTIONS(2811), - [anon_sym_new] = ACTIONS(2811), - [anon_sym_requires] = ACTIONS(2811), - [sym_this] = ACTIONS(2811), - }, - [485] = { + [490] = { [ts_builtin_sym_end] = ACTIONS(2953), [sym_identifier] = ACTIONS(2951), [aux_sym_preproc_include_token1] = ACTIONS(2951), @@ -113006,418 +114002,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2951), [sym_this] = ACTIONS(2951), }, - [486] = { - [ts_builtin_sym_end] = ACTIONS(2881), - [sym_identifier] = ACTIONS(2879), - [aux_sym_preproc_include_token1] = ACTIONS(2879), - [aux_sym_preproc_def_token1] = ACTIONS(2879), - [aux_sym_preproc_if_token1] = ACTIONS(2879), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2879), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2879), - [sym_preproc_directive] = ACTIONS(2879), - [anon_sym_LPAREN2] = ACTIONS(2881), - [anon_sym_BANG] = ACTIONS(2881), - [anon_sym_TILDE] = ACTIONS(2881), - [anon_sym_DASH] = ACTIONS(2879), - [anon_sym_PLUS] = ACTIONS(2879), - [anon_sym_STAR] = ACTIONS(2881), - [anon_sym_AMP_AMP] = ACTIONS(2881), - [anon_sym_AMP] = ACTIONS(2879), - [anon_sym_SEMI] = ACTIONS(2881), - [anon_sym___extension__] = ACTIONS(2879), - [anon_sym_typedef] = ACTIONS(2879), - [anon_sym_virtual] = ACTIONS(2879), - [anon_sym_extern] = ACTIONS(2879), - [anon_sym___attribute__] = ACTIONS(2879), - [anon_sym___attribute] = ACTIONS(2879), - [anon_sym_using] = ACTIONS(2879), - [anon_sym_COLON_COLON] = ACTIONS(2881), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2881), - [anon_sym___declspec] = ACTIONS(2879), - [anon_sym___based] = ACTIONS(2879), - [anon_sym___cdecl] = ACTIONS(2879), - [anon_sym___clrcall] = ACTIONS(2879), - [anon_sym___stdcall] = ACTIONS(2879), - [anon_sym___fastcall] = ACTIONS(2879), - [anon_sym___thiscall] = ACTIONS(2879), - [anon_sym___vectorcall] = ACTIONS(2879), - [anon_sym_LBRACE] = ACTIONS(2881), - [anon_sym_signed] = ACTIONS(2879), - [anon_sym_unsigned] = ACTIONS(2879), - [anon_sym_long] = ACTIONS(2879), - [anon_sym_short] = ACTIONS(2879), - [anon_sym_LBRACK] = ACTIONS(2879), - [anon_sym_static] = ACTIONS(2879), - [anon_sym_register] = ACTIONS(2879), - [anon_sym_inline] = ACTIONS(2879), - [anon_sym___inline] = ACTIONS(2879), - [anon_sym___inline__] = ACTIONS(2879), - [anon_sym___forceinline] = ACTIONS(2879), - [anon_sym_thread_local] = ACTIONS(2879), - [anon_sym___thread] = ACTIONS(2879), - [anon_sym_const] = ACTIONS(2879), - [anon_sym_constexpr] = ACTIONS(2879), - [anon_sym_volatile] = ACTIONS(2879), - [anon_sym_restrict] = ACTIONS(2879), - [anon_sym___restrict__] = ACTIONS(2879), - [anon_sym__Atomic] = ACTIONS(2879), - [anon_sym__Noreturn] = ACTIONS(2879), - [anon_sym_noreturn] = ACTIONS(2879), - [anon_sym__Nonnull] = ACTIONS(2879), - [anon_sym_mutable] = ACTIONS(2879), - [anon_sym_constinit] = ACTIONS(2879), - [anon_sym_consteval] = ACTIONS(2879), - [anon_sym_alignas] = ACTIONS(2879), - [anon_sym__Alignas] = ACTIONS(2879), - [sym_primitive_type] = ACTIONS(2879), - [anon_sym_enum] = ACTIONS(2879), - [anon_sym_class] = ACTIONS(2879), - [anon_sym_struct] = ACTIONS(2879), - [anon_sym_union] = ACTIONS(2879), - [anon_sym_if] = ACTIONS(2879), - [anon_sym_switch] = ACTIONS(2879), - [anon_sym_case] = ACTIONS(2879), - [anon_sym_default] = ACTIONS(2879), - [anon_sym_while] = ACTIONS(2879), - [anon_sym_do] = ACTIONS(2879), - [anon_sym_for] = ACTIONS(2879), - [anon_sym_return] = ACTIONS(2879), - [anon_sym_break] = ACTIONS(2879), - [anon_sym_continue] = ACTIONS(2879), - [anon_sym_goto] = ACTIONS(2879), - [anon_sym_not] = ACTIONS(2879), - [anon_sym_compl] = ACTIONS(2879), - [anon_sym_DASH_DASH] = ACTIONS(2881), - [anon_sym_PLUS_PLUS] = ACTIONS(2881), - [anon_sym_sizeof] = ACTIONS(2879), - [anon_sym___alignof__] = ACTIONS(2879), - [anon_sym___alignof] = ACTIONS(2879), - [anon_sym__alignof] = ACTIONS(2879), - [anon_sym_alignof] = ACTIONS(2879), - [anon_sym__Alignof] = ACTIONS(2879), - [anon_sym_offsetof] = ACTIONS(2879), - [anon_sym__Generic] = ACTIONS(2879), - [anon_sym_asm] = ACTIONS(2879), - [anon_sym___asm__] = ACTIONS(2879), - [anon_sym___asm] = ACTIONS(2879), - [sym_number_literal] = ACTIONS(2881), - [anon_sym_L_SQUOTE] = ACTIONS(2881), - [anon_sym_u_SQUOTE] = ACTIONS(2881), - [anon_sym_U_SQUOTE] = ACTIONS(2881), - [anon_sym_u8_SQUOTE] = ACTIONS(2881), - [anon_sym_SQUOTE] = ACTIONS(2881), - [anon_sym_L_DQUOTE] = ACTIONS(2881), - [anon_sym_u_DQUOTE] = ACTIONS(2881), - [anon_sym_U_DQUOTE] = ACTIONS(2881), - [anon_sym_u8_DQUOTE] = ACTIONS(2881), - [anon_sym_DQUOTE] = ACTIONS(2881), - [sym_true] = ACTIONS(2879), - [sym_false] = ACTIONS(2879), - [anon_sym_NULL] = ACTIONS(2879), - [anon_sym_nullptr] = ACTIONS(2879), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2879), - [anon_sym_decltype] = ACTIONS(2879), - [anon_sym_explicit] = ACTIONS(2879), - [anon_sym_typename] = ACTIONS(2879), - [anon_sym_export] = ACTIONS(2879), - [anon_sym_module] = ACTIONS(2879), - [anon_sym_import] = ACTIONS(2879), - [anon_sym_template] = ACTIONS(2879), - [anon_sym_operator] = ACTIONS(2879), - [anon_sym_try] = ACTIONS(2879), - [anon_sym_delete] = ACTIONS(2879), - [anon_sym_throw] = ACTIONS(2879), - [anon_sym_namespace] = ACTIONS(2879), - [anon_sym_static_assert] = ACTIONS(2879), - [anon_sym_concept] = ACTIONS(2879), - [anon_sym_co_return] = ACTIONS(2879), - [anon_sym_co_yield] = ACTIONS(2879), - [anon_sym_R_DQUOTE] = ACTIONS(2881), - [anon_sym_LR_DQUOTE] = ACTIONS(2881), - [anon_sym_uR_DQUOTE] = ACTIONS(2881), - [anon_sym_UR_DQUOTE] = ACTIONS(2881), - [anon_sym_u8R_DQUOTE] = ACTIONS(2881), - [anon_sym_co_await] = ACTIONS(2879), - [anon_sym_new] = ACTIONS(2879), - [anon_sym_requires] = ACTIONS(2879), - [sym_this] = ACTIONS(2879), - }, - [487] = { - [ts_builtin_sym_end] = ACTIONS(2865), - [sym_identifier] = ACTIONS(2863), - [aux_sym_preproc_include_token1] = ACTIONS(2863), - [aux_sym_preproc_def_token1] = ACTIONS(2863), - [aux_sym_preproc_if_token1] = ACTIONS(2863), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2863), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2863), - [sym_preproc_directive] = ACTIONS(2863), - [anon_sym_LPAREN2] = ACTIONS(2865), - [anon_sym_BANG] = ACTIONS(2865), - [anon_sym_TILDE] = ACTIONS(2865), - [anon_sym_DASH] = ACTIONS(2863), - [anon_sym_PLUS] = ACTIONS(2863), - [anon_sym_STAR] = ACTIONS(2865), - [anon_sym_AMP_AMP] = ACTIONS(2865), - [anon_sym_AMP] = ACTIONS(2863), - [anon_sym_SEMI] = ACTIONS(2865), - [anon_sym___extension__] = ACTIONS(2863), - [anon_sym_typedef] = ACTIONS(2863), - [anon_sym_virtual] = ACTIONS(2863), - [anon_sym_extern] = ACTIONS(2863), - [anon_sym___attribute__] = ACTIONS(2863), - [anon_sym___attribute] = ACTIONS(2863), - [anon_sym_using] = ACTIONS(2863), - [anon_sym_COLON_COLON] = ACTIONS(2865), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2865), - [anon_sym___declspec] = ACTIONS(2863), - [anon_sym___based] = ACTIONS(2863), - [anon_sym___cdecl] = ACTIONS(2863), - [anon_sym___clrcall] = ACTIONS(2863), - [anon_sym___stdcall] = ACTIONS(2863), - [anon_sym___fastcall] = ACTIONS(2863), - [anon_sym___thiscall] = ACTIONS(2863), - [anon_sym___vectorcall] = ACTIONS(2863), - [anon_sym_LBRACE] = ACTIONS(2865), - [anon_sym_signed] = ACTIONS(2863), - [anon_sym_unsigned] = ACTIONS(2863), - [anon_sym_long] = ACTIONS(2863), - [anon_sym_short] = ACTIONS(2863), - [anon_sym_LBRACK] = ACTIONS(2863), - [anon_sym_static] = ACTIONS(2863), - [anon_sym_register] = ACTIONS(2863), - [anon_sym_inline] = ACTIONS(2863), - [anon_sym___inline] = ACTIONS(2863), - [anon_sym___inline__] = ACTIONS(2863), - [anon_sym___forceinline] = ACTIONS(2863), - [anon_sym_thread_local] = ACTIONS(2863), - [anon_sym___thread] = ACTIONS(2863), - [anon_sym_const] = ACTIONS(2863), - [anon_sym_constexpr] = ACTIONS(2863), - [anon_sym_volatile] = ACTIONS(2863), - [anon_sym_restrict] = ACTIONS(2863), - [anon_sym___restrict__] = ACTIONS(2863), - [anon_sym__Atomic] = ACTIONS(2863), - [anon_sym__Noreturn] = ACTIONS(2863), - [anon_sym_noreturn] = ACTIONS(2863), - [anon_sym__Nonnull] = ACTIONS(2863), - [anon_sym_mutable] = ACTIONS(2863), - [anon_sym_constinit] = ACTIONS(2863), - [anon_sym_consteval] = ACTIONS(2863), - [anon_sym_alignas] = ACTIONS(2863), - [anon_sym__Alignas] = ACTIONS(2863), - [sym_primitive_type] = ACTIONS(2863), - [anon_sym_enum] = ACTIONS(2863), - [anon_sym_class] = ACTIONS(2863), - [anon_sym_struct] = ACTIONS(2863), - [anon_sym_union] = ACTIONS(2863), - [anon_sym_if] = ACTIONS(2863), - [anon_sym_switch] = ACTIONS(2863), - [anon_sym_case] = ACTIONS(2863), - [anon_sym_default] = ACTIONS(2863), - [anon_sym_while] = ACTIONS(2863), - [anon_sym_do] = ACTIONS(2863), - [anon_sym_for] = ACTIONS(2863), - [anon_sym_return] = ACTIONS(2863), - [anon_sym_break] = ACTIONS(2863), - [anon_sym_continue] = ACTIONS(2863), - [anon_sym_goto] = ACTIONS(2863), - [anon_sym_not] = ACTIONS(2863), - [anon_sym_compl] = ACTIONS(2863), - [anon_sym_DASH_DASH] = ACTIONS(2865), - [anon_sym_PLUS_PLUS] = ACTIONS(2865), - [anon_sym_sizeof] = ACTIONS(2863), - [anon_sym___alignof__] = ACTIONS(2863), - [anon_sym___alignof] = ACTIONS(2863), - [anon_sym__alignof] = ACTIONS(2863), - [anon_sym_alignof] = ACTIONS(2863), - [anon_sym__Alignof] = ACTIONS(2863), - [anon_sym_offsetof] = ACTIONS(2863), - [anon_sym__Generic] = ACTIONS(2863), - [anon_sym_asm] = ACTIONS(2863), - [anon_sym___asm__] = ACTIONS(2863), - [anon_sym___asm] = ACTIONS(2863), - [sym_number_literal] = ACTIONS(2865), - [anon_sym_L_SQUOTE] = ACTIONS(2865), - [anon_sym_u_SQUOTE] = ACTIONS(2865), - [anon_sym_U_SQUOTE] = ACTIONS(2865), - [anon_sym_u8_SQUOTE] = ACTIONS(2865), - [anon_sym_SQUOTE] = ACTIONS(2865), - [anon_sym_L_DQUOTE] = ACTIONS(2865), - [anon_sym_u_DQUOTE] = ACTIONS(2865), - [anon_sym_U_DQUOTE] = ACTIONS(2865), - [anon_sym_u8_DQUOTE] = ACTIONS(2865), - [anon_sym_DQUOTE] = ACTIONS(2865), - [sym_true] = ACTIONS(2863), - [sym_false] = ACTIONS(2863), - [anon_sym_NULL] = ACTIONS(2863), - [anon_sym_nullptr] = ACTIONS(2863), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2863), - [anon_sym_decltype] = ACTIONS(2863), - [anon_sym_explicit] = ACTIONS(2863), - [anon_sym_typename] = ACTIONS(2863), - [anon_sym_export] = ACTIONS(2863), - [anon_sym_module] = ACTIONS(2863), - [anon_sym_import] = ACTIONS(2863), - [anon_sym_template] = ACTIONS(2863), - [anon_sym_operator] = ACTIONS(2863), - [anon_sym_try] = ACTIONS(2863), - [anon_sym_delete] = ACTIONS(2863), - [anon_sym_throw] = ACTIONS(2863), - [anon_sym_namespace] = ACTIONS(2863), - [anon_sym_static_assert] = ACTIONS(2863), - [anon_sym_concept] = ACTIONS(2863), - [anon_sym_co_return] = ACTIONS(2863), - [anon_sym_co_yield] = ACTIONS(2863), - [anon_sym_R_DQUOTE] = ACTIONS(2865), - [anon_sym_LR_DQUOTE] = ACTIONS(2865), - [anon_sym_uR_DQUOTE] = ACTIONS(2865), - [anon_sym_UR_DQUOTE] = ACTIONS(2865), - [anon_sym_u8R_DQUOTE] = ACTIONS(2865), - [anon_sym_co_await] = ACTIONS(2863), - [anon_sym_new] = ACTIONS(2863), - [anon_sym_requires] = ACTIONS(2863), - [sym_this] = ACTIONS(2863), - }, - [488] = { - [sym_identifier] = ACTIONS(2743), - [aux_sym_preproc_include_token1] = ACTIONS(2743), - [aux_sym_preproc_def_token1] = ACTIONS(2743), - [aux_sym_preproc_if_token1] = ACTIONS(2743), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2743), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2743), - [sym_preproc_directive] = ACTIONS(2743), - [anon_sym_LPAREN2] = ACTIONS(2745), - [anon_sym_BANG] = ACTIONS(2745), - [anon_sym_TILDE] = ACTIONS(2745), - [anon_sym_DASH] = ACTIONS(2743), - [anon_sym_PLUS] = ACTIONS(2743), - [anon_sym_STAR] = ACTIONS(2745), - [anon_sym_AMP_AMP] = ACTIONS(2745), - [anon_sym_AMP] = ACTIONS(2743), - [anon_sym_SEMI] = ACTIONS(2745), - [anon_sym___extension__] = ACTIONS(2743), - [anon_sym_typedef] = ACTIONS(2743), - [anon_sym_virtual] = ACTIONS(2743), - [anon_sym_extern] = ACTIONS(2743), - [anon_sym___attribute__] = ACTIONS(2743), - [anon_sym___attribute] = ACTIONS(2743), - [anon_sym_using] = ACTIONS(2743), - [anon_sym_COLON_COLON] = ACTIONS(2745), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2745), - [anon_sym___declspec] = ACTIONS(2743), - [anon_sym___based] = ACTIONS(2743), - [anon_sym___cdecl] = ACTIONS(2743), - [anon_sym___clrcall] = ACTIONS(2743), - [anon_sym___stdcall] = ACTIONS(2743), - [anon_sym___fastcall] = ACTIONS(2743), - [anon_sym___thiscall] = ACTIONS(2743), - [anon_sym___vectorcall] = ACTIONS(2743), - [anon_sym_LBRACE] = ACTIONS(2745), - [anon_sym_RBRACE] = ACTIONS(2745), - [anon_sym_signed] = ACTIONS(2743), - [anon_sym_unsigned] = ACTIONS(2743), - [anon_sym_long] = ACTIONS(2743), - [anon_sym_short] = ACTIONS(2743), - [anon_sym_LBRACK] = ACTIONS(2743), - [anon_sym_static] = ACTIONS(2743), - [anon_sym_register] = ACTIONS(2743), - [anon_sym_inline] = ACTIONS(2743), - [anon_sym___inline] = ACTIONS(2743), - [anon_sym___inline__] = ACTIONS(2743), - [anon_sym___forceinline] = ACTIONS(2743), - [anon_sym_thread_local] = ACTIONS(2743), - [anon_sym___thread] = ACTIONS(2743), - [anon_sym_const] = ACTIONS(2743), - [anon_sym_constexpr] = ACTIONS(2743), - [anon_sym_volatile] = ACTIONS(2743), - [anon_sym_restrict] = ACTIONS(2743), - [anon_sym___restrict__] = ACTIONS(2743), - [anon_sym__Atomic] = ACTIONS(2743), - [anon_sym__Noreturn] = ACTIONS(2743), - [anon_sym_noreturn] = ACTIONS(2743), - [anon_sym__Nonnull] = ACTIONS(2743), - [anon_sym_mutable] = ACTIONS(2743), - [anon_sym_constinit] = ACTIONS(2743), - [anon_sym_consteval] = ACTIONS(2743), - [anon_sym_alignas] = ACTIONS(2743), - [anon_sym__Alignas] = ACTIONS(2743), - [sym_primitive_type] = ACTIONS(2743), - [anon_sym_enum] = ACTIONS(2743), - [anon_sym_class] = ACTIONS(2743), - [anon_sym_struct] = ACTIONS(2743), - [anon_sym_union] = ACTIONS(2743), - [anon_sym_if] = ACTIONS(2743), - [anon_sym_else] = ACTIONS(2743), - [anon_sym_switch] = ACTIONS(2743), - [anon_sym_case] = ACTIONS(2743), - [anon_sym_default] = ACTIONS(2743), - [anon_sym_while] = ACTIONS(2743), - [anon_sym_do] = ACTIONS(2743), - [anon_sym_for] = ACTIONS(2743), - [anon_sym_return] = ACTIONS(2743), - [anon_sym_break] = ACTIONS(2743), - [anon_sym_continue] = ACTIONS(2743), - [anon_sym_goto] = ACTIONS(2743), - [anon_sym___try] = ACTIONS(2743), - [anon_sym___leave] = ACTIONS(2743), - [anon_sym_not] = ACTIONS(2743), - [anon_sym_compl] = ACTIONS(2743), - [anon_sym_DASH_DASH] = ACTIONS(2745), - [anon_sym_PLUS_PLUS] = ACTIONS(2745), - [anon_sym_sizeof] = ACTIONS(2743), - [anon_sym___alignof__] = ACTIONS(2743), - [anon_sym___alignof] = ACTIONS(2743), - [anon_sym__alignof] = ACTIONS(2743), - [anon_sym_alignof] = ACTIONS(2743), - [anon_sym__Alignof] = ACTIONS(2743), - [anon_sym_offsetof] = ACTIONS(2743), - [anon_sym__Generic] = ACTIONS(2743), - [anon_sym_asm] = ACTIONS(2743), - [anon_sym___asm__] = ACTIONS(2743), - [anon_sym___asm] = ACTIONS(2743), - [sym_number_literal] = ACTIONS(2745), - [anon_sym_L_SQUOTE] = ACTIONS(2745), - [anon_sym_u_SQUOTE] = ACTIONS(2745), - [anon_sym_U_SQUOTE] = ACTIONS(2745), - [anon_sym_u8_SQUOTE] = ACTIONS(2745), - [anon_sym_SQUOTE] = ACTIONS(2745), - [anon_sym_L_DQUOTE] = ACTIONS(2745), - [anon_sym_u_DQUOTE] = ACTIONS(2745), - [anon_sym_U_DQUOTE] = ACTIONS(2745), - [anon_sym_u8_DQUOTE] = ACTIONS(2745), - [anon_sym_DQUOTE] = ACTIONS(2745), - [sym_true] = ACTIONS(2743), - [sym_false] = ACTIONS(2743), - [anon_sym_NULL] = ACTIONS(2743), - [anon_sym_nullptr] = ACTIONS(2743), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2743), - [anon_sym_decltype] = ACTIONS(2743), - [anon_sym_explicit] = ACTIONS(2743), - [anon_sym_typename] = ACTIONS(2743), - [anon_sym_template] = ACTIONS(2743), - [anon_sym_operator] = ACTIONS(2743), - [anon_sym_try] = ACTIONS(2743), - [anon_sym_delete] = ACTIONS(2743), - [anon_sym_throw] = ACTIONS(2743), - [anon_sym_namespace] = ACTIONS(2743), - [anon_sym_static_assert] = ACTIONS(2743), - [anon_sym_concept] = ACTIONS(2743), - [anon_sym_co_return] = ACTIONS(2743), - [anon_sym_co_yield] = ACTIONS(2743), - [anon_sym_R_DQUOTE] = ACTIONS(2745), - [anon_sym_LR_DQUOTE] = ACTIONS(2745), - [anon_sym_uR_DQUOTE] = ACTIONS(2745), - [anon_sym_UR_DQUOTE] = ACTIONS(2745), - [anon_sym_u8R_DQUOTE] = ACTIONS(2745), - [anon_sym_co_await] = ACTIONS(2743), - [anon_sym_new] = ACTIONS(2743), - [anon_sym_requires] = ACTIONS(2743), - [sym_this] = ACTIONS(2743), - }, - [489] = { + [491] = { [ts_builtin_sym_end] = ACTIONS(2957), [sym_identifier] = ACTIONS(2955), [aux_sym_preproc_include_token1] = ACTIONS(2955), @@ -113554,7 +114139,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2955), [sym_this] = ACTIONS(2955), }, - [490] = { + [492] = { [ts_builtin_sym_end] = ACTIONS(2817), [sym_identifier] = ACTIONS(2815), [aux_sym_preproc_include_token1] = ACTIONS(2815), @@ -113691,418 +114276,692 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2815), [sym_this] = ACTIONS(2815), }, - [491] = { - [sym_identifier] = ACTIONS(2659), - [aux_sym_preproc_include_token1] = ACTIONS(2659), - [aux_sym_preproc_def_token1] = ACTIONS(2659), - [aux_sym_preproc_if_token1] = ACTIONS(2659), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2659), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2659), - [sym_preproc_directive] = ACTIONS(2659), - [anon_sym_LPAREN2] = ACTIONS(2661), - [anon_sym_BANG] = ACTIONS(2661), - [anon_sym_TILDE] = ACTIONS(2661), - [anon_sym_DASH] = ACTIONS(2659), - [anon_sym_PLUS] = ACTIONS(2659), - [anon_sym_STAR] = ACTIONS(2661), - [anon_sym_AMP_AMP] = ACTIONS(2661), - [anon_sym_AMP] = ACTIONS(2659), - [anon_sym_SEMI] = ACTIONS(2661), - [anon_sym___extension__] = ACTIONS(2659), - [anon_sym_typedef] = ACTIONS(2659), - [anon_sym_virtual] = ACTIONS(2659), - [anon_sym_extern] = ACTIONS(2659), - [anon_sym___attribute__] = ACTIONS(2659), - [anon_sym___attribute] = ACTIONS(2659), - [anon_sym_using] = ACTIONS(2659), - [anon_sym_COLON_COLON] = ACTIONS(2661), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2661), - [anon_sym___declspec] = ACTIONS(2659), - [anon_sym___based] = ACTIONS(2659), - [anon_sym___cdecl] = ACTIONS(2659), - [anon_sym___clrcall] = ACTIONS(2659), - [anon_sym___stdcall] = ACTIONS(2659), - [anon_sym___fastcall] = ACTIONS(2659), - [anon_sym___thiscall] = ACTIONS(2659), - [anon_sym___vectorcall] = ACTIONS(2659), - [anon_sym_LBRACE] = ACTIONS(2661), - [anon_sym_RBRACE] = ACTIONS(2661), - [anon_sym_signed] = ACTIONS(2659), - [anon_sym_unsigned] = ACTIONS(2659), - [anon_sym_long] = ACTIONS(2659), - [anon_sym_short] = ACTIONS(2659), - [anon_sym_LBRACK] = ACTIONS(2659), - [anon_sym_static] = ACTIONS(2659), - [anon_sym_register] = ACTIONS(2659), - [anon_sym_inline] = ACTIONS(2659), - [anon_sym___inline] = ACTIONS(2659), - [anon_sym___inline__] = ACTIONS(2659), - [anon_sym___forceinline] = ACTIONS(2659), - [anon_sym_thread_local] = ACTIONS(2659), - [anon_sym___thread] = ACTIONS(2659), - [anon_sym_const] = ACTIONS(2659), - [anon_sym_constexpr] = ACTIONS(2659), - [anon_sym_volatile] = ACTIONS(2659), - [anon_sym_restrict] = ACTIONS(2659), - [anon_sym___restrict__] = ACTIONS(2659), - [anon_sym__Atomic] = ACTIONS(2659), - [anon_sym__Noreturn] = ACTIONS(2659), - [anon_sym_noreturn] = ACTIONS(2659), - [anon_sym__Nonnull] = ACTIONS(2659), - [anon_sym_mutable] = ACTIONS(2659), - [anon_sym_constinit] = ACTIONS(2659), - [anon_sym_consteval] = ACTIONS(2659), - [anon_sym_alignas] = ACTIONS(2659), - [anon_sym__Alignas] = ACTIONS(2659), - [sym_primitive_type] = ACTIONS(2659), - [anon_sym_enum] = ACTIONS(2659), - [anon_sym_class] = ACTIONS(2659), - [anon_sym_struct] = ACTIONS(2659), - [anon_sym_union] = ACTIONS(2659), - [anon_sym_if] = ACTIONS(2659), - [anon_sym_else] = ACTIONS(2659), - [anon_sym_switch] = ACTIONS(2659), - [anon_sym_case] = ACTIONS(2659), - [anon_sym_default] = ACTIONS(2659), - [anon_sym_while] = ACTIONS(2659), - [anon_sym_do] = ACTIONS(2659), - [anon_sym_for] = ACTIONS(2659), - [anon_sym_return] = ACTIONS(2659), - [anon_sym_break] = ACTIONS(2659), - [anon_sym_continue] = ACTIONS(2659), - [anon_sym_goto] = ACTIONS(2659), - [anon_sym___try] = ACTIONS(2659), - [anon_sym___leave] = ACTIONS(2659), - [anon_sym_not] = ACTIONS(2659), - [anon_sym_compl] = ACTIONS(2659), - [anon_sym_DASH_DASH] = ACTIONS(2661), - [anon_sym_PLUS_PLUS] = ACTIONS(2661), - [anon_sym_sizeof] = ACTIONS(2659), - [anon_sym___alignof__] = ACTIONS(2659), - [anon_sym___alignof] = ACTIONS(2659), - [anon_sym__alignof] = ACTIONS(2659), - [anon_sym_alignof] = ACTIONS(2659), - [anon_sym__Alignof] = ACTIONS(2659), - [anon_sym_offsetof] = ACTIONS(2659), - [anon_sym__Generic] = ACTIONS(2659), - [anon_sym_asm] = ACTIONS(2659), - [anon_sym___asm__] = ACTIONS(2659), - [anon_sym___asm] = ACTIONS(2659), - [sym_number_literal] = ACTIONS(2661), - [anon_sym_L_SQUOTE] = ACTIONS(2661), - [anon_sym_u_SQUOTE] = ACTIONS(2661), - [anon_sym_U_SQUOTE] = ACTIONS(2661), - [anon_sym_u8_SQUOTE] = ACTIONS(2661), - [anon_sym_SQUOTE] = ACTIONS(2661), - [anon_sym_L_DQUOTE] = ACTIONS(2661), - [anon_sym_u_DQUOTE] = ACTIONS(2661), - [anon_sym_U_DQUOTE] = ACTIONS(2661), - [anon_sym_u8_DQUOTE] = ACTIONS(2661), - [anon_sym_DQUOTE] = ACTIONS(2661), - [sym_true] = ACTIONS(2659), - [sym_false] = ACTIONS(2659), - [anon_sym_NULL] = ACTIONS(2659), - [anon_sym_nullptr] = ACTIONS(2659), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2659), - [anon_sym_decltype] = ACTIONS(2659), - [anon_sym_explicit] = ACTIONS(2659), - [anon_sym_typename] = ACTIONS(2659), - [anon_sym_template] = ACTIONS(2659), - [anon_sym_operator] = ACTIONS(2659), - [anon_sym_try] = ACTIONS(2659), - [anon_sym_delete] = ACTIONS(2659), - [anon_sym_throw] = ACTIONS(2659), - [anon_sym_namespace] = ACTIONS(2659), - [anon_sym_static_assert] = ACTIONS(2659), - [anon_sym_concept] = ACTIONS(2659), - [anon_sym_co_return] = ACTIONS(2659), - [anon_sym_co_yield] = ACTIONS(2659), - [anon_sym_R_DQUOTE] = ACTIONS(2661), - [anon_sym_LR_DQUOTE] = ACTIONS(2661), - [anon_sym_uR_DQUOTE] = ACTIONS(2661), - [anon_sym_UR_DQUOTE] = ACTIONS(2661), - [anon_sym_u8R_DQUOTE] = ACTIONS(2661), - [anon_sym_co_await] = ACTIONS(2659), - [anon_sym_new] = ACTIONS(2659), - [anon_sym_requires] = ACTIONS(2659), - [sym_this] = ACTIONS(2659), + [493] = { + [ts_builtin_sym_end] = ACTIONS(2961), + [sym_identifier] = ACTIONS(2959), + [aux_sym_preproc_include_token1] = ACTIONS(2959), + [aux_sym_preproc_def_token1] = ACTIONS(2959), + [aux_sym_preproc_if_token1] = ACTIONS(2959), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2959), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2959), + [sym_preproc_directive] = ACTIONS(2959), + [anon_sym_LPAREN2] = ACTIONS(2961), + [anon_sym_BANG] = ACTIONS(2961), + [anon_sym_TILDE] = ACTIONS(2961), + [anon_sym_DASH] = ACTIONS(2959), + [anon_sym_PLUS] = ACTIONS(2959), + [anon_sym_STAR] = ACTIONS(2961), + [anon_sym_AMP_AMP] = ACTIONS(2961), + [anon_sym_AMP] = ACTIONS(2959), + [anon_sym_SEMI] = ACTIONS(2961), + [anon_sym___extension__] = ACTIONS(2959), + [anon_sym_typedef] = ACTIONS(2959), + [anon_sym_virtual] = ACTIONS(2959), + [anon_sym_extern] = ACTIONS(2959), + [anon_sym___attribute__] = ACTIONS(2959), + [anon_sym___attribute] = ACTIONS(2959), + [anon_sym_using] = ACTIONS(2959), + [anon_sym_COLON_COLON] = ACTIONS(2961), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2961), + [anon_sym___declspec] = ACTIONS(2959), + [anon_sym___based] = ACTIONS(2959), + [anon_sym___cdecl] = ACTIONS(2959), + [anon_sym___clrcall] = ACTIONS(2959), + [anon_sym___stdcall] = ACTIONS(2959), + [anon_sym___fastcall] = ACTIONS(2959), + [anon_sym___thiscall] = ACTIONS(2959), + [anon_sym___vectorcall] = ACTIONS(2959), + [anon_sym_LBRACE] = ACTIONS(2961), + [anon_sym_signed] = ACTIONS(2959), + [anon_sym_unsigned] = ACTIONS(2959), + [anon_sym_long] = ACTIONS(2959), + [anon_sym_short] = ACTIONS(2959), + [anon_sym_LBRACK] = ACTIONS(2959), + [anon_sym_static] = ACTIONS(2959), + [anon_sym_register] = ACTIONS(2959), + [anon_sym_inline] = ACTIONS(2959), + [anon_sym___inline] = ACTIONS(2959), + [anon_sym___inline__] = ACTIONS(2959), + [anon_sym___forceinline] = ACTIONS(2959), + [anon_sym_thread_local] = ACTIONS(2959), + [anon_sym___thread] = ACTIONS(2959), + [anon_sym_const] = ACTIONS(2959), + [anon_sym_constexpr] = ACTIONS(2959), + [anon_sym_volatile] = ACTIONS(2959), + [anon_sym_restrict] = ACTIONS(2959), + [anon_sym___restrict__] = ACTIONS(2959), + [anon_sym__Atomic] = ACTIONS(2959), + [anon_sym__Noreturn] = ACTIONS(2959), + [anon_sym_noreturn] = ACTIONS(2959), + [anon_sym__Nonnull] = ACTIONS(2959), + [anon_sym_mutable] = ACTIONS(2959), + [anon_sym_constinit] = ACTIONS(2959), + [anon_sym_consteval] = ACTIONS(2959), + [anon_sym_alignas] = ACTIONS(2959), + [anon_sym__Alignas] = ACTIONS(2959), + [sym_primitive_type] = ACTIONS(2959), + [anon_sym_enum] = ACTIONS(2959), + [anon_sym_class] = ACTIONS(2959), + [anon_sym_struct] = ACTIONS(2959), + [anon_sym_union] = ACTIONS(2959), + [anon_sym_if] = ACTIONS(2959), + [anon_sym_switch] = ACTIONS(2959), + [anon_sym_case] = ACTIONS(2959), + [anon_sym_default] = ACTIONS(2959), + [anon_sym_while] = ACTIONS(2959), + [anon_sym_do] = ACTIONS(2959), + [anon_sym_for] = ACTIONS(2959), + [anon_sym_return] = ACTIONS(2959), + [anon_sym_break] = ACTIONS(2959), + [anon_sym_continue] = ACTIONS(2959), + [anon_sym_goto] = ACTIONS(2959), + [anon_sym_not] = ACTIONS(2959), + [anon_sym_compl] = ACTIONS(2959), + [anon_sym_DASH_DASH] = ACTIONS(2961), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_sizeof] = ACTIONS(2959), + [anon_sym___alignof__] = ACTIONS(2959), + [anon_sym___alignof] = ACTIONS(2959), + [anon_sym__alignof] = ACTIONS(2959), + [anon_sym_alignof] = ACTIONS(2959), + [anon_sym__Alignof] = ACTIONS(2959), + [anon_sym_offsetof] = ACTIONS(2959), + [anon_sym__Generic] = ACTIONS(2959), + [anon_sym_asm] = ACTIONS(2959), + [anon_sym___asm__] = ACTIONS(2959), + [anon_sym___asm] = ACTIONS(2959), + [sym_number_literal] = ACTIONS(2961), + [anon_sym_L_SQUOTE] = ACTIONS(2961), + [anon_sym_u_SQUOTE] = ACTIONS(2961), + [anon_sym_U_SQUOTE] = ACTIONS(2961), + [anon_sym_u8_SQUOTE] = ACTIONS(2961), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_L_DQUOTE] = ACTIONS(2961), + [anon_sym_u_DQUOTE] = ACTIONS(2961), + [anon_sym_U_DQUOTE] = ACTIONS(2961), + [anon_sym_u8_DQUOTE] = ACTIONS(2961), + [anon_sym_DQUOTE] = ACTIONS(2961), + [sym_true] = ACTIONS(2959), + [sym_false] = ACTIONS(2959), + [anon_sym_NULL] = ACTIONS(2959), + [anon_sym_nullptr] = ACTIONS(2959), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2959), + [anon_sym_decltype] = ACTIONS(2959), + [anon_sym_explicit] = ACTIONS(2959), + [anon_sym_typename] = ACTIONS(2959), + [anon_sym_export] = ACTIONS(2959), + [anon_sym_module] = ACTIONS(2959), + [anon_sym_import] = ACTIONS(2959), + [anon_sym_template] = ACTIONS(2959), + [anon_sym_operator] = ACTIONS(2959), + [anon_sym_try] = ACTIONS(2959), + [anon_sym_delete] = ACTIONS(2959), + [anon_sym_throw] = ACTIONS(2959), + [anon_sym_namespace] = ACTIONS(2959), + [anon_sym_static_assert] = ACTIONS(2959), + [anon_sym_concept] = ACTIONS(2959), + [anon_sym_co_return] = ACTIONS(2959), + [anon_sym_co_yield] = ACTIONS(2959), + [anon_sym_R_DQUOTE] = ACTIONS(2961), + [anon_sym_LR_DQUOTE] = ACTIONS(2961), + [anon_sym_uR_DQUOTE] = ACTIONS(2961), + [anon_sym_UR_DQUOTE] = ACTIONS(2961), + [anon_sym_u8R_DQUOTE] = ACTIONS(2961), + [anon_sym_co_await] = ACTIONS(2959), + [anon_sym_new] = ACTIONS(2959), + [anon_sym_requires] = ACTIONS(2959), + [sym_this] = ACTIONS(2959), }, - [492] = { - [ts_builtin_sym_end] = ACTIONS(2797), - [sym_identifier] = ACTIONS(2795), - [aux_sym_preproc_include_token1] = ACTIONS(2795), - [aux_sym_preproc_def_token1] = ACTIONS(2795), - [aux_sym_preproc_if_token1] = ACTIONS(2795), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2795), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2795), - [sym_preproc_directive] = ACTIONS(2795), - [anon_sym_LPAREN2] = ACTIONS(2797), - [anon_sym_BANG] = ACTIONS(2797), - [anon_sym_TILDE] = ACTIONS(2797), - [anon_sym_DASH] = ACTIONS(2795), - [anon_sym_PLUS] = ACTIONS(2795), - [anon_sym_STAR] = ACTIONS(2797), - [anon_sym_AMP_AMP] = ACTIONS(2797), - [anon_sym_AMP] = ACTIONS(2795), - [anon_sym_SEMI] = ACTIONS(2797), - [anon_sym___extension__] = ACTIONS(2795), - [anon_sym_typedef] = ACTIONS(2795), - [anon_sym_virtual] = ACTIONS(2795), - [anon_sym_extern] = ACTIONS(2795), - [anon_sym___attribute__] = ACTIONS(2795), - [anon_sym___attribute] = ACTIONS(2795), - [anon_sym_using] = ACTIONS(2795), - [anon_sym_COLON_COLON] = ACTIONS(2797), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2797), - [anon_sym___declspec] = ACTIONS(2795), - [anon_sym___based] = ACTIONS(2795), - [anon_sym___cdecl] = ACTIONS(2795), - [anon_sym___clrcall] = ACTIONS(2795), - [anon_sym___stdcall] = ACTIONS(2795), - [anon_sym___fastcall] = ACTIONS(2795), - [anon_sym___thiscall] = ACTIONS(2795), - [anon_sym___vectorcall] = ACTIONS(2795), - [anon_sym_LBRACE] = ACTIONS(2797), - [anon_sym_signed] = ACTIONS(2795), - [anon_sym_unsigned] = ACTIONS(2795), - [anon_sym_long] = ACTIONS(2795), - [anon_sym_short] = ACTIONS(2795), - [anon_sym_LBRACK] = ACTIONS(2795), - [anon_sym_static] = ACTIONS(2795), - [anon_sym_register] = ACTIONS(2795), - [anon_sym_inline] = ACTIONS(2795), - [anon_sym___inline] = ACTIONS(2795), - [anon_sym___inline__] = ACTIONS(2795), - [anon_sym___forceinline] = ACTIONS(2795), - [anon_sym_thread_local] = ACTIONS(2795), - [anon_sym___thread] = ACTIONS(2795), - [anon_sym_const] = ACTIONS(2795), - [anon_sym_constexpr] = ACTIONS(2795), - [anon_sym_volatile] = ACTIONS(2795), - [anon_sym_restrict] = ACTIONS(2795), - [anon_sym___restrict__] = ACTIONS(2795), - [anon_sym__Atomic] = ACTIONS(2795), - [anon_sym__Noreturn] = ACTIONS(2795), - [anon_sym_noreturn] = ACTIONS(2795), - [anon_sym__Nonnull] = ACTIONS(2795), - [anon_sym_mutable] = ACTIONS(2795), - [anon_sym_constinit] = ACTIONS(2795), - [anon_sym_consteval] = ACTIONS(2795), - [anon_sym_alignas] = ACTIONS(2795), - [anon_sym__Alignas] = ACTIONS(2795), - [sym_primitive_type] = ACTIONS(2795), - [anon_sym_enum] = ACTIONS(2795), - [anon_sym_class] = ACTIONS(2795), - [anon_sym_struct] = ACTIONS(2795), - [anon_sym_union] = ACTIONS(2795), - [anon_sym_if] = ACTIONS(2795), - [anon_sym_switch] = ACTIONS(2795), - [anon_sym_case] = ACTIONS(2795), - [anon_sym_default] = ACTIONS(2795), - [anon_sym_while] = ACTIONS(2795), - [anon_sym_do] = ACTIONS(2795), - [anon_sym_for] = ACTIONS(2795), - [anon_sym_return] = ACTIONS(2795), - [anon_sym_break] = ACTIONS(2795), - [anon_sym_continue] = ACTIONS(2795), - [anon_sym_goto] = ACTIONS(2795), - [anon_sym_not] = ACTIONS(2795), - [anon_sym_compl] = ACTIONS(2795), - [anon_sym_DASH_DASH] = ACTIONS(2797), - [anon_sym_PLUS_PLUS] = ACTIONS(2797), - [anon_sym_sizeof] = ACTIONS(2795), - [anon_sym___alignof__] = ACTIONS(2795), - [anon_sym___alignof] = ACTIONS(2795), - [anon_sym__alignof] = ACTIONS(2795), - [anon_sym_alignof] = ACTIONS(2795), - [anon_sym__Alignof] = ACTIONS(2795), - [anon_sym_offsetof] = ACTIONS(2795), - [anon_sym__Generic] = ACTIONS(2795), - [anon_sym_asm] = ACTIONS(2795), - [anon_sym___asm__] = ACTIONS(2795), - [anon_sym___asm] = ACTIONS(2795), - [sym_number_literal] = ACTIONS(2797), - [anon_sym_L_SQUOTE] = ACTIONS(2797), - [anon_sym_u_SQUOTE] = ACTIONS(2797), - [anon_sym_U_SQUOTE] = ACTIONS(2797), - [anon_sym_u8_SQUOTE] = ACTIONS(2797), - [anon_sym_SQUOTE] = ACTIONS(2797), - [anon_sym_L_DQUOTE] = ACTIONS(2797), - [anon_sym_u_DQUOTE] = ACTIONS(2797), - [anon_sym_U_DQUOTE] = ACTIONS(2797), - [anon_sym_u8_DQUOTE] = ACTIONS(2797), - [anon_sym_DQUOTE] = ACTIONS(2797), - [sym_true] = ACTIONS(2795), - [sym_false] = ACTIONS(2795), - [anon_sym_NULL] = ACTIONS(2795), - [anon_sym_nullptr] = ACTIONS(2795), + [494] = { + [ts_builtin_sym_end] = ACTIONS(3379), + [sym_identifier] = ACTIONS(3381), + [aux_sym_preproc_include_token1] = ACTIONS(3381), + [aux_sym_preproc_def_token1] = ACTIONS(3381), + [aux_sym_preproc_if_token1] = ACTIONS(3381), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3381), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3381), + [sym_preproc_directive] = ACTIONS(3381), + [anon_sym_LPAREN2] = ACTIONS(3379), + [anon_sym_BANG] = ACTIONS(3379), + [anon_sym_TILDE] = ACTIONS(3379), + [anon_sym_DASH] = ACTIONS(3381), + [anon_sym_PLUS] = ACTIONS(3381), + [anon_sym_STAR] = ACTIONS(3379), + [anon_sym_AMP_AMP] = ACTIONS(3379), + [anon_sym_AMP] = ACTIONS(3381), + [anon_sym_SEMI] = ACTIONS(3379), + [anon_sym___extension__] = ACTIONS(3381), + [anon_sym_typedef] = ACTIONS(3381), + [anon_sym_virtual] = ACTIONS(3381), + [anon_sym_extern] = ACTIONS(3381), + [anon_sym___attribute__] = ACTIONS(3381), + [anon_sym___attribute] = ACTIONS(3381), + [anon_sym_using] = ACTIONS(3381), + [anon_sym_COLON_COLON] = ACTIONS(3379), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3379), + [anon_sym___declspec] = ACTIONS(3381), + [anon_sym___based] = ACTIONS(3381), + [anon_sym___cdecl] = ACTIONS(3381), + [anon_sym___clrcall] = ACTIONS(3381), + [anon_sym___stdcall] = ACTIONS(3381), + [anon_sym___fastcall] = ACTIONS(3381), + [anon_sym___thiscall] = ACTIONS(3381), + [anon_sym___vectorcall] = ACTIONS(3381), + [anon_sym_LBRACE] = ACTIONS(3379), + [anon_sym_signed] = ACTIONS(3381), + [anon_sym_unsigned] = ACTIONS(3381), + [anon_sym_long] = ACTIONS(3381), + [anon_sym_short] = ACTIONS(3381), + [anon_sym_LBRACK] = ACTIONS(3381), + [anon_sym_static] = ACTIONS(3381), + [anon_sym_register] = ACTIONS(3381), + [anon_sym_inline] = ACTIONS(3381), + [anon_sym___inline] = ACTIONS(3381), + [anon_sym___inline__] = ACTIONS(3381), + [anon_sym___forceinline] = ACTIONS(3381), + [anon_sym_thread_local] = ACTIONS(3381), + [anon_sym___thread] = ACTIONS(3381), + [anon_sym_const] = ACTIONS(3381), + [anon_sym_constexpr] = ACTIONS(3381), + [anon_sym_volatile] = ACTIONS(3381), + [anon_sym_restrict] = ACTIONS(3381), + [anon_sym___restrict__] = ACTIONS(3381), + [anon_sym__Atomic] = ACTIONS(3381), + [anon_sym__Noreturn] = ACTIONS(3381), + [anon_sym_noreturn] = ACTIONS(3381), + [anon_sym__Nonnull] = ACTIONS(3381), + [anon_sym_mutable] = ACTIONS(3381), + [anon_sym_constinit] = ACTIONS(3381), + [anon_sym_consteval] = ACTIONS(3381), + [anon_sym_alignas] = ACTIONS(3381), + [anon_sym__Alignas] = ACTIONS(3381), + [sym_primitive_type] = ACTIONS(3381), + [anon_sym_enum] = ACTIONS(3381), + [anon_sym_class] = ACTIONS(3381), + [anon_sym_struct] = ACTIONS(3381), + [anon_sym_union] = ACTIONS(3381), + [anon_sym_if] = ACTIONS(3381), + [anon_sym_switch] = ACTIONS(3381), + [anon_sym_case] = ACTIONS(3381), + [anon_sym_default] = ACTIONS(3381), + [anon_sym_while] = ACTIONS(3381), + [anon_sym_do] = ACTIONS(3381), + [anon_sym_for] = ACTIONS(3381), + [anon_sym_return] = ACTIONS(3381), + [anon_sym_break] = ACTIONS(3381), + [anon_sym_continue] = ACTIONS(3381), + [anon_sym_goto] = ACTIONS(3381), + [anon_sym_not] = ACTIONS(3381), + [anon_sym_compl] = ACTIONS(3381), + [anon_sym_DASH_DASH] = ACTIONS(3379), + [anon_sym_PLUS_PLUS] = ACTIONS(3379), + [anon_sym_sizeof] = ACTIONS(3381), + [anon_sym___alignof__] = ACTIONS(3381), + [anon_sym___alignof] = ACTIONS(3381), + [anon_sym__alignof] = ACTIONS(3381), + [anon_sym_alignof] = ACTIONS(3381), + [anon_sym__Alignof] = ACTIONS(3381), + [anon_sym_offsetof] = ACTIONS(3381), + [anon_sym__Generic] = ACTIONS(3381), + [anon_sym_asm] = ACTIONS(3381), + [anon_sym___asm__] = ACTIONS(3381), + [anon_sym___asm] = ACTIONS(3381), + [sym_number_literal] = ACTIONS(3379), + [anon_sym_L_SQUOTE] = ACTIONS(3379), + [anon_sym_u_SQUOTE] = ACTIONS(3379), + [anon_sym_U_SQUOTE] = ACTIONS(3379), + [anon_sym_u8_SQUOTE] = ACTIONS(3379), + [anon_sym_SQUOTE] = ACTIONS(3379), + [anon_sym_L_DQUOTE] = ACTIONS(3379), + [anon_sym_u_DQUOTE] = ACTIONS(3379), + [anon_sym_U_DQUOTE] = ACTIONS(3379), + [anon_sym_u8_DQUOTE] = ACTIONS(3379), + [anon_sym_DQUOTE] = ACTIONS(3379), + [sym_true] = ACTIONS(3381), + [sym_false] = ACTIONS(3381), + [anon_sym_NULL] = ACTIONS(3381), + [anon_sym_nullptr] = ACTIONS(3381), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2795), - [anon_sym_decltype] = ACTIONS(2795), - [anon_sym_explicit] = ACTIONS(2795), - [anon_sym_typename] = ACTIONS(2795), - [anon_sym_export] = ACTIONS(2795), - [anon_sym_module] = ACTIONS(2795), - [anon_sym_import] = ACTIONS(2795), - [anon_sym_template] = ACTIONS(2795), - [anon_sym_operator] = ACTIONS(2795), - [anon_sym_try] = ACTIONS(2795), - [anon_sym_delete] = ACTIONS(2795), - [anon_sym_throw] = ACTIONS(2795), - [anon_sym_namespace] = ACTIONS(2795), - [anon_sym_static_assert] = ACTIONS(2795), - [anon_sym_concept] = ACTIONS(2795), - [anon_sym_co_return] = ACTIONS(2795), - [anon_sym_co_yield] = ACTIONS(2795), - [anon_sym_R_DQUOTE] = ACTIONS(2797), - [anon_sym_LR_DQUOTE] = ACTIONS(2797), - [anon_sym_uR_DQUOTE] = ACTIONS(2797), - [anon_sym_UR_DQUOTE] = ACTIONS(2797), - [anon_sym_u8R_DQUOTE] = ACTIONS(2797), - [anon_sym_co_await] = ACTIONS(2795), - [anon_sym_new] = ACTIONS(2795), - [anon_sym_requires] = ACTIONS(2795), - [sym_this] = ACTIONS(2795), + [sym_auto] = ACTIONS(3381), + [anon_sym_decltype] = ACTIONS(3381), + [anon_sym_explicit] = ACTIONS(3381), + [anon_sym_typename] = ACTIONS(3381), + [anon_sym_export] = ACTIONS(3381), + [anon_sym_module] = ACTIONS(3381), + [anon_sym_import] = ACTIONS(3381), + [anon_sym_template] = ACTIONS(3381), + [anon_sym_operator] = ACTIONS(3381), + [anon_sym_try] = ACTIONS(3381), + [anon_sym_delete] = ACTIONS(3381), + [anon_sym_throw] = ACTIONS(3381), + [anon_sym_namespace] = ACTIONS(3381), + [anon_sym_static_assert] = ACTIONS(3381), + [anon_sym_concept] = ACTIONS(3381), + [anon_sym_co_return] = ACTIONS(3381), + [anon_sym_co_yield] = ACTIONS(3381), + [anon_sym_R_DQUOTE] = ACTIONS(3379), + [anon_sym_LR_DQUOTE] = ACTIONS(3379), + [anon_sym_uR_DQUOTE] = ACTIONS(3379), + [anon_sym_UR_DQUOTE] = ACTIONS(3379), + [anon_sym_u8R_DQUOTE] = ACTIONS(3379), + [anon_sym_co_await] = ACTIONS(3381), + [anon_sym_new] = ACTIONS(3381), + [anon_sym_requires] = ACTIONS(3381), + [sym_this] = ACTIONS(3381), }, - [493] = { - [ts_builtin_sym_end] = ACTIONS(2801), - [sym_identifier] = ACTIONS(2799), - [aux_sym_preproc_include_token1] = ACTIONS(2799), - [aux_sym_preproc_def_token1] = ACTIONS(2799), - [aux_sym_preproc_if_token1] = ACTIONS(2799), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2799), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2799), - [sym_preproc_directive] = ACTIONS(2799), - [anon_sym_LPAREN2] = ACTIONS(2801), - [anon_sym_BANG] = ACTIONS(2801), - [anon_sym_TILDE] = ACTIONS(2801), - [anon_sym_DASH] = ACTIONS(2799), - [anon_sym_PLUS] = ACTIONS(2799), - [anon_sym_STAR] = ACTIONS(2801), - [anon_sym_AMP_AMP] = ACTIONS(2801), - [anon_sym_AMP] = ACTIONS(2799), - [anon_sym_SEMI] = ACTIONS(2801), - [anon_sym___extension__] = ACTIONS(2799), - [anon_sym_typedef] = ACTIONS(2799), - [anon_sym_virtual] = ACTIONS(2799), - [anon_sym_extern] = ACTIONS(2799), - [anon_sym___attribute__] = ACTIONS(2799), - [anon_sym___attribute] = ACTIONS(2799), - [anon_sym_using] = ACTIONS(2799), - [anon_sym_COLON_COLON] = ACTIONS(2801), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2801), - [anon_sym___declspec] = ACTIONS(2799), - [anon_sym___based] = ACTIONS(2799), - [anon_sym___cdecl] = ACTIONS(2799), - [anon_sym___clrcall] = ACTIONS(2799), - [anon_sym___stdcall] = ACTIONS(2799), - [anon_sym___fastcall] = ACTIONS(2799), - [anon_sym___thiscall] = ACTIONS(2799), - [anon_sym___vectorcall] = ACTIONS(2799), - [anon_sym_LBRACE] = ACTIONS(2801), - [anon_sym_signed] = ACTIONS(2799), - [anon_sym_unsigned] = ACTIONS(2799), - [anon_sym_long] = ACTIONS(2799), - [anon_sym_short] = ACTIONS(2799), - [anon_sym_LBRACK] = ACTIONS(2799), - [anon_sym_static] = ACTIONS(2799), - [anon_sym_register] = ACTIONS(2799), - [anon_sym_inline] = ACTIONS(2799), - [anon_sym___inline] = ACTIONS(2799), - [anon_sym___inline__] = ACTIONS(2799), - [anon_sym___forceinline] = ACTIONS(2799), - [anon_sym_thread_local] = ACTIONS(2799), - [anon_sym___thread] = ACTIONS(2799), - [anon_sym_const] = ACTIONS(2799), - [anon_sym_constexpr] = ACTIONS(2799), - [anon_sym_volatile] = ACTIONS(2799), - [anon_sym_restrict] = ACTIONS(2799), - [anon_sym___restrict__] = ACTIONS(2799), - [anon_sym__Atomic] = ACTIONS(2799), - [anon_sym__Noreturn] = ACTIONS(2799), - [anon_sym_noreturn] = ACTIONS(2799), - [anon_sym__Nonnull] = ACTIONS(2799), - [anon_sym_mutable] = ACTIONS(2799), - [anon_sym_constinit] = ACTIONS(2799), - [anon_sym_consteval] = ACTIONS(2799), - [anon_sym_alignas] = ACTIONS(2799), - [anon_sym__Alignas] = ACTIONS(2799), - [sym_primitive_type] = ACTIONS(2799), - [anon_sym_enum] = ACTIONS(2799), - [anon_sym_class] = ACTIONS(2799), - [anon_sym_struct] = ACTIONS(2799), - [anon_sym_union] = ACTIONS(2799), - [anon_sym_if] = ACTIONS(2799), - [anon_sym_switch] = ACTIONS(2799), - [anon_sym_case] = ACTIONS(2799), - [anon_sym_default] = ACTIONS(2799), - [anon_sym_while] = ACTIONS(2799), - [anon_sym_do] = ACTIONS(2799), - [anon_sym_for] = ACTIONS(2799), - [anon_sym_return] = ACTIONS(2799), - [anon_sym_break] = ACTIONS(2799), - [anon_sym_continue] = ACTIONS(2799), - [anon_sym_goto] = ACTIONS(2799), - [anon_sym_not] = ACTIONS(2799), - [anon_sym_compl] = ACTIONS(2799), - [anon_sym_DASH_DASH] = ACTIONS(2801), - [anon_sym_PLUS_PLUS] = ACTIONS(2801), - [anon_sym_sizeof] = ACTIONS(2799), - [anon_sym___alignof__] = ACTIONS(2799), - [anon_sym___alignof] = ACTIONS(2799), - [anon_sym__alignof] = ACTIONS(2799), - [anon_sym_alignof] = ACTIONS(2799), - [anon_sym__Alignof] = ACTIONS(2799), - [anon_sym_offsetof] = ACTIONS(2799), - [anon_sym__Generic] = ACTIONS(2799), - [anon_sym_asm] = ACTIONS(2799), - [anon_sym___asm__] = ACTIONS(2799), - [anon_sym___asm] = ACTIONS(2799), - [sym_number_literal] = ACTIONS(2801), - [anon_sym_L_SQUOTE] = ACTIONS(2801), - [anon_sym_u_SQUOTE] = ACTIONS(2801), - [anon_sym_U_SQUOTE] = ACTIONS(2801), - [anon_sym_u8_SQUOTE] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2801), - [anon_sym_L_DQUOTE] = ACTIONS(2801), - [anon_sym_u_DQUOTE] = ACTIONS(2801), - [anon_sym_U_DQUOTE] = ACTIONS(2801), - [anon_sym_u8_DQUOTE] = ACTIONS(2801), - [anon_sym_DQUOTE] = ACTIONS(2801), - [sym_true] = ACTIONS(2799), - [sym_false] = ACTIONS(2799), - [anon_sym_NULL] = ACTIONS(2799), - [anon_sym_nullptr] = ACTIONS(2799), + [495] = { + [ts_builtin_sym_end] = ACTIONS(2897), + [sym_identifier] = ACTIONS(2895), + [aux_sym_preproc_include_token1] = ACTIONS(2895), + [aux_sym_preproc_def_token1] = ACTIONS(2895), + [aux_sym_preproc_if_token1] = ACTIONS(2895), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2895), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2895), + [sym_preproc_directive] = ACTIONS(2895), + [anon_sym_LPAREN2] = ACTIONS(2897), + [anon_sym_BANG] = ACTIONS(2897), + [anon_sym_TILDE] = ACTIONS(2897), + [anon_sym_DASH] = ACTIONS(2895), + [anon_sym_PLUS] = ACTIONS(2895), + [anon_sym_STAR] = ACTIONS(2897), + [anon_sym_AMP_AMP] = ACTIONS(2897), + [anon_sym_AMP] = ACTIONS(2895), + [anon_sym_SEMI] = ACTIONS(2897), + [anon_sym___extension__] = ACTIONS(2895), + [anon_sym_typedef] = ACTIONS(2895), + [anon_sym_virtual] = ACTIONS(2895), + [anon_sym_extern] = ACTIONS(2895), + [anon_sym___attribute__] = ACTIONS(2895), + [anon_sym___attribute] = ACTIONS(2895), + [anon_sym_using] = ACTIONS(2895), + [anon_sym_COLON_COLON] = ACTIONS(2897), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2897), + [anon_sym___declspec] = ACTIONS(2895), + [anon_sym___based] = ACTIONS(2895), + [anon_sym___cdecl] = ACTIONS(2895), + [anon_sym___clrcall] = ACTIONS(2895), + [anon_sym___stdcall] = ACTIONS(2895), + [anon_sym___fastcall] = ACTIONS(2895), + [anon_sym___thiscall] = ACTIONS(2895), + [anon_sym___vectorcall] = ACTIONS(2895), + [anon_sym_LBRACE] = ACTIONS(2897), + [anon_sym_signed] = ACTIONS(2895), + [anon_sym_unsigned] = ACTIONS(2895), + [anon_sym_long] = ACTIONS(2895), + [anon_sym_short] = ACTIONS(2895), + [anon_sym_LBRACK] = ACTIONS(2895), + [anon_sym_static] = ACTIONS(2895), + [anon_sym_register] = ACTIONS(2895), + [anon_sym_inline] = ACTIONS(2895), + [anon_sym___inline] = ACTIONS(2895), + [anon_sym___inline__] = ACTIONS(2895), + [anon_sym___forceinline] = ACTIONS(2895), + [anon_sym_thread_local] = ACTIONS(2895), + [anon_sym___thread] = ACTIONS(2895), + [anon_sym_const] = ACTIONS(2895), + [anon_sym_constexpr] = ACTIONS(2895), + [anon_sym_volatile] = ACTIONS(2895), + [anon_sym_restrict] = ACTIONS(2895), + [anon_sym___restrict__] = ACTIONS(2895), + [anon_sym__Atomic] = ACTIONS(2895), + [anon_sym__Noreturn] = ACTIONS(2895), + [anon_sym_noreturn] = ACTIONS(2895), + [anon_sym__Nonnull] = ACTIONS(2895), + [anon_sym_mutable] = ACTIONS(2895), + [anon_sym_constinit] = ACTIONS(2895), + [anon_sym_consteval] = ACTIONS(2895), + [anon_sym_alignas] = ACTIONS(2895), + [anon_sym__Alignas] = ACTIONS(2895), + [sym_primitive_type] = ACTIONS(2895), + [anon_sym_enum] = ACTIONS(2895), + [anon_sym_class] = ACTIONS(2895), + [anon_sym_struct] = ACTIONS(2895), + [anon_sym_union] = ACTIONS(2895), + [anon_sym_if] = ACTIONS(2895), + [anon_sym_switch] = ACTIONS(2895), + [anon_sym_case] = ACTIONS(2895), + [anon_sym_default] = ACTIONS(2895), + [anon_sym_while] = ACTIONS(2895), + [anon_sym_do] = ACTIONS(2895), + [anon_sym_for] = ACTIONS(2895), + [anon_sym_return] = ACTIONS(2895), + [anon_sym_break] = ACTIONS(2895), + [anon_sym_continue] = ACTIONS(2895), + [anon_sym_goto] = ACTIONS(2895), + [anon_sym_not] = ACTIONS(2895), + [anon_sym_compl] = ACTIONS(2895), + [anon_sym_DASH_DASH] = ACTIONS(2897), + [anon_sym_PLUS_PLUS] = ACTIONS(2897), + [anon_sym_sizeof] = ACTIONS(2895), + [anon_sym___alignof__] = ACTIONS(2895), + [anon_sym___alignof] = ACTIONS(2895), + [anon_sym__alignof] = ACTIONS(2895), + [anon_sym_alignof] = ACTIONS(2895), + [anon_sym__Alignof] = ACTIONS(2895), + [anon_sym_offsetof] = ACTIONS(2895), + [anon_sym__Generic] = ACTIONS(2895), + [anon_sym_asm] = ACTIONS(2895), + [anon_sym___asm__] = ACTIONS(2895), + [anon_sym___asm] = ACTIONS(2895), + [sym_number_literal] = ACTIONS(2897), + [anon_sym_L_SQUOTE] = ACTIONS(2897), + [anon_sym_u_SQUOTE] = ACTIONS(2897), + [anon_sym_U_SQUOTE] = ACTIONS(2897), + [anon_sym_u8_SQUOTE] = ACTIONS(2897), + [anon_sym_SQUOTE] = ACTIONS(2897), + [anon_sym_L_DQUOTE] = ACTIONS(2897), + [anon_sym_u_DQUOTE] = ACTIONS(2897), + [anon_sym_U_DQUOTE] = ACTIONS(2897), + [anon_sym_u8_DQUOTE] = ACTIONS(2897), + [anon_sym_DQUOTE] = ACTIONS(2897), + [sym_true] = ACTIONS(2895), + [sym_false] = ACTIONS(2895), + [anon_sym_NULL] = ACTIONS(2895), + [anon_sym_nullptr] = ACTIONS(2895), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2799), - [anon_sym_decltype] = ACTIONS(2799), - [anon_sym_explicit] = ACTIONS(2799), - [anon_sym_typename] = ACTIONS(2799), - [anon_sym_export] = ACTIONS(2799), - [anon_sym_module] = ACTIONS(2799), - [anon_sym_import] = ACTIONS(2799), - [anon_sym_template] = ACTIONS(2799), - [anon_sym_operator] = ACTIONS(2799), - [anon_sym_try] = ACTIONS(2799), - [anon_sym_delete] = ACTIONS(2799), - [anon_sym_throw] = ACTIONS(2799), - [anon_sym_namespace] = ACTIONS(2799), - [anon_sym_static_assert] = ACTIONS(2799), - [anon_sym_concept] = ACTIONS(2799), - [anon_sym_co_return] = ACTIONS(2799), - [anon_sym_co_yield] = ACTIONS(2799), - [anon_sym_R_DQUOTE] = ACTIONS(2801), - [anon_sym_LR_DQUOTE] = ACTIONS(2801), - [anon_sym_uR_DQUOTE] = ACTIONS(2801), - [anon_sym_UR_DQUOTE] = ACTIONS(2801), - [anon_sym_u8R_DQUOTE] = ACTIONS(2801), - [anon_sym_co_await] = ACTIONS(2799), - [anon_sym_new] = ACTIONS(2799), - [anon_sym_requires] = ACTIONS(2799), - [sym_this] = ACTIONS(2799), + [sym_auto] = ACTIONS(2895), + [anon_sym_decltype] = ACTIONS(2895), + [anon_sym_explicit] = ACTIONS(2895), + [anon_sym_typename] = ACTIONS(2895), + [anon_sym_export] = ACTIONS(2895), + [anon_sym_module] = ACTIONS(2895), + [anon_sym_import] = ACTIONS(2895), + [anon_sym_template] = ACTIONS(2895), + [anon_sym_operator] = ACTIONS(2895), + [anon_sym_try] = ACTIONS(2895), + [anon_sym_delete] = ACTIONS(2895), + [anon_sym_throw] = ACTIONS(2895), + [anon_sym_namespace] = ACTIONS(2895), + [anon_sym_static_assert] = ACTIONS(2895), + [anon_sym_concept] = ACTIONS(2895), + [anon_sym_co_return] = ACTIONS(2895), + [anon_sym_co_yield] = ACTIONS(2895), + [anon_sym_R_DQUOTE] = ACTIONS(2897), + [anon_sym_LR_DQUOTE] = ACTIONS(2897), + [anon_sym_uR_DQUOTE] = ACTIONS(2897), + [anon_sym_UR_DQUOTE] = ACTIONS(2897), + [anon_sym_u8R_DQUOTE] = ACTIONS(2897), + [anon_sym_co_await] = ACTIONS(2895), + [anon_sym_new] = ACTIONS(2895), + [anon_sym_requires] = ACTIONS(2895), + [sym_this] = ACTIONS(2895), }, - [494] = { + [496] = { + [ts_builtin_sym_end] = ACTIONS(2965), + [sym_identifier] = ACTIONS(2963), + [aux_sym_preproc_include_token1] = ACTIONS(2963), + [aux_sym_preproc_def_token1] = ACTIONS(2963), + [aux_sym_preproc_if_token1] = ACTIONS(2963), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2963), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2963), + [sym_preproc_directive] = ACTIONS(2963), + [anon_sym_LPAREN2] = ACTIONS(2965), + [anon_sym_BANG] = ACTIONS(2965), + [anon_sym_TILDE] = ACTIONS(2965), + [anon_sym_DASH] = ACTIONS(2963), + [anon_sym_PLUS] = ACTIONS(2963), + [anon_sym_STAR] = ACTIONS(2965), + [anon_sym_AMP_AMP] = ACTIONS(2965), + [anon_sym_AMP] = ACTIONS(2963), + [anon_sym_SEMI] = ACTIONS(2965), + [anon_sym___extension__] = ACTIONS(2963), + [anon_sym_typedef] = ACTIONS(2963), + [anon_sym_virtual] = ACTIONS(2963), + [anon_sym_extern] = ACTIONS(2963), + [anon_sym___attribute__] = ACTIONS(2963), + [anon_sym___attribute] = ACTIONS(2963), + [anon_sym_using] = ACTIONS(2963), + [anon_sym_COLON_COLON] = ACTIONS(2965), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2965), + [anon_sym___declspec] = ACTIONS(2963), + [anon_sym___based] = ACTIONS(2963), + [anon_sym___cdecl] = ACTIONS(2963), + [anon_sym___clrcall] = ACTIONS(2963), + [anon_sym___stdcall] = ACTIONS(2963), + [anon_sym___fastcall] = ACTIONS(2963), + [anon_sym___thiscall] = ACTIONS(2963), + [anon_sym___vectorcall] = ACTIONS(2963), + [anon_sym_LBRACE] = ACTIONS(2965), + [anon_sym_signed] = ACTIONS(2963), + [anon_sym_unsigned] = ACTIONS(2963), + [anon_sym_long] = ACTIONS(2963), + [anon_sym_short] = ACTIONS(2963), + [anon_sym_LBRACK] = ACTIONS(2963), + [anon_sym_static] = ACTIONS(2963), + [anon_sym_register] = ACTIONS(2963), + [anon_sym_inline] = ACTIONS(2963), + [anon_sym___inline] = ACTIONS(2963), + [anon_sym___inline__] = ACTIONS(2963), + [anon_sym___forceinline] = ACTIONS(2963), + [anon_sym_thread_local] = ACTIONS(2963), + [anon_sym___thread] = ACTIONS(2963), + [anon_sym_const] = ACTIONS(2963), + [anon_sym_constexpr] = ACTIONS(2963), + [anon_sym_volatile] = ACTIONS(2963), + [anon_sym_restrict] = ACTIONS(2963), + [anon_sym___restrict__] = ACTIONS(2963), + [anon_sym__Atomic] = ACTIONS(2963), + [anon_sym__Noreturn] = ACTIONS(2963), + [anon_sym_noreturn] = ACTIONS(2963), + [anon_sym__Nonnull] = ACTIONS(2963), + [anon_sym_mutable] = ACTIONS(2963), + [anon_sym_constinit] = ACTIONS(2963), + [anon_sym_consteval] = ACTIONS(2963), + [anon_sym_alignas] = ACTIONS(2963), + [anon_sym__Alignas] = ACTIONS(2963), + [sym_primitive_type] = ACTIONS(2963), + [anon_sym_enum] = ACTIONS(2963), + [anon_sym_class] = ACTIONS(2963), + [anon_sym_struct] = ACTIONS(2963), + [anon_sym_union] = ACTIONS(2963), + [anon_sym_if] = ACTIONS(2963), + [anon_sym_switch] = ACTIONS(2963), + [anon_sym_case] = ACTIONS(2963), + [anon_sym_default] = ACTIONS(2963), + [anon_sym_while] = ACTIONS(2963), + [anon_sym_do] = ACTIONS(2963), + [anon_sym_for] = ACTIONS(2963), + [anon_sym_return] = ACTIONS(2963), + [anon_sym_break] = ACTIONS(2963), + [anon_sym_continue] = ACTIONS(2963), + [anon_sym_goto] = ACTIONS(2963), + [anon_sym_not] = ACTIONS(2963), + [anon_sym_compl] = ACTIONS(2963), + [anon_sym_DASH_DASH] = ACTIONS(2965), + [anon_sym_PLUS_PLUS] = ACTIONS(2965), + [anon_sym_sizeof] = ACTIONS(2963), + [anon_sym___alignof__] = ACTIONS(2963), + [anon_sym___alignof] = ACTIONS(2963), + [anon_sym__alignof] = ACTIONS(2963), + [anon_sym_alignof] = ACTIONS(2963), + [anon_sym__Alignof] = ACTIONS(2963), + [anon_sym_offsetof] = ACTIONS(2963), + [anon_sym__Generic] = ACTIONS(2963), + [anon_sym_asm] = ACTIONS(2963), + [anon_sym___asm__] = ACTIONS(2963), + [anon_sym___asm] = ACTIONS(2963), + [sym_number_literal] = ACTIONS(2965), + [anon_sym_L_SQUOTE] = ACTIONS(2965), + [anon_sym_u_SQUOTE] = ACTIONS(2965), + [anon_sym_U_SQUOTE] = ACTIONS(2965), + [anon_sym_u8_SQUOTE] = ACTIONS(2965), + [anon_sym_SQUOTE] = ACTIONS(2965), + [anon_sym_L_DQUOTE] = ACTIONS(2965), + [anon_sym_u_DQUOTE] = ACTIONS(2965), + [anon_sym_U_DQUOTE] = ACTIONS(2965), + [anon_sym_u8_DQUOTE] = ACTIONS(2965), + [anon_sym_DQUOTE] = ACTIONS(2965), + [sym_true] = ACTIONS(2963), + [sym_false] = ACTIONS(2963), + [anon_sym_NULL] = ACTIONS(2963), + [anon_sym_nullptr] = ACTIONS(2963), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2963), + [anon_sym_decltype] = ACTIONS(2963), + [anon_sym_explicit] = ACTIONS(2963), + [anon_sym_typename] = ACTIONS(2963), + [anon_sym_export] = ACTIONS(2963), + [anon_sym_module] = ACTIONS(2963), + [anon_sym_import] = ACTIONS(2963), + [anon_sym_template] = ACTIONS(2963), + [anon_sym_operator] = ACTIONS(2963), + [anon_sym_try] = ACTIONS(2963), + [anon_sym_delete] = ACTIONS(2963), + [anon_sym_throw] = ACTIONS(2963), + [anon_sym_namespace] = ACTIONS(2963), + [anon_sym_static_assert] = ACTIONS(2963), + [anon_sym_concept] = ACTIONS(2963), + [anon_sym_co_return] = ACTIONS(2963), + [anon_sym_co_yield] = ACTIONS(2963), + [anon_sym_R_DQUOTE] = ACTIONS(2965), + [anon_sym_LR_DQUOTE] = ACTIONS(2965), + [anon_sym_uR_DQUOTE] = ACTIONS(2965), + [anon_sym_UR_DQUOTE] = ACTIONS(2965), + [anon_sym_u8R_DQUOTE] = ACTIONS(2965), + [anon_sym_co_await] = ACTIONS(2963), + [anon_sym_new] = ACTIONS(2963), + [anon_sym_requires] = ACTIONS(2963), + [sym_this] = ACTIONS(2963), + }, + [497] = { + [ts_builtin_sym_end] = ACTIONS(2857), + [sym_identifier] = ACTIONS(2855), + [aux_sym_preproc_include_token1] = ACTIONS(2855), + [aux_sym_preproc_def_token1] = ACTIONS(2855), + [aux_sym_preproc_if_token1] = ACTIONS(2855), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2855), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2855), + [sym_preproc_directive] = ACTIONS(2855), + [anon_sym_LPAREN2] = ACTIONS(2857), + [anon_sym_BANG] = ACTIONS(2857), + [anon_sym_TILDE] = ACTIONS(2857), + [anon_sym_DASH] = ACTIONS(2855), + [anon_sym_PLUS] = ACTIONS(2855), + [anon_sym_STAR] = ACTIONS(2857), + [anon_sym_AMP_AMP] = ACTIONS(2857), + [anon_sym_AMP] = ACTIONS(2855), + [anon_sym_SEMI] = ACTIONS(2857), + [anon_sym___extension__] = ACTIONS(2855), + [anon_sym_typedef] = ACTIONS(2855), + [anon_sym_virtual] = ACTIONS(2855), + [anon_sym_extern] = ACTIONS(2855), + [anon_sym___attribute__] = ACTIONS(2855), + [anon_sym___attribute] = ACTIONS(2855), + [anon_sym_using] = ACTIONS(2855), + [anon_sym_COLON_COLON] = ACTIONS(2857), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2857), + [anon_sym___declspec] = ACTIONS(2855), + [anon_sym___based] = ACTIONS(2855), + [anon_sym___cdecl] = ACTIONS(2855), + [anon_sym___clrcall] = ACTIONS(2855), + [anon_sym___stdcall] = ACTIONS(2855), + [anon_sym___fastcall] = ACTIONS(2855), + [anon_sym___thiscall] = ACTIONS(2855), + [anon_sym___vectorcall] = ACTIONS(2855), + [anon_sym_LBRACE] = ACTIONS(2857), + [anon_sym_signed] = ACTIONS(2855), + [anon_sym_unsigned] = ACTIONS(2855), + [anon_sym_long] = ACTIONS(2855), + [anon_sym_short] = ACTIONS(2855), + [anon_sym_LBRACK] = ACTIONS(2855), + [anon_sym_static] = ACTIONS(2855), + [anon_sym_register] = ACTIONS(2855), + [anon_sym_inline] = ACTIONS(2855), + [anon_sym___inline] = ACTIONS(2855), + [anon_sym___inline__] = ACTIONS(2855), + [anon_sym___forceinline] = ACTIONS(2855), + [anon_sym_thread_local] = ACTIONS(2855), + [anon_sym___thread] = ACTIONS(2855), + [anon_sym_const] = ACTIONS(2855), + [anon_sym_constexpr] = ACTIONS(2855), + [anon_sym_volatile] = ACTIONS(2855), + [anon_sym_restrict] = ACTIONS(2855), + [anon_sym___restrict__] = ACTIONS(2855), + [anon_sym__Atomic] = ACTIONS(2855), + [anon_sym__Noreturn] = ACTIONS(2855), + [anon_sym_noreturn] = ACTIONS(2855), + [anon_sym__Nonnull] = ACTIONS(2855), + [anon_sym_mutable] = ACTIONS(2855), + [anon_sym_constinit] = ACTIONS(2855), + [anon_sym_consteval] = ACTIONS(2855), + [anon_sym_alignas] = ACTIONS(2855), + [anon_sym__Alignas] = ACTIONS(2855), + [sym_primitive_type] = ACTIONS(2855), + [anon_sym_enum] = ACTIONS(2855), + [anon_sym_class] = ACTIONS(2855), + [anon_sym_struct] = ACTIONS(2855), + [anon_sym_union] = ACTIONS(2855), + [anon_sym_if] = ACTIONS(2855), + [anon_sym_switch] = ACTIONS(2855), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_default] = ACTIONS(2855), + [anon_sym_while] = ACTIONS(2855), + [anon_sym_do] = ACTIONS(2855), + [anon_sym_for] = ACTIONS(2855), + [anon_sym_return] = ACTIONS(2855), + [anon_sym_break] = ACTIONS(2855), + [anon_sym_continue] = ACTIONS(2855), + [anon_sym_goto] = ACTIONS(2855), + [anon_sym_not] = ACTIONS(2855), + [anon_sym_compl] = ACTIONS(2855), + [anon_sym_DASH_DASH] = ACTIONS(2857), + [anon_sym_PLUS_PLUS] = ACTIONS(2857), + [anon_sym_sizeof] = ACTIONS(2855), + [anon_sym___alignof__] = ACTIONS(2855), + [anon_sym___alignof] = ACTIONS(2855), + [anon_sym__alignof] = ACTIONS(2855), + [anon_sym_alignof] = ACTIONS(2855), + [anon_sym__Alignof] = ACTIONS(2855), + [anon_sym_offsetof] = ACTIONS(2855), + [anon_sym__Generic] = ACTIONS(2855), + [anon_sym_asm] = ACTIONS(2855), + [anon_sym___asm__] = ACTIONS(2855), + [anon_sym___asm] = ACTIONS(2855), + [sym_number_literal] = ACTIONS(2857), + [anon_sym_L_SQUOTE] = ACTIONS(2857), + [anon_sym_u_SQUOTE] = ACTIONS(2857), + [anon_sym_U_SQUOTE] = ACTIONS(2857), + [anon_sym_u8_SQUOTE] = ACTIONS(2857), + [anon_sym_SQUOTE] = ACTIONS(2857), + [anon_sym_L_DQUOTE] = ACTIONS(2857), + [anon_sym_u_DQUOTE] = ACTIONS(2857), + [anon_sym_U_DQUOTE] = ACTIONS(2857), + [anon_sym_u8_DQUOTE] = ACTIONS(2857), + [anon_sym_DQUOTE] = ACTIONS(2857), + [sym_true] = ACTIONS(2855), + [sym_false] = ACTIONS(2855), + [anon_sym_NULL] = ACTIONS(2855), + [anon_sym_nullptr] = ACTIONS(2855), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2855), + [anon_sym_decltype] = ACTIONS(2855), + [anon_sym_explicit] = ACTIONS(2855), + [anon_sym_typename] = ACTIONS(2855), + [anon_sym_export] = ACTIONS(2855), + [anon_sym_module] = ACTIONS(2855), + [anon_sym_import] = ACTIONS(2855), + [anon_sym_template] = ACTIONS(2855), + [anon_sym_operator] = ACTIONS(2855), + [anon_sym_try] = ACTIONS(2855), + [anon_sym_delete] = ACTIONS(2855), + [anon_sym_throw] = ACTIONS(2855), + [anon_sym_namespace] = ACTIONS(2855), + [anon_sym_static_assert] = ACTIONS(2855), + [anon_sym_concept] = ACTIONS(2855), + [anon_sym_co_return] = ACTIONS(2855), + [anon_sym_co_yield] = ACTIONS(2855), + [anon_sym_R_DQUOTE] = ACTIONS(2857), + [anon_sym_LR_DQUOTE] = ACTIONS(2857), + [anon_sym_uR_DQUOTE] = ACTIONS(2857), + [anon_sym_UR_DQUOTE] = ACTIONS(2857), + [anon_sym_u8R_DQUOTE] = ACTIONS(2857), + [anon_sym_co_await] = ACTIONS(2855), + [anon_sym_new] = ACTIONS(2855), + [anon_sym_requires] = ACTIONS(2855), + [sym_this] = ACTIONS(2855), + }, + [498] = { [ts_builtin_sym_end] = ACTIONS(2841), [sym_identifier] = ACTIONS(2839), [aux_sym_preproc_include_token1] = ACTIONS(2839), @@ -114239,453 +115098,864 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2839), [sym_this] = ACTIONS(2839), }, - [495] = { - [ts_builtin_sym_end] = ACTIONS(3021), - [sym_identifier] = ACTIONS(3019), - [aux_sym_preproc_include_token1] = ACTIONS(3019), - [aux_sym_preproc_def_token1] = ACTIONS(3019), - [aux_sym_preproc_if_token1] = ACTIONS(3019), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3019), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3019), - [sym_preproc_directive] = ACTIONS(3019), - [anon_sym_LPAREN2] = ACTIONS(3021), - [anon_sym_BANG] = ACTIONS(3021), - [anon_sym_TILDE] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3019), - [anon_sym_PLUS] = ACTIONS(3019), - [anon_sym_STAR] = ACTIONS(3021), - [anon_sym_AMP_AMP] = ACTIONS(3021), - [anon_sym_AMP] = ACTIONS(3019), - [anon_sym_SEMI] = ACTIONS(3021), - [anon_sym___extension__] = ACTIONS(3019), - [anon_sym_typedef] = ACTIONS(3019), - [anon_sym_virtual] = ACTIONS(3019), - [anon_sym_extern] = ACTIONS(3019), - [anon_sym___attribute__] = ACTIONS(3019), - [anon_sym___attribute] = ACTIONS(3019), - [anon_sym_using] = ACTIONS(3019), - [anon_sym_COLON_COLON] = ACTIONS(3021), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3021), - [anon_sym___declspec] = ACTIONS(3019), - [anon_sym___based] = ACTIONS(3019), - [anon_sym___cdecl] = ACTIONS(3019), - [anon_sym___clrcall] = ACTIONS(3019), - [anon_sym___stdcall] = ACTIONS(3019), - [anon_sym___fastcall] = ACTIONS(3019), - [anon_sym___thiscall] = ACTIONS(3019), - [anon_sym___vectorcall] = ACTIONS(3019), - [anon_sym_LBRACE] = ACTIONS(3021), - [anon_sym_signed] = ACTIONS(3019), - [anon_sym_unsigned] = ACTIONS(3019), - [anon_sym_long] = ACTIONS(3019), - [anon_sym_short] = ACTIONS(3019), - [anon_sym_LBRACK] = ACTIONS(3019), - [anon_sym_static] = ACTIONS(3019), - [anon_sym_register] = ACTIONS(3019), - [anon_sym_inline] = ACTIONS(3019), - [anon_sym___inline] = ACTIONS(3019), - [anon_sym___inline__] = ACTIONS(3019), - [anon_sym___forceinline] = ACTIONS(3019), - [anon_sym_thread_local] = ACTIONS(3019), - [anon_sym___thread] = ACTIONS(3019), - [anon_sym_const] = ACTIONS(3019), - [anon_sym_constexpr] = ACTIONS(3019), - [anon_sym_volatile] = ACTIONS(3019), - [anon_sym_restrict] = ACTIONS(3019), - [anon_sym___restrict__] = ACTIONS(3019), - [anon_sym__Atomic] = ACTIONS(3019), - [anon_sym__Noreturn] = ACTIONS(3019), - [anon_sym_noreturn] = ACTIONS(3019), - [anon_sym__Nonnull] = ACTIONS(3019), - [anon_sym_mutable] = ACTIONS(3019), - [anon_sym_constinit] = ACTIONS(3019), - [anon_sym_consteval] = ACTIONS(3019), - [anon_sym_alignas] = ACTIONS(3019), - [anon_sym__Alignas] = ACTIONS(3019), - [sym_primitive_type] = ACTIONS(3019), - [anon_sym_enum] = ACTIONS(3019), - [anon_sym_class] = ACTIONS(3019), - [anon_sym_struct] = ACTIONS(3019), - [anon_sym_union] = ACTIONS(3019), - [anon_sym_if] = ACTIONS(3019), - [anon_sym_switch] = ACTIONS(3019), - [anon_sym_case] = ACTIONS(3019), - [anon_sym_default] = ACTIONS(3019), - [anon_sym_while] = ACTIONS(3019), - [anon_sym_do] = ACTIONS(3019), - [anon_sym_for] = ACTIONS(3019), - [anon_sym_return] = ACTIONS(3019), - [anon_sym_break] = ACTIONS(3019), - [anon_sym_continue] = ACTIONS(3019), - [anon_sym_goto] = ACTIONS(3019), - [anon_sym_not] = ACTIONS(3019), - [anon_sym_compl] = ACTIONS(3019), - [anon_sym_DASH_DASH] = ACTIONS(3021), - [anon_sym_PLUS_PLUS] = ACTIONS(3021), - [anon_sym_sizeof] = ACTIONS(3019), - [anon_sym___alignof__] = ACTIONS(3019), - [anon_sym___alignof] = ACTIONS(3019), - [anon_sym__alignof] = ACTIONS(3019), - [anon_sym_alignof] = ACTIONS(3019), - [anon_sym__Alignof] = ACTIONS(3019), - [anon_sym_offsetof] = ACTIONS(3019), - [anon_sym__Generic] = ACTIONS(3019), - [anon_sym_asm] = ACTIONS(3019), - [anon_sym___asm__] = ACTIONS(3019), - [anon_sym___asm] = ACTIONS(3019), - [sym_number_literal] = ACTIONS(3021), - [anon_sym_L_SQUOTE] = ACTIONS(3021), - [anon_sym_u_SQUOTE] = ACTIONS(3021), - [anon_sym_U_SQUOTE] = ACTIONS(3021), - [anon_sym_u8_SQUOTE] = ACTIONS(3021), - [anon_sym_SQUOTE] = ACTIONS(3021), - [anon_sym_L_DQUOTE] = ACTIONS(3021), - [anon_sym_u_DQUOTE] = ACTIONS(3021), - [anon_sym_U_DQUOTE] = ACTIONS(3021), - [anon_sym_u8_DQUOTE] = ACTIONS(3021), - [anon_sym_DQUOTE] = ACTIONS(3021), - [sym_true] = ACTIONS(3019), - [sym_false] = ACTIONS(3019), - [anon_sym_NULL] = ACTIONS(3019), - [anon_sym_nullptr] = ACTIONS(3019), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3019), - [anon_sym_decltype] = ACTIONS(3019), - [anon_sym_explicit] = ACTIONS(3019), - [anon_sym_typename] = ACTIONS(3019), - [anon_sym_export] = ACTIONS(3019), - [anon_sym_module] = ACTIONS(3019), - [anon_sym_import] = ACTIONS(3019), - [anon_sym_template] = ACTIONS(3019), - [anon_sym_operator] = ACTIONS(3019), - [anon_sym_try] = ACTIONS(3019), - [anon_sym_delete] = ACTIONS(3019), - [anon_sym_throw] = ACTIONS(3019), - [anon_sym_namespace] = ACTIONS(3019), - [anon_sym_static_assert] = ACTIONS(3019), - [anon_sym_concept] = ACTIONS(3019), - [anon_sym_co_return] = ACTIONS(3019), - [anon_sym_co_yield] = ACTIONS(3019), - [anon_sym_R_DQUOTE] = ACTIONS(3021), - [anon_sym_LR_DQUOTE] = ACTIONS(3021), - [anon_sym_uR_DQUOTE] = ACTIONS(3021), - [anon_sym_UR_DQUOTE] = ACTIONS(3021), - [anon_sym_u8R_DQUOTE] = ACTIONS(3021), - [anon_sym_co_await] = ACTIONS(3019), - [anon_sym_new] = ACTIONS(3019), - [anon_sym_requires] = ACTIONS(3019), - [sym_this] = ACTIONS(3019), + [499] = { + [ts_builtin_sym_end] = ACTIONS(2969), + [sym_identifier] = ACTIONS(2967), + [aux_sym_preproc_include_token1] = ACTIONS(2967), + [aux_sym_preproc_def_token1] = ACTIONS(2967), + [aux_sym_preproc_if_token1] = ACTIONS(2967), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2967), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2967), + [sym_preproc_directive] = ACTIONS(2967), + [anon_sym_LPAREN2] = ACTIONS(2969), + [anon_sym_BANG] = ACTIONS(2969), + [anon_sym_TILDE] = ACTIONS(2969), + [anon_sym_DASH] = ACTIONS(2967), + [anon_sym_PLUS] = ACTIONS(2967), + [anon_sym_STAR] = ACTIONS(2969), + [anon_sym_AMP_AMP] = ACTIONS(2969), + [anon_sym_AMP] = ACTIONS(2967), + [anon_sym_SEMI] = ACTIONS(2969), + [anon_sym___extension__] = ACTIONS(2967), + [anon_sym_typedef] = ACTIONS(2967), + [anon_sym_virtual] = ACTIONS(2967), + [anon_sym_extern] = ACTIONS(2967), + [anon_sym___attribute__] = ACTIONS(2967), + [anon_sym___attribute] = ACTIONS(2967), + [anon_sym_using] = ACTIONS(2967), + [anon_sym_COLON_COLON] = ACTIONS(2969), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2969), + [anon_sym___declspec] = ACTIONS(2967), + [anon_sym___based] = ACTIONS(2967), + [anon_sym___cdecl] = ACTIONS(2967), + [anon_sym___clrcall] = ACTIONS(2967), + [anon_sym___stdcall] = ACTIONS(2967), + [anon_sym___fastcall] = ACTIONS(2967), + [anon_sym___thiscall] = ACTIONS(2967), + [anon_sym___vectorcall] = ACTIONS(2967), + [anon_sym_LBRACE] = ACTIONS(2969), + [anon_sym_signed] = ACTIONS(2967), + [anon_sym_unsigned] = ACTIONS(2967), + [anon_sym_long] = ACTIONS(2967), + [anon_sym_short] = ACTIONS(2967), + [anon_sym_LBRACK] = ACTIONS(2967), + [anon_sym_static] = ACTIONS(2967), + [anon_sym_register] = ACTIONS(2967), + [anon_sym_inline] = ACTIONS(2967), + [anon_sym___inline] = ACTIONS(2967), + [anon_sym___inline__] = ACTIONS(2967), + [anon_sym___forceinline] = ACTIONS(2967), + [anon_sym_thread_local] = ACTIONS(2967), + [anon_sym___thread] = ACTIONS(2967), + [anon_sym_const] = ACTIONS(2967), + [anon_sym_constexpr] = ACTIONS(2967), + [anon_sym_volatile] = ACTIONS(2967), + [anon_sym_restrict] = ACTIONS(2967), + [anon_sym___restrict__] = ACTIONS(2967), + [anon_sym__Atomic] = ACTIONS(2967), + [anon_sym__Noreturn] = ACTIONS(2967), + [anon_sym_noreturn] = ACTIONS(2967), + [anon_sym__Nonnull] = ACTIONS(2967), + [anon_sym_mutable] = ACTIONS(2967), + [anon_sym_constinit] = ACTIONS(2967), + [anon_sym_consteval] = ACTIONS(2967), + [anon_sym_alignas] = ACTIONS(2967), + [anon_sym__Alignas] = ACTIONS(2967), + [sym_primitive_type] = ACTIONS(2967), + [anon_sym_enum] = ACTIONS(2967), + [anon_sym_class] = ACTIONS(2967), + [anon_sym_struct] = ACTIONS(2967), + [anon_sym_union] = ACTIONS(2967), + [anon_sym_if] = ACTIONS(2967), + [anon_sym_switch] = ACTIONS(2967), + [anon_sym_case] = ACTIONS(2967), + [anon_sym_default] = ACTIONS(2967), + [anon_sym_while] = ACTIONS(2967), + [anon_sym_do] = ACTIONS(2967), + [anon_sym_for] = ACTIONS(2967), + [anon_sym_return] = ACTIONS(2967), + [anon_sym_break] = ACTIONS(2967), + [anon_sym_continue] = ACTIONS(2967), + [anon_sym_goto] = ACTIONS(2967), + [anon_sym_not] = ACTIONS(2967), + [anon_sym_compl] = ACTIONS(2967), + [anon_sym_DASH_DASH] = ACTIONS(2969), + [anon_sym_PLUS_PLUS] = ACTIONS(2969), + [anon_sym_sizeof] = ACTIONS(2967), + [anon_sym___alignof__] = ACTIONS(2967), + [anon_sym___alignof] = ACTIONS(2967), + [anon_sym__alignof] = ACTIONS(2967), + [anon_sym_alignof] = ACTIONS(2967), + [anon_sym__Alignof] = ACTIONS(2967), + [anon_sym_offsetof] = ACTIONS(2967), + [anon_sym__Generic] = ACTIONS(2967), + [anon_sym_asm] = ACTIONS(2967), + [anon_sym___asm__] = ACTIONS(2967), + [anon_sym___asm] = ACTIONS(2967), + [sym_number_literal] = ACTIONS(2969), + [anon_sym_L_SQUOTE] = ACTIONS(2969), + [anon_sym_u_SQUOTE] = ACTIONS(2969), + [anon_sym_U_SQUOTE] = ACTIONS(2969), + [anon_sym_u8_SQUOTE] = ACTIONS(2969), + [anon_sym_SQUOTE] = ACTIONS(2969), + [anon_sym_L_DQUOTE] = ACTIONS(2969), + [anon_sym_u_DQUOTE] = ACTIONS(2969), + [anon_sym_U_DQUOTE] = ACTIONS(2969), + [anon_sym_u8_DQUOTE] = ACTIONS(2969), + [anon_sym_DQUOTE] = ACTIONS(2969), + [sym_true] = ACTIONS(2967), + [sym_false] = ACTIONS(2967), + [anon_sym_NULL] = ACTIONS(2967), + [anon_sym_nullptr] = ACTIONS(2967), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2967), + [anon_sym_decltype] = ACTIONS(2967), + [anon_sym_explicit] = ACTIONS(2967), + [anon_sym_typename] = ACTIONS(2967), + [anon_sym_export] = ACTIONS(2967), + [anon_sym_module] = ACTIONS(2967), + [anon_sym_import] = ACTIONS(2967), + [anon_sym_template] = ACTIONS(2967), + [anon_sym_operator] = ACTIONS(2967), + [anon_sym_try] = ACTIONS(2967), + [anon_sym_delete] = ACTIONS(2967), + [anon_sym_throw] = ACTIONS(2967), + [anon_sym_namespace] = ACTIONS(2967), + [anon_sym_static_assert] = ACTIONS(2967), + [anon_sym_concept] = ACTIONS(2967), + [anon_sym_co_return] = ACTIONS(2967), + [anon_sym_co_yield] = ACTIONS(2967), + [anon_sym_R_DQUOTE] = ACTIONS(2969), + [anon_sym_LR_DQUOTE] = ACTIONS(2969), + [anon_sym_uR_DQUOTE] = ACTIONS(2969), + [anon_sym_UR_DQUOTE] = ACTIONS(2969), + [anon_sym_u8R_DQUOTE] = ACTIONS(2969), + [anon_sym_co_await] = ACTIONS(2967), + [anon_sym_new] = ACTIONS(2967), + [anon_sym_requires] = ACTIONS(2967), + [sym_this] = ACTIONS(2967), }, - [496] = { - [ts_builtin_sym_end] = ACTIONS(3025), - [sym_identifier] = ACTIONS(3023), - [aux_sym_preproc_include_token1] = ACTIONS(3023), - [aux_sym_preproc_def_token1] = ACTIONS(3023), - [aux_sym_preproc_if_token1] = ACTIONS(3023), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3023), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3023), - [sym_preproc_directive] = ACTIONS(3023), - [anon_sym_LPAREN2] = ACTIONS(3025), - [anon_sym_BANG] = ACTIONS(3025), - [anon_sym_TILDE] = ACTIONS(3025), - [anon_sym_DASH] = ACTIONS(3023), - [anon_sym_PLUS] = ACTIONS(3023), - [anon_sym_STAR] = ACTIONS(3025), - [anon_sym_AMP_AMP] = ACTIONS(3025), - [anon_sym_AMP] = ACTIONS(3023), - [anon_sym_SEMI] = ACTIONS(3025), - [anon_sym___extension__] = ACTIONS(3023), - [anon_sym_typedef] = ACTIONS(3023), - [anon_sym_virtual] = ACTIONS(3023), - [anon_sym_extern] = ACTIONS(3023), - [anon_sym___attribute__] = ACTIONS(3023), - [anon_sym___attribute] = ACTIONS(3023), - [anon_sym_using] = ACTIONS(3023), - [anon_sym_COLON_COLON] = ACTIONS(3025), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3025), - [anon_sym___declspec] = ACTIONS(3023), - [anon_sym___based] = ACTIONS(3023), - [anon_sym___cdecl] = ACTIONS(3023), - [anon_sym___clrcall] = ACTIONS(3023), - [anon_sym___stdcall] = ACTIONS(3023), - [anon_sym___fastcall] = ACTIONS(3023), - [anon_sym___thiscall] = ACTIONS(3023), - [anon_sym___vectorcall] = ACTIONS(3023), - [anon_sym_LBRACE] = ACTIONS(3025), - [anon_sym_signed] = ACTIONS(3023), - [anon_sym_unsigned] = ACTIONS(3023), - [anon_sym_long] = ACTIONS(3023), - [anon_sym_short] = ACTIONS(3023), - [anon_sym_LBRACK] = ACTIONS(3023), - [anon_sym_static] = ACTIONS(3023), - [anon_sym_register] = ACTIONS(3023), - [anon_sym_inline] = ACTIONS(3023), - [anon_sym___inline] = ACTIONS(3023), - [anon_sym___inline__] = ACTIONS(3023), - [anon_sym___forceinline] = ACTIONS(3023), - [anon_sym_thread_local] = ACTIONS(3023), - [anon_sym___thread] = ACTIONS(3023), - [anon_sym_const] = ACTIONS(3023), - [anon_sym_constexpr] = ACTIONS(3023), - [anon_sym_volatile] = ACTIONS(3023), - [anon_sym_restrict] = ACTIONS(3023), - [anon_sym___restrict__] = ACTIONS(3023), - [anon_sym__Atomic] = ACTIONS(3023), - [anon_sym__Noreturn] = ACTIONS(3023), - [anon_sym_noreturn] = ACTIONS(3023), - [anon_sym__Nonnull] = ACTIONS(3023), - [anon_sym_mutable] = ACTIONS(3023), - [anon_sym_constinit] = ACTIONS(3023), - [anon_sym_consteval] = ACTIONS(3023), - [anon_sym_alignas] = ACTIONS(3023), - [anon_sym__Alignas] = ACTIONS(3023), - [sym_primitive_type] = ACTIONS(3023), - [anon_sym_enum] = ACTIONS(3023), - [anon_sym_class] = ACTIONS(3023), - [anon_sym_struct] = ACTIONS(3023), - [anon_sym_union] = ACTIONS(3023), - [anon_sym_if] = ACTIONS(3023), - [anon_sym_switch] = ACTIONS(3023), - [anon_sym_case] = ACTIONS(3023), - [anon_sym_default] = ACTIONS(3023), - [anon_sym_while] = ACTIONS(3023), - [anon_sym_do] = ACTIONS(3023), - [anon_sym_for] = ACTIONS(3023), - [anon_sym_return] = ACTIONS(3023), - [anon_sym_break] = ACTIONS(3023), - [anon_sym_continue] = ACTIONS(3023), - [anon_sym_goto] = ACTIONS(3023), - [anon_sym_not] = ACTIONS(3023), - [anon_sym_compl] = ACTIONS(3023), - [anon_sym_DASH_DASH] = ACTIONS(3025), - [anon_sym_PLUS_PLUS] = ACTIONS(3025), - [anon_sym_sizeof] = ACTIONS(3023), - [anon_sym___alignof__] = ACTIONS(3023), - [anon_sym___alignof] = ACTIONS(3023), - [anon_sym__alignof] = ACTIONS(3023), - [anon_sym_alignof] = ACTIONS(3023), - [anon_sym__Alignof] = ACTIONS(3023), - [anon_sym_offsetof] = ACTIONS(3023), - [anon_sym__Generic] = ACTIONS(3023), - [anon_sym_asm] = ACTIONS(3023), - [anon_sym___asm__] = ACTIONS(3023), - [anon_sym___asm] = ACTIONS(3023), - [sym_number_literal] = ACTIONS(3025), - [anon_sym_L_SQUOTE] = ACTIONS(3025), - [anon_sym_u_SQUOTE] = ACTIONS(3025), - [anon_sym_U_SQUOTE] = ACTIONS(3025), - [anon_sym_u8_SQUOTE] = ACTIONS(3025), - [anon_sym_SQUOTE] = ACTIONS(3025), - [anon_sym_L_DQUOTE] = ACTIONS(3025), - [anon_sym_u_DQUOTE] = ACTIONS(3025), - [anon_sym_U_DQUOTE] = ACTIONS(3025), - [anon_sym_u8_DQUOTE] = ACTIONS(3025), - [anon_sym_DQUOTE] = ACTIONS(3025), - [sym_true] = ACTIONS(3023), - [sym_false] = ACTIONS(3023), - [anon_sym_NULL] = ACTIONS(3023), - [anon_sym_nullptr] = ACTIONS(3023), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3023), - [anon_sym_decltype] = ACTIONS(3023), - [anon_sym_explicit] = ACTIONS(3023), - [anon_sym_typename] = ACTIONS(3023), - [anon_sym_export] = ACTIONS(3023), - [anon_sym_module] = ACTIONS(3023), - [anon_sym_import] = ACTIONS(3023), - [anon_sym_template] = ACTIONS(3023), - [anon_sym_operator] = ACTIONS(3023), - [anon_sym_try] = ACTIONS(3023), - [anon_sym_delete] = ACTIONS(3023), - [anon_sym_throw] = ACTIONS(3023), - [anon_sym_namespace] = ACTIONS(3023), - [anon_sym_static_assert] = ACTIONS(3023), - [anon_sym_concept] = ACTIONS(3023), - [anon_sym_co_return] = ACTIONS(3023), - [anon_sym_co_yield] = ACTIONS(3023), - [anon_sym_R_DQUOTE] = ACTIONS(3025), - [anon_sym_LR_DQUOTE] = ACTIONS(3025), - [anon_sym_uR_DQUOTE] = ACTIONS(3025), - [anon_sym_UR_DQUOTE] = ACTIONS(3025), - [anon_sym_u8R_DQUOTE] = ACTIONS(3025), - [anon_sym_co_await] = ACTIONS(3023), - [anon_sym_new] = ACTIONS(3023), - [anon_sym_requires] = ACTIONS(3023), - [sym_this] = ACTIONS(3023), + [500] = { + [ts_builtin_sym_end] = ACTIONS(2825), + [sym_identifier] = ACTIONS(2823), + [aux_sym_preproc_include_token1] = ACTIONS(2823), + [aux_sym_preproc_def_token1] = ACTIONS(2823), + [aux_sym_preproc_if_token1] = ACTIONS(2823), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2823), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2823), + [sym_preproc_directive] = ACTIONS(2823), + [anon_sym_LPAREN2] = ACTIONS(2825), + [anon_sym_BANG] = ACTIONS(2825), + [anon_sym_TILDE] = ACTIONS(2825), + [anon_sym_DASH] = ACTIONS(2823), + [anon_sym_PLUS] = ACTIONS(2823), + [anon_sym_STAR] = ACTIONS(2825), + [anon_sym_AMP_AMP] = ACTIONS(2825), + [anon_sym_AMP] = ACTIONS(2823), + [anon_sym_SEMI] = ACTIONS(2825), + [anon_sym___extension__] = ACTIONS(2823), + [anon_sym_typedef] = ACTIONS(2823), + [anon_sym_virtual] = ACTIONS(2823), + [anon_sym_extern] = ACTIONS(2823), + [anon_sym___attribute__] = ACTIONS(2823), + [anon_sym___attribute] = ACTIONS(2823), + [anon_sym_using] = ACTIONS(2823), + [anon_sym_COLON_COLON] = ACTIONS(2825), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2825), + [anon_sym___declspec] = ACTIONS(2823), + [anon_sym___based] = ACTIONS(2823), + [anon_sym___cdecl] = ACTIONS(2823), + [anon_sym___clrcall] = ACTIONS(2823), + [anon_sym___stdcall] = ACTIONS(2823), + [anon_sym___fastcall] = ACTIONS(2823), + [anon_sym___thiscall] = ACTIONS(2823), + [anon_sym___vectorcall] = ACTIONS(2823), + [anon_sym_LBRACE] = ACTIONS(2825), + [anon_sym_signed] = ACTIONS(2823), + [anon_sym_unsigned] = ACTIONS(2823), + [anon_sym_long] = ACTIONS(2823), + [anon_sym_short] = ACTIONS(2823), + [anon_sym_LBRACK] = ACTIONS(2823), + [anon_sym_static] = ACTIONS(2823), + [anon_sym_register] = ACTIONS(2823), + [anon_sym_inline] = ACTIONS(2823), + [anon_sym___inline] = ACTIONS(2823), + [anon_sym___inline__] = ACTIONS(2823), + [anon_sym___forceinline] = ACTIONS(2823), + [anon_sym_thread_local] = ACTIONS(2823), + [anon_sym___thread] = ACTIONS(2823), + [anon_sym_const] = ACTIONS(2823), + [anon_sym_constexpr] = ACTIONS(2823), + [anon_sym_volatile] = ACTIONS(2823), + [anon_sym_restrict] = ACTIONS(2823), + [anon_sym___restrict__] = ACTIONS(2823), + [anon_sym__Atomic] = ACTIONS(2823), + [anon_sym__Noreturn] = ACTIONS(2823), + [anon_sym_noreturn] = ACTIONS(2823), + [anon_sym__Nonnull] = ACTIONS(2823), + [anon_sym_mutable] = ACTIONS(2823), + [anon_sym_constinit] = ACTIONS(2823), + [anon_sym_consteval] = ACTIONS(2823), + [anon_sym_alignas] = ACTIONS(2823), + [anon_sym__Alignas] = ACTIONS(2823), + [sym_primitive_type] = ACTIONS(2823), + [anon_sym_enum] = ACTIONS(2823), + [anon_sym_class] = ACTIONS(2823), + [anon_sym_struct] = ACTIONS(2823), + [anon_sym_union] = ACTIONS(2823), + [anon_sym_if] = ACTIONS(2823), + [anon_sym_switch] = ACTIONS(2823), + [anon_sym_case] = ACTIONS(2823), + [anon_sym_default] = ACTIONS(2823), + [anon_sym_while] = ACTIONS(2823), + [anon_sym_do] = ACTIONS(2823), + [anon_sym_for] = ACTIONS(2823), + [anon_sym_return] = ACTIONS(2823), + [anon_sym_break] = ACTIONS(2823), + [anon_sym_continue] = ACTIONS(2823), + [anon_sym_goto] = ACTIONS(2823), + [anon_sym_not] = ACTIONS(2823), + [anon_sym_compl] = ACTIONS(2823), + [anon_sym_DASH_DASH] = ACTIONS(2825), + [anon_sym_PLUS_PLUS] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2823), + [anon_sym___alignof__] = ACTIONS(2823), + [anon_sym___alignof] = ACTIONS(2823), + [anon_sym__alignof] = ACTIONS(2823), + [anon_sym_alignof] = ACTIONS(2823), + [anon_sym__Alignof] = ACTIONS(2823), + [anon_sym_offsetof] = ACTIONS(2823), + [anon_sym__Generic] = ACTIONS(2823), + [anon_sym_asm] = ACTIONS(2823), + [anon_sym___asm__] = ACTIONS(2823), + [anon_sym___asm] = ACTIONS(2823), + [sym_number_literal] = ACTIONS(2825), + [anon_sym_L_SQUOTE] = ACTIONS(2825), + [anon_sym_u_SQUOTE] = ACTIONS(2825), + [anon_sym_U_SQUOTE] = ACTIONS(2825), + [anon_sym_u8_SQUOTE] = ACTIONS(2825), + [anon_sym_SQUOTE] = ACTIONS(2825), + [anon_sym_L_DQUOTE] = ACTIONS(2825), + [anon_sym_u_DQUOTE] = ACTIONS(2825), + [anon_sym_U_DQUOTE] = ACTIONS(2825), + [anon_sym_u8_DQUOTE] = ACTIONS(2825), + [anon_sym_DQUOTE] = ACTIONS(2825), + [sym_true] = ACTIONS(2823), + [sym_false] = ACTIONS(2823), + [anon_sym_NULL] = ACTIONS(2823), + [anon_sym_nullptr] = ACTIONS(2823), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2823), + [anon_sym_decltype] = ACTIONS(2823), + [anon_sym_explicit] = ACTIONS(2823), + [anon_sym_typename] = ACTIONS(2823), + [anon_sym_export] = ACTIONS(2823), + [anon_sym_module] = ACTIONS(2823), + [anon_sym_import] = ACTIONS(2823), + [anon_sym_template] = ACTIONS(2823), + [anon_sym_operator] = ACTIONS(2823), + [anon_sym_try] = ACTIONS(2823), + [anon_sym_delete] = ACTIONS(2823), + [anon_sym_throw] = ACTIONS(2823), + [anon_sym_namespace] = ACTIONS(2823), + [anon_sym_static_assert] = ACTIONS(2823), + [anon_sym_concept] = ACTIONS(2823), + [anon_sym_co_return] = ACTIONS(2823), + [anon_sym_co_yield] = ACTIONS(2823), + [anon_sym_R_DQUOTE] = ACTIONS(2825), + [anon_sym_LR_DQUOTE] = ACTIONS(2825), + [anon_sym_uR_DQUOTE] = ACTIONS(2825), + [anon_sym_UR_DQUOTE] = ACTIONS(2825), + [anon_sym_u8R_DQUOTE] = ACTIONS(2825), + [anon_sym_co_await] = ACTIONS(2823), + [anon_sym_new] = ACTIONS(2823), + [anon_sym_requires] = ACTIONS(2823), + [sym_this] = ACTIONS(2823), }, - [497] = { - [ts_builtin_sym_end] = ACTIONS(2833), - [sym_identifier] = ACTIONS(2831), - [aux_sym_preproc_include_token1] = ACTIONS(2831), - [aux_sym_preproc_def_token1] = ACTIONS(2831), - [aux_sym_preproc_if_token1] = ACTIONS(2831), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2831), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2831), - [sym_preproc_directive] = ACTIONS(2831), - [anon_sym_LPAREN2] = ACTIONS(2833), - [anon_sym_BANG] = ACTIONS(2833), - [anon_sym_TILDE] = ACTIONS(2833), - [anon_sym_DASH] = ACTIONS(2831), - [anon_sym_PLUS] = ACTIONS(2831), - [anon_sym_STAR] = ACTIONS(2833), - [anon_sym_AMP_AMP] = ACTIONS(2833), - [anon_sym_AMP] = ACTIONS(2831), - [anon_sym_SEMI] = ACTIONS(2833), - [anon_sym___extension__] = ACTIONS(2831), - [anon_sym_typedef] = ACTIONS(2831), - [anon_sym_virtual] = ACTIONS(2831), - [anon_sym_extern] = ACTIONS(2831), - [anon_sym___attribute__] = ACTIONS(2831), - [anon_sym___attribute] = ACTIONS(2831), - [anon_sym_using] = ACTIONS(2831), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2833), - [anon_sym___declspec] = ACTIONS(2831), - [anon_sym___based] = ACTIONS(2831), - [anon_sym___cdecl] = ACTIONS(2831), - [anon_sym___clrcall] = ACTIONS(2831), - [anon_sym___stdcall] = ACTIONS(2831), - [anon_sym___fastcall] = ACTIONS(2831), - [anon_sym___thiscall] = ACTIONS(2831), - [anon_sym___vectorcall] = ACTIONS(2831), - [anon_sym_LBRACE] = ACTIONS(2833), - [anon_sym_signed] = ACTIONS(2831), - [anon_sym_unsigned] = ACTIONS(2831), - [anon_sym_long] = ACTIONS(2831), - [anon_sym_short] = ACTIONS(2831), - [anon_sym_LBRACK] = ACTIONS(2831), - [anon_sym_static] = ACTIONS(2831), - [anon_sym_register] = ACTIONS(2831), - [anon_sym_inline] = ACTIONS(2831), - [anon_sym___inline] = ACTIONS(2831), - [anon_sym___inline__] = ACTIONS(2831), - [anon_sym___forceinline] = ACTIONS(2831), - [anon_sym_thread_local] = ACTIONS(2831), - [anon_sym___thread] = ACTIONS(2831), - [anon_sym_const] = ACTIONS(2831), - [anon_sym_constexpr] = ACTIONS(2831), - [anon_sym_volatile] = ACTIONS(2831), - [anon_sym_restrict] = ACTIONS(2831), - [anon_sym___restrict__] = ACTIONS(2831), - [anon_sym__Atomic] = ACTIONS(2831), - [anon_sym__Noreturn] = ACTIONS(2831), - [anon_sym_noreturn] = ACTIONS(2831), - [anon_sym__Nonnull] = ACTIONS(2831), - [anon_sym_mutable] = ACTIONS(2831), - [anon_sym_constinit] = ACTIONS(2831), - [anon_sym_consteval] = ACTIONS(2831), - [anon_sym_alignas] = ACTIONS(2831), - [anon_sym__Alignas] = ACTIONS(2831), - [sym_primitive_type] = ACTIONS(2831), - [anon_sym_enum] = ACTIONS(2831), - [anon_sym_class] = ACTIONS(2831), - [anon_sym_struct] = ACTIONS(2831), - [anon_sym_union] = ACTIONS(2831), - [anon_sym_if] = ACTIONS(2831), - [anon_sym_switch] = ACTIONS(2831), - [anon_sym_case] = ACTIONS(2831), - [anon_sym_default] = ACTIONS(2831), - [anon_sym_while] = ACTIONS(2831), - [anon_sym_do] = ACTIONS(2831), - [anon_sym_for] = ACTIONS(2831), - [anon_sym_return] = ACTIONS(2831), - [anon_sym_break] = ACTIONS(2831), - [anon_sym_continue] = ACTIONS(2831), - [anon_sym_goto] = ACTIONS(2831), - [anon_sym_not] = ACTIONS(2831), - [anon_sym_compl] = ACTIONS(2831), - [anon_sym_DASH_DASH] = ACTIONS(2833), - [anon_sym_PLUS_PLUS] = ACTIONS(2833), - [anon_sym_sizeof] = ACTIONS(2831), - [anon_sym___alignof__] = ACTIONS(2831), - [anon_sym___alignof] = ACTIONS(2831), - [anon_sym__alignof] = ACTIONS(2831), - [anon_sym_alignof] = ACTIONS(2831), - [anon_sym__Alignof] = ACTIONS(2831), - [anon_sym_offsetof] = ACTIONS(2831), - [anon_sym__Generic] = ACTIONS(2831), - [anon_sym_asm] = ACTIONS(2831), - [anon_sym___asm__] = ACTIONS(2831), - [anon_sym___asm] = ACTIONS(2831), - [sym_number_literal] = ACTIONS(2833), - [anon_sym_L_SQUOTE] = ACTIONS(2833), - [anon_sym_u_SQUOTE] = ACTIONS(2833), - [anon_sym_U_SQUOTE] = ACTIONS(2833), - [anon_sym_u8_SQUOTE] = ACTIONS(2833), - [anon_sym_SQUOTE] = ACTIONS(2833), - [anon_sym_L_DQUOTE] = ACTIONS(2833), - [anon_sym_u_DQUOTE] = ACTIONS(2833), - [anon_sym_U_DQUOTE] = ACTIONS(2833), - [anon_sym_u8_DQUOTE] = ACTIONS(2833), - [anon_sym_DQUOTE] = ACTIONS(2833), - [sym_true] = ACTIONS(2831), - [sym_false] = ACTIONS(2831), - [anon_sym_NULL] = ACTIONS(2831), - [anon_sym_nullptr] = ACTIONS(2831), + [501] = { + [sym_identifier] = ACTIONS(2631), + [aux_sym_preproc_include_token1] = ACTIONS(2631), + [aux_sym_preproc_def_token1] = ACTIONS(2631), + [aux_sym_preproc_if_token1] = ACTIONS(2631), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2631), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2631), + [sym_preproc_directive] = ACTIONS(2631), + [anon_sym_LPAREN2] = ACTIONS(2633), + [anon_sym_BANG] = ACTIONS(2633), + [anon_sym_TILDE] = ACTIONS(2633), + [anon_sym_DASH] = ACTIONS(2631), + [anon_sym_PLUS] = ACTIONS(2631), + [anon_sym_STAR] = ACTIONS(2633), + [anon_sym_AMP_AMP] = ACTIONS(2633), + [anon_sym_AMP] = ACTIONS(2631), + [anon_sym_SEMI] = ACTIONS(2633), + [anon_sym___extension__] = ACTIONS(2631), + [anon_sym_typedef] = ACTIONS(2631), + [anon_sym_virtual] = ACTIONS(2631), + [anon_sym_extern] = ACTIONS(2631), + [anon_sym___attribute__] = ACTIONS(2631), + [anon_sym___attribute] = ACTIONS(2631), + [anon_sym_using] = ACTIONS(2631), + [anon_sym_COLON_COLON] = ACTIONS(2633), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2633), + [anon_sym___declspec] = ACTIONS(2631), + [anon_sym___based] = ACTIONS(2631), + [anon_sym___cdecl] = ACTIONS(2631), + [anon_sym___clrcall] = ACTIONS(2631), + [anon_sym___stdcall] = ACTIONS(2631), + [anon_sym___fastcall] = ACTIONS(2631), + [anon_sym___thiscall] = ACTIONS(2631), + [anon_sym___vectorcall] = ACTIONS(2631), + [anon_sym_LBRACE] = ACTIONS(2633), + [anon_sym_RBRACE] = ACTIONS(2633), + [anon_sym_signed] = ACTIONS(2631), + [anon_sym_unsigned] = ACTIONS(2631), + [anon_sym_long] = ACTIONS(2631), + [anon_sym_short] = ACTIONS(2631), + [anon_sym_LBRACK] = ACTIONS(2631), + [anon_sym_static] = ACTIONS(2631), + [anon_sym_register] = ACTIONS(2631), + [anon_sym_inline] = ACTIONS(2631), + [anon_sym___inline] = ACTIONS(2631), + [anon_sym___inline__] = ACTIONS(2631), + [anon_sym___forceinline] = ACTIONS(2631), + [anon_sym_thread_local] = ACTIONS(2631), + [anon_sym___thread] = ACTIONS(2631), + [anon_sym_const] = ACTIONS(2631), + [anon_sym_constexpr] = ACTIONS(2631), + [anon_sym_volatile] = ACTIONS(2631), + [anon_sym_restrict] = ACTIONS(2631), + [anon_sym___restrict__] = ACTIONS(2631), + [anon_sym__Atomic] = ACTIONS(2631), + [anon_sym__Noreturn] = ACTIONS(2631), + [anon_sym_noreturn] = ACTIONS(2631), + [anon_sym__Nonnull] = ACTIONS(2631), + [anon_sym_mutable] = ACTIONS(2631), + [anon_sym_constinit] = ACTIONS(2631), + [anon_sym_consteval] = ACTIONS(2631), + [anon_sym_alignas] = ACTIONS(2631), + [anon_sym__Alignas] = ACTIONS(2631), + [sym_primitive_type] = ACTIONS(2631), + [anon_sym_enum] = ACTIONS(2631), + [anon_sym_class] = ACTIONS(2631), + [anon_sym_struct] = ACTIONS(2631), + [anon_sym_union] = ACTIONS(2631), + [anon_sym_if] = ACTIONS(2631), + [anon_sym_else] = ACTIONS(2631), + [anon_sym_switch] = ACTIONS(2631), + [anon_sym_case] = ACTIONS(2631), + [anon_sym_default] = ACTIONS(2631), + [anon_sym_while] = ACTIONS(2631), + [anon_sym_do] = ACTIONS(2631), + [anon_sym_for] = ACTIONS(2631), + [anon_sym_return] = ACTIONS(2631), + [anon_sym_break] = ACTIONS(2631), + [anon_sym_continue] = ACTIONS(2631), + [anon_sym_goto] = ACTIONS(2631), + [anon_sym___try] = ACTIONS(2631), + [anon_sym___leave] = ACTIONS(2631), + [anon_sym_not] = ACTIONS(2631), + [anon_sym_compl] = ACTIONS(2631), + [anon_sym_DASH_DASH] = ACTIONS(2633), + [anon_sym_PLUS_PLUS] = ACTIONS(2633), + [anon_sym_sizeof] = ACTIONS(2631), + [anon_sym___alignof__] = ACTIONS(2631), + [anon_sym___alignof] = ACTIONS(2631), + [anon_sym__alignof] = ACTIONS(2631), + [anon_sym_alignof] = ACTIONS(2631), + [anon_sym__Alignof] = ACTIONS(2631), + [anon_sym_offsetof] = ACTIONS(2631), + [anon_sym__Generic] = ACTIONS(2631), + [anon_sym_asm] = ACTIONS(2631), + [anon_sym___asm__] = ACTIONS(2631), + [anon_sym___asm] = ACTIONS(2631), + [sym_number_literal] = ACTIONS(2633), + [anon_sym_L_SQUOTE] = ACTIONS(2633), + [anon_sym_u_SQUOTE] = ACTIONS(2633), + [anon_sym_U_SQUOTE] = ACTIONS(2633), + [anon_sym_u8_SQUOTE] = ACTIONS(2633), + [anon_sym_SQUOTE] = ACTIONS(2633), + [anon_sym_L_DQUOTE] = ACTIONS(2633), + [anon_sym_u_DQUOTE] = ACTIONS(2633), + [anon_sym_U_DQUOTE] = ACTIONS(2633), + [anon_sym_u8_DQUOTE] = ACTIONS(2633), + [anon_sym_DQUOTE] = ACTIONS(2633), + [sym_true] = ACTIONS(2631), + [sym_false] = ACTIONS(2631), + [anon_sym_NULL] = ACTIONS(2631), + [anon_sym_nullptr] = ACTIONS(2631), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2831), - [anon_sym_decltype] = ACTIONS(2831), - [anon_sym_explicit] = ACTIONS(2831), - [anon_sym_typename] = ACTIONS(2831), - [anon_sym_export] = ACTIONS(2831), - [anon_sym_module] = ACTIONS(2831), - [anon_sym_import] = ACTIONS(2831), - [anon_sym_template] = ACTIONS(2831), - [anon_sym_operator] = ACTIONS(2831), - [anon_sym_try] = ACTIONS(2831), - [anon_sym_delete] = ACTIONS(2831), - [anon_sym_throw] = ACTIONS(2831), - [anon_sym_namespace] = ACTIONS(2831), - [anon_sym_static_assert] = ACTIONS(2831), - [anon_sym_concept] = ACTIONS(2831), - [anon_sym_co_return] = ACTIONS(2831), - [anon_sym_co_yield] = ACTIONS(2831), - [anon_sym_R_DQUOTE] = ACTIONS(2833), - [anon_sym_LR_DQUOTE] = ACTIONS(2833), - [anon_sym_uR_DQUOTE] = ACTIONS(2833), - [anon_sym_UR_DQUOTE] = ACTIONS(2833), - [anon_sym_u8R_DQUOTE] = ACTIONS(2833), - [anon_sym_co_await] = ACTIONS(2831), - [anon_sym_new] = ACTIONS(2831), - [anon_sym_requires] = ACTIONS(2831), - [sym_this] = ACTIONS(2831), + [sym_auto] = ACTIONS(2631), + [anon_sym_decltype] = ACTIONS(2631), + [anon_sym_explicit] = ACTIONS(2631), + [anon_sym_typename] = ACTIONS(2631), + [anon_sym_template] = ACTIONS(2631), + [anon_sym_operator] = ACTIONS(2631), + [anon_sym_try] = ACTIONS(2631), + [anon_sym_delete] = ACTIONS(2631), + [anon_sym_throw] = ACTIONS(2631), + [anon_sym_namespace] = ACTIONS(2631), + [anon_sym_static_assert] = ACTIONS(2631), + [anon_sym_concept] = ACTIONS(2631), + [anon_sym_co_return] = ACTIONS(2631), + [anon_sym_co_yield] = ACTIONS(2631), + [anon_sym_R_DQUOTE] = ACTIONS(2633), + [anon_sym_LR_DQUOTE] = ACTIONS(2633), + [anon_sym_uR_DQUOTE] = ACTIONS(2633), + [anon_sym_UR_DQUOTE] = ACTIONS(2633), + [anon_sym_u8R_DQUOTE] = ACTIONS(2633), + [anon_sym_co_await] = ACTIONS(2631), + [anon_sym_new] = ACTIONS(2631), + [anon_sym_requires] = ACTIONS(2631), + [sym_this] = ACTIONS(2631), }, - [498] = { - [ts_builtin_sym_end] = ACTIONS(2849), - [sym_identifier] = ACTIONS(2847), - [aux_sym_preproc_include_token1] = ACTIONS(2847), - [aux_sym_preproc_def_token1] = ACTIONS(2847), - [aux_sym_preproc_if_token1] = ACTIONS(2847), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2847), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2847), - [sym_preproc_directive] = ACTIONS(2847), - [anon_sym_LPAREN2] = ACTIONS(2849), - [anon_sym_BANG] = ACTIONS(2849), - [anon_sym_TILDE] = ACTIONS(2849), - [anon_sym_DASH] = ACTIONS(2847), - [anon_sym_PLUS] = ACTIONS(2847), - [anon_sym_STAR] = ACTIONS(2849), - [anon_sym_AMP_AMP] = ACTIONS(2849), - [anon_sym_AMP] = ACTIONS(2847), - [anon_sym_SEMI] = ACTIONS(2849), - [anon_sym___extension__] = ACTIONS(2847), - [anon_sym_typedef] = ACTIONS(2847), - [anon_sym_virtual] = ACTIONS(2847), - [anon_sym_extern] = ACTIONS(2847), - [anon_sym___attribute__] = ACTIONS(2847), - [anon_sym___attribute] = ACTIONS(2847), - [anon_sym_using] = ACTIONS(2847), - [anon_sym_COLON_COLON] = ACTIONS(2849), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2849), - [anon_sym___declspec] = ACTIONS(2847), - [anon_sym___based] = ACTIONS(2847), - [anon_sym___cdecl] = ACTIONS(2847), - [anon_sym___clrcall] = ACTIONS(2847), - [anon_sym___stdcall] = ACTIONS(2847), - [anon_sym___fastcall] = ACTIONS(2847), - [anon_sym___thiscall] = ACTIONS(2847), - [anon_sym___vectorcall] = ACTIONS(2847), - [anon_sym_LBRACE] = ACTIONS(2849), + [502] = { + [ts_builtin_sym_end] = ACTIONS(2973), + [sym_identifier] = ACTIONS(2971), + [aux_sym_preproc_include_token1] = ACTIONS(2971), + [aux_sym_preproc_def_token1] = ACTIONS(2971), + [aux_sym_preproc_if_token1] = ACTIONS(2971), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2971), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2971), + [sym_preproc_directive] = ACTIONS(2971), + [anon_sym_LPAREN2] = ACTIONS(2973), + [anon_sym_BANG] = ACTIONS(2973), + [anon_sym_TILDE] = ACTIONS(2973), + [anon_sym_DASH] = ACTIONS(2971), + [anon_sym_PLUS] = ACTIONS(2971), + [anon_sym_STAR] = ACTIONS(2973), + [anon_sym_AMP_AMP] = ACTIONS(2973), + [anon_sym_AMP] = ACTIONS(2971), + [anon_sym_SEMI] = ACTIONS(2973), + [anon_sym___extension__] = ACTIONS(2971), + [anon_sym_typedef] = ACTIONS(2971), + [anon_sym_virtual] = ACTIONS(2971), + [anon_sym_extern] = ACTIONS(2971), + [anon_sym___attribute__] = ACTIONS(2971), + [anon_sym___attribute] = ACTIONS(2971), + [anon_sym_using] = ACTIONS(2971), + [anon_sym_COLON_COLON] = ACTIONS(2973), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2973), + [anon_sym___declspec] = ACTIONS(2971), + [anon_sym___based] = ACTIONS(2971), + [anon_sym___cdecl] = ACTIONS(2971), + [anon_sym___clrcall] = ACTIONS(2971), + [anon_sym___stdcall] = ACTIONS(2971), + [anon_sym___fastcall] = ACTIONS(2971), + [anon_sym___thiscall] = ACTIONS(2971), + [anon_sym___vectorcall] = ACTIONS(2971), + [anon_sym_LBRACE] = ACTIONS(2973), + [anon_sym_signed] = ACTIONS(2971), + [anon_sym_unsigned] = ACTIONS(2971), + [anon_sym_long] = ACTIONS(2971), + [anon_sym_short] = ACTIONS(2971), + [anon_sym_LBRACK] = ACTIONS(2971), + [anon_sym_static] = ACTIONS(2971), + [anon_sym_register] = ACTIONS(2971), + [anon_sym_inline] = ACTIONS(2971), + [anon_sym___inline] = ACTIONS(2971), + [anon_sym___inline__] = ACTIONS(2971), + [anon_sym___forceinline] = ACTIONS(2971), + [anon_sym_thread_local] = ACTIONS(2971), + [anon_sym___thread] = ACTIONS(2971), + [anon_sym_const] = ACTIONS(2971), + [anon_sym_constexpr] = ACTIONS(2971), + [anon_sym_volatile] = ACTIONS(2971), + [anon_sym_restrict] = ACTIONS(2971), + [anon_sym___restrict__] = ACTIONS(2971), + [anon_sym__Atomic] = ACTIONS(2971), + [anon_sym__Noreturn] = ACTIONS(2971), + [anon_sym_noreturn] = ACTIONS(2971), + [anon_sym__Nonnull] = ACTIONS(2971), + [anon_sym_mutable] = ACTIONS(2971), + [anon_sym_constinit] = ACTIONS(2971), + [anon_sym_consteval] = ACTIONS(2971), + [anon_sym_alignas] = ACTIONS(2971), + [anon_sym__Alignas] = ACTIONS(2971), + [sym_primitive_type] = ACTIONS(2971), + [anon_sym_enum] = ACTIONS(2971), + [anon_sym_class] = ACTIONS(2971), + [anon_sym_struct] = ACTIONS(2971), + [anon_sym_union] = ACTIONS(2971), + [anon_sym_if] = ACTIONS(2971), + [anon_sym_switch] = ACTIONS(2971), + [anon_sym_case] = ACTIONS(2971), + [anon_sym_default] = ACTIONS(2971), + [anon_sym_while] = ACTIONS(2971), + [anon_sym_do] = ACTIONS(2971), + [anon_sym_for] = ACTIONS(2971), + [anon_sym_return] = ACTIONS(2971), + [anon_sym_break] = ACTIONS(2971), + [anon_sym_continue] = ACTIONS(2971), + [anon_sym_goto] = ACTIONS(2971), + [anon_sym_not] = ACTIONS(2971), + [anon_sym_compl] = ACTIONS(2971), + [anon_sym_DASH_DASH] = ACTIONS(2973), + [anon_sym_PLUS_PLUS] = ACTIONS(2973), + [anon_sym_sizeof] = ACTIONS(2971), + [anon_sym___alignof__] = ACTIONS(2971), + [anon_sym___alignof] = ACTIONS(2971), + [anon_sym__alignof] = ACTIONS(2971), + [anon_sym_alignof] = ACTIONS(2971), + [anon_sym__Alignof] = ACTIONS(2971), + [anon_sym_offsetof] = ACTIONS(2971), + [anon_sym__Generic] = ACTIONS(2971), + [anon_sym_asm] = ACTIONS(2971), + [anon_sym___asm__] = ACTIONS(2971), + [anon_sym___asm] = ACTIONS(2971), + [sym_number_literal] = ACTIONS(2973), + [anon_sym_L_SQUOTE] = ACTIONS(2973), + [anon_sym_u_SQUOTE] = ACTIONS(2973), + [anon_sym_U_SQUOTE] = ACTIONS(2973), + [anon_sym_u8_SQUOTE] = ACTIONS(2973), + [anon_sym_SQUOTE] = ACTIONS(2973), + [anon_sym_L_DQUOTE] = ACTIONS(2973), + [anon_sym_u_DQUOTE] = ACTIONS(2973), + [anon_sym_U_DQUOTE] = ACTIONS(2973), + [anon_sym_u8_DQUOTE] = ACTIONS(2973), + [anon_sym_DQUOTE] = ACTIONS(2973), + [sym_true] = ACTIONS(2971), + [sym_false] = ACTIONS(2971), + [anon_sym_NULL] = ACTIONS(2971), + [anon_sym_nullptr] = ACTIONS(2971), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2971), + [anon_sym_decltype] = ACTIONS(2971), + [anon_sym_explicit] = ACTIONS(2971), + [anon_sym_typename] = ACTIONS(2971), + [anon_sym_export] = ACTIONS(2971), + [anon_sym_module] = ACTIONS(2971), + [anon_sym_import] = ACTIONS(2971), + [anon_sym_template] = ACTIONS(2971), + [anon_sym_operator] = ACTIONS(2971), + [anon_sym_try] = ACTIONS(2971), + [anon_sym_delete] = ACTIONS(2971), + [anon_sym_throw] = ACTIONS(2971), + [anon_sym_namespace] = ACTIONS(2971), + [anon_sym_static_assert] = ACTIONS(2971), + [anon_sym_concept] = ACTIONS(2971), + [anon_sym_co_return] = ACTIONS(2971), + [anon_sym_co_yield] = ACTIONS(2971), + [anon_sym_R_DQUOTE] = ACTIONS(2973), + [anon_sym_LR_DQUOTE] = ACTIONS(2973), + [anon_sym_uR_DQUOTE] = ACTIONS(2973), + [anon_sym_UR_DQUOTE] = ACTIONS(2973), + [anon_sym_u8R_DQUOTE] = ACTIONS(2973), + [anon_sym_co_await] = ACTIONS(2971), + [anon_sym_new] = ACTIONS(2971), + [anon_sym_requires] = ACTIONS(2971), + [sym_this] = ACTIONS(2971), + }, + [503] = { + [ts_builtin_sym_end] = ACTIONS(2793), + [sym_identifier] = ACTIONS(2791), + [aux_sym_preproc_include_token1] = ACTIONS(2791), + [aux_sym_preproc_def_token1] = ACTIONS(2791), + [aux_sym_preproc_if_token1] = ACTIONS(2791), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2791), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2791), + [sym_preproc_directive] = ACTIONS(2791), + [anon_sym_LPAREN2] = ACTIONS(2793), + [anon_sym_BANG] = ACTIONS(2793), + [anon_sym_TILDE] = ACTIONS(2793), + [anon_sym_DASH] = ACTIONS(2791), + [anon_sym_PLUS] = ACTIONS(2791), + [anon_sym_STAR] = ACTIONS(2793), + [anon_sym_AMP_AMP] = ACTIONS(2793), + [anon_sym_AMP] = ACTIONS(2791), + [anon_sym_SEMI] = ACTIONS(2793), + [anon_sym___extension__] = ACTIONS(2791), + [anon_sym_typedef] = ACTIONS(2791), + [anon_sym_virtual] = ACTIONS(2791), + [anon_sym_extern] = ACTIONS(2791), + [anon_sym___attribute__] = ACTIONS(2791), + [anon_sym___attribute] = ACTIONS(2791), + [anon_sym_using] = ACTIONS(2791), + [anon_sym_COLON_COLON] = ACTIONS(2793), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2793), + [anon_sym___declspec] = ACTIONS(2791), + [anon_sym___based] = ACTIONS(2791), + [anon_sym___cdecl] = ACTIONS(2791), + [anon_sym___clrcall] = ACTIONS(2791), + [anon_sym___stdcall] = ACTIONS(2791), + [anon_sym___fastcall] = ACTIONS(2791), + [anon_sym___thiscall] = ACTIONS(2791), + [anon_sym___vectorcall] = ACTIONS(2791), + [anon_sym_LBRACE] = ACTIONS(2793), + [anon_sym_signed] = ACTIONS(2791), + [anon_sym_unsigned] = ACTIONS(2791), + [anon_sym_long] = ACTIONS(2791), + [anon_sym_short] = ACTIONS(2791), + [anon_sym_LBRACK] = ACTIONS(2791), + [anon_sym_static] = ACTIONS(2791), + [anon_sym_register] = ACTIONS(2791), + [anon_sym_inline] = ACTIONS(2791), + [anon_sym___inline] = ACTIONS(2791), + [anon_sym___inline__] = ACTIONS(2791), + [anon_sym___forceinline] = ACTIONS(2791), + [anon_sym_thread_local] = ACTIONS(2791), + [anon_sym___thread] = ACTIONS(2791), + [anon_sym_const] = ACTIONS(2791), + [anon_sym_constexpr] = ACTIONS(2791), + [anon_sym_volatile] = ACTIONS(2791), + [anon_sym_restrict] = ACTIONS(2791), + [anon_sym___restrict__] = ACTIONS(2791), + [anon_sym__Atomic] = ACTIONS(2791), + [anon_sym__Noreturn] = ACTIONS(2791), + [anon_sym_noreturn] = ACTIONS(2791), + [anon_sym__Nonnull] = ACTIONS(2791), + [anon_sym_mutable] = ACTIONS(2791), + [anon_sym_constinit] = ACTIONS(2791), + [anon_sym_consteval] = ACTIONS(2791), + [anon_sym_alignas] = ACTIONS(2791), + [anon_sym__Alignas] = ACTIONS(2791), + [sym_primitive_type] = ACTIONS(2791), + [anon_sym_enum] = ACTIONS(2791), + [anon_sym_class] = ACTIONS(2791), + [anon_sym_struct] = ACTIONS(2791), + [anon_sym_union] = ACTIONS(2791), + [anon_sym_if] = ACTIONS(2791), + [anon_sym_switch] = ACTIONS(2791), + [anon_sym_case] = ACTIONS(2791), + [anon_sym_default] = ACTIONS(2791), + [anon_sym_while] = ACTIONS(2791), + [anon_sym_do] = ACTIONS(2791), + [anon_sym_for] = ACTIONS(2791), + [anon_sym_return] = ACTIONS(2791), + [anon_sym_break] = ACTIONS(2791), + [anon_sym_continue] = ACTIONS(2791), + [anon_sym_goto] = ACTIONS(2791), + [anon_sym_not] = ACTIONS(2791), + [anon_sym_compl] = ACTIONS(2791), + [anon_sym_DASH_DASH] = ACTIONS(2793), + [anon_sym_PLUS_PLUS] = ACTIONS(2793), + [anon_sym_sizeof] = ACTIONS(2791), + [anon_sym___alignof__] = ACTIONS(2791), + [anon_sym___alignof] = ACTIONS(2791), + [anon_sym__alignof] = ACTIONS(2791), + [anon_sym_alignof] = ACTIONS(2791), + [anon_sym__Alignof] = ACTIONS(2791), + [anon_sym_offsetof] = ACTIONS(2791), + [anon_sym__Generic] = ACTIONS(2791), + [anon_sym_asm] = ACTIONS(2791), + [anon_sym___asm__] = ACTIONS(2791), + [anon_sym___asm] = ACTIONS(2791), + [sym_number_literal] = ACTIONS(2793), + [anon_sym_L_SQUOTE] = ACTIONS(2793), + [anon_sym_u_SQUOTE] = ACTIONS(2793), + [anon_sym_U_SQUOTE] = ACTIONS(2793), + [anon_sym_u8_SQUOTE] = ACTIONS(2793), + [anon_sym_SQUOTE] = ACTIONS(2793), + [anon_sym_L_DQUOTE] = ACTIONS(2793), + [anon_sym_u_DQUOTE] = ACTIONS(2793), + [anon_sym_U_DQUOTE] = ACTIONS(2793), + [anon_sym_u8_DQUOTE] = ACTIONS(2793), + [anon_sym_DQUOTE] = ACTIONS(2793), + [sym_true] = ACTIONS(2791), + [sym_false] = ACTIONS(2791), + [anon_sym_NULL] = ACTIONS(2791), + [anon_sym_nullptr] = ACTIONS(2791), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2791), + [anon_sym_decltype] = ACTIONS(2791), + [anon_sym_explicit] = ACTIONS(2791), + [anon_sym_typename] = ACTIONS(2791), + [anon_sym_export] = ACTIONS(2791), + [anon_sym_module] = ACTIONS(2791), + [anon_sym_import] = ACTIONS(2791), + [anon_sym_template] = ACTIONS(2791), + [anon_sym_operator] = ACTIONS(2791), + [anon_sym_try] = ACTIONS(2791), + [anon_sym_delete] = ACTIONS(2791), + [anon_sym_throw] = ACTIONS(2791), + [anon_sym_namespace] = ACTIONS(2791), + [anon_sym_static_assert] = ACTIONS(2791), + [anon_sym_concept] = ACTIONS(2791), + [anon_sym_co_return] = ACTIONS(2791), + [anon_sym_co_yield] = ACTIONS(2791), + [anon_sym_R_DQUOTE] = ACTIONS(2793), + [anon_sym_LR_DQUOTE] = ACTIONS(2793), + [anon_sym_uR_DQUOTE] = ACTIONS(2793), + [anon_sym_UR_DQUOTE] = ACTIONS(2793), + [anon_sym_u8R_DQUOTE] = ACTIONS(2793), + [anon_sym_co_await] = ACTIONS(2791), + [anon_sym_new] = ACTIONS(2791), + [anon_sym_requires] = ACTIONS(2791), + [sym_this] = ACTIONS(2791), + }, + [504] = { + [ts_builtin_sym_end] = ACTIONS(2977), + [sym_identifier] = ACTIONS(2975), + [aux_sym_preproc_include_token1] = ACTIONS(2975), + [aux_sym_preproc_def_token1] = ACTIONS(2975), + [aux_sym_preproc_if_token1] = ACTIONS(2975), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2975), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2975), + [sym_preproc_directive] = ACTIONS(2975), + [anon_sym_LPAREN2] = ACTIONS(2977), + [anon_sym_BANG] = ACTIONS(2977), + [anon_sym_TILDE] = ACTIONS(2977), + [anon_sym_DASH] = ACTIONS(2975), + [anon_sym_PLUS] = ACTIONS(2975), + [anon_sym_STAR] = ACTIONS(2977), + [anon_sym_AMP_AMP] = ACTIONS(2977), + [anon_sym_AMP] = ACTIONS(2975), + [anon_sym_SEMI] = ACTIONS(2977), + [anon_sym___extension__] = ACTIONS(2975), + [anon_sym_typedef] = ACTIONS(2975), + [anon_sym_virtual] = ACTIONS(2975), + [anon_sym_extern] = ACTIONS(2975), + [anon_sym___attribute__] = ACTIONS(2975), + [anon_sym___attribute] = ACTIONS(2975), + [anon_sym_using] = ACTIONS(2975), + [anon_sym_COLON_COLON] = ACTIONS(2977), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2977), + [anon_sym___declspec] = ACTIONS(2975), + [anon_sym___based] = ACTIONS(2975), + [anon_sym___cdecl] = ACTIONS(2975), + [anon_sym___clrcall] = ACTIONS(2975), + [anon_sym___stdcall] = ACTIONS(2975), + [anon_sym___fastcall] = ACTIONS(2975), + [anon_sym___thiscall] = ACTIONS(2975), + [anon_sym___vectorcall] = ACTIONS(2975), + [anon_sym_LBRACE] = ACTIONS(2977), + [anon_sym_signed] = ACTIONS(2975), + [anon_sym_unsigned] = ACTIONS(2975), + [anon_sym_long] = ACTIONS(2975), + [anon_sym_short] = ACTIONS(2975), + [anon_sym_LBRACK] = ACTIONS(2975), + [anon_sym_static] = ACTIONS(2975), + [anon_sym_register] = ACTIONS(2975), + [anon_sym_inline] = ACTIONS(2975), + [anon_sym___inline] = ACTIONS(2975), + [anon_sym___inline__] = ACTIONS(2975), + [anon_sym___forceinline] = ACTIONS(2975), + [anon_sym_thread_local] = ACTIONS(2975), + [anon_sym___thread] = ACTIONS(2975), + [anon_sym_const] = ACTIONS(2975), + [anon_sym_constexpr] = ACTIONS(2975), + [anon_sym_volatile] = ACTIONS(2975), + [anon_sym_restrict] = ACTIONS(2975), + [anon_sym___restrict__] = ACTIONS(2975), + [anon_sym__Atomic] = ACTIONS(2975), + [anon_sym__Noreturn] = ACTIONS(2975), + [anon_sym_noreturn] = ACTIONS(2975), + [anon_sym__Nonnull] = ACTIONS(2975), + [anon_sym_mutable] = ACTIONS(2975), + [anon_sym_constinit] = ACTIONS(2975), + [anon_sym_consteval] = ACTIONS(2975), + [anon_sym_alignas] = ACTIONS(2975), + [anon_sym__Alignas] = ACTIONS(2975), + [sym_primitive_type] = ACTIONS(2975), + [anon_sym_enum] = ACTIONS(2975), + [anon_sym_class] = ACTIONS(2975), + [anon_sym_struct] = ACTIONS(2975), + [anon_sym_union] = ACTIONS(2975), + [anon_sym_if] = ACTIONS(2975), + [anon_sym_switch] = ACTIONS(2975), + [anon_sym_case] = ACTIONS(2975), + [anon_sym_default] = ACTIONS(2975), + [anon_sym_while] = ACTIONS(2975), + [anon_sym_do] = ACTIONS(2975), + [anon_sym_for] = ACTIONS(2975), + [anon_sym_return] = ACTIONS(2975), + [anon_sym_break] = ACTIONS(2975), + [anon_sym_continue] = ACTIONS(2975), + [anon_sym_goto] = ACTIONS(2975), + [anon_sym_not] = ACTIONS(2975), + [anon_sym_compl] = ACTIONS(2975), + [anon_sym_DASH_DASH] = ACTIONS(2977), + [anon_sym_PLUS_PLUS] = ACTIONS(2977), + [anon_sym_sizeof] = ACTIONS(2975), + [anon_sym___alignof__] = ACTIONS(2975), + [anon_sym___alignof] = ACTIONS(2975), + [anon_sym__alignof] = ACTIONS(2975), + [anon_sym_alignof] = ACTIONS(2975), + [anon_sym__Alignof] = ACTIONS(2975), + [anon_sym_offsetof] = ACTIONS(2975), + [anon_sym__Generic] = ACTIONS(2975), + [anon_sym_asm] = ACTIONS(2975), + [anon_sym___asm__] = ACTIONS(2975), + [anon_sym___asm] = ACTIONS(2975), + [sym_number_literal] = ACTIONS(2977), + [anon_sym_L_SQUOTE] = ACTIONS(2977), + [anon_sym_u_SQUOTE] = ACTIONS(2977), + [anon_sym_U_SQUOTE] = ACTIONS(2977), + [anon_sym_u8_SQUOTE] = ACTIONS(2977), + [anon_sym_SQUOTE] = ACTIONS(2977), + [anon_sym_L_DQUOTE] = ACTIONS(2977), + [anon_sym_u_DQUOTE] = ACTIONS(2977), + [anon_sym_U_DQUOTE] = ACTIONS(2977), + [anon_sym_u8_DQUOTE] = ACTIONS(2977), + [anon_sym_DQUOTE] = ACTIONS(2977), + [sym_true] = ACTIONS(2975), + [sym_false] = ACTIONS(2975), + [anon_sym_NULL] = ACTIONS(2975), + [anon_sym_nullptr] = ACTIONS(2975), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2975), + [anon_sym_decltype] = ACTIONS(2975), + [anon_sym_explicit] = ACTIONS(2975), + [anon_sym_typename] = ACTIONS(2975), + [anon_sym_export] = ACTIONS(2975), + [anon_sym_module] = ACTIONS(2975), + [anon_sym_import] = ACTIONS(2975), + [anon_sym_template] = ACTIONS(2975), + [anon_sym_operator] = ACTIONS(2975), + [anon_sym_try] = ACTIONS(2975), + [anon_sym_delete] = ACTIONS(2975), + [anon_sym_throw] = ACTIONS(2975), + [anon_sym_namespace] = ACTIONS(2975), + [anon_sym_static_assert] = ACTIONS(2975), + [anon_sym_concept] = ACTIONS(2975), + [anon_sym_co_return] = ACTIONS(2975), + [anon_sym_co_yield] = ACTIONS(2975), + [anon_sym_R_DQUOTE] = ACTIONS(2977), + [anon_sym_LR_DQUOTE] = ACTIONS(2977), + [anon_sym_uR_DQUOTE] = ACTIONS(2977), + [anon_sym_UR_DQUOTE] = ACTIONS(2977), + [anon_sym_u8R_DQUOTE] = ACTIONS(2977), + [anon_sym_co_await] = ACTIONS(2975), + [anon_sym_new] = ACTIONS(2975), + [anon_sym_requires] = ACTIONS(2975), + [sym_this] = ACTIONS(2975), + }, + [505] = { + [ts_builtin_sym_end] = ACTIONS(2849), + [sym_identifier] = ACTIONS(2847), + [aux_sym_preproc_include_token1] = ACTIONS(2847), + [aux_sym_preproc_def_token1] = ACTIONS(2847), + [aux_sym_preproc_if_token1] = ACTIONS(2847), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2847), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2847), + [sym_preproc_directive] = ACTIONS(2847), + [anon_sym_LPAREN2] = ACTIONS(2849), + [anon_sym_BANG] = ACTIONS(2849), + [anon_sym_TILDE] = ACTIONS(2849), + [anon_sym_DASH] = ACTIONS(2847), + [anon_sym_PLUS] = ACTIONS(2847), + [anon_sym_STAR] = ACTIONS(2849), + [anon_sym_AMP_AMP] = ACTIONS(2849), + [anon_sym_AMP] = ACTIONS(2847), + [anon_sym_SEMI] = ACTIONS(2849), + [anon_sym___extension__] = ACTIONS(2847), + [anon_sym_typedef] = ACTIONS(2847), + [anon_sym_virtual] = ACTIONS(2847), + [anon_sym_extern] = ACTIONS(2847), + [anon_sym___attribute__] = ACTIONS(2847), + [anon_sym___attribute] = ACTIONS(2847), + [anon_sym_using] = ACTIONS(2847), + [anon_sym_COLON_COLON] = ACTIONS(2849), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2849), + [anon_sym___declspec] = ACTIONS(2847), + [anon_sym___based] = ACTIONS(2847), + [anon_sym___cdecl] = ACTIONS(2847), + [anon_sym___clrcall] = ACTIONS(2847), + [anon_sym___stdcall] = ACTIONS(2847), + [anon_sym___fastcall] = ACTIONS(2847), + [anon_sym___thiscall] = ACTIONS(2847), + [anon_sym___vectorcall] = ACTIONS(2847), + [anon_sym_LBRACE] = ACTIONS(2849), [anon_sym_signed] = ACTIONS(2847), [anon_sym_unsigned] = ACTIONS(2847), [anon_sym_long] = ACTIONS(2847), @@ -114787,555 +116057,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2847), [sym_this] = ACTIONS(2847), }, - [499] = { - [ts_builtin_sym_end] = ACTIONS(3375), - [sym_identifier] = ACTIONS(3377), - [aux_sym_preproc_include_token1] = ACTIONS(3377), - [aux_sym_preproc_def_token1] = ACTIONS(3377), - [aux_sym_preproc_if_token1] = ACTIONS(3377), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3377), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3377), - [sym_preproc_directive] = ACTIONS(3377), - [anon_sym_LPAREN2] = ACTIONS(3375), - [anon_sym_BANG] = ACTIONS(3375), - [anon_sym_TILDE] = ACTIONS(3375), - [anon_sym_DASH] = ACTIONS(3377), - [anon_sym_PLUS] = ACTIONS(3377), - [anon_sym_STAR] = ACTIONS(3375), - [anon_sym_AMP_AMP] = ACTIONS(3375), - [anon_sym_AMP] = ACTIONS(3377), - [anon_sym_SEMI] = ACTIONS(3375), - [anon_sym___extension__] = ACTIONS(3377), - [anon_sym_typedef] = ACTIONS(3377), - [anon_sym_virtual] = ACTIONS(3377), - [anon_sym_extern] = ACTIONS(3377), - [anon_sym___attribute__] = ACTIONS(3377), - [anon_sym___attribute] = ACTIONS(3377), - [anon_sym_using] = ACTIONS(3377), - [anon_sym_COLON_COLON] = ACTIONS(3375), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3375), - [anon_sym___declspec] = ACTIONS(3377), - [anon_sym___based] = ACTIONS(3377), - [anon_sym___cdecl] = ACTIONS(3377), - [anon_sym___clrcall] = ACTIONS(3377), - [anon_sym___stdcall] = ACTIONS(3377), - [anon_sym___fastcall] = ACTIONS(3377), - [anon_sym___thiscall] = ACTIONS(3377), - [anon_sym___vectorcall] = ACTIONS(3377), - [anon_sym_LBRACE] = ACTIONS(3375), - [anon_sym_signed] = ACTIONS(3377), - [anon_sym_unsigned] = ACTIONS(3377), - [anon_sym_long] = ACTIONS(3377), - [anon_sym_short] = ACTIONS(3377), - [anon_sym_LBRACK] = ACTIONS(3377), - [anon_sym_static] = ACTIONS(3377), - [anon_sym_register] = ACTIONS(3377), - [anon_sym_inline] = ACTIONS(3377), - [anon_sym___inline] = ACTIONS(3377), - [anon_sym___inline__] = ACTIONS(3377), - [anon_sym___forceinline] = ACTIONS(3377), - [anon_sym_thread_local] = ACTIONS(3377), - [anon_sym___thread] = ACTIONS(3377), - [anon_sym_const] = ACTIONS(3377), - [anon_sym_constexpr] = ACTIONS(3377), - [anon_sym_volatile] = ACTIONS(3377), - [anon_sym_restrict] = ACTIONS(3377), - [anon_sym___restrict__] = ACTIONS(3377), - [anon_sym__Atomic] = ACTIONS(3377), - [anon_sym__Noreturn] = ACTIONS(3377), - [anon_sym_noreturn] = ACTIONS(3377), - [anon_sym__Nonnull] = ACTIONS(3377), - [anon_sym_mutable] = ACTIONS(3377), - [anon_sym_constinit] = ACTIONS(3377), - [anon_sym_consteval] = ACTIONS(3377), - [anon_sym_alignas] = ACTIONS(3377), - [anon_sym__Alignas] = ACTIONS(3377), - [sym_primitive_type] = ACTIONS(3377), - [anon_sym_enum] = ACTIONS(3377), - [anon_sym_class] = ACTIONS(3377), - [anon_sym_struct] = ACTIONS(3377), - [anon_sym_union] = ACTIONS(3377), - [anon_sym_if] = ACTIONS(3377), - [anon_sym_switch] = ACTIONS(3377), - [anon_sym_case] = ACTIONS(3377), - [anon_sym_default] = ACTIONS(3377), - [anon_sym_while] = ACTIONS(3377), - [anon_sym_do] = ACTIONS(3377), - [anon_sym_for] = ACTIONS(3377), - [anon_sym_return] = ACTIONS(3377), - [anon_sym_break] = ACTIONS(3377), - [anon_sym_continue] = ACTIONS(3377), - [anon_sym_goto] = ACTIONS(3377), - [anon_sym_not] = ACTIONS(3377), - [anon_sym_compl] = ACTIONS(3377), - [anon_sym_DASH_DASH] = ACTIONS(3375), - [anon_sym_PLUS_PLUS] = ACTIONS(3375), - [anon_sym_sizeof] = ACTIONS(3377), - [anon_sym___alignof__] = ACTIONS(3377), - [anon_sym___alignof] = ACTIONS(3377), - [anon_sym__alignof] = ACTIONS(3377), - [anon_sym_alignof] = ACTIONS(3377), - [anon_sym__Alignof] = ACTIONS(3377), - [anon_sym_offsetof] = ACTIONS(3377), - [anon_sym__Generic] = ACTIONS(3377), - [anon_sym_asm] = ACTIONS(3377), - [anon_sym___asm__] = ACTIONS(3377), - [anon_sym___asm] = ACTIONS(3377), - [sym_number_literal] = ACTIONS(3375), - [anon_sym_L_SQUOTE] = ACTIONS(3375), - [anon_sym_u_SQUOTE] = ACTIONS(3375), - [anon_sym_U_SQUOTE] = ACTIONS(3375), - [anon_sym_u8_SQUOTE] = ACTIONS(3375), - [anon_sym_SQUOTE] = ACTIONS(3375), - [anon_sym_L_DQUOTE] = ACTIONS(3375), - [anon_sym_u_DQUOTE] = ACTIONS(3375), - [anon_sym_U_DQUOTE] = ACTIONS(3375), - [anon_sym_u8_DQUOTE] = ACTIONS(3375), - [anon_sym_DQUOTE] = ACTIONS(3375), - [sym_true] = ACTIONS(3377), - [sym_false] = ACTIONS(3377), - [anon_sym_NULL] = ACTIONS(3377), - [anon_sym_nullptr] = ACTIONS(3377), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3377), - [anon_sym_decltype] = ACTIONS(3377), - [anon_sym_explicit] = ACTIONS(3377), - [anon_sym_typename] = ACTIONS(3377), - [anon_sym_export] = ACTIONS(3377), - [anon_sym_module] = ACTIONS(3377), - [anon_sym_import] = ACTIONS(3377), - [anon_sym_template] = ACTIONS(3377), - [anon_sym_operator] = ACTIONS(3377), - [anon_sym_try] = ACTIONS(3377), - [anon_sym_delete] = ACTIONS(3377), - [anon_sym_throw] = ACTIONS(3377), - [anon_sym_namespace] = ACTIONS(3377), - [anon_sym_static_assert] = ACTIONS(3377), - [anon_sym_concept] = ACTIONS(3377), - [anon_sym_co_return] = ACTIONS(3377), - [anon_sym_co_yield] = ACTIONS(3377), - [anon_sym_R_DQUOTE] = ACTIONS(3375), - [anon_sym_LR_DQUOTE] = ACTIONS(3375), - [anon_sym_uR_DQUOTE] = ACTIONS(3375), - [anon_sym_UR_DQUOTE] = ACTIONS(3375), - [anon_sym_u8R_DQUOTE] = ACTIONS(3375), - [anon_sym_co_await] = ACTIONS(3377), - [anon_sym_new] = ACTIONS(3377), - [anon_sym_requires] = ACTIONS(3377), - [sym_this] = ACTIONS(3377), - }, - [500] = { - [ts_builtin_sym_end] = ACTIONS(2885), - [sym_identifier] = ACTIONS(2883), - [aux_sym_preproc_include_token1] = ACTIONS(2883), - [aux_sym_preproc_def_token1] = ACTIONS(2883), - [aux_sym_preproc_if_token1] = ACTIONS(2883), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2883), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2883), - [sym_preproc_directive] = ACTIONS(2883), - [anon_sym_LPAREN2] = ACTIONS(2885), - [anon_sym_BANG] = ACTIONS(2885), - [anon_sym_TILDE] = ACTIONS(2885), - [anon_sym_DASH] = ACTIONS(2883), - [anon_sym_PLUS] = ACTIONS(2883), - [anon_sym_STAR] = ACTIONS(2885), - [anon_sym_AMP_AMP] = ACTIONS(2885), - [anon_sym_AMP] = ACTIONS(2883), - [anon_sym_SEMI] = ACTIONS(2885), - [anon_sym___extension__] = ACTIONS(2883), - [anon_sym_typedef] = ACTIONS(2883), - [anon_sym_virtual] = ACTIONS(2883), - [anon_sym_extern] = ACTIONS(2883), - [anon_sym___attribute__] = ACTIONS(2883), - [anon_sym___attribute] = ACTIONS(2883), - [anon_sym_using] = ACTIONS(2883), - [anon_sym_COLON_COLON] = ACTIONS(2885), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2885), - [anon_sym___declspec] = ACTIONS(2883), - [anon_sym___based] = ACTIONS(2883), - [anon_sym___cdecl] = ACTIONS(2883), - [anon_sym___clrcall] = ACTIONS(2883), - [anon_sym___stdcall] = ACTIONS(2883), - [anon_sym___fastcall] = ACTIONS(2883), - [anon_sym___thiscall] = ACTIONS(2883), - [anon_sym___vectorcall] = ACTIONS(2883), - [anon_sym_LBRACE] = ACTIONS(2885), - [anon_sym_signed] = ACTIONS(2883), - [anon_sym_unsigned] = ACTIONS(2883), - [anon_sym_long] = ACTIONS(2883), - [anon_sym_short] = ACTIONS(2883), - [anon_sym_LBRACK] = ACTIONS(2883), - [anon_sym_static] = ACTIONS(2883), - [anon_sym_register] = ACTIONS(2883), - [anon_sym_inline] = ACTIONS(2883), - [anon_sym___inline] = ACTIONS(2883), - [anon_sym___inline__] = ACTIONS(2883), - [anon_sym___forceinline] = ACTIONS(2883), - [anon_sym_thread_local] = ACTIONS(2883), - [anon_sym___thread] = ACTIONS(2883), - [anon_sym_const] = ACTIONS(2883), - [anon_sym_constexpr] = ACTIONS(2883), - [anon_sym_volatile] = ACTIONS(2883), - [anon_sym_restrict] = ACTIONS(2883), - [anon_sym___restrict__] = ACTIONS(2883), - [anon_sym__Atomic] = ACTIONS(2883), - [anon_sym__Noreturn] = ACTIONS(2883), - [anon_sym_noreturn] = ACTIONS(2883), - [anon_sym__Nonnull] = ACTIONS(2883), - [anon_sym_mutable] = ACTIONS(2883), - [anon_sym_constinit] = ACTIONS(2883), - [anon_sym_consteval] = ACTIONS(2883), - [anon_sym_alignas] = ACTIONS(2883), - [anon_sym__Alignas] = ACTIONS(2883), - [sym_primitive_type] = ACTIONS(2883), - [anon_sym_enum] = ACTIONS(2883), - [anon_sym_class] = ACTIONS(2883), - [anon_sym_struct] = ACTIONS(2883), - [anon_sym_union] = ACTIONS(2883), - [anon_sym_if] = ACTIONS(2883), - [anon_sym_switch] = ACTIONS(2883), - [anon_sym_case] = ACTIONS(2883), - [anon_sym_default] = ACTIONS(2883), - [anon_sym_while] = ACTIONS(2883), - [anon_sym_do] = ACTIONS(2883), - [anon_sym_for] = ACTIONS(2883), - [anon_sym_return] = ACTIONS(2883), - [anon_sym_break] = ACTIONS(2883), - [anon_sym_continue] = ACTIONS(2883), - [anon_sym_goto] = ACTIONS(2883), - [anon_sym_not] = ACTIONS(2883), - [anon_sym_compl] = ACTIONS(2883), - [anon_sym_DASH_DASH] = ACTIONS(2885), - [anon_sym_PLUS_PLUS] = ACTIONS(2885), - [anon_sym_sizeof] = ACTIONS(2883), - [anon_sym___alignof__] = ACTIONS(2883), - [anon_sym___alignof] = ACTIONS(2883), - [anon_sym__alignof] = ACTIONS(2883), - [anon_sym_alignof] = ACTIONS(2883), - [anon_sym__Alignof] = ACTIONS(2883), - [anon_sym_offsetof] = ACTIONS(2883), - [anon_sym__Generic] = ACTIONS(2883), - [anon_sym_asm] = ACTIONS(2883), - [anon_sym___asm__] = ACTIONS(2883), - [anon_sym___asm] = ACTIONS(2883), - [sym_number_literal] = ACTIONS(2885), - [anon_sym_L_SQUOTE] = ACTIONS(2885), - [anon_sym_u_SQUOTE] = ACTIONS(2885), - [anon_sym_U_SQUOTE] = ACTIONS(2885), - [anon_sym_u8_SQUOTE] = ACTIONS(2885), - [anon_sym_SQUOTE] = ACTIONS(2885), - [anon_sym_L_DQUOTE] = ACTIONS(2885), - [anon_sym_u_DQUOTE] = ACTIONS(2885), - [anon_sym_U_DQUOTE] = ACTIONS(2885), - [anon_sym_u8_DQUOTE] = ACTIONS(2885), - [anon_sym_DQUOTE] = ACTIONS(2885), - [sym_true] = ACTIONS(2883), - [sym_false] = ACTIONS(2883), - [anon_sym_NULL] = ACTIONS(2883), - [anon_sym_nullptr] = ACTIONS(2883), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2883), - [anon_sym_decltype] = ACTIONS(2883), - [anon_sym_explicit] = ACTIONS(2883), - [anon_sym_typename] = ACTIONS(2883), - [anon_sym_export] = ACTIONS(2883), - [anon_sym_module] = ACTIONS(2883), - [anon_sym_import] = ACTIONS(2883), - [anon_sym_template] = ACTIONS(2883), - [anon_sym_operator] = ACTIONS(2883), - [anon_sym_try] = ACTIONS(2883), - [anon_sym_delete] = ACTIONS(2883), - [anon_sym_throw] = ACTIONS(2883), - [anon_sym_namespace] = ACTIONS(2883), - [anon_sym_static_assert] = ACTIONS(2883), - [anon_sym_concept] = ACTIONS(2883), - [anon_sym_co_return] = ACTIONS(2883), - [anon_sym_co_yield] = ACTIONS(2883), - [anon_sym_R_DQUOTE] = ACTIONS(2885), - [anon_sym_LR_DQUOTE] = ACTIONS(2885), - [anon_sym_uR_DQUOTE] = ACTIONS(2885), - [anon_sym_UR_DQUOTE] = ACTIONS(2885), - [anon_sym_u8R_DQUOTE] = ACTIONS(2885), - [anon_sym_co_await] = ACTIONS(2883), - [anon_sym_new] = ACTIONS(2883), - [anon_sym_requires] = ACTIONS(2883), - [sym_this] = ACTIONS(2883), - }, - [501] = { - [ts_builtin_sym_end] = ACTIONS(2901), - [sym_identifier] = ACTIONS(2899), - [aux_sym_preproc_include_token1] = ACTIONS(2899), - [aux_sym_preproc_def_token1] = ACTIONS(2899), - [aux_sym_preproc_if_token1] = ACTIONS(2899), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2899), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2899), - [sym_preproc_directive] = ACTIONS(2899), - [anon_sym_LPAREN2] = ACTIONS(2901), - [anon_sym_BANG] = ACTIONS(2901), - [anon_sym_TILDE] = ACTIONS(2901), - [anon_sym_DASH] = ACTIONS(2899), - [anon_sym_PLUS] = ACTIONS(2899), - [anon_sym_STAR] = ACTIONS(2901), - [anon_sym_AMP_AMP] = ACTIONS(2901), - [anon_sym_AMP] = ACTIONS(2899), - [anon_sym_SEMI] = ACTIONS(2901), - [anon_sym___extension__] = ACTIONS(2899), - [anon_sym_typedef] = ACTIONS(2899), - [anon_sym_virtual] = ACTIONS(2899), - [anon_sym_extern] = ACTIONS(2899), - [anon_sym___attribute__] = ACTIONS(2899), - [anon_sym___attribute] = ACTIONS(2899), - [anon_sym_using] = ACTIONS(2899), - [anon_sym_COLON_COLON] = ACTIONS(2901), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2901), - [anon_sym___declspec] = ACTIONS(2899), - [anon_sym___based] = ACTIONS(2899), - [anon_sym___cdecl] = ACTIONS(2899), - [anon_sym___clrcall] = ACTIONS(2899), - [anon_sym___stdcall] = ACTIONS(2899), - [anon_sym___fastcall] = ACTIONS(2899), - [anon_sym___thiscall] = ACTIONS(2899), - [anon_sym___vectorcall] = ACTIONS(2899), - [anon_sym_LBRACE] = ACTIONS(2901), - [anon_sym_signed] = ACTIONS(2899), - [anon_sym_unsigned] = ACTIONS(2899), - [anon_sym_long] = ACTIONS(2899), - [anon_sym_short] = ACTIONS(2899), - [anon_sym_LBRACK] = ACTIONS(2899), - [anon_sym_static] = ACTIONS(2899), - [anon_sym_register] = ACTIONS(2899), - [anon_sym_inline] = ACTIONS(2899), - [anon_sym___inline] = ACTIONS(2899), - [anon_sym___inline__] = ACTIONS(2899), - [anon_sym___forceinline] = ACTIONS(2899), - [anon_sym_thread_local] = ACTIONS(2899), - [anon_sym___thread] = ACTIONS(2899), - [anon_sym_const] = ACTIONS(2899), - [anon_sym_constexpr] = ACTIONS(2899), - [anon_sym_volatile] = ACTIONS(2899), - [anon_sym_restrict] = ACTIONS(2899), - [anon_sym___restrict__] = ACTIONS(2899), - [anon_sym__Atomic] = ACTIONS(2899), - [anon_sym__Noreturn] = ACTIONS(2899), - [anon_sym_noreturn] = ACTIONS(2899), - [anon_sym__Nonnull] = ACTIONS(2899), - [anon_sym_mutable] = ACTIONS(2899), - [anon_sym_constinit] = ACTIONS(2899), - [anon_sym_consteval] = ACTIONS(2899), - [anon_sym_alignas] = ACTIONS(2899), - [anon_sym__Alignas] = ACTIONS(2899), - [sym_primitive_type] = ACTIONS(2899), - [anon_sym_enum] = ACTIONS(2899), - [anon_sym_class] = ACTIONS(2899), - [anon_sym_struct] = ACTIONS(2899), - [anon_sym_union] = ACTIONS(2899), - [anon_sym_if] = ACTIONS(2899), - [anon_sym_switch] = ACTIONS(2899), - [anon_sym_case] = ACTIONS(2899), - [anon_sym_default] = ACTIONS(2899), - [anon_sym_while] = ACTIONS(2899), - [anon_sym_do] = ACTIONS(2899), - [anon_sym_for] = ACTIONS(2899), - [anon_sym_return] = ACTIONS(2899), - [anon_sym_break] = ACTIONS(2899), - [anon_sym_continue] = ACTIONS(2899), - [anon_sym_goto] = ACTIONS(2899), - [anon_sym_not] = ACTIONS(2899), - [anon_sym_compl] = ACTIONS(2899), - [anon_sym_DASH_DASH] = ACTIONS(2901), - [anon_sym_PLUS_PLUS] = ACTIONS(2901), - [anon_sym_sizeof] = ACTIONS(2899), - [anon_sym___alignof__] = ACTIONS(2899), - [anon_sym___alignof] = ACTIONS(2899), - [anon_sym__alignof] = ACTIONS(2899), - [anon_sym_alignof] = ACTIONS(2899), - [anon_sym__Alignof] = ACTIONS(2899), - [anon_sym_offsetof] = ACTIONS(2899), - [anon_sym__Generic] = ACTIONS(2899), - [anon_sym_asm] = ACTIONS(2899), - [anon_sym___asm__] = ACTIONS(2899), - [anon_sym___asm] = ACTIONS(2899), - [sym_number_literal] = ACTIONS(2901), - [anon_sym_L_SQUOTE] = ACTIONS(2901), - [anon_sym_u_SQUOTE] = ACTIONS(2901), - [anon_sym_U_SQUOTE] = ACTIONS(2901), - [anon_sym_u8_SQUOTE] = ACTIONS(2901), - [anon_sym_SQUOTE] = ACTIONS(2901), - [anon_sym_L_DQUOTE] = ACTIONS(2901), - [anon_sym_u_DQUOTE] = ACTIONS(2901), - [anon_sym_U_DQUOTE] = ACTIONS(2901), - [anon_sym_u8_DQUOTE] = ACTIONS(2901), - [anon_sym_DQUOTE] = ACTIONS(2901), - [sym_true] = ACTIONS(2899), - [sym_false] = ACTIONS(2899), - [anon_sym_NULL] = ACTIONS(2899), - [anon_sym_nullptr] = ACTIONS(2899), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2899), - [anon_sym_decltype] = ACTIONS(2899), - [anon_sym_explicit] = ACTIONS(2899), - [anon_sym_typename] = ACTIONS(2899), - [anon_sym_export] = ACTIONS(2899), - [anon_sym_module] = ACTIONS(2899), - [anon_sym_import] = ACTIONS(2899), - [anon_sym_template] = ACTIONS(2899), - [anon_sym_operator] = ACTIONS(2899), - [anon_sym_try] = ACTIONS(2899), - [anon_sym_delete] = ACTIONS(2899), - [anon_sym_throw] = ACTIONS(2899), - [anon_sym_namespace] = ACTIONS(2899), - [anon_sym_static_assert] = ACTIONS(2899), - [anon_sym_concept] = ACTIONS(2899), - [anon_sym_co_return] = ACTIONS(2899), - [anon_sym_co_yield] = ACTIONS(2899), - [anon_sym_R_DQUOTE] = ACTIONS(2901), - [anon_sym_LR_DQUOTE] = ACTIONS(2901), - [anon_sym_uR_DQUOTE] = ACTIONS(2901), - [anon_sym_UR_DQUOTE] = ACTIONS(2901), - [anon_sym_u8R_DQUOTE] = ACTIONS(2901), - [anon_sym_co_await] = ACTIONS(2899), - [anon_sym_new] = ACTIONS(2899), - [anon_sym_requires] = ACTIONS(2899), - [sym_this] = ACTIONS(2899), - }, - [502] = { - [sym_identifier] = ACTIONS(2719), - [aux_sym_preproc_include_token1] = ACTIONS(2719), - [aux_sym_preproc_def_token1] = ACTIONS(2719), - [aux_sym_preproc_if_token1] = ACTIONS(2719), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2719), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2719), - [sym_preproc_directive] = ACTIONS(2719), - [anon_sym_LPAREN2] = ACTIONS(2721), - [anon_sym_BANG] = ACTIONS(2721), - [anon_sym_TILDE] = ACTIONS(2721), - [anon_sym_DASH] = ACTIONS(2719), - [anon_sym_PLUS] = ACTIONS(2719), - [anon_sym_STAR] = ACTIONS(2721), - [anon_sym_AMP_AMP] = ACTIONS(2721), - [anon_sym_AMP] = ACTIONS(2719), - [anon_sym_SEMI] = ACTIONS(2721), - [anon_sym___extension__] = ACTIONS(2719), - [anon_sym_typedef] = ACTIONS(2719), - [anon_sym_virtual] = ACTIONS(2719), - [anon_sym_extern] = ACTIONS(2719), - [anon_sym___attribute__] = ACTIONS(2719), - [anon_sym___attribute] = ACTIONS(2719), - [anon_sym_using] = ACTIONS(2719), - [anon_sym_COLON_COLON] = ACTIONS(2721), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2721), - [anon_sym___declspec] = ACTIONS(2719), - [anon_sym___based] = ACTIONS(2719), - [anon_sym___cdecl] = ACTIONS(2719), - [anon_sym___clrcall] = ACTIONS(2719), - [anon_sym___stdcall] = ACTIONS(2719), - [anon_sym___fastcall] = ACTIONS(2719), - [anon_sym___thiscall] = ACTIONS(2719), - [anon_sym___vectorcall] = ACTIONS(2719), - [anon_sym_LBRACE] = ACTIONS(2721), - [anon_sym_RBRACE] = ACTIONS(2721), - [anon_sym_signed] = ACTIONS(2719), - [anon_sym_unsigned] = ACTIONS(2719), - [anon_sym_long] = ACTIONS(2719), - [anon_sym_short] = ACTIONS(2719), - [anon_sym_LBRACK] = ACTIONS(2719), - [anon_sym_static] = ACTIONS(2719), - [anon_sym_register] = ACTIONS(2719), - [anon_sym_inline] = ACTIONS(2719), - [anon_sym___inline] = ACTIONS(2719), - [anon_sym___inline__] = ACTIONS(2719), - [anon_sym___forceinline] = ACTIONS(2719), - [anon_sym_thread_local] = ACTIONS(2719), - [anon_sym___thread] = ACTIONS(2719), - [anon_sym_const] = ACTIONS(2719), - [anon_sym_constexpr] = ACTIONS(2719), - [anon_sym_volatile] = ACTIONS(2719), - [anon_sym_restrict] = ACTIONS(2719), - [anon_sym___restrict__] = ACTIONS(2719), - [anon_sym__Atomic] = ACTIONS(2719), - [anon_sym__Noreturn] = ACTIONS(2719), - [anon_sym_noreturn] = ACTIONS(2719), - [anon_sym__Nonnull] = ACTIONS(2719), - [anon_sym_mutable] = ACTIONS(2719), - [anon_sym_constinit] = ACTIONS(2719), - [anon_sym_consteval] = ACTIONS(2719), - [anon_sym_alignas] = ACTIONS(2719), - [anon_sym__Alignas] = ACTIONS(2719), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(2719), - [anon_sym_class] = ACTIONS(2719), - [anon_sym_struct] = ACTIONS(2719), - [anon_sym_union] = ACTIONS(2719), - [anon_sym_if] = ACTIONS(2719), - [anon_sym_else] = ACTIONS(2719), - [anon_sym_switch] = ACTIONS(2719), - [anon_sym_case] = ACTIONS(2719), - [anon_sym_default] = ACTIONS(2719), - [anon_sym_while] = ACTIONS(2719), - [anon_sym_do] = ACTIONS(2719), - [anon_sym_for] = ACTIONS(2719), - [anon_sym_return] = ACTIONS(2719), - [anon_sym_break] = ACTIONS(2719), - [anon_sym_continue] = ACTIONS(2719), - [anon_sym_goto] = ACTIONS(2719), - [anon_sym___try] = ACTIONS(2719), - [anon_sym___leave] = ACTIONS(2719), - [anon_sym_not] = ACTIONS(2719), - [anon_sym_compl] = ACTIONS(2719), - [anon_sym_DASH_DASH] = ACTIONS(2721), - [anon_sym_PLUS_PLUS] = ACTIONS(2721), - [anon_sym_sizeof] = ACTIONS(2719), - [anon_sym___alignof__] = ACTIONS(2719), - [anon_sym___alignof] = ACTIONS(2719), - [anon_sym__alignof] = ACTIONS(2719), - [anon_sym_alignof] = ACTIONS(2719), - [anon_sym__Alignof] = ACTIONS(2719), - [anon_sym_offsetof] = ACTIONS(2719), - [anon_sym__Generic] = ACTIONS(2719), - [anon_sym_asm] = ACTIONS(2719), - [anon_sym___asm__] = ACTIONS(2719), - [anon_sym___asm] = ACTIONS(2719), - [sym_number_literal] = ACTIONS(2721), - [anon_sym_L_SQUOTE] = ACTIONS(2721), - [anon_sym_u_SQUOTE] = ACTIONS(2721), - [anon_sym_U_SQUOTE] = ACTIONS(2721), - [anon_sym_u8_SQUOTE] = ACTIONS(2721), - [anon_sym_SQUOTE] = ACTIONS(2721), - [anon_sym_L_DQUOTE] = ACTIONS(2721), - [anon_sym_u_DQUOTE] = ACTIONS(2721), - [anon_sym_U_DQUOTE] = ACTIONS(2721), - [anon_sym_u8_DQUOTE] = ACTIONS(2721), - [anon_sym_DQUOTE] = ACTIONS(2721), - [sym_true] = ACTIONS(2719), - [sym_false] = ACTIONS(2719), - [anon_sym_NULL] = ACTIONS(2719), - [anon_sym_nullptr] = ACTIONS(2719), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2719), - [anon_sym_decltype] = ACTIONS(2719), - [anon_sym_explicit] = ACTIONS(2719), - [anon_sym_typename] = ACTIONS(2719), - [anon_sym_template] = ACTIONS(2719), - [anon_sym_operator] = ACTIONS(2719), - [anon_sym_try] = ACTIONS(2719), - [anon_sym_delete] = ACTIONS(2719), - [anon_sym_throw] = ACTIONS(2719), - [anon_sym_namespace] = ACTIONS(2719), - [anon_sym_static_assert] = ACTIONS(2719), - [anon_sym_concept] = ACTIONS(2719), - [anon_sym_co_return] = ACTIONS(2719), - [anon_sym_co_yield] = ACTIONS(2719), - [anon_sym_R_DQUOTE] = ACTIONS(2721), - [anon_sym_LR_DQUOTE] = ACTIONS(2721), - [anon_sym_uR_DQUOTE] = ACTIONS(2721), - [anon_sym_UR_DQUOTE] = ACTIONS(2721), - [anon_sym_u8R_DQUOTE] = ACTIONS(2721), - [anon_sym_co_await] = ACTIONS(2719), - [anon_sym_new] = ACTIONS(2719), - [anon_sym_requires] = ACTIONS(2719), - [sym_this] = ACTIONS(2719), - }, - [503] = { + [506] = { [ts_builtin_sym_end] = ACTIONS(2853), [sym_identifier] = ACTIONS(2851), [aux_sym_preproc_include_token1] = ACTIONS(2851), @@ -115472,144 +116194,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2851), [sym_this] = ACTIONS(2851), }, - [504] = { - [ts_builtin_sym_end] = ACTIONS(3379), - [sym_identifier] = ACTIONS(3381), - [aux_sym_preproc_include_token1] = ACTIONS(3381), - [aux_sym_preproc_def_token1] = ACTIONS(3381), - [aux_sym_preproc_if_token1] = ACTIONS(3381), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3381), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3381), - [sym_preproc_directive] = ACTIONS(3381), - [anon_sym_LPAREN2] = ACTIONS(3379), - [anon_sym_BANG] = ACTIONS(3379), - [anon_sym_TILDE] = ACTIONS(3379), - [anon_sym_DASH] = ACTIONS(3381), - [anon_sym_PLUS] = ACTIONS(3381), - [anon_sym_STAR] = ACTIONS(3379), - [anon_sym_AMP_AMP] = ACTIONS(3379), - [anon_sym_AMP] = ACTIONS(3381), - [anon_sym_SEMI] = ACTIONS(3379), - [anon_sym___extension__] = ACTIONS(3381), - [anon_sym_typedef] = ACTIONS(3381), - [anon_sym_virtual] = ACTIONS(3381), - [anon_sym_extern] = ACTIONS(3381), - [anon_sym___attribute__] = ACTIONS(3381), - [anon_sym___attribute] = ACTIONS(3381), - [anon_sym_using] = ACTIONS(3381), - [anon_sym_COLON_COLON] = ACTIONS(3379), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3379), - [anon_sym___declspec] = ACTIONS(3381), - [anon_sym___based] = ACTIONS(3381), - [anon_sym___cdecl] = ACTIONS(3381), - [anon_sym___clrcall] = ACTIONS(3381), - [anon_sym___stdcall] = ACTIONS(3381), - [anon_sym___fastcall] = ACTIONS(3381), - [anon_sym___thiscall] = ACTIONS(3381), - [anon_sym___vectorcall] = ACTIONS(3381), - [anon_sym_LBRACE] = ACTIONS(3379), - [anon_sym_signed] = ACTIONS(3381), - [anon_sym_unsigned] = ACTIONS(3381), - [anon_sym_long] = ACTIONS(3381), - [anon_sym_short] = ACTIONS(3381), - [anon_sym_LBRACK] = ACTIONS(3381), - [anon_sym_static] = ACTIONS(3381), - [anon_sym_register] = ACTIONS(3381), - [anon_sym_inline] = ACTIONS(3381), - [anon_sym___inline] = ACTIONS(3381), - [anon_sym___inline__] = ACTIONS(3381), - [anon_sym___forceinline] = ACTIONS(3381), - [anon_sym_thread_local] = ACTIONS(3381), - [anon_sym___thread] = ACTIONS(3381), - [anon_sym_const] = ACTIONS(3381), - [anon_sym_constexpr] = ACTIONS(3381), - [anon_sym_volatile] = ACTIONS(3381), - [anon_sym_restrict] = ACTIONS(3381), - [anon_sym___restrict__] = ACTIONS(3381), - [anon_sym__Atomic] = ACTIONS(3381), - [anon_sym__Noreturn] = ACTIONS(3381), - [anon_sym_noreturn] = ACTIONS(3381), - [anon_sym__Nonnull] = ACTIONS(3381), - [anon_sym_mutable] = ACTIONS(3381), - [anon_sym_constinit] = ACTIONS(3381), - [anon_sym_consteval] = ACTIONS(3381), - [anon_sym_alignas] = ACTIONS(3381), - [anon_sym__Alignas] = ACTIONS(3381), - [sym_primitive_type] = ACTIONS(3381), - [anon_sym_enum] = ACTIONS(3381), - [anon_sym_class] = ACTIONS(3381), - [anon_sym_struct] = ACTIONS(3381), - [anon_sym_union] = ACTIONS(3381), - [anon_sym_if] = ACTIONS(3381), - [anon_sym_switch] = ACTIONS(3381), - [anon_sym_case] = ACTIONS(3381), - [anon_sym_default] = ACTIONS(3381), - [anon_sym_while] = ACTIONS(3381), - [anon_sym_do] = ACTIONS(3381), - [anon_sym_for] = ACTIONS(3381), - [anon_sym_return] = ACTIONS(3381), - [anon_sym_break] = ACTIONS(3381), - [anon_sym_continue] = ACTIONS(3381), - [anon_sym_goto] = ACTIONS(3381), - [anon_sym_not] = ACTIONS(3381), - [anon_sym_compl] = ACTIONS(3381), - [anon_sym_DASH_DASH] = ACTIONS(3379), - [anon_sym_PLUS_PLUS] = ACTIONS(3379), - [anon_sym_sizeof] = ACTIONS(3381), - [anon_sym___alignof__] = ACTIONS(3381), - [anon_sym___alignof] = ACTIONS(3381), - [anon_sym__alignof] = ACTIONS(3381), - [anon_sym_alignof] = ACTIONS(3381), - [anon_sym__Alignof] = ACTIONS(3381), - [anon_sym_offsetof] = ACTIONS(3381), - [anon_sym__Generic] = ACTIONS(3381), - [anon_sym_asm] = ACTIONS(3381), - [anon_sym___asm__] = ACTIONS(3381), - [anon_sym___asm] = ACTIONS(3381), - [sym_number_literal] = ACTIONS(3379), - [anon_sym_L_SQUOTE] = ACTIONS(3379), - [anon_sym_u_SQUOTE] = ACTIONS(3379), - [anon_sym_U_SQUOTE] = ACTIONS(3379), - [anon_sym_u8_SQUOTE] = ACTIONS(3379), - [anon_sym_SQUOTE] = ACTIONS(3379), - [anon_sym_L_DQUOTE] = ACTIONS(3379), - [anon_sym_u_DQUOTE] = ACTIONS(3379), - [anon_sym_U_DQUOTE] = ACTIONS(3379), - [anon_sym_u8_DQUOTE] = ACTIONS(3379), - [anon_sym_DQUOTE] = ACTIONS(3379), - [sym_true] = ACTIONS(3381), - [sym_false] = ACTIONS(3381), - [anon_sym_NULL] = ACTIONS(3381), - [anon_sym_nullptr] = ACTIONS(3381), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3381), - [anon_sym_decltype] = ACTIONS(3381), - [anon_sym_explicit] = ACTIONS(3381), - [anon_sym_typename] = ACTIONS(3381), - [anon_sym_export] = ACTIONS(3381), - [anon_sym_module] = ACTIONS(3381), - [anon_sym_import] = ACTIONS(3381), - [anon_sym_template] = ACTIONS(3381), - [anon_sym_operator] = ACTIONS(3381), - [anon_sym_try] = ACTIONS(3381), - [anon_sym_delete] = ACTIONS(3381), - [anon_sym_throw] = ACTIONS(3381), - [anon_sym_namespace] = ACTIONS(3381), - [anon_sym_static_assert] = ACTIONS(3381), - [anon_sym_concept] = ACTIONS(3381), - [anon_sym_co_return] = ACTIONS(3381), - [anon_sym_co_yield] = ACTIONS(3381), - [anon_sym_R_DQUOTE] = ACTIONS(3379), - [anon_sym_LR_DQUOTE] = ACTIONS(3379), - [anon_sym_uR_DQUOTE] = ACTIONS(3379), - [anon_sym_UR_DQUOTE] = ACTIONS(3379), - [anon_sym_u8R_DQUOTE] = ACTIONS(3379), - [anon_sym_co_await] = ACTIONS(3381), - [anon_sym_new] = ACTIONS(3381), - [anon_sym_requires] = ACTIONS(3381), - [sym_this] = ACTIONS(3381), - }, - [505] = { + [507] = { [ts_builtin_sym_end] = ACTIONS(3383), [sym_identifier] = ACTIONS(3385), [aux_sym_preproc_include_token1] = ACTIONS(3385), @@ -115746,7 +116331,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(3385), [sym_this] = ACTIONS(3385), }, - [506] = { + [508] = { + [ts_builtin_sym_end] = ACTIONS(2877), + [sym_identifier] = ACTIONS(2875), + [aux_sym_preproc_include_token1] = ACTIONS(2875), + [aux_sym_preproc_def_token1] = ACTIONS(2875), + [aux_sym_preproc_if_token1] = ACTIONS(2875), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2875), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2875), + [sym_preproc_directive] = ACTIONS(2875), + [anon_sym_LPAREN2] = ACTIONS(2877), + [anon_sym_BANG] = ACTIONS(2877), + [anon_sym_TILDE] = ACTIONS(2877), + [anon_sym_DASH] = ACTIONS(2875), + [anon_sym_PLUS] = ACTIONS(2875), + [anon_sym_STAR] = ACTIONS(2877), + [anon_sym_AMP_AMP] = ACTIONS(2877), + [anon_sym_AMP] = ACTIONS(2875), + [anon_sym_SEMI] = ACTIONS(2877), + [anon_sym___extension__] = ACTIONS(2875), + [anon_sym_typedef] = ACTIONS(2875), + [anon_sym_virtual] = ACTIONS(2875), + [anon_sym_extern] = ACTIONS(2875), + [anon_sym___attribute__] = ACTIONS(2875), + [anon_sym___attribute] = ACTIONS(2875), + [anon_sym_using] = ACTIONS(2875), + [anon_sym_COLON_COLON] = ACTIONS(2877), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2877), + [anon_sym___declspec] = ACTIONS(2875), + [anon_sym___based] = ACTIONS(2875), + [anon_sym___cdecl] = ACTIONS(2875), + [anon_sym___clrcall] = ACTIONS(2875), + [anon_sym___stdcall] = ACTIONS(2875), + [anon_sym___fastcall] = ACTIONS(2875), + [anon_sym___thiscall] = ACTIONS(2875), + [anon_sym___vectorcall] = ACTIONS(2875), + [anon_sym_LBRACE] = ACTIONS(2877), + [anon_sym_signed] = ACTIONS(2875), + [anon_sym_unsigned] = ACTIONS(2875), + [anon_sym_long] = ACTIONS(2875), + [anon_sym_short] = ACTIONS(2875), + [anon_sym_LBRACK] = ACTIONS(2875), + [anon_sym_static] = ACTIONS(2875), + [anon_sym_register] = ACTIONS(2875), + [anon_sym_inline] = ACTIONS(2875), + [anon_sym___inline] = ACTIONS(2875), + [anon_sym___inline__] = ACTIONS(2875), + [anon_sym___forceinline] = ACTIONS(2875), + [anon_sym_thread_local] = ACTIONS(2875), + [anon_sym___thread] = ACTIONS(2875), + [anon_sym_const] = ACTIONS(2875), + [anon_sym_constexpr] = ACTIONS(2875), + [anon_sym_volatile] = ACTIONS(2875), + [anon_sym_restrict] = ACTIONS(2875), + [anon_sym___restrict__] = ACTIONS(2875), + [anon_sym__Atomic] = ACTIONS(2875), + [anon_sym__Noreturn] = ACTIONS(2875), + [anon_sym_noreturn] = ACTIONS(2875), + [anon_sym__Nonnull] = ACTIONS(2875), + [anon_sym_mutable] = ACTIONS(2875), + [anon_sym_constinit] = ACTIONS(2875), + [anon_sym_consteval] = ACTIONS(2875), + [anon_sym_alignas] = ACTIONS(2875), + [anon_sym__Alignas] = ACTIONS(2875), + [sym_primitive_type] = ACTIONS(2875), + [anon_sym_enum] = ACTIONS(2875), + [anon_sym_class] = ACTIONS(2875), + [anon_sym_struct] = ACTIONS(2875), + [anon_sym_union] = ACTIONS(2875), + [anon_sym_if] = ACTIONS(2875), + [anon_sym_switch] = ACTIONS(2875), + [anon_sym_case] = ACTIONS(2875), + [anon_sym_default] = ACTIONS(2875), + [anon_sym_while] = ACTIONS(2875), + [anon_sym_do] = ACTIONS(2875), + [anon_sym_for] = ACTIONS(2875), + [anon_sym_return] = ACTIONS(2875), + [anon_sym_break] = ACTIONS(2875), + [anon_sym_continue] = ACTIONS(2875), + [anon_sym_goto] = ACTIONS(2875), + [anon_sym_not] = ACTIONS(2875), + [anon_sym_compl] = ACTIONS(2875), + [anon_sym_DASH_DASH] = ACTIONS(2877), + [anon_sym_PLUS_PLUS] = ACTIONS(2877), + [anon_sym_sizeof] = ACTIONS(2875), + [anon_sym___alignof__] = ACTIONS(2875), + [anon_sym___alignof] = ACTIONS(2875), + [anon_sym__alignof] = ACTIONS(2875), + [anon_sym_alignof] = ACTIONS(2875), + [anon_sym__Alignof] = ACTIONS(2875), + [anon_sym_offsetof] = ACTIONS(2875), + [anon_sym__Generic] = ACTIONS(2875), + [anon_sym_asm] = ACTIONS(2875), + [anon_sym___asm__] = ACTIONS(2875), + [anon_sym___asm] = ACTIONS(2875), + [sym_number_literal] = ACTIONS(2877), + [anon_sym_L_SQUOTE] = ACTIONS(2877), + [anon_sym_u_SQUOTE] = ACTIONS(2877), + [anon_sym_U_SQUOTE] = ACTIONS(2877), + [anon_sym_u8_SQUOTE] = ACTIONS(2877), + [anon_sym_SQUOTE] = ACTIONS(2877), + [anon_sym_L_DQUOTE] = ACTIONS(2877), + [anon_sym_u_DQUOTE] = ACTIONS(2877), + [anon_sym_U_DQUOTE] = ACTIONS(2877), + [anon_sym_u8_DQUOTE] = ACTIONS(2877), + [anon_sym_DQUOTE] = ACTIONS(2877), + [sym_true] = ACTIONS(2875), + [sym_false] = ACTIONS(2875), + [anon_sym_NULL] = ACTIONS(2875), + [anon_sym_nullptr] = ACTIONS(2875), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2875), + [anon_sym_decltype] = ACTIONS(2875), + [anon_sym_explicit] = ACTIONS(2875), + [anon_sym_typename] = ACTIONS(2875), + [anon_sym_export] = ACTIONS(2875), + [anon_sym_module] = ACTIONS(2875), + [anon_sym_import] = ACTIONS(2875), + [anon_sym_template] = ACTIONS(2875), + [anon_sym_operator] = ACTIONS(2875), + [anon_sym_try] = ACTIONS(2875), + [anon_sym_delete] = ACTIONS(2875), + [anon_sym_throw] = ACTIONS(2875), + [anon_sym_namespace] = ACTIONS(2875), + [anon_sym_static_assert] = ACTIONS(2875), + [anon_sym_concept] = ACTIONS(2875), + [anon_sym_co_return] = ACTIONS(2875), + [anon_sym_co_yield] = ACTIONS(2875), + [anon_sym_R_DQUOTE] = ACTIONS(2877), + [anon_sym_LR_DQUOTE] = ACTIONS(2877), + [anon_sym_uR_DQUOTE] = ACTIONS(2877), + [anon_sym_UR_DQUOTE] = ACTIONS(2877), + [anon_sym_u8R_DQUOTE] = ACTIONS(2877), + [anon_sym_co_await] = ACTIONS(2875), + [anon_sym_new] = ACTIONS(2875), + [anon_sym_requires] = ACTIONS(2875), + [sym_this] = ACTIONS(2875), + }, + [509] = { [ts_builtin_sym_end] = ACTIONS(3387), [sym_identifier] = ACTIONS(3389), [aux_sym_preproc_include_token1] = ACTIONS(3389), @@ -115883,7 +116605,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(3389), [sym_this] = ACTIONS(3389), }, - [507] = { + [510] = { [ts_builtin_sym_end] = ACTIONS(3391), [sym_identifier] = ACTIONS(3393), [aux_sym_preproc_include_token1] = ACTIONS(3393), @@ -116020,7 +116742,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(3393), [sym_this] = ACTIONS(3393), }, - [508] = { + [511] = { + [sym_identifier] = ACTIONS(2667), + [aux_sym_preproc_include_token1] = ACTIONS(2667), + [aux_sym_preproc_def_token1] = ACTIONS(2667), + [aux_sym_preproc_if_token1] = ACTIONS(2667), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2667), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2667), + [sym_preproc_directive] = ACTIONS(2667), + [anon_sym_LPAREN2] = ACTIONS(2669), + [anon_sym_BANG] = ACTIONS(2669), + [anon_sym_TILDE] = ACTIONS(2669), + [anon_sym_DASH] = ACTIONS(2667), + [anon_sym_PLUS] = ACTIONS(2667), + [anon_sym_STAR] = ACTIONS(2669), + [anon_sym_AMP_AMP] = ACTIONS(2669), + [anon_sym_AMP] = ACTIONS(2667), + [anon_sym_SEMI] = ACTIONS(2669), + [anon_sym___extension__] = ACTIONS(2667), + [anon_sym_typedef] = ACTIONS(2667), + [anon_sym_virtual] = ACTIONS(2667), + [anon_sym_extern] = ACTIONS(2667), + [anon_sym___attribute__] = ACTIONS(2667), + [anon_sym___attribute] = ACTIONS(2667), + [anon_sym_using] = ACTIONS(2667), + [anon_sym_COLON_COLON] = ACTIONS(2669), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2669), + [anon_sym___declspec] = ACTIONS(2667), + [anon_sym___based] = ACTIONS(2667), + [anon_sym___cdecl] = ACTIONS(2667), + [anon_sym___clrcall] = ACTIONS(2667), + [anon_sym___stdcall] = ACTIONS(2667), + [anon_sym___fastcall] = ACTIONS(2667), + [anon_sym___thiscall] = ACTIONS(2667), + [anon_sym___vectorcall] = ACTIONS(2667), + [anon_sym_LBRACE] = ACTIONS(2669), + [anon_sym_RBRACE] = ACTIONS(2669), + [anon_sym_signed] = ACTIONS(2667), + [anon_sym_unsigned] = ACTIONS(2667), + [anon_sym_long] = ACTIONS(2667), + [anon_sym_short] = ACTIONS(2667), + [anon_sym_LBRACK] = ACTIONS(2667), + [anon_sym_static] = ACTIONS(2667), + [anon_sym_register] = ACTIONS(2667), + [anon_sym_inline] = ACTIONS(2667), + [anon_sym___inline] = ACTIONS(2667), + [anon_sym___inline__] = ACTIONS(2667), + [anon_sym___forceinline] = ACTIONS(2667), + [anon_sym_thread_local] = ACTIONS(2667), + [anon_sym___thread] = ACTIONS(2667), + [anon_sym_const] = ACTIONS(2667), + [anon_sym_constexpr] = ACTIONS(2667), + [anon_sym_volatile] = ACTIONS(2667), + [anon_sym_restrict] = ACTIONS(2667), + [anon_sym___restrict__] = ACTIONS(2667), + [anon_sym__Atomic] = ACTIONS(2667), + [anon_sym__Noreturn] = ACTIONS(2667), + [anon_sym_noreturn] = ACTIONS(2667), + [anon_sym__Nonnull] = ACTIONS(2667), + [anon_sym_mutable] = ACTIONS(2667), + [anon_sym_constinit] = ACTIONS(2667), + [anon_sym_consteval] = ACTIONS(2667), + [anon_sym_alignas] = ACTIONS(2667), + [anon_sym__Alignas] = ACTIONS(2667), + [sym_primitive_type] = ACTIONS(2667), + [anon_sym_enum] = ACTIONS(2667), + [anon_sym_class] = ACTIONS(2667), + [anon_sym_struct] = ACTIONS(2667), + [anon_sym_union] = ACTIONS(2667), + [anon_sym_if] = ACTIONS(2667), + [anon_sym_else] = ACTIONS(2667), + [anon_sym_switch] = ACTIONS(2667), + [anon_sym_case] = ACTIONS(2667), + [anon_sym_default] = ACTIONS(2667), + [anon_sym_while] = ACTIONS(2667), + [anon_sym_do] = ACTIONS(2667), + [anon_sym_for] = ACTIONS(2667), + [anon_sym_return] = ACTIONS(2667), + [anon_sym_break] = ACTIONS(2667), + [anon_sym_continue] = ACTIONS(2667), + [anon_sym_goto] = ACTIONS(2667), + [anon_sym___try] = ACTIONS(2667), + [anon_sym___leave] = ACTIONS(2667), + [anon_sym_not] = ACTIONS(2667), + [anon_sym_compl] = ACTIONS(2667), + [anon_sym_DASH_DASH] = ACTIONS(2669), + [anon_sym_PLUS_PLUS] = ACTIONS(2669), + [anon_sym_sizeof] = ACTIONS(2667), + [anon_sym___alignof__] = ACTIONS(2667), + [anon_sym___alignof] = ACTIONS(2667), + [anon_sym__alignof] = ACTIONS(2667), + [anon_sym_alignof] = ACTIONS(2667), + [anon_sym__Alignof] = ACTIONS(2667), + [anon_sym_offsetof] = ACTIONS(2667), + [anon_sym__Generic] = ACTIONS(2667), + [anon_sym_asm] = ACTIONS(2667), + [anon_sym___asm__] = ACTIONS(2667), + [anon_sym___asm] = ACTIONS(2667), + [sym_number_literal] = ACTIONS(2669), + [anon_sym_L_SQUOTE] = ACTIONS(2669), + [anon_sym_u_SQUOTE] = ACTIONS(2669), + [anon_sym_U_SQUOTE] = ACTIONS(2669), + [anon_sym_u8_SQUOTE] = ACTIONS(2669), + [anon_sym_SQUOTE] = ACTIONS(2669), + [anon_sym_L_DQUOTE] = ACTIONS(2669), + [anon_sym_u_DQUOTE] = ACTIONS(2669), + [anon_sym_U_DQUOTE] = ACTIONS(2669), + [anon_sym_u8_DQUOTE] = ACTIONS(2669), + [anon_sym_DQUOTE] = ACTIONS(2669), + [sym_true] = ACTIONS(2667), + [sym_false] = ACTIONS(2667), + [anon_sym_NULL] = ACTIONS(2667), + [anon_sym_nullptr] = ACTIONS(2667), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2667), + [anon_sym_decltype] = ACTIONS(2667), + [anon_sym_explicit] = ACTIONS(2667), + [anon_sym_typename] = ACTIONS(2667), + [anon_sym_template] = ACTIONS(2667), + [anon_sym_operator] = ACTIONS(2667), + [anon_sym_try] = ACTIONS(2667), + [anon_sym_delete] = ACTIONS(2667), + [anon_sym_throw] = ACTIONS(2667), + [anon_sym_namespace] = ACTIONS(2667), + [anon_sym_static_assert] = ACTIONS(2667), + [anon_sym_concept] = ACTIONS(2667), + [anon_sym_co_return] = ACTIONS(2667), + [anon_sym_co_yield] = ACTIONS(2667), + [anon_sym_R_DQUOTE] = ACTIONS(2669), + [anon_sym_LR_DQUOTE] = ACTIONS(2669), + [anon_sym_uR_DQUOTE] = ACTIONS(2669), + [anon_sym_UR_DQUOTE] = ACTIONS(2669), + [anon_sym_u8R_DQUOTE] = ACTIONS(2669), + [anon_sym_co_await] = ACTIONS(2667), + [anon_sym_new] = ACTIONS(2667), + [anon_sym_requires] = ACTIONS(2667), + [sym_this] = ACTIONS(2667), + }, + [512] = { [ts_builtin_sym_end] = ACTIONS(3395), [sym_identifier] = ACTIONS(3397), [aux_sym_preproc_include_token1] = ACTIONS(3397), @@ -116157,7 +117016,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(3397), [sym_this] = ACTIONS(3397), }, - [509] = { + [513] = { + [sym_identifier] = ACTIONS(2695), + [aux_sym_preproc_include_token1] = ACTIONS(2695), + [aux_sym_preproc_def_token1] = ACTIONS(2695), + [aux_sym_preproc_if_token1] = ACTIONS(2695), + [aux_sym_preproc_if_token2] = ACTIONS(2695), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2695), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2695), + [sym_preproc_directive] = ACTIONS(2695), + [anon_sym_LPAREN2] = ACTIONS(2697), + [anon_sym_BANG] = ACTIONS(2697), + [anon_sym_TILDE] = ACTIONS(2697), + [anon_sym_DASH] = ACTIONS(2695), + [anon_sym_PLUS] = ACTIONS(2695), + [anon_sym_STAR] = ACTIONS(2697), + [anon_sym_AMP_AMP] = ACTIONS(2697), + [anon_sym_AMP] = ACTIONS(2695), + [anon_sym_SEMI] = ACTIONS(2697), + [anon_sym___extension__] = ACTIONS(2695), + [anon_sym_typedef] = ACTIONS(2695), + [anon_sym_virtual] = ACTIONS(2695), + [anon_sym_extern] = ACTIONS(2695), + [anon_sym___attribute__] = ACTIONS(2695), + [anon_sym___attribute] = ACTIONS(2695), + [anon_sym_using] = ACTIONS(2695), + [anon_sym_COLON_COLON] = ACTIONS(2697), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2697), + [anon_sym___declspec] = ACTIONS(2695), + [anon_sym___based] = ACTIONS(2695), + [anon_sym___cdecl] = ACTIONS(2695), + [anon_sym___clrcall] = ACTIONS(2695), + [anon_sym___stdcall] = ACTIONS(2695), + [anon_sym___fastcall] = ACTIONS(2695), + [anon_sym___thiscall] = ACTIONS(2695), + [anon_sym___vectorcall] = ACTIONS(2695), + [anon_sym_LBRACE] = ACTIONS(2697), + [anon_sym_signed] = ACTIONS(2695), + [anon_sym_unsigned] = ACTIONS(2695), + [anon_sym_long] = ACTIONS(2695), + [anon_sym_short] = ACTIONS(2695), + [anon_sym_LBRACK] = ACTIONS(2695), + [anon_sym_static] = ACTIONS(2695), + [anon_sym_register] = ACTIONS(2695), + [anon_sym_inline] = ACTIONS(2695), + [anon_sym___inline] = ACTIONS(2695), + [anon_sym___inline__] = ACTIONS(2695), + [anon_sym___forceinline] = ACTIONS(2695), + [anon_sym_thread_local] = ACTIONS(2695), + [anon_sym___thread] = ACTIONS(2695), + [anon_sym_const] = ACTIONS(2695), + [anon_sym_constexpr] = ACTIONS(2695), + [anon_sym_volatile] = ACTIONS(2695), + [anon_sym_restrict] = ACTIONS(2695), + [anon_sym___restrict__] = ACTIONS(2695), + [anon_sym__Atomic] = ACTIONS(2695), + [anon_sym__Noreturn] = ACTIONS(2695), + [anon_sym_noreturn] = ACTIONS(2695), + [anon_sym__Nonnull] = ACTIONS(2695), + [anon_sym_mutable] = ACTIONS(2695), + [anon_sym_constinit] = ACTIONS(2695), + [anon_sym_consteval] = ACTIONS(2695), + [anon_sym_alignas] = ACTIONS(2695), + [anon_sym__Alignas] = ACTIONS(2695), + [sym_primitive_type] = ACTIONS(2695), + [anon_sym_enum] = ACTIONS(2695), + [anon_sym_class] = ACTIONS(2695), + [anon_sym_struct] = ACTIONS(2695), + [anon_sym_union] = ACTIONS(2695), + [anon_sym_if] = ACTIONS(2695), + [anon_sym_else] = ACTIONS(2695), + [anon_sym_switch] = ACTIONS(2695), + [anon_sym_case] = ACTIONS(2695), + [anon_sym_default] = ACTIONS(2695), + [anon_sym_while] = ACTIONS(2695), + [anon_sym_do] = ACTIONS(2695), + [anon_sym_for] = ACTIONS(2695), + [anon_sym_return] = ACTIONS(2695), + [anon_sym_break] = ACTIONS(2695), + [anon_sym_continue] = ACTIONS(2695), + [anon_sym_goto] = ACTIONS(2695), + [anon_sym___try] = ACTIONS(2695), + [anon_sym___leave] = ACTIONS(2695), + [anon_sym_not] = ACTIONS(2695), + [anon_sym_compl] = ACTIONS(2695), + [anon_sym_DASH_DASH] = ACTIONS(2697), + [anon_sym_PLUS_PLUS] = ACTIONS(2697), + [anon_sym_sizeof] = ACTIONS(2695), + [anon_sym___alignof__] = ACTIONS(2695), + [anon_sym___alignof] = ACTIONS(2695), + [anon_sym__alignof] = ACTIONS(2695), + [anon_sym_alignof] = ACTIONS(2695), + [anon_sym__Alignof] = ACTIONS(2695), + [anon_sym_offsetof] = ACTIONS(2695), + [anon_sym__Generic] = ACTIONS(2695), + [anon_sym_asm] = ACTIONS(2695), + [anon_sym___asm__] = ACTIONS(2695), + [anon_sym___asm] = ACTIONS(2695), + [sym_number_literal] = ACTIONS(2697), + [anon_sym_L_SQUOTE] = ACTIONS(2697), + [anon_sym_u_SQUOTE] = ACTIONS(2697), + [anon_sym_U_SQUOTE] = ACTIONS(2697), + [anon_sym_u8_SQUOTE] = ACTIONS(2697), + [anon_sym_SQUOTE] = ACTIONS(2697), + [anon_sym_L_DQUOTE] = ACTIONS(2697), + [anon_sym_u_DQUOTE] = ACTIONS(2697), + [anon_sym_U_DQUOTE] = ACTIONS(2697), + [anon_sym_u8_DQUOTE] = ACTIONS(2697), + [anon_sym_DQUOTE] = ACTIONS(2697), + [sym_true] = ACTIONS(2695), + [sym_false] = ACTIONS(2695), + [anon_sym_NULL] = ACTIONS(2695), + [anon_sym_nullptr] = ACTIONS(2695), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2695), + [anon_sym_decltype] = ACTIONS(2695), + [anon_sym_explicit] = ACTIONS(2695), + [anon_sym_typename] = ACTIONS(2695), + [anon_sym_template] = ACTIONS(2695), + [anon_sym_operator] = ACTIONS(2695), + [anon_sym_try] = ACTIONS(2695), + [anon_sym_delete] = ACTIONS(2695), + [anon_sym_throw] = ACTIONS(2695), + [anon_sym_namespace] = ACTIONS(2695), + [anon_sym_static_assert] = ACTIONS(2695), + [anon_sym_concept] = ACTIONS(2695), + [anon_sym_co_return] = ACTIONS(2695), + [anon_sym_co_yield] = ACTIONS(2695), + [anon_sym_R_DQUOTE] = ACTIONS(2697), + [anon_sym_LR_DQUOTE] = ACTIONS(2697), + [anon_sym_uR_DQUOTE] = ACTIONS(2697), + [anon_sym_UR_DQUOTE] = ACTIONS(2697), + [anon_sym_u8R_DQUOTE] = ACTIONS(2697), + [anon_sym_co_await] = ACTIONS(2695), + [anon_sym_new] = ACTIONS(2695), + [anon_sym_requires] = ACTIONS(2695), + [sym_this] = ACTIONS(2695), + }, + [514] = { [ts_builtin_sym_end] = ACTIONS(3399), [sym_identifier] = ACTIONS(3401), [aux_sym_preproc_include_token1] = ACTIONS(3401), @@ -116294,692 +117290,966 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(3401), [sym_this] = ACTIONS(3401), }, - [510] = { - [ts_builtin_sym_end] = ACTIONS(2777), - [sym_identifier] = ACTIONS(2775), - [aux_sym_preproc_include_token1] = ACTIONS(2775), - [aux_sym_preproc_def_token1] = ACTIONS(2775), - [aux_sym_preproc_if_token1] = ACTIONS(2775), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2775), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2775), - [sym_preproc_directive] = ACTIONS(2775), - [anon_sym_LPAREN2] = ACTIONS(2777), - [anon_sym_BANG] = ACTIONS(2777), - [anon_sym_TILDE] = ACTIONS(2777), - [anon_sym_DASH] = ACTIONS(2775), - [anon_sym_PLUS] = ACTIONS(2775), - [anon_sym_STAR] = ACTIONS(2777), - [anon_sym_AMP_AMP] = ACTIONS(2777), - [anon_sym_AMP] = ACTIONS(2775), - [anon_sym_SEMI] = ACTIONS(2777), - [anon_sym___extension__] = ACTIONS(2775), - [anon_sym_typedef] = ACTIONS(2775), - [anon_sym_virtual] = ACTIONS(2775), - [anon_sym_extern] = ACTIONS(2775), - [anon_sym___attribute__] = ACTIONS(2775), - [anon_sym___attribute] = ACTIONS(2775), - [anon_sym_using] = ACTIONS(2775), - [anon_sym_COLON_COLON] = ACTIONS(2777), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2777), - [anon_sym___declspec] = ACTIONS(2775), - [anon_sym___based] = ACTIONS(2775), - [anon_sym___cdecl] = ACTIONS(2775), - [anon_sym___clrcall] = ACTIONS(2775), - [anon_sym___stdcall] = ACTIONS(2775), - [anon_sym___fastcall] = ACTIONS(2775), - [anon_sym___thiscall] = ACTIONS(2775), - [anon_sym___vectorcall] = ACTIONS(2775), - [anon_sym_LBRACE] = ACTIONS(2777), - [anon_sym_signed] = ACTIONS(2775), - [anon_sym_unsigned] = ACTIONS(2775), - [anon_sym_long] = ACTIONS(2775), - [anon_sym_short] = ACTIONS(2775), - [anon_sym_LBRACK] = ACTIONS(2775), - [anon_sym_static] = ACTIONS(2775), - [anon_sym_register] = ACTIONS(2775), - [anon_sym_inline] = ACTIONS(2775), - [anon_sym___inline] = ACTIONS(2775), - [anon_sym___inline__] = ACTIONS(2775), - [anon_sym___forceinline] = ACTIONS(2775), - [anon_sym_thread_local] = ACTIONS(2775), - [anon_sym___thread] = ACTIONS(2775), - [anon_sym_const] = ACTIONS(2775), - [anon_sym_constexpr] = ACTIONS(2775), - [anon_sym_volatile] = ACTIONS(2775), - [anon_sym_restrict] = ACTIONS(2775), - [anon_sym___restrict__] = ACTIONS(2775), - [anon_sym__Atomic] = ACTIONS(2775), - [anon_sym__Noreturn] = ACTIONS(2775), - [anon_sym_noreturn] = ACTIONS(2775), - [anon_sym__Nonnull] = ACTIONS(2775), - [anon_sym_mutable] = ACTIONS(2775), - [anon_sym_constinit] = ACTIONS(2775), - [anon_sym_consteval] = ACTIONS(2775), - [anon_sym_alignas] = ACTIONS(2775), - [anon_sym__Alignas] = ACTIONS(2775), - [sym_primitive_type] = ACTIONS(2775), - [anon_sym_enum] = ACTIONS(2775), - [anon_sym_class] = ACTIONS(2775), - [anon_sym_struct] = ACTIONS(2775), - [anon_sym_union] = ACTIONS(2775), - [anon_sym_if] = ACTIONS(2775), - [anon_sym_switch] = ACTIONS(2775), - [anon_sym_case] = ACTIONS(2775), - [anon_sym_default] = ACTIONS(2775), - [anon_sym_while] = ACTIONS(2775), - [anon_sym_do] = ACTIONS(2775), - [anon_sym_for] = ACTIONS(2775), - [anon_sym_return] = ACTIONS(2775), - [anon_sym_break] = ACTIONS(2775), - [anon_sym_continue] = ACTIONS(2775), - [anon_sym_goto] = ACTIONS(2775), - [anon_sym_not] = ACTIONS(2775), - [anon_sym_compl] = ACTIONS(2775), - [anon_sym_DASH_DASH] = ACTIONS(2777), - [anon_sym_PLUS_PLUS] = ACTIONS(2777), - [anon_sym_sizeof] = ACTIONS(2775), - [anon_sym___alignof__] = ACTIONS(2775), - [anon_sym___alignof] = ACTIONS(2775), - [anon_sym__alignof] = ACTIONS(2775), - [anon_sym_alignof] = ACTIONS(2775), - [anon_sym__Alignof] = ACTIONS(2775), - [anon_sym_offsetof] = ACTIONS(2775), - [anon_sym__Generic] = ACTIONS(2775), - [anon_sym_asm] = ACTIONS(2775), - [anon_sym___asm__] = ACTIONS(2775), - [anon_sym___asm] = ACTIONS(2775), - [sym_number_literal] = ACTIONS(2777), - [anon_sym_L_SQUOTE] = ACTIONS(2777), - [anon_sym_u_SQUOTE] = ACTIONS(2777), - [anon_sym_U_SQUOTE] = ACTIONS(2777), - [anon_sym_u8_SQUOTE] = ACTIONS(2777), - [anon_sym_SQUOTE] = ACTIONS(2777), - [anon_sym_L_DQUOTE] = ACTIONS(2777), - [anon_sym_u_DQUOTE] = ACTIONS(2777), - [anon_sym_U_DQUOTE] = ACTIONS(2777), - [anon_sym_u8_DQUOTE] = ACTIONS(2777), - [anon_sym_DQUOTE] = ACTIONS(2777), - [sym_true] = ACTIONS(2775), - [sym_false] = ACTIONS(2775), - [anon_sym_NULL] = ACTIONS(2775), - [anon_sym_nullptr] = ACTIONS(2775), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2775), - [anon_sym_decltype] = ACTIONS(2775), - [anon_sym_explicit] = ACTIONS(2775), - [anon_sym_typename] = ACTIONS(2775), - [anon_sym_export] = ACTIONS(2775), - [anon_sym_module] = ACTIONS(2775), - [anon_sym_import] = ACTIONS(2775), - [anon_sym_template] = ACTIONS(2775), - [anon_sym_operator] = ACTIONS(2775), - [anon_sym_try] = ACTIONS(2775), - [anon_sym_delete] = ACTIONS(2775), - [anon_sym_throw] = ACTIONS(2775), - [anon_sym_namespace] = ACTIONS(2775), - [anon_sym_static_assert] = ACTIONS(2775), - [anon_sym_concept] = ACTIONS(2775), - [anon_sym_co_return] = ACTIONS(2775), - [anon_sym_co_yield] = ACTIONS(2775), - [anon_sym_R_DQUOTE] = ACTIONS(2777), - [anon_sym_LR_DQUOTE] = ACTIONS(2777), - [anon_sym_uR_DQUOTE] = ACTIONS(2777), - [anon_sym_UR_DQUOTE] = ACTIONS(2777), - [anon_sym_u8R_DQUOTE] = ACTIONS(2777), - [anon_sym_co_await] = ACTIONS(2775), - [anon_sym_new] = ACTIONS(2775), - [anon_sym_requires] = ACTIONS(2775), - [sym_this] = ACTIONS(2775), - }, - [511] = { - [ts_builtin_sym_end] = ACTIONS(3029), - [sym_identifier] = ACTIONS(3027), - [aux_sym_preproc_include_token1] = ACTIONS(3027), - [aux_sym_preproc_def_token1] = ACTIONS(3027), - [aux_sym_preproc_if_token1] = ACTIONS(3027), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3027), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3027), - [sym_preproc_directive] = ACTIONS(3027), - [anon_sym_LPAREN2] = ACTIONS(3029), - [anon_sym_BANG] = ACTIONS(3029), - [anon_sym_TILDE] = ACTIONS(3029), - [anon_sym_DASH] = ACTIONS(3027), - [anon_sym_PLUS] = ACTIONS(3027), - [anon_sym_STAR] = ACTIONS(3029), - [anon_sym_AMP_AMP] = ACTIONS(3029), - [anon_sym_AMP] = ACTIONS(3027), - [anon_sym_SEMI] = ACTIONS(3029), - [anon_sym___extension__] = ACTIONS(3027), - [anon_sym_typedef] = ACTIONS(3027), - [anon_sym_virtual] = ACTIONS(3027), - [anon_sym_extern] = ACTIONS(3027), - [anon_sym___attribute__] = ACTIONS(3027), - [anon_sym___attribute] = ACTIONS(3027), - [anon_sym_using] = ACTIONS(3027), - [anon_sym_COLON_COLON] = ACTIONS(3029), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3029), - [anon_sym___declspec] = ACTIONS(3027), - [anon_sym___based] = ACTIONS(3027), - [anon_sym___cdecl] = ACTIONS(3027), - [anon_sym___clrcall] = ACTIONS(3027), - [anon_sym___stdcall] = ACTIONS(3027), - [anon_sym___fastcall] = ACTIONS(3027), - [anon_sym___thiscall] = ACTIONS(3027), - [anon_sym___vectorcall] = ACTIONS(3027), - [anon_sym_LBRACE] = ACTIONS(3029), - [anon_sym_signed] = ACTIONS(3027), - [anon_sym_unsigned] = ACTIONS(3027), - [anon_sym_long] = ACTIONS(3027), - [anon_sym_short] = ACTIONS(3027), - [anon_sym_LBRACK] = ACTIONS(3027), - [anon_sym_static] = ACTIONS(3027), - [anon_sym_register] = ACTIONS(3027), - [anon_sym_inline] = ACTIONS(3027), - [anon_sym___inline] = ACTIONS(3027), - [anon_sym___inline__] = ACTIONS(3027), - [anon_sym___forceinline] = ACTIONS(3027), - [anon_sym_thread_local] = ACTIONS(3027), - [anon_sym___thread] = ACTIONS(3027), - [anon_sym_const] = ACTIONS(3027), - [anon_sym_constexpr] = ACTIONS(3027), - [anon_sym_volatile] = ACTIONS(3027), - [anon_sym_restrict] = ACTIONS(3027), - [anon_sym___restrict__] = ACTIONS(3027), - [anon_sym__Atomic] = ACTIONS(3027), - [anon_sym__Noreturn] = ACTIONS(3027), - [anon_sym_noreturn] = ACTIONS(3027), - [anon_sym__Nonnull] = ACTIONS(3027), - [anon_sym_mutable] = ACTIONS(3027), - [anon_sym_constinit] = ACTIONS(3027), - [anon_sym_consteval] = ACTIONS(3027), - [anon_sym_alignas] = ACTIONS(3027), - [anon_sym__Alignas] = ACTIONS(3027), - [sym_primitive_type] = ACTIONS(3027), - [anon_sym_enum] = ACTIONS(3027), - [anon_sym_class] = ACTIONS(3027), - [anon_sym_struct] = ACTIONS(3027), - [anon_sym_union] = ACTIONS(3027), - [anon_sym_if] = ACTIONS(3027), - [anon_sym_switch] = ACTIONS(3027), - [anon_sym_case] = ACTIONS(3027), - [anon_sym_default] = ACTIONS(3027), - [anon_sym_while] = ACTIONS(3027), - [anon_sym_do] = ACTIONS(3027), - [anon_sym_for] = ACTIONS(3027), - [anon_sym_return] = ACTIONS(3027), - [anon_sym_break] = ACTIONS(3027), - [anon_sym_continue] = ACTIONS(3027), - [anon_sym_goto] = ACTIONS(3027), - [anon_sym_not] = ACTIONS(3027), - [anon_sym_compl] = ACTIONS(3027), - [anon_sym_DASH_DASH] = ACTIONS(3029), - [anon_sym_PLUS_PLUS] = ACTIONS(3029), - [anon_sym_sizeof] = ACTIONS(3027), - [anon_sym___alignof__] = ACTIONS(3027), - [anon_sym___alignof] = ACTIONS(3027), - [anon_sym__alignof] = ACTIONS(3027), - [anon_sym_alignof] = ACTIONS(3027), - [anon_sym__Alignof] = ACTIONS(3027), - [anon_sym_offsetof] = ACTIONS(3027), - [anon_sym__Generic] = ACTIONS(3027), - [anon_sym_asm] = ACTIONS(3027), - [anon_sym___asm__] = ACTIONS(3027), - [anon_sym___asm] = ACTIONS(3027), - [sym_number_literal] = ACTIONS(3029), - [anon_sym_L_SQUOTE] = ACTIONS(3029), - [anon_sym_u_SQUOTE] = ACTIONS(3029), - [anon_sym_U_SQUOTE] = ACTIONS(3029), - [anon_sym_u8_SQUOTE] = ACTIONS(3029), - [anon_sym_SQUOTE] = ACTIONS(3029), - [anon_sym_L_DQUOTE] = ACTIONS(3029), - [anon_sym_u_DQUOTE] = ACTIONS(3029), - [anon_sym_U_DQUOTE] = ACTIONS(3029), - [anon_sym_u8_DQUOTE] = ACTIONS(3029), - [anon_sym_DQUOTE] = ACTIONS(3029), - [sym_true] = ACTIONS(3027), - [sym_false] = ACTIONS(3027), - [anon_sym_NULL] = ACTIONS(3027), - [anon_sym_nullptr] = ACTIONS(3027), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3027), - [anon_sym_decltype] = ACTIONS(3027), - [anon_sym_explicit] = ACTIONS(3027), - [anon_sym_typename] = ACTIONS(3027), - [anon_sym_export] = ACTIONS(3027), - [anon_sym_module] = ACTIONS(3027), - [anon_sym_import] = ACTIONS(3027), - [anon_sym_template] = ACTIONS(3027), - [anon_sym_operator] = ACTIONS(3027), - [anon_sym_try] = ACTIONS(3027), - [anon_sym_delete] = ACTIONS(3027), - [anon_sym_throw] = ACTIONS(3027), - [anon_sym_namespace] = ACTIONS(3027), - [anon_sym_static_assert] = ACTIONS(3027), - [anon_sym_concept] = ACTIONS(3027), - [anon_sym_co_return] = ACTIONS(3027), - [anon_sym_co_yield] = ACTIONS(3027), - [anon_sym_R_DQUOTE] = ACTIONS(3029), - [anon_sym_LR_DQUOTE] = ACTIONS(3029), - [anon_sym_uR_DQUOTE] = ACTIONS(3029), - [anon_sym_UR_DQUOTE] = ACTIONS(3029), - [anon_sym_u8R_DQUOTE] = ACTIONS(3029), - [anon_sym_co_await] = ACTIONS(3027), - [anon_sym_new] = ACTIONS(3027), - [anon_sym_requires] = ACTIONS(3027), - [sym_this] = ACTIONS(3027), - }, - [512] = { - [ts_builtin_sym_end] = ACTIONS(2781), - [sym_identifier] = ACTIONS(2779), - [aux_sym_preproc_include_token1] = ACTIONS(2779), - [aux_sym_preproc_def_token1] = ACTIONS(2779), - [aux_sym_preproc_if_token1] = ACTIONS(2779), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2779), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2779), - [sym_preproc_directive] = ACTIONS(2779), - [anon_sym_LPAREN2] = ACTIONS(2781), - [anon_sym_BANG] = ACTIONS(2781), - [anon_sym_TILDE] = ACTIONS(2781), - [anon_sym_DASH] = ACTIONS(2779), - [anon_sym_PLUS] = ACTIONS(2779), - [anon_sym_STAR] = ACTIONS(2781), - [anon_sym_AMP_AMP] = ACTIONS(2781), - [anon_sym_AMP] = ACTIONS(2779), - [anon_sym_SEMI] = ACTIONS(2781), - [anon_sym___extension__] = ACTIONS(2779), - [anon_sym_typedef] = ACTIONS(2779), - [anon_sym_virtual] = ACTIONS(2779), - [anon_sym_extern] = ACTIONS(2779), - [anon_sym___attribute__] = ACTIONS(2779), - [anon_sym___attribute] = ACTIONS(2779), - [anon_sym_using] = ACTIONS(2779), - [anon_sym_COLON_COLON] = ACTIONS(2781), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2781), - [anon_sym___declspec] = ACTIONS(2779), - [anon_sym___based] = ACTIONS(2779), - [anon_sym___cdecl] = ACTIONS(2779), - [anon_sym___clrcall] = ACTIONS(2779), - [anon_sym___stdcall] = ACTIONS(2779), - [anon_sym___fastcall] = ACTIONS(2779), - [anon_sym___thiscall] = ACTIONS(2779), - [anon_sym___vectorcall] = ACTIONS(2779), - [anon_sym_LBRACE] = ACTIONS(2781), - [anon_sym_signed] = ACTIONS(2779), - [anon_sym_unsigned] = ACTIONS(2779), - [anon_sym_long] = ACTIONS(2779), - [anon_sym_short] = ACTIONS(2779), - [anon_sym_LBRACK] = ACTIONS(2779), - [anon_sym_static] = ACTIONS(2779), - [anon_sym_register] = ACTIONS(2779), - [anon_sym_inline] = ACTIONS(2779), - [anon_sym___inline] = ACTIONS(2779), - [anon_sym___inline__] = ACTIONS(2779), - [anon_sym___forceinline] = ACTIONS(2779), - [anon_sym_thread_local] = ACTIONS(2779), - [anon_sym___thread] = ACTIONS(2779), - [anon_sym_const] = ACTIONS(2779), - [anon_sym_constexpr] = ACTIONS(2779), - [anon_sym_volatile] = ACTIONS(2779), - [anon_sym_restrict] = ACTIONS(2779), - [anon_sym___restrict__] = ACTIONS(2779), - [anon_sym__Atomic] = ACTIONS(2779), - [anon_sym__Noreturn] = ACTIONS(2779), - [anon_sym_noreturn] = ACTIONS(2779), - [anon_sym__Nonnull] = ACTIONS(2779), - [anon_sym_mutable] = ACTIONS(2779), - [anon_sym_constinit] = ACTIONS(2779), - [anon_sym_consteval] = ACTIONS(2779), - [anon_sym_alignas] = ACTIONS(2779), - [anon_sym__Alignas] = ACTIONS(2779), - [sym_primitive_type] = ACTIONS(2779), - [anon_sym_enum] = ACTIONS(2779), - [anon_sym_class] = ACTIONS(2779), - [anon_sym_struct] = ACTIONS(2779), - [anon_sym_union] = ACTIONS(2779), - [anon_sym_if] = ACTIONS(2779), - [anon_sym_switch] = ACTIONS(2779), - [anon_sym_case] = ACTIONS(2779), - [anon_sym_default] = ACTIONS(2779), - [anon_sym_while] = ACTIONS(2779), - [anon_sym_do] = ACTIONS(2779), - [anon_sym_for] = ACTIONS(2779), - [anon_sym_return] = ACTIONS(2779), - [anon_sym_break] = ACTIONS(2779), - [anon_sym_continue] = ACTIONS(2779), - [anon_sym_goto] = ACTIONS(2779), - [anon_sym_not] = ACTIONS(2779), - [anon_sym_compl] = ACTIONS(2779), - [anon_sym_DASH_DASH] = ACTIONS(2781), - [anon_sym_PLUS_PLUS] = ACTIONS(2781), - [anon_sym_sizeof] = ACTIONS(2779), - [anon_sym___alignof__] = ACTIONS(2779), - [anon_sym___alignof] = ACTIONS(2779), - [anon_sym__alignof] = ACTIONS(2779), - [anon_sym_alignof] = ACTIONS(2779), - [anon_sym__Alignof] = ACTIONS(2779), - [anon_sym_offsetof] = ACTIONS(2779), - [anon_sym__Generic] = ACTIONS(2779), - [anon_sym_asm] = ACTIONS(2779), - [anon_sym___asm__] = ACTIONS(2779), - [anon_sym___asm] = ACTIONS(2779), - [sym_number_literal] = ACTIONS(2781), - [anon_sym_L_SQUOTE] = ACTIONS(2781), - [anon_sym_u_SQUOTE] = ACTIONS(2781), - [anon_sym_U_SQUOTE] = ACTIONS(2781), - [anon_sym_u8_SQUOTE] = ACTIONS(2781), - [anon_sym_SQUOTE] = ACTIONS(2781), - [anon_sym_L_DQUOTE] = ACTIONS(2781), - [anon_sym_u_DQUOTE] = ACTIONS(2781), - [anon_sym_U_DQUOTE] = ACTIONS(2781), - [anon_sym_u8_DQUOTE] = ACTIONS(2781), - [anon_sym_DQUOTE] = ACTIONS(2781), - [sym_true] = ACTIONS(2779), - [sym_false] = ACTIONS(2779), - [anon_sym_NULL] = ACTIONS(2779), - [anon_sym_nullptr] = ACTIONS(2779), + [515] = { + [ts_builtin_sym_end] = ACTIONS(3403), + [sym_identifier] = ACTIONS(3405), + [aux_sym_preproc_include_token1] = ACTIONS(3405), + [aux_sym_preproc_def_token1] = ACTIONS(3405), + [aux_sym_preproc_if_token1] = ACTIONS(3405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3405), + [sym_preproc_directive] = ACTIONS(3405), + [anon_sym_LPAREN2] = ACTIONS(3403), + [anon_sym_BANG] = ACTIONS(3403), + [anon_sym_TILDE] = ACTIONS(3403), + [anon_sym_DASH] = ACTIONS(3405), + [anon_sym_PLUS] = ACTIONS(3405), + [anon_sym_STAR] = ACTIONS(3403), + [anon_sym_AMP_AMP] = ACTIONS(3403), + [anon_sym_AMP] = ACTIONS(3405), + [anon_sym_SEMI] = ACTIONS(3403), + [anon_sym___extension__] = ACTIONS(3405), + [anon_sym_typedef] = ACTIONS(3405), + [anon_sym_virtual] = ACTIONS(3405), + [anon_sym_extern] = ACTIONS(3405), + [anon_sym___attribute__] = ACTIONS(3405), + [anon_sym___attribute] = ACTIONS(3405), + [anon_sym_using] = ACTIONS(3405), + [anon_sym_COLON_COLON] = ACTIONS(3403), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3403), + [anon_sym___declspec] = ACTIONS(3405), + [anon_sym___based] = ACTIONS(3405), + [anon_sym___cdecl] = ACTIONS(3405), + [anon_sym___clrcall] = ACTIONS(3405), + [anon_sym___stdcall] = ACTIONS(3405), + [anon_sym___fastcall] = ACTIONS(3405), + [anon_sym___thiscall] = ACTIONS(3405), + [anon_sym___vectorcall] = ACTIONS(3405), + [anon_sym_LBRACE] = ACTIONS(3403), + [anon_sym_signed] = ACTIONS(3405), + [anon_sym_unsigned] = ACTIONS(3405), + [anon_sym_long] = ACTIONS(3405), + [anon_sym_short] = ACTIONS(3405), + [anon_sym_LBRACK] = ACTIONS(3405), + [anon_sym_static] = ACTIONS(3405), + [anon_sym_register] = ACTIONS(3405), + [anon_sym_inline] = ACTIONS(3405), + [anon_sym___inline] = ACTIONS(3405), + [anon_sym___inline__] = ACTIONS(3405), + [anon_sym___forceinline] = ACTIONS(3405), + [anon_sym_thread_local] = ACTIONS(3405), + [anon_sym___thread] = ACTIONS(3405), + [anon_sym_const] = ACTIONS(3405), + [anon_sym_constexpr] = ACTIONS(3405), + [anon_sym_volatile] = ACTIONS(3405), + [anon_sym_restrict] = ACTIONS(3405), + [anon_sym___restrict__] = ACTIONS(3405), + [anon_sym__Atomic] = ACTIONS(3405), + [anon_sym__Noreturn] = ACTIONS(3405), + [anon_sym_noreturn] = ACTIONS(3405), + [anon_sym__Nonnull] = ACTIONS(3405), + [anon_sym_mutable] = ACTIONS(3405), + [anon_sym_constinit] = ACTIONS(3405), + [anon_sym_consteval] = ACTIONS(3405), + [anon_sym_alignas] = ACTIONS(3405), + [anon_sym__Alignas] = ACTIONS(3405), + [sym_primitive_type] = ACTIONS(3405), + [anon_sym_enum] = ACTIONS(3405), + [anon_sym_class] = ACTIONS(3405), + [anon_sym_struct] = ACTIONS(3405), + [anon_sym_union] = ACTIONS(3405), + [anon_sym_if] = ACTIONS(3405), + [anon_sym_switch] = ACTIONS(3405), + [anon_sym_case] = ACTIONS(3405), + [anon_sym_default] = ACTIONS(3405), + [anon_sym_while] = ACTIONS(3405), + [anon_sym_do] = ACTIONS(3405), + [anon_sym_for] = ACTIONS(3405), + [anon_sym_return] = ACTIONS(3405), + [anon_sym_break] = ACTIONS(3405), + [anon_sym_continue] = ACTIONS(3405), + [anon_sym_goto] = ACTIONS(3405), + [anon_sym_not] = ACTIONS(3405), + [anon_sym_compl] = ACTIONS(3405), + [anon_sym_DASH_DASH] = ACTIONS(3403), + [anon_sym_PLUS_PLUS] = ACTIONS(3403), + [anon_sym_sizeof] = ACTIONS(3405), + [anon_sym___alignof__] = ACTIONS(3405), + [anon_sym___alignof] = ACTIONS(3405), + [anon_sym__alignof] = ACTIONS(3405), + [anon_sym_alignof] = ACTIONS(3405), + [anon_sym__Alignof] = ACTIONS(3405), + [anon_sym_offsetof] = ACTIONS(3405), + [anon_sym__Generic] = ACTIONS(3405), + [anon_sym_asm] = ACTIONS(3405), + [anon_sym___asm__] = ACTIONS(3405), + [anon_sym___asm] = ACTIONS(3405), + [sym_number_literal] = ACTIONS(3403), + [anon_sym_L_SQUOTE] = ACTIONS(3403), + [anon_sym_u_SQUOTE] = ACTIONS(3403), + [anon_sym_U_SQUOTE] = ACTIONS(3403), + [anon_sym_u8_SQUOTE] = ACTIONS(3403), + [anon_sym_SQUOTE] = ACTIONS(3403), + [anon_sym_L_DQUOTE] = ACTIONS(3403), + [anon_sym_u_DQUOTE] = ACTIONS(3403), + [anon_sym_U_DQUOTE] = ACTIONS(3403), + [anon_sym_u8_DQUOTE] = ACTIONS(3403), + [anon_sym_DQUOTE] = ACTIONS(3403), + [sym_true] = ACTIONS(3405), + [sym_false] = ACTIONS(3405), + [anon_sym_NULL] = ACTIONS(3405), + [anon_sym_nullptr] = ACTIONS(3405), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2779), - [anon_sym_decltype] = ACTIONS(2779), - [anon_sym_explicit] = ACTIONS(2779), - [anon_sym_typename] = ACTIONS(2779), - [anon_sym_export] = ACTIONS(2779), - [anon_sym_module] = ACTIONS(2779), - [anon_sym_import] = ACTIONS(2779), - [anon_sym_template] = ACTIONS(2779), - [anon_sym_operator] = ACTIONS(2779), - [anon_sym_try] = ACTIONS(2779), - [anon_sym_delete] = ACTIONS(2779), - [anon_sym_throw] = ACTIONS(2779), - [anon_sym_namespace] = ACTIONS(2779), - [anon_sym_static_assert] = ACTIONS(2779), - [anon_sym_concept] = ACTIONS(2779), - [anon_sym_co_return] = ACTIONS(2779), - [anon_sym_co_yield] = ACTIONS(2779), - [anon_sym_R_DQUOTE] = ACTIONS(2781), - [anon_sym_LR_DQUOTE] = ACTIONS(2781), - [anon_sym_uR_DQUOTE] = ACTIONS(2781), - [anon_sym_UR_DQUOTE] = ACTIONS(2781), - [anon_sym_u8R_DQUOTE] = ACTIONS(2781), - [anon_sym_co_await] = ACTIONS(2779), - [anon_sym_new] = ACTIONS(2779), - [anon_sym_requires] = ACTIONS(2779), - [sym_this] = ACTIONS(2779), + [sym_auto] = ACTIONS(3405), + [anon_sym_decltype] = ACTIONS(3405), + [anon_sym_explicit] = ACTIONS(3405), + [anon_sym_typename] = ACTIONS(3405), + [anon_sym_export] = ACTIONS(3405), + [anon_sym_module] = ACTIONS(3405), + [anon_sym_import] = ACTIONS(3405), + [anon_sym_template] = ACTIONS(3405), + [anon_sym_operator] = ACTIONS(3405), + [anon_sym_try] = ACTIONS(3405), + [anon_sym_delete] = ACTIONS(3405), + [anon_sym_throw] = ACTIONS(3405), + [anon_sym_namespace] = ACTIONS(3405), + [anon_sym_static_assert] = ACTIONS(3405), + [anon_sym_concept] = ACTIONS(3405), + [anon_sym_co_return] = ACTIONS(3405), + [anon_sym_co_yield] = ACTIONS(3405), + [anon_sym_R_DQUOTE] = ACTIONS(3403), + [anon_sym_LR_DQUOTE] = ACTIONS(3403), + [anon_sym_uR_DQUOTE] = ACTIONS(3403), + [anon_sym_UR_DQUOTE] = ACTIONS(3403), + [anon_sym_u8R_DQUOTE] = ACTIONS(3403), + [anon_sym_co_await] = ACTIONS(3405), + [anon_sym_new] = ACTIONS(3405), + [anon_sym_requires] = ACTIONS(3405), + [sym_this] = ACTIONS(3405), }, - [513] = { - [ts_builtin_sym_end] = ACTIONS(3033), - [sym_identifier] = ACTIONS(3031), - [aux_sym_preproc_include_token1] = ACTIONS(3031), - [aux_sym_preproc_def_token1] = ACTIONS(3031), - [aux_sym_preproc_if_token1] = ACTIONS(3031), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3031), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3031), - [sym_preproc_directive] = ACTIONS(3031), - [anon_sym_LPAREN2] = ACTIONS(3033), - [anon_sym_BANG] = ACTIONS(3033), - [anon_sym_TILDE] = ACTIONS(3033), - [anon_sym_DASH] = ACTIONS(3031), - [anon_sym_PLUS] = ACTIONS(3031), - [anon_sym_STAR] = ACTIONS(3033), - [anon_sym_AMP_AMP] = ACTIONS(3033), - [anon_sym_AMP] = ACTIONS(3031), - [anon_sym_SEMI] = ACTIONS(3033), - [anon_sym___extension__] = ACTIONS(3031), - [anon_sym_typedef] = ACTIONS(3031), - [anon_sym_virtual] = ACTIONS(3031), - [anon_sym_extern] = ACTIONS(3031), - [anon_sym___attribute__] = ACTIONS(3031), - [anon_sym___attribute] = ACTIONS(3031), - [anon_sym_using] = ACTIONS(3031), - [anon_sym_COLON_COLON] = ACTIONS(3033), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3033), - [anon_sym___declspec] = ACTIONS(3031), - [anon_sym___based] = ACTIONS(3031), - [anon_sym___cdecl] = ACTIONS(3031), - [anon_sym___clrcall] = ACTIONS(3031), - [anon_sym___stdcall] = ACTIONS(3031), - [anon_sym___fastcall] = ACTIONS(3031), - [anon_sym___thiscall] = ACTIONS(3031), - [anon_sym___vectorcall] = ACTIONS(3031), - [anon_sym_LBRACE] = ACTIONS(3033), - [anon_sym_signed] = ACTIONS(3031), - [anon_sym_unsigned] = ACTIONS(3031), - [anon_sym_long] = ACTIONS(3031), - [anon_sym_short] = ACTIONS(3031), - [anon_sym_LBRACK] = ACTIONS(3031), - [anon_sym_static] = ACTIONS(3031), - [anon_sym_register] = ACTIONS(3031), - [anon_sym_inline] = ACTIONS(3031), - [anon_sym___inline] = ACTIONS(3031), - [anon_sym___inline__] = ACTIONS(3031), - [anon_sym___forceinline] = ACTIONS(3031), - [anon_sym_thread_local] = ACTIONS(3031), - [anon_sym___thread] = ACTIONS(3031), - [anon_sym_const] = ACTIONS(3031), - [anon_sym_constexpr] = ACTIONS(3031), - [anon_sym_volatile] = ACTIONS(3031), - [anon_sym_restrict] = ACTIONS(3031), - [anon_sym___restrict__] = ACTIONS(3031), - [anon_sym__Atomic] = ACTIONS(3031), - [anon_sym__Noreturn] = ACTIONS(3031), - [anon_sym_noreturn] = ACTIONS(3031), - [anon_sym__Nonnull] = ACTIONS(3031), - [anon_sym_mutable] = ACTIONS(3031), - [anon_sym_constinit] = ACTIONS(3031), - [anon_sym_consteval] = ACTIONS(3031), - [anon_sym_alignas] = ACTIONS(3031), - [anon_sym__Alignas] = ACTIONS(3031), - [sym_primitive_type] = ACTIONS(3031), - [anon_sym_enum] = ACTIONS(3031), - [anon_sym_class] = ACTIONS(3031), - [anon_sym_struct] = ACTIONS(3031), - [anon_sym_union] = ACTIONS(3031), - [anon_sym_if] = ACTIONS(3031), - [anon_sym_switch] = ACTIONS(3031), - [anon_sym_case] = ACTIONS(3031), - [anon_sym_default] = ACTIONS(3031), - [anon_sym_while] = ACTIONS(3031), - [anon_sym_do] = ACTIONS(3031), - [anon_sym_for] = ACTIONS(3031), - [anon_sym_return] = ACTIONS(3031), - [anon_sym_break] = ACTIONS(3031), - [anon_sym_continue] = ACTIONS(3031), - [anon_sym_goto] = ACTIONS(3031), - [anon_sym_not] = ACTIONS(3031), - [anon_sym_compl] = ACTIONS(3031), - [anon_sym_DASH_DASH] = ACTIONS(3033), - [anon_sym_PLUS_PLUS] = ACTIONS(3033), - [anon_sym_sizeof] = ACTIONS(3031), - [anon_sym___alignof__] = ACTIONS(3031), - [anon_sym___alignof] = ACTIONS(3031), - [anon_sym__alignof] = ACTIONS(3031), - [anon_sym_alignof] = ACTIONS(3031), - [anon_sym__Alignof] = ACTIONS(3031), - [anon_sym_offsetof] = ACTIONS(3031), - [anon_sym__Generic] = ACTIONS(3031), - [anon_sym_asm] = ACTIONS(3031), - [anon_sym___asm__] = ACTIONS(3031), - [anon_sym___asm] = ACTIONS(3031), - [sym_number_literal] = ACTIONS(3033), - [anon_sym_L_SQUOTE] = ACTIONS(3033), - [anon_sym_u_SQUOTE] = ACTIONS(3033), - [anon_sym_U_SQUOTE] = ACTIONS(3033), - [anon_sym_u8_SQUOTE] = ACTIONS(3033), - [anon_sym_SQUOTE] = ACTIONS(3033), - [anon_sym_L_DQUOTE] = ACTIONS(3033), - [anon_sym_u_DQUOTE] = ACTIONS(3033), - [anon_sym_U_DQUOTE] = ACTIONS(3033), - [anon_sym_u8_DQUOTE] = ACTIONS(3033), - [anon_sym_DQUOTE] = ACTIONS(3033), - [sym_true] = ACTIONS(3031), - [sym_false] = ACTIONS(3031), - [anon_sym_NULL] = ACTIONS(3031), - [anon_sym_nullptr] = ACTIONS(3031), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3031), - [anon_sym_decltype] = ACTIONS(3031), - [anon_sym_explicit] = ACTIONS(3031), - [anon_sym_typename] = ACTIONS(3031), - [anon_sym_export] = ACTIONS(3031), - [anon_sym_module] = ACTIONS(3031), - [anon_sym_import] = ACTIONS(3031), - [anon_sym_template] = ACTIONS(3031), - [anon_sym_operator] = ACTIONS(3031), - [anon_sym_try] = ACTIONS(3031), - [anon_sym_delete] = ACTIONS(3031), - [anon_sym_throw] = ACTIONS(3031), - [anon_sym_namespace] = ACTIONS(3031), - [anon_sym_static_assert] = ACTIONS(3031), - [anon_sym_concept] = ACTIONS(3031), - [anon_sym_co_return] = ACTIONS(3031), - [anon_sym_co_yield] = ACTIONS(3031), - [anon_sym_R_DQUOTE] = ACTIONS(3033), - [anon_sym_LR_DQUOTE] = ACTIONS(3033), - [anon_sym_uR_DQUOTE] = ACTIONS(3033), - [anon_sym_UR_DQUOTE] = ACTIONS(3033), - [anon_sym_u8R_DQUOTE] = ACTIONS(3033), - [anon_sym_co_await] = ACTIONS(3031), - [anon_sym_new] = ACTIONS(3031), - [anon_sym_requires] = ACTIONS(3031), - [sym_this] = ACTIONS(3031), + [516] = { + [ts_builtin_sym_end] = ACTIONS(3407), + [sym_identifier] = ACTIONS(3409), + [aux_sym_preproc_include_token1] = ACTIONS(3409), + [aux_sym_preproc_def_token1] = ACTIONS(3409), + [aux_sym_preproc_if_token1] = ACTIONS(3409), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3409), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3409), + [sym_preproc_directive] = ACTIONS(3409), + [anon_sym_LPAREN2] = ACTIONS(3407), + [anon_sym_BANG] = ACTIONS(3407), + [anon_sym_TILDE] = ACTIONS(3407), + [anon_sym_DASH] = ACTIONS(3409), + [anon_sym_PLUS] = ACTIONS(3409), + [anon_sym_STAR] = ACTIONS(3407), + [anon_sym_AMP_AMP] = ACTIONS(3407), + [anon_sym_AMP] = ACTIONS(3409), + [anon_sym_SEMI] = ACTIONS(3407), + [anon_sym___extension__] = ACTIONS(3409), + [anon_sym_typedef] = ACTIONS(3409), + [anon_sym_virtual] = ACTIONS(3409), + [anon_sym_extern] = ACTIONS(3409), + [anon_sym___attribute__] = ACTIONS(3409), + [anon_sym___attribute] = ACTIONS(3409), + [anon_sym_using] = ACTIONS(3409), + [anon_sym_COLON_COLON] = ACTIONS(3407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3407), + [anon_sym___declspec] = ACTIONS(3409), + [anon_sym___based] = ACTIONS(3409), + [anon_sym___cdecl] = ACTIONS(3409), + [anon_sym___clrcall] = ACTIONS(3409), + [anon_sym___stdcall] = ACTIONS(3409), + [anon_sym___fastcall] = ACTIONS(3409), + [anon_sym___thiscall] = ACTIONS(3409), + [anon_sym___vectorcall] = ACTIONS(3409), + [anon_sym_LBRACE] = ACTIONS(3407), + [anon_sym_signed] = ACTIONS(3409), + [anon_sym_unsigned] = ACTIONS(3409), + [anon_sym_long] = ACTIONS(3409), + [anon_sym_short] = ACTIONS(3409), + [anon_sym_LBRACK] = ACTIONS(3409), + [anon_sym_static] = ACTIONS(3409), + [anon_sym_register] = ACTIONS(3409), + [anon_sym_inline] = ACTIONS(3409), + [anon_sym___inline] = ACTIONS(3409), + [anon_sym___inline__] = ACTIONS(3409), + [anon_sym___forceinline] = ACTIONS(3409), + [anon_sym_thread_local] = ACTIONS(3409), + [anon_sym___thread] = ACTIONS(3409), + [anon_sym_const] = ACTIONS(3409), + [anon_sym_constexpr] = ACTIONS(3409), + [anon_sym_volatile] = ACTIONS(3409), + [anon_sym_restrict] = ACTIONS(3409), + [anon_sym___restrict__] = ACTIONS(3409), + [anon_sym__Atomic] = ACTIONS(3409), + [anon_sym__Noreturn] = ACTIONS(3409), + [anon_sym_noreturn] = ACTIONS(3409), + [anon_sym__Nonnull] = ACTIONS(3409), + [anon_sym_mutable] = ACTIONS(3409), + [anon_sym_constinit] = ACTIONS(3409), + [anon_sym_consteval] = ACTIONS(3409), + [anon_sym_alignas] = ACTIONS(3409), + [anon_sym__Alignas] = ACTIONS(3409), + [sym_primitive_type] = ACTIONS(3409), + [anon_sym_enum] = ACTIONS(3409), + [anon_sym_class] = ACTIONS(3409), + [anon_sym_struct] = ACTIONS(3409), + [anon_sym_union] = ACTIONS(3409), + [anon_sym_if] = ACTIONS(3409), + [anon_sym_switch] = ACTIONS(3409), + [anon_sym_case] = ACTIONS(3409), + [anon_sym_default] = ACTIONS(3409), + [anon_sym_while] = ACTIONS(3409), + [anon_sym_do] = ACTIONS(3409), + [anon_sym_for] = ACTIONS(3409), + [anon_sym_return] = ACTIONS(3409), + [anon_sym_break] = ACTIONS(3409), + [anon_sym_continue] = ACTIONS(3409), + [anon_sym_goto] = ACTIONS(3409), + [anon_sym_not] = ACTIONS(3409), + [anon_sym_compl] = ACTIONS(3409), + [anon_sym_DASH_DASH] = ACTIONS(3407), + [anon_sym_PLUS_PLUS] = ACTIONS(3407), + [anon_sym_sizeof] = ACTIONS(3409), + [anon_sym___alignof__] = ACTIONS(3409), + [anon_sym___alignof] = ACTIONS(3409), + [anon_sym__alignof] = ACTIONS(3409), + [anon_sym_alignof] = ACTIONS(3409), + [anon_sym__Alignof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3409), + [anon_sym__Generic] = ACTIONS(3409), + [anon_sym_asm] = ACTIONS(3409), + [anon_sym___asm__] = ACTIONS(3409), + [anon_sym___asm] = ACTIONS(3409), + [sym_number_literal] = ACTIONS(3407), + [anon_sym_L_SQUOTE] = ACTIONS(3407), + [anon_sym_u_SQUOTE] = ACTIONS(3407), + [anon_sym_U_SQUOTE] = ACTIONS(3407), + [anon_sym_u8_SQUOTE] = ACTIONS(3407), + [anon_sym_SQUOTE] = ACTIONS(3407), + [anon_sym_L_DQUOTE] = ACTIONS(3407), + [anon_sym_u_DQUOTE] = ACTIONS(3407), + [anon_sym_U_DQUOTE] = ACTIONS(3407), + [anon_sym_u8_DQUOTE] = ACTIONS(3407), + [anon_sym_DQUOTE] = ACTIONS(3407), + [sym_true] = ACTIONS(3409), + [sym_false] = ACTIONS(3409), + [anon_sym_NULL] = ACTIONS(3409), + [anon_sym_nullptr] = ACTIONS(3409), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3409), + [anon_sym_decltype] = ACTIONS(3409), + [anon_sym_explicit] = ACTIONS(3409), + [anon_sym_typename] = ACTIONS(3409), + [anon_sym_export] = ACTIONS(3409), + [anon_sym_module] = ACTIONS(3409), + [anon_sym_import] = ACTIONS(3409), + [anon_sym_template] = ACTIONS(3409), + [anon_sym_operator] = ACTIONS(3409), + [anon_sym_try] = ACTIONS(3409), + [anon_sym_delete] = ACTIONS(3409), + [anon_sym_throw] = ACTIONS(3409), + [anon_sym_namespace] = ACTIONS(3409), + [anon_sym_static_assert] = ACTIONS(3409), + [anon_sym_concept] = ACTIONS(3409), + [anon_sym_co_return] = ACTIONS(3409), + [anon_sym_co_yield] = ACTIONS(3409), + [anon_sym_R_DQUOTE] = ACTIONS(3407), + [anon_sym_LR_DQUOTE] = ACTIONS(3407), + [anon_sym_uR_DQUOTE] = ACTIONS(3407), + [anon_sym_UR_DQUOTE] = ACTIONS(3407), + [anon_sym_u8R_DQUOTE] = ACTIONS(3407), + [anon_sym_co_await] = ACTIONS(3409), + [anon_sym_new] = ACTIONS(3409), + [anon_sym_requires] = ACTIONS(3409), + [sym_this] = ACTIONS(3409), }, - [514] = { - [ts_builtin_sym_end] = ACTIONS(3037), - [sym_identifier] = ACTIONS(3035), - [aux_sym_preproc_include_token1] = ACTIONS(3035), - [aux_sym_preproc_def_token1] = ACTIONS(3035), - [aux_sym_preproc_if_token1] = ACTIONS(3035), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3035), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3035), - [sym_preproc_directive] = ACTIONS(3035), - [anon_sym_LPAREN2] = ACTIONS(3037), - [anon_sym_BANG] = ACTIONS(3037), - [anon_sym_TILDE] = ACTIONS(3037), - [anon_sym_DASH] = ACTIONS(3035), - [anon_sym_PLUS] = ACTIONS(3035), - [anon_sym_STAR] = ACTIONS(3037), - [anon_sym_AMP_AMP] = ACTIONS(3037), - [anon_sym_AMP] = ACTIONS(3035), - [anon_sym_SEMI] = ACTIONS(3037), - [anon_sym___extension__] = ACTIONS(3035), - [anon_sym_typedef] = ACTIONS(3035), - [anon_sym_virtual] = ACTIONS(3035), - [anon_sym_extern] = ACTIONS(3035), - [anon_sym___attribute__] = ACTIONS(3035), - [anon_sym___attribute] = ACTIONS(3035), - [anon_sym_using] = ACTIONS(3035), - [anon_sym_COLON_COLON] = ACTIONS(3037), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3037), - [anon_sym___declspec] = ACTIONS(3035), - [anon_sym___based] = ACTIONS(3035), - [anon_sym___cdecl] = ACTIONS(3035), - [anon_sym___clrcall] = ACTIONS(3035), - [anon_sym___stdcall] = ACTIONS(3035), - [anon_sym___fastcall] = ACTIONS(3035), - [anon_sym___thiscall] = ACTIONS(3035), - [anon_sym___vectorcall] = ACTIONS(3035), - [anon_sym_LBRACE] = ACTIONS(3037), - [anon_sym_signed] = ACTIONS(3035), - [anon_sym_unsigned] = ACTIONS(3035), - [anon_sym_long] = ACTIONS(3035), - [anon_sym_short] = ACTIONS(3035), - [anon_sym_LBRACK] = ACTIONS(3035), - [anon_sym_static] = ACTIONS(3035), - [anon_sym_register] = ACTIONS(3035), - [anon_sym_inline] = ACTIONS(3035), - [anon_sym___inline] = ACTIONS(3035), - [anon_sym___inline__] = ACTIONS(3035), - [anon_sym___forceinline] = ACTIONS(3035), - [anon_sym_thread_local] = ACTIONS(3035), - [anon_sym___thread] = ACTIONS(3035), - [anon_sym_const] = ACTIONS(3035), - [anon_sym_constexpr] = ACTIONS(3035), - [anon_sym_volatile] = ACTIONS(3035), - [anon_sym_restrict] = ACTIONS(3035), - [anon_sym___restrict__] = ACTIONS(3035), - [anon_sym__Atomic] = ACTIONS(3035), - [anon_sym__Noreturn] = ACTIONS(3035), - [anon_sym_noreturn] = ACTIONS(3035), - [anon_sym__Nonnull] = ACTIONS(3035), - [anon_sym_mutable] = ACTIONS(3035), - [anon_sym_constinit] = ACTIONS(3035), - [anon_sym_consteval] = ACTIONS(3035), - [anon_sym_alignas] = ACTIONS(3035), - [anon_sym__Alignas] = ACTIONS(3035), - [sym_primitive_type] = ACTIONS(3035), - [anon_sym_enum] = ACTIONS(3035), - [anon_sym_class] = ACTIONS(3035), - [anon_sym_struct] = ACTIONS(3035), - [anon_sym_union] = ACTIONS(3035), - [anon_sym_if] = ACTIONS(3035), - [anon_sym_switch] = ACTIONS(3035), - [anon_sym_case] = ACTIONS(3035), - [anon_sym_default] = ACTIONS(3035), - [anon_sym_while] = ACTIONS(3035), - [anon_sym_do] = ACTIONS(3035), - [anon_sym_for] = ACTIONS(3035), - [anon_sym_return] = ACTIONS(3035), - [anon_sym_break] = ACTIONS(3035), - [anon_sym_continue] = ACTIONS(3035), - [anon_sym_goto] = ACTIONS(3035), - [anon_sym_not] = ACTIONS(3035), - [anon_sym_compl] = ACTIONS(3035), - [anon_sym_DASH_DASH] = ACTIONS(3037), - [anon_sym_PLUS_PLUS] = ACTIONS(3037), - [anon_sym_sizeof] = ACTIONS(3035), - [anon_sym___alignof__] = ACTIONS(3035), - [anon_sym___alignof] = ACTIONS(3035), - [anon_sym__alignof] = ACTIONS(3035), - [anon_sym_alignof] = ACTIONS(3035), - [anon_sym__Alignof] = ACTIONS(3035), - [anon_sym_offsetof] = ACTIONS(3035), - [anon_sym__Generic] = ACTIONS(3035), - [anon_sym_asm] = ACTIONS(3035), - [anon_sym___asm__] = ACTIONS(3035), - [anon_sym___asm] = ACTIONS(3035), - [sym_number_literal] = ACTIONS(3037), - [anon_sym_L_SQUOTE] = ACTIONS(3037), - [anon_sym_u_SQUOTE] = ACTIONS(3037), - [anon_sym_U_SQUOTE] = ACTIONS(3037), - [anon_sym_u8_SQUOTE] = ACTIONS(3037), - [anon_sym_SQUOTE] = ACTIONS(3037), - [anon_sym_L_DQUOTE] = ACTIONS(3037), - [anon_sym_u_DQUOTE] = ACTIONS(3037), - [anon_sym_U_DQUOTE] = ACTIONS(3037), - [anon_sym_u8_DQUOTE] = ACTIONS(3037), - [anon_sym_DQUOTE] = ACTIONS(3037), - [sym_true] = ACTIONS(3035), - [sym_false] = ACTIONS(3035), - [anon_sym_NULL] = ACTIONS(3035), - [anon_sym_nullptr] = ACTIONS(3035), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3035), - [anon_sym_decltype] = ACTIONS(3035), - [anon_sym_explicit] = ACTIONS(3035), - [anon_sym_typename] = ACTIONS(3035), - [anon_sym_export] = ACTIONS(3035), - [anon_sym_module] = ACTIONS(3035), - [anon_sym_import] = ACTIONS(3035), - [anon_sym_template] = ACTIONS(3035), - [anon_sym_operator] = ACTIONS(3035), - [anon_sym_try] = ACTIONS(3035), - [anon_sym_delete] = ACTIONS(3035), - [anon_sym_throw] = ACTIONS(3035), - [anon_sym_namespace] = ACTIONS(3035), - [anon_sym_static_assert] = ACTIONS(3035), - [anon_sym_concept] = ACTIONS(3035), - [anon_sym_co_return] = ACTIONS(3035), - [anon_sym_co_yield] = ACTIONS(3035), - [anon_sym_R_DQUOTE] = ACTIONS(3037), - [anon_sym_LR_DQUOTE] = ACTIONS(3037), - [anon_sym_uR_DQUOTE] = ACTIONS(3037), - [anon_sym_UR_DQUOTE] = ACTIONS(3037), - [anon_sym_u8R_DQUOTE] = ACTIONS(3037), - [anon_sym_co_await] = ACTIONS(3035), - [anon_sym_new] = ACTIONS(3035), - [anon_sym_requires] = ACTIONS(3035), - [sym_this] = ACTIONS(3035), + [517] = { + [ts_builtin_sym_end] = ACTIONS(3411), + [sym_identifier] = ACTIONS(3413), + [aux_sym_preproc_include_token1] = ACTIONS(3413), + [aux_sym_preproc_def_token1] = ACTIONS(3413), + [aux_sym_preproc_if_token1] = ACTIONS(3413), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3413), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3413), + [sym_preproc_directive] = ACTIONS(3413), + [anon_sym_LPAREN2] = ACTIONS(3411), + [anon_sym_BANG] = ACTIONS(3411), + [anon_sym_TILDE] = ACTIONS(3411), + [anon_sym_DASH] = ACTIONS(3413), + [anon_sym_PLUS] = ACTIONS(3413), + [anon_sym_STAR] = ACTIONS(3411), + [anon_sym_AMP_AMP] = ACTIONS(3411), + [anon_sym_AMP] = ACTIONS(3413), + [anon_sym_SEMI] = ACTIONS(3411), + [anon_sym___extension__] = ACTIONS(3413), + [anon_sym_typedef] = ACTIONS(3413), + [anon_sym_virtual] = ACTIONS(3413), + [anon_sym_extern] = ACTIONS(3413), + [anon_sym___attribute__] = ACTIONS(3413), + [anon_sym___attribute] = ACTIONS(3413), + [anon_sym_using] = ACTIONS(3413), + [anon_sym_COLON_COLON] = ACTIONS(3411), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3411), + [anon_sym___declspec] = ACTIONS(3413), + [anon_sym___based] = ACTIONS(3413), + [anon_sym___cdecl] = ACTIONS(3413), + [anon_sym___clrcall] = ACTIONS(3413), + [anon_sym___stdcall] = ACTIONS(3413), + [anon_sym___fastcall] = ACTIONS(3413), + [anon_sym___thiscall] = ACTIONS(3413), + [anon_sym___vectorcall] = ACTIONS(3413), + [anon_sym_LBRACE] = ACTIONS(3411), + [anon_sym_signed] = ACTIONS(3413), + [anon_sym_unsigned] = ACTIONS(3413), + [anon_sym_long] = ACTIONS(3413), + [anon_sym_short] = ACTIONS(3413), + [anon_sym_LBRACK] = ACTIONS(3413), + [anon_sym_static] = ACTIONS(3413), + [anon_sym_register] = ACTIONS(3413), + [anon_sym_inline] = ACTIONS(3413), + [anon_sym___inline] = ACTIONS(3413), + [anon_sym___inline__] = ACTIONS(3413), + [anon_sym___forceinline] = ACTIONS(3413), + [anon_sym_thread_local] = ACTIONS(3413), + [anon_sym___thread] = ACTIONS(3413), + [anon_sym_const] = ACTIONS(3413), + [anon_sym_constexpr] = ACTIONS(3413), + [anon_sym_volatile] = ACTIONS(3413), + [anon_sym_restrict] = ACTIONS(3413), + [anon_sym___restrict__] = ACTIONS(3413), + [anon_sym__Atomic] = ACTIONS(3413), + [anon_sym__Noreturn] = ACTIONS(3413), + [anon_sym_noreturn] = ACTIONS(3413), + [anon_sym__Nonnull] = ACTIONS(3413), + [anon_sym_mutable] = ACTIONS(3413), + [anon_sym_constinit] = ACTIONS(3413), + [anon_sym_consteval] = ACTIONS(3413), + [anon_sym_alignas] = ACTIONS(3413), + [anon_sym__Alignas] = ACTIONS(3413), + [sym_primitive_type] = ACTIONS(3413), + [anon_sym_enum] = ACTIONS(3413), + [anon_sym_class] = ACTIONS(3413), + [anon_sym_struct] = ACTIONS(3413), + [anon_sym_union] = ACTIONS(3413), + [anon_sym_if] = ACTIONS(3413), + [anon_sym_switch] = ACTIONS(3413), + [anon_sym_case] = ACTIONS(3413), + [anon_sym_default] = ACTIONS(3413), + [anon_sym_while] = ACTIONS(3413), + [anon_sym_do] = ACTIONS(3413), + [anon_sym_for] = ACTIONS(3413), + [anon_sym_return] = ACTIONS(3413), + [anon_sym_break] = ACTIONS(3413), + [anon_sym_continue] = ACTIONS(3413), + [anon_sym_goto] = ACTIONS(3413), + [anon_sym_not] = ACTIONS(3413), + [anon_sym_compl] = ACTIONS(3413), + [anon_sym_DASH_DASH] = ACTIONS(3411), + [anon_sym_PLUS_PLUS] = ACTIONS(3411), + [anon_sym_sizeof] = ACTIONS(3413), + [anon_sym___alignof__] = ACTIONS(3413), + [anon_sym___alignof] = ACTIONS(3413), + [anon_sym__alignof] = ACTIONS(3413), + [anon_sym_alignof] = ACTIONS(3413), + [anon_sym__Alignof] = ACTIONS(3413), + [anon_sym_offsetof] = ACTIONS(3413), + [anon_sym__Generic] = ACTIONS(3413), + [anon_sym_asm] = ACTIONS(3413), + [anon_sym___asm__] = ACTIONS(3413), + [anon_sym___asm] = ACTIONS(3413), + [sym_number_literal] = ACTIONS(3411), + [anon_sym_L_SQUOTE] = ACTIONS(3411), + [anon_sym_u_SQUOTE] = ACTIONS(3411), + [anon_sym_U_SQUOTE] = ACTIONS(3411), + [anon_sym_u8_SQUOTE] = ACTIONS(3411), + [anon_sym_SQUOTE] = ACTIONS(3411), + [anon_sym_L_DQUOTE] = ACTIONS(3411), + [anon_sym_u_DQUOTE] = ACTIONS(3411), + [anon_sym_U_DQUOTE] = ACTIONS(3411), + [anon_sym_u8_DQUOTE] = ACTIONS(3411), + [anon_sym_DQUOTE] = ACTIONS(3411), + [sym_true] = ACTIONS(3413), + [sym_false] = ACTIONS(3413), + [anon_sym_NULL] = ACTIONS(3413), + [anon_sym_nullptr] = ACTIONS(3413), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3413), + [anon_sym_decltype] = ACTIONS(3413), + [anon_sym_explicit] = ACTIONS(3413), + [anon_sym_typename] = ACTIONS(3413), + [anon_sym_export] = ACTIONS(3413), + [anon_sym_module] = ACTIONS(3413), + [anon_sym_import] = ACTIONS(3413), + [anon_sym_template] = ACTIONS(3413), + [anon_sym_operator] = ACTIONS(3413), + [anon_sym_try] = ACTIONS(3413), + [anon_sym_delete] = ACTIONS(3413), + [anon_sym_throw] = ACTIONS(3413), + [anon_sym_namespace] = ACTIONS(3413), + [anon_sym_static_assert] = ACTIONS(3413), + [anon_sym_concept] = ACTIONS(3413), + [anon_sym_co_return] = ACTIONS(3413), + [anon_sym_co_yield] = ACTIONS(3413), + [anon_sym_R_DQUOTE] = ACTIONS(3411), + [anon_sym_LR_DQUOTE] = ACTIONS(3411), + [anon_sym_uR_DQUOTE] = ACTIONS(3411), + [anon_sym_UR_DQUOTE] = ACTIONS(3411), + [anon_sym_u8R_DQUOTE] = ACTIONS(3411), + [anon_sym_co_await] = ACTIONS(3413), + [anon_sym_new] = ACTIONS(3413), + [anon_sym_requires] = ACTIONS(3413), + [sym_this] = ACTIONS(3413), }, - [515] = { + [518] = { + [ts_builtin_sym_end] = ACTIONS(3415), + [sym_identifier] = ACTIONS(3417), + [aux_sym_preproc_include_token1] = ACTIONS(3417), + [aux_sym_preproc_def_token1] = ACTIONS(3417), + [aux_sym_preproc_if_token1] = ACTIONS(3417), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3417), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3417), + [sym_preproc_directive] = ACTIONS(3417), + [anon_sym_LPAREN2] = ACTIONS(3415), + [anon_sym_BANG] = ACTIONS(3415), + [anon_sym_TILDE] = ACTIONS(3415), + [anon_sym_DASH] = ACTIONS(3417), + [anon_sym_PLUS] = ACTIONS(3417), + [anon_sym_STAR] = ACTIONS(3415), + [anon_sym_AMP_AMP] = ACTIONS(3415), + [anon_sym_AMP] = ACTIONS(3417), + [anon_sym_SEMI] = ACTIONS(3415), + [anon_sym___extension__] = ACTIONS(3417), + [anon_sym_typedef] = ACTIONS(3417), + [anon_sym_virtual] = ACTIONS(3417), + [anon_sym_extern] = ACTIONS(3417), + [anon_sym___attribute__] = ACTIONS(3417), + [anon_sym___attribute] = ACTIONS(3417), + [anon_sym_using] = ACTIONS(3417), + [anon_sym_COLON_COLON] = ACTIONS(3415), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3415), + [anon_sym___declspec] = ACTIONS(3417), + [anon_sym___based] = ACTIONS(3417), + [anon_sym___cdecl] = ACTIONS(3417), + [anon_sym___clrcall] = ACTIONS(3417), + [anon_sym___stdcall] = ACTIONS(3417), + [anon_sym___fastcall] = ACTIONS(3417), + [anon_sym___thiscall] = ACTIONS(3417), + [anon_sym___vectorcall] = ACTIONS(3417), + [anon_sym_LBRACE] = ACTIONS(3415), + [anon_sym_signed] = ACTIONS(3417), + [anon_sym_unsigned] = ACTIONS(3417), + [anon_sym_long] = ACTIONS(3417), + [anon_sym_short] = ACTIONS(3417), + [anon_sym_LBRACK] = ACTIONS(3417), + [anon_sym_static] = ACTIONS(3417), + [anon_sym_register] = ACTIONS(3417), + [anon_sym_inline] = ACTIONS(3417), + [anon_sym___inline] = ACTIONS(3417), + [anon_sym___inline__] = ACTIONS(3417), + [anon_sym___forceinline] = ACTIONS(3417), + [anon_sym_thread_local] = ACTIONS(3417), + [anon_sym___thread] = ACTIONS(3417), + [anon_sym_const] = ACTIONS(3417), + [anon_sym_constexpr] = ACTIONS(3417), + [anon_sym_volatile] = ACTIONS(3417), + [anon_sym_restrict] = ACTIONS(3417), + [anon_sym___restrict__] = ACTIONS(3417), + [anon_sym__Atomic] = ACTIONS(3417), + [anon_sym__Noreturn] = ACTIONS(3417), + [anon_sym_noreturn] = ACTIONS(3417), + [anon_sym__Nonnull] = ACTIONS(3417), + [anon_sym_mutable] = ACTIONS(3417), + [anon_sym_constinit] = ACTIONS(3417), + [anon_sym_consteval] = ACTIONS(3417), + [anon_sym_alignas] = ACTIONS(3417), + [anon_sym__Alignas] = ACTIONS(3417), + [sym_primitive_type] = ACTIONS(3417), + [anon_sym_enum] = ACTIONS(3417), + [anon_sym_class] = ACTIONS(3417), + [anon_sym_struct] = ACTIONS(3417), + [anon_sym_union] = ACTIONS(3417), + [anon_sym_if] = ACTIONS(3417), + [anon_sym_switch] = ACTIONS(3417), + [anon_sym_case] = ACTIONS(3417), + [anon_sym_default] = ACTIONS(3417), + [anon_sym_while] = ACTIONS(3417), + [anon_sym_do] = ACTIONS(3417), + [anon_sym_for] = ACTIONS(3417), + [anon_sym_return] = ACTIONS(3417), + [anon_sym_break] = ACTIONS(3417), + [anon_sym_continue] = ACTIONS(3417), + [anon_sym_goto] = ACTIONS(3417), + [anon_sym_not] = ACTIONS(3417), + [anon_sym_compl] = ACTIONS(3417), + [anon_sym_DASH_DASH] = ACTIONS(3415), + [anon_sym_PLUS_PLUS] = ACTIONS(3415), + [anon_sym_sizeof] = ACTIONS(3417), + [anon_sym___alignof__] = ACTIONS(3417), + [anon_sym___alignof] = ACTIONS(3417), + [anon_sym__alignof] = ACTIONS(3417), + [anon_sym_alignof] = ACTIONS(3417), + [anon_sym__Alignof] = ACTIONS(3417), + [anon_sym_offsetof] = ACTIONS(3417), + [anon_sym__Generic] = ACTIONS(3417), + [anon_sym_asm] = ACTIONS(3417), + [anon_sym___asm__] = ACTIONS(3417), + [anon_sym___asm] = ACTIONS(3417), + [sym_number_literal] = ACTIONS(3415), + [anon_sym_L_SQUOTE] = ACTIONS(3415), + [anon_sym_u_SQUOTE] = ACTIONS(3415), + [anon_sym_U_SQUOTE] = ACTIONS(3415), + [anon_sym_u8_SQUOTE] = ACTIONS(3415), + [anon_sym_SQUOTE] = ACTIONS(3415), + [anon_sym_L_DQUOTE] = ACTIONS(3415), + [anon_sym_u_DQUOTE] = ACTIONS(3415), + [anon_sym_U_DQUOTE] = ACTIONS(3415), + [anon_sym_u8_DQUOTE] = ACTIONS(3415), + [anon_sym_DQUOTE] = ACTIONS(3415), + [sym_true] = ACTIONS(3417), + [sym_false] = ACTIONS(3417), + [anon_sym_NULL] = ACTIONS(3417), + [anon_sym_nullptr] = ACTIONS(3417), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3417), + [anon_sym_decltype] = ACTIONS(3417), + [anon_sym_explicit] = ACTIONS(3417), + [anon_sym_typename] = ACTIONS(3417), + [anon_sym_export] = ACTIONS(3417), + [anon_sym_module] = ACTIONS(3417), + [anon_sym_import] = ACTIONS(3417), + [anon_sym_template] = ACTIONS(3417), + [anon_sym_operator] = ACTIONS(3417), + [anon_sym_try] = ACTIONS(3417), + [anon_sym_delete] = ACTIONS(3417), + [anon_sym_throw] = ACTIONS(3417), + [anon_sym_namespace] = ACTIONS(3417), + [anon_sym_static_assert] = ACTIONS(3417), + [anon_sym_concept] = ACTIONS(3417), + [anon_sym_co_return] = ACTIONS(3417), + [anon_sym_co_yield] = ACTIONS(3417), + [anon_sym_R_DQUOTE] = ACTIONS(3415), + [anon_sym_LR_DQUOTE] = ACTIONS(3415), + [anon_sym_uR_DQUOTE] = ACTIONS(3415), + [anon_sym_UR_DQUOTE] = ACTIONS(3415), + [anon_sym_u8R_DQUOTE] = ACTIONS(3415), + [anon_sym_co_await] = ACTIONS(3417), + [anon_sym_new] = ACTIONS(3417), + [anon_sym_requires] = ACTIONS(3417), + [sym_this] = ACTIONS(3417), + }, + [519] = { + [ts_builtin_sym_end] = ACTIONS(3419), + [sym_identifier] = ACTIONS(3421), + [aux_sym_preproc_include_token1] = ACTIONS(3421), + [aux_sym_preproc_def_token1] = ACTIONS(3421), + [aux_sym_preproc_if_token1] = ACTIONS(3421), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3421), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3421), + [sym_preproc_directive] = ACTIONS(3421), + [anon_sym_LPAREN2] = ACTIONS(3419), + [anon_sym_BANG] = ACTIONS(3419), + [anon_sym_TILDE] = ACTIONS(3419), + [anon_sym_DASH] = ACTIONS(3421), + [anon_sym_PLUS] = ACTIONS(3421), + [anon_sym_STAR] = ACTIONS(3419), + [anon_sym_AMP_AMP] = ACTIONS(3419), + [anon_sym_AMP] = ACTIONS(3421), + [anon_sym_SEMI] = ACTIONS(3419), + [anon_sym___extension__] = ACTIONS(3421), + [anon_sym_typedef] = ACTIONS(3421), + [anon_sym_virtual] = ACTIONS(3421), + [anon_sym_extern] = ACTIONS(3421), + [anon_sym___attribute__] = ACTIONS(3421), + [anon_sym___attribute] = ACTIONS(3421), + [anon_sym_using] = ACTIONS(3421), + [anon_sym_COLON_COLON] = ACTIONS(3419), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3419), + [anon_sym___declspec] = ACTIONS(3421), + [anon_sym___based] = ACTIONS(3421), + [anon_sym___cdecl] = ACTIONS(3421), + [anon_sym___clrcall] = ACTIONS(3421), + [anon_sym___stdcall] = ACTIONS(3421), + [anon_sym___fastcall] = ACTIONS(3421), + [anon_sym___thiscall] = ACTIONS(3421), + [anon_sym___vectorcall] = ACTIONS(3421), + [anon_sym_LBRACE] = ACTIONS(3419), + [anon_sym_signed] = ACTIONS(3421), + [anon_sym_unsigned] = ACTIONS(3421), + [anon_sym_long] = ACTIONS(3421), + [anon_sym_short] = ACTIONS(3421), + [anon_sym_LBRACK] = ACTIONS(3421), + [anon_sym_static] = ACTIONS(3421), + [anon_sym_register] = ACTIONS(3421), + [anon_sym_inline] = ACTIONS(3421), + [anon_sym___inline] = ACTIONS(3421), + [anon_sym___inline__] = ACTIONS(3421), + [anon_sym___forceinline] = ACTIONS(3421), + [anon_sym_thread_local] = ACTIONS(3421), + [anon_sym___thread] = ACTIONS(3421), + [anon_sym_const] = ACTIONS(3421), + [anon_sym_constexpr] = ACTIONS(3421), + [anon_sym_volatile] = ACTIONS(3421), + [anon_sym_restrict] = ACTIONS(3421), + [anon_sym___restrict__] = ACTIONS(3421), + [anon_sym__Atomic] = ACTIONS(3421), + [anon_sym__Noreturn] = ACTIONS(3421), + [anon_sym_noreturn] = ACTIONS(3421), + [anon_sym__Nonnull] = ACTIONS(3421), + [anon_sym_mutable] = ACTIONS(3421), + [anon_sym_constinit] = ACTIONS(3421), + [anon_sym_consteval] = ACTIONS(3421), + [anon_sym_alignas] = ACTIONS(3421), + [anon_sym__Alignas] = ACTIONS(3421), + [sym_primitive_type] = ACTIONS(3421), + [anon_sym_enum] = ACTIONS(3421), + [anon_sym_class] = ACTIONS(3421), + [anon_sym_struct] = ACTIONS(3421), + [anon_sym_union] = ACTIONS(3421), + [anon_sym_if] = ACTIONS(3421), + [anon_sym_switch] = ACTIONS(3421), + [anon_sym_case] = ACTIONS(3421), + [anon_sym_default] = ACTIONS(3421), + [anon_sym_while] = ACTIONS(3421), + [anon_sym_do] = ACTIONS(3421), + [anon_sym_for] = ACTIONS(3421), + [anon_sym_return] = ACTIONS(3421), + [anon_sym_break] = ACTIONS(3421), + [anon_sym_continue] = ACTIONS(3421), + [anon_sym_goto] = ACTIONS(3421), + [anon_sym_not] = ACTIONS(3421), + [anon_sym_compl] = ACTIONS(3421), + [anon_sym_DASH_DASH] = ACTIONS(3419), + [anon_sym_PLUS_PLUS] = ACTIONS(3419), + [anon_sym_sizeof] = ACTIONS(3421), + [anon_sym___alignof__] = ACTIONS(3421), + [anon_sym___alignof] = ACTIONS(3421), + [anon_sym__alignof] = ACTIONS(3421), + [anon_sym_alignof] = ACTIONS(3421), + [anon_sym__Alignof] = ACTIONS(3421), + [anon_sym_offsetof] = ACTIONS(3421), + [anon_sym__Generic] = ACTIONS(3421), + [anon_sym_asm] = ACTIONS(3421), + [anon_sym___asm__] = ACTIONS(3421), + [anon_sym___asm] = ACTIONS(3421), + [sym_number_literal] = ACTIONS(3419), + [anon_sym_L_SQUOTE] = ACTIONS(3419), + [anon_sym_u_SQUOTE] = ACTIONS(3419), + [anon_sym_U_SQUOTE] = ACTIONS(3419), + [anon_sym_u8_SQUOTE] = ACTIONS(3419), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_L_DQUOTE] = ACTIONS(3419), + [anon_sym_u_DQUOTE] = ACTIONS(3419), + [anon_sym_U_DQUOTE] = ACTIONS(3419), + [anon_sym_u8_DQUOTE] = ACTIONS(3419), + [anon_sym_DQUOTE] = ACTIONS(3419), + [sym_true] = ACTIONS(3421), + [sym_false] = ACTIONS(3421), + [anon_sym_NULL] = ACTIONS(3421), + [anon_sym_nullptr] = ACTIONS(3421), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3421), + [anon_sym_decltype] = ACTIONS(3421), + [anon_sym_explicit] = ACTIONS(3421), + [anon_sym_typename] = ACTIONS(3421), + [anon_sym_export] = ACTIONS(3421), + [anon_sym_module] = ACTIONS(3421), + [anon_sym_import] = ACTIONS(3421), + [anon_sym_template] = ACTIONS(3421), + [anon_sym_operator] = ACTIONS(3421), + [anon_sym_try] = ACTIONS(3421), + [anon_sym_delete] = ACTIONS(3421), + [anon_sym_throw] = ACTIONS(3421), + [anon_sym_namespace] = ACTIONS(3421), + [anon_sym_static_assert] = ACTIONS(3421), + [anon_sym_concept] = ACTIONS(3421), + [anon_sym_co_return] = ACTIONS(3421), + [anon_sym_co_yield] = ACTIONS(3421), + [anon_sym_R_DQUOTE] = ACTIONS(3419), + [anon_sym_LR_DQUOTE] = ACTIONS(3419), + [anon_sym_uR_DQUOTE] = ACTIONS(3419), + [anon_sym_UR_DQUOTE] = ACTIONS(3419), + [anon_sym_u8R_DQUOTE] = ACTIONS(3419), + [anon_sym_co_await] = ACTIONS(3421), + [anon_sym_new] = ACTIONS(3421), + [anon_sym_requires] = ACTIONS(3421), + [sym_this] = ACTIONS(3421), + }, + [520] = { + [ts_builtin_sym_end] = ACTIONS(3423), + [sym_identifier] = ACTIONS(3425), + [aux_sym_preproc_include_token1] = ACTIONS(3425), + [aux_sym_preproc_def_token1] = ACTIONS(3425), + [aux_sym_preproc_if_token1] = ACTIONS(3425), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3425), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3425), + [sym_preproc_directive] = ACTIONS(3425), + [anon_sym_LPAREN2] = ACTIONS(3423), + [anon_sym_BANG] = ACTIONS(3423), + [anon_sym_TILDE] = ACTIONS(3423), + [anon_sym_DASH] = ACTIONS(3425), + [anon_sym_PLUS] = ACTIONS(3425), + [anon_sym_STAR] = ACTIONS(3423), + [anon_sym_AMP_AMP] = ACTIONS(3423), + [anon_sym_AMP] = ACTIONS(3425), + [anon_sym_SEMI] = ACTIONS(3423), + [anon_sym___extension__] = ACTIONS(3425), + [anon_sym_typedef] = ACTIONS(3425), + [anon_sym_virtual] = ACTIONS(3425), + [anon_sym_extern] = ACTIONS(3425), + [anon_sym___attribute__] = ACTIONS(3425), + [anon_sym___attribute] = ACTIONS(3425), + [anon_sym_using] = ACTIONS(3425), + [anon_sym_COLON_COLON] = ACTIONS(3423), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3423), + [anon_sym___declspec] = ACTIONS(3425), + [anon_sym___based] = ACTIONS(3425), + [anon_sym___cdecl] = ACTIONS(3425), + [anon_sym___clrcall] = ACTIONS(3425), + [anon_sym___stdcall] = ACTIONS(3425), + [anon_sym___fastcall] = ACTIONS(3425), + [anon_sym___thiscall] = ACTIONS(3425), + [anon_sym___vectorcall] = ACTIONS(3425), + [anon_sym_LBRACE] = ACTIONS(3423), + [anon_sym_signed] = ACTIONS(3425), + [anon_sym_unsigned] = ACTIONS(3425), + [anon_sym_long] = ACTIONS(3425), + [anon_sym_short] = ACTIONS(3425), + [anon_sym_LBRACK] = ACTIONS(3425), + [anon_sym_static] = ACTIONS(3425), + [anon_sym_register] = ACTIONS(3425), + [anon_sym_inline] = ACTIONS(3425), + [anon_sym___inline] = ACTIONS(3425), + [anon_sym___inline__] = ACTIONS(3425), + [anon_sym___forceinline] = ACTIONS(3425), + [anon_sym_thread_local] = ACTIONS(3425), + [anon_sym___thread] = ACTIONS(3425), + [anon_sym_const] = ACTIONS(3425), + [anon_sym_constexpr] = ACTIONS(3425), + [anon_sym_volatile] = ACTIONS(3425), + [anon_sym_restrict] = ACTIONS(3425), + [anon_sym___restrict__] = ACTIONS(3425), + [anon_sym__Atomic] = ACTIONS(3425), + [anon_sym__Noreturn] = ACTIONS(3425), + [anon_sym_noreturn] = ACTIONS(3425), + [anon_sym__Nonnull] = ACTIONS(3425), + [anon_sym_mutable] = ACTIONS(3425), + [anon_sym_constinit] = ACTIONS(3425), + [anon_sym_consteval] = ACTIONS(3425), + [anon_sym_alignas] = ACTIONS(3425), + [anon_sym__Alignas] = ACTIONS(3425), + [sym_primitive_type] = ACTIONS(3425), + [anon_sym_enum] = ACTIONS(3425), + [anon_sym_class] = ACTIONS(3425), + [anon_sym_struct] = ACTIONS(3425), + [anon_sym_union] = ACTIONS(3425), + [anon_sym_if] = ACTIONS(3425), + [anon_sym_switch] = ACTIONS(3425), + [anon_sym_case] = ACTIONS(3425), + [anon_sym_default] = ACTIONS(3425), + [anon_sym_while] = ACTIONS(3425), + [anon_sym_do] = ACTIONS(3425), + [anon_sym_for] = ACTIONS(3425), + [anon_sym_return] = ACTIONS(3425), + [anon_sym_break] = ACTIONS(3425), + [anon_sym_continue] = ACTIONS(3425), + [anon_sym_goto] = ACTIONS(3425), + [anon_sym_not] = ACTIONS(3425), + [anon_sym_compl] = ACTIONS(3425), + [anon_sym_DASH_DASH] = ACTIONS(3423), + [anon_sym_PLUS_PLUS] = ACTIONS(3423), + [anon_sym_sizeof] = ACTIONS(3425), + [anon_sym___alignof__] = ACTIONS(3425), + [anon_sym___alignof] = ACTIONS(3425), + [anon_sym__alignof] = ACTIONS(3425), + [anon_sym_alignof] = ACTIONS(3425), + [anon_sym__Alignof] = ACTIONS(3425), + [anon_sym_offsetof] = ACTIONS(3425), + [anon_sym__Generic] = ACTIONS(3425), + [anon_sym_asm] = ACTIONS(3425), + [anon_sym___asm__] = ACTIONS(3425), + [anon_sym___asm] = ACTIONS(3425), + [sym_number_literal] = ACTIONS(3423), + [anon_sym_L_SQUOTE] = ACTIONS(3423), + [anon_sym_u_SQUOTE] = ACTIONS(3423), + [anon_sym_U_SQUOTE] = ACTIONS(3423), + [anon_sym_u8_SQUOTE] = ACTIONS(3423), + [anon_sym_SQUOTE] = ACTIONS(3423), + [anon_sym_L_DQUOTE] = ACTIONS(3423), + [anon_sym_u_DQUOTE] = ACTIONS(3423), + [anon_sym_U_DQUOTE] = ACTIONS(3423), + [anon_sym_u8_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3425), + [anon_sym_nullptr] = ACTIONS(3425), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3425), + [anon_sym_decltype] = ACTIONS(3425), + [anon_sym_explicit] = ACTIONS(3425), + [anon_sym_typename] = ACTIONS(3425), + [anon_sym_export] = ACTIONS(3425), + [anon_sym_module] = ACTIONS(3425), + [anon_sym_import] = ACTIONS(3425), + [anon_sym_template] = ACTIONS(3425), + [anon_sym_operator] = ACTIONS(3425), + [anon_sym_try] = ACTIONS(3425), + [anon_sym_delete] = ACTIONS(3425), + [anon_sym_throw] = ACTIONS(3425), + [anon_sym_namespace] = ACTIONS(3425), + [anon_sym_static_assert] = ACTIONS(3425), + [anon_sym_concept] = ACTIONS(3425), + [anon_sym_co_return] = ACTIONS(3425), + [anon_sym_co_yield] = ACTIONS(3425), + [anon_sym_R_DQUOTE] = ACTIONS(3423), + [anon_sym_LR_DQUOTE] = ACTIONS(3423), + [anon_sym_uR_DQUOTE] = ACTIONS(3423), + [anon_sym_UR_DQUOTE] = ACTIONS(3423), + [anon_sym_u8R_DQUOTE] = ACTIONS(3423), + [anon_sym_co_await] = ACTIONS(3425), + [anon_sym_new] = ACTIONS(3425), + [anon_sym_requires] = ACTIONS(3425), + [sym_this] = ACTIONS(3425), + }, + [521] = { + [ts_builtin_sym_end] = ACTIONS(2829), + [sym_identifier] = ACTIONS(2827), + [aux_sym_preproc_include_token1] = ACTIONS(2827), + [aux_sym_preproc_def_token1] = ACTIONS(2827), + [aux_sym_preproc_if_token1] = ACTIONS(2827), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2827), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2827), + [sym_preproc_directive] = ACTIONS(2827), + [anon_sym_LPAREN2] = ACTIONS(2829), + [anon_sym_BANG] = ACTIONS(2829), + [anon_sym_TILDE] = ACTIONS(2829), + [anon_sym_DASH] = ACTIONS(2827), + [anon_sym_PLUS] = ACTIONS(2827), + [anon_sym_STAR] = ACTIONS(2829), + [anon_sym_AMP_AMP] = ACTIONS(2829), + [anon_sym_AMP] = ACTIONS(2827), + [anon_sym_SEMI] = ACTIONS(2829), + [anon_sym___extension__] = ACTIONS(2827), + [anon_sym_typedef] = ACTIONS(2827), + [anon_sym_virtual] = ACTIONS(2827), + [anon_sym_extern] = ACTIONS(2827), + [anon_sym___attribute__] = ACTIONS(2827), + [anon_sym___attribute] = ACTIONS(2827), + [anon_sym_using] = ACTIONS(2827), + [anon_sym_COLON_COLON] = ACTIONS(2829), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2829), + [anon_sym___declspec] = ACTIONS(2827), + [anon_sym___based] = ACTIONS(2827), + [anon_sym___cdecl] = ACTIONS(2827), + [anon_sym___clrcall] = ACTIONS(2827), + [anon_sym___stdcall] = ACTIONS(2827), + [anon_sym___fastcall] = ACTIONS(2827), + [anon_sym___thiscall] = ACTIONS(2827), + [anon_sym___vectorcall] = ACTIONS(2827), + [anon_sym_LBRACE] = ACTIONS(2829), + [anon_sym_signed] = ACTIONS(2827), + [anon_sym_unsigned] = ACTIONS(2827), + [anon_sym_long] = ACTIONS(2827), + [anon_sym_short] = ACTIONS(2827), + [anon_sym_LBRACK] = ACTIONS(2827), + [anon_sym_static] = ACTIONS(2827), + [anon_sym_register] = ACTIONS(2827), + [anon_sym_inline] = ACTIONS(2827), + [anon_sym___inline] = ACTIONS(2827), + [anon_sym___inline__] = ACTIONS(2827), + [anon_sym___forceinline] = ACTIONS(2827), + [anon_sym_thread_local] = ACTIONS(2827), + [anon_sym___thread] = ACTIONS(2827), + [anon_sym_const] = ACTIONS(2827), + [anon_sym_constexpr] = ACTIONS(2827), + [anon_sym_volatile] = ACTIONS(2827), + [anon_sym_restrict] = ACTIONS(2827), + [anon_sym___restrict__] = ACTIONS(2827), + [anon_sym__Atomic] = ACTIONS(2827), + [anon_sym__Noreturn] = ACTIONS(2827), + [anon_sym_noreturn] = ACTIONS(2827), + [anon_sym__Nonnull] = ACTIONS(2827), + [anon_sym_mutable] = ACTIONS(2827), + [anon_sym_constinit] = ACTIONS(2827), + [anon_sym_consteval] = ACTIONS(2827), + [anon_sym_alignas] = ACTIONS(2827), + [anon_sym__Alignas] = ACTIONS(2827), + [sym_primitive_type] = ACTIONS(2827), + [anon_sym_enum] = ACTIONS(2827), + [anon_sym_class] = ACTIONS(2827), + [anon_sym_struct] = ACTIONS(2827), + [anon_sym_union] = ACTIONS(2827), + [anon_sym_if] = ACTIONS(2827), + [anon_sym_switch] = ACTIONS(2827), + [anon_sym_case] = ACTIONS(2827), + [anon_sym_default] = ACTIONS(2827), + [anon_sym_while] = ACTIONS(2827), + [anon_sym_do] = ACTIONS(2827), + [anon_sym_for] = ACTIONS(2827), + [anon_sym_return] = ACTIONS(2827), + [anon_sym_break] = ACTIONS(2827), + [anon_sym_continue] = ACTIONS(2827), + [anon_sym_goto] = ACTIONS(2827), + [anon_sym_not] = ACTIONS(2827), + [anon_sym_compl] = ACTIONS(2827), + [anon_sym_DASH_DASH] = ACTIONS(2829), + [anon_sym_PLUS_PLUS] = ACTIONS(2829), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym___alignof__] = ACTIONS(2827), + [anon_sym___alignof] = ACTIONS(2827), + [anon_sym__alignof] = ACTIONS(2827), + [anon_sym_alignof] = ACTIONS(2827), + [anon_sym__Alignof] = ACTIONS(2827), + [anon_sym_offsetof] = ACTIONS(2827), + [anon_sym__Generic] = ACTIONS(2827), + [anon_sym_asm] = ACTIONS(2827), + [anon_sym___asm__] = ACTIONS(2827), + [anon_sym___asm] = ACTIONS(2827), + [sym_number_literal] = ACTIONS(2829), + [anon_sym_L_SQUOTE] = ACTIONS(2829), + [anon_sym_u_SQUOTE] = ACTIONS(2829), + [anon_sym_U_SQUOTE] = ACTIONS(2829), + [anon_sym_u8_SQUOTE] = ACTIONS(2829), + [anon_sym_SQUOTE] = ACTIONS(2829), + [anon_sym_L_DQUOTE] = ACTIONS(2829), + [anon_sym_u_DQUOTE] = ACTIONS(2829), + [anon_sym_U_DQUOTE] = ACTIONS(2829), + [anon_sym_u8_DQUOTE] = ACTIONS(2829), + [anon_sym_DQUOTE] = ACTIONS(2829), + [sym_true] = ACTIONS(2827), + [sym_false] = ACTIONS(2827), + [anon_sym_NULL] = ACTIONS(2827), + [anon_sym_nullptr] = ACTIONS(2827), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2827), + [anon_sym_decltype] = ACTIONS(2827), + [anon_sym_explicit] = ACTIONS(2827), + [anon_sym_typename] = ACTIONS(2827), + [anon_sym_export] = ACTIONS(2827), + [anon_sym_module] = ACTIONS(2827), + [anon_sym_import] = ACTIONS(2827), + [anon_sym_template] = ACTIONS(2827), + [anon_sym_operator] = ACTIONS(2827), + [anon_sym_try] = ACTIONS(2827), + [anon_sym_delete] = ACTIONS(2827), + [anon_sym_throw] = ACTIONS(2827), + [anon_sym_namespace] = ACTIONS(2827), + [anon_sym_static_assert] = ACTIONS(2827), + [anon_sym_concept] = ACTIONS(2827), + [anon_sym_co_return] = ACTIONS(2827), + [anon_sym_co_yield] = ACTIONS(2827), + [anon_sym_R_DQUOTE] = ACTIONS(2829), + [anon_sym_LR_DQUOTE] = ACTIONS(2829), + [anon_sym_uR_DQUOTE] = ACTIONS(2829), + [anon_sym_UR_DQUOTE] = ACTIONS(2829), + [anon_sym_u8R_DQUOTE] = ACTIONS(2829), + [anon_sym_co_await] = ACTIONS(2827), + [anon_sym_new] = ACTIONS(2827), + [anon_sym_requires] = ACTIONS(2827), + [sym_this] = ACTIONS(2827), + }, + [522] = { [ts_builtin_sym_end] = ACTIONS(3041), [sym_identifier] = ACTIONS(3039), [aux_sym_preproc_include_token1] = ACTIONS(3039), @@ -117116,829 +118386,966 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(3039), [sym_this] = ACTIONS(3039), }, - [516] = { - [ts_builtin_sym_end] = ACTIONS(2837), - [sym_identifier] = ACTIONS(2835), - [aux_sym_preproc_include_token1] = ACTIONS(2835), - [aux_sym_preproc_def_token1] = ACTIONS(2835), - [aux_sym_preproc_if_token1] = ACTIONS(2835), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2835), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2835), - [sym_preproc_directive] = ACTIONS(2835), - [anon_sym_LPAREN2] = ACTIONS(2837), - [anon_sym_BANG] = ACTIONS(2837), - [anon_sym_TILDE] = ACTIONS(2837), - [anon_sym_DASH] = ACTIONS(2835), - [anon_sym_PLUS] = ACTIONS(2835), - [anon_sym_STAR] = ACTIONS(2837), - [anon_sym_AMP_AMP] = ACTIONS(2837), - [anon_sym_AMP] = ACTIONS(2835), - [anon_sym_SEMI] = ACTIONS(2837), - [anon_sym___extension__] = ACTIONS(2835), - [anon_sym_typedef] = ACTIONS(2835), - [anon_sym_virtual] = ACTIONS(2835), - [anon_sym_extern] = ACTIONS(2835), - [anon_sym___attribute__] = ACTIONS(2835), - [anon_sym___attribute] = ACTIONS(2835), - [anon_sym_using] = ACTIONS(2835), - [anon_sym_COLON_COLON] = ACTIONS(2837), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2837), - [anon_sym___declspec] = ACTIONS(2835), - [anon_sym___based] = ACTIONS(2835), - [anon_sym___cdecl] = ACTIONS(2835), - [anon_sym___clrcall] = ACTIONS(2835), - [anon_sym___stdcall] = ACTIONS(2835), - [anon_sym___fastcall] = ACTIONS(2835), - [anon_sym___thiscall] = ACTIONS(2835), - [anon_sym___vectorcall] = ACTIONS(2835), - [anon_sym_LBRACE] = ACTIONS(2837), - [anon_sym_signed] = ACTIONS(2835), - [anon_sym_unsigned] = ACTIONS(2835), - [anon_sym_long] = ACTIONS(2835), - [anon_sym_short] = ACTIONS(2835), - [anon_sym_LBRACK] = ACTIONS(2835), - [anon_sym_static] = ACTIONS(2835), - [anon_sym_register] = ACTIONS(2835), - [anon_sym_inline] = ACTIONS(2835), - [anon_sym___inline] = ACTIONS(2835), - [anon_sym___inline__] = ACTIONS(2835), - [anon_sym___forceinline] = ACTIONS(2835), - [anon_sym_thread_local] = ACTIONS(2835), - [anon_sym___thread] = ACTIONS(2835), - [anon_sym_const] = ACTIONS(2835), - [anon_sym_constexpr] = ACTIONS(2835), - [anon_sym_volatile] = ACTIONS(2835), - [anon_sym_restrict] = ACTIONS(2835), - [anon_sym___restrict__] = ACTIONS(2835), - [anon_sym__Atomic] = ACTIONS(2835), - [anon_sym__Noreturn] = ACTIONS(2835), - [anon_sym_noreturn] = ACTIONS(2835), - [anon_sym__Nonnull] = ACTIONS(2835), - [anon_sym_mutable] = ACTIONS(2835), - [anon_sym_constinit] = ACTIONS(2835), - [anon_sym_consteval] = ACTIONS(2835), - [anon_sym_alignas] = ACTIONS(2835), - [anon_sym__Alignas] = ACTIONS(2835), - [sym_primitive_type] = ACTIONS(2835), - [anon_sym_enum] = ACTIONS(2835), - [anon_sym_class] = ACTIONS(2835), - [anon_sym_struct] = ACTIONS(2835), - [anon_sym_union] = ACTIONS(2835), - [anon_sym_if] = ACTIONS(2835), - [anon_sym_switch] = ACTIONS(2835), - [anon_sym_case] = ACTIONS(2835), - [anon_sym_default] = ACTIONS(2835), - [anon_sym_while] = ACTIONS(2835), - [anon_sym_do] = ACTIONS(2835), - [anon_sym_for] = ACTIONS(2835), - [anon_sym_return] = ACTIONS(2835), - [anon_sym_break] = ACTIONS(2835), - [anon_sym_continue] = ACTIONS(2835), - [anon_sym_goto] = ACTIONS(2835), - [anon_sym_not] = ACTIONS(2835), - [anon_sym_compl] = ACTIONS(2835), - [anon_sym_DASH_DASH] = ACTIONS(2837), - [anon_sym_PLUS_PLUS] = ACTIONS(2837), - [anon_sym_sizeof] = ACTIONS(2835), - [anon_sym___alignof__] = ACTIONS(2835), - [anon_sym___alignof] = ACTIONS(2835), - [anon_sym__alignof] = ACTIONS(2835), - [anon_sym_alignof] = ACTIONS(2835), - [anon_sym__Alignof] = ACTIONS(2835), - [anon_sym_offsetof] = ACTIONS(2835), - [anon_sym__Generic] = ACTIONS(2835), - [anon_sym_asm] = ACTIONS(2835), - [anon_sym___asm__] = ACTIONS(2835), - [anon_sym___asm] = ACTIONS(2835), - [sym_number_literal] = ACTIONS(2837), - [anon_sym_L_SQUOTE] = ACTIONS(2837), - [anon_sym_u_SQUOTE] = ACTIONS(2837), - [anon_sym_U_SQUOTE] = ACTIONS(2837), - [anon_sym_u8_SQUOTE] = ACTIONS(2837), - [anon_sym_SQUOTE] = ACTIONS(2837), - [anon_sym_L_DQUOTE] = ACTIONS(2837), - [anon_sym_u_DQUOTE] = ACTIONS(2837), - [anon_sym_U_DQUOTE] = ACTIONS(2837), - [anon_sym_u8_DQUOTE] = ACTIONS(2837), - [anon_sym_DQUOTE] = ACTIONS(2837), - [sym_true] = ACTIONS(2835), - [sym_false] = ACTIONS(2835), - [anon_sym_NULL] = ACTIONS(2835), - [anon_sym_nullptr] = ACTIONS(2835), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2835), - [anon_sym_decltype] = ACTIONS(2835), - [anon_sym_explicit] = ACTIONS(2835), - [anon_sym_typename] = ACTIONS(2835), - [anon_sym_export] = ACTIONS(2835), - [anon_sym_module] = ACTIONS(2835), - [anon_sym_import] = ACTIONS(2835), - [anon_sym_template] = ACTIONS(2835), - [anon_sym_operator] = ACTIONS(2835), - [anon_sym_try] = ACTIONS(2835), - [anon_sym_delete] = ACTIONS(2835), - [anon_sym_throw] = ACTIONS(2835), - [anon_sym_namespace] = ACTIONS(2835), - [anon_sym_static_assert] = ACTIONS(2835), - [anon_sym_concept] = ACTIONS(2835), - [anon_sym_co_return] = ACTIONS(2835), - [anon_sym_co_yield] = ACTIONS(2835), - [anon_sym_R_DQUOTE] = ACTIONS(2837), - [anon_sym_LR_DQUOTE] = ACTIONS(2837), - [anon_sym_uR_DQUOTE] = ACTIONS(2837), - [anon_sym_UR_DQUOTE] = ACTIONS(2837), - [anon_sym_u8R_DQUOTE] = ACTIONS(2837), - [anon_sym_co_await] = ACTIONS(2835), - [anon_sym_new] = ACTIONS(2835), - [anon_sym_requires] = ACTIONS(2835), - [sym_this] = ACTIONS(2835), + [523] = { + [ts_builtin_sym_end] = ACTIONS(3045), + [sym_identifier] = ACTIONS(3043), + [aux_sym_preproc_include_token1] = ACTIONS(3043), + [aux_sym_preproc_def_token1] = ACTIONS(3043), + [aux_sym_preproc_if_token1] = ACTIONS(3043), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3043), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3043), + [sym_preproc_directive] = ACTIONS(3043), + [anon_sym_LPAREN2] = ACTIONS(3045), + [anon_sym_BANG] = ACTIONS(3045), + [anon_sym_TILDE] = ACTIONS(3045), + [anon_sym_DASH] = ACTIONS(3043), + [anon_sym_PLUS] = ACTIONS(3043), + [anon_sym_STAR] = ACTIONS(3045), + [anon_sym_AMP_AMP] = ACTIONS(3045), + [anon_sym_AMP] = ACTIONS(3043), + [anon_sym_SEMI] = ACTIONS(3045), + [anon_sym___extension__] = ACTIONS(3043), + [anon_sym_typedef] = ACTIONS(3043), + [anon_sym_virtual] = ACTIONS(3043), + [anon_sym_extern] = ACTIONS(3043), + [anon_sym___attribute__] = ACTIONS(3043), + [anon_sym___attribute] = ACTIONS(3043), + [anon_sym_using] = ACTIONS(3043), + [anon_sym_COLON_COLON] = ACTIONS(3045), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3045), + [anon_sym___declspec] = ACTIONS(3043), + [anon_sym___based] = ACTIONS(3043), + [anon_sym___cdecl] = ACTIONS(3043), + [anon_sym___clrcall] = ACTIONS(3043), + [anon_sym___stdcall] = ACTIONS(3043), + [anon_sym___fastcall] = ACTIONS(3043), + [anon_sym___thiscall] = ACTIONS(3043), + [anon_sym___vectorcall] = ACTIONS(3043), + [anon_sym_LBRACE] = ACTIONS(3045), + [anon_sym_signed] = ACTIONS(3043), + [anon_sym_unsigned] = ACTIONS(3043), + [anon_sym_long] = ACTIONS(3043), + [anon_sym_short] = ACTIONS(3043), + [anon_sym_LBRACK] = ACTIONS(3043), + [anon_sym_static] = ACTIONS(3043), + [anon_sym_register] = ACTIONS(3043), + [anon_sym_inline] = ACTIONS(3043), + [anon_sym___inline] = ACTIONS(3043), + [anon_sym___inline__] = ACTIONS(3043), + [anon_sym___forceinline] = ACTIONS(3043), + [anon_sym_thread_local] = ACTIONS(3043), + [anon_sym___thread] = ACTIONS(3043), + [anon_sym_const] = ACTIONS(3043), + [anon_sym_constexpr] = ACTIONS(3043), + [anon_sym_volatile] = ACTIONS(3043), + [anon_sym_restrict] = ACTIONS(3043), + [anon_sym___restrict__] = ACTIONS(3043), + [anon_sym__Atomic] = ACTIONS(3043), + [anon_sym__Noreturn] = ACTIONS(3043), + [anon_sym_noreturn] = ACTIONS(3043), + [anon_sym__Nonnull] = ACTIONS(3043), + [anon_sym_mutable] = ACTIONS(3043), + [anon_sym_constinit] = ACTIONS(3043), + [anon_sym_consteval] = ACTIONS(3043), + [anon_sym_alignas] = ACTIONS(3043), + [anon_sym__Alignas] = ACTIONS(3043), + [sym_primitive_type] = ACTIONS(3043), + [anon_sym_enum] = ACTIONS(3043), + [anon_sym_class] = ACTIONS(3043), + [anon_sym_struct] = ACTIONS(3043), + [anon_sym_union] = ACTIONS(3043), + [anon_sym_if] = ACTIONS(3043), + [anon_sym_switch] = ACTIONS(3043), + [anon_sym_case] = ACTIONS(3043), + [anon_sym_default] = ACTIONS(3043), + [anon_sym_while] = ACTIONS(3043), + [anon_sym_do] = ACTIONS(3043), + [anon_sym_for] = ACTIONS(3043), + [anon_sym_return] = ACTIONS(3043), + [anon_sym_break] = ACTIONS(3043), + [anon_sym_continue] = ACTIONS(3043), + [anon_sym_goto] = ACTIONS(3043), + [anon_sym_not] = ACTIONS(3043), + [anon_sym_compl] = ACTIONS(3043), + [anon_sym_DASH_DASH] = ACTIONS(3045), + [anon_sym_PLUS_PLUS] = ACTIONS(3045), + [anon_sym_sizeof] = ACTIONS(3043), + [anon_sym___alignof__] = ACTIONS(3043), + [anon_sym___alignof] = ACTIONS(3043), + [anon_sym__alignof] = ACTIONS(3043), + [anon_sym_alignof] = ACTIONS(3043), + [anon_sym__Alignof] = ACTIONS(3043), + [anon_sym_offsetof] = ACTIONS(3043), + [anon_sym__Generic] = ACTIONS(3043), + [anon_sym_asm] = ACTIONS(3043), + [anon_sym___asm__] = ACTIONS(3043), + [anon_sym___asm] = ACTIONS(3043), + [sym_number_literal] = ACTIONS(3045), + [anon_sym_L_SQUOTE] = ACTIONS(3045), + [anon_sym_u_SQUOTE] = ACTIONS(3045), + [anon_sym_U_SQUOTE] = ACTIONS(3045), + [anon_sym_u8_SQUOTE] = ACTIONS(3045), + [anon_sym_SQUOTE] = ACTIONS(3045), + [anon_sym_L_DQUOTE] = ACTIONS(3045), + [anon_sym_u_DQUOTE] = ACTIONS(3045), + [anon_sym_U_DQUOTE] = ACTIONS(3045), + [anon_sym_u8_DQUOTE] = ACTIONS(3045), + [anon_sym_DQUOTE] = ACTIONS(3045), + [sym_true] = ACTIONS(3043), + [sym_false] = ACTIONS(3043), + [anon_sym_NULL] = ACTIONS(3043), + [anon_sym_nullptr] = ACTIONS(3043), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3043), + [anon_sym_decltype] = ACTIONS(3043), + [anon_sym_explicit] = ACTIONS(3043), + [anon_sym_typename] = ACTIONS(3043), + [anon_sym_export] = ACTIONS(3043), + [anon_sym_module] = ACTIONS(3043), + [anon_sym_import] = ACTIONS(3043), + [anon_sym_template] = ACTIONS(3043), + [anon_sym_operator] = ACTIONS(3043), + [anon_sym_try] = ACTIONS(3043), + [anon_sym_delete] = ACTIONS(3043), + [anon_sym_throw] = ACTIONS(3043), + [anon_sym_namespace] = ACTIONS(3043), + [anon_sym_static_assert] = ACTIONS(3043), + [anon_sym_concept] = ACTIONS(3043), + [anon_sym_co_return] = ACTIONS(3043), + [anon_sym_co_yield] = ACTIONS(3043), + [anon_sym_R_DQUOTE] = ACTIONS(3045), + [anon_sym_LR_DQUOTE] = ACTIONS(3045), + [anon_sym_uR_DQUOTE] = ACTIONS(3045), + [anon_sym_UR_DQUOTE] = ACTIONS(3045), + [anon_sym_u8R_DQUOTE] = ACTIONS(3045), + [anon_sym_co_await] = ACTIONS(3043), + [anon_sym_new] = ACTIONS(3043), + [anon_sym_requires] = ACTIONS(3043), + [sym_this] = ACTIONS(3043), }, - [517] = { - [ts_builtin_sym_end] = ACTIONS(3065), - [sym_identifier] = ACTIONS(3063), - [aux_sym_preproc_include_token1] = ACTIONS(3063), - [aux_sym_preproc_def_token1] = ACTIONS(3063), - [aux_sym_preproc_if_token1] = ACTIONS(3063), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3063), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3063), - [sym_preproc_directive] = ACTIONS(3063), - [anon_sym_LPAREN2] = ACTIONS(3065), - [anon_sym_BANG] = ACTIONS(3065), - [anon_sym_TILDE] = ACTIONS(3065), - [anon_sym_DASH] = ACTIONS(3063), - [anon_sym_PLUS] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3065), - [anon_sym_AMP_AMP] = ACTIONS(3065), - [anon_sym_AMP] = ACTIONS(3063), - [anon_sym_SEMI] = ACTIONS(3065), - [anon_sym___extension__] = ACTIONS(3063), - [anon_sym_typedef] = ACTIONS(3063), - [anon_sym_virtual] = ACTIONS(3063), - [anon_sym_extern] = ACTIONS(3063), - [anon_sym___attribute__] = ACTIONS(3063), - [anon_sym___attribute] = ACTIONS(3063), - [anon_sym_using] = ACTIONS(3063), - [anon_sym_COLON_COLON] = ACTIONS(3065), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3065), - [anon_sym___declspec] = ACTIONS(3063), - [anon_sym___based] = ACTIONS(3063), - [anon_sym___cdecl] = ACTIONS(3063), - [anon_sym___clrcall] = ACTIONS(3063), - [anon_sym___stdcall] = ACTIONS(3063), - [anon_sym___fastcall] = ACTIONS(3063), - [anon_sym___thiscall] = ACTIONS(3063), - [anon_sym___vectorcall] = ACTIONS(3063), - [anon_sym_LBRACE] = ACTIONS(3065), - [anon_sym_signed] = ACTIONS(3063), - [anon_sym_unsigned] = ACTIONS(3063), - [anon_sym_long] = ACTIONS(3063), - [anon_sym_short] = ACTIONS(3063), - [anon_sym_LBRACK] = ACTIONS(3063), - [anon_sym_static] = ACTIONS(3063), - [anon_sym_register] = ACTIONS(3063), - [anon_sym_inline] = ACTIONS(3063), - [anon_sym___inline] = ACTIONS(3063), - [anon_sym___inline__] = ACTIONS(3063), - [anon_sym___forceinline] = ACTIONS(3063), - [anon_sym_thread_local] = ACTIONS(3063), - [anon_sym___thread] = ACTIONS(3063), - [anon_sym_const] = ACTIONS(3063), - [anon_sym_constexpr] = ACTIONS(3063), - [anon_sym_volatile] = ACTIONS(3063), - [anon_sym_restrict] = ACTIONS(3063), - [anon_sym___restrict__] = ACTIONS(3063), - [anon_sym__Atomic] = ACTIONS(3063), - [anon_sym__Noreturn] = ACTIONS(3063), - [anon_sym_noreturn] = ACTIONS(3063), - [anon_sym__Nonnull] = ACTIONS(3063), - [anon_sym_mutable] = ACTIONS(3063), - [anon_sym_constinit] = ACTIONS(3063), - [anon_sym_consteval] = ACTIONS(3063), - [anon_sym_alignas] = ACTIONS(3063), - [anon_sym__Alignas] = ACTIONS(3063), - [sym_primitive_type] = ACTIONS(3063), - [anon_sym_enum] = ACTIONS(3063), - [anon_sym_class] = ACTIONS(3063), - [anon_sym_struct] = ACTIONS(3063), - [anon_sym_union] = ACTIONS(3063), - [anon_sym_if] = ACTIONS(3063), - [anon_sym_switch] = ACTIONS(3063), - [anon_sym_case] = ACTIONS(3063), - [anon_sym_default] = ACTIONS(3063), - [anon_sym_while] = ACTIONS(3063), - [anon_sym_do] = ACTIONS(3063), - [anon_sym_for] = ACTIONS(3063), - [anon_sym_return] = ACTIONS(3063), - [anon_sym_break] = ACTIONS(3063), - [anon_sym_continue] = ACTIONS(3063), - [anon_sym_goto] = ACTIONS(3063), - [anon_sym_not] = ACTIONS(3063), - [anon_sym_compl] = ACTIONS(3063), - [anon_sym_DASH_DASH] = ACTIONS(3065), - [anon_sym_PLUS_PLUS] = ACTIONS(3065), - [anon_sym_sizeof] = ACTIONS(3063), - [anon_sym___alignof__] = ACTIONS(3063), - [anon_sym___alignof] = ACTIONS(3063), - [anon_sym__alignof] = ACTIONS(3063), - [anon_sym_alignof] = ACTIONS(3063), - [anon_sym__Alignof] = ACTIONS(3063), - [anon_sym_offsetof] = ACTIONS(3063), - [anon_sym__Generic] = ACTIONS(3063), - [anon_sym_asm] = ACTIONS(3063), - [anon_sym___asm__] = ACTIONS(3063), - [anon_sym___asm] = ACTIONS(3063), - [sym_number_literal] = ACTIONS(3065), - [anon_sym_L_SQUOTE] = ACTIONS(3065), - [anon_sym_u_SQUOTE] = ACTIONS(3065), - [anon_sym_U_SQUOTE] = ACTIONS(3065), - [anon_sym_u8_SQUOTE] = ACTIONS(3065), - [anon_sym_SQUOTE] = ACTIONS(3065), - [anon_sym_L_DQUOTE] = ACTIONS(3065), - [anon_sym_u_DQUOTE] = ACTIONS(3065), - [anon_sym_U_DQUOTE] = ACTIONS(3065), - [anon_sym_u8_DQUOTE] = ACTIONS(3065), - [anon_sym_DQUOTE] = ACTIONS(3065), - [sym_true] = ACTIONS(3063), - [sym_false] = ACTIONS(3063), - [anon_sym_NULL] = ACTIONS(3063), - [anon_sym_nullptr] = ACTIONS(3063), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3063), - [anon_sym_decltype] = ACTIONS(3063), - [anon_sym_explicit] = ACTIONS(3063), - [anon_sym_typename] = ACTIONS(3063), - [anon_sym_export] = ACTIONS(3063), - [anon_sym_module] = ACTIONS(3063), - [anon_sym_import] = ACTIONS(3063), - [anon_sym_template] = ACTIONS(3063), - [anon_sym_operator] = ACTIONS(3063), - [anon_sym_try] = ACTIONS(3063), - [anon_sym_delete] = ACTIONS(3063), - [anon_sym_throw] = ACTIONS(3063), - [anon_sym_namespace] = ACTIONS(3063), - [anon_sym_static_assert] = ACTIONS(3063), - [anon_sym_concept] = ACTIONS(3063), - [anon_sym_co_return] = ACTIONS(3063), - [anon_sym_co_yield] = ACTIONS(3063), - [anon_sym_R_DQUOTE] = ACTIONS(3065), - [anon_sym_LR_DQUOTE] = ACTIONS(3065), - [anon_sym_uR_DQUOTE] = ACTIONS(3065), - [anon_sym_UR_DQUOTE] = ACTIONS(3065), - [anon_sym_u8R_DQUOTE] = ACTIONS(3065), - [anon_sym_co_await] = ACTIONS(3063), - [anon_sym_new] = ACTIONS(3063), - [anon_sym_requires] = ACTIONS(3063), - [sym_this] = ACTIONS(3063), + [524] = { + [ts_builtin_sym_end] = ACTIONS(3049), + [sym_identifier] = ACTIONS(3047), + [aux_sym_preproc_include_token1] = ACTIONS(3047), + [aux_sym_preproc_def_token1] = ACTIONS(3047), + [aux_sym_preproc_if_token1] = ACTIONS(3047), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3047), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3047), + [sym_preproc_directive] = ACTIONS(3047), + [anon_sym_LPAREN2] = ACTIONS(3049), + [anon_sym_BANG] = ACTIONS(3049), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_DASH] = ACTIONS(3047), + [anon_sym_PLUS] = ACTIONS(3047), + [anon_sym_STAR] = ACTIONS(3049), + [anon_sym_AMP_AMP] = ACTIONS(3049), + [anon_sym_AMP] = ACTIONS(3047), + [anon_sym_SEMI] = ACTIONS(3049), + [anon_sym___extension__] = ACTIONS(3047), + [anon_sym_typedef] = ACTIONS(3047), + [anon_sym_virtual] = ACTIONS(3047), + [anon_sym_extern] = ACTIONS(3047), + [anon_sym___attribute__] = ACTIONS(3047), + [anon_sym___attribute] = ACTIONS(3047), + [anon_sym_using] = ACTIONS(3047), + [anon_sym_COLON_COLON] = ACTIONS(3049), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3049), + [anon_sym___declspec] = ACTIONS(3047), + [anon_sym___based] = ACTIONS(3047), + [anon_sym___cdecl] = ACTIONS(3047), + [anon_sym___clrcall] = ACTIONS(3047), + [anon_sym___stdcall] = ACTIONS(3047), + [anon_sym___fastcall] = ACTIONS(3047), + [anon_sym___thiscall] = ACTIONS(3047), + [anon_sym___vectorcall] = ACTIONS(3047), + [anon_sym_LBRACE] = ACTIONS(3049), + [anon_sym_signed] = ACTIONS(3047), + [anon_sym_unsigned] = ACTIONS(3047), + [anon_sym_long] = ACTIONS(3047), + [anon_sym_short] = ACTIONS(3047), + [anon_sym_LBRACK] = ACTIONS(3047), + [anon_sym_static] = ACTIONS(3047), + [anon_sym_register] = ACTIONS(3047), + [anon_sym_inline] = ACTIONS(3047), + [anon_sym___inline] = ACTIONS(3047), + [anon_sym___inline__] = ACTIONS(3047), + [anon_sym___forceinline] = ACTIONS(3047), + [anon_sym_thread_local] = ACTIONS(3047), + [anon_sym___thread] = ACTIONS(3047), + [anon_sym_const] = ACTIONS(3047), + [anon_sym_constexpr] = ACTIONS(3047), + [anon_sym_volatile] = ACTIONS(3047), + [anon_sym_restrict] = ACTIONS(3047), + [anon_sym___restrict__] = ACTIONS(3047), + [anon_sym__Atomic] = ACTIONS(3047), + [anon_sym__Noreturn] = ACTIONS(3047), + [anon_sym_noreturn] = ACTIONS(3047), + [anon_sym__Nonnull] = ACTIONS(3047), + [anon_sym_mutable] = ACTIONS(3047), + [anon_sym_constinit] = ACTIONS(3047), + [anon_sym_consteval] = ACTIONS(3047), + [anon_sym_alignas] = ACTIONS(3047), + [anon_sym__Alignas] = ACTIONS(3047), + [sym_primitive_type] = ACTIONS(3047), + [anon_sym_enum] = ACTIONS(3047), + [anon_sym_class] = ACTIONS(3047), + [anon_sym_struct] = ACTIONS(3047), + [anon_sym_union] = ACTIONS(3047), + [anon_sym_if] = ACTIONS(3047), + [anon_sym_switch] = ACTIONS(3047), + [anon_sym_case] = ACTIONS(3047), + [anon_sym_default] = ACTIONS(3047), + [anon_sym_while] = ACTIONS(3047), + [anon_sym_do] = ACTIONS(3047), + [anon_sym_for] = ACTIONS(3047), + [anon_sym_return] = ACTIONS(3047), + [anon_sym_break] = ACTIONS(3047), + [anon_sym_continue] = ACTIONS(3047), + [anon_sym_goto] = ACTIONS(3047), + [anon_sym_not] = ACTIONS(3047), + [anon_sym_compl] = ACTIONS(3047), + [anon_sym_DASH_DASH] = ACTIONS(3049), + [anon_sym_PLUS_PLUS] = ACTIONS(3049), + [anon_sym_sizeof] = ACTIONS(3047), + [anon_sym___alignof__] = ACTIONS(3047), + [anon_sym___alignof] = ACTIONS(3047), + [anon_sym__alignof] = ACTIONS(3047), + [anon_sym_alignof] = ACTIONS(3047), + [anon_sym__Alignof] = ACTIONS(3047), + [anon_sym_offsetof] = ACTIONS(3047), + [anon_sym__Generic] = ACTIONS(3047), + [anon_sym_asm] = ACTIONS(3047), + [anon_sym___asm__] = ACTIONS(3047), + [anon_sym___asm] = ACTIONS(3047), + [sym_number_literal] = ACTIONS(3049), + [anon_sym_L_SQUOTE] = ACTIONS(3049), + [anon_sym_u_SQUOTE] = ACTIONS(3049), + [anon_sym_U_SQUOTE] = ACTIONS(3049), + [anon_sym_u8_SQUOTE] = ACTIONS(3049), + [anon_sym_SQUOTE] = ACTIONS(3049), + [anon_sym_L_DQUOTE] = ACTIONS(3049), + [anon_sym_u_DQUOTE] = ACTIONS(3049), + [anon_sym_U_DQUOTE] = ACTIONS(3049), + [anon_sym_u8_DQUOTE] = ACTIONS(3049), + [anon_sym_DQUOTE] = ACTIONS(3049), + [sym_true] = ACTIONS(3047), + [sym_false] = ACTIONS(3047), + [anon_sym_NULL] = ACTIONS(3047), + [anon_sym_nullptr] = ACTIONS(3047), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3047), + [anon_sym_decltype] = ACTIONS(3047), + [anon_sym_explicit] = ACTIONS(3047), + [anon_sym_typename] = ACTIONS(3047), + [anon_sym_export] = ACTIONS(3047), + [anon_sym_module] = ACTIONS(3047), + [anon_sym_import] = ACTIONS(3047), + [anon_sym_template] = ACTIONS(3047), + [anon_sym_operator] = ACTIONS(3047), + [anon_sym_try] = ACTIONS(3047), + [anon_sym_delete] = ACTIONS(3047), + [anon_sym_throw] = ACTIONS(3047), + [anon_sym_namespace] = ACTIONS(3047), + [anon_sym_static_assert] = ACTIONS(3047), + [anon_sym_concept] = ACTIONS(3047), + [anon_sym_co_return] = ACTIONS(3047), + [anon_sym_co_yield] = ACTIONS(3047), + [anon_sym_R_DQUOTE] = ACTIONS(3049), + [anon_sym_LR_DQUOTE] = ACTIONS(3049), + [anon_sym_uR_DQUOTE] = ACTIONS(3049), + [anon_sym_UR_DQUOTE] = ACTIONS(3049), + [anon_sym_u8R_DQUOTE] = ACTIONS(3049), + [anon_sym_co_await] = ACTIONS(3047), + [anon_sym_new] = ACTIONS(3047), + [anon_sym_requires] = ACTIONS(3047), + [sym_this] = ACTIONS(3047), }, - [518] = { - [ts_builtin_sym_end] = ACTIONS(3065), - [sym_identifier] = ACTIONS(3063), - [aux_sym_preproc_include_token1] = ACTIONS(3063), - [aux_sym_preproc_def_token1] = ACTIONS(3063), - [aux_sym_preproc_if_token1] = ACTIONS(3063), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3063), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3063), - [sym_preproc_directive] = ACTIONS(3063), - [anon_sym_LPAREN2] = ACTIONS(3065), - [anon_sym_BANG] = ACTIONS(3065), - [anon_sym_TILDE] = ACTIONS(3065), - [anon_sym_DASH] = ACTIONS(3063), - [anon_sym_PLUS] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3065), - [anon_sym_AMP_AMP] = ACTIONS(3065), - [anon_sym_AMP] = ACTIONS(3063), - [anon_sym_SEMI] = ACTIONS(3065), - [anon_sym___extension__] = ACTIONS(3063), - [anon_sym_typedef] = ACTIONS(3063), - [anon_sym_virtual] = ACTIONS(3063), - [anon_sym_extern] = ACTIONS(3063), - [anon_sym___attribute__] = ACTIONS(3063), - [anon_sym___attribute] = ACTIONS(3063), - [anon_sym_using] = ACTIONS(3063), - [anon_sym_COLON_COLON] = ACTIONS(3065), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3065), - [anon_sym___declspec] = ACTIONS(3063), - [anon_sym___based] = ACTIONS(3063), - [anon_sym___cdecl] = ACTIONS(3063), - [anon_sym___clrcall] = ACTIONS(3063), - [anon_sym___stdcall] = ACTIONS(3063), - [anon_sym___fastcall] = ACTIONS(3063), - [anon_sym___thiscall] = ACTIONS(3063), - [anon_sym___vectorcall] = ACTIONS(3063), - [anon_sym_LBRACE] = ACTIONS(3065), - [anon_sym_signed] = ACTIONS(3063), - [anon_sym_unsigned] = ACTIONS(3063), - [anon_sym_long] = ACTIONS(3063), - [anon_sym_short] = ACTIONS(3063), - [anon_sym_LBRACK] = ACTIONS(3063), - [anon_sym_static] = ACTIONS(3063), - [anon_sym_register] = ACTIONS(3063), - [anon_sym_inline] = ACTIONS(3063), - [anon_sym___inline] = ACTIONS(3063), - [anon_sym___inline__] = ACTIONS(3063), - [anon_sym___forceinline] = ACTIONS(3063), - [anon_sym_thread_local] = ACTIONS(3063), - [anon_sym___thread] = ACTIONS(3063), - [anon_sym_const] = ACTIONS(3063), - [anon_sym_constexpr] = ACTIONS(3063), - [anon_sym_volatile] = ACTIONS(3063), - [anon_sym_restrict] = ACTIONS(3063), - [anon_sym___restrict__] = ACTIONS(3063), - [anon_sym__Atomic] = ACTIONS(3063), - [anon_sym__Noreturn] = ACTIONS(3063), - [anon_sym_noreturn] = ACTIONS(3063), - [anon_sym__Nonnull] = ACTIONS(3063), - [anon_sym_mutable] = ACTIONS(3063), - [anon_sym_constinit] = ACTIONS(3063), - [anon_sym_consteval] = ACTIONS(3063), - [anon_sym_alignas] = ACTIONS(3063), - [anon_sym__Alignas] = ACTIONS(3063), - [sym_primitive_type] = ACTIONS(3063), - [anon_sym_enum] = ACTIONS(3063), - [anon_sym_class] = ACTIONS(3063), - [anon_sym_struct] = ACTIONS(3063), - [anon_sym_union] = ACTIONS(3063), - [anon_sym_if] = ACTIONS(3063), - [anon_sym_switch] = ACTIONS(3063), - [anon_sym_case] = ACTIONS(3063), - [anon_sym_default] = ACTIONS(3063), - [anon_sym_while] = ACTIONS(3063), - [anon_sym_do] = ACTIONS(3063), - [anon_sym_for] = ACTIONS(3063), - [anon_sym_return] = ACTIONS(3063), - [anon_sym_break] = ACTIONS(3063), - [anon_sym_continue] = ACTIONS(3063), - [anon_sym_goto] = ACTIONS(3063), - [anon_sym_not] = ACTIONS(3063), - [anon_sym_compl] = ACTIONS(3063), - [anon_sym_DASH_DASH] = ACTIONS(3065), - [anon_sym_PLUS_PLUS] = ACTIONS(3065), - [anon_sym_sizeof] = ACTIONS(3063), - [anon_sym___alignof__] = ACTIONS(3063), - [anon_sym___alignof] = ACTIONS(3063), - [anon_sym__alignof] = ACTIONS(3063), - [anon_sym_alignof] = ACTIONS(3063), - [anon_sym__Alignof] = ACTIONS(3063), - [anon_sym_offsetof] = ACTIONS(3063), - [anon_sym__Generic] = ACTIONS(3063), - [anon_sym_asm] = ACTIONS(3063), - [anon_sym___asm__] = ACTIONS(3063), - [anon_sym___asm] = ACTIONS(3063), - [sym_number_literal] = ACTIONS(3065), - [anon_sym_L_SQUOTE] = ACTIONS(3065), - [anon_sym_u_SQUOTE] = ACTIONS(3065), - [anon_sym_U_SQUOTE] = ACTIONS(3065), - [anon_sym_u8_SQUOTE] = ACTIONS(3065), - [anon_sym_SQUOTE] = ACTIONS(3065), - [anon_sym_L_DQUOTE] = ACTIONS(3065), - [anon_sym_u_DQUOTE] = ACTIONS(3065), - [anon_sym_U_DQUOTE] = ACTIONS(3065), - [anon_sym_u8_DQUOTE] = ACTIONS(3065), - [anon_sym_DQUOTE] = ACTIONS(3065), - [sym_true] = ACTIONS(3063), - [sym_false] = ACTIONS(3063), - [anon_sym_NULL] = ACTIONS(3063), - [anon_sym_nullptr] = ACTIONS(3063), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3063), - [anon_sym_decltype] = ACTIONS(3063), - [anon_sym_explicit] = ACTIONS(3063), - [anon_sym_typename] = ACTIONS(3063), - [anon_sym_export] = ACTIONS(3063), - [anon_sym_module] = ACTIONS(3063), - [anon_sym_import] = ACTIONS(3063), - [anon_sym_template] = ACTIONS(3063), - [anon_sym_operator] = ACTIONS(3063), - [anon_sym_try] = ACTIONS(3063), - [anon_sym_delete] = ACTIONS(3063), - [anon_sym_throw] = ACTIONS(3063), - [anon_sym_namespace] = ACTIONS(3063), - [anon_sym_static_assert] = ACTIONS(3063), - [anon_sym_concept] = ACTIONS(3063), - [anon_sym_co_return] = ACTIONS(3063), - [anon_sym_co_yield] = ACTIONS(3063), - [anon_sym_R_DQUOTE] = ACTIONS(3065), - [anon_sym_LR_DQUOTE] = ACTIONS(3065), - [anon_sym_uR_DQUOTE] = ACTIONS(3065), - [anon_sym_UR_DQUOTE] = ACTIONS(3065), - [anon_sym_u8R_DQUOTE] = ACTIONS(3065), - [anon_sym_co_await] = ACTIONS(3063), - [anon_sym_new] = ACTIONS(3063), - [anon_sym_requires] = ACTIONS(3063), - [sym_this] = ACTIONS(3063), + [525] = { + [ts_builtin_sym_end] = ACTIONS(3053), + [sym_identifier] = ACTIONS(3051), + [aux_sym_preproc_include_token1] = ACTIONS(3051), + [aux_sym_preproc_def_token1] = ACTIONS(3051), + [aux_sym_preproc_if_token1] = ACTIONS(3051), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3051), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3051), + [sym_preproc_directive] = ACTIONS(3051), + [anon_sym_LPAREN2] = ACTIONS(3053), + [anon_sym_BANG] = ACTIONS(3053), + [anon_sym_TILDE] = ACTIONS(3053), + [anon_sym_DASH] = ACTIONS(3051), + [anon_sym_PLUS] = ACTIONS(3051), + [anon_sym_STAR] = ACTIONS(3053), + [anon_sym_AMP_AMP] = ACTIONS(3053), + [anon_sym_AMP] = ACTIONS(3051), + [anon_sym_SEMI] = ACTIONS(3053), + [anon_sym___extension__] = ACTIONS(3051), + [anon_sym_typedef] = ACTIONS(3051), + [anon_sym_virtual] = ACTIONS(3051), + [anon_sym_extern] = ACTIONS(3051), + [anon_sym___attribute__] = ACTIONS(3051), + [anon_sym___attribute] = ACTIONS(3051), + [anon_sym_using] = ACTIONS(3051), + [anon_sym_COLON_COLON] = ACTIONS(3053), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3053), + [anon_sym___declspec] = ACTIONS(3051), + [anon_sym___based] = ACTIONS(3051), + [anon_sym___cdecl] = ACTIONS(3051), + [anon_sym___clrcall] = ACTIONS(3051), + [anon_sym___stdcall] = ACTIONS(3051), + [anon_sym___fastcall] = ACTIONS(3051), + [anon_sym___thiscall] = ACTIONS(3051), + [anon_sym___vectorcall] = ACTIONS(3051), + [anon_sym_LBRACE] = ACTIONS(3053), + [anon_sym_signed] = ACTIONS(3051), + [anon_sym_unsigned] = ACTIONS(3051), + [anon_sym_long] = ACTIONS(3051), + [anon_sym_short] = ACTIONS(3051), + [anon_sym_LBRACK] = ACTIONS(3051), + [anon_sym_static] = ACTIONS(3051), + [anon_sym_register] = ACTIONS(3051), + [anon_sym_inline] = ACTIONS(3051), + [anon_sym___inline] = ACTIONS(3051), + [anon_sym___inline__] = ACTIONS(3051), + [anon_sym___forceinline] = ACTIONS(3051), + [anon_sym_thread_local] = ACTIONS(3051), + [anon_sym___thread] = ACTIONS(3051), + [anon_sym_const] = ACTIONS(3051), + [anon_sym_constexpr] = ACTIONS(3051), + [anon_sym_volatile] = ACTIONS(3051), + [anon_sym_restrict] = ACTIONS(3051), + [anon_sym___restrict__] = ACTIONS(3051), + [anon_sym__Atomic] = ACTIONS(3051), + [anon_sym__Noreturn] = ACTIONS(3051), + [anon_sym_noreturn] = ACTIONS(3051), + [anon_sym__Nonnull] = ACTIONS(3051), + [anon_sym_mutable] = ACTIONS(3051), + [anon_sym_constinit] = ACTIONS(3051), + [anon_sym_consteval] = ACTIONS(3051), + [anon_sym_alignas] = ACTIONS(3051), + [anon_sym__Alignas] = ACTIONS(3051), + [sym_primitive_type] = ACTIONS(3051), + [anon_sym_enum] = ACTIONS(3051), + [anon_sym_class] = ACTIONS(3051), + [anon_sym_struct] = ACTIONS(3051), + [anon_sym_union] = ACTIONS(3051), + [anon_sym_if] = ACTIONS(3051), + [anon_sym_switch] = ACTIONS(3051), + [anon_sym_case] = ACTIONS(3051), + [anon_sym_default] = ACTIONS(3051), + [anon_sym_while] = ACTIONS(3051), + [anon_sym_do] = ACTIONS(3051), + [anon_sym_for] = ACTIONS(3051), + [anon_sym_return] = ACTIONS(3051), + [anon_sym_break] = ACTIONS(3051), + [anon_sym_continue] = ACTIONS(3051), + [anon_sym_goto] = ACTIONS(3051), + [anon_sym_not] = ACTIONS(3051), + [anon_sym_compl] = ACTIONS(3051), + [anon_sym_DASH_DASH] = ACTIONS(3053), + [anon_sym_PLUS_PLUS] = ACTIONS(3053), + [anon_sym_sizeof] = ACTIONS(3051), + [anon_sym___alignof__] = ACTIONS(3051), + [anon_sym___alignof] = ACTIONS(3051), + [anon_sym__alignof] = ACTIONS(3051), + [anon_sym_alignof] = ACTIONS(3051), + [anon_sym__Alignof] = ACTIONS(3051), + [anon_sym_offsetof] = ACTIONS(3051), + [anon_sym__Generic] = ACTIONS(3051), + [anon_sym_asm] = ACTIONS(3051), + [anon_sym___asm__] = ACTIONS(3051), + [anon_sym___asm] = ACTIONS(3051), + [sym_number_literal] = ACTIONS(3053), + [anon_sym_L_SQUOTE] = ACTIONS(3053), + [anon_sym_u_SQUOTE] = ACTIONS(3053), + [anon_sym_U_SQUOTE] = ACTIONS(3053), + [anon_sym_u8_SQUOTE] = ACTIONS(3053), + [anon_sym_SQUOTE] = ACTIONS(3053), + [anon_sym_L_DQUOTE] = ACTIONS(3053), + [anon_sym_u_DQUOTE] = ACTIONS(3053), + [anon_sym_U_DQUOTE] = ACTIONS(3053), + [anon_sym_u8_DQUOTE] = ACTIONS(3053), + [anon_sym_DQUOTE] = ACTIONS(3053), + [sym_true] = ACTIONS(3051), + [sym_false] = ACTIONS(3051), + [anon_sym_NULL] = ACTIONS(3051), + [anon_sym_nullptr] = ACTIONS(3051), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3051), + [anon_sym_decltype] = ACTIONS(3051), + [anon_sym_explicit] = ACTIONS(3051), + [anon_sym_typename] = ACTIONS(3051), + [anon_sym_export] = ACTIONS(3051), + [anon_sym_module] = ACTIONS(3051), + [anon_sym_import] = ACTIONS(3051), + [anon_sym_template] = ACTIONS(3051), + [anon_sym_operator] = ACTIONS(3051), + [anon_sym_try] = ACTIONS(3051), + [anon_sym_delete] = ACTIONS(3051), + [anon_sym_throw] = ACTIONS(3051), + [anon_sym_namespace] = ACTIONS(3051), + [anon_sym_static_assert] = ACTIONS(3051), + [anon_sym_concept] = ACTIONS(3051), + [anon_sym_co_return] = ACTIONS(3051), + [anon_sym_co_yield] = ACTIONS(3051), + [anon_sym_R_DQUOTE] = ACTIONS(3053), + [anon_sym_LR_DQUOTE] = ACTIONS(3053), + [anon_sym_uR_DQUOTE] = ACTIONS(3053), + [anon_sym_UR_DQUOTE] = ACTIONS(3053), + [anon_sym_u8R_DQUOTE] = ACTIONS(3053), + [anon_sym_co_await] = ACTIONS(3051), + [anon_sym_new] = ACTIONS(3051), + [anon_sym_requires] = ACTIONS(3051), + [sym_this] = ACTIONS(3051), }, - [519] = { - [ts_builtin_sym_end] = ACTIONS(2805), - [sym_identifier] = ACTIONS(2803), - [aux_sym_preproc_include_token1] = ACTIONS(2803), - [aux_sym_preproc_def_token1] = ACTIONS(2803), - [aux_sym_preproc_if_token1] = ACTIONS(2803), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2803), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2803), - [sym_preproc_directive] = ACTIONS(2803), - [anon_sym_LPAREN2] = ACTIONS(2805), - [anon_sym_BANG] = ACTIONS(2805), - [anon_sym_TILDE] = ACTIONS(2805), - [anon_sym_DASH] = ACTIONS(2803), - [anon_sym_PLUS] = ACTIONS(2803), - [anon_sym_STAR] = ACTIONS(2805), - [anon_sym_AMP_AMP] = ACTIONS(2805), - [anon_sym_AMP] = ACTIONS(2803), - [anon_sym_SEMI] = ACTIONS(2805), - [anon_sym___extension__] = ACTIONS(2803), - [anon_sym_typedef] = ACTIONS(2803), - [anon_sym_virtual] = ACTIONS(2803), - [anon_sym_extern] = ACTIONS(2803), - [anon_sym___attribute__] = ACTIONS(2803), - [anon_sym___attribute] = ACTIONS(2803), - [anon_sym_using] = ACTIONS(2803), - [anon_sym_COLON_COLON] = ACTIONS(2805), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2805), - [anon_sym___declspec] = ACTIONS(2803), - [anon_sym___based] = ACTIONS(2803), - [anon_sym___cdecl] = ACTIONS(2803), - [anon_sym___clrcall] = ACTIONS(2803), - [anon_sym___stdcall] = ACTIONS(2803), - [anon_sym___fastcall] = ACTIONS(2803), - [anon_sym___thiscall] = ACTIONS(2803), - [anon_sym___vectorcall] = ACTIONS(2803), - [anon_sym_LBRACE] = ACTIONS(2805), - [anon_sym_signed] = ACTIONS(2803), - [anon_sym_unsigned] = ACTIONS(2803), - [anon_sym_long] = ACTIONS(2803), - [anon_sym_short] = ACTIONS(2803), - [anon_sym_LBRACK] = ACTIONS(2803), - [anon_sym_static] = ACTIONS(2803), - [anon_sym_register] = ACTIONS(2803), - [anon_sym_inline] = ACTIONS(2803), - [anon_sym___inline] = ACTIONS(2803), - [anon_sym___inline__] = ACTIONS(2803), - [anon_sym___forceinline] = ACTIONS(2803), - [anon_sym_thread_local] = ACTIONS(2803), - [anon_sym___thread] = ACTIONS(2803), - [anon_sym_const] = ACTIONS(2803), - [anon_sym_constexpr] = ACTIONS(2803), - [anon_sym_volatile] = ACTIONS(2803), - [anon_sym_restrict] = ACTIONS(2803), - [anon_sym___restrict__] = ACTIONS(2803), - [anon_sym__Atomic] = ACTIONS(2803), - [anon_sym__Noreturn] = ACTIONS(2803), - [anon_sym_noreturn] = ACTIONS(2803), - [anon_sym__Nonnull] = ACTIONS(2803), - [anon_sym_mutable] = ACTIONS(2803), - [anon_sym_constinit] = ACTIONS(2803), - [anon_sym_consteval] = ACTIONS(2803), - [anon_sym_alignas] = ACTIONS(2803), - [anon_sym__Alignas] = ACTIONS(2803), - [sym_primitive_type] = ACTIONS(2803), - [anon_sym_enum] = ACTIONS(2803), - [anon_sym_class] = ACTIONS(2803), - [anon_sym_struct] = ACTIONS(2803), - [anon_sym_union] = ACTIONS(2803), - [anon_sym_if] = ACTIONS(2803), - [anon_sym_switch] = ACTIONS(2803), - [anon_sym_case] = ACTIONS(2803), - [anon_sym_default] = ACTIONS(2803), - [anon_sym_while] = ACTIONS(2803), - [anon_sym_do] = ACTIONS(2803), - [anon_sym_for] = ACTIONS(2803), - [anon_sym_return] = ACTIONS(2803), - [anon_sym_break] = ACTIONS(2803), - [anon_sym_continue] = ACTIONS(2803), - [anon_sym_goto] = ACTIONS(2803), - [anon_sym_not] = ACTIONS(2803), - [anon_sym_compl] = ACTIONS(2803), - [anon_sym_DASH_DASH] = ACTIONS(2805), - [anon_sym_PLUS_PLUS] = ACTIONS(2805), - [anon_sym_sizeof] = ACTIONS(2803), - [anon_sym___alignof__] = ACTIONS(2803), - [anon_sym___alignof] = ACTIONS(2803), - [anon_sym__alignof] = ACTIONS(2803), - [anon_sym_alignof] = ACTIONS(2803), - [anon_sym__Alignof] = ACTIONS(2803), - [anon_sym_offsetof] = ACTIONS(2803), - [anon_sym__Generic] = ACTIONS(2803), - [anon_sym_asm] = ACTIONS(2803), - [anon_sym___asm__] = ACTIONS(2803), - [anon_sym___asm] = ACTIONS(2803), - [sym_number_literal] = ACTIONS(2805), - [anon_sym_L_SQUOTE] = ACTIONS(2805), - [anon_sym_u_SQUOTE] = ACTIONS(2805), - [anon_sym_U_SQUOTE] = ACTIONS(2805), - [anon_sym_u8_SQUOTE] = ACTIONS(2805), - [anon_sym_SQUOTE] = ACTIONS(2805), - [anon_sym_L_DQUOTE] = ACTIONS(2805), - [anon_sym_u_DQUOTE] = ACTIONS(2805), - [anon_sym_U_DQUOTE] = ACTIONS(2805), - [anon_sym_u8_DQUOTE] = ACTIONS(2805), - [anon_sym_DQUOTE] = ACTIONS(2805), - [sym_true] = ACTIONS(2803), - [sym_false] = ACTIONS(2803), - [anon_sym_NULL] = ACTIONS(2803), - [anon_sym_nullptr] = ACTIONS(2803), + [526] = { + [ts_builtin_sym_end] = ACTIONS(3427), + [sym_identifier] = ACTIONS(3429), + [aux_sym_preproc_include_token1] = ACTIONS(3429), + [aux_sym_preproc_def_token1] = ACTIONS(3429), + [aux_sym_preproc_if_token1] = ACTIONS(3429), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3429), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3429), + [sym_preproc_directive] = ACTIONS(3429), + [anon_sym_LPAREN2] = ACTIONS(3427), + [anon_sym_BANG] = ACTIONS(3427), + [anon_sym_TILDE] = ACTIONS(3427), + [anon_sym_DASH] = ACTIONS(3429), + [anon_sym_PLUS] = ACTIONS(3429), + [anon_sym_STAR] = ACTIONS(3427), + [anon_sym_AMP_AMP] = ACTIONS(3427), + [anon_sym_AMP] = ACTIONS(3429), + [anon_sym_SEMI] = ACTIONS(3427), + [anon_sym___extension__] = ACTIONS(3429), + [anon_sym_typedef] = ACTIONS(3429), + [anon_sym_virtual] = ACTIONS(3429), + [anon_sym_extern] = ACTIONS(3429), + [anon_sym___attribute__] = ACTIONS(3429), + [anon_sym___attribute] = ACTIONS(3429), + [anon_sym_using] = ACTIONS(3429), + [anon_sym_COLON_COLON] = ACTIONS(3427), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3427), + [anon_sym___declspec] = ACTIONS(3429), + [anon_sym___based] = ACTIONS(3429), + [anon_sym___cdecl] = ACTIONS(3429), + [anon_sym___clrcall] = ACTIONS(3429), + [anon_sym___stdcall] = ACTIONS(3429), + [anon_sym___fastcall] = ACTIONS(3429), + [anon_sym___thiscall] = ACTIONS(3429), + [anon_sym___vectorcall] = ACTIONS(3429), + [anon_sym_LBRACE] = ACTIONS(3427), + [anon_sym_signed] = ACTIONS(3429), + [anon_sym_unsigned] = ACTIONS(3429), + [anon_sym_long] = ACTIONS(3429), + [anon_sym_short] = ACTIONS(3429), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_static] = ACTIONS(3429), + [anon_sym_register] = ACTIONS(3429), + [anon_sym_inline] = ACTIONS(3429), + [anon_sym___inline] = ACTIONS(3429), + [anon_sym___inline__] = ACTIONS(3429), + [anon_sym___forceinline] = ACTIONS(3429), + [anon_sym_thread_local] = ACTIONS(3429), + [anon_sym___thread] = ACTIONS(3429), + [anon_sym_const] = ACTIONS(3429), + [anon_sym_constexpr] = ACTIONS(3429), + [anon_sym_volatile] = ACTIONS(3429), + [anon_sym_restrict] = ACTIONS(3429), + [anon_sym___restrict__] = ACTIONS(3429), + [anon_sym__Atomic] = ACTIONS(3429), + [anon_sym__Noreturn] = ACTIONS(3429), + [anon_sym_noreturn] = ACTIONS(3429), + [anon_sym__Nonnull] = ACTIONS(3429), + [anon_sym_mutable] = ACTIONS(3429), + [anon_sym_constinit] = ACTIONS(3429), + [anon_sym_consteval] = ACTIONS(3429), + [anon_sym_alignas] = ACTIONS(3429), + [anon_sym__Alignas] = ACTIONS(3429), + [sym_primitive_type] = ACTIONS(3429), + [anon_sym_enum] = ACTIONS(3429), + [anon_sym_class] = ACTIONS(3429), + [anon_sym_struct] = ACTIONS(3429), + [anon_sym_union] = ACTIONS(3429), + [anon_sym_if] = ACTIONS(3429), + [anon_sym_switch] = ACTIONS(3429), + [anon_sym_case] = ACTIONS(3429), + [anon_sym_default] = ACTIONS(3429), + [anon_sym_while] = ACTIONS(3429), + [anon_sym_do] = ACTIONS(3429), + [anon_sym_for] = ACTIONS(3429), + [anon_sym_return] = ACTIONS(3429), + [anon_sym_break] = ACTIONS(3429), + [anon_sym_continue] = ACTIONS(3429), + [anon_sym_goto] = ACTIONS(3429), + [anon_sym_not] = ACTIONS(3429), + [anon_sym_compl] = ACTIONS(3429), + [anon_sym_DASH_DASH] = ACTIONS(3427), + [anon_sym_PLUS_PLUS] = ACTIONS(3427), + [anon_sym_sizeof] = ACTIONS(3429), + [anon_sym___alignof__] = ACTIONS(3429), + [anon_sym___alignof] = ACTIONS(3429), + [anon_sym__alignof] = ACTIONS(3429), + [anon_sym_alignof] = ACTIONS(3429), + [anon_sym__Alignof] = ACTIONS(3429), + [anon_sym_offsetof] = ACTIONS(3429), + [anon_sym__Generic] = ACTIONS(3429), + [anon_sym_asm] = ACTIONS(3429), + [anon_sym___asm__] = ACTIONS(3429), + [anon_sym___asm] = ACTIONS(3429), + [sym_number_literal] = ACTIONS(3427), + [anon_sym_L_SQUOTE] = ACTIONS(3427), + [anon_sym_u_SQUOTE] = ACTIONS(3427), + [anon_sym_U_SQUOTE] = ACTIONS(3427), + [anon_sym_u8_SQUOTE] = ACTIONS(3427), + [anon_sym_SQUOTE] = ACTIONS(3427), + [anon_sym_L_DQUOTE] = ACTIONS(3427), + [anon_sym_u_DQUOTE] = ACTIONS(3427), + [anon_sym_U_DQUOTE] = ACTIONS(3427), + [anon_sym_u8_DQUOTE] = ACTIONS(3427), + [anon_sym_DQUOTE] = ACTIONS(3427), + [sym_true] = ACTIONS(3429), + [sym_false] = ACTIONS(3429), + [anon_sym_NULL] = ACTIONS(3429), + [anon_sym_nullptr] = ACTIONS(3429), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3429), + [anon_sym_decltype] = ACTIONS(3429), + [anon_sym_explicit] = ACTIONS(3429), + [anon_sym_typename] = ACTIONS(3429), + [anon_sym_export] = ACTIONS(3429), + [anon_sym_module] = ACTIONS(3429), + [anon_sym_import] = ACTIONS(3429), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_operator] = ACTIONS(3429), + [anon_sym_try] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3429), + [anon_sym_throw] = ACTIONS(3429), + [anon_sym_namespace] = ACTIONS(3429), + [anon_sym_static_assert] = ACTIONS(3429), + [anon_sym_concept] = ACTIONS(3429), + [anon_sym_co_return] = ACTIONS(3429), + [anon_sym_co_yield] = ACTIONS(3429), + [anon_sym_R_DQUOTE] = ACTIONS(3427), + [anon_sym_LR_DQUOTE] = ACTIONS(3427), + [anon_sym_uR_DQUOTE] = ACTIONS(3427), + [anon_sym_UR_DQUOTE] = ACTIONS(3427), + [anon_sym_u8R_DQUOTE] = ACTIONS(3427), + [anon_sym_co_await] = ACTIONS(3429), + [anon_sym_new] = ACTIONS(3429), + [anon_sym_requires] = ACTIONS(3429), + [sym_this] = ACTIONS(3429), + }, + [527] = { + [sym_identifier] = ACTIONS(2755), + [aux_sym_preproc_include_token1] = ACTIONS(2755), + [aux_sym_preproc_def_token1] = ACTIONS(2755), + [aux_sym_preproc_if_token1] = ACTIONS(2755), + [aux_sym_preproc_if_token2] = ACTIONS(2755), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2755), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2755), + [sym_preproc_directive] = ACTIONS(2755), + [anon_sym_LPAREN2] = ACTIONS(2757), + [anon_sym_BANG] = ACTIONS(2757), + [anon_sym_TILDE] = ACTIONS(2757), + [anon_sym_DASH] = ACTIONS(2755), + [anon_sym_PLUS] = ACTIONS(2755), + [anon_sym_STAR] = ACTIONS(2757), + [anon_sym_AMP_AMP] = ACTIONS(2757), + [anon_sym_AMP] = ACTIONS(2755), + [anon_sym_SEMI] = ACTIONS(2757), + [anon_sym___extension__] = ACTIONS(2755), + [anon_sym_typedef] = ACTIONS(2755), + [anon_sym_virtual] = ACTIONS(2755), + [anon_sym_extern] = ACTIONS(2755), + [anon_sym___attribute__] = ACTIONS(2755), + [anon_sym___attribute] = ACTIONS(2755), + [anon_sym_using] = ACTIONS(2755), + [anon_sym_COLON_COLON] = ACTIONS(2757), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2757), + [anon_sym___declspec] = ACTIONS(2755), + [anon_sym___based] = ACTIONS(2755), + [anon_sym___cdecl] = ACTIONS(2755), + [anon_sym___clrcall] = ACTIONS(2755), + [anon_sym___stdcall] = ACTIONS(2755), + [anon_sym___fastcall] = ACTIONS(2755), + [anon_sym___thiscall] = ACTIONS(2755), + [anon_sym___vectorcall] = ACTIONS(2755), + [anon_sym_LBRACE] = ACTIONS(2757), + [anon_sym_signed] = ACTIONS(2755), + [anon_sym_unsigned] = ACTIONS(2755), + [anon_sym_long] = ACTIONS(2755), + [anon_sym_short] = ACTIONS(2755), + [anon_sym_LBRACK] = ACTIONS(2755), + [anon_sym_static] = ACTIONS(2755), + [anon_sym_register] = ACTIONS(2755), + [anon_sym_inline] = ACTIONS(2755), + [anon_sym___inline] = ACTIONS(2755), + [anon_sym___inline__] = ACTIONS(2755), + [anon_sym___forceinline] = ACTIONS(2755), + [anon_sym_thread_local] = ACTIONS(2755), + [anon_sym___thread] = ACTIONS(2755), + [anon_sym_const] = ACTIONS(2755), + [anon_sym_constexpr] = ACTIONS(2755), + [anon_sym_volatile] = ACTIONS(2755), + [anon_sym_restrict] = ACTIONS(2755), + [anon_sym___restrict__] = ACTIONS(2755), + [anon_sym__Atomic] = ACTIONS(2755), + [anon_sym__Noreturn] = ACTIONS(2755), + [anon_sym_noreturn] = ACTIONS(2755), + [anon_sym__Nonnull] = ACTIONS(2755), + [anon_sym_mutable] = ACTIONS(2755), + [anon_sym_constinit] = ACTIONS(2755), + [anon_sym_consteval] = ACTIONS(2755), + [anon_sym_alignas] = ACTIONS(2755), + [anon_sym__Alignas] = ACTIONS(2755), + [sym_primitive_type] = ACTIONS(2755), + [anon_sym_enum] = ACTIONS(2755), + [anon_sym_class] = ACTIONS(2755), + [anon_sym_struct] = ACTIONS(2755), + [anon_sym_union] = ACTIONS(2755), + [anon_sym_if] = ACTIONS(2755), + [anon_sym_else] = ACTIONS(2755), + [anon_sym_switch] = ACTIONS(2755), + [anon_sym_case] = ACTIONS(2755), + [anon_sym_default] = ACTIONS(2755), + [anon_sym_while] = ACTIONS(2755), + [anon_sym_do] = ACTIONS(2755), + [anon_sym_for] = ACTIONS(2755), + [anon_sym_return] = ACTIONS(2755), + [anon_sym_break] = ACTIONS(2755), + [anon_sym_continue] = ACTIONS(2755), + [anon_sym_goto] = ACTIONS(2755), + [anon_sym___try] = ACTIONS(2755), + [anon_sym___leave] = ACTIONS(2755), + [anon_sym_not] = ACTIONS(2755), + [anon_sym_compl] = ACTIONS(2755), + [anon_sym_DASH_DASH] = ACTIONS(2757), + [anon_sym_PLUS_PLUS] = ACTIONS(2757), + [anon_sym_sizeof] = ACTIONS(2755), + [anon_sym___alignof__] = ACTIONS(2755), + [anon_sym___alignof] = ACTIONS(2755), + [anon_sym__alignof] = ACTIONS(2755), + [anon_sym_alignof] = ACTIONS(2755), + [anon_sym__Alignof] = ACTIONS(2755), + [anon_sym_offsetof] = ACTIONS(2755), + [anon_sym__Generic] = ACTIONS(2755), + [anon_sym_asm] = ACTIONS(2755), + [anon_sym___asm__] = ACTIONS(2755), + [anon_sym___asm] = ACTIONS(2755), + [sym_number_literal] = ACTIONS(2757), + [anon_sym_L_SQUOTE] = ACTIONS(2757), + [anon_sym_u_SQUOTE] = ACTIONS(2757), + [anon_sym_U_SQUOTE] = ACTIONS(2757), + [anon_sym_u8_SQUOTE] = ACTIONS(2757), + [anon_sym_SQUOTE] = ACTIONS(2757), + [anon_sym_L_DQUOTE] = ACTIONS(2757), + [anon_sym_u_DQUOTE] = ACTIONS(2757), + [anon_sym_U_DQUOTE] = ACTIONS(2757), + [anon_sym_u8_DQUOTE] = ACTIONS(2757), + [anon_sym_DQUOTE] = ACTIONS(2757), + [sym_true] = ACTIONS(2755), + [sym_false] = ACTIONS(2755), + [anon_sym_NULL] = ACTIONS(2755), + [anon_sym_nullptr] = ACTIONS(2755), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2803), - [anon_sym_decltype] = ACTIONS(2803), - [anon_sym_explicit] = ACTIONS(2803), - [anon_sym_typename] = ACTIONS(2803), - [anon_sym_export] = ACTIONS(2803), - [anon_sym_module] = ACTIONS(2803), - [anon_sym_import] = ACTIONS(2803), - [anon_sym_template] = ACTIONS(2803), - [anon_sym_operator] = ACTIONS(2803), - [anon_sym_try] = ACTIONS(2803), - [anon_sym_delete] = ACTIONS(2803), - [anon_sym_throw] = ACTIONS(2803), - [anon_sym_namespace] = ACTIONS(2803), - [anon_sym_static_assert] = ACTIONS(2803), - [anon_sym_concept] = ACTIONS(2803), - [anon_sym_co_return] = ACTIONS(2803), - [anon_sym_co_yield] = ACTIONS(2803), - [anon_sym_R_DQUOTE] = ACTIONS(2805), - [anon_sym_LR_DQUOTE] = ACTIONS(2805), - [anon_sym_uR_DQUOTE] = ACTIONS(2805), - [anon_sym_UR_DQUOTE] = ACTIONS(2805), - [anon_sym_u8R_DQUOTE] = ACTIONS(2805), - [anon_sym_co_await] = ACTIONS(2803), - [anon_sym_new] = ACTIONS(2803), - [anon_sym_requires] = ACTIONS(2803), - [sym_this] = ACTIONS(2803), + [sym_auto] = ACTIONS(2755), + [anon_sym_decltype] = ACTIONS(2755), + [anon_sym_explicit] = ACTIONS(2755), + [anon_sym_typename] = ACTIONS(2755), + [anon_sym_template] = ACTIONS(2755), + [anon_sym_operator] = ACTIONS(2755), + [anon_sym_try] = ACTIONS(2755), + [anon_sym_delete] = ACTIONS(2755), + [anon_sym_throw] = ACTIONS(2755), + [anon_sym_namespace] = ACTIONS(2755), + [anon_sym_static_assert] = ACTIONS(2755), + [anon_sym_concept] = ACTIONS(2755), + [anon_sym_co_return] = ACTIONS(2755), + [anon_sym_co_yield] = ACTIONS(2755), + [anon_sym_R_DQUOTE] = ACTIONS(2757), + [anon_sym_LR_DQUOTE] = ACTIONS(2757), + [anon_sym_uR_DQUOTE] = ACTIONS(2757), + [anon_sym_UR_DQUOTE] = ACTIONS(2757), + [anon_sym_u8R_DQUOTE] = ACTIONS(2757), + [anon_sym_co_await] = ACTIONS(2755), + [anon_sym_new] = ACTIONS(2755), + [anon_sym_requires] = ACTIONS(2755), + [sym_this] = ACTIONS(2755), }, - [520] = { - [ts_builtin_sym_end] = ACTIONS(3069), - [sym_identifier] = ACTIONS(3067), - [aux_sym_preproc_include_token1] = ACTIONS(3067), - [aux_sym_preproc_def_token1] = ACTIONS(3067), - [aux_sym_preproc_if_token1] = ACTIONS(3067), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3067), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3067), - [sym_preproc_directive] = ACTIONS(3067), - [anon_sym_LPAREN2] = ACTIONS(3069), - [anon_sym_BANG] = ACTIONS(3069), - [anon_sym_TILDE] = ACTIONS(3069), - [anon_sym_DASH] = ACTIONS(3067), - [anon_sym_PLUS] = ACTIONS(3067), - [anon_sym_STAR] = ACTIONS(3069), - [anon_sym_AMP_AMP] = ACTIONS(3069), - [anon_sym_AMP] = ACTIONS(3067), - [anon_sym_SEMI] = ACTIONS(3069), - [anon_sym___extension__] = ACTIONS(3067), - [anon_sym_typedef] = ACTIONS(3067), - [anon_sym_virtual] = ACTIONS(3067), - [anon_sym_extern] = ACTIONS(3067), - [anon_sym___attribute__] = ACTIONS(3067), - [anon_sym___attribute] = ACTIONS(3067), - [anon_sym_using] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(3069), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3069), - [anon_sym___declspec] = ACTIONS(3067), - [anon_sym___based] = ACTIONS(3067), - [anon_sym___cdecl] = ACTIONS(3067), - [anon_sym___clrcall] = ACTIONS(3067), - [anon_sym___stdcall] = ACTIONS(3067), - [anon_sym___fastcall] = ACTIONS(3067), - [anon_sym___thiscall] = ACTIONS(3067), - [anon_sym___vectorcall] = ACTIONS(3067), - [anon_sym_LBRACE] = ACTIONS(3069), - [anon_sym_signed] = ACTIONS(3067), - [anon_sym_unsigned] = ACTIONS(3067), - [anon_sym_long] = ACTIONS(3067), - [anon_sym_short] = ACTIONS(3067), - [anon_sym_LBRACK] = ACTIONS(3067), - [anon_sym_static] = ACTIONS(3067), - [anon_sym_register] = ACTIONS(3067), - [anon_sym_inline] = ACTIONS(3067), - [anon_sym___inline] = ACTIONS(3067), - [anon_sym___inline__] = ACTIONS(3067), - [anon_sym___forceinline] = ACTIONS(3067), - [anon_sym_thread_local] = ACTIONS(3067), - [anon_sym___thread] = ACTIONS(3067), - [anon_sym_const] = ACTIONS(3067), - [anon_sym_constexpr] = ACTIONS(3067), - [anon_sym_volatile] = ACTIONS(3067), - [anon_sym_restrict] = ACTIONS(3067), - [anon_sym___restrict__] = ACTIONS(3067), - [anon_sym__Atomic] = ACTIONS(3067), - [anon_sym__Noreturn] = ACTIONS(3067), - [anon_sym_noreturn] = ACTIONS(3067), - [anon_sym__Nonnull] = ACTIONS(3067), - [anon_sym_mutable] = ACTIONS(3067), - [anon_sym_constinit] = ACTIONS(3067), - [anon_sym_consteval] = ACTIONS(3067), - [anon_sym_alignas] = ACTIONS(3067), - [anon_sym__Alignas] = ACTIONS(3067), - [sym_primitive_type] = ACTIONS(3067), - [anon_sym_enum] = ACTIONS(3067), - [anon_sym_class] = ACTIONS(3067), - [anon_sym_struct] = ACTIONS(3067), - [anon_sym_union] = ACTIONS(3067), - [anon_sym_if] = ACTIONS(3067), - [anon_sym_switch] = ACTIONS(3067), - [anon_sym_case] = ACTIONS(3067), - [anon_sym_default] = ACTIONS(3067), - [anon_sym_while] = ACTIONS(3067), - [anon_sym_do] = ACTIONS(3067), - [anon_sym_for] = ACTIONS(3067), - [anon_sym_return] = ACTIONS(3067), - [anon_sym_break] = ACTIONS(3067), - [anon_sym_continue] = ACTIONS(3067), - [anon_sym_goto] = ACTIONS(3067), - [anon_sym_not] = ACTIONS(3067), - [anon_sym_compl] = ACTIONS(3067), - [anon_sym_DASH_DASH] = ACTIONS(3069), - [anon_sym_PLUS_PLUS] = ACTIONS(3069), - [anon_sym_sizeof] = ACTIONS(3067), - [anon_sym___alignof__] = ACTIONS(3067), - [anon_sym___alignof] = ACTIONS(3067), - [anon_sym__alignof] = ACTIONS(3067), - [anon_sym_alignof] = ACTIONS(3067), - [anon_sym__Alignof] = ACTIONS(3067), - [anon_sym_offsetof] = ACTIONS(3067), - [anon_sym__Generic] = ACTIONS(3067), - [anon_sym_asm] = ACTIONS(3067), - [anon_sym___asm__] = ACTIONS(3067), - [anon_sym___asm] = ACTIONS(3067), - [sym_number_literal] = ACTIONS(3069), - [anon_sym_L_SQUOTE] = ACTIONS(3069), - [anon_sym_u_SQUOTE] = ACTIONS(3069), - [anon_sym_U_SQUOTE] = ACTIONS(3069), - [anon_sym_u8_SQUOTE] = ACTIONS(3069), - [anon_sym_SQUOTE] = ACTIONS(3069), - [anon_sym_L_DQUOTE] = ACTIONS(3069), - [anon_sym_u_DQUOTE] = ACTIONS(3069), - [anon_sym_U_DQUOTE] = ACTIONS(3069), - [anon_sym_u8_DQUOTE] = ACTIONS(3069), - [anon_sym_DQUOTE] = ACTIONS(3069), - [sym_true] = ACTIONS(3067), - [sym_false] = ACTIONS(3067), - [anon_sym_NULL] = ACTIONS(3067), - [anon_sym_nullptr] = ACTIONS(3067), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3067), - [anon_sym_decltype] = ACTIONS(3067), - [anon_sym_explicit] = ACTIONS(3067), - [anon_sym_typename] = ACTIONS(3067), - [anon_sym_export] = ACTIONS(3067), - [anon_sym_module] = ACTIONS(3067), - [anon_sym_import] = ACTIONS(3067), - [anon_sym_template] = ACTIONS(3067), - [anon_sym_operator] = ACTIONS(3067), - [anon_sym_try] = ACTIONS(3067), - [anon_sym_delete] = ACTIONS(3067), - [anon_sym_throw] = ACTIONS(3067), - [anon_sym_namespace] = ACTIONS(3067), - [anon_sym_static_assert] = ACTIONS(3067), - [anon_sym_concept] = ACTIONS(3067), - [anon_sym_co_return] = ACTIONS(3067), - [anon_sym_co_yield] = ACTIONS(3067), - [anon_sym_R_DQUOTE] = ACTIONS(3069), - [anon_sym_LR_DQUOTE] = ACTIONS(3069), - [anon_sym_uR_DQUOTE] = ACTIONS(3069), - [anon_sym_UR_DQUOTE] = ACTIONS(3069), - [anon_sym_u8R_DQUOTE] = ACTIONS(3069), - [anon_sym_co_await] = ACTIONS(3067), - [anon_sym_new] = ACTIONS(3067), - [anon_sym_requires] = ACTIONS(3067), - [sym_this] = ACTIONS(3067), + [528] = { + [sym_identifier] = ACTIONS(2767), + [aux_sym_preproc_include_token1] = ACTIONS(2767), + [aux_sym_preproc_def_token1] = ACTIONS(2767), + [aux_sym_preproc_if_token1] = ACTIONS(2767), + [aux_sym_preproc_if_token2] = ACTIONS(2767), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2767), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2767), + [sym_preproc_directive] = ACTIONS(2767), + [anon_sym_LPAREN2] = ACTIONS(2769), + [anon_sym_BANG] = ACTIONS(2769), + [anon_sym_TILDE] = ACTIONS(2769), + [anon_sym_DASH] = ACTIONS(2767), + [anon_sym_PLUS] = ACTIONS(2767), + [anon_sym_STAR] = ACTIONS(2769), + [anon_sym_AMP_AMP] = ACTIONS(2769), + [anon_sym_AMP] = ACTIONS(2767), + [anon_sym_SEMI] = ACTIONS(2769), + [anon_sym___extension__] = ACTIONS(2767), + [anon_sym_typedef] = ACTIONS(2767), + [anon_sym_virtual] = ACTIONS(2767), + [anon_sym_extern] = ACTIONS(2767), + [anon_sym___attribute__] = ACTIONS(2767), + [anon_sym___attribute] = ACTIONS(2767), + [anon_sym_using] = ACTIONS(2767), + [anon_sym_COLON_COLON] = ACTIONS(2769), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2769), + [anon_sym___declspec] = ACTIONS(2767), + [anon_sym___based] = ACTIONS(2767), + [anon_sym___cdecl] = ACTIONS(2767), + [anon_sym___clrcall] = ACTIONS(2767), + [anon_sym___stdcall] = ACTIONS(2767), + [anon_sym___fastcall] = ACTIONS(2767), + [anon_sym___thiscall] = ACTIONS(2767), + [anon_sym___vectorcall] = ACTIONS(2767), + [anon_sym_LBRACE] = ACTIONS(2769), + [anon_sym_signed] = ACTIONS(2767), + [anon_sym_unsigned] = ACTIONS(2767), + [anon_sym_long] = ACTIONS(2767), + [anon_sym_short] = ACTIONS(2767), + [anon_sym_LBRACK] = ACTIONS(2767), + [anon_sym_static] = ACTIONS(2767), + [anon_sym_register] = ACTIONS(2767), + [anon_sym_inline] = ACTIONS(2767), + [anon_sym___inline] = ACTIONS(2767), + [anon_sym___inline__] = ACTIONS(2767), + [anon_sym___forceinline] = ACTIONS(2767), + [anon_sym_thread_local] = ACTIONS(2767), + [anon_sym___thread] = ACTIONS(2767), + [anon_sym_const] = ACTIONS(2767), + [anon_sym_constexpr] = ACTIONS(2767), + [anon_sym_volatile] = ACTIONS(2767), + [anon_sym_restrict] = ACTIONS(2767), + [anon_sym___restrict__] = ACTIONS(2767), + [anon_sym__Atomic] = ACTIONS(2767), + [anon_sym__Noreturn] = ACTIONS(2767), + [anon_sym_noreturn] = ACTIONS(2767), + [anon_sym__Nonnull] = ACTIONS(2767), + [anon_sym_mutable] = ACTIONS(2767), + [anon_sym_constinit] = ACTIONS(2767), + [anon_sym_consteval] = ACTIONS(2767), + [anon_sym_alignas] = ACTIONS(2767), + [anon_sym__Alignas] = ACTIONS(2767), + [sym_primitive_type] = ACTIONS(2767), + [anon_sym_enum] = ACTIONS(2767), + [anon_sym_class] = ACTIONS(2767), + [anon_sym_struct] = ACTIONS(2767), + [anon_sym_union] = ACTIONS(2767), + [anon_sym_if] = ACTIONS(2767), + [anon_sym_else] = ACTIONS(2767), + [anon_sym_switch] = ACTIONS(2767), + [anon_sym_case] = ACTIONS(2767), + [anon_sym_default] = ACTIONS(2767), + [anon_sym_while] = ACTIONS(2767), + [anon_sym_do] = ACTIONS(2767), + [anon_sym_for] = ACTIONS(2767), + [anon_sym_return] = ACTIONS(2767), + [anon_sym_break] = ACTIONS(2767), + [anon_sym_continue] = ACTIONS(2767), + [anon_sym_goto] = ACTIONS(2767), + [anon_sym___try] = ACTIONS(2767), + [anon_sym___leave] = ACTIONS(2767), + [anon_sym_not] = ACTIONS(2767), + [anon_sym_compl] = ACTIONS(2767), + [anon_sym_DASH_DASH] = ACTIONS(2769), + [anon_sym_PLUS_PLUS] = ACTIONS(2769), + [anon_sym_sizeof] = ACTIONS(2767), + [anon_sym___alignof__] = ACTIONS(2767), + [anon_sym___alignof] = ACTIONS(2767), + [anon_sym__alignof] = ACTIONS(2767), + [anon_sym_alignof] = ACTIONS(2767), + [anon_sym__Alignof] = ACTIONS(2767), + [anon_sym_offsetof] = ACTIONS(2767), + [anon_sym__Generic] = ACTIONS(2767), + [anon_sym_asm] = ACTIONS(2767), + [anon_sym___asm__] = ACTIONS(2767), + [anon_sym___asm] = ACTIONS(2767), + [sym_number_literal] = ACTIONS(2769), + [anon_sym_L_SQUOTE] = ACTIONS(2769), + [anon_sym_u_SQUOTE] = ACTIONS(2769), + [anon_sym_U_SQUOTE] = ACTIONS(2769), + [anon_sym_u8_SQUOTE] = ACTIONS(2769), + [anon_sym_SQUOTE] = ACTIONS(2769), + [anon_sym_L_DQUOTE] = ACTIONS(2769), + [anon_sym_u_DQUOTE] = ACTIONS(2769), + [anon_sym_U_DQUOTE] = ACTIONS(2769), + [anon_sym_u8_DQUOTE] = ACTIONS(2769), + [anon_sym_DQUOTE] = ACTIONS(2769), + [sym_true] = ACTIONS(2767), + [sym_false] = ACTIONS(2767), + [anon_sym_NULL] = ACTIONS(2767), + [anon_sym_nullptr] = ACTIONS(2767), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2767), + [anon_sym_decltype] = ACTIONS(2767), + [anon_sym_explicit] = ACTIONS(2767), + [anon_sym_typename] = ACTIONS(2767), + [anon_sym_template] = ACTIONS(2767), + [anon_sym_operator] = ACTIONS(2767), + [anon_sym_try] = ACTIONS(2767), + [anon_sym_delete] = ACTIONS(2767), + [anon_sym_throw] = ACTIONS(2767), + [anon_sym_namespace] = ACTIONS(2767), + [anon_sym_static_assert] = ACTIONS(2767), + [anon_sym_concept] = ACTIONS(2767), + [anon_sym_co_return] = ACTIONS(2767), + [anon_sym_co_yield] = ACTIONS(2767), + [anon_sym_R_DQUOTE] = ACTIONS(2769), + [anon_sym_LR_DQUOTE] = ACTIONS(2769), + [anon_sym_uR_DQUOTE] = ACTIONS(2769), + [anon_sym_UR_DQUOTE] = ACTIONS(2769), + [anon_sym_u8R_DQUOTE] = ACTIONS(2769), + [anon_sym_co_await] = ACTIONS(2767), + [anon_sym_new] = ACTIONS(2767), + [anon_sym_requires] = ACTIONS(2767), + [sym_this] = ACTIONS(2767), }, - [521] = { - [ts_builtin_sym_end] = ACTIONS(3073), - [sym_identifier] = ACTIONS(3071), - [aux_sym_preproc_include_token1] = ACTIONS(3071), - [aux_sym_preproc_def_token1] = ACTIONS(3071), - [aux_sym_preproc_if_token1] = ACTIONS(3071), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3071), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3071), - [sym_preproc_directive] = ACTIONS(3071), - [anon_sym_LPAREN2] = ACTIONS(3073), - [anon_sym_BANG] = ACTIONS(3073), - [anon_sym_TILDE] = ACTIONS(3073), - [anon_sym_DASH] = ACTIONS(3071), - [anon_sym_PLUS] = ACTIONS(3071), - [anon_sym_STAR] = ACTIONS(3073), - [anon_sym_AMP_AMP] = ACTIONS(3073), - [anon_sym_AMP] = ACTIONS(3071), - [anon_sym_SEMI] = ACTIONS(3073), - [anon_sym___extension__] = ACTIONS(3071), - [anon_sym_typedef] = ACTIONS(3071), - [anon_sym_virtual] = ACTIONS(3071), - [anon_sym_extern] = ACTIONS(3071), - [anon_sym___attribute__] = ACTIONS(3071), - [anon_sym___attribute] = ACTIONS(3071), - [anon_sym_using] = ACTIONS(3071), - [anon_sym_COLON_COLON] = ACTIONS(3073), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3073), - [anon_sym___declspec] = ACTIONS(3071), - [anon_sym___based] = ACTIONS(3071), - [anon_sym___cdecl] = ACTIONS(3071), - [anon_sym___clrcall] = ACTIONS(3071), - [anon_sym___stdcall] = ACTIONS(3071), - [anon_sym___fastcall] = ACTIONS(3071), - [anon_sym___thiscall] = ACTIONS(3071), - [anon_sym___vectorcall] = ACTIONS(3071), - [anon_sym_LBRACE] = ACTIONS(3073), - [anon_sym_signed] = ACTIONS(3071), - [anon_sym_unsigned] = ACTIONS(3071), - [anon_sym_long] = ACTIONS(3071), - [anon_sym_short] = ACTIONS(3071), - [anon_sym_LBRACK] = ACTIONS(3071), - [anon_sym_static] = ACTIONS(3071), - [anon_sym_register] = ACTIONS(3071), - [anon_sym_inline] = ACTIONS(3071), - [anon_sym___inline] = ACTIONS(3071), - [anon_sym___inline__] = ACTIONS(3071), - [anon_sym___forceinline] = ACTIONS(3071), - [anon_sym_thread_local] = ACTIONS(3071), - [anon_sym___thread] = ACTIONS(3071), - [anon_sym_const] = ACTIONS(3071), - [anon_sym_constexpr] = ACTIONS(3071), - [anon_sym_volatile] = ACTIONS(3071), - [anon_sym_restrict] = ACTIONS(3071), - [anon_sym___restrict__] = ACTIONS(3071), - [anon_sym__Atomic] = ACTIONS(3071), - [anon_sym__Noreturn] = ACTIONS(3071), - [anon_sym_noreturn] = ACTIONS(3071), - [anon_sym__Nonnull] = ACTIONS(3071), - [anon_sym_mutable] = ACTIONS(3071), - [anon_sym_constinit] = ACTIONS(3071), - [anon_sym_consteval] = ACTIONS(3071), - [anon_sym_alignas] = ACTIONS(3071), - [anon_sym__Alignas] = ACTIONS(3071), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(3071), - [anon_sym_class] = ACTIONS(3071), - [anon_sym_struct] = ACTIONS(3071), - [anon_sym_union] = ACTIONS(3071), - [anon_sym_if] = ACTIONS(3071), - [anon_sym_switch] = ACTIONS(3071), - [anon_sym_case] = ACTIONS(3071), - [anon_sym_default] = ACTIONS(3071), - [anon_sym_while] = ACTIONS(3071), - [anon_sym_do] = ACTIONS(3071), - [anon_sym_for] = ACTIONS(3071), - [anon_sym_return] = ACTIONS(3071), - [anon_sym_break] = ACTIONS(3071), - [anon_sym_continue] = ACTIONS(3071), - [anon_sym_goto] = ACTIONS(3071), - [anon_sym_not] = ACTIONS(3071), - [anon_sym_compl] = ACTIONS(3071), - [anon_sym_DASH_DASH] = ACTIONS(3073), - [anon_sym_PLUS_PLUS] = ACTIONS(3073), - [anon_sym_sizeof] = ACTIONS(3071), - [anon_sym___alignof__] = ACTIONS(3071), - [anon_sym___alignof] = ACTIONS(3071), - [anon_sym__alignof] = ACTIONS(3071), - [anon_sym_alignof] = ACTIONS(3071), - [anon_sym__Alignof] = ACTIONS(3071), - [anon_sym_offsetof] = ACTIONS(3071), - [anon_sym__Generic] = ACTIONS(3071), - [anon_sym_asm] = ACTIONS(3071), - [anon_sym___asm__] = ACTIONS(3071), - [anon_sym___asm] = ACTIONS(3071), - [sym_number_literal] = ACTIONS(3073), - [anon_sym_L_SQUOTE] = ACTIONS(3073), - [anon_sym_u_SQUOTE] = ACTIONS(3073), - [anon_sym_U_SQUOTE] = ACTIONS(3073), - [anon_sym_u8_SQUOTE] = ACTIONS(3073), - [anon_sym_SQUOTE] = ACTIONS(3073), - [anon_sym_L_DQUOTE] = ACTIONS(3073), - [anon_sym_u_DQUOTE] = ACTIONS(3073), - [anon_sym_U_DQUOTE] = ACTIONS(3073), - [anon_sym_u8_DQUOTE] = ACTIONS(3073), - [anon_sym_DQUOTE] = ACTIONS(3073), - [sym_true] = ACTIONS(3071), - [sym_false] = ACTIONS(3071), - [anon_sym_NULL] = ACTIONS(3071), - [anon_sym_nullptr] = ACTIONS(3071), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3071), - [anon_sym_decltype] = ACTIONS(3071), - [anon_sym_explicit] = ACTIONS(3071), - [anon_sym_typename] = ACTIONS(3071), - [anon_sym_export] = ACTIONS(3071), - [anon_sym_module] = ACTIONS(3071), - [anon_sym_import] = ACTIONS(3071), - [anon_sym_template] = ACTIONS(3071), - [anon_sym_operator] = ACTIONS(3071), - [anon_sym_try] = ACTIONS(3071), - [anon_sym_delete] = ACTIONS(3071), - [anon_sym_throw] = ACTIONS(3071), - [anon_sym_namespace] = ACTIONS(3071), - [anon_sym_static_assert] = ACTIONS(3071), - [anon_sym_concept] = ACTIONS(3071), - [anon_sym_co_return] = ACTIONS(3071), - [anon_sym_co_yield] = ACTIONS(3071), - [anon_sym_R_DQUOTE] = ACTIONS(3073), - [anon_sym_LR_DQUOTE] = ACTIONS(3073), - [anon_sym_uR_DQUOTE] = ACTIONS(3073), - [anon_sym_UR_DQUOTE] = ACTIONS(3073), - [anon_sym_u8R_DQUOTE] = ACTIONS(3073), - [anon_sym_co_await] = ACTIONS(3071), - [anon_sym_new] = ACTIONS(3071), - [anon_sym_requires] = ACTIONS(3071), - [sym_this] = ACTIONS(3071), + [529] = { + [sym_identifier] = ACTIONS(2747), + [aux_sym_preproc_include_token1] = ACTIONS(2747), + [aux_sym_preproc_def_token1] = ACTIONS(2747), + [aux_sym_preproc_if_token1] = ACTIONS(2747), + [aux_sym_preproc_if_token2] = ACTIONS(2747), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2747), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2747), + [sym_preproc_directive] = ACTIONS(2747), + [anon_sym_LPAREN2] = ACTIONS(2749), + [anon_sym_BANG] = ACTIONS(2749), + [anon_sym_TILDE] = ACTIONS(2749), + [anon_sym_DASH] = ACTIONS(2747), + [anon_sym_PLUS] = ACTIONS(2747), + [anon_sym_STAR] = ACTIONS(2749), + [anon_sym_AMP_AMP] = ACTIONS(2749), + [anon_sym_AMP] = ACTIONS(2747), + [anon_sym_SEMI] = ACTIONS(2749), + [anon_sym___extension__] = ACTIONS(2747), + [anon_sym_typedef] = ACTIONS(2747), + [anon_sym_virtual] = ACTIONS(2747), + [anon_sym_extern] = ACTIONS(2747), + [anon_sym___attribute__] = ACTIONS(2747), + [anon_sym___attribute] = ACTIONS(2747), + [anon_sym_using] = ACTIONS(2747), + [anon_sym_COLON_COLON] = ACTIONS(2749), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2749), + [anon_sym___declspec] = ACTIONS(2747), + [anon_sym___based] = ACTIONS(2747), + [anon_sym___cdecl] = ACTIONS(2747), + [anon_sym___clrcall] = ACTIONS(2747), + [anon_sym___stdcall] = ACTIONS(2747), + [anon_sym___fastcall] = ACTIONS(2747), + [anon_sym___thiscall] = ACTIONS(2747), + [anon_sym___vectorcall] = ACTIONS(2747), + [anon_sym_LBRACE] = ACTIONS(2749), + [anon_sym_signed] = ACTIONS(2747), + [anon_sym_unsigned] = ACTIONS(2747), + [anon_sym_long] = ACTIONS(2747), + [anon_sym_short] = ACTIONS(2747), + [anon_sym_LBRACK] = ACTIONS(2747), + [anon_sym_static] = ACTIONS(2747), + [anon_sym_register] = ACTIONS(2747), + [anon_sym_inline] = ACTIONS(2747), + [anon_sym___inline] = ACTIONS(2747), + [anon_sym___inline__] = ACTIONS(2747), + [anon_sym___forceinline] = ACTIONS(2747), + [anon_sym_thread_local] = ACTIONS(2747), + [anon_sym___thread] = ACTIONS(2747), + [anon_sym_const] = ACTIONS(2747), + [anon_sym_constexpr] = ACTIONS(2747), + [anon_sym_volatile] = ACTIONS(2747), + [anon_sym_restrict] = ACTIONS(2747), + [anon_sym___restrict__] = ACTIONS(2747), + [anon_sym__Atomic] = ACTIONS(2747), + [anon_sym__Noreturn] = ACTIONS(2747), + [anon_sym_noreturn] = ACTIONS(2747), + [anon_sym__Nonnull] = ACTIONS(2747), + [anon_sym_mutable] = ACTIONS(2747), + [anon_sym_constinit] = ACTIONS(2747), + [anon_sym_consteval] = ACTIONS(2747), + [anon_sym_alignas] = ACTIONS(2747), + [anon_sym__Alignas] = ACTIONS(2747), + [sym_primitive_type] = ACTIONS(2747), + [anon_sym_enum] = ACTIONS(2747), + [anon_sym_class] = ACTIONS(2747), + [anon_sym_struct] = ACTIONS(2747), + [anon_sym_union] = ACTIONS(2747), + [anon_sym_if] = ACTIONS(2747), + [anon_sym_else] = ACTIONS(2747), + [anon_sym_switch] = ACTIONS(2747), + [anon_sym_case] = ACTIONS(2747), + [anon_sym_default] = ACTIONS(2747), + [anon_sym_while] = ACTIONS(2747), + [anon_sym_do] = ACTIONS(2747), + [anon_sym_for] = ACTIONS(2747), + [anon_sym_return] = ACTIONS(2747), + [anon_sym_break] = ACTIONS(2747), + [anon_sym_continue] = ACTIONS(2747), + [anon_sym_goto] = ACTIONS(2747), + [anon_sym___try] = ACTIONS(2747), + [anon_sym___leave] = ACTIONS(2747), + [anon_sym_not] = ACTIONS(2747), + [anon_sym_compl] = ACTIONS(2747), + [anon_sym_DASH_DASH] = ACTIONS(2749), + [anon_sym_PLUS_PLUS] = ACTIONS(2749), + [anon_sym_sizeof] = ACTIONS(2747), + [anon_sym___alignof__] = ACTIONS(2747), + [anon_sym___alignof] = ACTIONS(2747), + [anon_sym__alignof] = ACTIONS(2747), + [anon_sym_alignof] = ACTIONS(2747), + [anon_sym__Alignof] = ACTIONS(2747), + [anon_sym_offsetof] = ACTIONS(2747), + [anon_sym__Generic] = ACTIONS(2747), + [anon_sym_asm] = ACTIONS(2747), + [anon_sym___asm__] = ACTIONS(2747), + [anon_sym___asm] = ACTIONS(2747), + [sym_number_literal] = ACTIONS(2749), + [anon_sym_L_SQUOTE] = ACTIONS(2749), + [anon_sym_u_SQUOTE] = ACTIONS(2749), + [anon_sym_U_SQUOTE] = ACTIONS(2749), + [anon_sym_u8_SQUOTE] = ACTIONS(2749), + [anon_sym_SQUOTE] = ACTIONS(2749), + [anon_sym_L_DQUOTE] = ACTIONS(2749), + [anon_sym_u_DQUOTE] = ACTIONS(2749), + [anon_sym_U_DQUOTE] = ACTIONS(2749), + [anon_sym_u8_DQUOTE] = ACTIONS(2749), + [anon_sym_DQUOTE] = ACTIONS(2749), + [sym_true] = ACTIONS(2747), + [sym_false] = ACTIONS(2747), + [anon_sym_NULL] = ACTIONS(2747), + [anon_sym_nullptr] = ACTIONS(2747), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2747), + [anon_sym_decltype] = ACTIONS(2747), + [anon_sym_explicit] = ACTIONS(2747), + [anon_sym_typename] = ACTIONS(2747), + [anon_sym_template] = ACTIONS(2747), + [anon_sym_operator] = ACTIONS(2747), + [anon_sym_try] = ACTIONS(2747), + [anon_sym_delete] = ACTIONS(2747), + [anon_sym_throw] = ACTIONS(2747), + [anon_sym_namespace] = ACTIONS(2747), + [anon_sym_static_assert] = ACTIONS(2747), + [anon_sym_concept] = ACTIONS(2747), + [anon_sym_co_return] = ACTIONS(2747), + [anon_sym_co_yield] = ACTIONS(2747), + [anon_sym_R_DQUOTE] = ACTIONS(2749), + [anon_sym_LR_DQUOTE] = ACTIONS(2749), + [anon_sym_uR_DQUOTE] = ACTIONS(2749), + [anon_sym_UR_DQUOTE] = ACTIONS(2749), + [anon_sym_u8R_DQUOTE] = ACTIONS(2749), + [anon_sym_co_await] = ACTIONS(2747), + [anon_sym_new] = ACTIONS(2747), + [anon_sym_requires] = ACTIONS(2747), + [sym_this] = ACTIONS(2747), }, - [522] = { + [530] = { [ts_builtin_sym_end] = ACTIONS(3077), [sym_identifier] = ACTIONS(3075), [aux_sym_preproc_include_token1] = ACTIONS(3075), @@ -118075,418 +119482,281 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(3075), [sym_this] = ACTIONS(3075), }, - [523] = { - [ts_builtin_sym_end] = ACTIONS(2857), - [sym_identifier] = ACTIONS(2855), - [aux_sym_preproc_include_token1] = ACTIONS(2855), - [aux_sym_preproc_def_token1] = ACTIONS(2855), - [aux_sym_preproc_if_token1] = ACTIONS(2855), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2855), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2855), - [sym_preproc_directive] = ACTIONS(2855), - [anon_sym_LPAREN2] = ACTIONS(2857), - [anon_sym_BANG] = ACTIONS(2857), - [anon_sym_TILDE] = ACTIONS(2857), - [anon_sym_DASH] = ACTIONS(2855), - [anon_sym_PLUS] = ACTIONS(2855), - [anon_sym_STAR] = ACTIONS(2857), - [anon_sym_AMP_AMP] = ACTIONS(2857), - [anon_sym_AMP] = ACTIONS(2855), - [anon_sym_SEMI] = ACTIONS(2857), - [anon_sym___extension__] = ACTIONS(2855), - [anon_sym_typedef] = ACTIONS(2855), - [anon_sym_virtual] = ACTIONS(2855), - [anon_sym_extern] = ACTIONS(2855), - [anon_sym___attribute__] = ACTIONS(2855), - [anon_sym___attribute] = ACTIONS(2855), - [anon_sym_using] = ACTIONS(2855), - [anon_sym_COLON_COLON] = ACTIONS(2857), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2857), - [anon_sym___declspec] = ACTIONS(2855), - [anon_sym___based] = ACTIONS(2855), - [anon_sym___cdecl] = ACTIONS(2855), - [anon_sym___clrcall] = ACTIONS(2855), - [anon_sym___stdcall] = ACTIONS(2855), - [anon_sym___fastcall] = ACTIONS(2855), - [anon_sym___thiscall] = ACTIONS(2855), - [anon_sym___vectorcall] = ACTIONS(2855), - [anon_sym_LBRACE] = ACTIONS(2857), - [anon_sym_signed] = ACTIONS(2855), - [anon_sym_unsigned] = ACTIONS(2855), - [anon_sym_long] = ACTIONS(2855), - [anon_sym_short] = ACTIONS(2855), - [anon_sym_LBRACK] = ACTIONS(2855), - [anon_sym_static] = ACTIONS(2855), - [anon_sym_register] = ACTIONS(2855), - [anon_sym_inline] = ACTIONS(2855), - [anon_sym___inline] = ACTIONS(2855), - [anon_sym___inline__] = ACTIONS(2855), - [anon_sym___forceinline] = ACTIONS(2855), - [anon_sym_thread_local] = ACTIONS(2855), - [anon_sym___thread] = ACTIONS(2855), - [anon_sym_const] = ACTIONS(2855), - [anon_sym_constexpr] = ACTIONS(2855), - [anon_sym_volatile] = ACTIONS(2855), - [anon_sym_restrict] = ACTIONS(2855), - [anon_sym___restrict__] = ACTIONS(2855), - [anon_sym__Atomic] = ACTIONS(2855), - [anon_sym__Noreturn] = ACTIONS(2855), - [anon_sym_noreturn] = ACTIONS(2855), - [anon_sym__Nonnull] = ACTIONS(2855), - [anon_sym_mutable] = ACTIONS(2855), - [anon_sym_constinit] = ACTIONS(2855), - [anon_sym_consteval] = ACTIONS(2855), - [anon_sym_alignas] = ACTIONS(2855), - [anon_sym__Alignas] = ACTIONS(2855), - [sym_primitive_type] = ACTIONS(2855), - [anon_sym_enum] = ACTIONS(2855), - [anon_sym_class] = ACTIONS(2855), - [anon_sym_struct] = ACTIONS(2855), - [anon_sym_union] = ACTIONS(2855), - [anon_sym_if] = ACTIONS(2855), - [anon_sym_switch] = ACTIONS(2855), - [anon_sym_case] = ACTIONS(2855), - [anon_sym_default] = ACTIONS(2855), - [anon_sym_while] = ACTIONS(2855), - [anon_sym_do] = ACTIONS(2855), - [anon_sym_for] = ACTIONS(2855), - [anon_sym_return] = ACTIONS(2855), - [anon_sym_break] = ACTIONS(2855), - [anon_sym_continue] = ACTIONS(2855), - [anon_sym_goto] = ACTIONS(2855), - [anon_sym_not] = ACTIONS(2855), - [anon_sym_compl] = ACTIONS(2855), - [anon_sym_DASH_DASH] = ACTIONS(2857), - [anon_sym_PLUS_PLUS] = ACTIONS(2857), - [anon_sym_sizeof] = ACTIONS(2855), - [anon_sym___alignof__] = ACTIONS(2855), - [anon_sym___alignof] = ACTIONS(2855), - [anon_sym__alignof] = ACTIONS(2855), - [anon_sym_alignof] = ACTIONS(2855), - [anon_sym__Alignof] = ACTIONS(2855), - [anon_sym_offsetof] = ACTIONS(2855), - [anon_sym__Generic] = ACTIONS(2855), - [anon_sym_asm] = ACTIONS(2855), - [anon_sym___asm__] = ACTIONS(2855), - [anon_sym___asm] = ACTIONS(2855), - [sym_number_literal] = ACTIONS(2857), - [anon_sym_L_SQUOTE] = ACTIONS(2857), - [anon_sym_u_SQUOTE] = ACTIONS(2857), - [anon_sym_U_SQUOTE] = ACTIONS(2857), - [anon_sym_u8_SQUOTE] = ACTIONS(2857), - [anon_sym_SQUOTE] = ACTIONS(2857), - [anon_sym_L_DQUOTE] = ACTIONS(2857), - [anon_sym_u_DQUOTE] = ACTIONS(2857), - [anon_sym_U_DQUOTE] = ACTIONS(2857), - [anon_sym_u8_DQUOTE] = ACTIONS(2857), - [anon_sym_DQUOTE] = ACTIONS(2857), - [sym_true] = ACTIONS(2855), - [sym_false] = ACTIONS(2855), - [anon_sym_NULL] = ACTIONS(2855), - [anon_sym_nullptr] = ACTIONS(2855), + [531] = { + [ts_builtin_sym_end] = ACTIONS(3077), + [sym_identifier] = ACTIONS(3075), + [aux_sym_preproc_include_token1] = ACTIONS(3075), + [aux_sym_preproc_def_token1] = ACTIONS(3075), + [aux_sym_preproc_if_token1] = ACTIONS(3075), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3075), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3075), + [sym_preproc_directive] = ACTIONS(3075), + [anon_sym_LPAREN2] = ACTIONS(3077), + [anon_sym_BANG] = ACTIONS(3077), + [anon_sym_TILDE] = ACTIONS(3077), + [anon_sym_DASH] = ACTIONS(3075), + [anon_sym_PLUS] = ACTIONS(3075), + [anon_sym_STAR] = ACTIONS(3077), + [anon_sym_AMP_AMP] = ACTIONS(3077), + [anon_sym_AMP] = ACTIONS(3075), + [anon_sym_SEMI] = ACTIONS(3077), + [anon_sym___extension__] = ACTIONS(3075), + [anon_sym_typedef] = ACTIONS(3075), + [anon_sym_virtual] = ACTIONS(3075), + [anon_sym_extern] = ACTIONS(3075), + [anon_sym___attribute__] = ACTIONS(3075), + [anon_sym___attribute] = ACTIONS(3075), + [anon_sym_using] = ACTIONS(3075), + [anon_sym_COLON_COLON] = ACTIONS(3077), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3077), + [anon_sym___declspec] = ACTIONS(3075), + [anon_sym___based] = ACTIONS(3075), + [anon_sym___cdecl] = ACTIONS(3075), + [anon_sym___clrcall] = ACTIONS(3075), + [anon_sym___stdcall] = ACTIONS(3075), + [anon_sym___fastcall] = ACTIONS(3075), + [anon_sym___thiscall] = ACTIONS(3075), + [anon_sym___vectorcall] = ACTIONS(3075), + [anon_sym_LBRACE] = ACTIONS(3077), + [anon_sym_signed] = ACTIONS(3075), + [anon_sym_unsigned] = ACTIONS(3075), + [anon_sym_long] = ACTIONS(3075), + [anon_sym_short] = ACTIONS(3075), + [anon_sym_LBRACK] = ACTIONS(3075), + [anon_sym_static] = ACTIONS(3075), + [anon_sym_register] = ACTIONS(3075), + [anon_sym_inline] = ACTIONS(3075), + [anon_sym___inline] = ACTIONS(3075), + [anon_sym___inline__] = ACTIONS(3075), + [anon_sym___forceinline] = ACTIONS(3075), + [anon_sym_thread_local] = ACTIONS(3075), + [anon_sym___thread] = ACTIONS(3075), + [anon_sym_const] = ACTIONS(3075), + [anon_sym_constexpr] = ACTIONS(3075), + [anon_sym_volatile] = ACTIONS(3075), + [anon_sym_restrict] = ACTIONS(3075), + [anon_sym___restrict__] = ACTIONS(3075), + [anon_sym__Atomic] = ACTIONS(3075), + [anon_sym__Noreturn] = ACTIONS(3075), + [anon_sym_noreturn] = ACTIONS(3075), + [anon_sym__Nonnull] = ACTIONS(3075), + [anon_sym_mutable] = ACTIONS(3075), + [anon_sym_constinit] = ACTIONS(3075), + [anon_sym_consteval] = ACTIONS(3075), + [anon_sym_alignas] = ACTIONS(3075), + [anon_sym__Alignas] = ACTIONS(3075), + [sym_primitive_type] = ACTIONS(3075), + [anon_sym_enum] = ACTIONS(3075), + [anon_sym_class] = ACTIONS(3075), + [anon_sym_struct] = ACTIONS(3075), + [anon_sym_union] = ACTIONS(3075), + [anon_sym_if] = ACTIONS(3075), + [anon_sym_switch] = ACTIONS(3075), + [anon_sym_case] = ACTIONS(3075), + [anon_sym_default] = ACTIONS(3075), + [anon_sym_while] = ACTIONS(3075), + [anon_sym_do] = ACTIONS(3075), + [anon_sym_for] = ACTIONS(3075), + [anon_sym_return] = ACTIONS(3075), + [anon_sym_break] = ACTIONS(3075), + [anon_sym_continue] = ACTIONS(3075), + [anon_sym_goto] = ACTIONS(3075), + [anon_sym_not] = ACTIONS(3075), + [anon_sym_compl] = ACTIONS(3075), + [anon_sym_DASH_DASH] = ACTIONS(3077), + [anon_sym_PLUS_PLUS] = ACTIONS(3077), + [anon_sym_sizeof] = ACTIONS(3075), + [anon_sym___alignof__] = ACTIONS(3075), + [anon_sym___alignof] = ACTIONS(3075), + [anon_sym__alignof] = ACTIONS(3075), + [anon_sym_alignof] = ACTIONS(3075), + [anon_sym__Alignof] = ACTIONS(3075), + [anon_sym_offsetof] = ACTIONS(3075), + [anon_sym__Generic] = ACTIONS(3075), + [anon_sym_asm] = ACTIONS(3075), + [anon_sym___asm__] = ACTIONS(3075), + [anon_sym___asm] = ACTIONS(3075), + [sym_number_literal] = ACTIONS(3077), + [anon_sym_L_SQUOTE] = ACTIONS(3077), + [anon_sym_u_SQUOTE] = ACTIONS(3077), + [anon_sym_U_SQUOTE] = ACTIONS(3077), + [anon_sym_u8_SQUOTE] = ACTIONS(3077), + [anon_sym_SQUOTE] = ACTIONS(3077), + [anon_sym_L_DQUOTE] = ACTIONS(3077), + [anon_sym_u_DQUOTE] = ACTIONS(3077), + [anon_sym_U_DQUOTE] = ACTIONS(3077), + [anon_sym_u8_DQUOTE] = ACTIONS(3077), + [anon_sym_DQUOTE] = ACTIONS(3077), + [sym_true] = ACTIONS(3075), + [sym_false] = ACTIONS(3075), + [anon_sym_NULL] = ACTIONS(3075), + [anon_sym_nullptr] = ACTIONS(3075), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2855), - [anon_sym_decltype] = ACTIONS(2855), - [anon_sym_explicit] = ACTIONS(2855), - [anon_sym_typename] = ACTIONS(2855), - [anon_sym_export] = ACTIONS(2855), - [anon_sym_module] = ACTIONS(2855), - [anon_sym_import] = ACTIONS(2855), - [anon_sym_template] = ACTIONS(2855), - [anon_sym_operator] = ACTIONS(2855), - [anon_sym_try] = ACTIONS(2855), - [anon_sym_delete] = ACTIONS(2855), - [anon_sym_throw] = ACTIONS(2855), - [anon_sym_namespace] = ACTIONS(2855), - [anon_sym_static_assert] = ACTIONS(2855), - [anon_sym_concept] = ACTIONS(2855), - [anon_sym_co_return] = ACTIONS(2855), - [anon_sym_co_yield] = ACTIONS(2855), - [anon_sym_R_DQUOTE] = ACTIONS(2857), - [anon_sym_LR_DQUOTE] = ACTIONS(2857), - [anon_sym_uR_DQUOTE] = ACTIONS(2857), - [anon_sym_UR_DQUOTE] = ACTIONS(2857), - [anon_sym_u8R_DQUOTE] = ACTIONS(2857), - [anon_sym_co_await] = ACTIONS(2855), - [anon_sym_new] = ACTIONS(2855), - [anon_sym_requires] = ACTIONS(2855), - [sym_this] = ACTIONS(2855), - }, - [524] = { - [sym_identifier] = ACTIONS(2673), - [aux_sym_preproc_include_token1] = ACTIONS(2673), - [aux_sym_preproc_def_token1] = ACTIONS(2673), - [aux_sym_preproc_if_token1] = ACTIONS(2673), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2673), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2673), - [sym_preproc_directive] = ACTIONS(2673), - [anon_sym_LPAREN2] = ACTIONS(2675), - [anon_sym_BANG] = ACTIONS(2675), - [anon_sym_TILDE] = ACTIONS(2675), - [anon_sym_DASH] = ACTIONS(2673), - [anon_sym_PLUS] = ACTIONS(2673), - [anon_sym_STAR] = ACTIONS(2675), - [anon_sym_AMP_AMP] = ACTIONS(2675), - [anon_sym_AMP] = ACTIONS(2673), - [anon_sym_SEMI] = ACTIONS(2675), - [anon_sym___extension__] = ACTIONS(2673), - [anon_sym_typedef] = ACTIONS(2673), - [anon_sym_virtual] = ACTIONS(2673), - [anon_sym_extern] = ACTIONS(2673), - [anon_sym___attribute__] = ACTIONS(2673), - [anon_sym___attribute] = ACTIONS(2673), - [anon_sym_using] = ACTIONS(2673), - [anon_sym_COLON_COLON] = ACTIONS(2675), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2675), - [anon_sym___declspec] = ACTIONS(2673), - [anon_sym___based] = ACTIONS(2673), - [anon_sym___cdecl] = ACTIONS(2673), - [anon_sym___clrcall] = ACTIONS(2673), - [anon_sym___stdcall] = ACTIONS(2673), - [anon_sym___fastcall] = ACTIONS(2673), - [anon_sym___thiscall] = ACTIONS(2673), - [anon_sym___vectorcall] = ACTIONS(2673), - [anon_sym_LBRACE] = ACTIONS(2675), - [anon_sym_RBRACE] = ACTIONS(2675), - [anon_sym_signed] = ACTIONS(2673), - [anon_sym_unsigned] = ACTIONS(2673), - [anon_sym_long] = ACTIONS(2673), - [anon_sym_short] = ACTIONS(2673), - [anon_sym_LBRACK] = ACTIONS(2673), - [anon_sym_static] = ACTIONS(2673), - [anon_sym_register] = ACTIONS(2673), - [anon_sym_inline] = ACTIONS(2673), - [anon_sym___inline] = ACTIONS(2673), - [anon_sym___inline__] = ACTIONS(2673), - [anon_sym___forceinline] = ACTIONS(2673), - [anon_sym_thread_local] = ACTIONS(2673), - [anon_sym___thread] = ACTIONS(2673), - [anon_sym_const] = ACTIONS(2673), - [anon_sym_constexpr] = ACTIONS(2673), - [anon_sym_volatile] = ACTIONS(2673), - [anon_sym_restrict] = ACTIONS(2673), - [anon_sym___restrict__] = ACTIONS(2673), - [anon_sym__Atomic] = ACTIONS(2673), - [anon_sym__Noreturn] = ACTIONS(2673), - [anon_sym_noreturn] = ACTIONS(2673), - [anon_sym__Nonnull] = ACTIONS(2673), - [anon_sym_mutable] = ACTIONS(2673), - [anon_sym_constinit] = ACTIONS(2673), - [anon_sym_consteval] = ACTIONS(2673), - [anon_sym_alignas] = ACTIONS(2673), - [anon_sym__Alignas] = ACTIONS(2673), - [sym_primitive_type] = ACTIONS(2673), - [anon_sym_enum] = ACTIONS(2673), - [anon_sym_class] = ACTIONS(2673), - [anon_sym_struct] = ACTIONS(2673), - [anon_sym_union] = ACTIONS(2673), - [anon_sym_if] = ACTIONS(2673), - [anon_sym_else] = ACTIONS(2673), - [anon_sym_switch] = ACTIONS(2673), - [anon_sym_case] = ACTIONS(2673), - [anon_sym_default] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2673), - [anon_sym_do] = ACTIONS(2673), - [anon_sym_for] = ACTIONS(2673), - [anon_sym_return] = ACTIONS(2673), - [anon_sym_break] = ACTIONS(2673), - [anon_sym_continue] = ACTIONS(2673), - [anon_sym_goto] = ACTIONS(2673), - [anon_sym___try] = ACTIONS(2673), - [anon_sym___leave] = ACTIONS(2673), - [anon_sym_not] = ACTIONS(2673), - [anon_sym_compl] = ACTIONS(2673), - [anon_sym_DASH_DASH] = ACTIONS(2675), - [anon_sym_PLUS_PLUS] = ACTIONS(2675), - [anon_sym_sizeof] = ACTIONS(2673), - [anon_sym___alignof__] = ACTIONS(2673), - [anon_sym___alignof] = ACTIONS(2673), - [anon_sym__alignof] = ACTIONS(2673), - [anon_sym_alignof] = ACTIONS(2673), - [anon_sym__Alignof] = ACTIONS(2673), - [anon_sym_offsetof] = ACTIONS(2673), - [anon_sym__Generic] = ACTIONS(2673), - [anon_sym_asm] = ACTIONS(2673), - [anon_sym___asm__] = ACTIONS(2673), - [anon_sym___asm] = ACTIONS(2673), - [sym_number_literal] = ACTIONS(2675), - [anon_sym_L_SQUOTE] = ACTIONS(2675), - [anon_sym_u_SQUOTE] = ACTIONS(2675), - [anon_sym_U_SQUOTE] = ACTIONS(2675), - [anon_sym_u8_SQUOTE] = ACTIONS(2675), - [anon_sym_SQUOTE] = ACTIONS(2675), - [anon_sym_L_DQUOTE] = ACTIONS(2675), - [anon_sym_u_DQUOTE] = ACTIONS(2675), - [anon_sym_U_DQUOTE] = ACTIONS(2675), - [anon_sym_u8_DQUOTE] = ACTIONS(2675), - [anon_sym_DQUOTE] = ACTIONS(2675), - [sym_true] = ACTIONS(2673), - [sym_false] = ACTIONS(2673), - [anon_sym_NULL] = ACTIONS(2673), - [anon_sym_nullptr] = ACTIONS(2673), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2673), - [anon_sym_decltype] = ACTIONS(2673), - [anon_sym_explicit] = ACTIONS(2673), - [anon_sym_typename] = ACTIONS(2673), - [anon_sym_template] = ACTIONS(2673), - [anon_sym_operator] = ACTIONS(2673), - [anon_sym_try] = ACTIONS(2673), - [anon_sym_delete] = ACTIONS(2673), - [anon_sym_throw] = ACTIONS(2673), - [anon_sym_namespace] = ACTIONS(2673), - [anon_sym_static_assert] = ACTIONS(2673), - [anon_sym_concept] = ACTIONS(2673), - [anon_sym_co_return] = ACTIONS(2673), - [anon_sym_co_yield] = ACTIONS(2673), - [anon_sym_R_DQUOTE] = ACTIONS(2675), - [anon_sym_LR_DQUOTE] = ACTIONS(2675), - [anon_sym_uR_DQUOTE] = ACTIONS(2675), - [anon_sym_UR_DQUOTE] = ACTIONS(2675), - [anon_sym_u8R_DQUOTE] = ACTIONS(2675), - [anon_sym_co_await] = ACTIONS(2673), - [anon_sym_new] = ACTIONS(2673), - [anon_sym_requires] = ACTIONS(2673), - [sym_this] = ACTIONS(2673), + [sym_auto] = ACTIONS(3075), + [anon_sym_decltype] = ACTIONS(3075), + [anon_sym_explicit] = ACTIONS(3075), + [anon_sym_typename] = ACTIONS(3075), + [anon_sym_export] = ACTIONS(3075), + [anon_sym_module] = ACTIONS(3075), + [anon_sym_import] = ACTIONS(3075), + [anon_sym_template] = ACTIONS(3075), + [anon_sym_operator] = ACTIONS(3075), + [anon_sym_try] = ACTIONS(3075), + [anon_sym_delete] = ACTIONS(3075), + [anon_sym_throw] = ACTIONS(3075), + [anon_sym_namespace] = ACTIONS(3075), + [anon_sym_static_assert] = ACTIONS(3075), + [anon_sym_concept] = ACTIONS(3075), + [anon_sym_co_return] = ACTIONS(3075), + [anon_sym_co_yield] = ACTIONS(3075), + [anon_sym_R_DQUOTE] = ACTIONS(3077), + [anon_sym_LR_DQUOTE] = ACTIONS(3077), + [anon_sym_uR_DQUOTE] = ACTIONS(3077), + [anon_sym_UR_DQUOTE] = ACTIONS(3077), + [anon_sym_u8R_DQUOTE] = ACTIONS(3077), + [anon_sym_co_await] = ACTIONS(3075), + [anon_sym_new] = ACTIONS(3075), + [anon_sym_requires] = ACTIONS(3075), + [sym_this] = ACTIONS(3075), }, - [525] = { - [sym_identifier] = ACTIONS(2703), - [aux_sym_preproc_include_token1] = ACTIONS(2703), - [aux_sym_preproc_def_token1] = ACTIONS(2703), - [aux_sym_preproc_if_token1] = ACTIONS(2703), - [aux_sym_preproc_if_token2] = ACTIONS(2703), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2703), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2703), - [sym_preproc_directive] = ACTIONS(2703), - [anon_sym_LPAREN2] = ACTIONS(2705), - [anon_sym_BANG] = ACTIONS(2705), - [anon_sym_TILDE] = ACTIONS(2705), - [anon_sym_DASH] = ACTIONS(2703), - [anon_sym_PLUS] = ACTIONS(2703), - [anon_sym_STAR] = ACTIONS(2705), - [anon_sym_AMP_AMP] = ACTIONS(2705), - [anon_sym_AMP] = ACTIONS(2703), - [anon_sym_SEMI] = ACTIONS(2705), - [anon_sym___extension__] = ACTIONS(2703), - [anon_sym_typedef] = ACTIONS(2703), - [anon_sym_virtual] = ACTIONS(2703), - [anon_sym_extern] = ACTIONS(2703), - [anon_sym___attribute__] = ACTIONS(2703), - [anon_sym___attribute] = ACTIONS(2703), - [anon_sym_using] = ACTIONS(2703), - [anon_sym_COLON_COLON] = ACTIONS(2705), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2705), - [anon_sym___declspec] = ACTIONS(2703), - [anon_sym___based] = ACTIONS(2703), - [anon_sym___cdecl] = ACTIONS(2703), - [anon_sym___clrcall] = ACTIONS(2703), - [anon_sym___stdcall] = ACTIONS(2703), - [anon_sym___fastcall] = ACTIONS(2703), - [anon_sym___thiscall] = ACTIONS(2703), - [anon_sym___vectorcall] = ACTIONS(2703), - [anon_sym_LBRACE] = ACTIONS(2705), - [anon_sym_signed] = ACTIONS(2703), - [anon_sym_unsigned] = ACTIONS(2703), - [anon_sym_long] = ACTIONS(2703), - [anon_sym_short] = ACTIONS(2703), - [anon_sym_LBRACK] = ACTIONS(2703), - [anon_sym_static] = ACTIONS(2703), - [anon_sym_register] = ACTIONS(2703), - [anon_sym_inline] = ACTIONS(2703), - [anon_sym___inline] = ACTIONS(2703), - [anon_sym___inline__] = ACTIONS(2703), - [anon_sym___forceinline] = ACTIONS(2703), - [anon_sym_thread_local] = ACTIONS(2703), - [anon_sym___thread] = ACTIONS(2703), - [anon_sym_const] = ACTIONS(2703), - [anon_sym_constexpr] = ACTIONS(2703), - [anon_sym_volatile] = ACTIONS(2703), - [anon_sym_restrict] = ACTIONS(2703), - [anon_sym___restrict__] = ACTIONS(2703), - [anon_sym__Atomic] = ACTIONS(2703), - [anon_sym__Noreturn] = ACTIONS(2703), - [anon_sym_noreturn] = ACTIONS(2703), - [anon_sym__Nonnull] = ACTIONS(2703), - [anon_sym_mutable] = ACTIONS(2703), - [anon_sym_constinit] = ACTIONS(2703), - [anon_sym_consteval] = ACTIONS(2703), - [anon_sym_alignas] = ACTIONS(2703), - [anon_sym__Alignas] = ACTIONS(2703), - [sym_primitive_type] = ACTIONS(2703), - [anon_sym_enum] = ACTIONS(2703), - [anon_sym_class] = ACTIONS(2703), - [anon_sym_struct] = ACTIONS(2703), - [anon_sym_union] = ACTIONS(2703), - [anon_sym_if] = ACTIONS(2703), - [anon_sym_else] = ACTIONS(2703), - [anon_sym_switch] = ACTIONS(2703), - [anon_sym_case] = ACTIONS(2703), - [anon_sym_default] = ACTIONS(2703), - [anon_sym_while] = ACTIONS(2703), - [anon_sym_do] = ACTIONS(2703), - [anon_sym_for] = ACTIONS(2703), - [anon_sym_return] = ACTIONS(2703), - [anon_sym_break] = ACTIONS(2703), - [anon_sym_continue] = ACTIONS(2703), - [anon_sym_goto] = ACTIONS(2703), - [anon_sym___try] = ACTIONS(2703), - [anon_sym___leave] = ACTIONS(2703), - [anon_sym_not] = ACTIONS(2703), - [anon_sym_compl] = ACTIONS(2703), - [anon_sym_DASH_DASH] = ACTIONS(2705), - [anon_sym_PLUS_PLUS] = ACTIONS(2705), - [anon_sym_sizeof] = ACTIONS(2703), - [anon_sym___alignof__] = ACTIONS(2703), - [anon_sym___alignof] = ACTIONS(2703), - [anon_sym__alignof] = ACTIONS(2703), - [anon_sym_alignof] = ACTIONS(2703), - [anon_sym__Alignof] = ACTIONS(2703), - [anon_sym_offsetof] = ACTIONS(2703), - [anon_sym__Generic] = ACTIONS(2703), - [anon_sym_asm] = ACTIONS(2703), - [anon_sym___asm__] = ACTIONS(2703), - [anon_sym___asm] = ACTIONS(2703), - [sym_number_literal] = ACTIONS(2705), - [anon_sym_L_SQUOTE] = ACTIONS(2705), - [anon_sym_u_SQUOTE] = ACTIONS(2705), - [anon_sym_U_SQUOTE] = ACTIONS(2705), - [anon_sym_u8_SQUOTE] = ACTIONS(2705), - [anon_sym_SQUOTE] = ACTIONS(2705), - [anon_sym_L_DQUOTE] = ACTIONS(2705), - [anon_sym_u_DQUOTE] = ACTIONS(2705), - [anon_sym_U_DQUOTE] = ACTIONS(2705), - [anon_sym_u8_DQUOTE] = ACTIONS(2705), - [anon_sym_DQUOTE] = ACTIONS(2705), - [sym_true] = ACTIONS(2703), - [sym_false] = ACTIONS(2703), - [anon_sym_NULL] = ACTIONS(2703), - [anon_sym_nullptr] = ACTIONS(2703), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2703), - [anon_sym_decltype] = ACTIONS(2703), - [anon_sym_explicit] = ACTIONS(2703), - [anon_sym_typename] = ACTIONS(2703), - [anon_sym_template] = ACTIONS(2703), - [anon_sym_operator] = ACTIONS(2703), - [anon_sym_try] = ACTIONS(2703), - [anon_sym_delete] = ACTIONS(2703), - [anon_sym_throw] = ACTIONS(2703), - [anon_sym_namespace] = ACTIONS(2703), - [anon_sym_static_assert] = ACTIONS(2703), - [anon_sym_concept] = ACTIONS(2703), - [anon_sym_co_return] = ACTIONS(2703), - [anon_sym_co_yield] = ACTIONS(2703), - [anon_sym_R_DQUOTE] = ACTIONS(2705), - [anon_sym_LR_DQUOTE] = ACTIONS(2705), - [anon_sym_uR_DQUOTE] = ACTIONS(2705), - [anon_sym_UR_DQUOTE] = ACTIONS(2705), - [anon_sym_u8R_DQUOTE] = ACTIONS(2705), - [anon_sym_co_await] = ACTIONS(2703), - [anon_sym_new] = ACTIONS(2703), - [anon_sym_requires] = ACTIONS(2703), - [sym_this] = ACTIONS(2703), + [532] = { + [sym_identifier] = ACTIONS(2683), + [aux_sym_preproc_include_token1] = ACTIONS(2683), + [aux_sym_preproc_def_token1] = ACTIONS(2683), + [aux_sym_preproc_if_token1] = ACTIONS(2683), + [aux_sym_preproc_if_token2] = ACTIONS(2683), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2683), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2683), + [sym_preproc_directive] = ACTIONS(2683), + [anon_sym_LPAREN2] = ACTIONS(2685), + [anon_sym_BANG] = ACTIONS(2685), + [anon_sym_TILDE] = ACTIONS(2685), + [anon_sym_DASH] = ACTIONS(2683), + [anon_sym_PLUS] = ACTIONS(2683), + [anon_sym_STAR] = ACTIONS(2685), + [anon_sym_AMP_AMP] = ACTIONS(2685), + [anon_sym_AMP] = ACTIONS(2683), + [anon_sym_SEMI] = ACTIONS(2685), + [anon_sym___extension__] = ACTIONS(2683), + [anon_sym_typedef] = ACTIONS(2683), + [anon_sym_virtual] = ACTIONS(2683), + [anon_sym_extern] = ACTIONS(2683), + [anon_sym___attribute__] = ACTIONS(2683), + [anon_sym___attribute] = ACTIONS(2683), + [anon_sym_using] = ACTIONS(2683), + [anon_sym_COLON_COLON] = ACTIONS(2685), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2685), + [anon_sym___declspec] = ACTIONS(2683), + [anon_sym___based] = ACTIONS(2683), + [anon_sym___cdecl] = ACTIONS(2683), + [anon_sym___clrcall] = ACTIONS(2683), + [anon_sym___stdcall] = ACTIONS(2683), + [anon_sym___fastcall] = ACTIONS(2683), + [anon_sym___thiscall] = ACTIONS(2683), + [anon_sym___vectorcall] = ACTIONS(2683), + [anon_sym_LBRACE] = ACTIONS(2685), + [anon_sym_signed] = ACTIONS(2683), + [anon_sym_unsigned] = ACTIONS(2683), + [anon_sym_long] = ACTIONS(2683), + [anon_sym_short] = ACTIONS(2683), + [anon_sym_LBRACK] = ACTIONS(2683), + [anon_sym_static] = ACTIONS(2683), + [anon_sym_register] = ACTIONS(2683), + [anon_sym_inline] = ACTIONS(2683), + [anon_sym___inline] = ACTIONS(2683), + [anon_sym___inline__] = ACTIONS(2683), + [anon_sym___forceinline] = ACTIONS(2683), + [anon_sym_thread_local] = ACTIONS(2683), + [anon_sym___thread] = ACTIONS(2683), + [anon_sym_const] = ACTIONS(2683), + [anon_sym_constexpr] = ACTIONS(2683), + [anon_sym_volatile] = ACTIONS(2683), + [anon_sym_restrict] = ACTIONS(2683), + [anon_sym___restrict__] = ACTIONS(2683), + [anon_sym__Atomic] = ACTIONS(2683), + [anon_sym__Noreturn] = ACTIONS(2683), + [anon_sym_noreturn] = ACTIONS(2683), + [anon_sym__Nonnull] = ACTIONS(2683), + [anon_sym_mutable] = ACTIONS(2683), + [anon_sym_constinit] = ACTIONS(2683), + [anon_sym_consteval] = ACTIONS(2683), + [anon_sym_alignas] = ACTIONS(2683), + [anon_sym__Alignas] = ACTIONS(2683), + [sym_primitive_type] = ACTIONS(2683), + [anon_sym_enum] = ACTIONS(2683), + [anon_sym_class] = ACTIONS(2683), + [anon_sym_struct] = ACTIONS(2683), + [anon_sym_union] = ACTIONS(2683), + [anon_sym_if] = ACTIONS(2683), + [anon_sym_else] = ACTIONS(2683), + [anon_sym_switch] = ACTIONS(2683), + [anon_sym_case] = ACTIONS(2683), + [anon_sym_default] = ACTIONS(2683), + [anon_sym_while] = ACTIONS(2683), + [anon_sym_do] = ACTIONS(2683), + [anon_sym_for] = ACTIONS(2683), + [anon_sym_return] = ACTIONS(2683), + [anon_sym_break] = ACTIONS(2683), + [anon_sym_continue] = ACTIONS(2683), + [anon_sym_goto] = ACTIONS(2683), + [anon_sym___try] = ACTIONS(2683), + [anon_sym___leave] = ACTIONS(2683), + [anon_sym_not] = ACTIONS(2683), + [anon_sym_compl] = ACTIONS(2683), + [anon_sym_DASH_DASH] = ACTIONS(2685), + [anon_sym_PLUS_PLUS] = ACTIONS(2685), + [anon_sym_sizeof] = ACTIONS(2683), + [anon_sym___alignof__] = ACTIONS(2683), + [anon_sym___alignof] = ACTIONS(2683), + [anon_sym__alignof] = ACTIONS(2683), + [anon_sym_alignof] = ACTIONS(2683), + [anon_sym__Alignof] = ACTIONS(2683), + [anon_sym_offsetof] = ACTIONS(2683), + [anon_sym__Generic] = ACTIONS(2683), + [anon_sym_asm] = ACTIONS(2683), + [anon_sym___asm__] = ACTIONS(2683), + [anon_sym___asm] = ACTIONS(2683), + [sym_number_literal] = ACTIONS(2685), + [anon_sym_L_SQUOTE] = ACTIONS(2685), + [anon_sym_u_SQUOTE] = ACTIONS(2685), + [anon_sym_U_SQUOTE] = ACTIONS(2685), + [anon_sym_u8_SQUOTE] = ACTIONS(2685), + [anon_sym_SQUOTE] = ACTIONS(2685), + [anon_sym_L_DQUOTE] = ACTIONS(2685), + [anon_sym_u_DQUOTE] = ACTIONS(2685), + [anon_sym_U_DQUOTE] = ACTIONS(2685), + [anon_sym_u8_DQUOTE] = ACTIONS(2685), + [anon_sym_DQUOTE] = ACTIONS(2685), + [sym_true] = ACTIONS(2683), + [sym_false] = ACTIONS(2683), + [anon_sym_NULL] = ACTIONS(2683), + [anon_sym_nullptr] = ACTIONS(2683), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2683), + [anon_sym_decltype] = ACTIONS(2683), + [anon_sym_explicit] = ACTIONS(2683), + [anon_sym_typename] = ACTIONS(2683), + [anon_sym_template] = ACTIONS(2683), + [anon_sym_operator] = ACTIONS(2683), + [anon_sym_try] = ACTIONS(2683), + [anon_sym_delete] = ACTIONS(2683), + [anon_sym_throw] = ACTIONS(2683), + [anon_sym_namespace] = ACTIONS(2683), + [anon_sym_static_assert] = ACTIONS(2683), + [anon_sym_concept] = ACTIONS(2683), + [anon_sym_co_return] = ACTIONS(2683), + [anon_sym_co_yield] = ACTIONS(2683), + [anon_sym_R_DQUOTE] = ACTIONS(2685), + [anon_sym_LR_DQUOTE] = ACTIONS(2685), + [anon_sym_uR_DQUOTE] = ACTIONS(2685), + [anon_sym_UR_DQUOTE] = ACTIONS(2685), + [anon_sym_u8R_DQUOTE] = ACTIONS(2685), + [anon_sym_co_await] = ACTIONS(2683), + [anon_sym_new] = ACTIONS(2683), + [anon_sym_requires] = ACTIONS(2683), + [sym_this] = ACTIONS(2683), }, - [526] = { + [533] = { [ts_builtin_sym_end] = ACTIONS(3081), [sym_identifier] = ACTIONS(3079), [aux_sym_preproc_include_token1] = ACTIONS(3079), @@ -118623,422 +119893,1245 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(3079), [sym_this] = ACTIONS(3079), }, - [527] = { - [ts_builtin_sym_end] = ACTIONS(2889), - [sym_identifier] = ACTIONS(2887), - [aux_sym_preproc_include_token1] = ACTIONS(2887), - [aux_sym_preproc_def_token1] = ACTIONS(2887), - [aux_sym_preproc_if_token1] = ACTIONS(2887), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2887), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2887), - [sym_preproc_directive] = ACTIONS(2887), - [anon_sym_LPAREN2] = ACTIONS(2889), - [anon_sym_BANG] = ACTIONS(2889), - [anon_sym_TILDE] = ACTIONS(2889), - [anon_sym_DASH] = ACTIONS(2887), - [anon_sym_PLUS] = ACTIONS(2887), - [anon_sym_STAR] = ACTIONS(2889), - [anon_sym_AMP_AMP] = ACTIONS(2889), - [anon_sym_AMP] = ACTIONS(2887), - [anon_sym_SEMI] = ACTIONS(2889), - [anon_sym___extension__] = ACTIONS(2887), - [anon_sym_typedef] = ACTIONS(2887), - [anon_sym_virtual] = ACTIONS(2887), - [anon_sym_extern] = ACTIONS(2887), - [anon_sym___attribute__] = ACTIONS(2887), - [anon_sym___attribute] = ACTIONS(2887), - [anon_sym_using] = ACTIONS(2887), - [anon_sym_COLON_COLON] = ACTIONS(2889), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2889), - [anon_sym___declspec] = ACTIONS(2887), - [anon_sym___based] = ACTIONS(2887), - [anon_sym___cdecl] = ACTIONS(2887), - [anon_sym___clrcall] = ACTIONS(2887), - [anon_sym___stdcall] = ACTIONS(2887), - [anon_sym___fastcall] = ACTIONS(2887), - [anon_sym___thiscall] = ACTIONS(2887), - [anon_sym___vectorcall] = ACTIONS(2887), - [anon_sym_LBRACE] = ACTIONS(2889), - [anon_sym_signed] = ACTIONS(2887), - [anon_sym_unsigned] = ACTIONS(2887), - [anon_sym_long] = ACTIONS(2887), - [anon_sym_short] = ACTIONS(2887), - [anon_sym_LBRACK] = ACTIONS(2887), - [anon_sym_static] = ACTIONS(2887), - [anon_sym_register] = ACTIONS(2887), - [anon_sym_inline] = ACTIONS(2887), - [anon_sym___inline] = ACTIONS(2887), - [anon_sym___inline__] = ACTIONS(2887), - [anon_sym___forceinline] = ACTIONS(2887), - [anon_sym_thread_local] = ACTIONS(2887), - [anon_sym___thread] = ACTIONS(2887), - [anon_sym_const] = ACTIONS(2887), - [anon_sym_constexpr] = ACTIONS(2887), - [anon_sym_volatile] = ACTIONS(2887), - [anon_sym_restrict] = ACTIONS(2887), - [anon_sym___restrict__] = ACTIONS(2887), - [anon_sym__Atomic] = ACTIONS(2887), - [anon_sym__Noreturn] = ACTIONS(2887), - [anon_sym_noreturn] = ACTIONS(2887), - [anon_sym__Nonnull] = ACTIONS(2887), - [anon_sym_mutable] = ACTIONS(2887), - [anon_sym_constinit] = ACTIONS(2887), - [anon_sym_consteval] = ACTIONS(2887), - [anon_sym_alignas] = ACTIONS(2887), - [anon_sym__Alignas] = ACTIONS(2887), - [sym_primitive_type] = ACTIONS(2887), - [anon_sym_enum] = ACTIONS(2887), - [anon_sym_class] = ACTIONS(2887), - [anon_sym_struct] = ACTIONS(2887), - [anon_sym_union] = ACTIONS(2887), - [anon_sym_if] = ACTIONS(2887), - [anon_sym_switch] = ACTIONS(2887), - [anon_sym_case] = ACTIONS(2887), - [anon_sym_default] = ACTIONS(2887), - [anon_sym_while] = ACTIONS(2887), - [anon_sym_do] = ACTIONS(2887), - [anon_sym_for] = ACTIONS(2887), - [anon_sym_return] = ACTIONS(2887), - [anon_sym_break] = ACTIONS(2887), - [anon_sym_continue] = ACTIONS(2887), - [anon_sym_goto] = ACTIONS(2887), - [anon_sym_not] = ACTIONS(2887), - [anon_sym_compl] = ACTIONS(2887), - [anon_sym_DASH_DASH] = ACTIONS(2889), - [anon_sym_PLUS_PLUS] = ACTIONS(2889), - [anon_sym_sizeof] = ACTIONS(2887), - [anon_sym___alignof__] = ACTIONS(2887), - [anon_sym___alignof] = ACTIONS(2887), - [anon_sym__alignof] = ACTIONS(2887), - [anon_sym_alignof] = ACTIONS(2887), - [anon_sym__Alignof] = ACTIONS(2887), - [anon_sym_offsetof] = ACTIONS(2887), - [anon_sym__Generic] = ACTIONS(2887), - [anon_sym_asm] = ACTIONS(2887), - [anon_sym___asm__] = ACTIONS(2887), - [anon_sym___asm] = ACTIONS(2887), - [sym_number_literal] = ACTIONS(2889), - [anon_sym_L_SQUOTE] = ACTIONS(2889), - [anon_sym_u_SQUOTE] = ACTIONS(2889), - [anon_sym_U_SQUOTE] = ACTIONS(2889), - [anon_sym_u8_SQUOTE] = ACTIONS(2889), - [anon_sym_SQUOTE] = ACTIONS(2889), - [anon_sym_L_DQUOTE] = ACTIONS(2889), - [anon_sym_u_DQUOTE] = ACTIONS(2889), - [anon_sym_U_DQUOTE] = ACTIONS(2889), - [anon_sym_u8_DQUOTE] = ACTIONS(2889), - [anon_sym_DQUOTE] = ACTIONS(2889), - [sym_true] = ACTIONS(2887), - [sym_false] = ACTIONS(2887), - [anon_sym_NULL] = ACTIONS(2887), - [anon_sym_nullptr] = ACTIONS(2887), + [534] = { + [ts_builtin_sym_end] = ACTIONS(3085), + [sym_identifier] = ACTIONS(3083), + [aux_sym_preproc_include_token1] = ACTIONS(3083), + [aux_sym_preproc_def_token1] = ACTIONS(3083), + [aux_sym_preproc_if_token1] = ACTIONS(3083), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3083), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3083), + [sym_preproc_directive] = ACTIONS(3083), + [anon_sym_LPAREN2] = ACTIONS(3085), + [anon_sym_BANG] = ACTIONS(3085), + [anon_sym_TILDE] = ACTIONS(3085), + [anon_sym_DASH] = ACTIONS(3083), + [anon_sym_PLUS] = ACTIONS(3083), + [anon_sym_STAR] = ACTIONS(3085), + [anon_sym_AMP_AMP] = ACTIONS(3085), + [anon_sym_AMP] = ACTIONS(3083), + [anon_sym_SEMI] = ACTIONS(3085), + [anon_sym___extension__] = ACTIONS(3083), + [anon_sym_typedef] = ACTIONS(3083), + [anon_sym_virtual] = ACTIONS(3083), + [anon_sym_extern] = ACTIONS(3083), + [anon_sym___attribute__] = ACTIONS(3083), + [anon_sym___attribute] = ACTIONS(3083), + [anon_sym_using] = ACTIONS(3083), + [anon_sym_COLON_COLON] = ACTIONS(3085), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3085), + [anon_sym___declspec] = ACTIONS(3083), + [anon_sym___based] = ACTIONS(3083), + [anon_sym___cdecl] = ACTIONS(3083), + [anon_sym___clrcall] = ACTIONS(3083), + [anon_sym___stdcall] = ACTIONS(3083), + [anon_sym___fastcall] = ACTIONS(3083), + [anon_sym___thiscall] = ACTIONS(3083), + [anon_sym___vectorcall] = ACTIONS(3083), + [anon_sym_LBRACE] = ACTIONS(3085), + [anon_sym_signed] = ACTIONS(3083), + [anon_sym_unsigned] = ACTIONS(3083), + [anon_sym_long] = ACTIONS(3083), + [anon_sym_short] = ACTIONS(3083), + [anon_sym_LBRACK] = ACTIONS(3083), + [anon_sym_static] = ACTIONS(3083), + [anon_sym_register] = ACTIONS(3083), + [anon_sym_inline] = ACTIONS(3083), + [anon_sym___inline] = ACTIONS(3083), + [anon_sym___inline__] = ACTIONS(3083), + [anon_sym___forceinline] = ACTIONS(3083), + [anon_sym_thread_local] = ACTIONS(3083), + [anon_sym___thread] = ACTIONS(3083), + [anon_sym_const] = ACTIONS(3083), + [anon_sym_constexpr] = ACTIONS(3083), + [anon_sym_volatile] = ACTIONS(3083), + [anon_sym_restrict] = ACTIONS(3083), + [anon_sym___restrict__] = ACTIONS(3083), + [anon_sym__Atomic] = ACTIONS(3083), + [anon_sym__Noreturn] = ACTIONS(3083), + [anon_sym_noreturn] = ACTIONS(3083), + [anon_sym__Nonnull] = ACTIONS(3083), + [anon_sym_mutable] = ACTIONS(3083), + [anon_sym_constinit] = ACTIONS(3083), + [anon_sym_consteval] = ACTIONS(3083), + [anon_sym_alignas] = ACTIONS(3083), + [anon_sym__Alignas] = ACTIONS(3083), + [sym_primitive_type] = ACTIONS(3083), + [anon_sym_enum] = ACTIONS(3083), + [anon_sym_class] = ACTIONS(3083), + [anon_sym_struct] = ACTIONS(3083), + [anon_sym_union] = ACTIONS(3083), + [anon_sym_if] = ACTIONS(3083), + [anon_sym_switch] = ACTIONS(3083), + [anon_sym_case] = ACTIONS(3083), + [anon_sym_default] = ACTIONS(3083), + [anon_sym_while] = ACTIONS(3083), + [anon_sym_do] = ACTIONS(3083), + [anon_sym_for] = ACTIONS(3083), + [anon_sym_return] = ACTIONS(3083), + [anon_sym_break] = ACTIONS(3083), + [anon_sym_continue] = ACTIONS(3083), + [anon_sym_goto] = ACTIONS(3083), + [anon_sym_not] = ACTIONS(3083), + [anon_sym_compl] = ACTIONS(3083), + [anon_sym_DASH_DASH] = ACTIONS(3085), + [anon_sym_PLUS_PLUS] = ACTIONS(3085), + [anon_sym_sizeof] = ACTIONS(3083), + [anon_sym___alignof__] = ACTIONS(3083), + [anon_sym___alignof] = ACTIONS(3083), + [anon_sym__alignof] = ACTIONS(3083), + [anon_sym_alignof] = ACTIONS(3083), + [anon_sym__Alignof] = ACTIONS(3083), + [anon_sym_offsetof] = ACTIONS(3083), + [anon_sym__Generic] = ACTIONS(3083), + [anon_sym_asm] = ACTIONS(3083), + [anon_sym___asm__] = ACTIONS(3083), + [anon_sym___asm] = ACTIONS(3083), + [sym_number_literal] = ACTIONS(3085), + [anon_sym_L_SQUOTE] = ACTIONS(3085), + [anon_sym_u_SQUOTE] = ACTIONS(3085), + [anon_sym_U_SQUOTE] = ACTIONS(3085), + [anon_sym_u8_SQUOTE] = ACTIONS(3085), + [anon_sym_SQUOTE] = ACTIONS(3085), + [anon_sym_L_DQUOTE] = ACTIONS(3085), + [anon_sym_u_DQUOTE] = ACTIONS(3085), + [anon_sym_U_DQUOTE] = ACTIONS(3085), + [anon_sym_u8_DQUOTE] = ACTIONS(3085), + [anon_sym_DQUOTE] = ACTIONS(3085), + [sym_true] = ACTIONS(3083), + [sym_false] = ACTIONS(3083), + [anon_sym_NULL] = ACTIONS(3083), + [anon_sym_nullptr] = ACTIONS(3083), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2887), - [anon_sym_decltype] = ACTIONS(2887), - [anon_sym_explicit] = ACTIONS(2887), - [anon_sym_typename] = ACTIONS(2887), - [anon_sym_export] = ACTIONS(2887), - [anon_sym_module] = ACTIONS(2887), - [anon_sym_import] = ACTIONS(2887), - [anon_sym_template] = ACTIONS(2887), - [anon_sym_operator] = ACTIONS(2887), - [anon_sym_try] = ACTIONS(2887), - [anon_sym_delete] = ACTIONS(2887), - [anon_sym_throw] = ACTIONS(2887), - [anon_sym_namespace] = ACTIONS(2887), - [anon_sym_static_assert] = ACTIONS(2887), - [anon_sym_concept] = ACTIONS(2887), - [anon_sym_co_return] = ACTIONS(2887), - [anon_sym_co_yield] = ACTIONS(2887), - [anon_sym_R_DQUOTE] = ACTIONS(2889), - [anon_sym_LR_DQUOTE] = ACTIONS(2889), - [anon_sym_uR_DQUOTE] = ACTIONS(2889), - [anon_sym_UR_DQUOTE] = ACTIONS(2889), - [anon_sym_u8R_DQUOTE] = ACTIONS(2889), - [anon_sym_co_await] = ACTIONS(2887), - [anon_sym_new] = ACTIONS(2887), - [anon_sym_requires] = ACTIONS(2887), - [sym_this] = ACTIONS(2887), + [sym_auto] = ACTIONS(3083), + [anon_sym_decltype] = ACTIONS(3083), + [anon_sym_explicit] = ACTIONS(3083), + [anon_sym_typename] = ACTIONS(3083), + [anon_sym_export] = ACTIONS(3083), + [anon_sym_module] = ACTIONS(3083), + [anon_sym_import] = ACTIONS(3083), + [anon_sym_template] = ACTIONS(3083), + [anon_sym_operator] = ACTIONS(3083), + [anon_sym_try] = ACTIONS(3083), + [anon_sym_delete] = ACTIONS(3083), + [anon_sym_throw] = ACTIONS(3083), + [anon_sym_namespace] = ACTIONS(3083), + [anon_sym_static_assert] = ACTIONS(3083), + [anon_sym_concept] = ACTIONS(3083), + [anon_sym_co_return] = ACTIONS(3083), + [anon_sym_co_yield] = ACTIONS(3083), + [anon_sym_R_DQUOTE] = ACTIONS(3085), + [anon_sym_LR_DQUOTE] = ACTIONS(3085), + [anon_sym_uR_DQUOTE] = ACTIONS(3085), + [anon_sym_UR_DQUOTE] = ACTIONS(3085), + [anon_sym_u8R_DQUOTE] = ACTIONS(3085), + [anon_sym_co_await] = ACTIONS(3083), + [anon_sym_new] = ACTIONS(3083), + [anon_sym_requires] = ACTIONS(3083), + [sym_this] = ACTIONS(3083), }, - [528] = { - [ts_builtin_sym_end] = ACTIONS(3403), - [sym_identifier] = ACTIONS(3405), - [aux_sym_preproc_include_token1] = ACTIONS(3405), - [aux_sym_preproc_def_token1] = ACTIONS(3405), - [aux_sym_preproc_if_token1] = ACTIONS(3405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3405), - [sym_preproc_directive] = ACTIONS(3405), - [anon_sym_LPAREN2] = ACTIONS(3403), - [anon_sym_BANG] = ACTIONS(3403), - [anon_sym_TILDE] = ACTIONS(3403), - [anon_sym_DASH] = ACTIONS(3405), - [anon_sym_PLUS] = ACTIONS(3405), - [anon_sym_STAR] = ACTIONS(3403), - [anon_sym_AMP_AMP] = ACTIONS(3403), - [anon_sym_AMP] = ACTIONS(3405), - [anon_sym_SEMI] = ACTIONS(3403), - [anon_sym___extension__] = ACTIONS(3405), - [anon_sym_typedef] = ACTIONS(3405), - [anon_sym_virtual] = ACTIONS(3405), - [anon_sym_extern] = ACTIONS(3405), - [anon_sym___attribute__] = ACTIONS(3405), - [anon_sym___attribute] = ACTIONS(3405), - [anon_sym_using] = ACTIONS(3405), - [anon_sym_COLON_COLON] = ACTIONS(3403), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3403), - [anon_sym___declspec] = ACTIONS(3405), - [anon_sym___based] = ACTIONS(3405), - [anon_sym___cdecl] = ACTIONS(3405), - [anon_sym___clrcall] = ACTIONS(3405), - [anon_sym___stdcall] = ACTIONS(3405), - [anon_sym___fastcall] = ACTIONS(3405), - [anon_sym___thiscall] = ACTIONS(3405), - [anon_sym___vectorcall] = ACTIONS(3405), - [anon_sym_LBRACE] = ACTIONS(3403), - [anon_sym_signed] = ACTIONS(3405), - [anon_sym_unsigned] = ACTIONS(3405), - [anon_sym_long] = ACTIONS(3405), - [anon_sym_short] = ACTIONS(3405), - [anon_sym_LBRACK] = ACTIONS(3405), - [anon_sym_static] = ACTIONS(3405), - [anon_sym_register] = ACTIONS(3405), - [anon_sym_inline] = ACTIONS(3405), - [anon_sym___inline] = ACTIONS(3405), - [anon_sym___inline__] = ACTIONS(3405), - [anon_sym___forceinline] = ACTIONS(3405), - [anon_sym_thread_local] = ACTIONS(3405), - [anon_sym___thread] = ACTIONS(3405), - [anon_sym_const] = ACTIONS(3405), - [anon_sym_constexpr] = ACTIONS(3405), - [anon_sym_volatile] = ACTIONS(3405), - [anon_sym_restrict] = ACTIONS(3405), - [anon_sym___restrict__] = ACTIONS(3405), - [anon_sym__Atomic] = ACTIONS(3405), - [anon_sym__Noreturn] = ACTIONS(3405), - [anon_sym_noreturn] = ACTIONS(3405), - [anon_sym__Nonnull] = ACTIONS(3405), - [anon_sym_mutable] = ACTIONS(3405), - [anon_sym_constinit] = ACTIONS(3405), - [anon_sym_consteval] = ACTIONS(3405), - [anon_sym_alignas] = ACTIONS(3405), - [anon_sym__Alignas] = ACTIONS(3405), - [sym_primitive_type] = ACTIONS(3405), - [anon_sym_enum] = ACTIONS(3405), - [anon_sym_class] = ACTIONS(3405), - [anon_sym_struct] = ACTIONS(3405), - [anon_sym_union] = ACTIONS(3405), - [anon_sym_if] = ACTIONS(3405), - [anon_sym_switch] = ACTIONS(3405), - [anon_sym_case] = ACTIONS(3405), - [anon_sym_default] = ACTIONS(3405), - [anon_sym_while] = ACTIONS(3405), - [anon_sym_do] = ACTIONS(3405), - [anon_sym_for] = ACTIONS(3405), - [anon_sym_return] = ACTIONS(3405), - [anon_sym_break] = ACTIONS(3405), - [anon_sym_continue] = ACTIONS(3405), - [anon_sym_goto] = ACTIONS(3405), - [anon_sym_not] = ACTIONS(3405), - [anon_sym_compl] = ACTIONS(3405), - [anon_sym_DASH_DASH] = ACTIONS(3403), - [anon_sym_PLUS_PLUS] = ACTIONS(3403), - [anon_sym_sizeof] = ACTIONS(3405), - [anon_sym___alignof__] = ACTIONS(3405), - [anon_sym___alignof] = ACTIONS(3405), - [anon_sym__alignof] = ACTIONS(3405), - [anon_sym_alignof] = ACTIONS(3405), - [anon_sym__Alignof] = ACTIONS(3405), - [anon_sym_offsetof] = ACTIONS(3405), - [anon_sym__Generic] = ACTIONS(3405), - [anon_sym_asm] = ACTIONS(3405), - [anon_sym___asm__] = ACTIONS(3405), - [anon_sym___asm] = ACTIONS(3405), - [sym_number_literal] = ACTIONS(3403), - [anon_sym_L_SQUOTE] = ACTIONS(3403), - [anon_sym_u_SQUOTE] = ACTIONS(3403), - [anon_sym_U_SQUOTE] = ACTIONS(3403), - [anon_sym_u8_SQUOTE] = ACTIONS(3403), - [anon_sym_SQUOTE] = ACTIONS(3403), - [anon_sym_L_DQUOTE] = ACTIONS(3403), - [anon_sym_u_DQUOTE] = ACTIONS(3403), - [anon_sym_U_DQUOTE] = ACTIONS(3403), - [anon_sym_u8_DQUOTE] = ACTIONS(3403), - [anon_sym_DQUOTE] = ACTIONS(3403), - [sym_true] = ACTIONS(3405), - [sym_false] = ACTIONS(3405), - [anon_sym_NULL] = ACTIONS(3405), - [anon_sym_nullptr] = ACTIONS(3405), + [535] = { + [ts_builtin_sym_end] = ACTIONS(3089), + [sym_identifier] = ACTIONS(3087), + [aux_sym_preproc_include_token1] = ACTIONS(3087), + [aux_sym_preproc_def_token1] = ACTIONS(3087), + [aux_sym_preproc_if_token1] = ACTIONS(3087), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3087), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3087), + [sym_preproc_directive] = ACTIONS(3087), + [anon_sym_LPAREN2] = ACTIONS(3089), + [anon_sym_BANG] = ACTIONS(3089), + [anon_sym_TILDE] = ACTIONS(3089), + [anon_sym_DASH] = ACTIONS(3087), + [anon_sym_PLUS] = ACTIONS(3087), + [anon_sym_STAR] = ACTIONS(3089), + [anon_sym_AMP_AMP] = ACTIONS(3089), + [anon_sym_AMP] = ACTIONS(3087), + [anon_sym_SEMI] = ACTIONS(3089), + [anon_sym___extension__] = ACTIONS(3087), + [anon_sym_typedef] = ACTIONS(3087), + [anon_sym_virtual] = ACTIONS(3087), + [anon_sym_extern] = ACTIONS(3087), + [anon_sym___attribute__] = ACTIONS(3087), + [anon_sym___attribute] = ACTIONS(3087), + [anon_sym_using] = ACTIONS(3087), + [anon_sym_COLON_COLON] = ACTIONS(3089), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3089), + [anon_sym___declspec] = ACTIONS(3087), + [anon_sym___based] = ACTIONS(3087), + [anon_sym___cdecl] = ACTIONS(3087), + [anon_sym___clrcall] = ACTIONS(3087), + [anon_sym___stdcall] = ACTIONS(3087), + [anon_sym___fastcall] = ACTIONS(3087), + [anon_sym___thiscall] = ACTIONS(3087), + [anon_sym___vectorcall] = ACTIONS(3087), + [anon_sym_LBRACE] = ACTIONS(3089), + [anon_sym_signed] = ACTIONS(3087), + [anon_sym_unsigned] = ACTIONS(3087), + [anon_sym_long] = ACTIONS(3087), + [anon_sym_short] = ACTIONS(3087), + [anon_sym_LBRACK] = ACTIONS(3087), + [anon_sym_static] = ACTIONS(3087), + [anon_sym_register] = ACTIONS(3087), + [anon_sym_inline] = ACTIONS(3087), + [anon_sym___inline] = ACTIONS(3087), + [anon_sym___inline__] = ACTIONS(3087), + [anon_sym___forceinline] = ACTIONS(3087), + [anon_sym_thread_local] = ACTIONS(3087), + [anon_sym___thread] = ACTIONS(3087), + [anon_sym_const] = ACTIONS(3087), + [anon_sym_constexpr] = ACTIONS(3087), + [anon_sym_volatile] = ACTIONS(3087), + [anon_sym_restrict] = ACTIONS(3087), + [anon_sym___restrict__] = ACTIONS(3087), + [anon_sym__Atomic] = ACTIONS(3087), + [anon_sym__Noreturn] = ACTIONS(3087), + [anon_sym_noreturn] = ACTIONS(3087), + [anon_sym__Nonnull] = ACTIONS(3087), + [anon_sym_mutable] = ACTIONS(3087), + [anon_sym_constinit] = ACTIONS(3087), + [anon_sym_consteval] = ACTIONS(3087), + [anon_sym_alignas] = ACTIONS(3087), + [anon_sym__Alignas] = ACTIONS(3087), + [sym_primitive_type] = ACTIONS(3087), + [anon_sym_enum] = ACTIONS(3087), + [anon_sym_class] = ACTIONS(3087), + [anon_sym_struct] = ACTIONS(3087), + [anon_sym_union] = ACTIONS(3087), + [anon_sym_if] = ACTIONS(3087), + [anon_sym_switch] = ACTIONS(3087), + [anon_sym_case] = ACTIONS(3087), + [anon_sym_default] = ACTIONS(3087), + [anon_sym_while] = ACTIONS(3087), + [anon_sym_do] = ACTIONS(3087), + [anon_sym_for] = ACTIONS(3087), + [anon_sym_return] = ACTIONS(3087), + [anon_sym_break] = ACTIONS(3087), + [anon_sym_continue] = ACTIONS(3087), + [anon_sym_goto] = ACTIONS(3087), + [anon_sym_not] = ACTIONS(3087), + [anon_sym_compl] = ACTIONS(3087), + [anon_sym_DASH_DASH] = ACTIONS(3089), + [anon_sym_PLUS_PLUS] = ACTIONS(3089), + [anon_sym_sizeof] = ACTIONS(3087), + [anon_sym___alignof__] = ACTIONS(3087), + [anon_sym___alignof] = ACTIONS(3087), + [anon_sym__alignof] = ACTIONS(3087), + [anon_sym_alignof] = ACTIONS(3087), + [anon_sym__Alignof] = ACTIONS(3087), + [anon_sym_offsetof] = ACTIONS(3087), + [anon_sym__Generic] = ACTIONS(3087), + [anon_sym_asm] = ACTIONS(3087), + [anon_sym___asm__] = ACTIONS(3087), + [anon_sym___asm] = ACTIONS(3087), + [sym_number_literal] = ACTIONS(3089), + [anon_sym_L_SQUOTE] = ACTIONS(3089), + [anon_sym_u_SQUOTE] = ACTIONS(3089), + [anon_sym_U_SQUOTE] = ACTIONS(3089), + [anon_sym_u8_SQUOTE] = ACTIONS(3089), + [anon_sym_SQUOTE] = ACTIONS(3089), + [anon_sym_L_DQUOTE] = ACTIONS(3089), + [anon_sym_u_DQUOTE] = ACTIONS(3089), + [anon_sym_U_DQUOTE] = ACTIONS(3089), + [anon_sym_u8_DQUOTE] = ACTIONS(3089), + [anon_sym_DQUOTE] = ACTIONS(3089), + [sym_true] = ACTIONS(3087), + [sym_false] = ACTIONS(3087), + [anon_sym_NULL] = ACTIONS(3087), + [anon_sym_nullptr] = ACTIONS(3087), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3087), + [anon_sym_decltype] = ACTIONS(3087), + [anon_sym_explicit] = ACTIONS(3087), + [anon_sym_typename] = ACTIONS(3087), + [anon_sym_export] = ACTIONS(3087), + [anon_sym_module] = ACTIONS(3087), + [anon_sym_import] = ACTIONS(3087), + [anon_sym_template] = ACTIONS(3087), + [anon_sym_operator] = ACTIONS(3087), + [anon_sym_try] = ACTIONS(3087), + [anon_sym_delete] = ACTIONS(3087), + [anon_sym_throw] = ACTIONS(3087), + [anon_sym_namespace] = ACTIONS(3087), + [anon_sym_static_assert] = ACTIONS(3087), + [anon_sym_concept] = ACTIONS(3087), + [anon_sym_co_return] = ACTIONS(3087), + [anon_sym_co_yield] = ACTIONS(3087), + [anon_sym_R_DQUOTE] = ACTIONS(3089), + [anon_sym_LR_DQUOTE] = ACTIONS(3089), + [anon_sym_uR_DQUOTE] = ACTIONS(3089), + [anon_sym_UR_DQUOTE] = ACTIONS(3089), + [anon_sym_u8R_DQUOTE] = ACTIONS(3089), + [anon_sym_co_await] = ACTIONS(3087), + [anon_sym_new] = ACTIONS(3087), + [anon_sym_requires] = ACTIONS(3087), + [sym_this] = ACTIONS(3087), + }, + [536] = { + [sym_identifier] = ACTIONS(2699), + [aux_sym_preproc_include_token1] = ACTIONS(2699), + [aux_sym_preproc_def_token1] = ACTIONS(2699), + [aux_sym_preproc_if_token1] = ACTIONS(2699), + [aux_sym_preproc_if_token2] = ACTIONS(2699), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2699), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2699), + [sym_preproc_directive] = ACTIONS(2699), + [anon_sym_LPAREN2] = ACTIONS(2701), + [anon_sym_BANG] = ACTIONS(2701), + [anon_sym_TILDE] = ACTIONS(2701), + [anon_sym_DASH] = ACTIONS(2699), + [anon_sym_PLUS] = ACTIONS(2699), + [anon_sym_STAR] = ACTIONS(2701), + [anon_sym_AMP_AMP] = ACTIONS(2701), + [anon_sym_AMP] = ACTIONS(2699), + [anon_sym_SEMI] = ACTIONS(2701), + [anon_sym___extension__] = ACTIONS(2699), + [anon_sym_typedef] = ACTIONS(2699), + [anon_sym_virtual] = ACTIONS(2699), + [anon_sym_extern] = ACTIONS(2699), + [anon_sym___attribute__] = ACTIONS(2699), + [anon_sym___attribute] = ACTIONS(2699), + [anon_sym_using] = ACTIONS(2699), + [anon_sym_COLON_COLON] = ACTIONS(2701), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2701), + [anon_sym___declspec] = ACTIONS(2699), + [anon_sym___based] = ACTIONS(2699), + [anon_sym___cdecl] = ACTIONS(2699), + [anon_sym___clrcall] = ACTIONS(2699), + [anon_sym___stdcall] = ACTIONS(2699), + [anon_sym___fastcall] = ACTIONS(2699), + [anon_sym___thiscall] = ACTIONS(2699), + [anon_sym___vectorcall] = ACTIONS(2699), + [anon_sym_LBRACE] = ACTIONS(2701), + [anon_sym_signed] = ACTIONS(2699), + [anon_sym_unsigned] = ACTIONS(2699), + [anon_sym_long] = ACTIONS(2699), + [anon_sym_short] = ACTIONS(2699), + [anon_sym_LBRACK] = ACTIONS(2699), + [anon_sym_static] = ACTIONS(2699), + [anon_sym_register] = ACTIONS(2699), + [anon_sym_inline] = ACTIONS(2699), + [anon_sym___inline] = ACTIONS(2699), + [anon_sym___inline__] = ACTIONS(2699), + [anon_sym___forceinline] = ACTIONS(2699), + [anon_sym_thread_local] = ACTIONS(2699), + [anon_sym___thread] = ACTIONS(2699), + [anon_sym_const] = ACTIONS(2699), + [anon_sym_constexpr] = ACTIONS(2699), + [anon_sym_volatile] = ACTIONS(2699), + [anon_sym_restrict] = ACTIONS(2699), + [anon_sym___restrict__] = ACTIONS(2699), + [anon_sym__Atomic] = ACTIONS(2699), + [anon_sym__Noreturn] = ACTIONS(2699), + [anon_sym_noreturn] = ACTIONS(2699), + [anon_sym__Nonnull] = ACTIONS(2699), + [anon_sym_mutable] = ACTIONS(2699), + [anon_sym_constinit] = ACTIONS(2699), + [anon_sym_consteval] = ACTIONS(2699), + [anon_sym_alignas] = ACTIONS(2699), + [anon_sym__Alignas] = ACTIONS(2699), + [sym_primitive_type] = ACTIONS(2699), + [anon_sym_enum] = ACTIONS(2699), + [anon_sym_class] = ACTIONS(2699), + [anon_sym_struct] = ACTIONS(2699), + [anon_sym_union] = ACTIONS(2699), + [anon_sym_if] = ACTIONS(2699), + [anon_sym_else] = ACTIONS(2699), + [anon_sym_switch] = ACTIONS(2699), + [anon_sym_case] = ACTIONS(2699), + [anon_sym_default] = ACTIONS(2699), + [anon_sym_while] = ACTIONS(2699), + [anon_sym_do] = ACTIONS(2699), + [anon_sym_for] = ACTIONS(2699), + [anon_sym_return] = ACTIONS(2699), + [anon_sym_break] = ACTIONS(2699), + [anon_sym_continue] = ACTIONS(2699), + [anon_sym_goto] = ACTIONS(2699), + [anon_sym___try] = ACTIONS(2699), + [anon_sym___leave] = ACTIONS(2699), + [anon_sym_not] = ACTIONS(2699), + [anon_sym_compl] = ACTIONS(2699), + [anon_sym_DASH_DASH] = ACTIONS(2701), + [anon_sym_PLUS_PLUS] = ACTIONS(2701), + [anon_sym_sizeof] = ACTIONS(2699), + [anon_sym___alignof__] = ACTIONS(2699), + [anon_sym___alignof] = ACTIONS(2699), + [anon_sym__alignof] = ACTIONS(2699), + [anon_sym_alignof] = ACTIONS(2699), + [anon_sym__Alignof] = ACTIONS(2699), + [anon_sym_offsetof] = ACTIONS(2699), + [anon_sym__Generic] = ACTIONS(2699), + [anon_sym_asm] = ACTIONS(2699), + [anon_sym___asm__] = ACTIONS(2699), + [anon_sym___asm] = ACTIONS(2699), + [sym_number_literal] = ACTIONS(2701), + [anon_sym_L_SQUOTE] = ACTIONS(2701), + [anon_sym_u_SQUOTE] = ACTIONS(2701), + [anon_sym_U_SQUOTE] = ACTIONS(2701), + [anon_sym_u8_SQUOTE] = ACTIONS(2701), + [anon_sym_SQUOTE] = ACTIONS(2701), + [anon_sym_L_DQUOTE] = ACTIONS(2701), + [anon_sym_u_DQUOTE] = ACTIONS(2701), + [anon_sym_U_DQUOTE] = ACTIONS(2701), + [anon_sym_u8_DQUOTE] = ACTIONS(2701), + [anon_sym_DQUOTE] = ACTIONS(2701), + [sym_true] = ACTIONS(2699), + [sym_false] = ACTIONS(2699), + [anon_sym_NULL] = ACTIONS(2699), + [anon_sym_nullptr] = ACTIONS(2699), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3405), - [anon_sym_decltype] = ACTIONS(3405), - [anon_sym_explicit] = ACTIONS(3405), - [anon_sym_typename] = ACTIONS(3405), - [anon_sym_export] = ACTIONS(3405), - [anon_sym_module] = ACTIONS(3405), - [anon_sym_import] = ACTIONS(3405), - [anon_sym_template] = ACTIONS(3405), - [anon_sym_operator] = ACTIONS(3405), - [anon_sym_try] = ACTIONS(3405), - [anon_sym_delete] = ACTIONS(3405), - [anon_sym_throw] = ACTIONS(3405), - [anon_sym_namespace] = ACTIONS(3405), - [anon_sym_static_assert] = ACTIONS(3405), - [anon_sym_concept] = ACTIONS(3405), - [anon_sym_co_return] = ACTIONS(3405), - [anon_sym_co_yield] = ACTIONS(3405), - [anon_sym_R_DQUOTE] = ACTIONS(3403), - [anon_sym_LR_DQUOTE] = ACTIONS(3403), - [anon_sym_uR_DQUOTE] = ACTIONS(3403), - [anon_sym_UR_DQUOTE] = ACTIONS(3403), - [anon_sym_u8R_DQUOTE] = ACTIONS(3403), - [anon_sym_co_await] = ACTIONS(3405), - [anon_sym_new] = ACTIONS(3405), - [anon_sym_requires] = ACTIONS(3405), - [sym_this] = ACTIONS(3405), + [sym_auto] = ACTIONS(2699), + [anon_sym_decltype] = ACTIONS(2699), + [anon_sym_explicit] = ACTIONS(2699), + [anon_sym_typename] = ACTIONS(2699), + [anon_sym_template] = ACTIONS(2699), + [anon_sym_operator] = ACTIONS(2699), + [anon_sym_try] = ACTIONS(2699), + [anon_sym_delete] = ACTIONS(2699), + [anon_sym_throw] = ACTIONS(2699), + [anon_sym_namespace] = ACTIONS(2699), + [anon_sym_static_assert] = ACTIONS(2699), + [anon_sym_concept] = ACTIONS(2699), + [anon_sym_co_return] = ACTIONS(2699), + [anon_sym_co_yield] = ACTIONS(2699), + [anon_sym_R_DQUOTE] = ACTIONS(2701), + [anon_sym_LR_DQUOTE] = ACTIONS(2701), + [anon_sym_uR_DQUOTE] = ACTIONS(2701), + [anon_sym_UR_DQUOTE] = ACTIONS(2701), + [anon_sym_u8R_DQUOTE] = ACTIONS(2701), + [anon_sym_co_await] = ACTIONS(2699), + [anon_sym_new] = ACTIONS(2699), + [anon_sym_requires] = ACTIONS(2699), + [sym_this] = ACTIONS(2699), }, - [529] = { - [sym_identifier] = ACTIONS(2763), - [aux_sym_preproc_include_token1] = ACTIONS(2763), - [aux_sym_preproc_def_token1] = ACTIONS(2763), - [aux_sym_preproc_if_token1] = ACTIONS(2763), - [aux_sym_preproc_if_token2] = ACTIONS(2763), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2763), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2763), - [sym_preproc_directive] = ACTIONS(2763), - [anon_sym_LPAREN2] = ACTIONS(2765), - [anon_sym_BANG] = ACTIONS(2765), - [anon_sym_TILDE] = ACTIONS(2765), - [anon_sym_DASH] = ACTIONS(2763), - [anon_sym_PLUS] = ACTIONS(2763), - [anon_sym_STAR] = ACTIONS(2765), - [anon_sym_AMP_AMP] = ACTIONS(2765), - [anon_sym_AMP] = ACTIONS(2763), - [anon_sym_SEMI] = ACTIONS(2765), - [anon_sym___extension__] = ACTIONS(2763), - [anon_sym_typedef] = ACTIONS(2763), - [anon_sym_virtual] = ACTIONS(2763), - [anon_sym_extern] = ACTIONS(2763), - [anon_sym___attribute__] = ACTIONS(2763), - [anon_sym___attribute] = ACTIONS(2763), - [anon_sym_using] = ACTIONS(2763), - [anon_sym_COLON_COLON] = ACTIONS(2765), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2765), - [anon_sym___declspec] = ACTIONS(2763), - [anon_sym___based] = ACTIONS(2763), - [anon_sym___cdecl] = ACTIONS(2763), - [anon_sym___clrcall] = ACTIONS(2763), - [anon_sym___stdcall] = ACTIONS(2763), - [anon_sym___fastcall] = ACTIONS(2763), - [anon_sym___thiscall] = ACTIONS(2763), - [anon_sym___vectorcall] = ACTIONS(2763), - [anon_sym_LBRACE] = ACTIONS(2765), - [anon_sym_signed] = ACTIONS(2763), - [anon_sym_unsigned] = ACTIONS(2763), - [anon_sym_long] = ACTIONS(2763), - [anon_sym_short] = ACTIONS(2763), - [anon_sym_LBRACK] = ACTIONS(2763), - [anon_sym_static] = ACTIONS(2763), - [anon_sym_register] = ACTIONS(2763), - [anon_sym_inline] = ACTIONS(2763), - [anon_sym___inline] = ACTIONS(2763), - [anon_sym___inline__] = ACTIONS(2763), - [anon_sym___forceinline] = ACTIONS(2763), - [anon_sym_thread_local] = ACTIONS(2763), - [anon_sym___thread] = ACTIONS(2763), - [anon_sym_const] = ACTIONS(2763), - [anon_sym_constexpr] = ACTIONS(2763), - [anon_sym_volatile] = ACTIONS(2763), - [anon_sym_restrict] = ACTIONS(2763), - [anon_sym___restrict__] = ACTIONS(2763), - [anon_sym__Atomic] = ACTIONS(2763), - [anon_sym__Noreturn] = ACTIONS(2763), - [anon_sym_noreturn] = ACTIONS(2763), - [anon_sym__Nonnull] = ACTIONS(2763), - [anon_sym_mutable] = ACTIONS(2763), - [anon_sym_constinit] = ACTIONS(2763), - [anon_sym_consteval] = ACTIONS(2763), - [anon_sym_alignas] = ACTIONS(2763), - [anon_sym__Alignas] = ACTIONS(2763), - [sym_primitive_type] = ACTIONS(2763), - [anon_sym_enum] = ACTIONS(2763), - [anon_sym_class] = ACTIONS(2763), - [anon_sym_struct] = ACTIONS(2763), - [anon_sym_union] = ACTIONS(2763), - [anon_sym_if] = ACTIONS(2763), - [anon_sym_else] = ACTIONS(2763), - [anon_sym_switch] = ACTIONS(2763), - [anon_sym_case] = ACTIONS(2763), - [anon_sym_default] = ACTIONS(2763), - [anon_sym_while] = ACTIONS(2763), - [anon_sym_do] = ACTIONS(2763), - [anon_sym_for] = ACTIONS(2763), - [anon_sym_return] = ACTIONS(2763), - [anon_sym_break] = ACTIONS(2763), - [anon_sym_continue] = ACTIONS(2763), - [anon_sym_goto] = ACTIONS(2763), - [anon_sym___try] = ACTIONS(2763), - [anon_sym___leave] = ACTIONS(2763), - [anon_sym_not] = ACTIONS(2763), - [anon_sym_compl] = ACTIONS(2763), - [anon_sym_DASH_DASH] = ACTIONS(2765), - [anon_sym_PLUS_PLUS] = ACTIONS(2765), - [anon_sym_sizeof] = ACTIONS(2763), - [anon_sym___alignof__] = ACTIONS(2763), - [anon_sym___alignof] = ACTIONS(2763), - [anon_sym__alignof] = ACTIONS(2763), - [anon_sym_alignof] = ACTIONS(2763), - [anon_sym__Alignof] = ACTIONS(2763), - [anon_sym_offsetof] = ACTIONS(2763), - [anon_sym__Generic] = ACTIONS(2763), - [anon_sym_asm] = ACTIONS(2763), - [anon_sym___asm__] = ACTIONS(2763), - [anon_sym___asm] = ACTIONS(2763), - [sym_number_literal] = ACTIONS(2765), - [anon_sym_L_SQUOTE] = ACTIONS(2765), - [anon_sym_u_SQUOTE] = ACTIONS(2765), - [anon_sym_U_SQUOTE] = ACTIONS(2765), - [anon_sym_u8_SQUOTE] = ACTIONS(2765), - [anon_sym_SQUOTE] = ACTIONS(2765), - [anon_sym_L_DQUOTE] = ACTIONS(2765), - [anon_sym_u_DQUOTE] = ACTIONS(2765), - [anon_sym_U_DQUOTE] = ACTIONS(2765), - [anon_sym_u8_DQUOTE] = ACTIONS(2765), - [anon_sym_DQUOTE] = ACTIONS(2765), - [sym_true] = ACTIONS(2763), - [sym_false] = ACTIONS(2763), - [anon_sym_NULL] = ACTIONS(2763), - [anon_sym_nullptr] = ACTIONS(2763), + [537] = { + [sym_identifier] = ACTIONS(2691), + [aux_sym_preproc_include_token1] = ACTIONS(2691), + [aux_sym_preproc_def_token1] = ACTIONS(2691), + [aux_sym_preproc_if_token1] = ACTIONS(2691), + [aux_sym_preproc_if_token2] = ACTIONS(2691), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2691), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2691), + [sym_preproc_directive] = ACTIONS(2691), + [anon_sym_LPAREN2] = ACTIONS(2693), + [anon_sym_BANG] = ACTIONS(2693), + [anon_sym_TILDE] = ACTIONS(2693), + [anon_sym_DASH] = ACTIONS(2691), + [anon_sym_PLUS] = ACTIONS(2691), + [anon_sym_STAR] = ACTIONS(2693), + [anon_sym_AMP_AMP] = ACTIONS(2693), + [anon_sym_AMP] = ACTIONS(2691), + [anon_sym_SEMI] = ACTIONS(2693), + [anon_sym___extension__] = ACTIONS(2691), + [anon_sym_typedef] = ACTIONS(2691), + [anon_sym_virtual] = ACTIONS(2691), + [anon_sym_extern] = ACTIONS(2691), + [anon_sym___attribute__] = ACTIONS(2691), + [anon_sym___attribute] = ACTIONS(2691), + [anon_sym_using] = ACTIONS(2691), + [anon_sym_COLON_COLON] = ACTIONS(2693), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2693), + [anon_sym___declspec] = ACTIONS(2691), + [anon_sym___based] = ACTIONS(2691), + [anon_sym___cdecl] = ACTIONS(2691), + [anon_sym___clrcall] = ACTIONS(2691), + [anon_sym___stdcall] = ACTIONS(2691), + [anon_sym___fastcall] = ACTIONS(2691), + [anon_sym___thiscall] = ACTIONS(2691), + [anon_sym___vectorcall] = ACTIONS(2691), + [anon_sym_LBRACE] = ACTIONS(2693), + [anon_sym_signed] = ACTIONS(2691), + [anon_sym_unsigned] = ACTIONS(2691), + [anon_sym_long] = ACTIONS(2691), + [anon_sym_short] = ACTIONS(2691), + [anon_sym_LBRACK] = ACTIONS(2691), + [anon_sym_static] = ACTIONS(2691), + [anon_sym_register] = ACTIONS(2691), + [anon_sym_inline] = ACTIONS(2691), + [anon_sym___inline] = ACTIONS(2691), + [anon_sym___inline__] = ACTIONS(2691), + [anon_sym___forceinline] = ACTIONS(2691), + [anon_sym_thread_local] = ACTIONS(2691), + [anon_sym___thread] = ACTIONS(2691), + [anon_sym_const] = ACTIONS(2691), + [anon_sym_constexpr] = ACTIONS(2691), + [anon_sym_volatile] = ACTIONS(2691), + [anon_sym_restrict] = ACTIONS(2691), + [anon_sym___restrict__] = ACTIONS(2691), + [anon_sym__Atomic] = ACTIONS(2691), + [anon_sym__Noreturn] = ACTIONS(2691), + [anon_sym_noreturn] = ACTIONS(2691), + [anon_sym__Nonnull] = ACTIONS(2691), + [anon_sym_mutable] = ACTIONS(2691), + [anon_sym_constinit] = ACTIONS(2691), + [anon_sym_consteval] = ACTIONS(2691), + [anon_sym_alignas] = ACTIONS(2691), + [anon_sym__Alignas] = ACTIONS(2691), + [sym_primitive_type] = ACTIONS(2691), + [anon_sym_enum] = ACTIONS(2691), + [anon_sym_class] = ACTIONS(2691), + [anon_sym_struct] = ACTIONS(2691), + [anon_sym_union] = ACTIONS(2691), + [anon_sym_if] = ACTIONS(2691), + [anon_sym_else] = ACTIONS(2691), + [anon_sym_switch] = ACTIONS(2691), + [anon_sym_case] = ACTIONS(2691), + [anon_sym_default] = ACTIONS(2691), + [anon_sym_while] = ACTIONS(2691), + [anon_sym_do] = ACTIONS(2691), + [anon_sym_for] = ACTIONS(2691), + [anon_sym_return] = ACTIONS(2691), + [anon_sym_break] = ACTIONS(2691), + [anon_sym_continue] = ACTIONS(2691), + [anon_sym_goto] = ACTIONS(2691), + [anon_sym___try] = ACTIONS(2691), + [anon_sym___leave] = ACTIONS(2691), + [anon_sym_not] = ACTIONS(2691), + [anon_sym_compl] = ACTIONS(2691), + [anon_sym_DASH_DASH] = ACTIONS(2693), + [anon_sym_PLUS_PLUS] = ACTIONS(2693), + [anon_sym_sizeof] = ACTIONS(2691), + [anon_sym___alignof__] = ACTIONS(2691), + [anon_sym___alignof] = ACTIONS(2691), + [anon_sym__alignof] = ACTIONS(2691), + [anon_sym_alignof] = ACTIONS(2691), + [anon_sym__Alignof] = ACTIONS(2691), + [anon_sym_offsetof] = ACTIONS(2691), + [anon_sym__Generic] = ACTIONS(2691), + [anon_sym_asm] = ACTIONS(2691), + [anon_sym___asm__] = ACTIONS(2691), + [anon_sym___asm] = ACTIONS(2691), + [sym_number_literal] = ACTIONS(2693), + [anon_sym_L_SQUOTE] = ACTIONS(2693), + [anon_sym_u_SQUOTE] = ACTIONS(2693), + [anon_sym_U_SQUOTE] = ACTIONS(2693), + [anon_sym_u8_SQUOTE] = ACTIONS(2693), + [anon_sym_SQUOTE] = ACTIONS(2693), + [anon_sym_L_DQUOTE] = ACTIONS(2693), + [anon_sym_u_DQUOTE] = ACTIONS(2693), + [anon_sym_U_DQUOTE] = ACTIONS(2693), + [anon_sym_u8_DQUOTE] = ACTIONS(2693), + [anon_sym_DQUOTE] = ACTIONS(2693), + [sym_true] = ACTIONS(2691), + [sym_false] = ACTIONS(2691), + [anon_sym_NULL] = ACTIONS(2691), + [anon_sym_nullptr] = ACTIONS(2691), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2763), - [anon_sym_decltype] = ACTIONS(2763), - [anon_sym_explicit] = ACTIONS(2763), - [anon_sym_typename] = ACTIONS(2763), - [anon_sym_template] = ACTIONS(2763), - [anon_sym_operator] = ACTIONS(2763), - [anon_sym_try] = ACTIONS(2763), - [anon_sym_delete] = ACTIONS(2763), - [anon_sym_throw] = ACTIONS(2763), - [anon_sym_namespace] = ACTIONS(2763), - [anon_sym_static_assert] = ACTIONS(2763), - [anon_sym_concept] = ACTIONS(2763), - [anon_sym_co_return] = ACTIONS(2763), - [anon_sym_co_yield] = ACTIONS(2763), - [anon_sym_R_DQUOTE] = ACTIONS(2765), - [anon_sym_LR_DQUOTE] = ACTIONS(2765), - [anon_sym_uR_DQUOTE] = ACTIONS(2765), - [anon_sym_UR_DQUOTE] = ACTIONS(2765), - [anon_sym_u8R_DQUOTE] = ACTIONS(2765), - [anon_sym_co_await] = ACTIONS(2763), - [anon_sym_new] = ACTIONS(2763), - [anon_sym_requires] = ACTIONS(2763), - [sym_this] = ACTIONS(2763), + [sym_auto] = ACTIONS(2691), + [anon_sym_decltype] = ACTIONS(2691), + [anon_sym_explicit] = ACTIONS(2691), + [anon_sym_typename] = ACTIONS(2691), + [anon_sym_template] = ACTIONS(2691), + [anon_sym_operator] = ACTIONS(2691), + [anon_sym_try] = ACTIONS(2691), + [anon_sym_delete] = ACTIONS(2691), + [anon_sym_throw] = ACTIONS(2691), + [anon_sym_namespace] = ACTIONS(2691), + [anon_sym_static_assert] = ACTIONS(2691), + [anon_sym_concept] = ACTIONS(2691), + [anon_sym_co_return] = ACTIONS(2691), + [anon_sym_co_yield] = ACTIONS(2691), + [anon_sym_R_DQUOTE] = ACTIONS(2693), + [anon_sym_LR_DQUOTE] = ACTIONS(2693), + [anon_sym_uR_DQUOTE] = ACTIONS(2693), + [anon_sym_UR_DQUOTE] = ACTIONS(2693), + [anon_sym_u8R_DQUOTE] = ACTIONS(2693), + [anon_sym_co_await] = ACTIONS(2691), + [anon_sym_new] = ACTIONS(2691), + [anon_sym_requires] = ACTIONS(2691), + [sym_this] = ACTIONS(2691), }, - [530] = { + [538] = { + [sym_identifier] = ACTIONS(2707), + [aux_sym_preproc_include_token1] = ACTIONS(2707), + [aux_sym_preproc_def_token1] = ACTIONS(2707), + [aux_sym_preproc_if_token1] = ACTIONS(2707), + [aux_sym_preproc_if_token2] = ACTIONS(2707), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2707), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2707), + [sym_preproc_directive] = ACTIONS(2707), + [anon_sym_LPAREN2] = ACTIONS(2709), + [anon_sym_BANG] = ACTIONS(2709), + [anon_sym_TILDE] = ACTIONS(2709), + [anon_sym_DASH] = ACTIONS(2707), + [anon_sym_PLUS] = ACTIONS(2707), + [anon_sym_STAR] = ACTIONS(2709), + [anon_sym_AMP_AMP] = ACTIONS(2709), + [anon_sym_AMP] = ACTIONS(2707), + [anon_sym_SEMI] = ACTIONS(2709), + [anon_sym___extension__] = ACTIONS(2707), + [anon_sym_typedef] = ACTIONS(2707), + [anon_sym_virtual] = ACTIONS(2707), + [anon_sym_extern] = ACTIONS(2707), + [anon_sym___attribute__] = ACTIONS(2707), + [anon_sym___attribute] = ACTIONS(2707), + [anon_sym_using] = ACTIONS(2707), + [anon_sym_COLON_COLON] = ACTIONS(2709), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2709), + [anon_sym___declspec] = ACTIONS(2707), + [anon_sym___based] = ACTIONS(2707), + [anon_sym___cdecl] = ACTIONS(2707), + [anon_sym___clrcall] = ACTIONS(2707), + [anon_sym___stdcall] = ACTIONS(2707), + [anon_sym___fastcall] = ACTIONS(2707), + [anon_sym___thiscall] = ACTIONS(2707), + [anon_sym___vectorcall] = ACTIONS(2707), + [anon_sym_LBRACE] = ACTIONS(2709), + [anon_sym_signed] = ACTIONS(2707), + [anon_sym_unsigned] = ACTIONS(2707), + [anon_sym_long] = ACTIONS(2707), + [anon_sym_short] = ACTIONS(2707), + [anon_sym_LBRACK] = ACTIONS(2707), + [anon_sym_static] = ACTIONS(2707), + [anon_sym_register] = ACTIONS(2707), + [anon_sym_inline] = ACTIONS(2707), + [anon_sym___inline] = ACTIONS(2707), + [anon_sym___inline__] = ACTIONS(2707), + [anon_sym___forceinline] = ACTIONS(2707), + [anon_sym_thread_local] = ACTIONS(2707), + [anon_sym___thread] = ACTIONS(2707), + [anon_sym_const] = ACTIONS(2707), + [anon_sym_constexpr] = ACTIONS(2707), + [anon_sym_volatile] = ACTIONS(2707), + [anon_sym_restrict] = ACTIONS(2707), + [anon_sym___restrict__] = ACTIONS(2707), + [anon_sym__Atomic] = ACTIONS(2707), + [anon_sym__Noreturn] = ACTIONS(2707), + [anon_sym_noreturn] = ACTIONS(2707), + [anon_sym__Nonnull] = ACTIONS(2707), + [anon_sym_mutable] = ACTIONS(2707), + [anon_sym_constinit] = ACTIONS(2707), + [anon_sym_consteval] = ACTIONS(2707), + [anon_sym_alignas] = ACTIONS(2707), + [anon_sym__Alignas] = ACTIONS(2707), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(2707), + [anon_sym_class] = ACTIONS(2707), + [anon_sym_struct] = ACTIONS(2707), + [anon_sym_union] = ACTIONS(2707), + [anon_sym_if] = ACTIONS(2707), + [anon_sym_else] = ACTIONS(2707), + [anon_sym_switch] = ACTIONS(2707), + [anon_sym_case] = ACTIONS(2707), + [anon_sym_default] = ACTIONS(2707), + [anon_sym_while] = ACTIONS(2707), + [anon_sym_do] = ACTIONS(2707), + [anon_sym_for] = ACTIONS(2707), + [anon_sym_return] = ACTIONS(2707), + [anon_sym_break] = ACTIONS(2707), + [anon_sym_continue] = ACTIONS(2707), + [anon_sym_goto] = ACTIONS(2707), + [anon_sym___try] = ACTIONS(2707), + [anon_sym___leave] = ACTIONS(2707), + [anon_sym_not] = ACTIONS(2707), + [anon_sym_compl] = ACTIONS(2707), + [anon_sym_DASH_DASH] = ACTIONS(2709), + [anon_sym_PLUS_PLUS] = ACTIONS(2709), + [anon_sym_sizeof] = ACTIONS(2707), + [anon_sym___alignof__] = ACTIONS(2707), + [anon_sym___alignof] = ACTIONS(2707), + [anon_sym__alignof] = ACTIONS(2707), + [anon_sym_alignof] = ACTIONS(2707), + [anon_sym__Alignof] = ACTIONS(2707), + [anon_sym_offsetof] = ACTIONS(2707), + [anon_sym__Generic] = ACTIONS(2707), + [anon_sym_asm] = ACTIONS(2707), + [anon_sym___asm__] = ACTIONS(2707), + [anon_sym___asm] = ACTIONS(2707), + [sym_number_literal] = ACTIONS(2709), + [anon_sym_L_SQUOTE] = ACTIONS(2709), + [anon_sym_u_SQUOTE] = ACTIONS(2709), + [anon_sym_U_SQUOTE] = ACTIONS(2709), + [anon_sym_u8_SQUOTE] = ACTIONS(2709), + [anon_sym_SQUOTE] = ACTIONS(2709), + [anon_sym_L_DQUOTE] = ACTIONS(2709), + [anon_sym_u_DQUOTE] = ACTIONS(2709), + [anon_sym_U_DQUOTE] = ACTIONS(2709), + [anon_sym_u8_DQUOTE] = ACTIONS(2709), + [anon_sym_DQUOTE] = ACTIONS(2709), + [sym_true] = ACTIONS(2707), + [sym_false] = ACTIONS(2707), + [anon_sym_NULL] = ACTIONS(2707), + [anon_sym_nullptr] = ACTIONS(2707), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2707), + [anon_sym_decltype] = ACTIONS(2707), + [anon_sym_explicit] = ACTIONS(2707), + [anon_sym_typename] = ACTIONS(2707), + [anon_sym_template] = ACTIONS(2707), + [anon_sym_operator] = ACTIONS(2707), + [anon_sym_try] = ACTIONS(2707), + [anon_sym_delete] = ACTIONS(2707), + [anon_sym_throw] = ACTIONS(2707), + [anon_sym_namespace] = ACTIONS(2707), + [anon_sym_static_assert] = ACTIONS(2707), + [anon_sym_concept] = ACTIONS(2707), + [anon_sym_co_return] = ACTIONS(2707), + [anon_sym_co_yield] = ACTIONS(2707), + [anon_sym_R_DQUOTE] = ACTIONS(2709), + [anon_sym_LR_DQUOTE] = ACTIONS(2709), + [anon_sym_uR_DQUOTE] = ACTIONS(2709), + [anon_sym_UR_DQUOTE] = ACTIONS(2709), + [anon_sym_u8R_DQUOTE] = ACTIONS(2709), + [anon_sym_co_await] = ACTIONS(2707), + [anon_sym_new] = ACTIONS(2707), + [anon_sym_requires] = ACTIONS(2707), + [sym_this] = ACTIONS(2707), + }, + [539] = { + [ts_builtin_sym_end] = ACTIONS(3093), + [sym_identifier] = ACTIONS(3091), + [aux_sym_preproc_include_token1] = ACTIONS(3091), + [aux_sym_preproc_def_token1] = ACTIONS(3091), + [aux_sym_preproc_if_token1] = ACTIONS(3091), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3091), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3091), + [sym_preproc_directive] = ACTIONS(3091), + [anon_sym_LPAREN2] = ACTIONS(3093), + [anon_sym_BANG] = ACTIONS(3093), + [anon_sym_TILDE] = ACTIONS(3093), + [anon_sym_DASH] = ACTIONS(3091), + [anon_sym_PLUS] = ACTIONS(3091), + [anon_sym_STAR] = ACTIONS(3093), + [anon_sym_AMP_AMP] = ACTIONS(3093), + [anon_sym_AMP] = ACTIONS(3091), + [anon_sym_SEMI] = ACTIONS(3093), + [anon_sym___extension__] = ACTIONS(3091), + [anon_sym_typedef] = ACTIONS(3091), + [anon_sym_virtual] = ACTIONS(3091), + [anon_sym_extern] = ACTIONS(3091), + [anon_sym___attribute__] = ACTIONS(3091), + [anon_sym___attribute] = ACTIONS(3091), + [anon_sym_using] = ACTIONS(3091), + [anon_sym_COLON_COLON] = ACTIONS(3093), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3093), + [anon_sym___declspec] = ACTIONS(3091), + [anon_sym___based] = ACTIONS(3091), + [anon_sym___cdecl] = ACTIONS(3091), + [anon_sym___clrcall] = ACTIONS(3091), + [anon_sym___stdcall] = ACTIONS(3091), + [anon_sym___fastcall] = ACTIONS(3091), + [anon_sym___thiscall] = ACTIONS(3091), + [anon_sym___vectorcall] = ACTIONS(3091), + [anon_sym_LBRACE] = ACTIONS(3093), + [anon_sym_signed] = ACTIONS(3091), + [anon_sym_unsigned] = ACTIONS(3091), + [anon_sym_long] = ACTIONS(3091), + [anon_sym_short] = ACTIONS(3091), + [anon_sym_LBRACK] = ACTIONS(3091), + [anon_sym_static] = ACTIONS(3091), + [anon_sym_register] = ACTIONS(3091), + [anon_sym_inline] = ACTIONS(3091), + [anon_sym___inline] = ACTIONS(3091), + [anon_sym___inline__] = ACTIONS(3091), + [anon_sym___forceinline] = ACTIONS(3091), + [anon_sym_thread_local] = ACTIONS(3091), + [anon_sym___thread] = ACTIONS(3091), + [anon_sym_const] = ACTIONS(3091), + [anon_sym_constexpr] = ACTIONS(3091), + [anon_sym_volatile] = ACTIONS(3091), + [anon_sym_restrict] = ACTIONS(3091), + [anon_sym___restrict__] = ACTIONS(3091), + [anon_sym__Atomic] = ACTIONS(3091), + [anon_sym__Noreturn] = ACTIONS(3091), + [anon_sym_noreturn] = ACTIONS(3091), + [anon_sym__Nonnull] = ACTIONS(3091), + [anon_sym_mutable] = ACTIONS(3091), + [anon_sym_constinit] = ACTIONS(3091), + [anon_sym_consteval] = ACTIONS(3091), + [anon_sym_alignas] = ACTIONS(3091), + [anon_sym__Alignas] = ACTIONS(3091), + [sym_primitive_type] = ACTIONS(3091), + [anon_sym_enum] = ACTIONS(3091), + [anon_sym_class] = ACTIONS(3091), + [anon_sym_struct] = ACTIONS(3091), + [anon_sym_union] = ACTIONS(3091), + [anon_sym_if] = ACTIONS(3091), + [anon_sym_switch] = ACTIONS(3091), + [anon_sym_case] = ACTIONS(3091), + [anon_sym_default] = ACTIONS(3091), + [anon_sym_while] = ACTIONS(3091), + [anon_sym_do] = ACTIONS(3091), + [anon_sym_for] = ACTIONS(3091), + [anon_sym_return] = ACTIONS(3091), + [anon_sym_break] = ACTIONS(3091), + [anon_sym_continue] = ACTIONS(3091), + [anon_sym_goto] = ACTIONS(3091), + [anon_sym_not] = ACTIONS(3091), + [anon_sym_compl] = ACTIONS(3091), + [anon_sym_DASH_DASH] = ACTIONS(3093), + [anon_sym_PLUS_PLUS] = ACTIONS(3093), + [anon_sym_sizeof] = ACTIONS(3091), + [anon_sym___alignof__] = ACTIONS(3091), + [anon_sym___alignof] = ACTIONS(3091), + [anon_sym__alignof] = ACTIONS(3091), + [anon_sym_alignof] = ACTIONS(3091), + [anon_sym__Alignof] = ACTIONS(3091), + [anon_sym_offsetof] = ACTIONS(3091), + [anon_sym__Generic] = ACTIONS(3091), + [anon_sym_asm] = ACTIONS(3091), + [anon_sym___asm__] = ACTIONS(3091), + [anon_sym___asm] = ACTIONS(3091), + [sym_number_literal] = ACTIONS(3093), + [anon_sym_L_SQUOTE] = ACTIONS(3093), + [anon_sym_u_SQUOTE] = ACTIONS(3093), + [anon_sym_U_SQUOTE] = ACTIONS(3093), + [anon_sym_u8_SQUOTE] = ACTIONS(3093), + [anon_sym_SQUOTE] = ACTIONS(3093), + [anon_sym_L_DQUOTE] = ACTIONS(3093), + [anon_sym_u_DQUOTE] = ACTIONS(3093), + [anon_sym_U_DQUOTE] = ACTIONS(3093), + [anon_sym_u8_DQUOTE] = ACTIONS(3093), + [anon_sym_DQUOTE] = ACTIONS(3093), + [sym_true] = ACTIONS(3091), + [sym_false] = ACTIONS(3091), + [anon_sym_NULL] = ACTIONS(3091), + [anon_sym_nullptr] = ACTIONS(3091), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3091), + [anon_sym_decltype] = ACTIONS(3091), + [anon_sym_explicit] = ACTIONS(3091), + [anon_sym_typename] = ACTIONS(3091), + [anon_sym_export] = ACTIONS(3091), + [anon_sym_module] = ACTIONS(3091), + [anon_sym_import] = ACTIONS(3091), + [anon_sym_template] = ACTIONS(3091), + [anon_sym_operator] = ACTIONS(3091), + [anon_sym_try] = ACTIONS(3091), + [anon_sym_delete] = ACTIONS(3091), + [anon_sym_throw] = ACTIONS(3091), + [anon_sym_namespace] = ACTIONS(3091), + [anon_sym_static_assert] = ACTIONS(3091), + [anon_sym_concept] = ACTIONS(3091), + [anon_sym_co_return] = ACTIONS(3091), + [anon_sym_co_yield] = ACTIONS(3091), + [anon_sym_R_DQUOTE] = ACTIONS(3093), + [anon_sym_LR_DQUOTE] = ACTIONS(3093), + [anon_sym_uR_DQUOTE] = ACTIONS(3093), + [anon_sym_UR_DQUOTE] = ACTIONS(3093), + [anon_sym_u8R_DQUOTE] = ACTIONS(3093), + [anon_sym_co_await] = ACTIONS(3091), + [anon_sym_new] = ACTIONS(3091), + [anon_sym_requires] = ACTIONS(3091), + [sym_this] = ACTIONS(3091), + }, + [540] = { + [sym_identifier] = ACTIONS(2675), + [aux_sym_preproc_include_token1] = ACTIONS(2675), + [aux_sym_preproc_def_token1] = ACTIONS(2675), + [aux_sym_preproc_if_token1] = ACTIONS(2675), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2675), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2675), + [sym_preproc_directive] = ACTIONS(2675), + [anon_sym_LPAREN2] = ACTIONS(2677), + [anon_sym_BANG] = ACTIONS(2677), + [anon_sym_TILDE] = ACTIONS(2677), + [anon_sym_DASH] = ACTIONS(2675), + [anon_sym_PLUS] = ACTIONS(2675), + [anon_sym_STAR] = ACTIONS(2677), + [anon_sym_AMP_AMP] = ACTIONS(2677), + [anon_sym_AMP] = ACTIONS(2675), + [anon_sym_SEMI] = ACTIONS(2677), + [anon_sym___extension__] = ACTIONS(2675), + [anon_sym_typedef] = ACTIONS(2675), + [anon_sym_virtual] = ACTIONS(2675), + [anon_sym_extern] = ACTIONS(2675), + [anon_sym___attribute__] = ACTIONS(2675), + [anon_sym___attribute] = ACTIONS(2675), + [anon_sym_using] = ACTIONS(2675), + [anon_sym_COLON_COLON] = ACTIONS(2677), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2677), + [anon_sym___declspec] = ACTIONS(2675), + [anon_sym___based] = ACTIONS(2675), + [anon_sym___cdecl] = ACTIONS(2675), + [anon_sym___clrcall] = ACTIONS(2675), + [anon_sym___stdcall] = ACTIONS(2675), + [anon_sym___fastcall] = ACTIONS(2675), + [anon_sym___thiscall] = ACTIONS(2675), + [anon_sym___vectorcall] = ACTIONS(2675), + [anon_sym_LBRACE] = ACTIONS(2677), + [anon_sym_RBRACE] = ACTIONS(2677), + [anon_sym_signed] = ACTIONS(2675), + [anon_sym_unsigned] = ACTIONS(2675), + [anon_sym_long] = ACTIONS(2675), + [anon_sym_short] = ACTIONS(2675), + [anon_sym_LBRACK] = ACTIONS(2675), + [anon_sym_static] = ACTIONS(2675), + [anon_sym_register] = ACTIONS(2675), + [anon_sym_inline] = ACTIONS(2675), + [anon_sym___inline] = ACTIONS(2675), + [anon_sym___inline__] = ACTIONS(2675), + [anon_sym___forceinline] = ACTIONS(2675), + [anon_sym_thread_local] = ACTIONS(2675), + [anon_sym___thread] = ACTIONS(2675), + [anon_sym_const] = ACTIONS(2675), + [anon_sym_constexpr] = ACTIONS(2675), + [anon_sym_volatile] = ACTIONS(2675), + [anon_sym_restrict] = ACTIONS(2675), + [anon_sym___restrict__] = ACTIONS(2675), + [anon_sym__Atomic] = ACTIONS(2675), + [anon_sym__Noreturn] = ACTIONS(2675), + [anon_sym_noreturn] = ACTIONS(2675), + [anon_sym__Nonnull] = ACTIONS(2675), + [anon_sym_mutable] = ACTIONS(2675), + [anon_sym_constinit] = ACTIONS(2675), + [anon_sym_consteval] = ACTIONS(2675), + [anon_sym_alignas] = ACTIONS(2675), + [anon_sym__Alignas] = ACTIONS(2675), + [sym_primitive_type] = ACTIONS(2675), + [anon_sym_enum] = ACTIONS(2675), + [anon_sym_class] = ACTIONS(2675), + [anon_sym_struct] = ACTIONS(2675), + [anon_sym_union] = ACTIONS(2675), + [anon_sym_if] = ACTIONS(2675), + [anon_sym_else] = ACTIONS(2675), + [anon_sym_switch] = ACTIONS(2675), + [anon_sym_case] = ACTIONS(2675), + [anon_sym_default] = ACTIONS(2675), + [anon_sym_while] = ACTIONS(2675), + [anon_sym_do] = ACTIONS(2675), + [anon_sym_for] = ACTIONS(2675), + [anon_sym_return] = ACTIONS(2675), + [anon_sym_break] = ACTIONS(2675), + [anon_sym_continue] = ACTIONS(2675), + [anon_sym_goto] = ACTIONS(2675), + [anon_sym___try] = ACTIONS(2675), + [anon_sym___leave] = ACTIONS(2675), + [anon_sym_not] = ACTIONS(2675), + [anon_sym_compl] = ACTIONS(2675), + [anon_sym_DASH_DASH] = ACTIONS(2677), + [anon_sym_PLUS_PLUS] = ACTIONS(2677), + [anon_sym_sizeof] = ACTIONS(2675), + [anon_sym___alignof__] = ACTIONS(2675), + [anon_sym___alignof] = ACTIONS(2675), + [anon_sym__alignof] = ACTIONS(2675), + [anon_sym_alignof] = ACTIONS(2675), + [anon_sym__Alignof] = ACTIONS(2675), + [anon_sym_offsetof] = ACTIONS(2675), + [anon_sym__Generic] = ACTIONS(2675), + [anon_sym_asm] = ACTIONS(2675), + [anon_sym___asm__] = ACTIONS(2675), + [anon_sym___asm] = ACTIONS(2675), + [sym_number_literal] = ACTIONS(2677), + [anon_sym_L_SQUOTE] = ACTIONS(2677), + [anon_sym_u_SQUOTE] = ACTIONS(2677), + [anon_sym_U_SQUOTE] = ACTIONS(2677), + [anon_sym_u8_SQUOTE] = ACTIONS(2677), + [anon_sym_SQUOTE] = ACTIONS(2677), + [anon_sym_L_DQUOTE] = ACTIONS(2677), + [anon_sym_u_DQUOTE] = ACTIONS(2677), + [anon_sym_U_DQUOTE] = ACTIONS(2677), + [anon_sym_u8_DQUOTE] = ACTIONS(2677), + [anon_sym_DQUOTE] = ACTIONS(2677), + [sym_true] = ACTIONS(2675), + [sym_false] = ACTIONS(2675), + [anon_sym_NULL] = ACTIONS(2675), + [anon_sym_nullptr] = ACTIONS(2675), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2675), + [anon_sym_decltype] = ACTIONS(2675), + [anon_sym_explicit] = ACTIONS(2675), + [anon_sym_typename] = ACTIONS(2675), + [anon_sym_template] = ACTIONS(2675), + [anon_sym_operator] = ACTIONS(2675), + [anon_sym_try] = ACTIONS(2675), + [anon_sym_delete] = ACTIONS(2675), + [anon_sym_throw] = ACTIONS(2675), + [anon_sym_namespace] = ACTIONS(2675), + [anon_sym_static_assert] = ACTIONS(2675), + [anon_sym_concept] = ACTIONS(2675), + [anon_sym_co_return] = ACTIONS(2675), + [anon_sym_co_yield] = ACTIONS(2675), + [anon_sym_R_DQUOTE] = ACTIONS(2677), + [anon_sym_LR_DQUOTE] = ACTIONS(2677), + [anon_sym_uR_DQUOTE] = ACTIONS(2677), + [anon_sym_UR_DQUOTE] = ACTIONS(2677), + [anon_sym_u8R_DQUOTE] = ACTIONS(2677), + [anon_sym_co_await] = ACTIONS(2675), + [anon_sym_new] = ACTIONS(2675), + [anon_sym_requires] = ACTIONS(2675), + [sym_this] = ACTIONS(2675), + }, + [541] = { + [ts_builtin_sym_end] = ACTIONS(3431), + [sym_identifier] = ACTIONS(3433), + [aux_sym_preproc_include_token1] = ACTIONS(3433), + [aux_sym_preproc_def_token1] = ACTIONS(3433), + [aux_sym_preproc_if_token1] = ACTIONS(3433), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3433), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3433), + [sym_preproc_directive] = ACTIONS(3433), + [anon_sym_LPAREN2] = ACTIONS(3431), + [anon_sym_BANG] = ACTIONS(3431), + [anon_sym_TILDE] = ACTIONS(3431), + [anon_sym_DASH] = ACTIONS(3433), + [anon_sym_PLUS] = ACTIONS(3433), + [anon_sym_STAR] = ACTIONS(3431), + [anon_sym_AMP_AMP] = ACTIONS(3431), + [anon_sym_AMP] = ACTIONS(3433), + [anon_sym_SEMI] = ACTIONS(3431), + [anon_sym___extension__] = ACTIONS(3433), + [anon_sym_typedef] = ACTIONS(3433), + [anon_sym_virtual] = ACTIONS(3433), + [anon_sym_extern] = ACTIONS(3433), + [anon_sym___attribute__] = ACTIONS(3433), + [anon_sym___attribute] = ACTIONS(3433), + [anon_sym_using] = ACTIONS(3433), + [anon_sym_COLON_COLON] = ACTIONS(3431), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3431), + [anon_sym___declspec] = ACTIONS(3433), + [anon_sym___based] = ACTIONS(3433), + [anon_sym___cdecl] = ACTIONS(3433), + [anon_sym___clrcall] = ACTIONS(3433), + [anon_sym___stdcall] = ACTIONS(3433), + [anon_sym___fastcall] = ACTIONS(3433), + [anon_sym___thiscall] = ACTIONS(3433), + [anon_sym___vectorcall] = ACTIONS(3433), + [anon_sym_LBRACE] = ACTIONS(3431), + [anon_sym_signed] = ACTIONS(3433), + [anon_sym_unsigned] = ACTIONS(3433), + [anon_sym_long] = ACTIONS(3433), + [anon_sym_short] = ACTIONS(3433), + [anon_sym_LBRACK] = ACTIONS(3433), + [anon_sym_static] = ACTIONS(3433), + [anon_sym_register] = ACTIONS(3433), + [anon_sym_inline] = ACTIONS(3433), + [anon_sym___inline] = ACTIONS(3433), + [anon_sym___inline__] = ACTIONS(3433), + [anon_sym___forceinline] = ACTIONS(3433), + [anon_sym_thread_local] = ACTIONS(3433), + [anon_sym___thread] = ACTIONS(3433), + [anon_sym_const] = ACTIONS(3433), + [anon_sym_constexpr] = ACTIONS(3433), + [anon_sym_volatile] = ACTIONS(3433), + [anon_sym_restrict] = ACTIONS(3433), + [anon_sym___restrict__] = ACTIONS(3433), + [anon_sym__Atomic] = ACTIONS(3433), + [anon_sym__Noreturn] = ACTIONS(3433), + [anon_sym_noreturn] = ACTIONS(3433), + [anon_sym__Nonnull] = ACTIONS(3433), + [anon_sym_mutable] = ACTIONS(3433), + [anon_sym_constinit] = ACTIONS(3433), + [anon_sym_consteval] = ACTIONS(3433), + [anon_sym_alignas] = ACTIONS(3433), + [anon_sym__Alignas] = ACTIONS(3433), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_enum] = ACTIONS(3433), + [anon_sym_class] = ACTIONS(3433), + [anon_sym_struct] = ACTIONS(3433), + [anon_sym_union] = ACTIONS(3433), + [anon_sym_if] = ACTIONS(3433), + [anon_sym_switch] = ACTIONS(3433), + [anon_sym_case] = ACTIONS(3433), + [anon_sym_default] = ACTIONS(3433), + [anon_sym_while] = ACTIONS(3433), + [anon_sym_do] = ACTIONS(3433), + [anon_sym_for] = ACTIONS(3433), + [anon_sym_return] = ACTIONS(3433), + [anon_sym_break] = ACTIONS(3433), + [anon_sym_continue] = ACTIONS(3433), + [anon_sym_goto] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(3433), + [anon_sym_compl] = ACTIONS(3433), + [anon_sym_DASH_DASH] = ACTIONS(3431), + [anon_sym_PLUS_PLUS] = ACTIONS(3431), + [anon_sym_sizeof] = ACTIONS(3433), + [anon_sym___alignof__] = ACTIONS(3433), + [anon_sym___alignof] = ACTIONS(3433), + [anon_sym__alignof] = ACTIONS(3433), + [anon_sym_alignof] = ACTIONS(3433), + [anon_sym__Alignof] = ACTIONS(3433), + [anon_sym_offsetof] = ACTIONS(3433), + [anon_sym__Generic] = ACTIONS(3433), + [anon_sym_asm] = ACTIONS(3433), + [anon_sym___asm__] = ACTIONS(3433), + [anon_sym___asm] = ACTIONS(3433), + [sym_number_literal] = ACTIONS(3431), + [anon_sym_L_SQUOTE] = ACTIONS(3431), + [anon_sym_u_SQUOTE] = ACTIONS(3431), + [anon_sym_U_SQUOTE] = ACTIONS(3431), + [anon_sym_u8_SQUOTE] = ACTIONS(3431), + [anon_sym_SQUOTE] = ACTIONS(3431), + [anon_sym_L_DQUOTE] = ACTIONS(3431), + [anon_sym_u_DQUOTE] = ACTIONS(3431), + [anon_sym_U_DQUOTE] = ACTIONS(3431), + [anon_sym_u8_DQUOTE] = ACTIONS(3431), + [anon_sym_DQUOTE] = ACTIONS(3431), + [sym_true] = ACTIONS(3433), + [sym_false] = ACTIONS(3433), + [anon_sym_NULL] = ACTIONS(3433), + [anon_sym_nullptr] = ACTIONS(3433), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3433), + [anon_sym_decltype] = ACTIONS(3433), + [anon_sym_explicit] = ACTIONS(3433), + [anon_sym_typename] = ACTIONS(3433), + [anon_sym_export] = ACTIONS(3433), + [anon_sym_module] = ACTIONS(3433), + [anon_sym_import] = ACTIONS(3433), + [anon_sym_template] = ACTIONS(3433), + [anon_sym_operator] = ACTIONS(3433), + [anon_sym_try] = ACTIONS(3433), + [anon_sym_delete] = ACTIONS(3433), + [anon_sym_throw] = ACTIONS(3433), + [anon_sym_namespace] = ACTIONS(3433), + [anon_sym_static_assert] = ACTIONS(3433), + [anon_sym_concept] = ACTIONS(3433), + [anon_sym_co_return] = ACTIONS(3433), + [anon_sym_co_yield] = ACTIONS(3433), + [anon_sym_R_DQUOTE] = ACTIONS(3431), + [anon_sym_LR_DQUOTE] = ACTIONS(3431), + [anon_sym_uR_DQUOTE] = ACTIONS(3431), + [anon_sym_UR_DQUOTE] = ACTIONS(3431), + [anon_sym_u8R_DQUOTE] = ACTIONS(3431), + [anon_sym_co_await] = ACTIONS(3433), + [anon_sym_new] = ACTIONS(3433), + [anon_sym_requires] = ACTIONS(3433), + [sym_this] = ACTIONS(3433), + }, + [542] = { + [ts_builtin_sym_end] = ACTIONS(2861), + [sym_identifier] = ACTIONS(2859), + [aux_sym_preproc_include_token1] = ACTIONS(2859), + [aux_sym_preproc_def_token1] = ACTIONS(2859), + [aux_sym_preproc_if_token1] = ACTIONS(2859), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), + [sym_preproc_directive] = ACTIONS(2859), + [anon_sym_LPAREN2] = ACTIONS(2861), + [anon_sym_BANG] = ACTIONS(2861), + [anon_sym_TILDE] = ACTIONS(2861), + [anon_sym_DASH] = ACTIONS(2859), + [anon_sym_PLUS] = ACTIONS(2859), + [anon_sym_STAR] = ACTIONS(2861), + [anon_sym_AMP_AMP] = ACTIONS(2861), + [anon_sym_AMP] = ACTIONS(2859), + [anon_sym_SEMI] = ACTIONS(2861), + [anon_sym___extension__] = ACTIONS(2859), + [anon_sym_typedef] = ACTIONS(2859), + [anon_sym_virtual] = ACTIONS(2859), + [anon_sym_extern] = ACTIONS(2859), + [anon_sym___attribute__] = ACTIONS(2859), + [anon_sym___attribute] = ACTIONS(2859), + [anon_sym_using] = ACTIONS(2859), + [anon_sym_COLON_COLON] = ACTIONS(2861), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), + [anon_sym___declspec] = ACTIONS(2859), + [anon_sym___based] = ACTIONS(2859), + [anon_sym___cdecl] = ACTIONS(2859), + [anon_sym___clrcall] = ACTIONS(2859), + [anon_sym___stdcall] = ACTIONS(2859), + [anon_sym___fastcall] = ACTIONS(2859), + [anon_sym___thiscall] = ACTIONS(2859), + [anon_sym___vectorcall] = ACTIONS(2859), + [anon_sym_LBRACE] = ACTIONS(2861), + [anon_sym_signed] = ACTIONS(2859), + [anon_sym_unsigned] = ACTIONS(2859), + [anon_sym_long] = ACTIONS(2859), + [anon_sym_short] = ACTIONS(2859), + [anon_sym_LBRACK] = ACTIONS(2859), + [anon_sym_static] = ACTIONS(2859), + [anon_sym_register] = ACTIONS(2859), + [anon_sym_inline] = ACTIONS(2859), + [anon_sym___inline] = ACTIONS(2859), + [anon_sym___inline__] = ACTIONS(2859), + [anon_sym___forceinline] = ACTIONS(2859), + [anon_sym_thread_local] = ACTIONS(2859), + [anon_sym___thread] = ACTIONS(2859), + [anon_sym_const] = ACTIONS(2859), + [anon_sym_constexpr] = ACTIONS(2859), + [anon_sym_volatile] = ACTIONS(2859), + [anon_sym_restrict] = ACTIONS(2859), + [anon_sym___restrict__] = ACTIONS(2859), + [anon_sym__Atomic] = ACTIONS(2859), + [anon_sym__Noreturn] = ACTIONS(2859), + [anon_sym_noreturn] = ACTIONS(2859), + [anon_sym__Nonnull] = ACTIONS(2859), + [anon_sym_mutable] = ACTIONS(2859), + [anon_sym_constinit] = ACTIONS(2859), + [anon_sym_consteval] = ACTIONS(2859), + [anon_sym_alignas] = ACTIONS(2859), + [anon_sym__Alignas] = ACTIONS(2859), + [sym_primitive_type] = ACTIONS(2859), + [anon_sym_enum] = ACTIONS(2859), + [anon_sym_class] = ACTIONS(2859), + [anon_sym_struct] = ACTIONS(2859), + [anon_sym_union] = ACTIONS(2859), + [anon_sym_if] = ACTIONS(2859), + [anon_sym_switch] = ACTIONS(2859), + [anon_sym_case] = ACTIONS(2859), + [anon_sym_default] = ACTIONS(2859), + [anon_sym_while] = ACTIONS(2859), + [anon_sym_do] = ACTIONS(2859), + [anon_sym_for] = ACTIONS(2859), + [anon_sym_return] = ACTIONS(2859), + [anon_sym_break] = ACTIONS(2859), + [anon_sym_continue] = ACTIONS(2859), + [anon_sym_goto] = ACTIONS(2859), + [anon_sym_not] = ACTIONS(2859), + [anon_sym_compl] = ACTIONS(2859), + [anon_sym_DASH_DASH] = ACTIONS(2861), + [anon_sym_PLUS_PLUS] = ACTIONS(2861), + [anon_sym_sizeof] = ACTIONS(2859), + [anon_sym___alignof__] = ACTIONS(2859), + [anon_sym___alignof] = ACTIONS(2859), + [anon_sym__alignof] = ACTIONS(2859), + [anon_sym_alignof] = ACTIONS(2859), + [anon_sym__Alignof] = ACTIONS(2859), + [anon_sym_offsetof] = ACTIONS(2859), + [anon_sym__Generic] = ACTIONS(2859), + [anon_sym_asm] = ACTIONS(2859), + [anon_sym___asm__] = ACTIONS(2859), + [anon_sym___asm] = ACTIONS(2859), + [sym_number_literal] = ACTIONS(2861), + [anon_sym_L_SQUOTE] = ACTIONS(2861), + [anon_sym_u_SQUOTE] = ACTIONS(2861), + [anon_sym_U_SQUOTE] = ACTIONS(2861), + [anon_sym_u8_SQUOTE] = ACTIONS(2861), + [anon_sym_SQUOTE] = ACTIONS(2861), + [anon_sym_L_DQUOTE] = ACTIONS(2861), + [anon_sym_u_DQUOTE] = ACTIONS(2861), + [anon_sym_U_DQUOTE] = ACTIONS(2861), + [anon_sym_u8_DQUOTE] = ACTIONS(2861), + [anon_sym_DQUOTE] = ACTIONS(2861), + [sym_true] = ACTIONS(2859), + [sym_false] = ACTIONS(2859), + [anon_sym_NULL] = ACTIONS(2859), + [anon_sym_nullptr] = ACTIONS(2859), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2859), + [anon_sym_decltype] = ACTIONS(2859), + [anon_sym_explicit] = ACTIONS(2859), + [anon_sym_typename] = ACTIONS(2859), + [anon_sym_export] = ACTIONS(2859), + [anon_sym_module] = ACTIONS(2859), + [anon_sym_import] = ACTIONS(2859), + [anon_sym_template] = ACTIONS(2859), + [anon_sym_operator] = ACTIONS(2859), + [anon_sym_try] = ACTIONS(2859), + [anon_sym_delete] = ACTIONS(2859), + [anon_sym_throw] = ACTIONS(2859), + [anon_sym_namespace] = ACTIONS(2859), + [anon_sym_static_assert] = ACTIONS(2859), + [anon_sym_concept] = ACTIONS(2859), + [anon_sym_co_return] = ACTIONS(2859), + [anon_sym_co_yield] = ACTIONS(2859), + [anon_sym_R_DQUOTE] = ACTIONS(2861), + [anon_sym_LR_DQUOTE] = ACTIONS(2861), + [anon_sym_uR_DQUOTE] = ACTIONS(2861), + [anon_sym_UR_DQUOTE] = ACTIONS(2861), + [anon_sym_u8R_DQUOTE] = ACTIONS(2861), + [anon_sym_co_await] = ACTIONS(2859), + [anon_sym_new] = ACTIONS(2859), + [anon_sym_requires] = ACTIONS(2859), + [sym_this] = ACTIONS(2859), + }, + [543] = { [sym_identifier] = ACTIONS(2655), [aux_sym_preproc_include_token1] = ACTIONS(2655), [aux_sym_preproc_def_token1] = ACTIONS(2655), [aux_sym_preproc_if_token1] = ACTIONS(2655), + [aux_sym_preproc_if_token2] = ACTIONS(2655), [aux_sym_preproc_ifdef_token1] = ACTIONS(2655), [aux_sym_preproc_ifdef_token2] = ACTIONS(2655), [sym_preproc_directive] = ACTIONS(2655), @@ -119069,7 +121162,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(2655), [anon_sym___vectorcall] = ACTIONS(2655), [anon_sym_LBRACE] = ACTIONS(2657), - [anon_sym_RBRACE] = ACTIONS(2657), [anon_sym_signed] = ACTIONS(2655), [anon_sym_unsigned] = ACTIONS(2655), [anon_sym_long] = ACTIONS(2655), @@ -119171,1929 +121263,1519 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2655), [sym_this] = ACTIONS(2655), }, - [531] = { - [ts_builtin_sym_end] = ACTIONS(3407), - [sym_identifier] = ACTIONS(3409), - [aux_sym_preproc_include_token1] = ACTIONS(3409), - [aux_sym_preproc_def_token1] = ACTIONS(3409), - [aux_sym_preproc_if_token1] = ACTIONS(3409), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3409), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3409), - [sym_preproc_directive] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(3407), - [anon_sym_BANG] = ACTIONS(3407), - [anon_sym_TILDE] = ACTIONS(3407), - [anon_sym_DASH] = ACTIONS(3409), - [anon_sym_PLUS] = ACTIONS(3409), - [anon_sym_STAR] = ACTIONS(3407), - [anon_sym_AMP_AMP] = ACTIONS(3407), - [anon_sym_AMP] = ACTIONS(3409), - [anon_sym_SEMI] = ACTIONS(3407), - [anon_sym___extension__] = ACTIONS(3409), - [anon_sym_typedef] = ACTIONS(3409), - [anon_sym_virtual] = ACTIONS(3409), - [anon_sym_extern] = ACTIONS(3409), - [anon_sym___attribute__] = ACTIONS(3409), - [anon_sym___attribute] = ACTIONS(3409), - [anon_sym_using] = ACTIONS(3409), - [anon_sym_COLON_COLON] = ACTIONS(3407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3407), - [anon_sym___declspec] = ACTIONS(3409), - [anon_sym___based] = ACTIONS(3409), - [anon_sym___cdecl] = ACTIONS(3409), - [anon_sym___clrcall] = ACTIONS(3409), - [anon_sym___stdcall] = ACTIONS(3409), - [anon_sym___fastcall] = ACTIONS(3409), - [anon_sym___thiscall] = ACTIONS(3409), - [anon_sym___vectorcall] = ACTIONS(3409), - [anon_sym_LBRACE] = ACTIONS(3407), - [anon_sym_signed] = ACTIONS(3409), - [anon_sym_unsigned] = ACTIONS(3409), - [anon_sym_long] = ACTIONS(3409), - [anon_sym_short] = ACTIONS(3409), - [anon_sym_LBRACK] = ACTIONS(3409), - [anon_sym_static] = ACTIONS(3409), - [anon_sym_register] = ACTIONS(3409), - [anon_sym_inline] = ACTIONS(3409), - [anon_sym___inline] = ACTIONS(3409), - [anon_sym___inline__] = ACTIONS(3409), - [anon_sym___forceinline] = ACTIONS(3409), - [anon_sym_thread_local] = ACTIONS(3409), - [anon_sym___thread] = ACTIONS(3409), - [anon_sym_const] = ACTIONS(3409), - [anon_sym_constexpr] = ACTIONS(3409), - [anon_sym_volatile] = ACTIONS(3409), - [anon_sym_restrict] = ACTIONS(3409), - [anon_sym___restrict__] = ACTIONS(3409), - [anon_sym__Atomic] = ACTIONS(3409), - [anon_sym__Noreturn] = ACTIONS(3409), - [anon_sym_noreturn] = ACTIONS(3409), - [anon_sym__Nonnull] = ACTIONS(3409), - [anon_sym_mutable] = ACTIONS(3409), - [anon_sym_constinit] = ACTIONS(3409), - [anon_sym_consteval] = ACTIONS(3409), - [anon_sym_alignas] = ACTIONS(3409), - [anon_sym__Alignas] = ACTIONS(3409), - [sym_primitive_type] = ACTIONS(3409), - [anon_sym_enum] = ACTIONS(3409), - [anon_sym_class] = ACTIONS(3409), - [anon_sym_struct] = ACTIONS(3409), - [anon_sym_union] = ACTIONS(3409), - [anon_sym_if] = ACTIONS(3409), - [anon_sym_switch] = ACTIONS(3409), - [anon_sym_case] = ACTIONS(3409), - [anon_sym_default] = ACTIONS(3409), - [anon_sym_while] = ACTIONS(3409), - [anon_sym_do] = ACTIONS(3409), - [anon_sym_for] = ACTIONS(3409), - [anon_sym_return] = ACTIONS(3409), - [anon_sym_break] = ACTIONS(3409), - [anon_sym_continue] = ACTIONS(3409), - [anon_sym_goto] = ACTIONS(3409), - [anon_sym_not] = ACTIONS(3409), - [anon_sym_compl] = ACTIONS(3409), - [anon_sym_DASH_DASH] = ACTIONS(3407), - [anon_sym_PLUS_PLUS] = ACTIONS(3407), - [anon_sym_sizeof] = ACTIONS(3409), - [anon_sym___alignof__] = ACTIONS(3409), - [anon_sym___alignof] = ACTIONS(3409), - [anon_sym__alignof] = ACTIONS(3409), - [anon_sym_alignof] = ACTIONS(3409), - [anon_sym__Alignof] = ACTIONS(3409), - [anon_sym_offsetof] = ACTIONS(3409), - [anon_sym__Generic] = ACTIONS(3409), - [anon_sym_asm] = ACTIONS(3409), - [anon_sym___asm__] = ACTIONS(3409), - [anon_sym___asm] = ACTIONS(3409), - [sym_number_literal] = ACTIONS(3407), - [anon_sym_L_SQUOTE] = ACTIONS(3407), - [anon_sym_u_SQUOTE] = ACTIONS(3407), - [anon_sym_U_SQUOTE] = ACTIONS(3407), - [anon_sym_u8_SQUOTE] = ACTIONS(3407), - [anon_sym_SQUOTE] = ACTIONS(3407), - [anon_sym_L_DQUOTE] = ACTIONS(3407), - [anon_sym_u_DQUOTE] = ACTIONS(3407), - [anon_sym_U_DQUOTE] = ACTIONS(3407), - [anon_sym_u8_DQUOTE] = ACTIONS(3407), - [anon_sym_DQUOTE] = ACTIONS(3407), - [sym_true] = ACTIONS(3409), - [sym_false] = ACTIONS(3409), - [anon_sym_NULL] = ACTIONS(3409), - [anon_sym_nullptr] = ACTIONS(3409), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3409), - [anon_sym_decltype] = ACTIONS(3409), - [anon_sym_explicit] = ACTIONS(3409), - [anon_sym_typename] = ACTIONS(3409), - [anon_sym_export] = ACTIONS(3409), - [anon_sym_module] = ACTIONS(3409), - [anon_sym_import] = ACTIONS(3409), - [anon_sym_template] = ACTIONS(3409), - [anon_sym_operator] = ACTIONS(3409), - [anon_sym_try] = ACTIONS(3409), - [anon_sym_delete] = ACTIONS(3409), - [anon_sym_throw] = ACTIONS(3409), - [anon_sym_namespace] = ACTIONS(3409), - [anon_sym_static_assert] = ACTIONS(3409), - [anon_sym_concept] = ACTIONS(3409), - [anon_sym_co_return] = ACTIONS(3409), - [anon_sym_co_yield] = ACTIONS(3409), - [anon_sym_R_DQUOTE] = ACTIONS(3407), - [anon_sym_LR_DQUOTE] = ACTIONS(3407), - [anon_sym_uR_DQUOTE] = ACTIONS(3407), - [anon_sym_UR_DQUOTE] = ACTIONS(3407), - [anon_sym_u8R_DQUOTE] = ACTIONS(3407), - [anon_sym_co_await] = ACTIONS(3409), - [anon_sym_new] = ACTIONS(3409), - [anon_sym_requires] = ACTIONS(3409), - [sym_this] = ACTIONS(3409), - }, - [532] = { - [ts_builtin_sym_end] = ACTIONS(3411), - [sym_identifier] = ACTIONS(3413), - [aux_sym_preproc_include_token1] = ACTIONS(3413), - [aux_sym_preproc_def_token1] = ACTIONS(3413), - [aux_sym_preproc_if_token1] = ACTIONS(3413), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3413), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3413), - [sym_preproc_directive] = ACTIONS(3413), - [anon_sym_LPAREN2] = ACTIONS(3411), - [anon_sym_BANG] = ACTIONS(3411), - [anon_sym_TILDE] = ACTIONS(3411), - [anon_sym_DASH] = ACTIONS(3413), - [anon_sym_PLUS] = ACTIONS(3413), - [anon_sym_STAR] = ACTIONS(3411), - [anon_sym_AMP_AMP] = ACTIONS(3411), - [anon_sym_AMP] = ACTIONS(3413), - [anon_sym_SEMI] = ACTIONS(3411), - [anon_sym___extension__] = ACTIONS(3413), - [anon_sym_typedef] = ACTIONS(3413), - [anon_sym_virtual] = ACTIONS(3413), - [anon_sym_extern] = ACTIONS(3413), - [anon_sym___attribute__] = ACTIONS(3413), - [anon_sym___attribute] = ACTIONS(3413), - [anon_sym_using] = ACTIONS(3413), - [anon_sym_COLON_COLON] = ACTIONS(3411), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3411), - [anon_sym___declspec] = ACTIONS(3413), - [anon_sym___based] = ACTIONS(3413), - [anon_sym___cdecl] = ACTIONS(3413), - [anon_sym___clrcall] = ACTIONS(3413), - [anon_sym___stdcall] = ACTIONS(3413), - [anon_sym___fastcall] = ACTIONS(3413), - [anon_sym___thiscall] = ACTIONS(3413), - [anon_sym___vectorcall] = ACTIONS(3413), - [anon_sym_LBRACE] = ACTIONS(3411), - [anon_sym_signed] = ACTIONS(3413), - [anon_sym_unsigned] = ACTIONS(3413), - [anon_sym_long] = ACTIONS(3413), - [anon_sym_short] = ACTIONS(3413), - [anon_sym_LBRACK] = ACTIONS(3413), - [anon_sym_static] = ACTIONS(3413), - [anon_sym_register] = ACTIONS(3413), - [anon_sym_inline] = ACTIONS(3413), - [anon_sym___inline] = ACTIONS(3413), - [anon_sym___inline__] = ACTIONS(3413), - [anon_sym___forceinline] = ACTIONS(3413), - [anon_sym_thread_local] = ACTIONS(3413), - [anon_sym___thread] = ACTIONS(3413), - [anon_sym_const] = ACTIONS(3413), - [anon_sym_constexpr] = ACTIONS(3413), - [anon_sym_volatile] = ACTIONS(3413), - [anon_sym_restrict] = ACTIONS(3413), - [anon_sym___restrict__] = ACTIONS(3413), - [anon_sym__Atomic] = ACTIONS(3413), - [anon_sym__Noreturn] = ACTIONS(3413), - [anon_sym_noreturn] = ACTIONS(3413), - [anon_sym__Nonnull] = ACTIONS(3413), - [anon_sym_mutable] = ACTIONS(3413), - [anon_sym_constinit] = ACTIONS(3413), - [anon_sym_consteval] = ACTIONS(3413), - [anon_sym_alignas] = ACTIONS(3413), - [anon_sym__Alignas] = ACTIONS(3413), - [sym_primitive_type] = ACTIONS(3413), - [anon_sym_enum] = ACTIONS(3413), - [anon_sym_class] = ACTIONS(3413), - [anon_sym_struct] = ACTIONS(3413), - [anon_sym_union] = ACTIONS(3413), - [anon_sym_if] = ACTIONS(3413), - [anon_sym_switch] = ACTIONS(3413), - [anon_sym_case] = ACTIONS(3413), - [anon_sym_default] = ACTIONS(3413), - [anon_sym_while] = ACTIONS(3413), - [anon_sym_do] = ACTIONS(3413), - [anon_sym_for] = ACTIONS(3413), - [anon_sym_return] = ACTIONS(3413), - [anon_sym_break] = ACTIONS(3413), - [anon_sym_continue] = ACTIONS(3413), - [anon_sym_goto] = ACTIONS(3413), - [anon_sym_not] = ACTIONS(3413), - [anon_sym_compl] = ACTIONS(3413), - [anon_sym_DASH_DASH] = ACTIONS(3411), - [anon_sym_PLUS_PLUS] = ACTIONS(3411), - [anon_sym_sizeof] = ACTIONS(3413), - [anon_sym___alignof__] = ACTIONS(3413), - [anon_sym___alignof] = ACTIONS(3413), - [anon_sym__alignof] = ACTIONS(3413), - [anon_sym_alignof] = ACTIONS(3413), - [anon_sym__Alignof] = ACTIONS(3413), - [anon_sym_offsetof] = ACTIONS(3413), - [anon_sym__Generic] = ACTIONS(3413), - [anon_sym_asm] = ACTIONS(3413), - [anon_sym___asm__] = ACTIONS(3413), - [anon_sym___asm] = ACTIONS(3413), - [sym_number_literal] = ACTIONS(3411), - [anon_sym_L_SQUOTE] = ACTIONS(3411), - [anon_sym_u_SQUOTE] = ACTIONS(3411), - [anon_sym_U_SQUOTE] = ACTIONS(3411), - [anon_sym_u8_SQUOTE] = ACTIONS(3411), - [anon_sym_SQUOTE] = ACTIONS(3411), - [anon_sym_L_DQUOTE] = ACTIONS(3411), - [anon_sym_u_DQUOTE] = ACTIONS(3411), - [anon_sym_U_DQUOTE] = ACTIONS(3411), - [anon_sym_u8_DQUOTE] = ACTIONS(3411), - [anon_sym_DQUOTE] = ACTIONS(3411), - [sym_true] = ACTIONS(3413), - [sym_false] = ACTIONS(3413), - [anon_sym_NULL] = ACTIONS(3413), - [anon_sym_nullptr] = ACTIONS(3413), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3413), - [anon_sym_decltype] = ACTIONS(3413), - [anon_sym_explicit] = ACTIONS(3413), - [anon_sym_typename] = ACTIONS(3413), - [anon_sym_export] = ACTIONS(3413), - [anon_sym_module] = ACTIONS(3413), - [anon_sym_import] = ACTIONS(3413), - [anon_sym_template] = ACTIONS(3413), - [anon_sym_operator] = ACTIONS(3413), - [anon_sym_try] = ACTIONS(3413), - [anon_sym_delete] = ACTIONS(3413), - [anon_sym_throw] = ACTIONS(3413), - [anon_sym_namespace] = ACTIONS(3413), - [anon_sym_static_assert] = ACTIONS(3413), - [anon_sym_concept] = ACTIONS(3413), - [anon_sym_co_return] = ACTIONS(3413), - [anon_sym_co_yield] = ACTIONS(3413), - [anon_sym_R_DQUOTE] = ACTIONS(3411), - [anon_sym_LR_DQUOTE] = ACTIONS(3411), - [anon_sym_uR_DQUOTE] = ACTIONS(3411), - [anon_sym_UR_DQUOTE] = ACTIONS(3411), - [anon_sym_u8R_DQUOTE] = ACTIONS(3411), - [anon_sym_co_await] = ACTIONS(3413), - [anon_sym_new] = ACTIONS(3413), - [anon_sym_requires] = ACTIONS(3413), - [sym_this] = ACTIONS(3413), + [544] = { + [ts_builtin_sym_end] = ACTIONS(3435), + [sym_identifier] = ACTIONS(3437), + [aux_sym_preproc_include_token1] = ACTIONS(3437), + [aux_sym_preproc_def_token1] = ACTIONS(3437), + [aux_sym_preproc_if_token1] = ACTIONS(3437), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3437), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3437), + [sym_preproc_directive] = ACTIONS(3437), + [anon_sym_LPAREN2] = ACTIONS(3435), + [anon_sym_BANG] = ACTIONS(3435), + [anon_sym_TILDE] = ACTIONS(3435), + [anon_sym_DASH] = ACTIONS(3437), + [anon_sym_PLUS] = ACTIONS(3437), + [anon_sym_STAR] = ACTIONS(3435), + [anon_sym_AMP_AMP] = ACTIONS(3435), + [anon_sym_AMP] = ACTIONS(3437), + [anon_sym_SEMI] = ACTIONS(3435), + [anon_sym___extension__] = ACTIONS(3437), + [anon_sym_typedef] = ACTIONS(3437), + [anon_sym_virtual] = ACTIONS(3437), + [anon_sym_extern] = ACTIONS(3437), + [anon_sym___attribute__] = ACTIONS(3437), + [anon_sym___attribute] = ACTIONS(3437), + [anon_sym_using] = ACTIONS(3437), + [anon_sym_COLON_COLON] = ACTIONS(3435), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3435), + [anon_sym___declspec] = ACTIONS(3437), + [anon_sym___based] = ACTIONS(3437), + [anon_sym___cdecl] = ACTIONS(3437), + [anon_sym___clrcall] = ACTIONS(3437), + [anon_sym___stdcall] = ACTIONS(3437), + [anon_sym___fastcall] = ACTIONS(3437), + [anon_sym___thiscall] = ACTIONS(3437), + [anon_sym___vectorcall] = ACTIONS(3437), + [anon_sym_LBRACE] = ACTIONS(3435), + [anon_sym_signed] = ACTIONS(3437), + [anon_sym_unsigned] = ACTIONS(3437), + [anon_sym_long] = ACTIONS(3437), + [anon_sym_short] = ACTIONS(3437), + [anon_sym_LBRACK] = ACTIONS(3437), + [anon_sym_static] = ACTIONS(3437), + [anon_sym_register] = ACTIONS(3437), + [anon_sym_inline] = ACTIONS(3437), + [anon_sym___inline] = ACTIONS(3437), + [anon_sym___inline__] = ACTIONS(3437), + [anon_sym___forceinline] = ACTIONS(3437), + [anon_sym_thread_local] = ACTIONS(3437), + [anon_sym___thread] = ACTIONS(3437), + [anon_sym_const] = ACTIONS(3437), + [anon_sym_constexpr] = ACTIONS(3437), + [anon_sym_volatile] = ACTIONS(3437), + [anon_sym_restrict] = ACTIONS(3437), + [anon_sym___restrict__] = ACTIONS(3437), + [anon_sym__Atomic] = ACTIONS(3437), + [anon_sym__Noreturn] = ACTIONS(3437), + [anon_sym_noreturn] = ACTIONS(3437), + [anon_sym__Nonnull] = ACTIONS(3437), + [anon_sym_mutable] = ACTIONS(3437), + [anon_sym_constinit] = ACTIONS(3437), + [anon_sym_consteval] = ACTIONS(3437), + [anon_sym_alignas] = ACTIONS(3437), + [anon_sym__Alignas] = ACTIONS(3437), + [sym_primitive_type] = ACTIONS(3437), + [anon_sym_enum] = ACTIONS(3437), + [anon_sym_class] = ACTIONS(3437), + [anon_sym_struct] = ACTIONS(3437), + [anon_sym_union] = ACTIONS(3437), + [anon_sym_if] = ACTIONS(3437), + [anon_sym_switch] = ACTIONS(3437), + [anon_sym_case] = ACTIONS(3437), + [anon_sym_default] = ACTIONS(3437), + [anon_sym_while] = ACTIONS(3437), + [anon_sym_do] = ACTIONS(3437), + [anon_sym_for] = ACTIONS(3437), + [anon_sym_return] = ACTIONS(3437), + [anon_sym_break] = ACTIONS(3437), + [anon_sym_continue] = ACTIONS(3437), + [anon_sym_goto] = ACTIONS(3437), + [anon_sym_not] = ACTIONS(3437), + [anon_sym_compl] = ACTIONS(3437), + [anon_sym_DASH_DASH] = ACTIONS(3435), + [anon_sym_PLUS_PLUS] = ACTIONS(3435), + [anon_sym_sizeof] = ACTIONS(3437), + [anon_sym___alignof__] = ACTIONS(3437), + [anon_sym___alignof] = ACTIONS(3437), + [anon_sym__alignof] = ACTIONS(3437), + [anon_sym_alignof] = ACTIONS(3437), + [anon_sym__Alignof] = ACTIONS(3437), + [anon_sym_offsetof] = ACTIONS(3437), + [anon_sym__Generic] = ACTIONS(3437), + [anon_sym_asm] = ACTIONS(3437), + [anon_sym___asm__] = ACTIONS(3437), + [anon_sym___asm] = ACTIONS(3437), + [sym_number_literal] = ACTIONS(3435), + [anon_sym_L_SQUOTE] = ACTIONS(3435), + [anon_sym_u_SQUOTE] = ACTIONS(3435), + [anon_sym_U_SQUOTE] = ACTIONS(3435), + [anon_sym_u8_SQUOTE] = ACTIONS(3435), + [anon_sym_SQUOTE] = ACTIONS(3435), + [anon_sym_L_DQUOTE] = ACTIONS(3435), + [anon_sym_u_DQUOTE] = ACTIONS(3435), + [anon_sym_U_DQUOTE] = ACTIONS(3435), + [anon_sym_u8_DQUOTE] = ACTIONS(3435), + [anon_sym_DQUOTE] = ACTIONS(3435), + [sym_true] = ACTIONS(3437), + [sym_false] = ACTIONS(3437), + [anon_sym_NULL] = ACTIONS(3437), + [anon_sym_nullptr] = ACTIONS(3437), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3437), + [anon_sym_decltype] = ACTIONS(3437), + [anon_sym_explicit] = ACTIONS(3437), + [anon_sym_typename] = ACTIONS(3437), + [anon_sym_export] = ACTIONS(3437), + [anon_sym_module] = ACTIONS(3437), + [anon_sym_import] = ACTIONS(3437), + [anon_sym_template] = ACTIONS(3437), + [anon_sym_operator] = ACTIONS(3437), + [anon_sym_try] = ACTIONS(3437), + [anon_sym_delete] = ACTIONS(3437), + [anon_sym_throw] = ACTIONS(3437), + [anon_sym_namespace] = ACTIONS(3437), + [anon_sym_static_assert] = ACTIONS(3437), + [anon_sym_concept] = ACTIONS(3437), + [anon_sym_co_return] = ACTIONS(3437), + [anon_sym_co_yield] = ACTIONS(3437), + [anon_sym_R_DQUOTE] = ACTIONS(3435), + [anon_sym_LR_DQUOTE] = ACTIONS(3435), + [anon_sym_uR_DQUOTE] = ACTIONS(3435), + [anon_sym_UR_DQUOTE] = ACTIONS(3435), + [anon_sym_u8R_DQUOTE] = ACTIONS(3435), + [anon_sym_co_await] = ACTIONS(3437), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_requires] = ACTIONS(3437), + [sym_this] = ACTIONS(3437), }, - [533] = { - [ts_builtin_sym_end] = ACTIONS(3415), - [sym_identifier] = ACTIONS(3417), - [aux_sym_preproc_include_token1] = ACTIONS(3417), - [aux_sym_preproc_def_token1] = ACTIONS(3417), - [aux_sym_preproc_if_token1] = ACTIONS(3417), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3417), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3417), - [sym_preproc_directive] = ACTIONS(3417), - [anon_sym_LPAREN2] = ACTIONS(3415), - [anon_sym_BANG] = ACTIONS(3415), - [anon_sym_TILDE] = ACTIONS(3415), - [anon_sym_DASH] = ACTIONS(3417), - [anon_sym_PLUS] = ACTIONS(3417), - [anon_sym_STAR] = ACTIONS(3415), - [anon_sym_AMP_AMP] = ACTIONS(3415), - [anon_sym_AMP] = ACTIONS(3417), - [anon_sym_SEMI] = ACTIONS(3415), - [anon_sym___extension__] = ACTIONS(3417), - [anon_sym_typedef] = ACTIONS(3417), - [anon_sym_virtual] = ACTIONS(3417), - [anon_sym_extern] = ACTIONS(3417), - [anon_sym___attribute__] = ACTIONS(3417), - [anon_sym___attribute] = ACTIONS(3417), - [anon_sym_using] = ACTIONS(3417), - [anon_sym_COLON_COLON] = ACTIONS(3415), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3415), - [anon_sym___declspec] = ACTIONS(3417), - [anon_sym___based] = ACTIONS(3417), - [anon_sym___cdecl] = ACTIONS(3417), - [anon_sym___clrcall] = ACTIONS(3417), - [anon_sym___stdcall] = ACTIONS(3417), - [anon_sym___fastcall] = ACTIONS(3417), - [anon_sym___thiscall] = ACTIONS(3417), - [anon_sym___vectorcall] = ACTIONS(3417), - [anon_sym_LBRACE] = ACTIONS(3415), - [anon_sym_signed] = ACTIONS(3417), - [anon_sym_unsigned] = ACTIONS(3417), - [anon_sym_long] = ACTIONS(3417), - [anon_sym_short] = ACTIONS(3417), - [anon_sym_LBRACK] = ACTIONS(3417), - [anon_sym_static] = ACTIONS(3417), - [anon_sym_register] = ACTIONS(3417), - [anon_sym_inline] = ACTIONS(3417), - [anon_sym___inline] = ACTIONS(3417), - [anon_sym___inline__] = ACTIONS(3417), - [anon_sym___forceinline] = ACTIONS(3417), - [anon_sym_thread_local] = ACTIONS(3417), - [anon_sym___thread] = ACTIONS(3417), - [anon_sym_const] = ACTIONS(3417), - [anon_sym_constexpr] = ACTIONS(3417), - [anon_sym_volatile] = ACTIONS(3417), - [anon_sym_restrict] = ACTIONS(3417), - [anon_sym___restrict__] = ACTIONS(3417), - [anon_sym__Atomic] = ACTIONS(3417), - [anon_sym__Noreturn] = ACTIONS(3417), - [anon_sym_noreturn] = ACTIONS(3417), - [anon_sym__Nonnull] = ACTIONS(3417), - [anon_sym_mutable] = ACTIONS(3417), - [anon_sym_constinit] = ACTIONS(3417), - [anon_sym_consteval] = ACTIONS(3417), - [anon_sym_alignas] = ACTIONS(3417), - [anon_sym__Alignas] = ACTIONS(3417), - [sym_primitive_type] = ACTIONS(3417), - [anon_sym_enum] = ACTIONS(3417), - [anon_sym_class] = ACTIONS(3417), - [anon_sym_struct] = ACTIONS(3417), - [anon_sym_union] = ACTIONS(3417), - [anon_sym_if] = ACTIONS(3417), - [anon_sym_switch] = ACTIONS(3417), - [anon_sym_case] = ACTIONS(3417), - [anon_sym_default] = ACTIONS(3417), - [anon_sym_while] = ACTIONS(3417), - [anon_sym_do] = ACTIONS(3417), - [anon_sym_for] = ACTIONS(3417), - [anon_sym_return] = ACTIONS(3417), - [anon_sym_break] = ACTIONS(3417), - [anon_sym_continue] = ACTIONS(3417), - [anon_sym_goto] = ACTIONS(3417), - [anon_sym_not] = ACTIONS(3417), - [anon_sym_compl] = ACTIONS(3417), - [anon_sym_DASH_DASH] = ACTIONS(3415), - [anon_sym_PLUS_PLUS] = ACTIONS(3415), - [anon_sym_sizeof] = ACTIONS(3417), - [anon_sym___alignof__] = ACTIONS(3417), - [anon_sym___alignof] = ACTIONS(3417), - [anon_sym__alignof] = ACTIONS(3417), - [anon_sym_alignof] = ACTIONS(3417), - [anon_sym__Alignof] = ACTIONS(3417), - [anon_sym_offsetof] = ACTIONS(3417), - [anon_sym__Generic] = ACTIONS(3417), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym___asm__] = ACTIONS(3417), - [anon_sym___asm] = ACTIONS(3417), - [sym_number_literal] = ACTIONS(3415), - [anon_sym_L_SQUOTE] = ACTIONS(3415), - [anon_sym_u_SQUOTE] = ACTIONS(3415), - [anon_sym_U_SQUOTE] = ACTIONS(3415), - [anon_sym_u8_SQUOTE] = ACTIONS(3415), - [anon_sym_SQUOTE] = ACTIONS(3415), - [anon_sym_L_DQUOTE] = ACTIONS(3415), - [anon_sym_u_DQUOTE] = ACTIONS(3415), - [anon_sym_U_DQUOTE] = ACTIONS(3415), - [anon_sym_u8_DQUOTE] = ACTIONS(3415), - [anon_sym_DQUOTE] = ACTIONS(3415), - [sym_true] = ACTIONS(3417), - [sym_false] = ACTIONS(3417), - [anon_sym_NULL] = ACTIONS(3417), - [anon_sym_nullptr] = ACTIONS(3417), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3417), - [anon_sym_decltype] = ACTIONS(3417), - [anon_sym_explicit] = ACTIONS(3417), - [anon_sym_typename] = ACTIONS(3417), - [anon_sym_export] = ACTIONS(3417), - [anon_sym_module] = ACTIONS(3417), - [anon_sym_import] = ACTIONS(3417), - [anon_sym_template] = ACTIONS(3417), - [anon_sym_operator] = ACTIONS(3417), - [anon_sym_try] = ACTIONS(3417), - [anon_sym_delete] = ACTIONS(3417), - [anon_sym_throw] = ACTIONS(3417), - [anon_sym_namespace] = ACTIONS(3417), - [anon_sym_static_assert] = ACTIONS(3417), - [anon_sym_concept] = ACTIONS(3417), - [anon_sym_co_return] = ACTIONS(3417), - [anon_sym_co_yield] = ACTIONS(3417), - [anon_sym_R_DQUOTE] = ACTIONS(3415), - [anon_sym_LR_DQUOTE] = ACTIONS(3415), - [anon_sym_uR_DQUOTE] = ACTIONS(3415), - [anon_sym_UR_DQUOTE] = ACTIONS(3415), - [anon_sym_u8R_DQUOTE] = ACTIONS(3415), - [anon_sym_co_await] = ACTIONS(3417), - [anon_sym_new] = ACTIONS(3417), - [anon_sym_requires] = ACTIONS(3417), - [sym_this] = ACTIONS(3417), + [545] = { + [ts_builtin_sym_end] = ACTIONS(3439), + [sym_identifier] = ACTIONS(3441), + [aux_sym_preproc_include_token1] = ACTIONS(3441), + [aux_sym_preproc_def_token1] = ACTIONS(3441), + [aux_sym_preproc_if_token1] = ACTIONS(3441), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3441), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3441), + [sym_preproc_directive] = ACTIONS(3441), + [anon_sym_LPAREN2] = ACTIONS(3439), + [anon_sym_BANG] = ACTIONS(3439), + [anon_sym_TILDE] = ACTIONS(3439), + [anon_sym_DASH] = ACTIONS(3441), + [anon_sym_PLUS] = ACTIONS(3441), + [anon_sym_STAR] = ACTIONS(3439), + [anon_sym_AMP_AMP] = ACTIONS(3439), + [anon_sym_AMP] = ACTIONS(3441), + [anon_sym_SEMI] = ACTIONS(3439), + [anon_sym___extension__] = ACTIONS(3441), + [anon_sym_typedef] = ACTIONS(3441), + [anon_sym_virtual] = ACTIONS(3441), + [anon_sym_extern] = ACTIONS(3441), + [anon_sym___attribute__] = ACTIONS(3441), + [anon_sym___attribute] = ACTIONS(3441), + [anon_sym_using] = ACTIONS(3441), + [anon_sym_COLON_COLON] = ACTIONS(3439), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3439), + [anon_sym___declspec] = ACTIONS(3441), + [anon_sym___based] = ACTIONS(3441), + [anon_sym___cdecl] = ACTIONS(3441), + [anon_sym___clrcall] = ACTIONS(3441), + [anon_sym___stdcall] = ACTIONS(3441), + [anon_sym___fastcall] = ACTIONS(3441), + [anon_sym___thiscall] = ACTIONS(3441), + [anon_sym___vectorcall] = ACTIONS(3441), + [anon_sym_LBRACE] = ACTIONS(3439), + [anon_sym_signed] = ACTIONS(3441), + [anon_sym_unsigned] = ACTIONS(3441), + [anon_sym_long] = ACTIONS(3441), + [anon_sym_short] = ACTIONS(3441), + [anon_sym_LBRACK] = ACTIONS(3441), + [anon_sym_static] = ACTIONS(3441), + [anon_sym_register] = ACTIONS(3441), + [anon_sym_inline] = ACTIONS(3441), + [anon_sym___inline] = ACTIONS(3441), + [anon_sym___inline__] = ACTIONS(3441), + [anon_sym___forceinline] = ACTIONS(3441), + [anon_sym_thread_local] = ACTIONS(3441), + [anon_sym___thread] = ACTIONS(3441), + [anon_sym_const] = ACTIONS(3441), + [anon_sym_constexpr] = ACTIONS(3441), + [anon_sym_volatile] = ACTIONS(3441), + [anon_sym_restrict] = ACTIONS(3441), + [anon_sym___restrict__] = ACTIONS(3441), + [anon_sym__Atomic] = ACTIONS(3441), + [anon_sym__Noreturn] = ACTIONS(3441), + [anon_sym_noreturn] = ACTIONS(3441), + [anon_sym__Nonnull] = ACTIONS(3441), + [anon_sym_mutable] = ACTIONS(3441), + [anon_sym_constinit] = ACTIONS(3441), + [anon_sym_consteval] = ACTIONS(3441), + [anon_sym_alignas] = ACTIONS(3441), + [anon_sym__Alignas] = ACTIONS(3441), + [sym_primitive_type] = ACTIONS(3441), + [anon_sym_enum] = ACTIONS(3441), + [anon_sym_class] = ACTIONS(3441), + [anon_sym_struct] = ACTIONS(3441), + [anon_sym_union] = ACTIONS(3441), + [anon_sym_if] = ACTIONS(3441), + [anon_sym_switch] = ACTIONS(3441), + [anon_sym_case] = ACTIONS(3441), + [anon_sym_default] = ACTIONS(3441), + [anon_sym_while] = ACTIONS(3441), + [anon_sym_do] = ACTIONS(3441), + [anon_sym_for] = ACTIONS(3441), + [anon_sym_return] = ACTIONS(3441), + [anon_sym_break] = ACTIONS(3441), + [anon_sym_continue] = ACTIONS(3441), + [anon_sym_goto] = ACTIONS(3441), + [anon_sym_not] = ACTIONS(3441), + [anon_sym_compl] = ACTIONS(3441), + [anon_sym_DASH_DASH] = ACTIONS(3439), + [anon_sym_PLUS_PLUS] = ACTIONS(3439), + [anon_sym_sizeof] = ACTIONS(3441), + [anon_sym___alignof__] = ACTIONS(3441), + [anon_sym___alignof] = ACTIONS(3441), + [anon_sym__alignof] = ACTIONS(3441), + [anon_sym_alignof] = ACTIONS(3441), + [anon_sym__Alignof] = ACTIONS(3441), + [anon_sym_offsetof] = ACTIONS(3441), + [anon_sym__Generic] = ACTIONS(3441), + [anon_sym_asm] = ACTIONS(3441), + [anon_sym___asm__] = ACTIONS(3441), + [anon_sym___asm] = ACTIONS(3441), + [sym_number_literal] = ACTIONS(3439), + [anon_sym_L_SQUOTE] = ACTIONS(3439), + [anon_sym_u_SQUOTE] = ACTIONS(3439), + [anon_sym_U_SQUOTE] = ACTIONS(3439), + [anon_sym_u8_SQUOTE] = ACTIONS(3439), + [anon_sym_SQUOTE] = ACTIONS(3439), + [anon_sym_L_DQUOTE] = ACTIONS(3439), + [anon_sym_u_DQUOTE] = ACTIONS(3439), + [anon_sym_U_DQUOTE] = ACTIONS(3439), + [anon_sym_u8_DQUOTE] = ACTIONS(3439), + [anon_sym_DQUOTE] = ACTIONS(3439), + [sym_true] = ACTIONS(3441), + [sym_false] = ACTIONS(3441), + [anon_sym_NULL] = ACTIONS(3441), + [anon_sym_nullptr] = ACTIONS(3441), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3441), + [anon_sym_decltype] = ACTIONS(3441), + [anon_sym_explicit] = ACTIONS(3441), + [anon_sym_typename] = ACTIONS(3441), + [anon_sym_export] = ACTIONS(3441), + [anon_sym_module] = ACTIONS(3441), + [anon_sym_import] = ACTIONS(3441), + [anon_sym_template] = ACTIONS(3441), + [anon_sym_operator] = ACTIONS(3441), + [anon_sym_try] = ACTIONS(3441), + [anon_sym_delete] = ACTIONS(3441), + [anon_sym_throw] = ACTIONS(3441), + [anon_sym_namespace] = ACTIONS(3441), + [anon_sym_static_assert] = ACTIONS(3441), + [anon_sym_concept] = ACTIONS(3441), + [anon_sym_co_return] = ACTIONS(3441), + [anon_sym_co_yield] = ACTIONS(3441), + [anon_sym_R_DQUOTE] = ACTIONS(3439), + [anon_sym_LR_DQUOTE] = ACTIONS(3439), + [anon_sym_uR_DQUOTE] = ACTIONS(3439), + [anon_sym_UR_DQUOTE] = ACTIONS(3439), + [anon_sym_u8R_DQUOTE] = ACTIONS(3439), + [anon_sym_co_await] = ACTIONS(3441), + [anon_sym_new] = ACTIONS(3441), + [anon_sym_requires] = ACTIONS(3441), + [sym_this] = ACTIONS(3441), }, - [534] = { - [sym_identifier] = ACTIONS(2677), - [aux_sym_preproc_include_token1] = ACTIONS(2677), - [aux_sym_preproc_def_token1] = ACTIONS(2677), - [aux_sym_preproc_if_token1] = ACTIONS(2677), - [aux_sym_preproc_if_token2] = ACTIONS(2677), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2677), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2677), - [sym_preproc_directive] = ACTIONS(2677), - [anon_sym_LPAREN2] = ACTIONS(2679), - [anon_sym_BANG] = ACTIONS(2679), - [anon_sym_TILDE] = ACTIONS(2679), - [anon_sym_DASH] = ACTIONS(2677), - [anon_sym_PLUS] = ACTIONS(2677), - [anon_sym_STAR] = ACTIONS(2679), - [anon_sym_AMP_AMP] = ACTIONS(2679), - [anon_sym_AMP] = ACTIONS(2677), - [anon_sym_SEMI] = ACTIONS(2679), - [anon_sym___extension__] = ACTIONS(2677), - [anon_sym_typedef] = ACTIONS(2677), - [anon_sym_virtual] = ACTIONS(2677), - [anon_sym_extern] = ACTIONS(2677), - [anon_sym___attribute__] = ACTIONS(2677), - [anon_sym___attribute] = ACTIONS(2677), - [anon_sym_using] = ACTIONS(2677), - [anon_sym_COLON_COLON] = ACTIONS(2679), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2679), - [anon_sym___declspec] = ACTIONS(2677), - [anon_sym___based] = ACTIONS(2677), - [anon_sym___cdecl] = ACTIONS(2677), - [anon_sym___clrcall] = ACTIONS(2677), - [anon_sym___stdcall] = ACTIONS(2677), - [anon_sym___fastcall] = ACTIONS(2677), - [anon_sym___thiscall] = ACTIONS(2677), - [anon_sym___vectorcall] = ACTIONS(2677), - [anon_sym_LBRACE] = ACTIONS(2679), - [anon_sym_signed] = ACTIONS(2677), - [anon_sym_unsigned] = ACTIONS(2677), - [anon_sym_long] = ACTIONS(2677), - [anon_sym_short] = ACTIONS(2677), - [anon_sym_LBRACK] = ACTIONS(2677), - [anon_sym_static] = ACTIONS(2677), - [anon_sym_register] = ACTIONS(2677), - [anon_sym_inline] = ACTIONS(2677), - [anon_sym___inline] = ACTIONS(2677), - [anon_sym___inline__] = ACTIONS(2677), - [anon_sym___forceinline] = ACTIONS(2677), - [anon_sym_thread_local] = ACTIONS(2677), - [anon_sym___thread] = ACTIONS(2677), - [anon_sym_const] = ACTIONS(2677), - [anon_sym_constexpr] = ACTIONS(2677), - [anon_sym_volatile] = ACTIONS(2677), - [anon_sym_restrict] = ACTIONS(2677), - [anon_sym___restrict__] = ACTIONS(2677), - [anon_sym__Atomic] = ACTIONS(2677), - [anon_sym__Noreturn] = ACTIONS(2677), - [anon_sym_noreturn] = ACTIONS(2677), - [anon_sym__Nonnull] = ACTIONS(2677), - [anon_sym_mutable] = ACTIONS(2677), - [anon_sym_constinit] = ACTIONS(2677), - [anon_sym_consteval] = ACTIONS(2677), - [anon_sym_alignas] = ACTIONS(2677), - [anon_sym__Alignas] = ACTIONS(2677), - [sym_primitive_type] = ACTIONS(2677), - [anon_sym_enum] = ACTIONS(2677), - [anon_sym_class] = ACTIONS(2677), - [anon_sym_struct] = ACTIONS(2677), - [anon_sym_union] = ACTIONS(2677), - [anon_sym_if] = ACTIONS(2677), - [anon_sym_else] = ACTIONS(2677), - [anon_sym_switch] = ACTIONS(2677), - [anon_sym_case] = ACTIONS(2677), - [anon_sym_default] = ACTIONS(2677), - [anon_sym_while] = ACTIONS(2677), - [anon_sym_do] = ACTIONS(2677), - [anon_sym_for] = ACTIONS(2677), - [anon_sym_return] = ACTIONS(2677), - [anon_sym_break] = ACTIONS(2677), - [anon_sym_continue] = ACTIONS(2677), - [anon_sym_goto] = ACTIONS(2677), - [anon_sym___try] = ACTIONS(2677), - [anon_sym___leave] = ACTIONS(2677), - [anon_sym_not] = ACTIONS(2677), - [anon_sym_compl] = ACTIONS(2677), - [anon_sym_DASH_DASH] = ACTIONS(2679), - [anon_sym_PLUS_PLUS] = ACTIONS(2679), - [anon_sym_sizeof] = ACTIONS(2677), - [anon_sym___alignof__] = ACTIONS(2677), - [anon_sym___alignof] = ACTIONS(2677), - [anon_sym__alignof] = ACTIONS(2677), - [anon_sym_alignof] = ACTIONS(2677), - [anon_sym__Alignof] = ACTIONS(2677), - [anon_sym_offsetof] = ACTIONS(2677), - [anon_sym__Generic] = ACTIONS(2677), - [anon_sym_asm] = ACTIONS(2677), - [anon_sym___asm__] = ACTIONS(2677), - [anon_sym___asm] = ACTIONS(2677), - [sym_number_literal] = ACTIONS(2679), - [anon_sym_L_SQUOTE] = ACTIONS(2679), - [anon_sym_u_SQUOTE] = ACTIONS(2679), - [anon_sym_U_SQUOTE] = ACTIONS(2679), - [anon_sym_u8_SQUOTE] = ACTIONS(2679), - [anon_sym_SQUOTE] = ACTIONS(2679), - [anon_sym_L_DQUOTE] = ACTIONS(2679), - [anon_sym_u_DQUOTE] = ACTIONS(2679), - [anon_sym_U_DQUOTE] = ACTIONS(2679), - [anon_sym_u8_DQUOTE] = ACTIONS(2679), - [anon_sym_DQUOTE] = ACTIONS(2679), - [sym_true] = ACTIONS(2677), - [sym_false] = ACTIONS(2677), - [anon_sym_NULL] = ACTIONS(2677), - [anon_sym_nullptr] = ACTIONS(2677), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2677), - [anon_sym_decltype] = ACTIONS(2677), - [anon_sym_explicit] = ACTIONS(2677), - [anon_sym_typename] = ACTIONS(2677), - [anon_sym_template] = ACTIONS(2677), - [anon_sym_operator] = ACTIONS(2677), - [anon_sym_try] = ACTIONS(2677), - [anon_sym_delete] = ACTIONS(2677), - [anon_sym_throw] = ACTIONS(2677), - [anon_sym_namespace] = ACTIONS(2677), - [anon_sym_static_assert] = ACTIONS(2677), - [anon_sym_concept] = ACTIONS(2677), - [anon_sym_co_return] = ACTIONS(2677), - [anon_sym_co_yield] = ACTIONS(2677), - [anon_sym_R_DQUOTE] = ACTIONS(2679), - [anon_sym_LR_DQUOTE] = ACTIONS(2679), - [anon_sym_uR_DQUOTE] = ACTIONS(2679), - [anon_sym_UR_DQUOTE] = ACTIONS(2679), - [anon_sym_u8R_DQUOTE] = ACTIONS(2679), - [anon_sym_co_await] = ACTIONS(2677), - [anon_sym_new] = ACTIONS(2677), - [anon_sym_requires] = ACTIONS(2677), - [sym_this] = ACTIONS(2677), + [546] = { + [ts_builtin_sym_end] = ACTIONS(3443), + [sym_identifier] = ACTIONS(3445), + [aux_sym_preproc_include_token1] = ACTIONS(3445), + [aux_sym_preproc_def_token1] = ACTIONS(3445), + [aux_sym_preproc_if_token1] = ACTIONS(3445), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3445), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3445), + [sym_preproc_directive] = ACTIONS(3445), + [anon_sym_LPAREN2] = ACTIONS(3443), + [anon_sym_BANG] = ACTIONS(3443), + [anon_sym_TILDE] = ACTIONS(3443), + [anon_sym_DASH] = ACTIONS(3445), + [anon_sym_PLUS] = ACTIONS(3445), + [anon_sym_STAR] = ACTIONS(3443), + [anon_sym_AMP_AMP] = ACTIONS(3443), + [anon_sym_AMP] = ACTIONS(3445), + [anon_sym_SEMI] = ACTIONS(3443), + [anon_sym___extension__] = ACTIONS(3445), + [anon_sym_typedef] = ACTIONS(3445), + [anon_sym_virtual] = ACTIONS(3445), + [anon_sym_extern] = ACTIONS(3445), + [anon_sym___attribute__] = ACTIONS(3445), + [anon_sym___attribute] = ACTIONS(3445), + [anon_sym_using] = ACTIONS(3445), + [anon_sym_COLON_COLON] = ACTIONS(3443), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3443), + [anon_sym___declspec] = ACTIONS(3445), + [anon_sym___based] = ACTIONS(3445), + [anon_sym___cdecl] = ACTIONS(3445), + [anon_sym___clrcall] = ACTIONS(3445), + [anon_sym___stdcall] = ACTIONS(3445), + [anon_sym___fastcall] = ACTIONS(3445), + [anon_sym___thiscall] = ACTIONS(3445), + [anon_sym___vectorcall] = ACTIONS(3445), + [anon_sym_LBRACE] = ACTIONS(3443), + [anon_sym_signed] = ACTIONS(3445), + [anon_sym_unsigned] = ACTIONS(3445), + [anon_sym_long] = ACTIONS(3445), + [anon_sym_short] = ACTIONS(3445), + [anon_sym_LBRACK] = ACTIONS(3445), + [anon_sym_static] = ACTIONS(3445), + [anon_sym_register] = ACTIONS(3445), + [anon_sym_inline] = ACTIONS(3445), + [anon_sym___inline] = ACTIONS(3445), + [anon_sym___inline__] = ACTIONS(3445), + [anon_sym___forceinline] = ACTIONS(3445), + [anon_sym_thread_local] = ACTIONS(3445), + [anon_sym___thread] = ACTIONS(3445), + [anon_sym_const] = ACTIONS(3445), + [anon_sym_constexpr] = ACTIONS(3445), + [anon_sym_volatile] = ACTIONS(3445), + [anon_sym_restrict] = ACTIONS(3445), + [anon_sym___restrict__] = ACTIONS(3445), + [anon_sym__Atomic] = ACTIONS(3445), + [anon_sym__Noreturn] = ACTIONS(3445), + [anon_sym_noreturn] = ACTIONS(3445), + [anon_sym__Nonnull] = ACTIONS(3445), + [anon_sym_mutable] = ACTIONS(3445), + [anon_sym_constinit] = ACTIONS(3445), + [anon_sym_consteval] = ACTIONS(3445), + [anon_sym_alignas] = ACTIONS(3445), + [anon_sym__Alignas] = ACTIONS(3445), + [sym_primitive_type] = ACTIONS(3445), + [anon_sym_enum] = ACTIONS(3445), + [anon_sym_class] = ACTIONS(3445), + [anon_sym_struct] = ACTIONS(3445), + [anon_sym_union] = ACTIONS(3445), + [anon_sym_if] = ACTIONS(3445), + [anon_sym_switch] = ACTIONS(3445), + [anon_sym_case] = ACTIONS(3445), + [anon_sym_default] = ACTIONS(3445), + [anon_sym_while] = ACTIONS(3445), + [anon_sym_do] = ACTIONS(3445), + [anon_sym_for] = ACTIONS(3445), + [anon_sym_return] = ACTIONS(3445), + [anon_sym_break] = ACTIONS(3445), + [anon_sym_continue] = ACTIONS(3445), + [anon_sym_goto] = ACTIONS(3445), + [anon_sym_not] = ACTIONS(3445), + [anon_sym_compl] = ACTIONS(3445), + [anon_sym_DASH_DASH] = ACTIONS(3443), + [anon_sym_PLUS_PLUS] = ACTIONS(3443), + [anon_sym_sizeof] = ACTIONS(3445), + [anon_sym___alignof__] = ACTIONS(3445), + [anon_sym___alignof] = ACTIONS(3445), + [anon_sym__alignof] = ACTIONS(3445), + [anon_sym_alignof] = ACTIONS(3445), + [anon_sym__Alignof] = ACTIONS(3445), + [anon_sym_offsetof] = ACTIONS(3445), + [anon_sym__Generic] = ACTIONS(3445), + [anon_sym_asm] = ACTIONS(3445), + [anon_sym___asm__] = ACTIONS(3445), + [anon_sym___asm] = ACTIONS(3445), + [sym_number_literal] = ACTIONS(3443), + [anon_sym_L_SQUOTE] = ACTIONS(3443), + [anon_sym_u_SQUOTE] = ACTIONS(3443), + [anon_sym_U_SQUOTE] = ACTIONS(3443), + [anon_sym_u8_SQUOTE] = ACTIONS(3443), + [anon_sym_SQUOTE] = ACTIONS(3443), + [anon_sym_L_DQUOTE] = ACTIONS(3443), + [anon_sym_u_DQUOTE] = ACTIONS(3443), + [anon_sym_U_DQUOTE] = ACTIONS(3443), + [anon_sym_u8_DQUOTE] = ACTIONS(3443), + [anon_sym_DQUOTE] = ACTIONS(3443), + [sym_true] = ACTIONS(3445), + [sym_false] = ACTIONS(3445), + [anon_sym_NULL] = ACTIONS(3445), + [anon_sym_nullptr] = ACTIONS(3445), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3445), + [anon_sym_decltype] = ACTIONS(3445), + [anon_sym_explicit] = ACTIONS(3445), + [anon_sym_typename] = ACTIONS(3445), + [anon_sym_export] = ACTIONS(3445), + [anon_sym_module] = ACTIONS(3445), + [anon_sym_import] = ACTIONS(3445), + [anon_sym_template] = ACTIONS(3445), + [anon_sym_operator] = ACTIONS(3445), + [anon_sym_try] = ACTIONS(3445), + [anon_sym_delete] = ACTIONS(3445), + [anon_sym_throw] = ACTIONS(3445), + [anon_sym_namespace] = ACTIONS(3445), + [anon_sym_static_assert] = ACTIONS(3445), + [anon_sym_concept] = ACTIONS(3445), + [anon_sym_co_return] = ACTIONS(3445), + [anon_sym_co_yield] = ACTIONS(3445), + [anon_sym_R_DQUOTE] = ACTIONS(3443), + [anon_sym_LR_DQUOTE] = ACTIONS(3443), + [anon_sym_uR_DQUOTE] = ACTIONS(3443), + [anon_sym_UR_DQUOTE] = ACTIONS(3443), + [anon_sym_u8R_DQUOTE] = ACTIONS(3443), + [anon_sym_co_await] = ACTIONS(3445), + [anon_sym_new] = ACTIONS(3445), + [anon_sym_requires] = ACTIONS(3445), + [sym_this] = ACTIONS(3445), }, - [535] = { - [sym_identifier] = ACTIONS(2755), - [aux_sym_preproc_include_token1] = ACTIONS(2755), - [aux_sym_preproc_def_token1] = ACTIONS(2755), - [aux_sym_preproc_if_token1] = ACTIONS(2755), - [aux_sym_preproc_if_token2] = ACTIONS(2755), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2755), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2755), - [sym_preproc_directive] = ACTIONS(2755), - [anon_sym_LPAREN2] = ACTIONS(2757), - [anon_sym_BANG] = ACTIONS(2757), - [anon_sym_TILDE] = ACTIONS(2757), - [anon_sym_DASH] = ACTIONS(2755), - [anon_sym_PLUS] = ACTIONS(2755), - [anon_sym_STAR] = ACTIONS(2757), - [anon_sym_AMP_AMP] = ACTIONS(2757), - [anon_sym_AMP] = ACTIONS(2755), - [anon_sym_SEMI] = ACTIONS(2757), - [anon_sym___extension__] = ACTIONS(2755), - [anon_sym_typedef] = ACTIONS(2755), - [anon_sym_virtual] = ACTIONS(2755), - [anon_sym_extern] = ACTIONS(2755), - [anon_sym___attribute__] = ACTIONS(2755), - [anon_sym___attribute] = ACTIONS(2755), - [anon_sym_using] = ACTIONS(2755), - [anon_sym_COLON_COLON] = ACTIONS(2757), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2757), - [anon_sym___declspec] = ACTIONS(2755), - [anon_sym___based] = ACTIONS(2755), - [anon_sym___cdecl] = ACTIONS(2755), - [anon_sym___clrcall] = ACTIONS(2755), - [anon_sym___stdcall] = ACTIONS(2755), - [anon_sym___fastcall] = ACTIONS(2755), - [anon_sym___thiscall] = ACTIONS(2755), - [anon_sym___vectorcall] = ACTIONS(2755), - [anon_sym_LBRACE] = ACTIONS(2757), - [anon_sym_signed] = ACTIONS(2755), - [anon_sym_unsigned] = ACTIONS(2755), - [anon_sym_long] = ACTIONS(2755), - [anon_sym_short] = ACTIONS(2755), - [anon_sym_LBRACK] = ACTIONS(2755), - [anon_sym_static] = ACTIONS(2755), - [anon_sym_register] = ACTIONS(2755), - [anon_sym_inline] = ACTIONS(2755), - [anon_sym___inline] = ACTIONS(2755), - [anon_sym___inline__] = ACTIONS(2755), - [anon_sym___forceinline] = ACTIONS(2755), - [anon_sym_thread_local] = ACTIONS(2755), - [anon_sym___thread] = ACTIONS(2755), - [anon_sym_const] = ACTIONS(2755), - [anon_sym_constexpr] = ACTIONS(2755), - [anon_sym_volatile] = ACTIONS(2755), - [anon_sym_restrict] = ACTIONS(2755), - [anon_sym___restrict__] = ACTIONS(2755), - [anon_sym__Atomic] = ACTIONS(2755), - [anon_sym__Noreturn] = ACTIONS(2755), - [anon_sym_noreturn] = ACTIONS(2755), - [anon_sym__Nonnull] = ACTIONS(2755), - [anon_sym_mutable] = ACTIONS(2755), - [anon_sym_constinit] = ACTIONS(2755), - [anon_sym_consteval] = ACTIONS(2755), - [anon_sym_alignas] = ACTIONS(2755), - [anon_sym__Alignas] = ACTIONS(2755), - [sym_primitive_type] = ACTIONS(2755), - [anon_sym_enum] = ACTIONS(2755), - [anon_sym_class] = ACTIONS(2755), - [anon_sym_struct] = ACTIONS(2755), - [anon_sym_union] = ACTIONS(2755), - [anon_sym_if] = ACTIONS(2755), - [anon_sym_else] = ACTIONS(2755), - [anon_sym_switch] = ACTIONS(2755), - [anon_sym_case] = ACTIONS(2755), - [anon_sym_default] = ACTIONS(2755), - [anon_sym_while] = ACTIONS(2755), - [anon_sym_do] = ACTIONS(2755), - [anon_sym_for] = ACTIONS(2755), - [anon_sym_return] = ACTIONS(2755), - [anon_sym_break] = ACTIONS(2755), - [anon_sym_continue] = ACTIONS(2755), - [anon_sym_goto] = ACTIONS(2755), - [anon_sym___try] = ACTIONS(2755), - [anon_sym___leave] = ACTIONS(2755), - [anon_sym_not] = ACTIONS(2755), - [anon_sym_compl] = ACTIONS(2755), - [anon_sym_DASH_DASH] = ACTIONS(2757), - [anon_sym_PLUS_PLUS] = ACTIONS(2757), - [anon_sym_sizeof] = ACTIONS(2755), - [anon_sym___alignof__] = ACTIONS(2755), - [anon_sym___alignof] = ACTIONS(2755), - [anon_sym__alignof] = ACTIONS(2755), - [anon_sym_alignof] = ACTIONS(2755), - [anon_sym__Alignof] = ACTIONS(2755), - [anon_sym_offsetof] = ACTIONS(2755), - [anon_sym__Generic] = ACTIONS(2755), - [anon_sym_asm] = ACTIONS(2755), - [anon_sym___asm__] = ACTIONS(2755), - [anon_sym___asm] = ACTIONS(2755), - [sym_number_literal] = ACTIONS(2757), - [anon_sym_L_SQUOTE] = ACTIONS(2757), - [anon_sym_u_SQUOTE] = ACTIONS(2757), - [anon_sym_U_SQUOTE] = ACTIONS(2757), - [anon_sym_u8_SQUOTE] = ACTIONS(2757), - [anon_sym_SQUOTE] = ACTIONS(2757), - [anon_sym_L_DQUOTE] = ACTIONS(2757), - [anon_sym_u_DQUOTE] = ACTIONS(2757), - [anon_sym_U_DQUOTE] = ACTIONS(2757), - [anon_sym_u8_DQUOTE] = ACTIONS(2757), - [anon_sym_DQUOTE] = ACTIONS(2757), - [sym_true] = ACTIONS(2755), - [sym_false] = ACTIONS(2755), - [anon_sym_NULL] = ACTIONS(2755), - [anon_sym_nullptr] = ACTIONS(2755), + [547] = { + [sym_identifier] = ACTIONS(2775), + [aux_sym_preproc_include_token1] = ACTIONS(2775), + [aux_sym_preproc_def_token1] = ACTIONS(2775), + [aux_sym_preproc_if_token1] = ACTIONS(2775), + [aux_sym_preproc_if_token2] = ACTIONS(2775), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2775), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2775), + [sym_preproc_directive] = ACTIONS(2775), + [anon_sym_LPAREN2] = ACTIONS(2777), + [anon_sym_BANG] = ACTIONS(2777), + [anon_sym_TILDE] = ACTIONS(2777), + [anon_sym_DASH] = ACTIONS(2775), + [anon_sym_PLUS] = ACTIONS(2775), + [anon_sym_STAR] = ACTIONS(2777), + [anon_sym_AMP_AMP] = ACTIONS(2777), + [anon_sym_AMP] = ACTIONS(2775), + [anon_sym_SEMI] = ACTIONS(2777), + [anon_sym___extension__] = ACTIONS(2775), + [anon_sym_typedef] = ACTIONS(2775), + [anon_sym_virtual] = ACTIONS(2775), + [anon_sym_extern] = ACTIONS(2775), + [anon_sym___attribute__] = ACTIONS(2775), + [anon_sym___attribute] = ACTIONS(2775), + [anon_sym_using] = ACTIONS(2775), + [anon_sym_COLON_COLON] = ACTIONS(2777), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2777), + [anon_sym___declspec] = ACTIONS(2775), + [anon_sym___based] = ACTIONS(2775), + [anon_sym___cdecl] = ACTIONS(2775), + [anon_sym___clrcall] = ACTIONS(2775), + [anon_sym___stdcall] = ACTIONS(2775), + [anon_sym___fastcall] = ACTIONS(2775), + [anon_sym___thiscall] = ACTIONS(2775), + [anon_sym___vectorcall] = ACTIONS(2775), + [anon_sym_LBRACE] = ACTIONS(2777), + [anon_sym_signed] = ACTIONS(2775), + [anon_sym_unsigned] = ACTIONS(2775), + [anon_sym_long] = ACTIONS(2775), + [anon_sym_short] = ACTIONS(2775), + [anon_sym_LBRACK] = ACTIONS(2775), + [anon_sym_static] = ACTIONS(2775), + [anon_sym_register] = ACTIONS(2775), + [anon_sym_inline] = ACTIONS(2775), + [anon_sym___inline] = ACTIONS(2775), + [anon_sym___inline__] = ACTIONS(2775), + [anon_sym___forceinline] = ACTIONS(2775), + [anon_sym_thread_local] = ACTIONS(2775), + [anon_sym___thread] = ACTIONS(2775), + [anon_sym_const] = ACTIONS(2775), + [anon_sym_constexpr] = ACTIONS(2775), + [anon_sym_volatile] = ACTIONS(2775), + [anon_sym_restrict] = ACTIONS(2775), + [anon_sym___restrict__] = ACTIONS(2775), + [anon_sym__Atomic] = ACTIONS(2775), + [anon_sym__Noreturn] = ACTIONS(2775), + [anon_sym_noreturn] = ACTIONS(2775), + [anon_sym__Nonnull] = ACTIONS(2775), + [anon_sym_mutable] = ACTIONS(2775), + [anon_sym_constinit] = ACTIONS(2775), + [anon_sym_consteval] = ACTIONS(2775), + [anon_sym_alignas] = ACTIONS(2775), + [anon_sym__Alignas] = ACTIONS(2775), + [sym_primitive_type] = ACTIONS(2775), + [anon_sym_enum] = ACTIONS(2775), + [anon_sym_class] = ACTIONS(2775), + [anon_sym_struct] = ACTIONS(2775), + [anon_sym_union] = ACTIONS(2775), + [anon_sym_if] = ACTIONS(2775), + [anon_sym_else] = ACTIONS(2775), + [anon_sym_switch] = ACTIONS(2775), + [anon_sym_case] = ACTIONS(2775), + [anon_sym_default] = ACTIONS(2775), + [anon_sym_while] = ACTIONS(2775), + [anon_sym_do] = ACTIONS(2775), + [anon_sym_for] = ACTIONS(2775), + [anon_sym_return] = ACTIONS(2775), + [anon_sym_break] = ACTIONS(2775), + [anon_sym_continue] = ACTIONS(2775), + [anon_sym_goto] = ACTIONS(2775), + [anon_sym___try] = ACTIONS(2775), + [anon_sym___leave] = ACTIONS(2775), + [anon_sym_not] = ACTIONS(2775), + [anon_sym_compl] = ACTIONS(2775), + [anon_sym_DASH_DASH] = ACTIONS(2777), + [anon_sym_PLUS_PLUS] = ACTIONS(2777), + [anon_sym_sizeof] = ACTIONS(2775), + [anon_sym___alignof__] = ACTIONS(2775), + [anon_sym___alignof] = ACTIONS(2775), + [anon_sym__alignof] = ACTIONS(2775), + [anon_sym_alignof] = ACTIONS(2775), + [anon_sym__Alignof] = ACTIONS(2775), + [anon_sym_offsetof] = ACTIONS(2775), + [anon_sym__Generic] = ACTIONS(2775), + [anon_sym_asm] = ACTIONS(2775), + [anon_sym___asm__] = ACTIONS(2775), + [anon_sym___asm] = ACTIONS(2775), + [sym_number_literal] = ACTIONS(2777), + [anon_sym_L_SQUOTE] = ACTIONS(2777), + [anon_sym_u_SQUOTE] = ACTIONS(2777), + [anon_sym_U_SQUOTE] = ACTIONS(2777), + [anon_sym_u8_SQUOTE] = ACTIONS(2777), + [anon_sym_SQUOTE] = ACTIONS(2777), + [anon_sym_L_DQUOTE] = ACTIONS(2777), + [anon_sym_u_DQUOTE] = ACTIONS(2777), + [anon_sym_U_DQUOTE] = ACTIONS(2777), + [anon_sym_u8_DQUOTE] = ACTIONS(2777), + [anon_sym_DQUOTE] = ACTIONS(2777), + [sym_true] = ACTIONS(2775), + [sym_false] = ACTIONS(2775), + [anon_sym_NULL] = ACTIONS(2775), + [anon_sym_nullptr] = ACTIONS(2775), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2755), - [anon_sym_decltype] = ACTIONS(2755), - [anon_sym_explicit] = ACTIONS(2755), - [anon_sym_typename] = ACTIONS(2755), - [anon_sym_template] = ACTIONS(2755), - [anon_sym_operator] = ACTIONS(2755), - [anon_sym_try] = ACTIONS(2755), - [anon_sym_delete] = ACTIONS(2755), - [anon_sym_throw] = ACTIONS(2755), - [anon_sym_namespace] = ACTIONS(2755), - [anon_sym_static_assert] = ACTIONS(2755), - [anon_sym_concept] = ACTIONS(2755), - [anon_sym_co_return] = ACTIONS(2755), - [anon_sym_co_yield] = ACTIONS(2755), - [anon_sym_R_DQUOTE] = ACTIONS(2757), - [anon_sym_LR_DQUOTE] = ACTIONS(2757), - [anon_sym_uR_DQUOTE] = ACTIONS(2757), - [anon_sym_UR_DQUOTE] = ACTIONS(2757), - [anon_sym_u8R_DQUOTE] = ACTIONS(2757), - [anon_sym_co_await] = ACTIONS(2755), - [anon_sym_new] = ACTIONS(2755), - [anon_sym_requires] = ACTIONS(2755), - [sym_this] = ACTIONS(2755), + [sym_auto] = ACTIONS(2775), + [anon_sym_decltype] = ACTIONS(2775), + [anon_sym_explicit] = ACTIONS(2775), + [anon_sym_typename] = ACTIONS(2775), + [anon_sym_template] = ACTIONS(2775), + [anon_sym_operator] = ACTIONS(2775), + [anon_sym_try] = ACTIONS(2775), + [anon_sym_delete] = ACTIONS(2775), + [anon_sym_throw] = ACTIONS(2775), + [anon_sym_namespace] = ACTIONS(2775), + [anon_sym_static_assert] = ACTIONS(2775), + [anon_sym_concept] = ACTIONS(2775), + [anon_sym_co_return] = ACTIONS(2775), + [anon_sym_co_yield] = ACTIONS(2775), + [anon_sym_R_DQUOTE] = ACTIONS(2777), + [anon_sym_LR_DQUOTE] = ACTIONS(2777), + [anon_sym_uR_DQUOTE] = ACTIONS(2777), + [anon_sym_UR_DQUOTE] = ACTIONS(2777), + [anon_sym_u8R_DQUOTE] = ACTIONS(2777), + [anon_sym_co_await] = ACTIONS(2775), + [anon_sym_new] = ACTIONS(2775), + [anon_sym_requires] = ACTIONS(2775), + [sym_this] = ACTIONS(2775), }, - [536] = { - [ts_builtin_sym_end] = ACTIONS(3085), - [sym_identifier] = ACTIONS(3083), - [aux_sym_preproc_include_token1] = ACTIONS(3083), - [aux_sym_preproc_def_token1] = ACTIONS(3083), - [aux_sym_preproc_if_token1] = ACTIONS(3083), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3083), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3083), - [sym_preproc_directive] = ACTIONS(3083), - [anon_sym_LPAREN2] = ACTIONS(3085), - [anon_sym_BANG] = ACTIONS(3085), - [anon_sym_TILDE] = ACTIONS(3085), - [anon_sym_DASH] = ACTIONS(3083), - [anon_sym_PLUS] = ACTIONS(3083), - [anon_sym_STAR] = ACTIONS(3085), - [anon_sym_AMP_AMP] = ACTIONS(3085), - [anon_sym_AMP] = ACTIONS(3083), - [anon_sym_SEMI] = ACTIONS(3085), - [anon_sym___extension__] = ACTIONS(3083), - [anon_sym_typedef] = ACTIONS(3083), - [anon_sym_virtual] = ACTIONS(3083), - [anon_sym_extern] = ACTIONS(3083), - [anon_sym___attribute__] = ACTIONS(3083), - [anon_sym___attribute] = ACTIONS(3083), - [anon_sym_using] = ACTIONS(3083), - [anon_sym_COLON_COLON] = ACTIONS(3085), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3085), - [anon_sym___declspec] = ACTIONS(3083), - [anon_sym___based] = ACTIONS(3083), - [anon_sym___cdecl] = ACTIONS(3083), - [anon_sym___clrcall] = ACTIONS(3083), - [anon_sym___stdcall] = ACTIONS(3083), - [anon_sym___fastcall] = ACTIONS(3083), - [anon_sym___thiscall] = ACTIONS(3083), - [anon_sym___vectorcall] = ACTIONS(3083), - [anon_sym_LBRACE] = ACTIONS(3085), - [anon_sym_signed] = ACTIONS(3083), - [anon_sym_unsigned] = ACTIONS(3083), - [anon_sym_long] = ACTIONS(3083), - [anon_sym_short] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(3083), - [anon_sym_static] = ACTIONS(3083), - [anon_sym_register] = ACTIONS(3083), - [anon_sym_inline] = ACTIONS(3083), - [anon_sym___inline] = ACTIONS(3083), - [anon_sym___inline__] = ACTIONS(3083), - [anon_sym___forceinline] = ACTIONS(3083), - [anon_sym_thread_local] = ACTIONS(3083), - [anon_sym___thread] = ACTIONS(3083), - [anon_sym_const] = ACTIONS(3083), - [anon_sym_constexpr] = ACTIONS(3083), - [anon_sym_volatile] = ACTIONS(3083), - [anon_sym_restrict] = ACTIONS(3083), - [anon_sym___restrict__] = ACTIONS(3083), - [anon_sym__Atomic] = ACTIONS(3083), - [anon_sym__Noreturn] = ACTIONS(3083), - [anon_sym_noreturn] = ACTIONS(3083), - [anon_sym__Nonnull] = ACTIONS(3083), - [anon_sym_mutable] = ACTIONS(3083), - [anon_sym_constinit] = ACTIONS(3083), - [anon_sym_consteval] = ACTIONS(3083), - [anon_sym_alignas] = ACTIONS(3083), - [anon_sym__Alignas] = ACTIONS(3083), - [sym_primitive_type] = ACTIONS(3083), - [anon_sym_enum] = ACTIONS(3083), - [anon_sym_class] = ACTIONS(3083), - [anon_sym_struct] = ACTIONS(3083), - [anon_sym_union] = ACTIONS(3083), - [anon_sym_if] = ACTIONS(3083), - [anon_sym_switch] = ACTIONS(3083), - [anon_sym_case] = ACTIONS(3083), - [anon_sym_default] = ACTIONS(3083), - [anon_sym_while] = ACTIONS(3083), - [anon_sym_do] = ACTIONS(3083), - [anon_sym_for] = ACTIONS(3083), - [anon_sym_return] = ACTIONS(3083), - [anon_sym_break] = ACTIONS(3083), - [anon_sym_continue] = ACTIONS(3083), - [anon_sym_goto] = ACTIONS(3083), - [anon_sym_not] = ACTIONS(3083), - [anon_sym_compl] = ACTIONS(3083), - [anon_sym_DASH_DASH] = ACTIONS(3085), - [anon_sym_PLUS_PLUS] = ACTIONS(3085), - [anon_sym_sizeof] = ACTIONS(3083), - [anon_sym___alignof__] = ACTIONS(3083), - [anon_sym___alignof] = ACTIONS(3083), - [anon_sym__alignof] = ACTIONS(3083), - [anon_sym_alignof] = ACTIONS(3083), - [anon_sym__Alignof] = ACTIONS(3083), - [anon_sym_offsetof] = ACTIONS(3083), - [anon_sym__Generic] = ACTIONS(3083), - [anon_sym_asm] = ACTIONS(3083), - [anon_sym___asm__] = ACTIONS(3083), - [anon_sym___asm] = ACTIONS(3083), - [sym_number_literal] = ACTIONS(3085), - [anon_sym_L_SQUOTE] = ACTIONS(3085), - [anon_sym_u_SQUOTE] = ACTIONS(3085), - [anon_sym_U_SQUOTE] = ACTIONS(3085), - [anon_sym_u8_SQUOTE] = ACTIONS(3085), - [anon_sym_SQUOTE] = ACTIONS(3085), - [anon_sym_L_DQUOTE] = ACTIONS(3085), - [anon_sym_u_DQUOTE] = ACTIONS(3085), - [anon_sym_U_DQUOTE] = ACTIONS(3085), - [anon_sym_u8_DQUOTE] = ACTIONS(3085), - [anon_sym_DQUOTE] = ACTIONS(3085), - [sym_true] = ACTIONS(3083), - [sym_false] = ACTIONS(3083), - [anon_sym_NULL] = ACTIONS(3083), - [anon_sym_nullptr] = ACTIONS(3083), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3083), - [anon_sym_decltype] = ACTIONS(3083), - [anon_sym_explicit] = ACTIONS(3083), - [anon_sym_typename] = ACTIONS(3083), - [anon_sym_export] = ACTIONS(3083), - [anon_sym_module] = ACTIONS(3083), - [anon_sym_import] = ACTIONS(3083), - [anon_sym_template] = ACTIONS(3083), - [anon_sym_operator] = ACTIONS(3083), - [anon_sym_try] = ACTIONS(3083), - [anon_sym_delete] = ACTIONS(3083), - [anon_sym_throw] = ACTIONS(3083), - [anon_sym_namespace] = ACTIONS(3083), - [anon_sym_static_assert] = ACTIONS(3083), - [anon_sym_concept] = ACTIONS(3083), - [anon_sym_co_return] = ACTIONS(3083), - [anon_sym_co_yield] = ACTIONS(3083), - [anon_sym_R_DQUOTE] = ACTIONS(3085), - [anon_sym_LR_DQUOTE] = ACTIONS(3085), - [anon_sym_uR_DQUOTE] = ACTIONS(3085), - [anon_sym_UR_DQUOTE] = ACTIONS(3085), - [anon_sym_u8R_DQUOTE] = ACTIONS(3085), - [anon_sym_co_await] = ACTIONS(3083), - [anon_sym_new] = ACTIONS(3083), - [anon_sym_requires] = ACTIONS(3083), - [sym_this] = ACTIONS(3083), + [548] = { + [sym_identifier] = ACTIONS(2713), + [aux_sym_preproc_include_token1] = ACTIONS(2713), + [aux_sym_preproc_def_token1] = ACTIONS(2713), + [aux_sym_preproc_if_token1] = ACTIONS(2713), + [aux_sym_preproc_if_token2] = ACTIONS(2713), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2713), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2713), + [sym_preproc_directive] = ACTIONS(2713), + [anon_sym_LPAREN2] = ACTIONS(2715), + [anon_sym_BANG] = ACTIONS(2715), + [anon_sym_TILDE] = ACTIONS(2715), + [anon_sym_DASH] = ACTIONS(2713), + [anon_sym_PLUS] = ACTIONS(2713), + [anon_sym_STAR] = ACTIONS(2715), + [anon_sym_AMP_AMP] = ACTIONS(2715), + [anon_sym_AMP] = ACTIONS(2713), + [anon_sym_SEMI] = ACTIONS(2715), + [anon_sym___extension__] = ACTIONS(2713), + [anon_sym_typedef] = ACTIONS(2713), + [anon_sym_virtual] = ACTIONS(2713), + [anon_sym_extern] = ACTIONS(2713), + [anon_sym___attribute__] = ACTIONS(2713), + [anon_sym___attribute] = ACTIONS(2713), + [anon_sym_using] = ACTIONS(2713), + [anon_sym_COLON_COLON] = ACTIONS(2715), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2715), + [anon_sym___declspec] = ACTIONS(2713), + [anon_sym___based] = ACTIONS(2713), + [anon_sym___cdecl] = ACTIONS(2713), + [anon_sym___clrcall] = ACTIONS(2713), + [anon_sym___stdcall] = ACTIONS(2713), + [anon_sym___fastcall] = ACTIONS(2713), + [anon_sym___thiscall] = ACTIONS(2713), + [anon_sym___vectorcall] = ACTIONS(2713), + [anon_sym_LBRACE] = ACTIONS(2715), + [anon_sym_signed] = ACTIONS(2713), + [anon_sym_unsigned] = ACTIONS(2713), + [anon_sym_long] = ACTIONS(2713), + [anon_sym_short] = ACTIONS(2713), + [anon_sym_LBRACK] = ACTIONS(2713), + [anon_sym_static] = ACTIONS(2713), + [anon_sym_register] = ACTIONS(2713), + [anon_sym_inline] = ACTIONS(2713), + [anon_sym___inline] = ACTIONS(2713), + [anon_sym___inline__] = ACTIONS(2713), + [anon_sym___forceinline] = ACTIONS(2713), + [anon_sym_thread_local] = ACTIONS(2713), + [anon_sym___thread] = ACTIONS(2713), + [anon_sym_const] = ACTIONS(2713), + [anon_sym_constexpr] = ACTIONS(2713), + [anon_sym_volatile] = ACTIONS(2713), + [anon_sym_restrict] = ACTIONS(2713), + [anon_sym___restrict__] = ACTIONS(2713), + [anon_sym__Atomic] = ACTIONS(2713), + [anon_sym__Noreturn] = ACTIONS(2713), + [anon_sym_noreturn] = ACTIONS(2713), + [anon_sym__Nonnull] = ACTIONS(2713), + [anon_sym_mutable] = ACTIONS(2713), + [anon_sym_constinit] = ACTIONS(2713), + [anon_sym_consteval] = ACTIONS(2713), + [anon_sym_alignas] = ACTIONS(2713), + [anon_sym__Alignas] = ACTIONS(2713), + [sym_primitive_type] = ACTIONS(2713), + [anon_sym_enum] = ACTIONS(2713), + [anon_sym_class] = ACTIONS(2713), + [anon_sym_struct] = ACTIONS(2713), + [anon_sym_union] = ACTIONS(2713), + [anon_sym_if] = ACTIONS(2713), + [anon_sym_else] = ACTIONS(2713), + [anon_sym_switch] = ACTIONS(2713), + [anon_sym_case] = ACTIONS(2713), + [anon_sym_default] = ACTIONS(2713), + [anon_sym_while] = ACTIONS(2713), + [anon_sym_do] = ACTIONS(2713), + [anon_sym_for] = ACTIONS(2713), + [anon_sym_return] = ACTIONS(2713), + [anon_sym_break] = ACTIONS(2713), + [anon_sym_continue] = ACTIONS(2713), + [anon_sym_goto] = ACTIONS(2713), + [anon_sym___try] = ACTIONS(2713), + [anon_sym___leave] = ACTIONS(2713), + [anon_sym_not] = ACTIONS(2713), + [anon_sym_compl] = ACTIONS(2713), + [anon_sym_DASH_DASH] = ACTIONS(2715), + [anon_sym_PLUS_PLUS] = ACTIONS(2715), + [anon_sym_sizeof] = ACTIONS(2713), + [anon_sym___alignof__] = ACTIONS(2713), + [anon_sym___alignof] = ACTIONS(2713), + [anon_sym__alignof] = ACTIONS(2713), + [anon_sym_alignof] = ACTIONS(2713), + [anon_sym__Alignof] = ACTIONS(2713), + [anon_sym_offsetof] = ACTIONS(2713), + [anon_sym__Generic] = ACTIONS(2713), + [anon_sym_asm] = ACTIONS(2713), + [anon_sym___asm__] = ACTIONS(2713), + [anon_sym___asm] = ACTIONS(2713), + [sym_number_literal] = ACTIONS(2715), + [anon_sym_L_SQUOTE] = ACTIONS(2715), + [anon_sym_u_SQUOTE] = ACTIONS(2715), + [anon_sym_U_SQUOTE] = ACTIONS(2715), + [anon_sym_u8_SQUOTE] = ACTIONS(2715), + [anon_sym_SQUOTE] = ACTIONS(2715), + [anon_sym_L_DQUOTE] = ACTIONS(2715), + [anon_sym_u_DQUOTE] = ACTIONS(2715), + [anon_sym_U_DQUOTE] = ACTIONS(2715), + [anon_sym_u8_DQUOTE] = ACTIONS(2715), + [anon_sym_DQUOTE] = ACTIONS(2715), + [sym_true] = ACTIONS(2713), + [sym_false] = ACTIONS(2713), + [anon_sym_NULL] = ACTIONS(2713), + [anon_sym_nullptr] = ACTIONS(2713), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2713), + [anon_sym_decltype] = ACTIONS(2713), + [anon_sym_explicit] = ACTIONS(2713), + [anon_sym_typename] = ACTIONS(2713), + [anon_sym_template] = ACTIONS(2713), + [anon_sym_operator] = ACTIONS(2713), + [anon_sym_try] = ACTIONS(2713), + [anon_sym_delete] = ACTIONS(2713), + [anon_sym_throw] = ACTIONS(2713), + [anon_sym_namespace] = ACTIONS(2713), + [anon_sym_static_assert] = ACTIONS(2713), + [anon_sym_concept] = ACTIONS(2713), + [anon_sym_co_return] = ACTIONS(2713), + [anon_sym_co_yield] = ACTIONS(2713), + [anon_sym_R_DQUOTE] = ACTIONS(2715), + [anon_sym_LR_DQUOTE] = ACTIONS(2715), + [anon_sym_uR_DQUOTE] = ACTIONS(2715), + [anon_sym_UR_DQUOTE] = ACTIONS(2715), + [anon_sym_u8R_DQUOTE] = ACTIONS(2715), + [anon_sym_co_await] = ACTIONS(2713), + [anon_sym_new] = ACTIONS(2713), + [anon_sym_requires] = ACTIONS(2713), + [sym_this] = ACTIONS(2713), }, - [537] = { - [sym_identifier] = ACTIONS(2687), - [aux_sym_preproc_include_token1] = ACTIONS(2687), - [aux_sym_preproc_def_token1] = ACTIONS(2687), - [aux_sym_preproc_if_token1] = ACTIONS(2687), - [aux_sym_preproc_if_token2] = ACTIONS(2687), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2687), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2687), - [sym_preproc_directive] = ACTIONS(2687), - [anon_sym_LPAREN2] = ACTIONS(2689), - [anon_sym_BANG] = ACTIONS(2689), - [anon_sym_TILDE] = ACTIONS(2689), - [anon_sym_DASH] = ACTIONS(2687), - [anon_sym_PLUS] = ACTIONS(2687), - [anon_sym_STAR] = ACTIONS(2689), - [anon_sym_AMP_AMP] = ACTIONS(2689), - [anon_sym_AMP] = ACTIONS(2687), - [anon_sym_SEMI] = ACTIONS(2689), - [anon_sym___extension__] = ACTIONS(2687), - [anon_sym_typedef] = ACTIONS(2687), - [anon_sym_virtual] = ACTIONS(2687), - [anon_sym_extern] = ACTIONS(2687), - [anon_sym___attribute__] = ACTIONS(2687), - [anon_sym___attribute] = ACTIONS(2687), - [anon_sym_using] = ACTIONS(2687), - [anon_sym_COLON_COLON] = ACTIONS(2689), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2689), - [anon_sym___declspec] = ACTIONS(2687), - [anon_sym___based] = ACTIONS(2687), - [anon_sym___cdecl] = ACTIONS(2687), - [anon_sym___clrcall] = ACTIONS(2687), - [anon_sym___stdcall] = ACTIONS(2687), - [anon_sym___fastcall] = ACTIONS(2687), - [anon_sym___thiscall] = ACTIONS(2687), - [anon_sym___vectorcall] = ACTIONS(2687), - [anon_sym_LBRACE] = ACTIONS(2689), - [anon_sym_signed] = ACTIONS(2687), - [anon_sym_unsigned] = ACTIONS(2687), - [anon_sym_long] = ACTIONS(2687), - [anon_sym_short] = ACTIONS(2687), - [anon_sym_LBRACK] = ACTIONS(2687), - [anon_sym_static] = ACTIONS(2687), - [anon_sym_register] = ACTIONS(2687), - [anon_sym_inline] = ACTIONS(2687), - [anon_sym___inline] = ACTIONS(2687), - [anon_sym___inline__] = ACTIONS(2687), - [anon_sym___forceinline] = ACTIONS(2687), - [anon_sym_thread_local] = ACTIONS(2687), - [anon_sym___thread] = ACTIONS(2687), - [anon_sym_const] = ACTIONS(2687), - [anon_sym_constexpr] = ACTIONS(2687), - [anon_sym_volatile] = ACTIONS(2687), - [anon_sym_restrict] = ACTIONS(2687), - [anon_sym___restrict__] = ACTIONS(2687), - [anon_sym__Atomic] = ACTIONS(2687), - [anon_sym__Noreturn] = ACTIONS(2687), - [anon_sym_noreturn] = ACTIONS(2687), - [anon_sym__Nonnull] = ACTIONS(2687), - [anon_sym_mutable] = ACTIONS(2687), - [anon_sym_constinit] = ACTIONS(2687), - [anon_sym_consteval] = ACTIONS(2687), - [anon_sym_alignas] = ACTIONS(2687), - [anon_sym__Alignas] = ACTIONS(2687), - [sym_primitive_type] = ACTIONS(2687), - [anon_sym_enum] = ACTIONS(2687), - [anon_sym_class] = ACTIONS(2687), - [anon_sym_struct] = ACTIONS(2687), - [anon_sym_union] = ACTIONS(2687), - [anon_sym_if] = ACTIONS(2687), - [anon_sym_else] = ACTIONS(2687), - [anon_sym_switch] = ACTIONS(2687), - [anon_sym_case] = ACTIONS(2687), - [anon_sym_default] = ACTIONS(2687), - [anon_sym_while] = ACTIONS(2687), - [anon_sym_do] = ACTIONS(2687), - [anon_sym_for] = ACTIONS(2687), - [anon_sym_return] = ACTIONS(2687), - [anon_sym_break] = ACTIONS(2687), - [anon_sym_continue] = ACTIONS(2687), - [anon_sym_goto] = ACTIONS(2687), - [anon_sym___try] = ACTIONS(2687), - [anon_sym___leave] = ACTIONS(2687), - [anon_sym_not] = ACTIONS(2687), - [anon_sym_compl] = ACTIONS(2687), - [anon_sym_DASH_DASH] = ACTIONS(2689), - [anon_sym_PLUS_PLUS] = ACTIONS(2689), - [anon_sym_sizeof] = ACTIONS(2687), - [anon_sym___alignof__] = ACTIONS(2687), - [anon_sym___alignof] = ACTIONS(2687), - [anon_sym__alignof] = ACTIONS(2687), - [anon_sym_alignof] = ACTIONS(2687), - [anon_sym__Alignof] = ACTIONS(2687), - [anon_sym_offsetof] = ACTIONS(2687), - [anon_sym__Generic] = ACTIONS(2687), - [anon_sym_asm] = ACTIONS(2687), - [anon_sym___asm__] = ACTIONS(2687), - [anon_sym___asm] = ACTIONS(2687), - [sym_number_literal] = ACTIONS(2689), - [anon_sym_L_SQUOTE] = ACTIONS(2689), - [anon_sym_u_SQUOTE] = ACTIONS(2689), - [anon_sym_U_SQUOTE] = ACTIONS(2689), - [anon_sym_u8_SQUOTE] = ACTIONS(2689), - [anon_sym_SQUOTE] = ACTIONS(2689), - [anon_sym_L_DQUOTE] = ACTIONS(2689), - [anon_sym_u_DQUOTE] = ACTIONS(2689), - [anon_sym_U_DQUOTE] = ACTIONS(2689), - [anon_sym_u8_DQUOTE] = ACTIONS(2689), - [anon_sym_DQUOTE] = ACTIONS(2689), - [sym_true] = ACTIONS(2687), - [sym_false] = ACTIONS(2687), - [anon_sym_NULL] = ACTIONS(2687), - [anon_sym_nullptr] = ACTIONS(2687), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2687), - [anon_sym_decltype] = ACTIONS(2687), - [anon_sym_explicit] = ACTIONS(2687), - [anon_sym_typename] = ACTIONS(2687), - [anon_sym_template] = ACTIONS(2687), - [anon_sym_operator] = ACTIONS(2687), - [anon_sym_try] = ACTIONS(2687), - [anon_sym_delete] = ACTIONS(2687), - [anon_sym_throw] = ACTIONS(2687), - [anon_sym_namespace] = ACTIONS(2687), - [anon_sym_static_assert] = ACTIONS(2687), - [anon_sym_concept] = ACTIONS(2687), - [anon_sym_co_return] = ACTIONS(2687), - [anon_sym_co_yield] = ACTIONS(2687), - [anon_sym_R_DQUOTE] = ACTIONS(2689), - [anon_sym_LR_DQUOTE] = ACTIONS(2689), - [anon_sym_uR_DQUOTE] = ACTIONS(2689), - [anon_sym_UR_DQUOTE] = ACTIONS(2689), - [anon_sym_u8R_DQUOTE] = ACTIONS(2689), - [anon_sym_co_await] = ACTIONS(2687), - [anon_sym_new] = ACTIONS(2687), - [anon_sym_requires] = ACTIONS(2687), - [sym_this] = ACTIONS(2687), + [549] = { + [sym_identifier] = ACTIONS(2717), + [aux_sym_preproc_include_token1] = ACTIONS(2717), + [aux_sym_preproc_def_token1] = ACTIONS(2717), + [aux_sym_preproc_if_token1] = ACTIONS(2717), + [aux_sym_preproc_if_token2] = ACTIONS(2717), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2717), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2717), + [sym_preproc_directive] = ACTIONS(2717), + [anon_sym_LPAREN2] = ACTIONS(2719), + [anon_sym_BANG] = ACTIONS(2719), + [anon_sym_TILDE] = ACTIONS(2719), + [anon_sym_DASH] = ACTIONS(2717), + [anon_sym_PLUS] = ACTIONS(2717), + [anon_sym_STAR] = ACTIONS(2719), + [anon_sym_AMP_AMP] = ACTIONS(2719), + [anon_sym_AMP] = ACTIONS(2717), + [anon_sym_SEMI] = ACTIONS(2719), + [anon_sym___extension__] = ACTIONS(2717), + [anon_sym_typedef] = ACTIONS(2717), + [anon_sym_virtual] = ACTIONS(2717), + [anon_sym_extern] = ACTIONS(2717), + [anon_sym___attribute__] = ACTIONS(2717), + [anon_sym___attribute] = ACTIONS(2717), + [anon_sym_using] = ACTIONS(2717), + [anon_sym_COLON_COLON] = ACTIONS(2719), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2719), + [anon_sym___declspec] = ACTIONS(2717), + [anon_sym___based] = ACTIONS(2717), + [anon_sym___cdecl] = ACTIONS(2717), + [anon_sym___clrcall] = ACTIONS(2717), + [anon_sym___stdcall] = ACTIONS(2717), + [anon_sym___fastcall] = ACTIONS(2717), + [anon_sym___thiscall] = ACTIONS(2717), + [anon_sym___vectorcall] = ACTIONS(2717), + [anon_sym_LBRACE] = ACTIONS(2719), + [anon_sym_signed] = ACTIONS(2717), + [anon_sym_unsigned] = ACTIONS(2717), + [anon_sym_long] = ACTIONS(2717), + [anon_sym_short] = ACTIONS(2717), + [anon_sym_LBRACK] = ACTIONS(2717), + [anon_sym_static] = ACTIONS(2717), + [anon_sym_register] = ACTIONS(2717), + [anon_sym_inline] = ACTIONS(2717), + [anon_sym___inline] = ACTIONS(2717), + [anon_sym___inline__] = ACTIONS(2717), + [anon_sym___forceinline] = ACTIONS(2717), + [anon_sym_thread_local] = ACTIONS(2717), + [anon_sym___thread] = ACTIONS(2717), + [anon_sym_const] = ACTIONS(2717), + [anon_sym_constexpr] = ACTIONS(2717), + [anon_sym_volatile] = ACTIONS(2717), + [anon_sym_restrict] = ACTIONS(2717), + [anon_sym___restrict__] = ACTIONS(2717), + [anon_sym__Atomic] = ACTIONS(2717), + [anon_sym__Noreturn] = ACTIONS(2717), + [anon_sym_noreturn] = ACTIONS(2717), + [anon_sym__Nonnull] = ACTIONS(2717), + [anon_sym_mutable] = ACTIONS(2717), + [anon_sym_constinit] = ACTIONS(2717), + [anon_sym_consteval] = ACTIONS(2717), + [anon_sym_alignas] = ACTIONS(2717), + [anon_sym__Alignas] = ACTIONS(2717), + [sym_primitive_type] = ACTIONS(2717), + [anon_sym_enum] = ACTIONS(2717), + [anon_sym_class] = ACTIONS(2717), + [anon_sym_struct] = ACTIONS(2717), + [anon_sym_union] = ACTIONS(2717), + [anon_sym_if] = ACTIONS(2717), + [anon_sym_else] = ACTIONS(2717), + [anon_sym_switch] = ACTIONS(2717), + [anon_sym_case] = ACTIONS(2717), + [anon_sym_default] = ACTIONS(2717), + [anon_sym_while] = ACTIONS(2717), + [anon_sym_do] = ACTIONS(2717), + [anon_sym_for] = ACTIONS(2717), + [anon_sym_return] = ACTIONS(2717), + [anon_sym_break] = ACTIONS(2717), + [anon_sym_continue] = ACTIONS(2717), + [anon_sym_goto] = ACTIONS(2717), + [anon_sym___try] = ACTIONS(2717), + [anon_sym___leave] = ACTIONS(2717), + [anon_sym_not] = ACTIONS(2717), + [anon_sym_compl] = ACTIONS(2717), + [anon_sym_DASH_DASH] = ACTIONS(2719), + [anon_sym_PLUS_PLUS] = ACTIONS(2719), + [anon_sym_sizeof] = ACTIONS(2717), + [anon_sym___alignof__] = ACTIONS(2717), + [anon_sym___alignof] = ACTIONS(2717), + [anon_sym__alignof] = ACTIONS(2717), + [anon_sym_alignof] = ACTIONS(2717), + [anon_sym__Alignof] = ACTIONS(2717), + [anon_sym_offsetof] = ACTIONS(2717), + [anon_sym__Generic] = ACTIONS(2717), + [anon_sym_asm] = ACTIONS(2717), + [anon_sym___asm__] = ACTIONS(2717), + [anon_sym___asm] = ACTIONS(2717), + [sym_number_literal] = ACTIONS(2719), + [anon_sym_L_SQUOTE] = ACTIONS(2719), + [anon_sym_u_SQUOTE] = ACTIONS(2719), + [anon_sym_U_SQUOTE] = ACTIONS(2719), + [anon_sym_u8_SQUOTE] = ACTIONS(2719), + [anon_sym_SQUOTE] = ACTIONS(2719), + [anon_sym_L_DQUOTE] = ACTIONS(2719), + [anon_sym_u_DQUOTE] = ACTIONS(2719), + [anon_sym_U_DQUOTE] = ACTIONS(2719), + [anon_sym_u8_DQUOTE] = ACTIONS(2719), + [anon_sym_DQUOTE] = ACTIONS(2719), + [sym_true] = ACTIONS(2717), + [sym_false] = ACTIONS(2717), + [anon_sym_NULL] = ACTIONS(2717), + [anon_sym_nullptr] = ACTIONS(2717), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2717), + [anon_sym_decltype] = ACTIONS(2717), + [anon_sym_explicit] = ACTIONS(2717), + [anon_sym_typename] = ACTIONS(2717), + [anon_sym_template] = ACTIONS(2717), + [anon_sym_operator] = ACTIONS(2717), + [anon_sym_try] = ACTIONS(2717), + [anon_sym_delete] = ACTIONS(2717), + [anon_sym_throw] = ACTIONS(2717), + [anon_sym_namespace] = ACTIONS(2717), + [anon_sym_static_assert] = ACTIONS(2717), + [anon_sym_concept] = ACTIONS(2717), + [anon_sym_co_return] = ACTIONS(2717), + [anon_sym_co_yield] = ACTIONS(2717), + [anon_sym_R_DQUOTE] = ACTIONS(2719), + [anon_sym_LR_DQUOTE] = ACTIONS(2719), + [anon_sym_uR_DQUOTE] = ACTIONS(2719), + [anon_sym_UR_DQUOTE] = ACTIONS(2719), + [anon_sym_u8R_DQUOTE] = ACTIONS(2719), + [anon_sym_co_await] = ACTIONS(2717), + [anon_sym_new] = ACTIONS(2717), + [anon_sym_requires] = ACTIONS(2717), + [sym_this] = ACTIONS(2717), }, - [538] = { - [sym_identifier] = ACTIONS(2715), - [aux_sym_preproc_include_token1] = ACTIONS(2715), - [aux_sym_preproc_def_token1] = ACTIONS(2715), - [aux_sym_preproc_if_token1] = ACTIONS(2715), - [aux_sym_preproc_if_token2] = ACTIONS(2715), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2715), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2715), - [sym_preproc_directive] = ACTIONS(2715), - [anon_sym_LPAREN2] = ACTIONS(2717), - [anon_sym_BANG] = ACTIONS(2717), - [anon_sym_TILDE] = ACTIONS(2717), - [anon_sym_DASH] = ACTIONS(2715), - [anon_sym_PLUS] = ACTIONS(2715), - [anon_sym_STAR] = ACTIONS(2717), - [anon_sym_AMP_AMP] = ACTIONS(2717), - [anon_sym_AMP] = ACTIONS(2715), - [anon_sym_SEMI] = ACTIONS(2717), - [anon_sym___extension__] = ACTIONS(2715), - [anon_sym_typedef] = ACTIONS(2715), - [anon_sym_virtual] = ACTIONS(2715), - [anon_sym_extern] = ACTIONS(2715), - [anon_sym___attribute__] = ACTIONS(2715), - [anon_sym___attribute] = ACTIONS(2715), - [anon_sym_using] = ACTIONS(2715), - [anon_sym_COLON_COLON] = ACTIONS(2717), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2717), - [anon_sym___declspec] = ACTIONS(2715), - [anon_sym___based] = ACTIONS(2715), - [anon_sym___cdecl] = ACTIONS(2715), - [anon_sym___clrcall] = ACTIONS(2715), - [anon_sym___stdcall] = ACTIONS(2715), - [anon_sym___fastcall] = ACTIONS(2715), - [anon_sym___thiscall] = ACTIONS(2715), - [anon_sym___vectorcall] = ACTIONS(2715), - [anon_sym_LBRACE] = ACTIONS(2717), - [anon_sym_signed] = ACTIONS(2715), - [anon_sym_unsigned] = ACTIONS(2715), - [anon_sym_long] = ACTIONS(2715), - [anon_sym_short] = ACTIONS(2715), - [anon_sym_LBRACK] = ACTIONS(2715), - [anon_sym_static] = ACTIONS(2715), - [anon_sym_register] = ACTIONS(2715), - [anon_sym_inline] = ACTIONS(2715), - [anon_sym___inline] = ACTIONS(2715), - [anon_sym___inline__] = ACTIONS(2715), - [anon_sym___forceinline] = ACTIONS(2715), - [anon_sym_thread_local] = ACTIONS(2715), - [anon_sym___thread] = ACTIONS(2715), - [anon_sym_const] = ACTIONS(2715), - [anon_sym_constexpr] = ACTIONS(2715), - [anon_sym_volatile] = ACTIONS(2715), - [anon_sym_restrict] = ACTIONS(2715), - [anon_sym___restrict__] = ACTIONS(2715), - [anon_sym__Atomic] = ACTIONS(2715), - [anon_sym__Noreturn] = ACTIONS(2715), - [anon_sym_noreturn] = ACTIONS(2715), - [anon_sym__Nonnull] = ACTIONS(2715), - [anon_sym_mutable] = ACTIONS(2715), - [anon_sym_constinit] = ACTIONS(2715), - [anon_sym_consteval] = ACTIONS(2715), - [anon_sym_alignas] = ACTIONS(2715), - [anon_sym__Alignas] = ACTIONS(2715), - [sym_primitive_type] = ACTIONS(2715), - [anon_sym_enum] = ACTIONS(2715), - [anon_sym_class] = ACTIONS(2715), - [anon_sym_struct] = ACTIONS(2715), - [anon_sym_union] = ACTIONS(2715), - [anon_sym_if] = ACTIONS(2715), - [anon_sym_else] = ACTIONS(2715), - [anon_sym_switch] = ACTIONS(2715), - [anon_sym_case] = ACTIONS(2715), - [anon_sym_default] = ACTIONS(2715), - [anon_sym_while] = ACTIONS(2715), - [anon_sym_do] = ACTIONS(2715), - [anon_sym_for] = ACTIONS(2715), - [anon_sym_return] = ACTIONS(2715), - [anon_sym_break] = ACTIONS(2715), - [anon_sym_continue] = ACTIONS(2715), - [anon_sym_goto] = ACTIONS(2715), - [anon_sym___try] = ACTIONS(2715), - [anon_sym___leave] = ACTIONS(2715), - [anon_sym_not] = ACTIONS(2715), - [anon_sym_compl] = ACTIONS(2715), - [anon_sym_DASH_DASH] = ACTIONS(2717), - [anon_sym_PLUS_PLUS] = ACTIONS(2717), - [anon_sym_sizeof] = ACTIONS(2715), - [anon_sym___alignof__] = ACTIONS(2715), - [anon_sym___alignof] = ACTIONS(2715), - [anon_sym__alignof] = ACTIONS(2715), - [anon_sym_alignof] = ACTIONS(2715), - [anon_sym__Alignof] = ACTIONS(2715), - [anon_sym_offsetof] = ACTIONS(2715), - [anon_sym__Generic] = ACTIONS(2715), - [anon_sym_asm] = ACTIONS(2715), - [anon_sym___asm__] = ACTIONS(2715), - [anon_sym___asm] = ACTIONS(2715), - [sym_number_literal] = ACTIONS(2717), - [anon_sym_L_SQUOTE] = ACTIONS(2717), - [anon_sym_u_SQUOTE] = ACTIONS(2717), - [anon_sym_U_SQUOTE] = ACTIONS(2717), - [anon_sym_u8_SQUOTE] = ACTIONS(2717), - [anon_sym_SQUOTE] = ACTIONS(2717), - [anon_sym_L_DQUOTE] = ACTIONS(2717), - [anon_sym_u_DQUOTE] = ACTIONS(2717), - [anon_sym_U_DQUOTE] = ACTIONS(2717), - [anon_sym_u8_DQUOTE] = ACTIONS(2717), - [anon_sym_DQUOTE] = ACTIONS(2717), - [sym_true] = ACTIONS(2715), - [sym_false] = ACTIONS(2715), - [anon_sym_NULL] = ACTIONS(2715), - [anon_sym_nullptr] = ACTIONS(2715), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2715), - [anon_sym_decltype] = ACTIONS(2715), - [anon_sym_explicit] = ACTIONS(2715), - [anon_sym_typename] = ACTIONS(2715), - [anon_sym_template] = ACTIONS(2715), - [anon_sym_operator] = ACTIONS(2715), - [anon_sym_try] = ACTIONS(2715), - [anon_sym_delete] = ACTIONS(2715), - [anon_sym_throw] = ACTIONS(2715), - [anon_sym_namespace] = ACTIONS(2715), - [anon_sym_static_assert] = ACTIONS(2715), - [anon_sym_concept] = ACTIONS(2715), - [anon_sym_co_return] = ACTIONS(2715), - [anon_sym_co_yield] = ACTIONS(2715), - [anon_sym_R_DQUOTE] = ACTIONS(2717), - [anon_sym_LR_DQUOTE] = ACTIONS(2717), - [anon_sym_uR_DQUOTE] = ACTIONS(2717), - [anon_sym_UR_DQUOTE] = ACTIONS(2717), - [anon_sym_u8R_DQUOTE] = ACTIONS(2717), - [anon_sym_co_await] = ACTIONS(2715), - [anon_sym_new] = ACTIONS(2715), - [anon_sym_requires] = ACTIONS(2715), - [sym_this] = ACTIONS(2715), + [550] = { + [ts_builtin_sym_end] = ACTIONS(3097), + [sym_identifier] = ACTIONS(3095), + [aux_sym_preproc_include_token1] = ACTIONS(3095), + [aux_sym_preproc_def_token1] = ACTIONS(3095), + [aux_sym_preproc_if_token1] = ACTIONS(3095), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3095), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3095), + [sym_preproc_directive] = ACTIONS(3095), + [anon_sym_LPAREN2] = ACTIONS(3097), + [anon_sym_BANG] = ACTIONS(3097), + [anon_sym_TILDE] = ACTIONS(3097), + [anon_sym_DASH] = ACTIONS(3095), + [anon_sym_PLUS] = ACTIONS(3095), + [anon_sym_STAR] = ACTIONS(3097), + [anon_sym_AMP_AMP] = ACTIONS(3097), + [anon_sym_AMP] = ACTIONS(3095), + [anon_sym_SEMI] = ACTIONS(3097), + [anon_sym___extension__] = ACTIONS(3095), + [anon_sym_typedef] = ACTIONS(3095), + [anon_sym_virtual] = ACTIONS(3095), + [anon_sym_extern] = ACTIONS(3095), + [anon_sym___attribute__] = ACTIONS(3095), + [anon_sym___attribute] = ACTIONS(3095), + [anon_sym_using] = ACTIONS(3095), + [anon_sym_COLON_COLON] = ACTIONS(3097), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3097), + [anon_sym___declspec] = ACTIONS(3095), + [anon_sym___based] = ACTIONS(3095), + [anon_sym___cdecl] = ACTIONS(3095), + [anon_sym___clrcall] = ACTIONS(3095), + [anon_sym___stdcall] = ACTIONS(3095), + [anon_sym___fastcall] = ACTIONS(3095), + [anon_sym___thiscall] = ACTIONS(3095), + [anon_sym___vectorcall] = ACTIONS(3095), + [anon_sym_LBRACE] = ACTIONS(3097), + [anon_sym_signed] = ACTIONS(3095), + [anon_sym_unsigned] = ACTIONS(3095), + [anon_sym_long] = ACTIONS(3095), + [anon_sym_short] = ACTIONS(3095), + [anon_sym_LBRACK] = ACTIONS(3095), + [anon_sym_static] = ACTIONS(3095), + [anon_sym_register] = ACTIONS(3095), + [anon_sym_inline] = ACTIONS(3095), + [anon_sym___inline] = ACTIONS(3095), + [anon_sym___inline__] = ACTIONS(3095), + [anon_sym___forceinline] = ACTIONS(3095), + [anon_sym_thread_local] = ACTIONS(3095), + [anon_sym___thread] = ACTIONS(3095), + [anon_sym_const] = ACTIONS(3095), + [anon_sym_constexpr] = ACTIONS(3095), + [anon_sym_volatile] = ACTIONS(3095), + [anon_sym_restrict] = ACTIONS(3095), + [anon_sym___restrict__] = ACTIONS(3095), + [anon_sym__Atomic] = ACTIONS(3095), + [anon_sym__Noreturn] = ACTIONS(3095), + [anon_sym_noreturn] = ACTIONS(3095), + [anon_sym__Nonnull] = ACTIONS(3095), + [anon_sym_mutable] = ACTIONS(3095), + [anon_sym_constinit] = ACTIONS(3095), + [anon_sym_consteval] = ACTIONS(3095), + [anon_sym_alignas] = ACTIONS(3095), + [anon_sym__Alignas] = ACTIONS(3095), + [sym_primitive_type] = ACTIONS(3095), + [anon_sym_enum] = ACTIONS(3095), + [anon_sym_class] = ACTIONS(3095), + [anon_sym_struct] = ACTIONS(3095), + [anon_sym_union] = ACTIONS(3095), + [anon_sym_if] = ACTIONS(3095), + [anon_sym_switch] = ACTIONS(3095), + [anon_sym_case] = ACTIONS(3095), + [anon_sym_default] = ACTIONS(3095), + [anon_sym_while] = ACTIONS(3095), + [anon_sym_do] = ACTIONS(3095), + [anon_sym_for] = ACTIONS(3095), + [anon_sym_return] = ACTIONS(3095), + [anon_sym_break] = ACTIONS(3095), + [anon_sym_continue] = ACTIONS(3095), + [anon_sym_goto] = ACTIONS(3095), + [anon_sym_not] = ACTIONS(3095), + [anon_sym_compl] = ACTIONS(3095), + [anon_sym_DASH_DASH] = ACTIONS(3097), + [anon_sym_PLUS_PLUS] = ACTIONS(3097), + [anon_sym_sizeof] = ACTIONS(3095), + [anon_sym___alignof__] = ACTIONS(3095), + [anon_sym___alignof] = ACTIONS(3095), + [anon_sym__alignof] = ACTIONS(3095), + [anon_sym_alignof] = ACTIONS(3095), + [anon_sym__Alignof] = ACTIONS(3095), + [anon_sym_offsetof] = ACTIONS(3095), + [anon_sym__Generic] = ACTIONS(3095), + [anon_sym_asm] = ACTIONS(3095), + [anon_sym___asm__] = ACTIONS(3095), + [anon_sym___asm] = ACTIONS(3095), + [sym_number_literal] = ACTIONS(3097), + [anon_sym_L_SQUOTE] = ACTIONS(3097), + [anon_sym_u_SQUOTE] = ACTIONS(3097), + [anon_sym_U_SQUOTE] = ACTIONS(3097), + [anon_sym_u8_SQUOTE] = ACTIONS(3097), + [anon_sym_SQUOTE] = ACTIONS(3097), + [anon_sym_L_DQUOTE] = ACTIONS(3097), + [anon_sym_u_DQUOTE] = ACTIONS(3097), + [anon_sym_U_DQUOTE] = ACTIONS(3097), + [anon_sym_u8_DQUOTE] = ACTIONS(3097), + [anon_sym_DQUOTE] = ACTIONS(3097), + [sym_true] = ACTIONS(3095), + [sym_false] = ACTIONS(3095), + [anon_sym_NULL] = ACTIONS(3095), + [anon_sym_nullptr] = ACTIONS(3095), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3095), + [anon_sym_decltype] = ACTIONS(3095), + [anon_sym_explicit] = ACTIONS(3095), + [anon_sym_typename] = ACTIONS(3095), + [anon_sym_export] = ACTIONS(3095), + [anon_sym_module] = ACTIONS(3095), + [anon_sym_import] = ACTIONS(3095), + [anon_sym_template] = ACTIONS(3095), + [anon_sym_operator] = ACTIONS(3095), + [anon_sym_try] = ACTIONS(3095), + [anon_sym_delete] = ACTIONS(3095), + [anon_sym_throw] = ACTIONS(3095), + [anon_sym_namespace] = ACTIONS(3095), + [anon_sym_static_assert] = ACTIONS(3095), + [anon_sym_concept] = ACTIONS(3095), + [anon_sym_co_return] = ACTIONS(3095), + [anon_sym_co_yield] = ACTIONS(3095), + [anon_sym_R_DQUOTE] = ACTIONS(3097), + [anon_sym_LR_DQUOTE] = ACTIONS(3097), + [anon_sym_uR_DQUOTE] = ACTIONS(3097), + [anon_sym_UR_DQUOTE] = ACTIONS(3097), + [anon_sym_u8R_DQUOTE] = ACTIONS(3097), + [anon_sym_co_await] = ACTIONS(3095), + [anon_sym_new] = ACTIONS(3095), + [anon_sym_requires] = ACTIONS(3095), + [sym_this] = ACTIONS(3095), }, - [539] = { - [sym_identifier] = ACTIONS(2703), - [aux_sym_preproc_include_token1] = ACTIONS(2703), - [aux_sym_preproc_def_token1] = ACTIONS(2703), - [aux_sym_preproc_if_token1] = ACTIONS(2703), - [aux_sym_preproc_if_token2] = ACTIONS(2703), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2703), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2703), - [sym_preproc_directive] = ACTIONS(2703), - [anon_sym_LPAREN2] = ACTIONS(2705), - [anon_sym_BANG] = ACTIONS(2705), - [anon_sym_TILDE] = ACTIONS(2705), - [anon_sym_DASH] = ACTIONS(2703), - [anon_sym_PLUS] = ACTIONS(2703), - [anon_sym_STAR] = ACTIONS(2705), - [anon_sym_AMP_AMP] = ACTIONS(2705), - [anon_sym_AMP] = ACTIONS(2703), - [anon_sym_SEMI] = ACTIONS(2705), - [anon_sym___extension__] = ACTIONS(2703), - [anon_sym_typedef] = ACTIONS(2703), - [anon_sym_virtual] = ACTIONS(2703), - [anon_sym_extern] = ACTIONS(2703), - [anon_sym___attribute__] = ACTIONS(2703), - [anon_sym___attribute] = ACTIONS(2703), - [anon_sym_using] = ACTIONS(2703), - [anon_sym_COLON_COLON] = ACTIONS(2705), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2705), - [anon_sym___declspec] = ACTIONS(2703), - [anon_sym___based] = ACTIONS(2703), - [anon_sym___cdecl] = ACTIONS(2703), - [anon_sym___clrcall] = ACTIONS(2703), - [anon_sym___stdcall] = ACTIONS(2703), - [anon_sym___fastcall] = ACTIONS(2703), - [anon_sym___thiscall] = ACTIONS(2703), - [anon_sym___vectorcall] = ACTIONS(2703), - [anon_sym_LBRACE] = ACTIONS(2705), - [anon_sym_signed] = ACTIONS(2703), - [anon_sym_unsigned] = ACTIONS(2703), - [anon_sym_long] = ACTIONS(2703), - [anon_sym_short] = ACTIONS(2703), - [anon_sym_LBRACK] = ACTIONS(2703), - [anon_sym_static] = ACTIONS(2703), - [anon_sym_register] = ACTIONS(2703), - [anon_sym_inline] = ACTIONS(2703), - [anon_sym___inline] = ACTIONS(2703), - [anon_sym___inline__] = ACTIONS(2703), - [anon_sym___forceinline] = ACTIONS(2703), - [anon_sym_thread_local] = ACTIONS(2703), - [anon_sym___thread] = ACTIONS(2703), - [anon_sym_const] = ACTIONS(2703), - [anon_sym_constexpr] = ACTIONS(2703), - [anon_sym_volatile] = ACTIONS(2703), - [anon_sym_restrict] = ACTIONS(2703), - [anon_sym___restrict__] = ACTIONS(2703), - [anon_sym__Atomic] = ACTIONS(2703), - [anon_sym__Noreturn] = ACTIONS(2703), - [anon_sym_noreturn] = ACTIONS(2703), - [anon_sym__Nonnull] = ACTIONS(2703), - [anon_sym_mutable] = ACTIONS(2703), - [anon_sym_constinit] = ACTIONS(2703), - [anon_sym_consteval] = ACTIONS(2703), - [anon_sym_alignas] = ACTIONS(2703), - [anon_sym__Alignas] = ACTIONS(2703), - [sym_primitive_type] = ACTIONS(2703), - [anon_sym_enum] = ACTIONS(2703), - [anon_sym_class] = ACTIONS(2703), - [anon_sym_struct] = ACTIONS(2703), - [anon_sym_union] = ACTIONS(2703), - [anon_sym_if] = ACTIONS(2703), - [anon_sym_else] = ACTIONS(2703), - [anon_sym_switch] = ACTIONS(2703), - [anon_sym_case] = ACTIONS(2703), - [anon_sym_default] = ACTIONS(2703), - [anon_sym_while] = ACTIONS(2703), - [anon_sym_do] = ACTIONS(2703), - [anon_sym_for] = ACTIONS(2703), - [anon_sym_return] = ACTIONS(2703), - [anon_sym_break] = ACTIONS(2703), - [anon_sym_continue] = ACTIONS(2703), - [anon_sym_goto] = ACTIONS(2703), - [anon_sym___try] = ACTIONS(2703), - [anon_sym___leave] = ACTIONS(2703), - [anon_sym_not] = ACTIONS(2703), - [anon_sym_compl] = ACTIONS(2703), - [anon_sym_DASH_DASH] = ACTIONS(2705), - [anon_sym_PLUS_PLUS] = ACTIONS(2705), - [anon_sym_sizeof] = ACTIONS(2703), - [anon_sym___alignof__] = ACTIONS(2703), - [anon_sym___alignof] = ACTIONS(2703), - [anon_sym__alignof] = ACTIONS(2703), - [anon_sym_alignof] = ACTIONS(2703), - [anon_sym__Alignof] = ACTIONS(2703), - [anon_sym_offsetof] = ACTIONS(2703), - [anon_sym__Generic] = ACTIONS(2703), - [anon_sym_asm] = ACTIONS(2703), - [anon_sym___asm__] = ACTIONS(2703), - [anon_sym___asm] = ACTIONS(2703), - [sym_number_literal] = ACTIONS(2705), - [anon_sym_L_SQUOTE] = ACTIONS(2705), - [anon_sym_u_SQUOTE] = ACTIONS(2705), - [anon_sym_U_SQUOTE] = ACTIONS(2705), - [anon_sym_u8_SQUOTE] = ACTIONS(2705), - [anon_sym_SQUOTE] = ACTIONS(2705), - [anon_sym_L_DQUOTE] = ACTIONS(2705), - [anon_sym_u_DQUOTE] = ACTIONS(2705), - [anon_sym_U_DQUOTE] = ACTIONS(2705), - [anon_sym_u8_DQUOTE] = ACTIONS(2705), - [anon_sym_DQUOTE] = ACTIONS(2705), - [sym_true] = ACTIONS(2703), - [sym_false] = ACTIONS(2703), - [anon_sym_NULL] = ACTIONS(2703), - [anon_sym_nullptr] = ACTIONS(2703), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2703), - [anon_sym_decltype] = ACTIONS(2703), - [anon_sym_explicit] = ACTIONS(2703), - [anon_sym_typename] = ACTIONS(2703), - [anon_sym_template] = ACTIONS(2703), - [anon_sym_operator] = ACTIONS(2703), - [anon_sym_try] = ACTIONS(2703), - [anon_sym_delete] = ACTIONS(2703), - [anon_sym_throw] = ACTIONS(2703), - [anon_sym_namespace] = ACTIONS(2703), - [anon_sym_static_assert] = ACTIONS(2703), - [anon_sym_concept] = ACTIONS(2703), - [anon_sym_co_return] = ACTIONS(2703), - [anon_sym_co_yield] = ACTIONS(2703), - [anon_sym_R_DQUOTE] = ACTIONS(2705), - [anon_sym_LR_DQUOTE] = ACTIONS(2705), - [anon_sym_uR_DQUOTE] = ACTIONS(2705), - [anon_sym_UR_DQUOTE] = ACTIONS(2705), - [anon_sym_u8R_DQUOTE] = ACTIONS(2705), - [anon_sym_co_await] = ACTIONS(2703), - [anon_sym_new] = ACTIONS(2703), - [anon_sym_requires] = ACTIONS(2703), - [sym_this] = ACTIONS(2703), - }, - [540] = { - [sym_identifier] = ACTIONS(2735), - [aux_sym_preproc_include_token1] = ACTIONS(2735), - [aux_sym_preproc_def_token1] = ACTIONS(2735), - [aux_sym_preproc_if_token1] = ACTIONS(2735), - [aux_sym_preproc_if_token2] = ACTIONS(2735), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2735), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2735), - [sym_preproc_directive] = ACTIONS(2735), - [anon_sym_LPAREN2] = ACTIONS(2737), - [anon_sym_BANG] = ACTIONS(2737), - [anon_sym_TILDE] = ACTIONS(2737), - [anon_sym_DASH] = ACTIONS(2735), - [anon_sym_PLUS] = ACTIONS(2735), - [anon_sym_STAR] = ACTIONS(2737), - [anon_sym_AMP_AMP] = ACTIONS(2737), - [anon_sym_AMP] = ACTIONS(2735), - [anon_sym_SEMI] = ACTIONS(2737), - [anon_sym___extension__] = ACTIONS(2735), - [anon_sym_typedef] = ACTIONS(2735), - [anon_sym_virtual] = ACTIONS(2735), - [anon_sym_extern] = ACTIONS(2735), - [anon_sym___attribute__] = ACTIONS(2735), - [anon_sym___attribute] = ACTIONS(2735), - [anon_sym_using] = ACTIONS(2735), - [anon_sym_COLON_COLON] = ACTIONS(2737), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2737), - [anon_sym___declspec] = ACTIONS(2735), - [anon_sym___based] = ACTIONS(2735), - [anon_sym___cdecl] = ACTIONS(2735), - [anon_sym___clrcall] = ACTIONS(2735), - [anon_sym___stdcall] = ACTIONS(2735), - [anon_sym___fastcall] = ACTIONS(2735), - [anon_sym___thiscall] = ACTIONS(2735), - [anon_sym___vectorcall] = ACTIONS(2735), - [anon_sym_LBRACE] = ACTIONS(2737), - [anon_sym_signed] = ACTIONS(2735), - [anon_sym_unsigned] = ACTIONS(2735), - [anon_sym_long] = ACTIONS(2735), - [anon_sym_short] = ACTIONS(2735), - [anon_sym_LBRACK] = ACTIONS(2735), - [anon_sym_static] = ACTIONS(2735), - [anon_sym_register] = ACTIONS(2735), - [anon_sym_inline] = ACTIONS(2735), - [anon_sym___inline] = ACTIONS(2735), - [anon_sym___inline__] = ACTIONS(2735), - [anon_sym___forceinline] = ACTIONS(2735), - [anon_sym_thread_local] = ACTIONS(2735), - [anon_sym___thread] = ACTIONS(2735), - [anon_sym_const] = ACTIONS(2735), - [anon_sym_constexpr] = ACTIONS(2735), - [anon_sym_volatile] = ACTIONS(2735), - [anon_sym_restrict] = ACTIONS(2735), - [anon_sym___restrict__] = ACTIONS(2735), - [anon_sym__Atomic] = ACTIONS(2735), - [anon_sym__Noreturn] = ACTIONS(2735), - [anon_sym_noreturn] = ACTIONS(2735), - [anon_sym__Nonnull] = ACTIONS(2735), - [anon_sym_mutable] = ACTIONS(2735), - [anon_sym_constinit] = ACTIONS(2735), - [anon_sym_consteval] = ACTIONS(2735), - [anon_sym_alignas] = ACTIONS(2735), - [anon_sym__Alignas] = ACTIONS(2735), - [sym_primitive_type] = ACTIONS(2735), - [anon_sym_enum] = ACTIONS(2735), - [anon_sym_class] = ACTIONS(2735), - [anon_sym_struct] = ACTIONS(2735), - [anon_sym_union] = ACTIONS(2735), - [anon_sym_if] = ACTIONS(2735), - [anon_sym_else] = ACTIONS(2735), - [anon_sym_switch] = ACTIONS(2735), - [anon_sym_case] = ACTIONS(2735), - [anon_sym_default] = ACTIONS(2735), - [anon_sym_while] = ACTIONS(2735), - [anon_sym_do] = ACTIONS(2735), - [anon_sym_for] = ACTIONS(2735), - [anon_sym_return] = ACTIONS(2735), - [anon_sym_break] = ACTIONS(2735), - [anon_sym_continue] = ACTIONS(2735), - [anon_sym_goto] = ACTIONS(2735), - [anon_sym___try] = ACTIONS(2735), - [anon_sym___leave] = ACTIONS(2735), - [anon_sym_not] = ACTIONS(2735), - [anon_sym_compl] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2737), - [anon_sym_PLUS_PLUS] = ACTIONS(2737), - [anon_sym_sizeof] = ACTIONS(2735), - [anon_sym___alignof__] = ACTIONS(2735), - [anon_sym___alignof] = ACTIONS(2735), - [anon_sym__alignof] = ACTIONS(2735), - [anon_sym_alignof] = ACTIONS(2735), - [anon_sym__Alignof] = ACTIONS(2735), - [anon_sym_offsetof] = ACTIONS(2735), - [anon_sym__Generic] = ACTIONS(2735), - [anon_sym_asm] = ACTIONS(2735), - [anon_sym___asm__] = ACTIONS(2735), - [anon_sym___asm] = ACTIONS(2735), - [sym_number_literal] = ACTIONS(2737), - [anon_sym_L_SQUOTE] = ACTIONS(2737), - [anon_sym_u_SQUOTE] = ACTIONS(2737), - [anon_sym_U_SQUOTE] = ACTIONS(2737), - [anon_sym_u8_SQUOTE] = ACTIONS(2737), - [anon_sym_SQUOTE] = ACTIONS(2737), - [anon_sym_L_DQUOTE] = ACTIONS(2737), - [anon_sym_u_DQUOTE] = ACTIONS(2737), - [anon_sym_U_DQUOTE] = ACTIONS(2737), - [anon_sym_u8_DQUOTE] = ACTIONS(2737), - [anon_sym_DQUOTE] = ACTIONS(2737), - [sym_true] = ACTIONS(2735), - [sym_false] = ACTIONS(2735), - [anon_sym_NULL] = ACTIONS(2735), - [anon_sym_nullptr] = ACTIONS(2735), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2735), - [anon_sym_decltype] = ACTIONS(2735), - [anon_sym_explicit] = ACTIONS(2735), - [anon_sym_typename] = ACTIONS(2735), - [anon_sym_template] = ACTIONS(2735), - [anon_sym_operator] = ACTIONS(2735), - [anon_sym_try] = ACTIONS(2735), - [anon_sym_delete] = ACTIONS(2735), - [anon_sym_throw] = ACTIONS(2735), - [anon_sym_namespace] = ACTIONS(2735), - [anon_sym_static_assert] = ACTIONS(2735), - [anon_sym_concept] = ACTIONS(2735), - [anon_sym_co_return] = ACTIONS(2735), - [anon_sym_co_yield] = ACTIONS(2735), - [anon_sym_R_DQUOTE] = ACTIONS(2737), - [anon_sym_LR_DQUOTE] = ACTIONS(2737), - [anon_sym_uR_DQUOTE] = ACTIONS(2737), - [anon_sym_UR_DQUOTE] = ACTIONS(2737), - [anon_sym_u8R_DQUOTE] = ACTIONS(2737), - [anon_sym_co_await] = ACTIONS(2735), - [anon_sym_new] = ACTIONS(2735), - [anon_sym_requires] = ACTIONS(2735), - [sym_this] = ACTIONS(2735), + [551] = { + [sym_identifier] = ACTIONS(2721), + [aux_sym_preproc_include_token1] = ACTIONS(2721), + [aux_sym_preproc_def_token1] = ACTIONS(2721), + [aux_sym_preproc_if_token1] = ACTIONS(2721), + [aux_sym_preproc_if_token2] = ACTIONS(2721), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2721), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2721), + [sym_preproc_directive] = ACTIONS(2721), + [anon_sym_LPAREN2] = ACTIONS(2723), + [anon_sym_BANG] = ACTIONS(2723), + [anon_sym_TILDE] = ACTIONS(2723), + [anon_sym_DASH] = ACTIONS(2721), + [anon_sym_PLUS] = ACTIONS(2721), + [anon_sym_STAR] = ACTIONS(2723), + [anon_sym_AMP_AMP] = ACTIONS(2723), + [anon_sym_AMP] = ACTIONS(2721), + [anon_sym_SEMI] = ACTIONS(2723), + [anon_sym___extension__] = ACTIONS(2721), + [anon_sym_typedef] = ACTIONS(2721), + [anon_sym_virtual] = ACTIONS(2721), + [anon_sym_extern] = ACTIONS(2721), + [anon_sym___attribute__] = ACTIONS(2721), + [anon_sym___attribute] = ACTIONS(2721), + [anon_sym_using] = ACTIONS(2721), + [anon_sym_COLON_COLON] = ACTIONS(2723), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2723), + [anon_sym___declspec] = ACTIONS(2721), + [anon_sym___based] = ACTIONS(2721), + [anon_sym___cdecl] = ACTIONS(2721), + [anon_sym___clrcall] = ACTIONS(2721), + [anon_sym___stdcall] = ACTIONS(2721), + [anon_sym___fastcall] = ACTIONS(2721), + [anon_sym___thiscall] = ACTIONS(2721), + [anon_sym___vectorcall] = ACTIONS(2721), + [anon_sym_LBRACE] = ACTIONS(2723), + [anon_sym_signed] = ACTIONS(2721), + [anon_sym_unsigned] = ACTIONS(2721), + [anon_sym_long] = ACTIONS(2721), + [anon_sym_short] = ACTIONS(2721), + [anon_sym_LBRACK] = ACTIONS(2721), + [anon_sym_static] = ACTIONS(2721), + [anon_sym_register] = ACTIONS(2721), + [anon_sym_inline] = ACTIONS(2721), + [anon_sym___inline] = ACTIONS(2721), + [anon_sym___inline__] = ACTIONS(2721), + [anon_sym___forceinline] = ACTIONS(2721), + [anon_sym_thread_local] = ACTIONS(2721), + [anon_sym___thread] = ACTIONS(2721), + [anon_sym_const] = ACTIONS(2721), + [anon_sym_constexpr] = ACTIONS(2721), + [anon_sym_volatile] = ACTIONS(2721), + [anon_sym_restrict] = ACTIONS(2721), + [anon_sym___restrict__] = ACTIONS(2721), + [anon_sym__Atomic] = ACTIONS(2721), + [anon_sym__Noreturn] = ACTIONS(2721), + [anon_sym_noreturn] = ACTIONS(2721), + [anon_sym__Nonnull] = ACTIONS(2721), + [anon_sym_mutable] = ACTIONS(2721), + [anon_sym_constinit] = ACTIONS(2721), + [anon_sym_consteval] = ACTIONS(2721), + [anon_sym_alignas] = ACTIONS(2721), + [anon_sym__Alignas] = ACTIONS(2721), + [sym_primitive_type] = ACTIONS(2721), + [anon_sym_enum] = ACTIONS(2721), + [anon_sym_class] = ACTIONS(2721), + [anon_sym_struct] = ACTIONS(2721), + [anon_sym_union] = ACTIONS(2721), + [anon_sym_if] = ACTIONS(2721), + [anon_sym_else] = ACTIONS(2721), + [anon_sym_switch] = ACTIONS(2721), + [anon_sym_case] = ACTIONS(2721), + [anon_sym_default] = ACTIONS(2721), + [anon_sym_while] = ACTIONS(2721), + [anon_sym_do] = ACTIONS(2721), + [anon_sym_for] = ACTIONS(2721), + [anon_sym_return] = ACTIONS(2721), + [anon_sym_break] = ACTIONS(2721), + [anon_sym_continue] = ACTIONS(2721), + [anon_sym_goto] = ACTIONS(2721), + [anon_sym___try] = ACTIONS(2721), + [anon_sym___leave] = ACTIONS(2721), + [anon_sym_not] = ACTIONS(2721), + [anon_sym_compl] = ACTIONS(2721), + [anon_sym_DASH_DASH] = ACTIONS(2723), + [anon_sym_PLUS_PLUS] = ACTIONS(2723), + [anon_sym_sizeof] = ACTIONS(2721), + [anon_sym___alignof__] = ACTIONS(2721), + [anon_sym___alignof] = ACTIONS(2721), + [anon_sym__alignof] = ACTIONS(2721), + [anon_sym_alignof] = ACTIONS(2721), + [anon_sym__Alignof] = ACTIONS(2721), + [anon_sym_offsetof] = ACTIONS(2721), + [anon_sym__Generic] = ACTIONS(2721), + [anon_sym_asm] = ACTIONS(2721), + [anon_sym___asm__] = ACTIONS(2721), + [anon_sym___asm] = ACTIONS(2721), + [sym_number_literal] = ACTIONS(2723), + [anon_sym_L_SQUOTE] = ACTIONS(2723), + [anon_sym_u_SQUOTE] = ACTIONS(2723), + [anon_sym_U_SQUOTE] = ACTIONS(2723), + [anon_sym_u8_SQUOTE] = ACTIONS(2723), + [anon_sym_SQUOTE] = ACTIONS(2723), + [anon_sym_L_DQUOTE] = ACTIONS(2723), + [anon_sym_u_DQUOTE] = ACTIONS(2723), + [anon_sym_U_DQUOTE] = ACTIONS(2723), + [anon_sym_u8_DQUOTE] = ACTIONS(2723), + [anon_sym_DQUOTE] = ACTIONS(2723), + [sym_true] = ACTIONS(2721), + [sym_false] = ACTIONS(2721), + [anon_sym_NULL] = ACTIONS(2721), + [anon_sym_nullptr] = ACTIONS(2721), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2721), + [anon_sym_decltype] = ACTIONS(2721), + [anon_sym_explicit] = ACTIONS(2721), + [anon_sym_typename] = ACTIONS(2721), + [anon_sym_template] = ACTIONS(2721), + [anon_sym_operator] = ACTIONS(2721), + [anon_sym_try] = ACTIONS(2721), + [anon_sym_delete] = ACTIONS(2721), + [anon_sym_throw] = ACTIONS(2721), + [anon_sym_namespace] = ACTIONS(2721), + [anon_sym_static_assert] = ACTIONS(2721), + [anon_sym_concept] = ACTIONS(2721), + [anon_sym_co_return] = ACTIONS(2721), + [anon_sym_co_yield] = ACTIONS(2721), + [anon_sym_R_DQUOTE] = ACTIONS(2723), + [anon_sym_LR_DQUOTE] = ACTIONS(2723), + [anon_sym_uR_DQUOTE] = ACTIONS(2723), + [anon_sym_UR_DQUOTE] = ACTIONS(2723), + [anon_sym_u8R_DQUOTE] = ACTIONS(2723), + [anon_sym_co_await] = ACTIONS(2721), + [anon_sym_new] = ACTIONS(2721), + [anon_sym_requires] = ACTIONS(2721), + [sym_this] = ACTIONS(2721), }, - [541] = { - [sym_identifier] = ACTIONS(2743), - [aux_sym_preproc_include_token1] = ACTIONS(2743), - [aux_sym_preproc_def_token1] = ACTIONS(2743), - [aux_sym_preproc_if_token1] = ACTIONS(2743), - [aux_sym_preproc_if_token2] = ACTIONS(2743), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2743), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2743), - [sym_preproc_directive] = ACTIONS(2743), - [anon_sym_LPAREN2] = ACTIONS(2745), - [anon_sym_BANG] = ACTIONS(2745), - [anon_sym_TILDE] = ACTIONS(2745), - [anon_sym_DASH] = ACTIONS(2743), - [anon_sym_PLUS] = ACTIONS(2743), - [anon_sym_STAR] = ACTIONS(2745), - [anon_sym_AMP_AMP] = ACTIONS(2745), - [anon_sym_AMP] = ACTIONS(2743), - [anon_sym_SEMI] = ACTIONS(2745), - [anon_sym___extension__] = ACTIONS(2743), - [anon_sym_typedef] = ACTIONS(2743), - [anon_sym_virtual] = ACTIONS(2743), - [anon_sym_extern] = ACTIONS(2743), - [anon_sym___attribute__] = ACTIONS(2743), - [anon_sym___attribute] = ACTIONS(2743), - [anon_sym_using] = ACTIONS(2743), - [anon_sym_COLON_COLON] = ACTIONS(2745), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2745), - [anon_sym___declspec] = ACTIONS(2743), - [anon_sym___based] = ACTIONS(2743), - [anon_sym___cdecl] = ACTIONS(2743), - [anon_sym___clrcall] = ACTIONS(2743), - [anon_sym___stdcall] = ACTIONS(2743), - [anon_sym___fastcall] = ACTIONS(2743), - [anon_sym___thiscall] = ACTIONS(2743), - [anon_sym___vectorcall] = ACTIONS(2743), - [anon_sym_LBRACE] = ACTIONS(2745), - [anon_sym_signed] = ACTIONS(2743), - [anon_sym_unsigned] = ACTIONS(2743), - [anon_sym_long] = ACTIONS(2743), - [anon_sym_short] = ACTIONS(2743), - [anon_sym_LBRACK] = ACTIONS(2743), - [anon_sym_static] = ACTIONS(2743), - [anon_sym_register] = ACTIONS(2743), - [anon_sym_inline] = ACTIONS(2743), - [anon_sym___inline] = ACTIONS(2743), - [anon_sym___inline__] = ACTIONS(2743), - [anon_sym___forceinline] = ACTIONS(2743), - [anon_sym_thread_local] = ACTIONS(2743), - [anon_sym___thread] = ACTIONS(2743), - [anon_sym_const] = ACTIONS(2743), - [anon_sym_constexpr] = ACTIONS(2743), - [anon_sym_volatile] = ACTIONS(2743), - [anon_sym_restrict] = ACTIONS(2743), - [anon_sym___restrict__] = ACTIONS(2743), - [anon_sym__Atomic] = ACTIONS(2743), - [anon_sym__Noreturn] = ACTIONS(2743), - [anon_sym_noreturn] = ACTIONS(2743), - [anon_sym__Nonnull] = ACTIONS(2743), - [anon_sym_mutable] = ACTIONS(2743), - [anon_sym_constinit] = ACTIONS(2743), - [anon_sym_consteval] = ACTIONS(2743), - [anon_sym_alignas] = ACTIONS(2743), - [anon_sym__Alignas] = ACTIONS(2743), - [sym_primitive_type] = ACTIONS(2743), - [anon_sym_enum] = ACTIONS(2743), - [anon_sym_class] = ACTIONS(2743), - [anon_sym_struct] = ACTIONS(2743), - [anon_sym_union] = ACTIONS(2743), - [anon_sym_if] = ACTIONS(2743), - [anon_sym_else] = ACTIONS(2743), - [anon_sym_switch] = ACTIONS(2743), - [anon_sym_case] = ACTIONS(2743), - [anon_sym_default] = ACTIONS(2743), - [anon_sym_while] = ACTIONS(2743), - [anon_sym_do] = ACTIONS(2743), - [anon_sym_for] = ACTIONS(2743), - [anon_sym_return] = ACTIONS(2743), - [anon_sym_break] = ACTIONS(2743), - [anon_sym_continue] = ACTIONS(2743), - [anon_sym_goto] = ACTIONS(2743), - [anon_sym___try] = ACTIONS(2743), - [anon_sym___leave] = ACTIONS(2743), - [anon_sym_not] = ACTIONS(2743), - [anon_sym_compl] = ACTIONS(2743), - [anon_sym_DASH_DASH] = ACTIONS(2745), - [anon_sym_PLUS_PLUS] = ACTIONS(2745), - [anon_sym_sizeof] = ACTIONS(2743), - [anon_sym___alignof__] = ACTIONS(2743), - [anon_sym___alignof] = ACTIONS(2743), - [anon_sym__alignof] = ACTIONS(2743), - [anon_sym_alignof] = ACTIONS(2743), - [anon_sym__Alignof] = ACTIONS(2743), - [anon_sym_offsetof] = ACTIONS(2743), - [anon_sym__Generic] = ACTIONS(2743), - [anon_sym_asm] = ACTIONS(2743), - [anon_sym___asm__] = ACTIONS(2743), - [anon_sym___asm] = ACTIONS(2743), - [sym_number_literal] = ACTIONS(2745), - [anon_sym_L_SQUOTE] = ACTIONS(2745), - [anon_sym_u_SQUOTE] = ACTIONS(2745), - [anon_sym_U_SQUOTE] = ACTIONS(2745), - [anon_sym_u8_SQUOTE] = ACTIONS(2745), - [anon_sym_SQUOTE] = ACTIONS(2745), - [anon_sym_L_DQUOTE] = ACTIONS(2745), - [anon_sym_u_DQUOTE] = ACTIONS(2745), - [anon_sym_U_DQUOTE] = ACTIONS(2745), - [anon_sym_u8_DQUOTE] = ACTIONS(2745), - [anon_sym_DQUOTE] = ACTIONS(2745), - [sym_true] = ACTIONS(2743), - [sym_false] = ACTIONS(2743), - [anon_sym_NULL] = ACTIONS(2743), - [anon_sym_nullptr] = ACTIONS(2743), + [552] = { + [sym_identifier] = ACTIONS(1940), + [aux_sym_preproc_include_token1] = ACTIONS(1940), + [aux_sym_preproc_def_token1] = ACTIONS(1940), + [anon_sym_COMMA] = ACTIONS(2729), + [aux_sym_preproc_if_token1] = ACTIONS(1940), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1940), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1940), + [sym_preproc_directive] = ACTIONS(1940), + [anon_sym_LPAREN2] = ACTIONS(1938), + [anon_sym_BANG] = ACTIONS(1938), + [anon_sym_TILDE] = ACTIONS(1938), + [anon_sym_DASH] = ACTIONS(1940), + [anon_sym_PLUS] = ACTIONS(1940), + [anon_sym_STAR] = ACTIONS(1938), + [anon_sym_AMP_AMP] = ACTIONS(1938), + [anon_sym_AMP] = ACTIONS(1940), + [anon_sym_SEMI] = ACTIONS(2729), + [anon_sym___extension__] = ACTIONS(1940), + [anon_sym_typedef] = ACTIONS(1940), + [anon_sym_virtual] = ACTIONS(1940), + [anon_sym_extern] = ACTIONS(1940), + [anon_sym___attribute__] = ACTIONS(1940), + [anon_sym___attribute] = ACTIONS(1940), + [anon_sym_using] = ACTIONS(1940), + [anon_sym_COLON_COLON] = ACTIONS(1938), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1938), + [anon_sym___declspec] = ACTIONS(1940), + [anon_sym___based] = ACTIONS(1940), + [anon_sym___cdecl] = ACTIONS(1940), + [anon_sym___clrcall] = ACTIONS(1940), + [anon_sym___stdcall] = ACTIONS(1940), + [anon_sym___fastcall] = ACTIONS(1940), + [anon_sym___thiscall] = ACTIONS(1940), + [anon_sym___vectorcall] = ACTIONS(1940), + [anon_sym_LBRACE] = ACTIONS(1938), + [anon_sym_RBRACE] = ACTIONS(1938), + [anon_sym_signed] = ACTIONS(1940), + [anon_sym_unsigned] = ACTIONS(1940), + [anon_sym_long] = ACTIONS(1940), + [anon_sym_short] = ACTIONS(1940), + [anon_sym_LBRACK] = ACTIONS(1940), + [anon_sym_static] = ACTIONS(1940), + [anon_sym_register] = ACTIONS(1940), + [anon_sym_inline] = ACTIONS(1940), + [anon_sym___inline] = ACTIONS(1940), + [anon_sym___inline__] = ACTIONS(1940), + [anon_sym___forceinline] = ACTIONS(1940), + [anon_sym_thread_local] = ACTIONS(1940), + [anon_sym___thread] = ACTIONS(1940), + [anon_sym_const] = ACTIONS(1940), + [anon_sym_constexpr] = ACTIONS(1940), + [anon_sym_volatile] = ACTIONS(1940), + [anon_sym_restrict] = ACTIONS(1940), + [anon_sym___restrict__] = ACTIONS(1940), + [anon_sym__Atomic] = ACTIONS(1940), + [anon_sym__Noreturn] = ACTIONS(1940), + [anon_sym_noreturn] = ACTIONS(1940), + [anon_sym__Nonnull] = ACTIONS(1940), + [anon_sym_mutable] = ACTIONS(1940), + [anon_sym_constinit] = ACTIONS(1940), + [anon_sym_consteval] = ACTIONS(1940), + [anon_sym_alignas] = ACTIONS(1940), + [anon_sym__Alignas] = ACTIONS(1940), + [sym_primitive_type] = ACTIONS(1940), + [anon_sym_enum] = ACTIONS(1940), + [anon_sym_class] = ACTIONS(1940), + [anon_sym_struct] = ACTIONS(1940), + [anon_sym_union] = ACTIONS(1940), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_switch] = ACTIONS(1940), + [anon_sym_case] = ACTIONS(1940), + [anon_sym_default] = ACTIONS(1940), + [anon_sym_while] = ACTIONS(1940), + [anon_sym_do] = ACTIONS(1940), + [anon_sym_for] = ACTIONS(1940), + [anon_sym_return] = ACTIONS(1940), + [anon_sym_break] = ACTIONS(1940), + [anon_sym_continue] = ACTIONS(1940), + [anon_sym_goto] = ACTIONS(1940), + [anon_sym___try] = ACTIONS(1940), + [anon_sym___leave] = ACTIONS(1940), + [anon_sym_not] = ACTIONS(1940), + [anon_sym_compl] = ACTIONS(1940), + [anon_sym_DASH_DASH] = ACTIONS(1938), + [anon_sym_PLUS_PLUS] = ACTIONS(1938), + [anon_sym_sizeof] = ACTIONS(1940), + [anon_sym___alignof__] = ACTIONS(1940), + [anon_sym___alignof] = ACTIONS(1940), + [anon_sym__alignof] = ACTIONS(1940), + [anon_sym_alignof] = ACTIONS(1940), + [anon_sym__Alignof] = ACTIONS(1940), + [anon_sym_offsetof] = ACTIONS(1940), + [anon_sym__Generic] = ACTIONS(1940), + [anon_sym_asm] = ACTIONS(1940), + [anon_sym___asm__] = ACTIONS(1940), + [anon_sym___asm] = ACTIONS(1940), + [sym_number_literal] = ACTIONS(1938), + [anon_sym_L_SQUOTE] = ACTIONS(1938), + [anon_sym_u_SQUOTE] = ACTIONS(1938), + [anon_sym_U_SQUOTE] = ACTIONS(1938), + [anon_sym_u8_SQUOTE] = ACTIONS(1938), + [anon_sym_SQUOTE] = ACTIONS(1938), + [anon_sym_L_DQUOTE] = ACTIONS(1938), + [anon_sym_u_DQUOTE] = ACTIONS(1938), + [anon_sym_U_DQUOTE] = ACTIONS(1938), + [anon_sym_u8_DQUOTE] = ACTIONS(1938), + [anon_sym_DQUOTE] = ACTIONS(1938), + [sym_true] = ACTIONS(1940), + [sym_false] = ACTIONS(1940), + [anon_sym_NULL] = ACTIONS(1940), + [anon_sym_nullptr] = ACTIONS(1940), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2743), - [anon_sym_decltype] = ACTIONS(2743), - [anon_sym_explicit] = ACTIONS(2743), - [anon_sym_typename] = ACTIONS(2743), - [anon_sym_template] = ACTIONS(2743), - [anon_sym_operator] = ACTIONS(2743), - [anon_sym_try] = ACTIONS(2743), - [anon_sym_delete] = ACTIONS(2743), - [anon_sym_throw] = ACTIONS(2743), - [anon_sym_namespace] = ACTIONS(2743), - [anon_sym_static_assert] = ACTIONS(2743), - [anon_sym_concept] = ACTIONS(2743), - [anon_sym_co_return] = ACTIONS(2743), - [anon_sym_co_yield] = ACTIONS(2743), - [anon_sym_R_DQUOTE] = ACTIONS(2745), - [anon_sym_LR_DQUOTE] = ACTIONS(2745), - [anon_sym_uR_DQUOTE] = ACTIONS(2745), - [anon_sym_UR_DQUOTE] = ACTIONS(2745), - [anon_sym_u8R_DQUOTE] = ACTIONS(2745), - [anon_sym_co_await] = ACTIONS(2743), - [anon_sym_new] = ACTIONS(2743), - [anon_sym_requires] = ACTIONS(2743), - [sym_this] = ACTIONS(2743), + [sym_auto] = ACTIONS(1940), + [anon_sym_decltype] = ACTIONS(1940), + [anon_sym_explicit] = ACTIONS(1940), + [anon_sym_typename] = ACTIONS(1940), + [anon_sym_template] = ACTIONS(1940), + [anon_sym_operator] = ACTIONS(1940), + [anon_sym_try] = ACTIONS(1940), + [anon_sym_delete] = ACTIONS(1940), + [anon_sym_throw] = ACTIONS(1940), + [anon_sym_namespace] = ACTIONS(1940), + [anon_sym_static_assert] = ACTIONS(1940), + [anon_sym_concept] = ACTIONS(1940), + [anon_sym_co_return] = ACTIONS(1940), + [anon_sym_co_yield] = ACTIONS(1940), + [anon_sym_R_DQUOTE] = ACTIONS(1938), + [anon_sym_LR_DQUOTE] = ACTIONS(1938), + [anon_sym_uR_DQUOTE] = ACTIONS(1938), + [anon_sym_UR_DQUOTE] = ACTIONS(1938), + [anon_sym_u8R_DQUOTE] = ACTIONS(1938), + [anon_sym_co_await] = ACTIONS(1940), + [anon_sym_new] = ACTIONS(1940), + [anon_sym_requires] = ACTIONS(1940), + [sym_this] = ACTIONS(1940), }, - [542] = { - [sym_identifier] = ACTIONS(2647), - [aux_sym_preproc_include_token1] = ACTIONS(2647), - [aux_sym_preproc_def_token1] = ACTIONS(2647), - [aux_sym_preproc_if_token1] = ACTIONS(2647), - [aux_sym_preproc_if_token2] = ACTIONS(2647), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2647), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2647), - [sym_preproc_directive] = ACTIONS(2647), - [anon_sym_LPAREN2] = ACTIONS(2649), - [anon_sym_BANG] = ACTIONS(2649), - [anon_sym_TILDE] = ACTIONS(2649), - [anon_sym_DASH] = ACTIONS(2647), - [anon_sym_PLUS] = ACTIONS(2647), - [anon_sym_STAR] = ACTIONS(2649), - [anon_sym_AMP_AMP] = ACTIONS(2649), - [anon_sym_AMP] = ACTIONS(2647), - [anon_sym_SEMI] = ACTIONS(2649), - [anon_sym___extension__] = ACTIONS(2647), - [anon_sym_typedef] = ACTIONS(2647), - [anon_sym_virtual] = ACTIONS(2647), - [anon_sym_extern] = ACTIONS(2647), - [anon_sym___attribute__] = ACTIONS(2647), - [anon_sym___attribute] = ACTIONS(2647), - [anon_sym_using] = ACTIONS(2647), - [anon_sym_COLON_COLON] = ACTIONS(2649), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2649), - [anon_sym___declspec] = ACTIONS(2647), - [anon_sym___based] = ACTIONS(2647), - [anon_sym___cdecl] = ACTIONS(2647), - [anon_sym___clrcall] = ACTIONS(2647), - [anon_sym___stdcall] = ACTIONS(2647), - [anon_sym___fastcall] = ACTIONS(2647), - [anon_sym___thiscall] = ACTIONS(2647), - [anon_sym___vectorcall] = ACTIONS(2647), - [anon_sym_LBRACE] = ACTIONS(2649), - [anon_sym_signed] = ACTIONS(2647), - [anon_sym_unsigned] = ACTIONS(2647), - [anon_sym_long] = ACTIONS(2647), - [anon_sym_short] = ACTIONS(2647), - [anon_sym_LBRACK] = ACTIONS(2647), - [anon_sym_static] = ACTIONS(2647), - [anon_sym_register] = ACTIONS(2647), - [anon_sym_inline] = ACTIONS(2647), - [anon_sym___inline] = ACTIONS(2647), - [anon_sym___inline__] = ACTIONS(2647), - [anon_sym___forceinline] = ACTIONS(2647), - [anon_sym_thread_local] = ACTIONS(2647), - [anon_sym___thread] = ACTIONS(2647), - [anon_sym_const] = ACTIONS(2647), - [anon_sym_constexpr] = ACTIONS(2647), - [anon_sym_volatile] = ACTIONS(2647), - [anon_sym_restrict] = ACTIONS(2647), - [anon_sym___restrict__] = ACTIONS(2647), - [anon_sym__Atomic] = ACTIONS(2647), - [anon_sym__Noreturn] = ACTIONS(2647), - [anon_sym_noreturn] = ACTIONS(2647), - [anon_sym__Nonnull] = ACTIONS(2647), - [anon_sym_mutable] = ACTIONS(2647), - [anon_sym_constinit] = ACTIONS(2647), - [anon_sym_consteval] = ACTIONS(2647), - [anon_sym_alignas] = ACTIONS(2647), - [anon_sym__Alignas] = ACTIONS(2647), - [sym_primitive_type] = ACTIONS(2647), - [anon_sym_enum] = ACTIONS(2647), - [anon_sym_class] = ACTIONS(2647), - [anon_sym_struct] = ACTIONS(2647), - [anon_sym_union] = ACTIONS(2647), - [anon_sym_if] = ACTIONS(2647), - [anon_sym_else] = ACTIONS(2647), - [anon_sym_switch] = ACTIONS(2647), - [anon_sym_case] = ACTIONS(2647), - [anon_sym_default] = ACTIONS(2647), - [anon_sym_while] = ACTIONS(2647), - [anon_sym_do] = ACTIONS(2647), - [anon_sym_for] = ACTIONS(2647), - [anon_sym_return] = ACTIONS(2647), - [anon_sym_break] = ACTIONS(2647), - [anon_sym_continue] = ACTIONS(2647), - [anon_sym_goto] = ACTIONS(2647), - [anon_sym___try] = ACTIONS(2647), - [anon_sym___leave] = ACTIONS(2647), - [anon_sym_not] = ACTIONS(2647), - [anon_sym_compl] = ACTIONS(2647), - [anon_sym_DASH_DASH] = ACTIONS(2649), - [anon_sym_PLUS_PLUS] = ACTIONS(2649), - [anon_sym_sizeof] = ACTIONS(2647), - [anon_sym___alignof__] = ACTIONS(2647), - [anon_sym___alignof] = ACTIONS(2647), - [anon_sym__alignof] = ACTIONS(2647), - [anon_sym_alignof] = ACTIONS(2647), - [anon_sym__Alignof] = ACTIONS(2647), - [anon_sym_offsetof] = ACTIONS(2647), - [anon_sym__Generic] = ACTIONS(2647), - [anon_sym_asm] = ACTIONS(2647), - [anon_sym___asm__] = ACTIONS(2647), - [anon_sym___asm] = ACTIONS(2647), - [sym_number_literal] = ACTIONS(2649), - [anon_sym_L_SQUOTE] = ACTIONS(2649), - [anon_sym_u_SQUOTE] = ACTIONS(2649), - [anon_sym_U_SQUOTE] = ACTIONS(2649), - [anon_sym_u8_SQUOTE] = ACTIONS(2649), - [anon_sym_SQUOTE] = ACTIONS(2649), - [anon_sym_L_DQUOTE] = ACTIONS(2649), - [anon_sym_u_DQUOTE] = ACTIONS(2649), - [anon_sym_U_DQUOTE] = ACTIONS(2649), - [anon_sym_u8_DQUOTE] = ACTIONS(2649), - [anon_sym_DQUOTE] = ACTIONS(2649), - [sym_true] = ACTIONS(2647), - [sym_false] = ACTIONS(2647), - [anon_sym_NULL] = ACTIONS(2647), - [anon_sym_nullptr] = ACTIONS(2647), + [553] = { + [sym_identifier] = ACTIONS(2739), + [aux_sym_preproc_include_token1] = ACTIONS(2739), + [aux_sym_preproc_def_token1] = ACTIONS(2739), + [aux_sym_preproc_if_token1] = ACTIONS(2739), + [aux_sym_preproc_if_token2] = ACTIONS(2739), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2739), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2739), + [sym_preproc_directive] = ACTIONS(2739), + [anon_sym_LPAREN2] = ACTIONS(2741), + [anon_sym_BANG] = ACTIONS(2741), + [anon_sym_TILDE] = ACTIONS(2741), + [anon_sym_DASH] = ACTIONS(2739), + [anon_sym_PLUS] = ACTIONS(2739), + [anon_sym_STAR] = ACTIONS(2741), + [anon_sym_AMP_AMP] = ACTIONS(2741), + [anon_sym_AMP] = ACTIONS(2739), + [anon_sym_SEMI] = ACTIONS(2741), + [anon_sym___extension__] = ACTIONS(2739), + [anon_sym_typedef] = ACTIONS(2739), + [anon_sym_virtual] = ACTIONS(2739), + [anon_sym_extern] = ACTIONS(2739), + [anon_sym___attribute__] = ACTIONS(2739), + [anon_sym___attribute] = ACTIONS(2739), + [anon_sym_using] = ACTIONS(2739), + [anon_sym_COLON_COLON] = ACTIONS(2741), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2741), + [anon_sym___declspec] = ACTIONS(2739), + [anon_sym___based] = ACTIONS(2739), + [anon_sym___cdecl] = ACTIONS(2739), + [anon_sym___clrcall] = ACTIONS(2739), + [anon_sym___stdcall] = ACTIONS(2739), + [anon_sym___fastcall] = ACTIONS(2739), + [anon_sym___thiscall] = ACTIONS(2739), + [anon_sym___vectorcall] = ACTIONS(2739), + [anon_sym_LBRACE] = ACTIONS(2741), + [anon_sym_signed] = ACTIONS(2739), + [anon_sym_unsigned] = ACTIONS(2739), + [anon_sym_long] = ACTIONS(2739), + [anon_sym_short] = ACTIONS(2739), + [anon_sym_LBRACK] = ACTIONS(2739), + [anon_sym_static] = ACTIONS(2739), + [anon_sym_register] = ACTIONS(2739), + [anon_sym_inline] = ACTIONS(2739), + [anon_sym___inline] = ACTIONS(2739), + [anon_sym___inline__] = ACTIONS(2739), + [anon_sym___forceinline] = ACTIONS(2739), + [anon_sym_thread_local] = ACTIONS(2739), + [anon_sym___thread] = ACTIONS(2739), + [anon_sym_const] = ACTIONS(2739), + [anon_sym_constexpr] = ACTIONS(2739), + [anon_sym_volatile] = ACTIONS(2739), + [anon_sym_restrict] = ACTIONS(2739), + [anon_sym___restrict__] = ACTIONS(2739), + [anon_sym__Atomic] = ACTIONS(2739), + [anon_sym__Noreturn] = ACTIONS(2739), + [anon_sym_noreturn] = ACTIONS(2739), + [anon_sym__Nonnull] = ACTIONS(2739), + [anon_sym_mutable] = ACTIONS(2739), + [anon_sym_constinit] = ACTIONS(2739), + [anon_sym_consteval] = ACTIONS(2739), + [anon_sym_alignas] = ACTIONS(2739), + [anon_sym__Alignas] = ACTIONS(2739), + [sym_primitive_type] = ACTIONS(2739), + [anon_sym_enum] = ACTIONS(2739), + [anon_sym_class] = ACTIONS(2739), + [anon_sym_struct] = ACTIONS(2739), + [anon_sym_union] = ACTIONS(2739), + [anon_sym_if] = ACTIONS(2739), + [anon_sym_else] = ACTIONS(2739), + [anon_sym_switch] = ACTIONS(2739), + [anon_sym_case] = ACTIONS(2739), + [anon_sym_default] = ACTIONS(2739), + [anon_sym_while] = ACTIONS(2739), + [anon_sym_do] = ACTIONS(2739), + [anon_sym_for] = ACTIONS(2739), + [anon_sym_return] = ACTIONS(2739), + [anon_sym_break] = ACTIONS(2739), + [anon_sym_continue] = ACTIONS(2739), + [anon_sym_goto] = ACTIONS(2739), + [anon_sym___try] = ACTIONS(2739), + [anon_sym___leave] = ACTIONS(2739), + [anon_sym_not] = ACTIONS(2739), + [anon_sym_compl] = ACTIONS(2739), + [anon_sym_DASH_DASH] = ACTIONS(2741), + [anon_sym_PLUS_PLUS] = ACTIONS(2741), + [anon_sym_sizeof] = ACTIONS(2739), + [anon_sym___alignof__] = ACTIONS(2739), + [anon_sym___alignof] = ACTIONS(2739), + [anon_sym__alignof] = ACTIONS(2739), + [anon_sym_alignof] = ACTIONS(2739), + [anon_sym__Alignof] = ACTIONS(2739), + [anon_sym_offsetof] = ACTIONS(2739), + [anon_sym__Generic] = ACTIONS(2739), + [anon_sym_asm] = ACTIONS(2739), + [anon_sym___asm__] = ACTIONS(2739), + [anon_sym___asm] = ACTIONS(2739), + [sym_number_literal] = ACTIONS(2741), + [anon_sym_L_SQUOTE] = ACTIONS(2741), + [anon_sym_u_SQUOTE] = ACTIONS(2741), + [anon_sym_U_SQUOTE] = ACTIONS(2741), + [anon_sym_u8_SQUOTE] = ACTIONS(2741), + [anon_sym_SQUOTE] = ACTIONS(2741), + [anon_sym_L_DQUOTE] = ACTIONS(2741), + [anon_sym_u_DQUOTE] = ACTIONS(2741), + [anon_sym_U_DQUOTE] = ACTIONS(2741), + [anon_sym_u8_DQUOTE] = ACTIONS(2741), + [anon_sym_DQUOTE] = ACTIONS(2741), + [sym_true] = ACTIONS(2739), + [sym_false] = ACTIONS(2739), + [anon_sym_NULL] = ACTIONS(2739), + [anon_sym_nullptr] = ACTIONS(2739), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2647), - [anon_sym_decltype] = ACTIONS(2647), - [anon_sym_explicit] = ACTIONS(2647), - [anon_sym_typename] = ACTIONS(2647), - [anon_sym_template] = ACTIONS(2647), - [anon_sym_operator] = ACTIONS(2647), - [anon_sym_try] = ACTIONS(2647), - [anon_sym_delete] = ACTIONS(2647), - [anon_sym_throw] = ACTIONS(2647), - [anon_sym_namespace] = ACTIONS(2647), - [anon_sym_static_assert] = ACTIONS(2647), - [anon_sym_concept] = ACTIONS(2647), - [anon_sym_co_return] = ACTIONS(2647), - [anon_sym_co_yield] = ACTIONS(2647), - [anon_sym_R_DQUOTE] = ACTIONS(2649), - [anon_sym_LR_DQUOTE] = ACTIONS(2649), - [anon_sym_uR_DQUOTE] = ACTIONS(2649), - [anon_sym_UR_DQUOTE] = ACTIONS(2649), - [anon_sym_u8R_DQUOTE] = ACTIONS(2649), - [anon_sym_co_await] = ACTIONS(2647), - [anon_sym_new] = ACTIONS(2647), - [anon_sym_requires] = ACTIONS(2647), - [sym_this] = ACTIONS(2647), - }, - [543] = { - [ts_builtin_sym_end] = ACTIONS(3316), - [sym_identifier] = ACTIONS(3313), - [aux_sym_preproc_include_token1] = ACTIONS(3313), - [aux_sym_preproc_def_token1] = ACTIONS(3313), - [aux_sym_preproc_if_token1] = ACTIONS(3313), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3313), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3313), - [sym_preproc_directive] = ACTIONS(3313), - [anon_sym_LPAREN2] = ACTIONS(3316), - [anon_sym_BANG] = ACTIONS(3316), - [anon_sym_TILDE] = ACTIONS(3316), - [anon_sym_DASH] = ACTIONS(3313), - [anon_sym_PLUS] = ACTIONS(3313), - [anon_sym_STAR] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_AMP] = ACTIONS(3313), - [anon_sym_SEMI] = ACTIONS(3316), - [anon_sym___extension__] = ACTIONS(3313), - [anon_sym_typedef] = ACTIONS(3313), - [anon_sym_virtual] = ACTIONS(3313), - [anon_sym_extern] = ACTIONS(3313), - [anon_sym___attribute__] = ACTIONS(3313), - [anon_sym___attribute] = ACTIONS(3313), - [anon_sym_using] = ACTIONS(3313), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3316), - [anon_sym___declspec] = ACTIONS(3313), - [anon_sym___based] = ACTIONS(3313), - [anon_sym___cdecl] = ACTIONS(3313), - [anon_sym___clrcall] = ACTIONS(3313), - [anon_sym___stdcall] = ACTIONS(3313), - [anon_sym___fastcall] = ACTIONS(3313), - [anon_sym___thiscall] = ACTIONS(3313), - [anon_sym___vectorcall] = ACTIONS(3313), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_signed] = ACTIONS(3313), - [anon_sym_unsigned] = ACTIONS(3313), - [anon_sym_long] = ACTIONS(3313), - [anon_sym_short] = ACTIONS(3313), - [anon_sym_LBRACK] = ACTIONS(3313), - [anon_sym_static] = ACTIONS(3313), - [anon_sym_register] = ACTIONS(3313), - [anon_sym_inline] = ACTIONS(3313), - [anon_sym___inline] = ACTIONS(3313), - [anon_sym___inline__] = ACTIONS(3313), - [anon_sym___forceinline] = ACTIONS(3313), - [anon_sym_thread_local] = ACTIONS(3313), - [anon_sym___thread] = ACTIONS(3313), - [anon_sym_const] = ACTIONS(3313), - [anon_sym_constexpr] = ACTIONS(3313), - [anon_sym_volatile] = ACTIONS(3313), - [anon_sym_restrict] = ACTIONS(3313), - [anon_sym___restrict__] = ACTIONS(3313), - [anon_sym__Atomic] = ACTIONS(3313), - [anon_sym__Noreturn] = ACTIONS(3313), - [anon_sym_noreturn] = ACTIONS(3313), - [anon_sym__Nonnull] = ACTIONS(3313), - [anon_sym_mutable] = ACTIONS(3313), - [anon_sym_constinit] = ACTIONS(3313), - [anon_sym_consteval] = ACTIONS(3313), - [anon_sym_alignas] = ACTIONS(3313), - [anon_sym__Alignas] = ACTIONS(3313), - [sym_primitive_type] = ACTIONS(3313), - [anon_sym_enum] = ACTIONS(3313), - [anon_sym_class] = ACTIONS(3313), - [anon_sym_struct] = ACTIONS(3313), - [anon_sym_union] = ACTIONS(3313), - [anon_sym_if] = ACTIONS(3313), - [anon_sym_switch] = ACTIONS(3313), - [anon_sym_case] = ACTIONS(3313), - [anon_sym_default] = ACTIONS(3313), - [anon_sym_while] = ACTIONS(3313), - [anon_sym_do] = ACTIONS(3313), - [anon_sym_for] = ACTIONS(3313), - [anon_sym_return] = ACTIONS(3313), - [anon_sym_break] = ACTIONS(3313), - [anon_sym_continue] = ACTIONS(3313), - [anon_sym_goto] = ACTIONS(3313), - [anon_sym_not] = ACTIONS(3313), - [anon_sym_compl] = ACTIONS(3313), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_sizeof] = ACTIONS(3313), - [anon_sym___alignof__] = ACTIONS(3313), - [anon_sym___alignof] = ACTIONS(3313), - [anon_sym__alignof] = ACTIONS(3313), - [anon_sym_alignof] = ACTIONS(3313), - [anon_sym__Alignof] = ACTIONS(3313), - [anon_sym_offsetof] = ACTIONS(3313), - [anon_sym__Generic] = ACTIONS(3313), - [anon_sym_asm] = ACTIONS(3313), - [anon_sym___asm__] = ACTIONS(3313), - [anon_sym___asm] = ACTIONS(3313), - [sym_number_literal] = ACTIONS(3316), - [anon_sym_L_SQUOTE] = ACTIONS(3316), - [anon_sym_u_SQUOTE] = ACTIONS(3316), - [anon_sym_U_SQUOTE] = ACTIONS(3316), - [anon_sym_u8_SQUOTE] = ACTIONS(3316), - [anon_sym_SQUOTE] = ACTIONS(3316), - [anon_sym_L_DQUOTE] = ACTIONS(3316), - [anon_sym_u_DQUOTE] = ACTIONS(3316), - [anon_sym_U_DQUOTE] = ACTIONS(3316), - [anon_sym_u8_DQUOTE] = ACTIONS(3316), - [anon_sym_DQUOTE] = ACTIONS(3316), - [sym_true] = ACTIONS(3313), - [sym_false] = ACTIONS(3313), - [anon_sym_NULL] = ACTIONS(3313), - [anon_sym_nullptr] = ACTIONS(3313), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3313), - [anon_sym_decltype] = ACTIONS(3313), - [anon_sym_explicit] = ACTIONS(3313), - [anon_sym_typename] = ACTIONS(3313), - [anon_sym_export] = ACTIONS(3313), - [anon_sym_module] = ACTIONS(3313), - [anon_sym_import] = ACTIONS(3313), - [anon_sym_template] = ACTIONS(3313), - [anon_sym_operator] = ACTIONS(3313), - [anon_sym_try] = ACTIONS(3313), - [anon_sym_delete] = ACTIONS(3313), - [anon_sym_throw] = ACTIONS(3313), - [anon_sym_namespace] = ACTIONS(3313), - [anon_sym_static_assert] = ACTIONS(3313), - [anon_sym_concept] = ACTIONS(3313), - [anon_sym_co_return] = ACTIONS(3313), - [anon_sym_co_yield] = ACTIONS(3313), - [anon_sym_R_DQUOTE] = ACTIONS(3316), - [anon_sym_LR_DQUOTE] = ACTIONS(3316), - [anon_sym_uR_DQUOTE] = ACTIONS(3316), - [anon_sym_UR_DQUOTE] = ACTIONS(3316), - [anon_sym_u8R_DQUOTE] = ACTIONS(3316), - [anon_sym_co_await] = ACTIONS(3313), - [anon_sym_new] = ACTIONS(3313), - [anon_sym_requires] = ACTIONS(3313), - [sym_this] = ACTIONS(3313), + [sym_auto] = ACTIONS(2739), + [anon_sym_decltype] = ACTIONS(2739), + [anon_sym_explicit] = ACTIONS(2739), + [anon_sym_typename] = ACTIONS(2739), + [anon_sym_template] = ACTIONS(2739), + [anon_sym_operator] = ACTIONS(2739), + [anon_sym_try] = ACTIONS(2739), + [anon_sym_delete] = ACTIONS(2739), + [anon_sym_throw] = ACTIONS(2739), + [anon_sym_namespace] = ACTIONS(2739), + [anon_sym_static_assert] = ACTIONS(2739), + [anon_sym_concept] = ACTIONS(2739), + [anon_sym_co_return] = ACTIONS(2739), + [anon_sym_co_yield] = ACTIONS(2739), + [anon_sym_R_DQUOTE] = ACTIONS(2741), + [anon_sym_LR_DQUOTE] = ACTIONS(2741), + [anon_sym_uR_DQUOTE] = ACTIONS(2741), + [anon_sym_UR_DQUOTE] = ACTIONS(2741), + [anon_sym_u8R_DQUOTE] = ACTIONS(2741), + [anon_sym_co_await] = ACTIONS(2739), + [anon_sym_new] = ACTIONS(2739), + [anon_sym_requires] = ACTIONS(2739), + [sym_this] = ACTIONS(2739), }, - [544] = { - [sym_identifier] = ACTIONS(2731), - [aux_sym_preproc_include_token1] = ACTIONS(2731), - [aux_sym_preproc_def_token1] = ACTIONS(2731), - [aux_sym_preproc_if_token1] = ACTIONS(2731), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2731), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2731), - [sym_preproc_directive] = ACTIONS(2731), - [anon_sym_LPAREN2] = ACTIONS(2733), - [anon_sym_BANG] = ACTIONS(2733), - [anon_sym_TILDE] = ACTIONS(2733), - [anon_sym_DASH] = ACTIONS(2731), - [anon_sym_PLUS] = ACTIONS(2731), - [anon_sym_STAR] = ACTIONS(2733), - [anon_sym_AMP_AMP] = ACTIONS(2733), - [anon_sym_AMP] = ACTIONS(2731), - [anon_sym_SEMI] = ACTIONS(2733), - [anon_sym___extension__] = ACTIONS(2731), - [anon_sym_typedef] = ACTIONS(2731), - [anon_sym_virtual] = ACTIONS(2731), - [anon_sym_extern] = ACTIONS(2731), - [anon_sym___attribute__] = ACTIONS(2731), - [anon_sym___attribute] = ACTIONS(2731), - [anon_sym_using] = ACTIONS(2731), - [anon_sym_COLON_COLON] = ACTIONS(2733), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2733), - [anon_sym___declspec] = ACTIONS(2731), - [anon_sym___based] = ACTIONS(2731), - [anon_sym___cdecl] = ACTIONS(2731), - [anon_sym___clrcall] = ACTIONS(2731), - [anon_sym___stdcall] = ACTIONS(2731), - [anon_sym___fastcall] = ACTIONS(2731), - [anon_sym___thiscall] = ACTIONS(2731), - [anon_sym___vectorcall] = ACTIONS(2731), - [anon_sym_LBRACE] = ACTIONS(2733), - [anon_sym_RBRACE] = ACTIONS(2733), - [anon_sym_signed] = ACTIONS(2731), - [anon_sym_unsigned] = ACTIONS(2731), - [anon_sym_long] = ACTIONS(2731), - [anon_sym_short] = ACTIONS(2731), - [anon_sym_LBRACK] = ACTIONS(2731), - [anon_sym_static] = ACTIONS(2731), - [anon_sym_register] = ACTIONS(2731), - [anon_sym_inline] = ACTIONS(2731), - [anon_sym___inline] = ACTIONS(2731), - [anon_sym___inline__] = ACTIONS(2731), - [anon_sym___forceinline] = ACTIONS(2731), - [anon_sym_thread_local] = ACTIONS(2731), - [anon_sym___thread] = ACTIONS(2731), - [anon_sym_const] = ACTIONS(2731), - [anon_sym_constexpr] = ACTIONS(2731), - [anon_sym_volatile] = ACTIONS(2731), - [anon_sym_restrict] = ACTIONS(2731), - [anon_sym___restrict__] = ACTIONS(2731), - [anon_sym__Atomic] = ACTIONS(2731), - [anon_sym__Noreturn] = ACTIONS(2731), - [anon_sym_noreturn] = ACTIONS(2731), - [anon_sym__Nonnull] = ACTIONS(2731), - [anon_sym_mutable] = ACTIONS(2731), - [anon_sym_constinit] = ACTIONS(2731), - [anon_sym_consteval] = ACTIONS(2731), - [anon_sym_alignas] = ACTIONS(2731), - [anon_sym__Alignas] = ACTIONS(2731), - [sym_primitive_type] = ACTIONS(2731), - [anon_sym_enum] = ACTIONS(2731), - [anon_sym_class] = ACTIONS(2731), - [anon_sym_struct] = ACTIONS(2731), - [anon_sym_union] = ACTIONS(2731), - [anon_sym_if] = ACTIONS(2731), - [anon_sym_else] = ACTIONS(2731), - [anon_sym_switch] = ACTIONS(2731), - [anon_sym_case] = ACTIONS(2731), - [anon_sym_default] = ACTIONS(2731), - [anon_sym_while] = ACTIONS(2731), - [anon_sym_do] = ACTIONS(2731), - [anon_sym_for] = ACTIONS(2731), - [anon_sym_return] = ACTIONS(2731), - [anon_sym_break] = ACTIONS(2731), - [anon_sym_continue] = ACTIONS(2731), - [anon_sym_goto] = ACTIONS(2731), - [anon_sym___try] = ACTIONS(2731), - [anon_sym___leave] = ACTIONS(2731), - [anon_sym_not] = ACTIONS(2731), - [anon_sym_compl] = ACTIONS(2731), - [anon_sym_DASH_DASH] = ACTIONS(2733), - [anon_sym_PLUS_PLUS] = ACTIONS(2733), - [anon_sym_sizeof] = ACTIONS(2731), - [anon_sym___alignof__] = ACTIONS(2731), - [anon_sym___alignof] = ACTIONS(2731), - [anon_sym__alignof] = ACTIONS(2731), - [anon_sym_alignof] = ACTIONS(2731), - [anon_sym__Alignof] = ACTIONS(2731), - [anon_sym_offsetof] = ACTIONS(2731), - [anon_sym__Generic] = ACTIONS(2731), - [anon_sym_asm] = ACTIONS(2731), - [anon_sym___asm__] = ACTIONS(2731), - [anon_sym___asm] = ACTIONS(2731), - [sym_number_literal] = ACTIONS(2733), - [anon_sym_L_SQUOTE] = ACTIONS(2733), - [anon_sym_u_SQUOTE] = ACTIONS(2733), - [anon_sym_U_SQUOTE] = ACTIONS(2733), - [anon_sym_u8_SQUOTE] = ACTIONS(2733), - [anon_sym_SQUOTE] = ACTIONS(2733), - [anon_sym_L_DQUOTE] = ACTIONS(2733), - [anon_sym_u_DQUOTE] = ACTIONS(2733), - [anon_sym_U_DQUOTE] = ACTIONS(2733), - [anon_sym_u8_DQUOTE] = ACTIONS(2733), - [anon_sym_DQUOTE] = ACTIONS(2733), - [sym_true] = ACTIONS(2731), - [sym_false] = ACTIONS(2731), - [anon_sym_NULL] = ACTIONS(2731), - [anon_sym_nullptr] = ACTIONS(2731), + [554] = { + [sym_identifier] = ACTIONS(2751), + [aux_sym_preproc_include_token1] = ACTIONS(2751), + [aux_sym_preproc_def_token1] = ACTIONS(2751), + [aux_sym_preproc_if_token1] = ACTIONS(2751), + [aux_sym_preproc_if_token2] = ACTIONS(2751), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2751), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2751), + [sym_preproc_directive] = ACTIONS(2751), + [anon_sym_LPAREN2] = ACTIONS(2753), + [anon_sym_BANG] = ACTIONS(2753), + [anon_sym_TILDE] = ACTIONS(2753), + [anon_sym_DASH] = ACTIONS(2751), + [anon_sym_PLUS] = ACTIONS(2751), + [anon_sym_STAR] = ACTIONS(2753), + [anon_sym_AMP_AMP] = ACTIONS(2753), + [anon_sym_AMP] = ACTIONS(2751), + [anon_sym_SEMI] = ACTIONS(2753), + [anon_sym___extension__] = ACTIONS(2751), + [anon_sym_typedef] = ACTIONS(2751), + [anon_sym_virtual] = ACTIONS(2751), + [anon_sym_extern] = ACTIONS(2751), + [anon_sym___attribute__] = ACTIONS(2751), + [anon_sym___attribute] = ACTIONS(2751), + [anon_sym_using] = ACTIONS(2751), + [anon_sym_COLON_COLON] = ACTIONS(2753), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2753), + [anon_sym___declspec] = ACTIONS(2751), + [anon_sym___based] = ACTIONS(2751), + [anon_sym___cdecl] = ACTIONS(2751), + [anon_sym___clrcall] = ACTIONS(2751), + [anon_sym___stdcall] = ACTIONS(2751), + [anon_sym___fastcall] = ACTIONS(2751), + [anon_sym___thiscall] = ACTIONS(2751), + [anon_sym___vectorcall] = ACTIONS(2751), + [anon_sym_LBRACE] = ACTIONS(2753), + [anon_sym_signed] = ACTIONS(2751), + [anon_sym_unsigned] = ACTIONS(2751), + [anon_sym_long] = ACTIONS(2751), + [anon_sym_short] = ACTIONS(2751), + [anon_sym_LBRACK] = ACTIONS(2751), + [anon_sym_static] = ACTIONS(2751), + [anon_sym_register] = ACTIONS(2751), + [anon_sym_inline] = ACTIONS(2751), + [anon_sym___inline] = ACTIONS(2751), + [anon_sym___inline__] = ACTIONS(2751), + [anon_sym___forceinline] = ACTIONS(2751), + [anon_sym_thread_local] = ACTIONS(2751), + [anon_sym___thread] = ACTIONS(2751), + [anon_sym_const] = ACTIONS(2751), + [anon_sym_constexpr] = ACTIONS(2751), + [anon_sym_volatile] = ACTIONS(2751), + [anon_sym_restrict] = ACTIONS(2751), + [anon_sym___restrict__] = ACTIONS(2751), + [anon_sym__Atomic] = ACTIONS(2751), + [anon_sym__Noreturn] = ACTIONS(2751), + [anon_sym_noreturn] = ACTIONS(2751), + [anon_sym__Nonnull] = ACTIONS(2751), + [anon_sym_mutable] = ACTIONS(2751), + [anon_sym_constinit] = ACTIONS(2751), + [anon_sym_consteval] = ACTIONS(2751), + [anon_sym_alignas] = ACTIONS(2751), + [anon_sym__Alignas] = ACTIONS(2751), + [sym_primitive_type] = ACTIONS(2751), + [anon_sym_enum] = ACTIONS(2751), + [anon_sym_class] = ACTIONS(2751), + [anon_sym_struct] = ACTIONS(2751), + [anon_sym_union] = ACTIONS(2751), + [anon_sym_if] = ACTIONS(2751), + [anon_sym_else] = ACTIONS(2751), + [anon_sym_switch] = ACTIONS(2751), + [anon_sym_case] = ACTIONS(2751), + [anon_sym_default] = ACTIONS(2751), + [anon_sym_while] = ACTIONS(2751), + [anon_sym_do] = ACTIONS(2751), + [anon_sym_for] = ACTIONS(2751), + [anon_sym_return] = ACTIONS(2751), + [anon_sym_break] = ACTIONS(2751), + [anon_sym_continue] = ACTIONS(2751), + [anon_sym_goto] = ACTIONS(2751), + [anon_sym___try] = ACTIONS(2751), + [anon_sym___leave] = ACTIONS(2751), + [anon_sym_not] = ACTIONS(2751), + [anon_sym_compl] = ACTIONS(2751), + [anon_sym_DASH_DASH] = ACTIONS(2753), + [anon_sym_PLUS_PLUS] = ACTIONS(2753), + [anon_sym_sizeof] = ACTIONS(2751), + [anon_sym___alignof__] = ACTIONS(2751), + [anon_sym___alignof] = ACTIONS(2751), + [anon_sym__alignof] = ACTIONS(2751), + [anon_sym_alignof] = ACTIONS(2751), + [anon_sym__Alignof] = ACTIONS(2751), + [anon_sym_offsetof] = ACTIONS(2751), + [anon_sym__Generic] = ACTIONS(2751), + [anon_sym_asm] = ACTIONS(2751), + [anon_sym___asm__] = ACTIONS(2751), + [anon_sym___asm] = ACTIONS(2751), + [sym_number_literal] = ACTIONS(2753), + [anon_sym_L_SQUOTE] = ACTIONS(2753), + [anon_sym_u_SQUOTE] = ACTIONS(2753), + [anon_sym_U_SQUOTE] = ACTIONS(2753), + [anon_sym_u8_SQUOTE] = ACTIONS(2753), + [anon_sym_SQUOTE] = ACTIONS(2753), + [anon_sym_L_DQUOTE] = ACTIONS(2753), + [anon_sym_u_DQUOTE] = ACTIONS(2753), + [anon_sym_U_DQUOTE] = ACTIONS(2753), + [anon_sym_u8_DQUOTE] = ACTIONS(2753), + [anon_sym_DQUOTE] = ACTIONS(2753), + [sym_true] = ACTIONS(2751), + [sym_false] = ACTIONS(2751), + [anon_sym_NULL] = ACTIONS(2751), + [anon_sym_nullptr] = ACTIONS(2751), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2731), - [anon_sym_decltype] = ACTIONS(2731), - [anon_sym_explicit] = ACTIONS(2731), - [anon_sym_typename] = ACTIONS(2731), - [anon_sym_template] = ACTIONS(2731), - [anon_sym_operator] = ACTIONS(2731), - [anon_sym_try] = ACTIONS(2731), - [anon_sym_delete] = ACTIONS(2731), - [anon_sym_throw] = ACTIONS(2731), - [anon_sym_namespace] = ACTIONS(2731), - [anon_sym_static_assert] = ACTIONS(2731), - [anon_sym_concept] = ACTIONS(2731), - [anon_sym_co_return] = ACTIONS(2731), - [anon_sym_co_yield] = ACTIONS(2731), - [anon_sym_R_DQUOTE] = ACTIONS(2733), - [anon_sym_LR_DQUOTE] = ACTIONS(2733), - [anon_sym_uR_DQUOTE] = ACTIONS(2733), - [anon_sym_UR_DQUOTE] = ACTIONS(2733), - [anon_sym_u8R_DQUOTE] = ACTIONS(2733), - [anon_sym_co_await] = ACTIONS(2731), - [anon_sym_new] = ACTIONS(2731), - [anon_sym_requires] = ACTIONS(2731), - [sym_this] = ACTIONS(2731), + [sym_auto] = ACTIONS(2751), + [anon_sym_decltype] = ACTIONS(2751), + [anon_sym_explicit] = ACTIONS(2751), + [anon_sym_typename] = ACTIONS(2751), + [anon_sym_template] = ACTIONS(2751), + [anon_sym_operator] = ACTIONS(2751), + [anon_sym_try] = ACTIONS(2751), + [anon_sym_delete] = ACTIONS(2751), + [anon_sym_throw] = ACTIONS(2751), + [anon_sym_namespace] = ACTIONS(2751), + [anon_sym_static_assert] = ACTIONS(2751), + [anon_sym_concept] = ACTIONS(2751), + [anon_sym_co_return] = ACTIONS(2751), + [anon_sym_co_yield] = ACTIONS(2751), + [anon_sym_R_DQUOTE] = ACTIONS(2753), + [anon_sym_LR_DQUOTE] = ACTIONS(2753), + [anon_sym_uR_DQUOTE] = ACTIONS(2753), + [anon_sym_UR_DQUOTE] = ACTIONS(2753), + [anon_sym_u8R_DQUOTE] = ACTIONS(2753), + [anon_sym_co_await] = ACTIONS(2751), + [anon_sym_new] = ACTIONS(2751), + [anon_sym_requires] = ACTIONS(2751), + [sym_this] = ACTIONS(2751), }, - [545] = { + [555] = { [sym_identifier] = ACTIONS(2763), [aux_sym_preproc_include_token1] = ACTIONS(2763), [aux_sym_preproc_def_token1] = ACTIONS(2763), [aux_sym_preproc_if_token1] = ACTIONS(2763), + [aux_sym_preproc_if_token2] = ACTIONS(2763), [aux_sym_preproc_ifdef_token1] = ACTIONS(2763), [aux_sym_preproc_ifdef_token2] = ACTIONS(2763), [sym_preproc_directive] = ACTIONS(2763), @@ -121124,7 +122806,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(2763), [anon_sym___vectorcall] = ACTIONS(2763), [anon_sym_LBRACE] = ACTIONS(2765), - [anon_sym_RBRACE] = ACTIONS(2765), [anon_sym_signed] = ACTIONS(2763), [anon_sym_unsigned] = ACTIONS(2763), [anon_sym_long] = ACTIONS(2763), @@ -121226,418 +122907,829 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2763), [sym_this] = ACTIONS(2763), }, - [546] = { - [ts_builtin_sym_end] = ACTIONS(3419), - [sym_identifier] = ACTIONS(3422), - [aux_sym_preproc_include_token1] = ACTIONS(3422), - [aux_sym_preproc_def_token1] = ACTIONS(3422), - [aux_sym_preproc_if_token1] = ACTIONS(3422), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3422), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3422), - [sym_preproc_directive] = ACTIONS(3422), - [anon_sym_LPAREN2] = ACTIONS(3419), - [anon_sym_BANG] = ACTIONS(3419), - [anon_sym_TILDE] = ACTIONS(3419), - [anon_sym_DASH] = ACTIONS(3422), - [anon_sym_PLUS] = ACTIONS(3422), - [anon_sym_STAR] = ACTIONS(3419), - [anon_sym_AMP_AMP] = ACTIONS(3419), - [anon_sym_AMP] = ACTIONS(3422), - [anon_sym_SEMI] = ACTIONS(3419), - [anon_sym___extension__] = ACTIONS(3422), - [anon_sym_typedef] = ACTIONS(3422), - [anon_sym_virtual] = ACTIONS(3422), - [anon_sym_extern] = ACTIONS(3422), - [anon_sym___attribute__] = ACTIONS(3422), - [anon_sym___attribute] = ACTIONS(3422), - [anon_sym_using] = ACTIONS(3422), - [anon_sym_COLON_COLON] = ACTIONS(3419), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3419), - [anon_sym___declspec] = ACTIONS(3422), - [anon_sym___based] = ACTIONS(3422), - [anon_sym___cdecl] = ACTIONS(3422), - [anon_sym___clrcall] = ACTIONS(3422), - [anon_sym___stdcall] = ACTIONS(3422), - [anon_sym___fastcall] = ACTIONS(3422), - [anon_sym___thiscall] = ACTIONS(3422), - [anon_sym___vectorcall] = ACTIONS(3422), - [anon_sym_LBRACE] = ACTIONS(3419), - [anon_sym_signed] = ACTIONS(3422), - [anon_sym_unsigned] = ACTIONS(3422), - [anon_sym_long] = ACTIONS(3422), - [anon_sym_short] = ACTIONS(3422), - [anon_sym_LBRACK] = ACTIONS(3422), - [anon_sym_static] = ACTIONS(3422), - [anon_sym_register] = ACTIONS(3422), - [anon_sym_inline] = ACTIONS(3422), - [anon_sym___inline] = ACTIONS(3422), - [anon_sym___inline__] = ACTIONS(3422), - [anon_sym___forceinline] = ACTIONS(3422), - [anon_sym_thread_local] = ACTIONS(3422), - [anon_sym___thread] = ACTIONS(3422), - [anon_sym_const] = ACTIONS(3422), - [anon_sym_constexpr] = ACTIONS(3422), - [anon_sym_volatile] = ACTIONS(3422), - [anon_sym_restrict] = ACTIONS(3422), - [anon_sym___restrict__] = ACTIONS(3422), - [anon_sym__Atomic] = ACTIONS(3422), - [anon_sym__Noreturn] = ACTIONS(3422), - [anon_sym_noreturn] = ACTIONS(3422), - [anon_sym__Nonnull] = ACTIONS(3422), - [anon_sym_mutable] = ACTIONS(3422), - [anon_sym_constinit] = ACTIONS(3422), - [anon_sym_consteval] = ACTIONS(3422), - [anon_sym_alignas] = ACTIONS(3422), - [anon_sym__Alignas] = ACTIONS(3422), - [sym_primitive_type] = ACTIONS(3422), - [anon_sym_enum] = ACTIONS(3422), - [anon_sym_class] = ACTIONS(3422), - [anon_sym_struct] = ACTIONS(3422), - [anon_sym_union] = ACTIONS(3422), - [anon_sym_if] = ACTIONS(3422), - [anon_sym_switch] = ACTIONS(3422), - [anon_sym_case] = ACTIONS(3422), - [anon_sym_default] = ACTIONS(3422), - [anon_sym_while] = ACTIONS(3422), - [anon_sym_do] = ACTIONS(3422), - [anon_sym_for] = ACTIONS(3422), - [anon_sym_return] = ACTIONS(3422), - [anon_sym_break] = ACTIONS(3422), - [anon_sym_continue] = ACTIONS(3422), - [anon_sym_goto] = ACTIONS(3422), - [anon_sym_not] = ACTIONS(3422), - [anon_sym_compl] = ACTIONS(3422), - [anon_sym_DASH_DASH] = ACTIONS(3419), - [anon_sym_PLUS_PLUS] = ACTIONS(3419), - [anon_sym_sizeof] = ACTIONS(3422), - [anon_sym___alignof__] = ACTIONS(3422), - [anon_sym___alignof] = ACTIONS(3422), - [anon_sym__alignof] = ACTIONS(3422), - [anon_sym_alignof] = ACTIONS(3422), - [anon_sym__Alignof] = ACTIONS(3422), - [anon_sym_offsetof] = ACTIONS(3422), - [anon_sym__Generic] = ACTIONS(3422), - [anon_sym_asm] = ACTIONS(3422), - [anon_sym___asm__] = ACTIONS(3422), - [anon_sym___asm] = ACTIONS(3422), - [sym_number_literal] = ACTIONS(3419), - [anon_sym_L_SQUOTE] = ACTIONS(3419), - [anon_sym_u_SQUOTE] = ACTIONS(3419), - [anon_sym_U_SQUOTE] = ACTIONS(3419), - [anon_sym_u8_SQUOTE] = ACTIONS(3419), - [anon_sym_SQUOTE] = ACTIONS(3419), - [anon_sym_L_DQUOTE] = ACTIONS(3419), - [anon_sym_u_DQUOTE] = ACTIONS(3419), - [anon_sym_U_DQUOTE] = ACTIONS(3419), - [anon_sym_u8_DQUOTE] = ACTIONS(3419), - [anon_sym_DQUOTE] = ACTIONS(3419), - [sym_true] = ACTIONS(3422), - [sym_false] = ACTIONS(3422), - [anon_sym_NULL] = ACTIONS(3422), - [anon_sym_nullptr] = ACTIONS(3422), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3422), - [anon_sym_decltype] = ACTIONS(3422), - [anon_sym_explicit] = ACTIONS(3422), - [anon_sym_typename] = ACTIONS(3422), - [anon_sym_export] = ACTIONS(3422), - [anon_sym_module] = ACTIONS(3422), - [anon_sym_import] = ACTIONS(3422), - [anon_sym_template] = ACTIONS(3422), - [anon_sym_operator] = ACTIONS(3422), - [anon_sym_try] = ACTIONS(3422), - [anon_sym_delete] = ACTIONS(3422), - [anon_sym_throw] = ACTIONS(3422), - [anon_sym_namespace] = ACTIONS(3422), - [anon_sym_static_assert] = ACTIONS(3422), - [anon_sym_concept] = ACTIONS(3422), - [anon_sym_co_return] = ACTIONS(3422), - [anon_sym_co_yield] = ACTIONS(3422), - [anon_sym_R_DQUOTE] = ACTIONS(3419), - [anon_sym_LR_DQUOTE] = ACTIONS(3419), - [anon_sym_uR_DQUOTE] = ACTIONS(3419), - [anon_sym_UR_DQUOTE] = ACTIONS(3419), - [anon_sym_u8R_DQUOTE] = ACTIONS(3419), - [anon_sym_co_await] = ACTIONS(3422), - [anon_sym_new] = ACTIONS(3422), - [anon_sym_requires] = ACTIONS(3422), - [sym_this] = ACTIONS(3422), + [556] = { + [ts_builtin_sym_end] = ACTIONS(3447), + [sym_identifier] = ACTIONS(3449), + [aux_sym_preproc_include_token1] = ACTIONS(3449), + [aux_sym_preproc_def_token1] = ACTIONS(3449), + [aux_sym_preproc_if_token1] = ACTIONS(3449), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3449), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3449), + [sym_preproc_directive] = ACTIONS(3449), + [anon_sym_LPAREN2] = ACTIONS(3447), + [anon_sym_BANG] = ACTIONS(3447), + [anon_sym_TILDE] = ACTIONS(3447), + [anon_sym_DASH] = ACTIONS(3449), + [anon_sym_PLUS] = ACTIONS(3449), + [anon_sym_STAR] = ACTIONS(3447), + [anon_sym_AMP_AMP] = ACTIONS(3447), + [anon_sym_AMP] = ACTIONS(3449), + [anon_sym_SEMI] = ACTIONS(3447), + [anon_sym___extension__] = ACTIONS(3449), + [anon_sym_typedef] = ACTIONS(3449), + [anon_sym_virtual] = ACTIONS(3449), + [anon_sym_extern] = ACTIONS(3449), + [anon_sym___attribute__] = ACTIONS(3449), + [anon_sym___attribute] = ACTIONS(3449), + [anon_sym_using] = ACTIONS(3449), + [anon_sym_COLON_COLON] = ACTIONS(3447), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3447), + [anon_sym___declspec] = ACTIONS(3449), + [anon_sym___based] = ACTIONS(3449), + [anon_sym___cdecl] = ACTIONS(3449), + [anon_sym___clrcall] = ACTIONS(3449), + [anon_sym___stdcall] = ACTIONS(3449), + [anon_sym___fastcall] = ACTIONS(3449), + [anon_sym___thiscall] = ACTIONS(3449), + [anon_sym___vectorcall] = ACTIONS(3449), + [anon_sym_LBRACE] = ACTIONS(3447), + [anon_sym_signed] = ACTIONS(3449), + [anon_sym_unsigned] = ACTIONS(3449), + [anon_sym_long] = ACTIONS(3449), + [anon_sym_short] = ACTIONS(3449), + [anon_sym_LBRACK] = ACTIONS(3449), + [anon_sym_static] = ACTIONS(3449), + [anon_sym_register] = ACTIONS(3449), + [anon_sym_inline] = ACTIONS(3449), + [anon_sym___inline] = ACTIONS(3449), + [anon_sym___inline__] = ACTIONS(3449), + [anon_sym___forceinline] = ACTIONS(3449), + [anon_sym_thread_local] = ACTIONS(3449), + [anon_sym___thread] = ACTIONS(3449), + [anon_sym_const] = ACTIONS(3449), + [anon_sym_constexpr] = ACTIONS(3449), + [anon_sym_volatile] = ACTIONS(3449), + [anon_sym_restrict] = ACTIONS(3449), + [anon_sym___restrict__] = ACTIONS(3449), + [anon_sym__Atomic] = ACTIONS(3449), + [anon_sym__Noreturn] = ACTIONS(3449), + [anon_sym_noreturn] = ACTIONS(3449), + [anon_sym__Nonnull] = ACTIONS(3449), + [anon_sym_mutable] = ACTIONS(3449), + [anon_sym_constinit] = ACTIONS(3449), + [anon_sym_consteval] = ACTIONS(3449), + [anon_sym_alignas] = ACTIONS(3449), + [anon_sym__Alignas] = ACTIONS(3449), + [sym_primitive_type] = ACTIONS(3449), + [anon_sym_enum] = ACTIONS(3449), + [anon_sym_class] = ACTIONS(3449), + [anon_sym_struct] = ACTIONS(3449), + [anon_sym_union] = ACTIONS(3449), + [anon_sym_if] = ACTIONS(3449), + [anon_sym_switch] = ACTIONS(3449), + [anon_sym_case] = ACTIONS(3449), + [anon_sym_default] = ACTIONS(3449), + [anon_sym_while] = ACTIONS(3449), + [anon_sym_do] = ACTIONS(3449), + [anon_sym_for] = ACTIONS(3449), + [anon_sym_return] = ACTIONS(3449), + [anon_sym_break] = ACTIONS(3449), + [anon_sym_continue] = ACTIONS(3449), + [anon_sym_goto] = ACTIONS(3449), + [anon_sym_not] = ACTIONS(3449), + [anon_sym_compl] = ACTIONS(3449), + [anon_sym_DASH_DASH] = ACTIONS(3447), + [anon_sym_PLUS_PLUS] = ACTIONS(3447), + [anon_sym_sizeof] = ACTIONS(3449), + [anon_sym___alignof__] = ACTIONS(3449), + [anon_sym___alignof] = ACTIONS(3449), + [anon_sym__alignof] = ACTIONS(3449), + [anon_sym_alignof] = ACTIONS(3449), + [anon_sym__Alignof] = ACTIONS(3449), + [anon_sym_offsetof] = ACTIONS(3449), + [anon_sym__Generic] = ACTIONS(3449), + [anon_sym_asm] = ACTIONS(3449), + [anon_sym___asm__] = ACTIONS(3449), + [anon_sym___asm] = ACTIONS(3449), + [sym_number_literal] = ACTIONS(3447), + [anon_sym_L_SQUOTE] = ACTIONS(3447), + [anon_sym_u_SQUOTE] = ACTIONS(3447), + [anon_sym_U_SQUOTE] = ACTIONS(3447), + [anon_sym_u8_SQUOTE] = ACTIONS(3447), + [anon_sym_SQUOTE] = ACTIONS(3447), + [anon_sym_L_DQUOTE] = ACTIONS(3447), + [anon_sym_u_DQUOTE] = ACTIONS(3447), + [anon_sym_U_DQUOTE] = ACTIONS(3447), + [anon_sym_u8_DQUOTE] = ACTIONS(3447), + [anon_sym_DQUOTE] = ACTIONS(3447), + [sym_true] = ACTIONS(3449), + [sym_false] = ACTIONS(3449), + [anon_sym_NULL] = ACTIONS(3449), + [anon_sym_nullptr] = ACTIONS(3449), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3449), + [anon_sym_decltype] = ACTIONS(3449), + [anon_sym_explicit] = ACTIONS(3449), + [anon_sym_typename] = ACTIONS(3449), + [anon_sym_export] = ACTIONS(3449), + [anon_sym_module] = ACTIONS(3449), + [anon_sym_import] = ACTIONS(3449), + [anon_sym_template] = ACTIONS(3449), + [anon_sym_operator] = ACTIONS(3449), + [anon_sym_try] = ACTIONS(3449), + [anon_sym_delete] = ACTIONS(3449), + [anon_sym_throw] = ACTIONS(3449), + [anon_sym_namespace] = ACTIONS(3449), + [anon_sym_static_assert] = ACTIONS(3449), + [anon_sym_concept] = ACTIONS(3449), + [anon_sym_co_return] = ACTIONS(3449), + [anon_sym_co_yield] = ACTIONS(3449), + [anon_sym_R_DQUOTE] = ACTIONS(3447), + [anon_sym_LR_DQUOTE] = ACTIONS(3447), + [anon_sym_uR_DQUOTE] = ACTIONS(3447), + [anon_sym_UR_DQUOTE] = ACTIONS(3447), + [anon_sym_u8R_DQUOTE] = ACTIONS(3447), + [anon_sym_co_await] = ACTIONS(3449), + [anon_sym_new] = ACTIONS(3449), + [anon_sym_requires] = ACTIONS(3449), + [sym_this] = ACTIONS(3449), }, - [547] = { - [ts_builtin_sym_end] = ACTIONS(2821), - [sym_identifier] = ACTIONS(2819), - [aux_sym_preproc_include_token1] = ACTIONS(2819), - [aux_sym_preproc_def_token1] = ACTIONS(2819), - [aux_sym_preproc_if_token1] = ACTIONS(2819), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2819), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2819), - [sym_preproc_directive] = ACTIONS(2819), - [anon_sym_LPAREN2] = ACTIONS(2821), - [anon_sym_BANG] = ACTIONS(2821), - [anon_sym_TILDE] = ACTIONS(2821), - [anon_sym_DASH] = ACTIONS(2819), - [anon_sym_PLUS] = ACTIONS(2819), - [anon_sym_STAR] = ACTIONS(2821), - [anon_sym_AMP_AMP] = ACTIONS(2821), - [anon_sym_AMP] = ACTIONS(2819), - [anon_sym_SEMI] = ACTIONS(2821), - [anon_sym___extension__] = ACTIONS(2819), - [anon_sym_typedef] = ACTIONS(2819), - [anon_sym_virtual] = ACTIONS(2819), - [anon_sym_extern] = ACTIONS(2819), - [anon_sym___attribute__] = ACTIONS(2819), - [anon_sym___attribute] = ACTIONS(2819), - [anon_sym_using] = ACTIONS(2819), - [anon_sym_COLON_COLON] = ACTIONS(2821), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2821), - [anon_sym___declspec] = ACTIONS(2819), - [anon_sym___based] = ACTIONS(2819), - [anon_sym___cdecl] = ACTIONS(2819), - [anon_sym___clrcall] = ACTIONS(2819), - [anon_sym___stdcall] = ACTIONS(2819), - [anon_sym___fastcall] = ACTIONS(2819), - [anon_sym___thiscall] = ACTIONS(2819), - [anon_sym___vectorcall] = ACTIONS(2819), - [anon_sym_LBRACE] = ACTIONS(2821), - [anon_sym_signed] = ACTIONS(2819), - [anon_sym_unsigned] = ACTIONS(2819), - [anon_sym_long] = ACTIONS(2819), - [anon_sym_short] = ACTIONS(2819), - [anon_sym_LBRACK] = ACTIONS(2819), - [anon_sym_static] = ACTIONS(2819), - [anon_sym_register] = ACTIONS(2819), - [anon_sym_inline] = ACTIONS(2819), - [anon_sym___inline] = ACTIONS(2819), - [anon_sym___inline__] = ACTIONS(2819), - [anon_sym___forceinline] = ACTIONS(2819), - [anon_sym_thread_local] = ACTIONS(2819), - [anon_sym___thread] = ACTIONS(2819), - [anon_sym_const] = ACTIONS(2819), - [anon_sym_constexpr] = ACTIONS(2819), - [anon_sym_volatile] = ACTIONS(2819), - [anon_sym_restrict] = ACTIONS(2819), - [anon_sym___restrict__] = ACTIONS(2819), - [anon_sym__Atomic] = ACTIONS(2819), - [anon_sym__Noreturn] = ACTIONS(2819), - [anon_sym_noreturn] = ACTIONS(2819), - [anon_sym__Nonnull] = ACTIONS(2819), - [anon_sym_mutable] = ACTIONS(2819), - [anon_sym_constinit] = ACTIONS(2819), - [anon_sym_consteval] = ACTIONS(2819), - [anon_sym_alignas] = ACTIONS(2819), - [anon_sym__Alignas] = ACTIONS(2819), - [sym_primitive_type] = ACTIONS(2819), - [anon_sym_enum] = ACTIONS(2819), - [anon_sym_class] = ACTIONS(2819), - [anon_sym_struct] = ACTIONS(2819), - [anon_sym_union] = ACTIONS(2819), - [anon_sym_if] = ACTIONS(2819), - [anon_sym_switch] = ACTIONS(2819), - [anon_sym_case] = ACTIONS(2819), - [anon_sym_default] = ACTIONS(2819), - [anon_sym_while] = ACTIONS(2819), - [anon_sym_do] = ACTIONS(2819), - [anon_sym_for] = ACTIONS(2819), - [anon_sym_return] = ACTIONS(2819), - [anon_sym_break] = ACTIONS(2819), - [anon_sym_continue] = ACTIONS(2819), - [anon_sym_goto] = ACTIONS(2819), - [anon_sym_not] = ACTIONS(2819), - [anon_sym_compl] = ACTIONS(2819), - [anon_sym_DASH_DASH] = ACTIONS(2821), - [anon_sym_PLUS_PLUS] = ACTIONS(2821), - [anon_sym_sizeof] = ACTIONS(2819), - [anon_sym___alignof__] = ACTIONS(2819), - [anon_sym___alignof] = ACTIONS(2819), - [anon_sym__alignof] = ACTIONS(2819), - [anon_sym_alignof] = ACTIONS(2819), - [anon_sym__Alignof] = ACTIONS(2819), - [anon_sym_offsetof] = ACTIONS(2819), - [anon_sym__Generic] = ACTIONS(2819), - [anon_sym_asm] = ACTIONS(2819), - [anon_sym___asm__] = ACTIONS(2819), - [anon_sym___asm] = ACTIONS(2819), - [sym_number_literal] = ACTIONS(2821), - [anon_sym_L_SQUOTE] = ACTIONS(2821), - [anon_sym_u_SQUOTE] = ACTIONS(2821), - [anon_sym_U_SQUOTE] = ACTIONS(2821), - [anon_sym_u8_SQUOTE] = ACTIONS(2821), - [anon_sym_SQUOTE] = ACTIONS(2821), - [anon_sym_L_DQUOTE] = ACTIONS(2821), - [anon_sym_u_DQUOTE] = ACTIONS(2821), - [anon_sym_U_DQUOTE] = ACTIONS(2821), - [anon_sym_u8_DQUOTE] = ACTIONS(2821), - [anon_sym_DQUOTE] = ACTIONS(2821), - [sym_true] = ACTIONS(2819), - [sym_false] = ACTIONS(2819), - [anon_sym_NULL] = ACTIONS(2819), - [anon_sym_nullptr] = ACTIONS(2819), + [557] = { + [ts_builtin_sym_end] = ACTIONS(3324), + [sym_identifier] = ACTIONS(3321), + [aux_sym_preproc_include_token1] = ACTIONS(3321), + [aux_sym_preproc_def_token1] = ACTIONS(3321), + [aux_sym_preproc_if_token1] = ACTIONS(3321), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3321), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3321), + [sym_preproc_directive] = ACTIONS(3321), + [anon_sym_LPAREN2] = ACTIONS(3324), + [anon_sym_BANG] = ACTIONS(3324), + [anon_sym_TILDE] = ACTIONS(3324), + [anon_sym_DASH] = ACTIONS(3321), + [anon_sym_PLUS] = ACTIONS(3321), + [anon_sym_STAR] = ACTIONS(3324), + [anon_sym_AMP_AMP] = ACTIONS(3324), + [anon_sym_AMP] = ACTIONS(3321), + [anon_sym_SEMI] = ACTIONS(3324), + [anon_sym___extension__] = ACTIONS(3321), + [anon_sym_typedef] = ACTIONS(3321), + [anon_sym_virtual] = ACTIONS(3321), + [anon_sym_extern] = ACTIONS(3321), + [anon_sym___attribute__] = ACTIONS(3321), + [anon_sym___attribute] = ACTIONS(3321), + [anon_sym_using] = ACTIONS(3321), + [anon_sym_COLON_COLON] = ACTIONS(3324), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3324), + [anon_sym___declspec] = ACTIONS(3321), + [anon_sym___based] = ACTIONS(3321), + [anon_sym___cdecl] = ACTIONS(3321), + [anon_sym___clrcall] = ACTIONS(3321), + [anon_sym___stdcall] = ACTIONS(3321), + [anon_sym___fastcall] = ACTIONS(3321), + [anon_sym___thiscall] = ACTIONS(3321), + [anon_sym___vectorcall] = ACTIONS(3321), + [anon_sym_LBRACE] = ACTIONS(3324), + [anon_sym_signed] = ACTIONS(3321), + [anon_sym_unsigned] = ACTIONS(3321), + [anon_sym_long] = ACTIONS(3321), + [anon_sym_short] = ACTIONS(3321), + [anon_sym_LBRACK] = ACTIONS(3321), + [anon_sym_static] = ACTIONS(3321), + [anon_sym_register] = ACTIONS(3321), + [anon_sym_inline] = ACTIONS(3321), + [anon_sym___inline] = ACTIONS(3321), + [anon_sym___inline__] = ACTIONS(3321), + [anon_sym___forceinline] = ACTIONS(3321), + [anon_sym_thread_local] = ACTIONS(3321), + [anon_sym___thread] = ACTIONS(3321), + [anon_sym_const] = ACTIONS(3321), + [anon_sym_constexpr] = ACTIONS(3321), + [anon_sym_volatile] = ACTIONS(3321), + [anon_sym_restrict] = ACTIONS(3321), + [anon_sym___restrict__] = ACTIONS(3321), + [anon_sym__Atomic] = ACTIONS(3321), + [anon_sym__Noreturn] = ACTIONS(3321), + [anon_sym_noreturn] = ACTIONS(3321), + [anon_sym__Nonnull] = ACTIONS(3321), + [anon_sym_mutable] = ACTIONS(3321), + [anon_sym_constinit] = ACTIONS(3321), + [anon_sym_consteval] = ACTIONS(3321), + [anon_sym_alignas] = ACTIONS(3321), + [anon_sym__Alignas] = ACTIONS(3321), + [sym_primitive_type] = ACTIONS(3321), + [anon_sym_enum] = ACTIONS(3321), + [anon_sym_class] = ACTIONS(3321), + [anon_sym_struct] = ACTIONS(3321), + [anon_sym_union] = ACTIONS(3321), + [anon_sym_if] = ACTIONS(3321), + [anon_sym_switch] = ACTIONS(3321), + [anon_sym_case] = ACTIONS(3321), + [anon_sym_default] = ACTIONS(3321), + [anon_sym_while] = ACTIONS(3321), + [anon_sym_do] = ACTIONS(3321), + [anon_sym_for] = ACTIONS(3321), + [anon_sym_return] = ACTIONS(3321), + [anon_sym_break] = ACTIONS(3321), + [anon_sym_continue] = ACTIONS(3321), + [anon_sym_goto] = ACTIONS(3321), + [anon_sym_not] = ACTIONS(3321), + [anon_sym_compl] = ACTIONS(3321), + [anon_sym_DASH_DASH] = ACTIONS(3324), + [anon_sym_PLUS_PLUS] = ACTIONS(3324), + [anon_sym_sizeof] = ACTIONS(3321), + [anon_sym___alignof__] = ACTIONS(3321), + [anon_sym___alignof] = ACTIONS(3321), + [anon_sym__alignof] = ACTIONS(3321), + [anon_sym_alignof] = ACTIONS(3321), + [anon_sym__Alignof] = ACTIONS(3321), + [anon_sym_offsetof] = ACTIONS(3321), + [anon_sym__Generic] = ACTIONS(3321), + [anon_sym_asm] = ACTIONS(3321), + [anon_sym___asm__] = ACTIONS(3321), + [anon_sym___asm] = ACTIONS(3321), + [sym_number_literal] = ACTIONS(3324), + [anon_sym_L_SQUOTE] = ACTIONS(3324), + [anon_sym_u_SQUOTE] = ACTIONS(3324), + [anon_sym_U_SQUOTE] = ACTIONS(3324), + [anon_sym_u8_SQUOTE] = ACTIONS(3324), + [anon_sym_SQUOTE] = ACTIONS(3324), + [anon_sym_L_DQUOTE] = ACTIONS(3324), + [anon_sym_u_DQUOTE] = ACTIONS(3324), + [anon_sym_U_DQUOTE] = ACTIONS(3324), + [anon_sym_u8_DQUOTE] = ACTIONS(3324), + [anon_sym_DQUOTE] = ACTIONS(3324), + [sym_true] = ACTIONS(3321), + [sym_false] = ACTIONS(3321), + [anon_sym_NULL] = ACTIONS(3321), + [anon_sym_nullptr] = ACTIONS(3321), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3321), + [anon_sym_decltype] = ACTIONS(3321), + [anon_sym_explicit] = ACTIONS(3321), + [anon_sym_typename] = ACTIONS(3321), + [anon_sym_export] = ACTIONS(3321), + [anon_sym_module] = ACTIONS(3321), + [anon_sym_import] = ACTIONS(3321), + [anon_sym_template] = ACTIONS(3321), + [anon_sym_operator] = ACTIONS(3321), + [anon_sym_try] = ACTIONS(3321), + [anon_sym_delete] = ACTIONS(3321), + [anon_sym_throw] = ACTIONS(3321), + [anon_sym_namespace] = ACTIONS(3321), + [anon_sym_static_assert] = ACTIONS(3321), + [anon_sym_concept] = ACTIONS(3321), + [anon_sym_co_return] = ACTIONS(3321), + [anon_sym_co_yield] = ACTIONS(3321), + [anon_sym_R_DQUOTE] = ACTIONS(3324), + [anon_sym_LR_DQUOTE] = ACTIONS(3324), + [anon_sym_uR_DQUOTE] = ACTIONS(3324), + [anon_sym_UR_DQUOTE] = ACTIONS(3324), + [anon_sym_u8R_DQUOTE] = ACTIONS(3324), + [anon_sym_co_await] = ACTIONS(3321), + [anon_sym_new] = ACTIONS(3321), + [anon_sym_requires] = ACTIONS(3321), + [sym_this] = ACTIONS(3321), + }, + [558] = { + [sym_identifier] = ACTIONS(2707), + [aux_sym_preproc_include_token1] = ACTIONS(2707), + [aux_sym_preproc_def_token1] = ACTIONS(2707), + [aux_sym_preproc_if_token1] = ACTIONS(2707), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2707), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2707), + [sym_preproc_directive] = ACTIONS(2707), + [anon_sym_LPAREN2] = ACTIONS(2709), + [anon_sym_BANG] = ACTIONS(2709), + [anon_sym_TILDE] = ACTIONS(2709), + [anon_sym_DASH] = ACTIONS(2707), + [anon_sym_PLUS] = ACTIONS(2707), + [anon_sym_STAR] = ACTIONS(2709), + [anon_sym_AMP_AMP] = ACTIONS(2709), + [anon_sym_AMP] = ACTIONS(2707), + [anon_sym_SEMI] = ACTIONS(2709), + [anon_sym___extension__] = ACTIONS(2707), + [anon_sym_typedef] = ACTIONS(2707), + [anon_sym_virtual] = ACTIONS(2707), + [anon_sym_extern] = ACTIONS(2707), + [anon_sym___attribute__] = ACTIONS(2707), + [anon_sym___attribute] = ACTIONS(2707), + [anon_sym_using] = ACTIONS(2707), + [anon_sym_COLON_COLON] = ACTIONS(2709), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2709), + [anon_sym___declspec] = ACTIONS(2707), + [anon_sym___based] = ACTIONS(2707), + [anon_sym___cdecl] = ACTIONS(2707), + [anon_sym___clrcall] = ACTIONS(2707), + [anon_sym___stdcall] = ACTIONS(2707), + [anon_sym___fastcall] = ACTIONS(2707), + [anon_sym___thiscall] = ACTIONS(2707), + [anon_sym___vectorcall] = ACTIONS(2707), + [anon_sym_LBRACE] = ACTIONS(2709), + [anon_sym_RBRACE] = ACTIONS(2709), + [anon_sym_signed] = ACTIONS(2707), + [anon_sym_unsigned] = ACTIONS(2707), + [anon_sym_long] = ACTIONS(2707), + [anon_sym_short] = ACTIONS(2707), + [anon_sym_LBRACK] = ACTIONS(2707), + [anon_sym_static] = ACTIONS(2707), + [anon_sym_register] = ACTIONS(2707), + [anon_sym_inline] = ACTIONS(2707), + [anon_sym___inline] = ACTIONS(2707), + [anon_sym___inline__] = ACTIONS(2707), + [anon_sym___forceinline] = ACTIONS(2707), + [anon_sym_thread_local] = ACTIONS(2707), + [anon_sym___thread] = ACTIONS(2707), + [anon_sym_const] = ACTIONS(2707), + [anon_sym_constexpr] = ACTIONS(2707), + [anon_sym_volatile] = ACTIONS(2707), + [anon_sym_restrict] = ACTIONS(2707), + [anon_sym___restrict__] = ACTIONS(2707), + [anon_sym__Atomic] = ACTIONS(2707), + [anon_sym__Noreturn] = ACTIONS(2707), + [anon_sym_noreturn] = ACTIONS(2707), + [anon_sym__Nonnull] = ACTIONS(2707), + [anon_sym_mutable] = ACTIONS(2707), + [anon_sym_constinit] = ACTIONS(2707), + [anon_sym_consteval] = ACTIONS(2707), + [anon_sym_alignas] = ACTIONS(2707), + [anon_sym__Alignas] = ACTIONS(2707), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(2707), + [anon_sym_class] = ACTIONS(2707), + [anon_sym_struct] = ACTIONS(2707), + [anon_sym_union] = ACTIONS(2707), + [anon_sym_if] = ACTIONS(2707), + [anon_sym_else] = ACTIONS(2707), + [anon_sym_switch] = ACTIONS(2707), + [anon_sym_case] = ACTIONS(2707), + [anon_sym_default] = ACTIONS(2707), + [anon_sym_while] = ACTIONS(2707), + [anon_sym_do] = ACTIONS(2707), + [anon_sym_for] = ACTIONS(2707), + [anon_sym_return] = ACTIONS(2707), + [anon_sym_break] = ACTIONS(2707), + [anon_sym_continue] = ACTIONS(2707), + [anon_sym_goto] = ACTIONS(2707), + [anon_sym___try] = ACTIONS(2707), + [anon_sym___leave] = ACTIONS(2707), + [anon_sym_not] = ACTIONS(2707), + [anon_sym_compl] = ACTIONS(2707), + [anon_sym_DASH_DASH] = ACTIONS(2709), + [anon_sym_PLUS_PLUS] = ACTIONS(2709), + [anon_sym_sizeof] = ACTIONS(2707), + [anon_sym___alignof__] = ACTIONS(2707), + [anon_sym___alignof] = ACTIONS(2707), + [anon_sym__alignof] = ACTIONS(2707), + [anon_sym_alignof] = ACTIONS(2707), + [anon_sym__Alignof] = ACTIONS(2707), + [anon_sym_offsetof] = ACTIONS(2707), + [anon_sym__Generic] = ACTIONS(2707), + [anon_sym_asm] = ACTIONS(2707), + [anon_sym___asm__] = ACTIONS(2707), + [anon_sym___asm] = ACTIONS(2707), + [sym_number_literal] = ACTIONS(2709), + [anon_sym_L_SQUOTE] = ACTIONS(2709), + [anon_sym_u_SQUOTE] = ACTIONS(2709), + [anon_sym_U_SQUOTE] = ACTIONS(2709), + [anon_sym_u8_SQUOTE] = ACTIONS(2709), + [anon_sym_SQUOTE] = ACTIONS(2709), + [anon_sym_L_DQUOTE] = ACTIONS(2709), + [anon_sym_u_DQUOTE] = ACTIONS(2709), + [anon_sym_U_DQUOTE] = ACTIONS(2709), + [anon_sym_u8_DQUOTE] = ACTIONS(2709), + [anon_sym_DQUOTE] = ACTIONS(2709), + [sym_true] = ACTIONS(2707), + [sym_false] = ACTIONS(2707), + [anon_sym_NULL] = ACTIONS(2707), + [anon_sym_nullptr] = ACTIONS(2707), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2819), - [anon_sym_decltype] = ACTIONS(2819), - [anon_sym_explicit] = ACTIONS(2819), - [anon_sym_typename] = ACTIONS(2819), - [anon_sym_export] = ACTIONS(2819), - [anon_sym_module] = ACTIONS(2819), - [anon_sym_import] = ACTIONS(2819), - [anon_sym_template] = ACTIONS(2819), - [anon_sym_operator] = ACTIONS(2819), - [anon_sym_try] = ACTIONS(2819), - [anon_sym_delete] = ACTIONS(2819), - [anon_sym_throw] = ACTIONS(2819), - [anon_sym_namespace] = ACTIONS(2819), - [anon_sym_static_assert] = ACTIONS(2819), - [anon_sym_concept] = ACTIONS(2819), - [anon_sym_co_return] = ACTIONS(2819), - [anon_sym_co_yield] = ACTIONS(2819), - [anon_sym_R_DQUOTE] = ACTIONS(2821), - [anon_sym_LR_DQUOTE] = ACTIONS(2821), - [anon_sym_uR_DQUOTE] = ACTIONS(2821), - [anon_sym_UR_DQUOTE] = ACTIONS(2821), - [anon_sym_u8R_DQUOTE] = ACTIONS(2821), - [anon_sym_co_await] = ACTIONS(2819), - [anon_sym_new] = ACTIONS(2819), - [anon_sym_requires] = ACTIONS(2819), - [sym_this] = ACTIONS(2819), + [sym_auto] = ACTIONS(2707), + [anon_sym_decltype] = ACTIONS(2707), + [anon_sym_explicit] = ACTIONS(2707), + [anon_sym_typename] = ACTIONS(2707), + [anon_sym_template] = ACTIONS(2707), + [anon_sym_operator] = ACTIONS(2707), + [anon_sym_try] = ACTIONS(2707), + [anon_sym_delete] = ACTIONS(2707), + [anon_sym_throw] = ACTIONS(2707), + [anon_sym_namespace] = ACTIONS(2707), + [anon_sym_static_assert] = ACTIONS(2707), + [anon_sym_concept] = ACTIONS(2707), + [anon_sym_co_return] = ACTIONS(2707), + [anon_sym_co_yield] = ACTIONS(2707), + [anon_sym_R_DQUOTE] = ACTIONS(2709), + [anon_sym_LR_DQUOTE] = ACTIONS(2709), + [anon_sym_uR_DQUOTE] = ACTIONS(2709), + [anon_sym_UR_DQUOTE] = ACTIONS(2709), + [anon_sym_u8R_DQUOTE] = ACTIONS(2709), + [anon_sym_co_await] = ACTIONS(2707), + [anon_sym_new] = ACTIONS(2707), + [anon_sym_requires] = ACTIONS(2707), + [sym_this] = ACTIONS(2707), }, - [548] = { - [sym_identifier] = ACTIONS(2677), - [aux_sym_preproc_include_token1] = ACTIONS(2677), - [aux_sym_preproc_def_token1] = ACTIONS(2677), - [aux_sym_preproc_if_token1] = ACTIONS(2677), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2677), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2677), - [sym_preproc_directive] = ACTIONS(2677), - [anon_sym_LPAREN2] = ACTIONS(2679), - [anon_sym_BANG] = ACTIONS(2679), - [anon_sym_TILDE] = ACTIONS(2679), - [anon_sym_DASH] = ACTIONS(2677), - [anon_sym_PLUS] = ACTIONS(2677), - [anon_sym_STAR] = ACTIONS(2679), - [anon_sym_AMP_AMP] = ACTIONS(2679), - [anon_sym_AMP] = ACTIONS(2677), - [anon_sym_SEMI] = ACTIONS(2679), - [anon_sym___extension__] = ACTIONS(2677), - [anon_sym_typedef] = ACTIONS(2677), - [anon_sym_virtual] = ACTIONS(2677), - [anon_sym_extern] = ACTIONS(2677), - [anon_sym___attribute__] = ACTIONS(2677), - [anon_sym___attribute] = ACTIONS(2677), - [anon_sym_using] = ACTIONS(2677), - [anon_sym_COLON_COLON] = ACTIONS(2679), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2679), - [anon_sym___declspec] = ACTIONS(2677), - [anon_sym___based] = ACTIONS(2677), - [anon_sym___cdecl] = ACTIONS(2677), - [anon_sym___clrcall] = ACTIONS(2677), - [anon_sym___stdcall] = ACTIONS(2677), - [anon_sym___fastcall] = ACTIONS(2677), - [anon_sym___thiscall] = ACTIONS(2677), - [anon_sym___vectorcall] = ACTIONS(2677), - [anon_sym_LBRACE] = ACTIONS(2679), - [anon_sym_RBRACE] = ACTIONS(2679), - [anon_sym_signed] = ACTIONS(2677), - [anon_sym_unsigned] = ACTIONS(2677), - [anon_sym_long] = ACTIONS(2677), - [anon_sym_short] = ACTIONS(2677), - [anon_sym_LBRACK] = ACTIONS(2677), - [anon_sym_static] = ACTIONS(2677), - [anon_sym_register] = ACTIONS(2677), - [anon_sym_inline] = ACTIONS(2677), - [anon_sym___inline] = ACTIONS(2677), - [anon_sym___inline__] = ACTIONS(2677), - [anon_sym___forceinline] = ACTIONS(2677), - [anon_sym_thread_local] = ACTIONS(2677), - [anon_sym___thread] = ACTIONS(2677), - [anon_sym_const] = ACTIONS(2677), - [anon_sym_constexpr] = ACTIONS(2677), - [anon_sym_volatile] = ACTIONS(2677), - [anon_sym_restrict] = ACTIONS(2677), - [anon_sym___restrict__] = ACTIONS(2677), - [anon_sym__Atomic] = ACTIONS(2677), - [anon_sym__Noreturn] = ACTIONS(2677), - [anon_sym_noreturn] = ACTIONS(2677), - [anon_sym__Nonnull] = ACTIONS(2677), - [anon_sym_mutable] = ACTIONS(2677), - [anon_sym_constinit] = ACTIONS(2677), - [anon_sym_consteval] = ACTIONS(2677), - [anon_sym_alignas] = ACTIONS(2677), - [anon_sym__Alignas] = ACTIONS(2677), - [sym_primitive_type] = ACTIONS(2677), - [anon_sym_enum] = ACTIONS(2677), - [anon_sym_class] = ACTIONS(2677), - [anon_sym_struct] = ACTIONS(2677), - [anon_sym_union] = ACTIONS(2677), - [anon_sym_if] = ACTIONS(2677), - [anon_sym_else] = ACTIONS(2677), - [anon_sym_switch] = ACTIONS(2677), - [anon_sym_case] = ACTIONS(2677), - [anon_sym_default] = ACTIONS(2677), - [anon_sym_while] = ACTIONS(2677), - [anon_sym_do] = ACTIONS(2677), - [anon_sym_for] = ACTIONS(2677), - [anon_sym_return] = ACTIONS(2677), - [anon_sym_break] = ACTIONS(2677), - [anon_sym_continue] = ACTIONS(2677), - [anon_sym_goto] = ACTIONS(2677), - [anon_sym___try] = ACTIONS(2677), - [anon_sym___leave] = ACTIONS(2677), - [anon_sym_not] = ACTIONS(2677), - [anon_sym_compl] = ACTIONS(2677), - [anon_sym_DASH_DASH] = ACTIONS(2679), - [anon_sym_PLUS_PLUS] = ACTIONS(2679), - [anon_sym_sizeof] = ACTIONS(2677), - [anon_sym___alignof__] = ACTIONS(2677), - [anon_sym___alignof] = ACTIONS(2677), - [anon_sym__alignof] = ACTIONS(2677), - [anon_sym_alignof] = ACTIONS(2677), - [anon_sym__Alignof] = ACTIONS(2677), - [anon_sym_offsetof] = ACTIONS(2677), - [anon_sym__Generic] = ACTIONS(2677), - [anon_sym_asm] = ACTIONS(2677), - [anon_sym___asm__] = ACTIONS(2677), - [anon_sym___asm] = ACTIONS(2677), - [sym_number_literal] = ACTIONS(2679), - [anon_sym_L_SQUOTE] = ACTIONS(2679), - [anon_sym_u_SQUOTE] = ACTIONS(2679), - [anon_sym_U_SQUOTE] = ACTIONS(2679), - [anon_sym_u8_SQUOTE] = ACTIONS(2679), - [anon_sym_SQUOTE] = ACTIONS(2679), - [anon_sym_L_DQUOTE] = ACTIONS(2679), - [anon_sym_u_DQUOTE] = ACTIONS(2679), - [anon_sym_U_DQUOTE] = ACTIONS(2679), - [anon_sym_u8_DQUOTE] = ACTIONS(2679), - [anon_sym_DQUOTE] = ACTIONS(2679), - [sym_true] = ACTIONS(2677), - [sym_false] = ACTIONS(2677), - [anon_sym_NULL] = ACTIONS(2677), - [anon_sym_nullptr] = ACTIONS(2677), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2677), - [anon_sym_decltype] = ACTIONS(2677), - [anon_sym_explicit] = ACTIONS(2677), - [anon_sym_typename] = ACTIONS(2677), - [anon_sym_template] = ACTIONS(2677), - [anon_sym_operator] = ACTIONS(2677), - [anon_sym_try] = ACTIONS(2677), - [anon_sym_delete] = ACTIONS(2677), - [anon_sym_throw] = ACTIONS(2677), - [anon_sym_namespace] = ACTIONS(2677), - [anon_sym_static_assert] = ACTIONS(2677), - [anon_sym_concept] = ACTIONS(2677), - [anon_sym_co_return] = ACTIONS(2677), - [anon_sym_co_yield] = ACTIONS(2677), - [anon_sym_R_DQUOTE] = ACTIONS(2679), - [anon_sym_LR_DQUOTE] = ACTIONS(2679), - [anon_sym_uR_DQUOTE] = ACTIONS(2679), - [anon_sym_UR_DQUOTE] = ACTIONS(2679), - [anon_sym_u8R_DQUOTE] = ACTIONS(2679), - [anon_sym_co_await] = ACTIONS(2677), - [anon_sym_new] = ACTIONS(2677), - [anon_sym_requires] = ACTIONS(2677), - [sym_this] = ACTIONS(2677), + [559] = { + [sym_identifier] = ACTIONS(2725), + [aux_sym_preproc_include_token1] = ACTIONS(2725), + [aux_sym_preproc_def_token1] = ACTIONS(2725), + [aux_sym_preproc_if_token1] = ACTIONS(2725), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2725), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2725), + [sym_preproc_directive] = ACTIONS(2725), + [anon_sym_LPAREN2] = ACTIONS(2727), + [anon_sym_BANG] = ACTIONS(2727), + [anon_sym_TILDE] = ACTIONS(2727), + [anon_sym_DASH] = ACTIONS(2725), + [anon_sym_PLUS] = ACTIONS(2725), + [anon_sym_STAR] = ACTIONS(2727), + [anon_sym_AMP_AMP] = ACTIONS(2727), + [anon_sym_AMP] = ACTIONS(2725), + [anon_sym_SEMI] = ACTIONS(2727), + [anon_sym___extension__] = ACTIONS(2725), + [anon_sym_typedef] = ACTIONS(2725), + [anon_sym_virtual] = ACTIONS(2725), + [anon_sym_extern] = ACTIONS(2725), + [anon_sym___attribute__] = ACTIONS(2725), + [anon_sym___attribute] = ACTIONS(2725), + [anon_sym_using] = ACTIONS(2725), + [anon_sym_COLON_COLON] = ACTIONS(2727), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2727), + [anon_sym___declspec] = ACTIONS(2725), + [anon_sym___based] = ACTIONS(2725), + [anon_sym___cdecl] = ACTIONS(2725), + [anon_sym___clrcall] = ACTIONS(2725), + [anon_sym___stdcall] = ACTIONS(2725), + [anon_sym___fastcall] = ACTIONS(2725), + [anon_sym___thiscall] = ACTIONS(2725), + [anon_sym___vectorcall] = ACTIONS(2725), + [anon_sym_LBRACE] = ACTIONS(2727), + [anon_sym_RBRACE] = ACTIONS(2727), + [anon_sym_signed] = ACTIONS(2725), + [anon_sym_unsigned] = ACTIONS(2725), + [anon_sym_long] = ACTIONS(2725), + [anon_sym_short] = ACTIONS(2725), + [anon_sym_LBRACK] = ACTIONS(2725), + [anon_sym_static] = ACTIONS(2725), + [anon_sym_register] = ACTIONS(2725), + [anon_sym_inline] = ACTIONS(2725), + [anon_sym___inline] = ACTIONS(2725), + [anon_sym___inline__] = ACTIONS(2725), + [anon_sym___forceinline] = ACTIONS(2725), + [anon_sym_thread_local] = ACTIONS(2725), + [anon_sym___thread] = ACTIONS(2725), + [anon_sym_const] = ACTIONS(2725), + [anon_sym_constexpr] = ACTIONS(2725), + [anon_sym_volatile] = ACTIONS(2725), + [anon_sym_restrict] = ACTIONS(2725), + [anon_sym___restrict__] = ACTIONS(2725), + [anon_sym__Atomic] = ACTIONS(2725), + [anon_sym__Noreturn] = ACTIONS(2725), + [anon_sym_noreturn] = ACTIONS(2725), + [anon_sym__Nonnull] = ACTIONS(2725), + [anon_sym_mutable] = ACTIONS(2725), + [anon_sym_constinit] = ACTIONS(2725), + [anon_sym_consteval] = ACTIONS(2725), + [anon_sym_alignas] = ACTIONS(2725), + [anon_sym__Alignas] = ACTIONS(2725), + [sym_primitive_type] = ACTIONS(2725), + [anon_sym_enum] = ACTIONS(2725), + [anon_sym_class] = ACTIONS(2725), + [anon_sym_struct] = ACTIONS(2725), + [anon_sym_union] = ACTIONS(2725), + [anon_sym_if] = ACTIONS(2725), + [anon_sym_else] = ACTIONS(2725), + [anon_sym_switch] = ACTIONS(2725), + [anon_sym_case] = ACTIONS(2725), + [anon_sym_default] = ACTIONS(2725), + [anon_sym_while] = ACTIONS(2725), + [anon_sym_do] = ACTIONS(2725), + [anon_sym_for] = ACTIONS(2725), + [anon_sym_return] = ACTIONS(2725), + [anon_sym_break] = ACTIONS(2725), + [anon_sym_continue] = ACTIONS(2725), + [anon_sym_goto] = ACTIONS(2725), + [anon_sym___try] = ACTIONS(2725), + [anon_sym___leave] = ACTIONS(2725), + [anon_sym_not] = ACTIONS(2725), + [anon_sym_compl] = ACTIONS(2725), + [anon_sym_DASH_DASH] = ACTIONS(2727), + [anon_sym_PLUS_PLUS] = ACTIONS(2727), + [anon_sym_sizeof] = ACTIONS(2725), + [anon_sym___alignof__] = ACTIONS(2725), + [anon_sym___alignof] = ACTIONS(2725), + [anon_sym__alignof] = ACTIONS(2725), + [anon_sym_alignof] = ACTIONS(2725), + [anon_sym__Alignof] = ACTIONS(2725), + [anon_sym_offsetof] = ACTIONS(2725), + [anon_sym__Generic] = ACTIONS(2725), + [anon_sym_asm] = ACTIONS(2725), + [anon_sym___asm__] = ACTIONS(2725), + [anon_sym___asm] = ACTIONS(2725), + [sym_number_literal] = ACTIONS(2727), + [anon_sym_L_SQUOTE] = ACTIONS(2727), + [anon_sym_u_SQUOTE] = ACTIONS(2727), + [anon_sym_U_SQUOTE] = ACTIONS(2727), + [anon_sym_u8_SQUOTE] = ACTIONS(2727), + [anon_sym_SQUOTE] = ACTIONS(2727), + [anon_sym_L_DQUOTE] = ACTIONS(2727), + [anon_sym_u_DQUOTE] = ACTIONS(2727), + [anon_sym_U_DQUOTE] = ACTIONS(2727), + [anon_sym_u8_DQUOTE] = ACTIONS(2727), + [anon_sym_DQUOTE] = ACTIONS(2727), + [sym_true] = ACTIONS(2725), + [sym_false] = ACTIONS(2725), + [anon_sym_NULL] = ACTIONS(2725), + [anon_sym_nullptr] = ACTIONS(2725), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2725), + [anon_sym_decltype] = ACTIONS(2725), + [anon_sym_explicit] = ACTIONS(2725), + [anon_sym_typename] = ACTIONS(2725), + [anon_sym_template] = ACTIONS(2725), + [anon_sym_operator] = ACTIONS(2725), + [anon_sym_try] = ACTIONS(2725), + [anon_sym_delete] = ACTIONS(2725), + [anon_sym_throw] = ACTIONS(2725), + [anon_sym_namespace] = ACTIONS(2725), + [anon_sym_static_assert] = ACTIONS(2725), + [anon_sym_concept] = ACTIONS(2725), + [anon_sym_co_return] = ACTIONS(2725), + [anon_sym_co_yield] = ACTIONS(2725), + [anon_sym_R_DQUOTE] = ACTIONS(2727), + [anon_sym_LR_DQUOTE] = ACTIONS(2727), + [anon_sym_uR_DQUOTE] = ACTIONS(2727), + [anon_sym_UR_DQUOTE] = ACTIONS(2727), + [anon_sym_u8R_DQUOTE] = ACTIONS(2727), + [anon_sym_co_await] = ACTIONS(2725), + [anon_sym_new] = ACTIONS(2725), + [anon_sym_requires] = ACTIONS(2725), + [sym_this] = ACTIONS(2725), }, - [549] = { + [560] = { + [sym_identifier] = ACTIONS(2695), + [aux_sym_preproc_include_token1] = ACTIONS(2695), + [aux_sym_preproc_def_token1] = ACTIONS(2695), + [aux_sym_preproc_if_token1] = ACTIONS(2695), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2695), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2695), + [sym_preproc_directive] = ACTIONS(2695), + [anon_sym_LPAREN2] = ACTIONS(2697), + [anon_sym_BANG] = ACTIONS(2697), + [anon_sym_TILDE] = ACTIONS(2697), + [anon_sym_DASH] = ACTIONS(2695), + [anon_sym_PLUS] = ACTIONS(2695), + [anon_sym_STAR] = ACTIONS(2697), + [anon_sym_AMP_AMP] = ACTIONS(2697), + [anon_sym_AMP] = ACTIONS(2695), + [anon_sym_SEMI] = ACTIONS(2697), + [anon_sym___extension__] = ACTIONS(2695), + [anon_sym_typedef] = ACTIONS(2695), + [anon_sym_virtual] = ACTIONS(2695), + [anon_sym_extern] = ACTIONS(2695), + [anon_sym___attribute__] = ACTIONS(2695), + [anon_sym___attribute] = ACTIONS(2695), + [anon_sym_using] = ACTIONS(2695), + [anon_sym_COLON_COLON] = ACTIONS(2697), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2697), + [anon_sym___declspec] = ACTIONS(2695), + [anon_sym___based] = ACTIONS(2695), + [anon_sym___cdecl] = ACTIONS(2695), + [anon_sym___clrcall] = ACTIONS(2695), + [anon_sym___stdcall] = ACTIONS(2695), + [anon_sym___fastcall] = ACTIONS(2695), + [anon_sym___thiscall] = ACTIONS(2695), + [anon_sym___vectorcall] = ACTIONS(2695), + [anon_sym_LBRACE] = ACTIONS(2697), + [anon_sym_RBRACE] = ACTIONS(2697), + [anon_sym_signed] = ACTIONS(2695), + [anon_sym_unsigned] = ACTIONS(2695), + [anon_sym_long] = ACTIONS(2695), + [anon_sym_short] = ACTIONS(2695), + [anon_sym_LBRACK] = ACTIONS(2695), + [anon_sym_static] = ACTIONS(2695), + [anon_sym_register] = ACTIONS(2695), + [anon_sym_inline] = ACTIONS(2695), + [anon_sym___inline] = ACTIONS(2695), + [anon_sym___inline__] = ACTIONS(2695), + [anon_sym___forceinline] = ACTIONS(2695), + [anon_sym_thread_local] = ACTIONS(2695), + [anon_sym___thread] = ACTIONS(2695), + [anon_sym_const] = ACTIONS(2695), + [anon_sym_constexpr] = ACTIONS(2695), + [anon_sym_volatile] = ACTIONS(2695), + [anon_sym_restrict] = ACTIONS(2695), + [anon_sym___restrict__] = ACTIONS(2695), + [anon_sym__Atomic] = ACTIONS(2695), + [anon_sym__Noreturn] = ACTIONS(2695), + [anon_sym_noreturn] = ACTIONS(2695), + [anon_sym__Nonnull] = ACTIONS(2695), + [anon_sym_mutable] = ACTIONS(2695), + [anon_sym_constinit] = ACTIONS(2695), + [anon_sym_consteval] = ACTIONS(2695), + [anon_sym_alignas] = ACTIONS(2695), + [anon_sym__Alignas] = ACTIONS(2695), + [sym_primitive_type] = ACTIONS(2695), + [anon_sym_enum] = ACTIONS(2695), + [anon_sym_class] = ACTIONS(2695), + [anon_sym_struct] = ACTIONS(2695), + [anon_sym_union] = ACTIONS(2695), + [anon_sym_if] = ACTIONS(2695), + [anon_sym_else] = ACTIONS(2695), + [anon_sym_switch] = ACTIONS(2695), + [anon_sym_case] = ACTIONS(2695), + [anon_sym_default] = ACTIONS(2695), + [anon_sym_while] = ACTIONS(2695), + [anon_sym_do] = ACTIONS(2695), + [anon_sym_for] = ACTIONS(2695), + [anon_sym_return] = ACTIONS(2695), + [anon_sym_break] = ACTIONS(2695), + [anon_sym_continue] = ACTIONS(2695), + [anon_sym_goto] = ACTIONS(2695), + [anon_sym___try] = ACTIONS(2695), + [anon_sym___leave] = ACTIONS(2695), + [anon_sym_not] = ACTIONS(2695), + [anon_sym_compl] = ACTIONS(2695), + [anon_sym_DASH_DASH] = ACTIONS(2697), + [anon_sym_PLUS_PLUS] = ACTIONS(2697), + [anon_sym_sizeof] = ACTIONS(2695), + [anon_sym___alignof__] = ACTIONS(2695), + [anon_sym___alignof] = ACTIONS(2695), + [anon_sym__alignof] = ACTIONS(2695), + [anon_sym_alignof] = ACTIONS(2695), + [anon_sym__Alignof] = ACTIONS(2695), + [anon_sym_offsetof] = ACTIONS(2695), + [anon_sym__Generic] = ACTIONS(2695), + [anon_sym_asm] = ACTIONS(2695), + [anon_sym___asm__] = ACTIONS(2695), + [anon_sym___asm] = ACTIONS(2695), + [sym_number_literal] = ACTIONS(2697), + [anon_sym_L_SQUOTE] = ACTIONS(2697), + [anon_sym_u_SQUOTE] = ACTIONS(2697), + [anon_sym_U_SQUOTE] = ACTIONS(2697), + [anon_sym_u8_SQUOTE] = ACTIONS(2697), + [anon_sym_SQUOTE] = ACTIONS(2697), + [anon_sym_L_DQUOTE] = ACTIONS(2697), + [anon_sym_u_DQUOTE] = ACTIONS(2697), + [anon_sym_U_DQUOTE] = ACTIONS(2697), + [anon_sym_u8_DQUOTE] = ACTIONS(2697), + [anon_sym_DQUOTE] = ACTIONS(2697), + [sym_true] = ACTIONS(2695), + [sym_false] = ACTIONS(2695), + [anon_sym_NULL] = ACTIONS(2695), + [anon_sym_nullptr] = ACTIONS(2695), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2695), + [anon_sym_decltype] = ACTIONS(2695), + [anon_sym_explicit] = ACTIONS(2695), + [anon_sym_typename] = ACTIONS(2695), + [anon_sym_template] = ACTIONS(2695), + [anon_sym_operator] = ACTIONS(2695), + [anon_sym_try] = ACTIONS(2695), + [anon_sym_delete] = ACTIONS(2695), + [anon_sym_throw] = ACTIONS(2695), + [anon_sym_namespace] = ACTIONS(2695), + [anon_sym_static_assert] = ACTIONS(2695), + [anon_sym_concept] = ACTIONS(2695), + [anon_sym_co_return] = ACTIONS(2695), + [anon_sym_co_yield] = ACTIONS(2695), + [anon_sym_R_DQUOTE] = ACTIONS(2697), + [anon_sym_LR_DQUOTE] = ACTIONS(2697), + [anon_sym_uR_DQUOTE] = ACTIONS(2697), + [anon_sym_UR_DQUOTE] = ACTIONS(2697), + [anon_sym_u8R_DQUOTE] = ACTIONS(2697), + [anon_sym_co_await] = ACTIONS(2695), + [anon_sym_new] = ACTIONS(2695), + [anon_sym_requires] = ACTIONS(2695), + [sym_this] = ACTIONS(2695), + }, + [561] = { + [ts_builtin_sym_end] = ACTIONS(3451), + [sym_identifier] = ACTIONS(3454), + [aux_sym_preproc_include_token1] = ACTIONS(3454), + [aux_sym_preproc_def_token1] = ACTIONS(3454), + [aux_sym_preproc_if_token1] = ACTIONS(3454), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3454), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3454), + [sym_preproc_directive] = ACTIONS(3454), + [anon_sym_LPAREN2] = ACTIONS(3451), + [anon_sym_BANG] = ACTIONS(3451), + [anon_sym_TILDE] = ACTIONS(3451), + [anon_sym_DASH] = ACTIONS(3454), + [anon_sym_PLUS] = ACTIONS(3454), + [anon_sym_STAR] = ACTIONS(3451), + [anon_sym_AMP_AMP] = ACTIONS(3451), + [anon_sym_AMP] = ACTIONS(3454), + [anon_sym_SEMI] = ACTIONS(3451), + [anon_sym___extension__] = ACTIONS(3454), + [anon_sym_typedef] = ACTIONS(3454), + [anon_sym_virtual] = ACTIONS(3454), + [anon_sym_extern] = ACTIONS(3454), + [anon_sym___attribute__] = ACTIONS(3454), + [anon_sym___attribute] = ACTIONS(3454), + [anon_sym_using] = ACTIONS(3454), + [anon_sym_COLON_COLON] = ACTIONS(3451), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3451), + [anon_sym___declspec] = ACTIONS(3454), + [anon_sym___based] = ACTIONS(3454), + [anon_sym___cdecl] = ACTIONS(3454), + [anon_sym___clrcall] = ACTIONS(3454), + [anon_sym___stdcall] = ACTIONS(3454), + [anon_sym___fastcall] = ACTIONS(3454), + [anon_sym___thiscall] = ACTIONS(3454), + [anon_sym___vectorcall] = ACTIONS(3454), + [anon_sym_LBRACE] = ACTIONS(3451), + [anon_sym_signed] = ACTIONS(3454), + [anon_sym_unsigned] = ACTIONS(3454), + [anon_sym_long] = ACTIONS(3454), + [anon_sym_short] = ACTIONS(3454), + [anon_sym_LBRACK] = ACTIONS(3454), + [anon_sym_static] = ACTIONS(3454), + [anon_sym_register] = ACTIONS(3454), + [anon_sym_inline] = ACTIONS(3454), + [anon_sym___inline] = ACTIONS(3454), + [anon_sym___inline__] = ACTIONS(3454), + [anon_sym___forceinline] = ACTIONS(3454), + [anon_sym_thread_local] = ACTIONS(3454), + [anon_sym___thread] = ACTIONS(3454), + [anon_sym_const] = ACTIONS(3454), + [anon_sym_constexpr] = ACTIONS(3454), + [anon_sym_volatile] = ACTIONS(3454), + [anon_sym_restrict] = ACTIONS(3454), + [anon_sym___restrict__] = ACTIONS(3454), + [anon_sym__Atomic] = ACTIONS(3454), + [anon_sym__Noreturn] = ACTIONS(3454), + [anon_sym_noreturn] = ACTIONS(3454), + [anon_sym__Nonnull] = ACTIONS(3454), + [anon_sym_mutable] = ACTIONS(3454), + [anon_sym_constinit] = ACTIONS(3454), + [anon_sym_consteval] = ACTIONS(3454), + [anon_sym_alignas] = ACTIONS(3454), + [anon_sym__Alignas] = ACTIONS(3454), + [sym_primitive_type] = ACTIONS(3454), + [anon_sym_enum] = ACTIONS(3454), + [anon_sym_class] = ACTIONS(3454), + [anon_sym_struct] = ACTIONS(3454), + [anon_sym_union] = ACTIONS(3454), + [anon_sym_if] = ACTIONS(3454), + [anon_sym_switch] = ACTIONS(3454), + [anon_sym_case] = ACTIONS(3454), + [anon_sym_default] = ACTIONS(3454), + [anon_sym_while] = ACTIONS(3454), + [anon_sym_do] = ACTIONS(3454), + [anon_sym_for] = ACTIONS(3454), + [anon_sym_return] = ACTIONS(3454), + [anon_sym_break] = ACTIONS(3454), + [anon_sym_continue] = ACTIONS(3454), + [anon_sym_goto] = ACTIONS(3454), + [anon_sym_not] = ACTIONS(3454), + [anon_sym_compl] = ACTIONS(3454), + [anon_sym_DASH_DASH] = ACTIONS(3451), + [anon_sym_PLUS_PLUS] = ACTIONS(3451), + [anon_sym_sizeof] = ACTIONS(3454), + [anon_sym___alignof__] = ACTIONS(3454), + [anon_sym___alignof] = ACTIONS(3454), + [anon_sym__alignof] = ACTIONS(3454), + [anon_sym_alignof] = ACTIONS(3454), + [anon_sym__Alignof] = ACTIONS(3454), + [anon_sym_offsetof] = ACTIONS(3454), + [anon_sym__Generic] = ACTIONS(3454), + [anon_sym_asm] = ACTIONS(3454), + [anon_sym___asm__] = ACTIONS(3454), + [anon_sym___asm] = ACTIONS(3454), + [sym_number_literal] = ACTIONS(3451), + [anon_sym_L_SQUOTE] = ACTIONS(3451), + [anon_sym_u_SQUOTE] = ACTIONS(3451), + [anon_sym_U_SQUOTE] = ACTIONS(3451), + [anon_sym_u8_SQUOTE] = ACTIONS(3451), + [anon_sym_SQUOTE] = ACTIONS(3451), + [anon_sym_L_DQUOTE] = ACTIONS(3451), + [anon_sym_u_DQUOTE] = ACTIONS(3451), + [anon_sym_U_DQUOTE] = ACTIONS(3451), + [anon_sym_u8_DQUOTE] = ACTIONS(3451), + [anon_sym_DQUOTE] = ACTIONS(3451), + [sym_true] = ACTIONS(3454), + [sym_false] = ACTIONS(3454), + [anon_sym_NULL] = ACTIONS(3454), + [anon_sym_nullptr] = ACTIONS(3454), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3454), + [anon_sym_decltype] = ACTIONS(3454), + [anon_sym_explicit] = ACTIONS(3454), + [anon_sym_typename] = ACTIONS(3454), + [anon_sym_export] = ACTIONS(3454), + [anon_sym_module] = ACTIONS(3454), + [anon_sym_import] = ACTIONS(3454), + [anon_sym_template] = ACTIONS(3454), + [anon_sym_operator] = ACTIONS(3454), + [anon_sym_try] = ACTIONS(3454), + [anon_sym_delete] = ACTIONS(3454), + [anon_sym_throw] = ACTIONS(3454), + [anon_sym_namespace] = ACTIONS(3454), + [anon_sym_static_assert] = ACTIONS(3454), + [anon_sym_concept] = ACTIONS(3454), + [anon_sym_co_return] = ACTIONS(3454), + [anon_sym_co_yield] = ACTIONS(3454), + [anon_sym_R_DQUOTE] = ACTIONS(3451), + [anon_sym_LR_DQUOTE] = ACTIONS(3451), + [anon_sym_uR_DQUOTE] = ACTIONS(3451), + [anon_sym_UR_DQUOTE] = ACTIONS(3451), + [anon_sym_u8R_DQUOTE] = ACTIONS(3451), + [anon_sym_co_await] = ACTIONS(3454), + [anon_sym_new] = ACTIONS(3454), + [anon_sym_requires] = ACTIONS(3454), + [sym_this] = ACTIONS(3454), + }, + [562] = { [sym_identifier] = ACTIONS(2755), [aux_sym_preproc_include_token1] = ACTIONS(2755), [aux_sym_preproc_def_token1] = ACTIONS(2755), @@ -121774,2341 +123866,1929 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2755), [sym_this] = ACTIONS(2755), }, - [550] = { - [sym_identifier] = ACTIONS(2687), - [aux_sym_preproc_include_token1] = ACTIONS(2687), - [aux_sym_preproc_def_token1] = ACTIONS(2687), - [aux_sym_preproc_if_token1] = ACTIONS(2687), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2687), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2687), - [sym_preproc_directive] = ACTIONS(2687), - [anon_sym_LPAREN2] = ACTIONS(2689), - [anon_sym_BANG] = ACTIONS(2689), - [anon_sym_TILDE] = ACTIONS(2689), - [anon_sym_DASH] = ACTIONS(2687), - [anon_sym_PLUS] = ACTIONS(2687), - [anon_sym_STAR] = ACTIONS(2689), - [anon_sym_AMP_AMP] = ACTIONS(2689), - [anon_sym_AMP] = ACTIONS(2687), - [anon_sym_SEMI] = ACTIONS(2689), - [anon_sym___extension__] = ACTIONS(2687), - [anon_sym_typedef] = ACTIONS(2687), - [anon_sym_virtual] = ACTIONS(2687), - [anon_sym_extern] = ACTIONS(2687), - [anon_sym___attribute__] = ACTIONS(2687), - [anon_sym___attribute] = ACTIONS(2687), - [anon_sym_using] = ACTIONS(2687), - [anon_sym_COLON_COLON] = ACTIONS(2689), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2689), - [anon_sym___declspec] = ACTIONS(2687), - [anon_sym___based] = ACTIONS(2687), - [anon_sym___cdecl] = ACTIONS(2687), - [anon_sym___clrcall] = ACTIONS(2687), - [anon_sym___stdcall] = ACTIONS(2687), - [anon_sym___fastcall] = ACTIONS(2687), - [anon_sym___thiscall] = ACTIONS(2687), - [anon_sym___vectorcall] = ACTIONS(2687), - [anon_sym_LBRACE] = ACTIONS(2689), - [anon_sym_RBRACE] = ACTIONS(2689), - [anon_sym_signed] = ACTIONS(2687), - [anon_sym_unsigned] = ACTIONS(2687), - [anon_sym_long] = ACTIONS(2687), - [anon_sym_short] = ACTIONS(2687), - [anon_sym_LBRACK] = ACTIONS(2687), - [anon_sym_static] = ACTIONS(2687), - [anon_sym_register] = ACTIONS(2687), - [anon_sym_inline] = ACTIONS(2687), - [anon_sym___inline] = ACTIONS(2687), - [anon_sym___inline__] = ACTIONS(2687), - [anon_sym___forceinline] = ACTIONS(2687), - [anon_sym_thread_local] = ACTIONS(2687), - [anon_sym___thread] = ACTIONS(2687), - [anon_sym_const] = ACTIONS(2687), - [anon_sym_constexpr] = ACTIONS(2687), - [anon_sym_volatile] = ACTIONS(2687), - [anon_sym_restrict] = ACTIONS(2687), - [anon_sym___restrict__] = ACTIONS(2687), - [anon_sym__Atomic] = ACTIONS(2687), - [anon_sym__Noreturn] = ACTIONS(2687), - [anon_sym_noreturn] = ACTIONS(2687), - [anon_sym__Nonnull] = ACTIONS(2687), - [anon_sym_mutable] = ACTIONS(2687), - [anon_sym_constinit] = ACTIONS(2687), - [anon_sym_consteval] = ACTIONS(2687), - [anon_sym_alignas] = ACTIONS(2687), - [anon_sym__Alignas] = ACTIONS(2687), - [sym_primitive_type] = ACTIONS(2687), - [anon_sym_enum] = ACTIONS(2687), - [anon_sym_class] = ACTIONS(2687), - [anon_sym_struct] = ACTIONS(2687), - [anon_sym_union] = ACTIONS(2687), - [anon_sym_if] = ACTIONS(2687), - [anon_sym_else] = ACTIONS(2687), - [anon_sym_switch] = ACTIONS(2687), - [anon_sym_case] = ACTIONS(2687), - [anon_sym_default] = ACTIONS(2687), - [anon_sym_while] = ACTIONS(2687), - [anon_sym_do] = ACTIONS(2687), - [anon_sym_for] = ACTIONS(2687), - [anon_sym_return] = ACTIONS(2687), - [anon_sym_break] = ACTIONS(2687), - [anon_sym_continue] = ACTIONS(2687), - [anon_sym_goto] = ACTIONS(2687), - [anon_sym___try] = ACTIONS(2687), - [anon_sym___leave] = ACTIONS(2687), - [anon_sym_not] = ACTIONS(2687), - [anon_sym_compl] = ACTIONS(2687), - [anon_sym_DASH_DASH] = ACTIONS(2689), - [anon_sym_PLUS_PLUS] = ACTIONS(2689), - [anon_sym_sizeof] = ACTIONS(2687), - [anon_sym___alignof__] = ACTIONS(2687), - [anon_sym___alignof] = ACTIONS(2687), - [anon_sym__alignof] = ACTIONS(2687), - [anon_sym_alignof] = ACTIONS(2687), - [anon_sym__Alignof] = ACTIONS(2687), - [anon_sym_offsetof] = ACTIONS(2687), - [anon_sym__Generic] = ACTIONS(2687), - [anon_sym_asm] = ACTIONS(2687), - [anon_sym___asm__] = ACTIONS(2687), - [anon_sym___asm] = ACTIONS(2687), - [sym_number_literal] = ACTIONS(2689), - [anon_sym_L_SQUOTE] = ACTIONS(2689), - [anon_sym_u_SQUOTE] = ACTIONS(2689), - [anon_sym_U_SQUOTE] = ACTIONS(2689), - [anon_sym_u8_SQUOTE] = ACTIONS(2689), - [anon_sym_SQUOTE] = ACTIONS(2689), - [anon_sym_L_DQUOTE] = ACTIONS(2689), - [anon_sym_u_DQUOTE] = ACTIONS(2689), - [anon_sym_U_DQUOTE] = ACTIONS(2689), - [anon_sym_u8_DQUOTE] = ACTIONS(2689), - [anon_sym_DQUOTE] = ACTIONS(2689), - [sym_true] = ACTIONS(2687), - [sym_false] = ACTIONS(2687), - [anon_sym_NULL] = ACTIONS(2687), - [anon_sym_nullptr] = ACTIONS(2687), + [563] = { + [sym_identifier] = ACTIONS(2767), + [aux_sym_preproc_include_token1] = ACTIONS(2767), + [aux_sym_preproc_def_token1] = ACTIONS(2767), + [aux_sym_preproc_if_token1] = ACTIONS(2767), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2767), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2767), + [sym_preproc_directive] = ACTIONS(2767), + [anon_sym_LPAREN2] = ACTIONS(2769), + [anon_sym_BANG] = ACTIONS(2769), + [anon_sym_TILDE] = ACTIONS(2769), + [anon_sym_DASH] = ACTIONS(2767), + [anon_sym_PLUS] = ACTIONS(2767), + [anon_sym_STAR] = ACTIONS(2769), + [anon_sym_AMP_AMP] = ACTIONS(2769), + [anon_sym_AMP] = ACTIONS(2767), + [anon_sym_SEMI] = ACTIONS(2769), + [anon_sym___extension__] = ACTIONS(2767), + [anon_sym_typedef] = ACTIONS(2767), + [anon_sym_virtual] = ACTIONS(2767), + [anon_sym_extern] = ACTIONS(2767), + [anon_sym___attribute__] = ACTIONS(2767), + [anon_sym___attribute] = ACTIONS(2767), + [anon_sym_using] = ACTIONS(2767), + [anon_sym_COLON_COLON] = ACTIONS(2769), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2769), + [anon_sym___declspec] = ACTIONS(2767), + [anon_sym___based] = ACTIONS(2767), + [anon_sym___cdecl] = ACTIONS(2767), + [anon_sym___clrcall] = ACTIONS(2767), + [anon_sym___stdcall] = ACTIONS(2767), + [anon_sym___fastcall] = ACTIONS(2767), + [anon_sym___thiscall] = ACTIONS(2767), + [anon_sym___vectorcall] = ACTIONS(2767), + [anon_sym_LBRACE] = ACTIONS(2769), + [anon_sym_RBRACE] = ACTIONS(2769), + [anon_sym_signed] = ACTIONS(2767), + [anon_sym_unsigned] = ACTIONS(2767), + [anon_sym_long] = ACTIONS(2767), + [anon_sym_short] = ACTIONS(2767), + [anon_sym_LBRACK] = ACTIONS(2767), + [anon_sym_static] = ACTIONS(2767), + [anon_sym_register] = ACTIONS(2767), + [anon_sym_inline] = ACTIONS(2767), + [anon_sym___inline] = ACTIONS(2767), + [anon_sym___inline__] = ACTIONS(2767), + [anon_sym___forceinline] = ACTIONS(2767), + [anon_sym_thread_local] = ACTIONS(2767), + [anon_sym___thread] = ACTIONS(2767), + [anon_sym_const] = ACTIONS(2767), + [anon_sym_constexpr] = ACTIONS(2767), + [anon_sym_volatile] = ACTIONS(2767), + [anon_sym_restrict] = ACTIONS(2767), + [anon_sym___restrict__] = ACTIONS(2767), + [anon_sym__Atomic] = ACTIONS(2767), + [anon_sym__Noreturn] = ACTIONS(2767), + [anon_sym_noreturn] = ACTIONS(2767), + [anon_sym__Nonnull] = ACTIONS(2767), + [anon_sym_mutable] = ACTIONS(2767), + [anon_sym_constinit] = ACTIONS(2767), + [anon_sym_consteval] = ACTIONS(2767), + [anon_sym_alignas] = ACTIONS(2767), + [anon_sym__Alignas] = ACTIONS(2767), + [sym_primitive_type] = ACTIONS(2767), + [anon_sym_enum] = ACTIONS(2767), + [anon_sym_class] = ACTIONS(2767), + [anon_sym_struct] = ACTIONS(2767), + [anon_sym_union] = ACTIONS(2767), + [anon_sym_if] = ACTIONS(2767), + [anon_sym_else] = ACTIONS(2767), + [anon_sym_switch] = ACTIONS(2767), + [anon_sym_case] = ACTIONS(2767), + [anon_sym_default] = ACTIONS(2767), + [anon_sym_while] = ACTIONS(2767), + [anon_sym_do] = ACTIONS(2767), + [anon_sym_for] = ACTIONS(2767), + [anon_sym_return] = ACTIONS(2767), + [anon_sym_break] = ACTIONS(2767), + [anon_sym_continue] = ACTIONS(2767), + [anon_sym_goto] = ACTIONS(2767), + [anon_sym___try] = ACTIONS(2767), + [anon_sym___leave] = ACTIONS(2767), + [anon_sym_not] = ACTIONS(2767), + [anon_sym_compl] = ACTIONS(2767), + [anon_sym_DASH_DASH] = ACTIONS(2769), + [anon_sym_PLUS_PLUS] = ACTIONS(2769), + [anon_sym_sizeof] = ACTIONS(2767), + [anon_sym___alignof__] = ACTIONS(2767), + [anon_sym___alignof] = ACTIONS(2767), + [anon_sym__alignof] = ACTIONS(2767), + [anon_sym_alignof] = ACTIONS(2767), + [anon_sym__Alignof] = ACTIONS(2767), + [anon_sym_offsetof] = ACTIONS(2767), + [anon_sym__Generic] = ACTIONS(2767), + [anon_sym_asm] = ACTIONS(2767), + [anon_sym___asm__] = ACTIONS(2767), + [anon_sym___asm] = ACTIONS(2767), + [sym_number_literal] = ACTIONS(2769), + [anon_sym_L_SQUOTE] = ACTIONS(2769), + [anon_sym_u_SQUOTE] = ACTIONS(2769), + [anon_sym_U_SQUOTE] = ACTIONS(2769), + [anon_sym_u8_SQUOTE] = ACTIONS(2769), + [anon_sym_SQUOTE] = ACTIONS(2769), + [anon_sym_L_DQUOTE] = ACTIONS(2769), + [anon_sym_u_DQUOTE] = ACTIONS(2769), + [anon_sym_U_DQUOTE] = ACTIONS(2769), + [anon_sym_u8_DQUOTE] = ACTIONS(2769), + [anon_sym_DQUOTE] = ACTIONS(2769), + [sym_true] = ACTIONS(2767), + [sym_false] = ACTIONS(2767), + [anon_sym_NULL] = ACTIONS(2767), + [anon_sym_nullptr] = ACTIONS(2767), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2687), - [anon_sym_decltype] = ACTIONS(2687), - [anon_sym_explicit] = ACTIONS(2687), - [anon_sym_typename] = ACTIONS(2687), - [anon_sym_template] = ACTIONS(2687), - [anon_sym_operator] = ACTIONS(2687), - [anon_sym_try] = ACTIONS(2687), - [anon_sym_delete] = ACTIONS(2687), - [anon_sym_throw] = ACTIONS(2687), - [anon_sym_namespace] = ACTIONS(2687), - [anon_sym_static_assert] = ACTIONS(2687), - [anon_sym_concept] = ACTIONS(2687), - [anon_sym_co_return] = ACTIONS(2687), - [anon_sym_co_yield] = ACTIONS(2687), - [anon_sym_R_DQUOTE] = ACTIONS(2689), - [anon_sym_LR_DQUOTE] = ACTIONS(2689), - [anon_sym_uR_DQUOTE] = ACTIONS(2689), - [anon_sym_UR_DQUOTE] = ACTIONS(2689), - [anon_sym_u8R_DQUOTE] = ACTIONS(2689), - [anon_sym_co_await] = ACTIONS(2687), - [anon_sym_new] = ACTIONS(2687), - [anon_sym_requires] = ACTIONS(2687), - [sym_this] = ACTIONS(2687), - }, - [551] = { - [ts_builtin_sym_end] = ACTIONS(3425), - [sym_identifier] = ACTIONS(3427), - [aux_sym_preproc_include_token1] = ACTIONS(3427), - [aux_sym_preproc_def_token1] = ACTIONS(3427), - [aux_sym_preproc_if_token1] = ACTIONS(3427), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3427), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3427), - [sym_preproc_directive] = ACTIONS(3427), - [anon_sym_LPAREN2] = ACTIONS(3425), - [anon_sym_BANG] = ACTIONS(3425), - [anon_sym_TILDE] = ACTIONS(3425), - [anon_sym_DASH] = ACTIONS(3427), - [anon_sym_PLUS] = ACTIONS(3427), - [anon_sym_STAR] = ACTIONS(3425), - [anon_sym_AMP_AMP] = ACTIONS(3425), - [anon_sym_AMP] = ACTIONS(3427), - [anon_sym_SEMI] = ACTIONS(3425), - [anon_sym___extension__] = ACTIONS(3427), - [anon_sym_typedef] = ACTIONS(3427), - [anon_sym_virtual] = ACTIONS(3427), - [anon_sym_extern] = ACTIONS(3427), - [anon_sym___attribute__] = ACTIONS(3427), - [anon_sym___attribute] = ACTIONS(3427), - [anon_sym_using] = ACTIONS(3427), - [anon_sym_COLON_COLON] = ACTIONS(3425), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3425), - [anon_sym___declspec] = ACTIONS(3427), - [anon_sym___based] = ACTIONS(3427), - [anon_sym___cdecl] = ACTIONS(3427), - [anon_sym___clrcall] = ACTIONS(3427), - [anon_sym___stdcall] = ACTIONS(3427), - [anon_sym___fastcall] = ACTIONS(3427), - [anon_sym___thiscall] = ACTIONS(3427), - [anon_sym___vectorcall] = ACTIONS(3427), - [anon_sym_LBRACE] = ACTIONS(3425), - [anon_sym_signed] = ACTIONS(3427), - [anon_sym_unsigned] = ACTIONS(3427), - [anon_sym_long] = ACTIONS(3427), - [anon_sym_short] = ACTIONS(3427), - [anon_sym_LBRACK] = ACTIONS(3427), - [anon_sym_static] = ACTIONS(3427), - [anon_sym_register] = ACTIONS(3427), - [anon_sym_inline] = ACTIONS(3427), - [anon_sym___inline] = ACTIONS(3427), - [anon_sym___inline__] = ACTIONS(3427), - [anon_sym___forceinline] = ACTIONS(3427), - [anon_sym_thread_local] = ACTIONS(3427), - [anon_sym___thread] = ACTIONS(3427), - [anon_sym_const] = ACTIONS(3427), - [anon_sym_constexpr] = ACTIONS(3427), - [anon_sym_volatile] = ACTIONS(3427), - [anon_sym_restrict] = ACTIONS(3427), - [anon_sym___restrict__] = ACTIONS(3427), - [anon_sym__Atomic] = ACTIONS(3427), - [anon_sym__Noreturn] = ACTIONS(3427), - [anon_sym_noreturn] = ACTIONS(3427), - [anon_sym__Nonnull] = ACTIONS(3427), - [anon_sym_mutable] = ACTIONS(3427), - [anon_sym_constinit] = ACTIONS(3427), - [anon_sym_consteval] = ACTIONS(3427), - [anon_sym_alignas] = ACTIONS(3427), - [anon_sym__Alignas] = ACTIONS(3427), - [sym_primitive_type] = ACTIONS(3427), - [anon_sym_enum] = ACTIONS(3427), - [anon_sym_class] = ACTIONS(3427), - [anon_sym_struct] = ACTIONS(3427), - [anon_sym_union] = ACTIONS(3427), - [anon_sym_if] = ACTIONS(3427), - [anon_sym_switch] = ACTIONS(3427), - [anon_sym_case] = ACTIONS(3427), - [anon_sym_default] = ACTIONS(3427), - [anon_sym_while] = ACTIONS(3427), - [anon_sym_do] = ACTIONS(3427), - [anon_sym_for] = ACTIONS(3427), - [anon_sym_return] = ACTIONS(3427), - [anon_sym_break] = ACTIONS(3427), - [anon_sym_continue] = ACTIONS(3427), - [anon_sym_goto] = ACTIONS(3427), - [anon_sym_not] = ACTIONS(3427), - [anon_sym_compl] = ACTIONS(3427), - [anon_sym_DASH_DASH] = ACTIONS(3425), - [anon_sym_PLUS_PLUS] = ACTIONS(3425), - [anon_sym_sizeof] = ACTIONS(3427), - [anon_sym___alignof__] = ACTIONS(3427), - [anon_sym___alignof] = ACTIONS(3427), - [anon_sym__alignof] = ACTIONS(3427), - [anon_sym_alignof] = ACTIONS(3427), - [anon_sym__Alignof] = ACTIONS(3427), - [anon_sym_offsetof] = ACTIONS(3427), - [anon_sym__Generic] = ACTIONS(3427), - [anon_sym_asm] = ACTIONS(3427), - [anon_sym___asm__] = ACTIONS(3427), - [anon_sym___asm] = ACTIONS(3427), - [sym_number_literal] = ACTIONS(3425), - [anon_sym_L_SQUOTE] = ACTIONS(3425), - [anon_sym_u_SQUOTE] = ACTIONS(3425), - [anon_sym_U_SQUOTE] = ACTIONS(3425), - [anon_sym_u8_SQUOTE] = ACTIONS(3425), - [anon_sym_SQUOTE] = ACTIONS(3425), - [anon_sym_L_DQUOTE] = ACTIONS(3425), - [anon_sym_u_DQUOTE] = ACTIONS(3425), - [anon_sym_U_DQUOTE] = ACTIONS(3425), - [anon_sym_u8_DQUOTE] = ACTIONS(3425), - [anon_sym_DQUOTE] = ACTIONS(3425), - [sym_true] = ACTIONS(3427), - [sym_false] = ACTIONS(3427), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3427), - [anon_sym_decltype] = ACTIONS(3427), - [anon_sym_explicit] = ACTIONS(3427), - [anon_sym_typename] = ACTIONS(3427), - [anon_sym_export] = ACTIONS(3427), - [anon_sym_module] = ACTIONS(3427), - [anon_sym_import] = ACTIONS(3427), - [anon_sym_template] = ACTIONS(3427), - [anon_sym_operator] = ACTIONS(3427), - [anon_sym_try] = ACTIONS(3427), - [anon_sym_delete] = ACTIONS(3427), - [anon_sym_throw] = ACTIONS(3427), - [anon_sym_namespace] = ACTIONS(3427), - [anon_sym_static_assert] = ACTIONS(3427), - [anon_sym_concept] = ACTIONS(3427), - [anon_sym_co_return] = ACTIONS(3427), - [anon_sym_co_yield] = ACTIONS(3427), - [anon_sym_R_DQUOTE] = ACTIONS(3425), - [anon_sym_LR_DQUOTE] = ACTIONS(3425), - [anon_sym_uR_DQUOTE] = ACTIONS(3425), - [anon_sym_UR_DQUOTE] = ACTIONS(3425), - [anon_sym_u8R_DQUOTE] = ACTIONS(3425), - [anon_sym_co_await] = ACTIONS(3427), - [anon_sym_new] = ACTIONS(3427), - [anon_sym_requires] = ACTIONS(3427), - [sym_this] = ACTIONS(3427), - }, - [552] = { - [sym_identifier] = ACTIONS(2715), - [aux_sym_preproc_include_token1] = ACTIONS(2715), - [aux_sym_preproc_def_token1] = ACTIONS(2715), - [aux_sym_preproc_if_token1] = ACTIONS(2715), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2715), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2715), - [sym_preproc_directive] = ACTIONS(2715), - [anon_sym_LPAREN2] = ACTIONS(2717), - [anon_sym_BANG] = ACTIONS(2717), - [anon_sym_TILDE] = ACTIONS(2717), - [anon_sym_DASH] = ACTIONS(2715), - [anon_sym_PLUS] = ACTIONS(2715), - [anon_sym_STAR] = ACTIONS(2717), - [anon_sym_AMP_AMP] = ACTIONS(2717), - [anon_sym_AMP] = ACTIONS(2715), - [anon_sym_SEMI] = ACTIONS(2717), - [anon_sym___extension__] = ACTIONS(2715), - [anon_sym_typedef] = ACTIONS(2715), - [anon_sym_virtual] = ACTIONS(2715), - [anon_sym_extern] = ACTIONS(2715), - [anon_sym___attribute__] = ACTIONS(2715), - [anon_sym___attribute] = ACTIONS(2715), - [anon_sym_using] = ACTIONS(2715), - [anon_sym_COLON_COLON] = ACTIONS(2717), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2717), - [anon_sym___declspec] = ACTIONS(2715), - [anon_sym___based] = ACTIONS(2715), - [anon_sym___cdecl] = ACTIONS(2715), - [anon_sym___clrcall] = ACTIONS(2715), - [anon_sym___stdcall] = ACTIONS(2715), - [anon_sym___fastcall] = ACTIONS(2715), - [anon_sym___thiscall] = ACTIONS(2715), - [anon_sym___vectorcall] = ACTIONS(2715), - [anon_sym_LBRACE] = ACTIONS(2717), - [anon_sym_RBRACE] = ACTIONS(2717), - [anon_sym_signed] = ACTIONS(2715), - [anon_sym_unsigned] = ACTIONS(2715), - [anon_sym_long] = ACTIONS(2715), - [anon_sym_short] = ACTIONS(2715), - [anon_sym_LBRACK] = ACTIONS(2715), - [anon_sym_static] = ACTIONS(2715), - [anon_sym_register] = ACTIONS(2715), - [anon_sym_inline] = ACTIONS(2715), - [anon_sym___inline] = ACTIONS(2715), - [anon_sym___inline__] = ACTIONS(2715), - [anon_sym___forceinline] = ACTIONS(2715), - [anon_sym_thread_local] = ACTIONS(2715), - [anon_sym___thread] = ACTIONS(2715), - [anon_sym_const] = ACTIONS(2715), - [anon_sym_constexpr] = ACTIONS(2715), - [anon_sym_volatile] = ACTIONS(2715), - [anon_sym_restrict] = ACTIONS(2715), - [anon_sym___restrict__] = ACTIONS(2715), - [anon_sym__Atomic] = ACTIONS(2715), - [anon_sym__Noreturn] = ACTIONS(2715), - [anon_sym_noreturn] = ACTIONS(2715), - [anon_sym__Nonnull] = ACTIONS(2715), - [anon_sym_mutable] = ACTIONS(2715), - [anon_sym_constinit] = ACTIONS(2715), - [anon_sym_consteval] = ACTIONS(2715), - [anon_sym_alignas] = ACTIONS(2715), - [anon_sym__Alignas] = ACTIONS(2715), - [sym_primitive_type] = ACTIONS(2715), - [anon_sym_enum] = ACTIONS(2715), - [anon_sym_class] = ACTIONS(2715), - [anon_sym_struct] = ACTIONS(2715), - [anon_sym_union] = ACTIONS(2715), - [anon_sym_if] = ACTIONS(2715), - [anon_sym_else] = ACTIONS(2715), - [anon_sym_switch] = ACTIONS(2715), - [anon_sym_case] = ACTIONS(2715), - [anon_sym_default] = ACTIONS(2715), - [anon_sym_while] = ACTIONS(2715), - [anon_sym_do] = ACTIONS(2715), - [anon_sym_for] = ACTIONS(2715), - [anon_sym_return] = ACTIONS(2715), - [anon_sym_break] = ACTIONS(2715), - [anon_sym_continue] = ACTIONS(2715), - [anon_sym_goto] = ACTIONS(2715), - [anon_sym___try] = ACTIONS(2715), - [anon_sym___leave] = ACTIONS(2715), - [anon_sym_not] = ACTIONS(2715), - [anon_sym_compl] = ACTIONS(2715), - [anon_sym_DASH_DASH] = ACTIONS(2717), - [anon_sym_PLUS_PLUS] = ACTIONS(2717), - [anon_sym_sizeof] = ACTIONS(2715), - [anon_sym___alignof__] = ACTIONS(2715), - [anon_sym___alignof] = ACTIONS(2715), - [anon_sym__alignof] = ACTIONS(2715), - [anon_sym_alignof] = ACTIONS(2715), - [anon_sym__Alignof] = ACTIONS(2715), - [anon_sym_offsetof] = ACTIONS(2715), - [anon_sym__Generic] = ACTIONS(2715), - [anon_sym_asm] = ACTIONS(2715), - [anon_sym___asm__] = ACTIONS(2715), - [anon_sym___asm] = ACTIONS(2715), - [sym_number_literal] = ACTIONS(2717), - [anon_sym_L_SQUOTE] = ACTIONS(2717), - [anon_sym_u_SQUOTE] = ACTIONS(2717), - [anon_sym_U_SQUOTE] = ACTIONS(2717), - [anon_sym_u8_SQUOTE] = ACTIONS(2717), - [anon_sym_SQUOTE] = ACTIONS(2717), - [anon_sym_L_DQUOTE] = ACTIONS(2717), - [anon_sym_u_DQUOTE] = ACTIONS(2717), - [anon_sym_U_DQUOTE] = ACTIONS(2717), - [anon_sym_u8_DQUOTE] = ACTIONS(2717), - [anon_sym_DQUOTE] = ACTIONS(2717), - [sym_true] = ACTIONS(2715), - [sym_false] = ACTIONS(2715), - [anon_sym_NULL] = ACTIONS(2715), - [anon_sym_nullptr] = ACTIONS(2715), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2715), - [anon_sym_decltype] = ACTIONS(2715), - [anon_sym_explicit] = ACTIONS(2715), - [anon_sym_typename] = ACTIONS(2715), - [anon_sym_template] = ACTIONS(2715), - [anon_sym_operator] = ACTIONS(2715), - [anon_sym_try] = ACTIONS(2715), - [anon_sym_delete] = ACTIONS(2715), - [anon_sym_throw] = ACTIONS(2715), - [anon_sym_namespace] = ACTIONS(2715), - [anon_sym_static_assert] = ACTIONS(2715), - [anon_sym_concept] = ACTIONS(2715), - [anon_sym_co_return] = ACTIONS(2715), - [anon_sym_co_yield] = ACTIONS(2715), - [anon_sym_R_DQUOTE] = ACTIONS(2717), - [anon_sym_LR_DQUOTE] = ACTIONS(2717), - [anon_sym_uR_DQUOTE] = ACTIONS(2717), - [anon_sym_UR_DQUOTE] = ACTIONS(2717), - [anon_sym_u8R_DQUOTE] = ACTIONS(2717), - [anon_sym_co_await] = ACTIONS(2715), - [anon_sym_new] = ACTIONS(2715), - [anon_sym_requires] = ACTIONS(2715), - [sym_this] = ACTIONS(2715), + [sym_auto] = ACTIONS(2767), + [anon_sym_decltype] = ACTIONS(2767), + [anon_sym_explicit] = ACTIONS(2767), + [anon_sym_typename] = ACTIONS(2767), + [anon_sym_template] = ACTIONS(2767), + [anon_sym_operator] = ACTIONS(2767), + [anon_sym_try] = ACTIONS(2767), + [anon_sym_delete] = ACTIONS(2767), + [anon_sym_throw] = ACTIONS(2767), + [anon_sym_namespace] = ACTIONS(2767), + [anon_sym_static_assert] = ACTIONS(2767), + [anon_sym_concept] = ACTIONS(2767), + [anon_sym_co_return] = ACTIONS(2767), + [anon_sym_co_yield] = ACTIONS(2767), + [anon_sym_R_DQUOTE] = ACTIONS(2769), + [anon_sym_LR_DQUOTE] = ACTIONS(2769), + [anon_sym_uR_DQUOTE] = ACTIONS(2769), + [anon_sym_UR_DQUOTE] = ACTIONS(2769), + [anon_sym_u8R_DQUOTE] = ACTIONS(2769), + [anon_sym_co_await] = ACTIONS(2767), + [anon_sym_new] = ACTIONS(2767), + [anon_sym_requires] = ACTIONS(2767), + [sym_this] = ACTIONS(2767), }, - [553] = { - [sym_identifier] = ACTIONS(2735), - [aux_sym_preproc_include_token1] = ACTIONS(2735), - [aux_sym_preproc_def_token1] = ACTIONS(2735), - [aux_sym_preproc_if_token1] = ACTIONS(2735), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2735), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2735), - [sym_preproc_directive] = ACTIONS(2735), - [anon_sym_LPAREN2] = ACTIONS(2737), - [anon_sym_BANG] = ACTIONS(2737), - [anon_sym_TILDE] = ACTIONS(2737), - [anon_sym_DASH] = ACTIONS(2735), - [anon_sym_PLUS] = ACTIONS(2735), - [anon_sym_STAR] = ACTIONS(2737), - [anon_sym_AMP_AMP] = ACTIONS(2737), - [anon_sym_AMP] = ACTIONS(2735), - [anon_sym_SEMI] = ACTIONS(2737), - [anon_sym___extension__] = ACTIONS(2735), - [anon_sym_typedef] = ACTIONS(2735), - [anon_sym_virtual] = ACTIONS(2735), - [anon_sym_extern] = ACTIONS(2735), - [anon_sym___attribute__] = ACTIONS(2735), - [anon_sym___attribute] = ACTIONS(2735), - [anon_sym_using] = ACTIONS(2735), - [anon_sym_COLON_COLON] = ACTIONS(2737), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2737), - [anon_sym___declspec] = ACTIONS(2735), - [anon_sym___based] = ACTIONS(2735), - [anon_sym___cdecl] = ACTIONS(2735), - [anon_sym___clrcall] = ACTIONS(2735), - [anon_sym___stdcall] = ACTIONS(2735), - [anon_sym___fastcall] = ACTIONS(2735), - [anon_sym___thiscall] = ACTIONS(2735), - [anon_sym___vectorcall] = ACTIONS(2735), - [anon_sym_LBRACE] = ACTIONS(2737), - [anon_sym_RBRACE] = ACTIONS(2737), - [anon_sym_signed] = ACTIONS(2735), - [anon_sym_unsigned] = ACTIONS(2735), - [anon_sym_long] = ACTIONS(2735), - [anon_sym_short] = ACTIONS(2735), - [anon_sym_LBRACK] = ACTIONS(2735), - [anon_sym_static] = ACTIONS(2735), - [anon_sym_register] = ACTIONS(2735), - [anon_sym_inline] = ACTIONS(2735), - [anon_sym___inline] = ACTIONS(2735), - [anon_sym___inline__] = ACTIONS(2735), - [anon_sym___forceinline] = ACTIONS(2735), - [anon_sym_thread_local] = ACTIONS(2735), - [anon_sym___thread] = ACTIONS(2735), - [anon_sym_const] = ACTIONS(2735), - [anon_sym_constexpr] = ACTIONS(2735), - [anon_sym_volatile] = ACTIONS(2735), - [anon_sym_restrict] = ACTIONS(2735), - [anon_sym___restrict__] = ACTIONS(2735), - [anon_sym__Atomic] = ACTIONS(2735), - [anon_sym__Noreturn] = ACTIONS(2735), - [anon_sym_noreturn] = ACTIONS(2735), - [anon_sym__Nonnull] = ACTIONS(2735), - [anon_sym_mutable] = ACTIONS(2735), - [anon_sym_constinit] = ACTIONS(2735), - [anon_sym_consteval] = ACTIONS(2735), - [anon_sym_alignas] = ACTIONS(2735), - [anon_sym__Alignas] = ACTIONS(2735), - [sym_primitive_type] = ACTIONS(2735), - [anon_sym_enum] = ACTIONS(2735), - [anon_sym_class] = ACTIONS(2735), - [anon_sym_struct] = ACTIONS(2735), - [anon_sym_union] = ACTIONS(2735), - [anon_sym_if] = ACTIONS(2735), - [anon_sym_else] = ACTIONS(2735), - [anon_sym_switch] = ACTIONS(2735), - [anon_sym_case] = ACTIONS(2735), - [anon_sym_default] = ACTIONS(2735), - [anon_sym_while] = ACTIONS(2735), - [anon_sym_do] = ACTIONS(2735), - [anon_sym_for] = ACTIONS(2735), - [anon_sym_return] = ACTIONS(2735), - [anon_sym_break] = ACTIONS(2735), - [anon_sym_continue] = ACTIONS(2735), - [anon_sym_goto] = ACTIONS(2735), - [anon_sym___try] = ACTIONS(2735), - [anon_sym___leave] = ACTIONS(2735), - [anon_sym_not] = ACTIONS(2735), - [anon_sym_compl] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2737), - [anon_sym_PLUS_PLUS] = ACTIONS(2737), - [anon_sym_sizeof] = ACTIONS(2735), - [anon_sym___alignof__] = ACTIONS(2735), - [anon_sym___alignof] = ACTIONS(2735), - [anon_sym__alignof] = ACTIONS(2735), - [anon_sym_alignof] = ACTIONS(2735), - [anon_sym__Alignof] = ACTIONS(2735), - [anon_sym_offsetof] = ACTIONS(2735), - [anon_sym__Generic] = ACTIONS(2735), - [anon_sym_asm] = ACTIONS(2735), - [anon_sym___asm__] = ACTIONS(2735), - [anon_sym___asm] = ACTIONS(2735), - [sym_number_literal] = ACTIONS(2737), - [anon_sym_L_SQUOTE] = ACTIONS(2737), - [anon_sym_u_SQUOTE] = ACTIONS(2737), - [anon_sym_U_SQUOTE] = ACTIONS(2737), - [anon_sym_u8_SQUOTE] = ACTIONS(2737), - [anon_sym_SQUOTE] = ACTIONS(2737), - [anon_sym_L_DQUOTE] = ACTIONS(2737), - [anon_sym_u_DQUOTE] = ACTIONS(2737), - [anon_sym_U_DQUOTE] = ACTIONS(2737), - [anon_sym_u8_DQUOTE] = ACTIONS(2737), - [anon_sym_DQUOTE] = ACTIONS(2737), - [sym_true] = ACTIONS(2735), - [sym_false] = ACTIONS(2735), - [anon_sym_NULL] = ACTIONS(2735), - [anon_sym_nullptr] = ACTIONS(2735), + [564] = { + [sym_identifier] = ACTIONS(2747), + [aux_sym_preproc_include_token1] = ACTIONS(2747), + [aux_sym_preproc_def_token1] = ACTIONS(2747), + [aux_sym_preproc_if_token1] = ACTIONS(2747), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2747), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2747), + [sym_preproc_directive] = ACTIONS(2747), + [anon_sym_LPAREN2] = ACTIONS(2749), + [anon_sym_BANG] = ACTIONS(2749), + [anon_sym_TILDE] = ACTIONS(2749), + [anon_sym_DASH] = ACTIONS(2747), + [anon_sym_PLUS] = ACTIONS(2747), + [anon_sym_STAR] = ACTIONS(2749), + [anon_sym_AMP_AMP] = ACTIONS(2749), + [anon_sym_AMP] = ACTIONS(2747), + [anon_sym_SEMI] = ACTIONS(2749), + [anon_sym___extension__] = ACTIONS(2747), + [anon_sym_typedef] = ACTIONS(2747), + [anon_sym_virtual] = ACTIONS(2747), + [anon_sym_extern] = ACTIONS(2747), + [anon_sym___attribute__] = ACTIONS(2747), + [anon_sym___attribute] = ACTIONS(2747), + [anon_sym_using] = ACTIONS(2747), + [anon_sym_COLON_COLON] = ACTIONS(2749), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2749), + [anon_sym___declspec] = ACTIONS(2747), + [anon_sym___based] = ACTIONS(2747), + [anon_sym___cdecl] = ACTIONS(2747), + [anon_sym___clrcall] = ACTIONS(2747), + [anon_sym___stdcall] = ACTIONS(2747), + [anon_sym___fastcall] = ACTIONS(2747), + [anon_sym___thiscall] = ACTIONS(2747), + [anon_sym___vectorcall] = ACTIONS(2747), + [anon_sym_LBRACE] = ACTIONS(2749), + [anon_sym_RBRACE] = ACTIONS(2749), + [anon_sym_signed] = ACTIONS(2747), + [anon_sym_unsigned] = ACTIONS(2747), + [anon_sym_long] = ACTIONS(2747), + [anon_sym_short] = ACTIONS(2747), + [anon_sym_LBRACK] = ACTIONS(2747), + [anon_sym_static] = ACTIONS(2747), + [anon_sym_register] = ACTIONS(2747), + [anon_sym_inline] = ACTIONS(2747), + [anon_sym___inline] = ACTIONS(2747), + [anon_sym___inline__] = ACTIONS(2747), + [anon_sym___forceinline] = ACTIONS(2747), + [anon_sym_thread_local] = ACTIONS(2747), + [anon_sym___thread] = ACTIONS(2747), + [anon_sym_const] = ACTIONS(2747), + [anon_sym_constexpr] = ACTIONS(2747), + [anon_sym_volatile] = ACTIONS(2747), + [anon_sym_restrict] = ACTIONS(2747), + [anon_sym___restrict__] = ACTIONS(2747), + [anon_sym__Atomic] = ACTIONS(2747), + [anon_sym__Noreturn] = ACTIONS(2747), + [anon_sym_noreturn] = ACTIONS(2747), + [anon_sym__Nonnull] = ACTIONS(2747), + [anon_sym_mutable] = ACTIONS(2747), + [anon_sym_constinit] = ACTIONS(2747), + [anon_sym_consteval] = ACTIONS(2747), + [anon_sym_alignas] = ACTIONS(2747), + [anon_sym__Alignas] = ACTIONS(2747), + [sym_primitive_type] = ACTIONS(2747), + [anon_sym_enum] = ACTIONS(2747), + [anon_sym_class] = ACTIONS(2747), + [anon_sym_struct] = ACTIONS(2747), + [anon_sym_union] = ACTIONS(2747), + [anon_sym_if] = ACTIONS(2747), + [anon_sym_else] = ACTIONS(2747), + [anon_sym_switch] = ACTIONS(2747), + [anon_sym_case] = ACTIONS(2747), + [anon_sym_default] = ACTIONS(2747), + [anon_sym_while] = ACTIONS(2747), + [anon_sym_do] = ACTIONS(2747), + [anon_sym_for] = ACTIONS(2747), + [anon_sym_return] = ACTIONS(2747), + [anon_sym_break] = ACTIONS(2747), + [anon_sym_continue] = ACTIONS(2747), + [anon_sym_goto] = ACTIONS(2747), + [anon_sym___try] = ACTIONS(2747), + [anon_sym___leave] = ACTIONS(2747), + [anon_sym_not] = ACTIONS(2747), + [anon_sym_compl] = ACTIONS(2747), + [anon_sym_DASH_DASH] = ACTIONS(2749), + [anon_sym_PLUS_PLUS] = ACTIONS(2749), + [anon_sym_sizeof] = ACTIONS(2747), + [anon_sym___alignof__] = ACTIONS(2747), + [anon_sym___alignof] = ACTIONS(2747), + [anon_sym__alignof] = ACTIONS(2747), + [anon_sym_alignof] = ACTIONS(2747), + [anon_sym__Alignof] = ACTIONS(2747), + [anon_sym_offsetof] = ACTIONS(2747), + [anon_sym__Generic] = ACTIONS(2747), + [anon_sym_asm] = ACTIONS(2747), + [anon_sym___asm__] = ACTIONS(2747), + [anon_sym___asm] = ACTIONS(2747), + [sym_number_literal] = ACTIONS(2749), + [anon_sym_L_SQUOTE] = ACTIONS(2749), + [anon_sym_u_SQUOTE] = ACTIONS(2749), + [anon_sym_U_SQUOTE] = ACTIONS(2749), + [anon_sym_u8_SQUOTE] = ACTIONS(2749), + [anon_sym_SQUOTE] = ACTIONS(2749), + [anon_sym_L_DQUOTE] = ACTIONS(2749), + [anon_sym_u_DQUOTE] = ACTIONS(2749), + [anon_sym_U_DQUOTE] = ACTIONS(2749), + [anon_sym_u8_DQUOTE] = ACTIONS(2749), + [anon_sym_DQUOTE] = ACTIONS(2749), + [sym_true] = ACTIONS(2747), + [sym_false] = ACTIONS(2747), + [anon_sym_NULL] = ACTIONS(2747), + [anon_sym_nullptr] = ACTIONS(2747), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2735), - [anon_sym_decltype] = ACTIONS(2735), - [anon_sym_explicit] = ACTIONS(2735), - [anon_sym_typename] = ACTIONS(2735), - [anon_sym_template] = ACTIONS(2735), - [anon_sym_operator] = ACTIONS(2735), - [anon_sym_try] = ACTIONS(2735), - [anon_sym_delete] = ACTIONS(2735), - [anon_sym_throw] = ACTIONS(2735), - [anon_sym_namespace] = ACTIONS(2735), - [anon_sym_static_assert] = ACTIONS(2735), - [anon_sym_concept] = ACTIONS(2735), - [anon_sym_co_return] = ACTIONS(2735), - [anon_sym_co_yield] = ACTIONS(2735), - [anon_sym_R_DQUOTE] = ACTIONS(2737), - [anon_sym_LR_DQUOTE] = ACTIONS(2737), - [anon_sym_uR_DQUOTE] = ACTIONS(2737), - [anon_sym_UR_DQUOTE] = ACTIONS(2737), - [anon_sym_u8R_DQUOTE] = ACTIONS(2737), - [anon_sym_co_await] = ACTIONS(2735), - [anon_sym_new] = ACTIONS(2735), - [anon_sym_requires] = ACTIONS(2735), - [sym_this] = ACTIONS(2735), + [sym_auto] = ACTIONS(2747), + [anon_sym_decltype] = ACTIONS(2747), + [anon_sym_explicit] = ACTIONS(2747), + [anon_sym_typename] = ACTIONS(2747), + [anon_sym_template] = ACTIONS(2747), + [anon_sym_operator] = ACTIONS(2747), + [anon_sym_try] = ACTIONS(2747), + [anon_sym_delete] = ACTIONS(2747), + [anon_sym_throw] = ACTIONS(2747), + [anon_sym_namespace] = ACTIONS(2747), + [anon_sym_static_assert] = ACTIONS(2747), + [anon_sym_concept] = ACTIONS(2747), + [anon_sym_co_return] = ACTIONS(2747), + [anon_sym_co_yield] = ACTIONS(2747), + [anon_sym_R_DQUOTE] = ACTIONS(2749), + [anon_sym_LR_DQUOTE] = ACTIONS(2749), + [anon_sym_uR_DQUOTE] = ACTIONS(2749), + [anon_sym_UR_DQUOTE] = ACTIONS(2749), + [anon_sym_u8R_DQUOTE] = ACTIONS(2749), + [anon_sym_co_await] = ACTIONS(2747), + [anon_sym_new] = ACTIONS(2747), + [anon_sym_requires] = ACTIONS(2747), + [sym_this] = ACTIONS(2747), }, - [554] = { - [sym_identifier] = ACTIONS(2647), - [aux_sym_preproc_include_token1] = ACTIONS(2647), - [aux_sym_preproc_def_token1] = ACTIONS(2647), - [aux_sym_preproc_if_token1] = ACTIONS(2647), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2647), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2647), - [sym_preproc_directive] = ACTIONS(2647), - [anon_sym_LPAREN2] = ACTIONS(2649), - [anon_sym_BANG] = ACTIONS(2649), - [anon_sym_TILDE] = ACTIONS(2649), - [anon_sym_DASH] = ACTIONS(2647), - [anon_sym_PLUS] = ACTIONS(2647), - [anon_sym_STAR] = ACTIONS(2649), - [anon_sym_AMP_AMP] = ACTIONS(2649), - [anon_sym_AMP] = ACTIONS(2647), - [anon_sym_SEMI] = ACTIONS(2649), - [anon_sym___extension__] = ACTIONS(2647), - [anon_sym_typedef] = ACTIONS(2647), - [anon_sym_virtual] = ACTIONS(2647), - [anon_sym_extern] = ACTIONS(2647), - [anon_sym___attribute__] = ACTIONS(2647), - [anon_sym___attribute] = ACTIONS(2647), - [anon_sym_using] = ACTIONS(2647), - [anon_sym_COLON_COLON] = ACTIONS(2649), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2649), - [anon_sym___declspec] = ACTIONS(2647), - [anon_sym___based] = ACTIONS(2647), - [anon_sym___cdecl] = ACTIONS(2647), - [anon_sym___clrcall] = ACTIONS(2647), - [anon_sym___stdcall] = ACTIONS(2647), - [anon_sym___fastcall] = ACTIONS(2647), - [anon_sym___thiscall] = ACTIONS(2647), - [anon_sym___vectorcall] = ACTIONS(2647), - [anon_sym_LBRACE] = ACTIONS(2649), - [anon_sym_RBRACE] = ACTIONS(2649), - [anon_sym_signed] = ACTIONS(2647), - [anon_sym_unsigned] = ACTIONS(2647), - [anon_sym_long] = ACTIONS(2647), - [anon_sym_short] = ACTIONS(2647), - [anon_sym_LBRACK] = ACTIONS(2647), - [anon_sym_static] = ACTIONS(2647), - [anon_sym_register] = ACTIONS(2647), - [anon_sym_inline] = ACTIONS(2647), - [anon_sym___inline] = ACTIONS(2647), - [anon_sym___inline__] = ACTIONS(2647), - [anon_sym___forceinline] = ACTIONS(2647), - [anon_sym_thread_local] = ACTIONS(2647), - [anon_sym___thread] = ACTIONS(2647), - [anon_sym_const] = ACTIONS(2647), - [anon_sym_constexpr] = ACTIONS(2647), - [anon_sym_volatile] = ACTIONS(2647), - [anon_sym_restrict] = ACTIONS(2647), - [anon_sym___restrict__] = ACTIONS(2647), - [anon_sym__Atomic] = ACTIONS(2647), - [anon_sym__Noreturn] = ACTIONS(2647), - [anon_sym_noreturn] = ACTIONS(2647), - [anon_sym__Nonnull] = ACTIONS(2647), - [anon_sym_mutable] = ACTIONS(2647), - [anon_sym_constinit] = ACTIONS(2647), - [anon_sym_consteval] = ACTIONS(2647), - [anon_sym_alignas] = ACTIONS(2647), - [anon_sym__Alignas] = ACTIONS(2647), - [sym_primitive_type] = ACTIONS(2647), - [anon_sym_enum] = ACTIONS(2647), - [anon_sym_class] = ACTIONS(2647), - [anon_sym_struct] = ACTIONS(2647), - [anon_sym_union] = ACTIONS(2647), - [anon_sym_if] = ACTIONS(2647), - [anon_sym_else] = ACTIONS(2647), - [anon_sym_switch] = ACTIONS(2647), - [anon_sym_case] = ACTIONS(2647), - [anon_sym_default] = ACTIONS(2647), - [anon_sym_while] = ACTIONS(2647), - [anon_sym_do] = ACTIONS(2647), - [anon_sym_for] = ACTIONS(2647), - [anon_sym_return] = ACTIONS(2647), - [anon_sym_break] = ACTIONS(2647), - [anon_sym_continue] = ACTIONS(2647), - [anon_sym_goto] = ACTIONS(2647), - [anon_sym___try] = ACTIONS(2647), - [anon_sym___leave] = ACTIONS(2647), - [anon_sym_not] = ACTIONS(2647), - [anon_sym_compl] = ACTIONS(2647), - [anon_sym_DASH_DASH] = ACTIONS(2649), - [anon_sym_PLUS_PLUS] = ACTIONS(2649), - [anon_sym_sizeof] = ACTIONS(2647), - [anon_sym___alignof__] = ACTIONS(2647), - [anon_sym___alignof] = ACTIONS(2647), - [anon_sym__alignof] = ACTIONS(2647), - [anon_sym_alignof] = ACTIONS(2647), - [anon_sym__Alignof] = ACTIONS(2647), - [anon_sym_offsetof] = ACTIONS(2647), - [anon_sym__Generic] = ACTIONS(2647), - [anon_sym_asm] = ACTIONS(2647), - [anon_sym___asm__] = ACTIONS(2647), - [anon_sym___asm] = ACTIONS(2647), - [sym_number_literal] = ACTIONS(2649), - [anon_sym_L_SQUOTE] = ACTIONS(2649), - [anon_sym_u_SQUOTE] = ACTIONS(2649), - [anon_sym_U_SQUOTE] = ACTIONS(2649), - [anon_sym_u8_SQUOTE] = ACTIONS(2649), - [anon_sym_SQUOTE] = ACTIONS(2649), - [anon_sym_L_DQUOTE] = ACTIONS(2649), - [anon_sym_u_DQUOTE] = ACTIONS(2649), - [anon_sym_U_DQUOTE] = ACTIONS(2649), - [anon_sym_u8_DQUOTE] = ACTIONS(2649), - [anon_sym_DQUOTE] = ACTIONS(2649), - [sym_true] = ACTIONS(2647), - [sym_false] = ACTIONS(2647), - [anon_sym_NULL] = ACTIONS(2647), - [anon_sym_nullptr] = ACTIONS(2647), + [565] = { + [ts_builtin_sym_end] = ACTIONS(2833), + [sym_identifier] = ACTIONS(2831), + [aux_sym_preproc_include_token1] = ACTIONS(2831), + [aux_sym_preproc_def_token1] = ACTIONS(2831), + [aux_sym_preproc_if_token1] = ACTIONS(2831), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2831), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2831), + [sym_preproc_directive] = ACTIONS(2831), + [anon_sym_LPAREN2] = ACTIONS(2833), + [anon_sym_BANG] = ACTIONS(2833), + [anon_sym_TILDE] = ACTIONS(2833), + [anon_sym_DASH] = ACTIONS(2831), + [anon_sym_PLUS] = ACTIONS(2831), + [anon_sym_STAR] = ACTIONS(2833), + [anon_sym_AMP_AMP] = ACTIONS(2833), + [anon_sym_AMP] = ACTIONS(2831), + [anon_sym_SEMI] = ACTIONS(2833), + [anon_sym___extension__] = ACTIONS(2831), + [anon_sym_typedef] = ACTIONS(2831), + [anon_sym_virtual] = ACTIONS(2831), + [anon_sym_extern] = ACTIONS(2831), + [anon_sym___attribute__] = ACTIONS(2831), + [anon_sym___attribute] = ACTIONS(2831), + [anon_sym_using] = ACTIONS(2831), + [anon_sym_COLON_COLON] = ACTIONS(2833), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2833), + [anon_sym___declspec] = ACTIONS(2831), + [anon_sym___based] = ACTIONS(2831), + [anon_sym___cdecl] = ACTIONS(2831), + [anon_sym___clrcall] = ACTIONS(2831), + [anon_sym___stdcall] = ACTIONS(2831), + [anon_sym___fastcall] = ACTIONS(2831), + [anon_sym___thiscall] = ACTIONS(2831), + [anon_sym___vectorcall] = ACTIONS(2831), + [anon_sym_LBRACE] = ACTIONS(2833), + [anon_sym_signed] = ACTIONS(2831), + [anon_sym_unsigned] = ACTIONS(2831), + [anon_sym_long] = ACTIONS(2831), + [anon_sym_short] = ACTIONS(2831), + [anon_sym_LBRACK] = ACTIONS(2831), + [anon_sym_static] = ACTIONS(2831), + [anon_sym_register] = ACTIONS(2831), + [anon_sym_inline] = ACTIONS(2831), + [anon_sym___inline] = ACTIONS(2831), + [anon_sym___inline__] = ACTIONS(2831), + [anon_sym___forceinline] = ACTIONS(2831), + [anon_sym_thread_local] = ACTIONS(2831), + [anon_sym___thread] = ACTIONS(2831), + [anon_sym_const] = ACTIONS(2831), + [anon_sym_constexpr] = ACTIONS(2831), + [anon_sym_volatile] = ACTIONS(2831), + [anon_sym_restrict] = ACTIONS(2831), + [anon_sym___restrict__] = ACTIONS(2831), + [anon_sym__Atomic] = ACTIONS(2831), + [anon_sym__Noreturn] = ACTIONS(2831), + [anon_sym_noreturn] = ACTIONS(2831), + [anon_sym__Nonnull] = ACTIONS(2831), + [anon_sym_mutable] = ACTIONS(2831), + [anon_sym_constinit] = ACTIONS(2831), + [anon_sym_consteval] = ACTIONS(2831), + [anon_sym_alignas] = ACTIONS(2831), + [anon_sym__Alignas] = ACTIONS(2831), + [sym_primitive_type] = ACTIONS(2831), + [anon_sym_enum] = ACTIONS(2831), + [anon_sym_class] = ACTIONS(2831), + [anon_sym_struct] = ACTIONS(2831), + [anon_sym_union] = ACTIONS(2831), + [anon_sym_if] = ACTIONS(2831), + [anon_sym_switch] = ACTIONS(2831), + [anon_sym_case] = ACTIONS(2831), + [anon_sym_default] = ACTIONS(2831), + [anon_sym_while] = ACTIONS(2831), + [anon_sym_do] = ACTIONS(2831), + [anon_sym_for] = ACTIONS(2831), + [anon_sym_return] = ACTIONS(2831), + [anon_sym_break] = ACTIONS(2831), + [anon_sym_continue] = ACTIONS(2831), + [anon_sym_goto] = ACTIONS(2831), + [anon_sym_not] = ACTIONS(2831), + [anon_sym_compl] = ACTIONS(2831), + [anon_sym_DASH_DASH] = ACTIONS(2833), + [anon_sym_PLUS_PLUS] = ACTIONS(2833), + [anon_sym_sizeof] = ACTIONS(2831), + [anon_sym___alignof__] = ACTIONS(2831), + [anon_sym___alignof] = ACTIONS(2831), + [anon_sym__alignof] = ACTIONS(2831), + [anon_sym_alignof] = ACTIONS(2831), + [anon_sym__Alignof] = ACTIONS(2831), + [anon_sym_offsetof] = ACTIONS(2831), + [anon_sym__Generic] = ACTIONS(2831), + [anon_sym_asm] = ACTIONS(2831), + [anon_sym___asm__] = ACTIONS(2831), + [anon_sym___asm] = ACTIONS(2831), + [sym_number_literal] = ACTIONS(2833), + [anon_sym_L_SQUOTE] = ACTIONS(2833), + [anon_sym_u_SQUOTE] = ACTIONS(2833), + [anon_sym_U_SQUOTE] = ACTIONS(2833), + [anon_sym_u8_SQUOTE] = ACTIONS(2833), + [anon_sym_SQUOTE] = ACTIONS(2833), + [anon_sym_L_DQUOTE] = ACTIONS(2833), + [anon_sym_u_DQUOTE] = ACTIONS(2833), + [anon_sym_U_DQUOTE] = ACTIONS(2833), + [anon_sym_u8_DQUOTE] = ACTIONS(2833), + [anon_sym_DQUOTE] = ACTIONS(2833), + [sym_true] = ACTIONS(2831), + [sym_false] = ACTIONS(2831), + [anon_sym_NULL] = ACTIONS(2831), + [anon_sym_nullptr] = ACTIONS(2831), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2647), - [anon_sym_decltype] = ACTIONS(2647), - [anon_sym_explicit] = ACTIONS(2647), - [anon_sym_typename] = ACTIONS(2647), - [anon_sym_template] = ACTIONS(2647), - [anon_sym_operator] = ACTIONS(2647), - [anon_sym_try] = ACTIONS(2647), - [anon_sym_delete] = ACTIONS(2647), - [anon_sym_throw] = ACTIONS(2647), - [anon_sym_namespace] = ACTIONS(2647), - [anon_sym_static_assert] = ACTIONS(2647), - [anon_sym_concept] = ACTIONS(2647), - [anon_sym_co_return] = ACTIONS(2647), - [anon_sym_co_yield] = ACTIONS(2647), - [anon_sym_R_DQUOTE] = ACTIONS(2649), - [anon_sym_LR_DQUOTE] = ACTIONS(2649), - [anon_sym_uR_DQUOTE] = ACTIONS(2649), - [anon_sym_UR_DQUOTE] = ACTIONS(2649), - [anon_sym_u8R_DQUOTE] = ACTIONS(2649), - [anon_sym_co_await] = ACTIONS(2647), - [anon_sym_new] = ACTIONS(2647), - [anon_sym_requires] = ACTIONS(2647), - [sym_this] = ACTIONS(2647), - }, - [555] = { - [ts_builtin_sym_end] = ACTIONS(3429), - [sym_identifier] = ACTIONS(3431), - [aux_sym_preproc_include_token1] = ACTIONS(3431), - [aux_sym_preproc_def_token1] = ACTIONS(3431), - [aux_sym_preproc_if_token1] = ACTIONS(3431), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3431), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3431), - [sym_preproc_directive] = ACTIONS(3431), - [anon_sym_LPAREN2] = ACTIONS(3429), - [anon_sym_BANG] = ACTIONS(3429), - [anon_sym_TILDE] = ACTIONS(3429), - [anon_sym_DASH] = ACTIONS(3431), - [anon_sym_PLUS] = ACTIONS(3431), - [anon_sym_STAR] = ACTIONS(3429), - [anon_sym_AMP_AMP] = ACTIONS(3429), - [anon_sym_AMP] = ACTIONS(3431), - [anon_sym_SEMI] = ACTIONS(3429), - [anon_sym___extension__] = ACTIONS(3431), - [anon_sym_typedef] = ACTIONS(3431), - [anon_sym_virtual] = ACTIONS(3431), - [anon_sym_extern] = ACTIONS(3431), - [anon_sym___attribute__] = ACTIONS(3431), - [anon_sym___attribute] = ACTIONS(3431), - [anon_sym_using] = ACTIONS(3431), - [anon_sym_COLON_COLON] = ACTIONS(3429), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3429), - [anon_sym___declspec] = ACTIONS(3431), - [anon_sym___based] = ACTIONS(3431), - [anon_sym___cdecl] = ACTIONS(3431), - [anon_sym___clrcall] = ACTIONS(3431), - [anon_sym___stdcall] = ACTIONS(3431), - [anon_sym___fastcall] = ACTIONS(3431), - [anon_sym___thiscall] = ACTIONS(3431), - [anon_sym___vectorcall] = ACTIONS(3431), - [anon_sym_LBRACE] = ACTIONS(3429), - [anon_sym_signed] = ACTIONS(3431), - [anon_sym_unsigned] = ACTIONS(3431), - [anon_sym_long] = ACTIONS(3431), - [anon_sym_short] = ACTIONS(3431), - [anon_sym_LBRACK] = ACTIONS(3431), - [anon_sym_static] = ACTIONS(3431), - [anon_sym_register] = ACTIONS(3431), - [anon_sym_inline] = ACTIONS(3431), - [anon_sym___inline] = ACTIONS(3431), - [anon_sym___inline__] = ACTIONS(3431), - [anon_sym___forceinline] = ACTIONS(3431), - [anon_sym_thread_local] = ACTIONS(3431), - [anon_sym___thread] = ACTIONS(3431), - [anon_sym_const] = ACTIONS(3431), - [anon_sym_constexpr] = ACTIONS(3431), - [anon_sym_volatile] = ACTIONS(3431), - [anon_sym_restrict] = ACTIONS(3431), - [anon_sym___restrict__] = ACTIONS(3431), - [anon_sym__Atomic] = ACTIONS(3431), - [anon_sym__Noreturn] = ACTIONS(3431), - [anon_sym_noreturn] = ACTIONS(3431), - [anon_sym__Nonnull] = ACTIONS(3431), - [anon_sym_mutable] = ACTIONS(3431), - [anon_sym_constinit] = ACTIONS(3431), - [anon_sym_consteval] = ACTIONS(3431), - [anon_sym_alignas] = ACTIONS(3431), - [anon_sym__Alignas] = ACTIONS(3431), - [sym_primitive_type] = ACTIONS(3431), - [anon_sym_enum] = ACTIONS(3431), - [anon_sym_class] = ACTIONS(3431), - [anon_sym_struct] = ACTIONS(3431), - [anon_sym_union] = ACTIONS(3431), - [anon_sym_if] = ACTIONS(3431), - [anon_sym_switch] = ACTIONS(3431), - [anon_sym_case] = ACTIONS(3431), - [anon_sym_default] = ACTIONS(3431), - [anon_sym_while] = ACTIONS(3431), - [anon_sym_do] = ACTIONS(3431), - [anon_sym_for] = ACTIONS(3431), - [anon_sym_return] = ACTIONS(3431), - [anon_sym_break] = ACTIONS(3431), - [anon_sym_continue] = ACTIONS(3431), - [anon_sym_goto] = ACTIONS(3431), - [anon_sym_not] = ACTIONS(3431), - [anon_sym_compl] = ACTIONS(3431), - [anon_sym_DASH_DASH] = ACTIONS(3429), - [anon_sym_PLUS_PLUS] = ACTIONS(3429), - [anon_sym_sizeof] = ACTIONS(3431), - [anon_sym___alignof__] = ACTIONS(3431), - [anon_sym___alignof] = ACTIONS(3431), - [anon_sym__alignof] = ACTIONS(3431), - [anon_sym_alignof] = ACTIONS(3431), - [anon_sym__Alignof] = ACTIONS(3431), - [anon_sym_offsetof] = ACTIONS(3431), - [anon_sym__Generic] = ACTIONS(3431), - [anon_sym_asm] = ACTIONS(3431), - [anon_sym___asm__] = ACTIONS(3431), - [anon_sym___asm] = ACTIONS(3431), - [sym_number_literal] = ACTIONS(3429), - [anon_sym_L_SQUOTE] = ACTIONS(3429), - [anon_sym_u_SQUOTE] = ACTIONS(3429), - [anon_sym_U_SQUOTE] = ACTIONS(3429), - [anon_sym_u8_SQUOTE] = ACTIONS(3429), - [anon_sym_SQUOTE] = ACTIONS(3429), - [anon_sym_L_DQUOTE] = ACTIONS(3429), - [anon_sym_u_DQUOTE] = ACTIONS(3429), - [anon_sym_U_DQUOTE] = ACTIONS(3429), - [anon_sym_u8_DQUOTE] = ACTIONS(3429), - [anon_sym_DQUOTE] = ACTIONS(3429), - [sym_true] = ACTIONS(3431), - [sym_false] = ACTIONS(3431), - [anon_sym_NULL] = ACTIONS(3431), - [anon_sym_nullptr] = ACTIONS(3431), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3431), - [anon_sym_decltype] = ACTIONS(3431), - [anon_sym_explicit] = ACTIONS(3431), - [anon_sym_typename] = ACTIONS(3431), - [anon_sym_export] = ACTIONS(3431), - [anon_sym_module] = ACTIONS(3431), - [anon_sym_import] = ACTIONS(3431), - [anon_sym_template] = ACTIONS(3431), - [anon_sym_operator] = ACTIONS(3431), - [anon_sym_try] = ACTIONS(3431), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_throw] = ACTIONS(3431), - [anon_sym_namespace] = ACTIONS(3431), - [anon_sym_static_assert] = ACTIONS(3431), - [anon_sym_concept] = ACTIONS(3431), - [anon_sym_co_return] = ACTIONS(3431), - [anon_sym_co_yield] = ACTIONS(3431), - [anon_sym_R_DQUOTE] = ACTIONS(3429), - [anon_sym_LR_DQUOTE] = ACTIONS(3429), - [anon_sym_uR_DQUOTE] = ACTIONS(3429), - [anon_sym_UR_DQUOTE] = ACTIONS(3429), - [anon_sym_u8R_DQUOTE] = ACTIONS(3429), - [anon_sym_co_await] = ACTIONS(3431), - [anon_sym_new] = ACTIONS(3431), - [anon_sym_requires] = ACTIONS(3431), - [sym_this] = ACTIONS(3431), - }, - [556] = { - [sym_identifier] = ACTIONS(2673), - [aux_sym_preproc_include_token1] = ACTIONS(2673), - [aux_sym_preproc_def_token1] = ACTIONS(2673), - [aux_sym_preproc_if_token1] = ACTIONS(2673), - [aux_sym_preproc_if_token2] = ACTIONS(2673), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2673), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2673), - [sym_preproc_directive] = ACTIONS(2673), - [anon_sym_LPAREN2] = ACTIONS(2675), - [anon_sym_BANG] = ACTIONS(2675), - [anon_sym_TILDE] = ACTIONS(2675), - [anon_sym_DASH] = ACTIONS(2673), - [anon_sym_PLUS] = ACTIONS(2673), - [anon_sym_STAR] = ACTIONS(2675), - [anon_sym_AMP_AMP] = ACTIONS(2675), - [anon_sym_AMP] = ACTIONS(2673), - [anon_sym_SEMI] = ACTIONS(2675), - [anon_sym___extension__] = ACTIONS(2673), - [anon_sym_typedef] = ACTIONS(2673), - [anon_sym_virtual] = ACTIONS(2673), - [anon_sym_extern] = ACTIONS(2673), - [anon_sym___attribute__] = ACTIONS(2673), - [anon_sym___attribute] = ACTIONS(2673), - [anon_sym_using] = ACTIONS(2673), - [anon_sym_COLON_COLON] = ACTIONS(2675), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2675), - [anon_sym___declspec] = ACTIONS(2673), - [anon_sym___based] = ACTIONS(2673), - [anon_sym___cdecl] = ACTIONS(2673), - [anon_sym___clrcall] = ACTIONS(2673), - [anon_sym___stdcall] = ACTIONS(2673), - [anon_sym___fastcall] = ACTIONS(2673), - [anon_sym___thiscall] = ACTIONS(2673), - [anon_sym___vectorcall] = ACTIONS(2673), - [anon_sym_LBRACE] = ACTIONS(2675), - [anon_sym_signed] = ACTIONS(2673), - [anon_sym_unsigned] = ACTIONS(2673), - [anon_sym_long] = ACTIONS(2673), - [anon_sym_short] = ACTIONS(2673), - [anon_sym_LBRACK] = ACTIONS(2673), - [anon_sym_static] = ACTIONS(2673), - [anon_sym_register] = ACTIONS(2673), - [anon_sym_inline] = ACTIONS(2673), - [anon_sym___inline] = ACTIONS(2673), - [anon_sym___inline__] = ACTIONS(2673), - [anon_sym___forceinline] = ACTIONS(2673), - [anon_sym_thread_local] = ACTIONS(2673), - [anon_sym___thread] = ACTIONS(2673), - [anon_sym_const] = ACTIONS(2673), - [anon_sym_constexpr] = ACTIONS(2673), - [anon_sym_volatile] = ACTIONS(2673), - [anon_sym_restrict] = ACTIONS(2673), - [anon_sym___restrict__] = ACTIONS(2673), - [anon_sym__Atomic] = ACTIONS(2673), - [anon_sym__Noreturn] = ACTIONS(2673), - [anon_sym_noreturn] = ACTIONS(2673), - [anon_sym__Nonnull] = ACTIONS(2673), - [anon_sym_mutable] = ACTIONS(2673), - [anon_sym_constinit] = ACTIONS(2673), - [anon_sym_consteval] = ACTIONS(2673), - [anon_sym_alignas] = ACTIONS(2673), - [anon_sym__Alignas] = ACTIONS(2673), - [sym_primitive_type] = ACTIONS(2673), - [anon_sym_enum] = ACTIONS(2673), - [anon_sym_class] = ACTIONS(2673), - [anon_sym_struct] = ACTIONS(2673), - [anon_sym_union] = ACTIONS(2673), - [anon_sym_if] = ACTIONS(2673), - [anon_sym_else] = ACTIONS(2673), - [anon_sym_switch] = ACTIONS(2673), - [anon_sym_case] = ACTIONS(2673), - [anon_sym_default] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2673), - [anon_sym_do] = ACTIONS(2673), - [anon_sym_for] = ACTIONS(2673), - [anon_sym_return] = ACTIONS(2673), - [anon_sym_break] = ACTIONS(2673), - [anon_sym_continue] = ACTIONS(2673), - [anon_sym_goto] = ACTIONS(2673), - [anon_sym___try] = ACTIONS(2673), - [anon_sym___leave] = ACTIONS(2673), - [anon_sym_not] = ACTIONS(2673), - [anon_sym_compl] = ACTIONS(2673), - [anon_sym_DASH_DASH] = ACTIONS(2675), - [anon_sym_PLUS_PLUS] = ACTIONS(2675), - [anon_sym_sizeof] = ACTIONS(2673), - [anon_sym___alignof__] = ACTIONS(2673), - [anon_sym___alignof] = ACTIONS(2673), - [anon_sym__alignof] = ACTIONS(2673), - [anon_sym_alignof] = ACTIONS(2673), - [anon_sym__Alignof] = ACTIONS(2673), - [anon_sym_offsetof] = ACTIONS(2673), - [anon_sym__Generic] = ACTIONS(2673), - [anon_sym_asm] = ACTIONS(2673), - [anon_sym___asm__] = ACTIONS(2673), - [anon_sym___asm] = ACTIONS(2673), - [sym_number_literal] = ACTIONS(2675), - [anon_sym_L_SQUOTE] = ACTIONS(2675), - [anon_sym_u_SQUOTE] = ACTIONS(2675), - [anon_sym_U_SQUOTE] = ACTIONS(2675), - [anon_sym_u8_SQUOTE] = ACTIONS(2675), - [anon_sym_SQUOTE] = ACTIONS(2675), - [anon_sym_L_DQUOTE] = ACTIONS(2675), - [anon_sym_u_DQUOTE] = ACTIONS(2675), - [anon_sym_U_DQUOTE] = ACTIONS(2675), - [anon_sym_u8_DQUOTE] = ACTIONS(2675), - [anon_sym_DQUOTE] = ACTIONS(2675), - [sym_true] = ACTIONS(2673), - [sym_false] = ACTIONS(2673), - [anon_sym_NULL] = ACTIONS(2673), - [anon_sym_nullptr] = ACTIONS(2673), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2673), - [anon_sym_decltype] = ACTIONS(2673), - [anon_sym_explicit] = ACTIONS(2673), - [anon_sym_typename] = ACTIONS(2673), - [anon_sym_template] = ACTIONS(2673), - [anon_sym_operator] = ACTIONS(2673), - [anon_sym_try] = ACTIONS(2673), - [anon_sym_delete] = ACTIONS(2673), - [anon_sym_throw] = ACTIONS(2673), - [anon_sym_namespace] = ACTIONS(2673), - [anon_sym_static_assert] = ACTIONS(2673), - [anon_sym_concept] = ACTIONS(2673), - [anon_sym_co_return] = ACTIONS(2673), - [anon_sym_co_yield] = ACTIONS(2673), - [anon_sym_R_DQUOTE] = ACTIONS(2675), - [anon_sym_LR_DQUOTE] = ACTIONS(2675), - [anon_sym_uR_DQUOTE] = ACTIONS(2675), - [anon_sym_UR_DQUOTE] = ACTIONS(2675), - [anon_sym_u8R_DQUOTE] = ACTIONS(2675), - [anon_sym_co_await] = ACTIONS(2673), - [anon_sym_new] = ACTIONS(2673), - [anon_sym_requires] = ACTIONS(2673), - [sym_this] = ACTIONS(2673), + [sym_auto] = ACTIONS(2831), + [anon_sym_decltype] = ACTIONS(2831), + [anon_sym_explicit] = ACTIONS(2831), + [anon_sym_typename] = ACTIONS(2831), + [anon_sym_export] = ACTIONS(2831), + [anon_sym_module] = ACTIONS(2831), + [anon_sym_import] = ACTIONS(2831), + [anon_sym_template] = ACTIONS(2831), + [anon_sym_operator] = ACTIONS(2831), + [anon_sym_try] = ACTIONS(2831), + [anon_sym_delete] = ACTIONS(2831), + [anon_sym_throw] = ACTIONS(2831), + [anon_sym_namespace] = ACTIONS(2831), + [anon_sym_static_assert] = ACTIONS(2831), + [anon_sym_concept] = ACTIONS(2831), + [anon_sym_co_return] = ACTIONS(2831), + [anon_sym_co_yield] = ACTIONS(2831), + [anon_sym_R_DQUOTE] = ACTIONS(2833), + [anon_sym_LR_DQUOTE] = ACTIONS(2833), + [anon_sym_uR_DQUOTE] = ACTIONS(2833), + [anon_sym_UR_DQUOTE] = ACTIONS(2833), + [anon_sym_u8R_DQUOTE] = ACTIONS(2833), + [anon_sym_co_await] = ACTIONS(2831), + [anon_sym_new] = ACTIONS(2831), + [anon_sym_requires] = ACTIONS(2831), + [sym_this] = ACTIONS(2831), }, - [557] = { - [ts_builtin_sym_end] = ACTIONS(3433), - [sym_identifier] = ACTIONS(3435), - [aux_sym_preproc_include_token1] = ACTIONS(3435), - [aux_sym_preproc_def_token1] = ACTIONS(3435), - [aux_sym_preproc_if_token1] = ACTIONS(3435), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3435), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3435), - [sym_preproc_directive] = ACTIONS(3435), - [anon_sym_LPAREN2] = ACTIONS(3433), - [anon_sym_BANG] = ACTIONS(3433), - [anon_sym_TILDE] = ACTIONS(3433), - [anon_sym_DASH] = ACTIONS(3435), - [anon_sym_PLUS] = ACTIONS(3435), - [anon_sym_STAR] = ACTIONS(3433), - [anon_sym_AMP_AMP] = ACTIONS(3433), - [anon_sym_AMP] = ACTIONS(3435), - [anon_sym_SEMI] = ACTIONS(3433), - [anon_sym___extension__] = ACTIONS(3435), - [anon_sym_typedef] = ACTIONS(3435), - [anon_sym_virtual] = ACTIONS(3435), - [anon_sym_extern] = ACTIONS(3435), - [anon_sym___attribute__] = ACTIONS(3435), - [anon_sym___attribute] = ACTIONS(3435), - [anon_sym_using] = ACTIONS(3435), - [anon_sym_COLON_COLON] = ACTIONS(3433), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3433), - [anon_sym___declspec] = ACTIONS(3435), - [anon_sym___based] = ACTIONS(3435), - [anon_sym___cdecl] = ACTIONS(3435), - [anon_sym___clrcall] = ACTIONS(3435), - [anon_sym___stdcall] = ACTIONS(3435), - [anon_sym___fastcall] = ACTIONS(3435), - [anon_sym___thiscall] = ACTIONS(3435), - [anon_sym___vectorcall] = ACTIONS(3435), - [anon_sym_LBRACE] = ACTIONS(3433), - [anon_sym_signed] = ACTIONS(3435), - [anon_sym_unsigned] = ACTIONS(3435), - [anon_sym_long] = ACTIONS(3435), - [anon_sym_short] = ACTIONS(3435), - [anon_sym_LBRACK] = ACTIONS(3435), - [anon_sym_static] = ACTIONS(3435), - [anon_sym_register] = ACTIONS(3435), - [anon_sym_inline] = ACTIONS(3435), - [anon_sym___inline] = ACTIONS(3435), - [anon_sym___inline__] = ACTIONS(3435), - [anon_sym___forceinline] = ACTIONS(3435), - [anon_sym_thread_local] = ACTIONS(3435), - [anon_sym___thread] = ACTIONS(3435), - [anon_sym_const] = ACTIONS(3435), - [anon_sym_constexpr] = ACTIONS(3435), - [anon_sym_volatile] = ACTIONS(3435), - [anon_sym_restrict] = ACTIONS(3435), - [anon_sym___restrict__] = ACTIONS(3435), - [anon_sym__Atomic] = ACTIONS(3435), - [anon_sym__Noreturn] = ACTIONS(3435), - [anon_sym_noreturn] = ACTIONS(3435), - [anon_sym__Nonnull] = ACTIONS(3435), - [anon_sym_mutable] = ACTIONS(3435), - [anon_sym_constinit] = ACTIONS(3435), - [anon_sym_consteval] = ACTIONS(3435), - [anon_sym_alignas] = ACTIONS(3435), - [anon_sym__Alignas] = ACTIONS(3435), - [sym_primitive_type] = ACTIONS(3435), - [anon_sym_enum] = ACTIONS(3435), - [anon_sym_class] = ACTIONS(3435), - [anon_sym_struct] = ACTIONS(3435), - [anon_sym_union] = ACTIONS(3435), - [anon_sym_if] = ACTIONS(3435), - [anon_sym_switch] = ACTIONS(3435), - [anon_sym_case] = ACTIONS(3435), - [anon_sym_default] = ACTIONS(3435), - [anon_sym_while] = ACTIONS(3435), - [anon_sym_do] = ACTIONS(3435), - [anon_sym_for] = ACTIONS(3435), - [anon_sym_return] = ACTIONS(3435), - [anon_sym_break] = ACTIONS(3435), - [anon_sym_continue] = ACTIONS(3435), - [anon_sym_goto] = ACTIONS(3435), - [anon_sym_not] = ACTIONS(3435), - [anon_sym_compl] = ACTIONS(3435), - [anon_sym_DASH_DASH] = ACTIONS(3433), - [anon_sym_PLUS_PLUS] = ACTIONS(3433), - [anon_sym_sizeof] = ACTIONS(3435), - [anon_sym___alignof__] = ACTIONS(3435), - [anon_sym___alignof] = ACTIONS(3435), - [anon_sym__alignof] = ACTIONS(3435), - [anon_sym_alignof] = ACTIONS(3435), - [anon_sym__Alignof] = ACTIONS(3435), - [anon_sym_offsetof] = ACTIONS(3435), - [anon_sym__Generic] = ACTIONS(3435), - [anon_sym_asm] = ACTIONS(3435), - [anon_sym___asm__] = ACTIONS(3435), - [anon_sym___asm] = ACTIONS(3435), - [sym_number_literal] = ACTIONS(3433), - [anon_sym_L_SQUOTE] = ACTIONS(3433), - [anon_sym_u_SQUOTE] = ACTIONS(3433), - [anon_sym_U_SQUOTE] = ACTIONS(3433), - [anon_sym_u8_SQUOTE] = ACTIONS(3433), - [anon_sym_SQUOTE] = ACTIONS(3433), - [anon_sym_L_DQUOTE] = ACTIONS(3433), - [anon_sym_u_DQUOTE] = ACTIONS(3433), - [anon_sym_U_DQUOTE] = ACTIONS(3433), - [anon_sym_u8_DQUOTE] = ACTIONS(3433), - [anon_sym_DQUOTE] = ACTIONS(3433), - [sym_true] = ACTIONS(3435), - [sym_false] = ACTIONS(3435), - [anon_sym_NULL] = ACTIONS(3435), - [anon_sym_nullptr] = ACTIONS(3435), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3435), - [anon_sym_decltype] = ACTIONS(3435), - [anon_sym_explicit] = ACTIONS(3435), - [anon_sym_typename] = ACTIONS(3435), - [anon_sym_export] = ACTIONS(3435), - [anon_sym_module] = ACTIONS(3435), - [anon_sym_import] = ACTIONS(3435), - [anon_sym_template] = ACTIONS(3435), - [anon_sym_operator] = ACTIONS(3435), - [anon_sym_try] = ACTIONS(3435), - [anon_sym_delete] = ACTIONS(3435), - [anon_sym_throw] = ACTIONS(3435), - [anon_sym_namespace] = ACTIONS(3435), - [anon_sym_static_assert] = ACTIONS(3435), - [anon_sym_concept] = ACTIONS(3435), - [anon_sym_co_return] = ACTIONS(3435), - [anon_sym_co_yield] = ACTIONS(3435), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3435), - [anon_sym_requires] = ACTIONS(3435), - [sym_this] = ACTIONS(3435), + [566] = { + [sym_identifier] = ACTIONS(2683), + [aux_sym_preproc_include_token1] = ACTIONS(2683), + [aux_sym_preproc_def_token1] = ACTIONS(2683), + [aux_sym_preproc_if_token1] = ACTIONS(2683), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2683), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2683), + [sym_preproc_directive] = ACTIONS(2683), + [anon_sym_LPAREN2] = ACTIONS(2685), + [anon_sym_BANG] = ACTIONS(2685), + [anon_sym_TILDE] = ACTIONS(2685), + [anon_sym_DASH] = ACTIONS(2683), + [anon_sym_PLUS] = ACTIONS(2683), + [anon_sym_STAR] = ACTIONS(2685), + [anon_sym_AMP_AMP] = ACTIONS(2685), + [anon_sym_AMP] = ACTIONS(2683), + [anon_sym_SEMI] = ACTIONS(2685), + [anon_sym___extension__] = ACTIONS(2683), + [anon_sym_typedef] = ACTIONS(2683), + [anon_sym_virtual] = ACTIONS(2683), + [anon_sym_extern] = ACTIONS(2683), + [anon_sym___attribute__] = ACTIONS(2683), + [anon_sym___attribute] = ACTIONS(2683), + [anon_sym_using] = ACTIONS(2683), + [anon_sym_COLON_COLON] = ACTIONS(2685), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2685), + [anon_sym___declspec] = ACTIONS(2683), + [anon_sym___based] = ACTIONS(2683), + [anon_sym___cdecl] = ACTIONS(2683), + [anon_sym___clrcall] = ACTIONS(2683), + [anon_sym___stdcall] = ACTIONS(2683), + [anon_sym___fastcall] = ACTIONS(2683), + [anon_sym___thiscall] = ACTIONS(2683), + [anon_sym___vectorcall] = ACTIONS(2683), + [anon_sym_LBRACE] = ACTIONS(2685), + [anon_sym_RBRACE] = ACTIONS(2685), + [anon_sym_signed] = ACTIONS(2683), + [anon_sym_unsigned] = ACTIONS(2683), + [anon_sym_long] = ACTIONS(2683), + [anon_sym_short] = ACTIONS(2683), + [anon_sym_LBRACK] = ACTIONS(2683), + [anon_sym_static] = ACTIONS(2683), + [anon_sym_register] = ACTIONS(2683), + [anon_sym_inline] = ACTIONS(2683), + [anon_sym___inline] = ACTIONS(2683), + [anon_sym___inline__] = ACTIONS(2683), + [anon_sym___forceinline] = ACTIONS(2683), + [anon_sym_thread_local] = ACTIONS(2683), + [anon_sym___thread] = ACTIONS(2683), + [anon_sym_const] = ACTIONS(2683), + [anon_sym_constexpr] = ACTIONS(2683), + [anon_sym_volatile] = ACTIONS(2683), + [anon_sym_restrict] = ACTIONS(2683), + [anon_sym___restrict__] = ACTIONS(2683), + [anon_sym__Atomic] = ACTIONS(2683), + [anon_sym__Noreturn] = ACTIONS(2683), + [anon_sym_noreturn] = ACTIONS(2683), + [anon_sym__Nonnull] = ACTIONS(2683), + [anon_sym_mutable] = ACTIONS(2683), + [anon_sym_constinit] = ACTIONS(2683), + [anon_sym_consteval] = ACTIONS(2683), + [anon_sym_alignas] = ACTIONS(2683), + [anon_sym__Alignas] = ACTIONS(2683), + [sym_primitive_type] = ACTIONS(2683), + [anon_sym_enum] = ACTIONS(2683), + [anon_sym_class] = ACTIONS(2683), + [anon_sym_struct] = ACTIONS(2683), + [anon_sym_union] = ACTIONS(2683), + [anon_sym_if] = ACTIONS(2683), + [anon_sym_else] = ACTIONS(2683), + [anon_sym_switch] = ACTIONS(2683), + [anon_sym_case] = ACTIONS(2683), + [anon_sym_default] = ACTIONS(2683), + [anon_sym_while] = ACTIONS(2683), + [anon_sym_do] = ACTIONS(2683), + [anon_sym_for] = ACTIONS(2683), + [anon_sym_return] = ACTIONS(2683), + [anon_sym_break] = ACTIONS(2683), + [anon_sym_continue] = ACTIONS(2683), + [anon_sym_goto] = ACTIONS(2683), + [anon_sym___try] = ACTIONS(2683), + [anon_sym___leave] = ACTIONS(2683), + [anon_sym_not] = ACTIONS(2683), + [anon_sym_compl] = ACTIONS(2683), + [anon_sym_DASH_DASH] = ACTIONS(2685), + [anon_sym_PLUS_PLUS] = ACTIONS(2685), + [anon_sym_sizeof] = ACTIONS(2683), + [anon_sym___alignof__] = ACTIONS(2683), + [anon_sym___alignof] = ACTIONS(2683), + [anon_sym__alignof] = ACTIONS(2683), + [anon_sym_alignof] = ACTIONS(2683), + [anon_sym__Alignof] = ACTIONS(2683), + [anon_sym_offsetof] = ACTIONS(2683), + [anon_sym__Generic] = ACTIONS(2683), + [anon_sym_asm] = ACTIONS(2683), + [anon_sym___asm__] = ACTIONS(2683), + [anon_sym___asm] = ACTIONS(2683), + [sym_number_literal] = ACTIONS(2685), + [anon_sym_L_SQUOTE] = ACTIONS(2685), + [anon_sym_u_SQUOTE] = ACTIONS(2685), + [anon_sym_U_SQUOTE] = ACTIONS(2685), + [anon_sym_u8_SQUOTE] = ACTIONS(2685), + [anon_sym_SQUOTE] = ACTIONS(2685), + [anon_sym_L_DQUOTE] = ACTIONS(2685), + [anon_sym_u_DQUOTE] = ACTIONS(2685), + [anon_sym_U_DQUOTE] = ACTIONS(2685), + [anon_sym_u8_DQUOTE] = ACTIONS(2685), + [anon_sym_DQUOTE] = ACTIONS(2685), + [sym_true] = ACTIONS(2683), + [sym_false] = ACTIONS(2683), + [anon_sym_NULL] = ACTIONS(2683), + [anon_sym_nullptr] = ACTIONS(2683), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2683), + [anon_sym_decltype] = ACTIONS(2683), + [anon_sym_explicit] = ACTIONS(2683), + [anon_sym_typename] = ACTIONS(2683), + [anon_sym_template] = ACTIONS(2683), + [anon_sym_operator] = ACTIONS(2683), + [anon_sym_try] = ACTIONS(2683), + [anon_sym_delete] = ACTIONS(2683), + [anon_sym_throw] = ACTIONS(2683), + [anon_sym_namespace] = ACTIONS(2683), + [anon_sym_static_assert] = ACTIONS(2683), + [anon_sym_concept] = ACTIONS(2683), + [anon_sym_co_return] = ACTIONS(2683), + [anon_sym_co_yield] = ACTIONS(2683), + [anon_sym_R_DQUOTE] = ACTIONS(2685), + [anon_sym_LR_DQUOTE] = ACTIONS(2685), + [anon_sym_uR_DQUOTE] = ACTIONS(2685), + [anon_sym_UR_DQUOTE] = ACTIONS(2685), + [anon_sym_u8R_DQUOTE] = ACTIONS(2685), + [anon_sym_co_await] = ACTIONS(2683), + [anon_sym_new] = ACTIONS(2683), + [anon_sym_requires] = ACTIONS(2683), + [sym_this] = ACTIONS(2683), }, - [558] = { - [sym_identifier] = ACTIONS(2731), - [aux_sym_preproc_include_token1] = ACTIONS(2731), - [aux_sym_preproc_def_token1] = ACTIONS(2731), - [aux_sym_preproc_if_token1] = ACTIONS(2731), - [aux_sym_preproc_if_token2] = ACTIONS(2731), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2731), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2731), - [sym_preproc_directive] = ACTIONS(2731), - [anon_sym_LPAREN2] = ACTIONS(2733), - [anon_sym_BANG] = ACTIONS(2733), - [anon_sym_TILDE] = ACTIONS(2733), - [anon_sym_DASH] = ACTIONS(2731), - [anon_sym_PLUS] = ACTIONS(2731), - [anon_sym_STAR] = ACTIONS(2733), - [anon_sym_AMP_AMP] = ACTIONS(2733), - [anon_sym_AMP] = ACTIONS(2731), - [anon_sym_SEMI] = ACTIONS(2733), - [anon_sym___extension__] = ACTIONS(2731), - [anon_sym_typedef] = ACTIONS(2731), - [anon_sym_virtual] = ACTIONS(2731), - [anon_sym_extern] = ACTIONS(2731), - [anon_sym___attribute__] = ACTIONS(2731), - [anon_sym___attribute] = ACTIONS(2731), - [anon_sym_using] = ACTIONS(2731), - [anon_sym_COLON_COLON] = ACTIONS(2733), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2733), - [anon_sym___declspec] = ACTIONS(2731), - [anon_sym___based] = ACTIONS(2731), - [anon_sym___cdecl] = ACTIONS(2731), - [anon_sym___clrcall] = ACTIONS(2731), - [anon_sym___stdcall] = ACTIONS(2731), - [anon_sym___fastcall] = ACTIONS(2731), - [anon_sym___thiscall] = ACTIONS(2731), - [anon_sym___vectorcall] = ACTIONS(2731), - [anon_sym_LBRACE] = ACTIONS(2733), - [anon_sym_signed] = ACTIONS(2731), - [anon_sym_unsigned] = ACTIONS(2731), - [anon_sym_long] = ACTIONS(2731), - [anon_sym_short] = ACTIONS(2731), - [anon_sym_LBRACK] = ACTIONS(2731), - [anon_sym_static] = ACTIONS(2731), - [anon_sym_register] = ACTIONS(2731), - [anon_sym_inline] = ACTIONS(2731), - [anon_sym___inline] = ACTIONS(2731), - [anon_sym___inline__] = ACTIONS(2731), - [anon_sym___forceinline] = ACTIONS(2731), - [anon_sym_thread_local] = ACTIONS(2731), - [anon_sym___thread] = ACTIONS(2731), - [anon_sym_const] = ACTIONS(2731), - [anon_sym_constexpr] = ACTIONS(2731), - [anon_sym_volatile] = ACTIONS(2731), - [anon_sym_restrict] = ACTIONS(2731), - [anon_sym___restrict__] = ACTIONS(2731), - [anon_sym__Atomic] = ACTIONS(2731), - [anon_sym__Noreturn] = ACTIONS(2731), - [anon_sym_noreturn] = ACTIONS(2731), - [anon_sym__Nonnull] = ACTIONS(2731), - [anon_sym_mutable] = ACTIONS(2731), - [anon_sym_constinit] = ACTIONS(2731), - [anon_sym_consteval] = ACTIONS(2731), - [anon_sym_alignas] = ACTIONS(2731), - [anon_sym__Alignas] = ACTIONS(2731), - [sym_primitive_type] = ACTIONS(2731), - [anon_sym_enum] = ACTIONS(2731), - [anon_sym_class] = ACTIONS(2731), - [anon_sym_struct] = ACTIONS(2731), - [anon_sym_union] = ACTIONS(2731), - [anon_sym_if] = ACTIONS(2731), - [anon_sym_else] = ACTIONS(2731), - [anon_sym_switch] = ACTIONS(2731), - [anon_sym_case] = ACTIONS(2731), - [anon_sym_default] = ACTIONS(2731), - [anon_sym_while] = ACTIONS(2731), - [anon_sym_do] = ACTIONS(2731), - [anon_sym_for] = ACTIONS(2731), - [anon_sym_return] = ACTIONS(2731), - [anon_sym_break] = ACTIONS(2731), - [anon_sym_continue] = ACTIONS(2731), - [anon_sym_goto] = ACTIONS(2731), - [anon_sym___try] = ACTIONS(2731), - [anon_sym___leave] = ACTIONS(2731), - [anon_sym_not] = ACTIONS(2731), - [anon_sym_compl] = ACTIONS(2731), - [anon_sym_DASH_DASH] = ACTIONS(2733), - [anon_sym_PLUS_PLUS] = ACTIONS(2733), - [anon_sym_sizeof] = ACTIONS(2731), - [anon_sym___alignof__] = ACTIONS(2731), - [anon_sym___alignof] = ACTIONS(2731), - [anon_sym__alignof] = ACTIONS(2731), - [anon_sym_alignof] = ACTIONS(2731), - [anon_sym__Alignof] = ACTIONS(2731), - [anon_sym_offsetof] = ACTIONS(2731), - [anon_sym__Generic] = ACTIONS(2731), - [anon_sym_asm] = ACTIONS(2731), - [anon_sym___asm__] = ACTIONS(2731), - [anon_sym___asm] = ACTIONS(2731), - [sym_number_literal] = ACTIONS(2733), - [anon_sym_L_SQUOTE] = ACTIONS(2733), - [anon_sym_u_SQUOTE] = ACTIONS(2733), - [anon_sym_U_SQUOTE] = ACTIONS(2733), - [anon_sym_u8_SQUOTE] = ACTIONS(2733), - [anon_sym_SQUOTE] = ACTIONS(2733), - [anon_sym_L_DQUOTE] = ACTIONS(2733), - [anon_sym_u_DQUOTE] = ACTIONS(2733), - [anon_sym_U_DQUOTE] = ACTIONS(2733), - [anon_sym_u8_DQUOTE] = ACTIONS(2733), - [anon_sym_DQUOTE] = ACTIONS(2733), - [sym_true] = ACTIONS(2731), - [sym_false] = ACTIONS(2731), - [anon_sym_NULL] = ACTIONS(2731), - [anon_sym_nullptr] = ACTIONS(2731), + [567] = { + [sym_identifier] = ACTIONS(2699), + [aux_sym_preproc_include_token1] = ACTIONS(2699), + [aux_sym_preproc_def_token1] = ACTIONS(2699), + [aux_sym_preproc_if_token1] = ACTIONS(2699), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2699), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2699), + [sym_preproc_directive] = ACTIONS(2699), + [anon_sym_LPAREN2] = ACTIONS(2701), + [anon_sym_BANG] = ACTIONS(2701), + [anon_sym_TILDE] = ACTIONS(2701), + [anon_sym_DASH] = ACTIONS(2699), + [anon_sym_PLUS] = ACTIONS(2699), + [anon_sym_STAR] = ACTIONS(2701), + [anon_sym_AMP_AMP] = ACTIONS(2701), + [anon_sym_AMP] = ACTIONS(2699), + [anon_sym_SEMI] = ACTIONS(2701), + [anon_sym___extension__] = ACTIONS(2699), + [anon_sym_typedef] = ACTIONS(2699), + [anon_sym_virtual] = ACTIONS(2699), + [anon_sym_extern] = ACTIONS(2699), + [anon_sym___attribute__] = ACTIONS(2699), + [anon_sym___attribute] = ACTIONS(2699), + [anon_sym_using] = ACTIONS(2699), + [anon_sym_COLON_COLON] = ACTIONS(2701), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2701), + [anon_sym___declspec] = ACTIONS(2699), + [anon_sym___based] = ACTIONS(2699), + [anon_sym___cdecl] = ACTIONS(2699), + [anon_sym___clrcall] = ACTIONS(2699), + [anon_sym___stdcall] = ACTIONS(2699), + [anon_sym___fastcall] = ACTIONS(2699), + [anon_sym___thiscall] = ACTIONS(2699), + [anon_sym___vectorcall] = ACTIONS(2699), + [anon_sym_LBRACE] = ACTIONS(2701), + [anon_sym_RBRACE] = ACTIONS(2701), + [anon_sym_signed] = ACTIONS(2699), + [anon_sym_unsigned] = ACTIONS(2699), + [anon_sym_long] = ACTIONS(2699), + [anon_sym_short] = ACTIONS(2699), + [anon_sym_LBRACK] = ACTIONS(2699), + [anon_sym_static] = ACTIONS(2699), + [anon_sym_register] = ACTIONS(2699), + [anon_sym_inline] = ACTIONS(2699), + [anon_sym___inline] = ACTIONS(2699), + [anon_sym___inline__] = ACTIONS(2699), + [anon_sym___forceinline] = ACTIONS(2699), + [anon_sym_thread_local] = ACTIONS(2699), + [anon_sym___thread] = ACTIONS(2699), + [anon_sym_const] = ACTIONS(2699), + [anon_sym_constexpr] = ACTIONS(2699), + [anon_sym_volatile] = ACTIONS(2699), + [anon_sym_restrict] = ACTIONS(2699), + [anon_sym___restrict__] = ACTIONS(2699), + [anon_sym__Atomic] = ACTIONS(2699), + [anon_sym__Noreturn] = ACTIONS(2699), + [anon_sym_noreturn] = ACTIONS(2699), + [anon_sym__Nonnull] = ACTIONS(2699), + [anon_sym_mutable] = ACTIONS(2699), + [anon_sym_constinit] = ACTIONS(2699), + [anon_sym_consteval] = ACTIONS(2699), + [anon_sym_alignas] = ACTIONS(2699), + [anon_sym__Alignas] = ACTIONS(2699), + [sym_primitive_type] = ACTIONS(2699), + [anon_sym_enum] = ACTIONS(2699), + [anon_sym_class] = ACTIONS(2699), + [anon_sym_struct] = ACTIONS(2699), + [anon_sym_union] = ACTIONS(2699), + [anon_sym_if] = ACTIONS(2699), + [anon_sym_else] = ACTIONS(2699), + [anon_sym_switch] = ACTIONS(2699), + [anon_sym_case] = ACTIONS(2699), + [anon_sym_default] = ACTIONS(2699), + [anon_sym_while] = ACTIONS(2699), + [anon_sym_do] = ACTIONS(2699), + [anon_sym_for] = ACTIONS(2699), + [anon_sym_return] = ACTIONS(2699), + [anon_sym_break] = ACTIONS(2699), + [anon_sym_continue] = ACTIONS(2699), + [anon_sym_goto] = ACTIONS(2699), + [anon_sym___try] = ACTIONS(2699), + [anon_sym___leave] = ACTIONS(2699), + [anon_sym_not] = ACTIONS(2699), + [anon_sym_compl] = ACTIONS(2699), + [anon_sym_DASH_DASH] = ACTIONS(2701), + [anon_sym_PLUS_PLUS] = ACTIONS(2701), + [anon_sym_sizeof] = ACTIONS(2699), + [anon_sym___alignof__] = ACTIONS(2699), + [anon_sym___alignof] = ACTIONS(2699), + [anon_sym__alignof] = ACTIONS(2699), + [anon_sym_alignof] = ACTIONS(2699), + [anon_sym__Alignof] = ACTIONS(2699), + [anon_sym_offsetof] = ACTIONS(2699), + [anon_sym__Generic] = ACTIONS(2699), + [anon_sym_asm] = ACTIONS(2699), + [anon_sym___asm__] = ACTIONS(2699), + [anon_sym___asm] = ACTIONS(2699), + [sym_number_literal] = ACTIONS(2701), + [anon_sym_L_SQUOTE] = ACTIONS(2701), + [anon_sym_u_SQUOTE] = ACTIONS(2701), + [anon_sym_U_SQUOTE] = ACTIONS(2701), + [anon_sym_u8_SQUOTE] = ACTIONS(2701), + [anon_sym_SQUOTE] = ACTIONS(2701), + [anon_sym_L_DQUOTE] = ACTIONS(2701), + [anon_sym_u_DQUOTE] = ACTIONS(2701), + [anon_sym_U_DQUOTE] = ACTIONS(2701), + [anon_sym_u8_DQUOTE] = ACTIONS(2701), + [anon_sym_DQUOTE] = ACTIONS(2701), + [sym_true] = ACTIONS(2699), + [sym_false] = ACTIONS(2699), + [anon_sym_NULL] = ACTIONS(2699), + [anon_sym_nullptr] = ACTIONS(2699), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2731), - [anon_sym_decltype] = ACTIONS(2731), - [anon_sym_explicit] = ACTIONS(2731), - [anon_sym_typename] = ACTIONS(2731), - [anon_sym_template] = ACTIONS(2731), - [anon_sym_operator] = ACTIONS(2731), - [anon_sym_try] = ACTIONS(2731), - [anon_sym_delete] = ACTIONS(2731), - [anon_sym_throw] = ACTIONS(2731), - [anon_sym_namespace] = ACTIONS(2731), - [anon_sym_static_assert] = ACTIONS(2731), - [anon_sym_concept] = ACTIONS(2731), - [anon_sym_co_return] = ACTIONS(2731), - [anon_sym_co_yield] = ACTIONS(2731), - [anon_sym_R_DQUOTE] = ACTIONS(2733), - [anon_sym_LR_DQUOTE] = ACTIONS(2733), - [anon_sym_uR_DQUOTE] = ACTIONS(2733), - [anon_sym_UR_DQUOTE] = ACTIONS(2733), - [anon_sym_u8R_DQUOTE] = ACTIONS(2733), - [anon_sym_co_await] = ACTIONS(2731), - [anon_sym_new] = ACTIONS(2731), - [anon_sym_requires] = ACTIONS(2731), - [sym_this] = ACTIONS(2731), + [sym_auto] = ACTIONS(2699), + [anon_sym_decltype] = ACTIONS(2699), + [anon_sym_explicit] = ACTIONS(2699), + [anon_sym_typename] = ACTIONS(2699), + [anon_sym_template] = ACTIONS(2699), + [anon_sym_operator] = ACTIONS(2699), + [anon_sym_try] = ACTIONS(2699), + [anon_sym_delete] = ACTIONS(2699), + [anon_sym_throw] = ACTIONS(2699), + [anon_sym_namespace] = ACTIONS(2699), + [anon_sym_static_assert] = ACTIONS(2699), + [anon_sym_concept] = ACTIONS(2699), + [anon_sym_co_return] = ACTIONS(2699), + [anon_sym_co_yield] = ACTIONS(2699), + [anon_sym_R_DQUOTE] = ACTIONS(2701), + [anon_sym_LR_DQUOTE] = ACTIONS(2701), + [anon_sym_uR_DQUOTE] = ACTIONS(2701), + [anon_sym_UR_DQUOTE] = ACTIONS(2701), + [anon_sym_u8R_DQUOTE] = ACTIONS(2701), + [anon_sym_co_await] = ACTIONS(2699), + [anon_sym_new] = ACTIONS(2699), + [anon_sym_requires] = ACTIONS(2699), + [sym_this] = ACTIONS(2699), }, - [559] = { - [sym_identifier] = ACTIONS(1940), - [aux_sym_preproc_include_token1] = ACTIONS(1940), - [aux_sym_preproc_def_token1] = ACTIONS(1940), - [anon_sym_COMMA] = ACTIONS(2685), - [aux_sym_preproc_if_token1] = ACTIONS(1940), - [aux_sym_preproc_if_token2] = ACTIONS(1940), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1940), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1940), - [sym_preproc_directive] = ACTIONS(1940), - [anon_sym_LPAREN2] = ACTIONS(1938), - [anon_sym_BANG] = ACTIONS(1938), - [anon_sym_TILDE] = ACTIONS(1938), - [anon_sym_DASH] = ACTIONS(1940), - [anon_sym_PLUS] = ACTIONS(1940), - [anon_sym_STAR] = ACTIONS(1938), - [anon_sym_AMP_AMP] = ACTIONS(1938), - [anon_sym_AMP] = ACTIONS(1940), - [anon_sym_SEMI] = ACTIONS(2685), - [anon_sym___extension__] = ACTIONS(1940), - [anon_sym_typedef] = ACTIONS(1940), - [anon_sym_virtual] = ACTIONS(1940), - [anon_sym_extern] = ACTIONS(1940), - [anon_sym___attribute__] = ACTIONS(1940), - [anon_sym___attribute] = ACTIONS(1940), - [anon_sym_using] = ACTIONS(1940), - [anon_sym_COLON_COLON] = ACTIONS(1938), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1938), - [anon_sym___declspec] = ACTIONS(1940), - [anon_sym___based] = ACTIONS(1940), - [anon_sym___cdecl] = ACTIONS(1940), - [anon_sym___clrcall] = ACTIONS(1940), - [anon_sym___stdcall] = ACTIONS(1940), - [anon_sym___fastcall] = ACTIONS(1940), - [anon_sym___thiscall] = ACTIONS(1940), - [anon_sym___vectorcall] = ACTIONS(1940), - [anon_sym_LBRACE] = ACTIONS(1938), - [anon_sym_signed] = ACTIONS(1940), - [anon_sym_unsigned] = ACTIONS(1940), - [anon_sym_long] = ACTIONS(1940), - [anon_sym_short] = ACTIONS(1940), - [anon_sym_LBRACK] = ACTIONS(1940), - [anon_sym_static] = ACTIONS(1940), - [anon_sym_register] = ACTIONS(1940), - [anon_sym_inline] = ACTIONS(1940), - [anon_sym___inline] = ACTIONS(1940), - [anon_sym___inline__] = ACTIONS(1940), - [anon_sym___forceinline] = ACTIONS(1940), - [anon_sym_thread_local] = ACTIONS(1940), - [anon_sym___thread] = ACTIONS(1940), - [anon_sym_const] = ACTIONS(1940), - [anon_sym_constexpr] = ACTIONS(1940), - [anon_sym_volatile] = ACTIONS(1940), - [anon_sym_restrict] = ACTIONS(1940), - [anon_sym___restrict__] = ACTIONS(1940), - [anon_sym__Atomic] = ACTIONS(1940), - [anon_sym__Noreturn] = ACTIONS(1940), - [anon_sym_noreturn] = ACTIONS(1940), - [anon_sym__Nonnull] = ACTIONS(1940), - [anon_sym_mutable] = ACTIONS(1940), - [anon_sym_constinit] = ACTIONS(1940), - [anon_sym_consteval] = ACTIONS(1940), - [anon_sym_alignas] = ACTIONS(1940), - [anon_sym__Alignas] = ACTIONS(1940), - [sym_primitive_type] = ACTIONS(1940), - [anon_sym_enum] = ACTIONS(1940), - [anon_sym_class] = ACTIONS(1940), - [anon_sym_struct] = ACTIONS(1940), - [anon_sym_union] = ACTIONS(1940), - [anon_sym_if] = ACTIONS(1940), - [anon_sym_switch] = ACTIONS(1940), - [anon_sym_case] = ACTIONS(1940), - [anon_sym_default] = ACTIONS(1940), - [anon_sym_while] = ACTIONS(1940), - [anon_sym_do] = ACTIONS(1940), - [anon_sym_for] = ACTIONS(1940), - [anon_sym_return] = ACTIONS(1940), - [anon_sym_break] = ACTIONS(1940), - [anon_sym_continue] = ACTIONS(1940), - [anon_sym_goto] = ACTIONS(1940), - [anon_sym___try] = ACTIONS(1940), - [anon_sym___leave] = ACTIONS(1940), - [anon_sym_not] = ACTIONS(1940), - [anon_sym_compl] = ACTIONS(1940), - [anon_sym_DASH_DASH] = ACTIONS(1938), - [anon_sym_PLUS_PLUS] = ACTIONS(1938), - [anon_sym_sizeof] = ACTIONS(1940), - [anon_sym___alignof__] = ACTIONS(1940), - [anon_sym___alignof] = ACTIONS(1940), - [anon_sym__alignof] = ACTIONS(1940), - [anon_sym_alignof] = ACTIONS(1940), - [anon_sym__Alignof] = ACTIONS(1940), - [anon_sym_offsetof] = ACTIONS(1940), - [anon_sym__Generic] = ACTIONS(1940), - [anon_sym_asm] = ACTIONS(1940), - [anon_sym___asm__] = ACTIONS(1940), - [anon_sym___asm] = ACTIONS(1940), - [sym_number_literal] = ACTIONS(1938), - [anon_sym_L_SQUOTE] = ACTIONS(1938), - [anon_sym_u_SQUOTE] = ACTIONS(1938), - [anon_sym_U_SQUOTE] = ACTIONS(1938), - [anon_sym_u8_SQUOTE] = ACTIONS(1938), - [anon_sym_SQUOTE] = ACTIONS(1938), - [anon_sym_L_DQUOTE] = ACTIONS(1938), - [anon_sym_u_DQUOTE] = ACTIONS(1938), - [anon_sym_U_DQUOTE] = ACTIONS(1938), - [anon_sym_u8_DQUOTE] = ACTIONS(1938), - [anon_sym_DQUOTE] = ACTIONS(1938), - [sym_true] = ACTIONS(1940), - [sym_false] = ACTIONS(1940), - [anon_sym_NULL] = ACTIONS(1940), - [anon_sym_nullptr] = ACTIONS(1940), + [568] = { + [sym_identifier] = ACTIONS(2691), + [aux_sym_preproc_include_token1] = ACTIONS(2691), + [aux_sym_preproc_def_token1] = ACTIONS(2691), + [aux_sym_preproc_if_token1] = ACTIONS(2691), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2691), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2691), + [sym_preproc_directive] = ACTIONS(2691), + [anon_sym_LPAREN2] = ACTIONS(2693), + [anon_sym_BANG] = ACTIONS(2693), + [anon_sym_TILDE] = ACTIONS(2693), + [anon_sym_DASH] = ACTIONS(2691), + [anon_sym_PLUS] = ACTIONS(2691), + [anon_sym_STAR] = ACTIONS(2693), + [anon_sym_AMP_AMP] = ACTIONS(2693), + [anon_sym_AMP] = ACTIONS(2691), + [anon_sym_SEMI] = ACTIONS(2693), + [anon_sym___extension__] = ACTIONS(2691), + [anon_sym_typedef] = ACTIONS(2691), + [anon_sym_virtual] = ACTIONS(2691), + [anon_sym_extern] = ACTIONS(2691), + [anon_sym___attribute__] = ACTIONS(2691), + [anon_sym___attribute] = ACTIONS(2691), + [anon_sym_using] = ACTIONS(2691), + [anon_sym_COLON_COLON] = ACTIONS(2693), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2693), + [anon_sym___declspec] = ACTIONS(2691), + [anon_sym___based] = ACTIONS(2691), + [anon_sym___cdecl] = ACTIONS(2691), + [anon_sym___clrcall] = ACTIONS(2691), + [anon_sym___stdcall] = ACTIONS(2691), + [anon_sym___fastcall] = ACTIONS(2691), + [anon_sym___thiscall] = ACTIONS(2691), + [anon_sym___vectorcall] = ACTIONS(2691), + [anon_sym_LBRACE] = ACTIONS(2693), + [anon_sym_RBRACE] = ACTIONS(2693), + [anon_sym_signed] = ACTIONS(2691), + [anon_sym_unsigned] = ACTIONS(2691), + [anon_sym_long] = ACTIONS(2691), + [anon_sym_short] = ACTIONS(2691), + [anon_sym_LBRACK] = ACTIONS(2691), + [anon_sym_static] = ACTIONS(2691), + [anon_sym_register] = ACTIONS(2691), + [anon_sym_inline] = ACTIONS(2691), + [anon_sym___inline] = ACTIONS(2691), + [anon_sym___inline__] = ACTIONS(2691), + [anon_sym___forceinline] = ACTIONS(2691), + [anon_sym_thread_local] = ACTIONS(2691), + [anon_sym___thread] = ACTIONS(2691), + [anon_sym_const] = ACTIONS(2691), + [anon_sym_constexpr] = ACTIONS(2691), + [anon_sym_volatile] = ACTIONS(2691), + [anon_sym_restrict] = ACTIONS(2691), + [anon_sym___restrict__] = ACTIONS(2691), + [anon_sym__Atomic] = ACTIONS(2691), + [anon_sym__Noreturn] = ACTIONS(2691), + [anon_sym_noreturn] = ACTIONS(2691), + [anon_sym__Nonnull] = ACTIONS(2691), + [anon_sym_mutable] = ACTIONS(2691), + [anon_sym_constinit] = ACTIONS(2691), + [anon_sym_consteval] = ACTIONS(2691), + [anon_sym_alignas] = ACTIONS(2691), + [anon_sym__Alignas] = ACTIONS(2691), + [sym_primitive_type] = ACTIONS(2691), + [anon_sym_enum] = ACTIONS(2691), + [anon_sym_class] = ACTIONS(2691), + [anon_sym_struct] = ACTIONS(2691), + [anon_sym_union] = ACTIONS(2691), + [anon_sym_if] = ACTIONS(2691), + [anon_sym_else] = ACTIONS(2691), + [anon_sym_switch] = ACTIONS(2691), + [anon_sym_case] = ACTIONS(2691), + [anon_sym_default] = ACTIONS(2691), + [anon_sym_while] = ACTIONS(2691), + [anon_sym_do] = ACTIONS(2691), + [anon_sym_for] = ACTIONS(2691), + [anon_sym_return] = ACTIONS(2691), + [anon_sym_break] = ACTIONS(2691), + [anon_sym_continue] = ACTIONS(2691), + [anon_sym_goto] = ACTIONS(2691), + [anon_sym___try] = ACTIONS(2691), + [anon_sym___leave] = ACTIONS(2691), + [anon_sym_not] = ACTIONS(2691), + [anon_sym_compl] = ACTIONS(2691), + [anon_sym_DASH_DASH] = ACTIONS(2693), + [anon_sym_PLUS_PLUS] = ACTIONS(2693), + [anon_sym_sizeof] = ACTIONS(2691), + [anon_sym___alignof__] = ACTIONS(2691), + [anon_sym___alignof] = ACTIONS(2691), + [anon_sym__alignof] = ACTIONS(2691), + [anon_sym_alignof] = ACTIONS(2691), + [anon_sym__Alignof] = ACTIONS(2691), + [anon_sym_offsetof] = ACTIONS(2691), + [anon_sym__Generic] = ACTIONS(2691), + [anon_sym_asm] = ACTIONS(2691), + [anon_sym___asm__] = ACTIONS(2691), + [anon_sym___asm] = ACTIONS(2691), + [sym_number_literal] = ACTIONS(2693), + [anon_sym_L_SQUOTE] = ACTIONS(2693), + [anon_sym_u_SQUOTE] = ACTIONS(2693), + [anon_sym_U_SQUOTE] = ACTIONS(2693), + [anon_sym_u8_SQUOTE] = ACTIONS(2693), + [anon_sym_SQUOTE] = ACTIONS(2693), + [anon_sym_L_DQUOTE] = ACTIONS(2693), + [anon_sym_u_DQUOTE] = ACTIONS(2693), + [anon_sym_U_DQUOTE] = ACTIONS(2693), + [anon_sym_u8_DQUOTE] = ACTIONS(2693), + [anon_sym_DQUOTE] = ACTIONS(2693), + [sym_true] = ACTIONS(2691), + [sym_false] = ACTIONS(2691), + [anon_sym_NULL] = ACTIONS(2691), + [anon_sym_nullptr] = ACTIONS(2691), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1940), - [anon_sym_decltype] = ACTIONS(1940), - [anon_sym_explicit] = ACTIONS(1940), - [anon_sym_typename] = ACTIONS(1940), - [anon_sym_template] = ACTIONS(1940), - [anon_sym_operator] = ACTIONS(1940), - [anon_sym_try] = ACTIONS(1940), - [anon_sym_delete] = ACTIONS(1940), - [anon_sym_throw] = ACTIONS(1940), - [anon_sym_namespace] = ACTIONS(1940), - [anon_sym_static_assert] = ACTIONS(1940), - [anon_sym_concept] = ACTIONS(1940), - [anon_sym_co_return] = ACTIONS(1940), - [anon_sym_co_yield] = ACTIONS(1940), - [anon_sym_R_DQUOTE] = ACTIONS(1938), - [anon_sym_LR_DQUOTE] = ACTIONS(1938), - [anon_sym_uR_DQUOTE] = ACTIONS(1938), - [anon_sym_UR_DQUOTE] = ACTIONS(1938), - [anon_sym_u8R_DQUOTE] = ACTIONS(1938), - [anon_sym_co_await] = ACTIONS(1940), - [anon_sym_new] = ACTIONS(1940), - [anon_sym_requires] = ACTIONS(1940), - [sym_this] = ACTIONS(1940), + [sym_auto] = ACTIONS(2691), + [anon_sym_decltype] = ACTIONS(2691), + [anon_sym_explicit] = ACTIONS(2691), + [anon_sym_typename] = ACTIONS(2691), + [anon_sym_template] = ACTIONS(2691), + [anon_sym_operator] = ACTIONS(2691), + [anon_sym_try] = ACTIONS(2691), + [anon_sym_delete] = ACTIONS(2691), + [anon_sym_throw] = ACTIONS(2691), + [anon_sym_namespace] = ACTIONS(2691), + [anon_sym_static_assert] = ACTIONS(2691), + [anon_sym_concept] = ACTIONS(2691), + [anon_sym_co_return] = ACTIONS(2691), + [anon_sym_co_yield] = ACTIONS(2691), + [anon_sym_R_DQUOTE] = ACTIONS(2693), + [anon_sym_LR_DQUOTE] = ACTIONS(2693), + [anon_sym_uR_DQUOTE] = ACTIONS(2693), + [anon_sym_UR_DQUOTE] = ACTIONS(2693), + [anon_sym_u8R_DQUOTE] = ACTIONS(2693), + [anon_sym_co_await] = ACTIONS(2691), + [anon_sym_new] = ACTIONS(2691), + [anon_sym_requires] = ACTIONS(2691), + [sym_this] = ACTIONS(2691), }, - [560] = { - [sym_identifier] = ACTIONS(2707), - [aux_sym_preproc_include_token1] = ACTIONS(2707), - [aux_sym_preproc_def_token1] = ACTIONS(2707), - [aux_sym_preproc_if_token1] = ACTIONS(2707), - [aux_sym_preproc_if_token2] = ACTIONS(2707), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2707), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2707), - [sym_preproc_directive] = ACTIONS(2707), - [anon_sym_LPAREN2] = ACTIONS(2709), - [anon_sym_BANG] = ACTIONS(2709), - [anon_sym_TILDE] = ACTIONS(2709), - [anon_sym_DASH] = ACTIONS(2707), - [anon_sym_PLUS] = ACTIONS(2707), - [anon_sym_STAR] = ACTIONS(2709), - [anon_sym_AMP_AMP] = ACTIONS(2709), - [anon_sym_AMP] = ACTIONS(2707), - [anon_sym_SEMI] = ACTIONS(2709), - [anon_sym___extension__] = ACTIONS(2707), - [anon_sym_typedef] = ACTIONS(2707), - [anon_sym_virtual] = ACTIONS(2707), - [anon_sym_extern] = ACTIONS(2707), - [anon_sym___attribute__] = ACTIONS(2707), - [anon_sym___attribute] = ACTIONS(2707), - [anon_sym_using] = ACTIONS(2707), - [anon_sym_COLON_COLON] = ACTIONS(2709), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2709), - [anon_sym___declspec] = ACTIONS(2707), - [anon_sym___based] = ACTIONS(2707), - [anon_sym___cdecl] = ACTIONS(2707), - [anon_sym___clrcall] = ACTIONS(2707), - [anon_sym___stdcall] = ACTIONS(2707), - [anon_sym___fastcall] = ACTIONS(2707), - [anon_sym___thiscall] = ACTIONS(2707), - [anon_sym___vectorcall] = ACTIONS(2707), - [anon_sym_LBRACE] = ACTIONS(2709), - [anon_sym_signed] = ACTIONS(2707), - [anon_sym_unsigned] = ACTIONS(2707), - [anon_sym_long] = ACTIONS(2707), - [anon_sym_short] = ACTIONS(2707), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_static] = ACTIONS(2707), - [anon_sym_register] = ACTIONS(2707), - [anon_sym_inline] = ACTIONS(2707), - [anon_sym___inline] = ACTIONS(2707), - [anon_sym___inline__] = ACTIONS(2707), - [anon_sym___forceinline] = ACTIONS(2707), - [anon_sym_thread_local] = ACTIONS(2707), - [anon_sym___thread] = ACTIONS(2707), - [anon_sym_const] = ACTIONS(2707), - [anon_sym_constexpr] = ACTIONS(2707), - [anon_sym_volatile] = ACTIONS(2707), - [anon_sym_restrict] = ACTIONS(2707), - [anon_sym___restrict__] = ACTIONS(2707), - [anon_sym__Atomic] = ACTIONS(2707), - [anon_sym__Noreturn] = ACTIONS(2707), - [anon_sym_noreturn] = ACTIONS(2707), - [anon_sym__Nonnull] = ACTIONS(2707), - [anon_sym_mutable] = ACTIONS(2707), - [anon_sym_constinit] = ACTIONS(2707), - [anon_sym_consteval] = ACTIONS(2707), - [anon_sym_alignas] = ACTIONS(2707), - [anon_sym__Alignas] = ACTIONS(2707), - [sym_primitive_type] = ACTIONS(2707), - [anon_sym_enum] = ACTIONS(2707), - [anon_sym_class] = ACTIONS(2707), - [anon_sym_struct] = ACTIONS(2707), - [anon_sym_union] = ACTIONS(2707), - [anon_sym_if] = ACTIONS(2707), - [anon_sym_else] = ACTIONS(2707), - [anon_sym_switch] = ACTIONS(2707), - [anon_sym_case] = ACTIONS(2707), - [anon_sym_default] = ACTIONS(2707), - [anon_sym_while] = ACTIONS(2707), - [anon_sym_do] = ACTIONS(2707), - [anon_sym_for] = ACTIONS(2707), - [anon_sym_return] = ACTIONS(2707), - [anon_sym_break] = ACTIONS(2707), - [anon_sym_continue] = ACTIONS(2707), - [anon_sym_goto] = ACTIONS(2707), - [anon_sym___try] = ACTIONS(2707), - [anon_sym___leave] = ACTIONS(2707), - [anon_sym_not] = ACTIONS(2707), - [anon_sym_compl] = ACTIONS(2707), - [anon_sym_DASH_DASH] = ACTIONS(2709), - [anon_sym_PLUS_PLUS] = ACTIONS(2709), - [anon_sym_sizeof] = ACTIONS(2707), - [anon_sym___alignof__] = ACTIONS(2707), - [anon_sym___alignof] = ACTIONS(2707), - [anon_sym__alignof] = ACTIONS(2707), - [anon_sym_alignof] = ACTIONS(2707), - [anon_sym__Alignof] = ACTIONS(2707), - [anon_sym_offsetof] = ACTIONS(2707), - [anon_sym__Generic] = ACTIONS(2707), - [anon_sym_asm] = ACTIONS(2707), - [anon_sym___asm__] = ACTIONS(2707), - [anon_sym___asm] = ACTIONS(2707), - [sym_number_literal] = ACTIONS(2709), - [anon_sym_L_SQUOTE] = ACTIONS(2709), - [anon_sym_u_SQUOTE] = ACTIONS(2709), - [anon_sym_U_SQUOTE] = ACTIONS(2709), - [anon_sym_u8_SQUOTE] = ACTIONS(2709), - [anon_sym_SQUOTE] = ACTIONS(2709), - [anon_sym_L_DQUOTE] = ACTIONS(2709), - [anon_sym_u_DQUOTE] = ACTIONS(2709), - [anon_sym_U_DQUOTE] = ACTIONS(2709), - [anon_sym_u8_DQUOTE] = ACTIONS(2709), - [anon_sym_DQUOTE] = ACTIONS(2709), - [sym_true] = ACTIONS(2707), - [sym_false] = ACTIONS(2707), - [anon_sym_NULL] = ACTIONS(2707), - [anon_sym_nullptr] = ACTIONS(2707), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2707), - [anon_sym_decltype] = ACTIONS(2707), - [anon_sym_explicit] = ACTIONS(2707), - [anon_sym_typename] = ACTIONS(2707), - [anon_sym_template] = ACTIONS(2707), - [anon_sym_operator] = ACTIONS(2707), - [anon_sym_try] = ACTIONS(2707), - [anon_sym_delete] = ACTIONS(2707), - [anon_sym_throw] = ACTIONS(2707), - [anon_sym_namespace] = ACTIONS(2707), - [anon_sym_static_assert] = ACTIONS(2707), - [anon_sym_concept] = ACTIONS(2707), - [anon_sym_co_return] = ACTIONS(2707), - [anon_sym_co_yield] = ACTIONS(2707), - [anon_sym_R_DQUOTE] = ACTIONS(2709), - [anon_sym_LR_DQUOTE] = ACTIONS(2709), - [anon_sym_uR_DQUOTE] = ACTIONS(2709), - [anon_sym_UR_DQUOTE] = ACTIONS(2709), - [anon_sym_u8R_DQUOTE] = ACTIONS(2709), - [anon_sym_co_await] = ACTIONS(2707), - [anon_sym_new] = ACTIONS(2707), - [anon_sym_requires] = ACTIONS(2707), - [sym_this] = ACTIONS(2707), + [569] = { + [ts_builtin_sym_end] = ACTIONS(3457), + [sym_identifier] = ACTIONS(3459), + [aux_sym_preproc_include_token1] = ACTIONS(3459), + [aux_sym_preproc_def_token1] = ACTIONS(3459), + [aux_sym_preproc_if_token1] = ACTIONS(3459), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3459), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3459), + [sym_preproc_directive] = ACTIONS(3459), + [anon_sym_LPAREN2] = ACTIONS(3457), + [anon_sym_BANG] = ACTIONS(3457), + [anon_sym_TILDE] = ACTIONS(3457), + [anon_sym_DASH] = ACTIONS(3459), + [anon_sym_PLUS] = ACTIONS(3459), + [anon_sym_STAR] = ACTIONS(3457), + [anon_sym_AMP_AMP] = ACTIONS(3457), + [anon_sym_AMP] = ACTIONS(3459), + [anon_sym_SEMI] = ACTIONS(3457), + [anon_sym___extension__] = ACTIONS(3459), + [anon_sym_typedef] = ACTIONS(3459), + [anon_sym_virtual] = ACTIONS(3459), + [anon_sym_extern] = ACTIONS(3459), + [anon_sym___attribute__] = ACTIONS(3459), + [anon_sym___attribute] = ACTIONS(3459), + [anon_sym_using] = ACTIONS(3459), + [anon_sym_COLON_COLON] = ACTIONS(3457), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3457), + [anon_sym___declspec] = ACTIONS(3459), + [anon_sym___based] = ACTIONS(3459), + [anon_sym___cdecl] = ACTIONS(3459), + [anon_sym___clrcall] = ACTIONS(3459), + [anon_sym___stdcall] = ACTIONS(3459), + [anon_sym___fastcall] = ACTIONS(3459), + [anon_sym___thiscall] = ACTIONS(3459), + [anon_sym___vectorcall] = ACTIONS(3459), + [anon_sym_LBRACE] = ACTIONS(3457), + [anon_sym_signed] = ACTIONS(3459), + [anon_sym_unsigned] = ACTIONS(3459), + [anon_sym_long] = ACTIONS(3459), + [anon_sym_short] = ACTIONS(3459), + [anon_sym_LBRACK] = ACTIONS(3459), + [anon_sym_static] = ACTIONS(3459), + [anon_sym_register] = ACTIONS(3459), + [anon_sym_inline] = ACTIONS(3459), + [anon_sym___inline] = ACTIONS(3459), + [anon_sym___inline__] = ACTIONS(3459), + [anon_sym___forceinline] = ACTIONS(3459), + [anon_sym_thread_local] = ACTIONS(3459), + [anon_sym___thread] = ACTIONS(3459), + [anon_sym_const] = ACTIONS(3459), + [anon_sym_constexpr] = ACTIONS(3459), + [anon_sym_volatile] = ACTIONS(3459), + [anon_sym_restrict] = ACTIONS(3459), + [anon_sym___restrict__] = ACTIONS(3459), + [anon_sym__Atomic] = ACTIONS(3459), + [anon_sym__Noreturn] = ACTIONS(3459), + [anon_sym_noreturn] = ACTIONS(3459), + [anon_sym__Nonnull] = ACTIONS(3459), + [anon_sym_mutable] = ACTIONS(3459), + [anon_sym_constinit] = ACTIONS(3459), + [anon_sym_consteval] = ACTIONS(3459), + [anon_sym_alignas] = ACTIONS(3459), + [anon_sym__Alignas] = ACTIONS(3459), + [sym_primitive_type] = ACTIONS(3459), + [anon_sym_enum] = ACTIONS(3459), + [anon_sym_class] = ACTIONS(3459), + [anon_sym_struct] = ACTIONS(3459), + [anon_sym_union] = ACTIONS(3459), + [anon_sym_if] = ACTIONS(3459), + [anon_sym_switch] = ACTIONS(3459), + [anon_sym_case] = ACTIONS(3459), + [anon_sym_default] = ACTIONS(3459), + [anon_sym_while] = ACTIONS(3459), + [anon_sym_do] = ACTIONS(3459), + [anon_sym_for] = ACTIONS(3459), + [anon_sym_return] = ACTIONS(3459), + [anon_sym_break] = ACTIONS(3459), + [anon_sym_continue] = ACTIONS(3459), + [anon_sym_goto] = ACTIONS(3459), + [anon_sym_not] = ACTIONS(3459), + [anon_sym_compl] = ACTIONS(3459), + [anon_sym_DASH_DASH] = ACTIONS(3457), + [anon_sym_PLUS_PLUS] = ACTIONS(3457), + [anon_sym_sizeof] = ACTIONS(3459), + [anon_sym___alignof__] = ACTIONS(3459), + [anon_sym___alignof] = ACTIONS(3459), + [anon_sym__alignof] = ACTIONS(3459), + [anon_sym_alignof] = ACTIONS(3459), + [anon_sym__Alignof] = ACTIONS(3459), + [anon_sym_offsetof] = ACTIONS(3459), + [anon_sym__Generic] = ACTIONS(3459), + [anon_sym_asm] = ACTIONS(3459), + [anon_sym___asm__] = ACTIONS(3459), + [anon_sym___asm] = ACTIONS(3459), + [sym_number_literal] = ACTIONS(3457), + [anon_sym_L_SQUOTE] = ACTIONS(3457), + [anon_sym_u_SQUOTE] = ACTIONS(3457), + [anon_sym_U_SQUOTE] = ACTIONS(3457), + [anon_sym_u8_SQUOTE] = ACTIONS(3457), + [anon_sym_SQUOTE] = ACTIONS(3457), + [anon_sym_L_DQUOTE] = ACTIONS(3457), + [anon_sym_u_DQUOTE] = ACTIONS(3457), + [anon_sym_U_DQUOTE] = ACTIONS(3457), + [anon_sym_u8_DQUOTE] = ACTIONS(3457), + [anon_sym_DQUOTE] = ACTIONS(3457), + [sym_true] = ACTIONS(3459), + [sym_false] = ACTIONS(3459), + [anon_sym_NULL] = ACTIONS(3459), + [anon_sym_nullptr] = ACTIONS(3459), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3459), + [anon_sym_decltype] = ACTIONS(3459), + [anon_sym_explicit] = ACTIONS(3459), + [anon_sym_typename] = ACTIONS(3459), + [anon_sym_export] = ACTIONS(3459), + [anon_sym_module] = ACTIONS(3459), + [anon_sym_import] = ACTIONS(3459), + [anon_sym_template] = ACTIONS(3459), + [anon_sym_operator] = ACTIONS(3459), + [anon_sym_try] = ACTIONS(3459), + [anon_sym_delete] = ACTIONS(3459), + [anon_sym_throw] = ACTIONS(3459), + [anon_sym_namespace] = ACTIONS(3459), + [anon_sym_static_assert] = ACTIONS(3459), + [anon_sym_concept] = ACTIONS(3459), + [anon_sym_co_return] = ACTIONS(3459), + [anon_sym_co_yield] = ACTIONS(3459), + [anon_sym_R_DQUOTE] = ACTIONS(3457), + [anon_sym_LR_DQUOTE] = ACTIONS(3457), + [anon_sym_uR_DQUOTE] = ACTIONS(3457), + [anon_sym_UR_DQUOTE] = ACTIONS(3457), + [anon_sym_u8R_DQUOTE] = ACTIONS(3457), + [anon_sym_co_await] = ACTIONS(3459), + [anon_sym_new] = ACTIONS(3459), + [anon_sym_requires] = ACTIONS(3459), + [sym_this] = ACTIONS(3459), }, - [561] = { - [ts_builtin_sym_end] = ACTIONS(3437), - [sym_identifier] = ACTIONS(3439), - [aux_sym_preproc_include_token1] = ACTIONS(3439), - [aux_sym_preproc_def_token1] = ACTIONS(3439), - [aux_sym_preproc_if_token1] = ACTIONS(3439), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3439), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3439), - [sym_preproc_directive] = ACTIONS(3439), - [anon_sym_LPAREN2] = ACTIONS(3437), - [anon_sym_BANG] = ACTIONS(3437), - [anon_sym_TILDE] = ACTIONS(3437), - [anon_sym_DASH] = ACTIONS(3439), - [anon_sym_PLUS] = ACTIONS(3439), - [anon_sym_STAR] = ACTIONS(3437), - [anon_sym_AMP_AMP] = ACTIONS(3437), - [anon_sym_AMP] = ACTIONS(3439), - [anon_sym_SEMI] = ACTIONS(3437), - [anon_sym___extension__] = ACTIONS(3439), - [anon_sym_typedef] = ACTIONS(3439), - [anon_sym_virtual] = ACTIONS(3439), - [anon_sym_extern] = ACTIONS(3439), - [anon_sym___attribute__] = ACTIONS(3439), - [anon_sym___attribute] = ACTIONS(3439), - [anon_sym_using] = ACTIONS(3439), - [anon_sym_COLON_COLON] = ACTIONS(3437), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3437), - [anon_sym___declspec] = ACTIONS(3439), - [anon_sym___based] = ACTIONS(3439), - [anon_sym___cdecl] = ACTIONS(3439), - [anon_sym___clrcall] = ACTIONS(3439), - [anon_sym___stdcall] = ACTIONS(3439), - [anon_sym___fastcall] = ACTIONS(3439), - [anon_sym___thiscall] = ACTIONS(3439), - [anon_sym___vectorcall] = ACTIONS(3439), - [anon_sym_LBRACE] = ACTIONS(3437), - [anon_sym_signed] = ACTIONS(3439), - [anon_sym_unsigned] = ACTIONS(3439), - [anon_sym_long] = ACTIONS(3439), - [anon_sym_short] = ACTIONS(3439), - [anon_sym_LBRACK] = ACTIONS(3439), - [anon_sym_static] = ACTIONS(3439), - [anon_sym_register] = ACTIONS(3439), - [anon_sym_inline] = ACTIONS(3439), - [anon_sym___inline] = ACTIONS(3439), - [anon_sym___inline__] = ACTIONS(3439), - [anon_sym___forceinline] = ACTIONS(3439), - [anon_sym_thread_local] = ACTIONS(3439), - [anon_sym___thread] = ACTIONS(3439), - [anon_sym_const] = ACTIONS(3439), - [anon_sym_constexpr] = ACTIONS(3439), - [anon_sym_volatile] = ACTIONS(3439), - [anon_sym_restrict] = ACTIONS(3439), - [anon_sym___restrict__] = ACTIONS(3439), - [anon_sym__Atomic] = ACTIONS(3439), - [anon_sym__Noreturn] = ACTIONS(3439), - [anon_sym_noreturn] = ACTIONS(3439), - [anon_sym__Nonnull] = ACTIONS(3439), - [anon_sym_mutable] = ACTIONS(3439), - [anon_sym_constinit] = ACTIONS(3439), - [anon_sym_consteval] = ACTIONS(3439), - [anon_sym_alignas] = ACTIONS(3439), - [anon_sym__Alignas] = ACTIONS(3439), - [sym_primitive_type] = ACTIONS(3439), - [anon_sym_enum] = ACTIONS(3439), - [anon_sym_class] = ACTIONS(3439), - [anon_sym_struct] = ACTIONS(3439), - [anon_sym_union] = ACTIONS(3439), - [anon_sym_if] = ACTIONS(3439), - [anon_sym_switch] = ACTIONS(3439), - [anon_sym_case] = ACTIONS(3439), - [anon_sym_default] = ACTIONS(3439), - [anon_sym_while] = ACTIONS(3439), - [anon_sym_do] = ACTIONS(3439), - [anon_sym_for] = ACTIONS(3439), - [anon_sym_return] = ACTIONS(3439), - [anon_sym_break] = ACTIONS(3439), - [anon_sym_continue] = ACTIONS(3439), - [anon_sym_goto] = ACTIONS(3439), - [anon_sym_not] = ACTIONS(3439), - [anon_sym_compl] = ACTIONS(3439), - [anon_sym_DASH_DASH] = ACTIONS(3437), - [anon_sym_PLUS_PLUS] = ACTIONS(3437), - [anon_sym_sizeof] = ACTIONS(3439), - [anon_sym___alignof__] = ACTIONS(3439), - [anon_sym___alignof] = ACTIONS(3439), - [anon_sym__alignof] = ACTIONS(3439), - [anon_sym_alignof] = ACTIONS(3439), - [anon_sym__Alignof] = ACTIONS(3439), - [anon_sym_offsetof] = ACTIONS(3439), - [anon_sym__Generic] = ACTIONS(3439), - [anon_sym_asm] = ACTIONS(3439), - [anon_sym___asm__] = ACTIONS(3439), - [anon_sym___asm] = ACTIONS(3439), - [sym_number_literal] = ACTIONS(3437), - [anon_sym_L_SQUOTE] = ACTIONS(3437), - [anon_sym_u_SQUOTE] = ACTIONS(3437), - [anon_sym_U_SQUOTE] = ACTIONS(3437), - [anon_sym_u8_SQUOTE] = ACTIONS(3437), - [anon_sym_SQUOTE] = ACTIONS(3437), - [anon_sym_L_DQUOTE] = ACTIONS(3437), - [anon_sym_u_DQUOTE] = ACTIONS(3437), - [anon_sym_U_DQUOTE] = ACTIONS(3437), - [anon_sym_u8_DQUOTE] = ACTIONS(3437), - [anon_sym_DQUOTE] = ACTIONS(3437), - [sym_true] = ACTIONS(3439), - [sym_false] = ACTIONS(3439), - [anon_sym_NULL] = ACTIONS(3439), - [anon_sym_nullptr] = ACTIONS(3439), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3439), - [anon_sym_decltype] = ACTIONS(3439), - [anon_sym_explicit] = ACTIONS(3439), - [anon_sym_typename] = ACTIONS(3439), - [anon_sym_export] = ACTIONS(3439), - [anon_sym_module] = ACTIONS(3439), - [anon_sym_import] = ACTIONS(3439), - [anon_sym_template] = ACTIONS(3439), - [anon_sym_operator] = ACTIONS(3439), - [anon_sym_try] = ACTIONS(3439), - [anon_sym_delete] = ACTIONS(3439), - [anon_sym_throw] = ACTIONS(3439), - [anon_sym_namespace] = ACTIONS(3439), - [anon_sym_static_assert] = ACTIONS(3439), - [anon_sym_concept] = ACTIONS(3439), - [anon_sym_co_return] = ACTIONS(3439), - [anon_sym_co_yield] = ACTIONS(3439), - [anon_sym_R_DQUOTE] = ACTIONS(3437), - [anon_sym_LR_DQUOTE] = ACTIONS(3437), - [anon_sym_uR_DQUOTE] = ACTIONS(3437), - [anon_sym_UR_DQUOTE] = ACTIONS(3437), - [anon_sym_u8R_DQUOTE] = ACTIONS(3437), - [anon_sym_co_await] = ACTIONS(3439), - [anon_sym_new] = ACTIONS(3439), - [anon_sym_requires] = ACTIONS(3439), - [sym_this] = ACTIONS(3439), + [570] = { + [sym_identifier] = ACTIONS(2667), + [aux_sym_preproc_include_token1] = ACTIONS(2667), + [aux_sym_preproc_def_token1] = ACTIONS(2667), + [aux_sym_preproc_if_token1] = ACTIONS(2667), + [aux_sym_preproc_if_token2] = ACTIONS(2667), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2667), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2667), + [sym_preproc_directive] = ACTIONS(2667), + [anon_sym_LPAREN2] = ACTIONS(2669), + [anon_sym_BANG] = ACTIONS(2669), + [anon_sym_TILDE] = ACTIONS(2669), + [anon_sym_DASH] = ACTIONS(2667), + [anon_sym_PLUS] = ACTIONS(2667), + [anon_sym_STAR] = ACTIONS(2669), + [anon_sym_AMP_AMP] = ACTIONS(2669), + [anon_sym_AMP] = ACTIONS(2667), + [anon_sym_SEMI] = ACTIONS(2669), + [anon_sym___extension__] = ACTIONS(2667), + [anon_sym_typedef] = ACTIONS(2667), + [anon_sym_virtual] = ACTIONS(2667), + [anon_sym_extern] = ACTIONS(2667), + [anon_sym___attribute__] = ACTIONS(2667), + [anon_sym___attribute] = ACTIONS(2667), + [anon_sym_using] = ACTIONS(2667), + [anon_sym_COLON_COLON] = ACTIONS(2669), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2669), + [anon_sym___declspec] = ACTIONS(2667), + [anon_sym___based] = ACTIONS(2667), + [anon_sym___cdecl] = ACTIONS(2667), + [anon_sym___clrcall] = ACTIONS(2667), + [anon_sym___stdcall] = ACTIONS(2667), + [anon_sym___fastcall] = ACTIONS(2667), + [anon_sym___thiscall] = ACTIONS(2667), + [anon_sym___vectorcall] = ACTIONS(2667), + [anon_sym_LBRACE] = ACTIONS(2669), + [anon_sym_signed] = ACTIONS(2667), + [anon_sym_unsigned] = ACTIONS(2667), + [anon_sym_long] = ACTIONS(2667), + [anon_sym_short] = ACTIONS(2667), + [anon_sym_LBRACK] = ACTIONS(2667), + [anon_sym_static] = ACTIONS(2667), + [anon_sym_register] = ACTIONS(2667), + [anon_sym_inline] = ACTIONS(2667), + [anon_sym___inline] = ACTIONS(2667), + [anon_sym___inline__] = ACTIONS(2667), + [anon_sym___forceinline] = ACTIONS(2667), + [anon_sym_thread_local] = ACTIONS(2667), + [anon_sym___thread] = ACTIONS(2667), + [anon_sym_const] = ACTIONS(2667), + [anon_sym_constexpr] = ACTIONS(2667), + [anon_sym_volatile] = ACTIONS(2667), + [anon_sym_restrict] = ACTIONS(2667), + [anon_sym___restrict__] = ACTIONS(2667), + [anon_sym__Atomic] = ACTIONS(2667), + [anon_sym__Noreturn] = ACTIONS(2667), + [anon_sym_noreturn] = ACTIONS(2667), + [anon_sym__Nonnull] = ACTIONS(2667), + [anon_sym_mutable] = ACTIONS(2667), + [anon_sym_constinit] = ACTIONS(2667), + [anon_sym_consteval] = ACTIONS(2667), + [anon_sym_alignas] = ACTIONS(2667), + [anon_sym__Alignas] = ACTIONS(2667), + [sym_primitive_type] = ACTIONS(2667), + [anon_sym_enum] = ACTIONS(2667), + [anon_sym_class] = ACTIONS(2667), + [anon_sym_struct] = ACTIONS(2667), + [anon_sym_union] = ACTIONS(2667), + [anon_sym_if] = ACTIONS(2667), + [anon_sym_else] = ACTIONS(2667), + [anon_sym_switch] = ACTIONS(2667), + [anon_sym_case] = ACTIONS(2667), + [anon_sym_default] = ACTIONS(2667), + [anon_sym_while] = ACTIONS(2667), + [anon_sym_do] = ACTIONS(2667), + [anon_sym_for] = ACTIONS(2667), + [anon_sym_return] = ACTIONS(2667), + [anon_sym_break] = ACTIONS(2667), + [anon_sym_continue] = ACTIONS(2667), + [anon_sym_goto] = ACTIONS(2667), + [anon_sym___try] = ACTIONS(2667), + [anon_sym___leave] = ACTIONS(2667), + [anon_sym_not] = ACTIONS(2667), + [anon_sym_compl] = ACTIONS(2667), + [anon_sym_DASH_DASH] = ACTIONS(2669), + [anon_sym_PLUS_PLUS] = ACTIONS(2669), + [anon_sym_sizeof] = ACTIONS(2667), + [anon_sym___alignof__] = ACTIONS(2667), + [anon_sym___alignof] = ACTIONS(2667), + [anon_sym__alignof] = ACTIONS(2667), + [anon_sym_alignof] = ACTIONS(2667), + [anon_sym__Alignof] = ACTIONS(2667), + [anon_sym_offsetof] = ACTIONS(2667), + [anon_sym__Generic] = ACTIONS(2667), + [anon_sym_asm] = ACTIONS(2667), + [anon_sym___asm__] = ACTIONS(2667), + [anon_sym___asm] = ACTIONS(2667), + [sym_number_literal] = ACTIONS(2669), + [anon_sym_L_SQUOTE] = ACTIONS(2669), + [anon_sym_u_SQUOTE] = ACTIONS(2669), + [anon_sym_U_SQUOTE] = ACTIONS(2669), + [anon_sym_u8_SQUOTE] = ACTIONS(2669), + [anon_sym_SQUOTE] = ACTIONS(2669), + [anon_sym_L_DQUOTE] = ACTIONS(2669), + [anon_sym_u_DQUOTE] = ACTIONS(2669), + [anon_sym_U_DQUOTE] = ACTIONS(2669), + [anon_sym_u8_DQUOTE] = ACTIONS(2669), + [anon_sym_DQUOTE] = ACTIONS(2669), + [sym_true] = ACTIONS(2667), + [sym_false] = ACTIONS(2667), + [anon_sym_NULL] = ACTIONS(2667), + [anon_sym_nullptr] = ACTIONS(2667), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2667), + [anon_sym_decltype] = ACTIONS(2667), + [anon_sym_explicit] = ACTIONS(2667), + [anon_sym_typename] = ACTIONS(2667), + [anon_sym_template] = ACTIONS(2667), + [anon_sym_operator] = ACTIONS(2667), + [anon_sym_try] = ACTIONS(2667), + [anon_sym_delete] = ACTIONS(2667), + [anon_sym_throw] = ACTIONS(2667), + [anon_sym_namespace] = ACTIONS(2667), + [anon_sym_static_assert] = ACTIONS(2667), + [anon_sym_concept] = ACTIONS(2667), + [anon_sym_co_return] = ACTIONS(2667), + [anon_sym_co_yield] = ACTIONS(2667), + [anon_sym_R_DQUOTE] = ACTIONS(2669), + [anon_sym_LR_DQUOTE] = ACTIONS(2669), + [anon_sym_uR_DQUOTE] = ACTIONS(2669), + [anon_sym_UR_DQUOTE] = ACTIONS(2669), + [anon_sym_u8R_DQUOTE] = ACTIONS(2669), + [anon_sym_co_await] = ACTIONS(2667), + [anon_sym_new] = ACTIONS(2667), + [anon_sym_requires] = ACTIONS(2667), + [sym_this] = ACTIONS(2667), }, - [562] = { - [ts_builtin_sym_end] = ACTIONS(2913), - [sym_identifier] = ACTIONS(2911), - [aux_sym_preproc_include_token1] = ACTIONS(2911), - [aux_sym_preproc_def_token1] = ACTIONS(2911), - [aux_sym_preproc_if_token1] = ACTIONS(2911), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2911), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2911), - [sym_preproc_directive] = ACTIONS(2911), - [anon_sym_LPAREN2] = ACTIONS(2913), - [anon_sym_BANG] = ACTIONS(2913), - [anon_sym_TILDE] = ACTIONS(2913), - [anon_sym_DASH] = ACTIONS(2911), - [anon_sym_PLUS] = ACTIONS(2911), - [anon_sym_STAR] = ACTIONS(2913), - [anon_sym_AMP_AMP] = ACTIONS(2913), - [anon_sym_AMP] = ACTIONS(2911), - [anon_sym_SEMI] = ACTIONS(2913), - [anon_sym___extension__] = ACTIONS(2911), - [anon_sym_typedef] = ACTIONS(2911), - [anon_sym_virtual] = ACTIONS(2911), - [anon_sym_extern] = ACTIONS(2911), - [anon_sym___attribute__] = ACTIONS(2911), - [anon_sym___attribute] = ACTIONS(2911), - [anon_sym_using] = ACTIONS(2911), - [anon_sym_COLON_COLON] = ACTIONS(2913), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2913), - [anon_sym___declspec] = ACTIONS(2911), - [anon_sym___based] = ACTIONS(2911), - [anon_sym___cdecl] = ACTIONS(2911), - [anon_sym___clrcall] = ACTIONS(2911), - [anon_sym___stdcall] = ACTIONS(2911), - [anon_sym___fastcall] = ACTIONS(2911), - [anon_sym___thiscall] = ACTIONS(2911), - [anon_sym___vectorcall] = ACTIONS(2911), - [anon_sym_LBRACE] = ACTIONS(2913), - [anon_sym_signed] = ACTIONS(2911), - [anon_sym_unsigned] = ACTIONS(2911), - [anon_sym_long] = ACTIONS(2911), - [anon_sym_short] = ACTIONS(2911), - [anon_sym_LBRACK] = ACTIONS(2911), - [anon_sym_static] = ACTIONS(2911), - [anon_sym_register] = ACTIONS(2911), - [anon_sym_inline] = ACTIONS(2911), - [anon_sym___inline] = ACTIONS(2911), - [anon_sym___inline__] = ACTIONS(2911), - [anon_sym___forceinline] = ACTIONS(2911), - [anon_sym_thread_local] = ACTIONS(2911), - [anon_sym___thread] = ACTIONS(2911), - [anon_sym_const] = ACTIONS(2911), - [anon_sym_constexpr] = ACTIONS(2911), - [anon_sym_volatile] = ACTIONS(2911), - [anon_sym_restrict] = ACTIONS(2911), - [anon_sym___restrict__] = ACTIONS(2911), - [anon_sym__Atomic] = ACTIONS(2911), - [anon_sym__Noreturn] = ACTIONS(2911), - [anon_sym_noreturn] = ACTIONS(2911), - [anon_sym__Nonnull] = ACTIONS(2911), - [anon_sym_mutable] = ACTIONS(2911), - [anon_sym_constinit] = ACTIONS(2911), - [anon_sym_consteval] = ACTIONS(2911), - [anon_sym_alignas] = ACTIONS(2911), - [anon_sym__Alignas] = ACTIONS(2911), - [sym_primitive_type] = ACTIONS(2911), - [anon_sym_enum] = ACTIONS(2911), - [anon_sym_class] = ACTIONS(2911), - [anon_sym_struct] = ACTIONS(2911), - [anon_sym_union] = ACTIONS(2911), - [anon_sym_if] = ACTIONS(2911), - [anon_sym_switch] = ACTIONS(2911), - [anon_sym_case] = ACTIONS(2911), - [anon_sym_default] = ACTIONS(2911), - [anon_sym_while] = ACTIONS(2911), - [anon_sym_do] = ACTIONS(2911), - [anon_sym_for] = ACTIONS(2911), - [anon_sym_return] = ACTIONS(2911), - [anon_sym_break] = ACTIONS(2911), - [anon_sym_continue] = ACTIONS(2911), - [anon_sym_goto] = ACTIONS(2911), - [anon_sym_not] = ACTIONS(2911), - [anon_sym_compl] = ACTIONS(2911), - [anon_sym_DASH_DASH] = ACTIONS(2913), - [anon_sym_PLUS_PLUS] = ACTIONS(2913), - [anon_sym_sizeof] = ACTIONS(2911), - [anon_sym___alignof__] = ACTIONS(2911), - [anon_sym___alignof] = ACTIONS(2911), - [anon_sym__alignof] = ACTIONS(2911), - [anon_sym_alignof] = ACTIONS(2911), - [anon_sym__Alignof] = ACTIONS(2911), - [anon_sym_offsetof] = ACTIONS(2911), - [anon_sym__Generic] = ACTIONS(2911), - [anon_sym_asm] = ACTIONS(2911), - [anon_sym___asm__] = ACTIONS(2911), - [anon_sym___asm] = ACTIONS(2911), - [sym_number_literal] = ACTIONS(2913), - [anon_sym_L_SQUOTE] = ACTIONS(2913), - [anon_sym_u_SQUOTE] = ACTIONS(2913), - [anon_sym_U_SQUOTE] = ACTIONS(2913), - [anon_sym_u8_SQUOTE] = ACTIONS(2913), - [anon_sym_SQUOTE] = ACTIONS(2913), - [anon_sym_L_DQUOTE] = ACTIONS(2913), - [anon_sym_u_DQUOTE] = ACTIONS(2913), - [anon_sym_U_DQUOTE] = ACTIONS(2913), - [anon_sym_u8_DQUOTE] = ACTIONS(2913), - [anon_sym_DQUOTE] = ACTIONS(2913), - [sym_true] = ACTIONS(2911), - [sym_false] = ACTIONS(2911), - [anon_sym_NULL] = ACTIONS(2911), - [anon_sym_nullptr] = ACTIONS(2911), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2911), - [anon_sym_decltype] = ACTIONS(2911), - [anon_sym_explicit] = ACTIONS(2911), - [anon_sym_typename] = ACTIONS(2911), - [anon_sym_export] = ACTIONS(2911), - [anon_sym_module] = ACTIONS(2911), - [anon_sym_import] = ACTIONS(2911), - [anon_sym_template] = ACTIONS(2911), - [anon_sym_operator] = ACTIONS(2911), - [anon_sym_try] = ACTIONS(2911), - [anon_sym_delete] = ACTIONS(2911), - [anon_sym_throw] = ACTIONS(2911), - [anon_sym_namespace] = ACTIONS(2911), - [anon_sym_static_assert] = ACTIONS(2911), - [anon_sym_concept] = ACTIONS(2911), - [anon_sym_co_return] = ACTIONS(2911), - [anon_sym_co_yield] = ACTIONS(2911), - [anon_sym_R_DQUOTE] = ACTIONS(2913), - [anon_sym_LR_DQUOTE] = ACTIONS(2913), - [anon_sym_uR_DQUOTE] = ACTIONS(2913), - [anon_sym_UR_DQUOTE] = ACTIONS(2913), - [anon_sym_u8R_DQUOTE] = ACTIONS(2913), - [anon_sym_co_await] = ACTIONS(2911), - [anon_sym_new] = ACTIONS(2911), - [anon_sym_requires] = ACTIONS(2911), - [sym_this] = ACTIONS(2911), + [571] = { + [ts_builtin_sym_end] = ACTIONS(2781), + [sym_identifier] = ACTIONS(2779), + [aux_sym_preproc_include_token1] = ACTIONS(2779), + [aux_sym_preproc_def_token1] = ACTIONS(2779), + [aux_sym_preproc_if_token1] = ACTIONS(2779), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2779), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2779), + [sym_preproc_directive] = ACTIONS(2779), + [anon_sym_LPAREN2] = ACTIONS(2781), + [anon_sym_BANG] = ACTIONS(2781), + [anon_sym_TILDE] = ACTIONS(2781), + [anon_sym_DASH] = ACTIONS(2779), + [anon_sym_PLUS] = ACTIONS(2779), + [anon_sym_STAR] = ACTIONS(2781), + [anon_sym_AMP_AMP] = ACTIONS(2781), + [anon_sym_AMP] = ACTIONS(2779), + [anon_sym_SEMI] = ACTIONS(2781), + [anon_sym___extension__] = ACTIONS(2779), + [anon_sym_typedef] = ACTIONS(2779), + [anon_sym_virtual] = ACTIONS(2779), + [anon_sym_extern] = ACTIONS(2779), + [anon_sym___attribute__] = ACTIONS(2779), + [anon_sym___attribute] = ACTIONS(2779), + [anon_sym_using] = ACTIONS(2779), + [anon_sym_COLON_COLON] = ACTIONS(2781), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2781), + [anon_sym___declspec] = ACTIONS(2779), + [anon_sym___based] = ACTIONS(2779), + [anon_sym___cdecl] = ACTIONS(2779), + [anon_sym___clrcall] = ACTIONS(2779), + [anon_sym___stdcall] = ACTIONS(2779), + [anon_sym___fastcall] = ACTIONS(2779), + [anon_sym___thiscall] = ACTIONS(2779), + [anon_sym___vectorcall] = ACTIONS(2779), + [anon_sym_LBRACE] = ACTIONS(2781), + [anon_sym_signed] = ACTIONS(2779), + [anon_sym_unsigned] = ACTIONS(2779), + [anon_sym_long] = ACTIONS(2779), + [anon_sym_short] = ACTIONS(2779), + [anon_sym_LBRACK] = ACTIONS(2779), + [anon_sym_static] = ACTIONS(2779), + [anon_sym_register] = ACTIONS(2779), + [anon_sym_inline] = ACTIONS(2779), + [anon_sym___inline] = ACTIONS(2779), + [anon_sym___inline__] = ACTIONS(2779), + [anon_sym___forceinline] = ACTIONS(2779), + [anon_sym_thread_local] = ACTIONS(2779), + [anon_sym___thread] = ACTIONS(2779), + [anon_sym_const] = ACTIONS(2779), + [anon_sym_constexpr] = ACTIONS(2779), + [anon_sym_volatile] = ACTIONS(2779), + [anon_sym_restrict] = ACTIONS(2779), + [anon_sym___restrict__] = ACTIONS(2779), + [anon_sym__Atomic] = ACTIONS(2779), + [anon_sym__Noreturn] = ACTIONS(2779), + [anon_sym_noreturn] = ACTIONS(2779), + [anon_sym__Nonnull] = ACTIONS(2779), + [anon_sym_mutable] = ACTIONS(2779), + [anon_sym_constinit] = ACTIONS(2779), + [anon_sym_consteval] = ACTIONS(2779), + [anon_sym_alignas] = ACTIONS(2779), + [anon_sym__Alignas] = ACTIONS(2779), + [sym_primitive_type] = ACTIONS(2779), + [anon_sym_enum] = ACTIONS(2779), + [anon_sym_class] = ACTIONS(2779), + [anon_sym_struct] = ACTIONS(2779), + [anon_sym_union] = ACTIONS(2779), + [anon_sym_if] = ACTIONS(2779), + [anon_sym_switch] = ACTIONS(2779), + [anon_sym_case] = ACTIONS(2779), + [anon_sym_default] = ACTIONS(2779), + [anon_sym_while] = ACTIONS(2779), + [anon_sym_do] = ACTIONS(2779), + [anon_sym_for] = ACTIONS(2779), + [anon_sym_return] = ACTIONS(2779), + [anon_sym_break] = ACTIONS(2779), + [anon_sym_continue] = ACTIONS(2779), + [anon_sym_goto] = ACTIONS(2779), + [anon_sym_not] = ACTIONS(2779), + [anon_sym_compl] = ACTIONS(2779), + [anon_sym_DASH_DASH] = ACTIONS(2781), + [anon_sym_PLUS_PLUS] = ACTIONS(2781), + [anon_sym_sizeof] = ACTIONS(2779), + [anon_sym___alignof__] = ACTIONS(2779), + [anon_sym___alignof] = ACTIONS(2779), + [anon_sym__alignof] = ACTIONS(2779), + [anon_sym_alignof] = ACTIONS(2779), + [anon_sym__Alignof] = ACTIONS(2779), + [anon_sym_offsetof] = ACTIONS(2779), + [anon_sym__Generic] = ACTIONS(2779), + [anon_sym_asm] = ACTIONS(2779), + [anon_sym___asm__] = ACTIONS(2779), + [anon_sym___asm] = ACTIONS(2779), + [sym_number_literal] = ACTIONS(2781), + [anon_sym_L_SQUOTE] = ACTIONS(2781), + [anon_sym_u_SQUOTE] = ACTIONS(2781), + [anon_sym_U_SQUOTE] = ACTIONS(2781), + [anon_sym_u8_SQUOTE] = ACTIONS(2781), + [anon_sym_SQUOTE] = ACTIONS(2781), + [anon_sym_L_DQUOTE] = ACTIONS(2781), + [anon_sym_u_DQUOTE] = ACTIONS(2781), + [anon_sym_U_DQUOTE] = ACTIONS(2781), + [anon_sym_u8_DQUOTE] = ACTIONS(2781), + [anon_sym_DQUOTE] = ACTIONS(2781), + [sym_true] = ACTIONS(2779), + [sym_false] = ACTIONS(2779), + [anon_sym_NULL] = ACTIONS(2779), + [anon_sym_nullptr] = ACTIONS(2779), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2779), + [anon_sym_decltype] = ACTIONS(2779), + [anon_sym_explicit] = ACTIONS(2779), + [anon_sym_typename] = ACTIONS(2779), + [anon_sym_export] = ACTIONS(2779), + [anon_sym_module] = ACTIONS(2779), + [anon_sym_import] = ACTIONS(2779), + [anon_sym_template] = ACTIONS(2779), + [anon_sym_operator] = ACTIONS(2779), + [anon_sym_try] = ACTIONS(2779), + [anon_sym_delete] = ACTIONS(2779), + [anon_sym_throw] = ACTIONS(2779), + [anon_sym_namespace] = ACTIONS(2779), + [anon_sym_static_assert] = ACTIONS(2779), + [anon_sym_concept] = ACTIONS(2779), + [anon_sym_co_return] = ACTIONS(2779), + [anon_sym_co_yield] = ACTIONS(2779), + [anon_sym_R_DQUOTE] = ACTIONS(2781), + [anon_sym_LR_DQUOTE] = ACTIONS(2781), + [anon_sym_uR_DQUOTE] = ACTIONS(2781), + [anon_sym_UR_DQUOTE] = ACTIONS(2781), + [anon_sym_u8R_DQUOTE] = ACTIONS(2781), + [anon_sym_co_await] = ACTIONS(2779), + [anon_sym_new] = ACTIONS(2779), + [anon_sym_requires] = ACTIONS(2779), + [sym_this] = ACTIONS(2779), }, - [563] = { - [ts_builtin_sym_end] = ACTIONS(3441), - [sym_identifier] = ACTIONS(3443), - [aux_sym_preproc_include_token1] = ACTIONS(3443), - [aux_sym_preproc_def_token1] = ACTIONS(3443), - [aux_sym_preproc_if_token1] = ACTIONS(3443), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3443), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3443), - [sym_preproc_directive] = ACTIONS(3443), - [anon_sym_LPAREN2] = ACTIONS(3441), - [anon_sym_BANG] = ACTIONS(3441), - [anon_sym_TILDE] = ACTIONS(3441), - [anon_sym_DASH] = ACTIONS(3443), - [anon_sym_PLUS] = ACTIONS(3443), - [anon_sym_STAR] = ACTIONS(3441), - [anon_sym_AMP_AMP] = ACTIONS(3441), - [anon_sym_AMP] = ACTIONS(3443), - [anon_sym_SEMI] = ACTIONS(3441), - [anon_sym___extension__] = ACTIONS(3443), - [anon_sym_typedef] = ACTIONS(3443), - [anon_sym_virtual] = ACTIONS(3443), - [anon_sym_extern] = ACTIONS(3443), - [anon_sym___attribute__] = ACTIONS(3443), - [anon_sym___attribute] = ACTIONS(3443), - [anon_sym_using] = ACTIONS(3443), - [anon_sym_COLON_COLON] = ACTIONS(3441), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3441), - [anon_sym___declspec] = ACTIONS(3443), - [anon_sym___based] = ACTIONS(3443), - [anon_sym___cdecl] = ACTIONS(3443), - [anon_sym___clrcall] = ACTIONS(3443), - [anon_sym___stdcall] = ACTIONS(3443), - [anon_sym___fastcall] = ACTIONS(3443), - [anon_sym___thiscall] = ACTIONS(3443), - [anon_sym___vectorcall] = ACTIONS(3443), - [anon_sym_LBRACE] = ACTIONS(3441), - [anon_sym_signed] = ACTIONS(3443), - [anon_sym_unsigned] = ACTIONS(3443), - [anon_sym_long] = ACTIONS(3443), - [anon_sym_short] = ACTIONS(3443), - [anon_sym_LBRACK] = ACTIONS(3443), - [anon_sym_static] = ACTIONS(3443), - [anon_sym_register] = ACTIONS(3443), - [anon_sym_inline] = ACTIONS(3443), - [anon_sym___inline] = ACTIONS(3443), - [anon_sym___inline__] = ACTIONS(3443), - [anon_sym___forceinline] = ACTIONS(3443), - [anon_sym_thread_local] = ACTIONS(3443), - [anon_sym___thread] = ACTIONS(3443), - [anon_sym_const] = ACTIONS(3443), - [anon_sym_constexpr] = ACTIONS(3443), - [anon_sym_volatile] = ACTIONS(3443), - [anon_sym_restrict] = ACTIONS(3443), - [anon_sym___restrict__] = ACTIONS(3443), - [anon_sym__Atomic] = ACTIONS(3443), - [anon_sym__Noreturn] = ACTIONS(3443), - [anon_sym_noreturn] = ACTIONS(3443), - [anon_sym__Nonnull] = ACTIONS(3443), - [anon_sym_mutable] = ACTIONS(3443), - [anon_sym_constinit] = ACTIONS(3443), - [anon_sym_consteval] = ACTIONS(3443), - [anon_sym_alignas] = ACTIONS(3443), - [anon_sym__Alignas] = ACTIONS(3443), - [sym_primitive_type] = ACTIONS(3443), - [anon_sym_enum] = ACTIONS(3443), - [anon_sym_class] = ACTIONS(3443), - [anon_sym_struct] = ACTIONS(3443), - [anon_sym_union] = ACTIONS(3443), - [anon_sym_if] = ACTIONS(3443), - [anon_sym_switch] = ACTIONS(3443), - [anon_sym_case] = ACTIONS(3443), - [anon_sym_default] = ACTIONS(3443), - [anon_sym_while] = ACTIONS(3443), - [anon_sym_do] = ACTIONS(3443), - [anon_sym_for] = ACTIONS(3443), - [anon_sym_return] = ACTIONS(3443), - [anon_sym_break] = ACTIONS(3443), - [anon_sym_continue] = ACTIONS(3443), - [anon_sym_goto] = ACTIONS(3443), - [anon_sym_not] = ACTIONS(3443), - [anon_sym_compl] = ACTIONS(3443), - [anon_sym_DASH_DASH] = ACTIONS(3441), - [anon_sym_PLUS_PLUS] = ACTIONS(3441), - [anon_sym_sizeof] = ACTIONS(3443), - [anon_sym___alignof__] = ACTIONS(3443), - [anon_sym___alignof] = ACTIONS(3443), - [anon_sym__alignof] = ACTIONS(3443), - [anon_sym_alignof] = ACTIONS(3443), - [anon_sym__Alignof] = ACTIONS(3443), - [anon_sym_offsetof] = ACTIONS(3443), - [anon_sym__Generic] = ACTIONS(3443), - [anon_sym_asm] = ACTIONS(3443), - [anon_sym___asm__] = ACTIONS(3443), - [anon_sym___asm] = ACTIONS(3443), - [sym_number_literal] = ACTIONS(3441), - [anon_sym_L_SQUOTE] = ACTIONS(3441), - [anon_sym_u_SQUOTE] = ACTIONS(3441), - [anon_sym_U_SQUOTE] = ACTIONS(3441), - [anon_sym_u8_SQUOTE] = ACTIONS(3441), - [anon_sym_SQUOTE] = ACTIONS(3441), - [anon_sym_L_DQUOTE] = ACTIONS(3441), - [anon_sym_u_DQUOTE] = ACTIONS(3441), - [anon_sym_U_DQUOTE] = ACTIONS(3441), - [anon_sym_u8_DQUOTE] = ACTIONS(3441), - [anon_sym_DQUOTE] = ACTIONS(3441), - [sym_true] = ACTIONS(3443), - [sym_false] = ACTIONS(3443), - [anon_sym_NULL] = ACTIONS(3443), - [anon_sym_nullptr] = ACTIONS(3443), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3443), - [anon_sym_decltype] = ACTIONS(3443), - [anon_sym_explicit] = ACTIONS(3443), - [anon_sym_typename] = ACTIONS(3443), - [anon_sym_export] = ACTIONS(3443), - [anon_sym_module] = ACTIONS(3443), - [anon_sym_import] = ACTIONS(3443), - [anon_sym_template] = ACTIONS(3443), - [anon_sym_operator] = ACTIONS(3443), - [anon_sym_try] = ACTIONS(3443), - [anon_sym_delete] = ACTIONS(3443), - [anon_sym_throw] = ACTIONS(3443), - [anon_sym_namespace] = ACTIONS(3443), - [anon_sym_static_assert] = ACTIONS(3443), - [anon_sym_concept] = ACTIONS(3443), - [anon_sym_co_return] = ACTIONS(3443), - [anon_sym_co_yield] = ACTIONS(3443), - [anon_sym_R_DQUOTE] = ACTIONS(3441), - [anon_sym_LR_DQUOTE] = ACTIONS(3441), - [anon_sym_uR_DQUOTE] = ACTIONS(3441), - [anon_sym_UR_DQUOTE] = ACTIONS(3441), - [anon_sym_u8R_DQUOTE] = ACTIONS(3441), - [anon_sym_co_await] = ACTIONS(3443), - [anon_sym_new] = ACTIONS(3443), - [anon_sym_requires] = ACTIONS(3443), - [sym_this] = ACTIONS(3443), + [572] = { + [ts_builtin_sym_end] = ACTIONS(2865), + [sym_identifier] = ACTIONS(2863), + [aux_sym_preproc_include_token1] = ACTIONS(2863), + [aux_sym_preproc_def_token1] = ACTIONS(2863), + [aux_sym_preproc_if_token1] = ACTIONS(2863), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2863), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2863), + [sym_preproc_directive] = ACTIONS(2863), + [anon_sym_LPAREN2] = ACTIONS(2865), + [anon_sym_BANG] = ACTIONS(2865), + [anon_sym_TILDE] = ACTIONS(2865), + [anon_sym_DASH] = ACTIONS(2863), + [anon_sym_PLUS] = ACTIONS(2863), + [anon_sym_STAR] = ACTIONS(2865), + [anon_sym_AMP_AMP] = ACTIONS(2865), + [anon_sym_AMP] = ACTIONS(2863), + [anon_sym_SEMI] = ACTIONS(2865), + [anon_sym___extension__] = ACTIONS(2863), + [anon_sym_typedef] = ACTIONS(2863), + [anon_sym_virtual] = ACTIONS(2863), + [anon_sym_extern] = ACTIONS(2863), + [anon_sym___attribute__] = ACTIONS(2863), + [anon_sym___attribute] = ACTIONS(2863), + [anon_sym_using] = ACTIONS(2863), + [anon_sym_COLON_COLON] = ACTIONS(2865), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2865), + [anon_sym___declspec] = ACTIONS(2863), + [anon_sym___based] = ACTIONS(2863), + [anon_sym___cdecl] = ACTIONS(2863), + [anon_sym___clrcall] = ACTIONS(2863), + [anon_sym___stdcall] = ACTIONS(2863), + [anon_sym___fastcall] = ACTIONS(2863), + [anon_sym___thiscall] = ACTIONS(2863), + [anon_sym___vectorcall] = ACTIONS(2863), + [anon_sym_LBRACE] = ACTIONS(2865), + [anon_sym_signed] = ACTIONS(2863), + [anon_sym_unsigned] = ACTIONS(2863), + [anon_sym_long] = ACTIONS(2863), + [anon_sym_short] = ACTIONS(2863), + [anon_sym_LBRACK] = ACTIONS(2863), + [anon_sym_static] = ACTIONS(2863), + [anon_sym_register] = ACTIONS(2863), + [anon_sym_inline] = ACTIONS(2863), + [anon_sym___inline] = ACTIONS(2863), + [anon_sym___inline__] = ACTIONS(2863), + [anon_sym___forceinline] = ACTIONS(2863), + [anon_sym_thread_local] = ACTIONS(2863), + [anon_sym___thread] = ACTIONS(2863), + [anon_sym_const] = ACTIONS(2863), + [anon_sym_constexpr] = ACTIONS(2863), + [anon_sym_volatile] = ACTIONS(2863), + [anon_sym_restrict] = ACTIONS(2863), + [anon_sym___restrict__] = ACTIONS(2863), + [anon_sym__Atomic] = ACTIONS(2863), + [anon_sym__Noreturn] = ACTIONS(2863), + [anon_sym_noreturn] = ACTIONS(2863), + [anon_sym__Nonnull] = ACTIONS(2863), + [anon_sym_mutable] = ACTIONS(2863), + [anon_sym_constinit] = ACTIONS(2863), + [anon_sym_consteval] = ACTIONS(2863), + [anon_sym_alignas] = ACTIONS(2863), + [anon_sym__Alignas] = ACTIONS(2863), + [sym_primitive_type] = ACTIONS(2863), + [anon_sym_enum] = ACTIONS(2863), + [anon_sym_class] = ACTIONS(2863), + [anon_sym_struct] = ACTIONS(2863), + [anon_sym_union] = ACTIONS(2863), + [anon_sym_if] = ACTIONS(2863), + [anon_sym_switch] = ACTIONS(2863), + [anon_sym_case] = ACTIONS(2863), + [anon_sym_default] = ACTIONS(2863), + [anon_sym_while] = ACTIONS(2863), + [anon_sym_do] = ACTIONS(2863), + [anon_sym_for] = ACTIONS(2863), + [anon_sym_return] = ACTIONS(2863), + [anon_sym_break] = ACTIONS(2863), + [anon_sym_continue] = ACTIONS(2863), + [anon_sym_goto] = ACTIONS(2863), + [anon_sym_not] = ACTIONS(2863), + [anon_sym_compl] = ACTIONS(2863), + [anon_sym_DASH_DASH] = ACTIONS(2865), + [anon_sym_PLUS_PLUS] = ACTIONS(2865), + [anon_sym_sizeof] = ACTIONS(2863), + [anon_sym___alignof__] = ACTIONS(2863), + [anon_sym___alignof] = ACTIONS(2863), + [anon_sym__alignof] = ACTIONS(2863), + [anon_sym_alignof] = ACTIONS(2863), + [anon_sym__Alignof] = ACTIONS(2863), + [anon_sym_offsetof] = ACTIONS(2863), + [anon_sym__Generic] = ACTIONS(2863), + [anon_sym_asm] = ACTIONS(2863), + [anon_sym___asm__] = ACTIONS(2863), + [anon_sym___asm] = ACTIONS(2863), + [sym_number_literal] = ACTIONS(2865), + [anon_sym_L_SQUOTE] = ACTIONS(2865), + [anon_sym_u_SQUOTE] = ACTIONS(2865), + [anon_sym_U_SQUOTE] = ACTIONS(2865), + [anon_sym_u8_SQUOTE] = ACTIONS(2865), + [anon_sym_SQUOTE] = ACTIONS(2865), + [anon_sym_L_DQUOTE] = ACTIONS(2865), + [anon_sym_u_DQUOTE] = ACTIONS(2865), + [anon_sym_U_DQUOTE] = ACTIONS(2865), + [anon_sym_u8_DQUOTE] = ACTIONS(2865), + [anon_sym_DQUOTE] = ACTIONS(2865), + [sym_true] = ACTIONS(2863), + [sym_false] = ACTIONS(2863), + [anon_sym_NULL] = ACTIONS(2863), + [anon_sym_nullptr] = ACTIONS(2863), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2863), + [anon_sym_decltype] = ACTIONS(2863), + [anon_sym_explicit] = ACTIONS(2863), + [anon_sym_typename] = ACTIONS(2863), + [anon_sym_export] = ACTIONS(2863), + [anon_sym_module] = ACTIONS(2863), + [anon_sym_import] = ACTIONS(2863), + [anon_sym_template] = ACTIONS(2863), + [anon_sym_operator] = ACTIONS(2863), + [anon_sym_try] = ACTIONS(2863), + [anon_sym_delete] = ACTIONS(2863), + [anon_sym_throw] = ACTIONS(2863), + [anon_sym_namespace] = ACTIONS(2863), + [anon_sym_static_assert] = ACTIONS(2863), + [anon_sym_concept] = ACTIONS(2863), + [anon_sym_co_return] = ACTIONS(2863), + [anon_sym_co_yield] = ACTIONS(2863), + [anon_sym_R_DQUOTE] = ACTIONS(2865), + [anon_sym_LR_DQUOTE] = ACTIONS(2865), + [anon_sym_uR_DQUOTE] = ACTIONS(2865), + [anon_sym_UR_DQUOTE] = ACTIONS(2865), + [anon_sym_u8R_DQUOTE] = ACTIONS(2865), + [anon_sym_co_await] = ACTIONS(2863), + [anon_sym_new] = ACTIONS(2863), + [anon_sym_requires] = ACTIONS(2863), + [sym_this] = ACTIONS(2863), }, - [564] = { - [sym_identifier] = ACTIONS(2707), - [aux_sym_preproc_include_token1] = ACTIONS(2707), - [aux_sym_preproc_def_token1] = ACTIONS(2707), - [aux_sym_preproc_if_token1] = ACTIONS(2707), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2707), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2707), - [sym_preproc_directive] = ACTIONS(2707), - [anon_sym_LPAREN2] = ACTIONS(2709), - [anon_sym_BANG] = ACTIONS(2709), - [anon_sym_TILDE] = ACTIONS(2709), - [anon_sym_DASH] = ACTIONS(2707), - [anon_sym_PLUS] = ACTIONS(2707), - [anon_sym_STAR] = ACTIONS(2709), - [anon_sym_AMP_AMP] = ACTIONS(2709), - [anon_sym_AMP] = ACTIONS(2707), - [anon_sym_SEMI] = ACTIONS(2709), - [anon_sym___extension__] = ACTIONS(2707), - [anon_sym_typedef] = ACTIONS(2707), - [anon_sym_virtual] = ACTIONS(2707), - [anon_sym_extern] = ACTIONS(2707), - [anon_sym___attribute__] = ACTIONS(2707), - [anon_sym___attribute] = ACTIONS(2707), - [anon_sym_using] = ACTIONS(2707), - [anon_sym_COLON_COLON] = ACTIONS(2709), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2709), - [anon_sym___declspec] = ACTIONS(2707), - [anon_sym___based] = ACTIONS(2707), - [anon_sym___cdecl] = ACTIONS(2707), - [anon_sym___clrcall] = ACTIONS(2707), - [anon_sym___stdcall] = ACTIONS(2707), - [anon_sym___fastcall] = ACTIONS(2707), - [anon_sym___thiscall] = ACTIONS(2707), - [anon_sym___vectorcall] = ACTIONS(2707), - [anon_sym_LBRACE] = ACTIONS(2709), - [anon_sym_RBRACE] = ACTIONS(2709), - [anon_sym_signed] = ACTIONS(2707), - [anon_sym_unsigned] = ACTIONS(2707), - [anon_sym_long] = ACTIONS(2707), - [anon_sym_short] = ACTIONS(2707), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_static] = ACTIONS(2707), - [anon_sym_register] = ACTIONS(2707), - [anon_sym_inline] = ACTIONS(2707), - [anon_sym___inline] = ACTIONS(2707), - [anon_sym___inline__] = ACTIONS(2707), - [anon_sym___forceinline] = ACTIONS(2707), - [anon_sym_thread_local] = ACTIONS(2707), - [anon_sym___thread] = ACTIONS(2707), - [anon_sym_const] = ACTIONS(2707), - [anon_sym_constexpr] = ACTIONS(2707), - [anon_sym_volatile] = ACTIONS(2707), - [anon_sym_restrict] = ACTIONS(2707), - [anon_sym___restrict__] = ACTIONS(2707), - [anon_sym__Atomic] = ACTIONS(2707), - [anon_sym__Noreturn] = ACTIONS(2707), - [anon_sym_noreturn] = ACTIONS(2707), - [anon_sym__Nonnull] = ACTIONS(2707), - [anon_sym_mutable] = ACTIONS(2707), - [anon_sym_constinit] = ACTIONS(2707), - [anon_sym_consteval] = ACTIONS(2707), - [anon_sym_alignas] = ACTIONS(2707), - [anon_sym__Alignas] = ACTIONS(2707), - [sym_primitive_type] = ACTIONS(2707), - [anon_sym_enum] = ACTIONS(2707), - [anon_sym_class] = ACTIONS(2707), - [anon_sym_struct] = ACTIONS(2707), - [anon_sym_union] = ACTIONS(2707), - [anon_sym_if] = ACTIONS(2707), - [anon_sym_else] = ACTIONS(2707), - [anon_sym_switch] = ACTIONS(2707), - [anon_sym_case] = ACTIONS(2707), - [anon_sym_default] = ACTIONS(2707), - [anon_sym_while] = ACTIONS(2707), - [anon_sym_do] = ACTIONS(2707), - [anon_sym_for] = ACTIONS(2707), - [anon_sym_return] = ACTIONS(2707), - [anon_sym_break] = ACTIONS(2707), - [anon_sym_continue] = ACTIONS(2707), - [anon_sym_goto] = ACTIONS(2707), - [anon_sym___try] = ACTIONS(2707), - [anon_sym___leave] = ACTIONS(2707), - [anon_sym_not] = ACTIONS(2707), - [anon_sym_compl] = ACTIONS(2707), - [anon_sym_DASH_DASH] = ACTIONS(2709), - [anon_sym_PLUS_PLUS] = ACTIONS(2709), - [anon_sym_sizeof] = ACTIONS(2707), - [anon_sym___alignof__] = ACTIONS(2707), - [anon_sym___alignof] = ACTIONS(2707), - [anon_sym__alignof] = ACTIONS(2707), - [anon_sym_alignof] = ACTIONS(2707), - [anon_sym__Alignof] = ACTIONS(2707), - [anon_sym_offsetof] = ACTIONS(2707), - [anon_sym__Generic] = ACTIONS(2707), - [anon_sym_asm] = ACTIONS(2707), - [anon_sym___asm__] = ACTIONS(2707), - [anon_sym___asm] = ACTIONS(2707), - [sym_number_literal] = ACTIONS(2709), - [anon_sym_L_SQUOTE] = ACTIONS(2709), - [anon_sym_u_SQUOTE] = ACTIONS(2709), - [anon_sym_U_SQUOTE] = ACTIONS(2709), - [anon_sym_u8_SQUOTE] = ACTIONS(2709), - [anon_sym_SQUOTE] = ACTIONS(2709), - [anon_sym_L_DQUOTE] = ACTIONS(2709), - [anon_sym_u_DQUOTE] = ACTIONS(2709), - [anon_sym_U_DQUOTE] = ACTIONS(2709), - [anon_sym_u8_DQUOTE] = ACTIONS(2709), - [anon_sym_DQUOTE] = ACTIONS(2709), - [sym_true] = ACTIONS(2707), - [sym_false] = ACTIONS(2707), - [anon_sym_NULL] = ACTIONS(2707), - [anon_sym_nullptr] = ACTIONS(2707), + [573] = { + [ts_builtin_sym_end] = ACTIONS(2869), + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_include_token1] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym___attribute] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym___cdecl] = ACTIONS(2867), + [anon_sym___clrcall] = ACTIONS(2867), + [anon_sym___stdcall] = ACTIONS(2867), + [anon_sym___fastcall] = ACTIONS(2867), + [anon_sym___thiscall] = ACTIONS(2867), + [anon_sym___vectorcall] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym__Nonnull] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym__Alignas] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [anon_sym___asm] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2707), - [anon_sym_decltype] = ACTIONS(2707), - [anon_sym_explicit] = ACTIONS(2707), - [anon_sym_typename] = ACTIONS(2707), - [anon_sym_template] = ACTIONS(2707), - [anon_sym_operator] = ACTIONS(2707), - [anon_sym_try] = ACTIONS(2707), - [anon_sym_delete] = ACTIONS(2707), - [anon_sym_throw] = ACTIONS(2707), - [anon_sym_namespace] = ACTIONS(2707), - [anon_sym_static_assert] = ACTIONS(2707), - [anon_sym_concept] = ACTIONS(2707), - [anon_sym_co_return] = ACTIONS(2707), - [anon_sym_co_yield] = ACTIONS(2707), - [anon_sym_R_DQUOTE] = ACTIONS(2709), - [anon_sym_LR_DQUOTE] = ACTIONS(2709), - [anon_sym_uR_DQUOTE] = ACTIONS(2709), - [anon_sym_UR_DQUOTE] = ACTIONS(2709), - [anon_sym_u8R_DQUOTE] = ACTIONS(2709), - [anon_sym_co_await] = ACTIONS(2707), - [anon_sym_new] = ACTIONS(2707), - [anon_sym_requires] = ACTIONS(2707), - [sym_this] = ACTIONS(2707), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_export] = ACTIONS(2867), + [anon_sym_module] = ACTIONS(2867), + [anon_sym_import] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), + [anon_sym_concept] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, - [565] = { - [ts_builtin_sym_end] = ACTIONS(3445), - [sym_identifier] = ACTIONS(3447), - [aux_sym_preproc_include_token1] = ACTIONS(3447), - [aux_sym_preproc_def_token1] = ACTIONS(3447), - [aux_sym_preproc_if_token1] = ACTIONS(3447), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3447), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3447), - [sym_preproc_directive] = ACTIONS(3447), - [anon_sym_LPAREN2] = ACTIONS(3445), - [anon_sym_BANG] = ACTIONS(3445), - [anon_sym_TILDE] = ACTIONS(3445), - [anon_sym_DASH] = ACTIONS(3447), - [anon_sym_PLUS] = ACTIONS(3447), - [anon_sym_STAR] = ACTIONS(3445), - [anon_sym_AMP_AMP] = ACTIONS(3445), - [anon_sym_AMP] = ACTIONS(3447), - [anon_sym_SEMI] = ACTIONS(3445), - [anon_sym___extension__] = ACTIONS(3447), - [anon_sym_typedef] = ACTIONS(3447), - [anon_sym_virtual] = ACTIONS(3447), - [anon_sym_extern] = ACTIONS(3447), - [anon_sym___attribute__] = ACTIONS(3447), - [anon_sym___attribute] = ACTIONS(3447), - [anon_sym_using] = ACTIONS(3447), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3445), - [anon_sym___declspec] = ACTIONS(3447), - [anon_sym___based] = ACTIONS(3447), - [anon_sym___cdecl] = ACTIONS(3447), - [anon_sym___clrcall] = ACTIONS(3447), - [anon_sym___stdcall] = ACTIONS(3447), - [anon_sym___fastcall] = ACTIONS(3447), - [anon_sym___thiscall] = ACTIONS(3447), - [anon_sym___vectorcall] = ACTIONS(3447), - [anon_sym_LBRACE] = ACTIONS(3445), - [anon_sym_signed] = ACTIONS(3447), - [anon_sym_unsigned] = ACTIONS(3447), - [anon_sym_long] = ACTIONS(3447), - [anon_sym_short] = ACTIONS(3447), - [anon_sym_LBRACK] = ACTIONS(3447), - [anon_sym_static] = ACTIONS(3447), - [anon_sym_register] = ACTIONS(3447), - [anon_sym_inline] = ACTIONS(3447), - [anon_sym___inline] = ACTIONS(3447), - [anon_sym___inline__] = ACTIONS(3447), - [anon_sym___forceinline] = ACTIONS(3447), - [anon_sym_thread_local] = ACTIONS(3447), - [anon_sym___thread] = ACTIONS(3447), - [anon_sym_const] = ACTIONS(3447), - [anon_sym_constexpr] = ACTIONS(3447), - [anon_sym_volatile] = ACTIONS(3447), - [anon_sym_restrict] = ACTIONS(3447), - [anon_sym___restrict__] = ACTIONS(3447), - [anon_sym__Atomic] = ACTIONS(3447), - [anon_sym__Noreturn] = ACTIONS(3447), - [anon_sym_noreturn] = ACTIONS(3447), - [anon_sym__Nonnull] = ACTIONS(3447), - [anon_sym_mutable] = ACTIONS(3447), - [anon_sym_constinit] = ACTIONS(3447), - [anon_sym_consteval] = ACTIONS(3447), - [anon_sym_alignas] = ACTIONS(3447), - [anon_sym__Alignas] = ACTIONS(3447), - [sym_primitive_type] = ACTIONS(3447), - [anon_sym_enum] = ACTIONS(3447), - [anon_sym_class] = ACTIONS(3447), - [anon_sym_struct] = ACTIONS(3447), - [anon_sym_union] = ACTIONS(3447), - [anon_sym_if] = ACTIONS(3447), - [anon_sym_switch] = ACTIONS(3447), - [anon_sym_case] = ACTIONS(3447), - [anon_sym_default] = ACTIONS(3447), - [anon_sym_while] = ACTIONS(3447), - [anon_sym_do] = ACTIONS(3447), - [anon_sym_for] = ACTIONS(3447), - [anon_sym_return] = ACTIONS(3447), - [anon_sym_break] = ACTIONS(3447), - [anon_sym_continue] = ACTIONS(3447), - [anon_sym_goto] = ACTIONS(3447), - [anon_sym_not] = ACTIONS(3447), - [anon_sym_compl] = ACTIONS(3447), - [anon_sym_DASH_DASH] = ACTIONS(3445), - [anon_sym_PLUS_PLUS] = ACTIONS(3445), - [anon_sym_sizeof] = ACTIONS(3447), - [anon_sym___alignof__] = ACTIONS(3447), - [anon_sym___alignof] = ACTIONS(3447), - [anon_sym__alignof] = ACTIONS(3447), - [anon_sym_alignof] = ACTIONS(3447), - [anon_sym__Alignof] = ACTIONS(3447), - [anon_sym_offsetof] = ACTIONS(3447), - [anon_sym__Generic] = ACTIONS(3447), - [anon_sym_asm] = ACTIONS(3447), - [anon_sym___asm__] = ACTIONS(3447), - [anon_sym___asm] = ACTIONS(3447), - [sym_number_literal] = ACTIONS(3445), - [anon_sym_L_SQUOTE] = ACTIONS(3445), - [anon_sym_u_SQUOTE] = ACTIONS(3445), - [anon_sym_U_SQUOTE] = ACTIONS(3445), - [anon_sym_u8_SQUOTE] = ACTIONS(3445), - [anon_sym_SQUOTE] = ACTIONS(3445), - [anon_sym_L_DQUOTE] = ACTIONS(3445), - [anon_sym_u_DQUOTE] = ACTIONS(3445), - [anon_sym_U_DQUOTE] = ACTIONS(3445), - [anon_sym_u8_DQUOTE] = ACTIONS(3445), - [anon_sym_DQUOTE] = ACTIONS(3445), - [sym_true] = ACTIONS(3447), - [sym_false] = ACTIONS(3447), - [anon_sym_NULL] = ACTIONS(3447), - [anon_sym_nullptr] = ACTIONS(3447), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3447), - [anon_sym_decltype] = ACTIONS(3447), - [anon_sym_explicit] = ACTIONS(3447), - [anon_sym_typename] = ACTIONS(3447), - [anon_sym_export] = ACTIONS(3447), - [anon_sym_module] = ACTIONS(3447), - [anon_sym_import] = ACTIONS(3447), - [anon_sym_template] = ACTIONS(3447), - [anon_sym_operator] = ACTIONS(3447), - [anon_sym_try] = ACTIONS(3447), - [anon_sym_delete] = ACTIONS(3447), - [anon_sym_throw] = ACTIONS(3447), - [anon_sym_namespace] = ACTIONS(3447), - [anon_sym_static_assert] = ACTIONS(3447), - [anon_sym_concept] = ACTIONS(3447), - [anon_sym_co_return] = ACTIONS(3447), - [anon_sym_co_yield] = ACTIONS(3447), - [anon_sym_R_DQUOTE] = ACTIONS(3445), - [anon_sym_LR_DQUOTE] = ACTIONS(3445), - [anon_sym_uR_DQUOTE] = ACTIONS(3445), - [anon_sym_UR_DQUOTE] = ACTIONS(3445), - [anon_sym_u8R_DQUOTE] = ACTIONS(3445), - [anon_sym_co_await] = ACTIONS(3447), - [anon_sym_new] = ACTIONS(3447), - [anon_sym_requires] = ACTIONS(3447), - [sym_this] = ACTIONS(3447), + [574] = { + [ts_builtin_sym_end] = ACTIONS(3461), + [sym_identifier] = ACTIONS(3463), + [aux_sym_preproc_include_token1] = ACTIONS(3463), + [aux_sym_preproc_def_token1] = ACTIONS(3463), + [aux_sym_preproc_if_token1] = ACTIONS(3463), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3463), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3463), + [sym_preproc_directive] = ACTIONS(3463), + [anon_sym_LPAREN2] = ACTIONS(3461), + [anon_sym_BANG] = ACTIONS(3461), + [anon_sym_TILDE] = ACTIONS(3461), + [anon_sym_DASH] = ACTIONS(3463), + [anon_sym_PLUS] = ACTIONS(3463), + [anon_sym_STAR] = ACTIONS(3461), + [anon_sym_AMP_AMP] = ACTIONS(3461), + [anon_sym_AMP] = ACTIONS(3463), + [anon_sym_SEMI] = ACTIONS(3461), + [anon_sym___extension__] = ACTIONS(3463), + [anon_sym_typedef] = ACTIONS(3463), + [anon_sym_virtual] = ACTIONS(3463), + [anon_sym_extern] = ACTIONS(3463), + [anon_sym___attribute__] = ACTIONS(3463), + [anon_sym___attribute] = ACTIONS(3463), + [anon_sym_using] = ACTIONS(3463), + [anon_sym_COLON_COLON] = ACTIONS(3461), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3461), + [anon_sym___declspec] = ACTIONS(3463), + [anon_sym___based] = ACTIONS(3463), + [anon_sym___cdecl] = ACTIONS(3463), + [anon_sym___clrcall] = ACTIONS(3463), + [anon_sym___stdcall] = ACTIONS(3463), + [anon_sym___fastcall] = ACTIONS(3463), + [anon_sym___thiscall] = ACTIONS(3463), + [anon_sym___vectorcall] = ACTIONS(3463), + [anon_sym_LBRACE] = ACTIONS(3461), + [anon_sym_signed] = ACTIONS(3463), + [anon_sym_unsigned] = ACTIONS(3463), + [anon_sym_long] = ACTIONS(3463), + [anon_sym_short] = ACTIONS(3463), + [anon_sym_LBRACK] = ACTIONS(3463), + [anon_sym_static] = ACTIONS(3463), + [anon_sym_register] = ACTIONS(3463), + [anon_sym_inline] = ACTIONS(3463), + [anon_sym___inline] = ACTIONS(3463), + [anon_sym___inline__] = ACTIONS(3463), + [anon_sym___forceinline] = ACTIONS(3463), + [anon_sym_thread_local] = ACTIONS(3463), + [anon_sym___thread] = ACTIONS(3463), + [anon_sym_const] = ACTIONS(3463), + [anon_sym_constexpr] = ACTIONS(3463), + [anon_sym_volatile] = ACTIONS(3463), + [anon_sym_restrict] = ACTIONS(3463), + [anon_sym___restrict__] = ACTIONS(3463), + [anon_sym__Atomic] = ACTIONS(3463), + [anon_sym__Noreturn] = ACTIONS(3463), + [anon_sym_noreturn] = ACTIONS(3463), + [anon_sym__Nonnull] = ACTIONS(3463), + [anon_sym_mutable] = ACTIONS(3463), + [anon_sym_constinit] = ACTIONS(3463), + [anon_sym_consteval] = ACTIONS(3463), + [anon_sym_alignas] = ACTIONS(3463), + [anon_sym__Alignas] = ACTIONS(3463), + [sym_primitive_type] = ACTIONS(3463), + [anon_sym_enum] = ACTIONS(3463), + [anon_sym_class] = ACTIONS(3463), + [anon_sym_struct] = ACTIONS(3463), + [anon_sym_union] = ACTIONS(3463), + [anon_sym_if] = ACTIONS(3463), + [anon_sym_switch] = ACTIONS(3463), + [anon_sym_case] = ACTIONS(3463), + [anon_sym_default] = ACTIONS(3463), + [anon_sym_while] = ACTIONS(3463), + [anon_sym_do] = ACTIONS(3463), + [anon_sym_for] = ACTIONS(3463), + [anon_sym_return] = ACTIONS(3463), + [anon_sym_break] = ACTIONS(3463), + [anon_sym_continue] = ACTIONS(3463), + [anon_sym_goto] = ACTIONS(3463), + [anon_sym_not] = ACTIONS(3463), + [anon_sym_compl] = ACTIONS(3463), + [anon_sym_DASH_DASH] = ACTIONS(3461), + [anon_sym_PLUS_PLUS] = ACTIONS(3461), + [anon_sym_sizeof] = ACTIONS(3463), + [anon_sym___alignof__] = ACTIONS(3463), + [anon_sym___alignof] = ACTIONS(3463), + [anon_sym__alignof] = ACTIONS(3463), + [anon_sym_alignof] = ACTIONS(3463), + [anon_sym__Alignof] = ACTIONS(3463), + [anon_sym_offsetof] = ACTIONS(3463), + [anon_sym__Generic] = ACTIONS(3463), + [anon_sym_asm] = ACTIONS(3463), + [anon_sym___asm__] = ACTIONS(3463), + [anon_sym___asm] = ACTIONS(3463), + [sym_number_literal] = ACTIONS(3461), + [anon_sym_L_SQUOTE] = ACTIONS(3461), + [anon_sym_u_SQUOTE] = ACTIONS(3461), + [anon_sym_U_SQUOTE] = ACTIONS(3461), + [anon_sym_u8_SQUOTE] = ACTIONS(3461), + [anon_sym_SQUOTE] = ACTIONS(3461), + [anon_sym_L_DQUOTE] = ACTIONS(3461), + [anon_sym_u_DQUOTE] = ACTIONS(3461), + [anon_sym_U_DQUOTE] = ACTIONS(3461), + [anon_sym_u8_DQUOTE] = ACTIONS(3461), + [anon_sym_DQUOTE] = ACTIONS(3461), + [sym_true] = ACTIONS(3463), + [sym_false] = ACTIONS(3463), + [anon_sym_NULL] = ACTIONS(3463), + [anon_sym_nullptr] = ACTIONS(3463), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3463), + [anon_sym_decltype] = ACTIONS(3463), + [anon_sym_explicit] = ACTIONS(3463), + [anon_sym_typename] = ACTIONS(3463), + [anon_sym_export] = ACTIONS(3463), + [anon_sym_module] = ACTIONS(3463), + [anon_sym_import] = ACTIONS(3463), + [anon_sym_template] = ACTIONS(3463), + [anon_sym_operator] = ACTIONS(3463), + [anon_sym_try] = ACTIONS(3463), + [anon_sym_delete] = ACTIONS(3463), + [anon_sym_throw] = ACTIONS(3463), + [anon_sym_namespace] = ACTIONS(3463), + [anon_sym_static_assert] = ACTIONS(3463), + [anon_sym_concept] = ACTIONS(3463), + [anon_sym_co_return] = ACTIONS(3463), + [anon_sym_co_yield] = ACTIONS(3463), + [anon_sym_R_DQUOTE] = ACTIONS(3461), + [anon_sym_LR_DQUOTE] = ACTIONS(3461), + [anon_sym_uR_DQUOTE] = ACTIONS(3461), + [anon_sym_UR_DQUOTE] = ACTIONS(3461), + [anon_sym_u8R_DQUOTE] = ACTIONS(3461), + [anon_sym_co_await] = ACTIONS(3463), + [anon_sym_new] = ACTIONS(3463), + [anon_sym_requires] = ACTIONS(3463), + [sym_this] = ACTIONS(3463), }, - [566] = { - [ts_builtin_sym_end] = ACTIONS(2925), - [sym_identifier] = ACTIONS(2923), - [aux_sym_preproc_include_token1] = ACTIONS(2923), - [aux_sym_preproc_def_token1] = ACTIONS(2923), - [aux_sym_preproc_if_token1] = ACTIONS(2923), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2923), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2923), - [sym_preproc_directive] = ACTIONS(2923), - [anon_sym_LPAREN2] = ACTIONS(2925), - [anon_sym_BANG] = ACTIONS(2925), - [anon_sym_TILDE] = ACTIONS(2925), - [anon_sym_DASH] = ACTIONS(2923), - [anon_sym_PLUS] = ACTIONS(2923), - [anon_sym_STAR] = ACTIONS(2925), - [anon_sym_AMP_AMP] = ACTIONS(2925), - [anon_sym_AMP] = ACTIONS(2923), - [anon_sym_SEMI] = ACTIONS(2925), - [anon_sym___extension__] = ACTIONS(2923), - [anon_sym_typedef] = ACTIONS(2923), - [anon_sym_virtual] = ACTIONS(2923), - [anon_sym_extern] = ACTIONS(2923), - [anon_sym___attribute__] = ACTIONS(2923), - [anon_sym___attribute] = ACTIONS(2923), - [anon_sym_using] = ACTIONS(2923), - [anon_sym_COLON_COLON] = ACTIONS(2925), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2925), - [anon_sym___declspec] = ACTIONS(2923), - [anon_sym___based] = ACTIONS(2923), - [anon_sym___cdecl] = ACTIONS(2923), - [anon_sym___clrcall] = ACTIONS(2923), - [anon_sym___stdcall] = ACTIONS(2923), - [anon_sym___fastcall] = ACTIONS(2923), - [anon_sym___thiscall] = ACTIONS(2923), - [anon_sym___vectorcall] = ACTIONS(2923), - [anon_sym_LBRACE] = ACTIONS(2925), - [anon_sym_signed] = ACTIONS(2923), - [anon_sym_unsigned] = ACTIONS(2923), - [anon_sym_long] = ACTIONS(2923), - [anon_sym_short] = ACTIONS(2923), - [anon_sym_LBRACK] = ACTIONS(2923), - [anon_sym_static] = ACTIONS(2923), - [anon_sym_register] = ACTIONS(2923), - [anon_sym_inline] = ACTIONS(2923), - [anon_sym___inline] = ACTIONS(2923), - [anon_sym___inline__] = ACTIONS(2923), - [anon_sym___forceinline] = ACTIONS(2923), - [anon_sym_thread_local] = ACTIONS(2923), - [anon_sym___thread] = ACTIONS(2923), - [anon_sym_const] = ACTIONS(2923), - [anon_sym_constexpr] = ACTIONS(2923), - [anon_sym_volatile] = ACTIONS(2923), - [anon_sym_restrict] = ACTIONS(2923), - [anon_sym___restrict__] = ACTIONS(2923), - [anon_sym__Atomic] = ACTIONS(2923), - [anon_sym__Noreturn] = ACTIONS(2923), - [anon_sym_noreturn] = ACTIONS(2923), - [anon_sym__Nonnull] = ACTIONS(2923), - [anon_sym_mutable] = ACTIONS(2923), - [anon_sym_constinit] = ACTIONS(2923), - [anon_sym_consteval] = ACTIONS(2923), - [anon_sym_alignas] = ACTIONS(2923), - [anon_sym__Alignas] = ACTIONS(2923), - [sym_primitive_type] = ACTIONS(2923), - [anon_sym_enum] = ACTIONS(2923), - [anon_sym_class] = ACTIONS(2923), - [anon_sym_struct] = ACTIONS(2923), - [anon_sym_union] = ACTIONS(2923), - [anon_sym_if] = ACTIONS(2923), - [anon_sym_switch] = ACTIONS(2923), - [anon_sym_case] = ACTIONS(2923), - [anon_sym_default] = ACTIONS(2923), - [anon_sym_while] = ACTIONS(2923), - [anon_sym_do] = ACTIONS(2923), - [anon_sym_for] = ACTIONS(2923), - [anon_sym_return] = ACTIONS(2923), - [anon_sym_break] = ACTIONS(2923), - [anon_sym_continue] = ACTIONS(2923), - [anon_sym_goto] = ACTIONS(2923), - [anon_sym_not] = ACTIONS(2923), - [anon_sym_compl] = ACTIONS(2923), - [anon_sym_DASH_DASH] = ACTIONS(2925), - [anon_sym_PLUS_PLUS] = ACTIONS(2925), - [anon_sym_sizeof] = ACTIONS(2923), - [anon_sym___alignof__] = ACTIONS(2923), - [anon_sym___alignof] = ACTIONS(2923), - [anon_sym__alignof] = ACTIONS(2923), - [anon_sym_alignof] = ACTIONS(2923), - [anon_sym__Alignof] = ACTIONS(2923), - [anon_sym_offsetof] = ACTIONS(2923), - [anon_sym__Generic] = ACTIONS(2923), - [anon_sym_asm] = ACTIONS(2923), - [anon_sym___asm__] = ACTIONS(2923), - [anon_sym___asm] = ACTIONS(2923), - [sym_number_literal] = ACTIONS(2925), - [anon_sym_L_SQUOTE] = ACTIONS(2925), - [anon_sym_u_SQUOTE] = ACTIONS(2925), - [anon_sym_U_SQUOTE] = ACTIONS(2925), - [anon_sym_u8_SQUOTE] = ACTIONS(2925), - [anon_sym_SQUOTE] = ACTIONS(2925), - [anon_sym_L_DQUOTE] = ACTIONS(2925), - [anon_sym_u_DQUOTE] = ACTIONS(2925), - [anon_sym_U_DQUOTE] = ACTIONS(2925), - [anon_sym_u8_DQUOTE] = ACTIONS(2925), - [anon_sym_DQUOTE] = ACTIONS(2925), - [sym_true] = ACTIONS(2923), - [sym_false] = ACTIONS(2923), - [anon_sym_NULL] = ACTIONS(2923), - [anon_sym_nullptr] = ACTIONS(2923), + [575] = { + [sym_identifier] = ACTIONS(2687), + [aux_sym_preproc_include_token1] = ACTIONS(2687), + [aux_sym_preproc_def_token1] = ACTIONS(2687), + [aux_sym_preproc_if_token1] = ACTIONS(2687), + [aux_sym_preproc_if_token2] = ACTIONS(2687), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2687), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2687), + [sym_preproc_directive] = ACTIONS(2687), + [anon_sym_LPAREN2] = ACTIONS(2689), + [anon_sym_BANG] = ACTIONS(2689), + [anon_sym_TILDE] = ACTIONS(2689), + [anon_sym_DASH] = ACTIONS(2687), + [anon_sym_PLUS] = ACTIONS(2687), + [anon_sym_STAR] = ACTIONS(2689), + [anon_sym_AMP_AMP] = ACTIONS(2689), + [anon_sym_AMP] = ACTIONS(2687), + [anon_sym_SEMI] = ACTIONS(2689), + [anon_sym___extension__] = ACTIONS(2687), + [anon_sym_typedef] = ACTIONS(2687), + [anon_sym_virtual] = ACTIONS(2687), + [anon_sym_extern] = ACTIONS(2687), + [anon_sym___attribute__] = ACTIONS(2687), + [anon_sym___attribute] = ACTIONS(2687), + [anon_sym_using] = ACTIONS(2687), + [anon_sym_COLON_COLON] = ACTIONS(2689), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2689), + [anon_sym___declspec] = ACTIONS(2687), + [anon_sym___based] = ACTIONS(2687), + [anon_sym___cdecl] = ACTIONS(2687), + [anon_sym___clrcall] = ACTIONS(2687), + [anon_sym___stdcall] = ACTIONS(2687), + [anon_sym___fastcall] = ACTIONS(2687), + [anon_sym___thiscall] = ACTIONS(2687), + [anon_sym___vectorcall] = ACTIONS(2687), + [anon_sym_LBRACE] = ACTIONS(2689), + [anon_sym_signed] = ACTIONS(2687), + [anon_sym_unsigned] = ACTIONS(2687), + [anon_sym_long] = ACTIONS(2687), + [anon_sym_short] = ACTIONS(2687), + [anon_sym_LBRACK] = ACTIONS(2687), + [anon_sym_static] = ACTIONS(2687), + [anon_sym_register] = ACTIONS(2687), + [anon_sym_inline] = ACTIONS(2687), + [anon_sym___inline] = ACTIONS(2687), + [anon_sym___inline__] = ACTIONS(2687), + [anon_sym___forceinline] = ACTIONS(2687), + [anon_sym_thread_local] = ACTIONS(2687), + [anon_sym___thread] = ACTIONS(2687), + [anon_sym_const] = ACTIONS(2687), + [anon_sym_constexpr] = ACTIONS(2687), + [anon_sym_volatile] = ACTIONS(2687), + [anon_sym_restrict] = ACTIONS(2687), + [anon_sym___restrict__] = ACTIONS(2687), + [anon_sym__Atomic] = ACTIONS(2687), + [anon_sym__Noreturn] = ACTIONS(2687), + [anon_sym_noreturn] = ACTIONS(2687), + [anon_sym__Nonnull] = ACTIONS(2687), + [anon_sym_mutable] = ACTIONS(2687), + [anon_sym_constinit] = ACTIONS(2687), + [anon_sym_consteval] = ACTIONS(2687), + [anon_sym_alignas] = ACTIONS(2687), + [anon_sym__Alignas] = ACTIONS(2687), + [sym_primitive_type] = ACTIONS(2687), + [anon_sym_enum] = ACTIONS(2687), + [anon_sym_class] = ACTIONS(2687), + [anon_sym_struct] = ACTIONS(2687), + [anon_sym_union] = ACTIONS(2687), + [anon_sym_if] = ACTIONS(2687), + [anon_sym_else] = ACTIONS(2687), + [anon_sym_switch] = ACTIONS(2687), + [anon_sym_case] = ACTIONS(2687), + [anon_sym_default] = ACTIONS(2687), + [anon_sym_while] = ACTIONS(2687), + [anon_sym_do] = ACTIONS(2687), + [anon_sym_for] = ACTIONS(2687), + [anon_sym_return] = ACTIONS(2687), + [anon_sym_break] = ACTIONS(2687), + [anon_sym_continue] = ACTIONS(2687), + [anon_sym_goto] = ACTIONS(2687), + [anon_sym___try] = ACTIONS(2687), + [anon_sym___leave] = ACTIONS(2687), + [anon_sym_not] = ACTIONS(2687), + [anon_sym_compl] = ACTIONS(2687), + [anon_sym_DASH_DASH] = ACTIONS(2689), + [anon_sym_PLUS_PLUS] = ACTIONS(2689), + [anon_sym_sizeof] = ACTIONS(2687), + [anon_sym___alignof__] = ACTIONS(2687), + [anon_sym___alignof] = ACTIONS(2687), + [anon_sym__alignof] = ACTIONS(2687), + [anon_sym_alignof] = ACTIONS(2687), + [anon_sym__Alignof] = ACTIONS(2687), + [anon_sym_offsetof] = ACTIONS(2687), + [anon_sym__Generic] = ACTIONS(2687), + [anon_sym_asm] = ACTIONS(2687), + [anon_sym___asm__] = ACTIONS(2687), + [anon_sym___asm] = ACTIONS(2687), + [sym_number_literal] = ACTIONS(2689), + [anon_sym_L_SQUOTE] = ACTIONS(2689), + [anon_sym_u_SQUOTE] = ACTIONS(2689), + [anon_sym_U_SQUOTE] = ACTIONS(2689), + [anon_sym_u8_SQUOTE] = ACTIONS(2689), + [anon_sym_SQUOTE] = ACTIONS(2689), + [anon_sym_L_DQUOTE] = ACTIONS(2689), + [anon_sym_u_DQUOTE] = ACTIONS(2689), + [anon_sym_U_DQUOTE] = ACTIONS(2689), + [anon_sym_u8_DQUOTE] = ACTIONS(2689), + [anon_sym_DQUOTE] = ACTIONS(2689), + [sym_true] = ACTIONS(2687), + [sym_false] = ACTIONS(2687), + [anon_sym_NULL] = ACTIONS(2687), + [anon_sym_nullptr] = ACTIONS(2687), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2923), - [anon_sym_decltype] = ACTIONS(2923), - [anon_sym_explicit] = ACTIONS(2923), - [anon_sym_typename] = ACTIONS(2923), - [anon_sym_export] = ACTIONS(2923), - [anon_sym_module] = ACTIONS(2923), - [anon_sym_import] = ACTIONS(2923), - [anon_sym_template] = ACTIONS(2923), - [anon_sym_operator] = ACTIONS(2923), - [anon_sym_try] = ACTIONS(2923), - [anon_sym_delete] = ACTIONS(2923), - [anon_sym_throw] = ACTIONS(2923), - [anon_sym_namespace] = ACTIONS(2923), - [anon_sym_static_assert] = ACTIONS(2923), - [anon_sym_concept] = ACTIONS(2923), - [anon_sym_co_return] = ACTIONS(2923), - [anon_sym_co_yield] = ACTIONS(2923), - [anon_sym_R_DQUOTE] = ACTIONS(2925), - [anon_sym_LR_DQUOTE] = ACTIONS(2925), - [anon_sym_uR_DQUOTE] = ACTIONS(2925), - [anon_sym_UR_DQUOTE] = ACTIONS(2925), - [anon_sym_u8R_DQUOTE] = ACTIONS(2925), - [anon_sym_co_await] = ACTIONS(2923), - [anon_sym_new] = ACTIONS(2923), - [anon_sym_requires] = ACTIONS(2923), - [sym_this] = ACTIONS(2923), + [sym_auto] = ACTIONS(2687), + [anon_sym_decltype] = ACTIONS(2687), + [anon_sym_explicit] = ACTIONS(2687), + [anon_sym_typename] = ACTIONS(2687), + [anon_sym_template] = ACTIONS(2687), + [anon_sym_operator] = ACTIONS(2687), + [anon_sym_try] = ACTIONS(2687), + [anon_sym_delete] = ACTIONS(2687), + [anon_sym_throw] = ACTIONS(2687), + [anon_sym_namespace] = ACTIONS(2687), + [anon_sym_static_assert] = ACTIONS(2687), + [anon_sym_concept] = ACTIONS(2687), + [anon_sym_co_return] = ACTIONS(2687), + [anon_sym_co_yield] = ACTIONS(2687), + [anon_sym_R_DQUOTE] = ACTIONS(2689), + [anon_sym_LR_DQUOTE] = ACTIONS(2689), + [anon_sym_uR_DQUOTE] = ACTIONS(2689), + [anon_sym_UR_DQUOTE] = ACTIONS(2689), + [anon_sym_u8R_DQUOTE] = ACTIONS(2689), + [anon_sym_co_await] = ACTIONS(2687), + [anon_sym_new] = ACTIONS(2687), + [anon_sym_requires] = ACTIONS(2687), + [sym_this] = ACTIONS(2687), }, - [567] = { + [576] = { + [ts_builtin_sym_end] = ACTIONS(3465), + [sym_identifier] = ACTIONS(3467), + [aux_sym_preproc_include_token1] = ACTIONS(3467), + [aux_sym_preproc_def_token1] = ACTIONS(3467), + [aux_sym_preproc_if_token1] = ACTIONS(3467), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3467), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3467), + [sym_preproc_directive] = ACTIONS(3467), + [anon_sym_LPAREN2] = ACTIONS(3465), + [anon_sym_BANG] = ACTIONS(3465), + [anon_sym_TILDE] = ACTIONS(3465), + [anon_sym_DASH] = ACTIONS(3467), + [anon_sym_PLUS] = ACTIONS(3467), + [anon_sym_STAR] = ACTIONS(3465), + [anon_sym_AMP_AMP] = ACTIONS(3465), + [anon_sym_AMP] = ACTIONS(3467), + [anon_sym_SEMI] = ACTIONS(3465), + [anon_sym___extension__] = ACTIONS(3467), + [anon_sym_typedef] = ACTIONS(3467), + [anon_sym_virtual] = ACTIONS(3467), + [anon_sym_extern] = ACTIONS(3467), + [anon_sym___attribute__] = ACTIONS(3467), + [anon_sym___attribute] = ACTIONS(3467), + [anon_sym_using] = ACTIONS(3467), + [anon_sym_COLON_COLON] = ACTIONS(3465), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3465), + [anon_sym___declspec] = ACTIONS(3467), + [anon_sym___based] = ACTIONS(3467), + [anon_sym___cdecl] = ACTIONS(3467), + [anon_sym___clrcall] = ACTIONS(3467), + [anon_sym___stdcall] = ACTIONS(3467), + [anon_sym___fastcall] = ACTIONS(3467), + [anon_sym___thiscall] = ACTIONS(3467), + [anon_sym___vectorcall] = ACTIONS(3467), + [anon_sym_LBRACE] = ACTIONS(3465), + [anon_sym_signed] = ACTIONS(3467), + [anon_sym_unsigned] = ACTIONS(3467), + [anon_sym_long] = ACTIONS(3467), + [anon_sym_short] = ACTIONS(3467), + [anon_sym_LBRACK] = ACTIONS(3467), + [anon_sym_static] = ACTIONS(3467), + [anon_sym_register] = ACTIONS(3467), + [anon_sym_inline] = ACTIONS(3467), + [anon_sym___inline] = ACTIONS(3467), + [anon_sym___inline__] = ACTIONS(3467), + [anon_sym___forceinline] = ACTIONS(3467), + [anon_sym_thread_local] = ACTIONS(3467), + [anon_sym___thread] = ACTIONS(3467), + [anon_sym_const] = ACTIONS(3467), + [anon_sym_constexpr] = ACTIONS(3467), + [anon_sym_volatile] = ACTIONS(3467), + [anon_sym_restrict] = ACTIONS(3467), + [anon_sym___restrict__] = ACTIONS(3467), + [anon_sym__Atomic] = ACTIONS(3467), + [anon_sym__Noreturn] = ACTIONS(3467), + [anon_sym_noreturn] = ACTIONS(3467), + [anon_sym__Nonnull] = ACTIONS(3467), + [anon_sym_mutable] = ACTIONS(3467), + [anon_sym_constinit] = ACTIONS(3467), + [anon_sym_consteval] = ACTIONS(3467), + [anon_sym_alignas] = ACTIONS(3467), + [anon_sym__Alignas] = ACTIONS(3467), + [sym_primitive_type] = ACTIONS(3467), + [anon_sym_enum] = ACTIONS(3467), + [anon_sym_class] = ACTIONS(3467), + [anon_sym_struct] = ACTIONS(3467), + [anon_sym_union] = ACTIONS(3467), + [anon_sym_if] = ACTIONS(3467), + [anon_sym_switch] = ACTIONS(3467), + [anon_sym_case] = ACTIONS(3467), + [anon_sym_default] = ACTIONS(3467), + [anon_sym_while] = ACTIONS(3467), + [anon_sym_do] = ACTIONS(3467), + [anon_sym_for] = ACTIONS(3467), + [anon_sym_return] = ACTIONS(3467), + [anon_sym_break] = ACTIONS(3467), + [anon_sym_continue] = ACTIONS(3467), + [anon_sym_goto] = ACTIONS(3467), + [anon_sym_not] = ACTIONS(3467), + [anon_sym_compl] = ACTIONS(3467), + [anon_sym_DASH_DASH] = ACTIONS(3465), + [anon_sym_PLUS_PLUS] = ACTIONS(3465), + [anon_sym_sizeof] = ACTIONS(3467), + [anon_sym___alignof__] = ACTIONS(3467), + [anon_sym___alignof] = ACTIONS(3467), + [anon_sym__alignof] = ACTIONS(3467), + [anon_sym_alignof] = ACTIONS(3467), + [anon_sym__Alignof] = ACTIONS(3467), + [anon_sym_offsetof] = ACTIONS(3467), + [anon_sym__Generic] = ACTIONS(3467), + [anon_sym_asm] = ACTIONS(3467), + [anon_sym___asm__] = ACTIONS(3467), + [anon_sym___asm] = ACTIONS(3467), + [sym_number_literal] = ACTIONS(3465), + [anon_sym_L_SQUOTE] = ACTIONS(3465), + [anon_sym_u_SQUOTE] = ACTIONS(3465), + [anon_sym_U_SQUOTE] = ACTIONS(3465), + [anon_sym_u8_SQUOTE] = ACTIONS(3465), + [anon_sym_SQUOTE] = ACTIONS(3465), + [anon_sym_L_DQUOTE] = ACTIONS(3465), + [anon_sym_u_DQUOTE] = ACTIONS(3465), + [anon_sym_U_DQUOTE] = ACTIONS(3465), + [anon_sym_u8_DQUOTE] = ACTIONS(3465), + [anon_sym_DQUOTE] = ACTIONS(3465), + [sym_true] = ACTIONS(3467), + [sym_false] = ACTIONS(3467), + [anon_sym_NULL] = ACTIONS(3467), + [anon_sym_nullptr] = ACTIONS(3467), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3467), + [anon_sym_decltype] = ACTIONS(3467), + [anon_sym_explicit] = ACTIONS(3467), + [anon_sym_typename] = ACTIONS(3467), + [anon_sym_export] = ACTIONS(3467), + [anon_sym_module] = ACTIONS(3467), + [anon_sym_import] = ACTIONS(3467), + [anon_sym_template] = ACTIONS(3467), + [anon_sym_operator] = ACTIONS(3467), + [anon_sym_try] = ACTIONS(3467), + [anon_sym_delete] = ACTIONS(3467), + [anon_sym_throw] = ACTIONS(3467), + [anon_sym_namespace] = ACTIONS(3467), + [anon_sym_static_assert] = ACTIONS(3467), + [anon_sym_concept] = ACTIONS(3467), + [anon_sym_co_return] = ACTIONS(3467), + [anon_sym_co_yield] = ACTIONS(3467), + [anon_sym_R_DQUOTE] = ACTIONS(3465), + [anon_sym_LR_DQUOTE] = ACTIONS(3465), + [anon_sym_uR_DQUOTE] = ACTIONS(3465), + [anon_sym_UR_DQUOTE] = ACTIONS(3465), + [anon_sym_u8R_DQUOTE] = ACTIONS(3465), + [anon_sym_co_await] = ACTIONS(3467), + [anon_sym_new] = ACTIONS(3467), + [anon_sym_requires] = ACTIONS(3467), + [sym_this] = ACTIONS(3467), + }, + [577] = { [sym_identifier] = ACTIONS(2655), [aux_sym_preproc_include_token1] = ACTIONS(2655), [aux_sym_preproc_def_token1] = ACTIONS(2655), [aux_sym_preproc_if_token1] = ACTIONS(2655), - [aux_sym_preproc_if_token2] = ACTIONS(2655), [aux_sym_preproc_ifdef_token1] = ACTIONS(2655), [aux_sym_preproc_ifdef_token2] = ACTIONS(2655), [sym_preproc_directive] = ACTIONS(2655), @@ -124139,6 +125819,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(2655), [anon_sym___vectorcall] = ACTIONS(2655), [anon_sym_LBRACE] = ACTIONS(2657), + [anon_sym_RBRACE] = ACTIONS(2657), [anon_sym_signed] = ACTIONS(2655), [anon_sym_unsigned] = ACTIONS(2655), [anon_sym_long] = ACTIONS(2655), @@ -124240,182 +125921,1278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2655), [sym_this] = ACTIONS(2655), }, - [568] = { - [sym_identifier] = ACTIONS(2747), - [aux_sym_preproc_include_token1] = ACTIONS(2747), - [aux_sym_preproc_def_token1] = ACTIONS(2747), - [aux_sym_preproc_if_token1] = ACTIONS(2747), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2747), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2747), - [sym_preproc_directive] = ACTIONS(2747), - [anon_sym_LPAREN2] = ACTIONS(2749), - [anon_sym_BANG] = ACTIONS(2749), - [anon_sym_TILDE] = ACTIONS(2749), - [anon_sym_DASH] = ACTIONS(2747), - [anon_sym_PLUS] = ACTIONS(2747), - [anon_sym_STAR] = ACTIONS(2749), - [anon_sym_AMP_AMP] = ACTIONS(2749), - [anon_sym_AMP] = ACTIONS(2747), - [anon_sym_SEMI] = ACTIONS(2749), - [anon_sym___extension__] = ACTIONS(2747), - [anon_sym_typedef] = ACTIONS(2747), - [anon_sym_virtual] = ACTIONS(2747), - [anon_sym_extern] = ACTIONS(2747), - [anon_sym___attribute__] = ACTIONS(2747), - [anon_sym___attribute] = ACTIONS(2747), - [anon_sym_using] = ACTIONS(2747), - [anon_sym_COLON_COLON] = ACTIONS(2749), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2749), - [anon_sym___declspec] = ACTIONS(2747), - [anon_sym___based] = ACTIONS(2747), - [anon_sym___cdecl] = ACTIONS(2747), - [anon_sym___clrcall] = ACTIONS(2747), - [anon_sym___stdcall] = ACTIONS(2747), - [anon_sym___fastcall] = ACTIONS(2747), - [anon_sym___thiscall] = ACTIONS(2747), - [anon_sym___vectorcall] = ACTIONS(2747), - [anon_sym_LBRACE] = ACTIONS(2749), - [anon_sym_RBRACE] = ACTIONS(2749), - [anon_sym_signed] = ACTIONS(2747), - [anon_sym_unsigned] = ACTIONS(2747), - [anon_sym_long] = ACTIONS(2747), - [anon_sym_short] = ACTIONS(2747), - [anon_sym_LBRACK] = ACTIONS(2747), - [anon_sym_static] = ACTIONS(2747), - [anon_sym_register] = ACTIONS(2747), - [anon_sym_inline] = ACTIONS(2747), - [anon_sym___inline] = ACTIONS(2747), - [anon_sym___inline__] = ACTIONS(2747), - [anon_sym___forceinline] = ACTIONS(2747), - [anon_sym_thread_local] = ACTIONS(2747), - [anon_sym___thread] = ACTIONS(2747), - [anon_sym_const] = ACTIONS(2747), - [anon_sym_constexpr] = ACTIONS(2747), - [anon_sym_volatile] = ACTIONS(2747), - [anon_sym_restrict] = ACTIONS(2747), - [anon_sym___restrict__] = ACTIONS(2747), - [anon_sym__Atomic] = ACTIONS(2747), - [anon_sym__Noreturn] = ACTIONS(2747), - [anon_sym_noreturn] = ACTIONS(2747), - [anon_sym__Nonnull] = ACTIONS(2747), - [anon_sym_mutable] = ACTIONS(2747), - [anon_sym_constinit] = ACTIONS(2747), - [anon_sym_consteval] = ACTIONS(2747), - [anon_sym_alignas] = ACTIONS(2747), - [anon_sym__Alignas] = ACTIONS(2747), - [sym_primitive_type] = ACTIONS(2747), - [anon_sym_enum] = ACTIONS(2747), - [anon_sym_class] = ACTIONS(2747), - [anon_sym_struct] = ACTIONS(2747), - [anon_sym_union] = ACTIONS(2747), - [anon_sym_if] = ACTIONS(2747), - [anon_sym_else] = ACTIONS(2747), - [anon_sym_switch] = ACTIONS(2747), - [anon_sym_case] = ACTIONS(2747), - [anon_sym_default] = ACTIONS(2747), - [anon_sym_while] = ACTIONS(2747), - [anon_sym_do] = ACTIONS(2747), - [anon_sym_for] = ACTIONS(2747), - [anon_sym_return] = ACTIONS(2747), - [anon_sym_break] = ACTIONS(2747), - [anon_sym_continue] = ACTIONS(2747), - [anon_sym_goto] = ACTIONS(2747), - [anon_sym___try] = ACTIONS(2747), - [anon_sym___leave] = ACTIONS(2747), - [anon_sym_not] = ACTIONS(2747), - [anon_sym_compl] = ACTIONS(2747), - [anon_sym_DASH_DASH] = ACTIONS(2749), - [anon_sym_PLUS_PLUS] = ACTIONS(2749), - [anon_sym_sizeof] = ACTIONS(2747), - [anon_sym___alignof__] = ACTIONS(2747), - [anon_sym___alignof] = ACTIONS(2747), - [anon_sym__alignof] = ACTIONS(2747), - [anon_sym_alignof] = ACTIONS(2747), - [anon_sym__Alignof] = ACTIONS(2747), - [anon_sym_offsetof] = ACTIONS(2747), - [anon_sym__Generic] = ACTIONS(2747), - [anon_sym_asm] = ACTIONS(2747), - [anon_sym___asm__] = ACTIONS(2747), - [anon_sym___asm] = ACTIONS(2747), - [sym_number_literal] = ACTIONS(2749), - [anon_sym_L_SQUOTE] = ACTIONS(2749), - [anon_sym_u_SQUOTE] = ACTIONS(2749), - [anon_sym_U_SQUOTE] = ACTIONS(2749), - [anon_sym_u8_SQUOTE] = ACTIONS(2749), - [anon_sym_SQUOTE] = ACTIONS(2749), - [anon_sym_L_DQUOTE] = ACTIONS(2749), - [anon_sym_u_DQUOTE] = ACTIONS(2749), - [anon_sym_U_DQUOTE] = ACTIONS(2749), - [anon_sym_u8_DQUOTE] = ACTIONS(2749), - [anon_sym_DQUOTE] = ACTIONS(2749), - [sym_true] = ACTIONS(2747), - [sym_false] = ACTIONS(2747), - [anon_sym_NULL] = ACTIONS(2747), - [anon_sym_nullptr] = ACTIONS(2747), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2747), - [anon_sym_decltype] = ACTIONS(2747), - [anon_sym_explicit] = ACTIONS(2747), - [anon_sym_typename] = ACTIONS(2747), - [anon_sym_template] = ACTIONS(2747), - [anon_sym_operator] = ACTIONS(2747), - [anon_sym_try] = ACTIONS(2747), - [anon_sym_delete] = ACTIONS(2747), - [anon_sym_throw] = ACTIONS(2747), - [anon_sym_namespace] = ACTIONS(2747), - [anon_sym_static_assert] = ACTIONS(2747), - [anon_sym_concept] = ACTIONS(2747), - [anon_sym_co_return] = ACTIONS(2747), - [anon_sym_co_yield] = ACTIONS(2747), - [anon_sym_R_DQUOTE] = ACTIONS(2749), - [anon_sym_LR_DQUOTE] = ACTIONS(2749), - [anon_sym_uR_DQUOTE] = ACTIONS(2749), - [anon_sym_UR_DQUOTE] = ACTIONS(2749), - [anon_sym_u8R_DQUOTE] = ACTIONS(2749), - [anon_sym_co_await] = ACTIONS(2747), - [anon_sym_new] = ACTIONS(2747), - [anon_sym_requires] = ACTIONS(2747), - [sym_this] = ACTIONS(2747), + [578] = { + [ts_builtin_sym_end] = ACTIONS(3469), + [sym_identifier] = ACTIONS(3471), + [aux_sym_preproc_include_token1] = ACTIONS(3471), + [aux_sym_preproc_def_token1] = ACTIONS(3471), + [aux_sym_preproc_if_token1] = ACTIONS(3471), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3471), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3471), + [sym_preproc_directive] = ACTIONS(3471), + [anon_sym_LPAREN2] = ACTIONS(3469), + [anon_sym_BANG] = ACTIONS(3469), + [anon_sym_TILDE] = ACTIONS(3469), + [anon_sym_DASH] = ACTIONS(3471), + [anon_sym_PLUS] = ACTIONS(3471), + [anon_sym_STAR] = ACTIONS(3469), + [anon_sym_AMP_AMP] = ACTIONS(3469), + [anon_sym_AMP] = ACTIONS(3471), + [anon_sym_SEMI] = ACTIONS(3469), + [anon_sym___extension__] = ACTIONS(3471), + [anon_sym_typedef] = ACTIONS(3471), + [anon_sym_virtual] = ACTIONS(3471), + [anon_sym_extern] = ACTIONS(3471), + [anon_sym___attribute__] = ACTIONS(3471), + [anon_sym___attribute] = ACTIONS(3471), + [anon_sym_using] = ACTIONS(3471), + [anon_sym_COLON_COLON] = ACTIONS(3469), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3469), + [anon_sym___declspec] = ACTIONS(3471), + [anon_sym___based] = ACTIONS(3471), + [anon_sym___cdecl] = ACTIONS(3471), + [anon_sym___clrcall] = ACTIONS(3471), + [anon_sym___stdcall] = ACTIONS(3471), + [anon_sym___fastcall] = ACTIONS(3471), + [anon_sym___thiscall] = ACTIONS(3471), + [anon_sym___vectorcall] = ACTIONS(3471), + [anon_sym_LBRACE] = ACTIONS(3469), + [anon_sym_signed] = ACTIONS(3471), + [anon_sym_unsigned] = ACTIONS(3471), + [anon_sym_long] = ACTIONS(3471), + [anon_sym_short] = ACTIONS(3471), + [anon_sym_LBRACK] = ACTIONS(3471), + [anon_sym_static] = ACTIONS(3471), + [anon_sym_register] = ACTIONS(3471), + [anon_sym_inline] = ACTIONS(3471), + [anon_sym___inline] = ACTIONS(3471), + [anon_sym___inline__] = ACTIONS(3471), + [anon_sym___forceinline] = ACTIONS(3471), + [anon_sym_thread_local] = ACTIONS(3471), + [anon_sym___thread] = ACTIONS(3471), + [anon_sym_const] = ACTIONS(3471), + [anon_sym_constexpr] = ACTIONS(3471), + [anon_sym_volatile] = ACTIONS(3471), + [anon_sym_restrict] = ACTIONS(3471), + [anon_sym___restrict__] = ACTIONS(3471), + [anon_sym__Atomic] = ACTIONS(3471), + [anon_sym__Noreturn] = ACTIONS(3471), + [anon_sym_noreturn] = ACTIONS(3471), + [anon_sym__Nonnull] = ACTIONS(3471), + [anon_sym_mutable] = ACTIONS(3471), + [anon_sym_constinit] = ACTIONS(3471), + [anon_sym_consteval] = ACTIONS(3471), + [anon_sym_alignas] = ACTIONS(3471), + [anon_sym__Alignas] = ACTIONS(3471), + [sym_primitive_type] = ACTIONS(3471), + [anon_sym_enum] = ACTIONS(3471), + [anon_sym_class] = ACTIONS(3471), + [anon_sym_struct] = ACTIONS(3471), + [anon_sym_union] = ACTIONS(3471), + [anon_sym_if] = ACTIONS(3471), + [anon_sym_switch] = ACTIONS(3471), + [anon_sym_case] = ACTIONS(3471), + [anon_sym_default] = ACTIONS(3471), + [anon_sym_while] = ACTIONS(3471), + [anon_sym_do] = ACTIONS(3471), + [anon_sym_for] = ACTIONS(3471), + [anon_sym_return] = ACTIONS(3471), + [anon_sym_break] = ACTIONS(3471), + [anon_sym_continue] = ACTIONS(3471), + [anon_sym_goto] = ACTIONS(3471), + [anon_sym_not] = ACTIONS(3471), + [anon_sym_compl] = ACTIONS(3471), + [anon_sym_DASH_DASH] = ACTIONS(3469), + [anon_sym_PLUS_PLUS] = ACTIONS(3469), + [anon_sym_sizeof] = ACTIONS(3471), + [anon_sym___alignof__] = ACTIONS(3471), + [anon_sym___alignof] = ACTIONS(3471), + [anon_sym__alignof] = ACTIONS(3471), + [anon_sym_alignof] = ACTIONS(3471), + [anon_sym__Alignof] = ACTIONS(3471), + [anon_sym_offsetof] = ACTIONS(3471), + [anon_sym__Generic] = ACTIONS(3471), + [anon_sym_asm] = ACTIONS(3471), + [anon_sym___asm__] = ACTIONS(3471), + [anon_sym___asm] = ACTIONS(3471), + [sym_number_literal] = ACTIONS(3469), + [anon_sym_L_SQUOTE] = ACTIONS(3469), + [anon_sym_u_SQUOTE] = ACTIONS(3469), + [anon_sym_U_SQUOTE] = ACTIONS(3469), + [anon_sym_u8_SQUOTE] = ACTIONS(3469), + [anon_sym_SQUOTE] = ACTIONS(3469), + [anon_sym_L_DQUOTE] = ACTIONS(3469), + [anon_sym_u_DQUOTE] = ACTIONS(3469), + [anon_sym_U_DQUOTE] = ACTIONS(3469), + [anon_sym_u8_DQUOTE] = ACTIONS(3469), + [anon_sym_DQUOTE] = ACTIONS(3469), + [sym_true] = ACTIONS(3471), + [sym_false] = ACTIONS(3471), + [anon_sym_NULL] = ACTIONS(3471), + [anon_sym_nullptr] = ACTIONS(3471), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3471), + [anon_sym_decltype] = ACTIONS(3471), + [anon_sym_explicit] = ACTIONS(3471), + [anon_sym_typename] = ACTIONS(3471), + [anon_sym_export] = ACTIONS(3471), + [anon_sym_module] = ACTIONS(3471), + [anon_sym_import] = ACTIONS(3471), + [anon_sym_template] = ACTIONS(3471), + [anon_sym_operator] = ACTIONS(3471), + [anon_sym_try] = ACTIONS(3471), + [anon_sym_delete] = ACTIONS(3471), + [anon_sym_throw] = ACTIONS(3471), + [anon_sym_namespace] = ACTIONS(3471), + [anon_sym_static_assert] = ACTIONS(3471), + [anon_sym_concept] = ACTIONS(3471), + [anon_sym_co_return] = ACTIONS(3471), + [anon_sym_co_yield] = ACTIONS(3471), + [anon_sym_R_DQUOTE] = ACTIONS(3469), + [anon_sym_LR_DQUOTE] = ACTIONS(3469), + [anon_sym_uR_DQUOTE] = ACTIONS(3469), + [anon_sym_UR_DQUOTE] = ACTIONS(3469), + [anon_sym_u8R_DQUOTE] = ACTIONS(3469), + [anon_sym_co_await] = ACTIONS(3471), + [anon_sym_new] = ACTIONS(3471), + [anon_sym_requires] = ACTIONS(3471), + [sym_this] = ACTIONS(3471), }, - [569] = { - [sym_identifier] = ACTIONS(2739), - [aux_sym_preproc_include_token1] = ACTIONS(2739), - [aux_sym_preproc_def_token1] = ACTIONS(2739), - [aux_sym_preproc_if_token1] = ACTIONS(2739), - [aux_sym_preproc_if_token2] = ACTIONS(2739), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2739), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2739), - [sym_preproc_directive] = ACTIONS(2739), - [anon_sym_LPAREN2] = ACTIONS(2741), - [anon_sym_BANG] = ACTIONS(2741), - [anon_sym_TILDE] = ACTIONS(2741), - [anon_sym_DASH] = ACTIONS(2739), - [anon_sym_PLUS] = ACTIONS(2739), - [anon_sym_STAR] = ACTIONS(2741), - [anon_sym_AMP_AMP] = ACTIONS(2741), - [anon_sym_AMP] = ACTIONS(2739), - [anon_sym_SEMI] = ACTIONS(2741), - [anon_sym___extension__] = ACTIONS(2739), - [anon_sym_typedef] = ACTIONS(2739), - [anon_sym_virtual] = ACTIONS(2739), - [anon_sym_extern] = ACTIONS(2739), - [anon_sym___attribute__] = ACTIONS(2739), - [anon_sym___attribute] = ACTIONS(2739), - [anon_sym_using] = ACTIONS(2739), - [anon_sym_COLON_COLON] = ACTIONS(2741), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2741), - [anon_sym___declspec] = ACTIONS(2739), - [anon_sym___based] = ACTIONS(2739), - [anon_sym___cdecl] = ACTIONS(2739), - [anon_sym___clrcall] = ACTIONS(2739), - [anon_sym___stdcall] = ACTIONS(2739), - [anon_sym___fastcall] = ACTIONS(2739), - [anon_sym___thiscall] = ACTIONS(2739), - [anon_sym___vectorcall] = ACTIONS(2739), - [anon_sym_LBRACE] = ACTIONS(2741), - [anon_sym_signed] = ACTIONS(2739), - [anon_sym_unsigned] = ACTIONS(2739), - [anon_sym_long] = ACTIONS(2739), + [579] = { + [ts_builtin_sym_end] = ACTIONS(2837), + [sym_identifier] = ACTIONS(2835), + [aux_sym_preproc_include_token1] = ACTIONS(2835), + [aux_sym_preproc_def_token1] = ACTIONS(2835), + [aux_sym_preproc_if_token1] = ACTIONS(2835), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2835), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2835), + [sym_preproc_directive] = ACTIONS(2835), + [anon_sym_LPAREN2] = ACTIONS(2837), + [anon_sym_BANG] = ACTIONS(2837), + [anon_sym_TILDE] = ACTIONS(2837), + [anon_sym_DASH] = ACTIONS(2835), + [anon_sym_PLUS] = ACTIONS(2835), + [anon_sym_STAR] = ACTIONS(2837), + [anon_sym_AMP_AMP] = ACTIONS(2837), + [anon_sym_AMP] = ACTIONS(2835), + [anon_sym_SEMI] = ACTIONS(2837), + [anon_sym___extension__] = ACTIONS(2835), + [anon_sym_typedef] = ACTIONS(2835), + [anon_sym_virtual] = ACTIONS(2835), + [anon_sym_extern] = ACTIONS(2835), + [anon_sym___attribute__] = ACTIONS(2835), + [anon_sym___attribute] = ACTIONS(2835), + [anon_sym_using] = ACTIONS(2835), + [anon_sym_COLON_COLON] = ACTIONS(2837), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2837), + [anon_sym___declspec] = ACTIONS(2835), + [anon_sym___based] = ACTIONS(2835), + [anon_sym___cdecl] = ACTIONS(2835), + [anon_sym___clrcall] = ACTIONS(2835), + [anon_sym___stdcall] = ACTIONS(2835), + [anon_sym___fastcall] = ACTIONS(2835), + [anon_sym___thiscall] = ACTIONS(2835), + [anon_sym___vectorcall] = ACTIONS(2835), + [anon_sym_LBRACE] = ACTIONS(2837), + [anon_sym_signed] = ACTIONS(2835), + [anon_sym_unsigned] = ACTIONS(2835), + [anon_sym_long] = ACTIONS(2835), + [anon_sym_short] = ACTIONS(2835), + [anon_sym_LBRACK] = ACTIONS(2835), + [anon_sym_static] = ACTIONS(2835), + [anon_sym_register] = ACTIONS(2835), + [anon_sym_inline] = ACTIONS(2835), + [anon_sym___inline] = ACTIONS(2835), + [anon_sym___inline__] = ACTIONS(2835), + [anon_sym___forceinline] = ACTIONS(2835), + [anon_sym_thread_local] = ACTIONS(2835), + [anon_sym___thread] = ACTIONS(2835), + [anon_sym_const] = ACTIONS(2835), + [anon_sym_constexpr] = ACTIONS(2835), + [anon_sym_volatile] = ACTIONS(2835), + [anon_sym_restrict] = ACTIONS(2835), + [anon_sym___restrict__] = ACTIONS(2835), + [anon_sym__Atomic] = ACTIONS(2835), + [anon_sym__Noreturn] = ACTIONS(2835), + [anon_sym_noreturn] = ACTIONS(2835), + [anon_sym__Nonnull] = ACTIONS(2835), + [anon_sym_mutable] = ACTIONS(2835), + [anon_sym_constinit] = ACTIONS(2835), + [anon_sym_consteval] = ACTIONS(2835), + [anon_sym_alignas] = ACTIONS(2835), + [anon_sym__Alignas] = ACTIONS(2835), + [sym_primitive_type] = ACTIONS(2835), + [anon_sym_enum] = ACTIONS(2835), + [anon_sym_class] = ACTIONS(2835), + [anon_sym_struct] = ACTIONS(2835), + [anon_sym_union] = ACTIONS(2835), + [anon_sym_if] = ACTIONS(2835), + [anon_sym_switch] = ACTIONS(2835), + [anon_sym_case] = ACTIONS(2835), + [anon_sym_default] = ACTIONS(2835), + [anon_sym_while] = ACTIONS(2835), + [anon_sym_do] = ACTIONS(2835), + [anon_sym_for] = ACTIONS(2835), + [anon_sym_return] = ACTIONS(2835), + [anon_sym_break] = ACTIONS(2835), + [anon_sym_continue] = ACTIONS(2835), + [anon_sym_goto] = ACTIONS(2835), + [anon_sym_not] = ACTIONS(2835), + [anon_sym_compl] = ACTIONS(2835), + [anon_sym_DASH_DASH] = ACTIONS(2837), + [anon_sym_PLUS_PLUS] = ACTIONS(2837), + [anon_sym_sizeof] = ACTIONS(2835), + [anon_sym___alignof__] = ACTIONS(2835), + [anon_sym___alignof] = ACTIONS(2835), + [anon_sym__alignof] = ACTIONS(2835), + [anon_sym_alignof] = ACTIONS(2835), + [anon_sym__Alignof] = ACTIONS(2835), + [anon_sym_offsetof] = ACTIONS(2835), + [anon_sym__Generic] = ACTIONS(2835), + [anon_sym_asm] = ACTIONS(2835), + [anon_sym___asm__] = ACTIONS(2835), + [anon_sym___asm] = ACTIONS(2835), + [sym_number_literal] = ACTIONS(2837), + [anon_sym_L_SQUOTE] = ACTIONS(2837), + [anon_sym_u_SQUOTE] = ACTIONS(2837), + [anon_sym_U_SQUOTE] = ACTIONS(2837), + [anon_sym_u8_SQUOTE] = ACTIONS(2837), + [anon_sym_SQUOTE] = ACTIONS(2837), + [anon_sym_L_DQUOTE] = ACTIONS(2837), + [anon_sym_u_DQUOTE] = ACTIONS(2837), + [anon_sym_U_DQUOTE] = ACTIONS(2837), + [anon_sym_u8_DQUOTE] = ACTIONS(2837), + [anon_sym_DQUOTE] = ACTIONS(2837), + [sym_true] = ACTIONS(2835), + [sym_false] = ACTIONS(2835), + [anon_sym_NULL] = ACTIONS(2835), + [anon_sym_nullptr] = ACTIONS(2835), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2835), + [anon_sym_decltype] = ACTIONS(2835), + [anon_sym_explicit] = ACTIONS(2835), + [anon_sym_typename] = ACTIONS(2835), + [anon_sym_export] = ACTIONS(2835), + [anon_sym_module] = ACTIONS(2835), + [anon_sym_import] = ACTIONS(2835), + [anon_sym_template] = ACTIONS(2835), + [anon_sym_operator] = ACTIONS(2835), + [anon_sym_try] = ACTIONS(2835), + [anon_sym_delete] = ACTIONS(2835), + [anon_sym_throw] = ACTIONS(2835), + [anon_sym_namespace] = ACTIONS(2835), + [anon_sym_static_assert] = ACTIONS(2835), + [anon_sym_concept] = ACTIONS(2835), + [anon_sym_co_return] = ACTIONS(2835), + [anon_sym_co_yield] = ACTIONS(2835), + [anon_sym_R_DQUOTE] = ACTIONS(2837), + [anon_sym_LR_DQUOTE] = ACTIONS(2837), + [anon_sym_uR_DQUOTE] = ACTIONS(2837), + [anon_sym_UR_DQUOTE] = ACTIONS(2837), + [anon_sym_u8R_DQUOTE] = ACTIONS(2837), + [anon_sym_co_await] = ACTIONS(2835), + [anon_sym_new] = ACTIONS(2835), + [anon_sym_requires] = ACTIONS(2835), + [sym_this] = ACTIONS(2835), + }, + [580] = { + [sym_identifier] = ACTIONS(2631), + [aux_sym_preproc_include_token1] = ACTIONS(2631), + [aux_sym_preproc_def_token1] = ACTIONS(2631), + [aux_sym_preproc_if_token1] = ACTIONS(2631), + [aux_sym_preproc_if_token2] = ACTIONS(2631), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2631), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2631), + [sym_preproc_directive] = ACTIONS(2631), + [anon_sym_LPAREN2] = ACTIONS(2633), + [anon_sym_BANG] = ACTIONS(2633), + [anon_sym_TILDE] = ACTIONS(2633), + [anon_sym_DASH] = ACTIONS(2631), + [anon_sym_PLUS] = ACTIONS(2631), + [anon_sym_STAR] = ACTIONS(2633), + [anon_sym_AMP_AMP] = ACTIONS(2633), + [anon_sym_AMP] = ACTIONS(2631), + [anon_sym_SEMI] = ACTIONS(2633), + [anon_sym___extension__] = ACTIONS(2631), + [anon_sym_typedef] = ACTIONS(2631), + [anon_sym_virtual] = ACTIONS(2631), + [anon_sym_extern] = ACTIONS(2631), + [anon_sym___attribute__] = ACTIONS(2631), + [anon_sym___attribute] = ACTIONS(2631), + [anon_sym_using] = ACTIONS(2631), + [anon_sym_COLON_COLON] = ACTIONS(2633), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2633), + [anon_sym___declspec] = ACTIONS(2631), + [anon_sym___based] = ACTIONS(2631), + [anon_sym___cdecl] = ACTIONS(2631), + [anon_sym___clrcall] = ACTIONS(2631), + [anon_sym___stdcall] = ACTIONS(2631), + [anon_sym___fastcall] = ACTIONS(2631), + [anon_sym___thiscall] = ACTIONS(2631), + [anon_sym___vectorcall] = ACTIONS(2631), + [anon_sym_LBRACE] = ACTIONS(2633), + [anon_sym_signed] = ACTIONS(2631), + [anon_sym_unsigned] = ACTIONS(2631), + [anon_sym_long] = ACTIONS(2631), + [anon_sym_short] = ACTIONS(2631), + [anon_sym_LBRACK] = ACTIONS(2631), + [anon_sym_static] = ACTIONS(2631), + [anon_sym_register] = ACTIONS(2631), + [anon_sym_inline] = ACTIONS(2631), + [anon_sym___inline] = ACTIONS(2631), + [anon_sym___inline__] = ACTIONS(2631), + [anon_sym___forceinline] = ACTIONS(2631), + [anon_sym_thread_local] = ACTIONS(2631), + [anon_sym___thread] = ACTIONS(2631), + [anon_sym_const] = ACTIONS(2631), + [anon_sym_constexpr] = ACTIONS(2631), + [anon_sym_volatile] = ACTIONS(2631), + [anon_sym_restrict] = ACTIONS(2631), + [anon_sym___restrict__] = ACTIONS(2631), + [anon_sym__Atomic] = ACTIONS(2631), + [anon_sym__Noreturn] = ACTIONS(2631), + [anon_sym_noreturn] = ACTIONS(2631), + [anon_sym__Nonnull] = ACTIONS(2631), + [anon_sym_mutable] = ACTIONS(2631), + [anon_sym_constinit] = ACTIONS(2631), + [anon_sym_consteval] = ACTIONS(2631), + [anon_sym_alignas] = ACTIONS(2631), + [anon_sym__Alignas] = ACTIONS(2631), + [sym_primitive_type] = ACTIONS(2631), + [anon_sym_enum] = ACTIONS(2631), + [anon_sym_class] = ACTIONS(2631), + [anon_sym_struct] = ACTIONS(2631), + [anon_sym_union] = ACTIONS(2631), + [anon_sym_if] = ACTIONS(2631), + [anon_sym_else] = ACTIONS(2631), + [anon_sym_switch] = ACTIONS(2631), + [anon_sym_case] = ACTIONS(2631), + [anon_sym_default] = ACTIONS(2631), + [anon_sym_while] = ACTIONS(2631), + [anon_sym_do] = ACTIONS(2631), + [anon_sym_for] = ACTIONS(2631), + [anon_sym_return] = ACTIONS(2631), + [anon_sym_break] = ACTIONS(2631), + [anon_sym_continue] = ACTIONS(2631), + [anon_sym_goto] = ACTIONS(2631), + [anon_sym___try] = ACTIONS(2631), + [anon_sym___leave] = ACTIONS(2631), + [anon_sym_not] = ACTIONS(2631), + [anon_sym_compl] = ACTIONS(2631), + [anon_sym_DASH_DASH] = ACTIONS(2633), + [anon_sym_PLUS_PLUS] = ACTIONS(2633), + [anon_sym_sizeof] = ACTIONS(2631), + [anon_sym___alignof__] = ACTIONS(2631), + [anon_sym___alignof] = ACTIONS(2631), + [anon_sym__alignof] = ACTIONS(2631), + [anon_sym_alignof] = ACTIONS(2631), + [anon_sym__Alignof] = ACTIONS(2631), + [anon_sym_offsetof] = ACTIONS(2631), + [anon_sym__Generic] = ACTIONS(2631), + [anon_sym_asm] = ACTIONS(2631), + [anon_sym___asm__] = ACTIONS(2631), + [anon_sym___asm] = ACTIONS(2631), + [sym_number_literal] = ACTIONS(2633), + [anon_sym_L_SQUOTE] = ACTIONS(2633), + [anon_sym_u_SQUOTE] = ACTIONS(2633), + [anon_sym_U_SQUOTE] = ACTIONS(2633), + [anon_sym_u8_SQUOTE] = ACTIONS(2633), + [anon_sym_SQUOTE] = ACTIONS(2633), + [anon_sym_L_DQUOTE] = ACTIONS(2633), + [anon_sym_u_DQUOTE] = ACTIONS(2633), + [anon_sym_U_DQUOTE] = ACTIONS(2633), + [anon_sym_u8_DQUOTE] = ACTIONS(2633), + [anon_sym_DQUOTE] = ACTIONS(2633), + [sym_true] = ACTIONS(2631), + [sym_false] = ACTIONS(2631), + [anon_sym_NULL] = ACTIONS(2631), + [anon_sym_nullptr] = ACTIONS(2631), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2631), + [anon_sym_decltype] = ACTIONS(2631), + [anon_sym_explicit] = ACTIONS(2631), + [anon_sym_typename] = ACTIONS(2631), + [anon_sym_template] = ACTIONS(2631), + [anon_sym_operator] = ACTIONS(2631), + [anon_sym_try] = ACTIONS(2631), + [anon_sym_delete] = ACTIONS(2631), + [anon_sym_throw] = ACTIONS(2631), + [anon_sym_namespace] = ACTIONS(2631), + [anon_sym_static_assert] = ACTIONS(2631), + [anon_sym_concept] = ACTIONS(2631), + [anon_sym_co_return] = ACTIONS(2631), + [anon_sym_co_yield] = ACTIONS(2631), + [anon_sym_R_DQUOTE] = ACTIONS(2633), + [anon_sym_LR_DQUOTE] = ACTIONS(2633), + [anon_sym_uR_DQUOTE] = ACTIONS(2633), + [anon_sym_UR_DQUOTE] = ACTIONS(2633), + [anon_sym_u8R_DQUOTE] = ACTIONS(2633), + [anon_sym_co_await] = ACTIONS(2631), + [anon_sym_new] = ACTIONS(2631), + [anon_sym_requires] = ACTIONS(2631), + [sym_this] = ACTIONS(2631), + }, + [581] = { + [sym_identifier] = ACTIONS(2775), + [aux_sym_preproc_include_token1] = ACTIONS(2775), + [aux_sym_preproc_def_token1] = ACTIONS(2775), + [aux_sym_preproc_if_token1] = ACTIONS(2775), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2775), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2775), + [sym_preproc_directive] = ACTIONS(2775), + [anon_sym_LPAREN2] = ACTIONS(2777), + [anon_sym_BANG] = ACTIONS(2777), + [anon_sym_TILDE] = ACTIONS(2777), + [anon_sym_DASH] = ACTIONS(2775), + [anon_sym_PLUS] = ACTIONS(2775), + [anon_sym_STAR] = ACTIONS(2777), + [anon_sym_AMP_AMP] = ACTIONS(2777), + [anon_sym_AMP] = ACTIONS(2775), + [anon_sym_SEMI] = ACTIONS(2777), + [anon_sym___extension__] = ACTIONS(2775), + [anon_sym_typedef] = ACTIONS(2775), + [anon_sym_virtual] = ACTIONS(2775), + [anon_sym_extern] = ACTIONS(2775), + [anon_sym___attribute__] = ACTIONS(2775), + [anon_sym___attribute] = ACTIONS(2775), + [anon_sym_using] = ACTIONS(2775), + [anon_sym_COLON_COLON] = ACTIONS(2777), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2777), + [anon_sym___declspec] = ACTIONS(2775), + [anon_sym___based] = ACTIONS(2775), + [anon_sym___cdecl] = ACTIONS(2775), + [anon_sym___clrcall] = ACTIONS(2775), + [anon_sym___stdcall] = ACTIONS(2775), + [anon_sym___fastcall] = ACTIONS(2775), + [anon_sym___thiscall] = ACTIONS(2775), + [anon_sym___vectorcall] = ACTIONS(2775), + [anon_sym_LBRACE] = ACTIONS(2777), + [anon_sym_RBRACE] = ACTIONS(2777), + [anon_sym_signed] = ACTIONS(2775), + [anon_sym_unsigned] = ACTIONS(2775), + [anon_sym_long] = ACTIONS(2775), + [anon_sym_short] = ACTIONS(2775), + [anon_sym_LBRACK] = ACTIONS(2775), + [anon_sym_static] = ACTIONS(2775), + [anon_sym_register] = ACTIONS(2775), + [anon_sym_inline] = ACTIONS(2775), + [anon_sym___inline] = ACTIONS(2775), + [anon_sym___inline__] = ACTIONS(2775), + [anon_sym___forceinline] = ACTIONS(2775), + [anon_sym_thread_local] = ACTIONS(2775), + [anon_sym___thread] = ACTIONS(2775), + [anon_sym_const] = ACTIONS(2775), + [anon_sym_constexpr] = ACTIONS(2775), + [anon_sym_volatile] = ACTIONS(2775), + [anon_sym_restrict] = ACTIONS(2775), + [anon_sym___restrict__] = ACTIONS(2775), + [anon_sym__Atomic] = ACTIONS(2775), + [anon_sym__Noreturn] = ACTIONS(2775), + [anon_sym_noreturn] = ACTIONS(2775), + [anon_sym__Nonnull] = ACTIONS(2775), + [anon_sym_mutable] = ACTIONS(2775), + [anon_sym_constinit] = ACTIONS(2775), + [anon_sym_consteval] = ACTIONS(2775), + [anon_sym_alignas] = ACTIONS(2775), + [anon_sym__Alignas] = ACTIONS(2775), + [sym_primitive_type] = ACTIONS(2775), + [anon_sym_enum] = ACTIONS(2775), + [anon_sym_class] = ACTIONS(2775), + [anon_sym_struct] = ACTIONS(2775), + [anon_sym_union] = ACTIONS(2775), + [anon_sym_if] = ACTIONS(2775), + [anon_sym_else] = ACTIONS(2775), + [anon_sym_switch] = ACTIONS(2775), + [anon_sym_case] = ACTIONS(2775), + [anon_sym_default] = ACTIONS(2775), + [anon_sym_while] = ACTIONS(2775), + [anon_sym_do] = ACTIONS(2775), + [anon_sym_for] = ACTIONS(2775), + [anon_sym_return] = ACTIONS(2775), + [anon_sym_break] = ACTIONS(2775), + [anon_sym_continue] = ACTIONS(2775), + [anon_sym_goto] = ACTIONS(2775), + [anon_sym___try] = ACTIONS(2775), + [anon_sym___leave] = ACTIONS(2775), + [anon_sym_not] = ACTIONS(2775), + [anon_sym_compl] = ACTIONS(2775), + [anon_sym_DASH_DASH] = ACTIONS(2777), + [anon_sym_PLUS_PLUS] = ACTIONS(2777), + [anon_sym_sizeof] = ACTIONS(2775), + [anon_sym___alignof__] = ACTIONS(2775), + [anon_sym___alignof] = ACTIONS(2775), + [anon_sym__alignof] = ACTIONS(2775), + [anon_sym_alignof] = ACTIONS(2775), + [anon_sym__Alignof] = ACTIONS(2775), + [anon_sym_offsetof] = ACTIONS(2775), + [anon_sym__Generic] = ACTIONS(2775), + [anon_sym_asm] = ACTIONS(2775), + [anon_sym___asm__] = ACTIONS(2775), + [anon_sym___asm] = ACTIONS(2775), + [sym_number_literal] = ACTIONS(2777), + [anon_sym_L_SQUOTE] = ACTIONS(2777), + [anon_sym_u_SQUOTE] = ACTIONS(2777), + [anon_sym_U_SQUOTE] = ACTIONS(2777), + [anon_sym_u8_SQUOTE] = ACTIONS(2777), + [anon_sym_SQUOTE] = ACTIONS(2777), + [anon_sym_L_DQUOTE] = ACTIONS(2777), + [anon_sym_u_DQUOTE] = ACTIONS(2777), + [anon_sym_U_DQUOTE] = ACTIONS(2777), + [anon_sym_u8_DQUOTE] = ACTIONS(2777), + [anon_sym_DQUOTE] = ACTIONS(2777), + [sym_true] = ACTIONS(2775), + [sym_false] = ACTIONS(2775), + [anon_sym_NULL] = ACTIONS(2775), + [anon_sym_nullptr] = ACTIONS(2775), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2775), + [anon_sym_decltype] = ACTIONS(2775), + [anon_sym_explicit] = ACTIONS(2775), + [anon_sym_typename] = ACTIONS(2775), + [anon_sym_template] = ACTIONS(2775), + [anon_sym_operator] = ACTIONS(2775), + [anon_sym_try] = ACTIONS(2775), + [anon_sym_delete] = ACTIONS(2775), + [anon_sym_throw] = ACTIONS(2775), + [anon_sym_namespace] = ACTIONS(2775), + [anon_sym_static_assert] = ACTIONS(2775), + [anon_sym_concept] = ACTIONS(2775), + [anon_sym_co_return] = ACTIONS(2775), + [anon_sym_co_yield] = ACTIONS(2775), + [anon_sym_R_DQUOTE] = ACTIONS(2777), + [anon_sym_LR_DQUOTE] = ACTIONS(2777), + [anon_sym_uR_DQUOTE] = ACTIONS(2777), + [anon_sym_UR_DQUOTE] = ACTIONS(2777), + [anon_sym_u8R_DQUOTE] = ACTIONS(2777), + [anon_sym_co_await] = ACTIONS(2775), + [anon_sym_new] = ACTIONS(2775), + [anon_sym_requires] = ACTIONS(2775), + [sym_this] = ACTIONS(2775), + }, + [582] = { + [sym_identifier] = ACTIONS(2713), + [aux_sym_preproc_include_token1] = ACTIONS(2713), + [aux_sym_preproc_def_token1] = ACTIONS(2713), + [aux_sym_preproc_if_token1] = ACTIONS(2713), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2713), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2713), + [sym_preproc_directive] = ACTIONS(2713), + [anon_sym_LPAREN2] = ACTIONS(2715), + [anon_sym_BANG] = ACTIONS(2715), + [anon_sym_TILDE] = ACTIONS(2715), + [anon_sym_DASH] = ACTIONS(2713), + [anon_sym_PLUS] = ACTIONS(2713), + [anon_sym_STAR] = ACTIONS(2715), + [anon_sym_AMP_AMP] = ACTIONS(2715), + [anon_sym_AMP] = ACTIONS(2713), + [anon_sym_SEMI] = ACTIONS(2715), + [anon_sym___extension__] = ACTIONS(2713), + [anon_sym_typedef] = ACTIONS(2713), + [anon_sym_virtual] = ACTIONS(2713), + [anon_sym_extern] = ACTIONS(2713), + [anon_sym___attribute__] = ACTIONS(2713), + [anon_sym___attribute] = ACTIONS(2713), + [anon_sym_using] = ACTIONS(2713), + [anon_sym_COLON_COLON] = ACTIONS(2715), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2715), + [anon_sym___declspec] = ACTIONS(2713), + [anon_sym___based] = ACTIONS(2713), + [anon_sym___cdecl] = ACTIONS(2713), + [anon_sym___clrcall] = ACTIONS(2713), + [anon_sym___stdcall] = ACTIONS(2713), + [anon_sym___fastcall] = ACTIONS(2713), + [anon_sym___thiscall] = ACTIONS(2713), + [anon_sym___vectorcall] = ACTIONS(2713), + [anon_sym_LBRACE] = ACTIONS(2715), + [anon_sym_RBRACE] = ACTIONS(2715), + [anon_sym_signed] = ACTIONS(2713), + [anon_sym_unsigned] = ACTIONS(2713), + [anon_sym_long] = ACTIONS(2713), + [anon_sym_short] = ACTIONS(2713), + [anon_sym_LBRACK] = ACTIONS(2713), + [anon_sym_static] = ACTIONS(2713), + [anon_sym_register] = ACTIONS(2713), + [anon_sym_inline] = ACTIONS(2713), + [anon_sym___inline] = ACTIONS(2713), + [anon_sym___inline__] = ACTIONS(2713), + [anon_sym___forceinline] = ACTIONS(2713), + [anon_sym_thread_local] = ACTIONS(2713), + [anon_sym___thread] = ACTIONS(2713), + [anon_sym_const] = ACTIONS(2713), + [anon_sym_constexpr] = ACTIONS(2713), + [anon_sym_volatile] = ACTIONS(2713), + [anon_sym_restrict] = ACTIONS(2713), + [anon_sym___restrict__] = ACTIONS(2713), + [anon_sym__Atomic] = ACTIONS(2713), + [anon_sym__Noreturn] = ACTIONS(2713), + [anon_sym_noreturn] = ACTIONS(2713), + [anon_sym__Nonnull] = ACTIONS(2713), + [anon_sym_mutable] = ACTIONS(2713), + [anon_sym_constinit] = ACTIONS(2713), + [anon_sym_consteval] = ACTIONS(2713), + [anon_sym_alignas] = ACTIONS(2713), + [anon_sym__Alignas] = ACTIONS(2713), + [sym_primitive_type] = ACTIONS(2713), + [anon_sym_enum] = ACTIONS(2713), + [anon_sym_class] = ACTIONS(2713), + [anon_sym_struct] = ACTIONS(2713), + [anon_sym_union] = ACTIONS(2713), + [anon_sym_if] = ACTIONS(2713), + [anon_sym_else] = ACTIONS(2713), + [anon_sym_switch] = ACTIONS(2713), + [anon_sym_case] = ACTIONS(2713), + [anon_sym_default] = ACTIONS(2713), + [anon_sym_while] = ACTIONS(2713), + [anon_sym_do] = ACTIONS(2713), + [anon_sym_for] = ACTIONS(2713), + [anon_sym_return] = ACTIONS(2713), + [anon_sym_break] = ACTIONS(2713), + [anon_sym_continue] = ACTIONS(2713), + [anon_sym_goto] = ACTIONS(2713), + [anon_sym___try] = ACTIONS(2713), + [anon_sym___leave] = ACTIONS(2713), + [anon_sym_not] = ACTIONS(2713), + [anon_sym_compl] = ACTIONS(2713), + [anon_sym_DASH_DASH] = ACTIONS(2715), + [anon_sym_PLUS_PLUS] = ACTIONS(2715), + [anon_sym_sizeof] = ACTIONS(2713), + [anon_sym___alignof__] = ACTIONS(2713), + [anon_sym___alignof] = ACTIONS(2713), + [anon_sym__alignof] = ACTIONS(2713), + [anon_sym_alignof] = ACTIONS(2713), + [anon_sym__Alignof] = ACTIONS(2713), + [anon_sym_offsetof] = ACTIONS(2713), + [anon_sym__Generic] = ACTIONS(2713), + [anon_sym_asm] = ACTIONS(2713), + [anon_sym___asm__] = ACTIONS(2713), + [anon_sym___asm] = ACTIONS(2713), + [sym_number_literal] = ACTIONS(2715), + [anon_sym_L_SQUOTE] = ACTIONS(2715), + [anon_sym_u_SQUOTE] = ACTIONS(2715), + [anon_sym_U_SQUOTE] = ACTIONS(2715), + [anon_sym_u8_SQUOTE] = ACTIONS(2715), + [anon_sym_SQUOTE] = ACTIONS(2715), + [anon_sym_L_DQUOTE] = ACTIONS(2715), + [anon_sym_u_DQUOTE] = ACTIONS(2715), + [anon_sym_U_DQUOTE] = ACTIONS(2715), + [anon_sym_u8_DQUOTE] = ACTIONS(2715), + [anon_sym_DQUOTE] = ACTIONS(2715), + [sym_true] = ACTIONS(2713), + [sym_false] = ACTIONS(2713), + [anon_sym_NULL] = ACTIONS(2713), + [anon_sym_nullptr] = ACTIONS(2713), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2713), + [anon_sym_decltype] = ACTIONS(2713), + [anon_sym_explicit] = ACTIONS(2713), + [anon_sym_typename] = ACTIONS(2713), + [anon_sym_template] = ACTIONS(2713), + [anon_sym_operator] = ACTIONS(2713), + [anon_sym_try] = ACTIONS(2713), + [anon_sym_delete] = ACTIONS(2713), + [anon_sym_throw] = ACTIONS(2713), + [anon_sym_namespace] = ACTIONS(2713), + [anon_sym_static_assert] = ACTIONS(2713), + [anon_sym_concept] = ACTIONS(2713), + [anon_sym_co_return] = ACTIONS(2713), + [anon_sym_co_yield] = ACTIONS(2713), + [anon_sym_R_DQUOTE] = ACTIONS(2715), + [anon_sym_LR_DQUOTE] = ACTIONS(2715), + [anon_sym_uR_DQUOTE] = ACTIONS(2715), + [anon_sym_UR_DQUOTE] = ACTIONS(2715), + [anon_sym_u8R_DQUOTE] = ACTIONS(2715), + [anon_sym_co_await] = ACTIONS(2713), + [anon_sym_new] = ACTIONS(2713), + [anon_sym_requires] = ACTIONS(2713), + [sym_this] = ACTIONS(2713), + }, + [583] = { + [sym_identifier] = ACTIONS(2717), + [aux_sym_preproc_include_token1] = ACTIONS(2717), + [aux_sym_preproc_def_token1] = ACTIONS(2717), + [aux_sym_preproc_if_token1] = ACTIONS(2717), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2717), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2717), + [sym_preproc_directive] = ACTIONS(2717), + [anon_sym_LPAREN2] = ACTIONS(2719), + [anon_sym_BANG] = ACTIONS(2719), + [anon_sym_TILDE] = ACTIONS(2719), + [anon_sym_DASH] = ACTIONS(2717), + [anon_sym_PLUS] = ACTIONS(2717), + [anon_sym_STAR] = ACTIONS(2719), + [anon_sym_AMP_AMP] = ACTIONS(2719), + [anon_sym_AMP] = ACTIONS(2717), + [anon_sym_SEMI] = ACTIONS(2719), + [anon_sym___extension__] = ACTIONS(2717), + [anon_sym_typedef] = ACTIONS(2717), + [anon_sym_virtual] = ACTIONS(2717), + [anon_sym_extern] = ACTIONS(2717), + [anon_sym___attribute__] = ACTIONS(2717), + [anon_sym___attribute] = ACTIONS(2717), + [anon_sym_using] = ACTIONS(2717), + [anon_sym_COLON_COLON] = ACTIONS(2719), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2719), + [anon_sym___declspec] = ACTIONS(2717), + [anon_sym___based] = ACTIONS(2717), + [anon_sym___cdecl] = ACTIONS(2717), + [anon_sym___clrcall] = ACTIONS(2717), + [anon_sym___stdcall] = ACTIONS(2717), + [anon_sym___fastcall] = ACTIONS(2717), + [anon_sym___thiscall] = ACTIONS(2717), + [anon_sym___vectorcall] = ACTIONS(2717), + [anon_sym_LBRACE] = ACTIONS(2719), + [anon_sym_RBRACE] = ACTIONS(2719), + [anon_sym_signed] = ACTIONS(2717), + [anon_sym_unsigned] = ACTIONS(2717), + [anon_sym_long] = ACTIONS(2717), + [anon_sym_short] = ACTIONS(2717), + [anon_sym_LBRACK] = ACTIONS(2717), + [anon_sym_static] = ACTIONS(2717), + [anon_sym_register] = ACTIONS(2717), + [anon_sym_inline] = ACTIONS(2717), + [anon_sym___inline] = ACTIONS(2717), + [anon_sym___inline__] = ACTIONS(2717), + [anon_sym___forceinline] = ACTIONS(2717), + [anon_sym_thread_local] = ACTIONS(2717), + [anon_sym___thread] = ACTIONS(2717), + [anon_sym_const] = ACTIONS(2717), + [anon_sym_constexpr] = ACTIONS(2717), + [anon_sym_volatile] = ACTIONS(2717), + [anon_sym_restrict] = ACTIONS(2717), + [anon_sym___restrict__] = ACTIONS(2717), + [anon_sym__Atomic] = ACTIONS(2717), + [anon_sym__Noreturn] = ACTIONS(2717), + [anon_sym_noreturn] = ACTIONS(2717), + [anon_sym__Nonnull] = ACTIONS(2717), + [anon_sym_mutable] = ACTIONS(2717), + [anon_sym_constinit] = ACTIONS(2717), + [anon_sym_consteval] = ACTIONS(2717), + [anon_sym_alignas] = ACTIONS(2717), + [anon_sym__Alignas] = ACTIONS(2717), + [sym_primitive_type] = ACTIONS(2717), + [anon_sym_enum] = ACTIONS(2717), + [anon_sym_class] = ACTIONS(2717), + [anon_sym_struct] = ACTIONS(2717), + [anon_sym_union] = ACTIONS(2717), + [anon_sym_if] = ACTIONS(2717), + [anon_sym_else] = ACTIONS(2717), + [anon_sym_switch] = ACTIONS(2717), + [anon_sym_case] = ACTIONS(2717), + [anon_sym_default] = ACTIONS(2717), + [anon_sym_while] = ACTIONS(2717), + [anon_sym_do] = ACTIONS(2717), + [anon_sym_for] = ACTIONS(2717), + [anon_sym_return] = ACTIONS(2717), + [anon_sym_break] = ACTIONS(2717), + [anon_sym_continue] = ACTIONS(2717), + [anon_sym_goto] = ACTIONS(2717), + [anon_sym___try] = ACTIONS(2717), + [anon_sym___leave] = ACTIONS(2717), + [anon_sym_not] = ACTIONS(2717), + [anon_sym_compl] = ACTIONS(2717), + [anon_sym_DASH_DASH] = ACTIONS(2719), + [anon_sym_PLUS_PLUS] = ACTIONS(2719), + [anon_sym_sizeof] = ACTIONS(2717), + [anon_sym___alignof__] = ACTIONS(2717), + [anon_sym___alignof] = ACTIONS(2717), + [anon_sym__alignof] = ACTIONS(2717), + [anon_sym_alignof] = ACTIONS(2717), + [anon_sym__Alignof] = ACTIONS(2717), + [anon_sym_offsetof] = ACTIONS(2717), + [anon_sym__Generic] = ACTIONS(2717), + [anon_sym_asm] = ACTIONS(2717), + [anon_sym___asm__] = ACTIONS(2717), + [anon_sym___asm] = ACTIONS(2717), + [sym_number_literal] = ACTIONS(2719), + [anon_sym_L_SQUOTE] = ACTIONS(2719), + [anon_sym_u_SQUOTE] = ACTIONS(2719), + [anon_sym_U_SQUOTE] = ACTIONS(2719), + [anon_sym_u8_SQUOTE] = ACTIONS(2719), + [anon_sym_SQUOTE] = ACTIONS(2719), + [anon_sym_L_DQUOTE] = ACTIONS(2719), + [anon_sym_u_DQUOTE] = ACTIONS(2719), + [anon_sym_U_DQUOTE] = ACTIONS(2719), + [anon_sym_u8_DQUOTE] = ACTIONS(2719), + [anon_sym_DQUOTE] = ACTIONS(2719), + [sym_true] = ACTIONS(2717), + [sym_false] = ACTIONS(2717), + [anon_sym_NULL] = ACTIONS(2717), + [anon_sym_nullptr] = ACTIONS(2717), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2717), + [anon_sym_decltype] = ACTIONS(2717), + [anon_sym_explicit] = ACTIONS(2717), + [anon_sym_typename] = ACTIONS(2717), + [anon_sym_template] = ACTIONS(2717), + [anon_sym_operator] = ACTIONS(2717), + [anon_sym_try] = ACTIONS(2717), + [anon_sym_delete] = ACTIONS(2717), + [anon_sym_throw] = ACTIONS(2717), + [anon_sym_namespace] = ACTIONS(2717), + [anon_sym_static_assert] = ACTIONS(2717), + [anon_sym_concept] = ACTIONS(2717), + [anon_sym_co_return] = ACTIONS(2717), + [anon_sym_co_yield] = ACTIONS(2717), + [anon_sym_R_DQUOTE] = ACTIONS(2719), + [anon_sym_LR_DQUOTE] = ACTIONS(2719), + [anon_sym_uR_DQUOTE] = ACTIONS(2719), + [anon_sym_UR_DQUOTE] = ACTIONS(2719), + [anon_sym_u8R_DQUOTE] = ACTIONS(2719), + [anon_sym_co_await] = ACTIONS(2717), + [anon_sym_new] = ACTIONS(2717), + [anon_sym_requires] = ACTIONS(2717), + [sym_this] = ACTIONS(2717), + }, + [584] = { + [ts_builtin_sym_end] = ACTIONS(2901), + [sym_identifier] = ACTIONS(2899), + [aux_sym_preproc_include_token1] = ACTIONS(2899), + [aux_sym_preproc_def_token1] = ACTIONS(2899), + [aux_sym_preproc_if_token1] = ACTIONS(2899), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2899), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2899), + [sym_preproc_directive] = ACTIONS(2899), + [anon_sym_LPAREN2] = ACTIONS(2901), + [anon_sym_BANG] = ACTIONS(2901), + [anon_sym_TILDE] = ACTIONS(2901), + [anon_sym_DASH] = ACTIONS(2899), + [anon_sym_PLUS] = ACTIONS(2899), + [anon_sym_STAR] = ACTIONS(2901), + [anon_sym_AMP_AMP] = ACTIONS(2901), + [anon_sym_AMP] = ACTIONS(2899), + [anon_sym_SEMI] = ACTIONS(2901), + [anon_sym___extension__] = ACTIONS(2899), + [anon_sym_typedef] = ACTIONS(2899), + [anon_sym_virtual] = ACTIONS(2899), + [anon_sym_extern] = ACTIONS(2899), + [anon_sym___attribute__] = ACTIONS(2899), + [anon_sym___attribute] = ACTIONS(2899), + [anon_sym_using] = ACTIONS(2899), + [anon_sym_COLON_COLON] = ACTIONS(2901), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2901), + [anon_sym___declspec] = ACTIONS(2899), + [anon_sym___based] = ACTIONS(2899), + [anon_sym___cdecl] = ACTIONS(2899), + [anon_sym___clrcall] = ACTIONS(2899), + [anon_sym___stdcall] = ACTIONS(2899), + [anon_sym___fastcall] = ACTIONS(2899), + [anon_sym___thiscall] = ACTIONS(2899), + [anon_sym___vectorcall] = ACTIONS(2899), + [anon_sym_LBRACE] = ACTIONS(2901), + [anon_sym_signed] = ACTIONS(2899), + [anon_sym_unsigned] = ACTIONS(2899), + [anon_sym_long] = ACTIONS(2899), + [anon_sym_short] = ACTIONS(2899), + [anon_sym_LBRACK] = ACTIONS(2899), + [anon_sym_static] = ACTIONS(2899), + [anon_sym_register] = ACTIONS(2899), + [anon_sym_inline] = ACTIONS(2899), + [anon_sym___inline] = ACTIONS(2899), + [anon_sym___inline__] = ACTIONS(2899), + [anon_sym___forceinline] = ACTIONS(2899), + [anon_sym_thread_local] = ACTIONS(2899), + [anon_sym___thread] = ACTIONS(2899), + [anon_sym_const] = ACTIONS(2899), + [anon_sym_constexpr] = ACTIONS(2899), + [anon_sym_volatile] = ACTIONS(2899), + [anon_sym_restrict] = ACTIONS(2899), + [anon_sym___restrict__] = ACTIONS(2899), + [anon_sym__Atomic] = ACTIONS(2899), + [anon_sym__Noreturn] = ACTIONS(2899), + [anon_sym_noreturn] = ACTIONS(2899), + [anon_sym__Nonnull] = ACTIONS(2899), + [anon_sym_mutable] = ACTIONS(2899), + [anon_sym_constinit] = ACTIONS(2899), + [anon_sym_consteval] = ACTIONS(2899), + [anon_sym_alignas] = ACTIONS(2899), + [anon_sym__Alignas] = ACTIONS(2899), + [sym_primitive_type] = ACTIONS(2899), + [anon_sym_enum] = ACTIONS(2899), + [anon_sym_class] = ACTIONS(2899), + [anon_sym_struct] = ACTIONS(2899), + [anon_sym_union] = ACTIONS(2899), + [anon_sym_if] = ACTIONS(2899), + [anon_sym_switch] = ACTIONS(2899), + [anon_sym_case] = ACTIONS(2899), + [anon_sym_default] = ACTIONS(2899), + [anon_sym_while] = ACTIONS(2899), + [anon_sym_do] = ACTIONS(2899), + [anon_sym_for] = ACTIONS(2899), + [anon_sym_return] = ACTIONS(2899), + [anon_sym_break] = ACTIONS(2899), + [anon_sym_continue] = ACTIONS(2899), + [anon_sym_goto] = ACTIONS(2899), + [anon_sym_not] = ACTIONS(2899), + [anon_sym_compl] = ACTIONS(2899), + [anon_sym_DASH_DASH] = ACTIONS(2901), + [anon_sym_PLUS_PLUS] = ACTIONS(2901), + [anon_sym_sizeof] = ACTIONS(2899), + [anon_sym___alignof__] = ACTIONS(2899), + [anon_sym___alignof] = ACTIONS(2899), + [anon_sym__alignof] = ACTIONS(2899), + [anon_sym_alignof] = ACTIONS(2899), + [anon_sym__Alignof] = ACTIONS(2899), + [anon_sym_offsetof] = ACTIONS(2899), + [anon_sym__Generic] = ACTIONS(2899), + [anon_sym_asm] = ACTIONS(2899), + [anon_sym___asm__] = ACTIONS(2899), + [anon_sym___asm] = ACTIONS(2899), + [sym_number_literal] = ACTIONS(2901), + [anon_sym_L_SQUOTE] = ACTIONS(2901), + [anon_sym_u_SQUOTE] = ACTIONS(2901), + [anon_sym_U_SQUOTE] = ACTIONS(2901), + [anon_sym_u8_SQUOTE] = ACTIONS(2901), + [anon_sym_SQUOTE] = ACTIONS(2901), + [anon_sym_L_DQUOTE] = ACTIONS(2901), + [anon_sym_u_DQUOTE] = ACTIONS(2901), + [anon_sym_U_DQUOTE] = ACTIONS(2901), + [anon_sym_u8_DQUOTE] = ACTIONS(2901), + [anon_sym_DQUOTE] = ACTIONS(2901), + [sym_true] = ACTIONS(2899), + [sym_false] = ACTIONS(2899), + [anon_sym_NULL] = ACTIONS(2899), + [anon_sym_nullptr] = ACTIONS(2899), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2899), + [anon_sym_decltype] = ACTIONS(2899), + [anon_sym_explicit] = ACTIONS(2899), + [anon_sym_typename] = ACTIONS(2899), + [anon_sym_export] = ACTIONS(2899), + [anon_sym_module] = ACTIONS(2899), + [anon_sym_import] = ACTIONS(2899), + [anon_sym_template] = ACTIONS(2899), + [anon_sym_operator] = ACTIONS(2899), + [anon_sym_try] = ACTIONS(2899), + [anon_sym_delete] = ACTIONS(2899), + [anon_sym_throw] = ACTIONS(2899), + [anon_sym_namespace] = ACTIONS(2899), + [anon_sym_static_assert] = ACTIONS(2899), + [anon_sym_concept] = ACTIONS(2899), + [anon_sym_co_return] = ACTIONS(2899), + [anon_sym_co_yield] = ACTIONS(2899), + [anon_sym_R_DQUOTE] = ACTIONS(2901), + [anon_sym_LR_DQUOTE] = ACTIONS(2901), + [anon_sym_uR_DQUOTE] = ACTIONS(2901), + [anon_sym_UR_DQUOTE] = ACTIONS(2901), + [anon_sym_u8R_DQUOTE] = ACTIONS(2901), + [anon_sym_co_await] = ACTIONS(2899), + [anon_sym_new] = ACTIONS(2899), + [anon_sym_requires] = ACTIONS(2899), + [sym_this] = ACTIONS(2899), + }, + [585] = { + [sym_identifier] = ACTIONS(2721), + [aux_sym_preproc_include_token1] = ACTIONS(2721), + [aux_sym_preproc_def_token1] = ACTIONS(2721), + [aux_sym_preproc_if_token1] = ACTIONS(2721), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2721), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2721), + [sym_preproc_directive] = ACTIONS(2721), + [anon_sym_LPAREN2] = ACTIONS(2723), + [anon_sym_BANG] = ACTIONS(2723), + [anon_sym_TILDE] = ACTIONS(2723), + [anon_sym_DASH] = ACTIONS(2721), + [anon_sym_PLUS] = ACTIONS(2721), + [anon_sym_STAR] = ACTIONS(2723), + [anon_sym_AMP_AMP] = ACTIONS(2723), + [anon_sym_AMP] = ACTIONS(2721), + [anon_sym_SEMI] = ACTIONS(2723), + [anon_sym___extension__] = ACTIONS(2721), + [anon_sym_typedef] = ACTIONS(2721), + [anon_sym_virtual] = ACTIONS(2721), + [anon_sym_extern] = ACTIONS(2721), + [anon_sym___attribute__] = ACTIONS(2721), + [anon_sym___attribute] = ACTIONS(2721), + [anon_sym_using] = ACTIONS(2721), + [anon_sym_COLON_COLON] = ACTIONS(2723), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2723), + [anon_sym___declspec] = ACTIONS(2721), + [anon_sym___based] = ACTIONS(2721), + [anon_sym___cdecl] = ACTIONS(2721), + [anon_sym___clrcall] = ACTIONS(2721), + [anon_sym___stdcall] = ACTIONS(2721), + [anon_sym___fastcall] = ACTIONS(2721), + [anon_sym___thiscall] = ACTIONS(2721), + [anon_sym___vectorcall] = ACTIONS(2721), + [anon_sym_LBRACE] = ACTIONS(2723), + [anon_sym_RBRACE] = ACTIONS(2723), + [anon_sym_signed] = ACTIONS(2721), + [anon_sym_unsigned] = ACTIONS(2721), + [anon_sym_long] = ACTIONS(2721), + [anon_sym_short] = ACTIONS(2721), + [anon_sym_LBRACK] = ACTIONS(2721), + [anon_sym_static] = ACTIONS(2721), + [anon_sym_register] = ACTIONS(2721), + [anon_sym_inline] = ACTIONS(2721), + [anon_sym___inline] = ACTIONS(2721), + [anon_sym___inline__] = ACTIONS(2721), + [anon_sym___forceinline] = ACTIONS(2721), + [anon_sym_thread_local] = ACTIONS(2721), + [anon_sym___thread] = ACTIONS(2721), + [anon_sym_const] = ACTIONS(2721), + [anon_sym_constexpr] = ACTIONS(2721), + [anon_sym_volatile] = ACTIONS(2721), + [anon_sym_restrict] = ACTIONS(2721), + [anon_sym___restrict__] = ACTIONS(2721), + [anon_sym__Atomic] = ACTIONS(2721), + [anon_sym__Noreturn] = ACTIONS(2721), + [anon_sym_noreturn] = ACTIONS(2721), + [anon_sym__Nonnull] = ACTIONS(2721), + [anon_sym_mutable] = ACTIONS(2721), + [anon_sym_constinit] = ACTIONS(2721), + [anon_sym_consteval] = ACTIONS(2721), + [anon_sym_alignas] = ACTIONS(2721), + [anon_sym__Alignas] = ACTIONS(2721), + [sym_primitive_type] = ACTIONS(2721), + [anon_sym_enum] = ACTIONS(2721), + [anon_sym_class] = ACTIONS(2721), + [anon_sym_struct] = ACTIONS(2721), + [anon_sym_union] = ACTIONS(2721), + [anon_sym_if] = ACTIONS(2721), + [anon_sym_else] = ACTIONS(2721), + [anon_sym_switch] = ACTIONS(2721), + [anon_sym_case] = ACTIONS(2721), + [anon_sym_default] = ACTIONS(2721), + [anon_sym_while] = ACTIONS(2721), + [anon_sym_do] = ACTIONS(2721), + [anon_sym_for] = ACTIONS(2721), + [anon_sym_return] = ACTIONS(2721), + [anon_sym_break] = ACTIONS(2721), + [anon_sym_continue] = ACTIONS(2721), + [anon_sym_goto] = ACTIONS(2721), + [anon_sym___try] = ACTIONS(2721), + [anon_sym___leave] = ACTIONS(2721), + [anon_sym_not] = ACTIONS(2721), + [anon_sym_compl] = ACTIONS(2721), + [anon_sym_DASH_DASH] = ACTIONS(2723), + [anon_sym_PLUS_PLUS] = ACTIONS(2723), + [anon_sym_sizeof] = ACTIONS(2721), + [anon_sym___alignof__] = ACTIONS(2721), + [anon_sym___alignof] = ACTIONS(2721), + [anon_sym__alignof] = ACTIONS(2721), + [anon_sym_alignof] = ACTIONS(2721), + [anon_sym__Alignof] = ACTIONS(2721), + [anon_sym_offsetof] = ACTIONS(2721), + [anon_sym__Generic] = ACTIONS(2721), + [anon_sym_asm] = ACTIONS(2721), + [anon_sym___asm__] = ACTIONS(2721), + [anon_sym___asm] = ACTIONS(2721), + [sym_number_literal] = ACTIONS(2723), + [anon_sym_L_SQUOTE] = ACTIONS(2723), + [anon_sym_u_SQUOTE] = ACTIONS(2723), + [anon_sym_U_SQUOTE] = ACTIONS(2723), + [anon_sym_u8_SQUOTE] = ACTIONS(2723), + [anon_sym_SQUOTE] = ACTIONS(2723), + [anon_sym_L_DQUOTE] = ACTIONS(2723), + [anon_sym_u_DQUOTE] = ACTIONS(2723), + [anon_sym_U_DQUOTE] = ACTIONS(2723), + [anon_sym_u8_DQUOTE] = ACTIONS(2723), + [anon_sym_DQUOTE] = ACTIONS(2723), + [sym_true] = ACTIONS(2721), + [sym_false] = ACTIONS(2721), + [anon_sym_NULL] = ACTIONS(2721), + [anon_sym_nullptr] = ACTIONS(2721), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2721), + [anon_sym_decltype] = ACTIONS(2721), + [anon_sym_explicit] = ACTIONS(2721), + [anon_sym_typename] = ACTIONS(2721), + [anon_sym_template] = ACTIONS(2721), + [anon_sym_operator] = ACTIONS(2721), + [anon_sym_try] = ACTIONS(2721), + [anon_sym_delete] = ACTIONS(2721), + [anon_sym_throw] = ACTIONS(2721), + [anon_sym_namespace] = ACTIONS(2721), + [anon_sym_static_assert] = ACTIONS(2721), + [anon_sym_concept] = ACTIONS(2721), + [anon_sym_co_return] = ACTIONS(2721), + [anon_sym_co_yield] = ACTIONS(2721), + [anon_sym_R_DQUOTE] = ACTIONS(2723), + [anon_sym_LR_DQUOTE] = ACTIONS(2723), + [anon_sym_uR_DQUOTE] = ACTIONS(2723), + [anon_sym_UR_DQUOTE] = ACTIONS(2723), + [anon_sym_u8R_DQUOTE] = ACTIONS(2723), + [anon_sym_co_await] = ACTIONS(2721), + [anon_sym_new] = ACTIONS(2721), + [anon_sym_requires] = ACTIONS(2721), + [sym_this] = ACTIONS(2721), + }, + [586] = { + [ts_builtin_sym_end] = ACTIONS(2905), + [sym_identifier] = ACTIONS(2903), + [aux_sym_preproc_include_token1] = ACTIONS(2903), + [aux_sym_preproc_def_token1] = ACTIONS(2903), + [aux_sym_preproc_if_token1] = ACTIONS(2903), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2903), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2903), + [sym_preproc_directive] = ACTIONS(2903), + [anon_sym_LPAREN2] = ACTIONS(2905), + [anon_sym_BANG] = ACTIONS(2905), + [anon_sym_TILDE] = ACTIONS(2905), + [anon_sym_DASH] = ACTIONS(2903), + [anon_sym_PLUS] = ACTIONS(2903), + [anon_sym_STAR] = ACTIONS(2905), + [anon_sym_AMP_AMP] = ACTIONS(2905), + [anon_sym_AMP] = ACTIONS(2903), + [anon_sym_SEMI] = ACTIONS(2905), + [anon_sym___extension__] = ACTIONS(2903), + [anon_sym_typedef] = ACTIONS(2903), + [anon_sym_virtual] = ACTIONS(2903), + [anon_sym_extern] = ACTIONS(2903), + [anon_sym___attribute__] = ACTIONS(2903), + [anon_sym___attribute] = ACTIONS(2903), + [anon_sym_using] = ACTIONS(2903), + [anon_sym_COLON_COLON] = ACTIONS(2905), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2905), + [anon_sym___declspec] = ACTIONS(2903), + [anon_sym___based] = ACTIONS(2903), + [anon_sym___cdecl] = ACTIONS(2903), + [anon_sym___clrcall] = ACTIONS(2903), + [anon_sym___stdcall] = ACTIONS(2903), + [anon_sym___fastcall] = ACTIONS(2903), + [anon_sym___thiscall] = ACTIONS(2903), + [anon_sym___vectorcall] = ACTIONS(2903), + [anon_sym_LBRACE] = ACTIONS(2905), + [anon_sym_signed] = ACTIONS(2903), + [anon_sym_unsigned] = ACTIONS(2903), + [anon_sym_long] = ACTIONS(2903), + [anon_sym_short] = ACTIONS(2903), + [anon_sym_LBRACK] = ACTIONS(2903), + [anon_sym_static] = ACTIONS(2903), + [anon_sym_register] = ACTIONS(2903), + [anon_sym_inline] = ACTIONS(2903), + [anon_sym___inline] = ACTIONS(2903), + [anon_sym___inline__] = ACTIONS(2903), + [anon_sym___forceinline] = ACTIONS(2903), + [anon_sym_thread_local] = ACTIONS(2903), + [anon_sym___thread] = ACTIONS(2903), + [anon_sym_const] = ACTIONS(2903), + [anon_sym_constexpr] = ACTIONS(2903), + [anon_sym_volatile] = ACTIONS(2903), + [anon_sym_restrict] = ACTIONS(2903), + [anon_sym___restrict__] = ACTIONS(2903), + [anon_sym__Atomic] = ACTIONS(2903), + [anon_sym__Noreturn] = ACTIONS(2903), + [anon_sym_noreturn] = ACTIONS(2903), + [anon_sym__Nonnull] = ACTIONS(2903), + [anon_sym_mutable] = ACTIONS(2903), + [anon_sym_constinit] = ACTIONS(2903), + [anon_sym_consteval] = ACTIONS(2903), + [anon_sym_alignas] = ACTIONS(2903), + [anon_sym__Alignas] = ACTIONS(2903), + [sym_primitive_type] = ACTIONS(2903), + [anon_sym_enum] = ACTIONS(2903), + [anon_sym_class] = ACTIONS(2903), + [anon_sym_struct] = ACTIONS(2903), + [anon_sym_union] = ACTIONS(2903), + [anon_sym_if] = ACTIONS(2903), + [anon_sym_switch] = ACTIONS(2903), + [anon_sym_case] = ACTIONS(2903), + [anon_sym_default] = ACTIONS(2903), + [anon_sym_while] = ACTIONS(2903), + [anon_sym_do] = ACTIONS(2903), + [anon_sym_for] = ACTIONS(2903), + [anon_sym_return] = ACTIONS(2903), + [anon_sym_break] = ACTIONS(2903), + [anon_sym_continue] = ACTIONS(2903), + [anon_sym_goto] = ACTIONS(2903), + [anon_sym_not] = ACTIONS(2903), + [anon_sym_compl] = ACTIONS(2903), + [anon_sym_DASH_DASH] = ACTIONS(2905), + [anon_sym_PLUS_PLUS] = ACTIONS(2905), + [anon_sym_sizeof] = ACTIONS(2903), + [anon_sym___alignof__] = ACTIONS(2903), + [anon_sym___alignof] = ACTIONS(2903), + [anon_sym__alignof] = ACTIONS(2903), + [anon_sym_alignof] = ACTIONS(2903), + [anon_sym__Alignof] = ACTIONS(2903), + [anon_sym_offsetof] = ACTIONS(2903), + [anon_sym__Generic] = ACTIONS(2903), + [anon_sym_asm] = ACTIONS(2903), + [anon_sym___asm__] = ACTIONS(2903), + [anon_sym___asm] = ACTIONS(2903), + [sym_number_literal] = ACTIONS(2905), + [anon_sym_L_SQUOTE] = ACTIONS(2905), + [anon_sym_u_SQUOTE] = ACTIONS(2905), + [anon_sym_U_SQUOTE] = ACTIONS(2905), + [anon_sym_u8_SQUOTE] = ACTIONS(2905), + [anon_sym_SQUOTE] = ACTIONS(2905), + [anon_sym_L_DQUOTE] = ACTIONS(2905), + [anon_sym_u_DQUOTE] = ACTIONS(2905), + [anon_sym_U_DQUOTE] = ACTIONS(2905), + [anon_sym_u8_DQUOTE] = ACTIONS(2905), + [anon_sym_DQUOTE] = ACTIONS(2905), + [sym_true] = ACTIONS(2903), + [sym_false] = ACTIONS(2903), + [anon_sym_NULL] = ACTIONS(2903), + [anon_sym_nullptr] = ACTIONS(2903), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2903), + [anon_sym_decltype] = ACTIONS(2903), + [anon_sym_explicit] = ACTIONS(2903), + [anon_sym_typename] = ACTIONS(2903), + [anon_sym_export] = ACTIONS(2903), + [anon_sym_module] = ACTIONS(2903), + [anon_sym_import] = ACTIONS(2903), + [anon_sym_template] = ACTIONS(2903), + [anon_sym_operator] = ACTIONS(2903), + [anon_sym_try] = ACTIONS(2903), + [anon_sym_delete] = ACTIONS(2903), + [anon_sym_throw] = ACTIONS(2903), + [anon_sym_namespace] = ACTIONS(2903), + [anon_sym_static_assert] = ACTIONS(2903), + [anon_sym_concept] = ACTIONS(2903), + [anon_sym_co_return] = ACTIONS(2903), + [anon_sym_co_yield] = ACTIONS(2903), + [anon_sym_R_DQUOTE] = ACTIONS(2905), + [anon_sym_LR_DQUOTE] = ACTIONS(2905), + [anon_sym_uR_DQUOTE] = ACTIONS(2905), + [anon_sym_UR_DQUOTE] = ACTIONS(2905), + [anon_sym_u8R_DQUOTE] = ACTIONS(2905), + [anon_sym_co_await] = ACTIONS(2903), + [anon_sym_new] = ACTIONS(2903), + [anon_sym_requires] = ACTIONS(2903), + [sym_this] = ACTIONS(2903), + }, + [587] = { + [sym_identifier] = ACTIONS(2739), + [aux_sym_preproc_include_token1] = ACTIONS(2739), + [aux_sym_preproc_def_token1] = ACTIONS(2739), + [aux_sym_preproc_if_token1] = ACTIONS(2739), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2739), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2739), + [sym_preproc_directive] = ACTIONS(2739), + [anon_sym_LPAREN2] = ACTIONS(2741), + [anon_sym_BANG] = ACTIONS(2741), + [anon_sym_TILDE] = ACTIONS(2741), + [anon_sym_DASH] = ACTIONS(2739), + [anon_sym_PLUS] = ACTIONS(2739), + [anon_sym_STAR] = ACTIONS(2741), + [anon_sym_AMP_AMP] = ACTIONS(2741), + [anon_sym_AMP] = ACTIONS(2739), + [anon_sym_SEMI] = ACTIONS(2741), + [anon_sym___extension__] = ACTIONS(2739), + [anon_sym_typedef] = ACTIONS(2739), + [anon_sym_virtual] = ACTIONS(2739), + [anon_sym_extern] = ACTIONS(2739), + [anon_sym___attribute__] = ACTIONS(2739), + [anon_sym___attribute] = ACTIONS(2739), + [anon_sym_using] = ACTIONS(2739), + [anon_sym_COLON_COLON] = ACTIONS(2741), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2741), + [anon_sym___declspec] = ACTIONS(2739), + [anon_sym___based] = ACTIONS(2739), + [anon_sym___cdecl] = ACTIONS(2739), + [anon_sym___clrcall] = ACTIONS(2739), + [anon_sym___stdcall] = ACTIONS(2739), + [anon_sym___fastcall] = ACTIONS(2739), + [anon_sym___thiscall] = ACTIONS(2739), + [anon_sym___vectorcall] = ACTIONS(2739), + [anon_sym_LBRACE] = ACTIONS(2741), + [anon_sym_RBRACE] = ACTIONS(2741), + [anon_sym_signed] = ACTIONS(2739), + [anon_sym_unsigned] = ACTIONS(2739), + [anon_sym_long] = ACTIONS(2739), [anon_sym_short] = ACTIONS(2739), [anon_sym_LBRACK] = ACTIONS(2739), [anon_sym_static] = ACTIONS(2739), @@ -124514,7 +127291,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2739), [sym_this] = ACTIONS(2739), }, - [570] = { + [588] = { [sym_identifier] = ACTIONS(2751), [aux_sym_preproc_include_token1] = ACTIONS(2751), [aux_sym_preproc_def_token1] = ACTIONS(2751), @@ -124651,1103 +127428,692 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2751), [sym_this] = ACTIONS(2751), }, - [571] = { - [sym_identifier] = ACTIONS(2681), - [aux_sym_preproc_include_token1] = ACTIONS(2681), - [aux_sym_preproc_def_token1] = ACTIONS(2681), - [aux_sym_preproc_if_token1] = ACTIONS(2681), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2681), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2681), - [sym_preproc_directive] = ACTIONS(2681), - [anon_sym_LPAREN2] = ACTIONS(2683), - [anon_sym_BANG] = ACTIONS(2683), - [anon_sym_TILDE] = ACTIONS(2683), - [anon_sym_DASH] = ACTIONS(2681), - [anon_sym_PLUS] = ACTIONS(2681), - [anon_sym_STAR] = ACTIONS(2683), - [anon_sym_AMP_AMP] = ACTIONS(2683), - [anon_sym_AMP] = ACTIONS(2681), - [anon_sym_SEMI] = ACTIONS(2683), - [anon_sym___extension__] = ACTIONS(2681), - [anon_sym_typedef] = ACTIONS(2681), - [anon_sym_virtual] = ACTIONS(2681), - [anon_sym_extern] = ACTIONS(2681), - [anon_sym___attribute__] = ACTIONS(2681), - [anon_sym___attribute] = ACTIONS(2681), - [anon_sym_using] = ACTIONS(2681), - [anon_sym_COLON_COLON] = ACTIONS(2683), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2683), - [anon_sym___declspec] = ACTIONS(2681), - [anon_sym___based] = ACTIONS(2681), - [anon_sym___cdecl] = ACTIONS(2681), - [anon_sym___clrcall] = ACTIONS(2681), - [anon_sym___stdcall] = ACTIONS(2681), - [anon_sym___fastcall] = ACTIONS(2681), - [anon_sym___thiscall] = ACTIONS(2681), - [anon_sym___vectorcall] = ACTIONS(2681), - [anon_sym_LBRACE] = ACTIONS(2683), - [anon_sym_RBRACE] = ACTIONS(2683), - [anon_sym_signed] = ACTIONS(2681), - [anon_sym_unsigned] = ACTIONS(2681), - [anon_sym_long] = ACTIONS(2681), - [anon_sym_short] = ACTIONS(2681), - [anon_sym_LBRACK] = ACTIONS(2681), - [anon_sym_static] = ACTIONS(2681), - [anon_sym_register] = ACTIONS(2681), - [anon_sym_inline] = ACTIONS(2681), - [anon_sym___inline] = ACTIONS(2681), - [anon_sym___inline__] = ACTIONS(2681), - [anon_sym___forceinline] = ACTIONS(2681), - [anon_sym_thread_local] = ACTIONS(2681), - [anon_sym___thread] = ACTIONS(2681), - [anon_sym_const] = ACTIONS(2681), - [anon_sym_constexpr] = ACTIONS(2681), - [anon_sym_volatile] = ACTIONS(2681), - [anon_sym_restrict] = ACTIONS(2681), - [anon_sym___restrict__] = ACTIONS(2681), - [anon_sym__Atomic] = ACTIONS(2681), - [anon_sym__Noreturn] = ACTIONS(2681), - [anon_sym_noreturn] = ACTIONS(2681), - [anon_sym__Nonnull] = ACTIONS(2681), - [anon_sym_mutable] = ACTIONS(2681), - [anon_sym_constinit] = ACTIONS(2681), - [anon_sym_consteval] = ACTIONS(2681), - [anon_sym_alignas] = ACTIONS(2681), - [anon_sym__Alignas] = ACTIONS(2681), - [sym_primitive_type] = ACTIONS(2681), - [anon_sym_enum] = ACTIONS(2681), - [anon_sym_class] = ACTIONS(2681), - [anon_sym_struct] = ACTIONS(2681), - [anon_sym_union] = ACTIONS(2681), - [anon_sym_if] = ACTIONS(2681), - [anon_sym_else] = ACTIONS(2681), - [anon_sym_switch] = ACTIONS(2681), - [anon_sym_case] = ACTIONS(2681), - [anon_sym_default] = ACTIONS(2681), - [anon_sym_while] = ACTIONS(2681), - [anon_sym_do] = ACTIONS(2681), - [anon_sym_for] = ACTIONS(2681), - [anon_sym_return] = ACTIONS(2681), - [anon_sym_break] = ACTIONS(2681), - [anon_sym_continue] = ACTIONS(2681), - [anon_sym_goto] = ACTIONS(2681), - [anon_sym___try] = ACTIONS(2681), - [anon_sym___leave] = ACTIONS(2681), - [anon_sym_not] = ACTIONS(2681), - [anon_sym_compl] = ACTIONS(2681), - [anon_sym_DASH_DASH] = ACTIONS(2683), - [anon_sym_PLUS_PLUS] = ACTIONS(2683), - [anon_sym_sizeof] = ACTIONS(2681), - [anon_sym___alignof__] = ACTIONS(2681), - [anon_sym___alignof] = ACTIONS(2681), - [anon_sym__alignof] = ACTIONS(2681), - [anon_sym_alignof] = ACTIONS(2681), - [anon_sym__Alignof] = ACTIONS(2681), - [anon_sym_offsetof] = ACTIONS(2681), - [anon_sym__Generic] = ACTIONS(2681), - [anon_sym_asm] = ACTIONS(2681), - [anon_sym___asm__] = ACTIONS(2681), - [anon_sym___asm] = ACTIONS(2681), - [sym_number_literal] = ACTIONS(2683), - [anon_sym_L_SQUOTE] = ACTIONS(2683), - [anon_sym_u_SQUOTE] = ACTIONS(2683), - [anon_sym_U_SQUOTE] = ACTIONS(2683), - [anon_sym_u8_SQUOTE] = ACTIONS(2683), - [anon_sym_SQUOTE] = ACTIONS(2683), - [anon_sym_L_DQUOTE] = ACTIONS(2683), - [anon_sym_u_DQUOTE] = ACTIONS(2683), - [anon_sym_U_DQUOTE] = ACTIONS(2683), - [anon_sym_u8_DQUOTE] = ACTIONS(2683), - [anon_sym_DQUOTE] = ACTIONS(2683), - [sym_true] = ACTIONS(2681), - [sym_false] = ACTIONS(2681), - [anon_sym_NULL] = ACTIONS(2681), - [anon_sym_nullptr] = ACTIONS(2681), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2681), - [anon_sym_decltype] = ACTIONS(2681), - [anon_sym_explicit] = ACTIONS(2681), - [anon_sym_typename] = ACTIONS(2681), - [anon_sym_template] = ACTIONS(2681), - [anon_sym_operator] = ACTIONS(2681), - [anon_sym_try] = ACTIONS(2681), - [anon_sym_delete] = ACTIONS(2681), - [anon_sym_throw] = ACTIONS(2681), - [anon_sym_namespace] = ACTIONS(2681), - [anon_sym_static_assert] = ACTIONS(2681), - [anon_sym_concept] = ACTIONS(2681), - [anon_sym_co_return] = ACTIONS(2681), - [anon_sym_co_yield] = ACTIONS(2681), - [anon_sym_R_DQUOTE] = ACTIONS(2683), - [anon_sym_LR_DQUOTE] = ACTIONS(2683), - [anon_sym_uR_DQUOTE] = ACTIONS(2683), - [anon_sym_UR_DQUOTE] = ACTIONS(2683), - [anon_sym_u8R_DQUOTE] = ACTIONS(2683), - [anon_sym_co_await] = ACTIONS(2681), - [anon_sym_new] = ACTIONS(2681), - [anon_sym_requires] = ACTIONS(2681), - [sym_this] = ACTIONS(2681), - }, - [572] = { - [sym_identifier] = ACTIONS(2747), - [aux_sym_preproc_include_token1] = ACTIONS(2747), - [aux_sym_preproc_def_token1] = ACTIONS(2747), - [aux_sym_preproc_if_token1] = ACTIONS(2747), - [aux_sym_preproc_if_token2] = ACTIONS(2747), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2747), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2747), - [sym_preproc_directive] = ACTIONS(2747), - [anon_sym_LPAREN2] = ACTIONS(2749), - [anon_sym_BANG] = ACTIONS(2749), - [anon_sym_TILDE] = ACTIONS(2749), - [anon_sym_DASH] = ACTIONS(2747), - [anon_sym_PLUS] = ACTIONS(2747), - [anon_sym_STAR] = ACTIONS(2749), - [anon_sym_AMP_AMP] = ACTIONS(2749), - [anon_sym_AMP] = ACTIONS(2747), - [anon_sym_SEMI] = ACTIONS(2749), - [anon_sym___extension__] = ACTIONS(2747), - [anon_sym_typedef] = ACTIONS(2747), - [anon_sym_virtual] = ACTIONS(2747), - [anon_sym_extern] = ACTIONS(2747), - [anon_sym___attribute__] = ACTIONS(2747), - [anon_sym___attribute] = ACTIONS(2747), - [anon_sym_using] = ACTIONS(2747), - [anon_sym_COLON_COLON] = ACTIONS(2749), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2749), - [anon_sym___declspec] = ACTIONS(2747), - [anon_sym___based] = ACTIONS(2747), - [anon_sym___cdecl] = ACTIONS(2747), - [anon_sym___clrcall] = ACTIONS(2747), - [anon_sym___stdcall] = ACTIONS(2747), - [anon_sym___fastcall] = ACTIONS(2747), - [anon_sym___thiscall] = ACTIONS(2747), - [anon_sym___vectorcall] = ACTIONS(2747), - [anon_sym_LBRACE] = ACTIONS(2749), - [anon_sym_signed] = ACTIONS(2747), - [anon_sym_unsigned] = ACTIONS(2747), - [anon_sym_long] = ACTIONS(2747), - [anon_sym_short] = ACTIONS(2747), - [anon_sym_LBRACK] = ACTIONS(2747), - [anon_sym_static] = ACTIONS(2747), - [anon_sym_register] = ACTIONS(2747), - [anon_sym_inline] = ACTIONS(2747), - [anon_sym___inline] = ACTIONS(2747), - [anon_sym___inline__] = ACTIONS(2747), - [anon_sym___forceinline] = ACTIONS(2747), - [anon_sym_thread_local] = ACTIONS(2747), - [anon_sym___thread] = ACTIONS(2747), - [anon_sym_const] = ACTIONS(2747), - [anon_sym_constexpr] = ACTIONS(2747), - [anon_sym_volatile] = ACTIONS(2747), - [anon_sym_restrict] = ACTIONS(2747), - [anon_sym___restrict__] = ACTIONS(2747), - [anon_sym__Atomic] = ACTIONS(2747), - [anon_sym__Noreturn] = ACTIONS(2747), - [anon_sym_noreturn] = ACTIONS(2747), - [anon_sym__Nonnull] = ACTIONS(2747), - [anon_sym_mutable] = ACTIONS(2747), - [anon_sym_constinit] = ACTIONS(2747), - [anon_sym_consteval] = ACTIONS(2747), - [anon_sym_alignas] = ACTIONS(2747), - [anon_sym__Alignas] = ACTIONS(2747), - [sym_primitive_type] = ACTIONS(2747), - [anon_sym_enum] = ACTIONS(2747), - [anon_sym_class] = ACTIONS(2747), - [anon_sym_struct] = ACTIONS(2747), - [anon_sym_union] = ACTIONS(2747), - [anon_sym_if] = ACTIONS(2747), - [anon_sym_else] = ACTIONS(2747), - [anon_sym_switch] = ACTIONS(2747), - [anon_sym_case] = ACTIONS(2747), - [anon_sym_default] = ACTIONS(2747), - [anon_sym_while] = ACTIONS(2747), - [anon_sym_do] = ACTIONS(2747), - [anon_sym_for] = ACTIONS(2747), - [anon_sym_return] = ACTIONS(2747), - [anon_sym_break] = ACTIONS(2747), - [anon_sym_continue] = ACTIONS(2747), - [anon_sym_goto] = ACTIONS(2747), - [anon_sym___try] = ACTIONS(2747), - [anon_sym___leave] = ACTIONS(2747), - [anon_sym_not] = ACTIONS(2747), - [anon_sym_compl] = ACTIONS(2747), - [anon_sym_DASH_DASH] = ACTIONS(2749), - [anon_sym_PLUS_PLUS] = ACTIONS(2749), - [anon_sym_sizeof] = ACTIONS(2747), - [anon_sym___alignof__] = ACTIONS(2747), - [anon_sym___alignof] = ACTIONS(2747), - [anon_sym__alignof] = ACTIONS(2747), - [anon_sym_alignof] = ACTIONS(2747), - [anon_sym__Alignof] = ACTIONS(2747), - [anon_sym_offsetof] = ACTIONS(2747), - [anon_sym__Generic] = ACTIONS(2747), - [anon_sym_asm] = ACTIONS(2747), - [anon_sym___asm__] = ACTIONS(2747), - [anon_sym___asm] = ACTIONS(2747), - [sym_number_literal] = ACTIONS(2749), - [anon_sym_L_SQUOTE] = ACTIONS(2749), - [anon_sym_u_SQUOTE] = ACTIONS(2749), - [anon_sym_U_SQUOTE] = ACTIONS(2749), - [anon_sym_u8_SQUOTE] = ACTIONS(2749), - [anon_sym_SQUOTE] = ACTIONS(2749), - [anon_sym_L_DQUOTE] = ACTIONS(2749), - [anon_sym_u_DQUOTE] = ACTIONS(2749), - [anon_sym_U_DQUOTE] = ACTIONS(2749), - [anon_sym_u8_DQUOTE] = ACTIONS(2749), - [anon_sym_DQUOTE] = ACTIONS(2749), - [sym_true] = ACTIONS(2747), - [sym_false] = ACTIONS(2747), - [anon_sym_NULL] = ACTIONS(2747), - [anon_sym_nullptr] = ACTIONS(2747), + [589] = { + [sym_identifier] = ACTIONS(2635), + [aux_sym_preproc_include_token1] = ACTIONS(2635), + [aux_sym_preproc_def_token1] = ACTIONS(2635), + [aux_sym_preproc_if_token1] = ACTIONS(2635), + [aux_sym_preproc_if_token2] = ACTIONS(2635), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2635), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2635), + [sym_preproc_directive] = ACTIONS(2635), + [anon_sym_LPAREN2] = ACTIONS(2637), + [anon_sym_BANG] = ACTIONS(2637), + [anon_sym_TILDE] = ACTIONS(2637), + [anon_sym_DASH] = ACTIONS(2635), + [anon_sym_PLUS] = ACTIONS(2635), + [anon_sym_STAR] = ACTIONS(2637), + [anon_sym_AMP_AMP] = ACTIONS(2637), + [anon_sym_AMP] = ACTIONS(2635), + [anon_sym_SEMI] = ACTIONS(2637), + [anon_sym___extension__] = ACTIONS(2635), + [anon_sym_typedef] = ACTIONS(2635), + [anon_sym_virtual] = ACTIONS(2635), + [anon_sym_extern] = ACTIONS(2635), + [anon_sym___attribute__] = ACTIONS(2635), + [anon_sym___attribute] = ACTIONS(2635), + [anon_sym_using] = ACTIONS(2635), + [anon_sym_COLON_COLON] = ACTIONS(2637), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2637), + [anon_sym___declspec] = ACTIONS(2635), + [anon_sym___based] = ACTIONS(2635), + [anon_sym___cdecl] = ACTIONS(2635), + [anon_sym___clrcall] = ACTIONS(2635), + [anon_sym___stdcall] = ACTIONS(2635), + [anon_sym___fastcall] = ACTIONS(2635), + [anon_sym___thiscall] = ACTIONS(2635), + [anon_sym___vectorcall] = ACTIONS(2635), + [anon_sym_LBRACE] = ACTIONS(2637), + [anon_sym_signed] = ACTIONS(2635), + [anon_sym_unsigned] = ACTIONS(2635), + [anon_sym_long] = ACTIONS(2635), + [anon_sym_short] = ACTIONS(2635), + [anon_sym_LBRACK] = ACTIONS(2635), + [anon_sym_static] = ACTIONS(2635), + [anon_sym_register] = ACTIONS(2635), + [anon_sym_inline] = ACTIONS(2635), + [anon_sym___inline] = ACTIONS(2635), + [anon_sym___inline__] = ACTIONS(2635), + [anon_sym___forceinline] = ACTIONS(2635), + [anon_sym_thread_local] = ACTIONS(2635), + [anon_sym___thread] = ACTIONS(2635), + [anon_sym_const] = ACTIONS(2635), + [anon_sym_constexpr] = ACTIONS(2635), + [anon_sym_volatile] = ACTIONS(2635), + [anon_sym_restrict] = ACTIONS(2635), + [anon_sym___restrict__] = ACTIONS(2635), + [anon_sym__Atomic] = ACTIONS(2635), + [anon_sym__Noreturn] = ACTIONS(2635), + [anon_sym_noreturn] = ACTIONS(2635), + [anon_sym__Nonnull] = ACTIONS(2635), + [anon_sym_mutable] = ACTIONS(2635), + [anon_sym_constinit] = ACTIONS(2635), + [anon_sym_consteval] = ACTIONS(2635), + [anon_sym_alignas] = ACTIONS(2635), + [anon_sym__Alignas] = ACTIONS(2635), + [sym_primitive_type] = ACTIONS(2635), + [anon_sym_enum] = ACTIONS(2635), + [anon_sym_class] = ACTIONS(2635), + [anon_sym_struct] = ACTIONS(2635), + [anon_sym_union] = ACTIONS(2635), + [anon_sym_if] = ACTIONS(2635), + [anon_sym_else] = ACTIONS(2635), + [anon_sym_switch] = ACTIONS(2635), + [anon_sym_case] = ACTIONS(2635), + [anon_sym_default] = ACTIONS(2635), + [anon_sym_while] = ACTIONS(2635), + [anon_sym_do] = ACTIONS(2635), + [anon_sym_for] = ACTIONS(2635), + [anon_sym_return] = ACTIONS(2635), + [anon_sym_break] = ACTIONS(2635), + [anon_sym_continue] = ACTIONS(2635), + [anon_sym_goto] = ACTIONS(2635), + [anon_sym___try] = ACTIONS(2635), + [anon_sym___leave] = ACTIONS(2635), + [anon_sym_not] = ACTIONS(2635), + [anon_sym_compl] = ACTIONS(2635), + [anon_sym_DASH_DASH] = ACTIONS(2637), + [anon_sym_PLUS_PLUS] = ACTIONS(2637), + [anon_sym_sizeof] = ACTIONS(2635), + [anon_sym___alignof__] = ACTIONS(2635), + [anon_sym___alignof] = ACTIONS(2635), + [anon_sym__alignof] = ACTIONS(2635), + [anon_sym_alignof] = ACTIONS(2635), + [anon_sym__Alignof] = ACTIONS(2635), + [anon_sym_offsetof] = ACTIONS(2635), + [anon_sym__Generic] = ACTIONS(2635), + [anon_sym_asm] = ACTIONS(2635), + [anon_sym___asm__] = ACTIONS(2635), + [anon_sym___asm] = ACTIONS(2635), + [sym_number_literal] = ACTIONS(2637), + [anon_sym_L_SQUOTE] = ACTIONS(2637), + [anon_sym_u_SQUOTE] = ACTIONS(2637), + [anon_sym_U_SQUOTE] = ACTIONS(2637), + [anon_sym_u8_SQUOTE] = ACTIONS(2637), + [anon_sym_SQUOTE] = ACTIONS(2637), + [anon_sym_L_DQUOTE] = ACTIONS(2637), + [anon_sym_u_DQUOTE] = ACTIONS(2637), + [anon_sym_U_DQUOTE] = ACTIONS(2637), + [anon_sym_u8_DQUOTE] = ACTIONS(2637), + [anon_sym_DQUOTE] = ACTIONS(2637), + [sym_true] = ACTIONS(2635), + [sym_false] = ACTIONS(2635), + [anon_sym_NULL] = ACTIONS(2635), + [anon_sym_nullptr] = ACTIONS(2635), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2747), - [anon_sym_decltype] = ACTIONS(2747), - [anon_sym_explicit] = ACTIONS(2747), - [anon_sym_typename] = ACTIONS(2747), - [anon_sym_template] = ACTIONS(2747), - [anon_sym_operator] = ACTIONS(2747), - [anon_sym_try] = ACTIONS(2747), - [anon_sym_delete] = ACTIONS(2747), - [anon_sym_throw] = ACTIONS(2747), - [anon_sym_namespace] = ACTIONS(2747), - [anon_sym_static_assert] = ACTIONS(2747), - [anon_sym_concept] = ACTIONS(2747), - [anon_sym_co_return] = ACTIONS(2747), - [anon_sym_co_yield] = ACTIONS(2747), - [anon_sym_R_DQUOTE] = ACTIONS(2749), - [anon_sym_LR_DQUOTE] = ACTIONS(2749), - [anon_sym_uR_DQUOTE] = ACTIONS(2749), - [anon_sym_UR_DQUOTE] = ACTIONS(2749), - [anon_sym_u8R_DQUOTE] = ACTIONS(2749), - [anon_sym_co_await] = ACTIONS(2747), - [anon_sym_new] = ACTIONS(2747), - [anon_sym_requires] = ACTIONS(2747), - [sym_this] = ACTIONS(2747), + [sym_auto] = ACTIONS(2635), + [anon_sym_decltype] = ACTIONS(2635), + [anon_sym_explicit] = ACTIONS(2635), + [anon_sym_typename] = ACTIONS(2635), + [anon_sym_template] = ACTIONS(2635), + [anon_sym_operator] = ACTIONS(2635), + [anon_sym_try] = ACTIONS(2635), + [anon_sym_delete] = ACTIONS(2635), + [anon_sym_throw] = ACTIONS(2635), + [anon_sym_namespace] = ACTIONS(2635), + [anon_sym_static_assert] = ACTIONS(2635), + [anon_sym_concept] = ACTIONS(2635), + [anon_sym_co_return] = ACTIONS(2635), + [anon_sym_co_yield] = ACTIONS(2635), + [anon_sym_R_DQUOTE] = ACTIONS(2637), + [anon_sym_LR_DQUOTE] = ACTIONS(2637), + [anon_sym_uR_DQUOTE] = ACTIONS(2637), + [anon_sym_UR_DQUOTE] = ACTIONS(2637), + [anon_sym_u8R_DQUOTE] = ACTIONS(2637), + [anon_sym_co_await] = ACTIONS(2635), + [anon_sym_new] = ACTIONS(2635), + [anon_sym_requires] = ACTIONS(2635), + [sym_this] = ACTIONS(2635), }, - [573] = { - [sym_identifier] = ACTIONS(2627), - [aux_sym_preproc_include_token1] = ACTIONS(2627), - [aux_sym_preproc_def_token1] = ACTIONS(2627), - [aux_sym_preproc_if_token1] = ACTIONS(2627), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2627), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2627), - [sym_preproc_directive] = ACTIONS(2627), - [anon_sym_LPAREN2] = ACTIONS(2629), - [anon_sym_BANG] = ACTIONS(2629), - [anon_sym_TILDE] = ACTIONS(2629), - [anon_sym_DASH] = ACTIONS(2627), - [anon_sym_PLUS] = ACTIONS(2627), - [anon_sym_STAR] = ACTIONS(2629), - [anon_sym_AMP_AMP] = ACTIONS(2629), - [anon_sym_AMP] = ACTIONS(2627), - [anon_sym_SEMI] = ACTIONS(2629), - [anon_sym___extension__] = ACTIONS(2627), - [anon_sym_typedef] = ACTIONS(2627), - [anon_sym_virtual] = ACTIONS(2627), - [anon_sym_extern] = ACTIONS(2627), - [anon_sym___attribute__] = ACTIONS(2627), - [anon_sym___attribute] = ACTIONS(2627), - [anon_sym_using] = ACTIONS(2627), - [anon_sym_COLON_COLON] = ACTIONS(2629), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2629), - [anon_sym___declspec] = ACTIONS(2627), - [anon_sym___based] = ACTIONS(2627), - [anon_sym___cdecl] = ACTIONS(2627), - [anon_sym___clrcall] = ACTIONS(2627), - [anon_sym___stdcall] = ACTIONS(2627), - [anon_sym___fastcall] = ACTIONS(2627), - [anon_sym___thiscall] = ACTIONS(2627), - [anon_sym___vectorcall] = ACTIONS(2627), - [anon_sym_LBRACE] = ACTIONS(2629), - [anon_sym_RBRACE] = ACTIONS(2629), - [anon_sym_signed] = ACTIONS(2627), - [anon_sym_unsigned] = ACTIONS(2627), - [anon_sym_long] = ACTIONS(2627), - [anon_sym_short] = ACTIONS(2627), - [anon_sym_LBRACK] = ACTIONS(2627), - [anon_sym_static] = ACTIONS(2627), - [anon_sym_register] = ACTIONS(2627), - [anon_sym_inline] = ACTIONS(2627), - [anon_sym___inline] = ACTIONS(2627), - [anon_sym___inline__] = ACTIONS(2627), - [anon_sym___forceinline] = ACTIONS(2627), - [anon_sym_thread_local] = ACTIONS(2627), - [anon_sym___thread] = ACTIONS(2627), - [anon_sym_const] = ACTIONS(2627), - [anon_sym_constexpr] = ACTIONS(2627), - [anon_sym_volatile] = ACTIONS(2627), - [anon_sym_restrict] = ACTIONS(2627), - [anon_sym___restrict__] = ACTIONS(2627), - [anon_sym__Atomic] = ACTIONS(2627), - [anon_sym__Noreturn] = ACTIONS(2627), - [anon_sym_noreturn] = ACTIONS(2627), - [anon_sym__Nonnull] = ACTIONS(2627), - [anon_sym_mutable] = ACTIONS(2627), - [anon_sym_constinit] = ACTIONS(2627), - [anon_sym_consteval] = ACTIONS(2627), - [anon_sym_alignas] = ACTIONS(2627), - [anon_sym__Alignas] = ACTIONS(2627), - [sym_primitive_type] = ACTIONS(2627), - [anon_sym_enum] = ACTIONS(2627), - [anon_sym_class] = ACTIONS(2627), - [anon_sym_struct] = ACTIONS(2627), - [anon_sym_union] = ACTIONS(2627), - [anon_sym_if] = ACTIONS(2627), - [anon_sym_else] = ACTIONS(2627), - [anon_sym_switch] = ACTIONS(2627), - [anon_sym_case] = ACTIONS(2627), - [anon_sym_default] = ACTIONS(2627), - [anon_sym_while] = ACTIONS(2627), - [anon_sym_do] = ACTIONS(2627), - [anon_sym_for] = ACTIONS(2627), - [anon_sym_return] = ACTIONS(2627), - [anon_sym_break] = ACTIONS(2627), - [anon_sym_continue] = ACTIONS(2627), - [anon_sym_goto] = ACTIONS(2627), - [anon_sym___try] = ACTIONS(2627), - [anon_sym___leave] = ACTIONS(2627), - [anon_sym_not] = ACTIONS(2627), - [anon_sym_compl] = ACTIONS(2627), - [anon_sym_DASH_DASH] = ACTIONS(2629), - [anon_sym_PLUS_PLUS] = ACTIONS(2629), - [anon_sym_sizeof] = ACTIONS(2627), - [anon_sym___alignof__] = ACTIONS(2627), - [anon_sym___alignof] = ACTIONS(2627), - [anon_sym__alignof] = ACTIONS(2627), - [anon_sym_alignof] = ACTIONS(2627), - [anon_sym__Alignof] = ACTIONS(2627), - [anon_sym_offsetof] = ACTIONS(2627), - [anon_sym__Generic] = ACTIONS(2627), - [anon_sym_asm] = ACTIONS(2627), - [anon_sym___asm__] = ACTIONS(2627), - [anon_sym___asm] = ACTIONS(2627), - [sym_number_literal] = ACTIONS(2629), - [anon_sym_L_SQUOTE] = ACTIONS(2629), - [anon_sym_u_SQUOTE] = ACTIONS(2629), - [anon_sym_U_SQUOTE] = ACTIONS(2629), - [anon_sym_u8_SQUOTE] = ACTIONS(2629), - [anon_sym_SQUOTE] = ACTIONS(2629), - [anon_sym_L_DQUOTE] = ACTIONS(2629), - [anon_sym_u_DQUOTE] = ACTIONS(2629), - [anon_sym_U_DQUOTE] = ACTIONS(2629), - [anon_sym_u8_DQUOTE] = ACTIONS(2629), - [anon_sym_DQUOTE] = ACTIONS(2629), - [sym_true] = ACTIONS(2627), - [sym_false] = ACTIONS(2627), - [anon_sym_NULL] = ACTIONS(2627), - [anon_sym_nullptr] = ACTIONS(2627), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2627), - [anon_sym_decltype] = ACTIONS(2627), - [anon_sym_explicit] = ACTIONS(2627), - [anon_sym_typename] = ACTIONS(2627), - [anon_sym_template] = ACTIONS(2627), - [anon_sym_operator] = ACTIONS(2627), - [anon_sym_try] = ACTIONS(2627), - [anon_sym_delete] = ACTIONS(2627), - [anon_sym_throw] = ACTIONS(2627), - [anon_sym_namespace] = ACTIONS(2627), - [anon_sym_static_assert] = ACTIONS(2627), - [anon_sym_concept] = ACTIONS(2627), - [anon_sym_co_return] = ACTIONS(2627), - [anon_sym_co_yield] = ACTIONS(2627), - [anon_sym_R_DQUOTE] = ACTIONS(2629), - [anon_sym_LR_DQUOTE] = ACTIONS(2629), - [anon_sym_uR_DQUOTE] = ACTIONS(2629), - [anon_sym_UR_DQUOTE] = ACTIONS(2629), - [anon_sym_u8R_DQUOTE] = ACTIONS(2629), - [anon_sym_co_await] = ACTIONS(2627), - [anon_sym_new] = ACTIONS(2627), - [anon_sym_requires] = ACTIONS(2627), - [sym_this] = ACTIONS(2627), - }, - [574] = { - [sym_identifier] = ACTIONS(2751), - [aux_sym_preproc_include_token1] = ACTIONS(2751), - [aux_sym_preproc_def_token1] = ACTIONS(2751), - [aux_sym_preproc_if_token1] = ACTIONS(2751), - [aux_sym_preproc_if_token2] = ACTIONS(2751), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2751), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2751), - [sym_preproc_directive] = ACTIONS(2751), - [anon_sym_LPAREN2] = ACTIONS(2753), - [anon_sym_BANG] = ACTIONS(2753), - [anon_sym_TILDE] = ACTIONS(2753), - [anon_sym_DASH] = ACTIONS(2751), - [anon_sym_PLUS] = ACTIONS(2751), - [anon_sym_STAR] = ACTIONS(2753), - [anon_sym_AMP_AMP] = ACTIONS(2753), - [anon_sym_AMP] = ACTIONS(2751), - [anon_sym_SEMI] = ACTIONS(2753), - [anon_sym___extension__] = ACTIONS(2751), - [anon_sym_typedef] = ACTIONS(2751), - [anon_sym_virtual] = ACTIONS(2751), - [anon_sym_extern] = ACTIONS(2751), - [anon_sym___attribute__] = ACTIONS(2751), - [anon_sym___attribute] = ACTIONS(2751), - [anon_sym_using] = ACTIONS(2751), - [anon_sym_COLON_COLON] = ACTIONS(2753), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2753), - [anon_sym___declspec] = ACTIONS(2751), - [anon_sym___based] = ACTIONS(2751), - [anon_sym___cdecl] = ACTIONS(2751), - [anon_sym___clrcall] = ACTIONS(2751), - [anon_sym___stdcall] = ACTIONS(2751), - [anon_sym___fastcall] = ACTIONS(2751), - [anon_sym___thiscall] = ACTIONS(2751), - [anon_sym___vectorcall] = ACTIONS(2751), - [anon_sym_LBRACE] = ACTIONS(2753), - [anon_sym_signed] = ACTIONS(2751), - [anon_sym_unsigned] = ACTIONS(2751), - [anon_sym_long] = ACTIONS(2751), - [anon_sym_short] = ACTIONS(2751), - [anon_sym_LBRACK] = ACTIONS(2751), - [anon_sym_static] = ACTIONS(2751), - [anon_sym_register] = ACTIONS(2751), - [anon_sym_inline] = ACTIONS(2751), - [anon_sym___inline] = ACTIONS(2751), - [anon_sym___inline__] = ACTIONS(2751), - [anon_sym___forceinline] = ACTIONS(2751), - [anon_sym_thread_local] = ACTIONS(2751), - [anon_sym___thread] = ACTIONS(2751), - [anon_sym_const] = ACTIONS(2751), - [anon_sym_constexpr] = ACTIONS(2751), - [anon_sym_volatile] = ACTIONS(2751), - [anon_sym_restrict] = ACTIONS(2751), - [anon_sym___restrict__] = ACTIONS(2751), - [anon_sym__Atomic] = ACTIONS(2751), - [anon_sym__Noreturn] = ACTIONS(2751), - [anon_sym_noreturn] = ACTIONS(2751), - [anon_sym__Nonnull] = ACTIONS(2751), - [anon_sym_mutable] = ACTIONS(2751), - [anon_sym_constinit] = ACTIONS(2751), - [anon_sym_consteval] = ACTIONS(2751), - [anon_sym_alignas] = ACTIONS(2751), - [anon_sym__Alignas] = ACTIONS(2751), - [sym_primitive_type] = ACTIONS(2751), - [anon_sym_enum] = ACTIONS(2751), - [anon_sym_class] = ACTIONS(2751), - [anon_sym_struct] = ACTIONS(2751), - [anon_sym_union] = ACTIONS(2751), - [anon_sym_if] = ACTIONS(2751), - [anon_sym_else] = ACTIONS(2751), - [anon_sym_switch] = ACTIONS(2751), - [anon_sym_case] = ACTIONS(2751), - [anon_sym_default] = ACTIONS(2751), - [anon_sym_while] = ACTIONS(2751), - [anon_sym_do] = ACTIONS(2751), - [anon_sym_for] = ACTIONS(2751), - [anon_sym_return] = ACTIONS(2751), - [anon_sym_break] = ACTIONS(2751), - [anon_sym_continue] = ACTIONS(2751), - [anon_sym_goto] = ACTIONS(2751), - [anon_sym___try] = ACTIONS(2751), - [anon_sym___leave] = ACTIONS(2751), - [anon_sym_not] = ACTIONS(2751), - [anon_sym_compl] = ACTIONS(2751), - [anon_sym_DASH_DASH] = ACTIONS(2753), - [anon_sym_PLUS_PLUS] = ACTIONS(2753), - [anon_sym_sizeof] = ACTIONS(2751), - [anon_sym___alignof__] = ACTIONS(2751), - [anon_sym___alignof] = ACTIONS(2751), - [anon_sym__alignof] = ACTIONS(2751), - [anon_sym_alignof] = ACTIONS(2751), - [anon_sym__Alignof] = ACTIONS(2751), - [anon_sym_offsetof] = ACTIONS(2751), - [anon_sym__Generic] = ACTIONS(2751), - [anon_sym_asm] = ACTIONS(2751), - [anon_sym___asm__] = ACTIONS(2751), - [anon_sym___asm] = ACTIONS(2751), - [sym_number_literal] = ACTIONS(2753), - [anon_sym_L_SQUOTE] = ACTIONS(2753), - [anon_sym_u_SQUOTE] = ACTIONS(2753), - [anon_sym_U_SQUOTE] = ACTIONS(2753), - [anon_sym_u8_SQUOTE] = ACTIONS(2753), - [anon_sym_SQUOTE] = ACTIONS(2753), - [anon_sym_L_DQUOTE] = ACTIONS(2753), - [anon_sym_u_DQUOTE] = ACTIONS(2753), - [anon_sym_U_DQUOTE] = ACTIONS(2753), - [anon_sym_u8_DQUOTE] = ACTIONS(2753), - [anon_sym_DQUOTE] = ACTIONS(2753), - [sym_true] = ACTIONS(2751), - [sym_false] = ACTIONS(2751), - [anon_sym_NULL] = ACTIONS(2751), - [anon_sym_nullptr] = ACTIONS(2751), + [590] = { + [sym_identifier] = ACTIONS(2763), + [aux_sym_preproc_include_token1] = ACTIONS(2763), + [aux_sym_preproc_def_token1] = ACTIONS(2763), + [aux_sym_preproc_if_token1] = ACTIONS(2763), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2763), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2763), + [sym_preproc_directive] = ACTIONS(2763), + [anon_sym_LPAREN2] = ACTIONS(2765), + [anon_sym_BANG] = ACTIONS(2765), + [anon_sym_TILDE] = ACTIONS(2765), + [anon_sym_DASH] = ACTIONS(2763), + [anon_sym_PLUS] = ACTIONS(2763), + [anon_sym_STAR] = ACTIONS(2765), + [anon_sym_AMP_AMP] = ACTIONS(2765), + [anon_sym_AMP] = ACTIONS(2763), + [anon_sym_SEMI] = ACTIONS(2765), + [anon_sym___extension__] = ACTIONS(2763), + [anon_sym_typedef] = ACTIONS(2763), + [anon_sym_virtual] = ACTIONS(2763), + [anon_sym_extern] = ACTIONS(2763), + [anon_sym___attribute__] = ACTIONS(2763), + [anon_sym___attribute] = ACTIONS(2763), + [anon_sym_using] = ACTIONS(2763), + [anon_sym_COLON_COLON] = ACTIONS(2765), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2765), + [anon_sym___declspec] = ACTIONS(2763), + [anon_sym___based] = ACTIONS(2763), + [anon_sym___cdecl] = ACTIONS(2763), + [anon_sym___clrcall] = ACTIONS(2763), + [anon_sym___stdcall] = ACTIONS(2763), + [anon_sym___fastcall] = ACTIONS(2763), + [anon_sym___thiscall] = ACTIONS(2763), + [anon_sym___vectorcall] = ACTIONS(2763), + [anon_sym_LBRACE] = ACTIONS(2765), + [anon_sym_RBRACE] = ACTIONS(2765), + [anon_sym_signed] = ACTIONS(2763), + [anon_sym_unsigned] = ACTIONS(2763), + [anon_sym_long] = ACTIONS(2763), + [anon_sym_short] = ACTIONS(2763), + [anon_sym_LBRACK] = ACTIONS(2763), + [anon_sym_static] = ACTIONS(2763), + [anon_sym_register] = ACTIONS(2763), + [anon_sym_inline] = ACTIONS(2763), + [anon_sym___inline] = ACTIONS(2763), + [anon_sym___inline__] = ACTIONS(2763), + [anon_sym___forceinline] = ACTIONS(2763), + [anon_sym_thread_local] = ACTIONS(2763), + [anon_sym___thread] = ACTIONS(2763), + [anon_sym_const] = ACTIONS(2763), + [anon_sym_constexpr] = ACTIONS(2763), + [anon_sym_volatile] = ACTIONS(2763), + [anon_sym_restrict] = ACTIONS(2763), + [anon_sym___restrict__] = ACTIONS(2763), + [anon_sym__Atomic] = ACTIONS(2763), + [anon_sym__Noreturn] = ACTIONS(2763), + [anon_sym_noreturn] = ACTIONS(2763), + [anon_sym__Nonnull] = ACTIONS(2763), + [anon_sym_mutable] = ACTIONS(2763), + [anon_sym_constinit] = ACTIONS(2763), + [anon_sym_consteval] = ACTIONS(2763), + [anon_sym_alignas] = ACTIONS(2763), + [anon_sym__Alignas] = ACTIONS(2763), + [sym_primitive_type] = ACTIONS(2763), + [anon_sym_enum] = ACTIONS(2763), + [anon_sym_class] = ACTIONS(2763), + [anon_sym_struct] = ACTIONS(2763), + [anon_sym_union] = ACTIONS(2763), + [anon_sym_if] = ACTIONS(2763), + [anon_sym_else] = ACTIONS(2763), + [anon_sym_switch] = ACTIONS(2763), + [anon_sym_case] = ACTIONS(2763), + [anon_sym_default] = ACTIONS(2763), + [anon_sym_while] = ACTIONS(2763), + [anon_sym_do] = ACTIONS(2763), + [anon_sym_for] = ACTIONS(2763), + [anon_sym_return] = ACTIONS(2763), + [anon_sym_break] = ACTIONS(2763), + [anon_sym_continue] = ACTIONS(2763), + [anon_sym_goto] = ACTIONS(2763), + [anon_sym___try] = ACTIONS(2763), + [anon_sym___leave] = ACTIONS(2763), + [anon_sym_not] = ACTIONS(2763), + [anon_sym_compl] = ACTIONS(2763), + [anon_sym_DASH_DASH] = ACTIONS(2765), + [anon_sym_PLUS_PLUS] = ACTIONS(2765), + [anon_sym_sizeof] = ACTIONS(2763), + [anon_sym___alignof__] = ACTIONS(2763), + [anon_sym___alignof] = ACTIONS(2763), + [anon_sym__alignof] = ACTIONS(2763), + [anon_sym_alignof] = ACTIONS(2763), + [anon_sym__Alignof] = ACTIONS(2763), + [anon_sym_offsetof] = ACTIONS(2763), + [anon_sym__Generic] = ACTIONS(2763), + [anon_sym_asm] = ACTIONS(2763), + [anon_sym___asm__] = ACTIONS(2763), + [anon_sym___asm] = ACTIONS(2763), + [sym_number_literal] = ACTIONS(2765), + [anon_sym_L_SQUOTE] = ACTIONS(2765), + [anon_sym_u_SQUOTE] = ACTIONS(2765), + [anon_sym_U_SQUOTE] = ACTIONS(2765), + [anon_sym_u8_SQUOTE] = ACTIONS(2765), + [anon_sym_SQUOTE] = ACTIONS(2765), + [anon_sym_L_DQUOTE] = ACTIONS(2765), + [anon_sym_u_DQUOTE] = ACTIONS(2765), + [anon_sym_U_DQUOTE] = ACTIONS(2765), + [anon_sym_u8_DQUOTE] = ACTIONS(2765), + [anon_sym_DQUOTE] = ACTIONS(2765), + [sym_true] = ACTIONS(2763), + [sym_false] = ACTIONS(2763), + [anon_sym_NULL] = ACTIONS(2763), + [anon_sym_nullptr] = ACTIONS(2763), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2751), - [anon_sym_decltype] = ACTIONS(2751), - [anon_sym_explicit] = ACTIONS(2751), - [anon_sym_typename] = ACTIONS(2751), - [anon_sym_template] = ACTIONS(2751), - [anon_sym_operator] = ACTIONS(2751), - [anon_sym_try] = ACTIONS(2751), - [anon_sym_delete] = ACTIONS(2751), - [anon_sym_throw] = ACTIONS(2751), - [anon_sym_namespace] = ACTIONS(2751), - [anon_sym_static_assert] = ACTIONS(2751), - [anon_sym_concept] = ACTIONS(2751), - [anon_sym_co_return] = ACTIONS(2751), - [anon_sym_co_yield] = ACTIONS(2751), - [anon_sym_R_DQUOTE] = ACTIONS(2753), - [anon_sym_LR_DQUOTE] = ACTIONS(2753), - [anon_sym_uR_DQUOTE] = ACTIONS(2753), - [anon_sym_UR_DQUOTE] = ACTIONS(2753), - [anon_sym_u8R_DQUOTE] = ACTIONS(2753), - [anon_sym_co_await] = ACTIONS(2751), - [anon_sym_new] = ACTIONS(2751), - [anon_sym_requires] = ACTIONS(2751), - [sym_this] = ACTIONS(2751), + [sym_auto] = ACTIONS(2763), + [anon_sym_decltype] = ACTIONS(2763), + [anon_sym_explicit] = ACTIONS(2763), + [anon_sym_typename] = ACTIONS(2763), + [anon_sym_template] = ACTIONS(2763), + [anon_sym_operator] = ACTIONS(2763), + [anon_sym_try] = ACTIONS(2763), + [anon_sym_delete] = ACTIONS(2763), + [anon_sym_throw] = ACTIONS(2763), + [anon_sym_namespace] = ACTIONS(2763), + [anon_sym_static_assert] = ACTIONS(2763), + [anon_sym_concept] = ACTIONS(2763), + [anon_sym_co_return] = ACTIONS(2763), + [anon_sym_co_yield] = ACTIONS(2763), + [anon_sym_R_DQUOTE] = ACTIONS(2765), + [anon_sym_LR_DQUOTE] = ACTIONS(2765), + [anon_sym_uR_DQUOTE] = ACTIONS(2765), + [anon_sym_UR_DQUOTE] = ACTIONS(2765), + [anon_sym_u8R_DQUOTE] = ACTIONS(2765), + [anon_sym_co_await] = ACTIONS(2763), + [anon_sym_new] = ACTIONS(2763), + [anon_sym_requires] = ACTIONS(2763), + [sym_this] = ACTIONS(2763), }, - [575] = { - [sym_identifier] = ACTIONS(2691), - [aux_sym_preproc_include_token1] = ACTIONS(2691), - [aux_sym_preproc_def_token1] = ACTIONS(2691), - [aux_sym_preproc_if_token1] = ACTIONS(2691), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2691), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2691), - [sym_preproc_directive] = ACTIONS(2691), - [anon_sym_LPAREN2] = ACTIONS(2693), - [anon_sym_BANG] = ACTIONS(2693), - [anon_sym_TILDE] = ACTIONS(2693), - [anon_sym_DASH] = ACTIONS(2691), - [anon_sym_PLUS] = ACTIONS(2691), - [anon_sym_STAR] = ACTIONS(2693), - [anon_sym_AMP_AMP] = ACTIONS(2693), - [anon_sym_AMP] = ACTIONS(2691), - [anon_sym_SEMI] = ACTIONS(2693), - [anon_sym___extension__] = ACTIONS(2691), - [anon_sym_typedef] = ACTIONS(2691), - [anon_sym_virtual] = ACTIONS(2691), - [anon_sym_extern] = ACTIONS(2691), - [anon_sym___attribute__] = ACTIONS(2691), - [anon_sym___attribute] = ACTIONS(2691), - [anon_sym_using] = ACTIONS(2691), - [anon_sym_COLON_COLON] = ACTIONS(2693), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2693), - [anon_sym___declspec] = ACTIONS(2691), - [anon_sym___based] = ACTIONS(2691), - [anon_sym___cdecl] = ACTIONS(2691), - [anon_sym___clrcall] = ACTIONS(2691), - [anon_sym___stdcall] = ACTIONS(2691), - [anon_sym___fastcall] = ACTIONS(2691), - [anon_sym___thiscall] = ACTIONS(2691), - [anon_sym___vectorcall] = ACTIONS(2691), - [anon_sym_LBRACE] = ACTIONS(2693), - [anon_sym_RBRACE] = ACTIONS(2693), - [anon_sym_signed] = ACTIONS(2691), - [anon_sym_unsigned] = ACTIONS(2691), - [anon_sym_long] = ACTIONS(2691), - [anon_sym_short] = ACTIONS(2691), - [anon_sym_LBRACK] = ACTIONS(2691), - [anon_sym_static] = ACTIONS(2691), - [anon_sym_register] = ACTIONS(2691), - [anon_sym_inline] = ACTIONS(2691), - [anon_sym___inline] = ACTIONS(2691), - [anon_sym___inline__] = ACTIONS(2691), - [anon_sym___forceinline] = ACTIONS(2691), - [anon_sym_thread_local] = ACTIONS(2691), - [anon_sym___thread] = ACTIONS(2691), - [anon_sym_const] = ACTIONS(2691), - [anon_sym_constexpr] = ACTIONS(2691), - [anon_sym_volatile] = ACTIONS(2691), - [anon_sym_restrict] = ACTIONS(2691), - [anon_sym___restrict__] = ACTIONS(2691), - [anon_sym__Atomic] = ACTIONS(2691), - [anon_sym__Noreturn] = ACTIONS(2691), - [anon_sym_noreturn] = ACTIONS(2691), - [anon_sym__Nonnull] = ACTIONS(2691), - [anon_sym_mutable] = ACTIONS(2691), - [anon_sym_constinit] = ACTIONS(2691), - [anon_sym_consteval] = ACTIONS(2691), - [anon_sym_alignas] = ACTIONS(2691), - [anon_sym__Alignas] = ACTIONS(2691), - [sym_primitive_type] = ACTIONS(2691), - [anon_sym_enum] = ACTIONS(2691), - [anon_sym_class] = ACTIONS(2691), - [anon_sym_struct] = ACTIONS(2691), - [anon_sym_union] = ACTIONS(2691), - [anon_sym_if] = ACTIONS(2691), - [anon_sym_else] = ACTIONS(2691), - [anon_sym_switch] = ACTIONS(2691), - [anon_sym_case] = ACTIONS(2691), - [anon_sym_default] = ACTIONS(2691), - [anon_sym_while] = ACTIONS(2691), - [anon_sym_do] = ACTIONS(2691), - [anon_sym_for] = ACTIONS(2691), - [anon_sym_return] = ACTIONS(2691), - [anon_sym_break] = ACTIONS(2691), - [anon_sym_continue] = ACTIONS(2691), - [anon_sym_goto] = ACTIONS(2691), - [anon_sym___try] = ACTIONS(2691), - [anon_sym___leave] = ACTIONS(2691), - [anon_sym_not] = ACTIONS(2691), - [anon_sym_compl] = ACTIONS(2691), - [anon_sym_DASH_DASH] = ACTIONS(2693), - [anon_sym_PLUS_PLUS] = ACTIONS(2693), - [anon_sym_sizeof] = ACTIONS(2691), - [anon_sym___alignof__] = ACTIONS(2691), - [anon_sym___alignof] = ACTIONS(2691), - [anon_sym__alignof] = ACTIONS(2691), - [anon_sym_alignof] = ACTIONS(2691), - [anon_sym__Alignof] = ACTIONS(2691), - [anon_sym_offsetof] = ACTIONS(2691), - [anon_sym__Generic] = ACTIONS(2691), - [anon_sym_asm] = ACTIONS(2691), - [anon_sym___asm__] = ACTIONS(2691), - [anon_sym___asm] = ACTIONS(2691), - [sym_number_literal] = ACTIONS(2693), - [anon_sym_L_SQUOTE] = ACTIONS(2693), - [anon_sym_u_SQUOTE] = ACTIONS(2693), - [anon_sym_U_SQUOTE] = ACTIONS(2693), - [anon_sym_u8_SQUOTE] = ACTIONS(2693), - [anon_sym_SQUOTE] = ACTIONS(2693), - [anon_sym_L_DQUOTE] = ACTIONS(2693), - [anon_sym_u_DQUOTE] = ACTIONS(2693), - [anon_sym_U_DQUOTE] = ACTIONS(2693), - [anon_sym_u8_DQUOTE] = ACTIONS(2693), - [anon_sym_DQUOTE] = ACTIONS(2693), - [sym_true] = ACTIONS(2691), - [sym_false] = ACTIONS(2691), - [anon_sym_NULL] = ACTIONS(2691), - [anon_sym_nullptr] = ACTIONS(2691), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2691), - [anon_sym_decltype] = ACTIONS(2691), - [anon_sym_explicit] = ACTIONS(2691), - [anon_sym_typename] = ACTIONS(2691), - [anon_sym_template] = ACTIONS(2691), - [anon_sym_operator] = ACTIONS(2691), - [anon_sym_try] = ACTIONS(2691), - [anon_sym_delete] = ACTIONS(2691), - [anon_sym_throw] = ACTIONS(2691), - [anon_sym_namespace] = ACTIONS(2691), - [anon_sym_static_assert] = ACTIONS(2691), - [anon_sym_concept] = ACTIONS(2691), - [anon_sym_co_return] = ACTIONS(2691), - [anon_sym_co_yield] = ACTIONS(2691), - [anon_sym_R_DQUOTE] = ACTIONS(2693), - [anon_sym_LR_DQUOTE] = ACTIONS(2693), - [anon_sym_uR_DQUOTE] = ACTIONS(2693), - [anon_sym_UR_DQUOTE] = ACTIONS(2693), - [anon_sym_u8R_DQUOTE] = ACTIONS(2693), - [anon_sym_co_await] = ACTIONS(2691), - [anon_sym_new] = ACTIONS(2691), - [anon_sym_requires] = ACTIONS(2691), - [sym_this] = ACTIONS(2691), + [591] = { + [sym_identifier] = ACTIONS(2663), + [aux_sym_preproc_include_token1] = ACTIONS(2663), + [aux_sym_preproc_def_token1] = ACTIONS(2663), + [aux_sym_preproc_if_token1] = ACTIONS(2663), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2663), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2663), + [sym_preproc_directive] = ACTIONS(2663), + [anon_sym_LPAREN2] = ACTIONS(2665), + [anon_sym_BANG] = ACTIONS(2665), + [anon_sym_TILDE] = ACTIONS(2665), + [anon_sym_DASH] = ACTIONS(2663), + [anon_sym_PLUS] = ACTIONS(2663), + [anon_sym_STAR] = ACTIONS(2665), + [anon_sym_AMP_AMP] = ACTIONS(2665), + [anon_sym_AMP] = ACTIONS(2663), + [anon_sym_SEMI] = ACTIONS(2665), + [anon_sym___extension__] = ACTIONS(2663), + [anon_sym_typedef] = ACTIONS(2663), + [anon_sym_virtual] = ACTIONS(2663), + [anon_sym_extern] = ACTIONS(2663), + [anon_sym___attribute__] = ACTIONS(2663), + [anon_sym___attribute] = ACTIONS(2663), + [anon_sym_using] = ACTIONS(2663), + [anon_sym_COLON_COLON] = ACTIONS(2665), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2665), + [anon_sym___declspec] = ACTIONS(2663), + [anon_sym___based] = ACTIONS(2663), + [anon_sym___cdecl] = ACTIONS(2663), + [anon_sym___clrcall] = ACTIONS(2663), + [anon_sym___stdcall] = ACTIONS(2663), + [anon_sym___fastcall] = ACTIONS(2663), + [anon_sym___thiscall] = ACTIONS(2663), + [anon_sym___vectorcall] = ACTIONS(2663), + [anon_sym_LBRACE] = ACTIONS(2665), + [anon_sym_RBRACE] = ACTIONS(2665), + [anon_sym_signed] = ACTIONS(2663), + [anon_sym_unsigned] = ACTIONS(2663), + [anon_sym_long] = ACTIONS(2663), + [anon_sym_short] = ACTIONS(2663), + [anon_sym_LBRACK] = ACTIONS(2663), + [anon_sym_static] = ACTIONS(2663), + [anon_sym_register] = ACTIONS(2663), + [anon_sym_inline] = ACTIONS(2663), + [anon_sym___inline] = ACTIONS(2663), + [anon_sym___inline__] = ACTIONS(2663), + [anon_sym___forceinline] = ACTIONS(2663), + [anon_sym_thread_local] = ACTIONS(2663), + [anon_sym___thread] = ACTIONS(2663), + [anon_sym_const] = ACTIONS(2663), + [anon_sym_constexpr] = ACTIONS(2663), + [anon_sym_volatile] = ACTIONS(2663), + [anon_sym_restrict] = ACTIONS(2663), + [anon_sym___restrict__] = ACTIONS(2663), + [anon_sym__Atomic] = ACTIONS(2663), + [anon_sym__Noreturn] = ACTIONS(2663), + [anon_sym_noreturn] = ACTIONS(2663), + [anon_sym__Nonnull] = ACTIONS(2663), + [anon_sym_mutable] = ACTIONS(2663), + [anon_sym_constinit] = ACTIONS(2663), + [anon_sym_consteval] = ACTIONS(2663), + [anon_sym_alignas] = ACTIONS(2663), + [anon_sym__Alignas] = ACTIONS(2663), + [sym_primitive_type] = ACTIONS(2663), + [anon_sym_enum] = ACTIONS(2663), + [anon_sym_class] = ACTIONS(2663), + [anon_sym_struct] = ACTIONS(2663), + [anon_sym_union] = ACTIONS(2663), + [anon_sym_if] = ACTIONS(2663), + [anon_sym_else] = ACTIONS(2663), + [anon_sym_switch] = ACTIONS(2663), + [anon_sym_case] = ACTIONS(2663), + [anon_sym_default] = ACTIONS(2663), + [anon_sym_while] = ACTIONS(2663), + [anon_sym_do] = ACTIONS(2663), + [anon_sym_for] = ACTIONS(2663), + [anon_sym_return] = ACTIONS(2663), + [anon_sym_break] = ACTIONS(2663), + [anon_sym_continue] = ACTIONS(2663), + [anon_sym_goto] = ACTIONS(2663), + [anon_sym___try] = ACTIONS(2663), + [anon_sym___leave] = ACTIONS(2663), + [anon_sym_not] = ACTIONS(2663), + [anon_sym_compl] = ACTIONS(2663), + [anon_sym_DASH_DASH] = ACTIONS(2665), + [anon_sym_PLUS_PLUS] = ACTIONS(2665), + [anon_sym_sizeof] = ACTIONS(2663), + [anon_sym___alignof__] = ACTIONS(2663), + [anon_sym___alignof] = ACTIONS(2663), + [anon_sym__alignof] = ACTIONS(2663), + [anon_sym_alignof] = ACTIONS(2663), + [anon_sym__Alignof] = ACTIONS(2663), + [anon_sym_offsetof] = ACTIONS(2663), + [anon_sym__Generic] = ACTIONS(2663), + [anon_sym_asm] = ACTIONS(2663), + [anon_sym___asm__] = ACTIONS(2663), + [anon_sym___asm] = ACTIONS(2663), + [sym_number_literal] = ACTIONS(2665), + [anon_sym_L_SQUOTE] = ACTIONS(2665), + [anon_sym_u_SQUOTE] = ACTIONS(2665), + [anon_sym_U_SQUOTE] = ACTIONS(2665), + [anon_sym_u8_SQUOTE] = ACTIONS(2665), + [anon_sym_SQUOTE] = ACTIONS(2665), + [anon_sym_L_DQUOTE] = ACTIONS(2665), + [anon_sym_u_DQUOTE] = ACTIONS(2665), + [anon_sym_U_DQUOTE] = ACTIONS(2665), + [anon_sym_u8_DQUOTE] = ACTIONS(2665), + [anon_sym_DQUOTE] = ACTIONS(2665), + [sym_true] = ACTIONS(2663), + [sym_false] = ACTIONS(2663), + [anon_sym_NULL] = ACTIONS(2663), + [anon_sym_nullptr] = ACTIONS(2663), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2663), + [anon_sym_decltype] = ACTIONS(2663), + [anon_sym_explicit] = ACTIONS(2663), + [anon_sym_typename] = ACTIONS(2663), + [anon_sym_template] = ACTIONS(2663), + [anon_sym_operator] = ACTIONS(2663), + [anon_sym_try] = ACTIONS(2663), + [anon_sym_delete] = ACTIONS(2663), + [anon_sym_throw] = ACTIONS(2663), + [anon_sym_namespace] = ACTIONS(2663), + [anon_sym_static_assert] = ACTIONS(2663), + [anon_sym_concept] = ACTIONS(2663), + [anon_sym_co_return] = ACTIONS(2663), + [anon_sym_co_yield] = ACTIONS(2663), + [anon_sym_R_DQUOTE] = ACTIONS(2665), + [anon_sym_LR_DQUOTE] = ACTIONS(2665), + [anon_sym_uR_DQUOTE] = ACTIONS(2665), + [anon_sym_UR_DQUOTE] = ACTIONS(2665), + [anon_sym_u8R_DQUOTE] = ACTIONS(2665), + [anon_sym_co_await] = ACTIONS(2663), + [anon_sym_new] = ACTIONS(2663), + [anon_sym_requires] = ACTIONS(2663), + [sym_this] = ACTIONS(2663), }, - [576] = { - [sym_identifier] = ACTIONS(2695), - [aux_sym_preproc_include_token1] = ACTIONS(2695), - [aux_sym_preproc_def_token1] = ACTIONS(2695), - [aux_sym_preproc_if_token1] = ACTIONS(2695), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2695), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2695), - [sym_preproc_directive] = ACTIONS(2695), - [anon_sym_LPAREN2] = ACTIONS(2697), - [anon_sym_BANG] = ACTIONS(2697), - [anon_sym_TILDE] = ACTIONS(2697), - [anon_sym_DASH] = ACTIONS(2695), - [anon_sym_PLUS] = ACTIONS(2695), - [anon_sym_STAR] = ACTIONS(2697), - [anon_sym_AMP_AMP] = ACTIONS(2697), - [anon_sym_AMP] = ACTIONS(2695), - [anon_sym_SEMI] = ACTIONS(2697), - [anon_sym___extension__] = ACTIONS(2695), - [anon_sym_typedef] = ACTIONS(2695), - [anon_sym_virtual] = ACTIONS(2695), - [anon_sym_extern] = ACTIONS(2695), - [anon_sym___attribute__] = ACTIONS(2695), - [anon_sym___attribute] = ACTIONS(2695), - [anon_sym_using] = ACTIONS(2695), - [anon_sym_COLON_COLON] = ACTIONS(2697), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2697), - [anon_sym___declspec] = ACTIONS(2695), - [anon_sym___based] = ACTIONS(2695), - [anon_sym___cdecl] = ACTIONS(2695), - [anon_sym___clrcall] = ACTIONS(2695), - [anon_sym___stdcall] = ACTIONS(2695), - [anon_sym___fastcall] = ACTIONS(2695), - [anon_sym___thiscall] = ACTIONS(2695), - [anon_sym___vectorcall] = ACTIONS(2695), - [anon_sym_LBRACE] = ACTIONS(2697), - [anon_sym_RBRACE] = ACTIONS(2697), - [anon_sym_signed] = ACTIONS(2695), - [anon_sym_unsigned] = ACTIONS(2695), - [anon_sym_long] = ACTIONS(2695), - [anon_sym_short] = ACTIONS(2695), - [anon_sym_LBRACK] = ACTIONS(2695), - [anon_sym_static] = ACTIONS(2695), - [anon_sym_register] = ACTIONS(2695), - [anon_sym_inline] = ACTIONS(2695), - [anon_sym___inline] = ACTIONS(2695), - [anon_sym___inline__] = ACTIONS(2695), - [anon_sym___forceinline] = ACTIONS(2695), - [anon_sym_thread_local] = ACTIONS(2695), - [anon_sym___thread] = ACTIONS(2695), - [anon_sym_const] = ACTIONS(2695), - [anon_sym_constexpr] = ACTIONS(2695), - [anon_sym_volatile] = ACTIONS(2695), - [anon_sym_restrict] = ACTIONS(2695), - [anon_sym___restrict__] = ACTIONS(2695), - [anon_sym__Atomic] = ACTIONS(2695), - [anon_sym__Noreturn] = ACTIONS(2695), - [anon_sym_noreturn] = ACTIONS(2695), - [anon_sym__Nonnull] = ACTIONS(2695), - [anon_sym_mutable] = ACTIONS(2695), - [anon_sym_constinit] = ACTIONS(2695), - [anon_sym_consteval] = ACTIONS(2695), - [anon_sym_alignas] = ACTIONS(2695), - [anon_sym__Alignas] = ACTIONS(2695), - [sym_primitive_type] = ACTIONS(2695), - [anon_sym_enum] = ACTIONS(2695), - [anon_sym_class] = ACTIONS(2695), - [anon_sym_struct] = ACTIONS(2695), - [anon_sym_union] = ACTIONS(2695), - [anon_sym_if] = ACTIONS(2695), - [anon_sym_else] = ACTIONS(2695), - [anon_sym_switch] = ACTIONS(2695), - [anon_sym_case] = ACTIONS(2695), - [anon_sym_default] = ACTIONS(2695), - [anon_sym_while] = ACTIONS(2695), - [anon_sym_do] = ACTIONS(2695), - [anon_sym_for] = ACTIONS(2695), - [anon_sym_return] = ACTIONS(2695), - [anon_sym_break] = ACTIONS(2695), - [anon_sym_continue] = ACTIONS(2695), - [anon_sym_goto] = ACTIONS(2695), - [anon_sym___try] = ACTIONS(2695), - [anon_sym___leave] = ACTIONS(2695), - [anon_sym_not] = ACTIONS(2695), - [anon_sym_compl] = ACTIONS(2695), - [anon_sym_DASH_DASH] = ACTIONS(2697), - [anon_sym_PLUS_PLUS] = ACTIONS(2697), - [anon_sym_sizeof] = ACTIONS(2695), - [anon_sym___alignof__] = ACTIONS(2695), - [anon_sym___alignof] = ACTIONS(2695), - [anon_sym__alignof] = ACTIONS(2695), - [anon_sym_alignof] = ACTIONS(2695), - [anon_sym__Alignof] = ACTIONS(2695), - [anon_sym_offsetof] = ACTIONS(2695), - [anon_sym__Generic] = ACTIONS(2695), - [anon_sym_asm] = ACTIONS(2695), - [anon_sym___asm__] = ACTIONS(2695), - [anon_sym___asm] = ACTIONS(2695), - [sym_number_literal] = ACTIONS(2697), - [anon_sym_L_SQUOTE] = ACTIONS(2697), - [anon_sym_u_SQUOTE] = ACTIONS(2697), - [anon_sym_U_SQUOTE] = ACTIONS(2697), - [anon_sym_u8_SQUOTE] = ACTIONS(2697), - [anon_sym_SQUOTE] = ACTIONS(2697), - [anon_sym_L_DQUOTE] = ACTIONS(2697), - [anon_sym_u_DQUOTE] = ACTIONS(2697), - [anon_sym_U_DQUOTE] = ACTIONS(2697), - [anon_sym_u8_DQUOTE] = ACTIONS(2697), - [anon_sym_DQUOTE] = ACTIONS(2697), - [sym_true] = ACTIONS(2695), - [sym_false] = ACTIONS(2695), - [anon_sym_NULL] = ACTIONS(2695), - [anon_sym_nullptr] = ACTIONS(2695), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2695), - [anon_sym_decltype] = ACTIONS(2695), - [anon_sym_explicit] = ACTIONS(2695), - [anon_sym_typename] = ACTIONS(2695), - [anon_sym_template] = ACTIONS(2695), - [anon_sym_operator] = ACTIONS(2695), - [anon_sym_try] = ACTIONS(2695), - [anon_sym_delete] = ACTIONS(2695), - [anon_sym_throw] = ACTIONS(2695), - [anon_sym_namespace] = ACTIONS(2695), - [anon_sym_static_assert] = ACTIONS(2695), - [anon_sym_concept] = ACTIONS(2695), - [anon_sym_co_return] = ACTIONS(2695), - [anon_sym_co_yield] = ACTIONS(2695), - [anon_sym_R_DQUOTE] = ACTIONS(2697), - [anon_sym_LR_DQUOTE] = ACTIONS(2697), - [anon_sym_uR_DQUOTE] = ACTIONS(2697), - [anon_sym_UR_DQUOTE] = ACTIONS(2697), - [anon_sym_u8R_DQUOTE] = ACTIONS(2697), - [anon_sym_co_await] = ACTIONS(2695), - [anon_sym_new] = ACTIONS(2695), - [anon_sym_requires] = ACTIONS(2695), - [sym_this] = ACTIONS(2695), + [592] = { + [sym_identifier] = ACTIONS(2663), + [aux_sym_preproc_include_token1] = ACTIONS(2663), + [aux_sym_preproc_def_token1] = ACTIONS(2663), + [aux_sym_preproc_if_token1] = ACTIONS(2663), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2663), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2663), + [sym_preproc_directive] = ACTIONS(2663), + [anon_sym_LPAREN2] = ACTIONS(2665), + [anon_sym_BANG] = ACTIONS(2665), + [anon_sym_TILDE] = ACTIONS(2665), + [anon_sym_DASH] = ACTIONS(2663), + [anon_sym_PLUS] = ACTIONS(2663), + [anon_sym_STAR] = ACTIONS(2665), + [anon_sym_AMP_AMP] = ACTIONS(2665), + [anon_sym_AMP] = ACTIONS(2663), + [anon_sym_SEMI] = ACTIONS(2665), + [anon_sym___extension__] = ACTIONS(2663), + [anon_sym_typedef] = ACTIONS(2663), + [anon_sym_virtual] = ACTIONS(2663), + [anon_sym_extern] = ACTIONS(2663), + [anon_sym___attribute__] = ACTIONS(2663), + [anon_sym___attribute] = ACTIONS(2663), + [anon_sym_using] = ACTIONS(2663), + [anon_sym_COLON_COLON] = ACTIONS(2665), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2665), + [anon_sym___declspec] = ACTIONS(2663), + [anon_sym___based] = ACTIONS(2663), + [anon_sym___cdecl] = ACTIONS(2663), + [anon_sym___clrcall] = ACTIONS(2663), + [anon_sym___stdcall] = ACTIONS(2663), + [anon_sym___fastcall] = ACTIONS(2663), + [anon_sym___thiscall] = ACTIONS(2663), + [anon_sym___vectorcall] = ACTIONS(2663), + [anon_sym_LBRACE] = ACTIONS(2665), + [anon_sym_RBRACE] = ACTIONS(2665), + [anon_sym_signed] = ACTIONS(2663), + [anon_sym_unsigned] = ACTIONS(2663), + [anon_sym_long] = ACTIONS(2663), + [anon_sym_short] = ACTIONS(2663), + [anon_sym_LBRACK] = ACTIONS(2663), + [anon_sym_static] = ACTIONS(2663), + [anon_sym_register] = ACTIONS(2663), + [anon_sym_inline] = ACTIONS(2663), + [anon_sym___inline] = ACTIONS(2663), + [anon_sym___inline__] = ACTIONS(2663), + [anon_sym___forceinline] = ACTIONS(2663), + [anon_sym_thread_local] = ACTIONS(2663), + [anon_sym___thread] = ACTIONS(2663), + [anon_sym_const] = ACTIONS(2663), + [anon_sym_constexpr] = ACTIONS(2663), + [anon_sym_volatile] = ACTIONS(2663), + [anon_sym_restrict] = ACTIONS(2663), + [anon_sym___restrict__] = ACTIONS(2663), + [anon_sym__Atomic] = ACTIONS(2663), + [anon_sym__Noreturn] = ACTIONS(2663), + [anon_sym_noreturn] = ACTIONS(2663), + [anon_sym__Nonnull] = ACTIONS(2663), + [anon_sym_mutable] = ACTIONS(2663), + [anon_sym_constinit] = ACTIONS(2663), + [anon_sym_consteval] = ACTIONS(2663), + [anon_sym_alignas] = ACTIONS(2663), + [anon_sym__Alignas] = ACTIONS(2663), + [sym_primitive_type] = ACTIONS(2663), + [anon_sym_enum] = ACTIONS(2663), + [anon_sym_class] = ACTIONS(2663), + [anon_sym_struct] = ACTIONS(2663), + [anon_sym_union] = ACTIONS(2663), + [anon_sym_if] = ACTIONS(2663), + [anon_sym_else] = ACTIONS(2663), + [anon_sym_switch] = ACTIONS(2663), + [anon_sym_case] = ACTIONS(2663), + [anon_sym_default] = ACTIONS(2663), + [anon_sym_while] = ACTIONS(2663), + [anon_sym_do] = ACTIONS(2663), + [anon_sym_for] = ACTIONS(2663), + [anon_sym_return] = ACTIONS(2663), + [anon_sym_break] = ACTIONS(2663), + [anon_sym_continue] = ACTIONS(2663), + [anon_sym_goto] = ACTIONS(2663), + [anon_sym___try] = ACTIONS(2663), + [anon_sym___leave] = ACTIONS(2663), + [anon_sym_not] = ACTIONS(2663), + [anon_sym_compl] = ACTIONS(2663), + [anon_sym_DASH_DASH] = ACTIONS(2665), + [anon_sym_PLUS_PLUS] = ACTIONS(2665), + [anon_sym_sizeof] = ACTIONS(2663), + [anon_sym___alignof__] = ACTIONS(2663), + [anon_sym___alignof] = ACTIONS(2663), + [anon_sym__alignof] = ACTIONS(2663), + [anon_sym_alignof] = ACTIONS(2663), + [anon_sym__Alignof] = ACTIONS(2663), + [anon_sym_offsetof] = ACTIONS(2663), + [anon_sym__Generic] = ACTIONS(2663), + [anon_sym_asm] = ACTIONS(2663), + [anon_sym___asm__] = ACTIONS(2663), + [anon_sym___asm] = ACTIONS(2663), + [sym_number_literal] = ACTIONS(2665), + [anon_sym_L_SQUOTE] = ACTIONS(2665), + [anon_sym_u_SQUOTE] = ACTIONS(2665), + [anon_sym_U_SQUOTE] = ACTIONS(2665), + [anon_sym_u8_SQUOTE] = ACTIONS(2665), + [anon_sym_SQUOTE] = ACTIONS(2665), + [anon_sym_L_DQUOTE] = ACTIONS(2665), + [anon_sym_u_DQUOTE] = ACTIONS(2665), + [anon_sym_U_DQUOTE] = ACTIONS(2665), + [anon_sym_u8_DQUOTE] = ACTIONS(2665), + [anon_sym_DQUOTE] = ACTIONS(2665), + [sym_true] = ACTIONS(2663), + [sym_false] = ACTIONS(2663), + [anon_sym_NULL] = ACTIONS(2663), + [anon_sym_nullptr] = ACTIONS(2663), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2663), + [anon_sym_decltype] = ACTIONS(2663), + [anon_sym_explicit] = ACTIONS(2663), + [anon_sym_typename] = ACTIONS(2663), + [anon_sym_template] = ACTIONS(2663), + [anon_sym_operator] = ACTIONS(2663), + [anon_sym_try] = ACTIONS(2663), + [anon_sym_delete] = ACTIONS(2663), + [anon_sym_throw] = ACTIONS(2663), + [anon_sym_namespace] = ACTIONS(2663), + [anon_sym_static_assert] = ACTIONS(2663), + [anon_sym_concept] = ACTIONS(2663), + [anon_sym_co_return] = ACTIONS(2663), + [anon_sym_co_yield] = ACTIONS(2663), + [anon_sym_R_DQUOTE] = ACTIONS(2665), + [anon_sym_LR_DQUOTE] = ACTIONS(2665), + [anon_sym_uR_DQUOTE] = ACTIONS(2665), + [anon_sym_UR_DQUOTE] = ACTIONS(2665), + [anon_sym_u8R_DQUOTE] = ACTIONS(2665), + [anon_sym_co_await] = ACTIONS(2663), + [anon_sym_new] = ACTIONS(2663), + [anon_sym_requires] = ACTIONS(2663), + [sym_this] = ACTIONS(2663), }, - [577] = { - [sym_identifier] = ACTIONS(2703), - [aux_sym_preproc_include_token1] = ACTIONS(2703), - [aux_sym_preproc_def_token1] = ACTIONS(2703), - [aux_sym_preproc_if_token1] = ACTIONS(2703), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2703), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2703), - [sym_preproc_directive] = ACTIONS(2703), - [anon_sym_LPAREN2] = ACTIONS(2705), - [anon_sym_BANG] = ACTIONS(2705), - [anon_sym_TILDE] = ACTIONS(2705), - [anon_sym_DASH] = ACTIONS(2703), - [anon_sym_PLUS] = ACTIONS(2703), - [anon_sym_STAR] = ACTIONS(2705), - [anon_sym_AMP_AMP] = ACTIONS(2705), - [anon_sym_AMP] = ACTIONS(2703), - [anon_sym_SEMI] = ACTIONS(2705), - [anon_sym___extension__] = ACTIONS(2703), - [anon_sym_typedef] = ACTIONS(2703), - [anon_sym_virtual] = ACTIONS(2703), - [anon_sym_extern] = ACTIONS(2703), - [anon_sym___attribute__] = ACTIONS(2703), - [anon_sym___attribute] = ACTIONS(2703), - [anon_sym_using] = ACTIONS(2703), - [anon_sym_COLON_COLON] = ACTIONS(2705), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2705), - [anon_sym___declspec] = ACTIONS(2703), - [anon_sym___based] = ACTIONS(2703), - [anon_sym___cdecl] = ACTIONS(2703), - [anon_sym___clrcall] = ACTIONS(2703), - [anon_sym___stdcall] = ACTIONS(2703), - [anon_sym___fastcall] = ACTIONS(2703), - [anon_sym___thiscall] = ACTIONS(2703), - [anon_sym___vectorcall] = ACTIONS(2703), - [anon_sym_LBRACE] = ACTIONS(2705), - [anon_sym_RBRACE] = ACTIONS(2705), - [anon_sym_signed] = ACTIONS(2703), - [anon_sym_unsigned] = ACTIONS(2703), - [anon_sym_long] = ACTIONS(2703), - [anon_sym_short] = ACTIONS(2703), - [anon_sym_LBRACK] = ACTIONS(2703), - [anon_sym_static] = ACTIONS(2703), - [anon_sym_register] = ACTIONS(2703), - [anon_sym_inline] = ACTIONS(2703), - [anon_sym___inline] = ACTIONS(2703), - [anon_sym___inline__] = ACTIONS(2703), - [anon_sym___forceinline] = ACTIONS(2703), - [anon_sym_thread_local] = ACTIONS(2703), - [anon_sym___thread] = ACTIONS(2703), - [anon_sym_const] = ACTIONS(2703), - [anon_sym_constexpr] = ACTIONS(2703), - [anon_sym_volatile] = ACTIONS(2703), - [anon_sym_restrict] = ACTIONS(2703), - [anon_sym___restrict__] = ACTIONS(2703), - [anon_sym__Atomic] = ACTIONS(2703), - [anon_sym__Noreturn] = ACTIONS(2703), - [anon_sym_noreturn] = ACTIONS(2703), - [anon_sym__Nonnull] = ACTIONS(2703), - [anon_sym_mutable] = ACTIONS(2703), - [anon_sym_constinit] = ACTIONS(2703), - [anon_sym_consteval] = ACTIONS(2703), - [anon_sym_alignas] = ACTIONS(2703), - [anon_sym__Alignas] = ACTIONS(2703), - [sym_primitive_type] = ACTIONS(2703), - [anon_sym_enum] = ACTIONS(2703), - [anon_sym_class] = ACTIONS(2703), - [anon_sym_struct] = ACTIONS(2703), - [anon_sym_union] = ACTIONS(2703), - [anon_sym_if] = ACTIONS(2703), - [anon_sym_else] = ACTIONS(2703), - [anon_sym_switch] = ACTIONS(2703), - [anon_sym_case] = ACTIONS(2703), - [anon_sym_default] = ACTIONS(2703), - [anon_sym_while] = ACTIONS(2703), - [anon_sym_do] = ACTIONS(2703), - [anon_sym_for] = ACTIONS(2703), - [anon_sym_return] = ACTIONS(2703), - [anon_sym_break] = ACTIONS(2703), - [anon_sym_continue] = ACTIONS(2703), - [anon_sym_goto] = ACTIONS(2703), - [anon_sym___try] = ACTIONS(2703), - [anon_sym___leave] = ACTIONS(2703), - [anon_sym_not] = ACTIONS(2703), - [anon_sym_compl] = ACTIONS(2703), - [anon_sym_DASH_DASH] = ACTIONS(2705), - [anon_sym_PLUS_PLUS] = ACTIONS(2705), - [anon_sym_sizeof] = ACTIONS(2703), - [anon_sym___alignof__] = ACTIONS(2703), - [anon_sym___alignof] = ACTIONS(2703), - [anon_sym__alignof] = ACTIONS(2703), - [anon_sym_alignof] = ACTIONS(2703), - [anon_sym__Alignof] = ACTIONS(2703), - [anon_sym_offsetof] = ACTIONS(2703), - [anon_sym__Generic] = ACTIONS(2703), - [anon_sym_asm] = ACTIONS(2703), - [anon_sym___asm__] = ACTIONS(2703), - [anon_sym___asm] = ACTIONS(2703), - [sym_number_literal] = ACTIONS(2705), - [anon_sym_L_SQUOTE] = ACTIONS(2705), - [anon_sym_u_SQUOTE] = ACTIONS(2705), - [anon_sym_U_SQUOTE] = ACTIONS(2705), - [anon_sym_u8_SQUOTE] = ACTIONS(2705), - [anon_sym_SQUOTE] = ACTIONS(2705), - [anon_sym_L_DQUOTE] = ACTIONS(2705), - [anon_sym_u_DQUOTE] = ACTIONS(2705), - [anon_sym_U_DQUOTE] = ACTIONS(2705), - [anon_sym_u8_DQUOTE] = ACTIONS(2705), - [anon_sym_DQUOTE] = ACTIONS(2705), - [sym_true] = ACTIONS(2703), - [sym_false] = ACTIONS(2703), - [anon_sym_NULL] = ACTIONS(2703), - [anon_sym_nullptr] = ACTIONS(2703), + [593] = { + [sym_identifier] = ACTIONS(2639), + [aux_sym_preproc_include_token1] = ACTIONS(2639), + [aux_sym_preproc_def_token1] = ACTIONS(2639), + [aux_sym_preproc_if_token1] = ACTIONS(2639), + [aux_sym_preproc_if_token2] = ACTIONS(2639), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2639), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2639), + [sym_preproc_directive] = ACTIONS(2639), + [anon_sym_LPAREN2] = ACTIONS(2641), + [anon_sym_BANG] = ACTIONS(2641), + [anon_sym_TILDE] = ACTIONS(2641), + [anon_sym_DASH] = ACTIONS(2639), + [anon_sym_PLUS] = ACTIONS(2639), + [anon_sym_STAR] = ACTIONS(2641), + [anon_sym_AMP_AMP] = ACTIONS(2641), + [anon_sym_AMP] = ACTIONS(2639), + [anon_sym_SEMI] = ACTIONS(2641), + [anon_sym___extension__] = ACTIONS(2639), + [anon_sym_typedef] = ACTIONS(2639), + [anon_sym_virtual] = ACTIONS(2639), + [anon_sym_extern] = ACTIONS(2639), + [anon_sym___attribute__] = ACTIONS(2639), + [anon_sym___attribute] = ACTIONS(2639), + [anon_sym_using] = ACTIONS(2639), + [anon_sym_COLON_COLON] = ACTIONS(2641), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2641), + [anon_sym___declspec] = ACTIONS(2639), + [anon_sym___based] = ACTIONS(2639), + [anon_sym___cdecl] = ACTIONS(2639), + [anon_sym___clrcall] = ACTIONS(2639), + [anon_sym___stdcall] = ACTIONS(2639), + [anon_sym___fastcall] = ACTIONS(2639), + [anon_sym___thiscall] = ACTIONS(2639), + [anon_sym___vectorcall] = ACTIONS(2639), + [anon_sym_LBRACE] = ACTIONS(2641), + [anon_sym_signed] = ACTIONS(2639), + [anon_sym_unsigned] = ACTIONS(2639), + [anon_sym_long] = ACTIONS(2639), + [anon_sym_short] = ACTIONS(2639), + [anon_sym_LBRACK] = ACTIONS(2639), + [anon_sym_static] = ACTIONS(2639), + [anon_sym_register] = ACTIONS(2639), + [anon_sym_inline] = ACTIONS(2639), + [anon_sym___inline] = ACTIONS(2639), + [anon_sym___inline__] = ACTIONS(2639), + [anon_sym___forceinline] = ACTIONS(2639), + [anon_sym_thread_local] = ACTIONS(2639), + [anon_sym___thread] = ACTIONS(2639), + [anon_sym_const] = ACTIONS(2639), + [anon_sym_constexpr] = ACTIONS(2639), + [anon_sym_volatile] = ACTIONS(2639), + [anon_sym_restrict] = ACTIONS(2639), + [anon_sym___restrict__] = ACTIONS(2639), + [anon_sym__Atomic] = ACTIONS(2639), + [anon_sym__Noreturn] = ACTIONS(2639), + [anon_sym_noreturn] = ACTIONS(2639), + [anon_sym__Nonnull] = ACTIONS(2639), + [anon_sym_mutable] = ACTIONS(2639), + [anon_sym_constinit] = ACTIONS(2639), + [anon_sym_consteval] = ACTIONS(2639), + [anon_sym_alignas] = ACTIONS(2639), + [anon_sym__Alignas] = ACTIONS(2639), + [sym_primitive_type] = ACTIONS(2639), + [anon_sym_enum] = ACTIONS(2639), + [anon_sym_class] = ACTIONS(2639), + [anon_sym_struct] = ACTIONS(2639), + [anon_sym_union] = ACTIONS(2639), + [anon_sym_if] = ACTIONS(2639), + [anon_sym_else] = ACTIONS(2639), + [anon_sym_switch] = ACTIONS(2639), + [anon_sym_case] = ACTIONS(2639), + [anon_sym_default] = ACTIONS(2639), + [anon_sym_while] = ACTIONS(2639), + [anon_sym_do] = ACTIONS(2639), + [anon_sym_for] = ACTIONS(2639), + [anon_sym_return] = ACTIONS(2639), + [anon_sym_break] = ACTIONS(2639), + [anon_sym_continue] = ACTIONS(2639), + [anon_sym_goto] = ACTIONS(2639), + [anon_sym___try] = ACTIONS(2639), + [anon_sym___leave] = ACTIONS(2639), + [anon_sym_not] = ACTIONS(2639), + [anon_sym_compl] = ACTIONS(2639), + [anon_sym_DASH_DASH] = ACTIONS(2641), + [anon_sym_PLUS_PLUS] = ACTIONS(2641), + [anon_sym_sizeof] = ACTIONS(2639), + [anon_sym___alignof__] = ACTIONS(2639), + [anon_sym___alignof] = ACTIONS(2639), + [anon_sym__alignof] = ACTIONS(2639), + [anon_sym_alignof] = ACTIONS(2639), + [anon_sym__Alignof] = ACTIONS(2639), + [anon_sym_offsetof] = ACTIONS(2639), + [anon_sym__Generic] = ACTIONS(2639), + [anon_sym_asm] = ACTIONS(2639), + [anon_sym___asm__] = ACTIONS(2639), + [anon_sym___asm] = ACTIONS(2639), + [sym_number_literal] = ACTIONS(2641), + [anon_sym_L_SQUOTE] = ACTIONS(2641), + [anon_sym_u_SQUOTE] = ACTIONS(2641), + [anon_sym_U_SQUOTE] = ACTIONS(2641), + [anon_sym_u8_SQUOTE] = ACTIONS(2641), + [anon_sym_SQUOTE] = ACTIONS(2641), + [anon_sym_L_DQUOTE] = ACTIONS(2641), + [anon_sym_u_DQUOTE] = ACTIONS(2641), + [anon_sym_U_DQUOTE] = ACTIONS(2641), + [anon_sym_u8_DQUOTE] = ACTIONS(2641), + [anon_sym_DQUOTE] = ACTIONS(2641), + [sym_true] = ACTIONS(2639), + [sym_false] = ACTIONS(2639), + [anon_sym_NULL] = ACTIONS(2639), + [anon_sym_nullptr] = ACTIONS(2639), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2703), - [anon_sym_decltype] = ACTIONS(2703), - [anon_sym_explicit] = ACTIONS(2703), - [anon_sym_typename] = ACTIONS(2703), - [anon_sym_template] = ACTIONS(2703), - [anon_sym_operator] = ACTIONS(2703), - [anon_sym_try] = ACTIONS(2703), - [anon_sym_delete] = ACTIONS(2703), - [anon_sym_throw] = ACTIONS(2703), - [anon_sym_namespace] = ACTIONS(2703), - [anon_sym_static_assert] = ACTIONS(2703), - [anon_sym_concept] = ACTIONS(2703), - [anon_sym_co_return] = ACTIONS(2703), - [anon_sym_co_yield] = ACTIONS(2703), - [anon_sym_R_DQUOTE] = ACTIONS(2705), - [anon_sym_LR_DQUOTE] = ACTIONS(2705), - [anon_sym_uR_DQUOTE] = ACTIONS(2705), - [anon_sym_UR_DQUOTE] = ACTIONS(2705), - [anon_sym_u8R_DQUOTE] = ACTIONS(2705), - [anon_sym_co_await] = ACTIONS(2703), - [anon_sym_new] = ACTIONS(2703), - [anon_sym_requires] = ACTIONS(2703), - [sym_this] = ACTIONS(2703), - }, - [578] = { - [sym_identifier] = ACTIONS(2681), - [aux_sym_preproc_include_token1] = ACTIONS(2681), - [aux_sym_preproc_def_token1] = ACTIONS(2681), - [aux_sym_preproc_if_token1] = ACTIONS(2681), - [aux_sym_preproc_if_token2] = ACTIONS(2681), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2681), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2681), - [sym_preproc_directive] = ACTIONS(2681), - [anon_sym_LPAREN2] = ACTIONS(2683), - [anon_sym_BANG] = ACTIONS(2683), - [anon_sym_TILDE] = ACTIONS(2683), - [anon_sym_DASH] = ACTIONS(2681), - [anon_sym_PLUS] = ACTIONS(2681), - [anon_sym_STAR] = ACTIONS(2683), - [anon_sym_AMP_AMP] = ACTIONS(2683), - [anon_sym_AMP] = ACTIONS(2681), - [anon_sym_SEMI] = ACTIONS(2683), - [anon_sym___extension__] = ACTIONS(2681), - [anon_sym_typedef] = ACTIONS(2681), - [anon_sym_virtual] = ACTIONS(2681), - [anon_sym_extern] = ACTIONS(2681), - [anon_sym___attribute__] = ACTIONS(2681), - [anon_sym___attribute] = ACTIONS(2681), - [anon_sym_using] = ACTIONS(2681), - [anon_sym_COLON_COLON] = ACTIONS(2683), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2683), - [anon_sym___declspec] = ACTIONS(2681), - [anon_sym___based] = ACTIONS(2681), - [anon_sym___cdecl] = ACTIONS(2681), - [anon_sym___clrcall] = ACTIONS(2681), - [anon_sym___stdcall] = ACTIONS(2681), - [anon_sym___fastcall] = ACTIONS(2681), - [anon_sym___thiscall] = ACTIONS(2681), - [anon_sym___vectorcall] = ACTIONS(2681), - [anon_sym_LBRACE] = ACTIONS(2683), - [anon_sym_signed] = ACTIONS(2681), - [anon_sym_unsigned] = ACTIONS(2681), - [anon_sym_long] = ACTIONS(2681), - [anon_sym_short] = ACTIONS(2681), - [anon_sym_LBRACK] = ACTIONS(2681), - [anon_sym_static] = ACTIONS(2681), - [anon_sym_register] = ACTIONS(2681), - [anon_sym_inline] = ACTIONS(2681), - [anon_sym___inline] = ACTIONS(2681), - [anon_sym___inline__] = ACTIONS(2681), - [anon_sym___forceinline] = ACTIONS(2681), - [anon_sym_thread_local] = ACTIONS(2681), - [anon_sym___thread] = ACTIONS(2681), - [anon_sym_const] = ACTIONS(2681), - [anon_sym_constexpr] = ACTIONS(2681), - [anon_sym_volatile] = ACTIONS(2681), - [anon_sym_restrict] = ACTIONS(2681), - [anon_sym___restrict__] = ACTIONS(2681), - [anon_sym__Atomic] = ACTIONS(2681), - [anon_sym__Noreturn] = ACTIONS(2681), - [anon_sym_noreturn] = ACTIONS(2681), - [anon_sym__Nonnull] = ACTIONS(2681), - [anon_sym_mutable] = ACTIONS(2681), - [anon_sym_constinit] = ACTIONS(2681), - [anon_sym_consteval] = ACTIONS(2681), - [anon_sym_alignas] = ACTIONS(2681), - [anon_sym__Alignas] = ACTIONS(2681), - [sym_primitive_type] = ACTIONS(2681), - [anon_sym_enum] = ACTIONS(2681), - [anon_sym_class] = ACTIONS(2681), - [anon_sym_struct] = ACTIONS(2681), - [anon_sym_union] = ACTIONS(2681), - [anon_sym_if] = ACTIONS(2681), - [anon_sym_else] = ACTIONS(2681), - [anon_sym_switch] = ACTIONS(2681), - [anon_sym_case] = ACTIONS(2681), - [anon_sym_default] = ACTIONS(2681), - [anon_sym_while] = ACTIONS(2681), - [anon_sym_do] = ACTIONS(2681), - [anon_sym_for] = ACTIONS(2681), - [anon_sym_return] = ACTIONS(2681), - [anon_sym_break] = ACTIONS(2681), - [anon_sym_continue] = ACTIONS(2681), - [anon_sym_goto] = ACTIONS(2681), - [anon_sym___try] = ACTIONS(2681), - [anon_sym___leave] = ACTIONS(2681), - [anon_sym_not] = ACTIONS(2681), - [anon_sym_compl] = ACTIONS(2681), - [anon_sym_DASH_DASH] = ACTIONS(2683), - [anon_sym_PLUS_PLUS] = ACTIONS(2683), - [anon_sym_sizeof] = ACTIONS(2681), - [anon_sym___alignof__] = ACTIONS(2681), - [anon_sym___alignof] = ACTIONS(2681), - [anon_sym__alignof] = ACTIONS(2681), - [anon_sym_alignof] = ACTIONS(2681), - [anon_sym__Alignof] = ACTIONS(2681), - [anon_sym_offsetof] = ACTIONS(2681), - [anon_sym__Generic] = ACTIONS(2681), - [anon_sym_asm] = ACTIONS(2681), - [anon_sym___asm__] = ACTIONS(2681), - [anon_sym___asm] = ACTIONS(2681), - [sym_number_literal] = ACTIONS(2683), - [anon_sym_L_SQUOTE] = ACTIONS(2683), - [anon_sym_u_SQUOTE] = ACTIONS(2683), - [anon_sym_U_SQUOTE] = ACTIONS(2683), - [anon_sym_u8_SQUOTE] = ACTIONS(2683), - [anon_sym_SQUOTE] = ACTIONS(2683), - [anon_sym_L_DQUOTE] = ACTIONS(2683), - [anon_sym_u_DQUOTE] = ACTIONS(2683), - [anon_sym_U_DQUOTE] = ACTIONS(2683), - [anon_sym_u8_DQUOTE] = ACTIONS(2683), - [anon_sym_DQUOTE] = ACTIONS(2683), - [sym_true] = ACTIONS(2681), - [sym_false] = ACTIONS(2681), - [anon_sym_NULL] = ACTIONS(2681), - [anon_sym_nullptr] = ACTIONS(2681), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2681), - [anon_sym_decltype] = ACTIONS(2681), - [anon_sym_explicit] = ACTIONS(2681), - [anon_sym_typename] = ACTIONS(2681), - [anon_sym_template] = ACTIONS(2681), - [anon_sym_operator] = ACTIONS(2681), - [anon_sym_try] = ACTIONS(2681), - [anon_sym_delete] = ACTIONS(2681), - [anon_sym_throw] = ACTIONS(2681), - [anon_sym_namespace] = ACTIONS(2681), - [anon_sym_static_assert] = ACTIONS(2681), - [anon_sym_concept] = ACTIONS(2681), - [anon_sym_co_return] = ACTIONS(2681), - [anon_sym_co_yield] = ACTIONS(2681), - [anon_sym_R_DQUOTE] = ACTIONS(2683), - [anon_sym_LR_DQUOTE] = ACTIONS(2683), - [anon_sym_uR_DQUOTE] = ACTIONS(2683), - [anon_sym_UR_DQUOTE] = ACTIONS(2683), - [anon_sym_u8R_DQUOTE] = ACTIONS(2683), - [anon_sym_co_await] = ACTIONS(2681), - [anon_sym_new] = ACTIONS(2681), - [anon_sym_requires] = ACTIONS(2681), - [sym_this] = ACTIONS(2681), + [sym_auto] = ACTIONS(2639), + [anon_sym_decltype] = ACTIONS(2639), + [anon_sym_explicit] = ACTIONS(2639), + [anon_sym_typename] = ACTIONS(2639), + [anon_sym_template] = ACTIONS(2639), + [anon_sym_operator] = ACTIONS(2639), + [anon_sym_try] = ACTIONS(2639), + [anon_sym_delete] = ACTIONS(2639), + [anon_sym_throw] = ACTIONS(2639), + [anon_sym_namespace] = ACTIONS(2639), + [anon_sym_static_assert] = ACTIONS(2639), + [anon_sym_concept] = ACTIONS(2639), + [anon_sym_co_return] = ACTIONS(2639), + [anon_sym_co_yield] = ACTIONS(2639), + [anon_sym_R_DQUOTE] = ACTIONS(2641), + [anon_sym_LR_DQUOTE] = ACTIONS(2641), + [anon_sym_uR_DQUOTE] = ACTIONS(2641), + [anon_sym_UR_DQUOTE] = ACTIONS(2641), + [anon_sym_u8R_DQUOTE] = ACTIONS(2641), + [anon_sym_co_await] = ACTIONS(2639), + [anon_sym_new] = ACTIONS(2639), + [anon_sym_requires] = ACTIONS(2639), + [sym_this] = ACTIONS(2639), }, - [579] = { + [594] = { [sym_identifier] = ACTIONS(2703), [aux_sym_preproc_include_token1] = ACTIONS(2703), [aux_sym_preproc_def_token1] = ACTIONS(2703), @@ -125884,148 +128250,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2703), [sym_this] = ACTIONS(2703), }, - [580] = { - [sym_identifier] = ACTIONS(2711), - [aux_sym_preproc_include_token1] = ACTIONS(2711), - [aux_sym_preproc_def_token1] = ACTIONS(2711), - [aux_sym_preproc_if_token1] = ACTIONS(2711), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2711), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2711), - [sym_preproc_directive] = ACTIONS(2711), - [anon_sym_LPAREN2] = ACTIONS(2713), - [anon_sym_BANG] = ACTIONS(2713), - [anon_sym_TILDE] = ACTIONS(2713), - [anon_sym_DASH] = ACTIONS(2711), - [anon_sym_PLUS] = ACTIONS(2711), - [anon_sym_STAR] = ACTIONS(2713), - [anon_sym_AMP_AMP] = ACTIONS(2713), - [anon_sym_AMP] = ACTIONS(2711), - [anon_sym_SEMI] = ACTIONS(2713), - [anon_sym___extension__] = ACTIONS(2711), - [anon_sym_typedef] = ACTIONS(2711), - [anon_sym_virtual] = ACTIONS(2711), - [anon_sym_extern] = ACTIONS(2711), - [anon_sym___attribute__] = ACTIONS(2711), - [anon_sym___attribute] = ACTIONS(2711), - [anon_sym_using] = ACTIONS(2711), - [anon_sym_COLON_COLON] = ACTIONS(2713), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2713), - [anon_sym___declspec] = ACTIONS(2711), - [anon_sym___based] = ACTIONS(2711), - [anon_sym___cdecl] = ACTIONS(2711), - [anon_sym___clrcall] = ACTIONS(2711), - [anon_sym___stdcall] = ACTIONS(2711), - [anon_sym___fastcall] = ACTIONS(2711), - [anon_sym___thiscall] = ACTIONS(2711), - [anon_sym___vectorcall] = ACTIONS(2711), - [anon_sym_LBRACE] = ACTIONS(2713), - [anon_sym_RBRACE] = ACTIONS(2713), - [anon_sym_signed] = ACTIONS(2711), - [anon_sym_unsigned] = ACTIONS(2711), - [anon_sym_long] = ACTIONS(2711), - [anon_sym_short] = ACTIONS(2711), - [anon_sym_LBRACK] = ACTIONS(2711), - [anon_sym_static] = ACTIONS(2711), - [anon_sym_register] = ACTIONS(2711), - [anon_sym_inline] = ACTIONS(2711), - [anon_sym___inline] = ACTIONS(2711), - [anon_sym___inline__] = ACTIONS(2711), - [anon_sym___forceinline] = ACTIONS(2711), - [anon_sym_thread_local] = ACTIONS(2711), - [anon_sym___thread] = ACTIONS(2711), - [anon_sym_const] = ACTIONS(2711), - [anon_sym_constexpr] = ACTIONS(2711), - [anon_sym_volatile] = ACTIONS(2711), - [anon_sym_restrict] = ACTIONS(2711), - [anon_sym___restrict__] = ACTIONS(2711), - [anon_sym__Atomic] = ACTIONS(2711), - [anon_sym__Noreturn] = ACTIONS(2711), - [anon_sym_noreturn] = ACTIONS(2711), - [anon_sym__Nonnull] = ACTIONS(2711), - [anon_sym_mutable] = ACTIONS(2711), - [anon_sym_constinit] = ACTIONS(2711), - [anon_sym_consteval] = ACTIONS(2711), - [anon_sym_alignas] = ACTIONS(2711), - [anon_sym__Alignas] = ACTIONS(2711), - [sym_primitive_type] = ACTIONS(2711), - [anon_sym_enum] = ACTIONS(2711), - [anon_sym_class] = ACTIONS(2711), - [anon_sym_struct] = ACTIONS(2711), - [anon_sym_union] = ACTIONS(2711), - [anon_sym_if] = ACTIONS(2711), - [anon_sym_else] = ACTIONS(2711), - [anon_sym_switch] = ACTIONS(2711), - [anon_sym_case] = ACTIONS(2711), - [anon_sym_default] = ACTIONS(2711), - [anon_sym_while] = ACTIONS(2711), - [anon_sym_do] = ACTIONS(2711), - [anon_sym_for] = ACTIONS(2711), - [anon_sym_return] = ACTIONS(2711), - [anon_sym_break] = ACTIONS(2711), - [anon_sym_continue] = ACTIONS(2711), - [anon_sym_goto] = ACTIONS(2711), - [anon_sym___try] = ACTIONS(2711), - [anon_sym___leave] = ACTIONS(2711), - [anon_sym_not] = ACTIONS(2711), - [anon_sym_compl] = ACTIONS(2711), - [anon_sym_DASH_DASH] = ACTIONS(2713), - [anon_sym_PLUS_PLUS] = ACTIONS(2713), - [anon_sym_sizeof] = ACTIONS(2711), - [anon_sym___alignof__] = ACTIONS(2711), - [anon_sym___alignof] = ACTIONS(2711), - [anon_sym__alignof] = ACTIONS(2711), - [anon_sym_alignof] = ACTIONS(2711), - [anon_sym__Alignof] = ACTIONS(2711), - [anon_sym_offsetof] = ACTIONS(2711), - [anon_sym__Generic] = ACTIONS(2711), - [anon_sym_asm] = ACTIONS(2711), - [anon_sym___asm__] = ACTIONS(2711), - [anon_sym___asm] = ACTIONS(2711), - [sym_number_literal] = ACTIONS(2713), - [anon_sym_L_SQUOTE] = ACTIONS(2713), - [anon_sym_u_SQUOTE] = ACTIONS(2713), - [anon_sym_U_SQUOTE] = ACTIONS(2713), - [anon_sym_u8_SQUOTE] = ACTIONS(2713), - [anon_sym_SQUOTE] = ACTIONS(2713), - [anon_sym_L_DQUOTE] = ACTIONS(2713), - [anon_sym_u_DQUOTE] = ACTIONS(2713), - [anon_sym_U_DQUOTE] = ACTIONS(2713), - [anon_sym_u8_DQUOTE] = ACTIONS(2713), - [anon_sym_DQUOTE] = ACTIONS(2713), - [sym_true] = ACTIONS(2711), - [sym_false] = ACTIONS(2711), - [anon_sym_NULL] = ACTIONS(2711), - [anon_sym_nullptr] = ACTIONS(2711), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2711), - [anon_sym_decltype] = ACTIONS(2711), - [anon_sym_explicit] = ACTIONS(2711), - [anon_sym_typename] = ACTIONS(2711), - [anon_sym_template] = ACTIONS(2711), - [anon_sym_operator] = ACTIONS(2711), - [anon_sym_try] = ACTIONS(2711), - [anon_sym_delete] = ACTIONS(2711), - [anon_sym_throw] = ACTIONS(2711), - [anon_sym_namespace] = ACTIONS(2711), - [anon_sym_static_assert] = ACTIONS(2711), - [anon_sym_concept] = ACTIONS(2711), - [anon_sym_co_return] = ACTIONS(2711), - [anon_sym_co_yield] = ACTIONS(2711), - [anon_sym_R_DQUOTE] = ACTIONS(2713), - [anon_sym_LR_DQUOTE] = ACTIONS(2713), - [anon_sym_uR_DQUOTE] = ACTIONS(2713), - [anon_sym_UR_DQUOTE] = ACTIONS(2713), - [anon_sym_u8R_DQUOTE] = ACTIONS(2713), - [anon_sym_co_await] = ACTIONS(2711), - [anon_sym_new] = ACTIONS(2711), - [anon_sym_requires] = ACTIONS(2711), - [sym_this] = ACTIONS(2711), - }, - [581] = { + [595] = { [sym_identifier] = ACTIONS(1940), [aux_sym_preproc_include_token1] = ACTIONS(1940), [aux_sym_preproc_def_token1] = ACTIONS(1940), - [anon_sym_COMMA] = ACTIONS(2685), + [anon_sym_COMMA] = ACTIONS(2729), [aux_sym_preproc_if_token1] = ACTIONS(1940), [aux_sym_preproc_ifdef_token1] = ACTIONS(1940), [aux_sym_preproc_ifdef_token2] = ACTIONS(1940), @@ -126057,7 +128286,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1940), [anon_sym___vectorcall] = ACTIONS(1940), [anon_sym_LBRACE] = ACTIONS(1938), - [anon_sym_RBRACE] = ACTIONS(2685), + [anon_sym_RBRACE] = ACTIONS(2729), [anon_sym_signed] = ACTIONS(1940), [anon_sym_unsigned] = ACTIONS(1940), [anon_sym_long] = ACTIONS(1940), @@ -126158,829 +128387,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1940), [sym_this] = ACTIONS(1940), }, - [582] = { - [ts_builtin_sym_end] = ACTIONS(2869), - [sym_identifier] = ACTIONS(2867), - [aux_sym_preproc_include_token1] = ACTIONS(2867), - [aux_sym_preproc_def_token1] = ACTIONS(2867), - [aux_sym_preproc_if_token1] = ACTIONS(2867), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), - [sym_preproc_directive] = ACTIONS(2867), - [anon_sym_LPAREN2] = ACTIONS(2869), - [anon_sym_BANG] = ACTIONS(2869), - [anon_sym_TILDE] = ACTIONS(2869), - [anon_sym_DASH] = ACTIONS(2867), - [anon_sym_PLUS] = ACTIONS(2867), - [anon_sym_STAR] = ACTIONS(2869), - [anon_sym_AMP_AMP] = ACTIONS(2869), - [anon_sym_AMP] = ACTIONS(2867), - [anon_sym_SEMI] = ACTIONS(2869), - [anon_sym___extension__] = ACTIONS(2867), - [anon_sym_typedef] = ACTIONS(2867), - [anon_sym_virtual] = ACTIONS(2867), - [anon_sym_extern] = ACTIONS(2867), - [anon_sym___attribute__] = ACTIONS(2867), - [anon_sym___attribute] = ACTIONS(2867), - [anon_sym_using] = ACTIONS(2867), - [anon_sym_COLON_COLON] = ACTIONS(2869), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), - [anon_sym___declspec] = ACTIONS(2867), - [anon_sym___based] = ACTIONS(2867), - [anon_sym___cdecl] = ACTIONS(2867), - [anon_sym___clrcall] = ACTIONS(2867), - [anon_sym___stdcall] = ACTIONS(2867), - [anon_sym___fastcall] = ACTIONS(2867), - [anon_sym___thiscall] = ACTIONS(2867), - [anon_sym___vectorcall] = ACTIONS(2867), - [anon_sym_LBRACE] = ACTIONS(2869), - [anon_sym_signed] = ACTIONS(2867), - [anon_sym_unsigned] = ACTIONS(2867), - [anon_sym_long] = ACTIONS(2867), - [anon_sym_short] = ACTIONS(2867), - [anon_sym_LBRACK] = ACTIONS(2867), - [anon_sym_static] = ACTIONS(2867), - [anon_sym_register] = ACTIONS(2867), - [anon_sym_inline] = ACTIONS(2867), - [anon_sym___inline] = ACTIONS(2867), - [anon_sym___inline__] = ACTIONS(2867), - [anon_sym___forceinline] = ACTIONS(2867), - [anon_sym_thread_local] = ACTIONS(2867), - [anon_sym___thread] = ACTIONS(2867), - [anon_sym_const] = ACTIONS(2867), - [anon_sym_constexpr] = ACTIONS(2867), - [anon_sym_volatile] = ACTIONS(2867), - [anon_sym_restrict] = ACTIONS(2867), - [anon_sym___restrict__] = ACTIONS(2867), - [anon_sym__Atomic] = ACTIONS(2867), - [anon_sym__Noreturn] = ACTIONS(2867), - [anon_sym_noreturn] = ACTIONS(2867), - [anon_sym__Nonnull] = ACTIONS(2867), - [anon_sym_mutable] = ACTIONS(2867), - [anon_sym_constinit] = ACTIONS(2867), - [anon_sym_consteval] = ACTIONS(2867), - [anon_sym_alignas] = ACTIONS(2867), - [anon_sym__Alignas] = ACTIONS(2867), - [sym_primitive_type] = ACTIONS(2867), - [anon_sym_enum] = ACTIONS(2867), - [anon_sym_class] = ACTIONS(2867), - [anon_sym_struct] = ACTIONS(2867), - [anon_sym_union] = ACTIONS(2867), - [anon_sym_if] = ACTIONS(2867), - [anon_sym_switch] = ACTIONS(2867), - [anon_sym_case] = ACTIONS(2867), - [anon_sym_default] = ACTIONS(2867), - [anon_sym_while] = ACTIONS(2867), - [anon_sym_do] = ACTIONS(2867), - [anon_sym_for] = ACTIONS(2867), - [anon_sym_return] = ACTIONS(2867), - [anon_sym_break] = ACTIONS(2867), - [anon_sym_continue] = ACTIONS(2867), - [anon_sym_goto] = ACTIONS(2867), - [anon_sym_not] = ACTIONS(2867), - [anon_sym_compl] = ACTIONS(2867), - [anon_sym_DASH_DASH] = ACTIONS(2869), - [anon_sym_PLUS_PLUS] = ACTIONS(2869), - [anon_sym_sizeof] = ACTIONS(2867), - [anon_sym___alignof__] = ACTIONS(2867), - [anon_sym___alignof] = ACTIONS(2867), - [anon_sym__alignof] = ACTIONS(2867), - [anon_sym_alignof] = ACTIONS(2867), - [anon_sym__Alignof] = ACTIONS(2867), - [anon_sym_offsetof] = ACTIONS(2867), - [anon_sym__Generic] = ACTIONS(2867), - [anon_sym_asm] = ACTIONS(2867), - [anon_sym___asm__] = ACTIONS(2867), - [anon_sym___asm] = ACTIONS(2867), - [sym_number_literal] = ACTIONS(2869), - [anon_sym_L_SQUOTE] = ACTIONS(2869), - [anon_sym_u_SQUOTE] = ACTIONS(2869), - [anon_sym_U_SQUOTE] = ACTIONS(2869), - [anon_sym_u8_SQUOTE] = ACTIONS(2869), - [anon_sym_SQUOTE] = ACTIONS(2869), - [anon_sym_L_DQUOTE] = ACTIONS(2869), - [anon_sym_u_DQUOTE] = ACTIONS(2869), - [anon_sym_U_DQUOTE] = ACTIONS(2869), - [anon_sym_u8_DQUOTE] = ACTIONS(2869), - [anon_sym_DQUOTE] = ACTIONS(2869), - [sym_true] = ACTIONS(2867), - [sym_false] = ACTIONS(2867), - [anon_sym_NULL] = ACTIONS(2867), - [anon_sym_nullptr] = ACTIONS(2867), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2867), - [anon_sym_decltype] = ACTIONS(2867), - [anon_sym_explicit] = ACTIONS(2867), - [anon_sym_typename] = ACTIONS(2867), - [anon_sym_export] = ACTIONS(2867), - [anon_sym_module] = ACTIONS(2867), - [anon_sym_import] = ACTIONS(2867), - [anon_sym_template] = ACTIONS(2867), - [anon_sym_operator] = ACTIONS(2867), - [anon_sym_try] = ACTIONS(2867), - [anon_sym_delete] = ACTIONS(2867), - [anon_sym_throw] = ACTIONS(2867), - [anon_sym_namespace] = ACTIONS(2867), - [anon_sym_static_assert] = ACTIONS(2867), - [anon_sym_concept] = ACTIONS(2867), - [anon_sym_co_return] = ACTIONS(2867), - [anon_sym_co_yield] = ACTIONS(2867), - [anon_sym_R_DQUOTE] = ACTIONS(2869), - [anon_sym_LR_DQUOTE] = ACTIONS(2869), - [anon_sym_uR_DQUOTE] = ACTIONS(2869), - [anon_sym_UR_DQUOTE] = ACTIONS(2869), - [anon_sym_u8R_DQUOTE] = ACTIONS(2869), - [anon_sym_co_await] = ACTIONS(2867), - [anon_sym_new] = ACTIONS(2867), - [anon_sym_requires] = ACTIONS(2867), - [sym_this] = ACTIONS(2867), - }, - [583] = { - [sym_identifier] = ACTIONS(2627), - [aux_sym_preproc_include_token1] = ACTIONS(2627), - [aux_sym_preproc_def_token1] = ACTIONS(2627), - [aux_sym_preproc_if_token1] = ACTIONS(2627), - [aux_sym_preproc_if_token2] = ACTIONS(2627), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2627), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2627), - [sym_preproc_directive] = ACTIONS(2627), - [anon_sym_LPAREN2] = ACTIONS(2629), - [anon_sym_BANG] = ACTIONS(2629), - [anon_sym_TILDE] = ACTIONS(2629), - [anon_sym_DASH] = ACTIONS(2627), - [anon_sym_PLUS] = ACTIONS(2627), - [anon_sym_STAR] = ACTIONS(2629), - [anon_sym_AMP_AMP] = ACTIONS(2629), - [anon_sym_AMP] = ACTIONS(2627), - [anon_sym_SEMI] = ACTIONS(2629), - [anon_sym___extension__] = ACTIONS(2627), - [anon_sym_typedef] = ACTIONS(2627), - [anon_sym_virtual] = ACTIONS(2627), - [anon_sym_extern] = ACTIONS(2627), - [anon_sym___attribute__] = ACTIONS(2627), - [anon_sym___attribute] = ACTIONS(2627), - [anon_sym_using] = ACTIONS(2627), - [anon_sym_COLON_COLON] = ACTIONS(2629), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2629), - [anon_sym___declspec] = ACTIONS(2627), - [anon_sym___based] = ACTIONS(2627), - [anon_sym___cdecl] = ACTIONS(2627), - [anon_sym___clrcall] = ACTIONS(2627), - [anon_sym___stdcall] = ACTIONS(2627), - [anon_sym___fastcall] = ACTIONS(2627), - [anon_sym___thiscall] = ACTIONS(2627), - [anon_sym___vectorcall] = ACTIONS(2627), - [anon_sym_LBRACE] = ACTIONS(2629), - [anon_sym_signed] = ACTIONS(2627), - [anon_sym_unsigned] = ACTIONS(2627), - [anon_sym_long] = ACTIONS(2627), - [anon_sym_short] = ACTIONS(2627), - [anon_sym_LBRACK] = ACTIONS(2627), - [anon_sym_static] = ACTIONS(2627), - [anon_sym_register] = ACTIONS(2627), - [anon_sym_inline] = ACTIONS(2627), - [anon_sym___inline] = ACTIONS(2627), - [anon_sym___inline__] = ACTIONS(2627), - [anon_sym___forceinline] = ACTIONS(2627), - [anon_sym_thread_local] = ACTIONS(2627), - [anon_sym___thread] = ACTIONS(2627), - [anon_sym_const] = ACTIONS(2627), - [anon_sym_constexpr] = ACTIONS(2627), - [anon_sym_volatile] = ACTIONS(2627), - [anon_sym_restrict] = ACTIONS(2627), - [anon_sym___restrict__] = ACTIONS(2627), - [anon_sym__Atomic] = ACTIONS(2627), - [anon_sym__Noreturn] = ACTIONS(2627), - [anon_sym_noreturn] = ACTIONS(2627), - [anon_sym__Nonnull] = ACTIONS(2627), - [anon_sym_mutable] = ACTIONS(2627), - [anon_sym_constinit] = ACTIONS(2627), - [anon_sym_consteval] = ACTIONS(2627), - [anon_sym_alignas] = ACTIONS(2627), - [anon_sym__Alignas] = ACTIONS(2627), - [sym_primitive_type] = ACTIONS(2627), - [anon_sym_enum] = ACTIONS(2627), - [anon_sym_class] = ACTIONS(2627), - [anon_sym_struct] = ACTIONS(2627), - [anon_sym_union] = ACTIONS(2627), - [anon_sym_if] = ACTIONS(2627), - [anon_sym_else] = ACTIONS(2627), - [anon_sym_switch] = ACTIONS(2627), - [anon_sym_case] = ACTIONS(2627), - [anon_sym_default] = ACTIONS(2627), - [anon_sym_while] = ACTIONS(2627), - [anon_sym_do] = ACTIONS(2627), - [anon_sym_for] = ACTIONS(2627), - [anon_sym_return] = ACTIONS(2627), - [anon_sym_break] = ACTIONS(2627), - [anon_sym_continue] = ACTIONS(2627), - [anon_sym_goto] = ACTIONS(2627), - [anon_sym___try] = ACTIONS(2627), - [anon_sym___leave] = ACTIONS(2627), - [anon_sym_not] = ACTIONS(2627), - [anon_sym_compl] = ACTIONS(2627), - [anon_sym_DASH_DASH] = ACTIONS(2629), - [anon_sym_PLUS_PLUS] = ACTIONS(2629), - [anon_sym_sizeof] = ACTIONS(2627), - [anon_sym___alignof__] = ACTIONS(2627), - [anon_sym___alignof] = ACTIONS(2627), - [anon_sym__alignof] = ACTIONS(2627), - [anon_sym_alignof] = ACTIONS(2627), - [anon_sym__Alignof] = ACTIONS(2627), - [anon_sym_offsetof] = ACTIONS(2627), - [anon_sym__Generic] = ACTIONS(2627), - [anon_sym_asm] = ACTIONS(2627), - [anon_sym___asm__] = ACTIONS(2627), - [anon_sym___asm] = ACTIONS(2627), - [sym_number_literal] = ACTIONS(2629), - [anon_sym_L_SQUOTE] = ACTIONS(2629), - [anon_sym_u_SQUOTE] = ACTIONS(2629), - [anon_sym_U_SQUOTE] = ACTIONS(2629), - [anon_sym_u8_SQUOTE] = ACTIONS(2629), - [anon_sym_SQUOTE] = ACTIONS(2629), - [anon_sym_L_DQUOTE] = ACTIONS(2629), - [anon_sym_u_DQUOTE] = ACTIONS(2629), - [anon_sym_U_DQUOTE] = ACTIONS(2629), - [anon_sym_u8_DQUOTE] = ACTIONS(2629), - [anon_sym_DQUOTE] = ACTIONS(2629), - [sym_true] = ACTIONS(2627), - [sym_false] = ACTIONS(2627), - [anon_sym_NULL] = ACTIONS(2627), - [anon_sym_nullptr] = ACTIONS(2627), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2627), - [anon_sym_decltype] = ACTIONS(2627), - [anon_sym_explicit] = ACTIONS(2627), - [anon_sym_typename] = ACTIONS(2627), - [anon_sym_template] = ACTIONS(2627), - [anon_sym_operator] = ACTIONS(2627), - [anon_sym_try] = ACTIONS(2627), - [anon_sym_delete] = ACTIONS(2627), - [anon_sym_throw] = ACTIONS(2627), - [anon_sym_namespace] = ACTIONS(2627), - [anon_sym_static_assert] = ACTIONS(2627), - [anon_sym_concept] = ACTIONS(2627), - [anon_sym_co_return] = ACTIONS(2627), - [anon_sym_co_yield] = ACTIONS(2627), - [anon_sym_R_DQUOTE] = ACTIONS(2629), - [anon_sym_LR_DQUOTE] = ACTIONS(2629), - [anon_sym_uR_DQUOTE] = ACTIONS(2629), - [anon_sym_UR_DQUOTE] = ACTIONS(2629), - [anon_sym_u8R_DQUOTE] = ACTIONS(2629), - [anon_sym_co_await] = ACTIONS(2627), - [anon_sym_new] = ACTIONS(2627), - [anon_sym_requires] = ACTIONS(2627), - [sym_this] = ACTIONS(2627), - }, - [584] = { - [ts_builtin_sym_end] = ACTIONS(3091), - [sym_identifier] = ACTIONS(3089), - [aux_sym_preproc_include_token1] = ACTIONS(3089), - [aux_sym_preproc_def_token1] = ACTIONS(3089), - [aux_sym_preproc_if_token1] = ACTIONS(3089), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3089), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3089), - [sym_preproc_directive] = ACTIONS(3089), - [anon_sym_LPAREN2] = ACTIONS(3091), - [anon_sym_BANG] = ACTIONS(3091), - [anon_sym_TILDE] = ACTIONS(3091), - [anon_sym_DASH] = ACTIONS(3089), - [anon_sym_PLUS] = ACTIONS(3089), - [anon_sym_STAR] = ACTIONS(3091), - [anon_sym_AMP_AMP] = ACTIONS(3091), - [anon_sym_AMP] = ACTIONS(3089), - [anon_sym_SEMI] = ACTIONS(3091), - [anon_sym___extension__] = ACTIONS(3089), - [anon_sym_typedef] = ACTIONS(3089), - [anon_sym_virtual] = ACTIONS(3089), - [anon_sym_extern] = ACTIONS(3089), - [anon_sym___attribute__] = ACTIONS(3089), - [anon_sym___attribute] = ACTIONS(3089), - [anon_sym_using] = ACTIONS(3089), - [anon_sym_COLON_COLON] = ACTIONS(3091), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3091), - [anon_sym___declspec] = ACTIONS(3089), - [anon_sym___based] = ACTIONS(3089), - [anon_sym___cdecl] = ACTIONS(3089), - [anon_sym___clrcall] = ACTIONS(3089), - [anon_sym___stdcall] = ACTIONS(3089), - [anon_sym___fastcall] = ACTIONS(3089), - [anon_sym___thiscall] = ACTIONS(3089), - [anon_sym___vectorcall] = ACTIONS(3089), - [anon_sym_LBRACE] = ACTIONS(3091), - [anon_sym_signed] = ACTIONS(3089), - [anon_sym_unsigned] = ACTIONS(3089), - [anon_sym_long] = ACTIONS(3089), - [anon_sym_short] = ACTIONS(3089), - [anon_sym_LBRACK] = ACTIONS(3089), - [anon_sym_static] = ACTIONS(3089), - [anon_sym_register] = ACTIONS(3089), - [anon_sym_inline] = ACTIONS(3089), - [anon_sym___inline] = ACTIONS(3089), - [anon_sym___inline__] = ACTIONS(3089), - [anon_sym___forceinline] = ACTIONS(3089), - [anon_sym_thread_local] = ACTIONS(3089), - [anon_sym___thread] = ACTIONS(3089), - [anon_sym_const] = ACTIONS(3089), - [anon_sym_constexpr] = ACTIONS(3089), - [anon_sym_volatile] = ACTIONS(3089), - [anon_sym_restrict] = ACTIONS(3089), - [anon_sym___restrict__] = ACTIONS(3089), - [anon_sym__Atomic] = ACTIONS(3089), - [anon_sym__Noreturn] = ACTIONS(3089), - [anon_sym_noreturn] = ACTIONS(3089), - [anon_sym__Nonnull] = ACTIONS(3089), - [anon_sym_mutable] = ACTIONS(3089), - [anon_sym_constinit] = ACTIONS(3089), - [anon_sym_consteval] = ACTIONS(3089), - [anon_sym_alignas] = ACTIONS(3089), - [anon_sym__Alignas] = ACTIONS(3089), - [sym_primitive_type] = ACTIONS(3089), - [anon_sym_enum] = ACTIONS(3089), - [anon_sym_class] = ACTIONS(3089), - [anon_sym_struct] = ACTIONS(3089), - [anon_sym_union] = ACTIONS(3089), - [anon_sym_if] = ACTIONS(3089), - [anon_sym_switch] = ACTIONS(3089), - [anon_sym_case] = ACTIONS(3089), - [anon_sym_default] = ACTIONS(3089), - [anon_sym_while] = ACTIONS(3089), - [anon_sym_do] = ACTIONS(3089), - [anon_sym_for] = ACTIONS(3089), - [anon_sym_return] = ACTIONS(3089), - [anon_sym_break] = ACTIONS(3089), - [anon_sym_continue] = ACTIONS(3089), - [anon_sym_goto] = ACTIONS(3089), - [anon_sym_not] = ACTIONS(3089), - [anon_sym_compl] = ACTIONS(3089), - [anon_sym_DASH_DASH] = ACTIONS(3091), - [anon_sym_PLUS_PLUS] = ACTIONS(3091), - [anon_sym_sizeof] = ACTIONS(3089), - [anon_sym___alignof__] = ACTIONS(3089), - [anon_sym___alignof] = ACTIONS(3089), - [anon_sym__alignof] = ACTIONS(3089), - [anon_sym_alignof] = ACTIONS(3089), - [anon_sym__Alignof] = ACTIONS(3089), - [anon_sym_offsetof] = ACTIONS(3089), - [anon_sym__Generic] = ACTIONS(3089), - [anon_sym_asm] = ACTIONS(3089), - [anon_sym___asm__] = ACTIONS(3089), - [anon_sym___asm] = ACTIONS(3089), - [sym_number_literal] = ACTIONS(3091), - [anon_sym_L_SQUOTE] = ACTIONS(3091), - [anon_sym_u_SQUOTE] = ACTIONS(3091), - [anon_sym_U_SQUOTE] = ACTIONS(3091), - [anon_sym_u8_SQUOTE] = ACTIONS(3091), - [anon_sym_SQUOTE] = ACTIONS(3091), - [anon_sym_L_DQUOTE] = ACTIONS(3091), - [anon_sym_u_DQUOTE] = ACTIONS(3091), - [anon_sym_U_DQUOTE] = ACTIONS(3091), - [anon_sym_u8_DQUOTE] = ACTIONS(3091), - [anon_sym_DQUOTE] = ACTIONS(3091), - [sym_true] = ACTIONS(3089), - [sym_false] = ACTIONS(3089), - [anon_sym_NULL] = ACTIONS(3089), - [anon_sym_nullptr] = ACTIONS(3089), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3089), - [anon_sym_decltype] = ACTIONS(3089), - [anon_sym_explicit] = ACTIONS(3089), - [anon_sym_typename] = ACTIONS(3089), - [anon_sym_export] = ACTIONS(3089), - [anon_sym_module] = ACTIONS(3089), - [anon_sym_import] = ACTIONS(3089), - [anon_sym_template] = ACTIONS(3089), - [anon_sym_operator] = ACTIONS(3089), - [anon_sym_try] = ACTIONS(3089), - [anon_sym_delete] = ACTIONS(3089), - [anon_sym_throw] = ACTIONS(3089), - [anon_sym_namespace] = ACTIONS(3089), - [anon_sym_static_assert] = ACTIONS(3089), - [anon_sym_concept] = ACTIONS(3089), - [anon_sym_co_return] = ACTIONS(3089), - [anon_sym_co_yield] = ACTIONS(3089), - [anon_sym_R_DQUOTE] = ACTIONS(3091), - [anon_sym_LR_DQUOTE] = ACTIONS(3091), - [anon_sym_uR_DQUOTE] = ACTIONS(3091), - [anon_sym_UR_DQUOTE] = ACTIONS(3091), - [anon_sym_u8R_DQUOTE] = ACTIONS(3091), - [anon_sym_co_await] = ACTIONS(3089), - [anon_sym_new] = ACTIONS(3089), - [anon_sym_requires] = ACTIONS(3089), - [sym_this] = ACTIONS(3089), - }, - [585] = { - [ts_builtin_sym_end] = ACTIONS(3095), - [sym_identifier] = ACTIONS(3093), - [aux_sym_preproc_include_token1] = ACTIONS(3093), - [aux_sym_preproc_def_token1] = ACTIONS(3093), - [aux_sym_preproc_if_token1] = ACTIONS(3093), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3093), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3093), - [sym_preproc_directive] = ACTIONS(3093), - [anon_sym_LPAREN2] = ACTIONS(3095), - [anon_sym_BANG] = ACTIONS(3095), - [anon_sym_TILDE] = ACTIONS(3095), - [anon_sym_DASH] = ACTIONS(3093), - [anon_sym_PLUS] = ACTIONS(3093), - [anon_sym_STAR] = ACTIONS(3095), - [anon_sym_AMP_AMP] = ACTIONS(3095), - [anon_sym_AMP] = ACTIONS(3093), - [anon_sym_SEMI] = ACTIONS(3095), - [anon_sym___extension__] = ACTIONS(3093), - [anon_sym_typedef] = ACTIONS(3093), - [anon_sym_virtual] = ACTIONS(3093), - [anon_sym_extern] = ACTIONS(3093), - [anon_sym___attribute__] = ACTIONS(3093), - [anon_sym___attribute] = ACTIONS(3093), - [anon_sym_using] = ACTIONS(3093), - [anon_sym_COLON_COLON] = ACTIONS(3095), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3095), - [anon_sym___declspec] = ACTIONS(3093), - [anon_sym___based] = ACTIONS(3093), - [anon_sym___cdecl] = ACTIONS(3093), - [anon_sym___clrcall] = ACTIONS(3093), - [anon_sym___stdcall] = ACTIONS(3093), - [anon_sym___fastcall] = ACTIONS(3093), - [anon_sym___thiscall] = ACTIONS(3093), - [anon_sym___vectorcall] = ACTIONS(3093), - [anon_sym_LBRACE] = ACTIONS(3095), - [anon_sym_signed] = ACTIONS(3093), - [anon_sym_unsigned] = ACTIONS(3093), - [anon_sym_long] = ACTIONS(3093), - [anon_sym_short] = ACTIONS(3093), - [anon_sym_LBRACK] = ACTIONS(3093), - [anon_sym_static] = ACTIONS(3093), - [anon_sym_register] = ACTIONS(3093), - [anon_sym_inline] = ACTIONS(3093), - [anon_sym___inline] = ACTIONS(3093), - [anon_sym___inline__] = ACTIONS(3093), - [anon_sym___forceinline] = ACTIONS(3093), - [anon_sym_thread_local] = ACTIONS(3093), - [anon_sym___thread] = ACTIONS(3093), - [anon_sym_const] = ACTIONS(3093), - [anon_sym_constexpr] = ACTIONS(3093), - [anon_sym_volatile] = ACTIONS(3093), - [anon_sym_restrict] = ACTIONS(3093), - [anon_sym___restrict__] = ACTIONS(3093), - [anon_sym__Atomic] = ACTIONS(3093), - [anon_sym__Noreturn] = ACTIONS(3093), - [anon_sym_noreturn] = ACTIONS(3093), - [anon_sym__Nonnull] = ACTIONS(3093), - [anon_sym_mutable] = ACTIONS(3093), - [anon_sym_constinit] = ACTIONS(3093), - [anon_sym_consteval] = ACTIONS(3093), - [anon_sym_alignas] = ACTIONS(3093), - [anon_sym__Alignas] = ACTIONS(3093), - [sym_primitive_type] = ACTIONS(3093), - [anon_sym_enum] = ACTIONS(3093), - [anon_sym_class] = ACTIONS(3093), - [anon_sym_struct] = ACTIONS(3093), - [anon_sym_union] = ACTIONS(3093), - [anon_sym_if] = ACTIONS(3093), - [anon_sym_switch] = ACTIONS(3093), - [anon_sym_case] = ACTIONS(3093), - [anon_sym_default] = ACTIONS(3093), - [anon_sym_while] = ACTIONS(3093), - [anon_sym_do] = ACTIONS(3093), - [anon_sym_for] = ACTIONS(3093), - [anon_sym_return] = ACTIONS(3093), - [anon_sym_break] = ACTIONS(3093), - [anon_sym_continue] = ACTIONS(3093), - [anon_sym_goto] = ACTIONS(3093), - [anon_sym_not] = ACTIONS(3093), - [anon_sym_compl] = ACTIONS(3093), - [anon_sym_DASH_DASH] = ACTIONS(3095), - [anon_sym_PLUS_PLUS] = ACTIONS(3095), - [anon_sym_sizeof] = ACTIONS(3093), - [anon_sym___alignof__] = ACTIONS(3093), - [anon_sym___alignof] = ACTIONS(3093), - [anon_sym__alignof] = ACTIONS(3093), - [anon_sym_alignof] = ACTIONS(3093), - [anon_sym__Alignof] = ACTIONS(3093), - [anon_sym_offsetof] = ACTIONS(3093), - [anon_sym__Generic] = ACTIONS(3093), - [anon_sym_asm] = ACTIONS(3093), - [anon_sym___asm__] = ACTIONS(3093), - [anon_sym___asm] = ACTIONS(3093), - [sym_number_literal] = ACTIONS(3095), - [anon_sym_L_SQUOTE] = ACTIONS(3095), - [anon_sym_u_SQUOTE] = ACTIONS(3095), - [anon_sym_U_SQUOTE] = ACTIONS(3095), - [anon_sym_u8_SQUOTE] = ACTIONS(3095), - [anon_sym_SQUOTE] = ACTIONS(3095), - [anon_sym_L_DQUOTE] = ACTIONS(3095), - [anon_sym_u_DQUOTE] = ACTIONS(3095), - [anon_sym_U_DQUOTE] = ACTIONS(3095), - [anon_sym_u8_DQUOTE] = ACTIONS(3095), - [anon_sym_DQUOTE] = ACTIONS(3095), - [sym_true] = ACTIONS(3093), - [sym_false] = ACTIONS(3093), - [anon_sym_NULL] = ACTIONS(3093), - [anon_sym_nullptr] = ACTIONS(3093), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3093), - [anon_sym_decltype] = ACTIONS(3093), - [anon_sym_explicit] = ACTIONS(3093), - [anon_sym_typename] = ACTIONS(3093), - [anon_sym_export] = ACTIONS(3093), - [anon_sym_module] = ACTIONS(3093), - [anon_sym_import] = ACTIONS(3093), - [anon_sym_template] = ACTIONS(3093), - [anon_sym_operator] = ACTIONS(3093), - [anon_sym_try] = ACTIONS(3093), - [anon_sym_delete] = ACTIONS(3093), - [anon_sym_throw] = ACTIONS(3093), - [anon_sym_namespace] = ACTIONS(3093), - [anon_sym_static_assert] = ACTIONS(3093), - [anon_sym_concept] = ACTIONS(3093), - [anon_sym_co_return] = ACTIONS(3093), - [anon_sym_co_yield] = ACTIONS(3093), - [anon_sym_R_DQUOTE] = ACTIONS(3095), - [anon_sym_LR_DQUOTE] = ACTIONS(3095), - [anon_sym_uR_DQUOTE] = ACTIONS(3095), - [anon_sym_UR_DQUOTE] = ACTIONS(3095), - [anon_sym_u8R_DQUOTE] = ACTIONS(3095), - [anon_sym_co_await] = ACTIONS(3093), - [anon_sym_new] = ACTIONS(3093), - [anon_sym_requires] = ACTIONS(3093), - [sym_this] = ACTIONS(3093), - }, - [586] = { - [sym_identifier] = ACTIONS(2691), - [aux_sym_preproc_include_token1] = ACTIONS(2691), - [aux_sym_preproc_def_token1] = ACTIONS(2691), - [aux_sym_preproc_if_token1] = ACTIONS(2691), - [aux_sym_preproc_if_token2] = ACTIONS(2691), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2691), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2691), - [sym_preproc_directive] = ACTIONS(2691), - [anon_sym_LPAREN2] = ACTIONS(2693), - [anon_sym_BANG] = ACTIONS(2693), - [anon_sym_TILDE] = ACTIONS(2693), - [anon_sym_DASH] = ACTIONS(2691), - [anon_sym_PLUS] = ACTIONS(2691), - [anon_sym_STAR] = ACTIONS(2693), - [anon_sym_AMP_AMP] = ACTIONS(2693), - [anon_sym_AMP] = ACTIONS(2691), - [anon_sym_SEMI] = ACTIONS(2693), - [anon_sym___extension__] = ACTIONS(2691), - [anon_sym_typedef] = ACTIONS(2691), - [anon_sym_virtual] = ACTIONS(2691), - [anon_sym_extern] = ACTIONS(2691), - [anon_sym___attribute__] = ACTIONS(2691), - [anon_sym___attribute] = ACTIONS(2691), - [anon_sym_using] = ACTIONS(2691), - [anon_sym_COLON_COLON] = ACTIONS(2693), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2693), - [anon_sym___declspec] = ACTIONS(2691), - [anon_sym___based] = ACTIONS(2691), - [anon_sym___cdecl] = ACTIONS(2691), - [anon_sym___clrcall] = ACTIONS(2691), - [anon_sym___stdcall] = ACTIONS(2691), - [anon_sym___fastcall] = ACTIONS(2691), - [anon_sym___thiscall] = ACTIONS(2691), - [anon_sym___vectorcall] = ACTIONS(2691), - [anon_sym_LBRACE] = ACTIONS(2693), - [anon_sym_signed] = ACTIONS(2691), - [anon_sym_unsigned] = ACTIONS(2691), - [anon_sym_long] = ACTIONS(2691), - [anon_sym_short] = ACTIONS(2691), - [anon_sym_LBRACK] = ACTIONS(2691), - [anon_sym_static] = ACTIONS(2691), - [anon_sym_register] = ACTIONS(2691), - [anon_sym_inline] = ACTIONS(2691), - [anon_sym___inline] = ACTIONS(2691), - [anon_sym___inline__] = ACTIONS(2691), - [anon_sym___forceinline] = ACTIONS(2691), - [anon_sym_thread_local] = ACTIONS(2691), - [anon_sym___thread] = ACTIONS(2691), - [anon_sym_const] = ACTIONS(2691), - [anon_sym_constexpr] = ACTIONS(2691), - [anon_sym_volatile] = ACTIONS(2691), - [anon_sym_restrict] = ACTIONS(2691), - [anon_sym___restrict__] = ACTIONS(2691), - [anon_sym__Atomic] = ACTIONS(2691), - [anon_sym__Noreturn] = ACTIONS(2691), - [anon_sym_noreturn] = ACTIONS(2691), - [anon_sym__Nonnull] = ACTIONS(2691), - [anon_sym_mutable] = ACTIONS(2691), - [anon_sym_constinit] = ACTIONS(2691), - [anon_sym_consteval] = ACTIONS(2691), - [anon_sym_alignas] = ACTIONS(2691), - [anon_sym__Alignas] = ACTIONS(2691), - [sym_primitive_type] = ACTIONS(2691), - [anon_sym_enum] = ACTIONS(2691), - [anon_sym_class] = ACTIONS(2691), - [anon_sym_struct] = ACTIONS(2691), - [anon_sym_union] = ACTIONS(2691), - [anon_sym_if] = ACTIONS(2691), - [anon_sym_else] = ACTIONS(2691), - [anon_sym_switch] = ACTIONS(2691), - [anon_sym_case] = ACTIONS(2691), - [anon_sym_default] = ACTIONS(2691), - [anon_sym_while] = ACTIONS(2691), - [anon_sym_do] = ACTIONS(2691), - [anon_sym_for] = ACTIONS(2691), - [anon_sym_return] = ACTIONS(2691), - [anon_sym_break] = ACTIONS(2691), - [anon_sym_continue] = ACTIONS(2691), - [anon_sym_goto] = ACTIONS(2691), - [anon_sym___try] = ACTIONS(2691), - [anon_sym___leave] = ACTIONS(2691), - [anon_sym_not] = ACTIONS(2691), - [anon_sym_compl] = ACTIONS(2691), - [anon_sym_DASH_DASH] = ACTIONS(2693), - [anon_sym_PLUS_PLUS] = ACTIONS(2693), - [anon_sym_sizeof] = ACTIONS(2691), - [anon_sym___alignof__] = ACTIONS(2691), - [anon_sym___alignof] = ACTIONS(2691), - [anon_sym__alignof] = ACTIONS(2691), - [anon_sym_alignof] = ACTIONS(2691), - [anon_sym__Alignof] = ACTIONS(2691), - [anon_sym_offsetof] = ACTIONS(2691), - [anon_sym__Generic] = ACTIONS(2691), - [anon_sym_asm] = ACTIONS(2691), - [anon_sym___asm__] = ACTIONS(2691), - [anon_sym___asm] = ACTIONS(2691), - [sym_number_literal] = ACTIONS(2693), - [anon_sym_L_SQUOTE] = ACTIONS(2693), - [anon_sym_u_SQUOTE] = ACTIONS(2693), - [anon_sym_U_SQUOTE] = ACTIONS(2693), - [anon_sym_u8_SQUOTE] = ACTIONS(2693), - [anon_sym_SQUOTE] = ACTIONS(2693), - [anon_sym_L_DQUOTE] = ACTIONS(2693), - [anon_sym_u_DQUOTE] = ACTIONS(2693), - [anon_sym_U_DQUOTE] = ACTIONS(2693), - [anon_sym_u8_DQUOTE] = ACTIONS(2693), - [anon_sym_DQUOTE] = ACTIONS(2693), - [sym_true] = ACTIONS(2691), - [sym_false] = ACTIONS(2691), - [anon_sym_NULL] = ACTIONS(2691), - [anon_sym_nullptr] = ACTIONS(2691), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2691), - [anon_sym_decltype] = ACTIONS(2691), - [anon_sym_explicit] = ACTIONS(2691), - [anon_sym_typename] = ACTIONS(2691), - [anon_sym_template] = ACTIONS(2691), - [anon_sym_operator] = ACTIONS(2691), - [anon_sym_try] = ACTIONS(2691), - [anon_sym_delete] = ACTIONS(2691), - [anon_sym_throw] = ACTIONS(2691), - [anon_sym_namespace] = ACTIONS(2691), - [anon_sym_static_assert] = ACTIONS(2691), - [anon_sym_concept] = ACTIONS(2691), - [anon_sym_co_return] = ACTIONS(2691), - [anon_sym_co_yield] = ACTIONS(2691), - [anon_sym_R_DQUOTE] = ACTIONS(2693), - [anon_sym_LR_DQUOTE] = ACTIONS(2693), - [anon_sym_uR_DQUOTE] = ACTIONS(2693), - [anon_sym_UR_DQUOTE] = ACTIONS(2693), - [anon_sym_u8R_DQUOTE] = ACTIONS(2693), - [anon_sym_co_await] = ACTIONS(2691), - [anon_sym_new] = ACTIONS(2691), - [anon_sym_requires] = ACTIONS(2691), - [sym_this] = ACTIONS(2691), - }, - [587] = { - [sym_preproc_def] = STATE(587), - [sym_preproc_function_def] = STATE(587), - [sym_preproc_call] = STATE(587), - [sym_preproc_if_in_field_declaration_list] = STATE(587), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(587), - [sym_type_definition] = STATE(587), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(5637), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(3005), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6218), - [sym_array_declarator] = STATE(5998), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym__field_declaration_list_item] = STATE(587), - [sym_field_declaration] = STATE(587), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym_explicit_function_specifier] = STATE(1744), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(587), - [sym_operator_cast] = STATE(6834), - [sym_inline_method_definition] = STATE(587), - [sym__constructor_specifiers] = STATE(1744), - [sym_operator_cast_definition] = STATE(587), - [sym_operator_cast_declaration] = STATE(587), - [sym_constructor_or_destructor_definition] = STATE(587), - [sym_constructor_or_destructor_declaration] = STATE(587), - [sym_friend_declaration] = STATE(587), - [sym_access_specifier] = STATE(8733), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(2406), - [sym_template_function] = STATE(5998), - [sym_using_declaration] = STATE(587), - [sym_alias_declaration] = STATE(587), - [sym_static_assert_declaration] = STATE(587), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5478), - [sym_qualified_identifier] = STATE(5998), - [sym_qualified_type_identifier] = STATE(3015), - [sym_qualified_operator_cast_identifier] = STATE(6834), - [sym_operator_name] = STATE(5998), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(587), - [aux_sym__declaration_specifiers_repeat1] = STATE(1993), - [aux_sym_attributed_declarator_repeat1] = STATE(7128), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1744), - [sym_identifier] = ACTIONS(3449), - [aux_sym_preproc_def_token1] = ACTIONS(3452), - [aux_sym_preproc_if_token1] = ACTIONS(3455), - [aux_sym_preproc_if_token2] = ACTIONS(3458), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3460), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3460), - [aux_sym_preproc_else_token1] = ACTIONS(3458), - [aux_sym_preproc_elif_token1] = ACTIONS(3458), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3458), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3458), - [sym_preproc_directive] = ACTIONS(3463), - [anon_sym_LPAREN2] = ACTIONS(3466), - [anon_sym_TILDE] = ACTIONS(3469), - [anon_sym_STAR] = ACTIONS(3472), - [anon_sym_AMP_AMP] = ACTIONS(3475), - [anon_sym_AMP] = ACTIONS(3478), - [anon_sym_SEMI] = ACTIONS(3481), - [anon_sym___extension__] = ACTIONS(3484), - [anon_sym_typedef] = ACTIONS(3487), - [anon_sym_virtual] = ACTIONS(3490), - [anon_sym_extern] = ACTIONS(3493), - [anon_sym___attribute__] = ACTIONS(3496), - [anon_sym___attribute] = ACTIONS(3496), - [anon_sym_using] = ACTIONS(3499), - [anon_sym_COLON_COLON] = ACTIONS(3502), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3505), - [anon_sym___declspec] = ACTIONS(3508), - [anon_sym___based] = ACTIONS(3511), - [anon_sym_signed] = ACTIONS(3514), - [anon_sym_unsigned] = ACTIONS(3514), - [anon_sym_long] = ACTIONS(3514), - [anon_sym_short] = ACTIONS(3514), - [anon_sym_LBRACK] = ACTIONS(3517), - [anon_sym_static] = ACTIONS(3493), - [anon_sym_register] = ACTIONS(3493), - [anon_sym_inline] = ACTIONS(3493), - [anon_sym___inline] = ACTIONS(3493), - [anon_sym___inline__] = ACTIONS(3493), - [anon_sym___forceinline] = ACTIONS(3493), - [anon_sym_thread_local] = ACTIONS(3493), - [anon_sym___thread] = ACTIONS(3493), - [anon_sym_const] = ACTIONS(3520), - [anon_sym_constexpr] = ACTIONS(3523), - [anon_sym_volatile] = ACTIONS(3520), - [anon_sym_restrict] = ACTIONS(3520), - [anon_sym___restrict__] = ACTIONS(3520), - [anon_sym__Atomic] = ACTIONS(3520), - [anon_sym__Noreturn] = ACTIONS(3520), - [anon_sym_noreturn] = ACTIONS(3520), - [anon_sym__Nonnull] = ACTIONS(3520), - [anon_sym_mutable] = ACTIONS(3520), - [anon_sym_constinit] = ACTIONS(3520), - [anon_sym_consteval] = ACTIONS(3520), - [anon_sym_alignas] = ACTIONS(3526), - [anon_sym__Alignas] = ACTIONS(3526), - [sym_primitive_type] = ACTIONS(3529), - [anon_sym_enum] = ACTIONS(3532), - [anon_sym_class] = ACTIONS(3535), - [anon_sym_struct] = ACTIONS(3538), - [anon_sym_union] = ACTIONS(3541), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3544), - [anon_sym_decltype] = ACTIONS(3547), - [anon_sym_explicit] = ACTIONS(3550), - [anon_sym_typename] = ACTIONS(3553), - [anon_sym_private] = ACTIONS(3556), - [anon_sym_template] = ACTIONS(3559), - [anon_sym_operator] = ACTIONS(3562), - [anon_sym_friend] = ACTIONS(3565), - [anon_sym_public] = ACTIONS(3556), - [anon_sym_protected] = ACTIONS(3556), - [anon_sym_static_assert] = ACTIONS(3568), - }, - [588] = { + [596] = { [sym_identifier] = ACTIONS(2643), [aux_sym_preproc_include_token1] = ACTIONS(2643), [aux_sym_preproc_def_token1] = ACTIONS(2643), @@ -127117,5898 +128524,6172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2643), [sym_this] = ACTIONS(2643), }, - [589] = { - [sym_identifier] = ACTIONS(2695), - [aux_sym_preproc_include_token1] = ACTIONS(2695), - [aux_sym_preproc_def_token1] = ACTIONS(2695), - [aux_sym_preproc_if_token1] = ACTIONS(2695), - [aux_sym_preproc_if_token2] = ACTIONS(2695), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2695), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2695), - [sym_preproc_directive] = ACTIONS(2695), - [anon_sym_LPAREN2] = ACTIONS(2697), - [anon_sym_BANG] = ACTIONS(2697), - [anon_sym_TILDE] = ACTIONS(2697), - [anon_sym_DASH] = ACTIONS(2695), - [anon_sym_PLUS] = ACTIONS(2695), - [anon_sym_STAR] = ACTIONS(2697), - [anon_sym_AMP_AMP] = ACTIONS(2697), - [anon_sym_AMP] = ACTIONS(2695), - [anon_sym_SEMI] = ACTIONS(2697), - [anon_sym___extension__] = ACTIONS(2695), - [anon_sym_typedef] = ACTIONS(2695), - [anon_sym_virtual] = ACTIONS(2695), - [anon_sym_extern] = ACTIONS(2695), - [anon_sym___attribute__] = ACTIONS(2695), - [anon_sym___attribute] = ACTIONS(2695), - [anon_sym_using] = ACTIONS(2695), - [anon_sym_COLON_COLON] = ACTIONS(2697), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2697), - [anon_sym___declspec] = ACTIONS(2695), - [anon_sym___based] = ACTIONS(2695), - [anon_sym___cdecl] = ACTIONS(2695), - [anon_sym___clrcall] = ACTIONS(2695), - [anon_sym___stdcall] = ACTIONS(2695), - [anon_sym___fastcall] = ACTIONS(2695), - [anon_sym___thiscall] = ACTIONS(2695), - [anon_sym___vectorcall] = ACTIONS(2695), - [anon_sym_LBRACE] = ACTIONS(2697), - [anon_sym_signed] = ACTIONS(2695), - [anon_sym_unsigned] = ACTIONS(2695), - [anon_sym_long] = ACTIONS(2695), - [anon_sym_short] = ACTIONS(2695), - [anon_sym_LBRACK] = ACTIONS(2695), - [anon_sym_static] = ACTIONS(2695), - [anon_sym_register] = ACTIONS(2695), - [anon_sym_inline] = ACTIONS(2695), - [anon_sym___inline] = ACTIONS(2695), - [anon_sym___inline__] = ACTIONS(2695), - [anon_sym___forceinline] = ACTIONS(2695), - [anon_sym_thread_local] = ACTIONS(2695), - [anon_sym___thread] = ACTIONS(2695), - [anon_sym_const] = ACTIONS(2695), - [anon_sym_constexpr] = ACTIONS(2695), - [anon_sym_volatile] = ACTIONS(2695), - [anon_sym_restrict] = ACTIONS(2695), - [anon_sym___restrict__] = ACTIONS(2695), - [anon_sym__Atomic] = ACTIONS(2695), - [anon_sym__Noreturn] = ACTIONS(2695), - [anon_sym_noreturn] = ACTIONS(2695), - [anon_sym__Nonnull] = ACTIONS(2695), - [anon_sym_mutable] = ACTIONS(2695), - [anon_sym_constinit] = ACTIONS(2695), - [anon_sym_consteval] = ACTIONS(2695), - [anon_sym_alignas] = ACTIONS(2695), - [anon_sym__Alignas] = ACTIONS(2695), - [sym_primitive_type] = ACTIONS(2695), - [anon_sym_enum] = ACTIONS(2695), - [anon_sym_class] = ACTIONS(2695), - [anon_sym_struct] = ACTIONS(2695), - [anon_sym_union] = ACTIONS(2695), - [anon_sym_if] = ACTIONS(2695), - [anon_sym_else] = ACTIONS(2695), - [anon_sym_switch] = ACTIONS(2695), - [anon_sym_case] = ACTIONS(2695), - [anon_sym_default] = ACTIONS(2695), - [anon_sym_while] = ACTIONS(2695), - [anon_sym_do] = ACTIONS(2695), - [anon_sym_for] = ACTIONS(2695), - [anon_sym_return] = ACTIONS(2695), - [anon_sym_break] = ACTIONS(2695), - [anon_sym_continue] = ACTIONS(2695), - [anon_sym_goto] = ACTIONS(2695), - [anon_sym___try] = ACTIONS(2695), - [anon_sym___leave] = ACTIONS(2695), - [anon_sym_not] = ACTIONS(2695), - [anon_sym_compl] = ACTIONS(2695), - [anon_sym_DASH_DASH] = ACTIONS(2697), - [anon_sym_PLUS_PLUS] = ACTIONS(2697), - [anon_sym_sizeof] = ACTIONS(2695), - [anon_sym___alignof__] = ACTIONS(2695), - [anon_sym___alignof] = ACTIONS(2695), - [anon_sym__alignof] = ACTIONS(2695), - [anon_sym_alignof] = ACTIONS(2695), - [anon_sym__Alignof] = ACTIONS(2695), - [anon_sym_offsetof] = ACTIONS(2695), - [anon_sym__Generic] = ACTIONS(2695), - [anon_sym_asm] = ACTIONS(2695), - [anon_sym___asm__] = ACTIONS(2695), - [anon_sym___asm] = ACTIONS(2695), - [sym_number_literal] = ACTIONS(2697), - [anon_sym_L_SQUOTE] = ACTIONS(2697), - [anon_sym_u_SQUOTE] = ACTIONS(2697), - [anon_sym_U_SQUOTE] = ACTIONS(2697), - [anon_sym_u8_SQUOTE] = ACTIONS(2697), - [anon_sym_SQUOTE] = ACTIONS(2697), - [anon_sym_L_DQUOTE] = ACTIONS(2697), - [anon_sym_u_DQUOTE] = ACTIONS(2697), - [anon_sym_U_DQUOTE] = ACTIONS(2697), - [anon_sym_u8_DQUOTE] = ACTIONS(2697), - [anon_sym_DQUOTE] = ACTIONS(2697), - [sym_true] = ACTIONS(2695), - [sym_false] = ACTIONS(2695), - [anon_sym_NULL] = ACTIONS(2695), - [anon_sym_nullptr] = ACTIONS(2695), + [597] = { + [sym_identifier] = ACTIONS(2647), + [aux_sym_preproc_include_token1] = ACTIONS(2647), + [aux_sym_preproc_def_token1] = ACTIONS(2647), + [aux_sym_preproc_if_token1] = ACTIONS(2647), + [aux_sym_preproc_if_token2] = ACTIONS(2647), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2647), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2647), + [sym_preproc_directive] = ACTIONS(2647), + [anon_sym_LPAREN2] = ACTIONS(2649), + [anon_sym_BANG] = ACTIONS(2649), + [anon_sym_TILDE] = ACTIONS(2649), + [anon_sym_DASH] = ACTIONS(2647), + [anon_sym_PLUS] = ACTIONS(2647), + [anon_sym_STAR] = ACTIONS(2649), + [anon_sym_AMP_AMP] = ACTIONS(2649), + [anon_sym_AMP] = ACTIONS(2647), + [anon_sym_SEMI] = ACTIONS(2649), + [anon_sym___extension__] = ACTIONS(2647), + [anon_sym_typedef] = ACTIONS(2647), + [anon_sym_virtual] = ACTIONS(2647), + [anon_sym_extern] = ACTIONS(2647), + [anon_sym___attribute__] = ACTIONS(2647), + [anon_sym___attribute] = ACTIONS(2647), + [anon_sym_using] = ACTIONS(2647), + [anon_sym_COLON_COLON] = ACTIONS(2649), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2649), + [anon_sym___declspec] = ACTIONS(2647), + [anon_sym___based] = ACTIONS(2647), + [anon_sym___cdecl] = ACTIONS(2647), + [anon_sym___clrcall] = ACTIONS(2647), + [anon_sym___stdcall] = ACTIONS(2647), + [anon_sym___fastcall] = ACTIONS(2647), + [anon_sym___thiscall] = ACTIONS(2647), + [anon_sym___vectorcall] = ACTIONS(2647), + [anon_sym_LBRACE] = ACTIONS(2649), + [anon_sym_signed] = ACTIONS(2647), + [anon_sym_unsigned] = ACTIONS(2647), + [anon_sym_long] = ACTIONS(2647), + [anon_sym_short] = ACTIONS(2647), + [anon_sym_LBRACK] = ACTIONS(2647), + [anon_sym_static] = ACTIONS(2647), + [anon_sym_register] = ACTIONS(2647), + [anon_sym_inline] = ACTIONS(2647), + [anon_sym___inline] = ACTIONS(2647), + [anon_sym___inline__] = ACTIONS(2647), + [anon_sym___forceinline] = ACTIONS(2647), + [anon_sym_thread_local] = ACTIONS(2647), + [anon_sym___thread] = ACTIONS(2647), + [anon_sym_const] = ACTIONS(2647), + [anon_sym_constexpr] = ACTIONS(2647), + [anon_sym_volatile] = ACTIONS(2647), + [anon_sym_restrict] = ACTIONS(2647), + [anon_sym___restrict__] = ACTIONS(2647), + [anon_sym__Atomic] = ACTIONS(2647), + [anon_sym__Noreturn] = ACTIONS(2647), + [anon_sym_noreturn] = ACTIONS(2647), + [anon_sym__Nonnull] = ACTIONS(2647), + [anon_sym_mutable] = ACTIONS(2647), + [anon_sym_constinit] = ACTIONS(2647), + [anon_sym_consteval] = ACTIONS(2647), + [anon_sym_alignas] = ACTIONS(2647), + [anon_sym__Alignas] = ACTIONS(2647), + [sym_primitive_type] = ACTIONS(2647), + [anon_sym_enum] = ACTIONS(2647), + [anon_sym_class] = ACTIONS(2647), + [anon_sym_struct] = ACTIONS(2647), + [anon_sym_union] = ACTIONS(2647), + [anon_sym_if] = ACTIONS(2647), + [anon_sym_else] = ACTIONS(2647), + [anon_sym_switch] = ACTIONS(2647), + [anon_sym_case] = ACTIONS(2647), + [anon_sym_default] = ACTIONS(2647), + [anon_sym_while] = ACTIONS(2647), + [anon_sym_do] = ACTIONS(2647), + [anon_sym_for] = ACTIONS(2647), + [anon_sym_return] = ACTIONS(2647), + [anon_sym_break] = ACTIONS(2647), + [anon_sym_continue] = ACTIONS(2647), + [anon_sym_goto] = ACTIONS(2647), + [anon_sym___try] = ACTIONS(2647), + [anon_sym___leave] = ACTIONS(2647), + [anon_sym_not] = ACTIONS(2647), + [anon_sym_compl] = ACTIONS(2647), + [anon_sym_DASH_DASH] = ACTIONS(2649), + [anon_sym_PLUS_PLUS] = ACTIONS(2649), + [anon_sym_sizeof] = ACTIONS(2647), + [anon_sym___alignof__] = ACTIONS(2647), + [anon_sym___alignof] = ACTIONS(2647), + [anon_sym__alignof] = ACTIONS(2647), + [anon_sym_alignof] = ACTIONS(2647), + [anon_sym__Alignof] = ACTIONS(2647), + [anon_sym_offsetof] = ACTIONS(2647), + [anon_sym__Generic] = ACTIONS(2647), + [anon_sym_asm] = ACTIONS(2647), + [anon_sym___asm__] = ACTIONS(2647), + [anon_sym___asm] = ACTIONS(2647), + [sym_number_literal] = ACTIONS(2649), + [anon_sym_L_SQUOTE] = ACTIONS(2649), + [anon_sym_u_SQUOTE] = ACTIONS(2649), + [anon_sym_U_SQUOTE] = ACTIONS(2649), + [anon_sym_u8_SQUOTE] = ACTIONS(2649), + [anon_sym_SQUOTE] = ACTIONS(2649), + [anon_sym_L_DQUOTE] = ACTIONS(2649), + [anon_sym_u_DQUOTE] = ACTIONS(2649), + [anon_sym_U_DQUOTE] = ACTIONS(2649), + [anon_sym_u8_DQUOTE] = ACTIONS(2649), + [anon_sym_DQUOTE] = ACTIONS(2649), + [sym_true] = ACTIONS(2647), + [sym_false] = ACTIONS(2647), + [anon_sym_NULL] = ACTIONS(2647), + [anon_sym_nullptr] = ACTIONS(2647), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2695), - [anon_sym_decltype] = ACTIONS(2695), - [anon_sym_explicit] = ACTIONS(2695), - [anon_sym_typename] = ACTIONS(2695), - [anon_sym_template] = ACTIONS(2695), - [anon_sym_operator] = ACTIONS(2695), - [anon_sym_try] = ACTIONS(2695), - [anon_sym_delete] = ACTIONS(2695), - [anon_sym_throw] = ACTIONS(2695), - [anon_sym_namespace] = ACTIONS(2695), - [anon_sym_static_assert] = ACTIONS(2695), - [anon_sym_concept] = ACTIONS(2695), - [anon_sym_co_return] = ACTIONS(2695), - [anon_sym_co_yield] = ACTIONS(2695), - [anon_sym_R_DQUOTE] = ACTIONS(2697), - [anon_sym_LR_DQUOTE] = ACTIONS(2697), - [anon_sym_uR_DQUOTE] = ACTIONS(2697), - [anon_sym_UR_DQUOTE] = ACTIONS(2697), - [anon_sym_u8R_DQUOTE] = ACTIONS(2697), - [anon_sym_co_await] = ACTIONS(2695), - [anon_sym_new] = ACTIONS(2695), - [anon_sym_requires] = ACTIONS(2695), - [sym_this] = ACTIONS(2695), + [sym_auto] = ACTIONS(2647), + [anon_sym_decltype] = ACTIONS(2647), + [anon_sym_explicit] = ACTIONS(2647), + [anon_sym_typename] = ACTIONS(2647), + [anon_sym_template] = ACTIONS(2647), + [anon_sym_operator] = ACTIONS(2647), + [anon_sym_try] = ACTIONS(2647), + [anon_sym_delete] = ACTIONS(2647), + [anon_sym_throw] = ACTIONS(2647), + [anon_sym_namespace] = ACTIONS(2647), + [anon_sym_static_assert] = ACTIONS(2647), + [anon_sym_concept] = ACTIONS(2647), + [anon_sym_co_return] = ACTIONS(2647), + [anon_sym_co_yield] = ACTIONS(2647), + [anon_sym_R_DQUOTE] = ACTIONS(2649), + [anon_sym_LR_DQUOTE] = ACTIONS(2649), + [anon_sym_uR_DQUOTE] = ACTIONS(2649), + [anon_sym_UR_DQUOTE] = ACTIONS(2649), + [anon_sym_u8R_DQUOTE] = ACTIONS(2649), + [anon_sym_co_await] = ACTIONS(2647), + [anon_sym_new] = ACTIONS(2647), + [anon_sym_requires] = ACTIONS(2647), + [sym_this] = ACTIONS(2647), }, - [590] = { - [ts_builtin_sym_end] = ACTIONS(3571), - [sym_identifier] = ACTIONS(3573), - [aux_sym_preproc_include_token1] = ACTIONS(3573), - [aux_sym_preproc_def_token1] = ACTIONS(3573), - [aux_sym_preproc_if_token1] = ACTIONS(3573), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3573), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3573), - [sym_preproc_directive] = ACTIONS(3573), - [anon_sym_LPAREN2] = ACTIONS(3571), - [anon_sym_BANG] = ACTIONS(3571), - [anon_sym_TILDE] = ACTIONS(3571), - [anon_sym_DASH] = ACTIONS(3573), - [anon_sym_PLUS] = ACTIONS(3573), - [anon_sym_STAR] = ACTIONS(3571), - [anon_sym_AMP_AMP] = ACTIONS(3571), - [anon_sym_AMP] = ACTIONS(3573), - [anon_sym_SEMI] = ACTIONS(3571), - [anon_sym___extension__] = ACTIONS(3573), - [anon_sym_typedef] = ACTIONS(3573), - [anon_sym_virtual] = ACTIONS(3573), - [anon_sym_extern] = ACTIONS(3573), - [anon_sym___attribute__] = ACTIONS(3573), - [anon_sym___attribute] = ACTIONS(3573), - [anon_sym_using] = ACTIONS(3573), - [anon_sym_COLON_COLON] = ACTIONS(3571), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3571), - [anon_sym___declspec] = ACTIONS(3573), - [anon_sym___based] = ACTIONS(3573), - [anon_sym___cdecl] = ACTIONS(3573), - [anon_sym___clrcall] = ACTIONS(3573), - [anon_sym___stdcall] = ACTIONS(3573), - [anon_sym___fastcall] = ACTIONS(3573), - [anon_sym___thiscall] = ACTIONS(3573), - [anon_sym___vectorcall] = ACTIONS(3573), - [anon_sym_LBRACE] = ACTIONS(3571), - [anon_sym_signed] = ACTIONS(3573), - [anon_sym_unsigned] = ACTIONS(3573), - [anon_sym_long] = ACTIONS(3573), - [anon_sym_short] = ACTIONS(3573), - [anon_sym_LBRACK] = ACTIONS(3573), - [anon_sym_static] = ACTIONS(3573), - [anon_sym_register] = ACTIONS(3573), - [anon_sym_inline] = ACTIONS(3573), - [anon_sym___inline] = ACTIONS(3573), - [anon_sym___inline__] = ACTIONS(3573), - [anon_sym___forceinline] = ACTIONS(3573), - [anon_sym_thread_local] = ACTIONS(3573), - [anon_sym___thread] = ACTIONS(3573), - [anon_sym_const] = ACTIONS(3573), - [anon_sym_constexpr] = ACTIONS(3573), - [anon_sym_volatile] = ACTIONS(3573), - [anon_sym_restrict] = ACTIONS(3573), - [anon_sym___restrict__] = ACTIONS(3573), - [anon_sym__Atomic] = ACTIONS(3573), - [anon_sym__Noreturn] = ACTIONS(3573), - [anon_sym_noreturn] = ACTIONS(3573), - [anon_sym__Nonnull] = ACTIONS(3573), - [anon_sym_mutable] = ACTIONS(3573), - [anon_sym_constinit] = ACTIONS(3573), - [anon_sym_consteval] = ACTIONS(3573), - [anon_sym_alignas] = ACTIONS(3573), - [anon_sym__Alignas] = ACTIONS(3573), - [sym_primitive_type] = ACTIONS(3573), - [anon_sym_enum] = ACTIONS(3573), - [anon_sym_class] = ACTIONS(3573), - [anon_sym_struct] = ACTIONS(3573), - [anon_sym_union] = ACTIONS(3573), - [anon_sym_if] = ACTIONS(3573), - [anon_sym_switch] = ACTIONS(3573), - [anon_sym_case] = ACTIONS(3573), - [anon_sym_default] = ACTIONS(3573), - [anon_sym_while] = ACTIONS(3573), - [anon_sym_do] = ACTIONS(3573), - [anon_sym_for] = ACTIONS(3573), - [anon_sym_return] = ACTIONS(3573), - [anon_sym_break] = ACTIONS(3573), - [anon_sym_continue] = ACTIONS(3573), - [anon_sym_goto] = ACTIONS(3573), - [anon_sym_not] = ACTIONS(3573), - [anon_sym_compl] = ACTIONS(3573), - [anon_sym_DASH_DASH] = ACTIONS(3571), - [anon_sym_PLUS_PLUS] = ACTIONS(3571), - [anon_sym_sizeof] = ACTIONS(3573), - [anon_sym___alignof__] = ACTIONS(3573), - [anon_sym___alignof] = ACTIONS(3573), - [anon_sym__alignof] = ACTIONS(3573), - [anon_sym_alignof] = ACTIONS(3573), - [anon_sym__Alignof] = ACTIONS(3573), - [anon_sym_offsetof] = ACTIONS(3573), - [anon_sym__Generic] = ACTIONS(3573), - [anon_sym_asm] = ACTIONS(3573), - [anon_sym___asm__] = ACTIONS(3573), - [anon_sym___asm] = ACTIONS(3573), - [sym_number_literal] = ACTIONS(3571), - [anon_sym_L_SQUOTE] = ACTIONS(3571), - [anon_sym_u_SQUOTE] = ACTIONS(3571), - [anon_sym_U_SQUOTE] = ACTIONS(3571), - [anon_sym_u8_SQUOTE] = ACTIONS(3571), - [anon_sym_SQUOTE] = ACTIONS(3571), - [anon_sym_L_DQUOTE] = ACTIONS(3571), - [anon_sym_u_DQUOTE] = ACTIONS(3571), - [anon_sym_U_DQUOTE] = ACTIONS(3571), - [anon_sym_u8_DQUOTE] = ACTIONS(3571), - [anon_sym_DQUOTE] = ACTIONS(3571), - [sym_true] = ACTIONS(3573), - [sym_false] = ACTIONS(3573), - [anon_sym_NULL] = ACTIONS(3573), - [anon_sym_nullptr] = ACTIONS(3573), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3573), - [anon_sym_decltype] = ACTIONS(3573), - [anon_sym_explicit] = ACTIONS(3573), - [anon_sym_typename] = ACTIONS(3573), - [anon_sym_export] = ACTIONS(3573), - [anon_sym_module] = ACTIONS(3573), - [anon_sym_import] = ACTIONS(3573), - [anon_sym_template] = ACTIONS(3573), - [anon_sym_operator] = ACTIONS(3573), - [anon_sym_try] = ACTIONS(3573), - [anon_sym_delete] = ACTIONS(3573), - [anon_sym_throw] = ACTIONS(3573), - [anon_sym_namespace] = ACTIONS(3573), - [anon_sym_static_assert] = ACTIONS(3573), - [anon_sym_concept] = ACTIONS(3573), - [anon_sym_co_return] = ACTIONS(3573), - [anon_sym_co_yield] = ACTIONS(3573), - [anon_sym_R_DQUOTE] = ACTIONS(3571), - [anon_sym_LR_DQUOTE] = ACTIONS(3571), - [anon_sym_uR_DQUOTE] = ACTIONS(3571), - [anon_sym_UR_DQUOTE] = ACTIONS(3571), - [anon_sym_u8R_DQUOTE] = ACTIONS(3571), - [anon_sym_co_await] = ACTIONS(3573), - [anon_sym_new] = ACTIONS(3573), - [anon_sym_requires] = ACTIONS(3573), - [sym_this] = ACTIONS(3573), + [598] = { + [ts_builtin_sym_end] = ACTIONS(3103), + [sym_identifier] = ACTIONS(3101), + [aux_sym_preproc_include_token1] = ACTIONS(3101), + [aux_sym_preproc_def_token1] = ACTIONS(3101), + [aux_sym_preproc_if_token1] = ACTIONS(3101), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3101), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3101), + [sym_preproc_directive] = ACTIONS(3101), + [anon_sym_LPAREN2] = ACTIONS(3103), + [anon_sym_BANG] = ACTIONS(3103), + [anon_sym_TILDE] = ACTIONS(3103), + [anon_sym_DASH] = ACTIONS(3101), + [anon_sym_PLUS] = ACTIONS(3101), + [anon_sym_STAR] = ACTIONS(3103), + [anon_sym_AMP_AMP] = ACTIONS(3103), + [anon_sym_AMP] = ACTIONS(3101), + [anon_sym_SEMI] = ACTIONS(3103), + [anon_sym___extension__] = ACTIONS(3101), + [anon_sym_typedef] = ACTIONS(3101), + [anon_sym_virtual] = ACTIONS(3101), + [anon_sym_extern] = ACTIONS(3101), + [anon_sym___attribute__] = ACTIONS(3101), + [anon_sym___attribute] = ACTIONS(3101), + [anon_sym_using] = ACTIONS(3101), + [anon_sym_COLON_COLON] = ACTIONS(3103), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3103), + [anon_sym___declspec] = ACTIONS(3101), + [anon_sym___based] = ACTIONS(3101), + [anon_sym___cdecl] = ACTIONS(3101), + [anon_sym___clrcall] = ACTIONS(3101), + [anon_sym___stdcall] = ACTIONS(3101), + [anon_sym___fastcall] = ACTIONS(3101), + [anon_sym___thiscall] = ACTIONS(3101), + [anon_sym___vectorcall] = ACTIONS(3101), + [anon_sym_LBRACE] = ACTIONS(3103), + [anon_sym_signed] = ACTIONS(3101), + [anon_sym_unsigned] = ACTIONS(3101), + [anon_sym_long] = ACTIONS(3101), + [anon_sym_short] = ACTIONS(3101), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_static] = ACTIONS(3101), + [anon_sym_register] = ACTIONS(3101), + [anon_sym_inline] = ACTIONS(3101), + [anon_sym___inline] = ACTIONS(3101), + [anon_sym___inline__] = ACTIONS(3101), + [anon_sym___forceinline] = ACTIONS(3101), + [anon_sym_thread_local] = ACTIONS(3101), + [anon_sym___thread] = ACTIONS(3101), + [anon_sym_const] = ACTIONS(3101), + [anon_sym_constexpr] = ACTIONS(3101), + [anon_sym_volatile] = ACTIONS(3101), + [anon_sym_restrict] = ACTIONS(3101), + [anon_sym___restrict__] = ACTIONS(3101), + [anon_sym__Atomic] = ACTIONS(3101), + [anon_sym__Noreturn] = ACTIONS(3101), + [anon_sym_noreturn] = ACTIONS(3101), + [anon_sym__Nonnull] = ACTIONS(3101), + [anon_sym_mutable] = ACTIONS(3101), + [anon_sym_constinit] = ACTIONS(3101), + [anon_sym_consteval] = ACTIONS(3101), + [anon_sym_alignas] = ACTIONS(3101), + [anon_sym__Alignas] = ACTIONS(3101), + [sym_primitive_type] = ACTIONS(3101), + [anon_sym_enum] = ACTIONS(3101), + [anon_sym_class] = ACTIONS(3101), + [anon_sym_struct] = ACTIONS(3101), + [anon_sym_union] = ACTIONS(3101), + [anon_sym_if] = ACTIONS(3101), + [anon_sym_switch] = ACTIONS(3101), + [anon_sym_case] = ACTIONS(3101), + [anon_sym_default] = ACTIONS(3101), + [anon_sym_while] = ACTIONS(3101), + [anon_sym_do] = ACTIONS(3101), + [anon_sym_for] = ACTIONS(3101), + [anon_sym_return] = ACTIONS(3101), + [anon_sym_break] = ACTIONS(3101), + [anon_sym_continue] = ACTIONS(3101), + [anon_sym_goto] = ACTIONS(3101), + [anon_sym_not] = ACTIONS(3101), + [anon_sym_compl] = ACTIONS(3101), + [anon_sym_DASH_DASH] = ACTIONS(3103), + [anon_sym_PLUS_PLUS] = ACTIONS(3103), + [anon_sym_sizeof] = ACTIONS(3101), + [anon_sym___alignof__] = ACTIONS(3101), + [anon_sym___alignof] = ACTIONS(3101), + [anon_sym__alignof] = ACTIONS(3101), + [anon_sym_alignof] = ACTIONS(3101), + [anon_sym__Alignof] = ACTIONS(3101), + [anon_sym_offsetof] = ACTIONS(3101), + [anon_sym__Generic] = ACTIONS(3101), + [anon_sym_asm] = ACTIONS(3101), + [anon_sym___asm__] = ACTIONS(3101), + [anon_sym___asm] = ACTIONS(3101), + [sym_number_literal] = ACTIONS(3103), + [anon_sym_L_SQUOTE] = ACTIONS(3103), + [anon_sym_u_SQUOTE] = ACTIONS(3103), + [anon_sym_U_SQUOTE] = ACTIONS(3103), + [anon_sym_u8_SQUOTE] = ACTIONS(3103), + [anon_sym_SQUOTE] = ACTIONS(3103), + [anon_sym_L_DQUOTE] = ACTIONS(3103), + [anon_sym_u_DQUOTE] = ACTIONS(3103), + [anon_sym_U_DQUOTE] = ACTIONS(3103), + [anon_sym_u8_DQUOTE] = ACTIONS(3103), + [anon_sym_DQUOTE] = ACTIONS(3103), + [sym_true] = ACTIONS(3101), + [sym_false] = ACTIONS(3101), + [anon_sym_NULL] = ACTIONS(3101), + [anon_sym_nullptr] = ACTIONS(3101), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3101), + [anon_sym_decltype] = ACTIONS(3101), + [anon_sym_explicit] = ACTIONS(3101), + [anon_sym_typename] = ACTIONS(3101), + [anon_sym_export] = ACTIONS(3101), + [anon_sym_module] = ACTIONS(3101), + [anon_sym_import] = ACTIONS(3101), + [anon_sym_template] = ACTIONS(3101), + [anon_sym_operator] = ACTIONS(3101), + [anon_sym_try] = ACTIONS(3101), + [anon_sym_delete] = ACTIONS(3101), + [anon_sym_throw] = ACTIONS(3101), + [anon_sym_namespace] = ACTIONS(3101), + [anon_sym_static_assert] = ACTIONS(3101), + [anon_sym_concept] = ACTIONS(3101), + [anon_sym_co_return] = ACTIONS(3101), + [anon_sym_co_yield] = ACTIONS(3101), + [anon_sym_R_DQUOTE] = ACTIONS(3103), + [anon_sym_LR_DQUOTE] = ACTIONS(3103), + [anon_sym_uR_DQUOTE] = ACTIONS(3103), + [anon_sym_UR_DQUOTE] = ACTIONS(3103), + [anon_sym_u8R_DQUOTE] = ACTIONS(3103), + [anon_sym_co_await] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3101), + [anon_sym_requires] = ACTIONS(3101), + [sym_this] = ACTIONS(3101), }, - [591] = { - [sym_identifier] = ACTIONS(2727), - [aux_sym_preproc_include_token1] = ACTIONS(2727), - [aux_sym_preproc_def_token1] = ACTIONS(2727), - [aux_sym_preproc_if_token1] = ACTIONS(2727), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2727), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2727), - [sym_preproc_directive] = ACTIONS(2727), - [anon_sym_LPAREN2] = ACTIONS(2729), - [anon_sym_BANG] = ACTIONS(2729), - [anon_sym_TILDE] = ACTIONS(2729), - [anon_sym_DASH] = ACTIONS(2727), - [anon_sym_PLUS] = ACTIONS(2727), - [anon_sym_STAR] = ACTIONS(2729), - [anon_sym_AMP_AMP] = ACTIONS(2729), - [anon_sym_AMP] = ACTIONS(2727), - [anon_sym_SEMI] = ACTIONS(2729), - [anon_sym___extension__] = ACTIONS(2727), - [anon_sym_typedef] = ACTIONS(2727), - [anon_sym_virtual] = ACTIONS(2727), - [anon_sym_extern] = ACTIONS(2727), - [anon_sym___attribute__] = ACTIONS(2727), - [anon_sym___attribute] = ACTIONS(2727), - [anon_sym_using] = ACTIONS(2727), - [anon_sym_COLON_COLON] = ACTIONS(2729), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2729), - [anon_sym___declspec] = ACTIONS(2727), - [anon_sym___based] = ACTIONS(2727), - [anon_sym___cdecl] = ACTIONS(2727), - [anon_sym___clrcall] = ACTIONS(2727), - [anon_sym___stdcall] = ACTIONS(2727), - [anon_sym___fastcall] = ACTIONS(2727), - [anon_sym___thiscall] = ACTIONS(2727), - [anon_sym___vectorcall] = ACTIONS(2727), - [anon_sym_LBRACE] = ACTIONS(2729), - [anon_sym_RBRACE] = ACTIONS(2729), - [anon_sym_signed] = ACTIONS(2727), - [anon_sym_unsigned] = ACTIONS(2727), - [anon_sym_long] = ACTIONS(2727), - [anon_sym_short] = ACTIONS(2727), - [anon_sym_LBRACK] = ACTIONS(2727), - [anon_sym_static] = ACTIONS(2727), - [anon_sym_register] = ACTIONS(2727), - [anon_sym_inline] = ACTIONS(2727), - [anon_sym___inline] = ACTIONS(2727), - [anon_sym___inline__] = ACTIONS(2727), - [anon_sym___forceinline] = ACTIONS(2727), - [anon_sym_thread_local] = ACTIONS(2727), - [anon_sym___thread] = ACTIONS(2727), - [anon_sym_const] = ACTIONS(2727), - [anon_sym_constexpr] = ACTIONS(2727), - [anon_sym_volatile] = ACTIONS(2727), - [anon_sym_restrict] = ACTIONS(2727), - [anon_sym___restrict__] = ACTIONS(2727), - [anon_sym__Atomic] = ACTIONS(2727), - [anon_sym__Noreturn] = ACTIONS(2727), - [anon_sym_noreturn] = ACTIONS(2727), - [anon_sym__Nonnull] = ACTIONS(2727), - [anon_sym_mutable] = ACTIONS(2727), - [anon_sym_constinit] = ACTIONS(2727), - [anon_sym_consteval] = ACTIONS(2727), - [anon_sym_alignas] = ACTIONS(2727), - [anon_sym__Alignas] = ACTIONS(2727), - [sym_primitive_type] = ACTIONS(2727), - [anon_sym_enum] = ACTIONS(2727), - [anon_sym_class] = ACTIONS(2727), - [anon_sym_struct] = ACTIONS(2727), - [anon_sym_union] = ACTIONS(2727), - [anon_sym_if] = ACTIONS(2727), - [anon_sym_else] = ACTIONS(2727), - [anon_sym_switch] = ACTIONS(2727), - [anon_sym_case] = ACTIONS(2727), - [anon_sym_default] = ACTIONS(2727), - [anon_sym_while] = ACTIONS(2727), - [anon_sym_do] = ACTIONS(2727), - [anon_sym_for] = ACTIONS(2727), - [anon_sym_return] = ACTIONS(2727), - [anon_sym_break] = ACTIONS(2727), - [anon_sym_continue] = ACTIONS(2727), - [anon_sym_goto] = ACTIONS(2727), - [anon_sym___try] = ACTIONS(2727), - [anon_sym___leave] = ACTIONS(2727), - [anon_sym_not] = ACTIONS(2727), - [anon_sym_compl] = ACTIONS(2727), - [anon_sym_DASH_DASH] = ACTIONS(2729), - [anon_sym_PLUS_PLUS] = ACTIONS(2729), - [anon_sym_sizeof] = ACTIONS(2727), - [anon_sym___alignof__] = ACTIONS(2727), - [anon_sym___alignof] = ACTIONS(2727), - [anon_sym__alignof] = ACTIONS(2727), - [anon_sym_alignof] = ACTIONS(2727), - [anon_sym__Alignof] = ACTIONS(2727), - [anon_sym_offsetof] = ACTIONS(2727), - [anon_sym__Generic] = ACTIONS(2727), - [anon_sym_asm] = ACTIONS(2727), - [anon_sym___asm__] = ACTIONS(2727), - [anon_sym___asm] = ACTIONS(2727), - [sym_number_literal] = ACTIONS(2729), - [anon_sym_L_SQUOTE] = ACTIONS(2729), - [anon_sym_u_SQUOTE] = ACTIONS(2729), - [anon_sym_U_SQUOTE] = ACTIONS(2729), - [anon_sym_u8_SQUOTE] = ACTIONS(2729), - [anon_sym_SQUOTE] = ACTIONS(2729), - [anon_sym_L_DQUOTE] = ACTIONS(2729), - [anon_sym_u_DQUOTE] = ACTIONS(2729), - [anon_sym_U_DQUOTE] = ACTIONS(2729), - [anon_sym_u8_DQUOTE] = ACTIONS(2729), - [anon_sym_DQUOTE] = ACTIONS(2729), - [sym_true] = ACTIONS(2727), - [sym_false] = ACTIONS(2727), - [anon_sym_NULL] = ACTIONS(2727), - [anon_sym_nullptr] = ACTIONS(2727), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2727), - [anon_sym_decltype] = ACTIONS(2727), - [anon_sym_explicit] = ACTIONS(2727), - [anon_sym_typename] = ACTIONS(2727), - [anon_sym_template] = ACTIONS(2727), - [anon_sym_operator] = ACTIONS(2727), - [anon_sym_try] = ACTIONS(2727), - [anon_sym_delete] = ACTIONS(2727), - [anon_sym_throw] = ACTIONS(2727), - [anon_sym_namespace] = ACTIONS(2727), - [anon_sym_static_assert] = ACTIONS(2727), - [anon_sym_concept] = ACTIONS(2727), - [anon_sym_co_return] = ACTIONS(2727), - [anon_sym_co_yield] = ACTIONS(2727), - [anon_sym_R_DQUOTE] = ACTIONS(2729), - [anon_sym_LR_DQUOTE] = ACTIONS(2729), - [anon_sym_uR_DQUOTE] = ACTIONS(2729), - [anon_sym_UR_DQUOTE] = ACTIONS(2729), - [anon_sym_u8R_DQUOTE] = ACTIONS(2729), - [anon_sym_co_await] = ACTIONS(2727), - [anon_sym_new] = ACTIONS(2727), - [anon_sym_requires] = ACTIONS(2727), - [sym_this] = ACTIONS(2727), + [599] = { + [ts_builtin_sym_end] = ACTIONS(3107), + [sym_identifier] = ACTIONS(3105), + [aux_sym_preproc_include_token1] = ACTIONS(3105), + [aux_sym_preproc_def_token1] = ACTIONS(3105), + [aux_sym_preproc_if_token1] = ACTIONS(3105), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3105), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3105), + [sym_preproc_directive] = ACTIONS(3105), + [anon_sym_LPAREN2] = ACTIONS(3107), + [anon_sym_BANG] = ACTIONS(3107), + [anon_sym_TILDE] = ACTIONS(3107), + [anon_sym_DASH] = ACTIONS(3105), + [anon_sym_PLUS] = ACTIONS(3105), + [anon_sym_STAR] = ACTIONS(3107), + [anon_sym_AMP_AMP] = ACTIONS(3107), + [anon_sym_AMP] = ACTIONS(3105), + [anon_sym_SEMI] = ACTIONS(3107), + [anon_sym___extension__] = ACTIONS(3105), + [anon_sym_typedef] = ACTIONS(3105), + [anon_sym_virtual] = ACTIONS(3105), + [anon_sym_extern] = ACTIONS(3105), + [anon_sym___attribute__] = ACTIONS(3105), + [anon_sym___attribute] = ACTIONS(3105), + [anon_sym_using] = ACTIONS(3105), + [anon_sym_COLON_COLON] = ACTIONS(3107), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3107), + [anon_sym___declspec] = ACTIONS(3105), + [anon_sym___based] = ACTIONS(3105), + [anon_sym___cdecl] = ACTIONS(3105), + [anon_sym___clrcall] = ACTIONS(3105), + [anon_sym___stdcall] = ACTIONS(3105), + [anon_sym___fastcall] = ACTIONS(3105), + [anon_sym___thiscall] = ACTIONS(3105), + [anon_sym___vectorcall] = ACTIONS(3105), + [anon_sym_LBRACE] = ACTIONS(3107), + [anon_sym_signed] = ACTIONS(3105), + [anon_sym_unsigned] = ACTIONS(3105), + [anon_sym_long] = ACTIONS(3105), + [anon_sym_short] = ACTIONS(3105), + [anon_sym_LBRACK] = ACTIONS(3105), + [anon_sym_static] = ACTIONS(3105), + [anon_sym_register] = ACTIONS(3105), + [anon_sym_inline] = ACTIONS(3105), + [anon_sym___inline] = ACTIONS(3105), + [anon_sym___inline__] = ACTIONS(3105), + [anon_sym___forceinline] = ACTIONS(3105), + [anon_sym_thread_local] = ACTIONS(3105), + [anon_sym___thread] = ACTIONS(3105), + [anon_sym_const] = ACTIONS(3105), + [anon_sym_constexpr] = ACTIONS(3105), + [anon_sym_volatile] = ACTIONS(3105), + [anon_sym_restrict] = ACTIONS(3105), + [anon_sym___restrict__] = ACTIONS(3105), + [anon_sym__Atomic] = ACTIONS(3105), + [anon_sym__Noreturn] = ACTIONS(3105), + [anon_sym_noreturn] = ACTIONS(3105), + [anon_sym__Nonnull] = ACTIONS(3105), + [anon_sym_mutable] = ACTIONS(3105), + [anon_sym_constinit] = ACTIONS(3105), + [anon_sym_consteval] = ACTIONS(3105), + [anon_sym_alignas] = ACTIONS(3105), + [anon_sym__Alignas] = ACTIONS(3105), + [sym_primitive_type] = ACTIONS(3105), + [anon_sym_enum] = ACTIONS(3105), + [anon_sym_class] = ACTIONS(3105), + [anon_sym_struct] = ACTIONS(3105), + [anon_sym_union] = ACTIONS(3105), + [anon_sym_if] = ACTIONS(3105), + [anon_sym_switch] = ACTIONS(3105), + [anon_sym_case] = ACTIONS(3105), + [anon_sym_default] = ACTIONS(3105), + [anon_sym_while] = ACTIONS(3105), + [anon_sym_do] = ACTIONS(3105), + [anon_sym_for] = ACTIONS(3105), + [anon_sym_return] = ACTIONS(3105), + [anon_sym_break] = ACTIONS(3105), + [anon_sym_continue] = ACTIONS(3105), + [anon_sym_goto] = ACTIONS(3105), + [anon_sym_not] = ACTIONS(3105), + [anon_sym_compl] = ACTIONS(3105), + [anon_sym_DASH_DASH] = ACTIONS(3107), + [anon_sym_PLUS_PLUS] = ACTIONS(3107), + [anon_sym_sizeof] = ACTIONS(3105), + [anon_sym___alignof__] = ACTIONS(3105), + [anon_sym___alignof] = ACTIONS(3105), + [anon_sym__alignof] = ACTIONS(3105), + [anon_sym_alignof] = ACTIONS(3105), + [anon_sym__Alignof] = ACTIONS(3105), + [anon_sym_offsetof] = ACTIONS(3105), + [anon_sym__Generic] = ACTIONS(3105), + [anon_sym_asm] = ACTIONS(3105), + [anon_sym___asm__] = ACTIONS(3105), + [anon_sym___asm] = ACTIONS(3105), + [sym_number_literal] = ACTIONS(3107), + [anon_sym_L_SQUOTE] = ACTIONS(3107), + [anon_sym_u_SQUOTE] = ACTIONS(3107), + [anon_sym_U_SQUOTE] = ACTIONS(3107), + [anon_sym_u8_SQUOTE] = ACTIONS(3107), + [anon_sym_SQUOTE] = ACTIONS(3107), + [anon_sym_L_DQUOTE] = ACTIONS(3107), + [anon_sym_u_DQUOTE] = ACTIONS(3107), + [anon_sym_U_DQUOTE] = ACTIONS(3107), + [anon_sym_u8_DQUOTE] = ACTIONS(3107), + [anon_sym_DQUOTE] = ACTIONS(3107), + [sym_true] = ACTIONS(3105), + [sym_false] = ACTIONS(3105), + [anon_sym_NULL] = ACTIONS(3105), + [anon_sym_nullptr] = ACTIONS(3105), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3105), + [anon_sym_decltype] = ACTIONS(3105), + [anon_sym_explicit] = ACTIONS(3105), + [anon_sym_typename] = ACTIONS(3105), + [anon_sym_export] = ACTIONS(3105), + [anon_sym_module] = ACTIONS(3105), + [anon_sym_import] = ACTIONS(3105), + [anon_sym_template] = ACTIONS(3105), + [anon_sym_operator] = ACTIONS(3105), + [anon_sym_try] = ACTIONS(3105), + [anon_sym_delete] = ACTIONS(3105), + [anon_sym_throw] = ACTIONS(3105), + [anon_sym_namespace] = ACTIONS(3105), + [anon_sym_static_assert] = ACTIONS(3105), + [anon_sym_concept] = ACTIONS(3105), + [anon_sym_co_return] = ACTIONS(3105), + [anon_sym_co_yield] = ACTIONS(3105), + [anon_sym_R_DQUOTE] = ACTIONS(3107), + [anon_sym_LR_DQUOTE] = ACTIONS(3107), + [anon_sym_uR_DQUOTE] = ACTIONS(3107), + [anon_sym_UR_DQUOTE] = ACTIONS(3107), + [anon_sym_u8R_DQUOTE] = ACTIONS(3107), + [anon_sym_co_await] = ACTIONS(3105), + [anon_sym_new] = ACTIONS(3105), + [anon_sym_requires] = ACTIONS(3105), + [sym_this] = ACTIONS(3105), }, - [592] = { - [sym_identifier] = ACTIONS(2719), - [aux_sym_preproc_include_token1] = ACTIONS(2719), - [aux_sym_preproc_def_token1] = ACTIONS(2719), - [aux_sym_preproc_if_token1] = ACTIONS(2719), - [aux_sym_preproc_if_token2] = ACTIONS(2719), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2719), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2719), - [sym_preproc_directive] = ACTIONS(2719), - [anon_sym_LPAREN2] = ACTIONS(2721), - [anon_sym_BANG] = ACTIONS(2721), - [anon_sym_TILDE] = ACTIONS(2721), - [anon_sym_DASH] = ACTIONS(2719), - [anon_sym_PLUS] = ACTIONS(2719), - [anon_sym_STAR] = ACTIONS(2721), - [anon_sym_AMP_AMP] = ACTIONS(2721), - [anon_sym_AMP] = ACTIONS(2719), - [anon_sym_SEMI] = ACTIONS(2721), - [anon_sym___extension__] = ACTIONS(2719), - [anon_sym_typedef] = ACTIONS(2719), - [anon_sym_virtual] = ACTIONS(2719), - [anon_sym_extern] = ACTIONS(2719), - [anon_sym___attribute__] = ACTIONS(2719), - [anon_sym___attribute] = ACTIONS(2719), - [anon_sym_using] = ACTIONS(2719), - [anon_sym_COLON_COLON] = ACTIONS(2721), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2721), - [anon_sym___declspec] = ACTIONS(2719), - [anon_sym___based] = ACTIONS(2719), - [anon_sym___cdecl] = ACTIONS(2719), - [anon_sym___clrcall] = ACTIONS(2719), - [anon_sym___stdcall] = ACTIONS(2719), - [anon_sym___fastcall] = ACTIONS(2719), - [anon_sym___thiscall] = ACTIONS(2719), - [anon_sym___vectorcall] = ACTIONS(2719), - [anon_sym_LBRACE] = ACTIONS(2721), - [anon_sym_signed] = ACTIONS(2719), - [anon_sym_unsigned] = ACTIONS(2719), - [anon_sym_long] = ACTIONS(2719), - [anon_sym_short] = ACTIONS(2719), - [anon_sym_LBRACK] = ACTIONS(2719), - [anon_sym_static] = ACTIONS(2719), - [anon_sym_register] = ACTIONS(2719), - [anon_sym_inline] = ACTIONS(2719), - [anon_sym___inline] = ACTIONS(2719), - [anon_sym___inline__] = ACTIONS(2719), - [anon_sym___forceinline] = ACTIONS(2719), - [anon_sym_thread_local] = ACTIONS(2719), - [anon_sym___thread] = ACTIONS(2719), - [anon_sym_const] = ACTIONS(2719), - [anon_sym_constexpr] = ACTIONS(2719), - [anon_sym_volatile] = ACTIONS(2719), - [anon_sym_restrict] = ACTIONS(2719), - [anon_sym___restrict__] = ACTIONS(2719), - [anon_sym__Atomic] = ACTIONS(2719), - [anon_sym__Noreturn] = ACTIONS(2719), - [anon_sym_noreturn] = ACTIONS(2719), - [anon_sym__Nonnull] = ACTIONS(2719), - [anon_sym_mutable] = ACTIONS(2719), - [anon_sym_constinit] = ACTIONS(2719), - [anon_sym_consteval] = ACTIONS(2719), - [anon_sym_alignas] = ACTIONS(2719), - [anon_sym__Alignas] = ACTIONS(2719), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(2719), - [anon_sym_class] = ACTIONS(2719), - [anon_sym_struct] = ACTIONS(2719), - [anon_sym_union] = ACTIONS(2719), - [anon_sym_if] = ACTIONS(2719), - [anon_sym_else] = ACTIONS(2719), - [anon_sym_switch] = ACTIONS(2719), - [anon_sym_case] = ACTIONS(2719), - [anon_sym_default] = ACTIONS(2719), - [anon_sym_while] = ACTIONS(2719), - [anon_sym_do] = ACTIONS(2719), - [anon_sym_for] = ACTIONS(2719), - [anon_sym_return] = ACTIONS(2719), - [anon_sym_break] = ACTIONS(2719), - [anon_sym_continue] = ACTIONS(2719), - [anon_sym_goto] = ACTIONS(2719), - [anon_sym___try] = ACTIONS(2719), - [anon_sym___leave] = ACTIONS(2719), - [anon_sym_not] = ACTIONS(2719), - [anon_sym_compl] = ACTIONS(2719), - [anon_sym_DASH_DASH] = ACTIONS(2721), - [anon_sym_PLUS_PLUS] = ACTIONS(2721), - [anon_sym_sizeof] = ACTIONS(2719), - [anon_sym___alignof__] = ACTIONS(2719), - [anon_sym___alignof] = ACTIONS(2719), - [anon_sym__alignof] = ACTIONS(2719), - [anon_sym_alignof] = ACTIONS(2719), - [anon_sym__Alignof] = ACTIONS(2719), - [anon_sym_offsetof] = ACTIONS(2719), - [anon_sym__Generic] = ACTIONS(2719), - [anon_sym_asm] = ACTIONS(2719), - [anon_sym___asm__] = ACTIONS(2719), - [anon_sym___asm] = ACTIONS(2719), - [sym_number_literal] = ACTIONS(2721), - [anon_sym_L_SQUOTE] = ACTIONS(2721), - [anon_sym_u_SQUOTE] = ACTIONS(2721), - [anon_sym_U_SQUOTE] = ACTIONS(2721), - [anon_sym_u8_SQUOTE] = ACTIONS(2721), - [anon_sym_SQUOTE] = ACTIONS(2721), - [anon_sym_L_DQUOTE] = ACTIONS(2721), - [anon_sym_u_DQUOTE] = ACTIONS(2721), - [anon_sym_U_DQUOTE] = ACTIONS(2721), - [anon_sym_u8_DQUOTE] = ACTIONS(2721), - [anon_sym_DQUOTE] = ACTIONS(2721), - [sym_true] = ACTIONS(2719), - [sym_false] = ACTIONS(2719), - [anon_sym_NULL] = ACTIONS(2719), - [anon_sym_nullptr] = ACTIONS(2719), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2719), - [anon_sym_decltype] = ACTIONS(2719), - [anon_sym_explicit] = ACTIONS(2719), - [anon_sym_typename] = ACTIONS(2719), - [anon_sym_template] = ACTIONS(2719), - [anon_sym_operator] = ACTIONS(2719), - [anon_sym_try] = ACTIONS(2719), - [anon_sym_delete] = ACTIONS(2719), - [anon_sym_throw] = ACTIONS(2719), - [anon_sym_namespace] = ACTIONS(2719), - [anon_sym_static_assert] = ACTIONS(2719), - [anon_sym_concept] = ACTIONS(2719), - [anon_sym_co_return] = ACTIONS(2719), - [anon_sym_co_yield] = ACTIONS(2719), - [anon_sym_R_DQUOTE] = ACTIONS(2721), - [anon_sym_LR_DQUOTE] = ACTIONS(2721), - [anon_sym_uR_DQUOTE] = ACTIONS(2721), - [anon_sym_UR_DQUOTE] = ACTIONS(2721), - [anon_sym_u8R_DQUOTE] = ACTIONS(2721), - [anon_sym_co_await] = ACTIONS(2719), - [anon_sym_new] = ACTIONS(2719), - [anon_sym_requires] = ACTIONS(2719), - [sym_this] = ACTIONS(2719), + [600] = { + [sym_preproc_def] = STATE(600), + [sym_preproc_function_def] = STATE(600), + [sym_preproc_call] = STATE(600), + [sym_preproc_if_in_field_declaration_list] = STATE(600), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(600), + [sym_type_definition] = STATE(600), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(5688), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(3133), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6303), + [sym_array_declarator] = STATE(6145), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym__field_declaration_list_item] = STATE(600), + [sym_field_declaration] = STATE(600), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym_explicit_function_specifier] = STATE(1845), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(600), + [sym_operator_cast] = STATE(6890), + [sym_inline_method_definition] = STATE(600), + [sym__constructor_specifiers] = STATE(1845), + [sym_operator_cast_definition] = STATE(600), + [sym_operator_cast_declaration] = STATE(600), + [sym_constructor_or_destructor_definition] = STATE(600), + [sym_constructor_or_destructor_declaration] = STATE(600), + [sym_friend_declaration] = STATE(600), + [sym_access_specifier] = STATE(8331), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(2439), + [sym_template_function] = STATE(6145), + [sym_using_declaration] = STATE(600), + [sym_alias_declaration] = STATE(600), + [sym_static_assert_declaration] = STATE(600), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5557), + [sym_qualified_identifier] = STATE(6145), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6890), + [sym_operator_name] = STATE(6145), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(600), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_attributed_declarator_repeat1] = STATE(7195), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1845), + [sym_identifier] = ACTIONS(3473), + [aux_sym_preproc_def_token1] = ACTIONS(3476), + [aux_sym_preproc_if_token1] = ACTIONS(3479), + [aux_sym_preproc_if_token2] = ACTIONS(3482), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3484), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3484), + [aux_sym_preproc_else_token1] = ACTIONS(3482), + [aux_sym_preproc_elif_token1] = ACTIONS(3482), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3482), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3482), + [sym_preproc_directive] = ACTIONS(3487), + [anon_sym_LPAREN2] = ACTIONS(3490), + [anon_sym_TILDE] = ACTIONS(3493), + [anon_sym_STAR] = ACTIONS(3496), + [anon_sym_AMP_AMP] = ACTIONS(3499), + [anon_sym_AMP] = ACTIONS(3502), + [anon_sym_SEMI] = ACTIONS(3505), + [anon_sym___extension__] = ACTIONS(3508), + [anon_sym_typedef] = ACTIONS(3511), + [anon_sym_virtual] = ACTIONS(3514), + [anon_sym_extern] = ACTIONS(3517), + [anon_sym___attribute__] = ACTIONS(3520), + [anon_sym___attribute] = ACTIONS(3520), + [anon_sym_using] = ACTIONS(3523), + [anon_sym_COLON_COLON] = ACTIONS(3526), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3529), + [anon_sym___declspec] = ACTIONS(3532), + [anon_sym___based] = ACTIONS(3535), + [anon_sym_signed] = ACTIONS(3538), + [anon_sym_unsigned] = ACTIONS(3538), + [anon_sym_long] = ACTIONS(3538), + [anon_sym_short] = ACTIONS(3538), + [anon_sym_LBRACK] = ACTIONS(3541), + [anon_sym_static] = ACTIONS(3517), + [anon_sym_register] = ACTIONS(3517), + [anon_sym_inline] = ACTIONS(3517), + [anon_sym___inline] = ACTIONS(3517), + [anon_sym___inline__] = ACTIONS(3517), + [anon_sym___forceinline] = ACTIONS(3517), + [anon_sym_thread_local] = ACTIONS(3517), + [anon_sym___thread] = ACTIONS(3517), + [anon_sym_const] = ACTIONS(3544), + [anon_sym_constexpr] = ACTIONS(3547), + [anon_sym_volatile] = ACTIONS(3544), + [anon_sym_restrict] = ACTIONS(3544), + [anon_sym___restrict__] = ACTIONS(3544), + [anon_sym__Atomic] = ACTIONS(3544), + [anon_sym__Noreturn] = ACTIONS(3544), + [anon_sym_noreturn] = ACTIONS(3544), + [anon_sym__Nonnull] = ACTIONS(3544), + [anon_sym_mutable] = ACTIONS(3544), + [anon_sym_constinit] = ACTIONS(3544), + [anon_sym_consteval] = ACTIONS(3544), + [anon_sym_alignas] = ACTIONS(3550), + [anon_sym__Alignas] = ACTIONS(3550), + [sym_primitive_type] = ACTIONS(3553), + [anon_sym_enum] = ACTIONS(3556), + [anon_sym_class] = ACTIONS(3559), + [anon_sym_struct] = ACTIONS(3562), + [anon_sym_union] = ACTIONS(3565), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3568), + [anon_sym_decltype] = ACTIONS(3571), + [anon_sym_explicit] = ACTIONS(3574), + [anon_sym_typename] = ACTIONS(3577), + [anon_sym_private] = ACTIONS(3580), + [anon_sym_template] = ACTIONS(3583), + [anon_sym_operator] = ACTIONS(3586), + [anon_sym_friend] = ACTIONS(3589), + [anon_sym_public] = ACTIONS(3580), + [anon_sym_protected] = ACTIONS(3580), + [anon_sym_static_assert] = ACTIONS(3592), }, - [593] = { - [ts_builtin_sym_end] = ACTIONS(2861), - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym___attribute] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym__Nonnull] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym__Alignas] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [anon_sym___asm] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), + [601] = { + [sym_identifier] = ACTIONS(2651), + [aux_sym_preproc_include_token1] = ACTIONS(2651), + [aux_sym_preproc_def_token1] = ACTIONS(2651), + [aux_sym_preproc_if_token1] = ACTIONS(2651), + [aux_sym_preproc_if_token2] = ACTIONS(2651), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2651), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2651), + [sym_preproc_directive] = ACTIONS(2651), + [anon_sym_LPAREN2] = ACTIONS(2653), + [anon_sym_BANG] = ACTIONS(2653), + [anon_sym_TILDE] = ACTIONS(2653), + [anon_sym_DASH] = ACTIONS(2651), + [anon_sym_PLUS] = ACTIONS(2651), + [anon_sym_STAR] = ACTIONS(2653), + [anon_sym_AMP_AMP] = ACTIONS(2653), + [anon_sym_AMP] = ACTIONS(2651), + [anon_sym_SEMI] = ACTIONS(2653), + [anon_sym___extension__] = ACTIONS(2651), + [anon_sym_typedef] = ACTIONS(2651), + [anon_sym_virtual] = ACTIONS(2651), + [anon_sym_extern] = ACTIONS(2651), + [anon_sym___attribute__] = ACTIONS(2651), + [anon_sym___attribute] = ACTIONS(2651), + [anon_sym_using] = ACTIONS(2651), + [anon_sym_COLON_COLON] = ACTIONS(2653), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2653), + [anon_sym___declspec] = ACTIONS(2651), + [anon_sym___based] = ACTIONS(2651), + [anon_sym___cdecl] = ACTIONS(2651), + [anon_sym___clrcall] = ACTIONS(2651), + [anon_sym___stdcall] = ACTIONS(2651), + [anon_sym___fastcall] = ACTIONS(2651), + [anon_sym___thiscall] = ACTIONS(2651), + [anon_sym___vectorcall] = ACTIONS(2651), + [anon_sym_LBRACE] = ACTIONS(2653), + [anon_sym_signed] = ACTIONS(2651), + [anon_sym_unsigned] = ACTIONS(2651), + [anon_sym_long] = ACTIONS(2651), + [anon_sym_short] = ACTIONS(2651), + [anon_sym_LBRACK] = ACTIONS(2651), + [anon_sym_static] = ACTIONS(2651), + [anon_sym_register] = ACTIONS(2651), + [anon_sym_inline] = ACTIONS(2651), + [anon_sym___inline] = ACTIONS(2651), + [anon_sym___inline__] = ACTIONS(2651), + [anon_sym___forceinline] = ACTIONS(2651), + [anon_sym_thread_local] = ACTIONS(2651), + [anon_sym___thread] = ACTIONS(2651), + [anon_sym_const] = ACTIONS(2651), + [anon_sym_constexpr] = ACTIONS(2651), + [anon_sym_volatile] = ACTIONS(2651), + [anon_sym_restrict] = ACTIONS(2651), + [anon_sym___restrict__] = ACTIONS(2651), + [anon_sym__Atomic] = ACTIONS(2651), + [anon_sym__Noreturn] = ACTIONS(2651), + [anon_sym_noreturn] = ACTIONS(2651), + [anon_sym__Nonnull] = ACTIONS(2651), + [anon_sym_mutable] = ACTIONS(2651), + [anon_sym_constinit] = ACTIONS(2651), + [anon_sym_consteval] = ACTIONS(2651), + [anon_sym_alignas] = ACTIONS(2651), + [anon_sym__Alignas] = ACTIONS(2651), + [sym_primitive_type] = ACTIONS(2651), + [anon_sym_enum] = ACTIONS(2651), + [anon_sym_class] = ACTIONS(2651), + [anon_sym_struct] = ACTIONS(2651), + [anon_sym_union] = ACTIONS(2651), + [anon_sym_if] = ACTIONS(2651), + [anon_sym_else] = ACTIONS(2651), + [anon_sym_switch] = ACTIONS(2651), + [anon_sym_case] = ACTIONS(2651), + [anon_sym_default] = ACTIONS(2651), + [anon_sym_while] = ACTIONS(2651), + [anon_sym_do] = ACTIONS(2651), + [anon_sym_for] = ACTIONS(2651), + [anon_sym_return] = ACTIONS(2651), + [anon_sym_break] = ACTIONS(2651), + [anon_sym_continue] = ACTIONS(2651), + [anon_sym_goto] = ACTIONS(2651), + [anon_sym___try] = ACTIONS(2651), + [anon_sym___leave] = ACTIONS(2651), + [anon_sym_not] = ACTIONS(2651), + [anon_sym_compl] = ACTIONS(2651), + [anon_sym_DASH_DASH] = ACTIONS(2653), + [anon_sym_PLUS_PLUS] = ACTIONS(2653), + [anon_sym_sizeof] = ACTIONS(2651), + [anon_sym___alignof__] = ACTIONS(2651), + [anon_sym___alignof] = ACTIONS(2651), + [anon_sym__alignof] = ACTIONS(2651), + [anon_sym_alignof] = ACTIONS(2651), + [anon_sym__Alignof] = ACTIONS(2651), + [anon_sym_offsetof] = ACTIONS(2651), + [anon_sym__Generic] = ACTIONS(2651), + [anon_sym_asm] = ACTIONS(2651), + [anon_sym___asm__] = ACTIONS(2651), + [anon_sym___asm] = ACTIONS(2651), + [sym_number_literal] = ACTIONS(2653), + [anon_sym_L_SQUOTE] = ACTIONS(2653), + [anon_sym_u_SQUOTE] = ACTIONS(2653), + [anon_sym_U_SQUOTE] = ACTIONS(2653), + [anon_sym_u8_SQUOTE] = ACTIONS(2653), + [anon_sym_SQUOTE] = ACTIONS(2653), + [anon_sym_L_DQUOTE] = ACTIONS(2653), + [anon_sym_u_DQUOTE] = ACTIONS(2653), + [anon_sym_U_DQUOTE] = ACTIONS(2653), + [anon_sym_u8_DQUOTE] = ACTIONS(2653), + [anon_sym_DQUOTE] = ACTIONS(2653), + [sym_true] = ACTIONS(2651), + [sym_false] = ACTIONS(2651), + [anon_sym_NULL] = ACTIONS(2651), + [anon_sym_nullptr] = ACTIONS(2651), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_export] = ACTIONS(2859), - [anon_sym_module] = ACTIONS(2859), - [anon_sym_import] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), + [sym_auto] = ACTIONS(2651), + [anon_sym_decltype] = ACTIONS(2651), + [anon_sym_explicit] = ACTIONS(2651), + [anon_sym_typename] = ACTIONS(2651), + [anon_sym_template] = ACTIONS(2651), + [anon_sym_operator] = ACTIONS(2651), + [anon_sym_try] = ACTIONS(2651), + [anon_sym_delete] = ACTIONS(2651), + [anon_sym_throw] = ACTIONS(2651), + [anon_sym_namespace] = ACTIONS(2651), + [anon_sym_static_assert] = ACTIONS(2651), + [anon_sym_concept] = ACTIONS(2651), + [anon_sym_co_return] = ACTIONS(2651), + [anon_sym_co_yield] = ACTIONS(2651), + [anon_sym_R_DQUOTE] = ACTIONS(2653), + [anon_sym_LR_DQUOTE] = ACTIONS(2653), + [anon_sym_uR_DQUOTE] = ACTIONS(2653), + [anon_sym_UR_DQUOTE] = ACTIONS(2653), + [anon_sym_u8R_DQUOTE] = ACTIONS(2653), + [anon_sym_co_await] = ACTIONS(2651), + [anon_sym_new] = ACTIONS(2651), + [anon_sym_requires] = ACTIONS(2651), + [sym_this] = ACTIONS(2651), }, - [594] = { - [sym_identifier] = ACTIONS(1940), - [aux_sym_preproc_include_token1] = ACTIONS(1940), - [aux_sym_preproc_def_token1] = ACTIONS(1940), - [anon_sym_COMMA] = ACTIONS(2685), - [aux_sym_preproc_if_token1] = ACTIONS(1940), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1940), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1940), - [sym_preproc_directive] = ACTIONS(1940), - [anon_sym_LPAREN2] = ACTIONS(1938), - [anon_sym_BANG] = ACTIONS(1938), - [anon_sym_TILDE] = ACTIONS(1938), - [anon_sym_DASH] = ACTIONS(1940), - [anon_sym_PLUS] = ACTIONS(1940), - [anon_sym_STAR] = ACTIONS(1938), - [anon_sym_AMP_AMP] = ACTIONS(1938), - [anon_sym_AMP] = ACTIONS(1940), - [anon_sym_SEMI] = ACTIONS(2685), - [anon_sym___extension__] = ACTIONS(1940), - [anon_sym_typedef] = ACTIONS(1940), - [anon_sym_virtual] = ACTIONS(1940), - [anon_sym_extern] = ACTIONS(1940), - [anon_sym___attribute__] = ACTIONS(1940), - [anon_sym___attribute] = ACTIONS(1940), - [anon_sym_using] = ACTIONS(1940), - [anon_sym_COLON_COLON] = ACTIONS(1938), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1938), - [anon_sym___declspec] = ACTIONS(1940), - [anon_sym___based] = ACTIONS(1940), - [anon_sym___cdecl] = ACTIONS(1940), - [anon_sym___clrcall] = ACTIONS(1940), - [anon_sym___stdcall] = ACTIONS(1940), - [anon_sym___fastcall] = ACTIONS(1940), - [anon_sym___thiscall] = ACTIONS(1940), - [anon_sym___vectorcall] = ACTIONS(1940), - [anon_sym_LBRACE] = ACTIONS(1938), - [anon_sym_RBRACE] = ACTIONS(1938), - [anon_sym_signed] = ACTIONS(1940), - [anon_sym_unsigned] = ACTIONS(1940), - [anon_sym_long] = ACTIONS(1940), - [anon_sym_short] = ACTIONS(1940), - [anon_sym_LBRACK] = ACTIONS(1940), - [anon_sym_static] = ACTIONS(1940), - [anon_sym_register] = ACTIONS(1940), - [anon_sym_inline] = ACTIONS(1940), - [anon_sym___inline] = ACTIONS(1940), - [anon_sym___inline__] = ACTIONS(1940), - [anon_sym___forceinline] = ACTIONS(1940), - [anon_sym_thread_local] = ACTIONS(1940), - [anon_sym___thread] = ACTIONS(1940), - [anon_sym_const] = ACTIONS(1940), - [anon_sym_constexpr] = ACTIONS(1940), - [anon_sym_volatile] = ACTIONS(1940), - [anon_sym_restrict] = ACTIONS(1940), - [anon_sym___restrict__] = ACTIONS(1940), - [anon_sym__Atomic] = ACTIONS(1940), - [anon_sym__Noreturn] = ACTIONS(1940), - [anon_sym_noreturn] = ACTIONS(1940), - [anon_sym__Nonnull] = ACTIONS(1940), - [anon_sym_mutable] = ACTIONS(1940), - [anon_sym_constinit] = ACTIONS(1940), - [anon_sym_consteval] = ACTIONS(1940), - [anon_sym_alignas] = ACTIONS(1940), - [anon_sym__Alignas] = ACTIONS(1940), - [sym_primitive_type] = ACTIONS(1940), - [anon_sym_enum] = ACTIONS(1940), - [anon_sym_class] = ACTIONS(1940), - [anon_sym_struct] = ACTIONS(1940), - [anon_sym_union] = ACTIONS(1940), - [anon_sym_if] = ACTIONS(1940), - [anon_sym_switch] = ACTIONS(1940), - [anon_sym_case] = ACTIONS(1940), - [anon_sym_default] = ACTIONS(1940), - [anon_sym_while] = ACTIONS(1940), - [anon_sym_do] = ACTIONS(1940), - [anon_sym_for] = ACTIONS(1940), - [anon_sym_return] = ACTIONS(1940), - [anon_sym_break] = ACTIONS(1940), - [anon_sym_continue] = ACTIONS(1940), - [anon_sym_goto] = ACTIONS(1940), - [anon_sym___try] = ACTIONS(1940), - [anon_sym___leave] = ACTIONS(1940), - [anon_sym_not] = ACTIONS(1940), - [anon_sym_compl] = ACTIONS(1940), - [anon_sym_DASH_DASH] = ACTIONS(1938), - [anon_sym_PLUS_PLUS] = ACTIONS(1938), - [anon_sym_sizeof] = ACTIONS(1940), - [anon_sym___alignof__] = ACTIONS(1940), - [anon_sym___alignof] = ACTIONS(1940), - [anon_sym__alignof] = ACTIONS(1940), - [anon_sym_alignof] = ACTIONS(1940), - [anon_sym__Alignof] = ACTIONS(1940), - [anon_sym_offsetof] = ACTIONS(1940), - [anon_sym__Generic] = ACTIONS(1940), - [anon_sym_asm] = ACTIONS(1940), - [anon_sym___asm__] = ACTIONS(1940), - [anon_sym___asm] = ACTIONS(1940), - [sym_number_literal] = ACTIONS(1938), - [anon_sym_L_SQUOTE] = ACTIONS(1938), - [anon_sym_u_SQUOTE] = ACTIONS(1938), - [anon_sym_U_SQUOTE] = ACTIONS(1938), - [anon_sym_u8_SQUOTE] = ACTIONS(1938), - [anon_sym_SQUOTE] = ACTIONS(1938), - [anon_sym_L_DQUOTE] = ACTIONS(1938), - [anon_sym_u_DQUOTE] = ACTIONS(1938), - [anon_sym_U_DQUOTE] = ACTIONS(1938), - [anon_sym_u8_DQUOTE] = ACTIONS(1938), - [anon_sym_DQUOTE] = ACTIONS(1938), - [sym_true] = ACTIONS(1940), - [sym_false] = ACTIONS(1940), - [anon_sym_NULL] = ACTIONS(1940), - [anon_sym_nullptr] = ACTIONS(1940), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1940), - [anon_sym_decltype] = ACTIONS(1940), - [anon_sym_explicit] = ACTIONS(1940), - [anon_sym_typename] = ACTIONS(1940), - [anon_sym_template] = ACTIONS(1940), - [anon_sym_operator] = ACTIONS(1940), - [anon_sym_try] = ACTIONS(1940), - [anon_sym_delete] = ACTIONS(1940), - [anon_sym_throw] = ACTIONS(1940), - [anon_sym_namespace] = ACTIONS(1940), - [anon_sym_static_assert] = ACTIONS(1940), - [anon_sym_concept] = ACTIONS(1940), - [anon_sym_co_return] = ACTIONS(1940), - [anon_sym_co_yield] = ACTIONS(1940), - [anon_sym_R_DQUOTE] = ACTIONS(1938), - [anon_sym_LR_DQUOTE] = ACTIONS(1938), - [anon_sym_uR_DQUOTE] = ACTIONS(1938), - [anon_sym_UR_DQUOTE] = ACTIONS(1938), - [anon_sym_u8R_DQUOTE] = ACTIONS(1938), - [anon_sym_co_await] = ACTIONS(1940), - [anon_sym_new] = ACTIONS(1940), - [anon_sym_requires] = ACTIONS(1940), - [sym_this] = ACTIONS(1940), - }, - [595] = { - [sym_identifier] = ACTIONS(2711), - [aux_sym_preproc_include_token1] = ACTIONS(2711), - [aux_sym_preproc_def_token1] = ACTIONS(2711), - [aux_sym_preproc_if_token1] = ACTIONS(2711), - [aux_sym_preproc_if_token2] = ACTIONS(2711), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2711), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2711), - [sym_preproc_directive] = ACTIONS(2711), - [anon_sym_LPAREN2] = ACTIONS(2713), - [anon_sym_BANG] = ACTIONS(2713), - [anon_sym_TILDE] = ACTIONS(2713), - [anon_sym_DASH] = ACTIONS(2711), - [anon_sym_PLUS] = ACTIONS(2711), - [anon_sym_STAR] = ACTIONS(2713), - [anon_sym_AMP_AMP] = ACTIONS(2713), - [anon_sym_AMP] = ACTIONS(2711), - [anon_sym_SEMI] = ACTIONS(2713), - [anon_sym___extension__] = ACTIONS(2711), - [anon_sym_typedef] = ACTIONS(2711), - [anon_sym_virtual] = ACTIONS(2711), - [anon_sym_extern] = ACTIONS(2711), - [anon_sym___attribute__] = ACTIONS(2711), - [anon_sym___attribute] = ACTIONS(2711), - [anon_sym_using] = ACTIONS(2711), - [anon_sym_COLON_COLON] = ACTIONS(2713), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2713), - [anon_sym___declspec] = ACTIONS(2711), - [anon_sym___based] = ACTIONS(2711), - [anon_sym___cdecl] = ACTIONS(2711), - [anon_sym___clrcall] = ACTIONS(2711), - [anon_sym___stdcall] = ACTIONS(2711), - [anon_sym___fastcall] = ACTIONS(2711), - [anon_sym___thiscall] = ACTIONS(2711), - [anon_sym___vectorcall] = ACTIONS(2711), - [anon_sym_LBRACE] = ACTIONS(2713), - [anon_sym_signed] = ACTIONS(2711), - [anon_sym_unsigned] = ACTIONS(2711), - [anon_sym_long] = ACTIONS(2711), - [anon_sym_short] = ACTIONS(2711), - [anon_sym_LBRACK] = ACTIONS(2711), - [anon_sym_static] = ACTIONS(2711), - [anon_sym_register] = ACTIONS(2711), - [anon_sym_inline] = ACTIONS(2711), - [anon_sym___inline] = ACTIONS(2711), - [anon_sym___inline__] = ACTIONS(2711), - [anon_sym___forceinline] = ACTIONS(2711), - [anon_sym_thread_local] = ACTIONS(2711), - [anon_sym___thread] = ACTIONS(2711), - [anon_sym_const] = ACTIONS(2711), - [anon_sym_constexpr] = ACTIONS(2711), - [anon_sym_volatile] = ACTIONS(2711), - [anon_sym_restrict] = ACTIONS(2711), - [anon_sym___restrict__] = ACTIONS(2711), - [anon_sym__Atomic] = ACTIONS(2711), - [anon_sym__Noreturn] = ACTIONS(2711), - [anon_sym_noreturn] = ACTIONS(2711), - [anon_sym__Nonnull] = ACTIONS(2711), - [anon_sym_mutable] = ACTIONS(2711), - [anon_sym_constinit] = ACTIONS(2711), - [anon_sym_consteval] = ACTIONS(2711), - [anon_sym_alignas] = ACTIONS(2711), - [anon_sym__Alignas] = ACTIONS(2711), - [sym_primitive_type] = ACTIONS(2711), - [anon_sym_enum] = ACTIONS(2711), - [anon_sym_class] = ACTIONS(2711), - [anon_sym_struct] = ACTIONS(2711), - [anon_sym_union] = ACTIONS(2711), - [anon_sym_if] = ACTIONS(2711), - [anon_sym_else] = ACTIONS(2711), - [anon_sym_switch] = ACTIONS(2711), - [anon_sym_case] = ACTIONS(2711), - [anon_sym_default] = ACTIONS(2711), - [anon_sym_while] = ACTIONS(2711), - [anon_sym_do] = ACTIONS(2711), - [anon_sym_for] = ACTIONS(2711), - [anon_sym_return] = ACTIONS(2711), - [anon_sym_break] = ACTIONS(2711), - [anon_sym_continue] = ACTIONS(2711), - [anon_sym_goto] = ACTIONS(2711), - [anon_sym___try] = ACTIONS(2711), - [anon_sym___leave] = ACTIONS(2711), - [anon_sym_not] = ACTIONS(2711), - [anon_sym_compl] = ACTIONS(2711), - [anon_sym_DASH_DASH] = ACTIONS(2713), - [anon_sym_PLUS_PLUS] = ACTIONS(2713), - [anon_sym_sizeof] = ACTIONS(2711), - [anon_sym___alignof__] = ACTIONS(2711), - [anon_sym___alignof] = ACTIONS(2711), - [anon_sym__alignof] = ACTIONS(2711), - [anon_sym_alignof] = ACTIONS(2711), - [anon_sym__Alignof] = ACTIONS(2711), - [anon_sym_offsetof] = ACTIONS(2711), - [anon_sym__Generic] = ACTIONS(2711), - [anon_sym_asm] = ACTIONS(2711), - [anon_sym___asm__] = ACTIONS(2711), - [anon_sym___asm] = ACTIONS(2711), - [sym_number_literal] = ACTIONS(2713), - [anon_sym_L_SQUOTE] = ACTIONS(2713), - [anon_sym_u_SQUOTE] = ACTIONS(2713), - [anon_sym_U_SQUOTE] = ACTIONS(2713), - [anon_sym_u8_SQUOTE] = ACTIONS(2713), - [anon_sym_SQUOTE] = ACTIONS(2713), - [anon_sym_L_DQUOTE] = ACTIONS(2713), - [anon_sym_u_DQUOTE] = ACTIONS(2713), - [anon_sym_U_DQUOTE] = ACTIONS(2713), - [anon_sym_u8_DQUOTE] = ACTIONS(2713), - [anon_sym_DQUOTE] = ACTIONS(2713), - [sym_true] = ACTIONS(2711), - [sym_false] = ACTIONS(2711), - [anon_sym_NULL] = ACTIONS(2711), - [anon_sym_nullptr] = ACTIONS(2711), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2711), - [anon_sym_decltype] = ACTIONS(2711), - [anon_sym_explicit] = ACTIONS(2711), - [anon_sym_typename] = ACTIONS(2711), - [anon_sym_template] = ACTIONS(2711), - [anon_sym_operator] = ACTIONS(2711), - [anon_sym_try] = ACTIONS(2711), - [anon_sym_delete] = ACTIONS(2711), - [anon_sym_throw] = ACTIONS(2711), - [anon_sym_namespace] = ACTIONS(2711), - [anon_sym_static_assert] = ACTIONS(2711), - [anon_sym_concept] = ACTIONS(2711), - [anon_sym_co_return] = ACTIONS(2711), - [anon_sym_co_yield] = ACTIONS(2711), - [anon_sym_R_DQUOTE] = ACTIONS(2713), - [anon_sym_LR_DQUOTE] = ACTIONS(2713), - [anon_sym_uR_DQUOTE] = ACTIONS(2713), - [anon_sym_UR_DQUOTE] = ACTIONS(2713), - [anon_sym_u8R_DQUOTE] = ACTIONS(2713), - [anon_sym_co_await] = ACTIONS(2711), - [anon_sym_new] = ACTIONS(2711), - [anon_sym_requires] = ACTIONS(2711), - [sym_this] = ACTIONS(2711), + [602] = { + [ts_builtin_sym_end] = ACTIONS(2881), + [sym_identifier] = ACTIONS(2879), + [aux_sym_preproc_include_token1] = ACTIONS(2879), + [aux_sym_preproc_def_token1] = ACTIONS(2879), + [aux_sym_preproc_if_token1] = ACTIONS(2879), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2879), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2879), + [sym_preproc_directive] = ACTIONS(2879), + [anon_sym_LPAREN2] = ACTIONS(2881), + [anon_sym_BANG] = ACTIONS(2881), + [anon_sym_TILDE] = ACTIONS(2881), + [anon_sym_DASH] = ACTIONS(2879), + [anon_sym_PLUS] = ACTIONS(2879), + [anon_sym_STAR] = ACTIONS(2881), + [anon_sym_AMP_AMP] = ACTIONS(2881), + [anon_sym_AMP] = ACTIONS(2879), + [anon_sym_SEMI] = ACTIONS(2881), + [anon_sym___extension__] = ACTIONS(2879), + [anon_sym_typedef] = ACTIONS(2879), + [anon_sym_virtual] = ACTIONS(2879), + [anon_sym_extern] = ACTIONS(2879), + [anon_sym___attribute__] = ACTIONS(2879), + [anon_sym___attribute] = ACTIONS(2879), + [anon_sym_using] = ACTIONS(2879), + [anon_sym_COLON_COLON] = ACTIONS(2881), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2881), + [anon_sym___declspec] = ACTIONS(2879), + [anon_sym___based] = ACTIONS(2879), + [anon_sym___cdecl] = ACTIONS(2879), + [anon_sym___clrcall] = ACTIONS(2879), + [anon_sym___stdcall] = ACTIONS(2879), + [anon_sym___fastcall] = ACTIONS(2879), + [anon_sym___thiscall] = ACTIONS(2879), + [anon_sym___vectorcall] = ACTIONS(2879), + [anon_sym_LBRACE] = ACTIONS(2881), + [anon_sym_signed] = ACTIONS(2879), + [anon_sym_unsigned] = ACTIONS(2879), + [anon_sym_long] = ACTIONS(2879), + [anon_sym_short] = ACTIONS(2879), + [anon_sym_LBRACK] = ACTIONS(2879), + [anon_sym_static] = ACTIONS(2879), + [anon_sym_register] = ACTIONS(2879), + [anon_sym_inline] = ACTIONS(2879), + [anon_sym___inline] = ACTIONS(2879), + [anon_sym___inline__] = ACTIONS(2879), + [anon_sym___forceinline] = ACTIONS(2879), + [anon_sym_thread_local] = ACTIONS(2879), + [anon_sym___thread] = ACTIONS(2879), + [anon_sym_const] = ACTIONS(2879), + [anon_sym_constexpr] = ACTIONS(2879), + [anon_sym_volatile] = ACTIONS(2879), + [anon_sym_restrict] = ACTIONS(2879), + [anon_sym___restrict__] = ACTIONS(2879), + [anon_sym__Atomic] = ACTIONS(2879), + [anon_sym__Noreturn] = ACTIONS(2879), + [anon_sym_noreturn] = ACTIONS(2879), + [anon_sym__Nonnull] = ACTIONS(2879), + [anon_sym_mutable] = ACTIONS(2879), + [anon_sym_constinit] = ACTIONS(2879), + [anon_sym_consteval] = ACTIONS(2879), + [anon_sym_alignas] = ACTIONS(2879), + [anon_sym__Alignas] = ACTIONS(2879), + [sym_primitive_type] = ACTIONS(2879), + [anon_sym_enum] = ACTIONS(2879), + [anon_sym_class] = ACTIONS(2879), + [anon_sym_struct] = ACTIONS(2879), + [anon_sym_union] = ACTIONS(2879), + [anon_sym_if] = ACTIONS(2879), + [anon_sym_switch] = ACTIONS(2879), + [anon_sym_case] = ACTIONS(2879), + [anon_sym_default] = ACTIONS(2879), + [anon_sym_while] = ACTIONS(2879), + [anon_sym_do] = ACTIONS(2879), + [anon_sym_for] = ACTIONS(2879), + [anon_sym_return] = ACTIONS(2879), + [anon_sym_break] = ACTIONS(2879), + [anon_sym_continue] = ACTIONS(2879), + [anon_sym_goto] = ACTIONS(2879), + [anon_sym_not] = ACTIONS(2879), + [anon_sym_compl] = ACTIONS(2879), + [anon_sym_DASH_DASH] = ACTIONS(2881), + [anon_sym_PLUS_PLUS] = ACTIONS(2881), + [anon_sym_sizeof] = ACTIONS(2879), + [anon_sym___alignof__] = ACTIONS(2879), + [anon_sym___alignof] = ACTIONS(2879), + [anon_sym__alignof] = ACTIONS(2879), + [anon_sym_alignof] = ACTIONS(2879), + [anon_sym__Alignof] = ACTIONS(2879), + [anon_sym_offsetof] = ACTIONS(2879), + [anon_sym__Generic] = ACTIONS(2879), + [anon_sym_asm] = ACTIONS(2879), + [anon_sym___asm__] = ACTIONS(2879), + [anon_sym___asm] = ACTIONS(2879), + [sym_number_literal] = ACTIONS(2881), + [anon_sym_L_SQUOTE] = ACTIONS(2881), + [anon_sym_u_SQUOTE] = ACTIONS(2881), + [anon_sym_U_SQUOTE] = ACTIONS(2881), + [anon_sym_u8_SQUOTE] = ACTIONS(2881), + [anon_sym_SQUOTE] = ACTIONS(2881), + [anon_sym_L_DQUOTE] = ACTIONS(2881), + [anon_sym_u_DQUOTE] = ACTIONS(2881), + [anon_sym_U_DQUOTE] = ACTIONS(2881), + [anon_sym_u8_DQUOTE] = ACTIONS(2881), + [anon_sym_DQUOTE] = ACTIONS(2881), + [sym_true] = ACTIONS(2879), + [sym_false] = ACTIONS(2879), + [anon_sym_NULL] = ACTIONS(2879), + [anon_sym_nullptr] = ACTIONS(2879), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2879), + [anon_sym_decltype] = ACTIONS(2879), + [anon_sym_explicit] = ACTIONS(2879), + [anon_sym_typename] = ACTIONS(2879), + [anon_sym_export] = ACTIONS(2879), + [anon_sym_module] = ACTIONS(2879), + [anon_sym_import] = ACTIONS(2879), + [anon_sym_template] = ACTIONS(2879), + [anon_sym_operator] = ACTIONS(2879), + [anon_sym_try] = ACTIONS(2879), + [anon_sym_delete] = ACTIONS(2879), + [anon_sym_throw] = ACTIONS(2879), + [anon_sym_namespace] = ACTIONS(2879), + [anon_sym_static_assert] = ACTIONS(2879), + [anon_sym_concept] = ACTIONS(2879), + [anon_sym_co_return] = ACTIONS(2879), + [anon_sym_co_yield] = ACTIONS(2879), + [anon_sym_R_DQUOTE] = ACTIONS(2881), + [anon_sym_LR_DQUOTE] = ACTIONS(2881), + [anon_sym_uR_DQUOTE] = ACTIONS(2881), + [anon_sym_UR_DQUOTE] = ACTIONS(2881), + [anon_sym_u8R_DQUOTE] = ACTIONS(2881), + [anon_sym_co_await] = ACTIONS(2879), + [anon_sym_new] = ACTIONS(2879), + [anon_sym_requires] = ACTIONS(2879), + [sym_this] = ACTIONS(2879), }, - [596] = { - [sym_identifier] = ACTIONS(2727), - [aux_sym_preproc_include_token1] = ACTIONS(2727), - [aux_sym_preproc_def_token1] = ACTIONS(2727), - [aux_sym_preproc_if_token1] = ACTIONS(2727), - [aux_sym_preproc_if_token2] = ACTIONS(2727), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2727), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2727), - [sym_preproc_directive] = ACTIONS(2727), - [anon_sym_LPAREN2] = ACTIONS(2729), - [anon_sym_BANG] = ACTIONS(2729), - [anon_sym_TILDE] = ACTIONS(2729), - [anon_sym_DASH] = ACTIONS(2727), - [anon_sym_PLUS] = ACTIONS(2727), - [anon_sym_STAR] = ACTIONS(2729), - [anon_sym_AMP_AMP] = ACTIONS(2729), - [anon_sym_AMP] = ACTIONS(2727), - [anon_sym_SEMI] = ACTIONS(2729), - [anon_sym___extension__] = ACTIONS(2727), - [anon_sym_typedef] = ACTIONS(2727), - [anon_sym_virtual] = ACTIONS(2727), - [anon_sym_extern] = ACTIONS(2727), - [anon_sym___attribute__] = ACTIONS(2727), - [anon_sym___attribute] = ACTIONS(2727), - [anon_sym_using] = ACTIONS(2727), - [anon_sym_COLON_COLON] = ACTIONS(2729), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2729), - [anon_sym___declspec] = ACTIONS(2727), - [anon_sym___based] = ACTIONS(2727), - [anon_sym___cdecl] = ACTIONS(2727), - [anon_sym___clrcall] = ACTIONS(2727), - [anon_sym___stdcall] = ACTIONS(2727), - [anon_sym___fastcall] = ACTIONS(2727), - [anon_sym___thiscall] = ACTIONS(2727), - [anon_sym___vectorcall] = ACTIONS(2727), - [anon_sym_LBRACE] = ACTIONS(2729), - [anon_sym_signed] = ACTIONS(2727), - [anon_sym_unsigned] = ACTIONS(2727), - [anon_sym_long] = ACTIONS(2727), - [anon_sym_short] = ACTIONS(2727), - [anon_sym_LBRACK] = ACTIONS(2727), - [anon_sym_static] = ACTIONS(2727), - [anon_sym_register] = ACTIONS(2727), - [anon_sym_inline] = ACTIONS(2727), - [anon_sym___inline] = ACTIONS(2727), - [anon_sym___inline__] = ACTIONS(2727), - [anon_sym___forceinline] = ACTIONS(2727), - [anon_sym_thread_local] = ACTIONS(2727), - [anon_sym___thread] = ACTIONS(2727), - [anon_sym_const] = ACTIONS(2727), - [anon_sym_constexpr] = ACTIONS(2727), - [anon_sym_volatile] = ACTIONS(2727), - [anon_sym_restrict] = ACTIONS(2727), - [anon_sym___restrict__] = ACTIONS(2727), - [anon_sym__Atomic] = ACTIONS(2727), - [anon_sym__Noreturn] = ACTIONS(2727), - [anon_sym_noreturn] = ACTIONS(2727), - [anon_sym__Nonnull] = ACTIONS(2727), - [anon_sym_mutable] = ACTIONS(2727), - [anon_sym_constinit] = ACTIONS(2727), - [anon_sym_consteval] = ACTIONS(2727), - [anon_sym_alignas] = ACTIONS(2727), - [anon_sym__Alignas] = ACTIONS(2727), - [sym_primitive_type] = ACTIONS(2727), - [anon_sym_enum] = ACTIONS(2727), - [anon_sym_class] = ACTIONS(2727), - [anon_sym_struct] = ACTIONS(2727), - [anon_sym_union] = ACTIONS(2727), - [anon_sym_if] = ACTIONS(2727), - [anon_sym_else] = ACTIONS(2727), - [anon_sym_switch] = ACTIONS(2727), - [anon_sym_case] = ACTIONS(2727), - [anon_sym_default] = ACTIONS(2727), - [anon_sym_while] = ACTIONS(2727), - [anon_sym_do] = ACTIONS(2727), - [anon_sym_for] = ACTIONS(2727), - [anon_sym_return] = ACTIONS(2727), - [anon_sym_break] = ACTIONS(2727), - [anon_sym_continue] = ACTIONS(2727), - [anon_sym_goto] = ACTIONS(2727), - [anon_sym___try] = ACTIONS(2727), - [anon_sym___leave] = ACTIONS(2727), - [anon_sym_not] = ACTIONS(2727), - [anon_sym_compl] = ACTIONS(2727), - [anon_sym_DASH_DASH] = ACTIONS(2729), - [anon_sym_PLUS_PLUS] = ACTIONS(2729), - [anon_sym_sizeof] = ACTIONS(2727), - [anon_sym___alignof__] = ACTIONS(2727), - [anon_sym___alignof] = ACTIONS(2727), - [anon_sym__alignof] = ACTIONS(2727), - [anon_sym_alignof] = ACTIONS(2727), - [anon_sym__Alignof] = ACTIONS(2727), - [anon_sym_offsetof] = ACTIONS(2727), - [anon_sym__Generic] = ACTIONS(2727), - [anon_sym_asm] = ACTIONS(2727), - [anon_sym___asm__] = ACTIONS(2727), - [anon_sym___asm] = ACTIONS(2727), - [sym_number_literal] = ACTIONS(2729), - [anon_sym_L_SQUOTE] = ACTIONS(2729), - [anon_sym_u_SQUOTE] = ACTIONS(2729), - [anon_sym_U_SQUOTE] = ACTIONS(2729), - [anon_sym_u8_SQUOTE] = ACTIONS(2729), - [anon_sym_SQUOTE] = ACTIONS(2729), - [anon_sym_L_DQUOTE] = ACTIONS(2729), - [anon_sym_u_DQUOTE] = ACTIONS(2729), - [anon_sym_U_DQUOTE] = ACTIONS(2729), - [anon_sym_u8_DQUOTE] = ACTIONS(2729), - [anon_sym_DQUOTE] = ACTIONS(2729), - [sym_true] = ACTIONS(2727), - [sym_false] = ACTIONS(2727), - [anon_sym_NULL] = ACTIONS(2727), - [anon_sym_nullptr] = ACTIONS(2727), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2727), - [anon_sym_decltype] = ACTIONS(2727), - [anon_sym_explicit] = ACTIONS(2727), - [anon_sym_typename] = ACTIONS(2727), - [anon_sym_template] = ACTIONS(2727), - [anon_sym_operator] = ACTIONS(2727), - [anon_sym_try] = ACTIONS(2727), - [anon_sym_delete] = ACTIONS(2727), - [anon_sym_throw] = ACTIONS(2727), - [anon_sym_namespace] = ACTIONS(2727), - [anon_sym_static_assert] = ACTIONS(2727), - [anon_sym_concept] = ACTIONS(2727), - [anon_sym_co_return] = ACTIONS(2727), - [anon_sym_co_yield] = ACTIONS(2727), - [anon_sym_R_DQUOTE] = ACTIONS(2729), - [anon_sym_LR_DQUOTE] = ACTIONS(2729), - [anon_sym_uR_DQUOTE] = ACTIONS(2729), - [anon_sym_UR_DQUOTE] = ACTIONS(2729), - [anon_sym_u8R_DQUOTE] = ACTIONS(2729), - [anon_sym_co_await] = ACTIONS(2727), - [anon_sym_new] = ACTIONS(2727), - [anon_sym_requires] = ACTIONS(2727), - [sym_this] = ACTIONS(2727), + [603] = { + [ts_builtin_sym_end] = ACTIONS(2785), + [sym_identifier] = ACTIONS(2783), + [aux_sym_preproc_include_token1] = ACTIONS(2783), + [aux_sym_preproc_def_token1] = ACTIONS(2783), + [aux_sym_preproc_if_token1] = ACTIONS(2783), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2783), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2783), + [sym_preproc_directive] = ACTIONS(2783), + [anon_sym_LPAREN2] = ACTIONS(2785), + [anon_sym_BANG] = ACTIONS(2785), + [anon_sym_TILDE] = ACTIONS(2785), + [anon_sym_DASH] = ACTIONS(2783), + [anon_sym_PLUS] = ACTIONS(2783), + [anon_sym_STAR] = ACTIONS(2785), + [anon_sym_AMP_AMP] = ACTIONS(2785), + [anon_sym_AMP] = ACTIONS(2783), + [anon_sym_SEMI] = ACTIONS(2785), + [anon_sym___extension__] = ACTIONS(2783), + [anon_sym_typedef] = ACTIONS(2783), + [anon_sym_virtual] = ACTIONS(2783), + [anon_sym_extern] = ACTIONS(2783), + [anon_sym___attribute__] = ACTIONS(2783), + [anon_sym___attribute] = ACTIONS(2783), + [anon_sym_using] = ACTIONS(2783), + [anon_sym_COLON_COLON] = ACTIONS(2785), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2785), + [anon_sym___declspec] = ACTIONS(2783), + [anon_sym___based] = ACTIONS(2783), + [anon_sym___cdecl] = ACTIONS(2783), + [anon_sym___clrcall] = ACTIONS(2783), + [anon_sym___stdcall] = ACTIONS(2783), + [anon_sym___fastcall] = ACTIONS(2783), + [anon_sym___thiscall] = ACTIONS(2783), + [anon_sym___vectorcall] = ACTIONS(2783), + [anon_sym_LBRACE] = ACTIONS(2785), + [anon_sym_signed] = ACTIONS(2783), + [anon_sym_unsigned] = ACTIONS(2783), + [anon_sym_long] = ACTIONS(2783), + [anon_sym_short] = ACTIONS(2783), + [anon_sym_LBRACK] = ACTIONS(2783), + [anon_sym_static] = ACTIONS(2783), + [anon_sym_register] = ACTIONS(2783), + [anon_sym_inline] = ACTIONS(2783), + [anon_sym___inline] = ACTIONS(2783), + [anon_sym___inline__] = ACTIONS(2783), + [anon_sym___forceinline] = ACTIONS(2783), + [anon_sym_thread_local] = ACTIONS(2783), + [anon_sym___thread] = ACTIONS(2783), + [anon_sym_const] = ACTIONS(2783), + [anon_sym_constexpr] = ACTIONS(2783), + [anon_sym_volatile] = ACTIONS(2783), + [anon_sym_restrict] = ACTIONS(2783), + [anon_sym___restrict__] = ACTIONS(2783), + [anon_sym__Atomic] = ACTIONS(2783), + [anon_sym__Noreturn] = ACTIONS(2783), + [anon_sym_noreturn] = ACTIONS(2783), + [anon_sym__Nonnull] = ACTIONS(2783), + [anon_sym_mutable] = ACTIONS(2783), + [anon_sym_constinit] = ACTIONS(2783), + [anon_sym_consteval] = ACTIONS(2783), + [anon_sym_alignas] = ACTIONS(2783), + [anon_sym__Alignas] = ACTIONS(2783), + [sym_primitive_type] = ACTIONS(2783), + [anon_sym_enum] = ACTIONS(2783), + [anon_sym_class] = ACTIONS(2783), + [anon_sym_struct] = ACTIONS(2783), + [anon_sym_union] = ACTIONS(2783), + [anon_sym_if] = ACTIONS(2783), + [anon_sym_switch] = ACTIONS(2783), + [anon_sym_case] = ACTIONS(2783), + [anon_sym_default] = ACTIONS(2783), + [anon_sym_while] = ACTIONS(2783), + [anon_sym_do] = ACTIONS(2783), + [anon_sym_for] = ACTIONS(2783), + [anon_sym_return] = ACTIONS(2783), + [anon_sym_break] = ACTIONS(2783), + [anon_sym_continue] = ACTIONS(2783), + [anon_sym_goto] = ACTIONS(2783), + [anon_sym_not] = ACTIONS(2783), + [anon_sym_compl] = ACTIONS(2783), + [anon_sym_DASH_DASH] = ACTIONS(2785), + [anon_sym_PLUS_PLUS] = ACTIONS(2785), + [anon_sym_sizeof] = ACTIONS(2783), + [anon_sym___alignof__] = ACTIONS(2783), + [anon_sym___alignof] = ACTIONS(2783), + [anon_sym__alignof] = ACTIONS(2783), + [anon_sym_alignof] = ACTIONS(2783), + [anon_sym__Alignof] = ACTIONS(2783), + [anon_sym_offsetof] = ACTIONS(2783), + [anon_sym__Generic] = ACTIONS(2783), + [anon_sym_asm] = ACTIONS(2783), + [anon_sym___asm__] = ACTIONS(2783), + [anon_sym___asm] = ACTIONS(2783), + [sym_number_literal] = ACTIONS(2785), + [anon_sym_L_SQUOTE] = ACTIONS(2785), + [anon_sym_u_SQUOTE] = ACTIONS(2785), + [anon_sym_U_SQUOTE] = ACTIONS(2785), + [anon_sym_u8_SQUOTE] = ACTIONS(2785), + [anon_sym_SQUOTE] = ACTIONS(2785), + [anon_sym_L_DQUOTE] = ACTIONS(2785), + [anon_sym_u_DQUOTE] = ACTIONS(2785), + [anon_sym_U_DQUOTE] = ACTIONS(2785), + [anon_sym_u8_DQUOTE] = ACTIONS(2785), + [anon_sym_DQUOTE] = ACTIONS(2785), + [sym_true] = ACTIONS(2783), + [sym_false] = ACTIONS(2783), + [anon_sym_NULL] = ACTIONS(2783), + [anon_sym_nullptr] = ACTIONS(2783), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2783), + [anon_sym_decltype] = ACTIONS(2783), + [anon_sym_explicit] = ACTIONS(2783), + [anon_sym_typename] = ACTIONS(2783), + [anon_sym_export] = ACTIONS(2783), + [anon_sym_module] = ACTIONS(2783), + [anon_sym_import] = ACTIONS(2783), + [anon_sym_template] = ACTIONS(2783), + [anon_sym_operator] = ACTIONS(2783), + [anon_sym_try] = ACTIONS(2783), + [anon_sym_delete] = ACTIONS(2783), + [anon_sym_throw] = ACTIONS(2783), + [anon_sym_namespace] = ACTIONS(2783), + [anon_sym_static_assert] = ACTIONS(2783), + [anon_sym_concept] = ACTIONS(2783), + [anon_sym_co_return] = ACTIONS(2783), + [anon_sym_co_yield] = ACTIONS(2783), + [anon_sym_R_DQUOTE] = ACTIONS(2785), + [anon_sym_LR_DQUOTE] = ACTIONS(2785), + [anon_sym_uR_DQUOTE] = ACTIONS(2785), + [anon_sym_UR_DQUOTE] = ACTIONS(2785), + [anon_sym_u8R_DQUOTE] = ACTIONS(2785), + [anon_sym_co_await] = ACTIONS(2783), + [anon_sym_new] = ACTIONS(2783), + [anon_sym_requires] = ACTIONS(2783), + [sym_this] = ACTIONS(2783), }, - [597] = { - [ts_builtin_sym_end] = ACTIONS(3575), - [sym_identifier] = ACTIONS(3577), - [aux_sym_preproc_include_token1] = ACTIONS(3577), - [aux_sym_preproc_def_token1] = ACTIONS(3577), - [aux_sym_preproc_if_token1] = ACTIONS(3577), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3577), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3577), - [sym_preproc_directive] = ACTIONS(3577), - [anon_sym_LPAREN2] = ACTIONS(3575), - [anon_sym_BANG] = ACTIONS(3575), - [anon_sym_TILDE] = ACTIONS(3575), - [anon_sym_DASH] = ACTIONS(3577), - [anon_sym_PLUS] = ACTIONS(3577), - [anon_sym_STAR] = ACTIONS(3575), - [anon_sym_AMP_AMP] = ACTIONS(3575), - [anon_sym_AMP] = ACTIONS(3577), - [anon_sym_SEMI] = ACTIONS(3575), - [anon_sym___extension__] = ACTIONS(3577), - [anon_sym_typedef] = ACTIONS(3577), - [anon_sym_virtual] = ACTIONS(3577), - [anon_sym_extern] = ACTIONS(3577), - [anon_sym___attribute__] = ACTIONS(3577), - [anon_sym___attribute] = ACTIONS(3577), - [anon_sym_using] = ACTIONS(3577), - [anon_sym_COLON_COLON] = ACTIONS(3575), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3575), - [anon_sym___declspec] = ACTIONS(3577), - [anon_sym___based] = ACTIONS(3577), - [anon_sym___cdecl] = ACTIONS(3577), - [anon_sym___clrcall] = ACTIONS(3577), - [anon_sym___stdcall] = ACTIONS(3577), - [anon_sym___fastcall] = ACTIONS(3577), - [anon_sym___thiscall] = ACTIONS(3577), - [anon_sym___vectorcall] = ACTIONS(3577), - [anon_sym_LBRACE] = ACTIONS(3575), - [anon_sym_signed] = ACTIONS(3577), - [anon_sym_unsigned] = ACTIONS(3577), - [anon_sym_long] = ACTIONS(3577), - [anon_sym_short] = ACTIONS(3577), - [anon_sym_LBRACK] = ACTIONS(3577), - [anon_sym_static] = ACTIONS(3577), - [anon_sym_register] = ACTIONS(3577), - [anon_sym_inline] = ACTIONS(3577), - [anon_sym___inline] = ACTIONS(3577), - [anon_sym___inline__] = ACTIONS(3577), - [anon_sym___forceinline] = ACTIONS(3577), - [anon_sym_thread_local] = ACTIONS(3577), - [anon_sym___thread] = ACTIONS(3577), - [anon_sym_const] = ACTIONS(3577), - [anon_sym_constexpr] = ACTIONS(3577), - [anon_sym_volatile] = ACTIONS(3577), - [anon_sym_restrict] = ACTIONS(3577), - [anon_sym___restrict__] = ACTIONS(3577), - [anon_sym__Atomic] = ACTIONS(3577), - [anon_sym__Noreturn] = ACTIONS(3577), - [anon_sym_noreturn] = ACTIONS(3577), - [anon_sym__Nonnull] = ACTIONS(3577), - [anon_sym_mutable] = ACTIONS(3577), - [anon_sym_constinit] = ACTIONS(3577), - [anon_sym_consteval] = ACTIONS(3577), - [anon_sym_alignas] = ACTIONS(3577), - [anon_sym__Alignas] = ACTIONS(3577), - [sym_primitive_type] = ACTIONS(3577), - [anon_sym_enum] = ACTIONS(3577), - [anon_sym_class] = ACTIONS(3577), - [anon_sym_struct] = ACTIONS(3577), - [anon_sym_union] = ACTIONS(3577), - [anon_sym_if] = ACTIONS(3577), - [anon_sym_switch] = ACTIONS(3577), - [anon_sym_case] = ACTIONS(3577), - [anon_sym_default] = ACTIONS(3577), - [anon_sym_while] = ACTIONS(3577), - [anon_sym_do] = ACTIONS(3577), - [anon_sym_for] = ACTIONS(3577), - [anon_sym_return] = ACTIONS(3577), - [anon_sym_break] = ACTIONS(3577), - [anon_sym_continue] = ACTIONS(3577), - [anon_sym_goto] = ACTIONS(3577), - [anon_sym_not] = ACTIONS(3577), - [anon_sym_compl] = ACTIONS(3577), - [anon_sym_DASH_DASH] = ACTIONS(3575), - [anon_sym_PLUS_PLUS] = ACTIONS(3575), - [anon_sym_sizeof] = ACTIONS(3577), - [anon_sym___alignof__] = ACTIONS(3577), - [anon_sym___alignof] = ACTIONS(3577), - [anon_sym__alignof] = ACTIONS(3577), - [anon_sym_alignof] = ACTIONS(3577), - [anon_sym__Alignof] = ACTIONS(3577), - [anon_sym_offsetof] = ACTIONS(3577), - [anon_sym__Generic] = ACTIONS(3577), - [anon_sym_asm] = ACTIONS(3577), - [anon_sym___asm__] = ACTIONS(3577), - [anon_sym___asm] = ACTIONS(3577), - [sym_number_literal] = ACTIONS(3575), - [anon_sym_L_SQUOTE] = ACTIONS(3575), - [anon_sym_u_SQUOTE] = ACTIONS(3575), - [anon_sym_U_SQUOTE] = ACTIONS(3575), - [anon_sym_u8_SQUOTE] = ACTIONS(3575), - [anon_sym_SQUOTE] = ACTIONS(3575), - [anon_sym_L_DQUOTE] = ACTIONS(3575), - [anon_sym_u_DQUOTE] = ACTIONS(3575), - [anon_sym_U_DQUOTE] = ACTIONS(3575), - [anon_sym_u8_DQUOTE] = ACTIONS(3575), - [anon_sym_DQUOTE] = ACTIONS(3575), - [sym_true] = ACTIONS(3577), - [sym_false] = ACTIONS(3577), - [anon_sym_NULL] = ACTIONS(3577), - [anon_sym_nullptr] = ACTIONS(3577), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3577), - [anon_sym_decltype] = ACTIONS(3577), - [anon_sym_explicit] = ACTIONS(3577), - [anon_sym_typename] = ACTIONS(3577), - [anon_sym_export] = ACTIONS(3577), - [anon_sym_module] = ACTIONS(3577), - [anon_sym_import] = ACTIONS(3577), - [anon_sym_template] = ACTIONS(3577), - [anon_sym_operator] = ACTIONS(3577), - [anon_sym_try] = ACTIONS(3577), - [anon_sym_delete] = ACTIONS(3577), - [anon_sym_throw] = ACTIONS(3577), - [anon_sym_namespace] = ACTIONS(3577), - [anon_sym_static_assert] = ACTIONS(3577), - [anon_sym_concept] = ACTIONS(3577), - [anon_sym_co_return] = ACTIONS(3577), - [anon_sym_co_yield] = ACTIONS(3577), - [anon_sym_R_DQUOTE] = ACTIONS(3575), - [anon_sym_LR_DQUOTE] = ACTIONS(3575), - [anon_sym_uR_DQUOTE] = ACTIONS(3575), - [anon_sym_UR_DQUOTE] = ACTIONS(3575), - [anon_sym_u8R_DQUOTE] = ACTIONS(3575), - [anon_sym_co_await] = ACTIONS(3577), - [anon_sym_new] = ACTIONS(3577), - [anon_sym_requires] = ACTIONS(3577), - [sym_this] = ACTIONS(3577), + [604] = { + [sym_identifier] = ACTIONS(2687), + [aux_sym_preproc_include_token1] = ACTIONS(2687), + [aux_sym_preproc_def_token1] = ACTIONS(2687), + [aux_sym_preproc_if_token1] = ACTIONS(2687), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2687), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2687), + [sym_preproc_directive] = ACTIONS(2687), + [anon_sym_LPAREN2] = ACTIONS(2689), + [anon_sym_BANG] = ACTIONS(2689), + [anon_sym_TILDE] = ACTIONS(2689), + [anon_sym_DASH] = ACTIONS(2687), + [anon_sym_PLUS] = ACTIONS(2687), + [anon_sym_STAR] = ACTIONS(2689), + [anon_sym_AMP_AMP] = ACTIONS(2689), + [anon_sym_AMP] = ACTIONS(2687), + [anon_sym_SEMI] = ACTIONS(2689), + [anon_sym___extension__] = ACTIONS(2687), + [anon_sym_typedef] = ACTIONS(2687), + [anon_sym_virtual] = ACTIONS(2687), + [anon_sym_extern] = ACTIONS(2687), + [anon_sym___attribute__] = ACTIONS(2687), + [anon_sym___attribute] = ACTIONS(2687), + [anon_sym_using] = ACTIONS(2687), + [anon_sym_COLON_COLON] = ACTIONS(2689), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2689), + [anon_sym___declspec] = ACTIONS(2687), + [anon_sym___based] = ACTIONS(2687), + [anon_sym___cdecl] = ACTIONS(2687), + [anon_sym___clrcall] = ACTIONS(2687), + [anon_sym___stdcall] = ACTIONS(2687), + [anon_sym___fastcall] = ACTIONS(2687), + [anon_sym___thiscall] = ACTIONS(2687), + [anon_sym___vectorcall] = ACTIONS(2687), + [anon_sym_LBRACE] = ACTIONS(2689), + [anon_sym_RBRACE] = ACTIONS(2689), + [anon_sym_signed] = ACTIONS(2687), + [anon_sym_unsigned] = ACTIONS(2687), + [anon_sym_long] = ACTIONS(2687), + [anon_sym_short] = ACTIONS(2687), + [anon_sym_LBRACK] = ACTIONS(2687), + [anon_sym_static] = ACTIONS(2687), + [anon_sym_register] = ACTIONS(2687), + [anon_sym_inline] = ACTIONS(2687), + [anon_sym___inline] = ACTIONS(2687), + [anon_sym___inline__] = ACTIONS(2687), + [anon_sym___forceinline] = ACTIONS(2687), + [anon_sym_thread_local] = ACTIONS(2687), + [anon_sym___thread] = ACTIONS(2687), + [anon_sym_const] = ACTIONS(2687), + [anon_sym_constexpr] = ACTIONS(2687), + [anon_sym_volatile] = ACTIONS(2687), + [anon_sym_restrict] = ACTIONS(2687), + [anon_sym___restrict__] = ACTIONS(2687), + [anon_sym__Atomic] = ACTIONS(2687), + [anon_sym__Noreturn] = ACTIONS(2687), + [anon_sym_noreturn] = ACTIONS(2687), + [anon_sym__Nonnull] = ACTIONS(2687), + [anon_sym_mutable] = ACTIONS(2687), + [anon_sym_constinit] = ACTIONS(2687), + [anon_sym_consteval] = ACTIONS(2687), + [anon_sym_alignas] = ACTIONS(2687), + [anon_sym__Alignas] = ACTIONS(2687), + [sym_primitive_type] = ACTIONS(2687), + [anon_sym_enum] = ACTIONS(2687), + [anon_sym_class] = ACTIONS(2687), + [anon_sym_struct] = ACTIONS(2687), + [anon_sym_union] = ACTIONS(2687), + [anon_sym_if] = ACTIONS(2687), + [anon_sym_else] = ACTIONS(2687), + [anon_sym_switch] = ACTIONS(2687), + [anon_sym_case] = ACTIONS(2687), + [anon_sym_default] = ACTIONS(2687), + [anon_sym_while] = ACTIONS(2687), + [anon_sym_do] = ACTIONS(2687), + [anon_sym_for] = ACTIONS(2687), + [anon_sym_return] = ACTIONS(2687), + [anon_sym_break] = ACTIONS(2687), + [anon_sym_continue] = ACTIONS(2687), + [anon_sym_goto] = ACTIONS(2687), + [anon_sym___try] = ACTIONS(2687), + [anon_sym___leave] = ACTIONS(2687), + [anon_sym_not] = ACTIONS(2687), + [anon_sym_compl] = ACTIONS(2687), + [anon_sym_DASH_DASH] = ACTIONS(2689), + [anon_sym_PLUS_PLUS] = ACTIONS(2689), + [anon_sym_sizeof] = ACTIONS(2687), + [anon_sym___alignof__] = ACTIONS(2687), + [anon_sym___alignof] = ACTIONS(2687), + [anon_sym__alignof] = ACTIONS(2687), + [anon_sym_alignof] = ACTIONS(2687), + [anon_sym__Alignof] = ACTIONS(2687), + [anon_sym_offsetof] = ACTIONS(2687), + [anon_sym__Generic] = ACTIONS(2687), + [anon_sym_asm] = ACTIONS(2687), + [anon_sym___asm__] = ACTIONS(2687), + [anon_sym___asm] = ACTIONS(2687), + [sym_number_literal] = ACTIONS(2689), + [anon_sym_L_SQUOTE] = ACTIONS(2689), + [anon_sym_u_SQUOTE] = ACTIONS(2689), + [anon_sym_U_SQUOTE] = ACTIONS(2689), + [anon_sym_u8_SQUOTE] = ACTIONS(2689), + [anon_sym_SQUOTE] = ACTIONS(2689), + [anon_sym_L_DQUOTE] = ACTIONS(2689), + [anon_sym_u_DQUOTE] = ACTIONS(2689), + [anon_sym_U_DQUOTE] = ACTIONS(2689), + [anon_sym_u8_DQUOTE] = ACTIONS(2689), + [anon_sym_DQUOTE] = ACTIONS(2689), + [sym_true] = ACTIONS(2687), + [sym_false] = ACTIONS(2687), + [anon_sym_NULL] = ACTIONS(2687), + [anon_sym_nullptr] = ACTIONS(2687), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2687), + [anon_sym_decltype] = ACTIONS(2687), + [anon_sym_explicit] = ACTIONS(2687), + [anon_sym_typename] = ACTIONS(2687), + [anon_sym_template] = ACTIONS(2687), + [anon_sym_operator] = ACTIONS(2687), + [anon_sym_try] = ACTIONS(2687), + [anon_sym_delete] = ACTIONS(2687), + [anon_sym_throw] = ACTIONS(2687), + [anon_sym_namespace] = ACTIONS(2687), + [anon_sym_static_assert] = ACTIONS(2687), + [anon_sym_concept] = ACTIONS(2687), + [anon_sym_co_return] = ACTIONS(2687), + [anon_sym_co_yield] = ACTIONS(2687), + [anon_sym_R_DQUOTE] = ACTIONS(2689), + [anon_sym_LR_DQUOTE] = ACTIONS(2689), + [anon_sym_uR_DQUOTE] = ACTIONS(2689), + [anon_sym_UR_DQUOTE] = ACTIONS(2689), + [anon_sym_u8R_DQUOTE] = ACTIONS(2689), + [anon_sym_co_await] = ACTIONS(2687), + [anon_sym_new] = ACTIONS(2687), + [anon_sym_requires] = ACTIONS(2687), + [sym_this] = ACTIONS(2687), }, - [598] = { - [ts_builtin_sym_end] = ACTIONS(3579), - [sym_identifier] = ACTIONS(3581), - [aux_sym_preproc_include_token1] = ACTIONS(3581), - [aux_sym_preproc_def_token1] = ACTIONS(3581), - [aux_sym_preproc_if_token1] = ACTIONS(3581), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3581), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3581), - [sym_preproc_directive] = ACTIONS(3581), - [anon_sym_LPAREN2] = ACTIONS(3579), - [anon_sym_BANG] = ACTIONS(3579), - [anon_sym_TILDE] = ACTIONS(3579), - [anon_sym_DASH] = ACTIONS(3581), - [anon_sym_PLUS] = ACTIONS(3581), - [anon_sym_STAR] = ACTIONS(3579), - [anon_sym_AMP_AMP] = ACTIONS(3579), - [anon_sym_AMP] = ACTIONS(3581), - [anon_sym_SEMI] = ACTIONS(3579), - [anon_sym___extension__] = ACTIONS(3581), - [anon_sym_typedef] = ACTIONS(3581), - [anon_sym_virtual] = ACTIONS(3581), - [anon_sym_extern] = ACTIONS(3581), - [anon_sym___attribute__] = ACTIONS(3581), - [anon_sym___attribute] = ACTIONS(3581), - [anon_sym_using] = ACTIONS(3581), - [anon_sym_COLON_COLON] = ACTIONS(3579), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3579), - [anon_sym___declspec] = ACTIONS(3581), - [anon_sym___based] = ACTIONS(3581), - [anon_sym___cdecl] = ACTIONS(3581), - [anon_sym___clrcall] = ACTIONS(3581), - [anon_sym___stdcall] = ACTIONS(3581), - [anon_sym___fastcall] = ACTIONS(3581), - [anon_sym___thiscall] = ACTIONS(3581), - [anon_sym___vectorcall] = ACTIONS(3581), - [anon_sym_LBRACE] = ACTIONS(3579), - [anon_sym_signed] = ACTIONS(3581), - [anon_sym_unsigned] = ACTIONS(3581), - [anon_sym_long] = ACTIONS(3581), - [anon_sym_short] = ACTIONS(3581), - [anon_sym_LBRACK] = ACTIONS(3581), - [anon_sym_static] = ACTIONS(3581), - [anon_sym_register] = ACTIONS(3581), - [anon_sym_inline] = ACTIONS(3581), - [anon_sym___inline] = ACTIONS(3581), - [anon_sym___inline__] = ACTIONS(3581), - [anon_sym___forceinline] = ACTIONS(3581), - [anon_sym_thread_local] = ACTIONS(3581), - [anon_sym___thread] = ACTIONS(3581), - [anon_sym_const] = ACTIONS(3581), - [anon_sym_constexpr] = ACTIONS(3581), - [anon_sym_volatile] = ACTIONS(3581), - [anon_sym_restrict] = ACTIONS(3581), - [anon_sym___restrict__] = ACTIONS(3581), - [anon_sym__Atomic] = ACTIONS(3581), - [anon_sym__Noreturn] = ACTIONS(3581), - [anon_sym_noreturn] = ACTIONS(3581), - [anon_sym__Nonnull] = ACTIONS(3581), - [anon_sym_mutable] = ACTIONS(3581), - [anon_sym_constinit] = ACTIONS(3581), - [anon_sym_consteval] = ACTIONS(3581), - [anon_sym_alignas] = ACTIONS(3581), - [anon_sym__Alignas] = ACTIONS(3581), - [sym_primitive_type] = ACTIONS(3581), - [anon_sym_enum] = ACTIONS(3581), - [anon_sym_class] = ACTIONS(3581), - [anon_sym_struct] = ACTIONS(3581), - [anon_sym_union] = ACTIONS(3581), - [anon_sym_if] = ACTIONS(3581), - [anon_sym_switch] = ACTIONS(3581), - [anon_sym_case] = ACTIONS(3581), - [anon_sym_default] = ACTIONS(3581), - [anon_sym_while] = ACTIONS(3581), - [anon_sym_do] = ACTIONS(3581), - [anon_sym_for] = ACTIONS(3581), - [anon_sym_return] = ACTIONS(3581), - [anon_sym_break] = ACTIONS(3581), - [anon_sym_continue] = ACTIONS(3581), - [anon_sym_goto] = ACTIONS(3581), - [anon_sym_not] = ACTIONS(3581), - [anon_sym_compl] = ACTIONS(3581), - [anon_sym_DASH_DASH] = ACTIONS(3579), - [anon_sym_PLUS_PLUS] = ACTIONS(3579), - [anon_sym_sizeof] = ACTIONS(3581), - [anon_sym___alignof__] = ACTIONS(3581), - [anon_sym___alignof] = ACTIONS(3581), - [anon_sym__alignof] = ACTIONS(3581), - [anon_sym_alignof] = ACTIONS(3581), - [anon_sym__Alignof] = ACTIONS(3581), - [anon_sym_offsetof] = ACTIONS(3581), - [anon_sym__Generic] = ACTIONS(3581), - [anon_sym_asm] = ACTIONS(3581), - [anon_sym___asm__] = ACTIONS(3581), - [anon_sym___asm] = ACTIONS(3581), - [sym_number_literal] = ACTIONS(3579), - [anon_sym_L_SQUOTE] = ACTIONS(3579), - [anon_sym_u_SQUOTE] = ACTIONS(3579), - [anon_sym_U_SQUOTE] = ACTIONS(3579), - [anon_sym_u8_SQUOTE] = ACTIONS(3579), - [anon_sym_SQUOTE] = ACTIONS(3579), - [anon_sym_L_DQUOTE] = ACTIONS(3579), - [anon_sym_u_DQUOTE] = ACTIONS(3579), - [anon_sym_U_DQUOTE] = ACTIONS(3579), - [anon_sym_u8_DQUOTE] = ACTIONS(3579), - [anon_sym_DQUOTE] = ACTIONS(3579), - [sym_true] = ACTIONS(3581), - [sym_false] = ACTIONS(3581), - [anon_sym_NULL] = ACTIONS(3581), - [anon_sym_nullptr] = ACTIONS(3581), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3581), - [anon_sym_decltype] = ACTIONS(3581), - [anon_sym_explicit] = ACTIONS(3581), - [anon_sym_typename] = ACTIONS(3581), - [anon_sym_export] = ACTIONS(3581), - [anon_sym_module] = ACTIONS(3581), - [anon_sym_import] = ACTIONS(3581), - [anon_sym_template] = ACTIONS(3581), - [anon_sym_operator] = ACTIONS(3581), - [anon_sym_try] = ACTIONS(3581), - [anon_sym_delete] = ACTIONS(3581), - [anon_sym_throw] = ACTIONS(3581), - [anon_sym_namespace] = ACTIONS(3581), - [anon_sym_static_assert] = ACTIONS(3581), - [anon_sym_concept] = ACTIONS(3581), - [anon_sym_co_return] = ACTIONS(3581), - [anon_sym_co_yield] = ACTIONS(3581), - [anon_sym_R_DQUOTE] = ACTIONS(3579), - [anon_sym_LR_DQUOTE] = ACTIONS(3579), - [anon_sym_uR_DQUOTE] = ACTIONS(3579), - [anon_sym_UR_DQUOTE] = ACTIONS(3579), - [anon_sym_u8R_DQUOTE] = ACTIONS(3579), - [anon_sym_co_await] = ACTIONS(3581), - [anon_sym_new] = ACTIONS(3581), - [anon_sym_requires] = ACTIONS(3581), - [sym_this] = ACTIONS(3581), + [605] = { + [sym_identifier] = ACTIONS(2675), + [aux_sym_preproc_include_token1] = ACTIONS(2675), + [aux_sym_preproc_def_token1] = ACTIONS(2675), + [aux_sym_preproc_if_token1] = ACTIONS(2675), + [aux_sym_preproc_if_token2] = ACTIONS(2675), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2675), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2675), + [sym_preproc_directive] = ACTIONS(2675), + [anon_sym_LPAREN2] = ACTIONS(2677), + [anon_sym_BANG] = ACTIONS(2677), + [anon_sym_TILDE] = ACTIONS(2677), + [anon_sym_DASH] = ACTIONS(2675), + [anon_sym_PLUS] = ACTIONS(2675), + [anon_sym_STAR] = ACTIONS(2677), + [anon_sym_AMP_AMP] = ACTIONS(2677), + [anon_sym_AMP] = ACTIONS(2675), + [anon_sym_SEMI] = ACTIONS(2677), + [anon_sym___extension__] = ACTIONS(2675), + [anon_sym_typedef] = ACTIONS(2675), + [anon_sym_virtual] = ACTIONS(2675), + [anon_sym_extern] = ACTIONS(2675), + [anon_sym___attribute__] = ACTIONS(2675), + [anon_sym___attribute] = ACTIONS(2675), + [anon_sym_using] = ACTIONS(2675), + [anon_sym_COLON_COLON] = ACTIONS(2677), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2677), + [anon_sym___declspec] = ACTIONS(2675), + [anon_sym___based] = ACTIONS(2675), + [anon_sym___cdecl] = ACTIONS(2675), + [anon_sym___clrcall] = ACTIONS(2675), + [anon_sym___stdcall] = ACTIONS(2675), + [anon_sym___fastcall] = ACTIONS(2675), + [anon_sym___thiscall] = ACTIONS(2675), + [anon_sym___vectorcall] = ACTIONS(2675), + [anon_sym_LBRACE] = ACTIONS(2677), + [anon_sym_signed] = ACTIONS(2675), + [anon_sym_unsigned] = ACTIONS(2675), + [anon_sym_long] = ACTIONS(2675), + [anon_sym_short] = ACTIONS(2675), + [anon_sym_LBRACK] = ACTIONS(2675), + [anon_sym_static] = ACTIONS(2675), + [anon_sym_register] = ACTIONS(2675), + [anon_sym_inline] = ACTIONS(2675), + [anon_sym___inline] = ACTIONS(2675), + [anon_sym___inline__] = ACTIONS(2675), + [anon_sym___forceinline] = ACTIONS(2675), + [anon_sym_thread_local] = ACTIONS(2675), + [anon_sym___thread] = ACTIONS(2675), + [anon_sym_const] = ACTIONS(2675), + [anon_sym_constexpr] = ACTIONS(2675), + [anon_sym_volatile] = ACTIONS(2675), + [anon_sym_restrict] = ACTIONS(2675), + [anon_sym___restrict__] = ACTIONS(2675), + [anon_sym__Atomic] = ACTIONS(2675), + [anon_sym__Noreturn] = ACTIONS(2675), + [anon_sym_noreturn] = ACTIONS(2675), + [anon_sym__Nonnull] = ACTIONS(2675), + [anon_sym_mutable] = ACTIONS(2675), + [anon_sym_constinit] = ACTIONS(2675), + [anon_sym_consteval] = ACTIONS(2675), + [anon_sym_alignas] = ACTIONS(2675), + [anon_sym__Alignas] = ACTIONS(2675), + [sym_primitive_type] = ACTIONS(2675), + [anon_sym_enum] = ACTIONS(2675), + [anon_sym_class] = ACTIONS(2675), + [anon_sym_struct] = ACTIONS(2675), + [anon_sym_union] = ACTIONS(2675), + [anon_sym_if] = ACTIONS(2675), + [anon_sym_else] = ACTIONS(2675), + [anon_sym_switch] = ACTIONS(2675), + [anon_sym_case] = ACTIONS(2675), + [anon_sym_default] = ACTIONS(2675), + [anon_sym_while] = ACTIONS(2675), + [anon_sym_do] = ACTIONS(2675), + [anon_sym_for] = ACTIONS(2675), + [anon_sym_return] = ACTIONS(2675), + [anon_sym_break] = ACTIONS(2675), + [anon_sym_continue] = ACTIONS(2675), + [anon_sym_goto] = ACTIONS(2675), + [anon_sym___try] = ACTIONS(2675), + [anon_sym___leave] = ACTIONS(2675), + [anon_sym_not] = ACTIONS(2675), + [anon_sym_compl] = ACTIONS(2675), + [anon_sym_DASH_DASH] = ACTIONS(2677), + [anon_sym_PLUS_PLUS] = ACTIONS(2677), + [anon_sym_sizeof] = ACTIONS(2675), + [anon_sym___alignof__] = ACTIONS(2675), + [anon_sym___alignof] = ACTIONS(2675), + [anon_sym__alignof] = ACTIONS(2675), + [anon_sym_alignof] = ACTIONS(2675), + [anon_sym__Alignof] = ACTIONS(2675), + [anon_sym_offsetof] = ACTIONS(2675), + [anon_sym__Generic] = ACTIONS(2675), + [anon_sym_asm] = ACTIONS(2675), + [anon_sym___asm__] = ACTIONS(2675), + [anon_sym___asm] = ACTIONS(2675), + [sym_number_literal] = ACTIONS(2677), + [anon_sym_L_SQUOTE] = ACTIONS(2677), + [anon_sym_u_SQUOTE] = ACTIONS(2677), + [anon_sym_U_SQUOTE] = ACTIONS(2677), + [anon_sym_u8_SQUOTE] = ACTIONS(2677), + [anon_sym_SQUOTE] = ACTIONS(2677), + [anon_sym_L_DQUOTE] = ACTIONS(2677), + [anon_sym_u_DQUOTE] = ACTIONS(2677), + [anon_sym_U_DQUOTE] = ACTIONS(2677), + [anon_sym_u8_DQUOTE] = ACTIONS(2677), + [anon_sym_DQUOTE] = ACTIONS(2677), + [sym_true] = ACTIONS(2675), + [sym_false] = ACTIONS(2675), + [anon_sym_NULL] = ACTIONS(2675), + [anon_sym_nullptr] = ACTIONS(2675), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2675), + [anon_sym_decltype] = ACTIONS(2675), + [anon_sym_explicit] = ACTIONS(2675), + [anon_sym_typename] = ACTIONS(2675), + [anon_sym_template] = ACTIONS(2675), + [anon_sym_operator] = ACTIONS(2675), + [anon_sym_try] = ACTIONS(2675), + [anon_sym_delete] = ACTIONS(2675), + [anon_sym_throw] = ACTIONS(2675), + [anon_sym_namespace] = ACTIONS(2675), + [anon_sym_static_assert] = ACTIONS(2675), + [anon_sym_concept] = ACTIONS(2675), + [anon_sym_co_return] = ACTIONS(2675), + [anon_sym_co_yield] = ACTIONS(2675), + [anon_sym_R_DQUOTE] = ACTIONS(2677), + [anon_sym_LR_DQUOTE] = ACTIONS(2677), + [anon_sym_uR_DQUOTE] = ACTIONS(2677), + [anon_sym_UR_DQUOTE] = ACTIONS(2677), + [anon_sym_u8R_DQUOTE] = ACTIONS(2677), + [anon_sym_co_await] = ACTIONS(2675), + [anon_sym_new] = ACTIONS(2675), + [anon_sym_requires] = ACTIONS(2675), + [sym_this] = ACTIONS(2675), }, - [599] = { - [ts_builtin_sym_end] = ACTIONS(2873), - [sym_identifier] = ACTIONS(2871), - [aux_sym_preproc_include_token1] = ACTIONS(2871), - [aux_sym_preproc_def_token1] = ACTIONS(2871), - [aux_sym_preproc_if_token1] = ACTIONS(2871), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), - [sym_preproc_directive] = ACTIONS(2871), - [anon_sym_LPAREN2] = ACTIONS(2873), - [anon_sym_BANG] = ACTIONS(2873), - [anon_sym_TILDE] = ACTIONS(2873), - [anon_sym_DASH] = ACTIONS(2871), - [anon_sym_PLUS] = ACTIONS(2871), - [anon_sym_STAR] = ACTIONS(2873), - [anon_sym_AMP_AMP] = ACTIONS(2873), - [anon_sym_AMP] = ACTIONS(2871), - [anon_sym_SEMI] = ACTIONS(2873), - [anon_sym___extension__] = ACTIONS(2871), - [anon_sym_typedef] = ACTIONS(2871), - [anon_sym_virtual] = ACTIONS(2871), - [anon_sym_extern] = ACTIONS(2871), - [anon_sym___attribute__] = ACTIONS(2871), - [anon_sym___attribute] = ACTIONS(2871), - [anon_sym_using] = ACTIONS(2871), - [anon_sym_COLON_COLON] = ACTIONS(2873), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), - [anon_sym___declspec] = ACTIONS(2871), - [anon_sym___based] = ACTIONS(2871), - [anon_sym___cdecl] = ACTIONS(2871), - [anon_sym___clrcall] = ACTIONS(2871), - [anon_sym___stdcall] = ACTIONS(2871), - [anon_sym___fastcall] = ACTIONS(2871), - [anon_sym___thiscall] = ACTIONS(2871), - [anon_sym___vectorcall] = ACTIONS(2871), - [anon_sym_LBRACE] = ACTIONS(2873), - [anon_sym_signed] = ACTIONS(2871), - [anon_sym_unsigned] = ACTIONS(2871), - [anon_sym_long] = ACTIONS(2871), - [anon_sym_short] = ACTIONS(2871), - [anon_sym_LBRACK] = ACTIONS(2871), - [anon_sym_static] = ACTIONS(2871), - [anon_sym_register] = ACTIONS(2871), - [anon_sym_inline] = ACTIONS(2871), - [anon_sym___inline] = ACTIONS(2871), - [anon_sym___inline__] = ACTIONS(2871), - [anon_sym___forceinline] = ACTIONS(2871), - [anon_sym_thread_local] = ACTIONS(2871), - [anon_sym___thread] = ACTIONS(2871), - [anon_sym_const] = ACTIONS(2871), - [anon_sym_constexpr] = ACTIONS(2871), - [anon_sym_volatile] = ACTIONS(2871), - [anon_sym_restrict] = ACTIONS(2871), - [anon_sym___restrict__] = ACTIONS(2871), - [anon_sym__Atomic] = ACTIONS(2871), - [anon_sym__Noreturn] = ACTIONS(2871), - [anon_sym_noreturn] = ACTIONS(2871), - [anon_sym__Nonnull] = ACTIONS(2871), - [anon_sym_mutable] = ACTIONS(2871), - [anon_sym_constinit] = ACTIONS(2871), - [anon_sym_consteval] = ACTIONS(2871), - [anon_sym_alignas] = ACTIONS(2871), - [anon_sym__Alignas] = ACTIONS(2871), - [sym_primitive_type] = ACTIONS(2871), - [anon_sym_enum] = ACTIONS(2871), - [anon_sym_class] = ACTIONS(2871), - [anon_sym_struct] = ACTIONS(2871), - [anon_sym_union] = ACTIONS(2871), - [anon_sym_if] = ACTIONS(2871), - [anon_sym_switch] = ACTIONS(2871), - [anon_sym_case] = ACTIONS(2871), - [anon_sym_default] = ACTIONS(2871), - [anon_sym_while] = ACTIONS(2871), - [anon_sym_do] = ACTIONS(2871), - [anon_sym_for] = ACTIONS(2871), - [anon_sym_return] = ACTIONS(2871), - [anon_sym_break] = ACTIONS(2871), - [anon_sym_continue] = ACTIONS(2871), - [anon_sym_goto] = ACTIONS(2871), - [anon_sym_not] = ACTIONS(2871), - [anon_sym_compl] = ACTIONS(2871), - [anon_sym_DASH_DASH] = ACTIONS(2873), - [anon_sym_PLUS_PLUS] = ACTIONS(2873), - [anon_sym_sizeof] = ACTIONS(2871), - [anon_sym___alignof__] = ACTIONS(2871), - [anon_sym___alignof] = ACTIONS(2871), - [anon_sym__alignof] = ACTIONS(2871), - [anon_sym_alignof] = ACTIONS(2871), - [anon_sym__Alignof] = ACTIONS(2871), - [anon_sym_offsetof] = ACTIONS(2871), - [anon_sym__Generic] = ACTIONS(2871), - [anon_sym_asm] = ACTIONS(2871), - [anon_sym___asm__] = ACTIONS(2871), - [anon_sym___asm] = ACTIONS(2871), - [sym_number_literal] = ACTIONS(2873), - [anon_sym_L_SQUOTE] = ACTIONS(2873), - [anon_sym_u_SQUOTE] = ACTIONS(2873), - [anon_sym_U_SQUOTE] = ACTIONS(2873), - [anon_sym_u8_SQUOTE] = ACTIONS(2873), - [anon_sym_SQUOTE] = ACTIONS(2873), - [anon_sym_L_DQUOTE] = ACTIONS(2873), - [anon_sym_u_DQUOTE] = ACTIONS(2873), - [anon_sym_U_DQUOTE] = ACTIONS(2873), - [anon_sym_u8_DQUOTE] = ACTIONS(2873), - [anon_sym_DQUOTE] = ACTIONS(2873), - [sym_true] = ACTIONS(2871), - [sym_false] = ACTIONS(2871), - [anon_sym_NULL] = ACTIONS(2871), - [anon_sym_nullptr] = ACTIONS(2871), + [606] = { + [ts_builtin_sym_end] = ACTIONS(2909), + [sym_identifier] = ACTIONS(2907), + [aux_sym_preproc_include_token1] = ACTIONS(2907), + [aux_sym_preproc_def_token1] = ACTIONS(2907), + [aux_sym_preproc_if_token1] = ACTIONS(2907), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2907), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2907), + [sym_preproc_directive] = ACTIONS(2907), + [anon_sym_LPAREN2] = ACTIONS(2909), + [anon_sym_BANG] = ACTIONS(2909), + [anon_sym_TILDE] = ACTIONS(2909), + [anon_sym_DASH] = ACTIONS(2907), + [anon_sym_PLUS] = ACTIONS(2907), + [anon_sym_STAR] = ACTIONS(2909), + [anon_sym_AMP_AMP] = ACTIONS(2909), + [anon_sym_AMP] = ACTIONS(2907), + [anon_sym_SEMI] = ACTIONS(2909), + [anon_sym___extension__] = ACTIONS(2907), + [anon_sym_typedef] = ACTIONS(2907), + [anon_sym_virtual] = ACTIONS(2907), + [anon_sym_extern] = ACTIONS(2907), + [anon_sym___attribute__] = ACTIONS(2907), + [anon_sym___attribute] = ACTIONS(2907), + [anon_sym_using] = ACTIONS(2907), + [anon_sym_COLON_COLON] = ACTIONS(2909), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2909), + [anon_sym___declspec] = ACTIONS(2907), + [anon_sym___based] = ACTIONS(2907), + [anon_sym___cdecl] = ACTIONS(2907), + [anon_sym___clrcall] = ACTIONS(2907), + [anon_sym___stdcall] = ACTIONS(2907), + [anon_sym___fastcall] = ACTIONS(2907), + [anon_sym___thiscall] = ACTIONS(2907), + [anon_sym___vectorcall] = ACTIONS(2907), + [anon_sym_LBRACE] = ACTIONS(2909), + [anon_sym_signed] = ACTIONS(2907), + [anon_sym_unsigned] = ACTIONS(2907), + [anon_sym_long] = ACTIONS(2907), + [anon_sym_short] = ACTIONS(2907), + [anon_sym_LBRACK] = ACTIONS(2907), + [anon_sym_static] = ACTIONS(2907), + [anon_sym_register] = ACTIONS(2907), + [anon_sym_inline] = ACTIONS(2907), + [anon_sym___inline] = ACTIONS(2907), + [anon_sym___inline__] = ACTIONS(2907), + [anon_sym___forceinline] = ACTIONS(2907), + [anon_sym_thread_local] = ACTIONS(2907), + [anon_sym___thread] = ACTIONS(2907), + [anon_sym_const] = ACTIONS(2907), + [anon_sym_constexpr] = ACTIONS(2907), + [anon_sym_volatile] = ACTIONS(2907), + [anon_sym_restrict] = ACTIONS(2907), + [anon_sym___restrict__] = ACTIONS(2907), + [anon_sym__Atomic] = ACTIONS(2907), + [anon_sym__Noreturn] = ACTIONS(2907), + [anon_sym_noreturn] = ACTIONS(2907), + [anon_sym__Nonnull] = ACTIONS(2907), + [anon_sym_mutable] = ACTIONS(2907), + [anon_sym_constinit] = ACTIONS(2907), + [anon_sym_consteval] = ACTIONS(2907), + [anon_sym_alignas] = ACTIONS(2907), + [anon_sym__Alignas] = ACTIONS(2907), + [sym_primitive_type] = ACTIONS(2907), + [anon_sym_enum] = ACTIONS(2907), + [anon_sym_class] = ACTIONS(2907), + [anon_sym_struct] = ACTIONS(2907), + [anon_sym_union] = ACTIONS(2907), + [anon_sym_if] = ACTIONS(2907), + [anon_sym_switch] = ACTIONS(2907), + [anon_sym_case] = ACTIONS(2907), + [anon_sym_default] = ACTIONS(2907), + [anon_sym_while] = ACTIONS(2907), + [anon_sym_do] = ACTIONS(2907), + [anon_sym_for] = ACTIONS(2907), + [anon_sym_return] = ACTIONS(2907), + [anon_sym_break] = ACTIONS(2907), + [anon_sym_continue] = ACTIONS(2907), + [anon_sym_goto] = ACTIONS(2907), + [anon_sym_not] = ACTIONS(2907), + [anon_sym_compl] = ACTIONS(2907), + [anon_sym_DASH_DASH] = ACTIONS(2909), + [anon_sym_PLUS_PLUS] = ACTIONS(2909), + [anon_sym_sizeof] = ACTIONS(2907), + [anon_sym___alignof__] = ACTIONS(2907), + [anon_sym___alignof] = ACTIONS(2907), + [anon_sym__alignof] = ACTIONS(2907), + [anon_sym_alignof] = ACTIONS(2907), + [anon_sym__Alignof] = ACTIONS(2907), + [anon_sym_offsetof] = ACTIONS(2907), + [anon_sym__Generic] = ACTIONS(2907), + [anon_sym_asm] = ACTIONS(2907), + [anon_sym___asm__] = ACTIONS(2907), + [anon_sym___asm] = ACTIONS(2907), + [sym_number_literal] = ACTIONS(2909), + [anon_sym_L_SQUOTE] = ACTIONS(2909), + [anon_sym_u_SQUOTE] = ACTIONS(2909), + [anon_sym_U_SQUOTE] = ACTIONS(2909), + [anon_sym_u8_SQUOTE] = ACTIONS(2909), + [anon_sym_SQUOTE] = ACTIONS(2909), + [anon_sym_L_DQUOTE] = ACTIONS(2909), + [anon_sym_u_DQUOTE] = ACTIONS(2909), + [anon_sym_U_DQUOTE] = ACTIONS(2909), + [anon_sym_u8_DQUOTE] = ACTIONS(2909), + [anon_sym_DQUOTE] = ACTIONS(2909), + [sym_true] = ACTIONS(2907), + [sym_false] = ACTIONS(2907), + [anon_sym_NULL] = ACTIONS(2907), + [anon_sym_nullptr] = ACTIONS(2907), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2871), - [anon_sym_decltype] = ACTIONS(2871), - [anon_sym_explicit] = ACTIONS(2871), - [anon_sym_typename] = ACTIONS(2871), - [anon_sym_export] = ACTIONS(2871), - [anon_sym_module] = ACTIONS(2871), - [anon_sym_import] = ACTIONS(2871), - [anon_sym_template] = ACTIONS(2871), - [anon_sym_operator] = ACTIONS(2871), - [anon_sym_try] = ACTIONS(2871), - [anon_sym_delete] = ACTIONS(2871), - [anon_sym_throw] = ACTIONS(2871), - [anon_sym_namespace] = ACTIONS(2871), - [anon_sym_static_assert] = ACTIONS(2871), - [anon_sym_concept] = ACTIONS(2871), - [anon_sym_co_return] = ACTIONS(2871), - [anon_sym_co_yield] = ACTIONS(2871), - [anon_sym_R_DQUOTE] = ACTIONS(2873), - [anon_sym_LR_DQUOTE] = ACTIONS(2873), - [anon_sym_uR_DQUOTE] = ACTIONS(2873), - [anon_sym_UR_DQUOTE] = ACTIONS(2873), - [anon_sym_u8R_DQUOTE] = ACTIONS(2873), - [anon_sym_co_await] = ACTIONS(2871), - [anon_sym_new] = ACTIONS(2871), - [anon_sym_requires] = ACTIONS(2871), - [sym_this] = ACTIONS(2871), + [sym_auto] = ACTIONS(2907), + [anon_sym_decltype] = ACTIONS(2907), + [anon_sym_explicit] = ACTIONS(2907), + [anon_sym_typename] = ACTIONS(2907), + [anon_sym_export] = ACTIONS(2907), + [anon_sym_module] = ACTIONS(2907), + [anon_sym_import] = ACTIONS(2907), + [anon_sym_template] = ACTIONS(2907), + [anon_sym_operator] = ACTIONS(2907), + [anon_sym_try] = ACTIONS(2907), + [anon_sym_delete] = ACTIONS(2907), + [anon_sym_throw] = ACTIONS(2907), + [anon_sym_namespace] = ACTIONS(2907), + [anon_sym_static_assert] = ACTIONS(2907), + [anon_sym_concept] = ACTIONS(2907), + [anon_sym_co_return] = ACTIONS(2907), + [anon_sym_co_yield] = ACTIONS(2907), + [anon_sym_R_DQUOTE] = ACTIONS(2909), + [anon_sym_LR_DQUOTE] = ACTIONS(2909), + [anon_sym_uR_DQUOTE] = ACTIONS(2909), + [anon_sym_UR_DQUOTE] = ACTIONS(2909), + [anon_sym_u8R_DQUOTE] = ACTIONS(2909), + [anon_sym_co_await] = ACTIONS(2907), + [anon_sym_new] = ACTIONS(2907), + [anon_sym_requires] = ACTIONS(2907), + [sym_this] = ACTIONS(2907), }, - [600] = { - [sym_identifier] = ACTIONS(2659), - [aux_sym_preproc_include_token1] = ACTIONS(2659), - [aux_sym_preproc_def_token1] = ACTIONS(2659), - [aux_sym_preproc_if_token1] = ACTIONS(2659), - [aux_sym_preproc_if_token2] = ACTIONS(2659), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2659), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2659), - [sym_preproc_directive] = ACTIONS(2659), - [anon_sym_LPAREN2] = ACTIONS(2661), - [anon_sym_BANG] = ACTIONS(2661), - [anon_sym_TILDE] = ACTIONS(2661), - [anon_sym_DASH] = ACTIONS(2659), - [anon_sym_PLUS] = ACTIONS(2659), - [anon_sym_STAR] = ACTIONS(2661), - [anon_sym_AMP_AMP] = ACTIONS(2661), - [anon_sym_AMP] = ACTIONS(2659), - [anon_sym_SEMI] = ACTIONS(2661), - [anon_sym___extension__] = ACTIONS(2659), - [anon_sym_typedef] = ACTIONS(2659), - [anon_sym_virtual] = ACTIONS(2659), - [anon_sym_extern] = ACTIONS(2659), - [anon_sym___attribute__] = ACTIONS(2659), - [anon_sym___attribute] = ACTIONS(2659), - [anon_sym_using] = ACTIONS(2659), - [anon_sym_COLON_COLON] = ACTIONS(2661), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2661), - [anon_sym___declspec] = ACTIONS(2659), - [anon_sym___based] = ACTIONS(2659), - [anon_sym___cdecl] = ACTIONS(2659), - [anon_sym___clrcall] = ACTIONS(2659), - [anon_sym___stdcall] = ACTIONS(2659), - [anon_sym___fastcall] = ACTIONS(2659), - [anon_sym___thiscall] = ACTIONS(2659), - [anon_sym___vectorcall] = ACTIONS(2659), - [anon_sym_LBRACE] = ACTIONS(2661), - [anon_sym_signed] = ACTIONS(2659), - [anon_sym_unsigned] = ACTIONS(2659), - [anon_sym_long] = ACTIONS(2659), - [anon_sym_short] = ACTIONS(2659), - [anon_sym_LBRACK] = ACTIONS(2659), - [anon_sym_static] = ACTIONS(2659), - [anon_sym_register] = ACTIONS(2659), - [anon_sym_inline] = ACTIONS(2659), - [anon_sym___inline] = ACTIONS(2659), - [anon_sym___inline__] = ACTIONS(2659), - [anon_sym___forceinline] = ACTIONS(2659), - [anon_sym_thread_local] = ACTIONS(2659), - [anon_sym___thread] = ACTIONS(2659), - [anon_sym_const] = ACTIONS(2659), - [anon_sym_constexpr] = ACTIONS(2659), - [anon_sym_volatile] = ACTIONS(2659), - [anon_sym_restrict] = ACTIONS(2659), - [anon_sym___restrict__] = ACTIONS(2659), - [anon_sym__Atomic] = ACTIONS(2659), - [anon_sym__Noreturn] = ACTIONS(2659), - [anon_sym_noreturn] = ACTIONS(2659), - [anon_sym__Nonnull] = ACTIONS(2659), - [anon_sym_mutable] = ACTIONS(2659), - [anon_sym_constinit] = ACTIONS(2659), - [anon_sym_consteval] = ACTIONS(2659), - [anon_sym_alignas] = ACTIONS(2659), - [anon_sym__Alignas] = ACTIONS(2659), - [sym_primitive_type] = ACTIONS(2659), - [anon_sym_enum] = ACTIONS(2659), - [anon_sym_class] = ACTIONS(2659), - [anon_sym_struct] = ACTIONS(2659), - [anon_sym_union] = ACTIONS(2659), - [anon_sym_if] = ACTIONS(2659), - [anon_sym_else] = ACTIONS(2659), - [anon_sym_switch] = ACTIONS(2659), - [anon_sym_case] = ACTIONS(2659), - [anon_sym_default] = ACTIONS(2659), - [anon_sym_while] = ACTIONS(2659), - [anon_sym_do] = ACTIONS(2659), - [anon_sym_for] = ACTIONS(2659), - [anon_sym_return] = ACTIONS(2659), - [anon_sym_break] = ACTIONS(2659), - [anon_sym_continue] = ACTIONS(2659), - [anon_sym_goto] = ACTIONS(2659), - [anon_sym___try] = ACTIONS(2659), - [anon_sym___leave] = ACTIONS(2659), - [anon_sym_not] = ACTIONS(2659), - [anon_sym_compl] = ACTIONS(2659), - [anon_sym_DASH_DASH] = ACTIONS(2661), - [anon_sym_PLUS_PLUS] = ACTIONS(2661), - [anon_sym_sizeof] = ACTIONS(2659), - [anon_sym___alignof__] = ACTIONS(2659), - [anon_sym___alignof] = ACTIONS(2659), - [anon_sym__alignof] = ACTIONS(2659), - [anon_sym_alignof] = ACTIONS(2659), - [anon_sym__Alignof] = ACTIONS(2659), - [anon_sym_offsetof] = ACTIONS(2659), - [anon_sym__Generic] = ACTIONS(2659), - [anon_sym_asm] = ACTIONS(2659), - [anon_sym___asm__] = ACTIONS(2659), - [anon_sym___asm] = ACTIONS(2659), - [sym_number_literal] = ACTIONS(2661), - [anon_sym_L_SQUOTE] = ACTIONS(2661), - [anon_sym_u_SQUOTE] = ACTIONS(2661), - [anon_sym_U_SQUOTE] = ACTIONS(2661), - [anon_sym_u8_SQUOTE] = ACTIONS(2661), - [anon_sym_SQUOTE] = ACTIONS(2661), - [anon_sym_L_DQUOTE] = ACTIONS(2661), - [anon_sym_u_DQUOTE] = ACTIONS(2661), - [anon_sym_U_DQUOTE] = ACTIONS(2661), - [anon_sym_u8_DQUOTE] = ACTIONS(2661), - [anon_sym_DQUOTE] = ACTIONS(2661), - [sym_true] = ACTIONS(2659), - [sym_false] = ACTIONS(2659), - [anon_sym_NULL] = ACTIONS(2659), - [anon_sym_nullptr] = ACTIONS(2659), + [607] = { + [ts_builtin_sym_end] = ACTIONS(2885), + [sym_identifier] = ACTIONS(2883), + [aux_sym_preproc_include_token1] = ACTIONS(2883), + [aux_sym_preproc_def_token1] = ACTIONS(2883), + [aux_sym_preproc_if_token1] = ACTIONS(2883), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2883), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2883), + [sym_preproc_directive] = ACTIONS(2883), + [anon_sym_LPAREN2] = ACTIONS(2885), + [anon_sym_BANG] = ACTIONS(2885), + [anon_sym_TILDE] = ACTIONS(2885), + [anon_sym_DASH] = ACTIONS(2883), + [anon_sym_PLUS] = ACTIONS(2883), + [anon_sym_STAR] = ACTIONS(2885), + [anon_sym_AMP_AMP] = ACTIONS(2885), + [anon_sym_AMP] = ACTIONS(2883), + [anon_sym_SEMI] = ACTIONS(2885), + [anon_sym___extension__] = ACTIONS(2883), + [anon_sym_typedef] = ACTIONS(2883), + [anon_sym_virtual] = ACTIONS(2883), + [anon_sym_extern] = ACTIONS(2883), + [anon_sym___attribute__] = ACTIONS(2883), + [anon_sym___attribute] = ACTIONS(2883), + [anon_sym_using] = ACTIONS(2883), + [anon_sym_COLON_COLON] = ACTIONS(2885), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2885), + [anon_sym___declspec] = ACTIONS(2883), + [anon_sym___based] = ACTIONS(2883), + [anon_sym___cdecl] = ACTIONS(2883), + [anon_sym___clrcall] = ACTIONS(2883), + [anon_sym___stdcall] = ACTIONS(2883), + [anon_sym___fastcall] = ACTIONS(2883), + [anon_sym___thiscall] = ACTIONS(2883), + [anon_sym___vectorcall] = ACTIONS(2883), + [anon_sym_LBRACE] = ACTIONS(2885), + [anon_sym_signed] = ACTIONS(2883), + [anon_sym_unsigned] = ACTIONS(2883), + [anon_sym_long] = ACTIONS(2883), + [anon_sym_short] = ACTIONS(2883), + [anon_sym_LBRACK] = ACTIONS(2883), + [anon_sym_static] = ACTIONS(2883), + [anon_sym_register] = ACTIONS(2883), + [anon_sym_inline] = ACTIONS(2883), + [anon_sym___inline] = ACTIONS(2883), + [anon_sym___inline__] = ACTIONS(2883), + [anon_sym___forceinline] = ACTIONS(2883), + [anon_sym_thread_local] = ACTIONS(2883), + [anon_sym___thread] = ACTIONS(2883), + [anon_sym_const] = ACTIONS(2883), + [anon_sym_constexpr] = ACTIONS(2883), + [anon_sym_volatile] = ACTIONS(2883), + [anon_sym_restrict] = ACTIONS(2883), + [anon_sym___restrict__] = ACTIONS(2883), + [anon_sym__Atomic] = ACTIONS(2883), + [anon_sym__Noreturn] = ACTIONS(2883), + [anon_sym_noreturn] = ACTIONS(2883), + [anon_sym__Nonnull] = ACTIONS(2883), + [anon_sym_mutable] = ACTIONS(2883), + [anon_sym_constinit] = ACTIONS(2883), + [anon_sym_consteval] = ACTIONS(2883), + [anon_sym_alignas] = ACTIONS(2883), + [anon_sym__Alignas] = ACTIONS(2883), + [sym_primitive_type] = ACTIONS(2883), + [anon_sym_enum] = ACTIONS(2883), + [anon_sym_class] = ACTIONS(2883), + [anon_sym_struct] = ACTIONS(2883), + [anon_sym_union] = ACTIONS(2883), + [anon_sym_if] = ACTIONS(2883), + [anon_sym_switch] = ACTIONS(2883), + [anon_sym_case] = ACTIONS(2883), + [anon_sym_default] = ACTIONS(2883), + [anon_sym_while] = ACTIONS(2883), + [anon_sym_do] = ACTIONS(2883), + [anon_sym_for] = ACTIONS(2883), + [anon_sym_return] = ACTIONS(2883), + [anon_sym_break] = ACTIONS(2883), + [anon_sym_continue] = ACTIONS(2883), + [anon_sym_goto] = ACTIONS(2883), + [anon_sym_not] = ACTIONS(2883), + [anon_sym_compl] = ACTIONS(2883), + [anon_sym_DASH_DASH] = ACTIONS(2885), + [anon_sym_PLUS_PLUS] = ACTIONS(2885), + [anon_sym_sizeof] = ACTIONS(2883), + [anon_sym___alignof__] = ACTIONS(2883), + [anon_sym___alignof] = ACTIONS(2883), + [anon_sym__alignof] = ACTIONS(2883), + [anon_sym_alignof] = ACTIONS(2883), + [anon_sym__Alignof] = ACTIONS(2883), + [anon_sym_offsetof] = ACTIONS(2883), + [anon_sym__Generic] = ACTIONS(2883), + [anon_sym_asm] = ACTIONS(2883), + [anon_sym___asm__] = ACTIONS(2883), + [anon_sym___asm] = ACTIONS(2883), + [sym_number_literal] = ACTIONS(2885), + [anon_sym_L_SQUOTE] = ACTIONS(2885), + [anon_sym_u_SQUOTE] = ACTIONS(2885), + [anon_sym_U_SQUOTE] = ACTIONS(2885), + [anon_sym_u8_SQUOTE] = ACTIONS(2885), + [anon_sym_SQUOTE] = ACTIONS(2885), + [anon_sym_L_DQUOTE] = ACTIONS(2885), + [anon_sym_u_DQUOTE] = ACTIONS(2885), + [anon_sym_U_DQUOTE] = ACTIONS(2885), + [anon_sym_u8_DQUOTE] = ACTIONS(2885), + [anon_sym_DQUOTE] = ACTIONS(2885), + [sym_true] = ACTIONS(2883), + [sym_false] = ACTIONS(2883), + [anon_sym_NULL] = ACTIONS(2883), + [anon_sym_nullptr] = ACTIONS(2883), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2659), - [anon_sym_decltype] = ACTIONS(2659), - [anon_sym_explicit] = ACTIONS(2659), - [anon_sym_typename] = ACTIONS(2659), - [anon_sym_template] = ACTIONS(2659), - [anon_sym_operator] = ACTIONS(2659), - [anon_sym_try] = ACTIONS(2659), - [anon_sym_delete] = ACTIONS(2659), - [anon_sym_throw] = ACTIONS(2659), - [anon_sym_namespace] = ACTIONS(2659), - [anon_sym_static_assert] = ACTIONS(2659), - [anon_sym_concept] = ACTIONS(2659), - [anon_sym_co_return] = ACTIONS(2659), - [anon_sym_co_yield] = ACTIONS(2659), - [anon_sym_R_DQUOTE] = ACTIONS(2661), - [anon_sym_LR_DQUOTE] = ACTIONS(2661), - [anon_sym_uR_DQUOTE] = ACTIONS(2661), - [anon_sym_UR_DQUOTE] = ACTIONS(2661), - [anon_sym_u8R_DQUOTE] = ACTIONS(2661), - [anon_sym_co_await] = ACTIONS(2659), - [anon_sym_new] = ACTIONS(2659), - [anon_sym_requires] = ACTIONS(2659), - [sym_this] = ACTIONS(2659), + [sym_auto] = ACTIONS(2883), + [anon_sym_decltype] = ACTIONS(2883), + [anon_sym_explicit] = ACTIONS(2883), + [anon_sym_typename] = ACTIONS(2883), + [anon_sym_export] = ACTIONS(2883), + [anon_sym_module] = ACTIONS(2883), + [anon_sym_import] = ACTIONS(2883), + [anon_sym_template] = ACTIONS(2883), + [anon_sym_operator] = ACTIONS(2883), + [anon_sym_try] = ACTIONS(2883), + [anon_sym_delete] = ACTIONS(2883), + [anon_sym_throw] = ACTIONS(2883), + [anon_sym_namespace] = ACTIONS(2883), + [anon_sym_static_assert] = ACTIONS(2883), + [anon_sym_concept] = ACTIONS(2883), + [anon_sym_co_return] = ACTIONS(2883), + [anon_sym_co_yield] = ACTIONS(2883), + [anon_sym_R_DQUOTE] = ACTIONS(2885), + [anon_sym_LR_DQUOTE] = ACTIONS(2885), + [anon_sym_uR_DQUOTE] = ACTIONS(2885), + [anon_sym_UR_DQUOTE] = ACTIONS(2885), + [anon_sym_u8R_DQUOTE] = ACTIONS(2885), + [anon_sym_co_await] = ACTIONS(2883), + [anon_sym_new] = ACTIONS(2883), + [anon_sym_requires] = ACTIONS(2883), + [sym_this] = ACTIONS(2883), }, - [601] = { - [sym_identifier] = ACTIONS(2759), - [aux_sym_preproc_include_token1] = ACTIONS(2759), - [aux_sym_preproc_def_token1] = ACTIONS(2759), - [aux_sym_preproc_if_token1] = ACTIONS(2759), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2759), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2759), - [sym_preproc_directive] = ACTIONS(2759), - [anon_sym_LPAREN2] = ACTIONS(2761), - [anon_sym_BANG] = ACTIONS(2761), - [anon_sym_TILDE] = ACTIONS(2761), - [anon_sym_DASH] = ACTIONS(2759), - [anon_sym_PLUS] = ACTIONS(2759), - [anon_sym_STAR] = ACTIONS(2761), - [anon_sym_AMP_AMP] = ACTIONS(2761), - [anon_sym_AMP] = ACTIONS(2759), - [anon_sym_SEMI] = ACTIONS(2761), - [anon_sym___extension__] = ACTIONS(2759), - [anon_sym_typedef] = ACTIONS(2759), - [anon_sym_virtual] = ACTIONS(2759), - [anon_sym_extern] = ACTIONS(2759), - [anon_sym___attribute__] = ACTIONS(2759), - [anon_sym___attribute] = ACTIONS(2759), - [anon_sym_using] = ACTIONS(2759), - [anon_sym_COLON_COLON] = ACTIONS(2761), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2761), - [anon_sym___declspec] = ACTIONS(2759), - [anon_sym___based] = ACTIONS(2759), - [anon_sym___cdecl] = ACTIONS(2759), - [anon_sym___clrcall] = ACTIONS(2759), - [anon_sym___stdcall] = ACTIONS(2759), - [anon_sym___fastcall] = ACTIONS(2759), - [anon_sym___thiscall] = ACTIONS(2759), - [anon_sym___vectorcall] = ACTIONS(2759), - [anon_sym_LBRACE] = ACTIONS(2761), - [anon_sym_RBRACE] = ACTIONS(2761), - [anon_sym_signed] = ACTIONS(2759), - [anon_sym_unsigned] = ACTIONS(2759), - [anon_sym_long] = ACTIONS(2759), - [anon_sym_short] = ACTIONS(2759), - [anon_sym_LBRACK] = ACTIONS(2759), - [anon_sym_static] = ACTIONS(2759), - [anon_sym_register] = ACTIONS(2759), - [anon_sym_inline] = ACTIONS(2759), - [anon_sym___inline] = ACTIONS(2759), - [anon_sym___inline__] = ACTIONS(2759), - [anon_sym___forceinline] = ACTIONS(2759), - [anon_sym_thread_local] = ACTIONS(2759), - [anon_sym___thread] = ACTIONS(2759), - [anon_sym_const] = ACTIONS(2759), - [anon_sym_constexpr] = ACTIONS(2759), - [anon_sym_volatile] = ACTIONS(2759), - [anon_sym_restrict] = ACTIONS(2759), - [anon_sym___restrict__] = ACTIONS(2759), - [anon_sym__Atomic] = ACTIONS(2759), - [anon_sym__Noreturn] = ACTIONS(2759), - [anon_sym_noreturn] = ACTIONS(2759), - [anon_sym__Nonnull] = ACTIONS(2759), - [anon_sym_mutable] = ACTIONS(2759), - [anon_sym_constinit] = ACTIONS(2759), - [anon_sym_consteval] = ACTIONS(2759), - [anon_sym_alignas] = ACTIONS(2759), - [anon_sym__Alignas] = ACTIONS(2759), - [sym_primitive_type] = ACTIONS(2759), - [anon_sym_enum] = ACTIONS(2759), - [anon_sym_class] = ACTIONS(2759), - [anon_sym_struct] = ACTIONS(2759), - [anon_sym_union] = ACTIONS(2759), - [anon_sym_if] = ACTIONS(2759), - [anon_sym_else] = ACTIONS(2759), - [anon_sym_switch] = ACTIONS(2759), - [anon_sym_case] = ACTIONS(2759), - [anon_sym_default] = ACTIONS(2759), - [anon_sym_while] = ACTIONS(2759), - [anon_sym_do] = ACTIONS(2759), - [anon_sym_for] = ACTIONS(2759), - [anon_sym_return] = ACTIONS(2759), - [anon_sym_break] = ACTIONS(2759), - [anon_sym_continue] = ACTIONS(2759), - [anon_sym_goto] = ACTIONS(2759), - [anon_sym___try] = ACTIONS(2759), - [anon_sym___leave] = ACTIONS(2759), - [anon_sym_not] = ACTIONS(2759), - [anon_sym_compl] = ACTIONS(2759), - [anon_sym_DASH_DASH] = ACTIONS(2761), - [anon_sym_PLUS_PLUS] = ACTIONS(2761), - [anon_sym_sizeof] = ACTIONS(2759), - [anon_sym___alignof__] = ACTIONS(2759), - [anon_sym___alignof] = ACTIONS(2759), - [anon_sym__alignof] = ACTIONS(2759), - [anon_sym_alignof] = ACTIONS(2759), - [anon_sym__Alignof] = ACTIONS(2759), - [anon_sym_offsetof] = ACTIONS(2759), - [anon_sym__Generic] = ACTIONS(2759), - [anon_sym_asm] = ACTIONS(2759), - [anon_sym___asm__] = ACTIONS(2759), - [anon_sym___asm] = ACTIONS(2759), - [sym_number_literal] = ACTIONS(2761), - [anon_sym_L_SQUOTE] = ACTIONS(2761), - [anon_sym_u_SQUOTE] = ACTIONS(2761), - [anon_sym_U_SQUOTE] = ACTIONS(2761), - [anon_sym_u8_SQUOTE] = ACTIONS(2761), - [anon_sym_SQUOTE] = ACTIONS(2761), - [anon_sym_L_DQUOTE] = ACTIONS(2761), - [anon_sym_u_DQUOTE] = ACTIONS(2761), - [anon_sym_U_DQUOTE] = ACTIONS(2761), - [anon_sym_u8_DQUOTE] = ACTIONS(2761), - [anon_sym_DQUOTE] = ACTIONS(2761), - [sym_true] = ACTIONS(2759), - [sym_false] = ACTIONS(2759), - [anon_sym_NULL] = ACTIONS(2759), - [anon_sym_nullptr] = ACTIONS(2759), + [608] = { + [ts_builtin_sym_end] = ACTIONS(2801), + [sym_identifier] = ACTIONS(2799), + [aux_sym_preproc_include_token1] = ACTIONS(2799), + [aux_sym_preproc_def_token1] = ACTIONS(2799), + [aux_sym_preproc_if_token1] = ACTIONS(2799), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2799), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2799), + [sym_preproc_directive] = ACTIONS(2799), + [anon_sym_LPAREN2] = ACTIONS(2801), + [anon_sym_BANG] = ACTIONS(2801), + [anon_sym_TILDE] = ACTIONS(2801), + [anon_sym_DASH] = ACTIONS(2799), + [anon_sym_PLUS] = ACTIONS(2799), + [anon_sym_STAR] = ACTIONS(2801), + [anon_sym_AMP_AMP] = ACTIONS(2801), + [anon_sym_AMP] = ACTIONS(2799), + [anon_sym_SEMI] = ACTIONS(2801), + [anon_sym___extension__] = ACTIONS(2799), + [anon_sym_typedef] = ACTIONS(2799), + [anon_sym_virtual] = ACTIONS(2799), + [anon_sym_extern] = ACTIONS(2799), + [anon_sym___attribute__] = ACTIONS(2799), + [anon_sym___attribute] = ACTIONS(2799), + [anon_sym_using] = ACTIONS(2799), + [anon_sym_COLON_COLON] = ACTIONS(2801), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2801), + [anon_sym___declspec] = ACTIONS(2799), + [anon_sym___based] = ACTIONS(2799), + [anon_sym___cdecl] = ACTIONS(2799), + [anon_sym___clrcall] = ACTIONS(2799), + [anon_sym___stdcall] = ACTIONS(2799), + [anon_sym___fastcall] = ACTIONS(2799), + [anon_sym___thiscall] = ACTIONS(2799), + [anon_sym___vectorcall] = ACTIONS(2799), + [anon_sym_LBRACE] = ACTIONS(2801), + [anon_sym_signed] = ACTIONS(2799), + [anon_sym_unsigned] = ACTIONS(2799), + [anon_sym_long] = ACTIONS(2799), + [anon_sym_short] = ACTIONS(2799), + [anon_sym_LBRACK] = ACTIONS(2799), + [anon_sym_static] = ACTIONS(2799), + [anon_sym_register] = ACTIONS(2799), + [anon_sym_inline] = ACTIONS(2799), + [anon_sym___inline] = ACTIONS(2799), + [anon_sym___inline__] = ACTIONS(2799), + [anon_sym___forceinline] = ACTIONS(2799), + [anon_sym_thread_local] = ACTIONS(2799), + [anon_sym___thread] = ACTIONS(2799), + [anon_sym_const] = ACTIONS(2799), + [anon_sym_constexpr] = ACTIONS(2799), + [anon_sym_volatile] = ACTIONS(2799), + [anon_sym_restrict] = ACTIONS(2799), + [anon_sym___restrict__] = ACTIONS(2799), + [anon_sym__Atomic] = ACTIONS(2799), + [anon_sym__Noreturn] = ACTIONS(2799), + [anon_sym_noreturn] = ACTIONS(2799), + [anon_sym__Nonnull] = ACTIONS(2799), + [anon_sym_mutable] = ACTIONS(2799), + [anon_sym_constinit] = ACTIONS(2799), + [anon_sym_consteval] = ACTIONS(2799), + [anon_sym_alignas] = ACTIONS(2799), + [anon_sym__Alignas] = ACTIONS(2799), + [sym_primitive_type] = ACTIONS(2799), + [anon_sym_enum] = ACTIONS(2799), + [anon_sym_class] = ACTIONS(2799), + [anon_sym_struct] = ACTIONS(2799), + [anon_sym_union] = ACTIONS(2799), + [anon_sym_if] = ACTIONS(2799), + [anon_sym_switch] = ACTIONS(2799), + [anon_sym_case] = ACTIONS(2799), + [anon_sym_default] = ACTIONS(2799), + [anon_sym_while] = ACTIONS(2799), + [anon_sym_do] = ACTIONS(2799), + [anon_sym_for] = ACTIONS(2799), + [anon_sym_return] = ACTIONS(2799), + [anon_sym_break] = ACTIONS(2799), + [anon_sym_continue] = ACTIONS(2799), + [anon_sym_goto] = ACTIONS(2799), + [anon_sym_not] = ACTIONS(2799), + [anon_sym_compl] = ACTIONS(2799), + [anon_sym_DASH_DASH] = ACTIONS(2801), + [anon_sym_PLUS_PLUS] = ACTIONS(2801), + [anon_sym_sizeof] = ACTIONS(2799), + [anon_sym___alignof__] = ACTIONS(2799), + [anon_sym___alignof] = ACTIONS(2799), + [anon_sym__alignof] = ACTIONS(2799), + [anon_sym_alignof] = ACTIONS(2799), + [anon_sym__Alignof] = ACTIONS(2799), + [anon_sym_offsetof] = ACTIONS(2799), + [anon_sym__Generic] = ACTIONS(2799), + [anon_sym_asm] = ACTIONS(2799), + [anon_sym___asm__] = ACTIONS(2799), + [anon_sym___asm] = ACTIONS(2799), + [sym_number_literal] = ACTIONS(2801), + [anon_sym_L_SQUOTE] = ACTIONS(2801), + [anon_sym_u_SQUOTE] = ACTIONS(2801), + [anon_sym_U_SQUOTE] = ACTIONS(2801), + [anon_sym_u8_SQUOTE] = ACTIONS(2801), + [anon_sym_SQUOTE] = ACTIONS(2801), + [anon_sym_L_DQUOTE] = ACTIONS(2801), + [anon_sym_u_DQUOTE] = ACTIONS(2801), + [anon_sym_U_DQUOTE] = ACTIONS(2801), + [anon_sym_u8_DQUOTE] = ACTIONS(2801), + [anon_sym_DQUOTE] = ACTIONS(2801), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [anon_sym_NULL] = ACTIONS(2799), + [anon_sym_nullptr] = ACTIONS(2799), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2759), - [anon_sym_decltype] = ACTIONS(2759), - [anon_sym_explicit] = ACTIONS(2759), - [anon_sym_typename] = ACTIONS(2759), - [anon_sym_template] = ACTIONS(2759), - [anon_sym_operator] = ACTIONS(2759), - [anon_sym_try] = ACTIONS(2759), - [anon_sym_delete] = ACTIONS(2759), - [anon_sym_throw] = ACTIONS(2759), - [anon_sym_namespace] = ACTIONS(2759), - [anon_sym_static_assert] = ACTIONS(2759), - [anon_sym_concept] = ACTIONS(2759), - [anon_sym_co_return] = ACTIONS(2759), - [anon_sym_co_yield] = ACTIONS(2759), - [anon_sym_R_DQUOTE] = ACTIONS(2761), - [anon_sym_LR_DQUOTE] = ACTIONS(2761), - [anon_sym_uR_DQUOTE] = ACTIONS(2761), - [anon_sym_UR_DQUOTE] = ACTIONS(2761), - [anon_sym_u8R_DQUOTE] = ACTIONS(2761), - [anon_sym_co_await] = ACTIONS(2759), - [anon_sym_new] = ACTIONS(2759), - [anon_sym_requires] = ACTIONS(2759), - [sym_this] = ACTIONS(2759), + [sym_auto] = ACTIONS(2799), + [anon_sym_decltype] = ACTIONS(2799), + [anon_sym_explicit] = ACTIONS(2799), + [anon_sym_typename] = ACTIONS(2799), + [anon_sym_export] = ACTIONS(2799), + [anon_sym_module] = ACTIONS(2799), + [anon_sym_import] = ACTIONS(2799), + [anon_sym_template] = ACTIONS(2799), + [anon_sym_operator] = ACTIONS(2799), + [anon_sym_try] = ACTIONS(2799), + [anon_sym_delete] = ACTIONS(2799), + [anon_sym_throw] = ACTIONS(2799), + [anon_sym_namespace] = ACTIONS(2799), + [anon_sym_static_assert] = ACTIONS(2799), + [anon_sym_concept] = ACTIONS(2799), + [anon_sym_co_return] = ACTIONS(2799), + [anon_sym_co_yield] = ACTIONS(2799), + [anon_sym_R_DQUOTE] = ACTIONS(2801), + [anon_sym_LR_DQUOTE] = ACTIONS(2801), + [anon_sym_uR_DQUOTE] = ACTIONS(2801), + [anon_sym_UR_DQUOTE] = ACTIONS(2801), + [anon_sym_u8R_DQUOTE] = ACTIONS(2801), + [anon_sym_co_await] = ACTIONS(2799), + [anon_sym_new] = ACTIONS(2799), + [anon_sym_requires] = ACTIONS(2799), + [sym_this] = ACTIONS(2799), }, - [602] = { - [ts_builtin_sym_end] = ACTIONS(2773), - [sym_identifier] = ACTIONS(2771), - [aux_sym_preproc_include_token1] = ACTIONS(2771), - [aux_sym_preproc_def_token1] = ACTIONS(2771), - [aux_sym_preproc_if_token1] = ACTIONS(2771), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2771), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2771), - [sym_preproc_directive] = ACTIONS(2771), - [anon_sym_LPAREN2] = ACTIONS(2773), - [anon_sym_BANG] = ACTIONS(2773), - [anon_sym_TILDE] = ACTIONS(2773), - [anon_sym_DASH] = ACTIONS(2771), - [anon_sym_PLUS] = ACTIONS(2771), - [anon_sym_STAR] = ACTIONS(2773), - [anon_sym_AMP_AMP] = ACTIONS(2773), - [anon_sym_AMP] = ACTIONS(2771), - [anon_sym_SEMI] = ACTIONS(2773), - [anon_sym___extension__] = ACTIONS(2771), - [anon_sym_typedef] = ACTIONS(2771), - [anon_sym_virtual] = ACTIONS(2771), - [anon_sym_extern] = ACTIONS(2771), - [anon_sym___attribute__] = ACTIONS(2771), - [anon_sym___attribute] = ACTIONS(2771), - [anon_sym_using] = ACTIONS(2771), - [anon_sym_COLON_COLON] = ACTIONS(2773), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2773), - [anon_sym___declspec] = ACTIONS(2771), - [anon_sym___based] = ACTIONS(2771), - [anon_sym___cdecl] = ACTIONS(2771), - [anon_sym___clrcall] = ACTIONS(2771), - [anon_sym___stdcall] = ACTIONS(2771), - [anon_sym___fastcall] = ACTIONS(2771), - [anon_sym___thiscall] = ACTIONS(2771), - [anon_sym___vectorcall] = ACTIONS(2771), - [anon_sym_LBRACE] = ACTIONS(2773), - [anon_sym_signed] = ACTIONS(2771), - [anon_sym_unsigned] = ACTIONS(2771), - [anon_sym_long] = ACTIONS(2771), - [anon_sym_short] = ACTIONS(2771), - [anon_sym_LBRACK] = ACTIONS(2771), - [anon_sym_static] = ACTIONS(2771), - [anon_sym_register] = ACTIONS(2771), - [anon_sym_inline] = ACTIONS(2771), - [anon_sym___inline] = ACTIONS(2771), - [anon_sym___inline__] = ACTIONS(2771), - [anon_sym___forceinline] = ACTIONS(2771), - [anon_sym_thread_local] = ACTIONS(2771), - [anon_sym___thread] = ACTIONS(2771), - [anon_sym_const] = ACTIONS(2771), - [anon_sym_constexpr] = ACTIONS(2771), - [anon_sym_volatile] = ACTIONS(2771), - [anon_sym_restrict] = ACTIONS(2771), - [anon_sym___restrict__] = ACTIONS(2771), - [anon_sym__Atomic] = ACTIONS(2771), - [anon_sym__Noreturn] = ACTIONS(2771), - [anon_sym_noreturn] = ACTIONS(2771), - [anon_sym__Nonnull] = ACTIONS(2771), - [anon_sym_mutable] = ACTIONS(2771), - [anon_sym_constinit] = ACTIONS(2771), - [anon_sym_consteval] = ACTIONS(2771), - [anon_sym_alignas] = ACTIONS(2771), - [anon_sym__Alignas] = ACTIONS(2771), - [sym_primitive_type] = ACTIONS(2771), - [anon_sym_enum] = ACTIONS(2771), - [anon_sym_class] = ACTIONS(2771), - [anon_sym_struct] = ACTIONS(2771), - [anon_sym_union] = ACTIONS(2771), - [anon_sym_if] = ACTIONS(2771), - [anon_sym_switch] = ACTIONS(2771), - [anon_sym_case] = ACTIONS(2771), - [anon_sym_default] = ACTIONS(2771), - [anon_sym_while] = ACTIONS(2771), - [anon_sym_do] = ACTIONS(2771), - [anon_sym_for] = ACTIONS(2771), - [anon_sym_return] = ACTIONS(2771), - [anon_sym_break] = ACTIONS(2771), - [anon_sym_continue] = ACTIONS(2771), - [anon_sym_goto] = ACTIONS(2771), - [anon_sym_not] = ACTIONS(2771), - [anon_sym_compl] = ACTIONS(2771), - [anon_sym_DASH_DASH] = ACTIONS(2773), - [anon_sym_PLUS_PLUS] = ACTIONS(2773), - [anon_sym_sizeof] = ACTIONS(2771), - [anon_sym___alignof__] = ACTIONS(2771), - [anon_sym___alignof] = ACTIONS(2771), - [anon_sym__alignof] = ACTIONS(2771), - [anon_sym_alignof] = ACTIONS(2771), - [anon_sym__Alignof] = ACTIONS(2771), - [anon_sym_offsetof] = ACTIONS(2771), - [anon_sym__Generic] = ACTIONS(2771), - [anon_sym_asm] = ACTIONS(2771), - [anon_sym___asm__] = ACTIONS(2771), - [anon_sym___asm] = ACTIONS(2771), - [sym_number_literal] = ACTIONS(2773), - [anon_sym_L_SQUOTE] = ACTIONS(2773), - [anon_sym_u_SQUOTE] = ACTIONS(2773), - [anon_sym_U_SQUOTE] = ACTIONS(2773), - [anon_sym_u8_SQUOTE] = ACTIONS(2773), - [anon_sym_SQUOTE] = ACTIONS(2773), - [anon_sym_L_DQUOTE] = ACTIONS(2773), - [anon_sym_u_DQUOTE] = ACTIONS(2773), - [anon_sym_U_DQUOTE] = ACTIONS(2773), - [anon_sym_u8_DQUOTE] = ACTIONS(2773), - [anon_sym_DQUOTE] = ACTIONS(2773), - [sym_true] = ACTIONS(2771), - [sym_false] = ACTIONS(2771), - [anon_sym_NULL] = ACTIONS(2771), - [anon_sym_nullptr] = ACTIONS(2771), + [609] = { + [ts_builtin_sym_end] = ACTIONS(2917), + [sym_identifier] = ACTIONS(2915), + [aux_sym_preproc_include_token1] = ACTIONS(2915), + [aux_sym_preproc_def_token1] = ACTIONS(2915), + [aux_sym_preproc_if_token1] = ACTIONS(2915), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2915), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2915), + [sym_preproc_directive] = ACTIONS(2915), + [anon_sym_LPAREN2] = ACTIONS(2917), + [anon_sym_BANG] = ACTIONS(2917), + [anon_sym_TILDE] = ACTIONS(2917), + [anon_sym_DASH] = ACTIONS(2915), + [anon_sym_PLUS] = ACTIONS(2915), + [anon_sym_STAR] = ACTIONS(2917), + [anon_sym_AMP_AMP] = ACTIONS(2917), + [anon_sym_AMP] = ACTIONS(2915), + [anon_sym_SEMI] = ACTIONS(2917), + [anon_sym___extension__] = ACTIONS(2915), + [anon_sym_typedef] = ACTIONS(2915), + [anon_sym_virtual] = ACTIONS(2915), + [anon_sym_extern] = ACTIONS(2915), + [anon_sym___attribute__] = ACTIONS(2915), + [anon_sym___attribute] = ACTIONS(2915), + [anon_sym_using] = ACTIONS(2915), + [anon_sym_COLON_COLON] = ACTIONS(2917), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2917), + [anon_sym___declspec] = ACTIONS(2915), + [anon_sym___based] = ACTIONS(2915), + [anon_sym___cdecl] = ACTIONS(2915), + [anon_sym___clrcall] = ACTIONS(2915), + [anon_sym___stdcall] = ACTIONS(2915), + [anon_sym___fastcall] = ACTIONS(2915), + [anon_sym___thiscall] = ACTIONS(2915), + [anon_sym___vectorcall] = ACTIONS(2915), + [anon_sym_LBRACE] = ACTIONS(2917), + [anon_sym_signed] = ACTIONS(2915), + [anon_sym_unsigned] = ACTIONS(2915), + [anon_sym_long] = ACTIONS(2915), + [anon_sym_short] = ACTIONS(2915), + [anon_sym_LBRACK] = ACTIONS(2915), + [anon_sym_static] = ACTIONS(2915), + [anon_sym_register] = ACTIONS(2915), + [anon_sym_inline] = ACTIONS(2915), + [anon_sym___inline] = ACTIONS(2915), + [anon_sym___inline__] = ACTIONS(2915), + [anon_sym___forceinline] = ACTIONS(2915), + [anon_sym_thread_local] = ACTIONS(2915), + [anon_sym___thread] = ACTIONS(2915), + [anon_sym_const] = ACTIONS(2915), + [anon_sym_constexpr] = ACTIONS(2915), + [anon_sym_volatile] = ACTIONS(2915), + [anon_sym_restrict] = ACTIONS(2915), + [anon_sym___restrict__] = ACTIONS(2915), + [anon_sym__Atomic] = ACTIONS(2915), + [anon_sym__Noreturn] = ACTIONS(2915), + [anon_sym_noreturn] = ACTIONS(2915), + [anon_sym__Nonnull] = ACTIONS(2915), + [anon_sym_mutable] = ACTIONS(2915), + [anon_sym_constinit] = ACTIONS(2915), + [anon_sym_consteval] = ACTIONS(2915), + [anon_sym_alignas] = ACTIONS(2915), + [anon_sym__Alignas] = ACTIONS(2915), + [sym_primitive_type] = ACTIONS(2915), + [anon_sym_enum] = ACTIONS(2915), + [anon_sym_class] = ACTIONS(2915), + [anon_sym_struct] = ACTIONS(2915), + [anon_sym_union] = ACTIONS(2915), + [anon_sym_if] = ACTIONS(2915), + [anon_sym_switch] = ACTIONS(2915), + [anon_sym_case] = ACTIONS(2915), + [anon_sym_default] = ACTIONS(2915), + [anon_sym_while] = ACTIONS(2915), + [anon_sym_do] = ACTIONS(2915), + [anon_sym_for] = ACTIONS(2915), + [anon_sym_return] = ACTIONS(2915), + [anon_sym_break] = ACTIONS(2915), + [anon_sym_continue] = ACTIONS(2915), + [anon_sym_goto] = ACTIONS(2915), + [anon_sym_not] = ACTIONS(2915), + [anon_sym_compl] = ACTIONS(2915), + [anon_sym_DASH_DASH] = ACTIONS(2917), + [anon_sym_PLUS_PLUS] = ACTIONS(2917), + [anon_sym_sizeof] = ACTIONS(2915), + [anon_sym___alignof__] = ACTIONS(2915), + [anon_sym___alignof] = ACTIONS(2915), + [anon_sym__alignof] = ACTIONS(2915), + [anon_sym_alignof] = ACTIONS(2915), + [anon_sym__Alignof] = ACTIONS(2915), + [anon_sym_offsetof] = ACTIONS(2915), + [anon_sym__Generic] = ACTIONS(2915), + [anon_sym_asm] = ACTIONS(2915), + [anon_sym___asm__] = ACTIONS(2915), + [anon_sym___asm] = ACTIONS(2915), + [sym_number_literal] = ACTIONS(2917), + [anon_sym_L_SQUOTE] = ACTIONS(2917), + [anon_sym_u_SQUOTE] = ACTIONS(2917), + [anon_sym_U_SQUOTE] = ACTIONS(2917), + [anon_sym_u8_SQUOTE] = ACTIONS(2917), + [anon_sym_SQUOTE] = ACTIONS(2917), + [anon_sym_L_DQUOTE] = ACTIONS(2917), + [anon_sym_u_DQUOTE] = ACTIONS(2917), + [anon_sym_U_DQUOTE] = ACTIONS(2917), + [anon_sym_u8_DQUOTE] = ACTIONS(2917), + [anon_sym_DQUOTE] = ACTIONS(2917), + [sym_true] = ACTIONS(2915), + [sym_false] = ACTIONS(2915), + [anon_sym_NULL] = ACTIONS(2915), + [anon_sym_nullptr] = ACTIONS(2915), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2771), - [anon_sym_decltype] = ACTIONS(2771), - [anon_sym_explicit] = ACTIONS(2771), - [anon_sym_typename] = ACTIONS(2771), - [anon_sym_export] = ACTIONS(2771), - [anon_sym_module] = ACTIONS(2771), - [anon_sym_import] = ACTIONS(2771), - [anon_sym_template] = ACTIONS(2771), - [anon_sym_operator] = ACTIONS(2771), - [anon_sym_try] = ACTIONS(2771), - [anon_sym_delete] = ACTIONS(2771), - [anon_sym_throw] = ACTIONS(2771), - [anon_sym_namespace] = ACTIONS(2771), - [anon_sym_static_assert] = ACTIONS(2771), - [anon_sym_concept] = ACTIONS(2771), - [anon_sym_co_return] = ACTIONS(2771), - [anon_sym_co_yield] = ACTIONS(2771), - [anon_sym_R_DQUOTE] = ACTIONS(2773), - [anon_sym_LR_DQUOTE] = ACTIONS(2773), - [anon_sym_uR_DQUOTE] = ACTIONS(2773), - [anon_sym_UR_DQUOTE] = ACTIONS(2773), - [anon_sym_u8R_DQUOTE] = ACTIONS(2773), - [anon_sym_co_await] = ACTIONS(2771), - [anon_sym_new] = ACTIONS(2771), - [anon_sym_requires] = ACTIONS(2771), - [sym_this] = ACTIONS(2771), + [sym_auto] = ACTIONS(2915), + [anon_sym_decltype] = ACTIONS(2915), + [anon_sym_explicit] = ACTIONS(2915), + [anon_sym_typename] = ACTIONS(2915), + [anon_sym_export] = ACTIONS(2915), + [anon_sym_module] = ACTIONS(2915), + [anon_sym_import] = ACTIONS(2915), + [anon_sym_template] = ACTIONS(2915), + [anon_sym_operator] = ACTIONS(2915), + [anon_sym_try] = ACTIONS(2915), + [anon_sym_delete] = ACTIONS(2915), + [anon_sym_throw] = ACTIONS(2915), + [anon_sym_namespace] = ACTIONS(2915), + [anon_sym_static_assert] = ACTIONS(2915), + [anon_sym_concept] = ACTIONS(2915), + [anon_sym_co_return] = ACTIONS(2915), + [anon_sym_co_yield] = ACTIONS(2915), + [anon_sym_R_DQUOTE] = ACTIONS(2917), + [anon_sym_LR_DQUOTE] = ACTIONS(2917), + [anon_sym_uR_DQUOTE] = ACTIONS(2917), + [anon_sym_UR_DQUOTE] = ACTIONS(2917), + [anon_sym_u8R_DQUOTE] = ACTIONS(2917), + [anon_sym_co_await] = ACTIONS(2915), + [anon_sym_new] = ACTIONS(2915), + [anon_sym_requires] = ACTIONS(2915), + [sym_this] = ACTIONS(2915), }, - [603] = { - [sym_identifier] = ACTIONS(2767), - [aux_sym_preproc_include_token1] = ACTIONS(2767), - [aux_sym_preproc_def_token1] = ACTIONS(2767), - [aux_sym_preproc_if_token1] = ACTIONS(2767), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2767), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2767), - [sym_preproc_directive] = ACTIONS(2767), - [anon_sym_LPAREN2] = ACTIONS(2769), - [anon_sym_BANG] = ACTIONS(2769), - [anon_sym_TILDE] = ACTIONS(2769), - [anon_sym_DASH] = ACTIONS(2767), - [anon_sym_PLUS] = ACTIONS(2767), - [anon_sym_STAR] = ACTIONS(2769), - [anon_sym_AMP_AMP] = ACTIONS(2769), - [anon_sym_AMP] = ACTIONS(2767), - [anon_sym_SEMI] = ACTIONS(2769), - [anon_sym___extension__] = ACTIONS(2767), - [anon_sym_typedef] = ACTIONS(2767), - [anon_sym_virtual] = ACTIONS(2767), - [anon_sym_extern] = ACTIONS(2767), - [anon_sym___attribute__] = ACTIONS(2767), - [anon_sym___attribute] = ACTIONS(2767), - [anon_sym_using] = ACTIONS(2767), - [anon_sym_COLON_COLON] = ACTIONS(2769), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2769), - [anon_sym___declspec] = ACTIONS(2767), - [anon_sym___based] = ACTIONS(2767), - [anon_sym___cdecl] = ACTIONS(2767), - [anon_sym___clrcall] = ACTIONS(2767), - [anon_sym___stdcall] = ACTIONS(2767), - [anon_sym___fastcall] = ACTIONS(2767), - [anon_sym___thiscall] = ACTIONS(2767), - [anon_sym___vectorcall] = ACTIONS(2767), - [anon_sym_LBRACE] = ACTIONS(2769), - [anon_sym_RBRACE] = ACTIONS(2769), - [anon_sym_signed] = ACTIONS(2767), - [anon_sym_unsigned] = ACTIONS(2767), - [anon_sym_long] = ACTIONS(2767), - [anon_sym_short] = ACTIONS(2767), - [anon_sym_LBRACK] = ACTIONS(2767), - [anon_sym_static] = ACTIONS(2767), - [anon_sym_register] = ACTIONS(2767), - [anon_sym_inline] = ACTIONS(2767), - [anon_sym___inline] = ACTIONS(2767), - [anon_sym___inline__] = ACTIONS(2767), - [anon_sym___forceinline] = ACTIONS(2767), - [anon_sym_thread_local] = ACTIONS(2767), - [anon_sym___thread] = ACTIONS(2767), - [anon_sym_const] = ACTIONS(2767), - [anon_sym_constexpr] = ACTIONS(2767), - [anon_sym_volatile] = ACTIONS(2767), - [anon_sym_restrict] = ACTIONS(2767), - [anon_sym___restrict__] = ACTIONS(2767), - [anon_sym__Atomic] = ACTIONS(2767), - [anon_sym__Noreturn] = ACTIONS(2767), - [anon_sym_noreturn] = ACTIONS(2767), - [anon_sym__Nonnull] = ACTIONS(2767), - [anon_sym_mutable] = ACTIONS(2767), - [anon_sym_constinit] = ACTIONS(2767), - [anon_sym_consteval] = ACTIONS(2767), - [anon_sym_alignas] = ACTIONS(2767), - [anon_sym__Alignas] = ACTIONS(2767), - [sym_primitive_type] = ACTIONS(2767), - [anon_sym_enum] = ACTIONS(2767), - [anon_sym_class] = ACTIONS(2767), - [anon_sym_struct] = ACTIONS(2767), - [anon_sym_union] = ACTIONS(2767), - [anon_sym_if] = ACTIONS(2767), - [anon_sym_else] = ACTIONS(2767), - [anon_sym_switch] = ACTIONS(2767), - [anon_sym_case] = ACTIONS(2767), - [anon_sym_default] = ACTIONS(2767), - [anon_sym_while] = ACTIONS(2767), - [anon_sym_do] = ACTIONS(2767), - [anon_sym_for] = ACTIONS(2767), - [anon_sym_return] = ACTIONS(2767), - [anon_sym_break] = ACTIONS(2767), - [anon_sym_continue] = ACTIONS(2767), - [anon_sym_goto] = ACTIONS(2767), - [anon_sym___try] = ACTIONS(2767), - [anon_sym___leave] = ACTIONS(2767), - [anon_sym_not] = ACTIONS(2767), - [anon_sym_compl] = ACTIONS(2767), - [anon_sym_DASH_DASH] = ACTIONS(2769), - [anon_sym_PLUS_PLUS] = ACTIONS(2769), - [anon_sym_sizeof] = ACTIONS(2767), - [anon_sym___alignof__] = ACTIONS(2767), - [anon_sym___alignof] = ACTIONS(2767), - [anon_sym__alignof] = ACTIONS(2767), - [anon_sym_alignof] = ACTIONS(2767), - [anon_sym__Alignof] = ACTIONS(2767), - [anon_sym_offsetof] = ACTIONS(2767), - [anon_sym__Generic] = ACTIONS(2767), - [anon_sym_asm] = ACTIONS(2767), - [anon_sym___asm__] = ACTIONS(2767), - [anon_sym___asm] = ACTIONS(2767), - [sym_number_literal] = ACTIONS(2769), - [anon_sym_L_SQUOTE] = ACTIONS(2769), - [anon_sym_u_SQUOTE] = ACTIONS(2769), - [anon_sym_U_SQUOTE] = ACTIONS(2769), - [anon_sym_u8_SQUOTE] = ACTIONS(2769), - [anon_sym_SQUOTE] = ACTIONS(2769), - [anon_sym_L_DQUOTE] = ACTIONS(2769), - [anon_sym_u_DQUOTE] = ACTIONS(2769), - [anon_sym_U_DQUOTE] = ACTIONS(2769), - [anon_sym_u8_DQUOTE] = ACTIONS(2769), - [anon_sym_DQUOTE] = ACTIONS(2769), - [sym_true] = ACTIONS(2767), - [sym_false] = ACTIONS(2767), - [anon_sym_NULL] = ACTIONS(2767), - [anon_sym_nullptr] = ACTIONS(2767), + [610] = { + [ts_builtin_sym_end] = ACTIONS(2805), + [sym_identifier] = ACTIONS(2803), + [aux_sym_preproc_include_token1] = ACTIONS(2803), + [aux_sym_preproc_def_token1] = ACTIONS(2803), + [aux_sym_preproc_if_token1] = ACTIONS(2803), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2803), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2803), + [sym_preproc_directive] = ACTIONS(2803), + [anon_sym_LPAREN2] = ACTIONS(2805), + [anon_sym_BANG] = ACTIONS(2805), + [anon_sym_TILDE] = ACTIONS(2805), + [anon_sym_DASH] = ACTIONS(2803), + [anon_sym_PLUS] = ACTIONS(2803), + [anon_sym_STAR] = ACTIONS(2805), + [anon_sym_AMP_AMP] = ACTIONS(2805), + [anon_sym_AMP] = ACTIONS(2803), + [anon_sym_SEMI] = ACTIONS(2805), + [anon_sym___extension__] = ACTIONS(2803), + [anon_sym_typedef] = ACTIONS(2803), + [anon_sym_virtual] = ACTIONS(2803), + [anon_sym_extern] = ACTIONS(2803), + [anon_sym___attribute__] = ACTIONS(2803), + [anon_sym___attribute] = ACTIONS(2803), + [anon_sym_using] = ACTIONS(2803), + [anon_sym_COLON_COLON] = ACTIONS(2805), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2805), + [anon_sym___declspec] = ACTIONS(2803), + [anon_sym___based] = ACTIONS(2803), + [anon_sym___cdecl] = ACTIONS(2803), + [anon_sym___clrcall] = ACTIONS(2803), + [anon_sym___stdcall] = ACTIONS(2803), + [anon_sym___fastcall] = ACTIONS(2803), + [anon_sym___thiscall] = ACTIONS(2803), + [anon_sym___vectorcall] = ACTIONS(2803), + [anon_sym_LBRACE] = ACTIONS(2805), + [anon_sym_signed] = ACTIONS(2803), + [anon_sym_unsigned] = ACTIONS(2803), + [anon_sym_long] = ACTIONS(2803), + [anon_sym_short] = ACTIONS(2803), + [anon_sym_LBRACK] = ACTIONS(2803), + [anon_sym_static] = ACTIONS(2803), + [anon_sym_register] = ACTIONS(2803), + [anon_sym_inline] = ACTIONS(2803), + [anon_sym___inline] = ACTIONS(2803), + [anon_sym___inline__] = ACTIONS(2803), + [anon_sym___forceinline] = ACTIONS(2803), + [anon_sym_thread_local] = ACTIONS(2803), + [anon_sym___thread] = ACTIONS(2803), + [anon_sym_const] = ACTIONS(2803), + [anon_sym_constexpr] = ACTIONS(2803), + [anon_sym_volatile] = ACTIONS(2803), + [anon_sym_restrict] = ACTIONS(2803), + [anon_sym___restrict__] = ACTIONS(2803), + [anon_sym__Atomic] = ACTIONS(2803), + [anon_sym__Noreturn] = ACTIONS(2803), + [anon_sym_noreturn] = ACTIONS(2803), + [anon_sym__Nonnull] = ACTIONS(2803), + [anon_sym_mutable] = ACTIONS(2803), + [anon_sym_constinit] = ACTIONS(2803), + [anon_sym_consteval] = ACTIONS(2803), + [anon_sym_alignas] = ACTIONS(2803), + [anon_sym__Alignas] = ACTIONS(2803), + [sym_primitive_type] = ACTIONS(2803), + [anon_sym_enum] = ACTIONS(2803), + [anon_sym_class] = ACTIONS(2803), + [anon_sym_struct] = ACTIONS(2803), + [anon_sym_union] = ACTIONS(2803), + [anon_sym_if] = ACTIONS(2803), + [anon_sym_switch] = ACTIONS(2803), + [anon_sym_case] = ACTIONS(2803), + [anon_sym_default] = ACTIONS(2803), + [anon_sym_while] = ACTIONS(2803), + [anon_sym_do] = ACTIONS(2803), + [anon_sym_for] = ACTIONS(2803), + [anon_sym_return] = ACTIONS(2803), + [anon_sym_break] = ACTIONS(2803), + [anon_sym_continue] = ACTIONS(2803), + [anon_sym_goto] = ACTIONS(2803), + [anon_sym_not] = ACTIONS(2803), + [anon_sym_compl] = ACTIONS(2803), + [anon_sym_DASH_DASH] = ACTIONS(2805), + [anon_sym_PLUS_PLUS] = ACTIONS(2805), + [anon_sym_sizeof] = ACTIONS(2803), + [anon_sym___alignof__] = ACTIONS(2803), + [anon_sym___alignof] = ACTIONS(2803), + [anon_sym__alignof] = ACTIONS(2803), + [anon_sym_alignof] = ACTIONS(2803), + [anon_sym__Alignof] = ACTIONS(2803), + [anon_sym_offsetof] = ACTIONS(2803), + [anon_sym__Generic] = ACTIONS(2803), + [anon_sym_asm] = ACTIONS(2803), + [anon_sym___asm__] = ACTIONS(2803), + [anon_sym___asm] = ACTIONS(2803), + [sym_number_literal] = ACTIONS(2805), + [anon_sym_L_SQUOTE] = ACTIONS(2805), + [anon_sym_u_SQUOTE] = ACTIONS(2805), + [anon_sym_U_SQUOTE] = ACTIONS(2805), + [anon_sym_u8_SQUOTE] = ACTIONS(2805), + [anon_sym_SQUOTE] = ACTIONS(2805), + [anon_sym_L_DQUOTE] = ACTIONS(2805), + [anon_sym_u_DQUOTE] = ACTIONS(2805), + [anon_sym_U_DQUOTE] = ACTIONS(2805), + [anon_sym_u8_DQUOTE] = ACTIONS(2805), + [anon_sym_DQUOTE] = ACTIONS(2805), + [sym_true] = ACTIONS(2803), + [sym_false] = ACTIONS(2803), + [anon_sym_NULL] = ACTIONS(2803), + [anon_sym_nullptr] = ACTIONS(2803), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2767), - [anon_sym_decltype] = ACTIONS(2767), - [anon_sym_explicit] = ACTIONS(2767), - [anon_sym_typename] = ACTIONS(2767), - [anon_sym_template] = ACTIONS(2767), - [anon_sym_operator] = ACTIONS(2767), - [anon_sym_try] = ACTIONS(2767), - [anon_sym_delete] = ACTIONS(2767), - [anon_sym_throw] = ACTIONS(2767), - [anon_sym_namespace] = ACTIONS(2767), - [anon_sym_static_assert] = ACTIONS(2767), - [anon_sym_concept] = ACTIONS(2767), - [anon_sym_co_return] = ACTIONS(2767), - [anon_sym_co_yield] = ACTIONS(2767), - [anon_sym_R_DQUOTE] = ACTIONS(2769), - [anon_sym_LR_DQUOTE] = ACTIONS(2769), - [anon_sym_uR_DQUOTE] = ACTIONS(2769), - [anon_sym_UR_DQUOTE] = ACTIONS(2769), - [anon_sym_u8R_DQUOTE] = ACTIONS(2769), - [anon_sym_co_await] = ACTIONS(2767), - [anon_sym_new] = ACTIONS(2767), - [anon_sym_requires] = ACTIONS(2767), - [sym_this] = ACTIONS(2767), + [sym_auto] = ACTIONS(2803), + [anon_sym_decltype] = ACTIONS(2803), + [anon_sym_explicit] = ACTIONS(2803), + [anon_sym_typename] = ACTIONS(2803), + [anon_sym_export] = ACTIONS(2803), + [anon_sym_module] = ACTIONS(2803), + [anon_sym_import] = ACTIONS(2803), + [anon_sym_template] = ACTIONS(2803), + [anon_sym_operator] = ACTIONS(2803), + [anon_sym_try] = ACTIONS(2803), + [anon_sym_delete] = ACTIONS(2803), + [anon_sym_throw] = ACTIONS(2803), + [anon_sym_namespace] = ACTIONS(2803), + [anon_sym_static_assert] = ACTIONS(2803), + [anon_sym_concept] = ACTIONS(2803), + [anon_sym_co_return] = ACTIONS(2803), + [anon_sym_co_yield] = ACTIONS(2803), + [anon_sym_R_DQUOTE] = ACTIONS(2805), + [anon_sym_LR_DQUOTE] = ACTIONS(2805), + [anon_sym_uR_DQUOTE] = ACTIONS(2805), + [anon_sym_UR_DQUOTE] = ACTIONS(2805), + [anon_sym_u8R_DQUOTE] = ACTIONS(2805), + [anon_sym_co_await] = ACTIONS(2803), + [anon_sym_new] = ACTIONS(2803), + [anon_sym_requires] = ACTIONS(2803), + [sym_this] = ACTIONS(2803), }, - [604] = { - [sym_identifier] = ACTIONS(2767), - [aux_sym_preproc_include_token1] = ACTIONS(2767), - [aux_sym_preproc_def_token1] = ACTIONS(2767), - [aux_sym_preproc_if_token1] = ACTIONS(2767), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2767), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2767), - [sym_preproc_directive] = ACTIONS(2767), - [anon_sym_LPAREN2] = ACTIONS(2769), - [anon_sym_BANG] = ACTIONS(2769), - [anon_sym_TILDE] = ACTIONS(2769), - [anon_sym_DASH] = ACTIONS(2767), - [anon_sym_PLUS] = ACTIONS(2767), - [anon_sym_STAR] = ACTIONS(2769), - [anon_sym_AMP_AMP] = ACTIONS(2769), - [anon_sym_AMP] = ACTIONS(2767), - [anon_sym_SEMI] = ACTIONS(2769), - [anon_sym___extension__] = ACTIONS(2767), - [anon_sym_typedef] = ACTIONS(2767), - [anon_sym_virtual] = ACTIONS(2767), - [anon_sym_extern] = ACTIONS(2767), - [anon_sym___attribute__] = ACTIONS(2767), - [anon_sym___attribute] = ACTIONS(2767), - [anon_sym_using] = ACTIONS(2767), - [anon_sym_COLON_COLON] = ACTIONS(2769), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2769), - [anon_sym___declspec] = ACTIONS(2767), - [anon_sym___based] = ACTIONS(2767), - [anon_sym___cdecl] = ACTIONS(2767), - [anon_sym___clrcall] = ACTIONS(2767), - [anon_sym___stdcall] = ACTIONS(2767), - [anon_sym___fastcall] = ACTIONS(2767), - [anon_sym___thiscall] = ACTIONS(2767), - [anon_sym___vectorcall] = ACTIONS(2767), - [anon_sym_LBRACE] = ACTIONS(2769), - [anon_sym_RBRACE] = ACTIONS(2769), - [anon_sym_signed] = ACTIONS(2767), - [anon_sym_unsigned] = ACTIONS(2767), - [anon_sym_long] = ACTIONS(2767), - [anon_sym_short] = ACTIONS(2767), - [anon_sym_LBRACK] = ACTIONS(2767), - [anon_sym_static] = ACTIONS(2767), - [anon_sym_register] = ACTIONS(2767), - [anon_sym_inline] = ACTIONS(2767), - [anon_sym___inline] = ACTIONS(2767), - [anon_sym___inline__] = ACTIONS(2767), - [anon_sym___forceinline] = ACTIONS(2767), - [anon_sym_thread_local] = ACTIONS(2767), - [anon_sym___thread] = ACTIONS(2767), - [anon_sym_const] = ACTIONS(2767), - [anon_sym_constexpr] = ACTIONS(2767), - [anon_sym_volatile] = ACTIONS(2767), - [anon_sym_restrict] = ACTIONS(2767), - [anon_sym___restrict__] = ACTIONS(2767), - [anon_sym__Atomic] = ACTIONS(2767), - [anon_sym__Noreturn] = ACTIONS(2767), - [anon_sym_noreturn] = ACTIONS(2767), - [anon_sym__Nonnull] = ACTIONS(2767), - [anon_sym_mutable] = ACTIONS(2767), - [anon_sym_constinit] = ACTIONS(2767), - [anon_sym_consteval] = ACTIONS(2767), - [anon_sym_alignas] = ACTIONS(2767), - [anon_sym__Alignas] = ACTIONS(2767), - [sym_primitive_type] = ACTIONS(2767), - [anon_sym_enum] = ACTIONS(2767), - [anon_sym_class] = ACTIONS(2767), - [anon_sym_struct] = ACTIONS(2767), - [anon_sym_union] = ACTIONS(2767), - [anon_sym_if] = ACTIONS(2767), - [anon_sym_else] = ACTIONS(2767), - [anon_sym_switch] = ACTIONS(2767), - [anon_sym_case] = ACTIONS(2767), - [anon_sym_default] = ACTIONS(2767), - [anon_sym_while] = ACTIONS(2767), - [anon_sym_do] = ACTIONS(2767), - [anon_sym_for] = ACTIONS(2767), - [anon_sym_return] = ACTIONS(2767), - [anon_sym_break] = ACTIONS(2767), - [anon_sym_continue] = ACTIONS(2767), - [anon_sym_goto] = ACTIONS(2767), - [anon_sym___try] = ACTIONS(2767), - [anon_sym___leave] = ACTIONS(2767), - [anon_sym_not] = ACTIONS(2767), - [anon_sym_compl] = ACTIONS(2767), - [anon_sym_DASH_DASH] = ACTIONS(2769), - [anon_sym_PLUS_PLUS] = ACTIONS(2769), - [anon_sym_sizeof] = ACTIONS(2767), - [anon_sym___alignof__] = ACTIONS(2767), - [anon_sym___alignof] = ACTIONS(2767), - [anon_sym__alignof] = ACTIONS(2767), - [anon_sym_alignof] = ACTIONS(2767), - [anon_sym__Alignof] = ACTIONS(2767), - [anon_sym_offsetof] = ACTIONS(2767), - [anon_sym__Generic] = ACTIONS(2767), - [anon_sym_asm] = ACTIONS(2767), - [anon_sym___asm__] = ACTIONS(2767), - [anon_sym___asm] = ACTIONS(2767), - [sym_number_literal] = ACTIONS(2769), - [anon_sym_L_SQUOTE] = ACTIONS(2769), - [anon_sym_u_SQUOTE] = ACTIONS(2769), - [anon_sym_U_SQUOTE] = ACTIONS(2769), - [anon_sym_u8_SQUOTE] = ACTIONS(2769), - [anon_sym_SQUOTE] = ACTIONS(2769), - [anon_sym_L_DQUOTE] = ACTIONS(2769), - [anon_sym_u_DQUOTE] = ACTIONS(2769), - [anon_sym_U_DQUOTE] = ACTIONS(2769), - [anon_sym_u8_DQUOTE] = ACTIONS(2769), - [anon_sym_DQUOTE] = ACTIONS(2769), - [sym_true] = ACTIONS(2767), - [sym_false] = ACTIONS(2767), - [anon_sym_NULL] = ACTIONS(2767), - [anon_sym_nullptr] = ACTIONS(2767), + [611] = { + [ts_builtin_sym_end] = ACTIONS(2921), + [sym_identifier] = ACTIONS(2919), + [aux_sym_preproc_include_token1] = ACTIONS(2919), + [aux_sym_preproc_def_token1] = ACTIONS(2919), + [aux_sym_preproc_if_token1] = ACTIONS(2919), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2919), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2919), + [sym_preproc_directive] = ACTIONS(2919), + [anon_sym_LPAREN2] = ACTIONS(2921), + [anon_sym_BANG] = ACTIONS(2921), + [anon_sym_TILDE] = ACTIONS(2921), + [anon_sym_DASH] = ACTIONS(2919), + [anon_sym_PLUS] = ACTIONS(2919), + [anon_sym_STAR] = ACTIONS(2921), + [anon_sym_AMP_AMP] = ACTIONS(2921), + [anon_sym_AMP] = ACTIONS(2919), + [anon_sym_SEMI] = ACTIONS(2921), + [anon_sym___extension__] = ACTIONS(2919), + [anon_sym_typedef] = ACTIONS(2919), + [anon_sym_virtual] = ACTIONS(2919), + [anon_sym_extern] = ACTIONS(2919), + [anon_sym___attribute__] = ACTIONS(2919), + [anon_sym___attribute] = ACTIONS(2919), + [anon_sym_using] = ACTIONS(2919), + [anon_sym_COLON_COLON] = ACTIONS(2921), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2921), + [anon_sym___declspec] = ACTIONS(2919), + [anon_sym___based] = ACTIONS(2919), + [anon_sym___cdecl] = ACTIONS(2919), + [anon_sym___clrcall] = ACTIONS(2919), + [anon_sym___stdcall] = ACTIONS(2919), + [anon_sym___fastcall] = ACTIONS(2919), + [anon_sym___thiscall] = ACTIONS(2919), + [anon_sym___vectorcall] = ACTIONS(2919), + [anon_sym_LBRACE] = ACTIONS(2921), + [anon_sym_signed] = ACTIONS(2919), + [anon_sym_unsigned] = ACTIONS(2919), + [anon_sym_long] = ACTIONS(2919), + [anon_sym_short] = ACTIONS(2919), + [anon_sym_LBRACK] = ACTIONS(2919), + [anon_sym_static] = ACTIONS(2919), + [anon_sym_register] = ACTIONS(2919), + [anon_sym_inline] = ACTIONS(2919), + [anon_sym___inline] = ACTIONS(2919), + [anon_sym___inline__] = ACTIONS(2919), + [anon_sym___forceinline] = ACTIONS(2919), + [anon_sym_thread_local] = ACTIONS(2919), + [anon_sym___thread] = ACTIONS(2919), + [anon_sym_const] = ACTIONS(2919), + [anon_sym_constexpr] = ACTIONS(2919), + [anon_sym_volatile] = ACTIONS(2919), + [anon_sym_restrict] = ACTIONS(2919), + [anon_sym___restrict__] = ACTIONS(2919), + [anon_sym__Atomic] = ACTIONS(2919), + [anon_sym__Noreturn] = ACTIONS(2919), + [anon_sym_noreturn] = ACTIONS(2919), + [anon_sym__Nonnull] = ACTIONS(2919), + [anon_sym_mutable] = ACTIONS(2919), + [anon_sym_constinit] = ACTIONS(2919), + [anon_sym_consteval] = ACTIONS(2919), + [anon_sym_alignas] = ACTIONS(2919), + [anon_sym__Alignas] = ACTIONS(2919), + [sym_primitive_type] = ACTIONS(2919), + [anon_sym_enum] = ACTIONS(2919), + [anon_sym_class] = ACTIONS(2919), + [anon_sym_struct] = ACTIONS(2919), + [anon_sym_union] = ACTIONS(2919), + [anon_sym_if] = ACTIONS(2919), + [anon_sym_switch] = ACTIONS(2919), + [anon_sym_case] = ACTIONS(2919), + [anon_sym_default] = ACTIONS(2919), + [anon_sym_while] = ACTIONS(2919), + [anon_sym_do] = ACTIONS(2919), + [anon_sym_for] = ACTIONS(2919), + [anon_sym_return] = ACTIONS(2919), + [anon_sym_break] = ACTIONS(2919), + [anon_sym_continue] = ACTIONS(2919), + [anon_sym_goto] = ACTIONS(2919), + [anon_sym_not] = ACTIONS(2919), + [anon_sym_compl] = ACTIONS(2919), + [anon_sym_DASH_DASH] = ACTIONS(2921), + [anon_sym_PLUS_PLUS] = ACTIONS(2921), + [anon_sym_sizeof] = ACTIONS(2919), + [anon_sym___alignof__] = ACTIONS(2919), + [anon_sym___alignof] = ACTIONS(2919), + [anon_sym__alignof] = ACTIONS(2919), + [anon_sym_alignof] = ACTIONS(2919), + [anon_sym__Alignof] = ACTIONS(2919), + [anon_sym_offsetof] = ACTIONS(2919), + [anon_sym__Generic] = ACTIONS(2919), + [anon_sym_asm] = ACTIONS(2919), + [anon_sym___asm__] = ACTIONS(2919), + [anon_sym___asm] = ACTIONS(2919), + [sym_number_literal] = ACTIONS(2921), + [anon_sym_L_SQUOTE] = ACTIONS(2921), + [anon_sym_u_SQUOTE] = ACTIONS(2921), + [anon_sym_U_SQUOTE] = ACTIONS(2921), + [anon_sym_u8_SQUOTE] = ACTIONS(2921), + [anon_sym_SQUOTE] = ACTIONS(2921), + [anon_sym_L_DQUOTE] = ACTIONS(2921), + [anon_sym_u_DQUOTE] = ACTIONS(2921), + [anon_sym_U_DQUOTE] = ACTIONS(2921), + [anon_sym_u8_DQUOTE] = ACTIONS(2921), + [anon_sym_DQUOTE] = ACTIONS(2921), + [sym_true] = ACTIONS(2919), + [sym_false] = ACTIONS(2919), + [anon_sym_NULL] = ACTIONS(2919), + [anon_sym_nullptr] = ACTIONS(2919), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2767), - [anon_sym_decltype] = ACTIONS(2767), - [anon_sym_explicit] = ACTIONS(2767), - [anon_sym_typename] = ACTIONS(2767), - [anon_sym_template] = ACTIONS(2767), - [anon_sym_operator] = ACTIONS(2767), - [anon_sym_try] = ACTIONS(2767), - [anon_sym_delete] = ACTIONS(2767), - [anon_sym_throw] = ACTIONS(2767), - [anon_sym_namespace] = ACTIONS(2767), - [anon_sym_static_assert] = ACTIONS(2767), - [anon_sym_concept] = ACTIONS(2767), - [anon_sym_co_return] = ACTIONS(2767), - [anon_sym_co_yield] = ACTIONS(2767), - [anon_sym_R_DQUOTE] = ACTIONS(2769), - [anon_sym_LR_DQUOTE] = ACTIONS(2769), - [anon_sym_uR_DQUOTE] = ACTIONS(2769), - [anon_sym_UR_DQUOTE] = ACTIONS(2769), - [anon_sym_u8R_DQUOTE] = ACTIONS(2769), - [anon_sym_co_await] = ACTIONS(2767), - [anon_sym_new] = ACTIONS(2767), - [anon_sym_requires] = ACTIONS(2767), - [sym_this] = ACTIONS(2767), + [sym_auto] = ACTIONS(2919), + [anon_sym_decltype] = ACTIONS(2919), + [anon_sym_explicit] = ACTIONS(2919), + [anon_sym_typename] = ACTIONS(2919), + [anon_sym_export] = ACTIONS(2919), + [anon_sym_module] = ACTIONS(2919), + [anon_sym_import] = ACTIONS(2919), + [anon_sym_template] = ACTIONS(2919), + [anon_sym_operator] = ACTIONS(2919), + [anon_sym_try] = ACTIONS(2919), + [anon_sym_delete] = ACTIONS(2919), + [anon_sym_throw] = ACTIONS(2919), + [anon_sym_namespace] = ACTIONS(2919), + [anon_sym_static_assert] = ACTIONS(2919), + [anon_sym_concept] = ACTIONS(2919), + [anon_sym_co_return] = ACTIONS(2919), + [anon_sym_co_yield] = ACTIONS(2919), + [anon_sym_R_DQUOTE] = ACTIONS(2921), + [anon_sym_LR_DQUOTE] = ACTIONS(2921), + [anon_sym_uR_DQUOTE] = ACTIONS(2921), + [anon_sym_UR_DQUOTE] = ACTIONS(2921), + [anon_sym_u8R_DQUOTE] = ACTIONS(2921), + [anon_sym_co_await] = ACTIONS(2919), + [anon_sym_new] = ACTIONS(2919), + [anon_sym_requires] = ACTIONS(2919), + [sym_this] = ACTIONS(2919), }, - [605] = { - [ts_builtin_sym_end] = ACTIONS(2845), - [sym_identifier] = ACTIONS(2843), - [aux_sym_preproc_include_token1] = ACTIONS(2843), - [aux_sym_preproc_def_token1] = ACTIONS(2843), - [aux_sym_preproc_if_token1] = ACTIONS(2843), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2843), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2843), - [sym_preproc_directive] = ACTIONS(2843), - [anon_sym_LPAREN2] = ACTIONS(2845), - [anon_sym_BANG] = ACTIONS(2845), - [anon_sym_TILDE] = ACTIONS(2845), - [anon_sym_DASH] = ACTIONS(2843), - [anon_sym_PLUS] = ACTIONS(2843), - [anon_sym_STAR] = ACTIONS(2845), - [anon_sym_AMP_AMP] = ACTIONS(2845), - [anon_sym_AMP] = ACTIONS(2843), - [anon_sym_SEMI] = ACTIONS(2845), - [anon_sym___extension__] = ACTIONS(2843), - [anon_sym_typedef] = ACTIONS(2843), - [anon_sym_virtual] = ACTIONS(2843), - [anon_sym_extern] = ACTIONS(2843), - [anon_sym___attribute__] = ACTIONS(2843), - [anon_sym___attribute] = ACTIONS(2843), - [anon_sym_using] = ACTIONS(2843), - [anon_sym_COLON_COLON] = ACTIONS(2845), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2845), - [anon_sym___declspec] = ACTIONS(2843), - [anon_sym___based] = ACTIONS(2843), - [anon_sym___cdecl] = ACTIONS(2843), - [anon_sym___clrcall] = ACTIONS(2843), - [anon_sym___stdcall] = ACTIONS(2843), - [anon_sym___fastcall] = ACTIONS(2843), - [anon_sym___thiscall] = ACTIONS(2843), - [anon_sym___vectorcall] = ACTIONS(2843), - [anon_sym_LBRACE] = ACTIONS(2845), - [anon_sym_signed] = ACTIONS(2843), - [anon_sym_unsigned] = ACTIONS(2843), - [anon_sym_long] = ACTIONS(2843), - [anon_sym_short] = ACTIONS(2843), - [anon_sym_LBRACK] = ACTIONS(2843), - [anon_sym_static] = ACTIONS(2843), - [anon_sym_register] = ACTIONS(2843), - [anon_sym_inline] = ACTIONS(2843), - [anon_sym___inline] = ACTIONS(2843), - [anon_sym___inline__] = ACTIONS(2843), - [anon_sym___forceinline] = ACTIONS(2843), - [anon_sym_thread_local] = ACTIONS(2843), - [anon_sym___thread] = ACTIONS(2843), - [anon_sym_const] = ACTIONS(2843), - [anon_sym_constexpr] = ACTIONS(2843), - [anon_sym_volatile] = ACTIONS(2843), - [anon_sym_restrict] = ACTIONS(2843), - [anon_sym___restrict__] = ACTIONS(2843), - [anon_sym__Atomic] = ACTIONS(2843), - [anon_sym__Noreturn] = ACTIONS(2843), - [anon_sym_noreturn] = ACTIONS(2843), - [anon_sym__Nonnull] = ACTIONS(2843), - [anon_sym_mutable] = ACTIONS(2843), - [anon_sym_constinit] = ACTIONS(2843), - [anon_sym_consteval] = ACTIONS(2843), - [anon_sym_alignas] = ACTIONS(2843), - [anon_sym__Alignas] = ACTIONS(2843), - [sym_primitive_type] = ACTIONS(2843), - [anon_sym_enum] = ACTIONS(2843), - [anon_sym_class] = ACTIONS(2843), - [anon_sym_struct] = ACTIONS(2843), - [anon_sym_union] = ACTIONS(2843), - [anon_sym_if] = ACTIONS(2843), - [anon_sym_switch] = ACTIONS(2843), - [anon_sym_case] = ACTIONS(2843), - [anon_sym_default] = ACTIONS(2843), - [anon_sym_while] = ACTIONS(2843), - [anon_sym_do] = ACTIONS(2843), - [anon_sym_for] = ACTIONS(2843), - [anon_sym_return] = ACTIONS(2843), - [anon_sym_break] = ACTIONS(2843), - [anon_sym_continue] = ACTIONS(2843), - [anon_sym_goto] = ACTIONS(2843), - [anon_sym_not] = ACTIONS(2843), - [anon_sym_compl] = ACTIONS(2843), - [anon_sym_DASH_DASH] = ACTIONS(2845), - [anon_sym_PLUS_PLUS] = ACTIONS(2845), - [anon_sym_sizeof] = ACTIONS(2843), - [anon_sym___alignof__] = ACTIONS(2843), - [anon_sym___alignof] = ACTIONS(2843), - [anon_sym__alignof] = ACTIONS(2843), - [anon_sym_alignof] = ACTIONS(2843), - [anon_sym__Alignof] = ACTIONS(2843), - [anon_sym_offsetof] = ACTIONS(2843), - [anon_sym__Generic] = ACTIONS(2843), - [anon_sym_asm] = ACTIONS(2843), - [anon_sym___asm__] = ACTIONS(2843), - [anon_sym___asm] = ACTIONS(2843), - [sym_number_literal] = ACTIONS(2845), - [anon_sym_L_SQUOTE] = ACTIONS(2845), - [anon_sym_u_SQUOTE] = ACTIONS(2845), - [anon_sym_U_SQUOTE] = ACTIONS(2845), - [anon_sym_u8_SQUOTE] = ACTIONS(2845), - [anon_sym_SQUOTE] = ACTIONS(2845), - [anon_sym_L_DQUOTE] = ACTIONS(2845), - [anon_sym_u_DQUOTE] = ACTIONS(2845), - [anon_sym_U_DQUOTE] = ACTIONS(2845), - [anon_sym_u8_DQUOTE] = ACTIONS(2845), - [anon_sym_DQUOTE] = ACTIONS(2845), - [sym_true] = ACTIONS(2843), - [sym_false] = ACTIONS(2843), - [anon_sym_NULL] = ACTIONS(2843), - [anon_sym_nullptr] = ACTIONS(2843), + [612] = { + [sym_identifier] = ACTIONS(2735), + [aux_sym_preproc_include_token1] = ACTIONS(2735), + [aux_sym_preproc_def_token1] = ACTIONS(2735), + [aux_sym_preproc_if_token1] = ACTIONS(2735), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2735), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2735), + [sym_preproc_directive] = ACTIONS(2735), + [anon_sym_LPAREN2] = ACTIONS(2737), + [anon_sym_BANG] = ACTIONS(2737), + [anon_sym_TILDE] = ACTIONS(2737), + [anon_sym_DASH] = ACTIONS(2735), + [anon_sym_PLUS] = ACTIONS(2735), + [anon_sym_STAR] = ACTIONS(2737), + [anon_sym_AMP_AMP] = ACTIONS(2737), + [anon_sym_AMP] = ACTIONS(2735), + [anon_sym_SEMI] = ACTIONS(2737), + [anon_sym___extension__] = ACTIONS(2735), + [anon_sym_typedef] = ACTIONS(2735), + [anon_sym_virtual] = ACTIONS(2735), + [anon_sym_extern] = ACTIONS(2735), + [anon_sym___attribute__] = ACTIONS(2735), + [anon_sym___attribute] = ACTIONS(2735), + [anon_sym_using] = ACTIONS(2735), + [anon_sym_COLON_COLON] = ACTIONS(2737), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2737), + [anon_sym___declspec] = ACTIONS(2735), + [anon_sym___based] = ACTIONS(2735), + [anon_sym___cdecl] = ACTIONS(2735), + [anon_sym___clrcall] = ACTIONS(2735), + [anon_sym___stdcall] = ACTIONS(2735), + [anon_sym___fastcall] = ACTIONS(2735), + [anon_sym___thiscall] = ACTIONS(2735), + [anon_sym___vectorcall] = ACTIONS(2735), + [anon_sym_LBRACE] = ACTIONS(2737), + [anon_sym_RBRACE] = ACTIONS(2737), + [anon_sym_signed] = ACTIONS(2735), + [anon_sym_unsigned] = ACTIONS(2735), + [anon_sym_long] = ACTIONS(2735), + [anon_sym_short] = ACTIONS(2735), + [anon_sym_LBRACK] = ACTIONS(2735), + [anon_sym_static] = ACTIONS(2735), + [anon_sym_register] = ACTIONS(2735), + [anon_sym_inline] = ACTIONS(2735), + [anon_sym___inline] = ACTIONS(2735), + [anon_sym___inline__] = ACTIONS(2735), + [anon_sym___forceinline] = ACTIONS(2735), + [anon_sym_thread_local] = ACTIONS(2735), + [anon_sym___thread] = ACTIONS(2735), + [anon_sym_const] = ACTIONS(2735), + [anon_sym_constexpr] = ACTIONS(2735), + [anon_sym_volatile] = ACTIONS(2735), + [anon_sym_restrict] = ACTIONS(2735), + [anon_sym___restrict__] = ACTIONS(2735), + [anon_sym__Atomic] = ACTIONS(2735), + [anon_sym__Noreturn] = ACTIONS(2735), + [anon_sym_noreturn] = ACTIONS(2735), + [anon_sym__Nonnull] = ACTIONS(2735), + [anon_sym_mutable] = ACTIONS(2735), + [anon_sym_constinit] = ACTIONS(2735), + [anon_sym_consteval] = ACTIONS(2735), + [anon_sym_alignas] = ACTIONS(2735), + [anon_sym__Alignas] = ACTIONS(2735), + [sym_primitive_type] = ACTIONS(2735), + [anon_sym_enum] = ACTIONS(2735), + [anon_sym_class] = ACTIONS(2735), + [anon_sym_struct] = ACTIONS(2735), + [anon_sym_union] = ACTIONS(2735), + [anon_sym_if] = ACTIONS(2735), + [anon_sym_else] = ACTIONS(2735), + [anon_sym_switch] = ACTIONS(2735), + [anon_sym_case] = ACTIONS(2735), + [anon_sym_default] = ACTIONS(2735), + [anon_sym_while] = ACTIONS(2735), + [anon_sym_do] = ACTIONS(2735), + [anon_sym_for] = ACTIONS(2735), + [anon_sym_return] = ACTIONS(2735), + [anon_sym_break] = ACTIONS(2735), + [anon_sym_continue] = ACTIONS(2735), + [anon_sym_goto] = ACTIONS(2735), + [anon_sym___try] = ACTIONS(2735), + [anon_sym___leave] = ACTIONS(2735), + [anon_sym_not] = ACTIONS(2735), + [anon_sym_compl] = ACTIONS(2735), + [anon_sym_DASH_DASH] = ACTIONS(2737), + [anon_sym_PLUS_PLUS] = ACTIONS(2737), + [anon_sym_sizeof] = ACTIONS(2735), + [anon_sym___alignof__] = ACTIONS(2735), + [anon_sym___alignof] = ACTIONS(2735), + [anon_sym__alignof] = ACTIONS(2735), + [anon_sym_alignof] = ACTIONS(2735), + [anon_sym__Alignof] = ACTIONS(2735), + [anon_sym_offsetof] = ACTIONS(2735), + [anon_sym__Generic] = ACTIONS(2735), + [anon_sym_asm] = ACTIONS(2735), + [anon_sym___asm__] = ACTIONS(2735), + [anon_sym___asm] = ACTIONS(2735), + [sym_number_literal] = ACTIONS(2737), + [anon_sym_L_SQUOTE] = ACTIONS(2737), + [anon_sym_u_SQUOTE] = ACTIONS(2737), + [anon_sym_U_SQUOTE] = ACTIONS(2737), + [anon_sym_u8_SQUOTE] = ACTIONS(2737), + [anon_sym_SQUOTE] = ACTIONS(2737), + [anon_sym_L_DQUOTE] = ACTIONS(2737), + [anon_sym_u_DQUOTE] = ACTIONS(2737), + [anon_sym_U_DQUOTE] = ACTIONS(2737), + [anon_sym_u8_DQUOTE] = ACTIONS(2737), + [anon_sym_DQUOTE] = ACTIONS(2737), + [sym_true] = ACTIONS(2735), + [sym_false] = ACTIONS(2735), + [anon_sym_NULL] = ACTIONS(2735), + [anon_sym_nullptr] = ACTIONS(2735), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2843), - [anon_sym_decltype] = ACTIONS(2843), - [anon_sym_explicit] = ACTIONS(2843), - [anon_sym_typename] = ACTIONS(2843), - [anon_sym_export] = ACTIONS(2843), - [anon_sym_module] = ACTIONS(2843), - [anon_sym_import] = ACTIONS(2843), - [anon_sym_template] = ACTIONS(2843), - [anon_sym_operator] = ACTIONS(2843), - [anon_sym_try] = ACTIONS(2843), - [anon_sym_delete] = ACTIONS(2843), - [anon_sym_throw] = ACTIONS(2843), - [anon_sym_namespace] = ACTIONS(2843), - [anon_sym_static_assert] = ACTIONS(2843), - [anon_sym_concept] = ACTIONS(2843), - [anon_sym_co_return] = ACTIONS(2843), - [anon_sym_co_yield] = ACTIONS(2843), - [anon_sym_R_DQUOTE] = ACTIONS(2845), - [anon_sym_LR_DQUOTE] = ACTIONS(2845), - [anon_sym_uR_DQUOTE] = ACTIONS(2845), - [anon_sym_UR_DQUOTE] = ACTIONS(2845), - [anon_sym_u8R_DQUOTE] = ACTIONS(2845), - [anon_sym_co_await] = ACTIONS(2843), - [anon_sym_new] = ACTIONS(2843), - [anon_sym_requires] = ACTIONS(2843), - [sym_this] = ACTIONS(2843), + [sym_auto] = ACTIONS(2735), + [anon_sym_decltype] = ACTIONS(2735), + [anon_sym_explicit] = ACTIONS(2735), + [anon_sym_typename] = ACTIONS(2735), + [anon_sym_template] = ACTIONS(2735), + [anon_sym_operator] = ACTIONS(2735), + [anon_sym_try] = ACTIONS(2735), + [anon_sym_delete] = ACTIONS(2735), + [anon_sym_throw] = ACTIONS(2735), + [anon_sym_namespace] = ACTIONS(2735), + [anon_sym_static_assert] = ACTIONS(2735), + [anon_sym_concept] = ACTIONS(2735), + [anon_sym_co_return] = ACTIONS(2735), + [anon_sym_co_yield] = ACTIONS(2735), + [anon_sym_R_DQUOTE] = ACTIONS(2737), + [anon_sym_LR_DQUOTE] = ACTIONS(2737), + [anon_sym_uR_DQUOTE] = ACTIONS(2737), + [anon_sym_UR_DQUOTE] = ACTIONS(2737), + [anon_sym_u8R_DQUOTE] = ACTIONS(2737), + [anon_sym_co_await] = ACTIONS(2735), + [anon_sym_new] = ACTIONS(2735), + [anon_sym_requires] = ACTIONS(2735), + [sym_this] = ACTIONS(2735), }, - [606] = { - [ts_builtin_sym_end] = ACTIONS(2905), - [sym_identifier] = ACTIONS(2903), - [aux_sym_preproc_include_token1] = ACTIONS(2903), - [aux_sym_preproc_def_token1] = ACTIONS(2903), - [aux_sym_preproc_if_token1] = ACTIONS(2903), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2903), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2903), - [sym_preproc_directive] = ACTIONS(2903), - [anon_sym_LPAREN2] = ACTIONS(2905), - [anon_sym_BANG] = ACTIONS(2905), - [anon_sym_TILDE] = ACTIONS(2905), - [anon_sym_DASH] = ACTIONS(2903), - [anon_sym_PLUS] = ACTIONS(2903), - [anon_sym_STAR] = ACTIONS(2905), - [anon_sym_AMP_AMP] = ACTIONS(2905), - [anon_sym_AMP] = ACTIONS(2903), - [anon_sym_SEMI] = ACTIONS(2905), - [anon_sym___extension__] = ACTIONS(2903), - [anon_sym_typedef] = ACTIONS(2903), - [anon_sym_virtual] = ACTIONS(2903), - [anon_sym_extern] = ACTIONS(2903), - [anon_sym___attribute__] = ACTIONS(2903), - [anon_sym___attribute] = ACTIONS(2903), - [anon_sym_using] = ACTIONS(2903), - [anon_sym_COLON_COLON] = ACTIONS(2905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2905), - [anon_sym___declspec] = ACTIONS(2903), - [anon_sym___based] = ACTIONS(2903), - [anon_sym___cdecl] = ACTIONS(2903), - [anon_sym___clrcall] = ACTIONS(2903), - [anon_sym___stdcall] = ACTIONS(2903), - [anon_sym___fastcall] = ACTIONS(2903), - [anon_sym___thiscall] = ACTIONS(2903), - [anon_sym___vectorcall] = ACTIONS(2903), - [anon_sym_LBRACE] = ACTIONS(2905), - [anon_sym_signed] = ACTIONS(2903), - [anon_sym_unsigned] = ACTIONS(2903), - [anon_sym_long] = ACTIONS(2903), - [anon_sym_short] = ACTIONS(2903), - [anon_sym_LBRACK] = ACTIONS(2903), - [anon_sym_static] = ACTIONS(2903), - [anon_sym_register] = ACTIONS(2903), - [anon_sym_inline] = ACTIONS(2903), - [anon_sym___inline] = ACTIONS(2903), - [anon_sym___inline__] = ACTIONS(2903), - [anon_sym___forceinline] = ACTIONS(2903), - [anon_sym_thread_local] = ACTIONS(2903), - [anon_sym___thread] = ACTIONS(2903), - [anon_sym_const] = ACTIONS(2903), - [anon_sym_constexpr] = ACTIONS(2903), - [anon_sym_volatile] = ACTIONS(2903), - [anon_sym_restrict] = ACTIONS(2903), - [anon_sym___restrict__] = ACTIONS(2903), - [anon_sym__Atomic] = ACTIONS(2903), - [anon_sym__Noreturn] = ACTIONS(2903), - [anon_sym_noreturn] = ACTIONS(2903), - [anon_sym__Nonnull] = ACTIONS(2903), - [anon_sym_mutable] = ACTIONS(2903), - [anon_sym_constinit] = ACTIONS(2903), - [anon_sym_consteval] = ACTIONS(2903), - [anon_sym_alignas] = ACTIONS(2903), - [anon_sym__Alignas] = ACTIONS(2903), - [sym_primitive_type] = ACTIONS(2903), - [anon_sym_enum] = ACTIONS(2903), - [anon_sym_class] = ACTIONS(2903), - [anon_sym_struct] = ACTIONS(2903), - [anon_sym_union] = ACTIONS(2903), - [anon_sym_if] = ACTIONS(2903), - [anon_sym_switch] = ACTIONS(2903), - [anon_sym_case] = ACTIONS(2903), - [anon_sym_default] = ACTIONS(2903), - [anon_sym_while] = ACTIONS(2903), - [anon_sym_do] = ACTIONS(2903), - [anon_sym_for] = ACTIONS(2903), - [anon_sym_return] = ACTIONS(2903), - [anon_sym_break] = ACTIONS(2903), - [anon_sym_continue] = ACTIONS(2903), - [anon_sym_goto] = ACTIONS(2903), - [anon_sym_not] = ACTIONS(2903), - [anon_sym_compl] = ACTIONS(2903), - [anon_sym_DASH_DASH] = ACTIONS(2905), - [anon_sym_PLUS_PLUS] = ACTIONS(2905), - [anon_sym_sizeof] = ACTIONS(2903), - [anon_sym___alignof__] = ACTIONS(2903), - [anon_sym___alignof] = ACTIONS(2903), - [anon_sym__alignof] = ACTIONS(2903), - [anon_sym_alignof] = ACTIONS(2903), - [anon_sym__Alignof] = ACTIONS(2903), - [anon_sym_offsetof] = ACTIONS(2903), - [anon_sym__Generic] = ACTIONS(2903), - [anon_sym_asm] = ACTIONS(2903), - [anon_sym___asm__] = ACTIONS(2903), - [anon_sym___asm] = ACTIONS(2903), - [sym_number_literal] = ACTIONS(2905), - [anon_sym_L_SQUOTE] = ACTIONS(2905), - [anon_sym_u_SQUOTE] = ACTIONS(2905), - [anon_sym_U_SQUOTE] = ACTIONS(2905), - [anon_sym_u8_SQUOTE] = ACTIONS(2905), - [anon_sym_SQUOTE] = ACTIONS(2905), - [anon_sym_L_DQUOTE] = ACTIONS(2905), - [anon_sym_u_DQUOTE] = ACTIONS(2905), - [anon_sym_U_DQUOTE] = ACTIONS(2905), - [anon_sym_u8_DQUOTE] = ACTIONS(2905), - [anon_sym_DQUOTE] = ACTIONS(2905), - [sym_true] = ACTIONS(2903), - [sym_false] = ACTIONS(2903), - [anon_sym_NULL] = ACTIONS(2903), - [anon_sym_nullptr] = ACTIONS(2903), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2903), - [anon_sym_decltype] = ACTIONS(2903), - [anon_sym_explicit] = ACTIONS(2903), - [anon_sym_typename] = ACTIONS(2903), - [anon_sym_export] = ACTIONS(2903), - [anon_sym_module] = ACTIONS(2903), - [anon_sym_import] = ACTIONS(2903), - [anon_sym_template] = ACTIONS(2903), - [anon_sym_operator] = ACTIONS(2903), - [anon_sym_try] = ACTIONS(2903), - [anon_sym_delete] = ACTIONS(2903), - [anon_sym_throw] = ACTIONS(2903), - [anon_sym_namespace] = ACTIONS(2903), - [anon_sym_static_assert] = ACTIONS(2903), - [anon_sym_concept] = ACTIONS(2903), - [anon_sym_co_return] = ACTIONS(2903), - [anon_sym_co_yield] = ACTIONS(2903), - [anon_sym_R_DQUOTE] = ACTIONS(2905), - [anon_sym_LR_DQUOTE] = ACTIONS(2905), - [anon_sym_uR_DQUOTE] = ACTIONS(2905), - [anon_sym_UR_DQUOTE] = ACTIONS(2905), - [anon_sym_u8R_DQUOTE] = ACTIONS(2905), - [anon_sym_co_await] = ACTIONS(2903), - [anon_sym_new] = ACTIONS(2903), - [anon_sym_requires] = ACTIONS(2903), - [sym_this] = ACTIONS(2903), + [613] = { + [sym_identifier] = ACTIONS(2663), + [aux_sym_preproc_include_token1] = ACTIONS(2663), + [aux_sym_preproc_def_token1] = ACTIONS(2663), + [aux_sym_preproc_if_token1] = ACTIONS(2663), + [aux_sym_preproc_if_token2] = ACTIONS(2663), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2663), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2663), + [sym_preproc_directive] = ACTIONS(2663), + [anon_sym_LPAREN2] = ACTIONS(2665), + [anon_sym_BANG] = ACTIONS(2665), + [anon_sym_TILDE] = ACTIONS(2665), + [anon_sym_DASH] = ACTIONS(2663), + [anon_sym_PLUS] = ACTIONS(2663), + [anon_sym_STAR] = ACTIONS(2665), + [anon_sym_AMP_AMP] = ACTIONS(2665), + [anon_sym_AMP] = ACTIONS(2663), + [anon_sym_SEMI] = ACTIONS(2665), + [anon_sym___extension__] = ACTIONS(2663), + [anon_sym_typedef] = ACTIONS(2663), + [anon_sym_virtual] = ACTIONS(2663), + [anon_sym_extern] = ACTIONS(2663), + [anon_sym___attribute__] = ACTIONS(2663), + [anon_sym___attribute] = ACTIONS(2663), + [anon_sym_using] = ACTIONS(2663), + [anon_sym_COLON_COLON] = ACTIONS(2665), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2665), + [anon_sym___declspec] = ACTIONS(2663), + [anon_sym___based] = ACTIONS(2663), + [anon_sym___cdecl] = ACTIONS(2663), + [anon_sym___clrcall] = ACTIONS(2663), + [anon_sym___stdcall] = ACTIONS(2663), + [anon_sym___fastcall] = ACTIONS(2663), + [anon_sym___thiscall] = ACTIONS(2663), + [anon_sym___vectorcall] = ACTIONS(2663), + [anon_sym_LBRACE] = ACTIONS(2665), + [anon_sym_signed] = ACTIONS(2663), + [anon_sym_unsigned] = ACTIONS(2663), + [anon_sym_long] = ACTIONS(2663), + [anon_sym_short] = ACTIONS(2663), + [anon_sym_LBRACK] = ACTIONS(2663), + [anon_sym_static] = ACTIONS(2663), + [anon_sym_register] = ACTIONS(2663), + [anon_sym_inline] = ACTIONS(2663), + [anon_sym___inline] = ACTIONS(2663), + [anon_sym___inline__] = ACTIONS(2663), + [anon_sym___forceinline] = ACTIONS(2663), + [anon_sym_thread_local] = ACTIONS(2663), + [anon_sym___thread] = ACTIONS(2663), + [anon_sym_const] = ACTIONS(2663), + [anon_sym_constexpr] = ACTIONS(2663), + [anon_sym_volatile] = ACTIONS(2663), + [anon_sym_restrict] = ACTIONS(2663), + [anon_sym___restrict__] = ACTIONS(2663), + [anon_sym__Atomic] = ACTIONS(2663), + [anon_sym__Noreturn] = ACTIONS(2663), + [anon_sym_noreturn] = ACTIONS(2663), + [anon_sym__Nonnull] = ACTIONS(2663), + [anon_sym_mutable] = ACTIONS(2663), + [anon_sym_constinit] = ACTIONS(2663), + [anon_sym_consteval] = ACTIONS(2663), + [anon_sym_alignas] = ACTIONS(2663), + [anon_sym__Alignas] = ACTIONS(2663), + [sym_primitive_type] = ACTIONS(2663), + [anon_sym_enum] = ACTIONS(2663), + [anon_sym_class] = ACTIONS(2663), + [anon_sym_struct] = ACTIONS(2663), + [anon_sym_union] = ACTIONS(2663), + [anon_sym_if] = ACTIONS(2663), + [anon_sym_else] = ACTIONS(2663), + [anon_sym_switch] = ACTIONS(2663), + [anon_sym_case] = ACTIONS(2663), + [anon_sym_default] = ACTIONS(2663), + [anon_sym_while] = ACTIONS(2663), + [anon_sym_do] = ACTIONS(2663), + [anon_sym_for] = ACTIONS(2663), + [anon_sym_return] = ACTIONS(2663), + [anon_sym_break] = ACTIONS(2663), + [anon_sym_continue] = ACTIONS(2663), + [anon_sym_goto] = ACTIONS(2663), + [anon_sym___try] = ACTIONS(2663), + [anon_sym___leave] = ACTIONS(2663), + [anon_sym_not] = ACTIONS(2663), + [anon_sym_compl] = ACTIONS(2663), + [anon_sym_DASH_DASH] = ACTIONS(2665), + [anon_sym_PLUS_PLUS] = ACTIONS(2665), + [anon_sym_sizeof] = ACTIONS(2663), + [anon_sym___alignof__] = ACTIONS(2663), + [anon_sym___alignof] = ACTIONS(2663), + [anon_sym__alignof] = ACTIONS(2663), + [anon_sym_alignof] = ACTIONS(2663), + [anon_sym__Alignof] = ACTIONS(2663), + [anon_sym_offsetof] = ACTIONS(2663), + [anon_sym__Generic] = ACTIONS(2663), + [anon_sym_asm] = ACTIONS(2663), + [anon_sym___asm__] = ACTIONS(2663), + [anon_sym___asm] = ACTIONS(2663), + [sym_number_literal] = ACTIONS(2665), + [anon_sym_L_SQUOTE] = ACTIONS(2665), + [anon_sym_u_SQUOTE] = ACTIONS(2665), + [anon_sym_U_SQUOTE] = ACTIONS(2665), + [anon_sym_u8_SQUOTE] = ACTIONS(2665), + [anon_sym_SQUOTE] = ACTIONS(2665), + [anon_sym_L_DQUOTE] = ACTIONS(2665), + [anon_sym_u_DQUOTE] = ACTIONS(2665), + [anon_sym_U_DQUOTE] = ACTIONS(2665), + [anon_sym_u8_DQUOTE] = ACTIONS(2665), + [anon_sym_DQUOTE] = ACTIONS(2665), + [sym_true] = ACTIONS(2663), + [sym_false] = ACTIONS(2663), + [anon_sym_NULL] = ACTIONS(2663), + [anon_sym_nullptr] = ACTIONS(2663), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2663), + [anon_sym_decltype] = ACTIONS(2663), + [anon_sym_explicit] = ACTIONS(2663), + [anon_sym_typename] = ACTIONS(2663), + [anon_sym_template] = ACTIONS(2663), + [anon_sym_operator] = ACTIONS(2663), + [anon_sym_try] = ACTIONS(2663), + [anon_sym_delete] = ACTIONS(2663), + [anon_sym_throw] = ACTIONS(2663), + [anon_sym_namespace] = ACTIONS(2663), + [anon_sym_static_assert] = ACTIONS(2663), + [anon_sym_concept] = ACTIONS(2663), + [anon_sym_co_return] = ACTIONS(2663), + [anon_sym_co_yield] = ACTIONS(2663), + [anon_sym_R_DQUOTE] = ACTIONS(2665), + [anon_sym_LR_DQUOTE] = ACTIONS(2665), + [anon_sym_uR_DQUOTE] = ACTIONS(2665), + [anon_sym_UR_DQUOTE] = ACTIONS(2665), + [anon_sym_u8R_DQUOTE] = ACTIONS(2665), + [anon_sym_co_await] = ACTIONS(2663), + [anon_sym_new] = ACTIONS(2663), + [anon_sym_requires] = ACTIONS(2663), + [sym_this] = ACTIONS(2663), }, - [607] = { - [sym_identifier] = ACTIONS(2699), - [aux_sym_preproc_include_token1] = ACTIONS(2699), - [aux_sym_preproc_def_token1] = ACTIONS(2699), - [aux_sym_preproc_if_token1] = ACTIONS(2699), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2699), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2699), - [sym_preproc_directive] = ACTIONS(2699), - [anon_sym_LPAREN2] = ACTIONS(2701), - [anon_sym_BANG] = ACTIONS(2701), - [anon_sym_TILDE] = ACTIONS(2701), - [anon_sym_DASH] = ACTIONS(2699), - [anon_sym_PLUS] = ACTIONS(2699), - [anon_sym_STAR] = ACTIONS(2701), - [anon_sym_AMP_AMP] = ACTIONS(2701), - [anon_sym_AMP] = ACTIONS(2699), - [anon_sym_SEMI] = ACTIONS(2701), - [anon_sym___extension__] = ACTIONS(2699), - [anon_sym_typedef] = ACTIONS(2699), - [anon_sym_virtual] = ACTIONS(2699), - [anon_sym_extern] = ACTIONS(2699), - [anon_sym___attribute__] = ACTIONS(2699), - [anon_sym___attribute] = ACTIONS(2699), - [anon_sym_using] = ACTIONS(2699), - [anon_sym_COLON_COLON] = ACTIONS(2701), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2701), - [anon_sym___declspec] = ACTIONS(2699), - [anon_sym___based] = ACTIONS(2699), - [anon_sym___cdecl] = ACTIONS(2699), - [anon_sym___clrcall] = ACTIONS(2699), - [anon_sym___stdcall] = ACTIONS(2699), - [anon_sym___fastcall] = ACTIONS(2699), - [anon_sym___thiscall] = ACTIONS(2699), - [anon_sym___vectorcall] = ACTIONS(2699), - [anon_sym_LBRACE] = ACTIONS(2701), - [anon_sym_RBRACE] = ACTIONS(2701), - [anon_sym_signed] = ACTIONS(2699), - [anon_sym_unsigned] = ACTIONS(2699), - [anon_sym_long] = ACTIONS(2699), - [anon_sym_short] = ACTIONS(2699), - [anon_sym_LBRACK] = ACTIONS(2699), - [anon_sym_static] = ACTIONS(2699), - [anon_sym_register] = ACTIONS(2699), - [anon_sym_inline] = ACTIONS(2699), - [anon_sym___inline] = ACTIONS(2699), - [anon_sym___inline__] = ACTIONS(2699), - [anon_sym___forceinline] = ACTIONS(2699), - [anon_sym_thread_local] = ACTIONS(2699), - [anon_sym___thread] = ACTIONS(2699), - [anon_sym_const] = ACTIONS(2699), - [anon_sym_constexpr] = ACTIONS(2699), - [anon_sym_volatile] = ACTIONS(2699), - [anon_sym_restrict] = ACTIONS(2699), - [anon_sym___restrict__] = ACTIONS(2699), - [anon_sym__Atomic] = ACTIONS(2699), - [anon_sym__Noreturn] = ACTIONS(2699), - [anon_sym_noreturn] = ACTIONS(2699), - [anon_sym__Nonnull] = ACTIONS(2699), - [anon_sym_mutable] = ACTIONS(2699), - [anon_sym_constinit] = ACTIONS(2699), - [anon_sym_consteval] = ACTIONS(2699), - [anon_sym_alignas] = ACTIONS(2699), - [anon_sym__Alignas] = ACTIONS(2699), - [sym_primitive_type] = ACTIONS(2699), - [anon_sym_enum] = ACTIONS(2699), - [anon_sym_class] = ACTIONS(2699), - [anon_sym_struct] = ACTIONS(2699), - [anon_sym_union] = ACTIONS(2699), - [anon_sym_if] = ACTIONS(2699), - [anon_sym_else] = ACTIONS(2699), - [anon_sym_switch] = ACTIONS(2699), - [anon_sym_case] = ACTIONS(2699), - [anon_sym_default] = ACTIONS(2699), - [anon_sym_while] = ACTIONS(2699), - [anon_sym_do] = ACTIONS(2699), - [anon_sym_for] = ACTIONS(2699), - [anon_sym_return] = ACTIONS(2699), - [anon_sym_break] = ACTIONS(2699), - [anon_sym_continue] = ACTIONS(2699), - [anon_sym_goto] = ACTIONS(2699), - [anon_sym___try] = ACTIONS(2699), - [anon_sym___leave] = ACTIONS(2699), - [anon_sym_not] = ACTIONS(2699), - [anon_sym_compl] = ACTIONS(2699), - [anon_sym_DASH_DASH] = ACTIONS(2701), - [anon_sym_PLUS_PLUS] = ACTIONS(2701), - [anon_sym_sizeof] = ACTIONS(2699), - [anon_sym___alignof__] = ACTIONS(2699), - [anon_sym___alignof] = ACTIONS(2699), - [anon_sym__alignof] = ACTIONS(2699), - [anon_sym_alignof] = ACTIONS(2699), - [anon_sym__Alignof] = ACTIONS(2699), - [anon_sym_offsetof] = ACTIONS(2699), - [anon_sym__Generic] = ACTIONS(2699), - [anon_sym_asm] = ACTIONS(2699), - [anon_sym___asm__] = ACTIONS(2699), - [anon_sym___asm] = ACTIONS(2699), - [sym_number_literal] = ACTIONS(2701), - [anon_sym_L_SQUOTE] = ACTIONS(2701), - [anon_sym_u_SQUOTE] = ACTIONS(2701), - [anon_sym_U_SQUOTE] = ACTIONS(2701), - [anon_sym_u8_SQUOTE] = ACTIONS(2701), - [anon_sym_SQUOTE] = ACTIONS(2701), - [anon_sym_L_DQUOTE] = ACTIONS(2701), - [anon_sym_u_DQUOTE] = ACTIONS(2701), - [anon_sym_U_DQUOTE] = ACTIONS(2701), - [anon_sym_u8_DQUOTE] = ACTIONS(2701), - [anon_sym_DQUOTE] = ACTIONS(2701), - [sym_true] = ACTIONS(2699), - [sym_false] = ACTIONS(2699), - [anon_sym_NULL] = ACTIONS(2699), - [anon_sym_nullptr] = ACTIONS(2699), + [614] = { + [sym_identifier] = ACTIONS(2663), + [aux_sym_preproc_include_token1] = ACTIONS(2663), + [aux_sym_preproc_def_token1] = ACTIONS(2663), + [aux_sym_preproc_if_token1] = ACTIONS(2663), + [aux_sym_preproc_if_token2] = ACTIONS(2663), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2663), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2663), + [sym_preproc_directive] = ACTIONS(2663), + [anon_sym_LPAREN2] = ACTIONS(2665), + [anon_sym_BANG] = ACTIONS(2665), + [anon_sym_TILDE] = ACTIONS(2665), + [anon_sym_DASH] = ACTIONS(2663), + [anon_sym_PLUS] = ACTIONS(2663), + [anon_sym_STAR] = ACTIONS(2665), + [anon_sym_AMP_AMP] = ACTIONS(2665), + [anon_sym_AMP] = ACTIONS(2663), + [anon_sym_SEMI] = ACTIONS(2665), + [anon_sym___extension__] = ACTIONS(2663), + [anon_sym_typedef] = ACTIONS(2663), + [anon_sym_virtual] = ACTIONS(2663), + [anon_sym_extern] = ACTIONS(2663), + [anon_sym___attribute__] = ACTIONS(2663), + [anon_sym___attribute] = ACTIONS(2663), + [anon_sym_using] = ACTIONS(2663), + [anon_sym_COLON_COLON] = ACTIONS(2665), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2665), + [anon_sym___declspec] = ACTIONS(2663), + [anon_sym___based] = ACTIONS(2663), + [anon_sym___cdecl] = ACTIONS(2663), + [anon_sym___clrcall] = ACTIONS(2663), + [anon_sym___stdcall] = ACTIONS(2663), + [anon_sym___fastcall] = ACTIONS(2663), + [anon_sym___thiscall] = ACTIONS(2663), + [anon_sym___vectorcall] = ACTIONS(2663), + [anon_sym_LBRACE] = ACTIONS(2665), + [anon_sym_signed] = ACTIONS(2663), + [anon_sym_unsigned] = ACTIONS(2663), + [anon_sym_long] = ACTIONS(2663), + [anon_sym_short] = ACTIONS(2663), + [anon_sym_LBRACK] = ACTIONS(2663), + [anon_sym_static] = ACTIONS(2663), + [anon_sym_register] = ACTIONS(2663), + [anon_sym_inline] = ACTIONS(2663), + [anon_sym___inline] = ACTIONS(2663), + [anon_sym___inline__] = ACTIONS(2663), + [anon_sym___forceinline] = ACTIONS(2663), + [anon_sym_thread_local] = ACTIONS(2663), + [anon_sym___thread] = ACTIONS(2663), + [anon_sym_const] = ACTIONS(2663), + [anon_sym_constexpr] = ACTIONS(2663), + [anon_sym_volatile] = ACTIONS(2663), + [anon_sym_restrict] = ACTIONS(2663), + [anon_sym___restrict__] = ACTIONS(2663), + [anon_sym__Atomic] = ACTIONS(2663), + [anon_sym__Noreturn] = ACTIONS(2663), + [anon_sym_noreturn] = ACTIONS(2663), + [anon_sym__Nonnull] = ACTIONS(2663), + [anon_sym_mutable] = ACTIONS(2663), + [anon_sym_constinit] = ACTIONS(2663), + [anon_sym_consteval] = ACTIONS(2663), + [anon_sym_alignas] = ACTIONS(2663), + [anon_sym__Alignas] = ACTIONS(2663), + [sym_primitive_type] = ACTIONS(2663), + [anon_sym_enum] = ACTIONS(2663), + [anon_sym_class] = ACTIONS(2663), + [anon_sym_struct] = ACTIONS(2663), + [anon_sym_union] = ACTIONS(2663), + [anon_sym_if] = ACTIONS(2663), + [anon_sym_else] = ACTIONS(2663), + [anon_sym_switch] = ACTIONS(2663), + [anon_sym_case] = ACTIONS(2663), + [anon_sym_default] = ACTIONS(2663), + [anon_sym_while] = ACTIONS(2663), + [anon_sym_do] = ACTIONS(2663), + [anon_sym_for] = ACTIONS(2663), + [anon_sym_return] = ACTIONS(2663), + [anon_sym_break] = ACTIONS(2663), + [anon_sym_continue] = ACTIONS(2663), + [anon_sym_goto] = ACTIONS(2663), + [anon_sym___try] = ACTIONS(2663), + [anon_sym___leave] = ACTIONS(2663), + [anon_sym_not] = ACTIONS(2663), + [anon_sym_compl] = ACTIONS(2663), + [anon_sym_DASH_DASH] = ACTIONS(2665), + [anon_sym_PLUS_PLUS] = ACTIONS(2665), + [anon_sym_sizeof] = ACTIONS(2663), + [anon_sym___alignof__] = ACTIONS(2663), + [anon_sym___alignof] = ACTIONS(2663), + [anon_sym__alignof] = ACTIONS(2663), + [anon_sym_alignof] = ACTIONS(2663), + [anon_sym__Alignof] = ACTIONS(2663), + [anon_sym_offsetof] = ACTIONS(2663), + [anon_sym__Generic] = ACTIONS(2663), + [anon_sym_asm] = ACTIONS(2663), + [anon_sym___asm__] = ACTIONS(2663), + [anon_sym___asm] = ACTIONS(2663), + [sym_number_literal] = ACTIONS(2665), + [anon_sym_L_SQUOTE] = ACTIONS(2665), + [anon_sym_u_SQUOTE] = ACTIONS(2665), + [anon_sym_U_SQUOTE] = ACTIONS(2665), + [anon_sym_u8_SQUOTE] = ACTIONS(2665), + [anon_sym_SQUOTE] = ACTIONS(2665), + [anon_sym_L_DQUOTE] = ACTIONS(2665), + [anon_sym_u_DQUOTE] = ACTIONS(2665), + [anon_sym_U_DQUOTE] = ACTIONS(2665), + [anon_sym_u8_DQUOTE] = ACTIONS(2665), + [anon_sym_DQUOTE] = ACTIONS(2665), + [sym_true] = ACTIONS(2663), + [sym_false] = ACTIONS(2663), + [anon_sym_NULL] = ACTIONS(2663), + [anon_sym_nullptr] = ACTIONS(2663), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2663), + [anon_sym_decltype] = ACTIONS(2663), + [anon_sym_explicit] = ACTIONS(2663), + [anon_sym_typename] = ACTIONS(2663), + [anon_sym_template] = ACTIONS(2663), + [anon_sym_operator] = ACTIONS(2663), + [anon_sym_try] = ACTIONS(2663), + [anon_sym_delete] = ACTIONS(2663), + [anon_sym_throw] = ACTIONS(2663), + [anon_sym_namespace] = ACTIONS(2663), + [anon_sym_static_assert] = ACTIONS(2663), + [anon_sym_concept] = ACTIONS(2663), + [anon_sym_co_return] = ACTIONS(2663), + [anon_sym_co_yield] = ACTIONS(2663), + [anon_sym_R_DQUOTE] = ACTIONS(2665), + [anon_sym_LR_DQUOTE] = ACTIONS(2665), + [anon_sym_uR_DQUOTE] = ACTIONS(2665), + [anon_sym_UR_DQUOTE] = ACTIONS(2665), + [anon_sym_u8R_DQUOTE] = ACTIONS(2665), + [anon_sym_co_await] = ACTIONS(2663), + [anon_sym_new] = ACTIONS(2663), + [anon_sym_requires] = ACTIONS(2663), + [sym_this] = ACTIONS(2663), + }, + [615] = { + [sym_identifier] = ACTIONS(2731), + [aux_sym_preproc_include_token1] = ACTIONS(2731), + [aux_sym_preproc_def_token1] = ACTIONS(2731), + [aux_sym_preproc_if_token1] = ACTIONS(2731), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2731), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2731), + [sym_preproc_directive] = ACTIONS(2731), + [anon_sym_LPAREN2] = ACTIONS(2733), + [anon_sym_BANG] = ACTIONS(2733), + [anon_sym_TILDE] = ACTIONS(2733), + [anon_sym_DASH] = ACTIONS(2731), + [anon_sym_PLUS] = ACTIONS(2731), + [anon_sym_STAR] = ACTIONS(2733), + [anon_sym_AMP_AMP] = ACTIONS(2733), + [anon_sym_AMP] = ACTIONS(2731), + [anon_sym_SEMI] = ACTIONS(2733), + [anon_sym___extension__] = ACTIONS(2731), + [anon_sym_typedef] = ACTIONS(2731), + [anon_sym_virtual] = ACTIONS(2731), + [anon_sym_extern] = ACTIONS(2731), + [anon_sym___attribute__] = ACTIONS(2731), + [anon_sym___attribute] = ACTIONS(2731), + [anon_sym_using] = ACTIONS(2731), + [anon_sym_COLON_COLON] = ACTIONS(2733), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2733), + [anon_sym___declspec] = ACTIONS(2731), + [anon_sym___based] = ACTIONS(2731), + [anon_sym___cdecl] = ACTIONS(2731), + [anon_sym___clrcall] = ACTIONS(2731), + [anon_sym___stdcall] = ACTIONS(2731), + [anon_sym___fastcall] = ACTIONS(2731), + [anon_sym___thiscall] = ACTIONS(2731), + [anon_sym___vectorcall] = ACTIONS(2731), + [anon_sym_LBRACE] = ACTIONS(2733), + [anon_sym_RBRACE] = ACTIONS(2733), + [anon_sym_signed] = ACTIONS(2731), + [anon_sym_unsigned] = ACTIONS(2731), + [anon_sym_long] = ACTIONS(2731), + [anon_sym_short] = ACTIONS(2731), + [anon_sym_LBRACK] = ACTIONS(2731), + [anon_sym_static] = ACTIONS(2731), + [anon_sym_register] = ACTIONS(2731), + [anon_sym_inline] = ACTIONS(2731), + [anon_sym___inline] = ACTIONS(2731), + [anon_sym___inline__] = ACTIONS(2731), + [anon_sym___forceinline] = ACTIONS(2731), + [anon_sym_thread_local] = ACTIONS(2731), + [anon_sym___thread] = ACTIONS(2731), + [anon_sym_const] = ACTIONS(2731), + [anon_sym_constexpr] = ACTIONS(2731), + [anon_sym_volatile] = ACTIONS(2731), + [anon_sym_restrict] = ACTIONS(2731), + [anon_sym___restrict__] = ACTIONS(2731), + [anon_sym__Atomic] = ACTIONS(2731), + [anon_sym__Noreturn] = ACTIONS(2731), + [anon_sym_noreturn] = ACTIONS(2731), + [anon_sym__Nonnull] = ACTIONS(2731), + [anon_sym_mutable] = ACTIONS(2731), + [anon_sym_constinit] = ACTIONS(2731), + [anon_sym_consteval] = ACTIONS(2731), + [anon_sym_alignas] = ACTIONS(2731), + [anon_sym__Alignas] = ACTIONS(2731), + [sym_primitive_type] = ACTIONS(2731), + [anon_sym_enum] = ACTIONS(2731), + [anon_sym_class] = ACTIONS(2731), + [anon_sym_struct] = ACTIONS(2731), + [anon_sym_union] = ACTIONS(2731), + [anon_sym_if] = ACTIONS(2731), + [anon_sym_else] = ACTIONS(2731), + [anon_sym_switch] = ACTIONS(2731), + [anon_sym_case] = ACTIONS(2731), + [anon_sym_default] = ACTIONS(2731), + [anon_sym_while] = ACTIONS(2731), + [anon_sym_do] = ACTIONS(2731), + [anon_sym_for] = ACTIONS(2731), + [anon_sym_return] = ACTIONS(2731), + [anon_sym_break] = ACTIONS(2731), + [anon_sym_continue] = ACTIONS(2731), + [anon_sym_goto] = ACTIONS(2731), + [anon_sym___try] = ACTIONS(2731), + [anon_sym___leave] = ACTIONS(2731), + [anon_sym_not] = ACTIONS(2731), + [anon_sym_compl] = ACTIONS(2731), + [anon_sym_DASH_DASH] = ACTIONS(2733), + [anon_sym_PLUS_PLUS] = ACTIONS(2733), + [anon_sym_sizeof] = ACTIONS(2731), + [anon_sym___alignof__] = ACTIONS(2731), + [anon_sym___alignof] = ACTIONS(2731), + [anon_sym__alignof] = ACTIONS(2731), + [anon_sym_alignof] = ACTIONS(2731), + [anon_sym__Alignof] = ACTIONS(2731), + [anon_sym_offsetof] = ACTIONS(2731), + [anon_sym__Generic] = ACTIONS(2731), + [anon_sym_asm] = ACTIONS(2731), + [anon_sym___asm__] = ACTIONS(2731), + [anon_sym___asm] = ACTIONS(2731), + [sym_number_literal] = ACTIONS(2733), + [anon_sym_L_SQUOTE] = ACTIONS(2733), + [anon_sym_u_SQUOTE] = ACTIONS(2733), + [anon_sym_U_SQUOTE] = ACTIONS(2733), + [anon_sym_u8_SQUOTE] = ACTIONS(2733), + [anon_sym_SQUOTE] = ACTIONS(2733), + [anon_sym_L_DQUOTE] = ACTIONS(2733), + [anon_sym_u_DQUOTE] = ACTIONS(2733), + [anon_sym_U_DQUOTE] = ACTIONS(2733), + [anon_sym_u8_DQUOTE] = ACTIONS(2733), + [anon_sym_DQUOTE] = ACTIONS(2733), + [sym_true] = ACTIONS(2731), + [sym_false] = ACTIONS(2731), + [anon_sym_NULL] = ACTIONS(2731), + [anon_sym_nullptr] = ACTIONS(2731), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2699), - [anon_sym_decltype] = ACTIONS(2699), - [anon_sym_explicit] = ACTIONS(2699), - [anon_sym_typename] = ACTIONS(2699), - [anon_sym_template] = ACTIONS(2699), - [anon_sym_operator] = ACTIONS(2699), - [anon_sym_try] = ACTIONS(2699), - [anon_sym_delete] = ACTIONS(2699), - [anon_sym_throw] = ACTIONS(2699), - [anon_sym_namespace] = ACTIONS(2699), - [anon_sym_static_assert] = ACTIONS(2699), - [anon_sym_concept] = ACTIONS(2699), - [anon_sym_co_return] = ACTIONS(2699), - [anon_sym_co_yield] = ACTIONS(2699), - [anon_sym_R_DQUOTE] = ACTIONS(2701), - [anon_sym_LR_DQUOTE] = ACTIONS(2701), - [anon_sym_uR_DQUOTE] = ACTIONS(2701), - [anon_sym_UR_DQUOTE] = ACTIONS(2701), - [anon_sym_u8R_DQUOTE] = ACTIONS(2701), - [anon_sym_co_await] = ACTIONS(2699), - [anon_sym_new] = ACTIONS(2699), - [anon_sym_requires] = ACTIONS(2699), - [sym_this] = ACTIONS(2699), + [sym_auto] = ACTIONS(2731), + [anon_sym_decltype] = ACTIONS(2731), + [anon_sym_explicit] = ACTIONS(2731), + [anon_sym_typename] = ACTIONS(2731), + [anon_sym_template] = ACTIONS(2731), + [anon_sym_operator] = ACTIONS(2731), + [anon_sym_try] = ACTIONS(2731), + [anon_sym_delete] = ACTIONS(2731), + [anon_sym_throw] = ACTIONS(2731), + [anon_sym_namespace] = ACTIONS(2731), + [anon_sym_static_assert] = ACTIONS(2731), + [anon_sym_concept] = ACTIONS(2731), + [anon_sym_co_return] = ACTIONS(2731), + [anon_sym_co_yield] = ACTIONS(2731), + [anon_sym_R_DQUOTE] = ACTIONS(2733), + [anon_sym_LR_DQUOTE] = ACTIONS(2733), + [anon_sym_uR_DQUOTE] = ACTIONS(2733), + [anon_sym_UR_DQUOTE] = ACTIONS(2733), + [anon_sym_u8R_DQUOTE] = ACTIONS(2733), + [anon_sym_co_await] = ACTIONS(2731), + [anon_sym_new] = ACTIONS(2731), + [anon_sym_requires] = ACTIONS(2731), + [sym_this] = ACTIONS(2731), }, - [608] = { - [sym_identifier] = ACTIONS(2699), - [aux_sym_preproc_include_token1] = ACTIONS(2699), - [aux_sym_preproc_def_token1] = ACTIONS(2699), - [aux_sym_preproc_if_token1] = ACTIONS(2699), - [aux_sym_preproc_if_token2] = ACTIONS(2699), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2699), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2699), - [sym_preproc_directive] = ACTIONS(2699), - [anon_sym_LPAREN2] = ACTIONS(2701), - [anon_sym_BANG] = ACTIONS(2701), - [anon_sym_TILDE] = ACTIONS(2701), - [anon_sym_DASH] = ACTIONS(2699), - [anon_sym_PLUS] = ACTIONS(2699), - [anon_sym_STAR] = ACTIONS(2701), - [anon_sym_AMP_AMP] = ACTIONS(2701), - [anon_sym_AMP] = ACTIONS(2699), - [anon_sym_SEMI] = ACTIONS(2701), - [anon_sym___extension__] = ACTIONS(2699), - [anon_sym_typedef] = ACTIONS(2699), - [anon_sym_virtual] = ACTIONS(2699), - [anon_sym_extern] = ACTIONS(2699), - [anon_sym___attribute__] = ACTIONS(2699), - [anon_sym___attribute] = ACTIONS(2699), - [anon_sym_using] = ACTIONS(2699), - [anon_sym_COLON_COLON] = ACTIONS(2701), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2701), - [anon_sym___declspec] = ACTIONS(2699), - [anon_sym___based] = ACTIONS(2699), - [anon_sym___cdecl] = ACTIONS(2699), - [anon_sym___clrcall] = ACTIONS(2699), - [anon_sym___stdcall] = ACTIONS(2699), - [anon_sym___fastcall] = ACTIONS(2699), - [anon_sym___thiscall] = ACTIONS(2699), - [anon_sym___vectorcall] = ACTIONS(2699), - [anon_sym_LBRACE] = ACTIONS(2701), - [anon_sym_signed] = ACTIONS(2699), - [anon_sym_unsigned] = ACTIONS(2699), - [anon_sym_long] = ACTIONS(2699), - [anon_sym_short] = ACTIONS(2699), - [anon_sym_LBRACK] = ACTIONS(2699), - [anon_sym_static] = ACTIONS(2699), - [anon_sym_register] = ACTIONS(2699), - [anon_sym_inline] = ACTIONS(2699), - [anon_sym___inline] = ACTIONS(2699), - [anon_sym___inline__] = ACTIONS(2699), - [anon_sym___forceinline] = ACTIONS(2699), - [anon_sym_thread_local] = ACTIONS(2699), - [anon_sym___thread] = ACTIONS(2699), - [anon_sym_const] = ACTIONS(2699), - [anon_sym_constexpr] = ACTIONS(2699), - [anon_sym_volatile] = ACTIONS(2699), - [anon_sym_restrict] = ACTIONS(2699), - [anon_sym___restrict__] = ACTIONS(2699), - [anon_sym__Atomic] = ACTIONS(2699), - [anon_sym__Noreturn] = ACTIONS(2699), - [anon_sym_noreturn] = ACTIONS(2699), - [anon_sym__Nonnull] = ACTIONS(2699), - [anon_sym_mutable] = ACTIONS(2699), - [anon_sym_constinit] = ACTIONS(2699), - [anon_sym_consteval] = ACTIONS(2699), - [anon_sym_alignas] = ACTIONS(2699), - [anon_sym__Alignas] = ACTIONS(2699), - [sym_primitive_type] = ACTIONS(2699), - [anon_sym_enum] = ACTIONS(2699), - [anon_sym_class] = ACTIONS(2699), - [anon_sym_struct] = ACTIONS(2699), - [anon_sym_union] = ACTIONS(2699), - [anon_sym_if] = ACTIONS(2699), - [anon_sym_else] = ACTIONS(2699), - [anon_sym_switch] = ACTIONS(2699), - [anon_sym_case] = ACTIONS(2699), - [anon_sym_default] = ACTIONS(2699), - [anon_sym_while] = ACTIONS(2699), - [anon_sym_do] = ACTIONS(2699), - [anon_sym_for] = ACTIONS(2699), - [anon_sym_return] = ACTIONS(2699), - [anon_sym_break] = ACTIONS(2699), - [anon_sym_continue] = ACTIONS(2699), - [anon_sym_goto] = ACTIONS(2699), - [anon_sym___try] = ACTIONS(2699), - [anon_sym___leave] = ACTIONS(2699), - [anon_sym_not] = ACTIONS(2699), - [anon_sym_compl] = ACTIONS(2699), - [anon_sym_DASH_DASH] = ACTIONS(2701), - [anon_sym_PLUS_PLUS] = ACTIONS(2701), - [anon_sym_sizeof] = ACTIONS(2699), - [anon_sym___alignof__] = ACTIONS(2699), - [anon_sym___alignof] = ACTIONS(2699), - [anon_sym__alignof] = ACTIONS(2699), - [anon_sym_alignof] = ACTIONS(2699), - [anon_sym__Alignof] = ACTIONS(2699), - [anon_sym_offsetof] = ACTIONS(2699), - [anon_sym__Generic] = ACTIONS(2699), - [anon_sym_asm] = ACTIONS(2699), - [anon_sym___asm__] = ACTIONS(2699), - [anon_sym___asm] = ACTIONS(2699), - [sym_number_literal] = ACTIONS(2701), - [anon_sym_L_SQUOTE] = ACTIONS(2701), - [anon_sym_u_SQUOTE] = ACTIONS(2701), - [anon_sym_U_SQUOTE] = ACTIONS(2701), - [anon_sym_u8_SQUOTE] = ACTIONS(2701), - [anon_sym_SQUOTE] = ACTIONS(2701), - [anon_sym_L_DQUOTE] = ACTIONS(2701), - [anon_sym_u_DQUOTE] = ACTIONS(2701), - [anon_sym_U_DQUOTE] = ACTIONS(2701), - [anon_sym_u8_DQUOTE] = ACTIONS(2701), - [anon_sym_DQUOTE] = ACTIONS(2701), - [sym_true] = ACTIONS(2699), - [sym_false] = ACTIONS(2699), - [anon_sym_NULL] = ACTIONS(2699), - [anon_sym_nullptr] = ACTIONS(2699), + [616] = { + [sym_identifier] = ACTIONS(2731), + [aux_sym_preproc_include_token1] = ACTIONS(2731), + [aux_sym_preproc_def_token1] = ACTIONS(2731), + [aux_sym_preproc_if_token1] = ACTIONS(2731), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2731), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2731), + [sym_preproc_directive] = ACTIONS(2731), + [anon_sym_LPAREN2] = ACTIONS(2733), + [anon_sym_BANG] = ACTIONS(2733), + [anon_sym_TILDE] = ACTIONS(2733), + [anon_sym_DASH] = ACTIONS(2731), + [anon_sym_PLUS] = ACTIONS(2731), + [anon_sym_STAR] = ACTIONS(2733), + [anon_sym_AMP_AMP] = ACTIONS(2733), + [anon_sym_AMP] = ACTIONS(2731), + [anon_sym_SEMI] = ACTIONS(2733), + [anon_sym___extension__] = ACTIONS(2731), + [anon_sym_typedef] = ACTIONS(2731), + [anon_sym_virtual] = ACTIONS(2731), + [anon_sym_extern] = ACTIONS(2731), + [anon_sym___attribute__] = ACTIONS(2731), + [anon_sym___attribute] = ACTIONS(2731), + [anon_sym_using] = ACTIONS(2731), + [anon_sym_COLON_COLON] = ACTIONS(2733), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2733), + [anon_sym___declspec] = ACTIONS(2731), + [anon_sym___based] = ACTIONS(2731), + [anon_sym___cdecl] = ACTIONS(2731), + [anon_sym___clrcall] = ACTIONS(2731), + [anon_sym___stdcall] = ACTIONS(2731), + [anon_sym___fastcall] = ACTIONS(2731), + [anon_sym___thiscall] = ACTIONS(2731), + [anon_sym___vectorcall] = ACTIONS(2731), + [anon_sym_LBRACE] = ACTIONS(2733), + [anon_sym_RBRACE] = ACTIONS(2733), + [anon_sym_signed] = ACTIONS(2731), + [anon_sym_unsigned] = ACTIONS(2731), + [anon_sym_long] = ACTIONS(2731), + [anon_sym_short] = ACTIONS(2731), + [anon_sym_LBRACK] = ACTIONS(2731), + [anon_sym_static] = ACTIONS(2731), + [anon_sym_register] = ACTIONS(2731), + [anon_sym_inline] = ACTIONS(2731), + [anon_sym___inline] = ACTIONS(2731), + [anon_sym___inline__] = ACTIONS(2731), + [anon_sym___forceinline] = ACTIONS(2731), + [anon_sym_thread_local] = ACTIONS(2731), + [anon_sym___thread] = ACTIONS(2731), + [anon_sym_const] = ACTIONS(2731), + [anon_sym_constexpr] = ACTIONS(2731), + [anon_sym_volatile] = ACTIONS(2731), + [anon_sym_restrict] = ACTIONS(2731), + [anon_sym___restrict__] = ACTIONS(2731), + [anon_sym__Atomic] = ACTIONS(2731), + [anon_sym__Noreturn] = ACTIONS(2731), + [anon_sym_noreturn] = ACTIONS(2731), + [anon_sym__Nonnull] = ACTIONS(2731), + [anon_sym_mutable] = ACTIONS(2731), + [anon_sym_constinit] = ACTIONS(2731), + [anon_sym_consteval] = ACTIONS(2731), + [anon_sym_alignas] = ACTIONS(2731), + [anon_sym__Alignas] = ACTIONS(2731), + [sym_primitive_type] = ACTIONS(2731), + [anon_sym_enum] = ACTIONS(2731), + [anon_sym_class] = ACTIONS(2731), + [anon_sym_struct] = ACTIONS(2731), + [anon_sym_union] = ACTIONS(2731), + [anon_sym_if] = ACTIONS(2731), + [anon_sym_else] = ACTIONS(2731), + [anon_sym_switch] = ACTIONS(2731), + [anon_sym_case] = ACTIONS(2731), + [anon_sym_default] = ACTIONS(2731), + [anon_sym_while] = ACTIONS(2731), + [anon_sym_do] = ACTIONS(2731), + [anon_sym_for] = ACTIONS(2731), + [anon_sym_return] = ACTIONS(2731), + [anon_sym_break] = ACTIONS(2731), + [anon_sym_continue] = ACTIONS(2731), + [anon_sym_goto] = ACTIONS(2731), + [anon_sym___try] = ACTIONS(2731), + [anon_sym___leave] = ACTIONS(2731), + [anon_sym_not] = ACTIONS(2731), + [anon_sym_compl] = ACTIONS(2731), + [anon_sym_DASH_DASH] = ACTIONS(2733), + [anon_sym_PLUS_PLUS] = ACTIONS(2733), + [anon_sym_sizeof] = ACTIONS(2731), + [anon_sym___alignof__] = ACTIONS(2731), + [anon_sym___alignof] = ACTIONS(2731), + [anon_sym__alignof] = ACTIONS(2731), + [anon_sym_alignof] = ACTIONS(2731), + [anon_sym__Alignof] = ACTIONS(2731), + [anon_sym_offsetof] = ACTIONS(2731), + [anon_sym__Generic] = ACTIONS(2731), + [anon_sym_asm] = ACTIONS(2731), + [anon_sym___asm__] = ACTIONS(2731), + [anon_sym___asm] = ACTIONS(2731), + [sym_number_literal] = ACTIONS(2733), + [anon_sym_L_SQUOTE] = ACTIONS(2733), + [anon_sym_u_SQUOTE] = ACTIONS(2733), + [anon_sym_U_SQUOTE] = ACTIONS(2733), + [anon_sym_u8_SQUOTE] = ACTIONS(2733), + [anon_sym_SQUOTE] = ACTIONS(2733), + [anon_sym_L_DQUOTE] = ACTIONS(2733), + [anon_sym_u_DQUOTE] = ACTIONS(2733), + [anon_sym_U_DQUOTE] = ACTIONS(2733), + [anon_sym_u8_DQUOTE] = ACTIONS(2733), + [anon_sym_DQUOTE] = ACTIONS(2733), + [sym_true] = ACTIONS(2731), + [sym_false] = ACTIONS(2731), + [anon_sym_NULL] = ACTIONS(2731), + [anon_sym_nullptr] = ACTIONS(2731), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2699), - [anon_sym_decltype] = ACTIONS(2699), - [anon_sym_explicit] = ACTIONS(2699), - [anon_sym_typename] = ACTIONS(2699), - [anon_sym_template] = ACTIONS(2699), - [anon_sym_operator] = ACTIONS(2699), - [anon_sym_try] = ACTIONS(2699), - [anon_sym_delete] = ACTIONS(2699), - [anon_sym_throw] = ACTIONS(2699), - [anon_sym_namespace] = ACTIONS(2699), - [anon_sym_static_assert] = ACTIONS(2699), - [anon_sym_concept] = ACTIONS(2699), - [anon_sym_co_return] = ACTIONS(2699), - [anon_sym_co_yield] = ACTIONS(2699), - [anon_sym_R_DQUOTE] = ACTIONS(2701), - [anon_sym_LR_DQUOTE] = ACTIONS(2701), - [anon_sym_uR_DQUOTE] = ACTIONS(2701), - [anon_sym_UR_DQUOTE] = ACTIONS(2701), - [anon_sym_u8R_DQUOTE] = ACTIONS(2701), - [anon_sym_co_await] = ACTIONS(2699), - [anon_sym_new] = ACTIONS(2699), - [anon_sym_requires] = ACTIONS(2699), - [sym_this] = ACTIONS(2699), + [sym_auto] = ACTIONS(2731), + [anon_sym_decltype] = ACTIONS(2731), + [anon_sym_explicit] = ACTIONS(2731), + [anon_sym_typename] = ACTIONS(2731), + [anon_sym_template] = ACTIONS(2731), + [anon_sym_operator] = ACTIONS(2731), + [anon_sym_try] = ACTIONS(2731), + [anon_sym_delete] = ACTIONS(2731), + [anon_sym_throw] = ACTIONS(2731), + [anon_sym_namespace] = ACTIONS(2731), + [anon_sym_static_assert] = ACTIONS(2731), + [anon_sym_concept] = ACTIONS(2731), + [anon_sym_co_return] = ACTIONS(2731), + [anon_sym_co_yield] = ACTIONS(2731), + [anon_sym_R_DQUOTE] = ACTIONS(2733), + [anon_sym_LR_DQUOTE] = ACTIONS(2733), + [anon_sym_uR_DQUOTE] = ACTIONS(2733), + [anon_sym_UR_DQUOTE] = ACTIONS(2733), + [anon_sym_u8R_DQUOTE] = ACTIONS(2733), + [anon_sym_co_await] = ACTIONS(2731), + [anon_sym_new] = ACTIONS(2731), + [anon_sym_requires] = ACTIONS(2731), + [sym_this] = ACTIONS(2731), + }, + [617] = { + [ts_builtin_sym_end] = ACTIONS(2925), + [sym_identifier] = ACTIONS(2923), + [aux_sym_preproc_include_token1] = ACTIONS(2923), + [aux_sym_preproc_def_token1] = ACTIONS(2923), + [aux_sym_preproc_if_token1] = ACTIONS(2923), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2923), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2923), + [sym_preproc_directive] = ACTIONS(2923), + [anon_sym_LPAREN2] = ACTIONS(2925), + [anon_sym_BANG] = ACTIONS(2925), + [anon_sym_TILDE] = ACTIONS(2925), + [anon_sym_DASH] = ACTIONS(2923), + [anon_sym_PLUS] = ACTIONS(2923), + [anon_sym_STAR] = ACTIONS(2925), + [anon_sym_AMP_AMP] = ACTIONS(2925), + [anon_sym_AMP] = ACTIONS(2923), + [anon_sym_SEMI] = ACTIONS(2925), + [anon_sym___extension__] = ACTIONS(2923), + [anon_sym_typedef] = ACTIONS(2923), + [anon_sym_virtual] = ACTIONS(2923), + [anon_sym_extern] = ACTIONS(2923), + [anon_sym___attribute__] = ACTIONS(2923), + [anon_sym___attribute] = ACTIONS(2923), + [anon_sym_using] = ACTIONS(2923), + [anon_sym_COLON_COLON] = ACTIONS(2925), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2925), + [anon_sym___declspec] = ACTIONS(2923), + [anon_sym___based] = ACTIONS(2923), + [anon_sym___cdecl] = ACTIONS(2923), + [anon_sym___clrcall] = ACTIONS(2923), + [anon_sym___stdcall] = ACTIONS(2923), + [anon_sym___fastcall] = ACTIONS(2923), + [anon_sym___thiscall] = ACTIONS(2923), + [anon_sym___vectorcall] = ACTIONS(2923), + [anon_sym_LBRACE] = ACTIONS(2925), + [anon_sym_signed] = ACTIONS(2923), + [anon_sym_unsigned] = ACTIONS(2923), + [anon_sym_long] = ACTIONS(2923), + [anon_sym_short] = ACTIONS(2923), + [anon_sym_LBRACK] = ACTIONS(2923), + [anon_sym_static] = ACTIONS(2923), + [anon_sym_register] = ACTIONS(2923), + [anon_sym_inline] = ACTIONS(2923), + [anon_sym___inline] = ACTIONS(2923), + [anon_sym___inline__] = ACTIONS(2923), + [anon_sym___forceinline] = ACTIONS(2923), + [anon_sym_thread_local] = ACTIONS(2923), + [anon_sym___thread] = ACTIONS(2923), + [anon_sym_const] = ACTIONS(2923), + [anon_sym_constexpr] = ACTIONS(2923), + [anon_sym_volatile] = ACTIONS(2923), + [anon_sym_restrict] = ACTIONS(2923), + [anon_sym___restrict__] = ACTIONS(2923), + [anon_sym__Atomic] = ACTIONS(2923), + [anon_sym__Noreturn] = ACTIONS(2923), + [anon_sym_noreturn] = ACTIONS(2923), + [anon_sym__Nonnull] = ACTIONS(2923), + [anon_sym_mutable] = ACTIONS(2923), + [anon_sym_constinit] = ACTIONS(2923), + [anon_sym_consteval] = ACTIONS(2923), + [anon_sym_alignas] = ACTIONS(2923), + [anon_sym__Alignas] = ACTIONS(2923), + [sym_primitive_type] = ACTIONS(2923), + [anon_sym_enum] = ACTIONS(2923), + [anon_sym_class] = ACTIONS(2923), + [anon_sym_struct] = ACTIONS(2923), + [anon_sym_union] = ACTIONS(2923), + [anon_sym_if] = ACTIONS(2923), + [anon_sym_switch] = ACTIONS(2923), + [anon_sym_case] = ACTIONS(2923), + [anon_sym_default] = ACTIONS(2923), + [anon_sym_while] = ACTIONS(2923), + [anon_sym_do] = ACTIONS(2923), + [anon_sym_for] = ACTIONS(2923), + [anon_sym_return] = ACTIONS(2923), + [anon_sym_break] = ACTIONS(2923), + [anon_sym_continue] = ACTIONS(2923), + [anon_sym_goto] = ACTIONS(2923), + [anon_sym_not] = ACTIONS(2923), + [anon_sym_compl] = ACTIONS(2923), + [anon_sym_DASH_DASH] = ACTIONS(2925), + [anon_sym_PLUS_PLUS] = ACTIONS(2925), + [anon_sym_sizeof] = ACTIONS(2923), + [anon_sym___alignof__] = ACTIONS(2923), + [anon_sym___alignof] = ACTIONS(2923), + [anon_sym__alignof] = ACTIONS(2923), + [anon_sym_alignof] = ACTIONS(2923), + [anon_sym__Alignof] = ACTIONS(2923), + [anon_sym_offsetof] = ACTIONS(2923), + [anon_sym__Generic] = ACTIONS(2923), + [anon_sym_asm] = ACTIONS(2923), + [anon_sym___asm__] = ACTIONS(2923), + [anon_sym___asm] = ACTIONS(2923), + [sym_number_literal] = ACTIONS(2925), + [anon_sym_L_SQUOTE] = ACTIONS(2925), + [anon_sym_u_SQUOTE] = ACTIONS(2925), + [anon_sym_U_SQUOTE] = ACTIONS(2925), + [anon_sym_u8_SQUOTE] = ACTIONS(2925), + [anon_sym_SQUOTE] = ACTIONS(2925), + [anon_sym_L_DQUOTE] = ACTIONS(2925), + [anon_sym_u_DQUOTE] = ACTIONS(2925), + [anon_sym_U_DQUOTE] = ACTIONS(2925), + [anon_sym_u8_DQUOTE] = ACTIONS(2925), + [anon_sym_DQUOTE] = ACTIONS(2925), + [sym_true] = ACTIONS(2923), + [sym_false] = ACTIONS(2923), + [anon_sym_NULL] = ACTIONS(2923), + [anon_sym_nullptr] = ACTIONS(2923), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2923), + [anon_sym_decltype] = ACTIONS(2923), + [anon_sym_explicit] = ACTIONS(2923), + [anon_sym_typename] = ACTIONS(2923), + [anon_sym_export] = ACTIONS(2923), + [anon_sym_module] = ACTIONS(2923), + [anon_sym_import] = ACTIONS(2923), + [anon_sym_template] = ACTIONS(2923), + [anon_sym_operator] = ACTIONS(2923), + [anon_sym_try] = ACTIONS(2923), + [anon_sym_delete] = ACTIONS(2923), + [anon_sym_throw] = ACTIONS(2923), + [anon_sym_namespace] = ACTIONS(2923), + [anon_sym_static_assert] = ACTIONS(2923), + [anon_sym_concept] = ACTIONS(2923), + [anon_sym_co_return] = ACTIONS(2923), + [anon_sym_co_yield] = ACTIONS(2923), + [anon_sym_R_DQUOTE] = ACTIONS(2925), + [anon_sym_LR_DQUOTE] = ACTIONS(2925), + [anon_sym_uR_DQUOTE] = ACTIONS(2925), + [anon_sym_UR_DQUOTE] = ACTIONS(2925), + [anon_sym_u8R_DQUOTE] = ACTIONS(2925), + [anon_sym_co_await] = ACTIONS(2923), + [anon_sym_new] = ACTIONS(2923), + [anon_sym_requires] = ACTIONS(2923), + [sym_this] = ACTIONS(2923), }, - [609] = { - [sym_identifier] = ACTIONS(2639), - [aux_sym_preproc_include_token1] = ACTIONS(2639), - [aux_sym_preproc_def_token1] = ACTIONS(2639), - [aux_sym_preproc_if_token1] = ACTIONS(2639), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2639), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2639), - [sym_preproc_directive] = ACTIONS(2639), - [anon_sym_LPAREN2] = ACTIONS(2641), - [anon_sym_BANG] = ACTIONS(2641), - [anon_sym_TILDE] = ACTIONS(2641), - [anon_sym_DASH] = ACTIONS(2639), - [anon_sym_PLUS] = ACTIONS(2639), - [anon_sym_STAR] = ACTIONS(2641), - [anon_sym_AMP_AMP] = ACTIONS(2641), - [anon_sym_AMP] = ACTIONS(2639), - [anon_sym_SEMI] = ACTIONS(2641), - [anon_sym___extension__] = ACTIONS(2639), - [anon_sym_typedef] = ACTIONS(2639), - [anon_sym_virtual] = ACTIONS(2639), - [anon_sym_extern] = ACTIONS(2639), - [anon_sym___attribute__] = ACTIONS(2639), - [anon_sym___attribute] = ACTIONS(2639), - [anon_sym_using] = ACTIONS(2639), - [anon_sym_COLON_COLON] = ACTIONS(2641), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2641), - [anon_sym___declspec] = ACTIONS(2639), - [anon_sym___based] = ACTIONS(2639), - [anon_sym___cdecl] = ACTIONS(2639), - [anon_sym___clrcall] = ACTIONS(2639), - [anon_sym___stdcall] = ACTIONS(2639), - [anon_sym___fastcall] = ACTIONS(2639), - [anon_sym___thiscall] = ACTIONS(2639), - [anon_sym___vectorcall] = ACTIONS(2639), - [anon_sym_LBRACE] = ACTIONS(2641), - [anon_sym_RBRACE] = ACTIONS(2641), - [anon_sym_signed] = ACTIONS(2639), - [anon_sym_unsigned] = ACTIONS(2639), - [anon_sym_long] = ACTIONS(2639), - [anon_sym_short] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(2639), - [anon_sym_static] = ACTIONS(2639), - [anon_sym_register] = ACTIONS(2639), - [anon_sym_inline] = ACTIONS(2639), - [anon_sym___inline] = ACTIONS(2639), - [anon_sym___inline__] = ACTIONS(2639), - [anon_sym___forceinline] = ACTIONS(2639), - [anon_sym_thread_local] = ACTIONS(2639), - [anon_sym___thread] = ACTIONS(2639), - [anon_sym_const] = ACTIONS(2639), - [anon_sym_constexpr] = ACTIONS(2639), - [anon_sym_volatile] = ACTIONS(2639), - [anon_sym_restrict] = ACTIONS(2639), - [anon_sym___restrict__] = ACTIONS(2639), - [anon_sym__Atomic] = ACTIONS(2639), - [anon_sym__Noreturn] = ACTIONS(2639), - [anon_sym_noreturn] = ACTIONS(2639), - [anon_sym__Nonnull] = ACTIONS(2639), - [anon_sym_mutable] = ACTIONS(2639), - [anon_sym_constinit] = ACTIONS(2639), - [anon_sym_consteval] = ACTIONS(2639), - [anon_sym_alignas] = ACTIONS(2639), - [anon_sym__Alignas] = ACTIONS(2639), - [sym_primitive_type] = ACTIONS(2639), - [anon_sym_enum] = ACTIONS(2639), - [anon_sym_class] = ACTIONS(2639), - [anon_sym_struct] = ACTIONS(2639), - [anon_sym_union] = ACTIONS(2639), - [anon_sym_if] = ACTIONS(2639), - [anon_sym_else] = ACTIONS(2639), - [anon_sym_switch] = ACTIONS(2639), - [anon_sym_case] = ACTIONS(2639), - [anon_sym_default] = ACTIONS(2639), - [anon_sym_while] = ACTIONS(2639), - [anon_sym_do] = ACTIONS(2639), - [anon_sym_for] = ACTIONS(2639), - [anon_sym_return] = ACTIONS(2639), - [anon_sym_break] = ACTIONS(2639), - [anon_sym_continue] = ACTIONS(2639), - [anon_sym_goto] = ACTIONS(2639), - [anon_sym___try] = ACTIONS(2639), - [anon_sym___leave] = ACTIONS(2639), - [anon_sym_not] = ACTIONS(2639), - [anon_sym_compl] = ACTIONS(2639), - [anon_sym_DASH_DASH] = ACTIONS(2641), - [anon_sym_PLUS_PLUS] = ACTIONS(2641), - [anon_sym_sizeof] = ACTIONS(2639), - [anon_sym___alignof__] = ACTIONS(2639), - [anon_sym___alignof] = ACTIONS(2639), - [anon_sym__alignof] = ACTIONS(2639), - [anon_sym_alignof] = ACTIONS(2639), - [anon_sym__Alignof] = ACTIONS(2639), - [anon_sym_offsetof] = ACTIONS(2639), - [anon_sym__Generic] = ACTIONS(2639), - [anon_sym_asm] = ACTIONS(2639), - [anon_sym___asm__] = ACTIONS(2639), - [anon_sym___asm] = ACTIONS(2639), - [sym_number_literal] = ACTIONS(2641), - [anon_sym_L_SQUOTE] = ACTIONS(2641), - [anon_sym_u_SQUOTE] = ACTIONS(2641), - [anon_sym_U_SQUOTE] = ACTIONS(2641), - [anon_sym_u8_SQUOTE] = ACTIONS(2641), - [anon_sym_SQUOTE] = ACTIONS(2641), - [anon_sym_L_DQUOTE] = ACTIONS(2641), - [anon_sym_u_DQUOTE] = ACTIONS(2641), - [anon_sym_U_DQUOTE] = ACTIONS(2641), - [anon_sym_u8_DQUOTE] = ACTIONS(2641), - [anon_sym_DQUOTE] = ACTIONS(2641), - [sym_true] = ACTIONS(2639), - [sym_false] = ACTIONS(2639), - [anon_sym_NULL] = ACTIONS(2639), - [anon_sym_nullptr] = ACTIONS(2639), + [618] = { + [sym_identifier] = ACTIONS(2743), + [aux_sym_preproc_include_token1] = ACTIONS(2743), + [aux_sym_preproc_def_token1] = ACTIONS(2743), + [aux_sym_preproc_if_token1] = ACTIONS(2743), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2743), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2743), + [sym_preproc_directive] = ACTIONS(2743), + [anon_sym_LPAREN2] = ACTIONS(2745), + [anon_sym_BANG] = ACTIONS(2745), + [anon_sym_TILDE] = ACTIONS(2745), + [anon_sym_DASH] = ACTIONS(2743), + [anon_sym_PLUS] = ACTIONS(2743), + [anon_sym_STAR] = ACTIONS(2745), + [anon_sym_AMP_AMP] = ACTIONS(2745), + [anon_sym_AMP] = ACTIONS(2743), + [anon_sym_SEMI] = ACTIONS(2745), + [anon_sym___extension__] = ACTIONS(2743), + [anon_sym_typedef] = ACTIONS(2743), + [anon_sym_virtual] = ACTIONS(2743), + [anon_sym_extern] = ACTIONS(2743), + [anon_sym___attribute__] = ACTIONS(2743), + [anon_sym___attribute] = ACTIONS(2743), + [anon_sym_using] = ACTIONS(2743), + [anon_sym_COLON_COLON] = ACTIONS(2745), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2745), + [anon_sym___declspec] = ACTIONS(2743), + [anon_sym___based] = ACTIONS(2743), + [anon_sym___cdecl] = ACTIONS(2743), + [anon_sym___clrcall] = ACTIONS(2743), + [anon_sym___stdcall] = ACTIONS(2743), + [anon_sym___fastcall] = ACTIONS(2743), + [anon_sym___thiscall] = ACTIONS(2743), + [anon_sym___vectorcall] = ACTIONS(2743), + [anon_sym_LBRACE] = ACTIONS(2745), + [anon_sym_RBRACE] = ACTIONS(2745), + [anon_sym_signed] = ACTIONS(2743), + [anon_sym_unsigned] = ACTIONS(2743), + [anon_sym_long] = ACTIONS(2743), + [anon_sym_short] = ACTIONS(2743), + [anon_sym_LBRACK] = ACTIONS(2743), + [anon_sym_static] = ACTIONS(2743), + [anon_sym_register] = ACTIONS(2743), + [anon_sym_inline] = ACTIONS(2743), + [anon_sym___inline] = ACTIONS(2743), + [anon_sym___inline__] = ACTIONS(2743), + [anon_sym___forceinline] = ACTIONS(2743), + [anon_sym_thread_local] = ACTIONS(2743), + [anon_sym___thread] = ACTIONS(2743), + [anon_sym_const] = ACTIONS(2743), + [anon_sym_constexpr] = ACTIONS(2743), + [anon_sym_volatile] = ACTIONS(2743), + [anon_sym_restrict] = ACTIONS(2743), + [anon_sym___restrict__] = ACTIONS(2743), + [anon_sym__Atomic] = ACTIONS(2743), + [anon_sym__Noreturn] = ACTIONS(2743), + [anon_sym_noreturn] = ACTIONS(2743), + [anon_sym__Nonnull] = ACTIONS(2743), + [anon_sym_mutable] = ACTIONS(2743), + [anon_sym_constinit] = ACTIONS(2743), + [anon_sym_consteval] = ACTIONS(2743), + [anon_sym_alignas] = ACTIONS(2743), + [anon_sym__Alignas] = ACTIONS(2743), + [sym_primitive_type] = ACTIONS(2743), + [anon_sym_enum] = ACTIONS(2743), + [anon_sym_class] = ACTIONS(2743), + [anon_sym_struct] = ACTIONS(2743), + [anon_sym_union] = ACTIONS(2743), + [anon_sym_if] = ACTIONS(2743), + [anon_sym_else] = ACTIONS(2743), + [anon_sym_switch] = ACTIONS(2743), + [anon_sym_case] = ACTIONS(2743), + [anon_sym_default] = ACTIONS(2743), + [anon_sym_while] = ACTIONS(2743), + [anon_sym_do] = ACTIONS(2743), + [anon_sym_for] = ACTIONS(2743), + [anon_sym_return] = ACTIONS(2743), + [anon_sym_break] = ACTIONS(2743), + [anon_sym_continue] = ACTIONS(2743), + [anon_sym_goto] = ACTIONS(2743), + [anon_sym___try] = ACTIONS(2743), + [anon_sym___leave] = ACTIONS(2743), + [anon_sym_not] = ACTIONS(2743), + [anon_sym_compl] = ACTIONS(2743), + [anon_sym_DASH_DASH] = ACTIONS(2745), + [anon_sym_PLUS_PLUS] = ACTIONS(2745), + [anon_sym_sizeof] = ACTIONS(2743), + [anon_sym___alignof__] = ACTIONS(2743), + [anon_sym___alignof] = ACTIONS(2743), + [anon_sym__alignof] = ACTIONS(2743), + [anon_sym_alignof] = ACTIONS(2743), + [anon_sym__Alignof] = ACTIONS(2743), + [anon_sym_offsetof] = ACTIONS(2743), + [anon_sym__Generic] = ACTIONS(2743), + [anon_sym_asm] = ACTIONS(2743), + [anon_sym___asm__] = ACTIONS(2743), + [anon_sym___asm] = ACTIONS(2743), + [sym_number_literal] = ACTIONS(2745), + [anon_sym_L_SQUOTE] = ACTIONS(2745), + [anon_sym_u_SQUOTE] = ACTIONS(2745), + [anon_sym_U_SQUOTE] = ACTIONS(2745), + [anon_sym_u8_SQUOTE] = ACTIONS(2745), + [anon_sym_SQUOTE] = ACTIONS(2745), + [anon_sym_L_DQUOTE] = ACTIONS(2745), + [anon_sym_u_DQUOTE] = ACTIONS(2745), + [anon_sym_U_DQUOTE] = ACTIONS(2745), + [anon_sym_u8_DQUOTE] = ACTIONS(2745), + [anon_sym_DQUOTE] = ACTIONS(2745), + [sym_true] = ACTIONS(2743), + [sym_false] = ACTIONS(2743), + [anon_sym_NULL] = ACTIONS(2743), + [anon_sym_nullptr] = ACTIONS(2743), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2639), - [anon_sym_decltype] = ACTIONS(2639), - [anon_sym_explicit] = ACTIONS(2639), - [anon_sym_typename] = ACTIONS(2639), - [anon_sym_template] = ACTIONS(2639), - [anon_sym_operator] = ACTIONS(2639), - [anon_sym_try] = ACTIONS(2639), - [anon_sym_delete] = ACTIONS(2639), - [anon_sym_throw] = ACTIONS(2639), - [anon_sym_namespace] = ACTIONS(2639), - [anon_sym_static_assert] = ACTIONS(2639), - [anon_sym_concept] = ACTIONS(2639), - [anon_sym_co_return] = ACTIONS(2639), - [anon_sym_co_yield] = ACTIONS(2639), - [anon_sym_R_DQUOTE] = ACTIONS(2641), - [anon_sym_LR_DQUOTE] = ACTIONS(2641), - [anon_sym_uR_DQUOTE] = ACTIONS(2641), - [anon_sym_UR_DQUOTE] = ACTIONS(2641), - [anon_sym_u8R_DQUOTE] = ACTIONS(2641), - [anon_sym_co_await] = ACTIONS(2639), - [anon_sym_new] = ACTIONS(2639), - [anon_sym_requires] = ACTIONS(2639), - [sym_this] = ACTIONS(2639), + [sym_auto] = ACTIONS(2743), + [anon_sym_decltype] = ACTIONS(2743), + [anon_sym_explicit] = ACTIONS(2743), + [anon_sym_typename] = ACTIONS(2743), + [anon_sym_template] = ACTIONS(2743), + [anon_sym_operator] = ACTIONS(2743), + [anon_sym_try] = ACTIONS(2743), + [anon_sym_delete] = ACTIONS(2743), + [anon_sym_throw] = ACTIONS(2743), + [anon_sym_namespace] = ACTIONS(2743), + [anon_sym_static_assert] = ACTIONS(2743), + [anon_sym_concept] = ACTIONS(2743), + [anon_sym_co_return] = ACTIONS(2743), + [anon_sym_co_yield] = ACTIONS(2743), + [anon_sym_R_DQUOTE] = ACTIONS(2745), + [anon_sym_LR_DQUOTE] = ACTIONS(2745), + [anon_sym_uR_DQUOTE] = ACTIONS(2745), + [anon_sym_UR_DQUOTE] = ACTIONS(2745), + [anon_sym_u8R_DQUOTE] = ACTIONS(2745), + [anon_sym_co_await] = ACTIONS(2743), + [anon_sym_new] = ACTIONS(2743), + [anon_sym_requires] = ACTIONS(2743), + [sym_this] = ACTIONS(2743), }, - [610] = { - [sym_identifier] = ACTIONS(2665), - [aux_sym_preproc_include_token1] = ACTIONS(2665), - [aux_sym_preproc_def_token1] = ACTIONS(2665), - [aux_sym_preproc_if_token1] = ACTIONS(2665), - [aux_sym_preproc_if_token2] = ACTIONS(2665), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2665), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2665), - [sym_preproc_directive] = ACTIONS(2665), - [anon_sym_LPAREN2] = ACTIONS(2667), - [anon_sym_BANG] = ACTIONS(2667), - [anon_sym_TILDE] = ACTIONS(2667), - [anon_sym_DASH] = ACTIONS(2665), - [anon_sym_PLUS] = ACTIONS(2665), - [anon_sym_STAR] = ACTIONS(2667), - [anon_sym_AMP_AMP] = ACTIONS(2667), - [anon_sym_AMP] = ACTIONS(2665), - [anon_sym_SEMI] = ACTIONS(2667), - [anon_sym___extension__] = ACTIONS(2665), - [anon_sym_typedef] = ACTIONS(2665), - [anon_sym_virtual] = ACTIONS(2665), - [anon_sym_extern] = ACTIONS(2665), - [anon_sym___attribute__] = ACTIONS(2665), - [anon_sym___attribute] = ACTIONS(2665), - [anon_sym_using] = ACTIONS(2665), - [anon_sym_COLON_COLON] = ACTIONS(2667), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2667), - [anon_sym___declspec] = ACTIONS(2665), - [anon_sym___based] = ACTIONS(2665), - [anon_sym___cdecl] = ACTIONS(2665), - [anon_sym___clrcall] = ACTIONS(2665), - [anon_sym___stdcall] = ACTIONS(2665), - [anon_sym___fastcall] = ACTIONS(2665), - [anon_sym___thiscall] = ACTIONS(2665), - [anon_sym___vectorcall] = ACTIONS(2665), - [anon_sym_LBRACE] = ACTIONS(2667), - [anon_sym_signed] = ACTIONS(2665), - [anon_sym_unsigned] = ACTIONS(2665), - [anon_sym_long] = ACTIONS(2665), - [anon_sym_short] = ACTIONS(2665), - [anon_sym_LBRACK] = ACTIONS(2665), - [anon_sym_static] = ACTIONS(2665), - [anon_sym_register] = ACTIONS(2665), - [anon_sym_inline] = ACTIONS(2665), - [anon_sym___inline] = ACTIONS(2665), - [anon_sym___inline__] = ACTIONS(2665), - [anon_sym___forceinline] = ACTIONS(2665), - [anon_sym_thread_local] = ACTIONS(2665), - [anon_sym___thread] = ACTIONS(2665), - [anon_sym_const] = ACTIONS(2665), - [anon_sym_constexpr] = ACTIONS(2665), - [anon_sym_volatile] = ACTIONS(2665), - [anon_sym_restrict] = ACTIONS(2665), - [anon_sym___restrict__] = ACTIONS(2665), - [anon_sym__Atomic] = ACTIONS(2665), - [anon_sym__Noreturn] = ACTIONS(2665), - [anon_sym_noreturn] = ACTIONS(2665), - [anon_sym__Nonnull] = ACTIONS(2665), - [anon_sym_mutable] = ACTIONS(2665), - [anon_sym_constinit] = ACTIONS(2665), - [anon_sym_consteval] = ACTIONS(2665), - [anon_sym_alignas] = ACTIONS(2665), - [anon_sym__Alignas] = ACTIONS(2665), - [sym_primitive_type] = ACTIONS(2665), - [anon_sym_enum] = ACTIONS(2665), - [anon_sym_class] = ACTIONS(2665), - [anon_sym_struct] = ACTIONS(2665), - [anon_sym_union] = ACTIONS(2665), - [anon_sym_if] = ACTIONS(2665), - [anon_sym_else] = ACTIONS(2665), - [anon_sym_switch] = ACTIONS(2665), - [anon_sym_case] = ACTIONS(2665), - [anon_sym_default] = ACTIONS(2665), - [anon_sym_while] = ACTIONS(2665), - [anon_sym_do] = ACTIONS(2665), - [anon_sym_for] = ACTIONS(2665), - [anon_sym_return] = ACTIONS(2665), - [anon_sym_break] = ACTIONS(2665), - [anon_sym_continue] = ACTIONS(2665), - [anon_sym_goto] = ACTIONS(2665), - [anon_sym___try] = ACTIONS(2665), - [anon_sym___leave] = ACTIONS(2665), - [anon_sym_not] = ACTIONS(2665), - [anon_sym_compl] = ACTIONS(2665), - [anon_sym_DASH_DASH] = ACTIONS(2667), - [anon_sym_PLUS_PLUS] = ACTIONS(2667), - [anon_sym_sizeof] = ACTIONS(2665), - [anon_sym___alignof__] = ACTIONS(2665), - [anon_sym___alignof] = ACTIONS(2665), - [anon_sym__alignof] = ACTIONS(2665), - [anon_sym_alignof] = ACTIONS(2665), - [anon_sym__Alignof] = ACTIONS(2665), - [anon_sym_offsetof] = ACTIONS(2665), - [anon_sym__Generic] = ACTIONS(2665), - [anon_sym_asm] = ACTIONS(2665), - [anon_sym___asm__] = ACTIONS(2665), - [anon_sym___asm] = ACTIONS(2665), - [sym_number_literal] = ACTIONS(2667), - [anon_sym_L_SQUOTE] = ACTIONS(2667), - [anon_sym_u_SQUOTE] = ACTIONS(2667), - [anon_sym_U_SQUOTE] = ACTIONS(2667), - [anon_sym_u8_SQUOTE] = ACTIONS(2667), - [anon_sym_SQUOTE] = ACTIONS(2667), - [anon_sym_L_DQUOTE] = ACTIONS(2667), - [anon_sym_u_DQUOTE] = ACTIONS(2667), - [anon_sym_U_DQUOTE] = ACTIONS(2667), - [anon_sym_u8_DQUOTE] = ACTIONS(2667), - [anon_sym_DQUOTE] = ACTIONS(2667), - [sym_true] = ACTIONS(2665), - [sym_false] = ACTIONS(2665), - [anon_sym_NULL] = ACTIONS(2665), - [anon_sym_nullptr] = ACTIONS(2665), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2665), - [anon_sym_decltype] = ACTIONS(2665), - [anon_sym_explicit] = ACTIONS(2665), - [anon_sym_typename] = ACTIONS(2665), - [anon_sym_template] = ACTIONS(2665), - [anon_sym_operator] = ACTIONS(2665), - [anon_sym_try] = ACTIONS(2665), - [anon_sym_delete] = ACTIONS(2665), - [anon_sym_throw] = ACTIONS(2665), - [anon_sym_namespace] = ACTIONS(2665), - [anon_sym_static_assert] = ACTIONS(2665), - [anon_sym_concept] = ACTIONS(2665), - [anon_sym_co_return] = ACTIONS(2665), - [anon_sym_co_yield] = ACTIONS(2665), - [anon_sym_R_DQUOTE] = ACTIONS(2667), - [anon_sym_LR_DQUOTE] = ACTIONS(2667), - [anon_sym_uR_DQUOTE] = ACTIONS(2667), - [anon_sym_UR_DQUOTE] = ACTIONS(2667), - [anon_sym_u8R_DQUOTE] = ACTIONS(2667), - [anon_sym_co_await] = ACTIONS(2665), - [anon_sym_new] = ACTIONS(2665), - [anon_sym_requires] = ACTIONS(2665), - [sym_this] = ACTIONS(2665), + [619] = { + [sym_identifier] = ACTIONS(2743), + [aux_sym_preproc_include_token1] = ACTIONS(2743), + [aux_sym_preproc_def_token1] = ACTIONS(2743), + [aux_sym_preproc_if_token1] = ACTIONS(2743), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2743), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2743), + [sym_preproc_directive] = ACTIONS(2743), + [anon_sym_LPAREN2] = ACTIONS(2745), + [anon_sym_BANG] = ACTIONS(2745), + [anon_sym_TILDE] = ACTIONS(2745), + [anon_sym_DASH] = ACTIONS(2743), + [anon_sym_PLUS] = ACTIONS(2743), + [anon_sym_STAR] = ACTIONS(2745), + [anon_sym_AMP_AMP] = ACTIONS(2745), + [anon_sym_AMP] = ACTIONS(2743), + [anon_sym_SEMI] = ACTIONS(2745), + [anon_sym___extension__] = ACTIONS(2743), + [anon_sym_typedef] = ACTIONS(2743), + [anon_sym_virtual] = ACTIONS(2743), + [anon_sym_extern] = ACTIONS(2743), + [anon_sym___attribute__] = ACTIONS(2743), + [anon_sym___attribute] = ACTIONS(2743), + [anon_sym_using] = ACTIONS(2743), + [anon_sym_COLON_COLON] = ACTIONS(2745), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2745), + [anon_sym___declspec] = ACTIONS(2743), + [anon_sym___based] = ACTIONS(2743), + [anon_sym___cdecl] = ACTIONS(2743), + [anon_sym___clrcall] = ACTIONS(2743), + [anon_sym___stdcall] = ACTIONS(2743), + [anon_sym___fastcall] = ACTIONS(2743), + [anon_sym___thiscall] = ACTIONS(2743), + [anon_sym___vectorcall] = ACTIONS(2743), + [anon_sym_LBRACE] = ACTIONS(2745), + [anon_sym_RBRACE] = ACTIONS(2745), + [anon_sym_signed] = ACTIONS(2743), + [anon_sym_unsigned] = ACTIONS(2743), + [anon_sym_long] = ACTIONS(2743), + [anon_sym_short] = ACTIONS(2743), + [anon_sym_LBRACK] = ACTIONS(2743), + [anon_sym_static] = ACTIONS(2743), + [anon_sym_register] = ACTIONS(2743), + [anon_sym_inline] = ACTIONS(2743), + [anon_sym___inline] = ACTIONS(2743), + [anon_sym___inline__] = ACTIONS(2743), + [anon_sym___forceinline] = ACTIONS(2743), + [anon_sym_thread_local] = ACTIONS(2743), + [anon_sym___thread] = ACTIONS(2743), + [anon_sym_const] = ACTIONS(2743), + [anon_sym_constexpr] = ACTIONS(2743), + [anon_sym_volatile] = ACTIONS(2743), + [anon_sym_restrict] = ACTIONS(2743), + [anon_sym___restrict__] = ACTIONS(2743), + [anon_sym__Atomic] = ACTIONS(2743), + [anon_sym__Noreturn] = ACTIONS(2743), + [anon_sym_noreturn] = ACTIONS(2743), + [anon_sym__Nonnull] = ACTIONS(2743), + [anon_sym_mutable] = ACTIONS(2743), + [anon_sym_constinit] = ACTIONS(2743), + [anon_sym_consteval] = ACTIONS(2743), + [anon_sym_alignas] = ACTIONS(2743), + [anon_sym__Alignas] = ACTIONS(2743), + [sym_primitive_type] = ACTIONS(2743), + [anon_sym_enum] = ACTIONS(2743), + [anon_sym_class] = ACTIONS(2743), + [anon_sym_struct] = ACTIONS(2743), + [anon_sym_union] = ACTIONS(2743), + [anon_sym_if] = ACTIONS(2743), + [anon_sym_else] = ACTIONS(2743), + [anon_sym_switch] = ACTIONS(2743), + [anon_sym_case] = ACTIONS(2743), + [anon_sym_default] = ACTIONS(2743), + [anon_sym_while] = ACTIONS(2743), + [anon_sym_do] = ACTIONS(2743), + [anon_sym_for] = ACTIONS(2743), + [anon_sym_return] = ACTIONS(2743), + [anon_sym_break] = ACTIONS(2743), + [anon_sym_continue] = ACTIONS(2743), + [anon_sym_goto] = ACTIONS(2743), + [anon_sym___try] = ACTIONS(2743), + [anon_sym___leave] = ACTIONS(2743), + [anon_sym_not] = ACTIONS(2743), + [anon_sym_compl] = ACTIONS(2743), + [anon_sym_DASH_DASH] = ACTIONS(2745), + [anon_sym_PLUS_PLUS] = ACTIONS(2745), + [anon_sym_sizeof] = ACTIONS(2743), + [anon_sym___alignof__] = ACTIONS(2743), + [anon_sym___alignof] = ACTIONS(2743), + [anon_sym__alignof] = ACTIONS(2743), + [anon_sym_alignof] = ACTIONS(2743), + [anon_sym__Alignof] = ACTIONS(2743), + [anon_sym_offsetof] = ACTIONS(2743), + [anon_sym__Generic] = ACTIONS(2743), + [anon_sym_asm] = ACTIONS(2743), + [anon_sym___asm__] = ACTIONS(2743), + [anon_sym___asm] = ACTIONS(2743), + [sym_number_literal] = ACTIONS(2745), + [anon_sym_L_SQUOTE] = ACTIONS(2745), + [anon_sym_u_SQUOTE] = ACTIONS(2745), + [anon_sym_U_SQUOTE] = ACTIONS(2745), + [anon_sym_u8_SQUOTE] = ACTIONS(2745), + [anon_sym_SQUOTE] = ACTIONS(2745), + [anon_sym_L_DQUOTE] = ACTIONS(2745), + [anon_sym_u_DQUOTE] = ACTIONS(2745), + [anon_sym_U_DQUOTE] = ACTIONS(2745), + [anon_sym_u8_DQUOTE] = ACTIONS(2745), + [anon_sym_DQUOTE] = ACTIONS(2745), + [sym_true] = ACTIONS(2743), + [sym_false] = ACTIONS(2743), + [anon_sym_NULL] = ACTIONS(2743), + [anon_sym_nullptr] = ACTIONS(2743), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2743), + [anon_sym_decltype] = ACTIONS(2743), + [anon_sym_explicit] = ACTIONS(2743), + [anon_sym_typename] = ACTIONS(2743), + [anon_sym_template] = ACTIONS(2743), + [anon_sym_operator] = ACTIONS(2743), + [anon_sym_try] = ACTIONS(2743), + [anon_sym_delete] = ACTIONS(2743), + [anon_sym_throw] = ACTIONS(2743), + [anon_sym_namespace] = ACTIONS(2743), + [anon_sym_static_assert] = ACTIONS(2743), + [anon_sym_concept] = ACTIONS(2743), + [anon_sym_co_return] = ACTIONS(2743), + [anon_sym_co_yield] = ACTIONS(2743), + [anon_sym_R_DQUOTE] = ACTIONS(2745), + [anon_sym_LR_DQUOTE] = ACTIONS(2745), + [anon_sym_uR_DQUOTE] = ACTIONS(2745), + [anon_sym_UR_DQUOTE] = ACTIONS(2745), + [anon_sym_u8R_DQUOTE] = ACTIONS(2745), + [anon_sym_co_await] = ACTIONS(2743), + [anon_sym_new] = ACTIONS(2743), + [anon_sym_requires] = ACTIONS(2743), + [sym_this] = ACTIONS(2743), }, - [611] = { - [ts_builtin_sym_end] = ACTIONS(3321), - [sym_identifier] = ACTIONS(3319), - [aux_sym_preproc_include_token1] = ACTIONS(3319), - [aux_sym_preproc_def_token1] = ACTIONS(3319), - [aux_sym_preproc_if_token1] = ACTIONS(3319), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3319), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3319), - [sym_preproc_directive] = ACTIONS(3319), - [anon_sym_LPAREN2] = ACTIONS(3321), - [anon_sym_BANG] = ACTIONS(3321), - [anon_sym_TILDE] = ACTIONS(3321), - [anon_sym_DASH] = ACTIONS(3319), - [anon_sym_PLUS] = ACTIONS(3319), - [anon_sym_STAR] = ACTIONS(3321), - [anon_sym_AMP_AMP] = ACTIONS(3321), - [anon_sym_AMP] = ACTIONS(3319), - [anon_sym_SEMI] = ACTIONS(3321), - [anon_sym___extension__] = ACTIONS(3319), - [anon_sym_typedef] = ACTIONS(3319), - [anon_sym_virtual] = ACTIONS(3319), - [anon_sym_extern] = ACTIONS(3319), - [anon_sym___attribute__] = ACTIONS(3319), - [anon_sym___attribute] = ACTIONS(3319), - [anon_sym_using] = ACTIONS(3319), - [anon_sym_COLON_COLON] = ACTIONS(3321), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3321), - [anon_sym___declspec] = ACTIONS(3319), - [anon_sym___based] = ACTIONS(3319), - [anon_sym___cdecl] = ACTIONS(3319), - [anon_sym___clrcall] = ACTIONS(3319), - [anon_sym___stdcall] = ACTIONS(3319), - [anon_sym___fastcall] = ACTIONS(3319), - [anon_sym___thiscall] = ACTIONS(3319), - [anon_sym___vectorcall] = ACTIONS(3319), - [anon_sym_LBRACE] = ACTIONS(3321), - [anon_sym_signed] = ACTIONS(3319), - [anon_sym_unsigned] = ACTIONS(3319), - [anon_sym_long] = ACTIONS(3319), - [anon_sym_short] = ACTIONS(3319), - [anon_sym_LBRACK] = ACTIONS(3319), - [anon_sym_static] = ACTIONS(3319), - [anon_sym_register] = ACTIONS(3319), - [anon_sym_inline] = ACTIONS(3319), - [anon_sym___inline] = ACTIONS(3319), - [anon_sym___inline__] = ACTIONS(3319), - [anon_sym___forceinline] = ACTIONS(3319), - [anon_sym_thread_local] = ACTIONS(3319), - [anon_sym___thread] = ACTIONS(3319), - [anon_sym_const] = ACTIONS(3319), - [anon_sym_constexpr] = ACTIONS(3319), - [anon_sym_volatile] = ACTIONS(3319), - [anon_sym_restrict] = ACTIONS(3319), - [anon_sym___restrict__] = ACTIONS(3319), - [anon_sym__Atomic] = ACTIONS(3319), - [anon_sym__Noreturn] = ACTIONS(3319), - [anon_sym_noreturn] = ACTIONS(3319), - [anon_sym__Nonnull] = ACTIONS(3319), - [anon_sym_mutable] = ACTIONS(3319), - [anon_sym_constinit] = ACTIONS(3319), - [anon_sym_consteval] = ACTIONS(3319), - [anon_sym_alignas] = ACTIONS(3319), - [anon_sym__Alignas] = ACTIONS(3319), - [sym_primitive_type] = ACTIONS(3319), - [anon_sym_enum] = ACTIONS(3319), - [anon_sym_class] = ACTIONS(3319), - [anon_sym_struct] = ACTIONS(3319), - [anon_sym_union] = ACTIONS(3319), - [anon_sym_if] = ACTIONS(3319), - [anon_sym_switch] = ACTIONS(3319), - [anon_sym_case] = ACTIONS(3319), - [anon_sym_default] = ACTIONS(3319), - [anon_sym_while] = ACTIONS(3319), - [anon_sym_do] = ACTIONS(3319), - [anon_sym_for] = ACTIONS(3319), - [anon_sym_return] = ACTIONS(3319), - [anon_sym_break] = ACTIONS(3319), - [anon_sym_continue] = ACTIONS(3319), - [anon_sym_goto] = ACTIONS(3319), - [anon_sym_not] = ACTIONS(3319), - [anon_sym_compl] = ACTIONS(3319), - [anon_sym_DASH_DASH] = ACTIONS(3321), - [anon_sym_PLUS_PLUS] = ACTIONS(3321), - [anon_sym_sizeof] = ACTIONS(3319), - [anon_sym___alignof__] = ACTIONS(3319), - [anon_sym___alignof] = ACTIONS(3319), - [anon_sym__alignof] = ACTIONS(3319), - [anon_sym_alignof] = ACTIONS(3319), - [anon_sym__Alignof] = ACTIONS(3319), - [anon_sym_offsetof] = ACTIONS(3319), - [anon_sym__Generic] = ACTIONS(3319), - [anon_sym_asm] = ACTIONS(3319), - [anon_sym___asm__] = ACTIONS(3319), - [anon_sym___asm] = ACTIONS(3319), - [sym_number_literal] = ACTIONS(3321), - [anon_sym_L_SQUOTE] = ACTIONS(3321), - [anon_sym_u_SQUOTE] = ACTIONS(3321), - [anon_sym_U_SQUOTE] = ACTIONS(3321), - [anon_sym_u8_SQUOTE] = ACTIONS(3321), - [anon_sym_SQUOTE] = ACTIONS(3321), - [anon_sym_L_DQUOTE] = ACTIONS(3321), - [anon_sym_u_DQUOTE] = ACTIONS(3321), - [anon_sym_U_DQUOTE] = ACTIONS(3321), - [anon_sym_u8_DQUOTE] = ACTIONS(3321), - [anon_sym_DQUOTE] = ACTIONS(3321), - [sym_true] = ACTIONS(3319), - [sym_false] = ACTIONS(3319), - [anon_sym_NULL] = ACTIONS(3319), - [anon_sym_nullptr] = ACTIONS(3319), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3319), - [anon_sym_decltype] = ACTIONS(3319), - [anon_sym_explicit] = ACTIONS(3319), - [anon_sym_typename] = ACTIONS(3319), - [anon_sym_export] = ACTIONS(3319), - [anon_sym_module] = ACTIONS(3319), - [anon_sym_import] = ACTIONS(3319), - [anon_sym_template] = ACTIONS(3319), - [anon_sym_operator] = ACTIONS(3319), - [anon_sym_try] = ACTIONS(3319), - [anon_sym_delete] = ACTIONS(3319), - [anon_sym_throw] = ACTIONS(3319), - [anon_sym_namespace] = ACTIONS(3319), - [anon_sym_static_assert] = ACTIONS(3319), - [anon_sym_concept] = ACTIONS(3319), - [anon_sym_co_return] = ACTIONS(3319), - [anon_sym_co_yield] = ACTIONS(3319), - [anon_sym_R_DQUOTE] = ACTIONS(3321), - [anon_sym_LR_DQUOTE] = ACTIONS(3321), - [anon_sym_uR_DQUOTE] = ACTIONS(3321), - [anon_sym_UR_DQUOTE] = ACTIONS(3321), - [anon_sym_u8R_DQUOTE] = ACTIONS(3321), - [anon_sym_co_await] = ACTIONS(3319), - [anon_sym_new] = ACTIONS(3319), - [anon_sym_requires] = ACTIONS(3319), - [sym_this] = ACTIONS(3319), + [620] = { + [ts_builtin_sym_end] = ACTIONS(2925), + [sym_identifier] = ACTIONS(2923), + [aux_sym_preproc_include_token1] = ACTIONS(2923), + [aux_sym_preproc_def_token1] = ACTIONS(2923), + [aux_sym_preproc_if_token1] = ACTIONS(2923), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2923), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2923), + [sym_preproc_directive] = ACTIONS(2923), + [anon_sym_LPAREN2] = ACTIONS(2925), + [anon_sym_BANG] = ACTIONS(2925), + [anon_sym_TILDE] = ACTIONS(2925), + [anon_sym_DASH] = ACTIONS(2923), + [anon_sym_PLUS] = ACTIONS(2923), + [anon_sym_STAR] = ACTIONS(2925), + [anon_sym_AMP_AMP] = ACTIONS(2925), + [anon_sym_AMP] = ACTIONS(2923), + [anon_sym_SEMI] = ACTIONS(2925), + [anon_sym___extension__] = ACTIONS(2923), + [anon_sym_typedef] = ACTIONS(2923), + [anon_sym_virtual] = ACTIONS(2923), + [anon_sym_extern] = ACTIONS(2923), + [anon_sym___attribute__] = ACTIONS(2923), + [anon_sym___attribute] = ACTIONS(2923), + [anon_sym_using] = ACTIONS(2923), + [anon_sym_COLON_COLON] = ACTIONS(2925), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2925), + [anon_sym___declspec] = ACTIONS(2923), + [anon_sym___based] = ACTIONS(2923), + [anon_sym___cdecl] = ACTIONS(2923), + [anon_sym___clrcall] = ACTIONS(2923), + [anon_sym___stdcall] = ACTIONS(2923), + [anon_sym___fastcall] = ACTIONS(2923), + [anon_sym___thiscall] = ACTIONS(2923), + [anon_sym___vectorcall] = ACTIONS(2923), + [anon_sym_LBRACE] = ACTIONS(2925), + [anon_sym_signed] = ACTIONS(2923), + [anon_sym_unsigned] = ACTIONS(2923), + [anon_sym_long] = ACTIONS(2923), + [anon_sym_short] = ACTIONS(2923), + [anon_sym_LBRACK] = ACTIONS(2923), + [anon_sym_static] = ACTIONS(2923), + [anon_sym_register] = ACTIONS(2923), + [anon_sym_inline] = ACTIONS(2923), + [anon_sym___inline] = ACTIONS(2923), + [anon_sym___inline__] = ACTIONS(2923), + [anon_sym___forceinline] = ACTIONS(2923), + [anon_sym_thread_local] = ACTIONS(2923), + [anon_sym___thread] = ACTIONS(2923), + [anon_sym_const] = ACTIONS(2923), + [anon_sym_constexpr] = ACTIONS(2923), + [anon_sym_volatile] = ACTIONS(2923), + [anon_sym_restrict] = ACTIONS(2923), + [anon_sym___restrict__] = ACTIONS(2923), + [anon_sym__Atomic] = ACTIONS(2923), + [anon_sym__Noreturn] = ACTIONS(2923), + [anon_sym_noreturn] = ACTIONS(2923), + [anon_sym__Nonnull] = ACTIONS(2923), + [anon_sym_mutable] = ACTIONS(2923), + [anon_sym_constinit] = ACTIONS(2923), + [anon_sym_consteval] = ACTIONS(2923), + [anon_sym_alignas] = ACTIONS(2923), + [anon_sym__Alignas] = ACTIONS(2923), + [sym_primitive_type] = ACTIONS(2923), + [anon_sym_enum] = ACTIONS(2923), + [anon_sym_class] = ACTIONS(2923), + [anon_sym_struct] = ACTIONS(2923), + [anon_sym_union] = ACTIONS(2923), + [anon_sym_if] = ACTIONS(2923), + [anon_sym_switch] = ACTIONS(2923), + [anon_sym_case] = ACTIONS(2923), + [anon_sym_default] = ACTIONS(2923), + [anon_sym_while] = ACTIONS(2923), + [anon_sym_do] = ACTIONS(2923), + [anon_sym_for] = ACTIONS(2923), + [anon_sym_return] = ACTIONS(2923), + [anon_sym_break] = ACTIONS(2923), + [anon_sym_continue] = ACTIONS(2923), + [anon_sym_goto] = ACTIONS(2923), + [anon_sym_not] = ACTIONS(2923), + [anon_sym_compl] = ACTIONS(2923), + [anon_sym_DASH_DASH] = ACTIONS(2925), + [anon_sym_PLUS_PLUS] = ACTIONS(2925), + [anon_sym_sizeof] = ACTIONS(2923), + [anon_sym___alignof__] = ACTIONS(2923), + [anon_sym___alignof] = ACTIONS(2923), + [anon_sym__alignof] = ACTIONS(2923), + [anon_sym_alignof] = ACTIONS(2923), + [anon_sym__Alignof] = ACTIONS(2923), + [anon_sym_offsetof] = ACTIONS(2923), + [anon_sym__Generic] = ACTIONS(2923), + [anon_sym_asm] = ACTIONS(2923), + [anon_sym___asm__] = ACTIONS(2923), + [anon_sym___asm] = ACTIONS(2923), + [sym_number_literal] = ACTIONS(2925), + [anon_sym_L_SQUOTE] = ACTIONS(2925), + [anon_sym_u_SQUOTE] = ACTIONS(2925), + [anon_sym_U_SQUOTE] = ACTIONS(2925), + [anon_sym_u8_SQUOTE] = ACTIONS(2925), + [anon_sym_SQUOTE] = ACTIONS(2925), + [anon_sym_L_DQUOTE] = ACTIONS(2925), + [anon_sym_u_DQUOTE] = ACTIONS(2925), + [anon_sym_U_DQUOTE] = ACTIONS(2925), + [anon_sym_u8_DQUOTE] = ACTIONS(2925), + [anon_sym_DQUOTE] = ACTIONS(2925), + [sym_true] = ACTIONS(2923), + [sym_false] = ACTIONS(2923), + [anon_sym_NULL] = ACTIONS(2923), + [anon_sym_nullptr] = ACTIONS(2923), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2923), + [anon_sym_decltype] = ACTIONS(2923), + [anon_sym_explicit] = ACTIONS(2923), + [anon_sym_typename] = ACTIONS(2923), + [anon_sym_export] = ACTIONS(2923), + [anon_sym_module] = ACTIONS(2923), + [anon_sym_import] = ACTIONS(2923), + [anon_sym_template] = ACTIONS(2923), + [anon_sym_operator] = ACTIONS(2923), + [anon_sym_try] = ACTIONS(2923), + [anon_sym_delete] = ACTIONS(2923), + [anon_sym_throw] = ACTIONS(2923), + [anon_sym_namespace] = ACTIONS(2923), + [anon_sym_static_assert] = ACTIONS(2923), + [anon_sym_concept] = ACTIONS(2923), + [anon_sym_co_return] = ACTIONS(2923), + [anon_sym_co_yield] = ACTIONS(2923), + [anon_sym_R_DQUOTE] = ACTIONS(2925), + [anon_sym_LR_DQUOTE] = ACTIONS(2925), + [anon_sym_uR_DQUOTE] = ACTIONS(2925), + [anon_sym_UR_DQUOTE] = ACTIONS(2925), + [anon_sym_u8R_DQUOTE] = ACTIONS(2925), + [anon_sym_co_await] = ACTIONS(2923), + [anon_sym_new] = ACTIONS(2923), + [anon_sym_requires] = ACTIONS(2923), + [sym_this] = ACTIONS(2923), }, - [612] = { - [ts_builtin_sym_end] = ACTIONS(3106), - [sym_identifier] = ACTIONS(3104), - [aux_sym_preproc_include_token1] = ACTIONS(3104), - [aux_sym_preproc_def_token1] = ACTIONS(3104), - [aux_sym_preproc_if_token1] = ACTIONS(3104), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3104), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3104), - [sym_preproc_directive] = ACTIONS(3104), - [anon_sym_LPAREN2] = ACTIONS(3106), - [anon_sym_BANG] = ACTIONS(3106), - [anon_sym_TILDE] = ACTIONS(3106), - [anon_sym_DASH] = ACTIONS(3104), - [anon_sym_PLUS] = ACTIONS(3104), - [anon_sym_STAR] = ACTIONS(3106), - [anon_sym_AMP_AMP] = ACTIONS(3106), - [anon_sym_AMP] = ACTIONS(3104), - [anon_sym_SEMI] = ACTIONS(3106), - [anon_sym___extension__] = ACTIONS(3104), - [anon_sym_typedef] = ACTIONS(3104), - [anon_sym_virtual] = ACTIONS(3104), - [anon_sym_extern] = ACTIONS(3104), - [anon_sym___attribute__] = ACTIONS(3104), - [anon_sym___attribute] = ACTIONS(3104), - [anon_sym_using] = ACTIONS(3104), - [anon_sym_COLON_COLON] = ACTIONS(3106), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3106), - [anon_sym___declspec] = ACTIONS(3104), - [anon_sym___based] = ACTIONS(3104), - [anon_sym___cdecl] = ACTIONS(3104), - [anon_sym___clrcall] = ACTIONS(3104), - [anon_sym___stdcall] = ACTIONS(3104), - [anon_sym___fastcall] = ACTIONS(3104), - [anon_sym___thiscall] = ACTIONS(3104), - [anon_sym___vectorcall] = ACTIONS(3104), - [anon_sym_LBRACE] = ACTIONS(3106), - [anon_sym_signed] = ACTIONS(3104), - [anon_sym_unsigned] = ACTIONS(3104), - [anon_sym_long] = ACTIONS(3104), - [anon_sym_short] = ACTIONS(3104), - [anon_sym_LBRACK] = ACTIONS(3104), - [anon_sym_static] = ACTIONS(3104), - [anon_sym_register] = ACTIONS(3104), - [anon_sym_inline] = ACTIONS(3104), - [anon_sym___inline] = ACTIONS(3104), - [anon_sym___inline__] = ACTIONS(3104), - [anon_sym___forceinline] = ACTIONS(3104), - [anon_sym_thread_local] = ACTIONS(3104), - [anon_sym___thread] = ACTIONS(3104), - [anon_sym_const] = ACTIONS(3104), - [anon_sym_constexpr] = ACTIONS(3104), - [anon_sym_volatile] = ACTIONS(3104), - [anon_sym_restrict] = ACTIONS(3104), - [anon_sym___restrict__] = ACTIONS(3104), - [anon_sym__Atomic] = ACTIONS(3104), - [anon_sym__Noreturn] = ACTIONS(3104), - [anon_sym_noreturn] = ACTIONS(3104), - [anon_sym__Nonnull] = ACTIONS(3104), - [anon_sym_mutable] = ACTIONS(3104), - [anon_sym_constinit] = ACTIONS(3104), - [anon_sym_consteval] = ACTIONS(3104), - [anon_sym_alignas] = ACTIONS(3104), - [anon_sym__Alignas] = ACTIONS(3104), - [sym_primitive_type] = ACTIONS(3104), - [anon_sym_enum] = ACTIONS(3104), - [anon_sym_class] = ACTIONS(3104), - [anon_sym_struct] = ACTIONS(3104), - [anon_sym_union] = ACTIONS(3104), - [anon_sym_if] = ACTIONS(3104), - [anon_sym_switch] = ACTIONS(3104), - [anon_sym_case] = ACTIONS(3104), - [anon_sym_default] = ACTIONS(3104), - [anon_sym_while] = ACTIONS(3104), - [anon_sym_do] = ACTIONS(3104), - [anon_sym_for] = ACTIONS(3104), - [anon_sym_return] = ACTIONS(3104), - [anon_sym_break] = ACTIONS(3104), - [anon_sym_continue] = ACTIONS(3104), - [anon_sym_goto] = ACTIONS(3104), - [anon_sym_not] = ACTIONS(3104), - [anon_sym_compl] = ACTIONS(3104), - [anon_sym_DASH_DASH] = ACTIONS(3106), - [anon_sym_PLUS_PLUS] = ACTIONS(3106), - [anon_sym_sizeof] = ACTIONS(3104), - [anon_sym___alignof__] = ACTIONS(3104), - [anon_sym___alignof] = ACTIONS(3104), - [anon_sym__alignof] = ACTIONS(3104), - [anon_sym_alignof] = ACTIONS(3104), - [anon_sym__Alignof] = ACTIONS(3104), - [anon_sym_offsetof] = ACTIONS(3104), - [anon_sym__Generic] = ACTIONS(3104), - [anon_sym_asm] = ACTIONS(3104), - [anon_sym___asm__] = ACTIONS(3104), - [anon_sym___asm] = ACTIONS(3104), - [sym_number_literal] = ACTIONS(3106), - [anon_sym_L_SQUOTE] = ACTIONS(3106), - [anon_sym_u_SQUOTE] = ACTIONS(3106), - [anon_sym_U_SQUOTE] = ACTIONS(3106), - [anon_sym_u8_SQUOTE] = ACTIONS(3106), - [anon_sym_SQUOTE] = ACTIONS(3106), - [anon_sym_L_DQUOTE] = ACTIONS(3106), - [anon_sym_u_DQUOTE] = ACTIONS(3106), - [anon_sym_U_DQUOTE] = ACTIONS(3106), - [anon_sym_u8_DQUOTE] = ACTIONS(3106), - [anon_sym_DQUOTE] = ACTIONS(3106), - [sym_true] = ACTIONS(3104), - [sym_false] = ACTIONS(3104), - [anon_sym_NULL] = ACTIONS(3104), - [anon_sym_nullptr] = ACTIONS(3104), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3104), - [anon_sym_decltype] = ACTIONS(3104), - [anon_sym_explicit] = ACTIONS(3104), - [anon_sym_typename] = ACTIONS(3104), - [anon_sym_export] = ACTIONS(3104), - [anon_sym_module] = ACTIONS(3104), - [anon_sym_import] = ACTIONS(3104), - [anon_sym_template] = ACTIONS(3104), - [anon_sym_operator] = ACTIONS(3104), - [anon_sym_try] = ACTIONS(3104), - [anon_sym_delete] = ACTIONS(3104), - [anon_sym_throw] = ACTIONS(3104), - [anon_sym_namespace] = ACTIONS(3104), - [anon_sym_static_assert] = ACTIONS(3104), - [anon_sym_concept] = ACTIONS(3104), - [anon_sym_co_return] = ACTIONS(3104), - [anon_sym_co_yield] = ACTIONS(3104), - [anon_sym_R_DQUOTE] = ACTIONS(3106), - [anon_sym_LR_DQUOTE] = ACTIONS(3106), - [anon_sym_uR_DQUOTE] = ACTIONS(3106), - [anon_sym_UR_DQUOTE] = ACTIONS(3106), - [anon_sym_u8R_DQUOTE] = ACTIONS(3106), - [anon_sym_co_await] = ACTIONS(3104), - [anon_sym_new] = ACTIONS(3104), - [anon_sym_requires] = ACTIONS(3104), - [sym_this] = ACTIONS(3104), + [621] = { + [ts_builtin_sym_end] = ACTIONS(2873), + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym___attribute] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym__Nonnull] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym__Alignas] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [anon_sym___asm] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_export] = ACTIONS(2871), + [anon_sym_module] = ACTIONS(2871), + [anon_sym_import] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), }, - [613] = { - [sym_identifier] = ACTIONS(2665), - [aux_sym_preproc_include_token1] = ACTIONS(2665), - [aux_sym_preproc_def_token1] = ACTIONS(2665), - [aux_sym_preproc_if_token1] = ACTIONS(2665), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2665), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2665), - [sym_preproc_directive] = ACTIONS(2665), - [anon_sym_LPAREN2] = ACTIONS(2667), - [anon_sym_BANG] = ACTIONS(2667), - [anon_sym_TILDE] = ACTIONS(2667), - [anon_sym_DASH] = ACTIONS(2665), - [anon_sym_PLUS] = ACTIONS(2665), - [anon_sym_STAR] = ACTIONS(2667), - [anon_sym_AMP_AMP] = ACTIONS(2667), - [anon_sym_AMP] = ACTIONS(2665), - [anon_sym_SEMI] = ACTIONS(2667), - [anon_sym___extension__] = ACTIONS(2665), - [anon_sym_typedef] = ACTIONS(2665), - [anon_sym_virtual] = ACTIONS(2665), - [anon_sym_extern] = ACTIONS(2665), - [anon_sym___attribute__] = ACTIONS(2665), - [anon_sym___attribute] = ACTIONS(2665), - [anon_sym_using] = ACTIONS(2665), - [anon_sym_COLON_COLON] = ACTIONS(2667), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2667), - [anon_sym___declspec] = ACTIONS(2665), - [anon_sym___based] = ACTIONS(2665), - [anon_sym___cdecl] = ACTIONS(2665), - [anon_sym___clrcall] = ACTIONS(2665), - [anon_sym___stdcall] = ACTIONS(2665), - [anon_sym___fastcall] = ACTIONS(2665), - [anon_sym___thiscall] = ACTIONS(2665), - [anon_sym___vectorcall] = ACTIONS(2665), - [anon_sym_LBRACE] = ACTIONS(2667), - [anon_sym_RBRACE] = ACTIONS(2667), - [anon_sym_signed] = ACTIONS(2665), - [anon_sym_unsigned] = ACTIONS(2665), - [anon_sym_long] = ACTIONS(2665), - [anon_sym_short] = ACTIONS(2665), - [anon_sym_LBRACK] = ACTIONS(2665), - [anon_sym_static] = ACTIONS(2665), - [anon_sym_register] = ACTIONS(2665), - [anon_sym_inline] = ACTIONS(2665), - [anon_sym___inline] = ACTIONS(2665), - [anon_sym___inline__] = ACTIONS(2665), - [anon_sym___forceinline] = ACTIONS(2665), - [anon_sym_thread_local] = ACTIONS(2665), - [anon_sym___thread] = ACTIONS(2665), - [anon_sym_const] = ACTIONS(2665), - [anon_sym_constexpr] = ACTIONS(2665), - [anon_sym_volatile] = ACTIONS(2665), - [anon_sym_restrict] = ACTIONS(2665), - [anon_sym___restrict__] = ACTIONS(2665), - [anon_sym__Atomic] = ACTIONS(2665), - [anon_sym__Noreturn] = ACTIONS(2665), - [anon_sym_noreturn] = ACTIONS(2665), - [anon_sym__Nonnull] = ACTIONS(2665), - [anon_sym_mutable] = ACTIONS(2665), - [anon_sym_constinit] = ACTIONS(2665), - [anon_sym_consteval] = ACTIONS(2665), - [anon_sym_alignas] = ACTIONS(2665), - [anon_sym__Alignas] = ACTIONS(2665), - [sym_primitive_type] = ACTIONS(2665), - [anon_sym_enum] = ACTIONS(2665), - [anon_sym_class] = ACTIONS(2665), - [anon_sym_struct] = ACTIONS(2665), - [anon_sym_union] = ACTIONS(2665), - [anon_sym_if] = ACTIONS(2665), - [anon_sym_else] = ACTIONS(2665), - [anon_sym_switch] = ACTIONS(2665), - [anon_sym_case] = ACTIONS(2665), - [anon_sym_default] = ACTIONS(2665), - [anon_sym_while] = ACTIONS(2665), - [anon_sym_do] = ACTIONS(2665), - [anon_sym_for] = ACTIONS(2665), - [anon_sym_return] = ACTIONS(2665), - [anon_sym_break] = ACTIONS(2665), - [anon_sym_continue] = ACTIONS(2665), - [anon_sym_goto] = ACTIONS(2665), - [anon_sym___try] = ACTIONS(2665), - [anon_sym___leave] = ACTIONS(2665), - [anon_sym_not] = ACTIONS(2665), - [anon_sym_compl] = ACTIONS(2665), - [anon_sym_DASH_DASH] = ACTIONS(2667), - [anon_sym_PLUS_PLUS] = ACTIONS(2667), - [anon_sym_sizeof] = ACTIONS(2665), - [anon_sym___alignof__] = ACTIONS(2665), - [anon_sym___alignof] = ACTIONS(2665), - [anon_sym__alignof] = ACTIONS(2665), - [anon_sym_alignof] = ACTIONS(2665), - [anon_sym__Alignof] = ACTIONS(2665), - [anon_sym_offsetof] = ACTIONS(2665), - [anon_sym__Generic] = ACTIONS(2665), - [anon_sym_asm] = ACTIONS(2665), - [anon_sym___asm__] = ACTIONS(2665), - [anon_sym___asm] = ACTIONS(2665), - [sym_number_literal] = ACTIONS(2667), - [anon_sym_L_SQUOTE] = ACTIONS(2667), - [anon_sym_u_SQUOTE] = ACTIONS(2667), - [anon_sym_U_SQUOTE] = ACTIONS(2667), - [anon_sym_u8_SQUOTE] = ACTIONS(2667), - [anon_sym_SQUOTE] = ACTIONS(2667), - [anon_sym_L_DQUOTE] = ACTIONS(2667), - [anon_sym_u_DQUOTE] = ACTIONS(2667), - [anon_sym_U_DQUOTE] = ACTIONS(2667), - [anon_sym_u8_DQUOTE] = ACTIONS(2667), - [anon_sym_DQUOTE] = ACTIONS(2667), - [sym_true] = ACTIONS(2665), - [sym_false] = ACTIONS(2665), - [anon_sym_NULL] = ACTIONS(2665), - [anon_sym_nullptr] = ACTIONS(2665), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2665), - [anon_sym_decltype] = ACTIONS(2665), - [anon_sym_explicit] = ACTIONS(2665), - [anon_sym_typename] = ACTIONS(2665), - [anon_sym_template] = ACTIONS(2665), - [anon_sym_operator] = ACTIONS(2665), - [anon_sym_try] = ACTIONS(2665), - [anon_sym_delete] = ACTIONS(2665), - [anon_sym_throw] = ACTIONS(2665), - [anon_sym_namespace] = ACTIONS(2665), - [anon_sym_static_assert] = ACTIONS(2665), - [anon_sym_concept] = ACTIONS(2665), - [anon_sym_co_return] = ACTIONS(2665), - [anon_sym_co_yield] = ACTIONS(2665), - [anon_sym_R_DQUOTE] = ACTIONS(2667), - [anon_sym_LR_DQUOTE] = ACTIONS(2667), - [anon_sym_uR_DQUOTE] = ACTIONS(2667), - [anon_sym_UR_DQUOTE] = ACTIONS(2667), - [anon_sym_u8R_DQUOTE] = ACTIONS(2667), - [anon_sym_co_await] = ACTIONS(2665), - [anon_sym_new] = ACTIONS(2665), - [anon_sym_requires] = ACTIONS(2665), - [sym_this] = ACTIONS(2665), + [622] = { + [sym_identifier] = ACTIONS(2759), + [aux_sym_preproc_include_token1] = ACTIONS(2759), + [aux_sym_preproc_def_token1] = ACTIONS(2759), + [aux_sym_preproc_if_token1] = ACTIONS(2759), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2759), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2759), + [sym_preproc_directive] = ACTIONS(2759), + [anon_sym_LPAREN2] = ACTIONS(2761), + [anon_sym_BANG] = ACTIONS(2761), + [anon_sym_TILDE] = ACTIONS(2761), + [anon_sym_DASH] = ACTIONS(2759), + [anon_sym_PLUS] = ACTIONS(2759), + [anon_sym_STAR] = ACTIONS(2761), + [anon_sym_AMP_AMP] = ACTIONS(2761), + [anon_sym_AMP] = ACTIONS(2759), + [anon_sym_SEMI] = ACTIONS(2761), + [anon_sym___extension__] = ACTIONS(2759), + [anon_sym_typedef] = ACTIONS(2759), + [anon_sym_virtual] = ACTIONS(2759), + [anon_sym_extern] = ACTIONS(2759), + [anon_sym___attribute__] = ACTIONS(2759), + [anon_sym___attribute] = ACTIONS(2759), + [anon_sym_using] = ACTIONS(2759), + [anon_sym_COLON_COLON] = ACTIONS(2761), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2761), + [anon_sym___declspec] = ACTIONS(2759), + [anon_sym___based] = ACTIONS(2759), + [anon_sym___cdecl] = ACTIONS(2759), + [anon_sym___clrcall] = ACTIONS(2759), + [anon_sym___stdcall] = ACTIONS(2759), + [anon_sym___fastcall] = ACTIONS(2759), + [anon_sym___thiscall] = ACTIONS(2759), + [anon_sym___vectorcall] = ACTIONS(2759), + [anon_sym_LBRACE] = ACTIONS(2761), + [anon_sym_RBRACE] = ACTIONS(2761), + [anon_sym_signed] = ACTIONS(2759), + [anon_sym_unsigned] = ACTIONS(2759), + [anon_sym_long] = ACTIONS(2759), + [anon_sym_short] = ACTIONS(2759), + [anon_sym_LBRACK] = ACTIONS(2759), + [anon_sym_static] = ACTIONS(2759), + [anon_sym_register] = ACTIONS(2759), + [anon_sym_inline] = ACTIONS(2759), + [anon_sym___inline] = ACTIONS(2759), + [anon_sym___inline__] = ACTIONS(2759), + [anon_sym___forceinline] = ACTIONS(2759), + [anon_sym_thread_local] = ACTIONS(2759), + [anon_sym___thread] = ACTIONS(2759), + [anon_sym_const] = ACTIONS(2759), + [anon_sym_constexpr] = ACTIONS(2759), + [anon_sym_volatile] = ACTIONS(2759), + [anon_sym_restrict] = ACTIONS(2759), + [anon_sym___restrict__] = ACTIONS(2759), + [anon_sym__Atomic] = ACTIONS(2759), + [anon_sym__Noreturn] = ACTIONS(2759), + [anon_sym_noreturn] = ACTIONS(2759), + [anon_sym__Nonnull] = ACTIONS(2759), + [anon_sym_mutable] = ACTIONS(2759), + [anon_sym_constinit] = ACTIONS(2759), + [anon_sym_consteval] = ACTIONS(2759), + [anon_sym_alignas] = ACTIONS(2759), + [anon_sym__Alignas] = ACTIONS(2759), + [sym_primitive_type] = ACTIONS(2759), + [anon_sym_enum] = ACTIONS(2759), + [anon_sym_class] = ACTIONS(2759), + [anon_sym_struct] = ACTIONS(2759), + [anon_sym_union] = ACTIONS(2759), + [anon_sym_if] = ACTIONS(2759), + [anon_sym_else] = ACTIONS(2759), + [anon_sym_switch] = ACTIONS(2759), + [anon_sym_case] = ACTIONS(2759), + [anon_sym_default] = ACTIONS(2759), + [anon_sym_while] = ACTIONS(2759), + [anon_sym_do] = ACTIONS(2759), + [anon_sym_for] = ACTIONS(2759), + [anon_sym_return] = ACTIONS(2759), + [anon_sym_break] = ACTIONS(2759), + [anon_sym_continue] = ACTIONS(2759), + [anon_sym_goto] = ACTIONS(2759), + [anon_sym___try] = ACTIONS(2759), + [anon_sym___leave] = ACTIONS(2759), + [anon_sym_not] = ACTIONS(2759), + [anon_sym_compl] = ACTIONS(2759), + [anon_sym_DASH_DASH] = ACTIONS(2761), + [anon_sym_PLUS_PLUS] = ACTIONS(2761), + [anon_sym_sizeof] = ACTIONS(2759), + [anon_sym___alignof__] = ACTIONS(2759), + [anon_sym___alignof] = ACTIONS(2759), + [anon_sym__alignof] = ACTIONS(2759), + [anon_sym_alignof] = ACTIONS(2759), + [anon_sym__Alignof] = ACTIONS(2759), + [anon_sym_offsetof] = ACTIONS(2759), + [anon_sym__Generic] = ACTIONS(2759), + [anon_sym_asm] = ACTIONS(2759), + [anon_sym___asm__] = ACTIONS(2759), + [anon_sym___asm] = ACTIONS(2759), + [sym_number_literal] = ACTIONS(2761), + [anon_sym_L_SQUOTE] = ACTIONS(2761), + [anon_sym_u_SQUOTE] = ACTIONS(2761), + [anon_sym_U_SQUOTE] = ACTIONS(2761), + [anon_sym_u8_SQUOTE] = ACTIONS(2761), + [anon_sym_SQUOTE] = ACTIONS(2761), + [anon_sym_L_DQUOTE] = ACTIONS(2761), + [anon_sym_u_DQUOTE] = ACTIONS(2761), + [anon_sym_U_DQUOTE] = ACTIONS(2761), + [anon_sym_u8_DQUOTE] = ACTIONS(2761), + [anon_sym_DQUOTE] = ACTIONS(2761), + [sym_true] = ACTIONS(2759), + [sym_false] = ACTIONS(2759), + [anon_sym_NULL] = ACTIONS(2759), + [anon_sym_nullptr] = ACTIONS(2759), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2759), + [anon_sym_decltype] = ACTIONS(2759), + [anon_sym_explicit] = ACTIONS(2759), + [anon_sym_typename] = ACTIONS(2759), + [anon_sym_template] = ACTIONS(2759), + [anon_sym_operator] = ACTIONS(2759), + [anon_sym_try] = ACTIONS(2759), + [anon_sym_delete] = ACTIONS(2759), + [anon_sym_throw] = ACTIONS(2759), + [anon_sym_namespace] = ACTIONS(2759), + [anon_sym_static_assert] = ACTIONS(2759), + [anon_sym_concept] = ACTIONS(2759), + [anon_sym_co_return] = ACTIONS(2759), + [anon_sym_co_yield] = ACTIONS(2759), + [anon_sym_R_DQUOTE] = ACTIONS(2761), + [anon_sym_LR_DQUOTE] = ACTIONS(2761), + [anon_sym_uR_DQUOTE] = ACTIONS(2761), + [anon_sym_UR_DQUOTE] = ACTIONS(2761), + [anon_sym_u8R_DQUOTE] = ACTIONS(2761), + [anon_sym_co_await] = ACTIONS(2759), + [anon_sym_new] = ACTIONS(2759), + [anon_sym_requires] = ACTIONS(2759), + [sym_this] = ACTIONS(2759), }, - [614] = { - [sym_identifier] = ACTIONS(2639), - [aux_sym_preproc_include_token1] = ACTIONS(2639), - [aux_sym_preproc_def_token1] = ACTIONS(2639), - [aux_sym_preproc_if_token1] = ACTIONS(2639), - [aux_sym_preproc_if_token2] = ACTIONS(2639), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2639), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2639), - [sym_preproc_directive] = ACTIONS(2639), - [anon_sym_LPAREN2] = ACTIONS(2641), - [anon_sym_BANG] = ACTIONS(2641), - [anon_sym_TILDE] = ACTIONS(2641), - [anon_sym_DASH] = ACTIONS(2639), - [anon_sym_PLUS] = ACTIONS(2639), - [anon_sym_STAR] = ACTIONS(2641), - [anon_sym_AMP_AMP] = ACTIONS(2641), - [anon_sym_AMP] = ACTIONS(2639), - [anon_sym_SEMI] = ACTIONS(2641), - [anon_sym___extension__] = ACTIONS(2639), - [anon_sym_typedef] = ACTIONS(2639), - [anon_sym_virtual] = ACTIONS(2639), - [anon_sym_extern] = ACTIONS(2639), - [anon_sym___attribute__] = ACTIONS(2639), - [anon_sym___attribute] = ACTIONS(2639), - [anon_sym_using] = ACTIONS(2639), - [anon_sym_COLON_COLON] = ACTIONS(2641), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2641), - [anon_sym___declspec] = ACTIONS(2639), - [anon_sym___based] = ACTIONS(2639), - [anon_sym___cdecl] = ACTIONS(2639), - [anon_sym___clrcall] = ACTIONS(2639), - [anon_sym___stdcall] = ACTIONS(2639), - [anon_sym___fastcall] = ACTIONS(2639), - [anon_sym___thiscall] = ACTIONS(2639), - [anon_sym___vectorcall] = ACTIONS(2639), - [anon_sym_LBRACE] = ACTIONS(2641), - [anon_sym_signed] = ACTIONS(2639), - [anon_sym_unsigned] = ACTIONS(2639), - [anon_sym_long] = ACTIONS(2639), - [anon_sym_short] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(2639), - [anon_sym_static] = ACTIONS(2639), - [anon_sym_register] = ACTIONS(2639), - [anon_sym_inline] = ACTIONS(2639), - [anon_sym___inline] = ACTIONS(2639), - [anon_sym___inline__] = ACTIONS(2639), - [anon_sym___forceinline] = ACTIONS(2639), - [anon_sym_thread_local] = ACTIONS(2639), - [anon_sym___thread] = ACTIONS(2639), - [anon_sym_const] = ACTIONS(2639), - [anon_sym_constexpr] = ACTIONS(2639), - [anon_sym_volatile] = ACTIONS(2639), - [anon_sym_restrict] = ACTIONS(2639), - [anon_sym___restrict__] = ACTIONS(2639), - [anon_sym__Atomic] = ACTIONS(2639), - [anon_sym__Noreturn] = ACTIONS(2639), - [anon_sym_noreturn] = ACTIONS(2639), - [anon_sym__Nonnull] = ACTIONS(2639), - [anon_sym_mutable] = ACTIONS(2639), - [anon_sym_constinit] = ACTIONS(2639), - [anon_sym_consteval] = ACTIONS(2639), - [anon_sym_alignas] = ACTIONS(2639), - [anon_sym__Alignas] = ACTIONS(2639), - [sym_primitive_type] = ACTIONS(2639), - [anon_sym_enum] = ACTIONS(2639), - [anon_sym_class] = ACTIONS(2639), - [anon_sym_struct] = ACTIONS(2639), - [anon_sym_union] = ACTIONS(2639), - [anon_sym_if] = ACTIONS(2639), - [anon_sym_else] = ACTIONS(2639), - [anon_sym_switch] = ACTIONS(2639), - [anon_sym_case] = ACTIONS(2639), - [anon_sym_default] = ACTIONS(2639), - [anon_sym_while] = ACTIONS(2639), - [anon_sym_do] = ACTIONS(2639), - [anon_sym_for] = ACTIONS(2639), - [anon_sym_return] = ACTIONS(2639), - [anon_sym_break] = ACTIONS(2639), - [anon_sym_continue] = ACTIONS(2639), - [anon_sym_goto] = ACTIONS(2639), - [anon_sym___try] = ACTIONS(2639), - [anon_sym___leave] = ACTIONS(2639), - [anon_sym_not] = ACTIONS(2639), - [anon_sym_compl] = ACTIONS(2639), - [anon_sym_DASH_DASH] = ACTIONS(2641), - [anon_sym_PLUS_PLUS] = ACTIONS(2641), - [anon_sym_sizeof] = ACTIONS(2639), - [anon_sym___alignof__] = ACTIONS(2639), - [anon_sym___alignof] = ACTIONS(2639), - [anon_sym__alignof] = ACTIONS(2639), - [anon_sym_alignof] = ACTIONS(2639), - [anon_sym__Alignof] = ACTIONS(2639), - [anon_sym_offsetof] = ACTIONS(2639), - [anon_sym__Generic] = ACTIONS(2639), - [anon_sym_asm] = ACTIONS(2639), - [anon_sym___asm__] = ACTIONS(2639), - [anon_sym___asm] = ACTIONS(2639), - [sym_number_literal] = ACTIONS(2641), - [anon_sym_L_SQUOTE] = ACTIONS(2641), - [anon_sym_u_SQUOTE] = ACTIONS(2641), - [anon_sym_U_SQUOTE] = ACTIONS(2641), - [anon_sym_u8_SQUOTE] = ACTIONS(2641), - [anon_sym_SQUOTE] = ACTIONS(2641), - [anon_sym_L_DQUOTE] = ACTIONS(2641), - [anon_sym_u_DQUOTE] = ACTIONS(2641), - [anon_sym_U_DQUOTE] = ACTIONS(2641), - [anon_sym_u8_DQUOTE] = ACTIONS(2641), - [anon_sym_DQUOTE] = ACTIONS(2641), - [sym_true] = ACTIONS(2639), - [sym_false] = ACTIONS(2639), - [anon_sym_NULL] = ACTIONS(2639), - [anon_sym_nullptr] = ACTIONS(2639), + [623] = { + [sym_identifier] = ACTIONS(2731), + [aux_sym_preproc_include_token1] = ACTIONS(2731), + [aux_sym_preproc_def_token1] = ACTIONS(2731), + [aux_sym_preproc_if_token1] = ACTIONS(2731), + [aux_sym_preproc_if_token2] = ACTIONS(2731), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2731), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2731), + [sym_preproc_directive] = ACTIONS(2731), + [anon_sym_LPAREN2] = ACTIONS(2733), + [anon_sym_BANG] = ACTIONS(2733), + [anon_sym_TILDE] = ACTIONS(2733), + [anon_sym_DASH] = ACTIONS(2731), + [anon_sym_PLUS] = ACTIONS(2731), + [anon_sym_STAR] = ACTIONS(2733), + [anon_sym_AMP_AMP] = ACTIONS(2733), + [anon_sym_AMP] = ACTIONS(2731), + [anon_sym_SEMI] = ACTIONS(2733), + [anon_sym___extension__] = ACTIONS(2731), + [anon_sym_typedef] = ACTIONS(2731), + [anon_sym_virtual] = ACTIONS(2731), + [anon_sym_extern] = ACTIONS(2731), + [anon_sym___attribute__] = ACTIONS(2731), + [anon_sym___attribute] = ACTIONS(2731), + [anon_sym_using] = ACTIONS(2731), + [anon_sym_COLON_COLON] = ACTIONS(2733), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2733), + [anon_sym___declspec] = ACTIONS(2731), + [anon_sym___based] = ACTIONS(2731), + [anon_sym___cdecl] = ACTIONS(2731), + [anon_sym___clrcall] = ACTIONS(2731), + [anon_sym___stdcall] = ACTIONS(2731), + [anon_sym___fastcall] = ACTIONS(2731), + [anon_sym___thiscall] = ACTIONS(2731), + [anon_sym___vectorcall] = ACTIONS(2731), + [anon_sym_LBRACE] = ACTIONS(2733), + [anon_sym_signed] = ACTIONS(2731), + [anon_sym_unsigned] = ACTIONS(2731), + [anon_sym_long] = ACTIONS(2731), + [anon_sym_short] = ACTIONS(2731), + [anon_sym_LBRACK] = ACTIONS(2731), + [anon_sym_static] = ACTIONS(2731), + [anon_sym_register] = ACTIONS(2731), + [anon_sym_inline] = ACTIONS(2731), + [anon_sym___inline] = ACTIONS(2731), + [anon_sym___inline__] = ACTIONS(2731), + [anon_sym___forceinline] = ACTIONS(2731), + [anon_sym_thread_local] = ACTIONS(2731), + [anon_sym___thread] = ACTIONS(2731), + [anon_sym_const] = ACTIONS(2731), + [anon_sym_constexpr] = ACTIONS(2731), + [anon_sym_volatile] = ACTIONS(2731), + [anon_sym_restrict] = ACTIONS(2731), + [anon_sym___restrict__] = ACTIONS(2731), + [anon_sym__Atomic] = ACTIONS(2731), + [anon_sym__Noreturn] = ACTIONS(2731), + [anon_sym_noreturn] = ACTIONS(2731), + [anon_sym__Nonnull] = ACTIONS(2731), + [anon_sym_mutable] = ACTIONS(2731), + [anon_sym_constinit] = ACTIONS(2731), + [anon_sym_consteval] = ACTIONS(2731), + [anon_sym_alignas] = ACTIONS(2731), + [anon_sym__Alignas] = ACTIONS(2731), + [sym_primitive_type] = ACTIONS(2731), + [anon_sym_enum] = ACTIONS(2731), + [anon_sym_class] = ACTIONS(2731), + [anon_sym_struct] = ACTIONS(2731), + [anon_sym_union] = ACTIONS(2731), + [anon_sym_if] = ACTIONS(2731), + [anon_sym_else] = ACTIONS(2731), + [anon_sym_switch] = ACTIONS(2731), + [anon_sym_case] = ACTIONS(2731), + [anon_sym_default] = ACTIONS(2731), + [anon_sym_while] = ACTIONS(2731), + [anon_sym_do] = ACTIONS(2731), + [anon_sym_for] = ACTIONS(2731), + [anon_sym_return] = ACTIONS(2731), + [anon_sym_break] = ACTIONS(2731), + [anon_sym_continue] = ACTIONS(2731), + [anon_sym_goto] = ACTIONS(2731), + [anon_sym___try] = ACTIONS(2731), + [anon_sym___leave] = ACTIONS(2731), + [anon_sym_not] = ACTIONS(2731), + [anon_sym_compl] = ACTIONS(2731), + [anon_sym_DASH_DASH] = ACTIONS(2733), + [anon_sym_PLUS_PLUS] = ACTIONS(2733), + [anon_sym_sizeof] = ACTIONS(2731), + [anon_sym___alignof__] = ACTIONS(2731), + [anon_sym___alignof] = ACTIONS(2731), + [anon_sym__alignof] = ACTIONS(2731), + [anon_sym_alignof] = ACTIONS(2731), + [anon_sym__Alignof] = ACTIONS(2731), + [anon_sym_offsetof] = ACTIONS(2731), + [anon_sym__Generic] = ACTIONS(2731), + [anon_sym_asm] = ACTIONS(2731), + [anon_sym___asm__] = ACTIONS(2731), + [anon_sym___asm] = ACTIONS(2731), + [sym_number_literal] = ACTIONS(2733), + [anon_sym_L_SQUOTE] = ACTIONS(2733), + [anon_sym_u_SQUOTE] = ACTIONS(2733), + [anon_sym_U_SQUOTE] = ACTIONS(2733), + [anon_sym_u8_SQUOTE] = ACTIONS(2733), + [anon_sym_SQUOTE] = ACTIONS(2733), + [anon_sym_L_DQUOTE] = ACTIONS(2733), + [anon_sym_u_DQUOTE] = ACTIONS(2733), + [anon_sym_U_DQUOTE] = ACTIONS(2733), + [anon_sym_u8_DQUOTE] = ACTIONS(2733), + [anon_sym_DQUOTE] = ACTIONS(2733), + [sym_true] = ACTIONS(2731), + [sym_false] = ACTIONS(2731), + [anon_sym_NULL] = ACTIONS(2731), + [anon_sym_nullptr] = ACTIONS(2731), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2639), - [anon_sym_decltype] = ACTIONS(2639), - [anon_sym_explicit] = ACTIONS(2639), - [anon_sym_typename] = ACTIONS(2639), - [anon_sym_template] = ACTIONS(2639), - [anon_sym_operator] = ACTIONS(2639), - [anon_sym_try] = ACTIONS(2639), - [anon_sym_delete] = ACTIONS(2639), - [anon_sym_throw] = ACTIONS(2639), - [anon_sym_namespace] = ACTIONS(2639), - [anon_sym_static_assert] = ACTIONS(2639), - [anon_sym_concept] = ACTIONS(2639), - [anon_sym_co_return] = ACTIONS(2639), - [anon_sym_co_yield] = ACTIONS(2639), - [anon_sym_R_DQUOTE] = ACTIONS(2641), - [anon_sym_LR_DQUOTE] = ACTIONS(2641), - [anon_sym_uR_DQUOTE] = ACTIONS(2641), - [anon_sym_UR_DQUOTE] = ACTIONS(2641), - [anon_sym_u8R_DQUOTE] = ACTIONS(2641), - [anon_sym_co_await] = ACTIONS(2639), - [anon_sym_new] = ACTIONS(2639), - [anon_sym_requires] = ACTIONS(2639), - [sym_this] = ACTIONS(2639), - }, - [615] = { - [sym_identifier] = ACTIONS(2669), - [aux_sym_preproc_include_token1] = ACTIONS(2669), - [aux_sym_preproc_def_token1] = ACTIONS(2669), - [aux_sym_preproc_if_token1] = ACTIONS(2669), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2669), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2669), - [sym_preproc_directive] = ACTIONS(2669), - [anon_sym_LPAREN2] = ACTIONS(2671), - [anon_sym_BANG] = ACTIONS(2671), - [anon_sym_TILDE] = ACTIONS(2671), - [anon_sym_DASH] = ACTIONS(2669), - [anon_sym_PLUS] = ACTIONS(2669), - [anon_sym_STAR] = ACTIONS(2671), - [anon_sym_AMP_AMP] = ACTIONS(2671), - [anon_sym_AMP] = ACTIONS(2669), - [anon_sym_SEMI] = ACTIONS(2671), - [anon_sym___extension__] = ACTIONS(2669), - [anon_sym_typedef] = ACTIONS(2669), - [anon_sym_virtual] = ACTIONS(2669), - [anon_sym_extern] = ACTIONS(2669), - [anon_sym___attribute__] = ACTIONS(2669), - [anon_sym___attribute] = ACTIONS(2669), - [anon_sym_using] = ACTIONS(2669), - [anon_sym_COLON_COLON] = ACTIONS(2671), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2671), - [anon_sym___declspec] = ACTIONS(2669), - [anon_sym___based] = ACTIONS(2669), - [anon_sym___cdecl] = ACTIONS(2669), - [anon_sym___clrcall] = ACTIONS(2669), - [anon_sym___stdcall] = ACTIONS(2669), - [anon_sym___fastcall] = ACTIONS(2669), - [anon_sym___thiscall] = ACTIONS(2669), - [anon_sym___vectorcall] = ACTIONS(2669), - [anon_sym_LBRACE] = ACTIONS(2671), - [anon_sym_RBRACE] = ACTIONS(2671), - [anon_sym_signed] = ACTIONS(2669), - [anon_sym_unsigned] = ACTIONS(2669), - [anon_sym_long] = ACTIONS(2669), - [anon_sym_short] = ACTIONS(2669), - [anon_sym_LBRACK] = ACTIONS(2669), - [anon_sym_static] = ACTIONS(2669), - [anon_sym_register] = ACTIONS(2669), - [anon_sym_inline] = ACTIONS(2669), - [anon_sym___inline] = ACTIONS(2669), - [anon_sym___inline__] = ACTIONS(2669), - [anon_sym___forceinline] = ACTIONS(2669), - [anon_sym_thread_local] = ACTIONS(2669), - [anon_sym___thread] = ACTIONS(2669), - [anon_sym_const] = ACTIONS(2669), - [anon_sym_constexpr] = ACTIONS(2669), - [anon_sym_volatile] = ACTIONS(2669), - [anon_sym_restrict] = ACTIONS(2669), - [anon_sym___restrict__] = ACTIONS(2669), - [anon_sym__Atomic] = ACTIONS(2669), - [anon_sym__Noreturn] = ACTIONS(2669), - [anon_sym_noreturn] = ACTIONS(2669), - [anon_sym__Nonnull] = ACTIONS(2669), - [anon_sym_mutable] = ACTIONS(2669), - [anon_sym_constinit] = ACTIONS(2669), - [anon_sym_consteval] = ACTIONS(2669), - [anon_sym_alignas] = ACTIONS(2669), - [anon_sym__Alignas] = ACTIONS(2669), - [sym_primitive_type] = ACTIONS(2669), - [anon_sym_enum] = ACTIONS(2669), - [anon_sym_class] = ACTIONS(2669), - [anon_sym_struct] = ACTIONS(2669), - [anon_sym_union] = ACTIONS(2669), - [anon_sym_if] = ACTIONS(2669), - [anon_sym_else] = ACTIONS(2669), - [anon_sym_switch] = ACTIONS(2669), - [anon_sym_case] = ACTIONS(2669), - [anon_sym_default] = ACTIONS(2669), - [anon_sym_while] = ACTIONS(2669), - [anon_sym_do] = ACTIONS(2669), - [anon_sym_for] = ACTIONS(2669), - [anon_sym_return] = ACTIONS(2669), - [anon_sym_break] = ACTIONS(2669), - [anon_sym_continue] = ACTIONS(2669), - [anon_sym_goto] = ACTIONS(2669), - [anon_sym___try] = ACTIONS(2669), - [anon_sym___leave] = ACTIONS(2669), - [anon_sym_not] = ACTIONS(2669), - [anon_sym_compl] = ACTIONS(2669), - [anon_sym_DASH_DASH] = ACTIONS(2671), - [anon_sym_PLUS_PLUS] = ACTIONS(2671), - [anon_sym_sizeof] = ACTIONS(2669), - [anon_sym___alignof__] = ACTIONS(2669), - [anon_sym___alignof] = ACTIONS(2669), - [anon_sym__alignof] = ACTIONS(2669), - [anon_sym_alignof] = ACTIONS(2669), - [anon_sym__Alignof] = ACTIONS(2669), - [anon_sym_offsetof] = ACTIONS(2669), - [anon_sym__Generic] = ACTIONS(2669), - [anon_sym_asm] = ACTIONS(2669), - [anon_sym___asm__] = ACTIONS(2669), - [anon_sym___asm] = ACTIONS(2669), - [sym_number_literal] = ACTIONS(2671), - [anon_sym_L_SQUOTE] = ACTIONS(2671), - [anon_sym_u_SQUOTE] = ACTIONS(2671), - [anon_sym_U_SQUOTE] = ACTIONS(2671), - [anon_sym_u8_SQUOTE] = ACTIONS(2671), - [anon_sym_SQUOTE] = ACTIONS(2671), - [anon_sym_L_DQUOTE] = ACTIONS(2671), - [anon_sym_u_DQUOTE] = ACTIONS(2671), - [anon_sym_U_DQUOTE] = ACTIONS(2671), - [anon_sym_u8_DQUOTE] = ACTIONS(2671), - [anon_sym_DQUOTE] = ACTIONS(2671), - [sym_true] = ACTIONS(2669), - [sym_false] = ACTIONS(2669), - [anon_sym_NULL] = ACTIONS(2669), - [anon_sym_nullptr] = ACTIONS(2669), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2669), - [anon_sym_decltype] = ACTIONS(2669), - [anon_sym_explicit] = ACTIONS(2669), - [anon_sym_typename] = ACTIONS(2669), - [anon_sym_template] = ACTIONS(2669), - [anon_sym_operator] = ACTIONS(2669), - [anon_sym_try] = ACTIONS(2669), - [anon_sym_delete] = ACTIONS(2669), - [anon_sym_throw] = ACTIONS(2669), - [anon_sym_namespace] = ACTIONS(2669), - [anon_sym_static_assert] = ACTIONS(2669), - [anon_sym_concept] = ACTIONS(2669), - [anon_sym_co_return] = ACTIONS(2669), - [anon_sym_co_yield] = ACTIONS(2669), - [anon_sym_R_DQUOTE] = ACTIONS(2671), - [anon_sym_LR_DQUOTE] = ACTIONS(2671), - [anon_sym_uR_DQUOTE] = ACTIONS(2671), - [anon_sym_UR_DQUOTE] = ACTIONS(2671), - [anon_sym_u8R_DQUOTE] = ACTIONS(2671), - [anon_sym_co_await] = ACTIONS(2669), - [anon_sym_new] = ACTIONS(2669), - [anon_sym_requires] = ACTIONS(2669), - [sym_this] = ACTIONS(2669), - }, - [616] = { - [sym_identifier] = ACTIONS(2723), - [aux_sym_preproc_include_token1] = ACTIONS(2723), - [aux_sym_preproc_def_token1] = ACTIONS(2723), - [aux_sym_preproc_if_token1] = ACTIONS(2723), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2723), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2723), - [sym_preproc_directive] = ACTIONS(2723), - [anon_sym_LPAREN2] = ACTIONS(2725), - [anon_sym_BANG] = ACTIONS(2725), - [anon_sym_TILDE] = ACTIONS(2725), - [anon_sym_DASH] = ACTIONS(2723), - [anon_sym_PLUS] = ACTIONS(2723), - [anon_sym_STAR] = ACTIONS(2725), - [anon_sym_AMP_AMP] = ACTIONS(2725), - [anon_sym_AMP] = ACTIONS(2723), - [anon_sym_SEMI] = ACTIONS(2725), - [anon_sym___extension__] = ACTIONS(2723), - [anon_sym_typedef] = ACTIONS(2723), - [anon_sym_virtual] = ACTIONS(2723), - [anon_sym_extern] = ACTIONS(2723), - [anon_sym___attribute__] = ACTIONS(2723), - [anon_sym___attribute] = ACTIONS(2723), - [anon_sym_using] = ACTIONS(2723), - [anon_sym_COLON_COLON] = ACTIONS(2725), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2725), - [anon_sym___declspec] = ACTIONS(2723), - [anon_sym___based] = ACTIONS(2723), - [anon_sym___cdecl] = ACTIONS(2723), - [anon_sym___clrcall] = ACTIONS(2723), - [anon_sym___stdcall] = ACTIONS(2723), - [anon_sym___fastcall] = ACTIONS(2723), - [anon_sym___thiscall] = ACTIONS(2723), - [anon_sym___vectorcall] = ACTIONS(2723), - [anon_sym_LBRACE] = ACTIONS(2725), - [anon_sym_RBRACE] = ACTIONS(2725), - [anon_sym_signed] = ACTIONS(2723), - [anon_sym_unsigned] = ACTIONS(2723), - [anon_sym_long] = ACTIONS(2723), - [anon_sym_short] = ACTIONS(2723), - [anon_sym_LBRACK] = ACTIONS(2723), - [anon_sym_static] = ACTIONS(2723), - [anon_sym_register] = ACTIONS(2723), - [anon_sym_inline] = ACTIONS(2723), - [anon_sym___inline] = ACTIONS(2723), - [anon_sym___inline__] = ACTIONS(2723), - [anon_sym___forceinline] = ACTIONS(2723), - [anon_sym_thread_local] = ACTIONS(2723), - [anon_sym___thread] = ACTIONS(2723), - [anon_sym_const] = ACTIONS(2723), - [anon_sym_constexpr] = ACTIONS(2723), - [anon_sym_volatile] = ACTIONS(2723), - [anon_sym_restrict] = ACTIONS(2723), - [anon_sym___restrict__] = ACTIONS(2723), - [anon_sym__Atomic] = ACTIONS(2723), - [anon_sym__Noreturn] = ACTIONS(2723), - [anon_sym_noreturn] = ACTIONS(2723), - [anon_sym__Nonnull] = ACTIONS(2723), - [anon_sym_mutable] = ACTIONS(2723), - [anon_sym_constinit] = ACTIONS(2723), - [anon_sym_consteval] = ACTIONS(2723), - [anon_sym_alignas] = ACTIONS(2723), - [anon_sym__Alignas] = ACTIONS(2723), - [sym_primitive_type] = ACTIONS(2723), - [anon_sym_enum] = ACTIONS(2723), - [anon_sym_class] = ACTIONS(2723), - [anon_sym_struct] = ACTIONS(2723), - [anon_sym_union] = ACTIONS(2723), - [anon_sym_if] = ACTIONS(2723), - [anon_sym_else] = ACTIONS(2723), - [anon_sym_switch] = ACTIONS(2723), - [anon_sym_case] = ACTIONS(2723), - [anon_sym_default] = ACTIONS(2723), - [anon_sym_while] = ACTIONS(2723), - [anon_sym_do] = ACTIONS(2723), - [anon_sym_for] = ACTIONS(2723), - [anon_sym_return] = ACTIONS(2723), - [anon_sym_break] = ACTIONS(2723), - [anon_sym_continue] = ACTIONS(2723), - [anon_sym_goto] = ACTIONS(2723), - [anon_sym___try] = ACTIONS(2723), - [anon_sym___leave] = ACTIONS(2723), - [anon_sym_not] = ACTIONS(2723), - [anon_sym_compl] = ACTIONS(2723), - [anon_sym_DASH_DASH] = ACTIONS(2725), - [anon_sym_PLUS_PLUS] = ACTIONS(2725), - [anon_sym_sizeof] = ACTIONS(2723), - [anon_sym___alignof__] = ACTIONS(2723), - [anon_sym___alignof] = ACTIONS(2723), - [anon_sym__alignof] = ACTIONS(2723), - [anon_sym_alignof] = ACTIONS(2723), - [anon_sym__Alignof] = ACTIONS(2723), - [anon_sym_offsetof] = ACTIONS(2723), - [anon_sym__Generic] = ACTIONS(2723), - [anon_sym_asm] = ACTIONS(2723), - [anon_sym___asm__] = ACTIONS(2723), - [anon_sym___asm] = ACTIONS(2723), - [sym_number_literal] = ACTIONS(2725), - [anon_sym_L_SQUOTE] = ACTIONS(2725), - [anon_sym_u_SQUOTE] = ACTIONS(2725), - [anon_sym_U_SQUOTE] = ACTIONS(2725), - [anon_sym_u8_SQUOTE] = ACTIONS(2725), - [anon_sym_SQUOTE] = ACTIONS(2725), - [anon_sym_L_DQUOTE] = ACTIONS(2725), - [anon_sym_u_DQUOTE] = ACTIONS(2725), - [anon_sym_U_DQUOTE] = ACTIONS(2725), - [anon_sym_u8_DQUOTE] = ACTIONS(2725), - [anon_sym_DQUOTE] = ACTIONS(2725), - [sym_true] = ACTIONS(2723), - [sym_false] = ACTIONS(2723), - [anon_sym_NULL] = ACTIONS(2723), - [anon_sym_nullptr] = ACTIONS(2723), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2723), - [anon_sym_decltype] = ACTIONS(2723), - [anon_sym_explicit] = ACTIONS(2723), - [anon_sym_typename] = ACTIONS(2723), - [anon_sym_template] = ACTIONS(2723), - [anon_sym_operator] = ACTIONS(2723), - [anon_sym_try] = ACTIONS(2723), - [anon_sym_delete] = ACTIONS(2723), - [anon_sym_throw] = ACTIONS(2723), - [anon_sym_namespace] = ACTIONS(2723), - [anon_sym_static_assert] = ACTIONS(2723), - [anon_sym_concept] = ACTIONS(2723), - [anon_sym_co_return] = ACTIONS(2723), - [anon_sym_co_yield] = ACTIONS(2723), - [anon_sym_R_DQUOTE] = ACTIONS(2725), - [anon_sym_LR_DQUOTE] = ACTIONS(2725), - [anon_sym_uR_DQUOTE] = ACTIONS(2725), - [anon_sym_UR_DQUOTE] = ACTIONS(2725), - [anon_sym_u8R_DQUOTE] = ACTIONS(2725), - [anon_sym_co_await] = ACTIONS(2723), - [anon_sym_new] = ACTIONS(2723), - [anon_sym_requires] = ACTIONS(2723), - [sym_this] = ACTIONS(2723), + [sym_auto] = ACTIONS(2731), + [anon_sym_decltype] = ACTIONS(2731), + [anon_sym_explicit] = ACTIONS(2731), + [anon_sym_typename] = ACTIONS(2731), + [anon_sym_template] = ACTIONS(2731), + [anon_sym_operator] = ACTIONS(2731), + [anon_sym_try] = ACTIONS(2731), + [anon_sym_delete] = ACTIONS(2731), + [anon_sym_throw] = ACTIONS(2731), + [anon_sym_namespace] = ACTIONS(2731), + [anon_sym_static_assert] = ACTIONS(2731), + [anon_sym_concept] = ACTIONS(2731), + [anon_sym_co_return] = ACTIONS(2731), + [anon_sym_co_yield] = ACTIONS(2731), + [anon_sym_R_DQUOTE] = ACTIONS(2733), + [anon_sym_LR_DQUOTE] = ACTIONS(2733), + [anon_sym_uR_DQUOTE] = ACTIONS(2733), + [anon_sym_UR_DQUOTE] = ACTIONS(2733), + [anon_sym_u8R_DQUOTE] = ACTIONS(2733), + [anon_sym_co_await] = ACTIONS(2731), + [anon_sym_new] = ACTIONS(2731), + [anon_sym_requires] = ACTIONS(2731), + [sym_this] = ACTIONS(2731), }, - [617] = { - [sym_identifier] = ACTIONS(2651), - [aux_sym_preproc_include_token1] = ACTIONS(2651), - [aux_sym_preproc_def_token1] = ACTIONS(2651), - [aux_sym_preproc_if_token1] = ACTIONS(2651), - [aux_sym_preproc_if_token2] = ACTIONS(2651), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2651), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2651), - [sym_preproc_directive] = ACTIONS(2651), - [anon_sym_LPAREN2] = ACTIONS(2653), - [anon_sym_BANG] = ACTIONS(2653), - [anon_sym_TILDE] = ACTIONS(2653), - [anon_sym_DASH] = ACTIONS(2651), - [anon_sym_PLUS] = ACTIONS(2651), - [anon_sym_STAR] = ACTIONS(2653), - [anon_sym_AMP_AMP] = ACTIONS(2653), - [anon_sym_AMP] = ACTIONS(2651), - [anon_sym_SEMI] = ACTIONS(2653), - [anon_sym___extension__] = ACTIONS(2651), - [anon_sym_typedef] = ACTIONS(2651), - [anon_sym_virtual] = ACTIONS(2651), - [anon_sym_extern] = ACTIONS(2651), - [anon_sym___attribute__] = ACTIONS(2651), - [anon_sym___attribute] = ACTIONS(2651), - [anon_sym_using] = ACTIONS(2651), - [anon_sym_COLON_COLON] = ACTIONS(2653), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2653), - [anon_sym___declspec] = ACTIONS(2651), - [anon_sym___based] = ACTIONS(2651), - [anon_sym___cdecl] = ACTIONS(2651), - [anon_sym___clrcall] = ACTIONS(2651), - [anon_sym___stdcall] = ACTIONS(2651), - [anon_sym___fastcall] = ACTIONS(2651), - [anon_sym___thiscall] = ACTIONS(2651), - [anon_sym___vectorcall] = ACTIONS(2651), - [anon_sym_LBRACE] = ACTIONS(2653), - [anon_sym_signed] = ACTIONS(2651), - [anon_sym_unsigned] = ACTIONS(2651), - [anon_sym_long] = ACTIONS(2651), - [anon_sym_short] = ACTIONS(2651), - [anon_sym_LBRACK] = ACTIONS(2651), - [anon_sym_static] = ACTIONS(2651), - [anon_sym_register] = ACTIONS(2651), - [anon_sym_inline] = ACTIONS(2651), - [anon_sym___inline] = ACTIONS(2651), - [anon_sym___inline__] = ACTIONS(2651), - [anon_sym___forceinline] = ACTIONS(2651), - [anon_sym_thread_local] = ACTIONS(2651), - [anon_sym___thread] = ACTIONS(2651), - [anon_sym_const] = ACTIONS(2651), - [anon_sym_constexpr] = ACTIONS(2651), - [anon_sym_volatile] = ACTIONS(2651), - [anon_sym_restrict] = ACTIONS(2651), - [anon_sym___restrict__] = ACTIONS(2651), - [anon_sym__Atomic] = ACTIONS(2651), - [anon_sym__Noreturn] = ACTIONS(2651), - [anon_sym_noreturn] = ACTIONS(2651), - [anon_sym__Nonnull] = ACTIONS(2651), - [anon_sym_mutable] = ACTIONS(2651), - [anon_sym_constinit] = ACTIONS(2651), - [anon_sym_consteval] = ACTIONS(2651), - [anon_sym_alignas] = ACTIONS(2651), - [anon_sym__Alignas] = ACTIONS(2651), - [sym_primitive_type] = ACTIONS(2651), - [anon_sym_enum] = ACTIONS(2651), - [anon_sym_class] = ACTIONS(2651), - [anon_sym_struct] = ACTIONS(2651), - [anon_sym_union] = ACTIONS(2651), - [anon_sym_if] = ACTIONS(2651), - [anon_sym_else] = ACTIONS(2651), - [anon_sym_switch] = ACTIONS(2651), - [anon_sym_case] = ACTIONS(2651), - [anon_sym_default] = ACTIONS(2651), - [anon_sym_while] = ACTIONS(2651), - [anon_sym_do] = ACTIONS(2651), - [anon_sym_for] = ACTIONS(2651), - [anon_sym_return] = ACTIONS(2651), - [anon_sym_break] = ACTIONS(2651), - [anon_sym_continue] = ACTIONS(2651), - [anon_sym_goto] = ACTIONS(2651), - [anon_sym___try] = ACTIONS(2651), - [anon_sym___leave] = ACTIONS(2651), - [anon_sym_not] = ACTIONS(2651), - [anon_sym_compl] = ACTIONS(2651), - [anon_sym_DASH_DASH] = ACTIONS(2653), - [anon_sym_PLUS_PLUS] = ACTIONS(2653), - [anon_sym_sizeof] = ACTIONS(2651), - [anon_sym___alignof__] = ACTIONS(2651), - [anon_sym___alignof] = ACTIONS(2651), - [anon_sym__alignof] = ACTIONS(2651), - [anon_sym_alignof] = ACTIONS(2651), - [anon_sym__Alignof] = ACTIONS(2651), - [anon_sym_offsetof] = ACTIONS(2651), - [anon_sym__Generic] = ACTIONS(2651), - [anon_sym_asm] = ACTIONS(2651), - [anon_sym___asm__] = ACTIONS(2651), - [anon_sym___asm] = ACTIONS(2651), - [sym_number_literal] = ACTIONS(2653), - [anon_sym_L_SQUOTE] = ACTIONS(2653), - [anon_sym_u_SQUOTE] = ACTIONS(2653), - [anon_sym_U_SQUOTE] = ACTIONS(2653), - [anon_sym_u8_SQUOTE] = ACTIONS(2653), - [anon_sym_SQUOTE] = ACTIONS(2653), - [anon_sym_L_DQUOTE] = ACTIONS(2653), - [anon_sym_u_DQUOTE] = ACTIONS(2653), - [anon_sym_U_DQUOTE] = ACTIONS(2653), - [anon_sym_u8_DQUOTE] = ACTIONS(2653), - [anon_sym_DQUOTE] = ACTIONS(2653), - [sym_true] = ACTIONS(2651), - [sym_false] = ACTIONS(2651), - [anon_sym_NULL] = ACTIONS(2651), - [anon_sym_nullptr] = ACTIONS(2651), + [624] = { + [sym_identifier] = ACTIONS(2771), + [aux_sym_preproc_include_token1] = ACTIONS(2771), + [aux_sym_preproc_def_token1] = ACTIONS(2771), + [aux_sym_preproc_if_token1] = ACTIONS(2771), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2771), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2771), + [sym_preproc_directive] = ACTIONS(2771), + [anon_sym_LPAREN2] = ACTIONS(2773), + [anon_sym_BANG] = ACTIONS(2773), + [anon_sym_TILDE] = ACTIONS(2773), + [anon_sym_DASH] = ACTIONS(2771), + [anon_sym_PLUS] = ACTIONS(2771), + [anon_sym_STAR] = ACTIONS(2773), + [anon_sym_AMP_AMP] = ACTIONS(2773), + [anon_sym_AMP] = ACTIONS(2771), + [anon_sym_SEMI] = ACTIONS(2773), + [anon_sym___extension__] = ACTIONS(2771), + [anon_sym_typedef] = ACTIONS(2771), + [anon_sym_virtual] = ACTIONS(2771), + [anon_sym_extern] = ACTIONS(2771), + [anon_sym___attribute__] = ACTIONS(2771), + [anon_sym___attribute] = ACTIONS(2771), + [anon_sym_using] = ACTIONS(2771), + [anon_sym_COLON_COLON] = ACTIONS(2773), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2773), + [anon_sym___declspec] = ACTIONS(2771), + [anon_sym___based] = ACTIONS(2771), + [anon_sym___cdecl] = ACTIONS(2771), + [anon_sym___clrcall] = ACTIONS(2771), + [anon_sym___stdcall] = ACTIONS(2771), + [anon_sym___fastcall] = ACTIONS(2771), + [anon_sym___thiscall] = ACTIONS(2771), + [anon_sym___vectorcall] = ACTIONS(2771), + [anon_sym_LBRACE] = ACTIONS(2773), + [anon_sym_RBRACE] = ACTIONS(2773), + [anon_sym_signed] = ACTIONS(2771), + [anon_sym_unsigned] = ACTIONS(2771), + [anon_sym_long] = ACTIONS(2771), + [anon_sym_short] = ACTIONS(2771), + [anon_sym_LBRACK] = ACTIONS(2771), + [anon_sym_static] = ACTIONS(2771), + [anon_sym_register] = ACTIONS(2771), + [anon_sym_inline] = ACTIONS(2771), + [anon_sym___inline] = ACTIONS(2771), + [anon_sym___inline__] = ACTIONS(2771), + [anon_sym___forceinline] = ACTIONS(2771), + [anon_sym_thread_local] = ACTIONS(2771), + [anon_sym___thread] = ACTIONS(2771), + [anon_sym_const] = ACTIONS(2771), + [anon_sym_constexpr] = ACTIONS(2771), + [anon_sym_volatile] = ACTIONS(2771), + [anon_sym_restrict] = ACTIONS(2771), + [anon_sym___restrict__] = ACTIONS(2771), + [anon_sym__Atomic] = ACTIONS(2771), + [anon_sym__Noreturn] = ACTIONS(2771), + [anon_sym_noreturn] = ACTIONS(2771), + [anon_sym__Nonnull] = ACTIONS(2771), + [anon_sym_mutable] = ACTIONS(2771), + [anon_sym_constinit] = ACTIONS(2771), + [anon_sym_consteval] = ACTIONS(2771), + [anon_sym_alignas] = ACTIONS(2771), + [anon_sym__Alignas] = ACTIONS(2771), + [sym_primitive_type] = ACTIONS(2771), + [anon_sym_enum] = ACTIONS(2771), + [anon_sym_class] = ACTIONS(2771), + [anon_sym_struct] = ACTIONS(2771), + [anon_sym_union] = ACTIONS(2771), + [anon_sym_if] = ACTIONS(2771), + [anon_sym_else] = ACTIONS(2771), + [anon_sym_switch] = ACTIONS(2771), + [anon_sym_case] = ACTIONS(2771), + [anon_sym_default] = ACTIONS(2771), + [anon_sym_while] = ACTIONS(2771), + [anon_sym_do] = ACTIONS(2771), + [anon_sym_for] = ACTIONS(2771), + [anon_sym_return] = ACTIONS(2771), + [anon_sym_break] = ACTIONS(2771), + [anon_sym_continue] = ACTIONS(2771), + [anon_sym_goto] = ACTIONS(2771), + [anon_sym___try] = ACTIONS(2771), + [anon_sym___leave] = ACTIONS(2771), + [anon_sym_not] = ACTIONS(2771), + [anon_sym_compl] = ACTIONS(2771), + [anon_sym_DASH_DASH] = ACTIONS(2773), + [anon_sym_PLUS_PLUS] = ACTIONS(2773), + [anon_sym_sizeof] = ACTIONS(2771), + [anon_sym___alignof__] = ACTIONS(2771), + [anon_sym___alignof] = ACTIONS(2771), + [anon_sym__alignof] = ACTIONS(2771), + [anon_sym_alignof] = ACTIONS(2771), + [anon_sym__Alignof] = ACTIONS(2771), + [anon_sym_offsetof] = ACTIONS(2771), + [anon_sym__Generic] = ACTIONS(2771), + [anon_sym_asm] = ACTIONS(2771), + [anon_sym___asm__] = ACTIONS(2771), + [anon_sym___asm] = ACTIONS(2771), + [sym_number_literal] = ACTIONS(2773), + [anon_sym_L_SQUOTE] = ACTIONS(2773), + [anon_sym_u_SQUOTE] = ACTIONS(2773), + [anon_sym_U_SQUOTE] = ACTIONS(2773), + [anon_sym_u8_SQUOTE] = ACTIONS(2773), + [anon_sym_SQUOTE] = ACTIONS(2773), + [anon_sym_L_DQUOTE] = ACTIONS(2773), + [anon_sym_u_DQUOTE] = ACTIONS(2773), + [anon_sym_U_DQUOTE] = ACTIONS(2773), + [anon_sym_u8_DQUOTE] = ACTIONS(2773), + [anon_sym_DQUOTE] = ACTIONS(2773), + [sym_true] = ACTIONS(2771), + [sym_false] = ACTIONS(2771), + [anon_sym_NULL] = ACTIONS(2771), + [anon_sym_nullptr] = ACTIONS(2771), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2651), - [anon_sym_decltype] = ACTIONS(2651), - [anon_sym_explicit] = ACTIONS(2651), - [anon_sym_typename] = ACTIONS(2651), - [anon_sym_template] = ACTIONS(2651), - [anon_sym_operator] = ACTIONS(2651), - [anon_sym_try] = ACTIONS(2651), - [anon_sym_delete] = ACTIONS(2651), - [anon_sym_throw] = ACTIONS(2651), - [anon_sym_namespace] = ACTIONS(2651), - [anon_sym_static_assert] = ACTIONS(2651), - [anon_sym_concept] = ACTIONS(2651), - [anon_sym_co_return] = ACTIONS(2651), - [anon_sym_co_yield] = ACTIONS(2651), - [anon_sym_R_DQUOTE] = ACTIONS(2653), - [anon_sym_LR_DQUOTE] = ACTIONS(2653), - [anon_sym_uR_DQUOTE] = ACTIONS(2653), - [anon_sym_UR_DQUOTE] = ACTIONS(2653), - [anon_sym_u8R_DQUOTE] = ACTIONS(2653), - [anon_sym_co_await] = ACTIONS(2651), - [anon_sym_new] = ACTIONS(2651), - [anon_sym_requires] = ACTIONS(2651), - [sym_this] = ACTIONS(2651), + [sym_auto] = ACTIONS(2771), + [anon_sym_decltype] = ACTIONS(2771), + [anon_sym_explicit] = ACTIONS(2771), + [anon_sym_typename] = ACTIONS(2771), + [anon_sym_template] = ACTIONS(2771), + [anon_sym_operator] = ACTIONS(2771), + [anon_sym_try] = ACTIONS(2771), + [anon_sym_delete] = ACTIONS(2771), + [anon_sym_throw] = ACTIONS(2771), + [anon_sym_namespace] = ACTIONS(2771), + [anon_sym_static_assert] = ACTIONS(2771), + [anon_sym_concept] = ACTIONS(2771), + [anon_sym_co_return] = ACTIONS(2771), + [anon_sym_co_yield] = ACTIONS(2771), + [anon_sym_R_DQUOTE] = ACTIONS(2773), + [anon_sym_LR_DQUOTE] = ACTIONS(2773), + [anon_sym_uR_DQUOTE] = ACTIONS(2773), + [anon_sym_UR_DQUOTE] = ACTIONS(2773), + [anon_sym_u8R_DQUOTE] = ACTIONS(2773), + [anon_sym_co_await] = ACTIONS(2771), + [anon_sym_new] = ACTIONS(2771), + [anon_sym_requires] = ACTIONS(2771), + [sym_this] = ACTIONS(2771), }, - [618] = { - [ts_builtin_sym_end] = ACTIONS(2913), - [sym_identifier] = ACTIONS(2911), - [aux_sym_preproc_include_token1] = ACTIONS(2911), - [aux_sym_preproc_def_token1] = ACTIONS(2911), - [aux_sym_preproc_if_token1] = ACTIONS(2911), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2911), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2911), - [sym_preproc_directive] = ACTIONS(2911), - [anon_sym_LPAREN2] = ACTIONS(2913), - [anon_sym_BANG] = ACTIONS(2913), - [anon_sym_TILDE] = ACTIONS(2913), - [anon_sym_DASH] = ACTIONS(2911), - [anon_sym_PLUS] = ACTIONS(2911), - [anon_sym_STAR] = ACTIONS(2913), - [anon_sym_AMP_AMP] = ACTIONS(2913), - [anon_sym_AMP] = ACTIONS(2911), - [anon_sym_SEMI] = ACTIONS(2913), - [anon_sym___extension__] = ACTIONS(2911), - [anon_sym_typedef] = ACTIONS(2911), - [anon_sym_virtual] = ACTIONS(2911), - [anon_sym_extern] = ACTIONS(2911), - [anon_sym___attribute__] = ACTIONS(2911), - [anon_sym___attribute] = ACTIONS(2911), - [anon_sym_using] = ACTIONS(2911), - [anon_sym_COLON_COLON] = ACTIONS(2913), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2913), - [anon_sym___declspec] = ACTIONS(2911), - [anon_sym___based] = ACTIONS(2911), - [anon_sym___cdecl] = ACTIONS(2911), - [anon_sym___clrcall] = ACTIONS(2911), - [anon_sym___stdcall] = ACTIONS(2911), - [anon_sym___fastcall] = ACTIONS(2911), - [anon_sym___thiscall] = ACTIONS(2911), - [anon_sym___vectorcall] = ACTIONS(2911), - [anon_sym_LBRACE] = ACTIONS(2913), - [anon_sym_signed] = ACTIONS(2911), - [anon_sym_unsigned] = ACTIONS(2911), - [anon_sym_long] = ACTIONS(2911), - [anon_sym_short] = ACTIONS(2911), - [anon_sym_LBRACK] = ACTIONS(2911), - [anon_sym_static] = ACTIONS(2911), - [anon_sym_register] = ACTIONS(2911), - [anon_sym_inline] = ACTIONS(2911), - [anon_sym___inline] = ACTIONS(2911), - [anon_sym___inline__] = ACTIONS(2911), - [anon_sym___forceinline] = ACTIONS(2911), - [anon_sym_thread_local] = ACTIONS(2911), - [anon_sym___thread] = ACTIONS(2911), - [anon_sym_const] = ACTIONS(2911), - [anon_sym_constexpr] = ACTIONS(2911), - [anon_sym_volatile] = ACTIONS(2911), - [anon_sym_restrict] = ACTIONS(2911), - [anon_sym___restrict__] = ACTIONS(2911), - [anon_sym__Atomic] = ACTIONS(2911), - [anon_sym__Noreturn] = ACTIONS(2911), - [anon_sym_noreturn] = ACTIONS(2911), - [anon_sym__Nonnull] = ACTIONS(2911), - [anon_sym_mutable] = ACTIONS(2911), - [anon_sym_constinit] = ACTIONS(2911), - [anon_sym_consteval] = ACTIONS(2911), - [anon_sym_alignas] = ACTIONS(2911), - [anon_sym__Alignas] = ACTIONS(2911), - [sym_primitive_type] = ACTIONS(2911), - [anon_sym_enum] = ACTIONS(2911), - [anon_sym_class] = ACTIONS(2911), - [anon_sym_struct] = ACTIONS(2911), - [anon_sym_union] = ACTIONS(2911), - [anon_sym_if] = ACTIONS(2911), - [anon_sym_switch] = ACTIONS(2911), - [anon_sym_case] = ACTIONS(2911), - [anon_sym_default] = ACTIONS(2911), - [anon_sym_while] = ACTIONS(2911), - [anon_sym_do] = ACTIONS(2911), - [anon_sym_for] = ACTIONS(2911), - [anon_sym_return] = ACTIONS(2911), - [anon_sym_break] = ACTIONS(2911), - [anon_sym_continue] = ACTIONS(2911), - [anon_sym_goto] = ACTIONS(2911), - [anon_sym_not] = ACTIONS(2911), - [anon_sym_compl] = ACTIONS(2911), - [anon_sym_DASH_DASH] = ACTIONS(2913), - [anon_sym_PLUS_PLUS] = ACTIONS(2913), - [anon_sym_sizeof] = ACTIONS(2911), - [anon_sym___alignof__] = ACTIONS(2911), - [anon_sym___alignof] = ACTIONS(2911), - [anon_sym__alignof] = ACTIONS(2911), - [anon_sym_alignof] = ACTIONS(2911), - [anon_sym__Alignof] = ACTIONS(2911), - [anon_sym_offsetof] = ACTIONS(2911), - [anon_sym__Generic] = ACTIONS(2911), - [anon_sym_asm] = ACTIONS(2911), - [anon_sym___asm__] = ACTIONS(2911), - [anon_sym___asm] = ACTIONS(2911), - [sym_number_literal] = ACTIONS(2913), - [anon_sym_L_SQUOTE] = ACTIONS(2913), - [anon_sym_u_SQUOTE] = ACTIONS(2913), - [anon_sym_U_SQUOTE] = ACTIONS(2913), - [anon_sym_u8_SQUOTE] = ACTIONS(2913), - [anon_sym_SQUOTE] = ACTIONS(2913), - [anon_sym_L_DQUOTE] = ACTIONS(2913), - [anon_sym_u_DQUOTE] = ACTIONS(2913), - [anon_sym_U_DQUOTE] = ACTIONS(2913), - [anon_sym_u8_DQUOTE] = ACTIONS(2913), - [anon_sym_DQUOTE] = ACTIONS(2913), - [sym_true] = ACTIONS(2911), - [sym_false] = ACTIONS(2911), - [anon_sym_NULL] = ACTIONS(2911), - [anon_sym_nullptr] = ACTIONS(2911), + [625] = { + [sym_identifier] = ACTIONS(2731), + [aux_sym_preproc_include_token1] = ACTIONS(2731), + [aux_sym_preproc_def_token1] = ACTIONS(2731), + [aux_sym_preproc_if_token1] = ACTIONS(2731), + [aux_sym_preproc_if_token2] = ACTIONS(2731), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2731), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2731), + [sym_preproc_directive] = ACTIONS(2731), + [anon_sym_LPAREN2] = ACTIONS(2733), + [anon_sym_BANG] = ACTIONS(2733), + [anon_sym_TILDE] = ACTIONS(2733), + [anon_sym_DASH] = ACTIONS(2731), + [anon_sym_PLUS] = ACTIONS(2731), + [anon_sym_STAR] = ACTIONS(2733), + [anon_sym_AMP_AMP] = ACTIONS(2733), + [anon_sym_AMP] = ACTIONS(2731), + [anon_sym_SEMI] = ACTIONS(2733), + [anon_sym___extension__] = ACTIONS(2731), + [anon_sym_typedef] = ACTIONS(2731), + [anon_sym_virtual] = ACTIONS(2731), + [anon_sym_extern] = ACTIONS(2731), + [anon_sym___attribute__] = ACTIONS(2731), + [anon_sym___attribute] = ACTIONS(2731), + [anon_sym_using] = ACTIONS(2731), + [anon_sym_COLON_COLON] = ACTIONS(2733), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2733), + [anon_sym___declspec] = ACTIONS(2731), + [anon_sym___based] = ACTIONS(2731), + [anon_sym___cdecl] = ACTIONS(2731), + [anon_sym___clrcall] = ACTIONS(2731), + [anon_sym___stdcall] = ACTIONS(2731), + [anon_sym___fastcall] = ACTIONS(2731), + [anon_sym___thiscall] = ACTIONS(2731), + [anon_sym___vectorcall] = ACTIONS(2731), + [anon_sym_LBRACE] = ACTIONS(2733), + [anon_sym_signed] = ACTIONS(2731), + [anon_sym_unsigned] = ACTIONS(2731), + [anon_sym_long] = ACTIONS(2731), + [anon_sym_short] = ACTIONS(2731), + [anon_sym_LBRACK] = ACTIONS(2731), + [anon_sym_static] = ACTIONS(2731), + [anon_sym_register] = ACTIONS(2731), + [anon_sym_inline] = ACTIONS(2731), + [anon_sym___inline] = ACTIONS(2731), + [anon_sym___inline__] = ACTIONS(2731), + [anon_sym___forceinline] = ACTIONS(2731), + [anon_sym_thread_local] = ACTIONS(2731), + [anon_sym___thread] = ACTIONS(2731), + [anon_sym_const] = ACTIONS(2731), + [anon_sym_constexpr] = ACTIONS(2731), + [anon_sym_volatile] = ACTIONS(2731), + [anon_sym_restrict] = ACTIONS(2731), + [anon_sym___restrict__] = ACTIONS(2731), + [anon_sym__Atomic] = ACTIONS(2731), + [anon_sym__Noreturn] = ACTIONS(2731), + [anon_sym_noreturn] = ACTIONS(2731), + [anon_sym__Nonnull] = ACTIONS(2731), + [anon_sym_mutable] = ACTIONS(2731), + [anon_sym_constinit] = ACTIONS(2731), + [anon_sym_consteval] = ACTIONS(2731), + [anon_sym_alignas] = ACTIONS(2731), + [anon_sym__Alignas] = ACTIONS(2731), + [sym_primitive_type] = ACTIONS(2731), + [anon_sym_enum] = ACTIONS(2731), + [anon_sym_class] = ACTIONS(2731), + [anon_sym_struct] = ACTIONS(2731), + [anon_sym_union] = ACTIONS(2731), + [anon_sym_if] = ACTIONS(2731), + [anon_sym_else] = ACTIONS(2731), + [anon_sym_switch] = ACTIONS(2731), + [anon_sym_case] = ACTIONS(2731), + [anon_sym_default] = ACTIONS(2731), + [anon_sym_while] = ACTIONS(2731), + [anon_sym_do] = ACTIONS(2731), + [anon_sym_for] = ACTIONS(2731), + [anon_sym_return] = ACTIONS(2731), + [anon_sym_break] = ACTIONS(2731), + [anon_sym_continue] = ACTIONS(2731), + [anon_sym_goto] = ACTIONS(2731), + [anon_sym___try] = ACTIONS(2731), + [anon_sym___leave] = ACTIONS(2731), + [anon_sym_not] = ACTIONS(2731), + [anon_sym_compl] = ACTIONS(2731), + [anon_sym_DASH_DASH] = ACTIONS(2733), + [anon_sym_PLUS_PLUS] = ACTIONS(2733), + [anon_sym_sizeof] = ACTIONS(2731), + [anon_sym___alignof__] = ACTIONS(2731), + [anon_sym___alignof] = ACTIONS(2731), + [anon_sym__alignof] = ACTIONS(2731), + [anon_sym_alignof] = ACTIONS(2731), + [anon_sym__Alignof] = ACTIONS(2731), + [anon_sym_offsetof] = ACTIONS(2731), + [anon_sym__Generic] = ACTIONS(2731), + [anon_sym_asm] = ACTIONS(2731), + [anon_sym___asm__] = ACTIONS(2731), + [anon_sym___asm] = ACTIONS(2731), + [sym_number_literal] = ACTIONS(2733), + [anon_sym_L_SQUOTE] = ACTIONS(2733), + [anon_sym_u_SQUOTE] = ACTIONS(2733), + [anon_sym_U_SQUOTE] = ACTIONS(2733), + [anon_sym_u8_SQUOTE] = ACTIONS(2733), + [anon_sym_SQUOTE] = ACTIONS(2733), + [anon_sym_L_DQUOTE] = ACTIONS(2733), + [anon_sym_u_DQUOTE] = ACTIONS(2733), + [anon_sym_U_DQUOTE] = ACTIONS(2733), + [anon_sym_u8_DQUOTE] = ACTIONS(2733), + [anon_sym_DQUOTE] = ACTIONS(2733), + [sym_true] = ACTIONS(2731), + [sym_false] = ACTIONS(2731), + [anon_sym_NULL] = ACTIONS(2731), + [anon_sym_nullptr] = ACTIONS(2731), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2911), - [anon_sym_decltype] = ACTIONS(2911), - [anon_sym_explicit] = ACTIONS(2911), - [anon_sym_typename] = ACTIONS(2911), - [anon_sym_export] = ACTIONS(2911), - [anon_sym_module] = ACTIONS(2911), - [anon_sym_import] = ACTIONS(2911), - [anon_sym_template] = ACTIONS(2911), - [anon_sym_operator] = ACTIONS(2911), - [anon_sym_try] = ACTIONS(2911), - [anon_sym_delete] = ACTIONS(2911), - [anon_sym_throw] = ACTIONS(2911), - [anon_sym_namespace] = ACTIONS(2911), - [anon_sym_static_assert] = ACTIONS(2911), - [anon_sym_concept] = ACTIONS(2911), - [anon_sym_co_return] = ACTIONS(2911), - [anon_sym_co_yield] = ACTIONS(2911), - [anon_sym_R_DQUOTE] = ACTIONS(2913), - [anon_sym_LR_DQUOTE] = ACTIONS(2913), - [anon_sym_uR_DQUOTE] = ACTIONS(2913), - [anon_sym_UR_DQUOTE] = ACTIONS(2913), - [anon_sym_u8R_DQUOTE] = ACTIONS(2913), - [anon_sym_co_await] = ACTIONS(2911), - [anon_sym_new] = ACTIONS(2911), - [anon_sym_requires] = ACTIONS(2911), - [sym_this] = ACTIONS(2911), + [sym_auto] = ACTIONS(2731), + [anon_sym_decltype] = ACTIONS(2731), + [anon_sym_explicit] = ACTIONS(2731), + [anon_sym_typename] = ACTIONS(2731), + [anon_sym_template] = ACTIONS(2731), + [anon_sym_operator] = ACTIONS(2731), + [anon_sym_try] = ACTIONS(2731), + [anon_sym_delete] = ACTIONS(2731), + [anon_sym_throw] = ACTIONS(2731), + [anon_sym_namespace] = ACTIONS(2731), + [anon_sym_static_assert] = ACTIONS(2731), + [anon_sym_concept] = ACTIONS(2731), + [anon_sym_co_return] = ACTIONS(2731), + [anon_sym_co_yield] = ACTIONS(2731), + [anon_sym_R_DQUOTE] = ACTIONS(2733), + [anon_sym_LR_DQUOTE] = ACTIONS(2733), + [anon_sym_uR_DQUOTE] = ACTIONS(2733), + [anon_sym_UR_DQUOTE] = ACTIONS(2733), + [anon_sym_u8R_DQUOTE] = ACTIONS(2733), + [anon_sym_co_await] = ACTIONS(2731), + [anon_sym_new] = ACTIONS(2731), + [anon_sym_requires] = ACTIONS(2731), + [sym_this] = ACTIONS(2731), }, - [619] = { - [ts_builtin_sym_end] = ACTIONS(2845), - [sym_identifier] = ACTIONS(2843), - [aux_sym_preproc_include_token1] = ACTIONS(2843), - [aux_sym_preproc_def_token1] = ACTIONS(2843), - [aux_sym_preproc_if_token1] = ACTIONS(2843), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2843), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2843), - [sym_preproc_directive] = ACTIONS(2843), - [anon_sym_LPAREN2] = ACTIONS(2845), - [anon_sym_BANG] = ACTIONS(2845), - [anon_sym_TILDE] = ACTIONS(2845), - [anon_sym_DASH] = ACTIONS(2843), - [anon_sym_PLUS] = ACTIONS(2843), - [anon_sym_STAR] = ACTIONS(2845), - [anon_sym_AMP_AMP] = ACTIONS(2845), - [anon_sym_AMP] = ACTIONS(2843), - [anon_sym_SEMI] = ACTIONS(2845), - [anon_sym___extension__] = ACTIONS(2843), - [anon_sym_typedef] = ACTIONS(2843), - [anon_sym_virtual] = ACTIONS(2843), - [anon_sym_extern] = ACTIONS(2843), - [anon_sym___attribute__] = ACTIONS(2843), - [anon_sym___attribute] = ACTIONS(2843), - [anon_sym_using] = ACTIONS(2843), - [anon_sym_COLON_COLON] = ACTIONS(2845), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2845), - [anon_sym___declspec] = ACTIONS(2843), - [anon_sym___based] = ACTIONS(2843), - [anon_sym___cdecl] = ACTIONS(2843), - [anon_sym___clrcall] = ACTIONS(2843), - [anon_sym___stdcall] = ACTIONS(2843), - [anon_sym___fastcall] = ACTIONS(2843), - [anon_sym___thiscall] = ACTIONS(2843), - [anon_sym___vectorcall] = ACTIONS(2843), - [anon_sym_LBRACE] = ACTIONS(2845), - [anon_sym_signed] = ACTIONS(2843), - [anon_sym_unsigned] = ACTIONS(2843), - [anon_sym_long] = ACTIONS(2843), - [anon_sym_short] = ACTIONS(2843), - [anon_sym_LBRACK] = ACTIONS(2843), - [anon_sym_static] = ACTIONS(2843), - [anon_sym_register] = ACTIONS(2843), - [anon_sym_inline] = ACTIONS(2843), - [anon_sym___inline] = ACTIONS(2843), - [anon_sym___inline__] = ACTIONS(2843), - [anon_sym___forceinline] = ACTIONS(2843), - [anon_sym_thread_local] = ACTIONS(2843), - [anon_sym___thread] = ACTIONS(2843), - [anon_sym_const] = ACTIONS(2843), - [anon_sym_constexpr] = ACTIONS(2843), - [anon_sym_volatile] = ACTIONS(2843), - [anon_sym_restrict] = ACTIONS(2843), - [anon_sym___restrict__] = ACTIONS(2843), - [anon_sym__Atomic] = ACTIONS(2843), - [anon_sym__Noreturn] = ACTIONS(2843), - [anon_sym_noreturn] = ACTIONS(2843), - [anon_sym__Nonnull] = ACTIONS(2843), - [anon_sym_mutable] = ACTIONS(2843), - [anon_sym_constinit] = ACTIONS(2843), - [anon_sym_consteval] = ACTIONS(2843), - [anon_sym_alignas] = ACTIONS(2843), - [anon_sym__Alignas] = ACTIONS(2843), - [sym_primitive_type] = ACTIONS(2843), - [anon_sym_enum] = ACTIONS(2843), - [anon_sym_class] = ACTIONS(2843), - [anon_sym_struct] = ACTIONS(2843), - [anon_sym_union] = ACTIONS(2843), - [anon_sym_if] = ACTIONS(2843), - [anon_sym_switch] = ACTIONS(2843), - [anon_sym_case] = ACTIONS(2843), - [anon_sym_default] = ACTIONS(2843), - [anon_sym_while] = ACTIONS(2843), - [anon_sym_do] = ACTIONS(2843), - [anon_sym_for] = ACTIONS(2843), - [anon_sym_return] = ACTIONS(2843), - [anon_sym_break] = ACTIONS(2843), - [anon_sym_continue] = ACTIONS(2843), - [anon_sym_goto] = ACTIONS(2843), - [anon_sym_not] = ACTIONS(2843), - [anon_sym_compl] = ACTIONS(2843), - [anon_sym_DASH_DASH] = ACTIONS(2845), - [anon_sym_PLUS_PLUS] = ACTIONS(2845), - [anon_sym_sizeof] = ACTIONS(2843), - [anon_sym___alignof__] = ACTIONS(2843), - [anon_sym___alignof] = ACTIONS(2843), - [anon_sym__alignof] = ACTIONS(2843), - [anon_sym_alignof] = ACTIONS(2843), - [anon_sym__Alignof] = ACTIONS(2843), - [anon_sym_offsetof] = ACTIONS(2843), - [anon_sym__Generic] = ACTIONS(2843), - [anon_sym_asm] = ACTIONS(2843), - [anon_sym___asm__] = ACTIONS(2843), - [anon_sym___asm] = ACTIONS(2843), - [sym_number_literal] = ACTIONS(2845), - [anon_sym_L_SQUOTE] = ACTIONS(2845), - [anon_sym_u_SQUOTE] = ACTIONS(2845), - [anon_sym_U_SQUOTE] = ACTIONS(2845), - [anon_sym_u8_SQUOTE] = ACTIONS(2845), - [anon_sym_SQUOTE] = ACTIONS(2845), - [anon_sym_L_DQUOTE] = ACTIONS(2845), - [anon_sym_u_DQUOTE] = ACTIONS(2845), - [anon_sym_U_DQUOTE] = ACTIONS(2845), - [anon_sym_u8_DQUOTE] = ACTIONS(2845), - [anon_sym_DQUOTE] = ACTIONS(2845), - [sym_true] = ACTIONS(2843), - [sym_false] = ACTIONS(2843), - [anon_sym_NULL] = ACTIONS(2843), - [anon_sym_nullptr] = ACTIONS(2843), + [626] = { + [ts_builtin_sym_end] = ACTIONS(3114), + [sym_identifier] = ACTIONS(3112), + [aux_sym_preproc_include_token1] = ACTIONS(3112), + [aux_sym_preproc_def_token1] = ACTIONS(3112), + [aux_sym_preproc_if_token1] = ACTIONS(3112), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3112), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3112), + [sym_preproc_directive] = ACTIONS(3112), + [anon_sym_LPAREN2] = ACTIONS(3114), + [anon_sym_BANG] = ACTIONS(3114), + [anon_sym_TILDE] = ACTIONS(3114), + [anon_sym_DASH] = ACTIONS(3112), + [anon_sym_PLUS] = ACTIONS(3112), + [anon_sym_STAR] = ACTIONS(3114), + [anon_sym_AMP_AMP] = ACTIONS(3114), + [anon_sym_AMP] = ACTIONS(3112), + [anon_sym_SEMI] = ACTIONS(3114), + [anon_sym___extension__] = ACTIONS(3112), + [anon_sym_typedef] = ACTIONS(3112), + [anon_sym_virtual] = ACTIONS(3112), + [anon_sym_extern] = ACTIONS(3112), + [anon_sym___attribute__] = ACTIONS(3112), + [anon_sym___attribute] = ACTIONS(3112), + [anon_sym_using] = ACTIONS(3112), + [anon_sym_COLON_COLON] = ACTIONS(3114), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3114), + [anon_sym___declspec] = ACTIONS(3112), + [anon_sym___based] = ACTIONS(3112), + [anon_sym___cdecl] = ACTIONS(3112), + [anon_sym___clrcall] = ACTIONS(3112), + [anon_sym___stdcall] = ACTIONS(3112), + [anon_sym___fastcall] = ACTIONS(3112), + [anon_sym___thiscall] = ACTIONS(3112), + [anon_sym___vectorcall] = ACTIONS(3112), + [anon_sym_LBRACE] = ACTIONS(3114), + [anon_sym_signed] = ACTIONS(3112), + [anon_sym_unsigned] = ACTIONS(3112), + [anon_sym_long] = ACTIONS(3112), + [anon_sym_short] = ACTIONS(3112), + [anon_sym_LBRACK] = ACTIONS(3112), + [anon_sym_static] = ACTIONS(3112), + [anon_sym_register] = ACTIONS(3112), + [anon_sym_inline] = ACTIONS(3112), + [anon_sym___inline] = ACTIONS(3112), + [anon_sym___inline__] = ACTIONS(3112), + [anon_sym___forceinline] = ACTIONS(3112), + [anon_sym_thread_local] = ACTIONS(3112), + [anon_sym___thread] = ACTIONS(3112), + [anon_sym_const] = ACTIONS(3112), + [anon_sym_constexpr] = ACTIONS(3112), + [anon_sym_volatile] = ACTIONS(3112), + [anon_sym_restrict] = ACTIONS(3112), + [anon_sym___restrict__] = ACTIONS(3112), + [anon_sym__Atomic] = ACTIONS(3112), + [anon_sym__Noreturn] = ACTIONS(3112), + [anon_sym_noreturn] = ACTIONS(3112), + [anon_sym__Nonnull] = ACTIONS(3112), + [anon_sym_mutable] = ACTIONS(3112), + [anon_sym_constinit] = ACTIONS(3112), + [anon_sym_consteval] = ACTIONS(3112), + [anon_sym_alignas] = ACTIONS(3112), + [anon_sym__Alignas] = ACTIONS(3112), + [sym_primitive_type] = ACTIONS(3112), + [anon_sym_enum] = ACTIONS(3112), + [anon_sym_class] = ACTIONS(3112), + [anon_sym_struct] = ACTIONS(3112), + [anon_sym_union] = ACTIONS(3112), + [anon_sym_if] = ACTIONS(3112), + [anon_sym_switch] = ACTIONS(3112), + [anon_sym_case] = ACTIONS(3112), + [anon_sym_default] = ACTIONS(3112), + [anon_sym_while] = ACTIONS(3112), + [anon_sym_do] = ACTIONS(3112), + [anon_sym_for] = ACTIONS(3112), + [anon_sym_return] = ACTIONS(3112), + [anon_sym_break] = ACTIONS(3112), + [anon_sym_continue] = ACTIONS(3112), + [anon_sym_goto] = ACTIONS(3112), + [anon_sym_not] = ACTIONS(3112), + [anon_sym_compl] = ACTIONS(3112), + [anon_sym_DASH_DASH] = ACTIONS(3114), + [anon_sym_PLUS_PLUS] = ACTIONS(3114), + [anon_sym_sizeof] = ACTIONS(3112), + [anon_sym___alignof__] = ACTIONS(3112), + [anon_sym___alignof] = ACTIONS(3112), + [anon_sym__alignof] = ACTIONS(3112), + [anon_sym_alignof] = ACTIONS(3112), + [anon_sym__Alignof] = ACTIONS(3112), + [anon_sym_offsetof] = ACTIONS(3112), + [anon_sym__Generic] = ACTIONS(3112), + [anon_sym_asm] = ACTIONS(3112), + [anon_sym___asm__] = ACTIONS(3112), + [anon_sym___asm] = ACTIONS(3112), + [sym_number_literal] = ACTIONS(3114), + [anon_sym_L_SQUOTE] = ACTIONS(3114), + [anon_sym_u_SQUOTE] = ACTIONS(3114), + [anon_sym_U_SQUOTE] = ACTIONS(3114), + [anon_sym_u8_SQUOTE] = ACTIONS(3114), + [anon_sym_SQUOTE] = ACTIONS(3114), + [anon_sym_L_DQUOTE] = ACTIONS(3114), + [anon_sym_u_DQUOTE] = ACTIONS(3114), + [anon_sym_U_DQUOTE] = ACTIONS(3114), + [anon_sym_u8_DQUOTE] = ACTIONS(3114), + [anon_sym_DQUOTE] = ACTIONS(3114), + [sym_true] = ACTIONS(3112), + [sym_false] = ACTIONS(3112), + [anon_sym_NULL] = ACTIONS(3112), + [anon_sym_nullptr] = ACTIONS(3112), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2843), - [anon_sym_decltype] = ACTIONS(2843), - [anon_sym_explicit] = ACTIONS(2843), - [anon_sym_typename] = ACTIONS(2843), - [anon_sym_export] = ACTIONS(2843), - [anon_sym_module] = ACTIONS(2843), - [anon_sym_import] = ACTIONS(2843), - [anon_sym_template] = ACTIONS(2843), - [anon_sym_operator] = ACTIONS(2843), - [anon_sym_try] = ACTIONS(2843), - [anon_sym_delete] = ACTIONS(2843), - [anon_sym_throw] = ACTIONS(2843), - [anon_sym_namespace] = ACTIONS(2843), - [anon_sym_static_assert] = ACTIONS(2843), - [anon_sym_concept] = ACTIONS(2843), - [anon_sym_co_return] = ACTIONS(2843), - [anon_sym_co_yield] = ACTIONS(2843), - [anon_sym_R_DQUOTE] = ACTIONS(2845), - [anon_sym_LR_DQUOTE] = ACTIONS(2845), - [anon_sym_uR_DQUOTE] = ACTIONS(2845), - [anon_sym_UR_DQUOTE] = ACTIONS(2845), - [anon_sym_u8R_DQUOTE] = ACTIONS(2845), - [anon_sym_co_await] = ACTIONS(2843), - [anon_sym_new] = ACTIONS(2843), - [anon_sym_requires] = ACTIONS(2843), - [sym_this] = ACTIONS(2843), + [sym_auto] = ACTIONS(3112), + [anon_sym_decltype] = ACTIONS(3112), + [anon_sym_explicit] = ACTIONS(3112), + [anon_sym_typename] = ACTIONS(3112), + [anon_sym_export] = ACTIONS(3112), + [anon_sym_module] = ACTIONS(3112), + [anon_sym_import] = ACTIONS(3112), + [anon_sym_template] = ACTIONS(3112), + [anon_sym_operator] = ACTIONS(3112), + [anon_sym_try] = ACTIONS(3112), + [anon_sym_delete] = ACTIONS(3112), + [anon_sym_throw] = ACTIONS(3112), + [anon_sym_namespace] = ACTIONS(3112), + [anon_sym_static_assert] = ACTIONS(3112), + [anon_sym_concept] = ACTIONS(3112), + [anon_sym_co_return] = ACTIONS(3112), + [anon_sym_co_yield] = ACTIONS(3112), + [anon_sym_R_DQUOTE] = ACTIONS(3114), + [anon_sym_LR_DQUOTE] = ACTIONS(3114), + [anon_sym_uR_DQUOTE] = ACTIONS(3114), + [anon_sym_UR_DQUOTE] = ACTIONS(3114), + [anon_sym_u8R_DQUOTE] = ACTIONS(3114), + [anon_sym_co_await] = ACTIONS(3112), + [anon_sym_new] = ACTIONS(3112), + [anon_sym_requires] = ACTIONS(3112), + [sym_this] = ACTIONS(3112), + }, + [627] = { + [ts_builtin_sym_end] = ACTIONS(3118), + [sym_identifier] = ACTIONS(3116), + [aux_sym_preproc_include_token1] = ACTIONS(3116), + [aux_sym_preproc_def_token1] = ACTIONS(3116), + [aux_sym_preproc_if_token1] = ACTIONS(3116), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3116), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3116), + [sym_preproc_directive] = ACTIONS(3116), + [anon_sym_LPAREN2] = ACTIONS(3118), + [anon_sym_BANG] = ACTIONS(3118), + [anon_sym_TILDE] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3116), + [anon_sym_PLUS] = ACTIONS(3116), + [anon_sym_STAR] = ACTIONS(3118), + [anon_sym_AMP_AMP] = ACTIONS(3118), + [anon_sym_AMP] = ACTIONS(3116), + [anon_sym_SEMI] = ACTIONS(3118), + [anon_sym___extension__] = ACTIONS(3116), + [anon_sym_typedef] = ACTIONS(3116), + [anon_sym_virtual] = ACTIONS(3116), + [anon_sym_extern] = ACTIONS(3116), + [anon_sym___attribute__] = ACTIONS(3116), + [anon_sym___attribute] = ACTIONS(3116), + [anon_sym_using] = ACTIONS(3116), + [anon_sym_COLON_COLON] = ACTIONS(3118), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3118), + [anon_sym___declspec] = ACTIONS(3116), + [anon_sym___based] = ACTIONS(3116), + [anon_sym___cdecl] = ACTIONS(3116), + [anon_sym___clrcall] = ACTIONS(3116), + [anon_sym___stdcall] = ACTIONS(3116), + [anon_sym___fastcall] = ACTIONS(3116), + [anon_sym___thiscall] = ACTIONS(3116), + [anon_sym___vectorcall] = ACTIONS(3116), + [anon_sym_LBRACE] = ACTIONS(3118), + [anon_sym_signed] = ACTIONS(3116), + [anon_sym_unsigned] = ACTIONS(3116), + [anon_sym_long] = ACTIONS(3116), + [anon_sym_short] = ACTIONS(3116), + [anon_sym_LBRACK] = ACTIONS(3116), + [anon_sym_static] = ACTIONS(3116), + [anon_sym_register] = ACTIONS(3116), + [anon_sym_inline] = ACTIONS(3116), + [anon_sym___inline] = ACTIONS(3116), + [anon_sym___inline__] = ACTIONS(3116), + [anon_sym___forceinline] = ACTIONS(3116), + [anon_sym_thread_local] = ACTIONS(3116), + [anon_sym___thread] = ACTIONS(3116), + [anon_sym_const] = ACTIONS(3116), + [anon_sym_constexpr] = ACTIONS(3116), + [anon_sym_volatile] = ACTIONS(3116), + [anon_sym_restrict] = ACTIONS(3116), + [anon_sym___restrict__] = ACTIONS(3116), + [anon_sym__Atomic] = ACTIONS(3116), + [anon_sym__Noreturn] = ACTIONS(3116), + [anon_sym_noreturn] = ACTIONS(3116), + [anon_sym__Nonnull] = ACTIONS(3116), + [anon_sym_mutable] = ACTIONS(3116), + [anon_sym_constinit] = ACTIONS(3116), + [anon_sym_consteval] = ACTIONS(3116), + [anon_sym_alignas] = ACTIONS(3116), + [anon_sym__Alignas] = ACTIONS(3116), + [sym_primitive_type] = ACTIONS(3116), + [anon_sym_enum] = ACTIONS(3116), + [anon_sym_class] = ACTIONS(3116), + [anon_sym_struct] = ACTIONS(3116), + [anon_sym_union] = ACTIONS(3116), + [anon_sym_if] = ACTIONS(3116), + [anon_sym_switch] = ACTIONS(3116), + [anon_sym_case] = ACTIONS(3116), + [anon_sym_default] = ACTIONS(3116), + [anon_sym_while] = ACTIONS(3116), + [anon_sym_do] = ACTIONS(3116), + [anon_sym_for] = ACTIONS(3116), + [anon_sym_return] = ACTIONS(3116), + [anon_sym_break] = ACTIONS(3116), + [anon_sym_continue] = ACTIONS(3116), + [anon_sym_goto] = ACTIONS(3116), + [anon_sym_not] = ACTIONS(3116), + [anon_sym_compl] = ACTIONS(3116), + [anon_sym_DASH_DASH] = ACTIONS(3118), + [anon_sym_PLUS_PLUS] = ACTIONS(3118), + [anon_sym_sizeof] = ACTIONS(3116), + [anon_sym___alignof__] = ACTIONS(3116), + [anon_sym___alignof] = ACTIONS(3116), + [anon_sym__alignof] = ACTIONS(3116), + [anon_sym_alignof] = ACTIONS(3116), + [anon_sym__Alignof] = ACTIONS(3116), + [anon_sym_offsetof] = ACTIONS(3116), + [anon_sym__Generic] = ACTIONS(3116), + [anon_sym_asm] = ACTIONS(3116), + [anon_sym___asm__] = ACTIONS(3116), + [anon_sym___asm] = ACTIONS(3116), + [sym_number_literal] = ACTIONS(3118), + [anon_sym_L_SQUOTE] = ACTIONS(3118), + [anon_sym_u_SQUOTE] = ACTIONS(3118), + [anon_sym_U_SQUOTE] = ACTIONS(3118), + [anon_sym_u8_SQUOTE] = ACTIONS(3118), + [anon_sym_SQUOTE] = ACTIONS(3118), + [anon_sym_L_DQUOTE] = ACTIONS(3118), + [anon_sym_u_DQUOTE] = ACTIONS(3118), + [anon_sym_U_DQUOTE] = ACTIONS(3118), + [anon_sym_u8_DQUOTE] = ACTIONS(3118), + [anon_sym_DQUOTE] = ACTIONS(3118), + [sym_true] = ACTIONS(3116), + [sym_false] = ACTIONS(3116), + [anon_sym_NULL] = ACTIONS(3116), + [anon_sym_nullptr] = ACTIONS(3116), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3116), + [anon_sym_decltype] = ACTIONS(3116), + [anon_sym_explicit] = ACTIONS(3116), + [anon_sym_typename] = ACTIONS(3116), + [anon_sym_export] = ACTIONS(3116), + [anon_sym_module] = ACTIONS(3116), + [anon_sym_import] = ACTIONS(3116), + [anon_sym_template] = ACTIONS(3116), + [anon_sym_operator] = ACTIONS(3116), + [anon_sym_try] = ACTIONS(3116), + [anon_sym_delete] = ACTIONS(3116), + [anon_sym_throw] = ACTIONS(3116), + [anon_sym_namespace] = ACTIONS(3116), + [anon_sym_static_assert] = ACTIONS(3116), + [anon_sym_concept] = ACTIONS(3116), + [anon_sym_co_return] = ACTIONS(3116), + [anon_sym_co_yield] = ACTIONS(3116), + [anon_sym_R_DQUOTE] = ACTIONS(3118), + [anon_sym_LR_DQUOTE] = ACTIONS(3118), + [anon_sym_uR_DQUOTE] = ACTIONS(3118), + [anon_sym_UR_DQUOTE] = ACTIONS(3118), + [anon_sym_u8R_DQUOTE] = ACTIONS(3118), + [anon_sym_co_await] = ACTIONS(3116), + [anon_sym_new] = ACTIONS(3116), + [anon_sym_requires] = ACTIONS(3116), + [sym_this] = ACTIONS(3116), + }, + [628] = { + [sym_identifier] = ACTIONS(2635), + [aux_sym_preproc_include_token1] = ACTIONS(2635), + [aux_sym_preproc_def_token1] = ACTIONS(2635), + [aux_sym_preproc_if_token1] = ACTIONS(2635), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2635), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2635), + [sym_preproc_directive] = ACTIONS(2635), + [anon_sym_LPAREN2] = ACTIONS(2637), + [anon_sym_BANG] = ACTIONS(2637), + [anon_sym_TILDE] = ACTIONS(2637), + [anon_sym_DASH] = ACTIONS(2635), + [anon_sym_PLUS] = ACTIONS(2635), + [anon_sym_STAR] = ACTIONS(2637), + [anon_sym_AMP_AMP] = ACTIONS(2637), + [anon_sym_AMP] = ACTIONS(2635), + [anon_sym_SEMI] = ACTIONS(2637), + [anon_sym___extension__] = ACTIONS(2635), + [anon_sym_typedef] = ACTIONS(2635), + [anon_sym_virtual] = ACTIONS(2635), + [anon_sym_extern] = ACTIONS(2635), + [anon_sym___attribute__] = ACTIONS(2635), + [anon_sym___attribute] = ACTIONS(2635), + [anon_sym_using] = ACTIONS(2635), + [anon_sym_COLON_COLON] = ACTIONS(2637), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2637), + [anon_sym___declspec] = ACTIONS(2635), + [anon_sym___based] = ACTIONS(2635), + [anon_sym___cdecl] = ACTIONS(2635), + [anon_sym___clrcall] = ACTIONS(2635), + [anon_sym___stdcall] = ACTIONS(2635), + [anon_sym___fastcall] = ACTIONS(2635), + [anon_sym___thiscall] = ACTIONS(2635), + [anon_sym___vectorcall] = ACTIONS(2635), + [anon_sym_LBRACE] = ACTIONS(2637), + [anon_sym_RBRACE] = ACTIONS(2637), + [anon_sym_signed] = ACTIONS(2635), + [anon_sym_unsigned] = ACTIONS(2635), + [anon_sym_long] = ACTIONS(2635), + [anon_sym_short] = ACTIONS(2635), + [anon_sym_LBRACK] = ACTIONS(2635), + [anon_sym_static] = ACTIONS(2635), + [anon_sym_register] = ACTIONS(2635), + [anon_sym_inline] = ACTIONS(2635), + [anon_sym___inline] = ACTIONS(2635), + [anon_sym___inline__] = ACTIONS(2635), + [anon_sym___forceinline] = ACTIONS(2635), + [anon_sym_thread_local] = ACTIONS(2635), + [anon_sym___thread] = ACTIONS(2635), + [anon_sym_const] = ACTIONS(2635), + [anon_sym_constexpr] = ACTIONS(2635), + [anon_sym_volatile] = ACTIONS(2635), + [anon_sym_restrict] = ACTIONS(2635), + [anon_sym___restrict__] = ACTIONS(2635), + [anon_sym__Atomic] = ACTIONS(2635), + [anon_sym__Noreturn] = ACTIONS(2635), + [anon_sym_noreturn] = ACTIONS(2635), + [anon_sym__Nonnull] = ACTIONS(2635), + [anon_sym_mutable] = ACTIONS(2635), + [anon_sym_constinit] = ACTIONS(2635), + [anon_sym_consteval] = ACTIONS(2635), + [anon_sym_alignas] = ACTIONS(2635), + [anon_sym__Alignas] = ACTIONS(2635), + [sym_primitive_type] = ACTIONS(2635), + [anon_sym_enum] = ACTIONS(2635), + [anon_sym_class] = ACTIONS(2635), + [anon_sym_struct] = ACTIONS(2635), + [anon_sym_union] = ACTIONS(2635), + [anon_sym_if] = ACTIONS(2635), + [anon_sym_else] = ACTIONS(2635), + [anon_sym_switch] = ACTIONS(2635), + [anon_sym_case] = ACTIONS(2635), + [anon_sym_default] = ACTIONS(2635), + [anon_sym_while] = ACTIONS(2635), + [anon_sym_do] = ACTIONS(2635), + [anon_sym_for] = ACTIONS(2635), + [anon_sym_return] = ACTIONS(2635), + [anon_sym_break] = ACTIONS(2635), + [anon_sym_continue] = ACTIONS(2635), + [anon_sym_goto] = ACTIONS(2635), + [anon_sym___try] = ACTIONS(2635), + [anon_sym___leave] = ACTIONS(2635), + [anon_sym_not] = ACTIONS(2635), + [anon_sym_compl] = ACTIONS(2635), + [anon_sym_DASH_DASH] = ACTIONS(2637), + [anon_sym_PLUS_PLUS] = ACTIONS(2637), + [anon_sym_sizeof] = ACTIONS(2635), + [anon_sym___alignof__] = ACTIONS(2635), + [anon_sym___alignof] = ACTIONS(2635), + [anon_sym__alignof] = ACTIONS(2635), + [anon_sym_alignof] = ACTIONS(2635), + [anon_sym__Alignof] = ACTIONS(2635), + [anon_sym_offsetof] = ACTIONS(2635), + [anon_sym__Generic] = ACTIONS(2635), + [anon_sym_asm] = ACTIONS(2635), + [anon_sym___asm__] = ACTIONS(2635), + [anon_sym___asm] = ACTIONS(2635), + [sym_number_literal] = ACTIONS(2637), + [anon_sym_L_SQUOTE] = ACTIONS(2637), + [anon_sym_u_SQUOTE] = ACTIONS(2637), + [anon_sym_U_SQUOTE] = ACTIONS(2637), + [anon_sym_u8_SQUOTE] = ACTIONS(2637), + [anon_sym_SQUOTE] = ACTIONS(2637), + [anon_sym_L_DQUOTE] = ACTIONS(2637), + [anon_sym_u_DQUOTE] = ACTIONS(2637), + [anon_sym_U_DQUOTE] = ACTIONS(2637), + [anon_sym_u8_DQUOTE] = ACTIONS(2637), + [anon_sym_DQUOTE] = ACTIONS(2637), + [sym_true] = ACTIONS(2635), + [sym_false] = ACTIONS(2635), + [anon_sym_NULL] = ACTIONS(2635), + [anon_sym_nullptr] = ACTIONS(2635), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2635), + [anon_sym_decltype] = ACTIONS(2635), + [anon_sym_explicit] = ACTIONS(2635), + [anon_sym_typename] = ACTIONS(2635), + [anon_sym_template] = ACTIONS(2635), + [anon_sym_operator] = ACTIONS(2635), + [anon_sym_try] = ACTIONS(2635), + [anon_sym_delete] = ACTIONS(2635), + [anon_sym_throw] = ACTIONS(2635), + [anon_sym_namespace] = ACTIONS(2635), + [anon_sym_static_assert] = ACTIONS(2635), + [anon_sym_concept] = ACTIONS(2635), + [anon_sym_co_return] = ACTIONS(2635), + [anon_sym_co_yield] = ACTIONS(2635), + [anon_sym_R_DQUOTE] = ACTIONS(2637), + [anon_sym_LR_DQUOTE] = ACTIONS(2637), + [anon_sym_uR_DQUOTE] = ACTIONS(2637), + [anon_sym_UR_DQUOTE] = ACTIONS(2637), + [anon_sym_u8R_DQUOTE] = ACTIONS(2637), + [anon_sym_co_await] = ACTIONS(2635), + [anon_sym_new] = ACTIONS(2635), + [anon_sym_requires] = ACTIONS(2635), + [sym_this] = ACTIONS(2635), }, - [620] = { - [ts_builtin_sym_end] = ACTIONS(2893), - [sym_identifier] = ACTIONS(2891), - [aux_sym_preproc_include_token1] = ACTIONS(2891), - [aux_sym_preproc_def_token1] = ACTIONS(2891), - [aux_sym_preproc_if_token1] = ACTIONS(2891), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2891), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2891), - [sym_preproc_directive] = ACTIONS(2891), - [anon_sym_LPAREN2] = ACTIONS(2893), - [anon_sym_BANG] = ACTIONS(2893), - [anon_sym_TILDE] = ACTIONS(2893), - [anon_sym_DASH] = ACTIONS(2891), - [anon_sym_PLUS] = ACTIONS(2891), - [anon_sym_STAR] = ACTIONS(2893), - [anon_sym_AMP_AMP] = ACTIONS(2893), - [anon_sym_AMP] = ACTIONS(2891), - [anon_sym_SEMI] = ACTIONS(2893), - [anon_sym___extension__] = ACTIONS(2891), - [anon_sym_typedef] = ACTIONS(2891), - [anon_sym_virtual] = ACTIONS(2891), - [anon_sym_extern] = ACTIONS(2891), - [anon_sym___attribute__] = ACTIONS(2891), - [anon_sym___attribute] = ACTIONS(2891), - [anon_sym_using] = ACTIONS(2891), - [anon_sym_COLON_COLON] = ACTIONS(2893), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2893), - [anon_sym___declspec] = ACTIONS(2891), - [anon_sym___based] = ACTIONS(2891), - [anon_sym___cdecl] = ACTIONS(2891), - [anon_sym___clrcall] = ACTIONS(2891), - [anon_sym___stdcall] = ACTIONS(2891), - [anon_sym___fastcall] = ACTIONS(2891), - [anon_sym___thiscall] = ACTIONS(2891), - [anon_sym___vectorcall] = ACTIONS(2891), - [anon_sym_LBRACE] = ACTIONS(2893), - [anon_sym_signed] = ACTIONS(2891), - [anon_sym_unsigned] = ACTIONS(2891), - [anon_sym_long] = ACTIONS(2891), - [anon_sym_short] = ACTIONS(2891), - [anon_sym_LBRACK] = ACTIONS(2891), - [anon_sym_static] = ACTIONS(2891), - [anon_sym_register] = ACTIONS(2891), - [anon_sym_inline] = ACTIONS(2891), - [anon_sym___inline] = ACTIONS(2891), - [anon_sym___inline__] = ACTIONS(2891), - [anon_sym___forceinline] = ACTIONS(2891), - [anon_sym_thread_local] = ACTIONS(2891), - [anon_sym___thread] = ACTIONS(2891), - [anon_sym_const] = ACTIONS(2891), - [anon_sym_constexpr] = ACTIONS(2891), - [anon_sym_volatile] = ACTIONS(2891), - [anon_sym_restrict] = ACTIONS(2891), - [anon_sym___restrict__] = ACTIONS(2891), - [anon_sym__Atomic] = ACTIONS(2891), - [anon_sym__Noreturn] = ACTIONS(2891), - [anon_sym_noreturn] = ACTIONS(2891), - [anon_sym__Nonnull] = ACTIONS(2891), - [anon_sym_mutable] = ACTIONS(2891), - [anon_sym_constinit] = ACTIONS(2891), - [anon_sym_consteval] = ACTIONS(2891), - [anon_sym_alignas] = ACTIONS(2891), - [anon_sym__Alignas] = ACTIONS(2891), - [sym_primitive_type] = ACTIONS(2891), - [anon_sym_enum] = ACTIONS(2891), - [anon_sym_class] = ACTIONS(2891), - [anon_sym_struct] = ACTIONS(2891), - [anon_sym_union] = ACTIONS(2891), - [anon_sym_if] = ACTIONS(2891), - [anon_sym_switch] = ACTIONS(2891), - [anon_sym_case] = ACTIONS(2891), - [anon_sym_default] = ACTIONS(2891), - [anon_sym_while] = ACTIONS(2891), - [anon_sym_do] = ACTIONS(2891), - [anon_sym_for] = ACTIONS(2891), - [anon_sym_return] = ACTIONS(2891), - [anon_sym_break] = ACTIONS(2891), - [anon_sym_continue] = ACTIONS(2891), - [anon_sym_goto] = ACTIONS(2891), - [anon_sym_not] = ACTIONS(2891), - [anon_sym_compl] = ACTIONS(2891), - [anon_sym_DASH_DASH] = ACTIONS(2893), - [anon_sym_PLUS_PLUS] = ACTIONS(2893), - [anon_sym_sizeof] = ACTIONS(2891), - [anon_sym___alignof__] = ACTIONS(2891), - [anon_sym___alignof] = ACTIONS(2891), - [anon_sym__alignof] = ACTIONS(2891), - [anon_sym_alignof] = ACTIONS(2891), - [anon_sym__Alignof] = ACTIONS(2891), - [anon_sym_offsetof] = ACTIONS(2891), - [anon_sym__Generic] = ACTIONS(2891), - [anon_sym_asm] = ACTIONS(2891), - [anon_sym___asm__] = ACTIONS(2891), - [anon_sym___asm] = ACTIONS(2891), - [sym_number_literal] = ACTIONS(2893), - [anon_sym_L_SQUOTE] = ACTIONS(2893), - [anon_sym_u_SQUOTE] = ACTIONS(2893), - [anon_sym_U_SQUOTE] = ACTIONS(2893), - [anon_sym_u8_SQUOTE] = ACTIONS(2893), - [anon_sym_SQUOTE] = ACTIONS(2893), - [anon_sym_L_DQUOTE] = ACTIONS(2893), - [anon_sym_u_DQUOTE] = ACTIONS(2893), - [anon_sym_U_DQUOTE] = ACTIONS(2893), - [anon_sym_u8_DQUOTE] = ACTIONS(2893), - [anon_sym_DQUOTE] = ACTIONS(2893), - [sym_true] = ACTIONS(2891), - [sym_false] = ACTIONS(2891), - [anon_sym_NULL] = ACTIONS(2891), - [anon_sym_nullptr] = ACTIONS(2891), + [629] = { + [sym_identifier] = ACTIONS(2743), + [aux_sym_preproc_include_token1] = ACTIONS(2743), + [aux_sym_preproc_def_token1] = ACTIONS(2743), + [aux_sym_preproc_if_token1] = ACTIONS(2743), + [aux_sym_preproc_if_token2] = ACTIONS(2743), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2743), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2743), + [sym_preproc_directive] = ACTIONS(2743), + [anon_sym_LPAREN2] = ACTIONS(2745), + [anon_sym_BANG] = ACTIONS(2745), + [anon_sym_TILDE] = ACTIONS(2745), + [anon_sym_DASH] = ACTIONS(2743), + [anon_sym_PLUS] = ACTIONS(2743), + [anon_sym_STAR] = ACTIONS(2745), + [anon_sym_AMP_AMP] = ACTIONS(2745), + [anon_sym_AMP] = ACTIONS(2743), + [anon_sym_SEMI] = ACTIONS(2745), + [anon_sym___extension__] = ACTIONS(2743), + [anon_sym_typedef] = ACTIONS(2743), + [anon_sym_virtual] = ACTIONS(2743), + [anon_sym_extern] = ACTIONS(2743), + [anon_sym___attribute__] = ACTIONS(2743), + [anon_sym___attribute] = ACTIONS(2743), + [anon_sym_using] = ACTIONS(2743), + [anon_sym_COLON_COLON] = ACTIONS(2745), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2745), + [anon_sym___declspec] = ACTIONS(2743), + [anon_sym___based] = ACTIONS(2743), + [anon_sym___cdecl] = ACTIONS(2743), + [anon_sym___clrcall] = ACTIONS(2743), + [anon_sym___stdcall] = ACTIONS(2743), + [anon_sym___fastcall] = ACTIONS(2743), + [anon_sym___thiscall] = ACTIONS(2743), + [anon_sym___vectorcall] = ACTIONS(2743), + [anon_sym_LBRACE] = ACTIONS(2745), + [anon_sym_signed] = ACTIONS(2743), + [anon_sym_unsigned] = ACTIONS(2743), + [anon_sym_long] = ACTIONS(2743), + [anon_sym_short] = ACTIONS(2743), + [anon_sym_LBRACK] = ACTIONS(2743), + [anon_sym_static] = ACTIONS(2743), + [anon_sym_register] = ACTIONS(2743), + [anon_sym_inline] = ACTIONS(2743), + [anon_sym___inline] = ACTIONS(2743), + [anon_sym___inline__] = ACTIONS(2743), + [anon_sym___forceinline] = ACTIONS(2743), + [anon_sym_thread_local] = ACTIONS(2743), + [anon_sym___thread] = ACTIONS(2743), + [anon_sym_const] = ACTIONS(2743), + [anon_sym_constexpr] = ACTIONS(2743), + [anon_sym_volatile] = ACTIONS(2743), + [anon_sym_restrict] = ACTIONS(2743), + [anon_sym___restrict__] = ACTIONS(2743), + [anon_sym__Atomic] = ACTIONS(2743), + [anon_sym__Noreturn] = ACTIONS(2743), + [anon_sym_noreturn] = ACTIONS(2743), + [anon_sym__Nonnull] = ACTIONS(2743), + [anon_sym_mutable] = ACTIONS(2743), + [anon_sym_constinit] = ACTIONS(2743), + [anon_sym_consteval] = ACTIONS(2743), + [anon_sym_alignas] = ACTIONS(2743), + [anon_sym__Alignas] = ACTIONS(2743), + [sym_primitive_type] = ACTIONS(2743), + [anon_sym_enum] = ACTIONS(2743), + [anon_sym_class] = ACTIONS(2743), + [anon_sym_struct] = ACTIONS(2743), + [anon_sym_union] = ACTIONS(2743), + [anon_sym_if] = ACTIONS(2743), + [anon_sym_else] = ACTIONS(2743), + [anon_sym_switch] = ACTIONS(2743), + [anon_sym_case] = ACTIONS(2743), + [anon_sym_default] = ACTIONS(2743), + [anon_sym_while] = ACTIONS(2743), + [anon_sym_do] = ACTIONS(2743), + [anon_sym_for] = ACTIONS(2743), + [anon_sym_return] = ACTIONS(2743), + [anon_sym_break] = ACTIONS(2743), + [anon_sym_continue] = ACTIONS(2743), + [anon_sym_goto] = ACTIONS(2743), + [anon_sym___try] = ACTIONS(2743), + [anon_sym___leave] = ACTIONS(2743), + [anon_sym_not] = ACTIONS(2743), + [anon_sym_compl] = ACTIONS(2743), + [anon_sym_DASH_DASH] = ACTIONS(2745), + [anon_sym_PLUS_PLUS] = ACTIONS(2745), + [anon_sym_sizeof] = ACTIONS(2743), + [anon_sym___alignof__] = ACTIONS(2743), + [anon_sym___alignof] = ACTIONS(2743), + [anon_sym__alignof] = ACTIONS(2743), + [anon_sym_alignof] = ACTIONS(2743), + [anon_sym__Alignof] = ACTIONS(2743), + [anon_sym_offsetof] = ACTIONS(2743), + [anon_sym__Generic] = ACTIONS(2743), + [anon_sym_asm] = ACTIONS(2743), + [anon_sym___asm__] = ACTIONS(2743), + [anon_sym___asm] = ACTIONS(2743), + [sym_number_literal] = ACTIONS(2745), + [anon_sym_L_SQUOTE] = ACTIONS(2745), + [anon_sym_u_SQUOTE] = ACTIONS(2745), + [anon_sym_U_SQUOTE] = ACTIONS(2745), + [anon_sym_u8_SQUOTE] = ACTIONS(2745), + [anon_sym_SQUOTE] = ACTIONS(2745), + [anon_sym_L_DQUOTE] = ACTIONS(2745), + [anon_sym_u_DQUOTE] = ACTIONS(2745), + [anon_sym_U_DQUOTE] = ACTIONS(2745), + [anon_sym_u8_DQUOTE] = ACTIONS(2745), + [anon_sym_DQUOTE] = ACTIONS(2745), + [sym_true] = ACTIONS(2743), + [sym_false] = ACTIONS(2743), + [anon_sym_NULL] = ACTIONS(2743), + [anon_sym_nullptr] = ACTIONS(2743), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2891), - [anon_sym_decltype] = ACTIONS(2891), - [anon_sym_explicit] = ACTIONS(2891), - [anon_sym_typename] = ACTIONS(2891), - [anon_sym_export] = ACTIONS(2891), - [anon_sym_module] = ACTIONS(2891), - [anon_sym_import] = ACTIONS(2891), - [anon_sym_template] = ACTIONS(2891), - [anon_sym_operator] = ACTIONS(2891), - [anon_sym_try] = ACTIONS(2891), - [anon_sym_delete] = ACTIONS(2891), - [anon_sym_throw] = ACTIONS(2891), - [anon_sym_namespace] = ACTIONS(2891), - [anon_sym_static_assert] = ACTIONS(2891), - [anon_sym_concept] = ACTIONS(2891), - [anon_sym_co_return] = ACTIONS(2891), - [anon_sym_co_yield] = ACTIONS(2891), - [anon_sym_R_DQUOTE] = ACTIONS(2893), - [anon_sym_LR_DQUOTE] = ACTIONS(2893), - [anon_sym_uR_DQUOTE] = ACTIONS(2893), - [anon_sym_UR_DQUOTE] = ACTIONS(2893), - [anon_sym_u8R_DQUOTE] = ACTIONS(2893), - [anon_sym_co_await] = ACTIONS(2891), - [anon_sym_new] = ACTIONS(2891), - [anon_sym_requires] = ACTIONS(2891), - [sym_this] = ACTIONS(2891), + [sym_auto] = ACTIONS(2743), + [anon_sym_decltype] = ACTIONS(2743), + [anon_sym_explicit] = ACTIONS(2743), + [anon_sym_typename] = ACTIONS(2743), + [anon_sym_template] = ACTIONS(2743), + [anon_sym_operator] = ACTIONS(2743), + [anon_sym_try] = ACTIONS(2743), + [anon_sym_delete] = ACTIONS(2743), + [anon_sym_throw] = ACTIONS(2743), + [anon_sym_namespace] = ACTIONS(2743), + [anon_sym_static_assert] = ACTIONS(2743), + [anon_sym_concept] = ACTIONS(2743), + [anon_sym_co_return] = ACTIONS(2743), + [anon_sym_co_yield] = ACTIONS(2743), + [anon_sym_R_DQUOTE] = ACTIONS(2745), + [anon_sym_LR_DQUOTE] = ACTIONS(2745), + [anon_sym_uR_DQUOTE] = ACTIONS(2745), + [anon_sym_UR_DQUOTE] = ACTIONS(2745), + [anon_sym_u8R_DQUOTE] = ACTIONS(2745), + [anon_sym_co_await] = ACTIONS(2743), + [anon_sym_new] = ACTIONS(2743), + [anon_sym_requires] = ACTIONS(2743), + [sym_this] = ACTIONS(2743), }, - [621] = { - [ts_builtin_sym_end] = ACTIONS(2785), - [sym_identifier] = ACTIONS(2783), - [aux_sym_preproc_include_token1] = ACTIONS(2783), - [aux_sym_preproc_def_token1] = ACTIONS(2783), - [aux_sym_preproc_if_token1] = ACTIONS(2783), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2783), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2783), - [sym_preproc_directive] = ACTIONS(2783), - [anon_sym_LPAREN2] = ACTIONS(2785), - [anon_sym_BANG] = ACTIONS(2785), - [anon_sym_TILDE] = ACTIONS(2785), - [anon_sym_DASH] = ACTIONS(2783), - [anon_sym_PLUS] = ACTIONS(2783), - [anon_sym_STAR] = ACTIONS(2785), - [anon_sym_AMP_AMP] = ACTIONS(2785), - [anon_sym_AMP] = ACTIONS(2783), - [anon_sym_SEMI] = ACTIONS(2785), - [anon_sym___extension__] = ACTIONS(2783), - [anon_sym_typedef] = ACTIONS(2783), - [anon_sym_virtual] = ACTIONS(2783), - [anon_sym_extern] = ACTIONS(2783), - [anon_sym___attribute__] = ACTIONS(2783), - [anon_sym___attribute] = ACTIONS(2783), - [anon_sym_using] = ACTIONS(2783), - [anon_sym_COLON_COLON] = ACTIONS(2785), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2785), - [anon_sym___declspec] = ACTIONS(2783), - [anon_sym___based] = ACTIONS(2783), - [anon_sym___cdecl] = ACTIONS(2783), - [anon_sym___clrcall] = ACTIONS(2783), - [anon_sym___stdcall] = ACTIONS(2783), - [anon_sym___fastcall] = ACTIONS(2783), - [anon_sym___thiscall] = ACTIONS(2783), - [anon_sym___vectorcall] = ACTIONS(2783), - [anon_sym_LBRACE] = ACTIONS(2785), - [anon_sym_signed] = ACTIONS(2783), - [anon_sym_unsigned] = ACTIONS(2783), - [anon_sym_long] = ACTIONS(2783), - [anon_sym_short] = ACTIONS(2783), - [anon_sym_LBRACK] = ACTIONS(2783), - [anon_sym_static] = ACTIONS(2783), - [anon_sym_register] = ACTIONS(2783), - [anon_sym_inline] = ACTIONS(2783), - [anon_sym___inline] = ACTIONS(2783), - [anon_sym___inline__] = ACTIONS(2783), - [anon_sym___forceinline] = ACTIONS(2783), - [anon_sym_thread_local] = ACTIONS(2783), - [anon_sym___thread] = ACTIONS(2783), - [anon_sym_const] = ACTIONS(2783), - [anon_sym_constexpr] = ACTIONS(2783), - [anon_sym_volatile] = ACTIONS(2783), - [anon_sym_restrict] = ACTIONS(2783), - [anon_sym___restrict__] = ACTIONS(2783), - [anon_sym__Atomic] = ACTIONS(2783), - [anon_sym__Noreturn] = ACTIONS(2783), - [anon_sym_noreturn] = ACTIONS(2783), - [anon_sym__Nonnull] = ACTIONS(2783), - [anon_sym_mutable] = ACTIONS(2783), - [anon_sym_constinit] = ACTIONS(2783), - [anon_sym_consteval] = ACTIONS(2783), - [anon_sym_alignas] = ACTIONS(2783), - [anon_sym__Alignas] = ACTIONS(2783), - [sym_primitive_type] = ACTIONS(2783), - [anon_sym_enum] = ACTIONS(2783), - [anon_sym_class] = ACTIONS(2783), - [anon_sym_struct] = ACTIONS(2783), - [anon_sym_union] = ACTIONS(2783), - [anon_sym_if] = ACTIONS(2783), - [anon_sym_switch] = ACTIONS(2783), - [anon_sym_case] = ACTIONS(2783), - [anon_sym_default] = ACTIONS(2783), - [anon_sym_while] = ACTIONS(2783), - [anon_sym_do] = ACTIONS(2783), - [anon_sym_for] = ACTIONS(2783), - [anon_sym_return] = ACTIONS(2783), - [anon_sym_break] = ACTIONS(2783), - [anon_sym_continue] = ACTIONS(2783), - [anon_sym_goto] = ACTIONS(2783), - [anon_sym_not] = ACTIONS(2783), - [anon_sym_compl] = ACTIONS(2783), - [anon_sym_DASH_DASH] = ACTIONS(2785), - [anon_sym_PLUS_PLUS] = ACTIONS(2785), - [anon_sym_sizeof] = ACTIONS(2783), - [anon_sym___alignof__] = ACTIONS(2783), - [anon_sym___alignof] = ACTIONS(2783), - [anon_sym__alignof] = ACTIONS(2783), - [anon_sym_alignof] = ACTIONS(2783), - [anon_sym__Alignof] = ACTIONS(2783), - [anon_sym_offsetof] = ACTIONS(2783), - [anon_sym__Generic] = ACTIONS(2783), - [anon_sym_asm] = ACTIONS(2783), - [anon_sym___asm__] = ACTIONS(2783), - [anon_sym___asm] = ACTIONS(2783), - [sym_number_literal] = ACTIONS(2785), - [anon_sym_L_SQUOTE] = ACTIONS(2785), - [anon_sym_u_SQUOTE] = ACTIONS(2785), - [anon_sym_U_SQUOTE] = ACTIONS(2785), - [anon_sym_u8_SQUOTE] = ACTIONS(2785), - [anon_sym_SQUOTE] = ACTIONS(2785), - [anon_sym_L_DQUOTE] = ACTIONS(2785), - [anon_sym_u_DQUOTE] = ACTIONS(2785), - [anon_sym_U_DQUOTE] = ACTIONS(2785), - [anon_sym_u8_DQUOTE] = ACTIONS(2785), - [anon_sym_DQUOTE] = ACTIONS(2785), - [sym_true] = ACTIONS(2783), - [sym_false] = ACTIONS(2783), - [anon_sym_NULL] = ACTIONS(2783), - [anon_sym_nullptr] = ACTIONS(2783), + [630] = { + [sym_identifier] = ACTIONS(2639), + [aux_sym_preproc_include_token1] = ACTIONS(2639), + [aux_sym_preproc_def_token1] = ACTIONS(2639), + [aux_sym_preproc_if_token1] = ACTIONS(2639), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2639), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2639), + [sym_preproc_directive] = ACTIONS(2639), + [anon_sym_LPAREN2] = ACTIONS(2641), + [anon_sym_BANG] = ACTIONS(2641), + [anon_sym_TILDE] = ACTIONS(2641), + [anon_sym_DASH] = ACTIONS(2639), + [anon_sym_PLUS] = ACTIONS(2639), + [anon_sym_STAR] = ACTIONS(2641), + [anon_sym_AMP_AMP] = ACTIONS(2641), + [anon_sym_AMP] = ACTIONS(2639), + [anon_sym_SEMI] = ACTIONS(2641), + [anon_sym___extension__] = ACTIONS(2639), + [anon_sym_typedef] = ACTIONS(2639), + [anon_sym_virtual] = ACTIONS(2639), + [anon_sym_extern] = ACTIONS(2639), + [anon_sym___attribute__] = ACTIONS(2639), + [anon_sym___attribute] = ACTIONS(2639), + [anon_sym_using] = ACTIONS(2639), + [anon_sym_COLON_COLON] = ACTIONS(2641), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2641), + [anon_sym___declspec] = ACTIONS(2639), + [anon_sym___based] = ACTIONS(2639), + [anon_sym___cdecl] = ACTIONS(2639), + [anon_sym___clrcall] = ACTIONS(2639), + [anon_sym___stdcall] = ACTIONS(2639), + [anon_sym___fastcall] = ACTIONS(2639), + [anon_sym___thiscall] = ACTIONS(2639), + [anon_sym___vectorcall] = ACTIONS(2639), + [anon_sym_LBRACE] = ACTIONS(2641), + [anon_sym_RBRACE] = ACTIONS(2641), + [anon_sym_signed] = ACTIONS(2639), + [anon_sym_unsigned] = ACTIONS(2639), + [anon_sym_long] = ACTIONS(2639), + [anon_sym_short] = ACTIONS(2639), + [anon_sym_LBRACK] = ACTIONS(2639), + [anon_sym_static] = ACTIONS(2639), + [anon_sym_register] = ACTIONS(2639), + [anon_sym_inline] = ACTIONS(2639), + [anon_sym___inline] = ACTIONS(2639), + [anon_sym___inline__] = ACTIONS(2639), + [anon_sym___forceinline] = ACTIONS(2639), + [anon_sym_thread_local] = ACTIONS(2639), + [anon_sym___thread] = ACTIONS(2639), + [anon_sym_const] = ACTIONS(2639), + [anon_sym_constexpr] = ACTIONS(2639), + [anon_sym_volatile] = ACTIONS(2639), + [anon_sym_restrict] = ACTIONS(2639), + [anon_sym___restrict__] = ACTIONS(2639), + [anon_sym__Atomic] = ACTIONS(2639), + [anon_sym__Noreturn] = ACTIONS(2639), + [anon_sym_noreturn] = ACTIONS(2639), + [anon_sym__Nonnull] = ACTIONS(2639), + [anon_sym_mutable] = ACTIONS(2639), + [anon_sym_constinit] = ACTIONS(2639), + [anon_sym_consteval] = ACTIONS(2639), + [anon_sym_alignas] = ACTIONS(2639), + [anon_sym__Alignas] = ACTIONS(2639), + [sym_primitive_type] = ACTIONS(2639), + [anon_sym_enum] = ACTIONS(2639), + [anon_sym_class] = ACTIONS(2639), + [anon_sym_struct] = ACTIONS(2639), + [anon_sym_union] = ACTIONS(2639), + [anon_sym_if] = ACTIONS(2639), + [anon_sym_else] = ACTIONS(2639), + [anon_sym_switch] = ACTIONS(2639), + [anon_sym_case] = ACTIONS(2639), + [anon_sym_default] = ACTIONS(2639), + [anon_sym_while] = ACTIONS(2639), + [anon_sym_do] = ACTIONS(2639), + [anon_sym_for] = ACTIONS(2639), + [anon_sym_return] = ACTIONS(2639), + [anon_sym_break] = ACTIONS(2639), + [anon_sym_continue] = ACTIONS(2639), + [anon_sym_goto] = ACTIONS(2639), + [anon_sym___try] = ACTIONS(2639), + [anon_sym___leave] = ACTIONS(2639), + [anon_sym_not] = ACTIONS(2639), + [anon_sym_compl] = ACTIONS(2639), + [anon_sym_DASH_DASH] = ACTIONS(2641), + [anon_sym_PLUS_PLUS] = ACTIONS(2641), + [anon_sym_sizeof] = ACTIONS(2639), + [anon_sym___alignof__] = ACTIONS(2639), + [anon_sym___alignof] = ACTIONS(2639), + [anon_sym__alignof] = ACTIONS(2639), + [anon_sym_alignof] = ACTIONS(2639), + [anon_sym__Alignof] = ACTIONS(2639), + [anon_sym_offsetof] = ACTIONS(2639), + [anon_sym__Generic] = ACTIONS(2639), + [anon_sym_asm] = ACTIONS(2639), + [anon_sym___asm__] = ACTIONS(2639), + [anon_sym___asm] = ACTIONS(2639), + [sym_number_literal] = ACTIONS(2641), + [anon_sym_L_SQUOTE] = ACTIONS(2641), + [anon_sym_u_SQUOTE] = ACTIONS(2641), + [anon_sym_U_SQUOTE] = ACTIONS(2641), + [anon_sym_u8_SQUOTE] = ACTIONS(2641), + [anon_sym_SQUOTE] = ACTIONS(2641), + [anon_sym_L_DQUOTE] = ACTIONS(2641), + [anon_sym_u_DQUOTE] = ACTIONS(2641), + [anon_sym_U_DQUOTE] = ACTIONS(2641), + [anon_sym_u8_DQUOTE] = ACTIONS(2641), + [anon_sym_DQUOTE] = ACTIONS(2641), + [sym_true] = ACTIONS(2639), + [sym_false] = ACTIONS(2639), + [anon_sym_NULL] = ACTIONS(2639), + [anon_sym_nullptr] = ACTIONS(2639), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2783), - [anon_sym_decltype] = ACTIONS(2783), - [anon_sym_explicit] = ACTIONS(2783), - [anon_sym_typename] = ACTIONS(2783), - [anon_sym_export] = ACTIONS(2783), - [anon_sym_module] = ACTIONS(2783), - [anon_sym_import] = ACTIONS(2783), - [anon_sym_template] = ACTIONS(2783), - [anon_sym_operator] = ACTIONS(2783), - [anon_sym_try] = ACTIONS(2783), - [anon_sym_delete] = ACTIONS(2783), - [anon_sym_throw] = ACTIONS(2783), - [anon_sym_namespace] = ACTIONS(2783), - [anon_sym_static_assert] = ACTIONS(2783), - [anon_sym_concept] = ACTIONS(2783), - [anon_sym_co_return] = ACTIONS(2783), - [anon_sym_co_yield] = ACTIONS(2783), - [anon_sym_R_DQUOTE] = ACTIONS(2785), - [anon_sym_LR_DQUOTE] = ACTIONS(2785), - [anon_sym_uR_DQUOTE] = ACTIONS(2785), - [anon_sym_UR_DQUOTE] = ACTIONS(2785), - [anon_sym_u8R_DQUOTE] = ACTIONS(2785), - [anon_sym_co_await] = ACTIONS(2783), - [anon_sym_new] = ACTIONS(2783), - [anon_sym_requires] = ACTIONS(2783), - [sym_this] = ACTIONS(2783), + [sym_auto] = ACTIONS(2639), + [anon_sym_decltype] = ACTIONS(2639), + [anon_sym_explicit] = ACTIONS(2639), + [anon_sym_typename] = ACTIONS(2639), + [anon_sym_template] = ACTIONS(2639), + [anon_sym_operator] = ACTIONS(2639), + [anon_sym_try] = ACTIONS(2639), + [anon_sym_delete] = ACTIONS(2639), + [anon_sym_throw] = ACTIONS(2639), + [anon_sym_namespace] = ACTIONS(2639), + [anon_sym_static_assert] = ACTIONS(2639), + [anon_sym_concept] = ACTIONS(2639), + [anon_sym_co_return] = ACTIONS(2639), + [anon_sym_co_yield] = ACTIONS(2639), + [anon_sym_R_DQUOTE] = ACTIONS(2641), + [anon_sym_LR_DQUOTE] = ACTIONS(2641), + [anon_sym_uR_DQUOTE] = ACTIONS(2641), + [anon_sym_UR_DQUOTE] = ACTIONS(2641), + [anon_sym_u8R_DQUOTE] = ACTIONS(2641), + [anon_sym_co_await] = ACTIONS(2639), + [anon_sym_new] = ACTIONS(2639), + [anon_sym_requires] = ACTIONS(2639), + [sym_this] = ACTIONS(2639), }, - [622] = { - [ts_builtin_sym_end] = ACTIONS(2789), - [sym_identifier] = ACTIONS(2787), - [aux_sym_preproc_include_token1] = ACTIONS(2787), - [aux_sym_preproc_def_token1] = ACTIONS(2787), - [aux_sym_preproc_if_token1] = ACTIONS(2787), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2787), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2787), - [sym_preproc_directive] = ACTIONS(2787), - [anon_sym_LPAREN2] = ACTIONS(2789), - [anon_sym_BANG] = ACTIONS(2789), - [anon_sym_TILDE] = ACTIONS(2789), - [anon_sym_DASH] = ACTIONS(2787), - [anon_sym_PLUS] = ACTIONS(2787), - [anon_sym_STAR] = ACTIONS(2789), - [anon_sym_AMP_AMP] = ACTIONS(2789), - [anon_sym_AMP] = ACTIONS(2787), - [anon_sym_SEMI] = ACTIONS(2789), - [anon_sym___extension__] = ACTIONS(2787), - [anon_sym_typedef] = ACTIONS(2787), - [anon_sym_virtual] = ACTIONS(2787), - [anon_sym_extern] = ACTIONS(2787), - [anon_sym___attribute__] = ACTIONS(2787), - [anon_sym___attribute] = ACTIONS(2787), - [anon_sym_using] = ACTIONS(2787), - [anon_sym_COLON_COLON] = ACTIONS(2789), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2789), - [anon_sym___declspec] = ACTIONS(2787), - [anon_sym___based] = ACTIONS(2787), - [anon_sym___cdecl] = ACTIONS(2787), - [anon_sym___clrcall] = ACTIONS(2787), - [anon_sym___stdcall] = ACTIONS(2787), - [anon_sym___fastcall] = ACTIONS(2787), - [anon_sym___thiscall] = ACTIONS(2787), - [anon_sym___vectorcall] = ACTIONS(2787), - [anon_sym_LBRACE] = ACTIONS(2789), - [anon_sym_signed] = ACTIONS(2787), - [anon_sym_unsigned] = ACTIONS(2787), - [anon_sym_long] = ACTIONS(2787), - [anon_sym_short] = ACTIONS(2787), - [anon_sym_LBRACK] = ACTIONS(2787), - [anon_sym_static] = ACTIONS(2787), - [anon_sym_register] = ACTIONS(2787), - [anon_sym_inline] = ACTIONS(2787), - [anon_sym___inline] = ACTIONS(2787), - [anon_sym___inline__] = ACTIONS(2787), - [anon_sym___forceinline] = ACTIONS(2787), - [anon_sym_thread_local] = ACTIONS(2787), - [anon_sym___thread] = ACTIONS(2787), - [anon_sym_const] = ACTIONS(2787), - [anon_sym_constexpr] = ACTIONS(2787), - [anon_sym_volatile] = ACTIONS(2787), - [anon_sym_restrict] = ACTIONS(2787), - [anon_sym___restrict__] = ACTIONS(2787), - [anon_sym__Atomic] = ACTIONS(2787), - [anon_sym__Noreturn] = ACTIONS(2787), - [anon_sym_noreturn] = ACTIONS(2787), - [anon_sym__Nonnull] = ACTIONS(2787), - [anon_sym_mutable] = ACTIONS(2787), - [anon_sym_constinit] = ACTIONS(2787), - [anon_sym_consteval] = ACTIONS(2787), - [anon_sym_alignas] = ACTIONS(2787), - [anon_sym__Alignas] = ACTIONS(2787), - [sym_primitive_type] = ACTIONS(2787), - [anon_sym_enum] = ACTIONS(2787), - [anon_sym_class] = ACTIONS(2787), - [anon_sym_struct] = ACTIONS(2787), - [anon_sym_union] = ACTIONS(2787), - [anon_sym_if] = ACTIONS(2787), - [anon_sym_switch] = ACTIONS(2787), - [anon_sym_case] = ACTIONS(2787), - [anon_sym_default] = ACTIONS(2787), - [anon_sym_while] = ACTIONS(2787), - [anon_sym_do] = ACTIONS(2787), - [anon_sym_for] = ACTIONS(2787), - [anon_sym_return] = ACTIONS(2787), - [anon_sym_break] = ACTIONS(2787), - [anon_sym_continue] = ACTIONS(2787), - [anon_sym_goto] = ACTIONS(2787), - [anon_sym_not] = ACTIONS(2787), - [anon_sym_compl] = ACTIONS(2787), - [anon_sym_DASH_DASH] = ACTIONS(2789), - [anon_sym_PLUS_PLUS] = ACTIONS(2789), - [anon_sym_sizeof] = ACTIONS(2787), - [anon_sym___alignof__] = ACTIONS(2787), - [anon_sym___alignof] = ACTIONS(2787), - [anon_sym__alignof] = ACTIONS(2787), - [anon_sym_alignof] = ACTIONS(2787), - [anon_sym__Alignof] = ACTIONS(2787), - [anon_sym_offsetof] = ACTIONS(2787), - [anon_sym__Generic] = ACTIONS(2787), - [anon_sym_asm] = ACTIONS(2787), - [anon_sym___asm__] = ACTIONS(2787), - [anon_sym___asm] = ACTIONS(2787), - [sym_number_literal] = ACTIONS(2789), - [anon_sym_L_SQUOTE] = ACTIONS(2789), - [anon_sym_u_SQUOTE] = ACTIONS(2789), - [anon_sym_U_SQUOTE] = ACTIONS(2789), - [anon_sym_u8_SQUOTE] = ACTIONS(2789), - [anon_sym_SQUOTE] = ACTIONS(2789), - [anon_sym_L_DQUOTE] = ACTIONS(2789), - [anon_sym_u_DQUOTE] = ACTIONS(2789), - [anon_sym_U_DQUOTE] = ACTIONS(2789), - [anon_sym_u8_DQUOTE] = ACTIONS(2789), - [anon_sym_DQUOTE] = ACTIONS(2789), - [sym_true] = ACTIONS(2787), - [sym_false] = ACTIONS(2787), - [anon_sym_NULL] = ACTIONS(2787), - [anon_sym_nullptr] = ACTIONS(2787), + [631] = { + [sym_identifier] = ACTIONS(2643), + [aux_sym_preproc_include_token1] = ACTIONS(2643), + [aux_sym_preproc_def_token1] = ACTIONS(2643), + [aux_sym_preproc_if_token1] = ACTIONS(2643), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2643), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2643), + [sym_preproc_directive] = ACTIONS(2643), + [anon_sym_LPAREN2] = ACTIONS(2645), + [anon_sym_BANG] = ACTIONS(2645), + [anon_sym_TILDE] = ACTIONS(2645), + [anon_sym_DASH] = ACTIONS(2643), + [anon_sym_PLUS] = ACTIONS(2643), + [anon_sym_STAR] = ACTIONS(2645), + [anon_sym_AMP_AMP] = ACTIONS(2645), + [anon_sym_AMP] = ACTIONS(2643), + [anon_sym_SEMI] = ACTIONS(2645), + [anon_sym___extension__] = ACTIONS(2643), + [anon_sym_typedef] = ACTIONS(2643), + [anon_sym_virtual] = ACTIONS(2643), + [anon_sym_extern] = ACTIONS(2643), + [anon_sym___attribute__] = ACTIONS(2643), + [anon_sym___attribute] = ACTIONS(2643), + [anon_sym_using] = ACTIONS(2643), + [anon_sym_COLON_COLON] = ACTIONS(2645), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2645), + [anon_sym___declspec] = ACTIONS(2643), + [anon_sym___based] = ACTIONS(2643), + [anon_sym___cdecl] = ACTIONS(2643), + [anon_sym___clrcall] = ACTIONS(2643), + [anon_sym___stdcall] = ACTIONS(2643), + [anon_sym___fastcall] = ACTIONS(2643), + [anon_sym___thiscall] = ACTIONS(2643), + [anon_sym___vectorcall] = ACTIONS(2643), + [anon_sym_LBRACE] = ACTIONS(2645), + [anon_sym_RBRACE] = ACTIONS(2645), + [anon_sym_signed] = ACTIONS(2643), + [anon_sym_unsigned] = ACTIONS(2643), + [anon_sym_long] = ACTIONS(2643), + [anon_sym_short] = ACTIONS(2643), + [anon_sym_LBRACK] = ACTIONS(2643), + [anon_sym_static] = ACTIONS(2643), + [anon_sym_register] = ACTIONS(2643), + [anon_sym_inline] = ACTIONS(2643), + [anon_sym___inline] = ACTIONS(2643), + [anon_sym___inline__] = ACTIONS(2643), + [anon_sym___forceinline] = ACTIONS(2643), + [anon_sym_thread_local] = ACTIONS(2643), + [anon_sym___thread] = ACTIONS(2643), + [anon_sym_const] = ACTIONS(2643), + [anon_sym_constexpr] = ACTIONS(2643), + [anon_sym_volatile] = ACTIONS(2643), + [anon_sym_restrict] = ACTIONS(2643), + [anon_sym___restrict__] = ACTIONS(2643), + [anon_sym__Atomic] = ACTIONS(2643), + [anon_sym__Noreturn] = ACTIONS(2643), + [anon_sym_noreturn] = ACTIONS(2643), + [anon_sym__Nonnull] = ACTIONS(2643), + [anon_sym_mutable] = ACTIONS(2643), + [anon_sym_constinit] = ACTIONS(2643), + [anon_sym_consteval] = ACTIONS(2643), + [anon_sym_alignas] = ACTIONS(2643), + [anon_sym__Alignas] = ACTIONS(2643), + [sym_primitive_type] = ACTIONS(2643), + [anon_sym_enum] = ACTIONS(2643), + [anon_sym_class] = ACTIONS(2643), + [anon_sym_struct] = ACTIONS(2643), + [anon_sym_union] = ACTIONS(2643), + [anon_sym_if] = ACTIONS(2643), + [anon_sym_else] = ACTIONS(2643), + [anon_sym_switch] = ACTIONS(2643), + [anon_sym_case] = ACTIONS(2643), + [anon_sym_default] = ACTIONS(2643), + [anon_sym_while] = ACTIONS(2643), + [anon_sym_do] = ACTIONS(2643), + [anon_sym_for] = ACTIONS(2643), + [anon_sym_return] = ACTIONS(2643), + [anon_sym_break] = ACTIONS(2643), + [anon_sym_continue] = ACTIONS(2643), + [anon_sym_goto] = ACTIONS(2643), + [anon_sym___try] = ACTIONS(2643), + [anon_sym___leave] = ACTIONS(2643), + [anon_sym_not] = ACTIONS(2643), + [anon_sym_compl] = ACTIONS(2643), + [anon_sym_DASH_DASH] = ACTIONS(2645), + [anon_sym_PLUS_PLUS] = ACTIONS(2645), + [anon_sym_sizeof] = ACTIONS(2643), + [anon_sym___alignof__] = ACTIONS(2643), + [anon_sym___alignof] = ACTIONS(2643), + [anon_sym__alignof] = ACTIONS(2643), + [anon_sym_alignof] = ACTIONS(2643), + [anon_sym__Alignof] = ACTIONS(2643), + [anon_sym_offsetof] = ACTIONS(2643), + [anon_sym__Generic] = ACTIONS(2643), + [anon_sym_asm] = ACTIONS(2643), + [anon_sym___asm__] = ACTIONS(2643), + [anon_sym___asm] = ACTIONS(2643), + [sym_number_literal] = ACTIONS(2645), + [anon_sym_L_SQUOTE] = ACTIONS(2645), + [anon_sym_u_SQUOTE] = ACTIONS(2645), + [anon_sym_U_SQUOTE] = ACTIONS(2645), + [anon_sym_u8_SQUOTE] = ACTIONS(2645), + [anon_sym_SQUOTE] = ACTIONS(2645), + [anon_sym_L_DQUOTE] = ACTIONS(2645), + [anon_sym_u_DQUOTE] = ACTIONS(2645), + [anon_sym_U_DQUOTE] = ACTIONS(2645), + [anon_sym_u8_DQUOTE] = ACTIONS(2645), + [anon_sym_DQUOTE] = ACTIONS(2645), + [sym_true] = ACTIONS(2643), + [sym_false] = ACTIONS(2643), + [anon_sym_NULL] = ACTIONS(2643), + [anon_sym_nullptr] = ACTIONS(2643), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2787), - [anon_sym_decltype] = ACTIONS(2787), - [anon_sym_explicit] = ACTIONS(2787), - [anon_sym_typename] = ACTIONS(2787), - [anon_sym_export] = ACTIONS(2787), - [anon_sym_module] = ACTIONS(2787), - [anon_sym_import] = ACTIONS(2787), - [anon_sym_template] = ACTIONS(2787), - [anon_sym_operator] = ACTIONS(2787), - [anon_sym_try] = ACTIONS(2787), - [anon_sym_delete] = ACTIONS(2787), - [anon_sym_throw] = ACTIONS(2787), - [anon_sym_namespace] = ACTIONS(2787), - [anon_sym_static_assert] = ACTIONS(2787), - [anon_sym_concept] = ACTIONS(2787), - [anon_sym_co_return] = ACTIONS(2787), - [anon_sym_co_yield] = ACTIONS(2787), - [anon_sym_R_DQUOTE] = ACTIONS(2789), - [anon_sym_LR_DQUOTE] = ACTIONS(2789), - [anon_sym_uR_DQUOTE] = ACTIONS(2789), - [anon_sym_UR_DQUOTE] = ACTIONS(2789), - [anon_sym_u8R_DQUOTE] = ACTIONS(2789), - [anon_sym_co_await] = ACTIONS(2787), - [anon_sym_new] = ACTIONS(2787), - [anon_sym_requires] = ACTIONS(2787), - [sym_this] = ACTIONS(2787), + [sym_auto] = ACTIONS(2643), + [anon_sym_decltype] = ACTIONS(2643), + [anon_sym_explicit] = ACTIONS(2643), + [anon_sym_typename] = ACTIONS(2643), + [anon_sym_template] = ACTIONS(2643), + [anon_sym_operator] = ACTIONS(2643), + [anon_sym_try] = ACTIONS(2643), + [anon_sym_delete] = ACTIONS(2643), + [anon_sym_throw] = ACTIONS(2643), + [anon_sym_namespace] = ACTIONS(2643), + [anon_sym_static_assert] = ACTIONS(2643), + [anon_sym_concept] = ACTIONS(2643), + [anon_sym_co_return] = ACTIONS(2643), + [anon_sym_co_yield] = ACTIONS(2643), + [anon_sym_R_DQUOTE] = ACTIONS(2645), + [anon_sym_LR_DQUOTE] = ACTIONS(2645), + [anon_sym_uR_DQUOTE] = ACTIONS(2645), + [anon_sym_UR_DQUOTE] = ACTIONS(2645), + [anon_sym_u8R_DQUOTE] = ACTIONS(2645), + [anon_sym_co_await] = ACTIONS(2643), + [anon_sym_new] = ACTIONS(2643), + [anon_sym_requires] = ACTIONS(2643), + [sym_this] = ACTIONS(2643), }, - [623] = { - [ts_builtin_sym_end] = ACTIONS(2917), - [sym_identifier] = ACTIONS(2915), - [aux_sym_preproc_include_token1] = ACTIONS(2915), - [aux_sym_preproc_def_token1] = ACTIONS(2915), - [aux_sym_preproc_if_token1] = ACTIONS(2915), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2915), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2915), - [sym_preproc_directive] = ACTIONS(2915), - [anon_sym_LPAREN2] = ACTIONS(2917), - [anon_sym_BANG] = ACTIONS(2917), - [anon_sym_TILDE] = ACTIONS(2917), - [anon_sym_DASH] = ACTIONS(2915), - [anon_sym_PLUS] = ACTIONS(2915), - [anon_sym_STAR] = ACTIONS(2917), - [anon_sym_AMP_AMP] = ACTIONS(2917), - [anon_sym_AMP] = ACTIONS(2915), - [anon_sym_SEMI] = ACTIONS(2917), - [anon_sym___extension__] = ACTIONS(2915), - [anon_sym_typedef] = ACTIONS(2915), - [anon_sym_virtual] = ACTIONS(2915), - [anon_sym_extern] = ACTIONS(2915), - [anon_sym___attribute__] = ACTIONS(2915), - [anon_sym___attribute] = ACTIONS(2915), - [anon_sym_using] = ACTIONS(2915), - [anon_sym_COLON_COLON] = ACTIONS(2917), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2917), - [anon_sym___declspec] = ACTIONS(2915), - [anon_sym___based] = ACTIONS(2915), - [anon_sym___cdecl] = ACTIONS(2915), - [anon_sym___clrcall] = ACTIONS(2915), - [anon_sym___stdcall] = ACTIONS(2915), - [anon_sym___fastcall] = ACTIONS(2915), - [anon_sym___thiscall] = ACTIONS(2915), - [anon_sym___vectorcall] = ACTIONS(2915), - [anon_sym_LBRACE] = ACTIONS(2917), - [anon_sym_signed] = ACTIONS(2915), - [anon_sym_unsigned] = ACTIONS(2915), - [anon_sym_long] = ACTIONS(2915), - [anon_sym_short] = ACTIONS(2915), - [anon_sym_LBRACK] = ACTIONS(2915), - [anon_sym_static] = ACTIONS(2915), - [anon_sym_register] = ACTIONS(2915), - [anon_sym_inline] = ACTIONS(2915), - [anon_sym___inline] = ACTIONS(2915), - [anon_sym___inline__] = ACTIONS(2915), - [anon_sym___forceinline] = ACTIONS(2915), - [anon_sym_thread_local] = ACTIONS(2915), - [anon_sym___thread] = ACTIONS(2915), - [anon_sym_const] = ACTIONS(2915), - [anon_sym_constexpr] = ACTIONS(2915), - [anon_sym_volatile] = ACTIONS(2915), - [anon_sym_restrict] = ACTIONS(2915), - [anon_sym___restrict__] = ACTIONS(2915), - [anon_sym__Atomic] = ACTIONS(2915), - [anon_sym__Noreturn] = ACTIONS(2915), - [anon_sym_noreturn] = ACTIONS(2915), - [anon_sym__Nonnull] = ACTIONS(2915), - [anon_sym_mutable] = ACTIONS(2915), - [anon_sym_constinit] = ACTIONS(2915), - [anon_sym_consteval] = ACTIONS(2915), - [anon_sym_alignas] = ACTIONS(2915), - [anon_sym__Alignas] = ACTIONS(2915), - [sym_primitive_type] = ACTIONS(2915), - [anon_sym_enum] = ACTIONS(2915), - [anon_sym_class] = ACTIONS(2915), - [anon_sym_struct] = ACTIONS(2915), - [anon_sym_union] = ACTIONS(2915), - [anon_sym_if] = ACTIONS(2915), - [anon_sym_switch] = ACTIONS(2915), - [anon_sym_case] = ACTIONS(2915), - [anon_sym_default] = ACTIONS(2915), - [anon_sym_while] = ACTIONS(2915), - [anon_sym_do] = ACTIONS(2915), - [anon_sym_for] = ACTIONS(2915), - [anon_sym_return] = ACTIONS(2915), - [anon_sym_break] = ACTIONS(2915), - [anon_sym_continue] = ACTIONS(2915), - [anon_sym_goto] = ACTIONS(2915), - [anon_sym_not] = ACTIONS(2915), - [anon_sym_compl] = ACTIONS(2915), - [anon_sym_DASH_DASH] = ACTIONS(2917), - [anon_sym_PLUS_PLUS] = ACTIONS(2917), - [anon_sym_sizeof] = ACTIONS(2915), - [anon_sym___alignof__] = ACTIONS(2915), - [anon_sym___alignof] = ACTIONS(2915), - [anon_sym__alignof] = ACTIONS(2915), - [anon_sym_alignof] = ACTIONS(2915), - [anon_sym__Alignof] = ACTIONS(2915), - [anon_sym_offsetof] = ACTIONS(2915), - [anon_sym__Generic] = ACTIONS(2915), - [anon_sym_asm] = ACTIONS(2915), - [anon_sym___asm__] = ACTIONS(2915), - [anon_sym___asm] = ACTIONS(2915), - [sym_number_literal] = ACTIONS(2917), - [anon_sym_L_SQUOTE] = ACTIONS(2917), - [anon_sym_u_SQUOTE] = ACTIONS(2917), - [anon_sym_U_SQUOTE] = ACTIONS(2917), - [anon_sym_u8_SQUOTE] = ACTIONS(2917), - [anon_sym_SQUOTE] = ACTIONS(2917), - [anon_sym_L_DQUOTE] = ACTIONS(2917), - [anon_sym_u_DQUOTE] = ACTIONS(2917), - [anon_sym_U_DQUOTE] = ACTIONS(2917), - [anon_sym_u8_DQUOTE] = ACTIONS(2917), - [anon_sym_DQUOTE] = ACTIONS(2917), - [sym_true] = ACTIONS(2915), - [sym_false] = ACTIONS(2915), - [anon_sym_NULL] = ACTIONS(2915), - [anon_sym_nullptr] = ACTIONS(2915), + [632] = { + [sym_identifier] = ACTIONS(2743), + [aux_sym_preproc_include_token1] = ACTIONS(2743), + [aux_sym_preproc_def_token1] = ACTIONS(2743), + [aux_sym_preproc_if_token1] = ACTIONS(2743), + [aux_sym_preproc_if_token2] = ACTIONS(2743), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2743), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2743), + [sym_preproc_directive] = ACTIONS(2743), + [anon_sym_LPAREN2] = ACTIONS(2745), + [anon_sym_BANG] = ACTIONS(2745), + [anon_sym_TILDE] = ACTIONS(2745), + [anon_sym_DASH] = ACTIONS(2743), + [anon_sym_PLUS] = ACTIONS(2743), + [anon_sym_STAR] = ACTIONS(2745), + [anon_sym_AMP_AMP] = ACTIONS(2745), + [anon_sym_AMP] = ACTIONS(2743), + [anon_sym_SEMI] = ACTIONS(2745), + [anon_sym___extension__] = ACTIONS(2743), + [anon_sym_typedef] = ACTIONS(2743), + [anon_sym_virtual] = ACTIONS(2743), + [anon_sym_extern] = ACTIONS(2743), + [anon_sym___attribute__] = ACTIONS(2743), + [anon_sym___attribute] = ACTIONS(2743), + [anon_sym_using] = ACTIONS(2743), + [anon_sym_COLON_COLON] = ACTIONS(2745), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2745), + [anon_sym___declspec] = ACTIONS(2743), + [anon_sym___based] = ACTIONS(2743), + [anon_sym___cdecl] = ACTIONS(2743), + [anon_sym___clrcall] = ACTIONS(2743), + [anon_sym___stdcall] = ACTIONS(2743), + [anon_sym___fastcall] = ACTIONS(2743), + [anon_sym___thiscall] = ACTIONS(2743), + [anon_sym___vectorcall] = ACTIONS(2743), + [anon_sym_LBRACE] = ACTIONS(2745), + [anon_sym_signed] = ACTIONS(2743), + [anon_sym_unsigned] = ACTIONS(2743), + [anon_sym_long] = ACTIONS(2743), + [anon_sym_short] = ACTIONS(2743), + [anon_sym_LBRACK] = ACTIONS(2743), + [anon_sym_static] = ACTIONS(2743), + [anon_sym_register] = ACTIONS(2743), + [anon_sym_inline] = ACTIONS(2743), + [anon_sym___inline] = ACTIONS(2743), + [anon_sym___inline__] = ACTIONS(2743), + [anon_sym___forceinline] = ACTIONS(2743), + [anon_sym_thread_local] = ACTIONS(2743), + [anon_sym___thread] = ACTIONS(2743), + [anon_sym_const] = ACTIONS(2743), + [anon_sym_constexpr] = ACTIONS(2743), + [anon_sym_volatile] = ACTIONS(2743), + [anon_sym_restrict] = ACTIONS(2743), + [anon_sym___restrict__] = ACTIONS(2743), + [anon_sym__Atomic] = ACTIONS(2743), + [anon_sym__Noreturn] = ACTIONS(2743), + [anon_sym_noreturn] = ACTIONS(2743), + [anon_sym__Nonnull] = ACTIONS(2743), + [anon_sym_mutable] = ACTIONS(2743), + [anon_sym_constinit] = ACTIONS(2743), + [anon_sym_consteval] = ACTIONS(2743), + [anon_sym_alignas] = ACTIONS(2743), + [anon_sym__Alignas] = ACTIONS(2743), + [sym_primitive_type] = ACTIONS(2743), + [anon_sym_enum] = ACTIONS(2743), + [anon_sym_class] = ACTIONS(2743), + [anon_sym_struct] = ACTIONS(2743), + [anon_sym_union] = ACTIONS(2743), + [anon_sym_if] = ACTIONS(2743), + [anon_sym_else] = ACTIONS(2743), + [anon_sym_switch] = ACTIONS(2743), + [anon_sym_case] = ACTIONS(2743), + [anon_sym_default] = ACTIONS(2743), + [anon_sym_while] = ACTIONS(2743), + [anon_sym_do] = ACTIONS(2743), + [anon_sym_for] = ACTIONS(2743), + [anon_sym_return] = ACTIONS(2743), + [anon_sym_break] = ACTIONS(2743), + [anon_sym_continue] = ACTIONS(2743), + [anon_sym_goto] = ACTIONS(2743), + [anon_sym___try] = ACTIONS(2743), + [anon_sym___leave] = ACTIONS(2743), + [anon_sym_not] = ACTIONS(2743), + [anon_sym_compl] = ACTIONS(2743), + [anon_sym_DASH_DASH] = ACTIONS(2745), + [anon_sym_PLUS_PLUS] = ACTIONS(2745), + [anon_sym_sizeof] = ACTIONS(2743), + [anon_sym___alignof__] = ACTIONS(2743), + [anon_sym___alignof] = ACTIONS(2743), + [anon_sym__alignof] = ACTIONS(2743), + [anon_sym_alignof] = ACTIONS(2743), + [anon_sym__Alignof] = ACTIONS(2743), + [anon_sym_offsetof] = ACTIONS(2743), + [anon_sym__Generic] = ACTIONS(2743), + [anon_sym_asm] = ACTIONS(2743), + [anon_sym___asm__] = ACTIONS(2743), + [anon_sym___asm] = ACTIONS(2743), + [sym_number_literal] = ACTIONS(2745), + [anon_sym_L_SQUOTE] = ACTIONS(2745), + [anon_sym_u_SQUOTE] = ACTIONS(2745), + [anon_sym_U_SQUOTE] = ACTIONS(2745), + [anon_sym_u8_SQUOTE] = ACTIONS(2745), + [anon_sym_SQUOTE] = ACTIONS(2745), + [anon_sym_L_DQUOTE] = ACTIONS(2745), + [anon_sym_u_DQUOTE] = ACTIONS(2745), + [anon_sym_U_DQUOTE] = ACTIONS(2745), + [anon_sym_u8_DQUOTE] = ACTIONS(2745), + [anon_sym_DQUOTE] = ACTIONS(2745), + [sym_true] = ACTIONS(2743), + [sym_false] = ACTIONS(2743), + [anon_sym_NULL] = ACTIONS(2743), + [anon_sym_nullptr] = ACTIONS(2743), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2915), - [anon_sym_decltype] = ACTIONS(2915), - [anon_sym_explicit] = ACTIONS(2915), - [anon_sym_typename] = ACTIONS(2915), - [anon_sym_export] = ACTIONS(2915), - [anon_sym_module] = ACTIONS(2915), - [anon_sym_import] = ACTIONS(2915), - [anon_sym_template] = ACTIONS(2915), - [anon_sym_operator] = ACTIONS(2915), - [anon_sym_try] = ACTIONS(2915), - [anon_sym_delete] = ACTIONS(2915), - [anon_sym_throw] = ACTIONS(2915), - [anon_sym_namespace] = ACTIONS(2915), - [anon_sym_static_assert] = ACTIONS(2915), - [anon_sym_concept] = ACTIONS(2915), - [anon_sym_co_return] = ACTIONS(2915), - [anon_sym_co_yield] = ACTIONS(2915), - [anon_sym_R_DQUOTE] = ACTIONS(2917), - [anon_sym_LR_DQUOTE] = ACTIONS(2917), - [anon_sym_uR_DQUOTE] = ACTIONS(2917), - [anon_sym_UR_DQUOTE] = ACTIONS(2917), - [anon_sym_u8R_DQUOTE] = ACTIONS(2917), - [anon_sym_co_await] = ACTIONS(2915), - [anon_sym_new] = ACTIONS(2915), - [anon_sym_requires] = ACTIONS(2915), - [sym_this] = ACTIONS(2915), + [sym_auto] = ACTIONS(2743), + [anon_sym_decltype] = ACTIONS(2743), + [anon_sym_explicit] = ACTIONS(2743), + [anon_sym_typename] = ACTIONS(2743), + [anon_sym_template] = ACTIONS(2743), + [anon_sym_operator] = ACTIONS(2743), + [anon_sym_try] = ACTIONS(2743), + [anon_sym_delete] = ACTIONS(2743), + [anon_sym_throw] = ACTIONS(2743), + [anon_sym_namespace] = ACTIONS(2743), + [anon_sym_static_assert] = ACTIONS(2743), + [anon_sym_concept] = ACTIONS(2743), + [anon_sym_co_return] = ACTIONS(2743), + [anon_sym_co_yield] = ACTIONS(2743), + [anon_sym_R_DQUOTE] = ACTIONS(2745), + [anon_sym_LR_DQUOTE] = ACTIONS(2745), + [anon_sym_uR_DQUOTE] = ACTIONS(2745), + [anon_sym_UR_DQUOTE] = ACTIONS(2745), + [anon_sym_u8R_DQUOTE] = ACTIONS(2745), + [anon_sym_co_await] = ACTIONS(2743), + [anon_sym_new] = ACTIONS(2743), + [anon_sym_requires] = ACTIONS(2743), + [sym_this] = ACTIONS(2743), }, - [624] = { - [ts_builtin_sym_end] = ACTIONS(2917), - [sym_identifier] = ACTIONS(2915), - [aux_sym_preproc_include_token1] = ACTIONS(2915), - [aux_sym_preproc_def_token1] = ACTIONS(2915), - [aux_sym_preproc_if_token1] = ACTIONS(2915), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2915), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2915), - [sym_preproc_directive] = ACTIONS(2915), - [anon_sym_LPAREN2] = ACTIONS(2917), - [anon_sym_BANG] = ACTIONS(2917), - [anon_sym_TILDE] = ACTIONS(2917), - [anon_sym_DASH] = ACTIONS(2915), - [anon_sym_PLUS] = ACTIONS(2915), - [anon_sym_STAR] = ACTIONS(2917), - [anon_sym_AMP_AMP] = ACTIONS(2917), - [anon_sym_AMP] = ACTIONS(2915), - [anon_sym_SEMI] = ACTIONS(2917), - [anon_sym___extension__] = ACTIONS(2915), - [anon_sym_typedef] = ACTIONS(2915), - [anon_sym_virtual] = ACTIONS(2915), - [anon_sym_extern] = ACTIONS(2915), - [anon_sym___attribute__] = ACTIONS(2915), - [anon_sym___attribute] = ACTIONS(2915), - [anon_sym_using] = ACTIONS(2915), - [anon_sym_COLON_COLON] = ACTIONS(2917), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2917), - [anon_sym___declspec] = ACTIONS(2915), - [anon_sym___based] = ACTIONS(2915), - [anon_sym___cdecl] = ACTIONS(2915), - [anon_sym___clrcall] = ACTIONS(2915), - [anon_sym___stdcall] = ACTIONS(2915), - [anon_sym___fastcall] = ACTIONS(2915), - [anon_sym___thiscall] = ACTIONS(2915), - [anon_sym___vectorcall] = ACTIONS(2915), - [anon_sym_LBRACE] = ACTIONS(2917), - [anon_sym_signed] = ACTIONS(2915), - [anon_sym_unsigned] = ACTIONS(2915), - [anon_sym_long] = ACTIONS(2915), - [anon_sym_short] = ACTIONS(2915), - [anon_sym_LBRACK] = ACTIONS(2915), - [anon_sym_static] = ACTIONS(2915), - [anon_sym_register] = ACTIONS(2915), - [anon_sym_inline] = ACTIONS(2915), - [anon_sym___inline] = ACTIONS(2915), - [anon_sym___inline__] = ACTIONS(2915), - [anon_sym___forceinline] = ACTIONS(2915), - [anon_sym_thread_local] = ACTIONS(2915), - [anon_sym___thread] = ACTIONS(2915), - [anon_sym_const] = ACTIONS(2915), - [anon_sym_constexpr] = ACTIONS(2915), - [anon_sym_volatile] = ACTIONS(2915), - [anon_sym_restrict] = ACTIONS(2915), - [anon_sym___restrict__] = ACTIONS(2915), - [anon_sym__Atomic] = ACTIONS(2915), - [anon_sym__Noreturn] = ACTIONS(2915), - [anon_sym_noreturn] = ACTIONS(2915), - [anon_sym__Nonnull] = ACTIONS(2915), - [anon_sym_mutable] = ACTIONS(2915), - [anon_sym_constinit] = ACTIONS(2915), - [anon_sym_consteval] = ACTIONS(2915), - [anon_sym_alignas] = ACTIONS(2915), - [anon_sym__Alignas] = ACTIONS(2915), - [sym_primitive_type] = ACTIONS(2915), - [anon_sym_enum] = ACTIONS(2915), - [anon_sym_class] = ACTIONS(2915), - [anon_sym_struct] = ACTIONS(2915), - [anon_sym_union] = ACTIONS(2915), - [anon_sym_if] = ACTIONS(2915), - [anon_sym_switch] = ACTIONS(2915), - [anon_sym_case] = ACTIONS(2915), - [anon_sym_default] = ACTIONS(2915), - [anon_sym_while] = ACTIONS(2915), - [anon_sym_do] = ACTIONS(2915), - [anon_sym_for] = ACTIONS(2915), - [anon_sym_return] = ACTIONS(2915), - [anon_sym_break] = ACTIONS(2915), - [anon_sym_continue] = ACTIONS(2915), - [anon_sym_goto] = ACTIONS(2915), - [anon_sym_not] = ACTIONS(2915), - [anon_sym_compl] = ACTIONS(2915), - [anon_sym_DASH_DASH] = ACTIONS(2917), - [anon_sym_PLUS_PLUS] = ACTIONS(2917), - [anon_sym_sizeof] = ACTIONS(2915), - [anon_sym___alignof__] = ACTIONS(2915), - [anon_sym___alignof] = ACTIONS(2915), - [anon_sym__alignof] = ACTIONS(2915), - [anon_sym_alignof] = ACTIONS(2915), - [anon_sym__Alignof] = ACTIONS(2915), - [anon_sym_offsetof] = ACTIONS(2915), - [anon_sym__Generic] = ACTIONS(2915), - [anon_sym_asm] = ACTIONS(2915), - [anon_sym___asm__] = ACTIONS(2915), - [anon_sym___asm] = ACTIONS(2915), - [sym_number_literal] = ACTIONS(2917), - [anon_sym_L_SQUOTE] = ACTIONS(2917), - [anon_sym_u_SQUOTE] = ACTIONS(2917), - [anon_sym_U_SQUOTE] = ACTIONS(2917), - [anon_sym_u8_SQUOTE] = ACTIONS(2917), - [anon_sym_SQUOTE] = ACTIONS(2917), - [anon_sym_L_DQUOTE] = ACTIONS(2917), - [anon_sym_u_DQUOTE] = ACTIONS(2917), - [anon_sym_U_DQUOTE] = ACTIONS(2917), - [anon_sym_u8_DQUOTE] = ACTIONS(2917), - [anon_sym_DQUOTE] = ACTIONS(2917), - [sym_true] = ACTIONS(2915), - [sym_false] = ACTIONS(2915), - [anon_sym_NULL] = ACTIONS(2915), - [anon_sym_nullptr] = ACTIONS(2915), + [633] = { + [ts_builtin_sym_end] = ACTIONS(2797), + [sym_identifier] = ACTIONS(2795), + [aux_sym_preproc_include_token1] = ACTIONS(2795), + [aux_sym_preproc_def_token1] = ACTIONS(2795), + [aux_sym_preproc_if_token1] = ACTIONS(2795), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2795), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2795), + [sym_preproc_directive] = ACTIONS(2795), + [anon_sym_LPAREN2] = ACTIONS(2797), + [anon_sym_BANG] = ACTIONS(2797), + [anon_sym_TILDE] = ACTIONS(2797), + [anon_sym_DASH] = ACTIONS(2795), + [anon_sym_PLUS] = ACTIONS(2795), + [anon_sym_STAR] = ACTIONS(2797), + [anon_sym_AMP_AMP] = ACTIONS(2797), + [anon_sym_AMP] = ACTIONS(2795), + [anon_sym_SEMI] = ACTIONS(2797), + [anon_sym___extension__] = ACTIONS(2795), + [anon_sym_typedef] = ACTIONS(2795), + [anon_sym_virtual] = ACTIONS(2795), + [anon_sym_extern] = ACTIONS(2795), + [anon_sym___attribute__] = ACTIONS(2795), + [anon_sym___attribute] = ACTIONS(2795), + [anon_sym_using] = ACTIONS(2795), + [anon_sym_COLON_COLON] = ACTIONS(2797), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2797), + [anon_sym___declspec] = ACTIONS(2795), + [anon_sym___based] = ACTIONS(2795), + [anon_sym___cdecl] = ACTIONS(2795), + [anon_sym___clrcall] = ACTIONS(2795), + [anon_sym___stdcall] = ACTIONS(2795), + [anon_sym___fastcall] = ACTIONS(2795), + [anon_sym___thiscall] = ACTIONS(2795), + [anon_sym___vectorcall] = ACTIONS(2795), + [anon_sym_LBRACE] = ACTIONS(2797), + [anon_sym_signed] = ACTIONS(2795), + [anon_sym_unsigned] = ACTIONS(2795), + [anon_sym_long] = ACTIONS(2795), + [anon_sym_short] = ACTIONS(2795), + [anon_sym_LBRACK] = ACTIONS(2795), + [anon_sym_static] = ACTIONS(2795), + [anon_sym_register] = ACTIONS(2795), + [anon_sym_inline] = ACTIONS(2795), + [anon_sym___inline] = ACTIONS(2795), + [anon_sym___inline__] = ACTIONS(2795), + [anon_sym___forceinline] = ACTIONS(2795), + [anon_sym_thread_local] = ACTIONS(2795), + [anon_sym___thread] = ACTIONS(2795), + [anon_sym_const] = ACTIONS(2795), + [anon_sym_constexpr] = ACTIONS(2795), + [anon_sym_volatile] = ACTIONS(2795), + [anon_sym_restrict] = ACTIONS(2795), + [anon_sym___restrict__] = ACTIONS(2795), + [anon_sym__Atomic] = ACTIONS(2795), + [anon_sym__Noreturn] = ACTIONS(2795), + [anon_sym_noreturn] = ACTIONS(2795), + [anon_sym__Nonnull] = ACTIONS(2795), + [anon_sym_mutable] = ACTIONS(2795), + [anon_sym_constinit] = ACTIONS(2795), + [anon_sym_consteval] = ACTIONS(2795), + [anon_sym_alignas] = ACTIONS(2795), + [anon_sym__Alignas] = ACTIONS(2795), + [sym_primitive_type] = ACTIONS(2795), + [anon_sym_enum] = ACTIONS(2795), + [anon_sym_class] = ACTIONS(2795), + [anon_sym_struct] = ACTIONS(2795), + [anon_sym_union] = ACTIONS(2795), + [anon_sym_if] = ACTIONS(2795), + [anon_sym_switch] = ACTIONS(2795), + [anon_sym_case] = ACTIONS(2795), + [anon_sym_default] = ACTIONS(2795), + [anon_sym_while] = ACTIONS(2795), + [anon_sym_do] = ACTIONS(2795), + [anon_sym_for] = ACTIONS(2795), + [anon_sym_return] = ACTIONS(2795), + [anon_sym_break] = ACTIONS(2795), + [anon_sym_continue] = ACTIONS(2795), + [anon_sym_goto] = ACTIONS(2795), + [anon_sym_not] = ACTIONS(2795), + [anon_sym_compl] = ACTIONS(2795), + [anon_sym_DASH_DASH] = ACTIONS(2797), + [anon_sym_PLUS_PLUS] = ACTIONS(2797), + [anon_sym_sizeof] = ACTIONS(2795), + [anon_sym___alignof__] = ACTIONS(2795), + [anon_sym___alignof] = ACTIONS(2795), + [anon_sym__alignof] = ACTIONS(2795), + [anon_sym_alignof] = ACTIONS(2795), + [anon_sym__Alignof] = ACTIONS(2795), + [anon_sym_offsetof] = ACTIONS(2795), + [anon_sym__Generic] = ACTIONS(2795), + [anon_sym_asm] = ACTIONS(2795), + [anon_sym___asm__] = ACTIONS(2795), + [anon_sym___asm] = ACTIONS(2795), + [sym_number_literal] = ACTIONS(2797), + [anon_sym_L_SQUOTE] = ACTIONS(2797), + [anon_sym_u_SQUOTE] = ACTIONS(2797), + [anon_sym_U_SQUOTE] = ACTIONS(2797), + [anon_sym_u8_SQUOTE] = ACTIONS(2797), + [anon_sym_SQUOTE] = ACTIONS(2797), + [anon_sym_L_DQUOTE] = ACTIONS(2797), + [anon_sym_u_DQUOTE] = ACTIONS(2797), + [anon_sym_U_DQUOTE] = ACTIONS(2797), + [anon_sym_u8_DQUOTE] = ACTIONS(2797), + [anon_sym_DQUOTE] = ACTIONS(2797), + [sym_true] = ACTIONS(2795), + [sym_false] = ACTIONS(2795), + [anon_sym_NULL] = ACTIONS(2795), + [anon_sym_nullptr] = ACTIONS(2795), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2915), - [anon_sym_decltype] = ACTIONS(2915), - [anon_sym_explicit] = ACTIONS(2915), - [anon_sym_typename] = ACTIONS(2915), - [anon_sym_export] = ACTIONS(2915), - [anon_sym_module] = ACTIONS(2915), - [anon_sym_import] = ACTIONS(2915), - [anon_sym_template] = ACTIONS(2915), - [anon_sym_operator] = ACTIONS(2915), - [anon_sym_try] = ACTIONS(2915), - [anon_sym_delete] = ACTIONS(2915), - [anon_sym_throw] = ACTIONS(2915), - [anon_sym_namespace] = ACTIONS(2915), - [anon_sym_static_assert] = ACTIONS(2915), - [anon_sym_concept] = ACTIONS(2915), - [anon_sym_co_return] = ACTIONS(2915), - [anon_sym_co_yield] = ACTIONS(2915), - [anon_sym_R_DQUOTE] = ACTIONS(2917), - [anon_sym_LR_DQUOTE] = ACTIONS(2917), - [anon_sym_uR_DQUOTE] = ACTIONS(2917), - [anon_sym_UR_DQUOTE] = ACTIONS(2917), - [anon_sym_u8R_DQUOTE] = ACTIONS(2917), - [anon_sym_co_await] = ACTIONS(2915), - [anon_sym_new] = ACTIONS(2915), - [anon_sym_requires] = ACTIONS(2915), - [sym_this] = ACTIONS(2915), + [sym_auto] = ACTIONS(2795), + [anon_sym_decltype] = ACTIONS(2795), + [anon_sym_explicit] = ACTIONS(2795), + [anon_sym_typename] = ACTIONS(2795), + [anon_sym_export] = ACTIONS(2795), + [anon_sym_module] = ACTIONS(2795), + [anon_sym_import] = ACTIONS(2795), + [anon_sym_template] = ACTIONS(2795), + [anon_sym_operator] = ACTIONS(2795), + [anon_sym_try] = ACTIONS(2795), + [anon_sym_delete] = ACTIONS(2795), + [anon_sym_throw] = ACTIONS(2795), + [anon_sym_namespace] = ACTIONS(2795), + [anon_sym_static_assert] = ACTIONS(2795), + [anon_sym_concept] = ACTIONS(2795), + [anon_sym_co_return] = ACTIONS(2795), + [anon_sym_co_yield] = ACTIONS(2795), + [anon_sym_R_DQUOTE] = ACTIONS(2797), + [anon_sym_LR_DQUOTE] = ACTIONS(2797), + [anon_sym_uR_DQUOTE] = ACTIONS(2797), + [anon_sym_UR_DQUOTE] = ACTIONS(2797), + [anon_sym_u8R_DQUOTE] = ACTIONS(2797), + [anon_sym_co_await] = ACTIONS(2795), + [anon_sym_new] = ACTIONS(2795), + [anon_sym_requires] = ACTIONS(2795), + [sym_this] = ACTIONS(2795), }, - [625] = { - [ts_builtin_sym_end] = ACTIONS(3583), - [sym_identifier] = ACTIONS(3585), - [aux_sym_preproc_include_token1] = ACTIONS(3585), - [aux_sym_preproc_def_token1] = ACTIONS(3585), - [aux_sym_preproc_if_token1] = ACTIONS(3585), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3585), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3585), - [sym_preproc_directive] = ACTIONS(3585), - [anon_sym_LPAREN2] = ACTIONS(3583), - [anon_sym_BANG] = ACTIONS(3583), - [anon_sym_TILDE] = ACTIONS(3583), - [anon_sym_DASH] = ACTIONS(3585), - [anon_sym_PLUS] = ACTIONS(3585), - [anon_sym_STAR] = ACTIONS(3583), - [anon_sym_AMP_AMP] = ACTIONS(3583), - [anon_sym_AMP] = ACTIONS(3585), - [anon_sym_SEMI] = ACTIONS(3583), - [anon_sym___extension__] = ACTIONS(3585), - [anon_sym_typedef] = ACTIONS(3585), - [anon_sym_virtual] = ACTIONS(3585), - [anon_sym_extern] = ACTIONS(3585), - [anon_sym___attribute__] = ACTIONS(3585), - [anon_sym___attribute] = ACTIONS(3585), - [anon_sym_using] = ACTIONS(3585), - [anon_sym_COLON_COLON] = ACTIONS(3583), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3583), - [anon_sym___declspec] = ACTIONS(3585), - [anon_sym___based] = ACTIONS(3585), - [anon_sym___cdecl] = ACTIONS(3585), - [anon_sym___clrcall] = ACTIONS(3585), - [anon_sym___stdcall] = ACTIONS(3585), - [anon_sym___fastcall] = ACTIONS(3585), - [anon_sym___thiscall] = ACTIONS(3585), - [anon_sym___vectorcall] = ACTIONS(3585), - [anon_sym_LBRACE] = ACTIONS(3583), - [anon_sym_signed] = ACTIONS(3585), - [anon_sym_unsigned] = ACTIONS(3585), - [anon_sym_long] = ACTIONS(3585), - [anon_sym_short] = ACTIONS(3585), - [anon_sym_LBRACK] = ACTIONS(3585), - [anon_sym_static] = ACTIONS(3585), - [anon_sym_register] = ACTIONS(3585), - [anon_sym_inline] = ACTIONS(3585), - [anon_sym___inline] = ACTIONS(3585), - [anon_sym___inline__] = ACTIONS(3585), - [anon_sym___forceinline] = ACTIONS(3585), - [anon_sym_thread_local] = ACTIONS(3585), - [anon_sym___thread] = ACTIONS(3585), - [anon_sym_const] = ACTIONS(3585), - [anon_sym_constexpr] = ACTIONS(3585), - [anon_sym_volatile] = ACTIONS(3585), - [anon_sym_restrict] = ACTIONS(3585), - [anon_sym___restrict__] = ACTIONS(3585), - [anon_sym__Atomic] = ACTIONS(3585), - [anon_sym__Noreturn] = ACTIONS(3585), - [anon_sym_noreturn] = ACTIONS(3585), - [anon_sym__Nonnull] = ACTIONS(3585), - [anon_sym_mutable] = ACTIONS(3585), - [anon_sym_constinit] = ACTIONS(3585), - [anon_sym_consteval] = ACTIONS(3585), - [anon_sym_alignas] = ACTIONS(3585), - [anon_sym__Alignas] = ACTIONS(3585), - [sym_primitive_type] = ACTIONS(3585), - [anon_sym_enum] = ACTIONS(3585), - [anon_sym_class] = ACTIONS(3585), - [anon_sym_struct] = ACTIONS(3585), - [anon_sym_union] = ACTIONS(3585), - [anon_sym_if] = ACTIONS(3585), - [anon_sym_switch] = ACTIONS(3585), - [anon_sym_case] = ACTIONS(3585), - [anon_sym_default] = ACTIONS(3585), - [anon_sym_while] = ACTIONS(3585), - [anon_sym_do] = ACTIONS(3585), - [anon_sym_for] = ACTIONS(3585), - [anon_sym_return] = ACTIONS(3585), - [anon_sym_break] = ACTIONS(3585), - [anon_sym_continue] = ACTIONS(3585), - [anon_sym_goto] = ACTIONS(3585), - [anon_sym_not] = ACTIONS(3585), - [anon_sym_compl] = ACTIONS(3585), - [anon_sym_DASH_DASH] = ACTIONS(3583), - [anon_sym_PLUS_PLUS] = ACTIONS(3583), - [anon_sym_sizeof] = ACTIONS(3585), - [anon_sym___alignof__] = ACTIONS(3585), - [anon_sym___alignof] = ACTIONS(3585), - [anon_sym__alignof] = ACTIONS(3585), - [anon_sym_alignof] = ACTIONS(3585), - [anon_sym__Alignof] = ACTIONS(3585), - [anon_sym_offsetof] = ACTIONS(3585), - [anon_sym__Generic] = ACTIONS(3585), - [anon_sym_asm] = ACTIONS(3585), - [anon_sym___asm__] = ACTIONS(3585), - [anon_sym___asm] = ACTIONS(3585), - [sym_number_literal] = ACTIONS(3583), - [anon_sym_L_SQUOTE] = ACTIONS(3583), - [anon_sym_u_SQUOTE] = ACTIONS(3583), - [anon_sym_U_SQUOTE] = ACTIONS(3583), - [anon_sym_u8_SQUOTE] = ACTIONS(3583), - [anon_sym_SQUOTE] = ACTIONS(3583), - [anon_sym_L_DQUOTE] = ACTIONS(3583), - [anon_sym_u_DQUOTE] = ACTIONS(3583), - [anon_sym_U_DQUOTE] = ACTIONS(3583), - [anon_sym_u8_DQUOTE] = ACTIONS(3583), - [anon_sym_DQUOTE] = ACTIONS(3583), - [sym_true] = ACTIONS(3585), - [sym_false] = ACTIONS(3585), - [anon_sym_NULL] = ACTIONS(3585), - [anon_sym_nullptr] = ACTIONS(3585), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3585), - [anon_sym_decltype] = ACTIONS(3585), - [anon_sym_explicit] = ACTIONS(3585), - [anon_sym_typename] = ACTIONS(3585), - [anon_sym_export] = ACTIONS(3585), - [anon_sym_module] = ACTIONS(3585), - [anon_sym_import] = ACTIONS(3585), - [anon_sym_template] = ACTIONS(3585), - [anon_sym_operator] = ACTIONS(3585), - [anon_sym_try] = ACTIONS(3585), - [anon_sym_delete] = ACTIONS(3585), - [anon_sym_throw] = ACTIONS(3585), - [anon_sym_namespace] = ACTIONS(3585), - [anon_sym_static_assert] = ACTIONS(3585), - [anon_sym_concept] = ACTIONS(3585), - [anon_sym_co_return] = ACTIONS(3585), - [anon_sym_co_yield] = ACTIONS(3585), - [anon_sym_R_DQUOTE] = ACTIONS(3583), - [anon_sym_LR_DQUOTE] = ACTIONS(3583), - [anon_sym_uR_DQUOTE] = ACTIONS(3583), - [anon_sym_UR_DQUOTE] = ACTIONS(3583), - [anon_sym_u8R_DQUOTE] = ACTIONS(3583), - [anon_sym_co_await] = ACTIONS(3585), - [anon_sym_new] = ACTIONS(3585), - [anon_sym_requires] = ACTIONS(3585), - [sym_this] = ACTIONS(3585), + [634] = { + [sym_identifier] = ACTIONS(2659), + [aux_sym_preproc_include_token1] = ACTIONS(2659), + [aux_sym_preproc_def_token1] = ACTIONS(2659), + [aux_sym_preproc_if_token1] = ACTIONS(2659), + [aux_sym_preproc_if_token2] = ACTIONS(2659), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2659), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2659), + [sym_preproc_directive] = ACTIONS(2659), + [anon_sym_LPAREN2] = ACTIONS(2661), + [anon_sym_BANG] = ACTIONS(2661), + [anon_sym_TILDE] = ACTIONS(2661), + [anon_sym_DASH] = ACTIONS(2659), + [anon_sym_PLUS] = ACTIONS(2659), + [anon_sym_STAR] = ACTIONS(2661), + [anon_sym_AMP_AMP] = ACTIONS(2661), + [anon_sym_AMP] = ACTIONS(2659), + [anon_sym_SEMI] = ACTIONS(2661), + [anon_sym___extension__] = ACTIONS(2659), + [anon_sym_typedef] = ACTIONS(2659), + [anon_sym_virtual] = ACTIONS(2659), + [anon_sym_extern] = ACTIONS(2659), + [anon_sym___attribute__] = ACTIONS(2659), + [anon_sym___attribute] = ACTIONS(2659), + [anon_sym_using] = ACTIONS(2659), + [anon_sym_COLON_COLON] = ACTIONS(2661), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2661), + [anon_sym___declspec] = ACTIONS(2659), + [anon_sym___based] = ACTIONS(2659), + [anon_sym___cdecl] = ACTIONS(2659), + [anon_sym___clrcall] = ACTIONS(2659), + [anon_sym___stdcall] = ACTIONS(2659), + [anon_sym___fastcall] = ACTIONS(2659), + [anon_sym___thiscall] = ACTIONS(2659), + [anon_sym___vectorcall] = ACTIONS(2659), + [anon_sym_LBRACE] = ACTIONS(2661), + [anon_sym_signed] = ACTIONS(2659), + [anon_sym_unsigned] = ACTIONS(2659), + [anon_sym_long] = ACTIONS(2659), + [anon_sym_short] = ACTIONS(2659), + [anon_sym_LBRACK] = ACTIONS(2659), + [anon_sym_static] = ACTIONS(2659), + [anon_sym_register] = ACTIONS(2659), + [anon_sym_inline] = ACTIONS(2659), + [anon_sym___inline] = ACTIONS(2659), + [anon_sym___inline__] = ACTIONS(2659), + [anon_sym___forceinline] = ACTIONS(2659), + [anon_sym_thread_local] = ACTIONS(2659), + [anon_sym___thread] = ACTIONS(2659), + [anon_sym_const] = ACTIONS(2659), + [anon_sym_constexpr] = ACTIONS(2659), + [anon_sym_volatile] = ACTIONS(2659), + [anon_sym_restrict] = ACTIONS(2659), + [anon_sym___restrict__] = ACTIONS(2659), + [anon_sym__Atomic] = ACTIONS(2659), + [anon_sym__Noreturn] = ACTIONS(2659), + [anon_sym_noreturn] = ACTIONS(2659), + [anon_sym__Nonnull] = ACTIONS(2659), + [anon_sym_mutable] = ACTIONS(2659), + [anon_sym_constinit] = ACTIONS(2659), + [anon_sym_consteval] = ACTIONS(2659), + [anon_sym_alignas] = ACTIONS(2659), + [anon_sym__Alignas] = ACTIONS(2659), + [sym_primitive_type] = ACTIONS(2659), + [anon_sym_enum] = ACTIONS(2659), + [anon_sym_class] = ACTIONS(2659), + [anon_sym_struct] = ACTIONS(2659), + [anon_sym_union] = ACTIONS(2659), + [anon_sym_if] = ACTIONS(2659), + [anon_sym_else] = ACTIONS(2659), + [anon_sym_switch] = ACTIONS(2659), + [anon_sym_case] = ACTIONS(2659), + [anon_sym_default] = ACTIONS(2659), + [anon_sym_while] = ACTIONS(2659), + [anon_sym_do] = ACTIONS(2659), + [anon_sym_for] = ACTIONS(2659), + [anon_sym_return] = ACTIONS(2659), + [anon_sym_break] = ACTIONS(2659), + [anon_sym_continue] = ACTIONS(2659), + [anon_sym_goto] = ACTIONS(2659), + [anon_sym___try] = ACTIONS(2659), + [anon_sym___leave] = ACTIONS(2659), + [anon_sym_not] = ACTIONS(2659), + [anon_sym_compl] = ACTIONS(2659), + [anon_sym_DASH_DASH] = ACTIONS(2661), + [anon_sym_PLUS_PLUS] = ACTIONS(2661), + [anon_sym_sizeof] = ACTIONS(2659), + [anon_sym___alignof__] = ACTIONS(2659), + [anon_sym___alignof] = ACTIONS(2659), + [anon_sym__alignof] = ACTIONS(2659), + [anon_sym_alignof] = ACTIONS(2659), + [anon_sym__Alignof] = ACTIONS(2659), + [anon_sym_offsetof] = ACTIONS(2659), + [anon_sym__Generic] = ACTIONS(2659), + [anon_sym_asm] = ACTIONS(2659), + [anon_sym___asm__] = ACTIONS(2659), + [anon_sym___asm] = ACTIONS(2659), + [sym_number_literal] = ACTIONS(2661), + [anon_sym_L_SQUOTE] = ACTIONS(2661), + [anon_sym_u_SQUOTE] = ACTIONS(2661), + [anon_sym_U_SQUOTE] = ACTIONS(2661), + [anon_sym_u8_SQUOTE] = ACTIONS(2661), + [anon_sym_SQUOTE] = ACTIONS(2661), + [anon_sym_L_DQUOTE] = ACTIONS(2661), + [anon_sym_u_DQUOTE] = ACTIONS(2661), + [anon_sym_U_DQUOTE] = ACTIONS(2661), + [anon_sym_u8_DQUOTE] = ACTIONS(2661), + [anon_sym_DQUOTE] = ACTIONS(2661), + [sym_true] = ACTIONS(2659), + [sym_false] = ACTIONS(2659), + [anon_sym_NULL] = ACTIONS(2659), + [anon_sym_nullptr] = ACTIONS(2659), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2659), + [anon_sym_decltype] = ACTIONS(2659), + [anon_sym_explicit] = ACTIONS(2659), + [anon_sym_typename] = ACTIONS(2659), + [anon_sym_template] = ACTIONS(2659), + [anon_sym_operator] = ACTIONS(2659), + [anon_sym_try] = ACTIONS(2659), + [anon_sym_delete] = ACTIONS(2659), + [anon_sym_throw] = ACTIONS(2659), + [anon_sym_namespace] = ACTIONS(2659), + [anon_sym_static_assert] = ACTIONS(2659), + [anon_sym_concept] = ACTIONS(2659), + [anon_sym_co_return] = ACTIONS(2659), + [anon_sym_co_yield] = ACTIONS(2659), + [anon_sym_R_DQUOTE] = ACTIONS(2661), + [anon_sym_LR_DQUOTE] = ACTIONS(2661), + [anon_sym_uR_DQUOTE] = ACTIONS(2661), + [anon_sym_UR_DQUOTE] = ACTIONS(2661), + [anon_sym_u8R_DQUOTE] = ACTIONS(2661), + [anon_sym_co_await] = ACTIONS(2659), + [anon_sym_new] = ACTIONS(2659), + [anon_sym_requires] = ACTIONS(2659), + [sym_this] = ACTIONS(2659), }, - [626] = { - [sym_identifier] = ACTIONS(2631), - [aux_sym_preproc_include_token1] = ACTIONS(2631), - [aux_sym_preproc_def_token1] = ACTIONS(2631), - [aux_sym_preproc_if_token1] = ACTIONS(2631), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2631), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2631), - [sym_preproc_directive] = ACTIONS(2631), - [anon_sym_LPAREN2] = ACTIONS(2633), - [anon_sym_BANG] = ACTIONS(2633), - [anon_sym_TILDE] = ACTIONS(2633), - [anon_sym_DASH] = ACTIONS(2631), - [anon_sym_PLUS] = ACTIONS(2631), - [anon_sym_STAR] = ACTIONS(2633), - [anon_sym_AMP_AMP] = ACTIONS(2633), - [anon_sym_AMP] = ACTIONS(2631), - [anon_sym_SEMI] = ACTIONS(2633), - [anon_sym___extension__] = ACTIONS(2631), - [anon_sym_typedef] = ACTIONS(2631), - [anon_sym_virtual] = ACTIONS(2631), - [anon_sym_extern] = ACTIONS(2631), - [anon_sym___attribute__] = ACTIONS(2631), - [anon_sym___attribute] = ACTIONS(2631), - [anon_sym_using] = ACTIONS(2631), - [anon_sym_COLON_COLON] = ACTIONS(2633), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2633), - [anon_sym___declspec] = ACTIONS(2631), - [anon_sym___based] = ACTIONS(2631), - [anon_sym___cdecl] = ACTIONS(2631), - [anon_sym___clrcall] = ACTIONS(2631), - [anon_sym___stdcall] = ACTIONS(2631), - [anon_sym___fastcall] = ACTIONS(2631), - [anon_sym___thiscall] = ACTIONS(2631), - [anon_sym___vectorcall] = ACTIONS(2631), - [anon_sym_LBRACE] = ACTIONS(2633), - [anon_sym_RBRACE] = ACTIONS(2633), - [anon_sym_signed] = ACTIONS(2631), - [anon_sym_unsigned] = ACTIONS(2631), - [anon_sym_long] = ACTIONS(2631), - [anon_sym_short] = ACTIONS(2631), - [anon_sym_LBRACK] = ACTIONS(2631), - [anon_sym_static] = ACTIONS(2631), - [anon_sym_register] = ACTIONS(2631), - [anon_sym_inline] = ACTIONS(2631), - [anon_sym___inline] = ACTIONS(2631), - [anon_sym___inline__] = ACTIONS(2631), - [anon_sym___forceinline] = ACTIONS(2631), - [anon_sym_thread_local] = ACTIONS(2631), - [anon_sym___thread] = ACTIONS(2631), - [anon_sym_const] = ACTIONS(2631), - [anon_sym_constexpr] = ACTIONS(2631), - [anon_sym_volatile] = ACTIONS(2631), - [anon_sym_restrict] = ACTIONS(2631), - [anon_sym___restrict__] = ACTIONS(2631), - [anon_sym__Atomic] = ACTIONS(2631), - [anon_sym__Noreturn] = ACTIONS(2631), - [anon_sym_noreturn] = ACTIONS(2631), - [anon_sym__Nonnull] = ACTIONS(2631), - [anon_sym_mutable] = ACTIONS(2631), - [anon_sym_constinit] = ACTIONS(2631), - [anon_sym_consteval] = ACTIONS(2631), - [anon_sym_alignas] = ACTIONS(2631), - [anon_sym__Alignas] = ACTIONS(2631), - [sym_primitive_type] = ACTIONS(2631), - [anon_sym_enum] = ACTIONS(2631), - [anon_sym_class] = ACTIONS(2631), - [anon_sym_struct] = ACTIONS(2631), - [anon_sym_union] = ACTIONS(2631), - [anon_sym_if] = ACTIONS(2631), - [anon_sym_else] = ACTIONS(2631), - [anon_sym_switch] = ACTIONS(2631), - [anon_sym_case] = ACTIONS(2631), - [anon_sym_default] = ACTIONS(2631), - [anon_sym_while] = ACTIONS(2631), - [anon_sym_do] = ACTIONS(2631), - [anon_sym_for] = ACTIONS(2631), - [anon_sym_return] = ACTIONS(2631), - [anon_sym_break] = ACTIONS(2631), - [anon_sym_continue] = ACTIONS(2631), - [anon_sym_goto] = ACTIONS(2631), - [anon_sym___try] = ACTIONS(2631), - [anon_sym___leave] = ACTIONS(2631), - [anon_sym_not] = ACTIONS(2631), - [anon_sym_compl] = ACTIONS(2631), - [anon_sym_DASH_DASH] = ACTIONS(2633), - [anon_sym_PLUS_PLUS] = ACTIONS(2633), - [anon_sym_sizeof] = ACTIONS(2631), - [anon_sym___alignof__] = ACTIONS(2631), - [anon_sym___alignof] = ACTIONS(2631), - [anon_sym__alignof] = ACTIONS(2631), - [anon_sym_alignof] = ACTIONS(2631), - [anon_sym__Alignof] = ACTIONS(2631), - [anon_sym_offsetof] = ACTIONS(2631), - [anon_sym__Generic] = ACTIONS(2631), - [anon_sym_asm] = ACTIONS(2631), - [anon_sym___asm__] = ACTIONS(2631), - [anon_sym___asm] = ACTIONS(2631), - [sym_number_literal] = ACTIONS(2633), - [anon_sym_L_SQUOTE] = ACTIONS(2633), - [anon_sym_u_SQUOTE] = ACTIONS(2633), - [anon_sym_U_SQUOTE] = ACTIONS(2633), - [anon_sym_u8_SQUOTE] = ACTIONS(2633), - [anon_sym_SQUOTE] = ACTIONS(2633), - [anon_sym_L_DQUOTE] = ACTIONS(2633), - [anon_sym_u_DQUOTE] = ACTIONS(2633), - [anon_sym_U_DQUOTE] = ACTIONS(2633), - [anon_sym_u8_DQUOTE] = ACTIONS(2633), - [anon_sym_DQUOTE] = ACTIONS(2633), - [sym_true] = ACTIONS(2631), - [sym_false] = ACTIONS(2631), - [anon_sym_NULL] = ACTIONS(2631), - [anon_sym_nullptr] = ACTIONS(2631), + [635] = { + [sym_identifier] = ACTIONS(2627), + [aux_sym_preproc_include_token1] = ACTIONS(2627), + [aux_sym_preproc_def_token1] = ACTIONS(2627), + [aux_sym_preproc_if_token1] = ACTIONS(2627), + [aux_sym_preproc_if_token2] = ACTIONS(2627), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2627), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2627), + [sym_preproc_directive] = ACTIONS(2627), + [anon_sym_LPAREN2] = ACTIONS(2629), + [anon_sym_BANG] = ACTIONS(2629), + [anon_sym_TILDE] = ACTIONS(2629), + [anon_sym_DASH] = ACTIONS(2627), + [anon_sym_PLUS] = ACTIONS(2627), + [anon_sym_STAR] = ACTIONS(2629), + [anon_sym_AMP_AMP] = ACTIONS(2629), + [anon_sym_AMP] = ACTIONS(2627), + [anon_sym_SEMI] = ACTIONS(2629), + [anon_sym___extension__] = ACTIONS(2627), + [anon_sym_typedef] = ACTIONS(2627), + [anon_sym_virtual] = ACTIONS(2627), + [anon_sym_extern] = ACTIONS(2627), + [anon_sym___attribute__] = ACTIONS(2627), + [anon_sym___attribute] = ACTIONS(2627), + [anon_sym_using] = ACTIONS(2627), + [anon_sym_COLON_COLON] = ACTIONS(2629), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2629), + [anon_sym___declspec] = ACTIONS(2627), + [anon_sym___based] = ACTIONS(2627), + [anon_sym___cdecl] = ACTIONS(2627), + [anon_sym___clrcall] = ACTIONS(2627), + [anon_sym___stdcall] = ACTIONS(2627), + [anon_sym___fastcall] = ACTIONS(2627), + [anon_sym___thiscall] = ACTIONS(2627), + [anon_sym___vectorcall] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(2629), + [anon_sym_signed] = ACTIONS(2627), + [anon_sym_unsigned] = ACTIONS(2627), + [anon_sym_long] = ACTIONS(2627), + [anon_sym_short] = ACTIONS(2627), + [anon_sym_LBRACK] = ACTIONS(2627), + [anon_sym_static] = ACTIONS(2627), + [anon_sym_register] = ACTIONS(2627), + [anon_sym_inline] = ACTIONS(2627), + [anon_sym___inline] = ACTIONS(2627), + [anon_sym___inline__] = ACTIONS(2627), + [anon_sym___forceinline] = ACTIONS(2627), + [anon_sym_thread_local] = ACTIONS(2627), + [anon_sym___thread] = ACTIONS(2627), + [anon_sym_const] = ACTIONS(2627), + [anon_sym_constexpr] = ACTIONS(2627), + [anon_sym_volatile] = ACTIONS(2627), + [anon_sym_restrict] = ACTIONS(2627), + [anon_sym___restrict__] = ACTIONS(2627), + [anon_sym__Atomic] = ACTIONS(2627), + [anon_sym__Noreturn] = ACTIONS(2627), + [anon_sym_noreturn] = ACTIONS(2627), + [anon_sym__Nonnull] = ACTIONS(2627), + [anon_sym_mutable] = ACTIONS(2627), + [anon_sym_constinit] = ACTIONS(2627), + [anon_sym_consteval] = ACTIONS(2627), + [anon_sym_alignas] = ACTIONS(2627), + [anon_sym__Alignas] = ACTIONS(2627), + [sym_primitive_type] = ACTIONS(2627), + [anon_sym_enum] = ACTIONS(2627), + [anon_sym_class] = ACTIONS(2627), + [anon_sym_struct] = ACTIONS(2627), + [anon_sym_union] = ACTIONS(2627), + [anon_sym_if] = ACTIONS(2627), + [anon_sym_else] = ACTIONS(2627), + [anon_sym_switch] = ACTIONS(2627), + [anon_sym_case] = ACTIONS(2627), + [anon_sym_default] = ACTIONS(2627), + [anon_sym_while] = ACTIONS(2627), + [anon_sym_do] = ACTIONS(2627), + [anon_sym_for] = ACTIONS(2627), + [anon_sym_return] = ACTIONS(2627), + [anon_sym_break] = ACTIONS(2627), + [anon_sym_continue] = ACTIONS(2627), + [anon_sym_goto] = ACTIONS(2627), + [anon_sym___try] = ACTIONS(2627), + [anon_sym___leave] = ACTIONS(2627), + [anon_sym_not] = ACTIONS(2627), + [anon_sym_compl] = ACTIONS(2627), + [anon_sym_DASH_DASH] = ACTIONS(2629), + [anon_sym_PLUS_PLUS] = ACTIONS(2629), + [anon_sym_sizeof] = ACTIONS(2627), + [anon_sym___alignof__] = ACTIONS(2627), + [anon_sym___alignof] = ACTIONS(2627), + [anon_sym__alignof] = ACTIONS(2627), + [anon_sym_alignof] = ACTIONS(2627), + [anon_sym__Alignof] = ACTIONS(2627), + [anon_sym_offsetof] = ACTIONS(2627), + [anon_sym__Generic] = ACTIONS(2627), + [anon_sym_asm] = ACTIONS(2627), + [anon_sym___asm__] = ACTIONS(2627), + [anon_sym___asm] = ACTIONS(2627), + [sym_number_literal] = ACTIONS(2629), + [anon_sym_L_SQUOTE] = ACTIONS(2629), + [anon_sym_u_SQUOTE] = ACTIONS(2629), + [anon_sym_U_SQUOTE] = ACTIONS(2629), + [anon_sym_u8_SQUOTE] = ACTIONS(2629), + [anon_sym_SQUOTE] = ACTIONS(2629), + [anon_sym_L_DQUOTE] = ACTIONS(2629), + [anon_sym_u_DQUOTE] = ACTIONS(2629), + [anon_sym_U_DQUOTE] = ACTIONS(2629), + [anon_sym_u8_DQUOTE] = ACTIONS(2629), + [anon_sym_DQUOTE] = ACTIONS(2629), + [sym_true] = ACTIONS(2627), + [sym_false] = ACTIONS(2627), + [anon_sym_NULL] = ACTIONS(2627), + [anon_sym_nullptr] = ACTIONS(2627), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2631), - [anon_sym_decltype] = ACTIONS(2631), - [anon_sym_explicit] = ACTIONS(2631), - [anon_sym_typename] = ACTIONS(2631), - [anon_sym_template] = ACTIONS(2631), - [anon_sym_operator] = ACTIONS(2631), - [anon_sym_try] = ACTIONS(2631), - [anon_sym_delete] = ACTIONS(2631), - [anon_sym_throw] = ACTIONS(2631), - [anon_sym_namespace] = ACTIONS(2631), - [anon_sym_static_assert] = ACTIONS(2631), - [anon_sym_concept] = ACTIONS(2631), - [anon_sym_co_return] = ACTIONS(2631), - [anon_sym_co_yield] = ACTIONS(2631), - [anon_sym_R_DQUOTE] = ACTIONS(2633), - [anon_sym_LR_DQUOTE] = ACTIONS(2633), - [anon_sym_uR_DQUOTE] = ACTIONS(2633), - [anon_sym_UR_DQUOTE] = ACTIONS(2633), - [anon_sym_u8R_DQUOTE] = ACTIONS(2633), - [anon_sym_co_await] = ACTIONS(2631), - [anon_sym_new] = ACTIONS(2631), - [anon_sym_requires] = ACTIONS(2631), - [sym_this] = ACTIONS(2631), + [sym_auto] = ACTIONS(2627), + [anon_sym_decltype] = ACTIONS(2627), + [anon_sym_explicit] = ACTIONS(2627), + [anon_sym_typename] = ACTIONS(2627), + [anon_sym_template] = ACTIONS(2627), + [anon_sym_operator] = ACTIONS(2627), + [anon_sym_try] = ACTIONS(2627), + [anon_sym_delete] = ACTIONS(2627), + [anon_sym_throw] = ACTIONS(2627), + [anon_sym_namespace] = ACTIONS(2627), + [anon_sym_static_assert] = ACTIONS(2627), + [anon_sym_concept] = ACTIONS(2627), + [anon_sym_co_return] = ACTIONS(2627), + [anon_sym_co_yield] = ACTIONS(2627), + [anon_sym_R_DQUOTE] = ACTIONS(2629), + [anon_sym_LR_DQUOTE] = ACTIONS(2629), + [anon_sym_uR_DQUOTE] = ACTIONS(2629), + [anon_sym_UR_DQUOTE] = ACTIONS(2629), + [anon_sym_u8R_DQUOTE] = ACTIONS(2629), + [anon_sym_co_await] = ACTIONS(2627), + [anon_sym_new] = ACTIONS(2627), + [anon_sym_requires] = ACTIONS(2627), + [sym_this] = ACTIONS(2627), }, - [627] = { - [sym_identifier] = ACTIONS(2635), - [aux_sym_preproc_include_token1] = ACTIONS(2635), - [aux_sym_preproc_def_token1] = ACTIONS(2635), - [aux_sym_preproc_if_token1] = ACTIONS(2635), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2635), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2635), - [sym_preproc_directive] = ACTIONS(2635), - [anon_sym_LPAREN2] = ACTIONS(2637), - [anon_sym_BANG] = ACTIONS(2637), - [anon_sym_TILDE] = ACTIONS(2637), - [anon_sym_DASH] = ACTIONS(2635), - [anon_sym_PLUS] = ACTIONS(2635), - [anon_sym_STAR] = ACTIONS(2637), - [anon_sym_AMP_AMP] = ACTIONS(2637), - [anon_sym_AMP] = ACTIONS(2635), - [anon_sym_SEMI] = ACTIONS(2637), - [anon_sym___extension__] = ACTIONS(2635), - [anon_sym_typedef] = ACTIONS(2635), - [anon_sym_virtual] = ACTIONS(2635), - [anon_sym_extern] = ACTIONS(2635), - [anon_sym___attribute__] = ACTIONS(2635), - [anon_sym___attribute] = ACTIONS(2635), - [anon_sym_using] = ACTIONS(2635), - [anon_sym_COLON_COLON] = ACTIONS(2637), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2637), - [anon_sym___declspec] = ACTIONS(2635), - [anon_sym___based] = ACTIONS(2635), - [anon_sym___cdecl] = ACTIONS(2635), - [anon_sym___clrcall] = ACTIONS(2635), - [anon_sym___stdcall] = ACTIONS(2635), - [anon_sym___fastcall] = ACTIONS(2635), - [anon_sym___thiscall] = ACTIONS(2635), - [anon_sym___vectorcall] = ACTIONS(2635), - [anon_sym_LBRACE] = ACTIONS(2637), - [anon_sym_RBRACE] = ACTIONS(2637), - [anon_sym_signed] = ACTIONS(2635), - [anon_sym_unsigned] = ACTIONS(2635), - [anon_sym_long] = ACTIONS(2635), - [anon_sym_short] = ACTIONS(2635), - [anon_sym_LBRACK] = ACTIONS(2635), - [anon_sym_static] = ACTIONS(2635), - [anon_sym_register] = ACTIONS(2635), - [anon_sym_inline] = ACTIONS(2635), - [anon_sym___inline] = ACTIONS(2635), - [anon_sym___inline__] = ACTIONS(2635), - [anon_sym___forceinline] = ACTIONS(2635), - [anon_sym_thread_local] = ACTIONS(2635), - [anon_sym___thread] = ACTIONS(2635), - [anon_sym_const] = ACTIONS(2635), - [anon_sym_constexpr] = ACTIONS(2635), - [anon_sym_volatile] = ACTIONS(2635), - [anon_sym_restrict] = ACTIONS(2635), - [anon_sym___restrict__] = ACTIONS(2635), - [anon_sym__Atomic] = ACTIONS(2635), - [anon_sym__Noreturn] = ACTIONS(2635), - [anon_sym_noreturn] = ACTIONS(2635), - [anon_sym__Nonnull] = ACTIONS(2635), - [anon_sym_mutable] = ACTIONS(2635), - [anon_sym_constinit] = ACTIONS(2635), - [anon_sym_consteval] = ACTIONS(2635), - [anon_sym_alignas] = ACTIONS(2635), - [anon_sym__Alignas] = ACTIONS(2635), - [sym_primitive_type] = ACTIONS(2635), - [anon_sym_enum] = ACTIONS(2635), - [anon_sym_class] = ACTIONS(2635), - [anon_sym_struct] = ACTIONS(2635), - [anon_sym_union] = ACTIONS(2635), - [anon_sym_if] = ACTIONS(2635), - [anon_sym_else] = ACTIONS(2635), - [anon_sym_switch] = ACTIONS(2635), - [anon_sym_case] = ACTIONS(2635), - [anon_sym_default] = ACTIONS(2635), - [anon_sym_while] = ACTIONS(2635), - [anon_sym_do] = ACTIONS(2635), - [anon_sym_for] = ACTIONS(2635), - [anon_sym_return] = ACTIONS(2635), - [anon_sym_break] = ACTIONS(2635), - [anon_sym_continue] = ACTIONS(2635), - [anon_sym_goto] = ACTIONS(2635), - [anon_sym___try] = ACTIONS(2635), - [anon_sym___leave] = ACTIONS(2635), - [anon_sym_not] = ACTIONS(2635), - [anon_sym_compl] = ACTIONS(2635), - [anon_sym_DASH_DASH] = ACTIONS(2637), - [anon_sym_PLUS_PLUS] = ACTIONS(2637), - [anon_sym_sizeof] = ACTIONS(2635), - [anon_sym___alignof__] = ACTIONS(2635), - [anon_sym___alignof] = ACTIONS(2635), - [anon_sym__alignof] = ACTIONS(2635), - [anon_sym_alignof] = ACTIONS(2635), - [anon_sym__Alignof] = ACTIONS(2635), - [anon_sym_offsetof] = ACTIONS(2635), - [anon_sym__Generic] = ACTIONS(2635), - [anon_sym_asm] = ACTIONS(2635), - [anon_sym___asm__] = ACTIONS(2635), - [anon_sym___asm] = ACTIONS(2635), - [sym_number_literal] = ACTIONS(2637), - [anon_sym_L_SQUOTE] = ACTIONS(2637), - [anon_sym_u_SQUOTE] = ACTIONS(2637), - [anon_sym_U_SQUOTE] = ACTIONS(2637), - [anon_sym_u8_SQUOTE] = ACTIONS(2637), - [anon_sym_SQUOTE] = ACTIONS(2637), - [anon_sym_L_DQUOTE] = ACTIONS(2637), - [anon_sym_u_DQUOTE] = ACTIONS(2637), - [anon_sym_U_DQUOTE] = ACTIONS(2637), - [anon_sym_u8_DQUOTE] = ACTIONS(2637), - [anon_sym_DQUOTE] = ACTIONS(2637), - [sym_true] = ACTIONS(2635), - [sym_false] = ACTIONS(2635), - [anon_sym_NULL] = ACTIONS(2635), - [anon_sym_nullptr] = ACTIONS(2635), + [636] = { + [sym_identifier] = ACTIONS(2627), + [aux_sym_preproc_include_token1] = ACTIONS(2627), + [aux_sym_preproc_def_token1] = ACTIONS(2627), + [aux_sym_preproc_if_token1] = ACTIONS(2627), + [aux_sym_preproc_if_token2] = ACTIONS(2627), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2627), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2627), + [sym_preproc_directive] = ACTIONS(2627), + [anon_sym_LPAREN2] = ACTIONS(2629), + [anon_sym_BANG] = ACTIONS(2629), + [anon_sym_TILDE] = ACTIONS(2629), + [anon_sym_DASH] = ACTIONS(2627), + [anon_sym_PLUS] = ACTIONS(2627), + [anon_sym_STAR] = ACTIONS(2629), + [anon_sym_AMP_AMP] = ACTIONS(2629), + [anon_sym_AMP] = ACTIONS(2627), + [anon_sym_SEMI] = ACTIONS(2629), + [anon_sym___extension__] = ACTIONS(2627), + [anon_sym_typedef] = ACTIONS(2627), + [anon_sym_virtual] = ACTIONS(2627), + [anon_sym_extern] = ACTIONS(2627), + [anon_sym___attribute__] = ACTIONS(2627), + [anon_sym___attribute] = ACTIONS(2627), + [anon_sym_using] = ACTIONS(2627), + [anon_sym_COLON_COLON] = ACTIONS(2629), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2629), + [anon_sym___declspec] = ACTIONS(2627), + [anon_sym___based] = ACTIONS(2627), + [anon_sym___cdecl] = ACTIONS(2627), + [anon_sym___clrcall] = ACTIONS(2627), + [anon_sym___stdcall] = ACTIONS(2627), + [anon_sym___fastcall] = ACTIONS(2627), + [anon_sym___thiscall] = ACTIONS(2627), + [anon_sym___vectorcall] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(2629), + [anon_sym_signed] = ACTIONS(2627), + [anon_sym_unsigned] = ACTIONS(2627), + [anon_sym_long] = ACTIONS(2627), + [anon_sym_short] = ACTIONS(2627), + [anon_sym_LBRACK] = ACTIONS(2627), + [anon_sym_static] = ACTIONS(2627), + [anon_sym_register] = ACTIONS(2627), + [anon_sym_inline] = ACTIONS(2627), + [anon_sym___inline] = ACTIONS(2627), + [anon_sym___inline__] = ACTIONS(2627), + [anon_sym___forceinline] = ACTIONS(2627), + [anon_sym_thread_local] = ACTIONS(2627), + [anon_sym___thread] = ACTIONS(2627), + [anon_sym_const] = ACTIONS(2627), + [anon_sym_constexpr] = ACTIONS(2627), + [anon_sym_volatile] = ACTIONS(2627), + [anon_sym_restrict] = ACTIONS(2627), + [anon_sym___restrict__] = ACTIONS(2627), + [anon_sym__Atomic] = ACTIONS(2627), + [anon_sym__Noreturn] = ACTIONS(2627), + [anon_sym_noreturn] = ACTIONS(2627), + [anon_sym__Nonnull] = ACTIONS(2627), + [anon_sym_mutable] = ACTIONS(2627), + [anon_sym_constinit] = ACTIONS(2627), + [anon_sym_consteval] = ACTIONS(2627), + [anon_sym_alignas] = ACTIONS(2627), + [anon_sym__Alignas] = ACTIONS(2627), + [sym_primitive_type] = ACTIONS(2627), + [anon_sym_enum] = ACTIONS(2627), + [anon_sym_class] = ACTIONS(2627), + [anon_sym_struct] = ACTIONS(2627), + [anon_sym_union] = ACTIONS(2627), + [anon_sym_if] = ACTIONS(2627), + [anon_sym_else] = ACTIONS(2627), + [anon_sym_switch] = ACTIONS(2627), + [anon_sym_case] = ACTIONS(2627), + [anon_sym_default] = ACTIONS(2627), + [anon_sym_while] = ACTIONS(2627), + [anon_sym_do] = ACTIONS(2627), + [anon_sym_for] = ACTIONS(2627), + [anon_sym_return] = ACTIONS(2627), + [anon_sym_break] = ACTIONS(2627), + [anon_sym_continue] = ACTIONS(2627), + [anon_sym_goto] = ACTIONS(2627), + [anon_sym___try] = ACTIONS(2627), + [anon_sym___leave] = ACTIONS(2627), + [anon_sym_not] = ACTIONS(2627), + [anon_sym_compl] = ACTIONS(2627), + [anon_sym_DASH_DASH] = ACTIONS(2629), + [anon_sym_PLUS_PLUS] = ACTIONS(2629), + [anon_sym_sizeof] = ACTIONS(2627), + [anon_sym___alignof__] = ACTIONS(2627), + [anon_sym___alignof] = ACTIONS(2627), + [anon_sym__alignof] = ACTIONS(2627), + [anon_sym_alignof] = ACTIONS(2627), + [anon_sym__Alignof] = ACTIONS(2627), + [anon_sym_offsetof] = ACTIONS(2627), + [anon_sym__Generic] = ACTIONS(2627), + [anon_sym_asm] = ACTIONS(2627), + [anon_sym___asm__] = ACTIONS(2627), + [anon_sym___asm] = ACTIONS(2627), + [sym_number_literal] = ACTIONS(2629), + [anon_sym_L_SQUOTE] = ACTIONS(2629), + [anon_sym_u_SQUOTE] = ACTIONS(2629), + [anon_sym_U_SQUOTE] = ACTIONS(2629), + [anon_sym_u8_SQUOTE] = ACTIONS(2629), + [anon_sym_SQUOTE] = ACTIONS(2629), + [anon_sym_L_DQUOTE] = ACTIONS(2629), + [anon_sym_u_DQUOTE] = ACTIONS(2629), + [anon_sym_U_DQUOTE] = ACTIONS(2629), + [anon_sym_u8_DQUOTE] = ACTIONS(2629), + [anon_sym_DQUOTE] = ACTIONS(2629), + [sym_true] = ACTIONS(2627), + [sym_false] = ACTIONS(2627), + [anon_sym_NULL] = ACTIONS(2627), + [anon_sym_nullptr] = ACTIONS(2627), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2635), - [anon_sym_decltype] = ACTIONS(2635), - [anon_sym_explicit] = ACTIONS(2635), - [anon_sym_typename] = ACTIONS(2635), - [anon_sym_template] = ACTIONS(2635), - [anon_sym_operator] = ACTIONS(2635), - [anon_sym_try] = ACTIONS(2635), - [anon_sym_delete] = ACTIONS(2635), - [anon_sym_throw] = ACTIONS(2635), - [anon_sym_namespace] = ACTIONS(2635), - [anon_sym_static_assert] = ACTIONS(2635), - [anon_sym_concept] = ACTIONS(2635), - [anon_sym_co_return] = ACTIONS(2635), - [anon_sym_co_yield] = ACTIONS(2635), - [anon_sym_R_DQUOTE] = ACTIONS(2637), - [anon_sym_LR_DQUOTE] = ACTIONS(2637), - [anon_sym_uR_DQUOTE] = ACTIONS(2637), - [anon_sym_UR_DQUOTE] = ACTIONS(2637), - [anon_sym_u8R_DQUOTE] = ACTIONS(2637), - [anon_sym_co_await] = ACTIONS(2635), - [anon_sym_new] = ACTIONS(2635), - [anon_sym_requires] = ACTIONS(2635), - [sym_this] = ACTIONS(2635), + [sym_auto] = ACTIONS(2627), + [anon_sym_decltype] = ACTIONS(2627), + [anon_sym_explicit] = ACTIONS(2627), + [anon_sym_typename] = ACTIONS(2627), + [anon_sym_template] = ACTIONS(2627), + [anon_sym_operator] = ACTIONS(2627), + [anon_sym_try] = ACTIONS(2627), + [anon_sym_delete] = ACTIONS(2627), + [anon_sym_throw] = ACTIONS(2627), + [anon_sym_namespace] = ACTIONS(2627), + [anon_sym_static_assert] = ACTIONS(2627), + [anon_sym_concept] = ACTIONS(2627), + [anon_sym_co_return] = ACTIONS(2627), + [anon_sym_co_yield] = ACTIONS(2627), + [anon_sym_R_DQUOTE] = ACTIONS(2629), + [anon_sym_LR_DQUOTE] = ACTIONS(2629), + [anon_sym_uR_DQUOTE] = ACTIONS(2629), + [anon_sym_UR_DQUOTE] = ACTIONS(2629), + [anon_sym_u8R_DQUOTE] = ACTIONS(2629), + [anon_sym_co_await] = ACTIONS(2627), + [anon_sym_new] = ACTIONS(2627), + [anon_sym_requires] = ACTIONS(2627), + [sym_this] = ACTIONS(2627), }, - [628] = { - [ts_builtin_sym_end] = ACTIONS(2921), - [sym_identifier] = ACTIONS(2919), - [aux_sym_preproc_include_token1] = ACTIONS(2919), - [aux_sym_preproc_def_token1] = ACTIONS(2919), - [aux_sym_preproc_if_token1] = ACTIONS(2919), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2919), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2919), - [sym_preproc_directive] = ACTIONS(2919), - [anon_sym_LPAREN2] = ACTIONS(2921), - [anon_sym_BANG] = ACTIONS(2921), - [anon_sym_TILDE] = ACTIONS(2921), - [anon_sym_DASH] = ACTIONS(2919), - [anon_sym_PLUS] = ACTIONS(2919), - [anon_sym_STAR] = ACTIONS(2921), - [anon_sym_AMP_AMP] = ACTIONS(2921), - [anon_sym_AMP] = ACTIONS(2919), - [anon_sym_SEMI] = ACTIONS(2921), - [anon_sym___extension__] = ACTIONS(2919), - [anon_sym_typedef] = ACTIONS(2919), - [anon_sym_virtual] = ACTIONS(2919), - [anon_sym_extern] = ACTIONS(2919), - [anon_sym___attribute__] = ACTIONS(2919), - [anon_sym___attribute] = ACTIONS(2919), - [anon_sym_using] = ACTIONS(2919), - [anon_sym_COLON_COLON] = ACTIONS(2921), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2921), - [anon_sym___declspec] = ACTIONS(2919), - [anon_sym___based] = ACTIONS(2919), - [anon_sym___cdecl] = ACTIONS(2919), - [anon_sym___clrcall] = ACTIONS(2919), - [anon_sym___stdcall] = ACTIONS(2919), - [anon_sym___fastcall] = ACTIONS(2919), - [anon_sym___thiscall] = ACTIONS(2919), - [anon_sym___vectorcall] = ACTIONS(2919), - [anon_sym_LBRACE] = ACTIONS(2921), - [anon_sym_signed] = ACTIONS(2919), - [anon_sym_unsigned] = ACTIONS(2919), - [anon_sym_long] = ACTIONS(2919), - [anon_sym_short] = ACTIONS(2919), - [anon_sym_LBRACK] = ACTIONS(2919), - [anon_sym_static] = ACTIONS(2919), - [anon_sym_register] = ACTIONS(2919), - [anon_sym_inline] = ACTIONS(2919), - [anon_sym___inline] = ACTIONS(2919), - [anon_sym___inline__] = ACTIONS(2919), - [anon_sym___forceinline] = ACTIONS(2919), - [anon_sym_thread_local] = ACTIONS(2919), - [anon_sym___thread] = ACTIONS(2919), - [anon_sym_const] = ACTIONS(2919), - [anon_sym_constexpr] = ACTIONS(2919), - [anon_sym_volatile] = ACTIONS(2919), - [anon_sym_restrict] = ACTIONS(2919), - [anon_sym___restrict__] = ACTIONS(2919), - [anon_sym__Atomic] = ACTIONS(2919), - [anon_sym__Noreturn] = ACTIONS(2919), - [anon_sym_noreturn] = ACTIONS(2919), - [anon_sym__Nonnull] = ACTIONS(2919), - [anon_sym_mutable] = ACTIONS(2919), - [anon_sym_constinit] = ACTIONS(2919), - [anon_sym_consteval] = ACTIONS(2919), - [anon_sym_alignas] = ACTIONS(2919), - [anon_sym__Alignas] = ACTIONS(2919), - [sym_primitive_type] = ACTIONS(2919), - [anon_sym_enum] = ACTIONS(2919), - [anon_sym_class] = ACTIONS(2919), - [anon_sym_struct] = ACTIONS(2919), - [anon_sym_union] = ACTIONS(2919), - [anon_sym_if] = ACTIONS(2919), - [anon_sym_switch] = ACTIONS(2919), - [anon_sym_case] = ACTIONS(2919), - [anon_sym_default] = ACTIONS(2919), - [anon_sym_while] = ACTIONS(2919), - [anon_sym_do] = ACTIONS(2919), - [anon_sym_for] = ACTIONS(2919), - [anon_sym_return] = ACTIONS(2919), - [anon_sym_break] = ACTIONS(2919), - [anon_sym_continue] = ACTIONS(2919), - [anon_sym_goto] = ACTIONS(2919), - [anon_sym_not] = ACTIONS(2919), - [anon_sym_compl] = ACTIONS(2919), - [anon_sym_DASH_DASH] = ACTIONS(2921), - [anon_sym_PLUS_PLUS] = ACTIONS(2921), - [anon_sym_sizeof] = ACTIONS(2919), - [anon_sym___alignof__] = ACTIONS(2919), - [anon_sym___alignof] = ACTIONS(2919), - [anon_sym__alignof] = ACTIONS(2919), - [anon_sym_alignof] = ACTIONS(2919), - [anon_sym__Alignof] = ACTIONS(2919), - [anon_sym_offsetof] = ACTIONS(2919), - [anon_sym__Generic] = ACTIONS(2919), - [anon_sym_asm] = ACTIONS(2919), - [anon_sym___asm__] = ACTIONS(2919), - [anon_sym___asm] = ACTIONS(2919), - [sym_number_literal] = ACTIONS(2921), - [anon_sym_L_SQUOTE] = ACTIONS(2921), - [anon_sym_u_SQUOTE] = ACTIONS(2921), - [anon_sym_U_SQUOTE] = ACTIONS(2921), - [anon_sym_u8_SQUOTE] = ACTIONS(2921), - [anon_sym_SQUOTE] = ACTIONS(2921), - [anon_sym_L_DQUOTE] = ACTIONS(2921), - [anon_sym_u_DQUOTE] = ACTIONS(2921), - [anon_sym_U_DQUOTE] = ACTIONS(2921), - [anon_sym_u8_DQUOTE] = ACTIONS(2921), - [anon_sym_DQUOTE] = ACTIONS(2921), - [sym_true] = ACTIONS(2919), - [sym_false] = ACTIONS(2919), - [anon_sym_NULL] = ACTIONS(2919), - [anon_sym_nullptr] = ACTIONS(2919), + [637] = { + [ts_builtin_sym_end] = ACTIONS(2809), + [sym_identifier] = ACTIONS(2807), + [aux_sym_preproc_include_token1] = ACTIONS(2807), + [aux_sym_preproc_def_token1] = ACTIONS(2807), + [aux_sym_preproc_if_token1] = ACTIONS(2807), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2807), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2807), + [sym_preproc_directive] = ACTIONS(2807), + [anon_sym_LPAREN2] = ACTIONS(2809), + [anon_sym_BANG] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2809), + [anon_sym_DASH] = ACTIONS(2807), + [anon_sym_PLUS] = ACTIONS(2807), + [anon_sym_STAR] = ACTIONS(2809), + [anon_sym_AMP_AMP] = ACTIONS(2809), + [anon_sym_AMP] = ACTIONS(2807), + [anon_sym_SEMI] = ACTIONS(2809), + [anon_sym___extension__] = ACTIONS(2807), + [anon_sym_typedef] = ACTIONS(2807), + [anon_sym_virtual] = ACTIONS(2807), + [anon_sym_extern] = ACTIONS(2807), + [anon_sym___attribute__] = ACTIONS(2807), + [anon_sym___attribute] = ACTIONS(2807), + [anon_sym_using] = ACTIONS(2807), + [anon_sym_COLON_COLON] = ACTIONS(2809), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2809), + [anon_sym___declspec] = ACTIONS(2807), + [anon_sym___based] = ACTIONS(2807), + [anon_sym___cdecl] = ACTIONS(2807), + [anon_sym___clrcall] = ACTIONS(2807), + [anon_sym___stdcall] = ACTIONS(2807), + [anon_sym___fastcall] = ACTIONS(2807), + [anon_sym___thiscall] = ACTIONS(2807), + [anon_sym___vectorcall] = ACTIONS(2807), + [anon_sym_LBRACE] = ACTIONS(2809), + [anon_sym_signed] = ACTIONS(2807), + [anon_sym_unsigned] = ACTIONS(2807), + [anon_sym_long] = ACTIONS(2807), + [anon_sym_short] = ACTIONS(2807), + [anon_sym_LBRACK] = ACTIONS(2807), + [anon_sym_static] = ACTIONS(2807), + [anon_sym_register] = ACTIONS(2807), + [anon_sym_inline] = ACTIONS(2807), + [anon_sym___inline] = ACTIONS(2807), + [anon_sym___inline__] = ACTIONS(2807), + [anon_sym___forceinline] = ACTIONS(2807), + [anon_sym_thread_local] = ACTIONS(2807), + [anon_sym___thread] = ACTIONS(2807), + [anon_sym_const] = ACTIONS(2807), + [anon_sym_constexpr] = ACTIONS(2807), + [anon_sym_volatile] = ACTIONS(2807), + [anon_sym_restrict] = ACTIONS(2807), + [anon_sym___restrict__] = ACTIONS(2807), + [anon_sym__Atomic] = ACTIONS(2807), + [anon_sym__Noreturn] = ACTIONS(2807), + [anon_sym_noreturn] = ACTIONS(2807), + [anon_sym__Nonnull] = ACTIONS(2807), + [anon_sym_mutable] = ACTIONS(2807), + [anon_sym_constinit] = ACTIONS(2807), + [anon_sym_consteval] = ACTIONS(2807), + [anon_sym_alignas] = ACTIONS(2807), + [anon_sym__Alignas] = ACTIONS(2807), + [sym_primitive_type] = ACTIONS(2807), + [anon_sym_enum] = ACTIONS(2807), + [anon_sym_class] = ACTIONS(2807), + [anon_sym_struct] = ACTIONS(2807), + [anon_sym_union] = ACTIONS(2807), + [anon_sym_if] = ACTIONS(2807), + [anon_sym_switch] = ACTIONS(2807), + [anon_sym_case] = ACTIONS(2807), + [anon_sym_default] = ACTIONS(2807), + [anon_sym_while] = ACTIONS(2807), + [anon_sym_do] = ACTIONS(2807), + [anon_sym_for] = ACTIONS(2807), + [anon_sym_return] = ACTIONS(2807), + [anon_sym_break] = ACTIONS(2807), + [anon_sym_continue] = ACTIONS(2807), + [anon_sym_goto] = ACTIONS(2807), + [anon_sym_not] = ACTIONS(2807), + [anon_sym_compl] = ACTIONS(2807), + [anon_sym_DASH_DASH] = ACTIONS(2809), + [anon_sym_PLUS_PLUS] = ACTIONS(2809), + [anon_sym_sizeof] = ACTIONS(2807), + [anon_sym___alignof__] = ACTIONS(2807), + [anon_sym___alignof] = ACTIONS(2807), + [anon_sym__alignof] = ACTIONS(2807), + [anon_sym_alignof] = ACTIONS(2807), + [anon_sym__Alignof] = ACTIONS(2807), + [anon_sym_offsetof] = ACTIONS(2807), + [anon_sym__Generic] = ACTIONS(2807), + [anon_sym_asm] = ACTIONS(2807), + [anon_sym___asm__] = ACTIONS(2807), + [anon_sym___asm] = ACTIONS(2807), + [sym_number_literal] = ACTIONS(2809), + [anon_sym_L_SQUOTE] = ACTIONS(2809), + [anon_sym_u_SQUOTE] = ACTIONS(2809), + [anon_sym_U_SQUOTE] = ACTIONS(2809), + [anon_sym_u8_SQUOTE] = ACTIONS(2809), + [anon_sym_SQUOTE] = ACTIONS(2809), + [anon_sym_L_DQUOTE] = ACTIONS(2809), + [anon_sym_u_DQUOTE] = ACTIONS(2809), + [anon_sym_U_DQUOTE] = ACTIONS(2809), + [anon_sym_u8_DQUOTE] = ACTIONS(2809), + [anon_sym_DQUOTE] = ACTIONS(2809), + [sym_true] = ACTIONS(2807), + [sym_false] = ACTIONS(2807), + [anon_sym_NULL] = ACTIONS(2807), + [anon_sym_nullptr] = ACTIONS(2807), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2919), - [anon_sym_decltype] = ACTIONS(2919), - [anon_sym_explicit] = ACTIONS(2919), - [anon_sym_typename] = ACTIONS(2919), - [anon_sym_export] = ACTIONS(2919), - [anon_sym_module] = ACTIONS(2919), - [anon_sym_import] = ACTIONS(2919), - [anon_sym_template] = ACTIONS(2919), - [anon_sym_operator] = ACTIONS(2919), - [anon_sym_try] = ACTIONS(2919), - [anon_sym_delete] = ACTIONS(2919), - [anon_sym_throw] = ACTIONS(2919), - [anon_sym_namespace] = ACTIONS(2919), - [anon_sym_static_assert] = ACTIONS(2919), - [anon_sym_concept] = ACTIONS(2919), - [anon_sym_co_return] = ACTIONS(2919), - [anon_sym_co_yield] = ACTIONS(2919), - [anon_sym_R_DQUOTE] = ACTIONS(2921), - [anon_sym_LR_DQUOTE] = ACTIONS(2921), - [anon_sym_uR_DQUOTE] = ACTIONS(2921), - [anon_sym_UR_DQUOTE] = ACTIONS(2921), - [anon_sym_u8R_DQUOTE] = ACTIONS(2921), - [anon_sym_co_await] = ACTIONS(2919), - [anon_sym_new] = ACTIONS(2919), - [anon_sym_requires] = ACTIONS(2919), - [sym_this] = ACTIONS(2919), + [sym_auto] = ACTIONS(2807), + [anon_sym_decltype] = ACTIONS(2807), + [anon_sym_explicit] = ACTIONS(2807), + [anon_sym_typename] = ACTIONS(2807), + [anon_sym_export] = ACTIONS(2807), + [anon_sym_module] = ACTIONS(2807), + [anon_sym_import] = ACTIONS(2807), + [anon_sym_template] = ACTIONS(2807), + [anon_sym_operator] = ACTIONS(2807), + [anon_sym_try] = ACTIONS(2807), + [anon_sym_delete] = ACTIONS(2807), + [anon_sym_throw] = ACTIONS(2807), + [anon_sym_namespace] = ACTIONS(2807), + [anon_sym_static_assert] = ACTIONS(2807), + [anon_sym_concept] = ACTIONS(2807), + [anon_sym_co_return] = ACTIONS(2807), + [anon_sym_co_yield] = ACTIONS(2807), + [anon_sym_R_DQUOTE] = ACTIONS(2809), + [anon_sym_LR_DQUOTE] = ACTIONS(2809), + [anon_sym_uR_DQUOTE] = ACTIONS(2809), + [anon_sym_UR_DQUOTE] = ACTIONS(2809), + [anon_sym_u8R_DQUOTE] = ACTIONS(2809), + [anon_sym_co_await] = ACTIONS(2807), + [anon_sym_new] = ACTIONS(2807), + [anon_sym_requires] = ACTIONS(2807), + [sym_this] = ACTIONS(2807), }, - [629] = { - [ts_builtin_sym_end] = ACTIONS(2897), - [sym_identifier] = ACTIONS(2895), - [aux_sym_preproc_include_token1] = ACTIONS(2895), - [aux_sym_preproc_def_token1] = ACTIONS(2895), - [aux_sym_preproc_if_token1] = ACTIONS(2895), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2895), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2895), - [sym_preproc_directive] = ACTIONS(2895), - [anon_sym_LPAREN2] = ACTIONS(2897), - [anon_sym_BANG] = ACTIONS(2897), - [anon_sym_TILDE] = ACTIONS(2897), - [anon_sym_DASH] = ACTIONS(2895), - [anon_sym_PLUS] = ACTIONS(2895), - [anon_sym_STAR] = ACTIONS(2897), - [anon_sym_AMP_AMP] = ACTIONS(2897), - [anon_sym_AMP] = ACTIONS(2895), - [anon_sym_SEMI] = ACTIONS(2897), - [anon_sym___extension__] = ACTIONS(2895), - [anon_sym_typedef] = ACTIONS(2895), - [anon_sym_virtual] = ACTIONS(2895), - [anon_sym_extern] = ACTIONS(2895), - [anon_sym___attribute__] = ACTIONS(2895), - [anon_sym___attribute] = ACTIONS(2895), - [anon_sym_using] = ACTIONS(2895), - [anon_sym_COLON_COLON] = ACTIONS(2897), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2897), - [anon_sym___declspec] = ACTIONS(2895), - [anon_sym___based] = ACTIONS(2895), - [anon_sym___cdecl] = ACTIONS(2895), - [anon_sym___clrcall] = ACTIONS(2895), - [anon_sym___stdcall] = ACTIONS(2895), - [anon_sym___fastcall] = ACTIONS(2895), - [anon_sym___thiscall] = ACTIONS(2895), - [anon_sym___vectorcall] = ACTIONS(2895), - [anon_sym_LBRACE] = ACTIONS(2897), - [anon_sym_signed] = ACTIONS(2895), - [anon_sym_unsigned] = ACTIONS(2895), - [anon_sym_long] = ACTIONS(2895), - [anon_sym_short] = ACTIONS(2895), - [anon_sym_LBRACK] = ACTIONS(2895), - [anon_sym_static] = ACTIONS(2895), - [anon_sym_register] = ACTIONS(2895), - [anon_sym_inline] = ACTIONS(2895), - [anon_sym___inline] = ACTIONS(2895), - [anon_sym___inline__] = ACTIONS(2895), - [anon_sym___forceinline] = ACTIONS(2895), - [anon_sym_thread_local] = ACTIONS(2895), - [anon_sym___thread] = ACTIONS(2895), - [anon_sym_const] = ACTIONS(2895), - [anon_sym_constexpr] = ACTIONS(2895), - [anon_sym_volatile] = ACTIONS(2895), - [anon_sym_restrict] = ACTIONS(2895), - [anon_sym___restrict__] = ACTIONS(2895), - [anon_sym__Atomic] = ACTIONS(2895), - [anon_sym__Noreturn] = ACTIONS(2895), - [anon_sym_noreturn] = ACTIONS(2895), - [anon_sym__Nonnull] = ACTIONS(2895), - [anon_sym_mutable] = ACTIONS(2895), - [anon_sym_constinit] = ACTIONS(2895), - [anon_sym_consteval] = ACTIONS(2895), - [anon_sym_alignas] = ACTIONS(2895), - [anon_sym__Alignas] = ACTIONS(2895), - [sym_primitive_type] = ACTIONS(2895), - [anon_sym_enum] = ACTIONS(2895), - [anon_sym_class] = ACTIONS(2895), - [anon_sym_struct] = ACTIONS(2895), - [anon_sym_union] = ACTIONS(2895), - [anon_sym_if] = ACTIONS(2895), - [anon_sym_switch] = ACTIONS(2895), - [anon_sym_case] = ACTIONS(2895), - [anon_sym_default] = ACTIONS(2895), - [anon_sym_while] = ACTIONS(2895), - [anon_sym_do] = ACTIONS(2895), - [anon_sym_for] = ACTIONS(2895), - [anon_sym_return] = ACTIONS(2895), - [anon_sym_break] = ACTIONS(2895), - [anon_sym_continue] = ACTIONS(2895), - [anon_sym_goto] = ACTIONS(2895), - [anon_sym_not] = ACTIONS(2895), - [anon_sym_compl] = ACTIONS(2895), - [anon_sym_DASH_DASH] = ACTIONS(2897), - [anon_sym_PLUS_PLUS] = ACTIONS(2897), - [anon_sym_sizeof] = ACTIONS(2895), - [anon_sym___alignof__] = ACTIONS(2895), - [anon_sym___alignof] = ACTIONS(2895), - [anon_sym__alignof] = ACTIONS(2895), - [anon_sym_alignof] = ACTIONS(2895), - [anon_sym__Alignof] = ACTIONS(2895), - [anon_sym_offsetof] = ACTIONS(2895), - [anon_sym__Generic] = ACTIONS(2895), - [anon_sym_asm] = ACTIONS(2895), - [anon_sym___asm__] = ACTIONS(2895), - [anon_sym___asm] = ACTIONS(2895), - [sym_number_literal] = ACTIONS(2897), - [anon_sym_L_SQUOTE] = ACTIONS(2897), - [anon_sym_u_SQUOTE] = ACTIONS(2897), - [anon_sym_U_SQUOTE] = ACTIONS(2897), - [anon_sym_u8_SQUOTE] = ACTIONS(2897), - [anon_sym_SQUOTE] = ACTIONS(2897), - [anon_sym_L_DQUOTE] = ACTIONS(2897), - [anon_sym_u_DQUOTE] = ACTIONS(2897), - [anon_sym_U_DQUOTE] = ACTIONS(2897), - [anon_sym_u8_DQUOTE] = ACTIONS(2897), - [anon_sym_DQUOTE] = ACTIONS(2897), - [sym_true] = ACTIONS(2895), - [sym_false] = ACTIONS(2895), - [anon_sym_NULL] = ACTIONS(2895), - [anon_sym_nullptr] = ACTIONS(2895), + [638] = { + [sym_identifier] = ACTIONS(2679), + [aux_sym_preproc_include_token1] = ACTIONS(2679), + [aux_sym_preproc_def_token1] = ACTIONS(2679), + [aux_sym_preproc_if_token1] = ACTIONS(2679), + [aux_sym_preproc_if_token2] = ACTIONS(2679), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2679), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2679), + [sym_preproc_directive] = ACTIONS(2679), + [anon_sym_LPAREN2] = ACTIONS(2681), + [anon_sym_BANG] = ACTIONS(2681), + [anon_sym_TILDE] = ACTIONS(2681), + [anon_sym_DASH] = ACTIONS(2679), + [anon_sym_PLUS] = ACTIONS(2679), + [anon_sym_STAR] = ACTIONS(2681), + [anon_sym_AMP_AMP] = ACTIONS(2681), + [anon_sym_AMP] = ACTIONS(2679), + [anon_sym_SEMI] = ACTIONS(2681), + [anon_sym___extension__] = ACTIONS(2679), + [anon_sym_typedef] = ACTIONS(2679), + [anon_sym_virtual] = ACTIONS(2679), + [anon_sym_extern] = ACTIONS(2679), + [anon_sym___attribute__] = ACTIONS(2679), + [anon_sym___attribute] = ACTIONS(2679), + [anon_sym_using] = ACTIONS(2679), + [anon_sym_COLON_COLON] = ACTIONS(2681), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2681), + [anon_sym___declspec] = ACTIONS(2679), + [anon_sym___based] = ACTIONS(2679), + [anon_sym___cdecl] = ACTIONS(2679), + [anon_sym___clrcall] = ACTIONS(2679), + [anon_sym___stdcall] = ACTIONS(2679), + [anon_sym___fastcall] = ACTIONS(2679), + [anon_sym___thiscall] = ACTIONS(2679), + [anon_sym___vectorcall] = ACTIONS(2679), + [anon_sym_LBRACE] = ACTIONS(2681), + [anon_sym_signed] = ACTIONS(2679), + [anon_sym_unsigned] = ACTIONS(2679), + [anon_sym_long] = ACTIONS(2679), + [anon_sym_short] = ACTIONS(2679), + [anon_sym_LBRACK] = ACTIONS(2679), + [anon_sym_static] = ACTIONS(2679), + [anon_sym_register] = ACTIONS(2679), + [anon_sym_inline] = ACTIONS(2679), + [anon_sym___inline] = ACTIONS(2679), + [anon_sym___inline__] = ACTIONS(2679), + [anon_sym___forceinline] = ACTIONS(2679), + [anon_sym_thread_local] = ACTIONS(2679), + [anon_sym___thread] = ACTIONS(2679), + [anon_sym_const] = ACTIONS(2679), + [anon_sym_constexpr] = ACTIONS(2679), + [anon_sym_volatile] = ACTIONS(2679), + [anon_sym_restrict] = ACTIONS(2679), + [anon_sym___restrict__] = ACTIONS(2679), + [anon_sym__Atomic] = ACTIONS(2679), + [anon_sym__Noreturn] = ACTIONS(2679), + [anon_sym_noreturn] = ACTIONS(2679), + [anon_sym__Nonnull] = ACTIONS(2679), + [anon_sym_mutable] = ACTIONS(2679), + [anon_sym_constinit] = ACTIONS(2679), + [anon_sym_consteval] = ACTIONS(2679), + [anon_sym_alignas] = ACTIONS(2679), + [anon_sym__Alignas] = ACTIONS(2679), + [sym_primitive_type] = ACTIONS(2679), + [anon_sym_enum] = ACTIONS(2679), + [anon_sym_class] = ACTIONS(2679), + [anon_sym_struct] = ACTIONS(2679), + [anon_sym_union] = ACTIONS(2679), + [anon_sym_if] = ACTIONS(2679), + [anon_sym_else] = ACTIONS(2679), + [anon_sym_switch] = ACTIONS(2679), + [anon_sym_case] = ACTIONS(2679), + [anon_sym_default] = ACTIONS(2679), + [anon_sym_while] = ACTIONS(2679), + [anon_sym_do] = ACTIONS(2679), + [anon_sym_for] = ACTIONS(2679), + [anon_sym_return] = ACTIONS(2679), + [anon_sym_break] = ACTIONS(2679), + [anon_sym_continue] = ACTIONS(2679), + [anon_sym_goto] = ACTIONS(2679), + [anon_sym___try] = ACTIONS(2679), + [anon_sym___leave] = ACTIONS(2679), + [anon_sym_not] = ACTIONS(2679), + [anon_sym_compl] = ACTIONS(2679), + [anon_sym_DASH_DASH] = ACTIONS(2681), + [anon_sym_PLUS_PLUS] = ACTIONS(2681), + [anon_sym_sizeof] = ACTIONS(2679), + [anon_sym___alignof__] = ACTIONS(2679), + [anon_sym___alignof] = ACTIONS(2679), + [anon_sym__alignof] = ACTIONS(2679), + [anon_sym_alignof] = ACTIONS(2679), + [anon_sym__Alignof] = ACTIONS(2679), + [anon_sym_offsetof] = ACTIONS(2679), + [anon_sym__Generic] = ACTIONS(2679), + [anon_sym_asm] = ACTIONS(2679), + [anon_sym___asm__] = ACTIONS(2679), + [anon_sym___asm] = ACTIONS(2679), + [sym_number_literal] = ACTIONS(2681), + [anon_sym_L_SQUOTE] = ACTIONS(2681), + [anon_sym_u_SQUOTE] = ACTIONS(2681), + [anon_sym_U_SQUOTE] = ACTIONS(2681), + [anon_sym_u8_SQUOTE] = ACTIONS(2681), + [anon_sym_SQUOTE] = ACTIONS(2681), + [anon_sym_L_DQUOTE] = ACTIONS(2681), + [anon_sym_u_DQUOTE] = ACTIONS(2681), + [anon_sym_U_DQUOTE] = ACTIONS(2681), + [anon_sym_u8_DQUOTE] = ACTIONS(2681), + [anon_sym_DQUOTE] = ACTIONS(2681), + [sym_true] = ACTIONS(2679), + [sym_false] = ACTIONS(2679), + [anon_sym_NULL] = ACTIONS(2679), + [anon_sym_nullptr] = ACTIONS(2679), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2679), + [anon_sym_decltype] = ACTIONS(2679), + [anon_sym_explicit] = ACTIONS(2679), + [anon_sym_typename] = ACTIONS(2679), + [anon_sym_template] = ACTIONS(2679), + [anon_sym_operator] = ACTIONS(2679), + [anon_sym_try] = ACTIONS(2679), + [anon_sym_delete] = ACTIONS(2679), + [anon_sym_throw] = ACTIONS(2679), + [anon_sym_namespace] = ACTIONS(2679), + [anon_sym_static_assert] = ACTIONS(2679), + [anon_sym_concept] = ACTIONS(2679), + [anon_sym_co_return] = ACTIONS(2679), + [anon_sym_co_yield] = ACTIONS(2679), + [anon_sym_R_DQUOTE] = ACTIONS(2681), + [anon_sym_LR_DQUOTE] = ACTIONS(2681), + [anon_sym_uR_DQUOTE] = ACTIONS(2681), + [anon_sym_UR_DQUOTE] = ACTIONS(2681), + [anon_sym_u8R_DQUOTE] = ACTIONS(2681), + [anon_sym_co_await] = ACTIONS(2679), + [anon_sym_new] = ACTIONS(2679), + [anon_sym_requires] = ACTIONS(2679), + [sym_this] = ACTIONS(2679), + }, + [639] = { + [ts_builtin_sym_end] = ACTIONS(2813), + [sym_identifier] = ACTIONS(2811), + [aux_sym_preproc_include_token1] = ACTIONS(2811), + [aux_sym_preproc_def_token1] = ACTIONS(2811), + [aux_sym_preproc_if_token1] = ACTIONS(2811), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2811), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2811), + [sym_preproc_directive] = ACTIONS(2811), + [anon_sym_LPAREN2] = ACTIONS(2813), + [anon_sym_BANG] = ACTIONS(2813), + [anon_sym_TILDE] = ACTIONS(2813), + [anon_sym_DASH] = ACTIONS(2811), + [anon_sym_PLUS] = ACTIONS(2811), + [anon_sym_STAR] = ACTIONS(2813), + [anon_sym_AMP_AMP] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2811), + [anon_sym_SEMI] = ACTIONS(2813), + [anon_sym___extension__] = ACTIONS(2811), + [anon_sym_typedef] = ACTIONS(2811), + [anon_sym_virtual] = ACTIONS(2811), + [anon_sym_extern] = ACTIONS(2811), + [anon_sym___attribute__] = ACTIONS(2811), + [anon_sym___attribute] = ACTIONS(2811), + [anon_sym_using] = ACTIONS(2811), + [anon_sym_COLON_COLON] = ACTIONS(2813), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2813), + [anon_sym___declspec] = ACTIONS(2811), + [anon_sym___based] = ACTIONS(2811), + [anon_sym___cdecl] = ACTIONS(2811), + [anon_sym___clrcall] = ACTIONS(2811), + [anon_sym___stdcall] = ACTIONS(2811), + [anon_sym___fastcall] = ACTIONS(2811), + [anon_sym___thiscall] = ACTIONS(2811), + [anon_sym___vectorcall] = ACTIONS(2811), + [anon_sym_LBRACE] = ACTIONS(2813), + [anon_sym_signed] = ACTIONS(2811), + [anon_sym_unsigned] = ACTIONS(2811), + [anon_sym_long] = ACTIONS(2811), + [anon_sym_short] = ACTIONS(2811), + [anon_sym_LBRACK] = ACTIONS(2811), + [anon_sym_static] = ACTIONS(2811), + [anon_sym_register] = ACTIONS(2811), + [anon_sym_inline] = ACTIONS(2811), + [anon_sym___inline] = ACTIONS(2811), + [anon_sym___inline__] = ACTIONS(2811), + [anon_sym___forceinline] = ACTIONS(2811), + [anon_sym_thread_local] = ACTIONS(2811), + [anon_sym___thread] = ACTIONS(2811), + [anon_sym_const] = ACTIONS(2811), + [anon_sym_constexpr] = ACTIONS(2811), + [anon_sym_volatile] = ACTIONS(2811), + [anon_sym_restrict] = ACTIONS(2811), + [anon_sym___restrict__] = ACTIONS(2811), + [anon_sym__Atomic] = ACTIONS(2811), + [anon_sym__Noreturn] = ACTIONS(2811), + [anon_sym_noreturn] = ACTIONS(2811), + [anon_sym__Nonnull] = ACTIONS(2811), + [anon_sym_mutable] = ACTIONS(2811), + [anon_sym_constinit] = ACTIONS(2811), + [anon_sym_consteval] = ACTIONS(2811), + [anon_sym_alignas] = ACTIONS(2811), + [anon_sym__Alignas] = ACTIONS(2811), + [sym_primitive_type] = ACTIONS(2811), + [anon_sym_enum] = ACTIONS(2811), + [anon_sym_class] = ACTIONS(2811), + [anon_sym_struct] = ACTIONS(2811), + [anon_sym_union] = ACTIONS(2811), + [anon_sym_if] = ACTIONS(2811), + [anon_sym_switch] = ACTIONS(2811), + [anon_sym_case] = ACTIONS(2811), + [anon_sym_default] = ACTIONS(2811), + [anon_sym_while] = ACTIONS(2811), + [anon_sym_do] = ACTIONS(2811), + [anon_sym_for] = ACTIONS(2811), + [anon_sym_return] = ACTIONS(2811), + [anon_sym_break] = ACTIONS(2811), + [anon_sym_continue] = ACTIONS(2811), + [anon_sym_goto] = ACTIONS(2811), + [anon_sym_not] = ACTIONS(2811), + [anon_sym_compl] = ACTIONS(2811), + [anon_sym_DASH_DASH] = ACTIONS(2813), + [anon_sym_PLUS_PLUS] = ACTIONS(2813), + [anon_sym_sizeof] = ACTIONS(2811), + [anon_sym___alignof__] = ACTIONS(2811), + [anon_sym___alignof] = ACTIONS(2811), + [anon_sym__alignof] = ACTIONS(2811), + [anon_sym_alignof] = ACTIONS(2811), + [anon_sym__Alignof] = ACTIONS(2811), + [anon_sym_offsetof] = ACTIONS(2811), + [anon_sym__Generic] = ACTIONS(2811), + [anon_sym_asm] = ACTIONS(2811), + [anon_sym___asm__] = ACTIONS(2811), + [anon_sym___asm] = ACTIONS(2811), + [sym_number_literal] = ACTIONS(2813), + [anon_sym_L_SQUOTE] = ACTIONS(2813), + [anon_sym_u_SQUOTE] = ACTIONS(2813), + [anon_sym_U_SQUOTE] = ACTIONS(2813), + [anon_sym_u8_SQUOTE] = ACTIONS(2813), + [anon_sym_SQUOTE] = ACTIONS(2813), + [anon_sym_L_DQUOTE] = ACTIONS(2813), + [anon_sym_u_DQUOTE] = ACTIONS(2813), + [anon_sym_U_DQUOTE] = ACTIONS(2813), + [anon_sym_u8_DQUOTE] = ACTIONS(2813), + [anon_sym_DQUOTE] = ACTIONS(2813), + [sym_true] = ACTIONS(2811), + [sym_false] = ACTIONS(2811), + [anon_sym_NULL] = ACTIONS(2811), + [anon_sym_nullptr] = ACTIONS(2811), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2895), - [anon_sym_decltype] = ACTIONS(2895), - [anon_sym_explicit] = ACTIONS(2895), - [anon_sym_typename] = ACTIONS(2895), - [anon_sym_export] = ACTIONS(2895), - [anon_sym_module] = ACTIONS(2895), - [anon_sym_import] = ACTIONS(2895), - [anon_sym_template] = ACTIONS(2895), - [anon_sym_operator] = ACTIONS(2895), - [anon_sym_try] = ACTIONS(2895), - [anon_sym_delete] = ACTIONS(2895), - [anon_sym_throw] = ACTIONS(2895), - [anon_sym_namespace] = ACTIONS(2895), - [anon_sym_static_assert] = ACTIONS(2895), - [anon_sym_concept] = ACTIONS(2895), - [anon_sym_co_return] = ACTIONS(2895), - [anon_sym_co_yield] = ACTIONS(2895), - [anon_sym_R_DQUOTE] = ACTIONS(2897), - [anon_sym_LR_DQUOTE] = ACTIONS(2897), - [anon_sym_uR_DQUOTE] = ACTIONS(2897), - [anon_sym_UR_DQUOTE] = ACTIONS(2897), - [anon_sym_u8R_DQUOTE] = ACTIONS(2897), - [anon_sym_co_await] = ACTIONS(2895), - [anon_sym_new] = ACTIONS(2895), - [anon_sym_requires] = ACTIONS(2895), - [sym_this] = ACTIONS(2895), + [sym_auto] = ACTIONS(2811), + [anon_sym_decltype] = ACTIONS(2811), + [anon_sym_explicit] = ACTIONS(2811), + [anon_sym_typename] = ACTIONS(2811), + [anon_sym_export] = ACTIONS(2811), + [anon_sym_module] = ACTIONS(2811), + [anon_sym_import] = ACTIONS(2811), + [anon_sym_template] = ACTIONS(2811), + [anon_sym_operator] = ACTIONS(2811), + [anon_sym_try] = ACTIONS(2811), + [anon_sym_delete] = ACTIONS(2811), + [anon_sym_throw] = ACTIONS(2811), + [anon_sym_namespace] = ACTIONS(2811), + [anon_sym_static_assert] = ACTIONS(2811), + [anon_sym_concept] = ACTIONS(2811), + [anon_sym_co_return] = ACTIONS(2811), + [anon_sym_co_yield] = ACTIONS(2811), + [anon_sym_R_DQUOTE] = ACTIONS(2813), + [anon_sym_LR_DQUOTE] = ACTIONS(2813), + [anon_sym_uR_DQUOTE] = ACTIONS(2813), + [anon_sym_UR_DQUOTE] = ACTIONS(2813), + [anon_sym_u8R_DQUOTE] = ACTIONS(2813), + [anon_sym_co_await] = ACTIONS(2811), + [anon_sym_new] = ACTIONS(2811), + [anon_sym_requires] = ACTIONS(2811), + [sym_this] = ACTIONS(2811), }, - [630] = { - [sym_identifier] = ACTIONS(2643), - [aux_sym_preproc_include_token1] = ACTIONS(2643), - [aux_sym_preproc_def_token1] = ACTIONS(2643), - [aux_sym_preproc_if_token1] = ACTIONS(2643), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2643), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2643), - [sym_preproc_directive] = ACTIONS(2643), - [anon_sym_LPAREN2] = ACTIONS(2645), - [anon_sym_BANG] = ACTIONS(2645), - [anon_sym_TILDE] = ACTIONS(2645), - [anon_sym_DASH] = ACTIONS(2643), - [anon_sym_PLUS] = ACTIONS(2643), - [anon_sym_STAR] = ACTIONS(2645), - [anon_sym_AMP_AMP] = ACTIONS(2645), - [anon_sym_AMP] = ACTIONS(2643), - [anon_sym_SEMI] = ACTIONS(2645), - [anon_sym___extension__] = ACTIONS(2643), - [anon_sym_typedef] = ACTIONS(2643), - [anon_sym_virtual] = ACTIONS(2643), - [anon_sym_extern] = ACTIONS(2643), - [anon_sym___attribute__] = ACTIONS(2643), - [anon_sym___attribute] = ACTIONS(2643), - [anon_sym_using] = ACTIONS(2643), - [anon_sym_COLON_COLON] = ACTIONS(2645), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2645), - [anon_sym___declspec] = ACTIONS(2643), - [anon_sym___based] = ACTIONS(2643), - [anon_sym___cdecl] = ACTIONS(2643), - [anon_sym___clrcall] = ACTIONS(2643), - [anon_sym___stdcall] = ACTIONS(2643), - [anon_sym___fastcall] = ACTIONS(2643), - [anon_sym___thiscall] = ACTIONS(2643), - [anon_sym___vectorcall] = ACTIONS(2643), - [anon_sym_LBRACE] = ACTIONS(2645), - [anon_sym_RBRACE] = ACTIONS(2645), - [anon_sym_signed] = ACTIONS(2643), - [anon_sym_unsigned] = ACTIONS(2643), - [anon_sym_long] = ACTIONS(2643), - [anon_sym_short] = ACTIONS(2643), - [anon_sym_LBRACK] = ACTIONS(2643), - [anon_sym_static] = ACTIONS(2643), - [anon_sym_register] = ACTIONS(2643), - [anon_sym_inline] = ACTIONS(2643), - [anon_sym___inline] = ACTIONS(2643), - [anon_sym___inline__] = ACTIONS(2643), - [anon_sym___forceinline] = ACTIONS(2643), - [anon_sym_thread_local] = ACTIONS(2643), - [anon_sym___thread] = ACTIONS(2643), - [anon_sym_const] = ACTIONS(2643), - [anon_sym_constexpr] = ACTIONS(2643), - [anon_sym_volatile] = ACTIONS(2643), - [anon_sym_restrict] = ACTIONS(2643), - [anon_sym___restrict__] = ACTIONS(2643), - [anon_sym__Atomic] = ACTIONS(2643), - [anon_sym__Noreturn] = ACTIONS(2643), - [anon_sym_noreturn] = ACTIONS(2643), - [anon_sym__Nonnull] = ACTIONS(2643), - [anon_sym_mutable] = ACTIONS(2643), - [anon_sym_constinit] = ACTIONS(2643), - [anon_sym_consteval] = ACTIONS(2643), - [anon_sym_alignas] = ACTIONS(2643), - [anon_sym__Alignas] = ACTIONS(2643), - [sym_primitive_type] = ACTIONS(2643), - [anon_sym_enum] = ACTIONS(2643), - [anon_sym_class] = ACTIONS(2643), - [anon_sym_struct] = ACTIONS(2643), - [anon_sym_union] = ACTIONS(2643), - [anon_sym_if] = ACTIONS(2643), - [anon_sym_else] = ACTIONS(2643), - [anon_sym_switch] = ACTIONS(2643), - [anon_sym_case] = ACTIONS(2643), - [anon_sym_default] = ACTIONS(2643), - [anon_sym_while] = ACTIONS(2643), - [anon_sym_do] = ACTIONS(2643), - [anon_sym_for] = ACTIONS(2643), - [anon_sym_return] = ACTIONS(2643), - [anon_sym_break] = ACTIONS(2643), - [anon_sym_continue] = ACTIONS(2643), - [anon_sym_goto] = ACTIONS(2643), - [anon_sym___try] = ACTIONS(2643), - [anon_sym___leave] = ACTIONS(2643), - [anon_sym_not] = ACTIONS(2643), - [anon_sym_compl] = ACTIONS(2643), - [anon_sym_DASH_DASH] = ACTIONS(2645), - [anon_sym_PLUS_PLUS] = ACTIONS(2645), - [anon_sym_sizeof] = ACTIONS(2643), - [anon_sym___alignof__] = ACTIONS(2643), - [anon_sym___alignof] = ACTIONS(2643), - [anon_sym__alignof] = ACTIONS(2643), - [anon_sym_alignof] = ACTIONS(2643), - [anon_sym__Alignof] = ACTIONS(2643), - [anon_sym_offsetof] = ACTIONS(2643), - [anon_sym__Generic] = ACTIONS(2643), - [anon_sym_asm] = ACTIONS(2643), - [anon_sym___asm__] = ACTIONS(2643), - [anon_sym___asm] = ACTIONS(2643), - [sym_number_literal] = ACTIONS(2645), - [anon_sym_L_SQUOTE] = ACTIONS(2645), - [anon_sym_u_SQUOTE] = ACTIONS(2645), - [anon_sym_U_SQUOTE] = ACTIONS(2645), - [anon_sym_u8_SQUOTE] = ACTIONS(2645), - [anon_sym_SQUOTE] = ACTIONS(2645), - [anon_sym_L_DQUOTE] = ACTIONS(2645), - [anon_sym_u_DQUOTE] = ACTIONS(2645), - [anon_sym_U_DQUOTE] = ACTIONS(2645), - [anon_sym_u8_DQUOTE] = ACTIONS(2645), - [anon_sym_DQUOTE] = ACTIONS(2645), - [sym_true] = ACTIONS(2643), - [sym_false] = ACTIONS(2643), - [anon_sym_NULL] = ACTIONS(2643), - [anon_sym_nullptr] = ACTIONS(2643), + [640] = { + [sym_identifier] = ACTIONS(2735), + [aux_sym_preproc_include_token1] = ACTIONS(2735), + [aux_sym_preproc_def_token1] = ACTIONS(2735), + [aux_sym_preproc_if_token1] = ACTIONS(2735), + [aux_sym_preproc_if_token2] = ACTIONS(2735), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2735), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2735), + [sym_preproc_directive] = ACTIONS(2735), + [anon_sym_LPAREN2] = ACTIONS(2737), + [anon_sym_BANG] = ACTIONS(2737), + [anon_sym_TILDE] = ACTIONS(2737), + [anon_sym_DASH] = ACTIONS(2735), + [anon_sym_PLUS] = ACTIONS(2735), + [anon_sym_STAR] = ACTIONS(2737), + [anon_sym_AMP_AMP] = ACTIONS(2737), + [anon_sym_AMP] = ACTIONS(2735), + [anon_sym_SEMI] = ACTIONS(2737), + [anon_sym___extension__] = ACTIONS(2735), + [anon_sym_typedef] = ACTIONS(2735), + [anon_sym_virtual] = ACTIONS(2735), + [anon_sym_extern] = ACTIONS(2735), + [anon_sym___attribute__] = ACTIONS(2735), + [anon_sym___attribute] = ACTIONS(2735), + [anon_sym_using] = ACTIONS(2735), + [anon_sym_COLON_COLON] = ACTIONS(2737), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2737), + [anon_sym___declspec] = ACTIONS(2735), + [anon_sym___based] = ACTIONS(2735), + [anon_sym___cdecl] = ACTIONS(2735), + [anon_sym___clrcall] = ACTIONS(2735), + [anon_sym___stdcall] = ACTIONS(2735), + [anon_sym___fastcall] = ACTIONS(2735), + [anon_sym___thiscall] = ACTIONS(2735), + [anon_sym___vectorcall] = ACTIONS(2735), + [anon_sym_LBRACE] = ACTIONS(2737), + [anon_sym_signed] = ACTIONS(2735), + [anon_sym_unsigned] = ACTIONS(2735), + [anon_sym_long] = ACTIONS(2735), + [anon_sym_short] = ACTIONS(2735), + [anon_sym_LBRACK] = ACTIONS(2735), + [anon_sym_static] = ACTIONS(2735), + [anon_sym_register] = ACTIONS(2735), + [anon_sym_inline] = ACTIONS(2735), + [anon_sym___inline] = ACTIONS(2735), + [anon_sym___inline__] = ACTIONS(2735), + [anon_sym___forceinline] = ACTIONS(2735), + [anon_sym_thread_local] = ACTIONS(2735), + [anon_sym___thread] = ACTIONS(2735), + [anon_sym_const] = ACTIONS(2735), + [anon_sym_constexpr] = ACTIONS(2735), + [anon_sym_volatile] = ACTIONS(2735), + [anon_sym_restrict] = ACTIONS(2735), + [anon_sym___restrict__] = ACTIONS(2735), + [anon_sym__Atomic] = ACTIONS(2735), + [anon_sym__Noreturn] = ACTIONS(2735), + [anon_sym_noreturn] = ACTIONS(2735), + [anon_sym__Nonnull] = ACTIONS(2735), + [anon_sym_mutable] = ACTIONS(2735), + [anon_sym_constinit] = ACTIONS(2735), + [anon_sym_consteval] = ACTIONS(2735), + [anon_sym_alignas] = ACTIONS(2735), + [anon_sym__Alignas] = ACTIONS(2735), + [sym_primitive_type] = ACTIONS(2735), + [anon_sym_enum] = ACTIONS(2735), + [anon_sym_class] = ACTIONS(2735), + [anon_sym_struct] = ACTIONS(2735), + [anon_sym_union] = ACTIONS(2735), + [anon_sym_if] = ACTIONS(2735), + [anon_sym_else] = ACTIONS(2735), + [anon_sym_switch] = ACTIONS(2735), + [anon_sym_case] = ACTIONS(2735), + [anon_sym_default] = ACTIONS(2735), + [anon_sym_while] = ACTIONS(2735), + [anon_sym_do] = ACTIONS(2735), + [anon_sym_for] = ACTIONS(2735), + [anon_sym_return] = ACTIONS(2735), + [anon_sym_break] = ACTIONS(2735), + [anon_sym_continue] = ACTIONS(2735), + [anon_sym_goto] = ACTIONS(2735), + [anon_sym___try] = ACTIONS(2735), + [anon_sym___leave] = ACTIONS(2735), + [anon_sym_not] = ACTIONS(2735), + [anon_sym_compl] = ACTIONS(2735), + [anon_sym_DASH_DASH] = ACTIONS(2737), + [anon_sym_PLUS_PLUS] = ACTIONS(2737), + [anon_sym_sizeof] = ACTIONS(2735), + [anon_sym___alignof__] = ACTIONS(2735), + [anon_sym___alignof] = ACTIONS(2735), + [anon_sym__alignof] = ACTIONS(2735), + [anon_sym_alignof] = ACTIONS(2735), + [anon_sym__Alignof] = ACTIONS(2735), + [anon_sym_offsetof] = ACTIONS(2735), + [anon_sym__Generic] = ACTIONS(2735), + [anon_sym_asm] = ACTIONS(2735), + [anon_sym___asm__] = ACTIONS(2735), + [anon_sym___asm] = ACTIONS(2735), + [sym_number_literal] = ACTIONS(2737), + [anon_sym_L_SQUOTE] = ACTIONS(2737), + [anon_sym_u_SQUOTE] = ACTIONS(2737), + [anon_sym_U_SQUOTE] = ACTIONS(2737), + [anon_sym_u8_SQUOTE] = ACTIONS(2737), + [anon_sym_SQUOTE] = ACTIONS(2737), + [anon_sym_L_DQUOTE] = ACTIONS(2737), + [anon_sym_u_DQUOTE] = ACTIONS(2737), + [anon_sym_U_DQUOTE] = ACTIONS(2737), + [anon_sym_u8_DQUOTE] = ACTIONS(2737), + [anon_sym_DQUOTE] = ACTIONS(2737), + [sym_true] = ACTIONS(2735), + [sym_false] = ACTIONS(2735), + [anon_sym_NULL] = ACTIONS(2735), + [anon_sym_nullptr] = ACTIONS(2735), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2643), - [anon_sym_decltype] = ACTIONS(2643), - [anon_sym_explicit] = ACTIONS(2643), - [anon_sym_typename] = ACTIONS(2643), - [anon_sym_template] = ACTIONS(2643), - [anon_sym_operator] = ACTIONS(2643), - [anon_sym_try] = ACTIONS(2643), - [anon_sym_delete] = ACTIONS(2643), - [anon_sym_throw] = ACTIONS(2643), - [anon_sym_namespace] = ACTIONS(2643), - [anon_sym_static_assert] = ACTIONS(2643), - [anon_sym_concept] = ACTIONS(2643), - [anon_sym_co_return] = ACTIONS(2643), - [anon_sym_co_yield] = ACTIONS(2643), - [anon_sym_R_DQUOTE] = ACTIONS(2645), - [anon_sym_LR_DQUOTE] = ACTIONS(2645), - [anon_sym_uR_DQUOTE] = ACTIONS(2645), - [anon_sym_UR_DQUOTE] = ACTIONS(2645), - [anon_sym_u8R_DQUOTE] = ACTIONS(2645), - [anon_sym_co_await] = ACTIONS(2643), - [anon_sym_new] = ACTIONS(2643), - [anon_sym_requires] = ACTIONS(2643), - [sym_this] = ACTIONS(2643), + [sym_auto] = ACTIONS(2735), + [anon_sym_decltype] = ACTIONS(2735), + [anon_sym_explicit] = ACTIONS(2735), + [anon_sym_typename] = ACTIONS(2735), + [anon_sym_template] = ACTIONS(2735), + [anon_sym_operator] = ACTIONS(2735), + [anon_sym_try] = ACTIONS(2735), + [anon_sym_delete] = ACTIONS(2735), + [anon_sym_throw] = ACTIONS(2735), + [anon_sym_namespace] = ACTIONS(2735), + [anon_sym_static_assert] = ACTIONS(2735), + [anon_sym_concept] = ACTIONS(2735), + [anon_sym_co_return] = ACTIONS(2735), + [anon_sym_co_yield] = ACTIONS(2735), + [anon_sym_R_DQUOTE] = ACTIONS(2737), + [anon_sym_LR_DQUOTE] = ACTIONS(2737), + [anon_sym_uR_DQUOTE] = ACTIONS(2737), + [anon_sym_UR_DQUOTE] = ACTIONS(2737), + [anon_sym_u8R_DQUOTE] = ACTIONS(2737), + [anon_sym_co_await] = ACTIONS(2735), + [anon_sym_new] = ACTIONS(2735), + [anon_sym_requires] = ACTIONS(2735), + [sym_this] = ACTIONS(2735), }, - [631] = { - [ts_builtin_sym_end] = ACTIONS(2909), - [sym_identifier] = ACTIONS(2907), - [aux_sym_preproc_include_token1] = ACTIONS(2907), - [aux_sym_preproc_def_token1] = ACTIONS(2907), - [aux_sym_preproc_if_token1] = ACTIONS(2907), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2907), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2907), - [sym_preproc_directive] = ACTIONS(2907), - [anon_sym_LPAREN2] = ACTIONS(2909), - [anon_sym_BANG] = ACTIONS(2909), - [anon_sym_TILDE] = ACTIONS(2909), - [anon_sym_DASH] = ACTIONS(2907), - [anon_sym_PLUS] = ACTIONS(2907), - [anon_sym_STAR] = ACTIONS(2909), - [anon_sym_AMP_AMP] = ACTIONS(2909), - [anon_sym_AMP] = ACTIONS(2907), - [anon_sym_SEMI] = ACTIONS(2909), - [anon_sym___extension__] = ACTIONS(2907), - [anon_sym_typedef] = ACTIONS(2907), - [anon_sym_virtual] = ACTIONS(2907), - [anon_sym_extern] = ACTIONS(2907), - [anon_sym___attribute__] = ACTIONS(2907), - [anon_sym___attribute] = ACTIONS(2907), - [anon_sym_using] = ACTIONS(2907), - [anon_sym_COLON_COLON] = ACTIONS(2909), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2909), - [anon_sym___declspec] = ACTIONS(2907), - [anon_sym___based] = ACTIONS(2907), - [anon_sym___cdecl] = ACTIONS(2907), - [anon_sym___clrcall] = ACTIONS(2907), - [anon_sym___stdcall] = ACTIONS(2907), - [anon_sym___fastcall] = ACTIONS(2907), - [anon_sym___thiscall] = ACTIONS(2907), - [anon_sym___vectorcall] = ACTIONS(2907), - [anon_sym_LBRACE] = ACTIONS(2909), - [anon_sym_signed] = ACTIONS(2907), - [anon_sym_unsigned] = ACTIONS(2907), - [anon_sym_long] = ACTIONS(2907), - [anon_sym_short] = ACTIONS(2907), - [anon_sym_LBRACK] = ACTIONS(2907), - [anon_sym_static] = ACTIONS(2907), - [anon_sym_register] = ACTIONS(2907), - [anon_sym_inline] = ACTIONS(2907), - [anon_sym___inline] = ACTIONS(2907), - [anon_sym___inline__] = ACTIONS(2907), - [anon_sym___forceinline] = ACTIONS(2907), - [anon_sym_thread_local] = ACTIONS(2907), - [anon_sym___thread] = ACTIONS(2907), - [anon_sym_const] = ACTIONS(2907), - [anon_sym_constexpr] = ACTIONS(2907), - [anon_sym_volatile] = ACTIONS(2907), - [anon_sym_restrict] = ACTIONS(2907), - [anon_sym___restrict__] = ACTIONS(2907), - [anon_sym__Atomic] = ACTIONS(2907), - [anon_sym__Noreturn] = ACTIONS(2907), - [anon_sym_noreturn] = ACTIONS(2907), - [anon_sym__Nonnull] = ACTIONS(2907), - [anon_sym_mutable] = ACTIONS(2907), - [anon_sym_constinit] = ACTIONS(2907), - [anon_sym_consteval] = ACTIONS(2907), - [anon_sym_alignas] = ACTIONS(2907), - [anon_sym__Alignas] = ACTIONS(2907), - [sym_primitive_type] = ACTIONS(2907), - [anon_sym_enum] = ACTIONS(2907), - [anon_sym_class] = ACTIONS(2907), - [anon_sym_struct] = ACTIONS(2907), - [anon_sym_union] = ACTIONS(2907), - [anon_sym_if] = ACTIONS(2907), - [anon_sym_switch] = ACTIONS(2907), - [anon_sym_case] = ACTIONS(2907), - [anon_sym_default] = ACTIONS(2907), - [anon_sym_while] = ACTIONS(2907), - [anon_sym_do] = ACTIONS(2907), - [anon_sym_for] = ACTIONS(2907), - [anon_sym_return] = ACTIONS(2907), - [anon_sym_break] = ACTIONS(2907), - [anon_sym_continue] = ACTIONS(2907), - [anon_sym_goto] = ACTIONS(2907), - [anon_sym_not] = ACTIONS(2907), - [anon_sym_compl] = ACTIONS(2907), - [anon_sym_DASH_DASH] = ACTIONS(2909), - [anon_sym_PLUS_PLUS] = ACTIONS(2909), - [anon_sym_sizeof] = ACTIONS(2907), - [anon_sym___alignof__] = ACTIONS(2907), - [anon_sym___alignof] = ACTIONS(2907), - [anon_sym__alignof] = ACTIONS(2907), - [anon_sym_alignof] = ACTIONS(2907), - [anon_sym__Alignof] = ACTIONS(2907), - [anon_sym_offsetof] = ACTIONS(2907), - [anon_sym__Generic] = ACTIONS(2907), - [anon_sym_asm] = ACTIONS(2907), - [anon_sym___asm__] = ACTIONS(2907), - [anon_sym___asm] = ACTIONS(2907), - [sym_number_literal] = ACTIONS(2909), - [anon_sym_L_SQUOTE] = ACTIONS(2909), - [anon_sym_u_SQUOTE] = ACTIONS(2909), - [anon_sym_U_SQUOTE] = ACTIONS(2909), - [anon_sym_u8_SQUOTE] = ACTIONS(2909), - [anon_sym_SQUOTE] = ACTIONS(2909), - [anon_sym_L_DQUOTE] = ACTIONS(2909), - [anon_sym_u_DQUOTE] = ACTIONS(2909), - [anon_sym_U_DQUOTE] = ACTIONS(2909), - [anon_sym_u8_DQUOTE] = ACTIONS(2909), - [anon_sym_DQUOTE] = ACTIONS(2909), - [sym_true] = ACTIONS(2907), - [sym_false] = ACTIONS(2907), - [anon_sym_NULL] = ACTIONS(2907), - [anon_sym_nullptr] = ACTIONS(2907), + [641] = { + [sym_identifier] = ACTIONS(2647), + [aux_sym_preproc_include_token1] = ACTIONS(2647), + [aux_sym_preproc_def_token1] = ACTIONS(2647), + [aux_sym_preproc_if_token1] = ACTIONS(2647), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2647), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2647), + [sym_preproc_directive] = ACTIONS(2647), + [anon_sym_LPAREN2] = ACTIONS(2649), + [anon_sym_BANG] = ACTIONS(2649), + [anon_sym_TILDE] = ACTIONS(2649), + [anon_sym_DASH] = ACTIONS(2647), + [anon_sym_PLUS] = ACTIONS(2647), + [anon_sym_STAR] = ACTIONS(2649), + [anon_sym_AMP_AMP] = ACTIONS(2649), + [anon_sym_AMP] = ACTIONS(2647), + [anon_sym_SEMI] = ACTIONS(2649), + [anon_sym___extension__] = ACTIONS(2647), + [anon_sym_typedef] = ACTIONS(2647), + [anon_sym_virtual] = ACTIONS(2647), + [anon_sym_extern] = ACTIONS(2647), + [anon_sym___attribute__] = ACTIONS(2647), + [anon_sym___attribute] = ACTIONS(2647), + [anon_sym_using] = ACTIONS(2647), + [anon_sym_COLON_COLON] = ACTIONS(2649), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2649), + [anon_sym___declspec] = ACTIONS(2647), + [anon_sym___based] = ACTIONS(2647), + [anon_sym___cdecl] = ACTIONS(2647), + [anon_sym___clrcall] = ACTIONS(2647), + [anon_sym___stdcall] = ACTIONS(2647), + [anon_sym___fastcall] = ACTIONS(2647), + [anon_sym___thiscall] = ACTIONS(2647), + [anon_sym___vectorcall] = ACTIONS(2647), + [anon_sym_LBRACE] = ACTIONS(2649), + [anon_sym_RBRACE] = ACTIONS(2649), + [anon_sym_signed] = ACTIONS(2647), + [anon_sym_unsigned] = ACTIONS(2647), + [anon_sym_long] = ACTIONS(2647), + [anon_sym_short] = ACTIONS(2647), + [anon_sym_LBRACK] = ACTIONS(2647), + [anon_sym_static] = ACTIONS(2647), + [anon_sym_register] = ACTIONS(2647), + [anon_sym_inline] = ACTIONS(2647), + [anon_sym___inline] = ACTIONS(2647), + [anon_sym___inline__] = ACTIONS(2647), + [anon_sym___forceinline] = ACTIONS(2647), + [anon_sym_thread_local] = ACTIONS(2647), + [anon_sym___thread] = ACTIONS(2647), + [anon_sym_const] = ACTIONS(2647), + [anon_sym_constexpr] = ACTIONS(2647), + [anon_sym_volatile] = ACTIONS(2647), + [anon_sym_restrict] = ACTIONS(2647), + [anon_sym___restrict__] = ACTIONS(2647), + [anon_sym__Atomic] = ACTIONS(2647), + [anon_sym__Noreturn] = ACTIONS(2647), + [anon_sym_noreturn] = ACTIONS(2647), + [anon_sym__Nonnull] = ACTIONS(2647), + [anon_sym_mutable] = ACTIONS(2647), + [anon_sym_constinit] = ACTIONS(2647), + [anon_sym_consteval] = ACTIONS(2647), + [anon_sym_alignas] = ACTIONS(2647), + [anon_sym__Alignas] = ACTIONS(2647), + [sym_primitive_type] = ACTIONS(2647), + [anon_sym_enum] = ACTIONS(2647), + [anon_sym_class] = ACTIONS(2647), + [anon_sym_struct] = ACTIONS(2647), + [anon_sym_union] = ACTIONS(2647), + [anon_sym_if] = ACTIONS(2647), + [anon_sym_else] = ACTIONS(2647), + [anon_sym_switch] = ACTIONS(2647), + [anon_sym_case] = ACTIONS(2647), + [anon_sym_default] = ACTIONS(2647), + [anon_sym_while] = ACTIONS(2647), + [anon_sym_do] = ACTIONS(2647), + [anon_sym_for] = ACTIONS(2647), + [anon_sym_return] = ACTIONS(2647), + [anon_sym_break] = ACTIONS(2647), + [anon_sym_continue] = ACTIONS(2647), + [anon_sym_goto] = ACTIONS(2647), + [anon_sym___try] = ACTIONS(2647), + [anon_sym___leave] = ACTIONS(2647), + [anon_sym_not] = ACTIONS(2647), + [anon_sym_compl] = ACTIONS(2647), + [anon_sym_DASH_DASH] = ACTIONS(2649), + [anon_sym_PLUS_PLUS] = ACTIONS(2649), + [anon_sym_sizeof] = ACTIONS(2647), + [anon_sym___alignof__] = ACTIONS(2647), + [anon_sym___alignof] = ACTIONS(2647), + [anon_sym__alignof] = ACTIONS(2647), + [anon_sym_alignof] = ACTIONS(2647), + [anon_sym__Alignof] = ACTIONS(2647), + [anon_sym_offsetof] = ACTIONS(2647), + [anon_sym__Generic] = ACTIONS(2647), + [anon_sym_asm] = ACTIONS(2647), + [anon_sym___asm__] = ACTIONS(2647), + [anon_sym___asm] = ACTIONS(2647), + [sym_number_literal] = ACTIONS(2649), + [anon_sym_L_SQUOTE] = ACTIONS(2649), + [anon_sym_u_SQUOTE] = ACTIONS(2649), + [anon_sym_U_SQUOTE] = ACTIONS(2649), + [anon_sym_u8_SQUOTE] = ACTIONS(2649), + [anon_sym_SQUOTE] = ACTIONS(2649), + [anon_sym_L_DQUOTE] = ACTIONS(2649), + [anon_sym_u_DQUOTE] = ACTIONS(2649), + [anon_sym_U_DQUOTE] = ACTIONS(2649), + [anon_sym_u8_DQUOTE] = ACTIONS(2649), + [anon_sym_DQUOTE] = ACTIONS(2649), + [sym_true] = ACTIONS(2647), + [sym_false] = ACTIONS(2647), + [anon_sym_NULL] = ACTIONS(2647), + [anon_sym_nullptr] = ACTIONS(2647), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2907), - [anon_sym_decltype] = ACTIONS(2907), - [anon_sym_explicit] = ACTIONS(2907), - [anon_sym_typename] = ACTIONS(2907), - [anon_sym_export] = ACTIONS(2907), - [anon_sym_module] = ACTIONS(2907), - [anon_sym_import] = ACTIONS(2907), - [anon_sym_template] = ACTIONS(2907), - [anon_sym_operator] = ACTIONS(2907), - [anon_sym_try] = ACTIONS(2907), - [anon_sym_delete] = ACTIONS(2907), - [anon_sym_throw] = ACTIONS(2907), - [anon_sym_namespace] = ACTIONS(2907), - [anon_sym_static_assert] = ACTIONS(2907), - [anon_sym_concept] = ACTIONS(2907), - [anon_sym_co_return] = ACTIONS(2907), - [anon_sym_co_yield] = ACTIONS(2907), - [anon_sym_R_DQUOTE] = ACTIONS(2909), - [anon_sym_LR_DQUOTE] = ACTIONS(2909), - [anon_sym_uR_DQUOTE] = ACTIONS(2909), - [anon_sym_UR_DQUOTE] = ACTIONS(2909), - [anon_sym_u8R_DQUOTE] = ACTIONS(2909), - [anon_sym_co_await] = ACTIONS(2907), - [anon_sym_new] = ACTIONS(2907), - [anon_sym_requires] = ACTIONS(2907), - [sym_this] = ACTIONS(2907), + [sym_auto] = ACTIONS(2647), + [anon_sym_decltype] = ACTIONS(2647), + [anon_sym_explicit] = ACTIONS(2647), + [anon_sym_typename] = ACTIONS(2647), + [anon_sym_template] = ACTIONS(2647), + [anon_sym_operator] = ACTIONS(2647), + [anon_sym_try] = ACTIONS(2647), + [anon_sym_delete] = ACTIONS(2647), + [anon_sym_throw] = ACTIONS(2647), + [anon_sym_namespace] = ACTIONS(2647), + [anon_sym_static_assert] = ACTIONS(2647), + [anon_sym_concept] = ACTIONS(2647), + [anon_sym_co_return] = ACTIONS(2647), + [anon_sym_co_yield] = ACTIONS(2647), + [anon_sym_R_DQUOTE] = ACTIONS(2649), + [anon_sym_LR_DQUOTE] = ACTIONS(2649), + [anon_sym_uR_DQUOTE] = ACTIONS(2649), + [anon_sym_UR_DQUOTE] = ACTIONS(2649), + [anon_sym_u8R_DQUOTE] = ACTIONS(2649), + [anon_sym_co_await] = ACTIONS(2647), + [anon_sym_new] = ACTIONS(2647), + [anon_sym_requires] = ACTIONS(2647), + [sym_this] = ACTIONS(2647), }, - [632] = { + [642] = { [sym_identifier] = ACTIONS(2651), [aux_sym_preproc_include_token1] = ACTIONS(2651), [aux_sym_preproc_def_token1] = ACTIONS(2651), @@ -133145,3700 +134826,2067 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2651), [sym_this] = ACTIONS(2651), }, - [633] = { - [sym_identifier] = ACTIONS(2669), - [aux_sym_preproc_include_token1] = ACTIONS(2669), - [aux_sym_preproc_def_token1] = ACTIONS(2669), - [aux_sym_preproc_if_token1] = ACTIONS(2669), - [aux_sym_preproc_if_token2] = ACTIONS(2669), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2669), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2669), - [sym_preproc_directive] = ACTIONS(2669), - [anon_sym_LPAREN2] = ACTIONS(2671), - [anon_sym_BANG] = ACTIONS(2671), - [anon_sym_TILDE] = ACTIONS(2671), - [anon_sym_DASH] = ACTIONS(2669), - [anon_sym_PLUS] = ACTIONS(2669), - [anon_sym_STAR] = ACTIONS(2671), - [anon_sym_AMP_AMP] = ACTIONS(2671), - [anon_sym_AMP] = ACTIONS(2669), - [anon_sym_SEMI] = ACTIONS(2671), - [anon_sym___extension__] = ACTIONS(2669), - [anon_sym_typedef] = ACTIONS(2669), - [anon_sym_virtual] = ACTIONS(2669), - [anon_sym_extern] = ACTIONS(2669), - [anon_sym___attribute__] = ACTIONS(2669), - [anon_sym___attribute] = ACTIONS(2669), - [anon_sym_using] = ACTIONS(2669), - [anon_sym_COLON_COLON] = ACTIONS(2671), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2671), - [anon_sym___declspec] = ACTIONS(2669), - [anon_sym___based] = ACTIONS(2669), - [anon_sym___cdecl] = ACTIONS(2669), - [anon_sym___clrcall] = ACTIONS(2669), - [anon_sym___stdcall] = ACTIONS(2669), - [anon_sym___fastcall] = ACTIONS(2669), - [anon_sym___thiscall] = ACTIONS(2669), - [anon_sym___vectorcall] = ACTIONS(2669), - [anon_sym_LBRACE] = ACTIONS(2671), - [anon_sym_signed] = ACTIONS(2669), - [anon_sym_unsigned] = ACTIONS(2669), - [anon_sym_long] = ACTIONS(2669), - [anon_sym_short] = ACTIONS(2669), - [anon_sym_LBRACK] = ACTIONS(2669), - [anon_sym_static] = ACTIONS(2669), - [anon_sym_register] = ACTIONS(2669), - [anon_sym_inline] = ACTIONS(2669), - [anon_sym___inline] = ACTIONS(2669), - [anon_sym___inline__] = ACTIONS(2669), - [anon_sym___forceinline] = ACTIONS(2669), - [anon_sym_thread_local] = ACTIONS(2669), - [anon_sym___thread] = ACTIONS(2669), - [anon_sym_const] = ACTIONS(2669), - [anon_sym_constexpr] = ACTIONS(2669), - [anon_sym_volatile] = ACTIONS(2669), - [anon_sym_restrict] = ACTIONS(2669), - [anon_sym___restrict__] = ACTIONS(2669), - [anon_sym__Atomic] = ACTIONS(2669), - [anon_sym__Noreturn] = ACTIONS(2669), - [anon_sym_noreturn] = ACTIONS(2669), - [anon_sym__Nonnull] = ACTIONS(2669), - [anon_sym_mutable] = ACTIONS(2669), - [anon_sym_constinit] = ACTIONS(2669), - [anon_sym_consteval] = ACTIONS(2669), - [anon_sym_alignas] = ACTIONS(2669), - [anon_sym__Alignas] = ACTIONS(2669), - [sym_primitive_type] = ACTIONS(2669), - [anon_sym_enum] = ACTIONS(2669), - [anon_sym_class] = ACTIONS(2669), - [anon_sym_struct] = ACTIONS(2669), - [anon_sym_union] = ACTIONS(2669), - [anon_sym_if] = ACTIONS(2669), - [anon_sym_else] = ACTIONS(2669), - [anon_sym_switch] = ACTIONS(2669), - [anon_sym_case] = ACTIONS(2669), - [anon_sym_default] = ACTIONS(2669), - [anon_sym_while] = ACTIONS(2669), - [anon_sym_do] = ACTIONS(2669), - [anon_sym_for] = ACTIONS(2669), - [anon_sym_return] = ACTIONS(2669), - [anon_sym_break] = ACTIONS(2669), - [anon_sym_continue] = ACTIONS(2669), - [anon_sym_goto] = ACTIONS(2669), - [anon_sym___try] = ACTIONS(2669), - [anon_sym___leave] = ACTIONS(2669), - [anon_sym_not] = ACTIONS(2669), - [anon_sym_compl] = ACTIONS(2669), - [anon_sym_DASH_DASH] = ACTIONS(2671), - [anon_sym_PLUS_PLUS] = ACTIONS(2671), - [anon_sym_sizeof] = ACTIONS(2669), - [anon_sym___alignof__] = ACTIONS(2669), - [anon_sym___alignof] = ACTIONS(2669), - [anon_sym__alignof] = ACTIONS(2669), - [anon_sym_alignof] = ACTIONS(2669), - [anon_sym__Alignof] = ACTIONS(2669), - [anon_sym_offsetof] = ACTIONS(2669), - [anon_sym__Generic] = ACTIONS(2669), - [anon_sym_asm] = ACTIONS(2669), - [anon_sym___asm__] = ACTIONS(2669), - [anon_sym___asm] = ACTIONS(2669), - [sym_number_literal] = ACTIONS(2671), - [anon_sym_L_SQUOTE] = ACTIONS(2671), - [anon_sym_u_SQUOTE] = ACTIONS(2671), - [anon_sym_U_SQUOTE] = ACTIONS(2671), - [anon_sym_u8_SQUOTE] = ACTIONS(2671), - [anon_sym_SQUOTE] = ACTIONS(2671), - [anon_sym_L_DQUOTE] = ACTIONS(2671), - [anon_sym_u_DQUOTE] = ACTIONS(2671), - [anon_sym_U_DQUOTE] = ACTIONS(2671), - [anon_sym_u8_DQUOTE] = ACTIONS(2671), - [anon_sym_DQUOTE] = ACTIONS(2671), - [sym_true] = ACTIONS(2669), - [sym_false] = ACTIONS(2669), - [anon_sym_NULL] = ACTIONS(2669), - [anon_sym_nullptr] = ACTIONS(2669), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2669), - [anon_sym_decltype] = ACTIONS(2669), - [anon_sym_explicit] = ACTIONS(2669), - [anon_sym_typename] = ACTIONS(2669), - [anon_sym_template] = ACTIONS(2669), - [anon_sym_operator] = ACTIONS(2669), - [anon_sym_try] = ACTIONS(2669), - [anon_sym_delete] = ACTIONS(2669), - [anon_sym_throw] = ACTIONS(2669), - [anon_sym_namespace] = ACTIONS(2669), - [anon_sym_static_assert] = ACTIONS(2669), - [anon_sym_concept] = ACTIONS(2669), - [anon_sym_co_return] = ACTIONS(2669), - [anon_sym_co_yield] = ACTIONS(2669), - [anon_sym_R_DQUOTE] = ACTIONS(2671), - [anon_sym_LR_DQUOTE] = ACTIONS(2671), - [anon_sym_uR_DQUOTE] = ACTIONS(2671), - [anon_sym_UR_DQUOTE] = ACTIONS(2671), - [anon_sym_u8R_DQUOTE] = ACTIONS(2671), - [anon_sym_co_await] = ACTIONS(2669), - [anon_sym_new] = ACTIONS(2669), - [anon_sym_requires] = ACTIONS(2669), - [sym_this] = ACTIONS(2669), - }, - [634] = { - [ts_builtin_sym_end] = ACTIONS(3110), - [sym_identifier] = ACTIONS(3108), - [aux_sym_preproc_include_token1] = ACTIONS(3108), - [aux_sym_preproc_def_token1] = ACTIONS(3108), - [aux_sym_preproc_if_token1] = ACTIONS(3108), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3108), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3108), - [sym_preproc_directive] = ACTIONS(3108), - [anon_sym_LPAREN2] = ACTIONS(3110), - [anon_sym_BANG] = ACTIONS(3110), - [anon_sym_TILDE] = ACTIONS(3110), - [anon_sym_DASH] = ACTIONS(3108), - [anon_sym_PLUS] = ACTIONS(3108), - [anon_sym_STAR] = ACTIONS(3110), - [anon_sym_AMP_AMP] = ACTIONS(3110), - [anon_sym_AMP] = ACTIONS(3108), - [anon_sym_SEMI] = ACTIONS(3110), - [anon_sym___extension__] = ACTIONS(3108), - [anon_sym_typedef] = ACTIONS(3108), - [anon_sym_virtual] = ACTIONS(3108), - [anon_sym_extern] = ACTIONS(3108), - [anon_sym___attribute__] = ACTIONS(3108), - [anon_sym___attribute] = ACTIONS(3108), - [anon_sym_using] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(3110), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3110), - [anon_sym___declspec] = ACTIONS(3108), - [anon_sym___based] = ACTIONS(3108), - [anon_sym___cdecl] = ACTIONS(3108), - [anon_sym___clrcall] = ACTIONS(3108), - [anon_sym___stdcall] = ACTIONS(3108), - [anon_sym___fastcall] = ACTIONS(3108), - [anon_sym___thiscall] = ACTIONS(3108), - [anon_sym___vectorcall] = ACTIONS(3108), - [anon_sym_LBRACE] = ACTIONS(3110), - [anon_sym_signed] = ACTIONS(3108), - [anon_sym_unsigned] = ACTIONS(3108), - [anon_sym_long] = ACTIONS(3108), - [anon_sym_short] = ACTIONS(3108), - [anon_sym_LBRACK] = ACTIONS(3108), - [anon_sym_static] = ACTIONS(3108), - [anon_sym_register] = ACTIONS(3108), - [anon_sym_inline] = ACTIONS(3108), - [anon_sym___inline] = ACTIONS(3108), - [anon_sym___inline__] = ACTIONS(3108), - [anon_sym___forceinline] = ACTIONS(3108), - [anon_sym_thread_local] = ACTIONS(3108), - [anon_sym___thread] = ACTIONS(3108), - [anon_sym_const] = ACTIONS(3108), - [anon_sym_constexpr] = ACTIONS(3108), - [anon_sym_volatile] = ACTIONS(3108), - [anon_sym_restrict] = ACTIONS(3108), - [anon_sym___restrict__] = ACTIONS(3108), - [anon_sym__Atomic] = ACTIONS(3108), - [anon_sym__Noreturn] = ACTIONS(3108), - [anon_sym_noreturn] = ACTIONS(3108), - [anon_sym__Nonnull] = ACTIONS(3108), - [anon_sym_mutable] = ACTIONS(3108), - [anon_sym_constinit] = ACTIONS(3108), - [anon_sym_consteval] = ACTIONS(3108), - [anon_sym_alignas] = ACTIONS(3108), - [anon_sym__Alignas] = ACTIONS(3108), - [sym_primitive_type] = ACTIONS(3108), - [anon_sym_enum] = ACTIONS(3108), - [anon_sym_class] = ACTIONS(3108), - [anon_sym_struct] = ACTIONS(3108), - [anon_sym_union] = ACTIONS(3108), - [anon_sym_if] = ACTIONS(3108), - [anon_sym_switch] = ACTIONS(3108), - [anon_sym_case] = ACTIONS(3108), - [anon_sym_default] = ACTIONS(3108), - [anon_sym_while] = ACTIONS(3108), - [anon_sym_do] = ACTIONS(3108), - [anon_sym_for] = ACTIONS(3108), - [anon_sym_return] = ACTIONS(3108), - [anon_sym_break] = ACTIONS(3108), - [anon_sym_continue] = ACTIONS(3108), - [anon_sym_goto] = ACTIONS(3108), - [anon_sym_not] = ACTIONS(3108), - [anon_sym_compl] = ACTIONS(3108), - [anon_sym_DASH_DASH] = ACTIONS(3110), - [anon_sym_PLUS_PLUS] = ACTIONS(3110), - [anon_sym_sizeof] = ACTIONS(3108), - [anon_sym___alignof__] = ACTIONS(3108), - [anon_sym___alignof] = ACTIONS(3108), - [anon_sym__alignof] = ACTIONS(3108), - [anon_sym_alignof] = ACTIONS(3108), - [anon_sym__Alignof] = ACTIONS(3108), - [anon_sym_offsetof] = ACTIONS(3108), - [anon_sym__Generic] = ACTIONS(3108), - [anon_sym_asm] = ACTIONS(3108), - [anon_sym___asm__] = ACTIONS(3108), - [anon_sym___asm] = ACTIONS(3108), - [sym_number_literal] = ACTIONS(3110), - [anon_sym_L_SQUOTE] = ACTIONS(3110), - [anon_sym_u_SQUOTE] = ACTIONS(3110), - [anon_sym_U_SQUOTE] = ACTIONS(3110), - [anon_sym_u8_SQUOTE] = ACTIONS(3110), - [anon_sym_SQUOTE] = ACTIONS(3110), - [anon_sym_L_DQUOTE] = ACTIONS(3110), - [anon_sym_u_DQUOTE] = ACTIONS(3110), - [anon_sym_U_DQUOTE] = ACTIONS(3110), - [anon_sym_u8_DQUOTE] = ACTIONS(3110), - [anon_sym_DQUOTE] = ACTIONS(3110), - [sym_true] = ACTIONS(3108), - [sym_false] = ACTIONS(3108), - [anon_sym_NULL] = ACTIONS(3108), - [anon_sym_nullptr] = ACTIONS(3108), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3108), - [anon_sym_decltype] = ACTIONS(3108), - [anon_sym_explicit] = ACTIONS(3108), - [anon_sym_typename] = ACTIONS(3108), - [anon_sym_export] = ACTIONS(3108), - [anon_sym_module] = ACTIONS(3108), - [anon_sym_import] = ACTIONS(3108), - [anon_sym_template] = ACTIONS(3108), - [anon_sym_operator] = ACTIONS(3108), - [anon_sym_try] = ACTIONS(3108), - [anon_sym_delete] = ACTIONS(3108), - [anon_sym_throw] = ACTIONS(3108), - [anon_sym_namespace] = ACTIONS(3108), - [anon_sym_static_assert] = ACTIONS(3108), - [anon_sym_concept] = ACTIONS(3108), - [anon_sym_co_return] = ACTIONS(3108), - [anon_sym_co_yield] = ACTIONS(3108), - [anon_sym_R_DQUOTE] = ACTIONS(3110), - [anon_sym_LR_DQUOTE] = ACTIONS(3110), - [anon_sym_uR_DQUOTE] = ACTIONS(3110), - [anon_sym_UR_DQUOTE] = ACTIONS(3110), - [anon_sym_u8R_DQUOTE] = ACTIONS(3110), - [anon_sym_co_await] = ACTIONS(3108), - [anon_sym_new] = ACTIONS(3108), - [anon_sym_requires] = ACTIONS(3108), - [sym_this] = ACTIONS(3108), - }, - [635] = { - [ts_builtin_sym_end] = ACTIONS(3114), - [sym_identifier] = ACTIONS(3112), - [aux_sym_preproc_include_token1] = ACTIONS(3112), - [aux_sym_preproc_def_token1] = ACTIONS(3112), - [aux_sym_preproc_if_token1] = ACTIONS(3112), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3112), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3112), - [sym_preproc_directive] = ACTIONS(3112), - [anon_sym_LPAREN2] = ACTIONS(3114), - [anon_sym_BANG] = ACTIONS(3114), - [anon_sym_TILDE] = ACTIONS(3114), - [anon_sym_DASH] = ACTIONS(3112), - [anon_sym_PLUS] = ACTIONS(3112), - [anon_sym_STAR] = ACTIONS(3114), - [anon_sym_AMP_AMP] = ACTIONS(3114), - [anon_sym_AMP] = ACTIONS(3112), - [anon_sym_SEMI] = ACTIONS(3114), - [anon_sym___extension__] = ACTIONS(3112), - [anon_sym_typedef] = ACTIONS(3112), - [anon_sym_virtual] = ACTIONS(3112), - [anon_sym_extern] = ACTIONS(3112), - [anon_sym___attribute__] = ACTIONS(3112), - [anon_sym___attribute] = ACTIONS(3112), - [anon_sym_using] = ACTIONS(3112), - [anon_sym_COLON_COLON] = ACTIONS(3114), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3114), - [anon_sym___declspec] = ACTIONS(3112), - [anon_sym___based] = ACTIONS(3112), - [anon_sym___cdecl] = ACTIONS(3112), - [anon_sym___clrcall] = ACTIONS(3112), - [anon_sym___stdcall] = ACTIONS(3112), - [anon_sym___fastcall] = ACTIONS(3112), - [anon_sym___thiscall] = ACTIONS(3112), - [anon_sym___vectorcall] = ACTIONS(3112), - [anon_sym_LBRACE] = ACTIONS(3114), - [anon_sym_signed] = ACTIONS(3112), - [anon_sym_unsigned] = ACTIONS(3112), - [anon_sym_long] = ACTIONS(3112), - [anon_sym_short] = ACTIONS(3112), - [anon_sym_LBRACK] = ACTIONS(3112), - [anon_sym_static] = ACTIONS(3112), - [anon_sym_register] = ACTIONS(3112), - [anon_sym_inline] = ACTIONS(3112), - [anon_sym___inline] = ACTIONS(3112), - [anon_sym___inline__] = ACTIONS(3112), - [anon_sym___forceinline] = ACTIONS(3112), - [anon_sym_thread_local] = ACTIONS(3112), - [anon_sym___thread] = ACTIONS(3112), - [anon_sym_const] = ACTIONS(3112), - [anon_sym_constexpr] = ACTIONS(3112), - [anon_sym_volatile] = ACTIONS(3112), - [anon_sym_restrict] = ACTIONS(3112), - [anon_sym___restrict__] = ACTIONS(3112), - [anon_sym__Atomic] = ACTIONS(3112), - [anon_sym__Noreturn] = ACTIONS(3112), - [anon_sym_noreturn] = ACTIONS(3112), - [anon_sym__Nonnull] = ACTIONS(3112), - [anon_sym_mutable] = ACTIONS(3112), - [anon_sym_constinit] = ACTIONS(3112), - [anon_sym_consteval] = ACTIONS(3112), - [anon_sym_alignas] = ACTIONS(3112), - [anon_sym__Alignas] = ACTIONS(3112), - [sym_primitive_type] = ACTIONS(3112), - [anon_sym_enum] = ACTIONS(3112), - [anon_sym_class] = ACTIONS(3112), - [anon_sym_struct] = ACTIONS(3112), - [anon_sym_union] = ACTIONS(3112), - [anon_sym_if] = ACTIONS(3112), - [anon_sym_switch] = ACTIONS(3112), - [anon_sym_case] = ACTIONS(3112), - [anon_sym_default] = ACTIONS(3112), - [anon_sym_while] = ACTIONS(3112), - [anon_sym_do] = ACTIONS(3112), - [anon_sym_for] = ACTIONS(3112), - [anon_sym_return] = ACTIONS(3112), - [anon_sym_break] = ACTIONS(3112), - [anon_sym_continue] = ACTIONS(3112), - [anon_sym_goto] = ACTIONS(3112), - [anon_sym_not] = ACTIONS(3112), - [anon_sym_compl] = ACTIONS(3112), - [anon_sym_DASH_DASH] = ACTIONS(3114), - [anon_sym_PLUS_PLUS] = ACTIONS(3114), - [anon_sym_sizeof] = ACTIONS(3112), - [anon_sym___alignof__] = ACTIONS(3112), - [anon_sym___alignof] = ACTIONS(3112), - [anon_sym__alignof] = ACTIONS(3112), - [anon_sym_alignof] = ACTIONS(3112), - [anon_sym__Alignof] = ACTIONS(3112), - [anon_sym_offsetof] = ACTIONS(3112), - [anon_sym__Generic] = ACTIONS(3112), - [anon_sym_asm] = ACTIONS(3112), - [anon_sym___asm__] = ACTIONS(3112), - [anon_sym___asm] = ACTIONS(3112), - [sym_number_literal] = ACTIONS(3114), - [anon_sym_L_SQUOTE] = ACTIONS(3114), - [anon_sym_u_SQUOTE] = ACTIONS(3114), - [anon_sym_U_SQUOTE] = ACTIONS(3114), - [anon_sym_u8_SQUOTE] = ACTIONS(3114), - [anon_sym_SQUOTE] = ACTIONS(3114), - [anon_sym_L_DQUOTE] = ACTIONS(3114), - [anon_sym_u_DQUOTE] = ACTIONS(3114), - [anon_sym_U_DQUOTE] = ACTIONS(3114), - [anon_sym_u8_DQUOTE] = ACTIONS(3114), - [anon_sym_DQUOTE] = ACTIONS(3114), - [sym_true] = ACTIONS(3112), - [sym_false] = ACTIONS(3112), - [anon_sym_NULL] = ACTIONS(3112), - [anon_sym_nullptr] = ACTIONS(3112), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3112), - [anon_sym_decltype] = ACTIONS(3112), - [anon_sym_explicit] = ACTIONS(3112), - [anon_sym_typename] = ACTIONS(3112), - [anon_sym_export] = ACTIONS(3112), - [anon_sym_module] = ACTIONS(3112), - [anon_sym_import] = ACTIONS(3112), - [anon_sym_template] = ACTIONS(3112), - [anon_sym_operator] = ACTIONS(3112), - [anon_sym_try] = ACTIONS(3112), - [anon_sym_delete] = ACTIONS(3112), - [anon_sym_throw] = ACTIONS(3112), - [anon_sym_namespace] = ACTIONS(3112), - [anon_sym_static_assert] = ACTIONS(3112), - [anon_sym_concept] = ACTIONS(3112), - [anon_sym_co_return] = ACTIONS(3112), - [anon_sym_co_yield] = ACTIONS(3112), - [anon_sym_R_DQUOTE] = ACTIONS(3114), - [anon_sym_LR_DQUOTE] = ACTIONS(3114), - [anon_sym_uR_DQUOTE] = ACTIONS(3114), - [anon_sym_UR_DQUOTE] = ACTIONS(3114), - [anon_sym_u8R_DQUOTE] = ACTIONS(3114), - [anon_sym_co_await] = ACTIONS(3112), - [anon_sym_new] = ACTIONS(3112), - [anon_sym_requires] = ACTIONS(3112), - [sym_this] = ACTIONS(3112), - }, - [636] = { - [sym_identifier] = ACTIONS(2723), - [aux_sym_preproc_include_token1] = ACTIONS(2723), - [aux_sym_preproc_def_token1] = ACTIONS(2723), - [aux_sym_preproc_if_token1] = ACTIONS(2723), - [aux_sym_preproc_if_token2] = ACTIONS(2723), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2723), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2723), - [sym_preproc_directive] = ACTIONS(2723), - [anon_sym_LPAREN2] = ACTIONS(2725), - [anon_sym_BANG] = ACTIONS(2725), - [anon_sym_TILDE] = ACTIONS(2725), - [anon_sym_DASH] = ACTIONS(2723), - [anon_sym_PLUS] = ACTIONS(2723), - [anon_sym_STAR] = ACTIONS(2725), - [anon_sym_AMP_AMP] = ACTIONS(2725), - [anon_sym_AMP] = ACTIONS(2723), - [anon_sym_SEMI] = ACTIONS(2725), - [anon_sym___extension__] = ACTIONS(2723), - [anon_sym_typedef] = ACTIONS(2723), - [anon_sym_virtual] = ACTIONS(2723), - [anon_sym_extern] = ACTIONS(2723), - [anon_sym___attribute__] = ACTIONS(2723), - [anon_sym___attribute] = ACTIONS(2723), - [anon_sym_using] = ACTIONS(2723), - [anon_sym_COLON_COLON] = ACTIONS(2725), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2725), - [anon_sym___declspec] = ACTIONS(2723), - [anon_sym___based] = ACTIONS(2723), - [anon_sym___cdecl] = ACTIONS(2723), - [anon_sym___clrcall] = ACTIONS(2723), - [anon_sym___stdcall] = ACTIONS(2723), - [anon_sym___fastcall] = ACTIONS(2723), - [anon_sym___thiscall] = ACTIONS(2723), - [anon_sym___vectorcall] = ACTIONS(2723), - [anon_sym_LBRACE] = ACTIONS(2725), - [anon_sym_signed] = ACTIONS(2723), - [anon_sym_unsigned] = ACTIONS(2723), - [anon_sym_long] = ACTIONS(2723), - [anon_sym_short] = ACTIONS(2723), - [anon_sym_LBRACK] = ACTIONS(2723), - [anon_sym_static] = ACTIONS(2723), - [anon_sym_register] = ACTIONS(2723), - [anon_sym_inline] = ACTIONS(2723), - [anon_sym___inline] = ACTIONS(2723), - [anon_sym___inline__] = ACTIONS(2723), - [anon_sym___forceinline] = ACTIONS(2723), - [anon_sym_thread_local] = ACTIONS(2723), - [anon_sym___thread] = ACTIONS(2723), - [anon_sym_const] = ACTIONS(2723), - [anon_sym_constexpr] = ACTIONS(2723), - [anon_sym_volatile] = ACTIONS(2723), - [anon_sym_restrict] = ACTIONS(2723), - [anon_sym___restrict__] = ACTIONS(2723), - [anon_sym__Atomic] = ACTIONS(2723), - [anon_sym__Noreturn] = ACTIONS(2723), - [anon_sym_noreturn] = ACTIONS(2723), - [anon_sym__Nonnull] = ACTIONS(2723), - [anon_sym_mutable] = ACTIONS(2723), - [anon_sym_constinit] = ACTIONS(2723), - [anon_sym_consteval] = ACTIONS(2723), - [anon_sym_alignas] = ACTIONS(2723), - [anon_sym__Alignas] = ACTIONS(2723), - [sym_primitive_type] = ACTIONS(2723), - [anon_sym_enum] = ACTIONS(2723), - [anon_sym_class] = ACTIONS(2723), - [anon_sym_struct] = ACTIONS(2723), - [anon_sym_union] = ACTIONS(2723), - [anon_sym_if] = ACTIONS(2723), - [anon_sym_else] = ACTIONS(2723), - [anon_sym_switch] = ACTIONS(2723), - [anon_sym_case] = ACTIONS(2723), - [anon_sym_default] = ACTIONS(2723), - [anon_sym_while] = ACTIONS(2723), - [anon_sym_do] = ACTIONS(2723), - [anon_sym_for] = ACTIONS(2723), - [anon_sym_return] = ACTIONS(2723), - [anon_sym_break] = ACTIONS(2723), - [anon_sym_continue] = ACTIONS(2723), - [anon_sym_goto] = ACTIONS(2723), - [anon_sym___try] = ACTIONS(2723), - [anon_sym___leave] = ACTIONS(2723), - [anon_sym_not] = ACTIONS(2723), - [anon_sym_compl] = ACTIONS(2723), - [anon_sym_DASH_DASH] = ACTIONS(2725), - [anon_sym_PLUS_PLUS] = ACTIONS(2725), - [anon_sym_sizeof] = ACTIONS(2723), - [anon_sym___alignof__] = ACTIONS(2723), - [anon_sym___alignof] = ACTIONS(2723), - [anon_sym__alignof] = ACTIONS(2723), - [anon_sym_alignof] = ACTIONS(2723), - [anon_sym__Alignof] = ACTIONS(2723), - [anon_sym_offsetof] = ACTIONS(2723), - [anon_sym__Generic] = ACTIONS(2723), - [anon_sym_asm] = ACTIONS(2723), - [anon_sym___asm__] = ACTIONS(2723), - [anon_sym___asm] = ACTIONS(2723), - [sym_number_literal] = ACTIONS(2725), - [anon_sym_L_SQUOTE] = ACTIONS(2725), - [anon_sym_u_SQUOTE] = ACTIONS(2725), - [anon_sym_U_SQUOTE] = ACTIONS(2725), - [anon_sym_u8_SQUOTE] = ACTIONS(2725), - [anon_sym_SQUOTE] = ACTIONS(2725), - [anon_sym_L_DQUOTE] = ACTIONS(2725), - [anon_sym_u_DQUOTE] = ACTIONS(2725), - [anon_sym_U_DQUOTE] = ACTIONS(2725), - [anon_sym_u8_DQUOTE] = ACTIONS(2725), - [anon_sym_DQUOTE] = ACTIONS(2725), - [sym_true] = ACTIONS(2723), - [sym_false] = ACTIONS(2723), - [anon_sym_NULL] = ACTIONS(2723), - [anon_sym_nullptr] = ACTIONS(2723), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2723), - [anon_sym_decltype] = ACTIONS(2723), - [anon_sym_explicit] = ACTIONS(2723), - [anon_sym_typename] = ACTIONS(2723), - [anon_sym_template] = ACTIONS(2723), - [anon_sym_operator] = ACTIONS(2723), - [anon_sym_try] = ACTIONS(2723), - [anon_sym_delete] = ACTIONS(2723), - [anon_sym_throw] = ACTIONS(2723), - [anon_sym_namespace] = ACTIONS(2723), - [anon_sym_static_assert] = ACTIONS(2723), - [anon_sym_concept] = ACTIONS(2723), - [anon_sym_co_return] = ACTIONS(2723), - [anon_sym_co_yield] = ACTIONS(2723), - [anon_sym_R_DQUOTE] = ACTIONS(2725), - [anon_sym_LR_DQUOTE] = ACTIONS(2725), - [anon_sym_uR_DQUOTE] = ACTIONS(2725), - [anon_sym_UR_DQUOTE] = ACTIONS(2725), - [anon_sym_u8R_DQUOTE] = ACTIONS(2725), - [anon_sym_co_await] = ACTIONS(2723), - [anon_sym_new] = ACTIONS(2723), - [anon_sym_requires] = ACTIONS(2723), - [sym_this] = ACTIONS(2723), - }, - [637] = { - [sym_identifier] = ACTIONS(2759), - [aux_sym_preproc_include_token1] = ACTIONS(2759), - [aux_sym_preproc_def_token1] = ACTIONS(2759), - [aux_sym_preproc_if_token1] = ACTIONS(2759), - [aux_sym_preproc_if_token2] = ACTIONS(2759), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2759), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2759), - [sym_preproc_directive] = ACTIONS(2759), - [anon_sym_LPAREN2] = ACTIONS(2761), - [anon_sym_BANG] = ACTIONS(2761), - [anon_sym_TILDE] = ACTIONS(2761), - [anon_sym_DASH] = ACTIONS(2759), - [anon_sym_PLUS] = ACTIONS(2759), - [anon_sym_STAR] = ACTIONS(2761), - [anon_sym_AMP_AMP] = ACTIONS(2761), - [anon_sym_AMP] = ACTIONS(2759), - [anon_sym_SEMI] = ACTIONS(2761), - [anon_sym___extension__] = ACTIONS(2759), - [anon_sym_typedef] = ACTIONS(2759), - [anon_sym_virtual] = ACTIONS(2759), - [anon_sym_extern] = ACTIONS(2759), - [anon_sym___attribute__] = ACTIONS(2759), - [anon_sym___attribute] = ACTIONS(2759), - [anon_sym_using] = ACTIONS(2759), - [anon_sym_COLON_COLON] = ACTIONS(2761), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2761), - [anon_sym___declspec] = ACTIONS(2759), - [anon_sym___based] = ACTIONS(2759), - [anon_sym___cdecl] = ACTIONS(2759), - [anon_sym___clrcall] = ACTIONS(2759), - [anon_sym___stdcall] = ACTIONS(2759), - [anon_sym___fastcall] = ACTIONS(2759), - [anon_sym___thiscall] = ACTIONS(2759), - [anon_sym___vectorcall] = ACTIONS(2759), - [anon_sym_LBRACE] = ACTIONS(2761), - [anon_sym_signed] = ACTIONS(2759), - [anon_sym_unsigned] = ACTIONS(2759), - [anon_sym_long] = ACTIONS(2759), - [anon_sym_short] = ACTIONS(2759), - [anon_sym_LBRACK] = ACTIONS(2759), - [anon_sym_static] = ACTIONS(2759), - [anon_sym_register] = ACTIONS(2759), - [anon_sym_inline] = ACTIONS(2759), - [anon_sym___inline] = ACTIONS(2759), - [anon_sym___inline__] = ACTIONS(2759), - [anon_sym___forceinline] = ACTIONS(2759), - [anon_sym_thread_local] = ACTIONS(2759), - [anon_sym___thread] = ACTIONS(2759), - [anon_sym_const] = ACTIONS(2759), - [anon_sym_constexpr] = ACTIONS(2759), - [anon_sym_volatile] = ACTIONS(2759), - [anon_sym_restrict] = ACTIONS(2759), - [anon_sym___restrict__] = ACTIONS(2759), - [anon_sym__Atomic] = ACTIONS(2759), - [anon_sym__Noreturn] = ACTIONS(2759), - [anon_sym_noreturn] = ACTIONS(2759), - [anon_sym__Nonnull] = ACTIONS(2759), - [anon_sym_mutable] = ACTIONS(2759), - [anon_sym_constinit] = ACTIONS(2759), - [anon_sym_consteval] = ACTIONS(2759), - [anon_sym_alignas] = ACTIONS(2759), - [anon_sym__Alignas] = ACTIONS(2759), - [sym_primitive_type] = ACTIONS(2759), - [anon_sym_enum] = ACTIONS(2759), - [anon_sym_class] = ACTIONS(2759), - [anon_sym_struct] = ACTIONS(2759), - [anon_sym_union] = ACTIONS(2759), - [anon_sym_if] = ACTIONS(2759), - [anon_sym_else] = ACTIONS(2759), - [anon_sym_switch] = ACTIONS(2759), - [anon_sym_case] = ACTIONS(2759), - [anon_sym_default] = ACTIONS(2759), - [anon_sym_while] = ACTIONS(2759), - [anon_sym_do] = ACTIONS(2759), - [anon_sym_for] = ACTIONS(2759), - [anon_sym_return] = ACTIONS(2759), - [anon_sym_break] = ACTIONS(2759), - [anon_sym_continue] = ACTIONS(2759), - [anon_sym_goto] = ACTIONS(2759), - [anon_sym___try] = ACTIONS(2759), - [anon_sym___leave] = ACTIONS(2759), - [anon_sym_not] = ACTIONS(2759), - [anon_sym_compl] = ACTIONS(2759), - [anon_sym_DASH_DASH] = ACTIONS(2761), - [anon_sym_PLUS_PLUS] = ACTIONS(2761), - [anon_sym_sizeof] = ACTIONS(2759), - [anon_sym___alignof__] = ACTIONS(2759), - [anon_sym___alignof] = ACTIONS(2759), - [anon_sym__alignof] = ACTIONS(2759), - [anon_sym_alignof] = ACTIONS(2759), - [anon_sym__Alignof] = ACTIONS(2759), - [anon_sym_offsetof] = ACTIONS(2759), - [anon_sym__Generic] = ACTIONS(2759), - [anon_sym_asm] = ACTIONS(2759), - [anon_sym___asm__] = ACTIONS(2759), - [anon_sym___asm] = ACTIONS(2759), - [sym_number_literal] = ACTIONS(2761), - [anon_sym_L_SQUOTE] = ACTIONS(2761), - [anon_sym_u_SQUOTE] = ACTIONS(2761), - [anon_sym_U_SQUOTE] = ACTIONS(2761), - [anon_sym_u8_SQUOTE] = ACTIONS(2761), - [anon_sym_SQUOTE] = ACTIONS(2761), - [anon_sym_L_DQUOTE] = ACTIONS(2761), - [anon_sym_u_DQUOTE] = ACTIONS(2761), - [anon_sym_U_DQUOTE] = ACTIONS(2761), - [anon_sym_u8_DQUOTE] = ACTIONS(2761), - [anon_sym_DQUOTE] = ACTIONS(2761), - [sym_true] = ACTIONS(2759), - [sym_false] = ACTIONS(2759), - [anon_sym_NULL] = ACTIONS(2759), - [anon_sym_nullptr] = ACTIONS(2759), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2759), - [anon_sym_decltype] = ACTIONS(2759), - [anon_sym_explicit] = ACTIONS(2759), - [anon_sym_typename] = ACTIONS(2759), - [anon_sym_template] = ACTIONS(2759), - [anon_sym_operator] = ACTIONS(2759), - [anon_sym_try] = ACTIONS(2759), - [anon_sym_delete] = ACTIONS(2759), - [anon_sym_throw] = ACTIONS(2759), - [anon_sym_namespace] = ACTIONS(2759), - [anon_sym_static_assert] = ACTIONS(2759), - [anon_sym_concept] = ACTIONS(2759), - [anon_sym_co_return] = ACTIONS(2759), - [anon_sym_co_yield] = ACTIONS(2759), - [anon_sym_R_DQUOTE] = ACTIONS(2761), - [anon_sym_LR_DQUOTE] = ACTIONS(2761), - [anon_sym_uR_DQUOTE] = ACTIONS(2761), - [anon_sym_UR_DQUOTE] = ACTIONS(2761), - [anon_sym_u8R_DQUOTE] = ACTIONS(2761), - [anon_sym_co_await] = ACTIONS(2759), - [anon_sym_new] = ACTIONS(2759), - [anon_sym_requires] = ACTIONS(2759), - [sym_this] = ACTIONS(2759), - }, - [638] = { - [ts_builtin_sym_end] = ACTIONS(3587), - [sym_identifier] = ACTIONS(3589), - [aux_sym_preproc_include_token1] = ACTIONS(3589), - [aux_sym_preproc_def_token1] = ACTIONS(3589), - [aux_sym_preproc_if_token1] = ACTIONS(3589), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3589), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3589), - [sym_preproc_directive] = ACTIONS(3589), - [anon_sym_LPAREN2] = ACTIONS(3587), - [anon_sym_BANG] = ACTIONS(3587), - [anon_sym_TILDE] = ACTIONS(3587), - [anon_sym_DASH] = ACTIONS(3589), - [anon_sym_PLUS] = ACTIONS(3589), - [anon_sym_STAR] = ACTIONS(3587), - [anon_sym_AMP_AMP] = ACTIONS(3587), - [anon_sym_AMP] = ACTIONS(3589), - [anon_sym_SEMI] = ACTIONS(3587), - [anon_sym___extension__] = ACTIONS(3589), - [anon_sym_typedef] = ACTIONS(3589), - [anon_sym_virtual] = ACTIONS(3589), - [anon_sym_extern] = ACTIONS(3589), - [anon_sym___attribute__] = ACTIONS(3589), - [anon_sym___attribute] = ACTIONS(3589), - [anon_sym_using] = ACTIONS(3589), - [anon_sym_COLON_COLON] = ACTIONS(3587), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3587), - [anon_sym___declspec] = ACTIONS(3589), - [anon_sym___based] = ACTIONS(3589), - [anon_sym___cdecl] = ACTIONS(3589), - [anon_sym___clrcall] = ACTIONS(3589), - [anon_sym___stdcall] = ACTIONS(3589), - [anon_sym___fastcall] = ACTIONS(3589), - [anon_sym___thiscall] = ACTIONS(3589), - [anon_sym___vectorcall] = ACTIONS(3589), - [anon_sym_LBRACE] = ACTIONS(3587), - [anon_sym_signed] = ACTIONS(3589), - [anon_sym_unsigned] = ACTIONS(3589), - [anon_sym_long] = ACTIONS(3589), - [anon_sym_short] = ACTIONS(3589), - [anon_sym_LBRACK] = ACTIONS(3589), - [anon_sym_static] = ACTIONS(3589), - [anon_sym_register] = ACTIONS(3589), - [anon_sym_inline] = ACTIONS(3589), - [anon_sym___inline] = ACTIONS(3589), - [anon_sym___inline__] = ACTIONS(3589), - [anon_sym___forceinline] = ACTIONS(3589), - [anon_sym_thread_local] = ACTIONS(3589), - [anon_sym___thread] = ACTIONS(3589), - [anon_sym_const] = ACTIONS(3589), - [anon_sym_constexpr] = ACTIONS(3589), - [anon_sym_volatile] = ACTIONS(3589), - [anon_sym_restrict] = ACTIONS(3589), - [anon_sym___restrict__] = ACTIONS(3589), - [anon_sym__Atomic] = ACTIONS(3589), - [anon_sym__Noreturn] = ACTIONS(3589), - [anon_sym_noreturn] = ACTIONS(3589), - [anon_sym__Nonnull] = ACTIONS(3589), - [anon_sym_mutable] = ACTIONS(3589), - [anon_sym_constinit] = ACTIONS(3589), - [anon_sym_consteval] = ACTIONS(3589), - [anon_sym_alignas] = ACTIONS(3589), - [anon_sym__Alignas] = ACTIONS(3589), - [sym_primitive_type] = ACTIONS(3589), - [anon_sym_enum] = ACTIONS(3589), - [anon_sym_class] = ACTIONS(3589), - [anon_sym_struct] = ACTIONS(3589), - [anon_sym_union] = ACTIONS(3589), - [anon_sym_if] = ACTIONS(3589), - [anon_sym_switch] = ACTIONS(3589), - [anon_sym_case] = ACTIONS(3589), - [anon_sym_default] = ACTIONS(3589), - [anon_sym_while] = ACTIONS(3589), - [anon_sym_do] = ACTIONS(3589), - [anon_sym_for] = ACTIONS(3589), - [anon_sym_return] = ACTIONS(3589), - [anon_sym_break] = ACTIONS(3589), - [anon_sym_continue] = ACTIONS(3589), - [anon_sym_goto] = ACTIONS(3589), - [anon_sym_not] = ACTIONS(3589), - [anon_sym_compl] = ACTIONS(3589), - [anon_sym_DASH_DASH] = ACTIONS(3587), - [anon_sym_PLUS_PLUS] = ACTIONS(3587), - [anon_sym_sizeof] = ACTIONS(3589), - [anon_sym___alignof__] = ACTIONS(3589), - [anon_sym___alignof] = ACTIONS(3589), - [anon_sym__alignof] = ACTIONS(3589), - [anon_sym_alignof] = ACTIONS(3589), - [anon_sym__Alignof] = ACTIONS(3589), - [anon_sym_offsetof] = ACTIONS(3589), - [anon_sym__Generic] = ACTIONS(3589), - [anon_sym_asm] = ACTIONS(3589), - [anon_sym___asm__] = ACTIONS(3589), - [anon_sym___asm] = ACTIONS(3589), - [sym_number_literal] = ACTIONS(3587), - [anon_sym_L_SQUOTE] = ACTIONS(3587), - [anon_sym_u_SQUOTE] = ACTIONS(3587), - [anon_sym_U_SQUOTE] = ACTIONS(3587), - [anon_sym_u8_SQUOTE] = ACTIONS(3587), - [anon_sym_SQUOTE] = ACTIONS(3587), - [anon_sym_L_DQUOTE] = ACTIONS(3587), - [anon_sym_u_DQUOTE] = ACTIONS(3587), - [anon_sym_U_DQUOTE] = ACTIONS(3587), - [anon_sym_u8_DQUOTE] = ACTIONS(3587), - [anon_sym_DQUOTE] = ACTIONS(3587), - [sym_true] = ACTIONS(3589), - [sym_false] = ACTIONS(3589), - [anon_sym_NULL] = ACTIONS(3589), - [anon_sym_nullptr] = ACTIONS(3589), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3589), - [anon_sym_decltype] = ACTIONS(3589), - [anon_sym_explicit] = ACTIONS(3589), - [anon_sym_typename] = ACTIONS(3589), - [anon_sym_export] = ACTIONS(3589), - [anon_sym_module] = ACTIONS(3589), - [anon_sym_import] = ACTIONS(3589), - [anon_sym_template] = ACTIONS(3589), - [anon_sym_operator] = ACTIONS(3589), - [anon_sym_try] = ACTIONS(3589), - [anon_sym_delete] = ACTIONS(3589), - [anon_sym_throw] = ACTIONS(3589), - [anon_sym_namespace] = ACTIONS(3589), - [anon_sym_static_assert] = ACTIONS(3589), - [anon_sym_concept] = ACTIONS(3589), - [anon_sym_co_return] = ACTIONS(3589), - [anon_sym_co_yield] = ACTIONS(3589), - [anon_sym_R_DQUOTE] = ACTIONS(3587), - [anon_sym_LR_DQUOTE] = ACTIONS(3587), - [anon_sym_uR_DQUOTE] = ACTIONS(3587), - [anon_sym_UR_DQUOTE] = ACTIONS(3587), - [anon_sym_u8R_DQUOTE] = ACTIONS(3587), - [anon_sym_co_await] = ACTIONS(3589), - [anon_sym_new] = ACTIONS(3589), - [anon_sym_requires] = ACTIONS(3589), - [sym_this] = ACTIONS(3589), - }, - [639] = { - [sym_identifier] = ACTIONS(2631), - [aux_sym_preproc_include_token1] = ACTIONS(2631), - [aux_sym_preproc_def_token1] = ACTIONS(2631), - [aux_sym_preproc_if_token1] = ACTIONS(2631), - [aux_sym_preproc_if_token2] = ACTIONS(2631), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2631), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2631), - [sym_preproc_directive] = ACTIONS(2631), - [anon_sym_LPAREN2] = ACTIONS(2633), - [anon_sym_BANG] = ACTIONS(2633), - [anon_sym_TILDE] = ACTIONS(2633), - [anon_sym_DASH] = ACTIONS(2631), - [anon_sym_PLUS] = ACTIONS(2631), - [anon_sym_STAR] = ACTIONS(2633), - [anon_sym_AMP_AMP] = ACTIONS(2633), - [anon_sym_AMP] = ACTIONS(2631), - [anon_sym_SEMI] = ACTIONS(2633), - [anon_sym___extension__] = ACTIONS(2631), - [anon_sym_typedef] = ACTIONS(2631), - [anon_sym_virtual] = ACTIONS(2631), - [anon_sym_extern] = ACTIONS(2631), - [anon_sym___attribute__] = ACTIONS(2631), - [anon_sym___attribute] = ACTIONS(2631), - [anon_sym_using] = ACTIONS(2631), - [anon_sym_COLON_COLON] = ACTIONS(2633), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2633), - [anon_sym___declspec] = ACTIONS(2631), - [anon_sym___based] = ACTIONS(2631), - [anon_sym___cdecl] = ACTIONS(2631), - [anon_sym___clrcall] = ACTIONS(2631), - [anon_sym___stdcall] = ACTIONS(2631), - [anon_sym___fastcall] = ACTIONS(2631), - [anon_sym___thiscall] = ACTIONS(2631), - [anon_sym___vectorcall] = ACTIONS(2631), - [anon_sym_LBRACE] = ACTIONS(2633), - [anon_sym_signed] = ACTIONS(2631), - [anon_sym_unsigned] = ACTIONS(2631), - [anon_sym_long] = ACTIONS(2631), - [anon_sym_short] = ACTIONS(2631), - [anon_sym_LBRACK] = ACTIONS(2631), - [anon_sym_static] = ACTIONS(2631), - [anon_sym_register] = ACTIONS(2631), - [anon_sym_inline] = ACTIONS(2631), - [anon_sym___inline] = ACTIONS(2631), - [anon_sym___inline__] = ACTIONS(2631), - [anon_sym___forceinline] = ACTIONS(2631), - [anon_sym_thread_local] = ACTIONS(2631), - [anon_sym___thread] = ACTIONS(2631), - [anon_sym_const] = ACTIONS(2631), - [anon_sym_constexpr] = ACTIONS(2631), - [anon_sym_volatile] = ACTIONS(2631), - [anon_sym_restrict] = ACTIONS(2631), - [anon_sym___restrict__] = ACTIONS(2631), - [anon_sym__Atomic] = ACTIONS(2631), - [anon_sym__Noreturn] = ACTIONS(2631), - [anon_sym_noreturn] = ACTIONS(2631), - [anon_sym__Nonnull] = ACTIONS(2631), - [anon_sym_mutable] = ACTIONS(2631), - [anon_sym_constinit] = ACTIONS(2631), - [anon_sym_consteval] = ACTIONS(2631), - [anon_sym_alignas] = ACTIONS(2631), - [anon_sym__Alignas] = ACTIONS(2631), - [sym_primitive_type] = ACTIONS(2631), - [anon_sym_enum] = ACTIONS(2631), - [anon_sym_class] = ACTIONS(2631), - [anon_sym_struct] = ACTIONS(2631), - [anon_sym_union] = ACTIONS(2631), - [anon_sym_if] = ACTIONS(2631), - [anon_sym_else] = ACTIONS(2631), - [anon_sym_switch] = ACTIONS(2631), - [anon_sym_case] = ACTIONS(2631), - [anon_sym_default] = ACTIONS(2631), - [anon_sym_while] = ACTIONS(2631), - [anon_sym_do] = ACTIONS(2631), - [anon_sym_for] = ACTIONS(2631), - [anon_sym_return] = ACTIONS(2631), - [anon_sym_break] = ACTIONS(2631), - [anon_sym_continue] = ACTIONS(2631), - [anon_sym_goto] = ACTIONS(2631), - [anon_sym___try] = ACTIONS(2631), - [anon_sym___leave] = ACTIONS(2631), - [anon_sym_not] = ACTIONS(2631), - [anon_sym_compl] = ACTIONS(2631), - [anon_sym_DASH_DASH] = ACTIONS(2633), - [anon_sym_PLUS_PLUS] = ACTIONS(2633), - [anon_sym_sizeof] = ACTIONS(2631), - [anon_sym___alignof__] = ACTIONS(2631), - [anon_sym___alignof] = ACTIONS(2631), - [anon_sym__alignof] = ACTIONS(2631), - [anon_sym_alignof] = ACTIONS(2631), - [anon_sym__Alignof] = ACTIONS(2631), - [anon_sym_offsetof] = ACTIONS(2631), - [anon_sym__Generic] = ACTIONS(2631), - [anon_sym_asm] = ACTIONS(2631), - [anon_sym___asm__] = ACTIONS(2631), - [anon_sym___asm] = ACTIONS(2631), - [sym_number_literal] = ACTIONS(2633), - [anon_sym_L_SQUOTE] = ACTIONS(2633), - [anon_sym_u_SQUOTE] = ACTIONS(2633), - [anon_sym_U_SQUOTE] = ACTIONS(2633), - [anon_sym_u8_SQUOTE] = ACTIONS(2633), - [anon_sym_SQUOTE] = ACTIONS(2633), - [anon_sym_L_DQUOTE] = ACTIONS(2633), - [anon_sym_u_DQUOTE] = ACTIONS(2633), - [anon_sym_U_DQUOTE] = ACTIONS(2633), - [anon_sym_u8_DQUOTE] = ACTIONS(2633), - [anon_sym_DQUOTE] = ACTIONS(2633), - [sym_true] = ACTIONS(2631), - [sym_false] = ACTIONS(2631), - [anon_sym_NULL] = ACTIONS(2631), - [anon_sym_nullptr] = ACTIONS(2631), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2631), - [anon_sym_decltype] = ACTIONS(2631), - [anon_sym_explicit] = ACTIONS(2631), - [anon_sym_typename] = ACTIONS(2631), - [anon_sym_template] = ACTIONS(2631), - [anon_sym_operator] = ACTIONS(2631), - [anon_sym_try] = ACTIONS(2631), - [anon_sym_delete] = ACTIONS(2631), - [anon_sym_throw] = ACTIONS(2631), - [anon_sym_namespace] = ACTIONS(2631), - [anon_sym_static_assert] = ACTIONS(2631), - [anon_sym_concept] = ACTIONS(2631), - [anon_sym_co_return] = ACTIONS(2631), - [anon_sym_co_yield] = ACTIONS(2631), - [anon_sym_R_DQUOTE] = ACTIONS(2633), - [anon_sym_LR_DQUOTE] = ACTIONS(2633), - [anon_sym_uR_DQUOTE] = ACTIONS(2633), - [anon_sym_UR_DQUOTE] = ACTIONS(2633), - [anon_sym_u8R_DQUOTE] = ACTIONS(2633), - [anon_sym_co_await] = ACTIONS(2631), - [anon_sym_new] = ACTIONS(2631), - [anon_sym_requires] = ACTIONS(2631), - [sym_this] = ACTIONS(2631), - }, - [640] = { - [sym_identifier] = ACTIONS(2635), - [aux_sym_preproc_include_token1] = ACTIONS(2635), - [aux_sym_preproc_def_token1] = ACTIONS(2635), - [aux_sym_preproc_if_token1] = ACTIONS(2635), - [aux_sym_preproc_if_token2] = ACTIONS(2635), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2635), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2635), - [sym_preproc_directive] = ACTIONS(2635), - [anon_sym_LPAREN2] = ACTIONS(2637), - [anon_sym_BANG] = ACTIONS(2637), - [anon_sym_TILDE] = ACTIONS(2637), - [anon_sym_DASH] = ACTIONS(2635), - [anon_sym_PLUS] = ACTIONS(2635), - [anon_sym_STAR] = ACTIONS(2637), - [anon_sym_AMP_AMP] = ACTIONS(2637), - [anon_sym_AMP] = ACTIONS(2635), - [anon_sym_SEMI] = ACTIONS(2637), - [anon_sym___extension__] = ACTIONS(2635), - [anon_sym_typedef] = ACTIONS(2635), - [anon_sym_virtual] = ACTIONS(2635), - [anon_sym_extern] = ACTIONS(2635), - [anon_sym___attribute__] = ACTIONS(2635), - [anon_sym___attribute] = ACTIONS(2635), - [anon_sym_using] = ACTIONS(2635), - [anon_sym_COLON_COLON] = ACTIONS(2637), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2637), - [anon_sym___declspec] = ACTIONS(2635), - [anon_sym___based] = ACTIONS(2635), - [anon_sym___cdecl] = ACTIONS(2635), - [anon_sym___clrcall] = ACTIONS(2635), - [anon_sym___stdcall] = ACTIONS(2635), - [anon_sym___fastcall] = ACTIONS(2635), - [anon_sym___thiscall] = ACTIONS(2635), - [anon_sym___vectorcall] = ACTIONS(2635), - [anon_sym_LBRACE] = ACTIONS(2637), - [anon_sym_signed] = ACTIONS(2635), - [anon_sym_unsigned] = ACTIONS(2635), - [anon_sym_long] = ACTIONS(2635), - [anon_sym_short] = ACTIONS(2635), - [anon_sym_LBRACK] = ACTIONS(2635), - [anon_sym_static] = ACTIONS(2635), - [anon_sym_register] = ACTIONS(2635), - [anon_sym_inline] = ACTIONS(2635), - [anon_sym___inline] = ACTIONS(2635), - [anon_sym___inline__] = ACTIONS(2635), - [anon_sym___forceinline] = ACTIONS(2635), - [anon_sym_thread_local] = ACTIONS(2635), - [anon_sym___thread] = ACTIONS(2635), - [anon_sym_const] = ACTIONS(2635), - [anon_sym_constexpr] = ACTIONS(2635), - [anon_sym_volatile] = ACTIONS(2635), - [anon_sym_restrict] = ACTIONS(2635), - [anon_sym___restrict__] = ACTIONS(2635), - [anon_sym__Atomic] = ACTIONS(2635), - [anon_sym__Noreturn] = ACTIONS(2635), - [anon_sym_noreturn] = ACTIONS(2635), - [anon_sym__Nonnull] = ACTIONS(2635), - [anon_sym_mutable] = ACTIONS(2635), - [anon_sym_constinit] = ACTIONS(2635), - [anon_sym_consteval] = ACTIONS(2635), - [anon_sym_alignas] = ACTIONS(2635), - [anon_sym__Alignas] = ACTIONS(2635), - [sym_primitive_type] = ACTIONS(2635), - [anon_sym_enum] = ACTIONS(2635), - [anon_sym_class] = ACTIONS(2635), - [anon_sym_struct] = ACTIONS(2635), - [anon_sym_union] = ACTIONS(2635), - [anon_sym_if] = ACTIONS(2635), - [anon_sym_else] = ACTIONS(2635), - [anon_sym_switch] = ACTIONS(2635), - [anon_sym_case] = ACTIONS(2635), - [anon_sym_default] = ACTIONS(2635), - [anon_sym_while] = ACTIONS(2635), - [anon_sym_do] = ACTIONS(2635), - [anon_sym_for] = ACTIONS(2635), - [anon_sym_return] = ACTIONS(2635), - [anon_sym_break] = ACTIONS(2635), - [anon_sym_continue] = ACTIONS(2635), - [anon_sym_goto] = ACTIONS(2635), - [anon_sym___try] = ACTIONS(2635), - [anon_sym___leave] = ACTIONS(2635), - [anon_sym_not] = ACTIONS(2635), - [anon_sym_compl] = ACTIONS(2635), - [anon_sym_DASH_DASH] = ACTIONS(2637), - [anon_sym_PLUS_PLUS] = ACTIONS(2637), - [anon_sym_sizeof] = ACTIONS(2635), - [anon_sym___alignof__] = ACTIONS(2635), - [anon_sym___alignof] = ACTIONS(2635), - [anon_sym__alignof] = ACTIONS(2635), - [anon_sym_alignof] = ACTIONS(2635), - [anon_sym__Alignof] = ACTIONS(2635), - [anon_sym_offsetof] = ACTIONS(2635), - [anon_sym__Generic] = ACTIONS(2635), - [anon_sym_asm] = ACTIONS(2635), - [anon_sym___asm__] = ACTIONS(2635), - [anon_sym___asm] = ACTIONS(2635), - [sym_number_literal] = ACTIONS(2637), - [anon_sym_L_SQUOTE] = ACTIONS(2637), - [anon_sym_u_SQUOTE] = ACTIONS(2637), - [anon_sym_U_SQUOTE] = ACTIONS(2637), - [anon_sym_u8_SQUOTE] = ACTIONS(2637), - [anon_sym_SQUOTE] = ACTIONS(2637), - [anon_sym_L_DQUOTE] = ACTIONS(2637), - [anon_sym_u_DQUOTE] = ACTIONS(2637), - [anon_sym_U_DQUOTE] = ACTIONS(2637), - [anon_sym_u8_DQUOTE] = ACTIONS(2637), - [anon_sym_DQUOTE] = ACTIONS(2637), - [sym_true] = ACTIONS(2635), - [sym_false] = ACTIONS(2635), - [anon_sym_NULL] = ACTIONS(2635), - [anon_sym_nullptr] = ACTIONS(2635), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2635), - [anon_sym_decltype] = ACTIONS(2635), - [anon_sym_explicit] = ACTIONS(2635), - [anon_sym_typename] = ACTIONS(2635), - [anon_sym_template] = ACTIONS(2635), - [anon_sym_operator] = ACTIONS(2635), - [anon_sym_try] = ACTIONS(2635), - [anon_sym_delete] = ACTIONS(2635), - [anon_sym_throw] = ACTIONS(2635), - [anon_sym_namespace] = ACTIONS(2635), - [anon_sym_static_assert] = ACTIONS(2635), - [anon_sym_concept] = ACTIONS(2635), - [anon_sym_co_return] = ACTIONS(2635), - [anon_sym_co_yield] = ACTIONS(2635), - [anon_sym_R_DQUOTE] = ACTIONS(2637), - [anon_sym_LR_DQUOTE] = ACTIONS(2637), - [anon_sym_uR_DQUOTE] = ACTIONS(2637), - [anon_sym_UR_DQUOTE] = ACTIONS(2637), - [anon_sym_u8R_DQUOTE] = ACTIONS(2637), - [anon_sym_co_await] = ACTIONS(2635), - [anon_sym_new] = ACTIONS(2635), - [anon_sym_requires] = ACTIONS(2635), - [sym_this] = ACTIONS(2635), - }, - [641] = { - [ts_builtin_sym_end] = ACTIONS(3591), - [sym_identifier] = ACTIONS(3593), - [aux_sym_preproc_include_token1] = ACTIONS(3593), - [aux_sym_preproc_def_token1] = ACTIONS(3593), - [aux_sym_preproc_if_token1] = ACTIONS(3593), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3593), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3593), - [sym_preproc_directive] = ACTIONS(3593), - [anon_sym_LPAREN2] = ACTIONS(3591), - [anon_sym_BANG] = ACTIONS(3591), - [anon_sym_TILDE] = ACTIONS(3591), - [anon_sym_DASH] = ACTIONS(3593), - [anon_sym_PLUS] = ACTIONS(3593), - [anon_sym_STAR] = ACTIONS(3591), - [anon_sym_AMP_AMP] = ACTIONS(3591), - [anon_sym_AMP] = ACTIONS(3593), - [anon_sym_SEMI] = ACTIONS(3591), - [anon_sym___extension__] = ACTIONS(3593), - [anon_sym_typedef] = ACTIONS(3593), - [anon_sym_virtual] = ACTIONS(3593), - [anon_sym_extern] = ACTIONS(3593), - [anon_sym___attribute__] = ACTIONS(3593), - [anon_sym___attribute] = ACTIONS(3593), - [anon_sym_using] = ACTIONS(3593), - [anon_sym_COLON_COLON] = ACTIONS(3591), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3591), - [anon_sym___declspec] = ACTIONS(3593), - [anon_sym___based] = ACTIONS(3593), - [anon_sym___cdecl] = ACTIONS(3593), - [anon_sym___clrcall] = ACTIONS(3593), - [anon_sym___stdcall] = ACTIONS(3593), - [anon_sym___fastcall] = ACTIONS(3593), - [anon_sym___thiscall] = ACTIONS(3593), - [anon_sym___vectorcall] = ACTIONS(3593), - [anon_sym_LBRACE] = ACTIONS(3591), - [anon_sym_signed] = ACTIONS(3593), - [anon_sym_unsigned] = ACTIONS(3593), - [anon_sym_long] = ACTIONS(3593), - [anon_sym_short] = ACTIONS(3593), - [anon_sym_LBRACK] = ACTIONS(3593), - [anon_sym_static] = ACTIONS(3593), - [anon_sym_register] = ACTIONS(3593), - [anon_sym_inline] = ACTIONS(3593), - [anon_sym___inline] = ACTIONS(3593), - [anon_sym___inline__] = ACTIONS(3593), - [anon_sym___forceinline] = ACTIONS(3593), - [anon_sym_thread_local] = ACTIONS(3593), - [anon_sym___thread] = ACTIONS(3593), - [anon_sym_const] = ACTIONS(3593), - [anon_sym_constexpr] = ACTIONS(3593), - [anon_sym_volatile] = ACTIONS(3593), - [anon_sym_restrict] = ACTIONS(3593), - [anon_sym___restrict__] = ACTIONS(3593), - [anon_sym__Atomic] = ACTIONS(3593), - [anon_sym__Noreturn] = ACTIONS(3593), - [anon_sym_noreturn] = ACTIONS(3593), - [anon_sym__Nonnull] = ACTIONS(3593), - [anon_sym_mutable] = ACTIONS(3593), - [anon_sym_constinit] = ACTIONS(3593), - [anon_sym_consteval] = ACTIONS(3593), - [anon_sym_alignas] = ACTIONS(3593), - [anon_sym__Alignas] = ACTIONS(3593), - [sym_primitive_type] = ACTIONS(3593), - [anon_sym_enum] = ACTIONS(3593), - [anon_sym_class] = ACTIONS(3593), - [anon_sym_struct] = ACTIONS(3593), - [anon_sym_union] = ACTIONS(3593), - [anon_sym_if] = ACTIONS(3593), - [anon_sym_switch] = ACTIONS(3593), - [anon_sym_case] = ACTIONS(3593), - [anon_sym_default] = ACTIONS(3593), - [anon_sym_while] = ACTIONS(3593), - [anon_sym_do] = ACTIONS(3593), - [anon_sym_for] = ACTIONS(3593), - [anon_sym_return] = ACTIONS(3593), - [anon_sym_break] = ACTIONS(3593), - [anon_sym_continue] = ACTIONS(3593), - [anon_sym_goto] = ACTIONS(3593), - [anon_sym_not] = ACTIONS(3593), - [anon_sym_compl] = ACTIONS(3593), - [anon_sym_DASH_DASH] = ACTIONS(3591), - [anon_sym_PLUS_PLUS] = ACTIONS(3591), - [anon_sym_sizeof] = ACTIONS(3593), - [anon_sym___alignof__] = ACTIONS(3593), - [anon_sym___alignof] = ACTIONS(3593), - [anon_sym__alignof] = ACTIONS(3593), - [anon_sym_alignof] = ACTIONS(3593), - [anon_sym__Alignof] = ACTIONS(3593), - [anon_sym_offsetof] = ACTIONS(3593), - [anon_sym__Generic] = ACTIONS(3593), - [anon_sym_asm] = ACTIONS(3593), - [anon_sym___asm__] = ACTIONS(3593), - [anon_sym___asm] = ACTIONS(3593), - [sym_number_literal] = ACTIONS(3591), - [anon_sym_L_SQUOTE] = ACTIONS(3591), - [anon_sym_u_SQUOTE] = ACTIONS(3591), - [anon_sym_U_SQUOTE] = ACTIONS(3591), - [anon_sym_u8_SQUOTE] = ACTIONS(3591), - [anon_sym_SQUOTE] = ACTIONS(3591), - [anon_sym_L_DQUOTE] = ACTIONS(3591), - [anon_sym_u_DQUOTE] = ACTIONS(3591), - [anon_sym_U_DQUOTE] = ACTIONS(3591), - [anon_sym_u8_DQUOTE] = ACTIONS(3591), - [anon_sym_DQUOTE] = ACTIONS(3591), - [sym_true] = ACTIONS(3593), - [sym_false] = ACTIONS(3593), - [anon_sym_NULL] = ACTIONS(3593), - [anon_sym_nullptr] = ACTIONS(3593), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3593), - [anon_sym_decltype] = ACTIONS(3593), - [anon_sym_explicit] = ACTIONS(3593), - [anon_sym_typename] = ACTIONS(3593), - [anon_sym_export] = ACTIONS(3593), - [anon_sym_module] = ACTIONS(3593), - [anon_sym_import] = ACTIONS(3593), - [anon_sym_template] = ACTIONS(3593), - [anon_sym_operator] = ACTIONS(3593), - [anon_sym_try] = ACTIONS(3593), - [anon_sym_delete] = ACTIONS(3593), - [anon_sym_throw] = ACTIONS(3593), - [anon_sym_namespace] = ACTIONS(3593), - [anon_sym_static_assert] = ACTIONS(3593), - [anon_sym_concept] = ACTIONS(3593), - [anon_sym_co_return] = ACTIONS(3593), - [anon_sym_co_yield] = ACTIONS(3593), - [anon_sym_R_DQUOTE] = ACTIONS(3591), - [anon_sym_LR_DQUOTE] = ACTIONS(3591), - [anon_sym_uR_DQUOTE] = ACTIONS(3591), - [anon_sym_UR_DQUOTE] = ACTIONS(3591), - [anon_sym_u8R_DQUOTE] = ACTIONS(3591), - [anon_sym_co_await] = ACTIONS(3593), - [anon_sym_new] = ACTIONS(3593), - [anon_sym_requires] = ACTIONS(3593), - [sym_this] = ACTIONS(3593), - }, - [642] = { - [ts_builtin_sym_end] = ACTIONS(3595), - [sym_identifier] = ACTIONS(3597), - [aux_sym_preproc_include_token1] = ACTIONS(3597), - [aux_sym_preproc_def_token1] = ACTIONS(3597), - [aux_sym_preproc_if_token1] = ACTIONS(3597), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3597), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3597), - [sym_preproc_directive] = ACTIONS(3597), - [anon_sym_LPAREN2] = ACTIONS(3595), - [anon_sym_BANG] = ACTIONS(3595), - [anon_sym_TILDE] = ACTIONS(3595), - [anon_sym_DASH] = ACTIONS(3597), - [anon_sym_PLUS] = ACTIONS(3597), - [anon_sym_STAR] = ACTIONS(3595), - [anon_sym_AMP_AMP] = ACTIONS(3595), - [anon_sym_AMP] = ACTIONS(3597), - [anon_sym_SEMI] = ACTIONS(3595), - [anon_sym___extension__] = ACTIONS(3597), - [anon_sym_typedef] = ACTIONS(3597), - [anon_sym_virtual] = ACTIONS(3597), - [anon_sym_extern] = ACTIONS(3597), - [anon_sym___attribute__] = ACTIONS(3597), - [anon_sym___attribute] = ACTIONS(3597), - [anon_sym_using] = ACTIONS(3597), - [anon_sym_COLON_COLON] = ACTIONS(3595), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3595), - [anon_sym___declspec] = ACTIONS(3597), - [anon_sym___based] = ACTIONS(3597), - [anon_sym___cdecl] = ACTIONS(3597), - [anon_sym___clrcall] = ACTIONS(3597), - [anon_sym___stdcall] = ACTIONS(3597), - [anon_sym___fastcall] = ACTIONS(3597), - [anon_sym___thiscall] = ACTIONS(3597), - [anon_sym___vectorcall] = ACTIONS(3597), - [anon_sym_LBRACE] = ACTIONS(3595), - [anon_sym_signed] = ACTIONS(3597), - [anon_sym_unsigned] = ACTIONS(3597), - [anon_sym_long] = ACTIONS(3597), - [anon_sym_short] = ACTIONS(3597), - [anon_sym_LBRACK] = ACTIONS(3597), - [anon_sym_static] = ACTIONS(3597), - [anon_sym_register] = ACTIONS(3597), - [anon_sym_inline] = ACTIONS(3597), - [anon_sym___inline] = ACTIONS(3597), - [anon_sym___inline__] = ACTIONS(3597), - [anon_sym___forceinline] = ACTIONS(3597), - [anon_sym_thread_local] = ACTIONS(3597), - [anon_sym___thread] = ACTIONS(3597), - [anon_sym_const] = ACTIONS(3597), - [anon_sym_constexpr] = ACTIONS(3597), - [anon_sym_volatile] = ACTIONS(3597), - [anon_sym_restrict] = ACTIONS(3597), - [anon_sym___restrict__] = ACTIONS(3597), - [anon_sym__Atomic] = ACTIONS(3597), - [anon_sym__Noreturn] = ACTIONS(3597), - [anon_sym_noreturn] = ACTIONS(3597), - [anon_sym__Nonnull] = ACTIONS(3597), - [anon_sym_mutable] = ACTIONS(3597), - [anon_sym_constinit] = ACTIONS(3597), - [anon_sym_consteval] = ACTIONS(3597), - [anon_sym_alignas] = ACTIONS(3597), - [anon_sym__Alignas] = ACTIONS(3597), - [sym_primitive_type] = ACTIONS(3597), - [anon_sym_enum] = ACTIONS(3597), - [anon_sym_class] = ACTIONS(3597), - [anon_sym_struct] = ACTIONS(3597), - [anon_sym_union] = ACTIONS(3597), - [anon_sym_if] = ACTIONS(3597), - [anon_sym_switch] = ACTIONS(3597), - [anon_sym_case] = ACTIONS(3597), - [anon_sym_default] = ACTIONS(3597), - [anon_sym_while] = ACTIONS(3597), - [anon_sym_do] = ACTIONS(3597), - [anon_sym_for] = ACTIONS(3597), - [anon_sym_return] = ACTIONS(3597), - [anon_sym_break] = ACTIONS(3597), - [anon_sym_continue] = ACTIONS(3597), - [anon_sym_goto] = ACTIONS(3597), - [anon_sym_not] = ACTIONS(3597), - [anon_sym_compl] = ACTIONS(3597), - [anon_sym_DASH_DASH] = ACTIONS(3595), - [anon_sym_PLUS_PLUS] = ACTIONS(3595), - [anon_sym_sizeof] = ACTIONS(3597), - [anon_sym___alignof__] = ACTIONS(3597), - [anon_sym___alignof] = ACTIONS(3597), - [anon_sym__alignof] = ACTIONS(3597), - [anon_sym_alignof] = ACTIONS(3597), - [anon_sym__Alignof] = ACTIONS(3597), - [anon_sym_offsetof] = ACTIONS(3597), - [anon_sym__Generic] = ACTIONS(3597), - [anon_sym_asm] = ACTIONS(3597), - [anon_sym___asm__] = ACTIONS(3597), - [anon_sym___asm] = ACTIONS(3597), - [sym_number_literal] = ACTIONS(3595), - [anon_sym_L_SQUOTE] = ACTIONS(3595), - [anon_sym_u_SQUOTE] = ACTIONS(3595), - [anon_sym_U_SQUOTE] = ACTIONS(3595), - [anon_sym_u8_SQUOTE] = ACTIONS(3595), - [anon_sym_SQUOTE] = ACTIONS(3595), - [anon_sym_L_DQUOTE] = ACTIONS(3595), - [anon_sym_u_DQUOTE] = ACTIONS(3595), - [anon_sym_U_DQUOTE] = ACTIONS(3595), - [anon_sym_u8_DQUOTE] = ACTIONS(3595), - [anon_sym_DQUOTE] = ACTIONS(3595), - [sym_true] = ACTIONS(3597), - [sym_false] = ACTIONS(3597), - [anon_sym_NULL] = ACTIONS(3597), - [anon_sym_nullptr] = ACTIONS(3597), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3597), - [anon_sym_decltype] = ACTIONS(3597), - [anon_sym_explicit] = ACTIONS(3597), - [anon_sym_typename] = ACTIONS(3597), - [anon_sym_export] = ACTIONS(3597), - [anon_sym_module] = ACTIONS(3597), - [anon_sym_import] = ACTIONS(3597), - [anon_sym_template] = ACTIONS(3597), - [anon_sym_operator] = ACTIONS(3597), - [anon_sym_try] = ACTIONS(3597), - [anon_sym_delete] = ACTIONS(3597), - [anon_sym_throw] = ACTIONS(3597), - [anon_sym_namespace] = ACTIONS(3597), - [anon_sym_static_assert] = ACTIONS(3597), - [anon_sym_concept] = ACTIONS(3597), - [anon_sym_co_return] = ACTIONS(3597), - [anon_sym_co_yield] = ACTIONS(3597), - [anon_sym_R_DQUOTE] = ACTIONS(3595), - [anon_sym_LR_DQUOTE] = ACTIONS(3595), - [anon_sym_uR_DQUOTE] = ACTIONS(3595), - [anon_sym_UR_DQUOTE] = ACTIONS(3595), - [anon_sym_u8R_DQUOTE] = ACTIONS(3595), - [anon_sym_co_await] = ACTIONS(3597), - [anon_sym_new] = ACTIONS(3597), - [anon_sym_requires] = ACTIONS(3597), - [sym_this] = ACTIONS(3597), - }, [643] = { - [ts_builtin_sym_end] = ACTIONS(3599), - [sym_identifier] = ACTIONS(3601), - [aux_sym_preproc_include_token1] = ACTIONS(3601), - [aux_sym_preproc_def_token1] = ACTIONS(3601), - [aux_sym_preproc_if_token1] = ACTIONS(3601), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3601), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3601), - [sym_preproc_directive] = ACTIONS(3601), - [anon_sym_LPAREN2] = ACTIONS(3599), - [anon_sym_BANG] = ACTIONS(3599), - [anon_sym_TILDE] = ACTIONS(3599), - [anon_sym_DASH] = ACTIONS(3601), - [anon_sym_PLUS] = ACTIONS(3601), - [anon_sym_STAR] = ACTIONS(3599), - [anon_sym_AMP_AMP] = ACTIONS(3599), - [anon_sym_AMP] = ACTIONS(3601), - [anon_sym_SEMI] = ACTIONS(3599), - [anon_sym___extension__] = ACTIONS(3601), - [anon_sym_typedef] = ACTIONS(3601), - [anon_sym_virtual] = ACTIONS(3601), - [anon_sym_extern] = ACTIONS(3601), - [anon_sym___attribute__] = ACTIONS(3601), - [anon_sym___attribute] = ACTIONS(3601), - [anon_sym_using] = ACTIONS(3601), - [anon_sym_COLON_COLON] = ACTIONS(3599), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3599), - [anon_sym___declspec] = ACTIONS(3601), - [anon_sym___based] = ACTIONS(3601), - [anon_sym___cdecl] = ACTIONS(3601), - [anon_sym___clrcall] = ACTIONS(3601), - [anon_sym___stdcall] = ACTIONS(3601), - [anon_sym___fastcall] = ACTIONS(3601), - [anon_sym___thiscall] = ACTIONS(3601), - [anon_sym___vectorcall] = ACTIONS(3601), - [anon_sym_LBRACE] = ACTIONS(3599), - [anon_sym_signed] = ACTIONS(3601), - [anon_sym_unsigned] = ACTIONS(3601), - [anon_sym_long] = ACTIONS(3601), - [anon_sym_short] = ACTIONS(3601), - [anon_sym_LBRACK] = ACTIONS(3601), - [anon_sym_static] = ACTIONS(3601), - [anon_sym_register] = ACTIONS(3601), - [anon_sym_inline] = ACTIONS(3601), - [anon_sym___inline] = ACTIONS(3601), - [anon_sym___inline__] = ACTIONS(3601), - [anon_sym___forceinline] = ACTIONS(3601), - [anon_sym_thread_local] = ACTIONS(3601), - [anon_sym___thread] = ACTIONS(3601), - [anon_sym_const] = ACTIONS(3601), - [anon_sym_constexpr] = ACTIONS(3601), - [anon_sym_volatile] = ACTIONS(3601), - [anon_sym_restrict] = ACTIONS(3601), - [anon_sym___restrict__] = ACTIONS(3601), - [anon_sym__Atomic] = ACTIONS(3601), - [anon_sym__Noreturn] = ACTIONS(3601), - [anon_sym_noreturn] = ACTIONS(3601), - [anon_sym__Nonnull] = ACTIONS(3601), - [anon_sym_mutable] = ACTIONS(3601), - [anon_sym_constinit] = ACTIONS(3601), - [anon_sym_consteval] = ACTIONS(3601), - [anon_sym_alignas] = ACTIONS(3601), - [anon_sym__Alignas] = ACTIONS(3601), - [sym_primitive_type] = ACTIONS(3601), - [anon_sym_enum] = ACTIONS(3601), - [anon_sym_class] = ACTIONS(3601), - [anon_sym_struct] = ACTIONS(3601), - [anon_sym_union] = ACTIONS(3601), - [anon_sym_if] = ACTIONS(3601), - [anon_sym_switch] = ACTIONS(3601), - [anon_sym_case] = ACTIONS(3601), - [anon_sym_default] = ACTIONS(3601), - [anon_sym_while] = ACTIONS(3601), - [anon_sym_do] = ACTIONS(3601), - [anon_sym_for] = ACTIONS(3601), - [anon_sym_return] = ACTIONS(3601), - [anon_sym_break] = ACTIONS(3601), - [anon_sym_continue] = ACTIONS(3601), - [anon_sym_goto] = ACTIONS(3601), - [anon_sym_not] = ACTIONS(3601), - [anon_sym_compl] = ACTIONS(3601), - [anon_sym_DASH_DASH] = ACTIONS(3599), - [anon_sym_PLUS_PLUS] = ACTIONS(3599), - [anon_sym_sizeof] = ACTIONS(3601), - [anon_sym___alignof__] = ACTIONS(3601), - [anon_sym___alignof] = ACTIONS(3601), - [anon_sym__alignof] = ACTIONS(3601), - [anon_sym_alignof] = ACTIONS(3601), - [anon_sym__Alignof] = ACTIONS(3601), - [anon_sym_offsetof] = ACTIONS(3601), - [anon_sym__Generic] = ACTIONS(3601), - [anon_sym_asm] = ACTIONS(3601), - [anon_sym___asm__] = ACTIONS(3601), - [anon_sym___asm] = ACTIONS(3601), - [sym_number_literal] = ACTIONS(3599), - [anon_sym_L_SQUOTE] = ACTIONS(3599), - [anon_sym_u_SQUOTE] = ACTIONS(3599), - [anon_sym_U_SQUOTE] = ACTIONS(3599), - [anon_sym_u8_SQUOTE] = ACTIONS(3599), - [anon_sym_SQUOTE] = ACTIONS(3599), - [anon_sym_L_DQUOTE] = ACTIONS(3599), - [anon_sym_u_DQUOTE] = ACTIONS(3599), - [anon_sym_U_DQUOTE] = ACTIONS(3599), - [anon_sym_u8_DQUOTE] = ACTIONS(3599), - [anon_sym_DQUOTE] = ACTIONS(3599), - [sym_true] = ACTIONS(3601), - [sym_false] = ACTIONS(3601), - [anon_sym_NULL] = ACTIONS(3601), - [anon_sym_nullptr] = ACTIONS(3601), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3601), - [anon_sym_decltype] = ACTIONS(3601), - [anon_sym_explicit] = ACTIONS(3601), - [anon_sym_typename] = ACTIONS(3601), - [anon_sym_export] = ACTIONS(3601), - [anon_sym_module] = ACTIONS(3601), - [anon_sym_import] = ACTIONS(3601), - [anon_sym_template] = ACTIONS(3601), - [anon_sym_operator] = ACTIONS(3601), - [anon_sym_try] = ACTIONS(3601), - [anon_sym_delete] = ACTIONS(3601), - [anon_sym_throw] = ACTIONS(3601), - [anon_sym_namespace] = ACTIONS(3601), - [anon_sym_static_assert] = ACTIONS(3601), - [anon_sym_concept] = ACTIONS(3601), - [anon_sym_co_return] = ACTIONS(3601), - [anon_sym_co_yield] = ACTIONS(3601), - [anon_sym_R_DQUOTE] = ACTIONS(3599), - [anon_sym_LR_DQUOTE] = ACTIONS(3599), - [anon_sym_uR_DQUOTE] = ACTIONS(3599), - [anon_sym_UR_DQUOTE] = ACTIONS(3599), - [anon_sym_u8R_DQUOTE] = ACTIONS(3599), - [anon_sym_co_await] = ACTIONS(3601), - [anon_sym_new] = ACTIONS(3601), - [anon_sym_requires] = ACTIONS(3601), - [sym_this] = ACTIONS(3601), - }, - [644] = { - [sym_identifier] = ACTIONS(2767), - [aux_sym_preproc_include_token1] = ACTIONS(2767), - [aux_sym_preproc_def_token1] = ACTIONS(2767), - [aux_sym_preproc_if_token1] = ACTIONS(2767), - [aux_sym_preproc_if_token2] = ACTIONS(2767), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2767), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2767), - [sym_preproc_directive] = ACTIONS(2767), - [anon_sym_LPAREN2] = ACTIONS(2769), - [anon_sym_BANG] = ACTIONS(2769), - [anon_sym_TILDE] = ACTIONS(2769), - [anon_sym_DASH] = ACTIONS(2767), - [anon_sym_PLUS] = ACTIONS(2767), - [anon_sym_STAR] = ACTIONS(2769), - [anon_sym_AMP_AMP] = ACTIONS(2769), - [anon_sym_AMP] = ACTIONS(2767), - [anon_sym_SEMI] = ACTIONS(2769), - [anon_sym___extension__] = ACTIONS(2767), - [anon_sym_typedef] = ACTIONS(2767), - [anon_sym_virtual] = ACTIONS(2767), - [anon_sym_extern] = ACTIONS(2767), - [anon_sym___attribute__] = ACTIONS(2767), - [anon_sym___attribute] = ACTIONS(2767), - [anon_sym_using] = ACTIONS(2767), - [anon_sym_COLON_COLON] = ACTIONS(2769), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2769), - [anon_sym___declspec] = ACTIONS(2767), - [anon_sym___based] = ACTIONS(2767), - [anon_sym___cdecl] = ACTIONS(2767), - [anon_sym___clrcall] = ACTIONS(2767), - [anon_sym___stdcall] = ACTIONS(2767), - [anon_sym___fastcall] = ACTIONS(2767), - [anon_sym___thiscall] = ACTIONS(2767), - [anon_sym___vectorcall] = ACTIONS(2767), - [anon_sym_LBRACE] = ACTIONS(2769), - [anon_sym_signed] = ACTIONS(2767), - [anon_sym_unsigned] = ACTIONS(2767), - [anon_sym_long] = ACTIONS(2767), - [anon_sym_short] = ACTIONS(2767), - [anon_sym_LBRACK] = ACTIONS(2767), - [anon_sym_static] = ACTIONS(2767), - [anon_sym_register] = ACTIONS(2767), - [anon_sym_inline] = ACTIONS(2767), - [anon_sym___inline] = ACTIONS(2767), - [anon_sym___inline__] = ACTIONS(2767), - [anon_sym___forceinline] = ACTIONS(2767), - [anon_sym_thread_local] = ACTIONS(2767), - [anon_sym___thread] = ACTIONS(2767), - [anon_sym_const] = ACTIONS(2767), - [anon_sym_constexpr] = ACTIONS(2767), - [anon_sym_volatile] = ACTIONS(2767), - [anon_sym_restrict] = ACTIONS(2767), - [anon_sym___restrict__] = ACTIONS(2767), - [anon_sym__Atomic] = ACTIONS(2767), - [anon_sym__Noreturn] = ACTIONS(2767), - [anon_sym_noreturn] = ACTIONS(2767), - [anon_sym__Nonnull] = ACTIONS(2767), - [anon_sym_mutable] = ACTIONS(2767), - [anon_sym_constinit] = ACTIONS(2767), - [anon_sym_consteval] = ACTIONS(2767), - [anon_sym_alignas] = ACTIONS(2767), - [anon_sym__Alignas] = ACTIONS(2767), - [sym_primitive_type] = ACTIONS(2767), - [anon_sym_enum] = ACTIONS(2767), - [anon_sym_class] = ACTIONS(2767), - [anon_sym_struct] = ACTIONS(2767), - [anon_sym_union] = ACTIONS(2767), - [anon_sym_if] = ACTIONS(2767), - [anon_sym_else] = ACTIONS(2767), - [anon_sym_switch] = ACTIONS(2767), - [anon_sym_case] = ACTIONS(2767), - [anon_sym_default] = ACTIONS(2767), - [anon_sym_while] = ACTIONS(2767), - [anon_sym_do] = ACTIONS(2767), - [anon_sym_for] = ACTIONS(2767), - [anon_sym_return] = ACTIONS(2767), - [anon_sym_break] = ACTIONS(2767), - [anon_sym_continue] = ACTIONS(2767), - [anon_sym_goto] = ACTIONS(2767), - [anon_sym___try] = ACTIONS(2767), - [anon_sym___leave] = ACTIONS(2767), - [anon_sym_not] = ACTIONS(2767), - [anon_sym_compl] = ACTIONS(2767), - [anon_sym_DASH_DASH] = ACTIONS(2769), - [anon_sym_PLUS_PLUS] = ACTIONS(2769), - [anon_sym_sizeof] = ACTIONS(2767), - [anon_sym___alignof__] = ACTIONS(2767), - [anon_sym___alignof] = ACTIONS(2767), - [anon_sym__alignof] = ACTIONS(2767), - [anon_sym_alignof] = ACTIONS(2767), - [anon_sym__Alignof] = ACTIONS(2767), - [anon_sym_offsetof] = ACTIONS(2767), - [anon_sym__Generic] = ACTIONS(2767), - [anon_sym_asm] = ACTIONS(2767), - [anon_sym___asm__] = ACTIONS(2767), - [anon_sym___asm] = ACTIONS(2767), - [sym_number_literal] = ACTIONS(2769), - [anon_sym_L_SQUOTE] = ACTIONS(2769), - [anon_sym_u_SQUOTE] = ACTIONS(2769), - [anon_sym_U_SQUOTE] = ACTIONS(2769), - [anon_sym_u8_SQUOTE] = ACTIONS(2769), - [anon_sym_SQUOTE] = ACTIONS(2769), - [anon_sym_L_DQUOTE] = ACTIONS(2769), - [anon_sym_u_DQUOTE] = ACTIONS(2769), - [anon_sym_U_DQUOTE] = ACTIONS(2769), - [anon_sym_u8_DQUOTE] = ACTIONS(2769), - [anon_sym_DQUOTE] = ACTIONS(2769), - [sym_true] = ACTIONS(2767), - [sym_false] = ACTIONS(2767), - [anon_sym_NULL] = ACTIONS(2767), - [anon_sym_nullptr] = ACTIONS(2767), + [sym_identifier] = ACTIONS(2725), + [aux_sym_preproc_include_token1] = ACTIONS(2725), + [aux_sym_preproc_def_token1] = ACTIONS(2725), + [aux_sym_preproc_if_token1] = ACTIONS(2725), + [aux_sym_preproc_if_token2] = ACTIONS(2725), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2725), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2725), + [sym_preproc_directive] = ACTIONS(2725), + [anon_sym_LPAREN2] = ACTIONS(2727), + [anon_sym_BANG] = ACTIONS(2727), + [anon_sym_TILDE] = ACTIONS(2727), + [anon_sym_DASH] = ACTIONS(2725), + [anon_sym_PLUS] = ACTIONS(2725), + [anon_sym_STAR] = ACTIONS(2727), + [anon_sym_AMP_AMP] = ACTIONS(2727), + [anon_sym_AMP] = ACTIONS(2725), + [anon_sym_SEMI] = ACTIONS(2727), + [anon_sym___extension__] = ACTIONS(2725), + [anon_sym_typedef] = ACTIONS(2725), + [anon_sym_virtual] = ACTIONS(2725), + [anon_sym_extern] = ACTIONS(2725), + [anon_sym___attribute__] = ACTIONS(2725), + [anon_sym___attribute] = ACTIONS(2725), + [anon_sym_using] = ACTIONS(2725), + [anon_sym_COLON_COLON] = ACTIONS(2727), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2727), + [anon_sym___declspec] = ACTIONS(2725), + [anon_sym___based] = ACTIONS(2725), + [anon_sym___cdecl] = ACTIONS(2725), + [anon_sym___clrcall] = ACTIONS(2725), + [anon_sym___stdcall] = ACTIONS(2725), + [anon_sym___fastcall] = ACTIONS(2725), + [anon_sym___thiscall] = ACTIONS(2725), + [anon_sym___vectorcall] = ACTIONS(2725), + [anon_sym_LBRACE] = ACTIONS(2727), + [anon_sym_signed] = ACTIONS(2725), + [anon_sym_unsigned] = ACTIONS(2725), + [anon_sym_long] = ACTIONS(2725), + [anon_sym_short] = ACTIONS(2725), + [anon_sym_LBRACK] = ACTIONS(2725), + [anon_sym_static] = ACTIONS(2725), + [anon_sym_register] = ACTIONS(2725), + [anon_sym_inline] = ACTIONS(2725), + [anon_sym___inline] = ACTIONS(2725), + [anon_sym___inline__] = ACTIONS(2725), + [anon_sym___forceinline] = ACTIONS(2725), + [anon_sym_thread_local] = ACTIONS(2725), + [anon_sym___thread] = ACTIONS(2725), + [anon_sym_const] = ACTIONS(2725), + [anon_sym_constexpr] = ACTIONS(2725), + [anon_sym_volatile] = ACTIONS(2725), + [anon_sym_restrict] = ACTIONS(2725), + [anon_sym___restrict__] = ACTIONS(2725), + [anon_sym__Atomic] = ACTIONS(2725), + [anon_sym__Noreturn] = ACTIONS(2725), + [anon_sym_noreturn] = ACTIONS(2725), + [anon_sym__Nonnull] = ACTIONS(2725), + [anon_sym_mutable] = ACTIONS(2725), + [anon_sym_constinit] = ACTIONS(2725), + [anon_sym_consteval] = ACTIONS(2725), + [anon_sym_alignas] = ACTIONS(2725), + [anon_sym__Alignas] = ACTIONS(2725), + [sym_primitive_type] = ACTIONS(2725), + [anon_sym_enum] = ACTIONS(2725), + [anon_sym_class] = ACTIONS(2725), + [anon_sym_struct] = ACTIONS(2725), + [anon_sym_union] = ACTIONS(2725), + [anon_sym_if] = ACTIONS(2725), + [anon_sym_else] = ACTIONS(2725), + [anon_sym_switch] = ACTIONS(2725), + [anon_sym_case] = ACTIONS(2725), + [anon_sym_default] = ACTIONS(2725), + [anon_sym_while] = ACTIONS(2725), + [anon_sym_do] = ACTIONS(2725), + [anon_sym_for] = ACTIONS(2725), + [anon_sym_return] = ACTIONS(2725), + [anon_sym_break] = ACTIONS(2725), + [anon_sym_continue] = ACTIONS(2725), + [anon_sym_goto] = ACTIONS(2725), + [anon_sym___try] = ACTIONS(2725), + [anon_sym___leave] = ACTIONS(2725), + [anon_sym_not] = ACTIONS(2725), + [anon_sym_compl] = ACTIONS(2725), + [anon_sym_DASH_DASH] = ACTIONS(2727), + [anon_sym_PLUS_PLUS] = ACTIONS(2727), + [anon_sym_sizeof] = ACTIONS(2725), + [anon_sym___alignof__] = ACTIONS(2725), + [anon_sym___alignof] = ACTIONS(2725), + [anon_sym__alignof] = ACTIONS(2725), + [anon_sym_alignof] = ACTIONS(2725), + [anon_sym__Alignof] = ACTIONS(2725), + [anon_sym_offsetof] = ACTIONS(2725), + [anon_sym__Generic] = ACTIONS(2725), + [anon_sym_asm] = ACTIONS(2725), + [anon_sym___asm__] = ACTIONS(2725), + [anon_sym___asm] = ACTIONS(2725), + [sym_number_literal] = ACTIONS(2727), + [anon_sym_L_SQUOTE] = ACTIONS(2727), + [anon_sym_u_SQUOTE] = ACTIONS(2727), + [anon_sym_U_SQUOTE] = ACTIONS(2727), + [anon_sym_u8_SQUOTE] = ACTIONS(2727), + [anon_sym_SQUOTE] = ACTIONS(2727), + [anon_sym_L_DQUOTE] = ACTIONS(2727), + [anon_sym_u_DQUOTE] = ACTIONS(2727), + [anon_sym_U_DQUOTE] = ACTIONS(2727), + [anon_sym_u8_DQUOTE] = ACTIONS(2727), + [anon_sym_DQUOTE] = ACTIONS(2727), + [sym_true] = ACTIONS(2725), + [sym_false] = ACTIONS(2725), + [anon_sym_NULL] = ACTIONS(2725), + [anon_sym_nullptr] = ACTIONS(2725), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2725), + [anon_sym_decltype] = ACTIONS(2725), + [anon_sym_explicit] = ACTIONS(2725), + [anon_sym_typename] = ACTIONS(2725), + [anon_sym_template] = ACTIONS(2725), + [anon_sym_operator] = ACTIONS(2725), + [anon_sym_try] = ACTIONS(2725), + [anon_sym_delete] = ACTIONS(2725), + [anon_sym_throw] = ACTIONS(2725), + [anon_sym_namespace] = ACTIONS(2725), + [anon_sym_static_assert] = ACTIONS(2725), + [anon_sym_concept] = ACTIONS(2725), + [anon_sym_co_return] = ACTIONS(2725), + [anon_sym_co_yield] = ACTIONS(2725), + [anon_sym_R_DQUOTE] = ACTIONS(2727), + [anon_sym_LR_DQUOTE] = ACTIONS(2727), + [anon_sym_uR_DQUOTE] = ACTIONS(2727), + [anon_sym_UR_DQUOTE] = ACTIONS(2727), + [anon_sym_u8R_DQUOTE] = ACTIONS(2727), + [anon_sym_co_await] = ACTIONS(2725), + [anon_sym_new] = ACTIONS(2725), + [anon_sym_requires] = ACTIONS(2725), + [sym_this] = ACTIONS(2725), + }, + [644] = { + [sym_identifier] = ACTIONS(1940), + [aux_sym_preproc_include_token1] = ACTIONS(1940), + [aux_sym_preproc_def_token1] = ACTIONS(1940), + [anon_sym_COMMA] = ACTIONS(2729), + [aux_sym_preproc_if_token1] = ACTIONS(1940), + [aux_sym_preproc_if_token2] = ACTIONS(1940), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1940), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1940), + [sym_preproc_directive] = ACTIONS(1940), + [anon_sym_LPAREN2] = ACTIONS(1938), + [anon_sym_BANG] = ACTIONS(1938), + [anon_sym_TILDE] = ACTIONS(1938), + [anon_sym_DASH] = ACTIONS(1940), + [anon_sym_PLUS] = ACTIONS(1940), + [anon_sym_STAR] = ACTIONS(1938), + [anon_sym_AMP_AMP] = ACTIONS(1938), + [anon_sym_AMP] = ACTIONS(1940), + [anon_sym_SEMI] = ACTIONS(2729), + [anon_sym___extension__] = ACTIONS(1940), + [anon_sym_typedef] = ACTIONS(1940), + [anon_sym_virtual] = ACTIONS(1940), + [anon_sym_extern] = ACTIONS(1940), + [anon_sym___attribute__] = ACTIONS(1940), + [anon_sym___attribute] = ACTIONS(1940), + [anon_sym_using] = ACTIONS(1940), + [anon_sym_COLON_COLON] = ACTIONS(1938), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1938), + [anon_sym___declspec] = ACTIONS(1940), + [anon_sym___based] = ACTIONS(1940), + [anon_sym___cdecl] = ACTIONS(1940), + [anon_sym___clrcall] = ACTIONS(1940), + [anon_sym___stdcall] = ACTIONS(1940), + [anon_sym___fastcall] = ACTIONS(1940), + [anon_sym___thiscall] = ACTIONS(1940), + [anon_sym___vectorcall] = ACTIONS(1940), + [anon_sym_LBRACE] = ACTIONS(1938), + [anon_sym_signed] = ACTIONS(1940), + [anon_sym_unsigned] = ACTIONS(1940), + [anon_sym_long] = ACTIONS(1940), + [anon_sym_short] = ACTIONS(1940), + [anon_sym_LBRACK] = ACTIONS(1940), + [anon_sym_static] = ACTIONS(1940), + [anon_sym_register] = ACTIONS(1940), + [anon_sym_inline] = ACTIONS(1940), + [anon_sym___inline] = ACTIONS(1940), + [anon_sym___inline__] = ACTIONS(1940), + [anon_sym___forceinline] = ACTIONS(1940), + [anon_sym_thread_local] = ACTIONS(1940), + [anon_sym___thread] = ACTIONS(1940), + [anon_sym_const] = ACTIONS(1940), + [anon_sym_constexpr] = ACTIONS(1940), + [anon_sym_volatile] = ACTIONS(1940), + [anon_sym_restrict] = ACTIONS(1940), + [anon_sym___restrict__] = ACTIONS(1940), + [anon_sym__Atomic] = ACTIONS(1940), + [anon_sym__Noreturn] = ACTIONS(1940), + [anon_sym_noreturn] = ACTIONS(1940), + [anon_sym__Nonnull] = ACTIONS(1940), + [anon_sym_mutable] = ACTIONS(1940), + [anon_sym_constinit] = ACTIONS(1940), + [anon_sym_consteval] = ACTIONS(1940), + [anon_sym_alignas] = ACTIONS(1940), + [anon_sym__Alignas] = ACTIONS(1940), + [sym_primitive_type] = ACTIONS(1940), + [anon_sym_enum] = ACTIONS(1940), + [anon_sym_class] = ACTIONS(1940), + [anon_sym_struct] = ACTIONS(1940), + [anon_sym_union] = ACTIONS(1940), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_switch] = ACTIONS(1940), + [anon_sym_case] = ACTIONS(1940), + [anon_sym_default] = ACTIONS(1940), + [anon_sym_while] = ACTIONS(1940), + [anon_sym_do] = ACTIONS(1940), + [anon_sym_for] = ACTIONS(1940), + [anon_sym_return] = ACTIONS(1940), + [anon_sym_break] = ACTIONS(1940), + [anon_sym_continue] = ACTIONS(1940), + [anon_sym_goto] = ACTIONS(1940), + [anon_sym___try] = ACTIONS(1940), + [anon_sym___leave] = ACTIONS(1940), + [anon_sym_not] = ACTIONS(1940), + [anon_sym_compl] = ACTIONS(1940), + [anon_sym_DASH_DASH] = ACTIONS(1938), + [anon_sym_PLUS_PLUS] = ACTIONS(1938), + [anon_sym_sizeof] = ACTIONS(1940), + [anon_sym___alignof__] = ACTIONS(1940), + [anon_sym___alignof] = ACTIONS(1940), + [anon_sym__alignof] = ACTIONS(1940), + [anon_sym_alignof] = ACTIONS(1940), + [anon_sym__Alignof] = ACTIONS(1940), + [anon_sym_offsetof] = ACTIONS(1940), + [anon_sym__Generic] = ACTIONS(1940), + [anon_sym_asm] = ACTIONS(1940), + [anon_sym___asm__] = ACTIONS(1940), + [anon_sym___asm] = ACTIONS(1940), + [sym_number_literal] = ACTIONS(1938), + [anon_sym_L_SQUOTE] = ACTIONS(1938), + [anon_sym_u_SQUOTE] = ACTIONS(1938), + [anon_sym_U_SQUOTE] = ACTIONS(1938), + [anon_sym_u8_SQUOTE] = ACTIONS(1938), + [anon_sym_SQUOTE] = ACTIONS(1938), + [anon_sym_L_DQUOTE] = ACTIONS(1938), + [anon_sym_u_DQUOTE] = ACTIONS(1938), + [anon_sym_U_DQUOTE] = ACTIONS(1938), + [anon_sym_u8_DQUOTE] = ACTIONS(1938), + [anon_sym_DQUOTE] = ACTIONS(1938), + [sym_true] = ACTIONS(1940), + [sym_false] = ACTIONS(1940), + [anon_sym_NULL] = ACTIONS(1940), + [anon_sym_nullptr] = ACTIONS(1940), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2767), - [anon_sym_decltype] = ACTIONS(2767), - [anon_sym_explicit] = ACTIONS(2767), - [anon_sym_typename] = ACTIONS(2767), - [anon_sym_template] = ACTIONS(2767), - [anon_sym_operator] = ACTIONS(2767), - [anon_sym_try] = ACTIONS(2767), - [anon_sym_delete] = ACTIONS(2767), - [anon_sym_throw] = ACTIONS(2767), - [anon_sym_namespace] = ACTIONS(2767), - [anon_sym_static_assert] = ACTIONS(2767), - [anon_sym_concept] = ACTIONS(2767), - [anon_sym_co_return] = ACTIONS(2767), - [anon_sym_co_yield] = ACTIONS(2767), - [anon_sym_R_DQUOTE] = ACTIONS(2769), - [anon_sym_LR_DQUOTE] = ACTIONS(2769), - [anon_sym_uR_DQUOTE] = ACTIONS(2769), - [anon_sym_UR_DQUOTE] = ACTIONS(2769), - [anon_sym_u8R_DQUOTE] = ACTIONS(2769), - [anon_sym_co_await] = ACTIONS(2767), - [anon_sym_new] = ACTIONS(2767), - [anon_sym_requires] = ACTIONS(2767), - [sym_this] = ACTIONS(2767), + [sym_auto] = ACTIONS(1940), + [anon_sym_decltype] = ACTIONS(1940), + [anon_sym_explicit] = ACTIONS(1940), + [anon_sym_typename] = ACTIONS(1940), + [anon_sym_template] = ACTIONS(1940), + [anon_sym_operator] = ACTIONS(1940), + [anon_sym_try] = ACTIONS(1940), + [anon_sym_delete] = ACTIONS(1940), + [anon_sym_throw] = ACTIONS(1940), + [anon_sym_namespace] = ACTIONS(1940), + [anon_sym_static_assert] = ACTIONS(1940), + [anon_sym_concept] = ACTIONS(1940), + [anon_sym_co_return] = ACTIONS(1940), + [anon_sym_co_yield] = ACTIONS(1940), + [anon_sym_R_DQUOTE] = ACTIONS(1938), + [anon_sym_LR_DQUOTE] = ACTIONS(1938), + [anon_sym_uR_DQUOTE] = ACTIONS(1938), + [anon_sym_UR_DQUOTE] = ACTIONS(1938), + [anon_sym_u8R_DQUOTE] = ACTIONS(1938), + [anon_sym_co_await] = ACTIONS(1940), + [anon_sym_new] = ACTIONS(1940), + [anon_sym_requires] = ACTIONS(1940), + [sym_this] = ACTIONS(1940), }, [645] = { - [ts_builtin_sym_end] = ACTIONS(3603), - [sym_identifier] = ACTIONS(3605), - [aux_sym_preproc_include_token1] = ACTIONS(3605), - [aux_sym_preproc_def_token1] = ACTIONS(3605), - [aux_sym_preproc_if_token1] = ACTIONS(3605), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3605), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3605), - [sym_preproc_directive] = ACTIONS(3605), - [anon_sym_LPAREN2] = ACTIONS(3603), - [anon_sym_BANG] = ACTIONS(3603), - [anon_sym_TILDE] = ACTIONS(3603), - [anon_sym_DASH] = ACTIONS(3605), - [anon_sym_PLUS] = ACTIONS(3605), - [anon_sym_STAR] = ACTIONS(3603), - [anon_sym_AMP_AMP] = ACTIONS(3603), - [anon_sym_AMP] = ACTIONS(3605), - [anon_sym_SEMI] = ACTIONS(3603), - [anon_sym___extension__] = ACTIONS(3605), - [anon_sym_typedef] = ACTIONS(3605), - [anon_sym_virtual] = ACTIONS(3605), - [anon_sym_extern] = ACTIONS(3605), - [anon_sym___attribute__] = ACTIONS(3605), - [anon_sym___attribute] = ACTIONS(3605), - [anon_sym_using] = ACTIONS(3605), - [anon_sym_COLON_COLON] = ACTIONS(3603), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3603), - [anon_sym___declspec] = ACTIONS(3605), - [anon_sym___based] = ACTIONS(3605), - [anon_sym___cdecl] = ACTIONS(3605), - [anon_sym___clrcall] = ACTIONS(3605), - [anon_sym___stdcall] = ACTIONS(3605), - [anon_sym___fastcall] = ACTIONS(3605), - [anon_sym___thiscall] = ACTIONS(3605), - [anon_sym___vectorcall] = ACTIONS(3605), - [anon_sym_LBRACE] = ACTIONS(3603), - [anon_sym_signed] = ACTIONS(3605), - [anon_sym_unsigned] = ACTIONS(3605), - [anon_sym_long] = ACTIONS(3605), - [anon_sym_short] = ACTIONS(3605), - [anon_sym_LBRACK] = ACTIONS(3605), - [anon_sym_static] = ACTIONS(3605), - [anon_sym_register] = ACTIONS(3605), - [anon_sym_inline] = ACTIONS(3605), - [anon_sym___inline] = ACTIONS(3605), - [anon_sym___inline__] = ACTIONS(3605), - [anon_sym___forceinline] = ACTIONS(3605), - [anon_sym_thread_local] = ACTIONS(3605), - [anon_sym___thread] = ACTIONS(3605), - [anon_sym_const] = ACTIONS(3605), - [anon_sym_constexpr] = ACTIONS(3605), - [anon_sym_volatile] = ACTIONS(3605), - [anon_sym_restrict] = ACTIONS(3605), - [anon_sym___restrict__] = ACTIONS(3605), - [anon_sym__Atomic] = ACTIONS(3605), - [anon_sym__Noreturn] = ACTIONS(3605), - [anon_sym_noreturn] = ACTIONS(3605), - [anon_sym__Nonnull] = ACTIONS(3605), - [anon_sym_mutable] = ACTIONS(3605), - [anon_sym_constinit] = ACTIONS(3605), - [anon_sym_consteval] = ACTIONS(3605), - [anon_sym_alignas] = ACTIONS(3605), - [anon_sym__Alignas] = ACTIONS(3605), - [sym_primitive_type] = ACTIONS(3605), - [anon_sym_enum] = ACTIONS(3605), - [anon_sym_class] = ACTIONS(3605), - [anon_sym_struct] = ACTIONS(3605), - [anon_sym_union] = ACTIONS(3605), - [anon_sym_if] = ACTIONS(3605), - [anon_sym_switch] = ACTIONS(3605), - [anon_sym_case] = ACTIONS(3605), - [anon_sym_default] = ACTIONS(3605), - [anon_sym_while] = ACTIONS(3605), - [anon_sym_do] = ACTIONS(3605), - [anon_sym_for] = ACTIONS(3605), - [anon_sym_return] = ACTIONS(3605), - [anon_sym_break] = ACTIONS(3605), - [anon_sym_continue] = ACTIONS(3605), - [anon_sym_goto] = ACTIONS(3605), - [anon_sym_not] = ACTIONS(3605), - [anon_sym_compl] = ACTIONS(3605), - [anon_sym_DASH_DASH] = ACTIONS(3603), - [anon_sym_PLUS_PLUS] = ACTIONS(3603), - [anon_sym_sizeof] = ACTIONS(3605), - [anon_sym___alignof__] = ACTIONS(3605), - [anon_sym___alignof] = ACTIONS(3605), - [anon_sym__alignof] = ACTIONS(3605), - [anon_sym_alignof] = ACTIONS(3605), - [anon_sym__Alignof] = ACTIONS(3605), - [anon_sym_offsetof] = ACTIONS(3605), - [anon_sym__Generic] = ACTIONS(3605), - [anon_sym_asm] = ACTIONS(3605), - [anon_sym___asm__] = ACTIONS(3605), - [anon_sym___asm] = ACTIONS(3605), - [sym_number_literal] = ACTIONS(3603), - [anon_sym_L_SQUOTE] = ACTIONS(3603), - [anon_sym_u_SQUOTE] = ACTIONS(3603), - [anon_sym_U_SQUOTE] = ACTIONS(3603), - [anon_sym_u8_SQUOTE] = ACTIONS(3603), - [anon_sym_SQUOTE] = ACTIONS(3603), - [anon_sym_L_DQUOTE] = ACTIONS(3603), - [anon_sym_u_DQUOTE] = ACTIONS(3603), - [anon_sym_U_DQUOTE] = ACTIONS(3603), - [anon_sym_u8_DQUOTE] = ACTIONS(3603), - [anon_sym_DQUOTE] = ACTIONS(3603), - [sym_true] = ACTIONS(3605), - [sym_false] = ACTIONS(3605), - [anon_sym_NULL] = ACTIONS(3605), - [anon_sym_nullptr] = ACTIONS(3605), + [sym_identifier] = ACTIONS(2659), + [aux_sym_preproc_include_token1] = ACTIONS(2659), + [aux_sym_preproc_def_token1] = ACTIONS(2659), + [aux_sym_preproc_if_token1] = ACTIONS(2659), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2659), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2659), + [sym_preproc_directive] = ACTIONS(2659), + [anon_sym_LPAREN2] = ACTIONS(2661), + [anon_sym_BANG] = ACTIONS(2661), + [anon_sym_TILDE] = ACTIONS(2661), + [anon_sym_DASH] = ACTIONS(2659), + [anon_sym_PLUS] = ACTIONS(2659), + [anon_sym_STAR] = ACTIONS(2661), + [anon_sym_AMP_AMP] = ACTIONS(2661), + [anon_sym_AMP] = ACTIONS(2659), + [anon_sym_SEMI] = ACTIONS(2661), + [anon_sym___extension__] = ACTIONS(2659), + [anon_sym_typedef] = ACTIONS(2659), + [anon_sym_virtual] = ACTIONS(2659), + [anon_sym_extern] = ACTIONS(2659), + [anon_sym___attribute__] = ACTIONS(2659), + [anon_sym___attribute] = ACTIONS(2659), + [anon_sym_using] = ACTIONS(2659), + [anon_sym_COLON_COLON] = ACTIONS(2661), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2661), + [anon_sym___declspec] = ACTIONS(2659), + [anon_sym___based] = ACTIONS(2659), + [anon_sym___cdecl] = ACTIONS(2659), + [anon_sym___clrcall] = ACTIONS(2659), + [anon_sym___stdcall] = ACTIONS(2659), + [anon_sym___fastcall] = ACTIONS(2659), + [anon_sym___thiscall] = ACTIONS(2659), + [anon_sym___vectorcall] = ACTIONS(2659), + [anon_sym_LBRACE] = ACTIONS(2661), + [anon_sym_RBRACE] = ACTIONS(2661), + [anon_sym_signed] = ACTIONS(2659), + [anon_sym_unsigned] = ACTIONS(2659), + [anon_sym_long] = ACTIONS(2659), + [anon_sym_short] = ACTIONS(2659), + [anon_sym_LBRACK] = ACTIONS(2659), + [anon_sym_static] = ACTIONS(2659), + [anon_sym_register] = ACTIONS(2659), + [anon_sym_inline] = ACTIONS(2659), + [anon_sym___inline] = ACTIONS(2659), + [anon_sym___inline__] = ACTIONS(2659), + [anon_sym___forceinline] = ACTIONS(2659), + [anon_sym_thread_local] = ACTIONS(2659), + [anon_sym___thread] = ACTIONS(2659), + [anon_sym_const] = ACTIONS(2659), + [anon_sym_constexpr] = ACTIONS(2659), + [anon_sym_volatile] = ACTIONS(2659), + [anon_sym_restrict] = ACTIONS(2659), + [anon_sym___restrict__] = ACTIONS(2659), + [anon_sym__Atomic] = ACTIONS(2659), + [anon_sym__Noreturn] = ACTIONS(2659), + [anon_sym_noreturn] = ACTIONS(2659), + [anon_sym__Nonnull] = ACTIONS(2659), + [anon_sym_mutable] = ACTIONS(2659), + [anon_sym_constinit] = ACTIONS(2659), + [anon_sym_consteval] = ACTIONS(2659), + [anon_sym_alignas] = ACTIONS(2659), + [anon_sym__Alignas] = ACTIONS(2659), + [sym_primitive_type] = ACTIONS(2659), + [anon_sym_enum] = ACTIONS(2659), + [anon_sym_class] = ACTIONS(2659), + [anon_sym_struct] = ACTIONS(2659), + [anon_sym_union] = ACTIONS(2659), + [anon_sym_if] = ACTIONS(2659), + [anon_sym_else] = ACTIONS(2659), + [anon_sym_switch] = ACTIONS(2659), + [anon_sym_case] = ACTIONS(2659), + [anon_sym_default] = ACTIONS(2659), + [anon_sym_while] = ACTIONS(2659), + [anon_sym_do] = ACTIONS(2659), + [anon_sym_for] = ACTIONS(2659), + [anon_sym_return] = ACTIONS(2659), + [anon_sym_break] = ACTIONS(2659), + [anon_sym_continue] = ACTIONS(2659), + [anon_sym_goto] = ACTIONS(2659), + [anon_sym___try] = ACTIONS(2659), + [anon_sym___leave] = ACTIONS(2659), + [anon_sym_not] = ACTIONS(2659), + [anon_sym_compl] = ACTIONS(2659), + [anon_sym_DASH_DASH] = ACTIONS(2661), + [anon_sym_PLUS_PLUS] = ACTIONS(2661), + [anon_sym_sizeof] = ACTIONS(2659), + [anon_sym___alignof__] = ACTIONS(2659), + [anon_sym___alignof] = ACTIONS(2659), + [anon_sym__alignof] = ACTIONS(2659), + [anon_sym_alignof] = ACTIONS(2659), + [anon_sym__Alignof] = ACTIONS(2659), + [anon_sym_offsetof] = ACTIONS(2659), + [anon_sym__Generic] = ACTIONS(2659), + [anon_sym_asm] = ACTIONS(2659), + [anon_sym___asm__] = ACTIONS(2659), + [anon_sym___asm] = ACTIONS(2659), + [sym_number_literal] = ACTIONS(2661), + [anon_sym_L_SQUOTE] = ACTIONS(2661), + [anon_sym_u_SQUOTE] = ACTIONS(2661), + [anon_sym_U_SQUOTE] = ACTIONS(2661), + [anon_sym_u8_SQUOTE] = ACTIONS(2661), + [anon_sym_SQUOTE] = ACTIONS(2661), + [anon_sym_L_DQUOTE] = ACTIONS(2661), + [anon_sym_u_DQUOTE] = ACTIONS(2661), + [anon_sym_U_DQUOTE] = ACTIONS(2661), + [anon_sym_u8_DQUOTE] = ACTIONS(2661), + [anon_sym_DQUOTE] = ACTIONS(2661), + [sym_true] = ACTIONS(2659), + [sym_false] = ACTIONS(2659), + [anon_sym_NULL] = ACTIONS(2659), + [anon_sym_nullptr] = ACTIONS(2659), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3605), - [anon_sym_decltype] = ACTIONS(3605), - [anon_sym_explicit] = ACTIONS(3605), - [anon_sym_typename] = ACTIONS(3605), - [anon_sym_export] = ACTIONS(3605), - [anon_sym_module] = ACTIONS(3605), - [anon_sym_import] = ACTIONS(3605), - [anon_sym_template] = ACTIONS(3605), - [anon_sym_operator] = ACTIONS(3605), - [anon_sym_try] = ACTIONS(3605), - [anon_sym_delete] = ACTIONS(3605), - [anon_sym_throw] = ACTIONS(3605), - [anon_sym_namespace] = ACTIONS(3605), - [anon_sym_static_assert] = ACTIONS(3605), - [anon_sym_concept] = ACTIONS(3605), - [anon_sym_co_return] = ACTIONS(3605), - [anon_sym_co_yield] = ACTIONS(3605), - [anon_sym_R_DQUOTE] = ACTIONS(3603), - [anon_sym_LR_DQUOTE] = ACTIONS(3603), - [anon_sym_uR_DQUOTE] = ACTIONS(3603), - [anon_sym_UR_DQUOTE] = ACTIONS(3603), - [anon_sym_u8R_DQUOTE] = ACTIONS(3603), - [anon_sym_co_await] = ACTIONS(3605), - [anon_sym_new] = ACTIONS(3605), - [anon_sym_requires] = ACTIONS(3605), - [sym_this] = ACTIONS(3605), + [sym_auto] = ACTIONS(2659), + [anon_sym_decltype] = ACTIONS(2659), + [anon_sym_explicit] = ACTIONS(2659), + [anon_sym_typename] = ACTIONS(2659), + [anon_sym_template] = ACTIONS(2659), + [anon_sym_operator] = ACTIONS(2659), + [anon_sym_try] = ACTIONS(2659), + [anon_sym_delete] = ACTIONS(2659), + [anon_sym_throw] = ACTIONS(2659), + [anon_sym_namespace] = ACTIONS(2659), + [anon_sym_static_assert] = ACTIONS(2659), + [anon_sym_concept] = ACTIONS(2659), + [anon_sym_co_return] = ACTIONS(2659), + [anon_sym_co_yield] = ACTIONS(2659), + [anon_sym_R_DQUOTE] = ACTIONS(2661), + [anon_sym_LR_DQUOTE] = ACTIONS(2661), + [anon_sym_uR_DQUOTE] = ACTIONS(2661), + [anon_sym_UR_DQUOTE] = ACTIONS(2661), + [anon_sym_u8R_DQUOTE] = ACTIONS(2661), + [anon_sym_co_await] = ACTIONS(2659), + [anon_sym_new] = ACTIONS(2659), + [anon_sym_requires] = ACTIONS(2659), + [sym_this] = ACTIONS(2659), }, [646] = { - [ts_builtin_sym_end] = ACTIONS(2825), - [sym_identifier] = ACTIONS(2823), - [aux_sym_preproc_include_token1] = ACTIONS(2823), - [aux_sym_preproc_def_token1] = ACTIONS(2823), - [aux_sym_preproc_if_token1] = ACTIONS(2823), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2823), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2823), - [sym_preproc_directive] = ACTIONS(2823), - [anon_sym_LPAREN2] = ACTIONS(2825), - [anon_sym_BANG] = ACTIONS(2825), - [anon_sym_TILDE] = ACTIONS(2825), - [anon_sym_DASH] = ACTIONS(2823), - [anon_sym_PLUS] = ACTIONS(2823), - [anon_sym_STAR] = ACTIONS(2825), - [anon_sym_AMP_AMP] = ACTIONS(2825), - [anon_sym_AMP] = ACTIONS(2823), - [anon_sym_SEMI] = ACTIONS(2825), - [anon_sym___extension__] = ACTIONS(2823), - [anon_sym_typedef] = ACTIONS(2823), - [anon_sym_virtual] = ACTIONS(2823), - [anon_sym_extern] = ACTIONS(2823), - [anon_sym___attribute__] = ACTIONS(2823), - [anon_sym___attribute] = ACTIONS(2823), - [anon_sym_using] = ACTIONS(2823), - [anon_sym_COLON_COLON] = ACTIONS(2825), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2825), - [anon_sym___declspec] = ACTIONS(2823), - [anon_sym___based] = ACTIONS(2823), - [anon_sym___cdecl] = ACTIONS(2823), - [anon_sym___clrcall] = ACTIONS(2823), - [anon_sym___stdcall] = ACTIONS(2823), - [anon_sym___fastcall] = ACTIONS(2823), - [anon_sym___thiscall] = ACTIONS(2823), - [anon_sym___vectorcall] = ACTIONS(2823), - [anon_sym_LBRACE] = ACTIONS(2825), - [anon_sym_signed] = ACTIONS(2823), - [anon_sym_unsigned] = ACTIONS(2823), - [anon_sym_long] = ACTIONS(2823), - [anon_sym_short] = ACTIONS(2823), - [anon_sym_LBRACK] = ACTIONS(2823), - [anon_sym_static] = ACTIONS(2823), - [anon_sym_register] = ACTIONS(2823), - [anon_sym_inline] = ACTIONS(2823), - [anon_sym___inline] = ACTIONS(2823), - [anon_sym___inline__] = ACTIONS(2823), - [anon_sym___forceinline] = ACTIONS(2823), - [anon_sym_thread_local] = ACTIONS(2823), - [anon_sym___thread] = ACTIONS(2823), - [anon_sym_const] = ACTIONS(2823), - [anon_sym_constexpr] = ACTIONS(2823), - [anon_sym_volatile] = ACTIONS(2823), - [anon_sym_restrict] = ACTIONS(2823), - [anon_sym___restrict__] = ACTIONS(2823), - [anon_sym__Atomic] = ACTIONS(2823), - [anon_sym__Noreturn] = ACTIONS(2823), - [anon_sym_noreturn] = ACTIONS(2823), - [anon_sym__Nonnull] = ACTIONS(2823), - [anon_sym_mutable] = ACTIONS(2823), - [anon_sym_constinit] = ACTIONS(2823), - [anon_sym_consteval] = ACTIONS(2823), - [anon_sym_alignas] = ACTIONS(2823), - [anon_sym__Alignas] = ACTIONS(2823), - [sym_primitive_type] = ACTIONS(2823), - [anon_sym_enum] = ACTIONS(2823), - [anon_sym_class] = ACTIONS(2823), - [anon_sym_struct] = ACTIONS(2823), - [anon_sym_union] = ACTIONS(2823), - [anon_sym_if] = ACTIONS(2823), - [anon_sym_switch] = ACTIONS(2823), - [anon_sym_case] = ACTIONS(2823), - [anon_sym_default] = ACTIONS(2823), - [anon_sym_while] = ACTIONS(2823), - [anon_sym_do] = ACTIONS(2823), - [anon_sym_for] = ACTIONS(2823), - [anon_sym_return] = ACTIONS(2823), - [anon_sym_break] = ACTIONS(2823), - [anon_sym_continue] = ACTIONS(2823), - [anon_sym_goto] = ACTIONS(2823), - [anon_sym_not] = ACTIONS(2823), - [anon_sym_compl] = ACTIONS(2823), - [anon_sym_DASH_DASH] = ACTIONS(2825), - [anon_sym_PLUS_PLUS] = ACTIONS(2825), - [anon_sym_sizeof] = ACTIONS(2823), - [anon_sym___alignof__] = ACTIONS(2823), - [anon_sym___alignof] = ACTIONS(2823), - [anon_sym__alignof] = ACTIONS(2823), - [anon_sym_alignof] = ACTIONS(2823), - [anon_sym__Alignof] = ACTIONS(2823), - [anon_sym_offsetof] = ACTIONS(2823), - [anon_sym__Generic] = ACTIONS(2823), - [anon_sym_asm] = ACTIONS(2823), - [anon_sym___asm__] = ACTIONS(2823), - [anon_sym___asm] = ACTIONS(2823), - [sym_number_literal] = ACTIONS(2825), - [anon_sym_L_SQUOTE] = ACTIONS(2825), - [anon_sym_u_SQUOTE] = ACTIONS(2825), - [anon_sym_U_SQUOTE] = ACTIONS(2825), - [anon_sym_u8_SQUOTE] = ACTIONS(2825), - [anon_sym_SQUOTE] = ACTIONS(2825), - [anon_sym_L_DQUOTE] = ACTIONS(2825), - [anon_sym_u_DQUOTE] = ACTIONS(2825), - [anon_sym_U_DQUOTE] = ACTIONS(2825), - [anon_sym_u8_DQUOTE] = ACTIONS(2825), - [anon_sym_DQUOTE] = ACTIONS(2825), - [sym_true] = ACTIONS(2823), - [sym_false] = ACTIONS(2823), - [anon_sym_NULL] = ACTIONS(2823), - [anon_sym_nullptr] = ACTIONS(2823), + [sym_identifier] = ACTIONS(2627), + [aux_sym_preproc_include_token1] = ACTIONS(2627), + [aux_sym_preproc_def_token1] = ACTIONS(2627), + [aux_sym_preproc_if_token1] = ACTIONS(2627), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2627), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2627), + [sym_preproc_directive] = ACTIONS(2627), + [anon_sym_LPAREN2] = ACTIONS(2629), + [anon_sym_BANG] = ACTIONS(2629), + [anon_sym_TILDE] = ACTIONS(2629), + [anon_sym_DASH] = ACTIONS(2627), + [anon_sym_PLUS] = ACTIONS(2627), + [anon_sym_STAR] = ACTIONS(2629), + [anon_sym_AMP_AMP] = ACTIONS(2629), + [anon_sym_AMP] = ACTIONS(2627), + [anon_sym_SEMI] = ACTIONS(2629), + [anon_sym___extension__] = ACTIONS(2627), + [anon_sym_typedef] = ACTIONS(2627), + [anon_sym_virtual] = ACTIONS(2627), + [anon_sym_extern] = ACTIONS(2627), + [anon_sym___attribute__] = ACTIONS(2627), + [anon_sym___attribute] = ACTIONS(2627), + [anon_sym_using] = ACTIONS(2627), + [anon_sym_COLON_COLON] = ACTIONS(2629), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2629), + [anon_sym___declspec] = ACTIONS(2627), + [anon_sym___based] = ACTIONS(2627), + [anon_sym___cdecl] = ACTIONS(2627), + [anon_sym___clrcall] = ACTIONS(2627), + [anon_sym___stdcall] = ACTIONS(2627), + [anon_sym___fastcall] = ACTIONS(2627), + [anon_sym___thiscall] = ACTIONS(2627), + [anon_sym___vectorcall] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(2629), + [anon_sym_RBRACE] = ACTIONS(2629), + [anon_sym_signed] = ACTIONS(2627), + [anon_sym_unsigned] = ACTIONS(2627), + [anon_sym_long] = ACTIONS(2627), + [anon_sym_short] = ACTIONS(2627), + [anon_sym_LBRACK] = ACTIONS(2627), + [anon_sym_static] = ACTIONS(2627), + [anon_sym_register] = ACTIONS(2627), + [anon_sym_inline] = ACTIONS(2627), + [anon_sym___inline] = ACTIONS(2627), + [anon_sym___inline__] = ACTIONS(2627), + [anon_sym___forceinline] = ACTIONS(2627), + [anon_sym_thread_local] = ACTIONS(2627), + [anon_sym___thread] = ACTIONS(2627), + [anon_sym_const] = ACTIONS(2627), + [anon_sym_constexpr] = ACTIONS(2627), + [anon_sym_volatile] = ACTIONS(2627), + [anon_sym_restrict] = ACTIONS(2627), + [anon_sym___restrict__] = ACTIONS(2627), + [anon_sym__Atomic] = ACTIONS(2627), + [anon_sym__Noreturn] = ACTIONS(2627), + [anon_sym_noreturn] = ACTIONS(2627), + [anon_sym__Nonnull] = ACTIONS(2627), + [anon_sym_mutable] = ACTIONS(2627), + [anon_sym_constinit] = ACTIONS(2627), + [anon_sym_consteval] = ACTIONS(2627), + [anon_sym_alignas] = ACTIONS(2627), + [anon_sym__Alignas] = ACTIONS(2627), + [sym_primitive_type] = ACTIONS(2627), + [anon_sym_enum] = ACTIONS(2627), + [anon_sym_class] = ACTIONS(2627), + [anon_sym_struct] = ACTIONS(2627), + [anon_sym_union] = ACTIONS(2627), + [anon_sym_if] = ACTIONS(2627), + [anon_sym_else] = ACTIONS(2627), + [anon_sym_switch] = ACTIONS(2627), + [anon_sym_case] = ACTIONS(2627), + [anon_sym_default] = ACTIONS(2627), + [anon_sym_while] = ACTIONS(2627), + [anon_sym_do] = ACTIONS(2627), + [anon_sym_for] = ACTIONS(2627), + [anon_sym_return] = ACTIONS(2627), + [anon_sym_break] = ACTIONS(2627), + [anon_sym_continue] = ACTIONS(2627), + [anon_sym_goto] = ACTIONS(2627), + [anon_sym___try] = ACTIONS(2627), + [anon_sym___leave] = ACTIONS(2627), + [anon_sym_not] = ACTIONS(2627), + [anon_sym_compl] = ACTIONS(2627), + [anon_sym_DASH_DASH] = ACTIONS(2629), + [anon_sym_PLUS_PLUS] = ACTIONS(2629), + [anon_sym_sizeof] = ACTIONS(2627), + [anon_sym___alignof__] = ACTIONS(2627), + [anon_sym___alignof] = ACTIONS(2627), + [anon_sym__alignof] = ACTIONS(2627), + [anon_sym_alignof] = ACTIONS(2627), + [anon_sym__Alignof] = ACTIONS(2627), + [anon_sym_offsetof] = ACTIONS(2627), + [anon_sym__Generic] = ACTIONS(2627), + [anon_sym_asm] = ACTIONS(2627), + [anon_sym___asm__] = ACTIONS(2627), + [anon_sym___asm] = ACTIONS(2627), + [sym_number_literal] = ACTIONS(2629), + [anon_sym_L_SQUOTE] = ACTIONS(2629), + [anon_sym_u_SQUOTE] = ACTIONS(2629), + [anon_sym_U_SQUOTE] = ACTIONS(2629), + [anon_sym_u8_SQUOTE] = ACTIONS(2629), + [anon_sym_SQUOTE] = ACTIONS(2629), + [anon_sym_L_DQUOTE] = ACTIONS(2629), + [anon_sym_u_DQUOTE] = ACTIONS(2629), + [anon_sym_U_DQUOTE] = ACTIONS(2629), + [anon_sym_u8_DQUOTE] = ACTIONS(2629), + [anon_sym_DQUOTE] = ACTIONS(2629), + [sym_true] = ACTIONS(2627), + [sym_false] = ACTIONS(2627), + [anon_sym_NULL] = ACTIONS(2627), + [anon_sym_nullptr] = ACTIONS(2627), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2823), - [anon_sym_decltype] = ACTIONS(2823), - [anon_sym_explicit] = ACTIONS(2823), - [anon_sym_typename] = ACTIONS(2823), - [anon_sym_export] = ACTIONS(2823), - [anon_sym_module] = ACTIONS(2823), - [anon_sym_import] = ACTIONS(2823), - [anon_sym_template] = ACTIONS(2823), - [anon_sym_operator] = ACTIONS(2823), - [anon_sym_try] = ACTIONS(2823), - [anon_sym_delete] = ACTIONS(2823), - [anon_sym_throw] = ACTIONS(2823), - [anon_sym_namespace] = ACTIONS(2823), - [anon_sym_static_assert] = ACTIONS(2823), - [anon_sym_concept] = ACTIONS(2823), - [anon_sym_co_return] = ACTIONS(2823), - [anon_sym_co_yield] = ACTIONS(2823), - [anon_sym_R_DQUOTE] = ACTIONS(2825), - [anon_sym_LR_DQUOTE] = ACTIONS(2825), - [anon_sym_uR_DQUOTE] = ACTIONS(2825), - [anon_sym_UR_DQUOTE] = ACTIONS(2825), - [anon_sym_u8R_DQUOTE] = ACTIONS(2825), - [anon_sym_co_await] = ACTIONS(2823), - [anon_sym_new] = ACTIONS(2823), - [anon_sym_requires] = ACTIONS(2823), - [sym_this] = ACTIONS(2823), + [sym_auto] = ACTIONS(2627), + [anon_sym_decltype] = ACTIONS(2627), + [anon_sym_explicit] = ACTIONS(2627), + [anon_sym_typename] = ACTIONS(2627), + [anon_sym_template] = ACTIONS(2627), + [anon_sym_operator] = ACTIONS(2627), + [anon_sym_try] = ACTIONS(2627), + [anon_sym_delete] = ACTIONS(2627), + [anon_sym_throw] = ACTIONS(2627), + [anon_sym_namespace] = ACTIONS(2627), + [anon_sym_static_assert] = ACTIONS(2627), + [anon_sym_concept] = ACTIONS(2627), + [anon_sym_co_return] = ACTIONS(2627), + [anon_sym_co_yield] = ACTIONS(2627), + [anon_sym_R_DQUOTE] = ACTIONS(2629), + [anon_sym_LR_DQUOTE] = ACTIONS(2629), + [anon_sym_uR_DQUOTE] = ACTIONS(2629), + [anon_sym_UR_DQUOTE] = ACTIONS(2629), + [anon_sym_u8R_DQUOTE] = ACTIONS(2629), + [anon_sym_co_await] = ACTIONS(2627), + [anon_sym_new] = ACTIONS(2627), + [anon_sym_requires] = ACTIONS(2627), + [sym_this] = ACTIONS(2627), }, [647] = { - [sym_identifier] = ACTIONS(2767), - [aux_sym_preproc_include_token1] = ACTIONS(2767), - [aux_sym_preproc_def_token1] = ACTIONS(2767), - [aux_sym_preproc_if_token1] = ACTIONS(2767), - [aux_sym_preproc_if_token2] = ACTIONS(2767), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2767), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2767), - [sym_preproc_directive] = ACTIONS(2767), - [anon_sym_LPAREN2] = ACTIONS(2769), - [anon_sym_BANG] = ACTIONS(2769), - [anon_sym_TILDE] = ACTIONS(2769), - [anon_sym_DASH] = ACTIONS(2767), - [anon_sym_PLUS] = ACTIONS(2767), - [anon_sym_STAR] = ACTIONS(2769), - [anon_sym_AMP_AMP] = ACTIONS(2769), - [anon_sym_AMP] = ACTIONS(2767), - [anon_sym_SEMI] = ACTIONS(2769), - [anon_sym___extension__] = ACTIONS(2767), - [anon_sym_typedef] = ACTIONS(2767), - [anon_sym_virtual] = ACTIONS(2767), - [anon_sym_extern] = ACTIONS(2767), - [anon_sym___attribute__] = ACTIONS(2767), - [anon_sym___attribute] = ACTIONS(2767), - [anon_sym_using] = ACTIONS(2767), - [anon_sym_COLON_COLON] = ACTIONS(2769), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2769), - [anon_sym___declspec] = ACTIONS(2767), - [anon_sym___based] = ACTIONS(2767), - [anon_sym___cdecl] = ACTIONS(2767), - [anon_sym___clrcall] = ACTIONS(2767), - [anon_sym___stdcall] = ACTIONS(2767), - [anon_sym___fastcall] = ACTIONS(2767), - [anon_sym___thiscall] = ACTIONS(2767), - [anon_sym___vectorcall] = ACTIONS(2767), - [anon_sym_LBRACE] = ACTIONS(2769), - [anon_sym_signed] = ACTIONS(2767), - [anon_sym_unsigned] = ACTIONS(2767), - [anon_sym_long] = ACTIONS(2767), - [anon_sym_short] = ACTIONS(2767), - [anon_sym_LBRACK] = ACTIONS(2767), - [anon_sym_static] = ACTIONS(2767), - [anon_sym_register] = ACTIONS(2767), - [anon_sym_inline] = ACTIONS(2767), - [anon_sym___inline] = ACTIONS(2767), - [anon_sym___inline__] = ACTIONS(2767), - [anon_sym___forceinline] = ACTIONS(2767), - [anon_sym_thread_local] = ACTIONS(2767), - [anon_sym___thread] = ACTIONS(2767), - [anon_sym_const] = ACTIONS(2767), - [anon_sym_constexpr] = ACTIONS(2767), - [anon_sym_volatile] = ACTIONS(2767), - [anon_sym_restrict] = ACTIONS(2767), - [anon_sym___restrict__] = ACTIONS(2767), - [anon_sym__Atomic] = ACTIONS(2767), - [anon_sym__Noreturn] = ACTIONS(2767), - [anon_sym_noreturn] = ACTIONS(2767), - [anon_sym__Nonnull] = ACTIONS(2767), - [anon_sym_mutable] = ACTIONS(2767), - [anon_sym_constinit] = ACTIONS(2767), - [anon_sym_consteval] = ACTIONS(2767), - [anon_sym_alignas] = ACTIONS(2767), - [anon_sym__Alignas] = ACTIONS(2767), - [sym_primitive_type] = ACTIONS(2767), - [anon_sym_enum] = ACTIONS(2767), - [anon_sym_class] = ACTIONS(2767), - [anon_sym_struct] = ACTIONS(2767), - [anon_sym_union] = ACTIONS(2767), - [anon_sym_if] = ACTIONS(2767), - [anon_sym_else] = ACTIONS(2767), - [anon_sym_switch] = ACTIONS(2767), - [anon_sym_case] = ACTIONS(2767), - [anon_sym_default] = ACTIONS(2767), - [anon_sym_while] = ACTIONS(2767), - [anon_sym_do] = ACTIONS(2767), - [anon_sym_for] = ACTIONS(2767), - [anon_sym_return] = ACTIONS(2767), - [anon_sym_break] = ACTIONS(2767), - [anon_sym_continue] = ACTIONS(2767), - [anon_sym_goto] = ACTIONS(2767), - [anon_sym___try] = ACTIONS(2767), - [anon_sym___leave] = ACTIONS(2767), - [anon_sym_not] = ACTIONS(2767), - [anon_sym_compl] = ACTIONS(2767), - [anon_sym_DASH_DASH] = ACTIONS(2769), - [anon_sym_PLUS_PLUS] = ACTIONS(2769), - [anon_sym_sizeof] = ACTIONS(2767), - [anon_sym___alignof__] = ACTIONS(2767), - [anon_sym___alignof] = ACTIONS(2767), - [anon_sym__alignof] = ACTIONS(2767), - [anon_sym_alignof] = ACTIONS(2767), - [anon_sym__Alignof] = ACTIONS(2767), - [anon_sym_offsetof] = ACTIONS(2767), - [anon_sym__Generic] = ACTIONS(2767), - [anon_sym_asm] = ACTIONS(2767), - [anon_sym___asm__] = ACTIONS(2767), - [anon_sym___asm] = ACTIONS(2767), - [sym_number_literal] = ACTIONS(2769), - [anon_sym_L_SQUOTE] = ACTIONS(2769), - [anon_sym_u_SQUOTE] = ACTIONS(2769), - [anon_sym_U_SQUOTE] = ACTIONS(2769), - [anon_sym_u8_SQUOTE] = ACTIONS(2769), - [anon_sym_SQUOTE] = ACTIONS(2769), - [anon_sym_L_DQUOTE] = ACTIONS(2769), - [anon_sym_u_DQUOTE] = ACTIONS(2769), - [anon_sym_U_DQUOTE] = ACTIONS(2769), - [anon_sym_u8_DQUOTE] = ACTIONS(2769), - [anon_sym_DQUOTE] = ACTIONS(2769), - [sym_true] = ACTIONS(2767), - [sym_false] = ACTIONS(2767), - [anon_sym_NULL] = ACTIONS(2767), - [anon_sym_nullptr] = ACTIONS(2767), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2767), - [anon_sym_decltype] = ACTIONS(2767), - [anon_sym_explicit] = ACTIONS(2767), - [anon_sym_typename] = ACTIONS(2767), - [anon_sym_template] = ACTIONS(2767), - [anon_sym_operator] = ACTIONS(2767), - [anon_sym_try] = ACTIONS(2767), - [anon_sym_delete] = ACTIONS(2767), - [anon_sym_throw] = ACTIONS(2767), - [anon_sym_namespace] = ACTIONS(2767), - [anon_sym_static_assert] = ACTIONS(2767), - [anon_sym_concept] = ACTIONS(2767), - [anon_sym_co_return] = ACTIONS(2767), - [anon_sym_co_yield] = ACTIONS(2767), - [anon_sym_R_DQUOTE] = ACTIONS(2769), - [anon_sym_LR_DQUOTE] = ACTIONS(2769), - [anon_sym_uR_DQUOTE] = ACTIONS(2769), - [anon_sym_UR_DQUOTE] = ACTIONS(2769), - [anon_sym_u8R_DQUOTE] = ACTIONS(2769), - [anon_sym_co_await] = ACTIONS(2767), - [anon_sym_new] = ACTIONS(2767), - [anon_sym_requires] = ACTIONS(2767), - [sym_this] = ACTIONS(2767), - }, - [648] = { - [ts_builtin_sym_end] = ACTIONS(2829), - [sym_identifier] = ACTIONS(2827), - [aux_sym_preproc_include_token1] = ACTIONS(2827), - [aux_sym_preproc_def_token1] = ACTIONS(2827), - [aux_sym_preproc_if_token1] = ACTIONS(2827), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2827), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2827), - [sym_preproc_directive] = ACTIONS(2827), - [anon_sym_LPAREN2] = ACTIONS(2829), - [anon_sym_BANG] = ACTIONS(2829), - [anon_sym_TILDE] = ACTIONS(2829), - [anon_sym_DASH] = ACTIONS(2827), - [anon_sym_PLUS] = ACTIONS(2827), - [anon_sym_STAR] = ACTIONS(2829), - [anon_sym_AMP_AMP] = ACTIONS(2829), - [anon_sym_AMP] = ACTIONS(2827), - [anon_sym_SEMI] = ACTIONS(2829), - [anon_sym___extension__] = ACTIONS(2827), - [anon_sym_typedef] = ACTIONS(2827), - [anon_sym_virtual] = ACTIONS(2827), - [anon_sym_extern] = ACTIONS(2827), - [anon_sym___attribute__] = ACTIONS(2827), - [anon_sym___attribute] = ACTIONS(2827), - [anon_sym_using] = ACTIONS(2827), - [anon_sym_COLON_COLON] = ACTIONS(2829), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2829), - [anon_sym___declspec] = ACTIONS(2827), - [anon_sym___based] = ACTIONS(2827), - [anon_sym___cdecl] = ACTIONS(2827), - [anon_sym___clrcall] = ACTIONS(2827), - [anon_sym___stdcall] = ACTIONS(2827), - [anon_sym___fastcall] = ACTIONS(2827), - [anon_sym___thiscall] = ACTIONS(2827), - [anon_sym___vectorcall] = ACTIONS(2827), - [anon_sym_LBRACE] = ACTIONS(2829), - [anon_sym_signed] = ACTIONS(2827), - [anon_sym_unsigned] = ACTIONS(2827), - [anon_sym_long] = ACTIONS(2827), - [anon_sym_short] = ACTIONS(2827), - [anon_sym_LBRACK] = ACTIONS(2827), - [anon_sym_static] = ACTIONS(2827), - [anon_sym_register] = ACTIONS(2827), - [anon_sym_inline] = ACTIONS(2827), - [anon_sym___inline] = ACTIONS(2827), - [anon_sym___inline__] = ACTIONS(2827), - [anon_sym___forceinline] = ACTIONS(2827), - [anon_sym_thread_local] = ACTIONS(2827), - [anon_sym___thread] = ACTIONS(2827), - [anon_sym_const] = ACTIONS(2827), - [anon_sym_constexpr] = ACTIONS(2827), - [anon_sym_volatile] = ACTIONS(2827), - [anon_sym_restrict] = ACTIONS(2827), - [anon_sym___restrict__] = ACTIONS(2827), - [anon_sym__Atomic] = ACTIONS(2827), - [anon_sym__Noreturn] = ACTIONS(2827), - [anon_sym_noreturn] = ACTIONS(2827), - [anon_sym__Nonnull] = ACTIONS(2827), - [anon_sym_mutable] = ACTIONS(2827), - [anon_sym_constinit] = ACTIONS(2827), - [anon_sym_consteval] = ACTIONS(2827), - [anon_sym_alignas] = ACTIONS(2827), - [anon_sym__Alignas] = ACTIONS(2827), - [sym_primitive_type] = ACTIONS(2827), - [anon_sym_enum] = ACTIONS(2827), - [anon_sym_class] = ACTIONS(2827), - [anon_sym_struct] = ACTIONS(2827), - [anon_sym_union] = ACTIONS(2827), - [anon_sym_if] = ACTIONS(2827), - [anon_sym_switch] = ACTIONS(2827), - [anon_sym_case] = ACTIONS(2827), - [anon_sym_default] = ACTIONS(2827), - [anon_sym_while] = ACTIONS(2827), - [anon_sym_do] = ACTIONS(2827), - [anon_sym_for] = ACTIONS(2827), - [anon_sym_return] = ACTIONS(2827), - [anon_sym_break] = ACTIONS(2827), - [anon_sym_continue] = ACTIONS(2827), - [anon_sym_goto] = ACTIONS(2827), - [anon_sym_not] = ACTIONS(2827), - [anon_sym_compl] = ACTIONS(2827), - [anon_sym_DASH_DASH] = ACTIONS(2829), - [anon_sym_PLUS_PLUS] = ACTIONS(2829), - [anon_sym_sizeof] = ACTIONS(2827), - [anon_sym___alignof__] = ACTIONS(2827), - [anon_sym___alignof] = ACTIONS(2827), - [anon_sym__alignof] = ACTIONS(2827), - [anon_sym_alignof] = ACTIONS(2827), - [anon_sym__Alignof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2827), - [anon_sym__Generic] = ACTIONS(2827), - [anon_sym_asm] = ACTIONS(2827), - [anon_sym___asm__] = ACTIONS(2827), - [anon_sym___asm] = ACTIONS(2827), - [sym_number_literal] = ACTIONS(2829), - [anon_sym_L_SQUOTE] = ACTIONS(2829), - [anon_sym_u_SQUOTE] = ACTIONS(2829), - [anon_sym_U_SQUOTE] = ACTIONS(2829), - [anon_sym_u8_SQUOTE] = ACTIONS(2829), - [anon_sym_SQUOTE] = ACTIONS(2829), - [anon_sym_L_DQUOTE] = ACTIONS(2829), - [anon_sym_u_DQUOTE] = ACTIONS(2829), - [anon_sym_U_DQUOTE] = ACTIONS(2829), - [anon_sym_u8_DQUOTE] = ACTIONS(2829), - [anon_sym_DQUOTE] = ACTIONS(2829), - [sym_true] = ACTIONS(2827), - [sym_false] = ACTIONS(2827), - [anon_sym_NULL] = ACTIONS(2827), - [anon_sym_nullptr] = ACTIONS(2827), + [sym_identifier] = ACTIONS(2627), + [aux_sym_preproc_include_token1] = ACTIONS(2627), + [aux_sym_preproc_def_token1] = ACTIONS(2627), + [aux_sym_preproc_if_token1] = ACTIONS(2627), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2627), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2627), + [sym_preproc_directive] = ACTIONS(2627), + [anon_sym_LPAREN2] = ACTIONS(2629), + [anon_sym_BANG] = ACTIONS(2629), + [anon_sym_TILDE] = ACTIONS(2629), + [anon_sym_DASH] = ACTIONS(2627), + [anon_sym_PLUS] = ACTIONS(2627), + [anon_sym_STAR] = ACTIONS(2629), + [anon_sym_AMP_AMP] = ACTIONS(2629), + [anon_sym_AMP] = ACTIONS(2627), + [anon_sym_SEMI] = ACTIONS(2629), + [anon_sym___extension__] = ACTIONS(2627), + [anon_sym_typedef] = ACTIONS(2627), + [anon_sym_virtual] = ACTIONS(2627), + [anon_sym_extern] = ACTIONS(2627), + [anon_sym___attribute__] = ACTIONS(2627), + [anon_sym___attribute] = ACTIONS(2627), + [anon_sym_using] = ACTIONS(2627), + [anon_sym_COLON_COLON] = ACTIONS(2629), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2629), + [anon_sym___declspec] = ACTIONS(2627), + [anon_sym___based] = ACTIONS(2627), + [anon_sym___cdecl] = ACTIONS(2627), + [anon_sym___clrcall] = ACTIONS(2627), + [anon_sym___stdcall] = ACTIONS(2627), + [anon_sym___fastcall] = ACTIONS(2627), + [anon_sym___thiscall] = ACTIONS(2627), + [anon_sym___vectorcall] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(2629), + [anon_sym_RBRACE] = ACTIONS(2629), + [anon_sym_signed] = ACTIONS(2627), + [anon_sym_unsigned] = ACTIONS(2627), + [anon_sym_long] = ACTIONS(2627), + [anon_sym_short] = ACTIONS(2627), + [anon_sym_LBRACK] = ACTIONS(2627), + [anon_sym_static] = ACTIONS(2627), + [anon_sym_register] = ACTIONS(2627), + [anon_sym_inline] = ACTIONS(2627), + [anon_sym___inline] = ACTIONS(2627), + [anon_sym___inline__] = ACTIONS(2627), + [anon_sym___forceinline] = ACTIONS(2627), + [anon_sym_thread_local] = ACTIONS(2627), + [anon_sym___thread] = ACTIONS(2627), + [anon_sym_const] = ACTIONS(2627), + [anon_sym_constexpr] = ACTIONS(2627), + [anon_sym_volatile] = ACTIONS(2627), + [anon_sym_restrict] = ACTIONS(2627), + [anon_sym___restrict__] = ACTIONS(2627), + [anon_sym__Atomic] = ACTIONS(2627), + [anon_sym__Noreturn] = ACTIONS(2627), + [anon_sym_noreturn] = ACTIONS(2627), + [anon_sym__Nonnull] = ACTIONS(2627), + [anon_sym_mutable] = ACTIONS(2627), + [anon_sym_constinit] = ACTIONS(2627), + [anon_sym_consteval] = ACTIONS(2627), + [anon_sym_alignas] = ACTIONS(2627), + [anon_sym__Alignas] = ACTIONS(2627), + [sym_primitive_type] = ACTIONS(2627), + [anon_sym_enum] = ACTIONS(2627), + [anon_sym_class] = ACTIONS(2627), + [anon_sym_struct] = ACTIONS(2627), + [anon_sym_union] = ACTIONS(2627), + [anon_sym_if] = ACTIONS(2627), + [anon_sym_else] = ACTIONS(2627), + [anon_sym_switch] = ACTIONS(2627), + [anon_sym_case] = ACTIONS(2627), + [anon_sym_default] = ACTIONS(2627), + [anon_sym_while] = ACTIONS(2627), + [anon_sym_do] = ACTIONS(2627), + [anon_sym_for] = ACTIONS(2627), + [anon_sym_return] = ACTIONS(2627), + [anon_sym_break] = ACTIONS(2627), + [anon_sym_continue] = ACTIONS(2627), + [anon_sym_goto] = ACTIONS(2627), + [anon_sym___try] = ACTIONS(2627), + [anon_sym___leave] = ACTIONS(2627), + [anon_sym_not] = ACTIONS(2627), + [anon_sym_compl] = ACTIONS(2627), + [anon_sym_DASH_DASH] = ACTIONS(2629), + [anon_sym_PLUS_PLUS] = ACTIONS(2629), + [anon_sym_sizeof] = ACTIONS(2627), + [anon_sym___alignof__] = ACTIONS(2627), + [anon_sym___alignof] = ACTIONS(2627), + [anon_sym__alignof] = ACTIONS(2627), + [anon_sym_alignof] = ACTIONS(2627), + [anon_sym__Alignof] = ACTIONS(2627), + [anon_sym_offsetof] = ACTIONS(2627), + [anon_sym__Generic] = ACTIONS(2627), + [anon_sym_asm] = ACTIONS(2627), + [anon_sym___asm__] = ACTIONS(2627), + [anon_sym___asm] = ACTIONS(2627), + [sym_number_literal] = ACTIONS(2629), + [anon_sym_L_SQUOTE] = ACTIONS(2629), + [anon_sym_u_SQUOTE] = ACTIONS(2629), + [anon_sym_U_SQUOTE] = ACTIONS(2629), + [anon_sym_u8_SQUOTE] = ACTIONS(2629), + [anon_sym_SQUOTE] = ACTIONS(2629), + [anon_sym_L_DQUOTE] = ACTIONS(2629), + [anon_sym_u_DQUOTE] = ACTIONS(2629), + [anon_sym_U_DQUOTE] = ACTIONS(2629), + [anon_sym_u8_DQUOTE] = ACTIONS(2629), + [anon_sym_DQUOTE] = ACTIONS(2629), + [sym_true] = ACTIONS(2627), + [sym_false] = ACTIONS(2627), + [anon_sym_NULL] = ACTIONS(2627), + [anon_sym_nullptr] = ACTIONS(2627), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2827), - [anon_sym_decltype] = ACTIONS(2827), - [anon_sym_explicit] = ACTIONS(2827), - [anon_sym_typename] = ACTIONS(2827), - [anon_sym_export] = ACTIONS(2827), - [anon_sym_module] = ACTIONS(2827), - [anon_sym_import] = ACTIONS(2827), - [anon_sym_template] = ACTIONS(2827), - [anon_sym_operator] = ACTIONS(2827), - [anon_sym_try] = ACTIONS(2827), - [anon_sym_delete] = ACTIONS(2827), - [anon_sym_throw] = ACTIONS(2827), - [anon_sym_namespace] = ACTIONS(2827), - [anon_sym_static_assert] = ACTIONS(2827), - [anon_sym_concept] = ACTIONS(2827), - [anon_sym_co_return] = ACTIONS(2827), - [anon_sym_co_yield] = ACTIONS(2827), - [anon_sym_R_DQUOTE] = ACTIONS(2829), - [anon_sym_LR_DQUOTE] = ACTIONS(2829), - [anon_sym_uR_DQUOTE] = ACTIONS(2829), - [anon_sym_UR_DQUOTE] = ACTIONS(2829), - [anon_sym_u8R_DQUOTE] = ACTIONS(2829), - [anon_sym_co_await] = ACTIONS(2827), - [anon_sym_new] = ACTIONS(2827), - [anon_sym_requires] = ACTIONS(2827), - [sym_this] = ACTIONS(2827), + [sym_auto] = ACTIONS(2627), + [anon_sym_decltype] = ACTIONS(2627), + [anon_sym_explicit] = ACTIONS(2627), + [anon_sym_typename] = ACTIONS(2627), + [anon_sym_template] = ACTIONS(2627), + [anon_sym_operator] = ACTIONS(2627), + [anon_sym_try] = ACTIONS(2627), + [anon_sym_delete] = ACTIONS(2627), + [anon_sym_throw] = ACTIONS(2627), + [anon_sym_namespace] = ACTIONS(2627), + [anon_sym_static_assert] = ACTIONS(2627), + [anon_sym_concept] = ACTIONS(2627), + [anon_sym_co_return] = ACTIONS(2627), + [anon_sym_co_yield] = ACTIONS(2627), + [anon_sym_R_DQUOTE] = ACTIONS(2629), + [anon_sym_LR_DQUOTE] = ACTIONS(2629), + [anon_sym_uR_DQUOTE] = ACTIONS(2629), + [anon_sym_UR_DQUOTE] = ACTIONS(2629), + [anon_sym_u8R_DQUOTE] = ACTIONS(2629), + [anon_sym_co_await] = ACTIONS(2627), + [anon_sym_new] = ACTIONS(2627), + [anon_sym_requires] = ACTIONS(2627), + [sym_this] = ACTIONS(2627), + }, + [648] = { + [ts_builtin_sym_end] = ACTIONS(2889), + [sym_identifier] = ACTIONS(2887), + [aux_sym_preproc_include_token1] = ACTIONS(2887), + [aux_sym_preproc_def_token1] = ACTIONS(2887), + [aux_sym_preproc_if_token1] = ACTIONS(2887), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2887), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2887), + [sym_preproc_directive] = ACTIONS(2887), + [anon_sym_LPAREN2] = ACTIONS(2889), + [anon_sym_BANG] = ACTIONS(2889), + [anon_sym_TILDE] = ACTIONS(2889), + [anon_sym_DASH] = ACTIONS(2887), + [anon_sym_PLUS] = ACTIONS(2887), + [anon_sym_STAR] = ACTIONS(2889), + [anon_sym_AMP_AMP] = ACTIONS(2889), + [anon_sym_AMP] = ACTIONS(2887), + [anon_sym_SEMI] = ACTIONS(2889), + [anon_sym___extension__] = ACTIONS(2887), + [anon_sym_typedef] = ACTIONS(2887), + [anon_sym_virtual] = ACTIONS(2887), + [anon_sym_extern] = ACTIONS(2887), + [anon_sym___attribute__] = ACTIONS(2887), + [anon_sym___attribute] = ACTIONS(2887), + [anon_sym_using] = ACTIONS(2887), + [anon_sym_COLON_COLON] = ACTIONS(2889), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2889), + [anon_sym___declspec] = ACTIONS(2887), + [anon_sym___based] = ACTIONS(2887), + [anon_sym___cdecl] = ACTIONS(2887), + [anon_sym___clrcall] = ACTIONS(2887), + [anon_sym___stdcall] = ACTIONS(2887), + [anon_sym___fastcall] = ACTIONS(2887), + [anon_sym___thiscall] = ACTIONS(2887), + [anon_sym___vectorcall] = ACTIONS(2887), + [anon_sym_LBRACE] = ACTIONS(2889), + [anon_sym_signed] = ACTIONS(2887), + [anon_sym_unsigned] = ACTIONS(2887), + [anon_sym_long] = ACTIONS(2887), + [anon_sym_short] = ACTIONS(2887), + [anon_sym_LBRACK] = ACTIONS(2887), + [anon_sym_static] = ACTIONS(2887), + [anon_sym_register] = ACTIONS(2887), + [anon_sym_inline] = ACTIONS(2887), + [anon_sym___inline] = ACTIONS(2887), + [anon_sym___inline__] = ACTIONS(2887), + [anon_sym___forceinline] = ACTIONS(2887), + [anon_sym_thread_local] = ACTIONS(2887), + [anon_sym___thread] = ACTIONS(2887), + [anon_sym_const] = ACTIONS(2887), + [anon_sym_constexpr] = ACTIONS(2887), + [anon_sym_volatile] = ACTIONS(2887), + [anon_sym_restrict] = ACTIONS(2887), + [anon_sym___restrict__] = ACTIONS(2887), + [anon_sym__Atomic] = ACTIONS(2887), + [anon_sym__Noreturn] = ACTIONS(2887), + [anon_sym_noreturn] = ACTIONS(2887), + [anon_sym__Nonnull] = ACTIONS(2887), + [anon_sym_mutable] = ACTIONS(2887), + [anon_sym_constinit] = ACTIONS(2887), + [anon_sym_consteval] = ACTIONS(2887), + [anon_sym_alignas] = ACTIONS(2887), + [anon_sym__Alignas] = ACTIONS(2887), + [sym_primitive_type] = ACTIONS(2887), + [anon_sym_enum] = ACTIONS(2887), + [anon_sym_class] = ACTIONS(2887), + [anon_sym_struct] = ACTIONS(2887), + [anon_sym_union] = ACTIONS(2887), + [anon_sym_if] = ACTIONS(2887), + [anon_sym_switch] = ACTIONS(2887), + [anon_sym_case] = ACTIONS(2887), + [anon_sym_default] = ACTIONS(2887), + [anon_sym_while] = ACTIONS(2887), + [anon_sym_do] = ACTIONS(2887), + [anon_sym_for] = ACTIONS(2887), + [anon_sym_return] = ACTIONS(2887), + [anon_sym_break] = ACTIONS(2887), + [anon_sym_continue] = ACTIONS(2887), + [anon_sym_goto] = ACTIONS(2887), + [anon_sym_not] = ACTIONS(2887), + [anon_sym_compl] = ACTIONS(2887), + [anon_sym_DASH_DASH] = ACTIONS(2889), + [anon_sym_PLUS_PLUS] = ACTIONS(2889), + [anon_sym_sizeof] = ACTIONS(2887), + [anon_sym___alignof__] = ACTIONS(2887), + [anon_sym___alignof] = ACTIONS(2887), + [anon_sym__alignof] = ACTIONS(2887), + [anon_sym_alignof] = ACTIONS(2887), + [anon_sym__Alignof] = ACTIONS(2887), + [anon_sym_offsetof] = ACTIONS(2887), + [anon_sym__Generic] = ACTIONS(2887), + [anon_sym_asm] = ACTIONS(2887), + [anon_sym___asm__] = ACTIONS(2887), + [anon_sym___asm] = ACTIONS(2887), + [sym_number_literal] = ACTIONS(2889), + [anon_sym_L_SQUOTE] = ACTIONS(2889), + [anon_sym_u_SQUOTE] = ACTIONS(2889), + [anon_sym_U_SQUOTE] = ACTIONS(2889), + [anon_sym_u8_SQUOTE] = ACTIONS(2889), + [anon_sym_SQUOTE] = ACTIONS(2889), + [anon_sym_L_DQUOTE] = ACTIONS(2889), + [anon_sym_u_DQUOTE] = ACTIONS(2889), + [anon_sym_U_DQUOTE] = ACTIONS(2889), + [anon_sym_u8_DQUOTE] = ACTIONS(2889), + [anon_sym_DQUOTE] = ACTIONS(2889), + [sym_true] = ACTIONS(2887), + [sym_false] = ACTIONS(2887), + [anon_sym_NULL] = ACTIONS(2887), + [anon_sym_nullptr] = ACTIONS(2887), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2887), + [anon_sym_decltype] = ACTIONS(2887), + [anon_sym_explicit] = ACTIONS(2887), + [anon_sym_typename] = ACTIONS(2887), + [anon_sym_export] = ACTIONS(2887), + [anon_sym_module] = ACTIONS(2887), + [anon_sym_import] = ACTIONS(2887), + [anon_sym_template] = ACTIONS(2887), + [anon_sym_operator] = ACTIONS(2887), + [anon_sym_try] = ACTIONS(2887), + [anon_sym_delete] = ACTIONS(2887), + [anon_sym_throw] = ACTIONS(2887), + [anon_sym_namespace] = ACTIONS(2887), + [anon_sym_static_assert] = ACTIONS(2887), + [anon_sym_concept] = ACTIONS(2887), + [anon_sym_co_return] = ACTIONS(2887), + [anon_sym_co_yield] = ACTIONS(2887), + [anon_sym_R_DQUOTE] = ACTIONS(2889), + [anon_sym_LR_DQUOTE] = ACTIONS(2889), + [anon_sym_uR_DQUOTE] = ACTIONS(2889), + [anon_sym_UR_DQUOTE] = ACTIONS(2889), + [anon_sym_u8R_DQUOTE] = ACTIONS(2889), + [anon_sym_co_await] = ACTIONS(2887), + [anon_sym_new] = ACTIONS(2887), + [anon_sym_requires] = ACTIONS(2887), + [sym_this] = ACTIONS(2887), }, [649] = { - [ts_builtin_sym_end] = ACTIONS(3102), - [sym_identifier] = ACTIONS(3100), - [aux_sym_preproc_include_token1] = ACTIONS(3100), - [aux_sym_preproc_def_token1] = ACTIONS(3100), - [aux_sym_preproc_if_token1] = ACTIONS(3100), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3100), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3100), - [sym_preproc_directive] = ACTIONS(3100), - [anon_sym_LPAREN2] = ACTIONS(3102), - [anon_sym_BANG] = ACTIONS(3102), - [anon_sym_TILDE] = ACTIONS(3102), - [anon_sym_DASH] = ACTIONS(3100), - [anon_sym_PLUS] = ACTIONS(3100), - [anon_sym_STAR] = ACTIONS(3102), - [anon_sym_AMP_AMP] = ACTIONS(3102), - [anon_sym_AMP] = ACTIONS(3100), - [anon_sym_SEMI] = ACTIONS(3102), - [anon_sym___extension__] = ACTIONS(3100), - [anon_sym_typedef] = ACTIONS(3100), - [anon_sym_virtual] = ACTIONS(3100), - [anon_sym_extern] = ACTIONS(3100), - [anon_sym___attribute__] = ACTIONS(3100), - [anon_sym___attribute] = ACTIONS(3100), - [anon_sym_using] = ACTIONS(3100), - [anon_sym_COLON_COLON] = ACTIONS(3102), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3102), - [anon_sym___declspec] = ACTIONS(3100), - [anon_sym___based] = ACTIONS(3100), - [anon_sym___cdecl] = ACTIONS(3100), - [anon_sym___clrcall] = ACTIONS(3100), - [anon_sym___stdcall] = ACTIONS(3100), - [anon_sym___fastcall] = ACTIONS(3100), - [anon_sym___thiscall] = ACTIONS(3100), - [anon_sym___vectorcall] = ACTIONS(3100), - [anon_sym_LBRACE] = ACTIONS(3102), - [anon_sym_signed] = ACTIONS(3100), - [anon_sym_unsigned] = ACTIONS(3100), - [anon_sym_long] = ACTIONS(3100), - [anon_sym_short] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(3100), - [anon_sym_static] = ACTIONS(3100), - [anon_sym_register] = ACTIONS(3100), - [anon_sym_inline] = ACTIONS(3100), - [anon_sym___inline] = ACTIONS(3100), - [anon_sym___inline__] = ACTIONS(3100), - [anon_sym___forceinline] = ACTIONS(3100), - [anon_sym_thread_local] = ACTIONS(3100), - [anon_sym___thread] = ACTIONS(3100), - [anon_sym_const] = ACTIONS(3100), - [anon_sym_constexpr] = ACTIONS(3100), - [anon_sym_volatile] = ACTIONS(3100), - [anon_sym_restrict] = ACTIONS(3100), - [anon_sym___restrict__] = ACTIONS(3100), - [anon_sym__Atomic] = ACTIONS(3100), - [anon_sym__Noreturn] = ACTIONS(3100), - [anon_sym_noreturn] = ACTIONS(3100), - [anon_sym__Nonnull] = ACTIONS(3100), - [anon_sym_mutable] = ACTIONS(3100), - [anon_sym_constinit] = ACTIONS(3100), - [anon_sym_consteval] = ACTIONS(3100), - [anon_sym_alignas] = ACTIONS(3100), - [anon_sym__Alignas] = ACTIONS(3100), - [sym_primitive_type] = ACTIONS(3100), - [anon_sym_enum] = ACTIONS(3100), - [anon_sym_class] = ACTIONS(3100), - [anon_sym_struct] = ACTIONS(3100), - [anon_sym_union] = ACTIONS(3100), - [anon_sym_if] = ACTIONS(3100), - [anon_sym_switch] = ACTIONS(3100), - [anon_sym_case] = ACTIONS(3100), - [anon_sym_default] = ACTIONS(3100), - [anon_sym_while] = ACTIONS(3100), - [anon_sym_do] = ACTIONS(3100), - [anon_sym_for] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3100), - [anon_sym_break] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(3100), - [anon_sym_goto] = ACTIONS(3100), - [anon_sym_not] = ACTIONS(3100), - [anon_sym_compl] = ACTIONS(3100), - [anon_sym_DASH_DASH] = ACTIONS(3102), - [anon_sym_PLUS_PLUS] = ACTIONS(3102), - [anon_sym_sizeof] = ACTIONS(3100), - [anon_sym___alignof__] = ACTIONS(3100), - [anon_sym___alignof] = ACTIONS(3100), - [anon_sym__alignof] = ACTIONS(3100), - [anon_sym_alignof] = ACTIONS(3100), - [anon_sym__Alignof] = ACTIONS(3100), - [anon_sym_offsetof] = ACTIONS(3100), - [anon_sym__Generic] = ACTIONS(3100), - [anon_sym_asm] = ACTIONS(3100), - [anon_sym___asm__] = ACTIONS(3100), - [anon_sym___asm] = ACTIONS(3100), - [sym_number_literal] = ACTIONS(3102), - [anon_sym_L_SQUOTE] = ACTIONS(3102), - [anon_sym_u_SQUOTE] = ACTIONS(3102), - [anon_sym_U_SQUOTE] = ACTIONS(3102), - [anon_sym_u8_SQUOTE] = ACTIONS(3102), - [anon_sym_SQUOTE] = ACTIONS(3102), - [anon_sym_L_DQUOTE] = ACTIONS(3102), - [anon_sym_u_DQUOTE] = ACTIONS(3102), - [anon_sym_U_DQUOTE] = ACTIONS(3102), - [anon_sym_u8_DQUOTE] = ACTIONS(3102), - [anon_sym_DQUOTE] = ACTIONS(3102), - [sym_true] = ACTIONS(3100), - [sym_false] = ACTIONS(3100), - [anon_sym_NULL] = ACTIONS(3100), - [anon_sym_nullptr] = ACTIONS(3100), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3100), - [anon_sym_decltype] = ACTIONS(3100), - [anon_sym_explicit] = ACTIONS(3100), - [anon_sym_typename] = ACTIONS(3100), - [anon_sym_export] = ACTIONS(3100), - [anon_sym_module] = ACTIONS(3100), - [anon_sym_import] = ACTIONS(3100), - [anon_sym_template] = ACTIONS(3100), - [anon_sym_operator] = ACTIONS(3100), - [anon_sym_try] = ACTIONS(3100), - [anon_sym_delete] = ACTIONS(3100), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_namespace] = ACTIONS(3100), - [anon_sym_static_assert] = ACTIONS(3100), - [anon_sym_concept] = ACTIONS(3100), - [anon_sym_co_return] = ACTIONS(3100), - [anon_sym_co_yield] = ACTIONS(3100), - [anon_sym_R_DQUOTE] = ACTIONS(3102), - [anon_sym_LR_DQUOTE] = ACTIONS(3102), - [anon_sym_uR_DQUOTE] = ACTIONS(3102), - [anon_sym_UR_DQUOTE] = ACTIONS(3102), - [anon_sym_u8R_DQUOTE] = ACTIONS(3102), - [anon_sym_co_await] = ACTIONS(3100), - [anon_sym_new] = ACTIONS(3100), - [anon_sym_requires] = ACTIONS(3100), - [sym_this] = ACTIONS(3100), + [sym_identifier] = ACTIONS(2671), + [aux_sym_preproc_include_token1] = ACTIONS(2671), + [aux_sym_preproc_def_token1] = ACTIONS(2671), + [aux_sym_preproc_if_token1] = ACTIONS(2671), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2671), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2671), + [sym_preproc_directive] = ACTIONS(2671), + [anon_sym_LPAREN2] = ACTIONS(2673), + [anon_sym_BANG] = ACTIONS(2673), + [anon_sym_TILDE] = ACTIONS(2673), + [anon_sym_DASH] = ACTIONS(2671), + [anon_sym_PLUS] = ACTIONS(2671), + [anon_sym_STAR] = ACTIONS(2673), + [anon_sym_AMP_AMP] = ACTIONS(2673), + [anon_sym_AMP] = ACTIONS(2671), + [anon_sym_SEMI] = ACTIONS(2673), + [anon_sym___extension__] = ACTIONS(2671), + [anon_sym_typedef] = ACTIONS(2671), + [anon_sym_virtual] = ACTIONS(2671), + [anon_sym_extern] = ACTIONS(2671), + [anon_sym___attribute__] = ACTIONS(2671), + [anon_sym___attribute] = ACTIONS(2671), + [anon_sym_using] = ACTIONS(2671), + [anon_sym_COLON_COLON] = ACTIONS(2673), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2673), + [anon_sym___declspec] = ACTIONS(2671), + [anon_sym___based] = ACTIONS(2671), + [anon_sym___cdecl] = ACTIONS(2671), + [anon_sym___clrcall] = ACTIONS(2671), + [anon_sym___stdcall] = ACTIONS(2671), + [anon_sym___fastcall] = ACTIONS(2671), + [anon_sym___thiscall] = ACTIONS(2671), + [anon_sym___vectorcall] = ACTIONS(2671), + [anon_sym_LBRACE] = ACTIONS(2673), + [anon_sym_RBRACE] = ACTIONS(2673), + [anon_sym_signed] = ACTIONS(2671), + [anon_sym_unsigned] = ACTIONS(2671), + [anon_sym_long] = ACTIONS(2671), + [anon_sym_short] = ACTIONS(2671), + [anon_sym_LBRACK] = ACTIONS(2671), + [anon_sym_static] = ACTIONS(2671), + [anon_sym_register] = ACTIONS(2671), + [anon_sym_inline] = ACTIONS(2671), + [anon_sym___inline] = ACTIONS(2671), + [anon_sym___inline__] = ACTIONS(2671), + [anon_sym___forceinline] = ACTIONS(2671), + [anon_sym_thread_local] = ACTIONS(2671), + [anon_sym___thread] = ACTIONS(2671), + [anon_sym_const] = ACTIONS(2671), + [anon_sym_constexpr] = ACTIONS(2671), + [anon_sym_volatile] = ACTIONS(2671), + [anon_sym_restrict] = ACTIONS(2671), + [anon_sym___restrict__] = ACTIONS(2671), + [anon_sym__Atomic] = ACTIONS(2671), + [anon_sym__Noreturn] = ACTIONS(2671), + [anon_sym_noreturn] = ACTIONS(2671), + [anon_sym__Nonnull] = ACTIONS(2671), + [anon_sym_mutable] = ACTIONS(2671), + [anon_sym_constinit] = ACTIONS(2671), + [anon_sym_consteval] = ACTIONS(2671), + [anon_sym_alignas] = ACTIONS(2671), + [anon_sym__Alignas] = ACTIONS(2671), + [sym_primitive_type] = ACTIONS(2671), + [anon_sym_enum] = ACTIONS(2671), + [anon_sym_class] = ACTIONS(2671), + [anon_sym_struct] = ACTIONS(2671), + [anon_sym_union] = ACTIONS(2671), + [anon_sym_if] = ACTIONS(2671), + [anon_sym_else] = ACTIONS(2671), + [anon_sym_switch] = ACTIONS(2671), + [anon_sym_case] = ACTIONS(2671), + [anon_sym_default] = ACTIONS(2671), + [anon_sym_while] = ACTIONS(2671), + [anon_sym_do] = ACTIONS(2671), + [anon_sym_for] = ACTIONS(2671), + [anon_sym_return] = ACTIONS(2671), + [anon_sym_break] = ACTIONS(2671), + [anon_sym_continue] = ACTIONS(2671), + [anon_sym_goto] = ACTIONS(2671), + [anon_sym___try] = ACTIONS(2671), + [anon_sym___leave] = ACTIONS(2671), + [anon_sym_not] = ACTIONS(2671), + [anon_sym_compl] = ACTIONS(2671), + [anon_sym_DASH_DASH] = ACTIONS(2673), + [anon_sym_PLUS_PLUS] = ACTIONS(2673), + [anon_sym_sizeof] = ACTIONS(2671), + [anon_sym___alignof__] = ACTIONS(2671), + [anon_sym___alignof] = ACTIONS(2671), + [anon_sym__alignof] = ACTIONS(2671), + [anon_sym_alignof] = ACTIONS(2671), + [anon_sym__Alignof] = ACTIONS(2671), + [anon_sym_offsetof] = ACTIONS(2671), + [anon_sym__Generic] = ACTIONS(2671), + [anon_sym_asm] = ACTIONS(2671), + [anon_sym___asm__] = ACTIONS(2671), + [anon_sym___asm] = ACTIONS(2671), + [sym_number_literal] = ACTIONS(2673), + [anon_sym_L_SQUOTE] = ACTIONS(2673), + [anon_sym_u_SQUOTE] = ACTIONS(2673), + [anon_sym_U_SQUOTE] = ACTIONS(2673), + [anon_sym_u8_SQUOTE] = ACTIONS(2673), + [anon_sym_SQUOTE] = ACTIONS(2673), + [anon_sym_L_DQUOTE] = ACTIONS(2673), + [anon_sym_u_DQUOTE] = ACTIONS(2673), + [anon_sym_U_DQUOTE] = ACTIONS(2673), + [anon_sym_u8_DQUOTE] = ACTIONS(2673), + [anon_sym_DQUOTE] = ACTIONS(2673), + [sym_true] = ACTIONS(2671), + [sym_false] = ACTIONS(2671), + [anon_sym_NULL] = ACTIONS(2671), + [anon_sym_nullptr] = ACTIONS(2671), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2671), + [anon_sym_decltype] = ACTIONS(2671), + [anon_sym_explicit] = ACTIONS(2671), + [anon_sym_typename] = ACTIONS(2671), + [anon_sym_template] = ACTIONS(2671), + [anon_sym_operator] = ACTIONS(2671), + [anon_sym_try] = ACTIONS(2671), + [anon_sym_delete] = ACTIONS(2671), + [anon_sym_throw] = ACTIONS(2671), + [anon_sym_namespace] = ACTIONS(2671), + [anon_sym_static_assert] = ACTIONS(2671), + [anon_sym_concept] = ACTIONS(2671), + [anon_sym_co_return] = ACTIONS(2671), + [anon_sym_co_yield] = ACTIONS(2671), + [anon_sym_R_DQUOTE] = ACTIONS(2673), + [anon_sym_LR_DQUOTE] = ACTIONS(2673), + [anon_sym_uR_DQUOTE] = ACTIONS(2673), + [anon_sym_UR_DQUOTE] = ACTIONS(2673), + [anon_sym_u8R_DQUOTE] = ACTIONS(2673), + [anon_sym_co_await] = ACTIONS(2671), + [anon_sym_new] = ACTIONS(2671), + [anon_sym_requires] = ACTIONS(2671), + [sym_this] = ACTIONS(2671), }, [650] = { - [sym_identifier] = ACTIONS(2779), - [aux_sym_preproc_include_token1] = ACTIONS(2779), - [aux_sym_preproc_def_token1] = ACTIONS(2779), - [aux_sym_preproc_if_token1] = ACTIONS(2779), - [aux_sym_preproc_if_token2] = ACTIONS(2779), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2779), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2779), - [sym_preproc_directive] = ACTIONS(2779), - [anon_sym_LPAREN2] = ACTIONS(2781), - [anon_sym_BANG] = ACTIONS(2781), - [anon_sym_TILDE] = ACTIONS(2781), - [anon_sym_DASH] = ACTIONS(2779), - [anon_sym_PLUS] = ACTIONS(2779), - [anon_sym_STAR] = ACTIONS(2781), - [anon_sym_AMP_AMP] = ACTIONS(2781), - [anon_sym_AMP] = ACTIONS(2779), - [anon_sym_SEMI] = ACTIONS(2781), - [anon_sym___extension__] = ACTIONS(2779), - [anon_sym_typedef] = ACTIONS(2779), - [anon_sym_virtual] = ACTIONS(2779), - [anon_sym_extern] = ACTIONS(2779), - [anon_sym___attribute__] = ACTIONS(2779), - [anon_sym___attribute] = ACTIONS(2779), - [anon_sym_using] = ACTIONS(2779), - [anon_sym_COLON_COLON] = ACTIONS(2781), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2781), - [anon_sym___declspec] = ACTIONS(2779), - [anon_sym___based] = ACTIONS(2779), - [anon_sym___cdecl] = ACTIONS(2779), - [anon_sym___clrcall] = ACTIONS(2779), - [anon_sym___stdcall] = ACTIONS(2779), - [anon_sym___fastcall] = ACTIONS(2779), - [anon_sym___thiscall] = ACTIONS(2779), - [anon_sym___vectorcall] = ACTIONS(2779), - [anon_sym_LBRACE] = ACTIONS(2781), - [anon_sym_signed] = ACTIONS(2779), - [anon_sym_unsigned] = ACTIONS(2779), - [anon_sym_long] = ACTIONS(2779), - [anon_sym_short] = ACTIONS(2779), - [anon_sym_LBRACK] = ACTIONS(2779), - [anon_sym_static] = ACTIONS(2779), - [anon_sym_register] = ACTIONS(2779), - [anon_sym_inline] = ACTIONS(2779), - [anon_sym___inline] = ACTIONS(2779), - [anon_sym___inline__] = ACTIONS(2779), - [anon_sym___forceinline] = ACTIONS(2779), - [anon_sym_thread_local] = ACTIONS(2779), - [anon_sym___thread] = ACTIONS(2779), - [anon_sym_const] = ACTIONS(2779), - [anon_sym_constexpr] = ACTIONS(2779), - [anon_sym_volatile] = ACTIONS(2779), - [anon_sym_restrict] = ACTIONS(2779), - [anon_sym___restrict__] = ACTIONS(2779), - [anon_sym__Atomic] = ACTIONS(2779), - [anon_sym__Noreturn] = ACTIONS(2779), - [anon_sym_noreturn] = ACTIONS(2779), - [anon_sym__Nonnull] = ACTIONS(2779), - [anon_sym_mutable] = ACTIONS(2779), - [anon_sym_constinit] = ACTIONS(2779), - [anon_sym_consteval] = ACTIONS(2779), - [anon_sym_alignas] = ACTIONS(2779), - [anon_sym__Alignas] = ACTIONS(2779), - [sym_primitive_type] = ACTIONS(2779), - [anon_sym_enum] = ACTIONS(2779), - [anon_sym_class] = ACTIONS(2779), - [anon_sym_struct] = ACTIONS(2779), - [anon_sym_union] = ACTIONS(2779), - [anon_sym_if] = ACTIONS(2779), - [anon_sym_switch] = ACTIONS(2779), - [anon_sym_case] = ACTIONS(2779), - [anon_sym_default] = ACTIONS(2779), - [anon_sym_while] = ACTIONS(2779), - [anon_sym_do] = ACTIONS(2779), - [anon_sym_for] = ACTIONS(2779), - [anon_sym_return] = ACTIONS(2779), - [anon_sym_break] = ACTIONS(2779), - [anon_sym_continue] = ACTIONS(2779), - [anon_sym_goto] = ACTIONS(2779), - [anon_sym___try] = ACTIONS(2779), - [anon_sym___leave] = ACTIONS(2779), - [anon_sym_not] = ACTIONS(2779), - [anon_sym_compl] = ACTIONS(2779), - [anon_sym_DASH_DASH] = ACTIONS(2781), - [anon_sym_PLUS_PLUS] = ACTIONS(2781), - [anon_sym_sizeof] = ACTIONS(2779), - [anon_sym___alignof__] = ACTIONS(2779), - [anon_sym___alignof] = ACTIONS(2779), - [anon_sym__alignof] = ACTIONS(2779), - [anon_sym_alignof] = ACTIONS(2779), - [anon_sym__Alignof] = ACTIONS(2779), - [anon_sym_offsetof] = ACTIONS(2779), - [anon_sym__Generic] = ACTIONS(2779), - [anon_sym_asm] = ACTIONS(2779), - [anon_sym___asm__] = ACTIONS(2779), - [anon_sym___asm] = ACTIONS(2779), - [sym_number_literal] = ACTIONS(2781), - [anon_sym_L_SQUOTE] = ACTIONS(2781), - [anon_sym_u_SQUOTE] = ACTIONS(2781), - [anon_sym_U_SQUOTE] = ACTIONS(2781), - [anon_sym_u8_SQUOTE] = ACTIONS(2781), - [anon_sym_SQUOTE] = ACTIONS(2781), - [anon_sym_L_DQUOTE] = ACTIONS(2781), - [anon_sym_u_DQUOTE] = ACTIONS(2781), - [anon_sym_U_DQUOTE] = ACTIONS(2781), - [anon_sym_u8_DQUOTE] = ACTIONS(2781), - [anon_sym_DQUOTE] = ACTIONS(2781), - [sym_true] = ACTIONS(2779), - [sym_false] = ACTIONS(2779), - [anon_sym_NULL] = ACTIONS(2779), - [anon_sym_nullptr] = ACTIONS(2779), + [ts_builtin_sym_end] = ACTIONS(2789), + [sym_identifier] = ACTIONS(2787), + [aux_sym_preproc_include_token1] = ACTIONS(2787), + [aux_sym_preproc_def_token1] = ACTIONS(2787), + [aux_sym_preproc_if_token1] = ACTIONS(2787), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2787), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2787), + [sym_preproc_directive] = ACTIONS(2787), + [anon_sym_LPAREN2] = ACTIONS(2789), + [anon_sym_BANG] = ACTIONS(2789), + [anon_sym_TILDE] = ACTIONS(2789), + [anon_sym_DASH] = ACTIONS(2787), + [anon_sym_PLUS] = ACTIONS(2787), + [anon_sym_STAR] = ACTIONS(2789), + [anon_sym_AMP_AMP] = ACTIONS(2789), + [anon_sym_AMP] = ACTIONS(2787), + [anon_sym_SEMI] = ACTIONS(2789), + [anon_sym___extension__] = ACTIONS(2787), + [anon_sym_typedef] = ACTIONS(2787), + [anon_sym_virtual] = ACTIONS(2787), + [anon_sym_extern] = ACTIONS(2787), + [anon_sym___attribute__] = ACTIONS(2787), + [anon_sym___attribute] = ACTIONS(2787), + [anon_sym_using] = ACTIONS(2787), + [anon_sym_COLON_COLON] = ACTIONS(2789), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2789), + [anon_sym___declspec] = ACTIONS(2787), + [anon_sym___based] = ACTIONS(2787), + [anon_sym___cdecl] = ACTIONS(2787), + [anon_sym___clrcall] = ACTIONS(2787), + [anon_sym___stdcall] = ACTIONS(2787), + [anon_sym___fastcall] = ACTIONS(2787), + [anon_sym___thiscall] = ACTIONS(2787), + [anon_sym___vectorcall] = ACTIONS(2787), + [anon_sym_LBRACE] = ACTIONS(2789), + [anon_sym_signed] = ACTIONS(2787), + [anon_sym_unsigned] = ACTIONS(2787), + [anon_sym_long] = ACTIONS(2787), + [anon_sym_short] = ACTIONS(2787), + [anon_sym_LBRACK] = ACTIONS(2787), + [anon_sym_static] = ACTIONS(2787), + [anon_sym_register] = ACTIONS(2787), + [anon_sym_inline] = ACTIONS(2787), + [anon_sym___inline] = ACTIONS(2787), + [anon_sym___inline__] = ACTIONS(2787), + [anon_sym___forceinline] = ACTIONS(2787), + [anon_sym_thread_local] = ACTIONS(2787), + [anon_sym___thread] = ACTIONS(2787), + [anon_sym_const] = ACTIONS(2787), + [anon_sym_constexpr] = ACTIONS(2787), + [anon_sym_volatile] = ACTIONS(2787), + [anon_sym_restrict] = ACTIONS(2787), + [anon_sym___restrict__] = ACTIONS(2787), + [anon_sym__Atomic] = ACTIONS(2787), + [anon_sym__Noreturn] = ACTIONS(2787), + [anon_sym_noreturn] = ACTIONS(2787), + [anon_sym__Nonnull] = ACTIONS(2787), + [anon_sym_mutable] = ACTIONS(2787), + [anon_sym_constinit] = ACTIONS(2787), + [anon_sym_consteval] = ACTIONS(2787), + [anon_sym_alignas] = ACTIONS(2787), + [anon_sym__Alignas] = ACTIONS(2787), + [sym_primitive_type] = ACTIONS(2787), + [anon_sym_enum] = ACTIONS(2787), + [anon_sym_class] = ACTIONS(2787), + [anon_sym_struct] = ACTIONS(2787), + [anon_sym_union] = ACTIONS(2787), + [anon_sym_if] = ACTIONS(2787), + [anon_sym_switch] = ACTIONS(2787), + [anon_sym_case] = ACTIONS(2787), + [anon_sym_default] = ACTIONS(2787), + [anon_sym_while] = ACTIONS(2787), + [anon_sym_do] = ACTIONS(2787), + [anon_sym_for] = ACTIONS(2787), + [anon_sym_return] = ACTIONS(2787), + [anon_sym_break] = ACTIONS(2787), + [anon_sym_continue] = ACTIONS(2787), + [anon_sym_goto] = ACTIONS(2787), + [anon_sym_not] = ACTIONS(2787), + [anon_sym_compl] = ACTIONS(2787), + [anon_sym_DASH_DASH] = ACTIONS(2789), + [anon_sym_PLUS_PLUS] = ACTIONS(2789), + [anon_sym_sizeof] = ACTIONS(2787), + [anon_sym___alignof__] = ACTIONS(2787), + [anon_sym___alignof] = ACTIONS(2787), + [anon_sym__alignof] = ACTIONS(2787), + [anon_sym_alignof] = ACTIONS(2787), + [anon_sym__Alignof] = ACTIONS(2787), + [anon_sym_offsetof] = ACTIONS(2787), + [anon_sym__Generic] = ACTIONS(2787), + [anon_sym_asm] = ACTIONS(2787), + [anon_sym___asm__] = ACTIONS(2787), + [anon_sym___asm] = ACTIONS(2787), + [sym_number_literal] = ACTIONS(2789), + [anon_sym_L_SQUOTE] = ACTIONS(2789), + [anon_sym_u_SQUOTE] = ACTIONS(2789), + [anon_sym_U_SQUOTE] = ACTIONS(2789), + [anon_sym_u8_SQUOTE] = ACTIONS(2789), + [anon_sym_SQUOTE] = ACTIONS(2789), + [anon_sym_L_DQUOTE] = ACTIONS(2789), + [anon_sym_u_DQUOTE] = ACTIONS(2789), + [anon_sym_U_DQUOTE] = ACTIONS(2789), + [anon_sym_u8_DQUOTE] = ACTIONS(2789), + [anon_sym_DQUOTE] = ACTIONS(2789), + [sym_true] = ACTIONS(2787), + [sym_false] = ACTIONS(2787), + [anon_sym_NULL] = ACTIONS(2787), + [anon_sym_nullptr] = ACTIONS(2787), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2779), - [anon_sym_decltype] = ACTIONS(2779), - [anon_sym_explicit] = ACTIONS(2779), - [anon_sym_typename] = ACTIONS(2779), - [anon_sym_template] = ACTIONS(2779), - [anon_sym_operator] = ACTIONS(2779), - [anon_sym_try] = ACTIONS(2779), - [anon_sym_delete] = ACTIONS(2779), - [anon_sym_throw] = ACTIONS(2779), - [anon_sym_namespace] = ACTIONS(2779), - [anon_sym_static_assert] = ACTIONS(2779), - [anon_sym_concept] = ACTIONS(2779), - [anon_sym_co_return] = ACTIONS(2779), - [anon_sym_co_yield] = ACTIONS(2779), - [anon_sym_R_DQUOTE] = ACTIONS(2781), - [anon_sym_LR_DQUOTE] = ACTIONS(2781), - [anon_sym_uR_DQUOTE] = ACTIONS(2781), - [anon_sym_UR_DQUOTE] = ACTIONS(2781), - [anon_sym_u8R_DQUOTE] = ACTIONS(2781), - [anon_sym_co_await] = ACTIONS(2779), - [anon_sym_new] = ACTIONS(2779), - [anon_sym_requires] = ACTIONS(2779), - [sym_this] = ACTIONS(2779), + [sym_auto] = ACTIONS(2787), + [anon_sym_decltype] = ACTIONS(2787), + [anon_sym_explicit] = ACTIONS(2787), + [anon_sym_typename] = ACTIONS(2787), + [anon_sym_export] = ACTIONS(2787), + [anon_sym_module] = ACTIONS(2787), + [anon_sym_import] = ACTIONS(2787), + [anon_sym_template] = ACTIONS(2787), + [anon_sym_operator] = ACTIONS(2787), + [anon_sym_try] = ACTIONS(2787), + [anon_sym_delete] = ACTIONS(2787), + [anon_sym_throw] = ACTIONS(2787), + [anon_sym_namespace] = ACTIONS(2787), + [anon_sym_static_assert] = ACTIONS(2787), + [anon_sym_concept] = ACTIONS(2787), + [anon_sym_co_return] = ACTIONS(2787), + [anon_sym_co_yield] = ACTIONS(2787), + [anon_sym_R_DQUOTE] = ACTIONS(2789), + [anon_sym_LR_DQUOTE] = ACTIONS(2789), + [anon_sym_uR_DQUOTE] = ACTIONS(2789), + [anon_sym_UR_DQUOTE] = ACTIONS(2789), + [anon_sym_u8R_DQUOTE] = ACTIONS(2789), + [anon_sym_co_await] = ACTIONS(2787), + [anon_sym_new] = ACTIONS(2787), + [anon_sym_requires] = ACTIONS(2787), + [sym_this] = ACTIONS(2787), }, [651] = { - [sym_identifier] = ACTIONS(2843), - [aux_sym_preproc_include_token1] = ACTIONS(2843), - [aux_sym_preproc_def_token1] = ACTIONS(2843), - [aux_sym_preproc_if_token1] = ACTIONS(2843), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2843), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2843), - [sym_preproc_directive] = ACTIONS(2843), - [anon_sym_LPAREN2] = ACTIONS(2845), - [anon_sym_BANG] = ACTIONS(2845), - [anon_sym_TILDE] = ACTIONS(2845), - [anon_sym_DASH] = ACTIONS(2843), - [anon_sym_PLUS] = ACTIONS(2843), - [anon_sym_STAR] = ACTIONS(2845), - [anon_sym_AMP_AMP] = ACTIONS(2845), - [anon_sym_AMP] = ACTIONS(2843), - [anon_sym_SEMI] = ACTIONS(2845), - [anon_sym___extension__] = ACTIONS(2843), - [anon_sym_typedef] = ACTIONS(2843), - [anon_sym_virtual] = ACTIONS(2843), - [anon_sym_extern] = ACTIONS(2843), - [anon_sym___attribute__] = ACTIONS(2843), - [anon_sym___attribute] = ACTIONS(2843), - [anon_sym_using] = ACTIONS(2843), - [anon_sym_COLON_COLON] = ACTIONS(2845), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2845), - [anon_sym___declspec] = ACTIONS(2843), - [anon_sym___based] = ACTIONS(2843), - [anon_sym___cdecl] = ACTIONS(2843), - [anon_sym___clrcall] = ACTIONS(2843), - [anon_sym___stdcall] = ACTIONS(2843), - [anon_sym___fastcall] = ACTIONS(2843), - [anon_sym___thiscall] = ACTIONS(2843), - [anon_sym___vectorcall] = ACTIONS(2843), - [anon_sym_LBRACE] = ACTIONS(2845), - [anon_sym_RBRACE] = ACTIONS(2845), - [anon_sym_signed] = ACTIONS(2843), - [anon_sym_unsigned] = ACTIONS(2843), - [anon_sym_long] = ACTIONS(2843), - [anon_sym_short] = ACTIONS(2843), - [anon_sym_LBRACK] = ACTIONS(2843), - [anon_sym_static] = ACTIONS(2843), - [anon_sym_register] = ACTIONS(2843), - [anon_sym_inline] = ACTIONS(2843), - [anon_sym___inline] = ACTIONS(2843), - [anon_sym___inline__] = ACTIONS(2843), - [anon_sym___forceinline] = ACTIONS(2843), - [anon_sym_thread_local] = ACTIONS(2843), - [anon_sym___thread] = ACTIONS(2843), - [anon_sym_const] = ACTIONS(2843), - [anon_sym_constexpr] = ACTIONS(2843), - [anon_sym_volatile] = ACTIONS(2843), - [anon_sym_restrict] = ACTIONS(2843), - [anon_sym___restrict__] = ACTIONS(2843), - [anon_sym__Atomic] = ACTIONS(2843), - [anon_sym__Noreturn] = ACTIONS(2843), - [anon_sym_noreturn] = ACTIONS(2843), - [anon_sym__Nonnull] = ACTIONS(2843), - [anon_sym_mutable] = ACTIONS(2843), - [anon_sym_constinit] = ACTIONS(2843), - [anon_sym_consteval] = ACTIONS(2843), - [anon_sym_alignas] = ACTIONS(2843), - [anon_sym__Alignas] = ACTIONS(2843), - [sym_primitive_type] = ACTIONS(2843), - [anon_sym_enum] = ACTIONS(2843), - [anon_sym_class] = ACTIONS(2843), - [anon_sym_struct] = ACTIONS(2843), - [anon_sym_union] = ACTIONS(2843), - [anon_sym_if] = ACTIONS(2843), - [anon_sym_switch] = ACTIONS(2843), - [anon_sym_case] = ACTIONS(2843), - [anon_sym_default] = ACTIONS(2843), - [anon_sym_while] = ACTIONS(2843), - [anon_sym_do] = ACTIONS(2843), - [anon_sym_for] = ACTIONS(2843), - [anon_sym_return] = ACTIONS(2843), - [anon_sym_break] = ACTIONS(2843), - [anon_sym_continue] = ACTIONS(2843), - [anon_sym_goto] = ACTIONS(2843), - [anon_sym___try] = ACTIONS(2843), - [anon_sym___leave] = ACTIONS(2843), - [anon_sym_not] = ACTIONS(2843), - [anon_sym_compl] = ACTIONS(2843), - [anon_sym_DASH_DASH] = ACTIONS(2845), - [anon_sym_PLUS_PLUS] = ACTIONS(2845), - [anon_sym_sizeof] = ACTIONS(2843), - [anon_sym___alignof__] = ACTIONS(2843), - [anon_sym___alignof] = ACTIONS(2843), - [anon_sym__alignof] = ACTIONS(2843), - [anon_sym_alignof] = ACTIONS(2843), - [anon_sym__Alignof] = ACTIONS(2843), - [anon_sym_offsetof] = ACTIONS(2843), - [anon_sym__Generic] = ACTIONS(2843), - [anon_sym_asm] = ACTIONS(2843), - [anon_sym___asm__] = ACTIONS(2843), - [anon_sym___asm] = ACTIONS(2843), - [sym_number_literal] = ACTIONS(2845), - [anon_sym_L_SQUOTE] = ACTIONS(2845), - [anon_sym_u_SQUOTE] = ACTIONS(2845), - [anon_sym_U_SQUOTE] = ACTIONS(2845), - [anon_sym_u8_SQUOTE] = ACTIONS(2845), - [anon_sym_SQUOTE] = ACTIONS(2845), - [anon_sym_L_DQUOTE] = ACTIONS(2845), - [anon_sym_u_DQUOTE] = ACTIONS(2845), - [anon_sym_U_DQUOTE] = ACTIONS(2845), - [anon_sym_u8_DQUOTE] = ACTIONS(2845), - [anon_sym_DQUOTE] = ACTIONS(2845), - [sym_true] = ACTIONS(2843), - [sym_false] = ACTIONS(2843), - [anon_sym_NULL] = ACTIONS(2843), - [anon_sym_nullptr] = ACTIONS(2843), + [ts_builtin_sym_end] = ACTIONS(3595), + [sym_identifier] = ACTIONS(3597), + [aux_sym_preproc_include_token1] = ACTIONS(3597), + [aux_sym_preproc_def_token1] = ACTIONS(3597), + [aux_sym_preproc_if_token1] = ACTIONS(3597), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3597), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3597), + [sym_preproc_directive] = ACTIONS(3597), + [anon_sym_LPAREN2] = ACTIONS(3595), + [anon_sym_BANG] = ACTIONS(3595), + [anon_sym_TILDE] = ACTIONS(3595), + [anon_sym_DASH] = ACTIONS(3597), + [anon_sym_PLUS] = ACTIONS(3597), + [anon_sym_STAR] = ACTIONS(3595), + [anon_sym_AMP_AMP] = ACTIONS(3595), + [anon_sym_AMP] = ACTIONS(3597), + [anon_sym_SEMI] = ACTIONS(3595), + [anon_sym___extension__] = ACTIONS(3597), + [anon_sym_typedef] = ACTIONS(3597), + [anon_sym_virtual] = ACTIONS(3597), + [anon_sym_extern] = ACTIONS(3597), + [anon_sym___attribute__] = ACTIONS(3597), + [anon_sym___attribute] = ACTIONS(3597), + [anon_sym_using] = ACTIONS(3597), + [anon_sym_COLON_COLON] = ACTIONS(3595), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3595), + [anon_sym___declspec] = ACTIONS(3597), + [anon_sym___based] = ACTIONS(3597), + [anon_sym___cdecl] = ACTIONS(3597), + [anon_sym___clrcall] = ACTIONS(3597), + [anon_sym___stdcall] = ACTIONS(3597), + [anon_sym___fastcall] = ACTIONS(3597), + [anon_sym___thiscall] = ACTIONS(3597), + [anon_sym___vectorcall] = ACTIONS(3597), + [anon_sym_LBRACE] = ACTIONS(3595), + [anon_sym_signed] = ACTIONS(3597), + [anon_sym_unsigned] = ACTIONS(3597), + [anon_sym_long] = ACTIONS(3597), + [anon_sym_short] = ACTIONS(3597), + [anon_sym_LBRACK] = ACTIONS(3597), + [anon_sym_static] = ACTIONS(3597), + [anon_sym_register] = ACTIONS(3597), + [anon_sym_inline] = ACTIONS(3597), + [anon_sym___inline] = ACTIONS(3597), + [anon_sym___inline__] = ACTIONS(3597), + [anon_sym___forceinline] = ACTIONS(3597), + [anon_sym_thread_local] = ACTIONS(3597), + [anon_sym___thread] = ACTIONS(3597), + [anon_sym_const] = ACTIONS(3597), + [anon_sym_constexpr] = ACTIONS(3597), + [anon_sym_volatile] = ACTIONS(3597), + [anon_sym_restrict] = ACTIONS(3597), + [anon_sym___restrict__] = ACTIONS(3597), + [anon_sym__Atomic] = ACTIONS(3597), + [anon_sym__Noreturn] = ACTIONS(3597), + [anon_sym_noreturn] = ACTIONS(3597), + [anon_sym__Nonnull] = ACTIONS(3597), + [anon_sym_mutable] = ACTIONS(3597), + [anon_sym_constinit] = ACTIONS(3597), + [anon_sym_consteval] = ACTIONS(3597), + [anon_sym_alignas] = ACTIONS(3597), + [anon_sym__Alignas] = ACTIONS(3597), + [sym_primitive_type] = ACTIONS(3597), + [anon_sym_enum] = ACTIONS(3597), + [anon_sym_class] = ACTIONS(3597), + [anon_sym_struct] = ACTIONS(3597), + [anon_sym_union] = ACTIONS(3597), + [anon_sym_if] = ACTIONS(3597), + [anon_sym_switch] = ACTIONS(3597), + [anon_sym_case] = ACTIONS(3597), + [anon_sym_default] = ACTIONS(3597), + [anon_sym_while] = ACTIONS(3597), + [anon_sym_do] = ACTIONS(3597), + [anon_sym_for] = ACTIONS(3597), + [anon_sym_return] = ACTIONS(3597), + [anon_sym_break] = ACTIONS(3597), + [anon_sym_continue] = ACTIONS(3597), + [anon_sym_goto] = ACTIONS(3597), + [anon_sym_not] = ACTIONS(3597), + [anon_sym_compl] = ACTIONS(3597), + [anon_sym_DASH_DASH] = ACTIONS(3595), + [anon_sym_PLUS_PLUS] = ACTIONS(3595), + [anon_sym_sizeof] = ACTIONS(3597), + [anon_sym___alignof__] = ACTIONS(3597), + [anon_sym___alignof] = ACTIONS(3597), + [anon_sym__alignof] = ACTIONS(3597), + [anon_sym_alignof] = ACTIONS(3597), + [anon_sym__Alignof] = ACTIONS(3597), + [anon_sym_offsetof] = ACTIONS(3597), + [anon_sym__Generic] = ACTIONS(3597), + [anon_sym_asm] = ACTIONS(3597), + [anon_sym___asm__] = ACTIONS(3597), + [anon_sym___asm] = ACTIONS(3597), + [sym_number_literal] = ACTIONS(3595), + [anon_sym_L_SQUOTE] = ACTIONS(3595), + [anon_sym_u_SQUOTE] = ACTIONS(3595), + [anon_sym_U_SQUOTE] = ACTIONS(3595), + [anon_sym_u8_SQUOTE] = ACTIONS(3595), + [anon_sym_SQUOTE] = ACTIONS(3595), + [anon_sym_L_DQUOTE] = ACTIONS(3595), + [anon_sym_u_DQUOTE] = ACTIONS(3595), + [anon_sym_U_DQUOTE] = ACTIONS(3595), + [anon_sym_u8_DQUOTE] = ACTIONS(3595), + [anon_sym_DQUOTE] = ACTIONS(3595), + [sym_true] = ACTIONS(3597), + [sym_false] = ACTIONS(3597), + [anon_sym_NULL] = ACTIONS(3597), + [anon_sym_nullptr] = ACTIONS(3597), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2843), - [anon_sym_decltype] = ACTIONS(2843), - [anon_sym_explicit] = ACTIONS(2843), - [anon_sym_typename] = ACTIONS(2843), - [anon_sym_template] = ACTIONS(2843), - [anon_sym_operator] = ACTIONS(2843), - [anon_sym_try] = ACTIONS(2843), - [anon_sym_delete] = ACTIONS(2843), - [anon_sym_throw] = ACTIONS(2843), - [anon_sym_namespace] = ACTIONS(2843), - [anon_sym_static_assert] = ACTIONS(2843), - [anon_sym_concept] = ACTIONS(2843), - [anon_sym_co_return] = ACTIONS(2843), - [anon_sym_co_yield] = ACTIONS(2843), - [anon_sym_R_DQUOTE] = ACTIONS(2845), - [anon_sym_LR_DQUOTE] = ACTIONS(2845), - [anon_sym_uR_DQUOTE] = ACTIONS(2845), - [anon_sym_UR_DQUOTE] = ACTIONS(2845), - [anon_sym_u8R_DQUOTE] = ACTIONS(2845), - [anon_sym_co_await] = ACTIONS(2843), - [anon_sym_new] = ACTIONS(2843), - [anon_sym_requires] = ACTIONS(2843), - [sym_this] = ACTIONS(2843), + [sym_auto] = ACTIONS(3597), + [anon_sym_decltype] = ACTIONS(3597), + [anon_sym_explicit] = ACTIONS(3597), + [anon_sym_typename] = ACTIONS(3597), + [anon_sym_export] = ACTIONS(3597), + [anon_sym_module] = ACTIONS(3597), + [anon_sym_import] = ACTIONS(3597), + [anon_sym_template] = ACTIONS(3597), + [anon_sym_operator] = ACTIONS(3597), + [anon_sym_try] = ACTIONS(3597), + [anon_sym_delete] = ACTIONS(3597), + [anon_sym_throw] = ACTIONS(3597), + [anon_sym_namespace] = ACTIONS(3597), + [anon_sym_static_assert] = ACTIONS(3597), + [anon_sym_concept] = ACTIONS(3597), + [anon_sym_co_return] = ACTIONS(3597), + [anon_sym_co_yield] = ACTIONS(3597), + [anon_sym_R_DQUOTE] = ACTIONS(3595), + [anon_sym_LR_DQUOTE] = ACTIONS(3595), + [anon_sym_uR_DQUOTE] = ACTIONS(3595), + [anon_sym_UR_DQUOTE] = ACTIONS(3595), + [anon_sym_u8R_DQUOTE] = ACTIONS(3595), + [anon_sym_co_await] = ACTIONS(3597), + [anon_sym_new] = ACTIONS(3597), + [anon_sym_requires] = ACTIONS(3597), + [sym_this] = ACTIONS(3597), }, [652] = { - [sym_identifier] = ACTIONS(2847), - [aux_sym_preproc_include_token1] = ACTIONS(2847), - [aux_sym_preproc_def_token1] = ACTIONS(2847), - [aux_sym_preproc_if_token1] = ACTIONS(2847), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2847), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2847), - [sym_preproc_directive] = ACTIONS(2847), - [anon_sym_LPAREN2] = ACTIONS(2849), - [anon_sym_BANG] = ACTIONS(2849), - [anon_sym_TILDE] = ACTIONS(2849), - [anon_sym_DASH] = ACTIONS(2847), - [anon_sym_PLUS] = ACTIONS(2847), - [anon_sym_STAR] = ACTIONS(2849), - [anon_sym_AMP_AMP] = ACTIONS(2849), - [anon_sym_AMP] = ACTIONS(2847), - [anon_sym_SEMI] = ACTIONS(2849), - [anon_sym___extension__] = ACTIONS(2847), - [anon_sym_typedef] = ACTIONS(2847), - [anon_sym_virtual] = ACTIONS(2847), - [anon_sym_extern] = ACTIONS(2847), - [anon_sym___attribute__] = ACTIONS(2847), - [anon_sym___attribute] = ACTIONS(2847), - [anon_sym_using] = ACTIONS(2847), - [anon_sym_COLON_COLON] = ACTIONS(2849), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2849), - [anon_sym___declspec] = ACTIONS(2847), - [anon_sym___based] = ACTIONS(2847), - [anon_sym___cdecl] = ACTIONS(2847), - [anon_sym___clrcall] = ACTIONS(2847), - [anon_sym___stdcall] = ACTIONS(2847), - [anon_sym___fastcall] = ACTIONS(2847), - [anon_sym___thiscall] = ACTIONS(2847), - [anon_sym___vectorcall] = ACTIONS(2847), - [anon_sym_LBRACE] = ACTIONS(2849), - [anon_sym_RBRACE] = ACTIONS(2849), - [anon_sym_signed] = ACTIONS(2847), - [anon_sym_unsigned] = ACTIONS(2847), - [anon_sym_long] = ACTIONS(2847), - [anon_sym_short] = ACTIONS(2847), - [anon_sym_LBRACK] = ACTIONS(2847), - [anon_sym_static] = ACTIONS(2847), - [anon_sym_register] = ACTIONS(2847), - [anon_sym_inline] = ACTIONS(2847), - [anon_sym___inline] = ACTIONS(2847), - [anon_sym___inline__] = ACTIONS(2847), - [anon_sym___forceinline] = ACTIONS(2847), - [anon_sym_thread_local] = ACTIONS(2847), - [anon_sym___thread] = ACTIONS(2847), - [anon_sym_const] = ACTIONS(2847), - [anon_sym_constexpr] = ACTIONS(2847), - [anon_sym_volatile] = ACTIONS(2847), - [anon_sym_restrict] = ACTIONS(2847), - [anon_sym___restrict__] = ACTIONS(2847), - [anon_sym__Atomic] = ACTIONS(2847), - [anon_sym__Noreturn] = ACTIONS(2847), - [anon_sym_noreturn] = ACTIONS(2847), - [anon_sym__Nonnull] = ACTIONS(2847), - [anon_sym_mutable] = ACTIONS(2847), - [anon_sym_constinit] = ACTIONS(2847), - [anon_sym_consteval] = ACTIONS(2847), - [anon_sym_alignas] = ACTIONS(2847), - [anon_sym__Alignas] = ACTIONS(2847), - [sym_primitive_type] = ACTIONS(2847), - [anon_sym_enum] = ACTIONS(2847), - [anon_sym_class] = ACTIONS(2847), - [anon_sym_struct] = ACTIONS(2847), - [anon_sym_union] = ACTIONS(2847), - [anon_sym_if] = ACTIONS(2847), - [anon_sym_switch] = ACTIONS(2847), - [anon_sym_case] = ACTIONS(2847), - [anon_sym_default] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2847), - [anon_sym_do] = ACTIONS(2847), - [anon_sym_for] = ACTIONS(2847), - [anon_sym_return] = ACTIONS(2847), - [anon_sym_break] = ACTIONS(2847), - [anon_sym_continue] = ACTIONS(2847), - [anon_sym_goto] = ACTIONS(2847), - [anon_sym___try] = ACTIONS(2847), - [anon_sym___leave] = ACTIONS(2847), - [anon_sym_not] = ACTIONS(2847), - [anon_sym_compl] = ACTIONS(2847), - [anon_sym_DASH_DASH] = ACTIONS(2849), - [anon_sym_PLUS_PLUS] = ACTIONS(2849), - [anon_sym_sizeof] = ACTIONS(2847), - [anon_sym___alignof__] = ACTIONS(2847), - [anon_sym___alignof] = ACTIONS(2847), - [anon_sym__alignof] = ACTIONS(2847), - [anon_sym_alignof] = ACTIONS(2847), - [anon_sym__Alignof] = ACTIONS(2847), - [anon_sym_offsetof] = ACTIONS(2847), - [anon_sym__Generic] = ACTIONS(2847), - [anon_sym_asm] = ACTIONS(2847), - [anon_sym___asm__] = ACTIONS(2847), - [anon_sym___asm] = ACTIONS(2847), - [sym_number_literal] = ACTIONS(2849), - [anon_sym_L_SQUOTE] = ACTIONS(2849), - [anon_sym_u_SQUOTE] = ACTIONS(2849), - [anon_sym_U_SQUOTE] = ACTIONS(2849), - [anon_sym_u8_SQUOTE] = ACTIONS(2849), - [anon_sym_SQUOTE] = ACTIONS(2849), - [anon_sym_L_DQUOTE] = ACTIONS(2849), - [anon_sym_u_DQUOTE] = ACTIONS(2849), - [anon_sym_U_DQUOTE] = ACTIONS(2849), - [anon_sym_u8_DQUOTE] = ACTIONS(2849), - [anon_sym_DQUOTE] = ACTIONS(2849), - [sym_true] = ACTIONS(2847), - [sym_false] = ACTIONS(2847), - [anon_sym_NULL] = ACTIONS(2847), - [anon_sym_nullptr] = ACTIONS(2847), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2847), - [anon_sym_decltype] = ACTIONS(2847), - [anon_sym_explicit] = ACTIONS(2847), - [anon_sym_typename] = ACTIONS(2847), - [anon_sym_template] = ACTIONS(2847), - [anon_sym_operator] = ACTIONS(2847), - [anon_sym_try] = ACTIONS(2847), - [anon_sym_delete] = ACTIONS(2847), - [anon_sym_throw] = ACTIONS(2847), - [anon_sym_namespace] = ACTIONS(2847), - [anon_sym_static_assert] = ACTIONS(2847), - [anon_sym_concept] = ACTIONS(2847), - [anon_sym_co_return] = ACTIONS(2847), - [anon_sym_co_yield] = ACTIONS(2847), - [anon_sym_R_DQUOTE] = ACTIONS(2849), - [anon_sym_LR_DQUOTE] = ACTIONS(2849), - [anon_sym_uR_DQUOTE] = ACTIONS(2849), - [anon_sym_UR_DQUOTE] = ACTIONS(2849), - [anon_sym_u8R_DQUOTE] = ACTIONS(2849), - [anon_sym_co_await] = ACTIONS(2847), - [anon_sym_new] = ACTIONS(2847), - [anon_sym_requires] = ACTIONS(2847), - [sym_this] = ACTIONS(2847), - }, - [653] = { - [sym_identifier] = ACTIONS(2851), - [aux_sym_preproc_include_token1] = ACTIONS(2851), - [aux_sym_preproc_def_token1] = ACTIONS(2851), - [aux_sym_preproc_if_token1] = ACTIONS(2851), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2851), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2851), - [sym_preproc_directive] = ACTIONS(2851), - [anon_sym_LPAREN2] = ACTIONS(2853), - [anon_sym_BANG] = ACTIONS(2853), - [anon_sym_TILDE] = ACTIONS(2853), - [anon_sym_DASH] = ACTIONS(2851), - [anon_sym_PLUS] = ACTIONS(2851), - [anon_sym_STAR] = ACTIONS(2853), - [anon_sym_AMP_AMP] = ACTIONS(2853), - [anon_sym_AMP] = ACTIONS(2851), - [anon_sym_SEMI] = ACTIONS(2853), - [anon_sym___extension__] = ACTIONS(2851), - [anon_sym_typedef] = ACTIONS(2851), - [anon_sym_virtual] = ACTIONS(2851), - [anon_sym_extern] = ACTIONS(2851), - [anon_sym___attribute__] = ACTIONS(2851), - [anon_sym___attribute] = ACTIONS(2851), - [anon_sym_using] = ACTIONS(2851), - [anon_sym_COLON_COLON] = ACTIONS(2853), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2853), - [anon_sym___declspec] = ACTIONS(2851), - [anon_sym___based] = ACTIONS(2851), - [anon_sym___cdecl] = ACTIONS(2851), - [anon_sym___clrcall] = ACTIONS(2851), - [anon_sym___stdcall] = ACTIONS(2851), - [anon_sym___fastcall] = ACTIONS(2851), - [anon_sym___thiscall] = ACTIONS(2851), - [anon_sym___vectorcall] = ACTIONS(2851), - [anon_sym_LBRACE] = ACTIONS(2853), - [anon_sym_RBRACE] = ACTIONS(2853), - [anon_sym_signed] = ACTIONS(2851), - [anon_sym_unsigned] = ACTIONS(2851), - [anon_sym_long] = ACTIONS(2851), - [anon_sym_short] = ACTIONS(2851), - [anon_sym_LBRACK] = ACTIONS(2851), - [anon_sym_static] = ACTIONS(2851), - [anon_sym_register] = ACTIONS(2851), - [anon_sym_inline] = ACTIONS(2851), - [anon_sym___inline] = ACTIONS(2851), - [anon_sym___inline__] = ACTIONS(2851), - [anon_sym___forceinline] = ACTIONS(2851), - [anon_sym_thread_local] = ACTIONS(2851), - [anon_sym___thread] = ACTIONS(2851), - [anon_sym_const] = ACTIONS(2851), - [anon_sym_constexpr] = ACTIONS(2851), - [anon_sym_volatile] = ACTIONS(2851), - [anon_sym_restrict] = ACTIONS(2851), - [anon_sym___restrict__] = ACTIONS(2851), - [anon_sym__Atomic] = ACTIONS(2851), - [anon_sym__Noreturn] = ACTIONS(2851), - [anon_sym_noreturn] = ACTIONS(2851), - [anon_sym__Nonnull] = ACTIONS(2851), - [anon_sym_mutable] = ACTIONS(2851), - [anon_sym_constinit] = ACTIONS(2851), - [anon_sym_consteval] = ACTIONS(2851), - [anon_sym_alignas] = ACTIONS(2851), - [anon_sym__Alignas] = ACTIONS(2851), - [sym_primitive_type] = ACTIONS(2851), - [anon_sym_enum] = ACTIONS(2851), - [anon_sym_class] = ACTIONS(2851), - [anon_sym_struct] = ACTIONS(2851), - [anon_sym_union] = ACTIONS(2851), - [anon_sym_if] = ACTIONS(2851), - [anon_sym_switch] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2851), - [anon_sym_default] = ACTIONS(2851), - [anon_sym_while] = ACTIONS(2851), - [anon_sym_do] = ACTIONS(2851), - [anon_sym_for] = ACTIONS(2851), - [anon_sym_return] = ACTIONS(2851), - [anon_sym_break] = ACTIONS(2851), - [anon_sym_continue] = ACTIONS(2851), - [anon_sym_goto] = ACTIONS(2851), - [anon_sym___try] = ACTIONS(2851), - [anon_sym___leave] = ACTIONS(2851), - [anon_sym_not] = ACTIONS(2851), - [anon_sym_compl] = ACTIONS(2851), - [anon_sym_DASH_DASH] = ACTIONS(2853), - [anon_sym_PLUS_PLUS] = ACTIONS(2853), - [anon_sym_sizeof] = ACTIONS(2851), - [anon_sym___alignof__] = ACTIONS(2851), - [anon_sym___alignof] = ACTIONS(2851), - [anon_sym__alignof] = ACTIONS(2851), - [anon_sym_alignof] = ACTIONS(2851), - [anon_sym__Alignof] = ACTIONS(2851), - [anon_sym_offsetof] = ACTIONS(2851), - [anon_sym__Generic] = ACTIONS(2851), - [anon_sym_asm] = ACTIONS(2851), - [anon_sym___asm__] = ACTIONS(2851), - [anon_sym___asm] = ACTIONS(2851), - [sym_number_literal] = ACTIONS(2853), - [anon_sym_L_SQUOTE] = ACTIONS(2853), - [anon_sym_u_SQUOTE] = ACTIONS(2853), - [anon_sym_U_SQUOTE] = ACTIONS(2853), - [anon_sym_u8_SQUOTE] = ACTIONS(2853), - [anon_sym_SQUOTE] = ACTIONS(2853), - [anon_sym_L_DQUOTE] = ACTIONS(2853), - [anon_sym_u_DQUOTE] = ACTIONS(2853), - [anon_sym_U_DQUOTE] = ACTIONS(2853), - [anon_sym_u8_DQUOTE] = ACTIONS(2853), - [anon_sym_DQUOTE] = ACTIONS(2853), - [sym_true] = ACTIONS(2851), - [sym_false] = ACTIONS(2851), - [anon_sym_NULL] = ACTIONS(2851), - [anon_sym_nullptr] = ACTIONS(2851), + [ts_builtin_sym_end] = ACTIONS(2893), + [sym_identifier] = ACTIONS(2891), + [aux_sym_preproc_include_token1] = ACTIONS(2891), + [aux_sym_preproc_def_token1] = ACTIONS(2891), + [aux_sym_preproc_if_token1] = ACTIONS(2891), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2891), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2891), + [sym_preproc_directive] = ACTIONS(2891), + [anon_sym_LPAREN2] = ACTIONS(2893), + [anon_sym_BANG] = ACTIONS(2893), + [anon_sym_TILDE] = ACTIONS(2893), + [anon_sym_DASH] = ACTIONS(2891), + [anon_sym_PLUS] = ACTIONS(2891), + [anon_sym_STAR] = ACTIONS(2893), + [anon_sym_AMP_AMP] = ACTIONS(2893), + [anon_sym_AMP] = ACTIONS(2891), + [anon_sym_SEMI] = ACTIONS(2893), + [anon_sym___extension__] = ACTIONS(2891), + [anon_sym_typedef] = ACTIONS(2891), + [anon_sym_virtual] = ACTIONS(2891), + [anon_sym_extern] = ACTIONS(2891), + [anon_sym___attribute__] = ACTIONS(2891), + [anon_sym___attribute] = ACTIONS(2891), + [anon_sym_using] = ACTIONS(2891), + [anon_sym_COLON_COLON] = ACTIONS(2893), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2893), + [anon_sym___declspec] = ACTIONS(2891), + [anon_sym___based] = ACTIONS(2891), + [anon_sym___cdecl] = ACTIONS(2891), + [anon_sym___clrcall] = ACTIONS(2891), + [anon_sym___stdcall] = ACTIONS(2891), + [anon_sym___fastcall] = ACTIONS(2891), + [anon_sym___thiscall] = ACTIONS(2891), + [anon_sym___vectorcall] = ACTIONS(2891), + [anon_sym_LBRACE] = ACTIONS(2893), + [anon_sym_signed] = ACTIONS(2891), + [anon_sym_unsigned] = ACTIONS(2891), + [anon_sym_long] = ACTIONS(2891), + [anon_sym_short] = ACTIONS(2891), + [anon_sym_LBRACK] = ACTIONS(2891), + [anon_sym_static] = ACTIONS(2891), + [anon_sym_register] = ACTIONS(2891), + [anon_sym_inline] = ACTIONS(2891), + [anon_sym___inline] = ACTIONS(2891), + [anon_sym___inline__] = ACTIONS(2891), + [anon_sym___forceinline] = ACTIONS(2891), + [anon_sym_thread_local] = ACTIONS(2891), + [anon_sym___thread] = ACTIONS(2891), + [anon_sym_const] = ACTIONS(2891), + [anon_sym_constexpr] = ACTIONS(2891), + [anon_sym_volatile] = ACTIONS(2891), + [anon_sym_restrict] = ACTIONS(2891), + [anon_sym___restrict__] = ACTIONS(2891), + [anon_sym__Atomic] = ACTIONS(2891), + [anon_sym__Noreturn] = ACTIONS(2891), + [anon_sym_noreturn] = ACTIONS(2891), + [anon_sym__Nonnull] = ACTIONS(2891), + [anon_sym_mutable] = ACTIONS(2891), + [anon_sym_constinit] = ACTIONS(2891), + [anon_sym_consteval] = ACTIONS(2891), + [anon_sym_alignas] = ACTIONS(2891), + [anon_sym__Alignas] = ACTIONS(2891), + [sym_primitive_type] = ACTIONS(2891), + [anon_sym_enum] = ACTIONS(2891), + [anon_sym_class] = ACTIONS(2891), + [anon_sym_struct] = ACTIONS(2891), + [anon_sym_union] = ACTIONS(2891), + [anon_sym_if] = ACTIONS(2891), + [anon_sym_switch] = ACTIONS(2891), + [anon_sym_case] = ACTIONS(2891), + [anon_sym_default] = ACTIONS(2891), + [anon_sym_while] = ACTIONS(2891), + [anon_sym_do] = ACTIONS(2891), + [anon_sym_for] = ACTIONS(2891), + [anon_sym_return] = ACTIONS(2891), + [anon_sym_break] = ACTIONS(2891), + [anon_sym_continue] = ACTIONS(2891), + [anon_sym_goto] = ACTIONS(2891), + [anon_sym_not] = ACTIONS(2891), + [anon_sym_compl] = ACTIONS(2891), + [anon_sym_DASH_DASH] = ACTIONS(2893), + [anon_sym_PLUS_PLUS] = ACTIONS(2893), + [anon_sym_sizeof] = ACTIONS(2891), + [anon_sym___alignof__] = ACTIONS(2891), + [anon_sym___alignof] = ACTIONS(2891), + [anon_sym__alignof] = ACTIONS(2891), + [anon_sym_alignof] = ACTIONS(2891), + [anon_sym__Alignof] = ACTIONS(2891), + [anon_sym_offsetof] = ACTIONS(2891), + [anon_sym__Generic] = ACTIONS(2891), + [anon_sym_asm] = ACTIONS(2891), + [anon_sym___asm__] = ACTIONS(2891), + [anon_sym___asm] = ACTIONS(2891), + [sym_number_literal] = ACTIONS(2893), + [anon_sym_L_SQUOTE] = ACTIONS(2893), + [anon_sym_u_SQUOTE] = ACTIONS(2893), + [anon_sym_U_SQUOTE] = ACTIONS(2893), + [anon_sym_u8_SQUOTE] = ACTIONS(2893), + [anon_sym_SQUOTE] = ACTIONS(2893), + [anon_sym_L_DQUOTE] = ACTIONS(2893), + [anon_sym_u_DQUOTE] = ACTIONS(2893), + [anon_sym_U_DQUOTE] = ACTIONS(2893), + [anon_sym_u8_DQUOTE] = ACTIONS(2893), + [anon_sym_DQUOTE] = ACTIONS(2893), + [sym_true] = ACTIONS(2891), + [sym_false] = ACTIONS(2891), + [anon_sym_NULL] = ACTIONS(2891), + [anon_sym_nullptr] = ACTIONS(2891), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2851), - [anon_sym_decltype] = ACTIONS(2851), - [anon_sym_explicit] = ACTIONS(2851), - [anon_sym_typename] = ACTIONS(2851), - [anon_sym_template] = ACTIONS(2851), - [anon_sym_operator] = ACTIONS(2851), - [anon_sym_try] = ACTIONS(2851), - [anon_sym_delete] = ACTIONS(2851), - [anon_sym_throw] = ACTIONS(2851), - [anon_sym_namespace] = ACTIONS(2851), - [anon_sym_static_assert] = ACTIONS(2851), - [anon_sym_concept] = ACTIONS(2851), - [anon_sym_co_return] = ACTIONS(2851), - [anon_sym_co_yield] = ACTIONS(2851), - [anon_sym_R_DQUOTE] = ACTIONS(2853), - [anon_sym_LR_DQUOTE] = ACTIONS(2853), - [anon_sym_uR_DQUOTE] = ACTIONS(2853), - [anon_sym_UR_DQUOTE] = ACTIONS(2853), - [anon_sym_u8R_DQUOTE] = ACTIONS(2853), - [anon_sym_co_await] = ACTIONS(2851), - [anon_sym_new] = ACTIONS(2851), - [anon_sym_requires] = ACTIONS(2851), - [sym_this] = ACTIONS(2851), + [sym_auto] = ACTIONS(2891), + [anon_sym_decltype] = ACTIONS(2891), + [anon_sym_explicit] = ACTIONS(2891), + [anon_sym_typename] = ACTIONS(2891), + [anon_sym_export] = ACTIONS(2891), + [anon_sym_module] = ACTIONS(2891), + [anon_sym_import] = ACTIONS(2891), + [anon_sym_template] = ACTIONS(2891), + [anon_sym_operator] = ACTIONS(2891), + [anon_sym_try] = ACTIONS(2891), + [anon_sym_delete] = ACTIONS(2891), + [anon_sym_throw] = ACTIONS(2891), + [anon_sym_namespace] = ACTIONS(2891), + [anon_sym_static_assert] = ACTIONS(2891), + [anon_sym_concept] = ACTIONS(2891), + [anon_sym_co_return] = ACTIONS(2891), + [anon_sym_co_yield] = ACTIONS(2891), + [anon_sym_R_DQUOTE] = ACTIONS(2893), + [anon_sym_LR_DQUOTE] = ACTIONS(2893), + [anon_sym_uR_DQUOTE] = ACTIONS(2893), + [anon_sym_UR_DQUOTE] = ACTIONS(2893), + [anon_sym_u8R_DQUOTE] = ACTIONS(2893), + [anon_sym_co_await] = ACTIONS(2891), + [anon_sym_new] = ACTIONS(2891), + [anon_sym_requires] = ACTIONS(2891), + [sym_this] = ACTIONS(2891), + }, + [653] = { + [sym_identifier] = ACTIONS(2679), + [aux_sym_preproc_include_token1] = ACTIONS(2679), + [aux_sym_preproc_def_token1] = ACTIONS(2679), + [aux_sym_preproc_if_token1] = ACTIONS(2679), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2679), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2679), + [sym_preproc_directive] = ACTIONS(2679), + [anon_sym_LPAREN2] = ACTIONS(2681), + [anon_sym_BANG] = ACTIONS(2681), + [anon_sym_TILDE] = ACTIONS(2681), + [anon_sym_DASH] = ACTIONS(2679), + [anon_sym_PLUS] = ACTIONS(2679), + [anon_sym_STAR] = ACTIONS(2681), + [anon_sym_AMP_AMP] = ACTIONS(2681), + [anon_sym_AMP] = ACTIONS(2679), + [anon_sym_SEMI] = ACTIONS(2681), + [anon_sym___extension__] = ACTIONS(2679), + [anon_sym_typedef] = ACTIONS(2679), + [anon_sym_virtual] = ACTIONS(2679), + [anon_sym_extern] = ACTIONS(2679), + [anon_sym___attribute__] = ACTIONS(2679), + [anon_sym___attribute] = ACTIONS(2679), + [anon_sym_using] = ACTIONS(2679), + [anon_sym_COLON_COLON] = ACTIONS(2681), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2681), + [anon_sym___declspec] = ACTIONS(2679), + [anon_sym___based] = ACTIONS(2679), + [anon_sym___cdecl] = ACTIONS(2679), + [anon_sym___clrcall] = ACTIONS(2679), + [anon_sym___stdcall] = ACTIONS(2679), + [anon_sym___fastcall] = ACTIONS(2679), + [anon_sym___thiscall] = ACTIONS(2679), + [anon_sym___vectorcall] = ACTIONS(2679), + [anon_sym_LBRACE] = ACTIONS(2681), + [anon_sym_RBRACE] = ACTIONS(2681), + [anon_sym_signed] = ACTIONS(2679), + [anon_sym_unsigned] = ACTIONS(2679), + [anon_sym_long] = ACTIONS(2679), + [anon_sym_short] = ACTIONS(2679), + [anon_sym_LBRACK] = ACTIONS(2679), + [anon_sym_static] = ACTIONS(2679), + [anon_sym_register] = ACTIONS(2679), + [anon_sym_inline] = ACTIONS(2679), + [anon_sym___inline] = ACTIONS(2679), + [anon_sym___inline__] = ACTIONS(2679), + [anon_sym___forceinline] = ACTIONS(2679), + [anon_sym_thread_local] = ACTIONS(2679), + [anon_sym___thread] = ACTIONS(2679), + [anon_sym_const] = ACTIONS(2679), + [anon_sym_constexpr] = ACTIONS(2679), + [anon_sym_volatile] = ACTIONS(2679), + [anon_sym_restrict] = ACTIONS(2679), + [anon_sym___restrict__] = ACTIONS(2679), + [anon_sym__Atomic] = ACTIONS(2679), + [anon_sym__Noreturn] = ACTIONS(2679), + [anon_sym_noreturn] = ACTIONS(2679), + [anon_sym__Nonnull] = ACTIONS(2679), + [anon_sym_mutable] = ACTIONS(2679), + [anon_sym_constinit] = ACTIONS(2679), + [anon_sym_consteval] = ACTIONS(2679), + [anon_sym_alignas] = ACTIONS(2679), + [anon_sym__Alignas] = ACTIONS(2679), + [sym_primitive_type] = ACTIONS(2679), + [anon_sym_enum] = ACTIONS(2679), + [anon_sym_class] = ACTIONS(2679), + [anon_sym_struct] = ACTIONS(2679), + [anon_sym_union] = ACTIONS(2679), + [anon_sym_if] = ACTIONS(2679), + [anon_sym_else] = ACTIONS(2679), + [anon_sym_switch] = ACTIONS(2679), + [anon_sym_case] = ACTIONS(2679), + [anon_sym_default] = ACTIONS(2679), + [anon_sym_while] = ACTIONS(2679), + [anon_sym_do] = ACTIONS(2679), + [anon_sym_for] = ACTIONS(2679), + [anon_sym_return] = ACTIONS(2679), + [anon_sym_break] = ACTIONS(2679), + [anon_sym_continue] = ACTIONS(2679), + [anon_sym_goto] = ACTIONS(2679), + [anon_sym___try] = ACTIONS(2679), + [anon_sym___leave] = ACTIONS(2679), + [anon_sym_not] = ACTIONS(2679), + [anon_sym_compl] = ACTIONS(2679), + [anon_sym_DASH_DASH] = ACTIONS(2681), + [anon_sym_PLUS_PLUS] = ACTIONS(2681), + [anon_sym_sizeof] = ACTIONS(2679), + [anon_sym___alignof__] = ACTIONS(2679), + [anon_sym___alignof] = ACTIONS(2679), + [anon_sym__alignof] = ACTIONS(2679), + [anon_sym_alignof] = ACTIONS(2679), + [anon_sym__Alignof] = ACTIONS(2679), + [anon_sym_offsetof] = ACTIONS(2679), + [anon_sym__Generic] = ACTIONS(2679), + [anon_sym_asm] = ACTIONS(2679), + [anon_sym___asm__] = ACTIONS(2679), + [anon_sym___asm] = ACTIONS(2679), + [sym_number_literal] = ACTIONS(2681), + [anon_sym_L_SQUOTE] = ACTIONS(2681), + [anon_sym_u_SQUOTE] = ACTIONS(2681), + [anon_sym_U_SQUOTE] = ACTIONS(2681), + [anon_sym_u8_SQUOTE] = ACTIONS(2681), + [anon_sym_SQUOTE] = ACTIONS(2681), + [anon_sym_L_DQUOTE] = ACTIONS(2681), + [anon_sym_u_DQUOTE] = ACTIONS(2681), + [anon_sym_U_DQUOTE] = ACTIONS(2681), + [anon_sym_u8_DQUOTE] = ACTIONS(2681), + [anon_sym_DQUOTE] = ACTIONS(2681), + [sym_true] = ACTIONS(2679), + [sym_false] = ACTIONS(2679), + [anon_sym_NULL] = ACTIONS(2679), + [anon_sym_nullptr] = ACTIONS(2679), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2679), + [anon_sym_decltype] = ACTIONS(2679), + [anon_sym_explicit] = ACTIONS(2679), + [anon_sym_typename] = ACTIONS(2679), + [anon_sym_template] = ACTIONS(2679), + [anon_sym_operator] = ACTIONS(2679), + [anon_sym_try] = ACTIONS(2679), + [anon_sym_delete] = ACTIONS(2679), + [anon_sym_throw] = ACTIONS(2679), + [anon_sym_namespace] = ACTIONS(2679), + [anon_sym_static_assert] = ACTIONS(2679), + [anon_sym_concept] = ACTIONS(2679), + [anon_sym_co_return] = ACTIONS(2679), + [anon_sym_co_yield] = ACTIONS(2679), + [anon_sym_R_DQUOTE] = ACTIONS(2681), + [anon_sym_LR_DQUOTE] = ACTIONS(2681), + [anon_sym_uR_DQUOTE] = ACTIONS(2681), + [anon_sym_UR_DQUOTE] = ACTIONS(2681), + [anon_sym_u8R_DQUOTE] = ACTIONS(2681), + [anon_sym_co_await] = ACTIONS(2679), + [anon_sym_new] = ACTIONS(2679), + [anon_sym_requires] = ACTIONS(2679), + [sym_this] = ACTIONS(2679), }, [654] = { - [sym_identifier] = ACTIONS(2823), - [aux_sym_preproc_include_token1] = ACTIONS(2823), - [aux_sym_preproc_def_token1] = ACTIONS(2823), - [aux_sym_preproc_if_token1] = ACTIONS(2823), - [aux_sym_preproc_if_token2] = ACTIONS(2823), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2823), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2823), - [sym_preproc_directive] = ACTIONS(2823), - [anon_sym_LPAREN2] = ACTIONS(2825), - [anon_sym_BANG] = ACTIONS(2825), - [anon_sym_TILDE] = ACTIONS(2825), - [anon_sym_DASH] = ACTIONS(2823), - [anon_sym_PLUS] = ACTIONS(2823), - [anon_sym_STAR] = ACTIONS(2825), - [anon_sym_AMP_AMP] = ACTIONS(2825), - [anon_sym_AMP] = ACTIONS(2823), - [anon_sym_SEMI] = ACTIONS(2825), - [anon_sym___extension__] = ACTIONS(2823), - [anon_sym_typedef] = ACTIONS(2823), - [anon_sym_virtual] = ACTIONS(2823), - [anon_sym_extern] = ACTIONS(2823), - [anon_sym___attribute__] = ACTIONS(2823), - [anon_sym___attribute] = ACTIONS(2823), - [anon_sym_using] = ACTIONS(2823), - [anon_sym_COLON_COLON] = ACTIONS(2825), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2825), - [anon_sym___declspec] = ACTIONS(2823), - [anon_sym___based] = ACTIONS(2823), - [anon_sym___cdecl] = ACTIONS(2823), - [anon_sym___clrcall] = ACTIONS(2823), - [anon_sym___stdcall] = ACTIONS(2823), - [anon_sym___fastcall] = ACTIONS(2823), - [anon_sym___thiscall] = ACTIONS(2823), - [anon_sym___vectorcall] = ACTIONS(2823), - [anon_sym_LBRACE] = ACTIONS(2825), - [anon_sym_signed] = ACTIONS(2823), - [anon_sym_unsigned] = ACTIONS(2823), - [anon_sym_long] = ACTIONS(2823), - [anon_sym_short] = ACTIONS(2823), - [anon_sym_LBRACK] = ACTIONS(2823), - [anon_sym_static] = ACTIONS(2823), - [anon_sym_register] = ACTIONS(2823), - [anon_sym_inline] = ACTIONS(2823), - [anon_sym___inline] = ACTIONS(2823), - [anon_sym___inline__] = ACTIONS(2823), - [anon_sym___forceinline] = ACTIONS(2823), - [anon_sym_thread_local] = ACTIONS(2823), - [anon_sym___thread] = ACTIONS(2823), - [anon_sym_const] = ACTIONS(2823), - [anon_sym_constexpr] = ACTIONS(2823), - [anon_sym_volatile] = ACTIONS(2823), - [anon_sym_restrict] = ACTIONS(2823), - [anon_sym___restrict__] = ACTIONS(2823), - [anon_sym__Atomic] = ACTIONS(2823), - [anon_sym__Noreturn] = ACTIONS(2823), - [anon_sym_noreturn] = ACTIONS(2823), - [anon_sym__Nonnull] = ACTIONS(2823), - [anon_sym_mutable] = ACTIONS(2823), - [anon_sym_constinit] = ACTIONS(2823), - [anon_sym_consteval] = ACTIONS(2823), - [anon_sym_alignas] = ACTIONS(2823), - [anon_sym__Alignas] = ACTIONS(2823), - [sym_primitive_type] = ACTIONS(2823), - [anon_sym_enum] = ACTIONS(2823), - [anon_sym_class] = ACTIONS(2823), - [anon_sym_struct] = ACTIONS(2823), - [anon_sym_union] = ACTIONS(2823), - [anon_sym_if] = ACTIONS(2823), - [anon_sym_switch] = ACTIONS(2823), - [anon_sym_case] = ACTIONS(2823), - [anon_sym_default] = ACTIONS(2823), - [anon_sym_while] = ACTIONS(2823), - [anon_sym_do] = ACTIONS(2823), - [anon_sym_for] = ACTIONS(2823), - [anon_sym_return] = ACTIONS(2823), - [anon_sym_break] = ACTIONS(2823), - [anon_sym_continue] = ACTIONS(2823), - [anon_sym_goto] = ACTIONS(2823), - [anon_sym___try] = ACTIONS(2823), - [anon_sym___leave] = ACTIONS(2823), - [anon_sym_not] = ACTIONS(2823), - [anon_sym_compl] = ACTIONS(2823), - [anon_sym_DASH_DASH] = ACTIONS(2825), - [anon_sym_PLUS_PLUS] = ACTIONS(2825), - [anon_sym_sizeof] = ACTIONS(2823), - [anon_sym___alignof__] = ACTIONS(2823), - [anon_sym___alignof] = ACTIONS(2823), - [anon_sym__alignof] = ACTIONS(2823), - [anon_sym_alignof] = ACTIONS(2823), - [anon_sym__Alignof] = ACTIONS(2823), - [anon_sym_offsetof] = ACTIONS(2823), - [anon_sym__Generic] = ACTIONS(2823), - [anon_sym_asm] = ACTIONS(2823), - [anon_sym___asm__] = ACTIONS(2823), - [anon_sym___asm] = ACTIONS(2823), - [sym_number_literal] = ACTIONS(2825), - [anon_sym_L_SQUOTE] = ACTIONS(2825), - [anon_sym_u_SQUOTE] = ACTIONS(2825), - [anon_sym_U_SQUOTE] = ACTIONS(2825), - [anon_sym_u8_SQUOTE] = ACTIONS(2825), - [anon_sym_SQUOTE] = ACTIONS(2825), - [anon_sym_L_DQUOTE] = ACTIONS(2825), - [anon_sym_u_DQUOTE] = ACTIONS(2825), - [anon_sym_U_DQUOTE] = ACTIONS(2825), - [anon_sym_u8_DQUOTE] = ACTIONS(2825), - [anon_sym_DQUOTE] = ACTIONS(2825), - [sym_true] = ACTIONS(2823), - [sym_false] = ACTIONS(2823), - [anon_sym_NULL] = ACTIONS(2823), - [anon_sym_nullptr] = ACTIONS(2823), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2823), - [anon_sym_decltype] = ACTIONS(2823), - [anon_sym_explicit] = ACTIONS(2823), - [anon_sym_typename] = ACTIONS(2823), - [anon_sym_template] = ACTIONS(2823), - [anon_sym_operator] = ACTIONS(2823), - [anon_sym_try] = ACTIONS(2823), - [anon_sym_delete] = ACTIONS(2823), - [anon_sym_throw] = ACTIONS(2823), - [anon_sym_namespace] = ACTIONS(2823), - [anon_sym_static_assert] = ACTIONS(2823), - [anon_sym_concept] = ACTIONS(2823), - [anon_sym_co_return] = ACTIONS(2823), - [anon_sym_co_yield] = ACTIONS(2823), - [anon_sym_R_DQUOTE] = ACTIONS(2825), - [anon_sym_LR_DQUOTE] = ACTIONS(2825), - [anon_sym_uR_DQUOTE] = ACTIONS(2825), - [anon_sym_UR_DQUOTE] = ACTIONS(2825), - [anon_sym_u8R_DQUOTE] = ACTIONS(2825), - [anon_sym_co_await] = ACTIONS(2823), - [anon_sym_new] = ACTIONS(2823), - [anon_sym_requires] = ACTIONS(2823), - [sym_this] = ACTIONS(2823), + [ts_builtin_sym_end] = ACTIONS(3126), + [sym_identifier] = ACTIONS(3124), + [aux_sym_preproc_include_token1] = ACTIONS(3124), + [aux_sym_preproc_def_token1] = ACTIONS(3124), + [aux_sym_preproc_if_token1] = ACTIONS(3124), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3124), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3124), + [sym_preproc_directive] = ACTIONS(3124), + [anon_sym_LPAREN2] = ACTIONS(3126), + [anon_sym_BANG] = ACTIONS(3126), + [anon_sym_TILDE] = ACTIONS(3126), + [anon_sym_DASH] = ACTIONS(3124), + [anon_sym_PLUS] = ACTIONS(3124), + [anon_sym_STAR] = ACTIONS(3126), + [anon_sym_AMP_AMP] = ACTIONS(3126), + [anon_sym_AMP] = ACTIONS(3124), + [anon_sym_SEMI] = ACTIONS(3126), + [anon_sym___extension__] = ACTIONS(3124), + [anon_sym_typedef] = ACTIONS(3124), + [anon_sym_virtual] = ACTIONS(3124), + [anon_sym_extern] = ACTIONS(3124), + [anon_sym___attribute__] = ACTIONS(3124), + [anon_sym___attribute] = ACTIONS(3124), + [anon_sym_using] = ACTIONS(3124), + [anon_sym_COLON_COLON] = ACTIONS(3126), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3126), + [anon_sym___declspec] = ACTIONS(3124), + [anon_sym___based] = ACTIONS(3124), + [anon_sym___cdecl] = ACTIONS(3124), + [anon_sym___clrcall] = ACTIONS(3124), + [anon_sym___stdcall] = ACTIONS(3124), + [anon_sym___fastcall] = ACTIONS(3124), + [anon_sym___thiscall] = ACTIONS(3124), + [anon_sym___vectorcall] = ACTIONS(3124), + [anon_sym_LBRACE] = ACTIONS(3126), + [anon_sym_signed] = ACTIONS(3124), + [anon_sym_unsigned] = ACTIONS(3124), + [anon_sym_long] = ACTIONS(3124), + [anon_sym_short] = ACTIONS(3124), + [anon_sym_LBRACK] = ACTIONS(3124), + [anon_sym_static] = ACTIONS(3124), + [anon_sym_register] = ACTIONS(3124), + [anon_sym_inline] = ACTIONS(3124), + [anon_sym___inline] = ACTIONS(3124), + [anon_sym___inline__] = ACTIONS(3124), + [anon_sym___forceinline] = ACTIONS(3124), + [anon_sym_thread_local] = ACTIONS(3124), + [anon_sym___thread] = ACTIONS(3124), + [anon_sym_const] = ACTIONS(3124), + [anon_sym_constexpr] = ACTIONS(3124), + [anon_sym_volatile] = ACTIONS(3124), + [anon_sym_restrict] = ACTIONS(3124), + [anon_sym___restrict__] = ACTIONS(3124), + [anon_sym__Atomic] = ACTIONS(3124), + [anon_sym__Noreturn] = ACTIONS(3124), + [anon_sym_noreturn] = ACTIONS(3124), + [anon_sym__Nonnull] = ACTIONS(3124), + [anon_sym_mutable] = ACTIONS(3124), + [anon_sym_constinit] = ACTIONS(3124), + [anon_sym_consteval] = ACTIONS(3124), + [anon_sym_alignas] = ACTIONS(3124), + [anon_sym__Alignas] = ACTIONS(3124), + [sym_primitive_type] = ACTIONS(3124), + [anon_sym_enum] = ACTIONS(3124), + [anon_sym_class] = ACTIONS(3124), + [anon_sym_struct] = ACTIONS(3124), + [anon_sym_union] = ACTIONS(3124), + [anon_sym_if] = ACTIONS(3124), + [anon_sym_switch] = ACTIONS(3124), + [anon_sym_case] = ACTIONS(3124), + [anon_sym_default] = ACTIONS(3124), + [anon_sym_while] = ACTIONS(3124), + [anon_sym_do] = ACTIONS(3124), + [anon_sym_for] = ACTIONS(3124), + [anon_sym_return] = ACTIONS(3124), + [anon_sym_break] = ACTIONS(3124), + [anon_sym_continue] = ACTIONS(3124), + [anon_sym_goto] = ACTIONS(3124), + [anon_sym_not] = ACTIONS(3124), + [anon_sym_compl] = ACTIONS(3124), + [anon_sym_DASH_DASH] = ACTIONS(3126), + [anon_sym_PLUS_PLUS] = ACTIONS(3126), + [anon_sym_sizeof] = ACTIONS(3124), + [anon_sym___alignof__] = ACTIONS(3124), + [anon_sym___alignof] = ACTIONS(3124), + [anon_sym__alignof] = ACTIONS(3124), + [anon_sym_alignof] = ACTIONS(3124), + [anon_sym__Alignof] = ACTIONS(3124), + [anon_sym_offsetof] = ACTIONS(3124), + [anon_sym__Generic] = ACTIONS(3124), + [anon_sym_asm] = ACTIONS(3124), + [anon_sym___asm__] = ACTIONS(3124), + [anon_sym___asm] = ACTIONS(3124), + [sym_number_literal] = ACTIONS(3126), + [anon_sym_L_SQUOTE] = ACTIONS(3126), + [anon_sym_u_SQUOTE] = ACTIONS(3126), + [anon_sym_U_SQUOTE] = ACTIONS(3126), + [anon_sym_u8_SQUOTE] = ACTIONS(3126), + [anon_sym_SQUOTE] = ACTIONS(3126), + [anon_sym_L_DQUOTE] = ACTIONS(3126), + [anon_sym_u_DQUOTE] = ACTIONS(3126), + [anon_sym_U_DQUOTE] = ACTIONS(3126), + [anon_sym_u8_DQUOTE] = ACTIONS(3126), + [anon_sym_DQUOTE] = ACTIONS(3126), + [sym_true] = ACTIONS(3124), + [sym_false] = ACTIONS(3124), + [anon_sym_NULL] = ACTIONS(3124), + [anon_sym_nullptr] = ACTIONS(3124), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3124), + [anon_sym_decltype] = ACTIONS(3124), + [anon_sym_explicit] = ACTIONS(3124), + [anon_sym_typename] = ACTIONS(3124), + [anon_sym_export] = ACTIONS(3124), + [anon_sym_module] = ACTIONS(3124), + [anon_sym_import] = ACTIONS(3124), + [anon_sym_template] = ACTIONS(3124), + [anon_sym_operator] = ACTIONS(3124), + [anon_sym_try] = ACTIONS(3124), + [anon_sym_delete] = ACTIONS(3124), + [anon_sym_throw] = ACTIONS(3124), + [anon_sym_namespace] = ACTIONS(3124), + [anon_sym_static_assert] = ACTIONS(3124), + [anon_sym_concept] = ACTIONS(3124), + [anon_sym_co_return] = ACTIONS(3124), + [anon_sym_co_yield] = ACTIONS(3124), + [anon_sym_R_DQUOTE] = ACTIONS(3126), + [anon_sym_LR_DQUOTE] = ACTIONS(3126), + [anon_sym_uR_DQUOTE] = ACTIONS(3126), + [anon_sym_UR_DQUOTE] = ACTIONS(3126), + [anon_sym_u8R_DQUOTE] = ACTIONS(3126), + [anon_sym_co_await] = ACTIONS(3124), + [anon_sym_new] = ACTIONS(3124), + [anon_sym_requires] = ACTIONS(3124), + [sym_this] = ACTIONS(3124), }, [655] = { - [sym_identifier] = ACTIONS(2855), - [aux_sym_preproc_include_token1] = ACTIONS(2855), - [aux_sym_preproc_def_token1] = ACTIONS(2855), - [aux_sym_preproc_if_token1] = ACTIONS(2855), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2855), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2855), - [sym_preproc_directive] = ACTIONS(2855), - [anon_sym_LPAREN2] = ACTIONS(2857), - [anon_sym_BANG] = ACTIONS(2857), - [anon_sym_TILDE] = ACTIONS(2857), - [anon_sym_DASH] = ACTIONS(2855), - [anon_sym_PLUS] = ACTIONS(2855), - [anon_sym_STAR] = ACTIONS(2857), - [anon_sym_AMP_AMP] = ACTIONS(2857), - [anon_sym_AMP] = ACTIONS(2855), - [anon_sym_SEMI] = ACTIONS(2857), - [anon_sym___extension__] = ACTIONS(2855), - [anon_sym_typedef] = ACTIONS(2855), - [anon_sym_virtual] = ACTIONS(2855), - [anon_sym_extern] = ACTIONS(2855), - [anon_sym___attribute__] = ACTIONS(2855), - [anon_sym___attribute] = ACTIONS(2855), - [anon_sym_using] = ACTIONS(2855), - [anon_sym_COLON_COLON] = ACTIONS(2857), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2857), - [anon_sym___declspec] = ACTIONS(2855), - [anon_sym___based] = ACTIONS(2855), - [anon_sym___cdecl] = ACTIONS(2855), - [anon_sym___clrcall] = ACTIONS(2855), - [anon_sym___stdcall] = ACTIONS(2855), - [anon_sym___fastcall] = ACTIONS(2855), - [anon_sym___thiscall] = ACTIONS(2855), - [anon_sym___vectorcall] = ACTIONS(2855), - [anon_sym_LBRACE] = ACTIONS(2857), - [anon_sym_RBRACE] = ACTIONS(2857), - [anon_sym_signed] = ACTIONS(2855), - [anon_sym_unsigned] = ACTIONS(2855), - [anon_sym_long] = ACTIONS(2855), - [anon_sym_short] = ACTIONS(2855), - [anon_sym_LBRACK] = ACTIONS(2855), - [anon_sym_static] = ACTIONS(2855), - [anon_sym_register] = ACTIONS(2855), - [anon_sym_inline] = ACTIONS(2855), - [anon_sym___inline] = ACTIONS(2855), - [anon_sym___inline__] = ACTIONS(2855), - [anon_sym___forceinline] = ACTIONS(2855), - [anon_sym_thread_local] = ACTIONS(2855), - [anon_sym___thread] = ACTIONS(2855), - [anon_sym_const] = ACTIONS(2855), - [anon_sym_constexpr] = ACTIONS(2855), - [anon_sym_volatile] = ACTIONS(2855), - [anon_sym_restrict] = ACTIONS(2855), - [anon_sym___restrict__] = ACTIONS(2855), - [anon_sym__Atomic] = ACTIONS(2855), - [anon_sym__Noreturn] = ACTIONS(2855), - [anon_sym_noreturn] = ACTIONS(2855), - [anon_sym__Nonnull] = ACTIONS(2855), - [anon_sym_mutable] = ACTIONS(2855), - [anon_sym_constinit] = ACTIONS(2855), - [anon_sym_consteval] = ACTIONS(2855), - [anon_sym_alignas] = ACTIONS(2855), - [anon_sym__Alignas] = ACTIONS(2855), - [sym_primitive_type] = ACTIONS(2855), - [anon_sym_enum] = ACTIONS(2855), - [anon_sym_class] = ACTIONS(2855), - [anon_sym_struct] = ACTIONS(2855), - [anon_sym_union] = ACTIONS(2855), - [anon_sym_if] = ACTIONS(2855), - [anon_sym_switch] = ACTIONS(2855), - [anon_sym_case] = ACTIONS(2855), - [anon_sym_default] = ACTIONS(2855), - [anon_sym_while] = ACTIONS(2855), - [anon_sym_do] = ACTIONS(2855), - [anon_sym_for] = ACTIONS(2855), - [anon_sym_return] = ACTIONS(2855), - [anon_sym_break] = ACTIONS(2855), - [anon_sym_continue] = ACTIONS(2855), - [anon_sym_goto] = ACTIONS(2855), - [anon_sym___try] = ACTIONS(2855), - [anon_sym___leave] = ACTIONS(2855), - [anon_sym_not] = ACTIONS(2855), - [anon_sym_compl] = ACTIONS(2855), - [anon_sym_DASH_DASH] = ACTIONS(2857), - [anon_sym_PLUS_PLUS] = ACTIONS(2857), - [anon_sym_sizeof] = ACTIONS(2855), - [anon_sym___alignof__] = ACTIONS(2855), - [anon_sym___alignof] = ACTIONS(2855), - [anon_sym__alignof] = ACTIONS(2855), - [anon_sym_alignof] = ACTIONS(2855), - [anon_sym__Alignof] = ACTIONS(2855), - [anon_sym_offsetof] = ACTIONS(2855), - [anon_sym__Generic] = ACTIONS(2855), - [anon_sym_asm] = ACTIONS(2855), - [anon_sym___asm__] = ACTIONS(2855), - [anon_sym___asm] = ACTIONS(2855), - [sym_number_literal] = ACTIONS(2857), - [anon_sym_L_SQUOTE] = ACTIONS(2857), - [anon_sym_u_SQUOTE] = ACTIONS(2857), - [anon_sym_U_SQUOTE] = ACTIONS(2857), - [anon_sym_u8_SQUOTE] = ACTIONS(2857), - [anon_sym_SQUOTE] = ACTIONS(2857), - [anon_sym_L_DQUOTE] = ACTIONS(2857), - [anon_sym_u_DQUOTE] = ACTIONS(2857), - [anon_sym_U_DQUOTE] = ACTIONS(2857), - [anon_sym_u8_DQUOTE] = ACTIONS(2857), - [anon_sym_DQUOTE] = ACTIONS(2857), - [sym_true] = ACTIONS(2855), - [sym_false] = ACTIONS(2855), - [anon_sym_NULL] = ACTIONS(2855), - [anon_sym_nullptr] = ACTIONS(2855), + [sym_identifier] = ACTIONS(2703), + [aux_sym_preproc_include_token1] = ACTIONS(2703), + [aux_sym_preproc_def_token1] = ACTIONS(2703), + [aux_sym_preproc_if_token1] = ACTIONS(2703), + [aux_sym_preproc_if_token2] = ACTIONS(2703), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2703), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2703), + [sym_preproc_directive] = ACTIONS(2703), + [anon_sym_LPAREN2] = ACTIONS(2705), + [anon_sym_BANG] = ACTIONS(2705), + [anon_sym_TILDE] = ACTIONS(2705), + [anon_sym_DASH] = ACTIONS(2703), + [anon_sym_PLUS] = ACTIONS(2703), + [anon_sym_STAR] = ACTIONS(2705), + [anon_sym_AMP_AMP] = ACTIONS(2705), + [anon_sym_AMP] = ACTIONS(2703), + [anon_sym_SEMI] = ACTIONS(2705), + [anon_sym___extension__] = ACTIONS(2703), + [anon_sym_typedef] = ACTIONS(2703), + [anon_sym_virtual] = ACTIONS(2703), + [anon_sym_extern] = ACTIONS(2703), + [anon_sym___attribute__] = ACTIONS(2703), + [anon_sym___attribute] = ACTIONS(2703), + [anon_sym_using] = ACTIONS(2703), + [anon_sym_COLON_COLON] = ACTIONS(2705), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2705), + [anon_sym___declspec] = ACTIONS(2703), + [anon_sym___based] = ACTIONS(2703), + [anon_sym___cdecl] = ACTIONS(2703), + [anon_sym___clrcall] = ACTIONS(2703), + [anon_sym___stdcall] = ACTIONS(2703), + [anon_sym___fastcall] = ACTIONS(2703), + [anon_sym___thiscall] = ACTIONS(2703), + [anon_sym___vectorcall] = ACTIONS(2703), + [anon_sym_LBRACE] = ACTIONS(2705), + [anon_sym_signed] = ACTIONS(2703), + [anon_sym_unsigned] = ACTIONS(2703), + [anon_sym_long] = ACTIONS(2703), + [anon_sym_short] = ACTIONS(2703), + [anon_sym_LBRACK] = ACTIONS(2703), + [anon_sym_static] = ACTIONS(2703), + [anon_sym_register] = ACTIONS(2703), + [anon_sym_inline] = ACTIONS(2703), + [anon_sym___inline] = ACTIONS(2703), + [anon_sym___inline__] = ACTIONS(2703), + [anon_sym___forceinline] = ACTIONS(2703), + [anon_sym_thread_local] = ACTIONS(2703), + [anon_sym___thread] = ACTIONS(2703), + [anon_sym_const] = ACTIONS(2703), + [anon_sym_constexpr] = ACTIONS(2703), + [anon_sym_volatile] = ACTIONS(2703), + [anon_sym_restrict] = ACTIONS(2703), + [anon_sym___restrict__] = ACTIONS(2703), + [anon_sym__Atomic] = ACTIONS(2703), + [anon_sym__Noreturn] = ACTIONS(2703), + [anon_sym_noreturn] = ACTIONS(2703), + [anon_sym__Nonnull] = ACTIONS(2703), + [anon_sym_mutable] = ACTIONS(2703), + [anon_sym_constinit] = ACTIONS(2703), + [anon_sym_consteval] = ACTIONS(2703), + [anon_sym_alignas] = ACTIONS(2703), + [anon_sym__Alignas] = ACTIONS(2703), + [sym_primitive_type] = ACTIONS(2703), + [anon_sym_enum] = ACTIONS(2703), + [anon_sym_class] = ACTIONS(2703), + [anon_sym_struct] = ACTIONS(2703), + [anon_sym_union] = ACTIONS(2703), + [anon_sym_if] = ACTIONS(2703), + [anon_sym_else] = ACTIONS(2703), + [anon_sym_switch] = ACTIONS(2703), + [anon_sym_case] = ACTIONS(2703), + [anon_sym_default] = ACTIONS(2703), + [anon_sym_while] = ACTIONS(2703), + [anon_sym_do] = ACTIONS(2703), + [anon_sym_for] = ACTIONS(2703), + [anon_sym_return] = ACTIONS(2703), + [anon_sym_break] = ACTIONS(2703), + [anon_sym_continue] = ACTIONS(2703), + [anon_sym_goto] = ACTIONS(2703), + [anon_sym___try] = ACTIONS(2703), + [anon_sym___leave] = ACTIONS(2703), + [anon_sym_not] = ACTIONS(2703), + [anon_sym_compl] = ACTIONS(2703), + [anon_sym_DASH_DASH] = ACTIONS(2705), + [anon_sym_PLUS_PLUS] = ACTIONS(2705), + [anon_sym_sizeof] = ACTIONS(2703), + [anon_sym___alignof__] = ACTIONS(2703), + [anon_sym___alignof] = ACTIONS(2703), + [anon_sym__alignof] = ACTIONS(2703), + [anon_sym_alignof] = ACTIONS(2703), + [anon_sym__Alignof] = ACTIONS(2703), + [anon_sym_offsetof] = ACTIONS(2703), + [anon_sym__Generic] = ACTIONS(2703), + [anon_sym_asm] = ACTIONS(2703), + [anon_sym___asm__] = ACTIONS(2703), + [anon_sym___asm] = ACTIONS(2703), + [sym_number_literal] = ACTIONS(2705), + [anon_sym_L_SQUOTE] = ACTIONS(2705), + [anon_sym_u_SQUOTE] = ACTIONS(2705), + [anon_sym_U_SQUOTE] = ACTIONS(2705), + [anon_sym_u8_SQUOTE] = ACTIONS(2705), + [anon_sym_SQUOTE] = ACTIONS(2705), + [anon_sym_L_DQUOTE] = ACTIONS(2705), + [anon_sym_u_DQUOTE] = ACTIONS(2705), + [anon_sym_U_DQUOTE] = ACTIONS(2705), + [anon_sym_u8_DQUOTE] = ACTIONS(2705), + [anon_sym_DQUOTE] = ACTIONS(2705), + [sym_true] = ACTIONS(2703), + [sym_false] = ACTIONS(2703), + [anon_sym_NULL] = ACTIONS(2703), + [anon_sym_nullptr] = ACTIONS(2703), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2855), - [anon_sym_decltype] = ACTIONS(2855), - [anon_sym_explicit] = ACTIONS(2855), - [anon_sym_typename] = ACTIONS(2855), - [anon_sym_template] = ACTIONS(2855), - [anon_sym_operator] = ACTIONS(2855), - [anon_sym_try] = ACTIONS(2855), - [anon_sym_delete] = ACTIONS(2855), - [anon_sym_throw] = ACTIONS(2855), - [anon_sym_namespace] = ACTIONS(2855), - [anon_sym_static_assert] = ACTIONS(2855), - [anon_sym_concept] = ACTIONS(2855), - [anon_sym_co_return] = ACTIONS(2855), - [anon_sym_co_yield] = ACTIONS(2855), - [anon_sym_R_DQUOTE] = ACTIONS(2857), - [anon_sym_LR_DQUOTE] = ACTIONS(2857), - [anon_sym_uR_DQUOTE] = ACTIONS(2857), - [anon_sym_UR_DQUOTE] = ACTIONS(2857), - [anon_sym_u8R_DQUOTE] = ACTIONS(2857), - [anon_sym_co_await] = ACTIONS(2855), - [anon_sym_new] = ACTIONS(2855), - [anon_sym_requires] = ACTIONS(2855), - [sym_this] = ACTIONS(2855), + [sym_auto] = ACTIONS(2703), + [anon_sym_decltype] = ACTIONS(2703), + [anon_sym_explicit] = ACTIONS(2703), + [anon_sym_typename] = ACTIONS(2703), + [anon_sym_template] = ACTIONS(2703), + [anon_sym_operator] = ACTIONS(2703), + [anon_sym_try] = ACTIONS(2703), + [anon_sym_delete] = ACTIONS(2703), + [anon_sym_throw] = ACTIONS(2703), + [anon_sym_namespace] = ACTIONS(2703), + [anon_sym_static_assert] = ACTIONS(2703), + [anon_sym_concept] = ACTIONS(2703), + [anon_sym_co_return] = ACTIONS(2703), + [anon_sym_co_yield] = ACTIONS(2703), + [anon_sym_R_DQUOTE] = ACTIONS(2705), + [anon_sym_LR_DQUOTE] = ACTIONS(2705), + [anon_sym_uR_DQUOTE] = ACTIONS(2705), + [anon_sym_UR_DQUOTE] = ACTIONS(2705), + [anon_sym_u8R_DQUOTE] = ACTIONS(2705), + [anon_sym_co_await] = ACTIONS(2703), + [anon_sym_new] = ACTIONS(2703), + [anon_sym_requires] = ACTIONS(2703), + [sym_this] = ACTIONS(2703), }, [656] = { - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym___attribute] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_RBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym__Nonnull] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym__Alignas] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [anon_sym___asm] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), - }, - [657] = { - [sym_identifier] = ACTIONS(2831), - [aux_sym_preproc_include_token1] = ACTIONS(2831), - [aux_sym_preproc_def_token1] = ACTIONS(2831), - [aux_sym_preproc_if_token1] = ACTIONS(2831), - [aux_sym_preproc_if_token2] = ACTIONS(2831), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2831), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2831), - [sym_preproc_directive] = ACTIONS(2831), - [anon_sym_LPAREN2] = ACTIONS(2833), - [anon_sym_BANG] = ACTIONS(2833), - [anon_sym_TILDE] = ACTIONS(2833), - [anon_sym_DASH] = ACTIONS(2831), - [anon_sym_PLUS] = ACTIONS(2831), - [anon_sym_STAR] = ACTIONS(2833), - [anon_sym_AMP_AMP] = ACTIONS(2833), - [anon_sym_AMP] = ACTIONS(2831), - [anon_sym_SEMI] = ACTIONS(2833), - [anon_sym___extension__] = ACTIONS(2831), - [anon_sym_typedef] = ACTIONS(2831), - [anon_sym_virtual] = ACTIONS(2831), - [anon_sym_extern] = ACTIONS(2831), - [anon_sym___attribute__] = ACTIONS(2831), - [anon_sym___attribute] = ACTIONS(2831), - [anon_sym_using] = ACTIONS(2831), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2833), - [anon_sym___declspec] = ACTIONS(2831), - [anon_sym___based] = ACTIONS(2831), - [anon_sym___cdecl] = ACTIONS(2831), - [anon_sym___clrcall] = ACTIONS(2831), - [anon_sym___stdcall] = ACTIONS(2831), - [anon_sym___fastcall] = ACTIONS(2831), - [anon_sym___thiscall] = ACTIONS(2831), - [anon_sym___vectorcall] = ACTIONS(2831), - [anon_sym_LBRACE] = ACTIONS(2833), - [anon_sym_signed] = ACTIONS(2831), - [anon_sym_unsigned] = ACTIONS(2831), - [anon_sym_long] = ACTIONS(2831), - [anon_sym_short] = ACTIONS(2831), - [anon_sym_LBRACK] = ACTIONS(2831), - [anon_sym_static] = ACTIONS(2831), - [anon_sym_register] = ACTIONS(2831), - [anon_sym_inline] = ACTIONS(2831), - [anon_sym___inline] = ACTIONS(2831), - [anon_sym___inline__] = ACTIONS(2831), - [anon_sym___forceinline] = ACTIONS(2831), - [anon_sym_thread_local] = ACTIONS(2831), - [anon_sym___thread] = ACTIONS(2831), - [anon_sym_const] = ACTIONS(2831), - [anon_sym_constexpr] = ACTIONS(2831), - [anon_sym_volatile] = ACTIONS(2831), - [anon_sym_restrict] = ACTIONS(2831), - [anon_sym___restrict__] = ACTIONS(2831), - [anon_sym__Atomic] = ACTIONS(2831), - [anon_sym__Noreturn] = ACTIONS(2831), - [anon_sym_noreturn] = ACTIONS(2831), - [anon_sym__Nonnull] = ACTIONS(2831), - [anon_sym_mutable] = ACTIONS(2831), - [anon_sym_constinit] = ACTIONS(2831), - [anon_sym_consteval] = ACTIONS(2831), - [anon_sym_alignas] = ACTIONS(2831), - [anon_sym__Alignas] = ACTIONS(2831), - [sym_primitive_type] = ACTIONS(2831), - [anon_sym_enum] = ACTIONS(2831), - [anon_sym_class] = ACTIONS(2831), - [anon_sym_struct] = ACTIONS(2831), - [anon_sym_union] = ACTIONS(2831), - [anon_sym_if] = ACTIONS(2831), - [anon_sym_switch] = ACTIONS(2831), - [anon_sym_case] = ACTIONS(2831), - [anon_sym_default] = ACTIONS(2831), - [anon_sym_while] = ACTIONS(2831), - [anon_sym_do] = ACTIONS(2831), - [anon_sym_for] = ACTIONS(2831), - [anon_sym_return] = ACTIONS(2831), - [anon_sym_break] = ACTIONS(2831), - [anon_sym_continue] = ACTIONS(2831), - [anon_sym_goto] = ACTIONS(2831), - [anon_sym___try] = ACTIONS(2831), - [anon_sym___leave] = ACTIONS(2831), - [anon_sym_not] = ACTIONS(2831), - [anon_sym_compl] = ACTIONS(2831), - [anon_sym_DASH_DASH] = ACTIONS(2833), - [anon_sym_PLUS_PLUS] = ACTIONS(2833), - [anon_sym_sizeof] = ACTIONS(2831), - [anon_sym___alignof__] = ACTIONS(2831), - [anon_sym___alignof] = ACTIONS(2831), - [anon_sym__alignof] = ACTIONS(2831), - [anon_sym_alignof] = ACTIONS(2831), - [anon_sym__Alignof] = ACTIONS(2831), - [anon_sym_offsetof] = ACTIONS(2831), - [anon_sym__Generic] = ACTIONS(2831), - [anon_sym_asm] = ACTIONS(2831), - [anon_sym___asm__] = ACTIONS(2831), - [anon_sym___asm] = ACTIONS(2831), - [sym_number_literal] = ACTIONS(2833), - [anon_sym_L_SQUOTE] = ACTIONS(2833), - [anon_sym_u_SQUOTE] = ACTIONS(2833), - [anon_sym_U_SQUOTE] = ACTIONS(2833), - [anon_sym_u8_SQUOTE] = ACTIONS(2833), - [anon_sym_SQUOTE] = ACTIONS(2833), - [anon_sym_L_DQUOTE] = ACTIONS(2833), - [anon_sym_u_DQUOTE] = ACTIONS(2833), - [anon_sym_U_DQUOTE] = ACTIONS(2833), - [anon_sym_u8_DQUOTE] = ACTIONS(2833), - [anon_sym_DQUOTE] = ACTIONS(2833), - [sym_true] = ACTIONS(2831), - [sym_false] = ACTIONS(2831), - [anon_sym_NULL] = ACTIONS(2831), - [anon_sym_nullptr] = ACTIONS(2831), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2831), - [anon_sym_decltype] = ACTIONS(2831), - [anon_sym_explicit] = ACTIONS(2831), - [anon_sym_typename] = ACTIONS(2831), - [anon_sym_template] = ACTIONS(2831), - [anon_sym_operator] = ACTIONS(2831), - [anon_sym_try] = ACTIONS(2831), - [anon_sym_delete] = ACTIONS(2831), - [anon_sym_throw] = ACTIONS(2831), - [anon_sym_namespace] = ACTIONS(2831), - [anon_sym_static_assert] = ACTIONS(2831), - [anon_sym_concept] = ACTIONS(2831), - [anon_sym_co_return] = ACTIONS(2831), - [anon_sym_co_yield] = ACTIONS(2831), - [anon_sym_R_DQUOTE] = ACTIONS(2833), - [anon_sym_LR_DQUOTE] = ACTIONS(2833), - [anon_sym_uR_DQUOTE] = ACTIONS(2833), - [anon_sym_UR_DQUOTE] = ACTIONS(2833), - [anon_sym_u8R_DQUOTE] = ACTIONS(2833), - [anon_sym_co_await] = ACTIONS(2831), - [anon_sym_new] = ACTIONS(2831), - [anon_sym_requires] = ACTIONS(2831), - [sym_this] = ACTIONS(2831), - }, - [658] = { - [sym_identifier] = ACTIONS(2835), - [aux_sym_preproc_include_token1] = ACTIONS(2835), - [aux_sym_preproc_def_token1] = ACTIONS(2835), - [aux_sym_preproc_if_token1] = ACTIONS(2835), - [aux_sym_preproc_if_token2] = ACTIONS(2835), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2835), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2835), - [sym_preproc_directive] = ACTIONS(2835), - [anon_sym_LPAREN2] = ACTIONS(2837), - [anon_sym_BANG] = ACTIONS(2837), - [anon_sym_TILDE] = ACTIONS(2837), - [anon_sym_DASH] = ACTIONS(2835), - [anon_sym_PLUS] = ACTIONS(2835), - [anon_sym_STAR] = ACTIONS(2837), - [anon_sym_AMP_AMP] = ACTIONS(2837), - [anon_sym_AMP] = ACTIONS(2835), - [anon_sym_SEMI] = ACTIONS(2837), - [anon_sym___extension__] = ACTIONS(2835), - [anon_sym_typedef] = ACTIONS(2835), - [anon_sym_virtual] = ACTIONS(2835), - [anon_sym_extern] = ACTIONS(2835), - [anon_sym___attribute__] = ACTIONS(2835), - [anon_sym___attribute] = ACTIONS(2835), - [anon_sym_using] = ACTIONS(2835), - [anon_sym_COLON_COLON] = ACTIONS(2837), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2837), - [anon_sym___declspec] = ACTIONS(2835), - [anon_sym___based] = ACTIONS(2835), - [anon_sym___cdecl] = ACTIONS(2835), - [anon_sym___clrcall] = ACTIONS(2835), - [anon_sym___stdcall] = ACTIONS(2835), - [anon_sym___fastcall] = ACTIONS(2835), - [anon_sym___thiscall] = ACTIONS(2835), - [anon_sym___vectorcall] = ACTIONS(2835), - [anon_sym_LBRACE] = ACTIONS(2837), - [anon_sym_signed] = ACTIONS(2835), - [anon_sym_unsigned] = ACTIONS(2835), - [anon_sym_long] = ACTIONS(2835), - [anon_sym_short] = ACTIONS(2835), - [anon_sym_LBRACK] = ACTIONS(2835), - [anon_sym_static] = ACTIONS(2835), - [anon_sym_register] = ACTIONS(2835), - [anon_sym_inline] = ACTIONS(2835), - [anon_sym___inline] = ACTIONS(2835), - [anon_sym___inline__] = ACTIONS(2835), - [anon_sym___forceinline] = ACTIONS(2835), - [anon_sym_thread_local] = ACTIONS(2835), - [anon_sym___thread] = ACTIONS(2835), - [anon_sym_const] = ACTIONS(2835), - [anon_sym_constexpr] = ACTIONS(2835), - [anon_sym_volatile] = ACTIONS(2835), - [anon_sym_restrict] = ACTIONS(2835), - [anon_sym___restrict__] = ACTIONS(2835), - [anon_sym__Atomic] = ACTIONS(2835), - [anon_sym__Noreturn] = ACTIONS(2835), - [anon_sym_noreturn] = ACTIONS(2835), - [anon_sym__Nonnull] = ACTIONS(2835), - [anon_sym_mutable] = ACTIONS(2835), - [anon_sym_constinit] = ACTIONS(2835), - [anon_sym_consteval] = ACTIONS(2835), - [anon_sym_alignas] = ACTIONS(2835), - [anon_sym__Alignas] = ACTIONS(2835), - [sym_primitive_type] = ACTIONS(2835), - [anon_sym_enum] = ACTIONS(2835), - [anon_sym_class] = ACTIONS(2835), - [anon_sym_struct] = ACTIONS(2835), - [anon_sym_union] = ACTIONS(2835), - [anon_sym_if] = ACTIONS(2835), - [anon_sym_switch] = ACTIONS(2835), - [anon_sym_case] = ACTIONS(2835), - [anon_sym_default] = ACTIONS(2835), - [anon_sym_while] = ACTIONS(2835), - [anon_sym_do] = ACTIONS(2835), - [anon_sym_for] = ACTIONS(2835), - [anon_sym_return] = ACTIONS(2835), - [anon_sym_break] = ACTIONS(2835), - [anon_sym_continue] = ACTIONS(2835), - [anon_sym_goto] = ACTIONS(2835), - [anon_sym___try] = ACTIONS(2835), - [anon_sym___leave] = ACTIONS(2835), - [anon_sym_not] = ACTIONS(2835), - [anon_sym_compl] = ACTIONS(2835), - [anon_sym_DASH_DASH] = ACTIONS(2837), - [anon_sym_PLUS_PLUS] = ACTIONS(2837), - [anon_sym_sizeof] = ACTIONS(2835), - [anon_sym___alignof__] = ACTIONS(2835), - [anon_sym___alignof] = ACTIONS(2835), - [anon_sym__alignof] = ACTIONS(2835), - [anon_sym_alignof] = ACTIONS(2835), - [anon_sym__Alignof] = ACTIONS(2835), - [anon_sym_offsetof] = ACTIONS(2835), - [anon_sym__Generic] = ACTIONS(2835), - [anon_sym_asm] = ACTIONS(2835), - [anon_sym___asm__] = ACTIONS(2835), - [anon_sym___asm] = ACTIONS(2835), - [sym_number_literal] = ACTIONS(2837), - [anon_sym_L_SQUOTE] = ACTIONS(2837), - [anon_sym_u_SQUOTE] = ACTIONS(2837), - [anon_sym_U_SQUOTE] = ACTIONS(2837), - [anon_sym_u8_SQUOTE] = ACTIONS(2837), - [anon_sym_SQUOTE] = ACTIONS(2837), - [anon_sym_L_DQUOTE] = ACTIONS(2837), - [anon_sym_u_DQUOTE] = ACTIONS(2837), - [anon_sym_U_DQUOTE] = ACTIONS(2837), - [anon_sym_u8_DQUOTE] = ACTIONS(2837), - [anon_sym_DQUOTE] = ACTIONS(2837), - [sym_true] = ACTIONS(2835), - [sym_false] = ACTIONS(2835), - [anon_sym_NULL] = ACTIONS(2835), - [anon_sym_nullptr] = ACTIONS(2835), + [sym_identifier] = ACTIONS(2759), + [aux_sym_preproc_include_token1] = ACTIONS(2759), + [aux_sym_preproc_def_token1] = ACTIONS(2759), + [aux_sym_preproc_if_token1] = ACTIONS(2759), + [aux_sym_preproc_if_token2] = ACTIONS(2759), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2759), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2759), + [sym_preproc_directive] = ACTIONS(2759), + [anon_sym_LPAREN2] = ACTIONS(2761), + [anon_sym_BANG] = ACTIONS(2761), + [anon_sym_TILDE] = ACTIONS(2761), + [anon_sym_DASH] = ACTIONS(2759), + [anon_sym_PLUS] = ACTIONS(2759), + [anon_sym_STAR] = ACTIONS(2761), + [anon_sym_AMP_AMP] = ACTIONS(2761), + [anon_sym_AMP] = ACTIONS(2759), + [anon_sym_SEMI] = ACTIONS(2761), + [anon_sym___extension__] = ACTIONS(2759), + [anon_sym_typedef] = ACTIONS(2759), + [anon_sym_virtual] = ACTIONS(2759), + [anon_sym_extern] = ACTIONS(2759), + [anon_sym___attribute__] = ACTIONS(2759), + [anon_sym___attribute] = ACTIONS(2759), + [anon_sym_using] = ACTIONS(2759), + [anon_sym_COLON_COLON] = ACTIONS(2761), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2761), + [anon_sym___declspec] = ACTIONS(2759), + [anon_sym___based] = ACTIONS(2759), + [anon_sym___cdecl] = ACTIONS(2759), + [anon_sym___clrcall] = ACTIONS(2759), + [anon_sym___stdcall] = ACTIONS(2759), + [anon_sym___fastcall] = ACTIONS(2759), + [anon_sym___thiscall] = ACTIONS(2759), + [anon_sym___vectorcall] = ACTIONS(2759), + [anon_sym_LBRACE] = ACTIONS(2761), + [anon_sym_signed] = ACTIONS(2759), + [anon_sym_unsigned] = ACTIONS(2759), + [anon_sym_long] = ACTIONS(2759), + [anon_sym_short] = ACTIONS(2759), + [anon_sym_LBRACK] = ACTIONS(2759), + [anon_sym_static] = ACTIONS(2759), + [anon_sym_register] = ACTIONS(2759), + [anon_sym_inline] = ACTIONS(2759), + [anon_sym___inline] = ACTIONS(2759), + [anon_sym___inline__] = ACTIONS(2759), + [anon_sym___forceinline] = ACTIONS(2759), + [anon_sym_thread_local] = ACTIONS(2759), + [anon_sym___thread] = ACTIONS(2759), + [anon_sym_const] = ACTIONS(2759), + [anon_sym_constexpr] = ACTIONS(2759), + [anon_sym_volatile] = ACTIONS(2759), + [anon_sym_restrict] = ACTIONS(2759), + [anon_sym___restrict__] = ACTIONS(2759), + [anon_sym__Atomic] = ACTIONS(2759), + [anon_sym__Noreturn] = ACTIONS(2759), + [anon_sym_noreturn] = ACTIONS(2759), + [anon_sym__Nonnull] = ACTIONS(2759), + [anon_sym_mutable] = ACTIONS(2759), + [anon_sym_constinit] = ACTIONS(2759), + [anon_sym_consteval] = ACTIONS(2759), + [anon_sym_alignas] = ACTIONS(2759), + [anon_sym__Alignas] = ACTIONS(2759), + [sym_primitive_type] = ACTIONS(2759), + [anon_sym_enum] = ACTIONS(2759), + [anon_sym_class] = ACTIONS(2759), + [anon_sym_struct] = ACTIONS(2759), + [anon_sym_union] = ACTIONS(2759), + [anon_sym_if] = ACTIONS(2759), + [anon_sym_else] = ACTIONS(2759), + [anon_sym_switch] = ACTIONS(2759), + [anon_sym_case] = ACTIONS(2759), + [anon_sym_default] = ACTIONS(2759), + [anon_sym_while] = ACTIONS(2759), + [anon_sym_do] = ACTIONS(2759), + [anon_sym_for] = ACTIONS(2759), + [anon_sym_return] = ACTIONS(2759), + [anon_sym_break] = ACTIONS(2759), + [anon_sym_continue] = ACTIONS(2759), + [anon_sym_goto] = ACTIONS(2759), + [anon_sym___try] = ACTIONS(2759), + [anon_sym___leave] = ACTIONS(2759), + [anon_sym_not] = ACTIONS(2759), + [anon_sym_compl] = ACTIONS(2759), + [anon_sym_DASH_DASH] = ACTIONS(2761), + [anon_sym_PLUS_PLUS] = ACTIONS(2761), + [anon_sym_sizeof] = ACTIONS(2759), + [anon_sym___alignof__] = ACTIONS(2759), + [anon_sym___alignof] = ACTIONS(2759), + [anon_sym__alignof] = ACTIONS(2759), + [anon_sym_alignof] = ACTIONS(2759), + [anon_sym__Alignof] = ACTIONS(2759), + [anon_sym_offsetof] = ACTIONS(2759), + [anon_sym__Generic] = ACTIONS(2759), + [anon_sym_asm] = ACTIONS(2759), + [anon_sym___asm__] = ACTIONS(2759), + [anon_sym___asm] = ACTIONS(2759), + [sym_number_literal] = ACTIONS(2761), + [anon_sym_L_SQUOTE] = ACTIONS(2761), + [anon_sym_u_SQUOTE] = ACTIONS(2761), + [anon_sym_U_SQUOTE] = ACTIONS(2761), + [anon_sym_u8_SQUOTE] = ACTIONS(2761), + [anon_sym_SQUOTE] = ACTIONS(2761), + [anon_sym_L_DQUOTE] = ACTIONS(2761), + [anon_sym_u_DQUOTE] = ACTIONS(2761), + [anon_sym_U_DQUOTE] = ACTIONS(2761), + [anon_sym_u8_DQUOTE] = ACTIONS(2761), + [anon_sym_DQUOTE] = ACTIONS(2761), + [sym_true] = ACTIONS(2759), + [sym_false] = ACTIONS(2759), + [anon_sym_NULL] = ACTIONS(2759), + [anon_sym_nullptr] = ACTIONS(2759), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2835), - [anon_sym_decltype] = ACTIONS(2835), - [anon_sym_explicit] = ACTIONS(2835), - [anon_sym_typename] = ACTIONS(2835), - [anon_sym_template] = ACTIONS(2835), - [anon_sym_operator] = ACTIONS(2835), - [anon_sym_try] = ACTIONS(2835), - [anon_sym_delete] = ACTIONS(2835), - [anon_sym_throw] = ACTIONS(2835), - [anon_sym_namespace] = ACTIONS(2835), - [anon_sym_static_assert] = ACTIONS(2835), - [anon_sym_concept] = ACTIONS(2835), - [anon_sym_co_return] = ACTIONS(2835), - [anon_sym_co_yield] = ACTIONS(2835), - [anon_sym_R_DQUOTE] = ACTIONS(2837), - [anon_sym_LR_DQUOTE] = ACTIONS(2837), - [anon_sym_uR_DQUOTE] = ACTIONS(2837), - [anon_sym_UR_DQUOTE] = ACTIONS(2837), - [anon_sym_u8R_DQUOTE] = ACTIONS(2837), - [anon_sym_co_await] = ACTIONS(2835), - [anon_sym_new] = ACTIONS(2835), - [anon_sym_requires] = ACTIONS(2835), - [sym_this] = ACTIONS(2835), + [sym_auto] = ACTIONS(2759), + [anon_sym_decltype] = ACTIONS(2759), + [anon_sym_explicit] = ACTIONS(2759), + [anon_sym_typename] = ACTIONS(2759), + [anon_sym_template] = ACTIONS(2759), + [anon_sym_operator] = ACTIONS(2759), + [anon_sym_try] = ACTIONS(2759), + [anon_sym_delete] = ACTIONS(2759), + [anon_sym_throw] = ACTIONS(2759), + [anon_sym_namespace] = ACTIONS(2759), + [anon_sym_static_assert] = ACTIONS(2759), + [anon_sym_concept] = ACTIONS(2759), + [anon_sym_co_return] = ACTIONS(2759), + [anon_sym_co_yield] = ACTIONS(2759), + [anon_sym_R_DQUOTE] = ACTIONS(2761), + [anon_sym_LR_DQUOTE] = ACTIONS(2761), + [anon_sym_uR_DQUOTE] = ACTIONS(2761), + [anon_sym_UR_DQUOTE] = ACTIONS(2761), + [anon_sym_u8R_DQUOTE] = ACTIONS(2761), + [anon_sym_co_await] = ACTIONS(2759), + [anon_sym_new] = ACTIONS(2759), + [anon_sym_requires] = ACTIONS(2759), + [sym_this] = ACTIONS(2759), }, - [659] = { - [sym_identifier] = ACTIONS(2839), - [aux_sym_preproc_include_token1] = ACTIONS(2839), - [aux_sym_preproc_def_token1] = ACTIONS(2839), - [aux_sym_preproc_if_token1] = ACTIONS(2839), - [aux_sym_preproc_if_token2] = ACTIONS(2839), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2839), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2839), - [sym_preproc_directive] = ACTIONS(2839), - [anon_sym_LPAREN2] = ACTIONS(2841), - [anon_sym_BANG] = ACTIONS(2841), - [anon_sym_TILDE] = ACTIONS(2841), - [anon_sym_DASH] = ACTIONS(2839), - [anon_sym_PLUS] = ACTIONS(2839), - [anon_sym_STAR] = ACTIONS(2841), - [anon_sym_AMP_AMP] = ACTIONS(2841), - [anon_sym_AMP] = ACTIONS(2839), - [anon_sym_SEMI] = ACTIONS(2841), - [anon_sym___extension__] = ACTIONS(2839), - [anon_sym_typedef] = ACTIONS(2839), - [anon_sym_virtual] = ACTIONS(2839), - [anon_sym_extern] = ACTIONS(2839), - [anon_sym___attribute__] = ACTIONS(2839), - [anon_sym___attribute] = ACTIONS(2839), - [anon_sym_using] = ACTIONS(2839), - [anon_sym_COLON_COLON] = ACTIONS(2841), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2841), - [anon_sym___declspec] = ACTIONS(2839), - [anon_sym___based] = ACTIONS(2839), - [anon_sym___cdecl] = ACTIONS(2839), - [anon_sym___clrcall] = ACTIONS(2839), - [anon_sym___stdcall] = ACTIONS(2839), - [anon_sym___fastcall] = ACTIONS(2839), - [anon_sym___thiscall] = ACTIONS(2839), - [anon_sym___vectorcall] = ACTIONS(2839), - [anon_sym_LBRACE] = ACTIONS(2841), - [anon_sym_signed] = ACTIONS(2839), - [anon_sym_unsigned] = ACTIONS(2839), - [anon_sym_long] = ACTIONS(2839), - [anon_sym_short] = ACTIONS(2839), - [anon_sym_LBRACK] = ACTIONS(2839), - [anon_sym_static] = ACTIONS(2839), - [anon_sym_register] = ACTIONS(2839), - [anon_sym_inline] = ACTIONS(2839), - [anon_sym___inline] = ACTIONS(2839), - [anon_sym___inline__] = ACTIONS(2839), - [anon_sym___forceinline] = ACTIONS(2839), - [anon_sym_thread_local] = ACTIONS(2839), - [anon_sym___thread] = ACTIONS(2839), - [anon_sym_const] = ACTIONS(2839), - [anon_sym_constexpr] = ACTIONS(2839), - [anon_sym_volatile] = ACTIONS(2839), - [anon_sym_restrict] = ACTIONS(2839), - [anon_sym___restrict__] = ACTIONS(2839), - [anon_sym__Atomic] = ACTIONS(2839), - [anon_sym__Noreturn] = ACTIONS(2839), - [anon_sym_noreturn] = ACTIONS(2839), - [anon_sym__Nonnull] = ACTIONS(2839), - [anon_sym_mutable] = ACTIONS(2839), - [anon_sym_constinit] = ACTIONS(2839), - [anon_sym_consteval] = ACTIONS(2839), - [anon_sym_alignas] = ACTIONS(2839), - [anon_sym__Alignas] = ACTIONS(2839), - [sym_primitive_type] = ACTIONS(2839), - [anon_sym_enum] = ACTIONS(2839), - [anon_sym_class] = ACTIONS(2839), - [anon_sym_struct] = ACTIONS(2839), - [anon_sym_union] = ACTIONS(2839), - [anon_sym_if] = ACTIONS(2839), - [anon_sym_switch] = ACTIONS(2839), - [anon_sym_case] = ACTIONS(2839), - [anon_sym_default] = ACTIONS(2839), - [anon_sym_while] = ACTIONS(2839), - [anon_sym_do] = ACTIONS(2839), - [anon_sym_for] = ACTIONS(2839), - [anon_sym_return] = ACTIONS(2839), - [anon_sym_break] = ACTIONS(2839), - [anon_sym_continue] = ACTIONS(2839), - [anon_sym_goto] = ACTIONS(2839), - [anon_sym___try] = ACTIONS(2839), - [anon_sym___leave] = ACTIONS(2839), - [anon_sym_not] = ACTIONS(2839), - [anon_sym_compl] = ACTIONS(2839), - [anon_sym_DASH_DASH] = ACTIONS(2841), - [anon_sym_PLUS_PLUS] = ACTIONS(2841), - [anon_sym_sizeof] = ACTIONS(2839), - [anon_sym___alignof__] = ACTIONS(2839), - [anon_sym___alignof] = ACTIONS(2839), - [anon_sym__alignof] = ACTIONS(2839), - [anon_sym_alignof] = ACTIONS(2839), - [anon_sym__Alignof] = ACTIONS(2839), - [anon_sym_offsetof] = ACTIONS(2839), - [anon_sym__Generic] = ACTIONS(2839), - [anon_sym_asm] = ACTIONS(2839), - [anon_sym___asm__] = ACTIONS(2839), - [anon_sym___asm] = ACTIONS(2839), - [sym_number_literal] = ACTIONS(2841), - [anon_sym_L_SQUOTE] = ACTIONS(2841), - [anon_sym_u_SQUOTE] = ACTIONS(2841), - [anon_sym_U_SQUOTE] = ACTIONS(2841), - [anon_sym_u8_SQUOTE] = ACTIONS(2841), - [anon_sym_SQUOTE] = ACTIONS(2841), - [anon_sym_L_DQUOTE] = ACTIONS(2841), - [anon_sym_u_DQUOTE] = ACTIONS(2841), - [anon_sym_U_DQUOTE] = ACTIONS(2841), - [anon_sym_u8_DQUOTE] = ACTIONS(2841), - [anon_sym_DQUOTE] = ACTIONS(2841), - [sym_true] = ACTIONS(2839), - [sym_false] = ACTIONS(2839), - [anon_sym_NULL] = ACTIONS(2839), - [anon_sym_nullptr] = ACTIONS(2839), + [657] = { + [ts_builtin_sym_end] = ACTIONS(3599), + [sym_identifier] = ACTIONS(3601), + [aux_sym_preproc_include_token1] = ACTIONS(3601), + [aux_sym_preproc_def_token1] = ACTIONS(3601), + [aux_sym_preproc_if_token1] = ACTIONS(3601), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3601), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3601), + [sym_preproc_directive] = ACTIONS(3601), + [anon_sym_LPAREN2] = ACTIONS(3599), + [anon_sym_BANG] = ACTIONS(3599), + [anon_sym_TILDE] = ACTIONS(3599), + [anon_sym_DASH] = ACTIONS(3601), + [anon_sym_PLUS] = ACTIONS(3601), + [anon_sym_STAR] = ACTIONS(3599), + [anon_sym_AMP_AMP] = ACTIONS(3599), + [anon_sym_AMP] = ACTIONS(3601), + [anon_sym_SEMI] = ACTIONS(3599), + [anon_sym___extension__] = ACTIONS(3601), + [anon_sym_typedef] = ACTIONS(3601), + [anon_sym_virtual] = ACTIONS(3601), + [anon_sym_extern] = ACTIONS(3601), + [anon_sym___attribute__] = ACTIONS(3601), + [anon_sym___attribute] = ACTIONS(3601), + [anon_sym_using] = ACTIONS(3601), + [anon_sym_COLON_COLON] = ACTIONS(3599), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3599), + [anon_sym___declspec] = ACTIONS(3601), + [anon_sym___based] = ACTIONS(3601), + [anon_sym___cdecl] = ACTIONS(3601), + [anon_sym___clrcall] = ACTIONS(3601), + [anon_sym___stdcall] = ACTIONS(3601), + [anon_sym___fastcall] = ACTIONS(3601), + [anon_sym___thiscall] = ACTIONS(3601), + [anon_sym___vectorcall] = ACTIONS(3601), + [anon_sym_LBRACE] = ACTIONS(3599), + [anon_sym_signed] = ACTIONS(3601), + [anon_sym_unsigned] = ACTIONS(3601), + [anon_sym_long] = ACTIONS(3601), + [anon_sym_short] = ACTIONS(3601), + [anon_sym_LBRACK] = ACTIONS(3601), + [anon_sym_static] = ACTIONS(3601), + [anon_sym_register] = ACTIONS(3601), + [anon_sym_inline] = ACTIONS(3601), + [anon_sym___inline] = ACTIONS(3601), + [anon_sym___inline__] = ACTIONS(3601), + [anon_sym___forceinline] = ACTIONS(3601), + [anon_sym_thread_local] = ACTIONS(3601), + [anon_sym___thread] = ACTIONS(3601), + [anon_sym_const] = ACTIONS(3601), + [anon_sym_constexpr] = ACTIONS(3601), + [anon_sym_volatile] = ACTIONS(3601), + [anon_sym_restrict] = ACTIONS(3601), + [anon_sym___restrict__] = ACTIONS(3601), + [anon_sym__Atomic] = ACTIONS(3601), + [anon_sym__Noreturn] = ACTIONS(3601), + [anon_sym_noreturn] = ACTIONS(3601), + [anon_sym__Nonnull] = ACTIONS(3601), + [anon_sym_mutable] = ACTIONS(3601), + [anon_sym_constinit] = ACTIONS(3601), + [anon_sym_consteval] = ACTIONS(3601), + [anon_sym_alignas] = ACTIONS(3601), + [anon_sym__Alignas] = ACTIONS(3601), + [sym_primitive_type] = ACTIONS(3601), + [anon_sym_enum] = ACTIONS(3601), + [anon_sym_class] = ACTIONS(3601), + [anon_sym_struct] = ACTIONS(3601), + [anon_sym_union] = ACTIONS(3601), + [anon_sym_if] = ACTIONS(3601), + [anon_sym_switch] = ACTIONS(3601), + [anon_sym_case] = ACTIONS(3601), + [anon_sym_default] = ACTIONS(3601), + [anon_sym_while] = ACTIONS(3601), + [anon_sym_do] = ACTIONS(3601), + [anon_sym_for] = ACTIONS(3601), + [anon_sym_return] = ACTIONS(3601), + [anon_sym_break] = ACTIONS(3601), + [anon_sym_continue] = ACTIONS(3601), + [anon_sym_goto] = ACTIONS(3601), + [anon_sym_not] = ACTIONS(3601), + [anon_sym_compl] = ACTIONS(3601), + [anon_sym_DASH_DASH] = ACTIONS(3599), + [anon_sym_PLUS_PLUS] = ACTIONS(3599), + [anon_sym_sizeof] = ACTIONS(3601), + [anon_sym___alignof__] = ACTIONS(3601), + [anon_sym___alignof] = ACTIONS(3601), + [anon_sym__alignof] = ACTIONS(3601), + [anon_sym_alignof] = ACTIONS(3601), + [anon_sym__Alignof] = ACTIONS(3601), + [anon_sym_offsetof] = ACTIONS(3601), + [anon_sym__Generic] = ACTIONS(3601), + [anon_sym_asm] = ACTIONS(3601), + [anon_sym___asm__] = ACTIONS(3601), + [anon_sym___asm] = ACTIONS(3601), + [sym_number_literal] = ACTIONS(3599), + [anon_sym_L_SQUOTE] = ACTIONS(3599), + [anon_sym_u_SQUOTE] = ACTIONS(3599), + [anon_sym_U_SQUOTE] = ACTIONS(3599), + [anon_sym_u8_SQUOTE] = ACTIONS(3599), + [anon_sym_SQUOTE] = ACTIONS(3599), + [anon_sym_L_DQUOTE] = ACTIONS(3599), + [anon_sym_u_DQUOTE] = ACTIONS(3599), + [anon_sym_U_DQUOTE] = ACTIONS(3599), + [anon_sym_u8_DQUOTE] = ACTIONS(3599), + [anon_sym_DQUOTE] = ACTIONS(3599), + [sym_true] = ACTIONS(3601), + [sym_false] = ACTIONS(3601), + [anon_sym_NULL] = ACTIONS(3601), + [anon_sym_nullptr] = ACTIONS(3601), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2839), - [anon_sym_decltype] = ACTIONS(2839), - [anon_sym_explicit] = ACTIONS(2839), - [anon_sym_typename] = ACTIONS(2839), - [anon_sym_template] = ACTIONS(2839), - [anon_sym_operator] = ACTIONS(2839), - [anon_sym_try] = ACTIONS(2839), - [anon_sym_delete] = ACTIONS(2839), - [anon_sym_throw] = ACTIONS(2839), - [anon_sym_namespace] = ACTIONS(2839), - [anon_sym_static_assert] = ACTIONS(2839), - [anon_sym_concept] = ACTIONS(2839), - [anon_sym_co_return] = ACTIONS(2839), - [anon_sym_co_yield] = ACTIONS(2839), - [anon_sym_R_DQUOTE] = ACTIONS(2841), - [anon_sym_LR_DQUOTE] = ACTIONS(2841), - [anon_sym_uR_DQUOTE] = ACTIONS(2841), - [anon_sym_UR_DQUOTE] = ACTIONS(2841), - [anon_sym_u8R_DQUOTE] = ACTIONS(2841), - [anon_sym_co_await] = ACTIONS(2839), - [anon_sym_new] = ACTIONS(2839), - [anon_sym_requires] = ACTIONS(2839), - [sym_this] = ACTIONS(2839), + [sym_auto] = ACTIONS(3601), + [anon_sym_decltype] = ACTIONS(3601), + [anon_sym_explicit] = ACTIONS(3601), + [anon_sym_typename] = ACTIONS(3601), + [anon_sym_export] = ACTIONS(3601), + [anon_sym_module] = ACTIONS(3601), + [anon_sym_import] = ACTIONS(3601), + [anon_sym_template] = ACTIONS(3601), + [anon_sym_operator] = ACTIONS(3601), + [anon_sym_try] = ACTIONS(3601), + [anon_sym_delete] = ACTIONS(3601), + [anon_sym_throw] = ACTIONS(3601), + [anon_sym_namespace] = ACTIONS(3601), + [anon_sym_static_assert] = ACTIONS(3601), + [anon_sym_concept] = ACTIONS(3601), + [anon_sym_co_return] = ACTIONS(3601), + [anon_sym_co_yield] = ACTIONS(3601), + [anon_sym_R_DQUOTE] = ACTIONS(3599), + [anon_sym_LR_DQUOTE] = ACTIONS(3599), + [anon_sym_uR_DQUOTE] = ACTIONS(3599), + [anon_sym_UR_DQUOTE] = ACTIONS(3599), + [anon_sym_u8R_DQUOTE] = ACTIONS(3599), + [anon_sym_co_await] = ACTIONS(3601), + [anon_sym_new] = ACTIONS(3601), + [anon_sym_requires] = ACTIONS(3601), + [sym_this] = ACTIONS(3601), }, - [660] = { + [658] = { [sym_identifier] = ACTIONS(2771), [aux_sym_preproc_include_token1] = ACTIONS(2771), [aux_sym_preproc_def_token1] = ACTIONS(2771), [aux_sym_preproc_if_token1] = ACTIONS(2771), + [aux_sym_preproc_if_token2] = ACTIONS(2771), [aux_sym_preproc_ifdef_token1] = ACTIONS(2771), [aux_sym_preproc_ifdef_token2] = ACTIONS(2771), [sym_preproc_directive] = ACTIONS(2771), @@ -136869,7 +136917,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(2771), [anon_sym___vectorcall] = ACTIONS(2771), [anon_sym_LBRACE] = ACTIONS(2773), - [anon_sym_RBRACE] = ACTIONS(2773), [anon_sym_signed] = ACTIONS(2771), [anon_sym_unsigned] = ACTIONS(2771), [anon_sym_long] = ACTIONS(2771), @@ -136903,6 +136950,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(2771), [anon_sym_union] = ACTIONS(2771), [anon_sym_if] = ACTIONS(2771), + [anon_sym_else] = ACTIONS(2771), [anon_sym_switch] = ACTIONS(2771), [anon_sym_case] = ACTIONS(2771), [anon_sym_default] = ACTIONS(2771), @@ -136970,1236 +137018,1106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2771), [sym_this] = ACTIONS(2771), }, - [661] = { - [sym_identifier] = ACTIONS(2863), - [aux_sym_preproc_include_token1] = ACTIONS(2863), - [aux_sym_preproc_def_token1] = ACTIONS(2863), - [aux_sym_preproc_if_token1] = ACTIONS(2863), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2863), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2863), - [sym_preproc_directive] = ACTIONS(2863), - [anon_sym_LPAREN2] = ACTIONS(2865), - [anon_sym_BANG] = ACTIONS(2865), - [anon_sym_TILDE] = ACTIONS(2865), - [anon_sym_DASH] = ACTIONS(2863), - [anon_sym_PLUS] = ACTIONS(2863), - [anon_sym_STAR] = ACTIONS(2865), - [anon_sym_AMP_AMP] = ACTIONS(2865), - [anon_sym_AMP] = ACTIONS(2863), - [anon_sym_SEMI] = ACTIONS(2865), - [anon_sym___extension__] = ACTIONS(2863), - [anon_sym_typedef] = ACTIONS(2863), - [anon_sym_virtual] = ACTIONS(2863), - [anon_sym_extern] = ACTIONS(2863), - [anon_sym___attribute__] = ACTIONS(2863), - [anon_sym___attribute] = ACTIONS(2863), - [anon_sym_using] = ACTIONS(2863), - [anon_sym_COLON_COLON] = ACTIONS(2865), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2865), - [anon_sym___declspec] = ACTIONS(2863), - [anon_sym___based] = ACTIONS(2863), - [anon_sym___cdecl] = ACTIONS(2863), - [anon_sym___clrcall] = ACTIONS(2863), - [anon_sym___stdcall] = ACTIONS(2863), - [anon_sym___fastcall] = ACTIONS(2863), - [anon_sym___thiscall] = ACTIONS(2863), - [anon_sym___vectorcall] = ACTIONS(2863), - [anon_sym_LBRACE] = ACTIONS(2865), - [anon_sym_RBRACE] = ACTIONS(2865), - [anon_sym_signed] = ACTIONS(2863), - [anon_sym_unsigned] = ACTIONS(2863), - [anon_sym_long] = ACTIONS(2863), - [anon_sym_short] = ACTIONS(2863), - [anon_sym_LBRACK] = ACTIONS(2863), - [anon_sym_static] = ACTIONS(2863), - [anon_sym_register] = ACTIONS(2863), - [anon_sym_inline] = ACTIONS(2863), - [anon_sym___inline] = ACTIONS(2863), - [anon_sym___inline__] = ACTIONS(2863), - [anon_sym___forceinline] = ACTIONS(2863), - [anon_sym_thread_local] = ACTIONS(2863), - [anon_sym___thread] = ACTIONS(2863), - [anon_sym_const] = ACTIONS(2863), - [anon_sym_constexpr] = ACTIONS(2863), - [anon_sym_volatile] = ACTIONS(2863), - [anon_sym_restrict] = ACTIONS(2863), - [anon_sym___restrict__] = ACTIONS(2863), - [anon_sym__Atomic] = ACTIONS(2863), - [anon_sym__Noreturn] = ACTIONS(2863), - [anon_sym_noreturn] = ACTIONS(2863), - [anon_sym__Nonnull] = ACTIONS(2863), - [anon_sym_mutable] = ACTIONS(2863), - [anon_sym_constinit] = ACTIONS(2863), - [anon_sym_consteval] = ACTIONS(2863), - [anon_sym_alignas] = ACTIONS(2863), - [anon_sym__Alignas] = ACTIONS(2863), - [sym_primitive_type] = ACTIONS(2863), - [anon_sym_enum] = ACTIONS(2863), - [anon_sym_class] = ACTIONS(2863), - [anon_sym_struct] = ACTIONS(2863), - [anon_sym_union] = ACTIONS(2863), - [anon_sym_if] = ACTIONS(2863), - [anon_sym_switch] = ACTIONS(2863), - [anon_sym_case] = ACTIONS(2863), - [anon_sym_default] = ACTIONS(2863), - [anon_sym_while] = ACTIONS(2863), - [anon_sym_do] = ACTIONS(2863), - [anon_sym_for] = ACTIONS(2863), - [anon_sym_return] = ACTIONS(2863), - [anon_sym_break] = ACTIONS(2863), - [anon_sym_continue] = ACTIONS(2863), - [anon_sym_goto] = ACTIONS(2863), - [anon_sym___try] = ACTIONS(2863), - [anon_sym___leave] = ACTIONS(2863), - [anon_sym_not] = ACTIONS(2863), - [anon_sym_compl] = ACTIONS(2863), - [anon_sym_DASH_DASH] = ACTIONS(2865), - [anon_sym_PLUS_PLUS] = ACTIONS(2865), - [anon_sym_sizeof] = ACTIONS(2863), - [anon_sym___alignof__] = ACTIONS(2863), - [anon_sym___alignof] = ACTIONS(2863), - [anon_sym__alignof] = ACTIONS(2863), - [anon_sym_alignof] = ACTIONS(2863), - [anon_sym__Alignof] = ACTIONS(2863), - [anon_sym_offsetof] = ACTIONS(2863), - [anon_sym__Generic] = ACTIONS(2863), - [anon_sym_asm] = ACTIONS(2863), - [anon_sym___asm__] = ACTIONS(2863), - [anon_sym___asm] = ACTIONS(2863), - [sym_number_literal] = ACTIONS(2865), - [anon_sym_L_SQUOTE] = ACTIONS(2865), - [anon_sym_u_SQUOTE] = ACTIONS(2865), - [anon_sym_U_SQUOTE] = ACTIONS(2865), - [anon_sym_u8_SQUOTE] = ACTIONS(2865), - [anon_sym_SQUOTE] = ACTIONS(2865), - [anon_sym_L_DQUOTE] = ACTIONS(2865), - [anon_sym_u_DQUOTE] = ACTIONS(2865), - [anon_sym_U_DQUOTE] = ACTIONS(2865), - [anon_sym_u8_DQUOTE] = ACTIONS(2865), - [anon_sym_DQUOTE] = ACTIONS(2865), - [sym_true] = ACTIONS(2863), - [sym_false] = ACTIONS(2863), - [anon_sym_NULL] = ACTIONS(2863), - [anon_sym_nullptr] = ACTIONS(2863), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2863), - [anon_sym_decltype] = ACTIONS(2863), - [anon_sym_explicit] = ACTIONS(2863), - [anon_sym_typename] = ACTIONS(2863), - [anon_sym_template] = ACTIONS(2863), - [anon_sym_operator] = ACTIONS(2863), - [anon_sym_try] = ACTIONS(2863), - [anon_sym_delete] = ACTIONS(2863), - [anon_sym_throw] = ACTIONS(2863), - [anon_sym_namespace] = ACTIONS(2863), - [anon_sym_static_assert] = ACTIONS(2863), - [anon_sym_concept] = ACTIONS(2863), - [anon_sym_co_return] = ACTIONS(2863), - [anon_sym_co_yield] = ACTIONS(2863), - [anon_sym_R_DQUOTE] = ACTIONS(2865), - [anon_sym_LR_DQUOTE] = ACTIONS(2865), - [anon_sym_uR_DQUOTE] = ACTIONS(2865), - [anon_sym_UR_DQUOTE] = ACTIONS(2865), - [anon_sym_u8R_DQUOTE] = ACTIONS(2865), - [anon_sym_co_await] = ACTIONS(2863), - [anon_sym_new] = ACTIONS(2863), - [anon_sym_requires] = ACTIONS(2863), - [sym_this] = ACTIONS(2863), - }, - [662] = { - [sym_identifier] = ACTIONS(2843), - [aux_sym_preproc_include_token1] = ACTIONS(2843), - [aux_sym_preproc_def_token1] = ACTIONS(2843), - [aux_sym_preproc_if_token1] = ACTIONS(2843), - [aux_sym_preproc_if_token2] = ACTIONS(2843), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2843), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2843), - [sym_preproc_directive] = ACTIONS(2843), - [anon_sym_LPAREN2] = ACTIONS(2845), - [anon_sym_BANG] = ACTIONS(2845), - [anon_sym_TILDE] = ACTIONS(2845), - [anon_sym_DASH] = ACTIONS(2843), - [anon_sym_PLUS] = ACTIONS(2843), - [anon_sym_STAR] = ACTIONS(2845), - [anon_sym_AMP_AMP] = ACTIONS(2845), - [anon_sym_AMP] = ACTIONS(2843), - [anon_sym_SEMI] = ACTIONS(2845), - [anon_sym___extension__] = ACTIONS(2843), - [anon_sym_typedef] = ACTIONS(2843), - [anon_sym_virtual] = ACTIONS(2843), - [anon_sym_extern] = ACTIONS(2843), - [anon_sym___attribute__] = ACTIONS(2843), - [anon_sym___attribute] = ACTIONS(2843), - [anon_sym_using] = ACTIONS(2843), - [anon_sym_COLON_COLON] = ACTIONS(2845), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2845), - [anon_sym___declspec] = ACTIONS(2843), - [anon_sym___based] = ACTIONS(2843), - [anon_sym___cdecl] = ACTIONS(2843), - [anon_sym___clrcall] = ACTIONS(2843), - [anon_sym___stdcall] = ACTIONS(2843), - [anon_sym___fastcall] = ACTIONS(2843), - [anon_sym___thiscall] = ACTIONS(2843), - [anon_sym___vectorcall] = ACTIONS(2843), - [anon_sym_LBRACE] = ACTIONS(2845), - [anon_sym_signed] = ACTIONS(2843), - [anon_sym_unsigned] = ACTIONS(2843), - [anon_sym_long] = ACTIONS(2843), - [anon_sym_short] = ACTIONS(2843), - [anon_sym_LBRACK] = ACTIONS(2843), - [anon_sym_static] = ACTIONS(2843), - [anon_sym_register] = ACTIONS(2843), - [anon_sym_inline] = ACTIONS(2843), - [anon_sym___inline] = ACTIONS(2843), - [anon_sym___inline__] = ACTIONS(2843), - [anon_sym___forceinline] = ACTIONS(2843), - [anon_sym_thread_local] = ACTIONS(2843), - [anon_sym___thread] = ACTIONS(2843), - [anon_sym_const] = ACTIONS(2843), - [anon_sym_constexpr] = ACTIONS(2843), - [anon_sym_volatile] = ACTIONS(2843), - [anon_sym_restrict] = ACTIONS(2843), - [anon_sym___restrict__] = ACTIONS(2843), - [anon_sym__Atomic] = ACTIONS(2843), - [anon_sym__Noreturn] = ACTIONS(2843), - [anon_sym_noreturn] = ACTIONS(2843), - [anon_sym__Nonnull] = ACTIONS(2843), - [anon_sym_mutable] = ACTIONS(2843), - [anon_sym_constinit] = ACTIONS(2843), - [anon_sym_consteval] = ACTIONS(2843), - [anon_sym_alignas] = ACTIONS(2843), - [anon_sym__Alignas] = ACTIONS(2843), - [sym_primitive_type] = ACTIONS(2843), - [anon_sym_enum] = ACTIONS(2843), - [anon_sym_class] = ACTIONS(2843), - [anon_sym_struct] = ACTIONS(2843), - [anon_sym_union] = ACTIONS(2843), - [anon_sym_if] = ACTIONS(2843), - [anon_sym_switch] = ACTIONS(2843), - [anon_sym_case] = ACTIONS(2843), - [anon_sym_default] = ACTIONS(2843), - [anon_sym_while] = ACTIONS(2843), - [anon_sym_do] = ACTIONS(2843), - [anon_sym_for] = ACTIONS(2843), - [anon_sym_return] = ACTIONS(2843), - [anon_sym_break] = ACTIONS(2843), - [anon_sym_continue] = ACTIONS(2843), - [anon_sym_goto] = ACTIONS(2843), - [anon_sym___try] = ACTIONS(2843), - [anon_sym___leave] = ACTIONS(2843), - [anon_sym_not] = ACTIONS(2843), - [anon_sym_compl] = ACTIONS(2843), - [anon_sym_DASH_DASH] = ACTIONS(2845), - [anon_sym_PLUS_PLUS] = ACTIONS(2845), - [anon_sym_sizeof] = ACTIONS(2843), - [anon_sym___alignof__] = ACTIONS(2843), - [anon_sym___alignof] = ACTIONS(2843), - [anon_sym__alignof] = ACTIONS(2843), - [anon_sym_alignof] = ACTIONS(2843), - [anon_sym__Alignof] = ACTIONS(2843), - [anon_sym_offsetof] = ACTIONS(2843), - [anon_sym__Generic] = ACTIONS(2843), - [anon_sym_asm] = ACTIONS(2843), - [anon_sym___asm__] = ACTIONS(2843), - [anon_sym___asm] = ACTIONS(2843), - [sym_number_literal] = ACTIONS(2845), - [anon_sym_L_SQUOTE] = ACTIONS(2845), - [anon_sym_u_SQUOTE] = ACTIONS(2845), - [anon_sym_U_SQUOTE] = ACTIONS(2845), - [anon_sym_u8_SQUOTE] = ACTIONS(2845), - [anon_sym_SQUOTE] = ACTIONS(2845), - [anon_sym_L_DQUOTE] = ACTIONS(2845), - [anon_sym_u_DQUOTE] = ACTIONS(2845), - [anon_sym_U_DQUOTE] = ACTIONS(2845), - [anon_sym_u8_DQUOTE] = ACTIONS(2845), - [anon_sym_DQUOTE] = ACTIONS(2845), - [sym_true] = ACTIONS(2843), - [sym_false] = ACTIONS(2843), - [anon_sym_NULL] = ACTIONS(2843), - [anon_sym_nullptr] = ACTIONS(2843), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2843), - [anon_sym_decltype] = ACTIONS(2843), - [anon_sym_explicit] = ACTIONS(2843), - [anon_sym_typename] = ACTIONS(2843), - [anon_sym_template] = ACTIONS(2843), - [anon_sym_operator] = ACTIONS(2843), - [anon_sym_try] = ACTIONS(2843), - [anon_sym_delete] = ACTIONS(2843), - [anon_sym_throw] = ACTIONS(2843), - [anon_sym_namespace] = ACTIONS(2843), - [anon_sym_static_assert] = ACTIONS(2843), - [anon_sym_concept] = ACTIONS(2843), - [anon_sym_co_return] = ACTIONS(2843), - [anon_sym_co_yield] = ACTIONS(2843), - [anon_sym_R_DQUOTE] = ACTIONS(2845), - [anon_sym_LR_DQUOTE] = ACTIONS(2845), - [anon_sym_uR_DQUOTE] = ACTIONS(2845), - [anon_sym_UR_DQUOTE] = ACTIONS(2845), - [anon_sym_u8R_DQUOTE] = ACTIONS(2845), - [anon_sym_co_await] = ACTIONS(2843), - [anon_sym_new] = ACTIONS(2843), - [anon_sym_requires] = ACTIONS(2843), - [sym_this] = ACTIONS(2843), - }, - [663] = { - [sym_identifier] = ACTIONS(2843), - [aux_sym_preproc_include_token1] = ACTIONS(2843), - [aux_sym_preproc_def_token1] = ACTIONS(2843), - [aux_sym_preproc_if_token1] = ACTIONS(2843), - [aux_sym_preproc_if_token2] = ACTIONS(2843), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2843), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2843), - [sym_preproc_directive] = ACTIONS(2843), - [anon_sym_LPAREN2] = ACTIONS(2845), - [anon_sym_BANG] = ACTIONS(2845), - [anon_sym_TILDE] = ACTIONS(2845), - [anon_sym_DASH] = ACTIONS(2843), - [anon_sym_PLUS] = ACTIONS(2843), - [anon_sym_STAR] = ACTIONS(2845), - [anon_sym_AMP_AMP] = ACTIONS(2845), - [anon_sym_AMP] = ACTIONS(2843), - [anon_sym_SEMI] = ACTIONS(2845), - [anon_sym___extension__] = ACTIONS(2843), - [anon_sym_typedef] = ACTIONS(2843), - [anon_sym_virtual] = ACTIONS(2843), - [anon_sym_extern] = ACTIONS(2843), - [anon_sym___attribute__] = ACTIONS(2843), - [anon_sym___attribute] = ACTIONS(2843), - [anon_sym_using] = ACTIONS(2843), - [anon_sym_COLON_COLON] = ACTIONS(2845), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2845), - [anon_sym___declspec] = ACTIONS(2843), - [anon_sym___based] = ACTIONS(2843), - [anon_sym___cdecl] = ACTIONS(2843), - [anon_sym___clrcall] = ACTIONS(2843), - [anon_sym___stdcall] = ACTIONS(2843), - [anon_sym___fastcall] = ACTIONS(2843), - [anon_sym___thiscall] = ACTIONS(2843), - [anon_sym___vectorcall] = ACTIONS(2843), - [anon_sym_LBRACE] = ACTIONS(2845), - [anon_sym_signed] = ACTIONS(2843), - [anon_sym_unsigned] = ACTIONS(2843), - [anon_sym_long] = ACTIONS(2843), - [anon_sym_short] = ACTIONS(2843), - [anon_sym_LBRACK] = ACTIONS(2843), - [anon_sym_static] = ACTIONS(2843), - [anon_sym_register] = ACTIONS(2843), - [anon_sym_inline] = ACTIONS(2843), - [anon_sym___inline] = ACTIONS(2843), - [anon_sym___inline__] = ACTIONS(2843), - [anon_sym___forceinline] = ACTIONS(2843), - [anon_sym_thread_local] = ACTIONS(2843), - [anon_sym___thread] = ACTIONS(2843), - [anon_sym_const] = ACTIONS(2843), - [anon_sym_constexpr] = ACTIONS(2843), - [anon_sym_volatile] = ACTIONS(2843), - [anon_sym_restrict] = ACTIONS(2843), - [anon_sym___restrict__] = ACTIONS(2843), - [anon_sym__Atomic] = ACTIONS(2843), - [anon_sym__Noreturn] = ACTIONS(2843), - [anon_sym_noreturn] = ACTIONS(2843), - [anon_sym__Nonnull] = ACTIONS(2843), - [anon_sym_mutable] = ACTIONS(2843), - [anon_sym_constinit] = ACTIONS(2843), - [anon_sym_consteval] = ACTIONS(2843), - [anon_sym_alignas] = ACTIONS(2843), - [anon_sym__Alignas] = ACTIONS(2843), - [sym_primitive_type] = ACTIONS(2843), - [anon_sym_enum] = ACTIONS(2843), - [anon_sym_class] = ACTIONS(2843), - [anon_sym_struct] = ACTIONS(2843), - [anon_sym_union] = ACTIONS(2843), - [anon_sym_if] = ACTIONS(2843), - [anon_sym_switch] = ACTIONS(2843), - [anon_sym_case] = ACTIONS(2843), - [anon_sym_default] = ACTIONS(2843), - [anon_sym_while] = ACTIONS(2843), - [anon_sym_do] = ACTIONS(2843), - [anon_sym_for] = ACTIONS(2843), - [anon_sym_return] = ACTIONS(2843), - [anon_sym_break] = ACTIONS(2843), - [anon_sym_continue] = ACTIONS(2843), - [anon_sym_goto] = ACTIONS(2843), - [anon_sym___try] = ACTIONS(2843), - [anon_sym___leave] = ACTIONS(2843), - [anon_sym_not] = ACTIONS(2843), - [anon_sym_compl] = ACTIONS(2843), - [anon_sym_DASH_DASH] = ACTIONS(2845), - [anon_sym_PLUS_PLUS] = ACTIONS(2845), - [anon_sym_sizeof] = ACTIONS(2843), - [anon_sym___alignof__] = ACTIONS(2843), - [anon_sym___alignof] = ACTIONS(2843), - [anon_sym__alignof] = ACTIONS(2843), - [anon_sym_alignof] = ACTIONS(2843), - [anon_sym__Alignof] = ACTIONS(2843), - [anon_sym_offsetof] = ACTIONS(2843), - [anon_sym__Generic] = ACTIONS(2843), - [anon_sym_asm] = ACTIONS(2843), - [anon_sym___asm__] = ACTIONS(2843), - [anon_sym___asm] = ACTIONS(2843), - [sym_number_literal] = ACTIONS(2845), - [anon_sym_L_SQUOTE] = ACTIONS(2845), - [anon_sym_u_SQUOTE] = ACTIONS(2845), - [anon_sym_U_SQUOTE] = ACTIONS(2845), - [anon_sym_u8_SQUOTE] = ACTIONS(2845), - [anon_sym_SQUOTE] = ACTIONS(2845), - [anon_sym_L_DQUOTE] = ACTIONS(2845), - [anon_sym_u_DQUOTE] = ACTIONS(2845), - [anon_sym_U_DQUOTE] = ACTIONS(2845), - [anon_sym_u8_DQUOTE] = ACTIONS(2845), - [anon_sym_DQUOTE] = ACTIONS(2845), - [sym_true] = ACTIONS(2843), - [sym_false] = ACTIONS(2843), - [anon_sym_NULL] = ACTIONS(2843), - [anon_sym_nullptr] = ACTIONS(2843), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2843), - [anon_sym_decltype] = ACTIONS(2843), - [anon_sym_explicit] = ACTIONS(2843), - [anon_sym_typename] = ACTIONS(2843), - [anon_sym_template] = ACTIONS(2843), - [anon_sym_operator] = ACTIONS(2843), - [anon_sym_try] = ACTIONS(2843), - [anon_sym_delete] = ACTIONS(2843), - [anon_sym_throw] = ACTIONS(2843), - [anon_sym_namespace] = ACTIONS(2843), - [anon_sym_static_assert] = ACTIONS(2843), - [anon_sym_concept] = ACTIONS(2843), - [anon_sym_co_return] = ACTIONS(2843), - [anon_sym_co_yield] = ACTIONS(2843), - [anon_sym_R_DQUOTE] = ACTIONS(2845), - [anon_sym_LR_DQUOTE] = ACTIONS(2845), - [anon_sym_uR_DQUOTE] = ACTIONS(2845), - [anon_sym_UR_DQUOTE] = ACTIONS(2845), - [anon_sym_u8R_DQUOTE] = ACTIONS(2845), - [anon_sym_co_await] = ACTIONS(2843), - [anon_sym_new] = ACTIONS(2843), - [anon_sym_requires] = ACTIONS(2843), - [sym_this] = ACTIONS(2843), - }, - [664] = { - [sym_identifier] = ACTIONS(2871), - [aux_sym_preproc_include_token1] = ACTIONS(2871), - [aux_sym_preproc_def_token1] = ACTIONS(2871), - [aux_sym_preproc_if_token1] = ACTIONS(2871), - [aux_sym_preproc_if_token2] = ACTIONS(2871), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), - [sym_preproc_directive] = ACTIONS(2871), - [anon_sym_LPAREN2] = ACTIONS(2873), - [anon_sym_BANG] = ACTIONS(2873), - [anon_sym_TILDE] = ACTIONS(2873), - [anon_sym_DASH] = ACTIONS(2871), - [anon_sym_PLUS] = ACTIONS(2871), - [anon_sym_STAR] = ACTIONS(2873), - [anon_sym_AMP_AMP] = ACTIONS(2873), - [anon_sym_AMP] = ACTIONS(2871), - [anon_sym_SEMI] = ACTIONS(2873), - [anon_sym___extension__] = ACTIONS(2871), - [anon_sym_typedef] = ACTIONS(2871), - [anon_sym_virtual] = ACTIONS(2871), - [anon_sym_extern] = ACTIONS(2871), - [anon_sym___attribute__] = ACTIONS(2871), - [anon_sym___attribute] = ACTIONS(2871), - [anon_sym_using] = ACTIONS(2871), - [anon_sym_COLON_COLON] = ACTIONS(2873), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), - [anon_sym___declspec] = ACTIONS(2871), - [anon_sym___based] = ACTIONS(2871), - [anon_sym___cdecl] = ACTIONS(2871), - [anon_sym___clrcall] = ACTIONS(2871), - [anon_sym___stdcall] = ACTIONS(2871), - [anon_sym___fastcall] = ACTIONS(2871), - [anon_sym___thiscall] = ACTIONS(2871), - [anon_sym___vectorcall] = ACTIONS(2871), - [anon_sym_LBRACE] = ACTIONS(2873), - [anon_sym_signed] = ACTIONS(2871), - [anon_sym_unsigned] = ACTIONS(2871), - [anon_sym_long] = ACTIONS(2871), - [anon_sym_short] = ACTIONS(2871), - [anon_sym_LBRACK] = ACTIONS(2871), - [anon_sym_static] = ACTIONS(2871), - [anon_sym_register] = ACTIONS(2871), - [anon_sym_inline] = ACTIONS(2871), - [anon_sym___inline] = ACTIONS(2871), - [anon_sym___inline__] = ACTIONS(2871), - [anon_sym___forceinline] = ACTIONS(2871), - [anon_sym_thread_local] = ACTIONS(2871), - [anon_sym___thread] = ACTIONS(2871), - [anon_sym_const] = ACTIONS(2871), - [anon_sym_constexpr] = ACTIONS(2871), - [anon_sym_volatile] = ACTIONS(2871), - [anon_sym_restrict] = ACTIONS(2871), - [anon_sym___restrict__] = ACTIONS(2871), - [anon_sym__Atomic] = ACTIONS(2871), - [anon_sym__Noreturn] = ACTIONS(2871), - [anon_sym_noreturn] = ACTIONS(2871), - [anon_sym__Nonnull] = ACTIONS(2871), - [anon_sym_mutable] = ACTIONS(2871), - [anon_sym_constinit] = ACTIONS(2871), - [anon_sym_consteval] = ACTIONS(2871), - [anon_sym_alignas] = ACTIONS(2871), - [anon_sym__Alignas] = ACTIONS(2871), - [sym_primitive_type] = ACTIONS(2871), - [anon_sym_enum] = ACTIONS(2871), - [anon_sym_class] = ACTIONS(2871), - [anon_sym_struct] = ACTIONS(2871), - [anon_sym_union] = ACTIONS(2871), - [anon_sym_if] = ACTIONS(2871), - [anon_sym_switch] = ACTIONS(2871), - [anon_sym_case] = ACTIONS(2871), - [anon_sym_default] = ACTIONS(2871), - [anon_sym_while] = ACTIONS(2871), - [anon_sym_do] = ACTIONS(2871), - [anon_sym_for] = ACTIONS(2871), - [anon_sym_return] = ACTIONS(2871), - [anon_sym_break] = ACTIONS(2871), - [anon_sym_continue] = ACTIONS(2871), - [anon_sym_goto] = ACTIONS(2871), - [anon_sym___try] = ACTIONS(2871), - [anon_sym___leave] = ACTIONS(2871), - [anon_sym_not] = ACTIONS(2871), - [anon_sym_compl] = ACTIONS(2871), - [anon_sym_DASH_DASH] = ACTIONS(2873), - [anon_sym_PLUS_PLUS] = ACTIONS(2873), - [anon_sym_sizeof] = ACTIONS(2871), - [anon_sym___alignof__] = ACTIONS(2871), - [anon_sym___alignof] = ACTIONS(2871), - [anon_sym__alignof] = ACTIONS(2871), - [anon_sym_alignof] = ACTIONS(2871), - [anon_sym__Alignof] = ACTIONS(2871), - [anon_sym_offsetof] = ACTIONS(2871), - [anon_sym__Generic] = ACTIONS(2871), - [anon_sym_asm] = ACTIONS(2871), - [anon_sym___asm__] = ACTIONS(2871), - [anon_sym___asm] = ACTIONS(2871), - [sym_number_literal] = ACTIONS(2873), - [anon_sym_L_SQUOTE] = ACTIONS(2873), - [anon_sym_u_SQUOTE] = ACTIONS(2873), - [anon_sym_U_SQUOTE] = ACTIONS(2873), - [anon_sym_u8_SQUOTE] = ACTIONS(2873), - [anon_sym_SQUOTE] = ACTIONS(2873), - [anon_sym_L_DQUOTE] = ACTIONS(2873), - [anon_sym_u_DQUOTE] = ACTIONS(2873), - [anon_sym_U_DQUOTE] = ACTIONS(2873), - [anon_sym_u8_DQUOTE] = ACTIONS(2873), - [anon_sym_DQUOTE] = ACTIONS(2873), - [sym_true] = ACTIONS(2871), - [sym_false] = ACTIONS(2871), - [anon_sym_NULL] = ACTIONS(2871), - [anon_sym_nullptr] = ACTIONS(2871), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2871), - [anon_sym_decltype] = ACTIONS(2871), - [anon_sym_explicit] = ACTIONS(2871), - [anon_sym_typename] = ACTIONS(2871), - [anon_sym_template] = ACTIONS(2871), - [anon_sym_operator] = ACTIONS(2871), - [anon_sym_try] = ACTIONS(2871), - [anon_sym_delete] = ACTIONS(2871), - [anon_sym_throw] = ACTIONS(2871), - [anon_sym_namespace] = ACTIONS(2871), - [anon_sym_static_assert] = ACTIONS(2871), - [anon_sym_concept] = ACTIONS(2871), - [anon_sym_co_return] = ACTIONS(2871), - [anon_sym_co_yield] = ACTIONS(2871), - [anon_sym_R_DQUOTE] = ACTIONS(2873), - [anon_sym_LR_DQUOTE] = ACTIONS(2873), - [anon_sym_uR_DQUOTE] = ACTIONS(2873), - [anon_sym_UR_DQUOTE] = ACTIONS(2873), - [anon_sym_u8R_DQUOTE] = ACTIONS(2873), - [anon_sym_co_await] = ACTIONS(2871), - [anon_sym_new] = ACTIONS(2871), - [anon_sym_requires] = ACTIONS(2871), - [sym_this] = ACTIONS(2871), + [659] = { + [sym_identifier] = ACTIONS(2671), + [aux_sym_preproc_include_token1] = ACTIONS(2671), + [aux_sym_preproc_def_token1] = ACTIONS(2671), + [aux_sym_preproc_if_token1] = ACTIONS(2671), + [aux_sym_preproc_if_token2] = ACTIONS(2671), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2671), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2671), + [sym_preproc_directive] = ACTIONS(2671), + [anon_sym_LPAREN2] = ACTIONS(2673), + [anon_sym_BANG] = ACTIONS(2673), + [anon_sym_TILDE] = ACTIONS(2673), + [anon_sym_DASH] = ACTIONS(2671), + [anon_sym_PLUS] = ACTIONS(2671), + [anon_sym_STAR] = ACTIONS(2673), + [anon_sym_AMP_AMP] = ACTIONS(2673), + [anon_sym_AMP] = ACTIONS(2671), + [anon_sym_SEMI] = ACTIONS(2673), + [anon_sym___extension__] = ACTIONS(2671), + [anon_sym_typedef] = ACTIONS(2671), + [anon_sym_virtual] = ACTIONS(2671), + [anon_sym_extern] = ACTIONS(2671), + [anon_sym___attribute__] = ACTIONS(2671), + [anon_sym___attribute] = ACTIONS(2671), + [anon_sym_using] = ACTIONS(2671), + [anon_sym_COLON_COLON] = ACTIONS(2673), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2673), + [anon_sym___declspec] = ACTIONS(2671), + [anon_sym___based] = ACTIONS(2671), + [anon_sym___cdecl] = ACTIONS(2671), + [anon_sym___clrcall] = ACTIONS(2671), + [anon_sym___stdcall] = ACTIONS(2671), + [anon_sym___fastcall] = ACTIONS(2671), + [anon_sym___thiscall] = ACTIONS(2671), + [anon_sym___vectorcall] = ACTIONS(2671), + [anon_sym_LBRACE] = ACTIONS(2673), + [anon_sym_signed] = ACTIONS(2671), + [anon_sym_unsigned] = ACTIONS(2671), + [anon_sym_long] = ACTIONS(2671), + [anon_sym_short] = ACTIONS(2671), + [anon_sym_LBRACK] = ACTIONS(2671), + [anon_sym_static] = ACTIONS(2671), + [anon_sym_register] = ACTIONS(2671), + [anon_sym_inline] = ACTIONS(2671), + [anon_sym___inline] = ACTIONS(2671), + [anon_sym___inline__] = ACTIONS(2671), + [anon_sym___forceinline] = ACTIONS(2671), + [anon_sym_thread_local] = ACTIONS(2671), + [anon_sym___thread] = ACTIONS(2671), + [anon_sym_const] = ACTIONS(2671), + [anon_sym_constexpr] = ACTIONS(2671), + [anon_sym_volatile] = ACTIONS(2671), + [anon_sym_restrict] = ACTIONS(2671), + [anon_sym___restrict__] = ACTIONS(2671), + [anon_sym__Atomic] = ACTIONS(2671), + [anon_sym__Noreturn] = ACTIONS(2671), + [anon_sym_noreturn] = ACTIONS(2671), + [anon_sym__Nonnull] = ACTIONS(2671), + [anon_sym_mutable] = ACTIONS(2671), + [anon_sym_constinit] = ACTIONS(2671), + [anon_sym_consteval] = ACTIONS(2671), + [anon_sym_alignas] = ACTIONS(2671), + [anon_sym__Alignas] = ACTIONS(2671), + [sym_primitive_type] = ACTIONS(2671), + [anon_sym_enum] = ACTIONS(2671), + [anon_sym_class] = ACTIONS(2671), + [anon_sym_struct] = ACTIONS(2671), + [anon_sym_union] = ACTIONS(2671), + [anon_sym_if] = ACTIONS(2671), + [anon_sym_else] = ACTIONS(2671), + [anon_sym_switch] = ACTIONS(2671), + [anon_sym_case] = ACTIONS(2671), + [anon_sym_default] = ACTIONS(2671), + [anon_sym_while] = ACTIONS(2671), + [anon_sym_do] = ACTIONS(2671), + [anon_sym_for] = ACTIONS(2671), + [anon_sym_return] = ACTIONS(2671), + [anon_sym_break] = ACTIONS(2671), + [anon_sym_continue] = ACTIONS(2671), + [anon_sym_goto] = ACTIONS(2671), + [anon_sym___try] = ACTIONS(2671), + [anon_sym___leave] = ACTIONS(2671), + [anon_sym_not] = ACTIONS(2671), + [anon_sym_compl] = ACTIONS(2671), + [anon_sym_DASH_DASH] = ACTIONS(2673), + [anon_sym_PLUS_PLUS] = ACTIONS(2673), + [anon_sym_sizeof] = ACTIONS(2671), + [anon_sym___alignof__] = ACTIONS(2671), + [anon_sym___alignof] = ACTIONS(2671), + [anon_sym__alignof] = ACTIONS(2671), + [anon_sym_alignof] = ACTIONS(2671), + [anon_sym__Alignof] = ACTIONS(2671), + [anon_sym_offsetof] = ACTIONS(2671), + [anon_sym__Generic] = ACTIONS(2671), + [anon_sym_asm] = ACTIONS(2671), + [anon_sym___asm__] = ACTIONS(2671), + [anon_sym___asm] = ACTIONS(2671), + [sym_number_literal] = ACTIONS(2673), + [anon_sym_L_SQUOTE] = ACTIONS(2673), + [anon_sym_u_SQUOTE] = ACTIONS(2673), + [anon_sym_U_SQUOTE] = ACTIONS(2673), + [anon_sym_u8_SQUOTE] = ACTIONS(2673), + [anon_sym_SQUOTE] = ACTIONS(2673), + [anon_sym_L_DQUOTE] = ACTIONS(2673), + [anon_sym_u_DQUOTE] = ACTIONS(2673), + [anon_sym_U_DQUOTE] = ACTIONS(2673), + [anon_sym_u8_DQUOTE] = ACTIONS(2673), + [anon_sym_DQUOTE] = ACTIONS(2673), + [sym_true] = ACTIONS(2671), + [sym_false] = ACTIONS(2671), + [anon_sym_NULL] = ACTIONS(2671), + [anon_sym_nullptr] = ACTIONS(2671), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2671), + [anon_sym_decltype] = ACTIONS(2671), + [anon_sym_explicit] = ACTIONS(2671), + [anon_sym_typename] = ACTIONS(2671), + [anon_sym_template] = ACTIONS(2671), + [anon_sym_operator] = ACTIONS(2671), + [anon_sym_try] = ACTIONS(2671), + [anon_sym_delete] = ACTIONS(2671), + [anon_sym_throw] = ACTIONS(2671), + [anon_sym_namespace] = ACTIONS(2671), + [anon_sym_static_assert] = ACTIONS(2671), + [anon_sym_concept] = ACTIONS(2671), + [anon_sym_co_return] = ACTIONS(2671), + [anon_sym_co_yield] = ACTIONS(2671), + [anon_sym_R_DQUOTE] = ACTIONS(2673), + [anon_sym_LR_DQUOTE] = ACTIONS(2673), + [anon_sym_uR_DQUOTE] = ACTIONS(2673), + [anon_sym_UR_DQUOTE] = ACTIONS(2673), + [anon_sym_u8R_DQUOTE] = ACTIONS(2673), + [anon_sym_co_await] = ACTIONS(2671), + [anon_sym_new] = ACTIONS(2671), + [anon_sym_requires] = ACTIONS(2671), + [sym_this] = ACTIONS(2671), }, - [665] = { - [sym_identifier] = ACTIONS(2875), - [aux_sym_preproc_include_token1] = ACTIONS(2875), - [aux_sym_preproc_def_token1] = ACTIONS(2875), - [aux_sym_preproc_if_token1] = ACTIONS(2875), - [aux_sym_preproc_if_token2] = ACTIONS(2875), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2875), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2875), - [sym_preproc_directive] = ACTIONS(2875), - [anon_sym_LPAREN2] = ACTIONS(2877), - [anon_sym_BANG] = ACTIONS(2877), - [anon_sym_TILDE] = ACTIONS(2877), - [anon_sym_DASH] = ACTIONS(2875), - [anon_sym_PLUS] = ACTIONS(2875), - [anon_sym_STAR] = ACTIONS(2877), - [anon_sym_AMP_AMP] = ACTIONS(2877), - [anon_sym_AMP] = ACTIONS(2875), - [anon_sym_SEMI] = ACTIONS(2877), - [anon_sym___extension__] = ACTIONS(2875), - [anon_sym_typedef] = ACTIONS(2875), - [anon_sym_virtual] = ACTIONS(2875), - [anon_sym_extern] = ACTIONS(2875), - [anon_sym___attribute__] = ACTIONS(2875), - [anon_sym___attribute] = ACTIONS(2875), - [anon_sym_using] = ACTIONS(2875), - [anon_sym_COLON_COLON] = ACTIONS(2877), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2877), - [anon_sym___declspec] = ACTIONS(2875), - [anon_sym___based] = ACTIONS(2875), - [anon_sym___cdecl] = ACTIONS(2875), - [anon_sym___clrcall] = ACTIONS(2875), - [anon_sym___stdcall] = ACTIONS(2875), - [anon_sym___fastcall] = ACTIONS(2875), - [anon_sym___thiscall] = ACTIONS(2875), - [anon_sym___vectorcall] = ACTIONS(2875), - [anon_sym_LBRACE] = ACTIONS(2877), - [anon_sym_signed] = ACTIONS(2875), - [anon_sym_unsigned] = ACTIONS(2875), - [anon_sym_long] = ACTIONS(2875), - [anon_sym_short] = ACTIONS(2875), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_static] = ACTIONS(2875), - [anon_sym_register] = ACTIONS(2875), - [anon_sym_inline] = ACTIONS(2875), - [anon_sym___inline] = ACTIONS(2875), - [anon_sym___inline__] = ACTIONS(2875), - [anon_sym___forceinline] = ACTIONS(2875), - [anon_sym_thread_local] = ACTIONS(2875), - [anon_sym___thread] = ACTIONS(2875), - [anon_sym_const] = ACTIONS(2875), - [anon_sym_constexpr] = ACTIONS(2875), - [anon_sym_volatile] = ACTIONS(2875), - [anon_sym_restrict] = ACTIONS(2875), - [anon_sym___restrict__] = ACTIONS(2875), - [anon_sym__Atomic] = ACTIONS(2875), - [anon_sym__Noreturn] = ACTIONS(2875), - [anon_sym_noreturn] = ACTIONS(2875), - [anon_sym__Nonnull] = ACTIONS(2875), - [anon_sym_mutable] = ACTIONS(2875), - [anon_sym_constinit] = ACTIONS(2875), - [anon_sym_consteval] = ACTIONS(2875), - [anon_sym_alignas] = ACTIONS(2875), - [anon_sym__Alignas] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2875), - [anon_sym_enum] = ACTIONS(2875), - [anon_sym_class] = ACTIONS(2875), - [anon_sym_struct] = ACTIONS(2875), - [anon_sym_union] = ACTIONS(2875), - [anon_sym_if] = ACTIONS(2875), - [anon_sym_switch] = ACTIONS(2875), - [anon_sym_case] = ACTIONS(2875), - [anon_sym_default] = ACTIONS(2875), - [anon_sym_while] = ACTIONS(2875), - [anon_sym_do] = ACTIONS(2875), - [anon_sym_for] = ACTIONS(2875), - [anon_sym_return] = ACTIONS(2875), - [anon_sym_break] = ACTIONS(2875), - [anon_sym_continue] = ACTIONS(2875), - [anon_sym_goto] = ACTIONS(2875), - [anon_sym___try] = ACTIONS(2875), - [anon_sym___leave] = ACTIONS(2875), - [anon_sym_not] = ACTIONS(2875), - [anon_sym_compl] = ACTIONS(2875), - [anon_sym_DASH_DASH] = ACTIONS(2877), - [anon_sym_PLUS_PLUS] = ACTIONS(2877), - [anon_sym_sizeof] = ACTIONS(2875), - [anon_sym___alignof__] = ACTIONS(2875), - [anon_sym___alignof] = ACTIONS(2875), - [anon_sym__alignof] = ACTIONS(2875), - [anon_sym_alignof] = ACTIONS(2875), - [anon_sym__Alignof] = ACTIONS(2875), - [anon_sym_offsetof] = ACTIONS(2875), - [anon_sym__Generic] = ACTIONS(2875), - [anon_sym_asm] = ACTIONS(2875), - [anon_sym___asm__] = ACTIONS(2875), - [anon_sym___asm] = ACTIONS(2875), - [sym_number_literal] = ACTIONS(2877), - [anon_sym_L_SQUOTE] = ACTIONS(2877), - [anon_sym_u_SQUOTE] = ACTIONS(2877), - [anon_sym_U_SQUOTE] = ACTIONS(2877), - [anon_sym_u8_SQUOTE] = ACTIONS(2877), - [anon_sym_SQUOTE] = ACTIONS(2877), - [anon_sym_L_DQUOTE] = ACTIONS(2877), - [anon_sym_u_DQUOTE] = ACTIONS(2877), - [anon_sym_U_DQUOTE] = ACTIONS(2877), - [anon_sym_u8_DQUOTE] = ACTIONS(2877), - [anon_sym_DQUOTE] = ACTIONS(2877), - [sym_true] = ACTIONS(2875), - [sym_false] = ACTIONS(2875), - [anon_sym_NULL] = ACTIONS(2875), - [anon_sym_nullptr] = ACTIONS(2875), + [660] = { + [ts_builtin_sym_end] = ACTIONS(2857), + [sym_identifier] = ACTIONS(2855), + [aux_sym_preproc_include_token1] = ACTIONS(2855), + [aux_sym_preproc_def_token1] = ACTIONS(2855), + [aux_sym_preproc_if_token1] = ACTIONS(2855), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2855), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2855), + [sym_preproc_directive] = ACTIONS(2855), + [anon_sym_LPAREN2] = ACTIONS(2857), + [anon_sym_BANG] = ACTIONS(2857), + [anon_sym_TILDE] = ACTIONS(2857), + [anon_sym_DASH] = ACTIONS(2855), + [anon_sym_PLUS] = ACTIONS(2855), + [anon_sym_STAR] = ACTIONS(2857), + [anon_sym_AMP_AMP] = ACTIONS(2857), + [anon_sym_AMP] = ACTIONS(2855), + [anon_sym_SEMI] = ACTIONS(2857), + [anon_sym___extension__] = ACTIONS(2855), + [anon_sym_typedef] = ACTIONS(2855), + [anon_sym_virtual] = ACTIONS(2855), + [anon_sym_extern] = ACTIONS(2855), + [anon_sym___attribute__] = ACTIONS(2855), + [anon_sym___attribute] = ACTIONS(2855), + [anon_sym_using] = ACTIONS(2855), + [anon_sym_COLON_COLON] = ACTIONS(2857), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2857), + [anon_sym___declspec] = ACTIONS(2855), + [anon_sym___based] = ACTIONS(2855), + [anon_sym___cdecl] = ACTIONS(2855), + [anon_sym___clrcall] = ACTIONS(2855), + [anon_sym___stdcall] = ACTIONS(2855), + [anon_sym___fastcall] = ACTIONS(2855), + [anon_sym___thiscall] = ACTIONS(2855), + [anon_sym___vectorcall] = ACTIONS(2855), + [anon_sym_LBRACE] = ACTIONS(2857), + [anon_sym_signed] = ACTIONS(2855), + [anon_sym_unsigned] = ACTIONS(2855), + [anon_sym_long] = ACTIONS(2855), + [anon_sym_short] = ACTIONS(2855), + [anon_sym_LBRACK] = ACTIONS(2855), + [anon_sym_static] = ACTIONS(2855), + [anon_sym_register] = ACTIONS(2855), + [anon_sym_inline] = ACTIONS(2855), + [anon_sym___inline] = ACTIONS(2855), + [anon_sym___inline__] = ACTIONS(2855), + [anon_sym___forceinline] = ACTIONS(2855), + [anon_sym_thread_local] = ACTIONS(2855), + [anon_sym___thread] = ACTIONS(2855), + [anon_sym_const] = ACTIONS(2855), + [anon_sym_constexpr] = ACTIONS(2855), + [anon_sym_volatile] = ACTIONS(2855), + [anon_sym_restrict] = ACTIONS(2855), + [anon_sym___restrict__] = ACTIONS(2855), + [anon_sym__Atomic] = ACTIONS(2855), + [anon_sym__Noreturn] = ACTIONS(2855), + [anon_sym_noreturn] = ACTIONS(2855), + [anon_sym__Nonnull] = ACTIONS(2855), + [anon_sym_mutable] = ACTIONS(2855), + [anon_sym_constinit] = ACTIONS(2855), + [anon_sym_consteval] = ACTIONS(2855), + [anon_sym_alignas] = ACTIONS(2855), + [anon_sym__Alignas] = ACTIONS(2855), + [sym_primitive_type] = ACTIONS(2855), + [anon_sym_enum] = ACTIONS(2855), + [anon_sym_class] = ACTIONS(2855), + [anon_sym_struct] = ACTIONS(2855), + [anon_sym_union] = ACTIONS(2855), + [anon_sym_if] = ACTIONS(2855), + [anon_sym_switch] = ACTIONS(2855), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_default] = ACTIONS(2855), + [anon_sym_while] = ACTIONS(2855), + [anon_sym_do] = ACTIONS(2855), + [anon_sym_for] = ACTIONS(2855), + [anon_sym_return] = ACTIONS(2855), + [anon_sym_break] = ACTIONS(2855), + [anon_sym_continue] = ACTIONS(2855), + [anon_sym_goto] = ACTIONS(2855), + [anon_sym_not] = ACTIONS(2855), + [anon_sym_compl] = ACTIONS(2855), + [anon_sym_DASH_DASH] = ACTIONS(2857), + [anon_sym_PLUS_PLUS] = ACTIONS(2857), + [anon_sym_sizeof] = ACTIONS(2855), + [anon_sym___alignof__] = ACTIONS(2855), + [anon_sym___alignof] = ACTIONS(2855), + [anon_sym__alignof] = ACTIONS(2855), + [anon_sym_alignof] = ACTIONS(2855), + [anon_sym__Alignof] = ACTIONS(2855), + [anon_sym_offsetof] = ACTIONS(2855), + [anon_sym__Generic] = ACTIONS(2855), + [anon_sym_asm] = ACTIONS(2855), + [anon_sym___asm__] = ACTIONS(2855), + [anon_sym___asm] = ACTIONS(2855), + [sym_number_literal] = ACTIONS(2857), + [anon_sym_L_SQUOTE] = ACTIONS(2857), + [anon_sym_u_SQUOTE] = ACTIONS(2857), + [anon_sym_U_SQUOTE] = ACTIONS(2857), + [anon_sym_u8_SQUOTE] = ACTIONS(2857), + [anon_sym_SQUOTE] = ACTIONS(2857), + [anon_sym_L_DQUOTE] = ACTIONS(2857), + [anon_sym_u_DQUOTE] = ACTIONS(2857), + [anon_sym_U_DQUOTE] = ACTIONS(2857), + [anon_sym_u8_DQUOTE] = ACTIONS(2857), + [anon_sym_DQUOTE] = ACTIONS(2857), + [sym_true] = ACTIONS(2855), + [sym_false] = ACTIONS(2855), + [anon_sym_NULL] = ACTIONS(2855), + [anon_sym_nullptr] = ACTIONS(2855), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2875), - [anon_sym_decltype] = ACTIONS(2875), - [anon_sym_explicit] = ACTIONS(2875), - [anon_sym_typename] = ACTIONS(2875), - [anon_sym_template] = ACTIONS(2875), - [anon_sym_operator] = ACTIONS(2875), - [anon_sym_try] = ACTIONS(2875), - [anon_sym_delete] = ACTIONS(2875), - [anon_sym_throw] = ACTIONS(2875), - [anon_sym_namespace] = ACTIONS(2875), - [anon_sym_static_assert] = ACTIONS(2875), - [anon_sym_concept] = ACTIONS(2875), - [anon_sym_co_return] = ACTIONS(2875), - [anon_sym_co_yield] = ACTIONS(2875), - [anon_sym_R_DQUOTE] = ACTIONS(2877), - [anon_sym_LR_DQUOTE] = ACTIONS(2877), - [anon_sym_uR_DQUOTE] = ACTIONS(2877), - [anon_sym_UR_DQUOTE] = ACTIONS(2877), - [anon_sym_u8R_DQUOTE] = ACTIONS(2877), - [anon_sym_co_await] = ACTIONS(2875), - [anon_sym_new] = ACTIONS(2875), - [anon_sym_requires] = ACTIONS(2875), - [sym_this] = ACTIONS(2875), + [sym_auto] = ACTIONS(2855), + [anon_sym_decltype] = ACTIONS(2855), + [anon_sym_explicit] = ACTIONS(2855), + [anon_sym_typename] = ACTIONS(2855), + [anon_sym_export] = ACTIONS(2855), + [anon_sym_module] = ACTIONS(2855), + [anon_sym_import] = ACTIONS(2855), + [anon_sym_template] = ACTIONS(2855), + [anon_sym_operator] = ACTIONS(2855), + [anon_sym_try] = ACTIONS(2855), + [anon_sym_delete] = ACTIONS(2855), + [anon_sym_throw] = ACTIONS(2855), + [anon_sym_namespace] = ACTIONS(2855), + [anon_sym_static_assert] = ACTIONS(2855), + [anon_sym_concept] = ACTIONS(2855), + [anon_sym_co_return] = ACTIONS(2855), + [anon_sym_co_yield] = ACTIONS(2855), + [anon_sym_R_DQUOTE] = ACTIONS(2857), + [anon_sym_LR_DQUOTE] = ACTIONS(2857), + [anon_sym_uR_DQUOTE] = ACTIONS(2857), + [anon_sym_UR_DQUOTE] = ACTIONS(2857), + [anon_sym_u8R_DQUOTE] = ACTIONS(2857), + [anon_sym_co_await] = ACTIONS(2855), + [anon_sym_new] = ACTIONS(2855), + [anon_sym_requires] = ACTIONS(2855), + [sym_this] = ACTIONS(2855), }, - [666] = { - [sym_identifier] = ACTIONS(2879), - [aux_sym_preproc_include_token1] = ACTIONS(2879), - [aux_sym_preproc_def_token1] = ACTIONS(2879), - [aux_sym_preproc_if_token1] = ACTIONS(2879), - [aux_sym_preproc_if_token2] = ACTIONS(2879), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2879), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2879), - [sym_preproc_directive] = ACTIONS(2879), - [anon_sym_LPAREN2] = ACTIONS(2881), - [anon_sym_BANG] = ACTIONS(2881), - [anon_sym_TILDE] = ACTIONS(2881), - [anon_sym_DASH] = ACTIONS(2879), - [anon_sym_PLUS] = ACTIONS(2879), - [anon_sym_STAR] = ACTIONS(2881), - [anon_sym_AMP_AMP] = ACTIONS(2881), - [anon_sym_AMP] = ACTIONS(2879), - [anon_sym_SEMI] = ACTIONS(2881), - [anon_sym___extension__] = ACTIONS(2879), - [anon_sym_typedef] = ACTIONS(2879), - [anon_sym_virtual] = ACTIONS(2879), - [anon_sym_extern] = ACTIONS(2879), - [anon_sym___attribute__] = ACTIONS(2879), - [anon_sym___attribute] = ACTIONS(2879), - [anon_sym_using] = ACTIONS(2879), - [anon_sym_COLON_COLON] = ACTIONS(2881), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2881), - [anon_sym___declspec] = ACTIONS(2879), - [anon_sym___based] = ACTIONS(2879), - [anon_sym___cdecl] = ACTIONS(2879), - [anon_sym___clrcall] = ACTIONS(2879), - [anon_sym___stdcall] = ACTIONS(2879), - [anon_sym___fastcall] = ACTIONS(2879), - [anon_sym___thiscall] = ACTIONS(2879), - [anon_sym___vectorcall] = ACTIONS(2879), - [anon_sym_LBRACE] = ACTIONS(2881), - [anon_sym_signed] = ACTIONS(2879), - [anon_sym_unsigned] = ACTIONS(2879), - [anon_sym_long] = ACTIONS(2879), - [anon_sym_short] = ACTIONS(2879), - [anon_sym_LBRACK] = ACTIONS(2879), - [anon_sym_static] = ACTIONS(2879), - [anon_sym_register] = ACTIONS(2879), - [anon_sym_inline] = ACTIONS(2879), - [anon_sym___inline] = ACTIONS(2879), - [anon_sym___inline__] = ACTIONS(2879), - [anon_sym___forceinline] = ACTIONS(2879), - [anon_sym_thread_local] = ACTIONS(2879), - [anon_sym___thread] = ACTIONS(2879), - [anon_sym_const] = ACTIONS(2879), - [anon_sym_constexpr] = ACTIONS(2879), - [anon_sym_volatile] = ACTIONS(2879), - [anon_sym_restrict] = ACTIONS(2879), - [anon_sym___restrict__] = ACTIONS(2879), - [anon_sym__Atomic] = ACTIONS(2879), - [anon_sym__Noreturn] = ACTIONS(2879), - [anon_sym_noreturn] = ACTIONS(2879), - [anon_sym__Nonnull] = ACTIONS(2879), - [anon_sym_mutable] = ACTIONS(2879), - [anon_sym_constinit] = ACTIONS(2879), - [anon_sym_consteval] = ACTIONS(2879), - [anon_sym_alignas] = ACTIONS(2879), - [anon_sym__Alignas] = ACTIONS(2879), - [sym_primitive_type] = ACTIONS(2879), - [anon_sym_enum] = ACTIONS(2879), - [anon_sym_class] = ACTIONS(2879), - [anon_sym_struct] = ACTIONS(2879), - [anon_sym_union] = ACTIONS(2879), - [anon_sym_if] = ACTIONS(2879), - [anon_sym_switch] = ACTIONS(2879), - [anon_sym_case] = ACTIONS(2879), - [anon_sym_default] = ACTIONS(2879), - [anon_sym_while] = ACTIONS(2879), - [anon_sym_do] = ACTIONS(2879), - [anon_sym_for] = ACTIONS(2879), - [anon_sym_return] = ACTIONS(2879), - [anon_sym_break] = ACTIONS(2879), - [anon_sym_continue] = ACTIONS(2879), - [anon_sym_goto] = ACTIONS(2879), - [anon_sym___try] = ACTIONS(2879), - [anon_sym___leave] = ACTIONS(2879), - [anon_sym_not] = ACTIONS(2879), - [anon_sym_compl] = ACTIONS(2879), - [anon_sym_DASH_DASH] = ACTIONS(2881), - [anon_sym_PLUS_PLUS] = ACTIONS(2881), - [anon_sym_sizeof] = ACTIONS(2879), - [anon_sym___alignof__] = ACTIONS(2879), - [anon_sym___alignof] = ACTIONS(2879), - [anon_sym__alignof] = ACTIONS(2879), - [anon_sym_alignof] = ACTIONS(2879), - [anon_sym__Alignof] = ACTIONS(2879), - [anon_sym_offsetof] = ACTIONS(2879), - [anon_sym__Generic] = ACTIONS(2879), - [anon_sym_asm] = ACTIONS(2879), - [anon_sym___asm__] = ACTIONS(2879), - [anon_sym___asm] = ACTIONS(2879), - [sym_number_literal] = ACTIONS(2881), - [anon_sym_L_SQUOTE] = ACTIONS(2881), - [anon_sym_u_SQUOTE] = ACTIONS(2881), - [anon_sym_U_SQUOTE] = ACTIONS(2881), - [anon_sym_u8_SQUOTE] = ACTIONS(2881), - [anon_sym_SQUOTE] = ACTIONS(2881), - [anon_sym_L_DQUOTE] = ACTIONS(2881), - [anon_sym_u_DQUOTE] = ACTIONS(2881), - [anon_sym_U_DQUOTE] = ACTIONS(2881), - [anon_sym_u8_DQUOTE] = ACTIONS(2881), - [anon_sym_DQUOTE] = ACTIONS(2881), - [sym_true] = ACTIONS(2879), - [sym_false] = ACTIONS(2879), - [anon_sym_NULL] = ACTIONS(2879), - [anon_sym_nullptr] = ACTIONS(2879), + [661] = { + [ts_builtin_sym_end] = ACTIONS(3603), + [sym_identifier] = ACTIONS(3605), + [aux_sym_preproc_include_token1] = ACTIONS(3605), + [aux_sym_preproc_def_token1] = ACTIONS(3605), + [aux_sym_preproc_if_token1] = ACTIONS(3605), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3605), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3605), + [sym_preproc_directive] = ACTIONS(3605), + [anon_sym_LPAREN2] = ACTIONS(3603), + [anon_sym_BANG] = ACTIONS(3603), + [anon_sym_TILDE] = ACTIONS(3603), + [anon_sym_DASH] = ACTIONS(3605), + [anon_sym_PLUS] = ACTIONS(3605), + [anon_sym_STAR] = ACTIONS(3603), + [anon_sym_AMP_AMP] = ACTIONS(3603), + [anon_sym_AMP] = ACTIONS(3605), + [anon_sym_SEMI] = ACTIONS(3603), + [anon_sym___extension__] = ACTIONS(3605), + [anon_sym_typedef] = ACTIONS(3605), + [anon_sym_virtual] = ACTIONS(3605), + [anon_sym_extern] = ACTIONS(3605), + [anon_sym___attribute__] = ACTIONS(3605), + [anon_sym___attribute] = ACTIONS(3605), + [anon_sym_using] = ACTIONS(3605), + [anon_sym_COLON_COLON] = ACTIONS(3603), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3603), + [anon_sym___declspec] = ACTIONS(3605), + [anon_sym___based] = ACTIONS(3605), + [anon_sym___cdecl] = ACTIONS(3605), + [anon_sym___clrcall] = ACTIONS(3605), + [anon_sym___stdcall] = ACTIONS(3605), + [anon_sym___fastcall] = ACTIONS(3605), + [anon_sym___thiscall] = ACTIONS(3605), + [anon_sym___vectorcall] = ACTIONS(3605), + [anon_sym_LBRACE] = ACTIONS(3603), + [anon_sym_signed] = ACTIONS(3605), + [anon_sym_unsigned] = ACTIONS(3605), + [anon_sym_long] = ACTIONS(3605), + [anon_sym_short] = ACTIONS(3605), + [anon_sym_LBRACK] = ACTIONS(3605), + [anon_sym_static] = ACTIONS(3605), + [anon_sym_register] = ACTIONS(3605), + [anon_sym_inline] = ACTIONS(3605), + [anon_sym___inline] = ACTIONS(3605), + [anon_sym___inline__] = ACTIONS(3605), + [anon_sym___forceinline] = ACTIONS(3605), + [anon_sym_thread_local] = ACTIONS(3605), + [anon_sym___thread] = ACTIONS(3605), + [anon_sym_const] = ACTIONS(3605), + [anon_sym_constexpr] = ACTIONS(3605), + [anon_sym_volatile] = ACTIONS(3605), + [anon_sym_restrict] = ACTIONS(3605), + [anon_sym___restrict__] = ACTIONS(3605), + [anon_sym__Atomic] = ACTIONS(3605), + [anon_sym__Noreturn] = ACTIONS(3605), + [anon_sym_noreturn] = ACTIONS(3605), + [anon_sym__Nonnull] = ACTIONS(3605), + [anon_sym_mutable] = ACTIONS(3605), + [anon_sym_constinit] = ACTIONS(3605), + [anon_sym_consteval] = ACTIONS(3605), + [anon_sym_alignas] = ACTIONS(3605), + [anon_sym__Alignas] = ACTIONS(3605), + [sym_primitive_type] = ACTIONS(3605), + [anon_sym_enum] = ACTIONS(3605), + [anon_sym_class] = ACTIONS(3605), + [anon_sym_struct] = ACTIONS(3605), + [anon_sym_union] = ACTIONS(3605), + [anon_sym_if] = ACTIONS(3605), + [anon_sym_switch] = ACTIONS(3605), + [anon_sym_case] = ACTIONS(3605), + [anon_sym_default] = ACTIONS(3605), + [anon_sym_while] = ACTIONS(3605), + [anon_sym_do] = ACTIONS(3605), + [anon_sym_for] = ACTIONS(3605), + [anon_sym_return] = ACTIONS(3605), + [anon_sym_break] = ACTIONS(3605), + [anon_sym_continue] = ACTIONS(3605), + [anon_sym_goto] = ACTIONS(3605), + [anon_sym_not] = ACTIONS(3605), + [anon_sym_compl] = ACTIONS(3605), + [anon_sym_DASH_DASH] = ACTIONS(3603), + [anon_sym_PLUS_PLUS] = ACTIONS(3603), + [anon_sym_sizeof] = ACTIONS(3605), + [anon_sym___alignof__] = ACTIONS(3605), + [anon_sym___alignof] = ACTIONS(3605), + [anon_sym__alignof] = ACTIONS(3605), + [anon_sym_alignof] = ACTIONS(3605), + [anon_sym__Alignof] = ACTIONS(3605), + [anon_sym_offsetof] = ACTIONS(3605), + [anon_sym__Generic] = ACTIONS(3605), + [anon_sym_asm] = ACTIONS(3605), + [anon_sym___asm__] = ACTIONS(3605), + [anon_sym___asm] = ACTIONS(3605), + [sym_number_literal] = ACTIONS(3603), + [anon_sym_L_SQUOTE] = ACTIONS(3603), + [anon_sym_u_SQUOTE] = ACTIONS(3603), + [anon_sym_U_SQUOTE] = ACTIONS(3603), + [anon_sym_u8_SQUOTE] = ACTIONS(3603), + [anon_sym_SQUOTE] = ACTIONS(3603), + [anon_sym_L_DQUOTE] = ACTIONS(3603), + [anon_sym_u_DQUOTE] = ACTIONS(3603), + [anon_sym_U_DQUOTE] = ACTIONS(3603), + [anon_sym_u8_DQUOTE] = ACTIONS(3603), + [anon_sym_DQUOTE] = ACTIONS(3603), + [sym_true] = ACTIONS(3605), + [sym_false] = ACTIONS(3605), + [anon_sym_NULL] = ACTIONS(3605), + [anon_sym_nullptr] = ACTIONS(3605), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2879), - [anon_sym_decltype] = ACTIONS(2879), - [anon_sym_explicit] = ACTIONS(2879), - [anon_sym_typename] = ACTIONS(2879), - [anon_sym_template] = ACTIONS(2879), - [anon_sym_operator] = ACTIONS(2879), - [anon_sym_try] = ACTIONS(2879), - [anon_sym_delete] = ACTIONS(2879), - [anon_sym_throw] = ACTIONS(2879), - [anon_sym_namespace] = ACTIONS(2879), - [anon_sym_static_assert] = ACTIONS(2879), - [anon_sym_concept] = ACTIONS(2879), - [anon_sym_co_return] = ACTIONS(2879), - [anon_sym_co_yield] = ACTIONS(2879), - [anon_sym_R_DQUOTE] = ACTIONS(2881), - [anon_sym_LR_DQUOTE] = ACTIONS(2881), - [anon_sym_uR_DQUOTE] = ACTIONS(2881), - [anon_sym_UR_DQUOTE] = ACTIONS(2881), - [anon_sym_u8R_DQUOTE] = ACTIONS(2881), - [anon_sym_co_await] = ACTIONS(2879), - [anon_sym_new] = ACTIONS(2879), - [anon_sym_requires] = ACTIONS(2879), - [sym_this] = ACTIONS(2879), + [sym_auto] = ACTIONS(3605), + [anon_sym_decltype] = ACTIONS(3605), + [anon_sym_explicit] = ACTIONS(3605), + [anon_sym_typename] = ACTIONS(3605), + [anon_sym_export] = ACTIONS(3605), + [anon_sym_module] = ACTIONS(3605), + [anon_sym_import] = ACTIONS(3605), + [anon_sym_template] = ACTIONS(3605), + [anon_sym_operator] = ACTIONS(3605), + [anon_sym_try] = ACTIONS(3605), + [anon_sym_delete] = ACTIONS(3605), + [anon_sym_throw] = ACTIONS(3605), + [anon_sym_namespace] = ACTIONS(3605), + [anon_sym_static_assert] = ACTIONS(3605), + [anon_sym_concept] = ACTIONS(3605), + [anon_sym_co_return] = ACTIONS(3605), + [anon_sym_co_yield] = ACTIONS(3605), + [anon_sym_R_DQUOTE] = ACTIONS(3603), + [anon_sym_LR_DQUOTE] = ACTIONS(3603), + [anon_sym_uR_DQUOTE] = ACTIONS(3603), + [anon_sym_UR_DQUOTE] = ACTIONS(3603), + [anon_sym_u8R_DQUOTE] = ACTIONS(3603), + [anon_sym_co_await] = ACTIONS(3605), + [anon_sym_new] = ACTIONS(3605), + [anon_sym_requires] = ACTIONS(3605), + [sym_this] = ACTIONS(3605), }, - [667] = { - [sym_identifier] = ACTIONS(2867), - [aux_sym_preproc_include_token1] = ACTIONS(2867), - [aux_sym_preproc_def_token1] = ACTIONS(2867), - [aux_sym_preproc_if_token1] = ACTIONS(2867), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), - [sym_preproc_directive] = ACTIONS(2867), - [anon_sym_LPAREN2] = ACTIONS(2869), - [anon_sym_BANG] = ACTIONS(2869), - [anon_sym_TILDE] = ACTIONS(2869), - [anon_sym_DASH] = ACTIONS(2867), - [anon_sym_PLUS] = ACTIONS(2867), - [anon_sym_STAR] = ACTIONS(2869), - [anon_sym_AMP_AMP] = ACTIONS(2869), - [anon_sym_AMP] = ACTIONS(2867), - [anon_sym_SEMI] = ACTIONS(2869), - [anon_sym___extension__] = ACTIONS(2867), - [anon_sym_typedef] = ACTIONS(2867), - [anon_sym_virtual] = ACTIONS(2867), - [anon_sym_extern] = ACTIONS(2867), - [anon_sym___attribute__] = ACTIONS(2867), - [anon_sym___attribute] = ACTIONS(2867), - [anon_sym_using] = ACTIONS(2867), - [anon_sym_COLON_COLON] = ACTIONS(2869), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), - [anon_sym___declspec] = ACTIONS(2867), - [anon_sym___based] = ACTIONS(2867), - [anon_sym___cdecl] = ACTIONS(2867), - [anon_sym___clrcall] = ACTIONS(2867), - [anon_sym___stdcall] = ACTIONS(2867), - [anon_sym___fastcall] = ACTIONS(2867), - [anon_sym___thiscall] = ACTIONS(2867), - [anon_sym___vectorcall] = ACTIONS(2867), - [anon_sym_LBRACE] = ACTIONS(2869), - [anon_sym_RBRACE] = ACTIONS(2869), - [anon_sym_signed] = ACTIONS(2867), - [anon_sym_unsigned] = ACTIONS(2867), - [anon_sym_long] = ACTIONS(2867), - [anon_sym_short] = ACTIONS(2867), - [anon_sym_LBRACK] = ACTIONS(2867), - [anon_sym_static] = ACTIONS(2867), - [anon_sym_register] = ACTIONS(2867), - [anon_sym_inline] = ACTIONS(2867), - [anon_sym___inline] = ACTIONS(2867), - [anon_sym___inline__] = ACTIONS(2867), - [anon_sym___forceinline] = ACTIONS(2867), - [anon_sym_thread_local] = ACTIONS(2867), - [anon_sym___thread] = ACTIONS(2867), - [anon_sym_const] = ACTIONS(2867), - [anon_sym_constexpr] = ACTIONS(2867), - [anon_sym_volatile] = ACTIONS(2867), - [anon_sym_restrict] = ACTIONS(2867), - [anon_sym___restrict__] = ACTIONS(2867), - [anon_sym__Atomic] = ACTIONS(2867), - [anon_sym__Noreturn] = ACTIONS(2867), - [anon_sym_noreturn] = ACTIONS(2867), - [anon_sym__Nonnull] = ACTIONS(2867), - [anon_sym_mutable] = ACTIONS(2867), - [anon_sym_constinit] = ACTIONS(2867), - [anon_sym_consteval] = ACTIONS(2867), - [anon_sym_alignas] = ACTIONS(2867), - [anon_sym__Alignas] = ACTIONS(2867), - [sym_primitive_type] = ACTIONS(2867), - [anon_sym_enum] = ACTIONS(2867), - [anon_sym_class] = ACTIONS(2867), - [anon_sym_struct] = ACTIONS(2867), - [anon_sym_union] = ACTIONS(2867), - [anon_sym_if] = ACTIONS(2867), - [anon_sym_switch] = ACTIONS(2867), - [anon_sym_case] = ACTIONS(2867), - [anon_sym_default] = ACTIONS(2867), - [anon_sym_while] = ACTIONS(2867), - [anon_sym_do] = ACTIONS(2867), - [anon_sym_for] = ACTIONS(2867), - [anon_sym_return] = ACTIONS(2867), - [anon_sym_break] = ACTIONS(2867), - [anon_sym_continue] = ACTIONS(2867), - [anon_sym_goto] = ACTIONS(2867), - [anon_sym___try] = ACTIONS(2867), - [anon_sym___leave] = ACTIONS(2867), - [anon_sym_not] = ACTIONS(2867), - [anon_sym_compl] = ACTIONS(2867), - [anon_sym_DASH_DASH] = ACTIONS(2869), - [anon_sym_PLUS_PLUS] = ACTIONS(2869), - [anon_sym_sizeof] = ACTIONS(2867), - [anon_sym___alignof__] = ACTIONS(2867), - [anon_sym___alignof] = ACTIONS(2867), - [anon_sym__alignof] = ACTIONS(2867), - [anon_sym_alignof] = ACTIONS(2867), - [anon_sym__Alignof] = ACTIONS(2867), - [anon_sym_offsetof] = ACTIONS(2867), - [anon_sym__Generic] = ACTIONS(2867), - [anon_sym_asm] = ACTIONS(2867), - [anon_sym___asm__] = ACTIONS(2867), - [anon_sym___asm] = ACTIONS(2867), - [sym_number_literal] = ACTIONS(2869), - [anon_sym_L_SQUOTE] = ACTIONS(2869), - [anon_sym_u_SQUOTE] = ACTIONS(2869), - [anon_sym_U_SQUOTE] = ACTIONS(2869), - [anon_sym_u8_SQUOTE] = ACTIONS(2869), - [anon_sym_SQUOTE] = ACTIONS(2869), - [anon_sym_L_DQUOTE] = ACTIONS(2869), - [anon_sym_u_DQUOTE] = ACTIONS(2869), - [anon_sym_U_DQUOTE] = ACTIONS(2869), - [anon_sym_u8_DQUOTE] = ACTIONS(2869), - [anon_sym_DQUOTE] = ACTIONS(2869), - [sym_true] = ACTIONS(2867), - [sym_false] = ACTIONS(2867), - [anon_sym_NULL] = ACTIONS(2867), - [anon_sym_nullptr] = ACTIONS(2867), + [662] = { + [ts_builtin_sym_end] = ACTIONS(2929), + [sym_identifier] = ACTIONS(2927), + [aux_sym_preproc_include_token1] = ACTIONS(2927), + [aux_sym_preproc_def_token1] = ACTIONS(2927), + [aux_sym_preproc_if_token1] = ACTIONS(2927), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2927), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2927), + [sym_preproc_directive] = ACTIONS(2927), + [anon_sym_LPAREN2] = ACTIONS(2929), + [anon_sym_BANG] = ACTIONS(2929), + [anon_sym_TILDE] = ACTIONS(2929), + [anon_sym_DASH] = ACTIONS(2927), + [anon_sym_PLUS] = ACTIONS(2927), + [anon_sym_STAR] = ACTIONS(2929), + [anon_sym_AMP_AMP] = ACTIONS(2929), + [anon_sym_AMP] = ACTIONS(2927), + [anon_sym_SEMI] = ACTIONS(2929), + [anon_sym___extension__] = ACTIONS(2927), + [anon_sym_typedef] = ACTIONS(2927), + [anon_sym_virtual] = ACTIONS(2927), + [anon_sym_extern] = ACTIONS(2927), + [anon_sym___attribute__] = ACTIONS(2927), + [anon_sym___attribute] = ACTIONS(2927), + [anon_sym_using] = ACTIONS(2927), + [anon_sym_COLON_COLON] = ACTIONS(2929), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2929), + [anon_sym___declspec] = ACTIONS(2927), + [anon_sym___based] = ACTIONS(2927), + [anon_sym___cdecl] = ACTIONS(2927), + [anon_sym___clrcall] = ACTIONS(2927), + [anon_sym___stdcall] = ACTIONS(2927), + [anon_sym___fastcall] = ACTIONS(2927), + [anon_sym___thiscall] = ACTIONS(2927), + [anon_sym___vectorcall] = ACTIONS(2927), + [anon_sym_LBRACE] = ACTIONS(2929), + [anon_sym_signed] = ACTIONS(2927), + [anon_sym_unsigned] = ACTIONS(2927), + [anon_sym_long] = ACTIONS(2927), + [anon_sym_short] = ACTIONS(2927), + [anon_sym_LBRACK] = ACTIONS(2927), + [anon_sym_static] = ACTIONS(2927), + [anon_sym_register] = ACTIONS(2927), + [anon_sym_inline] = ACTIONS(2927), + [anon_sym___inline] = ACTIONS(2927), + [anon_sym___inline__] = ACTIONS(2927), + [anon_sym___forceinline] = ACTIONS(2927), + [anon_sym_thread_local] = ACTIONS(2927), + [anon_sym___thread] = ACTIONS(2927), + [anon_sym_const] = ACTIONS(2927), + [anon_sym_constexpr] = ACTIONS(2927), + [anon_sym_volatile] = ACTIONS(2927), + [anon_sym_restrict] = ACTIONS(2927), + [anon_sym___restrict__] = ACTIONS(2927), + [anon_sym__Atomic] = ACTIONS(2927), + [anon_sym__Noreturn] = ACTIONS(2927), + [anon_sym_noreturn] = ACTIONS(2927), + [anon_sym__Nonnull] = ACTIONS(2927), + [anon_sym_mutable] = ACTIONS(2927), + [anon_sym_constinit] = ACTIONS(2927), + [anon_sym_consteval] = ACTIONS(2927), + [anon_sym_alignas] = ACTIONS(2927), + [anon_sym__Alignas] = ACTIONS(2927), + [sym_primitive_type] = ACTIONS(2927), + [anon_sym_enum] = ACTIONS(2927), + [anon_sym_class] = ACTIONS(2927), + [anon_sym_struct] = ACTIONS(2927), + [anon_sym_union] = ACTIONS(2927), + [anon_sym_if] = ACTIONS(2927), + [anon_sym_switch] = ACTIONS(2927), + [anon_sym_case] = ACTIONS(2927), + [anon_sym_default] = ACTIONS(2927), + [anon_sym_while] = ACTIONS(2927), + [anon_sym_do] = ACTIONS(2927), + [anon_sym_for] = ACTIONS(2927), + [anon_sym_return] = ACTIONS(2927), + [anon_sym_break] = ACTIONS(2927), + [anon_sym_continue] = ACTIONS(2927), + [anon_sym_goto] = ACTIONS(2927), + [anon_sym_not] = ACTIONS(2927), + [anon_sym_compl] = ACTIONS(2927), + [anon_sym_DASH_DASH] = ACTIONS(2929), + [anon_sym_PLUS_PLUS] = ACTIONS(2929), + [anon_sym_sizeof] = ACTIONS(2927), + [anon_sym___alignof__] = ACTIONS(2927), + [anon_sym___alignof] = ACTIONS(2927), + [anon_sym__alignof] = ACTIONS(2927), + [anon_sym_alignof] = ACTIONS(2927), + [anon_sym__Alignof] = ACTIONS(2927), + [anon_sym_offsetof] = ACTIONS(2927), + [anon_sym__Generic] = ACTIONS(2927), + [anon_sym_asm] = ACTIONS(2927), + [anon_sym___asm__] = ACTIONS(2927), + [anon_sym___asm] = ACTIONS(2927), + [sym_number_literal] = ACTIONS(2929), + [anon_sym_L_SQUOTE] = ACTIONS(2929), + [anon_sym_u_SQUOTE] = ACTIONS(2929), + [anon_sym_U_SQUOTE] = ACTIONS(2929), + [anon_sym_u8_SQUOTE] = ACTIONS(2929), + [anon_sym_SQUOTE] = ACTIONS(2929), + [anon_sym_L_DQUOTE] = ACTIONS(2929), + [anon_sym_u_DQUOTE] = ACTIONS(2929), + [anon_sym_U_DQUOTE] = ACTIONS(2929), + [anon_sym_u8_DQUOTE] = ACTIONS(2929), + [anon_sym_DQUOTE] = ACTIONS(2929), + [sym_true] = ACTIONS(2927), + [sym_false] = ACTIONS(2927), + [anon_sym_NULL] = ACTIONS(2927), + [anon_sym_nullptr] = ACTIONS(2927), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2867), - [anon_sym_decltype] = ACTIONS(2867), - [anon_sym_explicit] = ACTIONS(2867), - [anon_sym_typename] = ACTIONS(2867), - [anon_sym_template] = ACTIONS(2867), - [anon_sym_operator] = ACTIONS(2867), - [anon_sym_try] = ACTIONS(2867), - [anon_sym_delete] = ACTIONS(2867), - [anon_sym_throw] = ACTIONS(2867), - [anon_sym_namespace] = ACTIONS(2867), - [anon_sym_static_assert] = ACTIONS(2867), - [anon_sym_concept] = ACTIONS(2867), - [anon_sym_co_return] = ACTIONS(2867), - [anon_sym_co_yield] = ACTIONS(2867), - [anon_sym_R_DQUOTE] = ACTIONS(2869), - [anon_sym_LR_DQUOTE] = ACTIONS(2869), - [anon_sym_uR_DQUOTE] = ACTIONS(2869), - [anon_sym_UR_DQUOTE] = ACTIONS(2869), - [anon_sym_u8R_DQUOTE] = ACTIONS(2869), - [anon_sym_co_await] = ACTIONS(2867), - [anon_sym_new] = ACTIONS(2867), - [anon_sym_requires] = ACTIONS(2867), - [sym_this] = ACTIONS(2867), + [sym_auto] = ACTIONS(2927), + [anon_sym_decltype] = ACTIONS(2927), + [anon_sym_explicit] = ACTIONS(2927), + [anon_sym_typename] = ACTIONS(2927), + [anon_sym_export] = ACTIONS(2927), + [anon_sym_module] = ACTIONS(2927), + [anon_sym_import] = ACTIONS(2927), + [anon_sym_template] = ACTIONS(2927), + [anon_sym_operator] = ACTIONS(2927), + [anon_sym_try] = ACTIONS(2927), + [anon_sym_delete] = ACTIONS(2927), + [anon_sym_throw] = ACTIONS(2927), + [anon_sym_namespace] = ACTIONS(2927), + [anon_sym_static_assert] = ACTIONS(2927), + [anon_sym_concept] = ACTIONS(2927), + [anon_sym_co_return] = ACTIONS(2927), + [anon_sym_co_yield] = ACTIONS(2927), + [anon_sym_R_DQUOTE] = ACTIONS(2929), + [anon_sym_LR_DQUOTE] = ACTIONS(2929), + [anon_sym_uR_DQUOTE] = ACTIONS(2929), + [anon_sym_UR_DQUOTE] = ACTIONS(2929), + [anon_sym_u8R_DQUOTE] = ACTIONS(2929), + [anon_sym_co_await] = ACTIONS(2927), + [anon_sym_new] = ACTIONS(2927), + [anon_sym_requires] = ACTIONS(2927), + [sym_this] = ACTIONS(2927), }, - [668] = { - [sym_identifier] = ACTIONS(2871), - [aux_sym_preproc_include_token1] = ACTIONS(2871), - [aux_sym_preproc_def_token1] = ACTIONS(2871), - [aux_sym_preproc_if_token1] = ACTIONS(2871), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), - [sym_preproc_directive] = ACTIONS(2871), - [anon_sym_LPAREN2] = ACTIONS(2873), - [anon_sym_BANG] = ACTIONS(2873), - [anon_sym_TILDE] = ACTIONS(2873), - [anon_sym_DASH] = ACTIONS(2871), - [anon_sym_PLUS] = ACTIONS(2871), - [anon_sym_STAR] = ACTIONS(2873), - [anon_sym_AMP_AMP] = ACTIONS(2873), - [anon_sym_AMP] = ACTIONS(2871), - [anon_sym_SEMI] = ACTIONS(2873), - [anon_sym___extension__] = ACTIONS(2871), - [anon_sym_typedef] = ACTIONS(2871), - [anon_sym_virtual] = ACTIONS(2871), - [anon_sym_extern] = ACTIONS(2871), - [anon_sym___attribute__] = ACTIONS(2871), - [anon_sym___attribute] = ACTIONS(2871), - [anon_sym_using] = ACTIONS(2871), - [anon_sym_COLON_COLON] = ACTIONS(2873), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), - [anon_sym___declspec] = ACTIONS(2871), - [anon_sym___based] = ACTIONS(2871), - [anon_sym___cdecl] = ACTIONS(2871), - [anon_sym___clrcall] = ACTIONS(2871), - [anon_sym___stdcall] = ACTIONS(2871), - [anon_sym___fastcall] = ACTIONS(2871), - [anon_sym___thiscall] = ACTIONS(2871), - [anon_sym___vectorcall] = ACTIONS(2871), - [anon_sym_LBRACE] = ACTIONS(2873), - [anon_sym_RBRACE] = ACTIONS(2873), - [anon_sym_signed] = ACTIONS(2871), - [anon_sym_unsigned] = ACTIONS(2871), - [anon_sym_long] = ACTIONS(2871), - [anon_sym_short] = ACTIONS(2871), - [anon_sym_LBRACK] = ACTIONS(2871), - [anon_sym_static] = ACTIONS(2871), - [anon_sym_register] = ACTIONS(2871), - [anon_sym_inline] = ACTIONS(2871), - [anon_sym___inline] = ACTIONS(2871), - [anon_sym___inline__] = ACTIONS(2871), - [anon_sym___forceinline] = ACTIONS(2871), - [anon_sym_thread_local] = ACTIONS(2871), - [anon_sym___thread] = ACTIONS(2871), - [anon_sym_const] = ACTIONS(2871), - [anon_sym_constexpr] = ACTIONS(2871), - [anon_sym_volatile] = ACTIONS(2871), - [anon_sym_restrict] = ACTIONS(2871), - [anon_sym___restrict__] = ACTIONS(2871), - [anon_sym__Atomic] = ACTIONS(2871), - [anon_sym__Noreturn] = ACTIONS(2871), - [anon_sym_noreturn] = ACTIONS(2871), - [anon_sym__Nonnull] = ACTIONS(2871), - [anon_sym_mutable] = ACTIONS(2871), - [anon_sym_constinit] = ACTIONS(2871), - [anon_sym_consteval] = ACTIONS(2871), - [anon_sym_alignas] = ACTIONS(2871), - [anon_sym__Alignas] = ACTIONS(2871), - [sym_primitive_type] = ACTIONS(2871), - [anon_sym_enum] = ACTIONS(2871), - [anon_sym_class] = ACTIONS(2871), - [anon_sym_struct] = ACTIONS(2871), - [anon_sym_union] = ACTIONS(2871), - [anon_sym_if] = ACTIONS(2871), - [anon_sym_switch] = ACTIONS(2871), - [anon_sym_case] = ACTIONS(2871), - [anon_sym_default] = ACTIONS(2871), - [anon_sym_while] = ACTIONS(2871), - [anon_sym_do] = ACTIONS(2871), - [anon_sym_for] = ACTIONS(2871), - [anon_sym_return] = ACTIONS(2871), - [anon_sym_break] = ACTIONS(2871), - [anon_sym_continue] = ACTIONS(2871), - [anon_sym_goto] = ACTIONS(2871), - [anon_sym___try] = ACTIONS(2871), - [anon_sym___leave] = ACTIONS(2871), - [anon_sym_not] = ACTIONS(2871), - [anon_sym_compl] = ACTIONS(2871), - [anon_sym_DASH_DASH] = ACTIONS(2873), - [anon_sym_PLUS_PLUS] = ACTIONS(2873), - [anon_sym_sizeof] = ACTIONS(2871), - [anon_sym___alignof__] = ACTIONS(2871), - [anon_sym___alignof] = ACTIONS(2871), - [anon_sym__alignof] = ACTIONS(2871), - [anon_sym_alignof] = ACTIONS(2871), - [anon_sym__Alignof] = ACTIONS(2871), - [anon_sym_offsetof] = ACTIONS(2871), - [anon_sym__Generic] = ACTIONS(2871), - [anon_sym_asm] = ACTIONS(2871), - [anon_sym___asm__] = ACTIONS(2871), - [anon_sym___asm] = ACTIONS(2871), - [sym_number_literal] = ACTIONS(2873), - [anon_sym_L_SQUOTE] = ACTIONS(2873), - [anon_sym_u_SQUOTE] = ACTIONS(2873), - [anon_sym_U_SQUOTE] = ACTIONS(2873), - [anon_sym_u8_SQUOTE] = ACTIONS(2873), - [anon_sym_SQUOTE] = ACTIONS(2873), - [anon_sym_L_DQUOTE] = ACTIONS(2873), - [anon_sym_u_DQUOTE] = ACTIONS(2873), - [anon_sym_U_DQUOTE] = ACTIONS(2873), - [anon_sym_u8_DQUOTE] = ACTIONS(2873), - [anon_sym_DQUOTE] = ACTIONS(2873), - [sym_true] = ACTIONS(2871), - [sym_false] = ACTIONS(2871), - [anon_sym_NULL] = ACTIONS(2871), - [anon_sym_nullptr] = ACTIONS(2871), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2871), - [anon_sym_decltype] = ACTIONS(2871), - [anon_sym_explicit] = ACTIONS(2871), - [anon_sym_typename] = ACTIONS(2871), - [anon_sym_template] = ACTIONS(2871), - [anon_sym_operator] = ACTIONS(2871), - [anon_sym_try] = ACTIONS(2871), - [anon_sym_delete] = ACTIONS(2871), - [anon_sym_throw] = ACTIONS(2871), - [anon_sym_namespace] = ACTIONS(2871), - [anon_sym_static_assert] = ACTIONS(2871), - [anon_sym_concept] = ACTIONS(2871), - [anon_sym_co_return] = ACTIONS(2871), - [anon_sym_co_yield] = ACTIONS(2871), - [anon_sym_R_DQUOTE] = ACTIONS(2873), - [anon_sym_LR_DQUOTE] = ACTIONS(2873), - [anon_sym_uR_DQUOTE] = ACTIONS(2873), - [anon_sym_UR_DQUOTE] = ACTIONS(2873), - [anon_sym_u8R_DQUOTE] = ACTIONS(2873), - [anon_sym_co_await] = ACTIONS(2871), - [anon_sym_new] = ACTIONS(2871), - [anon_sym_requires] = ACTIONS(2871), - [sym_this] = ACTIONS(2871), + [663] = { + [ts_builtin_sym_end] = ACTIONS(3607), + [sym_identifier] = ACTIONS(3609), + [aux_sym_preproc_include_token1] = ACTIONS(3609), + [aux_sym_preproc_def_token1] = ACTIONS(3609), + [aux_sym_preproc_if_token1] = ACTIONS(3609), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3609), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3609), + [sym_preproc_directive] = ACTIONS(3609), + [anon_sym_LPAREN2] = ACTIONS(3607), + [anon_sym_BANG] = ACTIONS(3607), + [anon_sym_TILDE] = ACTIONS(3607), + [anon_sym_DASH] = ACTIONS(3609), + [anon_sym_PLUS] = ACTIONS(3609), + [anon_sym_STAR] = ACTIONS(3607), + [anon_sym_AMP_AMP] = ACTIONS(3607), + [anon_sym_AMP] = ACTIONS(3609), + [anon_sym_SEMI] = ACTIONS(3607), + [anon_sym___extension__] = ACTIONS(3609), + [anon_sym_typedef] = ACTIONS(3609), + [anon_sym_virtual] = ACTIONS(3609), + [anon_sym_extern] = ACTIONS(3609), + [anon_sym___attribute__] = ACTIONS(3609), + [anon_sym___attribute] = ACTIONS(3609), + [anon_sym_using] = ACTIONS(3609), + [anon_sym_COLON_COLON] = ACTIONS(3607), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3607), + [anon_sym___declspec] = ACTIONS(3609), + [anon_sym___based] = ACTIONS(3609), + [anon_sym___cdecl] = ACTIONS(3609), + [anon_sym___clrcall] = ACTIONS(3609), + [anon_sym___stdcall] = ACTIONS(3609), + [anon_sym___fastcall] = ACTIONS(3609), + [anon_sym___thiscall] = ACTIONS(3609), + [anon_sym___vectorcall] = ACTIONS(3609), + [anon_sym_LBRACE] = ACTIONS(3607), + [anon_sym_signed] = ACTIONS(3609), + [anon_sym_unsigned] = ACTIONS(3609), + [anon_sym_long] = ACTIONS(3609), + [anon_sym_short] = ACTIONS(3609), + [anon_sym_LBRACK] = ACTIONS(3609), + [anon_sym_static] = ACTIONS(3609), + [anon_sym_register] = ACTIONS(3609), + [anon_sym_inline] = ACTIONS(3609), + [anon_sym___inline] = ACTIONS(3609), + [anon_sym___inline__] = ACTIONS(3609), + [anon_sym___forceinline] = ACTIONS(3609), + [anon_sym_thread_local] = ACTIONS(3609), + [anon_sym___thread] = ACTIONS(3609), + [anon_sym_const] = ACTIONS(3609), + [anon_sym_constexpr] = ACTIONS(3609), + [anon_sym_volatile] = ACTIONS(3609), + [anon_sym_restrict] = ACTIONS(3609), + [anon_sym___restrict__] = ACTIONS(3609), + [anon_sym__Atomic] = ACTIONS(3609), + [anon_sym__Noreturn] = ACTIONS(3609), + [anon_sym_noreturn] = ACTIONS(3609), + [anon_sym__Nonnull] = ACTIONS(3609), + [anon_sym_mutable] = ACTIONS(3609), + [anon_sym_constinit] = ACTIONS(3609), + [anon_sym_consteval] = ACTIONS(3609), + [anon_sym_alignas] = ACTIONS(3609), + [anon_sym__Alignas] = ACTIONS(3609), + [sym_primitive_type] = ACTIONS(3609), + [anon_sym_enum] = ACTIONS(3609), + [anon_sym_class] = ACTIONS(3609), + [anon_sym_struct] = ACTIONS(3609), + [anon_sym_union] = ACTIONS(3609), + [anon_sym_if] = ACTIONS(3609), + [anon_sym_switch] = ACTIONS(3609), + [anon_sym_case] = ACTIONS(3609), + [anon_sym_default] = ACTIONS(3609), + [anon_sym_while] = ACTIONS(3609), + [anon_sym_do] = ACTIONS(3609), + [anon_sym_for] = ACTIONS(3609), + [anon_sym_return] = ACTIONS(3609), + [anon_sym_break] = ACTIONS(3609), + [anon_sym_continue] = ACTIONS(3609), + [anon_sym_goto] = ACTIONS(3609), + [anon_sym_not] = ACTIONS(3609), + [anon_sym_compl] = ACTIONS(3609), + [anon_sym_DASH_DASH] = ACTIONS(3607), + [anon_sym_PLUS_PLUS] = ACTIONS(3607), + [anon_sym_sizeof] = ACTIONS(3609), + [anon_sym___alignof__] = ACTIONS(3609), + [anon_sym___alignof] = ACTIONS(3609), + [anon_sym__alignof] = ACTIONS(3609), + [anon_sym_alignof] = ACTIONS(3609), + [anon_sym__Alignof] = ACTIONS(3609), + [anon_sym_offsetof] = ACTIONS(3609), + [anon_sym__Generic] = ACTIONS(3609), + [anon_sym_asm] = ACTIONS(3609), + [anon_sym___asm__] = ACTIONS(3609), + [anon_sym___asm] = ACTIONS(3609), + [sym_number_literal] = ACTIONS(3607), + [anon_sym_L_SQUOTE] = ACTIONS(3607), + [anon_sym_u_SQUOTE] = ACTIONS(3607), + [anon_sym_U_SQUOTE] = ACTIONS(3607), + [anon_sym_u8_SQUOTE] = ACTIONS(3607), + [anon_sym_SQUOTE] = ACTIONS(3607), + [anon_sym_L_DQUOTE] = ACTIONS(3607), + [anon_sym_u_DQUOTE] = ACTIONS(3607), + [anon_sym_U_DQUOTE] = ACTIONS(3607), + [anon_sym_u8_DQUOTE] = ACTIONS(3607), + [anon_sym_DQUOTE] = ACTIONS(3607), + [sym_true] = ACTIONS(3609), + [sym_false] = ACTIONS(3609), + [anon_sym_NULL] = ACTIONS(3609), + [anon_sym_nullptr] = ACTIONS(3609), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3609), + [anon_sym_decltype] = ACTIONS(3609), + [anon_sym_explicit] = ACTIONS(3609), + [anon_sym_typename] = ACTIONS(3609), + [anon_sym_export] = ACTIONS(3609), + [anon_sym_module] = ACTIONS(3609), + [anon_sym_import] = ACTIONS(3609), + [anon_sym_template] = ACTIONS(3609), + [anon_sym_operator] = ACTIONS(3609), + [anon_sym_try] = ACTIONS(3609), + [anon_sym_delete] = ACTIONS(3609), + [anon_sym_throw] = ACTIONS(3609), + [anon_sym_namespace] = ACTIONS(3609), + [anon_sym_static_assert] = ACTIONS(3609), + [anon_sym_concept] = ACTIONS(3609), + [anon_sym_co_return] = ACTIONS(3609), + [anon_sym_co_yield] = ACTIONS(3609), + [anon_sym_R_DQUOTE] = ACTIONS(3607), + [anon_sym_LR_DQUOTE] = ACTIONS(3607), + [anon_sym_uR_DQUOTE] = ACTIONS(3607), + [anon_sym_UR_DQUOTE] = ACTIONS(3607), + [anon_sym_u8R_DQUOTE] = ACTIONS(3607), + [anon_sym_co_await] = ACTIONS(3609), + [anon_sym_new] = ACTIONS(3609), + [anon_sym_requires] = ACTIONS(3609), + [sym_this] = ACTIONS(3609), }, - [669] = { - [sym_identifier] = ACTIONS(2887), - [aux_sym_preproc_include_token1] = ACTIONS(2887), - [aux_sym_preproc_def_token1] = ACTIONS(2887), - [aux_sym_preproc_if_token1] = ACTIONS(2887), - [aux_sym_preproc_if_token2] = ACTIONS(2887), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2887), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2887), - [sym_preproc_directive] = ACTIONS(2887), - [anon_sym_LPAREN2] = ACTIONS(2889), - [anon_sym_BANG] = ACTIONS(2889), - [anon_sym_TILDE] = ACTIONS(2889), - [anon_sym_DASH] = ACTIONS(2887), - [anon_sym_PLUS] = ACTIONS(2887), - [anon_sym_STAR] = ACTIONS(2889), - [anon_sym_AMP_AMP] = ACTIONS(2889), - [anon_sym_AMP] = ACTIONS(2887), - [anon_sym_SEMI] = ACTIONS(2889), - [anon_sym___extension__] = ACTIONS(2887), - [anon_sym_typedef] = ACTIONS(2887), - [anon_sym_virtual] = ACTIONS(2887), - [anon_sym_extern] = ACTIONS(2887), - [anon_sym___attribute__] = ACTIONS(2887), - [anon_sym___attribute] = ACTIONS(2887), - [anon_sym_using] = ACTIONS(2887), - [anon_sym_COLON_COLON] = ACTIONS(2889), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2889), - [anon_sym___declspec] = ACTIONS(2887), - [anon_sym___based] = ACTIONS(2887), - [anon_sym___cdecl] = ACTIONS(2887), - [anon_sym___clrcall] = ACTIONS(2887), - [anon_sym___stdcall] = ACTIONS(2887), - [anon_sym___fastcall] = ACTIONS(2887), - [anon_sym___thiscall] = ACTIONS(2887), - [anon_sym___vectorcall] = ACTIONS(2887), - [anon_sym_LBRACE] = ACTIONS(2889), - [anon_sym_signed] = ACTIONS(2887), - [anon_sym_unsigned] = ACTIONS(2887), - [anon_sym_long] = ACTIONS(2887), - [anon_sym_short] = ACTIONS(2887), - [anon_sym_LBRACK] = ACTIONS(2887), - [anon_sym_static] = ACTIONS(2887), - [anon_sym_register] = ACTIONS(2887), - [anon_sym_inline] = ACTIONS(2887), - [anon_sym___inline] = ACTIONS(2887), - [anon_sym___inline__] = ACTIONS(2887), - [anon_sym___forceinline] = ACTIONS(2887), - [anon_sym_thread_local] = ACTIONS(2887), - [anon_sym___thread] = ACTIONS(2887), - [anon_sym_const] = ACTIONS(2887), - [anon_sym_constexpr] = ACTIONS(2887), - [anon_sym_volatile] = ACTIONS(2887), - [anon_sym_restrict] = ACTIONS(2887), - [anon_sym___restrict__] = ACTIONS(2887), - [anon_sym__Atomic] = ACTIONS(2887), - [anon_sym__Noreturn] = ACTIONS(2887), - [anon_sym_noreturn] = ACTIONS(2887), - [anon_sym__Nonnull] = ACTIONS(2887), - [anon_sym_mutable] = ACTIONS(2887), - [anon_sym_constinit] = ACTIONS(2887), - [anon_sym_consteval] = ACTIONS(2887), - [anon_sym_alignas] = ACTIONS(2887), - [anon_sym__Alignas] = ACTIONS(2887), - [sym_primitive_type] = ACTIONS(2887), - [anon_sym_enum] = ACTIONS(2887), - [anon_sym_class] = ACTIONS(2887), - [anon_sym_struct] = ACTIONS(2887), - [anon_sym_union] = ACTIONS(2887), - [anon_sym_if] = ACTIONS(2887), - [anon_sym_switch] = ACTIONS(2887), - [anon_sym_case] = ACTIONS(2887), - [anon_sym_default] = ACTIONS(2887), - [anon_sym_while] = ACTIONS(2887), - [anon_sym_do] = ACTIONS(2887), - [anon_sym_for] = ACTIONS(2887), - [anon_sym_return] = ACTIONS(2887), - [anon_sym_break] = ACTIONS(2887), - [anon_sym_continue] = ACTIONS(2887), - [anon_sym_goto] = ACTIONS(2887), - [anon_sym___try] = ACTIONS(2887), - [anon_sym___leave] = ACTIONS(2887), - [anon_sym_not] = ACTIONS(2887), - [anon_sym_compl] = ACTIONS(2887), - [anon_sym_DASH_DASH] = ACTIONS(2889), - [anon_sym_PLUS_PLUS] = ACTIONS(2889), - [anon_sym_sizeof] = ACTIONS(2887), - [anon_sym___alignof__] = ACTIONS(2887), - [anon_sym___alignof] = ACTIONS(2887), - [anon_sym__alignof] = ACTIONS(2887), - [anon_sym_alignof] = ACTIONS(2887), - [anon_sym__Alignof] = ACTIONS(2887), - [anon_sym_offsetof] = ACTIONS(2887), - [anon_sym__Generic] = ACTIONS(2887), - [anon_sym_asm] = ACTIONS(2887), - [anon_sym___asm__] = ACTIONS(2887), - [anon_sym___asm] = ACTIONS(2887), - [sym_number_literal] = ACTIONS(2889), - [anon_sym_L_SQUOTE] = ACTIONS(2889), - [anon_sym_u_SQUOTE] = ACTIONS(2889), - [anon_sym_U_SQUOTE] = ACTIONS(2889), - [anon_sym_u8_SQUOTE] = ACTIONS(2889), - [anon_sym_SQUOTE] = ACTIONS(2889), - [anon_sym_L_DQUOTE] = ACTIONS(2889), - [anon_sym_u_DQUOTE] = ACTIONS(2889), - [anon_sym_U_DQUOTE] = ACTIONS(2889), - [anon_sym_u8_DQUOTE] = ACTIONS(2889), - [anon_sym_DQUOTE] = ACTIONS(2889), - [sym_true] = ACTIONS(2887), - [sym_false] = ACTIONS(2887), - [anon_sym_NULL] = ACTIONS(2887), - [anon_sym_nullptr] = ACTIONS(2887), + [664] = { + [ts_builtin_sym_end] = ACTIONS(3611), + [sym_identifier] = ACTIONS(3613), + [aux_sym_preproc_include_token1] = ACTIONS(3613), + [aux_sym_preproc_def_token1] = ACTIONS(3613), + [aux_sym_preproc_if_token1] = ACTIONS(3613), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3613), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3613), + [sym_preproc_directive] = ACTIONS(3613), + [anon_sym_LPAREN2] = ACTIONS(3611), + [anon_sym_BANG] = ACTIONS(3611), + [anon_sym_TILDE] = ACTIONS(3611), + [anon_sym_DASH] = ACTIONS(3613), + [anon_sym_PLUS] = ACTIONS(3613), + [anon_sym_STAR] = ACTIONS(3611), + [anon_sym_AMP_AMP] = ACTIONS(3611), + [anon_sym_AMP] = ACTIONS(3613), + [anon_sym_SEMI] = ACTIONS(3611), + [anon_sym___extension__] = ACTIONS(3613), + [anon_sym_typedef] = ACTIONS(3613), + [anon_sym_virtual] = ACTIONS(3613), + [anon_sym_extern] = ACTIONS(3613), + [anon_sym___attribute__] = ACTIONS(3613), + [anon_sym___attribute] = ACTIONS(3613), + [anon_sym_using] = ACTIONS(3613), + [anon_sym_COLON_COLON] = ACTIONS(3611), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3611), + [anon_sym___declspec] = ACTIONS(3613), + [anon_sym___based] = ACTIONS(3613), + [anon_sym___cdecl] = ACTIONS(3613), + [anon_sym___clrcall] = ACTIONS(3613), + [anon_sym___stdcall] = ACTIONS(3613), + [anon_sym___fastcall] = ACTIONS(3613), + [anon_sym___thiscall] = ACTIONS(3613), + [anon_sym___vectorcall] = ACTIONS(3613), + [anon_sym_LBRACE] = ACTIONS(3611), + [anon_sym_signed] = ACTIONS(3613), + [anon_sym_unsigned] = ACTIONS(3613), + [anon_sym_long] = ACTIONS(3613), + [anon_sym_short] = ACTIONS(3613), + [anon_sym_LBRACK] = ACTIONS(3613), + [anon_sym_static] = ACTIONS(3613), + [anon_sym_register] = ACTIONS(3613), + [anon_sym_inline] = ACTIONS(3613), + [anon_sym___inline] = ACTIONS(3613), + [anon_sym___inline__] = ACTIONS(3613), + [anon_sym___forceinline] = ACTIONS(3613), + [anon_sym_thread_local] = ACTIONS(3613), + [anon_sym___thread] = ACTIONS(3613), + [anon_sym_const] = ACTIONS(3613), + [anon_sym_constexpr] = ACTIONS(3613), + [anon_sym_volatile] = ACTIONS(3613), + [anon_sym_restrict] = ACTIONS(3613), + [anon_sym___restrict__] = ACTIONS(3613), + [anon_sym__Atomic] = ACTIONS(3613), + [anon_sym__Noreturn] = ACTIONS(3613), + [anon_sym_noreturn] = ACTIONS(3613), + [anon_sym__Nonnull] = ACTIONS(3613), + [anon_sym_mutable] = ACTIONS(3613), + [anon_sym_constinit] = ACTIONS(3613), + [anon_sym_consteval] = ACTIONS(3613), + [anon_sym_alignas] = ACTIONS(3613), + [anon_sym__Alignas] = ACTIONS(3613), + [sym_primitive_type] = ACTIONS(3613), + [anon_sym_enum] = ACTIONS(3613), + [anon_sym_class] = ACTIONS(3613), + [anon_sym_struct] = ACTIONS(3613), + [anon_sym_union] = ACTIONS(3613), + [anon_sym_if] = ACTIONS(3613), + [anon_sym_switch] = ACTIONS(3613), + [anon_sym_case] = ACTIONS(3613), + [anon_sym_default] = ACTIONS(3613), + [anon_sym_while] = ACTIONS(3613), + [anon_sym_do] = ACTIONS(3613), + [anon_sym_for] = ACTIONS(3613), + [anon_sym_return] = ACTIONS(3613), + [anon_sym_break] = ACTIONS(3613), + [anon_sym_continue] = ACTIONS(3613), + [anon_sym_goto] = ACTIONS(3613), + [anon_sym_not] = ACTIONS(3613), + [anon_sym_compl] = ACTIONS(3613), + [anon_sym_DASH_DASH] = ACTIONS(3611), + [anon_sym_PLUS_PLUS] = ACTIONS(3611), + [anon_sym_sizeof] = ACTIONS(3613), + [anon_sym___alignof__] = ACTIONS(3613), + [anon_sym___alignof] = ACTIONS(3613), + [anon_sym__alignof] = ACTIONS(3613), + [anon_sym_alignof] = ACTIONS(3613), + [anon_sym__Alignof] = ACTIONS(3613), + [anon_sym_offsetof] = ACTIONS(3613), + [anon_sym__Generic] = ACTIONS(3613), + [anon_sym_asm] = ACTIONS(3613), + [anon_sym___asm__] = ACTIONS(3613), + [anon_sym___asm] = ACTIONS(3613), + [sym_number_literal] = ACTIONS(3611), + [anon_sym_L_SQUOTE] = ACTIONS(3611), + [anon_sym_u_SQUOTE] = ACTIONS(3611), + [anon_sym_U_SQUOTE] = ACTIONS(3611), + [anon_sym_u8_SQUOTE] = ACTIONS(3611), + [anon_sym_SQUOTE] = ACTIONS(3611), + [anon_sym_L_DQUOTE] = ACTIONS(3611), + [anon_sym_u_DQUOTE] = ACTIONS(3611), + [anon_sym_U_DQUOTE] = ACTIONS(3611), + [anon_sym_u8_DQUOTE] = ACTIONS(3611), + [anon_sym_DQUOTE] = ACTIONS(3611), + [sym_true] = ACTIONS(3613), + [sym_false] = ACTIONS(3613), + [anon_sym_NULL] = ACTIONS(3613), + [anon_sym_nullptr] = ACTIONS(3613), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3613), + [anon_sym_decltype] = ACTIONS(3613), + [anon_sym_explicit] = ACTIONS(3613), + [anon_sym_typename] = ACTIONS(3613), + [anon_sym_export] = ACTIONS(3613), + [anon_sym_module] = ACTIONS(3613), + [anon_sym_import] = ACTIONS(3613), + [anon_sym_template] = ACTIONS(3613), + [anon_sym_operator] = ACTIONS(3613), + [anon_sym_try] = ACTIONS(3613), + [anon_sym_delete] = ACTIONS(3613), + [anon_sym_throw] = ACTIONS(3613), + [anon_sym_namespace] = ACTIONS(3613), + [anon_sym_static_assert] = ACTIONS(3613), + [anon_sym_concept] = ACTIONS(3613), + [anon_sym_co_return] = ACTIONS(3613), + [anon_sym_co_yield] = ACTIONS(3613), + [anon_sym_R_DQUOTE] = ACTIONS(3611), + [anon_sym_LR_DQUOTE] = ACTIONS(3611), + [anon_sym_uR_DQUOTE] = ACTIONS(3611), + [anon_sym_UR_DQUOTE] = ACTIONS(3611), + [anon_sym_u8R_DQUOTE] = ACTIONS(3611), + [anon_sym_co_await] = ACTIONS(3613), + [anon_sym_new] = ACTIONS(3613), + [anon_sym_requires] = ACTIONS(3613), + [sym_this] = ACTIONS(3613), + }, + [665] = { + [ts_builtin_sym_end] = ACTIONS(2913), + [sym_identifier] = ACTIONS(2911), + [aux_sym_preproc_include_token1] = ACTIONS(2911), + [aux_sym_preproc_def_token1] = ACTIONS(2911), + [aux_sym_preproc_if_token1] = ACTIONS(2911), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2911), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2911), + [sym_preproc_directive] = ACTIONS(2911), + [anon_sym_LPAREN2] = ACTIONS(2913), + [anon_sym_BANG] = ACTIONS(2913), + [anon_sym_TILDE] = ACTIONS(2913), + [anon_sym_DASH] = ACTIONS(2911), + [anon_sym_PLUS] = ACTIONS(2911), + [anon_sym_STAR] = ACTIONS(2913), + [anon_sym_AMP_AMP] = ACTIONS(2913), + [anon_sym_AMP] = ACTIONS(2911), + [anon_sym_SEMI] = ACTIONS(2913), + [anon_sym___extension__] = ACTIONS(2911), + [anon_sym_typedef] = ACTIONS(2911), + [anon_sym_virtual] = ACTIONS(2911), + [anon_sym_extern] = ACTIONS(2911), + [anon_sym___attribute__] = ACTIONS(2911), + [anon_sym___attribute] = ACTIONS(2911), + [anon_sym_using] = ACTIONS(2911), + [anon_sym_COLON_COLON] = ACTIONS(2913), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2913), + [anon_sym___declspec] = ACTIONS(2911), + [anon_sym___based] = ACTIONS(2911), + [anon_sym___cdecl] = ACTIONS(2911), + [anon_sym___clrcall] = ACTIONS(2911), + [anon_sym___stdcall] = ACTIONS(2911), + [anon_sym___fastcall] = ACTIONS(2911), + [anon_sym___thiscall] = ACTIONS(2911), + [anon_sym___vectorcall] = ACTIONS(2911), + [anon_sym_LBRACE] = ACTIONS(2913), + [anon_sym_signed] = ACTIONS(2911), + [anon_sym_unsigned] = ACTIONS(2911), + [anon_sym_long] = ACTIONS(2911), + [anon_sym_short] = ACTIONS(2911), + [anon_sym_LBRACK] = ACTIONS(2911), + [anon_sym_static] = ACTIONS(2911), + [anon_sym_register] = ACTIONS(2911), + [anon_sym_inline] = ACTIONS(2911), + [anon_sym___inline] = ACTIONS(2911), + [anon_sym___inline__] = ACTIONS(2911), + [anon_sym___forceinline] = ACTIONS(2911), + [anon_sym_thread_local] = ACTIONS(2911), + [anon_sym___thread] = ACTIONS(2911), + [anon_sym_const] = ACTIONS(2911), + [anon_sym_constexpr] = ACTIONS(2911), + [anon_sym_volatile] = ACTIONS(2911), + [anon_sym_restrict] = ACTIONS(2911), + [anon_sym___restrict__] = ACTIONS(2911), + [anon_sym__Atomic] = ACTIONS(2911), + [anon_sym__Noreturn] = ACTIONS(2911), + [anon_sym_noreturn] = ACTIONS(2911), + [anon_sym__Nonnull] = ACTIONS(2911), + [anon_sym_mutable] = ACTIONS(2911), + [anon_sym_constinit] = ACTIONS(2911), + [anon_sym_consteval] = ACTIONS(2911), + [anon_sym_alignas] = ACTIONS(2911), + [anon_sym__Alignas] = ACTIONS(2911), + [sym_primitive_type] = ACTIONS(2911), + [anon_sym_enum] = ACTIONS(2911), + [anon_sym_class] = ACTIONS(2911), + [anon_sym_struct] = ACTIONS(2911), + [anon_sym_union] = ACTIONS(2911), + [anon_sym_if] = ACTIONS(2911), + [anon_sym_switch] = ACTIONS(2911), + [anon_sym_case] = ACTIONS(2911), + [anon_sym_default] = ACTIONS(2911), + [anon_sym_while] = ACTIONS(2911), + [anon_sym_do] = ACTIONS(2911), + [anon_sym_for] = ACTIONS(2911), + [anon_sym_return] = ACTIONS(2911), + [anon_sym_break] = ACTIONS(2911), + [anon_sym_continue] = ACTIONS(2911), + [anon_sym_goto] = ACTIONS(2911), + [anon_sym_not] = ACTIONS(2911), + [anon_sym_compl] = ACTIONS(2911), + [anon_sym_DASH_DASH] = ACTIONS(2913), + [anon_sym_PLUS_PLUS] = ACTIONS(2913), + [anon_sym_sizeof] = ACTIONS(2911), + [anon_sym___alignof__] = ACTIONS(2911), + [anon_sym___alignof] = ACTIONS(2911), + [anon_sym__alignof] = ACTIONS(2911), + [anon_sym_alignof] = ACTIONS(2911), + [anon_sym__Alignof] = ACTIONS(2911), + [anon_sym_offsetof] = ACTIONS(2911), + [anon_sym__Generic] = ACTIONS(2911), + [anon_sym_asm] = ACTIONS(2911), + [anon_sym___asm__] = ACTIONS(2911), + [anon_sym___asm] = ACTIONS(2911), + [sym_number_literal] = ACTIONS(2913), + [anon_sym_L_SQUOTE] = ACTIONS(2913), + [anon_sym_u_SQUOTE] = ACTIONS(2913), + [anon_sym_U_SQUOTE] = ACTIONS(2913), + [anon_sym_u8_SQUOTE] = ACTIONS(2913), + [anon_sym_SQUOTE] = ACTIONS(2913), + [anon_sym_L_DQUOTE] = ACTIONS(2913), + [anon_sym_u_DQUOTE] = ACTIONS(2913), + [anon_sym_U_DQUOTE] = ACTIONS(2913), + [anon_sym_u8_DQUOTE] = ACTIONS(2913), + [anon_sym_DQUOTE] = ACTIONS(2913), + [sym_true] = ACTIONS(2911), + [sym_false] = ACTIONS(2911), + [anon_sym_NULL] = ACTIONS(2911), + [anon_sym_nullptr] = ACTIONS(2911), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2911), + [anon_sym_decltype] = ACTIONS(2911), + [anon_sym_explicit] = ACTIONS(2911), + [anon_sym_typename] = ACTIONS(2911), + [anon_sym_export] = ACTIONS(2911), + [anon_sym_module] = ACTIONS(2911), + [anon_sym_import] = ACTIONS(2911), + [anon_sym_template] = ACTIONS(2911), + [anon_sym_operator] = ACTIONS(2911), + [anon_sym_try] = ACTIONS(2911), + [anon_sym_delete] = ACTIONS(2911), + [anon_sym_throw] = ACTIONS(2911), + [anon_sym_namespace] = ACTIONS(2911), + [anon_sym_static_assert] = ACTIONS(2911), + [anon_sym_concept] = ACTIONS(2911), + [anon_sym_co_return] = ACTIONS(2911), + [anon_sym_co_yield] = ACTIONS(2911), + [anon_sym_R_DQUOTE] = ACTIONS(2913), + [anon_sym_LR_DQUOTE] = ACTIONS(2913), + [anon_sym_uR_DQUOTE] = ACTIONS(2913), + [anon_sym_UR_DQUOTE] = ACTIONS(2913), + [anon_sym_u8R_DQUOTE] = ACTIONS(2913), + [anon_sym_co_await] = ACTIONS(2911), + [anon_sym_new] = ACTIONS(2911), + [anon_sym_requires] = ACTIONS(2911), + [sym_this] = ACTIONS(2911), + }, + [666] = { + [sym_identifier] = ACTIONS(2791), + [aux_sym_preproc_include_token1] = ACTIONS(2791), + [aux_sym_preproc_def_token1] = ACTIONS(2791), + [aux_sym_preproc_if_token1] = ACTIONS(2791), + [aux_sym_preproc_if_token2] = ACTIONS(2791), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2791), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2791), + [sym_preproc_directive] = ACTIONS(2791), + [anon_sym_LPAREN2] = ACTIONS(2793), + [anon_sym_BANG] = ACTIONS(2793), + [anon_sym_TILDE] = ACTIONS(2793), + [anon_sym_DASH] = ACTIONS(2791), + [anon_sym_PLUS] = ACTIONS(2791), + [anon_sym_STAR] = ACTIONS(2793), + [anon_sym_AMP_AMP] = ACTIONS(2793), + [anon_sym_AMP] = ACTIONS(2791), + [anon_sym_SEMI] = ACTIONS(2793), + [anon_sym___extension__] = ACTIONS(2791), + [anon_sym_typedef] = ACTIONS(2791), + [anon_sym_virtual] = ACTIONS(2791), + [anon_sym_extern] = ACTIONS(2791), + [anon_sym___attribute__] = ACTIONS(2791), + [anon_sym___attribute] = ACTIONS(2791), + [anon_sym_using] = ACTIONS(2791), + [anon_sym_COLON_COLON] = ACTIONS(2793), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2793), + [anon_sym___declspec] = ACTIONS(2791), + [anon_sym___based] = ACTIONS(2791), + [anon_sym___cdecl] = ACTIONS(2791), + [anon_sym___clrcall] = ACTIONS(2791), + [anon_sym___stdcall] = ACTIONS(2791), + [anon_sym___fastcall] = ACTIONS(2791), + [anon_sym___thiscall] = ACTIONS(2791), + [anon_sym___vectorcall] = ACTIONS(2791), + [anon_sym_LBRACE] = ACTIONS(2793), + [anon_sym_signed] = ACTIONS(2791), + [anon_sym_unsigned] = ACTIONS(2791), + [anon_sym_long] = ACTIONS(2791), + [anon_sym_short] = ACTIONS(2791), + [anon_sym_LBRACK] = ACTIONS(2791), + [anon_sym_static] = ACTIONS(2791), + [anon_sym_register] = ACTIONS(2791), + [anon_sym_inline] = ACTIONS(2791), + [anon_sym___inline] = ACTIONS(2791), + [anon_sym___inline__] = ACTIONS(2791), + [anon_sym___forceinline] = ACTIONS(2791), + [anon_sym_thread_local] = ACTIONS(2791), + [anon_sym___thread] = ACTIONS(2791), + [anon_sym_const] = ACTIONS(2791), + [anon_sym_constexpr] = ACTIONS(2791), + [anon_sym_volatile] = ACTIONS(2791), + [anon_sym_restrict] = ACTIONS(2791), + [anon_sym___restrict__] = ACTIONS(2791), + [anon_sym__Atomic] = ACTIONS(2791), + [anon_sym__Noreturn] = ACTIONS(2791), + [anon_sym_noreturn] = ACTIONS(2791), + [anon_sym__Nonnull] = ACTIONS(2791), + [anon_sym_mutable] = ACTIONS(2791), + [anon_sym_constinit] = ACTIONS(2791), + [anon_sym_consteval] = ACTIONS(2791), + [anon_sym_alignas] = ACTIONS(2791), + [anon_sym__Alignas] = ACTIONS(2791), + [sym_primitive_type] = ACTIONS(2791), + [anon_sym_enum] = ACTIONS(2791), + [anon_sym_class] = ACTIONS(2791), + [anon_sym_struct] = ACTIONS(2791), + [anon_sym_union] = ACTIONS(2791), + [anon_sym_if] = ACTIONS(2791), + [anon_sym_switch] = ACTIONS(2791), + [anon_sym_case] = ACTIONS(2791), + [anon_sym_default] = ACTIONS(2791), + [anon_sym_while] = ACTIONS(2791), + [anon_sym_do] = ACTIONS(2791), + [anon_sym_for] = ACTIONS(2791), + [anon_sym_return] = ACTIONS(2791), + [anon_sym_break] = ACTIONS(2791), + [anon_sym_continue] = ACTIONS(2791), + [anon_sym_goto] = ACTIONS(2791), + [anon_sym___try] = ACTIONS(2791), + [anon_sym___leave] = ACTIONS(2791), + [anon_sym_not] = ACTIONS(2791), + [anon_sym_compl] = ACTIONS(2791), + [anon_sym_DASH_DASH] = ACTIONS(2793), + [anon_sym_PLUS_PLUS] = ACTIONS(2793), + [anon_sym_sizeof] = ACTIONS(2791), + [anon_sym___alignof__] = ACTIONS(2791), + [anon_sym___alignof] = ACTIONS(2791), + [anon_sym__alignof] = ACTIONS(2791), + [anon_sym_alignof] = ACTIONS(2791), + [anon_sym__Alignof] = ACTIONS(2791), + [anon_sym_offsetof] = ACTIONS(2791), + [anon_sym__Generic] = ACTIONS(2791), + [anon_sym_asm] = ACTIONS(2791), + [anon_sym___asm__] = ACTIONS(2791), + [anon_sym___asm] = ACTIONS(2791), + [sym_number_literal] = ACTIONS(2793), + [anon_sym_L_SQUOTE] = ACTIONS(2793), + [anon_sym_u_SQUOTE] = ACTIONS(2793), + [anon_sym_U_SQUOTE] = ACTIONS(2793), + [anon_sym_u8_SQUOTE] = ACTIONS(2793), + [anon_sym_SQUOTE] = ACTIONS(2793), + [anon_sym_L_DQUOTE] = ACTIONS(2793), + [anon_sym_u_DQUOTE] = ACTIONS(2793), + [anon_sym_U_DQUOTE] = ACTIONS(2793), + [anon_sym_u8_DQUOTE] = ACTIONS(2793), + [anon_sym_DQUOTE] = ACTIONS(2793), + [sym_true] = ACTIONS(2791), + [sym_false] = ACTIONS(2791), + [anon_sym_NULL] = ACTIONS(2791), + [anon_sym_nullptr] = ACTIONS(2791), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2887), - [anon_sym_decltype] = ACTIONS(2887), - [anon_sym_explicit] = ACTIONS(2887), - [anon_sym_typename] = ACTIONS(2887), - [anon_sym_template] = ACTIONS(2887), - [anon_sym_operator] = ACTIONS(2887), - [anon_sym_try] = ACTIONS(2887), - [anon_sym_delete] = ACTIONS(2887), - [anon_sym_throw] = ACTIONS(2887), - [anon_sym_namespace] = ACTIONS(2887), - [anon_sym_static_assert] = ACTIONS(2887), - [anon_sym_concept] = ACTIONS(2887), - [anon_sym_co_return] = ACTIONS(2887), - [anon_sym_co_yield] = ACTIONS(2887), - [anon_sym_R_DQUOTE] = ACTIONS(2889), - [anon_sym_LR_DQUOTE] = ACTIONS(2889), - [anon_sym_uR_DQUOTE] = ACTIONS(2889), - [anon_sym_UR_DQUOTE] = ACTIONS(2889), - [anon_sym_u8R_DQUOTE] = ACTIONS(2889), - [anon_sym_co_await] = ACTIONS(2887), - [anon_sym_new] = ACTIONS(2887), - [anon_sym_requires] = ACTIONS(2887), - [sym_this] = ACTIONS(2887), + [sym_auto] = ACTIONS(2791), + [anon_sym_decltype] = ACTIONS(2791), + [anon_sym_explicit] = ACTIONS(2791), + [anon_sym_typename] = ACTIONS(2791), + [anon_sym_template] = ACTIONS(2791), + [anon_sym_operator] = ACTIONS(2791), + [anon_sym_try] = ACTIONS(2791), + [anon_sym_delete] = ACTIONS(2791), + [anon_sym_throw] = ACTIONS(2791), + [anon_sym_namespace] = ACTIONS(2791), + [anon_sym_static_assert] = ACTIONS(2791), + [anon_sym_concept] = ACTIONS(2791), + [anon_sym_co_return] = ACTIONS(2791), + [anon_sym_co_yield] = ACTIONS(2791), + [anon_sym_R_DQUOTE] = ACTIONS(2793), + [anon_sym_LR_DQUOTE] = ACTIONS(2793), + [anon_sym_uR_DQUOTE] = ACTIONS(2793), + [anon_sym_UR_DQUOTE] = ACTIONS(2793), + [anon_sym_u8R_DQUOTE] = ACTIONS(2793), + [anon_sym_co_await] = ACTIONS(2791), + [anon_sym_new] = ACTIONS(2791), + [anon_sym_requires] = ACTIONS(2791), + [sym_this] = ACTIONS(2791), }, - [670] = { + [667] = { [sym_identifier] = ACTIONS(2891), [aux_sym_preproc_include_token1] = ACTIONS(2891), [aux_sym_preproc_def_token1] = ACTIONS(2891), [aux_sym_preproc_if_token1] = ACTIONS(2891), - [aux_sym_preproc_if_token2] = ACTIONS(2891), [aux_sym_preproc_ifdef_token1] = ACTIONS(2891), [aux_sym_preproc_ifdef_token2] = ACTIONS(2891), [sym_preproc_directive] = ACTIONS(2891), @@ -138230,6 +138148,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(2891), [anon_sym___vectorcall] = ACTIONS(2891), [anon_sym_LBRACE] = ACTIONS(2893), + [anon_sym_RBRACE] = ACTIONS(2893), [anon_sym_signed] = ACTIONS(2891), [anon_sym_unsigned] = ACTIONS(2891), [anon_sym_long] = ACTIONS(2891), @@ -138330,12 +138249,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2891), [sym_this] = ACTIONS(2891), }, - [671] = { + [668] = { + [sym_identifier] = ACTIONS(2835), + [aux_sym_preproc_include_token1] = ACTIONS(2835), + [aux_sym_preproc_def_token1] = ACTIONS(2835), + [aux_sym_preproc_if_token1] = ACTIONS(2835), + [aux_sym_preproc_if_token2] = ACTIONS(2835), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2835), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2835), + [sym_preproc_directive] = ACTIONS(2835), + [anon_sym_LPAREN2] = ACTIONS(2837), + [anon_sym_BANG] = ACTIONS(2837), + [anon_sym_TILDE] = ACTIONS(2837), + [anon_sym_DASH] = ACTIONS(2835), + [anon_sym_PLUS] = ACTIONS(2835), + [anon_sym_STAR] = ACTIONS(2837), + [anon_sym_AMP_AMP] = ACTIONS(2837), + [anon_sym_AMP] = ACTIONS(2835), + [anon_sym_SEMI] = ACTIONS(2837), + [anon_sym___extension__] = ACTIONS(2835), + [anon_sym_typedef] = ACTIONS(2835), + [anon_sym_virtual] = ACTIONS(2835), + [anon_sym_extern] = ACTIONS(2835), + [anon_sym___attribute__] = ACTIONS(2835), + [anon_sym___attribute] = ACTIONS(2835), + [anon_sym_using] = ACTIONS(2835), + [anon_sym_COLON_COLON] = ACTIONS(2837), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2837), + [anon_sym___declspec] = ACTIONS(2835), + [anon_sym___based] = ACTIONS(2835), + [anon_sym___cdecl] = ACTIONS(2835), + [anon_sym___clrcall] = ACTIONS(2835), + [anon_sym___stdcall] = ACTIONS(2835), + [anon_sym___fastcall] = ACTIONS(2835), + [anon_sym___thiscall] = ACTIONS(2835), + [anon_sym___vectorcall] = ACTIONS(2835), + [anon_sym_LBRACE] = ACTIONS(2837), + [anon_sym_signed] = ACTIONS(2835), + [anon_sym_unsigned] = ACTIONS(2835), + [anon_sym_long] = ACTIONS(2835), + [anon_sym_short] = ACTIONS(2835), + [anon_sym_LBRACK] = ACTIONS(2835), + [anon_sym_static] = ACTIONS(2835), + [anon_sym_register] = ACTIONS(2835), + [anon_sym_inline] = ACTIONS(2835), + [anon_sym___inline] = ACTIONS(2835), + [anon_sym___inline__] = ACTIONS(2835), + [anon_sym___forceinline] = ACTIONS(2835), + [anon_sym_thread_local] = ACTIONS(2835), + [anon_sym___thread] = ACTIONS(2835), + [anon_sym_const] = ACTIONS(2835), + [anon_sym_constexpr] = ACTIONS(2835), + [anon_sym_volatile] = ACTIONS(2835), + [anon_sym_restrict] = ACTIONS(2835), + [anon_sym___restrict__] = ACTIONS(2835), + [anon_sym__Atomic] = ACTIONS(2835), + [anon_sym__Noreturn] = ACTIONS(2835), + [anon_sym_noreturn] = ACTIONS(2835), + [anon_sym__Nonnull] = ACTIONS(2835), + [anon_sym_mutable] = ACTIONS(2835), + [anon_sym_constinit] = ACTIONS(2835), + [anon_sym_consteval] = ACTIONS(2835), + [anon_sym_alignas] = ACTIONS(2835), + [anon_sym__Alignas] = ACTIONS(2835), + [sym_primitive_type] = ACTIONS(2835), + [anon_sym_enum] = ACTIONS(2835), + [anon_sym_class] = ACTIONS(2835), + [anon_sym_struct] = ACTIONS(2835), + [anon_sym_union] = ACTIONS(2835), + [anon_sym_if] = ACTIONS(2835), + [anon_sym_switch] = ACTIONS(2835), + [anon_sym_case] = ACTIONS(2835), + [anon_sym_default] = ACTIONS(2835), + [anon_sym_while] = ACTIONS(2835), + [anon_sym_do] = ACTIONS(2835), + [anon_sym_for] = ACTIONS(2835), + [anon_sym_return] = ACTIONS(2835), + [anon_sym_break] = ACTIONS(2835), + [anon_sym_continue] = ACTIONS(2835), + [anon_sym_goto] = ACTIONS(2835), + [anon_sym___try] = ACTIONS(2835), + [anon_sym___leave] = ACTIONS(2835), + [anon_sym_not] = ACTIONS(2835), + [anon_sym_compl] = ACTIONS(2835), + [anon_sym_DASH_DASH] = ACTIONS(2837), + [anon_sym_PLUS_PLUS] = ACTIONS(2837), + [anon_sym_sizeof] = ACTIONS(2835), + [anon_sym___alignof__] = ACTIONS(2835), + [anon_sym___alignof] = ACTIONS(2835), + [anon_sym__alignof] = ACTIONS(2835), + [anon_sym_alignof] = ACTIONS(2835), + [anon_sym__Alignof] = ACTIONS(2835), + [anon_sym_offsetof] = ACTIONS(2835), + [anon_sym__Generic] = ACTIONS(2835), + [anon_sym_asm] = ACTIONS(2835), + [anon_sym___asm__] = ACTIONS(2835), + [anon_sym___asm] = ACTIONS(2835), + [sym_number_literal] = ACTIONS(2837), + [anon_sym_L_SQUOTE] = ACTIONS(2837), + [anon_sym_u_SQUOTE] = ACTIONS(2837), + [anon_sym_U_SQUOTE] = ACTIONS(2837), + [anon_sym_u8_SQUOTE] = ACTIONS(2837), + [anon_sym_SQUOTE] = ACTIONS(2837), + [anon_sym_L_DQUOTE] = ACTIONS(2837), + [anon_sym_u_DQUOTE] = ACTIONS(2837), + [anon_sym_U_DQUOTE] = ACTIONS(2837), + [anon_sym_u8_DQUOTE] = ACTIONS(2837), + [anon_sym_DQUOTE] = ACTIONS(2837), + [sym_true] = ACTIONS(2835), + [sym_false] = ACTIONS(2835), + [anon_sym_NULL] = ACTIONS(2835), + [anon_sym_nullptr] = ACTIONS(2835), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2835), + [anon_sym_decltype] = ACTIONS(2835), + [anon_sym_explicit] = ACTIONS(2835), + [anon_sym_typename] = ACTIONS(2835), + [anon_sym_template] = ACTIONS(2835), + [anon_sym_operator] = ACTIONS(2835), + [anon_sym_try] = ACTIONS(2835), + [anon_sym_delete] = ACTIONS(2835), + [anon_sym_throw] = ACTIONS(2835), + [anon_sym_namespace] = ACTIONS(2835), + [anon_sym_static_assert] = ACTIONS(2835), + [anon_sym_concept] = ACTIONS(2835), + [anon_sym_co_return] = ACTIONS(2835), + [anon_sym_co_yield] = ACTIONS(2835), + [anon_sym_R_DQUOTE] = ACTIONS(2837), + [anon_sym_LR_DQUOTE] = ACTIONS(2837), + [anon_sym_uR_DQUOTE] = ACTIONS(2837), + [anon_sym_UR_DQUOTE] = ACTIONS(2837), + [anon_sym_u8R_DQUOTE] = ACTIONS(2837), + [anon_sym_co_await] = ACTIONS(2835), + [anon_sym_new] = ACTIONS(2835), + [anon_sym_requires] = ACTIONS(2835), + [sym_this] = ACTIONS(2835), + }, + [669] = { [sym_identifier] = ACTIONS(2895), [aux_sym_preproc_include_token1] = ACTIONS(2895), [aux_sym_preproc_def_token1] = ACTIONS(2895), [aux_sym_preproc_if_token1] = ACTIONS(2895), - [aux_sym_preproc_if_token2] = ACTIONS(2895), [aux_sym_preproc_ifdef_token1] = ACTIONS(2895), [aux_sym_preproc_ifdef_token2] = ACTIONS(2895), [sym_preproc_directive] = ACTIONS(2895), @@ -138366,6 +138420,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(2895), [anon_sym___vectorcall] = ACTIONS(2895), [anon_sym_LBRACE] = ACTIONS(2897), + [anon_sym_RBRACE] = ACTIONS(2897), [anon_sym_signed] = ACTIONS(2895), [anon_sym_unsigned] = ACTIONS(2895), [anon_sym_long] = ACTIONS(2895), @@ -138466,283 +138521,692 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2895), [sym_this] = ACTIONS(2895), }, + [670] = { + [sym_identifier] = ACTIONS(2843), + [aux_sym_preproc_include_token1] = ACTIONS(2843), + [aux_sym_preproc_def_token1] = ACTIONS(2843), + [aux_sym_preproc_if_token1] = ACTIONS(2843), + [aux_sym_preproc_if_token2] = ACTIONS(2843), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2843), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2843), + [sym_preproc_directive] = ACTIONS(2843), + [anon_sym_LPAREN2] = ACTIONS(2845), + [anon_sym_BANG] = ACTIONS(2845), + [anon_sym_TILDE] = ACTIONS(2845), + [anon_sym_DASH] = ACTIONS(2843), + [anon_sym_PLUS] = ACTIONS(2843), + [anon_sym_STAR] = ACTIONS(2845), + [anon_sym_AMP_AMP] = ACTIONS(2845), + [anon_sym_AMP] = ACTIONS(2843), + [anon_sym_SEMI] = ACTIONS(2845), + [anon_sym___extension__] = ACTIONS(2843), + [anon_sym_typedef] = ACTIONS(2843), + [anon_sym_virtual] = ACTIONS(2843), + [anon_sym_extern] = ACTIONS(2843), + [anon_sym___attribute__] = ACTIONS(2843), + [anon_sym___attribute] = ACTIONS(2843), + [anon_sym_using] = ACTIONS(2843), + [anon_sym_COLON_COLON] = ACTIONS(2845), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2845), + [anon_sym___declspec] = ACTIONS(2843), + [anon_sym___based] = ACTIONS(2843), + [anon_sym___cdecl] = ACTIONS(2843), + [anon_sym___clrcall] = ACTIONS(2843), + [anon_sym___stdcall] = ACTIONS(2843), + [anon_sym___fastcall] = ACTIONS(2843), + [anon_sym___thiscall] = ACTIONS(2843), + [anon_sym___vectorcall] = ACTIONS(2843), + [anon_sym_LBRACE] = ACTIONS(2845), + [anon_sym_signed] = ACTIONS(2843), + [anon_sym_unsigned] = ACTIONS(2843), + [anon_sym_long] = ACTIONS(2843), + [anon_sym_short] = ACTIONS(2843), + [anon_sym_LBRACK] = ACTIONS(2843), + [anon_sym_static] = ACTIONS(2843), + [anon_sym_register] = ACTIONS(2843), + [anon_sym_inline] = ACTIONS(2843), + [anon_sym___inline] = ACTIONS(2843), + [anon_sym___inline__] = ACTIONS(2843), + [anon_sym___forceinline] = ACTIONS(2843), + [anon_sym_thread_local] = ACTIONS(2843), + [anon_sym___thread] = ACTIONS(2843), + [anon_sym_const] = ACTIONS(2843), + [anon_sym_constexpr] = ACTIONS(2843), + [anon_sym_volatile] = ACTIONS(2843), + [anon_sym_restrict] = ACTIONS(2843), + [anon_sym___restrict__] = ACTIONS(2843), + [anon_sym__Atomic] = ACTIONS(2843), + [anon_sym__Noreturn] = ACTIONS(2843), + [anon_sym_noreturn] = ACTIONS(2843), + [anon_sym__Nonnull] = ACTIONS(2843), + [anon_sym_mutable] = ACTIONS(2843), + [anon_sym_constinit] = ACTIONS(2843), + [anon_sym_consteval] = ACTIONS(2843), + [anon_sym_alignas] = ACTIONS(2843), + [anon_sym__Alignas] = ACTIONS(2843), + [sym_primitive_type] = ACTIONS(2843), + [anon_sym_enum] = ACTIONS(2843), + [anon_sym_class] = ACTIONS(2843), + [anon_sym_struct] = ACTIONS(2843), + [anon_sym_union] = ACTIONS(2843), + [anon_sym_if] = ACTIONS(2843), + [anon_sym_switch] = ACTIONS(2843), + [anon_sym_case] = ACTIONS(2843), + [anon_sym_default] = ACTIONS(2843), + [anon_sym_while] = ACTIONS(2843), + [anon_sym_do] = ACTIONS(2843), + [anon_sym_for] = ACTIONS(2843), + [anon_sym_return] = ACTIONS(2843), + [anon_sym_break] = ACTIONS(2843), + [anon_sym_continue] = ACTIONS(2843), + [anon_sym_goto] = ACTIONS(2843), + [anon_sym___try] = ACTIONS(2843), + [anon_sym___leave] = ACTIONS(2843), + [anon_sym_not] = ACTIONS(2843), + [anon_sym_compl] = ACTIONS(2843), + [anon_sym_DASH_DASH] = ACTIONS(2845), + [anon_sym_PLUS_PLUS] = ACTIONS(2845), + [anon_sym_sizeof] = ACTIONS(2843), + [anon_sym___alignof__] = ACTIONS(2843), + [anon_sym___alignof] = ACTIONS(2843), + [anon_sym__alignof] = ACTIONS(2843), + [anon_sym_alignof] = ACTIONS(2843), + [anon_sym__Alignof] = ACTIONS(2843), + [anon_sym_offsetof] = ACTIONS(2843), + [anon_sym__Generic] = ACTIONS(2843), + [anon_sym_asm] = ACTIONS(2843), + [anon_sym___asm__] = ACTIONS(2843), + [anon_sym___asm] = ACTIONS(2843), + [sym_number_literal] = ACTIONS(2845), + [anon_sym_L_SQUOTE] = ACTIONS(2845), + [anon_sym_u_SQUOTE] = ACTIONS(2845), + [anon_sym_U_SQUOTE] = ACTIONS(2845), + [anon_sym_u8_SQUOTE] = ACTIONS(2845), + [anon_sym_SQUOTE] = ACTIONS(2845), + [anon_sym_L_DQUOTE] = ACTIONS(2845), + [anon_sym_u_DQUOTE] = ACTIONS(2845), + [anon_sym_U_DQUOTE] = ACTIONS(2845), + [anon_sym_u8_DQUOTE] = ACTIONS(2845), + [anon_sym_DQUOTE] = ACTIONS(2845), + [sym_true] = ACTIONS(2843), + [sym_false] = ACTIONS(2843), + [anon_sym_NULL] = ACTIONS(2843), + [anon_sym_nullptr] = ACTIONS(2843), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2843), + [anon_sym_decltype] = ACTIONS(2843), + [anon_sym_explicit] = ACTIONS(2843), + [anon_sym_typename] = ACTIONS(2843), + [anon_sym_template] = ACTIONS(2843), + [anon_sym_operator] = ACTIONS(2843), + [anon_sym_try] = ACTIONS(2843), + [anon_sym_delete] = ACTIONS(2843), + [anon_sym_throw] = ACTIONS(2843), + [anon_sym_namespace] = ACTIONS(2843), + [anon_sym_static_assert] = ACTIONS(2843), + [anon_sym_concept] = ACTIONS(2843), + [anon_sym_co_return] = ACTIONS(2843), + [anon_sym_co_yield] = ACTIONS(2843), + [anon_sym_R_DQUOTE] = ACTIONS(2845), + [anon_sym_LR_DQUOTE] = ACTIONS(2845), + [anon_sym_uR_DQUOTE] = ACTIONS(2845), + [anon_sym_UR_DQUOTE] = ACTIONS(2845), + [anon_sym_u8R_DQUOTE] = ACTIONS(2845), + [anon_sym_co_await] = ACTIONS(2843), + [anon_sym_new] = ACTIONS(2843), + [anon_sym_requires] = ACTIONS(2843), + [sym_this] = ACTIONS(2843), + }, + [671] = { + [sym_identifier] = ACTIONS(2847), + [aux_sym_preproc_include_token1] = ACTIONS(2847), + [aux_sym_preproc_def_token1] = ACTIONS(2847), + [aux_sym_preproc_if_token1] = ACTIONS(2847), + [aux_sym_preproc_if_token2] = ACTIONS(2847), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2847), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2847), + [sym_preproc_directive] = ACTIONS(2847), + [anon_sym_LPAREN2] = ACTIONS(2849), + [anon_sym_BANG] = ACTIONS(2849), + [anon_sym_TILDE] = ACTIONS(2849), + [anon_sym_DASH] = ACTIONS(2847), + [anon_sym_PLUS] = ACTIONS(2847), + [anon_sym_STAR] = ACTIONS(2849), + [anon_sym_AMP_AMP] = ACTIONS(2849), + [anon_sym_AMP] = ACTIONS(2847), + [anon_sym_SEMI] = ACTIONS(2849), + [anon_sym___extension__] = ACTIONS(2847), + [anon_sym_typedef] = ACTIONS(2847), + [anon_sym_virtual] = ACTIONS(2847), + [anon_sym_extern] = ACTIONS(2847), + [anon_sym___attribute__] = ACTIONS(2847), + [anon_sym___attribute] = ACTIONS(2847), + [anon_sym_using] = ACTIONS(2847), + [anon_sym_COLON_COLON] = ACTIONS(2849), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2849), + [anon_sym___declspec] = ACTIONS(2847), + [anon_sym___based] = ACTIONS(2847), + [anon_sym___cdecl] = ACTIONS(2847), + [anon_sym___clrcall] = ACTIONS(2847), + [anon_sym___stdcall] = ACTIONS(2847), + [anon_sym___fastcall] = ACTIONS(2847), + [anon_sym___thiscall] = ACTIONS(2847), + [anon_sym___vectorcall] = ACTIONS(2847), + [anon_sym_LBRACE] = ACTIONS(2849), + [anon_sym_signed] = ACTIONS(2847), + [anon_sym_unsigned] = ACTIONS(2847), + [anon_sym_long] = ACTIONS(2847), + [anon_sym_short] = ACTIONS(2847), + [anon_sym_LBRACK] = ACTIONS(2847), + [anon_sym_static] = ACTIONS(2847), + [anon_sym_register] = ACTIONS(2847), + [anon_sym_inline] = ACTIONS(2847), + [anon_sym___inline] = ACTIONS(2847), + [anon_sym___inline__] = ACTIONS(2847), + [anon_sym___forceinline] = ACTIONS(2847), + [anon_sym_thread_local] = ACTIONS(2847), + [anon_sym___thread] = ACTIONS(2847), + [anon_sym_const] = ACTIONS(2847), + [anon_sym_constexpr] = ACTIONS(2847), + [anon_sym_volatile] = ACTIONS(2847), + [anon_sym_restrict] = ACTIONS(2847), + [anon_sym___restrict__] = ACTIONS(2847), + [anon_sym__Atomic] = ACTIONS(2847), + [anon_sym__Noreturn] = ACTIONS(2847), + [anon_sym_noreturn] = ACTIONS(2847), + [anon_sym__Nonnull] = ACTIONS(2847), + [anon_sym_mutable] = ACTIONS(2847), + [anon_sym_constinit] = ACTIONS(2847), + [anon_sym_consteval] = ACTIONS(2847), + [anon_sym_alignas] = ACTIONS(2847), + [anon_sym__Alignas] = ACTIONS(2847), + [sym_primitive_type] = ACTIONS(2847), + [anon_sym_enum] = ACTIONS(2847), + [anon_sym_class] = ACTIONS(2847), + [anon_sym_struct] = ACTIONS(2847), + [anon_sym_union] = ACTIONS(2847), + [anon_sym_if] = ACTIONS(2847), + [anon_sym_switch] = ACTIONS(2847), + [anon_sym_case] = ACTIONS(2847), + [anon_sym_default] = ACTIONS(2847), + [anon_sym_while] = ACTIONS(2847), + [anon_sym_do] = ACTIONS(2847), + [anon_sym_for] = ACTIONS(2847), + [anon_sym_return] = ACTIONS(2847), + [anon_sym_break] = ACTIONS(2847), + [anon_sym_continue] = ACTIONS(2847), + [anon_sym_goto] = ACTIONS(2847), + [anon_sym___try] = ACTIONS(2847), + [anon_sym___leave] = ACTIONS(2847), + [anon_sym_not] = ACTIONS(2847), + [anon_sym_compl] = ACTIONS(2847), + [anon_sym_DASH_DASH] = ACTIONS(2849), + [anon_sym_PLUS_PLUS] = ACTIONS(2849), + [anon_sym_sizeof] = ACTIONS(2847), + [anon_sym___alignof__] = ACTIONS(2847), + [anon_sym___alignof] = ACTIONS(2847), + [anon_sym__alignof] = ACTIONS(2847), + [anon_sym_alignof] = ACTIONS(2847), + [anon_sym__Alignof] = ACTIONS(2847), + [anon_sym_offsetof] = ACTIONS(2847), + [anon_sym__Generic] = ACTIONS(2847), + [anon_sym_asm] = ACTIONS(2847), + [anon_sym___asm__] = ACTIONS(2847), + [anon_sym___asm] = ACTIONS(2847), + [sym_number_literal] = ACTIONS(2849), + [anon_sym_L_SQUOTE] = ACTIONS(2849), + [anon_sym_u_SQUOTE] = ACTIONS(2849), + [anon_sym_U_SQUOTE] = ACTIONS(2849), + [anon_sym_u8_SQUOTE] = ACTIONS(2849), + [anon_sym_SQUOTE] = ACTIONS(2849), + [anon_sym_L_DQUOTE] = ACTIONS(2849), + [anon_sym_u_DQUOTE] = ACTIONS(2849), + [anon_sym_U_DQUOTE] = ACTIONS(2849), + [anon_sym_u8_DQUOTE] = ACTIONS(2849), + [anon_sym_DQUOTE] = ACTIONS(2849), + [sym_true] = ACTIONS(2847), + [sym_false] = ACTIONS(2847), + [anon_sym_NULL] = ACTIONS(2847), + [anon_sym_nullptr] = ACTIONS(2847), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2847), + [anon_sym_decltype] = ACTIONS(2847), + [anon_sym_explicit] = ACTIONS(2847), + [anon_sym_typename] = ACTIONS(2847), + [anon_sym_template] = ACTIONS(2847), + [anon_sym_operator] = ACTIONS(2847), + [anon_sym_try] = ACTIONS(2847), + [anon_sym_delete] = ACTIONS(2847), + [anon_sym_throw] = ACTIONS(2847), + [anon_sym_namespace] = ACTIONS(2847), + [anon_sym_static_assert] = ACTIONS(2847), + [anon_sym_concept] = ACTIONS(2847), + [anon_sym_co_return] = ACTIONS(2847), + [anon_sym_co_yield] = ACTIONS(2847), + [anon_sym_R_DQUOTE] = ACTIONS(2849), + [anon_sym_LR_DQUOTE] = ACTIONS(2849), + [anon_sym_uR_DQUOTE] = ACTIONS(2849), + [anon_sym_UR_DQUOTE] = ACTIONS(2849), + [anon_sym_u8R_DQUOTE] = ACTIONS(2849), + [anon_sym_co_await] = ACTIONS(2847), + [anon_sym_new] = ACTIONS(2847), + [anon_sym_requires] = ACTIONS(2847), + [sym_this] = ACTIONS(2847), + }, [672] = { - [sym_identifier] = ACTIONS(2875), - [aux_sym_preproc_include_token1] = ACTIONS(2875), - [aux_sym_preproc_def_token1] = ACTIONS(2875), - [aux_sym_preproc_if_token1] = ACTIONS(2875), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2875), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2875), - [sym_preproc_directive] = ACTIONS(2875), - [anon_sym_LPAREN2] = ACTIONS(2877), - [anon_sym_BANG] = ACTIONS(2877), - [anon_sym_TILDE] = ACTIONS(2877), - [anon_sym_DASH] = ACTIONS(2875), - [anon_sym_PLUS] = ACTIONS(2875), - [anon_sym_STAR] = ACTIONS(2877), - [anon_sym_AMP_AMP] = ACTIONS(2877), - [anon_sym_AMP] = ACTIONS(2875), - [anon_sym_SEMI] = ACTIONS(2877), - [anon_sym___extension__] = ACTIONS(2875), - [anon_sym_typedef] = ACTIONS(2875), - [anon_sym_virtual] = ACTIONS(2875), - [anon_sym_extern] = ACTIONS(2875), - [anon_sym___attribute__] = ACTIONS(2875), - [anon_sym___attribute] = ACTIONS(2875), - [anon_sym_using] = ACTIONS(2875), - [anon_sym_COLON_COLON] = ACTIONS(2877), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2877), - [anon_sym___declspec] = ACTIONS(2875), - [anon_sym___based] = ACTIONS(2875), - [anon_sym___cdecl] = ACTIONS(2875), - [anon_sym___clrcall] = ACTIONS(2875), - [anon_sym___stdcall] = ACTIONS(2875), - [anon_sym___fastcall] = ACTIONS(2875), - [anon_sym___thiscall] = ACTIONS(2875), - [anon_sym___vectorcall] = ACTIONS(2875), - [anon_sym_LBRACE] = ACTIONS(2877), - [anon_sym_RBRACE] = ACTIONS(2877), - [anon_sym_signed] = ACTIONS(2875), - [anon_sym_unsigned] = ACTIONS(2875), - [anon_sym_long] = ACTIONS(2875), - [anon_sym_short] = ACTIONS(2875), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_static] = ACTIONS(2875), - [anon_sym_register] = ACTIONS(2875), - [anon_sym_inline] = ACTIONS(2875), - [anon_sym___inline] = ACTIONS(2875), - [anon_sym___inline__] = ACTIONS(2875), - [anon_sym___forceinline] = ACTIONS(2875), - [anon_sym_thread_local] = ACTIONS(2875), - [anon_sym___thread] = ACTIONS(2875), - [anon_sym_const] = ACTIONS(2875), - [anon_sym_constexpr] = ACTIONS(2875), - [anon_sym_volatile] = ACTIONS(2875), - [anon_sym_restrict] = ACTIONS(2875), - [anon_sym___restrict__] = ACTIONS(2875), - [anon_sym__Atomic] = ACTIONS(2875), - [anon_sym__Noreturn] = ACTIONS(2875), - [anon_sym_noreturn] = ACTIONS(2875), - [anon_sym__Nonnull] = ACTIONS(2875), - [anon_sym_mutable] = ACTIONS(2875), - [anon_sym_constinit] = ACTIONS(2875), - [anon_sym_consteval] = ACTIONS(2875), - [anon_sym_alignas] = ACTIONS(2875), - [anon_sym__Alignas] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2875), - [anon_sym_enum] = ACTIONS(2875), - [anon_sym_class] = ACTIONS(2875), - [anon_sym_struct] = ACTIONS(2875), - [anon_sym_union] = ACTIONS(2875), - [anon_sym_if] = ACTIONS(2875), - [anon_sym_switch] = ACTIONS(2875), - [anon_sym_case] = ACTIONS(2875), - [anon_sym_default] = ACTIONS(2875), - [anon_sym_while] = ACTIONS(2875), - [anon_sym_do] = ACTIONS(2875), - [anon_sym_for] = ACTIONS(2875), - [anon_sym_return] = ACTIONS(2875), - [anon_sym_break] = ACTIONS(2875), - [anon_sym_continue] = ACTIONS(2875), - [anon_sym_goto] = ACTIONS(2875), - [anon_sym___try] = ACTIONS(2875), - [anon_sym___leave] = ACTIONS(2875), - [anon_sym_not] = ACTIONS(2875), - [anon_sym_compl] = ACTIONS(2875), - [anon_sym_DASH_DASH] = ACTIONS(2877), - [anon_sym_PLUS_PLUS] = ACTIONS(2877), - [anon_sym_sizeof] = ACTIONS(2875), - [anon_sym___alignof__] = ACTIONS(2875), - [anon_sym___alignof] = ACTIONS(2875), - [anon_sym__alignof] = ACTIONS(2875), - [anon_sym_alignof] = ACTIONS(2875), - [anon_sym__Alignof] = ACTIONS(2875), - [anon_sym_offsetof] = ACTIONS(2875), - [anon_sym__Generic] = ACTIONS(2875), - [anon_sym_asm] = ACTIONS(2875), - [anon_sym___asm__] = ACTIONS(2875), - [anon_sym___asm] = ACTIONS(2875), - [sym_number_literal] = ACTIONS(2877), - [anon_sym_L_SQUOTE] = ACTIONS(2877), - [anon_sym_u_SQUOTE] = ACTIONS(2877), - [anon_sym_U_SQUOTE] = ACTIONS(2877), - [anon_sym_u8_SQUOTE] = ACTIONS(2877), - [anon_sym_SQUOTE] = ACTIONS(2877), - [anon_sym_L_DQUOTE] = ACTIONS(2877), - [anon_sym_u_DQUOTE] = ACTIONS(2877), - [anon_sym_U_DQUOTE] = ACTIONS(2877), - [anon_sym_u8_DQUOTE] = ACTIONS(2877), - [anon_sym_DQUOTE] = ACTIONS(2877), - [sym_true] = ACTIONS(2875), - [sym_false] = ACTIONS(2875), - [anon_sym_NULL] = ACTIONS(2875), - [anon_sym_nullptr] = ACTIONS(2875), + [sym_identifier] = ACTIONS(2851), + [aux_sym_preproc_include_token1] = ACTIONS(2851), + [aux_sym_preproc_def_token1] = ACTIONS(2851), + [aux_sym_preproc_if_token1] = ACTIONS(2851), + [aux_sym_preproc_if_token2] = ACTIONS(2851), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2851), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2851), + [sym_preproc_directive] = ACTIONS(2851), + [anon_sym_LPAREN2] = ACTIONS(2853), + [anon_sym_BANG] = ACTIONS(2853), + [anon_sym_TILDE] = ACTIONS(2853), + [anon_sym_DASH] = ACTIONS(2851), + [anon_sym_PLUS] = ACTIONS(2851), + [anon_sym_STAR] = ACTIONS(2853), + [anon_sym_AMP_AMP] = ACTIONS(2853), + [anon_sym_AMP] = ACTIONS(2851), + [anon_sym_SEMI] = ACTIONS(2853), + [anon_sym___extension__] = ACTIONS(2851), + [anon_sym_typedef] = ACTIONS(2851), + [anon_sym_virtual] = ACTIONS(2851), + [anon_sym_extern] = ACTIONS(2851), + [anon_sym___attribute__] = ACTIONS(2851), + [anon_sym___attribute] = ACTIONS(2851), + [anon_sym_using] = ACTIONS(2851), + [anon_sym_COLON_COLON] = ACTIONS(2853), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2853), + [anon_sym___declspec] = ACTIONS(2851), + [anon_sym___based] = ACTIONS(2851), + [anon_sym___cdecl] = ACTIONS(2851), + [anon_sym___clrcall] = ACTIONS(2851), + [anon_sym___stdcall] = ACTIONS(2851), + [anon_sym___fastcall] = ACTIONS(2851), + [anon_sym___thiscall] = ACTIONS(2851), + [anon_sym___vectorcall] = ACTIONS(2851), + [anon_sym_LBRACE] = ACTIONS(2853), + [anon_sym_signed] = ACTIONS(2851), + [anon_sym_unsigned] = ACTIONS(2851), + [anon_sym_long] = ACTIONS(2851), + [anon_sym_short] = ACTIONS(2851), + [anon_sym_LBRACK] = ACTIONS(2851), + [anon_sym_static] = ACTIONS(2851), + [anon_sym_register] = ACTIONS(2851), + [anon_sym_inline] = ACTIONS(2851), + [anon_sym___inline] = ACTIONS(2851), + [anon_sym___inline__] = ACTIONS(2851), + [anon_sym___forceinline] = ACTIONS(2851), + [anon_sym_thread_local] = ACTIONS(2851), + [anon_sym___thread] = ACTIONS(2851), + [anon_sym_const] = ACTIONS(2851), + [anon_sym_constexpr] = ACTIONS(2851), + [anon_sym_volatile] = ACTIONS(2851), + [anon_sym_restrict] = ACTIONS(2851), + [anon_sym___restrict__] = ACTIONS(2851), + [anon_sym__Atomic] = ACTIONS(2851), + [anon_sym__Noreturn] = ACTIONS(2851), + [anon_sym_noreturn] = ACTIONS(2851), + [anon_sym__Nonnull] = ACTIONS(2851), + [anon_sym_mutable] = ACTIONS(2851), + [anon_sym_constinit] = ACTIONS(2851), + [anon_sym_consteval] = ACTIONS(2851), + [anon_sym_alignas] = ACTIONS(2851), + [anon_sym__Alignas] = ACTIONS(2851), + [sym_primitive_type] = ACTIONS(2851), + [anon_sym_enum] = ACTIONS(2851), + [anon_sym_class] = ACTIONS(2851), + [anon_sym_struct] = ACTIONS(2851), + [anon_sym_union] = ACTIONS(2851), + [anon_sym_if] = ACTIONS(2851), + [anon_sym_switch] = ACTIONS(2851), + [anon_sym_case] = ACTIONS(2851), + [anon_sym_default] = ACTIONS(2851), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_do] = ACTIONS(2851), + [anon_sym_for] = ACTIONS(2851), + [anon_sym_return] = ACTIONS(2851), + [anon_sym_break] = ACTIONS(2851), + [anon_sym_continue] = ACTIONS(2851), + [anon_sym_goto] = ACTIONS(2851), + [anon_sym___try] = ACTIONS(2851), + [anon_sym___leave] = ACTIONS(2851), + [anon_sym_not] = ACTIONS(2851), + [anon_sym_compl] = ACTIONS(2851), + [anon_sym_DASH_DASH] = ACTIONS(2853), + [anon_sym_PLUS_PLUS] = ACTIONS(2853), + [anon_sym_sizeof] = ACTIONS(2851), + [anon_sym___alignof__] = ACTIONS(2851), + [anon_sym___alignof] = ACTIONS(2851), + [anon_sym__alignof] = ACTIONS(2851), + [anon_sym_alignof] = ACTIONS(2851), + [anon_sym__Alignof] = ACTIONS(2851), + [anon_sym_offsetof] = ACTIONS(2851), + [anon_sym__Generic] = ACTIONS(2851), + [anon_sym_asm] = ACTIONS(2851), + [anon_sym___asm__] = ACTIONS(2851), + [anon_sym___asm] = ACTIONS(2851), + [sym_number_literal] = ACTIONS(2853), + [anon_sym_L_SQUOTE] = ACTIONS(2853), + [anon_sym_u_SQUOTE] = ACTIONS(2853), + [anon_sym_U_SQUOTE] = ACTIONS(2853), + [anon_sym_u8_SQUOTE] = ACTIONS(2853), + [anon_sym_SQUOTE] = ACTIONS(2853), + [anon_sym_L_DQUOTE] = ACTIONS(2853), + [anon_sym_u_DQUOTE] = ACTIONS(2853), + [anon_sym_U_DQUOTE] = ACTIONS(2853), + [anon_sym_u8_DQUOTE] = ACTIONS(2853), + [anon_sym_DQUOTE] = ACTIONS(2853), + [sym_true] = ACTIONS(2851), + [sym_false] = ACTIONS(2851), + [anon_sym_NULL] = ACTIONS(2851), + [anon_sym_nullptr] = ACTIONS(2851), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2875), - [anon_sym_decltype] = ACTIONS(2875), - [anon_sym_explicit] = ACTIONS(2875), - [anon_sym_typename] = ACTIONS(2875), - [anon_sym_template] = ACTIONS(2875), - [anon_sym_operator] = ACTIONS(2875), - [anon_sym_try] = ACTIONS(2875), - [anon_sym_delete] = ACTIONS(2875), - [anon_sym_throw] = ACTIONS(2875), - [anon_sym_namespace] = ACTIONS(2875), - [anon_sym_static_assert] = ACTIONS(2875), - [anon_sym_concept] = ACTIONS(2875), - [anon_sym_co_return] = ACTIONS(2875), - [anon_sym_co_yield] = ACTIONS(2875), - [anon_sym_R_DQUOTE] = ACTIONS(2877), - [anon_sym_LR_DQUOTE] = ACTIONS(2877), - [anon_sym_uR_DQUOTE] = ACTIONS(2877), - [anon_sym_UR_DQUOTE] = ACTIONS(2877), - [anon_sym_u8R_DQUOTE] = ACTIONS(2877), - [anon_sym_co_await] = ACTIONS(2875), - [anon_sym_new] = ACTIONS(2875), - [anon_sym_requires] = ACTIONS(2875), - [sym_this] = ACTIONS(2875), + [sym_auto] = ACTIONS(2851), + [anon_sym_decltype] = ACTIONS(2851), + [anon_sym_explicit] = ACTIONS(2851), + [anon_sym_typename] = ACTIONS(2851), + [anon_sym_template] = ACTIONS(2851), + [anon_sym_operator] = ACTIONS(2851), + [anon_sym_try] = ACTIONS(2851), + [anon_sym_delete] = ACTIONS(2851), + [anon_sym_throw] = ACTIONS(2851), + [anon_sym_namespace] = ACTIONS(2851), + [anon_sym_static_assert] = ACTIONS(2851), + [anon_sym_concept] = ACTIONS(2851), + [anon_sym_co_return] = ACTIONS(2851), + [anon_sym_co_yield] = ACTIONS(2851), + [anon_sym_R_DQUOTE] = ACTIONS(2853), + [anon_sym_LR_DQUOTE] = ACTIONS(2853), + [anon_sym_uR_DQUOTE] = ACTIONS(2853), + [anon_sym_UR_DQUOTE] = ACTIONS(2853), + [anon_sym_u8R_DQUOTE] = ACTIONS(2853), + [anon_sym_co_await] = ACTIONS(2851), + [anon_sym_new] = ACTIONS(2851), + [anon_sym_requires] = ACTIONS(2851), + [sym_this] = ACTIONS(2851), }, [673] = { - [sym_identifier] = ACTIONS(2879), - [aux_sym_preproc_include_token1] = ACTIONS(2879), - [aux_sym_preproc_def_token1] = ACTIONS(2879), - [aux_sym_preproc_if_token1] = ACTIONS(2879), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2879), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2879), - [sym_preproc_directive] = ACTIONS(2879), - [anon_sym_LPAREN2] = ACTIONS(2881), - [anon_sym_BANG] = ACTIONS(2881), - [anon_sym_TILDE] = ACTIONS(2881), - [anon_sym_DASH] = ACTIONS(2879), - [anon_sym_PLUS] = ACTIONS(2879), - [anon_sym_STAR] = ACTIONS(2881), - [anon_sym_AMP_AMP] = ACTIONS(2881), - [anon_sym_AMP] = ACTIONS(2879), - [anon_sym_SEMI] = ACTIONS(2881), - [anon_sym___extension__] = ACTIONS(2879), - [anon_sym_typedef] = ACTIONS(2879), - [anon_sym_virtual] = ACTIONS(2879), - [anon_sym_extern] = ACTIONS(2879), - [anon_sym___attribute__] = ACTIONS(2879), - [anon_sym___attribute] = ACTIONS(2879), - [anon_sym_using] = ACTIONS(2879), - [anon_sym_COLON_COLON] = ACTIONS(2881), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2881), - [anon_sym___declspec] = ACTIONS(2879), - [anon_sym___based] = ACTIONS(2879), - [anon_sym___cdecl] = ACTIONS(2879), - [anon_sym___clrcall] = ACTIONS(2879), - [anon_sym___stdcall] = ACTIONS(2879), - [anon_sym___fastcall] = ACTIONS(2879), - [anon_sym___thiscall] = ACTIONS(2879), - [anon_sym___vectorcall] = ACTIONS(2879), - [anon_sym_LBRACE] = ACTIONS(2881), - [anon_sym_RBRACE] = ACTIONS(2881), - [anon_sym_signed] = ACTIONS(2879), - [anon_sym_unsigned] = ACTIONS(2879), - [anon_sym_long] = ACTIONS(2879), - [anon_sym_short] = ACTIONS(2879), - [anon_sym_LBRACK] = ACTIONS(2879), - [anon_sym_static] = ACTIONS(2879), - [anon_sym_register] = ACTIONS(2879), - [anon_sym_inline] = ACTIONS(2879), - [anon_sym___inline] = ACTIONS(2879), - [anon_sym___inline__] = ACTIONS(2879), - [anon_sym___forceinline] = ACTIONS(2879), - [anon_sym_thread_local] = ACTIONS(2879), - [anon_sym___thread] = ACTIONS(2879), - [anon_sym_const] = ACTIONS(2879), - [anon_sym_constexpr] = ACTIONS(2879), - [anon_sym_volatile] = ACTIONS(2879), - [anon_sym_restrict] = ACTIONS(2879), - [anon_sym___restrict__] = ACTIONS(2879), - [anon_sym__Atomic] = ACTIONS(2879), - [anon_sym__Noreturn] = ACTIONS(2879), - [anon_sym_noreturn] = ACTIONS(2879), - [anon_sym__Nonnull] = ACTIONS(2879), - [anon_sym_mutable] = ACTIONS(2879), - [anon_sym_constinit] = ACTIONS(2879), - [anon_sym_consteval] = ACTIONS(2879), - [anon_sym_alignas] = ACTIONS(2879), - [anon_sym__Alignas] = ACTIONS(2879), - [sym_primitive_type] = ACTIONS(2879), - [anon_sym_enum] = ACTIONS(2879), - [anon_sym_class] = ACTIONS(2879), - [anon_sym_struct] = ACTIONS(2879), - [anon_sym_union] = ACTIONS(2879), - [anon_sym_if] = ACTIONS(2879), - [anon_sym_switch] = ACTIONS(2879), - [anon_sym_case] = ACTIONS(2879), - [anon_sym_default] = ACTIONS(2879), - [anon_sym_while] = ACTIONS(2879), - [anon_sym_do] = ACTIONS(2879), - [anon_sym_for] = ACTIONS(2879), - [anon_sym_return] = ACTIONS(2879), - [anon_sym_break] = ACTIONS(2879), - [anon_sym_continue] = ACTIONS(2879), - [anon_sym_goto] = ACTIONS(2879), - [anon_sym___try] = ACTIONS(2879), - [anon_sym___leave] = ACTIONS(2879), - [anon_sym_not] = ACTIONS(2879), - [anon_sym_compl] = ACTIONS(2879), - [anon_sym_DASH_DASH] = ACTIONS(2881), - [anon_sym_PLUS_PLUS] = ACTIONS(2881), - [anon_sym_sizeof] = ACTIONS(2879), - [anon_sym___alignof__] = ACTIONS(2879), - [anon_sym___alignof] = ACTIONS(2879), - [anon_sym__alignof] = ACTIONS(2879), - [anon_sym_alignof] = ACTIONS(2879), - [anon_sym__Alignof] = ACTIONS(2879), - [anon_sym_offsetof] = ACTIONS(2879), - [anon_sym__Generic] = ACTIONS(2879), - [anon_sym_asm] = ACTIONS(2879), - [anon_sym___asm__] = ACTIONS(2879), - [anon_sym___asm] = ACTIONS(2879), - [sym_number_literal] = ACTIONS(2881), - [anon_sym_L_SQUOTE] = ACTIONS(2881), - [anon_sym_u_SQUOTE] = ACTIONS(2881), - [anon_sym_U_SQUOTE] = ACTIONS(2881), - [anon_sym_u8_SQUOTE] = ACTIONS(2881), - [anon_sym_SQUOTE] = ACTIONS(2881), - [anon_sym_L_DQUOTE] = ACTIONS(2881), - [anon_sym_u_DQUOTE] = ACTIONS(2881), - [anon_sym_U_DQUOTE] = ACTIONS(2881), - [anon_sym_u8_DQUOTE] = ACTIONS(2881), - [anon_sym_DQUOTE] = ACTIONS(2881), - [sym_true] = ACTIONS(2879), - [sym_false] = ACTIONS(2879), - [anon_sym_NULL] = ACTIONS(2879), - [anon_sym_nullptr] = ACTIONS(2879), + [sym_identifier] = ACTIONS(2855), + [aux_sym_preproc_include_token1] = ACTIONS(2855), + [aux_sym_preproc_def_token1] = ACTIONS(2855), + [aux_sym_preproc_if_token1] = ACTIONS(2855), + [aux_sym_preproc_if_token2] = ACTIONS(2855), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2855), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2855), + [sym_preproc_directive] = ACTIONS(2855), + [anon_sym_LPAREN2] = ACTIONS(2857), + [anon_sym_BANG] = ACTIONS(2857), + [anon_sym_TILDE] = ACTIONS(2857), + [anon_sym_DASH] = ACTIONS(2855), + [anon_sym_PLUS] = ACTIONS(2855), + [anon_sym_STAR] = ACTIONS(2857), + [anon_sym_AMP_AMP] = ACTIONS(2857), + [anon_sym_AMP] = ACTIONS(2855), + [anon_sym_SEMI] = ACTIONS(2857), + [anon_sym___extension__] = ACTIONS(2855), + [anon_sym_typedef] = ACTIONS(2855), + [anon_sym_virtual] = ACTIONS(2855), + [anon_sym_extern] = ACTIONS(2855), + [anon_sym___attribute__] = ACTIONS(2855), + [anon_sym___attribute] = ACTIONS(2855), + [anon_sym_using] = ACTIONS(2855), + [anon_sym_COLON_COLON] = ACTIONS(2857), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2857), + [anon_sym___declspec] = ACTIONS(2855), + [anon_sym___based] = ACTIONS(2855), + [anon_sym___cdecl] = ACTIONS(2855), + [anon_sym___clrcall] = ACTIONS(2855), + [anon_sym___stdcall] = ACTIONS(2855), + [anon_sym___fastcall] = ACTIONS(2855), + [anon_sym___thiscall] = ACTIONS(2855), + [anon_sym___vectorcall] = ACTIONS(2855), + [anon_sym_LBRACE] = ACTIONS(2857), + [anon_sym_signed] = ACTIONS(2855), + [anon_sym_unsigned] = ACTIONS(2855), + [anon_sym_long] = ACTIONS(2855), + [anon_sym_short] = ACTIONS(2855), + [anon_sym_LBRACK] = ACTIONS(2855), + [anon_sym_static] = ACTIONS(2855), + [anon_sym_register] = ACTIONS(2855), + [anon_sym_inline] = ACTIONS(2855), + [anon_sym___inline] = ACTIONS(2855), + [anon_sym___inline__] = ACTIONS(2855), + [anon_sym___forceinline] = ACTIONS(2855), + [anon_sym_thread_local] = ACTIONS(2855), + [anon_sym___thread] = ACTIONS(2855), + [anon_sym_const] = ACTIONS(2855), + [anon_sym_constexpr] = ACTIONS(2855), + [anon_sym_volatile] = ACTIONS(2855), + [anon_sym_restrict] = ACTIONS(2855), + [anon_sym___restrict__] = ACTIONS(2855), + [anon_sym__Atomic] = ACTIONS(2855), + [anon_sym__Noreturn] = ACTIONS(2855), + [anon_sym_noreturn] = ACTIONS(2855), + [anon_sym__Nonnull] = ACTIONS(2855), + [anon_sym_mutable] = ACTIONS(2855), + [anon_sym_constinit] = ACTIONS(2855), + [anon_sym_consteval] = ACTIONS(2855), + [anon_sym_alignas] = ACTIONS(2855), + [anon_sym__Alignas] = ACTIONS(2855), + [sym_primitive_type] = ACTIONS(2855), + [anon_sym_enum] = ACTIONS(2855), + [anon_sym_class] = ACTIONS(2855), + [anon_sym_struct] = ACTIONS(2855), + [anon_sym_union] = ACTIONS(2855), + [anon_sym_if] = ACTIONS(2855), + [anon_sym_switch] = ACTIONS(2855), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_default] = ACTIONS(2855), + [anon_sym_while] = ACTIONS(2855), + [anon_sym_do] = ACTIONS(2855), + [anon_sym_for] = ACTIONS(2855), + [anon_sym_return] = ACTIONS(2855), + [anon_sym_break] = ACTIONS(2855), + [anon_sym_continue] = ACTIONS(2855), + [anon_sym_goto] = ACTIONS(2855), + [anon_sym___try] = ACTIONS(2855), + [anon_sym___leave] = ACTIONS(2855), + [anon_sym_not] = ACTIONS(2855), + [anon_sym_compl] = ACTIONS(2855), + [anon_sym_DASH_DASH] = ACTIONS(2857), + [anon_sym_PLUS_PLUS] = ACTIONS(2857), + [anon_sym_sizeof] = ACTIONS(2855), + [anon_sym___alignof__] = ACTIONS(2855), + [anon_sym___alignof] = ACTIONS(2855), + [anon_sym__alignof] = ACTIONS(2855), + [anon_sym_alignof] = ACTIONS(2855), + [anon_sym__Alignof] = ACTIONS(2855), + [anon_sym_offsetof] = ACTIONS(2855), + [anon_sym__Generic] = ACTIONS(2855), + [anon_sym_asm] = ACTIONS(2855), + [anon_sym___asm__] = ACTIONS(2855), + [anon_sym___asm] = ACTIONS(2855), + [sym_number_literal] = ACTIONS(2857), + [anon_sym_L_SQUOTE] = ACTIONS(2857), + [anon_sym_u_SQUOTE] = ACTIONS(2857), + [anon_sym_U_SQUOTE] = ACTIONS(2857), + [anon_sym_u8_SQUOTE] = ACTIONS(2857), + [anon_sym_SQUOTE] = ACTIONS(2857), + [anon_sym_L_DQUOTE] = ACTIONS(2857), + [anon_sym_u_DQUOTE] = ACTIONS(2857), + [anon_sym_U_DQUOTE] = ACTIONS(2857), + [anon_sym_u8_DQUOTE] = ACTIONS(2857), + [anon_sym_DQUOTE] = ACTIONS(2857), + [sym_true] = ACTIONS(2855), + [sym_false] = ACTIONS(2855), + [anon_sym_NULL] = ACTIONS(2855), + [anon_sym_nullptr] = ACTIONS(2855), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2879), - [anon_sym_decltype] = ACTIONS(2879), - [anon_sym_explicit] = ACTIONS(2879), - [anon_sym_typename] = ACTIONS(2879), - [anon_sym_template] = ACTIONS(2879), - [anon_sym_operator] = ACTIONS(2879), - [anon_sym_try] = ACTIONS(2879), - [anon_sym_delete] = ACTIONS(2879), - [anon_sym_throw] = ACTIONS(2879), - [anon_sym_namespace] = ACTIONS(2879), - [anon_sym_static_assert] = ACTIONS(2879), - [anon_sym_concept] = ACTIONS(2879), - [anon_sym_co_return] = ACTIONS(2879), - [anon_sym_co_yield] = ACTIONS(2879), - [anon_sym_R_DQUOTE] = ACTIONS(2881), - [anon_sym_LR_DQUOTE] = ACTIONS(2881), - [anon_sym_uR_DQUOTE] = ACTIONS(2881), - [anon_sym_UR_DQUOTE] = ACTIONS(2881), - [anon_sym_u8R_DQUOTE] = ACTIONS(2881), - [anon_sym_co_await] = ACTIONS(2879), - [anon_sym_new] = ACTIONS(2879), - [anon_sym_requires] = ACTIONS(2879), - [sym_this] = ACTIONS(2879), + [sym_auto] = ACTIONS(2855), + [anon_sym_decltype] = ACTIONS(2855), + [anon_sym_explicit] = ACTIONS(2855), + [anon_sym_typename] = ACTIONS(2855), + [anon_sym_template] = ACTIONS(2855), + [anon_sym_operator] = ACTIONS(2855), + [anon_sym_try] = ACTIONS(2855), + [anon_sym_delete] = ACTIONS(2855), + [anon_sym_throw] = ACTIONS(2855), + [anon_sym_namespace] = ACTIONS(2855), + [anon_sym_static_assert] = ACTIONS(2855), + [anon_sym_concept] = ACTIONS(2855), + [anon_sym_co_return] = ACTIONS(2855), + [anon_sym_co_yield] = ACTIONS(2855), + [anon_sym_R_DQUOTE] = ACTIONS(2857), + [anon_sym_LR_DQUOTE] = ACTIONS(2857), + [anon_sym_uR_DQUOTE] = ACTIONS(2857), + [anon_sym_UR_DQUOTE] = ACTIONS(2857), + [anon_sym_u8R_DQUOTE] = ACTIONS(2857), + [anon_sym_co_await] = ACTIONS(2855), + [anon_sym_new] = ACTIONS(2855), + [anon_sym_requires] = ACTIONS(2855), + [sym_this] = ACTIONS(2855), }, [674] = { + [sym_identifier] = ACTIONS(2887), + [aux_sym_preproc_include_token1] = ACTIONS(2887), + [aux_sym_preproc_def_token1] = ACTIONS(2887), + [aux_sym_preproc_if_token1] = ACTIONS(2887), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2887), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2887), + [sym_preproc_directive] = ACTIONS(2887), + [anon_sym_LPAREN2] = ACTIONS(2889), + [anon_sym_BANG] = ACTIONS(2889), + [anon_sym_TILDE] = ACTIONS(2889), + [anon_sym_DASH] = ACTIONS(2887), + [anon_sym_PLUS] = ACTIONS(2887), + [anon_sym_STAR] = ACTIONS(2889), + [anon_sym_AMP_AMP] = ACTIONS(2889), + [anon_sym_AMP] = ACTIONS(2887), + [anon_sym_SEMI] = ACTIONS(2889), + [anon_sym___extension__] = ACTIONS(2887), + [anon_sym_typedef] = ACTIONS(2887), + [anon_sym_virtual] = ACTIONS(2887), + [anon_sym_extern] = ACTIONS(2887), + [anon_sym___attribute__] = ACTIONS(2887), + [anon_sym___attribute] = ACTIONS(2887), + [anon_sym_using] = ACTIONS(2887), + [anon_sym_COLON_COLON] = ACTIONS(2889), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2889), + [anon_sym___declspec] = ACTIONS(2887), + [anon_sym___based] = ACTIONS(2887), + [anon_sym___cdecl] = ACTIONS(2887), + [anon_sym___clrcall] = ACTIONS(2887), + [anon_sym___stdcall] = ACTIONS(2887), + [anon_sym___fastcall] = ACTIONS(2887), + [anon_sym___thiscall] = ACTIONS(2887), + [anon_sym___vectorcall] = ACTIONS(2887), + [anon_sym_LBRACE] = ACTIONS(2889), + [anon_sym_RBRACE] = ACTIONS(2889), + [anon_sym_signed] = ACTIONS(2887), + [anon_sym_unsigned] = ACTIONS(2887), + [anon_sym_long] = ACTIONS(2887), + [anon_sym_short] = ACTIONS(2887), + [anon_sym_LBRACK] = ACTIONS(2887), + [anon_sym_static] = ACTIONS(2887), + [anon_sym_register] = ACTIONS(2887), + [anon_sym_inline] = ACTIONS(2887), + [anon_sym___inline] = ACTIONS(2887), + [anon_sym___inline__] = ACTIONS(2887), + [anon_sym___forceinline] = ACTIONS(2887), + [anon_sym_thread_local] = ACTIONS(2887), + [anon_sym___thread] = ACTIONS(2887), + [anon_sym_const] = ACTIONS(2887), + [anon_sym_constexpr] = ACTIONS(2887), + [anon_sym_volatile] = ACTIONS(2887), + [anon_sym_restrict] = ACTIONS(2887), + [anon_sym___restrict__] = ACTIONS(2887), + [anon_sym__Atomic] = ACTIONS(2887), + [anon_sym__Noreturn] = ACTIONS(2887), + [anon_sym_noreturn] = ACTIONS(2887), + [anon_sym__Nonnull] = ACTIONS(2887), + [anon_sym_mutable] = ACTIONS(2887), + [anon_sym_constinit] = ACTIONS(2887), + [anon_sym_consteval] = ACTIONS(2887), + [anon_sym_alignas] = ACTIONS(2887), + [anon_sym__Alignas] = ACTIONS(2887), + [sym_primitive_type] = ACTIONS(2887), + [anon_sym_enum] = ACTIONS(2887), + [anon_sym_class] = ACTIONS(2887), + [anon_sym_struct] = ACTIONS(2887), + [anon_sym_union] = ACTIONS(2887), + [anon_sym_if] = ACTIONS(2887), + [anon_sym_switch] = ACTIONS(2887), + [anon_sym_case] = ACTIONS(2887), + [anon_sym_default] = ACTIONS(2887), + [anon_sym_while] = ACTIONS(2887), + [anon_sym_do] = ACTIONS(2887), + [anon_sym_for] = ACTIONS(2887), + [anon_sym_return] = ACTIONS(2887), + [anon_sym_break] = ACTIONS(2887), + [anon_sym_continue] = ACTIONS(2887), + [anon_sym_goto] = ACTIONS(2887), + [anon_sym___try] = ACTIONS(2887), + [anon_sym___leave] = ACTIONS(2887), + [anon_sym_not] = ACTIONS(2887), + [anon_sym_compl] = ACTIONS(2887), + [anon_sym_DASH_DASH] = ACTIONS(2889), + [anon_sym_PLUS_PLUS] = ACTIONS(2889), + [anon_sym_sizeof] = ACTIONS(2887), + [anon_sym___alignof__] = ACTIONS(2887), + [anon_sym___alignof] = ACTIONS(2887), + [anon_sym__alignof] = ACTIONS(2887), + [anon_sym_alignof] = ACTIONS(2887), + [anon_sym__Alignof] = ACTIONS(2887), + [anon_sym_offsetof] = ACTIONS(2887), + [anon_sym__Generic] = ACTIONS(2887), + [anon_sym_asm] = ACTIONS(2887), + [anon_sym___asm__] = ACTIONS(2887), + [anon_sym___asm] = ACTIONS(2887), + [sym_number_literal] = ACTIONS(2889), + [anon_sym_L_SQUOTE] = ACTIONS(2889), + [anon_sym_u_SQUOTE] = ACTIONS(2889), + [anon_sym_U_SQUOTE] = ACTIONS(2889), + [anon_sym_u8_SQUOTE] = ACTIONS(2889), + [anon_sym_SQUOTE] = ACTIONS(2889), + [anon_sym_L_DQUOTE] = ACTIONS(2889), + [anon_sym_u_DQUOTE] = ACTIONS(2889), + [anon_sym_U_DQUOTE] = ACTIONS(2889), + [anon_sym_u8_DQUOTE] = ACTIONS(2889), + [anon_sym_DQUOTE] = ACTIONS(2889), + [sym_true] = ACTIONS(2887), + [sym_false] = ACTIONS(2887), + [anon_sym_NULL] = ACTIONS(2887), + [anon_sym_nullptr] = ACTIONS(2887), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2887), + [anon_sym_decltype] = ACTIONS(2887), + [anon_sym_explicit] = ACTIONS(2887), + [anon_sym_typename] = ACTIONS(2887), + [anon_sym_template] = ACTIONS(2887), + [anon_sym_operator] = ACTIONS(2887), + [anon_sym_try] = ACTIONS(2887), + [anon_sym_delete] = ACTIONS(2887), + [anon_sym_throw] = ACTIONS(2887), + [anon_sym_namespace] = ACTIONS(2887), + [anon_sym_static_assert] = ACTIONS(2887), + [anon_sym_concept] = ACTIONS(2887), + [anon_sym_co_return] = ACTIONS(2887), + [anon_sym_co_yield] = ACTIONS(2887), + [anon_sym_R_DQUOTE] = ACTIONS(2889), + [anon_sym_LR_DQUOTE] = ACTIONS(2889), + [anon_sym_uR_DQUOTE] = ACTIONS(2889), + [anon_sym_UR_DQUOTE] = ACTIONS(2889), + [anon_sym_u8R_DQUOTE] = ACTIONS(2889), + [anon_sym_co_await] = ACTIONS(2887), + [anon_sym_new] = ACTIONS(2887), + [anon_sym_requires] = ACTIONS(2887), + [sym_this] = ACTIONS(2887), + }, + [675] = { [sym_identifier] = ACTIONS(2883), [aux_sym_preproc_include_token1] = ACTIONS(2883), [aux_sym_preproc_def_token1] = ACTIONS(2883), [aux_sym_preproc_if_token1] = ACTIONS(2883), + [aux_sym_preproc_if_token2] = ACTIONS(2883), [aux_sym_preproc_ifdef_token1] = ACTIONS(2883), [aux_sym_preproc_ifdef_token2] = ACTIONS(2883), [sym_preproc_directive] = ACTIONS(2883), @@ -138773,7 +139237,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(2883), [anon_sym___vectorcall] = ACTIONS(2883), [anon_sym_LBRACE] = ACTIONS(2885), - [anon_sym_RBRACE] = ACTIONS(2885), [anon_sym_signed] = ACTIONS(2883), [anon_sym_unsigned] = ACTIONS(2883), [anon_sym_long] = ACTIONS(2883), @@ -138874,7 +139337,415 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2883), [sym_this] = ACTIONS(2883), }, - [675] = { + [676] = { + [sym_identifier] = ACTIONS(2887), + [aux_sym_preproc_include_token1] = ACTIONS(2887), + [aux_sym_preproc_def_token1] = ACTIONS(2887), + [aux_sym_preproc_if_token1] = ACTIONS(2887), + [aux_sym_preproc_if_token2] = ACTIONS(2887), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2887), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2887), + [sym_preproc_directive] = ACTIONS(2887), + [anon_sym_LPAREN2] = ACTIONS(2889), + [anon_sym_BANG] = ACTIONS(2889), + [anon_sym_TILDE] = ACTIONS(2889), + [anon_sym_DASH] = ACTIONS(2887), + [anon_sym_PLUS] = ACTIONS(2887), + [anon_sym_STAR] = ACTIONS(2889), + [anon_sym_AMP_AMP] = ACTIONS(2889), + [anon_sym_AMP] = ACTIONS(2887), + [anon_sym_SEMI] = ACTIONS(2889), + [anon_sym___extension__] = ACTIONS(2887), + [anon_sym_typedef] = ACTIONS(2887), + [anon_sym_virtual] = ACTIONS(2887), + [anon_sym_extern] = ACTIONS(2887), + [anon_sym___attribute__] = ACTIONS(2887), + [anon_sym___attribute] = ACTIONS(2887), + [anon_sym_using] = ACTIONS(2887), + [anon_sym_COLON_COLON] = ACTIONS(2889), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2889), + [anon_sym___declspec] = ACTIONS(2887), + [anon_sym___based] = ACTIONS(2887), + [anon_sym___cdecl] = ACTIONS(2887), + [anon_sym___clrcall] = ACTIONS(2887), + [anon_sym___stdcall] = ACTIONS(2887), + [anon_sym___fastcall] = ACTIONS(2887), + [anon_sym___thiscall] = ACTIONS(2887), + [anon_sym___vectorcall] = ACTIONS(2887), + [anon_sym_LBRACE] = ACTIONS(2889), + [anon_sym_signed] = ACTIONS(2887), + [anon_sym_unsigned] = ACTIONS(2887), + [anon_sym_long] = ACTIONS(2887), + [anon_sym_short] = ACTIONS(2887), + [anon_sym_LBRACK] = ACTIONS(2887), + [anon_sym_static] = ACTIONS(2887), + [anon_sym_register] = ACTIONS(2887), + [anon_sym_inline] = ACTIONS(2887), + [anon_sym___inline] = ACTIONS(2887), + [anon_sym___inline__] = ACTIONS(2887), + [anon_sym___forceinline] = ACTIONS(2887), + [anon_sym_thread_local] = ACTIONS(2887), + [anon_sym___thread] = ACTIONS(2887), + [anon_sym_const] = ACTIONS(2887), + [anon_sym_constexpr] = ACTIONS(2887), + [anon_sym_volatile] = ACTIONS(2887), + [anon_sym_restrict] = ACTIONS(2887), + [anon_sym___restrict__] = ACTIONS(2887), + [anon_sym__Atomic] = ACTIONS(2887), + [anon_sym__Noreturn] = ACTIONS(2887), + [anon_sym_noreturn] = ACTIONS(2887), + [anon_sym__Nonnull] = ACTIONS(2887), + [anon_sym_mutable] = ACTIONS(2887), + [anon_sym_constinit] = ACTIONS(2887), + [anon_sym_consteval] = ACTIONS(2887), + [anon_sym_alignas] = ACTIONS(2887), + [anon_sym__Alignas] = ACTIONS(2887), + [sym_primitive_type] = ACTIONS(2887), + [anon_sym_enum] = ACTIONS(2887), + [anon_sym_class] = ACTIONS(2887), + [anon_sym_struct] = ACTIONS(2887), + [anon_sym_union] = ACTIONS(2887), + [anon_sym_if] = ACTIONS(2887), + [anon_sym_switch] = ACTIONS(2887), + [anon_sym_case] = ACTIONS(2887), + [anon_sym_default] = ACTIONS(2887), + [anon_sym_while] = ACTIONS(2887), + [anon_sym_do] = ACTIONS(2887), + [anon_sym_for] = ACTIONS(2887), + [anon_sym_return] = ACTIONS(2887), + [anon_sym_break] = ACTIONS(2887), + [anon_sym_continue] = ACTIONS(2887), + [anon_sym_goto] = ACTIONS(2887), + [anon_sym___try] = ACTIONS(2887), + [anon_sym___leave] = ACTIONS(2887), + [anon_sym_not] = ACTIONS(2887), + [anon_sym_compl] = ACTIONS(2887), + [anon_sym_DASH_DASH] = ACTIONS(2889), + [anon_sym_PLUS_PLUS] = ACTIONS(2889), + [anon_sym_sizeof] = ACTIONS(2887), + [anon_sym___alignof__] = ACTIONS(2887), + [anon_sym___alignof] = ACTIONS(2887), + [anon_sym__alignof] = ACTIONS(2887), + [anon_sym_alignof] = ACTIONS(2887), + [anon_sym__Alignof] = ACTIONS(2887), + [anon_sym_offsetof] = ACTIONS(2887), + [anon_sym__Generic] = ACTIONS(2887), + [anon_sym_asm] = ACTIONS(2887), + [anon_sym___asm__] = ACTIONS(2887), + [anon_sym___asm] = ACTIONS(2887), + [sym_number_literal] = ACTIONS(2889), + [anon_sym_L_SQUOTE] = ACTIONS(2889), + [anon_sym_u_SQUOTE] = ACTIONS(2889), + [anon_sym_U_SQUOTE] = ACTIONS(2889), + [anon_sym_u8_SQUOTE] = ACTIONS(2889), + [anon_sym_SQUOTE] = ACTIONS(2889), + [anon_sym_L_DQUOTE] = ACTIONS(2889), + [anon_sym_u_DQUOTE] = ACTIONS(2889), + [anon_sym_U_DQUOTE] = ACTIONS(2889), + [anon_sym_u8_DQUOTE] = ACTIONS(2889), + [anon_sym_DQUOTE] = ACTIONS(2889), + [sym_true] = ACTIONS(2887), + [sym_false] = ACTIONS(2887), + [anon_sym_NULL] = ACTIONS(2887), + [anon_sym_nullptr] = ACTIONS(2887), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2887), + [anon_sym_decltype] = ACTIONS(2887), + [anon_sym_explicit] = ACTIONS(2887), + [anon_sym_typename] = ACTIONS(2887), + [anon_sym_template] = ACTIONS(2887), + [anon_sym_operator] = ACTIONS(2887), + [anon_sym_try] = ACTIONS(2887), + [anon_sym_delete] = ACTIONS(2887), + [anon_sym_throw] = ACTIONS(2887), + [anon_sym_namespace] = ACTIONS(2887), + [anon_sym_static_assert] = ACTIONS(2887), + [anon_sym_concept] = ACTIONS(2887), + [anon_sym_co_return] = ACTIONS(2887), + [anon_sym_co_yield] = ACTIONS(2887), + [anon_sym_R_DQUOTE] = ACTIONS(2889), + [anon_sym_LR_DQUOTE] = ACTIONS(2889), + [anon_sym_uR_DQUOTE] = ACTIONS(2889), + [anon_sym_UR_DQUOTE] = ACTIONS(2889), + [anon_sym_u8R_DQUOTE] = ACTIONS(2889), + [anon_sym_co_await] = ACTIONS(2887), + [anon_sym_new] = ACTIONS(2887), + [anon_sym_requires] = ACTIONS(2887), + [sym_this] = ACTIONS(2887), + }, + [677] = { + [sym_identifier] = ACTIONS(2891), + [aux_sym_preproc_include_token1] = ACTIONS(2891), + [aux_sym_preproc_def_token1] = ACTIONS(2891), + [aux_sym_preproc_if_token1] = ACTIONS(2891), + [aux_sym_preproc_if_token2] = ACTIONS(2891), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2891), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2891), + [sym_preproc_directive] = ACTIONS(2891), + [anon_sym_LPAREN2] = ACTIONS(2893), + [anon_sym_BANG] = ACTIONS(2893), + [anon_sym_TILDE] = ACTIONS(2893), + [anon_sym_DASH] = ACTIONS(2891), + [anon_sym_PLUS] = ACTIONS(2891), + [anon_sym_STAR] = ACTIONS(2893), + [anon_sym_AMP_AMP] = ACTIONS(2893), + [anon_sym_AMP] = ACTIONS(2891), + [anon_sym_SEMI] = ACTIONS(2893), + [anon_sym___extension__] = ACTIONS(2891), + [anon_sym_typedef] = ACTIONS(2891), + [anon_sym_virtual] = ACTIONS(2891), + [anon_sym_extern] = ACTIONS(2891), + [anon_sym___attribute__] = ACTIONS(2891), + [anon_sym___attribute] = ACTIONS(2891), + [anon_sym_using] = ACTIONS(2891), + [anon_sym_COLON_COLON] = ACTIONS(2893), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2893), + [anon_sym___declspec] = ACTIONS(2891), + [anon_sym___based] = ACTIONS(2891), + [anon_sym___cdecl] = ACTIONS(2891), + [anon_sym___clrcall] = ACTIONS(2891), + [anon_sym___stdcall] = ACTIONS(2891), + [anon_sym___fastcall] = ACTIONS(2891), + [anon_sym___thiscall] = ACTIONS(2891), + [anon_sym___vectorcall] = ACTIONS(2891), + [anon_sym_LBRACE] = ACTIONS(2893), + [anon_sym_signed] = ACTIONS(2891), + [anon_sym_unsigned] = ACTIONS(2891), + [anon_sym_long] = ACTIONS(2891), + [anon_sym_short] = ACTIONS(2891), + [anon_sym_LBRACK] = ACTIONS(2891), + [anon_sym_static] = ACTIONS(2891), + [anon_sym_register] = ACTIONS(2891), + [anon_sym_inline] = ACTIONS(2891), + [anon_sym___inline] = ACTIONS(2891), + [anon_sym___inline__] = ACTIONS(2891), + [anon_sym___forceinline] = ACTIONS(2891), + [anon_sym_thread_local] = ACTIONS(2891), + [anon_sym___thread] = ACTIONS(2891), + [anon_sym_const] = ACTIONS(2891), + [anon_sym_constexpr] = ACTIONS(2891), + [anon_sym_volatile] = ACTIONS(2891), + [anon_sym_restrict] = ACTIONS(2891), + [anon_sym___restrict__] = ACTIONS(2891), + [anon_sym__Atomic] = ACTIONS(2891), + [anon_sym__Noreturn] = ACTIONS(2891), + [anon_sym_noreturn] = ACTIONS(2891), + [anon_sym__Nonnull] = ACTIONS(2891), + [anon_sym_mutable] = ACTIONS(2891), + [anon_sym_constinit] = ACTIONS(2891), + [anon_sym_consteval] = ACTIONS(2891), + [anon_sym_alignas] = ACTIONS(2891), + [anon_sym__Alignas] = ACTIONS(2891), + [sym_primitive_type] = ACTIONS(2891), + [anon_sym_enum] = ACTIONS(2891), + [anon_sym_class] = ACTIONS(2891), + [anon_sym_struct] = ACTIONS(2891), + [anon_sym_union] = ACTIONS(2891), + [anon_sym_if] = ACTIONS(2891), + [anon_sym_switch] = ACTIONS(2891), + [anon_sym_case] = ACTIONS(2891), + [anon_sym_default] = ACTIONS(2891), + [anon_sym_while] = ACTIONS(2891), + [anon_sym_do] = ACTIONS(2891), + [anon_sym_for] = ACTIONS(2891), + [anon_sym_return] = ACTIONS(2891), + [anon_sym_break] = ACTIONS(2891), + [anon_sym_continue] = ACTIONS(2891), + [anon_sym_goto] = ACTIONS(2891), + [anon_sym___try] = ACTIONS(2891), + [anon_sym___leave] = ACTIONS(2891), + [anon_sym_not] = ACTIONS(2891), + [anon_sym_compl] = ACTIONS(2891), + [anon_sym_DASH_DASH] = ACTIONS(2893), + [anon_sym_PLUS_PLUS] = ACTIONS(2893), + [anon_sym_sizeof] = ACTIONS(2891), + [anon_sym___alignof__] = ACTIONS(2891), + [anon_sym___alignof] = ACTIONS(2891), + [anon_sym__alignof] = ACTIONS(2891), + [anon_sym_alignof] = ACTIONS(2891), + [anon_sym__Alignof] = ACTIONS(2891), + [anon_sym_offsetof] = ACTIONS(2891), + [anon_sym__Generic] = ACTIONS(2891), + [anon_sym_asm] = ACTIONS(2891), + [anon_sym___asm__] = ACTIONS(2891), + [anon_sym___asm] = ACTIONS(2891), + [sym_number_literal] = ACTIONS(2893), + [anon_sym_L_SQUOTE] = ACTIONS(2893), + [anon_sym_u_SQUOTE] = ACTIONS(2893), + [anon_sym_U_SQUOTE] = ACTIONS(2893), + [anon_sym_u8_SQUOTE] = ACTIONS(2893), + [anon_sym_SQUOTE] = ACTIONS(2893), + [anon_sym_L_DQUOTE] = ACTIONS(2893), + [anon_sym_u_DQUOTE] = ACTIONS(2893), + [anon_sym_U_DQUOTE] = ACTIONS(2893), + [anon_sym_u8_DQUOTE] = ACTIONS(2893), + [anon_sym_DQUOTE] = ACTIONS(2893), + [sym_true] = ACTIONS(2891), + [sym_false] = ACTIONS(2891), + [anon_sym_NULL] = ACTIONS(2891), + [anon_sym_nullptr] = ACTIONS(2891), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2891), + [anon_sym_decltype] = ACTIONS(2891), + [anon_sym_explicit] = ACTIONS(2891), + [anon_sym_typename] = ACTIONS(2891), + [anon_sym_template] = ACTIONS(2891), + [anon_sym_operator] = ACTIONS(2891), + [anon_sym_try] = ACTIONS(2891), + [anon_sym_delete] = ACTIONS(2891), + [anon_sym_throw] = ACTIONS(2891), + [anon_sym_namespace] = ACTIONS(2891), + [anon_sym_static_assert] = ACTIONS(2891), + [anon_sym_concept] = ACTIONS(2891), + [anon_sym_co_return] = ACTIONS(2891), + [anon_sym_co_yield] = ACTIONS(2891), + [anon_sym_R_DQUOTE] = ACTIONS(2893), + [anon_sym_LR_DQUOTE] = ACTIONS(2893), + [anon_sym_uR_DQUOTE] = ACTIONS(2893), + [anon_sym_UR_DQUOTE] = ACTIONS(2893), + [anon_sym_u8R_DQUOTE] = ACTIONS(2893), + [anon_sym_co_await] = ACTIONS(2891), + [anon_sym_new] = ACTIONS(2891), + [anon_sym_requires] = ACTIONS(2891), + [sym_this] = ACTIONS(2891), + }, + [678] = { + [sym_identifier] = ACTIONS(2899), + [aux_sym_preproc_include_token1] = ACTIONS(2899), + [aux_sym_preproc_def_token1] = ACTIONS(2899), + [aux_sym_preproc_if_token1] = ACTIONS(2899), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2899), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2899), + [sym_preproc_directive] = ACTIONS(2899), + [anon_sym_LPAREN2] = ACTIONS(2901), + [anon_sym_BANG] = ACTIONS(2901), + [anon_sym_TILDE] = ACTIONS(2901), + [anon_sym_DASH] = ACTIONS(2899), + [anon_sym_PLUS] = ACTIONS(2899), + [anon_sym_STAR] = ACTIONS(2901), + [anon_sym_AMP_AMP] = ACTIONS(2901), + [anon_sym_AMP] = ACTIONS(2899), + [anon_sym_SEMI] = ACTIONS(2901), + [anon_sym___extension__] = ACTIONS(2899), + [anon_sym_typedef] = ACTIONS(2899), + [anon_sym_virtual] = ACTIONS(2899), + [anon_sym_extern] = ACTIONS(2899), + [anon_sym___attribute__] = ACTIONS(2899), + [anon_sym___attribute] = ACTIONS(2899), + [anon_sym_using] = ACTIONS(2899), + [anon_sym_COLON_COLON] = ACTIONS(2901), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2901), + [anon_sym___declspec] = ACTIONS(2899), + [anon_sym___based] = ACTIONS(2899), + [anon_sym___cdecl] = ACTIONS(2899), + [anon_sym___clrcall] = ACTIONS(2899), + [anon_sym___stdcall] = ACTIONS(2899), + [anon_sym___fastcall] = ACTIONS(2899), + [anon_sym___thiscall] = ACTIONS(2899), + [anon_sym___vectorcall] = ACTIONS(2899), + [anon_sym_LBRACE] = ACTIONS(2901), + [anon_sym_RBRACE] = ACTIONS(2901), + [anon_sym_signed] = ACTIONS(2899), + [anon_sym_unsigned] = ACTIONS(2899), + [anon_sym_long] = ACTIONS(2899), + [anon_sym_short] = ACTIONS(2899), + [anon_sym_LBRACK] = ACTIONS(2899), + [anon_sym_static] = ACTIONS(2899), + [anon_sym_register] = ACTIONS(2899), + [anon_sym_inline] = ACTIONS(2899), + [anon_sym___inline] = ACTIONS(2899), + [anon_sym___inline__] = ACTIONS(2899), + [anon_sym___forceinline] = ACTIONS(2899), + [anon_sym_thread_local] = ACTIONS(2899), + [anon_sym___thread] = ACTIONS(2899), + [anon_sym_const] = ACTIONS(2899), + [anon_sym_constexpr] = ACTIONS(2899), + [anon_sym_volatile] = ACTIONS(2899), + [anon_sym_restrict] = ACTIONS(2899), + [anon_sym___restrict__] = ACTIONS(2899), + [anon_sym__Atomic] = ACTIONS(2899), + [anon_sym__Noreturn] = ACTIONS(2899), + [anon_sym_noreturn] = ACTIONS(2899), + [anon_sym__Nonnull] = ACTIONS(2899), + [anon_sym_mutable] = ACTIONS(2899), + [anon_sym_constinit] = ACTIONS(2899), + [anon_sym_consteval] = ACTIONS(2899), + [anon_sym_alignas] = ACTIONS(2899), + [anon_sym__Alignas] = ACTIONS(2899), + [sym_primitive_type] = ACTIONS(2899), + [anon_sym_enum] = ACTIONS(2899), + [anon_sym_class] = ACTIONS(2899), + [anon_sym_struct] = ACTIONS(2899), + [anon_sym_union] = ACTIONS(2899), + [anon_sym_if] = ACTIONS(2899), + [anon_sym_switch] = ACTIONS(2899), + [anon_sym_case] = ACTIONS(2899), + [anon_sym_default] = ACTIONS(2899), + [anon_sym_while] = ACTIONS(2899), + [anon_sym_do] = ACTIONS(2899), + [anon_sym_for] = ACTIONS(2899), + [anon_sym_return] = ACTIONS(2899), + [anon_sym_break] = ACTIONS(2899), + [anon_sym_continue] = ACTIONS(2899), + [anon_sym_goto] = ACTIONS(2899), + [anon_sym___try] = ACTIONS(2899), + [anon_sym___leave] = ACTIONS(2899), + [anon_sym_not] = ACTIONS(2899), + [anon_sym_compl] = ACTIONS(2899), + [anon_sym_DASH_DASH] = ACTIONS(2901), + [anon_sym_PLUS_PLUS] = ACTIONS(2901), + [anon_sym_sizeof] = ACTIONS(2899), + [anon_sym___alignof__] = ACTIONS(2899), + [anon_sym___alignof] = ACTIONS(2899), + [anon_sym__alignof] = ACTIONS(2899), + [anon_sym_alignof] = ACTIONS(2899), + [anon_sym__Alignof] = ACTIONS(2899), + [anon_sym_offsetof] = ACTIONS(2899), + [anon_sym__Generic] = ACTIONS(2899), + [anon_sym_asm] = ACTIONS(2899), + [anon_sym___asm__] = ACTIONS(2899), + [anon_sym___asm] = ACTIONS(2899), + [sym_number_literal] = ACTIONS(2901), + [anon_sym_L_SQUOTE] = ACTIONS(2901), + [anon_sym_u_SQUOTE] = ACTIONS(2901), + [anon_sym_U_SQUOTE] = ACTIONS(2901), + [anon_sym_u8_SQUOTE] = ACTIONS(2901), + [anon_sym_SQUOTE] = ACTIONS(2901), + [anon_sym_L_DQUOTE] = ACTIONS(2901), + [anon_sym_u_DQUOTE] = ACTIONS(2901), + [anon_sym_U_DQUOTE] = ACTIONS(2901), + [anon_sym_u8_DQUOTE] = ACTIONS(2901), + [anon_sym_DQUOTE] = ACTIONS(2901), + [sym_true] = ACTIONS(2899), + [sym_false] = ACTIONS(2899), + [anon_sym_NULL] = ACTIONS(2899), + [anon_sym_nullptr] = ACTIONS(2899), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2899), + [anon_sym_decltype] = ACTIONS(2899), + [anon_sym_explicit] = ACTIONS(2899), + [anon_sym_typename] = ACTIONS(2899), + [anon_sym_template] = ACTIONS(2899), + [anon_sym_operator] = ACTIONS(2899), + [anon_sym_try] = ACTIONS(2899), + [anon_sym_delete] = ACTIONS(2899), + [anon_sym_throw] = ACTIONS(2899), + [anon_sym_namespace] = ACTIONS(2899), + [anon_sym_static_assert] = ACTIONS(2899), + [anon_sym_concept] = ACTIONS(2899), + [anon_sym_co_return] = ACTIONS(2899), + [anon_sym_co_yield] = ACTIONS(2899), + [anon_sym_R_DQUOTE] = ACTIONS(2901), + [anon_sym_LR_DQUOTE] = ACTIONS(2901), + [anon_sym_uR_DQUOTE] = ACTIONS(2901), + [anon_sym_UR_DQUOTE] = ACTIONS(2901), + [anon_sym_u8R_DQUOTE] = ACTIONS(2901), + [anon_sym_co_await] = ACTIONS(2899), + [anon_sym_new] = ACTIONS(2899), + [anon_sym_requires] = ACTIONS(2899), + [sym_this] = ACTIONS(2899), + }, + [679] = { [sym_identifier] = ACTIONS(2899), [aux_sym_preproc_include_token1] = ACTIONS(2899), [aux_sym_preproc_def_token1] = ACTIONS(2899), @@ -139010,12 +139881,419 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2899), [sym_this] = ACTIONS(2899), }, - [676] = { + [680] = { + [sym_identifier] = ACTIONS(2903), + [aux_sym_preproc_include_token1] = ACTIONS(2903), + [aux_sym_preproc_def_token1] = ACTIONS(2903), + [aux_sym_preproc_if_token1] = ACTIONS(2903), + [aux_sym_preproc_if_token2] = ACTIONS(2903), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2903), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2903), + [sym_preproc_directive] = ACTIONS(2903), + [anon_sym_LPAREN2] = ACTIONS(2905), + [anon_sym_BANG] = ACTIONS(2905), + [anon_sym_TILDE] = ACTIONS(2905), + [anon_sym_DASH] = ACTIONS(2903), + [anon_sym_PLUS] = ACTIONS(2903), + [anon_sym_STAR] = ACTIONS(2905), + [anon_sym_AMP_AMP] = ACTIONS(2905), + [anon_sym_AMP] = ACTIONS(2903), + [anon_sym_SEMI] = ACTIONS(2905), + [anon_sym___extension__] = ACTIONS(2903), + [anon_sym_typedef] = ACTIONS(2903), + [anon_sym_virtual] = ACTIONS(2903), + [anon_sym_extern] = ACTIONS(2903), + [anon_sym___attribute__] = ACTIONS(2903), + [anon_sym___attribute] = ACTIONS(2903), + [anon_sym_using] = ACTIONS(2903), + [anon_sym_COLON_COLON] = ACTIONS(2905), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2905), + [anon_sym___declspec] = ACTIONS(2903), + [anon_sym___based] = ACTIONS(2903), + [anon_sym___cdecl] = ACTIONS(2903), + [anon_sym___clrcall] = ACTIONS(2903), + [anon_sym___stdcall] = ACTIONS(2903), + [anon_sym___fastcall] = ACTIONS(2903), + [anon_sym___thiscall] = ACTIONS(2903), + [anon_sym___vectorcall] = ACTIONS(2903), + [anon_sym_LBRACE] = ACTIONS(2905), + [anon_sym_signed] = ACTIONS(2903), + [anon_sym_unsigned] = ACTIONS(2903), + [anon_sym_long] = ACTIONS(2903), + [anon_sym_short] = ACTIONS(2903), + [anon_sym_LBRACK] = ACTIONS(2903), + [anon_sym_static] = ACTIONS(2903), + [anon_sym_register] = ACTIONS(2903), + [anon_sym_inline] = ACTIONS(2903), + [anon_sym___inline] = ACTIONS(2903), + [anon_sym___inline__] = ACTIONS(2903), + [anon_sym___forceinline] = ACTIONS(2903), + [anon_sym_thread_local] = ACTIONS(2903), + [anon_sym___thread] = ACTIONS(2903), + [anon_sym_const] = ACTIONS(2903), + [anon_sym_constexpr] = ACTIONS(2903), + [anon_sym_volatile] = ACTIONS(2903), + [anon_sym_restrict] = ACTIONS(2903), + [anon_sym___restrict__] = ACTIONS(2903), + [anon_sym__Atomic] = ACTIONS(2903), + [anon_sym__Noreturn] = ACTIONS(2903), + [anon_sym_noreturn] = ACTIONS(2903), + [anon_sym__Nonnull] = ACTIONS(2903), + [anon_sym_mutable] = ACTIONS(2903), + [anon_sym_constinit] = ACTIONS(2903), + [anon_sym_consteval] = ACTIONS(2903), + [anon_sym_alignas] = ACTIONS(2903), + [anon_sym__Alignas] = ACTIONS(2903), + [sym_primitive_type] = ACTIONS(2903), + [anon_sym_enum] = ACTIONS(2903), + [anon_sym_class] = ACTIONS(2903), + [anon_sym_struct] = ACTIONS(2903), + [anon_sym_union] = ACTIONS(2903), + [anon_sym_if] = ACTIONS(2903), + [anon_sym_switch] = ACTIONS(2903), + [anon_sym_case] = ACTIONS(2903), + [anon_sym_default] = ACTIONS(2903), + [anon_sym_while] = ACTIONS(2903), + [anon_sym_do] = ACTIONS(2903), + [anon_sym_for] = ACTIONS(2903), + [anon_sym_return] = ACTIONS(2903), + [anon_sym_break] = ACTIONS(2903), + [anon_sym_continue] = ACTIONS(2903), + [anon_sym_goto] = ACTIONS(2903), + [anon_sym___try] = ACTIONS(2903), + [anon_sym___leave] = ACTIONS(2903), + [anon_sym_not] = ACTIONS(2903), + [anon_sym_compl] = ACTIONS(2903), + [anon_sym_DASH_DASH] = ACTIONS(2905), + [anon_sym_PLUS_PLUS] = ACTIONS(2905), + [anon_sym_sizeof] = ACTIONS(2903), + [anon_sym___alignof__] = ACTIONS(2903), + [anon_sym___alignof] = ACTIONS(2903), + [anon_sym__alignof] = ACTIONS(2903), + [anon_sym_alignof] = ACTIONS(2903), + [anon_sym__Alignof] = ACTIONS(2903), + [anon_sym_offsetof] = ACTIONS(2903), + [anon_sym__Generic] = ACTIONS(2903), + [anon_sym_asm] = ACTIONS(2903), + [anon_sym___asm__] = ACTIONS(2903), + [anon_sym___asm] = ACTIONS(2903), + [sym_number_literal] = ACTIONS(2905), + [anon_sym_L_SQUOTE] = ACTIONS(2905), + [anon_sym_u_SQUOTE] = ACTIONS(2905), + [anon_sym_U_SQUOTE] = ACTIONS(2905), + [anon_sym_u8_SQUOTE] = ACTIONS(2905), + [anon_sym_SQUOTE] = ACTIONS(2905), + [anon_sym_L_DQUOTE] = ACTIONS(2905), + [anon_sym_u_DQUOTE] = ACTIONS(2905), + [anon_sym_U_DQUOTE] = ACTIONS(2905), + [anon_sym_u8_DQUOTE] = ACTIONS(2905), + [anon_sym_DQUOTE] = ACTIONS(2905), + [sym_true] = ACTIONS(2903), + [sym_false] = ACTIONS(2903), + [anon_sym_NULL] = ACTIONS(2903), + [anon_sym_nullptr] = ACTIONS(2903), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2903), + [anon_sym_decltype] = ACTIONS(2903), + [anon_sym_explicit] = ACTIONS(2903), + [anon_sym_typename] = ACTIONS(2903), + [anon_sym_template] = ACTIONS(2903), + [anon_sym_operator] = ACTIONS(2903), + [anon_sym_try] = ACTIONS(2903), + [anon_sym_delete] = ACTIONS(2903), + [anon_sym_throw] = ACTIONS(2903), + [anon_sym_namespace] = ACTIONS(2903), + [anon_sym_static_assert] = ACTIONS(2903), + [anon_sym_concept] = ACTIONS(2903), + [anon_sym_co_return] = ACTIONS(2903), + [anon_sym_co_yield] = ACTIONS(2903), + [anon_sym_R_DQUOTE] = ACTIONS(2905), + [anon_sym_LR_DQUOTE] = ACTIONS(2905), + [anon_sym_uR_DQUOTE] = ACTIONS(2905), + [anon_sym_UR_DQUOTE] = ACTIONS(2905), + [anon_sym_u8R_DQUOTE] = ACTIONS(2905), + [anon_sym_co_await] = ACTIONS(2903), + [anon_sym_new] = ACTIONS(2903), + [anon_sym_requires] = ACTIONS(2903), + [sym_this] = ACTIONS(2903), + }, + [681] = { + [sym_identifier] = ACTIONS(2907), + [aux_sym_preproc_include_token1] = ACTIONS(2907), + [aux_sym_preproc_def_token1] = ACTIONS(2907), + [aux_sym_preproc_if_token1] = ACTIONS(2907), + [aux_sym_preproc_if_token2] = ACTIONS(2907), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2907), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2907), + [sym_preproc_directive] = ACTIONS(2907), + [anon_sym_LPAREN2] = ACTIONS(2909), + [anon_sym_BANG] = ACTIONS(2909), + [anon_sym_TILDE] = ACTIONS(2909), + [anon_sym_DASH] = ACTIONS(2907), + [anon_sym_PLUS] = ACTIONS(2907), + [anon_sym_STAR] = ACTIONS(2909), + [anon_sym_AMP_AMP] = ACTIONS(2909), + [anon_sym_AMP] = ACTIONS(2907), + [anon_sym_SEMI] = ACTIONS(2909), + [anon_sym___extension__] = ACTIONS(2907), + [anon_sym_typedef] = ACTIONS(2907), + [anon_sym_virtual] = ACTIONS(2907), + [anon_sym_extern] = ACTIONS(2907), + [anon_sym___attribute__] = ACTIONS(2907), + [anon_sym___attribute] = ACTIONS(2907), + [anon_sym_using] = ACTIONS(2907), + [anon_sym_COLON_COLON] = ACTIONS(2909), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2909), + [anon_sym___declspec] = ACTIONS(2907), + [anon_sym___based] = ACTIONS(2907), + [anon_sym___cdecl] = ACTIONS(2907), + [anon_sym___clrcall] = ACTIONS(2907), + [anon_sym___stdcall] = ACTIONS(2907), + [anon_sym___fastcall] = ACTIONS(2907), + [anon_sym___thiscall] = ACTIONS(2907), + [anon_sym___vectorcall] = ACTIONS(2907), + [anon_sym_LBRACE] = ACTIONS(2909), + [anon_sym_signed] = ACTIONS(2907), + [anon_sym_unsigned] = ACTIONS(2907), + [anon_sym_long] = ACTIONS(2907), + [anon_sym_short] = ACTIONS(2907), + [anon_sym_LBRACK] = ACTIONS(2907), + [anon_sym_static] = ACTIONS(2907), + [anon_sym_register] = ACTIONS(2907), + [anon_sym_inline] = ACTIONS(2907), + [anon_sym___inline] = ACTIONS(2907), + [anon_sym___inline__] = ACTIONS(2907), + [anon_sym___forceinline] = ACTIONS(2907), + [anon_sym_thread_local] = ACTIONS(2907), + [anon_sym___thread] = ACTIONS(2907), + [anon_sym_const] = ACTIONS(2907), + [anon_sym_constexpr] = ACTIONS(2907), + [anon_sym_volatile] = ACTIONS(2907), + [anon_sym_restrict] = ACTIONS(2907), + [anon_sym___restrict__] = ACTIONS(2907), + [anon_sym__Atomic] = ACTIONS(2907), + [anon_sym__Noreturn] = ACTIONS(2907), + [anon_sym_noreturn] = ACTIONS(2907), + [anon_sym__Nonnull] = ACTIONS(2907), + [anon_sym_mutable] = ACTIONS(2907), + [anon_sym_constinit] = ACTIONS(2907), + [anon_sym_consteval] = ACTIONS(2907), + [anon_sym_alignas] = ACTIONS(2907), + [anon_sym__Alignas] = ACTIONS(2907), + [sym_primitive_type] = ACTIONS(2907), + [anon_sym_enum] = ACTIONS(2907), + [anon_sym_class] = ACTIONS(2907), + [anon_sym_struct] = ACTIONS(2907), + [anon_sym_union] = ACTIONS(2907), + [anon_sym_if] = ACTIONS(2907), + [anon_sym_switch] = ACTIONS(2907), + [anon_sym_case] = ACTIONS(2907), + [anon_sym_default] = ACTIONS(2907), + [anon_sym_while] = ACTIONS(2907), + [anon_sym_do] = ACTIONS(2907), + [anon_sym_for] = ACTIONS(2907), + [anon_sym_return] = ACTIONS(2907), + [anon_sym_break] = ACTIONS(2907), + [anon_sym_continue] = ACTIONS(2907), + [anon_sym_goto] = ACTIONS(2907), + [anon_sym___try] = ACTIONS(2907), + [anon_sym___leave] = ACTIONS(2907), + [anon_sym_not] = ACTIONS(2907), + [anon_sym_compl] = ACTIONS(2907), + [anon_sym_DASH_DASH] = ACTIONS(2909), + [anon_sym_PLUS_PLUS] = ACTIONS(2909), + [anon_sym_sizeof] = ACTIONS(2907), + [anon_sym___alignof__] = ACTIONS(2907), + [anon_sym___alignof] = ACTIONS(2907), + [anon_sym__alignof] = ACTIONS(2907), + [anon_sym_alignof] = ACTIONS(2907), + [anon_sym__Alignof] = ACTIONS(2907), + [anon_sym_offsetof] = ACTIONS(2907), + [anon_sym__Generic] = ACTIONS(2907), + [anon_sym_asm] = ACTIONS(2907), + [anon_sym___asm__] = ACTIONS(2907), + [anon_sym___asm] = ACTIONS(2907), + [sym_number_literal] = ACTIONS(2909), + [anon_sym_L_SQUOTE] = ACTIONS(2909), + [anon_sym_u_SQUOTE] = ACTIONS(2909), + [anon_sym_U_SQUOTE] = ACTIONS(2909), + [anon_sym_u8_SQUOTE] = ACTIONS(2909), + [anon_sym_SQUOTE] = ACTIONS(2909), + [anon_sym_L_DQUOTE] = ACTIONS(2909), + [anon_sym_u_DQUOTE] = ACTIONS(2909), + [anon_sym_U_DQUOTE] = ACTIONS(2909), + [anon_sym_u8_DQUOTE] = ACTIONS(2909), + [anon_sym_DQUOTE] = ACTIONS(2909), + [sym_true] = ACTIONS(2907), + [sym_false] = ACTIONS(2907), + [anon_sym_NULL] = ACTIONS(2907), + [anon_sym_nullptr] = ACTIONS(2907), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2907), + [anon_sym_decltype] = ACTIONS(2907), + [anon_sym_explicit] = ACTIONS(2907), + [anon_sym_typename] = ACTIONS(2907), + [anon_sym_template] = ACTIONS(2907), + [anon_sym_operator] = ACTIONS(2907), + [anon_sym_try] = ACTIONS(2907), + [anon_sym_delete] = ACTIONS(2907), + [anon_sym_throw] = ACTIONS(2907), + [anon_sym_namespace] = ACTIONS(2907), + [anon_sym_static_assert] = ACTIONS(2907), + [anon_sym_concept] = ACTIONS(2907), + [anon_sym_co_return] = ACTIONS(2907), + [anon_sym_co_yield] = ACTIONS(2907), + [anon_sym_R_DQUOTE] = ACTIONS(2909), + [anon_sym_LR_DQUOTE] = ACTIONS(2909), + [anon_sym_uR_DQUOTE] = ACTIONS(2909), + [anon_sym_UR_DQUOTE] = ACTIONS(2909), + [anon_sym_u8R_DQUOTE] = ACTIONS(2909), + [anon_sym_co_await] = ACTIONS(2907), + [anon_sym_new] = ACTIONS(2907), + [anon_sym_requires] = ACTIONS(2907), + [sym_this] = ACTIONS(2907), + }, + [682] = { + [sym_identifier] = ACTIONS(2903), + [aux_sym_preproc_include_token1] = ACTIONS(2903), + [aux_sym_preproc_def_token1] = ACTIONS(2903), + [aux_sym_preproc_if_token1] = ACTIONS(2903), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2903), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2903), + [sym_preproc_directive] = ACTIONS(2903), + [anon_sym_LPAREN2] = ACTIONS(2905), + [anon_sym_BANG] = ACTIONS(2905), + [anon_sym_TILDE] = ACTIONS(2905), + [anon_sym_DASH] = ACTIONS(2903), + [anon_sym_PLUS] = ACTIONS(2903), + [anon_sym_STAR] = ACTIONS(2905), + [anon_sym_AMP_AMP] = ACTIONS(2905), + [anon_sym_AMP] = ACTIONS(2903), + [anon_sym_SEMI] = ACTIONS(2905), + [anon_sym___extension__] = ACTIONS(2903), + [anon_sym_typedef] = ACTIONS(2903), + [anon_sym_virtual] = ACTIONS(2903), + [anon_sym_extern] = ACTIONS(2903), + [anon_sym___attribute__] = ACTIONS(2903), + [anon_sym___attribute] = ACTIONS(2903), + [anon_sym_using] = ACTIONS(2903), + [anon_sym_COLON_COLON] = ACTIONS(2905), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2905), + [anon_sym___declspec] = ACTIONS(2903), + [anon_sym___based] = ACTIONS(2903), + [anon_sym___cdecl] = ACTIONS(2903), + [anon_sym___clrcall] = ACTIONS(2903), + [anon_sym___stdcall] = ACTIONS(2903), + [anon_sym___fastcall] = ACTIONS(2903), + [anon_sym___thiscall] = ACTIONS(2903), + [anon_sym___vectorcall] = ACTIONS(2903), + [anon_sym_LBRACE] = ACTIONS(2905), + [anon_sym_RBRACE] = ACTIONS(2905), + [anon_sym_signed] = ACTIONS(2903), + [anon_sym_unsigned] = ACTIONS(2903), + [anon_sym_long] = ACTIONS(2903), + [anon_sym_short] = ACTIONS(2903), + [anon_sym_LBRACK] = ACTIONS(2903), + [anon_sym_static] = ACTIONS(2903), + [anon_sym_register] = ACTIONS(2903), + [anon_sym_inline] = ACTIONS(2903), + [anon_sym___inline] = ACTIONS(2903), + [anon_sym___inline__] = ACTIONS(2903), + [anon_sym___forceinline] = ACTIONS(2903), + [anon_sym_thread_local] = ACTIONS(2903), + [anon_sym___thread] = ACTIONS(2903), + [anon_sym_const] = ACTIONS(2903), + [anon_sym_constexpr] = ACTIONS(2903), + [anon_sym_volatile] = ACTIONS(2903), + [anon_sym_restrict] = ACTIONS(2903), + [anon_sym___restrict__] = ACTIONS(2903), + [anon_sym__Atomic] = ACTIONS(2903), + [anon_sym__Noreturn] = ACTIONS(2903), + [anon_sym_noreturn] = ACTIONS(2903), + [anon_sym__Nonnull] = ACTIONS(2903), + [anon_sym_mutable] = ACTIONS(2903), + [anon_sym_constinit] = ACTIONS(2903), + [anon_sym_consteval] = ACTIONS(2903), + [anon_sym_alignas] = ACTIONS(2903), + [anon_sym__Alignas] = ACTIONS(2903), + [sym_primitive_type] = ACTIONS(2903), + [anon_sym_enum] = ACTIONS(2903), + [anon_sym_class] = ACTIONS(2903), + [anon_sym_struct] = ACTIONS(2903), + [anon_sym_union] = ACTIONS(2903), + [anon_sym_if] = ACTIONS(2903), + [anon_sym_switch] = ACTIONS(2903), + [anon_sym_case] = ACTIONS(2903), + [anon_sym_default] = ACTIONS(2903), + [anon_sym_while] = ACTIONS(2903), + [anon_sym_do] = ACTIONS(2903), + [anon_sym_for] = ACTIONS(2903), + [anon_sym_return] = ACTIONS(2903), + [anon_sym_break] = ACTIONS(2903), + [anon_sym_continue] = ACTIONS(2903), + [anon_sym_goto] = ACTIONS(2903), + [anon_sym___try] = ACTIONS(2903), + [anon_sym___leave] = ACTIONS(2903), + [anon_sym_not] = ACTIONS(2903), + [anon_sym_compl] = ACTIONS(2903), + [anon_sym_DASH_DASH] = ACTIONS(2905), + [anon_sym_PLUS_PLUS] = ACTIONS(2905), + [anon_sym_sizeof] = ACTIONS(2903), + [anon_sym___alignof__] = ACTIONS(2903), + [anon_sym___alignof] = ACTIONS(2903), + [anon_sym__alignof] = ACTIONS(2903), + [anon_sym_alignof] = ACTIONS(2903), + [anon_sym__Alignof] = ACTIONS(2903), + [anon_sym_offsetof] = ACTIONS(2903), + [anon_sym__Generic] = ACTIONS(2903), + [anon_sym_asm] = ACTIONS(2903), + [anon_sym___asm__] = ACTIONS(2903), + [anon_sym___asm] = ACTIONS(2903), + [sym_number_literal] = ACTIONS(2905), + [anon_sym_L_SQUOTE] = ACTIONS(2905), + [anon_sym_u_SQUOTE] = ACTIONS(2905), + [anon_sym_U_SQUOTE] = ACTIONS(2905), + [anon_sym_u8_SQUOTE] = ACTIONS(2905), + [anon_sym_SQUOTE] = ACTIONS(2905), + [anon_sym_L_DQUOTE] = ACTIONS(2905), + [anon_sym_u_DQUOTE] = ACTIONS(2905), + [anon_sym_U_DQUOTE] = ACTIONS(2905), + [anon_sym_u8_DQUOTE] = ACTIONS(2905), + [anon_sym_DQUOTE] = ACTIONS(2905), + [sym_true] = ACTIONS(2903), + [sym_false] = ACTIONS(2903), + [anon_sym_NULL] = ACTIONS(2903), + [anon_sym_nullptr] = ACTIONS(2903), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2903), + [anon_sym_decltype] = ACTIONS(2903), + [anon_sym_explicit] = ACTIONS(2903), + [anon_sym_typename] = ACTIONS(2903), + [anon_sym_template] = ACTIONS(2903), + [anon_sym_operator] = ACTIONS(2903), + [anon_sym_try] = ACTIONS(2903), + [anon_sym_delete] = ACTIONS(2903), + [anon_sym_throw] = ACTIONS(2903), + [anon_sym_namespace] = ACTIONS(2903), + [anon_sym_static_assert] = ACTIONS(2903), + [anon_sym_concept] = ACTIONS(2903), + [anon_sym_co_return] = ACTIONS(2903), + [anon_sym_co_yield] = ACTIONS(2903), + [anon_sym_R_DQUOTE] = ACTIONS(2905), + [anon_sym_LR_DQUOTE] = ACTIONS(2905), + [anon_sym_uR_DQUOTE] = ACTIONS(2905), + [anon_sym_UR_DQUOTE] = ACTIONS(2905), + [anon_sym_u8R_DQUOTE] = ACTIONS(2905), + [anon_sym_co_await] = ACTIONS(2903), + [anon_sym_new] = ACTIONS(2903), + [anon_sym_requires] = ACTIONS(2903), + [sym_this] = ACTIONS(2903), + }, + [683] = { [sym_identifier] = ACTIONS(2907), [aux_sym_preproc_include_token1] = ACTIONS(2907), [aux_sym_preproc_def_token1] = ACTIONS(2907), [aux_sym_preproc_if_token1] = ACTIONS(2907), - [aux_sym_preproc_if_token2] = ACTIONS(2907), [aux_sym_preproc_ifdef_token1] = ACTIONS(2907), [aux_sym_preproc_ifdef_token2] = ACTIONS(2907), [sym_preproc_directive] = ACTIONS(2907), @@ -139046,6 +140324,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(2907), [anon_sym___vectorcall] = ACTIONS(2907), [anon_sym_LBRACE] = ACTIONS(2909), + [anon_sym_RBRACE] = ACTIONS(2909), [anon_sym_signed] = ACTIONS(2907), [anon_sym_unsigned] = ACTIONS(2907), [anon_sym_long] = ACTIONS(2907), @@ -139146,143 +140425,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2907), [sym_this] = ACTIONS(2907), }, - [677] = { - [sym_identifier] = ACTIONS(2911), - [aux_sym_preproc_include_token1] = ACTIONS(2911), - [aux_sym_preproc_def_token1] = ACTIONS(2911), - [aux_sym_preproc_if_token1] = ACTIONS(2911), - [aux_sym_preproc_if_token2] = ACTIONS(2911), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2911), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2911), - [sym_preproc_directive] = ACTIONS(2911), - [anon_sym_LPAREN2] = ACTIONS(2913), - [anon_sym_BANG] = ACTIONS(2913), - [anon_sym_TILDE] = ACTIONS(2913), - [anon_sym_DASH] = ACTIONS(2911), - [anon_sym_PLUS] = ACTIONS(2911), - [anon_sym_STAR] = ACTIONS(2913), - [anon_sym_AMP_AMP] = ACTIONS(2913), - [anon_sym_AMP] = ACTIONS(2911), - [anon_sym_SEMI] = ACTIONS(2913), - [anon_sym___extension__] = ACTIONS(2911), - [anon_sym_typedef] = ACTIONS(2911), - [anon_sym_virtual] = ACTIONS(2911), - [anon_sym_extern] = ACTIONS(2911), - [anon_sym___attribute__] = ACTIONS(2911), - [anon_sym___attribute] = ACTIONS(2911), - [anon_sym_using] = ACTIONS(2911), - [anon_sym_COLON_COLON] = ACTIONS(2913), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2913), - [anon_sym___declspec] = ACTIONS(2911), - [anon_sym___based] = ACTIONS(2911), - [anon_sym___cdecl] = ACTIONS(2911), - [anon_sym___clrcall] = ACTIONS(2911), - [anon_sym___stdcall] = ACTIONS(2911), - [anon_sym___fastcall] = ACTIONS(2911), - [anon_sym___thiscall] = ACTIONS(2911), - [anon_sym___vectorcall] = ACTIONS(2911), - [anon_sym_LBRACE] = ACTIONS(2913), - [anon_sym_signed] = ACTIONS(2911), - [anon_sym_unsigned] = ACTIONS(2911), - [anon_sym_long] = ACTIONS(2911), - [anon_sym_short] = ACTIONS(2911), - [anon_sym_LBRACK] = ACTIONS(2911), - [anon_sym_static] = ACTIONS(2911), - [anon_sym_register] = ACTIONS(2911), - [anon_sym_inline] = ACTIONS(2911), - [anon_sym___inline] = ACTIONS(2911), - [anon_sym___inline__] = ACTIONS(2911), - [anon_sym___forceinline] = ACTIONS(2911), - [anon_sym_thread_local] = ACTIONS(2911), - [anon_sym___thread] = ACTIONS(2911), - [anon_sym_const] = ACTIONS(2911), - [anon_sym_constexpr] = ACTIONS(2911), - [anon_sym_volatile] = ACTIONS(2911), - [anon_sym_restrict] = ACTIONS(2911), - [anon_sym___restrict__] = ACTIONS(2911), - [anon_sym__Atomic] = ACTIONS(2911), - [anon_sym__Noreturn] = ACTIONS(2911), - [anon_sym_noreturn] = ACTIONS(2911), - [anon_sym__Nonnull] = ACTIONS(2911), - [anon_sym_mutable] = ACTIONS(2911), - [anon_sym_constinit] = ACTIONS(2911), - [anon_sym_consteval] = ACTIONS(2911), - [anon_sym_alignas] = ACTIONS(2911), - [anon_sym__Alignas] = ACTIONS(2911), - [sym_primitive_type] = ACTIONS(2911), - [anon_sym_enum] = ACTIONS(2911), - [anon_sym_class] = ACTIONS(2911), - [anon_sym_struct] = ACTIONS(2911), - [anon_sym_union] = ACTIONS(2911), - [anon_sym_if] = ACTIONS(2911), - [anon_sym_switch] = ACTIONS(2911), - [anon_sym_case] = ACTIONS(2911), - [anon_sym_default] = ACTIONS(2911), - [anon_sym_while] = ACTIONS(2911), - [anon_sym_do] = ACTIONS(2911), - [anon_sym_for] = ACTIONS(2911), - [anon_sym_return] = ACTIONS(2911), - [anon_sym_break] = ACTIONS(2911), - [anon_sym_continue] = ACTIONS(2911), - [anon_sym_goto] = ACTIONS(2911), - [anon_sym___try] = ACTIONS(2911), - [anon_sym___leave] = ACTIONS(2911), - [anon_sym_not] = ACTIONS(2911), - [anon_sym_compl] = ACTIONS(2911), - [anon_sym_DASH_DASH] = ACTIONS(2913), - [anon_sym_PLUS_PLUS] = ACTIONS(2913), - [anon_sym_sizeof] = ACTIONS(2911), - [anon_sym___alignof__] = ACTIONS(2911), - [anon_sym___alignof] = ACTIONS(2911), - [anon_sym__alignof] = ACTIONS(2911), - [anon_sym_alignof] = ACTIONS(2911), - [anon_sym__Alignof] = ACTIONS(2911), - [anon_sym_offsetof] = ACTIONS(2911), - [anon_sym__Generic] = ACTIONS(2911), - [anon_sym_asm] = ACTIONS(2911), - [anon_sym___asm__] = ACTIONS(2911), - [anon_sym___asm] = ACTIONS(2911), - [sym_number_literal] = ACTIONS(2913), - [anon_sym_L_SQUOTE] = ACTIONS(2913), - [anon_sym_u_SQUOTE] = ACTIONS(2913), - [anon_sym_U_SQUOTE] = ACTIONS(2913), - [anon_sym_u8_SQUOTE] = ACTIONS(2913), - [anon_sym_SQUOTE] = ACTIONS(2913), - [anon_sym_L_DQUOTE] = ACTIONS(2913), - [anon_sym_u_DQUOTE] = ACTIONS(2913), - [anon_sym_U_DQUOTE] = ACTIONS(2913), - [anon_sym_u8_DQUOTE] = ACTIONS(2913), - [anon_sym_DQUOTE] = ACTIONS(2913), - [sym_true] = ACTIONS(2911), - [sym_false] = ACTIONS(2911), - [anon_sym_NULL] = ACTIONS(2911), - [anon_sym_nullptr] = ACTIONS(2911), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2911), - [anon_sym_decltype] = ACTIONS(2911), - [anon_sym_explicit] = ACTIONS(2911), - [anon_sym_typename] = ACTIONS(2911), - [anon_sym_template] = ACTIONS(2911), - [anon_sym_operator] = ACTIONS(2911), - [anon_sym_try] = ACTIONS(2911), - [anon_sym_delete] = ACTIONS(2911), - [anon_sym_throw] = ACTIONS(2911), - [anon_sym_namespace] = ACTIONS(2911), - [anon_sym_static_assert] = ACTIONS(2911), - [anon_sym_concept] = ACTIONS(2911), - [anon_sym_co_return] = ACTIONS(2911), - [anon_sym_co_yield] = ACTIONS(2911), - [anon_sym_R_DQUOTE] = ACTIONS(2913), - [anon_sym_LR_DQUOTE] = ACTIONS(2913), - [anon_sym_uR_DQUOTE] = ACTIONS(2913), - [anon_sym_UR_DQUOTE] = ACTIONS(2913), - [anon_sym_u8R_DQUOTE] = ACTIONS(2913), - [anon_sym_co_await] = ACTIONS(2911), - [anon_sym_new] = ACTIONS(2911), - [anon_sym_requires] = ACTIONS(2911), - [sym_this] = ACTIONS(2911), - }, - [678] = { + [684] = { [sym_identifier] = ACTIONS(2911), [aux_sym_preproc_include_token1] = ACTIONS(2911), [aux_sym_preproc_def_token1] = ACTIONS(2911), @@ -139350,1707 +140493,1707 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(2911), [anon_sym_struct] = ACTIONS(2911), [anon_sym_union] = ACTIONS(2911), - [anon_sym_if] = ACTIONS(2911), - [anon_sym_switch] = ACTIONS(2911), - [anon_sym_case] = ACTIONS(2911), - [anon_sym_default] = ACTIONS(2911), - [anon_sym_while] = ACTIONS(2911), - [anon_sym_do] = ACTIONS(2911), - [anon_sym_for] = ACTIONS(2911), - [anon_sym_return] = ACTIONS(2911), - [anon_sym_break] = ACTIONS(2911), - [anon_sym_continue] = ACTIONS(2911), - [anon_sym_goto] = ACTIONS(2911), - [anon_sym___try] = ACTIONS(2911), - [anon_sym___leave] = ACTIONS(2911), - [anon_sym_not] = ACTIONS(2911), - [anon_sym_compl] = ACTIONS(2911), - [anon_sym_DASH_DASH] = ACTIONS(2913), - [anon_sym_PLUS_PLUS] = ACTIONS(2913), - [anon_sym_sizeof] = ACTIONS(2911), - [anon_sym___alignof__] = ACTIONS(2911), - [anon_sym___alignof] = ACTIONS(2911), - [anon_sym__alignof] = ACTIONS(2911), - [anon_sym_alignof] = ACTIONS(2911), - [anon_sym__Alignof] = ACTIONS(2911), - [anon_sym_offsetof] = ACTIONS(2911), - [anon_sym__Generic] = ACTIONS(2911), - [anon_sym_asm] = ACTIONS(2911), - [anon_sym___asm__] = ACTIONS(2911), - [anon_sym___asm] = ACTIONS(2911), - [sym_number_literal] = ACTIONS(2913), - [anon_sym_L_SQUOTE] = ACTIONS(2913), - [anon_sym_u_SQUOTE] = ACTIONS(2913), - [anon_sym_U_SQUOTE] = ACTIONS(2913), - [anon_sym_u8_SQUOTE] = ACTIONS(2913), - [anon_sym_SQUOTE] = ACTIONS(2913), - [anon_sym_L_DQUOTE] = ACTIONS(2913), - [anon_sym_u_DQUOTE] = ACTIONS(2913), - [anon_sym_U_DQUOTE] = ACTIONS(2913), - [anon_sym_u8_DQUOTE] = ACTIONS(2913), - [anon_sym_DQUOTE] = ACTIONS(2913), - [sym_true] = ACTIONS(2911), - [sym_false] = ACTIONS(2911), - [anon_sym_NULL] = ACTIONS(2911), - [anon_sym_nullptr] = ACTIONS(2911), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2911), - [anon_sym_decltype] = ACTIONS(2911), - [anon_sym_explicit] = ACTIONS(2911), - [anon_sym_typename] = ACTIONS(2911), - [anon_sym_template] = ACTIONS(2911), - [anon_sym_operator] = ACTIONS(2911), - [anon_sym_try] = ACTIONS(2911), - [anon_sym_delete] = ACTIONS(2911), - [anon_sym_throw] = ACTIONS(2911), - [anon_sym_namespace] = ACTIONS(2911), - [anon_sym_static_assert] = ACTIONS(2911), - [anon_sym_concept] = ACTIONS(2911), - [anon_sym_co_return] = ACTIONS(2911), - [anon_sym_co_yield] = ACTIONS(2911), - [anon_sym_R_DQUOTE] = ACTIONS(2913), - [anon_sym_LR_DQUOTE] = ACTIONS(2913), - [anon_sym_uR_DQUOTE] = ACTIONS(2913), - [anon_sym_UR_DQUOTE] = ACTIONS(2913), - [anon_sym_u8R_DQUOTE] = ACTIONS(2913), - [anon_sym_co_await] = ACTIONS(2911), - [anon_sym_new] = ACTIONS(2911), - [anon_sym_requires] = ACTIONS(2911), - [sym_this] = ACTIONS(2911), - }, - [679] = { - [sym_identifier] = ACTIONS(2915), - [aux_sym_preproc_include_token1] = ACTIONS(2915), - [aux_sym_preproc_def_token1] = ACTIONS(2915), - [aux_sym_preproc_if_token1] = ACTIONS(2915), - [aux_sym_preproc_if_token2] = ACTIONS(2915), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2915), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2915), - [sym_preproc_directive] = ACTIONS(2915), - [anon_sym_LPAREN2] = ACTIONS(2917), - [anon_sym_BANG] = ACTIONS(2917), - [anon_sym_TILDE] = ACTIONS(2917), - [anon_sym_DASH] = ACTIONS(2915), - [anon_sym_PLUS] = ACTIONS(2915), - [anon_sym_STAR] = ACTIONS(2917), - [anon_sym_AMP_AMP] = ACTIONS(2917), - [anon_sym_AMP] = ACTIONS(2915), - [anon_sym_SEMI] = ACTIONS(2917), - [anon_sym___extension__] = ACTIONS(2915), - [anon_sym_typedef] = ACTIONS(2915), - [anon_sym_virtual] = ACTIONS(2915), - [anon_sym_extern] = ACTIONS(2915), - [anon_sym___attribute__] = ACTIONS(2915), - [anon_sym___attribute] = ACTIONS(2915), - [anon_sym_using] = ACTIONS(2915), - [anon_sym_COLON_COLON] = ACTIONS(2917), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2917), - [anon_sym___declspec] = ACTIONS(2915), - [anon_sym___based] = ACTIONS(2915), - [anon_sym___cdecl] = ACTIONS(2915), - [anon_sym___clrcall] = ACTIONS(2915), - [anon_sym___stdcall] = ACTIONS(2915), - [anon_sym___fastcall] = ACTIONS(2915), - [anon_sym___thiscall] = ACTIONS(2915), - [anon_sym___vectorcall] = ACTIONS(2915), - [anon_sym_LBRACE] = ACTIONS(2917), - [anon_sym_signed] = ACTIONS(2915), - [anon_sym_unsigned] = ACTIONS(2915), - [anon_sym_long] = ACTIONS(2915), - [anon_sym_short] = ACTIONS(2915), - [anon_sym_LBRACK] = ACTIONS(2915), - [anon_sym_static] = ACTIONS(2915), - [anon_sym_register] = ACTIONS(2915), - [anon_sym_inline] = ACTIONS(2915), - [anon_sym___inline] = ACTIONS(2915), - [anon_sym___inline__] = ACTIONS(2915), - [anon_sym___forceinline] = ACTIONS(2915), - [anon_sym_thread_local] = ACTIONS(2915), - [anon_sym___thread] = ACTIONS(2915), - [anon_sym_const] = ACTIONS(2915), - [anon_sym_constexpr] = ACTIONS(2915), - [anon_sym_volatile] = ACTIONS(2915), - [anon_sym_restrict] = ACTIONS(2915), - [anon_sym___restrict__] = ACTIONS(2915), - [anon_sym__Atomic] = ACTIONS(2915), - [anon_sym__Noreturn] = ACTIONS(2915), - [anon_sym_noreturn] = ACTIONS(2915), - [anon_sym__Nonnull] = ACTIONS(2915), - [anon_sym_mutable] = ACTIONS(2915), - [anon_sym_constinit] = ACTIONS(2915), - [anon_sym_consteval] = ACTIONS(2915), - [anon_sym_alignas] = ACTIONS(2915), - [anon_sym__Alignas] = ACTIONS(2915), - [sym_primitive_type] = ACTIONS(2915), - [anon_sym_enum] = ACTIONS(2915), - [anon_sym_class] = ACTIONS(2915), - [anon_sym_struct] = ACTIONS(2915), - [anon_sym_union] = ACTIONS(2915), - [anon_sym_if] = ACTIONS(2915), - [anon_sym_switch] = ACTIONS(2915), - [anon_sym_case] = ACTIONS(2915), - [anon_sym_default] = ACTIONS(2915), - [anon_sym_while] = ACTIONS(2915), - [anon_sym_do] = ACTIONS(2915), - [anon_sym_for] = ACTIONS(2915), - [anon_sym_return] = ACTIONS(2915), - [anon_sym_break] = ACTIONS(2915), - [anon_sym_continue] = ACTIONS(2915), - [anon_sym_goto] = ACTIONS(2915), - [anon_sym___try] = ACTIONS(2915), - [anon_sym___leave] = ACTIONS(2915), - [anon_sym_not] = ACTIONS(2915), - [anon_sym_compl] = ACTIONS(2915), - [anon_sym_DASH_DASH] = ACTIONS(2917), - [anon_sym_PLUS_PLUS] = ACTIONS(2917), - [anon_sym_sizeof] = ACTIONS(2915), - [anon_sym___alignof__] = ACTIONS(2915), - [anon_sym___alignof] = ACTIONS(2915), - [anon_sym__alignof] = ACTIONS(2915), - [anon_sym_alignof] = ACTIONS(2915), - [anon_sym__Alignof] = ACTIONS(2915), - [anon_sym_offsetof] = ACTIONS(2915), - [anon_sym__Generic] = ACTIONS(2915), - [anon_sym_asm] = ACTIONS(2915), - [anon_sym___asm__] = ACTIONS(2915), - [anon_sym___asm] = ACTIONS(2915), - [sym_number_literal] = ACTIONS(2917), - [anon_sym_L_SQUOTE] = ACTIONS(2917), - [anon_sym_u_SQUOTE] = ACTIONS(2917), - [anon_sym_U_SQUOTE] = ACTIONS(2917), - [anon_sym_u8_SQUOTE] = ACTIONS(2917), - [anon_sym_SQUOTE] = ACTIONS(2917), - [anon_sym_L_DQUOTE] = ACTIONS(2917), - [anon_sym_u_DQUOTE] = ACTIONS(2917), - [anon_sym_U_DQUOTE] = ACTIONS(2917), - [anon_sym_u8_DQUOTE] = ACTIONS(2917), - [anon_sym_DQUOTE] = ACTIONS(2917), - [sym_true] = ACTIONS(2915), - [sym_false] = ACTIONS(2915), - [anon_sym_NULL] = ACTIONS(2915), - [anon_sym_nullptr] = ACTIONS(2915), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2915), - [anon_sym_decltype] = ACTIONS(2915), - [anon_sym_explicit] = ACTIONS(2915), - [anon_sym_typename] = ACTIONS(2915), - [anon_sym_template] = ACTIONS(2915), - [anon_sym_operator] = ACTIONS(2915), - [anon_sym_try] = ACTIONS(2915), - [anon_sym_delete] = ACTIONS(2915), - [anon_sym_throw] = ACTIONS(2915), - [anon_sym_namespace] = ACTIONS(2915), - [anon_sym_static_assert] = ACTIONS(2915), - [anon_sym_concept] = ACTIONS(2915), - [anon_sym_co_return] = ACTIONS(2915), - [anon_sym_co_yield] = ACTIONS(2915), - [anon_sym_R_DQUOTE] = ACTIONS(2917), - [anon_sym_LR_DQUOTE] = ACTIONS(2917), - [anon_sym_uR_DQUOTE] = ACTIONS(2917), - [anon_sym_UR_DQUOTE] = ACTIONS(2917), - [anon_sym_u8R_DQUOTE] = ACTIONS(2917), - [anon_sym_co_await] = ACTIONS(2915), - [anon_sym_new] = ACTIONS(2915), - [anon_sym_requires] = ACTIONS(2915), - [sym_this] = ACTIONS(2915), - }, - [680] = { - [sym_identifier] = ACTIONS(2915), - [aux_sym_preproc_include_token1] = ACTIONS(2915), - [aux_sym_preproc_def_token1] = ACTIONS(2915), - [aux_sym_preproc_if_token1] = ACTIONS(2915), - [aux_sym_preproc_if_token2] = ACTIONS(2915), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2915), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2915), - [sym_preproc_directive] = ACTIONS(2915), - [anon_sym_LPAREN2] = ACTIONS(2917), - [anon_sym_BANG] = ACTIONS(2917), - [anon_sym_TILDE] = ACTIONS(2917), - [anon_sym_DASH] = ACTIONS(2915), - [anon_sym_PLUS] = ACTIONS(2915), - [anon_sym_STAR] = ACTIONS(2917), - [anon_sym_AMP_AMP] = ACTIONS(2917), - [anon_sym_AMP] = ACTIONS(2915), - [anon_sym_SEMI] = ACTIONS(2917), - [anon_sym___extension__] = ACTIONS(2915), - [anon_sym_typedef] = ACTIONS(2915), - [anon_sym_virtual] = ACTIONS(2915), - [anon_sym_extern] = ACTIONS(2915), - [anon_sym___attribute__] = ACTIONS(2915), - [anon_sym___attribute] = ACTIONS(2915), - [anon_sym_using] = ACTIONS(2915), - [anon_sym_COLON_COLON] = ACTIONS(2917), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2917), - [anon_sym___declspec] = ACTIONS(2915), - [anon_sym___based] = ACTIONS(2915), - [anon_sym___cdecl] = ACTIONS(2915), - [anon_sym___clrcall] = ACTIONS(2915), - [anon_sym___stdcall] = ACTIONS(2915), - [anon_sym___fastcall] = ACTIONS(2915), - [anon_sym___thiscall] = ACTIONS(2915), - [anon_sym___vectorcall] = ACTIONS(2915), - [anon_sym_LBRACE] = ACTIONS(2917), - [anon_sym_signed] = ACTIONS(2915), - [anon_sym_unsigned] = ACTIONS(2915), - [anon_sym_long] = ACTIONS(2915), - [anon_sym_short] = ACTIONS(2915), - [anon_sym_LBRACK] = ACTIONS(2915), - [anon_sym_static] = ACTIONS(2915), - [anon_sym_register] = ACTIONS(2915), - [anon_sym_inline] = ACTIONS(2915), - [anon_sym___inline] = ACTIONS(2915), - [anon_sym___inline__] = ACTIONS(2915), - [anon_sym___forceinline] = ACTIONS(2915), - [anon_sym_thread_local] = ACTIONS(2915), - [anon_sym___thread] = ACTIONS(2915), - [anon_sym_const] = ACTIONS(2915), - [anon_sym_constexpr] = ACTIONS(2915), - [anon_sym_volatile] = ACTIONS(2915), - [anon_sym_restrict] = ACTIONS(2915), - [anon_sym___restrict__] = ACTIONS(2915), - [anon_sym__Atomic] = ACTIONS(2915), - [anon_sym__Noreturn] = ACTIONS(2915), - [anon_sym_noreturn] = ACTIONS(2915), - [anon_sym__Nonnull] = ACTIONS(2915), - [anon_sym_mutable] = ACTIONS(2915), - [anon_sym_constinit] = ACTIONS(2915), - [anon_sym_consteval] = ACTIONS(2915), - [anon_sym_alignas] = ACTIONS(2915), - [anon_sym__Alignas] = ACTIONS(2915), - [sym_primitive_type] = ACTIONS(2915), - [anon_sym_enum] = ACTIONS(2915), - [anon_sym_class] = ACTIONS(2915), - [anon_sym_struct] = ACTIONS(2915), - [anon_sym_union] = ACTIONS(2915), - [anon_sym_if] = ACTIONS(2915), - [anon_sym_switch] = ACTIONS(2915), - [anon_sym_case] = ACTIONS(2915), - [anon_sym_default] = ACTIONS(2915), - [anon_sym_while] = ACTIONS(2915), - [anon_sym_do] = ACTIONS(2915), - [anon_sym_for] = ACTIONS(2915), - [anon_sym_return] = ACTIONS(2915), - [anon_sym_break] = ACTIONS(2915), - [anon_sym_continue] = ACTIONS(2915), - [anon_sym_goto] = ACTIONS(2915), - [anon_sym___try] = ACTIONS(2915), - [anon_sym___leave] = ACTIONS(2915), - [anon_sym_not] = ACTIONS(2915), - [anon_sym_compl] = ACTIONS(2915), - [anon_sym_DASH_DASH] = ACTIONS(2917), - [anon_sym_PLUS_PLUS] = ACTIONS(2917), - [anon_sym_sizeof] = ACTIONS(2915), - [anon_sym___alignof__] = ACTIONS(2915), - [anon_sym___alignof] = ACTIONS(2915), - [anon_sym__alignof] = ACTIONS(2915), - [anon_sym_alignof] = ACTIONS(2915), - [anon_sym__Alignof] = ACTIONS(2915), - [anon_sym_offsetof] = ACTIONS(2915), - [anon_sym__Generic] = ACTIONS(2915), - [anon_sym_asm] = ACTIONS(2915), - [anon_sym___asm__] = ACTIONS(2915), - [anon_sym___asm] = ACTIONS(2915), - [sym_number_literal] = ACTIONS(2917), - [anon_sym_L_SQUOTE] = ACTIONS(2917), - [anon_sym_u_SQUOTE] = ACTIONS(2917), - [anon_sym_U_SQUOTE] = ACTIONS(2917), - [anon_sym_u8_SQUOTE] = ACTIONS(2917), - [anon_sym_SQUOTE] = ACTIONS(2917), - [anon_sym_L_DQUOTE] = ACTIONS(2917), - [anon_sym_u_DQUOTE] = ACTIONS(2917), - [anon_sym_U_DQUOTE] = ACTIONS(2917), - [anon_sym_u8_DQUOTE] = ACTIONS(2917), - [anon_sym_DQUOTE] = ACTIONS(2917), - [sym_true] = ACTIONS(2915), - [sym_false] = ACTIONS(2915), - [anon_sym_NULL] = ACTIONS(2915), - [anon_sym_nullptr] = ACTIONS(2915), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2915), - [anon_sym_decltype] = ACTIONS(2915), - [anon_sym_explicit] = ACTIONS(2915), - [anon_sym_typename] = ACTIONS(2915), - [anon_sym_template] = ACTIONS(2915), - [anon_sym_operator] = ACTIONS(2915), - [anon_sym_try] = ACTIONS(2915), - [anon_sym_delete] = ACTIONS(2915), - [anon_sym_throw] = ACTIONS(2915), - [anon_sym_namespace] = ACTIONS(2915), - [anon_sym_static_assert] = ACTIONS(2915), - [anon_sym_concept] = ACTIONS(2915), - [anon_sym_co_return] = ACTIONS(2915), - [anon_sym_co_yield] = ACTIONS(2915), - [anon_sym_R_DQUOTE] = ACTIONS(2917), - [anon_sym_LR_DQUOTE] = ACTIONS(2917), - [anon_sym_uR_DQUOTE] = ACTIONS(2917), - [anon_sym_UR_DQUOTE] = ACTIONS(2917), - [anon_sym_u8R_DQUOTE] = ACTIONS(2917), - [anon_sym_co_await] = ACTIONS(2915), - [anon_sym_new] = ACTIONS(2915), - [anon_sym_requires] = ACTIONS(2915), - [sym_this] = ACTIONS(2915), - }, - [681] = { - [sym_identifier] = ACTIONS(2943), - [aux_sym_preproc_include_token1] = ACTIONS(2943), - [aux_sym_preproc_def_token1] = ACTIONS(2943), - [aux_sym_preproc_if_token1] = ACTIONS(2943), - [aux_sym_preproc_if_token2] = ACTIONS(2943), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2943), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2943), - [sym_preproc_directive] = ACTIONS(2943), - [anon_sym_LPAREN2] = ACTIONS(2945), - [anon_sym_BANG] = ACTIONS(2945), - [anon_sym_TILDE] = ACTIONS(2945), - [anon_sym_DASH] = ACTIONS(2943), - [anon_sym_PLUS] = ACTIONS(2943), - [anon_sym_STAR] = ACTIONS(2945), - [anon_sym_AMP_AMP] = ACTIONS(2945), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_SEMI] = ACTIONS(2945), - [anon_sym___extension__] = ACTIONS(2943), - [anon_sym_typedef] = ACTIONS(2943), - [anon_sym_virtual] = ACTIONS(2943), - [anon_sym_extern] = ACTIONS(2943), - [anon_sym___attribute__] = ACTIONS(2943), - [anon_sym___attribute] = ACTIONS(2943), - [anon_sym_using] = ACTIONS(2943), - [anon_sym_COLON_COLON] = ACTIONS(2945), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2945), - [anon_sym___declspec] = ACTIONS(2943), - [anon_sym___based] = ACTIONS(2943), - [anon_sym___cdecl] = ACTIONS(2943), - [anon_sym___clrcall] = ACTIONS(2943), - [anon_sym___stdcall] = ACTIONS(2943), - [anon_sym___fastcall] = ACTIONS(2943), - [anon_sym___thiscall] = ACTIONS(2943), - [anon_sym___vectorcall] = ACTIONS(2943), - [anon_sym_LBRACE] = ACTIONS(2945), - [anon_sym_signed] = ACTIONS(2943), - [anon_sym_unsigned] = ACTIONS(2943), - [anon_sym_long] = ACTIONS(2943), - [anon_sym_short] = ACTIONS(2943), - [anon_sym_LBRACK] = ACTIONS(2943), - [anon_sym_static] = ACTIONS(2943), - [anon_sym_register] = ACTIONS(2943), - [anon_sym_inline] = ACTIONS(2943), - [anon_sym___inline] = ACTIONS(2943), - [anon_sym___inline__] = ACTIONS(2943), - [anon_sym___forceinline] = ACTIONS(2943), - [anon_sym_thread_local] = ACTIONS(2943), - [anon_sym___thread] = ACTIONS(2943), - [anon_sym_const] = ACTIONS(2943), - [anon_sym_constexpr] = ACTIONS(2943), - [anon_sym_volatile] = ACTIONS(2943), - [anon_sym_restrict] = ACTIONS(2943), - [anon_sym___restrict__] = ACTIONS(2943), - [anon_sym__Atomic] = ACTIONS(2943), - [anon_sym__Noreturn] = ACTIONS(2943), - [anon_sym_noreturn] = ACTIONS(2943), - [anon_sym__Nonnull] = ACTIONS(2943), - [anon_sym_mutable] = ACTIONS(2943), - [anon_sym_constinit] = ACTIONS(2943), - [anon_sym_consteval] = ACTIONS(2943), - [anon_sym_alignas] = ACTIONS(2943), - [anon_sym__Alignas] = ACTIONS(2943), - [sym_primitive_type] = ACTIONS(2943), - [anon_sym_enum] = ACTIONS(2943), - [anon_sym_class] = ACTIONS(2943), - [anon_sym_struct] = ACTIONS(2943), - [anon_sym_union] = ACTIONS(2943), - [anon_sym_if] = ACTIONS(2943), - [anon_sym_switch] = ACTIONS(2943), - [anon_sym_case] = ACTIONS(2943), - [anon_sym_default] = ACTIONS(2943), - [anon_sym_while] = ACTIONS(2943), - [anon_sym_do] = ACTIONS(2943), - [anon_sym_for] = ACTIONS(2943), - [anon_sym_return] = ACTIONS(2943), - [anon_sym_break] = ACTIONS(2943), - [anon_sym_continue] = ACTIONS(2943), - [anon_sym_goto] = ACTIONS(2943), - [anon_sym___try] = ACTIONS(2943), - [anon_sym___leave] = ACTIONS(2943), - [anon_sym_not] = ACTIONS(2943), - [anon_sym_compl] = ACTIONS(2943), - [anon_sym_DASH_DASH] = ACTIONS(2945), - [anon_sym_PLUS_PLUS] = ACTIONS(2945), - [anon_sym_sizeof] = ACTIONS(2943), - [anon_sym___alignof__] = ACTIONS(2943), - [anon_sym___alignof] = ACTIONS(2943), - [anon_sym__alignof] = ACTIONS(2943), - [anon_sym_alignof] = ACTIONS(2943), - [anon_sym__Alignof] = ACTIONS(2943), - [anon_sym_offsetof] = ACTIONS(2943), - [anon_sym__Generic] = ACTIONS(2943), - [anon_sym_asm] = ACTIONS(2943), - [anon_sym___asm__] = ACTIONS(2943), - [anon_sym___asm] = ACTIONS(2943), - [sym_number_literal] = ACTIONS(2945), - [anon_sym_L_SQUOTE] = ACTIONS(2945), - [anon_sym_u_SQUOTE] = ACTIONS(2945), - [anon_sym_U_SQUOTE] = ACTIONS(2945), - [anon_sym_u8_SQUOTE] = ACTIONS(2945), - [anon_sym_SQUOTE] = ACTIONS(2945), - [anon_sym_L_DQUOTE] = ACTIONS(2945), - [anon_sym_u_DQUOTE] = ACTIONS(2945), - [anon_sym_U_DQUOTE] = ACTIONS(2945), - [anon_sym_u8_DQUOTE] = ACTIONS(2945), - [anon_sym_DQUOTE] = ACTIONS(2945), - [sym_true] = ACTIONS(2943), - [sym_false] = ACTIONS(2943), - [anon_sym_NULL] = ACTIONS(2943), - [anon_sym_nullptr] = ACTIONS(2943), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2943), - [anon_sym_decltype] = ACTIONS(2943), - [anon_sym_explicit] = ACTIONS(2943), - [anon_sym_typename] = ACTIONS(2943), - [anon_sym_template] = ACTIONS(2943), - [anon_sym_operator] = ACTIONS(2943), - [anon_sym_try] = ACTIONS(2943), - [anon_sym_delete] = ACTIONS(2943), - [anon_sym_throw] = ACTIONS(2943), - [anon_sym_namespace] = ACTIONS(2943), - [anon_sym_static_assert] = ACTIONS(2943), - [anon_sym_concept] = ACTIONS(2943), - [anon_sym_co_return] = ACTIONS(2943), - [anon_sym_co_yield] = ACTIONS(2943), - [anon_sym_R_DQUOTE] = ACTIONS(2945), - [anon_sym_LR_DQUOTE] = ACTIONS(2945), - [anon_sym_uR_DQUOTE] = ACTIONS(2945), - [anon_sym_UR_DQUOTE] = ACTIONS(2945), - [anon_sym_u8R_DQUOTE] = ACTIONS(2945), - [anon_sym_co_await] = ACTIONS(2943), - [anon_sym_new] = ACTIONS(2943), - [anon_sym_requires] = ACTIONS(2943), - [sym_this] = ACTIONS(2943), - }, - [682] = { - [sym_identifier] = ACTIONS(2947), - [aux_sym_preproc_include_token1] = ACTIONS(2947), - [aux_sym_preproc_def_token1] = ACTIONS(2947), - [aux_sym_preproc_if_token1] = ACTIONS(2947), - [aux_sym_preproc_if_token2] = ACTIONS(2947), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2947), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2947), - [sym_preproc_directive] = ACTIONS(2947), - [anon_sym_LPAREN2] = ACTIONS(2949), - [anon_sym_BANG] = ACTIONS(2949), - [anon_sym_TILDE] = ACTIONS(2949), - [anon_sym_DASH] = ACTIONS(2947), - [anon_sym_PLUS] = ACTIONS(2947), - [anon_sym_STAR] = ACTIONS(2949), - [anon_sym_AMP_AMP] = ACTIONS(2949), - [anon_sym_AMP] = ACTIONS(2947), - [anon_sym_SEMI] = ACTIONS(2949), - [anon_sym___extension__] = ACTIONS(2947), - [anon_sym_typedef] = ACTIONS(2947), - [anon_sym_virtual] = ACTIONS(2947), - [anon_sym_extern] = ACTIONS(2947), - [anon_sym___attribute__] = ACTIONS(2947), - [anon_sym___attribute] = ACTIONS(2947), - [anon_sym_using] = ACTIONS(2947), - [anon_sym_COLON_COLON] = ACTIONS(2949), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2949), - [anon_sym___declspec] = ACTIONS(2947), - [anon_sym___based] = ACTIONS(2947), - [anon_sym___cdecl] = ACTIONS(2947), - [anon_sym___clrcall] = ACTIONS(2947), - [anon_sym___stdcall] = ACTIONS(2947), - [anon_sym___fastcall] = ACTIONS(2947), - [anon_sym___thiscall] = ACTIONS(2947), - [anon_sym___vectorcall] = ACTIONS(2947), - [anon_sym_LBRACE] = ACTIONS(2949), - [anon_sym_signed] = ACTIONS(2947), - [anon_sym_unsigned] = ACTIONS(2947), - [anon_sym_long] = ACTIONS(2947), - [anon_sym_short] = ACTIONS(2947), - [anon_sym_LBRACK] = ACTIONS(2947), - [anon_sym_static] = ACTIONS(2947), - [anon_sym_register] = ACTIONS(2947), - [anon_sym_inline] = ACTIONS(2947), - [anon_sym___inline] = ACTIONS(2947), - [anon_sym___inline__] = ACTIONS(2947), - [anon_sym___forceinline] = ACTIONS(2947), - [anon_sym_thread_local] = ACTIONS(2947), - [anon_sym___thread] = ACTIONS(2947), - [anon_sym_const] = ACTIONS(2947), - [anon_sym_constexpr] = ACTIONS(2947), - [anon_sym_volatile] = ACTIONS(2947), - [anon_sym_restrict] = ACTIONS(2947), - [anon_sym___restrict__] = ACTIONS(2947), - [anon_sym__Atomic] = ACTIONS(2947), - [anon_sym__Noreturn] = ACTIONS(2947), - [anon_sym_noreturn] = ACTIONS(2947), - [anon_sym__Nonnull] = ACTIONS(2947), - [anon_sym_mutable] = ACTIONS(2947), - [anon_sym_constinit] = ACTIONS(2947), - [anon_sym_consteval] = ACTIONS(2947), - [anon_sym_alignas] = ACTIONS(2947), - [anon_sym__Alignas] = ACTIONS(2947), - [sym_primitive_type] = ACTIONS(2947), - [anon_sym_enum] = ACTIONS(2947), - [anon_sym_class] = ACTIONS(2947), - [anon_sym_struct] = ACTIONS(2947), - [anon_sym_union] = ACTIONS(2947), - [anon_sym_if] = ACTIONS(2947), - [anon_sym_switch] = ACTIONS(2947), - [anon_sym_case] = ACTIONS(2947), - [anon_sym_default] = ACTIONS(2947), - [anon_sym_while] = ACTIONS(2947), - [anon_sym_do] = ACTIONS(2947), - [anon_sym_for] = ACTIONS(2947), - [anon_sym_return] = ACTIONS(2947), - [anon_sym_break] = ACTIONS(2947), - [anon_sym_continue] = ACTIONS(2947), - [anon_sym_goto] = ACTIONS(2947), - [anon_sym___try] = ACTIONS(2947), - [anon_sym___leave] = ACTIONS(2947), - [anon_sym_not] = ACTIONS(2947), - [anon_sym_compl] = ACTIONS(2947), - [anon_sym_DASH_DASH] = ACTIONS(2949), - [anon_sym_PLUS_PLUS] = ACTIONS(2949), - [anon_sym_sizeof] = ACTIONS(2947), - [anon_sym___alignof__] = ACTIONS(2947), - [anon_sym___alignof] = ACTIONS(2947), - [anon_sym__alignof] = ACTIONS(2947), - [anon_sym_alignof] = ACTIONS(2947), - [anon_sym__Alignof] = ACTIONS(2947), - [anon_sym_offsetof] = ACTIONS(2947), - [anon_sym__Generic] = ACTIONS(2947), - [anon_sym_asm] = ACTIONS(2947), - [anon_sym___asm__] = ACTIONS(2947), - [anon_sym___asm] = ACTIONS(2947), - [sym_number_literal] = ACTIONS(2949), - [anon_sym_L_SQUOTE] = ACTIONS(2949), - [anon_sym_u_SQUOTE] = ACTIONS(2949), - [anon_sym_U_SQUOTE] = ACTIONS(2949), - [anon_sym_u8_SQUOTE] = ACTIONS(2949), - [anon_sym_SQUOTE] = ACTIONS(2949), - [anon_sym_L_DQUOTE] = ACTIONS(2949), - [anon_sym_u_DQUOTE] = ACTIONS(2949), - [anon_sym_U_DQUOTE] = ACTIONS(2949), - [anon_sym_u8_DQUOTE] = ACTIONS(2949), - [anon_sym_DQUOTE] = ACTIONS(2949), - [sym_true] = ACTIONS(2947), - [sym_false] = ACTIONS(2947), - [anon_sym_NULL] = ACTIONS(2947), - [anon_sym_nullptr] = ACTIONS(2947), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2947), - [anon_sym_decltype] = ACTIONS(2947), - [anon_sym_explicit] = ACTIONS(2947), - [anon_sym_typename] = ACTIONS(2947), - [anon_sym_template] = ACTIONS(2947), - [anon_sym_operator] = ACTIONS(2947), - [anon_sym_try] = ACTIONS(2947), - [anon_sym_delete] = ACTIONS(2947), - [anon_sym_throw] = ACTIONS(2947), - [anon_sym_namespace] = ACTIONS(2947), - [anon_sym_static_assert] = ACTIONS(2947), - [anon_sym_concept] = ACTIONS(2947), - [anon_sym_co_return] = ACTIONS(2947), - [anon_sym_co_yield] = ACTIONS(2947), - [anon_sym_R_DQUOTE] = ACTIONS(2949), - [anon_sym_LR_DQUOTE] = ACTIONS(2949), - [anon_sym_uR_DQUOTE] = ACTIONS(2949), - [anon_sym_UR_DQUOTE] = ACTIONS(2949), - [anon_sym_u8R_DQUOTE] = ACTIONS(2949), - [anon_sym_co_await] = ACTIONS(2947), - [anon_sym_new] = ACTIONS(2947), - [anon_sym_requires] = ACTIONS(2947), - [sym_this] = ACTIONS(2947), - }, - [683] = { - [sym_identifier] = ACTIONS(2951), - [aux_sym_preproc_include_token1] = ACTIONS(2951), - [aux_sym_preproc_def_token1] = ACTIONS(2951), - [aux_sym_preproc_if_token1] = ACTIONS(2951), - [aux_sym_preproc_if_token2] = ACTIONS(2951), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2951), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2951), - [sym_preproc_directive] = ACTIONS(2951), - [anon_sym_LPAREN2] = ACTIONS(2953), - [anon_sym_BANG] = ACTIONS(2953), - [anon_sym_TILDE] = ACTIONS(2953), - [anon_sym_DASH] = ACTIONS(2951), - [anon_sym_PLUS] = ACTIONS(2951), - [anon_sym_STAR] = ACTIONS(2953), - [anon_sym_AMP_AMP] = ACTIONS(2953), - [anon_sym_AMP] = ACTIONS(2951), - [anon_sym_SEMI] = ACTIONS(2953), - [anon_sym___extension__] = ACTIONS(2951), - [anon_sym_typedef] = ACTIONS(2951), - [anon_sym_virtual] = ACTIONS(2951), - [anon_sym_extern] = ACTIONS(2951), - [anon_sym___attribute__] = ACTIONS(2951), - [anon_sym___attribute] = ACTIONS(2951), - [anon_sym_using] = ACTIONS(2951), - [anon_sym_COLON_COLON] = ACTIONS(2953), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2953), - [anon_sym___declspec] = ACTIONS(2951), - [anon_sym___based] = ACTIONS(2951), - [anon_sym___cdecl] = ACTIONS(2951), - [anon_sym___clrcall] = ACTIONS(2951), - [anon_sym___stdcall] = ACTIONS(2951), - [anon_sym___fastcall] = ACTIONS(2951), - [anon_sym___thiscall] = ACTIONS(2951), - [anon_sym___vectorcall] = ACTIONS(2951), - [anon_sym_LBRACE] = ACTIONS(2953), - [anon_sym_signed] = ACTIONS(2951), - [anon_sym_unsigned] = ACTIONS(2951), - [anon_sym_long] = ACTIONS(2951), - [anon_sym_short] = ACTIONS(2951), - [anon_sym_LBRACK] = ACTIONS(2951), - [anon_sym_static] = ACTIONS(2951), - [anon_sym_register] = ACTIONS(2951), - [anon_sym_inline] = ACTIONS(2951), - [anon_sym___inline] = ACTIONS(2951), - [anon_sym___inline__] = ACTIONS(2951), - [anon_sym___forceinline] = ACTIONS(2951), - [anon_sym_thread_local] = ACTIONS(2951), - [anon_sym___thread] = ACTIONS(2951), - [anon_sym_const] = ACTIONS(2951), - [anon_sym_constexpr] = ACTIONS(2951), - [anon_sym_volatile] = ACTIONS(2951), - [anon_sym_restrict] = ACTIONS(2951), - [anon_sym___restrict__] = ACTIONS(2951), - [anon_sym__Atomic] = ACTIONS(2951), - [anon_sym__Noreturn] = ACTIONS(2951), - [anon_sym_noreturn] = ACTIONS(2951), - [anon_sym__Nonnull] = ACTIONS(2951), - [anon_sym_mutable] = ACTIONS(2951), - [anon_sym_constinit] = ACTIONS(2951), - [anon_sym_consteval] = ACTIONS(2951), - [anon_sym_alignas] = ACTIONS(2951), - [anon_sym__Alignas] = ACTIONS(2951), - [sym_primitive_type] = ACTIONS(2951), - [anon_sym_enum] = ACTIONS(2951), - [anon_sym_class] = ACTIONS(2951), - [anon_sym_struct] = ACTIONS(2951), - [anon_sym_union] = ACTIONS(2951), - [anon_sym_if] = ACTIONS(2951), - [anon_sym_switch] = ACTIONS(2951), - [anon_sym_case] = ACTIONS(2951), - [anon_sym_default] = ACTIONS(2951), - [anon_sym_while] = ACTIONS(2951), - [anon_sym_do] = ACTIONS(2951), - [anon_sym_for] = ACTIONS(2951), - [anon_sym_return] = ACTIONS(2951), - [anon_sym_break] = ACTIONS(2951), - [anon_sym_continue] = ACTIONS(2951), - [anon_sym_goto] = ACTIONS(2951), - [anon_sym___try] = ACTIONS(2951), - [anon_sym___leave] = ACTIONS(2951), - [anon_sym_not] = ACTIONS(2951), - [anon_sym_compl] = ACTIONS(2951), - [anon_sym_DASH_DASH] = ACTIONS(2953), - [anon_sym_PLUS_PLUS] = ACTIONS(2953), - [anon_sym_sizeof] = ACTIONS(2951), - [anon_sym___alignof__] = ACTIONS(2951), - [anon_sym___alignof] = ACTIONS(2951), - [anon_sym__alignof] = ACTIONS(2951), - [anon_sym_alignof] = ACTIONS(2951), - [anon_sym__Alignof] = ACTIONS(2951), - [anon_sym_offsetof] = ACTIONS(2951), - [anon_sym__Generic] = ACTIONS(2951), - [anon_sym_asm] = ACTIONS(2951), - [anon_sym___asm__] = ACTIONS(2951), - [anon_sym___asm] = ACTIONS(2951), - [sym_number_literal] = ACTIONS(2953), - [anon_sym_L_SQUOTE] = ACTIONS(2953), - [anon_sym_u_SQUOTE] = ACTIONS(2953), - [anon_sym_U_SQUOTE] = ACTIONS(2953), - [anon_sym_u8_SQUOTE] = ACTIONS(2953), - [anon_sym_SQUOTE] = ACTIONS(2953), - [anon_sym_L_DQUOTE] = ACTIONS(2953), - [anon_sym_u_DQUOTE] = ACTIONS(2953), - [anon_sym_U_DQUOTE] = ACTIONS(2953), - [anon_sym_u8_DQUOTE] = ACTIONS(2953), - [anon_sym_DQUOTE] = ACTIONS(2953), - [sym_true] = ACTIONS(2951), - [sym_false] = ACTIONS(2951), - [anon_sym_NULL] = ACTIONS(2951), - [anon_sym_nullptr] = ACTIONS(2951), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2951), - [anon_sym_decltype] = ACTIONS(2951), - [anon_sym_explicit] = ACTIONS(2951), - [anon_sym_typename] = ACTIONS(2951), - [anon_sym_template] = ACTIONS(2951), - [anon_sym_operator] = ACTIONS(2951), - [anon_sym_try] = ACTIONS(2951), - [anon_sym_delete] = ACTIONS(2951), - [anon_sym_throw] = ACTIONS(2951), - [anon_sym_namespace] = ACTIONS(2951), - [anon_sym_static_assert] = ACTIONS(2951), - [anon_sym_concept] = ACTIONS(2951), - [anon_sym_co_return] = ACTIONS(2951), - [anon_sym_co_yield] = ACTIONS(2951), - [anon_sym_R_DQUOTE] = ACTIONS(2953), - [anon_sym_LR_DQUOTE] = ACTIONS(2953), - [anon_sym_uR_DQUOTE] = ACTIONS(2953), - [anon_sym_UR_DQUOTE] = ACTIONS(2953), - [anon_sym_u8R_DQUOTE] = ACTIONS(2953), - [anon_sym_co_await] = ACTIONS(2951), - [anon_sym_new] = ACTIONS(2951), - [anon_sym_requires] = ACTIONS(2951), - [sym_this] = ACTIONS(2951), - }, - [684] = { - [sym_identifier] = ACTIONS(2887), - [aux_sym_preproc_include_token1] = ACTIONS(2887), - [aux_sym_preproc_def_token1] = ACTIONS(2887), - [aux_sym_preproc_if_token1] = ACTIONS(2887), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2887), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2887), - [sym_preproc_directive] = ACTIONS(2887), - [anon_sym_LPAREN2] = ACTIONS(2889), - [anon_sym_BANG] = ACTIONS(2889), - [anon_sym_TILDE] = ACTIONS(2889), - [anon_sym_DASH] = ACTIONS(2887), - [anon_sym_PLUS] = ACTIONS(2887), - [anon_sym_STAR] = ACTIONS(2889), - [anon_sym_AMP_AMP] = ACTIONS(2889), - [anon_sym_AMP] = ACTIONS(2887), - [anon_sym_SEMI] = ACTIONS(2889), - [anon_sym___extension__] = ACTIONS(2887), - [anon_sym_typedef] = ACTIONS(2887), - [anon_sym_virtual] = ACTIONS(2887), - [anon_sym_extern] = ACTIONS(2887), - [anon_sym___attribute__] = ACTIONS(2887), - [anon_sym___attribute] = ACTIONS(2887), - [anon_sym_using] = ACTIONS(2887), - [anon_sym_COLON_COLON] = ACTIONS(2889), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2889), - [anon_sym___declspec] = ACTIONS(2887), - [anon_sym___based] = ACTIONS(2887), - [anon_sym___cdecl] = ACTIONS(2887), - [anon_sym___clrcall] = ACTIONS(2887), - [anon_sym___stdcall] = ACTIONS(2887), - [anon_sym___fastcall] = ACTIONS(2887), - [anon_sym___thiscall] = ACTIONS(2887), - [anon_sym___vectorcall] = ACTIONS(2887), - [anon_sym_LBRACE] = ACTIONS(2889), - [anon_sym_RBRACE] = ACTIONS(2889), - [anon_sym_signed] = ACTIONS(2887), - [anon_sym_unsigned] = ACTIONS(2887), - [anon_sym_long] = ACTIONS(2887), - [anon_sym_short] = ACTIONS(2887), - [anon_sym_LBRACK] = ACTIONS(2887), - [anon_sym_static] = ACTIONS(2887), - [anon_sym_register] = ACTIONS(2887), - [anon_sym_inline] = ACTIONS(2887), - [anon_sym___inline] = ACTIONS(2887), - [anon_sym___inline__] = ACTIONS(2887), - [anon_sym___forceinline] = ACTIONS(2887), - [anon_sym_thread_local] = ACTIONS(2887), - [anon_sym___thread] = ACTIONS(2887), - [anon_sym_const] = ACTIONS(2887), - [anon_sym_constexpr] = ACTIONS(2887), - [anon_sym_volatile] = ACTIONS(2887), - [anon_sym_restrict] = ACTIONS(2887), - [anon_sym___restrict__] = ACTIONS(2887), - [anon_sym__Atomic] = ACTIONS(2887), - [anon_sym__Noreturn] = ACTIONS(2887), - [anon_sym_noreturn] = ACTIONS(2887), - [anon_sym__Nonnull] = ACTIONS(2887), - [anon_sym_mutable] = ACTIONS(2887), - [anon_sym_constinit] = ACTIONS(2887), - [anon_sym_consteval] = ACTIONS(2887), - [anon_sym_alignas] = ACTIONS(2887), - [anon_sym__Alignas] = ACTIONS(2887), - [sym_primitive_type] = ACTIONS(2887), - [anon_sym_enum] = ACTIONS(2887), - [anon_sym_class] = ACTIONS(2887), - [anon_sym_struct] = ACTIONS(2887), - [anon_sym_union] = ACTIONS(2887), - [anon_sym_if] = ACTIONS(2887), - [anon_sym_switch] = ACTIONS(2887), - [anon_sym_case] = ACTIONS(2887), - [anon_sym_default] = ACTIONS(2887), - [anon_sym_while] = ACTIONS(2887), - [anon_sym_do] = ACTIONS(2887), - [anon_sym_for] = ACTIONS(2887), - [anon_sym_return] = ACTIONS(2887), - [anon_sym_break] = ACTIONS(2887), - [anon_sym_continue] = ACTIONS(2887), - [anon_sym_goto] = ACTIONS(2887), - [anon_sym___try] = ACTIONS(2887), - [anon_sym___leave] = ACTIONS(2887), - [anon_sym_not] = ACTIONS(2887), - [anon_sym_compl] = ACTIONS(2887), - [anon_sym_DASH_DASH] = ACTIONS(2889), - [anon_sym_PLUS_PLUS] = ACTIONS(2889), - [anon_sym_sizeof] = ACTIONS(2887), - [anon_sym___alignof__] = ACTIONS(2887), - [anon_sym___alignof] = ACTIONS(2887), - [anon_sym__alignof] = ACTIONS(2887), - [anon_sym_alignof] = ACTIONS(2887), - [anon_sym__Alignof] = ACTIONS(2887), - [anon_sym_offsetof] = ACTIONS(2887), - [anon_sym__Generic] = ACTIONS(2887), - [anon_sym_asm] = ACTIONS(2887), - [anon_sym___asm__] = ACTIONS(2887), - [anon_sym___asm] = ACTIONS(2887), - [sym_number_literal] = ACTIONS(2889), - [anon_sym_L_SQUOTE] = ACTIONS(2889), - [anon_sym_u_SQUOTE] = ACTIONS(2889), - [anon_sym_U_SQUOTE] = ACTIONS(2889), - [anon_sym_u8_SQUOTE] = ACTIONS(2889), - [anon_sym_SQUOTE] = ACTIONS(2889), - [anon_sym_L_DQUOTE] = ACTIONS(2889), - [anon_sym_u_DQUOTE] = ACTIONS(2889), - [anon_sym_U_DQUOTE] = ACTIONS(2889), - [anon_sym_u8_DQUOTE] = ACTIONS(2889), - [anon_sym_DQUOTE] = ACTIONS(2889), - [sym_true] = ACTIONS(2887), - [sym_false] = ACTIONS(2887), - [anon_sym_NULL] = ACTIONS(2887), - [anon_sym_nullptr] = ACTIONS(2887), + [anon_sym_if] = ACTIONS(2911), + [anon_sym_switch] = ACTIONS(2911), + [anon_sym_case] = ACTIONS(2911), + [anon_sym_default] = ACTIONS(2911), + [anon_sym_while] = ACTIONS(2911), + [anon_sym_do] = ACTIONS(2911), + [anon_sym_for] = ACTIONS(2911), + [anon_sym_return] = ACTIONS(2911), + [anon_sym_break] = ACTIONS(2911), + [anon_sym_continue] = ACTIONS(2911), + [anon_sym_goto] = ACTIONS(2911), + [anon_sym___try] = ACTIONS(2911), + [anon_sym___leave] = ACTIONS(2911), + [anon_sym_not] = ACTIONS(2911), + [anon_sym_compl] = ACTIONS(2911), + [anon_sym_DASH_DASH] = ACTIONS(2913), + [anon_sym_PLUS_PLUS] = ACTIONS(2913), + [anon_sym_sizeof] = ACTIONS(2911), + [anon_sym___alignof__] = ACTIONS(2911), + [anon_sym___alignof] = ACTIONS(2911), + [anon_sym__alignof] = ACTIONS(2911), + [anon_sym_alignof] = ACTIONS(2911), + [anon_sym__Alignof] = ACTIONS(2911), + [anon_sym_offsetof] = ACTIONS(2911), + [anon_sym__Generic] = ACTIONS(2911), + [anon_sym_asm] = ACTIONS(2911), + [anon_sym___asm__] = ACTIONS(2911), + [anon_sym___asm] = ACTIONS(2911), + [sym_number_literal] = ACTIONS(2913), + [anon_sym_L_SQUOTE] = ACTIONS(2913), + [anon_sym_u_SQUOTE] = ACTIONS(2913), + [anon_sym_U_SQUOTE] = ACTIONS(2913), + [anon_sym_u8_SQUOTE] = ACTIONS(2913), + [anon_sym_SQUOTE] = ACTIONS(2913), + [anon_sym_L_DQUOTE] = ACTIONS(2913), + [anon_sym_u_DQUOTE] = ACTIONS(2913), + [anon_sym_U_DQUOTE] = ACTIONS(2913), + [anon_sym_u8_DQUOTE] = ACTIONS(2913), + [anon_sym_DQUOTE] = ACTIONS(2913), + [sym_true] = ACTIONS(2911), + [sym_false] = ACTIONS(2911), + [anon_sym_NULL] = ACTIONS(2911), + [anon_sym_nullptr] = ACTIONS(2911), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2887), - [anon_sym_decltype] = ACTIONS(2887), - [anon_sym_explicit] = ACTIONS(2887), - [anon_sym_typename] = ACTIONS(2887), - [anon_sym_template] = ACTIONS(2887), - [anon_sym_operator] = ACTIONS(2887), - [anon_sym_try] = ACTIONS(2887), - [anon_sym_delete] = ACTIONS(2887), - [anon_sym_throw] = ACTIONS(2887), - [anon_sym_namespace] = ACTIONS(2887), - [anon_sym_static_assert] = ACTIONS(2887), - [anon_sym_concept] = ACTIONS(2887), - [anon_sym_co_return] = ACTIONS(2887), - [anon_sym_co_yield] = ACTIONS(2887), - [anon_sym_R_DQUOTE] = ACTIONS(2889), - [anon_sym_LR_DQUOTE] = ACTIONS(2889), - [anon_sym_uR_DQUOTE] = ACTIONS(2889), - [anon_sym_UR_DQUOTE] = ACTIONS(2889), - [anon_sym_u8R_DQUOTE] = ACTIONS(2889), - [anon_sym_co_await] = ACTIONS(2887), - [anon_sym_new] = ACTIONS(2887), - [anon_sym_requires] = ACTIONS(2887), - [sym_this] = ACTIONS(2887), + [sym_auto] = ACTIONS(2911), + [anon_sym_decltype] = ACTIONS(2911), + [anon_sym_explicit] = ACTIONS(2911), + [anon_sym_typename] = ACTIONS(2911), + [anon_sym_template] = ACTIONS(2911), + [anon_sym_operator] = ACTIONS(2911), + [anon_sym_try] = ACTIONS(2911), + [anon_sym_delete] = ACTIONS(2911), + [anon_sym_throw] = ACTIONS(2911), + [anon_sym_namespace] = ACTIONS(2911), + [anon_sym_static_assert] = ACTIONS(2911), + [anon_sym_concept] = ACTIONS(2911), + [anon_sym_co_return] = ACTIONS(2911), + [anon_sym_co_yield] = ACTIONS(2911), + [anon_sym_R_DQUOTE] = ACTIONS(2913), + [anon_sym_LR_DQUOTE] = ACTIONS(2913), + [anon_sym_uR_DQUOTE] = ACTIONS(2913), + [anon_sym_UR_DQUOTE] = ACTIONS(2913), + [anon_sym_u8R_DQUOTE] = ACTIONS(2913), + [anon_sym_co_await] = ACTIONS(2911), + [anon_sym_new] = ACTIONS(2911), + [anon_sym_requires] = ACTIONS(2911), + [sym_this] = ACTIONS(2911), }, [685] = { - [sym_identifier] = ACTIONS(3019), - [aux_sym_preproc_include_token1] = ACTIONS(3019), - [aux_sym_preproc_def_token1] = ACTIONS(3019), - [aux_sym_preproc_if_token1] = ACTIONS(3019), - [aux_sym_preproc_if_token2] = ACTIONS(3019), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3019), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3019), - [sym_preproc_directive] = ACTIONS(3019), - [anon_sym_LPAREN2] = ACTIONS(3021), - [anon_sym_BANG] = ACTIONS(3021), - [anon_sym_TILDE] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3019), - [anon_sym_PLUS] = ACTIONS(3019), - [anon_sym_STAR] = ACTIONS(3021), - [anon_sym_AMP_AMP] = ACTIONS(3021), - [anon_sym_AMP] = ACTIONS(3019), - [anon_sym_SEMI] = ACTIONS(3021), - [anon_sym___extension__] = ACTIONS(3019), - [anon_sym_typedef] = ACTIONS(3019), - [anon_sym_virtual] = ACTIONS(3019), - [anon_sym_extern] = ACTIONS(3019), - [anon_sym___attribute__] = ACTIONS(3019), - [anon_sym___attribute] = ACTIONS(3019), - [anon_sym_using] = ACTIONS(3019), - [anon_sym_COLON_COLON] = ACTIONS(3021), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3021), - [anon_sym___declspec] = ACTIONS(3019), - [anon_sym___based] = ACTIONS(3019), - [anon_sym___cdecl] = ACTIONS(3019), - [anon_sym___clrcall] = ACTIONS(3019), - [anon_sym___stdcall] = ACTIONS(3019), - [anon_sym___fastcall] = ACTIONS(3019), - [anon_sym___thiscall] = ACTIONS(3019), - [anon_sym___vectorcall] = ACTIONS(3019), - [anon_sym_LBRACE] = ACTIONS(3021), - [anon_sym_signed] = ACTIONS(3019), - [anon_sym_unsigned] = ACTIONS(3019), - [anon_sym_long] = ACTIONS(3019), - [anon_sym_short] = ACTIONS(3019), - [anon_sym_LBRACK] = ACTIONS(3019), - [anon_sym_static] = ACTIONS(3019), - [anon_sym_register] = ACTIONS(3019), - [anon_sym_inline] = ACTIONS(3019), - [anon_sym___inline] = ACTIONS(3019), - [anon_sym___inline__] = ACTIONS(3019), - [anon_sym___forceinline] = ACTIONS(3019), - [anon_sym_thread_local] = ACTIONS(3019), - [anon_sym___thread] = ACTIONS(3019), - [anon_sym_const] = ACTIONS(3019), - [anon_sym_constexpr] = ACTIONS(3019), - [anon_sym_volatile] = ACTIONS(3019), - [anon_sym_restrict] = ACTIONS(3019), - [anon_sym___restrict__] = ACTIONS(3019), - [anon_sym__Atomic] = ACTIONS(3019), - [anon_sym__Noreturn] = ACTIONS(3019), - [anon_sym_noreturn] = ACTIONS(3019), - [anon_sym__Nonnull] = ACTIONS(3019), - [anon_sym_mutable] = ACTIONS(3019), - [anon_sym_constinit] = ACTIONS(3019), - [anon_sym_consteval] = ACTIONS(3019), - [anon_sym_alignas] = ACTIONS(3019), - [anon_sym__Alignas] = ACTIONS(3019), - [sym_primitive_type] = ACTIONS(3019), - [anon_sym_enum] = ACTIONS(3019), - [anon_sym_class] = ACTIONS(3019), - [anon_sym_struct] = ACTIONS(3019), - [anon_sym_union] = ACTIONS(3019), - [anon_sym_if] = ACTIONS(3019), - [anon_sym_switch] = ACTIONS(3019), - [anon_sym_case] = ACTIONS(3019), - [anon_sym_default] = ACTIONS(3019), - [anon_sym_while] = ACTIONS(3019), - [anon_sym_do] = ACTIONS(3019), - [anon_sym_for] = ACTIONS(3019), - [anon_sym_return] = ACTIONS(3019), - [anon_sym_break] = ACTIONS(3019), - [anon_sym_continue] = ACTIONS(3019), - [anon_sym_goto] = ACTIONS(3019), - [anon_sym___try] = ACTIONS(3019), - [anon_sym___leave] = ACTIONS(3019), - [anon_sym_not] = ACTIONS(3019), - [anon_sym_compl] = ACTIONS(3019), - [anon_sym_DASH_DASH] = ACTIONS(3021), - [anon_sym_PLUS_PLUS] = ACTIONS(3021), - [anon_sym_sizeof] = ACTIONS(3019), - [anon_sym___alignof__] = ACTIONS(3019), - [anon_sym___alignof] = ACTIONS(3019), - [anon_sym__alignof] = ACTIONS(3019), - [anon_sym_alignof] = ACTIONS(3019), - [anon_sym__Alignof] = ACTIONS(3019), - [anon_sym_offsetof] = ACTIONS(3019), - [anon_sym__Generic] = ACTIONS(3019), - [anon_sym_asm] = ACTIONS(3019), - [anon_sym___asm__] = ACTIONS(3019), - [anon_sym___asm] = ACTIONS(3019), - [sym_number_literal] = ACTIONS(3021), - [anon_sym_L_SQUOTE] = ACTIONS(3021), - [anon_sym_u_SQUOTE] = ACTIONS(3021), - [anon_sym_U_SQUOTE] = ACTIONS(3021), - [anon_sym_u8_SQUOTE] = ACTIONS(3021), - [anon_sym_SQUOTE] = ACTIONS(3021), - [anon_sym_L_DQUOTE] = ACTIONS(3021), - [anon_sym_u_DQUOTE] = ACTIONS(3021), - [anon_sym_U_DQUOTE] = ACTIONS(3021), - [anon_sym_u8_DQUOTE] = ACTIONS(3021), - [anon_sym_DQUOTE] = ACTIONS(3021), - [sym_true] = ACTIONS(3019), - [sym_false] = ACTIONS(3019), - [anon_sym_NULL] = ACTIONS(3019), - [anon_sym_nullptr] = ACTIONS(3019), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3019), - [anon_sym_decltype] = ACTIONS(3019), - [anon_sym_explicit] = ACTIONS(3019), - [anon_sym_typename] = ACTIONS(3019), - [anon_sym_template] = ACTIONS(3019), - [anon_sym_operator] = ACTIONS(3019), - [anon_sym_try] = ACTIONS(3019), - [anon_sym_delete] = ACTIONS(3019), - [anon_sym_throw] = ACTIONS(3019), - [anon_sym_namespace] = ACTIONS(3019), - [anon_sym_static_assert] = ACTIONS(3019), - [anon_sym_concept] = ACTIONS(3019), - [anon_sym_co_return] = ACTIONS(3019), - [anon_sym_co_yield] = ACTIONS(3019), - [anon_sym_R_DQUOTE] = ACTIONS(3021), - [anon_sym_LR_DQUOTE] = ACTIONS(3021), - [anon_sym_uR_DQUOTE] = ACTIONS(3021), - [anon_sym_UR_DQUOTE] = ACTIONS(3021), - [anon_sym_u8R_DQUOTE] = ACTIONS(3021), - [anon_sym_co_await] = ACTIONS(3019), - [anon_sym_new] = ACTIONS(3019), - [anon_sym_requires] = ACTIONS(3019), - [sym_this] = ACTIONS(3019), + [sym_identifier] = ACTIONS(2919), + [aux_sym_preproc_include_token1] = ACTIONS(2919), + [aux_sym_preproc_def_token1] = ACTIONS(2919), + [aux_sym_preproc_if_token1] = ACTIONS(2919), + [aux_sym_preproc_if_token2] = ACTIONS(2919), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2919), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2919), + [sym_preproc_directive] = ACTIONS(2919), + [anon_sym_LPAREN2] = ACTIONS(2921), + [anon_sym_BANG] = ACTIONS(2921), + [anon_sym_TILDE] = ACTIONS(2921), + [anon_sym_DASH] = ACTIONS(2919), + [anon_sym_PLUS] = ACTIONS(2919), + [anon_sym_STAR] = ACTIONS(2921), + [anon_sym_AMP_AMP] = ACTIONS(2921), + [anon_sym_AMP] = ACTIONS(2919), + [anon_sym_SEMI] = ACTIONS(2921), + [anon_sym___extension__] = ACTIONS(2919), + [anon_sym_typedef] = ACTIONS(2919), + [anon_sym_virtual] = ACTIONS(2919), + [anon_sym_extern] = ACTIONS(2919), + [anon_sym___attribute__] = ACTIONS(2919), + [anon_sym___attribute] = ACTIONS(2919), + [anon_sym_using] = ACTIONS(2919), + [anon_sym_COLON_COLON] = ACTIONS(2921), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2921), + [anon_sym___declspec] = ACTIONS(2919), + [anon_sym___based] = ACTIONS(2919), + [anon_sym___cdecl] = ACTIONS(2919), + [anon_sym___clrcall] = ACTIONS(2919), + [anon_sym___stdcall] = ACTIONS(2919), + [anon_sym___fastcall] = ACTIONS(2919), + [anon_sym___thiscall] = ACTIONS(2919), + [anon_sym___vectorcall] = ACTIONS(2919), + [anon_sym_LBRACE] = ACTIONS(2921), + [anon_sym_signed] = ACTIONS(2919), + [anon_sym_unsigned] = ACTIONS(2919), + [anon_sym_long] = ACTIONS(2919), + [anon_sym_short] = ACTIONS(2919), + [anon_sym_LBRACK] = ACTIONS(2919), + [anon_sym_static] = ACTIONS(2919), + [anon_sym_register] = ACTIONS(2919), + [anon_sym_inline] = ACTIONS(2919), + [anon_sym___inline] = ACTIONS(2919), + [anon_sym___inline__] = ACTIONS(2919), + [anon_sym___forceinline] = ACTIONS(2919), + [anon_sym_thread_local] = ACTIONS(2919), + [anon_sym___thread] = ACTIONS(2919), + [anon_sym_const] = ACTIONS(2919), + [anon_sym_constexpr] = ACTIONS(2919), + [anon_sym_volatile] = ACTIONS(2919), + [anon_sym_restrict] = ACTIONS(2919), + [anon_sym___restrict__] = ACTIONS(2919), + [anon_sym__Atomic] = ACTIONS(2919), + [anon_sym__Noreturn] = ACTIONS(2919), + [anon_sym_noreturn] = ACTIONS(2919), + [anon_sym__Nonnull] = ACTIONS(2919), + [anon_sym_mutable] = ACTIONS(2919), + [anon_sym_constinit] = ACTIONS(2919), + [anon_sym_consteval] = ACTIONS(2919), + [anon_sym_alignas] = ACTIONS(2919), + [anon_sym__Alignas] = ACTIONS(2919), + [sym_primitive_type] = ACTIONS(2919), + [anon_sym_enum] = ACTIONS(2919), + [anon_sym_class] = ACTIONS(2919), + [anon_sym_struct] = ACTIONS(2919), + [anon_sym_union] = ACTIONS(2919), + [anon_sym_if] = ACTIONS(2919), + [anon_sym_switch] = ACTIONS(2919), + [anon_sym_case] = ACTIONS(2919), + [anon_sym_default] = ACTIONS(2919), + [anon_sym_while] = ACTIONS(2919), + [anon_sym_do] = ACTIONS(2919), + [anon_sym_for] = ACTIONS(2919), + [anon_sym_return] = ACTIONS(2919), + [anon_sym_break] = ACTIONS(2919), + [anon_sym_continue] = ACTIONS(2919), + [anon_sym_goto] = ACTIONS(2919), + [anon_sym___try] = ACTIONS(2919), + [anon_sym___leave] = ACTIONS(2919), + [anon_sym_not] = ACTIONS(2919), + [anon_sym_compl] = ACTIONS(2919), + [anon_sym_DASH_DASH] = ACTIONS(2921), + [anon_sym_PLUS_PLUS] = ACTIONS(2921), + [anon_sym_sizeof] = ACTIONS(2919), + [anon_sym___alignof__] = ACTIONS(2919), + [anon_sym___alignof] = ACTIONS(2919), + [anon_sym__alignof] = ACTIONS(2919), + [anon_sym_alignof] = ACTIONS(2919), + [anon_sym__Alignof] = ACTIONS(2919), + [anon_sym_offsetof] = ACTIONS(2919), + [anon_sym__Generic] = ACTIONS(2919), + [anon_sym_asm] = ACTIONS(2919), + [anon_sym___asm__] = ACTIONS(2919), + [anon_sym___asm] = ACTIONS(2919), + [sym_number_literal] = ACTIONS(2921), + [anon_sym_L_SQUOTE] = ACTIONS(2921), + [anon_sym_u_SQUOTE] = ACTIONS(2921), + [anon_sym_U_SQUOTE] = ACTIONS(2921), + [anon_sym_u8_SQUOTE] = ACTIONS(2921), + [anon_sym_SQUOTE] = ACTIONS(2921), + [anon_sym_L_DQUOTE] = ACTIONS(2921), + [anon_sym_u_DQUOTE] = ACTIONS(2921), + [anon_sym_U_DQUOTE] = ACTIONS(2921), + [anon_sym_u8_DQUOTE] = ACTIONS(2921), + [anon_sym_DQUOTE] = ACTIONS(2921), + [sym_true] = ACTIONS(2919), + [sym_false] = ACTIONS(2919), + [anon_sym_NULL] = ACTIONS(2919), + [anon_sym_nullptr] = ACTIONS(2919), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2919), + [anon_sym_decltype] = ACTIONS(2919), + [anon_sym_explicit] = ACTIONS(2919), + [anon_sym_typename] = ACTIONS(2919), + [anon_sym_template] = ACTIONS(2919), + [anon_sym_operator] = ACTIONS(2919), + [anon_sym_try] = ACTIONS(2919), + [anon_sym_delete] = ACTIONS(2919), + [anon_sym_throw] = ACTIONS(2919), + [anon_sym_namespace] = ACTIONS(2919), + [anon_sym_static_assert] = ACTIONS(2919), + [anon_sym_concept] = ACTIONS(2919), + [anon_sym_co_return] = ACTIONS(2919), + [anon_sym_co_yield] = ACTIONS(2919), + [anon_sym_R_DQUOTE] = ACTIONS(2921), + [anon_sym_LR_DQUOTE] = ACTIONS(2921), + [anon_sym_uR_DQUOTE] = ACTIONS(2921), + [anon_sym_UR_DQUOTE] = ACTIONS(2921), + [anon_sym_u8R_DQUOTE] = ACTIONS(2921), + [anon_sym_co_await] = ACTIONS(2919), + [anon_sym_new] = ACTIONS(2919), + [anon_sym_requires] = ACTIONS(2919), + [sym_this] = ACTIONS(2919), }, [686] = { - [sym_identifier] = ACTIONS(3023), - [aux_sym_preproc_include_token1] = ACTIONS(3023), - [aux_sym_preproc_def_token1] = ACTIONS(3023), - [aux_sym_preproc_if_token1] = ACTIONS(3023), - [aux_sym_preproc_if_token2] = ACTIONS(3023), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3023), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3023), - [sym_preproc_directive] = ACTIONS(3023), - [anon_sym_LPAREN2] = ACTIONS(3025), - [anon_sym_BANG] = ACTIONS(3025), - [anon_sym_TILDE] = ACTIONS(3025), - [anon_sym_DASH] = ACTIONS(3023), - [anon_sym_PLUS] = ACTIONS(3023), - [anon_sym_STAR] = ACTIONS(3025), - [anon_sym_AMP_AMP] = ACTIONS(3025), - [anon_sym_AMP] = ACTIONS(3023), - [anon_sym_SEMI] = ACTIONS(3025), - [anon_sym___extension__] = ACTIONS(3023), - [anon_sym_typedef] = ACTIONS(3023), - [anon_sym_virtual] = ACTIONS(3023), - [anon_sym_extern] = ACTIONS(3023), - [anon_sym___attribute__] = ACTIONS(3023), - [anon_sym___attribute] = ACTIONS(3023), - [anon_sym_using] = ACTIONS(3023), - [anon_sym_COLON_COLON] = ACTIONS(3025), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3025), - [anon_sym___declspec] = ACTIONS(3023), - [anon_sym___based] = ACTIONS(3023), - [anon_sym___cdecl] = ACTIONS(3023), - [anon_sym___clrcall] = ACTIONS(3023), - [anon_sym___stdcall] = ACTIONS(3023), - [anon_sym___fastcall] = ACTIONS(3023), - [anon_sym___thiscall] = ACTIONS(3023), - [anon_sym___vectorcall] = ACTIONS(3023), - [anon_sym_LBRACE] = ACTIONS(3025), - [anon_sym_signed] = ACTIONS(3023), - [anon_sym_unsigned] = ACTIONS(3023), - [anon_sym_long] = ACTIONS(3023), - [anon_sym_short] = ACTIONS(3023), - [anon_sym_LBRACK] = ACTIONS(3023), - [anon_sym_static] = ACTIONS(3023), - [anon_sym_register] = ACTIONS(3023), - [anon_sym_inline] = ACTIONS(3023), - [anon_sym___inline] = ACTIONS(3023), - [anon_sym___inline__] = ACTIONS(3023), - [anon_sym___forceinline] = ACTIONS(3023), - [anon_sym_thread_local] = ACTIONS(3023), - [anon_sym___thread] = ACTIONS(3023), - [anon_sym_const] = ACTIONS(3023), - [anon_sym_constexpr] = ACTIONS(3023), - [anon_sym_volatile] = ACTIONS(3023), - [anon_sym_restrict] = ACTIONS(3023), - [anon_sym___restrict__] = ACTIONS(3023), - [anon_sym__Atomic] = ACTIONS(3023), - [anon_sym__Noreturn] = ACTIONS(3023), - [anon_sym_noreturn] = ACTIONS(3023), - [anon_sym__Nonnull] = ACTIONS(3023), - [anon_sym_mutable] = ACTIONS(3023), - [anon_sym_constinit] = ACTIONS(3023), - [anon_sym_consteval] = ACTIONS(3023), - [anon_sym_alignas] = ACTIONS(3023), - [anon_sym__Alignas] = ACTIONS(3023), - [sym_primitive_type] = ACTIONS(3023), - [anon_sym_enum] = ACTIONS(3023), - [anon_sym_class] = ACTIONS(3023), - [anon_sym_struct] = ACTIONS(3023), - [anon_sym_union] = ACTIONS(3023), - [anon_sym_if] = ACTIONS(3023), - [anon_sym_switch] = ACTIONS(3023), - [anon_sym_case] = ACTIONS(3023), - [anon_sym_default] = ACTIONS(3023), - [anon_sym_while] = ACTIONS(3023), - [anon_sym_do] = ACTIONS(3023), - [anon_sym_for] = ACTIONS(3023), - [anon_sym_return] = ACTIONS(3023), - [anon_sym_break] = ACTIONS(3023), - [anon_sym_continue] = ACTIONS(3023), - [anon_sym_goto] = ACTIONS(3023), - [anon_sym___try] = ACTIONS(3023), - [anon_sym___leave] = ACTIONS(3023), - [anon_sym_not] = ACTIONS(3023), - [anon_sym_compl] = ACTIONS(3023), - [anon_sym_DASH_DASH] = ACTIONS(3025), - [anon_sym_PLUS_PLUS] = ACTIONS(3025), - [anon_sym_sizeof] = ACTIONS(3023), - [anon_sym___alignof__] = ACTIONS(3023), - [anon_sym___alignof] = ACTIONS(3023), - [anon_sym__alignof] = ACTIONS(3023), - [anon_sym_alignof] = ACTIONS(3023), - [anon_sym__Alignof] = ACTIONS(3023), - [anon_sym_offsetof] = ACTIONS(3023), - [anon_sym__Generic] = ACTIONS(3023), - [anon_sym_asm] = ACTIONS(3023), - [anon_sym___asm__] = ACTIONS(3023), - [anon_sym___asm] = ACTIONS(3023), - [sym_number_literal] = ACTIONS(3025), - [anon_sym_L_SQUOTE] = ACTIONS(3025), - [anon_sym_u_SQUOTE] = ACTIONS(3025), - [anon_sym_U_SQUOTE] = ACTIONS(3025), - [anon_sym_u8_SQUOTE] = ACTIONS(3025), - [anon_sym_SQUOTE] = ACTIONS(3025), - [anon_sym_L_DQUOTE] = ACTIONS(3025), - [anon_sym_u_DQUOTE] = ACTIONS(3025), - [anon_sym_U_DQUOTE] = ACTIONS(3025), - [anon_sym_u8_DQUOTE] = ACTIONS(3025), - [anon_sym_DQUOTE] = ACTIONS(3025), - [sym_true] = ACTIONS(3023), - [sym_false] = ACTIONS(3023), - [anon_sym_NULL] = ACTIONS(3023), - [anon_sym_nullptr] = ACTIONS(3023), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3023), - [anon_sym_decltype] = ACTIONS(3023), - [anon_sym_explicit] = ACTIONS(3023), - [anon_sym_typename] = ACTIONS(3023), - [anon_sym_template] = ACTIONS(3023), - [anon_sym_operator] = ACTIONS(3023), - [anon_sym_try] = ACTIONS(3023), - [anon_sym_delete] = ACTIONS(3023), - [anon_sym_throw] = ACTIONS(3023), - [anon_sym_namespace] = ACTIONS(3023), - [anon_sym_static_assert] = ACTIONS(3023), - [anon_sym_concept] = ACTIONS(3023), - [anon_sym_co_return] = ACTIONS(3023), - [anon_sym_co_yield] = ACTIONS(3023), - [anon_sym_R_DQUOTE] = ACTIONS(3025), - [anon_sym_LR_DQUOTE] = ACTIONS(3025), - [anon_sym_uR_DQUOTE] = ACTIONS(3025), - [anon_sym_UR_DQUOTE] = ACTIONS(3025), - [anon_sym_u8R_DQUOTE] = ACTIONS(3025), - [anon_sym_co_await] = ACTIONS(3023), - [anon_sym_new] = ACTIONS(3023), - [anon_sym_requires] = ACTIONS(3023), - [sym_this] = ACTIONS(3023), + [sym_identifier] = ACTIONS(2923), + [aux_sym_preproc_include_token1] = ACTIONS(2923), + [aux_sym_preproc_def_token1] = ACTIONS(2923), + [aux_sym_preproc_if_token1] = ACTIONS(2923), + [aux_sym_preproc_if_token2] = ACTIONS(2923), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2923), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2923), + [sym_preproc_directive] = ACTIONS(2923), + [anon_sym_LPAREN2] = ACTIONS(2925), + [anon_sym_BANG] = ACTIONS(2925), + [anon_sym_TILDE] = ACTIONS(2925), + [anon_sym_DASH] = ACTIONS(2923), + [anon_sym_PLUS] = ACTIONS(2923), + [anon_sym_STAR] = ACTIONS(2925), + [anon_sym_AMP_AMP] = ACTIONS(2925), + [anon_sym_AMP] = ACTIONS(2923), + [anon_sym_SEMI] = ACTIONS(2925), + [anon_sym___extension__] = ACTIONS(2923), + [anon_sym_typedef] = ACTIONS(2923), + [anon_sym_virtual] = ACTIONS(2923), + [anon_sym_extern] = ACTIONS(2923), + [anon_sym___attribute__] = ACTIONS(2923), + [anon_sym___attribute] = ACTIONS(2923), + [anon_sym_using] = ACTIONS(2923), + [anon_sym_COLON_COLON] = ACTIONS(2925), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2925), + [anon_sym___declspec] = ACTIONS(2923), + [anon_sym___based] = ACTIONS(2923), + [anon_sym___cdecl] = ACTIONS(2923), + [anon_sym___clrcall] = ACTIONS(2923), + [anon_sym___stdcall] = ACTIONS(2923), + [anon_sym___fastcall] = ACTIONS(2923), + [anon_sym___thiscall] = ACTIONS(2923), + [anon_sym___vectorcall] = ACTIONS(2923), + [anon_sym_LBRACE] = ACTIONS(2925), + [anon_sym_signed] = ACTIONS(2923), + [anon_sym_unsigned] = ACTIONS(2923), + [anon_sym_long] = ACTIONS(2923), + [anon_sym_short] = ACTIONS(2923), + [anon_sym_LBRACK] = ACTIONS(2923), + [anon_sym_static] = ACTIONS(2923), + [anon_sym_register] = ACTIONS(2923), + [anon_sym_inline] = ACTIONS(2923), + [anon_sym___inline] = ACTIONS(2923), + [anon_sym___inline__] = ACTIONS(2923), + [anon_sym___forceinline] = ACTIONS(2923), + [anon_sym_thread_local] = ACTIONS(2923), + [anon_sym___thread] = ACTIONS(2923), + [anon_sym_const] = ACTIONS(2923), + [anon_sym_constexpr] = ACTIONS(2923), + [anon_sym_volatile] = ACTIONS(2923), + [anon_sym_restrict] = ACTIONS(2923), + [anon_sym___restrict__] = ACTIONS(2923), + [anon_sym__Atomic] = ACTIONS(2923), + [anon_sym__Noreturn] = ACTIONS(2923), + [anon_sym_noreturn] = ACTIONS(2923), + [anon_sym__Nonnull] = ACTIONS(2923), + [anon_sym_mutable] = ACTIONS(2923), + [anon_sym_constinit] = ACTIONS(2923), + [anon_sym_consteval] = ACTIONS(2923), + [anon_sym_alignas] = ACTIONS(2923), + [anon_sym__Alignas] = ACTIONS(2923), + [sym_primitive_type] = ACTIONS(2923), + [anon_sym_enum] = ACTIONS(2923), + [anon_sym_class] = ACTIONS(2923), + [anon_sym_struct] = ACTIONS(2923), + [anon_sym_union] = ACTIONS(2923), + [anon_sym_if] = ACTIONS(2923), + [anon_sym_switch] = ACTIONS(2923), + [anon_sym_case] = ACTIONS(2923), + [anon_sym_default] = ACTIONS(2923), + [anon_sym_while] = ACTIONS(2923), + [anon_sym_do] = ACTIONS(2923), + [anon_sym_for] = ACTIONS(2923), + [anon_sym_return] = ACTIONS(2923), + [anon_sym_break] = ACTIONS(2923), + [anon_sym_continue] = ACTIONS(2923), + [anon_sym_goto] = ACTIONS(2923), + [anon_sym___try] = ACTIONS(2923), + [anon_sym___leave] = ACTIONS(2923), + [anon_sym_not] = ACTIONS(2923), + [anon_sym_compl] = ACTIONS(2923), + [anon_sym_DASH_DASH] = ACTIONS(2925), + [anon_sym_PLUS_PLUS] = ACTIONS(2925), + [anon_sym_sizeof] = ACTIONS(2923), + [anon_sym___alignof__] = ACTIONS(2923), + [anon_sym___alignof] = ACTIONS(2923), + [anon_sym__alignof] = ACTIONS(2923), + [anon_sym_alignof] = ACTIONS(2923), + [anon_sym__Alignof] = ACTIONS(2923), + [anon_sym_offsetof] = ACTIONS(2923), + [anon_sym__Generic] = ACTIONS(2923), + [anon_sym_asm] = ACTIONS(2923), + [anon_sym___asm__] = ACTIONS(2923), + [anon_sym___asm] = ACTIONS(2923), + [sym_number_literal] = ACTIONS(2925), + [anon_sym_L_SQUOTE] = ACTIONS(2925), + [anon_sym_u_SQUOTE] = ACTIONS(2925), + [anon_sym_U_SQUOTE] = ACTIONS(2925), + [anon_sym_u8_SQUOTE] = ACTIONS(2925), + [anon_sym_SQUOTE] = ACTIONS(2925), + [anon_sym_L_DQUOTE] = ACTIONS(2925), + [anon_sym_u_DQUOTE] = ACTIONS(2925), + [anon_sym_U_DQUOTE] = ACTIONS(2925), + [anon_sym_u8_DQUOTE] = ACTIONS(2925), + [anon_sym_DQUOTE] = ACTIONS(2925), + [sym_true] = ACTIONS(2923), + [sym_false] = ACTIONS(2923), + [anon_sym_NULL] = ACTIONS(2923), + [anon_sym_nullptr] = ACTIONS(2923), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2923), + [anon_sym_decltype] = ACTIONS(2923), + [anon_sym_explicit] = ACTIONS(2923), + [anon_sym_typename] = ACTIONS(2923), + [anon_sym_template] = ACTIONS(2923), + [anon_sym_operator] = ACTIONS(2923), + [anon_sym_try] = ACTIONS(2923), + [anon_sym_delete] = ACTIONS(2923), + [anon_sym_throw] = ACTIONS(2923), + [anon_sym_namespace] = ACTIONS(2923), + [anon_sym_static_assert] = ACTIONS(2923), + [anon_sym_concept] = ACTIONS(2923), + [anon_sym_co_return] = ACTIONS(2923), + [anon_sym_co_yield] = ACTIONS(2923), + [anon_sym_R_DQUOTE] = ACTIONS(2925), + [anon_sym_LR_DQUOTE] = ACTIONS(2925), + [anon_sym_uR_DQUOTE] = ACTIONS(2925), + [anon_sym_UR_DQUOTE] = ACTIONS(2925), + [anon_sym_u8R_DQUOTE] = ACTIONS(2925), + [anon_sym_co_await] = ACTIONS(2923), + [anon_sym_new] = ACTIONS(2923), + [anon_sym_requires] = ACTIONS(2923), + [sym_this] = ACTIONS(2923), }, [687] = { - [sym_identifier] = ACTIONS(2891), - [aux_sym_preproc_include_token1] = ACTIONS(2891), - [aux_sym_preproc_def_token1] = ACTIONS(2891), - [aux_sym_preproc_if_token1] = ACTIONS(2891), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2891), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2891), - [sym_preproc_directive] = ACTIONS(2891), - [anon_sym_LPAREN2] = ACTIONS(2893), - [anon_sym_BANG] = ACTIONS(2893), - [anon_sym_TILDE] = ACTIONS(2893), - [anon_sym_DASH] = ACTIONS(2891), - [anon_sym_PLUS] = ACTIONS(2891), - [anon_sym_STAR] = ACTIONS(2893), - [anon_sym_AMP_AMP] = ACTIONS(2893), - [anon_sym_AMP] = ACTIONS(2891), - [anon_sym_SEMI] = ACTIONS(2893), - [anon_sym___extension__] = ACTIONS(2891), - [anon_sym_typedef] = ACTIONS(2891), - [anon_sym_virtual] = ACTIONS(2891), - [anon_sym_extern] = ACTIONS(2891), - [anon_sym___attribute__] = ACTIONS(2891), - [anon_sym___attribute] = ACTIONS(2891), - [anon_sym_using] = ACTIONS(2891), - [anon_sym_COLON_COLON] = ACTIONS(2893), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2893), - [anon_sym___declspec] = ACTIONS(2891), - [anon_sym___based] = ACTIONS(2891), - [anon_sym___cdecl] = ACTIONS(2891), - [anon_sym___clrcall] = ACTIONS(2891), - [anon_sym___stdcall] = ACTIONS(2891), - [anon_sym___fastcall] = ACTIONS(2891), - [anon_sym___thiscall] = ACTIONS(2891), - [anon_sym___vectorcall] = ACTIONS(2891), - [anon_sym_LBRACE] = ACTIONS(2893), - [anon_sym_RBRACE] = ACTIONS(2893), - [anon_sym_signed] = ACTIONS(2891), - [anon_sym_unsigned] = ACTIONS(2891), - [anon_sym_long] = ACTIONS(2891), - [anon_sym_short] = ACTIONS(2891), - [anon_sym_LBRACK] = ACTIONS(2891), - [anon_sym_static] = ACTIONS(2891), - [anon_sym_register] = ACTIONS(2891), - [anon_sym_inline] = ACTIONS(2891), - [anon_sym___inline] = ACTIONS(2891), - [anon_sym___inline__] = ACTIONS(2891), - [anon_sym___forceinline] = ACTIONS(2891), - [anon_sym_thread_local] = ACTIONS(2891), - [anon_sym___thread] = ACTIONS(2891), - [anon_sym_const] = ACTIONS(2891), - [anon_sym_constexpr] = ACTIONS(2891), - [anon_sym_volatile] = ACTIONS(2891), - [anon_sym_restrict] = ACTIONS(2891), - [anon_sym___restrict__] = ACTIONS(2891), - [anon_sym__Atomic] = ACTIONS(2891), - [anon_sym__Noreturn] = ACTIONS(2891), - [anon_sym_noreturn] = ACTIONS(2891), - [anon_sym__Nonnull] = ACTIONS(2891), - [anon_sym_mutable] = ACTIONS(2891), - [anon_sym_constinit] = ACTIONS(2891), - [anon_sym_consteval] = ACTIONS(2891), - [anon_sym_alignas] = ACTIONS(2891), - [anon_sym__Alignas] = ACTIONS(2891), - [sym_primitive_type] = ACTIONS(2891), - [anon_sym_enum] = ACTIONS(2891), - [anon_sym_class] = ACTIONS(2891), - [anon_sym_struct] = ACTIONS(2891), - [anon_sym_union] = ACTIONS(2891), - [anon_sym_if] = ACTIONS(2891), - [anon_sym_switch] = ACTIONS(2891), - [anon_sym_case] = ACTIONS(2891), - [anon_sym_default] = ACTIONS(2891), - [anon_sym_while] = ACTIONS(2891), - [anon_sym_do] = ACTIONS(2891), - [anon_sym_for] = ACTIONS(2891), - [anon_sym_return] = ACTIONS(2891), - [anon_sym_break] = ACTIONS(2891), - [anon_sym_continue] = ACTIONS(2891), - [anon_sym_goto] = ACTIONS(2891), - [anon_sym___try] = ACTIONS(2891), - [anon_sym___leave] = ACTIONS(2891), - [anon_sym_not] = ACTIONS(2891), - [anon_sym_compl] = ACTIONS(2891), - [anon_sym_DASH_DASH] = ACTIONS(2893), - [anon_sym_PLUS_PLUS] = ACTIONS(2893), - [anon_sym_sizeof] = ACTIONS(2891), - [anon_sym___alignof__] = ACTIONS(2891), - [anon_sym___alignof] = ACTIONS(2891), - [anon_sym__alignof] = ACTIONS(2891), - [anon_sym_alignof] = ACTIONS(2891), - [anon_sym__Alignof] = ACTIONS(2891), - [anon_sym_offsetof] = ACTIONS(2891), - [anon_sym__Generic] = ACTIONS(2891), - [anon_sym_asm] = ACTIONS(2891), - [anon_sym___asm__] = ACTIONS(2891), - [anon_sym___asm] = ACTIONS(2891), - [sym_number_literal] = ACTIONS(2893), - [anon_sym_L_SQUOTE] = ACTIONS(2893), - [anon_sym_u_SQUOTE] = ACTIONS(2893), - [anon_sym_U_SQUOTE] = ACTIONS(2893), - [anon_sym_u8_SQUOTE] = ACTIONS(2893), - [anon_sym_SQUOTE] = ACTIONS(2893), - [anon_sym_L_DQUOTE] = ACTIONS(2893), - [anon_sym_u_DQUOTE] = ACTIONS(2893), - [anon_sym_U_DQUOTE] = ACTIONS(2893), - [anon_sym_u8_DQUOTE] = ACTIONS(2893), - [anon_sym_DQUOTE] = ACTIONS(2893), - [sym_true] = ACTIONS(2891), - [sym_false] = ACTIONS(2891), - [anon_sym_NULL] = ACTIONS(2891), - [anon_sym_nullptr] = ACTIONS(2891), + [sym_identifier] = ACTIONS(2923), + [aux_sym_preproc_include_token1] = ACTIONS(2923), + [aux_sym_preproc_def_token1] = ACTIONS(2923), + [aux_sym_preproc_if_token1] = ACTIONS(2923), + [aux_sym_preproc_if_token2] = ACTIONS(2923), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2923), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2923), + [sym_preproc_directive] = ACTIONS(2923), + [anon_sym_LPAREN2] = ACTIONS(2925), + [anon_sym_BANG] = ACTIONS(2925), + [anon_sym_TILDE] = ACTIONS(2925), + [anon_sym_DASH] = ACTIONS(2923), + [anon_sym_PLUS] = ACTIONS(2923), + [anon_sym_STAR] = ACTIONS(2925), + [anon_sym_AMP_AMP] = ACTIONS(2925), + [anon_sym_AMP] = ACTIONS(2923), + [anon_sym_SEMI] = ACTIONS(2925), + [anon_sym___extension__] = ACTIONS(2923), + [anon_sym_typedef] = ACTIONS(2923), + [anon_sym_virtual] = ACTIONS(2923), + [anon_sym_extern] = ACTIONS(2923), + [anon_sym___attribute__] = ACTIONS(2923), + [anon_sym___attribute] = ACTIONS(2923), + [anon_sym_using] = ACTIONS(2923), + [anon_sym_COLON_COLON] = ACTIONS(2925), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2925), + [anon_sym___declspec] = ACTIONS(2923), + [anon_sym___based] = ACTIONS(2923), + [anon_sym___cdecl] = ACTIONS(2923), + [anon_sym___clrcall] = ACTIONS(2923), + [anon_sym___stdcall] = ACTIONS(2923), + [anon_sym___fastcall] = ACTIONS(2923), + [anon_sym___thiscall] = ACTIONS(2923), + [anon_sym___vectorcall] = ACTIONS(2923), + [anon_sym_LBRACE] = ACTIONS(2925), + [anon_sym_signed] = ACTIONS(2923), + [anon_sym_unsigned] = ACTIONS(2923), + [anon_sym_long] = ACTIONS(2923), + [anon_sym_short] = ACTIONS(2923), + [anon_sym_LBRACK] = ACTIONS(2923), + [anon_sym_static] = ACTIONS(2923), + [anon_sym_register] = ACTIONS(2923), + [anon_sym_inline] = ACTIONS(2923), + [anon_sym___inline] = ACTIONS(2923), + [anon_sym___inline__] = ACTIONS(2923), + [anon_sym___forceinline] = ACTIONS(2923), + [anon_sym_thread_local] = ACTIONS(2923), + [anon_sym___thread] = ACTIONS(2923), + [anon_sym_const] = ACTIONS(2923), + [anon_sym_constexpr] = ACTIONS(2923), + [anon_sym_volatile] = ACTIONS(2923), + [anon_sym_restrict] = ACTIONS(2923), + [anon_sym___restrict__] = ACTIONS(2923), + [anon_sym__Atomic] = ACTIONS(2923), + [anon_sym__Noreturn] = ACTIONS(2923), + [anon_sym_noreturn] = ACTIONS(2923), + [anon_sym__Nonnull] = ACTIONS(2923), + [anon_sym_mutable] = ACTIONS(2923), + [anon_sym_constinit] = ACTIONS(2923), + [anon_sym_consteval] = ACTIONS(2923), + [anon_sym_alignas] = ACTIONS(2923), + [anon_sym__Alignas] = ACTIONS(2923), + [sym_primitive_type] = ACTIONS(2923), + [anon_sym_enum] = ACTIONS(2923), + [anon_sym_class] = ACTIONS(2923), + [anon_sym_struct] = ACTIONS(2923), + [anon_sym_union] = ACTIONS(2923), + [anon_sym_if] = ACTIONS(2923), + [anon_sym_switch] = ACTIONS(2923), + [anon_sym_case] = ACTIONS(2923), + [anon_sym_default] = ACTIONS(2923), + [anon_sym_while] = ACTIONS(2923), + [anon_sym_do] = ACTIONS(2923), + [anon_sym_for] = ACTIONS(2923), + [anon_sym_return] = ACTIONS(2923), + [anon_sym_break] = ACTIONS(2923), + [anon_sym_continue] = ACTIONS(2923), + [anon_sym_goto] = ACTIONS(2923), + [anon_sym___try] = ACTIONS(2923), + [anon_sym___leave] = ACTIONS(2923), + [anon_sym_not] = ACTIONS(2923), + [anon_sym_compl] = ACTIONS(2923), + [anon_sym_DASH_DASH] = ACTIONS(2925), + [anon_sym_PLUS_PLUS] = ACTIONS(2925), + [anon_sym_sizeof] = ACTIONS(2923), + [anon_sym___alignof__] = ACTIONS(2923), + [anon_sym___alignof] = ACTIONS(2923), + [anon_sym__alignof] = ACTIONS(2923), + [anon_sym_alignof] = ACTIONS(2923), + [anon_sym__Alignof] = ACTIONS(2923), + [anon_sym_offsetof] = ACTIONS(2923), + [anon_sym__Generic] = ACTIONS(2923), + [anon_sym_asm] = ACTIONS(2923), + [anon_sym___asm__] = ACTIONS(2923), + [anon_sym___asm] = ACTIONS(2923), + [sym_number_literal] = ACTIONS(2925), + [anon_sym_L_SQUOTE] = ACTIONS(2925), + [anon_sym_u_SQUOTE] = ACTIONS(2925), + [anon_sym_U_SQUOTE] = ACTIONS(2925), + [anon_sym_u8_SQUOTE] = ACTIONS(2925), + [anon_sym_SQUOTE] = ACTIONS(2925), + [anon_sym_L_DQUOTE] = ACTIONS(2925), + [anon_sym_u_DQUOTE] = ACTIONS(2925), + [anon_sym_U_DQUOTE] = ACTIONS(2925), + [anon_sym_u8_DQUOTE] = ACTIONS(2925), + [anon_sym_DQUOTE] = ACTIONS(2925), + [sym_true] = ACTIONS(2923), + [sym_false] = ACTIONS(2923), + [anon_sym_NULL] = ACTIONS(2923), + [anon_sym_nullptr] = ACTIONS(2923), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2891), - [anon_sym_decltype] = ACTIONS(2891), - [anon_sym_explicit] = ACTIONS(2891), - [anon_sym_typename] = ACTIONS(2891), - [anon_sym_template] = ACTIONS(2891), - [anon_sym_operator] = ACTIONS(2891), - [anon_sym_try] = ACTIONS(2891), - [anon_sym_delete] = ACTIONS(2891), - [anon_sym_throw] = ACTIONS(2891), - [anon_sym_namespace] = ACTIONS(2891), - [anon_sym_static_assert] = ACTIONS(2891), - [anon_sym_concept] = ACTIONS(2891), - [anon_sym_co_return] = ACTIONS(2891), - [anon_sym_co_yield] = ACTIONS(2891), - [anon_sym_R_DQUOTE] = ACTIONS(2893), - [anon_sym_LR_DQUOTE] = ACTIONS(2893), - [anon_sym_uR_DQUOTE] = ACTIONS(2893), - [anon_sym_UR_DQUOTE] = ACTIONS(2893), - [anon_sym_u8R_DQUOTE] = ACTIONS(2893), - [anon_sym_co_await] = ACTIONS(2891), - [anon_sym_new] = ACTIONS(2891), - [anon_sym_requires] = ACTIONS(2891), - [sym_this] = ACTIONS(2891), + [sym_auto] = ACTIONS(2923), + [anon_sym_decltype] = ACTIONS(2923), + [anon_sym_explicit] = ACTIONS(2923), + [anon_sym_typename] = ACTIONS(2923), + [anon_sym_template] = ACTIONS(2923), + [anon_sym_operator] = ACTIONS(2923), + [anon_sym_try] = ACTIONS(2923), + [anon_sym_delete] = ACTIONS(2923), + [anon_sym_throw] = ACTIONS(2923), + [anon_sym_namespace] = ACTIONS(2923), + [anon_sym_static_assert] = ACTIONS(2923), + [anon_sym_concept] = ACTIONS(2923), + [anon_sym_co_return] = ACTIONS(2923), + [anon_sym_co_yield] = ACTIONS(2923), + [anon_sym_R_DQUOTE] = ACTIONS(2925), + [anon_sym_LR_DQUOTE] = ACTIONS(2925), + [anon_sym_uR_DQUOTE] = ACTIONS(2925), + [anon_sym_UR_DQUOTE] = ACTIONS(2925), + [anon_sym_u8R_DQUOTE] = ACTIONS(2925), + [anon_sym_co_await] = ACTIONS(2923), + [anon_sym_new] = ACTIONS(2923), + [anon_sym_requires] = ACTIONS(2923), + [sym_this] = ACTIONS(2923), }, [688] = { - [sym_identifier] = ACTIONS(2895), - [aux_sym_preproc_include_token1] = ACTIONS(2895), - [aux_sym_preproc_def_token1] = ACTIONS(2895), - [aux_sym_preproc_if_token1] = ACTIONS(2895), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2895), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2895), - [sym_preproc_directive] = ACTIONS(2895), - [anon_sym_LPAREN2] = ACTIONS(2897), - [anon_sym_BANG] = ACTIONS(2897), - [anon_sym_TILDE] = ACTIONS(2897), - [anon_sym_DASH] = ACTIONS(2895), - [anon_sym_PLUS] = ACTIONS(2895), - [anon_sym_STAR] = ACTIONS(2897), - [anon_sym_AMP_AMP] = ACTIONS(2897), - [anon_sym_AMP] = ACTIONS(2895), - [anon_sym_SEMI] = ACTIONS(2897), - [anon_sym___extension__] = ACTIONS(2895), - [anon_sym_typedef] = ACTIONS(2895), - [anon_sym_virtual] = ACTIONS(2895), - [anon_sym_extern] = ACTIONS(2895), - [anon_sym___attribute__] = ACTIONS(2895), - [anon_sym___attribute] = ACTIONS(2895), - [anon_sym_using] = ACTIONS(2895), - [anon_sym_COLON_COLON] = ACTIONS(2897), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2897), - [anon_sym___declspec] = ACTIONS(2895), - [anon_sym___based] = ACTIONS(2895), - [anon_sym___cdecl] = ACTIONS(2895), - [anon_sym___clrcall] = ACTIONS(2895), - [anon_sym___stdcall] = ACTIONS(2895), - [anon_sym___fastcall] = ACTIONS(2895), - [anon_sym___thiscall] = ACTIONS(2895), - [anon_sym___vectorcall] = ACTIONS(2895), - [anon_sym_LBRACE] = ACTIONS(2897), - [anon_sym_RBRACE] = ACTIONS(2897), - [anon_sym_signed] = ACTIONS(2895), - [anon_sym_unsigned] = ACTIONS(2895), - [anon_sym_long] = ACTIONS(2895), - [anon_sym_short] = ACTIONS(2895), - [anon_sym_LBRACK] = ACTIONS(2895), - [anon_sym_static] = ACTIONS(2895), - [anon_sym_register] = ACTIONS(2895), - [anon_sym_inline] = ACTIONS(2895), - [anon_sym___inline] = ACTIONS(2895), - [anon_sym___inline__] = ACTIONS(2895), - [anon_sym___forceinline] = ACTIONS(2895), - [anon_sym_thread_local] = ACTIONS(2895), - [anon_sym___thread] = ACTIONS(2895), - [anon_sym_const] = ACTIONS(2895), - [anon_sym_constexpr] = ACTIONS(2895), - [anon_sym_volatile] = ACTIONS(2895), - [anon_sym_restrict] = ACTIONS(2895), - [anon_sym___restrict__] = ACTIONS(2895), - [anon_sym__Atomic] = ACTIONS(2895), - [anon_sym__Noreturn] = ACTIONS(2895), - [anon_sym_noreturn] = ACTIONS(2895), - [anon_sym__Nonnull] = ACTIONS(2895), - [anon_sym_mutable] = ACTIONS(2895), - [anon_sym_constinit] = ACTIONS(2895), - [anon_sym_consteval] = ACTIONS(2895), - [anon_sym_alignas] = ACTIONS(2895), - [anon_sym__Alignas] = ACTIONS(2895), - [sym_primitive_type] = ACTIONS(2895), - [anon_sym_enum] = ACTIONS(2895), - [anon_sym_class] = ACTIONS(2895), - [anon_sym_struct] = ACTIONS(2895), - [anon_sym_union] = ACTIONS(2895), - [anon_sym_if] = ACTIONS(2895), - [anon_sym_switch] = ACTIONS(2895), - [anon_sym_case] = ACTIONS(2895), - [anon_sym_default] = ACTIONS(2895), - [anon_sym_while] = ACTIONS(2895), - [anon_sym_do] = ACTIONS(2895), - [anon_sym_for] = ACTIONS(2895), - [anon_sym_return] = ACTIONS(2895), - [anon_sym_break] = ACTIONS(2895), - [anon_sym_continue] = ACTIONS(2895), - [anon_sym_goto] = ACTIONS(2895), - [anon_sym___try] = ACTIONS(2895), - [anon_sym___leave] = ACTIONS(2895), - [anon_sym_not] = ACTIONS(2895), - [anon_sym_compl] = ACTIONS(2895), - [anon_sym_DASH_DASH] = ACTIONS(2897), - [anon_sym_PLUS_PLUS] = ACTIONS(2897), - [anon_sym_sizeof] = ACTIONS(2895), - [anon_sym___alignof__] = ACTIONS(2895), - [anon_sym___alignof] = ACTIONS(2895), - [anon_sym__alignof] = ACTIONS(2895), - [anon_sym_alignof] = ACTIONS(2895), - [anon_sym__Alignof] = ACTIONS(2895), - [anon_sym_offsetof] = ACTIONS(2895), - [anon_sym__Generic] = ACTIONS(2895), - [anon_sym_asm] = ACTIONS(2895), - [anon_sym___asm__] = ACTIONS(2895), - [anon_sym___asm] = ACTIONS(2895), - [sym_number_literal] = ACTIONS(2897), - [anon_sym_L_SQUOTE] = ACTIONS(2897), - [anon_sym_u_SQUOTE] = ACTIONS(2897), - [anon_sym_U_SQUOTE] = ACTIONS(2897), - [anon_sym_u8_SQUOTE] = ACTIONS(2897), - [anon_sym_SQUOTE] = ACTIONS(2897), - [anon_sym_L_DQUOTE] = ACTIONS(2897), - [anon_sym_u_DQUOTE] = ACTIONS(2897), - [anon_sym_U_DQUOTE] = ACTIONS(2897), - [anon_sym_u8_DQUOTE] = ACTIONS(2897), - [anon_sym_DQUOTE] = ACTIONS(2897), - [sym_true] = ACTIONS(2895), - [sym_false] = ACTIONS(2895), - [anon_sym_NULL] = ACTIONS(2895), - [anon_sym_nullptr] = ACTIONS(2895), + [sym_identifier] = ACTIONS(2927), + [aux_sym_preproc_include_token1] = ACTIONS(2927), + [aux_sym_preproc_def_token1] = ACTIONS(2927), + [aux_sym_preproc_if_token1] = ACTIONS(2927), + [aux_sym_preproc_if_token2] = ACTIONS(2927), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2927), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2927), + [sym_preproc_directive] = ACTIONS(2927), + [anon_sym_LPAREN2] = ACTIONS(2929), + [anon_sym_BANG] = ACTIONS(2929), + [anon_sym_TILDE] = ACTIONS(2929), + [anon_sym_DASH] = ACTIONS(2927), + [anon_sym_PLUS] = ACTIONS(2927), + [anon_sym_STAR] = ACTIONS(2929), + [anon_sym_AMP_AMP] = ACTIONS(2929), + [anon_sym_AMP] = ACTIONS(2927), + [anon_sym_SEMI] = ACTIONS(2929), + [anon_sym___extension__] = ACTIONS(2927), + [anon_sym_typedef] = ACTIONS(2927), + [anon_sym_virtual] = ACTIONS(2927), + [anon_sym_extern] = ACTIONS(2927), + [anon_sym___attribute__] = ACTIONS(2927), + [anon_sym___attribute] = ACTIONS(2927), + [anon_sym_using] = ACTIONS(2927), + [anon_sym_COLON_COLON] = ACTIONS(2929), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2929), + [anon_sym___declspec] = ACTIONS(2927), + [anon_sym___based] = ACTIONS(2927), + [anon_sym___cdecl] = ACTIONS(2927), + [anon_sym___clrcall] = ACTIONS(2927), + [anon_sym___stdcall] = ACTIONS(2927), + [anon_sym___fastcall] = ACTIONS(2927), + [anon_sym___thiscall] = ACTIONS(2927), + [anon_sym___vectorcall] = ACTIONS(2927), + [anon_sym_LBRACE] = ACTIONS(2929), + [anon_sym_signed] = ACTIONS(2927), + [anon_sym_unsigned] = ACTIONS(2927), + [anon_sym_long] = ACTIONS(2927), + [anon_sym_short] = ACTIONS(2927), + [anon_sym_LBRACK] = ACTIONS(2927), + [anon_sym_static] = ACTIONS(2927), + [anon_sym_register] = ACTIONS(2927), + [anon_sym_inline] = ACTIONS(2927), + [anon_sym___inline] = ACTIONS(2927), + [anon_sym___inline__] = ACTIONS(2927), + [anon_sym___forceinline] = ACTIONS(2927), + [anon_sym_thread_local] = ACTIONS(2927), + [anon_sym___thread] = ACTIONS(2927), + [anon_sym_const] = ACTIONS(2927), + [anon_sym_constexpr] = ACTIONS(2927), + [anon_sym_volatile] = ACTIONS(2927), + [anon_sym_restrict] = ACTIONS(2927), + [anon_sym___restrict__] = ACTIONS(2927), + [anon_sym__Atomic] = ACTIONS(2927), + [anon_sym__Noreturn] = ACTIONS(2927), + [anon_sym_noreturn] = ACTIONS(2927), + [anon_sym__Nonnull] = ACTIONS(2927), + [anon_sym_mutable] = ACTIONS(2927), + [anon_sym_constinit] = ACTIONS(2927), + [anon_sym_consteval] = ACTIONS(2927), + [anon_sym_alignas] = ACTIONS(2927), + [anon_sym__Alignas] = ACTIONS(2927), + [sym_primitive_type] = ACTIONS(2927), + [anon_sym_enum] = ACTIONS(2927), + [anon_sym_class] = ACTIONS(2927), + [anon_sym_struct] = ACTIONS(2927), + [anon_sym_union] = ACTIONS(2927), + [anon_sym_if] = ACTIONS(2927), + [anon_sym_switch] = ACTIONS(2927), + [anon_sym_case] = ACTIONS(2927), + [anon_sym_default] = ACTIONS(2927), + [anon_sym_while] = ACTIONS(2927), + [anon_sym_do] = ACTIONS(2927), + [anon_sym_for] = ACTIONS(2927), + [anon_sym_return] = ACTIONS(2927), + [anon_sym_break] = ACTIONS(2927), + [anon_sym_continue] = ACTIONS(2927), + [anon_sym_goto] = ACTIONS(2927), + [anon_sym___try] = ACTIONS(2927), + [anon_sym___leave] = ACTIONS(2927), + [anon_sym_not] = ACTIONS(2927), + [anon_sym_compl] = ACTIONS(2927), + [anon_sym_DASH_DASH] = ACTIONS(2929), + [anon_sym_PLUS_PLUS] = ACTIONS(2929), + [anon_sym_sizeof] = ACTIONS(2927), + [anon_sym___alignof__] = ACTIONS(2927), + [anon_sym___alignof] = ACTIONS(2927), + [anon_sym__alignof] = ACTIONS(2927), + [anon_sym_alignof] = ACTIONS(2927), + [anon_sym__Alignof] = ACTIONS(2927), + [anon_sym_offsetof] = ACTIONS(2927), + [anon_sym__Generic] = ACTIONS(2927), + [anon_sym_asm] = ACTIONS(2927), + [anon_sym___asm__] = ACTIONS(2927), + [anon_sym___asm] = ACTIONS(2927), + [sym_number_literal] = ACTIONS(2929), + [anon_sym_L_SQUOTE] = ACTIONS(2929), + [anon_sym_u_SQUOTE] = ACTIONS(2929), + [anon_sym_U_SQUOTE] = ACTIONS(2929), + [anon_sym_u8_SQUOTE] = ACTIONS(2929), + [anon_sym_SQUOTE] = ACTIONS(2929), + [anon_sym_L_DQUOTE] = ACTIONS(2929), + [anon_sym_u_DQUOTE] = ACTIONS(2929), + [anon_sym_U_DQUOTE] = ACTIONS(2929), + [anon_sym_u8_DQUOTE] = ACTIONS(2929), + [anon_sym_DQUOTE] = ACTIONS(2929), + [sym_true] = ACTIONS(2927), + [sym_false] = ACTIONS(2927), + [anon_sym_NULL] = ACTIONS(2927), + [anon_sym_nullptr] = ACTIONS(2927), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2895), - [anon_sym_decltype] = ACTIONS(2895), - [anon_sym_explicit] = ACTIONS(2895), - [anon_sym_typename] = ACTIONS(2895), - [anon_sym_template] = ACTIONS(2895), - [anon_sym_operator] = ACTIONS(2895), - [anon_sym_try] = ACTIONS(2895), - [anon_sym_delete] = ACTIONS(2895), - [anon_sym_throw] = ACTIONS(2895), - [anon_sym_namespace] = ACTIONS(2895), - [anon_sym_static_assert] = ACTIONS(2895), - [anon_sym_concept] = ACTIONS(2895), - [anon_sym_co_return] = ACTIONS(2895), - [anon_sym_co_yield] = ACTIONS(2895), - [anon_sym_R_DQUOTE] = ACTIONS(2897), - [anon_sym_LR_DQUOTE] = ACTIONS(2897), - [anon_sym_uR_DQUOTE] = ACTIONS(2897), - [anon_sym_UR_DQUOTE] = ACTIONS(2897), - [anon_sym_u8R_DQUOTE] = ACTIONS(2897), - [anon_sym_co_await] = ACTIONS(2895), - [anon_sym_new] = ACTIONS(2895), - [anon_sym_requires] = ACTIONS(2895), - [sym_this] = ACTIONS(2895), + [sym_auto] = ACTIONS(2927), + [anon_sym_decltype] = ACTIONS(2927), + [anon_sym_explicit] = ACTIONS(2927), + [anon_sym_typename] = ACTIONS(2927), + [anon_sym_template] = ACTIONS(2927), + [anon_sym_operator] = ACTIONS(2927), + [anon_sym_try] = ACTIONS(2927), + [anon_sym_delete] = ACTIONS(2927), + [anon_sym_throw] = ACTIONS(2927), + [anon_sym_namespace] = ACTIONS(2927), + [anon_sym_static_assert] = ACTIONS(2927), + [anon_sym_concept] = ACTIONS(2927), + [anon_sym_co_return] = ACTIONS(2927), + [anon_sym_co_yield] = ACTIONS(2927), + [anon_sym_R_DQUOTE] = ACTIONS(2929), + [anon_sym_LR_DQUOTE] = ACTIONS(2929), + [anon_sym_uR_DQUOTE] = ACTIONS(2929), + [anon_sym_UR_DQUOTE] = ACTIONS(2929), + [anon_sym_u8R_DQUOTE] = ACTIONS(2929), + [anon_sym_co_await] = ACTIONS(2927), + [anon_sym_new] = ACTIONS(2927), + [anon_sym_requires] = ACTIONS(2927), + [sym_this] = ACTIONS(2927), }, [689] = { - [sym_identifier] = ACTIONS(3027), - [aux_sym_preproc_include_token1] = ACTIONS(3027), - [aux_sym_preproc_def_token1] = ACTIONS(3027), - [aux_sym_preproc_if_token1] = ACTIONS(3027), - [aux_sym_preproc_if_token2] = ACTIONS(3027), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3027), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3027), - [sym_preproc_directive] = ACTIONS(3027), - [anon_sym_LPAREN2] = ACTIONS(3029), - [anon_sym_BANG] = ACTIONS(3029), - [anon_sym_TILDE] = ACTIONS(3029), - [anon_sym_DASH] = ACTIONS(3027), - [anon_sym_PLUS] = ACTIONS(3027), - [anon_sym_STAR] = ACTIONS(3029), - [anon_sym_AMP_AMP] = ACTIONS(3029), - [anon_sym_AMP] = ACTIONS(3027), - [anon_sym_SEMI] = ACTIONS(3029), - [anon_sym___extension__] = ACTIONS(3027), - [anon_sym_typedef] = ACTIONS(3027), - [anon_sym_virtual] = ACTIONS(3027), - [anon_sym_extern] = ACTIONS(3027), - [anon_sym___attribute__] = ACTIONS(3027), - [anon_sym___attribute] = ACTIONS(3027), - [anon_sym_using] = ACTIONS(3027), - [anon_sym_COLON_COLON] = ACTIONS(3029), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3029), - [anon_sym___declspec] = ACTIONS(3027), - [anon_sym___based] = ACTIONS(3027), - [anon_sym___cdecl] = ACTIONS(3027), - [anon_sym___clrcall] = ACTIONS(3027), - [anon_sym___stdcall] = ACTIONS(3027), - [anon_sym___fastcall] = ACTIONS(3027), - [anon_sym___thiscall] = ACTIONS(3027), - [anon_sym___vectorcall] = ACTIONS(3027), - [anon_sym_LBRACE] = ACTIONS(3029), - [anon_sym_signed] = ACTIONS(3027), - [anon_sym_unsigned] = ACTIONS(3027), - [anon_sym_long] = ACTIONS(3027), - [anon_sym_short] = ACTIONS(3027), - [anon_sym_LBRACK] = ACTIONS(3027), - [anon_sym_static] = ACTIONS(3027), - [anon_sym_register] = ACTIONS(3027), - [anon_sym_inline] = ACTIONS(3027), - [anon_sym___inline] = ACTIONS(3027), - [anon_sym___inline__] = ACTIONS(3027), - [anon_sym___forceinline] = ACTIONS(3027), - [anon_sym_thread_local] = ACTIONS(3027), - [anon_sym___thread] = ACTIONS(3027), - [anon_sym_const] = ACTIONS(3027), - [anon_sym_constexpr] = ACTIONS(3027), - [anon_sym_volatile] = ACTIONS(3027), - [anon_sym_restrict] = ACTIONS(3027), - [anon_sym___restrict__] = ACTIONS(3027), - [anon_sym__Atomic] = ACTIONS(3027), - [anon_sym__Noreturn] = ACTIONS(3027), - [anon_sym_noreturn] = ACTIONS(3027), - [anon_sym__Nonnull] = ACTIONS(3027), - [anon_sym_mutable] = ACTIONS(3027), - [anon_sym_constinit] = ACTIONS(3027), - [anon_sym_consteval] = ACTIONS(3027), - [anon_sym_alignas] = ACTIONS(3027), - [anon_sym__Alignas] = ACTIONS(3027), - [sym_primitive_type] = ACTIONS(3027), - [anon_sym_enum] = ACTIONS(3027), - [anon_sym_class] = ACTIONS(3027), - [anon_sym_struct] = ACTIONS(3027), - [anon_sym_union] = ACTIONS(3027), - [anon_sym_if] = ACTIONS(3027), - [anon_sym_switch] = ACTIONS(3027), - [anon_sym_case] = ACTIONS(3027), - [anon_sym_default] = ACTIONS(3027), - [anon_sym_while] = ACTIONS(3027), - [anon_sym_do] = ACTIONS(3027), - [anon_sym_for] = ACTIONS(3027), - [anon_sym_return] = ACTIONS(3027), - [anon_sym_break] = ACTIONS(3027), - [anon_sym_continue] = ACTIONS(3027), - [anon_sym_goto] = ACTIONS(3027), - [anon_sym___try] = ACTIONS(3027), - [anon_sym___leave] = ACTIONS(3027), - [anon_sym_not] = ACTIONS(3027), - [anon_sym_compl] = ACTIONS(3027), - [anon_sym_DASH_DASH] = ACTIONS(3029), - [anon_sym_PLUS_PLUS] = ACTIONS(3029), - [anon_sym_sizeof] = ACTIONS(3027), - [anon_sym___alignof__] = ACTIONS(3027), - [anon_sym___alignof] = ACTIONS(3027), - [anon_sym__alignof] = ACTIONS(3027), - [anon_sym_alignof] = ACTIONS(3027), - [anon_sym__Alignof] = ACTIONS(3027), - [anon_sym_offsetof] = ACTIONS(3027), - [anon_sym__Generic] = ACTIONS(3027), - [anon_sym_asm] = ACTIONS(3027), - [anon_sym___asm__] = ACTIONS(3027), - [anon_sym___asm] = ACTIONS(3027), - [sym_number_literal] = ACTIONS(3029), - [anon_sym_L_SQUOTE] = ACTIONS(3029), - [anon_sym_u_SQUOTE] = ACTIONS(3029), - [anon_sym_U_SQUOTE] = ACTIONS(3029), - [anon_sym_u8_SQUOTE] = ACTIONS(3029), - [anon_sym_SQUOTE] = ACTIONS(3029), - [anon_sym_L_DQUOTE] = ACTIONS(3029), - [anon_sym_u_DQUOTE] = ACTIONS(3029), - [anon_sym_U_DQUOTE] = ACTIONS(3029), - [anon_sym_u8_DQUOTE] = ACTIONS(3029), - [anon_sym_DQUOTE] = ACTIONS(3029), - [sym_true] = ACTIONS(3027), - [sym_false] = ACTIONS(3027), - [anon_sym_NULL] = ACTIONS(3027), - [anon_sym_nullptr] = ACTIONS(3027), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3027), - [anon_sym_decltype] = ACTIONS(3027), - [anon_sym_explicit] = ACTIONS(3027), - [anon_sym_typename] = ACTIONS(3027), - [anon_sym_template] = ACTIONS(3027), - [anon_sym_operator] = ACTIONS(3027), - [anon_sym_try] = ACTIONS(3027), - [anon_sym_delete] = ACTIONS(3027), - [anon_sym_throw] = ACTIONS(3027), - [anon_sym_namespace] = ACTIONS(3027), - [anon_sym_static_assert] = ACTIONS(3027), - [anon_sym_concept] = ACTIONS(3027), - [anon_sym_co_return] = ACTIONS(3027), - [anon_sym_co_yield] = ACTIONS(3027), - [anon_sym_R_DQUOTE] = ACTIONS(3029), - [anon_sym_LR_DQUOTE] = ACTIONS(3029), - [anon_sym_uR_DQUOTE] = ACTIONS(3029), - [anon_sym_UR_DQUOTE] = ACTIONS(3029), - [anon_sym_u8R_DQUOTE] = ACTIONS(3029), - [anon_sym_co_await] = ACTIONS(3027), - [anon_sym_new] = ACTIONS(3027), - [anon_sym_requires] = ACTIONS(3027), - [sym_this] = ACTIONS(3027), + [sym_identifier] = ACTIONS(2927), + [aux_sym_preproc_include_token1] = ACTIONS(2927), + [aux_sym_preproc_def_token1] = ACTIONS(2927), + [aux_sym_preproc_if_token1] = ACTIONS(2927), + [aux_sym_preproc_if_token2] = ACTIONS(2927), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2927), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2927), + [sym_preproc_directive] = ACTIONS(2927), + [anon_sym_LPAREN2] = ACTIONS(2929), + [anon_sym_BANG] = ACTIONS(2929), + [anon_sym_TILDE] = ACTIONS(2929), + [anon_sym_DASH] = ACTIONS(2927), + [anon_sym_PLUS] = ACTIONS(2927), + [anon_sym_STAR] = ACTIONS(2929), + [anon_sym_AMP_AMP] = ACTIONS(2929), + [anon_sym_AMP] = ACTIONS(2927), + [anon_sym_SEMI] = ACTIONS(2929), + [anon_sym___extension__] = ACTIONS(2927), + [anon_sym_typedef] = ACTIONS(2927), + [anon_sym_virtual] = ACTIONS(2927), + [anon_sym_extern] = ACTIONS(2927), + [anon_sym___attribute__] = ACTIONS(2927), + [anon_sym___attribute] = ACTIONS(2927), + [anon_sym_using] = ACTIONS(2927), + [anon_sym_COLON_COLON] = ACTIONS(2929), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2929), + [anon_sym___declspec] = ACTIONS(2927), + [anon_sym___based] = ACTIONS(2927), + [anon_sym___cdecl] = ACTIONS(2927), + [anon_sym___clrcall] = ACTIONS(2927), + [anon_sym___stdcall] = ACTIONS(2927), + [anon_sym___fastcall] = ACTIONS(2927), + [anon_sym___thiscall] = ACTIONS(2927), + [anon_sym___vectorcall] = ACTIONS(2927), + [anon_sym_LBRACE] = ACTIONS(2929), + [anon_sym_signed] = ACTIONS(2927), + [anon_sym_unsigned] = ACTIONS(2927), + [anon_sym_long] = ACTIONS(2927), + [anon_sym_short] = ACTIONS(2927), + [anon_sym_LBRACK] = ACTIONS(2927), + [anon_sym_static] = ACTIONS(2927), + [anon_sym_register] = ACTIONS(2927), + [anon_sym_inline] = ACTIONS(2927), + [anon_sym___inline] = ACTIONS(2927), + [anon_sym___inline__] = ACTIONS(2927), + [anon_sym___forceinline] = ACTIONS(2927), + [anon_sym_thread_local] = ACTIONS(2927), + [anon_sym___thread] = ACTIONS(2927), + [anon_sym_const] = ACTIONS(2927), + [anon_sym_constexpr] = ACTIONS(2927), + [anon_sym_volatile] = ACTIONS(2927), + [anon_sym_restrict] = ACTIONS(2927), + [anon_sym___restrict__] = ACTIONS(2927), + [anon_sym__Atomic] = ACTIONS(2927), + [anon_sym__Noreturn] = ACTIONS(2927), + [anon_sym_noreturn] = ACTIONS(2927), + [anon_sym__Nonnull] = ACTIONS(2927), + [anon_sym_mutable] = ACTIONS(2927), + [anon_sym_constinit] = ACTIONS(2927), + [anon_sym_consteval] = ACTIONS(2927), + [anon_sym_alignas] = ACTIONS(2927), + [anon_sym__Alignas] = ACTIONS(2927), + [sym_primitive_type] = ACTIONS(2927), + [anon_sym_enum] = ACTIONS(2927), + [anon_sym_class] = ACTIONS(2927), + [anon_sym_struct] = ACTIONS(2927), + [anon_sym_union] = ACTIONS(2927), + [anon_sym_if] = ACTIONS(2927), + [anon_sym_switch] = ACTIONS(2927), + [anon_sym_case] = ACTIONS(2927), + [anon_sym_default] = ACTIONS(2927), + [anon_sym_while] = ACTIONS(2927), + [anon_sym_do] = ACTIONS(2927), + [anon_sym_for] = ACTIONS(2927), + [anon_sym_return] = ACTIONS(2927), + [anon_sym_break] = ACTIONS(2927), + [anon_sym_continue] = ACTIONS(2927), + [anon_sym_goto] = ACTIONS(2927), + [anon_sym___try] = ACTIONS(2927), + [anon_sym___leave] = ACTIONS(2927), + [anon_sym_not] = ACTIONS(2927), + [anon_sym_compl] = ACTIONS(2927), + [anon_sym_DASH_DASH] = ACTIONS(2929), + [anon_sym_PLUS_PLUS] = ACTIONS(2929), + [anon_sym_sizeof] = ACTIONS(2927), + [anon_sym___alignof__] = ACTIONS(2927), + [anon_sym___alignof] = ACTIONS(2927), + [anon_sym__alignof] = ACTIONS(2927), + [anon_sym_alignof] = ACTIONS(2927), + [anon_sym__Alignof] = ACTIONS(2927), + [anon_sym_offsetof] = ACTIONS(2927), + [anon_sym__Generic] = ACTIONS(2927), + [anon_sym_asm] = ACTIONS(2927), + [anon_sym___asm__] = ACTIONS(2927), + [anon_sym___asm] = ACTIONS(2927), + [sym_number_literal] = ACTIONS(2929), + [anon_sym_L_SQUOTE] = ACTIONS(2929), + [anon_sym_u_SQUOTE] = ACTIONS(2929), + [anon_sym_U_SQUOTE] = ACTIONS(2929), + [anon_sym_u8_SQUOTE] = ACTIONS(2929), + [anon_sym_SQUOTE] = ACTIONS(2929), + [anon_sym_L_DQUOTE] = ACTIONS(2929), + [anon_sym_u_DQUOTE] = ACTIONS(2929), + [anon_sym_U_DQUOTE] = ACTIONS(2929), + [anon_sym_u8_DQUOTE] = ACTIONS(2929), + [anon_sym_DQUOTE] = ACTIONS(2929), + [sym_true] = ACTIONS(2927), + [sym_false] = ACTIONS(2927), + [anon_sym_NULL] = ACTIONS(2927), + [anon_sym_nullptr] = ACTIONS(2927), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2927), + [anon_sym_decltype] = ACTIONS(2927), + [anon_sym_explicit] = ACTIONS(2927), + [anon_sym_typename] = ACTIONS(2927), + [anon_sym_template] = ACTIONS(2927), + [anon_sym_operator] = ACTIONS(2927), + [anon_sym_try] = ACTIONS(2927), + [anon_sym_delete] = ACTIONS(2927), + [anon_sym_throw] = ACTIONS(2927), + [anon_sym_namespace] = ACTIONS(2927), + [anon_sym_static_assert] = ACTIONS(2927), + [anon_sym_concept] = ACTIONS(2927), + [anon_sym_co_return] = ACTIONS(2927), + [anon_sym_co_yield] = ACTIONS(2927), + [anon_sym_R_DQUOTE] = ACTIONS(2929), + [anon_sym_LR_DQUOTE] = ACTIONS(2929), + [anon_sym_uR_DQUOTE] = ACTIONS(2929), + [anon_sym_UR_DQUOTE] = ACTIONS(2929), + [anon_sym_u8R_DQUOTE] = ACTIONS(2929), + [anon_sym_co_await] = ACTIONS(2927), + [anon_sym_new] = ACTIONS(2927), + [anon_sym_requires] = ACTIONS(2927), + [sym_this] = ACTIONS(2927), }, [690] = { - [sym_identifier] = ACTIONS(3031), - [aux_sym_preproc_include_token1] = ACTIONS(3031), - [aux_sym_preproc_def_token1] = ACTIONS(3031), - [aux_sym_preproc_if_token1] = ACTIONS(3031), - [aux_sym_preproc_if_token2] = ACTIONS(3031), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3031), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3031), - [sym_preproc_directive] = ACTIONS(3031), - [anon_sym_LPAREN2] = ACTIONS(3033), - [anon_sym_BANG] = ACTIONS(3033), - [anon_sym_TILDE] = ACTIONS(3033), - [anon_sym_DASH] = ACTIONS(3031), - [anon_sym_PLUS] = ACTIONS(3031), - [anon_sym_STAR] = ACTIONS(3033), - [anon_sym_AMP_AMP] = ACTIONS(3033), - [anon_sym_AMP] = ACTIONS(3031), - [anon_sym_SEMI] = ACTIONS(3033), - [anon_sym___extension__] = ACTIONS(3031), - [anon_sym_typedef] = ACTIONS(3031), - [anon_sym_virtual] = ACTIONS(3031), - [anon_sym_extern] = ACTIONS(3031), - [anon_sym___attribute__] = ACTIONS(3031), - [anon_sym___attribute] = ACTIONS(3031), - [anon_sym_using] = ACTIONS(3031), - [anon_sym_COLON_COLON] = ACTIONS(3033), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3033), - [anon_sym___declspec] = ACTIONS(3031), - [anon_sym___based] = ACTIONS(3031), - [anon_sym___cdecl] = ACTIONS(3031), - [anon_sym___clrcall] = ACTIONS(3031), - [anon_sym___stdcall] = ACTIONS(3031), - [anon_sym___fastcall] = ACTIONS(3031), - [anon_sym___thiscall] = ACTIONS(3031), - [anon_sym___vectorcall] = ACTIONS(3031), - [anon_sym_LBRACE] = ACTIONS(3033), - [anon_sym_signed] = ACTIONS(3031), - [anon_sym_unsigned] = ACTIONS(3031), - [anon_sym_long] = ACTIONS(3031), - [anon_sym_short] = ACTIONS(3031), - [anon_sym_LBRACK] = ACTIONS(3031), - [anon_sym_static] = ACTIONS(3031), - [anon_sym_register] = ACTIONS(3031), - [anon_sym_inline] = ACTIONS(3031), - [anon_sym___inline] = ACTIONS(3031), - [anon_sym___inline__] = ACTIONS(3031), - [anon_sym___forceinline] = ACTIONS(3031), - [anon_sym_thread_local] = ACTIONS(3031), - [anon_sym___thread] = ACTIONS(3031), - [anon_sym_const] = ACTIONS(3031), - [anon_sym_constexpr] = ACTIONS(3031), - [anon_sym_volatile] = ACTIONS(3031), - [anon_sym_restrict] = ACTIONS(3031), - [anon_sym___restrict__] = ACTIONS(3031), - [anon_sym__Atomic] = ACTIONS(3031), - [anon_sym__Noreturn] = ACTIONS(3031), - [anon_sym_noreturn] = ACTIONS(3031), - [anon_sym__Nonnull] = ACTIONS(3031), - [anon_sym_mutable] = ACTIONS(3031), - [anon_sym_constinit] = ACTIONS(3031), - [anon_sym_consteval] = ACTIONS(3031), - [anon_sym_alignas] = ACTIONS(3031), - [anon_sym__Alignas] = ACTIONS(3031), - [sym_primitive_type] = ACTIONS(3031), - [anon_sym_enum] = ACTIONS(3031), - [anon_sym_class] = ACTIONS(3031), - [anon_sym_struct] = ACTIONS(3031), - [anon_sym_union] = ACTIONS(3031), - [anon_sym_if] = ACTIONS(3031), - [anon_sym_switch] = ACTIONS(3031), - [anon_sym_case] = ACTIONS(3031), - [anon_sym_default] = ACTIONS(3031), - [anon_sym_while] = ACTIONS(3031), - [anon_sym_do] = ACTIONS(3031), - [anon_sym_for] = ACTIONS(3031), - [anon_sym_return] = ACTIONS(3031), - [anon_sym_break] = ACTIONS(3031), - [anon_sym_continue] = ACTIONS(3031), - [anon_sym_goto] = ACTIONS(3031), - [anon_sym___try] = ACTIONS(3031), - [anon_sym___leave] = ACTIONS(3031), - [anon_sym_not] = ACTIONS(3031), - [anon_sym_compl] = ACTIONS(3031), - [anon_sym_DASH_DASH] = ACTIONS(3033), - [anon_sym_PLUS_PLUS] = ACTIONS(3033), - [anon_sym_sizeof] = ACTIONS(3031), - [anon_sym___alignof__] = ACTIONS(3031), - [anon_sym___alignof] = ACTIONS(3031), - [anon_sym__alignof] = ACTIONS(3031), - [anon_sym_alignof] = ACTIONS(3031), - [anon_sym__Alignof] = ACTIONS(3031), - [anon_sym_offsetof] = ACTIONS(3031), - [anon_sym__Generic] = ACTIONS(3031), - [anon_sym_asm] = ACTIONS(3031), - [anon_sym___asm__] = ACTIONS(3031), - [anon_sym___asm] = ACTIONS(3031), - [sym_number_literal] = ACTIONS(3033), - [anon_sym_L_SQUOTE] = ACTIONS(3033), - [anon_sym_u_SQUOTE] = ACTIONS(3033), - [anon_sym_U_SQUOTE] = ACTIONS(3033), - [anon_sym_u8_SQUOTE] = ACTIONS(3033), - [anon_sym_SQUOTE] = ACTIONS(3033), - [anon_sym_L_DQUOTE] = ACTIONS(3033), - [anon_sym_u_DQUOTE] = ACTIONS(3033), - [anon_sym_U_DQUOTE] = ACTIONS(3033), - [anon_sym_u8_DQUOTE] = ACTIONS(3033), - [anon_sym_DQUOTE] = ACTIONS(3033), - [sym_true] = ACTIONS(3031), - [sym_false] = ACTIONS(3031), - [anon_sym_NULL] = ACTIONS(3031), - [anon_sym_nullptr] = ACTIONS(3031), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3031), - [anon_sym_decltype] = ACTIONS(3031), - [anon_sym_explicit] = ACTIONS(3031), - [anon_sym_typename] = ACTIONS(3031), - [anon_sym_template] = ACTIONS(3031), - [anon_sym_operator] = ACTIONS(3031), - [anon_sym_try] = ACTIONS(3031), - [anon_sym_delete] = ACTIONS(3031), - [anon_sym_throw] = ACTIONS(3031), - [anon_sym_namespace] = ACTIONS(3031), - [anon_sym_static_assert] = ACTIONS(3031), - [anon_sym_concept] = ACTIONS(3031), - [anon_sym_co_return] = ACTIONS(3031), - [anon_sym_co_yield] = ACTIONS(3031), - [anon_sym_R_DQUOTE] = ACTIONS(3033), - [anon_sym_LR_DQUOTE] = ACTIONS(3033), - [anon_sym_uR_DQUOTE] = ACTIONS(3033), - [anon_sym_UR_DQUOTE] = ACTIONS(3033), - [anon_sym_u8R_DQUOTE] = ACTIONS(3033), - [anon_sym_co_await] = ACTIONS(3031), - [anon_sym_new] = ACTIONS(3031), - [anon_sym_requires] = ACTIONS(3031), - [sym_this] = ACTIONS(3031), + [sym_identifier] = ACTIONS(2955), + [aux_sym_preproc_include_token1] = ACTIONS(2955), + [aux_sym_preproc_def_token1] = ACTIONS(2955), + [aux_sym_preproc_if_token1] = ACTIONS(2955), + [aux_sym_preproc_if_token2] = ACTIONS(2955), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2955), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2955), + [sym_preproc_directive] = ACTIONS(2955), + [anon_sym_LPAREN2] = ACTIONS(2957), + [anon_sym_BANG] = ACTIONS(2957), + [anon_sym_TILDE] = ACTIONS(2957), + [anon_sym_DASH] = ACTIONS(2955), + [anon_sym_PLUS] = ACTIONS(2955), + [anon_sym_STAR] = ACTIONS(2957), + [anon_sym_AMP_AMP] = ACTIONS(2957), + [anon_sym_AMP] = ACTIONS(2955), + [anon_sym_SEMI] = ACTIONS(2957), + [anon_sym___extension__] = ACTIONS(2955), + [anon_sym_typedef] = ACTIONS(2955), + [anon_sym_virtual] = ACTIONS(2955), + [anon_sym_extern] = ACTIONS(2955), + [anon_sym___attribute__] = ACTIONS(2955), + [anon_sym___attribute] = ACTIONS(2955), + [anon_sym_using] = ACTIONS(2955), + [anon_sym_COLON_COLON] = ACTIONS(2957), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2957), + [anon_sym___declspec] = ACTIONS(2955), + [anon_sym___based] = ACTIONS(2955), + [anon_sym___cdecl] = ACTIONS(2955), + [anon_sym___clrcall] = ACTIONS(2955), + [anon_sym___stdcall] = ACTIONS(2955), + [anon_sym___fastcall] = ACTIONS(2955), + [anon_sym___thiscall] = ACTIONS(2955), + [anon_sym___vectorcall] = ACTIONS(2955), + [anon_sym_LBRACE] = ACTIONS(2957), + [anon_sym_signed] = ACTIONS(2955), + [anon_sym_unsigned] = ACTIONS(2955), + [anon_sym_long] = ACTIONS(2955), + [anon_sym_short] = ACTIONS(2955), + [anon_sym_LBRACK] = ACTIONS(2955), + [anon_sym_static] = ACTIONS(2955), + [anon_sym_register] = ACTIONS(2955), + [anon_sym_inline] = ACTIONS(2955), + [anon_sym___inline] = ACTIONS(2955), + [anon_sym___inline__] = ACTIONS(2955), + [anon_sym___forceinline] = ACTIONS(2955), + [anon_sym_thread_local] = ACTIONS(2955), + [anon_sym___thread] = ACTIONS(2955), + [anon_sym_const] = ACTIONS(2955), + [anon_sym_constexpr] = ACTIONS(2955), + [anon_sym_volatile] = ACTIONS(2955), + [anon_sym_restrict] = ACTIONS(2955), + [anon_sym___restrict__] = ACTIONS(2955), + [anon_sym__Atomic] = ACTIONS(2955), + [anon_sym__Noreturn] = ACTIONS(2955), + [anon_sym_noreturn] = ACTIONS(2955), + [anon_sym__Nonnull] = ACTIONS(2955), + [anon_sym_mutable] = ACTIONS(2955), + [anon_sym_constinit] = ACTIONS(2955), + [anon_sym_consteval] = ACTIONS(2955), + [anon_sym_alignas] = ACTIONS(2955), + [anon_sym__Alignas] = ACTIONS(2955), + [sym_primitive_type] = ACTIONS(2955), + [anon_sym_enum] = ACTIONS(2955), + [anon_sym_class] = ACTIONS(2955), + [anon_sym_struct] = ACTIONS(2955), + [anon_sym_union] = ACTIONS(2955), + [anon_sym_if] = ACTIONS(2955), + [anon_sym_switch] = ACTIONS(2955), + [anon_sym_case] = ACTIONS(2955), + [anon_sym_default] = ACTIONS(2955), + [anon_sym_while] = ACTIONS(2955), + [anon_sym_do] = ACTIONS(2955), + [anon_sym_for] = ACTIONS(2955), + [anon_sym_return] = ACTIONS(2955), + [anon_sym_break] = ACTIONS(2955), + [anon_sym_continue] = ACTIONS(2955), + [anon_sym_goto] = ACTIONS(2955), + [anon_sym___try] = ACTIONS(2955), + [anon_sym___leave] = ACTIONS(2955), + [anon_sym_not] = ACTIONS(2955), + [anon_sym_compl] = ACTIONS(2955), + [anon_sym_DASH_DASH] = ACTIONS(2957), + [anon_sym_PLUS_PLUS] = ACTIONS(2957), + [anon_sym_sizeof] = ACTIONS(2955), + [anon_sym___alignof__] = ACTIONS(2955), + [anon_sym___alignof] = ACTIONS(2955), + [anon_sym__alignof] = ACTIONS(2955), + [anon_sym_alignof] = ACTIONS(2955), + [anon_sym__Alignof] = ACTIONS(2955), + [anon_sym_offsetof] = ACTIONS(2955), + [anon_sym__Generic] = ACTIONS(2955), + [anon_sym_asm] = ACTIONS(2955), + [anon_sym___asm__] = ACTIONS(2955), + [anon_sym___asm] = ACTIONS(2955), + [sym_number_literal] = ACTIONS(2957), + [anon_sym_L_SQUOTE] = ACTIONS(2957), + [anon_sym_u_SQUOTE] = ACTIONS(2957), + [anon_sym_U_SQUOTE] = ACTIONS(2957), + [anon_sym_u8_SQUOTE] = ACTIONS(2957), + [anon_sym_SQUOTE] = ACTIONS(2957), + [anon_sym_L_DQUOTE] = ACTIONS(2957), + [anon_sym_u_DQUOTE] = ACTIONS(2957), + [anon_sym_U_DQUOTE] = ACTIONS(2957), + [anon_sym_u8_DQUOTE] = ACTIONS(2957), + [anon_sym_DQUOTE] = ACTIONS(2957), + [sym_true] = ACTIONS(2955), + [sym_false] = ACTIONS(2955), + [anon_sym_NULL] = ACTIONS(2955), + [anon_sym_nullptr] = ACTIONS(2955), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2955), + [anon_sym_decltype] = ACTIONS(2955), + [anon_sym_explicit] = ACTIONS(2955), + [anon_sym_typename] = ACTIONS(2955), + [anon_sym_template] = ACTIONS(2955), + [anon_sym_operator] = ACTIONS(2955), + [anon_sym_try] = ACTIONS(2955), + [anon_sym_delete] = ACTIONS(2955), + [anon_sym_throw] = ACTIONS(2955), + [anon_sym_namespace] = ACTIONS(2955), + [anon_sym_static_assert] = ACTIONS(2955), + [anon_sym_concept] = ACTIONS(2955), + [anon_sym_co_return] = ACTIONS(2955), + [anon_sym_co_yield] = ACTIONS(2955), + [anon_sym_R_DQUOTE] = ACTIONS(2957), + [anon_sym_LR_DQUOTE] = ACTIONS(2957), + [anon_sym_uR_DQUOTE] = ACTIONS(2957), + [anon_sym_UR_DQUOTE] = ACTIONS(2957), + [anon_sym_u8R_DQUOTE] = ACTIONS(2957), + [anon_sym_co_await] = ACTIONS(2955), + [anon_sym_new] = ACTIONS(2955), + [anon_sym_requires] = ACTIONS(2955), + [sym_this] = ACTIONS(2955), }, [691] = { + [sym_identifier] = ACTIONS(2959), + [aux_sym_preproc_include_token1] = ACTIONS(2959), + [aux_sym_preproc_def_token1] = ACTIONS(2959), + [aux_sym_preproc_if_token1] = ACTIONS(2959), + [aux_sym_preproc_if_token2] = ACTIONS(2959), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2959), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2959), + [sym_preproc_directive] = ACTIONS(2959), + [anon_sym_LPAREN2] = ACTIONS(2961), + [anon_sym_BANG] = ACTIONS(2961), + [anon_sym_TILDE] = ACTIONS(2961), + [anon_sym_DASH] = ACTIONS(2959), + [anon_sym_PLUS] = ACTIONS(2959), + [anon_sym_STAR] = ACTIONS(2961), + [anon_sym_AMP_AMP] = ACTIONS(2961), + [anon_sym_AMP] = ACTIONS(2959), + [anon_sym_SEMI] = ACTIONS(2961), + [anon_sym___extension__] = ACTIONS(2959), + [anon_sym_typedef] = ACTIONS(2959), + [anon_sym_virtual] = ACTIONS(2959), + [anon_sym_extern] = ACTIONS(2959), + [anon_sym___attribute__] = ACTIONS(2959), + [anon_sym___attribute] = ACTIONS(2959), + [anon_sym_using] = ACTIONS(2959), + [anon_sym_COLON_COLON] = ACTIONS(2961), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2961), + [anon_sym___declspec] = ACTIONS(2959), + [anon_sym___based] = ACTIONS(2959), + [anon_sym___cdecl] = ACTIONS(2959), + [anon_sym___clrcall] = ACTIONS(2959), + [anon_sym___stdcall] = ACTIONS(2959), + [anon_sym___fastcall] = ACTIONS(2959), + [anon_sym___thiscall] = ACTIONS(2959), + [anon_sym___vectorcall] = ACTIONS(2959), + [anon_sym_LBRACE] = ACTIONS(2961), + [anon_sym_signed] = ACTIONS(2959), + [anon_sym_unsigned] = ACTIONS(2959), + [anon_sym_long] = ACTIONS(2959), + [anon_sym_short] = ACTIONS(2959), + [anon_sym_LBRACK] = ACTIONS(2959), + [anon_sym_static] = ACTIONS(2959), + [anon_sym_register] = ACTIONS(2959), + [anon_sym_inline] = ACTIONS(2959), + [anon_sym___inline] = ACTIONS(2959), + [anon_sym___inline__] = ACTIONS(2959), + [anon_sym___forceinline] = ACTIONS(2959), + [anon_sym_thread_local] = ACTIONS(2959), + [anon_sym___thread] = ACTIONS(2959), + [anon_sym_const] = ACTIONS(2959), + [anon_sym_constexpr] = ACTIONS(2959), + [anon_sym_volatile] = ACTIONS(2959), + [anon_sym_restrict] = ACTIONS(2959), + [anon_sym___restrict__] = ACTIONS(2959), + [anon_sym__Atomic] = ACTIONS(2959), + [anon_sym__Noreturn] = ACTIONS(2959), + [anon_sym_noreturn] = ACTIONS(2959), + [anon_sym__Nonnull] = ACTIONS(2959), + [anon_sym_mutable] = ACTIONS(2959), + [anon_sym_constinit] = ACTIONS(2959), + [anon_sym_consteval] = ACTIONS(2959), + [anon_sym_alignas] = ACTIONS(2959), + [anon_sym__Alignas] = ACTIONS(2959), + [sym_primitive_type] = ACTIONS(2959), + [anon_sym_enum] = ACTIONS(2959), + [anon_sym_class] = ACTIONS(2959), + [anon_sym_struct] = ACTIONS(2959), + [anon_sym_union] = ACTIONS(2959), + [anon_sym_if] = ACTIONS(2959), + [anon_sym_switch] = ACTIONS(2959), + [anon_sym_case] = ACTIONS(2959), + [anon_sym_default] = ACTIONS(2959), + [anon_sym_while] = ACTIONS(2959), + [anon_sym_do] = ACTIONS(2959), + [anon_sym_for] = ACTIONS(2959), + [anon_sym_return] = ACTIONS(2959), + [anon_sym_break] = ACTIONS(2959), + [anon_sym_continue] = ACTIONS(2959), + [anon_sym_goto] = ACTIONS(2959), + [anon_sym___try] = ACTIONS(2959), + [anon_sym___leave] = ACTIONS(2959), + [anon_sym_not] = ACTIONS(2959), + [anon_sym_compl] = ACTIONS(2959), + [anon_sym_DASH_DASH] = ACTIONS(2961), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_sizeof] = ACTIONS(2959), + [anon_sym___alignof__] = ACTIONS(2959), + [anon_sym___alignof] = ACTIONS(2959), + [anon_sym__alignof] = ACTIONS(2959), + [anon_sym_alignof] = ACTIONS(2959), + [anon_sym__Alignof] = ACTIONS(2959), + [anon_sym_offsetof] = ACTIONS(2959), + [anon_sym__Generic] = ACTIONS(2959), + [anon_sym_asm] = ACTIONS(2959), + [anon_sym___asm__] = ACTIONS(2959), + [anon_sym___asm] = ACTIONS(2959), + [sym_number_literal] = ACTIONS(2961), + [anon_sym_L_SQUOTE] = ACTIONS(2961), + [anon_sym_u_SQUOTE] = ACTIONS(2961), + [anon_sym_U_SQUOTE] = ACTIONS(2961), + [anon_sym_u8_SQUOTE] = ACTIONS(2961), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_L_DQUOTE] = ACTIONS(2961), + [anon_sym_u_DQUOTE] = ACTIONS(2961), + [anon_sym_U_DQUOTE] = ACTIONS(2961), + [anon_sym_u8_DQUOTE] = ACTIONS(2961), + [anon_sym_DQUOTE] = ACTIONS(2961), + [sym_true] = ACTIONS(2959), + [sym_false] = ACTIONS(2959), + [anon_sym_NULL] = ACTIONS(2959), + [anon_sym_nullptr] = ACTIONS(2959), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2959), + [anon_sym_decltype] = ACTIONS(2959), + [anon_sym_explicit] = ACTIONS(2959), + [anon_sym_typename] = ACTIONS(2959), + [anon_sym_template] = ACTIONS(2959), + [anon_sym_operator] = ACTIONS(2959), + [anon_sym_try] = ACTIONS(2959), + [anon_sym_delete] = ACTIONS(2959), + [anon_sym_throw] = ACTIONS(2959), + [anon_sym_namespace] = ACTIONS(2959), + [anon_sym_static_assert] = ACTIONS(2959), + [anon_sym_concept] = ACTIONS(2959), + [anon_sym_co_return] = ACTIONS(2959), + [anon_sym_co_yield] = ACTIONS(2959), + [anon_sym_R_DQUOTE] = ACTIONS(2961), + [anon_sym_LR_DQUOTE] = ACTIONS(2961), + [anon_sym_uR_DQUOTE] = ACTIONS(2961), + [anon_sym_UR_DQUOTE] = ACTIONS(2961), + [anon_sym_u8R_DQUOTE] = ACTIONS(2961), + [anon_sym_co_await] = ACTIONS(2959), + [anon_sym_new] = ACTIONS(2959), + [anon_sym_requires] = ACTIONS(2959), + [sym_this] = ACTIONS(2959), + }, + [692] = { + [sym_identifier] = ACTIONS(2963), + [aux_sym_preproc_include_token1] = ACTIONS(2963), + [aux_sym_preproc_def_token1] = ACTIONS(2963), + [aux_sym_preproc_if_token1] = ACTIONS(2963), + [aux_sym_preproc_if_token2] = ACTIONS(2963), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2963), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2963), + [sym_preproc_directive] = ACTIONS(2963), + [anon_sym_LPAREN2] = ACTIONS(2965), + [anon_sym_BANG] = ACTIONS(2965), + [anon_sym_TILDE] = ACTIONS(2965), + [anon_sym_DASH] = ACTIONS(2963), + [anon_sym_PLUS] = ACTIONS(2963), + [anon_sym_STAR] = ACTIONS(2965), + [anon_sym_AMP_AMP] = ACTIONS(2965), + [anon_sym_AMP] = ACTIONS(2963), + [anon_sym_SEMI] = ACTIONS(2965), + [anon_sym___extension__] = ACTIONS(2963), + [anon_sym_typedef] = ACTIONS(2963), + [anon_sym_virtual] = ACTIONS(2963), + [anon_sym_extern] = ACTIONS(2963), + [anon_sym___attribute__] = ACTIONS(2963), + [anon_sym___attribute] = ACTIONS(2963), + [anon_sym_using] = ACTIONS(2963), + [anon_sym_COLON_COLON] = ACTIONS(2965), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2965), + [anon_sym___declspec] = ACTIONS(2963), + [anon_sym___based] = ACTIONS(2963), + [anon_sym___cdecl] = ACTIONS(2963), + [anon_sym___clrcall] = ACTIONS(2963), + [anon_sym___stdcall] = ACTIONS(2963), + [anon_sym___fastcall] = ACTIONS(2963), + [anon_sym___thiscall] = ACTIONS(2963), + [anon_sym___vectorcall] = ACTIONS(2963), + [anon_sym_LBRACE] = ACTIONS(2965), + [anon_sym_signed] = ACTIONS(2963), + [anon_sym_unsigned] = ACTIONS(2963), + [anon_sym_long] = ACTIONS(2963), + [anon_sym_short] = ACTIONS(2963), + [anon_sym_LBRACK] = ACTIONS(2963), + [anon_sym_static] = ACTIONS(2963), + [anon_sym_register] = ACTIONS(2963), + [anon_sym_inline] = ACTIONS(2963), + [anon_sym___inline] = ACTIONS(2963), + [anon_sym___inline__] = ACTIONS(2963), + [anon_sym___forceinline] = ACTIONS(2963), + [anon_sym_thread_local] = ACTIONS(2963), + [anon_sym___thread] = ACTIONS(2963), + [anon_sym_const] = ACTIONS(2963), + [anon_sym_constexpr] = ACTIONS(2963), + [anon_sym_volatile] = ACTIONS(2963), + [anon_sym_restrict] = ACTIONS(2963), + [anon_sym___restrict__] = ACTIONS(2963), + [anon_sym__Atomic] = ACTIONS(2963), + [anon_sym__Noreturn] = ACTIONS(2963), + [anon_sym_noreturn] = ACTIONS(2963), + [anon_sym__Nonnull] = ACTIONS(2963), + [anon_sym_mutable] = ACTIONS(2963), + [anon_sym_constinit] = ACTIONS(2963), + [anon_sym_consteval] = ACTIONS(2963), + [anon_sym_alignas] = ACTIONS(2963), + [anon_sym__Alignas] = ACTIONS(2963), + [sym_primitive_type] = ACTIONS(2963), + [anon_sym_enum] = ACTIONS(2963), + [anon_sym_class] = ACTIONS(2963), + [anon_sym_struct] = ACTIONS(2963), + [anon_sym_union] = ACTIONS(2963), + [anon_sym_if] = ACTIONS(2963), + [anon_sym_switch] = ACTIONS(2963), + [anon_sym_case] = ACTIONS(2963), + [anon_sym_default] = ACTIONS(2963), + [anon_sym_while] = ACTIONS(2963), + [anon_sym_do] = ACTIONS(2963), + [anon_sym_for] = ACTIONS(2963), + [anon_sym_return] = ACTIONS(2963), + [anon_sym_break] = ACTIONS(2963), + [anon_sym_continue] = ACTIONS(2963), + [anon_sym_goto] = ACTIONS(2963), + [anon_sym___try] = ACTIONS(2963), + [anon_sym___leave] = ACTIONS(2963), + [anon_sym_not] = ACTIONS(2963), + [anon_sym_compl] = ACTIONS(2963), + [anon_sym_DASH_DASH] = ACTIONS(2965), + [anon_sym_PLUS_PLUS] = ACTIONS(2965), + [anon_sym_sizeof] = ACTIONS(2963), + [anon_sym___alignof__] = ACTIONS(2963), + [anon_sym___alignof] = ACTIONS(2963), + [anon_sym__alignof] = ACTIONS(2963), + [anon_sym_alignof] = ACTIONS(2963), + [anon_sym__Alignof] = ACTIONS(2963), + [anon_sym_offsetof] = ACTIONS(2963), + [anon_sym__Generic] = ACTIONS(2963), + [anon_sym_asm] = ACTIONS(2963), + [anon_sym___asm__] = ACTIONS(2963), + [anon_sym___asm] = ACTIONS(2963), + [sym_number_literal] = ACTIONS(2965), + [anon_sym_L_SQUOTE] = ACTIONS(2965), + [anon_sym_u_SQUOTE] = ACTIONS(2965), + [anon_sym_U_SQUOTE] = ACTIONS(2965), + [anon_sym_u8_SQUOTE] = ACTIONS(2965), + [anon_sym_SQUOTE] = ACTIONS(2965), + [anon_sym_L_DQUOTE] = ACTIONS(2965), + [anon_sym_u_DQUOTE] = ACTIONS(2965), + [anon_sym_U_DQUOTE] = ACTIONS(2965), + [anon_sym_u8_DQUOTE] = ACTIONS(2965), + [anon_sym_DQUOTE] = ACTIONS(2965), + [sym_true] = ACTIONS(2963), + [sym_false] = ACTIONS(2963), + [anon_sym_NULL] = ACTIONS(2963), + [anon_sym_nullptr] = ACTIONS(2963), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2963), + [anon_sym_decltype] = ACTIONS(2963), + [anon_sym_explicit] = ACTIONS(2963), + [anon_sym_typename] = ACTIONS(2963), + [anon_sym_template] = ACTIONS(2963), + [anon_sym_operator] = ACTIONS(2963), + [anon_sym_try] = ACTIONS(2963), + [anon_sym_delete] = ACTIONS(2963), + [anon_sym_throw] = ACTIONS(2963), + [anon_sym_namespace] = ACTIONS(2963), + [anon_sym_static_assert] = ACTIONS(2963), + [anon_sym_concept] = ACTIONS(2963), + [anon_sym_co_return] = ACTIONS(2963), + [anon_sym_co_yield] = ACTIONS(2963), + [anon_sym_R_DQUOTE] = ACTIONS(2965), + [anon_sym_LR_DQUOTE] = ACTIONS(2965), + [anon_sym_uR_DQUOTE] = ACTIONS(2965), + [anon_sym_UR_DQUOTE] = ACTIONS(2965), + [anon_sym_u8R_DQUOTE] = ACTIONS(2965), + [anon_sym_co_await] = ACTIONS(2963), + [anon_sym_new] = ACTIONS(2963), + [anon_sym_requires] = ACTIONS(2963), + [sym_this] = ACTIONS(2963), + }, + [693] = { + [sym_identifier] = ACTIONS(2971), + [aux_sym_preproc_include_token1] = ACTIONS(2971), + [aux_sym_preproc_def_token1] = ACTIONS(2971), + [aux_sym_preproc_if_token1] = ACTIONS(2971), + [aux_sym_preproc_if_token2] = ACTIONS(2971), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2971), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2971), + [sym_preproc_directive] = ACTIONS(2971), + [anon_sym_LPAREN2] = ACTIONS(2973), + [anon_sym_BANG] = ACTIONS(2973), + [anon_sym_TILDE] = ACTIONS(2973), + [anon_sym_DASH] = ACTIONS(2971), + [anon_sym_PLUS] = ACTIONS(2971), + [anon_sym_STAR] = ACTIONS(2973), + [anon_sym_AMP_AMP] = ACTIONS(2973), + [anon_sym_AMP] = ACTIONS(2971), + [anon_sym_SEMI] = ACTIONS(2973), + [anon_sym___extension__] = ACTIONS(2971), + [anon_sym_typedef] = ACTIONS(2971), + [anon_sym_virtual] = ACTIONS(2971), + [anon_sym_extern] = ACTIONS(2971), + [anon_sym___attribute__] = ACTIONS(2971), + [anon_sym___attribute] = ACTIONS(2971), + [anon_sym_using] = ACTIONS(2971), + [anon_sym_COLON_COLON] = ACTIONS(2973), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2973), + [anon_sym___declspec] = ACTIONS(2971), + [anon_sym___based] = ACTIONS(2971), + [anon_sym___cdecl] = ACTIONS(2971), + [anon_sym___clrcall] = ACTIONS(2971), + [anon_sym___stdcall] = ACTIONS(2971), + [anon_sym___fastcall] = ACTIONS(2971), + [anon_sym___thiscall] = ACTIONS(2971), + [anon_sym___vectorcall] = ACTIONS(2971), + [anon_sym_LBRACE] = ACTIONS(2973), + [anon_sym_signed] = ACTIONS(2971), + [anon_sym_unsigned] = ACTIONS(2971), + [anon_sym_long] = ACTIONS(2971), + [anon_sym_short] = ACTIONS(2971), + [anon_sym_LBRACK] = ACTIONS(2971), + [anon_sym_static] = ACTIONS(2971), + [anon_sym_register] = ACTIONS(2971), + [anon_sym_inline] = ACTIONS(2971), + [anon_sym___inline] = ACTIONS(2971), + [anon_sym___inline__] = ACTIONS(2971), + [anon_sym___forceinline] = ACTIONS(2971), + [anon_sym_thread_local] = ACTIONS(2971), + [anon_sym___thread] = ACTIONS(2971), + [anon_sym_const] = ACTIONS(2971), + [anon_sym_constexpr] = ACTIONS(2971), + [anon_sym_volatile] = ACTIONS(2971), + [anon_sym_restrict] = ACTIONS(2971), + [anon_sym___restrict__] = ACTIONS(2971), + [anon_sym__Atomic] = ACTIONS(2971), + [anon_sym__Noreturn] = ACTIONS(2971), + [anon_sym_noreturn] = ACTIONS(2971), + [anon_sym__Nonnull] = ACTIONS(2971), + [anon_sym_mutable] = ACTIONS(2971), + [anon_sym_constinit] = ACTIONS(2971), + [anon_sym_consteval] = ACTIONS(2971), + [anon_sym_alignas] = ACTIONS(2971), + [anon_sym__Alignas] = ACTIONS(2971), + [sym_primitive_type] = ACTIONS(2971), + [anon_sym_enum] = ACTIONS(2971), + [anon_sym_class] = ACTIONS(2971), + [anon_sym_struct] = ACTIONS(2971), + [anon_sym_union] = ACTIONS(2971), + [anon_sym_if] = ACTIONS(2971), + [anon_sym_switch] = ACTIONS(2971), + [anon_sym_case] = ACTIONS(2971), + [anon_sym_default] = ACTIONS(2971), + [anon_sym_while] = ACTIONS(2971), + [anon_sym_do] = ACTIONS(2971), + [anon_sym_for] = ACTIONS(2971), + [anon_sym_return] = ACTIONS(2971), + [anon_sym_break] = ACTIONS(2971), + [anon_sym_continue] = ACTIONS(2971), + [anon_sym_goto] = ACTIONS(2971), + [anon_sym___try] = ACTIONS(2971), + [anon_sym___leave] = ACTIONS(2971), + [anon_sym_not] = ACTIONS(2971), + [anon_sym_compl] = ACTIONS(2971), + [anon_sym_DASH_DASH] = ACTIONS(2973), + [anon_sym_PLUS_PLUS] = ACTIONS(2973), + [anon_sym_sizeof] = ACTIONS(2971), + [anon_sym___alignof__] = ACTIONS(2971), + [anon_sym___alignof] = ACTIONS(2971), + [anon_sym__alignof] = ACTIONS(2971), + [anon_sym_alignof] = ACTIONS(2971), + [anon_sym__Alignof] = ACTIONS(2971), + [anon_sym_offsetof] = ACTIONS(2971), + [anon_sym__Generic] = ACTIONS(2971), + [anon_sym_asm] = ACTIONS(2971), + [anon_sym___asm__] = ACTIONS(2971), + [anon_sym___asm] = ACTIONS(2971), + [sym_number_literal] = ACTIONS(2973), + [anon_sym_L_SQUOTE] = ACTIONS(2973), + [anon_sym_u_SQUOTE] = ACTIONS(2973), + [anon_sym_U_SQUOTE] = ACTIONS(2973), + [anon_sym_u8_SQUOTE] = ACTIONS(2973), + [anon_sym_SQUOTE] = ACTIONS(2973), + [anon_sym_L_DQUOTE] = ACTIONS(2973), + [anon_sym_u_DQUOTE] = ACTIONS(2973), + [anon_sym_U_DQUOTE] = ACTIONS(2973), + [anon_sym_u8_DQUOTE] = ACTIONS(2973), + [anon_sym_DQUOTE] = ACTIONS(2973), + [sym_true] = ACTIONS(2971), + [sym_false] = ACTIONS(2971), + [anon_sym_NULL] = ACTIONS(2971), + [anon_sym_nullptr] = ACTIONS(2971), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2971), + [anon_sym_decltype] = ACTIONS(2971), + [anon_sym_explicit] = ACTIONS(2971), + [anon_sym_typename] = ACTIONS(2971), + [anon_sym_template] = ACTIONS(2971), + [anon_sym_operator] = ACTIONS(2971), + [anon_sym_try] = ACTIONS(2971), + [anon_sym_delete] = ACTIONS(2971), + [anon_sym_throw] = ACTIONS(2971), + [anon_sym_namespace] = ACTIONS(2971), + [anon_sym_static_assert] = ACTIONS(2971), + [anon_sym_concept] = ACTIONS(2971), + [anon_sym_co_return] = ACTIONS(2971), + [anon_sym_co_yield] = ACTIONS(2971), + [anon_sym_R_DQUOTE] = ACTIONS(2973), + [anon_sym_LR_DQUOTE] = ACTIONS(2973), + [anon_sym_uR_DQUOTE] = ACTIONS(2973), + [anon_sym_UR_DQUOTE] = ACTIONS(2973), + [anon_sym_u8R_DQUOTE] = ACTIONS(2973), + [anon_sym_co_await] = ACTIONS(2971), + [anon_sym_new] = ACTIONS(2971), + [anon_sym_requires] = ACTIONS(2971), + [sym_this] = ACTIONS(2971), + }, + [694] = { + [sym_identifier] = ACTIONS(2975), + [aux_sym_preproc_include_token1] = ACTIONS(2975), + [aux_sym_preproc_def_token1] = ACTIONS(2975), + [aux_sym_preproc_if_token1] = ACTIONS(2975), + [aux_sym_preproc_if_token2] = ACTIONS(2975), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2975), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2975), + [sym_preproc_directive] = ACTIONS(2975), + [anon_sym_LPAREN2] = ACTIONS(2977), + [anon_sym_BANG] = ACTIONS(2977), + [anon_sym_TILDE] = ACTIONS(2977), + [anon_sym_DASH] = ACTIONS(2975), + [anon_sym_PLUS] = ACTIONS(2975), + [anon_sym_STAR] = ACTIONS(2977), + [anon_sym_AMP_AMP] = ACTIONS(2977), + [anon_sym_AMP] = ACTIONS(2975), + [anon_sym_SEMI] = ACTIONS(2977), + [anon_sym___extension__] = ACTIONS(2975), + [anon_sym_typedef] = ACTIONS(2975), + [anon_sym_virtual] = ACTIONS(2975), + [anon_sym_extern] = ACTIONS(2975), + [anon_sym___attribute__] = ACTIONS(2975), + [anon_sym___attribute] = ACTIONS(2975), + [anon_sym_using] = ACTIONS(2975), + [anon_sym_COLON_COLON] = ACTIONS(2977), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2977), + [anon_sym___declspec] = ACTIONS(2975), + [anon_sym___based] = ACTIONS(2975), + [anon_sym___cdecl] = ACTIONS(2975), + [anon_sym___clrcall] = ACTIONS(2975), + [anon_sym___stdcall] = ACTIONS(2975), + [anon_sym___fastcall] = ACTIONS(2975), + [anon_sym___thiscall] = ACTIONS(2975), + [anon_sym___vectorcall] = ACTIONS(2975), + [anon_sym_LBRACE] = ACTIONS(2977), + [anon_sym_signed] = ACTIONS(2975), + [anon_sym_unsigned] = ACTIONS(2975), + [anon_sym_long] = ACTIONS(2975), + [anon_sym_short] = ACTIONS(2975), + [anon_sym_LBRACK] = ACTIONS(2975), + [anon_sym_static] = ACTIONS(2975), + [anon_sym_register] = ACTIONS(2975), + [anon_sym_inline] = ACTIONS(2975), + [anon_sym___inline] = ACTIONS(2975), + [anon_sym___inline__] = ACTIONS(2975), + [anon_sym___forceinline] = ACTIONS(2975), + [anon_sym_thread_local] = ACTIONS(2975), + [anon_sym___thread] = ACTIONS(2975), + [anon_sym_const] = ACTIONS(2975), + [anon_sym_constexpr] = ACTIONS(2975), + [anon_sym_volatile] = ACTIONS(2975), + [anon_sym_restrict] = ACTIONS(2975), + [anon_sym___restrict__] = ACTIONS(2975), + [anon_sym__Atomic] = ACTIONS(2975), + [anon_sym__Noreturn] = ACTIONS(2975), + [anon_sym_noreturn] = ACTIONS(2975), + [anon_sym__Nonnull] = ACTIONS(2975), + [anon_sym_mutable] = ACTIONS(2975), + [anon_sym_constinit] = ACTIONS(2975), + [anon_sym_consteval] = ACTIONS(2975), + [anon_sym_alignas] = ACTIONS(2975), + [anon_sym__Alignas] = ACTIONS(2975), + [sym_primitive_type] = ACTIONS(2975), + [anon_sym_enum] = ACTIONS(2975), + [anon_sym_class] = ACTIONS(2975), + [anon_sym_struct] = ACTIONS(2975), + [anon_sym_union] = ACTIONS(2975), + [anon_sym_if] = ACTIONS(2975), + [anon_sym_switch] = ACTIONS(2975), + [anon_sym_case] = ACTIONS(2975), + [anon_sym_default] = ACTIONS(2975), + [anon_sym_while] = ACTIONS(2975), + [anon_sym_do] = ACTIONS(2975), + [anon_sym_for] = ACTIONS(2975), + [anon_sym_return] = ACTIONS(2975), + [anon_sym_break] = ACTIONS(2975), + [anon_sym_continue] = ACTIONS(2975), + [anon_sym_goto] = ACTIONS(2975), + [anon_sym___try] = ACTIONS(2975), + [anon_sym___leave] = ACTIONS(2975), + [anon_sym_not] = ACTIONS(2975), + [anon_sym_compl] = ACTIONS(2975), + [anon_sym_DASH_DASH] = ACTIONS(2977), + [anon_sym_PLUS_PLUS] = ACTIONS(2977), + [anon_sym_sizeof] = ACTIONS(2975), + [anon_sym___alignof__] = ACTIONS(2975), + [anon_sym___alignof] = ACTIONS(2975), + [anon_sym__alignof] = ACTIONS(2975), + [anon_sym_alignof] = ACTIONS(2975), + [anon_sym__Alignof] = ACTIONS(2975), + [anon_sym_offsetof] = ACTIONS(2975), + [anon_sym__Generic] = ACTIONS(2975), + [anon_sym_asm] = ACTIONS(2975), + [anon_sym___asm__] = ACTIONS(2975), + [anon_sym___asm] = ACTIONS(2975), + [sym_number_literal] = ACTIONS(2977), + [anon_sym_L_SQUOTE] = ACTIONS(2977), + [anon_sym_u_SQUOTE] = ACTIONS(2977), + [anon_sym_U_SQUOTE] = ACTIONS(2977), + [anon_sym_u8_SQUOTE] = ACTIONS(2977), + [anon_sym_SQUOTE] = ACTIONS(2977), + [anon_sym_L_DQUOTE] = ACTIONS(2977), + [anon_sym_u_DQUOTE] = ACTIONS(2977), + [anon_sym_U_DQUOTE] = ACTIONS(2977), + [anon_sym_u8_DQUOTE] = ACTIONS(2977), + [anon_sym_DQUOTE] = ACTIONS(2977), + [sym_true] = ACTIONS(2975), + [sym_false] = ACTIONS(2975), + [anon_sym_NULL] = ACTIONS(2975), + [anon_sym_nullptr] = ACTIONS(2975), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2975), + [anon_sym_decltype] = ACTIONS(2975), + [anon_sym_explicit] = ACTIONS(2975), + [anon_sym_typename] = ACTIONS(2975), + [anon_sym_template] = ACTIONS(2975), + [anon_sym_operator] = ACTIONS(2975), + [anon_sym_try] = ACTIONS(2975), + [anon_sym_delete] = ACTIONS(2975), + [anon_sym_throw] = ACTIONS(2975), + [anon_sym_namespace] = ACTIONS(2975), + [anon_sym_static_assert] = ACTIONS(2975), + [anon_sym_concept] = ACTIONS(2975), + [anon_sym_co_return] = ACTIONS(2975), + [anon_sym_co_yield] = ACTIONS(2975), + [anon_sym_R_DQUOTE] = ACTIONS(2977), + [anon_sym_LR_DQUOTE] = ACTIONS(2977), + [anon_sym_uR_DQUOTE] = ACTIONS(2977), + [anon_sym_UR_DQUOTE] = ACTIONS(2977), + [anon_sym_u8R_DQUOTE] = ACTIONS(2977), + [anon_sym_co_await] = ACTIONS(2975), + [anon_sym_new] = ACTIONS(2975), + [anon_sym_requires] = ACTIONS(2975), + [sym_this] = ACTIONS(2975), + }, + [695] = { + [sym_identifier] = ACTIONS(2911), + [aux_sym_preproc_include_token1] = ACTIONS(2911), + [aux_sym_preproc_def_token1] = ACTIONS(2911), + [aux_sym_preproc_if_token1] = ACTIONS(2911), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2911), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2911), + [sym_preproc_directive] = ACTIONS(2911), + [anon_sym_LPAREN2] = ACTIONS(2913), + [anon_sym_BANG] = ACTIONS(2913), + [anon_sym_TILDE] = ACTIONS(2913), + [anon_sym_DASH] = ACTIONS(2911), + [anon_sym_PLUS] = ACTIONS(2911), + [anon_sym_STAR] = ACTIONS(2913), + [anon_sym_AMP_AMP] = ACTIONS(2913), + [anon_sym_AMP] = ACTIONS(2911), + [anon_sym_SEMI] = ACTIONS(2913), + [anon_sym___extension__] = ACTIONS(2911), + [anon_sym_typedef] = ACTIONS(2911), + [anon_sym_virtual] = ACTIONS(2911), + [anon_sym_extern] = ACTIONS(2911), + [anon_sym___attribute__] = ACTIONS(2911), + [anon_sym___attribute] = ACTIONS(2911), + [anon_sym_using] = ACTIONS(2911), + [anon_sym_COLON_COLON] = ACTIONS(2913), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2913), + [anon_sym___declspec] = ACTIONS(2911), + [anon_sym___based] = ACTIONS(2911), + [anon_sym___cdecl] = ACTIONS(2911), + [anon_sym___clrcall] = ACTIONS(2911), + [anon_sym___stdcall] = ACTIONS(2911), + [anon_sym___fastcall] = ACTIONS(2911), + [anon_sym___thiscall] = ACTIONS(2911), + [anon_sym___vectorcall] = ACTIONS(2911), + [anon_sym_LBRACE] = ACTIONS(2913), + [anon_sym_RBRACE] = ACTIONS(2913), + [anon_sym_signed] = ACTIONS(2911), + [anon_sym_unsigned] = ACTIONS(2911), + [anon_sym_long] = ACTIONS(2911), + [anon_sym_short] = ACTIONS(2911), + [anon_sym_LBRACK] = ACTIONS(2911), + [anon_sym_static] = ACTIONS(2911), + [anon_sym_register] = ACTIONS(2911), + [anon_sym_inline] = ACTIONS(2911), + [anon_sym___inline] = ACTIONS(2911), + [anon_sym___inline__] = ACTIONS(2911), + [anon_sym___forceinline] = ACTIONS(2911), + [anon_sym_thread_local] = ACTIONS(2911), + [anon_sym___thread] = ACTIONS(2911), + [anon_sym_const] = ACTIONS(2911), + [anon_sym_constexpr] = ACTIONS(2911), + [anon_sym_volatile] = ACTIONS(2911), + [anon_sym_restrict] = ACTIONS(2911), + [anon_sym___restrict__] = ACTIONS(2911), + [anon_sym__Atomic] = ACTIONS(2911), + [anon_sym__Noreturn] = ACTIONS(2911), + [anon_sym_noreturn] = ACTIONS(2911), + [anon_sym__Nonnull] = ACTIONS(2911), + [anon_sym_mutable] = ACTIONS(2911), + [anon_sym_constinit] = ACTIONS(2911), + [anon_sym_consteval] = ACTIONS(2911), + [anon_sym_alignas] = ACTIONS(2911), + [anon_sym__Alignas] = ACTIONS(2911), + [sym_primitive_type] = ACTIONS(2911), + [anon_sym_enum] = ACTIONS(2911), + [anon_sym_class] = ACTIONS(2911), + [anon_sym_struct] = ACTIONS(2911), + [anon_sym_union] = ACTIONS(2911), + [anon_sym_if] = ACTIONS(2911), + [anon_sym_switch] = ACTIONS(2911), + [anon_sym_case] = ACTIONS(2911), + [anon_sym_default] = ACTIONS(2911), + [anon_sym_while] = ACTIONS(2911), + [anon_sym_do] = ACTIONS(2911), + [anon_sym_for] = ACTIONS(2911), + [anon_sym_return] = ACTIONS(2911), + [anon_sym_break] = ACTIONS(2911), + [anon_sym_continue] = ACTIONS(2911), + [anon_sym_goto] = ACTIONS(2911), + [anon_sym___try] = ACTIONS(2911), + [anon_sym___leave] = ACTIONS(2911), + [anon_sym_not] = ACTIONS(2911), + [anon_sym_compl] = ACTIONS(2911), + [anon_sym_DASH_DASH] = ACTIONS(2913), + [anon_sym_PLUS_PLUS] = ACTIONS(2913), + [anon_sym_sizeof] = ACTIONS(2911), + [anon_sym___alignof__] = ACTIONS(2911), + [anon_sym___alignof] = ACTIONS(2911), + [anon_sym__alignof] = ACTIONS(2911), + [anon_sym_alignof] = ACTIONS(2911), + [anon_sym__Alignof] = ACTIONS(2911), + [anon_sym_offsetof] = ACTIONS(2911), + [anon_sym__Generic] = ACTIONS(2911), + [anon_sym_asm] = ACTIONS(2911), + [anon_sym___asm__] = ACTIONS(2911), + [anon_sym___asm] = ACTIONS(2911), + [sym_number_literal] = ACTIONS(2913), + [anon_sym_L_SQUOTE] = ACTIONS(2913), + [anon_sym_u_SQUOTE] = ACTIONS(2913), + [anon_sym_U_SQUOTE] = ACTIONS(2913), + [anon_sym_u8_SQUOTE] = ACTIONS(2913), + [anon_sym_SQUOTE] = ACTIONS(2913), + [anon_sym_L_DQUOTE] = ACTIONS(2913), + [anon_sym_u_DQUOTE] = ACTIONS(2913), + [anon_sym_U_DQUOTE] = ACTIONS(2913), + [anon_sym_u8_DQUOTE] = ACTIONS(2913), + [anon_sym_DQUOTE] = ACTIONS(2913), + [sym_true] = ACTIONS(2911), + [sym_false] = ACTIONS(2911), + [anon_sym_NULL] = ACTIONS(2911), + [anon_sym_nullptr] = ACTIONS(2911), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2911), + [anon_sym_decltype] = ACTIONS(2911), + [anon_sym_explicit] = ACTIONS(2911), + [anon_sym_typename] = ACTIONS(2911), + [anon_sym_template] = ACTIONS(2911), + [anon_sym_operator] = ACTIONS(2911), + [anon_sym_try] = ACTIONS(2911), + [anon_sym_delete] = ACTIONS(2911), + [anon_sym_throw] = ACTIONS(2911), + [anon_sym_namespace] = ACTIONS(2911), + [anon_sym_static_assert] = ACTIONS(2911), + [anon_sym_concept] = ACTIONS(2911), + [anon_sym_co_return] = ACTIONS(2911), + [anon_sym_co_yield] = ACTIONS(2911), + [anon_sym_R_DQUOTE] = ACTIONS(2913), + [anon_sym_LR_DQUOTE] = ACTIONS(2913), + [anon_sym_uR_DQUOTE] = ACTIONS(2913), + [anon_sym_UR_DQUOTE] = ACTIONS(2913), + [anon_sym_u8R_DQUOTE] = ACTIONS(2913), + [anon_sym_co_await] = ACTIONS(2911), + [anon_sym_new] = ACTIONS(2911), + [anon_sym_requires] = ACTIONS(2911), + [sym_this] = ACTIONS(2911), + }, + [696] = { + [sym_identifier] = ACTIONS(2915), + [aux_sym_preproc_include_token1] = ACTIONS(2915), + [aux_sym_preproc_def_token1] = ACTIONS(2915), + [aux_sym_preproc_if_token1] = ACTIONS(2915), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2915), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2915), + [sym_preproc_directive] = ACTIONS(2915), + [anon_sym_LPAREN2] = ACTIONS(2917), + [anon_sym_BANG] = ACTIONS(2917), + [anon_sym_TILDE] = ACTIONS(2917), + [anon_sym_DASH] = ACTIONS(2915), + [anon_sym_PLUS] = ACTIONS(2915), + [anon_sym_STAR] = ACTIONS(2917), + [anon_sym_AMP_AMP] = ACTIONS(2917), + [anon_sym_AMP] = ACTIONS(2915), + [anon_sym_SEMI] = ACTIONS(2917), + [anon_sym___extension__] = ACTIONS(2915), + [anon_sym_typedef] = ACTIONS(2915), + [anon_sym_virtual] = ACTIONS(2915), + [anon_sym_extern] = ACTIONS(2915), + [anon_sym___attribute__] = ACTIONS(2915), + [anon_sym___attribute] = ACTIONS(2915), + [anon_sym_using] = ACTIONS(2915), + [anon_sym_COLON_COLON] = ACTIONS(2917), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2917), + [anon_sym___declspec] = ACTIONS(2915), + [anon_sym___based] = ACTIONS(2915), + [anon_sym___cdecl] = ACTIONS(2915), + [anon_sym___clrcall] = ACTIONS(2915), + [anon_sym___stdcall] = ACTIONS(2915), + [anon_sym___fastcall] = ACTIONS(2915), + [anon_sym___thiscall] = ACTIONS(2915), + [anon_sym___vectorcall] = ACTIONS(2915), + [anon_sym_LBRACE] = ACTIONS(2917), + [anon_sym_RBRACE] = ACTIONS(2917), + [anon_sym_signed] = ACTIONS(2915), + [anon_sym_unsigned] = ACTIONS(2915), + [anon_sym_long] = ACTIONS(2915), + [anon_sym_short] = ACTIONS(2915), + [anon_sym_LBRACK] = ACTIONS(2915), + [anon_sym_static] = ACTIONS(2915), + [anon_sym_register] = ACTIONS(2915), + [anon_sym_inline] = ACTIONS(2915), + [anon_sym___inline] = ACTIONS(2915), + [anon_sym___inline__] = ACTIONS(2915), + [anon_sym___forceinline] = ACTIONS(2915), + [anon_sym_thread_local] = ACTIONS(2915), + [anon_sym___thread] = ACTIONS(2915), + [anon_sym_const] = ACTIONS(2915), + [anon_sym_constexpr] = ACTIONS(2915), + [anon_sym_volatile] = ACTIONS(2915), + [anon_sym_restrict] = ACTIONS(2915), + [anon_sym___restrict__] = ACTIONS(2915), + [anon_sym__Atomic] = ACTIONS(2915), + [anon_sym__Noreturn] = ACTIONS(2915), + [anon_sym_noreturn] = ACTIONS(2915), + [anon_sym__Nonnull] = ACTIONS(2915), + [anon_sym_mutable] = ACTIONS(2915), + [anon_sym_constinit] = ACTIONS(2915), + [anon_sym_consteval] = ACTIONS(2915), + [anon_sym_alignas] = ACTIONS(2915), + [anon_sym__Alignas] = ACTIONS(2915), + [sym_primitive_type] = ACTIONS(2915), + [anon_sym_enum] = ACTIONS(2915), + [anon_sym_class] = ACTIONS(2915), + [anon_sym_struct] = ACTIONS(2915), + [anon_sym_union] = ACTIONS(2915), + [anon_sym_if] = ACTIONS(2915), + [anon_sym_switch] = ACTIONS(2915), + [anon_sym_case] = ACTIONS(2915), + [anon_sym_default] = ACTIONS(2915), + [anon_sym_while] = ACTIONS(2915), + [anon_sym_do] = ACTIONS(2915), + [anon_sym_for] = ACTIONS(2915), + [anon_sym_return] = ACTIONS(2915), + [anon_sym_break] = ACTIONS(2915), + [anon_sym_continue] = ACTIONS(2915), + [anon_sym_goto] = ACTIONS(2915), + [anon_sym___try] = ACTIONS(2915), + [anon_sym___leave] = ACTIONS(2915), + [anon_sym_not] = ACTIONS(2915), + [anon_sym_compl] = ACTIONS(2915), + [anon_sym_DASH_DASH] = ACTIONS(2917), + [anon_sym_PLUS_PLUS] = ACTIONS(2917), + [anon_sym_sizeof] = ACTIONS(2915), + [anon_sym___alignof__] = ACTIONS(2915), + [anon_sym___alignof] = ACTIONS(2915), + [anon_sym__alignof] = ACTIONS(2915), + [anon_sym_alignof] = ACTIONS(2915), + [anon_sym__Alignof] = ACTIONS(2915), + [anon_sym_offsetof] = ACTIONS(2915), + [anon_sym__Generic] = ACTIONS(2915), + [anon_sym_asm] = ACTIONS(2915), + [anon_sym___asm__] = ACTIONS(2915), + [anon_sym___asm] = ACTIONS(2915), + [sym_number_literal] = ACTIONS(2917), + [anon_sym_L_SQUOTE] = ACTIONS(2917), + [anon_sym_u_SQUOTE] = ACTIONS(2917), + [anon_sym_U_SQUOTE] = ACTIONS(2917), + [anon_sym_u8_SQUOTE] = ACTIONS(2917), + [anon_sym_SQUOTE] = ACTIONS(2917), + [anon_sym_L_DQUOTE] = ACTIONS(2917), + [anon_sym_u_DQUOTE] = ACTIONS(2917), + [anon_sym_U_DQUOTE] = ACTIONS(2917), + [anon_sym_u8_DQUOTE] = ACTIONS(2917), + [anon_sym_DQUOTE] = ACTIONS(2917), + [sym_true] = ACTIONS(2915), + [sym_false] = ACTIONS(2915), + [anon_sym_NULL] = ACTIONS(2915), + [anon_sym_nullptr] = ACTIONS(2915), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2915), + [anon_sym_decltype] = ACTIONS(2915), + [anon_sym_explicit] = ACTIONS(2915), + [anon_sym_typename] = ACTIONS(2915), + [anon_sym_template] = ACTIONS(2915), + [anon_sym_operator] = ACTIONS(2915), + [anon_sym_try] = ACTIONS(2915), + [anon_sym_delete] = ACTIONS(2915), + [anon_sym_throw] = ACTIONS(2915), + [anon_sym_namespace] = ACTIONS(2915), + [anon_sym_static_assert] = ACTIONS(2915), + [anon_sym_concept] = ACTIONS(2915), + [anon_sym_co_return] = ACTIONS(2915), + [anon_sym_co_yield] = ACTIONS(2915), + [anon_sym_R_DQUOTE] = ACTIONS(2917), + [anon_sym_LR_DQUOTE] = ACTIONS(2917), + [anon_sym_uR_DQUOTE] = ACTIONS(2917), + [anon_sym_UR_DQUOTE] = ACTIONS(2917), + [anon_sym_u8R_DQUOTE] = ACTIONS(2917), + [anon_sym_co_await] = ACTIONS(2915), + [anon_sym_new] = ACTIONS(2915), + [anon_sym_requires] = ACTIONS(2915), + [sym_this] = ACTIONS(2915), + }, + [697] = { [sym_identifier] = ACTIONS(3039), [aux_sym_preproc_include_token1] = ACTIONS(3039), [aux_sym_preproc_def_token1] = ACTIONS(3039), @@ -141186,279 +142329,279 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(3039), [sym_this] = ACTIONS(3039), }, - [692] = { - [sym_identifier] = ACTIONS(3063), - [aux_sym_preproc_include_token1] = ACTIONS(3063), - [aux_sym_preproc_def_token1] = ACTIONS(3063), - [aux_sym_preproc_if_token1] = ACTIONS(3063), - [aux_sym_preproc_if_token2] = ACTIONS(3063), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3063), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3063), - [sym_preproc_directive] = ACTIONS(3063), - [anon_sym_LPAREN2] = ACTIONS(3065), - [anon_sym_BANG] = ACTIONS(3065), - [anon_sym_TILDE] = ACTIONS(3065), - [anon_sym_DASH] = ACTIONS(3063), - [anon_sym_PLUS] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3065), - [anon_sym_AMP_AMP] = ACTIONS(3065), - [anon_sym_AMP] = ACTIONS(3063), - [anon_sym_SEMI] = ACTIONS(3065), - [anon_sym___extension__] = ACTIONS(3063), - [anon_sym_typedef] = ACTIONS(3063), - [anon_sym_virtual] = ACTIONS(3063), - [anon_sym_extern] = ACTIONS(3063), - [anon_sym___attribute__] = ACTIONS(3063), - [anon_sym___attribute] = ACTIONS(3063), - [anon_sym_using] = ACTIONS(3063), - [anon_sym_COLON_COLON] = ACTIONS(3065), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3065), - [anon_sym___declspec] = ACTIONS(3063), - [anon_sym___based] = ACTIONS(3063), - [anon_sym___cdecl] = ACTIONS(3063), - [anon_sym___clrcall] = ACTIONS(3063), - [anon_sym___stdcall] = ACTIONS(3063), - [anon_sym___fastcall] = ACTIONS(3063), - [anon_sym___thiscall] = ACTIONS(3063), - [anon_sym___vectorcall] = ACTIONS(3063), - [anon_sym_LBRACE] = ACTIONS(3065), - [anon_sym_signed] = ACTIONS(3063), - [anon_sym_unsigned] = ACTIONS(3063), - [anon_sym_long] = ACTIONS(3063), - [anon_sym_short] = ACTIONS(3063), - [anon_sym_LBRACK] = ACTIONS(3063), - [anon_sym_static] = ACTIONS(3063), - [anon_sym_register] = ACTIONS(3063), - [anon_sym_inline] = ACTIONS(3063), - [anon_sym___inline] = ACTIONS(3063), - [anon_sym___inline__] = ACTIONS(3063), - [anon_sym___forceinline] = ACTIONS(3063), - [anon_sym_thread_local] = ACTIONS(3063), - [anon_sym___thread] = ACTIONS(3063), - [anon_sym_const] = ACTIONS(3063), - [anon_sym_constexpr] = ACTIONS(3063), - [anon_sym_volatile] = ACTIONS(3063), - [anon_sym_restrict] = ACTIONS(3063), - [anon_sym___restrict__] = ACTIONS(3063), - [anon_sym__Atomic] = ACTIONS(3063), - [anon_sym__Noreturn] = ACTIONS(3063), - [anon_sym_noreturn] = ACTIONS(3063), - [anon_sym__Nonnull] = ACTIONS(3063), - [anon_sym_mutable] = ACTIONS(3063), - [anon_sym_constinit] = ACTIONS(3063), - [anon_sym_consteval] = ACTIONS(3063), - [anon_sym_alignas] = ACTIONS(3063), - [anon_sym__Alignas] = ACTIONS(3063), - [sym_primitive_type] = ACTIONS(3063), - [anon_sym_enum] = ACTIONS(3063), - [anon_sym_class] = ACTIONS(3063), - [anon_sym_struct] = ACTIONS(3063), - [anon_sym_union] = ACTIONS(3063), - [anon_sym_if] = ACTIONS(3063), - [anon_sym_switch] = ACTIONS(3063), - [anon_sym_case] = ACTIONS(3063), - [anon_sym_default] = ACTIONS(3063), - [anon_sym_while] = ACTIONS(3063), - [anon_sym_do] = ACTIONS(3063), - [anon_sym_for] = ACTIONS(3063), - [anon_sym_return] = ACTIONS(3063), - [anon_sym_break] = ACTIONS(3063), - [anon_sym_continue] = ACTIONS(3063), - [anon_sym_goto] = ACTIONS(3063), - [anon_sym___try] = ACTIONS(3063), - [anon_sym___leave] = ACTIONS(3063), - [anon_sym_not] = ACTIONS(3063), - [anon_sym_compl] = ACTIONS(3063), - [anon_sym_DASH_DASH] = ACTIONS(3065), - [anon_sym_PLUS_PLUS] = ACTIONS(3065), - [anon_sym_sizeof] = ACTIONS(3063), - [anon_sym___alignof__] = ACTIONS(3063), - [anon_sym___alignof] = ACTIONS(3063), - [anon_sym__alignof] = ACTIONS(3063), - [anon_sym_alignof] = ACTIONS(3063), - [anon_sym__Alignof] = ACTIONS(3063), - [anon_sym_offsetof] = ACTIONS(3063), - [anon_sym__Generic] = ACTIONS(3063), - [anon_sym_asm] = ACTIONS(3063), - [anon_sym___asm__] = ACTIONS(3063), - [anon_sym___asm] = ACTIONS(3063), - [sym_number_literal] = ACTIONS(3065), - [anon_sym_L_SQUOTE] = ACTIONS(3065), - [anon_sym_u_SQUOTE] = ACTIONS(3065), - [anon_sym_U_SQUOTE] = ACTIONS(3065), - [anon_sym_u8_SQUOTE] = ACTIONS(3065), - [anon_sym_SQUOTE] = ACTIONS(3065), - [anon_sym_L_DQUOTE] = ACTIONS(3065), - [anon_sym_u_DQUOTE] = ACTIONS(3065), - [anon_sym_U_DQUOTE] = ACTIONS(3065), - [anon_sym_u8_DQUOTE] = ACTIONS(3065), - [anon_sym_DQUOTE] = ACTIONS(3065), - [sym_true] = ACTIONS(3063), - [sym_false] = ACTIONS(3063), - [anon_sym_NULL] = ACTIONS(3063), - [anon_sym_nullptr] = ACTIONS(3063), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3063), - [anon_sym_decltype] = ACTIONS(3063), - [anon_sym_explicit] = ACTIONS(3063), - [anon_sym_typename] = ACTIONS(3063), - [anon_sym_template] = ACTIONS(3063), - [anon_sym_operator] = ACTIONS(3063), - [anon_sym_try] = ACTIONS(3063), - [anon_sym_delete] = ACTIONS(3063), - [anon_sym_throw] = ACTIONS(3063), - [anon_sym_namespace] = ACTIONS(3063), - [anon_sym_static_assert] = ACTIONS(3063), - [anon_sym_concept] = ACTIONS(3063), - [anon_sym_co_return] = ACTIONS(3063), - [anon_sym_co_yield] = ACTIONS(3063), - [anon_sym_R_DQUOTE] = ACTIONS(3065), - [anon_sym_LR_DQUOTE] = ACTIONS(3065), - [anon_sym_uR_DQUOTE] = ACTIONS(3065), - [anon_sym_UR_DQUOTE] = ACTIONS(3065), - [anon_sym_u8R_DQUOTE] = ACTIONS(3065), - [anon_sym_co_await] = ACTIONS(3063), - [anon_sym_new] = ACTIONS(3063), - [anon_sym_requires] = ACTIONS(3063), - [sym_this] = ACTIONS(3063), + [698] = { + [sym_identifier] = ACTIONS(3043), + [aux_sym_preproc_include_token1] = ACTIONS(3043), + [aux_sym_preproc_def_token1] = ACTIONS(3043), + [aux_sym_preproc_if_token1] = ACTIONS(3043), + [aux_sym_preproc_if_token2] = ACTIONS(3043), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3043), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3043), + [sym_preproc_directive] = ACTIONS(3043), + [anon_sym_LPAREN2] = ACTIONS(3045), + [anon_sym_BANG] = ACTIONS(3045), + [anon_sym_TILDE] = ACTIONS(3045), + [anon_sym_DASH] = ACTIONS(3043), + [anon_sym_PLUS] = ACTIONS(3043), + [anon_sym_STAR] = ACTIONS(3045), + [anon_sym_AMP_AMP] = ACTIONS(3045), + [anon_sym_AMP] = ACTIONS(3043), + [anon_sym_SEMI] = ACTIONS(3045), + [anon_sym___extension__] = ACTIONS(3043), + [anon_sym_typedef] = ACTIONS(3043), + [anon_sym_virtual] = ACTIONS(3043), + [anon_sym_extern] = ACTIONS(3043), + [anon_sym___attribute__] = ACTIONS(3043), + [anon_sym___attribute] = ACTIONS(3043), + [anon_sym_using] = ACTIONS(3043), + [anon_sym_COLON_COLON] = ACTIONS(3045), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3045), + [anon_sym___declspec] = ACTIONS(3043), + [anon_sym___based] = ACTIONS(3043), + [anon_sym___cdecl] = ACTIONS(3043), + [anon_sym___clrcall] = ACTIONS(3043), + [anon_sym___stdcall] = ACTIONS(3043), + [anon_sym___fastcall] = ACTIONS(3043), + [anon_sym___thiscall] = ACTIONS(3043), + [anon_sym___vectorcall] = ACTIONS(3043), + [anon_sym_LBRACE] = ACTIONS(3045), + [anon_sym_signed] = ACTIONS(3043), + [anon_sym_unsigned] = ACTIONS(3043), + [anon_sym_long] = ACTIONS(3043), + [anon_sym_short] = ACTIONS(3043), + [anon_sym_LBRACK] = ACTIONS(3043), + [anon_sym_static] = ACTIONS(3043), + [anon_sym_register] = ACTIONS(3043), + [anon_sym_inline] = ACTIONS(3043), + [anon_sym___inline] = ACTIONS(3043), + [anon_sym___inline__] = ACTIONS(3043), + [anon_sym___forceinline] = ACTIONS(3043), + [anon_sym_thread_local] = ACTIONS(3043), + [anon_sym___thread] = ACTIONS(3043), + [anon_sym_const] = ACTIONS(3043), + [anon_sym_constexpr] = ACTIONS(3043), + [anon_sym_volatile] = ACTIONS(3043), + [anon_sym_restrict] = ACTIONS(3043), + [anon_sym___restrict__] = ACTIONS(3043), + [anon_sym__Atomic] = ACTIONS(3043), + [anon_sym__Noreturn] = ACTIONS(3043), + [anon_sym_noreturn] = ACTIONS(3043), + [anon_sym__Nonnull] = ACTIONS(3043), + [anon_sym_mutable] = ACTIONS(3043), + [anon_sym_constinit] = ACTIONS(3043), + [anon_sym_consteval] = ACTIONS(3043), + [anon_sym_alignas] = ACTIONS(3043), + [anon_sym__Alignas] = ACTIONS(3043), + [sym_primitive_type] = ACTIONS(3043), + [anon_sym_enum] = ACTIONS(3043), + [anon_sym_class] = ACTIONS(3043), + [anon_sym_struct] = ACTIONS(3043), + [anon_sym_union] = ACTIONS(3043), + [anon_sym_if] = ACTIONS(3043), + [anon_sym_switch] = ACTIONS(3043), + [anon_sym_case] = ACTIONS(3043), + [anon_sym_default] = ACTIONS(3043), + [anon_sym_while] = ACTIONS(3043), + [anon_sym_do] = ACTIONS(3043), + [anon_sym_for] = ACTIONS(3043), + [anon_sym_return] = ACTIONS(3043), + [anon_sym_break] = ACTIONS(3043), + [anon_sym_continue] = ACTIONS(3043), + [anon_sym_goto] = ACTIONS(3043), + [anon_sym___try] = ACTIONS(3043), + [anon_sym___leave] = ACTIONS(3043), + [anon_sym_not] = ACTIONS(3043), + [anon_sym_compl] = ACTIONS(3043), + [anon_sym_DASH_DASH] = ACTIONS(3045), + [anon_sym_PLUS_PLUS] = ACTIONS(3045), + [anon_sym_sizeof] = ACTIONS(3043), + [anon_sym___alignof__] = ACTIONS(3043), + [anon_sym___alignof] = ACTIONS(3043), + [anon_sym__alignof] = ACTIONS(3043), + [anon_sym_alignof] = ACTIONS(3043), + [anon_sym__Alignof] = ACTIONS(3043), + [anon_sym_offsetof] = ACTIONS(3043), + [anon_sym__Generic] = ACTIONS(3043), + [anon_sym_asm] = ACTIONS(3043), + [anon_sym___asm__] = ACTIONS(3043), + [anon_sym___asm] = ACTIONS(3043), + [sym_number_literal] = ACTIONS(3045), + [anon_sym_L_SQUOTE] = ACTIONS(3045), + [anon_sym_u_SQUOTE] = ACTIONS(3045), + [anon_sym_U_SQUOTE] = ACTIONS(3045), + [anon_sym_u8_SQUOTE] = ACTIONS(3045), + [anon_sym_SQUOTE] = ACTIONS(3045), + [anon_sym_L_DQUOTE] = ACTIONS(3045), + [anon_sym_u_DQUOTE] = ACTIONS(3045), + [anon_sym_U_DQUOTE] = ACTIONS(3045), + [anon_sym_u8_DQUOTE] = ACTIONS(3045), + [anon_sym_DQUOTE] = ACTIONS(3045), + [sym_true] = ACTIONS(3043), + [sym_false] = ACTIONS(3043), + [anon_sym_NULL] = ACTIONS(3043), + [anon_sym_nullptr] = ACTIONS(3043), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3043), + [anon_sym_decltype] = ACTIONS(3043), + [anon_sym_explicit] = ACTIONS(3043), + [anon_sym_typename] = ACTIONS(3043), + [anon_sym_template] = ACTIONS(3043), + [anon_sym_operator] = ACTIONS(3043), + [anon_sym_try] = ACTIONS(3043), + [anon_sym_delete] = ACTIONS(3043), + [anon_sym_throw] = ACTIONS(3043), + [anon_sym_namespace] = ACTIONS(3043), + [anon_sym_static_assert] = ACTIONS(3043), + [anon_sym_concept] = ACTIONS(3043), + [anon_sym_co_return] = ACTIONS(3043), + [anon_sym_co_yield] = ACTIONS(3043), + [anon_sym_R_DQUOTE] = ACTIONS(3045), + [anon_sym_LR_DQUOTE] = ACTIONS(3045), + [anon_sym_uR_DQUOTE] = ACTIONS(3045), + [anon_sym_UR_DQUOTE] = ACTIONS(3045), + [anon_sym_u8R_DQUOTE] = ACTIONS(3045), + [anon_sym_co_await] = ACTIONS(3043), + [anon_sym_new] = ACTIONS(3043), + [anon_sym_requires] = ACTIONS(3043), + [sym_this] = ACTIONS(3043), }, - [693] = { - [sym_identifier] = ACTIONS(3063), - [aux_sym_preproc_include_token1] = ACTIONS(3063), - [aux_sym_preproc_def_token1] = ACTIONS(3063), - [aux_sym_preproc_if_token1] = ACTIONS(3063), - [aux_sym_preproc_if_token2] = ACTIONS(3063), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3063), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3063), - [sym_preproc_directive] = ACTIONS(3063), - [anon_sym_LPAREN2] = ACTIONS(3065), - [anon_sym_BANG] = ACTIONS(3065), - [anon_sym_TILDE] = ACTIONS(3065), - [anon_sym_DASH] = ACTIONS(3063), - [anon_sym_PLUS] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3065), - [anon_sym_AMP_AMP] = ACTIONS(3065), - [anon_sym_AMP] = ACTIONS(3063), - [anon_sym_SEMI] = ACTIONS(3065), - [anon_sym___extension__] = ACTIONS(3063), - [anon_sym_typedef] = ACTIONS(3063), - [anon_sym_virtual] = ACTIONS(3063), - [anon_sym_extern] = ACTIONS(3063), - [anon_sym___attribute__] = ACTIONS(3063), - [anon_sym___attribute] = ACTIONS(3063), - [anon_sym_using] = ACTIONS(3063), - [anon_sym_COLON_COLON] = ACTIONS(3065), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3065), - [anon_sym___declspec] = ACTIONS(3063), - [anon_sym___based] = ACTIONS(3063), - [anon_sym___cdecl] = ACTIONS(3063), - [anon_sym___clrcall] = ACTIONS(3063), - [anon_sym___stdcall] = ACTIONS(3063), - [anon_sym___fastcall] = ACTIONS(3063), - [anon_sym___thiscall] = ACTIONS(3063), - [anon_sym___vectorcall] = ACTIONS(3063), - [anon_sym_LBRACE] = ACTIONS(3065), - [anon_sym_signed] = ACTIONS(3063), - [anon_sym_unsigned] = ACTIONS(3063), - [anon_sym_long] = ACTIONS(3063), - [anon_sym_short] = ACTIONS(3063), - [anon_sym_LBRACK] = ACTIONS(3063), - [anon_sym_static] = ACTIONS(3063), - [anon_sym_register] = ACTIONS(3063), - [anon_sym_inline] = ACTIONS(3063), - [anon_sym___inline] = ACTIONS(3063), - [anon_sym___inline__] = ACTIONS(3063), - [anon_sym___forceinline] = ACTIONS(3063), - [anon_sym_thread_local] = ACTIONS(3063), - [anon_sym___thread] = ACTIONS(3063), - [anon_sym_const] = ACTIONS(3063), - [anon_sym_constexpr] = ACTIONS(3063), - [anon_sym_volatile] = ACTIONS(3063), - [anon_sym_restrict] = ACTIONS(3063), - [anon_sym___restrict__] = ACTIONS(3063), - [anon_sym__Atomic] = ACTIONS(3063), - [anon_sym__Noreturn] = ACTIONS(3063), - [anon_sym_noreturn] = ACTIONS(3063), - [anon_sym__Nonnull] = ACTIONS(3063), - [anon_sym_mutable] = ACTIONS(3063), - [anon_sym_constinit] = ACTIONS(3063), - [anon_sym_consteval] = ACTIONS(3063), - [anon_sym_alignas] = ACTIONS(3063), - [anon_sym__Alignas] = ACTIONS(3063), - [sym_primitive_type] = ACTIONS(3063), - [anon_sym_enum] = ACTIONS(3063), - [anon_sym_class] = ACTIONS(3063), - [anon_sym_struct] = ACTIONS(3063), - [anon_sym_union] = ACTIONS(3063), - [anon_sym_if] = ACTIONS(3063), - [anon_sym_switch] = ACTIONS(3063), - [anon_sym_case] = ACTIONS(3063), - [anon_sym_default] = ACTIONS(3063), - [anon_sym_while] = ACTIONS(3063), - [anon_sym_do] = ACTIONS(3063), - [anon_sym_for] = ACTIONS(3063), - [anon_sym_return] = ACTIONS(3063), - [anon_sym_break] = ACTIONS(3063), - [anon_sym_continue] = ACTIONS(3063), - [anon_sym_goto] = ACTIONS(3063), - [anon_sym___try] = ACTIONS(3063), - [anon_sym___leave] = ACTIONS(3063), - [anon_sym_not] = ACTIONS(3063), - [anon_sym_compl] = ACTIONS(3063), - [anon_sym_DASH_DASH] = ACTIONS(3065), - [anon_sym_PLUS_PLUS] = ACTIONS(3065), - [anon_sym_sizeof] = ACTIONS(3063), - [anon_sym___alignof__] = ACTIONS(3063), - [anon_sym___alignof] = ACTIONS(3063), - [anon_sym__alignof] = ACTIONS(3063), - [anon_sym_alignof] = ACTIONS(3063), - [anon_sym__Alignof] = ACTIONS(3063), - [anon_sym_offsetof] = ACTIONS(3063), - [anon_sym__Generic] = ACTIONS(3063), - [anon_sym_asm] = ACTIONS(3063), - [anon_sym___asm__] = ACTIONS(3063), - [anon_sym___asm] = ACTIONS(3063), - [sym_number_literal] = ACTIONS(3065), - [anon_sym_L_SQUOTE] = ACTIONS(3065), - [anon_sym_u_SQUOTE] = ACTIONS(3065), - [anon_sym_U_SQUOTE] = ACTIONS(3065), - [anon_sym_u8_SQUOTE] = ACTIONS(3065), - [anon_sym_SQUOTE] = ACTIONS(3065), - [anon_sym_L_DQUOTE] = ACTIONS(3065), - [anon_sym_u_DQUOTE] = ACTIONS(3065), - [anon_sym_U_DQUOTE] = ACTIONS(3065), - [anon_sym_u8_DQUOTE] = ACTIONS(3065), - [anon_sym_DQUOTE] = ACTIONS(3065), - [sym_true] = ACTIONS(3063), - [sym_false] = ACTIONS(3063), - [anon_sym_NULL] = ACTIONS(3063), - [anon_sym_nullptr] = ACTIONS(3063), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3063), - [anon_sym_decltype] = ACTIONS(3063), - [anon_sym_explicit] = ACTIONS(3063), - [anon_sym_typename] = ACTIONS(3063), - [anon_sym_template] = ACTIONS(3063), - [anon_sym_operator] = ACTIONS(3063), - [anon_sym_try] = ACTIONS(3063), - [anon_sym_delete] = ACTIONS(3063), - [anon_sym_throw] = ACTIONS(3063), - [anon_sym_namespace] = ACTIONS(3063), - [anon_sym_static_assert] = ACTIONS(3063), - [anon_sym_concept] = ACTIONS(3063), - [anon_sym_co_return] = ACTIONS(3063), - [anon_sym_co_yield] = ACTIONS(3063), - [anon_sym_R_DQUOTE] = ACTIONS(3065), - [anon_sym_LR_DQUOTE] = ACTIONS(3065), - [anon_sym_uR_DQUOTE] = ACTIONS(3065), - [anon_sym_UR_DQUOTE] = ACTIONS(3065), - [anon_sym_u8R_DQUOTE] = ACTIONS(3065), - [anon_sym_co_await] = ACTIONS(3063), - [anon_sym_new] = ACTIONS(3063), - [anon_sym_requires] = ACTIONS(3063), - [sym_this] = ACTIONS(3063), + [699] = { + [sym_identifier] = ACTIONS(3051), + [aux_sym_preproc_include_token1] = ACTIONS(3051), + [aux_sym_preproc_def_token1] = ACTIONS(3051), + [aux_sym_preproc_if_token1] = ACTIONS(3051), + [aux_sym_preproc_if_token2] = ACTIONS(3051), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3051), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3051), + [sym_preproc_directive] = ACTIONS(3051), + [anon_sym_LPAREN2] = ACTIONS(3053), + [anon_sym_BANG] = ACTIONS(3053), + [anon_sym_TILDE] = ACTIONS(3053), + [anon_sym_DASH] = ACTIONS(3051), + [anon_sym_PLUS] = ACTIONS(3051), + [anon_sym_STAR] = ACTIONS(3053), + [anon_sym_AMP_AMP] = ACTIONS(3053), + [anon_sym_AMP] = ACTIONS(3051), + [anon_sym_SEMI] = ACTIONS(3053), + [anon_sym___extension__] = ACTIONS(3051), + [anon_sym_typedef] = ACTIONS(3051), + [anon_sym_virtual] = ACTIONS(3051), + [anon_sym_extern] = ACTIONS(3051), + [anon_sym___attribute__] = ACTIONS(3051), + [anon_sym___attribute] = ACTIONS(3051), + [anon_sym_using] = ACTIONS(3051), + [anon_sym_COLON_COLON] = ACTIONS(3053), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3053), + [anon_sym___declspec] = ACTIONS(3051), + [anon_sym___based] = ACTIONS(3051), + [anon_sym___cdecl] = ACTIONS(3051), + [anon_sym___clrcall] = ACTIONS(3051), + [anon_sym___stdcall] = ACTIONS(3051), + [anon_sym___fastcall] = ACTIONS(3051), + [anon_sym___thiscall] = ACTIONS(3051), + [anon_sym___vectorcall] = ACTIONS(3051), + [anon_sym_LBRACE] = ACTIONS(3053), + [anon_sym_signed] = ACTIONS(3051), + [anon_sym_unsigned] = ACTIONS(3051), + [anon_sym_long] = ACTIONS(3051), + [anon_sym_short] = ACTIONS(3051), + [anon_sym_LBRACK] = ACTIONS(3051), + [anon_sym_static] = ACTIONS(3051), + [anon_sym_register] = ACTIONS(3051), + [anon_sym_inline] = ACTIONS(3051), + [anon_sym___inline] = ACTIONS(3051), + [anon_sym___inline__] = ACTIONS(3051), + [anon_sym___forceinline] = ACTIONS(3051), + [anon_sym_thread_local] = ACTIONS(3051), + [anon_sym___thread] = ACTIONS(3051), + [anon_sym_const] = ACTIONS(3051), + [anon_sym_constexpr] = ACTIONS(3051), + [anon_sym_volatile] = ACTIONS(3051), + [anon_sym_restrict] = ACTIONS(3051), + [anon_sym___restrict__] = ACTIONS(3051), + [anon_sym__Atomic] = ACTIONS(3051), + [anon_sym__Noreturn] = ACTIONS(3051), + [anon_sym_noreturn] = ACTIONS(3051), + [anon_sym__Nonnull] = ACTIONS(3051), + [anon_sym_mutable] = ACTIONS(3051), + [anon_sym_constinit] = ACTIONS(3051), + [anon_sym_consteval] = ACTIONS(3051), + [anon_sym_alignas] = ACTIONS(3051), + [anon_sym__Alignas] = ACTIONS(3051), + [sym_primitive_type] = ACTIONS(3051), + [anon_sym_enum] = ACTIONS(3051), + [anon_sym_class] = ACTIONS(3051), + [anon_sym_struct] = ACTIONS(3051), + [anon_sym_union] = ACTIONS(3051), + [anon_sym_if] = ACTIONS(3051), + [anon_sym_switch] = ACTIONS(3051), + [anon_sym_case] = ACTIONS(3051), + [anon_sym_default] = ACTIONS(3051), + [anon_sym_while] = ACTIONS(3051), + [anon_sym_do] = ACTIONS(3051), + [anon_sym_for] = ACTIONS(3051), + [anon_sym_return] = ACTIONS(3051), + [anon_sym_break] = ACTIONS(3051), + [anon_sym_continue] = ACTIONS(3051), + [anon_sym_goto] = ACTIONS(3051), + [anon_sym___try] = ACTIONS(3051), + [anon_sym___leave] = ACTIONS(3051), + [anon_sym_not] = ACTIONS(3051), + [anon_sym_compl] = ACTIONS(3051), + [anon_sym_DASH_DASH] = ACTIONS(3053), + [anon_sym_PLUS_PLUS] = ACTIONS(3053), + [anon_sym_sizeof] = ACTIONS(3051), + [anon_sym___alignof__] = ACTIONS(3051), + [anon_sym___alignof] = ACTIONS(3051), + [anon_sym__alignof] = ACTIONS(3051), + [anon_sym_alignof] = ACTIONS(3051), + [anon_sym__Alignof] = ACTIONS(3051), + [anon_sym_offsetof] = ACTIONS(3051), + [anon_sym__Generic] = ACTIONS(3051), + [anon_sym_asm] = ACTIONS(3051), + [anon_sym___asm__] = ACTIONS(3051), + [anon_sym___asm] = ACTIONS(3051), + [sym_number_literal] = ACTIONS(3053), + [anon_sym_L_SQUOTE] = ACTIONS(3053), + [anon_sym_u_SQUOTE] = ACTIONS(3053), + [anon_sym_U_SQUOTE] = ACTIONS(3053), + [anon_sym_u8_SQUOTE] = ACTIONS(3053), + [anon_sym_SQUOTE] = ACTIONS(3053), + [anon_sym_L_DQUOTE] = ACTIONS(3053), + [anon_sym_u_DQUOTE] = ACTIONS(3053), + [anon_sym_U_DQUOTE] = ACTIONS(3053), + [anon_sym_u8_DQUOTE] = ACTIONS(3053), + [anon_sym_DQUOTE] = ACTIONS(3053), + [sym_true] = ACTIONS(3051), + [sym_false] = ACTIONS(3051), + [anon_sym_NULL] = ACTIONS(3051), + [anon_sym_nullptr] = ACTIONS(3051), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3051), + [anon_sym_decltype] = ACTIONS(3051), + [anon_sym_explicit] = ACTIONS(3051), + [anon_sym_typename] = ACTIONS(3051), + [anon_sym_template] = ACTIONS(3051), + [anon_sym_operator] = ACTIONS(3051), + [anon_sym_try] = ACTIONS(3051), + [anon_sym_delete] = ACTIONS(3051), + [anon_sym_throw] = ACTIONS(3051), + [anon_sym_namespace] = ACTIONS(3051), + [anon_sym_static_assert] = ACTIONS(3051), + [anon_sym_concept] = ACTIONS(3051), + [anon_sym_co_return] = ACTIONS(3051), + [anon_sym_co_yield] = ACTIONS(3051), + [anon_sym_R_DQUOTE] = ACTIONS(3053), + [anon_sym_LR_DQUOTE] = ACTIONS(3053), + [anon_sym_uR_DQUOTE] = ACTIONS(3053), + [anon_sym_UR_DQUOTE] = ACTIONS(3053), + [anon_sym_u8R_DQUOTE] = ACTIONS(3053), + [anon_sym_co_await] = ACTIONS(3051), + [anon_sym_new] = ACTIONS(3051), + [anon_sym_requires] = ACTIONS(3051), + [sym_this] = ACTIONS(3051), }, - [694] = { + [700] = { [sym_identifier] = ACTIONS(3075), [aux_sym_preproc_include_token1] = ACTIONS(3075), [aux_sym_preproc_def_token1] = ACTIONS(3075), @@ -141594,415 +142737,823 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(3075), [sym_this] = ACTIONS(3075), }, - [695] = { - [sym_identifier] = ACTIONS(3309), - [aux_sym_preproc_include_token1] = ACTIONS(3309), - [aux_sym_preproc_def_token1] = ACTIONS(3309), - [aux_sym_preproc_if_token1] = ACTIONS(3309), - [aux_sym_preproc_if_token2] = ACTIONS(3309), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3309), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3309), - [sym_preproc_directive] = ACTIONS(3309), - [anon_sym_LPAREN2] = ACTIONS(3311), - [anon_sym_BANG] = ACTIONS(3311), - [anon_sym_TILDE] = ACTIONS(3311), - [anon_sym_DASH] = ACTIONS(3309), - [anon_sym_PLUS] = ACTIONS(3309), - [anon_sym_STAR] = ACTIONS(3311), - [anon_sym_AMP_AMP] = ACTIONS(3311), - [anon_sym_AMP] = ACTIONS(3309), - [anon_sym_SEMI] = ACTIONS(3311), - [anon_sym___extension__] = ACTIONS(3309), - [anon_sym_typedef] = ACTIONS(3309), - [anon_sym_virtual] = ACTIONS(3309), - [anon_sym_extern] = ACTIONS(3309), - [anon_sym___attribute__] = ACTIONS(3309), - [anon_sym___attribute] = ACTIONS(3309), - [anon_sym_using] = ACTIONS(3309), - [anon_sym_COLON_COLON] = ACTIONS(3311), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3311), - [anon_sym___declspec] = ACTIONS(3309), - [anon_sym___based] = ACTIONS(3309), - [anon_sym___cdecl] = ACTIONS(3309), - [anon_sym___clrcall] = ACTIONS(3309), - [anon_sym___stdcall] = ACTIONS(3309), - [anon_sym___fastcall] = ACTIONS(3309), - [anon_sym___thiscall] = ACTIONS(3309), - [anon_sym___vectorcall] = ACTIONS(3309), - [anon_sym_LBRACE] = ACTIONS(3311), - [anon_sym_signed] = ACTIONS(3309), - [anon_sym_unsigned] = ACTIONS(3309), - [anon_sym_long] = ACTIONS(3309), - [anon_sym_short] = ACTIONS(3309), - [anon_sym_LBRACK] = ACTIONS(3309), - [anon_sym_static] = ACTIONS(3309), - [anon_sym_register] = ACTIONS(3309), - [anon_sym_inline] = ACTIONS(3309), - [anon_sym___inline] = ACTIONS(3309), - [anon_sym___inline__] = ACTIONS(3309), - [anon_sym___forceinline] = ACTIONS(3309), - [anon_sym_thread_local] = ACTIONS(3309), - [anon_sym___thread] = ACTIONS(3309), - [anon_sym_const] = ACTIONS(3309), - [anon_sym_constexpr] = ACTIONS(3309), - [anon_sym_volatile] = ACTIONS(3309), - [anon_sym_restrict] = ACTIONS(3309), - [anon_sym___restrict__] = ACTIONS(3309), - [anon_sym__Atomic] = ACTIONS(3309), - [anon_sym__Noreturn] = ACTIONS(3309), - [anon_sym_noreturn] = ACTIONS(3309), - [anon_sym__Nonnull] = ACTIONS(3309), - [anon_sym_mutable] = ACTIONS(3309), - [anon_sym_constinit] = ACTIONS(3309), - [anon_sym_consteval] = ACTIONS(3309), - [anon_sym_alignas] = ACTIONS(3309), - [anon_sym__Alignas] = ACTIONS(3309), - [sym_primitive_type] = ACTIONS(3309), - [anon_sym_enum] = ACTIONS(3309), - [anon_sym_class] = ACTIONS(3309), - [anon_sym_struct] = ACTIONS(3309), - [anon_sym_union] = ACTIONS(3309), - [anon_sym_if] = ACTIONS(3309), - [anon_sym_switch] = ACTIONS(3309), - [anon_sym_case] = ACTIONS(3309), - [anon_sym_default] = ACTIONS(3309), - [anon_sym_while] = ACTIONS(3309), - [anon_sym_do] = ACTIONS(3309), - [anon_sym_for] = ACTIONS(3309), - [anon_sym_return] = ACTIONS(3309), - [anon_sym_break] = ACTIONS(3309), - [anon_sym_continue] = ACTIONS(3309), - [anon_sym_goto] = ACTIONS(3309), - [anon_sym___try] = ACTIONS(3309), - [anon_sym___leave] = ACTIONS(3309), - [anon_sym_not] = ACTIONS(3309), - [anon_sym_compl] = ACTIONS(3309), - [anon_sym_DASH_DASH] = ACTIONS(3311), - [anon_sym_PLUS_PLUS] = ACTIONS(3311), - [anon_sym_sizeof] = ACTIONS(3309), - [anon_sym___alignof__] = ACTIONS(3309), - [anon_sym___alignof] = ACTIONS(3309), - [anon_sym__alignof] = ACTIONS(3309), - [anon_sym_alignof] = ACTIONS(3309), - [anon_sym__Alignof] = ACTIONS(3309), - [anon_sym_offsetof] = ACTIONS(3309), - [anon_sym__Generic] = ACTIONS(3309), - [anon_sym_asm] = ACTIONS(3309), - [anon_sym___asm__] = ACTIONS(3309), - [anon_sym___asm] = ACTIONS(3309), - [sym_number_literal] = ACTIONS(3311), - [anon_sym_L_SQUOTE] = ACTIONS(3311), - [anon_sym_u_SQUOTE] = ACTIONS(3311), - [anon_sym_U_SQUOTE] = ACTIONS(3311), - [anon_sym_u8_SQUOTE] = ACTIONS(3311), - [anon_sym_SQUOTE] = ACTIONS(3311), - [anon_sym_L_DQUOTE] = ACTIONS(3311), - [anon_sym_u_DQUOTE] = ACTIONS(3311), - [anon_sym_U_DQUOTE] = ACTIONS(3311), - [anon_sym_u8_DQUOTE] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(3311), - [sym_true] = ACTIONS(3309), - [sym_false] = ACTIONS(3309), - [anon_sym_NULL] = ACTIONS(3309), - [anon_sym_nullptr] = ACTIONS(3309), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3309), - [anon_sym_decltype] = ACTIONS(3309), - [anon_sym_explicit] = ACTIONS(3309), - [anon_sym_typename] = ACTIONS(3309), - [anon_sym_template] = ACTIONS(3309), - [anon_sym_operator] = ACTIONS(3309), - [anon_sym_try] = ACTIONS(3309), - [anon_sym_delete] = ACTIONS(3309), - [anon_sym_throw] = ACTIONS(3309), - [anon_sym_namespace] = ACTIONS(3309), - [anon_sym_static_assert] = ACTIONS(3309), - [anon_sym_concept] = ACTIONS(3309), - [anon_sym_co_return] = ACTIONS(3309), - [anon_sym_co_yield] = ACTIONS(3309), - [anon_sym_R_DQUOTE] = ACTIONS(3311), - [anon_sym_LR_DQUOTE] = ACTIONS(3311), - [anon_sym_uR_DQUOTE] = ACTIONS(3311), - [anon_sym_UR_DQUOTE] = ACTIONS(3311), - [anon_sym_u8R_DQUOTE] = ACTIONS(3311), - [anon_sym_co_await] = ACTIONS(3309), - [anon_sym_new] = ACTIONS(3309), - [anon_sym_requires] = ACTIONS(3309), - [sym_this] = ACTIONS(3309), + [701] = { + [sym_identifier] = ACTIONS(3075), + [aux_sym_preproc_include_token1] = ACTIONS(3075), + [aux_sym_preproc_def_token1] = ACTIONS(3075), + [aux_sym_preproc_if_token1] = ACTIONS(3075), + [aux_sym_preproc_if_token2] = ACTIONS(3075), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3075), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3075), + [sym_preproc_directive] = ACTIONS(3075), + [anon_sym_LPAREN2] = ACTIONS(3077), + [anon_sym_BANG] = ACTIONS(3077), + [anon_sym_TILDE] = ACTIONS(3077), + [anon_sym_DASH] = ACTIONS(3075), + [anon_sym_PLUS] = ACTIONS(3075), + [anon_sym_STAR] = ACTIONS(3077), + [anon_sym_AMP_AMP] = ACTIONS(3077), + [anon_sym_AMP] = ACTIONS(3075), + [anon_sym_SEMI] = ACTIONS(3077), + [anon_sym___extension__] = ACTIONS(3075), + [anon_sym_typedef] = ACTIONS(3075), + [anon_sym_virtual] = ACTIONS(3075), + [anon_sym_extern] = ACTIONS(3075), + [anon_sym___attribute__] = ACTIONS(3075), + [anon_sym___attribute] = ACTIONS(3075), + [anon_sym_using] = ACTIONS(3075), + [anon_sym_COLON_COLON] = ACTIONS(3077), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3077), + [anon_sym___declspec] = ACTIONS(3075), + [anon_sym___based] = ACTIONS(3075), + [anon_sym___cdecl] = ACTIONS(3075), + [anon_sym___clrcall] = ACTIONS(3075), + [anon_sym___stdcall] = ACTIONS(3075), + [anon_sym___fastcall] = ACTIONS(3075), + [anon_sym___thiscall] = ACTIONS(3075), + [anon_sym___vectorcall] = ACTIONS(3075), + [anon_sym_LBRACE] = ACTIONS(3077), + [anon_sym_signed] = ACTIONS(3075), + [anon_sym_unsigned] = ACTIONS(3075), + [anon_sym_long] = ACTIONS(3075), + [anon_sym_short] = ACTIONS(3075), + [anon_sym_LBRACK] = ACTIONS(3075), + [anon_sym_static] = ACTIONS(3075), + [anon_sym_register] = ACTIONS(3075), + [anon_sym_inline] = ACTIONS(3075), + [anon_sym___inline] = ACTIONS(3075), + [anon_sym___inline__] = ACTIONS(3075), + [anon_sym___forceinline] = ACTIONS(3075), + [anon_sym_thread_local] = ACTIONS(3075), + [anon_sym___thread] = ACTIONS(3075), + [anon_sym_const] = ACTIONS(3075), + [anon_sym_constexpr] = ACTIONS(3075), + [anon_sym_volatile] = ACTIONS(3075), + [anon_sym_restrict] = ACTIONS(3075), + [anon_sym___restrict__] = ACTIONS(3075), + [anon_sym__Atomic] = ACTIONS(3075), + [anon_sym__Noreturn] = ACTIONS(3075), + [anon_sym_noreturn] = ACTIONS(3075), + [anon_sym__Nonnull] = ACTIONS(3075), + [anon_sym_mutable] = ACTIONS(3075), + [anon_sym_constinit] = ACTIONS(3075), + [anon_sym_consteval] = ACTIONS(3075), + [anon_sym_alignas] = ACTIONS(3075), + [anon_sym__Alignas] = ACTIONS(3075), + [sym_primitive_type] = ACTIONS(3075), + [anon_sym_enum] = ACTIONS(3075), + [anon_sym_class] = ACTIONS(3075), + [anon_sym_struct] = ACTIONS(3075), + [anon_sym_union] = ACTIONS(3075), + [anon_sym_if] = ACTIONS(3075), + [anon_sym_switch] = ACTIONS(3075), + [anon_sym_case] = ACTIONS(3075), + [anon_sym_default] = ACTIONS(3075), + [anon_sym_while] = ACTIONS(3075), + [anon_sym_do] = ACTIONS(3075), + [anon_sym_for] = ACTIONS(3075), + [anon_sym_return] = ACTIONS(3075), + [anon_sym_break] = ACTIONS(3075), + [anon_sym_continue] = ACTIONS(3075), + [anon_sym_goto] = ACTIONS(3075), + [anon_sym___try] = ACTIONS(3075), + [anon_sym___leave] = ACTIONS(3075), + [anon_sym_not] = ACTIONS(3075), + [anon_sym_compl] = ACTIONS(3075), + [anon_sym_DASH_DASH] = ACTIONS(3077), + [anon_sym_PLUS_PLUS] = ACTIONS(3077), + [anon_sym_sizeof] = ACTIONS(3075), + [anon_sym___alignof__] = ACTIONS(3075), + [anon_sym___alignof] = ACTIONS(3075), + [anon_sym__alignof] = ACTIONS(3075), + [anon_sym_alignof] = ACTIONS(3075), + [anon_sym__Alignof] = ACTIONS(3075), + [anon_sym_offsetof] = ACTIONS(3075), + [anon_sym__Generic] = ACTIONS(3075), + [anon_sym_asm] = ACTIONS(3075), + [anon_sym___asm__] = ACTIONS(3075), + [anon_sym___asm] = ACTIONS(3075), + [sym_number_literal] = ACTIONS(3077), + [anon_sym_L_SQUOTE] = ACTIONS(3077), + [anon_sym_u_SQUOTE] = ACTIONS(3077), + [anon_sym_U_SQUOTE] = ACTIONS(3077), + [anon_sym_u8_SQUOTE] = ACTIONS(3077), + [anon_sym_SQUOTE] = ACTIONS(3077), + [anon_sym_L_DQUOTE] = ACTIONS(3077), + [anon_sym_u_DQUOTE] = ACTIONS(3077), + [anon_sym_U_DQUOTE] = ACTIONS(3077), + [anon_sym_u8_DQUOTE] = ACTIONS(3077), + [anon_sym_DQUOTE] = ACTIONS(3077), + [sym_true] = ACTIONS(3075), + [sym_false] = ACTIONS(3075), + [anon_sym_NULL] = ACTIONS(3075), + [anon_sym_nullptr] = ACTIONS(3075), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3075), + [anon_sym_decltype] = ACTIONS(3075), + [anon_sym_explicit] = ACTIONS(3075), + [anon_sym_typename] = ACTIONS(3075), + [anon_sym_template] = ACTIONS(3075), + [anon_sym_operator] = ACTIONS(3075), + [anon_sym_try] = ACTIONS(3075), + [anon_sym_delete] = ACTIONS(3075), + [anon_sym_throw] = ACTIONS(3075), + [anon_sym_namespace] = ACTIONS(3075), + [anon_sym_static_assert] = ACTIONS(3075), + [anon_sym_concept] = ACTIONS(3075), + [anon_sym_co_return] = ACTIONS(3075), + [anon_sym_co_yield] = ACTIONS(3075), + [anon_sym_R_DQUOTE] = ACTIONS(3077), + [anon_sym_LR_DQUOTE] = ACTIONS(3077), + [anon_sym_uR_DQUOTE] = ACTIONS(3077), + [anon_sym_UR_DQUOTE] = ACTIONS(3077), + [anon_sym_u8R_DQUOTE] = ACTIONS(3077), + [anon_sym_co_await] = ACTIONS(3075), + [anon_sym_new] = ACTIONS(3075), + [anon_sym_requires] = ACTIONS(3075), + [sym_this] = ACTIONS(3075), }, - [696] = { - [sym_identifier] = ACTIONS(2775), - [aux_sym_preproc_include_token1] = ACTIONS(2775), - [aux_sym_preproc_def_token1] = ACTIONS(2775), - [aux_sym_preproc_if_token1] = ACTIONS(2775), - [aux_sym_preproc_if_token2] = ACTIONS(2775), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2775), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2775), - [sym_preproc_directive] = ACTIONS(2775), - [anon_sym_LPAREN2] = ACTIONS(2777), - [anon_sym_BANG] = ACTIONS(2777), - [anon_sym_TILDE] = ACTIONS(2777), - [anon_sym_DASH] = ACTIONS(2775), - [anon_sym_PLUS] = ACTIONS(2775), - [anon_sym_STAR] = ACTIONS(2777), - [anon_sym_AMP_AMP] = ACTIONS(2777), - [anon_sym_AMP] = ACTIONS(2775), - [anon_sym_SEMI] = ACTIONS(2777), - [anon_sym___extension__] = ACTIONS(2775), - [anon_sym_typedef] = ACTIONS(2775), - [anon_sym_virtual] = ACTIONS(2775), - [anon_sym_extern] = ACTIONS(2775), - [anon_sym___attribute__] = ACTIONS(2775), - [anon_sym___attribute] = ACTIONS(2775), - [anon_sym_using] = ACTIONS(2775), - [anon_sym_COLON_COLON] = ACTIONS(2777), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2777), - [anon_sym___declspec] = ACTIONS(2775), - [anon_sym___based] = ACTIONS(2775), - [anon_sym___cdecl] = ACTIONS(2775), - [anon_sym___clrcall] = ACTIONS(2775), - [anon_sym___stdcall] = ACTIONS(2775), - [anon_sym___fastcall] = ACTIONS(2775), - [anon_sym___thiscall] = ACTIONS(2775), - [anon_sym___vectorcall] = ACTIONS(2775), - [anon_sym_LBRACE] = ACTIONS(2777), - [anon_sym_signed] = ACTIONS(2775), - [anon_sym_unsigned] = ACTIONS(2775), - [anon_sym_long] = ACTIONS(2775), - [anon_sym_short] = ACTIONS(2775), - [anon_sym_LBRACK] = ACTIONS(2775), - [anon_sym_static] = ACTIONS(2775), - [anon_sym_register] = ACTIONS(2775), - [anon_sym_inline] = ACTIONS(2775), - [anon_sym___inline] = ACTIONS(2775), - [anon_sym___inline__] = ACTIONS(2775), - [anon_sym___forceinline] = ACTIONS(2775), - [anon_sym_thread_local] = ACTIONS(2775), - [anon_sym___thread] = ACTIONS(2775), - [anon_sym_const] = ACTIONS(2775), - [anon_sym_constexpr] = ACTIONS(2775), - [anon_sym_volatile] = ACTIONS(2775), - [anon_sym_restrict] = ACTIONS(2775), - [anon_sym___restrict__] = ACTIONS(2775), - [anon_sym__Atomic] = ACTIONS(2775), - [anon_sym__Noreturn] = ACTIONS(2775), - [anon_sym_noreturn] = ACTIONS(2775), - [anon_sym__Nonnull] = ACTIONS(2775), - [anon_sym_mutable] = ACTIONS(2775), - [anon_sym_constinit] = ACTIONS(2775), - [anon_sym_consteval] = ACTIONS(2775), - [anon_sym_alignas] = ACTIONS(2775), - [anon_sym__Alignas] = ACTIONS(2775), - [sym_primitive_type] = ACTIONS(2775), - [anon_sym_enum] = ACTIONS(2775), - [anon_sym_class] = ACTIONS(2775), - [anon_sym_struct] = ACTIONS(2775), - [anon_sym_union] = ACTIONS(2775), - [anon_sym_if] = ACTIONS(2775), - [anon_sym_switch] = ACTIONS(2775), - [anon_sym_case] = ACTIONS(2775), - [anon_sym_default] = ACTIONS(2775), - [anon_sym_while] = ACTIONS(2775), - [anon_sym_do] = ACTIONS(2775), - [anon_sym_for] = ACTIONS(2775), - [anon_sym_return] = ACTIONS(2775), - [anon_sym_break] = ACTIONS(2775), - [anon_sym_continue] = ACTIONS(2775), - [anon_sym_goto] = ACTIONS(2775), - [anon_sym___try] = ACTIONS(2775), - [anon_sym___leave] = ACTIONS(2775), - [anon_sym_not] = ACTIONS(2775), - [anon_sym_compl] = ACTIONS(2775), - [anon_sym_DASH_DASH] = ACTIONS(2777), - [anon_sym_PLUS_PLUS] = ACTIONS(2777), - [anon_sym_sizeof] = ACTIONS(2775), - [anon_sym___alignof__] = ACTIONS(2775), - [anon_sym___alignof] = ACTIONS(2775), - [anon_sym__alignof] = ACTIONS(2775), - [anon_sym_alignof] = ACTIONS(2775), - [anon_sym__Alignof] = ACTIONS(2775), - [anon_sym_offsetof] = ACTIONS(2775), - [anon_sym__Generic] = ACTIONS(2775), - [anon_sym_asm] = ACTIONS(2775), - [anon_sym___asm__] = ACTIONS(2775), - [anon_sym___asm] = ACTIONS(2775), - [sym_number_literal] = ACTIONS(2777), - [anon_sym_L_SQUOTE] = ACTIONS(2777), - [anon_sym_u_SQUOTE] = ACTIONS(2777), - [anon_sym_U_SQUOTE] = ACTIONS(2777), - [anon_sym_u8_SQUOTE] = ACTIONS(2777), - [anon_sym_SQUOTE] = ACTIONS(2777), - [anon_sym_L_DQUOTE] = ACTIONS(2777), - [anon_sym_u_DQUOTE] = ACTIONS(2777), - [anon_sym_U_DQUOTE] = ACTIONS(2777), - [anon_sym_u8_DQUOTE] = ACTIONS(2777), - [anon_sym_DQUOTE] = ACTIONS(2777), - [sym_true] = ACTIONS(2775), - [sym_false] = ACTIONS(2775), - [anon_sym_NULL] = ACTIONS(2775), - [anon_sym_nullptr] = ACTIONS(2775), + [702] = { + [sym_identifier] = ACTIONS(3087), + [aux_sym_preproc_include_token1] = ACTIONS(3087), + [aux_sym_preproc_def_token1] = ACTIONS(3087), + [aux_sym_preproc_if_token1] = ACTIONS(3087), + [aux_sym_preproc_if_token2] = ACTIONS(3087), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3087), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3087), + [sym_preproc_directive] = ACTIONS(3087), + [anon_sym_LPAREN2] = ACTIONS(3089), + [anon_sym_BANG] = ACTIONS(3089), + [anon_sym_TILDE] = ACTIONS(3089), + [anon_sym_DASH] = ACTIONS(3087), + [anon_sym_PLUS] = ACTIONS(3087), + [anon_sym_STAR] = ACTIONS(3089), + [anon_sym_AMP_AMP] = ACTIONS(3089), + [anon_sym_AMP] = ACTIONS(3087), + [anon_sym_SEMI] = ACTIONS(3089), + [anon_sym___extension__] = ACTIONS(3087), + [anon_sym_typedef] = ACTIONS(3087), + [anon_sym_virtual] = ACTIONS(3087), + [anon_sym_extern] = ACTIONS(3087), + [anon_sym___attribute__] = ACTIONS(3087), + [anon_sym___attribute] = ACTIONS(3087), + [anon_sym_using] = ACTIONS(3087), + [anon_sym_COLON_COLON] = ACTIONS(3089), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3089), + [anon_sym___declspec] = ACTIONS(3087), + [anon_sym___based] = ACTIONS(3087), + [anon_sym___cdecl] = ACTIONS(3087), + [anon_sym___clrcall] = ACTIONS(3087), + [anon_sym___stdcall] = ACTIONS(3087), + [anon_sym___fastcall] = ACTIONS(3087), + [anon_sym___thiscall] = ACTIONS(3087), + [anon_sym___vectorcall] = ACTIONS(3087), + [anon_sym_LBRACE] = ACTIONS(3089), + [anon_sym_signed] = ACTIONS(3087), + [anon_sym_unsigned] = ACTIONS(3087), + [anon_sym_long] = ACTIONS(3087), + [anon_sym_short] = ACTIONS(3087), + [anon_sym_LBRACK] = ACTIONS(3087), + [anon_sym_static] = ACTIONS(3087), + [anon_sym_register] = ACTIONS(3087), + [anon_sym_inline] = ACTIONS(3087), + [anon_sym___inline] = ACTIONS(3087), + [anon_sym___inline__] = ACTIONS(3087), + [anon_sym___forceinline] = ACTIONS(3087), + [anon_sym_thread_local] = ACTIONS(3087), + [anon_sym___thread] = ACTIONS(3087), + [anon_sym_const] = ACTIONS(3087), + [anon_sym_constexpr] = ACTIONS(3087), + [anon_sym_volatile] = ACTIONS(3087), + [anon_sym_restrict] = ACTIONS(3087), + [anon_sym___restrict__] = ACTIONS(3087), + [anon_sym__Atomic] = ACTIONS(3087), + [anon_sym__Noreturn] = ACTIONS(3087), + [anon_sym_noreturn] = ACTIONS(3087), + [anon_sym__Nonnull] = ACTIONS(3087), + [anon_sym_mutable] = ACTIONS(3087), + [anon_sym_constinit] = ACTIONS(3087), + [anon_sym_consteval] = ACTIONS(3087), + [anon_sym_alignas] = ACTIONS(3087), + [anon_sym__Alignas] = ACTIONS(3087), + [sym_primitive_type] = ACTIONS(3087), + [anon_sym_enum] = ACTIONS(3087), + [anon_sym_class] = ACTIONS(3087), + [anon_sym_struct] = ACTIONS(3087), + [anon_sym_union] = ACTIONS(3087), + [anon_sym_if] = ACTIONS(3087), + [anon_sym_switch] = ACTIONS(3087), + [anon_sym_case] = ACTIONS(3087), + [anon_sym_default] = ACTIONS(3087), + [anon_sym_while] = ACTIONS(3087), + [anon_sym_do] = ACTIONS(3087), + [anon_sym_for] = ACTIONS(3087), + [anon_sym_return] = ACTIONS(3087), + [anon_sym_break] = ACTIONS(3087), + [anon_sym_continue] = ACTIONS(3087), + [anon_sym_goto] = ACTIONS(3087), + [anon_sym___try] = ACTIONS(3087), + [anon_sym___leave] = ACTIONS(3087), + [anon_sym_not] = ACTIONS(3087), + [anon_sym_compl] = ACTIONS(3087), + [anon_sym_DASH_DASH] = ACTIONS(3089), + [anon_sym_PLUS_PLUS] = ACTIONS(3089), + [anon_sym_sizeof] = ACTIONS(3087), + [anon_sym___alignof__] = ACTIONS(3087), + [anon_sym___alignof] = ACTIONS(3087), + [anon_sym__alignof] = ACTIONS(3087), + [anon_sym_alignof] = ACTIONS(3087), + [anon_sym__Alignof] = ACTIONS(3087), + [anon_sym_offsetof] = ACTIONS(3087), + [anon_sym__Generic] = ACTIONS(3087), + [anon_sym_asm] = ACTIONS(3087), + [anon_sym___asm__] = ACTIONS(3087), + [anon_sym___asm] = ACTIONS(3087), + [sym_number_literal] = ACTIONS(3089), + [anon_sym_L_SQUOTE] = ACTIONS(3089), + [anon_sym_u_SQUOTE] = ACTIONS(3089), + [anon_sym_U_SQUOTE] = ACTIONS(3089), + [anon_sym_u8_SQUOTE] = ACTIONS(3089), + [anon_sym_SQUOTE] = ACTIONS(3089), + [anon_sym_L_DQUOTE] = ACTIONS(3089), + [anon_sym_u_DQUOTE] = ACTIONS(3089), + [anon_sym_U_DQUOTE] = ACTIONS(3089), + [anon_sym_u8_DQUOTE] = ACTIONS(3089), + [anon_sym_DQUOTE] = ACTIONS(3089), + [sym_true] = ACTIONS(3087), + [sym_false] = ACTIONS(3087), + [anon_sym_NULL] = ACTIONS(3087), + [anon_sym_nullptr] = ACTIONS(3087), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3087), + [anon_sym_decltype] = ACTIONS(3087), + [anon_sym_explicit] = ACTIONS(3087), + [anon_sym_typename] = ACTIONS(3087), + [anon_sym_template] = ACTIONS(3087), + [anon_sym_operator] = ACTIONS(3087), + [anon_sym_try] = ACTIONS(3087), + [anon_sym_delete] = ACTIONS(3087), + [anon_sym_throw] = ACTIONS(3087), + [anon_sym_namespace] = ACTIONS(3087), + [anon_sym_static_assert] = ACTIONS(3087), + [anon_sym_concept] = ACTIONS(3087), + [anon_sym_co_return] = ACTIONS(3087), + [anon_sym_co_yield] = ACTIONS(3087), + [anon_sym_R_DQUOTE] = ACTIONS(3089), + [anon_sym_LR_DQUOTE] = ACTIONS(3089), + [anon_sym_uR_DQUOTE] = ACTIONS(3089), + [anon_sym_UR_DQUOTE] = ACTIONS(3089), + [anon_sym_u8R_DQUOTE] = ACTIONS(3089), + [anon_sym_co_await] = ACTIONS(3087), + [anon_sym_new] = ACTIONS(3087), + [anon_sym_requires] = ACTIONS(3087), + [sym_this] = ACTIONS(3087), + }, + [703] = { + [sym_identifier] = ACTIONS(2919), + [aux_sym_preproc_include_token1] = ACTIONS(2919), + [aux_sym_preproc_def_token1] = ACTIONS(2919), + [aux_sym_preproc_if_token1] = ACTIONS(2919), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2919), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2919), + [sym_preproc_directive] = ACTIONS(2919), + [anon_sym_LPAREN2] = ACTIONS(2921), + [anon_sym_BANG] = ACTIONS(2921), + [anon_sym_TILDE] = ACTIONS(2921), + [anon_sym_DASH] = ACTIONS(2919), + [anon_sym_PLUS] = ACTIONS(2919), + [anon_sym_STAR] = ACTIONS(2921), + [anon_sym_AMP_AMP] = ACTIONS(2921), + [anon_sym_AMP] = ACTIONS(2919), + [anon_sym_SEMI] = ACTIONS(2921), + [anon_sym___extension__] = ACTIONS(2919), + [anon_sym_typedef] = ACTIONS(2919), + [anon_sym_virtual] = ACTIONS(2919), + [anon_sym_extern] = ACTIONS(2919), + [anon_sym___attribute__] = ACTIONS(2919), + [anon_sym___attribute] = ACTIONS(2919), + [anon_sym_using] = ACTIONS(2919), + [anon_sym_COLON_COLON] = ACTIONS(2921), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2921), + [anon_sym___declspec] = ACTIONS(2919), + [anon_sym___based] = ACTIONS(2919), + [anon_sym___cdecl] = ACTIONS(2919), + [anon_sym___clrcall] = ACTIONS(2919), + [anon_sym___stdcall] = ACTIONS(2919), + [anon_sym___fastcall] = ACTIONS(2919), + [anon_sym___thiscall] = ACTIONS(2919), + [anon_sym___vectorcall] = ACTIONS(2919), + [anon_sym_LBRACE] = ACTIONS(2921), + [anon_sym_RBRACE] = ACTIONS(2921), + [anon_sym_signed] = ACTIONS(2919), + [anon_sym_unsigned] = ACTIONS(2919), + [anon_sym_long] = ACTIONS(2919), + [anon_sym_short] = ACTIONS(2919), + [anon_sym_LBRACK] = ACTIONS(2919), + [anon_sym_static] = ACTIONS(2919), + [anon_sym_register] = ACTIONS(2919), + [anon_sym_inline] = ACTIONS(2919), + [anon_sym___inline] = ACTIONS(2919), + [anon_sym___inline__] = ACTIONS(2919), + [anon_sym___forceinline] = ACTIONS(2919), + [anon_sym_thread_local] = ACTIONS(2919), + [anon_sym___thread] = ACTIONS(2919), + [anon_sym_const] = ACTIONS(2919), + [anon_sym_constexpr] = ACTIONS(2919), + [anon_sym_volatile] = ACTIONS(2919), + [anon_sym_restrict] = ACTIONS(2919), + [anon_sym___restrict__] = ACTIONS(2919), + [anon_sym__Atomic] = ACTIONS(2919), + [anon_sym__Noreturn] = ACTIONS(2919), + [anon_sym_noreturn] = ACTIONS(2919), + [anon_sym__Nonnull] = ACTIONS(2919), + [anon_sym_mutable] = ACTIONS(2919), + [anon_sym_constinit] = ACTIONS(2919), + [anon_sym_consteval] = ACTIONS(2919), + [anon_sym_alignas] = ACTIONS(2919), + [anon_sym__Alignas] = ACTIONS(2919), + [sym_primitive_type] = ACTIONS(2919), + [anon_sym_enum] = ACTIONS(2919), + [anon_sym_class] = ACTIONS(2919), + [anon_sym_struct] = ACTIONS(2919), + [anon_sym_union] = ACTIONS(2919), + [anon_sym_if] = ACTIONS(2919), + [anon_sym_switch] = ACTIONS(2919), + [anon_sym_case] = ACTIONS(2919), + [anon_sym_default] = ACTIONS(2919), + [anon_sym_while] = ACTIONS(2919), + [anon_sym_do] = ACTIONS(2919), + [anon_sym_for] = ACTIONS(2919), + [anon_sym_return] = ACTIONS(2919), + [anon_sym_break] = ACTIONS(2919), + [anon_sym_continue] = ACTIONS(2919), + [anon_sym_goto] = ACTIONS(2919), + [anon_sym___try] = ACTIONS(2919), + [anon_sym___leave] = ACTIONS(2919), + [anon_sym_not] = ACTIONS(2919), + [anon_sym_compl] = ACTIONS(2919), + [anon_sym_DASH_DASH] = ACTIONS(2921), + [anon_sym_PLUS_PLUS] = ACTIONS(2921), + [anon_sym_sizeof] = ACTIONS(2919), + [anon_sym___alignof__] = ACTIONS(2919), + [anon_sym___alignof] = ACTIONS(2919), + [anon_sym__alignof] = ACTIONS(2919), + [anon_sym_alignof] = ACTIONS(2919), + [anon_sym__Alignof] = ACTIONS(2919), + [anon_sym_offsetof] = ACTIONS(2919), + [anon_sym__Generic] = ACTIONS(2919), + [anon_sym_asm] = ACTIONS(2919), + [anon_sym___asm__] = ACTIONS(2919), + [anon_sym___asm] = ACTIONS(2919), + [sym_number_literal] = ACTIONS(2921), + [anon_sym_L_SQUOTE] = ACTIONS(2921), + [anon_sym_u_SQUOTE] = ACTIONS(2921), + [anon_sym_U_SQUOTE] = ACTIONS(2921), + [anon_sym_u8_SQUOTE] = ACTIONS(2921), + [anon_sym_SQUOTE] = ACTIONS(2921), + [anon_sym_L_DQUOTE] = ACTIONS(2921), + [anon_sym_u_DQUOTE] = ACTIONS(2921), + [anon_sym_U_DQUOTE] = ACTIONS(2921), + [anon_sym_u8_DQUOTE] = ACTIONS(2921), + [anon_sym_DQUOTE] = ACTIONS(2921), + [sym_true] = ACTIONS(2919), + [sym_false] = ACTIONS(2919), + [anon_sym_NULL] = ACTIONS(2919), + [anon_sym_nullptr] = ACTIONS(2919), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2775), - [anon_sym_decltype] = ACTIONS(2775), - [anon_sym_explicit] = ACTIONS(2775), - [anon_sym_typename] = ACTIONS(2775), - [anon_sym_template] = ACTIONS(2775), - [anon_sym_operator] = ACTIONS(2775), - [anon_sym_try] = ACTIONS(2775), - [anon_sym_delete] = ACTIONS(2775), - [anon_sym_throw] = ACTIONS(2775), - [anon_sym_namespace] = ACTIONS(2775), - [anon_sym_static_assert] = ACTIONS(2775), - [anon_sym_concept] = ACTIONS(2775), - [anon_sym_co_return] = ACTIONS(2775), - [anon_sym_co_yield] = ACTIONS(2775), - [anon_sym_R_DQUOTE] = ACTIONS(2777), - [anon_sym_LR_DQUOTE] = ACTIONS(2777), - [anon_sym_uR_DQUOTE] = ACTIONS(2777), - [anon_sym_UR_DQUOTE] = ACTIONS(2777), - [anon_sym_u8R_DQUOTE] = ACTIONS(2777), - [anon_sym_co_await] = ACTIONS(2775), - [anon_sym_new] = ACTIONS(2775), - [anon_sym_requires] = ACTIONS(2775), - [sym_this] = ACTIONS(2775), + [sym_auto] = ACTIONS(2919), + [anon_sym_decltype] = ACTIONS(2919), + [anon_sym_explicit] = ACTIONS(2919), + [anon_sym_typename] = ACTIONS(2919), + [anon_sym_template] = ACTIONS(2919), + [anon_sym_operator] = ACTIONS(2919), + [anon_sym_try] = ACTIONS(2919), + [anon_sym_delete] = ACTIONS(2919), + [anon_sym_throw] = ACTIONS(2919), + [anon_sym_namespace] = ACTIONS(2919), + [anon_sym_static_assert] = ACTIONS(2919), + [anon_sym_concept] = ACTIONS(2919), + [anon_sym_co_return] = ACTIONS(2919), + [anon_sym_co_yield] = ACTIONS(2919), + [anon_sym_R_DQUOTE] = ACTIONS(2921), + [anon_sym_LR_DQUOTE] = ACTIONS(2921), + [anon_sym_uR_DQUOTE] = ACTIONS(2921), + [anon_sym_UR_DQUOTE] = ACTIONS(2921), + [anon_sym_u8R_DQUOTE] = ACTIONS(2921), + [anon_sym_co_await] = ACTIONS(2919), + [anon_sym_new] = ACTIONS(2919), + [anon_sym_requires] = ACTIONS(2919), + [sym_this] = ACTIONS(2919), }, - [697] = { - [sym_identifier] = ACTIONS(2899), - [aux_sym_preproc_include_token1] = ACTIONS(2899), - [aux_sym_preproc_def_token1] = ACTIONS(2899), - [aux_sym_preproc_if_token1] = ACTIONS(2899), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2899), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2899), - [sym_preproc_directive] = ACTIONS(2899), - [anon_sym_LPAREN2] = ACTIONS(2901), - [anon_sym_BANG] = ACTIONS(2901), - [anon_sym_TILDE] = ACTIONS(2901), - [anon_sym_DASH] = ACTIONS(2899), - [anon_sym_PLUS] = ACTIONS(2899), - [anon_sym_STAR] = ACTIONS(2901), - [anon_sym_AMP_AMP] = ACTIONS(2901), - [anon_sym_AMP] = ACTIONS(2899), - [anon_sym_SEMI] = ACTIONS(2901), - [anon_sym___extension__] = ACTIONS(2899), - [anon_sym_typedef] = ACTIONS(2899), - [anon_sym_virtual] = ACTIONS(2899), - [anon_sym_extern] = ACTIONS(2899), - [anon_sym___attribute__] = ACTIONS(2899), - [anon_sym___attribute] = ACTIONS(2899), - [anon_sym_using] = ACTIONS(2899), - [anon_sym_COLON_COLON] = ACTIONS(2901), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2901), - [anon_sym___declspec] = ACTIONS(2899), - [anon_sym___based] = ACTIONS(2899), - [anon_sym___cdecl] = ACTIONS(2899), - [anon_sym___clrcall] = ACTIONS(2899), - [anon_sym___stdcall] = ACTIONS(2899), - [anon_sym___fastcall] = ACTIONS(2899), - [anon_sym___thiscall] = ACTIONS(2899), - [anon_sym___vectorcall] = ACTIONS(2899), - [anon_sym_LBRACE] = ACTIONS(2901), - [anon_sym_RBRACE] = ACTIONS(2901), - [anon_sym_signed] = ACTIONS(2899), - [anon_sym_unsigned] = ACTIONS(2899), - [anon_sym_long] = ACTIONS(2899), - [anon_sym_short] = ACTIONS(2899), - [anon_sym_LBRACK] = ACTIONS(2899), - [anon_sym_static] = ACTIONS(2899), - [anon_sym_register] = ACTIONS(2899), - [anon_sym_inline] = ACTIONS(2899), - [anon_sym___inline] = ACTIONS(2899), - [anon_sym___inline__] = ACTIONS(2899), - [anon_sym___forceinline] = ACTIONS(2899), - [anon_sym_thread_local] = ACTIONS(2899), - [anon_sym___thread] = ACTIONS(2899), - [anon_sym_const] = ACTIONS(2899), - [anon_sym_constexpr] = ACTIONS(2899), - [anon_sym_volatile] = ACTIONS(2899), - [anon_sym_restrict] = ACTIONS(2899), - [anon_sym___restrict__] = ACTIONS(2899), - [anon_sym__Atomic] = ACTIONS(2899), - [anon_sym__Noreturn] = ACTIONS(2899), - [anon_sym_noreturn] = ACTIONS(2899), - [anon_sym__Nonnull] = ACTIONS(2899), - [anon_sym_mutable] = ACTIONS(2899), - [anon_sym_constinit] = ACTIONS(2899), - [anon_sym_consteval] = ACTIONS(2899), - [anon_sym_alignas] = ACTIONS(2899), - [anon_sym__Alignas] = ACTIONS(2899), - [sym_primitive_type] = ACTIONS(2899), - [anon_sym_enum] = ACTIONS(2899), - [anon_sym_class] = ACTIONS(2899), - [anon_sym_struct] = ACTIONS(2899), - [anon_sym_union] = ACTIONS(2899), - [anon_sym_if] = ACTIONS(2899), - [anon_sym_switch] = ACTIONS(2899), - [anon_sym_case] = ACTIONS(2899), - [anon_sym_default] = ACTIONS(2899), - [anon_sym_while] = ACTIONS(2899), - [anon_sym_do] = ACTIONS(2899), - [anon_sym_for] = ACTIONS(2899), - [anon_sym_return] = ACTIONS(2899), - [anon_sym_break] = ACTIONS(2899), - [anon_sym_continue] = ACTIONS(2899), - [anon_sym_goto] = ACTIONS(2899), - [anon_sym___try] = ACTIONS(2899), - [anon_sym___leave] = ACTIONS(2899), - [anon_sym_not] = ACTIONS(2899), - [anon_sym_compl] = ACTIONS(2899), - [anon_sym_DASH_DASH] = ACTIONS(2901), - [anon_sym_PLUS_PLUS] = ACTIONS(2901), - [anon_sym_sizeof] = ACTIONS(2899), - [anon_sym___alignof__] = ACTIONS(2899), - [anon_sym___alignof] = ACTIONS(2899), - [anon_sym__alignof] = ACTIONS(2899), - [anon_sym_alignof] = ACTIONS(2899), - [anon_sym__Alignof] = ACTIONS(2899), - [anon_sym_offsetof] = ACTIONS(2899), - [anon_sym__Generic] = ACTIONS(2899), - [anon_sym_asm] = ACTIONS(2899), - [anon_sym___asm__] = ACTIONS(2899), - [anon_sym___asm] = ACTIONS(2899), - [sym_number_literal] = ACTIONS(2901), - [anon_sym_L_SQUOTE] = ACTIONS(2901), - [anon_sym_u_SQUOTE] = ACTIONS(2901), - [anon_sym_U_SQUOTE] = ACTIONS(2901), - [anon_sym_u8_SQUOTE] = ACTIONS(2901), - [anon_sym_SQUOTE] = ACTIONS(2901), - [anon_sym_L_DQUOTE] = ACTIONS(2901), - [anon_sym_u_DQUOTE] = ACTIONS(2901), - [anon_sym_U_DQUOTE] = ACTIONS(2901), - [anon_sym_u8_DQUOTE] = ACTIONS(2901), - [anon_sym_DQUOTE] = ACTIONS(2901), - [sym_true] = ACTIONS(2899), - [sym_false] = ACTIONS(2899), - [anon_sym_NULL] = ACTIONS(2899), - [anon_sym_nullptr] = ACTIONS(2899), + [704] = { + [sym_identifier] = ACTIONS(2923), + [aux_sym_preproc_include_token1] = ACTIONS(2923), + [aux_sym_preproc_def_token1] = ACTIONS(2923), + [aux_sym_preproc_if_token1] = ACTIONS(2923), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2923), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2923), + [sym_preproc_directive] = ACTIONS(2923), + [anon_sym_LPAREN2] = ACTIONS(2925), + [anon_sym_BANG] = ACTIONS(2925), + [anon_sym_TILDE] = ACTIONS(2925), + [anon_sym_DASH] = ACTIONS(2923), + [anon_sym_PLUS] = ACTIONS(2923), + [anon_sym_STAR] = ACTIONS(2925), + [anon_sym_AMP_AMP] = ACTIONS(2925), + [anon_sym_AMP] = ACTIONS(2923), + [anon_sym_SEMI] = ACTIONS(2925), + [anon_sym___extension__] = ACTIONS(2923), + [anon_sym_typedef] = ACTIONS(2923), + [anon_sym_virtual] = ACTIONS(2923), + [anon_sym_extern] = ACTIONS(2923), + [anon_sym___attribute__] = ACTIONS(2923), + [anon_sym___attribute] = ACTIONS(2923), + [anon_sym_using] = ACTIONS(2923), + [anon_sym_COLON_COLON] = ACTIONS(2925), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2925), + [anon_sym___declspec] = ACTIONS(2923), + [anon_sym___based] = ACTIONS(2923), + [anon_sym___cdecl] = ACTIONS(2923), + [anon_sym___clrcall] = ACTIONS(2923), + [anon_sym___stdcall] = ACTIONS(2923), + [anon_sym___fastcall] = ACTIONS(2923), + [anon_sym___thiscall] = ACTIONS(2923), + [anon_sym___vectorcall] = ACTIONS(2923), + [anon_sym_LBRACE] = ACTIONS(2925), + [anon_sym_RBRACE] = ACTIONS(2925), + [anon_sym_signed] = ACTIONS(2923), + [anon_sym_unsigned] = ACTIONS(2923), + [anon_sym_long] = ACTIONS(2923), + [anon_sym_short] = ACTIONS(2923), + [anon_sym_LBRACK] = ACTIONS(2923), + [anon_sym_static] = ACTIONS(2923), + [anon_sym_register] = ACTIONS(2923), + [anon_sym_inline] = ACTIONS(2923), + [anon_sym___inline] = ACTIONS(2923), + [anon_sym___inline__] = ACTIONS(2923), + [anon_sym___forceinline] = ACTIONS(2923), + [anon_sym_thread_local] = ACTIONS(2923), + [anon_sym___thread] = ACTIONS(2923), + [anon_sym_const] = ACTIONS(2923), + [anon_sym_constexpr] = ACTIONS(2923), + [anon_sym_volatile] = ACTIONS(2923), + [anon_sym_restrict] = ACTIONS(2923), + [anon_sym___restrict__] = ACTIONS(2923), + [anon_sym__Atomic] = ACTIONS(2923), + [anon_sym__Noreturn] = ACTIONS(2923), + [anon_sym_noreturn] = ACTIONS(2923), + [anon_sym__Nonnull] = ACTIONS(2923), + [anon_sym_mutable] = ACTIONS(2923), + [anon_sym_constinit] = ACTIONS(2923), + [anon_sym_consteval] = ACTIONS(2923), + [anon_sym_alignas] = ACTIONS(2923), + [anon_sym__Alignas] = ACTIONS(2923), + [sym_primitive_type] = ACTIONS(2923), + [anon_sym_enum] = ACTIONS(2923), + [anon_sym_class] = ACTIONS(2923), + [anon_sym_struct] = ACTIONS(2923), + [anon_sym_union] = ACTIONS(2923), + [anon_sym_if] = ACTIONS(2923), + [anon_sym_switch] = ACTIONS(2923), + [anon_sym_case] = ACTIONS(2923), + [anon_sym_default] = ACTIONS(2923), + [anon_sym_while] = ACTIONS(2923), + [anon_sym_do] = ACTIONS(2923), + [anon_sym_for] = ACTIONS(2923), + [anon_sym_return] = ACTIONS(2923), + [anon_sym_break] = ACTIONS(2923), + [anon_sym_continue] = ACTIONS(2923), + [anon_sym_goto] = ACTIONS(2923), + [anon_sym___try] = ACTIONS(2923), + [anon_sym___leave] = ACTIONS(2923), + [anon_sym_not] = ACTIONS(2923), + [anon_sym_compl] = ACTIONS(2923), + [anon_sym_DASH_DASH] = ACTIONS(2925), + [anon_sym_PLUS_PLUS] = ACTIONS(2925), + [anon_sym_sizeof] = ACTIONS(2923), + [anon_sym___alignof__] = ACTIONS(2923), + [anon_sym___alignof] = ACTIONS(2923), + [anon_sym__alignof] = ACTIONS(2923), + [anon_sym_alignof] = ACTIONS(2923), + [anon_sym__Alignof] = ACTIONS(2923), + [anon_sym_offsetof] = ACTIONS(2923), + [anon_sym__Generic] = ACTIONS(2923), + [anon_sym_asm] = ACTIONS(2923), + [anon_sym___asm__] = ACTIONS(2923), + [anon_sym___asm] = ACTIONS(2923), + [sym_number_literal] = ACTIONS(2925), + [anon_sym_L_SQUOTE] = ACTIONS(2925), + [anon_sym_u_SQUOTE] = ACTIONS(2925), + [anon_sym_U_SQUOTE] = ACTIONS(2925), + [anon_sym_u8_SQUOTE] = ACTIONS(2925), + [anon_sym_SQUOTE] = ACTIONS(2925), + [anon_sym_L_DQUOTE] = ACTIONS(2925), + [anon_sym_u_DQUOTE] = ACTIONS(2925), + [anon_sym_U_DQUOTE] = ACTIONS(2925), + [anon_sym_u8_DQUOTE] = ACTIONS(2925), + [anon_sym_DQUOTE] = ACTIONS(2925), + [sym_true] = ACTIONS(2923), + [sym_false] = ACTIONS(2923), + [anon_sym_NULL] = ACTIONS(2923), + [anon_sym_nullptr] = ACTIONS(2923), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2899), - [anon_sym_decltype] = ACTIONS(2899), - [anon_sym_explicit] = ACTIONS(2899), - [anon_sym_typename] = ACTIONS(2899), - [anon_sym_template] = ACTIONS(2899), - [anon_sym_operator] = ACTIONS(2899), - [anon_sym_try] = ACTIONS(2899), - [anon_sym_delete] = ACTIONS(2899), - [anon_sym_throw] = ACTIONS(2899), - [anon_sym_namespace] = ACTIONS(2899), - [anon_sym_static_assert] = ACTIONS(2899), - [anon_sym_concept] = ACTIONS(2899), - [anon_sym_co_return] = ACTIONS(2899), - [anon_sym_co_yield] = ACTIONS(2899), - [anon_sym_R_DQUOTE] = ACTIONS(2901), - [anon_sym_LR_DQUOTE] = ACTIONS(2901), - [anon_sym_uR_DQUOTE] = ACTIONS(2901), - [anon_sym_UR_DQUOTE] = ACTIONS(2901), - [anon_sym_u8R_DQUOTE] = ACTIONS(2901), - [anon_sym_co_await] = ACTIONS(2899), - [anon_sym_new] = ACTIONS(2899), - [anon_sym_requires] = ACTIONS(2899), - [sym_this] = ACTIONS(2899), + [sym_auto] = ACTIONS(2923), + [anon_sym_decltype] = ACTIONS(2923), + [anon_sym_explicit] = ACTIONS(2923), + [anon_sym_typename] = ACTIONS(2923), + [anon_sym_template] = ACTIONS(2923), + [anon_sym_operator] = ACTIONS(2923), + [anon_sym_try] = ACTIONS(2923), + [anon_sym_delete] = ACTIONS(2923), + [anon_sym_throw] = ACTIONS(2923), + [anon_sym_namespace] = ACTIONS(2923), + [anon_sym_static_assert] = ACTIONS(2923), + [anon_sym_concept] = ACTIONS(2923), + [anon_sym_co_return] = ACTIONS(2923), + [anon_sym_co_yield] = ACTIONS(2923), + [anon_sym_R_DQUOTE] = ACTIONS(2925), + [anon_sym_LR_DQUOTE] = ACTIONS(2925), + [anon_sym_uR_DQUOTE] = ACTIONS(2925), + [anon_sym_UR_DQUOTE] = ACTIONS(2925), + [anon_sym_u8R_DQUOTE] = ACTIONS(2925), + [anon_sym_co_await] = ACTIONS(2923), + [anon_sym_new] = ACTIONS(2923), + [anon_sym_requires] = ACTIONS(2923), + [sym_this] = ACTIONS(2923), }, - [698] = { + [705] = { + [sym_identifier] = ACTIONS(3317), + [aux_sym_preproc_include_token1] = ACTIONS(3317), + [aux_sym_preproc_def_token1] = ACTIONS(3317), + [aux_sym_preproc_if_token1] = ACTIONS(3317), + [aux_sym_preproc_if_token2] = ACTIONS(3317), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3317), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3317), + [sym_preproc_directive] = ACTIONS(3317), + [anon_sym_LPAREN2] = ACTIONS(3319), + [anon_sym_BANG] = ACTIONS(3319), + [anon_sym_TILDE] = ACTIONS(3319), + [anon_sym_DASH] = ACTIONS(3317), + [anon_sym_PLUS] = ACTIONS(3317), + [anon_sym_STAR] = ACTIONS(3319), + [anon_sym_AMP_AMP] = ACTIONS(3319), + [anon_sym_AMP] = ACTIONS(3317), + [anon_sym_SEMI] = ACTIONS(3319), + [anon_sym___extension__] = ACTIONS(3317), + [anon_sym_typedef] = ACTIONS(3317), + [anon_sym_virtual] = ACTIONS(3317), + [anon_sym_extern] = ACTIONS(3317), + [anon_sym___attribute__] = ACTIONS(3317), + [anon_sym___attribute] = ACTIONS(3317), + [anon_sym_using] = ACTIONS(3317), + [anon_sym_COLON_COLON] = ACTIONS(3319), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3319), + [anon_sym___declspec] = ACTIONS(3317), + [anon_sym___based] = ACTIONS(3317), + [anon_sym___cdecl] = ACTIONS(3317), + [anon_sym___clrcall] = ACTIONS(3317), + [anon_sym___stdcall] = ACTIONS(3317), + [anon_sym___fastcall] = ACTIONS(3317), + [anon_sym___thiscall] = ACTIONS(3317), + [anon_sym___vectorcall] = ACTIONS(3317), + [anon_sym_LBRACE] = ACTIONS(3319), + [anon_sym_signed] = ACTIONS(3317), + [anon_sym_unsigned] = ACTIONS(3317), + [anon_sym_long] = ACTIONS(3317), + [anon_sym_short] = ACTIONS(3317), + [anon_sym_LBRACK] = ACTIONS(3317), + [anon_sym_static] = ACTIONS(3317), + [anon_sym_register] = ACTIONS(3317), + [anon_sym_inline] = ACTIONS(3317), + [anon_sym___inline] = ACTIONS(3317), + [anon_sym___inline__] = ACTIONS(3317), + [anon_sym___forceinline] = ACTIONS(3317), + [anon_sym_thread_local] = ACTIONS(3317), + [anon_sym___thread] = ACTIONS(3317), + [anon_sym_const] = ACTIONS(3317), + [anon_sym_constexpr] = ACTIONS(3317), + [anon_sym_volatile] = ACTIONS(3317), + [anon_sym_restrict] = ACTIONS(3317), + [anon_sym___restrict__] = ACTIONS(3317), + [anon_sym__Atomic] = ACTIONS(3317), + [anon_sym__Noreturn] = ACTIONS(3317), + [anon_sym_noreturn] = ACTIONS(3317), + [anon_sym__Nonnull] = ACTIONS(3317), + [anon_sym_mutable] = ACTIONS(3317), + [anon_sym_constinit] = ACTIONS(3317), + [anon_sym_consteval] = ACTIONS(3317), + [anon_sym_alignas] = ACTIONS(3317), + [anon_sym__Alignas] = ACTIONS(3317), + [sym_primitive_type] = ACTIONS(3317), + [anon_sym_enum] = ACTIONS(3317), + [anon_sym_class] = ACTIONS(3317), + [anon_sym_struct] = ACTIONS(3317), + [anon_sym_union] = ACTIONS(3317), + [anon_sym_if] = ACTIONS(3317), + [anon_sym_switch] = ACTIONS(3317), + [anon_sym_case] = ACTIONS(3317), + [anon_sym_default] = ACTIONS(3317), + [anon_sym_while] = ACTIONS(3317), + [anon_sym_do] = ACTIONS(3317), + [anon_sym_for] = ACTIONS(3317), + [anon_sym_return] = ACTIONS(3317), + [anon_sym_break] = ACTIONS(3317), + [anon_sym_continue] = ACTIONS(3317), + [anon_sym_goto] = ACTIONS(3317), + [anon_sym___try] = ACTIONS(3317), + [anon_sym___leave] = ACTIONS(3317), + [anon_sym_not] = ACTIONS(3317), + [anon_sym_compl] = ACTIONS(3317), + [anon_sym_DASH_DASH] = ACTIONS(3319), + [anon_sym_PLUS_PLUS] = ACTIONS(3319), + [anon_sym_sizeof] = ACTIONS(3317), + [anon_sym___alignof__] = ACTIONS(3317), + [anon_sym___alignof] = ACTIONS(3317), + [anon_sym__alignof] = ACTIONS(3317), + [anon_sym_alignof] = ACTIONS(3317), + [anon_sym__Alignof] = ACTIONS(3317), + [anon_sym_offsetof] = ACTIONS(3317), + [anon_sym__Generic] = ACTIONS(3317), + [anon_sym_asm] = ACTIONS(3317), + [anon_sym___asm__] = ACTIONS(3317), + [anon_sym___asm] = ACTIONS(3317), + [sym_number_literal] = ACTIONS(3319), + [anon_sym_L_SQUOTE] = ACTIONS(3319), + [anon_sym_u_SQUOTE] = ACTIONS(3319), + [anon_sym_U_SQUOTE] = ACTIONS(3319), + [anon_sym_u8_SQUOTE] = ACTIONS(3319), + [anon_sym_SQUOTE] = ACTIONS(3319), + [anon_sym_L_DQUOTE] = ACTIONS(3319), + [anon_sym_u_DQUOTE] = ACTIONS(3319), + [anon_sym_U_DQUOTE] = ACTIONS(3319), + [anon_sym_u8_DQUOTE] = ACTIONS(3319), + [anon_sym_DQUOTE] = ACTIONS(3319), + [sym_true] = ACTIONS(3317), + [sym_false] = ACTIONS(3317), + [anon_sym_NULL] = ACTIONS(3317), + [anon_sym_nullptr] = ACTIONS(3317), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3317), + [anon_sym_decltype] = ACTIONS(3317), + [anon_sym_explicit] = ACTIONS(3317), + [anon_sym_typename] = ACTIONS(3317), + [anon_sym_template] = ACTIONS(3317), + [anon_sym_operator] = ACTIONS(3317), + [anon_sym_try] = ACTIONS(3317), + [anon_sym_delete] = ACTIONS(3317), + [anon_sym_throw] = ACTIONS(3317), + [anon_sym_namespace] = ACTIONS(3317), + [anon_sym_static_assert] = ACTIONS(3317), + [anon_sym_concept] = ACTIONS(3317), + [anon_sym_co_return] = ACTIONS(3317), + [anon_sym_co_yield] = ACTIONS(3317), + [anon_sym_R_DQUOTE] = ACTIONS(3319), + [anon_sym_LR_DQUOTE] = ACTIONS(3319), + [anon_sym_uR_DQUOTE] = ACTIONS(3319), + [anon_sym_UR_DQUOTE] = ACTIONS(3319), + [anon_sym_u8R_DQUOTE] = ACTIONS(3319), + [anon_sym_co_await] = ACTIONS(3317), + [anon_sym_new] = ACTIONS(3317), + [anon_sym_requires] = ACTIONS(3317), + [sym_this] = ACTIONS(3317), + }, + [706] = { + [sym_identifier] = ACTIONS(2923), + [aux_sym_preproc_include_token1] = ACTIONS(2923), + [aux_sym_preproc_def_token1] = ACTIONS(2923), + [aux_sym_preproc_if_token1] = ACTIONS(2923), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2923), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2923), + [sym_preproc_directive] = ACTIONS(2923), + [anon_sym_LPAREN2] = ACTIONS(2925), + [anon_sym_BANG] = ACTIONS(2925), + [anon_sym_TILDE] = ACTIONS(2925), + [anon_sym_DASH] = ACTIONS(2923), + [anon_sym_PLUS] = ACTIONS(2923), + [anon_sym_STAR] = ACTIONS(2925), + [anon_sym_AMP_AMP] = ACTIONS(2925), + [anon_sym_AMP] = ACTIONS(2923), + [anon_sym_SEMI] = ACTIONS(2925), + [anon_sym___extension__] = ACTIONS(2923), + [anon_sym_typedef] = ACTIONS(2923), + [anon_sym_virtual] = ACTIONS(2923), + [anon_sym_extern] = ACTIONS(2923), + [anon_sym___attribute__] = ACTIONS(2923), + [anon_sym___attribute] = ACTIONS(2923), + [anon_sym_using] = ACTIONS(2923), + [anon_sym_COLON_COLON] = ACTIONS(2925), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2925), + [anon_sym___declspec] = ACTIONS(2923), + [anon_sym___based] = ACTIONS(2923), + [anon_sym___cdecl] = ACTIONS(2923), + [anon_sym___clrcall] = ACTIONS(2923), + [anon_sym___stdcall] = ACTIONS(2923), + [anon_sym___fastcall] = ACTIONS(2923), + [anon_sym___thiscall] = ACTIONS(2923), + [anon_sym___vectorcall] = ACTIONS(2923), + [anon_sym_LBRACE] = ACTIONS(2925), + [anon_sym_RBRACE] = ACTIONS(2925), + [anon_sym_signed] = ACTIONS(2923), + [anon_sym_unsigned] = ACTIONS(2923), + [anon_sym_long] = ACTIONS(2923), + [anon_sym_short] = ACTIONS(2923), + [anon_sym_LBRACK] = ACTIONS(2923), + [anon_sym_static] = ACTIONS(2923), + [anon_sym_register] = ACTIONS(2923), + [anon_sym_inline] = ACTIONS(2923), + [anon_sym___inline] = ACTIONS(2923), + [anon_sym___inline__] = ACTIONS(2923), + [anon_sym___forceinline] = ACTIONS(2923), + [anon_sym_thread_local] = ACTIONS(2923), + [anon_sym___thread] = ACTIONS(2923), + [anon_sym_const] = ACTIONS(2923), + [anon_sym_constexpr] = ACTIONS(2923), + [anon_sym_volatile] = ACTIONS(2923), + [anon_sym_restrict] = ACTIONS(2923), + [anon_sym___restrict__] = ACTIONS(2923), + [anon_sym__Atomic] = ACTIONS(2923), + [anon_sym__Noreturn] = ACTIONS(2923), + [anon_sym_noreturn] = ACTIONS(2923), + [anon_sym__Nonnull] = ACTIONS(2923), + [anon_sym_mutable] = ACTIONS(2923), + [anon_sym_constinit] = ACTIONS(2923), + [anon_sym_consteval] = ACTIONS(2923), + [anon_sym_alignas] = ACTIONS(2923), + [anon_sym__Alignas] = ACTIONS(2923), + [sym_primitive_type] = ACTIONS(2923), + [anon_sym_enum] = ACTIONS(2923), + [anon_sym_class] = ACTIONS(2923), + [anon_sym_struct] = ACTIONS(2923), + [anon_sym_union] = ACTIONS(2923), + [anon_sym_if] = ACTIONS(2923), + [anon_sym_switch] = ACTIONS(2923), + [anon_sym_case] = ACTIONS(2923), + [anon_sym_default] = ACTIONS(2923), + [anon_sym_while] = ACTIONS(2923), + [anon_sym_do] = ACTIONS(2923), + [anon_sym_for] = ACTIONS(2923), + [anon_sym_return] = ACTIONS(2923), + [anon_sym_break] = ACTIONS(2923), + [anon_sym_continue] = ACTIONS(2923), + [anon_sym_goto] = ACTIONS(2923), + [anon_sym___try] = ACTIONS(2923), + [anon_sym___leave] = ACTIONS(2923), + [anon_sym_not] = ACTIONS(2923), + [anon_sym_compl] = ACTIONS(2923), + [anon_sym_DASH_DASH] = ACTIONS(2925), + [anon_sym_PLUS_PLUS] = ACTIONS(2925), + [anon_sym_sizeof] = ACTIONS(2923), + [anon_sym___alignof__] = ACTIONS(2923), + [anon_sym___alignof] = ACTIONS(2923), + [anon_sym__alignof] = ACTIONS(2923), + [anon_sym_alignof] = ACTIONS(2923), + [anon_sym__Alignof] = ACTIONS(2923), + [anon_sym_offsetof] = ACTIONS(2923), + [anon_sym__Generic] = ACTIONS(2923), + [anon_sym_asm] = ACTIONS(2923), + [anon_sym___asm__] = ACTIONS(2923), + [anon_sym___asm] = ACTIONS(2923), + [sym_number_literal] = ACTIONS(2925), + [anon_sym_L_SQUOTE] = ACTIONS(2925), + [anon_sym_u_SQUOTE] = ACTIONS(2925), + [anon_sym_U_SQUOTE] = ACTIONS(2925), + [anon_sym_u8_SQUOTE] = ACTIONS(2925), + [anon_sym_SQUOTE] = ACTIONS(2925), + [anon_sym_L_DQUOTE] = ACTIONS(2925), + [anon_sym_u_DQUOTE] = ACTIONS(2925), + [anon_sym_U_DQUOTE] = ACTIONS(2925), + [anon_sym_u8_DQUOTE] = ACTIONS(2925), + [anon_sym_DQUOTE] = ACTIONS(2925), + [sym_true] = ACTIONS(2923), + [sym_false] = ACTIONS(2923), + [anon_sym_NULL] = ACTIONS(2923), + [anon_sym_nullptr] = ACTIONS(2923), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2923), + [anon_sym_decltype] = ACTIONS(2923), + [anon_sym_explicit] = ACTIONS(2923), + [anon_sym_typename] = ACTIONS(2923), + [anon_sym_template] = ACTIONS(2923), + [anon_sym_operator] = ACTIONS(2923), + [anon_sym_try] = ACTIONS(2923), + [anon_sym_delete] = ACTIONS(2923), + [anon_sym_throw] = ACTIONS(2923), + [anon_sym_namespace] = ACTIONS(2923), + [anon_sym_static_assert] = ACTIONS(2923), + [anon_sym_concept] = ACTIONS(2923), + [anon_sym_co_return] = ACTIONS(2923), + [anon_sym_co_yield] = ACTIONS(2923), + [anon_sym_R_DQUOTE] = ACTIONS(2925), + [anon_sym_LR_DQUOTE] = ACTIONS(2925), + [anon_sym_uR_DQUOTE] = ACTIONS(2925), + [anon_sym_UR_DQUOTE] = ACTIONS(2925), + [anon_sym_u8R_DQUOTE] = ACTIONS(2925), + [anon_sym_co_await] = ACTIONS(2923), + [anon_sym_new] = ACTIONS(2923), + [anon_sym_requires] = ACTIONS(2923), + [sym_this] = ACTIONS(2923), + }, + [707] = { [sym_identifier] = ACTIONS(2787), [aux_sym_preproc_include_token1] = ACTIONS(2787), [aux_sym_preproc_def_token1] = ACTIONS(2787), @@ -142138,143 +143689,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2787), [sym_this] = ACTIONS(2787), }, - [699] = { - [sym_identifier] = ACTIONS(2791), - [aux_sym_preproc_include_token1] = ACTIONS(2791), - [aux_sym_preproc_def_token1] = ACTIONS(2791), - [aux_sym_preproc_if_token1] = ACTIONS(2791), - [aux_sym_preproc_if_token2] = ACTIONS(2791), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2791), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2791), - [sym_preproc_directive] = ACTIONS(2791), - [anon_sym_LPAREN2] = ACTIONS(2793), - [anon_sym_BANG] = ACTIONS(2793), - [anon_sym_TILDE] = ACTIONS(2793), - [anon_sym_DASH] = ACTIONS(2791), - [anon_sym_PLUS] = ACTIONS(2791), - [anon_sym_STAR] = ACTIONS(2793), - [anon_sym_AMP_AMP] = ACTIONS(2793), - [anon_sym_AMP] = ACTIONS(2791), - [anon_sym_SEMI] = ACTIONS(2793), - [anon_sym___extension__] = ACTIONS(2791), - [anon_sym_typedef] = ACTIONS(2791), - [anon_sym_virtual] = ACTIONS(2791), - [anon_sym_extern] = ACTIONS(2791), - [anon_sym___attribute__] = ACTIONS(2791), - [anon_sym___attribute] = ACTIONS(2791), - [anon_sym_using] = ACTIONS(2791), - [anon_sym_COLON_COLON] = ACTIONS(2793), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2793), - [anon_sym___declspec] = ACTIONS(2791), - [anon_sym___based] = ACTIONS(2791), - [anon_sym___cdecl] = ACTIONS(2791), - [anon_sym___clrcall] = ACTIONS(2791), - [anon_sym___stdcall] = ACTIONS(2791), - [anon_sym___fastcall] = ACTIONS(2791), - [anon_sym___thiscall] = ACTIONS(2791), - [anon_sym___vectorcall] = ACTIONS(2791), - [anon_sym_LBRACE] = ACTIONS(2793), - [anon_sym_signed] = ACTIONS(2791), - [anon_sym_unsigned] = ACTIONS(2791), - [anon_sym_long] = ACTIONS(2791), - [anon_sym_short] = ACTIONS(2791), - [anon_sym_LBRACK] = ACTIONS(2791), - [anon_sym_static] = ACTIONS(2791), - [anon_sym_register] = ACTIONS(2791), - [anon_sym_inline] = ACTIONS(2791), - [anon_sym___inline] = ACTIONS(2791), - [anon_sym___inline__] = ACTIONS(2791), - [anon_sym___forceinline] = ACTIONS(2791), - [anon_sym_thread_local] = ACTIONS(2791), - [anon_sym___thread] = ACTIONS(2791), - [anon_sym_const] = ACTIONS(2791), - [anon_sym_constexpr] = ACTIONS(2791), - [anon_sym_volatile] = ACTIONS(2791), - [anon_sym_restrict] = ACTIONS(2791), - [anon_sym___restrict__] = ACTIONS(2791), - [anon_sym__Atomic] = ACTIONS(2791), - [anon_sym__Noreturn] = ACTIONS(2791), - [anon_sym_noreturn] = ACTIONS(2791), - [anon_sym__Nonnull] = ACTIONS(2791), - [anon_sym_mutable] = ACTIONS(2791), - [anon_sym_constinit] = ACTIONS(2791), - [anon_sym_consteval] = ACTIONS(2791), - [anon_sym_alignas] = ACTIONS(2791), - [anon_sym__Alignas] = ACTIONS(2791), - [sym_primitive_type] = ACTIONS(2791), - [anon_sym_enum] = ACTIONS(2791), - [anon_sym_class] = ACTIONS(2791), - [anon_sym_struct] = ACTIONS(2791), - [anon_sym_union] = ACTIONS(2791), - [anon_sym_if] = ACTIONS(2791), - [anon_sym_switch] = ACTIONS(2791), - [anon_sym_case] = ACTIONS(2791), - [anon_sym_default] = ACTIONS(2791), - [anon_sym_while] = ACTIONS(2791), - [anon_sym_do] = ACTIONS(2791), - [anon_sym_for] = ACTIONS(2791), - [anon_sym_return] = ACTIONS(2791), - [anon_sym_break] = ACTIONS(2791), - [anon_sym_continue] = ACTIONS(2791), - [anon_sym_goto] = ACTIONS(2791), - [anon_sym___try] = ACTIONS(2791), - [anon_sym___leave] = ACTIONS(2791), - [anon_sym_not] = ACTIONS(2791), - [anon_sym_compl] = ACTIONS(2791), - [anon_sym_DASH_DASH] = ACTIONS(2793), - [anon_sym_PLUS_PLUS] = ACTIONS(2793), - [anon_sym_sizeof] = ACTIONS(2791), - [anon_sym___alignof__] = ACTIONS(2791), - [anon_sym___alignof] = ACTIONS(2791), - [anon_sym__alignof] = ACTIONS(2791), - [anon_sym_alignof] = ACTIONS(2791), - [anon_sym__Alignof] = ACTIONS(2791), - [anon_sym_offsetof] = ACTIONS(2791), - [anon_sym__Generic] = ACTIONS(2791), - [anon_sym_asm] = ACTIONS(2791), - [anon_sym___asm__] = ACTIONS(2791), - [anon_sym___asm] = ACTIONS(2791), - [sym_number_literal] = ACTIONS(2793), - [anon_sym_L_SQUOTE] = ACTIONS(2793), - [anon_sym_u_SQUOTE] = ACTIONS(2793), - [anon_sym_U_SQUOTE] = ACTIONS(2793), - [anon_sym_u8_SQUOTE] = ACTIONS(2793), - [anon_sym_SQUOTE] = ACTIONS(2793), - [anon_sym_L_DQUOTE] = ACTIONS(2793), - [anon_sym_u_DQUOTE] = ACTIONS(2793), - [anon_sym_U_DQUOTE] = ACTIONS(2793), - [anon_sym_u8_DQUOTE] = ACTIONS(2793), - [anon_sym_DQUOTE] = ACTIONS(2793), - [sym_true] = ACTIONS(2791), - [sym_false] = ACTIONS(2791), - [anon_sym_NULL] = ACTIONS(2791), - [anon_sym_nullptr] = ACTIONS(2791), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2791), - [anon_sym_decltype] = ACTIONS(2791), - [anon_sym_explicit] = ACTIONS(2791), - [anon_sym_typename] = ACTIONS(2791), - [anon_sym_template] = ACTIONS(2791), - [anon_sym_operator] = ACTIONS(2791), - [anon_sym_try] = ACTIONS(2791), - [anon_sym_delete] = ACTIONS(2791), - [anon_sym_throw] = ACTIONS(2791), - [anon_sym_namespace] = ACTIONS(2791), - [anon_sym_static_assert] = ACTIONS(2791), - [anon_sym_concept] = ACTIONS(2791), - [anon_sym_co_return] = ACTIONS(2791), - [anon_sym_co_yield] = ACTIONS(2791), - [anon_sym_R_DQUOTE] = ACTIONS(2793), - [anon_sym_LR_DQUOTE] = ACTIONS(2793), - [anon_sym_uR_DQUOTE] = ACTIONS(2793), - [anon_sym_UR_DQUOTE] = ACTIONS(2793), - [anon_sym_u8R_DQUOTE] = ACTIONS(2793), - [anon_sym_co_await] = ACTIONS(2791), - [anon_sym_new] = ACTIONS(2791), - [anon_sym_requires] = ACTIONS(2791), - [sym_this] = ACTIONS(2791), - }, - [700] = { + [708] = { [sym_identifier] = ACTIONS(2799), [aux_sym_preproc_include_token1] = ACTIONS(2799), [aux_sym_preproc_def_token1] = ACTIONS(2799), @@ -142410,415 +143825,415 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2799), [sym_this] = ACTIONS(2799), }, - [701] = { - [sym_identifier] = ACTIONS(2807), - [aux_sym_preproc_include_token1] = ACTIONS(2807), - [aux_sym_preproc_def_token1] = ACTIONS(2807), - [aux_sym_preproc_if_token1] = ACTIONS(2807), - [aux_sym_preproc_if_token2] = ACTIONS(2807), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2807), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2807), - [sym_preproc_directive] = ACTIONS(2807), - [anon_sym_LPAREN2] = ACTIONS(2809), - [anon_sym_BANG] = ACTIONS(2809), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_DASH] = ACTIONS(2807), - [anon_sym_PLUS] = ACTIONS(2807), - [anon_sym_STAR] = ACTIONS(2809), - [anon_sym_AMP_AMP] = ACTIONS(2809), - [anon_sym_AMP] = ACTIONS(2807), - [anon_sym_SEMI] = ACTIONS(2809), - [anon_sym___extension__] = ACTIONS(2807), - [anon_sym_typedef] = ACTIONS(2807), - [anon_sym_virtual] = ACTIONS(2807), - [anon_sym_extern] = ACTIONS(2807), - [anon_sym___attribute__] = ACTIONS(2807), - [anon_sym___attribute] = ACTIONS(2807), - [anon_sym_using] = ACTIONS(2807), - [anon_sym_COLON_COLON] = ACTIONS(2809), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2809), - [anon_sym___declspec] = ACTIONS(2807), - [anon_sym___based] = ACTIONS(2807), - [anon_sym___cdecl] = ACTIONS(2807), - [anon_sym___clrcall] = ACTIONS(2807), - [anon_sym___stdcall] = ACTIONS(2807), - [anon_sym___fastcall] = ACTIONS(2807), - [anon_sym___thiscall] = ACTIONS(2807), - [anon_sym___vectorcall] = ACTIONS(2807), - [anon_sym_LBRACE] = ACTIONS(2809), - [anon_sym_signed] = ACTIONS(2807), - [anon_sym_unsigned] = ACTIONS(2807), - [anon_sym_long] = ACTIONS(2807), - [anon_sym_short] = ACTIONS(2807), - [anon_sym_LBRACK] = ACTIONS(2807), - [anon_sym_static] = ACTIONS(2807), - [anon_sym_register] = ACTIONS(2807), - [anon_sym_inline] = ACTIONS(2807), - [anon_sym___inline] = ACTIONS(2807), - [anon_sym___inline__] = ACTIONS(2807), - [anon_sym___forceinline] = ACTIONS(2807), - [anon_sym_thread_local] = ACTIONS(2807), - [anon_sym___thread] = ACTIONS(2807), - [anon_sym_const] = ACTIONS(2807), - [anon_sym_constexpr] = ACTIONS(2807), - [anon_sym_volatile] = ACTIONS(2807), - [anon_sym_restrict] = ACTIONS(2807), - [anon_sym___restrict__] = ACTIONS(2807), - [anon_sym__Atomic] = ACTIONS(2807), - [anon_sym__Noreturn] = ACTIONS(2807), - [anon_sym_noreturn] = ACTIONS(2807), - [anon_sym__Nonnull] = ACTIONS(2807), - [anon_sym_mutable] = ACTIONS(2807), - [anon_sym_constinit] = ACTIONS(2807), - [anon_sym_consteval] = ACTIONS(2807), - [anon_sym_alignas] = ACTIONS(2807), - [anon_sym__Alignas] = ACTIONS(2807), - [sym_primitive_type] = ACTIONS(2807), - [anon_sym_enum] = ACTIONS(2807), - [anon_sym_class] = ACTIONS(2807), - [anon_sym_struct] = ACTIONS(2807), - [anon_sym_union] = ACTIONS(2807), - [anon_sym_if] = ACTIONS(2807), - [anon_sym_switch] = ACTIONS(2807), - [anon_sym_case] = ACTIONS(2807), - [anon_sym_default] = ACTIONS(2807), - [anon_sym_while] = ACTIONS(2807), - [anon_sym_do] = ACTIONS(2807), - [anon_sym_for] = ACTIONS(2807), - [anon_sym_return] = ACTIONS(2807), - [anon_sym_break] = ACTIONS(2807), - [anon_sym_continue] = ACTIONS(2807), - [anon_sym_goto] = ACTIONS(2807), - [anon_sym___try] = ACTIONS(2807), - [anon_sym___leave] = ACTIONS(2807), - [anon_sym_not] = ACTIONS(2807), - [anon_sym_compl] = ACTIONS(2807), - [anon_sym_DASH_DASH] = ACTIONS(2809), - [anon_sym_PLUS_PLUS] = ACTIONS(2809), - [anon_sym_sizeof] = ACTIONS(2807), - [anon_sym___alignof__] = ACTIONS(2807), - [anon_sym___alignof] = ACTIONS(2807), - [anon_sym__alignof] = ACTIONS(2807), - [anon_sym_alignof] = ACTIONS(2807), - [anon_sym__Alignof] = ACTIONS(2807), - [anon_sym_offsetof] = ACTIONS(2807), - [anon_sym__Generic] = ACTIONS(2807), - [anon_sym_asm] = ACTIONS(2807), - [anon_sym___asm__] = ACTIONS(2807), - [anon_sym___asm] = ACTIONS(2807), - [sym_number_literal] = ACTIONS(2809), - [anon_sym_L_SQUOTE] = ACTIONS(2809), - [anon_sym_u_SQUOTE] = ACTIONS(2809), - [anon_sym_U_SQUOTE] = ACTIONS(2809), - [anon_sym_u8_SQUOTE] = ACTIONS(2809), - [anon_sym_SQUOTE] = ACTIONS(2809), - [anon_sym_L_DQUOTE] = ACTIONS(2809), - [anon_sym_u_DQUOTE] = ACTIONS(2809), - [anon_sym_U_DQUOTE] = ACTIONS(2809), - [anon_sym_u8_DQUOTE] = ACTIONS(2809), - [anon_sym_DQUOTE] = ACTIONS(2809), - [sym_true] = ACTIONS(2807), - [sym_false] = ACTIONS(2807), - [anon_sym_NULL] = ACTIONS(2807), - [anon_sym_nullptr] = ACTIONS(2807), + [709] = { + [sym_identifier] = ACTIONS(2803), + [aux_sym_preproc_include_token1] = ACTIONS(2803), + [aux_sym_preproc_def_token1] = ACTIONS(2803), + [aux_sym_preproc_if_token1] = ACTIONS(2803), + [aux_sym_preproc_if_token2] = ACTIONS(2803), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2803), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2803), + [sym_preproc_directive] = ACTIONS(2803), + [anon_sym_LPAREN2] = ACTIONS(2805), + [anon_sym_BANG] = ACTIONS(2805), + [anon_sym_TILDE] = ACTIONS(2805), + [anon_sym_DASH] = ACTIONS(2803), + [anon_sym_PLUS] = ACTIONS(2803), + [anon_sym_STAR] = ACTIONS(2805), + [anon_sym_AMP_AMP] = ACTIONS(2805), + [anon_sym_AMP] = ACTIONS(2803), + [anon_sym_SEMI] = ACTIONS(2805), + [anon_sym___extension__] = ACTIONS(2803), + [anon_sym_typedef] = ACTIONS(2803), + [anon_sym_virtual] = ACTIONS(2803), + [anon_sym_extern] = ACTIONS(2803), + [anon_sym___attribute__] = ACTIONS(2803), + [anon_sym___attribute] = ACTIONS(2803), + [anon_sym_using] = ACTIONS(2803), + [anon_sym_COLON_COLON] = ACTIONS(2805), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2805), + [anon_sym___declspec] = ACTIONS(2803), + [anon_sym___based] = ACTIONS(2803), + [anon_sym___cdecl] = ACTIONS(2803), + [anon_sym___clrcall] = ACTIONS(2803), + [anon_sym___stdcall] = ACTIONS(2803), + [anon_sym___fastcall] = ACTIONS(2803), + [anon_sym___thiscall] = ACTIONS(2803), + [anon_sym___vectorcall] = ACTIONS(2803), + [anon_sym_LBRACE] = ACTIONS(2805), + [anon_sym_signed] = ACTIONS(2803), + [anon_sym_unsigned] = ACTIONS(2803), + [anon_sym_long] = ACTIONS(2803), + [anon_sym_short] = ACTIONS(2803), + [anon_sym_LBRACK] = ACTIONS(2803), + [anon_sym_static] = ACTIONS(2803), + [anon_sym_register] = ACTIONS(2803), + [anon_sym_inline] = ACTIONS(2803), + [anon_sym___inline] = ACTIONS(2803), + [anon_sym___inline__] = ACTIONS(2803), + [anon_sym___forceinline] = ACTIONS(2803), + [anon_sym_thread_local] = ACTIONS(2803), + [anon_sym___thread] = ACTIONS(2803), + [anon_sym_const] = ACTIONS(2803), + [anon_sym_constexpr] = ACTIONS(2803), + [anon_sym_volatile] = ACTIONS(2803), + [anon_sym_restrict] = ACTIONS(2803), + [anon_sym___restrict__] = ACTIONS(2803), + [anon_sym__Atomic] = ACTIONS(2803), + [anon_sym__Noreturn] = ACTIONS(2803), + [anon_sym_noreturn] = ACTIONS(2803), + [anon_sym__Nonnull] = ACTIONS(2803), + [anon_sym_mutable] = ACTIONS(2803), + [anon_sym_constinit] = ACTIONS(2803), + [anon_sym_consteval] = ACTIONS(2803), + [anon_sym_alignas] = ACTIONS(2803), + [anon_sym__Alignas] = ACTIONS(2803), + [sym_primitive_type] = ACTIONS(2803), + [anon_sym_enum] = ACTIONS(2803), + [anon_sym_class] = ACTIONS(2803), + [anon_sym_struct] = ACTIONS(2803), + [anon_sym_union] = ACTIONS(2803), + [anon_sym_if] = ACTIONS(2803), + [anon_sym_switch] = ACTIONS(2803), + [anon_sym_case] = ACTIONS(2803), + [anon_sym_default] = ACTIONS(2803), + [anon_sym_while] = ACTIONS(2803), + [anon_sym_do] = ACTIONS(2803), + [anon_sym_for] = ACTIONS(2803), + [anon_sym_return] = ACTIONS(2803), + [anon_sym_break] = ACTIONS(2803), + [anon_sym_continue] = ACTIONS(2803), + [anon_sym_goto] = ACTIONS(2803), + [anon_sym___try] = ACTIONS(2803), + [anon_sym___leave] = ACTIONS(2803), + [anon_sym_not] = ACTIONS(2803), + [anon_sym_compl] = ACTIONS(2803), + [anon_sym_DASH_DASH] = ACTIONS(2805), + [anon_sym_PLUS_PLUS] = ACTIONS(2805), + [anon_sym_sizeof] = ACTIONS(2803), + [anon_sym___alignof__] = ACTIONS(2803), + [anon_sym___alignof] = ACTIONS(2803), + [anon_sym__alignof] = ACTIONS(2803), + [anon_sym_alignof] = ACTIONS(2803), + [anon_sym__Alignof] = ACTIONS(2803), + [anon_sym_offsetof] = ACTIONS(2803), + [anon_sym__Generic] = ACTIONS(2803), + [anon_sym_asm] = ACTIONS(2803), + [anon_sym___asm__] = ACTIONS(2803), + [anon_sym___asm] = ACTIONS(2803), + [sym_number_literal] = ACTIONS(2805), + [anon_sym_L_SQUOTE] = ACTIONS(2805), + [anon_sym_u_SQUOTE] = ACTIONS(2805), + [anon_sym_U_SQUOTE] = ACTIONS(2805), + [anon_sym_u8_SQUOTE] = ACTIONS(2805), + [anon_sym_SQUOTE] = ACTIONS(2805), + [anon_sym_L_DQUOTE] = ACTIONS(2805), + [anon_sym_u_DQUOTE] = ACTIONS(2805), + [anon_sym_U_DQUOTE] = ACTIONS(2805), + [anon_sym_u8_DQUOTE] = ACTIONS(2805), + [anon_sym_DQUOTE] = ACTIONS(2805), + [sym_true] = ACTIONS(2803), + [sym_false] = ACTIONS(2803), + [anon_sym_NULL] = ACTIONS(2803), + [anon_sym_nullptr] = ACTIONS(2803), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2807), - [anon_sym_decltype] = ACTIONS(2807), - [anon_sym_explicit] = ACTIONS(2807), - [anon_sym_typename] = ACTIONS(2807), - [anon_sym_template] = ACTIONS(2807), - [anon_sym_operator] = ACTIONS(2807), - [anon_sym_try] = ACTIONS(2807), - [anon_sym_delete] = ACTIONS(2807), - [anon_sym_throw] = ACTIONS(2807), - [anon_sym_namespace] = ACTIONS(2807), - [anon_sym_static_assert] = ACTIONS(2807), - [anon_sym_concept] = ACTIONS(2807), - [anon_sym_co_return] = ACTIONS(2807), - [anon_sym_co_yield] = ACTIONS(2807), - [anon_sym_R_DQUOTE] = ACTIONS(2809), - [anon_sym_LR_DQUOTE] = ACTIONS(2809), - [anon_sym_uR_DQUOTE] = ACTIONS(2809), - [anon_sym_UR_DQUOTE] = ACTIONS(2809), - [anon_sym_u8R_DQUOTE] = ACTIONS(2809), - [anon_sym_co_await] = ACTIONS(2807), - [anon_sym_new] = ACTIONS(2807), - [anon_sym_requires] = ACTIONS(2807), - [sym_this] = ACTIONS(2807), + [sym_auto] = ACTIONS(2803), + [anon_sym_decltype] = ACTIONS(2803), + [anon_sym_explicit] = ACTIONS(2803), + [anon_sym_typename] = ACTIONS(2803), + [anon_sym_template] = ACTIONS(2803), + [anon_sym_operator] = ACTIONS(2803), + [anon_sym_try] = ACTIONS(2803), + [anon_sym_delete] = ACTIONS(2803), + [anon_sym_throw] = ACTIONS(2803), + [anon_sym_namespace] = ACTIONS(2803), + [anon_sym_static_assert] = ACTIONS(2803), + [anon_sym_concept] = ACTIONS(2803), + [anon_sym_co_return] = ACTIONS(2803), + [anon_sym_co_yield] = ACTIONS(2803), + [anon_sym_R_DQUOTE] = ACTIONS(2805), + [anon_sym_LR_DQUOTE] = ACTIONS(2805), + [anon_sym_uR_DQUOTE] = ACTIONS(2805), + [anon_sym_UR_DQUOTE] = ACTIONS(2805), + [anon_sym_u8R_DQUOTE] = ACTIONS(2805), + [anon_sym_co_await] = ACTIONS(2803), + [anon_sym_new] = ACTIONS(2803), + [anon_sym_requires] = ACTIONS(2803), + [sym_this] = ACTIONS(2803), }, - [702] = { - [sym_identifier] = ACTIONS(2815), - [aux_sym_preproc_include_token1] = ACTIONS(2815), - [aux_sym_preproc_def_token1] = ACTIONS(2815), - [aux_sym_preproc_if_token1] = ACTIONS(2815), - [aux_sym_preproc_if_token2] = ACTIONS(2815), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2815), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2815), - [sym_preproc_directive] = ACTIONS(2815), - [anon_sym_LPAREN2] = ACTIONS(2817), - [anon_sym_BANG] = ACTIONS(2817), - [anon_sym_TILDE] = ACTIONS(2817), - [anon_sym_DASH] = ACTIONS(2815), - [anon_sym_PLUS] = ACTIONS(2815), - [anon_sym_STAR] = ACTIONS(2817), - [anon_sym_AMP_AMP] = ACTIONS(2817), - [anon_sym_AMP] = ACTIONS(2815), - [anon_sym_SEMI] = ACTIONS(2817), - [anon_sym___extension__] = ACTIONS(2815), - [anon_sym_typedef] = ACTIONS(2815), - [anon_sym_virtual] = ACTIONS(2815), - [anon_sym_extern] = ACTIONS(2815), - [anon_sym___attribute__] = ACTIONS(2815), - [anon_sym___attribute] = ACTIONS(2815), - [anon_sym_using] = ACTIONS(2815), - [anon_sym_COLON_COLON] = ACTIONS(2817), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2817), - [anon_sym___declspec] = ACTIONS(2815), - [anon_sym___based] = ACTIONS(2815), - [anon_sym___cdecl] = ACTIONS(2815), - [anon_sym___clrcall] = ACTIONS(2815), - [anon_sym___stdcall] = ACTIONS(2815), - [anon_sym___fastcall] = ACTIONS(2815), - [anon_sym___thiscall] = ACTIONS(2815), - [anon_sym___vectorcall] = ACTIONS(2815), - [anon_sym_LBRACE] = ACTIONS(2817), - [anon_sym_signed] = ACTIONS(2815), - [anon_sym_unsigned] = ACTIONS(2815), - [anon_sym_long] = ACTIONS(2815), - [anon_sym_short] = ACTIONS(2815), - [anon_sym_LBRACK] = ACTIONS(2815), - [anon_sym_static] = ACTIONS(2815), - [anon_sym_register] = ACTIONS(2815), - [anon_sym_inline] = ACTIONS(2815), - [anon_sym___inline] = ACTIONS(2815), - [anon_sym___inline__] = ACTIONS(2815), - [anon_sym___forceinline] = ACTIONS(2815), - [anon_sym_thread_local] = ACTIONS(2815), - [anon_sym___thread] = ACTIONS(2815), - [anon_sym_const] = ACTIONS(2815), - [anon_sym_constexpr] = ACTIONS(2815), - [anon_sym_volatile] = ACTIONS(2815), - [anon_sym_restrict] = ACTIONS(2815), - [anon_sym___restrict__] = ACTIONS(2815), - [anon_sym__Atomic] = ACTIONS(2815), - [anon_sym__Noreturn] = ACTIONS(2815), - [anon_sym_noreturn] = ACTIONS(2815), - [anon_sym__Nonnull] = ACTIONS(2815), - [anon_sym_mutable] = ACTIONS(2815), - [anon_sym_constinit] = ACTIONS(2815), - [anon_sym_consteval] = ACTIONS(2815), - [anon_sym_alignas] = ACTIONS(2815), - [anon_sym__Alignas] = ACTIONS(2815), - [sym_primitive_type] = ACTIONS(2815), - [anon_sym_enum] = ACTIONS(2815), - [anon_sym_class] = ACTIONS(2815), - [anon_sym_struct] = ACTIONS(2815), - [anon_sym_union] = ACTIONS(2815), - [anon_sym_if] = ACTIONS(2815), - [anon_sym_switch] = ACTIONS(2815), - [anon_sym_case] = ACTIONS(2815), - [anon_sym_default] = ACTIONS(2815), - [anon_sym_while] = ACTIONS(2815), - [anon_sym_do] = ACTIONS(2815), - [anon_sym_for] = ACTIONS(2815), - [anon_sym_return] = ACTIONS(2815), - [anon_sym_break] = ACTIONS(2815), - [anon_sym_continue] = ACTIONS(2815), - [anon_sym_goto] = ACTIONS(2815), - [anon_sym___try] = ACTIONS(2815), - [anon_sym___leave] = ACTIONS(2815), - [anon_sym_not] = ACTIONS(2815), - [anon_sym_compl] = ACTIONS(2815), - [anon_sym_DASH_DASH] = ACTIONS(2817), - [anon_sym_PLUS_PLUS] = ACTIONS(2817), - [anon_sym_sizeof] = ACTIONS(2815), - [anon_sym___alignof__] = ACTIONS(2815), - [anon_sym___alignof] = ACTIONS(2815), - [anon_sym__alignof] = ACTIONS(2815), - [anon_sym_alignof] = ACTIONS(2815), - [anon_sym__Alignof] = ACTIONS(2815), - [anon_sym_offsetof] = ACTIONS(2815), - [anon_sym__Generic] = ACTIONS(2815), - [anon_sym_asm] = ACTIONS(2815), - [anon_sym___asm__] = ACTIONS(2815), - [anon_sym___asm] = ACTIONS(2815), - [sym_number_literal] = ACTIONS(2817), - [anon_sym_L_SQUOTE] = ACTIONS(2817), - [anon_sym_u_SQUOTE] = ACTIONS(2817), - [anon_sym_U_SQUOTE] = ACTIONS(2817), - [anon_sym_u8_SQUOTE] = ACTIONS(2817), - [anon_sym_SQUOTE] = ACTIONS(2817), - [anon_sym_L_DQUOTE] = ACTIONS(2817), - [anon_sym_u_DQUOTE] = ACTIONS(2817), - [anon_sym_U_DQUOTE] = ACTIONS(2817), - [anon_sym_u8_DQUOTE] = ACTIONS(2817), - [anon_sym_DQUOTE] = ACTIONS(2817), - [sym_true] = ACTIONS(2815), - [sym_false] = ACTIONS(2815), - [anon_sym_NULL] = ACTIONS(2815), - [anon_sym_nullptr] = ACTIONS(2815), + [710] = { + [sym_identifier] = ACTIONS(2811), + [aux_sym_preproc_include_token1] = ACTIONS(2811), + [aux_sym_preproc_def_token1] = ACTIONS(2811), + [aux_sym_preproc_if_token1] = ACTIONS(2811), + [aux_sym_preproc_if_token2] = ACTIONS(2811), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2811), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2811), + [sym_preproc_directive] = ACTIONS(2811), + [anon_sym_LPAREN2] = ACTIONS(2813), + [anon_sym_BANG] = ACTIONS(2813), + [anon_sym_TILDE] = ACTIONS(2813), + [anon_sym_DASH] = ACTIONS(2811), + [anon_sym_PLUS] = ACTIONS(2811), + [anon_sym_STAR] = ACTIONS(2813), + [anon_sym_AMP_AMP] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2811), + [anon_sym_SEMI] = ACTIONS(2813), + [anon_sym___extension__] = ACTIONS(2811), + [anon_sym_typedef] = ACTIONS(2811), + [anon_sym_virtual] = ACTIONS(2811), + [anon_sym_extern] = ACTIONS(2811), + [anon_sym___attribute__] = ACTIONS(2811), + [anon_sym___attribute] = ACTIONS(2811), + [anon_sym_using] = ACTIONS(2811), + [anon_sym_COLON_COLON] = ACTIONS(2813), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2813), + [anon_sym___declspec] = ACTIONS(2811), + [anon_sym___based] = ACTIONS(2811), + [anon_sym___cdecl] = ACTIONS(2811), + [anon_sym___clrcall] = ACTIONS(2811), + [anon_sym___stdcall] = ACTIONS(2811), + [anon_sym___fastcall] = ACTIONS(2811), + [anon_sym___thiscall] = ACTIONS(2811), + [anon_sym___vectorcall] = ACTIONS(2811), + [anon_sym_LBRACE] = ACTIONS(2813), + [anon_sym_signed] = ACTIONS(2811), + [anon_sym_unsigned] = ACTIONS(2811), + [anon_sym_long] = ACTIONS(2811), + [anon_sym_short] = ACTIONS(2811), + [anon_sym_LBRACK] = ACTIONS(2811), + [anon_sym_static] = ACTIONS(2811), + [anon_sym_register] = ACTIONS(2811), + [anon_sym_inline] = ACTIONS(2811), + [anon_sym___inline] = ACTIONS(2811), + [anon_sym___inline__] = ACTIONS(2811), + [anon_sym___forceinline] = ACTIONS(2811), + [anon_sym_thread_local] = ACTIONS(2811), + [anon_sym___thread] = ACTIONS(2811), + [anon_sym_const] = ACTIONS(2811), + [anon_sym_constexpr] = ACTIONS(2811), + [anon_sym_volatile] = ACTIONS(2811), + [anon_sym_restrict] = ACTIONS(2811), + [anon_sym___restrict__] = ACTIONS(2811), + [anon_sym__Atomic] = ACTIONS(2811), + [anon_sym__Noreturn] = ACTIONS(2811), + [anon_sym_noreturn] = ACTIONS(2811), + [anon_sym__Nonnull] = ACTIONS(2811), + [anon_sym_mutable] = ACTIONS(2811), + [anon_sym_constinit] = ACTIONS(2811), + [anon_sym_consteval] = ACTIONS(2811), + [anon_sym_alignas] = ACTIONS(2811), + [anon_sym__Alignas] = ACTIONS(2811), + [sym_primitive_type] = ACTIONS(2811), + [anon_sym_enum] = ACTIONS(2811), + [anon_sym_class] = ACTIONS(2811), + [anon_sym_struct] = ACTIONS(2811), + [anon_sym_union] = ACTIONS(2811), + [anon_sym_if] = ACTIONS(2811), + [anon_sym_switch] = ACTIONS(2811), + [anon_sym_case] = ACTIONS(2811), + [anon_sym_default] = ACTIONS(2811), + [anon_sym_while] = ACTIONS(2811), + [anon_sym_do] = ACTIONS(2811), + [anon_sym_for] = ACTIONS(2811), + [anon_sym_return] = ACTIONS(2811), + [anon_sym_break] = ACTIONS(2811), + [anon_sym_continue] = ACTIONS(2811), + [anon_sym_goto] = ACTIONS(2811), + [anon_sym___try] = ACTIONS(2811), + [anon_sym___leave] = ACTIONS(2811), + [anon_sym_not] = ACTIONS(2811), + [anon_sym_compl] = ACTIONS(2811), + [anon_sym_DASH_DASH] = ACTIONS(2813), + [anon_sym_PLUS_PLUS] = ACTIONS(2813), + [anon_sym_sizeof] = ACTIONS(2811), + [anon_sym___alignof__] = ACTIONS(2811), + [anon_sym___alignof] = ACTIONS(2811), + [anon_sym__alignof] = ACTIONS(2811), + [anon_sym_alignof] = ACTIONS(2811), + [anon_sym__Alignof] = ACTIONS(2811), + [anon_sym_offsetof] = ACTIONS(2811), + [anon_sym__Generic] = ACTIONS(2811), + [anon_sym_asm] = ACTIONS(2811), + [anon_sym___asm__] = ACTIONS(2811), + [anon_sym___asm] = ACTIONS(2811), + [sym_number_literal] = ACTIONS(2813), + [anon_sym_L_SQUOTE] = ACTIONS(2813), + [anon_sym_u_SQUOTE] = ACTIONS(2813), + [anon_sym_U_SQUOTE] = ACTIONS(2813), + [anon_sym_u8_SQUOTE] = ACTIONS(2813), + [anon_sym_SQUOTE] = ACTIONS(2813), + [anon_sym_L_DQUOTE] = ACTIONS(2813), + [anon_sym_u_DQUOTE] = ACTIONS(2813), + [anon_sym_U_DQUOTE] = ACTIONS(2813), + [anon_sym_u8_DQUOTE] = ACTIONS(2813), + [anon_sym_DQUOTE] = ACTIONS(2813), + [sym_true] = ACTIONS(2811), + [sym_false] = ACTIONS(2811), + [anon_sym_NULL] = ACTIONS(2811), + [anon_sym_nullptr] = ACTIONS(2811), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2815), - [anon_sym_decltype] = ACTIONS(2815), - [anon_sym_explicit] = ACTIONS(2815), - [anon_sym_typename] = ACTIONS(2815), - [anon_sym_template] = ACTIONS(2815), - [anon_sym_operator] = ACTIONS(2815), - [anon_sym_try] = ACTIONS(2815), - [anon_sym_delete] = ACTIONS(2815), - [anon_sym_throw] = ACTIONS(2815), - [anon_sym_namespace] = ACTIONS(2815), - [anon_sym_static_assert] = ACTIONS(2815), - [anon_sym_concept] = ACTIONS(2815), - [anon_sym_co_return] = ACTIONS(2815), - [anon_sym_co_yield] = ACTIONS(2815), - [anon_sym_R_DQUOTE] = ACTIONS(2817), - [anon_sym_LR_DQUOTE] = ACTIONS(2817), - [anon_sym_uR_DQUOTE] = ACTIONS(2817), - [anon_sym_UR_DQUOTE] = ACTIONS(2817), - [anon_sym_u8R_DQUOTE] = ACTIONS(2817), - [anon_sym_co_await] = ACTIONS(2815), - [anon_sym_new] = ACTIONS(2815), - [anon_sym_requires] = ACTIONS(2815), - [sym_this] = ACTIONS(2815), + [sym_auto] = ACTIONS(2811), + [anon_sym_decltype] = ACTIONS(2811), + [anon_sym_explicit] = ACTIONS(2811), + [anon_sym_typename] = ACTIONS(2811), + [anon_sym_template] = ACTIONS(2811), + [anon_sym_operator] = ACTIONS(2811), + [anon_sym_try] = ACTIONS(2811), + [anon_sym_delete] = ACTIONS(2811), + [anon_sym_throw] = ACTIONS(2811), + [anon_sym_namespace] = ACTIONS(2811), + [anon_sym_static_assert] = ACTIONS(2811), + [anon_sym_concept] = ACTIONS(2811), + [anon_sym_co_return] = ACTIONS(2811), + [anon_sym_co_yield] = ACTIONS(2811), + [anon_sym_R_DQUOTE] = ACTIONS(2813), + [anon_sym_LR_DQUOTE] = ACTIONS(2813), + [anon_sym_uR_DQUOTE] = ACTIONS(2813), + [anon_sym_UR_DQUOTE] = ACTIONS(2813), + [anon_sym_u8R_DQUOTE] = ACTIONS(2813), + [anon_sym_co_await] = ACTIONS(2811), + [anon_sym_new] = ACTIONS(2811), + [anon_sym_requires] = ACTIONS(2811), + [sym_this] = ACTIONS(2811), }, - [703] = { - [sym_identifier] = ACTIONS(2903), - [aux_sym_preproc_include_token1] = ACTIONS(2903), - [aux_sym_preproc_def_token1] = ACTIONS(2903), - [aux_sym_preproc_if_token1] = ACTIONS(2903), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2903), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2903), - [sym_preproc_directive] = ACTIONS(2903), - [anon_sym_LPAREN2] = ACTIONS(2905), - [anon_sym_BANG] = ACTIONS(2905), - [anon_sym_TILDE] = ACTIONS(2905), - [anon_sym_DASH] = ACTIONS(2903), - [anon_sym_PLUS] = ACTIONS(2903), - [anon_sym_STAR] = ACTIONS(2905), - [anon_sym_AMP_AMP] = ACTIONS(2905), - [anon_sym_AMP] = ACTIONS(2903), - [anon_sym_SEMI] = ACTIONS(2905), - [anon_sym___extension__] = ACTIONS(2903), - [anon_sym_typedef] = ACTIONS(2903), - [anon_sym_virtual] = ACTIONS(2903), - [anon_sym_extern] = ACTIONS(2903), - [anon_sym___attribute__] = ACTIONS(2903), - [anon_sym___attribute] = ACTIONS(2903), - [anon_sym_using] = ACTIONS(2903), - [anon_sym_COLON_COLON] = ACTIONS(2905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2905), - [anon_sym___declspec] = ACTIONS(2903), - [anon_sym___based] = ACTIONS(2903), - [anon_sym___cdecl] = ACTIONS(2903), - [anon_sym___clrcall] = ACTIONS(2903), - [anon_sym___stdcall] = ACTIONS(2903), - [anon_sym___fastcall] = ACTIONS(2903), - [anon_sym___thiscall] = ACTIONS(2903), - [anon_sym___vectorcall] = ACTIONS(2903), - [anon_sym_LBRACE] = ACTIONS(2905), - [anon_sym_RBRACE] = ACTIONS(2905), - [anon_sym_signed] = ACTIONS(2903), - [anon_sym_unsigned] = ACTIONS(2903), - [anon_sym_long] = ACTIONS(2903), - [anon_sym_short] = ACTIONS(2903), - [anon_sym_LBRACK] = ACTIONS(2903), - [anon_sym_static] = ACTIONS(2903), - [anon_sym_register] = ACTIONS(2903), - [anon_sym_inline] = ACTIONS(2903), - [anon_sym___inline] = ACTIONS(2903), - [anon_sym___inline__] = ACTIONS(2903), - [anon_sym___forceinline] = ACTIONS(2903), - [anon_sym_thread_local] = ACTIONS(2903), - [anon_sym___thread] = ACTIONS(2903), - [anon_sym_const] = ACTIONS(2903), - [anon_sym_constexpr] = ACTIONS(2903), - [anon_sym_volatile] = ACTIONS(2903), - [anon_sym_restrict] = ACTIONS(2903), - [anon_sym___restrict__] = ACTIONS(2903), - [anon_sym__Atomic] = ACTIONS(2903), - [anon_sym__Noreturn] = ACTIONS(2903), - [anon_sym_noreturn] = ACTIONS(2903), - [anon_sym__Nonnull] = ACTIONS(2903), - [anon_sym_mutable] = ACTIONS(2903), - [anon_sym_constinit] = ACTIONS(2903), - [anon_sym_consteval] = ACTIONS(2903), - [anon_sym_alignas] = ACTIONS(2903), - [anon_sym__Alignas] = ACTIONS(2903), - [sym_primitive_type] = ACTIONS(2903), - [anon_sym_enum] = ACTIONS(2903), - [anon_sym_class] = ACTIONS(2903), - [anon_sym_struct] = ACTIONS(2903), - [anon_sym_union] = ACTIONS(2903), - [anon_sym_if] = ACTIONS(2903), - [anon_sym_switch] = ACTIONS(2903), - [anon_sym_case] = ACTIONS(2903), - [anon_sym_default] = ACTIONS(2903), - [anon_sym_while] = ACTIONS(2903), - [anon_sym_do] = ACTIONS(2903), - [anon_sym_for] = ACTIONS(2903), - [anon_sym_return] = ACTIONS(2903), - [anon_sym_break] = ACTIONS(2903), - [anon_sym_continue] = ACTIONS(2903), - [anon_sym_goto] = ACTIONS(2903), - [anon_sym___try] = ACTIONS(2903), - [anon_sym___leave] = ACTIONS(2903), - [anon_sym_not] = ACTIONS(2903), - [anon_sym_compl] = ACTIONS(2903), - [anon_sym_DASH_DASH] = ACTIONS(2905), - [anon_sym_PLUS_PLUS] = ACTIONS(2905), - [anon_sym_sizeof] = ACTIONS(2903), - [anon_sym___alignof__] = ACTIONS(2903), - [anon_sym___alignof] = ACTIONS(2903), - [anon_sym__alignof] = ACTIONS(2903), - [anon_sym_alignof] = ACTIONS(2903), - [anon_sym__Alignof] = ACTIONS(2903), - [anon_sym_offsetof] = ACTIONS(2903), - [anon_sym__Generic] = ACTIONS(2903), - [anon_sym_asm] = ACTIONS(2903), - [anon_sym___asm__] = ACTIONS(2903), - [anon_sym___asm] = ACTIONS(2903), - [sym_number_literal] = ACTIONS(2905), - [anon_sym_L_SQUOTE] = ACTIONS(2905), - [anon_sym_u_SQUOTE] = ACTIONS(2905), - [anon_sym_U_SQUOTE] = ACTIONS(2905), - [anon_sym_u8_SQUOTE] = ACTIONS(2905), - [anon_sym_SQUOTE] = ACTIONS(2905), - [anon_sym_L_DQUOTE] = ACTIONS(2905), - [anon_sym_u_DQUOTE] = ACTIONS(2905), - [anon_sym_U_DQUOTE] = ACTIONS(2905), - [anon_sym_u8_DQUOTE] = ACTIONS(2905), - [anon_sym_DQUOTE] = ACTIONS(2905), - [sym_true] = ACTIONS(2903), - [sym_false] = ACTIONS(2903), - [anon_sym_NULL] = ACTIONS(2903), - [anon_sym_nullptr] = ACTIONS(2903), + [711] = { + [sym_identifier] = ACTIONS(2819), + [aux_sym_preproc_include_token1] = ACTIONS(2819), + [aux_sym_preproc_def_token1] = ACTIONS(2819), + [aux_sym_preproc_if_token1] = ACTIONS(2819), + [aux_sym_preproc_if_token2] = ACTIONS(2819), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2819), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2819), + [sym_preproc_directive] = ACTIONS(2819), + [anon_sym_LPAREN2] = ACTIONS(2821), + [anon_sym_BANG] = ACTIONS(2821), + [anon_sym_TILDE] = ACTIONS(2821), + [anon_sym_DASH] = ACTIONS(2819), + [anon_sym_PLUS] = ACTIONS(2819), + [anon_sym_STAR] = ACTIONS(2821), + [anon_sym_AMP_AMP] = ACTIONS(2821), + [anon_sym_AMP] = ACTIONS(2819), + [anon_sym_SEMI] = ACTIONS(2821), + [anon_sym___extension__] = ACTIONS(2819), + [anon_sym_typedef] = ACTIONS(2819), + [anon_sym_virtual] = ACTIONS(2819), + [anon_sym_extern] = ACTIONS(2819), + [anon_sym___attribute__] = ACTIONS(2819), + [anon_sym___attribute] = ACTIONS(2819), + [anon_sym_using] = ACTIONS(2819), + [anon_sym_COLON_COLON] = ACTIONS(2821), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2821), + [anon_sym___declspec] = ACTIONS(2819), + [anon_sym___based] = ACTIONS(2819), + [anon_sym___cdecl] = ACTIONS(2819), + [anon_sym___clrcall] = ACTIONS(2819), + [anon_sym___stdcall] = ACTIONS(2819), + [anon_sym___fastcall] = ACTIONS(2819), + [anon_sym___thiscall] = ACTIONS(2819), + [anon_sym___vectorcall] = ACTIONS(2819), + [anon_sym_LBRACE] = ACTIONS(2821), + [anon_sym_signed] = ACTIONS(2819), + [anon_sym_unsigned] = ACTIONS(2819), + [anon_sym_long] = ACTIONS(2819), + [anon_sym_short] = ACTIONS(2819), + [anon_sym_LBRACK] = ACTIONS(2819), + [anon_sym_static] = ACTIONS(2819), + [anon_sym_register] = ACTIONS(2819), + [anon_sym_inline] = ACTIONS(2819), + [anon_sym___inline] = ACTIONS(2819), + [anon_sym___inline__] = ACTIONS(2819), + [anon_sym___forceinline] = ACTIONS(2819), + [anon_sym_thread_local] = ACTIONS(2819), + [anon_sym___thread] = ACTIONS(2819), + [anon_sym_const] = ACTIONS(2819), + [anon_sym_constexpr] = ACTIONS(2819), + [anon_sym_volatile] = ACTIONS(2819), + [anon_sym_restrict] = ACTIONS(2819), + [anon_sym___restrict__] = ACTIONS(2819), + [anon_sym__Atomic] = ACTIONS(2819), + [anon_sym__Noreturn] = ACTIONS(2819), + [anon_sym_noreturn] = ACTIONS(2819), + [anon_sym__Nonnull] = ACTIONS(2819), + [anon_sym_mutable] = ACTIONS(2819), + [anon_sym_constinit] = ACTIONS(2819), + [anon_sym_consteval] = ACTIONS(2819), + [anon_sym_alignas] = ACTIONS(2819), + [anon_sym__Alignas] = ACTIONS(2819), + [sym_primitive_type] = ACTIONS(2819), + [anon_sym_enum] = ACTIONS(2819), + [anon_sym_class] = ACTIONS(2819), + [anon_sym_struct] = ACTIONS(2819), + [anon_sym_union] = ACTIONS(2819), + [anon_sym_if] = ACTIONS(2819), + [anon_sym_switch] = ACTIONS(2819), + [anon_sym_case] = ACTIONS(2819), + [anon_sym_default] = ACTIONS(2819), + [anon_sym_while] = ACTIONS(2819), + [anon_sym_do] = ACTIONS(2819), + [anon_sym_for] = ACTIONS(2819), + [anon_sym_return] = ACTIONS(2819), + [anon_sym_break] = ACTIONS(2819), + [anon_sym_continue] = ACTIONS(2819), + [anon_sym_goto] = ACTIONS(2819), + [anon_sym___try] = ACTIONS(2819), + [anon_sym___leave] = ACTIONS(2819), + [anon_sym_not] = ACTIONS(2819), + [anon_sym_compl] = ACTIONS(2819), + [anon_sym_DASH_DASH] = ACTIONS(2821), + [anon_sym_PLUS_PLUS] = ACTIONS(2821), + [anon_sym_sizeof] = ACTIONS(2819), + [anon_sym___alignof__] = ACTIONS(2819), + [anon_sym___alignof] = ACTIONS(2819), + [anon_sym__alignof] = ACTIONS(2819), + [anon_sym_alignof] = ACTIONS(2819), + [anon_sym__Alignof] = ACTIONS(2819), + [anon_sym_offsetof] = ACTIONS(2819), + [anon_sym__Generic] = ACTIONS(2819), + [anon_sym_asm] = ACTIONS(2819), + [anon_sym___asm__] = ACTIONS(2819), + [anon_sym___asm] = ACTIONS(2819), + [sym_number_literal] = ACTIONS(2821), + [anon_sym_L_SQUOTE] = ACTIONS(2821), + [anon_sym_u_SQUOTE] = ACTIONS(2821), + [anon_sym_U_SQUOTE] = ACTIONS(2821), + [anon_sym_u8_SQUOTE] = ACTIONS(2821), + [anon_sym_SQUOTE] = ACTIONS(2821), + [anon_sym_L_DQUOTE] = ACTIONS(2821), + [anon_sym_u_DQUOTE] = ACTIONS(2821), + [anon_sym_U_DQUOTE] = ACTIONS(2821), + [anon_sym_u8_DQUOTE] = ACTIONS(2821), + [anon_sym_DQUOTE] = ACTIONS(2821), + [sym_true] = ACTIONS(2819), + [sym_false] = ACTIONS(2819), + [anon_sym_NULL] = ACTIONS(2819), + [anon_sym_nullptr] = ACTIONS(2819), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2903), - [anon_sym_decltype] = ACTIONS(2903), - [anon_sym_explicit] = ACTIONS(2903), - [anon_sym_typename] = ACTIONS(2903), - [anon_sym_template] = ACTIONS(2903), - [anon_sym_operator] = ACTIONS(2903), - [anon_sym_try] = ACTIONS(2903), - [anon_sym_delete] = ACTIONS(2903), - [anon_sym_throw] = ACTIONS(2903), - [anon_sym_namespace] = ACTIONS(2903), - [anon_sym_static_assert] = ACTIONS(2903), - [anon_sym_concept] = ACTIONS(2903), - [anon_sym_co_return] = ACTIONS(2903), - [anon_sym_co_yield] = ACTIONS(2903), - [anon_sym_R_DQUOTE] = ACTIONS(2905), - [anon_sym_LR_DQUOTE] = ACTIONS(2905), - [anon_sym_uR_DQUOTE] = ACTIONS(2905), - [anon_sym_UR_DQUOTE] = ACTIONS(2905), - [anon_sym_u8R_DQUOTE] = ACTIONS(2905), - [anon_sym_co_await] = ACTIONS(2903), - [anon_sym_new] = ACTIONS(2903), - [anon_sym_requires] = ACTIONS(2903), - [sym_this] = ACTIONS(2903), + [sym_auto] = ACTIONS(2819), + [anon_sym_decltype] = ACTIONS(2819), + [anon_sym_explicit] = ACTIONS(2819), + [anon_sym_typename] = ACTIONS(2819), + [anon_sym_template] = ACTIONS(2819), + [anon_sym_operator] = ACTIONS(2819), + [anon_sym_try] = ACTIONS(2819), + [anon_sym_delete] = ACTIONS(2819), + [anon_sym_throw] = ACTIONS(2819), + [anon_sym_namespace] = ACTIONS(2819), + [anon_sym_static_assert] = ACTIONS(2819), + [anon_sym_concept] = ACTIONS(2819), + [anon_sym_co_return] = ACTIONS(2819), + [anon_sym_co_yield] = ACTIONS(2819), + [anon_sym_R_DQUOTE] = ACTIONS(2821), + [anon_sym_LR_DQUOTE] = ACTIONS(2821), + [anon_sym_uR_DQUOTE] = ACTIONS(2821), + [anon_sym_UR_DQUOTE] = ACTIONS(2821), + [anon_sym_u8R_DQUOTE] = ACTIONS(2821), + [anon_sym_co_await] = ACTIONS(2819), + [anon_sym_new] = ACTIONS(2819), + [anon_sym_requires] = ACTIONS(2819), + [sym_this] = ACTIONS(2819), }, - [704] = { + [712] = { [sym_identifier] = ACTIONS(2827), [aux_sym_preproc_include_token1] = ACTIONS(2827), [aux_sym_preproc_def_token1] = ACTIONS(2827), @@ -142930,3572 +144345,6699 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(2827), [anon_sym_nullptr] = ACTIONS(2827), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2827), - [anon_sym_decltype] = ACTIONS(2827), - [anon_sym_explicit] = ACTIONS(2827), - [anon_sym_typename] = ACTIONS(2827), - [anon_sym_template] = ACTIONS(2827), - [anon_sym_operator] = ACTIONS(2827), - [anon_sym_try] = ACTIONS(2827), - [anon_sym_delete] = ACTIONS(2827), - [anon_sym_throw] = ACTIONS(2827), - [anon_sym_namespace] = ACTIONS(2827), - [anon_sym_static_assert] = ACTIONS(2827), - [anon_sym_concept] = ACTIONS(2827), - [anon_sym_co_return] = ACTIONS(2827), - [anon_sym_co_yield] = ACTIONS(2827), - [anon_sym_R_DQUOTE] = ACTIONS(2829), - [anon_sym_LR_DQUOTE] = ACTIONS(2829), - [anon_sym_uR_DQUOTE] = ACTIONS(2829), - [anon_sym_UR_DQUOTE] = ACTIONS(2829), - [anon_sym_u8R_DQUOTE] = ACTIONS(2829), - [anon_sym_co_await] = ACTIONS(2827), - [anon_sym_new] = ACTIONS(2827), - [anon_sym_requires] = ACTIONS(2827), - [sym_this] = ACTIONS(2827), + [sym_auto] = ACTIONS(2827), + [anon_sym_decltype] = ACTIONS(2827), + [anon_sym_explicit] = ACTIONS(2827), + [anon_sym_typename] = ACTIONS(2827), + [anon_sym_template] = ACTIONS(2827), + [anon_sym_operator] = ACTIONS(2827), + [anon_sym_try] = ACTIONS(2827), + [anon_sym_delete] = ACTIONS(2827), + [anon_sym_throw] = ACTIONS(2827), + [anon_sym_namespace] = ACTIONS(2827), + [anon_sym_static_assert] = ACTIONS(2827), + [anon_sym_concept] = ACTIONS(2827), + [anon_sym_co_return] = ACTIONS(2827), + [anon_sym_co_yield] = ACTIONS(2827), + [anon_sym_R_DQUOTE] = ACTIONS(2829), + [anon_sym_LR_DQUOTE] = ACTIONS(2829), + [anon_sym_uR_DQUOTE] = ACTIONS(2829), + [anon_sym_UR_DQUOTE] = ACTIONS(2829), + [anon_sym_u8R_DQUOTE] = ACTIONS(2829), + [anon_sym_co_await] = ACTIONS(2827), + [anon_sym_new] = ACTIONS(2827), + [anon_sym_requires] = ACTIONS(2827), + [sym_this] = ACTIONS(2827), + }, + [713] = { + [sym_identifier] = ACTIONS(2927), + [aux_sym_preproc_include_token1] = ACTIONS(2927), + [aux_sym_preproc_def_token1] = ACTIONS(2927), + [aux_sym_preproc_if_token1] = ACTIONS(2927), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2927), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2927), + [sym_preproc_directive] = ACTIONS(2927), + [anon_sym_LPAREN2] = ACTIONS(2929), + [anon_sym_BANG] = ACTIONS(2929), + [anon_sym_TILDE] = ACTIONS(2929), + [anon_sym_DASH] = ACTIONS(2927), + [anon_sym_PLUS] = ACTIONS(2927), + [anon_sym_STAR] = ACTIONS(2929), + [anon_sym_AMP_AMP] = ACTIONS(2929), + [anon_sym_AMP] = ACTIONS(2927), + [anon_sym_SEMI] = ACTIONS(2929), + [anon_sym___extension__] = ACTIONS(2927), + [anon_sym_typedef] = ACTIONS(2927), + [anon_sym_virtual] = ACTIONS(2927), + [anon_sym_extern] = ACTIONS(2927), + [anon_sym___attribute__] = ACTIONS(2927), + [anon_sym___attribute] = ACTIONS(2927), + [anon_sym_using] = ACTIONS(2927), + [anon_sym_COLON_COLON] = ACTIONS(2929), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2929), + [anon_sym___declspec] = ACTIONS(2927), + [anon_sym___based] = ACTIONS(2927), + [anon_sym___cdecl] = ACTIONS(2927), + [anon_sym___clrcall] = ACTIONS(2927), + [anon_sym___stdcall] = ACTIONS(2927), + [anon_sym___fastcall] = ACTIONS(2927), + [anon_sym___thiscall] = ACTIONS(2927), + [anon_sym___vectorcall] = ACTIONS(2927), + [anon_sym_LBRACE] = ACTIONS(2929), + [anon_sym_RBRACE] = ACTIONS(2929), + [anon_sym_signed] = ACTIONS(2927), + [anon_sym_unsigned] = ACTIONS(2927), + [anon_sym_long] = ACTIONS(2927), + [anon_sym_short] = ACTIONS(2927), + [anon_sym_LBRACK] = ACTIONS(2927), + [anon_sym_static] = ACTIONS(2927), + [anon_sym_register] = ACTIONS(2927), + [anon_sym_inline] = ACTIONS(2927), + [anon_sym___inline] = ACTIONS(2927), + [anon_sym___inline__] = ACTIONS(2927), + [anon_sym___forceinline] = ACTIONS(2927), + [anon_sym_thread_local] = ACTIONS(2927), + [anon_sym___thread] = ACTIONS(2927), + [anon_sym_const] = ACTIONS(2927), + [anon_sym_constexpr] = ACTIONS(2927), + [anon_sym_volatile] = ACTIONS(2927), + [anon_sym_restrict] = ACTIONS(2927), + [anon_sym___restrict__] = ACTIONS(2927), + [anon_sym__Atomic] = ACTIONS(2927), + [anon_sym__Noreturn] = ACTIONS(2927), + [anon_sym_noreturn] = ACTIONS(2927), + [anon_sym__Nonnull] = ACTIONS(2927), + [anon_sym_mutable] = ACTIONS(2927), + [anon_sym_constinit] = ACTIONS(2927), + [anon_sym_consteval] = ACTIONS(2927), + [anon_sym_alignas] = ACTIONS(2927), + [anon_sym__Alignas] = ACTIONS(2927), + [sym_primitive_type] = ACTIONS(2927), + [anon_sym_enum] = ACTIONS(2927), + [anon_sym_class] = ACTIONS(2927), + [anon_sym_struct] = ACTIONS(2927), + [anon_sym_union] = ACTIONS(2927), + [anon_sym_if] = ACTIONS(2927), + [anon_sym_switch] = ACTIONS(2927), + [anon_sym_case] = ACTIONS(2927), + [anon_sym_default] = ACTIONS(2927), + [anon_sym_while] = ACTIONS(2927), + [anon_sym_do] = ACTIONS(2927), + [anon_sym_for] = ACTIONS(2927), + [anon_sym_return] = ACTIONS(2927), + [anon_sym_break] = ACTIONS(2927), + [anon_sym_continue] = ACTIONS(2927), + [anon_sym_goto] = ACTIONS(2927), + [anon_sym___try] = ACTIONS(2927), + [anon_sym___leave] = ACTIONS(2927), + [anon_sym_not] = ACTIONS(2927), + [anon_sym_compl] = ACTIONS(2927), + [anon_sym_DASH_DASH] = ACTIONS(2929), + [anon_sym_PLUS_PLUS] = ACTIONS(2929), + [anon_sym_sizeof] = ACTIONS(2927), + [anon_sym___alignof__] = ACTIONS(2927), + [anon_sym___alignof] = ACTIONS(2927), + [anon_sym__alignof] = ACTIONS(2927), + [anon_sym_alignof] = ACTIONS(2927), + [anon_sym__Alignof] = ACTIONS(2927), + [anon_sym_offsetof] = ACTIONS(2927), + [anon_sym__Generic] = ACTIONS(2927), + [anon_sym_asm] = ACTIONS(2927), + [anon_sym___asm__] = ACTIONS(2927), + [anon_sym___asm] = ACTIONS(2927), + [sym_number_literal] = ACTIONS(2929), + [anon_sym_L_SQUOTE] = ACTIONS(2929), + [anon_sym_u_SQUOTE] = ACTIONS(2929), + [anon_sym_U_SQUOTE] = ACTIONS(2929), + [anon_sym_u8_SQUOTE] = ACTIONS(2929), + [anon_sym_SQUOTE] = ACTIONS(2929), + [anon_sym_L_DQUOTE] = ACTIONS(2929), + [anon_sym_u_DQUOTE] = ACTIONS(2929), + [anon_sym_U_DQUOTE] = ACTIONS(2929), + [anon_sym_u8_DQUOTE] = ACTIONS(2929), + [anon_sym_DQUOTE] = ACTIONS(2929), + [sym_true] = ACTIONS(2927), + [sym_false] = ACTIONS(2927), + [anon_sym_NULL] = ACTIONS(2927), + [anon_sym_nullptr] = ACTIONS(2927), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2927), + [anon_sym_decltype] = ACTIONS(2927), + [anon_sym_explicit] = ACTIONS(2927), + [anon_sym_typename] = ACTIONS(2927), + [anon_sym_template] = ACTIONS(2927), + [anon_sym_operator] = ACTIONS(2927), + [anon_sym_try] = ACTIONS(2927), + [anon_sym_delete] = ACTIONS(2927), + [anon_sym_throw] = ACTIONS(2927), + [anon_sym_namespace] = ACTIONS(2927), + [anon_sym_static_assert] = ACTIONS(2927), + [anon_sym_concept] = ACTIONS(2927), + [anon_sym_co_return] = ACTIONS(2927), + [anon_sym_co_yield] = ACTIONS(2927), + [anon_sym_R_DQUOTE] = ACTIONS(2929), + [anon_sym_LR_DQUOTE] = ACTIONS(2929), + [anon_sym_uR_DQUOTE] = ACTIONS(2929), + [anon_sym_UR_DQUOTE] = ACTIONS(2929), + [anon_sym_u8R_DQUOTE] = ACTIONS(2929), + [anon_sym_co_await] = ACTIONS(2927), + [anon_sym_new] = ACTIONS(2927), + [anon_sym_requires] = ACTIONS(2927), + [sym_this] = ACTIONS(2927), + }, + [714] = { + [sym_identifier] = ACTIONS(2839), + [aux_sym_preproc_include_token1] = ACTIONS(2839), + [aux_sym_preproc_def_token1] = ACTIONS(2839), + [aux_sym_preproc_if_token1] = ACTIONS(2839), + [aux_sym_preproc_if_token2] = ACTIONS(2839), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2839), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2839), + [sym_preproc_directive] = ACTIONS(2839), + [anon_sym_LPAREN2] = ACTIONS(2841), + [anon_sym_BANG] = ACTIONS(2841), + [anon_sym_TILDE] = ACTIONS(2841), + [anon_sym_DASH] = ACTIONS(2839), + [anon_sym_PLUS] = ACTIONS(2839), + [anon_sym_STAR] = ACTIONS(2841), + [anon_sym_AMP_AMP] = ACTIONS(2841), + [anon_sym_AMP] = ACTIONS(2839), + [anon_sym_SEMI] = ACTIONS(2841), + [anon_sym___extension__] = ACTIONS(2839), + [anon_sym_typedef] = ACTIONS(2839), + [anon_sym_virtual] = ACTIONS(2839), + [anon_sym_extern] = ACTIONS(2839), + [anon_sym___attribute__] = ACTIONS(2839), + [anon_sym___attribute] = ACTIONS(2839), + [anon_sym_using] = ACTIONS(2839), + [anon_sym_COLON_COLON] = ACTIONS(2841), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2841), + [anon_sym___declspec] = ACTIONS(2839), + [anon_sym___based] = ACTIONS(2839), + [anon_sym___cdecl] = ACTIONS(2839), + [anon_sym___clrcall] = ACTIONS(2839), + [anon_sym___stdcall] = ACTIONS(2839), + [anon_sym___fastcall] = ACTIONS(2839), + [anon_sym___thiscall] = ACTIONS(2839), + [anon_sym___vectorcall] = ACTIONS(2839), + [anon_sym_LBRACE] = ACTIONS(2841), + [anon_sym_signed] = ACTIONS(2839), + [anon_sym_unsigned] = ACTIONS(2839), + [anon_sym_long] = ACTIONS(2839), + [anon_sym_short] = ACTIONS(2839), + [anon_sym_LBRACK] = ACTIONS(2839), + [anon_sym_static] = ACTIONS(2839), + [anon_sym_register] = ACTIONS(2839), + [anon_sym_inline] = ACTIONS(2839), + [anon_sym___inline] = ACTIONS(2839), + [anon_sym___inline__] = ACTIONS(2839), + [anon_sym___forceinline] = ACTIONS(2839), + [anon_sym_thread_local] = ACTIONS(2839), + [anon_sym___thread] = ACTIONS(2839), + [anon_sym_const] = ACTIONS(2839), + [anon_sym_constexpr] = ACTIONS(2839), + [anon_sym_volatile] = ACTIONS(2839), + [anon_sym_restrict] = ACTIONS(2839), + [anon_sym___restrict__] = ACTIONS(2839), + [anon_sym__Atomic] = ACTIONS(2839), + [anon_sym__Noreturn] = ACTIONS(2839), + [anon_sym_noreturn] = ACTIONS(2839), + [anon_sym__Nonnull] = ACTIONS(2839), + [anon_sym_mutable] = ACTIONS(2839), + [anon_sym_constinit] = ACTIONS(2839), + [anon_sym_consteval] = ACTIONS(2839), + [anon_sym_alignas] = ACTIONS(2839), + [anon_sym__Alignas] = ACTIONS(2839), + [sym_primitive_type] = ACTIONS(2839), + [anon_sym_enum] = ACTIONS(2839), + [anon_sym_class] = ACTIONS(2839), + [anon_sym_struct] = ACTIONS(2839), + [anon_sym_union] = ACTIONS(2839), + [anon_sym_if] = ACTIONS(2839), + [anon_sym_switch] = ACTIONS(2839), + [anon_sym_case] = ACTIONS(2839), + [anon_sym_default] = ACTIONS(2839), + [anon_sym_while] = ACTIONS(2839), + [anon_sym_do] = ACTIONS(2839), + [anon_sym_for] = ACTIONS(2839), + [anon_sym_return] = ACTIONS(2839), + [anon_sym_break] = ACTIONS(2839), + [anon_sym_continue] = ACTIONS(2839), + [anon_sym_goto] = ACTIONS(2839), + [anon_sym___try] = ACTIONS(2839), + [anon_sym___leave] = ACTIONS(2839), + [anon_sym_not] = ACTIONS(2839), + [anon_sym_compl] = ACTIONS(2839), + [anon_sym_DASH_DASH] = ACTIONS(2841), + [anon_sym_PLUS_PLUS] = ACTIONS(2841), + [anon_sym_sizeof] = ACTIONS(2839), + [anon_sym___alignof__] = ACTIONS(2839), + [anon_sym___alignof] = ACTIONS(2839), + [anon_sym__alignof] = ACTIONS(2839), + [anon_sym_alignof] = ACTIONS(2839), + [anon_sym__Alignof] = ACTIONS(2839), + [anon_sym_offsetof] = ACTIONS(2839), + [anon_sym__Generic] = ACTIONS(2839), + [anon_sym_asm] = ACTIONS(2839), + [anon_sym___asm__] = ACTIONS(2839), + [anon_sym___asm] = ACTIONS(2839), + [sym_number_literal] = ACTIONS(2841), + [anon_sym_L_SQUOTE] = ACTIONS(2841), + [anon_sym_u_SQUOTE] = ACTIONS(2841), + [anon_sym_U_SQUOTE] = ACTIONS(2841), + [anon_sym_u8_SQUOTE] = ACTIONS(2841), + [anon_sym_SQUOTE] = ACTIONS(2841), + [anon_sym_L_DQUOTE] = ACTIONS(2841), + [anon_sym_u_DQUOTE] = ACTIONS(2841), + [anon_sym_U_DQUOTE] = ACTIONS(2841), + [anon_sym_u8_DQUOTE] = ACTIONS(2841), + [anon_sym_DQUOTE] = ACTIONS(2841), + [sym_true] = ACTIONS(2839), + [sym_false] = ACTIONS(2839), + [anon_sym_NULL] = ACTIONS(2839), + [anon_sym_nullptr] = ACTIONS(2839), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2839), + [anon_sym_decltype] = ACTIONS(2839), + [anon_sym_explicit] = ACTIONS(2839), + [anon_sym_typename] = ACTIONS(2839), + [anon_sym_template] = ACTIONS(2839), + [anon_sym_operator] = ACTIONS(2839), + [anon_sym_try] = ACTIONS(2839), + [anon_sym_delete] = ACTIONS(2839), + [anon_sym_throw] = ACTIONS(2839), + [anon_sym_namespace] = ACTIONS(2839), + [anon_sym_static_assert] = ACTIONS(2839), + [anon_sym_concept] = ACTIONS(2839), + [anon_sym_co_return] = ACTIONS(2839), + [anon_sym_co_yield] = ACTIONS(2839), + [anon_sym_R_DQUOTE] = ACTIONS(2841), + [anon_sym_LR_DQUOTE] = ACTIONS(2841), + [anon_sym_uR_DQUOTE] = ACTIONS(2841), + [anon_sym_UR_DQUOTE] = ACTIONS(2841), + [anon_sym_u8R_DQUOTE] = ACTIONS(2841), + [anon_sym_co_await] = ACTIONS(2839), + [anon_sym_new] = ACTIONS(2839), + [anon_sym_requires] = ACTIONS(2839), + [sym_this] = ACTIONS(2839), + }, + [715] = { + [sym_identifier] = ACTIONS(2927), + [aux_sym_preproc_include_token1] = ACTIONS(2927), + [aux_sym_preproc_def_token1] = ACTIONS(2927), + [aux_sym_preproc_if_token1] = ACTIONS(2927), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2927), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2927), + [sym_preproc_directive] = ACTIONS(2927), + [anon_sym_LPAREN2] = ACTIONS(2929), + [anon_sym_BANG] = ACTIONS(2929), + [anon_sym_TILDE] = ACTIONS(2929), + [anon_sym_DASH] = ACTIONS(2927), + [anon_sym_PLUS] = ACTIONS(2927), + [anon_sym_STAR] = ACTIONS(2929), + [anon_sym_AMP_AMP] = ACTIONS(2929), + [anon_sym_AMP] = ACTIONS(2927), + [anon_sym_SEMI] = ACTIONS(2929), + [anon_sym___extension__] = ACTIONS(2927), + [anon_sym_typedef] = ACTIONS(2927), + [anon_sym_virtual] = ACTIONS(2927), + [anon_sym_extern] = ACTIONS(2927), + [anon_sym___attribute__] = ACTIONS(2927), + [anon_sym___attribute] = ACTIONS(2927), + [anon_sym_using] = ACTIONS(2927), + [anon_sym_COLON_COLON] = ACTIONS(2929), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2929), + [anon_sym___declspec] = ACTIONS(2927), + [anon_sym___based] = ACTIONS(2927), + [anon_sym___cdecl] = ACTIONS(2927), + [anon_sym___clrcall] = ACTIONS(2927), + [anon_sym___stdcall] = ACTIONS(2927), + [anon_sym___fastcall] = ACTIONS(2927), + [anon_sym___thiscall] = ACTIONS(2927), + [anon_sym___vectorcall] = ACTIONS(2927), + [anon_sym_LBRACE] = ACTIONS(2929), + [anon_sym_RBRACE] = ACTIONS(2929), + [anon_sym_signed] = ACTIONS(2927), + [anon_sym_unsigned] = ACTIONS(2927), + [anon_sym_long] = ACTIONS(2927), + [anon_sym_short] = ACTIONS(2927), + [anon_sym_LBRACK] = ACTIONS(2927), + [anon_sym_static] = ACTIONS(2927), + [anon_sym_register] = ACTIONS(2927), + [anon_sym_inline] = ACTIONS(2927), + [anon_sym___inline] = ACTIONS(2927), + [anon_sym___inline__] = ACTIONS(2927), + [anon_sym___forceinline] = ACTIONS(2927), + [anon_sym_thread_local] = ACTIONS(2927), + [anon_sym___thread] = ACTIONS(2927), + [anon_sym_const] = ACTIONS(2927), + [anon_sym_constexpr] = ACTIONS(2927), + [anon_sym_volatile] = ACTIONS(2927), + [anon_sym_restrict] = ACTIONS(2927), + [anon_sym___restrict__] = ACTIONS(2927), + [anon_sym__Atomic] = ACTIONS(2927), + [anon_sym__Noreturn] = ACTIONS(2927), + [anon_sym_noreturn] = ACTIONS(2927), + [anon_sym__Nonnull] = ACTIONS(2927), + [anon_sym_mutable] = ACTIONS(2927), + [anon_sym_constinit] = ACTIONS(2927), + [anon_sym_consteval] = ACTIONS(2927), + [anon_sym_alignas] = ACTIONS(2927), + [anon_sym__Alignas] = ACTIONS(2927), + [sym_primitive_type] = ACTIONS(2927), + [anon_sym_enum] = ACTIONS(2927), + [anon_sym_class] = ACTIONS(2927), + [anon_sym_struct] = ACTIONS(2927), + [anon_sym_union] = ACTIONS(2927), + [anon_sym_if] = ACTIONS(2927), + [anon_sym_switch] = ACTIONS(2927), + [anon_sym_case] = ACTIONS(2927), + [anon_sym_default] = ACTIONS(2927), + [anon_sym_while] = ACTIONS(2927), + [anon_sym_do] = ACTIONS(2927), + [anon_sym_for] = ACTIONS(2927), + [anon_sym_return] = ACTIONS(2927), + [anon_sym_break] = ACTIONS(2927), + [anon_sym_continue] = ACTIONS(2927), + [anon_sym_goto] = ACTIONS(2927), + [anon_sym___try] = ACTIONS(2927), + [anon_sym___leave] = ACTIONS(2927), + [anon_sym_not] = ACTIONS(2927), + [anon_sym_compl] = ACTIONS(2927), + [anon_sym_DASH_DASH] = ACTIONS(2929), + [anon_sym_PLUS_PLUS] = ACTIONS(2929), + [anon_sym_sizeof] = ACTIONS(2927), + [anon_sym___alignof__] = ACTIONS(2927), + [anon_sym___alignof] = ACTIONS(2927), + [anon_sym__alignof] = ACTIONS(2927), + [anon_sym_alignof] = ACTIONS(2927), + [anon_sym__Alignof] = ACTIONS(2927), + [anon_sym_offsetof] = ACTIONS(2927), + [anon_sym__Generic] = ACTIONS(2927), + [anon_sym_asm] = ACTIONS(2927), + [anon_sym___asm__] = ACTIONS(2927), + [anon_sym___asm] = ACTIONS(2927), + [sym_number_literal] = ACTIONS(2929), + [anon_sym_L_SQUOTE] = ACTIONS(2929), + [anon_sym_u_SQUOTE] = ACTIONS(2929), + [anon_sym_U_SQUOTE] = ACTIONS(2929), + [anon_sym_u8_SQUOTE] = ACTIONS(2929), + [anon_sym_SQUOTE] = ACTIONS(2929), + [anon_sym_L_DQUOTE] = ACTIONS(2929), + [anon_sym_u_DQUOTE] = ACTIONS(2929), + [anon_sym_U_DQUOTE] = ACTIONS(2929), + [anon_sym_u8_DQUOTE] = ACTIONS(2929), + [anon_sym_DQUOTE] = ACTIONS(2929), + [sym_true] = ACTIONS(2927), + [sym_false] = ACTIONS(2927), + [anon_sym_NULL] = ACTIONS(2927), + [anon_sym_nullptr] = ACTIONS(2927), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2927), + [anon_sym_decltype] = ACTIONS(2927), + [anon_sym_explicit] = ACTIONS(2927), + [anon_sym_typename] = ACTIONS(2927), + [anon_sym_template] = ACTIONS(2927), + [anon_sym_operator] = ACTIONS(2927), + [anon_sym_try] = ACTIONS(2927), + [anon_sym_delete] = ACTIONS(2927), + [anon_sym_throw] = ACTIONS(2927), + [anon_sym_namespace] = ACTIONS(2927), + [anon_sym_static_assert] = ACTIONS(2927), + [anon_sym_concept] = ACTIONS(2927), + [anon_sym_co_return] = ACTIONS(2927), + [anon_sym_co_yield] = ACTIONS(2927), + [anon_sym_R_DQUOTE] = ACTIONS(2929), + [anon_sym_LR_DQUOTE] = ACTIONS(2929), + [anon_sym_uR_DQUOTE] = ACTIONS(2929), + [anon_sym_UR_DQUOTE] = ACTIONS(2929), + [anon_sym_u8R_DQUOTE] = ACTIONS(2929), + [anon_sym_co_await] = ACTIONS(2927), + [anon_sym_new] = ACTIONS(2927), + [anon_sym_requires] = ACTIONS(2927), + [sym_this] = ACTIONS(2927), + }, + [716] = { + [sym_identifier] = ACTIONS(2931), + [aux_sym_preproc_include_token1] = ACTIONS(2931), + [aux_sym_preproc_def_token1] = ACTIONS(2931), + [aux_sym_preproc_if_token1] = ACTIONS(2931), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2931), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2931), + [sym_preproc_directive] = ACTIONS(2931), + [anon_sym_LPAREN2] = ACTIONS(2933), + [anon_sym_BANG] = ACTIONS(2933), + [anon_sym_TILDE] = ACTIONS(2933), + [anon_sym_DASH] = ACTIONS(2931), + [anon_sym_PLUS] = ACTIONS(2931), + [anon_sym_STAR] = ACTIONS(2933), + [anon_sym_AMP_AMP] = ACTIONS(2933), + [anon_sym_AMP] = ACTIONS(2931), + [anon_sym_SEMI] = ACTIONS(2933), + [anon_sym___extension__] = ACTIONS(2931), + [anon_sym_typedef] = ACTIONS(2931), + [anon_sym_virtual] = ACTIONS(2931), + [anon_sym_extern] = ACTIONS(2931), + [anon_sym___attribute__] = ACTIONS(2931), + [anon_sym___attribute] = ACTIONS(2931), + [anon_sym_using] = ACTIONS(2931), + [anon_sym_COLON_COLON] = ACTIONS(2933), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2933), + [anon_sym___declspec] = ACTIONS(2931), + [anon_sym___based] = ACTIONS(2931), + [anon_sym___cdecl] = ACTIONS(2931), + [anon_sym___clrcall] = ACTIONS(2931), + [anon_sym___stdcall] = ACTIONS(2931), + [anon_sym___fastcall] = ACTIONS(2931), + [anon_sym___thiscall] = ACTIONS(2931), + [anon_sym___vectorcall] = ACTIONS(2931), + [anon_sym_LBRACE] = ACTIONS(2933), + [anon_sym_RBRACE] = ACTIONS(2933), + [anon_sym_signed] = ACTIONS(2931), + [anon_sym_unsigned] = ACTIONS(2931), + [anon_sym_long] = ACTIONS(2931), + [anon_sym_short] = ACTIONS(2931), + [anon_sym_LBRACK] = ACTIONS(2931), + [anon_sym_static] = ACTIONS(2931), + [anon_sym_register] = ACTIONS(2931), + [anon_sym_inline] = ACTIONS(2931), + [anon_sym___inline] = ACTIONS(2931), + [anon_sym___inline__] = ACTIONS(2931), + [anon_sym___forceinline] = ACTIONS(2931), + [anon_sym_thread_local] = ACTIONS(2931), + [anon_sym___thread] = ACTIONS(2931), + [anon_sym_const] = ACTIONS(2931), + [anon_sym_constexpr] = ACTIONS(2931), + [anon_sym_volatile] = ACTIONS(2931), + [anon_sym_restrict] = ACTIONS(2931), + [anon_sym___restrict__] = ACTIONS(2931), + [anon_sym__Atomic] = ACTIONS(2931), + [anon_sym__Noreturn] = ACTIONS(2931), + [anon_sym_noreturn] = ACTIONS(2931), + [anon_sym__Nonnull] = ACTIONS(2931), + [anon_sym_mutable] = ACTIONS(2931), + [anon_sym_constinit] = ACTIONS(2931), + [anon_sym_consteval] = ACTIONS(2931), + [anon_sym_alignas] = ACTIONS(2931), + [anon_sym__Alignas] = ACTIONS(2931), + [sym_primitive_type] = ACTIONS(2931), + [anon_sym_enum] = ACTIONS(2931), + [anon_sym_class] = ACTIONS(2931), + [anon_sym_struct] = ACTIONS(2931), + [anon_sym_union] = ACTIONS(2931), + [anon_sym_if] = ACTIONS(2931), + [anon_sym_switch] = ACTIONS(2931), + [anon_sym_case] = ACTIONS(2931), + [anon_sym_default] = ACTIONS(2931), + [anon_sym_while] = ACTIONS(2931), + [anon_sym_do] = ACTIONS(2931), + [anon_sym_for] = ACTIONS(2931), + [anon_sym_return] = ACTIONS(2931), + [anon_sym_break] = ACTIONS(2931), + [anon_sym_continue] = ACTIONS(2931), + [anon_sym_goto] = ACTIONS(2931), + [anon_sym___try] = ACTIONS(2931), + [anon_sym___leave] = ACTIONS(2931), + [anon_sym_not] = ACTIONS(2931), + [anon_sym_compl] = ACTIONS(2931), + [anon_sym_DASH_DASH] = ACTIONS(2933), + [anon_sym_PLUS_PLUS] = ACTIONS(2933), + [anon_sym_sizeof] = ACTIONS(2931), + [anon_sym___alignof__] = ACTIONS(2931), + [anon_sym___alignof] = ACTIONS(2931), + [anon_sym__alignof] = ACTIONS(2931), + [anon_sym_alignof] = ACTIONS(2931), + [anon_sym__Alignof] = ACTIONS(2931), + [anon_sym_offsetof] = ACTIONS(2931), + [anon_sym__Generic] = ACTIONS(2931), + [anon_sym_asm] = ACTIONS(2931), + [anon_sym___asm__] = ACTIONS(2931), + [anon_sym___asm] = ACTIONS(2931), + [sym_number_literal] = ACTIONS(2933), + [anon_sym_L_SQUOTE] = ACTIONS(2933), + [anon_sym_u_SQUOTE] = ACTIONS(2933), + [anon_sym_U_SQUOTE] = ACTIONS(2933), + [anon_sym_u8_SQUOTE] = ACTIONS(2933), + [anon_sym_SQUOTE] = ACTIONS(2933), + [anon_sym_L_DQUOTE] = ACTIONS(2933), + [anon_sym_u_DQUOTE] = ACTIONS(2933), + [anon_sym_U_DQUOTE] = ACTIONS(2933), + [anon_sym_u8_DQUOTE] = ACTIONS(2933), + [anon_sym_DQUOTE] = ACTIONS(2933), + [sym_true] = ACTIONS(2931), + [sym_false] = ACTIONS(2931), + [anon_sym_NULL] = ACTIONS(2931), + [anon_sym_nullptr] = ACTIONS(2931), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2931), + [anon_sym_decltype] = ACTIONS(2931), + [anon_sym_explicit] = ACTIONS(2931), + [anon_sym_typename] = ACTIONS(2931), + [anon_sym_template] = ACTIONS(2931), + [anon_sym_operator] = ACTIONS(2931), + [anon_sym_try] = ACTIONS(2931), + [anon_sym_delete] = ACTIONS(2931), + [anon_sym_throw] = ACTIONS(2931), + [anon_sym_namespace] = ACTIONS(2931), + [anon_sym_static_assert] = ACTIONS(2931), + [anon_sym_concept] = ACTIONS(2931), + [anon_sym_co_return] = ACTIONS(2931), + [anon_sym_co_yield] = ACTIONS(2931), + [anon_sym_R_DQUOTE] = ACTIONS(2933), + [anon_sym_LR_DQUOTE] = ACTIONS(2933), + [anon_sym_uR_DQUOTE] = ACTIONS(2933), + [anon_sym_UR_DQUOTE] = ACTIONS(2933), + [anon_sym_u8R_DQUOTE] = ACTIONS(2933), + [anon_sym_co_await] = ACTIONS(2931), + [anon_sym_new] = ACTIONS(2931), + [anon_sym_requires] = ACTIONS(2931), + [sym_this] = ACTIONS(2931), + }, + [717] = { + [sym_identifier] = ACTIONS(2859), + [aux_sym_preproc_include_token1] = ACTIONS(2859), + [aux_sym_preproc_def_token1] = ACTIONS(2859), + [aux_sym_preproc_if_token1] = ACTIONS(2859), + [aux_sym_preproc_if_token2] = ACTIONS(2859), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), + [sym_preproc_directive] = ACTIONS(2859), + [anon_sym_LPAREN2] = ACTIONS(2861), + [anon_sym_BANG] = ACTIONS(2861), + [anon_sym_TILDE] = ACTIONS(2861), + [anon_sym_DASH] = ACTIONS(2859), + [anon_sym_PLUS] = ACTIONS(2859), + [anon_sym_STAR] = ACTIONS(2861), + [anon_sym_AMP_AMP] = ACTIONS(2861), + [anon_sym_AMP] = ACTIONS(2859), + [anon_sym_SEMI] = ACTIONS(2861), + [anon_sym___extension__] = ACTIONS(2859), + [anon_sym_typedef] = ACTIONS(2859), + [anon_sym_virtual] = ACTIONS(2859), + [anon_sym_extern] = ACTIONS(2859), + [anon_sym___attribute__] = ACTIONS(2859), + [anon_sym___attribute] = ACTIONS(2859), + [anon_sym_using] = ACTIONS(2859), + [anon_sym_COLON_COLON] = ACTIONS(2861), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), + [anon_sym___declspec] = ACTIONS(2859), + [anon_sym___based] = ACTIONS(2859), + [anon_sym___cdecl] = ACTIONS(2859), + [anon_sym___clrcall] = ACTIONS(2859), + [anon_sym___stdcall] = ACTIONS(2859), + [anon_sym___fastcall] = ACTIONS(2859), + [anon_sym___thiscall] = ACTIONS(2859), + [anon_sym___vectorcall] = ACTIONS(2859), + [anon_sym_LBRACE] = ACTIONS(2861), + [anon_sym_signed] = ACTIONS(2859), + [anon_sym_unsigned] = ACTIONS(2859), + [anon_sym_long] = ACTIONS(2859), + [anon_sym_short] = ACTIONS(2859), + [anon_sym_LBRACK] = ACTIONS(2859), + [anon_sym_static] = ACTIONS(2859), + [anon_sym_register] = ACTIONS(2859), + [anon_sym_inline] = ACTIONS(2859), + [anon_sym___inline] = ACTIONS(2859), + [anon_sym___inline__] = ACTIONS(2859), + [anon_sym___forceinline] = ACTIONS(2859), + [anon_sym_thread_local] = ACTIONS(2859), + [anon_sym___thread] = ACTIONS(2859), + [anon_sym_const] = ACTIONS(2859), + [anon_sym_constexpr] = ACTIONS(2859), + [anon_sym_volatile] = ACTIONS(2859), + [anon_sym_restrict] = ACTIONS(2859), + [anon_sym___restrict__] = ACTIONS(2859), + [anon_sym__Atomic] = ACTIONS(2859), + [anon_sym__Noreturn] = ACTIONS(2859), + [anon_sym_noreturn] = ACTIONS(2859), + [anon_sym__Nonnull] = ACTIONS(2859), + [anon_sym_mutable] = ACTIONS(2859), + [anon_sym_constinit] = ACTIONS(2859), + [anon_sym_consteval] = ACTIONS(2859), + [anon_sym_alignas] = ACTIONS(2859), + [anon_sym__Alignas] = ACTIONS(2859), + [sym_primitive_type] = ACTIONS(2859), + [anon_sym_enum] = ACTIONS(2859), + [anon_sym_class] = ACTIONS(2859), + [anon_sym_struct] = ACTIONS(2859), + [anon_sym_union] = ACTIONS(2859), + [anon_sym_if] = ACTIONS(2859), + [anon_sym_switch] = ACTIONS(2859), + [anon_sym_case] = ACTIONS(2859), + [anon_sym_default] = ACTIONS(2859), + [anon_sym_while] = ACTIONS(2859), + [anon_sym_do] = ACTIONS(2859), + [anon_sym_for] = ACTIONS(2859), + [anon_sym_return] = ACTIONS(2859), + [anon_sym_break] = ACTIONS(2859), + [anon_sym_continue] = ACTIONS(2859), + [anon_sym_goto] = ACTIONS(2859), + [anon_sym___try] = ACTIONS(2859), + [anon_sym___leave] = ACTIONS(2859), + [anon_sym_not] = ACTIONS(2859), + [anon_sym_compl] = ACTIONS(2859), + [anon_sym_DASH_DASH] = ACTIONS(2861), + [anon_sym_PLUS_PLUS] = ACTIONS(2861), + [anon_sym_sizeof] = ACTIONS(2859), + [anon_sym___alignof__] = ACTIONS(2859), + [anon_sym___alignof] = ACTIONS(2859), + [anon_sym__alignof] = ACTIONS(2859), + [anon_sym_alignof] = ACTIONS(2859), + [anon_sym__Alignof] = ACTIONS(2859), + [anon_sym_offsetof] = ACTIONS(2859), + [anon_sym__Generic] = ACTIONS(2859), + [anon_sym_asm] = ACTIONS(2859), + [anon_sym___asm__] = ACTIONS(2859), + [anon_sym___asm] = ACTIONS(2859), + [sym_number_literal] = ACTIONS(2861), + [anon_sym_L_SQUOTE] = ACTIONS(2861), + [anon_sym_u_SQUOTE] = ACTIONS(2861), + [anon_sym_U_SQUOTE] = ACTIONS(2861), + [anon_sym_u8_SQUOTE] = ACTIONS(2861), + [anon_sym_SQUOTE] = ACTIONS(2861), + [anon_sym_L_DQUOTE] = ACTIONS(2861), + [anon_sym_u_DQUOTE] = ACTIONS(2861), + [anon_sym_U_DQUOTE] = ACTIONS(2861), + [anon_sym_u8_DQUOTE] = ACTIONS(2861), + [anon_sym_DQUOTE] = ACTIONS(2861), + [sym_true] = ACTIONS(2859), + [sym_false] = ACTIONS(2859), + [anon_sym_NULL] = ACTIONS(2859), + [anon_sym_nullptr] = ACTIONS(2859), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2859), + [anon_sym_decltype] = ACTIONS(2859), + [anon_sym_explicit] = ACTIONS(2859), + [anon_sym_typename] = ACTIONS(2859), + [anon_sym_template] = ACTIONS(2859), + [anon_sym_operator] = ACTIONS(2859), + [anon_sym_try] = ACTIONS(2859), + [anon_sym_delete] = ACTIONS(2859), + [anon_sym_throw] = ACTIONS(2859), + [anon_sym_namespace] = ACTIONS(2859), + [anon_sym_static_assert] = ACTIONS(2859), + [anon_sym_concept] = ACTIONS(2859), + [anon_sym_co_return] = ACTIONS(2859), + [anon_sym_co_yield] = ACTIONS(2859), + [anon_sym_R_DQUOTE] = ACTIONS(2861), + [anon_sym_LR_DQUOTE] = ACTIONS(2861), + [anon_sym_uR_DQUOTE] = ACTIONS(2861), + [anon_sym_UR_DQUOTE] = ACTIONS(2861), + [anon_sym_u8R_DQUOTE] = ACTIONS(2861), + [anon_sym_co_await] = ACTIONS(2859), + [anon_sym_new] = ACTIONS(2859), + [anon_sym_requires] = ACTIONS(2859), + [sym_this] = ACTIONS(2859), + }, + [718] = { + [sym_identifier] = ACTIONS(2863), + [aux_sym_preproc_include_token1] = ACTIONS(2863), + [aux_sym_preproc_def_token1] = ACTIONS(2863), + [aux_sym_preproc_if_token1] = ACTIONS(2863), + [aux_sym_preproc_if_token2] = ACTIONS(2863), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2863), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2863), + [sym_preproc_directive] = ACTIONS(2863), + [anon_sym_LPAREN2] = ACTIONS(2865), + [anon_sym_BANG] = ACTIONS(2865), + [anon_sym_TILDE] = ACTIONS(2865), + [anon_sym_DASH] = ACTIONS(2863), + [anon_sym_PLUS] = ACTIONS(2863), + [anon_sym_STAR] = ACTIONS(2865), + [anon_sym_AMP_AMP] = ACTIONS(2865), + [anon_sym_AMP] = ACTIONS(2863), + [anon_sym_SEMI] = ACTIONS(2865), + [anon_sym___extension__] = ACTIONS(2863), + [anon_sym_typedef] = ACTIONS(2863), + [anon_sym_virtual] = ACTIONS(2863), + [anon_sym_extern] = ACTIONS(2863), + [anon_sym___attribute__] = ACTIONS(2863), + [anon_sym___attribute] = ACTIONS(2863), + [anon_sym_using] = ACTIONS(2863), + [anon_sym_COLON_COLON] = ACTIONS(2865), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2865), + [anon_sym___declspec] = ACTIONS(2863), + [anon_sym___based] = ACTIONS(2863), + [anon_sym___cdecl] = ACTIONS(2863), + [anon_sym___clrcall] = ACTIONS(2863), + [anon_sym___stdcall] = ACTIONS(2863), + [anon_sym___fastcall] = ACTIONS(2863), + [anon_sym___thiscall] = ACTIONS(2863), + [anon_sym___vectorcall] = ACTIONS(2863), + [anon_sym_LBRACE] = ACTIONS(2865), + [anon_sym_signed] = ACTIONS(2863), + [anon_sym_unsigned] = ACTIONS(2863), + [anon_sym_long] = ACTIONS(2863), + [anon_sym_short] = ACTIONS(2863), + [anon_sym_LBRACK] = ACTIONS(2863), + [anon_sym_static] = ACTIONS(2863), + [anon_sym_register] = ACTIONS(2863), + [anon_sym_inline] = ACTIONS(2863), + [anon_sym___inline] = ACTIONS(2863), + [anon_sym___inline__] = ACTIONS(2863), + [anon_sym___forceinline] = ACTIONS(2863), + [anon_sym_thread_local] = ACTIONS(2863), + [anon_sym___thread] = ACTIONS(2863), + [anon_sym_const] = ACTIONS(2863), + [anon_sym_constexpr] = ACTIONS(2863), + [anon_sym_volatile] = ACTIONS(2863), + [anon_sym_restrict] = ACTIONS(2863), + [anon_sym___restrict__] = ACTIONS(2863), + [anon_sym__Atomic] = ACTIONS(2863), + [anon_sym__Noreturn] = ACTIONS(2863), + [anon_sym_noreturn] = ACTIONS(2863), + [anon_sym__Nonnull] = ACTIONS(2863), + [anon_sym_mutable] = ACTIONS(2863), + [anon_sym_constinit] = ACTIONS(2863), + [anon_sym_consteval] = ACTIONS(2863), + [anon_sym_alignas] = ACTIONS(2863), + [anon_sym__Alignas] = ACTIONS(2863), + [sym_primitive_type] = ACTIONS(2863), + [anon_sym_enum] = ACTIONS(2863), + [anon_sym_class] = ACTIONS(2863), + [anon_sym_struct] = ACTIONS(2863), + [anon_sym_union] = ACTIONS(2863), + [anon_sym_if] = ACTIONS(2863), + [anon_sym_switch] = ACTIONS(2863), + [anon_sym_case] = ACTIONS(2863), + [anon_sym_default] = ACTIONS(2863), + [anon_sym_while] = ACTIONS(2863), + [anon_sym_do] = ACTIONS(2863), + [anon_sym_for] = ACTIONS(2863), + [anon_sym_return] = ACTIONS(2863), + [anon_sym_break] = ACTIONS(2863), + [anon_sym_continue] = ACTIONS(2863), + [anon_sym_goto] = ACTIONS(2863), + [anon_sym___try] = ACTIONS(2863), + [anon_sym___leave] = ACTIONS(2863), + [anon_sym_not] = ACTIONS(2863), + [anon_sym_compl] = ACTIONS(2863), + [anon_sym_DASH_DASH] = ACTIONS(2865), + [anon_sym_PLUS_PLUS] = ACTIONS(2865), + [anon_sym_sizeof] = ACTIONS(2863), + [anon_sym___alignof__] = ACTIONS(2863), + [anon_sym___alignof] = ACTIONS(2863), + [anon_sym__alignof] = ACTIONS(2863), + [anon_sym_alignof] = ACTIONS(2863), + [anon_sym__Alignof] = ACTIONS(2863), + [anon_sym_offsetof] = ACTIONS(2863), + [anon_sym__Generic] = ACTIONS(2863), + [anon_sym_asm] = ACTIONS(2863), + [anon_sym___asm__] = ACTIONS(2863), + [anon_sym___asm] = ACTIONS(2863), + [sym_number_literal] = ACTIONS(2865), + [anon_sym_L_SQUOTE] = ACTIONS(2865), + [anon_sym_u_SQUOTE] = ACTIONS(2865), + [anon_sym_U_SQUOTE] = ACTIONS(2865), + [anon_sym_u8_SQUOTE] = ACTIONS(2865), + [anon_sym_SQUOTE] = ACTIONS(2865), + [anon_sym_L_DQUOTE] = ACTIONS(2865), + [anon_sym_u_DQUOTE] = ACTIONS(2865), + [anon_sym_U_DQUOTE] = ACTIONS(2865), + [anon_sym_u8_DQUOTE] = ACTIONS(2865), + [anon_sym_DQUOTE] = ACTIONS(2865), + [sym_true] = ACTIONS(2863), + [sym_false] = ACTIONS(2863), + [anon_sym_NULL] = ACTIONS(2863), + [anon_sym_nullptr] = ACTIONS(2863), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2863), + [anon_sym_decltype] = ACTIONS(2863), + [anon_sym_explicit] = ACTIONS(2863), + [anon_sym_typename] = ACTIONS(2863), + [anon_sym_template] = ACTIONS(2863), + [anon_sym_operator] = ACTIONS(2863), + [anon_sym_try] = ACTIONS(2863), + [anon_sym_delete] = ACTIONS(2863), + [anon_sym_throw] = ACTIONS(2863), + [anon_sym_namespace] = ACTIONS(2863), + [anon_sym_static_assert] = ACTIONS(2863), + [anon_sym_concept] = ACTIONS(2863), + [anon_sym_co_return] = ACTIONS(2863), + [anon_sym_co_yield] = ACTIONS(2863), + [anon_sym_R_DQUOTE] = ACTIONS(2865), + [anon_sym_LR_DQUOTE] = ACTIONS(2865), + [anon_sym_uR_DQUOTE] = ACTIONS(2865), + [anon_sym_UR_DQUOTE] = ACTIONS(2865), + [anon_sym_u8R_DQUOTE] = ACTIONS(2865), + [anon_sym_co_await] = ACTIONS(2863), + [anon_sym_new] = ACTIONS(2863), + [anon_sym_requires] = ACTIONS(2863), + [sym_this] = ACTIONS(2863), + }, + [719] = { + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_include_token1] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token2] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym___attribute] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym___cdecl] = ACTIONS(2867), + [anon_sym___clrcall] = ACTIONS(2867), + [anon_sym___stdcall] = ACTIONS(2867), + [anon_sym___fastcall] = ACTIONS(2867), + [anon_sym___thiscall] = ACTIONS(2867), + [anon_sym___vectorcall] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym__Nonnull] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym__Alignas] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [anon_sym___asm] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), + [anon_sym_concept] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, - [705] = { - [sym_identifier] = ACTIONS(2907), - [aux_sym_preproc_include_token1] = ACTIONS(2907), - [aux_sym_preproc_def_token1] = ACTIONS(2907), - [aux_sym_preproc_if_token1] = ACTIONS(2907), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2907), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2907), - [sym_preproc_directive] = ACTIONS(2907), - [anon_sym_LPAREN2] = ACTIONS(2909), - [anon_sym_BANG] = ACTIONS(2909), - [anon_sym_TILDE] = ACTIONS(2909), - [anon_sym_DASH] = ACTIONS(2907), - [anon_sym_PLUS] = ACTIONS(2907), - [anon_sym_STAR] = ACTIONS(2909), - [anon_sym_AMP_AMP] = ACTIONS(2909), - [anon_sym_AMP] = ACTIONS(2907), - [anon_sym_SEMI] = ACTIONS(2909), - [anon_sym___extension__] = ACTIONS(2907), - [anon_sym_typedef] = ACTIONS(2907), - [anon_sym_virtual] = ACTIONS(2907), - [anon_sym_extern] = ACTIONS(2907), - [anon_sym___attribute__] = ACTIONS(2907), - [anon_sym___attribute] = ACTIONS(2907), - [anon_sym_using] = ACTIONS(2907), - [anon_sym_COLON_COLON] = ACTIONS(2909), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2909), - [anon_sym___declspec] = ACTIONS(2907), - [anon_sym___based] = ACTIONS(2907), - [anon_sym___cdecl] = ACTIONS(2907), - [anon_sym___clrcall] = ACTIONS(2907), - [anon_sym___stdcall] = ACTIONS(2907), - [anon_sym___fastcall] = ACTIONS(2907), - [anon_sym___thiscall] = ACTIONS(2907), - [anon_sym___vectorcall] = ACTIONS(2907), - [anon_sym_LBRACE] = ACTIONS(2909), - [anon_sym_RBRACE] = ACTIONS(2909), - [anon_sym_signed] = ACTIONS(2907), - [anon_sym_unsigned] = ACTIONS(2907), - [anon_sym_long] = ACTIONS(2907), - [anon_sym_short] = ACTIONS(2907), - [anon_sym_LBRACK] = ACTIONS(2907), - [anon_sym_static] = ACTIONS(2907), - [anon_sym_register] = ACTIONS(2907), - [anon_sym_inline] = ACTIONS(2907), - [anon_sym___inline] = ACTIONS(2907), - [anon_sym___inline__] = ACTIONS(2907), - [anon_sym___forceinline] = ACTIONS(2907), - [anon_sym_thread_local] = ACTIONS(2907), - [anon_sym___thread] = ACTIONS(2907), - [anon_sym_const] = ACTIONS(2907), - [anon_sym_constexpr] = ACTIONS(2907), - [anon_sym_volatile] = ACTIONS(2907), - [anon_sym_restrict] = ACTIONS(2907), - [anon_sym___restrict__] = ACTIONS(2907), - [anon_sym__Atomic] = ACTIONS(2907), - [anon_sym__Noreturn] = ACTIONS(2907), - [anon_sym_noreturn] = ACTIONS(2907), - [anon_sym__Nonnull] = ACTIONS(2907), - [anon_sym_mutable] = ACTIONS(2907), - [anon_sym_constinit] = ACTIONS(2907), - [anon_sym_consteval] = ACTIONS(2907), - [anon_sym_alignas] = ACTIONS(2907), - [anon_sym__Alignas] = ACTIONS(2907), - [sym_primitive_type] = ACTIONS(2907), - [anon_sym_enum] = ACTIONS(2907), - [anon_sym_class] = ACTIONS(2907), - [anon_sym_struct] = ACTIONS(2907), - [anon_sym_union] = ACTIONS(2907), - [anon_sym_if] = ACTIONS(2907), - [anon_sym_switch] = ACTIONS(2907), - [anon_sym_case] = ACTIONS(2907), - [anon_sym_default] = ACTIONS(2907), - [anon_sym_while] = ACTIONS(2907), - [anon_sym_do] = ACTIONS(2907), - [anon_sym_for] = ACTIONS(2907), - [anon_sym_return] = ACTIONS(2907), - [anon_sym_break] = ACTIONS(2907), - [anon_sym_continue] = ACTIONS(2907), - [anon_sym_goto] = ACTIONS(2907), - [anon_sym___try] = ACTIONS(2907), - [anon_sym___leave] = ACTIONS(2907), - [anon_sym_not] = ACTIONS(2907), - [anon_sym_compl] = ACTIONS(2907), - [anon_sym_DASH_DASH] = ACTIONS(2909), - [anon_sym_PLUS_PLUS] = ACTIONS(2909), - [anon_sym_sizeof] = ACTIONS(2907), - [anon_sym___alignof__] = ACTIONS(2907), - [anon_sym___alignof] = ACTIONS(2907), - [anon_sym__alignof] = ACTIONS(2907), - [anon_sym_alignof] = ACTIONS(2907), - [anon_sym__Alignof] = ACTIONS(2907), - [anon_sym_offsetof] = ACTIONS(2907), - [anon_sym__Generic] = ACTIONS(2907), - [anon_sym_asm] = ACTIONS(2907), - [anon_sym___asm__] = ACTIONS(2907), - [anon_sym___asm] = ACTIONS(2907), - [sym_number_literal] = ACTIONS(2909), - [anon_sym_L_SQUOTE] = ACTIONS(2909), - [anon_sym_u_SQUOTE] = ACTIONS(2909), - [anon_sym_U_SQUOTE] = ACTIONS(2909), - [anon_sym_u8_SQUOTE] = ACTIONS(2909), - [anon_sym_SQUOTE] = ACTIONS(2909), - [anon_sym_L_DQUOTE] = ACTIONS(2909), - [anon_sym_u_DQUOTE] = ACTIONS(2909), - [anon_sym_U_DQUOTE] = ACTIONS(2909), - [anon_sym_u8_DQUOTE] = ACTIONS(2909), - [anon_sym_DQUOTE] = ACTIONS(2909), - [sym_true] = ACTIONS(2907), - [sym_false] = ACTIONS(2907), - [anon_sym_NULL] = ACTIONS(2907), - [anon_sym_nullptr] = ACTIONS(2907), + [720] = { + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token2] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym___attribute] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym__Nonnull] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym__Alignas] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [anon_sym___asm] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2907), - [anon_sym_decltype] = ACTIONS(2907), - [anon_sym_explicit] = ACTIONS(2907), - [anon_sym_typename] = ACTIONS(2907), - [anon_sym_template] = ACTIONS(2907), - [anon_sym_operator] = ACTIONS(2907), - [anon_sym_try] = ACTIONS(2907), - [anon_sym_delete] = ACTIONS(2907), - [anon_sym_throw] = ACTIONS(2907), - [anon_sym_namespace] = ACTIONS(2907), - [anon_sym_static_assert] = ACTIONS(2907), - [anon_sym_concept] = ACTIONS(2907), - [anon_sym_co_return] = ACTIONS(2907), - [anon_sym_co_yield] = ACTIONS(2907), - [anon_sym_R_DQUOTE] = ACTIONS(2909), - [anon_sym_LR_DQUOTE] = ACTIONS(2909), - [anon_sym_uR_DQUOTE] = ACTIONS(2909), - [anon_sym_UR_DQUOTE] = ACTIONS(2909), - [anon_sym_u8R_DQUOTE] = ACTIONS(2909), - [anon_sym_co_await] = ACTIONS(2907), - [anon_sym_new] = ACTIONS(2907), - [anon_sym_requires] = ACTIONS(2907), - [sym_this] = ACTIONS(2907), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), }, - [706] = { - [sym_identifier] = ACTIONS(2911), - [aux_sym_preproc_include_token1] = ACTIONS(2911), - [aux_sym_preproc_def_token1] = ACTIONS(2911), - [aux_sym_preproc_if_token1] = ACTIONS(2911), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2911), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2911), - [sym_preproc_directive] = ACTIONS(2911), - [anon_sym_LPAREN2] = ACTIONS(2913), - [anon_sym_BANG] = ACTIONS(2913), - [anon_sym_TILDE] = ACTIONS(2913), - [anon_sym_DASH] = ACTIONS(2911), - [anon_sym_PLUS] = ACTIONS(2911), - [anon_sym_STAR] = ACTIONS(2913), - [anon_sym_AMP_AMP] = ACTIONS(2913), - [anon_sym_AMP] = ACTIONS(2911), - [anon_sym_SEMI] = ACTIONS(2913), - [anon_sym___extension__] = ACTIONS(2911), - [anon_sym_typedef] = ACTIONS(2911), - [anon_sym_virtual] = ACTIONS(2911), - [anon_sym_extern] = ACTIONS(2911), - [anon_sym___attribute__] = ACTIONS(2911), - [anon_sym___attribute] = ACTIONS(2911), - [anon_sym_using] = ACTIONS(2911), - [anon_sym_COLON_COLON] = ACTIONS(2913), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2913), - [anon_sym___declspec] = ACTIONS(2911), - [anon_sym___based] = ACTIONS(2911), - [anon_sym___cdecl] = ACTIONS(2911), - [anon_sym___clrcall] = ACTIONS(2911), - [anon_sym___stdcall] = ACTIONS(2911), - [anon_sym___fastcall] = ACTIONS(2911), - [anon_sym___thiscall] = ACTIONS(2911), - [anon_sym___vectorcall] = ACTIONS(2911), - [anon_sym_LBRACE] = ACTIONS(2913), - [anon_sym_RBRACE] = ACTIONS(2913), - [anon_sym_signed] = ACTIONS(2911), - [anon_sym_unsigned] = ACTIONS(2911), - [anon_sym_long] = ACTIONS(2911), - [anon_sym_short] = ACTIONS(2911), - [anon_sym_LBRACK] = ACTIONS(2911), - [anon_sym_static] = ACTIONS(2911), - [anon_sym_register] = ACTIONS(2911), - [anon_sym_inline] = ACTIONS(2911), - [anon_sym___inline] = ACTIONS(2911), - [anon_sym___inline__] = ACTIONS(2911), - [anon_sym___forceinline] = ACTIONS(2911), - [anon_sym_thread_local] = ACTIONS(2911), - [anon_sym___thread] = ACTIONS(2911), - [anon_sym_const] = ACTIONS(2911), - [anon_sym_constexpr] = ACTIONS(2911), - [anon_sym_volatile] = ACTIONS(2911), - [anon_sym_restrict] = ACTIONS(2911), - [anon_sym___restrict__] = ACTIONS(2911), - [anon_sym__Atomic] = ACTIONS(2911), - [anon_sym__Noreturn] = ACTIONS(2911), - [anon_sym_noreturn] = ACTIONS(2911), - [anon_sym__Nonnull] = ACTIONS(2911), - [anon_sym_mutable] = ACTIONS(2911), - [anon_sym_constinit] = ACTIONS(2911), - [anon_sym_consteval] = ACTIONS(2911), - [anon_sym_alignas] = ACTIONS(2911), - [anon_sym__Alignas] = ACTIONS(2911), - [sym_primitive_type] = ACTIONS(2911), - [anon_sym_enum] = ACTIONS(2911), - [anon_sym_class] = ACTIONS(2911), - [anon_sym_struct] = ACTIONS(2911), - [anon_sym_union] = ACTIONS(2911), - [anon_sym_if] = ACTIONS(2911), - [anon_sym_switch] = ACTIONS(2911), - [anon_sym_case] = ACTIONS(2911), - [anon_sym_default] = ACTIONS(2911), - [anon_sym_while] = ACTIONS(2911), - [anon_sym_do] = ACTIONS(2911), - [anon_sym_for] = ACTIONS(2911), - [anon_sym_return] = ACTIONS(2911), - [anon_sym_break] = ACTIONS(2911), - [anon_sym_continue] = ACTIONS(2911), - [anon_sym_goto] = ACTIONS(2911), - [anon_sym___try] = ACTIONS(2911), - [anon_sym___leave] = ACTIONS(2911), - [anon_sym_not] = ACTIONS(2911), - [anon_sym_compl] = ACTIONS(2911), - [anon_sym_DASH_DASH] = ACTIONS(2913), - [anon_sym_PLUS_PLUS] = ACTIONS(2913), - [anon_sym_sizeof] = ACTIONS(2911), - [anon_sym___alignof__] = ACTIONS(2911), - [anon_sym___alignof] = ACTIONS(2911), - [anon_sym__alignof] = ACTIONS(2911), - [anon_sym_alignof] = ACTIONS(2911), - [anon_sym__Alignof] = ACTIONS(2911), - [anon_sym_offsetof] = ACTIONS(2911), - [anon_sym__Generic] = ACTIONS(2911), - [anon_sym_asm] = ACTIONS(2911), - [anon_sym___asm__] = ACTIONS(2911), - [anon_sym___asm] = ACTIONS(2911), - [sym_number_literal] = ACTIONS(2913), - [anon_sym_L_SQUOTE] = ACTIONS(2913), - [anon_sym_u_SQUOTE] = ACTIONS(2913), - [anon_sym_U_SQUOTE] = ACTIONS(2913), - [anon_sym_u8_SQUOTE] = ACTIONS(2913), - [anon_sym_SQUOTE] = ACTIONS(2913), - [anon_sym_L_DQUOTE] = ACTIONS(2913), - [anon_sym_u_DQUOTE] = ACTIONS(2913), - [anon_sym_U_DQUOTE] = ACTIONS(2913), - [anon_sym_u8_DQUOTE] = ACTIONS(2913), - [anon_sym_DQUOTE] = ACTIONS(2913), - [sym_true] = ACTIONS(2911), - [sym_false] = ACTIONS(2911), - [anon_sym_NULL] = ACTIONS(2911), - [anon_sym_nullptr] = ACTIONS(2911), + [721] = { + [sym_identifier] = ACTIONS(2875), + [aux_sym_preproc_include_token1] = ACTIONS(2875), + [aux_sym_preproc_def_token1] = ACTIONS(2875), + [aux_sym_preproc_if_token1] = ACTIONS(2875), + [aux_sym_preproc_if_token2] = ACTIONS(2875), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2875), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2875), + [sym_preproc_directive] = ACTIONS(2875), + [anon_sym_LPAREN2] = ACTIONS(2877), + [anon_sym_BANG] = ACTIONS(2877), + [anon_sym_TILDE] = ACTIONS(2877), + [anon_sym_DASH] = ACTIONS(2875), + [anon_sym_PLUS] = ACTIONS(2875), + [anon_sym_STAR] = ACTIONS(2877), + [anon_sym_AMP_AMP] = ACTIONS(2877), + [anon_sym_AMP] = ACTIONS(2875), + [anon_sym_SEMI] = ACTIONS(2877), + [anon_sym___extension__] = ACTIONS(2875), + [anon_sym_typedef] = ACTIONS(2875), + [anon_sym_virtual] = ACTIONS(2875), + [anon_sym_extern] = ACTIONS(2875), + [anon_sym___attribute__] = ACTIONS(2875), + [anon_sym___attribute] = ACTIONS(2875), + [anon_sym_using] = ACTIONS(2875), + [anon_sym_COLON_COLON] = ACTIONS(2877), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2877), + [anon_sym___declspec] = ACTIONS(2875), + [anon_sym___based] = ACTIONS(2875), + [anon_sym___cdecl] = ACTIONS(2875), + [anon_sym___clrcall] = ACTIONS(2875), + [anon_sym___stdcall] = ACTIONS(2875), + [anon_sym___fastcall] = ACTIONS(2875), + [anon_sym___thiscall] = ACTIONS(2875), + [anon_sym___vectorcall] = ACTIONS(2875), + [anon_sym_LBRACE] = ACTIONS(2877), + [anon_sym_signed] = ACTIONS(2875), + [anon_sym_unsigned] = ACTIONS(2875), + [anon_sym_long] = ACTIONS(2875), + [anon_sym_short] = ACTIONS(2875), + [anon_sym_LBRACK] = ACTIONS(2875), + [anon_sym_static] = ACTIONS(2875), + [anon_sym_register] = ACTIONS(2875), + [anon_sym_inline] = ACTIONS(2875), + [anon_sym___inline] = ACTIONS(2875), + [anon_sym___inline__] = ACTIONS(2875), + [anon_sym___forceinline] = ACTIONS(2875), + [anon_sym_thread_local] = ACTIONS(2875), + [anon_sym___thread] = ACTIONS(2875), + [anon_sym_const] = ACTIONS(2875), + [anon_sym_constexpr] = ACTIONS(2875), + [anon_sym_volatile] = ACTIONS(2875), + [anon_sym_restrict] = ACTIONS(2875), + [anon_sym___restrict__] = ACTIONS(2875), + [anon_sym__Atomic] = ACTIONS(2875), + [anon_sym__Noreturn] = ACTIONS(2875), + [anon_sym_noreturn] = ACTIONS(2875), + [anon_sym__Nonnull] = ACTIONS(2875), + [anon_sym_mutable] = ACTIONS(2875), + [anon_sym_constinit] = ACTIONS(2875), + [anon_sym_consteval] = ACTIONS(2875), + [anon_sym_alignas] = ACTIONS(2875), + [anon_sym__Alignas] = ACTIONS(2875), + [sym_primitive_type] = ACTIONS(2875), + [anon_sym_enum] = ACTIONS(2875), + [anon_sym_class] = ACTIONS(2875), + [anon_sym_struct] = ACTIONS(2875), + [anon_sym_union] = ACTIONS(2875), + [anon_sym_if] = ACTIONS(2875), + [anon_sym_switch] = ACTIONS(2875), + [anon_sym_case] = ACTIONS(2875), + [anon_sym_default] = ACTIONS(2875), + [anon_sym_while] = ACTIONS(2875), + [anon_sym_do] = ACTIONS(2875), + [anon_sym_for] = ACTIONS(2875), + [anon_sym_return] = ACTIONS(2875), + [anon_sym_break] = ACTIONS(2875), + [anon_sym_continue] = ACTIONS(2875), + [anon_sym_goto] = ACTIONS(2875), + [anon_sym___try] = ACTIONS(2875), + [anon_sym___leave] = ACTIONS(2875), + [anon_sym_not] = ACTIONS(2875), + [anon_sym_compl] = ACTIONS(2875), + [anon_sym_DASH_DASH] = ACTIONS(2877), + [anon_sym_PLUS_PLUS] = ACTIONS(2877), + [anon_sym_sizeof] = ACTIONS(2875), + [anon_sym___alignof__] = ACTIONS(2875), + [anon_sym___alignof] = ACTIONS(2875), + [anon_sym__alignof] = ACTIONS(2875), + [anon_sym_alignof] = ACTIONS(2875), + [anon_sym__Alignof] = ACTIONS(2875), + [anon_sym_offsetof] = ACTIONS(2875), + [anon_sym__Generic] = ACTIONS(2875), + [anon_sym_asm] = ACTIONS(2875), + [anon_sym___asm__] = ACTIONS(2875), + [anon_sym___asm] = ACTIONS(2875), + [sym_number_literal] = ACTIONS(2877), + [anon_sym_L_SQUOTE] = ACTIONS(2877), + [anon_sym_u_SQUOTE] = ACTIONS(2877), + [anon_sym_U_SQUOTE] = ACTIONS(2877), + [anon_sym_u8_SQUOTE] = ACTIONS(2877), + [anon_sym_SQUOTE] = ACTIONS(2877), + [anon_sym_L_DQUOTE] = ACTIONS(2877), + [anon_sym_u_DQUOTE] = ACTIONS(2877), + [anon_sym_U_DQUOTE] = ACTIONS(2877), + [anon_sym_u8_DQUOTE] = ACTIONS(2877), + [anon_sym_DQUOTE] = ACTIONS(2877), + [sym_true] = ACTIONS(2875), + [sym_false] = ACTIONS(2875), + [anon_sym_NULL] = ACTIONS(2875), + [anon_sym_nullptr] = ACTIONS(2875), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2911), - [anon_sym_decltype] = ACTIONS(2911), - [anon_sym_explicit] = ACTIONS(2911), - [anon_sym_typename] = ACTIONS(2911), - [anon_sym_template] = ACTIONS(2911), - [anon_sym_operator] = ACTIONS(2911), - [anon_sym_try] = ACTIONS(2911), - [anon_sym_delete] = ACTIONS(2911), - [anon_sym_throw] = ACTIONS(2911), - [anon_sym_namespace] = ACTIONS(2911), - [anon_sym_static_assert] = ACTIONS(2911), - [anon_sym_concept] = ACTIONS(2911), - [anon_sym_co_return] = ACTIONS(2911), - [anon_sym_co_yield] = ACTIONS(2911), - [anon_sym_R_DQUOTE] = ACTIONS(2913), - [anon_sym_LR_DQUOTE] = ACTIONS(2913), - [anon_sym_uR_DQUOTE] = ACTIONS(2913), - [anon_sym_UR_DQUOTE] = ACTIONS(2913), - [anon_sym_u8R_DQUOTE] = ACTIONS(2913), - [anon_sym_co_await] = ACTIONS(2911), - [anon_sym_new] = ACTIONS(2911), - [anon_sym_requires] = ACTIONS(2911), - [sym_this] = ACTIONS(2911), + [sym_auto] = ACTIONS(2875), + [anon_sym_decltype] = ACTIONS(2875), + [anon_sym_explicit] = ACTIONS(2875), + [anon_sym_typename] = ACTIONS(2875), + [anon_sym_template] = ACTIONS(2875), + [anon_sym_operator] = ACTIONS(2875), + [anon_sym_try] = ACTIONS(2875), + [anon_sym_delete] = ACTIONS(2875), + [anon_sym_throw] = ACTIONS(2875), + [anon_sym_namespace] = ACTIONS(2875), + [anon_sym_static_assert] = ACTIONS(2875), + [anon_sym_concept] = ACTIONS(2875), + [anon_sym_co_return] = ACTIONS(2875), + [anon_sym_co_yield] = ACTIONS(2875), + [anon_sym_R_DQUOTE] = ACTIONS(2877), + [anon_sym_LR_DQUOTE] = ACTIONS(2877), + [anon_sym_uR_DQUOTE] = ACTIONS(2877), + [anon_sym_UR_DQUOTE] = ACTIONS(2877), + [anon_sym_u8R_DQUOTE] = ACTIONS(2877), + [anon_sym_co_await] = ACTIONS(2875), + [anon_sym_new] = ACTIONS(2875), + [anon_sym_requires] = ACTIONS(2875), + [sym_this] = ACTIONS(2875), }, - [707] = { - [sym_identifier] = ACTIONS(2847), - [aux_sym_preproc_include_token1] = ACTIONS(2847), - [aux_sym_preproc_def_token1] = ACTIONS(2847), - [aux_sym_preproc_if_token1] = ACTIONS(2847), - [aux_sym_preproc_if_token2] = ACTIONS(2847), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2847), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2847), - [sym_preproc_directive] = ACTIONS(2847), - [anon_sym_LPAREN2] = ACTIONS(2849), - [anon_sym_BANG] = ACTIONS(2849), - [anon_sym_TILDE] = ACTIONS(2849), - [anon_sym_DASH] = ACTIONS(2847), - [anon_sym_PLUS] = ACTIONS(2847), - [anon_sym_STAR] = ACTIONS(2849), - [anon_sym_AMP_AMP] = ACTIONS(2849), - [anon_sym_AMP] = ACTIONS(2847), - [anon_sym_SEMI] = ACTIONS(2849), - [anon_sym___extension__] = ACTIONS(2847), - [anon_sym_typedef] = ACTIONS(2847), - [anon_sym_virtual] = ACTIONS(2847), - [anon_sym_extern] = ACTIONS(2847), - [anon_sym___attribute__] = ACTIONS(2847), - [anon_sym___attribute] = ACTIONS(2847), - [anon_sym_using] = ACTIONS(2847), - [anon_sym_COLON_COLON] = ACTIONS(2849), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2849), - [anon_sym___declspec] = ACTIONS(2847), - [anon_sym___based] = ACTIONS(2847), - [anon_sym___cdecl] = ACTIONS(2847), - [anon_sym___clrcall] = ACTIONS(2847), - [anon_sym___stdcall] = ACTIONS(2847), - [anon_sym___fastcall] = ACTIONS(2847), - [anon_sym___thiscall] = ACTIONS(2847), - [anon_sym___vectorcall] = ACTIONS(2847), - [anon_sym_LBRACE] = ACTIONS(2849), - [anon_sym_signed] = ACTIONS(2847), - [anon_sym_unsigned] = ACTIONS(2847), - [anon_sym_long] = ACTIONS(2847), - [anon_sym_short] = ACTIONS(2847), - [anon_sym_LBRACK] = ACTIONS(2847), - [anon_sym_static] = ACTIONS(2847), - [anon_sym_register] = ACTIONS(2847), - [anon_sym_inline] = ACTIONS(2847), - [anon_sym___inline] = ACTIONS(2847), - [anon_sym___inline__] = ACTIONS(2847), - [anon_sym___forceinline] = ACTIONS(2847), - [anon_sym_thread_local] = ACTIONS(2847), - [anon_sym___thread] = ACTIONS(2847), - [anon_sym_const] = ACTIONS(2847), - [anon_sym_constexpr] = ACTIONS(2847), - [anon_sym_volatile] = ACTIONS(2847), - [anon_sym_restrict] = ACTIONS(2847), - [anon_sym___restrict__] = ACTIONS(2847), - [anon_sym__Atomic] = ACTIONS(2847), - [anon_sym__Noreturn] = ACTIONS(2847), - [anon_sym_noreturn] = ACTIONS(2847), - [anon_sym__Nonnull] = ACTIONS(2847), - [anon_sym_mutable] = ACTIONS(2847), - [anon_sym_constinit] = ACTIONS(2847), - [anon_sym_consteval] = ACTIONS(2847), - [anon_sym_alignas] = ACTIONS(2847), - [anon_sym__Alignas] = ACTIONS(2847), - [sym_primitive_type] = ACTIONS(2847), - [anon_sym_enum] = ACTIONS(2847), - [anon_sym_class] = ACTIONS(2847), - [anon_sym_struct] = ACTIONS(2847), - [anon_sym_union] = ACTIONS(2847), - [anon_sym_if] = ACTIONS(2847), - [anon_sym_switch] = ACTIONS(2847), - [anon_sym_case] = ACTIONS(2847), - [anon_sym_default] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2847), - [anon_sym_do] = ACTIONS(2847), - [anon_sym_for] = ACTIONS(2847), - [anon_sym_return] = ACTIONS(2847), - [anon_sym_break] = ACTIONS(2847), - [anon_sym_continue] = ACTIONS(2847), - [anon_sym_goto] = ACTIONS(2847), - [anon_sym___try] = ACTIONS(2847), - [anon_sym___leave] = ACTIONS(2847), - [anon_sym_not] = ACTIONS(2847), - [anon_sym_compl] = ACTIONS(2847), - [anon_sym_DASH_DASH] = ACTIONS(2849), - [anon_sym_PLUS_PLUS] = ACTIONS(2849), - [anon_sym_sizeof] = ACTIONS(2847), - [anon_sym___alignof__] = ACTIONS(2847), - [anon_sym___alignof] = ACTIONS(2847), - [anon_sym__alignof] = ACTIONS(2847), - [anon_sym_alignof] = ACTIONS(2847), - [anon_sym__Alignof] = ACTIONS(2847), - [anon_sym_offsetof] = ACTIONS(2847), - [anon_sym__Generic] = ACTIONS(2847), - [anon_sym_asm] = ACTIONS(2847), - [anon_sym___asm__] = ACTIONS(2847), - [anon_sym___asm] = ACTIONS(2847), - [sym_number_literal] = ACTIONS(2849), - [anon_sym_L_SQUOTE] = ACTIONS(2849), - [anon_sym_u_SQUOTE] = ACTIONS(2849), - [anon_sym_U_SQUOTE] = ACTIONS(2849), - [anon_sym_u8_SQUOTE] = ACTIONS(2849), - [anon_sym_SQUOTE] = ACTIONS(2849), - [anon_sym_L_DQUOTE] = ACTIONS(2849), - [anon_sym_u_DQUOTE] = ACTIONS(2849), - [anon_sym_U_DQUOTE] = ACTIONS(2849), - [anon_sym_u8_DQUOTE] = ACTIONS(2849), - [anon_sym_DQUOTE] = ACTIONS(2849), - [sym_true] = ACTIONS(2847), - [sym_false] = ACTIONS(2847), - [anon_sym_NULL] = ACTIONS(2847), - [anon_sym_nullptr] = ACTIONS(2847), + [722] = { + [sym_identifier] = ACTIONS(2779), + [aux_sym_preproc_include_token1] = ACTIONS(2779), + [aux_sym_preproc_def_token1] = ACTIONS(2779), + [aux_sym_preproc_if_token1] = ACTIONS(2779), + [aux_sym_preproc_if_token2] = ACTIONS(2779), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2779), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2779), + [sym_preproc_directive] = ACTIONS(2779), + [anon_sym_LPAREN2] = ACTIONS(2781), + [anon_sym_BANG] = ACTIONS(2781), + [anon_sym_TILDE] = ACTIONS(2781), + [anon_sym_DASH] = ACTIONS(2779), + [anon_sym_PLUS] = ACTIONS(2779), + [anon_sym_STAR] = ACTIONS(2781), + [anon_sym_AMP_AMP] = ACTIONS(2781), + [anon_sym_AMP] = ACTIONS(2779), + [anon_sym_SEMI] = ACTIONS(2781), + [anon_sym___extension__] = ACTIONS(2779), + [anon_sym_typedef] = ACTIONS(2779), + [anon_sym_virtual] = ACTIONS(2779), + [anon_sym_extern] = ACTIONS(2779), + [anon_sym___attribute__] = ACTIONS(2779), + [anon_sym___attribute] = ACTIONS(2779), + [anon_sym_using] = ACTIONS(2779), + [anon_sym_COLON_COLON] = ACTIONS(2781), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2781), + [anon_sym___declspec] = ACTIONS(2779), + [anon_sym___based] = ACTIONS(2779), + [anon_sym___cdecl] = ACTIONS(2779), + [anon_sym___clrcall] = ACTIONS(2779), + [anon_sym___stdcall] = ACTIONS(2779), + [anon_sym___fastcall] = ACTIONS(2779), + [anon_sym___thiscall] = ACTIONS(2779), + [anon_sym___vectorcall] = ACTIONS(2779), + [anon_sym_LBRACE] = ACTIONS(2781), + [anon_sym_signed] = ACTIONS(2779), + [anon_sym_unsigned] = ACTIONS(2779), + [anon_sym_long] = ACTIONS(2779), + [anon_sym_short] = ACTIONS(2779), + [anon_sym_LBRACK] = ACTIONS(2779), + [anon_sym_static] = ACTIONS(2779), + [anon_sym_register] = ACTIONS(2779), + [anon_sym_inline] = ACTIONS(2779), + [anon_sym___inline] = ACTIONS(2779), + [anon_sym___inline__] = ACTIONS(2779), + [anon_sym___forceinline] = ACTIONS(2779), + [anon_sym_thread_local] = ACTIONS(2779), + [anon_sym___thread] = ACTIONS(2779), + [anon_sym_const] = ACTIONS(2779), + [anon_sym_constexpr] = ACTIONS(2779), + [anon_sym_volatile] = ACTIONS(2779), + [anon_sym_restrict] = ACTIONS(2779), + [anon_sym___restrict__] = ACTIONS(2779), + [anon_sym__Atomic] = ACTIONS(2779), + [anon_sym__Noreturn] = ACTIONS(2779), + [anon_sym_noreturn] = ACTIONS(2779), + [anon_sym__Nonnull] = ACTIONS(2779), + [anon_sym_mutable] = ACTIONS(2779), + [anon_sym_constinit] = ACTIONS(2779), + [anon_sym_consteval] = ACTIONS(2779), + [anon_sym_alignas] = ACTIONS(2779), + [anon_sym__Alignas] = ACTIONS(2779), + [sym_primitive_type] = ACTIONS(2779), + [anon_sym_enum] = ACTIONS(2779), + [anon_sym_class] = ACTIONS(2779), + [anon_sym_struct] = ACTIONS(2779), + [anon_sym_union] = ACTIONS(2779), + [anon_sym_if] = ACTIONS(2779), + [anon_sym_switch] = ACTIONS(2779), + [anon_sym_case] = ACTIONS(2779), + [anon_sym_default] = ACTIONS(2779), + [anon_sym_while] = ACTIONS(2779), + [anon_sym_do] = ACTIONS(2779), + [anon_sym_for] = ACTIONS(2779), + [anon_sym_return] = ACTIONS(2779), + [anon_sym_break] = ACTIONS(2779), + [anon_sym_continue] = ACTIONS(2779), + [anon_sym_goto] = ACTIONS(2779), + [anon_sym___try] = ACTIONS(2779), + [anon_sym___leave] = ACTIONS(2779), + [anon_sym_not] = ACTIONS(2779), + [anon_sym_compl] = ACTIONS(2779), + [anon_sym_DASH_DASH] = ACTIONS(2781), + [anon_sym_PLUS_PLUS] = ACTIONS(2781), + [anon_sym_sizeof] = ACTIONS(2779), + [anon_sym___alignof__] = ACTIONS(2779), + [anon_sym___alignof] = ACTIONS(2779), + [anon_sym__alignof] = ACTIONS(2779), + [anon_sym_alignof] = ACTIONS(2779), + [anon_sym__Alignof] = ACTIONS(2779), + [anon_sym_offsetof] = ACTIONS(2779), + [anon_sym__Generic] = ACTIONS(2779), + [anon_sym_asm] = ACTIONS(2779), + [anon_sym___asm__] = ACTIONS(2779), + [anon_sym___asm] = ACTIONS(2779), + [sym_number_literal] = ACTIONS(2781), + [anon_sym_L_SQUOTE] = ACTIONS(2781), + [anon_sym_u_SQUOTE] = ACTIONS(2781), + [anon_sym_U_SQUOTE] = ACTIONS(2781), + [anon_sym_u8_SQUOTE] = ACTIONS(2781), + [anon_sym_SQUOTE] = ACTIONS(2781), + [anon_sym_L_DQUOTE] = ACTIONS(2781), + [anon_sym_u_DQUOTE] = ACTIONS(2781), + [anon_sym_U_DQUOTE] = ACTIONS(2781), + [anon_sym_u8_DQUOTE] = ACTIONS(2781), + [anon_sym_DQUOTE] = ACTIONS(2781), + [sym_true] = ACTIONS(2779), + [sym_false] = ACTIONS(2779), + [anon_sym_NULL] = ACTIONS(2779), + [anon_sym_nullptr] = ACTIONS(2779), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2847), - [anon_sym_decltype] = ACTIONS(2847), - [anon_sym_explicit] = ACTIONS(2847), - [anon_sym_typename] = ACTIONS(2847), - [anon_sym_template] = ACTIONS(2847), - [anon_sym_operator] = ACTIONS(2847), - [anon_sym_try] = ACTIONS(2847), - [anon_sym_delete] = ACTIONS(2847), - [anon_sym_throw] = ACTIONS(2847), - [anon_sym_namespace] = ACTIONS(2847), - [anon_sym_static_assert] = ACTIONS(2847), - [anon_sym_concept] = ACTIONS(2847), - [anon_sym_co_return] = ACTIONS(2847), - [anon_sym_co_yield] = ACTIONS(2847), - [anon_sym_R_DQUOTE] = ACTIONS(2849), - [anon_sym_LR_DQUOTE] = ACTIONS(2849), - [anon_sym_uR_DQUOTE] = ACTIONS(2849), - [anon_sym_UR_DQUOTE] = ACTIONS(2849), - [anon_sym_u8R_DQUOTE] = ACTIONS(2849), - [anon_sym_co_await] = ACTIONS(2847), - [anon_sym_new] = ACTIONS(2847), - [anon_sym_requires] = ACTIONS(2847), - [sym_this] = ACTIONS(2847), + [sym_auto] = ACTIONS(2779), + [anon_sym_decltype] = ACTIONS(2779), + [anon_sym_explicit] = ACTIONS(2779), + [anon_sym_typename] = ACTIONS(2779), + [anon_sym_template] = ACTIONS(2779), + [anon_sym_operator] = ACTIONS(2779), + [anon_sym_try] = ACTIONS(2779), + [anon_sym_delete] = ACTIONS(2779), + [anon_sym_throw] = ACTIONS(2779), + [anon_sym_namespace] = ACTIONS(2779), + [anon_sym_static_assert] = ACTIONS(2779), + [anon_sym_concept] = ACTIONS(2779), + [anon_sym_co_return] = ACTIONS(2779), + [anon_sym_co_yield] = ACTIONS(2779), + [anon_sym_R_DQUOTE] = ACTIONS(2781), + [anon_sym_LR_DQUOTE] = ACTIONS(2781), + [anon_sym_uR_DQUOTE] = ACTIONS(2781), + [anon_sym_UR_DQUOTE] = ACTIONS(2781), + [anon_sym_u8R_DQUOTE] = ACTIONS(2781), + [anon_sym_co_await] = ACTIONS(2779), + [anon_sym_new] = ACTIONS(2779), + [anon_sym_requires] = ACTIONS(2779), + [sym_this] = ACTIONS(2779), + }, + [723] = { + [sym_identifier] = ACTIONS(2879), + [aux_sym_preproc_include_token1] = ACTIONS(2879), + [aux_sym_preproc_def_token1] = ACTIONS(2879), + [aux_sym_preproc_if_token1] = ACTIONS(2879), + [aux_sym_preproc_if_token2] = ACTIONS(2879), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2879), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2879), + [sym_preproc_directive] = ACTIONS(2879), + [anon_sym_LPAREN2] = ACTIONS(2881), + [anon_sym_BANG] = ACTIONS(2881), + [anon_sym_TILDE] = ACTIONS(2881), + [anon_sym_DASH] = ACTIONS(2879), + [anon_sym_PLUS] = ACTIONS(2879), + [anon_sym_STAR] = ACTIONS(2881), + [anon_sym_AMP_AMP] = ACTIONS(2881), + [anon_sym_AMP] = ACTIONS(2879), + [anon_sym_SEMI] = ACTIONS(2881), + [anon_sym___extension__] = ACTIONS(2879), + [anon_sym_typedef] = ACTIONS(2879), + [anon_sym_virtual] = ACTIONS(2879), + [anon_sym_extern] = ACTIONS(2879), + [anon_sym___attribute__] = ACTIONS(2879), + [anon_sym___attribute] = ACTIONS(2879), + [anon_sym_using] = ACTIONS(2879), + [anon_sym_COLON_COLON] = ACTIONS(2881), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2881), + [anon_sym___declspec] = ACTIONS(2879), + [anon_sym___based] = ACTIONS(2879), + [anon_sym___cdecl] = ACTIONS(2879), + [anon_sym___clrcall] = ACTIONS(2879), + [anon_sym___stdcall] = ACTIONS(2879), + [anon_sym___fastcall] = ACTIONS(2879), + [anon_sym___thiscall] = ACTIONS(2879), + [anon_sym___vectorcall] = ACTIONS(2879), + [anon_sym_LBRACE] = ACTIONS(2881), + [anon_sym_signed] = ACTIONS(2879), + [anon_sym_unsigned] = ACTIONS(2879), + [anon_sym_long] = ACTIONS(2879), + [anon_sym_short] = ACTIONS(2879), + [anon_sym_LBRACK] = ACTIONS(2879), + [anon_sym_static] = ACTIONS(2879), + [anon_sym_register] = ACTIONS(2879), + [anon_sym_inline] = ACTIONS(2879), + [anon_sym___inline] = ACTIONS(2879), + [anon_sym___inline__] = ACTIONS(2879), + [anon_sym___forceinline] = ACTIONS(2879), + [anon_sym_thread_local] = ACTIONS(2879), + [anon_sym___thread] = ACTIONS(2879), + [anon_sym_const] = ACTIONS(2879), + [anon_sym_constexpr] = ACTIONS(2879), + [anon_sym_volatile] = ACTIONS(2879), + [anon_sym_restrict] = ACTIONS(2879), + [anon_sym___restrict__] = ACTIONS(2879), + [anon_sym__Atomic] = ACTIONS(2879), + [anon_sym__Noreturn] = ACTIONS(2879), + [anon_sym_noreturn] = ACTIONS(2879), + [anon_sym__Nonnull] = ACTIONS(2879), + [anon_sym_mutable] = ACTIONS(2879), + [anon_sym_constinit] = ACTIONS(2879), + [anon_sym_consteval] = ACTIONS(2879), + [anon_sym_alignas] = ACTIONS(2879), + [anon_sym__Alignas] = ACTIONS(2879), + [sym_primitive_type] = ACTIONS(2879), + [anon_sym_enum] = ACTIONS(2879), + [anon_sym_class] = ACTIONS(2879), + [anon_sym_struct] = ACTIONS(2879), + [anon_sym_union] = ACTIONS(2879), + [anon_sym_if] = ACTIONS(2879), + [anon_sym_switch] = ACTIONS(2879), + [anon_sym_case] = ACTIONS(2879), + [anon_sym_default] = ACTIONS(2879), + [anon_sym_while] = ACTIONS(2879), + [anon_sym_do] = ACTIONS(2879), + [anon_sym_for] = ACTIONS(2879), + [anon_sym_return] = ACTIONS(2879), + [anon_sym_break] = ACTIONS(2879), + [anon_sym_continue] = ACTIONS(2879), + [anon_sym_goto] = ACTIONS(2879), + [anon_sym___try] = ACTIONS(2879), + [anon_sym___leave] = ACTIONS(2879), + [anon_sym_not] = ACTIONS(2879), + [anon_sym_compl] = ACTIONS(2879), + [anon_sym_DASH_DASH] = ACTIONS(2881), + [anon_sym_PLUS_PLUS] = ACTIONS(2881), + [anon_sym_sizeof] = ACTIONS(2879), + [anon_sym___alignof__] = ACTIONS(2879), + [anon_sym___alignof] = ACTIONS(2879), + [anon_sym__alignof] = ACTIONS(2879), + [anon_sym_alignof] = ACTIONS(2879), + [anon_sym__Alignof] = ACTIONS(2879), + [anon_sym_offsetof] = ACTIONS(2879), + [anon_sym__Generic] = ACTIONS(2879), + [anon_sym_asm] = ACTIONS(2879), + [anon_sym___asm__] = ACTIONS(2879), + [anon_sym___asm] = ACTIONS(2879), + [sym_number_literal] = ACTIONS(2881), + [anon_sym_L_SQUOTE] = ACTIONS(2881), + [anon_sym_u_SQUOTE] = ACTIONS(2881), + [anon_sym_U_SQUOTE] = ACTIONS(2881), + [anon_sym_u8_SQUOTE] = ACTIONS(2881), + [anon_sym_SQUOTE] = ACTIONS(2881), + [anon_sym_L_DQUOTE] = ACTIONS(2881), + [anon_sym_u_DQUOTE] = ACTIONS(2881), + [anon_sym_U_DQUOTE] = ACTIONS(2881), + [anon_sym_u8_DQUOTE] = ACTIONS(2881), + [anon_sym_DQUOTE] = ACTIONS(2881), + [sym_true] = ACTIONS(2879), + [sym_false] = ACTIONS(2879), + [anon_sym_NULL] = ACTIONS(2879), + [anon_sym_nullptr] = ACTIONS(2879), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2879), + [anon_sym_decltype] = ACTIONS(2879), + [anon_sym_explicit] = ACTIONS(2879), + [anon_sym_typename] = ACTIONS(2879), + [anon_sym_template] = ACTIONS(2879), + [anon_sym_operator] = ACTIONS(2879), + [anon_sym_try] = ACTIONS(2879), + [anon_sym_delete] = ACTIONS(2879), + [anon_sym_throw] = ACTIONS(2879), + [anon_sym_namespace] = ACTIONS(2879), + [anon_sym_static_assert] = ACTIONS(2879), + [anon_sym_concept] = ACTIONS(2879), + [anon_sym_co_return] = ACTIONS(2879), + [anon_sym_co_yield] = ACTIONS(2879), + [anon_sym_R_DQUOTE] = ACTIONS(2881), + [anon_sym_LR_DQUOTE] = ACTIONS(2881), + [anon_sym_uR_DQUOTE] = ACTIONS(2881), + [anon_sym_UR_DQUOTE] = ACTIONS(2881), + [anon_sym_u8R_DQUOTE] = ACTIONS(2881), + [anon_sym_co_await] = ACTIONS(2879), + [anon_sym_new] = ACTIONS(2879), + [anon_sym_requires] = ACTIONS(2879), + [sym_this] = ACTIONS(2879), }, - [708] = { - [sym_identifier] = ACTIONS(2851), - [aux_sym_preproc_include_token1] = ACTIONS(2851), - [aux_sym_preproc_def_token1] = ACTIONS(2851), - [aux_sym_preproc_if_token1] = ACTIONS(2851), - [aux_sym_preproc_if_token2] = ACTIONS(2851), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2851), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2851), - [sym_preproc_directive] = ACTIONS(2851), - [anon_sym_LPAREN2] = ACTIONS(2853), - [anon_sym_BANG] = ACTIONS(2853), - [anon_sym_TILDE] = ACTIONS(2853), - [anon_sym_DASH] = ACTIONS(2851), - [anon_sym_PLUS] = ACTIONS(2851), - [anon_sym_STAR] = ACTIONS(2853), - [anon_sym_AMP_AMP] = ACTIONS(2853), - [anon_sym_AMP] = ACTIONS(2851), - [anon_sym_SEMI] = ACTIONS(2853), - [anon_sym___extension__] = ACTIONS(2851), - [anon_sym_typedef] = ACTIONS(2851), - [anon_sym_virtual] = ACTIONS(2851), - [anon_sym_extern] = ACTIONS(2851), - [anon_sym___attribute__] = ACTIONS(2851), - [anon_sym___attribute] = ACTIONS(2851), - [anon_sym_using] = ACTIONS(2851), - [anon_sym_COLON_COLON] = ACTIONS(2853), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2853), - [anon_sym___declspec] = ACTIONS(2851), - [anon_sym___based] = ACTIONS(2851), - [anon_sym___cdecl] = ACTIONS(2851), - [anon_sym___clrcall] = ACTIONS(2851), - [anon_sym___stdcall] = ACTIONS(2851), - [anon_sym___fastcall] = ACTIONS(2851), - [anon_sym___thiscall] = ACTIONS(2851), - [anon_sym___vectorcall] = ACTIONS(2851), - [anon_sym_LBRACE] = ACTIONS(2853), - [anon_sym_signed] = ACTIONS(2851), - [anon_sym_unsigned] = ACTIONS(2851), - [anon_sym_long] = ACTIONS(2851), - [anon_sym_short] = ACTIONS(2851), - [anon_sym_LBRACK] = ACTIONS(2851), - [anon_sym_static] = ACTIONS(2851), - [anon_sym_register] = ACTIONS(2851), - [anon_sym_inline] = ACTIONS(2851), - [anon_sym___inline] = ACTIONS(2851), - [anon_sym___inline__] = ACTIONS(2851), - [anon_sym___forceinline] = ACTIONS(2851), - [anon_sym_thread_local] = ACTIONS(2851), - [anon_sym___thread] = ACTIONS(2851), - [anon_sym_const] = ACTIONS(2851), - [anon_sym_constexpr] = ACTIONS(2851), - [anon_sym_volatile] = ACTIONS(2851), - [anon_sym_restrict] = ACTIONS(2851), - [anon_sym___restrict__] = ACTIONS(2851), - [anon_sym__Atomic] = ACTIONS(2851), - [anon_sym__Noreturn] = ACTIONS(2851), - [anon_sym_noreturn] = ACTIONS(2851), - [anon_sym__Nonnull] = ACTIONS(2851), - [anon_sym_mutable] = ACTIONS(2851), - [anon_sym_constinit] = ACTIONS(2851), - [anon_sym_consteval] = ACTIONS(2851), - [anon_sym_alignas] = ACTIONS(2851), - [anon_sym__Alignas] = ACTIONS(2851), - [sym_primitive_type] = ACTIONS(2851), - [anon_sym_enum] = ACTIONS(2851), - [anon_sym_class] = ACTIONS(2851), - [anon_sym_struct] = ACTIONS(2851), - [anon_sym_union] = ACTIONS(2851), - [anon_sym_if] = ACTIONS(2851), - [anon_sym_switch] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2851), - [anon_sym_default] = ACTIONS(2851), - [anon_sym_while] = ACTIONS(2851), - [anon_sym_do] = ACTIONS(2851), - [anon_sym_for] = ACTIONS(2851), - [anon_sym_return] = ACTIONS(2851), - [anon_sym_break] = ACTIONS(2851), - [anon_sym_continue] = ACTIONS(2851), - [anon_sym_goto] = ACTIONS(2851), - [anon_sym___try] = ACTIONS(2851), - [anon_sym___leave] = ACTIONS(2851), - [anon_sym_not] = ACTIONS(2851), - [anon_sym_compl] = ACTIONS(2851), - [anon_sym_DASH_DASH] = ACTIONS(2853), - [anon_sym_PLUS_PLUS] = ACTIONS(2853), - [anon_sym_sizeof] = ACTIONS(2851), - [anon_sym___alignof__] = ACTIONS(2851), - [anon_sym___alignof] = ACTIONS(2851), - [anon_sym__alignof] = ACTIONS(2851), - [anon_sym_alignof] = ACTIONS(2851), - [anon_sym__Alignof] = ACTIONS(2851), - [anon_sym_offsetof] = ACTIONS(2851), - [anon_sym__Generic] = ACTIONS(2851), - [anon_sym_asm] = ACTIONS(2851), - [anon_sym___asm__] = ACTIONS(2851), - [anon_sym___asm] = ACTIONS(2851), - [sym_number_literal] = ACTIONS(2853), - [anon_sym_L_SQUOTE] = ACTIONS(2853), - [anon_sym_u_SQUOTE] = ACTIONS(2853), - [anon_sym_U_SQUOTE] = ACTIONS(2853), - [anon_sym_u8_SQUOTE] = ACTIONS(2853), - [anon_sym_SQUOTE] = ACTIONS(2853), - [anon_sym_L_DQUOTE] = ACTIONS(2853), - [anon_sym_u_DQUOTE] = ACTIONS(2853), - [anon_sym_U_DQUOTE] = ACTIONS(2853), - [anon_sym_u8_DQUOTE] = ACTIONS(2853), - [anon_sym_DQUOTE] = ACTIONS(2853), - [sym_true] = ACTIONS(2851), - [sym_false] = ACTIONS(2851), - [anon_sym_NULL] = ACTIONS(2851), - [anon_sym_nullptr] = ACTIONS(2851), + [724] = { + [sym_identifier] = ACTIONS(2895), + [aux_sym_preproc_include_token1] = ACTIONS(2895), + [aux_sym_preproc_def_token1] = ACTIONS(2895), + [aux_sym_preproc_if_token1] = ACTIONS(2895), + [aux_sym_preproc_if_token2] = ACTIONS(2895), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2895), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2895), + [sym_preproc_directive] = ACTIONS(2895), + [anon_sym_LPAREN2] = ACTIONS(2897), + [anon_sym_BANG] = ACTIONS(2897), + [anon_sym_TILDE] = ACTIONS(2897), + [anon_sym_DASH] = ACTIONS(2895), + [anon_sym_PLUS] = ACTIONS(2895), + [anon_sym_STAR] = ACTIONS(2897), + [anon_sym_AMP_AMP] = ACTIONS(2897), + [anon_sym_AMP] = ACTIONS(2895), + [anon_sym_SEMI] = ACTIONS(2897), + [anon_sym___extension__] = ACTIONS(2895), + [anon_sym_typedef] = ACTIONS(2895), + [anon_sym_virtual] = ACTIONS(2895), + [anon_sym_extern] = ACTIONS(2895), + [anon_sym___attribute__] = ACTIONS(2895), + [anon_sym___attribute] = ACTIONS(2895), + [anon_sym_using] = ACTIONS(2895), + [anon_sym_COLON_COLON] = ACTIONS(2897), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2897), + [anon_sym___declspec] = ACTIONS(2895), + [anon_sym___based] = ACTIONS(2895), + [anon_sym___cdecl] = ACTIONS(2895), + [anon_sym___clrcall] = ACTIONS(2895), + [anon_sym___stdcall] = ACTIONS(2895), + [anon_sym___fastcall] = ACTIONS(2895), + [anon_sym___thiscall] = ACTIONS(2895), + [anon_sym___vectorcall] = ACTIONS(2895), + [anon_sym_LBRACE] = ACTIONS(2897), + [anon_sym_signed] = ACTIONS(2895), + [anon_sym_unsigned] = ACTIONS(2895), + [anon_sym_long] = ACTIONS(2895), + [anon_sym_short] = ACTIONS(2895), + [anon_sym_LBRACK] = ACTIONS(2895), + [anon_sym_static] = ACTIONS(2895), + [anon_sym_register] = ACTIONS(2895), + [anon_sym_inline] = ACTIONS(2895), + [anon_sym___inline] = ACTIONS(2895), + [anon_sym___inline__] = ACTIONS(2895), + [anon_sym___forceinline] = ACTIONS(2895), + [anon_sym_thread_local] = ACTIONS(2895), + [anon_sym___thread] = ACTIONS(2895), + [anon_sym_const] = ACTIONS(2895), + [anon_sym_constexpr] = ACTIONS(2895), + [anon_sym_volatile] = ACTIONS(2895), + [anon_sym_restrict] = ACTIONS(2895), + [anon_sym___restrict__] = ACTIONS(2895), + [anon_sym__Atomic] = ACTIONS(2895), + [anon_sym__Noreturn] = ACTIONS(2895), + [anon_sym_noreturn] = ACTIONS(2895), + [anon_sym__Nonnull] = ACTIONS(2895), + [anon_sym_mutable] = ACTIONS(2895), + [anon_sym_constinit] = ACTIONS(2895), + [anon_sym_consteval] = ACTIONS(2895), + [anon_sym_alignas] = ACTIONS(2895), + [anon_sym__Alignas] = ACTIONS(2895), + [sym_primitive_type] = ACTIONS(2895), + [anon_sym_enum] = ACTIONS(2895), + [anon_sym_class] = ACTIONS(2895), + [anon_sym_struct] = ACTIONS(2895), + [anon_sym_union] = ACTIONS(2895), + [anon_sym_if] = ACTIONS(2895), + [anon_sym_switch] = ACTIONS(2895), + [anon_sym_case] = ACTIONS(2895), + [anon_sym_default] = ACTIONS(2895), + [anon_sym_while] = ACTIONS(2895), + [anon_sym_do] = ACTIONS(2895), + [anon_sym_for] = ACTIONS(2895), + [anon_sym_return] = ACTIONS(2895), + [anon_sym_break] = ACTIONS(2895), + [anon_sym_continue] = ACTIONS(2895), + [anon_sym_goto] = ACTIONS(2895), + [anon_sym___try] = ACTIONS(2895), + [anon_sym___leave] = ACTIONS(2895), + [anon_sym_not] = ACTIONS(2895), + [anon_sym_compl] = ACTIONS(2895), + [anon_sym_DASH_DASH] = ACTIONS(2897), + [anon_sym_PLUS_PLUS] = ACTIONS(2897), + [anon_sym_sizeof] = ACTIONS(2895), + [anon_sym___alignof__] = ACTIONS(2895), + [anon_sym___alignof] = ACTIONS(2895), + [anon_sym__alignof] = ACTIONS(2895), + [anon_sym_alignof] = ACTIONS(2895), + [anon_sym__Alignof] = ACTIONS(2895), + [anon_sym_offsetof] = ACTIONS(2895), + [anon_sym__Generic] = ACTIONS(2895), + [anon_sym_asm] = ACTIONS(2895), + [anon_sym___asm__] = ACTIONS(2895), + [anon_sym___asm] = ACTIONS(2895), + [sym_number_literal] = ACTIONS(2897), + [anon_sym_L_SQUOTE] = ACTIONS(2897), + [anon_sym_u_SQUOTE] = ACTIONS(2897), + [anon_sym_U_SQUOTE] = ACTIONS(2897), + [anon_sym_u8_SQUOTE] = ACTIONS(2897), + [anon_sym_SQUOTE] = ACTIONS(2897), + [anon_sym_L_DQUOTE] = ACTIONS(2897), + [anon_sym_u_DQUOTE] = ACTIONS(2897), + [anon_sym_U_DQUOTE] = ACTIONS(2897), + [anon_sym_u8_DQUOTE] = ACTIONS(2897), + [anon_sym_DQUOTE] = ACTIONS(2897), + [sym_true] = ACTIONS(2895), + [sym_false] = ACTIONS(2895), + [anon_sym_NULL] = ACTIONS(2895), + [anon_sym_nullptr] = ACTIONS(2895), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2851), - [anon_sym_decltype] = ACTIONS(2851), - [anon_sym_explicit] = ACTIONS(2851), - [anon_sym_typename] = ACTIONS(2851), - [anon_sym_template] = ACTIONS(2851), - [anon_sym_operator] = ACTIONS(2851), - [anon_sym_try] = ACTIONS(2851), - [anon_sym_delete] = ACTIONS(2851), - [anon_sym_throw] = ACTIONS(2851), - [anon_sym_namespace] = ACTIONS(2851), - [anon_sym_static_assert] = ACTIONS(2851), - [anon_sym_concept] = ACTIONS(2851), - [anon_sym_co_return] = ACTIONS(2851), - [anon_sym_co_yield] = ACTIONS(2851), - [anon_sym_R_DQUOTE] = ACTIONS(2853), - [anon_sym_LR_DQUOTE] = ACTIONS(2853), - [anon_sym_uR_DQUOTE] = ACTIONS(2853), - [anon_sym_UR_DQUOTE] = ACTIONS(2853), - [anon_sym_u8R_DQUOTE] = ACTIONS(2853), - [anon_sym_co_await] = ACTIONS(2851), - [anon_sym_new] = ACTIONS(2851), - [anon_sym_requires] = ACTIONS(2851), - [sym_this] = ACTIONS(2851), + [sym_auto] = ACTIONS(2895), + [anon_sym_decltype] = ACTIONS(2895), + [anon_sym_explicit] = ACTIONS(2895), + [anon_sym_typename] = ACTIONS(2895), + [anon_sym_template] = ACTIONS(2895), + [anon_sym_operator] = ACTIONS(2895), + [anon_sym_try] = ACTIONS(2895), + [anon_sym_delete] = ACTIONS(2895), + [anon_sym_throw] = ACTIONS(2895), + [anon_sym_namespace] = ACTIONS(2895), + [anon_sym_static_assert] = ACTIONS(2895), + [anon_sym_concept] = ACTIONS(2895), + [anon_sym_co_return] = ACTIONS(2895), + [anon_sym_co_yield] = ACTIONS(2895), + [anon_sym_R_DQUOTE] = ACTIONS(2897), + [anon_sym_LR_DQUOTE] = ACTIONS(2897), + [anon_sym_uR_DQUOTE] = ACTIONS(2897), + [anon_sym_UR_DQUOTE] = ACTIONS(2897), + [anon_sym_u8R_DQUOTE] = ACTIONS(2897), + [anon_sym_co_await] = ACTIONS(2895), + [anon_sym_new] = ACTIONS(2895), + [anon_sym_requires] = ACTIONS(2895), + [sym_this] = ACTIONS(2895), }, - [709] = { - [sym_identifier] = ACTIONS(2855), - [aux_sym_preproc_include_token1] = ACTIONS(2855), - [aux_sym_preproc_def_token1] = ACTIONS(2855), - [aux_sym_preproc_if_token1] = ACTIONS(2855), - [aux_sym_preproc_if_token2] = ACTIONS(2855), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2855), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2855), - [sym_preproc_directive] = ACTIONS(2855), - [anon_sym_LPAREN2] = ACTIONS(2857), - [anon_sym_BANG] = ACTIONS(2857), - [anon_sym_TILDE] = ACTIONS(2857), - [anon_sym_DASH] = ACTIONS(2855), - [anon_sym_PLUS] = ACTIONS(2855), - [anon_sym_STAR] = ACTIONS(2857), - [anon_sym_AMP_AMP] = ACTIONS(2857), - [anon_sym_AMP] = ACTIONS(2855), - [anon_sym_SEMI] = ACTIONS(2857), - [anon_sym___extension__] = ACTIONS(2855), - [anon_sym_typedef] = ACTIONS(2855), - [anon_sym_virtual] = ACTIONS(2855), - [anon_sym_extern] = ACTIONS(2855), - [anon_sym___attribute__] = ACTIONS(2855), - [anon_sym___attribute] = ACTIONS(2855), - [anon_sym_using] = ACTIONS(2855), - [anon_sym_COLON_COLON] = ACTIONS(2857), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2857), - [anon_sym___declspec] = ACTIONS(2855), - [anon_sym___based] = ACTIONS(2855), - [anon_sym___cdecl] = ACTIONS(2855), - [anon_sym___clrcall] = ACTIONS(2855), - [anon_sym___stdcall] = ACTIONS(2855), - [anon_sym___fastcall] = ACTIONS(2855), - [anon_sym___thiscall] = ACTIONS(2855), - [anon_sym___vectorcall] = ACTIONS(2855), - [anon_sym_LBRACE] = ACTIONS(2857), - [anon_sym_signed] = ACTIONS(2855), - [anon_sym_unsigned] = ACTIONS(2855), - [anon_sym_long] = ACTIONS(2855), - [anon_sym_short] = ACTIONS(2855), - [anon_sym_LBRACK] = ACTIONS(2855), - [anon_sym_static] = ACTIONS(2855), - [anon_sym_register] = ACTIONS(2855), - [anon_sym_inline] = ACTIONS(2855), - [anon_sym___inline] = ACTIONS(2855), - [anon_sym___inline__] = ACTIONS(2855), - [anon_sym___forceinline] = ACTIONS(2855), - [anon_sym_thread_local] = ACTIONS(2855), - [anon_sym___thread] = ACTIONS(2855), - [anon_sym_const] = ACTIONS(2855), - [anon_sym_constexpr] = ACTIONS(2855), - [anon_sym_volatile] = ACTIONS(2855), - [anon_sym_restrict] = ACTIONS(2855), - [anon_sym___restrict__] = ACTIONS(2855), - [anon_sym__Atomic] = ACTIONS(2855), - [anon_sym__Noreturn] = ACTIONS(2855), - [anon_sym_noreturn] = ACTIONS(2855), - [anon_sym__Nonnull] = ACTIONS(2855), - [anon_sym_mutable] = ACTIONS(2855), - [anon_sym_constinit] = ACTIONS(2855), - [anon_sym_consteval] = ACTIONS(2855), - [anon_sym_alignas] = ACTIONS(2855), - [anon_sym__Alignas] = ACTIONS(2855), - [sym_primitive_type] = ACTIONS(2855), - [anon_sym_enum] = ACTIONS(2855), - [anon_sym_class] = ACTIONS(2855), - [anon_sym_struct] = ACTIONS(2855), - [anon_sym_union] = ACTIONS(2855), - [anon_sym_if] = ACTIONS(2855), - [anon_sym_switch] = ACTIONS(2855), - [anon_sym_case] = ACTIONS(2855), - [anon_sym_default] = ACTIONS(2855), - [anon_sym_while] = ACTIONS(2855), - [anon_sym_do] = ACTIONS(2855), - [anon_sym_for] = ACTIONS(2855), - [anon_sym_return] = ACTIONS(2855), - [anon_sym_break] = ACTIONS(2855), - [anon_sym_continue] = ACTIONS(2855), - [anon_sym_goto] = ACTIONS(2855), - [anon_sym___try] = ACTIONS(2855), - [anon_sym___leave] = ACTIONS(2855), - [anon_sym_not] = ACTIONS(2855), - [anon_sym_compl] = ACTIONS(2855), - [anon_sym_DASH_DASH] = ACTIONS(2857), - [anon_sym_PLUS_PLUS] = ACTIONS(2857), - [anon_sym_sizeof] = ACTIONS(2855), - [anon_sym___alignof__] = ACTIONS(2855), - [anon_sym___alignof] = ACTIONS(2855), - [anon_sym__alignof] = ACTIONS(2855), - [anon_sym_alignof] = ACTIONS(2855), - [anon_sym__Alignof] = ACTIONS(2855), - [anon_sym_offsetof] = ACTIONS(2855), - [anon_sym__Generic] = ACTIONS(2855), - [anon_sym_asm] = ACTIONS(2855), - [anon_sym___asm__] = ACTIONS(2855), - [anon_sym___asm] = ACTIONS(2855), - [sym_number_literal] = ACTIONS(2857), - [anon_sym_L_SQUOTE] = ACTIONS(2857), - [anon_sym_u_SQUOTE] = ACTIONS(2857), - [anon_sym_U_SQUOTE] = ACTIONS(2857), - [anon_sym_u8_SQUOTE] = ACTIONS(2857), - [anon_sym_SQUOTE] = ACTIONS(2857), - [anon_sym_L_DQUOTE] = ACTIONS(2857), - [anon_sym_u_DQUOTE] = ACTIONS(2857), - [anon_sym_U_DQUOTE] = ACTIONS(2857), - [anon_sym_u8_DQUOTE] = ACTIONS(2857), - [anon_sym_DQUOTE] = ACTIONS(2857), - [sym_true] = ACTIONS(2855), - [sym_false] = ACTIONS(2855), - [anon_sym_NULL] = ACTIONS(2855), - [anon_sym_nullptr] = ACTIONS(2855), + [725] = { + [sym_identifier] = ACTIONS(2935), + [aux_sym_preproc_include_token1] = ACTIONS(2935), + [aux_sym_preproc_def_token1] = ACTIONS(2935), + [aux_sym_preproc_if_token1] = ACTIONS(2935), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2935), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2935), + [sym_preproc_directive] = ACTIONS(2935), + [anon_sym_LPAREN2] = ACTIONS(2937), + [anon_sym_BANG] = ACTIONS(2937), + [anon_sym_TILDE] = ACTIONS(2937), + [anon_sym_DASH] = ACTIONS(2935), + [anon_sym_PLUS] = ACTIONS(2935), + [anon_sym_STAR] = ACTIONS(2937), + [anon_sym_AMP_AMP] = ACTIONS(2937), + [anon_sym_AMP] = ACTIONS(2935), + [anon_sym_SEMI] = ACTIONS(2937), + [anon_sym___extension__] = ACTIONS(2935), + [anon_sym_typedef] = ACTIONS(2935), + [anon_sym_virtual] = ACTIONS(2935), + [anon_sym_extern] = ACTIONS(2935), + [anon_sym___attribute__] = ACTIONS(2935), + [anon_sym___attribute] = ACTIONS(2935), + [anon_sym_using] = ACTIONS(2935), + [anon_sym_COLON_COLON] = ACTIONS(2937), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2937), + [anon_sym___declspec] = ACTIONS(2935), + [anon_sym___based] = ACTIONS(2935), + [anon_sym___cdecl] = ACTIONS(2935), + [anon_sym___clrcall] = ACTIONS(2935), + [anon_sym___stdcall] = ACTIONS(2935), + [anon_sym___fastcall] = ACTIONS(2935), + [anon_sym___thiscall] = ACTIONS(2935), + [anon_sym___vectorcall] = ACTIONS(2935), + [anon_sym_LBRACE] = ACTIONS(2937), + [anon_sym_RBRACE] = ACTIONS(2937), + [anon_sym_signed] = ACTIONS(2935), + [anon_sym_unsigned] = ACTIONS(2935), + [anon_sym_long] = ACTIONS(2935), + [anon_sym_short] = ACTIONS(2935), + [anon_sym_LBRACK] = ACTIONS(2935), + [anon_sym_static] = ACTIONS(2935), + [anon_sym_register] = ACTIONS(2935), + [anon_sym_inline] = ACTIONS(2935), + [anon_sym___inline] = ACTIONS(2935), + [anon_sym___inline__] = ACTIONS(2935), + [anon_sym___forceinline] = ACTIONS(2935), + [anon_sym_thread_local] = ACTIONS(2935), + [anon_sym___thread] = ACTIONS(2935), + [anon_sym_const] = ACTIONS(2935), + [anon_sym_constexpr] = ACTIONS(2935), + [anon_sym_volatile] = ACTIONS(2935), + [anon_sym_restrict] = ACTIONS(2935), + [anon_sym___restrict__] = ACTIONS(2935), + [anon_sym__Atomic] = ACTIONS(2935), + [anon_sym__Noreturn] = ACTIONS(2935), + [anon_sym_noreturn] = ACTIONS(2935), + [anon_sym__Nonnull] = ACTIONS(2935), + [anon_sym_mutable] = ACTIONS(2935), + [anon_sym_constinit] = ACTIONS(2935), + [anon_sym_consteval] = ACTIONS(2935), + [anon_sym_alignas] = ACTIONS(2935), + [anon_sym__Alignas] = ACTIONS(2935), + [sym_primitive_type] = ACTIONS(2935), + [anon_sym_enum] = ACTIONS(2935), + [anon_sym_class] = ACTIONS(2935), + [anon_sym_struct] = ACTIONS(2935), + [anon_sym_union] = ACTIONS(2935), + [anon_sym_if] = ACTIONS(2935), + [anon_sym_switch] = ACTIONS(2935), + [anon_sym_case] = ACTIONS(2935), + [anon_sym_default] = ACTIONS(2935), + [anon_sym_while] = ACTIONS(2935), + [anon_sym_do] = ACTIONS(2935), + [anon_sym_for] = ACTIONS(2935), + [anon_sym_return] = ACTIONS(2935), + [anon_sym_break] = ACTIONS(2935), + [anon_sym_continue] = ACTIONS(2935), + [anon_sym_goto] = ACTIONS(2935), + [anon_sym___try] = ACTIONS(2935), + [anon_sym___leave] = ACTIONS(2935), + [anon_sym_not] = ACTIONS(2935), + [anon_sym_compl] = ACTIONS(2935), + [anon_sym_DASH_DASH] = ACTIONS(2937), + [anon_sym_PLUS_PLUS] = ACTIONS(2937), + [anon_sym_sizeof] = ACTIONS(2935), + [anon_sym___alignof__] = ACTIONS(2935), + [anon_sym___alignof] = ACTIONS(2935), + [anon_sym__alignof] = ACTIONS(2935), + [anon_sym_alignof] = ACTIONS(2935), + [anon_sym__Alignof] = ACTIONS(2935), + [anon_sym_offsetof] = ACTIONS(2935), + [anon_sym__Generic] = ACTIONS(2935), + [anon_sym_asm] = ACTIONS(2935), + [anon_sym___asm__] = ACTIONS(2935), + [anon_sym___asm] = ACTIONS(2935), + [sym_number_literal] = ACTIONS(2937), + [anon_sym_L_SQUOTE] = ACTIONS(2937), + [anon_sym_u_SQUOTE] = ACTIONS(2937), + [anon_sym_U_SQUOTE] = ACTIONS(2937), + [anon_sym_u8_SQUOTE] = ACTIONS(2937), + [anon_sym_SQUOTE] = ACTIONS(2937), + [anon_sym_L_DQUOTE] = ACTIONS(2937), + [anon_sym_u_DQUOTE] = ACTIONS(2937), + [anon_sym_U_DQUOTE] = ACTIONS(2937), + [anon_sym_u8_DQUOTE] = ACTIONS(2937), + [anon_sym_DQUOTE] = ACTIONS(2937), + [sym_true] = ACTIONS(2935), + [sym_false] = ACTIONS(2935), + [anon_sym_NULL] = ACTIONS(2935), + [anon_sym_nullptr] = ACTIONS(2935), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2855), - [anon_sym_decltype] = ACTIONS(2855), - [anon_sym_explicit] = ACTIONS(2855), - [anon_sym_typename] = ACTIONS(2855), - [anon_sym_template] = ACTIONS(2855), - [anon_sym_operator] = ACTIONS(2855), - [anon_sym_try] = ACTIONS(2855), - [anon_sym_delete] = ACTIONS(2855), - [anon_sym_throw] = ACTIONS(2855), - [anon_sym_namespace] = ACTIONS(2855), - [anon_sym_static_assert] = ACTIONS(2855), - [anon_sym_concept] = ACTIONS(2855), - [anon_sym_co_return] = ACTIONS(2855), - [anon_sym_co_yield] = ACTIONS(2855), - [anon_sym_R_DQUOTE] = ACTIONS(2857), - [anon_sym_LR_DQUOTE] = ACTIONS(2857), - [anon_sym_uR_DQUOTE] = ACTIONS(2857), - [anon_sym_UR_DQUOTE] = ACTIONS(2857), - [anon_sym_u8R_DQUOTE] = ACTIONS(2857), - [anon_sym_co_await] = ACTIONS(2855), - [anon_sym_new] = ACTIONS(2855), - [anon_sym_requires] = ACTIONS(2855), - [sym_this] = ACTIONS(2855), + [sym_auto] = ACTIONS(2935), + [anon_sym_decltype] = ACTIONS(2935), + [anon_sym_explicit] = ACTIONS(2935), + [anon_sym_typename] = ACTIONS(2935), + [anon_sym_template] = ACTIONS(2935), + [anon_sym_operator] = ACTIONS(2935), + [anon_sym_try] = ACTIONS(2935), + [anon_sym_delete] = ACTIONS(2935), + [anon_sym_throw] = ACTIONS(2935), + [anon_sym_namespace] = ACTIONS(2935), + [anon_sym_static_assert] = ACTIONS(2935), + [anon_sym_concept] = ACTIONS(2935), + [anon_sym_co_return] = ACTIONS(2935), + [anon_sym_co_yield] = ACTIONS(2935), + [anon_sym_R_DQUOTE] = ACTIONS(2937), + [anon_sym_LR_DQUOTE] = ACTIONS(2937), + [anon_sym_uR_DQUOTE] = ACTIONS(2937), + [anon_sym_UR_DQUOTE] = ACTIONS(2937), + [anon_sym_u8R_DQUOTE] = ACTIONS(2937), + [anon_sym_co_await] = ACTIONS(2935), + [anon_sym_new] = ACTIONS(2935), + [anon_sym_requires] = ACTIONS(2935), + [sym_this] = ACTIONS(2935), }, - [710] = { - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token2] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym___attribute] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym__Nonnull] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym__Alignas] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [anon_sym___asm] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), + [726] = { + [sym_identifier] = ACTIONS(2939), + [aux_sym_preproc_include_token1] = ACTIONS(2939), + [aux_sym_preproc_def_token1] = ACTIONS(2939), + [aux_sym_preproc_if_token1] = ACTIONS(2939), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2939), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2939), + [sym_preproc_directive] = ACTIONS(2939), + [anon_sym_LPAREN2] = ACTIONS(2941), + [anon_sym_BANG] = ACTIONS(2941), + [anon_sym_TILDE] = ACTIONS(2941), + [anon_sym_DASH] = ACTIONS(2939), + [anon_sym_PLUS] = ACTIONS(2939), + [anon_sym_STAR] = ACTIONS(2941), + [anon_sym_AMP_AMP] = ACTIONS(2941), + [anon_sym_AMP] = ACTIONS(2939), + [anon_sym_SEMI] = ACTIONS(2941), + [anon_sym___extension__] = ACTIONS(2939), + [anon_sym_typedef] = ACTIONS(2939), + [anon_sym_virtual] = ACTIONS(2939), + [anon_sym_extern] = ACTIONS(2939), + [anon_sym___attribute__] = ACTIONS(2939), + [anon_sym___attribute] = ACTIONS(2939), + [anon_sym_using] = ACTIONS(2939), + [anon_sym_COLON_COLON] = ACTIONS(2941), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2941), + [anon_sym___declspec] = ACTIONS(2939), + [anon_sym___based] = ACTIONS(2939), + [anon_sym___cdecl] = ACTIONS(2939), + [anon_sym___clrcall] = ACTIONS(2939), + [anon_sym___stdcall] = ACTIONS(2939), + [anon_sym___fastcall] = ACTIONS(2939), + [anon_sym___thiscall] = ACTIONS(2939), + [anon_sym___vectorcall] = ACTIONS(2939), + [anon_sym_LBRACE] = ACTIONS(2941), + [anon_sym_RBRACE] = ACTIONS(2941), + [anon_sym_signed] = ACTIONS(2939), + [anon_sym_unsigned] = ACTIONS(2939), + [anon_sym_long] = ACTIONS(2939), + [anon_sym_short] = ACTIONS(2939), + [anon_sym_LBRACK] = ACTIONS(2939), + [anon_sym_static] = ACTIONS(2939), + [anon_sym_register] = ACTIONS(2939), + [anon_sym_inline] = ACTIONS(2939), + [anon_sym___inline] = ACTIONS(2939), + [anon_sym___inline__] = ACTIONS(2939), + [anon_sym___forceinline] = ACTIONS(2939), + [anon_sym_thread_local] = ACTIONS(2939), + [anon_sym___thread] = ACTIONS(2939), + [anon_sym_const] = ACTIONS(2939), + [anon_sym_constexpr] = ACTIONS(2939), + [anon_sym_volatile] = ACTIONS(2939), + [anon_sym_restrict] = ACTIONS(2939), + [anon_sym___restrict__] = ACTIONS(2939), + [anon_sym__Atomic] = ACTIONS(2939), + [anon_sym__Noreturn] = ACTIONS(2939), + [anon_sym_noreturn] = ACTIONS(2939), + [anon_sym__Nonnull] = ACTIONS(2939), + [anon_sym_mutable] = ACTIONS(2939), + [anon_sym_constinit] = ACTIONS(2939), + [anon_sym_consteval] = ACTIONS(2939), + [anon_sym_alignas] = ACTIONS(2939), + [anon_sym__Alignas] = ACTIONS(2939), + [sym_primitive_type] = ACTIONS(2939), + [anon_sym_enum] = ACTIONS(2939), + [anon_sym_class] = ACTIONS(2939), + [anon_sym_struct] = ACTIONS(2939), + [anon_sym_union] = ACTIONS(2939), + [anon_sym_if] = ACTIONS(2939), + [anon_sym_switch] = ACTIONS(2939), + [anon_sym_case] = ACTIONS(2939), + [anon_sym_default] = ACTIONS(2939), + [anon_sym_while] = ACTIONS(2939), + [anon_sym_do] = ACTIONS(2939), + [anon_sym_for] = ACTIONS(2939), + [anon_sym_return] = ACTIONS(2939), + [anon_sym_break] = ACTIONS(2939), + [anon_sym_continue] = ACTIONS(2939), + [anon_sym_goto] = ACTIONS(2939), + [anon_sym___try] = ACTIONS(2939), + [anon_sym___leave] = ACTIONS(2939), + [anon_sym_not] = ACTIONS(2939), + [anon_sym_compl] = ACTIONS(2939), + [anon_sym_DASH_DASH] = ACTIONS(2941), + [anon_sym_PLUS_PLUS] = ACTIONS(2941), + [anon_sym_sizeof] = ACTIONS(2939), + [anon_sym___alignof__] = ACTIONS(2939), + [anon_sym___alignof] = ACTIONS(2939), + [anon_sym__alignof] = ACTIONS(2939), + [anon_sym_alignof] = ACTIONS(2939), + [anon_sym__Alignof] = ACTIONS(2939), + [anon_sym_offsetof] = ACTIONS(2939), + [anon_sym__Generic] = ACTIONS(2939), + [anon_sym_asm] = ACTIONS(2939), + [anon_sym___asm__] = ACTIONS(2939), + [anon_sym___asm] = ACTIONS(2939), + [sym_number_literal] = ACTIONS(2941), + [anon_sym_L_SQUOTE] = ACTIONS(2941), + [anon_sym_u_SQUOTE] = ACTIONS(2941), + [anon_sym_U_SQUOTE] = ACTIONS(2941), + [anon_sym_u8_SQUOTE] = ACTIONS(2941), + [anon_sym_SQUOTE] = ACTIONS(2941), + [anon_sym_L_DQUOTE] = ACTIONS(2941), + [anon_sym_u_DQUOTE] = ACTIONS(2941), + [anon_sym_U_DQUOTE] = ACTIONS(2941), + [anon_sym_u8_DQUOTE] = ACTIONS(2941), + [anon_sym_DQUOTE] = ACTIONS(2941), + [sym_true] = ACTIONS(2939), + [sym_false] = ACTIONS(2939), + [anon_sym_NULL] = ACTIONS(2939), + [anon_sym_nullptr] = ACTIONS(2939), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), + [sym_auto] = ACTIONS(2939), + [anon_sym_decltype] = ACTIONS(2939), + [anon_sym_explicit] = ACTIONS(2939), + [anon_sym_typename] = ACTIONS(2939), + [anon_sym_template] = ACTIONS(2939), + [anon_sym_operator] = ACTIONS(2939), + [anon_sym_try] = ACTIONS(2939), + [anon_sym_delete] = ACTIONS(2939), + [anon_sym_throw] = ACTIONS(2939), + [anon_sym_namespace] = ACTIONS(2939), + [anon_sym_static_assert] = ACTIONS(2939), + [anon_sym_concept] = ACTIONS(2939), + [anon_sym_co_return] = ACTIONS(2939), + [anon_sym_co_yield] = ACTIONS(2939), + [anon_sym_R_DQUOTE] = ACTIONS(2941), + [anon_sym_LR_DQUOTE] = ACTIONS(2941), + [anon_sym_uR_DQUOTE] = ACTIONS(2941), + [anon_sym_UR_DQUOTE] = ACTIONS(2941), + [anon_sym_u8R_DQUOTE] = ACTIONS(2941), + [anon_sym_co_await] = ACTIONS(2939), + [anon_sym_new] = ACTIONS(2939), + [anon_sym_requires] = ACTIONS(2939), + [sym_this] = ACTIONS(2939), }, - [711] = { - [sym_identifier] = ACTIONS(2771), - [aux_sym_preproc_include_token1] = ACTIONS(2771), - [aux_sym_preproc_def_token1] = ACTIONS(2771), - [aux_sym_preproc_if_token1] = ACTIONS(2771), - [aux_sym_preproc_if_token2] = ACTIONS(2771), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2771), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2771), - [sym_preproc_directive] = ACTIONS(2771), - [anon_sym_LPAREN2] = ACTIONS(2773), - [anon_sym_BANG] = ACTIONS(2773), - [anon_sym_TILDE] = ACTIONS(2773), - [anon_sym_DASH] = ACTIONS(2771), - [anon_sym_PLUS] = ACTIONS(2771), - [anon_sym_STAR] = ACTIONS(2773), - [anon_sym_AMP_AMP] = ACTIONS(2773), - [anon_sym_AMP] = ACTIONS(2771), - [anon_sym_SEMI] = ACTIONS(2773), - [anon_sym___extension__] = ACTIONS(2771), - [anon_sym_typedef] = ACTIONS(2771), - [anon_sym_virtual] = ACTIONS(2771), - [anon_sym_extern] = ACTIONS(2771), - [anon_sym___attribute__] = ACTIONS(2771), - [anon_sym___attribute] = ACTIONS(2771), - [anon_sym_using] = ACTIONS(2771), - [anon_sym_COLON_COLON] = ACTIONS(2773), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2773), - [anon_sym___declspec] = ACTIONS(2771), - [anon_sym___based] = ACTIONS(2771), - [anon_sym___cdecl] = ACTIONS(2771), - [anon_sym___clrcall] = ACTIONS(2771), - [anon_sym___stdcall] = ACTIONS(2771), - [anon_sym___fastcall] = ACTIONS(2771), - [anon_sym___thiscall] = ACTIONS(2771), - [anon_sym___vectorcall] = ACTIONS(2771), - [anon_sym_LBRACE] = ACTIONS(2773), - [anon_sym_signed] = ACTIONS(2771), - [anon_sym_unsigned] = ACTIONS(2771), - [anon_sym_long] = ACTIONS(2771), - [anon_sym_short] = ACTIONS(2771), - [anon_sym_LBRACK] = ACTIONS(2771), - [anon_sym_static] = ACTIONS(2771), - [anon_sym_register] = ACTIONS(2771), - [anon_sym_inline] = ACTIONS(2771), - [anon_sym___inline] = ACTIONS(2771), - [anon_sym___inline__] = ACTIONS(2771), - [anon_sym___forceinline] = ACTIONS(2771), - [anon_sym_thread_local] = ACTIONS(2771), - [anon_sym___thread] = ACTIONS(2771), - [anon_sym_const] = ACTIONS(2771), - [anon_sym_constexpr] = ACTIONS(2771), - [anon_sym_volatile] = ACTIONS(2771), - [anon_sym_restrict] = ACTIONS(2771), - [anon_sym___restrict__] = ACTIONS(2771), - [anon_sym__Atomic] = ACTIONS(2771), - [anon_sym__Noreturn] = ACTIONS(2771), - [anon_sym_noreturn] = ACTIONS(2771), - [anon_sym__Nonnull] = ACTIONS(2771), - [anon_sym_mutable] = ACTIONS(2771), - [anon_sym_constinit] = ACTIONS(2771), - [anon_sym_consteval] = ACTIONS(2771), - [anon_sym_alignas] = ACTIONS(2771), - [anon_sym__Alignas] = ACTIONS(2771), - [sym_primitive_type] = ACTIONS(2771), - [anon_sym_enum] = ACTIONS(2771), - [anon_sym_class] = ACTIONS(2771), - [anon_sym_struct] = ACTIONS(2771), - [anon_sym_union] = ACTIONS(2771), - [anon_sym_if] = ACTIONS(2771), - [anon_sym_switch] = ACTIONS(2771), - [anon_sym_case] = ACTIONS(2771), - [anon_sym_default] = ACTIONS(2771), - [anon_sym_while] = ACTIONS(2771), - [anon_sym_do] = ACTIONS(2771), - [anon_sym_for] = ACTIONS(2771), - [anon_sym_return] = ACTIONS(2771), - [anon_sym_break] = ACTIONS(2771), - [anon_sym_continue] = ACTIONS(2771), - [anon_sym_goto] = ACTIONS(2771), - [anon_sym___try] = ACTIONS(2771), - [anon_sym___leave] = ACTIONS(2771), - [anon_sym_not] = ACTIONS(2771), - [anon_sym_compl] = ACTIONS(2771), - [anon_sym_DASH_DASH] = ACTIONS(2773), - [anon_sym_PLUS_PLUS] = ACTIONS(2773), - [anon_sym_sizeof] = ACTIONS(2771), - [anon_sym___alignof__] = ACTIONS(2771), - [anon_sym___alignof] = ACTIONS(2771), - [anon_sym__alignof] = ACTIONS(2771), - [anon_sym_alignof] = ACTIONS(2771), - [anon_sym__Alignof] = ACTIONS(2771), - [anon_sym_offsetof] = ACTIONS(2771), - [anon_sym__Generic] = ACTIONS(2771), - [anon_sym_asm] = ACTIONS(2771), - [anon_sym___asm__] = ACTIONS(2771), - [anon_sym___asm] = ACTIONS(2771), - [sym_number_literal] = ACTIONS(2773), - [anon_sym_L_SQUOTE] = ACTIONS(2773), - [anon_sym_u_SQUOTE] = ACTIONS(2773), - [anon_sym_U_SQUOTE] = ACTIONS(2773), - [anon_sym_u8_SQUOTE] = ACTIONS(2773), - [anon_sym_SQUOTE] = ACTIONS(2773), - [anon_sym_L_DQUOTE] = ACTIONS(2773), - [anon_sym_u_DQUOTE] = ACTIONS(2773), - [anon_sym_U_DQUOTE] = ACTIONS(2773), - [anon_sym_u8_DQUOTE] = ACTIONS(2773), - [anon_sym_DQUOTE] = ACTIONS(2773), - [sym_true] = ACTIONS(2771), - [sym_false] = ACTIONS(2771), - [anon_sym_NULL] = ACTIONS(2771), - [anon_sym_nullptr] = ACTIONS(2771), + [727] = { + [sym_identifier] = ACTIONS(2915), + [aux_sym_preproc_include_token1] = ACTIONS(2915), + [aux_sym_preproc_def_token1] = ACTIONS(2915), + [aux_sym_preproc_if_token1] = ACTIONS(2915), + [aux_sym_preproc_if_token2] = ACTIONS(2915), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2915), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2915), + [sym_preproc_directive] = ACTIONS(2915), + [anon_sym_LPAREN2] = ACTIONS(2917), + [anon_sym_BANG] = ACTIONS(2917), + [anon_sym_TILDE] = ACTIONS(2917), + [anon_sym_DASH] = ACTIONS(2915), + [anon_sym_PLUS] = ACTIONS(2915), + [anon_sym_STAR] = ACTIONS(2917), + [anon_sym_AMP_AMP] = ACTIONS(2917), + [anon_sym_AMP] = ACTIONS(2915), + [anon_sym_SEMI] = ACTIONS(2917), + [anon_sym___extension__] = ACTIONS(2915), + [anon_sym_typedef] = ACTIONS(2915), + [anon_sym_virtual] = ACTIONS(2915), + [anon_sym_extern] = ACTIONS(2915), + [anon_sym___attribute__] = ACTIONS(2915), + [anon_sym___attribute] = ACTIONS(2915), + [anon_sym_using] = ACTIONS(2915), + [anon_sym_COLON_COLON] = ACTIONS(2917), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2917), + [anon_sym___declspec] = ACTIONS(2915), + [anon_sym___based] = ACTIONS(2915), + [anon_sym___cdecl] = ACTIONS(2915), + [anon_sym___clrcall] = ACTIONS(2915), + [anon_sym___stdcall] = ACTIONS(2915), + [anon_sym___fastcall] = ACTIONS(2915), + [anon_sym___thiscall] = ACTIONS(2915), + [anon_sym___vectorcall] = ACTIONS(2915), + [anon_sym_LBRACE] = ACTIONS(2917), + [anon_sym_signed] = ACTIONS(2915), + [anon_sym_unsigned] = ACTIONS(2915), + [anon_sym_long] = ACTIONS(2915), + [anon_sym_short] = ACTIONS(2915), + [anon_sym_LBRACK] = ACTIONS(2915), + [anon_sym_static] = ACTIONS(2915), + [anon_sym_register] = ACTIONS(2915), + [anon_sym_inline] = ACTIONS(2915), + [anon_sym___inline] = ACTIONS(2915), + [anon_sym___inline__] = ACTIONS(2915), + [anon_sym___forceinline] = ACTIONS(2915), + [anon_sym_thread_local] = ACTIONS(2915), + [anon_sym___thread] = ACTIONS(2915), + [anon_sym_const] = ACTIONS(2915), + [anon_sym_constexpr] = ACTIONS(2915), + [anon_sym_volatile] = ACTIONS(2915), + [anon_sym_restrict] = ACTIONS(2915), + [anon_sym___restrict__] = ACTIONS(2915), + [anon_sym__Atomic] = ACTIONS(2915), + [anon_sym__Noreturn] = ACTIONS(2915), + [anon_sym_noreturn] = ACTIONS(2915), + [anon_sym__Nonnull] = ACTIONS(2915), + [anon_sym_mutable] = ACTIONS(2915), + [anon_sym_constinit] = ACTIONS(2915), + [anon_sym_consteval] = ACTIONS(2915), + [anon_sym_alignas] = ACTIONS(2915), + [anon_sym__Alignas] = ACTIONS(2915), + [sym_primitive_type] = ACTIONS(2915), + [anon_sym_enum] = ACTIONS(2915), + [anon_sym_class] = ACTIONS(2915), + [anon_sym_struct] = ACTIONS(2915), + [anon_sym_union] = ACTIONS(2915), + [anon_sym_if] = ACTIONS(2915), + [anon_sym_switch] = ACTIONS(2915), + [anon_sym_case] = ACTIONS(2915), + [anon_sym_default] = ACTIONS(2915), + [anon_sym_while] = ACTIONS(2915), + [anon_sym_do] = ACTIONS(2915), + [anon_sym_for] = ACTIONS(2915), + [anon_sym_return] = ACTIONS(2915), + [anon_sym_break] = ACTIONS(2915), + [anon_sym_continue] = ACTIONS(2915), + [anon_sym_goto] = ACTIONS(2915), + [anon_sym___try] = ACTIONS(2915), + [anon_sym___leave] = ACTIONS(2915), + [anon_sym_not] = ACTIONS(2915), + [anon_sym_compl] = ACTIONS(2915), + [anon_sym_DASH_DASH] = ACTIONS(2917), + [anon_sym_PLUS_PLUS] = ACTIONS(2917), + [anon_sym_sizeof] = ACTIONS(2915), + [anon_sym___alignof__] = ACTIONS(2915), + [anon_sym___alignof] = ACTIONS(2915), + [anon_sym__alignof] = ACTIONS(2915), + [anon_sym_alignof] = ACTIONS(2915), + [anon_sym__Alignof] = ACTIONS(2915), + [anon_sym_offsetof] = ACTIONS(2915), + [anon_sym__Generic] = ACTIONS(2915), + [anon_sym_asm] = ACTIONS(2915), + [anon_sym___asm__] = ACTIONS(2915), + [anon_sym___asm] = ACTIONS(2915), + [sym_number_literal] = ACTIONS(2917), + [anon_sym_L_SQUOTE] = ACTIONS(2917), + [anon_sym_u_SQUOTE] = ACTIONS(2917), + [anon_sym_U_SQUOTE] = ACTIONS(2917), + [anon_sym_u8_SQUOTE] = ACTIONS(2917), + [anon_sym_SQUOTE] = ACTIONS(2917), + [anon_sym_L_DQUOTE] = ACTIONS(2917), + [anon_sym_u_DQUOTE] = ACTIONS(2917), + [anon_sym_U_DQUOTE] = ACTIONS(2917), + [anon_sym_u8_DQUOTE] = ACTIONS(2917), + [anon_sym_DQUOTE] = ACTIONS(2917), + [sym_true] = ACTIONS(2915), + [sym_false] = ACTIONS(2915), + [anon_sym_NULL] = ACTIONS(2915), + [anon_sym_nullptr] = ACTIONS(2915), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2771), - [anon_sym_decltype] = ACTIONS(2771), - [anon_sym_explicit] = ACTIONS(2771), - [anon_sym_typename] = ACTIONS(2771), - [anon_sym_template] = ACTIONS(2771), - [anon_sym_operator] = ACTIONS(2771), - [anon_sym_try] = ACTIONS(2771), - [anon_sym_delete] = ACTIONS(2771), - [anon_sym_throw] = ACTIONS(2771), - [anon_sym_namespace] = ACTIONS(2771), - [anon_sym_static_assert] = ACTIONS(2771), - [anon_sym_concept] = ACTIONS(2771), - [anon_sym_co_return] = ACTIONS(2771), - [anon_sym_co_yield] = ACTIONS(2771), - [anon_sym_R_DQUOTE] = ACTIONS(2773), - [anon_sym_LR_DQUOTE] = ACTIONS(2773), - [anon_sym_uR_DQUOTE] = ACTIONS(2773), - [anon_sym_UR_DQUOTE] = ACTIONS(2773), - [anon_sym_u8R_DQUOTE] = ACTIONS(2773), - [anon_sym_co_await] = ACTIONS(2771), - [anon_sym_new] = ACTIONS(2771), - [anon_sym_requires] = ACTIONS(2771), - [sym_this] = ACTIONS(2771), + [sym_auto] = ACTIONS(2915), + [anon_sym_decltype] = ACTIONS(2915), + [anon_sym_explicit] = ACTIONS(2915), + [anon_sym_typename] = ACTIONS(2915), + [anon_sym_template] = ACTIONS(2915), + [anon_sym_operator] = ACTIONS(2915), + [anon_sym_try] = ACTIONS(2915), + [anon_sym_delete] = ACTIONS(2915), + [anon_sym_throw] = ACTIONS(2915), + [anon_sym_namespace] = ACTIONS(2915), + [anon_sym_static_assert] = ACTIONS(2915), + [anon_sym_concept] = ACTIONS(2915), + [anon_sym_co_return] = ACTIONS(2915), + [anon_sym_co_yield] = ACTIONS(2915), + [anon_sym_R_DQUOTE] = ACTIONS(2917), + [anon_sym_LR_DQUOTE] = ACTIONS(2917), + [anon_sym_uR_DQUOTE] = ACTIONS(2917), + [anon_sym_UR_DQUOTE] = ACTIONS(2917), + [anon_sym_u8R_DQUOTE] = ACTIONS(2917), + [anon_sym_co_await] = ACTIONS(2915), + [anon_sym_new] = ACTIONS(2915), + [anon_sym_requires] = ACTIONS(2915), + [sym_this] = ACTIONS(2915), }, - [712] = { - [sym_identifier] = ACTIONS(2863), - [aux_sym_preproc_include_token1] = ACTIONS(2863), - [aux_sym_preproc_def_token1] = ACTIONS(2863), - [aux_sym_preproc_if_token1] = ACTIONS(2863), - [aux_sym_preproc_if_token2] = ACTIONS(2863), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2863), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2863), - [sym_preproc_directive] = ACTIONS(2863), - [anon_sym_LPAREN2] = ACTIONS(2865), - [anon_sym_BANG] = ACTIONS(2865), - [anon_sym_TILDE] = ACTIONS(2865), - [anon_sym_DASH] = ACTIONS(2863), - [anon_sym_PLUS] = ACTIONS(2863), - [anon_sym_STAR] = ACTIONS(2865), - [anon_sym_AMP_AMP] = ACTIONS(2865), - [anon_sym_AMP] = ACTIONS(2863), - [anon_sym_SEMI] = ACTIONS(2865), - [anon_sym___extension__] = ACTIONS(2863), - [anon_sym_typedef] = ACTIONS(2863), - [anon_sym_virtual] = ACTIONS(2863), - [anon_sym_extern] = ACTIONS(2863), - [anon_sym___attribute__] = ACTIONS(2863), - [anon_sym___attribute] = ACTIONS(2863), - [anon_sym_using] = ACTIONS(2863), - [anon_sym_COLON_COLON] = ACTIONS(2865), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2865), - [anon_sym___declspec] = ACTIONS(2863), - [anon_sym___based] = ACTIONS(2863), - [anon_sym___cdecl] = ACTIONS(2863), - [anon_sym___clrcall] = ACTIONS(2863), - [anon_sym___stdcall] = ACTIONS(2863), - [anon_sym___fastcall] = ACTIONS(2863), - [anon_sym___thiscall] = ACTIONS(2863), - [anon_sym___vectorcall] = ACTIONS(2863), - [anon_sym_LBRACE] = ACTIONS(2865), - [anon_sym_signed] = ACTIONS(2863), - [anon_sym_unsigned] = ACTIONS(2863), - [anon_sym_long] = ACTIONS(2863), - [anon_sym_short] = ACTIONS(2863), - [anon_sym_LBRACK] = ACTIONS(2863), - [anon_sym_static] = ACTIONS(2863), - [anon_sym_register] = ACTIONS(2863), - [anon_sym_inline] = ACTIONS(2863), - [anon_sym___inline] = ACTIONS(2863), - [anon_sym___inline__] = ACTIONS(2863), - [anon_sym___forceinline] = ACTIONS(2863), - [anon_sym_thread_local] = ACTIONS(2863), - [anon_sym___thread] = ACTIONS(2863), - [anon_sym_const] = ACTIONS(2863), - [anon_sym_constexpr] = ACTIONS(2863), - [anon_sym_volatile] = ACTIONS(2863), - [anon_sym_restrict] = ACTIONS(2863), - [anon_sym___restrict__] = ACTIONS(2863), - [anon_sym__Atomic] = ACTIONS(2863), - [anon_sym__Noreturn] = ACTIONS(2863), - [anon_sym_noreturn] = ACTIONS(2863), - [anon_sym__Nonnull] = ACTIONS(2863), - [anon_sym_mutable] = ACTIONS(2863), - [anon_sym_constinit] = ACTIONS(2863), - [anon_sym_consteval] = ACTIONS(2863), - [anon_sym_alignas] = ACTIONS(2863), - [anon_sym__Alignas] = ACTIONS(2863), - [sym_primitive_type] = ACTIONS(2863), - [anon_sym_enum] = ACTIONS(2863), - [anon_sym_class] = ACTIONS(2863), - [anon_sym_struct] = ACTIONS(2863), - [anon_sym_union] = ACTIONS(2863), - [anon_sym_if] = ACTIONS(2863), - [anon_sym_switch] = ACTIONS(2863), - [anon_sym_case] = ACTIONS(2863), - [anon_sym_default] = ACTIONS(2863), - [anon_sym_while] = ACTIONS(2863), - [anon_sym_do] = ACTIONS(2863), - [anon_sym_for] = ACTIONS(2863), - [anon_sym_return] = ACTIONS(2863), - [anon_sym_break] = ACTIONS(2863), - [anon_sym_continue] = ACTIONS(2863), - [anon_sym_goto] = ACTIONS(2863), - [anon_sym___try] = ACTIONS(2863), - [anon_sym___leave] = ACTIONS(2863), - [anon_sym_not] = ACTIONS(2863), - [anon_sym_compl] = ACTIONS(2863), - [anon_sym_DASH_DASH] = ACTIONS(2865), - [anon_sym_PLUS_PLUS] = ACTIONS(2865), - [anon_sym_sizeof] = ACTIONS(2863), - [anon_sym___alignof__] = ACTIONS(2863), - [anon_sym___alignof] = ACTIONS(2863), - [anon_sym__alignof] = ACTIONS(2863), - [anon_sym_alignof] = ACTIONS(2863), - [anon_sym__Alignof] = ACTIONS(2863), - [anon_sym_offsetof] = ACTIONS(2863), - [anon_sym__Generic] = ACTIONS(2863), - [anon_sym_asm] = ACTIONS(2863), - [anon_sym___asm__] = ACTIONS(2863), - [anon_sym___asm] = ACTIONS(2863), - [sym_number_literal] = ACTIONS(2865), - [anon_sym_L_SQUOTE] = ACTIONS(2865), - [anon_sym_u_SQUOTE] = ACTIONS(2865), - [anon_sym_U_SQUOTE] = ACTIONS(2865), - [anon_sym_u8_SQUOTE] = ACTIONS(2865), - [anon_sym_SQUOTE] = ACTIONS(2865), - [anon_sym_L_DQUOTE] = ACTIONS(2865), - [anon_sym_u_DQUOTE] = ACTIONS(2865), - [anon_sym_U_DQUOTE] = ACTIONS(2865), - [anon_sym_u8_DQUOTE] = ACTIONS(2865), - [anon_sym_DQUOTE] = ACTIONS(2865), - [sym_true] = ACTIONS(2863), - [sym_false] = ACTIONS(2863), - [anon_sym_NULL] = ACTIONS(2863), - [anon_sym_nullptr] = ACTIONS(2863), + [728] = { + [sym_identifier] = ACTIONS(2943), + [aux_sym_preproc_include_token1] = ACTIONS(2943), + [aux_sym_preproc_def_token1] = ACTIONS(2943), + [aux_sym_preproc_if_token1] = ACTIONS(2943), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2943), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2943), + [sym_preproc_directive] = ACTIONS(2943), + [anon_sym_LPAREN2] = ACTIONS(2945), + [anon_sym_BANG] = ACTIONS(2945), + [anon_sym_TILDE] = ACTIONS(2945), + [anon_sym_DASH] = ACTIONS(2943), + [anon_sym_PLUS] = ACTIONS(2943), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_AMP_AMP] = ACTIONS(2945), + [anon_sym_AMP] = ACTIONS(2943), + [anon_sym_SEMI] = ACTIONS(2945), + [anon_sym___extension__] = ACTIONS(2943), + [anon_sym_typedef] = ACTIONS(2943), + [anon_sym_virtual] = ACTIONS(2943), + [anon_sym_extern] = ACTIONS(2943), + [anon_sym___attribute__] = ACTIONS(2943), + [anon_sym___attribute] = ACTIONS(2943), + [anon_sym_using] = ACTIONS(2943), + [anon_sym_COLON_COLON] = ACTIONS(2945), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2945), + [anon_sym___declspec] = ACTIONS(2943), + [anon_sym___based] = ACTIONS(2943), + [anon_sym___cdecl] = ACTIONS(2943), + [anon_sym___clrcall] = ACTIONS(2943), + [anon_sym___stdcall] = ACTIONS(2943), + [anon_sym___fastcall] = ACTIONS(2943), + [anon_sym___thiscall] = ACTIONS(2943), + [anon_sym___vectorcall] = ACTIONS(2943), + [anon_sym_LBRACE] = ACTIONS(2945), + [anon_sym_RBRACE] = ACTIONS(2945), + [anon_sym_signed] = ACTIONS(2943), + [anon_sym_unsigned] = ACTIONS(2943), + [anon_sym_long] = ACTIONS(2943), + [anon_sym_short] = ACTIONS(2943), + [anon_sym_LBRACK] = ACTIONS(2943), + [anon_sym_static] = ACTIONS(2943), + [anon_sym_register] = ACTIONS(2943), + [anon_sym_inline] = ACTIONS(2943), + [anon_sym___inline] = ACTIONS(2943), + [anon_sym___inline__] = ACTIONS(2943), + [anon_sym___forceinline] = ACTIONS(2943), + [anon_sym_thread_local] = ACTIONS(2943), + [anon_sym___thread] = ACTIONS(2943), + [anon_sym_const] = ACTIONS(2943), + [anon_sym_constexpr] = ACTIONS(2943), + [anon_sym_volatile] = ACTIONS(2943), + [anon_sym_restrict] = ACTIONS(2943), + [anon_sym___restrict__] = ACTIONS(2943), + [anon_sym__Atomic] = ACTIONS(2943), + [anon_sym__Noreturn] = ACTIONS(2943), + [anon_sym_noreturn] = ACTIONS(2943), + [anon_sym__Nonnull] = ACTIONS(2943), + [anon_sym_mutable] = ACTIONS(2943), + [anon_sym_constinit] = ACTIONS(2943), + [anon_sym_consteval] = ACTIONS(2943), + [anon_sym_alignas] = ACTIONS(2943), + [anon_sym__Alignas] = ACTIONS(2943), + [sym_primitive_type] = ACTIONS(2943), + [anon_sym_enum] = ACTIONS(2943), + [anon_sym_class] = ACTIONS(2943), + [anon_sym_struct] = ACTIONS(2943), + [anon_sym_union] = ACTIONS(2943), + [anon_sym_if] = ACTIONS(2943), + [anon_sym_switch] = ACTIONS(2943), + [anon_sym_case] = ACTIONS(2943), + [anon_sym_default] = ACTIONS(2943), + [anon_sym_while] = ACTIONS(2943), + [anon_sym_do] = ACTIONS(2943), + [anon_sym_for] = ACTIONS(2943), + [anon_sym_return] = ACTIONS(2943), + [anon_sym_break] = ACTIONS(2943), + [anon_sym_continue] = ACTIONS(2943), + [anon_sym_goto] = ACTIONS(2943), + [anon_sym___try] = ACTIONS(2943), + [anon_sym___leave] = ACTIONS(2943), + [anon_sym_not] = ACTIONS(2943), + [anon_sym_compl] = ACTIONS(2943), + [anon_sym_DASH_DASH] = ACTIONS(2945), + [anon_sym_PLUS_PLUS] = ACTIONS(2945), + [anon_sym_sizeof] = ACTIONS(2943), + [anon_sym___alignof__] = ACTIONS(2943), + [anon_sym___alignof] = ACTIONS(2943), + [anon_sym__alignof] = ACTIONS(2943), + [anon_sym_alignof] = ACTIONS(2943), + [anon_sym__Alignof] = ACTIONS(2943), + [anon_sym_offsetof] = ACTIONS(2943), + [anon_sym__Generic] = ACTIONS(2943), + [anon_sym_asm] = ACTIONS(2943), + [anon_sym___asm__] = ACTIONS(2943), + [anon_sym___asm] = ACTIONS(2943), + [sym_number_literal] = ACTIONS(2945), + [anon_sym_L_SQUOTE] = ACTIONS(2945), + [anon_sym_u_SQUOTE] = ACTIONS(2945), + [anon_sym_U_SQUOTE] = ACTIONS(2945), + [anon_sym_u8_SQUOTE] = ACTIONS(2945), + [anon_sym_SQUOTE] = ACTIONS(2945), + [anon_sym_L_DQUOTE] = ACTIONS(2945), + [anon_sym_u_DQUOTE] = ACTIONS(2945), + [anon_sym_U_DQUOTE] = ACTIONS(2945), + [anon_sym_u8_DQUOTE] = ACTIONS(2945), + [anon_sym_DQUOTE] = ACTIONS(2945), + [sym_true] = ACTIONS(2943), + [sym_false] = ACTIONS(2943), + [anon_sym_NULL] = ACTIONS(2943), + [anon_sym_nullptr] = ACTIONS(2943), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2863), - [anon_sym_decltype] = ACTIONS(2863), - [anon_sym_explicit] = ACTIONS(2863), - [anon_sym_typename] = ACTIONS(2863), - [anon_sym_template] = ACTIONS(2863), - [anon_sym_operator] = ACTIONS(2863), - [anon_sym_try] = ACTIONS(2863), - [anon_sym_delete] = ACTIONS(2863), - [anon_sym_throw] = ACTIONS(2863), - [anon_sym_namespace] = ACTIONS(2863), - [anon_sym_static_assert] = ACTIONS(2863), - [anon_sym_concept] = ACTIONS(2863), - [anon_sym_co_return] = ACTIONS(2863), - [anon_sym_co_yield] = ACTIONS(2863), - [anon_sym_R_DQUOTE] = ACTIONS(2865), - [anon_sym_LR_DQUOTE] = ACTIONS(2865), - [anon_sym_uR_DQUOTE] = ACTIONS(2865), - [anon_sym_UR_DQUOTE] = ACTIONS(2865), - [anon_sym_u8R_DQUOTE] = ACTIONS(2865), - [anon_sym_co_await] = ACTIONS(2863), - [anon_sym_new] = ACTIONS(2863), - [anon_sym_requires] = ACTIONS(2863), - [sym_this] = ACTIONS(2863), + [sym_auto] = ACTIONS(2943), + [anon_sym_decltype] = ACTIONS(2943), + [anon_sym_explicit] = ACTIONS(2943), + [anon_sym_typename] = ACTIONS(2943), + [anon_sym_template] = ACTIONS(2943), + [anon_sym_operator] = ACTIONS(2943), + [anon_sym_try] = ACTIONS(2943), + [anon_sym_delete] = ACTIONS(2943), + [anon_sym_throw] = ACTIONS(2943), + [anon_sym_namespace] = ACTIONS(2943), + [anon_sym_static_assert] = ACTIONS(2943), + [anon_sym_concept] = ACTIONS(2943), + [anon_sym_co_return] = ACTIONS(2943), + [anon_sym_co_yield] = ACTIONS(2943), + [anon_sym_R_DQUOTE] = ACTIONS(2945), + [anon_sym_LR_DQUOTE] = ACTIONS(2945), + [anon_sym_uR_DQUOTE] = ACTIONS(2945), + [anon_sym_UR_DQUOTE] = ACTIONS(2945), + [anon_sym_u8R_DQUOTE] = ACTIONS(2945), + [anon_sym_co_await] = ACTIONS(2943), + [anon_sym_new] = ACTIONS(2943), + [anon_sym_requires] = ACTIONS(2943), + [sym_this] = ACTIONS(2943), }, - [713] = { - [sym_identifier] = ACTIONS(2867), - [aux_sym_preproc_include_token1] = ACTIONS(2867), - [aux_sym_preproc_def_token1] = ACTIONS(2867), - [aux_sym_preproc_if_token1] = ACTIONS(2867), - [aux_sym_preproc_if_token2] = ACTIONS(2867), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), - [sym_preproc_directive] = ACTIONS(2867), - [anon_sym_LPAREN2] = ACTIONS(2869), - [anon_sym_BANG] = ACTIONS(2869), - [anon_sym_TILDE] = ACTIONS(2869), - [anon_sym_DASH] = ACTIONS(2867), - [anon_sym_PLUS] = ACTIONS(2867), - [anon_sym_STAR] = ACTIONS(2869), - [anon_sym_AMP_AMP] = ACTIONS(2869), - [anon_sym_AMP] = ACTIONS(2867), - [anon_sym_SEMI] = ACTIONS(2869), - [anon_sym___extension__] = ACTIONS(2867), - [anon_sym_typedef] = ACTIONS(2867), - [anon_sym_virtual] = ACTIONS(2867), - [anon_sym_extern] = ACTIONS(2867), - [anon_sym___attribute__] = ACTIONS(2867), - [anon_sym___attribute] = ACTIONS(2867), - [anon_sym_using] = ACTIONS(2867), - [anon_sym_COLON_COLON] = ACTIONS(2869), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), - [anon_sym___declspec] = ACTIONS(2867), - [anon_sym___based] = ACTIONS(2867), - [anon_sym___cdecl] = ACTIONS(2867), - [anon_sym___clrcall] = ACTIONS(2867), - [anon_sym___stdcall] = ACTIONS(2867), - [anon_sym___fastcall] = ACTIONS(2867), - [anon_sym___thiscall] = ACTIONS(2867), - [anon_sym___vectorcall] = ACTIONS(2867), - [anon_sym_LBRACE] = ACTIONS(2869), - [anon_sym_signed] = ACTIONS(2867), - [anon_sym_unsigned] = ACTIONS(2867), - [anon_sym_long] = ACTIONS(2867), - [anon_sym_short] = ACTIONS(2867), - [anon_sym_LBRACK] = ACTIONS(2867), - [anon_sym_static] = ACTIONS(2867), - [anon_sym_register] = ACTIONS(2867), - [anon_sym_inline] = ACTIONS(2867), - [anon_sym___inline] = ACTIONS(2867), - [anon_sym___inline__] = ACTIONS(2867), - [anon_sym___forceinline] = ACTIONS(2867), - [anon_sym_thread_local] = ACTIONS(2867), - [anon_sym___thread] = ACTIONS(2867), - [anon_sym_const] = ACTIONS(2867), - [anon_sym_constexpr] = ACTIONS(2867), - [anon_sym_volatile] = ACTIONS(2867), - [anon_sym_restrict] = ACTIONS(2867), - [anon_sym___restrict__] = ACTIONS(2867), - [anon_sym__Atomic] = ACTIONS(2867), - [anon_sym__Noreturn] = ACTIONS(2867), - [anon_sym_noreturn] = ACTIONS(2867), - [anon_sym__Nonnull] = ACTIONS(2867), - [anon_sym_mutable] = ACTIONS(2867), - [anon_sym_constinit] = ACTIONS(2867), - [anon_sym_consteval] = ACTIONS(2867), - [anon_sym_alignas] = ACTIONS(2867), - [anon_sym__Alignas] = ACTIONS(2867), - [sym_primitive_type] = ACTIONS(2867), - [anon_sym_enum] = ACTIONS(2867), - [anon_sym_class] = ACTIONS(2867), - [anon_sym_struct] = ACTIONS(2867), - [anon_sym_union] = ACTIONS(2867), - [anon_sym_if] = ACTIONS(2867), - [anon_sym_switch] = ACTIONS(2867), - [anon_sym_case] = ACTIONS(2867), - [anon_sym_default] = ACTIONS(2867), - [anon_sym_while] = ACTIONS(2867), - [anon_sym_do] = ACTIONS(2867), - [anon_sym_for] = ACTIONS(2867), - [anon_sym_return] = ACTIONS(2867), - [anon_sym_break] = ACTIONS(2867), - [anon_sym_continue] = ACTIONS(2867), - [anon_sym_goto] = ACTIONS(2867), - [anon_sym___try] = ACTIONS(2867), - [anon_sym___leave] = ACTIONS(2867), - [anon_sym_not] = ACTIONS(2867), - [anon_sym_compl] = ACTIONS(2867), - [anon_sym_DASH_DASH] = ACTIONS(2869), - [anon_sym_PLUS_PLUS] = ACTIONS(2869), - [anon_sym_sizeof] = ACTIONS(2867), - [anon_sym___alignof__] = ACTIONS(2867), - [anon_sym___alignof] = ACTIONS(2867), - [anon_sym__alignof] = ACTIONS(2867), - [anon_sym_alignof] = ACTIONS(2867), - [anon_sym__Alignof] = ACTIONS(2867), - [anon_sym_offsetof] = ACTIONS(2867), - [anon_sym__Generic] = ACTIONS(2867), - [anon_sym_asm] = ACTIONS(2867), - [anon_sym___asm__] = ACTIONS(2867), - [anon_sym___asm] = ACTIONS(2867), - [sym_number_literal] = ACTIONS(2869), - [anon_sym_L_SQUOTE] = ACTIONS(2869), - [anon_sym_u_SQUOTE] = ACTIONS(2869), - [anon_sym_U_SQUOTE] = ACTIONS(2869), - [anon_sym_u8_SQUOTE] = ACTIONS(2869), - [anon_sym_SQUOTE] = ACTIONS(2869), - [anon_sym_L_DQUOTE] = ACTIONS(2869), - [anon_sym_u_DQUOTE] = ACTIONS(2869), - [anon_sym_U_DQUOTE] = ACTIONS(2869), - [anon_sym_u8_DQUOTE] = ACTIONS(2869), - [anon_sym_DQUOTE] = ACTIONS(2869), - [sym_true] = ACTIONS(2867), - [sym_false] = ACTIONS(2867), - [anon_sym_NULL] = ACTIONS(2867), - [anon_sym_nullptr] = ACTIONS(2867), + [729] = { + [sym_identifier] = ACTIONS(2947), + [aux_sym_preproc_include_token1] = ACTIONS(2947), + [aux_sym_preproc_def_token1] = ACTIONS(2947), + [aux_sym_preproc_if_token1] = ACTIONS(2947), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2947), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2947), + [sym_preproc_directive] = ACTIONS(2947), + [anon_sym_LPAREN2] = ACTIONS(2949), + [anon_sym_BANG] = ACTIONS(2949), + [anon_sym_TILDE] = ACTIONS(2949), + [anon_sym_DASH] = ACTIONS(2947), + [anon_sym_PLUS] = ACTIONS(2947), + [anon_sym_STAR] = ACTIONS(2949), + [anon_sym_AMP_AMP] = ACTIONS(2949), + [anon_sym_AMP] = ACTIONS(2947), + [anon_sym_SEMI] = ACTIONS(2949), + [anon_sym___extension__] = ACTIONS(2947), + [anon_sym_typedef] = ACTIONS(2947), + [anon_sym_virtual] = ACTIONS(2947), + [anon_sym_extern] = ACTIONS(2947), + [anon_sym___attribute__] = ACTIONS(2947), + [anon_sym___attribute] = ACTIONS(2947), + [anon_sym_using] = ACTIONS(2947), + [anon_sym_COLON_COLON] = ACTIONS(2949), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2949), + [anon_sym___declspec] = ACTIONS(2947), + [anon_sym___based] = ACTIONS(2947), + [anon_sym___cdecl] = ACTIONS(2947), + [anon_sym___clrcall] = ACTIONS(2947), + [anon_sym___stdcall] = ACTIONS(2947), + [anon_sym___fastcall] = ACTIONS(2947), + [anon_sym___thiscall] = ACTIONS(2947), + [anon_sym___vectorcall] = ACTIONS(2947), + [anon_sym_LBRACE] = ACTIONS(2949), + [anon_sym_RBRACE] = ACTIONS(2949), + [anon_sym_signed] = ACTIONS(2947), + [anon_sym_unsigned] = ACTIONS(2947), + [anon_sym_long] = ACTIONS(2947), + [anon_sym_short] = ACTIONS(2947), + [anon_sym_LBRACK] = ACTIONS(2947), + [anon_sym_static] = ACTIONS(2947), + [anon_sym_register] = ACTIONS(2947), + [anon_sym_inline] = ACTIONS(2947), + [anon_sym___inline] = ACTIONS(2947), + [anon_sym___inline__] = ACTIONS(2947), + [anon_sym___forceinline] = ACTIONS(2947), + [anon_sym_thread_local] = ACTIONS(2947), + [anon_sym___thread] = ACTIONS(2947), + [anon_sym_const] = ACTIONS(2947), + [anon_sym_constexpr] = ACTIONS(2947), + [anon_sym_volatile] = ACTIONS(2947), + [anon_sym_restrict] = ACTIONS(2947), + [anon_sym___restrict__] = ACTIONS(2947), + [anon_sym__Atomic] = ACTIONS(2947), + [anon_sym__Noreturn] = ACTIONS(2947), + [anon_sym_noreturn] = ACTIONS(2947), + [anon_sym__Nonnull] = ACTIONS(2947), + [anon_sym_mutable] = ACTIONS(2947), + [anon_sym_constinit] = ACTIONS(2947), + [anon_sym_consteval] = ACTIONS(2947), + [anon_sym_alignas] = ACTIONS(2947), + [anon_sym__Alignas] = ACTIONS(2947), + [sym_primitive_type] = ACTIONS(2947), + [anon_sym_enum] = ACTIONS(2947), + [anon_sym_class] = ACTIONS(2947), + [anon_sym_struct] = ACTIONS(2947), + [anon_sym_union] = ACTIONS(2947), + [anon_sym_if] = ACTIONS(2947), + [anon_sym_switch] = ACTIONS(2947), + [anon_sym_case] = ACTIONS(2947), + [anon_sym_default] = ACTIONS(2947), + [anon_sym_while] = ACTIONS(2947), + [anon_sym_do] = ACTIONS(2947), + [anon_sym_for] = ACTIONS(2947), + [anon_sym_return] = ACTIONS(2947), + [anon_sym_break] = ACTIONS(2947), + [anon_sym_continue] = ACTIONS(2947), + [anon_sym_goto] = ACTIONS(2947), + [anon_sym___try] = ACTIONS(2947), + [anon_sym___leave] = ACTIONS(2947), + [anon_sym_not] = ACTIONS(2947), + [anon_sym_compl] = ACTIONS(2947), + [anon_sym_DASH_DASH] = ACTIONS(2949), + [anon_sym_PLUS_PLUS] = ACTIONS(2949), + [anon_sym_sizeof] = ACTIONS(2947), + [anon_sym___alignof__] = ACTIONS(2947), + [anon_sym___alignof] = ACTIONS(2947), + [anon_sym__alignof] = ACTIONS(2947), + [anon_sym_alignof] = ACTIONS(2947), + [anon_sym__Alignof] = ACTIONS(2947), + [anon_sym_offsetof] = ACTIONS(2947), + [anon_sym__Generic] = ACTIONS(2947), + [anon_sym_asm] = ACTIONS(2947), + [anon_sym___asm__] = ACTIONS(2947), + [anon_sym___asm] = ACTIONS(2947), + [sym_number_literal] = ACTIONS(2949), + [anon_sym_L_SQUOTE] = ACTIONS(2949), + [anon_sym_u_SQUOTE] = ACTIONS(2949), + [anon_sym_U_SQUOTE] = ACTIONS(2949), + [anon_sym_u8_SQUOTE] = ACTIONS(2949), + [anon_sym_SQUOTE] = ACTIONS(2949), + [anon_sym_L_DQUOTE] = ACTIONS(2949), + [anon_sym_u_DQUOTE] = ACTIONS(2949), + [anon_sym_U_DQUOTE] = ACTIONS(2949), + [anon_sym_u8_DQUOTE] = ACTIONS(2949), + [anon_sym_DQUOTE] = ACTIONS(2949), + [sym_true] = ACTIONS(2947), + [sym_false] = ACTIONS(2947), + [anon_sym_NULL] = ACTIONS(2947), + [anon_sym_nullptr] = ACTIONS(2947), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2867), - [anon_sym_decltype] = ACTIONS(2867), - [anon_sym_explicit] = ACTIONS(2867), - [anon_sym_typename] = ACTIONS(2867), - [anon_sym_template] = ACTIONS(2867), - [anon_sym_operator] = ACTIONS(2867), - [anon_sym_try] = ACTIONS(2867), - [anon_sym_delete] = ACTIONS(2867), - [anon_sym_throw] = ACTIONS(2867), - [anon_sym_namespace] = ACTIONS(2867), - [anon_sym_static_assert] = ACTIONS(2867), - [anon_sym_concept] = ACTIONS(2867), - [anon_sym_co_return] = ACTIONS(2867), - [anon_sym_co_yield] = ACTIONS(2867), - [anon_sym_R_DQUOTE] = ACTIONS(2869), - [anon_sym_LR_DQUOTE] = ACTIONS(2869), - [anon_sym_uR_DQUOTE] = ACTIONS(2869), - [anon_sym_UR_DQUOTE] = ACTIONS(2869), - [anon_sym_u8R_DQUOTE] = ACTIONS(2869), - [anon_sym_co_await] = ACTIONS(2867), - [anon_sym_new] = ACTIONS(2867), - [anon_sym_requires] = ACTIONS(2867), - [sym_this] = ACTIONS(2867), + [sym_auto] = ACTIONS(2947), + [anon_sym_decltype] = ACTIONS(2947), + [anon_sym_explicit] = ACTIONS(2947), + [anon_sym_typename] = ACTIONS(2947), + [anon_sym_template] = ACTIONS(2947), + [anon_sym_operator] = ACTIONS(2947), + [anon_sym_try] = ACTIONS(2947), + [anon_sym_delete] = ACTIONS(2947), + [anon_sym_throw] = ACTIONS(2947), + [anon_sym_namespace] = ACTIONS(2947), + [anon_sym_static_assert] = ACTIONS(2947), + [anon_sym_concept] = ACTIONS(2947), + [anon_sym_co_return] = ACTIONS(2947), + [anon_sym_co_yield] = ACTIONS(2947), + [anon_sym_R_DQUOTE] = ACTIONS(2949), + [anon_sym_LR_DQUOTE] = ACTIONS(2949), + [anon_sym_uR_DQUOTE] = ACTIONS(2949), + [anon_sym_UR_DQUOTE] = ACTIONS(2949), + [anon_sym_u8R_DQUOTE] = ACTIONS(2949), + [anon_sym_co_await] = ACTIONS(2947), + [anon_sym_new] = ACTIONS(2947), + [anon_sym_requires] = ACTIONS(2947), + [sym_this] = ACTIONS(2947), }, - [714] = { - [sym_identifier] = ACTIONS(2883), - [aux_sym_preproc_include_token1] = ACTIONS(2883), - [aux_sym_preproc_def_token1] = ACTIONS(2883), - [aux_sym_preproc_if_token1] = ACTIONS(2883), - [aux_sym_preproc_if_token2] = ACTIONS(2883), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2883), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2883), - [sym_preproc_directive] = ACTIONS(2883), - [anon_sym_LPAREN2] = ACTIONS(2885), - [anon_sym_BANG] = ACTIONS(2885), - [anon_sym_TILDE] = ACTIONS(2885), - [anon_sym_DASH] = ACTIONS(2883), - [anon_sym_PLUS] = ACTIONS(2883), - [anon_sym_STAR] = ACTIONS(2885), - [anon_sym_AMP_AMP] = ACTIONS(2885), - [anon_sym_AMP] = ACTIONS(2883), - [anon_sym_SEMI] = ACTIONS(2885), - [anon_sym___extension__] = ACTIONS(2883), - [anon_sym_typedef] = ACTIONS(2883), - [anon_sym_virtual] = ACTIONS(2883), - [anon_sym_extern] = ACTIONS(2883), - [anon_sym___attribute__] = ACTIONS(2883), - [anon_sym___attribute] = ACTIONS(2883), - [anon_sym_using] = ACTIONS(2883), - [anon_sym_COLON_COLON] = ACTIONS(2885), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2885), - [anon_sym___declspec] = ACTIONS(2883), - [anon_sym___based] = ACTIONS(2883), - [anon_sym___cdecl] = ACTIONS(2883), - [anon_sym___clrcall] = ACTIONS(2883), - [anon_sym___stdcall] = ACTIONS(2883), - [anon_sym___fastcall] = ACTIONS(2883), - [anon_sym___thiscall] = ACTIONS(2883), - [anon_sym___vectorcall] = ACTIONS(2883), - [anon_sym_LBRACE] = ACTIONS(2885), - [anon_sym_signed] = ACTIONS(2883), - [anon_sym_unsigned] = ACTIONS(2883), - [anon_sym_long] = ACTIONS(2883), - [anon_sym_short] = ACTIONS(2883), - [anon_sym_LBRACK] = ACTIONS(2883), - [anon_sym_static] = ACTIONS(2883), - [anon_sym_register] = ACTIONS(2883), - [anon_sym_inline] = ACTIONS(2883), - [anon_sym___inline] = ACTIONS(2883), - [anon_sym___inline__] = ACTIONS(2883), - [anon_sym___forceinline] = ACTIONS(2883), - [anon_sym_thread_local] = ACTIONS(2883), - [anon_sym___thread] = ACTIONS(2883), - [anon_sym_const] = ACTIONS(2883), - [anon_sym_constexpr] = ACTIONS(2883), - [anon_sym_volatile] = ACTIONS(2883), - [anon_sym_restrict] = ACTIONS(2883), - [anon_sym___restrict__] = ACTIONS(2883), - [anon_sym__Atomic] = ACTIONS(2883), - [anon_sym__Noreturn] = ACTIONS(2883), - [anon_sym_noreturn] = ACTIONS(2883), - [anon_sym__Nonnull] = ACTIONS(2883), - [anon_sym_mutable] = ACTIONS(2883), - [anon_sym_constinit] = ACTIONS(2883), - [anon_sym_consteval] = ACTIONS(2883), - [anon_sym_alignas] = ACTIONS(2883), - [anon_sym__Alignas] = ACTIONS(2883), - [sym_primitive_type] = ACTIONS(2883), - [anon_sym_enum] = ACTIONS(2883), - [anon_sym_class] = ACTIONS(2883), - [anon_sym_struct] = ACTIONS(2883), - [anon_sym_union] = ACTIONS(2883), - [anon_sym_if] = ACTIONS(2883), - [anon_sym_switch] = ACTIONS(2883), - [anon_sym_case] = ACTIONS(2883), - [anon_sym_default] = ACTIONS(2883), - [anon_sym_while] = ACTIONS(2883), - [anon_sym_do] = ACTIONS(2883), - [anon_sym_for] = ACTIONS(2883), - [anon_sym_return] = ACTIONS(2883), - [anon_sym_break] = ACTIONS(2883), - [anon_sym_continue] = ACTIONS(2883), - [anon_sym_goto] = ACTIONS(2883), - [anon_sym___try] = ACTIONS(2883), - [anon_sym___leave] = ACTIONS(2883), - [anon_sym_not] = ACTIONS(2883), - [anon_sym_compl] = ACTIONS(2883), - [anon_sym_DASH_DASH] = ACTIONS(2885), - [anon_sym_PLUS_PLUS] = ACTIONS(2885), - [anon_sym_sizeof] = ACTIONS(2883), - [anon_sym___alignof__] = ACTIONS(2883), - [anon_sym___alignof] = ACTIONS(2883), - [anon_sym__alignof] = ACTIONS(2883), - [anon_sym_alignof] = ACTIONS(2883), - [anon_sym__Alignof] = ACTIONS(2883), - [anon_sym_offsetof] = ACTIONS(2883), - [anon_sym__Generic] = ACTIONS(2883), - [anon_sym_asm] = ACTIONS(2883), - [anon_sym___asm__] = ACTIONS(2883), - [anon_sym___asm] = ACTIONS(2883), - [sym_number_literal] = ACTIONS(2885), - [anon_sym_L_SQUOTE] = ACTIONS(2885), - [anon_sym_u_SQUOTE] = ACTIONS(2885), - [anon_sym_U_SQUOTE] = ACTIONS(2885), - [anon_sym_u8_SQUOTE] = ACTIONS(2885), - [anon_sym_SQUOTE] = ACTIONS(2885), - [anon_sym_L_DQUOTE] = ACTIONS(2885), - [anon_sym_u_DQUOTE] = ACTIONS(2885), - [anon_sym_U_DQUOTE] = ACTIONS(2885), - [anon_sym_u8_DQUOTE] = ACTIONS(2885), - [anon_sym_DQUOTE] = ACTIONS(2885), - [sym_true] = ACTIONS(2883), - [sym_false] = ACTIONS(2883), - [anon_sym_NULL] = ACTIONS(2883), - [anon_sym_nullptr] = ACTIONS(2883), + [730] = { + [sym_identifier] = ACTIONS(2951), + [aux_sym_preproc_include_token1] = ACTIONS(2951), + [aux_sym_preproc_def_token1] = ACTIONS(2951), + [aux_sym_preproc_if_token1] = ACTIONS(2951), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2951), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2951), + [sym_preproc_directive] = ACTIONS(2951), + [anon_sym_LPAREN2] = ACTIONS(2953), + [anon_sym_BANG] = ACTIONS(2953), + [anon_sym_TILDE] = ACTIONS(2953), + [anon_sym_DASH] = ACTIONS(2951), + [anon_sym_PLUS] = ACTIONS(2951), + [anon_sym_STAR] = ACTIONS(2953), + [anon_sym_AMP_AMP] = ACTIONS(2953), + [anon_sym_AMP] = ACTIONS(2951), + [anon_sym_SEMI] = ACTIONS(2953), + [anon_sym___extension__] = ACTIONS(2951), + [anon_sym_typedef] = ACTIONS(2951), + [anon_sym_virtual] = ACTIONS(2951), + [anon_sym_extern] = ACTIONS(2951), + [anon_sym___attribute__] = ACTIONS(2951), + [anon_sym___attribute] = ACTIONS(2951), + [anon_sym_using] = ACTIONS(2951), + [anon_sym_COLON_COLON] = ACTIONS(2953), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2953), + [anon_sym___declspec] = ACTIONS(2951), + [anon_sym___based] = ACTIONS(2951), + [anon_sym___cdecl] = ACTIONS(2951), + [anon_sym___clrcall] = ACTIONS(2951), + [anon_sym___stdcall] = ACTIONS(2951), + [anon_sym___fastcall] = ACTIONS(2951), + [anon_sym___thiscall] = ACTIONS(2951), + [anon_sym___vectorcall] = ACTIONS(2951), + [anon_sym_LBRACE] = ACTIONS(2953), + [anon_sym_RBRACE] = ACTIONS(2953), + [anon_sym_signed] = ACTIONS(2951), + [anon_sym_unsigned] = ACTIONS(2951), + [anon_sym_long] = ACTIONS(2951), + [anon_sym_short] = ACTIONS(2951), + [anon_sym_LBRACK] = ACTIONS(2951), + [anon_sym_static] = ACTIONS(2951), + [anon_sym_register] = ACTIONS(2951), + [anon_sym_inline] = ACTIONS(2951), + [anon_sym___inline] = ACTIONS(2951), + [anon_sym___inline__] = ACTIONS(2951), + [anon_sym___forceinline] = ACTIONS(2951), + [anon_sym_thread_local] = ACTIONS(2951), + [anon_sym___thread] = ACTIONS(2951), + [anon_sym_const] = ACTIONS(2951), + [anon_sym_constexpr] = ACTIONS(2951), + [anon_sym_volatile] = ACTIONS(2951), + [anon_sym_restrict] = ACTIONS(2951), + [anon_sym___restrict__] = ACTIONS(2951), + [anon_sym__Atomic] = ACTIONS(2951), + [anon_sym__Noreturn] = ACTIONS(2951), + [anon_sym_noreturn] = ACTIONS(2951), + [anon_sym__Nonnull] = ACTIONS(2951), + [anon_sym_mutable] = ACTIONS(2951), + [anon_sym_constinit] = ACTIONS(2951), + [anon_sym_consteval] = ACTIONS(2951), + [anon_sym_alignas] = ACTIONS(2951), + [anon_sym__Alignas] = ACTIONS(2951), + [sym_primitive_type] = ACTIONS(2951), + [anon_sym_enum] = ACTIONS(2951), + [anon_sym_class] = ACTIONS(2951), + [anon_sym_struct] = ACTIONS(2951), + [anon_sym_union] = ACTIONS(2951), + [anon_sym_if] = ACTIONS(2951), + [anon_sym_switch] = ACTIONS(2951), + [anon_sym_case] = ACTIONS(2951), + [anon_sym_default] = ACTIONS(2951), + [anon_sym_while] = ACTIONS(2951), + [anon_sym_do] = ACTIONS(2951), + [anon_sym_for] = ACTIONS(2951), + [anon_sym_return] = ACTIONS(2951), + [anon_sym_break] = ACTIONS(2951), + [anon_sym_continue] = ACTIONS(2951), + [anon_sym_goto] = ACTIONS(2951), + [anon_sym___try] = ACTIONS(2951), + [anon_sym___leave] = ACTIONS(2951), + [anon_sym_not] = ACTIONS(2951), + [anon_sym_compl] = ACTIONS(2951), + [anon_sym_DASH_DASH] = ACTIONS(2953), + [anon_sym_PLUS_PLUS] = ACTIONS(2953), + [anon_sym_sizeof] = ACTIONS(2951), + [anon_sym___alignof__] = ACTIONS(2951), + [anon_sym___alignof] = ACTIONS(2951), + [anon_sym__alignof] = ACTIONS(2951), + [anon_sym_alignof] = ACTIONS(2951), + [anon_sym__Alignof] = ACTIONS(2951), + [anon_sym_offsetof] = ACTIONS(2951), + [anon_sym__Generic] = ACTIONS(2951), + [anon_sym_asm] = ACTIONS(2951), + [anon_sym___asm__] = ACTIONS(2951), + [anon_sym___asm] = ACTIONS(2951), + [sym_number_literal] = ACTIONS(2953), + [anon_sym_L_SQUOTE] = ACTIONS(2953), + [anon_sym_u_SQUOTE] = ACTIONS(2953), + [anon_sym_U_SQUOTE] = ACTIONS(2953), + [anon_sym_u8_SQUOTE] = ACTIONS(2953), + [anon_sym_SQUOTE] = ACTIONS(2953), + [anon_sym_L_DQUOTE] = ACTIONS(2953), + [anon_sym_u_DQUOTE] = ACTIONS(2953), + [anon_sym_U_DQUOTE] = ACTIONS(2953), + [anon_sym_u8_DQUOTE] = ACTIONS(2953), + [anon_sym_DQUOTE] = ACTIONS(2953), + [sym_true] = ACTIONS(2951), + [sym_false] = ACTIONS(2951), + [anon_sym_NULL] = ACTIONS(2951), + [anon_sym_nullptr] = ACTIONS(2951), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2883), - [anon_sym_decltype] = ACTIONS(2883), - [anon_sym_explicit] = ACTIONS(2883), - [anon_sym_typename] = ACTIONS(2883), - [anon_sym_template] = ACTIONS(2883), - [anon_sym_operator] = ACTIONS(2883), - [anon_sym_try] = ACTIONS(2883), - [anon_sym_delete] = ACTIONS(2883), - [anon_sym_throw] = ACTIONS(2883), - [anon_sym_namespace] = ACTIONS(2883), - [anon_sym_static_assert] = ACTIONS(2883), - [anon_sym_concept] = ACTIONS(2883), - [anon_sym_co_return] = ACTIONS(2883), - [anon_sym_co_yield] = ACTIONS(2883), - [anon_sym_R_DQUOTE] = ACTIONS(2885), - [anon_sym_LR_DQUOTE] = ACTIONS(2885), - [anon_sym_uR_DQUOTE] = ACTIONS(2885), - [anon_sym_UR_DQUOTE] = ACTIONS(2885), - [anon_sym_u8R_DQUOTE] = ACTIONS(2885), - [anon_sym_co_await] = ACTIONS(2883), - [anon_sym_new] = ACTIONS(2883), - [anon_sym_requires] = ACTIONS(2883), - [sym_this] = ACTIONS(2883), + [sym_auto] = ACTIONS(2951), + [anon_sym_decltype] = ACTIONS(2951), + [anon_sym_explicit] = ACTIONS(2951), + [anon_sym_typename] = ACTIONS(2951), + [anon_sym_template] = ACTIONS(2951), + [anon_sym_operator] = ACTIONS(2951), + [anon_sym_try] = ACTIONS(2951), + [anon_sym_delete] = ACTIONS(2951), + [anon_sym_throw] = ACTIONS(2951), + [anon_sym_namespace] = ACTIONS(2951), + [anon_sym_static_assert] = ACTIONS(2951), + [anon_sym_concept] = ACTIONS(2951), + [anon_sym_co_return] = ACTIONS(2951), + [anon_sym_co_yield] = ACTIONS(2951), + [anon_sym_R_DQUOTE] = ACTIONS(2953), + [anon_sym_LR_DQUOTE] = ACTIONS(2953), + [anon_sym_uR_DQUOTE] = ACTIONS(2953), + [anon_sym_UR_DQUOTE] = ACTIONS(2953), + [anon_sym_u8R_DQUOTE] = ACTIONS(2953), + [anon_sym_co_await] = ACTIONS(2951), + [anon_sym_new] = ACTIONS(2951), + [anon_sym_requires] = ACTIONS(2951), + [sym_this] = ACTIONS(2951), }, - [715] = { - [sym_identifier] = ACTIONS(2911), - [aux_sym_preproc_include_token1] = ACTIONS(2911), - [aux_sym_preproc_def_token1] = ACTIONS(2911), - [aux_sym_preproc_if_token1] = ACTIONS(2911), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2911), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2911), - [sym_preproc_directive] = ACTIONS(2911), - [anon_sym_LPAREN2] = ACTIONS(2913), - [anon_sym_BANG] = ACTIONS(2913), - [anon_sym_TILDE] = ACTIONS(2913), - [anon_sym_DASH] = ACTIONS(2911), - [anon_sym_PLUS] = ACTIONS(2911), - [anon_sym_STAR] = ACTIONS(2913), - [anon_sym_AMP_AMP] = ACTIONS(2913), - [anon_sym_AMP] = ACTIONS(2911), - [anon_sym_SEMI] = ACTIONS(2913), - [anon_sym___extension__] = ACTIONS(2911), - [anon_sym_typedef] = ACTIONS(2911), - [anon_sym_virtual] = ACTIONS(2911), - [anon_sym_extern] = ACTIONS(2911), - [anon_sym___attribute__] = ACTIONS(2911), - [anon_sym___attribute] = ACTIONS(2911), - [anon_sym_using] = ACTIONS(2911), - [anon_sym_COLON_COLON] = ACTIONS(2913), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2913), - [anon_sym___declspec] = ACTIONS(2911), - [anon_sym___based] = ACTIONS(2911), - [anon_sym___cdecl] = ACTIONS(2911), - [anon_sym___clrcall] = ACTIONS(2911), - [anon_sym___stdcall] = ACTIONS(2911), - [anon_sym___fastcall] = ACTIONS(2911), - [anon_sym___thiscall] = ACTIONS(2911), - [anon_sym___vectorcall] = ACTIONS(2911), - [anon_sym_LBRACE] = ACTIONS(2913), - [anon_sym_RBRACE] = ACTIONS(2913), - [anon_sym_signed] = ACTIONS(2911), - [anon_sym_unsigned] = ACTIONS(2911), - [anon_sym_long] = ACTIONS(2911), - [anon_sym_short] = ACTIONS(2911), - [anon_sym_LBRACK] = ACTIONS(2911), - [anon_sym_static] = ACTIONS(2911), - [anon_sym_register] = ACTIONS(2911), - [anon_sym_inline] = ACTIONS(2911), - [anon_sym___inline] = ACTIONS(2911), - [anon_sym___inline__] = ACTIONS(2911), - [anon_sym___forceinline] = ACTIONS(2911), - [anon_sym_thread_local] = ACTIONS(2911), - [anon_sym___thread] = ACTIONS(2911), - [anon_sym_const] = ACTIONS(2911), - [anon_sym_constexpr] = ACTIONS(2911), - [anon_sym_volatile] = ACTIONS(2911), - [anon_sym_restrict] = ACTIONS(2911), - [anon_sym___restrict__] = ACTIONS(2911), - [anon_sym__Atomic] = ACTIONS(2911), - [anon_sym__Noreturn] = ACTIONS(2911), - [anon_sym_noreturn] = ACTIONS(2911), - [anon_sym__Nonnull] = ACTIONS(2911), - [anon_sym_mutable] = ACTIONS(2911), - [anon_sym_constinit] = ACTIONS(2911), - [anon_sym_consteval] = ACTIONS(2911), - [anon_sym_alignas] = ACTIONS(2911), - [anon_sym__Alignas] = ACTIONS(2911), - [sym_primitive_type] = ACTIONS(2911), - [anon_sym_enum] = ACTIONS(2911), - [anon_sym_class] = ACTIONS(2911), - [anon_sym_struct] = ACTIONS(2911), - [anon_sym_union] = ACTIONS(2911), - [anon_sym_if] = ACTIONS(2911), - [anon_sym_switch] = ACTIONS(2911), - [anon_sym_case] = ACTIONS(2911), - [anon_sym_default] = ACTIONS(2911), - [anon_sym_while] = ACTIONS(2911), - [anon_sym_do] = ACTIONS(2911), - [anon_sym_for] = ACTIONS(2911), - [anon_sym_return] = ACTIONS(2911), - [anon_sym_break] = ACTIONS(2911), - [anon_sym_continue] = ACTIONS(2911), - [anon_sym_goto] = ACTIONS(2911), - [anon_sym___try] = ACTIONS(2911), - [anon_sym___leave] = ACTIONS(2911), - [anon_sym_not] = ACTIONS(2911), - [anon_sym_compl] = ACTIONS(2911), - [anon_sym_DASH_DASH] = ACTIONS(2913), - [anon_sym_PLUS_PLUS] = ACTIONS(2913), - [anon_sym_sizeof] = ACTIONS(2911), - [anon_sym___alignof__] = ACTIONS(2911), - [anon_sym___alignof] = ACTIONS(2911), - [anon_sym__alignof] = ACTIONS(2911), - [anon_sym_alignof] = ACTIONS(2911), - [anon_sym__Alignof] = ACTIONS(2911), - [anon_sym_offsetof] = ACTIONS(2911), - [anon_sym__Generic] = ACTIONS(2911), - [anon_sym_asm] = ACTIONS(2911), - [anon_sym___asm__] = ACTIONS(2911), - [anon_sym___asm] = ACTIONS(2911), - [sym_number_literal] = ACTIONS(2913), - [anon_sym_L_SQUOTE] = ACTIONS(2913), - [anon_sym_u_SQUOTE] = ACTIONS(2913), - [anon_sym_U_SQUOTE] = ACTIONS(2913), - [anon_sym_u8_SQUOTE] = ACTIONS(2913), - [anon_sym_SQUOTE] = ACTIONS(2913), - [anon_sym_L_DQUOTE] = ACTIONS(2913), - [anon_sym_u_DQUOTE] = ACTIONS(2913), - [anon_sym_U_DQUOTE] = ACTIONS(2913), - [anon_sym_u8_DQUOTE] = ACTIONS(2913), - [anon_sym_DQUOTE] = ACTIONS(2913), - [sym_true] = ACTIONS(2911), - [sym_false] = ACTIONS(2911), - [anon_sym_NULL] = ACTIONS(2911), - [anon_sym_nullptr] = ACTIONS(2911), + [731] = { + [sym_identifier] = ACTIONS(2955), + [aux_sym_preproc_include_token1] = ACTIONS(2955), + [aux_sym_preproc_def_token1] = ACTIONS(2955), + [aux_sym_preproc_if_token1] = ACTIONS(2955), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2955), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2955), + [sym_preproc_directive] = ACTIONS(2955), + [anon_sym_LPAREN2] = ACTIONS(2957), + [anon_sym_BANG] = ACTIONS(2957), + [anon_sym_TILDE] = ACTIONS(2957), + [anon_sym_DASH] = ACTIONS(2955), + [anon_sym_PLUS] = ACTIONS(2955), + [anon_sym_STAR] = ACTIONS(2957), + [anon_sym_AMP_AMP] = ACTIONS(2957), + [anon_sym_AMP] = ACTIONS(2955), + [anon_sym_SEMI] = ACTIONS(2957), + [anon_sym___extension__] = ACTIONS(2955), + [anon_sym_typedef] = ACTIONS(2955), + [anon_sym_virtual] = ACTIONS(2955), + [anon_sym_extern] = ACTIONS(2955), + [anon_sym___attribute__] = ACTIONS(2955), + [anon_sym___attribute] = ACTIONS(2955), + [anon_sym_using] = ACTIONS(2955), + [anon_sym_COLON_COLON] = ACTIONS(2957), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2957), + [anon_sym___declspec] = ACTIONS(2955), + [anon_sym___based] = ACTIONS(2955), + [anon_sym___cdecl] = ACTIONS(2955), + [anon_sym___clrcall] = ACTIONS(2955), + [anon_sym___stdcall] = ACTIONS(2955), + [anon_sym___fastcall] = ACTIONS(2955), + [anon_sym___thiscall] = ACTIONS(2955), + [anon_sym___vectorcall] = ACTIONS(2955), + [anon_sym_LBRACE] = ACTIONS(2957), + [anon_sym_RBRACE] = ACTIONS(2957), + [anon_sym_signed] = ACTIONS(2955), + [anon_sym_unsigned] = ACTIONS(2955), + [anon_sym_long] = ACTIONS(2955), + [anon_sym_short] = ACTIONS(2955), + [anon_sym_LBRACK] = ACTIONS(2955), + [anon_sym_static] = ACTIONS(2955), + [anon_sym_register] = ACTIONS(2955), + [anon_sym_inline] = ACTIONS(2955), + [anon_sym___inline] = ACTIONS(2955), + [anon_sym___inline__] = ACTIONS(2955), + [anon_sym___forceinline] = ACTIONS(2955), + [anon_sym_thread_local] = ACTIONS(2955), + [anon_sym___thread] = ACTIONS(2955), + [anon_sym_const] = ACTIONS(2955), + [anon_sym_constexpr] = ACTIONS(2955), + [anon_sym_volatile] = ACTIONS(2955), + [anon_sym_restrict] = ACTIONS(2955), + [anon_sym___restrict__] = ACTIONS(2955), + [anon_sym__Atomic] = ACTIONS(2955), + [anon_sym__Noreturn] = ACTIONS(2955), + [anon_sym_noreturn] = ACTIONS(2955), + [anon_sym__Nonnull] = ACTIONS(2955), + [anon_sym_mutable] = ACTIONS(2955), + [anon_sym_constinit] = ACTIONS(2955), + [anon_sym_consteval] = ACTIONS(2955), + [anon_sym_alignas] = ACTIONS(2955), + [anon_sym__Alignas] = ACTIONS(2955), + [sym_primitive_type] = ACTIONS(2955), + [anon_sym_enum] = ACTIONS(2955), + [anon_sym_class] = ACTIONS(2955), + [anon_sym_struct] = ACTIONS(2955), + [anon_sym_union] = ACTIONS(2955), + [anon_sym_if] = ACTIONS(2955), + [anon_sym_switch] = ACTIONS(2955), + [anon_sym_case] = ACTIONS(2955), + [anon_sym_default] = ACTIONS(2955), + [anon_sym_while] = ACTIONS(2955), + [anon_sym_do] = ACTIONS(2955), + [anon_sym_for] = ACTIONS(2955), + [anon_sym_return] = ACTIONS(2955), + [anon_sym_break] = ACTIONS(2955), + [anon_sym_continue] = ACTIONS(2955), + [anon_sym_goto] = ACTIONS(2955), + [anon_sym___try] = ACTIONS(2955), + [anon_sym___leave] = ACTIONS(2955), + [anon_sym_not] = ACTIONS(2955), + [anon_sym_compl] = ACTIONS(2955), + [anon_sym_DASH_DASH] = ACTIONS(2957), + [anon_sym_PLUS_PLUS] = ACTIONS(2957), + [anon_sym_sizeof] = ACTIONS(2955), + [anon_sym___alignof__] = ACTIONS(2955), + [anon_sym___alignof] = ACTIONS(2955), + [anon_sym__alignof] = ACTIONS(2955), + [anon_sym_alignof] = ACTIONS(2955), + [anon_sym__Alignof] = ACTIONS(2955), + [anon_sym_offsetof] = ACTIONS(2955), + [anon_sym__Generic] = ACTIONS(2955), + [anon_sym_asm] = ACTIONS(2955), + [anon_sym___asm__] = ACTIONS(2955), + [anon_sym___asm] = ACTIONS(2955), + [sym_number_literal] = ACTIONS(2957), + [anon_sym_L_SQUOTE] = ACTIONS(2957), + [anon_sym_u_SQUOTE] = ACTIONS(2957), + [anon_sym_U_SQUOTE] = ACTIONS(2957), + [anon_sym_u8_SQUOTE] = ACTIONS(2957), + [anon_sym_SQUOTE] = ACTIONS(2957), + [anon_sym_L_DQUOTE] = ACTIONS(2957), + [anon_sym_u_DQUOTE] = ACTIONS(2957), + [anon_sym_U_DQUOTE] = ACTIONS(2957), + [anon_sym_u8_DQUOTE] = ACTIONS(2957), + [anon_sym_DQUOTE] = ACTIONS(2957), + [sym_true] = ACTIONS(2955), + [sym_false] = ACTIONS(2955), + [anon_sym_NULL] = ACTIONS(2955), + [anon_sym_nullptr] = ACTIONS(2955), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2911), - [anon_sym_decltype] = ACTIONS(2911), - [anon_sym_explicit] = ACTIONS(2911), - [anon_sym_typename] = ACTIONS(2911), - [anon_sym_template] = ACTIONS(2911), - [anon_sym_operator] = ACTIONS(2911), - [anon_sym_try] = ACTIONS(2911), - [anon_sym_delete] = ACTIONS(2911), - [anon_sym_throw] = ACTIONS(2911), - [anon_sym_namespace] = ACTIONS(2911), - [anon_sym_static_assert] = ACTIONS(2911), - [anon_sym_concept] = ACTIONS(2911), - [anon_sym_co_return] = ACTIONS(2911), - [anon_sym_co_yield] = ACTIONS(2911), - [anon_sym_R_DQUOTE] = ACTIONS(2913), - [anon_sym_LR_DQUOTE] = ACTIONS(2913), - [anon_sym_uR_DQUOTE] = ACTIONS(2913), - [anon_sym_UR_DQUOTE] = ACTIONS(2913), - [anon_sym_u8R_DQUOTE] = ACTIONS(2913), - [anon_sym_co_await] = ACTIONS(2911), - [anon_sym_new] = ACTIONS(2911), - [anon_sym_requires] = ACTIONS(2911), - [sym_this] = ACTIONS(2911), + [sym_auto] = ACTIONS(2955), + [anon_sym_decltype] = ACTIONS(2955), + [anon_sym_explicit] = ACTIONS(2955), + [anon_sym_typename] = ACTIONS(2955), + [anon_sym_template] = ACTIONS(2955), + [anon_sym_operator] = ACTIONS(2955), + [anon_sym_try] = ACTIONS(2955), + [anon_sym_delete] = ACTIONS(2955), + [anon_sym_throw] = ACTIONS(2955), + [anon_sym_namespace] = ACTIONS(2955), + [anon_sym_static_assert] = ACTIONS(2955), + [anon_sym_concept] = ACTIONS(2955), + [anon_sym_co_return] = ACTIONS(2955), + [anon_sym_co_yield] = ACTIONS(2955), + [anon_sym_R_DQUOTE] = ACTIONS(2957), + [anon_sym_LR_DQUOTE] = ACTIONS(2957), + [anon_sym_uR_DQUOTE] = ACTIONS(2957), + [anon_sym_UR_DQUOTE] = ACTIONS(2957), + [anon_sym_u8R_DQUOTE] = ACTIONS(2957), + [anon_sym_co_await] = ACTIONS(2955), + [anon_sym_new] = ACTIONS(2955), + [anon_sym_requires] = ACTIONS(2955), + [sym_this] = ACTIONS(2955), }, - [716] = { - [sym_identifier] = ACTIONS(2903), - [aux_sym_preproc_include_token1] = ACTIONS(2903), - [aux_sym_preproc_def_token1] = ACTIONS(2903), - [aux_sym_preproc_if_token1] = ACTIONS(2903), - [aux_sym_preproc_if_token2] = ACTIONS(2903), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2903), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2903), - [sym_preproc_directive] = ACTIONS(2903), - [anon_sym_LPAREN2] = ACTIONS(2905), - [anon_sym_BANG] = ACTIONS(2905), - [anon_sym_TILDE] = ACTIONS(2905), - [anon_sym_DASH] = ACTIONS(2903), - [anon_sym_PLUS] = ACTIONS(2903), - [anon_sym_STAR] = ACTIONS(2905), - [anon_sym_AMP_AMP] = ACTIONS(2905), - [anon_sym_AMP] = ACTIONS(2903), - [anon_sym_SEMI] = ACTIONS(2905), - [anon_sym___extension__] = ACTIONS(2903), - [anon_sym_typedef] = ACTIONS(2903), - [anon_sym_virtual] = ACTIONS(2903), - [anon_sym_extern] = ACTIONS(2903), - [anon_sym___attribute__] = ACTIONS(2903), - [anon_sym___attribute] = ACTIONS(2903), - [anon_sym_using] = ACTIONS(2903), - [anon_sym_COLON_COLON] = ACTIONS(2905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2905), - [anon_sym___declspec] = ACTIONS(2903), - [anon_sym___based] = ACTIONS(2903), - [anon_sym___cdecl] = ACTIONS(2903), - [anon_sym___clrcall] = ACTIONS(2903), - [anon_sym___stdcall] = ACTIONS(2903), - [anon_sym___fastcall] = ACTIONS(2903), - [anon_sym___thiscall] = ACTIONS(2903), - [anon_sym___vectorcall] = ACTIONS(2903), - [anon_sym_LBRACE] = ACTIONS(2905), - [anon_sym_signed] = ACTIONS(2903), - [anon_sym_unsigned] = ACTIONS(2903), - [anon_sym_long] = ACTIONS(2903), - [anon_sym_short] = ACTIONS(2903), - [anon_sym_LBRACK] = ACTIONS(2903), - [anon_sym_static] = ACTIONS(2903), - [anon_sym_register] = ACTIONS(2903), - [anon_sym_inline] = ACTIONS(2903), - [anon_sym___inline] = ACTIONS(2903), - [anon_sym___inline__] = ACTIONS(2903), - [anon_sym___forceinline] = ACTIONS(2903), - [anon_sym_thread_local] = ACTIONS(2903), - [anon_sym___thread] = ACTIONS(2903), - [anon_sym_const] = ACTIONS(2903), - [anon_sym_constexpr] = ACTIONS(2903), - [anon_sym_volatile] = ACTIONS(2903), - [anon_sym_restrict] = ACTIONS(2903), - [anon_sym___restrict__] = ACTIONS(2903), - [anon_sym__Atomic] = ACTIONS(2903), - [anon_sym__Noreturn] = ACTIONS(2903), - [anon_sym_noreturn] = ACTIONS(2903), - [anon_sym__Nonnull] = ACTIONS(2903), - [anon_sym_mutable] = ACTIONS(2903), - [anon_sym_constinit] = ACTIONS(2903), - [anon_sym_consteval] = ACTIONS(2903), - [anon_sym_alignas] = ACTIONS(2903), - [anon_sym__Alignas] = ACTIONS(2903), - [sym_primitive_type] = ACTIONS(2903), - [anon_sym_enum] = ACTIONS(2903), - [anon_sym_class] = ACTIONS(2903), - [anon_sym_struct] = ACTIONS(2903), - [anon_sym_union] = ACTIONS(2903), - [anon_sym_if] = ACTIONS(2903), - [anon_sym_switch] = ACTIONS(2903), - [anon_sym_case] = ACTIONS(2903), - [anon_sym_default] = ACTIONS(2903), - [anon_sym_while] = ACTIONS(2903), - [anon_sym_do] = ACTIONS(2903), - [anon_sym_for] = ACTIONS(2903), - [anon_sym_return] = ACTIONS(2903), - [anon_sym_break] = ACTIONS(2903), - [anon_sym_continue] = ACTIONS(2903), - [anon_sym_goto] = ACTIONS(2903), - [anon_sym___try] = ACTIONS(2903), - [anon_sym___leave] = ACTIONS(2903), - [anon_sym_not] = ACTIONS(2903), - [anon_sym_compl] = ACTIONS(2903), - [anon_sym_DASH_DASH] = ACTIONS(2905), - [anon_sym_PLUS_PLUS] = ACTIONS(2905), - [anon_sym_sizeof] = ACTIONS(2903), - [anon_sym___alignof__] = ACTIONS(2903), - [anon_sym___alignof] = ACTIONS(2903), - [anon_sym__alignof] = ACTIONS(2903), - [anon_sym_alignof] = ACTIONS(2903), - [anon_sym__Alignof] = ACTIONS(2903), - [anon_sym_offsetof] = ACTIONS(2903), - [anon_sym__Generic] = ACTIONS(2903), - [anon_sym_asm] = ACTIONS(2903), - [anon_sym___asm__] = ACTIONS(2903), - [anon_sym___asm] = ACTIONS(2903), - [sym_number_literal] = ACTIONS(2905), - [anon_sym_L_SQUOTE] = ACTIONS(2905), - [anon_sym_u_SQUOTE] = ACTIONS(2905), - [anon_sym_U_SQUOTE] = ACTIONS(2905), - [anon_sym_u8_SQUOTE] = ACTIONS(2905), - [anon_sym_SQUOTE] = ACTIONS(2905), - [anon_sym_L_DQUOTE] = ACTIONS(2905), - [anon_sym_u_DQUOTE] = ACTIONS(2905), - [anon_sym_U_DQUOTE] = ACTIONS(2905), - [anon_sym_u8_DQUOTE] = ACTIONS(2905), - [anon_sym_DQUOTE] = ACTIONS(2905), - [sym_true] = ACTIONS(2903), - [sym_false] = ACTIONS(2903), - [anon_sym_NULL] = ACTIONS(2903), - [anon_sym_nullptr] = ACTIONS(2903), + [732] = { + [sym_identifier] = ACTIONS(2931), + [aux_sym_preproc_include_token1] = ACTIONS(2931), + [aux_sym_preproc_def_token1] = ACTIONS(2931), + [aux_sym_preproc_if_token1] = ACTIONS(2931), + [aux_sym_preproc_if_token2] = ACTIONS(2931), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2931), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2931), + [sym_preproc_directive] = ACTIONS(2931), + [anon_sym_LPAREN2] = ACTIONS(2933), + [anon_sym_BANG] = ACTIONS(2933), + [anon_sym_TILDE] = ACTIONS(2933), + [anon_sym_DASH] = ACTIONS(2931), + [anon_sym_PLUS] = ACTIONS(2931), + [anon_sym_STAR] = ACTIONS(2933), + [anon_sym_AMP_AMP] = ACTIONS(2933), + [anon_sym_AMP] = ACTIONS(2931), + [anon_sym_SEMI] = ACTIONS(2933), + [anon_sym___extension__] = ACTIONS(2931), + [anon_sym_typedef] = ACTIONS(2931), + [anon_sym_virtual] = ACTIONS(2931), + [anon_sym_extern] = ACTIONS(2931), + [anon_sym___attribute__] = ACTIONS(2931), + [anon_sym___attribute] = ACTIONS(2931), + [anon_sym_using] = ACTIONS(2931), + [anon_sym_COLON_COLON] = ACTIONS(2933), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2933), + [anon_sym___declspec] = ACTIONS(2931), + [anon_sym___based] = ACTIONS(2931), + [anon_sym___cdecl] = ACTIONS(2931), + [anon_sym___clrcall] = ACTIONS(2931), + [anon_sym___stdcall] = ACTIONS(2931), + [anon_sym___fastcall] = ACTIONS(2931), + [anon_sym___thiscall] = ACTIONS(2931), + [anon_sym___vectorcall] = ACTIONS(2931), + [anon_sym_LBRACE] = ACTIONS(2933), + [anon_sym_signed] = ACTIONS(2931), + [anon_sym_unsigned] = ACTIONS(2931), + [anon_sym_long] = ACTIONS(2931), + [anon_sym_short] = ACTIONS(2931), + [anon_sym_LBRACK] = ACTIONS(2931), + [anon_sym_static] = ACTIONS(2931), + [anon_sym_register] = ACTIONS(2931), + [anon_sym_inline] = ACTIONS(2931), + [anon_sym___inline] = ACTIONS(2931), + [anon_sym___inline__] = ACTIONS(2931), + [anon_sym___forceinline] = ACTIONS(2931), + [anon_sym_thread_local] = ACTIONS(2931), + [anon_sym___thread] = ACTIONS(2931), + [anon_sym_const] = ACTIONS(2931), + [anon_sym_constexpr] = ACTIONS(2931), + [anon_sym_volatile] = ACTIONS(2931), + [anon_sym_restrict] = ACTIONS(2931), + [anon_sym___restrict__] = ACTIONS(2931), + [anon_sym__Atomic] = ACTIONS(2931), + [anon_sym__Noreturn] = ACTIONS(2931), + [anon_sym_noreturn] = ACTIONS(2931), + [anon_sym__Nonnull] = ACTIONS(2931), + [anon_sym_mutable] = ACTIONS(2931), + [anon_sym_constinit] = ACTIONS(2931), + [anon_sym_consteval] = ACTIONS(2931), + [anon_sym_alignas] = ACTIONS(2931), + [anon_sym__Alignas] = ACTIONS(2931), + [sym_primitive_type] = ACTIONS(2931), + [anon_sym_enum] = ACTIONS(2931), + [anon_sym_class] = ACTIONS(2931), + [anon_sym_struct] = ACTIONS(2931), + [anon_sym_union] = ACTIONS(2931), + [anon_sym_if] = ACTIONS(2931), + [anon_sym_switch] = ACTIONS(2931), + [anon_sym_case] = ACTIONS(2931), + [anon_sym_default] = ACTIONS(2931), + [anon_sym_while] = ACTIONS(2931), + [anon_sym_do] = ACTIONS(2931), + [anon_sym_for] = ACTIONS(2931), + [anon_sym_return] = ACTIONS(2931), + [anon_sym_break] = ACTIONS(2931), + [anon_sym_continue] = ACTIONS(2931), + [anon_sym_goto] = ACTIONS(2931), + [anon_sym___try] = ACTIONS(2931), + [anon_sym___leave] = ACTIONS(2931), + [anon_sym_not] = ACTIONS(2931), + [anon_sym_compl] = ACTIONS(2931), + [anon_sym_DASH_DASH] = ACTIONS(2933), + [anon_sym_PLUS_PLUS] = ACTIONS(2933), + [anon_sym_sizeof] = ACTIONS(2931), + [anon_sym___alignof__] = ACTIONS(2931), + [anon_sym___alignof] = ACTIONS(2931), + [anon_sym__alignof] = ACTIONS(2931), + [anon_sym_alignof] = ACTIONS(2931), + [anon_sym__Alignof] = ACTIONS(2931), + [anon_sym_offsetof] = ACTIONS(2931), + [anon_sym__Generic] = ACTIONS(2931), + [anon_sym_asm] = ACTIONS(2931), + [anon_sym___asm__] = ACTIONS(2931), + [anon_sym___asm] = ACTIONS(2931), + [sym_number_literal] = ACTIONS(2933), + [anon_sym_L_SQUOTE] = ACTIONS(2933), + [anon_sym_u_SQUOTE] = ACTIONS(2933), + [anon_sym_U_SQUOTE] = ACTIONS(2933), + [anon_sym_u8_SQUOTE] = ACTIONS(2933), + [anon_sym_SQUOTE] = ACTIONS(2933), + [anon_sym_L_DQUOTE] = ACTIONS(2933), + [anon_sym_u_DQUOTE] = ACTIONS(2933), + [anon_sym_U_DQUOTE] = ACTIONS(2933), + [anon_sym_u8_DQUOTE] = ACTIONS(2933), + [anon_sym_DQUOTE] = ACTIONS(2933), + [sym_true] = ACTIONS(2931), + [sym_false] = ACTIONS(2931), + [anon_sym_NULL] = ACTIONS(2931), + [anon_sym_nullptr] = ACTIONS(2931), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2903), - [anon_sym_decltype] = ACTIONS(2903), - [anon_sym_explicit] = ACTIONS(2903), - [anon_sym_typename] = ACTIONS(2903), - [anon_sym_template] = ACTIONS(2903), - [anon_sym_operator] = ACTIONS(2903), - [anon_sym_try] = ACTIONS(2903), - [anon_sym_delete] = ACTIONS(2903), - [anon_sym_throw] = ACTIONS(2903), - [anon_sym_namespace] = ACTIONS(2903), - [anon_sym_static_assert] = ACTIONS(2903), - [anon_sym_concept] = ACTIONS(2903), - [anon_sym_co_return] = ACTIONS(2903), - [anon_sym_co_yield] = ACTIONS(2903), - [anon_sym_R_DQUOTE] = ACTIONS(2905), - [anon_sym_LR_DQUOTE] = ACTIONS(2905), - [anon_sym_uR_DQUOTE] = ACTIONS(2905), - [anon_sym_UR_DQUOTE] = ACTIONS(2905), - [anon_sym_u8R_DQUOTE] = ACTIONS(2905), - [anon_sym_co_await] = ACTIONS(2903), - [anon_sym_new] = ACTIONS(2903), - [anon_sym_requires] = ACTIONS(2903), - [sym_this] = ACTIONS(2903), + [sym_auto] = ACTIONS(2931), + [anon_sym_decltype] = ACTIONS(2931), + [anon_sym_explicit] = ACTIONS(2931), + [anon_sym_typename] = ACTIONS(2931), + [anon_sym_template] = ACTIONS(2931), + [anon_sym_operator] = ACTIONS(2931), + [anon_sym_try] = ACTIONS(2931), + [anon_sym_delete] = ACTIONS(2931), + [anon_sym_throw] = ACTIONS(2931), + [anon_sym_namespace] = ACTIONS(2931), + [anon_sym_static_assert] = ACTIONS(2931), + [anon_sym_concept] = ACTIONS(2931), + [anon_sym_co_return] = ACTIONS(2931), + [anon_sym_co_yield] = ACTIONS(2931), + [anon_sym_R_DQUOTE] = ACTIONS(2933), + [anon_sym_LR_DQUOTE] = ACTIONS(2933), + [anon_sym_uR_DQUOTE] = ACTIONS(2933), + [anon_sym_UR_DQUOTE] = ACTIONS(2933), + [anon_sym_u8R_DQUOTE] = ACTIONS(2933), + [anon_sym_co_await] = ACTIONS(2931), + [anon_sym_new] = ACTIONS(2931), + [anon_sym_requires] = ACTIONS(2931), + [sym_this] = ACTIONS(2931), }, - [717] = { - [sym_identifier] = ACTIONS(2915), - [aux_sym_preproc_include_token1] = ACTIONS(2915), - [aux_sym_preproc_def_token1] = ACTIONS(2915), - [aux_sym_preproc_if_token1] = ACTIONS(2915), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2915), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2915), - [sym_preproc_directive] = ACTIONS(2915), - [anon_sym_LPAREN2] = ACTIONS(2917), - [anon_sym_BANG] = ACTIONS(2917), - [anon_sym_TILDE] = ACTIONS(2917), - [anon_sym_DASH] = ACTIONS(2915), - [anon_sym_PLUS] = ACTIONS(2915), - [anon_sym_STAR] = ACTIONS(2917), - [anon_sym_AMP_AMP] = ACTIONS(2917), - [anon_sym_AMP] = ACTIONS(2915), - [anon_sym_SEMI] = ACTIONS(2917), - [anon_sym___extension__] = ACTIONS(2915), - [anon_sym_typedef] = ACTIONS(2915), - [anon_sym_virtual] = ACTIONS(2915), - [anon_sym_extern] = ACTIONS(2915), - [anon_sym___attribute__] = ACTIONS(2915), - [anon_sym___attribute] = ACTIONS(2915), - [anon_sym_using] = ACTIONS(2915), - [anon_sym_COLON_COLON] = ACTIONS(2917), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2917), - [anon_sym___declspec] = ACTIONS(2915), - [anon_sym___based] = ACTIONS(2915), - [anon_sym___cdecl] = ACTIONS(2915), - [anon_sym___clrcall] = ACTIONS(2915), - [anon_sym___stdcall] = ACTIONS(2915), - [anon_sym___fastcall] = ACTIONS(2915), - [anon_sym___thiscall] = ACTIONS(2915), - [anon_sym___vectorcall] = ACTIONS(2915), - [anon_sym_LBRACE] = ACTIONS(2917), - [anon_sym_RBRACE] = ACTIONS(2917), - [anon_sym_signed] = ACTIONS(2915), - [anon_sym_unsigned] = ACTIONS(2915), - [anon_sym_long] = ACTIONS(2915), - [anon_sym_short] = ACTIONS(2915), - [anon_sym_LBRACK] = ACTIONS(2915), - [anon_sym_static] = ACTIONS(2915), - [anon_sym_register] = ACTIONS(2915), - [anon_sym_inline] = ACTIONS(2915), - [anon_sym___inline] = ACTIONS(2915), - [anon_sym___inline__] = ACTIONS(2915), - [anon_sym___forceinline] = ACTIONS(2915), - [anon_sym_thread_local] = ACTIONS(2915), - [anon_sym___thread] = ACTIONS(2915), - [anon_sym_const] = ACTIONS(2915), - [anon_sym_constexpr] = ACTIONS(2915), - [anon_sym_volatile] = ACTIONS(2915), - [anon_sym_restrict] = ACTIONS(2915), - [anon_sym___restrict__] = ACTIONS(2915), - [anon_sym__Atomic] = ACTIONS(2915), - [anon_sym__Noreturn] = ACTIONS(2915), - [anon_sym_noreturn] = ACTIONS(2915), - [anon_sym__Nonnull] = ACTIONS(2915), - [anon_sym_mutable] = ACTIONS(2915), - [anon_sym_constinit] = ACTIONS(2915), - [anon_sym_consteval] = ACTIONS(2915), - [anon_sym_alignas] = ACTIONS(2915), - [anon_sym__Alignas] = ACTIONS(2915), - [sym_primitive_type] = ACTIONS(2915), - [anon_sym_enum] = ACTIONS(2915), - [anon_sym_class] = ACTIONS(2915), - [anon_sym_struct] = ACTIONS(2915), - [anon_sym_union] = ACTIONS(2915), - [anon_sym_if] = ACTIONS(2915), - [anon_sym_switch] = ACTIONS(2915), - [anon_sym_case] = ACTIONS(2915), - [anon_sym_default] = ACTIONS(2915), - [anon_sym_while] = ACTIONS(2915), - [anon_sym_do] = ACTIONS(2915), - [anon_sym_for] = ACTIONS(2915), - [anon_sym_return] = ACTIONS(2915), - [anon_sym_break] = ACTIONS(2915), - [anon_sym_continue] = ACTIONS(2915), - [anon_sym_goto] = ACTIONS(2915), - [anon_sym___try] = ACTIONS(2915), - [anon_sym___leave] = ACTIONS(2915), - [anon_sym_not] = ACTIONS(2915), - [anon_sym_compl] = ACTIONS(2915), - [anon_sym_DASH_DASH] = ACTIONS(2917), - [anon_sym_PLUS_PLUS] = ACTIONS(2917), - [anon_sym_sizeof] = ACTIONS(2915), - [anon_sym___alignof__] = ACTIONS(2915), - [anon_sym___alignof] = ACTIONS(2915), - [anon_sym__alignof] = ACTIONS(2915), - [anon_sym_alignof] = ACTIONS(2915), - [anon_sym__Alignof] = ACTIONS(2915), - [anon_sym_offsetof] = ACTIONS(2915), - [anon_sym__Generic] = ACTIONS(2915), - [anon_sym_asm] = ACTIONS(2915), - [anon_sym___asm__] = ACTIONS(2915), - [anon_sym___asm] = ACTIONS(2915), - [sym_number_literal] = ACTIONS(2917), - [anon_sym_L_SQUOTE] = ACTIONS(2917), - [anon_sym_u_SQUOTE] = ACTIONS(2917), - [anon_sym_U_SQUOTE] = ACTIONS(2917), - [anon_sym_u8_SQUOTE] = ACTIONS(2917), - [anon_sym_SQUOTE] = ACTIONS(2917), - [anon_sym_L_DQUOTE] = ACTIONS(2917), - [anon_sym_u_DQUOTE] = ACTIONS(2917), - [anon_sym_U_DQUOTE] = ACTIONS(2917), - [anon_sym_u8_DQUOTE] = ACTIONS(2917), - [anon_sym_DQUOTE] = ACTIONS(2917), - [sym_true] = ACTIONS(2915), - [sym_false] = ACTIONS(2915), - [anon_sym_NULL] = ACTIONS(2915), - [anon_sym_nullptr] = ACTIONS(2915), + [733] = { + [sym_identifier] = ACTIONS(2935), + [aux_sym_preproc_include_token1] = ACTIONS(2935), + [aux_sym_preproc_def_token1] = ACTIONS(2935), + [aux_sym_preproc_if_token1] = ACTIONS(2935), + [aux_sym_preproc_if_token2] = ACTIONS(2935), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2935), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2935), + [sym_preproc_directive] = ACTIONS(2935), + [anon_sym_LPAREN2] = ACTIONS(2937), + [anon_sym_BANG] = ACTIONS(2937), + [anon_sym_TILDE] = ACTIONS(2937), + [anon_sym_DASH] = ACTIONS(2935), + [anon_sym_PLUS] = ACTIONS(2935), + [anon_sym_STAR] = ACTIONS(2937), + [anon_sym_AMP_AMP] = ACTIONS(2937), + [anon_sym_AMP] = ACTIONS(2935), + [anon_sym_SEMI] = ACTIONS(2937), + [anon_sym___extension__] = ACTIONS(2935), + [anon_sym_typedef] = ACTIONS(2935), + [anon_sym_virtual] = ACTIONS(2935), + [anon_sym_extern] = ACTIONS(2935), + [anon_sym___attribute__] = ACTIONS(2935), + [anon_sym___attribute] = ACTIONS(2935), + [anon_sym_using] = ACTIONS(2935), + [anon_sym_COLON_COLON] = ACTIONS(2937), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2937), + [anon_sym___declspec] = ACTIONS(2935), + [anon_sym___based] = ACTIONS(2935), + [anon_sym___cdecl] = ACTIONS(2935), + [anon_sym___clrcall] = ACTIONS(2935), + [anon_sym___stdcall] = ACTIONS(2935), + [anon_sym___fastcall] = ACTIONS(2935), + [anon_sym___thiscall] = ACTIONS(2935), + [anon_sym___vectorcall] = ACTIONS(2935), + [anon_sym_LBRACE] = ACTIONS(2937), + [anon_sym_signed] = ACTIONS(2935), + [anon_sym_unsigned] = ACTIONS(2935), + [anon_sym_long] = ACTIONS(2935), + [anon_sym_short] = ACTIONS(2935), + [anon_sym_LBRACK] = ACTIONS(2935), + [anon_sym_static] = ACTIONS(2935), + [anon_sym_register] = ACTIONS(2935), + [anon_sym_inline] = ACTIONS(2935), + [anon_sym___inline] = ACTIONS(2935), + [anon_sym___inline__] = ACTIONS(2935), + [anon_sym___forceinline] = ACTIONS(2935), + [anon_sym_thread_local] = ACTIONS(2935), + [anon_sym___thread] = ACTIONS(2935), + [anon_sym_const] = ACTIONS(2935), + [anon_sym_constexpr] = ACTIONS(2935), + [anon_sym_volatile] = ACTIONS(2935), + [anon_sym_restrict] = ACTIONS(2935), + [anon_sym___restrict__] = ACTIONS(2935), + [anon_sym__Atomic] = ACTIONS(2935), + [anon_sym__Noreturn] = ACTIONS(2935), + [anon_sym_noreturn] = ACTIONS(2935), + [anon_sym__Nonnull] = ACTIONS(2935), + [anon_sym_mutable] = ACTIONS(2935), + [anon_sym_constinit] = ACTIONS(2935), + [anon_sym_consteval] = ACTIONS(2935), + [anon_sym_alignas] = ACTIONS(2935), + [anon_sym__Alignas] = ACTIONS(2935), + [sym_primitive_type] = ACTIONS(2935), + [anon_sym_enum] = ACTIONS(2935), + [anon_sym_class] = ACTIONS(2935), + [anon_sym_struct] = ACTIONS(2935), + [anon_sym_union] = ACTIONS(2935), + [anon_sym_if] = ACTIONS(2935), + [anon_sym_switch] = ACTIONS(2935), + [anon_sym_case] = ACTIONS(2935), + [anon_sym_default] = ACTIONS(2935), + [anon_sym_while] = ACTIONS(2935), + [anon_sym_do] = ACTIONS(2935), + [anon_sym_for] = ACTIONS(2935), + [anon_sym_return] = ACTIONS(2935), + [anon_sym_break] = ACTIONS(2935), + [anon_sym_continue] = ACTIONS(2935), + [anon_sym_goto] = ACTIONS(2935), + [anon_sym___try] = ACTIONS(2935), + [anon_sym___leave] = ACTIONS(2935), + [anon_sym_not] = ACTIONS(2935), + [anon_sym_compl] = ACTIONS(2935), + [anon_sym_DASH_DASH] = ACTIONS(2937), + [anon_sym_PLUS_PLUS] = ACTIONS(2937), + [anon_sym_sizeof] = ACTIONS(2935), + [anon_sym___alignof__] = ACTIONS(2935), + [anon_sym___alignof] = ACTIONS(2935), + [anon_sym__alignof] = ACTIONS(2935), + [anon_sym_alignof] = ACTIONS(2935), + [anon_sym__Alignof] = ACTIONS(2935), + [anon_sym_offsetof] = ACTIONS(2935), + [anon_sym__Generic] = ACTIONS(2935), + [anon_sym_asm] = ACTIONS(2935), + [anon_sym___asm__] = ACTIONS(2935), + [anon_sym___asm] = ACTIONS(2935), + [sym_number_literal] = ACTIONS(2937), + [anon_sym_L_SQUOTE] = ACTIONS(2937), + [anon_sym_u_SQUOTE] = ACTIONS(2937), + [anon_sym_U_SQUOTE] = ACTIONS(2937), + [anon_sym_u8_SQUOTE] = ACTIONS(2937), + [anon_sym_SQUOTE] = ACTIONS(2937), + [anon_sym_L_DQUOTE] = ACTIONS(2937), + [anon_sym_u_DQUOTE] = ACTIONS(2937), + [anon_sym_U_DQUOTE] = ACTIONS(2937), + [anon_sym_u8_DQUOTE] = ACTIONS(2937), + [anon_sym_DQUOTE] = ACTIONS(2937), + [sym_true] = ACTIONS(2935), + [sym_false] = ACTIONS(2935), + [anon_sym_NULL] = ACTIONS(2935), + [anon_sym_nullptr] = ACTIONS(2935), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2915), - [anon_sym_decltype] = ACTIONS(2915), - [anon_sym_explicit] = ACTIONS(2915), - [anon_sym_typename] = ACTIONS(2915), - [anon_sym_template] = ACTIONS(2915), - [anon_sym_operator] = ACTIONS(2915), - [anon_sym_try] = ACTIONS(2915), - [anon_sym_delete] = ACTIONS(2915), - [anon_sym_throw] = ACTIONS(2915), - [anon_sym_namespace] = ACTIONS(2915), - [anon_sym_static_assert] = ACTIONS(2915), - [anon_sym_concept] = ACTIONS(2915), - [anon_sym_co_return] = ACTIONS(2915), - [anon_sym_co_yield] = ACTIONS(2915), - [anon_sym_R_DQUOTE] = ACTIONS(2917), - [anon_sym_LR_DQUOTE] = ACTIONS(2917), - [anon_sym_uR_DQUOTE] = ACTIONS(2917), - [anon_sym_UR_DQUOTE] = ACTIONS(2917), - [anon_sym_u8R_DQUOTE] = ACTIONS(2917), - [anon_sym_co_await] = ACTIONS(2915), - [anon_sym_new] = ACTIONS(2915), - [anon_sym_requires] = ACTIONS(2915), - [sym_this] = ACTIONS(2915), + [sym_auto] = ACTIONS(2935), + [anon_sym_decltype] = ACTIONS(2935), + [anon_sym_explicit] = ACTIONS(2935), + [anon_sym_typename] = ACTIONS(2935), + [anon_sym_template] = ACTIONS(2935), + [anon_sym_operator] = ACTIONS(2935), + [anon_sym_try] = ACTIONS(2935), + [anon_sym_delete] = ACTIONS(2935), + [anon_sym_throw] = ACTIONS(2935), + [anon_sym_namespace] = ACTIONS(2935), + [anon_sym_static_assert] = ACTIONS(2935), + [anon_sym_concept] = ACTIONS(2935), + [anon_sym_co_return] = ACTIONS(2935), + [anon_sym_co_yield] = ACTIONS(2935), + [anon_sym_R_DQUOTE] = ACTIONS(2937), + [anon_sym_LR_DQUOTE] = ACTIONS(2937), + [anon_sym_uR_DQUOTE] = ACTIONS(2937), + [anon_sym_UR_DQUOTE] = ACTIONS(2937), + [anon_sym_u8R_DQUOTE] = ACTIONS(2937), + [anon_sym_co_await] = ACTIONS(2935), + [anon_sym_new] = ACTIONS(2935), + [anon_sym_requires] = ACTIONS(2935), + [sym_this] = ACTIONS(2935), }, - [718] = { - [sym_identifier] = ACTIONS(2915), - [aux_sym_preproc_include_token1] = ACTIONS(2915), - [aux_sym_preproc_def_token1] = ACTIONS(2915), - [aux_sym_preproc_if_token1] = ACTIONS(2915), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2915), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2915), - [sym_preproc_directive] = ACTIONS(2915), - [anon_sym_LPAREN2] = ACTIONS(2917), - [anon_sym_BANG] = ACTIONS(2917), - [anon_sym_TILDE] = ACTIONS(2917), - [anon_sym_DASH] = ACTIONS(2915), - [anon_sym_PLUS] = ACTIONS(2915), - [anon_sym_STAR] = ACTIONS(2917), - [anon_sym_AMP_AMP] = ACTIONS(2917), - [anon_sym_AMP] = ACTIONS(2915), - [anon_sym_SEMI] = ACTIONS(2917), - [anon_sym___extension__] = ACTIONS(2915), - [anon_sym_typedef] = ACTIONS(2915), - [anon_sym_virtual] = ACTIONS(2915), - [anon_sym_extern] = ACTIONS(2915), - [anon_sym___attribute__] = ACTIONS(2915), - [anon_sym___attribute] = ACTIONS(2915), - [anon_sym_using] = ACTIONS(2915), - [anon_sym_COLON_COLON] = ACTIONS(2917), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2917), - [anon_sym___declspec] = ACTIONS(2915), - [anon_sym___based] = ACTIONS(2915), - [anon_sym___cdecl] = ACTIONS(2915), - [anon_sym___clrcall] = ACTIONS(2915), - [anon_sym___stdcall] = ACTIONS(2915), - [anon_sym___fastcall] = ACTIONS(2915), - [anon_sym___thiscall] = ACTIONS(2915), - [anon_sym___vectorcall] = ACTIONS(2915), - [anon_sym_LBRACE] = ACTIONS(2917), - [anon_sym_RBRACE] = ACTIONS(2917), - [anon_sym_signed] = ACTIONS(2915), - [anon_sym_unsigned] = ACTIONS(2915), - [anon_sym_long] = ACTIONS(2915), - [anon_sym_short] = ACTIONS(2915), - [anon_sym_LBRACK] = ACTIONS(2915), - [anon_sym_static] = ACTIONS(2915), - [anon_sym_register] = ACTIONS(2915), - [anon_sym_inline] = ACTIONS(2915), - [anon_sym___inline] = ACTIONS(2915), - [anon_sym___inline__] = ACTIONS(2915), - [anon_sym___forceinline] = ACTIONS(2915), - [anon_sym_thread_local] = ACTIONS(2915), - [anon_sym___thread] = ACTIONS(2915), - [anon_sym_const] = ACTIONS(2915), - [anon_sym_constexpr] = ACTIONS(2915), - [anon_sym_volatile] = ACTIONS(2915), - [anon_sym_restrict] = ACTIONS(2915), - [anon_sym___restrict__] = ACTIONS(2915), - [anon_sym__Atomic] = ACTIONS(2915), - [anon_sym__Noreturn] = ACTIONS(2915), - [anon_sym_noreturn] = ACTIONS(2915), - [anon_sym__Nonnull] = ACTIONS(2915), - [anon_sym_mutable] = ACTIONS(2915), - [anon_sym_constinit] = ACTIONS(2915), - [anon_sym_consteval] = ACTIONS(2915), - [anon_sym_alignas] = ACTIONS(2915), - [anon_sym__Alignas] = ACTIONS(2915), - [sym_primitive_type] = ACTIONS(2915), - [anon_sym_enum] = ACTIONS(2915), - [anon_sym_class] = ACTIONS(2915), - [anon_sym_struct] = ACTIONS(2915), - [anon_sym_union] = ACTIONS(2915), - [anon_sym_if] = ACTIONS(2915), - [anon_sym_switch] = ACTIONS(2915), - [anon_sym_case] = ACTIONS(2915), - [anon_sym_default] = ACTIONS(2915), - [anon_sym_while] = ACTIONS(2915), - [anon_sym_do] = ACTIONS(2915), - [anon_sym_for] = ACTIONS(2915), - [anon_sym_return] = ACTIONS(2915), - [anon_sym_break] = ACTIONS(2915), - [anon_sym_continue] = ACTIONS(2915), - [anon_sym_goto] = ACTIONS(2915), - [anon_sym___try] = ACTIONS(2915), - [anon_sym___leave] = ACTIONS(2915), - [anon_sym_not] = ACTIONS(2915), - [anon_sym_compl] = ACTIONS(2915), - [anon_sym_DASH_DASH] = ACTIONS(2917), - [anon_sym_PLUS_PLUS] = ACTIONS(2917), - [anon_sym_sizeof] = ACTIONS(2915), - [anon_sym___alignof__] = ACTIONS(2915), - [anon_sym___alignof] = ACTIONS(2915), - [anon_sym__alignof] = ACTIONS(2915), - [anon_sym_alignof] = ACTIONS(2915), - [anon_sym__Alignof] = ACTIONS(2915), - [anon_sym_offsetof] = ACTIONS(2915), - [anon_sym__Generic] = ACTIONS(2915), - [anon_sym_asm] = ACTIONS(2915), - [anon_sym___asm__] = ACTIONS(2915), - [anon_sym___asm] = ACTIONS(2915), - [sym_number_literal] = ACTIONS(2917), - [anon_sym_L_SQUOTE] = ACTIONS(2917), - [anon_sym_u_SQUOTE] = ACTIONS(2917), - [anon_sym_U_SQUOTE] = ACTIONS(2917), - [anon_sym_u8_SQUOTE] = ACTIONS(2917), - [anon_sym_SQUOTE] = ACTIONS(2917), - [anon_sym_L_DQUOTE] = ACTIONS(2917), - [anon_sym_u_DQUOTE] = ACTIONS(2917), - [anon_sym_U_DQUOTE] = ACTIONS(2917), - [anon_sym_u8_DQUOTE] = ACTIONS(2917), - [anon_sym_DQUOTE] = ACTIONS(2917), - [sym_true] = ACTIONS(2915), - [sym_false] = ACTIONS(2915), - [anon_sym_NULL] = ACTIONS(2915), - [anon_sym_nullptr] = ACTIONS(2915), + [734] = { + [sym_identifier] = ACTIONS(2939), + [aux_sym_preproc_include_token1] = ACTIONS(2939), + [aux_sym_preproc_def_token1] = ACTIONS(2939), + [aux_sym_preproc_if_token1] = ACTIONS(2939), + [aux_sym_preproc_if_token2] = ACTIONS(2939), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2939), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2939), + [sym_preproc_directive] = ACTIONS(2939), + [anon_sym_LPAREN2] = ACTIONS(2941), + [anon_sym_BANG] = ACTIONS(2941), + [anon_sym_TILDE] = ACTIONS(2941), + [anon_sym_DASH] = ACTIONS(2939), + [anon_sym_PLUS] = ACTIONS(2939), + [anon_sym_STAR] = ACTIONS(2941), + [anon_sym_AMP_AMP] = ACTIONS(2941), + [anon_sym_AMP] = ACTIONS(2939), + [anon_sym_SEMI] = ACTIONS(2941), + [anon_sym___extension__] = ACTIONS(2939), + [anon_sym_typedef] = ACTIONS(2939), + [anon_sym_virtual] = ACTIONS(2939), + [anon_sym_extern] = ACTIONS(2939), + [anon_sym___attribute__] = ACTIONS(2939), + [anon_sym___attribute] = ACTIONS(2939), + [anon_sym_using] = ACTIONS(2939), + [anon_sym_COLON_COLON] = ACTIONS(2941), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2941), + [anon_sym___declspec] = ACTIONS(2939), + [anon_sym___based] = ACTIONS(2939), + [anon_sym___cdecl] = ACTIONS(2939), + [anon_sym___clrcall] = ACTIONS(2939), + [anon_sym___stdcall] = ACTIONS(2939), + [anon_sym___fastcall] = ACTIONS(2939), + [anon_sym___thiscall] = ACTIONS(2939), + [anon_sym___vectorcall] = ACTIONS(2939), + [anon_sym_LBRACE] = ACTIONS(2941), + [anon_sym_signed] = ACTIONS(2939), + [anon_sym_unsigned] = ACTIONS(2939), + [anon_sym_long] = ACTIONS(2939), + [anon_sym_short] = ACTIONS(2939), + [anon_sym_LBRACK] = ACTIONS(2939), + [anon_sym_static] = ACTIONS(2939), + [anon_sym_register] = ACTIONS(2939), + [anon_sym_inline] = ACTIONS(2939), + [anon_sym___inline] = ACTIONS(2939), + [anon_sym___inline__] = ACTIONS(2939), + [anon_sym___forceinline] = ACTIONS(2939), + [anon_sym_thread_local] = ACTIONS(2939), + [anon_sym___thread] = ACTIONS(2939), + [anon_sym_const] = ACTIONS(2939), + [anon_sym_constexpr] = ACTIONS(2939), + [anon_sym_volatile] = ACTIONS(2939), + [anon_sym_restrict] = ACTIONS(2939), + [anon_sym___restrict__] = ACTIONS(2939), + [anon_sym__Atomic] = ACTIONS(2939), + [anon_sym__Noreturn] = ACTIONS(2939), + [anon_sym_noreturn] = ACTIONS(2939), + [anon_sym__Nonnull] = ACTIONS(2939), + [anon_sym_mutable] = ACTIONS(2939), + [anon_sym_constinit] = ACTIONS(2939), + [anon_sym_consteval] = ACTIONS(2939), + [anon_sym_alignas] = ACTIONS(2939), + [anon_sym__Alignas] = ACTIONS(2939), + [sym_primitive_type] = ACTIONS(2939), + [anon_sym_enum] = ACTIONS(2939), + [anon_sym_class] = ACTIONS(2939), + [anon_sym_struct] = ACTIONS(2939), + [anon_sym_union] = ACTIONS(2939), + [anon_sym_if] = ACTIONS(2939), + [anon_sym_switch] = ACTIONS(2939), + [anon_sym_case] = ACTIONS(2939), + [anon_sym_default] = ACTIONS(2939), + [anon_sym_while] = ACTIONS(2939), + [anon_sym_do] = ACTIONS(2939), + [anon_sym_for] = ACTIONS(2939), + [anon_sym_return] = ACTIONS(2939), + [anon_sym_break] = ACTIONS(2939), + [anon_sym_continue] = ACTIONS(2939), + [anon_sym_goto] = ACTIONS(2939), + [anon_sym___try] = ACTIONS(2939), + [anon_sym___leave] = ACTIONS(2939), + [anon_sym_not] = ACTIONS(2939), + [anon_sym_compl] = ACTIONS(2939), + [anon_sym_DASH_DASH] = ACTIONS(2941), + [anon_sym_PLUS_PLUS] = ACTIONS(2941), + [anon_sym_sizeof] = ACTIONS(2939), + [anon_sym___alignof__] = ACTIONS(2939), + [anon_sym___alignof] = ACTIONS(2939), + [anon_sym__alignof] = ACTIONS(2939), + [anon_sym_alignof] = ACTIONS(2939), + [anon_sym__Alignof] = ACTIONS(2939), + [anon_sym_offsetof] = ACTIONS(2939), + [anon_sym__Generic] = ACTIONS(2939), + [anon_sym_asm] = ACTIONS(2939), + [anon_sym___asm__] = ACTIONS(2939), + [anon_sym___asm] = ACTIONS(2939), + [sym_number_literal] = ACTIONS(2941), + [anon_sym_L_SQUOTE] = ACTIONS(2941), + [anon_sym_u_SQUOTE] = ACTIONS(2941), + [anon_sym_U_SQUOTE] = ACTIONS(2941), + [anon_sym_u8_SQUOTE] = ACTIONS(2941), + [anon_sym_SQUOTE] = ACTIONS(2941), + [anon_sym_L_DQUOTE] = ACTIONS(2941), + [anon_sym_u_DQUOTE] = ACTIONS(2941), + [anon_sym_U_DQUOTE] = ACTIONS(2941), + [anon_sym_u8_DQUOTE] = ACTIONS(2941), + [anon_sym_DQUOTE] = ACTIONS(2941), + [sym_true] = ACTIONS(2939), + [sym_false] = ACTIONS(2939), + [anon_sym_NULL] = ACTIONS(2939), + [anon_sym_nullptr] = ACTIONS(2939), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2915), - [anon_sym_decltype] = ACTIONS(2915), - [anon_sym_explicit] = ACTIONS(2915), - [anon_sym_typename] = ACTIONS(2915), - [anon_sym_template] = ACTIONS(2915), - [anon_sym_operator] = ACTIONS(2915), - [anon_sym_try] = ACTIONS(2915), - [anon_sym_delete] = ACTIONS(2915), - [anon_sym_throw] = ACTIONS(2915), - [anon_sym_namespace] = ACTIONS(2915), - [anon_sym_static_assert] = ACTIONS(2915), - [anon_sym_concept] = ACTIONS(2915), - [anon_sym_co_return] = ACTIONS(2915), - [anon_sym_co_yield] = ACTIONS(2915), - [anon_sym_R_DQUOTE] = ACTIONS(2917), - [anon_sym_LR_DQUOTE] = ACTIONS(2917), - [anon_sym_uR_DQUOTE] = ACTIONS(2917), - [anon_sym_UR_DQUOTE] = ACTIONS(2917), - [anon_sym_u8R_DQUOTE] = ACTIONS(2917), - [anon_sym_co_await] = ACTIONS(2915), - [anon_sym_new] = ACTIONS(2915), - [anon_sym_requires] = ACTIONS(2915), - [sym_this] = ACTIONS(2915), + [sym_auto] = ACTIONS(2939), + [anon_sym_decltype] = ACTIONS(2939), + [anon_sym_explicit] = ACTIONS(2939), + [anon_sym_typename] = ACTIONS(2939), + [anon_sym_template] = ACTIONS(2939), + [anon_sym_operator] = ACTIONS(2939), + [anon_sym_try] = ACTIONS(2939), + [anon_sym_delete] = ACTIONS(2939), + [anon_sym_throw] = ACTIONS(2939), + [anon_sym_namespace] = ACTIONS(2939), + [anon_sym_static_assert] = ACTIONS(2939), + [anon_sym_concept] = ACTIONS(2939), + [anon_sym_co_return] = ACTIONS(2939), + [anon_sym_co_yield] = ACTIONS(2939), + [anon_sym_R_DQUOTE] = ACTIONS(2941), + [anon_sym_LR_DQUOTE] = ACTIONS(2941), + [anon_sym_uR_DQUOTE] = ACTIONS(2941), + [anon_sym_UR_DQUOTE] = ACTIONS(2941), + [anon_sym_u8R_DQUOTE] = ACTIONS(2941), + [anon_sym_co_await] = ACTIONS(2939), + [anon_sym_new] = ACTIONS(2939), + [anon_sym_requires] = ACTIONS(2939), + [sym_this] = ACTIONS(2939), + }, + [735] = { + [sym_identifier] = ACTIONS(2959), + [aux_sym_preproc_include_token1] = ACTIONS(2959), + [aux_sym_preproc_def_token1] = ACTIONS(2959), + [aux_sym_preproc_if_token1] = ACTIONS(2959), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2959), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2959), + [sym_preproc_directive] = ACTIONS(2959), + [anon_sym_LPAREN2] = ACTIONS(2961), + [anon_sym_BANG] = ACTIONS(2961), + [anon_sym_TILDE] = ACTIONS(2961), + [anon_sym_DASH] = ACTIONS(2959), + [anon_sym_PLUS] = ACTIONS(2959), + [anon_sym_STAR] = ACTIONS(2961), + [anon_sym_AMP_AMP] = ACTIONS(2961), + [anon_sym_AMP] = ACTIONS(2959), + [anon_sym_SEMI] = ACTIONS(2961), + [anon_sym___extension__] = ACTIONS(2959), + [anon_sym_typedef] = ACTIONS(2959), + [anon_sym_virtual] = ACTIONS(2959), + [anon_sym_extern] = ACTIONS(2959), + [anon_sym___attribute__] = ACTIONS(2959), + [anon_sym___attribute] = ACTIONS(2959), + [anon_sym_using] = ACTIONS(2959), + [anon_sym_COLON_COLON] = ACTIONS(2961), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2961), + [anon_sym___declspec] = ACTIONS(2959), + [anon_sym___based] = ACTIONS(2959), + [anon_sym___cdecl] = ACTIONS(2959), + [anon_sym___clrcall] = ACTIONS(2959), + [anon_sym___stdcall] = ACTIONS(2959), + [anon_sym___fastcall] = ACTIONS(2959), + [anon_sym___thiscall] = ACTIONS(2959), + [anon_sym___vectorcall] = ACTIONS(2959), + [anon_sym_LBRACE] = ACTIONS(2961), + [anon_sym_RBRACE] = ACTIONS(2961), + [anon_sym_signed] = ACTIONS(2959), + [anon_sym_unsigned] = ACTIONS(2959), + [anon_sym_long] = ACTIONS(2959), + [anon_sym_short] = ACTIONS(2959), + [anon_sym_LBRACK] = ACTIONS(2959), + [anon_sym_static] = ACTIONS(2959), + [anon_sym_register] = ACTIONS(2959), + [anon_sym_inline] = ACTIONS(2959), + [anon_sym___inline] = ACTIONS(2959), + [anon_sym___inline__] = ACTIONS(2959), + [anon_sym___forceinline] = ACTIONS(2959), + [anon_sym_thread_local] = ACTIONS(2959), + [anon_sym___thread] = ACTIONS(2959), + [anon_sym_const] = ACTIONS(2959), + [anon_sym_constexpr] = ACTIONS(2959), + [anon_sym_volatile] = ACTIONS(2959), + [anon_sym_restrict] = ACTIONS(2959), + [anon_sym___restrict__] = ACTIONS(2959), + [anon_sym__Atomic] = ACTIONS(2959), + [anon_sym__Noreturn] = ACTIONS(2959), + [anon_sym_noreturn] = ACTIONS(2959), + [anon_sym__Nonnull] = ACTIONS(2959), + [anon_sym_mutable] = ACTIONS(2959), + [anon_sym_constinit] = ACTIONS(2959), + [anon_sym_consteval] = ACTIONS(2959), + [anon_sym_alignas] = ACTIONS(2959), + [anon_sym__Alignas] = ACTIONS(2959), + [sym_primitive_type] = ACTIONS(2959), + [anon_sym_enum] = ACTIONS(2959), + [anon_sym_class] = ACTIONS(2959), + [anon_sym_struct] = ACTIONS(2959), + [anon_sym_union] = ACTIONS(2959), + [anon_sym_if] = ACTIONS(2959), + [anon_sym_switch] = ACTIONS(2959), + [anon_sym_case] = ACTIONS(2959), + [anon_sym_default] = ACTIONS(2959), + [anon_sym_while] = ACTIONS(2959), + [anon_sym_do] = ACTIONS(2959), + [anon_sym_for] = ACTIONS(2959), + [anon_sym_return] = ACTIONS(2959), + [anon_sym_break] = ACTIONS(2959), + [anon_sym_continue] = ACTIONS(2959), + [anon_sym_goto] = ACTIONS(2959), + [anon_sym___try] = ACTIONS(2959), + [anon_sym___leave] = ACTIONS(2959), + [anon_sym_not] = ACTIONS(2959), + [anon_sym_compl] = ACTIONS(2959), + [anon_sym_DASH_DASH] = ACTIONS(2961), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_sizeof] = ACTIONS(2959), + [anon_sym___alignof__] = ACTIONS(2959), + [anon_sym___alignof] = ACTIONS(2959), + [anon_sym__alignof] = ACTIONS(2959), + [anon_sym_alignof] = ACTIONS(2959), + [anon_sym__Alignof] = ACTIONS(2959), + [anon_sym_offsetof] = ACTIONS(2959), + [anon_sym__Generic] = ACTIONS(2959), + [anon_sym_asm] = ACTIONS(2959), + [anon_sym___asm__] = ACTIONS(2959), + [anon_sym___asm] = ACTIONS(2959), + [sym_number_literal] = ACTIONS(2961), + [anon_sym_L_SQUOTE] = ACTIONS(2961), + [anon_sym_u_SQUOTE] = ACTIONS(2961), + [anon_sym_U_SQUOTE] = ACTIONS(2961), + [anon_sym_u8_SQUOTE] = ACTIONS(2961), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_L_DQUOTE] = ACTIONS(2961), + [anon_sym_u_DQUOTE] = ACTIONS(2961), + [anon_sym_U_DQUOTE] = ACTIONS(2961), + [anon_sym_u8_DQUOTE] = ACTIONS(2961), + [anon_sym_DQUOTE] = ACTIONS(2961), + [sym_true] = ACTIONS(2959), + [sym_false] = ACTIONS(2959), + [anon_sym_NULL] = ACTIONS(2959), + [anon_sym_nullptr] = ACTIONS(2959), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2959), + [anon_sym_decltype] = ACTIONS(2959), + [anon_sym_explicit] = ACTIONS(2959), + [anon_sym_typename] = ACTIONS(2959), + [anon_sym_template] = ACTIONS(2959), + [anon_sym_operator] = ACTIONS(2959), + [anon_sym_try] = ACTIONS(2959), + [anon_sym_delete] = ACTIONS(2959), + [anon_sym_throw] = ACTIONS(2959), + [anon_sym_namespace] = ACTIONS(2959), + [anon_sym_static_assert] = ACTIONS(2959), + [anon_sym_concept] = ACTIONS(2959), + [anon_sym_co_return] = ACTIONS(2959), + [anon_sym_co_yield] = ACTIONS(2959), + [anon_sym_R_DQUOTE] = ACTIONS(2961), + [anon_sym_LR_DQUOTE] = ACTIONS(2961), + [anon_sym_uR_DQUOTE] = ACTIONS(2961), + [anon_sym_UR_DQUOTE] = ACTIONS(2961), + [anon_sym_u8R_DQUOTE] = ACTIONS(2961), + [anon_sym_co_await] = ACTIONS(2959), + [anon_sym_new] = ACTIONS(2959), + [anon_sym_requires] = ACTIONS(2959), + [sym_this] = ACTIONS(2959), + }, + [736] = { + [sym_identifier] = ACTIONS(2943), + [aux_sym_preproc_include_token1] = ACTIONS(2943), + [aux_sym_preproc_def_token1] = ACTIONS(2943), + [aux_sym_preproc_if_token1] = ACTIONS(2943), + [aux_sym_preproc_if_token2] = ACTIONS(2943), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2943), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2943), + [sym_preproc_directive] = ACTIONS(2943), + [anon_sym_LPAREN2] = ACTIONS(2945), + [anon_sym_BANG] = ACTIONS(2945), + [anon_sym_TILDE] = ACTIONS(2945), + [anon_sym_DASH] = ACTIONS(2943), + [anon_sym_PLUS] = ACTIONS(2943), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_AMP_AMP] = ACTIONS(2945), + [anon_sym_AMP] = ACTIONS(2943), + [anon_sym_SEMI] = ACTIONS(2945), + [anon_sym___extension__] = ACTIONS(2943), + [anon_sym_typedef] = ACTIONS(2943), + [anon_sym_virtual] = ACTIONS(2943), + [anon_sym_extern] = ACTIONS(2943), + [anon_sym___attribute__] = ACTIONS(2943), + [anon_sym___attribute] = ACTIONS(2943), + [anon_sym_using] = ACTIONS(2943), + [anon_sym_COLON_COLON] = ACTIONS(2945), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2945), + [anon_sym___declspec] = ACTIONS(2943), + [anon_sym___based] = ACTIONS(2943), + [anon_sym___cdecl] = ACTIONS(2943), + [anon_sym___clrcall] = ACTIONS(2943), + [anon_sym___stdcall] = ACTIONS(2943), + [anon_sym___fastcall] = ACTIONS(2943), + [anon_sym___thiscall] = ACTIONS(2943), + [anon_sym___vectorcall] = ACTIONS(2943), + [anon_sym_LBRACE] = ACTIONS(2945), + [anon_sym_signed] = ACTIONS(2943), + [anon_sym_unsigned] = ACTIONS(2943), + [anon_sym_long] = ACTIONS(2943), + [anon_sym_short] = ACTIONS(2943), + [anon_sym_LBRACK] = ACTIONS(2943), + [anon_sym_static] = ACTIONS(2943), + [anon_sym_register] = ACTIONS(2943), + [anon_sym_inline] = ACTIONS(2943), + [anon_sym___inline] = ACTIONS(2943), + [anon_sym___inline__] = ACTIONS(2943), + [anon_sym___forceinline] = ACTIONS(2943), + [anon_sym_thread_local] = ACTIONS(2943), + [anon_sym___thread] = ACTIONS(2943), + [anon_sym_const] = ACTIONS(2943), + [anon_sym_constexpr] = ACTIONS(2943), + [anon_sym_volatile] = ACTIONS(2943), + [anon_sym_restrict] = ACTIONS(2943), + [anon_sym___restrict__] = ACTIONS(2943), + [anon_sym__Atomic] = ACTIONS(2943), + [anon_sym__Noreturn] = ACTIONS(2943), + [anon_sym_noreturn] = ACTIONS(2943), + [anon_sym__Nonnull] = ACTIONS(2943), + [anon_sym_mutable] = ACTIONS(2943), + [anon_sym_constinit] = ACTIONS(2943), + [anon_sym_consteval] = ACTIONS(2943), + [anon_sym_alignas] = ACTIONS(2943), + [anon_sym__Alignas] = ACTIONS(2943), + [sym_primitive_type] = ACTIONS(2943), + [anon_sym_enum] = ACTIONS(2943), + [anon_sym_class] = ACTIONS(2943), + [anon_sym_struct] = ACTIONS(2943), + [anon_sym_union] = ACTIONS(2943), + [anon_sym_if] = ACTIONS(2943), + [anon_sym_switch] = ACTIONS(2943), + [anon_sym_case] = ACTIONS(2943), + [anon_sym_default] = ACTIONS(2943), + [anon_sym_while] = ACTIONS(2943), + [anon_sym_do] = ACTIONS(2943), + [anon_sym_for] = ACTIONS(2943), + [anon_sym_return] = ACTIONS(2943), + [anon_sym_break] = ACTIONS(2943), + [anon_sym_continue] = ACTIONS(2943), + [anon_sym_goto] = ACTIONS(2943), + [anon_sym___try] = ACTIONS(2943), + [anon_sym___leave] = ACTIONS(2943), + [anon_sym_not] = ACTIONS(2943), + [anon_sym_compl] = ACTIONS(2943), + [anon_sym_DASH_DASH] = ACTIONS(2945), + [anon_sym_PLUS_PLUS] = ACTIONS(2945), + [anon_sym_sizeof] = ACTIONS(2943), + [anon_sym___alignof__] = ACTIONS(2943), + [anon_sym___alignof] = ACTIONS(2943), + [anon_sym__alignof] = ACTIONS(2943), + [anon_sym_alignof] = ACTIONS(2943), + [anon_sym__Alignof] = ACTIONS(2943), + [anon_sym_offsetof] = ACTIONS(2943), + [anon_sym__Generic] = ACTIONS(2943), + [anon_sym_asm] = ACTIONS(2943), + [anon_sym___asm__] = ACTIONS(2943), + [anon_sym___asm] = ACTIONS(2943), + [sym_number_literal] = ACTIONS(2945), + [anon_sym_L_SQUOTE] = ACTIONS(2945), + [anon_sym_u_SQUOTE] = ACTIONS(2945), + [anon_sym_U_SQUOTE] = ACTIONS(2945), + [anon_sym_u8_SQUOTE] = ACTIONS(2945), + [anon_sym_SQUOTE] = ACTIONS(2945), + [anon_sym_L_DQUOTE] = ACTIONS(2945), + [anon_sym_u_DQUOTE] = ACTIONS(2945), + [anon_sym_U_DQUOTE] = ACTIONS(2945), + [anon_sym_u8_DQUOTE] = ACTIONS(2945), + [anon_sym_DQUOTE] = ACTIONS(2945), + [sym_true] = ACTIONS(2943), + [sym_false] = ACTIONS(2943), + [anon_sym_NULL] = ACTIONS(2943), + [anon_sym_nullptr] = ACTIONS(2943), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2943), + [anon_sym_decltype] = ACTIONS(2943), + [anon_sym_explicit] = ACTIONS(2943), + [anon_sym_typename] = ACTIONS(2943), + [anon_sym_template] = ACTIONS(2943), + [anon_sym_operator] = ACTIONS(2943), + [anon_sym_try] = ACTIONS(2943), + [anon_sym_delete] = ACTIONS(2943), + [anon_sym_throw] = ACTIONS(2943), + [anon_sym_namespace] = ACTIONS(2943), + [anon_sym_static_assert] = ACTIONS(2943), + [anon_sym_concept] = ACTIONS(2943), + [anon_sym_co_return] = ACTIONS(2943), + [anon_sym_co_yield] = ACTIONS(2943), + [anon_sym_R_DQUOTE] = ACTIONS(2945), + [anon_sym_LR_DQUOTE] = ACTIONS(2945), + [anon_sym_uR_DQUOTE] = ACTIONS(2945), + [anon_sym_UR_DQUOTE] = ACTIONS(2945), + [anon_sym_u8R_DQUOTE] = ACTIONS(2945), + [anon_sym_co_await] = ACTIONS(2943), + [anon_sym_new] = ACTIONS(2943), + [anon_sym_requires] = ACTIONS(2943), + [sym_this] = ACTIONS(2943), }, - [719] = { - [sym_identifier] = ACTIONS(2919), - [aux_sym_preproc_include_token1] = ACTIONS(2919), - [aux_sym_preproc_def_token1] = ACTIONS(2919), - [aux_sym_preproc_if_token1] = ACTIONS(2919), - [aux_sym_preproc_if_token2] = ACTIONS(2919), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2919), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2919), - [sym_preproc_directive] = ACTIONS(2919), - [anon_sym_LPAREN2] = ACTIONS(2921), - [anon_sym_BANG] = ACTIONS(2921), - [anon_sym_TILDE] = ACTIONS(2921), - [anon_sym_DASH] = ACTIONS(2919), - [anon_sym_PLUS] = ACTIONS(2919), - [anon_sym_STAR] = ACTIONS(2921), - [anon_sym_AMP_AMP] = ACTIONS(2921), - [anon_sym_AMP] = ACTIONS(2919), - [anon_sym_SEMI] = ACTIONS(2921), - [anon_sym___extension__] = ACTIONS(2919), - [anon_sym_typedef] = ACTIONS(2919), - [anon_sym_virtual] = ACTIONS(2919), - [anon_sym_extern] = ACTIONS(2919), - [anon_sym___attribute__] = ACTIONS(2919), - [anon_sym___attribute] = ACTIONS(2919), - [anon_sym_using] = ACTIONS(2919), - [anon_sym_COLON_COLON] = ACTIONS(2921), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2921), - [anon_sym___declspec] = ACTIONS(2919), - [anon_sym___based] = ACTIONS(2919), - [anon_sym___cdecl] = ACTIONS(2919), - [anon_sym___clrcall] = ACTIONS(2919), - [anon_sym___stdcall] = ACTIONS(2919), - [anon_sym___fastcall] = ACTIONS(2919), - [anon_sym___thiscall] = ACTIONS(2919), - [anon_sym___vectorcall] = ACTIONS(2919), - [anon_sym_LBRACE] = ACTIONS(2921), - [anon_sym_signed] = ACTIONS(2919), - [anon_sym_unsigned] = ACTIONS(2919), - [anon_sym_long] = ACTIONS(2919), - [anon_sym_short] = ACTIONS(2919), - [anon_sym_LBRACK] = ACTIONS(2919), - [anon_sym_static] = ACTIONS(2919), - [anon_sym_register] = ACTIONS(2919), - [anon_sym_inline] = ACTIONS(2919), - [anon_sym___inline] = ACTIONS(2919), - [anon_sym___inline__] = ACTIONS(2919), - [anon_sym___forceinline] = ACTIONS(2919), - [anon_sym_thread_local] = ACTIONS(2919), - [anon_sym___thread] = ACTIONS(2919), - [anon_sym_const] = ACTIONS(2919), - [anon_sym_constexpr] = ACTIONS(2919), - [anon_sym_volatile] = ACTIONS(2919), - [anon_sym_restrict] = ACTIONS(2919), - [anon_sym___restrict__] = ACTIONS(2919), - [anon_sym__Atomic] = ACTIONS(2919), - [anon_sym__Noreturn] = ACTIONS(2919), - [anon_sym_noreturn] = ACTIONS(2919), - [anon_sym__Nonnull] = ACTIONS(2919), - [anon_sym_mutable] = ACTIONS(2919), - [anon_sym_constinit] = ACTIONS(2919), - [anon_sym_consteval] = ACTIONS(2919), - [anon_sym_alignas] = ACTIONS(2919), - [anon_sym__Alignas] = ACTIONS(2919), - [sym_primitive_type] = ACTIONS(2919), - [anon_sym_enum] = ACTIONS(2919), - [anon_sym_class] = ACTIONS(2919), - [anon_sym_struct] = ACTIONS(2919), - [anon_sym_union] = ACTIONS(2919), - [anon_sym_if] = ACTIONS(2919), - [anon_sym_switch] = ACTIONS(2919), - [anon_sym_case] = ACTIONS(2919), - [anon_sym_default] = ACTIONS(2919), - [anon_sym_while] = ACTIONS(2919), - [anon_sym_do] = ACTIONS(2919), - [anon_sym_for] = ACTIONS(2919), - [anon_sym_return] = ACTIONS(2919), - [anon_sym_break] = ACTIONS(2919), - [anon_sym_continue] = ACTIONS(2919), - [anon_sym_goto] = ACTIONS(2919), - [anon_sym___try] = ACTIONS(2919), - [anon_sym___leave] = ACTIONS(2919), - [anon_sym_not] = ACTIONS(2919), - [anon_sym_compl] = ACTIONS(2919), - [anon_sym_DASH_DASH] = ACTIONS(2921), - [anon_sym_PLUS_PLUS] = ACTIONS(2921), - [anon_sym_sizeof] = ACTIONS(2919), - [anon_sym___alignof__] = ACTIONS(2919), - [anon_sym___alignof] = ACTIONS(2919), - [anon_sym__alignof] = ACTIONS(2919), - [anon_sym_alignof] = ACTIONS(2919), - [anon_sym__Alignof] = ACTIONS(2919), - [anon_sym_offsetof] = ACTIONS(2919), - [anon_sym__Generic] = ACTIONS(2919), - [anon_sym_asm] = ACTIONS(2919), - [anon_sym___asm__] = ACTIONS(2919), - [anon_sym___asm] = ACTIONS(2919), - [sym_number_literal] = ACTIONS(2921), - [anon_sym_L_SQUOTE] = ACTIONS(2921), - [anon_sym_u_SQUOTE] = ACTIONS(2921), - [anon_sym_U_SQUOTE] = ACTIONS(2921), - [anon_sym_u8_SQUOTE] = ACTIONS(2921), - [anon_sym_SQUOTE] = ACTIONS(2921), - [anon_sym_L_DQUOTE] = ACTIONS(2921), - [anon_sym_u_DQUOTE] = ACTIONS(2921), - [anon_sym_U_DQUOTE] = ACTIONS(2921), - [anon_sym_u8_DQUOTE] = ACTIONS(2921), - [anon_sym_DQUOTE] = ACTIONS(2921), - [sym_true] = ACTIONS(2919), - [sym_false] = ACTIONS(2919), - [anon_sym_NULL] = ACTIONS(2919), - [anon_sym_nullptr] = ACTIONS(2919), + [737] = { + [sym_identifier] = ACTIONS(2947), + [aux_sym_preproc_include_token1] = ACTIONS(2947), + [aux_sym_preproc_def_token1] = ACTIONS(2947), + [aux_sym_preproc_if_token1] = ACTIONS(2947), + [aux_sym_preproc_if_token2] = ACTIONS(2947), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2947), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2947), + [sym_preproc_directive] = ACTIONS(2947), + [anon_sym_LPAREN2] = ACTIONS(2949), + [anon_sym_BANG] = ACTIONS(2949), + [anon_sym_TILDE] = ACTIONS(2949), + [anon_sym_DASH] = ACTIONS(2947), + [anon_sym_PLUS] = ACTIONS(2947), + [anon_sym_STAR] = ACTIONS(2949), + [anon_sym_AMP_AMP] = ACTIONS(2949), + [anon_sym_AMP] = ACTIONS(2947), + [anon_sym_SEMI] = ACTIONS(2949), + [anon_sym___extension__] = ACTIONS(2947), + [anon_sym_typedef] = ACTIONS(2947), + [anon_sym_virtual] = ACTIONS(2947), + [anon_sym_extern] = ACTIONS(2947), + [anon_sym___attribute__] = ACTIONS(2947), + [anon_sym___attribute] = ACTIONS(2947), + [anon_sym_using] = ACTIONS(2947), + [anon_sym_COLON_COLON] = ACTIONS(2949), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2949), + [anon_sym___declspec] = ACTIONS(2947), + [anon_sym___based] = ACTIONS(2947), + [anon_sym___cdecl] = ACTIONS(2947), + [anon_sym___clrcall] = ACTIONS(2947), + [anon_sym___stdcall] = ACTIONS(2947), + [anon_sym___fastcall] = ACTIONS(2947), + [anon_sym___thiscall] = ACTIONS(2947), + [anon_sym___vectorcall] = ACTIONS(2947), + [anon_sym_LBRACE] = ACTIONS(2949), + [anon_sym_signed] = ACTIONS(2947), + [anon_sym_unsigned] = ACTIONS(2947), + [anon_sym_long] = ACTIONS(2947), + [anon_sym_short] = ACTIONS(2947), + [anon_sym_LBRACK] = ACTIONS(2947), + [anon_sym_static] = ACTIONS(2947), + [anon_sym_register] = ACTIONS(2947), + [anon_sym_inline] = ACTIONS(2947), + [anon_sym___inline] = ACTIONS(2947), + [anon_sym___inline__] = ACTIONS(2947), + [anon_sym___forceinline] = ACTIONS(2947), + [anon_sym_thread_local] = ACTIONS(2947), + [anon_sym___thread] = ACTIONS(2947), + [anon_sym_const] = ACTIONS(2947), + [anon_sym_constexpr] = ACTIONS(2947), + [anon_sym_volatile] = ACTIONS(2947), + [anon_sym_restrict] = ACTIONS(2947), + [anon_sym___restrict__] = ACTIONS(2947), + [anon_sym__Atomic] = ACTIONS(2947), + [anon_sym__Noreturn] = ACTIONS(2947), + [anon_sym_noreturn] = ACTIONS(2947), + [anon_sym__Nonnull] = ACTIONS(2947), + [anon_sym_mutable] = ACTIONS(2947), + [anon_sym_constinit] = ACTIONS(2947), + [anon_sym_consteval] = ACTIONS(2947), + [anon_sym_alignas] = ACTIONS(2947), + [anon_sym__Alignas] = ACTIONS(2947), + [sym_primitive_type] = ACTIONS(2947), + [anon_sym_enum] = ACTIONS(2947), + [anon_sym_class] = ACTIONS(2947), + [anon_sym_struct] = ACTIONS(2947), + [anon_sym_union] = ACTIONS(2947), + [anon_sym_if] = ACTIONS(2947), + [anon_sym_switch] = ACTIONS(2947), + [anon_sym_case] = ACTIONS(2947), + [anon_sym_default] = ACTIONS(2947), + [anon_sym_while] = ACTIONS(2947), + [anon_sym_do] = ACTIONS(2947), + [anon_sym_for] = ACTIONS(2947), + [anon_sym_return] = ACTIONS(2947), + [anon_sym_break] = ACTIONS(2947), + [anon_sym_continue] = ACTIONS(2947), + [anon_sym_goto] = ACTIONS(2947), + [anon_sym___try] = ACTIONS(2947), + [anon_sym___leave] = ACTIONS(2947), + [anon_sym_not] = ACTIONS(2947), + [anon_sym_compl] = ACTIONS(2947), + [anon_sym_DASH_DASH] = ACTIONS(2949), + [anon_sym_PLUS_PLUS] = ACTIONS(2949), + [anon_sym_sizeof] = ACTIONS(2947), + [anon_sym___alignof__] = ACTIONS(2947), + [anon_sym___alignof] = ACTIONS(2947), + [anon_sym__alignof] = ACTIONS(2947), + [anon_sym_alignof] = ACTIONS(2947), + [anon_sym__Alignof] = ACTIONS(2947), + [anon_sym_offsetof] = ACTIONS(2947), + [anon_sym__Generic] = ACTIONS(2947), + [anon_sym_asm] = ACTIONS(2947), + [anon_sym___asm__] = ACTIONS(2947), + [anon_sym___asm] = ACTIONS(2947), + [sym_number_literal] = ACTIONS(2949), + [anon_sym_L_SQUOTE] = ACTIONS(2949), + [anon_sym_u_SQUOTE] = ACTIONS(2949), + [anon_sym_U_SQUOTE] = ACTIONS(2949), + [anon_sym_u8_SQUOTE] = ACTIONS(2949), + [anon_sym_SQUOTE] = ACTIONS(2949), + [anon_sym_L_DQUOTE] = ACTIONS(2949), + [anon_sym_u_DQUOTE] = ACTIONS(2949), + [anon_sym_U_DQUOTE] = ACTIONS(2949), + [anon_sym_u8_DQUOTE] = ACTIONS(2949), + [anon_sym_DQUOTE] = ACTIONS(2949), + [sym_true] = ACTIONS(2947), + [sym_false] = ACTIONS(2947), + [anon_sym_NULL] = ACTIONS(2947), + [anon_sym_nullptr] = ACTIONS(2947), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2919), - [anon_sym_decltype] = ACTIONS(2919), - [anon_sym_explicit] = ACTIONS(2919), - [anon_sym_typename] = ACTIONS(2919), - [anon_sym_template] = ACTIONS(2919), - [anon_sym_operator] = ACTIONS(2919), - [anon_sym_try] = ACTIONS(2919), - [anon_sym_delete] = ACTIONS(2919), - [anon_sym_throw] = ACTIONS(2919), - [anon_sym_namespace] = ACTIONS(2919), - [anon_sym_static_assert] = ACTIONS(2919), - [anon_sym_concept] = ACTIONS(2919), - [anon_sym_co_return] = ACTIONS(2919), - [anon_sym_co_yield] = ACTIONS(2919), - [anon_sym_R_DQUOTE] = ACTIONS(2921), - [anon_sym_LR_DQUOTE] = ACTIONS(2921), - [anon_sym_uR_DQUOTE] = ACTIONS(2921), - [anon_sym_UR_DQUOTE] = ACTIONS(2921), - [anon_sym_u8R_DQUOTE] = ACTIONS(2921), - [anon_sym_co_await] = ACTIONS(2919), - [anon_sym_new] = ACTIONS(2919), - [anon_sym_requires] = ACTIONS(2919), - [sym_this] = ACTIONS(2919), + [sym_auto] = ACTIONS(2947), + [anon_sym_decltype] = ACTIONS(2947), + [anon_sym_explicit] = ACTIONS(2947), + [anon_sym_typename] = ACTIONS(2947), + [anon_sym_template] = ACTIONS(2947), + [anon_sym_operator] = ACTIONS(2947), + [anon_sym_try] = ACTIONS(2947), + [anon_sym_delete] = ACTIONS(2947), + [anon_sym_throw] = ACTIONS(2947), + [anon_sym_namespace] = ACTIONS(2947), + [anon_sym_static_assert] = ACTIONS(2947), + [anon_sym_concept] = ACTIONS(2947), + [anon_sym_co_return] = ACTIONS(2947), + [anon_sym_co_yield] = ACTIONS(2947), + [anon_sym_R_DQUOTE] = ACTIONS(2949), + [anon_sym_LR_DQUOTE] = ACTIONS(2949), + [anon_sym_uR_DQUOTE] = ACTIONS(2949), + [anon_sym_UR_DQUOTE] = ACTIONS(2949), + [anon_sym_u8R_DQUOTE] = ACTIONS(2949), + [anon_sym_co_await] = ACTIONS(2947), + [anon_sym_new] = ACTIONS(2947), + [anon_sym_requires] = ACTIONS(2947), + [sym_this] = ACTIONS(2947), }, - [720] = { - [sym_identifier] = ACTIONS(2923), - [aux_sym_preproc_include_token1] = ACTIONS(2923), - [aux_sym_preproc_def_token1] = ACTIONS(2923), - [aux_sym_preproc_if_token1] = ACTIONS(2923), - [aux_sym_preproc_if_token2] = ACTIONS(2923), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2923), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2923), - [sym_preproc_directive] = ACTIONS(2923), - [anon_sym_LPAREN2] = ACTIONS(2925), - [anon_sym_BANG] = ACTIONS(2925), - [anon_sym_TILDE] = ACTIONS(2925), - [anon_sym_DASH] = ACTIONS(2923), - [anon_sym_PLUS] = ACTIONS(2923), - [anon_sym_STAR] = ACTIONS(2925), - [anon_sym_AMP_AMP] = ACTIONS(2925), - [anon_sym_AMP] = ACTIONS(2923), - [anon_sym_SEMI] = ACTIONS(2925), - [anon_sym___extension__] = ACTIONS(2923), - [anon_sym_typedef] = ACTIONS(2923), - [anon_sym_virtual] = ACTIONS(2923), - [anon_sym_extern] = ACTIONS(2923), - [anon_sym___attribute__] = ACTIONS(2923), - [anon_sym___attribute] = ACTIONS(2923), - [anon_sym_using] = ACTIONS(2923), - [anon_sym_COLON_COLON] = ACTIONS(2925), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2925), - [anon_sym___declspec] = ACTIONS(2923), - [anon_sym___based] = ACTIONS(2923), - [anon_sym___cdecl] = ACTIONS(2923), - [anon_sym___clrcall] = ACTIONS(2923), - [anon_sym___stdcall] = ACTIONS(2923), - [anon_sym___fastcall] = ACTIONS(2923), - [anon_sym___thiscall] = ACTIONS(2923), - [anon_sym___vectorcall] = ACTIONS(2923), - [anon_sym_LBRACE] = ACTIONS(2925), - [anon_sym_signed] = ACTIONS(2923), - [anon_sym_unsigned] = ACTIONS(2923), - [anon_sym_long] = ACTIONS(2923), - [anon_sym_short] = ACTIONS(2923), - [anon_sym_LBRACK] = ACTIONS(2923), - [anon_sym_static] = ACTIONS(2923), - [anon_sym_register] = ACTIONS(2923), - [anon_sym_inline] = ACTIONS(2923), - [anon_sym___inline] = ACTIONS(2923), - [anon_sym___inline__] = ACTIONS(2923), - [anon_sym___forceinline] = ACTIONS(2923), - [anon_sym_thread_local] = ACTIONS(2923), - [anon_sym___thread] = ACTIONS(2923), - [anon_sym_const] = ACTIONS(2923), - [anon_sym_constexpr] = ACTIONS(2923), - [anon_sym_volatile] = ACTIONS(2923), - [anon_sym_restrict] = ACTIONS(2923), - [anon_sym___restrict__] = ACTIONS(2923), - [anon_sym__Atomic] = ACTIONS(2923), - [anon_sym__Noreturn] = ACTIONS(2923), - [anon_sym_noreturn] = ACTIONS(2923), - [anon_sym__Nonnull] = ACTIONS(2923), - [anon_sym_mutable] = ACTIONS(2923), - [anon_sym_constinit] = ACTIONS(2923), - [anon_sym_consteval] = ACTIONS(2923), - [anon_sym_alignas] = ACTIONS(2923), - [anon_sym__Alignas] = ACTIONS(2923), - [sym_primitive_type] = ACTIONS(2923), - [anon_sym_enum] = ACTIONS(2923), - [anon_sym_class] = ACTIONS(2923), - [anon_sym_struct] = ACTIONS(2923), - [anon_sym_union] = ACTIONS(2923), - [anon_sym_if] = ACTIONS(2923), - [anon_sym_switch] = ACTIONS(2923), - [anon_sym_case] = ACTIONS(2923), - [anon_sym_default] = ACTIONS(2923), - [anon_sym_while] = ACTIONS(2923), - [anon_sym_do] = ACTIONS(2923), - [anon_sym_for] = ACTIONS(2923), - [anon_sym_return] = ACTIONS(2923), - [anon_sym_break] = ACTIONS(2923), - [anon_sym_continue] = ACTIONS(2923), - [anon_sym_goto] = ACTIONS(2923), - [anon_sym___try] = ACTIONS(2923), - [anon_sym___leave] = ACTIONS(2923), - [anon_sym_not] = ACTIONS(2923), - [anon_sym_compl] = ACTIONS(2923), - [anon_sym_DASH_DASH] = ACTIONS(2925), - [anon_sym_PLUS_PLUS] = ACTIONS(2925), - [anon_sym_sizeof] = ACTIONS(2923), - [anon_sym___alignof__] = ACTIONS(2923), - [anon_sym___alignof] = ACTIONS(2923), - [anon_sym__alignof] = ACTIONS(2923), - [anon_sym_alignof] = ACTIONS(2923), - [anon_sym__Alignof] = ACTIONS(2923), - [anon_sym_offsetof] = ACTIONS(2923), - [anon_sym__Generic] = ACTIONS(2923), - [anon_sym_asm] = ACTIONS(2923), - [anon_sym___asm__] = ACTIONS(2923), - [anon_sym___asm] = ACTIONS(2923), - [sym_number_literal] = ACTIONS(2925), - [anon_sym_L_SQUOTE] = ACTIONS(2925), - [anon_sym_u_SQUOTE] = ACTIONS(2925), - [anon_sym_U_SQUOTE] = ACTIONS(2925), - [anon_sym_u8_SQUOTE] = ACTIONS(2925), - [anon_sym_SQUOTE] = ACTIONS(2925), - [anon_sym_L_DQUOTE] = ACTIONS(2925), - [anon_sym_u_DQUOTE] = ACTIONS(2925), - [anon_sym_U_DQUOTE] = ACTIONS(2925), - [anon_sym_u8_DQUOTE] = ACTIONS(2925), - [anon_sym_DQUOTE] = ACTIONS(2925), - [sym_true] = ACTIONS(2923), - [sym_false] = ACTIONS(2923), - [anon_sym_NULL] = ACTIONS(2923), - [anon_sym_nullptr] = ACTIONS(2923), + [738] = { + [sym_identifier] = ACTIONS(2951), + [aux_sym_preproc_include_token1] = ACTIONS(2951), + [aux_sym_preproc_def_token1] = ACTIONS(2951), + [aux_sym_preproc_if_token1] = ACTIONS(2951), + [aux_sym_preproc_if_token2] = ACTIONS(2951), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2951), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2951), + [sym_preproc_directive] = ACTIONS(2951), + [anon_sym_LPAREN2] = ACTIONS(2953), + [anon_sym_BANG] = ACTIONS(2953), + [anon_sym_TILDE] = ACTIONS(2953), + [anon_sym_DASH] = ACTIONS(2951), + [anon_sym_PLUS] = ACTIONS(2951), + [anon_sym_STAR] = ACTIONS(2953), + [anon_sym_AMP_AMP] = ACTIONS(2953), + [anon_sym_AMP] = ACTIONS(2951), + [anon_sym_SEMI] = ACTIONS(2953), + [anon_sym___extension__] = ACTIONS(2951), + [anon_sym_typedef] = ACTIONS(2951), + [anon_sym_virtual] = ACTIONS(2951), + [anon_sym_extern] = ACTIONS(2951), + [anon_sym___attribute__] = ACTIONS(2951), + [anon_sym___attribute] = ACTIONS(2951), + [anon_sym_using] = ACTIONS(2951), + [anon_sym_COLON_COLON] = ACTIONS(2953), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2953), + [anon_sym___declspec] = ACTIONS(2951), + [anon_sym___based] = ACTIONS(2951), + [anon_sym___cdecl] = ACTIONS(2951), + [anon_sym___clrcall] = ACTIONS(2951), + [anon_sym___stdcall] = ACTIONS(2951), + [anon_sym___fastcall] = ACTIONS(2951), + [anon_sym___thiscall] = ACTIONS(2951), + [anon_sym___vectorcall] = ACTIONS(2951), + [anon_sym_LBRACE] = ACTIONS(2953), + [anon_sym_signed] = ACTIONS(2951), + [anon_sym_unsigned] = ACTIONS(2951), + [anon_sym_long] = ACTIONS(2951), + [anon_sym_short] = ACTIONS(2951), + [anon_sym_LBRACK] = ACTIONS(2951), + [anon_sym_static] = ACTIONS(2951), + [anon_sym_register] = ACTIONS(2951), + [anon_sym_inline] = ACTIONS(2951), + [anon_sym___inline] = ACTIONS(2951), + [anon_sym___inline__] = ACTIONS(2951), + [anon_sym___forceinline] = ACTIONS(2951), + [anon_sym_thread_local] = ACTIONS(2951), + [anon_sym___thread] = ACTIONS(2951), + [anon_sym_const] = ACTIONS(2951), + [anon_sym_constexpr] = ACTIONS(2951), + [anon_sym_volatile] = ACTIONS(2951), + [anon_sym_restrict] = ACTIONS(2951), + [anon_sym___restrict__] = ACTIONS(2951), + [anon_sym__Atomic] = ACTIONS(2951), + [anon_sym__Noreturn] = ACTIONS(2951), + [anon_sym_noreturn] = ACTIONS(2951), + [anon_sym__Nonnull] = ACTIONS(2951), + [anon_sym_mutable] = ACTIONS(2951), + [anon_sym_constinit] = ACTIONS(2951), + [anon_sym_consteval] = ACTIONS(2951), + [anon_sym_alignas] = ACTIONS(2951), + [anon_sym__Alignas] = ACTIONS(2951), + [sym_primitive_type] = ACTIONS(2951), + [anon_sym_enum] = ACTIONS(2951), + [anon_sym_class] = ACTIONS(2951), + [anon_sym_struct] = ACTIONS(2951), + [anon_sym_union] = ACTIONS(2951), + [anon_sym_if] = ACTIONS(2951), + [anon_sym_switch] = ACTIONS(2951), + [anon_sym_case] = ACTIONS(2951), + [anon_sym_default] = ACTIONS(2951), + [anon_sym_while] = ACTIONS(2951), + [anon_sym_do] = ACTIONS(2951), + [anon_sym_for] = ACTIONS(2951), + [anon_sym_return] = ACTIONS(2951), + [anon_sym_break] = ACTIONS(2951), + [anon_sym_continue] = ACTIONS(2951), + [anon_sym_goto] = ACTIONS(2951), + [anon_sym___try] = ACTIONS(2951), + [anon_sym___leave] = ACTIONS(2951), + [anon_sym_not] = ACTIONS(2951), + [anon_sym_compl] = ACTIONS(2951), + [anon_sym_DASH_DASH] = ACTIONS(2953), + [anon_sym_PLUS_PLUS] = ACTIONS(2953), + [anon_sym_sizeof] = ACTIONS(2951), + [anon_sym___alignof__] = ACTIONS(2951), + [anon_sym___alignof] = ACTIONS(2951), + [anon_sym__alignof] = ACTIONS(2951), + [anon_sym_alignof] = ACTIONS(2951), + [anon_sym__Alignof] = ACTIONS(2951), + [anon_sym_offsetof] = ACTIONS(2951), + [anon_sym__Generic] = ACTIONS(2951), + [anon_sym_asm] = ACTIONS(2951), + [anon_sym___asm__] = ACTIONS(2951), + [anon_sym___asm] = ACTIONS(2951), + [sym_number_literal] = ACTIONS(2953), + [anon_sym_L_SQUOTE] = ACTIONS(2953), + [anon_sym_u_SQUOTE] = ACTIONS(2953), + [anon_sym_U_SQUOTE] = ACTIONS(2953), + [anon_sym_u8_SQUOTE] = ACTIONS(2953), + [anon_sym_SQUOTE] = ACTIONS(2953), + [anon_sym_L_DQUOTE] = ACTIONS(2953), + [anon_sym_u_DQUOTE] = ACTIONS(2953), + [anon_sym_U_DQUOTE] = ACTIONS(2953), + [anon_sym_u8_DQUOTE] = ACTIONS(2953), + [anon_sym_DQUOTE] = ACTIONS(2953), + [sym_true] = ACTIONS(2951), + [sym_false] = ACTIONS(2951), + [anon_sym_NULL] = ACTIONS(2951), + [anon_sym_nullptr] = ACTIONS(2951), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2923), - [anon_sym_decltype] = ACTIONS(2923), - [anon_sym_explicit] = ACTIONS(2923), - [anon_sym_typename] = ACTIONS(2923), - [anon_sym_template] = ACTIONS(2923), - [anon_sym_operator] = ACTIONS(2923), - [anon_sym_try] = ACTIONS(2923), - [anon_sym_delete] = ACTIONS(2923), - [anon_sym_throw] = ACTIONS(2923), - [anon_sym_namespace] = ACTIONS(2923), - [anon_sym_static_assert] = ACTIONS(2923), - [anon_sym_concept] = ACTIONS(2923), - [anon_sym_co_return] = ACTIONS(2923), - [anon_sym_co_yield] = ACTIONS(2923), - [anon_sym_R_DQUOTE] = ACTIONS(2925), - [anon_sym_LR_DQUOTE] = ACTIONS(2925), - [anon_sym_uR_DQUOTE] = ACTIONS(2925), - [anon_sym_UR_DQUOTE] = ACTIONS(2925), - [anon_sym_u8R_DQUOTE] = ACTIONS(2925), - [anon_sym_co_await] = ACTIONS(2923), - [anon_sym_new] = ACTIONS(2923), - [anon_sym_requires] = ACTIONS(2923), - [sym_this] = ACTIONS(2923), + [sym_auto] = ACTIONS(2951), + [anon_sym_decltype] = ACTIONS(2951), + [anon_sym_explicit] = ACTIONS(2951), + [anon_sym_typename] = ACTIONS(2951), + [anon_sym_template] = ACTIONS(2951), + [anon_sym_operator] = ACTIONS(2951), + [anon_sym_try] = ACTIONS(2951), + [anon_sym_delete] = ACTIONS(2951), + [anon_sym_throw] = ACTIONS(2951), + [anon_sym_namespace] = ACTIONS(2951), + [anon_sym_static_assert] = ACTIONS(2951), + [anon_sym_concept] = ACTIONS(2951), + [anon_sym_co_return] = ACTIONS(2951), + [anon_sym_co_yield] = ACTIONS(2951), + [anon_sym_R_DQUOTE] = ACTIONS(2953), + [anon_sym_LR_DQUOTE] = ACTIONS(2953), + [anon_sym_uR_DQUOTE] = ACTIONS(2953), + [anon_sym_UR_DQUOTE] = ACTIONS(2953), + [anon_sym_u8R_DQUOTE] = ACTIONS(2953), + [anon_sym_co_await] = ACTIONS(2951), + [anon_sym_new] = ACTIONS(2951), + [anon_sym_requires] = ACTIONS(2951), + [sym_this] = ACTIONS(2951), }, - [721] = { - [sym_identifier] = ACTIONS(2927), - [aux_sym_preproc_include_token1] = ACTIONS(2927), - [aux_sym_preproc_def_token1] = ACTIONS(2927), - [aux_sym_preproc_if_token1] = ACTIONS(2927), - [aux_sym_preproc_if_token2] = ACTIONS(2927), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2927), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2927), - [sym_preproc_directive] = ACTIONS(2927), - [anon_sym_LPAREN2] = ACTIONS(2929), - [anon_sym_BANG] = ACTIONS(2929), - [anon_sym_TILDE] = ACTIONS(2929), - [anon_sym_DASH] = ACTIONS(2927), - [anon_sym_PLUS] = ACTIONS(2927), - [anon_sym_STAR] = ACTIONS(2929), - [anon_sym_AMP_AMP] = ACTIONS(2929), - [anon_sym_AMP] = ACTIONS(2927), - [anon_sym_SEMI] = ACTIONS(2929), - [anon_sym___extension__] = ACTIONS(2927), - [anon_sym_typedef] = ACTIONS(2927), - [anon_sym_virtual] = ACTIONS(2927), - [anon_sym_extern] = ACTIONS(2927), - [anon_sym___attribute__] = ACTIONS(2927), - [anon_sym___attribute] = ACTIONS(2927), - [anon_sym_using] = ACTIONS(2927), - [anon_sym_COLON_COLON] = ACTIONS(2929), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2929), - [anon_sym___declspec] = ACTIONS(2927), - [anon_sym___based] = ACTIONS(2927), - [anon_sym___cdecl] = ACTIONS(2927), - [anon_sym___clrcall] = ACTIONS(2927), - [anon_sym___stdcall] = ACTIONS(2927), - [anon_sym___fastcall] = ACTIONS(2927), - [anon_sym___thiscall] = ACTIONS(2927), - [anon_sym___vectorcall] = ACTIONS(2927), - [anon_sym_LBRACE] = ACTIONS(2929), - [anon_sym_signed] = ACTIONS(2927), - [anon_sym_unsigned] = ACTIONS(2927), - [anon_sym_long] = ACTIONS(2927), - [anon_sym_short] = ACTIONS(2927), - [anon_sym_LBRACK] = ACTIONS(2927), - [anon_sym_static] = ACTIONS(2927), - [anon_sym_register] = ACTIONS(2927), - [anon_sym_inline] = ACTIONS(2927), - [anon_sym___inline] = ACTIONS(2927), - [anon_sym___inline__] = ACTIONS(2927), - [anon_sym___forceinline] = ACTIONS(2927), - [anon_sym_thread_local] = ACTIONS(2927), - [anon_sym___thread] = ACTIONS(2927), - [anon_sym_const] = ACTIONS(2927), - [anon_sym_constexpr] = ACTIONS(2927), - [anon_sym_volatile] = ACTIONS(2927), - [anon_sym_restrict] = ACTIONS(2927), - [anon_sym___restrict__] = ACTIONS(2927), - [anon_sym__Atomic] = ACTIONS(2927), - [anon_sym__Noreturn] = ACTIONS(2927), - [anon_sym_noreturn] = ACTIONS(2927), - [anon_sym__Nonnull] = ACTIONS(2927), - [anon_sym_mutable] = ACTIONS(2927), - [anon_sym_constinit] = ACTIONS(2927), - [anon_sym_consteval] = ACTIONS(2927), - [anon_sym_alignas] = ACTIONS(2927), - [anon_sym__Alignas] = ACTIONS(2927), - [sym_primitive_type] = ACTIONS(2927), - [anon_sym_enum] = ACTIONS(2927), - [anon_sym_class] = ACTIONS(2927), - [anon_sym_struct] = ACTIONS(2927), - [anon_sym_union] = ACTIONS(2927), - [anon_sym_if] = ACTIONS(2927), - [anon_sym_switch] = ACTIONS(2927), - [anon_sym_case] = ACTIONS(2927), - [anon_sym_default] = ACTIONS(2927), - [anon_sym_while] = ACTIONS(2927), - [anon_sym_do] = ACTIONS(2927), - [anon_sym_for] = ACTIONS(2927), - [anon_sym_return] = ACTIONS(2927), - [anon_sym_break] = ACTIONS(2927), - [anon_sym_continue] = ACTIONS(2927), - [anon_sym_goto] = ACTIONS(2927), - [anon_sym___try] = ACTIONS(2927), - [anon_sym___leave] = ACTIONS(2927), - [anon_sym_not] = ACTIONS(2927), - [anon_sym_compl] = ACTIONS(2927), - [anon_sym_DASH_DASH] = ACTIONS(2929), - [anon_sym_PLUS_PLUS] = ACTIONS(2929), - [anon_sym_sizeof] = ACTIONS(2927), - [anon_sym___alignof__] = ACTIONS(2927), - [anon_sym___alignof] = ACTIONS(2927), - [anon_sym__alignof] = ACTIONS(2927), - [anon_sym_alignof] = ACTIONS(2927), - [anon_sym__Alignof] = ACTIONS(2927), - [anon_sym_offsetof] = ACTIONS(2927), - [anon_sym__Generic] = ACTIONS(2927), - [anon_sym_asm] = ACTIONS(2927), - [anon_sym___asm__] = ACTIONS(2927), - [anon_sym___asm] = ACTIONS(2927), - [sym_number_literal] = ACTIONS(2929), - [anon_sym_L_SQUOTE] = ACTIONS(2929), - [anon_sym_u_SQUOTE] = ACTIONS(2929), - [anon_sym_U_SQUOTE] = ACTIONS(2929), - [anon_sym_u8_SQUOTE] = ACTIONS(2929), - [anon_sym_SQUOTE] = ACTIONS(2929), - [anon_sym_L_DQUOTE] = ACTIONS(2929), - [anon_sym_u_DQUOTE] = ACTIONS(2929), - [anon_sym_U_DQUOTE] = ACTIONS(2929), - [anon_sym_u8_DQUOTE] = ACTIONS(2929), - [anon_sym_DQUOTE] = ACTIONS(2929), - [sym_true] = ACTIONS(2927), - [sym_false] = ACTIONS(2927), - [anon_sym_NULL] = ACTIONS(2927), - [anon_sym_nullptr] = ACTIONS(2927), + [739] = { + [sym_identifier] = ACTIONS(3047), + [aux_sym_preproc_include_token1] = ACTIONS(3047), + [aux_sym_preproc_def_token1] = ACTIONS(3047), + [aux_sym_preproc_if_token1] = ACTIONS(3047), + [aux_sym_preproc_if_token2] = ACTIONS(3047), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3047), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3047), + [sym_preproc_directive] = ACTIONS(3047), + [anon_sym_LPAREN2] = ACTIONS(3049), + [anon_sym_BANG] = ACTIONS(3049), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_DASH] = ACTIONS(3047), + [anon_sym_PLUS] = ACTIONS(3047), + [anon_sym_STAR] = ACTIONS(3049), + [anon_sym_AMP_AMP] = ACTIONS(3049), + [anon_sym_AMP] = ACTIONS(3047), + [anon_sym_SEMI] = ACTIONS(3049), + [anon_sym___extension__] = ACTIONS(3047), + [anon_sym_typedef] = ACTIONS(3047), + [anon_sym_virtual] = ACTIONS(3047), + [anon_sym_extern] = ACTIONS(3047), + [anon_sym___attribute__] = ACTIONS(3047), + [anon_sym___attribute] = ACTIONS(3047), + [anon_sym_using] = ACTIONS(3047), + [anon_sym_COLON_COLON] = ACTIONS(3049), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3049), + [anon_sym___declspec] = ACTIONS(3047), + [anon_sym___based] = ACTIONS(3047), + [anon_sym___cdecl] = ACTIONS(3047), + [anon_sym___clrcall] = ACTIONS(3047), + [anon_sym___stdcall] = ACTIONS(3047), + [anon_sym___fastcall] = ACTIONS(3047), + [anon_sym___thiscall] = ACTIONS(3047), + [anon_sym___vectorcall] = ACTIONS(3047), + [anon_sym_LBRACE] = ACTIONS(3049), + [anon_sym_signed] = ACTIONS(3047), + [anon_sym_unsigned] = ACTIONS(3047), + [anon_sym_long] = ACTIONS(3047), + [anon_sym_short] = ACTIONS(3047), + [anon_sym_LBRACK] = ACTIONS(3047), + [anon_sym_static] = ACTIONS(3047), + [anon_sym_register] = ACTIONS(3047), + [anon_sym_inline] = ACTIONS(3047), + [anon_sym___inline] = ACTIONS(3047), + [anon_sym___inline__] = ACTIONS(3047), + [anon_sym___forceinline] = ACTIONS(3047), + [anon_sym_thread_local] = ACTIONS(3047), + [anon_sym___thread] = ACTIONS(3047), + [anon_sym_const] = ACTIONS(3047), + [anon_sym_constexpr] = ACTIONS(3047), + [anon_sym_volatile] = ACTIONS(3047), + [anon_sym_restrict] = ACTIONS(3047), + [anon_sym___restrict__] = ACTIONS(3047), + [anon_sym__Atomic] = ACTIONS(3047), + [anon_sym__Noreturn] = ACTIONS(3047), + [anon_sym_noreturn] = ACTIONS(3047), + [anon_sym__Nonnull] = ACTIONS(3047), + [anon_sym_mutable] = ACTIONS(3047), + [anon_sym_constinit] = ACTIONS(3047), + [anon_sym_consteval] = ACTIONS(3047), + [anon_sym_alignas] = ACTIONS(3047), + [anon_sym__Alignas] = ACTIONS(3047), + [sym_primitive_type] = ACTIONS(3047), + [anon_sym_enum] = ACTIONS(3047), + [anon_sym_class] = ACTIONS(3047), + [anon_sym_struct] = ACTIONS(3047), + [anon_sym_union] = ACTIONS(3047), + [anon_sym_if] = ACTIONS(3047), + [anon_sym_switch] = ACTIONS(3047), + [anon_sym_case] = ACTIONS(3047), + [anon_sym_default] = ACTIONS(3047), + [anon_sym_while] = ACTIONS(3047), + [anon_sym_do] = ACTIONS(3047), + [anon_sym_for] = ACTIONS(3047), + [anon_sym_return] = ACTIONS(3047), + [anon_sym_break] = ACTIONS(3047), + [anon_sym_continue] = ACTIONS(3047), + [anon_sym_goto] = ACTIONS(3047), + [anon_sym___try] = ACTIONS(3047), + [anon_sym___leave] = ACTIONS(3047), + [anon_sym_not] = ACTIONS(3047), + [anon_sym_compl] = ACTIONS(3047), + [anon_sym_DASH_DASH] = ACTIONS(3049), + [anon_sym_PLUS_PLUS] = ACTIONS(3049), + [anon_sym_sizeof] = ACTIONS(3047), + [anon_sym___alignof__] = ACTIONS(3047), + [anon_sym___alignof] = ACTIONS(3047), + [anon_sym__alignof] = ACTIONS(3047), + [anon_sym_alignof] = ACTIONS(3047), + [anon_sym__Alignof] = ACTIONS(3047), + [anon_sym_offsetof] = ACTIONS(3047), + [anon_sym__Generic] = ACTIONS(3047), + [anon_sym_asm] = ACTIONS(3047), + [anon_sym___asm__] = ACTIONS(3047), + [anon_sym___asm] = ACTIONS(3047), + [sym_number_literal] = ACTIONS(3049), + [anon_sym_L_SQUOTE] = ACTIONS(3049), + [anon_sym_u_SQUOTE] = ACTIONS(3049), + [anon_sym_U_SQUOTE] = ACTIONS(3049), + [anon_sym_u8_SQUOTE] = ACTIONS(3049), + [anon_sym_SQUOTE] = ACTIONS(3049), + [anon_sym_L_DQUOTE] = ACTIONS(3049), + [anon_sym_u_DQUOTE] = ACTIONS(3049), + [anon_sym_U_DQUOTE] = ACTIONS(3049), + [anon_sym_u8_DQUOTE] = ACTIONS(3049), + [anon_sym_DQUOTE] = ACTIONS(3049), + [sym_true] = ACTIONS(3047), + [sym_false] = ACTIONS(3047), + [anon_sym_NULL] = ACTIONS(3047), + [anon_sym_nullptr] = ACTIONS(3047), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3047), + [anon_sym_decltype] = ACTIONS(3047), + [anon_sym_explicit] = ACTIONS(3047), + [anon_sym_typename] = ACTIONS(3047), + [anon_sym_template] = ACTIONS(3047), + [anon_sym_operator] = ACTIONS(3047), + [anon_sym_try] = ACTIONS(3047), + [anon_sym_delete] = ACTIONS(3047), + [anon_sym_throw] = ACTIONS(3047), + [anon_sym_namespace] = ACTIONS(3047), + [anon_sym_static_assert] = ACTIONS(3047), + [anon_sym_concept] = ACTIONS(3047), + [anon_sym_co_return] = ACTIONS(3047), + [anon_sym_co_yield] = ACTIONS(3047), + [anon_sym_R_DQUOTE] = ACTIONS(3049), + [anon_sym_LR_DQUOTE] = ACTIONS(3049), + [anon_sym_uR_DQUOTE] = ACTIONS(3049), + [anon_sym_UR_DQUOTE] = ACTIONS(3049), + [anon_sym_u8R_DQUOTE] = ACTIONS(3049), + [anon_sym_co_await] = ACTIONS(3047), + [anon_sym_new] = ACTIONS(3047), + [anon_sym_requires] = ACTIONS(3047), + [sym_this] = ACTIONS(3047), + }, + [740] = { + [sym_identifier] = ACTIONS(2963), + [aux_sym_preproc_include_token1] = ACTIONS(2963), + [aux_sym_preproc_def_token1] = ACTIONS(2963), + [aux_sym_preproc_if_token1] = ACTIONS(2963), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2963), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2963), + [sym_preproc_directive] = ACTIONS(2963), + [anon_sym_LPAREN2] = ACTIONS(2965), + [anon_sym_BANG] = ACTIONS(2965), + [anon_sym_TILDE] = ACTIONS(2965), + [anon_sym_DASH] = ACTIONS(2963), + [anon_sym_PLUS] = ACTIONS(2963), + [anon_sym_STAR] = ACTIONS(2965), + [anon_sym_AMP_AMP] = ACTIONS(2965), + [anon_sym_AMP] = ACTIONS(2963), + [anon_sym_SEMI] = ACTIONS(2965), + [anon_sym___extension__] = ACTIONS(2963), + [anon_sym_typedef] = ACTIONS(2963), + [anon_sym_virtual] = ACTIONS(2963), + [anon_sym_extern] = ACTIONS(2963), + [anon_sym___attribute__] = ACTIONS(2963), + [anon_sym___attribute] = ACTIONS(2963), + [anon_sym_using] = ACTIONS(2963), + [anon_sym_COLON_COLON] = ACTIONS(2965), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2965), + [anon_sym___declspec] = ACTIONS(2963), + [anon_sym___based] = ACTIONS(2963), + [anon_sym___cdecl] = ACTIONS(2963), + [anon_sym___clrcall] = ACTIONS(2963), + [anon_sym___stdcall] = ACTIONS(2963), + [anon_sym___fastcall] = ACTIONS(2963), + [anon_sym___thiscall] = ACTIONS(2963), + [anon_sym___vectorcall] = ACTIONS(2963), + [anon_sym_LBRACE] = ACTIONS(2965), + [anon_sym_RBRACE] = ACTIONS(2965), + [anon_sym_signed] = ACTIONS(2963), + [anon_sym_unsigned] = ACTIONS(2963), + [anon_sym_long] = ACTIONS(2963), + [anon_sym_short] = ACTIONS(2963), + [anon_sym_LBRACK] = ACTIONS(2963), + [anon_sym_static] = ACTIONS(2963), + [anon_sym_register] = ACTIONS(2963), + [anon_sym_inline] = ACTIONS(2963), + [anon_sym___inline] = ACTIONS(2963), + [anon_sym___inline__] = ACTIONS(2963), + [anon_sym___forceinline] = ACTIONS(2963), + [anon_sym_thread_local] = ACTIONS(2963), + [anon_sym___thread] = ACTIONS(2963), + [anon_sym_const] = ACTIONS(2963), + [anon_sym_constexpr] = ACTIONS(2963), + [anon_sym_volatile] = ACTIONS(2963), + [anon_sym_restrict] = ACTIONS(2963), + [anon_sym___restrict__] = ACTIONS(2963), + [anon_sym__Atomic] = ACTIONS(2963), + [anon_sym__Noreturn] = ACTIONS(2963), + [anon_sym_noreturn] = ACTIONS(2963), + [anon_sym__Nonnull] = ACTIONS(2963), + [anon_sym_mutable] = ACTIONS(2963), + [anon_sym_constinit] = ACTIONS(2963), + [anon_sym_consteval] = ACTIONS(2963), + [anon_sym_alignas] = ACTIONS(2963), + [anon_sym__Alignas] = ACTIONS(2963), + [sym_primitive_type] = ACTIONS(2963), + [anon_sym_enum] = ACTIONS(2963), + [anon_sym_class] = ACTIONS(2963), + [anon_sym_struct] = ACTIONS(2963), + [anon_sym_union] = ACTIONS(2963), + [anon_sym_if] = ACTIONS(2963), + [anon_sym_switch] = ACTIONS(2963), + [anon_sym_case] = ACTIONS(2963), + [anon_sym_default] = ACTIONS(2963), + [anon_sym_while] = ACTIONS(2963), + [anon_sym_do] = ACTIONS(2963), + [anon_sym_for] = ACTIONS(2963), + [anon_sym_return] = ACTIONS(2963), + [anon_sym_break] = ACTIONS(2963), + [anon_sym_continue] = ACTIONS(2963), + [anon_sym_goto] = ACTIONS(2963), + [anon_sym___try] = ACTIONS(2963), + [anon_sym___leave] = ACTIONS(2963), + [anon_sym_not] = ACTIONS(2963), + [anon_sym_compl] = ACTIONS(2963), + [anon_sym_DASH_DASH] = ACTIONS(2965), + [anon_sym_PLUS_PLUS] = ACTIONS(2965), + [anon_sym_sizeof] = ACTIONS(2963), + [anon_sym___alignof__] = ACTIONS(2963), + [anon_sym___alignof] = ACTIONS(2963), + [anon_sym__alignof] = ACTIONS(2963), + [anon_sym_alignof] = ACTIONS(2963), + [anon_sym__Alignof] = ACTIONS(2963), + [anon_sym_offsetof] = ACTIONS(2963), + [anon_sym__Generic] = ACTIONS(2963), + [anon_sym_asm] = ACTIONS(2963), + [anon_sym___asm__] = ACTIONS(2963), + [anon_sym___asm] = ACTIONS(2963), + [sym_number_literal] = ACTIONS(2965), + [anon_sym_L_SQUOTE] = ACTIONS(2965), + [anon_sym_u_SQUOTE] = ACTIONS(2965), + [anon_sym_U_SQUOTE] = ACTIONS(2965), + [anon_sym_u8_SQUOTE] = ACTIONS(2965), + [anon_sym_SQUOTE] = ACTIONS(2965), + [anon_sym_L_DQUOTE] = ACTIONS(2965), + [anon_sym_u_DQUOTE] = ACTIONS(2965), + [anon_sym_U_DQUOTE] = ACTIONS(2965), + [anon_sym_u8_DQUOTE] = ACTIONS(2965), + [anon_sym_DQUOTE] = ACTIONS(2965), + [sym_true] = ACTIONS(2963), + [sym_false] = ACTIONS(2963), + [anon_sym_NULL] = ACTIONS(2963), + [anon_sym_nullptr] = ACTIONS(2963), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2963), + [anon_sym_decltype] = ACTIONS(2963), + [anon_sym_explicit] = ACTIONS(2963), + [anon_sym_typename] = ACTIONS(2963), + [anon_sym_template] = ACTIONS(2963), + [anon_sym_operator] = ACTIONS(2963), + [anon_sym_try] = ACTIONS(2963), + [anon_sym_delete] = ACTIONS(2963), + [anon_sym_throw] = ACTIONS(2963), + [anon_sym_namespace] = ACTIONS(2963), + [anon_sym_static_assert] = ACTIONS(2963), + [anon_sym_concept] = ACTIONS(2963), + [anon_sym_co_return] = ACTIONS(2963), + [anon_sym_co_yield] = ACTIONS(2963), + [anon_sym_R_DQUOTE] = ACTIONS(2965), + [anon_sym_LR_DQUOTE] = ACTIONS(2965), + [anon_sym_uR_DQUOTE] = ACTIONS(2965), + [anon_sym_UR_DQUOTE] = ACTIONS(2965), + [anon_sym_u8R_DQUOTE] = ACTIONS(2965), + [anon_sym_co_await] = ACTIONS(2963), + [anon_sym_new] = ACTIONS(2963), + [anon_sym_requires] = ACTIONS(2963), + [sym_this] = ACTIONS(2963), + }, + [741] = { + [sym_identifier] = ACTIONS(2967), + [aux_sym_preproc_include_token1] = ACTIONS(2967), + [aux_sym_preproc_def_token1] = ACTIONS(2967), + [aux_sym_preproc_if_token1] = ACTIONS(2967), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2967), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2967), + [sym_preproc_directive] = ACTIONS(2967), + [anon_sym_LPAREN2] = ACTIONS(2969), + [anon_sym_BANG] = ACTIONS(2969), + [anon_sym_TILDE] = ACTIONS(2969), + [anon_sym_DASH] = ACTIONS(2967), + [anon_sym_PLUS] = ACTIONS(2967), + [anon_sym_STAR] = ACTIONS(2969), + [anon_sym_AMP_AMP] = ACTIONS(2969), + [anon_sym_AMP] = ACTIONS(2967), + [anon_sym_SEMI] = ACTIONS(2969), + [anon_sym___extension__] = ACTIONS(2967), + [anon_sym_typedef] = ACTIONS(2967), + [anon_sym_virtual] = ACTIONS(2967), + [anon_sym_extern] = ACTIONS(2967), + [anon_sym___attribute__] = ACTIONS(2967), + [anon_sym___attribute] = ACTIONS(2967), + [anon_sym_using] = ACTIONS(2967), + [anon_sym_COLON_COLON] = ACTIONS(2969), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2969), + [anon_sym___declspec] = ACTIONS(2967), + [anon_sym___based] = ACTIONS(2967), + [anon_sym___cdecl] = ACTIONS(2967), + [anon_sym___clrcall] = ACTIONS(2967), + [anon_sym___stdcall] = ACTIONS(2967), + [anon_sym___fastcall] = ACTIONS(2967), + [anon_sym___thiscall] = ACTIONS(2967), + [anon_sym___vectorcall] = ACTIONS(2967), + [anon_sym_LBRACE] = ACTIONS(2969), + [anon_sym_RBRACE] = ACTIONS(2969), + [anon_sym_signed] = ACTIONS(2967), + [anon_sym_unsigned] = ACTIONS(2967), + [anon_sym_long] = ACTIONS(2967), + [anon_sym_short] = ACTIONS(2967), + [anon_sym_LBRACK] = ACTIONS(2967), + [anon_sym_static] = ACTIONS(2967), + [anon_sym_register] = ACTIONS(2967), + [anon_sym_inline] = ACTIONS(2967), + [anon_sym___inline] = ACTIONS(2967), + [anon_sym___inline__] = ACTIONS(2967), + [anon_sym___forceinline] = ACTIONS(2967), + [anon_sym_thread_local] = ACTIONS(2967), + [anon_sym___thread] = ACTIONS(2967), + [anon_sym_const] = ACTIONS(2967), + [anon_sym_constexpr] = ACTIONS(2967), + [anon_sym_volatile] = ACTIONS(2967), + [anon_sym_restrict] = ACTIONS(2967), + [anon_sym___restrict__] = ACTIONS(2967), + [anon_sym__Atomic] = ACTIONS(2967), + [anon_sym__Noreturn] = ACTIONS(2967), + [anon_sym_noreturn] = ACTIONS(2967), + [anon_sym__Nonnull] = ACTIONS(2967), + [anon_sym_mutable] = ACTIONS(2967), + [anon_sym_constinit] = ACTIONS(2967), + [anon_sym_consteval] = ACTIONS(2967), + [anon_sym_alignas] = ACTIONS(2967), + [anon_sym__Alignas] = ACTIONS(2967), + [sym_primitive_type] = ACTIONS(2967), + [anon_sym_enum] = ACTIONS(2967), + [anon_sym_class] = ACTIONS(2967), + [anon_sym_struct] = ACTIONS(2967), + [anon_sym_union] = ACTIONS(2967), + [anon_sym_if] = ACTIONS(2967), + [anon_sym_switch] = ACTIONS(2967), + [anon_sym_case] = ACTIONS(2967), + [anon_sym_default] = ACTIONS(2967), + [anon_sym_while] = ACTIONS(2967), + [anon_sym_do] = ACTIONS(2967), + [anon_sym_for] = ACTIONS(2967), + [anon_sym_return] = ACTIONS(2967), + [anon_sym_break] = ACTIONS(2967), + [anon_sym_continue] = ACTIONS(2967), + [anon_sym_goto] = ACTIONS(2967), + [anon_sym___try] = ACTIONS(2967), + [anon_sym___leave] = ACTIONS(2967), + [anon_sym_not] = ACTIONS(2967), + [anon_sym_compl] = ACTIONS(2967), + [anon_sym_DASH_DASH] = ACTIONS(2969), + [anon_sym_PLUS_PLUS] = ACTIONS(2969), + [anon_sym_sizeof] = ACTIONS(2967), + [anon_sym___alignof__] = ACTIONS(2967), + [anon_sym___alignof] = ACTIONS(2967), + [anon_sym__alignof] = ACTIONS(2967), + [anon_sym_alignof] = ACTIONS(2967), + [anon_sym__Alignof] = ACTIONS(2967), + [anon_sym_offsetof] = ACTIONS(2967), + [anon_sym__Generic] = ACTIONS(2967), + [anon_sym_asm] = ACTIONS(2967), + [anon_sym___asm__] = ACTIONS(2967), + [anon_sym___asm] = ACTIONS(2967), + [sym_number_literal] = ACTIONS(2969), + [anon_sym_L_SQUOTE] = ACTIONS(2969), + [anon_sym_u_SQUOTE] = ACTIONS(2969), + [anon_sym_U_SQUOTE] = ACTIONS(2969), + [anon_sym_u8_SQUOTE] = ACTIONS(2969), + [anon_sym_SQUOTE] = ACTIONS(2969), + [anon_sym_L_DQUOTE] = ACTIONS(2969), + [anon_sym_u_DQUOTE] = ACTIONS(2969), + [anon_sym_U_DQUOTE] = ACTIONS(2969), + [anon_sym_u8_DQUOTE] = ACTIONS(2969), + [anon_sym_DQUOTE] = ACTIONS(2969), + [sym_true] = ACTIONS(2967), + [sym_false] = ACTIONS(2967), + [anon_sym_NULL] = ACTIONS(2967), + [anon_sym_nullptr] = ACTIONS(2967), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2967), + [anon_sym_decltype] = ACTIONS(2967), + [anon_sym_explicit] = ACTIONS(2967), + [anon_sym_typename] = ACTIONS(2967), + [anon_sym_template] = ACTIONS(2967), + [anon_sym_operator] = ACTIONS(2967), + [anon_sym_try] = ACTIONS(2967), + [anon_sym_delete] = ACTIONS(2967), + [anon_sym_throw] = ACTIONS(2967), + [anon_sym_namespace] = ACTIONS(2967), + [anon_sym_static_assert] = ACTIONS(2967), + [anon_sym_concept] = ACTIONS(2967), + [anon_sym_co_return] = ACTIONS(2967), + [anon_sym_co_yield] = ACTIONS(2967), + [anon_sym_R_DQUOTE] = ACTIONS(2969), + [anon_sym_LR_DQUOTE] = ACTIONS(2969), + [anon_sym_uR_DQUOTE] = ACTIONS(2969), + [anon_sym_UR_DQUOTE] = ACTIONS(2969), + [anon_sym_u8R_DQUOTE] = ACTIONS(2969), + [anon_sym_co_await] = ACTIONS(2967), + [anon_sym_new] = ACTIONS(2967), + [anon_sym_requires] = ACTIONS(2967), + [sym_this] = ACTIONS(2967), + }, + [742] = { + [sym_identifier] = ACTIONS(3079), + [aux_sym_preproc_include_token1] = ACTIONS(3079), + [aux_sym_preproc_def_token1] = ACTIONS(3079), + [aux_sym_preproc_if_token1] = ACTIONS(3079), + [aux_sym_preproc_if_token2] = ACTIONS(3079), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3079), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3079), + [sym_preproc_directive] = ACTIONS(3079), + [anon_sym_LPAREN2] = ACTIONS(3081), + [anon_sym_BANG] = ACTIONS(3081), + [anon_sym_TILDE] = ACTIONS(3081), + [anon_sym_DASH] = ACTIONS(3079), + [anon_sym_PLUS] = ACTIONS(3079), + [anon_sym_STAR] = ACTIONS(3081), + [anon_sym_AMP_AMP] = ACTIONS(3081), + [anon_sym_AMP] = ACTIONS(3079), + [anon_sym_SEMI] = ACTIONS(3081), + [anon_sym___extension__] = ACTIONS(3079), + [anon_sym_typedef] = ACTIONS(3079), + [anon_sym_virtual] = ACTIONS(3079), + [anon_sym_extern] = ACTIONS(3079), + [anon_sym___attribute__] = ACTIONS(3079), + [anon_sym___attribute] = ACTIONS(3079), + [anon_sym_using] = ACTIONS(3079), + [anon_sym_COLON_COLON] = ACTIONS(3081), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3081), + [anon_sym___declspec] = ACTIONS(3079), + [anon_sym___based] = ACTIONS(3079), + [anon_sym___cdecl] = ACTIONS(3079), + [anon_sym___clrcall] = ACTIONS(3079), + [anon_sym___stdcall] = ACTIONS(3079), + [anon_sym___fastcall] = ACTIONS(3079), + [anon_sym___thiscall] = ACTIONS(3079), + [anon_sym___vectorcall] = ACTIONS(3079), + [anon_sym_LBRACE] = ACTIONS(3081), + [anon_sym_signed] = ACTIONS(3079), + [anon_sym_unsigned] = ACTIONS(3079), + [anon_sym_long] = ACTIONS(3079), + [anon_sym_short] = ACTIONS(3079), + [anon_sym_LBRACK] = ACTIONS(3079), + [anon_sym_static] = ACTIONS(3079), + [anon_sym_register] = ACTIONS(3079), + [anon_sym_inline] = ACTIONS(3079), + [anon_sym___inline] = ACTIONS(3079), + [anon_sym___inline__] = ACTIONS(3079), + [anon_sym___forceinline] = ACTIONS(3079), + [anon_sym_thread_local] = ACTIONS(3079), + [anon_sym___thread] = ACTIONS(3079), + [anon_sym_const] = ACTIONS(3079), + [anon_sym_constexpr] = ACTIONS(3079), + [anon_sym_volatile] = ACTIONS(3079), + [anon_sym_restrict] = ACTIONS(3079), + [anon_sym___restrict__] = ACTIONS(3079), + [anon_sym__Atomic] = ACTIONS(3079), + [anon_sym__Noreturn] = ACTIONS(3079), + [anon_sym_noreturn] = ACTIONS(3079), + [anon_sym__Nonnull] = ACTIONS(3079), + [anon_sym_mutable] = ACTIONS(3079), + [anon_sym_constinit] = ACTIONS(3079), + [anon_sym_consteval] = ACTIONS(3079), + [anon_sym_alignas] = ACTIONS(3079), + [anon_sym__Alignas] = ACTIONS(3079), + [sym_primitive_type] = ACTIONS(3079), + [anon_sym_enum] = ACTIONS(3079), + [anon_sym_class] = ACTIONS(3079), + [anon_sym_struct] = ACTIONS(3079), + [anon_sym_union] = ACTIONS(3079), + [anon_sym_if] = ACTIONS(3079), + [anon_sym_switch] = ACTIONS(3079), + [anon_sym_case] = ACTIONS(3079), + [anon_sym_default] = ACTIONS(3079), + [anon_sym_while] = ACTIONS(3079), + [anon_sym_do] = ACTIONS(3079), + [anon_sym_for] = ACTIONS(3079), + [anon_sym_return] = ACTIONS(3079), + [anon_sym_break] = ACTIONS(3079), + [anon_sym_continue] = ACTIONS(3079), + [anon_sym_goto] = ACTIONS(3079), + [anon_sym___try] = ACTIONS(3079), + [anon_sym___leave] = ACTIONS(3079), + [anon_sym_not] = ACTIONS(3079), + [anon_sym_compl] = ACTIONS(3079), + [anon_sym_DASH_DASH] = ACTIONS(3081), + [anon_sym_PLUS_PLUS] = ACTIONS(3081), + [anon_sym_sizeof] = ACTIONS(3079), + [anon_sym___alignof__] = ACTIONS(3079), + [anon_sym___alignof] = ACTIONS(3079), + [anon_sym__alignof] = ACTIONS(3079), + [anon_sym_alignof] = ACTIONS(3079), + [anon_sym__Alignof] = ACTIONS(3079), + [anon_sym_offsetof] = ACTIONS(3079), + [anon_sym__Generic] = ACTIONS(3079), + [anon_sym_asm] = ACTIONS(3079), + [anon_sym___asm__] = ACTIONS(3079), + [anon_sym___asm] = ACTIONS(3079), + [sym_number_literal] = ACTIONS(3081), + [anon_sym_L_SQUOTE] = ACTIONS(3081), + [anon_sym_u_SQUOTE] = ACTIONS(3081), + [anon_sym_U_SQUOTE] = ACTIONS(3081), + [anon_sym_u8_SQUOTE] = ACTIONS(3081), + [anon_sym_SQUOTE] = ACTIONS(3081), + [anon_sym_L_DQUOTE] = ACTIONS(3081), + [anon_sym_u_DQUOTE] = ACTIONS(3081), + [anon_sym_U_DQUOTE] = ACTIONS(3081), + [anon_sym_u8_DQUOTE] = ACTIONS(3081), + [anon_sym_DQUOTE] = ACTIONS(3081), + [sym_true] = ACTIONS(3079), + [sym_false] = ACTIONS(3079), + [anon_sym_NULL] = ACTIONS(3079), + [anon_sym_nullptr] = ACTIONS(3079), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2927), - [anon_sym_decltype] = ACTIONS(2927), - [anon_sym_explicit] = ACTIONS(2927), - [anon_sym_typename] = ACTIONS(2927), - [anon_sym_template] = ACTIONS(2927), - [anon_sym_operator] = ACTIONS(2927), - [anon_sym_try] = ACTIONS(2927), - [anon_sym_delete] = ACTIONS(2927), - [anon_sym_throw] = ACTIONS(2927), - [anon_sym_namespace] = ACTIONS(2927), - [anon_sym_static_assert] = ACTIONS(2927), - [anon_sym_concept] = ACTIONS(2927), - [anon_sym_co_return] = ACTIONS(2927), - [anon_sym_co_yield] = ACTIONS(2927), - [anon_sym_R_DQUOTE] = ACTIONS(2929), - [anon_sym_LR_DQUOTE] = ACTIONS(2929), - [anon_sym_uR_DQUOTE] = ACTIONS(2929), - [anon_sym_UR_DQUOTE] = ACTIONS(2929), - [anon_sym_u8R_DQUOTE] = ACTIONS(2929), - [anon_sym_co_await] = ACTIONS(2927), - [anon_sym_new] = ACTIONS(2927), - [anon_sym_requires] = ACTIONS(2927), - [sym_this] = ACTIONS(2927), + [sym_auto] = ACTIONS(3079), + [anon_sym_decltype] = ACTIONS(3079), + [anon_sym_explicit] = ACTIONS(3079), + [anon_sym_typename] = ACTIONS(3079), + [anon_sym_template] = ACTIONS(3079), + [anon_sym_operator] = ACTIONS(3079), + [anon_sym_try] = ACTIONS(3079), + [anon_sym_delete] = ACTIONS(3079), + [anon_sym_throw] = ACTIONS(3079), + [anon_sym_namespace] = ACTIONS(3079), + [anon_sym_static_assert] = ACTIONS(3079), + [anon_sym_concept] = ACTIONS(3079), + [anon_sym_co_return] = ACTIONS(3079), + [anon_sym_co_yield] = ACTIONS(3079), + [anon_sym_R_DQUOTE] = ACTIONS(3081), + [anon_sym_LR_DQUOTE] = ACTIONS(3081), + [anon_sym_uR_DQUOTE] = ACTIONS(3081), + [anon_sym_UR_DQUOTE] = ACTIONS(3081), + [anon_sym_u8R_DQUOTE] = ACTIONS(3081), + [anon_sym_co_await] = ACTIONS(3079), + [anon_sym_new] = ACTIONS(3079), + [anon_sym_requires] = ACTIONS(3079), + [sym_this] = ACTIONS(3079), }, - [722] = { - [sym_identifier] = ACTIONS(2919), - [aux_sym_preproc_include_token1] = ACTIONS(2919), - [aux_sym_preproc_def_token1] = ACTIONS(2919), - [aux_sym_preproc_if_token1] = ACTIONS(2919), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2919), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2919), - [sym_preproc_directive] = ACTIONS(2919), - [anon_sym_LPAREN2] = ACTIONS(2921), - [anon_sym_BANG] = ACTIONS(2921), - [anon_sym_TILDE] = ACTIONS(2921), - [anon_sym_DASH] = ACTIONS(2919), - [anon_sym_PLUS] = ACTIONS(2919), - [anon_sym_STAR] = ACTIONS(2921), - [anon_sym_AMP_AMP] = ACTIONS(2921), - [anon_sym_AMP] = ACTIONS(2919), - [anon_sym_SEMI] = ACTIONS(2921), - [anon_sym___extension__] = ACTIONS(2919), - [anon_sym_typedef] = ACTIONS(2919), - [anon_sym_virtual] = ACTIONS(2919), - [anon_sym_extern] = ACTIONS(2919), - [anon_sym___attribute__] = ACTIONS(2919), - [anon_sym___attribute] = ACTIONS(2919), - [anon_sym_using] = ACTIONS(2919), - [anon_sym_COLON_COLON] = ACTIONS(2921), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2921), - [anon_sym___declspec] = ACTIONS(2919), - [anon_sym___based] = ACTIONS(2919), - [anon_sym___cdecl] = ACTIONS(2919), - [anon_sym___clrcall] = ACTIONS(2919), - [anon_sym___stdcall] = ACTIONS(2919), - [anon_sym___fastcall] = ACTIONS(2919), - [anon_sym___thiscall] = ACTIONS(2919), - [anon_sym___vectorcall] = ACTIONS(2919), - [anon_sym_LBRACE] = ACTIONS(2921), - [anon_sym_RBRACE] = ACTIONS(2921), - [anon_sym_signed] = ACTIONS(2919), - [anon_sym_unsigned] = ACTIONS(2919), - [anon_sym_long] = ACTIONS(2919), - [anon_sym_short] = ACTIONS(2919), - [anon_sym_LBRACK] = ACTIONS(2919), - [anon_sym_static] = ACTIONS(2919), - [anon_sym_register] = ACTIONS(2919), - [anon_sym_inline] = ACTIONS(2919), - [anon_sym___inline] = ACTIONS(2919), - [anon_sym___inline__] = ACTIONS(2919), - [anon_sym___forceinline] = ACTIONS(2919), - [anon_sym_thread_local] = ACTIONS(2919), - [anon_sym___thread] = ACTIONS(2919), - [anon_sym_const] = ACTIONS(2919), - [anon_sym_constexpr] = ACTIONS(2919), - [anon_sym_volatile] = ACTIONS(2919), - [anon_sym_restrict] = ACTIONS(2919), - [anon_sym___restrict__] = ACTIONS(2919), - [anon_sym__Atomic] = ACTIONS(2919), - [anon_sym__Noreturn] = ACTIONS(2919), - [anon_sym_noreturn] = ACTIONS(2919), - [anon_sym__Nonnull] = ACTIONS(2919), - [anon_sym_mutable] = ACTIONS(2919), - [anon_sym_constinit] = ACTIONS(2919), - [anon_sym_consteval] = ACTIONS(2919), - [anon_sym_alignas] = ACTIONS(2919), - [anon_sym__Alignas] = ACTIONS(2919), - [sym_primitive_type] = ACTIONS(2919), - [anon_sym_enum] = ACTIONS(2919), - [anon_sym_class] = ACTIONS(2919), - [anon_sym_struct] = ACTIONS(2919), - [anon_sym_union] = ACTIONS(2919), - [anon_sym_if] = ACTIONS(2919), - [anon_sym_switch] = ACTIONS(2919), - [anon_sym_case] = ACTIONS(2919), - [anon_sym_default] = ACTIONS(2919), - [anon_sym_while] = ACTIONS(2919), - [anon_sym_do] = ACTIONS(2919), - [anon_sym_for] = ACTIONS(2919), - [anon_sym_return] = ACTIONS(2919), - [anon_sym_break] = ACTIONS(2919), - [anon_sym_continue] = ACTIONS(2919), - [anon_sym_goto] = ACTIONS(2919), - [anon_sym___try] = ACTIONS(2919), - [anon_sym___leave] = ACTIONS(2919), - [anon_sym_not] = ACTIONS(2919), - [anon_sym_compl] = ACTIONS(2919), - [anon_sym_DASH_DASH] = ACTIONS(2921), - [anon_sym_PLUS_PLUS] = ACTIONS(2921), - [anon_sym_sizeof] = ACTIONS(2919), - [anon_sym___alignof__] = ACTIONS(2919), - [anon_sym___alignof] = ACTIONS(2919), - [anon_sym__alignof] = ACTIONS(2919), - [anon_sym_alignof] = ACTIONS(2919), - [anon_sym__Alignof] = ACTIONS(2919), - [anon_sym_offsetof] = ACTIONS(2919), - [anon_sym__Generic] = ACTIONS(2919), - [anon_sym_asm] = ACTIONS(2919), - [anon_sym___asm__] = ACTIONS(2919), - [anon_sym___asm] = ACTIONS(2919), - [sym_number_literal] = ACTIONS(2921), - [anon_sym_L_SQUOTE] = ACTIONS(2921), - [anon_sym_u_SQUOTE] = ACTIONS(2921), - [anon_sym_U_SQUOTE] = ACTIONS(2921), - [anon_sym_u8_SQUOTE] = ACTIONS(2921), - [anon_sym_SQUOTE] = ACTIONS(2921), - [anon_sym_L_DQUOTE] = ACTIONS(2921), - [anon_sym_u_DQUOTE] = ACTIONS(2921), - [anon_sym_U_DQUOTE] = ACTIONS(2921), - [anon_sym_u8_DQUOTE] = ACTIONS(2921), - [anon_sym_DQUOTE] = ACTIONS(2921), - [sym_true] = ACTIONS(2919), - [sym_false] = ACTIONS(2919), - [anon_sym_NULL] = ACTIONS(2919), - [anon_sym_nullptr] = ACTIONS(2919), + [743] = { + [sym_identifier] = ACTIONS(3083), + [aux_sym_preproc_include_token1] = ACTIONS(3083), + [aux_sym_preproc_def_token1] = ACTIONS(3083), + [aux_sym_preproc_if_token1] = ACTIONS(3083), + [aux_sym_preproc_if_token2] = ACTIONS(3083), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3083), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3083), + [sym_preproc_directive] = ACTIONS(3083), + [anon_sym_LPAREN2] = ACTIONS(3085), + [anon_sym_BANG] = ACTIONS(3085), + [anon_sym_TILDE] = ACTIONS(3085), + [anon_sym_DASH] = ACTIONS(3083), + [anon_sym_PLUS] = ACTIONS(3083), + [anon_sym_STAR] = ACTIONS(3085), + [anon_sym_AMP_AMP] = ACTIONS(3085), + [anon_sym_AMP] = ACTIONS(3083), + [anon_sym_SEMI] = ACTIONS(3085), + [anon_sym___extension__] = ACTIONS(3083), + [anon_sym_typedef] = ACTIONS(3083), + [anon_sym_virtual] = ACTIONS(3083), + [anon_sym_extern] = ACTIONS(3083), + [anon_sym___attribute__] = ACTIONS(3083), + [anon_sym___attribute] = ACTIONS(3083), + [anon_sym_using] = ACTIONS(3083), + [anon_sym_COLON_COLON] = ACTIONS(3085), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3085), + [anon_sym___declspec] = ACTIONS(3083), + [anon_sym___based] = ACTIONS(3083), + [anon_sym___cdecl] = ACTIONS(3083), + [anon_sym___clrcall] = ACTIONS(3083), + [anon_sym___stdcall] = ACTIONS(3083), + [anon_sym___fastcall] = ACTIONS(3083), + [anon_sym___thiscall] = ACTIONS(3083), + [anon_sym___vectorcall] = ACTIONS(3083), + [anon_sym_LBRACE] = ACTIONS(3085), + [anon_sym_signed] = ACTIONS(3083), + [anon_sym_unsigned] = ACTIONS(3083), + [anon_sym_long] = ACTIONS(3083), + [anon_sym_short] = ACTIONS(3083), + [anon_sym_LBRACK] = ACTIONS(3083), + [anon_sym_static] = ACTIONS(3083), + [anon_sym_register] = ACTIONS(3083), + [anon_sym_inline] = ACTIONS(3083), + [anon_sym___inline] = ACTIONS(3083), + [anon_sym___inline__] = ACTIONS(3083), + [anon_sym___forceinline] = ACTIONS(3083), + [anon_sym_thread_local] = ACTIONS(3083), + [anon_sym___thread] = ACTIONS(3083), + [anon_sym_const] = ACTIONS(3083), + [anon_sym_constexpr] = ACTIONS(3083), + [anon_sym_volatile] = ACTIONS(3083), + [anon_sym_restrict] = ACTIONS(3083), + [anon_sym___restrict__] = ACTIONS(3083), + [anon_sym__Atomic] = ACTIONS(3083), + [anon_sym__Noreturn] = ACTIONS(3083), + [anon_sym_noreturn] = ACTIONS(3083), + [anon_sym__Nonnull] = ACTIONS(3083), + [anon_sym_mutable] = ACTIONS(3083), + [anon_sym_constinit] = ACTIONS(3083), + [anon_sym_consteval] = ACTIONS(3083), + [anon_sym_alignas] = ACTIONS(3083), + [anon_sym__Alignas] = ACTIONS(3083), + [sym_primitive_type] = ACTIONS(3083), + [anon_sym_enum] = ACTIONS(3083), + [anon_sym_class] = ACTIONS(3083), + [anon_sym_struct] = ACTIONS(3083), + [anon_sym_union] = ACTIONS(3083), + [anon_sym_if] = ACTIONS(3083), + [anon_sym_switch] = ACTIONS(3083), + [anon_sym_case] = ACTIONS(3083), + [anon_sym_default] = ACTIONS(3083), + [anon_sym_while] = ACTIONS(3083), + [anon_sym_do] = ACTIONS(3083), + [anon_sym_for] = ACTIONS(3083), + [anon_sym_return] = ACTIONS(3083), + [anon_sym_break] = ACTIONS(3083), + [anon_sym_continue] = ACTIONS(3083), + [anon_sym_goto] = ACTIONS(3083), + [anon_sym___try] = ACTIONS(3083), + [anon_sym___leave] = ACTIONS(3083), + [anon_sym_not] = ACTIONS(3083), + [anon_sym_compl] = ACTIONS(3083), + [anon_sym_DASH_DASH] = ACTIONS(3085), + [anon_sym_PLUS_PLUS] = ACTIONS(3085), + [anon_sym_sizeof] = ACTIONS(3083), + [anon_sym___alignof__] = ACTIONS(3083), + [anon_sym___alignof] = ACTIONS(3083), + [anon_sym__alignof] = ACTIONS(3083), + [anon_sym_alignof] = ACTIONS(3083), + [anon_sym__Alignof] = ACTIONS(3083), + [anon_sym_offsetof] = ACTIONS(3083), + [anon_sym__Generic] = ACTIONS(3083), + [anon_sym_asm] = ACTIONS(3083), + [anon_sym___asm__] = ACTIONS(3083), + [anon_sym___asm] = ACTIONS(3083), + [sym_number_literal] = ACTIONS(3085), + [anon_sym_L_SQUOTE] = ACTIONS(3085), + [anon_sym_u_SQUOTE] = ACTIONS(3085), + [anon_sym_U_SQUOTE] = ACTIONS(3085), + [anon_sym_u8_SQUOTE] = ACTIONS(3085), + [anon_sym_SQUOTE] = ACTIONS(3085), + [anon_sym_L_DQUOTE] = ACTIONS(3085), + [anon_sym_u_DQUOTE] = ACTIONS(3085), + [anon_sym_U_DQUOTE] = ACTIONS(3085), + [anon_sym_u8_DQUOTE] = ACTIONS(3085), + [anon_sym_DQUOTE] = ACTIONS(3085), + [sym_true] = ACTIONS(3083), + [sym_false] = ACTIONS(3083), + [anon_sym_NULL] = ACTIONS(3083), + [anon_sym_nullptr] = ACTIONS(3083), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2919), - [anon_sym_decltype] = ACTIONS(2919), - [anon_sym_explicit] = ACTIONS(2919), - [anon_sym_typename] = ACTIONS(2919), - [anon_sym_template] = ACTIONS(2919), - [anon_sym_operator] = ACTIONS(2919), - [anon_sym_try] = ACTIONS(2919), - [anon_sym_delete] = ACTIONS(2919), - [anon_sym_throw] = ACTIONS(2919), - [anon_sym_namespace] = ACTIONS(2919), - [anon_sym_static_assert] = ACTIONS(2919), - [anon_sym_concept] = ACTIONS(2919), - [anon_sym_co_return] = ACTIONS(2919), - [anon_sym_co_yield] = ACTIONS(2919), - [anon_sym_R_DQUOTE] = ACTIONS(2921), - [anon_sym_LR_DQUOTE] = ACTIONS(2921), - [anon_sym_uR_DQUOTE] = ACTIONS(2921), - [anon_sym_UR_DQUOTE] = ACTIONS(2921), - [anon_sym_u8R_DQUOTE] = ACTIONS(2921), - [anon_sym_co_await] = ACTIONS(2919), - [anon_sym_new] = ACTIONS(2919), - [anon_sym_requires] = ACTIONS(2919), - [sym_this] = ACTIONS(2919), + [sym_auto] = ACTIONS(3083), + [anon_sym_decltype] = ACTIONS(3083), + [anon_sym_explicit] = ACTIONS(3083), + [anon_sym_typename] = ACTIONS(3083), + [anon_sym_template] = ACTIONS(3083), + [anon_sym_operator] = ACTIONS(3083), + [anon_sym_try] = ACTIONS(3083), + [anon_sym_delete] = ACTIONS(3083), + [anon_sym_throw] = ACTIONS(3083), + [anon_sym_namespace] = ACTIONS(3083), + [anon_sym_static_assert] = ACTIONS(3083), + [anon_sym_concept] = ACTIONS(3083), + [anon_sym_co_return] = ACTIONS(3083), + [anon_sym_co_yield] = ACTIONS(3083), + [anon_sym_R_DQUOTE] = ACTIONS(3085), + [anon_sym_LR_DQUOTE] = ACTIONS(3085), + [anon_sym_uR_DQUOTE] = ACTIONS(3085), + [anon_sym_UR_DQUOTE] = ACTIONS(3085), + [anon_sym_u8R_DQUOTE] = ACTIONS(3085), + [anon_sym_co_await] = ACTIONS(3083), + [anon_sym_new] = ACTIONS(3083), + [anon_sym_requires] = ACTIONS(3083), + [sym_this] = ACTIONS(3083), }, - [723] = { - [sym_identifier] = ACTIONS(2931), - [aux_sym_preproc_include_token1] = ACTIONS(2931), - [aux_sym_preproc_def_token1] = ACTIONS(2931), - [aux_sym_preproc_if_token1] = ACTIONS(2931), - [aux_sym_preproc_if_token2] = ACTIONS(2931), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2931), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2931), - [sym_preproc_directive] = ACTIONS(2931), - [anon_sym_LPAREN2] = ACTIONS(2933), - [anon_sym_BANG] = ACTIONS(2933), - [anon_sym_TILDE] = ACTIONS(2933), - [anon_sym_DASH] = ACTIONS(2931), - [anon_sym_PLUS] = ACTIONS(2931), - [anon_sym_STAR] = ACTIONS(2933), - [anon_sym_AMP_AMP] = ACTIONS(2933), - [anon_sym_AMP] = ACTIONS(2931), - [anon_sym_SEMI] = ACTIONS(2933), - [anon_sym___extension__] = ACTIONS(2931), - [anon_sym_typedef] = ACTIONS(2931), - [anon_sym_virtual] = ACTIONS(2931), - [anon_sym_extern] = ACTIONS(2931), - [anon_sym___attribute__] = ACTIONS(2931), - [anon_sym___attribute] = ACTIONS(2931), - [anon_sym_using] = ACTIONS(2931), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2933), - [anon_sym___declspec] = ACTIONS(2931), - [anon_sym___based] = ACTIONS(2931), - [anon_sym___cdecl] = ACTIONS(2931), - [anon_sym___clrcall] = ACTIONS(2931), - [anon_sym___stdcall] = ACTIONS(2931), - [anon_sym___fastcall] = ACTIONS(2931), - [anon_sym___thiscall] = ACTIONS(2931), - [anon_sym___vectorcall] = ACTIONS(2931), - [anon_sym_LBRACE] = ACTIONS(2933), - [anon_sym_signed] = ACTIONS(2931), - [anon_sym_unsigned] = ACTIONS(2931), - [anon_sym_long] = ACTIONS(2931), - [anon_sym_short] = ACTIONS(2931), - [anon_sym_LBRACK] = ACTIONS(2931), - [anon_sym_static] = ACTIONS(2931), - [anon_sym_register] = ACTIONS(2931), - [anon_sym_inline] = ACTIONS(2931), - [anon_sym___inline] = ACTIONS(2931), - [anon_sym___inline__] = ACTIONS(2931), - [anon_sym___forceinline] = ACTIONS(2931), - [anon_sym_thread_local] = ACTIONS(2931), - [anon_sym___thread] = ACTIONS(2931), - [anon_sym_const] = ACTIONS(2931), - [anon_sym_constexpr] = ACTIONS(2931), - [anon_sym_volatile] = ACTIONS(2931), - [anon_sym_restrict] = ACTIONS(2931), - [anon_sym___restrict__] = ACTIONS(2931), - [anon_sym__Atomic] = ACTIONS(2931), - [anon_sym__Noreturn] = ACTIONS(2931), - [anon_sym_noreturn] = ACTIONS(2931), - [anon_sym__Nonnull] = ACTIONS(2931), - [anon_sym_mutable] = ACTIONS(2931), - [anon_sym_constinit] = ACTIONS(2931), - [anon_sym_consteval] = ACTIONS(2931), - [anon_sym_alignas] = ACTIONS(2931), - [anon_sym__Alignas] = ACTIONS(2931), - [sym_primitive_type] = ACTIONS(2931), - [anon_sym_enum] = ACTIONS(2931), - [anon_sym_class] = ACTIONS(2931), - [anon_sym_struct] = ACTIONS(2931), - [anon_sym_union] = ACTIONS(2931), - [anon_sym_if] = ACTIONS(2931), - [anon_sym_switch] = ACTIONS(2931), - [anon_sym_case] = ACTIONS(2931), - [anon_sym_default] = ACTIONS(2931), - [anon_sym_while] = ACTIONS(2931), - [anon_sym_do] = ACTIONS(2931), - [anon_sym_for] = ACTIONS(2931), - [anon_sym_return] = ACTIONS(2931), - [anon_sym_break] = ACTIONS(2931), - [anon_sym_continue] = ACTIONS(2931), - [anon_sym_goto] = ACTIONS(2931), - [anon_sym___try] = ACTIONS(2931), - [anon_sym___leave] = ACTIONS(2931), - [anon_sym_not] = ACTIONS(2931), - [anon_sym_compl] = ACTIONS(2931), - [anon_sym_DASH_DASH] = ACTIONS(2933), - [anon_sym_PLUS_PLUS] = ACTIONS(2933), - [anon_sym_sizeof] = ACTIONS(2931), - [anon_sym___alignof__] = ACTIONS(2931), - [anon_sym___alignof] = ACTIONS(2931), - [anon_sym__alignof] = ACTIONS(2931), - [anon_sym_alignof] = ACTIONS(2931), - [anon_sym__Alignof] = ACTIONS(2931), - [anon_sym_offsetof] = ACTIONS(2931), - [anon_sym__Generic] = ACTIONS(2931), - [anon_sym_asm] = ACTIONS(2931), - [anon_sym___asm__] = ACTIONS(2931), - [anon_sym___asm] = ACTIONS(2931), - [sym_number_literal] = ACTIONS(2933), - [anon_sym_L_SQUOTE] = ACTIONS(2933), - [anon_sym_u_SQUOTE] = ACTIONS(2933), - [anon_sym_U_SQUOTE] = ACTIONS(2933), - [anon_sym_u8_SQUOTE] = ACTIONS(2933), - [anon_sym_SQUOTE] = ACTIONS(2933), - [anon_sym_L_DQUOTE] = ACTIONS(2933), - [anon_sym_u_DQUOTE] = ACTIONS(2933), - [anon_sym_U_DQUOTE] = ACTIONS(2933), - [anon_sym_u8_DQUOTE] = ACTIONS(2933), - [anon_sym_DQUOTE] = ACTIONS(2933), - [sym_true] = ACTIONS(2931), - [sym_false] = ACTIONS(2931), - [anon_sym_NULL] = ACTIONS(2931), - [anon_sym_nullptr] = ACTIONS(2931), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2931), - [anon_sym_decltype] = ACTIONS(2931), - [anon_sym_explicit] = ACTIONS(2931), - [anon_sym_typename] = ACTIONS(2931), - [anon_sym_template] = ACTIONS(2931), - [anon_sym_operator] = ACTIONS(2931), - [anon_sym_try] = ACTIONS(2931), - [anon_sym_delete] = ACTIONS(2931), - [anon_sym_throw] = ACTIONS(2931), - [anon_sym_namespace] = ACTIONS(2931), - [anon_sym_static_assert] = ACTIONS(2931), - [anon_sym_concept] = ACTIONS(2931), - [anon_sym_co_return] = ACTIONS(2931), - [anon_sym_co_yield] = ACTIONS(2931), - [anon_sym_R_DQUOTE] = ACTIONS(2933), - [anon_sym_LR_DQUOTE] = ACTIONS(2933), - [anon_sym_uR_DQUOTE] = ACTIONS(2933), - [anon_sym_UR_DQUOTE] = ACTIONS(2933), - [anon_sym_u8R_DQUOTE] = ACTIONS(2933), - [anon_sym_co_await] = ACTIONS(2931), - [anon_sym_new] = ACTIONS(2931), - [anon_sym_requires] = ACTIONS(2931), - [sym_this] = ACTIONS(2931), + [744] = { + [sym_identifier] = ACTIONS(3095), + [aux_sym_preproc_include_token1] = ACTIONS(3095), + [aux_sym_preproc_def_token1] = ACTIONS(3095), + [aux_sym_preproc_if_token1] = ACTIONS(3095), + [aux_sym_preproc_if_token2] = ACTIONS(3095), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3095), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3095), + [sym_preproc_directive] = ACTIONS(3095), + [anon_sym_LPAREN2] = ACTIONS(3097), + [anon_sym_BANG] = ACTIONS(3097), + [anon_sym_TILDE] = ACTIONS(3097), + [anon_sym_DASH] = ACTIONS(3095), + [anon_sym_PLUS] = ACTIONS(3095), + [anon_sym_STAR] = ACTIONS(3097), + [anon_sym_AMP_AMP] = ACTIONS(3097), + [anon_sym_AMP] = ACTIONS(3095), + [anon_sym_SEMI] = ACTIONS(3097), + [anon_sym___extension__] = ACTIONS(3095), + [anon_sym_typedef] = ACTIONS(3095), + [anon_sym_virtual] = ACTIONS(3095), + [anon_sym_extern] = ACTIONS(3095), + [anon_sym___attribute__] = ACTIONS(3095), + [anon_sym___attribute] = ACTIONS(3095), + [anon_sym_using] = ACTIONS(3095), + [anon_sym_COLON_COLON] = ACTIONS(3097), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3097), + [anon_sym___declspec] = ACTIONS(3095), + [anon_sym___based] = ACTIONS(3095), + [anon_sym___cdecl] = ACTIONS(3095), + [anon_sym___clrcall] = ACTIONS(3095), + [anon_sym___stdcall] = ACTIONS(3095), + [anon_sym___fastcall] = ACTIONS(3095), + [anon_sym___thiscall] = ACTIONS(3095), + [anon_sym___vectorcall] = ACTIONS(3095), + [anon_sym_LBRACE] = ACTIONS(3097), + [anon_sym_signed] = ACTIONS(3095), + [anon_sym_unsigned] = ACTIONS(3095), + [anon_sym_long] = ACTIONS(3095), + [anon_sym_short] = ACTIONS(3095), + [anon_sym_LBRACK] = ACTIONS(3095), + [anon_sym_static] = ACTIONS(3095), + [anon_sym_register] = ACTIONS(3095), + [anon_sym_inline] = ACTIONS(3095), + [anon_sym___inline] = ACTIONS(3095), + [anon_sym___inline__] = ACTIONS(3095), + [anon_sym___forceinline] = ACTIONS(3095), + [anon_sym_thread_local] = ACTIONS(3095), + [anon_sym___thread] = ACTIONS(3095), + [anon_sym_const] = ACTIONS(3095), + [anon_sym_constexpr] = ACTIONS(3095), + [anon_sym_volatile] = ACTIONS(3095), + [anon_sym_restrict] = ACTIONS(3095), + [anon_sym___restrict__] = ACTIONS(3095), + [anon_sym__Atomic] = ACTIONS(3095), + [anon_sym__Noreturn] = ACTIONS(3095), + [anon_sym_noreturn] = ACTIONS(3095), + [anon_sym__Nonnull] = ACTIONS(3095), + [anon_sym_mutable] = ACTIONS(3095), + [anon_sym_constinit] = ACTIONS(3095), + [anon_sym_consteval] = ACTIONS(3095), + [anon_sym_alignas] = ACTIONS(3095), + [anon_sym__Alignas] = ACTIONS(3095), + [sym_primitive_type] = ACTIONS(3095), + [anon_sym_enum] = ACTIONS(3095), + [anon_sym_class] = ACTIONS(3095), + [anon_sym_struct] = ACTIONS(3095), + [anon_sym_union] = ACTIONS(3095), + [anon_sym_if] = ACTIONS(3095), + [anon_sym_switch] = ACTIONS(3095), + [anon_sym_case] = ACTIONS(3095), + [anon_sym_default] = ACTIONS(3095), + [anon_sym_while] = ACTIONS(3095), + [anon_sym_do] = ACTIONS(3095), + [anon_sym_for] = ACTIONS(3095), + [anon_sym_return] = ACTIONS(3095), + [anon_sym_break] = ACTIONS(3095), + [anon_sym_continue] = ACTIONS(3095), + [anon_sym_goto] = ACTIONS(3095), + [anon_sym___try] = ACTIONS(3095), + [anon_sym___leave] = ACTIONS(3095), + [anon_sym_not] = ACTIONS(3095), + [anon_sym_compl] = ACTIONS(3095), + [anon_sym_DASH_DASH] = ACTIONS(3097), + [anon_sym_PLUS_PLUS] = ACTIONS(3097), + [anon_sym_sizeof] = ACTIONS(3095), + [anon_sym___alignof__] = ACTIONS(3095), + [anon_sym___alignof] = ACTIONS(3095), + [anon_sym__alignof] = ACTIONS(3095), + [anon_sym_alignof] = ACTIONS(3095), + [anon_sym__Alignof] = ACTIONS(3095), + [anon_sym_offsetof] = ACTIONS(3095), + [anon_sym__Generic] = ACTIONS(3095), + [anon_sym_asm] = ACTIONS(3095), + [anon_sym___asm__] = ACTIONS(3095), + [anon_sym___asm] = ACTIONS(3095), + [sym_number_literal] = ACTIONS(3097), + [anon_sym_L_SQUOTE] = ACTIONS(3097), + [anon_sym_u_SQUOTE] = ACTIONS(3097), + [anon_sym_U_SQUOTE] = ACTIONS(3097), + [anon_sym_u8_SQUOTE] = ACTIONS(3097), + [anon_sym_SQUOTE] = ACTIONS(3097), + [anon_sym_L_DQUOTE] = ACTIONS(3097), + [anon_sym_u_DQUOTE] = ACTIONS(3097), + [anon_sym_U_DQUOTE] = ACTIONS(3097), + [anon_sym_u8_DQUOTE] = ACTIONS(3097), + [anon_sym_DQUOTE] = ACTIONS(3097), + [sym_true] = ACTIONS(3095), + [sym_false] = ACTIONS(3095), + [anon_sym_NULL] = ACTIONS(3095), + [anon_sym_nullptr] = ACTIONS(3095), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3095), + [anon_sym_decltype] = ACTIONS(3095), + [anon_sym_explicit] = ACTIONS(3095), + [anon_sym_typename] = ACTIONS(3095), + [anon_sym_template] = ACTIONS(3095), + [anon_sym_operator] = ACTIONS(3095), + [anon_sym_try] = ACTIONS(3095), + [anon_sym_delete] = ACTIONS(3095), + [anon_sym_throw] = ACTIONS(3095), + [anon_sym_namespace] = ACTIONS(3095), + [anon_sym_static_assert] = ACTIONS(3095), + [anon_sym_concept] = ACTIONS(3095), + [anon_sym_co_return] = ACTIONS(3095), + [anon_sym_co_yield] = ACTIONS(3095), + [anon_sym_R_DQUOTE] = ACTIONS(3097), + [anon_sym_LR_DQUOTE] = ACTIONS(3097), + [anon_sym_uR_DQUOTE] = ACTIONS(3097), + [anon_sym_UR_DQUOTE] = ACTIONS(3097), + [anon_sym_u8R_DQUOTE] = ACTIONS(3097), + [anon_sym_co_await] = ACTIONS(3095), + [anon_sym_new] = ACTIONS(3095), + [anon_sym_requires] = ACTIONS(3095), + [sym_this] = ACTIONS(3095), }, - [724] = { - [sym_identifier] = ACTIONS(2935), - [aux_sym_preproc_include_token1] = ACTIONS(2935), - [aux_sym_preproc_def_token1] = ACTIONS(2935), - [aux_sym_preproc_if_token1] = ACTIONS(2935), - [aux_sym_preproc_if_token2] = ACTIONS(2935), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2935), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2935), - [sym_preproc_directive] = ACTIONS(2935), - [anon_sym_LPAREN2] = ACTIONS(2937), - [anon_sym_BANG] = ACTIONS(2937), - [anon_sym_TILDE] = ACTIONS(2937), - [anon_sym_DASH] = ACTIONS(2935), - [anon_sym_PLUS] = ACTIONS(2935), - [anon_sym_STAR] = ACTIONS(2937), - [anon_sym_AMP_AMP] = ACTIONS(2937), - [anon_sym_AMP] = ACTIONS(2935), - [anon_sym_SEMI] = ACTIONS(2937), - [anon_sym___extension__] = ACTIONS(2935), - [anon_sym_typedef] = ACTIONS(2935), - [anon_sym_virtual] = ACTIONS(2935), - [anon_sym_extern] = ACTIONS(2935), - [anon_sym___attribute__] = ACTIONS(2935), - [anon_sym___attribute] = ACTIONS(2935), - [anon_sym_using] = ACTIONS(2935), - [anon_sym_COLON_COLON] = ACTIONS(2937), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2937), - [anon_sym___declspec] = ACTIONS(2935), - [anon_sym___based] = ACTIONS(2935), - [anon_sym___cdecl] = ACTIONS(2935), - [anon_sym___clrcall] = ACTIONS(2935), - [anon_sym___stdcall] = ACTIONS(2935), - [anon_sym___fastcall] = ACTIONS(2935), - [anon_sym___thiscall] = ACTIONS(2935), - [anon_sym___vectorcall] = ACTIONS(2935), - [anon_sym_LBRACE] = ACTIONS(2937), - [anon_sym_signed] = ACTIONS(2935), - [anon_sym_unsigned] = ACTIONS(2935), - [anon_sym_long] = ACTIONS(2935), - [anon_sym_short] = ACTIONS(2935), - [anon_sym_LBRACK] = ACTIONS(2935), - [anon_sym_static] = ACTIONS(2935), - [anon_sym_register] = ACTIONS(2935), - [anon_sym_inline] = ACTIONS(2935), - [anon_sym___inline] = ACTIONS(2935), - [anon_sym___inline__] = ACTIONS(2935), - [anon_sym___forceinline] = ACTIONS(2935), - [anon_sym_thread_local] = ACTIONS(2935), - [anon_sym___thread] = ACTIONS(2935), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_constexpr] = ACTIONS(2935), - [anon_sym_volatile] = ACTIONS(2935), - [anon_sym_restrict] = ACTIONS(2935), - [anon_sym___restrict__] = ACTIONS(2935), - [anon_sym__Atomic] = ACTIONS(2935), - [anon_sym__Noreturn] = ACTIONS(2935), - [anon_sym_noreturn] = ACTIONS(2935), - [anon_sym__Nonnull] = ACTIONS(2935), - [anon_sym_mutable] = ACTIONS(2935), - [anon_sym_constinit] = ACTIONS(2935), - [anon_sym_consteval] = ACTIONS(2935), - [anon_sym_alignas] = ACTIONS(2935), - [anon_sym__Alignas] = ACTIONS(2935), - [sym_primitive_type] = ACTIONS(2935), - [anon_sym_enum] = ACTIONS(2935), - [anon_sym_class] = ACTIONS(2935), - [anon_sym_struct] = ACTIONS(2935), - [anon_sym_union] = ACTIONS(2935), - [anon_sym_if] = ACTIONS(2935), - [anon_sym_switch] = ACTIONS(2935), - [anon_sym_case] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2935), - [anon_sym_while] = ACTIONS(2935), - [anon_sym_do] = ACTIONS(2935), - [anon_sym_for] = ACTIONS(2935), - [anon_sym_return] = ACTIONS(2935), - [anon_sym_break] = ACTIONS(2935), - [anon_sym_continue] = ACTIONS(2935), - [anon_sym_goto] = ACTIONS(2935), - [anon_sym___try] = ACTIONS(2935), - [anon_sym___leave] = ACTIONS(2935), - [anon_sym_not] = ACTIONS(2935), - [anon_sym_compl] = ACTIONS(2935), - [anon_sym_DASH_DASH] = ACTIONS(2937), - [anon_sym_PLUS_PLUS] = ACTIONS(2937), - [anon_sym_sizeof] = ACTIONS(2935), - [anon_sym___alignof__] = ACTIONS(2935), - [anon_sym___alignof] = ACTIONS(2935), - [anon_sym__alignof] = ACTIONS(2935), - [anon_sym_alignof] = ACTIONS(2935), - [anon_sym__Alignof] = ACTIONS(2935), - [anon_sym_offsetof] = ACTIONS(2935), - [anon_sym__Generic] = ACTIONS(2935), - [anon_sym_asm] = ACTIONS(2935), - [anon_sym___asm__] = ACTIONS(2935), - [anon_sym___asm] = ACTIONS(2935), - [sym_number_literal] = ACTIONS(2937), - [anon_sym_L_SQUOTE] = ACTIONS(2937), - [anon_sym_u_SQUOTE] = ACTIONS(2937), - [anon_sym_U_SQUOTE] = ACTIONS(2937), - [anon_sym_u8_SQUOTE] = ACTIONS(2937), - [anon_sym_SQUOTE] = ACTIONS(2937), - [anon_sym_L_DQUOTE] = ACTIONS(2937), - [anon_sym_u_DQUOTE] = ACTIONS(2937), - [anon_sym_U_DQUOTE] = ACTIONS(2937), - [anon_sym_u8_DQUOTE] = ACTIONS(2937), - [anon_sym_DQUOTE] = ACTIONS(2937), - [sym_true] = ACTIONS(2935), - [sym_false] = ACTIONS(2935), - [anon_sym_NULL] = ACTIONS(2935), - [anon_sym_nullptr] = ACTIONS(2935), + [745] = { + [sym_identifier] = ACTIONS(2971), + [aux_sym_preproc_include_token1] = ACTIONS(2971), + [aux_sym_preproc_def_token1] = ACTIONS(2971), + [aux_sym_preproc_if_token1] = ACTIONS(2971), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2971), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2971), + [sym_preproc_directive] = ACTIONS(2971), + [anon_sym_LPAREN2] = ACTIONS(2973), + [anon_sym_BANG] = ACTIONS(2973), + [anon_sym_TILDE] = ACTIONS(2973), + [anon_sym_DASH] = ACTIONS(2971), + [anon_sym_PLUS] = ACTIONS(2971), + [anon_sym_STAR] = ACTIONS(2973), + [anon_sym_AMP_AMP] = ACTIONS(2973), + [anon_sym_AMP] = ACTIONS(2971), + [anon_sym_SEMI] = ACTIONS(2973), + [anon_sym___extension__] = ACTIONS(2971), + [anon_sym_typedef] = ACTIONS(2971), + [anon_sym_virtual] = ACTIONS(2971), + [anon_sym_extern] = ACTIONS(2971), + [anon_sym___attribute__] = ACTIONS(2971), + [anon_sym___attribute] = ACTIONS(2971), + [anon_sym_using] = ACTIONS(2971), + [anon_sym_COLON_COLON] = ACTIONS(2973), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2973), + [anon_sym___declspec] = ACTIONS(2971), + [anon_sym___based] = ACTIONS(2971), + [anon_sym___cdecl] = ACTIONS(2971), + [anon_sym___clrcall] = ACTIONS(2971), + [anon_sym___stdcall] = ACTIONS(2971), + [anon_sym___fastcall] = ACTIONS(2971), + [anon_sym___thiscall] = ACTIONS(2971), + [anon_sym___vectorcall] = ACTIONS(2971), + [anon_sym_LBRACE] = ACTIONS(2973), + [anon_sym_RBRACE] = ACTIONS(2973), + [anon_sym_signed] = ACTIONS(2971), + [anon_sym_unsigned] = ACTIONS(2971), + [anon_sym_long] = ACTIONS(2971), + [anon_sym_short] = ACTIONS(2971), + [anon_sym_LBRACK] = ACTIONS(2971), + [anon_sym_static] = ACTIONS(2971), + [anon_sym_register] = ACTIONS(2971), + [anon_sym_inline] = ACTIONS(2971), + [anon_sym___inline] = ACTIONS(2971), + [anon_sym___inline__] = ACTIONS(2971), + [anon_sym___forceinline] = ACTIONS(2971), + [anon_sym_thread_local] = ACTIONS(2971), + [anon_sym___thread] = ACTIONS(2971), + [anon_sym_const] = ACTIONS(2971), + [anon_sym_constexpr] = ACTIONS(2971), + [anon_sym_volatile] = ACTIONS(2971), + [anon_sym_restrict] = ACTIONS(2971), + [anon_sym___restrict__] = ACTIONS(2971), + [anon_sym__Atomic] = ACTIONS(2971), + [anon_sym__Noreturn] = ACTIONS(2971), + [anon_sym_noreturn] = ACTIONS(2971), + [anon_sym__Nonnull] = ACTIONS(2971), + [anon_sym_mutable] = ACTIONS(2971), + [anon_sym_constinit] = ACTIONS(2971), + [anon_sym_consteval] = ACTIONS(2971), + [anon_sym_alignas] = ACTIONS(2971), + [anon_sym__Alignas] = ACTIONS(2971), + [sym_primitive_type] = ACTIONS(2971), + [anon_sym_enum] = ACTIONS(2971), + [anon_sym_class] = ACTIONS(2971), + [anon_sym_struct] = ACTIONS(2971), + [anon_sym_union] = ACTIONS(2971), + [anon_sym_if] = ACTIONS(2971), + [anon_sym_switch] = ACTIONS(2971), + [anon_sym_case] = ACTIONS(2971), + [anon_sym_default] = ACTIONS(2971), + [anon_sym_while] = ACTIONS(2971), + [anon_sym_do] = ACTIONS(2971), + [anon_sym_for] = ACTIONS(2971), + [anon_sym_return] = ACTIONS(2971), + [anon_sym_break] = ACTIONS(2971), + [anon_sym_continue] = ACTIONS(2971), + [anon_sym_goto] = ACTIONS(2971), + [anon_sym___try] = ACTIONS(2971), + [anon_sym___leave] = ACTIONS(2971), + [anon_sym_not] = ACTIONS(2971), + [anon_sym_compl] = ACTIONS(2971), + [anon_sym_DASH_DASH] = ACTIONS(2973), + [anon_sym_PLUS_PLUS] = ACTIONS(2973), + [anon_sym_sizeof] = ACTIONS(2971), + [anon_sym___alignof__] = ACTIONS(2971), + [anon_sym___alignof] = ACTIONS(2971), + [anon_sym__alignof] = ACTIONS(2971), + [anon_sym_alignof] = ACTIONS(2971), + [anon_sym__Alignof] = ACTIONS(2971), + [anon_sym_offsetof] = ACTIONS(2971), + [anon_sym__Generic] = ACTIONS(2971), + [anon_sym_asm] = ACTIONS(2971), + [anon_sym___asm__] = ACTIONS(2971), + [anon_sym___asm] = ACTIONS(2971), + [sym_number_literal] = ACTIONS(2973), + [anon_sym_L_SQUOTE] = ACTIONS(2973), + [anon_sym_u_SQUOTE] = ACTIONS(2973), + [anon_sym_U_SQUOTE] = ACTIONS(2973), + [anon_sym_u8_SQUOTE] = ACTIONS(2973), + [anon_sym_SQUOTE] = ACTIONS(2973), + [anon_sym_L_DQUOTE] = ACTIONS(2973), + [anon_sym_u_DQUOTE] = ACTIONS(2973), + [anon_sym_U_DQUOTE] = ACTIONS(2973), + [anon_sym_u8_DQUOTE] = ACTIONS(2973), + [anon_sym_DQUOTE] = ACTIONS(2973), + [sym_true] = ACTIONS(2971), + [sym_false] = ACTIONS(2971), + [anon_sym_NULL] = ACTIONS(2971), + [anon_sym_nullptr] = ACTIONS(2971), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2971), + [anon_sym_decltype] = ACTIONS(2971), + [anon_sym_explicit] = ACTIONS(2971), + [anon_sym_typename] = ACTIONS(2971), + [anon_sym_template] = ACTIONS(2971), + [anon_sym_operator] = ACTIONS(2971), + [anon_sym_try] = ACTIONS(2971), + [anon_sym_delete] = ACTIONS(2971), + [anon_sym_throw] = ACTIONS(2971), + [anon_sym_namespace] = ACTIONS(2971), + [anon_sym_static_assert] = ACTIONS(2971), + [anon_sym_concept] = ACTIONS(2971), + [anon_sym_co_return] = ACTIONS(2971), + [anon_sym_co_yield] = ACTIONS(2971), + [anon_sym_R_DQUOTE] = ACTIONS(2973), + [anon_sym_LR_DQUOTE] = ACTIONS(2973), + [anon_sym_uR_DQUOTE] = ACTIONS(2973), + [anon_sym_UR_DQUOTE] = ACTIONS(2973), + [anon_sym_u8R_DQUOTE] = ACTIONS(2973), + [anon_sym_co_await] = ACTIONS(2971), + [anon_sym_new] = ACTIONS(2971), + [anon_sym_requires] = ACTIONS(2971), + [sym_this] = ACTIONS(2971), + }, + [746] = { + [sym_identifier] = ACTIONS(2975), + [aux_sym_preproc_include_token1] = ACTIONS(2975), + [aux_sym_preproc_def_token1] = ACTIONS(2975), + [aux_sym_preproc_if_token1] = ACTIONS(2975), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2975), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2975), + [sym_preproc_directive] = ACTIONS(2975), + [anon_sym_LPAREN2] = ACTIONS(2977), + [anon_sym_BANG] = ACTIONS(2977), + [anon_sym_TILDE] = ACTIONS(2977), + [anon_sym_DASH] = ACTIONS(2975), + [anon_sym_PLUS] = ACTIONS(2975), + [anon_sym_STAR] = ACTIONS(2977), + [anon_sym_AMP_AMP] = ACTIONS(2977), + [anon_sym_AMP] = ACTIONS(2975), + [anon_sym_SEMI] = ACTIONS(2977), + [anon_sym___extension__] = ACTIONS(2975), + [anon_sym_typedef] = ACTIONS(2975), + [anon_sym_virtual] = ACTIONS(2975), + [anon_sym_extern] = ACTIONS(2975), + [anon_sym___attribute__] = ACTIONS(2975), + [anon_sym___attribute] = ACTIONS(2975), + [anon_sym_using] = ACTIONS(2975), + [anon_sym_COLON_COLON] = ACTIONS(2977), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2977), + [anon_sym___declspec] = ACTIONS(2975), + [anon_sym___based] = ACTIONS(2975), + [anon_sym___cdecl] = ACTIONS(2975), + [anon_sym___clrcall] = ACTIONS(2975), + [anon_sym___stdcall] = ACTIONS(2975), + [anon_sym___fastcall] = ACTIONS(2975), + [anon_sym___thiscall] = ACTIONS(2975), + [anon_sym___vectorcall] = ACTIONS(2975), + [anon_sym_LBRACE] = ACTIONS(2977), + [anon_sym_RBRACE] = ACTIONS(2977), + [anon_sym_signed] = ACTIONS(2975), + [anon_sym_unsigned] = ACTIONS(2975), + [anon_sym_long] = ACTIONS(2975), + [anon_sym_short] = ACTIONS(2975), + [anon_sym_LBRACK] = ACTIONS(2975), + [anon_sym_static] = ACTIONS(2975), + [anon_sym_register] = ACTIONS(2975), + [anon_sym_inline] = ACTIONS(2975), + [anon_sym___inline] = ACTIONS(2975), + [anon_sym___inline__] = ACTIONS(2975), + [anon_sym___forceinline] = ACTIONS(2975), + [anon_sym_thread_local] = ACTIONS(2975), + [anon_sym___thread] = ACTIONS(2975), + [anon_sym_const] = ACTIONS(2975), + [anon_sym_constexpr] = ACTIONS(2975), + [anon_sym_volatile] = ACTIONS(2975), + [anon_sym_restrict] = ACTIONS(2975), + [anon_sym___restrict__] = ACTIONS(2975), + [anon_sym__Atomic] = ACTIONS(2975), + [anon_sym__Noreturn] = ACTIONS(2975), + [anon_sym_noreturn] = ACTIONS(2975), + [anon_sym__Nonnull] = ACTIONS(2975), + [anon_sym_mutable] = ACTIONS(2975), + [anon_sym_constinit] = ACTIONS(2975), + [anon_sym_consteval] = ACTIONS(2975), + [anon_sym_alignas] = ACTIONS(2975), + [anon_sym__Alignas] = ACTIONS(2975), + [sym_primitive_type] = ACTIONS(2975), + [anon_sym_enum] = ACTIONS(2975), + [anon_sym_class] = ACTIONS(2975), + [anon_sym_struct] = ACTIONS(2975), + [anon_sym_union] = ACTIONS(2975), + [anon_sym_if] = ACTIONS(2975), + [anon_sym_switch] = ACTIONS(2975), + [anon_sym_case] = ACTIONS(2975), + [anon_sym_default] = ACTIONS(2975), + [anon_sym_while] = ACTIONS(2975), + [anon_sym_do] = ACTIONS(2975), + [anon_sym_for] = ACTIONS(2975), + [anon_sym_return] = ACTIONS(2975), + [anon_sym_break] = ACTIONS(2975), + [anon_sym_continue] = ACTIONS(2975), + [anon_sym_goto] = ACTIONS(2975), + [anon_sym___try] = ACTIONS(2975), + [anon_sym___leave] = ACTIONS(2975), + [anon_sym_not] = ACTIONS(2975), + [anon_sym_compl] = ACTIONS(2975), + [anon_sym_DASH_DASH] = ACTIONS(2977), + [anon_sym_PLUS_PLUS] = ACTIONS(2977), + [anon_sym_sizeof] = ACTIONS(2975), + [anon_sym___alignof__] = ACTIONS(2975), + [anon_sym___alignof] = ACTIONS(2975), + [anon_sym__alignof] = ACTIONS(2975), + [anon_sym_alignof] = ACTIONS(2975), + [anon_sym__Alignof] = ACTIONS(2975), + [anon_sym_offsetof] = ACTIONS(2975), + [anon_sym__Generic] = ACTIONS(2975), + [anon_sym_asm] = ACTIONS(2975), + [anon_sym___asm__] = ACTIONS(2975), + [anon_sym___asm] = ACTIONS(2975), + [sym_number_literal] = ACTIONS(2977), + [anon_sym_L_SQUOTE] = ACTIONS(2977), + [anon_sym_u_SQUOTE] = ACTIONS(2977), + [anon_sym_U_SQUOTE] = ACTIONS(2977), + [anon_sym_u8_SQUOTE] = ACTIONS(2977), + [anon_sym_SQUOTE] = ACTIONS(2977), + [anon_sym_L_DQUOTE] = ACTIONS(2977), + [anon_sym_u_DQUOTE] = ACTIONS(2977), + [anon_sym_U_DQUOTE] = ACTIONS(2977), + [anon_sym_u8_DQUOTE] = ACTIONS(2977), + [anon_sym_DQUOTE] = ACTIONS(2977), + [sym_true] = ACTIONS(2975), + [sym_false] = ACTIONS(2975), + [anon_sym_NULL] = ACTIONS(2975), + [anon_sym_nullptr] = ACTIONS(2975), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2975), + [anon_sym_decltype] = ACTIONS(2975), + [anon_sym_explicit] = ACTIONS(2975), + [anon_sym_typename] = ACTIONS(2975), + [anon_sym_template] = ACTIONS(2975), + [anon_sym_operator] = ACTIONS(2975), + [anon_sym_try] = ACTIONS(2975), + [anon_sym_delete] = ACTIONS(2975), + [anon_sym_throw] = ACTIONS(2975), + [anon_sym_namespace] = ACTIONS(2975), + [anon_sym_static_assert] = ACTIONS(2975), + [anon_sym_concept] = ACTIONS(2975), + [anon_sym_co_return] = ACTIONS(2975), + [anon_sym_co_yield] = ACTIONS(2975), + [anon_sym_R_DQUOTE] = ACTIONS(2977), + [anon_sym_LR_DQUOTE] = ACTIONS(2977), + [anon_sym_uR_DQUOTE] = ACTIONS(2977), + [anon_sym_UR_DQUOTE] = ACTIONS(2977), + [anon_sym_u8R_DQUOTE] = ACTIONS(2977), + [anon_sym_co_await] = ACTIONS(2975), + [anon_sym_new] = ACTIONS(2975), + [anon_sym_requires] = ACTIONS(2975), + [sym_this] = ACTIONS(2975), + }, + [747] = { + [sym_identifier] = ACTIONS(3101), + [aux_sym_preproc_include_token1] = ACTIONS(3101), + [aux_sym_preproc_def_token1] = ACTIONS(3101), + [aux_sym_preproc_if_token1] = ACTIONS(3101), + [aux_sym_preproc_if_token2] = ACTIONS(3101), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3101), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3101), + [sym_preproc_directive] = ACTIONS(3101), + [anon_sym_LPAREN2] = ACTIONS(3103), + [anon_sym_BANG] = ACTIONS(3103), + [anon_sym_TILDE] = ACTIONS(3103), + [anon_sym_DASH] = ACTIONS(3101), + [anon_sym_PLUS] = ACTIONS(3101), + [anon_sym_STAR] = ACTIONS(3103), + [anon_sym_AMP_AMP] = ACTIONS(3103), + [anon_sym_AMP] = ACTIONS(3101), + [anon_sym_SEMI] = ACTIONS(3103), + [anon_sym___extension__] = ACTIONS(3101), + [anon_sym_typedef] = ACTIONS(3101), + [anon_sym_virtual] = ACTIONS(3101), + [anon_sym_extern] = ACTIONS(3101), + [anon_sym___attribute__] = ACTIONS(3101), + [anon_sym___attribute] = ACTIONS(3101), + [anon_sym_using] = ACTIONS(3101), + [anon_sym_COLON_COLON] = ACTIONS(3103), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3103), + [anon_sym___declspec] = ACTIONS(3101), + [anon_sym___based] = ACTIONS(3101), + [anon_sym___cdecl] = ACTIONS(3101), + [anon_sym___clrcall] = ACTIONS(3101), + [anon_sym___stdcall] = ACTIONS(3101), + [anon_sym___fastcall] = ACTIONS(3101), + [anon_sym___thiscall] = ACTIONS(3101), + [anon_sym___vectorcall] = ACTIONS(3101), + [anon_sym_LBRACE] = ACTIONS(3103), + [anon_sym_signed] = ACTIONS(3101), + [anon_sym_unsigned] = ACTIONS(3101), + [anon_sym_long] = ACTIONS(3101), + [anon_sym_short] = ACTIONS(3101), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_static] = ACTIONS(3101), + [anon_sym_register] = ACTIONS(3101), + [anon_sym_inline] = ACTIONS(3101), + [anon_sym___inline] = ACTIONS(3101), + [anon_sym___inline__] = ACTIONS(3101), + [anon_sym___forceinline] = ACTIONS(3101), + [anon_sym_thread_local] = ACTIONS(3101), + [anon_sym___thread] = ACTIONS(3101), + [anon_sym_const] = ACTIONS(3101), + [anon_sym_constexpr] = ACTIONS(3101), + [anon_sym_volatile] = ACTIONS(3101), + [anon_sym_restrict] = ACTIONS(3101), + [anon_sym___restrict__] = ACTIONS(3101), + [anon_sym__Atomic] = ACTIONS(3101), + [anon_sym__Noreturn] = ACTIONS(3101), + [anon_sym_noreturn] = ACTIONS(3101), + [anon_sym__Nonnull] = ACTIONS(3101), + [anon_sym_mutable] = ACTIONS(3101), + [anon_sym_constinit] = ACTIONS(3101), + [anon_sym_consteval] = ACTIONS(3101), + [anon_sym_alignas] = ACTIONS(3101), + [anon_sym__Alignas] = ACTIONS(3101), + [sym_primitive_type] = ACTIONS(3101), + [anon_sym_enum] = ACTIONS(3101), + [anon_sym_class] = ACTIONS(3101), + [anon_sym_struct] = ACTIONS(3101), + [anon_sym_union] = ACTIONS(3101), + [anon_sym_if] = ACTIONS(3101), + [anon_sym_switch] = ACTIONS(3101), + [anon_sym_case] = ACTIONS(3101), + [anon_sym_default] = ACTIONS(3101), + [anon_sym_while] = ACTIONS(3101), + [anon_sym_do] = ACTIONS(3101), + [anon_sym_for] = ACTIONS(3101), + [anon_sym_return] = ACTIONS(3101), + [anon_sym_break] = ACTIONS(3101), + [anon_sym_continue] = ACTIONS(3101), + [anon_sym_goto] = ACTIONS(3101), + [anon_sym___try] = ACTIONS(3101), + [anon_sym___leave] = ACTIONS(3101), + [anon_sym_not] = ACTIONS(3101), + [anon_sym_compl] = ACTIONS(3101), + [anon_sym_DASH_DASH] = ACTIONS(3103), + [anon_sym_PLUS_PLUS] = ACTIONS(3103), + [anon_sym_sizeof] = ACTIONS(3101), + [anon_sym___alignof__] = ACTIONS(3101), + [anon_sym___alignof] = ACTIONS(3101), + [anon_sym__alignof] = ACTIONS(3101), + [anon_sym_alignof] = ACTIONS(3101), + [anon_sym__Alignof] = ACTIONS(3101), + [anon_sym_offsetof] = ACTIONS(3101), + [anon_sym__Generic] = ACTIONS(3101), + [anon_sym_asm] = ACTIONS(3101), + [anon_sym___asm__] = ACTIONS(3101), + [anon_sym___asm] = ACTIONS(3101), + [sym_number_literal] = ACTIONS(3103), + [anon_sym_L_SQUOTE] = ACTIONS(3103), + [anon_sym_u_SQUOTE] = ACTIONS(3103), + [anon_sym_U_SQUOTE] = ACTIONS(3103), + [anon_sym_u8_SQUOTE] = ACTIONS(3103), + [anon_sym_SQUOTE] = ACTIONS(3103), + [anon_sym_L_DQUOTE] = ACTIONS(3103), + [anon_sym_u_DQUOTE] = ACTIONS(3103), + [anon_sym_U_DQUOTE] = ACTIONS(3103), + [anon_sym_u8_DQUOTE] = ACTIONS(3103), + [anon_sym_DQUOTE] = ACTIONS(3103), + [sym_true] = ACTIONS(3101), + [sym_false] = ACTIONS(3101), + [anon_sym_NULL] = ACTIONS(3101), + [anon_sym_nullptr] = ACTIONS(3101), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3101), + [anon_sym_decltype] = ACTIONS(3101), + [anon_sym_explicit] = ACTIONS(3101), + [anon_sym_typename] = ACTIONS(3101), + [anon_sym_template] = ACTIONS(3101), + [anon_sym_operator] = ACTIONS(3101), + [anon_sym_try] = ACTIONS(3101), + [anon_sym_delete] = ACTIONS(3101), + [anon_sym_throw] = ACTIONS(3101), + [anon_sym_namespace] = ACTIONS(3101), + [anon_sym_static_assert] = ACTIONS(3101), + [anon_sym_concept] = ACTIONS(3101), + [anon_sym_co_return] = ACTIONS(3101), + [anon_sym_co_yield] = ACTIONS(3101), + [anon_sym_R_DQUOTE] = ACTIONS(3103), + [anon_sym_LR_DQUOTE] = ACTIONS(3103), + [anon_sym_uR_DQUOTE] = ACTIONS(3103), + [anon_sym_UR_DQUOTE] = ACTIONS(3103), + [anon_sym_u8R_DQUOTE] = ACTIONS(3103), + [anon_sym_co_await] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3101), + [anon_sym_requires] = ACTIONS(3101), + [sym_this] = ACTIONS(3101), + }, + [748] = { + [sym_identifier] = ACTIONS(3105), + [aux_sym_preproc_include_token1] = ACTIONS(3105), + [aux_sym_preproc_def_token1] = ACTIONS(3105), + [aux_sym_preproc_if_token1] = ACTIONS(3105), + [aux_sym_preproc_if_token2] = ACTIONS(3105), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3105), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3105), + [sym_preproc_directive] = ACTIONS(3105), + [anon_sym_LPAREN2] = ACTIONS(3107), + [anon_sym_BANG] = ACTIONS(3107), + [anon_sym_TILDE] = ACTIONS(3107), + [anon_sym_DASH] = ACTIONS(3105), + [anon_sym_PLUS] = ACTIONS(3105), + [anon_sym_STAR] = ACTIONS(3107), + [anon_sym_AMP_AMP] = ACTIONS(3107), + [anon_sym_AMP] = ACTIONS(3105), + [anon_sym_SEMI] = ACTIONS(3107), + [anon_sym___extension__] = ACTIONS(3105), + [anon_sym_typedef] = ACTIONS(3105), + [anon_sym_virtual] = ACTIONS(3105), + [anon_sym_extern] = ACTIONS(3105), + [anon_sym___attribute__] = ACTIONS(3105), + [anon_sym___attribute] = ACTIONS(3105), + [anon_sym_using] = ACTIONS(3105), + [anon_sym_COLON_COLON] = ACTIONS(3107), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3107), + [anon_sym___declspec] = ACTIONS(3105), + [anon_sym___based] = ACTIONS(3105), + [anon_sym___cdecl] = ACTIONS(3105), + [anon_sym___clrcall] = ACTIONS(3105), + [anon_sym___stdcall] = ACTIONS(3105), + [anon_sym___fastcall] = ACTIONS(3105), + [anon_sym___thiscall] = ACTIONS(3105), + [anon_sym___vectorcall] = ACTIONS(3105), + [anon_sym_LBRACE] = ACTIONS(3107), + [anon_sym_signed] = ACTIONS(3105), + [anon_sym_unsigned] = ACTIONS(3105), + [anon_sym_long] = ACTIONS(3105), + [anon_sym_short] = ACTIONS(3105), + [anon_sym_LBRACK] = ACTIONS(3105), + [anon_sym_static] = ACTIONS(3105), + [anon_sym_register] = ACTIONS(3105), + [anon_sym_inline] = ACTIONS(3105), + [anon_sym___inline] = ACTIONS(3105), + [anon_sym___inline__] = ACTIONS(3105), + [anon_sym___forceinline] = ACTIONS(3105), + [anon_sym_thread_local] = ACTIONS(3105), + [anon_sym___thread] = ACTIONS(3105), + [anon_sym_const] = ACTIONS(3105), + [anon_sym_constexpr] = ACTIONS(3105), + [anon_sym_volatile] = ACTIONS(3105), + [anon_sym_restrict] = ACTIONS(3105), + [anon_sym___restrict__] = ACTIONS(3105), + [anon_sym__Atomic] = ACTIONS(3105), + [anon_sym__Noreturn] = ACTIONS(3105), + [anon_sym_noreturn] = ACTIONS(3105), + [anon_sym__Nonnull] = ACTIONS(3105), + [anon_sym_mutable] = ACTIONS(3105), + [anon_sym_constinit] = ACTIONS(3105), + [anon_sym_consteval] = ACTIONS(3105), + [anon_sym_alignas] = ACTIONS(3105), + [anon_sym__Alignas] = ACTIONS(3105), + [sym_primitive_type] = ACTIONS(3105), + [anon_sym_enum] = ACTIONS(3105), + [anon_sym_class] = ACTIONS(3105), + [anon_sym_struct] = ACTIONS(3105), + [anon_sym_union] = ACTIONS(3105), + [anon_sym_if] = ACTIONS(3105), + [anon_sym_switch] = ACTIONS(3105), + [anon_sym_case] = ACTIONS(3105), + [anon_sym_default] = ACTIONS(3105), + [anon_sym_while] = ACTIONS(3105), + [anon_sym_do] = ACTIONS(3105), + [anon_sym_for] = ACTIONS(3105), + [anon_sym_return] = ACTIONS(3105), + [anon_sym_break] = ACTIONS(3105), + [anon_sym_continue] = ACTIONS(3105), + [anon_sym_goto] = ACTIONS(3105), + [anon_sym___try] = ACTIONS(3105), + [anon_sym___leave] = ACTIONS(3105), + [anon_sym_not] = ACTIONS(3105), + [anon_sym_compl] = ACTIONS(3105), + [anon_sym_DASH_DASH] = ACTIONS(3107), + [anon_sym_PLUS_PLUS] = ACTIONS(3107), + [anon_sym_sizeof] = ACTIONS(3105), + [anon_sym___alignof__] = ACTIONS(3105), + [anon_sym___alignof] = ACTIONS(3105), + [anon_sym__alignof] = ACTIONS(3105), + [anon_sym_alignof] = ACTIONS(3105), + [anon_sym__Alignof] = ACTIONS(3105), + [anon_sym_offsetof] = ACTIONS(3105), + [anon_sym__Generic] = ACTIONS(3105), + [anon_sym_asm] = ACTIONS(3105), + [anon_sym___asm__] = ACTIONS(3105), + [anon_sym___asm] = ACTIONS(3105), + [sym_number_literal] = ACTIONS(3107), + [anon_sym_L_SQUOTE] = ACTIONS(3107), + [anon_sym_u_SQUOTE] = ACTIONS(3107), + [anon_sym_U_SQUOTE] = ACTIONS(3107), + [anon_sym_u8_SQUOTE] = ACTIONS(3107), + [anon_sym_SQUOTE] = ACTIONS(3107), + [anon_sym_L_DQUOTE] = ACTIONS(3107), + [anon_sym_u_DQUOTE] = ACTIONS(3107), + [anon_sym_U_DQUOTE] = ACTIONS(3107), + [anon_sym_u8_DQUOTE] = ACTIONS(3107), + [anon_sym_DQUOTE] = ACTIONS(3107), + [sym_true] = ACTIONS(3105), + [sym_false] = ACTIONS(3105), + [anon_sym_NULL] = ACTIONS(3105), + [anon_sym_nullptr] = ACTIONS(3105), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3105), + [anon_sym_decltype] = ACTIONS(3105), + [anon_sym_explicit] = ACTIONS(3105), + [anon_sym_typename] = ACTIONS(3105), + [anon_sym_template] = ACTIONS(3105), + [anon_sym_operator] = ACTIONS(3105), + [anon_sym_try] = ACTIONS(3105), + [anon_sym_delete] = ACTIONS(3105), + [anon_sym_throw] = ACTIONS(3105), + [anon_sym_namespace] = ACTIONS(3105), + [anon_sym_static_assert] = ACTIONS(3105), + [anon_sym_concept] = ACTIONS(3105), + [anon_sym_co_return] = ACTIONS(3105), + [anon_sym_co_yield] = ACTIONS(3105), + [anon_sym_R_DQUOTE] = ACTIONS(3107), + [anon_sym_LR_DQUOTE] = ACTIONS(3107), + [anon_sym_uR_DQUOTE] = ACTIONS(3107), + [anon_sym_UR_DQUOTE] = ACTIONS(3107), + [anon_sym_u8R_DQUOTE] = ACTIONS(3107), + [anon_sym_co_await] = ACTIONS(3105), + [anon_sym_new] = ACTIONS(3105), + [anon_sym_requires] = ACTIONS(3105), + [sym_this] = ACTIONS(3105), + }, + [749] = { + [sym_identifier] = ACTIONS(3112), + [aux_sym_preproc_include_token1] = ACTIONS(3112), + [aux_sym_preproc_def_token1] = ACTIONS(3112), + [aux_sym_preproc_if_token1] = ACTIONS(3112), + [aux_sym_preproc_if_token2] = ACTIONS(3112), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3112), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3112), + [sym_preproc_directive] = ACTIONS(3112), + [anon_sym_LPAREN2] = ACTIONS(3114), + [anon_sym_BANG] = ACTIONS(3114), + [anon_sym_TILDE] = ACTIONS(3114), + [anon_sym_DASH] = ACTIONS(3112), + [anon_sym_PLUS] = ACTIONS(3112), + [anon_sym_STAR] = ACTIONS(3114), + [anon_sym_AMP_AMP] = ACTIONS(3114), + [anon_sym_AMP] = ACTIONS(3112), + [anon_sym_SEMI] = ACTIONS(3114), + [anon_sym___extension__] = ACTIONS(3112), + [anon_sym_typedef] = ACTIONS(3112), + [anon_sym_virtual] = ACTIONS(3112), + [anon_sym_extern] = ACTIONS(3112), + [anon_sym___attribute__] = ACTIONS(3112), + [anon_sym___attribute] = ACTIONS(3112), + [anon_sym_using] = ACTIONS(3112), + [anon_sym_COLON_COLON] = ACTIONS(3114), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3114), + [anon_sym___declspec] = ACTIONS(3112), + [anon_sym___based] = ACTIONS(3112), + [anon_sym___cdecl] = ACTIONS(3112), + [anon_sym___clrcall] = ACTIONS(3112), + [anon_sym___stdcall] = ACTIONS(3112), + [anon_sym___fastcall] = ACTIONS(3112), + [anon_sym___thiscall] = ACTIONS(3112), + [anon_sym___vectorcall] = ACTIONS(3112), + [anon_sym_LBRACE] = ACTIONS(3114), + [anon_sym_signed] = ACTIONS(3112), + [anon_sym_unsigned] = ACTIONS(3112), + [anon_sym_long] = ACTIONS(3112), + [anon_sym_short] = ACTIONS(3112), + [anon_sym_LBRACK] = ACTIONS(3112), + [anon_sym_static] = ACTIONS(3112), + [anon_sym_register] = ACTIONS(3112), + [anon_sym_inline] = ACTIONS(3112), + [anon_sym___inline] = ACTIONS(3112), + [anon_sym___inline__] = ACTIONS(3112), + [anon_sym___forceinline] = ACTIONS(3112), + [anon_sym_thread_local] = ACTIONS(3112), + [anon_sym___thread] = ACTIONS(3112), + [anon_sym_const] = ACTIONS(3112), + [anon_sym_constexpr] = ACTIONS(3112), + [anon_sym_volatile] = ACTIONS(3112), + [anon_sym_restrict] = ACTIONS(3112), + [anon_sym___restrict__] = ACTIONS(3112), + [anon_sym__Atomic] = ACTIONS(3112), + [anon_sym__Noreturn] = ACTIONS(3112), + [anon_sym_noreturn] = ACTIONS(3112), + [anon_sym__Nonnull] = ACTIONS(3112), + [anon_sym_mutable] = ACTIONS(3112), + [anon_sym_constinit] = ACTIONS(3112), + [anon_sym_consteval] = ACTIONS(3112), + [anon_sym_alignas] = ACTIONS(3112), + [anon_sym__Alignas] = ACTIONS(3112), + [sym_primitive_type] = ACTIONS(3112), + [anon_sym_enum] = ACTIONS(3112), + [anon_sym_class] = ACTIONS(3112), + [anon_sym_struct] = ACTIONS(3112), + [anon_sym_union] = ACTIONS(3112), + [anon_sym_if] = ACTIONS(3112), + [anon_sym_switch] = ACTIONS(3112), + [anon_sym_case] = ACTIONS(3112), + [anon_sym_default] = ACTIONS(3112), + [anon_sym_while] = ACTIONS(3112), + [anon_sym_do] = ACTIONS(3112), + [anon_sym_for] = ACTIONS(3112), + [anon_sym_return] = ACTIONS(3112), + [anon_sym_break] = ACTIONS(3112), + [anon_sym_continue] = ACTIONS(3112), + [anon_sym_goto] = ACTIONS(3112), + [anon_sym___try] = ACTIONS(3112), + [anon_sym___leave] = ACTIONS(3112), + [anon_sym_not] = ACTIONS(3112), + [anon_sym_compl] = ACTIONS(3112), + [anon_sym_DASH_DASH] = ACTIONS(3114), + [anon_sym_PLUS_PLUS] = ACTIONS(3114), + [anon_sym_sizeof] = ACTIONS(3112), + [anon_sym___alignof__] = ACTIONS(3112), + [anon_sym___alignof] = ACTIONS(3112), + [anon_sym__alignof] = ACTIONS(3112), + [anon_sym_alignof] = ACTIONS(3112), + [anon_sym__Alignof] = ACTIONS(3112), + [anon_sym_offsetof] = ACTIONS(3112), + [anon_sym__Generic] = ACTIONS(3112), + [anon_sym_asm] = ACTIONS(3112), + [anon_sym___asm__] = ACTIONS(3112), + [anon_sym___asm] = ACTIONS(3112), + [sym_number_literal] = ACTIONS(3114), + [anon_sym_L_SQUOTE] = ACTIONS(3114), + [anon_sym_u_SQUOTE] = ACTIONS(3114), + [anon_sym_U_SQUOTE] = ACTIONS(3114), + [anon_sym_u8_SQUOTE] = ACTIONS(3114), + [anon_sym_SQUOTE] = ACTIONS(3114), + [anon_sym_L_DQUOTE] = ACTIONS(3114), + [anon_sym_u_DQUOTE] = ACTIONS(3114), + [anon_sym_U_DQUOTE] = ACTIONS(3114), + [anon_sym_u8_DQUOTE] = ACTIONS(3114), + [anon_sym_DQUOTE] = ACTIONS(3114), + [sym_true] = ACTIONS(3112), + [sym_false] = ACTIONS(3112), + [anon_sym_NULL] = ACTIONS(3112), + [anon_sym_nullptr] = ACTIONS(3112), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2935), - [anon_sym_decltype] = ACTIONS(2935), - [anon_sym_explicit] = ACTIONS(2935), - [anon_sym_typename] = ACTIONS(2935), - [anon_sym_template] = ACTIONS(2935), - [anon_sym_operator] = ACTIONS(2935), - [anon_sym_try] = ACTIONS(2935), - [anon_sym_delete] = ACTIONS(2935), - [anon_sym_throw] = ACTIONS(2935), - [anon_sym_namespace] = ACTIONS(2935), - [anon_sym_static_assert] = ACTIONS(2935), - [anon_sym_concept] = ACTIONS(2935), - [anon_sym_co_return] = ACTIONS(2935), - [anon_sym_co_yield] = ACTIONS(2935), - [anon_sym_R_DQUOTE] = ACTIONS(2937), - [anon_sym_LR_DQUOTE] = ACTIONS(2937), - [anon_sym_uR_DQUOTE] = ACTIONS(2937), - [anon_sym_UR_DQUOTE] = ACTIONS(2937), - [anon_sym_u8R_DQUOTE] = ACTIONS(2937), - [anon_sym_co_await] = ACTIONS(2935), - [anon_sym_new] = ACTIONS(2935), - [anon_sym_requires] = ACTIONS(2935), - [sym_this] = ACTIONS(2935), + [sym_auto] = ACTIONS(3112), + [anon_sym_decltype] = ACTIONS(3112), + [anon_sym_explicit] = ACTIONS(3112), + [anon_sym_typename] = ACTIONS(3112), + [anon_sym_template] = ACTIONS(3112), + [anon_sym_operator] = ACTIONS(3112), + [anon_sym_try] = ACTIONS(3112), + [anon_sym_delete] = ACTIONS(3112), + [anon_sym_throw] = ACTIONS(3112), + [anon_sym_namespace] = ACTIONS(3112), + [anon_sym_static_assert] = ACTIONS(3112), + [anon_sym_concept] = ACTIONS(3112), + [anon_sym_co_return] = ACTIONS(3112), + [anon_sym_co_yield] = ACTIONS(3112), + [anon_sym_R_DQUOTE] = ACTIONS(3114), + [anon_sym_LR_DQUOTE] = ACTIONS(3114), + [anon_sym_uR_DQUOTE] = ACTIONS(3114), + [anon_sym_UR_DQUOTE] = ACTIONS(3114), + [anon_sym_u8R_DQUOTE] = ACTIONS(3114), + [anon_sym_co_await] = ACTIONS(3112), + [anon_sym_new] = ACTIONS(3112), + [anon_sym_requires] = ACTIONS(3112), + [sym_this] = ACTIONS(3112), }, - [725] = { - [sym_identifier] = ACTIONS(2939), - [aux_sym_preproc_include_token1] = ACTIONS(2939), - [aux_sym_preproc_def_token1] = ACTIONS(2939), - [aux_sym_preproc_if_token1] = ACTIONS(2939), - [aux_sym_preproc_if_token2] = ACTIONS(2939), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2939), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2939), - [sym_preproc_directive] = ACTIONS(2939), - [anon_sym_LPAREN2] = ACTIONS(2941), - [anon_sym_BANG] = ACTIONS(2941), - [anon_sym_TILDE] = ACTIONS(2941), - [anon_sym_DASH] = ACTIONS(2939), - [anon_sym_PLUS] = ACTIONS(2939), - [anon_sym_STAR] = ACTIONS(2941), - [anon_sym_AMP_AMP] = ACTIONS(2941), - [anon_sym_AMP] = ACTIONS(2939), - [anon_sym_SEMI] = ACTIONS(2941), - [anon_sym___extension__] = ACTIONS(2939), - [anon_sym_typedef] = ACTIONS(2939), - [anon_sym_virtual] = ACTIONS(2939), - [anon_sym_extern] = ACTIONS(2939), - [anon_sym___attribute__] = ACTIONS(2939), - [anon_sym___attribute] = ACTIONS(2939), - [anon_sym_using] = ACTIONS(2939), - [anon_sym_COLON_COLON] = ACTIONS(2941), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2941), - [anon_sym___declspec] = ACTIONS(2939), - [anon_sym___based] = ACTIONS(2939), - [anon_sym___cdecl] = ACTIONS(2939), - [anon_sym___clrcall] = ACTIONS(2939), - [anon_sym___stdcall] = ACTIONS(2939), - [anon_sym___fastcall] = ACTIONS(2939), - [anon_sym___thiscall] = ACTIONS(2939), - [anon_sym___vectorcall] = ACTIONS(2939), - [anon_sym_LBRACE] = ACTIONS(2941), - [anon_sym_signed] = ACTIONS(2939), - [anon_sym_unsigned] = ACTIONS(2939), - [anon_sym_long] = ACTIONS(2939), - [anon_sym_short] = ACTIONS(2939), - [anon_sym_LBRACK] = ACTIONS(2939), - [anon_sym_static] = ACTIONS(2939), - [anon_sym_register] = ACTIONS(2939), - [anon_sym_inline] = ACTIONS(2939), - [anon_sym___inline] = ACTIONS(2939), - [anon_sym___inline__] = ACTIONS(2939), - [anon_sym___forceinline] = ACTIONS(2939), - [anon_sym_thread_local] = ACTIONS(2939), - [anon_sym___thread] = ACTIONS(2939), - [anon_sym_const] = ACTIONS(2939), - [anon_sym_constexpr] = ACTIONS(2939), - [anon_sym_volatile] = ACTIONS(2939), - [anon_sym_restrict] = ACTIONS(2939), - [anon_sym___restrict__] = ACTIONS(2939), - [anon_sym__Atomic] = ACTIONS(2939), - [anon_sym__Noreturn] = ACTIONS(2939), - [anon_sym_noreturn] = ACTIONS(2939), - [anon_sym__Nonnull] = ACTIONS(2939), - [anon_sym_mutable] = ACTIONS(2939), - [anon_sym_constinit] = ACTIONS(2939), - [anon_sym_consteval] = ACTIONS(2939), - [anon_sym_alignas] = ACTIONS(2939), - [anon_sym__Alignas] = ACTIONS(2939), - [sym_primitive_type] = ACTIONS(2939), - [anon_sym_enum] = ACTIONS(2939), - [anon_sym_class] = ACTIONS(2939), - [anon_sym_struct] = ACTIONS(2939), - [anon_sym_union] = ACTIONS(2939), - [anon_sym_if] = ACTIONS(2939), - [anon_sym_switch] = ACTIONS(2939), - [anon_sym_case] = ACTIONS(2939), - [anon_sym_default] = ACTIONS(2939), - [anon_sym_while] = ACTIONS(2939), - [anon_sym_do] = ACTIONS(2939), - [anon_sym_for] = ACTIONS(2939), - [anon_sym_return] = ACTIONS(2939), - [anon_sym_break] = ACTIONS(2939), - [anon_sym_continue] = ACTIONS(2939), - [anon_sym_goto] = ACTIONS(2939), - [anon_sym___try] = ACTIONS(2939), - [anon_sym___leave] = ACTIONS(2939), - [anon_sym_not] = ACTIONS(2939), - [anon_sym_compl] = ACTIONS(2939), - [anon_sym_DASH_DASH] = ACTIONS(2941), - [anon_sym_PLUS_PLUS] = ACTIONS(2941), - [anon_sym_sizeof] = ACTIONS(2939), - [anon_sym___alignof__] = ACTIONS(2939), - [anon_sym___alignof] = ACTIONS(2939), - [anon_sym__alignof] = ACTIONS(2939), - [anon_sym_alignof] = ACTIONS(2939), - [anon_sym__Alignof] = ACTIONS(2939), - [anon_sym_offsetof] = ACTIONS(2939), - [anon_sym__Generic] = ACTIONS(2939), - [anon_sym_asm] = ACTIONS(2939), - [anon_sym___asm__] = ACTIONS(2939), - [anon_sym___asm] = ACTIONS(2939), - [sym_number_literal] = ACTIONS(2941), - [anon_sym_L_SQUOTE] = ACTIONS(2941), - [anon_sym_u_SQUOTE] = ACTIONS(2941), - [anon_sym_U_SQUOTE] = ACTIONS(2941), - [anon_sym_u8_SQUOTE] = ACTIONS(2941), - [anon_sym_SQUOTE] = ACTIONS(2941), - [anon_sym_L_DQUOTE] = ACTIONS(2941), - [anon_sym_u_DQUOTE] = ACTIONS(2941), - [anon_sym_U_DQUOTE] = ACTIONS(2941), - [anon_sym_u8_DQUOTE] = ACTIONS(2941), - [anon_sym_DQUOTE] = ACTIONS(2941), - [sym_true] = ACTIONS(2939), - [sym_false] = ACTIONS(2939), - [anon_sym_NULL] = ACTIONS(2939), - [anon_sym_nullptr] = ACTIONS(2939), + [750] = { + [sym_identifier] = ACTIONS(3116), + [aux_sym_preproc_include_token1] = ACTIONS(3116), + [aux_sym_preproc_def_token1] = ACTIONS(3116), + [aux_sym_preproc_if_token1] = ACTIONS(3116), + [aux_sym_preproc_if_token2] = ACTIONS(3116), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3116), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3116), + [sym_preproc_directive] = ACTIONS(3116), + [anon_sym_LPAREN2] = ACTIONS(3118), + [anon_sym_BANG] = ACTIONS(3118), + [anon_sym_TILDE] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3116), + [anon_sym_PLUS] = ACTIONS(3116), + [anon_sym_STAR] = ACTIONS(3118), + [anon_sym_AMP_AMP] = ACTIONS(3118), + [anon_sym_AMP] = ACTIONS(3116), + [anon_sym_SEMI] = ACTIONS(3118), + [anon_sym___extension__] = ACTIONS(3116), + [anon_sym_typedef] = ACTIONS(3116), + [anon_sym_virtual] = ACTIONS(3116), + [anon_sym_extern] = ACTIONS(3116), + [anon_sym___attribute__] = ACTIONS(3116), + [anon_sym___attribute] = ACTIONS(3116), + [anon_sym_using] = ACTIONS(3116), + [anon_sym_COLON_COLON] = ACTIONS(3118), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3118), + [anon_sym___declspec] = ACTIONS(3116), + [anon_sym___based] = ACTIONS(3116), + [anon_sym___cdecl] = ACTIONS(3116), + [anon_sym___clrcall] = ACTIONS(3116), + [anon_sym___stdcall] = ACTIONS(3116), + [anon_sym___fastcall] = ACTIONS(3116), + [anon_sym___thiscall] = ACTIONS(3116), + [anon_sym___vectorcall] = ACTIONS(3116), + [anon_sym_LBRACE] = ACTIONS(3118), + [anon_sym_signed] = ACTIONS(3116), + [anon_sym_unsigned] = ACTIONS(3116), + [anon_sym_long] = ACTIONS(3116), + [anon_sym_short] = ACTIONS(3116), + [anon_sym_LBRACK] = ACTIONS(3116), + [anon_sym_static] = ACTIONS(3116), + [anon_sym_register] = ACTIONS(3116), + [anon_sym_inline] = ACTIONS(3116), + [anon_sym___inline] = ACTIONS(3116), + [anon_sym___inline__] = ACTIONS(3116), + [anon_sym___forceinline] = ACTIONS(3116), + [anon_sym_thread_local] = ACTIONS(3116), + [anon_sym___thread] = ACTIONS(3116), + [anon_sym_const] = ACTIONS(3116), + [anon_sym_constexpr] = ACTIONS(3116), + [anon_sym_volatile] = ACTIONS(3116), + [anon_sym_restrict] = ACTIONS(3116), + [anon_sym___restrict__] = ACTIONS(3116), + [anon_sym__Atomic] = ACTIONS(3116), + [anon_sym__Noreturn] = ACTIONS(3116), + [anon_sym_noreturn] = ACTIONS(3116), + [anon_sym__Nonnull] = ACTIONS(3116), + [anon_sym_mutable] = ACTIONS(3116), + [anon_sym_constinit] = ACTIONS(3116), + [anon_sym_consteval] = ACTIONS(3116), + [anon_sym_alignas] = ACTIONS(3116), + [anon_sym__Alignas] = ACTIONS(3116), + [sym_primitive_type] = ACTIONS(3116), + [anon_sym_enum] = ACTIONS(3116), + [anon_sym_class] = ACTIONS(3116), + [anon_sym_struct] = ACTIONS(3116), + [anon_sym_union] = ACTIONS(3116), + [anon_sym_if] = ACTIONS(3116), + [anon_sym_switch] = ACTIONS(3116), + [anon_sym_case] = ACTIONS(3116), + [anon_sym_default] = ACTIONS(3116), + [anon_sym_while] = ACTIONS(3116), + [anon_sym_do] = ACTIONS(3116), + [anon_sym_for] = ACTIONS(3116), + [anon_sym_return] = ACTIONS(3116), + [anon_sym_break] = ACTIONS(3116), + [anon_sym_continue] = ACTIONS(3116), + [anon_sym_goto] = ACTIONS(3116), + [anon_sym___try] = ACTIONS(3116), + [anon_sym___leave] = ACTIONS(3116), + [anon_sym_not] = ACTIONS(3116), + [anon_sym_compl] = ACTIONS(3116), + [anon_sym_DASH_DASH] = ACTIONS(3118), + [anon_sym_PLUS_PLUS] = ACTIONS(3118), + [anon_sym_sizeof] = ACTIONS(3116), + [anon_sym___alignof__] = ACTIONS(3116), + [anon_sym___alignof] = ACTIONS(3116), + [anon_sym__alignof] = ACTIONS(3116), + [anon_sym_alignof] = ACTIONS(3116), + [anon_sym__Alignof] = ACTIONS(3116), + [anon_sym_offsetof] = ACTIONS(3116), + [anon_sym__Generic] = ACTIONS(3116), + [anon_sym_asm] = ACTIONS(3116), + [anon_sym___asm__] = ACTIONS(3116), + [anon_sym___asm] = ACTIONS(3116), + [sym_number_literal] = ACTIONS(3118), + [anon_sym_L_SQUOTE] = ACTIONS(3118), + [anon_sym_u_SQUOTE] = ACTIONS(3118), + [anon_sym_U_SQUOTE] = ACTIONS(3118), + [anon_sym_u8_SQUOTE] = ACTIONS(3118), + [anon_sym_SQUOTE] = ACTIONS(3118), + [anon_sym_L_DQUOTE] = ACTIONS(3118), + [anon_sym_u_DQUOTE] = ACTIONS(3118), + [anon_sym_U_DQUOTE] = ACTIONS(3118), + [anon_sym_u8_DQUOTE] = ACTIONS(3118), + [anon_sym_DQUOTE] = ACTIONS(3118), + [sym_true] = ACTIONS(3116), + [sym_false] = ACTIONS(3116), + [anon_sym_NULL] = ACTIONS(3116), + [anon_sym_nullptr] = ACTIONS(3116), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3116), + [anon_sym_decltype] = ACTIONS(3116), + [anon_sym_explicit] = ACTIONS(3116), + [anon_sym_typename] = ACTIONS(3116), + [anon_sym_template] = ACTIONS(3116), + [anon_sym_operator] = ACTIONS(3116), + [anon_sym_try] = ACTIONS(3116), + [anon_sym_delete] = ACTIONS(3116), + [anon_sym_throw] = ACTIONS(3116), + [anon_sym_namespace] = ACTIONS(3116), + [anon_sym_static_assert] = ACTIONS(3116), + [anon_sym_concept] = ACTIONS(3116), + [anon_sym_co_return] = ACTIONS(3116), + [anon_sym_co_yield] = ACTIONS(3116), + [anon_sym_R_DQUOTE] = ACTIONS(3118), + [anon_sym_LR_DQUOTE] = ACTIONS(3118), + [anon_sym_uR_DQUOTE] = ACTIONS(3118), + [anon_sym_UR_DQUOTE] = ACTIONS(3118), + [anon_sym_u8R_DQUOTE] = ACTIONS(3118), + [anon_sym_co_await] = ACTIONS(3116), + [anon_sym_new] = ACTIONS(3116), + [anon_sym_requires] = ACTIONS(3116), + [sym_this] = ACTIONS(3116), + }, + [751] = { + [sym_identifier] = ACTIONS(3120), + [aux_sym_preproc_include_token1] = ACTIONS(3120), + [aux_sym_preproc_def_token1] = ACTIONS(3120), + [aux_sym_preproc_if_token1] = ACTIONS(3120), + [aux_sym_preproc_if_token2] = ACTIONS(3120), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3120), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3120), + [sym_preproc_directive] = ACTIONS(3120), + [anon_sym_LPAREN2] = ACTIONS(3122), + [anon_sym_BANG] = ACTIONS(3122), + [anon_sym_TILDE] = ACTIONS(3122), + [anon_sym_DASH] = ACTIONS(3120), + [anon_sym_PLUS] = ACTIONS(3120), + [anon_sym_STAR] = ACTIONS(3122), + [anon_sym_AMP_AMP] = ACTIONS(3122), + [anon_sym_AMP] = ACTIONS(3120), + [anon_sym_SEMI] = ACTIONS(3122), + [anon_sym___extension__] = ACTIONS(3120), + [anon_sym_typedef] = ACTIONS(3120), + [anon_sym_virtual] = ACTIONS(3120), + [anon_sym_extern] = ACTIONS(3120), + [anon_sym___attribute__] = ACTIONS(3120), + [anon_sym___attribute] = ACTIONS(3120), + [anon_sym_using] = ACTIONS(3120), + [anon_sym_COLON_COLON] = ACTIONS(3122), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3122), + [anon_sym___declspec] = ACTIONS(3120), + [anon_sym___based] = ACTIONS(3120), + [anon_sym___cdecl] = ACTIONS(3120), + [anon_sym___clrcall] = ACTIONS(3120), + [anon_sym___stdcall] = ACTIONS(3120), + [anon_sym___fastcall] = ACTIONS(3120), + [anon_sym___thiscall] = ACTIONS(3120), + [anon_sym___vectorcall] = ACTIONS(3120), + [anon_sym_LBRACE] = ACTIONS(3122), + [anon_sym_signed] = ACTIONS(3120), + [anon_sym_unsigned] = ACTIONS(3120), + [anon_sym_long] = ACTIONS(3120), + [anon_sym_short] = ACTIONS(3120), + [anon_sym_LBRACK] = ACTIONS(3120), + [anon_sym_static] = ACTIONS(3120), + [anon_sym_register] = ACTIONS(3120), + [anon_sym_inline] = ACTIONS(3120), + [anon_sym___inline] = ACTIONS(3120), + [anon_sym___inline__] = ACTIONS(3120), + [anon_sym___forceinline] = ACTIONS(3120), + [anon_sym_thread_local] = ACTIONS(3120), + [anon_sym___thread] = ACTIONS(3120), + [anon_sym_const] = ACTIONS(3120), + [anon_sym_constexpr] = ACTIONS(3120), + [anon_sym_volatile] = ACTIONS(3120), + [anon_sym_restrict] = ACTIONS(3120), + [anon_sym___restrict__] = ACTIONS(3120), + [anon_sym__Atomic] = ACTIONS(3120), + [anon_sym__Noreturn] = ACTIONS(3120), + [anon_sym_noreturn] = ACTIONS(3120), + [anon_sym__Nonnull] = ACTIONS(3120), + [anon_sym_mutable] = ACTIONS(3120), + [anon_sym_constinit] = ACTIONS(3120), + [anon_sym_consteval] = ACTIONS(3120), + [anon_sym_alignas] = ACTIONS(3120), + [anon_sym__Alignas] = ACTIONS(3120), + [sym_primitive_type] = ACTIONS(3120), + [anon_sym_enum] = ACTIONS(3120), + [anon_sym_class] = ACTIONS(3120), + [anon_sym_struct] = ACTIONS(3120), + [anon_sym_union] = ACTIONS(3120), + [anon_sym_if] = ACTIONS(3120), + [anon_sym_switch] = ACTIONS(3120), + [anon_sym_case] = ACTIONS(3120), + [anon_sym_default] = ACTIONS(3120), + [anon_sym_while] = ACTIONS(3120), + [anon_sym_do] = ACTIONS(3120), + [anon_sym_for] = ACTIONS(3120), + [anon_sym_return] = ACTIONS(3120), + [anon_sym_break] = ACTIONS(3120), + [anon_sym_continue] = ACTIONS(3120), + [anon_sym_goto] = ACTIONS(3120), + [anon_sym___try] = ACTIONS(3120), + [anon_sym___leave] = ACTIONS(3120), + [anon_sym_not] = ACTIONS(3120), + [anon_sym_compl] = ACTIONS(3120), + [anon_sym_DASH_DASH] = ACTIONS(3122), + [anon_sym_PLUS_PLUS] = ACTIONS(3122), + [anon_sym_sizeof] = ACTIONS(3120), + [anon_sym___alignof__] = ACTIONS(3120), + [anon_sym___alignof] = ACTIONS(3120), + [anon_sym__alignof] = ACTIONS(3120), + [anon_sym_alignof] = ACTIONS(3120), + [anon_sym__Alignof] = ACTIONS(3120), + [anon_sym_offsetof] = ACTIONS(3120), + [anon_sym__Generic] = ACTIONS(3120), + [anon_sym_asm] = ACTIONS(3120), + [anon_sym___asm__] = ACTIONS(3120), + [anon_sym___asm] = ACTIONS(3120), + [sym_number_literal] = ACTIONS(3122), + [anon_sym_L_SQUOTE] = ACTIONS(3122), + [anon_sym_u_SQUOTE] = ACTIONS(3122), + [anon_sym_U_SQUOTE] = ACTIONS(3122), + [anon_sym_u8_SQUOTE] = ACTIONS(3122), + [anon_sym_SQUOTE] = ACTIONS(3122), + [anon_sym_L_DQUOTE] = ACTIONS(3122), + [anon_sym_u_DQUOTE] = ACTIONS(3122), + [anon_sym_U_DQUOTE] = ACTIONS(3122), + [anon_sym_u8_DQUOTE] = ACTIONS(3122), + [anon_sym_DQUOTE] = ACTIONS(3122), + [sym_true] = ACTIONS(3120), + [sym_false] = ACTIONS(3120), + [anon_sym_NULL] = ACTIONS(3120), + [anon_sym_nullptr] = ACTIONS(3120), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3120), + [anon_sym_decltype] = ACTIONS(3120), + [anon_sym_explicit] = ACTIONS(3120), + [anon_sym_typename] = ACTIONS(3120), + [anon_sym_template] = ACTIONS(3120), + [anon_sym_operator] = ACTIONS(3120), + [anon_sym_try] = ACTIONS(3120), + [anon_sym_delete] = ACTIONS(3120), + [anon_sym_throw] = ACTIONS(3120), + [anon_sym_namespace] = ACTIONS(3120), + [anon_sym_static_assert] = ACTIONS(3120), + [anon_sym_concept] = ACTIONS(3120), + [anon_sym_co_return] = ACTIONS(3120), + [anon_sym_co_yield] = ACTIONS(3120), + [anon_sym_R_DQUOTE] = ACTIONS(3122), + [anon_sym_LR_DQUOTE] = ACTIONS(3122), + [anon_sym_uR_DQUOTE] = ACTIONS(3122), + [anon_sym_UR_DQUOTE] = ACTIONS(3122), + [anon_sym_u8R_DQUOTE] = ACTIONS(3122), + [anon_sym_co_await] = ACTIONS(3120), + [anon_sym_new] = ACTIONS(3120), + [anon_sym_requires] = ACTIONS(3120), + [sym_this] = ACTIONS(3120), + }, + [752] = { + [sym_identifier] = ACTIONS(3124), + [aux_sym_preproc_include_token1] = ACTIONS(3124), + [aux_sym_preproc_def_token1] = ACTIONS(3124), + [aux_sym_preproc_if_token1] = ACTIONS(3124), + [aux_sym_preproc_if_token2] = ACTIONS(3124), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3124), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3124), + [sym_preproc_directive] = ACTIONS(3124), + [anon_sym_LPAREN2] = ACTIONS(3126), + [anon_sym_BANG] = ACTIONS(3126), + [anon_sym_TILDE] = ACTIONS(3126), + [anon_sym_DASH] = ACTIONS(3124), + [anon_sym_PLUS] = ACTIONS(3124), + [anon_sym_STAR] = ACTIONS(3126), + [anon_sym_AMP_AMP] = ACTIONS(3126), + [anon_sym_AMP] = ACTIONS(3124), + [anon_sym_SEMI] = ACTIONS(3126), + [anon_sym___extension__] = ACTIONS(3124), + [anon_sym_typedef] = ACTIONS(3124), + [anon_sym_virtual] = ACTIONS(3124), + [anon_sym_extern] = ACTIONS(3124), + [anon_sym___attribute__] = ACTIONS(3124), + [anon_sym___attribute] = ACTIONS(3124), + [anon_sym_using] = ACTIONS(3124), + [anon_sym_COLON_COLON] = ACTIONS(3126), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3126), + [anon_sym___declspec] = ACTIONS(3124), + [anon_sym___based] = ACTIONS(3124), + [anon_sym___cdecl] = ACTIONS(3124), + [anon_sym___clrcall] = ACTIONS(3124), + [anon_sym___stdcall] = ACTIONS(3124), + [anon_sym___fastcall] = ACTIONS(3124), + [anon_sym___thiscall] = ACTIONS(3124), + [anon_sym___vectorcall] = ACTIONS(3124), + [anon_sym_LBRACE] = ACTIONS(3126), + [anon_sym_signed] = ACTIONS(3124), + [anon_sym_unsigned] = ACTIONS(3124), + [anon_sym_long] = ACTIONS(3124), + [anon_sym_short] = ACTIONS(3124), + [anon_sym_LBRACK] = ACTIONS(3124), + [anon_sym_static] = ACTIONS(3124), + [anon_sym_register] = ACTIONS(3124), + [anon_sym_inline] = ACTIONS(3124), + [anon_sym___inline] = ACTIONS(3124), + [anon_sym___inline__] = ACTIONS(3124), + [anon_sym___forceinline] = ACTIONS(3124), + [anon_sym_thread_local] = ACTIONS(3124), + [anon_sym___thread] = ACTIONS(3124), + [anon_sym_const] = ACTIONS(3124), + [anon_sym_constexpr] = ACTIONS(3124), + [anon_sym_volatile] = ACTIONS(3124), + [anon_sym_restrict] = ACTIONS(3124), + [anon_sym___restrict__] = ACTIONS(3124), + [anon_sym__Atomic] = ACTIONS(3124), + [anon_sym__Noreturn] = ACTIONS(3124), + [anon_sym_noreturn] = ACTIONS(3124), + [anon_sym__Nonnull] = ACTIONS(3124), + [anon_sym_mutable] = ACTIONS(3124), + [anon_sym_constinit] = ACTIONS(3124), + [anon_sym_consteval] = ACTIONS(3124), + [anon_sym_alignas] = ACTIONS(3124), + [anon_sym__Alignas] = ACTIONS(3124), + [sym_primitive_type] = ACTIONS(3124), + [anon_sym_enum] = ACTIONS(3124), + [anon_sym_class] = ACTIONS(3124), + [anon_sym_struct] = ACTIONS(3124), + [anon_sym_union] = ACTIONS(3124), + [anon_sym_if] = ACTIONS(3124), + [anon_sym_switch] = ACTIONS(3124), + [anon_sym_case] = ACTIONS(3124), + [anon_sym_default] = ACTIONS(3124), + [anon_sym_while] = ACTIONS(3124), + [anon_sym_do] = ACTIONS(3124), + [anon_sym_for] = ACTIONS(3124), + [anon_sym_return] = ACTIONS(3124), + [anon_sym_break] = ACTIONS(3124), + [anon_sym_continue] = ACTIONS(3124), + [anon_sym_goto] = ACTIONS(3124), + [anon_sym___try] = ACTIONS(3124), + [anon_sym___leave] = ACTIONS(3124), + [anon_sym_not] = ACTIONS(3124), + [anon_sym_compl] = ACTIONS(3124), + [anon_sym_DASH_DASH] = ACTIONS(3126), + [anon_sym_PLUS_PLUS] = ACTIONS(3126), + [anon_sym_sizeof] = ACTIONS(3124), + [anon_sym___alignof__] = ACTIONS(3124), + [anon_sym___alignof] = ACTIONS(3124), + [anon_sym__alignof] = ACTIONS(3124), + [anon_sym_alignof] = ACTIONS(3124), + [anon_sym__Alignof] = ACTIONS(3124), + [anon_sym_offsetof] = ACTIONS(3124), + [anon_sym__Generic] = ACTIONS(3124), + [anon_sym_asm] = ACTIONS(3124), + [anon_sym___asm__] = ACTIONS(3124), + [anon_sym___asm] = ACTIONS(3124), + [sym_number_literal] = ACTIONS(3126), + [anon_sym_L_SQUOTE] = ACTIONS(3126), + [anon_sym_u_SQUOTE] = ACTIONS(3126), + [anon_sym_U_SQUOTE] = ACTIONS(3126), + [anon_sym_u8_SQUOTE] = ACTIONS(3126), + [anon_sym_SQUOTE] = ACTIONS(3126), + [anon_sym_L_DQUOTE] = ACTIONS(3126), + [anon_sym_u_DQUOTE] = ACTIONS(3126), + [anon_sym_U_DQUOTE] = ACTIONS(3126), + [anon_sym_u8_DQUOTE] = ACTIONS(3126), + [anon_sym_DQUOTE] = ACTIONS(3126), + [sym_true] = ACTIONS(3124), + [sym_false] = ACTIONS(3124), + [anon_sym_NULL] = ACTIONS(3124), + [anon_sym_nullptr] = ACTIONS(3124), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3124), + [anon_sym_decltype] = ACTIONS(3124), + [anon_sym_explicit] = ACTIONS(3124), + [anon_sym_typename] = ACTIONS(3124), + [anon_sym_template] = ACTIONS(3124), + [anon_sym_operator] = ACTIONS(3124), + [anon_sym_try] = ACTIONS(3124), + [anon_sym_delete] = ACTIONS(3124), + [anon_sym_throw] = ACTIONS(3124), + [anon_sym_namespace] = ACTIONS(3124), + [anon_sym_static_assert] = ACTIONS(3124), + [anon_sym_concept] = ACTIONS(3124), + [anon_sym_co_return] = ACTIONS(3124), + [anon_sym_co_yield] = ACTIONS(3124), + [anon_sym_R_DQUOTE] = ACTIONS(3126), + [anon_sym_LR_DQUOTE] = ACTIONS(3126), + [anon_sym_uR_DQUOTE] = ACTIONS(3126), + [anon_sym_UR_DQUOTE] = ACTIONS(3126), + [anon_sym_u8R_DQUOTE] = ACTIONS(3126), + [anon_sym_co_await] = ACTIONS(3124), + [anon_sym_new] = ACTIONS(3124), + [anon_sym_requires] = ACTIONS(3124), + [sym_this] = ACTIONS(3124), + }, + [753] = { + [sym_identifier] = ACTIONS(2967), + [aux_sym_preproc_include_token1] = ACTIONS(2967), + [aux_sym_preproc_def_token1] = ACTIONS(2967), + [aux_sym_preproc_if_token1] = ACTIONS(2967), + [aux_sym_preproc_if_token2] = ACTIONS(2967), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2967), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2967), + [sym_preproc_directive] = ACTIONS(2967), + [anon_sym_LPAREN2] = ACTIONS(2969), + [anon_sym_BANG] = ACTIONS(2969), + [anon_sym_TILDE] = ACTIONS(2969), + [anon_sym_DASH] = ACTIONS(2967), + [anon_sym_PLUS] = ACTIONS(2967), + [anon_sym_STAR] = ACTIONS(2969), + [anon_sym_AMP_AMP] = ACTIONS(2969), + [anon_sym_AMP] = ACTIONS(2967), + [anon_sym_SEMI] = ACTIONS(2969), + [anon_sym___extension__] = ACTIONS(2967), + [anon_sym_typedef] = ACTIONS(2967), + [anon_sym_virtual] = ACTIONS(2967), + [anon_sym_extern] = ACTIONS(2967), + [anon_sym___attribute__] = ACTIONS(2967), + [anon_sym___attribute] = ACTIONS(2967), + [anon_sym_using] = ACTIONS(2967), + [anon_sym_COLON_COLON] = ACTIONS(2969), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2969), + [anon_sym___declspec] = ACTIONS(2967), + [anon_sym___based] = ACTIONS(2967), + [anon_sym___cdecl] = ACTIONS(2967), + [anon_sym___clrcall] = ACTIONS(2967), + [anon_sym___stdcall] = ACTIONS(2967), + [anon_sym___fastcall] = ACTIONS(2967), + [anon_sym___thiscall] = ACTIONS(2967), + [anon_sym___vectorcall] = ACTIONS(2967), + [anon_sym_LBRACE] = ACTIONS(2969), + [anon_sym_signed] = ACTIONS(2967), + [anon_sym_unsigned] = ACTIONS(2967), + [anon_sym_long] = ACTIONS(2967), + [anon_sym_short] = ACTIONS(2967), + [anon_sym_LBRACK] = ACTIONS(2967), + [anon_sym_static] = ACTIONS(2967), + [anon_sym_register] = ACTIONS(2967), + [anon_sym_inline] = ACTIONS(2967), + [anon_sym___inline] = ACTIONS(2967), + [anon_sym___inline__] = ACTIONS(2967), + [anon_sym___forceinline] = ACTIONS(2967), + [anon_sym_thread_local] = ACTIONS(2967), + [anon_sym___thread] = ACTIONS(2967), + [anon_sym_const] = ACTIONS(2967), + [anon_sym_constexpr] = ACTIONS(2967), + [anon_sym_volatile] = ACTIONS(2967), + [anon_sym_restrict] = ACTIONS(2967), + [anon_sym___restrict__] = ACTIONS(2967), + [anon_sym__Atomic] = ACTIONS(2967), + [anon_sym__Noreturn] = ACTIONS(2967), + [anon_sym_noreturn] = ACTIONS(2967), + [anon_sym__Nonnull] = ACTIONS(2967), + [anon_sym_mutable] = ACTIONS(2967), + [anon_sym_constinit] = ACTIONS(2967), + [anon_sym_consteval] = ACTIONS(2967), + [anon_sym_alignas] = ACTIONS(2967), + [anon_sym__Alignas] = ACTIONS(2967), + [sym_primitive_type] = ACTIONS(2967), + [anon_sym_enum] = ACTIONS(2967), + [anon_sym_class] = ACTIONS(2967), + [anon_sym_struct] = ACTIONS(2967), + [anon_sym_union] = ACTIONS(2967), + [anon_sym_if] = ACTIONS(2967), + [anon_sym_switch] = ACTIONS(2967), + [anon_sym_case] = ACTIONS(2967), + [anon_sym_default] = ACTIONS(2967), + [anon_sym_while] = ACTIONS(2967), + [anon_sym_do] = ACTIONS(2967), + [anon_sym_for] = ACTIONS(2967), + [anon_sym_return] = ACTIONS(2967), + [anon_sym_break] = ACTIONS(2967), + [anon_sym_continue] = ACTIONS(2967), + [anon_sym_goto] = ACTIONS(2967), + [anon_sym___try] = ACTIONS(2967), + [anon_sym___leave] = ACTIONS(2967), + [anon_sym_not] = ACTIONS(2967), + [anon_sym_compl] = ACTIONS(2967), + [anon_sym_DASH_DASH] = ACTIONS(2969), + [anon_sym_PLUS_PLUS] = ACTIONS(2969), + [anon_sym_sizeof] = ACTIONS(2967), + [anon_sym___alignof__] = ACTIONS(2967), + [anon_sym___alignof] = ACTIONS(2967), + [anon_sym__alignof] = ACTIONS(2967), + [anon_sym_alignof] = ACTIONS(2967), + [anon_sym__Alignof] = ACTIONS(2967), + [anon_sym_offsetof] = ACTIONS(2967), + [anon_sym__Generic] = ACTIONS(2967), + [anon_sym_asm] = ACTIONS(2967), + [anon_sym___asm__] = ACTIONS(2967), + [anon_sym___asm] = ACTIONS(2967), + [sym_number_literal] = ACTIONS(2969), + [anon_sym_L_SQUOTE] = ACTIONS(2969), + [anon_sym_u_SQUOTE] = ACTIONS(2969), + [anon_sym_U_SQUOTE] = ACTIONS(2969), + [anon_sym_u8_SQUOTE] = ACTIONS(2969), + [anon_sym_SQUOTE] = ACTIONS(2969), + [anon_sym_L_DQUOTE] = ACTIONS(2969), + [anon_sym_u_DQUOTE] = ACTIONS(2969), + [anon_sym_U_DQUOTE] = ACTIONS(2969), + [anon_sym_u8_DQUOTE] = ACTIONS(2969), + [anon_sym_DQUOTE] = ACTIONS(2969), + [sym_true] = ACTIONS(2967), + [sym_false] = ACTIONS(2967), + [anon_sym_NULL] = ACTIONS(2967), + [anon_sym_nullptr] = ACTIONS(2967), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2967), + [anon_sym_decltype] = ACTIONS(2967), + [anon_sym_explicit] = ACTIONS(2967), + [anon_sym_typename] = ACTIONS(2967), + [anon_sym_template] = ACTIONS(2967), + [anon_sym_operator] = ACTIONS(2967), + [anon_sym_try] = ACTIONS(2967), + [anon_sym_delete] = ACTIONS(2967), + [anon_sym_throw] = ACTIONS(2967), + [anon_sym_namespace] = ACTIONS(2967), + [anon_sym_static_assert] = ACTIONS(2967), + [anon_sym_concept] = ACTIONS(2967), + [anon_sym_co_return] = ACTIONS(2967), + [anon_sym_co_yield] = ACTIONS(2967), + [anon_sym_R_DQUOTE] = ACTIONS(2969), + [anon_sym_LR_DQUOTE] = ACTIONS(2969), + [anon_sym_uR_DQUOTE] = ACTIONS(2969), + [anon_sym_UR_DQUOTE] = ACTIONS(2969), + [anon_sym_u8R_DQUOTE] = ACTIONS(2969), + [anon_sym_co_await] = ACTIONS(2967), + [anon_sym_new] = ACTIONS(2967), + [anon_sym_requires] = ACTIONS(2967), + [sym_this] = ACTIONS(2967), + }, + [754] = { + [sym_identifier] = ACTIONS(3039), + [aux_sym_preproc_include_token1] = ACTIONS(3039), + [aux_sym_preproc_def_token1] = ACTIONS(3039), + [aux_sym_preproc_if_token1] = ACTIONS(3039), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3039), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3039), + [sym_preproc_directive] = ACTIONS(3039), + [anon_sym_LPAREN2] = ACTIONS(3041), + [anon_sym_BANG] = ACTIONS(3041), + [anon_sym_TILDE] = ACTIONS(3041), + [anon_sym_DASH] = ACTIONS(3039), + [anon_sym_PLUS] = ACTIONS(3039), + [anon_sym_STAR] = ACTIONS(3041), + [anon_sym_AMP_AMP] = ACTIONS(3041), + [anon_sym_AMP] = ACTIONS(3039), + [anon_sym_SEMI] = ACTIONS(3041), + [anon_sym___extension__] = ACTIONS(3039), + [anon_sym_typedef] = ACTIONS(3039), + [anon_sym_virtual] = ACTIONS(3039), + [anon_sym_extern] = ACTIONS(3039), + [anon_sym___attribute__] = ACTIONS(3039), + [anon_sym___attribute] = ACTIONS(3039), + [anon_sym_using] = ACTIONS(3039), + [anon_sym_COLON_COLON] = ACTIONS(3041), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3041), + [anon_sym___declspec] = ACTIONS(3039), + [anon_sym___based] = ACTIONS(3039), + [anon_sym___cdecl] = ACTIONS(3039), + [anon_sym___clrcall] = ACTIONS(3039), + [anon_sym___stdcall] = ACTIONS(3039), + [anon_sym___fastcall] = ACTIONS(3039), + [anon_sym___thiscall] = ACTIONS(3039), + [anon_sym___vectorcall] = ACTIONS(3039), + [anon_sym_LBRACE] = ACTIONS(3041), + [anon_sym_RBRACE] = ACTIONS(3041), + [anon_sym_signed] = ACTIONS(3039), + [anon_sym_unsigned] = ACTIONS(3039), + [anon_sym_long] = ACTIONS(3039), + [anon_sym_short] = ACTIONS(3039), + [anon_sym_LBRACK] = ACTIONS(3039), + [anon_sym_static] = ACTIONS(3039), + [anon_sym_register] = ACTIONS(3039), + [anon_sym_inline] = ACTIONS(3039), + [anon_sym___inline] = ACTIONS(3039), + [anon_sym___inline__] = ACTIONS(3039), + [anon_sym___forceinline] = ACTIONS(3039), + [anon_sym_thread_local] = ACTIONS(3039), + [anon_sym___thread] = ACTIONS(3039), + [anon_sym_const] = ACTIONS(3039), + [anon_sym_constexpr] = ACTIONS(3039), + [anon_sym_volatile] = ACTIONS(3039), + [anon_sym_restrict] = ACTIONS(3039), + [anon_sym___restrict__] = ACTIONS(3039), + [anon_sym__Atomic] = ACTIONS(3039), + [anon_sym__Noreturn] = ACTIONS(3039), + [anon_sym_noreturn] = ACTIONS(3039), + [anon_sym__Nonnull] = ACTIONS(3039), + [anon_sym_mutable] = ACTIONS(3039), + [anon_sym_constinit] = ACTIONS(3039), + [anon_sym_consteval] = ACTIONS(3039), + [anon_sym_alignas] = ACTIONS(3039), + [anon_sym__Alignas] = ACTIONS(3039), + [sym_primitive_type] = ACTIONS(3039), + [anon_sym_enum] = ACTIONS(3039), + [anon_sym_class] = ACTIONS(3039), + [anon_sym_struct] = ACTIONS(3039), + [anon_sym_union] = ACTIONS(3039), + [anon_sym_if] = ACTIONS(3039), + [anon_sym_switch] = ACTIONS(3039), + [anon_sym_case] = ACTIONS(3039), + [anon_sym_default] = ACTIONS(3039), + [anon_sym_while] = ACTIONS(3039), + [anon_sym_do] = ACTIONS(3039), + [anon_sym_for] = ACTIONS(3039), + [anon_sym_return] = ACTIONS(3039), + [anon_sym_break] = ACTIONS(3039), + [anon_sym_continue] = ACTIONS(3039), + [anon_sym_goto] = ACTIONS(3039), + [anon_sym___try] = ACTIONS(3039), + [anon_sym___leave] = ACTIONS(3039), + [anon_sym_not] = ACTIONS(3039), + [anon_sym_compl] = ACTIONS(3039), + [anon_sym_DASH_DASH] = ACTIONS(3041), + [anon_sym_PLUS_PLUS] = ACTIONS(3041), + [anon_sym_sizeof] = ACTIONS(3039), + [anon_sym___alignof__] = ACTIONS(3039), + [anon_sym___alignof] = ACTIONS(3039), + [anon_sym__alignof] = ACTIONS(3039), + [anon_sym_alignof] = ACTIONS(3039), + [anon_sym__Alignof] = ACTIONS(3039), + [anon_sym_offsetof] = ACTIONS(3039), + [anon_sym__Generic] = ACTIONS(3039), + [anon_sym_asm] = ACTIONS(3039), + [anon_sym___asm__] = ACTIONS(3039), + [anon_sym___asm] = ACTIONS(3039), + [sym_number_literal] = ACTIONS(3041), + [anon_sym_L_SQUOTE] = ACTIONS(3041), + [anon_sym_u_SQUOTE] = ACTIONS(3041), + [anon_sym_U_SQUOTE] = ACTIONS(3041), + [anon_sym_u8_SQUOTE] = ACTIONS(3041), + [anon_sym_SQUOTE] = ACTIONS(3041), + [anon_sym_L_DQUOTE] = ACTIONS(3041), + [anon_sym_u_DQUOTE] = ACTIONS(3041), + [anon_sym_U_DQUOTE] = ACTIONS(3041), + [anon_sym_u8_DQUOTE] = ACTIONS(3041), + [anon_sym_DQUOTE] = ACTIONS(3041), + [sym_true] = ACTIONS(3039), + [sym_false] = ACTIONS(3039), + [anon_sym_NULL] = ACTIONS(3039), + [anon_sym_nullptr] = ACTIONS(3039), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2939), - [anon_sym_decltype] = ACTIONS(2939), - [anon_sym_explicit] = ACTIONS(2939), - [anon_sym_typename] = ACTIONS(2939), - [anon_sym_template] = ACTIONS(2939), - [anon_sym_operator] = ACTIONS(2939), - [anon_sym_try] = ACTIONS(2939), - [anon_sym_delete] = ACTIONS(2939), - [anon_sym_throw] = ACTIONS(2939), - [anon_sym_namespace] = ACTIONS(2939), - [anon_sym_static_assert] = ACTIONS(2939), - [anon_sym_concept] = ACTIONS(2939), - [anon_sym_co_return] = ACTIONS(2939), - [anon_sym_co_yield] = ACTIONS(2939), - [anon_sym_R_DQUOTE] = ACTIONS(2941), - [anon_sym_LR_DQUOTE] = ACTIONS(2941), - [anon_sym_uR_DQUOTE] = ACTIONS(2941), - [anon_sym_UR_DQUOTE] = ACTIONS(2941), - [anon_sym_u8R_DQUOTE] = ACTIONS(2941), - [anon_sym_co_await] = ACTIONS(2939), - [anon_sym_new] = ACTIONS(2939), - [anon_sym_requires] = ACTIONS(2939), - [sym_this] = ACTIONS(2939), + [sym_auto] = ACTIONS(3039), + [anon_sym_decltype] = ACTIONS(3039), + [anon_sym_explicit] = ACTIONS(3039), + [anon_sym_typename] = ACTIONS(3039), + [anon_sym_template] = ACTIONS(3039), + [anon_sym_operator] = ACTIONS(3039), + [anon_sym_try] = ACTIONS(3039), + [anon_sym_delete] = ACTIONS(3039), + [anon_sym_throw] = ACTIONS(3039), + [anon_sym_namespace] = ACTIONS(3039), + [anon_sym_static_assert] = ACTIONS(3039), + [anon_sym_concept] = ACTIONS(3039), + [anon_sym_co_return] = ACTIONS(3039), + [anon_sym_co_yield] = ACTIONS(3039), + [anon_sym_R_DQUOTE] = ACTIONS(3041), + [anon_sym_LR_DQUOTE] = ACTIONS(3041), + [anon_sym_uR_DQUOTE] = ACTIONS(3041), + [anon_sym_UR_DQUOTE] = ACTIONS(3041), + [anon_sym_u8R_DQUOTE] = ACTIONS(3041), + [anon_sym_co_await] = ACTIONS(3039), + [anon_sym_new] = ACTIONS(3039), + [anon_sym_requires] = ACTIONS(3039), + [sym_this] = ACTIONS(3039), }, - [726] = { - [sym_identifier] = ACTIONS(3035), - [aux_sym_preproc_include_token1] = ACTIONS(3035), - [aux_sym_preproc_def_token1] = ACTIONS(3035), - [aux_sym_preproc_if_token1] = ACTIONS(3035), - [aux_sym_preproc_if_token2] = ACTIONS(3035), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3035), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3035), - [sym_preproc_directive] = ACTIONS(3035), - [anon_sym_LPAREN2] = ACTIONS(3037), - [anon_sym_BANG] = ACTIONS(3037), - [anon_sym_TILDE] = ACTIONS(3037), - [anon_sym_DASH] = ACTIONS(3035), - [anon_sym_PLUS] = ACTIONS(3035), - [anon_sym_STAR] = ACTIONS(3037), - [anon_sym_AMP_AMP] = ACTIONS(3037), - [anon_sym_AMP] = ACTIONS(3035), - [anon_sym_SEMI] = ACTIONS(3037), - [anon_sym___extension__] = ACTIONS(3035), - [anon_sym_typedef] = ACTIONS(3035), - [anon_sym_virtual] = ACTIONS(3035), - [anon_sym_extern] = ACTIONS(3035), - [anon_sym___attribute__] = ACTIONS(3035), - [anon_sym___attribute] = ACTIONS(3035), - [anon_sym_using] = ACTIONS(3035), - [anon_sym_COLON_COLON] = ACTIONS(3037), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3037), - [anon_sym___declspec] = ACTIONS(3035), - [anon_sym___based] = ACTIONS(3035), - [anon_sym___cdecl] = ACTIONS(3035), - [anon_sym___clrcall] = ACTIONS(3035), - [anon_sym___stdcall] = ACTIONS(3035), - [anon_sym___fastcall] = ACTIONS(3035), - [anon_sym___thiscall] = ACTIONS(3035), - [anon_sym___vectorcall] = ACTIONS(3035), - [anon_sym_LBRACE] = ACTIONS(3037), - [anon_sym_signed] = ACTIONS(3035), - [anon_sym_unsigned] = ACTIONS(3035), - [anon_sym_long] = ACTIONS(3035), - [anon_sym_short] = ACTIONS(3035), - [anon_sym_LBRACK] = ACTIONS(3035), - [anon_sym_static] = ACTIONS(3035), - [anon_sym_register] = ACTIONS(3035), - [anon_sym_inline] = ACTIONS(3035), - [anon_sym___inline] = ACTIONS(3035), - [anon_sym___inline__] = ACTIONS(3035), - [anon_sym___forceinline] = ACTIONS(3035), - [anon_sym_thread_local] = ACTIONS(3035), - [anon_sym___thread] = ACTIONS(3035), - [anon_sym_const] = ACTIONS(3035), - [anon_sym_constexpr] = ACTIONS(3035), - [anon_sym_volatile] = ACTIONS(3035), - [anon_sym_restrict] = ACTIONS(3035), - [anon_sym___restrict__] = ACTIONS(3035), - [anon_sym__Atomic] = ACTIONS(3035), - [anon_sym__Noreturn] = ACTIONS(3035), - [anon_sym_noreturn] = ACTIONS(3035), - [anon_sym__Nonnull] = ACTIONS(3035), - [anon_sym_mutable] = ACTIONS(3035), - [anon_sym_constinit] = ACTIONS(3035), - [anon_sym_consteval] = ACTIONS(3035), - [anon_sym_alignas] = ACTIONS(3035), - [anon_sym__Alignas] = ACTIONS(3035), - [sym_primitive_type] = ACTIONS(3035), - [anon_sym_enum] = ACTIONS(3035), - [anon_sym_class] = ACTIONS(3035), - [anon_sym_struct] = ACTIONS(3035), - [anon_sym_union] = ACTIONS(3035), - [anon_sym_if] = ACTIONS(3035), - [anon_sym_switch] = ACTIONS(3035), - [anon_sym_case] = ACTIONS(3035), - [anon_sym_default] = ACTIONS(3035), - [anon_sym_while] = ACTIONS(3035), - [anon_sym_do] = ACTIONS(3035), - [anon_sym_for] = ACTIONS(3035), - [anon_sym_return] = ACTIONS(3035), - [anon_sym_break] = ACTIONS(3035), - [anon_sym_continue] = ACTIONS(3035), - [anon_sym_goto] = ACTIONS(3035), - [anon_sym___try] = ACTIONS(3035), - [anon_sym___leave] = ACTIONS(3035), - [anon_sym_not] = ACTIONS(3035), - [anon_sym_compl] = ACTIONS(3035), - [anon_sym_DASH_DASH] = ACTIONS(3037), - [anon_sym_PLUS_PLUS] = ACTIONS(3037), - [anon_sym_sizeof] = ACTIONS(3035), - [anon_sym___alignof__] = ACTIONS(3035), - [anon_sym___alignof] = ACTIONS(3035), - [anon_sym__alignof] = ACTIONS(3035), - [anon_sym_alignof] = ACTIONS(3035), - [anon_sym__Alignof] = ACTIONS(3035), - [anon_sym_offsetof] = ACTIONS(3035), - [anon_sym__Generic] = ACTIONS(3035), - [anon_sym_asm] = ACTIONS(3035), - [anon_sym___asm__] = ACTIONS(3035), - [anon_sym___asm] = ACTIONS(3035), - [sym_number_literal] = ACTIONS(3037), - [anon_sym_L_SQUOTE] = ACTIONS(3037), - [anon_sym_u_SQUOTE] = ACTIONS(3037), - [anon_sym_U_SQUOTE] = ACTIONS(3037), - [anon_sym_u8_SQUOTE] = ACTIONS(3037), - [anon_sym_SQUOTE] = ACTIONS(3037), - [anon_sym_L_DQUOTE] = ACTIONS(3037), - [anon_sym_u_DQUOTE] = ACTIONS(3037), - [anon_sym_U_DQUOTE] = ACTIONS(3037), - [anon_sym_u8_DQUOTE] = ACTIONS(3037), - [anon_sym_DQUOTE] = ACTIONS(3037), - [sym_true] = ACTIONS(3035), - [sym_false] = ACTIONS(3035), - [anon_sym_NULL] = ACTIONS(3035), - [anon_sym_nullptr] = ACTIONS(3035), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3035), - [anon_sym_decltype] = ACTIONS(3035), - [anon_sym_explicit] = ACTIONS(3035), - [anon_sym_typename] = ACTIONS(3035), - [anon_sym_template] = ACTIONS(3035), - [anon_sym_operator] = ACTIONS(3035), - [anon_sym_try] = ACTIONS(3035), - [anon_sym_delete] = ACTIONS(3035), - [anon_sym_throw] = ACTIONS(3035), - [anon_sym_namespace] = ACTIONS(3035), - [anon_sym_static_assert] = ACTIONS(3035), - [anon_sym_concept] = ACTIONS(3035), - [anon_sym_co_return] = ACTIONS(3035), - [anon_sym_co_yield] = ACTIONS(3035), - [anon_sym_R_DQUOTE] = ACTIONS(3037), - [anon_sym_LR_DQUOTE] = ACTIONS(3037), - [anon_sym_uR_DQUOTE] = ACTIONS(3037), - [anon_sym_UR_DQUOTE] = ACTIONS(3037), - [anon_sym_u8R_DQUOTE] = ACTIONS(3037), - [anon_sym_co_await] = ACTIONS(3035), - [anon_sym_new] = ACTIONS(3035), - [anon_sym_requires] = ACTIONS(3035), - [sym_this] = ACTIONS(3035), + [755] = { + [sym_identifier] = ACTIONS(3091), + [aux_sym_preproc_include_token1] = ACTIONS(3091), + [aux_sym_preproc_def_token1] = ACTIONS(3091), + [aux_sym_preproc_if_token1] = ACTIONS(3091), + [aux_sym_preproc_if_token2] = ACTIONS(3091), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3091), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3091), + [sym_preproc_directive] = ACTIONS(3091), + [anon_sym_LPAREN2] = ACTIONS(3093), + [anon_sym_BANG] = ACTIONS(3093), + [anon_sym_TILDE] = ACTIONS(3093), + [anon_sym_DASH] = ACTIONS(3091), + [anon_sym_PLUS] = ACTIONS(3091), + [anon_sym_STAR] = ACTIONS(3093), + [anon_sym_AMP_AMP] = ACTIONS(3093), + [anon_sym_AMP] = ACTIONS(3091), + [anon_sym_SEMI] = ACTIONS(3093), + [anon_sym___extension__] = ACTIONS(3091), + [anon_sym_typedef] = ACTIONS(3091), + [anon_sym_virtual] = ACTIONS(3091), + [anon_sym_extern] = ACTIONS(3091), + [anon_sym___attribute__] = ACTIONS(3091), + [anon_sym___attribute] = ACTIONS(3091), + [anon_sym_using] = ACTIONS(3091), + [anon_sym_COLON_COLON] = ACTIONS(3093), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3093), + [anon_sym___declspec] = ACTIONS(3091), + [anon_sym___based] = ACTIONS(3091), + [anon_sym___cdecl] = ACTIONS(3091), + [anon_sym___clrcall] = ACTIONS(3091), + [anon_sym___stdcall] = ACTIONS(3091), + [anon_sym___fastcall] = ACTIONS(3091), + [anon_sym___thiscall] = ACTIONS(3091), + [anon_sym___vectorcall] = ACTIONS(3091), + [anon_sym_LBRACE] = ACTIONS(3093), + [anon_sym_signed] = ACTIONS(3091), + [anon_sym_unsigned] = ACTIONS(3091), + [anon_sym_long] = ACTIONS(3091), + [anon_sym_short] = ACTIONS(3091), + [anon_sym_LBRACK] = ACTIONS(3091), + [anon_sym_static] = ACTIONS(3091), + [anon_sym_register] = ACTIONS(3091), + [anon_sym_inline] = ACTIONS(3091), + [anon_sym___inline] = ACTIONS(3091), + [anon_sym___inline__] = ACTIONS(3091), + [anon_sym___forceinline] = ACTIONS(3091), + [anon_sym_thread_local] = ACTIONS(3091), + [anon_sym___thread] = ACTIONS(3091), + [anon_sym_const] = ACTIONS(3091), + [anon_sym_constexpr] = ACTIONS(3091), + [anon_sym_volatile] = ACTIONS(3091), + [anon_sym_restrict] = ACTIONS(3091), + [anon_sym___restrict__] = ACTIONS(3091), + [anon_sym__Atomic] = ACTIONS(3091), + [anon_sym__Noreturn] = ACTIONS(3091), + [anon_sym_noreturn] = ACTIONS(3091), + [anon_sym__Nonnull] = ACTIONS(3091), + [anon_sym_mutable] = ACTIONS(3091), + [anon_sym_constinit] = ACTIONS(3091), + [anon_sym_consteval] = ACTIONS(3091), + [anon_sym_alignas] = ACTIONS(3091), + [anon_sym__Alignas] = ACTIONS(3091), + [sym_primitive_type] = ACTIONS(3091), + [anon_sym_enum] = ACTIONS(3091), + [anon_sym_class] = ACTIONS(3091), + [anon_sym_struct] = ACTIONS(3091), + [anon_sym_union] = ACTIONS(3091), + [anon_sym_if] = ACTIONS(3091), + [anon_sym_switch] = ACTIONS(3091), + [anon_sym_case] = ACTIONS(3091), + [anon_sym_default] = ACTIONS(3091), + [anon_sym_while] = ACTIONS(3091), + [anon_sym_do] = ACTIONS(3091), + [anon_sym_for] = ACTIONS(3091), + [anon_sym_return] = ACTIONS(3091), + [anon_sym_break] = ACTIONS(3091), + [anon_sym_continue] = ACTIONS(3091), + [anon_sym_goto] = ACTIONS(3091), + [anon_sym___try] = ACTIONS(3091), + [anon_sym___leave] = ACTIONS(3091), + [anon_sym_not] = ACTIONS(3091), + [anon_sym_compl] = ACTIONS(3091), + [anon_sym_DASH_DASH] = ACTIONS(3093), + [anon_sym_PLUS_PLUS] = ACTIONS(3093), + [anon_sym_sizeof] = ACTIONS(3091), + [anon_sym___alignof__] = ACTIONS(3091), + [anon_sym___alignof] = ACTIONS(3091), + [anon_sym__alignof] = ACTIONS(3091), + [anon_sym_alignof] = ACTIONS(3091), + [anon_sym__Alignof] = ACTIONS(3091), + [anon_sym_offsetof] = ACTIONS(3091), + [anon_sym__Generic] = ACTIONS(3091), + [anon_sym_asm] = ACTIONS(3091), + [anon_sym___asm__] = ACTIONS(3091), + [anon_sym___asm] = ACTIONS(3091), + [sym_number_literal] = ACTIONS(3093), + [anon_sym_L_SQUOTE] = ACTIONS(3093), + [anon_sym_u_SQUOTE] = ACTIONS(3093), + [anon_sym_U_SQUOTE] = ACTIONS(3093), + [anon_sym_u8_SQUOTE] = ACTIONS(3093), + [anon_sym_SQUOTE] = ACTIONS(3093), + [anon_sym_L_DQUOTE] = ACTIONS(3093), + [anon_sym_u_DQUOTE] = ACTIONS(3093), + [anon_sym_U_DQUOTE] = ACTIONS(3093), + [anon_sym_u8_DQUOTE] = ACTIONS(3093), + [anon_sym_DQUOTE] = ACTIONS(3093), + [sym_true] = ACTIONS(3091), + [sym_false] = ACTIONS(3091), + [anon_sym_NULL] = ACTIONS(3091), + [anon_sym_nullptr] = ACTIONS(3091), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3091), + [anon_sym_decltype] = ACTIONS(3091), + [anon_sym_explicit] = ACTIONS(3091), + [anon_sym_typename] = ACTIONS(3091), + [anon_sym_template] = ACTIONS(3091), + [anon_sym_operator] = ACTIONS(3091), + [anon_sym_try] = ACTIONS(3091), + [anon_sym_delete] = ACTIONS(3091), + [anon_sym_throw] = ACTIONS(3091), + [anon_sym_namespace] = ACTIONS(3091), + [anon_sym_static_assert] = ACTIONS(3091), + [anon_sym_concept] = ACTIONS(3091), + [anon_sym_co_return] = ACTIONS(3091), + [anon_sym_co_yield] = ACTIONS(3091), + [anon_sym_R_DQUOTE] = ACTIONS(3093), + [anon_sym_LR_DQUOTE] = ACTIONS(3093), + [anon_sym_uR_DQUOTE] = ACTIONS(3093), + [anon_sym_UR_DQUOTE] = ACTIONS(3093), + [anon_sym_u8R_DQUOTE] = ACTIONS(3093), + [anon_sym_co_await] = ACTIONS(3091), + [anon_sym_new] = ACTIONS(3091), + [anon_sym_requires] = ACTIONS(3091), + [sym_this] = ACTIONS(3091), }, - [727] = { - [sym_identifier] = ACTIONS(2923), - [aux_sym_preproc_include_token1] = ACTIONS(2923), - [aux_sym_preproc_def_token1] = ACTIONS(2923), - [aux_sym_preproc_if_token1] = ACTIONS(2923), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2923), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2923), - [sym_preproc_directive] = ACTIONS(2923), - [anon_sym_LPAREN2] = ACTIONS(2925), - [anon_sym_BANG] = ACTIONS(2925), - [anon_sym_TILDE] = ACTIONS(2925), - [anon_sym_DASH] = ACTIONS(2923), - [anon_sym_PLUS] = ACTIONS(2923), - [anon_sym_STAR] = ACTIONS(2925), - [anon_sym_AMP_AMP] = ACTIONS(2925), - [anon_sym_AMP] = ACTIONS(2923), - [anon_sym_SEMI] = ACTIONS(2925), - [anon_sym___extension__] = ACTIONS(2923), - [anon_sym_typedef] = ACTIONS(2923), - [anon_sym_virtual] = ACTIONS(2923), - [anon_sym_extern] = ACTIONS(2923), - [anon_sym___attribute__] = ACTIONS(2923), - [anon_sym___attribute] = ACTIONS(2923), - [anon_sym_using] = ACTIONS(2923), - [anon_sym_COLON_COLON] = ACTIONS(2925), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2925), - [anon_sym___declspec] = ACTIONS(2923), - [anon_sym___based] = ACTIONS(2923), - [anon_sym___cdecl] = ACTIONS(2923), - [anon_sym___clrcall] = ACTIONS(2923), - [anon_sym___stdcall] = ACTIONS(2923), - [anon_sym___fastcall] = ACTIONS(2923), - [anon_sym___thiscall] = ACTIONS(2923), - [anon_sym___vectorcall] = ACTIONS(2923), - [anon_sym_LBRACE] = ACTIONS(2925), - [anon_sym_RBRACE] = ACTIONS(2925), - [anon_sym_signed] = ACTIONS(2923), - [anon_sym_unsigned] = ACTIONS(2923), - [anon_sym_long] = ACTIONS(2923), - [anon_sym_short] = ACTIONS(2923), - [anon_sym_LBRACK] = ACTIONS(2923), - [anon_sym_static] = ACTIONS(2923), - [anon_sym_register] = ACTIONS(2923), - [anon_sym_inline] = ACTIONS(2923), - [anon_sym___inline] = ACTIONS(2923), - [anon_sym___inline__] = ACTIONS(2923), - [anon_sym___forceinline] = ACTIONS(2923), - [anon_sym_thread_local] = ACTIONS(2923), - [anon_sym___thread] = ACTIONS(2923), - [anon_sym_const] = ACTIONS(2923), - [anon_sym_constexpr] = ACTIONS(2923), - [anon_sym_volatile] = ACTIONS(2923), - [anon_sym_restrict] = ACTIONS(2923), - [anon_sym___restrict__] = ACTIONS(2923), - [anon_sym__Atomic] = ACTIONS(2923), - [anon_sym__Noreturn] = ACTIONS(2923), - [anon_sym_noreturn] = ACTIONS(2923), - [anon_sym__Nonnull] = ACTIONS(2923), - [anon_sym_mutable] = ACTIONS(2923), - [anon_sym_constinit] = ACTIONS(2923), - [anon_sym_consteval] = ACTIONS(2923), - [anon_sym_alignas] = ACTIONS(2923), - [anon_sym__Alignas] = ACTIONS(2923), - [sym_primitive_type] = ACTIONS(2923), - [anon_sym_enum] = ACTIONS(2923), - [anon_sym_class] = ACTIONS(2923), - [anon_sym_struct] = ACTIONS(2923), - [anon_sym_union] = ACTIONS(2923), - [anon_sym_if] = ACTIONS(2923), - [anon_sym_switch] = ACTIONS(2923), - [anon_sym_case] = ACTIONS(2923), - [anon_sym_default] = ACTIONS(2923), - [anon_sym_while] = ACTIONS(2923), - [anon_sym_do] = ACTIONS(2923), - [anon_sym_for] = ACTIONS(2923), - [anon_sym_return] = ACTIONS(2923), - [anon_sym_break] = ACTIONS(2923), - [anon_sym_continue] = ACTIONS(2923), - [anon_sym_goto] = ACTIONS(2923), - [anon_sym___try] = ACTIONS(2923), - [anon_sym___leave] = ACTIONS(2923), - [anon_sym_not] = ACTIONS(2923), - [anon_sym_compl] = ACTIONS(2923), - [anon_sym_DASH_DASH] = ACTIONS(2925), - [anon_sym_PLUS_PLUS] = ACTIONS(2925), - [anon_sym_sizeof] = ACTIONS(2923), - [anon_sym___alignof__] = ACTIONS(2923), - [anon_sym___alignof] = ACTIONS(2923), - [anon_sym__alignof] = ACTIONS(2923), - [anon_sym_alignof] = ACTIONS(2923), - [anon_sym__Alignof] = ACTIONS(2923), - [anon_sym_offsetof] = ACTIONS(2923), - [anon_sym__Generic] = ACTIONS(2923), - [anon_sym_asm] = ACTIONS(2923), - [anon_sym___asm__] = ACTIONS(2923), - [anon_sym___asm] = ACTIONS(2923), - [sym_number_literal] = ACTIONS(2925), - [anon_sym_L_SQUOTE] = ACTIONS(2925), - [anon_sym_u_SQUOTE] = ACTIONS(2925), - [anon_sym_U_SQUOTE] = ACTIONS(2925), - [anon_sym_u8_SQUOTE] = ACTIONS(2925), - [anon_sym_SQUOTE] = ACTIONS(2925), - [anon_sym_L_DQUOTE] = ACTIONS(2925), - [anon_sym_u_DQUOTE] = ACTIONS(2925), - [anon_sym_U_DQUOTE] = ACTIONS(2925), - [anon_sym_u8_DQUOTE] = ACTIONS(2925), - [anon_sym_DQUOTE] = ACTIONS(2925), - [sym_true] = ACTIONS(2923), - [sym_false] = ACTIONS(2923), - [anon_sym_NULL] = ACTIONS(2923), - [anon_sym_nullptr] = ACTIONS(2923), + [756] = { + [sym_identifier] = ACTIONS(3043), + [aux_sym_preproc_include_token1] = ACTIONS(3043), + [aux_sym_preproc_def_token1] = ACTIONS(3043), + [aux_sym_preproc_if_token1] = ACTIONS(3043), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3043), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3043), + [sym_preproc_directive] = ACTIONS(3043), + [anon_sym_LPAREN2] = ACTIONS(3045), + [anon_sym_BANG] = ACTIONS(3045), + [anon_sym_TILDE] = ACTIONS(3045), + [anon_sym_DASH] = ACTIONS(3043), + [anon_sym_PLUS] = ACTIONS(3043), + [anon_sym_STAR] = ACTIONS(3045), + [anon_sym_AMP_AMP] = ACTIONS(3045), + [anon_sym_AMP] = ACTIONS(3043), + [anon_sym_SEMI] = ACTIONS(3045), + [anon_sym___extension__] = ACTIONS(3043), + [anon_sym_typedef] = ACTIONS(3043), + [anon_sym_virtual] = ACTIONS(3043), + [anon_sym_extern] = ACTIONS(3043), + [anon_sym___attribute__] = ACTIONS(3043), + [anon_sym___attribute] = ACTIONS(3043), + [anon_sym_using] = ACTIONS(3043), + [anon_sym_COLON_COLON] = ACTIONS(3045), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3045), + [anon_sym___declspec] = ACTIONS(3043), + [anon_sym___based] = ACTIONS(3043), + [anon_sym___cdecl] = ACTIONS(3043), + [anon_sym___clrcall] = ACTIONS(3043), + [anon_sym___stdcall] = ACTIONS(3043), + [anon_sym___fastcall] = ACTIONS(3043), + [anon_sym___thiscall] = ACTIONS(3043), + [anon_sym___vectorcall] = ACTIONS(3043), + [anon_sym_LBRACE] = ACTIONS(3045), + [anon_sym_RBRACE] = ACTIONS(3045), + [anon_sym_signed] = ACTIONS(3043), + [anon_sym_unsigned] = ACTIONS(3043), + [anon_sym_long] = ACTIONS(3043), + [anon_sym_short] = ACTIONS(3043), + [anon_sym_LBRACK] = ACTIONS(3043), + [anon_sym_static] = ACTIONS(3043), + [anon_sym_register] = ACTIONS(3043), + [anon_sym_inline] = ACTIONS(3043), + [anon_sym___inline] = ACTIONS(3043), + [anon_sym___inline__] = ACTIONS(3043), + [anon_sym___forceinline] = ACTIONS(3043), + [anon_sym_thread_local] = ACTIONS(3043), + [anon_sym___thread] = ACTIONS(3043), + [anon_sym_const] = ACTIONS(3043), + [anon_sym_constexpr] = ACTIONS(3043), + [anon_sym_volatile] = ACTIONS(3043), + [anon_sym_restrict] = ACTIONS(3043), + [anon_sym___restrict__] = ACTIONS(3043), + [anon_sym__Atomic] = ACTIONS(3043), + [anon_sym__Noreturn] = ACTIONS(3043), + [anon_sym_noreturn] = ACTIONS(3043), + [anon_sym__Nonnull] = ACTIONS(3043), + [anon_sym_mutable] = ACTIONS(3043), + [anon_sym_constinit] = ACTIONS(3043), + [anon_sym_consteval] = ACTIONS(3043), + [anon_sym_alignas] = ACTIONS(3043), + [anon_sym__Alignas] = ACTIONS(3043), + [sym_primitive_type] = ACTIONS(3043), + [anon_sym_enum] = ACTIONS(3043), + [anon_sym_class] = ACTIONS(3043), + [anon_sym_struct] = ACTIONS(3043), + [anon_sym_union] = ACTIONS(3043), + [anon_sym_if] = ACTIONS(3043), + [anon_sym_switch] = ACTIONS(3043), + [anon_sym_case] = ACTIONS(3043), + [anon_sym_default] = ACTIONS(3043), + [anon_sym_while] = ACTIONS(3043), + [anon_sym_do] = ACTIONS(3043), + [anon_sym_for] = ACTIONS(3043), + [anon_sym_return] = ACTIONS(3043), + [anon_sym_break] = ACTIONS(3043), + [anon_sym_continue] = ACTIONS(3043), + [anon_sym_goto] = ACTIONS(3043), + [anon_sym___try] = ACTIONS(3043), + [anon_sym___leave] = ACTIONS(3043), + [anon_sym_not] = ACTIONS(3043), + [anon_sym_compl] = ACTIONS(3043), + [anon_sym_DASH_DASH] = ACTIONS(3045), + [anon_sym_PLUS_PLUS] = ACTIONS(3045), + [anon_sym_sizeof] = ACTIONS(3043), + [anon_sym___alignof__] = ACTIONS(3043), + [anon_sym___alignof] = ACTIONS(3043), + [anon_sym__alignof] = ACTIONS(3043), + [anon_sym_alignof] = ACTIONS(3043), + [anon_sym__Alignof] = ACTIONS(3043), + [anon_sym_offsetof] = ACTIONS(3043), + [anon_sym__Generic] = ACTIONS(3043), + [anon_sym_asm] = ACTIONS(3043), + [anon_sym___asm__] = ACTIONS(3043), + [anon_sym___asm] = ACTIONS(3043), + [sym_number_literal] = ACTIONS(3045), + [anon_sym_L_SQUOTE] = ACTIONS(3045), + [anon_sym_u_SQUOTE] = ACTIONS(3045), + [anon_sym_U_SQUOTE] = ACTIONS(3045), + [anon_sym_u8_SQUOTE] = ACTIONS(3045), + [anon_sym_SQUOTE] = ACTIONS(3045), + [anon_sym_L_DQUOTE] = ACTIONS(3045), + [anon_sym_u_DQUOTE] = ACTIONS(3045), + [anon_sym_U_DQUOTE] = ACTIONS(3045), + [anon_sym_u8_DQUOTE] = ACTIONS(3045), + [anon_sym_DQUOTE] = ACTIONS(3045), + [sym_true] = ACTIONS(3043), + [sym_false] = ACTIONS(3043), + [anon_sym_NULL] = ACTIONS(3043), + [anon_sym_nullptr] = ACTIONS(3043), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3043), + [anon_sym_decltype] = ACTIONS(3043), + [anon_sym_explicit] = ACTIONS(3043), + [anon_sym_typename] = ACTIONS(3043), + [anon_sym_template] = ACTIONS(3043), + [anon_sym_operator] = ACTIONS(3043), + [anon_sym_try] = ACTIONS(3043), + [anon_sym_delete] = ACTIONS(3043), + [anon_sym_throw] = ACTIONS(3043), + [anon_sym_namespace] = ACTIONS(3043), + [anon_sym_static_assert] = ACTIONS(3043), + [anon_sym_concept] = ACTIONS(3043), + [anon_sym_co_return] = ACTIONS(3043), + [anon_sym_co_yield] = ACTIONS(3043), + [anon_sym_R_DQUOTE] = ACTIONS(3045), + [anon_sym_LR_DQUOTE] = ACTIONS(3045), + [anon_sym_uR_DQUOTE] = ACTIONS(3045), + [anon_sym_UR_DQUOTE] = ACTIONS(3045), + [anon_sym_u8R_DQUOTE] = ACTIONS(3045), + [anon_sym_co_await] = ACTIONS(3043), + [anon_sym_new] = ACTIONS(3043), + [anon_sym_requires] = ACTIONS(3043), + [sym_this] = ACTIONS(3043), + }, + [757] = { + [sym_identifier] = ACTIONS(3047), + [aux_sym_preproc_include_token1] = ACTIONS(3047), + [aux_sym_preproc_def_token1] = ACTIONS(3047), + [aux_sym_preproc_if_token1] = ACTIONS(3047), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3047), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3047), + [sym_preproc_directive] = ACTIONS(3047), + [anon_sym_LPAREN2] = ACTIONS(3049), + [anon_sym_BANG] = ACTIONS(3049), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_DASH] = ACTIONS(3047), + [anon_sym_PLUS] = ACTIONS(3047), + [anon_sym_STAR] = ACTIONS(3049), + [anon_sym_AMP_AMP] = ACTIONS(3049), + [anon_sym_AMP] = ACTIONS(3047), + [anon_sym_SEMI] = ACTIONS(3049), + [anon_sym___extension__] = ACTIONS(3047), + [anon_sym_typedef] = ACTIONS(3047), + [anon_sym_virtual] = ACTIONS(3047), + [anon_sym_extern] = ACTIONS(3047), + [anon_sym___attribute__] = ACTIONS(3047), + [anon_sym___attribute] = ACTIONS(3047), + [anon_sym_using] = ACTIONS(3047), + [anon_sym_COLON_COLON] = ACTIONS(3049), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3049), + [anon_sym___declspec] = ACTIONS(3047), + [anon_sym___based] = ACTIONS(3047), + [anon_sym___cdecl] = ACTIONS(3047), + [anon_sym___clrcall] = ACTIONS(3047), + [anon_sym___stdcall] = ACTIONS(3047), + [anon_sym___fastcall] = ACTIONS(3047), + [anon_sym___thiscall] = ACTIONS(3047), + [anon_sym___vectorcall] = ACTIONS(3047), + [anon_sym_LBRACE] = ACTIONS(3049), + [anon_sym_RBRACE] = ACTIONS(3049), + [anon_sym_signed] = ACTIONS(3047), + [anon_sym_unsigned] = ACTIONS(3047), + [anon_sym_long] = ACTIONS(3047), + [anon_sym_short] = ACTIONS(3047), + [anon_sym_LBRACK] = ACTIONS(3047), + [anon_sym_static] = ACTIONS(3047), + [anon_sym_register] = ACTIONS(3047), + [anon_sym_inline] = ACTIONS(3047), + [anon_sym___inline] = ACTIONS(3047), + [anon_sym___inline__] = ACTIONS(3047), + [anon_sym___forceinline] = ACTIONS(3047), + [anon_sym_thread_local] = ACTIONS(3047), + [anon_sym___thread] = ACTIONS(3047), + [anon_sym_const] = ACTIONS(3047), + [anon_sym_constexpr] = ACTIONS(3047), + [anon_sym_volatile] = ACTIONS(3047), + [anon_sym_restrict] = ACTIONS(3047), + [anon_sym___restrict__] = ACTIONS(3047), + [anon_sym__Atomic] = ACTIONS(3047), + [anon_sym__Noreturn] = ACTIONS(3047), + [anon_sym_noreturn] = ACTIONS(3047), + [anon_sym__Nonnull] = ACTIONS(3047), + [anon_sym_mutable] = ACTIONS(3047), + [anon_sym_constinit] = ACTIONS(3047), + [anon_sym_consteval] = ACTIONS(3047), + [anon_sym_alignas] = ACTIONS(3047), + [anon_sym__Alignas] = ACTIONS(3047), + [sym_primitive_type] = ACTIONS(3047), + [anon_sym_enum] = ACTIONS(3047), + [anon_sym_class] = ACTIONS(3047), + [anon_sym_struct] = ACTIONS(3047), + [anon_sym_union] = ACTIONS(3047), + [anon_sym_if] = ACTIONS(3047), + [anon_sym_switch] = ACTIONS(3047), + [anon_sym_case] = ACTIONS(3047), + [anon_sym_default] = ACTIONS(3047), + [anon_sym_while] = ACTIONS(3047), + [anon_sym_do] = ACTIONS(3047), + [anon_sym_for] = ACTIONS(3047), + [anon_sym_return] = ACTIONS(3047), + [anon_sym_break] = ACTIONS(3047), + [anon_sym_continue] = ACTIONS(3047), + [anon_sym_goto] = ACTIONS(3047), + [anon_sym___try] = ACTIONS(3047), + [anon_sym___leave] = ACTIONS(3047), + [anon_sym_not] = ACTIONS(3047), + [anon_sym_compl] = ACTIONS(3047), + [anon_sym_DASH_DASH] = ACTIONS(3049), + [anon_sym_PLUS_PLUS] = ACTIONS(3049), + [anon_sym_sizeof] = ACTIONS(3047), + [anon_sym___alignof__] = ACTIONS(3047), + [anon_sym___alignof] = ACTIONS(3047), + [anon_sym__alignof] = ACTIONS(3047), + [anon_sym_alignof] = ACTIONS(3047), + [anon_sym__Alignof] = ACTIONS(3047), + [anon_sym_offsetof] = ACTIONS(3047), + [anon_sym__Generic] = ACTIONS(3047), + [anon_sym_asm] = ACTIONS(3047), + [anon_sym___asm__] = ACTIONS(3047), + [anon_sym___asm] = ACTIONS(3047), + [sym_number_literal] = ACTIONS(3049), + [anon_sym_L_SQUOTE] = ACTIONS(3049), + [anon_sym_u_SQUOTE] = ACTIONS(3049), + [anon_sym_U_SQUOTE] = ACTIONS(3049), + [anon_sym_u8_SQUOTE] = ACTIONS(3049), + [anon_sym_SQUOTE] = ACTIONS(3049), + [anon_sym_L_DQUOTE] = ACTIONS(3049), + [anon_sym_u_DQUOTE] = ACTIONS(3049), + [anon_sym_U_DQUOTE] = ACTIONS(3049), + [anon_sym_u8_DQUOTE] = ACTIONS(3049), + [anon_sym_DQUOTE] = ACTIONS(3049), + [sym_true] = ACTIONS(3047), + [sym_false] = ACTIONS(3047), + [anon_sym_NULL] = ACTIONS(3047), + [anon_sym_nullptr] = ACTIONS(3047), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3047), + [anon_sym_decltype] = ACTIONS(3047), + [anon_sym_explicit] = ACTIONS(3047), + [anon_sym_typename] = ACTIONS(3047), + [anon_sym_template] = ACTIONS(3047), + [anon_sym_operator] = ACTIONS(3047), + [anon_sym_try] = ACTIONS(3047), + [anon_sym_delete] = ACTIONS(3047), + [anon_sym_throw] = ACTIONS(3047), + [anon_sym_namespace] = ACTIONS(3047), + [anon_sym_static_assert] = ACTIONS(3047), + [anon_sym_concept] = ACTIONS(3047), + [anon_sym_co_return] = ACTIONS(3047), + [anon_sym_co_yield] = ACTIONS(3047), + [anon_sym_R_DQUOTE] = ACTIONS(3049), + [anon_sym_LR_DQUOTE] = ACTIONS(3049), + [anon_sym_uR_DQUOTE] = ACTIONS(3049), + [anon_sym_UR_DQUOTE] = ACTIONS(3049), + [anon_sym_u8R_DQUOTE] = ACTIONS(3049), + [anon_sym_co_await] = ACTIONS(3047), + [anon_sym_new] = ACTIONS(3047), + [anon_sym_requires] = ACTIONS(3047), + [sym_this] = ACTIONS(3047), + }, + [758] = { + [sym_identifier] = ACTIONS(3051), + [aux_sym_preproc_include_token1] = ACTIONS(3051), + [aux_sym_preproc_def_token1] = ACTIONS(3051), + [aux_sym_preproc_if_token1] = ACTIONS(3051), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3051), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3051), + [sym_preproc_directive] = ACTIONS(3051), + [anon_sym_LPAREN2] = ACTIONS(3053), + [anon_sym_BANG] = ACTIONS(3053), + [anon_sym_TILDE] = ACTIONS(3053), + [anon_sym_DASH] = ACTIONS(3051), + [anon_sym_PLUS] = ACTIONS(3051), + [anon_sym_STAR] = ACTIONS(3053), + [anon_sym_AMP_AMP] = ACTIONS(3053), + [anon_sym_AMP] = ACTIONS(3051), + [anon_sym_SEMI] = ACTIONS(3053), + [anon_sym___extension__] = ACTIONS(3051), + [anon_sym_typedef] = ACTIONS(3051), + [anon_sym_virtual] = ACTIONS(3051), + [anon_sym_extern] = ACTIONS(3051), + [anon_sym___attribute__] = ACTIONS(3051), + [anon_sym___attribute] = ACTIONS(3051), + [anon_sym_using] = ACTIONS(3051), + [anon_sym_COLON_COLON] = ACTIONS(3053), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3053), + [anon_sym___declspec] = ACTIONS(3051), + [anon_sym___based] = ACTIONS(3051), + [anon_sym___cdecl] = ACTIONS(3051), + [anon_sym___clrcall] = ACTIONS(3051), + [anon_sym___stdcall] = ACTIONS(3051), + [anon_sym___fastcall] = ACTIONS(3051), + [anon_sym___thiscall] = ACTIONS(3051), + [anon_sym___vectorcall] = ACTIONS(3051), + [anon_sym_LBRACE] = ACTIONS(3053), + [anon_sym_RBRACE] = ACTIONS(3053), + [anon_sym_signed] = ACTIONS(3051), + [anon_sym_unsigned] = ACTIONS(3051), + [anon_sym_long] = ACTIONS(3051), + [anon_sym_short] = ACTIONS(3051), + [anon_sym_LBRACK] = ACTIONS(3051), + [anon_sym_static] = ACTIONS(3051), + [anon_sym_register] = ACTIONS(3051), + [anon_sym_inline] = ACTIONS(3051), + [anon_sym___inline] = ACTIONS(3051), + [anon_sym___inline__] = ACTIONS(3051), + [anon_sym___forceinline] = ACTIONS(3051), + [anon_sym_thread_local] = ACTIONS(3051), + [anon_sym___thread] = ACTIONS(3051), + [anon_sym_const] = ACTIONS(3051), + [anon_sym_constexpr] = ACTIONS(3051), + [anon_sym_volatile] = ACTIONS(3051), + [anon_sym_restrict] = ACTIONS(3051), + [anon_sym___restrict__] = ACTIONS(3051), + [anon_sym__Atomic] = ACTIONS(3051), + [anon_sym__Noreturn] = ACTIONS(3051), + [anon_sym_noreturn] = ACTIONS(3051), + [anon_sym__Nonnull] = ACTIONS(3051), + [anon_sym_mutable] = ACTIONS(3051), + [anon_sym_constinit] = ACTIONS(3051), + [anon_sym_consteval] = ACTIONS(3051), + [anon_sym_alignas] = ACTIONS(3051), + [anon_sym__Alignas] = ACTIONS(3051), + [sym_primitive_type] = ACTIONS(3051), + [anon_sym_enum] = ACTIONS(3051), + [anon_sym_class] = ACTIONS(3051), + [anon_sym_struct] = ACTIONS(3051), + [anon_sym_union] = ACTIONS(3051), + [anon_sym_if] = ACTIONS(3051), + [anon_sym_switch] = ACTIONS(3051), + [anon_sym_case] = ACTIONS(3051), + [anon_sym_default] = ACTIONS(3051), + [anon_sym_while] = ACTIONS(3051), + [anon_sym_do] = ACTIONS(3051), + [anon_sym_for] = ACTIONS(3051), + [anon_sym_return] = ACTIONS(3051), + [anon_sym_break] = ACTIONS(3051), + [anon_sym_continue] = ACTIONS(3051), + [anon_sym_goto] = ACTIONS(3051), + [anon_sym___try] = ACTIONS(3051), + [anon_sym___leave] = ACTIONS(3051), + [anon_sym_not] = ACTIONS(3051), + [anon_sym_compl] = ACTIONS(3051), + [anon_sym_DASH_DASH] = ACTIONS(3053), + [anon_sym_PLUS_PLUS] = ACTIONS(3053), + [anon_sym_sizeof] = ACTIONS(3051), + [anon_sym___alignof__] = ACTIONS(3051), + [anon_sym___alignof] = ACTIONS(3051), + [anon_sym__alignof] = ACTIONS(3051), + [anon_sym_alignof] = ACTIONS(3051), + [anon_sym__Alignof] = ACTIONS(3051), + [anon_sym_offsetof] = ACTIONS(3051), + [anon_sym__Generic] = ACTIONS(3051), + [anon_sym_asm] = ACTIONS(3051), + [anon_sym___asm__] = ACTIONS(3051), + [anon_sym___asm] = ACTIONS(3051), + [sym_number_literal] = ACTIONS(3053), + [anon_sym_L_SQUOTE] = ACTIONS(3053), + [anon_sym_u_SQUOTE] = ACTIONS(3053), + [anon_sym_U_SQUOTE] = ACTIONS(3053), + [anon_sym_u8_SQUOTE] = ACTIONS(3053), + [anon_sym_SQUOTE] = ACTIONS(3053), + [anon_sym_L_DQUOTE] = ACTIONS(3053), + [anon_sym_u_DQUOTE] = ACTIONS(3053), + [anon_sym_U_DQUOTE] = ACTIONS(3053), + [anon_sym_u8_DQUOTE] = ACTIONS(3053), + [anon_sym_DQUOTE] = ACTIONS(3053), + [sym_true] = ACTIONS(3051), + [sym_false] = ACTIONS(3051), + [anon_sym_NULL] = ACTIONS(3051), + [anon_sym_nullptr] = ACTIONS(3051), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3051), + [anon_sym_decltype] = ACTIONS(3051), + [anon_sym_explicit] = ACTIONS(3051), + [anon_sym_typename] = ACTIONS(3051), + [anon_sym_template] = ACTIONS(3051), + [anon_sym_operator] = ACTIONS(3051), + [anon_sym_try] = ACTIONS(3051), + [anon_sym_delete] = ACTIONS(3051), + [anon_sym_throw] = ACTIONS(3051), + [anon_sym_namespace] = ACTIONS(3051), + [anon_sym_static_assert] = ACTIONS(3051), + [anon_sym_concept] = ACTIONS(3051), + [anon_sym_co_return] = ACTIONS(3051), + [anon_sym_co_yield] = ACTIONS(3051), + [anon_sym_R_DQUOTE] = ACTIONS(3053), + [anon_sym_LR_DQUOTE] = ACTIONS(3053), + [anon_sym_uR_DQUOTE] = ACTIONS(3053), + [anon_sym_UR_DQUOTE] = ACTIONS(3053), + [anon_sym_u8R_DQUOTE] = ACTIONS(3053), + [anon_sym_co_await] = ACTIONS(3051), + [anon_sym_new] = ACTIONS(3051), + [anon_sym_requires] = ACTIONS(3051), + [sym_this] = ACTIONS(3051), + }, + [759] = { + [sym_identifier] = ACTIONS(3075), + [aux_sym_preproc_include_token1] = ACTIONS(3075), + [aux_sym_preproc_def_token1] = ACTIONS(3075), + [aux_sym_preproc_if_token1] = ACTIONS(3075), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3075), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3075), + [sym_preproc_directive] = ACTIONS(3075), + [anon_sym_LPAREN2] = ACTIONS(3077), + [anon_sym_BANG] = ACTIONS(3077), + [anon_sym_TILDE] = ACTIONS(3077), + [anon_sym_DASH] = ACTIONS(3075), + [anon_sym_PLUS] = ACTIONS(3075), + [anon_sym_STAR] = ACTIONS(3077), + [anon_sym_AMP_AMP] = ACTIONS(3077), + [anon_sym_AMP] = ACTIONS(3075), + [anon_sym_SEMI] = ACTIONS(3077), + [anon_sym___extension__] = ACTIONS(3075), + [anon_sym_typedef] = ACTIONS(3075), + [anon_sym_virtual] = ACTIONS(3075), + [anon_sym_extern] = ACTIONS(3075), + [anon_sym___attribute__] = ACTIONS(3075), + [anon_sym___attribute] = ACTIONS(3075), + [anon_sym_using] = ACTIONS(3075), + [anon_sym_COLON_COLON] = ACTIONS(3077), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3077), + [anon_sym___declspec] = ACTIONS(3075), + [anon_sym___based] = ACTIONS(3075), + [anon_sym___cdecl] = ACTIONS(3075), + [anon_sym___clrcall] = ACTIONS(3075), + [anon_sym___stdcall] = ACTIONS(3075), + [anon_sym___fastcall] = ACTIONS(3075), + [anon_sym___thiscall] = ACTIONS(3075), + [anon_sym___vectorcall] = ACTIONS(3075), + [anon_sym_LBRACE] = ACTIONS(3077), + [anon_sym_RBRACE] = ACTIONS(3077), + [anon_sym_signed] = ACTIONS(3075), + [anon_sym_unsigned] = ACTIONS(3075), + [anon_sym_long] = ACTIONS(3075), + [anon_sym_short] = ACTIONS(3075), + [anon_sym_LBRACK] = ACTIONS(3075), + [anon_sym_static] = ACTIONS(3075), + [anon_sym_register] = ACTIONS(3075), + [anon_sym_inline] = ACTIONS(3075), + [anon_sym___inline] = ACTIONS(3075), + [anon_sym___inline__] = ACTIONS(3075), + [anon_sym___forceinline] = ACTIONS(3075), + [anon_sym_thread_local] = ACTIONS(3075), + [anon_sym___thread] = ACTIONS(3075), + [anon_sym_const] = ACTIONS(3075), + [anon_sym_constexpr] = ACTIONS(3075), + [anon_sym_volatile] = ACTIONS(3075), + [anon_sym_restrict] = ACTIONS(3075), + [anon_sym___restrict__] = ACTIONS(3075), + [anon_sym__Atomic] = ACTIONS(3075), + [anon_sym__Noreturn] = ACTIONS(3075), + [anon_sym_noreturn] = ACTIONS(3075), + [anon_sym__Nonnull] = ACTIONS(3075), + [anon_sym_mutable] = ACTIONS(3075), + [anon_sym_constinit] = ACTIONS(3075), + [anon_sym_consteval] = ACTIONS(3075), + [anon_sym_alignas] = ACTIONS(3075), + [anon_sym__Alignas] = ACTIONS(3075), + [sym_primitive_type] = ACTIONS(3075), + [anon_sym_enum] = ACTIONS(3075), + [anon_sym_class] = ACTIONS(3075), + [anon_sym_struct] = ACTIONS(3075), + [anon_sym_union] = ACTIONS(3075), + [anon_sym_if] = ACTIONS(3075), + [anon_sym_switch] = ACTIONS(3075), + [anon_sym_case] = ACTIONS(3075), + [anon_sym_default] = ACTIONS(3075), + [anon_sym_while] = ACTIONS(3075), + [anon_sym_do] = ACTIONS(3075), + [anon_sym_for] = ACTIONS(3075), + [anon_sym_return] = ACTIONS(3075), + [anon_sym_break] = ACTIONS(3075), + [anon_sym_continue] = ACTIONS(3075), + [anon_sym_goto] = ACTIONS(3075), + [anon_sym___try] = ACTIONS(3075), + [anon_sym___leave] = ACTIONS(3075), + [anon_sym_not] = ACTIONS(3075), + [anon_sym_compl] = ACTIONS(3075), + [anon_sym_DASH_DASH] = ACTIONS(3077), + [anon_sym_PLUS_PLUS] = ACTIONS(3077), + [anon_sym_sizeof] = ACTIONS(3075), + [anon_sym___alignof__] = ACTIONS(3075), + [anon_sym___alignof] = ACTIONS(3075), + [anon_sym__alignof] = ACTIONS(3075), + [anon_sym_alignof] = ACTIONS(3075), + [anon_sym__Alignof] = ACTIONS(3075), + [anon_sym_offsetof] = ACTIONS(3075), + [anon_sym__Generic] = ACTIONS(3075), + [anon_sym_asm] = ACTIONS(3075), + [anon_sym___asm__] = ACTIONS(3075), + [anon_sym___asm] = ACTIONS(3075), + [sym_number_literal] = ACTIONS(3077), + [anon_sym_L_SQUOTE] = ACTIONS(3077), + [anon_sym_u_SQUOTE] = ACTIONS(3077), + [anon_sym_U_SQUOTE] = ACTIONS(3077), + [anon_sym_u8_SQUOTE] = ACTIONS(3077), + [anon_sym_SQUOTE] = ACTIONS(3077), + [anon_sym_L_DQUOTE] = ACTIONS(3077), + [anon_sym_u_DQUOTE] = ACTIONS(3077), + [anon_sym_U_DQUOTE] = ACTIONS(3077), + [anon_sym_u8_DQUOTE] = ACTIONS(3077), + [anon_sym_DQUOTE] = ACTIONS(3077), + [sym_true] = ACTIONS(3075), + [sym_false] = ACTIONS(3075), + [anon_sym_NULL] = ACTIONS(3075), + [anon_sym_nullptr] = ACTIONS(3075), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2923), - [anon_sym_decltype] = ACTIONS(2923), - [anon_sym_explicit] = ACTIONS(2923), - [anon_sym_typename] = ACTIONS(2923), - [anon_sym_template] = ACTIONS(2923), - [anon_sym_operator] = ACTIONS(2923), - [anon_sym_try] = ACTIONS(2923), - [anon_sym_delete] = ACTIONS(2923), - [anon_sym_throw] = ACTIONS(2923), - [anon_sym_namespace] = ACTIONS(2923), - [anon_sym_static_assert] = ACTIONS(2923), - [anon_sym_concept] = ACTIONS(2923), - [anon_sym_co_return] = ACTIONS(2923), - [anon_sym_co_yield] = ACTIONS(2923), - [anon_sym_R_DQUOTE] = ACTIONS(2925), - [anon_sym_LR_DQUOTE] = ACTIONS(2925), - [anon_sym_uR_DQUOTE] = ACTIONS(2925), - [anon_sym_UR_DQUOTE] = ACTIONS(2925), - [anon_sym_u8R_DQUOTE] = ACTIONS(2925), - [anon_sym_co_await] = ACTIONS(2923), - [anon_sym_new] = ACTIONS(2923), - [anon_sym_requires] = ACTIONS(2923), - [sym_this] = ACTIONS(2923), + [sym_auto] = ACTIONS(3075), + [anon_sym_decltype] = ACTIONS(3075), + [anon_sym_explicit] = ACTIONS(3075), + [anon_sym_typename] = ACTIONS(3075), + [anon_sym_template] = ACTIONS(3075), + [anon_sym_operator] = ACTIONS(3075), + [anon_sym_try] = ACTIONS(3075), + [anon_sym_delete] = ACTIONS(3075), + [anon_sym_throw] = ACTIONS(3075), + [anon_sym_namespace] = ACTIONS(3075), + [anon_sym_static_assert] = ACTIONS(3075), + [anon_sym_concept] = ACTIONS(3075), + [anon_sym_co_return] = ACTIONS(3075), + [anon_sym_co_yield] = ACTIONS(3075), + [anon_sym_R_DQUOTE] = ACTIONS(3077), + [anon_sym_LR_DQUOTE] = ACTIONS(3077), + [anon_sym_uR_DQUOTE] = ACTIONS(3077), + [anon_sym_UR_DQUOTE] = ACTIONS(3077), + [anon_sym_u8R_DQUOTE] = ACTIONS(3077), + [anon_sym_co_await] = ACTIONS(3075), + [anon_sym_new] = ACTIONS(3075), + [anon_sym_requires] = ACTIONS(3075), + [sym_this] = ACTIONS(3075), }, - [728] = { - [sym_identifier] = ACTIONS(2927), - [aux_sym_preproc_include_token1] = ACTIONS(2927), - [aux_sym_preproc_def_token1] = ACTIONS(2927), - [aux_sym_preproc_if_token1] = ACTIONS(2927), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2927), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2927), - [sym_preproc_directive] = ACTIONS(2927), - [anon_sym_LPAREN2] = ACTIONS(2929), - [anon_sym_BANG] = ACTIONS(2929), - [anon_sym_TILDE] = ACTIONS(2929), - [anon_sym_DASH] = ACTIONS(2927), - [anon_sym_PLUS] = ACTIONS(2927), - [anon_sym_STAR] = ACTIONS(2929), - [anon_sym_AMP_AMP] = ACTIONS(2929), - [anon_sym_AMP] = ACTIONS(2927), - [anon_sym_SEMI] = ACTIONS(2929), - [anon_sym___extension__] = ACTIONS(2927), - [anon_sym_typedef] = ACTIONS(2927), - [anon_sym_virtual] = ACTIONS(2927), - [anon_sym_extern] = ACTIONS(2927), - [anon_sym___attribute__] = ACTIONS(2927), - [anon_sym___attribute] = ACTIONS(2927), - [anon_sym_using] = ACTIONS(2927), - [anon_sym_COLON_COLON] = ACTIONS(2929), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2929), - [anon_sym___declspec] = ACTIONS(2927), - [anon_sym___based] = ACTIONS(2927), - [anon_sym___cdecl] = ACTIONS(2927), - [anon_sym___clrcall] = ACTIONS(2927), - [anon_sym___stdcall] = ACTIONS(2927), - [anon_sym___fastcall] = ACTIONS(2927), - [anon_sym___thiscall] = ACTIONS(2927), - [anon_sym___vectorcall] = ACTIONS(2927), - [anon_sym_LBRACE] = ACTIONS(2929), - [anon_sym_RBRACE] = ACTIONS(2929), - [anon_sym_signed] = ACTIONS(2927), - [anon_sym_unsigned] = ACTIONS(2927), - [anon_sym_long] = ACTIONS(2927), - [anon_sym_short] = ACTIONS(2927), - [anon_sym_LBRACK] = ACTIONS(2927), - [anon_sym_static] = ACTIONS(2927), - [anon_sym_register] = ACTIONS(2927), - [anon_sym_inline] = ACTIONS(2927), - [anon_sym___inline] = ACTIONS(2927), - [anon_sym___inline__] = ACTIONS(2927), - [anon_sym___forceinline] = ACTIONS(2927), - [anon_sym_thread_local] = ACTIONS(2927), - [anon_sym___thread] = ACTIONS(2927), - [anon_sym_const] = ACTIONS(2927), - [anon_sym_constexpr] = ACTIONS(2927), - [anon_sym_volatile] = ACTIONS(2927), - [anon_sym_restrict] = ACTIONS(2927), - [anon_sym___restrict__] = ACTIONS(2927), - [anon_sym__Atomic] = ACTIONS(2927), - [anon_sym__Noreturn] = ACTIONS(2927), - [anon_sym_noreturn] = ACTIONS(2927), - [anon_sym__Nonnull] = ACTIONS(2927), - [anon_sym_mutable] = ACTIONS(2927), - [anon_sym_constinit] = ACTIONS(2927), - [anon_sym_consteval] = ACTIONS(2927), - [anon_sym_alignas] = ACTIONS(2927), - [anon_sym__Alignas] = ACTIONS(2927), - [sym_primitive_type] = ACTIONS(2927), - [anon_sym_enum] = ACTIONS(2927), - [anon_sym_class] = ACTIONS(2927), - [anon_sym_struct] = ACTIONS(2927), - [anon_sym_union] = ACTIONS(2927), - [anon_sym_if] = ACTIONS(2927), - [anon_sym_switch] = ACTIONS(2927), - [anon_sym_case] = ACTIONS(2927), - [anon_sym_default] = ACTIONS(2927), - [anon_sym_while] = ACTIONS(2927), - [anon_sym_do] = ACTIONS(2927), - [anon_sym_for] = ACTIONS(2927), - [anon_sym_return] = ACTIONS(2927), - [anon_sym_break] = ACTIONS(2927), - [anon_sym_continue] = ACTIONS(2927), - [anon_sym_goto] = ACTIONS(2927), - [anon_sym___try] = ACTIONS(2927), - [anon_sym___leave] = ACTIONS(2927), - [anon_sym_not] = ACTIONS(2927), - [anon_sym_compl] = ACTIONS(2927), - [anon_sym_DASH_DASH] = ACTIONS(2929), - [anon_sym_PLUS_PLUS] = ACTIONS(2929), - [anon_sym_sizeof] = ACTIONS(2927), - [anon_sym___alignof__] = ACTIONS(2927), - [anon_sym___alignof] = ACTIONS(2927), - [anon_sym__alignof] = ACTIONS(2927), - [anon_sym_alignof] = ACTIONS(2927), - [anon_sym__Alignof] = ACTIONS(2927), - [anon_sym_offsetof] = ACTIONS(2927), - [anon_sym__Generic] = ACTIONS(2927), - [anon_sym_asm] = ACTIONS(2927), - [anon_sym___asm__] = ACTIONS(2927), - [anon_sym___asm] = ACTIONS(2927), - [sym_number_literal] = ACTIONS(2929), - [anon_sym_L_SQUOTE] = ACTIONS(2929), - [anon_sym_u_SQUOTE] = ACTIONS(2929), - [anon_sym_U_SQUOTE] = ACTIONS(2929), - [anon_sym_u8_SQUOTE] = ACTIONS(2929), - [anon_sym_SQUOTE] = ACTIONS(2929), - [anon_sym_L_DQUOTE] = ACTIONS(2929), - [anon_sym_u_DQUOTE] = ACTIONS(2929), - [anon_sym_U_DQUOTE] = ACTIONS(2929), - [anon_sym_u8_DQUOTE] = ACTIONS(2929), - [anon_sym_DQUOTE] = ACTIONS(2929), - [sym_true] = ACTIONS(2927), - [sym_false] = ACTIONS(2927), - [anon_sym_NULL] = ACTIONS(2927), - [anon_sym_nullptr] = ACTIONS(2927), + [760] = { + [sym_identifier] = ACTIONS(3075), + [aux_sym_preproc_include_token1] = ACTIONS(3075), + [aux_sym_preproc_def_token1] = ACTIONS(3075), + [aux_sym_preproc_if_token1] = ACTIONS(3075), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3075), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3075), + [sym_preproc_directive] = ACTIONS(3075), + [anon_sym_LPAREN2] = ACTIONS(3077), + [anon_sym_BANG] = ACTIONS(3077), + [anon_sym_TILDE] = ACTIONS(3077), + [anon_sym_DASH] = ACTIONS(3075), + [anon_sym_PLUS] = ACTIONS(3075), + [anon_sym_STAR] = ACTIONS(3077), + [anon_sym_AMP_AMP] = ACTIONS(3077), + [anon_sym_AMP] = ACTIONS(3075), + [anon_sym_SEMI] = ACTIONS(3077), + [anon_sym___extension__] = ACTIONS(3075), + [anon_sym_typedef] = ACTIONS(3075), + [anon_sym_virtual] = ACTIONS(3075), + [anon_sym_extern] = ACTIONS(3075), + [anon_sym___attribute__] = ACTIONS(3075), + [anon_sym___attribute] = ACTIONS(3075), + [anon_sym_using] = ACTIONS(3075), + [anon_sym_COLON_COLON] = ACTIONS(3077), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3077), + [anon_sym___declspec] = ACTIONS(3075), + [anon_sym___based] = ACTIONS(3075), + [anon_sym___cdecl] = ACTIONS(3075), + [anon_sym___clrcall] = ACTIONS(3075), + [anon_sym___stdcall] = ACTIONS(3075), + [anon_sym___fastcall] = ACTIONS(3075), + [anon_sym___thiscall] = ACTIONS(3075), + [anon_sym___vectorcall] = ACTIONS(3075), + [anon_sym_LBRACE] = ACTIONS(3077), + [anon_sym_RBRACE] = ACTIONS(3077), + [anon_sym_signed] = ACTIONS(3075), + [anon_sym_unsigned] = ACTIONS(3075), + [anon_sym_long] = ACTIONS(3075), + [anon_sym_short] = ACTIONS(3075), + [anon_sym_LBRACK] = ACTIONS(3075), + [anon_sym_static] = ACTIONS(3075), + [anon_sym_register] = ACTIONS(3075), + [anon_sym_inline] = ACTIONS(3075), + [anon_sym___inline] = ACTIONS(3075), + [anon_sym___inline__] = ACTIONS(3075), + [anon_sym___forceinline] = ACTIONS(3075), + [anon_sym_thread_local] = ACTIONS(3075), + [anon_sym___thread] = ACTIONS(3075), + [anon_sym_const] = ACTIONS(3075), + [anon_sym_constexpr] = ACTIONS(3075), + [anon_sym_volatile] = ACTIONS(3075), + [anon_sym_restrict] = ACTIONS(3075), + [anon_sym___restrict__] = ACTIONS(3075), + [anon_sym__Atomic] = ACTIONS(3075), + [anon_sym__Noreturn] = ACTIONS(3075), + [anon_sym_noreturn] = ACTIONS(3075), + [anon_sym__Nonnull] = ACTIONS(3075), + [anon_sym_mutable] = ACTIONS(3075), + [anon_sym_constinit] = ACTIONS(3075), + [anon_sym_consteval] = ACTIONS(3075), + [anon_sym_alignas] = ACTIONS(3075), + [anon_sym__Alignas] = ACTIONS(3075), + [sym_primitive_type] = ACTIONS(3075), + [anon_sym_enum] = ACTIONS(3075), + [anon_sym_class] = ACTIONS(3075), + [anon_sym_struct] = ACTIONS(3075), + [anon_sym_union] = ACTIONS(3075), + [anon_sym_if] = ACTIONS(3075), + [anon_sym_switch] = ACTIONS(3075), + [anon_sym_case] = ACTIONS(3075), + [anon_sym_default] = ACTIONS(3075), + [anon_sym_while] = ACTIONS(3075), + [anon_sym_do] = ACTIONS(3075), + [anon_sym_for] = ACTIONS(3075), + [anon_sym_return] = ACTIONS(3075), + [anon_sym_break] = ACTIONS(3075), + [anon_sym_continue] = ACTIONS(3075), + [anon_sym_goto] = ACTIONS(3075), + [anon_sym___try] = ACTIONS(3075), + [anon_sym___leave] = ACTIONS(3075), + [anon_sym_not] = ACTIONS(3075), + [anon_sym_compl] = ACTIONS(3075), + [anon_sym_DASH_DASH] = ACTIONS(3077), + [anon_sym_PLUS_PLUS] = ACTIONS(3077), + [anon_sym_sizeof] = ACTIONS(3075), + [anon_sym___alignof__] = ACTIONS(3075), + [anon_sym___alignof] = ACTIONS(3075), + [anon_sym__alignof] = ACTIONS(3075), + [anon_sym_alignof] = ACTIONS(3075), + [anon_sym__Alignof] = ACTIONS(3075), + [anon_sym_offsetof] = ACTIONS(3075), + [anon_sym__Generic] = ACTIONS(3075), + [anon_sym_asm] = ACTIONS(3075), + [anon_sym___asm__] = ACTIONS(3075), + [anon_sym___asm] = ACTIONS(3075), + [sym_number_literal] = ACTIONS(3077), + [anon_sym_L_SQUOTE] = ACTIONS(3077), + [anon_sym_u_SQUOTE] = ACTIONS(3077), + [anon_sym_U_SQUOTE] = ACTIONS(3077), + [anon_sym_u8_SQUOTE] = ACTIONS(3077), + [anon_sym_SQUOTE] = ACTIONS(3077), + [anon_sym_L_DQUOTE] = ACTIONS(3077), + [anon_sym_u_DQUOTE] = ACTIONS(3077), + [anon_sym_U_DQUOTE] = ACTIONS(3077), + [anon_sym_u8_DQUOTE] = ACTIONS(3077), + [anon_sym_DQUOTE] = ACTIONS(3077), + [sym_true] = ACTIONS(3075), + [sym_false] = ACTIONS(3075), + [anon_sym_NULL] = ACTIONS(3075), + [anon_sym_nullptr] = ACTIONS(3075), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2927), - [anon_sym_decltype] = ACTIONS(2927), - [anon_sym_explicit] = ACTIONS(2927), - [anon_sym_typename] = ACTIONS(2927), - [anon_sym_template] = ACTIONS(2927), - [anon_sym_operator] = ACTIONS(2927), - [anon_sym_try] = ACTIONS(2927), - [anon_sym_delete] = ACTIONS(2927), - [anon_sym_throw] = ACTIONS(2927), - [anon_sym_namespace] = ACTIONS(2927), - [anon_sym_static_assert] = ACTIONS(2927), - [anon_sym_concept] = ACTIONS(2927), - [anon_sym_co_return] = ACTIONS(2927), - [anon_sym_co_yield] = ACTIONS(2927), - [anon_sym_R_DQUOTE] = ACTIONS(2929), - [anon_sym_LR_DQUOTE] = ACTIONS(2929), - [anon_sym_uR_DQUOTE] = ACTIONS(2929), - [anon_sym_UR_DQUOTE] = ACTIONS(2929), - [anon_sym_u8R_DQUOTE] = ACTIONS(2929), - [anon_sym_co_await] = ACTIONS(2927), - [anon_sym_new] = ACTIONS(2927), - [anon_sym_requires] = ACTIONS(2927), - [sym_this] = ACTIONS(2927), - }, - [729] = { - [sym_identifier] = ACTIONS(3067), - [aux_sym_preproc_include_token1] = ACTIONS(3067), - [aux_sym_preproc_def_token1] = ACTIONS(3067), - [aux_sym_preproc_if_token1] = ACTIONS(3067), - [aux_sym_preproc_if_token2] = ACTIONS(3067), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3067), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3067), - [sym_preproc_directive] = ACTIONS(3067), - [anon_sym_LPAREN2] = ACTIONS(3069), - [anon_sym_BANG] = ACTIONS(3069), - [anon_sym_TILDE] = ACTIONS(3069), - [anon_sym_DASH] = ACTIONS(3067), - [anon_sym_PLUS] = ACTIONS(3067), - [anon_sym_STAR] = ACTIONS(3069), - [anon_sym_AMP_AMP] = ACTIONS(3069), - [anon_sym_AMP] = ACTIONS(3067), - [anon_sym_SEMI] = ACTIONS(3069), - [anon_sym___extension__] = ACTIONS(3067), - [anon_sym_typedef] = ACTIONS(3067), - [anon_sym_virtual] = ACTIONS(3067), - [anon_sym_extern] = ACTIONS(3067), - [anon_sym___attribute__] = ACTIONS(3067), - [anon_sym___attribute] = ACTIONS(3067), - [anon_sym_using] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(3069), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3069), - [anon_sym___declspec] = ACTIONS(3067), - [anon_sym___based] = ACTIONS(3067), - [anon_sym___cdecl] = ACTIONS(3067), - [anon_sym___clrcall] = ACTIONS(3067), - [anon_sym___stdcall] = ACTIONS(3067), - [anon_sym___fastcall] = ACTIONS(3067), - [anon_sym___thiscall] = ACTIONS(3067), - [anon_sym___vectorcall] = ACTIONS(3067), - [anon_sym_LBRACE] = ACTIONS(3069), - [anon_sym_signed] = ACTIONS(3067), - [anon_sym_unsigned] = ACTIONS(3067), - [anon_sym_long] = ACTIONS(3067), - [anon_sym_short] = ACTIONS(3067), - [anon_sym_LBRACK] = ACTIONS(3067), - [anon_sym_static] = ACTIONS(3067), - [anon_sym_register] = ACTIONS(3067), - [anon_sym_inline] = ACTIONS(3067), - [anon_sym___inline] = ACTIONS(3067), - [anon_sym___inline__] = ACTIONS(3067), - [anon_sym___forceinline] = ACTIONS(3067), - [anon_sym_thread_local] = ACTIONS(3067), - [anon_sym___thread] = ACTIONS(3067), - [anon_sym_const] = ACTIONS(3067), - [anon_sym_constexpr] = ACTIONS(3067), - [anon_sym_volatile] = ACTIONS(3067), - [anon_sym_restrict] = ACTIONS(3067), - [anon_sym___restrict__] = ACTIONS(3067), - [anon_sym__Atomic] = ACTIONS(3067), - [anon_sym__Noreturn] = ACTIONS(3067), - [anon_sym_noreturn] = ACTIONS(3067), - [anon_sym__Nonnull] = ACTIONS(3067), - [anon_sym_mutable] = ACTIONS(3067), - [anon_sym_constinit] = ACTIONS(3067), - [anon_sym_consteval] = ACTIONS(3067), - [anon_sym_alignas] = ACTIONS(3067), - [anon_sym__Alignas] = ACTIONS(3067), - [sym_primitive_type] = ACTIONS(3067), - [anon_sym_enum] = ACTIONS(3067), - [anon_sym_class] = ACTIONS(3067), - [anon_sym_struct] = ACTIONS(3067), - [anon_sym_union] = ACTIONS(3067), - [anon_sym_if] = ACTIONS(3067), - [anon_sym_switch] = ACTIONS(3067), - [anon_sym_case] = ACTIONS(3067), - [anon_sym_default] = ACTIONS(3067), - [anon_sym_while] = ACTIONS(3067), - [anon_sym_do] = ACTIONS(3067), - [anon_sym_for] = ACTIONS(3067), - [anon_sym_return] = ACTIONS(3067), - [anon_sym_break] = ACTIONS(3067), - [anon_sym_continue] = ACTIONS(3067), - [anon_sym_goto] = ACTIONS(3067), - [anon_sym___try] = ACTIONS(3067), - [anon_sym___leave] = ACTIONS(3067), - [anon_sym_not] = ACTIONS(3067), - [anon_sym_compl] = ACTIONS(3067), - [anon_sym_DASH_DASH] = ACTIONS(3069), - [anon_sym_PLUS_PLUS] = ACTIONS(3069), - [anon_sym_sizeof] = ACTIONS(3067), - [anon_sym___alignof__] = ACTIONS(3067), - [anon_sym___alignof] = ACTIONS(3067), - [anon_sym__alignof] = ACTIONS(3067), - [anon_sym_alignof] = ACTIONS(3067), - [anon_sym__Alignof] = ACTIONS(3067), - [anon_sym_offsetof] = ACTIONS(3067), - [anon_sym__Generic] = ACTIONS(3067), - [anon_sym_asm] = ACTIONS(3067), - [anon_sym___asm__] = ACTIONS(3067), - [anon_sym___asm] = ACTIONS(3067), - [sym_number_literal] = ACTIONS(3069), - [anon_sym_L_SQUOTE] = ACTIONS(3069), - [anon_sym_u_SQUOTE] = ACTIONS(3069), - [anon_sym_U_SQUOTE] = ACTIONS(3069), - [anon_sym_u8_SQUOTE] = ACTIONS(3069), - [anon_sym_SQUOTE] = ACTIONS(3069), - [anon_sym_L_DQUOTE] = ACTIONS(3069), - [anon_sym_u_DQUOTE] = ACTIONS(3069), - [anon_sym_U_DQUOTE] = ACTIONS(3069), - [anon_sym_u8_DQUOTE] = ACTIONS(3069), - [anon_sym_DQUOTE] = ACTIONS(3069), - [sym_true] = ACTIONS(3067), - [sym_false] = ACTIONS(3067), - [anon_sym_NULL] = ACTIONS(3067), - [anon_sym_nullptr] = ACTIONS(3067), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3067), - [anon_sym_decltype] = ACTIONS(3067), - [anon_sym_explicit] = ACTIONS(3067), - [anon_sym_typename] = ACTIONS(3067), - [anon_sym_template] = ACTIONS(3067), - [anon_sym_operator] = ACTIONS(3067), - [anon_sym_try] = ACTIONS(3067), - [anon_sym_delete] = ACTIONS(3067), - [anon_sym_throw] = ACTIONS(3067), - [anon_sym_namespace] = ACTIONS(3067), - [anon_sym_static_assert] = ACTIONS(3067), - [anon_sym_concept] = ACTIONS(3067), - [anon_sym_co_return] = ACTIONS(3067), - [anon_sym_co_yield] = ACTIONS(3067), - [anon_sym_R_DQUOTE] = ACTIONS(3069), - [anon_sym_LR_DQUOTE] = ACTIONS(3069), - [anon_sym_uR_DQUOTE] = ACTIONS(3069), - [anon_sym_UR_DQUOTE] = ACTIONS(3069), - [anon_sym_u8R_DQUOTE] = ACTIONS(3069), - [anon_sym_co_await] = ACTIONS(3067), - [anon_sym_new] = ACTIONS(3067), - [anon_sym_requires] = ACTIONS(3067), - [sym_this] = ACTIONS(3067), + [sym_auto] = ACTIONS(3075), + [anon_sym_decltype] = ACTIONS(3075), + [anon_sym_explicit] = ACTIONS(3075), + [anon_sym_typename] = ACTIONS(3075), + [anon_sym_template] = ACTIONS(3075), + [anon_sym_operator] = ACTIONS(3075), + [anon_sym_try] = ACTIONS(3075), + [anon_sym_delete] = ACTIONS(3075), + [anon_sym_throw] = ACTIONS(3075), + [anon_sym_namespace] = ACTIONS(3075), + [anon_sym_static_assert] = ACTIONS(3075), + [anon_sym_concept] = ACTIONS(3075), + [anon_sym_co_return] = ACTIONS(3075), + [anon_sym_co_yield] = ACTIONS(3075), + [anon_sym_R_DQUOTE] = ACTIONS(3077), + [anon_sym_LR_DQUOTE] = ACTIONS(3077), + [anon_sym_uR_DQUOTE] = ACTIONS(3077), + [anon_sym_UR_DQUOTE] = ACTIONS(3077), + [anon_sym_u8R_DQUOTE] = ACTIONS(3077), + [anon_sym_co_await] = ACTIONS(3075), + [anon_sym_new] = ACTIONS(3075), + [anon_sym_requires] = ACTIONS(3075), + [sym_this] = ACTIONS(3075), }, - [730] = { - [sym_identifier] = ACTIONS(2843), - [aux_sym_preproc_include_token1] = ACTIONS(2843), - [aux_sym_preproc_def_token1] = ACTIONS(2843), - [aux_sym_preproc_if_token1] = ACTIONS(2843), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2843), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2843), - [sym_preproc_directive] = ACTIONS(2843), - [anon_sym_LPAREN2] = ACTIONS(2845), - [anon_sym_BANG] = ACTIONS(2845), - [anon_sym_TILDE] = ACTIONS(2845), - [anon_sym_DASH] = ACTIONS(2843), - [anon_sym_PLUS] = ACTIONS(2843), - [anon_sym_STAR] = ACTIONS(2845), - [anon_sym_AMP_AMP] = ACTIONS(2845), - [anon_sym_AMP] = ACTIONS(2843), - [anon_sym_SEMI] = ACTIONS(2845), - [anon_sym___extension__] = ACTIONS(2843), - [anon_sym_typedef] = ACTIONS(2843), - [anon_sym_virtual] = ACTIONS(2843), - [anon_sym_extern] = ACTIONS(2843), - [anon_sym___attribute__] = ACTIONS(2843), - [anon_sym___attribute] = ACTIONS(2843), - [anon_sym_using] = ACTIONS(2843), - [anon_sym_COLON_COLON] = ACTIONS(2845), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2845), - [anon_sym___declspec] = ACTIONS(2843), - [anon_sym___based] = ACTIONS(2843), - [anon_sym___cdecl] = ACTIONS(2843), - [anon_sym___clrcall] = ACTIONS(2843), - [anon_sym___stdcall] = ACTIONS(2843), - [anon_sym___fastcall] = ACTIONS(2843), - [anon_sym___thiscall] = ACTIONS(2843), - [anon_sym___vectorcall] = ACTIONS(2843), - [anon_sym_LBRACE] = ACTIONS(2845), - [anon_sym_RBRACE] = ACTIONS(2845), - [anon_sym_signed] = ACTIONS(2843), - [anon_sym_unsigned] = ACTIONS(2843), - [anon_sym_long] = ACTIONS(2843), - [anon_sym_short] = ACTIONS(2843), - [anon_sym_LBRACK] = ACTIONS(2843), - [anon_sym_static] = ACTIONS(2843), - [anon_sym_register] = ACTIONS(2843), - [anon_sym_inline] = ACTIONS(2843), - [anon_sym___inline] = ACTIONS(2843), - [anon_sym___inline__] = ACTIONS(2843), - [anon_sym___forceinline] = ACTIONS(2843), - [anon_sym_thread_local] = ACTIONS(2843), - [anon_sym___thread] = ACTIONS(2843), - [anon_sym_const] = ACTIONS(2843), - [anon_sym_constexpr] = ACTIONS(2843), - [anon_sym_volatile] = ACTIONS(2843), - [anon_sym_restrict] = ACTIONS(2843), - [anon_sym___restrict__] = ACTIONS(2843), - [anon_sym__Atomic] = ACTIONS(2843), - [anon_sym__Noreturn] = ACTIONS(2843), - [anon_sym_noreturn] = ACTIONS(2843), - [anon_sym__Nonnull] = ACTIONS(2843), - [anon_sym_mutable] = ACTIONS(2843), - [anon_sym_constinit] = ACTIONS(2843), - [anon_sym_consteval] = ACTIONS(2843), - [anon_sym_alignas] = ACTIONS(2843), - [anon_sym__Alignas] = ACTIONS(2843), - [sym_primitive_type] = ACTIONS(2843), - [anon_sym_enum] = ACTIONS(2843), - [anon_sym_class] = ACTIONS(2843), - [anon_sym_struct] = ACTIONS(2843), - [anon_sym_union] = ACTIONS(2843), - [anon_sym_if] = ACTIONS(2843), - [anon_sym_switch] = ACTIONS(2843), - [anon_sym_case] = ACTIONS(2843), - [anon_sym_default] = ACTIONS(2843), - [anon_sym_while] = ACTIONS(2843), - [anon_sym_do] = ACTIONS(2843), - [anon_sym_for] = ACTIONS(2843), - [anon_sym_return] = ACTIONS(2843), - [anon_sym_break] = ACTIONS(2843), - [anon_sym_continue] = ACTIONS(2843), - [anon_sym_goto] = ACTIONS(2843), - [anon_sym___try] = ACTIONS(2843), - [anon_sym___leave] = ACTIONS(2843), - [anon_sym_not] = ACTIONS(2843), - [anon_sym_compl] = ACTIONS(2843), - [anon_sym_DASH_DASH] = ACTIONS(2845), - [anon_sym_PLUS_PLUS] = ACTIONS(2845), - [anon_sym_sizeof] = ACTIONS(2843), - [anon_sym___alignof__] = ACTIONS(2843), - [anon_sym___alignof] = ACTIONS(2843), - [anon_sym__alignof] = ACTIONS(2843), - [anon_sym_alignof] = ACTIONS(2843), - [anon_sym__Alignof] = ACTIONS(2843), - [anon_sym_offsetof] = ACTIONS(2843), - [anon_sym__Generic] = ACTIONS(2843), - [anon_sym_asm] = ACTIONS(2843), - [anon_sym___asm__] = ACTIONS(2843), - [anon_sym___asm] = ACTIONS(2843), - [sym_number_literal] = ACTIONS(2845), - [anon_sym_L_SQUOTE] = ACTIONS(2845), - [anon_sym_u_SQUOTE] = ACTIONS(2845), - [anon_sym_U_SQUOTE] = ACTIONS(2845), - [anon_sym_u8_SQUOTE] = ACTIONS(2845), - [anon_sym_SQUOTE] = ACTIONS(2845), - [anon_sym_L_DQUOTE] = ACTIONS(2845), - [anon_sym_u_DQUOTE] = ACTIONS(2845), - [anon_sym_U_DQUOTE] = ACTIONS(2845), - [anon_sym_u8_DQUOTE] = ACTIONS(2845), - [anon_sym_DQUOTE] = ACTIONS(2845), - [sym_true] = ACTIONS(2843), - [sym_false] = ACTIONS(2843), - [anon_sym_NULL] = ACTIONS(2843), - [anon_sym_nullptr] = ACTIONS(2843), + [761] = { + [sym_identifier] = ACTIONS(3079), + [aux_sym_preproc_include_token1] = ACTIONS(3079), + [aux_sym_preproc_def_token1] = ACTIONS(3079), + [aux_sym_preproc_if_token1] = ACTIONS(3079), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3079), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3079), + [sym_preproc_directive] = ACTIONS(3079), + [anon_sym_LPAREN2] = ACTIONS(3081), + [anon_sym_BANG] = ACTIONS(3081), + [anon_sym_TILDE] = ACTIONS(3081), + [anon_sym_DASH] = ACTIONS(3079), + [anon_sym_PLUS] = ACTIONS(3079), + [anon_sym_STAR] = ACTIONS(3081), + [anon_sym_AMP_AMP] = ACTIONS(3081), + [anon_sym_AMP] = ACTIONS(3079), + [anon_sym_SEMI] = ACTIONS(3081), + [anon_sym___extension__] = ACTIONS(3079), + [anon_sym_typedef] = ACTIONS(3079), + [anon_sym_virtual] = ACTIONS(3079), + [anon_sym_extern] = ACTIONS(3079), + [anon_sym___attribute__] = ACTIONS(3079), + [anon_sym___attribute] = ACTIONS(3079), + [anon_sym_using] = ACTIONS(3079), + [anon_sym_COLON_COLON] = ACTIONS(3081), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3081), + [anon_sym___declspec] = ACTIONS(3079), + [anon_sym___based] = ACTIONS(3079), + [anon_sym___cdecl] = ACTIONS(3079), + [anon_sym___clrcall] = ACTIONS(3079), + [anon_sym___stdcall] = ACTIONS(3079), + [anon_sym___fastcall] = ACTIONS(3079), + [anon_sym___thiscall] = ACTIONS(3079), + [anon_sym___vectorcall] = ACTIONS(3079), + [anon_sym_LBRACE] = ACTIONS(3081), + [anon_sym_RBRACE] = ACTIONS(3081), + [anon_sym_signed] = ACTIONS(3079), + [anon_sym_unsigned] = ACTIONS(3079), + [anon_sym_long] = ACTIONS(3079), + [anon_sym_short] = ACTIONS(3079), + [anon_sym_LBRACK] = ACTIONS(3079), + [anon_sym_static] = ACTIONS(3079), + [anon_sym_register] = ACTIONS(3079), + [anon_sym_inline] = ACTIONS(3079), + [anon_sym___inline] = ACTIONS(3079), + [anon_sym___inline__] = ACTIONS(3079), + [anon_sym___forceinline] = ACTIONS(3079), + [anon_sym_thread_local] = ACTIONS(3079), + [anon_sym___thread] = ACTIONS(3079), + [anon_sym_const] = ACTIONS(3079), + [anon_sym_constexpr] = ACTIONS(3079), + [anon_sym_volatile] = ACTIONS(3079), + [anon_sym_restrict] = ACTIONS(3079), + [anon_sym___restrict__] = ACTIONS(3079), + [anon_sym__Atomic] = ACTIONS(3079), + [anon_sym__Noreturn] = ACTIONS(3079), + [anon_sym_noreturn] = ACTIONS(3079), + [anon_sym__Nonnull] = ACTIONS(3079), + [anon_sym_mutable] = ACTIONS(3079), + [anon_sym_constinit] = ACTIONS(3079), + [anon_sym_consteval] = ACTIONS(3079), + [anon_sym_alignas] = ACTIONS(3079), + [anon_sym__Alignas] = ACTIONS(3079), + [sym_primitive_type] = ACTIONS(3079), + [anon_sym_enum] = ACTIONS(3079), + [anon_sym_class] = ACTIONS(3079), + [anon_sym_struct] = ACTIONS(3079), + [anon_sym_union] = ACTIONS(3079), + [anon_sym_if] = ACTIONS(3079), + [anon_sym_switch] = ACTIONS(3079), + [anon_sym_case] = ACTIONS(3079), + [anon_sym_default] = ACTIONS(3079), + [anon_sym_while] = ACTIONS(3079), + [anon_sym_do] = ACTIONS(3079), + [anon_sym_for] = ACTIONS(3079), + [anon_sym_return] = ACTIONS(3079), + [anon_sym_break] = ACTIONS(3079), + [anon_sym_continue] = ACTIONS(3079), + [anon_sym_goto] = ACTIONS(3079), + [anon_sym___try] = ACTIONS(3079), + [anon_sym___leave] = ACTIONS(3079), + [anon_sym_not] = ACTIONS(3079), + [anon_sym_compl] = ACTIONS(3079), + [anon_sym_DASH_DASH] = ACTIONS(3081), + [anon_sym_PLUS_PLUS] = ACTIONS(3081), + [anon_sym_sizeof] = ACTIONS(3079), + [anon_sym___alignof__] = ACTIONS(3079), + [anon_sym___alignof] = ACTIONS(3079), + [anon_sym__alignof] = ACTIONS(3079), + [anon_sym_alignof] = ACTIONS(3079), + [anon_sym__Alignof] = ACTIONS(3079), + [anon_sym_offsetof] = ACTIONS(3079), + [anon_sym__Generic] = ACTIONS(3079), + [anon_sym_asm] = ACTIONS(3079), + [anon_sym___asm__] = ACTIONS(3079), + [anon_sym___asm] = ACTIONS(3079), + [sym_number_literal] = ACTIONS(3081), + [anon_sym_L_SQUOTE] = ACTIONS(3081), + [anon_sym_u_SQUOTE] = ACTIONS(3081), + [anon_sym_U_SQUOTE] = ACTIONS(3081), + [anon_sym_u8_SQUOTE] = ACTIONS(3081), + [anon_sym_SQUOTE] = ACTIONS(3081), + [anon_sym_L_DQUOTE] = ACTIONS(3081), + [anon_sym_u_DQUOTE] = ACTIONS(3081), + [anon_sym_U_DQUOTE] = ACTIONS(3081), + [anon_sym_u8_DQUOTE] = ACTIONS(3081), + [anon_sym_DQUOTE] = ACTIONS(3081), + [sym_true] = ACTIONS(3079), + [sym_false] = ACTIONS(3079), + [anon_sym_NULL] = ACTIONS(3079), + [anon_sym_nullptr] = ACTIONS(3079), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2843), - [anon_sym_decltype] = ACTIONS(2843), - [anon_sym_explicit] = ACTIONS(2843), - [anon_sym_typename] = ACTIONS(2843), - [anon_sym_template] = ACTIONS(2843), - [anon_sym_operator] = ACTIONS(2843), - [anon_sym_try] = ACTIONS(2843), - [anon_sym_delete] = ACTIONS(2843), - [anon_sym_throw] = ACTIONS(2843), - [anon_sym_namespace] = ACTIONS(2843), - [anon_sym_static_assert] = ACTIONS(2843), - [anon_sym_concept] = ACTIONS(2843), - [anon_sym_co_return] = ACTIONS(2843), - [anon_sym_co_yield] = ACTIONS(2843), - [anon_sym_R_DQUOTE] = ACTIONS(2845), - [anon_sym_LR_DQUOTE] = ACTIONS(2845), - [anon_sym_uR_DQUOTE] = ACTIONS(2845), - [anon_sym_UR_DQUOTE] = ACTIONS(2845), - [anon_sym_u8R_DQUOTE] = ACTIONS(2845), - [anon_sym_co_await] = ACTIONS(2843), - [anon_sym_new] = ACTIONS(2843), - [anon_sym_requires] = ACTIONS(2843), - [sym_this] = ACTIONS(2843), + [sym_auto] = ACTIONS(3079), + [anon_sym_decltype] = ACTIONS(3079), + [anon_sym_explicit] = ACTIONS(3079), + [anon_sym_typename] = ACTIONS(3079), + [anon_sym_template] = ACTIONS(3079), + [anon_sym_operator] = ACTIONS(3079), + [anon_sym_try] = ACTIONS(3079), + [anon_sym_delete] = ACTIONS(3079), + [anon_sym_throw] = ACTIONS(3079), + [anon_sym_namespace] = ACTIONS(3079), + [anon_sym_static_assert] = ACTIONS(3079), + [anon_sym_concept] = ACTIONS(3079), + [anon_sym_co_return] = ACTIONS(3079), + [anon_sym_co_yield] = ACTIONS(3079), + [anon_sym_R_DQUOTE] = ACTIONS(3081), + [anon_sym_LR_DQUOTE] = ACTIONS(3081), + [anon_sym_uR_DQUOTE] = ACTIONS(3081), + [anon_sym_UR_DQUOTE] = ACTIONS(3081), + [anon_sym_u8R_DQUOTE] = ACTIONS(3081), + [anon_sym_co_await] = ACTIONS(3079), + [anon_sym_new] = ACTIONS(3079), + [anon_sym_requires] = ACTIONS(3079), + [sym_this] = ACTIONS(3079), }, - [731] = { + [762] = { [sym_identifier] = ACTIONS(3083), [aux_sym_preproc_include_token1] = ACTIONS(3083), [aux_sym_preproc_def_token1] = ACTIONS(3083), [aux_sym_preproc_if_token1] = ACTIONS(3083), - [aux_sym_preproc_if_token2] = ACTIONS(3083), [aux_sym_preproc_ifdef_token1] = ACTIONS(3083), [aux_sym_preproc_ifdef_token2] = ACTIONS(3083), [sym_preproc_directive] = ACTIONS(3083), @@ -146526,6 +151068,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(3083), [anon_sym___vectorcall] = ACTIONS(3083), [anon_sym_LBRACE] = ACTIONS(3085), + [anon_sym_RBRACE] = ACTIONS(3085), [anon_sym_signed] = ACTIONS(3083), [anon_sym_unsigned] = ACTIONS(3083), [anon_sym_long] = ACTIONS(3083), @@ -146626,4771 +151169,4500 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(3083), [sym_this] = ACTIONS(3083), }, - [732] = { - [sym_identifier] = ACTIONS(2931), - [aux_sym_preproc_include_token1] = ACTIONS(2931), - [aux_sym_preproc_def_token1] = ACTIONS(2931), - [aux_sym_preproc_if_token1] = ACTIONS(2931), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2931), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2931), - [sym_preproc_directive] = ACTIONS(2931), - [anon_sym_LPAREN2] = ACTIONS(2933), - [anon_sym_BANG] = ACTIONS(2933), - [anon_sym_TILDE] = ACTIONS(2933), - [anon_sym_DASH] = ACTIONS(2931), - [anon_sym_PLUS] = ACTIONS(2931), - [anon_sym_STAR] = ACTIONS(2933), - [anon_sym_AMP_AMP] = ACTIONS(2933), - [anon_sym_AMP] = ACTIONS(2931), - [anon_sym_SEMI] = ACTIONS(2933), - [anon_sym___extension__] = ACTIONS(2931), - [anon_sym_typedef] = ACTIONS(2931), - [anon_sym_virtual] = ACTIONS(2931), - [anon_sym_extern] = ACTIONS(2931), - [anon_sym___attribute__] = ACTIONS(2931), - [anon_sym___attribute] = ACTIONS(2931), - [anon_sym_using] = ACTIONS(2931), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2933), - [anon_sym___declspec] = ACTIONS(2931), - [anon_sym___based] = ACTIONS(2931), - [anon_sym___cdecl] = ACTIONS(2931), - [anon_sym___clrcall] = ACTIONS(2931), - [anon_sym___stdcall] = ACTIONS(2931), - [anon_sym___fastcall] = ACTIONS(2931), - [anon_sym___thiscall] = ACTIONS(2931), - [anon_sym___vectorcall] = ACTIONS(2931), - [anon_sym_LBRACE] = ACTIONS(2933), - [anon_sym_RBRACE] = ACTIONS(2933), - [anon_sym_signed] = ACTIONS(2931), - [anon_sym_unsigned] = ACTIONS(2931), - [anon_sym_long] = ACTIONS(2931), - [anon_sym_short] = ACTIONS(2931), - [anon_sym_LBRACK] = ACTIONS(2931), - [anon_sym_static] = ACTIONS(2931), - [anon_sym_register] = ACTIONS(2931), - [anon_sym_inline] = ACTIONS(2931), - [anon_sym___inline] = ACTIONS(2931), - [anon_sym___inline__] = ACTIONS(2931), - [anon_sym___forceinline] = ACTIONS(2931), - [anon_sym_thread_local] = ACTIONS(2931), - [anon_sym___thread] = ACTIONS(2931), - [anon_sym_const] = ACTIONS(2931), - [anon_sym_constexpr] = ACTIONS(2931), - [anon_sym_volatile] = ACTIONS(2931), - [anon_sym_restrict] = ACTIONS(2931), - [anon_sym___restrict__] = ACTIONS(2931), - [anon_sym__Atomic] = ACTIONS(2931), - [anon_sym__Noreturn] = ACTIONS(2931), - [anon_sym_noreturn] = ACTIONS(2931), - [anon_sym__Nonnull] = ACTIONS(2931), - [anon_sym_mutable] = ACTIONS(2931), - [anon_sym_constinit] = ACTIONS(2931), - [anon_sym_consteval] = ACTIONS(2931), - [anon_sym_alignas] = ACTIONS(2931), - [anon_sym__Alignas] = ACTIONS(2931), - [sym_primitive_type] = ACTIONS(2931), - [anon_sym_enum] = ACTIONS(2931), - [anon_sym_class] = ACTIONS(2931), - [anon_sym_struct] = ACTIONS(2931), - [anon_sym_union] = ACTIONS(2931), - [anon_sym_if] = ACTIONS(2931), - [anon_sym_switch] = ACTIONS(2931), - [anon_sym_case] = ACTIONS(2931), - [anon_sym_default] = ACTIONS(2931), - [anon_sym_while] = ACTIONS(2931), - [anon_sym_do] = ACTIONS(2931), - [anon_sym_for] = ACTIONS(2931), - [anon_sym_return] = ACTIONS(2931), - [anon_sym_break] = ACTIONS(2931), - [anon_sym_continue] = ACTIONS(2931), - [anon_sym_goto] = ACTIONS(2931), - [anon_sym___try] = ACTIONS(2931), - [anon_sym___leave] = ACTIONS(2931), - [anon_sym_not] = ACTIONS(2931), - [anon_sym_compl] = ACTIONS(2931), - [anon_sym_DASH_DASH] = ACTIONS(2933), - [anon_sym_PLUS_PLUS] = ACTIONS(2933), - [anon_sym_sizeof] = ACTIONS(2931), - [anon_sym___alignof__] = ACTIONS(2931), - [anon_sym___alignof] = ACTIONS(2931), - [anon_sym__alignof] = ACTIONS(2931), - [anon_sym_alignof] = ACTIONS(2931), - [anon_sym__Alignof] = ACTIONS(2931), - [anon_sym_offsetof] = ACTIONS(2931), - [anon_sym__Generic] = ACTIONS(2931), - [anon_sym_asm] = ACTIONS(2931), - [anon_sym___asm__] = ACTIONS(2931), - [anon_sym___asm] = ACTIONS(2931), - [sym_number_literal] = ACTIONS(2933), - [anon_sym_L_SQUOTE] = ACTIONS(2933), - [anon_sym_u_SQUOTE] = ACTIONS(2933), - [anon_sym_U_SQUOTE] = ACTIONS(2933), - [anon_sym_u8_SQUOTE] = ACTIONS(2933), - [anon_sym_SQUOTE] = ACTIONS(2933), - [anon_sym_L_DQUOTE] = ACTIONS(2933), - [anon_sym_u_DQUOTE] = ACTIONS(2933), - [anon_sym_U_DQUOTE] = ACTIONS(2933), - [anon_sym_u8_DQUOTE] = ACTIONS(2933), - [anon_sym_DQUOTE] = ACTIONS(2933), - [sym_true] = ACTIONS(2931), - [sym_false] = ACTIONS(2931), - [anon_sym_NULL] = ACTIONS(2931), - [anon_sym_nullptr] = ACTIONS(2931), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2931), - [anon_sym_decltype] = ACTIONS(2931), - [anon_sym_explicit] = ACTIONS(2931), - [anon_sym_typename] = ACTIONS(2931), - [anon_sym_template] = ACTIONS(2931), - [anon_sym_operator] = ACTIONS(2931), - [anon_sym_try] = ACTIONS(2931), - [anon_sym_delete] = ACTIONS(2931), - [anon_sym_throw] = ACTIONS(2931), - [anon_sym_namespace] = ACTIONS(2931), - [anon_sym_static_assert] = ACTIONS(2931), - [anon_sym_concept] = ACTIONS(2931), - [anon_sym_co_return] = ACTIONS(2931), - [anon_sym_co_yield] = ACTIONS(2931), - [anon_sym_R_DQUOTE] = ACTIONS(2933), - [anon_sym_LR_DQUOTE] = ACTIONS(2933), - [anon_sym_uR_DQUOTE] = ACTIONS(2933), - [anon_sym_UR_DQUOTE] = ACTIONS(2933), - [anon_sym_u8R_DQUOTE] = ACTIONS(2933), - [anon_sym_co_await] = ACTIONS(2931), - [anon_sym_new] = ACTIONS(2931), - [anon_sym_requires] = ACTIONS(2931), - [sym_this] = ACTIONS(2931), + [763] = { + [sym_identifier] = ACTIONS(3087), + [aux_sym_preproc_include_token1] = ACTIONS(3087), + [aux_sym_preproc_def_token1] = ACTIONS(3087), + [aux_sym_preproc_if_token1] = ACTIONS(3087), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3087), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3087), + [sym_preproc_directive] = ACTIONS(3087), + [anon_sym_LPAREN2] = ACTIONS(3089), + [anon_sym_BANG] = ACTIONS(3089), + [anon_sym_TILDE] = ACTIONS(3089), + [anon_sym_DASH] = ACTIONS(3087), + [anon_sym_PLUS] = ACTIONS(3087), + [anon_sym_STAR] = ACTIONS(3089), + [anon_sym_AMP_AMP] = ACTIONS(3089), + [anon_sym_AMP] = ACTIONS(3087), + [anon_sym_SEMI] = ACTIONS(3089), + [anon_sym___extension__] = ACTIONS(3087), + [anon_sym_typedef] = ACTIONS(3087), + [anon_sym_virtual] = ACTIONS(3087), + [anon_sym_extern] = ACTIONS(3087), + [anon_sym___attribute__] = ACTIONS(3087), + [anon_sym___attribute] = ACTIONS(3087), + [anon_sym_using] = ACTIONS(3087), + [anon_sym_COLON_COLON] = ACTIONS(3089), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3089), + [anon_sym___declspec] = ACTIONS(3087), + [anon_sym___based] = ACTIONS(3087), + [anon_sym___cdecl] = ACTIONS(3087), + [anon_sym___clrcall] = ACTIONS(3087), + [anon_sym___stdcall] = ACTIONS(3087), + [anon_sym___fastcall] = ACTIONS(3087), + [anon_sym___thiscall] = ACTIONS(3087), + [anon_sym___vectorcall] = ACTIONS(3087), + [anon_sym_LBRACE] = ACTIONS(3089), + [anon_sym_RBRACE] = ACTIONS(3089), + [anon_sym_signed] = ACTIONS(3087), + [anon_sym_unsigned] = ACTIONS(3087), + [anon_sym_long] = ACTIONS(3087), + [anon_sym_short] = ACTIONS(3087), + [anon_sym_LBRACK] = ACTIONS(3087), + [anon_sym_static] = ACTIONS(3087), + [anon_sym_register] = ACTIONS(3087), + [anon_sym_inline] = ACTIONS(3087), + [anon_sym___inline] = ACTIONS(3087), + [anon_sym___inline__] = ACTIONS(3087), + [anon_sym___forceinline] = ACTIONS(3087), + [anon_sym_thread_local] = ACTIONS(3087), + [anon_sym___thread] = ACTIONS(3087), + [anon_sym_const] = ACTIONS(3087), + [anon_sym_constexpr] = ACTIONS(3087), + [anon_sym_volatile] = ACTIONS(3087), + [anon_sym_restrict] = ACTIONS(3087), + [anon_sym___restrict__] = ACTIONS(3087), + [anon_sym__Atomic] = ACTIONS(3087), + [anon_sym__Noreturn] = ACTIONS(3087), + [anon_sym_noreturn] = ACTIONS(3087), + [anon_sym__Nonnull] = ACTIONS(3087), + [anon_sym_mutable] = ACTIONS(3087), + [anon_sym_constinit] = ACTIONS(3087), + [anon_sym_consteval] = ACTIONS(3087), + [anon_sym_alignas] = ACTIONS(3087), + [anon_sym__Alignas] = ACTIONS(3087), + [sym_primitive_type] = ACTIONS(3087), + [anon_sym_enum] = ACTIONS(3087), + [anon_sym_class] = ACTIONS(3087), + [anon_sym_struct] = ACTIONS(3087), + [anon_sym_union] = ACTIONS(3087), + [anon_sym_if] = ACTIONS(3087), + [anon_sym_switch] = ACTIONS(3087), + [anon_sym_case] = ACTIONS(3087), + [anon_sym_default] = ACTIONS(3087), + [anon_sym_while] = ACTIONS(3087), + [anon_sym_do] = ACTIONS(3087), + [anon_sym_for] = ACTIONS(3087), + [anon_sym_return] = ACTIONS(3087), + [anon_sym_break] = ACTIONS(3087), + [anon_sym_continue] = ACTIONS(3087), + [anon_sym_goto] = ACTIONS(3087), + [anon_sym___try] = ACTIONS(3087), + [anon_sym___leave] = ACTIONS(3087), + [anon_sym_not] = ACTIONS(3087), + [anon_sym_compl] = ACTIONS(3087), + [anon_sym_DASH_DASH] = ACTIONS(3089), + [anon_sym_PLUS_PLUS] = ACTIONS(3089), + [anon_sym_sizeof] = ACTIONS(3087), + [anon_sym___alignof__] = ACTIONS(3087), + [anon_sym___alignof] = ACTIONS(3087), + [anon_sym__alignof] = ACTIONS(3087), + [anon_sym_alignof] = ACTIONS(3087), + [anon_sym__Alignof] = ACTIONS(3087), + [anon_sym_offsetof] = ACTIONS(3087), + [anon_sym__Generic] = ACTIONS(3087), + [anon_sym_asm] = ACTIONS(3087), + [anon_sym___asm__] = ACTIONS(3087), + [anon_sym___asm] = ACTIONS(3087), + [sym_number_literal] = ACTIONS(3089), + [anon_sym_L_SQUOTE] = ACTIONS(3089), + [anon_sym_u_SQUOTE] = ACTIONS(3089), + [anon_sym_U_SQUOTE] = ACTIONS(3089), + [anon_sym_u8_SQUOTE] = ACTIONS(3089), + [anon_sym_SQUOTE] = ACTIONS(3089), + [anon_sym_L_DQUOTE] = ACTIONS(3089), + [anon_sym_u_DQUOTE] = ACTIONS(3089), + [anon_sym_U_DQUOTE] = ACTIONS(3089), + [anon_sym_u8_DQUOTE] = ACTIONS(3089), + [anon_sym_DQUOTE] = ACTIONS(3089), + [sym_true] = ACTIONS(3087), + [sym_false] = ACTIONS(3087), + [anon_sym_NULL] = ACTIONS(3087), + [anon_sym_nullptr] = ACTIONS(3087), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3087), + [anon_sym_decltype] = ACTIONS(3087), + [anon_sym_explicit] = ACTIONS(3087), + [anon_sym_typename] = ACTIONS(3087), + [anon_sym_template] = ACTIONS(3087), + [anon_sym_operator] = ACTIONS(3087), + [anon_sym_try] = ACTIONS(3087), + [anon_sym_delete] = ACTIONS(3087), + [anon_sym_throw] = ACTIONS(3087), + [anon_sym_namespace] = ACTIONS(3087), + [anon_sym_static_assert] = ACTIONS(3087), + [anon_sym_concept] = ACTIONS(3087), + [anon_sym_co_return] = ACTIONS(3087), + [anon_sym_co_yield] = ACTIONS(3087), + [anon_sym_R_DQUOTE] = ACTIONS(3089), + [anon_sym_LR_DQUOTE] = ACTIONS(3089), + [anon_sym_uR_DQUOTE] = ACTIONS(3089), + [anon_sym_UR_DQUOTE] = ACTIONS(3089), + [anon_sym_u8R_DQUOTE] = ACTIONS(3089), + [anon_sym_co_await] = ACTIONS(3087), + [anon_sym_new] = ACTIONS(3087), + [anon_sym_requires] = ACTIONS(3087), + [sym_this] = ACTIONS(3087), }, - [733] = { - [sym_identifier] = ACTIONS(2935), - [aux_sym_preproc_include_token1] = ACTIONS(2935), - [aux_sym_preproc_def_token1] = ACTIONS(2935), - [aux_sym_preproc_if_token1] = ACTIONS(2935), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2935), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2935), - [sym_preproc_directive] = ACTIONS(2935), - [anon_sym_LPAREN2] = ACTIONS(2937), - [anon_sym_BANG] = ACTIONS(2937), - [anon_sym_TILDE] = ACTIONS(2937), - [anon_sym_DASH] = ACTIONS(2935), - [anon_sym_PLUS] = ACTIONS(2935), - [anon_sym_STAR] = ACTIONS(2937), - [anon_sym_AMP_AMP] = ACTIONS(2937), - [anon_sym_AMP] = ACTIONS(2935), - [anon_sym_SEMI] = ACTIONS(2937), - [anon_sym___extension__] = ACTIONS(2935), - [anon_sym_typedef] = ACTIONS(2935), - [anon_sym_virtual] = ACTIONS(2935), - [anon_sym_extern] = ACTIONS(2935), - [anon_sym___attribute__] = ACTIONS(2935), - [anon_sym___attribute] = ACTIONS(2935), - [anon_sym_using] = ACTIONS(2935), - [anon_sym_COLON_COLON] = ACTIONS(2937), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2937), - [anon_sym___declspec] = ACTIONS(2935), - [anon_sym___based] = ACTIONS(2935), - [anon_sym___cdecl] = ACTIONS(2935), - [anon_sym___clrcall] = ACTIONS(2935), - [anon_sym___stdcall] = ACTIONS(2935), - [anon_sym___fastcall] = ACTIONS(2935), - [anon_sym___thiscall] = ACTIONS(2935), - [anon_sym___vectorcall] = ACTIONS(2935), - [anon_sym_LBRACE] = ACTIONS(2937), - [anon_sym_RBRACE] = ACTIONS(2937), - [anon_sym_signed] = ACTIONS(2935), - [anon_sym_unsigned] = ACTIONS(2935), - [anon_sym_long] = ACTIONS(2935), - [anon_sym_short] = ACTIONS(2935), - [anon_sym_LBRACK] = ACTIONS(2935), - [anon_sym_static] = ACTIONS(2935), - [anon_sym_register] = ACTIONS(2935), - [anon_sym_inline] = ACTIONS(2935), - [anon_sym___inline] = ACTIONS(2935), - [anon_sym___inline__] = ACTIONS(2935), - [anon_sym___forceinline] = ACTIONS(2935), - [anon_sym_thread_local] = ACTIONS(2935), - [anon_sym___thread] = ACTIONS(2935), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_constexpr] = ACTIONS(2935), - [anon_sym_volatile] = ACTIONS(2935), - [anon_sym_restrict] = ACTIONS(2935), - [anon_sym___restrict__] = ACTIONS(2935), - [anon_sym__Atomic] = ACTIONS(2935), - [anon_sym__Noreturn] = ACTIONS(2935), - [anon_sym_noreturn] = ACTIONS(2935), - [anon_sym__Nonnull] = ACTIONS(2935), - [anon_sym_mutable] = ACTIONS(2935), - [anon_sym_constinit] = ACTIONS(2935), - [anon_sym_consteval] = ACTIONS(2935), - [anon_sym_alignas] = ACTIONS(2935), - [anon_sym__Alignas] = ACTIONS(2935), - [sym_primitive_type] = ACTIONS(2935), - [anon_sym_enum] = ACTIONS(2935), - [anon_sym_class] = ACTIONS(2935), - [anon_sym_struct] = ACTIONS(2935), - [anon_sym_union] = ACTIONS(2935), - [anon_sym_if] = ACTIONS(2935), - [anon_sym_switch] = ACTIONS(2935), - [anon_sym_case] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2935), - [anon_sym_while] = ACTIONS(2935), - [anon_sym_do] = ACTIONS(2935), - [anon_sym_for] = ACTIONS(2935), - [anon_sym_return] = ACTIONS(2935), - [anon_sym_break] = ACTIONS(2935), - [anon_sym_continue] = ACTIONS(2935), - [anon_sym_goto] = ACTIONS(2935), - [anon_sym___try] = ACTIONS(2935), - [anon_sym___leave] = ACTIONS(2935), - [anon_sym_not] = ACTIONS(2935), - [anon_sym_compl] = ACTIONS(2935), - [anon_sym_DASH_DASH] = ACTIONS(2937), - [anon_sym_PLUS_PLUS] = ACTIONS(2937), - [anon_sym_sizeof] = ACTIONS(2935), - [anon_sym___alignof__] = ACTIONS(2935), - [anon_sym___alignof] = ACTIONS(2935), - [anon_sym__alignof] = ACTIONS(2935), - [anon_sym_alignof] = ACTIONS(2935), - [anon_sym__Alignof] = ACTIONS(2935), - [anon_sym_offsetof] = ACTIONS(2935), - [anon_sym__Generic] = ACTIONS(2935), - [anon_sym_asm] = ACTIONS(2935), - [anon_sym___asm__] = ACTIONS(2935), - [anon_sym___asm] = ACTIONS(2935), - [sym_number_literal] = ACTIONS(2937), - [anon_sym_L_SQUOTE] = ACTIONS(2937), - [anon_sym_u_SQUOTE] = ACTIONS(2937), - [anon_sym_U_SQUOTE] = ACTIONS(2937), - [anon_sym_u8_SQUOTE] = ACTIONS(2937), - [anon_sym_SQUOTE] = ACTIONS(2937), - [anon_sym_L_DQUOTE] = ACTIONS(2937), - [anon_sym_u_DQUOTE] = ACTIONS(2937), - [anon_sym_U_DQUOTE] = ACTIONS(2937), - [anon_sym_u8_DQUOTE] = ACTIONS(2937), - [anon_sym_DQUOTE] = ACTIONS(2937), - [sym_true] = ACTIONS(2935), - [sym_false] = ACTIONS(2935), - [anon_sym_NULL] = ACTIONS(2935), - [anon_sym_nullptr] = ACTIONS(2935), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2935), - [anon_sym_decltype] = ACTIONS(2935), - [anon_sym_explicit] = ACTIONS(2935), - [anon_sym_typename] = ACTIONS(2935), - [anon_sym_template] = ACTIONS(2935), - [anon_sym_operator] = ACTIONS(2935), - [anon_sym_try] = ACTIONS(2935), - [anon_sym_delete] = ACTIONS(2935), - [anon_sym_throw] = ACTIONS(2935), - [anon_sym_namespace] = ACTIONS(2935), - [anon_sym_static_assert] = ACTIONS(2935), - [anon_sym_concept] = ACTIONS(2935), - [anon_sym_co_return] = ACTIONS(2935), - [anon_sym_co_yield] = ACTIONS(2935), - [anon_sym_R_DQUOTE] = ACTIONS(2937), - [anon_sym_LR_DQUOTE] = ACTIONS(2937), - [anon_sym_uR_DQUOTE] = ACTIONS(2937), - [anon_sym_UR_DQUOTE] = ACTIONS(2937), - [anon_sym_u8R_DQUOTE] = ACTIONS(2937), - [anon_sym_co_await] = ACTIONS(2935), - [anon_sym_new] = ACTIONS(2935), - [anon_sym_requires] = ACTIONS(2935), - [sym_this] = ACTIONS(2935), + [764] = { + [sym_identifier] = ACTIONS(3091), + [aux_sym_preproc_include_token1] = ACTIONS(3091), + [aux_sym_preproc_def_token1] = ACTIONS(3091), + [aux_sym_preproc_if_token1] = ACTIONS(3091), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3091), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3091), + [sym_preproc_directive] = ACTIONS(3091), + [anon_sym_LPAREN2] = ACTIONS(3093), + [anon_sym_BANG] = ACTIONS(3093), + [anon_sym_TILDE] = ACTIONS(3093), + [anon_sym_DASH] = ACTIONS(3091), + [anon_sym_PLUS] = ACTIONS(3091), + [anon_sym_STAR] = ACTIONS(3093), + [anon_sym_AMP_AMP] = ACTIONS(3093), + [anon_sym_AMP] = ACTIONS(3091), + [anon_sym_SEMI] = ACTIONS(3093), + [anon_sym___extension__] = ACTIONS(3091), + [anon_sym_typedef] = ACTIONS(3091), + [anon_sym_virtual] = ACTIONS(3091), + [anon_sym_extern] = ACTIONS(3091), + [anon_sym___attribute__] = ACTIONS(3091), + [anon_sym___attribute] = ACTIONS(3091), + [anon_sym_using] = ACTIONS(3091), + [anon_sym_COLON_COLON] = ACTIONS(3093), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3093), + [anon_sym___declspec] = ACTIONS(3091), + [anon_sym___based] = ACTIONS(3091), + [anon_sym___cdecl] = ACTIONS(3091), + [anon_sym___clrcall] = ACTIONS(3091), + [anon_sym___stdcall] = ACTIONS(3091), + [anon_sym___fastcall] = ACTIONS(3091), + [anon_sym___thiscall] = ACTIONS(3091), + [anon_sym___vectorcall] = ACTIONS(3091), + [anon_sym_LBRACE] = ACTIONS(3093), + [anon_sym_RBRACE] = ACTIONS(3093), + [anon_sym_signed] = ACTIONS(3091), + [anon_sym_unsigned] = ACTIONS(3091), + [anon_sym_long] = ACTIONS(3091), + [anon_sym_short] = ACTIONS(3091), + [anon_sym_LBRACK] = ACTIONS(3091), + [anon_sym_static] = ACTIONS(3091), + [anon_sym_register] = ACTIONS(3091), + [anon_sym_inline] = ACTIONS(3091), + [anon_sym___inline] = ACTIONS(3091), + [anon_sym___inline__] = ACTIONS(3091), + [anon_sym___forceinline] = ACTIONS(3091), + [anon_sym_thread_local] = ACTIONS(3091), + [anon_sym___thread] = ACTIONS(3091), + [anon_sym_const] = ACTIONS(3091), + [anon_sym_constexpr] = ACTIONS(3091), + [anon_sym_volatile] = ACTIONS(3091), + [anon_sym_restrict] = ACTIONS(3091), + [anon_sym___restrict__] = ACTIONS(3091), + [anon_sym__Atomic] = ACTIONS(3091), + [anon_sym__Noreturn] = ACTIONS(3091), + [anon_sym_noreturn] = ACTIONS(3091), + [anon_sym__Nonnull] = ACTIONS(3091), + [anon_sym_mutable] = ACTIONS(3091), + [anon_sym_constinit] = ACTIONS(3091), + [anon_sym_consteval] = ACTIONS(3091), + [anon_sym_alignas] = ACTIONS(3091), + [anon_sym__Alignas] = ACTIONS(3091), + [sym_primitive_type] = ACTIONS(3091), + [anon_sym_enum] = ACTIONS(3091), + [anon_sym_class] = ACTIONS(3091), + [anon_sym_struct] = ACTIONS(3091), + [anon_sym_union] = ACTIONS(3091), + [anon_sym_if] = ACTIONS(3091), + [anon_sym_switch] = ACTIONS(3091), + [anon_sym_case] = ACTIONS(3091), + [anon_sym_default] = ACTIONS(3091), + [anon_sym_while] = ACTIONS(3091), + [anon_sym_do] = ACTIONS(3091), + [anon_sym_for] = ACTIONS(3091), + [anon_sym_return] = ACTIONS(3091), + [anon_sym_break] = ACTIONS(3091), + [anon_sym_continue] = ACTIONS(3091), + [anon_sym_goto] = ACTIONS(3091), + [anon_sym___try] = ACTIONS(3091), + [anon_sym___leave] = ACTIONS(3091), + [anon_sym_not] = ACTIONS(3091), + [anon_sym_compl] = ACTIONS(3091), + [anon_sym_DASH_DASH] = ACTIONS(3093), + [anon_sym_PLUS_PLUS] = ACTIONS(3093), + [anon_sym_sizeof] = ACTIONS(3091), + [anon_sym___alignof__] = ACTIONS(3091), + [anon_sym___alignof] = ACTIONS(3091), + [anon_sym__alignof] = ACTIONS(3091), + [anon_sym_alignof] = ACTIONS(3091), + [anon_sym__Alignof] = ACTIONS(3091), + [anon_sym_offsetof] = ACTIONS(3091), + [anon_sym__Generic] = ACTIONS(3091), + [anon_sym_asm] = ACTIONS(3091), + [anon_sym___asm__] = ACTIONS(3091), + [anon_sym___asm] = ACTIONS(3091), + [sym_number_literal] = ACTIONS(3093), + [anon_sym_L_SQUOTE] = ACTIONS(3093), + [anon_sym_u_SQUOTE] = ACTIONS(3093), + [anon_sym_U_SQUOTE] = ACTIONS(3093), + [anon_sym_u8_SQUOTE] = ACTIONS(3093), + [anon_sym_SQUOTE] = ACTIONS(3093), + [anon_sym_L_DQUOTE] = ACTIONS(3093), + [anon_sym_u_DQUOTE] = ACTIONS(3093), + [anon_sym_U_DQUOTE] = ACTIONS(3093), + [anon_sym_u8_DQUOTE] = ACTIONS(3093), + [anon_sym_DQUOTE] = ACTIONS(3093), + [sym_true] = ACTIONS(3091), + [sym_false] = ACTIONS(3091), + [anon_sym_NULL] = ACTIONS(3091), + [anon_sym_nullptr] = ACTIONS(3091), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3091), + [anon_sym_decltype] = ACTIONS(3091), + [anon_sym_explicit] = ACTIONS(3091), + [anon_sym_typename] = ACTIONS(3091), + [anon_sym_template] = ACTIONS(3091), + [anon_sym_operator] = ACTIONS(3091), + [anon_sym_try] = ACTIONS(3091), + [anon_sym_delete] = ACTIONS(3091), + [anon_sym_throw] = ACTIONS(3091), + [anon_sym_namespace] = ACTIONS(3091), + [anon_sym_static_assert] = ACTIONS(3091), + [anon_sym_concept] = ACTIONS(3091), + [anon_sym_co_return] = ACTIONS(3091), + [anon_sym_co_yield] = ACTIONS(3091), + [anon_sym_R_DQUOTE] = ACTIONS(3093), + [anon_sym_LR_DQUOTE] = ACTIONS(3093), + [anon_sym_uR_DQUOTE] = ACTIONS(3093), + [anon_sym_UR_DQUOTE] = ACTIONS(3093), + [anon_sym_u8R_DQUOTE] = ACTIONS(3093), + [anon_sym_co_await] = ACTIONS(3091), + [anon_sym_new] = ACTIONS(3091), + [anon_sym_requires] = ACTIONS(3091), + [sym_this] = ACTIONS(3091), }, - [734] = { - [sym_identifier] = ACTIONS(2939), - [aux_sym_preproc_include_token1] = ACTIONS(2939), - [aux_sym_preproc_def_token1] = ACTIONS(2939), - [aux_sym_preproc_if_token1] = ACTIONS(2939), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2939), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2939), - [sym_preproc_directive] = ACTIONS(2939), - [anon_sym_LPAREN2] = ACTIONS(2941), - [anon_sym_BANG] = ACTIONS(2941), - [anon_sym_TILDE] = ACTIONS(2941), - [anon_sym_DASH] = ACTIONS(2939), - [anon_sym_PLUS] = ACTIONS(2939), - [anon_sym_STAR] = ACTIONS(2941), - [anon_sym_AMP_AMP] = ACTIONS(2941), - [anon_sym_AMP] = ACTIONS(2939), - [anon_sym_SEMI] = ACTIONS(2941), - [anon_sym___extension__] = ACTIONS(2939), - [anon_sym_typedef] = ACTIONS(2939), - [anon_sym_virtual] = ACTIONS(2939), - [anon_sym_extern] = ACTIONS(2939), - [anon_sym___attribute__] = ACTIONS(2939), - [anon_sym___attribute] = ACTIONS(2939), - [anon_sym_using] = ACTIONS(2939), - [anon_sym_COLON_COLON] = ACTIONS(2941), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2941), - [anon_sym___declspec] = ACTIONS(2939), - [anon_sym___based] = ACTIONS(2939), - [anon_sym___cdecl] = ACTIONS(2939), - [anon_sym___clrcall] = ACTIONS(2939), - [anon_sym___stdcall] = ACTIONS(2939), - [anon_sym___fastcall] = ACTIONS(2939), - [anon_sym___thiscall] = ACTIONS(2939), - [anon_sym___vectorcall] = ACTIONS(2939), - [anon_sym_LBRACE] = ACTIONS(2941), - [anon_sym_RBRACE] = ACTIONS(2941), - [anon_sym_signed] = ACTIONS(2939), - [anon_sym_unsigned] = ACTIONS(2939), - [anon_sym_long] = ACTIONS(2939), - [anon_sym_short] = ACTIONS(2939), - [anon_sym_LBRACK] = ACTIONS(2939), - [anon_sym_static] = ACTIONS(2939), - [anon_sym_register] = ACTIONS(2939), - [anon_sym_inline] = ACTIONS(2939), - [anon_sym___inline] = ACTIONS(2939), - [anon_sym___inline__] = ACTIONS(2939), - [anon_sym___forceinline] = ACTIONS(2939), - [anon_sym_thread_local] = ACTIONS(2939), - [anon_sym___thread] = ACTIONS(2939), - [anon_sym_const] = ACTIONS(2939), - [anon_sym_constexpr] = ACTIONS(2939), - [anon_sym_volatile] = ACTIONS(2939), - [anon_sym_restrict] = ACTIONS(2939), - [anon_sym___restrict__] = ACTIONS(2939), - [anon_sym__Atomic] = ACTIONS(2939), - [anon_sym__Noreturn] = ACTIONS(2939), - [anon_sym_noreturn] = ACTIONS(2939), - [anon_sym__Nonnull] = ACTIONS(2939), - [anon_sym_mutable] = ACTIONS(2939), - [anon_sym_constinit] = ACTIONS(2939), - [anon_sym_consteval] = ACTIONS(2939), - [anon_sym_alignas] = ACTIONS(2939), - [anon_sym__Alignas] = ACTIONS(2939), - [sym_primitive_type] = ACTIONS(2939), - [anon_sym_enum] = ACTIONS(2939), - [anon_sym_class] = ACTIONS(2939), - [anon_sym_struct] = ACTIONS(2939), - [anon_sym_union] = ACTIONS(2939), - [anon_sym_if] = ACTIONS(2939), - [anon_sym_switch] = ACTIONS(2939), - [anon_sym_case] = ACTIONS(2939), - [anon_sym_default] = ACTIONS(2939), - [anon_sym_while] = ACTIONS(2939), - [anon_sym_do] = ACTIONS(2939), - [anon_sym_for] = ACTIONS(2939), - [anon_sym_return] = ACTIONS(2939), - [anon_sym_break] = ACTIONS(2939), - [anon_sym_continue] = ACTIONS(2939), - [anon_sym_goto] = ACTIONS(2939), - [anon_sym___try] = ACTIONS(2939), - [anon_sym___leave] = ACTIONS(2939), - [anon_sym_not] = ACTIONS(2939), - [anon_sym_compl] = ACTIONS(2939), - [anon_sym_DASH_DASH] = ACTIONS(2941), - [anon_sym_PLUS_PLUS] = ACTIONS(2941), - [anon_sym_sizeof] = ACTIONS(2939), - [anon_sym___alignof__] = ACTIONS(2939), - [anon_sym___alignof] = ACTIONS(2939), - [anon_sym__alignof] = ACTIONS(2939), - [anon_sym_alignof] = ACTIONS(2939), - [anon_sym__Alignof] = ACTIONS(2939), - [anon_sym_offsetof] = ACTIONS(2939), - [anon_sym__Generic] = ACTIONS(2939), - [anon_sym_asm] = ACTIONS(2939), - [anon_sym___asm__] = ACTIONS(2939), - [anon_sym___asm] = ACTIONS(2939), - [sym_number_literal] = ACTIONS(2941), - [anon_sym_L_SQUOTE] = ACTIONS(2941), - [anon_sym_u_SQUOTE] = ACTIONS(2941), - [anon_sym_U_SQUOTE] = ACTIONS(2941), - [anon_sym_u8_SQUOTE] = ACTIONS(2941), - [anon_sym_SQUOTE] = ACTIONS(2941), - [anon_sym_L_DQUOTE] = ACTIONS(2941), - [anon_sym_u_DQUOTE] = ACTIONS(2941), - [anon_sym_U_DQUOTE] = ACTIONS(2941), - [anon_sym_u8_DQUOTE] = ACTIONS(2941), - [anon_sym_DQUOTE] = ACTIONS(2941), - [sym_true] = ACTIONS(2939), - [sym_false] = ACTIONS(2939), - [anon_sym_NULL] = ACTIONS(2939), - [anon_sym_nullptr] = ACTIONS(2939), + [765] = { + [sym_identifier] = ACTIONS(2883), + [aux_sym_preproc_include_token1] = ACTIONS(2883), + [aux_sym_preproc_def_token1] = ACTIONS(2883), + [aux_sym_preproc_if_token1] = ACTIONS(2883), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2883), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2883), + [sym_preproc_directive] = ACTIONS(2883), + [anon_sym_LPAREN2] = ACTIONS(2885), + [anon_sym_BANG] = ACTIONS(2885), + [anon_sym_TILDE] = ACTIONS(2885), + [anon_sym_DASH] = ACTIONS(2883), + [anon_sym_PLUS] = ACTIONS(2883), + [anon_sym_STAR] = ACTIONS(2885), + [anon_sym_AMP_AMP] = ACTIONS(2885), + [anon_sym_AMP] = ACTIONS(2883), + [anon_sym_SEMI] = ACTIONS(2885), + [anon_sym___extension__] = ACTIONS(2883), + [anon_sym_typedef] = ACTIONS(2883), + [anon_sym_virtual] = ACTIONS(2883), + [anon_sym_extern] = ACTIONS(2883), + [anon_sym___attribute__] = ACTIONS(2883), + [anon_sym___attribute] = ACTIONS(2883), + [anon_sym_using] = ACTIONS(2883), + [anon_sym_COLON_COLON] = ACTIONS(2885), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2885), + [anon_sym___declspec] = ACTIONS(2883), + [anon_sym___based] = ACTIONS(2883), + [anon_sym___cdecl] = ACTIONS(2883), + [anon_sym___clrcall] = ACTIONS(2883), + [anon_sym___stdcall] = ACTIONS(2883), + [anon_sym___fastcall] = ACTIONS(2883), + [anon_sym___thiscall] = ACTIONS(2883), + [anon_sym___vectorcall] = ACTIONS(2883), + [anon_sym_LBRACE] = ACTIONS(2885), + [anon_sym_RBRACE] = ACTIONS(2885), + [anon_sym_signed] = ACTIONS(2883), + [anon_sym_unsigned] = ACTIONS(2883), + [anon_sym_long] = ACTIONS(2883), + [anon_sym_short] = ACTIONS(2883), + [anon_sym_LBRACK] = ACTIONS(2883), + [anon_sym_static] = ACTIONS(2883), + [anon_sym_register] = ACTIONS(2883), + [anon_sym_inline] = ACTIONS(2883), + [anon_sym___inline] = ACTIONS(2883), + [anon_sym___inline__] = ACTIONS(2883), + [anon_sym___forceinline] = ACTIONS(2883), + [anon_sym_thread_local] = ACTIONS(2883), + [anon_sym___thread] = ACTIONS(2883), + [anon_sym_const] = ACTIONS(2883), + [anon_sym_constexpr] = ACTIONS(2883), + [anon_sym_volatile] = ACTIONS(2883), + [anon_sym_restrict] = ACTIONS(2883), + [anon_sym___restrict__] = ACTIONS(2883), + [anon_sym__Atomic] = ACTIONS(2883), + [anon_sym__Noreturn] = ACTIONS(2883), + [anon_sym_noreturn] = ACTIONS(2883), + [anon_sym__Nonnull] = ACTIONS(2883), + [anon_sym_mutable] = ACTIONS(2883), + [anon_sym_constinit] = ACTIONS(2883), + [anon_sym_consteval] = ACTIONS(2883), + [anon_sym_alignas] = ACTIONS(2883), + [anon_sym__Alignas] = ACTIONS(2883), + [sym_primitive_type] = ACTIONS(2883), + [anon_sym_enum] = ACTIONS(2883), + [anon_sym_class] = ACTIONS(2883), + [anon_sym_struct] = ACTIONS(2883), + [anon_sym_union] = ACTIONS(2883), + [anon_sym_if] = ACTIONS(2883), + [anon_sym_switch] = ACTIONS(2883), + [anon_sym_case] = ACTIONS(2883), + [anon_sym_default] = ACTIONS(2883), + [anon_sym_while] = ACTIONS(2883), + [anon_sym_do] = ACTIONS(2883), + [anon_sym_for] = ACTIONS(2883), + [anon_sym_return] = ACTIONS(2883), + [anon_sym_break] = ACTIONS(2883), + [anon_sym_continue] = ACTIONS(2883), + [anon_sym_goto] = ACTIONS(2883), + [anon_sym___try] = ACTIONS(2883), + [anon_sym___leave] = ACTIONS(2883), + [anon_sym_not] = ACTIONS(2883), + [anon_sym_compl] = ACTIONS(2883), + [anon_sym_DASH_DASH] = ACTIONS(2885), + [anon_sym_PLUS_PLUS] = ACTIONS(2885), + [anon_sym_sizeof] = ACTIONS(2883), + [anon_sym___alignof__] = ACTIONS(2883), + [anon_sym___alignof] = ACTIONS(2883), + [anon_sym__alignof] = ACTIONS(2883), + [anon_sym_alignof] = ACTIONS(2883), + [anon_sym__Alignof] = ACTIONS(2883), + [anon_sym_offsetof] = ACTIONS(2883), + [anon_sym__Generic] = ACTIONS(2883), + [anon_sym_asm] = ACTIONS(2883), + [anon_sym___asm__] = ACTIONS(2883), + [anon_sym___asm] = ACTIONS(2883), + [sym_number_literal] = ACTIONS(2885), + [anon_sym_L_SQUOTE] = ACTIONS(2885), + [anon_sym_u_SQUOTE] = ACTIONS(2885), + [anon_sym_U_SQUOTE] = ACTIONS(2885), + [anon_sym_u8_SQUOTE] = ACTIONS(2885), + [anon_sym_SQUOTE] = ACTIONS(2885), + [anon_sym_L_DQUOTE] = ACTIONS(2885), + [anon_sym_u_DQUOTE] = ACTIONS(2885), + [anon_sym_U_DQUOTE] = ACTIONS(2885), + [anon_sym_u8_DQUOTE] = ACTIONS(2885), + [anon_sym_DQUOTE] = ACTIONS(2885), + [sym_true] = ACTIONS(2883), + [sym_false] = ACTIONS(2883), + [anon_sym_NULL] = ACTIONS(2883), + [anon_sym_nullptr] = ACTIONS(2883), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2939), - [anon_sym_decltype] = ACTIONS(2939), - [anon_sym_explicit] = ACTIONS(2939), - [anon_sym_typename] = ACTIONS(2939), - [anon_sym_template] = ACTIONS(2939), - [anon_sym_operator] = ACTIONS(2939), - [anon_sym_try] = ACTIONS(2939), - [anon_sym_delete] = ACTIONS(2939), - [anon_sym_throw] = ACTIONS(2939), - [anon_sym_namespace] = ACTIONS(2939), - [anon_sym_static_assert] = ACTIONS(2939), - [anon_sym_concept] = ACTIONS(2939), - [anon_sym_co_return] = ACTIONS(2939), - [anon_sym_co_yield] = ACTIONS(2939), - [anon_sym_R_DQUOTE] = ACTIONS(2941), - [anon_sym_LR_DQUOTE] = ACTIONS(2941), - [anon_sym_uR_DQUOTE] = ACTIONS(2941), - [anon_sym_UR_DQUOTE] = ACTIONS(2941), - [anon_sym_u8R_DQUOTE] = ACTIONS(2941), - [anon_sym_co_await] = ACTIONS(2939), - [anon_sym_new] = ACTIONS(2939), - [anon_sym_requires] = ACTIONS(2939), - [sym_this] = ACTIONS(2939), + [sym_auto] = ACTIONS(2883), + [anon_sym_decltype] = ACTIONS(2883), + [anon_sym_explicit] = ACTIONS(2883), + [anon_sym_typename] = ACTIONS(2883), + [anon_sym_template] = ACTIONS(2883), + [anon_sym_operator] = ACTIONS(2883), + [anon_sym_try] = ACTIONS(2883), + [anon_sym_delete] = ACTIONS(2883), + [anon_sym_throw] = ACTIONS(2883), + [anon_sym_namespace] = ACTIONS(2883), + [anon_sym_static_assert] = ACTIONS(2883), + [anon_sym_concept] = ACTIONS(2883), + [anon_sym_co_return] = ACTIONS(2883), + [anon_sym_co_yield] = ACTIONS(2883), + [anon_sym_R_DQUOTE] = ACTIONS(2885), + [anon_sym_LR_DQUOTE] = ACTIONS(2885), + [anon_sym_uR_DQUOTE] = ACTIONS(2885), + [anon_sym_UR_DQUOTE] = ACTIONS(2885), + [anon_sym_u8R_DQUOTE] = ACTIONS(2885), + [anon_sym_co_await] = ACTIONS(2883), + [anon_sym_new] = ACTIONS(2883), + [anon_sym_requires] = ACTIONS(2883), + [sym_this] = ACTIONS(2883), }, - [735] = { - [sym_identifier] = ACTIONS(3089), - [aux_sym_preproc_include_token1] = ACTIONS(3089), - [aux_sym_preproc_def_token1] = ACTIONS(3089), - [aux_sym_preproc_if_token1] = ACTIONS(3089), - [aux_sym_preproc_if_token2] = ACTIONS(3089), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3089), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3089), - [sym_preproc_directive] = ACTIONS(3089), - [anon_sym_LPAREN2] = ACTIONS(3091), - [anon_sym_BANG] = ACTIONS(3091), - [anon_sym_TILDE] = ACTIONS(3091), - [anon_sym_DASH] = ACTIONS(3089), - [anon_sym_PLUS] = ACTIONS(3089), - [anon_sym_STAR] = ACTIONS(3091), - [anon_sym_AMP_AMP] = ACTIONS(3091), - [anon_sym_AMP] = ACTIONS(3089), - [anon_sym_SEMI] = ACTIONS(3091), - [anon_sym___extension__] = ACTIONS(3089), - [anon_sym_typedef] = ACTIONS(3089), - [anon_sym_virtual] = ACTIONS(3089), - [anon_sym_extern] = ACTIONS(3089), - [anon_sym___attribute__] = ACTIONS(3089), - [anon_sym___attribute] = ACTIONS(3089), - [anon_sym_using] = ACTIONS(3089), - [anon_sym_COLON_COLON] = ACTIONS(3091), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3091), - [anon_sym___declspec] = ACTIONS(3089), - [anon_sym___based] = ACTIONS(3089), - [anon_sym___cdecl] = ACTIONS(3089), - [anon_sym___clrcall] = ACTIONS(3089), - [anon_sym___stdcall] = ACTIONS(3089), - [anon_sym___fastcall] = ACTIONS(3089), - [anon_sym___thiscall] = ACTIONS(3089), - [anon_sym___vectorcall] = ACTIONS(3089), - [anon_sym_LBRACE] = ACTIONS(3091), - [anon_sym_signed] = ACTIONS(3089), - [anon_sym_unsigned] = ACTIONS(3089), - [anon_sym_long] = ACTIONS(3089), - [anon_sym_short] = ACTIONS(3089), - [anon_sym_LBRACK] = ACTIONS(3089), - [anon_sym_static] = ACTIONS(3089), - [anon_sym_register] = ACTIONS(3089), - [anon_sym_inline] = ACTIONS(3089), - [anon_sym___inline] = ACTIONS(3089), - [anon_sym___inline__] = ACTIONS(3089), - [anon_sym___forceinline] = ACTIONS(3089), - [anon_sym_thread_local] = ACTIONS(3089), - [anon_sym___thread] = ACTIONS(3089), - [anon_sym_const] = ACTIONS(3089), - [anon_sym_constexpr] = ACTIONS(3089), - [anon_sym_volatile] = ACTIONS(3089), - [anon_sym_restrict] = ACTIONS(3089), - [anon_sym___restrict__] = ACTIONS(3089), - [anon_sym__Atomic] = ACTIONS(3089), - [anon_sym__Noreturn] = ACTIONS(3089), - [anon_sym_noreturn] = ACTIONS(3089), - [anon_sym__Nonnull] = ACTIONS(3089), - [anon_sym_mutable] = ACTIONS(3089), - [anon_sym_constinit] = ACTIONS(3089), - [anon_sym_consteval] = ACTIONS(3089), - [anon_sym_alignas] = ACTIONS(3089), - [anon_sym__Alignas] = ACTIONS(3089), - [sym_primitive_type] = ACTIONS(3089), - [anon_sym_enum] = ACTIONS(3089), - [anon_sym_class] = ACTIONS(3089), - [anon_sym_struct] = ACTIONS(3089), - [anon_sym_union] = ACTIONS(3089), - [anon_sym_if] = ACTIONS(3089), - [anon_sym_switch] = ACTIONS(3089), - [anon_sym_case] = ACTIONS(3089), - [anon_sym_default] = ACTIONS(3089), - [anon_sym_while] = ACTIONS(3089), - [anon_sym_do] = ACTIONS(3089), - [anon_sym_for] = ACTIONS(3089), - [anon_sym_return] = ACTIONS(3089), - [anon_sym_break] = ACTIONS(3089), - [anon_sym_continue] = ACTIONS(3089), - [anon_sym_goto] = ACTIONS(3089), - [anon_sym___try] = ACTIONS(3089), - [anon_sym___leave] = ACTIONS(3089), - [anon_sym_not] = ACTIONS(3089), - [anon_sym_compl] = ACTIONS(3089), - [anon_sym_DASH_DASH] = ACTIONS(3091), - [anon_sym_PLUS_PLUS] = ACTIONS(3091), - [anon_sym_sizeof] = ACTIONS(3089), - [anon_sym___alignof__] = ACTIONS(3089), - [anon_sym___alignof] = ACTIONS(3089), - [anon_sym__alignof] = ACTIONS(3089), - [anon_sym_alignof] = ACTIONS(3089), - [anon_sym__Alignof] = ACTIONS(3089), - [anon_sym_offsetof] = ACTIONS(3089), - [anon_sym__Generic] = ACTIONS(3089), - [anon_sym_asm] = ACTIONS(3089), - [anon_sym___asm__] = ACTIONS(3089), - [anon_sym___asm] = ACTIONS(3089), - [sym_number_literal] = ACTIONS(3091), - [anon_sym_L_SQUOTE] = ACTIONS(3091), - [anon_sym_u_SQUOTE] = ACTIONS(3091), - [anon_sym_U_SQUOTE] = ACTIONS(3091), - [anon_sym_u8_SQUOTE] = ACTIONS(3091), - [anon_sym_SQUOTE] = ACTIONS(3091), - [anon_sym_L_DQUOTE] = ACTIONS(3091), - [anon_sym_u_DQUOTE] = ACTIONS(3091), - [anon_sym_U_DQUOTE] = ACTIONS(3091), - [anon_sym_u8_DQUOTE] = ACTIONS(3091), - [anon_sym_DQUOTE] = ACTIONS(3091), - [sym_true] = ACTIONS(3089), - [sym_false] = ACTIONS(3089), - [anon_sym_NULL] = ACTIONS(3089), - [anon_sym_nullptr] = ACTIONS(3089), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3089), - [anon_sym_decltype] = ACTIONS(3089), - [anon_sym_explicit] = ACTIONS(3089), - [anon_sym_typename] = ACTIONS(3089), - [anon_sym_template] = ACTIONS(3089), - [anon_sym_operator] = ACTIONS(3089), - [anon_sym_try] = ACTIONS(3089), - [anon_sym_delete] = ACTIONS(3089), - [anon_sym_throw] = ACTIONS(3089), - [anon_sym_namespace] = ACTIONS(3089), - [anon_sym_static_assert] = ACTIONS(3089), - [anon_sym_concept] = ACTIONS(3089), - [anon_sym_co_return] = ACTIONS(3089), - [anon_sym_co_yield] = ACTIONS(3089), - [anon_sym_R_DQUOTE] = ACTIONS(3091), - [anon_sym_LR_DQUOTE] = ACTIONS(3091), - [anon_sym_uR_DQUOTE] = ACTIONS(3091), - [anon_sym_UR_DQUOTE] = ACTIONS(3091), - [anon_sym_u8R_DQUOTE] = ACTIONS(3091), - [anon_sym_co_await] = ACTIONS(3089), - [anon_sym_new] = ACTIONS(3089), - [anon_sym_requires] = ACTIONS(3089), - [sym_this] = ACTIONS(3089), + [766] = { + [sym_identifier] = ACTIONS(3095), + [aux_sym_preproc_include_token1] = ACTIONS(3095), + [aux_sym_preproc_def_token1] = ACTIONS(3095), + [aux_sym_preproc_if_token1] = ACTIONS(3095), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3095), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3095), + [sym_preproc_directive] = ACTIONS(3095), + [anon_sym_LPAREN2] = ACTIONS(3097), + [anon_sym_BANG] = ACTIONS(3097), + [anon_sym_TILDE] = ACTIONS(3097), + [anon_sym_DASH] = ACTIONS(3095), + [anon_sym_PLUS] = ACTIONS(3095), + [anon_sym_STAR] = ACTIONS(3097), + [anon_sym_AMP_AMP] = ACTIONS(3097), + [anon_sym_AMP] = ACTIONS(3095), + [anon_sym_SEMI] = ACTIONS(3097), + [anon_sym___extension__] = ACTIONS(3095), + [anon_sym_typedef] = ACTIONS(3095), + [anon_sym_virtual] = ACTIONS(3095), + [anon_sym_extern] = ACTIONS(3095), + [anon_sym___attribute__] = ACTIONS(3095), + [anon_sym___attribute] = ACTIONS(3095), + [anon_sym_using] = ACTIONS(3095), + [anon_sym_COLON_COLON] = ACTIONS(3097), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3097), + [anon_sym___declspec] = ACTIONS(3095), + [anon_sym___based] = ACTIONS(3095), + [anon_sym___cdecl] = ACTIONS(3095), + [anon_sym___clrcall] = ACTIONS(3095), + [anon_sym___stdcall] = ACTIONS(3095), + [anon_sym___fastcall] = ACTIONS(3095), + [anon_sym___thiscall] = ACTIONS(3095), + [anon_sym___vectorcall] = ACTIONS(3095), + [anon_sym_LBRACE] = ACTIONS(3097), + [anon_sym_RBRACE] = ACTIONS(3097), + [anon_sym_signed] = ACTIONS(3095), + [anon_sym_unsigned] = ACTIONS(3095), + [anon_sym_long] = ACTIONS(3095), + [anon_sym_short] = ACTIONS(3095), + [anon_sym_LBRACK] = ACTIONS(3095), + [anon_sym_static] = ACTIONS(3095), + [anon_sym_register] = ACTIONS(3095), + [anon_sym_inline] = ACTIONS(3095), + [anon_sym___inline] = ACTIONS(3095), + [anon_sym___inline__] = ACTIONS(3095), + [anon_sym___forceinline] = ACTIONS(3095), + [anon_sym_thread_local] = ACTIONS(3095), + [anon_sym___thread] = ACTIONS(3095), + [anon_sym_const] = ACTIONS(3095), + [anon_sym_constexpr] = ACTIONS(3095), + [anon_sym_volatile] = ACTIONS(3095), + [anon_sym_restrict] = ACTIONS(3095), + [anon_sym___restrict__] = ACTIONS(3095), + [anon_sym__Atomic] = ACTIONS(3095), + [anon_sym__Noreturn] = ACTIONS(3095), + [anon_sym_noreturn] = ACTIONS(3095), + [anon_sym__Nonnull] = ACTIONS(3095), + [anon_sym_mutable] = ACTIONS(3095), + [anon_sym_constinit] = ACTIONS(3095), + [anon_sym_consteval] = ACTIONS(3095), + [anon_sym_alignas] = ACTIONS(3095), + [anon_sym__Alignas] = ACTIONS(3095), + [sym_primitive_type] = ACTIONS(3095), + [anon_sym_enum] = ACTIONS(3095), + [anon_sym_class] = ACTIONS(3095), + [anon_sym_struct] = ACTIONS(3095), + [anon_sym_union] = ACTIONS(3095), + [anon_sym_if] = ACTIONS(3095), + [anon_sym_switch] = ACTIONS(3095), + [anon_sym_case] = ACTIONS(3095), + [anon_sym_default] = ACTIONS(3095), + [anon_sym_while] = ACTIONS(3095), + [anon_sym_do] = ACTIONS(3095), + [anon_sym_for] = ACTIONS(3095), + [anon_sym_return] = ACTIONS(3095), + [anon_sym_break] = ACTIONS(3095), + [anon_sym_continue] = ACTIONS(3095), + [anon_sym_goto] = ACTIONS(3095), + [anon_sym___try] = ACTIONS(3095), + [anon_sym___leave] = ACTIONS(3095), + [anon_sym_not] = ACTIONS(3095), + [anon_sym_compl] = ACTIONS(3095), + [anon_sym_DASH_DASH] = ACTIONS(3097), + [anon_sym_PLUS_PLUS] = ACTIONS(3097), + [anon_sym_sizeof] = ACTIONS(3095), + [anon_sym___alignof__] = ACTIONS(3095), + [anon_sym___alignof] = ACTIONS(3095), + [anon_sym__alignof] = ACTIONS(3095), + [anon_sym_alignof] = ACTIONS(3095), + [anon_sym__Alignof] = ACTIONS(3095), + [anon_sym_offsetof] = ACTIONS(3095), + [anon_sym__Generic] = ACTIONS(3095), + [anon_sym_asm] = ACTIONS(3095), + [anon_sym___asm__] = ACTIONS(3095), + [anon_sym___asm] = ACTIONS(3095), + [sym_number_literal] = ACTIONS(3097), + [anon_sym_L_SQUOTE] = ACTIONS(3097), + [anon_sym_u_SQUOTE] = ACTIONS(3097), + [anon_sym_U_SQUOTE] = ACTIONS(3097), + [anon_sym_u8_SQUOTE] = ACTIONS(3097), + [anon_sym_SQUOTE] = ACTIONS(3097), + [anon_sym_L_DQUOTE] = ACTIONS(3097), + [anon_sym_u_DQUOTE] = ACTIONS(3097), + [anon_sym_U_DQUOTE] = ACTIONS(3097), + [anon_sym_u8_DQUOTE] = ACTIONS(3097), + [anon_sym_DQUOTE] = ACTIONS(3097), + [sym_true] = ACTIONS(3095), + [sym_false] = ACTIONS(3095), + [anon_sym_NULL] = ACTIONS(3095), + [anon_sym_nullptr] = ACTIONS(3095), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3095), + [anon_sym_decltype] = ACTIONS(3095), + [anon_sym_explicit] = ACTIONS(3095), + [anon_sym_typename] = ACTIONS(3095), + [anon_sym_template] = ACTIONS(3095), + [anon_sym_operator] = ACTIONS(3095), + [anon_sym_try] = ACTIONS(3095), + [anon_sym_delete] = ACTIONS(3095), + [anon_sym_throw] = ACTIONS(3095), + [anon_sym_namespace] = ACTIONS(3095), + [anon_sym_static_assert] = ACTIONS(3095), + [anon_sym_concept] = ACTIONS(3095), + [anon_sym_co_return] = ACTIONS(3095), + [anon_sym_co_yield] = ACTIONS(3095), + [anon_sym_R_DQUOTE] = ACTIONS(3097), + [anon_sym_LR_DQUOTE] = ACTIONS(3097), + [anon_sym_uR_DQUOTE] = ACTIONS(3097), + [anon_sym_UR_DQUOTE] = ACTIONS(3097), + [anon_sym_u8R_DQUOTE] = ACTIONS(3097), + [anon_sym_co_await] = ACTIONS(3095), + [anon_sym_new] = ACTIONS(3095), + [anon_sym_requires] = ACTIONS(3095), + [sym_this] = ACTIONS(3095), }, - [736] = { - [sym_identifier] = ACTIONS(3093), - [aux_sym_preproc_include_token1] = ACTIONS(3093), - [aux_sym_preproc_def_token1] = ACTIONS(3093), - [aux_sym_preproc_if_token1] = ACTIONS(3093), - [aux_sym_preproc_if_token2] = ACTIONS(3093), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3093), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3093), - [sym_preproc_directive] = ACTIONS(3093), - [anon_sym_LPAREN2] = ACTIONS(3095), - [anon_sym_BANG] = ACTIONS(3095), - [anon_sym_TILDE] = ACTIONS(3095), - [anon_sym_DASH] = ACTIONS(3093), - [anon_sym_PLUS] = ACTIONS(3093), - [anon_sym_STAR] = ACTIONS(3095), - [anon_sym_AMP_AMP] = ACTIONS(3095), - [anon_sym_AMP] = ACTIONS(3093), - [anon_sym_SEMI] = ACTIONS(3095), - [anon_sym___extension__] = ACTIONS(3093), - [anon_sym_typedef] = ACTIONS(3093), - [anon_sym_virtual] = ACTIONS(3093), - [anon_sym_extern] = ACTIONS(3093), - [anon_sym___attribute__] = ACTIONS(3093), - [anon_sym___attribute] = ACTIONS(3093), - [anon_sym_using] = ACTIONS(3093), - [anon_sym_COLON_COLON] = ACTIONS(3095), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3095), - [anon_sym___declspec] = ACTIONS(3093), - [anon_sym___based] = ACTIONS(3093), - [anon_sym___cdecl] = ACTIONS(3093), - [anon_sym___clrcall] = ACTIONS(3093), - [anon_sym___stdcall] = ACTIONS(3093), - [anon_sym___fastcall] = ACTIONS(3093), - [anon_sym___thiscall] = ACTIONS(3093), - [anon_sym___vectorcall] = ACTIONS(3093), - [anon_sym_LBRACE] = ACTIONS(3095), - [anon_sym_signed] = ACTIONS(3093), - [anon_sym_unsigned] = ACTIONS(3093), - [anon_sym_long] = ACTIONS(3093), - [anon_sym_short] = ACTIONS(3093), - [anon_sym_LBRACK] = ACTIONS(3093), - [anon_sym_static] = ACTIONS(3093), - [anon_sym_register] = ACTIONS(3093), - [anon_sym_inline] = ACTIONS(3093), - [anon_sym___inline] = ACTIONS(3093), - [anon_sym___inline__] = ACTIONS(3093), - [anon_sym___forceinline] = ACTIONS(3093), - [anon_sym_thread_local] = ACTIONS(3093), - [anon_sym___thread] = ACTIONS(3093), - [anon_sym_const] = ACTIONS(3093), - [anon_sym_constexpr] = ACTIONS(3093), - [anon_sym_volatile] = ACTIONS(3093), - [anon_sym_restrict] = ACTIONS(3093), - [anon_sym___restrict__] = ACTIONS(3093), - [anon_sym__Atomic] = ACTIONS(3093), - [anon_sym__Noreturn] = ACTIONS(3093), - [anon_sym_noreturn] = ACTIONS(3093), - [anon_sym__Nonnull] = ACTIONS(3093), - [anon_sym_mutable] = ACTIONS(3093), - [anon_sym_constinit] = ACTIONS(3093), - [anon_sym_consteval] = ACTIONS(3093), - [anon_sym_alignas] = ACTIONS(3093), - [anon_sym__Alignas] = ACTIONS(3093), - [sym_primitive_type] = ACTIONS(3093), - [anon_sym_enum] = ACTIONS(3093), - [anon_sym_class] = ACTIONS(3093), - [anon_sym_struct] = ACTIONS(3093), - [anon_sym_union] = ACTIONS(3093), - [anon_sym_if] = ACTIONS(3093), - [anon_sym_switch] = ACTIONS(3093), - [anon_sym_case] = ACTIONS(3093), - [anon_sym_default] = ACTIONS(3093), - [anon_sym_while] = ACTIONS(3093), - [anon_sym_do] = ACTIONS(3093), - [anon_sym_for] = ACTIONS(3093), - [anon_sym_return] = ACTIONS(3093), - [anon_sym_break] = ACTIONS(3093), - [anon_sym_continue] = ACTIONS(3093), - [anon_sym_goto] = ACTIONS(3093), - [anon_sym___try] = ACTIONS(3093), - [anon_sym___leave] = ACTIONS(3093), - [anon_sym_not] = ACTIONS(3093), - [anon_sym_compl] = ACTIONS(3093), - [anon_sym_DASH_DASH] = ACTIONS(3095), - [anon_sym_PLUS_PLUS] = ACTIONS(3095), - [anon_sym_sizeof] = ACTIONS(3093), - [anon_sym___alignof__] = ACTIONS(3093), - [anon_sym___alignof] = ACTIONS(3093), - [anon_sym__alignof] = ACTIONS(3093), - [anon_sym_alignof] = ACTIONS(3093), - [anon_sym__Alignof] = ACTIONS(3093), - [anon_sym_offsetof] = ACTIONS(3093), - [anon_sym__Generic] = ACTIONS(3093), - [anon_sym_asm] = ACTIONS(3093), - [anon_sym___asm__] = ACTIONS(3093), - [anon_sym___asm] = ACTIONS(3093), - [sym_number_literal] = ACTIONS(3095), - [anon_sym_L_SQUOTE] = ACTIONS(3095), - [anon_sym_u_SQUOTE] = ACTIONS(3095), - [anon_sym_U_SQUOTE] = ACTIONS(3095), - [anon_sym_u8_SQUOTE] = ACTIONS(3095), - [anon_sym_SQUOTE] = ACTIONS(3095), - [anon_sym_L_DQUOTE] = ACTIONS(3095), - [anon_sym_u_DQUOTE] = ACTIONS(3095), - [anon_sym_U_DQUOTE] = ACTIONS(3095), - [anon_sym_u8_DQUOTE] = ACTIONS(3095), - [anon_sym_DQUOTE] = ACTIONS(3095), - [sym_true] = ACTIONS(3093), - [sym_false] = ACTIONS(3093), - [anon_sym_NULL] = ACTIONS(3093), - [anon_sym_nullptr] = ACTIONS(3093), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3093), - [anon_sym_decltype] = ACTIONS(3093), - [anon_sym_explicit] = ACTIONS(3093), - [anon_sym_typename] = ACTIONS(3093), - [anon_sym_template] = ACTIONS(3093), - [anon_sym_operator] = ACTIONS(3093), - [anon_sym_try] = ACTIONS(3093), - [anon_sym_delete] = ACTIONS(3093), - [anon_sym_throw] = ACTIONS(3093), - [anon_sym_namespace] = ACTIONS(3093), - [anon_sym_static_assert] = ACTIONS(3093), - [anon_sym_concept] = ACTIONS(3093), - [anon_sym_co_return] = ACTIONS(3093), - [anon_sym_co_yield] = ACTIONS(3093), - [anon_sym_R_DQUOTE] = ACTIONS(3095), - [anon_sym_LR_DQUOTE] = ACTIONS(3095), - [anon_sym_uR_DQUOTE] = ACTIONS(3095), - [anon_sym_UR_DQUOTE] = ACTIONS(3095), - [anon_sym_u8R_DQUOTE] = ACTIONS(3095), - [anon_sym_co_await] = ACTIONS(3093), - [anon_sym_new] = ACTIONS(3093), - [anon_sym_requires] = ACTIONS(3093), - [sym_this] = ACTIONS(3093), + [767] = { + [sym_identifier] = ACTIONS(3317), + [aux_sym_preproc_include_token1] = ACTIONS(3317), + [aux_sym_preproc_def_token1] = ACTIONS(3317), + [aux_sym_preproc_if_token1] = ACTIONS(3317), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3317), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3317), + [sym_preproc_directive] = ACTIONS(3317), + [anon_sym_LPAREN2] = ACTIONS(3319), + [anon_sym_BANG] = ACTIONS(3319), + [anon_sym_TILDE] = ACTIONS(3319), + [anon_sym_DASH] = ACTIONS(3317), + [anon_sym_PLUS] = ACTIONS(3317), + [anon_sym_STAR] = ACTIONS(3319), + [anon_sym_AMP_AMP] = ACTIONS(3319), + [anon_sym_AMP] = ACTIONS(3317), + [anon_sym_SEMI] = ACTIONS(3319), + [anon_sym___extension__] = ACTIONS(3317), + [anon_sym_typedef] = ACTIONS(3317), + [anon_sym_virtual] = ACTIONS(3317), + [anon_sym_extern] = ACTIONS(3317), + [anon_sym___attribute__] = ACTIONS(3317), + [anon_sym___attribute] = ACTIONS(3317), + [anon_sym_using] = ACTIONS(3317), + [anon_sym_COLON_COLON] = ACTIONS(3319), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3319), + [anon_sym___declspec] = ACTIONS(3317), + [anon_sym___based] = ACTIONS(3317), + [anon_sym___cdecl] = ACTIONS(3317), + [anon_sym___clrcall] = ACTIONS(3317), + [anon_sym___stdcall] = ACTIONS(3317), + [anon_sym___fastcall] = ACTIONS(3317), + [anon_sym___thiscall] = ACTIONS(3317), + [anon_sym___vectorcall] = ACTIONS(3317), + [anon_sym_LBRACE] = ACTIONS(3319), + [anon_sym_RBRACE] = ACTIONS(3319), + [anon_sym_signed] = ACTIONS(3317), + [anon_sym_unsigned] = ACTIONS(3317), + [anon_sym_long] = ACTIONS(3317), + [anon_sym_short] = ACTIONS(3317), + [anon_sym_LBRACK] = ACTIONS(3317), + [anon_sym_static] = ACTIONS(3317), + [anon_sym_register] = ACTIONS(3317), + [anon_sym_inline] = ACTIONS(3317), + [anon_sym___inline] = ACTIONS(3317), + [anon_sym___inline__] = ACTIONS(3317), + [anon_sym___forceinline] = ACTIONS(3317), + [anon_sym_thread_local] = ACTIONS(3317), + [anon_sym___thread] = ACTIONS(3317), + [anon_sym_const] = ACTIONS(3317), + [anon_sym_constexpr] = ACTIONS(3317), + [anon_sym_volatile] = ACTIONS(3317), + [anon_sym_restrict] = ACTIONS(3317), + [anon_sym___restrict__] = ACTIONS(3317), + [anon_sym__Atomic] = ACTIONS(3317), + [anon_sym__Noreturn] = ACTIONS(3317), + [anon_sym_noreturn] = ACTIONS(3317), + [anon_sym__Nonnull] = ACTIONS(3317), + [anon_sym_mutable] = ACTIONS(3317), + [anon_sym_constinit] = ACTIONS(3317), + [anon_sym_consteval] = ACTIONS(3317), + [anon_sym_alignas] = ACTIONS(3317), + [anon_sym__Alignas] = ACTIONS(3317), + [sym_primitive_type] = ACTIONS(3317), + [anon_sym_enum] = ACTIONS(3317), + [anon_sym_class] = ACTIONS(3317), + [anon_sym_struct] = ACTIONS(3317), + [anon_sym_union] = ACTIONS(3317), + [anon_sym_if] = ACTIONS(3317), + [anon_sym_switch] = ACTIONS(3317), + [anon_sym_case] = ACTIONS(3317), + [anon_sym_default] = ACTIONS(3317), + [anon_sym_while] = ACTIONS(3317), + [anon_sym_do] = ACTIONS(3317), + [anon_sym_for] = ACTIONS(3317), + [anon_sym_return] = ACTIONS(3317), + [anon_sym_break] = ACTIONS(3317), + [anon_sym_continue] = ACTIONS(3317), + [anon_sym_goto] = ACTIONS(3317), + [anon_sym___try] = ACTIONS(3317), + [anon_sym___leave] = ACTIONS(3317), + [anon_sym_not] = ACTIONS(3317), + [anon_sym_compl] = ACTIONS(3317), + [anon_sym_DASH_DASH] = ACTIONS(3319), + [anon_sym_PLUS_PLUS] = ACTIONS(3319), + [anon_sym_sizeof] = ACTIONS(3317), + [anon_sym___alignof__] = ACTIONS(3317), + [anon_sym___alignof] = ACTIONS(3317), + [anon_sym__alignof] = ACTIONS(3317), + [anon_sym_alignof] = ACTIONS(3317), + [anon_sym__Alignof] = ACTIONS(3317), + [anon_sym_offsetof] = ACTIONS(3317), + [anon_sym__Generic] = ACTIONS(3317), + [anon_sym_asm] = ACTIONS(3317), + [anon_sym___asm__] = ACTIONS(3317), + [anon_sym___asm] = ACTIONS(3317), + [sym_number_literal] = ACTIONS(3319), + [anon_sym_L_SQUOTE] = ACTIONS(3319), + [anon_sym_u_SQUOTE] = ACTIONS(3319), + [anon_sym_U_SQUOTE] = ACTIONS(3319), + [anon_sym_u8_SQUOTE] = ACTIONS(3319), + [anon_sym_SQUOTE] = ACTIONS(3319), + [anon_sym_L_DQUOTE] = ACTIONS(3319), + [anon_sym_u_DQUOTE] = ACTIONS(3319), + [anon_sym_U_DQUOTE] = ACTIONS(3319), + [anon_sym_u8_DQUOTE] = ACTIONS(3319), + [anon_sym_DQUOTE] = ACTIONS(3319), + [sym_true] = ACTIONS(3317), + [sym_false] = ACTIONS(3317), + [anon_sym_NULL] = ACTIONS(3317), + [anon_sym_nullptr] = ACTIONS(3317), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3317), + [anon_sym_decltype] = ACTIONS(3317), + [anon_sym_explicit] = ACTIONS(3317), + [anon_sym_typename] = ACTIONS(3317), + [anon_sym_template] = ACTIONS(3317), + [anon_sym_operator] = ACTIONS(3317), + [anon_sym_try] = ACTIONS(3317), + [anon_sym_delete] = ACTIONS(3317), + [anon_sym_throw] = ACTIONS(3317), + [anon_sym_namespace] = ACTIONS(3317), + [anon_sym_static_assert] = ACTIONS(3317), + [anon_sym_concept] = ACTIONS(3317), + [anon_sym_co_return] = ACTIONS(3317), + [anon_sym_co_yield] = ACTIONS(3317), + [anon_sym_R_DQUOTE] = ACTIONS(3319), + [anon_sym_LR_DQUOTE] = ACTIONS(3319), + [anon_sym_uR_DQUOTE] = ACTIONS(3319), + [anon_sym_UR_DQUOTE] = ACTIONS(3319), + [anon_sym_u8R_DQUOTE] = ACTIONS(3319), + [anon_sym_co_await] = ACTIONS(3317), + [anon_sym_new] = ACTIONS(3317), + [anon_sym_requires] = ACTIONS(3317), + [sym_this] = ACTIONS(3317), }, - [737] = { - [sym_identifier] = ACTIONS(2943), - [aux_sym_preproc_include_token1] = ACTIONS(2943), - [aux_sym_preproc_def_token1] = ACTIONS(2943), - [aux_sym_preproc_if_token1] = ACTIONS(2943), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2943), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2943), - [sym_preproc_directive] = ACTIONS(2943), - [anon_sym_LPAREN2] = ACTIONS(2945), - [anon_sym_BANG] = ACTIONS(2945), - [anon_sym_TILDE] = ACTIONS(2945), - [anon_sym_DASH] = ACTIONS(2943), - [anon_sym_PLUS] = ACTIONS(2943), - [anon_sym_STAR] = ACTIONS(2945), - [anon_sym_AMP_AMP] = ACTIONS(2945), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_SEMI] = ACTIONS(2945), - [anon_sym___extension__] = ACTIONS(2943), - [anon_sym_typedef] = ACTIONS(2943), - [anon_sym_virtual] = ACTIONS(2943), - [anon_sym_extern] = ACTIONS(2943), - [anon_sym___attribute__] = ACTIONS(2943), - [anon_sym___attribute] = ACTIONS(2943), - [anon_sym_using] = ACTIONS(2943), - [anon_sym_COLON_COLON] = ACTIONS(2945), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2945), - [anon_sym___declspec] = ACTIONS(2943), - [anon_sym___based] = ACTIONS(2943), - [anon_sym___cdecl] = ACTIONS(2943), - [anon_sym___clrcall] = ACTIONS(2943), - [anon_sym___stdcall] = ACTIONS(2943), - [anon_sym___fastcall] = ACTIONS(2943), - [anon_sym___thiscall] = ACTIONS(2943), - [anon_sym___vectorcall] = ACTIONS(2943), - [anon_sym_LBRACE] = ACTIONS(2945), - [anon_sym_RBRACE] = ACTIONS(2945), - [anon_sym_signed] = ACTIONS(2943), - [anon_sym_unsigned] = ACTIONS(2943), - [anon_sym_long] = ACTIONS(2943), - [anon_sym_short] = ACTIONS(2943), - [anon_sym_LBRACK] = ACTIONS(2943), - [anon_sym_static] = ACTIONS(2943), - [anon_sym_register] = ACTIONS(2943), - [anon_sym_inline] = ACTIONS(2943), - [anon_sym___inline] = ACTIONS(2943), - [anon_sym___inline__] = ACTIONS(2943), - [anon_sym___forceinline] = ACTIONS(2943), - [anon_sym_thread_local] = ACTIONS(2943), - [anon_sym___thread] = ACTIONS(2943), - [anon_sym_const] = ACTIONS(2943), - [anon_sym_constexpr] = ACTIONS(2943), - [anon_sym_volatile] = ACTIONS(2943), - [anon_sym_restrict] = ACTIONS(2943), - [anon_sym___restrict__] = ACTIONS(2943), - [anon_sym__Atomic] = ACTIONS(2943), - [anon_sym__Noreturn] = ACTIONS(2943), - [anon_sym_noreturn] = ACTIONS(2943), - [anon_sym__Nonnull] = ACTIONS(2943), - [anon_sym_mutable] = ACTIONS(2943), - [anon_sym_constinit] = ACTIONS(2943), - [anon_sym_consteval] = ACTIONS(2943), - [anon_sym_alignas] = ACTIONS(2943), - [anon_sym__Alignas] = ACTIONS(2943), - [sym_primitive_type] = ACTIONS(2943), - [anon_sym_enum] = ACTIONS(2943), - [anon_sym_class] = ACTIONS(2943), - [anon_sym_struct] = ACTIONS(2943), - [anon_sym_union] = ACTIONS(2943), - [anon_sym_if] = ACTIONS(2943), - [anon_sym_switch] = ACTIONS(2943), - [anon_sym_case] = ACTIONS(2943), - [anon_sym_default] = ACTIONS(2943), - [anon_sym_while] = ACTIONS(2943), - [anon_sym_do] = ACTIONS(2943), - [anon_sym_for] = ACTIONS(2943), - [anon_sym_return] = ACTIONS(2943), - [anon_sym_break] = ACTIONS(2943), - [anon_sym_continue] = ACTIONS(2943), - [anon_sym_goto] = ACTIONS(2943), - [anon_sym___try] = ACTIONS(2943), - [anon_sym___leave] = ACTIONS(2943), - [anon_sym_not] = ACTIONS(2943), - [anon_sym_compl] = ACTIONS(2943), - [anon_sym_DASH_DASH] = ACTIONS(2945), - [anon_sym_PLUS_PLUS] = ACTIONS(2945), - [anon_sym_sizeof] = ACTIONS(2943), - [anon_sym___alignof__] = ACTIONS(2943), - [anon_sym___alignof] = ACTIONS(2943), - [anon_sym__alignof] = ACTIONS(2943), - [anon_sym_alignof] = ACTIONS(2943), - [anon_sym__Alignof] = ACTIONS(2943), - [anon_sym_offsetof] = ACTIONS(2943), - [anon_sym__Generic] = ACTIONS(2943), - [anon_sym_asm] = ACTIONS(2943), - [anon_sym___asm__] = ACTIONS(2943), - [anon_sym___asm] = ACTIONS(2943), - [sym_number_literal] = ACTIONS(2945), - [anon_sym_L_SQUOTE] = ACTIONS(2945), - [anon_sym_u_SQUOTE] = ACTIONS(2945), - [anon_sym_U_SQUOTE] = ACTIONS(2945), - [anon_sym_u8_SQUOTE] = ACTIONS(2945), - [anon_sym_SQUOTE] = ACTIONS(2945), - [anon_sym_L_DQUOTE] = ACTIONS(2945), - [anon_sym_u_DQUOTE] = ACTIONS(2945), - [anon_sym_U_DQUOTE] = ACTIONS(2945), - [anon_sym_u8_DQUOTE] = ACTIONS(2945), - [anon_sym_DQUOTE] = ACTIONS(2945), - [sym_true] = ACTIONS(2943), - [sym_false] = ACTIONS(2943), - [anon_sym_NULL] = ACTIONS(2943), - [anon_sym_nullptr] = ACTIONS(2943), + [768] = { + [sym_identifier] = ACTIONS(3321), + [aux_sym_preproc_include_token1] = ACTIONS(3321), + [aux_sym_preproc_def_token1] = ACTIONS(3321), + [aux_sym_preproc_if_token1] = ACTIONS(3321), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3321), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3321), + [sym_preproc_directive] = ACTIONS(3321), + [anon_sym_LPAREN2] = ACTIONS(3324), + [anon_sym_BANG] = ACTIONS(3324), + [anon_sym_TILDE] = ACTIONS(3324), + [anon_sym_DASH] = ACTIONS(3321), + [anon_sym_PLUS] = ACTIONS(3321), + [anon_sym_STAR] = ACTIONS(3324), + [anon_sym_AMP_AMP] = ACTIONS(3324), + [anon_sym_AMP] = ACTIONS(3321), + [anon_sym_SEMI] = ACTIONS(3324), + [anon_sym___extension__] = ACTIONS(3321), + [anon_sym_typedef] = ACTIONS(3321), + [anon_sym_virtual] = ACTIONS(3321), + [anon_sym_extern] = ACTIONS(3321), + [anon_sym___attribute__] = ACTIONS(3321), + [anon_sym___attribute] = ACTIONS(3321), + [anon_sym_using] = ACTIONS(3321), + [anon_sym_COLON_COLON] = ACTIONS(3324), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3324), + [anon_sym___declspec] = ACTIONS(3321), + [anon_sym___based] = ACTIONS(3321), + [anon_sym___cdecl] = ACTIONS(3321), + [anon_sym___clrcall] = ACTIONS(3321), + [anon_sym___stdcall] = ACTIONS(3321), + [anon_sym___fastcall] = ACTIONS(3321), + [anon_sym___thiscall] = ACTIONS(3321), + [anon_sym___vectorcall] = ACTIONS(3321), + [anon_sym_LBRACE] = ACTIONS(3324), + [anon_sym_RBRACE] = ACTIONS(3324), + [anon_sym_signed] = ACTIONS(3321), + [anon_sym_unsigned] = ACTIONS(3321), + [anon_sym_long] = ACTIONS(3321), + [anon_sym_short] = ACTIONS(3321), + [anon_sym_LBRACK] = ACTIONS(3321), + [anon_sym_static] = ACTIONS(3321), + [anon_sym_register] = ACTIONS(3321), + [anon_sym_inline] = ACTIONS(3321), + [anon_sym___inline] = ACTIONS(3321), + [anon_sym___inline__] = ACTIONS(3321), + [anon_sym___forceinline] = ACTIONS(3321), + [anon_sym_thread_local] = ACTIONS(3321), + [anon_sym___thread] = ACTIONS(3321), + [anon_sym_const] = ACTIONS(3321), + [anon_sym_constexpr] = ACTIONS(3321), + [anon_sym_volatile] = ACTIONS(3321), + [anon_sym_restrict] = ACTIONS(3321), + [anon_sym___restrict__] = ACTIONS(3321), + [anon_sym__Atomic] = ACTIONS(3321), + [anon_sym__Noreturn] = ACTIONS(3321), + [anon_sym_noreturn] = ACTIONS(3321), + [anon_sym__Nonnull] = ACTIONS(3321), + [anon_sym_mutable] = ACTIONS(3321), + [anon_sym_constinit] = ACTIONS(3321), + [anon_sym_consteval] = ACTIONS(3321), + [anon_sym_alignas] = ACTIONS(3321), + [anon_sym__Alignas] = ACTIONS(3321), + [sym_primitive_type] = ACTIONS(3321), + [anon_sym_enum] = ACTIONS(3321), + [anon_sym_class] = ACTIONS(3321), + [anon_sym_struct] = ACTIONS(3321), + [anon_sym_union] = ACTIONS(3321), + [anon_sym_if] = ACTIONS(3321), + [anon_sym_switch] = ACTIONS(3321), + [anon_sym_case] = ACTIONS(3321), + [anon_sym_default] = ACTIONS(3321), + [anon_sym_while] = ACTIONS(3321), + [anon_sym_do] = ACTIONS(3321), + [anon_sym_for] = ACTIONS(3321), + [anon_sym_return] = ACTIONS(3321), + [anon_sym_break] = ACTIONS(3321), + [anon_sym_continue] = ACTIONS(3321), + [anon_sym_goto] = ACTIONS(3321), + [anon_sym___try] = ACTIONS(3321), + [anon_sym___leave] = ACTIONS(3321), + [anon_sym_not] = ACTIONS(3321), + [anon_sym_compl] = ACTIONS(3321), + [anon_sym_DASH_DASH] = ACTIONS(3324), + [anon_sym_PLUS_PLUS] = ACTIONS(3324), + [anon_sym_sizeof] = ACTIONS(3321), + [anon_sym___alignof__] = ACTIONS(3321), + [anon_sym___alignof] = ACTIONS(3321), + [anon_sym__alignof] = ACTIONS(3321), + [anon_sym_alignof] = ACTIONS(3321), + [anon_sym__Alignof] = ACTIONS(3321), + [anon_sym_offsetof] = ACTIONS(3321), + [anon_sym__Generic] = ACTIONS(3321), + [anon_sym_asm] = ACTIONS(3321), + [anon_sym___asm__] = ACTIONS(3321), + [anon_sym___asm] = ACTIONS(3321), + [sym_number_literal] = ACTIONS(3324), + [anon_sym_L_SQUOTE] = ACTIONS(3324), + [anon_sym_u_SQUOTE] = ACTIONS(3324), + [anon_sym_U_SQUOTE] = ACTIONS(3324), + [anon_sym_u8_SQUOTE] = ACTIONS(3324), + [anon_sym_SQUOTE] = ACTIONS(3324), + [anon_sym_L_DQUOTE] = ACTIONS(3324), + [anon_sym_u_DQUOTE] = ACTIONS(3324), + [anon_sym_U_DQUOTE] = ACTIONS(3324), + [anon_sym_u8_DQUOTE] = ACTIONS(3324), + [anon_sym_DQUOTE] = ACTIONS(3324), + [sym_true] = ACTIONS(3321), + [sym_false] = ACTIONS(3321), + [anon_sym_NULL] = ACTIONS(3321), + [anon_sym_nullptr] = ACTIONS(3321), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3321), + [anon_sym_decltype] = ACTIONS(3321), + [anon_sym_explicit] = ACTIONS(3321), + [anon_sym_typename] = ACTIONS(3321), + [anon_sym_template] = ACTIONS(3321), + [anon_sym_operator] = ACTIONS(3321), + [anon_sym_try] = ACTIONS(3321), + [anon_sym_delete] = ACTIONS(3321), + [anon_sym_throw] = ACTIONS(3321), + [anon_sym_namespace] = ACTIONS(3321), + [anon_sym_static_assert] = ACTIONS(3321), + [anon_sym_concept] = ACTIONS(3321), + [anon_sym_co_return] = ACTIONS(3321), + [anon_sym_co_yield] = ACTIONS(3321), + [anon_sym_R_DQUOTE] = ACTIONS(3324), + [anon_sym_LR_DQUOTE] = ACTIONS(3324), + [anon_sym_uR_DQUOTE] = ACTIONS(3324), + [anon_sym_UR_DQUOTE] = ACTIONS(3324), + [anon_sym_u8R_DQUOTE] = ACTIONS(3324), + [anon_sym_co_await] = ACTIONS(3321), + [anon_sym_new] = ACTIONS(3321), + [anon_sym_requires] = ACTIONS(3321), + [sym_this] = ACTIONS(3321), + }, + [769] = { + [sym_identifier] = ACTIONS(2783), + [aux_sym_preproc_include_token1] = ACTIONS(2783), + [aux_sym_preproc_def_token1] = ACTIONS(2783), + [aux_sym_preproc_if_token1] = ACTIONS(2783), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2783), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2783), + [sym_preproc_directive] = ACTIONS(2783), + [anon_sym_LPAREN2] = ACTIONS(2785), + [anon_sym_BANG] = ACTIONS(2785), + [anon_sym_TILDE] = ACTIONS(2785), + [anon_sym_DASH] = ACTIONS(2783), + [anon_sym_PLUS] = ACTIONS(2783), + [anon_sym_STAR] = ACTIONS(2785), + [anon_sym_AMP_AMP] = ACTIONS(2785), + [anon_sym_AMP] = ACTIONS(2783), + [anon_sym_SEMI] = ACTIONS(2785), + [anon_sym___extension__] = ACTIONS(2783), + [anon_sym_typedef] = ACTIONS(2783), + [anon_sym_virtual] = ACTIONS(2783), + [anon_sym_extern] = ACTIONS(2783), + [anon_sym___attribute__] = ACTIONS(2783), + [anon_sym___attribute] = ACTIONS(2783), + [anon_sym_using] = ACTIONS(2783), + [anon_sym_COLON_COLON] = ACTIONS(2785), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2785), + [anon_sym___declspec] = ACTIONS(2783), + [anon_sym___based] = ACTIONS(2783), + [anon_sym___cdecl] = ACTIONS(2783), + [anon_sym___clrcall] = ACTIONS(2783), + [anon_sym___stdcall] = ACTIONS(2783), + [anon_sym___fastcall] = ACTIONS(2783), + [anon_sym___thiscall] = ACTIONS(2783), + [anon_sym___vectorcall] = ACTIONS(2783), + [anon_sym_LBRACE] = ACTIONS(2785), + [anon_sym_RBRACE] = ACTIONS(2785), + [anon_sym_signed] = ACTIONS(2783), + [anon_sym_unsigned] = ACTIONS(2783), + [anon_sym_long] = ACTIONS(2783), + [anon_sym_short] = ACTIONS(2783), + [anon_sym_LBRACK] = ACTIONS(2783), + [anon_sym_static] = ACTIONS(2783), + [anon_sym_register] = ACTIONS(2783), + [anon_sym_inline] = ACTIONS(2783), + [anon_sym___inline] = ACTIONS(2783), + [anon_sym___inline__] = ACTIONS(2783), + [anon_sym___forceinline] = ACTIONS(2783), + [anon_sym_thread_local] = ACTIONS(2783), + [anon_sym___thread] = ACTIONS(2783), + [anon_sym_const] = ACTIONS(2783), + [anon_sym_constexpr] = ACTIONS(2783), + [anon_sym_volatile] = ACTIONS(2783), + [anon_sym_restrict] = ACTIONS(2783), + [anon_sym___restrict__] = ACTIONS(2783), + [anon_sym__Atomic] = ACTIONS(2783), + [anon_sym__Noreturn] = ACTIONS(2783), + [anon_sym_noreturn] = ACTIONS(2783), + [anon_sym__Nonnull] = ACTIONS(2783), + [anon_sym_mutable] = ACTIONS(2783), + [anon_sym_constinit] = ACTIONS(2783), + [anon_sym_consteval] = ACTIONS(2783), + [anon_sym_alignas] = ACTIONS(2783), + [anon_sym__Alignas] = ACTIONS(2783), + [sym_primitive_type] = ACTIONS(2783), + [anon_sym_enum] = ACTIONS(2783), + [anon_sym_class] = ACTIONS(2783), + [anon_sym_struct] = ACTIONS(2783), + [anon_sym_union] = ACTIONS(2783), + [anon_sym_if] = ACTIONS(2783), + [anon_sym_switch] = ACTIONS(2783), + [anon_sym_case] = ACTIONS(2783), + [anon_sym_default] = ACTIONS(2783), + [anon_sym_while] = ACTIONS(2783), + [anon_sym_do] = ACTIONS(2783), + [anon_sym_for] = ACTIONS(2783), + [anon_sym_return] = ACTIONS(2783), + [anon_sym_break] = ACTIONS(2783), + [anon_sym_continue] = ACTIONS(2783), + [anon_sym_goto] = ACTIONS(2783), + [anon_sym___try] = ACTIONS(2783), + [anon_sym___leave] = ACTIONS(2783), + [anon_sym_not] = ACTIONS(2783), + [anon_sym_compl] = ACTIONS(2783), + [anon_sym_DASH_DASH] = ACTIONS(2785), + [anon_sym_PLUS_PLUS] = ACTIONS(2785), + [anon_sym_sizeof] = ACTIONS(2783), + [anon_sym___alignof__] = ACTIONS(2783), + [anon_sym___alignof] = ACTIONS(2783), + [anon_sym__alignof] = ACTIONS(2783), + [anon_sym_alignof] = ACTIONS(2783), + [anon_sym__Alignof] = ACTIONS(2783), + [anon_sym_offsetof] = ACTIONS(2783), + [anon_sym__Generic] = ACTIONS(2783), + [anon_sym_asm] = ACTIONS(2783), + [anon_sym___asm__] = ACTIONS(2783), + [anon_sym___asm] = ACTIONS(2783), + [sym_number_literal] = ACTIONS(2785), + [anon_sym_L_SQUOTE] = ACTIONS(2785), + [anon_sym_u_SQUOTE] = ACTIONS(2785), + [anon_sym_U_SQUOTE] = ACTIONS(2785), + [anon_sym_u8_SQUOTE] = ACTIONS(2785), + [anon_sym_SQUOTE] = ACTIONS(2785), + [anon_sym_L_DQUOTE] = ACTIONS(2785), + [anon_sym_u_DQUOTE] = ACTIONS(2785), + [anon_sym_U_DQUOTE] = ACTIONS(2785), + [anon_sym_u8_DQUOTE] = ACTIONS(2785), + [anon_sym_DQUOTE] = ACTIONS(2785), + [sym_true] = ACTIONS(2783), + [sym_false] = ACTIONS(2783), + [anon_sym_NULL] = ACTIONS(2783), + [anon_sym_nullptr] = ACTIONS(2783), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2943), - [anon_sym_decltype] = ACTIONS(2943), - [anon_sym_explicit] = ACTIONS(2943), - [anon_sym_typename] = ACTIONS(2943), - [anon_sym_template] = ACTIONS(2943), - [anon_sym_operator] = ACTIONS(2943), - [anon_sym_try] = ACTIONS(2943), - [anon_sym_delete] = ACTIONS(2943), - [anon_sym_throw] = ACTIONS(2943), - [anon_sym_namespace] = ACTIONS(2943), - [anon_sym_static_assert] = ACTIONS(2943), - [anon_sym_concept] = ACTIONS(2943), - [anon_sym_co_return] = ACTIONS(2943), - [anon_sym_co_yield] = ACTIONS(2943), - [anon_sym_R_DQUOTE] = ACTIONS(2945), - [anon_sym_LR_DQUOTE] = ACTIONS(2945), - [anon_sym_uR_DQUOTE] = ACTIONS(2945), - [anon_sym_UR_DQUOTE] = ACTIONS(2945), - [anon_sym_u8R_DQUOTE] = ACTIONS(2945), - [anon_sym_co_await] = ACTIONS(2943), - [anon_sym_new] = ACTIONS(2943), - [anon_sym_requires] = ACTIONS(2943), - [sym_this] = ACTIONS(2943), + [sym_auto] = ACTIONS(2783), + [anon_sym_decltype] = ACTIONS(2783), + [anon_sym_explicit] = ACTIONS(2783), + [anon_sym_typename] = ACTIONS(2783), + [anon_sym_template] = ACTIONS(2783), + [anon_sym_operator] = ACTIONS(2783), + [anon_sym_try] = ACTIONS(2783), + [anon_sym_delete] = ACTIONS(2783), + [anon_sym_throw] = ACTIONS(2783), + [anon_sym_namespace] = ACTIONS(2783), + [anon_sym_static_assert] = ACTIONS(2783), + [anon_sym_concept] = ACTIONS(2783), + [anon_sym_co_return] = ACTIONS(2783), + [anon_sym_co_yield] = ACTIONS(2783), + [anon_sym_R_DQUOTE] = ACTIONS(2785), + [anon_sym_LR_DQUOTE] = ACTIONS(2785), + [anon_sym_uR_DQUOTE] = ACTIONS(2785), + [anon_sym_UR_DQUOTE] = ACTIONS(2785), + [anon_sym_u8R_DQUOTE] = ACTIONS(2785), + [anon_sym_co_await] = ACTIONS(2783), + [anon_sym_new] = ACTIONS(2783), + [anon_sym_requires] = ACTIONS(2783), + [sym_this] = ACTIONS(2783), }, - [738] = { - [sym_identifier] = ACTIONS(3319), - [aux_sym_preproc_include_token1] = ACTIONS(3319), - [aux_sym_preproc_def_token1] = ACTIONS(3319), - [aux_sym_preproc_if_token1] = ACTIONS(3319), - [aux_sym_preproc_if_token2] = ACTIONS(3319), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3319), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3319), - [sym_preproc_directive] = ACTIONS(3319), - [anon_sym_LPAREN2] = ACTIONS(3321), - [anon_sym_BANG] = ACTIONS(3321), - [anon_sym_TILDE] = ACTIONS(3321), - [anon_sym_DASH] = ACTIONS(3319), - [anon_sym_PLUS] = ACTIONS(3319), - [anon_sym_STAR] = ACTIONS(3321), - [anon_sym_AMP_AMP] = ACTIONS(3321), - [anon_sym_AMP] = ACTIONS(3319), - [anon_sym_SEMI] = ACTIONS(3321), - [anon_sym___extension__] = ACTIONS(3319), - [anon_sym_typedef] = ACTIONS(3319), - [anon_sym_virtual] = ACTIONS(3319), - [anon_sym_extern] = ACTIONS(3319), - [anon_sym___attribute__] = ACTIONS(3319), - [anon_sym___attribute] = ACTIONS(3319), - [anon_sym_using] = ACTIONS(3319), - [anon_sym_COLON_COLON] = ACTIONS(3321), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3321), - [anon_sym___declspec] = ACTIONS(3319), - [anon_sym___based] = ACTIONS(3319), - [anon_sym___cdecl] = ACTIONS(3319), - [anon_sym___clrcall] = ACTIONS(3319), - [anon_sym___stdcall] = ACTIONS(3319), - [anon_sym___fastcall] = ACTIONS(3319), - [anon_sym___thiscall] = ACTIONS(3319), - [anon_sym___vectorcall] = ACTIONS(3319), - [anon_sym_LBRACE] = ACTIONS(3321), - [anon_sym_signed] = ACTIONS(3319), - [anon_sym_unsigned] = ACTIONS(3319), - [anon_sym_long] = ACTIONS(3319), - [anon_sym_short] = ACTIONS(3319), - [anon_sym_LBRACK] = ACTIONS(3319), - [anon_sym_static] = ACTIONS(3319), - [anon_sym_register] = ACTIONS(3319), - [anon_sym_inline] = ACTIONS(3319), - [anon_sym___inline] = ACTIONS(3319), - [anon_sym___inline__] = ACTIONS(3319), - [anon_sym___forceinline] = ACTIONS(3319), - [anon_sym_thread_local] = ACTIONS(3319), - [anon_sym___thread] = ACTIONS(3319), - [anon_sym_const] = ACTIONS(3319), - [anon_sym_constexpr] = ACTIONS(3319), - [anon_sym_volatile] = ACTIONS(3319), - [anon_sym_restrict] = ACTIONS(3319), - [anon_sym___restrict__] = ACTIONS(3319), - [anon_sym__Atomic] = ACTIONS(3319), - [anon_sym__Noreturn] = ACTIONS(3319), - [anon_sym_noreturn] = ACTIONS(3319), - [anon_sym__Nonnull] = ACTIONS(3319), - [anon_sym_mutable] = ACTIONS(3319), - [anon_sym_constinit] = ACTIONS(3319), - [anon_sym_consteval] = ACTIONS(3319), - [anon_sym_alignas] = ACTIONS(3319), - [anon_sym__Alignas] = ACTIONS(3319), - [sym_primitive_type] = ACTIONS(3319), - [anon_sym_enum] = ACTIONS(3319), - [anon_sym_class] = ACTIONS(3319), - [anon_sym_struct] = ACTIONS(3319), - [anon_sym_union] = ACTIONS(3319), - [anon_sym_if] = ACTIONS(3319), - [anon_sym_switch] = ACTIONS(3319), - [anon_sym_case] = ACTIONS(3319), - [anon_sym_default] = ACTIONS(3319), - [anon_sym_while] = ACTIONS(3319), - [anon_sym_do] = ACTIONS(3319), - [anon_sym_for] = ACTIONS(3319), - [anon_sym_return] = ACTIONS(3319), - [anon_sym_break] = ACTIONS(3319), - [anon_sym_continue] = ACTIONS(3319), - [anon_sym_goto] = ACTIONS(3319), - [anon_sym___try] = ACTIONS(3319), - [anon_sym___leave] = ACTIONS(3319), - [anon_sym_not] = ACTIONS(3319), - [anon_sym_compl] = ACTIONS(3319), - [anon_sym_DASH_DASH] = ACTIONS(3321), - [anon_sym_PLUS_PLUS] = ACTIONS(3321), - [anon_sym_sizeof] = ACTIONS(3319), - [anon_sym___alignof__] = ACTIONS(3319), - [anon_sym___alignof] = ACTIONS(3319), - [anon_sym__alignof] = ACTIONS(3319), - [anon_sym_alignof] = ACTIONS(3319), - [anon_sym__Alignof] = ACTIONS(3319), - [anon_sym_offsetof] = ACTIONS(3319), - [anon_sym__Generic] = ACTIONS(3319), - [anon_sym_asm] = ACTIONS(3319), - [anon_sym___asm__] = ACTIONS(3319), - [anon_sym___asm] = ACTIONS(3319), - [sym_number_literal] = ACTIONS(3321), - [anon_sym_L_SQUOTE] = ACTIONS(3321), - [anon_sym_u_SQUOTE] = ACTIONS(3321), - [anon_sym_U_SQUOTE] = ACTIONS(3321), - [anon_sym_u8_SQUOTE] = ACTIONS(3321), - [anon_sym_SQUOTE] = ACTIONS(3321), - [anon_sym_L_DQUOTE] = ACTIONS(3321), - [anon_sym_u_DQUOTE] = ACTIONS(3321), - [anon_sym_U_DQUOTE] = ACTIONS(3321), - [anon_sym_u8_DQUOTE] = ACTIONS(3321), - [anon_sym_DQUOTE] = ACTIONS(3321), - [sym_true] = ACTIONS(3319), - [sym_false] = ACTIONS(3319), - [anon_sym_NULL] = ACTIONS(3319), - [anon_sym_nullptr] = ACTIONS(3319), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3319), - [anon_sym_decltype] = ACTIONS(3319), - [anon_sym_explicit] = ACTIONS(3319), - [anon_sym_typename] = ACTIONS(3319), - [anon_sym_template] = ACTIONS(3319), - [anon_sym_operator] = ACTIONS(3319), - [anon_sym_try] = ACTIONS(3319), - [anon_sym_delete] = ACTIONS(3319), - [anon_sym_throw] = ACTIONS(3319), - [anon_sym_namespace] = ACTIONS(3319), - [anon_sym_static_assert] = ACTIONS(3319), - [anon_sym_concept] = ACTIONS(3319), - [anon_sym_co_return] = ACTIONS(3319), - [anon_sym_co_yield] = ACTIONS(3319), - [anon_sym_R_DQUOTE] = ACTIONS(3321), - [anon_sym_LR_DQUOTE] = ACTIONS(3321), - [anon_sym_uR_DQUOTE] = ACTIONS(3321), - [anon_sym_UR_DQUOTE] = ACTIONS(3321), - [anon_sym_u8R_DQUOTE] = ACTIONS(3321), - [anon_sym_co_await] = ACTIONS(3319), - [anon_sym_new] = ACTIONS(3319), - [anon_sym_requires] = ACTIONS(3319), - [sym_this] = ACTIONS(3319), + [770] = { + [sym_identifier] = ACTIONS(3101), + [aux_sym_preproc_include_token1] = ACTIONS(3101), + [aux_sym_preproc_def_token1] = ACTIONS(3101), + [aux_sym_preproc_if_token1] = ACTIONS(3101), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3101), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3101), + [sym_preproc_directive] = ACTIONS(3101), + [anon_sym_LPAREN2] = ACTIONS(3103), + [anon_sym_BANG] = ACTIONS(3103), + [anon_sym_TILDE] = ACTIONS(3103), + [anon_sym_DASH] = ACTIONS(3101), + [anon_sym_PLUS] = ACTIONS(3101), + [anon_sym_STAR] = ACTIONS(3103), + [anon_sym_AMP_AMP] = ACTIONS(3103), + [anon_sym_AMP] = ACTIONS(3101), + [anon_sym_SEMI] = ACTIONS(3103), + [anon_sym___extension__] = ACTIONS(3101), + [anon_sym_typedef] = ACTIONS(3101), + [anon_sym_virtual] = ACTIONS(3101), + [anon_sym_extern] = ACTIONS(3101), + [anon_sym___attribute__] = ACTIONS(3101), + [anon_sym___attribute] = ACTIONS(3101), + [anon_sym_using] = ACTIONS(3101), + [anon_sym_COLON_COLON] = ACTIONS(3103), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3103), + [anon_sym___declspec] = ACTIONS(3101), + [anon_sym___based] = ACTIONS(3101), + [anon_sym___cdecl] = ACTIONS(3101), + [anon_sym___clrcall] = ACTIONS(3101), + [anon_sym___stdcall] = ACTIONS(3101), + [anon_sym___fastcall] = ACTIONS(3101), + [anon_sym___thiscall] = ACTIONS(3101), + [anon_sym___vectorcall] = ACTIONS(3101), + [anon_sym_LBRACE] = ACTIONS(3103), + [anon_sym_RBRACE] = ACTIONS(3103), + [anon_sym_signed] = ACTIONS(3101), + [anon_sym_unsigned] = ACTIONS(3101), + [anon_sym_long] = ACTIONS(3101), + [anon_sym_short] = ACTIONS(3101), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_static] = ACTIONS(3101), + [anon_sym_register] = ACTIONS(3101), + [anon_sym_inline] = ACTIONS(3101), + [anon_sym___inline] = ACTIONS(3101), + [anon_sym___inline__] = ACTIONS(3101), + [anon_sym___forceinline] = ACTIONS(3101), + [anon_sym_thread_local] = ACTIONS(3101), + [anon_sym___thread] = ACTIONS(3101), + [anon_sym_const] = ACTIONS(3101), + [anon_sym_constexpr] = ACTIONS(3101), + [anon_sym_volatile] = ACTIONS(3101), + [anon_sym_restrict] = ACTIONS(3101), + [anon_sym___restrict__] = ACTIONS(3101), + [anon_sym__Atomic] = ACTIONS(3101), + [anon_sym__Noreturn] = ACTIONS(3101), + [anon_sym_noreturn] = ACTIONS(3101), + [anon_sym__Nonnull] = ACTIONS(3101), + [anon_sym_mutable] = ACTIONS(3101), + [anon_sym_constinit] = ACTIONS(3101), + [anon_sym_consteval] = ACTIONS(3101), + [anon_sym_alignas] = ACTIONS(3101), + [anon_sym__Alignas] = ACTIONS(3101), + [sym_primitive_type] = ACTIONS(3101), + [anon_sym_enum] = ACTIONS(3101), + [anon_sym_class] = ACTIONS(3101), + [anon_sym_struct] = ACTIONS(3101), + [anon_sym_union] = ACTIONS(3101), + [anon_sym_if] = ACTIONS(3101), + [anon_sym_switch] = ACTIONS(3101), + [anon_sym_case] = ACTIONS(3101), + [anon_sym_default] = ACTIONS(3101), + [anon_sym_while] = ACTIONS(3101), + [anon_sym_do] = ACTIONS(3101), + [anon_sym_for] = ACTIONS(3101), + [anon_sym_return] = ACTIONS(3101), + [anon_sym_break] = ACTIONS(3101), + [anon_sym_continue] = ACTIONS(3101), + [anon_sym_goto] = ACTIONS(3101), + [anon_sym___try] = ACTIONS(3101), + [anon_sym___leave] = ACTIONS(3101), + [anon_sym_not] = ACTIONS(3101), + [anon_sym_compl] = ACTIONS(3101), + [anon_sym_DASH_DASH] = ACTIONS(3103), + [anon_sym_PLUS_PLUS] = ACTIONS(3103), + [anon_sym_sizeof] = ACTIONS(3101), + [anon_sym___alignof__] = ACTIONS(3101), + [anon_sym___alignof] = ACTIONS(3101), + [anon_sym__alignof] = ACTIONS(3101), + [anon_sym_alignof] = ACTIONS(3101), + [anon_sym__Alignof] = ACTIONS(3101), + [anon_sym_offsetof] = ACTIONS(3101), + [anon_sym__Generic] = ACTIONS(3101), + [anon_sym_asm] = ACTIONS(3101), + [anon_sym___asm__] = ACTIONS(3101), + [anon_sym___asm] = ACTIONS(3101), + [sym_number_literal] = ACTIONS(3103), + [anon_sym_L_SQUOTE] = ACTIONS(3103), + [anon_sym_u_SQUOTE] = ACTIONS(3103), + [anon_sym_U_SQUOTE] = ACTIONS(3103), + [anon_sym_u8_SQUOTE] = ACTIONS(3103), + [anon_sym_SQUOTE] = ACTIONS(3103), + [anon_sym_L_DQUOTE] = ACTIONS(3103), + [anon_sym_u_DQUOTE] = ACTIONS(3103), + [anon_sym_U_DQUOTE] = ACTIONS(3103), + [anon_sym_u8_DQUOTE] = ACTIONS(3103), + [anon_sym_DQUOTE] = ACTIONS(3103), + [sym_true] = ACTIONS(3101), + [sym_false] = ACTIONS(3101), + [anon_sym_NULL] = ACTIONS(3101), + [anon_sym_nullptr] = ACTIONS(3101), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3101), + [anon_sym_decltype] = ACTIONS(3101), + [anon_sym_explicit] = ACTIONS(3101), + [anon_sym_typename] = ACTIONS(3101), + [anon_sym_template] = ACTIONS(3101), + [anon_sym_operator] = ACTIONS(3101), + [anon_sym_try] = ACTIONS(3101), + [anon_sym_delete] = ACTIONS(3101), + [anon_sym_throw] = ACTIONS(3101), + [anon_sym_namespace] = ACTIONS(3101), + [anon_sym_static_assert] = ACTIONS(3101), + [anon_sym_concept] = ACTIONS(3101), + [anon_sym_co_return] = ACTIONS(3101), + [anon_sym_co_yield] = ACTIONS(3101), + [anon_sym_R_DQUOTE] = ACTIONS(3103), + [anon_sym_LR_DQUOTE] = ACTIONS(3103), + [anon_sym_uR_DQUOTE] = ACTIONS(3103), + [anon_sym_UR_DQUOTE] = ACTIONS(3103), + [anon_sym_u8R_DQUOTE] = ACTIONS(3103), + [anon_sym_co_await] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3101), + [anon_sym_requires] = ACTIONS(3101), + [sym_this] = ACTIONS(3101), }, - [739] = { - [sym_identifier] = ACTIONS(3104), - [aux_sym_preproc_include_token1] = ACTIONS(3104), - [aux_sym_preproc_def_token1] = ACTIONS(3104), - [aux_sym_preproc_if_token1] = ACTIONS(3104), - [aux_sym_preproc_if_token2] = ACTIONS(3104), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3104), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3104), - [sym_preproc_directive] = ACTIONS(3104), - [anon_sym_LPAREN2] = ACTIONS(3106), - [anon_sym_BANG] = ACTIONS(3106), - [anon_sym_TILDE] = ACTIONS(3106), - [anon_sym_DASH] = ACTIONS(3104), - [anon_sym_PLUS] = ACTIONS(3104), - [anon_sym_STAR] = ACTIONS(3106), - [anon_sym_AMP_AMP] = ACTIONS(3106), - [anon_sym_AMP] = ACTIONS(3104), - [anon_sym_SEMI] = ACTIONS(3106), - [anon_sym___extension__] = ACTIONS(3104), - [anon_sym_typedef] = ACTIONS(3104), - [anon_sym_virtual] = ACTIONS(3104), - [anon_sym_extern] = ACTIONS(3104), - [anon_sym___attribute__] = ACTIONS(3104), - [anon_sym___attribute] = ACTIONS(3104), - [anon_sym_using] = ACTIONS(3104), - [anon_sym_COLON_COLON] = ACTIONS(3106), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3106), - [anon_sym___declspec] = ACTIONS(3104), - [anon_sym___based] = ACTIONS(3104), - [anon_sym___cdecl] = ACTIONS(3104), - [anon_sym___clrcall] = ACTIONS(3104), - [anon_sym___stdcall] = ACTIONS(3104), - [anon_sym___fastcall] = ACTIONS(3104), - [anon_sym___thiscall] = ACTIONS(3104), - [anon_sym___vectorcall] = ACTIONS(3104), - [anon_sym_LBRACE] = ACTIONS(3106), - [anon_sym_signed] = ACTIONS(3104), - [anon_sym_unsigned] = ACTIONS(3104), - [anon_sym_long] = ACTIONS(3104), - [anon_sym_short] = ACTIONS(3104), - [anon_sym_LBRACK] = ACTIONS(3104), - [anon_sym_static] = ACTIONS(3104), - [anon_sym_register] = ACTIONS(3104), - [anon_sym_inline] = ACTIONS(3104), - [anon_sym___inline] = ACTIONS(3104), - [anon_sym___inline__] = ACTIONS(3104), - [anon_sym___forceinline] = ACTIONS(3104), - [anon_sym_thread_local] = ACTIONS(3104), - [anon_sym___thread] = ACTIONS(3104), - [anon_sym_const] = ACTIONS(3104), - [anon_sym_constexpr] = ACTIONS(3104), - [anon_sym_volatile] = ACTIONS(3104), - [anon_sym_restrict] = ACTIONS(3104), - [anon_sym___restrict__] = ACTIONS(3104), - [anon_sym__Atomic] = ACTIONS(3104), - [anon_sym__Noreturn] = ACTIONS(3104), - [anon_sym_noreturn] = ACTIONS(3104), - [anon_sym__Nonnull] = ACTIONS(3104), - [anon_sym_mutable] = ACTIONS(3104), - [anon_sym_constinit] = ACTIONS(3104), - [anon_sym_consteval] = ACTIONS(3104), - [anon_sym_alignas] = ACTIONS(3104), - [anon_sym__Alignas] = ACTIONS(3104), - [sym_primitive_type] = ACTIONS(3104), - [anon_sym_enum] = ACTIONS(3104), - [anon_sym_class] = ACTIONS(3104), - [anon_sym_struct] = ACTIONS(3104), - [anon_sym_union] = ACTIONS(3104), - [anon_sym_if] = ACTIONS(3104), - [anon_sym_switch] = ACTIONS(3104), - [anon_sym_case] = ACTIONS(3104), - [anon_sym_default] = ACTIONS(3104), - [anon_sym_while] = ACTIONS(3104), - [anon_sym_do] = ACTIONS(3104), - [anon_sym_for] = ACTIONS(3104), - [anon_sym_return] = ACTIONS(3104), - [anon_sym_break] = ACTIONS(3104), - [anon_sym_continue] = ACTIONS(3104), - [anon_sym_goto] = ACTIONS(3104), - [anon_sym___try] = ACTIONS(3104), - [anon_sym___leave] = ACTIONS(3104), - [anon_sym_not] = ACTIONS(3104), - [anon_sym_compl] = ACTIONS(3104), - [anon_sym_DASH_DASH] = ACTIONS(3106), - [anon_sym_PLUS_PLUS] = ACTIONS(3106), - [anon_sym_sizeof] = ACTIONS(3104), - [anon_sym___alignof__] = ACTIONS(3104), - [anon_sym___alignof] = ACTIONS(3104), - [anon_sym__alignof] = ACTIONS(3104), - [anon_sym_alignof] = ACTIONS(3104), - [anon_sym__Alignof] = ACTIONS(3104), - [anon_sym_offsetof] = ACTIONS(3104), - [anon_sym__Generic] = ACTIONS(3104), - [anon_sym_asm] = ACTIONS(3104), - [anon_sym___asm__] = ACTIONS(3104), - [anon_sym___asm] = ACTIONS(3104), - [sym_number_literal] = ACTIONS(3106), - [anon_sym_L_SQUOTE] = ACTIONS(3106), - [anon_sym_u_SQUOTE] = ACTIONS(3106), - [anon_sym_U_SQUOTE] = ACTIONS(3106), - [anon_sym_u8_SQUOTE] = ACTIONS(3106), - [anon_sym_SQUOTE] = ACTIONS(3106), - [anon_sym_L_DQUOTE] = ACTIONS(3106), - [anon_sym_u_DQUOTE] = ACTIONS(3106), - [anon_sym_U_DQUOTE] = ACTIONS(3106), - [anon_sym_u8_DQUOTE] = ACTIONS(3106), - [anon_sym_DQUOTE] = ACTIONS(3106), - [sym_true] = ACTIONS(3104), - [sym_false] = ACTIONS(3104), - [anon_sym_NULL] = ACTIONS(3104), - [anon_sym_nullptr] = ACTIONS(3104), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3104), - [anon_sym_decltype] = ACTIONS(3104), - [anon_sym_explicit] = ACTIONS(3104), - [anon_sym_typename] = ACTIONS(3104), - [anon_sym_template] = ACTIONS(3104), - [anon_sym_operator] = ACTIONS(3104), - [anon_sym_try] = ACTIONS(3104), - [anon_sym_delete] = ACTIONS(3104), - [anon_sym_throw] = ACTIONS(3104), - [anon_sym_namespace] = ACTIONS(3104), - [anon_sym_static_assert] = ACTIONS(3104), - [anon_sym_concept] = ACTIONS(3104), - [anon_sym_co_return] = ACTIONS(3104), - [anon_sym_co_yield] = ACTIONS(3104), - [anon_sym_R_DQUOTE] = ACTIONS(3106), - [anon_sym_LR_DQUOTE] = ACTIONS(3106), - [anon_sym_uR_DQUOTE] = ACTIONS(3106), - [anon_sym_UR_DQUOTE] = ACTIONS(3106), - [anon_sym_u8R_DQUOTE] = ACTIONS(3106), - [anon_sym_co_await] = ACTIONS(3104), - [anon_sym_new] = ACTIONS(3104), - [anon_sym_requires] = ACTIONS(3104), - [sym_this] = ACTIONS(3104), + [771] = { + [sym_identifier] = ACTIONS(3105), + [aux_sym_preproc_include_token1] = ACTIONS(3105), + [aux_sym_preproc_def_token1] = ACTIONS(3105), + [aux_sym_preproc_if_token1] = ACTIONS(3105), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3105), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3105), + [sym_preproc_directive] = ACTIONS(3105), + [anon_sym_LPAREN2] = ACTIONS(3107), + [anon_sym_BANG] = ACTIONS(3107), + [anon_sym_TILDE] = ACTIONS(3107), + [anon_sym_DASH] = ACTIONS(3105), + [anon_sym_PLUS] = ACTIONS(3105), + [anon_sym_STAR] = ACTIONS(3107), + [anon_sym_AMP_AMP] = ACTIONS(3107), + [anon_sym_AMP] = ACTIONS(3105), + [anon_sym_SEMI] = ACTIONS(3107), + [anon_sym___extension__] = ACTIONS(3105), + [anon_sym_typedef] = ACTIONS(3105), + [anon_sym_virtual] = ACTIONS(3105), + [anon_sym_extern] = ACTIONS(3105), + [anon_sym___attribute__] = ACTIONS(3105), + [anon_sym___attribute] = ACTIONS(3105), + [anon_sym_using] = ACTIONS(3105), + [anon_sym_COLON_COLON] = ACTIONS(3107), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3107), + [anon_sym___declspec] = ACTIONS(3105), + [anon_sym___based] = ACTIONS(3105), + [anon_sym___cdecl] = ACTIONS(3105), + [anon_sym___clrcall] = ACTIONS(3105), + [anon_sym___stdcall] = ACTIONS(3105), + [anon_sym___fastcall] = ACTIONS(3105), + [anon_sym___thiscall] = ACTIONS(3105), + [anon_sym___vectorcall] = ACTIONS(3105), + [anon_sym_LBRACE] = ACTIONS(3107), + [anon_sym_RBRACE] = ACTIONS(3107), + [anon_sym_signed] = ACTIONS(3105), + [anon_sym_unsigned] = ACTIONS(3105), + [anon_sym_long] = ACTIONS(3105), + [anon_sym_short] = ACTIONS(3105), + [anon_sym_LBRACK] = ACTIONS(3105), + [anon_sym_static] = ACTIONS(3105), + [anon_sym_register] = ACTIONS(3105), + [anon_sym_inline] = ACTIONS(3105), + [anon_sym___inline] = ACTIONS(3105), + [anon_sym___inline__] = ACTIONS(3105), + [anon_sym___forceinline] = ACTIONS(3105), + [anon_sym_thread_local] = ACTIONS(3105), + [anon_sym___thread] = ACTIONS(3105), + [anon_sym_const] = ACTIONS(3105), + [anon_sym_constexpr] = ACTIONS(3105), + [anon_sym_volatile] = ACTIONS(3105), + [anon_sym_restrict] = ACTIONS(3105), + [anon_sym___restrict__] = ACTIONS(3105), + [anon_sym__Atomic] = ACTIONS(3105), + [anon_sym__Noreturn] = ACTIONS(3105), + [anon_sym_noreturn] = ACTIONS(3105), + [anon_sym__Nonnull] = ACTIONS(3105), + [anon_sym_mutable] = ACTIONS(3105), + [anon_sym_constinit] = ACTIONS(3105), + [anon_sym_consteval] = ACTIONS(3105), + [anon_sym_alignas] = ACTIONS(3105), + [anon_sym__Alignas] = ACTIONS(3105), + [sym_primitive_type] = ACTIONS(3105), + [anon_sym_enum] = ACTIONS(3105), + [anon_sym_class] = ACTIONS(3105), + [anon_sym_struct] = ACTIONS(3105), + [anon_sym_union] = ACTIONS(3105), + [anon_sym_if] = ACTIONS(3105), + [anon_sym_switch] = ACTIONS(3105), + [anon_sym_case] = ACTIONS(3105), + [anon_sym_default] = ACTIONS(3105), + [anon_sym_while] = ACTIONS(3105), + [anon_sym_do] = ACTIONS(3105), + [anon_sym_for] = ACTIONS(3105), + [anon_sym_return] = ACTIONS(3105), + [anon_sym_break] = ACTIONS(3105), + [anon_sym_continue] = ACTIONS(3105), + [anon_sym_goto] = ACTIONS(3105), + [anon_sym___try] = ACTIONS(3105), + [anon_sym___leave] = ACTIONS(3105), + [anon_sym_not] = ACTIONS(3105), + [anon_sym_compl] = ACTIONS(3105), + [anon_sym_DASH_DASH] = ACTIONS(3107), + [anon_sym_PLUS_PLUS] = ACTIONS(3107), + [anon_sym_sizeof] = ACTIONS(3105), + [anon_sym___alignof__] = ACTIONS(3105), + [anon_sym___alignof] = ACTIONS(3105), + [anon_sym__alignof] = ACTIONS(3105), + [anon_sym_alignof] = ACTIONS(3105), + [anon_sym__Alignof] = ACTIONS(3105), + [anon_sym_offsetof] = ACTIONS(3105), + [anon_sym__Generic] = ACTIONS(3105), + [anon_sym_asm] = ACTIONS(3105), + [anon_sym___asm__] = ACTIONS(3105), + [anon_sym___asm] = ACTIONS(3105), + [sym_number_literal] = ACTIONS(3107), + [anon_sym_L_SQUOTE] = ACTIONS(3107), + [anon_sym_u_SQUOTE] = ACTIONS(3107), + [anon_sym_U_SQUOTE] = ACTIONS(3107), + [anon_sym_u8_SQUOTE] = ACTIONS(3107), + [anon_sym_SQUOTE] = ACTIONS(3107), + [anon_sym_L_DQUOTE] = ACTIONS(3107), + [anon_sym_u_DQUOTE] = ACTIONS(3107), + [anon_sym_U_DQUOTE] = ACTIONS(3107), + [anon_sym_u8_DQUOTE] = ACTIONS(3107), + [anon_sym_DQUOTE] = ACTIONS(3107), + [sym_true] = ACTIONS(3105), + [sym_false] = ACTIONS(3105), + [anon_sym_NULL] = ACTIONS(3105), + [anon_sym_nullptr] = ACTIONS(3105), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3105), + [anon_sym_decltype] = ACTIONS(3105), + [anon_sym_explicit] = ACTIONS(3105), + [anon_sym_typename] = ACTIONS(3105), + [anon_sym_template] = ACTIONS(3105), + [anon_sym_operator] = ACTIONS(3105), + [anon_sym_try] = ACTIONS(3105), + [anon_sym_delete] = ACTIONS(3105), + [anon_sym_throw] = ACTIONS(3105), + [anon_sym_namespace] = ACTIONS(3105), + [anon_sym_static_assert] = ACTIONS(3105), + [anon_sym_concept] = ACTIONS(3105), + [anon_sym_co_return] = ACTIONS(3105), + [anon_sym_co_yield] = ACTIONS(3105), + [anon_sym_R_DQUOTE] = ACTIONS(3107), + [anon_sym_LR_DQUOTE] = ACTIONS(3107), + [anon_sym_uR_DQUOTE] = ACTIONS(3107), + [anon_sym_UR_DQUOTE] = ACTIONS(3107), + [anon_sym_u8R_DQUOTE] = ACTIONS(3107), + [anon_sym_co_await] = ACTIONS(3105), + [anon_sym_new] = ACTIONS(3105), + [anon_sym_requires] = ACTIONS(3105), + [sym_this] = ACTIONS(3105), }, - [740] = { - [sym_identifier] = ACTIONS(3108), - [aux_sym_preproc_include_token1] = ACTIONS(3108), - [aux_sym_preproc_def_token1] = ACTIONS(3108), - [aux_sym_preproc_if_token1] = ACTIONS(3108), - [aux_sym_preproc_if_token2] = ACTIONS(3108), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3108), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3108), - [sym_preproc_directive] = ACTIONS(3108), - [anon_sym_LPAREN2] = ACTIONS(3110), - [anon_sym_BANG] = ACTIONS(3110), - [anon_sym_TILDE] = ACTIONS(3110), - [anon_sym_DASH] = ACTIONS(3108), - [anon_sym_PLUS] = ACTIONS(3108), - [anon_sym_STAR] = ACTIONS(3110), - [anon_sym_AMP_AMP] = ACTIONS(3110), - [anon_sym_AMP] = ACTIONS(3108), - [anon_sym_SEMI] = ACTIONS(3110), - [anon_sym___extension__] = ACTIONS(3108), - [anon_sym_typedef] = ACTIONS(3108), - [anon_sym_virtual] = ACTIONS(3108), - [anon_sym_extern] = ACTIONS(3108), - [anon_sym___attribute__] = ACTIONS(3108), - [anon_sym___attribute] = ACTIONS(3108), - [anon_sym_using] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(3110), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3110), - [anon_sym___declspec] = ACTIONS(3108), - [anon_sym___based] = ACTIONS(3108), - [anon_sym___cdecl] = ACTIONS(3108), - [anon_sym___clrcall] = ACTIONS(3108), - [anon_sym___stdcall] = ACTIONS(3108), - [anon_sym___fastcall] = ACTIONS(3108), - [anon_sym___thiscall] = ACTIONS(3108), - [anon_sym___vectorcall] = ACTIONS(3108), - [anon_sym_LBRACE] = ACTIONS(3110), - [anon_sym_signed] = ACTIONS(3108), - [anon_sym_unsigned] = ACTIONS(3108), - [anon_sym_long] = ACTIONS(3108), - [anon_sym_short] = ACTIONS(3108), - [anon_sym_LBRACK] = ACTIONS(3108), - [anon_sym_static] = ACTIONS(3108), - [anon_sym_register] = ACTIONS(3108), - [anon_sym_inline] = ACTIONS(3108), - [anon_sym___inline] = ACTIONS(3108), - [anon_sym___inline__] = ACTIONS(3108), - [anon_sym___forceinline] = ACTIONS(3108), - [anon_sym_thread_local] = ACTIONS(3108), - [anon_sym___thread] = ACTIONS(3108), - [anon_sym_const] = ACTIONS(3108), - [anon_sym_constexpr] = ACTIONS(3108), - [anon_sym_volatile] = ACTIONS(3108), - [anon_sym_restrict] = ACTIONS(3108), - [anon_sym___restrict__] = ACTIONS(3108), - [anon_sym__Atomic] = ACTIONS(3108), - [anon_sym__Noreturn] = ACTIONS(3108), - [anon_sym_noreturn] = ACTIONS(3108), - [anon_sym__Nonnull] = ACTIONS(3108), - [anon_sym_mutable] = ACTIONS(3108), - [anon_sym_constinit] = ACTIONS(3108), - [anon_sym_consteval] = ACTIONS(3108), - [anon_sym_alignas] = ACTIONS(3108), - [anon_sym__Alignas] = ACTIONS(3108), - [sym_primitive_type] = ACTIONS(3108), - [anon_sym_enum] = ACTIONS(3108), - [anon_sym_class] = ACTIONS(3108), - [anon_sym_struct] = ACTIONS(3108), - [anon_sym_union] = ACTIONS(3108), - [anon_sym_if] = ACTIONS(3108), - [anon_sym_switch] = ACTIONS(3108), - [anon_sym_case] = ACTIONS(3108), - [anon_sym_default] = ACTIONS(3108), - [anon_sym_while] = ACTIONS(3108), - [anon_sym_do] = ACTIONS(3108), - [anon_sym_for] = ACTIONS(3108), - [anon_sym_return] = ACTIONS(3108), - [anon_sym_break] = ACTIONS(3108), - [anon_sym_continue] = ACTIONS(3108), - [anon_sym_goto] = ACTIONS(3108), - [anon_sym___try] = ACTIONS(3108), - [anon_sym___leave] = ACTIONS(3108), - [anon_sym_not] = ACTIONS(3108), - [anon_sym_compl] = ACTIONS(3108), - [anon_sym_DASH_DASH] = ACTIONS(3110), - [anon_sym_PLUS_PLUS] = ACTIONS(3110), - [anon_sym_sizeof] = ACTIONS(3108), - [anon_sym___alignof__] = ACTIONS(3108), - [anon_sym___alignof] = ACTIONS(3108), - [anon_sym__alignof] = ACTIONS(3108), - [anon_sym_alignof] = ACTIONS(3108), - [anon_sym__Alignof] = ACTIONS(3108), - [anon_sym_offsetof] = ACTIONS(3108), - [anon_sym__Generic] = ACTIONS(3108), - [anon_sym_asm] = ACTIONS(3108), - [anon_sym___asm__] = ACTIONS(3108), - [anon_sym___asm] = ACTIONS(3108), - [sym_number_literal] = ACTIONS(3110), - [anon_sym_L_SQUOTE] = ACTIONS(3110), - [anon_sym_u_SQUOTE] = ACTIONS(3110), - [anon_sym_U_SQUOTE] = ACTIONS(3110), - [anon_sym_u8_SQUOTE] = ACTIONS(3110), - [anon_sym_SQUOTE] = ACTIONS(3110), - [anon_sym_L_DQUOTE] = ACTIONS(3110), - [anon_sym_u_DQUOTE] = ACTIONS(3110), - [anon_sym_U_DQUOTE] = ACTIONS(3110), - [anon_sym_u8_DQUOTE] = ACTIONS(3110), - [anon_sym_DQUOTE] = ACTIONS(3110), - [sym_true] = ACTIONS(3108), - [sym_false] = ACTIONS(3108), - [anon_sym_NULL] = ACTIONS(3108), - [anon_sym_nullptr] = ACTIONS(3108), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3108), - [anon_sym_decltype] = ACTIONS(3108), - [anon_sym_explicit] = ACTIONS(3108), - [anon_sym_typename] = ACTIONS(3108), - [anon_sym_template] = ACTIONS(3108), - [anon_sym_operator] = ACTIONS(3108), - [anon_sym_try] = ACTIONS(3108), - [anon_sym_delete] = ACTIONS(3108), - [anon_sym_throw] = ACTIONS(3108), - [anon_sym_namespace] = ACTIONS(3108), - [anon_sym_static_assert] = ACTIONS(3108), - [anon_sym_concept] = ACTIONS(3108), - [anon_sym_co_return] = ACTIONS(3108), - [anon_sym_co_yield] = ACTIONS(3108), - [anon_sym_R_DQUOTE] = ACTIONS(3110), - [anon_sym_LR_DQUOTE] = ACTIONS(3110), - [anon_sym_uR_DQUOTE] = ACTIONS(3110), - [anon_sym_UR_DQUOTE] = ACTIONS(3110), - [anon_sym_u8R_DQUOTE] = ACTIONS(3110), - [anon_sym_co_await] = ACTIONS(3108), - [anon_sym_new] = ACTIONS(3108), - [anon_sym_requires] = ACTIONS(3108), - [sym_this] = ACTIONS(3108), + [772] = { + [sym_identifier] = ACTIONS(2787), + [aux_sym_preproc_include_token1] = ACTIONS(2787), + [aux_sym_preproc_def_token1] = ACTIONS(2787), + [aux_sym_preproc_if_token1] = ACTIONS(2787), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2787), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2787), + [sym_preproc_directive] = ACTIONS(2787), + [anon_sym_LPAREN2] = ACTIONS(2789), + [anon_sym_BANG] = ACTIONS(2789), + [anon_sym_TILDE] = ACTIONS(2789), + [anon_sym_DASH] = ACTIONS(2787), + [anon_sym_PLUS] = ACTIONS(2787), + [anon_sym_STAR] = ACTIONS(2789), + [anon_sym_AMP_AMP] = ACTIONS(2789), + [anon_sym_AMP] = ACTIONS(2787), + [anon_sym_SEMI] = ACTIONS(2789), + [anon_sym___extension__] = ACTIONS(2787), + [anon_sym_typedef] = ACTIONS(2787), + [anon_sym_virtual] = ACTIONS(2787), + [anon_sym_extern] = ACTIONS(2787), + [anon_sym___attribute__] = ACTIONS(2787), + [anon_sym___attribute] = ACTIONS(2787), + [anon_sym_using] = ACTIONS(2787), + [anon_sym_COLON_COLON] = ACTIONS(2789), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2789), + [anon_sym___declspec] = ACTIONS(2787), + [anon_sym___based] = ACTIONS(2787), + [anon_sym___cdecl] = ACTIONS(2787), + [anon_sym___clrcall] = ACTIONS(2787), + [anon_sym___stdcall] = ACTIONS(2787), + [anon_sym___fastcall] = ACTIONS(2787), + [anon_sym___thiscall] = ACTIONS(2787), + [anon_sym___vectorcall] = ACTIONS(2787), + [anon_sym_LBRACE] = ACTIONS(2789), + [anon_sym_RBRACE] = ACTIONS(2789), + [anon_sym_signed] = ACTIONS(2787), + [anon_sym_unsigned] = ACTIONS(2787), + [anon_sym_long] = ACTIONS(2787), + [anon_sym_short] = ACTIONS(2787), + [anon_sym_LBRACK] = ACTIONS(2787), + [anon_sym_static] = ACTIONS(2787), + [anon_sym_register] = ACTIONS(2787), + [anon_sym_inline] = ACTIONS(2787), + [anon_sym___inline] = ACTIONS(2787), + [anon_sym___inline__] = ACTIONS(2787), + [anon_sym___forceinline] = ACTIONS(2787), + [anon_sym_thread_local] = ACTIONS(2787), + [anon_sym___thread] = ACTIONS(2787), + [anon_sym_const] = ACTIONS(2787), + [anon_sym_constexpr] = ACTIONS(2787), + [anon_sym_volatile] = ACTIONS(2787), + [anon_sym_restrict] = ACTIONS(2787), + [anon_sym___restrict__] = ACTIONS(2787), + [anon_sym__Atomic] = ACTIONS(2787), + [anon_sym__Noreturn] = ACTIONS(2787), + [anon_sym_noreturn] = ACTIONS(2787), + [anon_sym__Nonnull] = ACTIONS(2787), + [anon_sym_mutable] = ACTIONS(2787), + [anon_sym_constinit] = ACTIONS(2787), + [anon_sym_consteval] = ACTIONS(2787), + [anon_sym_alignas] = ACTIONS(2787), + [anon_sym__Alignas] = ACTIONS(2787), + [sym_primitive_type] = ACTIONS(2787), + [anon_sym_enum] = ACTIONS(2787), + [anon_sym_class] = ACTIONS(2787), + [anon_sym_struct] = ACTIONS(2787), + [anon_sym_union] = ACTIONS(2787), + [anon_sym_if] = ACTIONS(2787), + [anon_sym_switch] = ACTIONS(2787), + [anon_sym_case] = ACTIONS(2787), + [anon_sym_default] = ACTIONS(2787), + [anon_sym_while] = ACTIONS(2787), + [anon_sym_do] = ACTIONS(2787), + [anon_sym_for] = ACTIONS(2787), + [anon_sym_return] = ACTIONS(2787), + [anon_sym_break] = ACTIONS(2787), + [anon_sym_continue] = ACTIONS(2787), + [anon_sym_goto] = ACTIONS(2787), + [anon_sym___try] = ACTIONS(2787), + [anon_sym___leave] = ACTIONS(2787), + [anon_sym_not] = ACTIONS(2787), + [anon_sym_compl] = ACTIONS(2787), + [anon_sym_DASH_DASH] = ACTIONS(2789), + [anon_sym_PLUS_PLUS] = ACTIONS(2789), + [anon_sym_sizeof] = ACTIONS(2787), + [anon_sym___alignof__] = ACTIONS(2787), + [anon_sym___alignof] = ACTIONS(2787), + [anon_sym__alignof] = ACTIONS(2787), + [anon_sym_alignof] = ACTIONS(2787), + [anon_sym__Alignof] = ACTIONS(2787), + [anon_sym_offsetof] = ACTIONS(2787), + [anon_sym__Generic] = ACTIONS(2787), + [anon_sym_asm] = ACTIONS(2787), + [anon_sym___asm__] = ACTIONS(2787), + [anon_sym___asm] = ACTIONS(2787), + [sym_number_literal] = ACTIONS(2789), + [anon_sym_L_SQUOTE] = ACTIONS(2789), + [anon_sym_u_SQUOTE] = ACTIONS(2789), + [anon_sym_U_SQUOTE] = ACTIONS(2789), + [anon_sym_u8_SQUOTE] = ACTIONS(2789), + [anon_sym_SQUOTE] = ACTIONS(2789), + [anon_sym_L_DQUOTE] = ACTIONS(2789), + [anon_sym_u_DQUOTE] = ACTIONS(2789), + [anon_sym_U_DQUOTE] = ACTIONS(2789), + [anon_sym_u8_DQUOTE] = ACTIONS(2789), + [anon_sym_DQUOTE] = ACTIONS(2789), + [sym_true] = ACTIONS(2787), + [sym_false] = ACTIONS(2787), + [anon_sym_NULL] = ACTIONS(2787), + [anon_sym_nullptr] = ACTIONS(2787), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2787), + [anon_sym_decltype] = ACTIONS(2787), + [anon_sym_explicit] = ACTIONS(2787), + [anon_sym_typename] = ACTIONS(2787), + [anon_sym_template] = ACTIONS(2787), + [anon_sym_operator] = ACTIONS(2787), + [anon_sym_try] = ACTIONS(2787), + [anon_sym_delete] = ACTIONS(2787), + [anon_sym_throw] = ACTIONS(2787), + [anon_sym_namespace] = ACTIONS(2787), + [anon_sym_static_assert] = ACTIONS(2787), + [anon_sym_concept] = ACTIONS(2787), + [anon_sym_co_return] = ACTIONS(2787), + [anon_sym_co_yield] = ACTIONS(2787), + [anon_sym_R_DQUOTE] = ACTIONS(2789), + [anon_sym_LR_DQUOTE] = ACTIONS(2789), + [anon_sym_uR_DQUOTE] = ACTIONS(2789), + [anon_sym_UR_DQUOTE] = ACTIONS(2789), + [anon_sym_u8R_DQUOTE] = ACTIONS(2789), + [anon_sym_co_await] = ACTIONS(2787), + [anon_sym_new] = ACTIONS(2787), + [anon_sym_requires] = ACTIONS(2787), + [sym_this] = ACTIONS(2787), }, - [741] = { - [sym_identifier] = ACTIONS(3112), - [aux_sym_preproc_include_token1] = ACTIONS(3112), - [aux_sym_preproc_def_token1] = ACTIONS(3112), - [aux_sym_preproc_if_token1] = ACTIONS(3112), - [aux_sym_preproc_if_token2] = ACTIONS(3112), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3112), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3112), - [sym_preproc_directive] = ACTIONS(3112), - [anon_sym_LPAREN2] = ACTIONS(3114), - [anon_sym_BANG] = ACTIONS(3114), - [anon_sym_TILDE] = ACTIONS(3114), - [anon_sym_DASH] = ACTIONS(3112), - [anon_sym_PLUS] = ACTIONS(3112), - [anon_sym_STAR] = ACTIONS(3114), - [anon_sym_AMP_AMP] = ACTIONS(3114), - [anon_sym_AMP] = ACTIONS(3112), - [anon_sym_SEMI] = ACTIONS(3114), - [anon_sym___extension__] = ACTIONS(3112), - [anon_sym_typedef] = ACTIONS(3112), - [anon_sym_virtual] = ACTIONS(3112), - [anon_sym_extern] = ACTIONS(3112), - [anon_sym___attribute__] = ACTIONS(3112), - [anon_sym___attribute] = ACTIONS(3112), - [anon_sym_using] = ACTIONS(3112), - [anon_sym_COLON_COLON] = ACTIONS(3114), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3114), - [anon_sym___declspec] = ACTIONS(3112), - [anon_sym___based] = ACTIONS(3112), - [anon_sym___cdecl] = ACTIONS(3112), - [anon_sym___clrcall] = ACTIONS(3112), - [anon_sym___stdcall] = ACTIONS(3112), - [anon_sym___fastcall] = ACTIONS(3112), - [anon_sym___thiscall] = ACTIONS(3112), - [anon_sym___vectorcall] = ACTIONS(3112), - [anon_sym_LBRACE] = ACTIONS(3114), - [anon_sym_signed] = ACTIONS(3112), - [anon_sym_unsigned] = ACTIONS(3112), - [anon_sym_long] = ACTIONS(3112), - [anon_sym_short] = ACTIONS(3112), - [anon_sym_LBRACK] = ACTIONS(3112), - [anon_sym_static] = ACTIONS(3112), - [anon_sym_register] = ACTIONS(3112), - [anon_sym_inline] = ACTIONS(3112), - [anon_sym___inline] = ACTIONS(3112), - [anon_sym___inline__] = ACTIONS(3112), - [anon_sym___forceinline] = ACTIONS(3112), - [anon_sym_thread_local] = ACTIONS(3112), - [anon_sym___thread] = ACTIONS(3112), - [anon_sym_const] = ACTIONS(3112), - [anon_sym_constexpr] = ACTIONS(3112), - [anon_sym_volatile] = ACTIONS(3112), - [anon_sym_restrict] = ACTIONS(3112), - [anon_sym___restrict__] = ACTIONS(3112), - [anon_sym__Atomic] = ACTIONS(3112), - [anon_sym__Noreturn] = ACTIONS(3112), - [anon_sym_noreturn] = ACTIONS(3112), - [anon_sym__Nonnull] = ACTIONS(3112), - [anon_sym_mutable] = ACTIONS(3112), - [anon_sym_constinit] = ACTIONS(3112), - [anon_sym_consteval] = ACTIONS(3112), - [anon_sym_alignas] = ACTIONS(3112), - [anon_sym__Alignas] = ACTIONS(3112), - [sym_primitive_type] = ACTIONS(3112), - [anon_sym_enum] = ACTIONS(3112), - [anon_sym_class] = ACTIONS(3112), - [anon_sym_struct] = ACTIONS(3112), - [anon_sym_union] = ACTIONS(3112), - [anon_sym_if] = ACTIONS(3112), - [anon_sym_switch] = ACTIONS(3112), - [anon_sym_case] = ACTIONS(3112), - [anon_sym_default] = ACTIONS(3112), - [anon_sym_while] = ACTIONS(3112), - [anon_sym_do] = ACTIONS(3112), - [anon_sym_for] = ACTIONS(3112), - [anon_sym_return] = ACTIONS(3112), - [anon_sym_break] = ACTIONS(3112), - [anon_sym_continue] = ACTIONS(3112), - [anon_sym_goto] = ACTIONS(3112), - [anon_sym___try] = ACTIONS(3112), - [anon_sym___leave] = ACTIONS(3112), - [anon_sym_not] = ACTIONS(3112), - [anon_sym_compl] = ACTIONS(3112), - [anon_sym_DASH_DASH] = ACTIONS(3114), - [anon_sym_PLUS_PLUS] = ACTIONS(3114), - [anon_sym_sizeof] = ACTIONS(3112), - [anon_sym___alignof__] = ACTIONS(3112), - [anon_sym___alignof] = ACTIONS(3112), - [anon_sym__alignof] = ACTIONS(3112), - [anon_sym_alignof] = ACTIONS(3112), - [anon_sym__Alignof] = ACTIONS(3112), - [anon_sym_offsetof] = ACTIONS(3112), - [anon_sym__Generic] = ACTIONS(3112), - [anon_sym_asm] = ACTIONS(3112), - [anon_sym___asm__] = ACTIONS(3112), - [anon_sym___asm] = ACTIONS(3112), - [sym_number_literal] = ACTIONS(3114), - [anon_sym_L_SQUOTE] = ACTIONS(3114), - [anon_sym_u_SQUOTE] = ACTIONS(3114), - [anon_sym_U_SQUOTE] = ACTIONS(3114), - [anon_sym_u8_SQUOTE] = ACTIONS(3114), - [anon_sym_SQUOTE] = ACTIONS(3114), - [anon_sym_L_DQUOTE] = ACTIONS(3114), - [anon_sym_u_DQUOTE] = ACTIONS(3114), - [anon_sym_U_DQUOTE] = ACTIONS(3114), - [anon_sym_u8_DQUOTE] = ACTIONS(3114), - [anon_sym_DQUOTE] = ACTIONS(3114), - [sym_true] = ACTIONS(3112), - [sym_false] = ACTIONS(3112), - [anon_sym_NULL] = ACTIONS(3112), - [anon_sym_nullptr] = ACTIONS(3112), + [773] = { + [sym_identifier] = ACTIONS(2791), + [aux_sym_preproc_include_token1] = ACTIONS(2791), + [aux_sym_preproc_def_token1] = ACTIONS(2791), + [aux_sym_preproc_if_token1] = ACTIONS(2791), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2791), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2791), + [sym_preproc_directive] = ACTIONS(2791), + [anon_sym_LPAREN2] = ACTIONS(2793), + [anon_sym_BANG] = ACTIONS(2793), + [anon_sym_TILDE] = ACTIONS(2793), + [anon_sym_DASH] = ACTIONS(2791), + [anon_sym_PLUS] = ACTIONS(2791), + [anon_sym_STAR] = ACTIONS(2793), + [anon_sym_AMP_AMP] = ACTIONS(2793), + [anon_sym_AMP] = ACTIONS(2791), + [anon_sym_SEMI] = ACTIONS(2793), + [anon_sym___extension__] = ACTIONS(2791), + [anon_sym_typedef] = ACTIONS(2791), + [anon_sym_virtual] = ACTIONS(2791), + [anon_sym_extern] = ACTIONS(2791), + [anon_sym___attribute__] = ACTIONS(2791), + [anon_sym___attribute] = ACTIONS(2791), + [anon_sym_using] = ACTIONS(2791), + [anon_sym_COLON_COLON] = ACTIONS(2793), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2793), + [anon_sym___declspec] = ACTIONS(2791), + [anon_sym___based] = ACTIONS(2791), + [anon_sym___cdecl] = ACTIONS(2791), + [anon_sym___clrcall] = ACTIONS(2791), + [anon_sym___stdcall] = ACTIONS(2791), + [anon_sym___fastcall] = ACTIONS(2791), + [anon_sym___thiscall] = ACTIONS(2791), + [anon_sym___vectorcall] = ACTIONS(2791), + [anon_sym_LBRACE] = ACTIONS(2793), + [anon_sym_RBRACE] = ACTIONS(2793), + [anon_sym_signed] = ACTIONS(2791), + [anon_sym_unsigned] = ACTIONS(2791), + [anon_sym_long] = ACTIONS(2791), + [anon_sym_short] = ACTIONS(2791), + [anon_sym_LBRACK] = ACTIONS(2791), + [anon_sym_static] = ACTIONS(2791), + [anon_sym_register] = ACTIONS(2791), + [anon_sym_inline] = ACTIONS(2791), + [anon_sym___inline] = ACTIONS(2791), + [anon_sym___inline__] = ACTIONS(2791), + [anon_sym___forceinline] = ACTIONS(2791), + [anon_sym_thread_local] = ACTIONS(2791), + [anon_sym___thread] = ACTIONS(2791), + [anon_sym_const] = ACTIONS(2791), + [anon_sym_constexpr] = ACTIONS(2791), + [anon_sym_volatile] = ACTIONS(2791), + [anon_sym_restrict] = ACTIONS(2791), + [anon_sym___restrict__] = ACTIONS(2791), + [anon_sym__Atomic] = ACTIONS(2791), + [anon_sym__Noreturn] = ACTIONS(2791), + [anon_sym_noreturn] = ACTIONS(2791), + [anon_sym__Nonnull] = ACTIONS(2791), + [anon_sym_mutable] = ACTIONS(2791), + [anon_sym_constinit] = ACTIONS(2791), + [anon_sym_consteval] = ACTIONS(2791), + [anon_sym_alignas] = ACTIONS(2791), + [anon_sym__Alignas] = ACTIONS(2791), + [sym_primitive_type] = ACTIONS(2791), + [anon_sym_enum] = ACTIONS(2791), + [anon_sym_class] = ACTIONS(2791), + [anon_sym_struct] = ACTIONS(2791), + [anon_sym_union] = ACTIONS(2791), + [anon_sym_if] = ACTIONS(2791), + [anon_sym_switch] = ACTIONS(2791), + [anon_sym_case] = ACTIONS(2791), + [anon_sym_default] = ACTIONS(2791), + [anon_sym_while] = ACTIONS(2791), + [anon_sym_do] = ACTIONS(2791), + [anon_sym_for] = ACTIONS(2791), + [anon_sym_return] = ACTIONS(2791), + [anon_sym_break] = ACTIONS(2791), + [anon_sym_continue] = ACTIONS(2791), + [anon_sym_goto] = ACTIONS(2791), + [anon_sym___try] = ACTIONS(2791), + [anon_sym___leave] = ACTIONS(2791), + [anon_sym_not] = ACTIONS(2791), + [anon_sym_compl] = ACTIONS(2791), + [anon_sym_DASH_DASH] = ACTIONS(2793), + [anon_sym_PLUS_PLUS] = ACTIONS(2793), + [anon_sym_sizeof] = ACTIONS(2791), + [anon_sym___alignof__] = ACTIONS(2791), + [anon_sym___alignof] = ACTIONS(2791), + [anon_sym__alignof] = ACTIONS(2791), + [anon_sym_alignof] = ACTIONS(2791), + [anon_sym__Alignof] = ACTIONS(2791), + [anon_sym_offsetof] = ACTIONS(2791), + [anon_sym__Generic] = ACTIONS(2791), + [anon_sym_asm] = ACTIONS(2791), + [anon_sym___asm__] = ACTIONS(2791), + [anon_sym___asm] = ACTIONS(2791), + [sym_number_literal] = ACTIONS(2793), + [anon_sym_L_SQUOTE] = ACTIONS(2793), + [anon_sym_u_SQUOTE] = ACTIONS(2793), + [anon_sym_U_SQUOTE] = ACTIONS(2793), + [anon_sym_u8_SQUOTE] = ACTIONS(2793), + [anon_sym_SQUOTE] = ACTIONS(2793), + [anon_sym_L_DQUOTE] = ACTIONS(2793), + [anon_sym_u_DQUOTE] = ACTIONS(2793), + [anon_sym_U_DQUOTE] = ACTIONS(2793), + [anon_sym_u8_DQUOTE] = ACTIONS(2793), + [anon_sym_DQUOTE] = ACTIONS(2793), + [sym_true] = ACTIONS(2791), + [sym_false] = ACTIONS(2791), + [anon_sym_NULL] = ACTIONS(2791), + [anon_sym_nullptr] = ACTIONS(2791), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3112), - [anon_sym_decltype] = ACTIONS(3112), - [anon_sym_explicit] = ACTIONS(3112), - [anon_sym_typename] = ACTIONS(3112), - [anon_sym_template] = ACTIONS(3112), - [anon_sym_operator] = ACTIONS(3112), - [anon_sym_try] = ACTIONS(3112), - [anon_sym_delete] = ACTIONS(3112), - [anon_sym_throw] = ACTIONS(3112), - [anon_sym_namespace] = ACTIONS(3112), - [anon_sym_static_assert] = ACTIONS(3112), - [anon_sym_concept] = ACTIONS(3112), - [anon_sym_co_return] = ACTIONS(3112), - [anon_sym_co_yield] = ACTIONS(3112), - [anon_sym_R_DQUOTE] = ACTIONS(3114), - [anon_sym_LR_DQUOTE] = ACTIONS(3114), - [anon_sym_uR_DQUOTE] = ACTIONS(3114), - [anon_sym_UR_DQUOTE] = ACTIONS(3114), - [anon_sym_u8R_DQUOTE] = ACTIONS(3114), - [anon_sym_co_await] = ACTIONS(3112), - [anon_sym_new] = ACTIONS(3112), - [anon_sym_requires] = ACTIONS(3112), - [sym_this] = ACTIONS(3112), + [sym_auto] = ACTIONS(2791), + [anon_sym_decltype] = ACTIONS(2791), + [anon_sym_explicit] = ACTIONS(2791), + [anon_sym_typename] = ACTIONS(2791), + [anon_sym_template] = ACTIONS(2791), + [anon_sym_operator] = ACTIONS(2791), + [anon_sym_try] = ACTIONS(2791), + [anon_sym_delete] = ACTIONS(2791), + [anon_sym_throw] = ACTIONS(2791), + [anon_sym_namespace] = ACTIONS(2791), + [anon_sym_static_assert] = ACTIONS(2791), + [anon_sym_concept] = ACTIONS(2791), + [anon_sym_co_return] = ACTIONS(2791), + [anon_sym_co_yield] = ACTIONS(2791), + [anon_sym_R_DQUOTE] = ACTIONS(2793), + [anon_sym_LR_DQUOTE] = ACTIONS(2793), + [anon_sym_uR_DQUOTE] = ACTIONS(2793), + [anon_sym_UR_DQUOTE] = ACTIONS(2793), + [anon_sym_u8R_DQUOTE] = ACTIONS(2793), + [anon_sym_co_await] = ACTIONS(2791), + [anon_sym_new] = ACTIONS(2791), + [anon_sym_requires] = ACTIONS(2791), + [sym_this] = ACTIONS(2791), + }, + [774] = { + [sym_identifier] = ACTIONS(2795), + [aux_sym_preproc_include_token1] = ACTIONS(2795), + [aux_sym_preproc_def_token1] = ACTIONS(2795), + [aux_sym_preproc_if_token1] = ACTIONS(2795), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2795), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2795), + [sym_preproc_directive] = ACTIONS(2795), + [anon_sym_LPAREN2] = ACTIONS(2797), + [anon_sym_BANG] = ACTIONS(2797), + [anon_sym_TILDE] = ACTIONS(2797), + [anon_sym_DASH] = ACTIONS(2795), + [anon_sym_PLUS] = ACTIONS(2795), + [anon_sym_STAR] = ACTIONS(2797), + [anon_sym_AMP_AMP] = ACTIONS(2797), + [anon_sym_AMP] = ACTIONS(2795), + [anon_sym_SEMI] = ACTIONS(2797), + [anon_sym___extension__] = ACTIONS(2795), + [anon_sym_typedef] = ACTIONS(2795), + [anon_sym_virtual] = ACTIONS(2795), + [anon_sym_extern] = ACTIONS(2795), + [anon_sym___attribute__] = ACTIONS(2795), + [anon_sym___attribute] = ACTIONS(2795), + [anon_sym_using] = ACTIONS(2795), + [anon_sym_COLON_COLON] = ACTIONS(2797), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2797), + [anon_sym___declspec] = ACTIONS(2795), + [anon_sym___based] = ACTIONS(2795), + [anon_sym___cdecl] = ACTIONS(2795), + [anon_sym___clrcall] = ACTIONS(2795), + [anon_sym___stdcall] = ACTIONS(2795), + [anon_sym___fastcall] = ACTIONS(2795), + [anon_sym___thiscall] = ACTIONS(2795), + [anon_sym___vectorcall] = ACTIONS(2795), + [anon_sym_LBRACE] = ACTIONS(2797), + [anon_sym_RBRACE] = ACTIONS(2797), + [anon_sym_signed] = ACTIONS(2795), + [anon_sym_unsigned] = ACTIONS(2795), + [anon_sym_long] = ACTIONS(2795), + [anon_sym_short] = ACTIONS(2795), + [anon_sym_LBRACK] = ACTIONS(2795), + [anon_sym_static] = ACTIONS(2795), + [anon_sym_register] = ACTIONS(2795), + [anon_sym_inline] = ACTIONS(2795), + [anon_sym___inline] = ACTIONS(2795), + [anon_sym___inline__] = ACTIONS(2795), + [anon_sym___forceinline] = ACTIONS(2795), + [anon_sym_thread_local] = ACTIONS(2795), + [anon_sym___thread] = ACTIONS(2795), + [anon_sym_const] = ACTIONS(2795), + [anon_sym_constexpr] = ACTIONS(2795), + [anon_sym_volatile] = ACTIONS(2795), + [anon_sym_restrict] = ACTIONS(2795), + [anon_sym___restrict__] = ACTIONS(2795), + [anon_sym__Atomic] = ACTIONS(2795), + [anon_sym__Noreturn] = ACTIONS(2795), + [anon_sym_noreturn] = ACTIONS(2795), + [anon_sym__Nonnull] = ACTIONS(2795), + [anon_sym_mutable] = ACTIONS(2795), + [anon_sym_constinit] = ACTIONS(2795), + [anon_sym_consteval] = ACTIONS(2795), + [anon_sym_alignas] = ACTIONS(2795), + [anon_sym__Alignas] = ACTIONS(2795), + [sym_primitive_type] = ACTIONS(2795), + [anon_sym_enum] = ACTIONS(2795), + [anon_sym_class] = ACTIONS(2795), + [anon_sym_struct] = ACTIONS(2795), + [anon_sym_union] = ACTIONS(2795), + [anon_sym_if] = ACTIONS(2795), + [anon_sym_switch] = ACTIONS(2795), + [anon_sym_case] = ACTIONS(2795), + [anon_sym_default] = ACTIONS(2795), + [anon_sym_while] = ACTIONS(2795), + [anon_sym_do] = ACTIONS(2795), + [anon_sym_for] = ACTIONS(2795), + [anon_sym_return] = ACTIONS(2795), + [anon_sym_break] = ACTIONS(2795), + [anon_sym_continue] = ACTIONS(2795), + [anon_sym_goto] = ACTIONS(2795), + [anon_sym___try] = ACTIONS(2795), + [anon_sym___leave] = ACTIONS(2795), + [anon_sym_not] = ACTIONS(2795), + [anon_sym_compl] = ACTIONS(2795), + [anon_sym_DASH_DASH] = ACTIONS(2797), + [anon_sym_PLUS_PLUS] = ACTIONS(2797), + [anon_sym_sizeof] = ACTIONS(2795), + [anon_sym___alignof__] = ACTIONS(2795), + [anon_sym___alignof] = ACTIONS(2795), + [anon_sym__alignof] = ACTIONS(2795), + [anon_sym_alignof] = ACTIONS(2795), + [anon_sym__Alignof] = ACTIONS(2795), + [anon_sym_offsetof] = ACTIONS(2795), + [anon_sym__Generic] = ACTIONS(2795), + [anon_sym_asm] = ACTIONS(2795), + [anon_sym___asm__] = ACTIONS(2795), + [anon_sym___asm] = ACTIONS(2795), + [sym_number_literal] = ACTIONS(2797), + [anon_sym_L_SQUOTE] = ACTIONS(2797), + [anon_sym_u_SQUOTE] = ACTIONS(2797), + [anon_sym_U_SQUOTE] = ACTIONS(2797), + [anon_sym_u8_SQUOTE] = ACTIONS(2797), + [anon_sym_SQUOTE] = ACTIONS(2797), + [anon_sym_L_DQUOTE] = ACTIONS(2797), + [anon_sym_u_DQUOTE] = ACTIONS(2797), + [anon_sym_U_DQUOTE] = ACTIONS(2797), + [anon_sym_u8_DQUOTE] = ACTIONS(2797), + [anon_sym_DQUOTE] = ACTIONS(2797), + [sym_true] = ACTIONS(2795), + [sym_false] = ACTIONS(2795), + [anon_sym_NULL] = ACTIONS(2795), + [anon_sym_nullptr] = ACTIONS(2795), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2795), + [anon_sym_decltype] = ACTIONS(2795), + [anon_sym_explicit] = ACTIONS(2795), + [anon_sym_typename] = ACTIONS(2795), + [anon_sym_template] = ACTIONS(2795), + [anon_sym_operator] = ACTIONS(2795), + [anon_sym_try] = ACTIONS(2795), + [anon_sym_delete] = ACTIONS(2795), + [anon_sym_throw] = ACTIONS(2795), + [anon_sym_namespace] = ACTIONS(2795), + [anon_sym_static_assert] = ACTIONS(2795), + [anon_sym_concept] = ACTIONS(2795), + [anon_sym_co_return] = ACTIONS(2795), + [anon_sym_co_yield] = ACTIONS(2795), + [anon_sym_R_DQUOTE] = ACTIONS(2797), + [anon_sym_LR_DQUOTE] = ACTIONS(2797), + [anon_sym_uR_DQUOTE] = ACTIONS(2797), + [anon_sym_UR_DQUOTE] = ACTIONS(2797), + [anon_sym_u8R_DQUOTE] = ACTIONS(2797), + [anon_sym_co_await] = ACTIONS(2795), + [anon_sym_new] = ACTIONS(2795), + [anon_sym_requires] = ACTIONS(2795), + [sym_this] = ACTIONS(2795), + }, + [775] = { + [sym_identifier] = ACTIONS(2799), + [aux_sym_preproc_include_token1] = ACTIONS(2799), + [aux_sym_preproc_def_token1] = ACTIONS(2799), + [aux_sym_preproc_if_token1] = ACTIONS(2799), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2799), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2799), + [sym_preproc_directive] = ACTIONS(2799), + [anon_sym_LPAREN2] = ACTIONS(2801), + [anon_sym_BANG] = ACTIONS(2801), + [anon_sym_TILDE] = ACTIONS(2801), + [anon_sym_DASH] = ACTIONS(2799), + [anon_sym_PLUS] = ACTIONS(2799), + [anon_sym_STAR] = ACTIONS(2801), + [anon_sym_AMP_AMP] = ACTIONS(2801), + [anon_sym_AMP] = ACTIONS(2799), + [anon_sym_SEMI] = ACTIONS(2801), + [anon_sym___extension__] = ACTIONS(2799), + [anon_sym_typedef] = ACTIONS(2799), + [anon_sym_virtual] = ACTIONS(2799), + [anon_sym_extern] = ACTIONS(2799), + [anon_sym___attribute__] = ACTIONS(2799), + [anon_sym___attribute] = ACTIONS(2799), + [anon_sym_using] = ACTIONS(2799), + [anon_sym_COLON_COLON] = ACTIONS(2801), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2801), + [anon_sym___declspec] = ACTIONS(2799), + [anon_sym___based] = ACTIONS(2799), + [anon_sym___cdecl] = ACTIONS(2799), + [anon_sym___clrcall] = ACTIONS(2799), + [anon_sym___stdcall] = ACTIONS(2799), + [anon_sym___fastcall] = ACTIONS(2799), + [anon_sym___thiscall] = ACTIONS(2799), + [anon_sym___vectorcall] = ACTIONS(2799), + [anon_sym_LBRACE] = ACTIONS(2801), + [anon_sym_RBRACE] = ACTIONS(2801), + [anon_sym_signed] = ACTIONS(2799), + [anon_sym_unsigned] = ACTIONS(2799), + [anon_sym_long] = ACTIONS(2799), + [anon_sym_short] = ACTIONS(2799), + [anon_sym_LBRACK] = ACTIONS(2799), + [anon_sym_static] = ACTIONS(2799), + [anon_sym_register] = ACTIONS(2799), + [anon_sym_inline] = ACTIONS(2799), + [anon_sym___inline] = ACTIONS(2799), + [anon_sym___inline__] = ACTIONS(2799), + [anon_sym___forceinline] = ACTIONS(2799), + [anon_sym_thread_local] = ACTIONS(2799), + [anon_sym___thread] = ACTIONS(2799), + [anon_sym_const] = ACTIONS(2799), + [anon_sym_constexpr] = ACTIONS(2799), + [anon_sym_volatile] = ACTIONS(2799), + [anon_sym_restrict] = ACTIONS(2799), + [anon_sym___restrict__] = ACTIONS(2799), + [anon_sym__Atomic] = ACTIONS(2799), + [anon_sym__Noreturn] = ACTIONS(2799), + [anon_sym_noreturn] = ACTIONS(2799), + [anon_sym__Nonnull] = ACTIONS(2799), + [anon_sym_mutable] = ACTIONS(2799), + [anon_sym_constinit] = ACTIONS(2799), + [anon_sym_consteval] = ACTIONS(2799), + [anon_sym_alignas] = ACTIONS(2799), + [anon_sym__Alignas] = ACTIONS(2799), + [sym_primitive_type] = ACTIONS(2799), + [anon_sym_enum] = ACTIONS(2799), + [anon_sym_class] = ACTIONS(2799), + [anon_sym_struct] = ACTIONS(2799), + [anon_sym_union] = ACTIONS(2799), + [anon_sym_if] = ACTIONS(2799), + [anon_sym_switch] = ACTIONS(2799), + [anon_sym_case] = ACTIONS(2799), + [anon_sym_default] = ACTIONS(2799), + [anon_sym_while] = ACTIONS(2799), + [anon_sym_do] = ACTIONS(2799), + [anon_sym_for] = ACTIONS(2799), + [anon_sym_return] = ACTIONS(2799), + [anon_sym_break] = ACTIONS(2799), + [anon_sym_continue] = ACTIONS(2799), + [anon_sym_goto] = ACTIONS(2799), + [anon_sym___try] = ACTIONS(2799), + [anon_sym___leave] = ACTIONS(2799), + [anon_sym_not] = ACTIONS(2799), + [anon_sym_compl] = ACTIONS(2799), + [anon_sym_DASH_DASH] = ACTIONS(2801), + [anon_sym_PLUS_PLUS] = ACTIONS(2801), + [anon_sym_sizeof] = ACTIONS(2799), + [anon_sym___alignof__] = ACTIONS(2799), + [anon_sym___alignof] = ACTIONS(2799), + [anon_sym__alignof] = ACTIONS(2799), + [anon_sym_alignof] = ACTIONS(2799), + [anon_sym__Alignof] = ACTIONS(2799), + [anon_sym_offsetof] = ACTIONS(2799), + [anon_sym__Generic] = ACTIONS(2799), + [anon_sym_asm] = ACTIONS(2799), + [anon_sym___asm__] = ACTIONS(2799), + [anon_sym___asm] = ACTIONS(2799), + [sym_number_literal] = ACTIONS(2801), + [anon_sym_L_SQUOTE] = ACTIONS(2801), + [anon_sym_u_SQUOTE] = ACTIONS(2801), + [anon_sym_U_SQUOTE] = ACTIONS(2801), + [anon_sym_u8_SQUOTE] = ACTIONS(2801), + [anon_sym_SQUOTE] = ACTIONS(2801), + [anon_sym_L_DQUOTE] = ACTIONS(2801), + [anon_sym_u_DQUOTE] = ACTIONS(2801), + [anon_sym_U_DQUOTE] = ACTIONS(2801), + [anon_sym_u8_DQUOTE] = ACTIONS(2801), + [anon_sym_DQUOTE] = ACTIONS(2801), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [anon_sym_NULL] = ACTIONS(2799), + [anon_sym_nullptr] = ACTIONS(2799), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2799), + [anon_sym_decltype] = ACTIONS(2799), + [anon_sym_explicit] = ACTIONS(2799), + [anon_sym_typename] = ACTIONS(2799), + [anon_sym_template] = ACTIONS(2799), + [anon_sym_operator] = ACTIONS(2799), + [anon_sym_try] = ACTIONS(2799), + [anon_sym_delete] = ACTIONS(2799), + [anon_sym_throw] = ACTIONS(2799), + [anon_sym_namespace] = ACTIONS(2799), + [anon_sym_static_assert] = ACTIONS(2799), + [anon_sym_concept] = ACTIONS(2799), + [anon_sym_co_return] = ACTIONS(2799), + [anon_sym_co_yield] = ACTIONS(2799), + [anon_sym_R_DQUOTE] = ACTIONS(2801), + [anon_sym_LR_DQUOTE] = ACTIONS(2801), + [anon_sym_uR_DQUOTE] = ACTIONS(2801), + [anon_sym_UR_DQUOTE] = ACTIONS(2801), + [anon_sym_u8R_DQUOTE] = ACTIONS(2801), + [anon_sym_co_await] = ACTIONS(2799), + [anon_sym_new] = ACTIONS(2799), + [anon_sym_requires] = ACTIONS(2799), + [sym_this] = ACTIONS(2799), }, - [742] = { - [sym_identifier] = ACTIONS(2947), - [aux_sym_preproc_include_token1] = ACTIONS(2947), - [aux_sym_preproc_def_token1] = ACTIONS(2947), - [aux_sym_preproc_if_token1] = ACTIONS(2947), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2947), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2947), - [sym_preproc_directive] = ACTIONS(2947), - [anon_sym_LPAREN2] = ACTIONS(2949), - [anon_sym_BANG] = ACTIONS(2949), - [anon_sym_TILDE] = ACTIONS(2949), - [anon_sym_DASH] = ACTIONS(2947), - [anon_sym_PLUS] = ACTIONS(2947), - [anon_sym_STAR] = ACTIONS(2949), - [anon_sym_AMP_AMP] = ACTIONS(2949), - [anon_sym_AMP] = ACTIONS(2947), - [anon_sym_SEMI] = ACTIONS(2949), - [anon_sym___extension__] = ACTIONS(2947), - [anon_sym_typedef] = ACTIONS(2947), - [anon_sym_virtual] = ACTIONS(2947), - [anon_sym_extern] = ACTIONS(2947), - [anon_sym___attribute__] = ACTIONS(2947), - [anon_sym___attribute] = ACTIONS(2947), - [anon_sym_using] = ACTIONS(2947), - [anon_sym_COLON_COLON] = ACTIONS(2949), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2949), - [anon_sym___declspec] = ACTIONS(2947), - [anon_sym___based] = ACTIONS(2947), - [anon_sym___cdecl] = ACTIONS(2947), - [anon_sym___clrcall] = ACTIONS(2947), - [anon_sym___stdcall] = ACTIONS(2947), - [anon_sym___fastcall] = ACTIONS(2947), - [anon_sym___thiscall] = ACTIONS(2947), - [anon_sym___vectorcall] = ACTIONS(2947), - [anon_sym_LBRACE] = ACTIONS(2949), - [anon_sym_RBRACE] = ACTIONS(2949), - [anon_sym_signed] = ACTIONS(2947), - [anon_sym_unsigned] = ACTIONS(2947), - [anon_sym_long] = ACTIONS(2947), - [anon_sym_short] = ACTIONS(2947), - [anon_sym_LBRACK] = ACTIONS(2947), - [anon_sym_static] = ACTIONS(2947), - [anon_sym_register] = ACTIONS(2947), - [anon_sym_inline] = ACTIONS(2947), - [anon_sym___inline] = ACTIONS(2947), - [anon_sym___inline__] = ACTIONS(2947), - [anon_sym___forceinline] = ACTIONS(2947), - [anon_sym_thread_local] = ACTIONS(2947), - [anon_sym___thread] = ACTIONS(2947), - [anon_sym_const] = ACTIONS(2947), - [anon_sym_constexpr] = ACTIONS(2947), - [anon_sym_volatile] = ACTIONS(2947), - [anon_sym_restrict] = ACTIONS(2947), - [anon_sym___restrict__] = ACTIONS(2947), - [anon_sym__Atomic] = ACTIONS(2947), - [anon_sym__Noreturn] = ACTIONS(2947), - [anon_sym_noreturn] = ACTIONS(2947), - [anon_sym__Nonnull] = ACTIONS(2947), - [anon_sym_mutable] = ACTIONS(2947), - [anon_sym_constinit] = ACTIONS(2947), - [anon_sym_consteval] = ACTIONS(2947), - [anon_sym_alignas] = ACTIONS(2947), - [anon_sym__Alignas] = ACTIONS(2947), - [sym_primitive_type] = ACTIONS(2947), - [anon_sym_enum] = ACTIONS(2947), - [anon_sym_class] = ACTIONS(2947), - [anon_sym_struct] = ACTIONS(2947), - [anon_sym_union] = ACTIONS(2947), - [anon_sym_if] = ACTIONS(2947), - [anon_sym_switch] = ACTIONS(2947), - [anon_sym_case] = ACTIONS(2947), - [anon_sym_default] = ACTIONS(2947), - [anon_sym_while] = ACTIONS(2947), - [anon_sym_do] = ACTIONS(2947), - [anon_sym_for] = ACTIONS(2947), - [anon_sym_return] = ACTIONS(2947), - [anon_sym_break] = ACTIONS(2947), - [anon_sym_continue] = ACTIONS(2947), - [anon_sym_goto] = ACTIONS(2947), - [anon_sym___try] = ACTIONS(2947), - [anon_sym___leave] = ACTIONS(2947), - [anon_sym_not] = ACTIONS(2947), - [anon_sym_compl] = ACTIONS(2947), - [anon_sym_DASH_DASH] = ACTIONS(2949), - [anon_sym_PLUS_PLUS] = ACTIONS(2949), - [anon_sym_sizeof] = ACTIONS(2947), - [anon_sym___alignof__] = ACTIONS(2947), - [anon_sym___alignof] = ACTIONS(2947), - [anon_sym__alignof] = ACTIONS(2947), - [anon_sym_alignof] = ACTIONS(2947), - [anon_sym__Alignof] = ACTIONS(2947), - [anon_sym_offsetof] = ACTIONS(2947), - [anon_sym__Generic] = ACTIONS(2947), - [anon_sym_asm] = ACTIONS(2947), - [anon_sym___asm__] = ACTIONS(2947), - [anon_sym___asm] = ACTIONS(2947), - [sym_number_literal] = ACTIONS(2949), - [anon_sym_L_SQUOTE] = ACTIONS(2949), - [anon_sym_u_SQUOTE] = ACTIONS(2949), - [anon_sym_U_SQUOTE] = ACTIONS(2949), - [anon_sym_u8_SQUOTE] = ACTIONS(2949), - [anon_sym_SQUOTE] = ACTIONS(2949), - [anon_sym_L_DQUOTE] = ACTIONS(2949), - [anon_sym_u_DQUOTE] = ACTIONS(2949), - [anon_sym_U_DQUOTE] = ACTIONS(2949), - [anon_sym_u8_DQUOTE] = ACTIONS(2949), - [anon_sym_DQUOTE] = ACTIONS(2949), - [sym_true] = ACTIONS(2947), - [sym_false] = ACTIONS(2947), - [anon_sym_NULL] = ACTIONS(2947), - [anon_sym_nullptr] = ACTIONS(2947), + [776] = { + [sym_identifier] = ACTIONS(2803), + [aux_sym_preproc_include_token1] = ACTIONS(2803), + [aux_sym_preproc_def_token1] = ACTIONS(2803), + [aux_sym_preproc_if_token1] = ACTIONS(2803), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2803), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2803), + [sym_preproc_directive] = ACTIONS(2803), + [anon_sym_LPAREN2] = ACTIONS(2805), + [anon_sym_BANG] = ACTIONS(2805), + [anon_sym_TILDE] = ACTIONS(2805), + [anon_sym_DASH] = ACTIONS(2803), + [anon_sym_PLUS] = ACTIONS(2803), + [anon_sym_STAR] = ACTIONS(2805), + [anon_sym_AMP_AMP] = ACTIONS(2805), + [anon_sym_AMP] = ACTIONS(2803), + [anon_sym_SEMI] = ACTIONS(2805), + [anon_sym___extension__] = ACTIONS(2803), + [anon_sym_typedef] = ACTIONS(2803), + [anon_sym_virtual] = ACTIONS(2803), + [anon_sym_extern] = ACTIONS(2803), + [anon_sym___attribute__] = ACTIONS(2803), + [anon_sym___attribute] = ACTIONS(2803), + [anon_sym_using] = ACTIONS(2803), + [anon_sym_COLON_COLON] = ACTIONS(2805), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2805), + [anon_sym___declspec] = ACTIONS(2803), + [anon_sym___based] = ACTIONS(2803), + [anon_sym___cdecl] = ACTIONS(2803), + [anon_sym___clrcall] = ACTIONS(2803), + [anon_sym___stdcall] = ACTIONS(2803), + [anon_sym___fastcall] = ACTIONS(2803), + [anon_sym___thiscall] = ACTIONS(2803), + [anon_sym___vectorcall] = ACTIONS(2803), + [anon_sym_LBRACE] = ACTIONS(2805), + [anon_sym_RBRACE] = ACTIONS(2805), + [anon_sym_signed] = ACTIONS(2803), + [anon_sym_unsigned] = ACTIONS(2803), + [anon_sym_long] = ACTIONS(2803), + [anon_sym_short] = ACTIONS(2803), + [anon_sym_LBRACK] = ACTIONS(2803), + [anon_sym_static] = ACTIONS(2803), + [anon_sym_register] = ACTIONS(2803), + [anon_sym_inline] = ACTIONS(2803), + [anon_sym___inline] = ACTIONS(2803), + [anon_sym___inline__] = ACTIONS(2803), + [anon_sym___forceinline] = ACTIONS(2803), + [anon_sym_thread_local] = ACTIONS(2803), + [anon_sym___thread] = ACTIONS(2803), + [anon_sym_const] = ACTIONS(2803), + [anon_sym_constexpr] = ACTIONS(2803), + [anon_sym_volatile] = ACTIONS(2803), + [anon_sym_restrict] = ACTIONS(2803), + [anon_sym___restrict__] = ACTIONS(2803), + [anon_sym__Atomic] = ACTIONS(2803), + [anon_sym__Noreturn] = ACTIONS(2803), + [anon_sym_noreturn] = ACTIONS(2803), + [anon_sym__Nonnull] = ACTIONS(2803), + [anon_sym_mutable] = ACTIONS(2803), + [anon_sym_constinit] = ACTIONS(2803), + [anon_sym_consteval] = ACTIONS(2803), + [anon_sym_alignas] = ACTIONS(2803), + [anon_sym__Alignas] = ACTIONS(2803), + [sym_primitive_type] = ACTIONS(2803), + [anon_sym_enum] = ACTIONS(2803), + [anon_sym_class] = ACTIONS(2803), + [anon_sym_struct] = ACTIONS(2803), + [anon_sym_union] = ACTIONS(2803), + [anon_sym_if] = ACTIONS(2803), + [anon_sym_switch] = ACTIONS(2803), + [anon_sym_case] = ACTIONS(2803), + [anon_sym_default] = ACTIONS(2803), + [anon_sym_while] = ACTIONS(2803), + [anon_sym_do] = ACTIONS(2803), + [anon_sym_for] = ACTIONS(2803), + [anon_sym_return] = ACTIONS(2803), + [anon_sym_break] = ACTIONS(2803), + [anon_sym_continue] = ACTIONS(2803), + [anon_sym_goto] = ACTIONS(2803), + [anon_sym___try] = ACTIONS(2803), + [anon_sym___leave] = ACTIONS(2803), + [anon_sym_not] = ACTIONS(2803), + [anon_sym_compl] = ACTIONS(2803), + [anon_sym_DASH_DASH] = ACTIONS(2805), + [anon_sym_PLUS_PLUS] = ACTIONS(2805), + [anon_sym_sizeof] = ACTIONS(2803), + [anon_sym___alignof__] = ACTIONS(2803), + [anon_sym___alignof] = ACTIONS(2803), + [anon_sym__alignof] = ACTIONS(2803), + [anon_sym_alignof] = ACTIONS(2803), + [anon_sym__Alignof] = ACTIONS(2803), + [anon_sym_offsetof] = ACTIONS(2803), + [anon_sym__Generic] = ACTIONS(2803), + [anon_sym_asm] = ACTIONS(2803), + [anon_sym___asm__] = ACTIONS(2803), + [anon_sym___asm] = ACTIONS(2803), + [sym_number_literal] = ACTIONS(2805), + [anon_sym_L_SQUOTE] = ACTIONS(2805), + [anon_sym_u_SQUOTE] = ACTIONS(2805), + [anon_sym_U_SQUOTE] = ACTIONS(2805), + [anon_sym_u8_SQUOTE] = ACTIONS(2805), + [anon_sym_SQUOTE] = ACTIONS(2805), + [anon_sym_L_DQUOTE] = ACTIONS(2805), + [anon_sym_u_DQUOTE] = ACTIONS(2805), + [anon_sym_U_DQUOTE] = ACTIONS(2805), + [anon_sym_u8_DQUOTE] = ACTIONS(2805), + [anon_sym_DQUOTE] = ACTIONS(2805), + [sym_true] = ACTIONS(2803), + [sym_false] = ACTIONS(2803), + [anon_sym_NULL] = ACTIONS(2803), + [anon_sym_nullptr] = ACTIONS(2803), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2947), - [anon_sym_decltype] = ACTIONS(2947), - [anon_sym_explicit] = ACTIONS(2947), - [anon_sym_typename] = ACTIONS(2947), - [anon_sym_template] = ACTIONS(2947), - [anon_sym_operator] = ACTIONS(2947), - [anon_sym_try] = ACTIONS(2947), - [anon_sym_delete] = ACTIONS(2947), - [anon_sym_throw] = ACTIONS(2947), - [anon_sym_namespace] = ACTIONS(2947), - [anon_sym_static_assert] = ACTIONS(2947), - [anon_sym_concept] = ACTIONS(2947), - [anon_sym_co_return] = ACTIONS(2947), - [anon_sym_co_yield] = ACTIONS(2947), - [anon_sym_R_DQUOTE] = ACTIONS(2949), - [anon_sym_LR_DQUOTE] = ACTIONS(2949), - [anon_sym_uR_DQUOTE] = ACTIONS(2949), - [anon_sym_UR_DQUOTE] = ACTIONS(2949), - [anon_sym_u8R_DQUOTE] = ACTIONS(2949), - [anon_sym_co_await] = ACTIONS(2947), - [anon_sym_new] = ACTIONS(2947), - [anon_sym_requires] = ACTIONS(2947), - [sym_this] = ACTIONS(2947), + [sym_auto] = ACTIONS(2803), + [anon_sym_decltype] = ACTIONS(2803), + [anon_sym_explicit] = ACTIONS(2803), + [anon_sym_typename] = ACTIONS(2803), + [anon_sym_template] = ACTIONS(2803), + [anon_sym_operator] = ACTIONS(2803), + [anon_sym_try] = ACTIONS(2803), + [anon_sym_delete] = ACTIONS(2803), + [anon_sym_throw] = ACTIONS(2803), + [anon_sym_namespace] = ACTIONS(2803), + [anon_sym_static_assert] = ACTIONS(2803), + [anon_sym_concept] = ACTIONS(2803), + [anon_sym_co_return] = ACTIONS(2803), + [anon_sym_co_yield] = ACTIONS(2803), + [anon_sym_R_DQUOTE] = ACTIONS(2805), + [anon_sym_LR_DQUOTE] = ACTIONS(2805), + [anon_sym_uR_DQUOTE] = ACTIONS(2805), + [anon_sym_UR_DQUOTE] = ACTIONS(2805), + [anon_sym_u8R_DQUOTE] = ACTIONS(2805), + [anon_sym_co_await] = ACTIONS(2803), + [anon_sym_new] = ACTIONS(2803), + [anon_sym_requires] = ACTIONS(2803), + [sym_this] = ACTIONS(2803), }, - [743] = { - [sym_identifier] = ACTIONS(2951), - [aux_sym_preproc_include_token1] = ACTIONS(2951), - [aux_sym_preproc_def_token1] = ACTIONS(2951), - [aux_sym_preproc_if_token1] = ACTIONS(2951), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2951), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2951), - [sym_preproc_directive] = ACTIONS(2951), - [anon_sym_LPAREN2] = ACTIONS(2953), - [anon_sym_BANG] = ACTIONS(2953), - [anon_sym_TILDE] = ACTIONS(2953), - [anon_sym_DASH] = ACTIONS(2951), - [anon_sym_PLUS] = ACTIONS(2951), - [anon_sym_STAR] = ACTIONS(2953), - [anon_sym_AMP_AMP] = ACTIONS(2953), - [anon_sym_AMP] = ACTIONS(2951), - [anon_sym_SEMI] = ACTIONS(2953), - [anon_sym___extension__] = ACTIONS(2951), - [anon_sym_typedef] = ACTIONS(2951), - [anon_sym_virtual] = ACTIONS(2951), - [anon_sym_extern] = ACTIONS(2951), - [anon_sym___attribute__] = ACTIONS(2951), - [anon_sym___attribute] = ACTIONS(2951), - [anon_sym_using] = ACTIONS(2951), - [anon_sym_COLON_COLON] = ACTIONS(2953), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2953), - [anon_sym___declspec] = ACTIONS(2951), - [anon_sym___based] = ACTIONS(2951), - [anon_sym___cdecl] = ACTIONS(2951), - [anon_sym___clrcall] = ACTIONS(2951), - [anon_sym___stdcall] = ACTIONS(2951), - [anon_sym___fastcall] = ACTIONS(2951), - [anon_sym___thiscall] = ACTIONS(2951), - [anon_sym___vectorcall] = ACTIONS(2951), - [anon_sym_LBRACE] = ACTIONS(2953), - [anon_sym_RBRACE] = ACTIONS(2953), - [anon_sym_signed] = ACTIONS(2951), - [anon_sym_unsigned] = ACTIONS(2951), - [anon_sym_long] = ACTIONS(2951), - [anon_sym_short] = ACTIONS(2951), - [anon_sym_LBRACK] = ACTIONS(2951), - [anon_sym_static] = ACTIONS(2951), - [anon_sym_register] = ACTIONS(2951), - [anon_sym_inline] = ACTIONS(2951), - [anon_sym___inline] = ACTIONS(2951), - [anon_sym___inline__] = ACTIONS(2951), - [anon_sym___forceinline] = ACTIONS(2951), - [anon_sym_thread_local] = ACTIONS(2951), - [anon_sym___thread] = ACTIONS(2951), - [anon_sym_const] = ACTIONS(2951), - [anon_sym_constexpr] = ACTIONS(2951), - [anon_sym_volatile] = ACTIONS(2951), - [anon_sym_restrict] = ACTIONS(2951), - [anon_sym___restrict__] = ACTIONS(2951), - [anon_sym__Atomic] = ACTIONS(2951), - [anon_sym__Noreturn] = ACTIONS(2951), - [anon_sym_noreturn] = ACTIONS(2951), - [anon_sym__Nonnull] = ACTIONS(2951), - [anon_sym_mutable] = ACTIONS(2951), - [anon_sym_constinit] = ACTIONS(2951), - [anon_sym_consteval] = ACTIONS(2951), - [anon_sym_alignas] = ACTIONS(2951), - [anon_sym__Alignas] = ACTIONS(2951), - [sym_primitive_type] = ACTIONS(2951), - [anon_sym_enum] = ACTIONS(2951), - [anon_sym_class] = ACTIONS(2951), - [anon_sym_struct] = ACTIONS(2951), - [anon_sym_union] = ACTIONS(2951), - [anon_sym_if] = ACTIONS(2951), - [anon_sym_switch] = ACTIONS(2951), - [anon_sym_case] = ACTIONS(2951), - [anon_sym_default] = ACTIONS(2951), - [anon_sym_while] = ACTIONS(2951), - [anon_sym_do] = ACTIONS(2951), - [anon_sym_for] = ACTIONS(2951), - [anon_sym_return] = ACTIONS(2951), - [anon_sym_break] = ACTIONS(2951), - [anon_sym_continue] = ACTIONS(2951), - [anon_sym_goto] = ACTIONS(2951), - [anon_sym___try] = ACTIONS(2951), - [anon_sym___leave] = ACTIONS(2951), - [anon_sym_not] = ACTIONS(2951), - [anon_sym_compl] = ACTIONS(2951), - [anon_sym_DASH_DASH] = ACTIONS(2953), - [anon_sym_PLUS_PLUS] = ACTIONS(2953), - [anon_sym_sizeof] = ACTIONS(2951), - [anon_sym___alignof__] = ACTIONS(2951), - [anon_sym___alignof] = ACTIONS(2951), - [anon_sym__alignof] = ACTIONS(2951), - [anon_sym_alignof] = ACTIONS(2951), - [anon_sym__Alignof] = ACTIONS(2951), - [anon_sym_offsetof] = ACTIONS(2951), - [anon_sym__Generic] = ACTIONS(2951), - [anon_sym_asm] = ACTIONS(2951), - [anon_sym___asm__] = ACTIONS(2951), - [anon_sym___asm] = ACTIONS(2951), - [sym_number_literal] = ACTIONS(2953), - [anon_sym_L_SQUOTE] = ACTIONS(2953), - [anon_sym_u_SQUOTE] = ACTIONS(2953), - [anon_sym_U_SQUOTE] = ACTIONS(2953), - [anon_sym_u8_SQUOTE] = ACTIONS(2953), - [anon_sym_SQUOTE] = ACTIONS(2953), - [anon_sym_L_DQUOTE] = ACTIONS(2953), - [anon_sym_u_DQUOTE] = ACTIONS(2953), - [anon_sym_U_DQUOTE] = ACTIONS(2953), - [anon_sym_u8_DQUOTE] = ACTIONS(2953), - [anon_sym_DQUOTE] = ACTIONS(2953), - [sym_true] = ACTIONS(2951), - [sym_false] = ACTIONS(2951), - [anon_sym_NULL] = ACTIONS(2951), - [anon_sym_nullptr] = ACTIONS(2951), + [777] = { + [sym_identifier] = ACTIONS(2807), + [aux_sym_preproc_include_token1] = ACTIONS(2807), + [aux_sym_preproc_def_token1] = ACTIONS(2807), + [aux_sym_preproc_if_token1] = ACTIONS(2807), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2807), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2807), + [sym_preproc_directive] = ACTIONS(2807), + [anon_sym_LPAREN2] = ACTIONS(2809), + [anon_sym_BANG] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2809), + [anon_sym_DASH] = ACTIONS(2807), + [anon_sym_PLUS] = ACTIONS(2807), + [anon_sym_STAR] = ACTIONS(2809), + [anon_sym_AMP_AMP] = ACTIONS(2809), + [anon_sym_AMP] = ACTIONS(2807), + [anon_sym_SEMI] = ACTIONS(2809), + [anon_sym___extension__] = ACTIONS(2807), + [anon_sym_typedef] = ACTIONS(2807), + [anon_sym_virtual] = ACTIONS(2807), + [anon_sym_extern] = ACTIONS(2807), + [anon_sym___attribute__] = ACTIONS(2807), + [anon_sym___attribute] = ACTIONS(2807), + [anon_sym_using] = ACTIONS(2807), + [anon_sym_COLON_COLON] = ACTIONS(2809), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2809), + [anon_sym___declspec] = ACTIONS(2807), + [anon_sym___based] = ACTIONS(2807), + [anon_sym___cdecl] = ACTIONS(2807), + [anon_sym___clrcall] = ACTIONS(2807), + [anon_sym___stdcall] = ACTIONS(2807), + [anon_sym___fastcall] = ACTIONS(2807), + [anon_sym___thiscall] = ACTIONS(2807), + [anon_sym___vectorcall] = ACTIONS(2807), + [anon_sym_LBRACE] = ACTIONS(2809), + [anon_sym_RBRACE] = ACTIONS(2809), + [anon_sym_signed] = ACTIONS(2807), + [anon_sym_unsigned] = ACTIONS(2807), + [anon_sym_long] = ACTIONS(2807), + [anon_sym_short] = ACTIONS(2807), + [anon_sym_LBRACK] = ACTIONS(2807), + [anon_sym_static] = ACTIONS(2807), + [anon_sym_register] = ACTIONS(2807), + [anon_sym_inline] = ACTIONS(2807), + [anon_sym___inline] = ACTIONS(2807), + [anon_sym___inline__] = ACTIONS(2807), + [anon_sym___forceinline] = ACTIONS(2807), + [anon_sym_thread_local] = ACTIONS(2807), + [anon_sym___thread] = ACTIONS(2807), + [anon_sym_const] = ACTIONS(2807), + [anon_sym_constexpr] = ACTIONS(2807), + [anon_sym_volatile] = ACTIONS(2807), + [anon_sym_restrict] = ACTIONS(2807), + [anon_sym___restrict__] = ACTIONS(2807), + [anon_sym__Atomic] = ACTIONS(2807), + [anon_sym__Noreturn] = ACTIONS(2807), + [anon_sym_noreturn] = ACTIONS(2807), + [anon_sym__Nonnull] = ACTIONS(2807), + [anon_sym_mutable] = ACTIONS(2807), + [anon_sym_constinit] = ACTIONS(2807), + [anon_sym_consteval] = ACTIONS(2807), + [anon_sym_alignas] = ACTIONS(2807), + [anon_sym__Alignas] = ACTIONS(2807), + [sym_primitive_type] = ACTIONS(2807), + [anon_sym_enum] = ACTIONS(2807), + [anon_sym_class] = ACTIONS(2807), + [anon_sym_struct] = ACTIONS(2807), + [anon_sym_union] = ACTIONS(2807), + [anon_sym_if] = ACTIONS(2807), + [anon_sym_switch] = ACTIONS(2807), + [anon_sym_case] = ACTIONS(2807), + [anon_sym_default] = ACTIONS(2807), + [anon_sym_while] = ACTIONS(2807), + [anon_sym_do] = ACTIONS(2807), + [anon_sym_for] = ACTIONS(2807), + [anon_sym_return] = ACTIONS(2807), + [anon_sym_break] = ACTIONS(2807), + [anon_sym_continue] = ACTIONS(2807), + [anon_sym_goto] = ACTIONS(2807), + [anon_sym___try] = ACTIONS(2807), + [anon_sym___leave] = ACTIONS(2807), + [anon_sym_not] = ACTIONS(2807), + [anon_sym_compl] = ACTIONS(2807), + [anon_sym_DASH_DASH] = ACTIONS(2809), + [anon_sym_PLUS_PLUS] = ACTIONS(2809), + [anon_sym_sizeof] = ACTIONS(2807), + [anon_sym___alignof__] = ACTIONS(2807), + [anon_sym___alignof] = ACTIONS(2807), + [anon_sym__alignof] = ACTIONS(2807), + [anon_sym_alignof] = ACTIONS(2807), + [anon_sym__Alignof] = ACTIONS(2807), + [anon_sym_offsetof] = ACTIONS(2807), + [anon_sym__Generic] = ACTIONS(2807), + [anon_sym_asm] = ACTIONS(2807), + [anon_sym___asm__] = ACTIONS(2807), + [anon_sym___asm] = ACTIONS(2807), + [sym_number_literal] = ACTIONS(2809), + [anon_sym_L_SQUOTE] = ACTIONS(2809), + [anon_sym_u_SQUOTE] = ACTIONS(2809), + [anon_sym_U_SQUOTE] = ACTIONS(2809), + [anon_sym_u8_SQUOTE] = ACTIONS(2809), + [anon_sym_SQUOTE] = ACTIONS(2809), + [anon_sym_L_DQUOTE] = ACTIONS(2809), + [anon_sym_u_DQUOTE] = ACTIONS(2809), + [anon_sym_U_DQUOTE] = ACTIONS(2809), + [anon_sym_u8_DQUOTE] = ACTIONS(2809), + [anon_sym_DQUOTE] = ACTIONS(2809), + [sym_true] = ACTIONS(2807), + [sym_false] = ACTIONS(2807), + [anon_sym_NULL] = ACTIONS(2807), + [anon_sym_nullptr] = ACTIONS(2807), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2951), - [anon_sym_decltype] = ACTIONS(2951), - [anon_sym_explicit] = ACTIONS(2951), - [anon_sym_typename] = ACTIONS(2951), - [anon_sym_template] = ACTIONS(2951), - [anon_sym_operator] = ACTIONS(2951), - [anon_sym_try] = ACTIONS(2951), - [anon_sym_delete] = ACTIONS(2951), - [anon_sym_throw] = ACTIONS(2951), - [anon_sym_namespace] = ACTIONS(2951), - [anon_sym_static_assert] = ACTIONS(2951), - [anon_sym_concept] = ACTIONS(2951), - [anon_sym_co_return] = ACTIONS(2951), - [anon_sym_co_yield] = ACTIONS(2951), - [anon_sym_R_DQUOTE] = ACTIONS(2953), - [anon_sym_LR_DQUOTE] = ACTIONS(2953), - [anon_sym_uR_DQUOTE] = ACTIONS(2953), - [anon_sym_UR_DQUOTE] = ACTIONS(2953), - [anon_sym_u8R_DQUOTE] = ACTIONS(2953), - [anon_sym_co_await] = ACTIONS(2951), - [anon_sym_new] = ACTIONS(2951), - [anon_sym_requires] = ACTIONS(2951), - [sym_this] = ACTIONS(2951), + [sym_auto] = ACTIONS(2807), + [anon_sym_decltype] = ACTIONS(2807), + [anon_sym_explicit] = ACTIONS(2807), + [anon_sym_typename] = ACTIONS(2807), + [anon_sym_template] = ACTIONS(2807), + [anon_sym_operator] = ACTIONS(2807), + [anon_sym_try] = ACTIONS(2807), + [anon_sym_delete] = ACTIONS(2807), + [anon_sym_throw] = ACTIONS(2807), + [anon_sym_namespace] = ACTIONS(2807), + [anon_sym_static_assert] = ACTIONS(2807), + [anon_sym_concept] = ACTIONS(2807), + [anon_sym_co_return] = ACTIONS(2807), + [anon_sym_co_yield] = ACTIONS(2807), + [anon_sym_R_DQUOTE] = ACTIONS(2809), + [anon_sym_LR_DQUOTE] = ACTIONS(2809), + [anon_sym_uR_DQUOTE] = ACTIONS(2809), + [anon_sym_UR_DQUOTE] = ACTIONS(2809), + [anon_sym_u8R_DQUOTE] = ACTIONS(2809), + [anon_sym_co_await] = ACTIONS(2807), + [anon_sym_new] = ACTIONS(2807), + [anon_sym_requires] = ACTIONS(2807), + [sym_this] = ACTIONS(2807), }, - [744] = { - [sym_identifier] = ACTIONS(2955), - [aux_sym_preproc_include_token1] = ACTIONS(2955), - [aux_sym_preproc_def_token1] = ACTIONS(2955), - [aux_sym_preproc_if_token1] = ACTIONS(2955), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2955), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2955), - [sym_preproc_directive] = ACTIONS(2955), - [anon_sym_LPAREN2] = ACTIONS(2957), - [anon_sym_BANG] = ACTIONS(2957), - [anon_sym_TILDE] = ACTIONS(2957), - [anon_sym_DASH] = ACTIONS(2955), - [anon_sym_PLUS] = ACTIONS(2955), - [anon_sym_STAR] = ACTIONS(2957), - [anon_sym_AMP_AMP] = ACTIONS(2957), - [anon_sym_AMP] = ACTIONS(2955), - [anon_sym_SEMI] = ACTIONS(2957), - [anon_sym___extension__] = ACTIONS(2955), - [anon_sym_typedef] = ACTIONS(2955), - [anon_sym_virtual] = ACTIONS(2955), - [anon_sym_extern] = ACTIONS(2955), - [anon_sym___attribute__] = ACTIONS(2955), - [anon_sym___attribute] = ACTIONS(2955), - [anon_sym_using] = ACTIONS(2955), - [anon_sym_COLON_COLON] = ACTIONS(2957), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2957), - [anon_sym___declspec] = ACTIONS(2955), - [anon_sym___based] = ACTIONS(2955), - [anon_sym___cdecl] = ACTIONS(2955), - [anon_sym___clrcall] = ACTIONS(2955), - [anon_sym___stdcall] = ACTIONS(2955), - [anon_sym___fastcall] = ACTIONS(2955), - [anon_sym___thiscall] = ACTIONS(2955), - [anon_sym___vectorcall] = ACTIONS(2955), - [anon_sym_LBRACE] = ACTIONS(2957), - [anon_sym_RBRACE] = ACTIONS(2957), - [anon_sym_signed] = ACTIONS(2955), - [anon_sym_unsigned] = ACTIONS(2955), - [anon_sym_long] = ACTIONS(2955), - [anon_sym_short] = ACTIONS(2955), - [anon_sym_LBRACK] = ACTIONS(2955), - [anon_sym_static] = ACTIONS(2955), - [anon_sym_register] = ACTIONS(2955), - [anon_sym_inline] = ACTIONS(2955), - [anon_sym___inline] = ACTIONS(2955), - [anon_sym___inline__] = ACTIONS(2955), - [anon_sym___forceinline] = ACTIONS(2955), - [anon_sym_thread_local] = ACTIONS(2955), - [anon_sym___thread] = ACTIONS(2955), - [anon_sym_const] = ACTIONS(2955), - [anon_sym_constexpr] = ACTIONS(2955), - [anon_sym_volatile] = ACTIONS(2955), - [anon_sym_restrict] = ACTIONS(2955), - [anon_sym___restrict__] = ACTIONS(2955), - [anon_sym__Atomic] = ACTIONS(2955), - [anon_sym__Noreturn] = ACTIONS(2955), - [anon_sym_noreturn] = ACTIONS(2955), - [anon_sym__Nonnull] = ACTIONS(2955), - [anon_sym_mutable] = ACTIONS(2955), - [anon_sym_constinit] = ACTIONS(2955), - [anon_sym_consteval] = ACTIONS(2955), - [anon_sym_alignas] = ACTIONS(2955), - [anon_sym__Alignas] = ACTIONS(2955), - [sym_primitive_type] = ACTIONS(2955), - [anon_sym_enum] = ACTIONS(2955), - [anon_sym_class] = ACTIONS(2955), - [anon_sym_struct] = ACTIONS(2955), - [anon_sym_union] = ACTIONS(2955), - [anon_sym_if] = ACTIONS(2955), - [anon_sym_switch] = ACTIONS(2955), - [anon_sym_case] = ACTIONS(2955), - [anon_sym_default] = ACTIONS(2955), - [anon_sym_while] = ACTIONS(2955), - [anon_sym_do] = ACTIONS(2955), - [anon_sym_for] = ACTIONS(2955), - [anon_sym_return] = ACTIONS(2955), - [anon_sym_break] = ACTIONS(2955), - [anon_sym_continue] = ACTIONS(2955), - [anon_sym_goto] = ACTIONS(2955), - [anon_sym___try] = ACTIONS(2955), - [anon_sym___leave] = ACTIONS(2955), - [anon_sym_not] = ACTIONS(2955), - [anon_sym_compl] = ACTIONS(2955), - [anon_sym_DASH_DASH] = ACTIONS(2957), - [anon_sym_PLUS_PLUS] = ACTIONS(2957), - [anon_sym_sizeof] = ACTIONS(2955), - [anon_sym___alignof__] = ACTIONS(2955), - [anon_sym___alignof] = ACTIONS(2955), - [anon_sym__alignof] = ACTIONS(2955), - [anon_sym_alignof] = ACTIONS(2955), - [anon_sym__Alignof] = ACTIONS(2955), - [anon_sym_offsetof] = ACTIONS(2955), - [anon_sym__Generic] = ACTIONS(2955), - [anon_sym_asm] = ACTIONS(2955), - [anon_sym___asm__] = ACTIONS(2955), - [anon_sym___asm] = ACTIONS(2955), - [sym_number_literal] = ACTIONS(2957), - [anon_sym_L_SQUOTE] = ACTIONS(2957), - [anon_sym_u_SQUOTE] = ACTIONS(2957), - [anon_sym_U_SQUOTE] = ACTIONS(2957), - [anon_sym_u8_SQUOTE] = ACTIONS(2957), - [anon_sym_SQUOTE] = ACTIONS(2957), - [anon_sym_L_DQUOTE] = ACTIONS(2957), - [anon_sym_u_DQUOTE] = ACTIONS(2957), - [anon_sym_U_DQUOTE] = ACTIONS(2957), - [anon_sym_u8_DQUOTE] = ACTIONS(2957), - [anon_sym_DQUOTE] = ACTIONS(2957), - [sym_true] = ACTIONS(2955), - [sym_false] = ACTIONS(2955), - [anon_sym_NULL] = ACTIONS(2955), - [anon_sym_nullptr] = ACTIONS(2955), + [778] = { + [sym_identifier] = ACTIONS(2811), + [aux_sym_preproc_include_token1] = ACTIONS(2811), + [aux_sym_preproc_def_token1] = ACTIONS(2811), + [aux_sym_preproc_if_token1] = ACTIONS(2811), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2811), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2811), + [sym_preproc_directive] = ACTIONS(2811), + [anon_sym_LPAREN2] = ACTIONS(2813), + [anon_sym_BANG] = ACTIONS(2813), + [anon_sym_TILDE] = ACTIONS(2813), + [anon_sym_DASH] = ACTIONS(2811), + [anon_sym_PLUS] = ACTIONS(2811), + [anon_sym_STAR] = ACTIONS(2813), + [anon_sym_AMP_AMP] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2811), + [anon_sym_SEMI] = ACTIONS(2813), + [anon_sym___extension__] = ACTIONS(2811), + [anon_sym_typedef] = ACTIONS(2811), + [anon_sym_virtual] = ACTIONS(2811), + [anon_sym_extern] = ACTIONS(2811), + [anon_sym___attribute__] = ACTIONS(2811), + [anon_sym___attribute] = ACTIONS(2811), + [anon_sym_using] = ACTIONS(2811), + [anon_sym_COLON_COLON] = ACTIONS(2813), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2813), + [anon_sym___declspec] = ACTIONS(2811), + [anon_sym___based] = ACTIONS(2811), + [anon_sym___cdecl] = ACTIONS(2811), + [anon_sym___clrcall] = ACTIONS(2811), + [anon_sym___stdcall] = ACTIONS(2811), + [anon_sym___fastcall] = ACTIONS(2811), + [anon_sym___thiscall] = ACTIONS(2811), + [anon_sym___vectorcall] = ACTIONS(2811), + [anon_sym_LBRACE] = ACTIONS(2813), + [anon_sym_RBRACE] = ACTIONS(2813), + [anon_sym_signed] = ACTIONS(2811), + [anon_sym_unsigned] = ACTIONS(2811), + [anon_sym_long] = ACTIONS(2811), + [anon_sym_short] = ACTIONS(2811), + [anon_sym_LBRACK] = ACTIONS(2811), + [anon_sym_static] = ACTIONS(2811), + [anon_sym_register] = ACTIONS(2811), + [anon_sym_inline] = ACTIONS(2811), + [anon_sym___inline] = ACTIONS(2811), + [anon_sym___inline__] = ACTIONS(2811), + [anon_sym___forceinline] = ACTIONS(2811), + [anon_sym_thread_local] = ACTIONS(2811), + [anon_sym___thread] = ACTIONS(2811), + [anon_sym_const] = ACTIONS(2811), + [anon_sym_constexpr] = ACTIONS(2811), + [anon_sym_volatile] = ACTIONS(2811), + [anon_sym_restrict] = ACTIONS(2811), + [anon_sym___restrict__] = ACTIONS(2811), + [anon_sym__Atomic] = ACTIONS(2811), + [anon_sym__Noreturn] = ACTIONS(2811), + [anon_sym_noreturn] = ACTIONS(2811), + [anon_sym__Nonnull] = ACTIONS(2811), + [anon_sym_mutable] = ACTIONS(2811), + [anon_sym_constinit] = ACTIONS(2811), + [anon_sym_consteval] = ACTIONS(2811), + [anon_sym_alignas] = ACTIONS(2811), + [anon_sym__Alignas] = ACTIONS(2811), + [sym_primitive_type] = ACTIONS(2811), + [anon_sym_enum] = ACTIONS(2811), + [anon_sym_class] = ACTIONS(2811), + [anon_sym_struct] = ACTIONS(2811), + [anon_sym_union] = ACTIONS(2811), + [anon_sym_if] = ACTIONS(2811), + [anon_sym_switch] = ACTIONS(2811), + [anon_sym_case] = ACTIONS(2811), + [anon_sym_default] = ACTIONS(2811), + [anon_sym_while] = ACTIONS(2811), + [anon_sym_do] = ACTIONS(2811), + [anon_sym_for] = ACTIONS(2811), + [anon_sym_return] = ACTIONS(2811), + [anon_sym_break] = ACTIONS(2811), + [anon_sym_continue] = ACTIONS(2811), + [anon_sym_goto] = ACTIONS(2811), + [anon_sym___try] = ACTIONS(2811), + [anon_sym___leave] = ACTIONS(2811), + [anon_sym_not] = ACTIONS(2811), + [anon_sym_compl] = ACTIONS(2811), + [anon_sym_DASH_DASH] = ACTIONS(2813), + [anon_sym_PLUS_PLUS] = ACTIONS(2813), + [anon_sym_sizeof] = ACTIONS(2811), + [anon_sym___alignof__] = ACTIONS(2811), + [anon_sym___alignof] = ACTIONS(2811), + [anon_sym__alignof] = ACTIONS(2811), + [anon_sym_alignof] = ACTIONS(2811), + [anon_sym__Alignof] = ACTIONS(2811), + [anon_sym_offsetof] = ACTIONS(2811), + [anon_sym__Generic] = ACTIONS(2811), + [anon_sym_asm] = ACTIONS(2811), + [anon_sym___asm__] = ACTIONS(2811), + [anon_sym___asm] = ACTIONS(2811), + [sym_number_literal] = ACTIONS(2813), + [anon_sym_L_SQUOTE] = ACTIONS(2813), + [anon_sym_u_SQUOTE] = ACTIONS(2813), + [anon_sym_U_SQUOTE] = ACTIONS(2813), + [anon_sym_u8_SQUOTE] = ACTIONS(2813), + [anon_sym_SQUOTE] = ACTIONS(2813), + [anon_sym_L_DQUOTE] = ACTIONS(2813), + [anon_sym_u_DQUOTE] = ACTIONS(2813), + [anon_sym_U_DQUOTE] = ACTIONS(2813), + [anon_sym_u8_DQUOTE] = ACTIONS(2813), + [anon_sym_DQUOTE] = ACTIONS(2813), + [sym_true] = ACTIONS(2811), + [sym_false] = ACTIONS(2811), + [anon_sym_NULL] = ACTIONS(2811), + [anon_sym_nullptr] = ACTIONS(2811), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2955), - [anon_sym_decltype] = ACTIONS(2955), - [anon_sym_explicit] = ACTIONS(2955), - [anon_sym_typename] = ACTIONS(2955), - [anon_sym_template] = ACTIONS(2955), - [anon_sym_operator] = ACTIONS(2955), - [anon_sym_try] = ACTIONS(2955), - [anon_sym_delete] = ACTIONS(2955), - [anon_sym_throw] = ACTIONS(2955), - [anon_sym_namespace] = ACTIONS(2955), - [anon_sym_static_assert] = ACTIONS(2955), - [anon_sym_concept] = ACTIONS(2955), - [anon_sym_co_return] = ACTIONS(2955), - [anon_sym_co_yield] = ACTIONS(2955), - [anon_sym_R_DQUOTE] = ACTIONS(2957), - [anon_sym_LR_DQUOTE] = ACTIONS(2957), - [anon_sym_uR_DQUOTE] = ACTIONS(2957), - [anon_sym_UR_DQUOTE] = ACTIONS(2957), - [anon_sym_u8R_DQUOTE] = ACTIONS(2957), - [anon_sym_co_await] = ACTIONS(2955), - [anon_sym_new] = ACTIONS(2955), - [anon_sym_requires] = ACTIONS(2955), - [sym_this] = ACTIONS(2955), + [sym_auto] = ACTIONS(2811), + [anon_sym_decltype] = ACTIONS(2811), + [anon_sym_explicit] = ACTIONS(2811), + [anon_sym_typename] = ACTIONS(2811), + [anon_sym_template] = ACTIONS(2811), + [anon_sym_operator] = ACTIONS(2811), + [anon_sym_try] = ACTIONS(2811), + [anon_sym_delete] = ACTIONS(2811), + [anon_sym_throw] = ACTIONS(2811), + [anon_sym_namespace] = ACTIONS(2811), + [anon_sym_static_assert] = ACTIONS(2811), + [anon_sym_concept] = ACTIONS(2811), + [anon_sym_co_return] = ACTIONS(2811), + [anon_sym_co_yield] = ACTIONS(2811), + [anon_sym_R_DQUOTE] = ACTIONS(2813), + [anon_sym_LR_DQUOTE] = ACTIONS(2813), + [anon_sym_uR_DQUOTE] = ACTIONS(2813), + [anon_sym_UR_DQUOTE] = ACTIONS(2813), + [anon_sym_u8R_DQUOTE] = ACTIONS(2813), + [anon_sym_co_await] = ACTIONS(2811), + [anon_sym_new] = ACTIONS(2811), + [anon_sym_requires] = ACTIONS(2811), + [sym_this] = ACTIONS(2811), }, - [745] = { - [sym_identifier] = ACTIONS(2955), - [aux_sym_preproc_include_token1] = ACTIONS(2955), - [aux_sym_preproc_def_token1] = ACTIONS(2955), - [aux_sym_preproc_if_token1] = ACTIONS(2955), - [aux_sym_preproc_if_token2] = ACTIONS(2955), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2955), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2955), - [sym_preproc_directive] = ACTIONS(2955), - [anon_sym_LPAREN2] = ACTIONS(2957), - [anon_sym_BANG] = ACTIONS(2957), - [anon_sym_TILDE] = ACTIONS(2957), - [anon_sym_DASH] = ACTIONS(2955), - [anon_sym_PLUS] = ACTIONS(2955), - [anon_sym_STAR] = ACTIONS(2957), - [anon_sym_AMP_AMP] = ACTIONS(2957), - [anon_sym_AMP] = ACTIONS(2955), - [anon_sym_SEMI] = ACTIONS(2957), - [anon_sym___extension__] = ACTIONS(2955), - [anon_sym_typedef] = ACTIONS(2955), - [anon_sym_virtual] = ACTIONS(2955), - [anon_sym_extern] = ACTIONS(2955), - [anon_sym___attribute__] = ACTIONS(2955), - [anon_sym___attribute] = ACTIONS(2955), - [anon_sym_using] = ACTIONS(2955), - [anon_sym_COLON_COLON] = ACTIONS(2957), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2957), - [anon_sym___declspec] = ACTIONS(2955), - [anon_sym___based] = ACTIONS(2955), - [anon_sym___cdecl] = ACTIONS(2955), - [anon_sym___clrcall] = ACTIONS(2955), - [anon_sym___stdcall] = ACTIONS(2955), - [anon_sym___fastcall] = ACTIONS(2955), - [anon_sym___thiscall] = ACTIONS(2955), - [anon_sym___vectorcall] = ACTIONS(2955), - [anon_sym_LBRACE] = ACTIONS(2957), - [anon_sym_signed] = ACTIONS(2955), - [anon_sym_unsigned] = ACTIONS(2955), - [anon_sym_long] = ACTIONS(2955), - [anon_sym_short] = ACTIONS(2955), - [anon_sym_LBRACK] = ACTIONS(2955), - [anon_sym_static] = ACTIONS(2955), - [anon_sym_register] = ACTIONS(2955), - [anon_sym_inline] = ACTIONS(2955), - [anon_sym___inline] = ACTIONS(2955), - [anon_sym___inline__] = ACTIONS(2955), - [anon_sym___forceinline] = ACTIONS(2955), - [anon_sym_thread_local] = ACTIONS(2955), - [anon_sym___thread] = ACTIONS(2955), - [anon_sym_const] = ACTIONS(2955), - [anon_sym_constexpr] = ACTIONS(2955), - [anon_sym_volatile] = ACTIONS(2955), - [anon_sym_restrict] = ACTIONS(2955), - [anon_sym___restrict__] = ACTIONS(2955), - [anon_sym__Atomic] = ACTIONS(2955), - [anon_sym__Noreturn] = ACTIONS(2955), - [anon_sym_noreturn] = ACTIONS(2955), - [anon_sym__Nonnull] = ACTIONS(2955), - [anon_sym_mutable] = ACTIONS(2955), - [anon_sym_constinit] = ACTIONS(2955), - [anon_sym_consteval] = ACTIONS(2955), - [anon_sym_alignas] = ACTIONS(2955), - [anon_sym__Alignas] = ACTIONS(2955), - [sym_primitive_type] = ACTIONS(2955), - [anon_sym_enum] = ACTIONS(2955), - [anon_sym_class] = ACTIONS(2955), - [anon_sym_struct] = ACTIONS(2955), - [anon_sym_union] = ACTIONS(2955), - [anon_sym_if] = ACTIONS(2955), - [anon_sym_switch] = ACTIONS(2955), - [anon_sym_case] = ACTIONS(2955), - [anon_sym_default] = ACTIONS(2955), - [anon_sym_while] = ACTIONS(2955), - [anon_sym_do] = ACTIONS(2955), - [anon_sym_for] = ACTIONS(2955), - [anon_sym_return] = ACTIONS(2955), - [anon_sym_break] = ACTIONS(2955), - [anon_sym_continue] = ACTIONS(2955), - [anon_sym_goto] = ACTIONS(2955), - [anon_sym___try] = ACTIONS(2955), - [anon_sym___leave] = ACTIONS(2955), - [anon_sym_not] = ACTIONS(2955), - [anon_sym_compl] = ACTIONS(2955), - [anon_sym_DASH_DASH] = ACTIONS(2957), - [anon_sym_PLUS_PLUS] = ACTIONS(2957), - [anon_sym_sizeof] = ACTIONS(2955), - [anon_sym___alignof__] = ACTIONS(2955), - [anon_sym___alignof] = ACTIONS(2955), - [anon_sym__alignof] = ACTIONS(2955), - [anon_sym_alignof] = ACTIONS(2955), - [anon_sym__Alignof] = ACTIONS(2955), - [anon_sym_offsetof] = ACTIONS(2955), - [anon_sym__Generic] = ACTIONS(2955), - [anon_sym_asm] = ACTIONS(2955), - [anon_sym___asm__] = ACTIONS(2955), - [anon_sym___asm] = ACTIONS(2955), - [sym_number_literal] = ACTIONS(2957), - [anon_sym_L_SQUOTE] = ACTIONS(2957), - [anon_sym_u_SQUOTE] = ACTIONS(2957), - [anon_sym_U_SQUOTE] = ACTIONS(2957), - [anon_sym_u8_SQUOTE] = ACTIONS(2957), - [anon_sym_SQUOTE] = ACTIONS(2957), - [anon_sym_L_DQUOTE] = ACTIONS(2957), - [anon_sym_u_DQUOTE] = ACTIONS(2957), - [anon_sym_U_DQUOTE] = ACTIONS(2957), - [anon_sym_u8_DQUOTE] = ACTIONS(2957), - [anon_sym_DQUOTE] = ACTIONS(2957), - [sym_true] = ACTIONS(2955), - [sym_false] = ACTIONS(2955), - [anon_sym_NULL] = ACTIONS(2955), - [anon_sym_nullptr] = ACTIONS(2955), + [779] = { + [sym_identifier] = ACTIONS(2815), + [aux_sym_preproc_include_token1] = ACTIONS(2815), + [aux_sym_preproc_def_token1] = ACTIONS(2815), + [aux_sym_preproc_if_token1] = ACTIONS(2815), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2815), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2815), + [sym_preproc_directive] = ACTIONS(2815), + [anon_sym_LPAREN2] = ACTIONS(2817), + [anon_sym_BANG] = ACTIONS(2817), + [anon_sym_TILDE] = ACTIONS(2817), + [anon_sym_DASH] = ACTIONS(2815), + [anon_sym_PLUS] = ACTIONS(2815), + [anon_sym_STAR] = ACTIONS(2817), + [anon_sym_AMP_AMP] = ACTIONS(2817), + [anon_sym_AMP] = ACTIONS(2815), + [anon_sym_SEMI] = ACTIONS(2817), + [anon_sym___extension__] = ACTIONS(2815), + [anon_sym_typedef] = ACTIONS(2815), + [anon_sym_virtual] = ACTIONS(2815), + [anon_sym_extern] = ACTIONS(2815), + [anon_sym___attribute__] = ACTIONS(2815), + [anon_sym___attribute] = ACTIONS(2815), + [anon_sym_using] = ACTIONS(2815), + [anon_sym_COLON_COLON] = ACTIONS(2817), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2817), + [anon_sym___declspec] = ACTIONS(2815), + [anon_sym___based] = ACTIONS(2815), + [anon_sym___cdecl] = ACTIONS(2815), + [anon_sym___clrcall] = ACTIONS(2815), + [anon_sym___stdcall] = ACTIONS(2815), + [anon_sym___fastcall] = ACTIONS(2815), + [anon_sym___thiscall] = ACTIONS(2815), + [anon_sym___vectorcall] = ACTIONS(2815), + [anon_sym_LBRACE] = ACTIONS(2817), + [anon_sym_RBRACE] = ACTIONS(2817), + [anon_sym_signed] = ACTIONS(2815), + [anon_sym_unsigned] = ACTIONS(2815), + [anon_sym_long] = ACTIONS(2815), + [anon_sym_short] = ACTIONS(2815), + [anon_sym_LBRACK] = ACTIONS(2815), + [anon_sym_static] = ACTIONS(2815), + [anon_sym_register] = ACTIONS(2815), + [anon_sym_inline] = ACTIONS(2815), + [anon_sym___inline] = ACTIONS(2815), + [anon_sym___inline__] = ACTIONS(2815), + [anon_sym___forceinline] = ACTIONS(2815), + [anon_sym_thread_local] = ACTIONS(2815), + [anon_sym___thread] = ACTIONS(2815), + [anon_sym_const] = ACTIONS(2815), + [anon_sym_constexpr] = ACTIONS(2815), + [anon_sym_volatile] = ACTIONS(2815), + [anon_sym_restrict] = ACTIONS(2815), + [anon_sym___restrict__] = ACTIONS(2815), + [anon_sym__Atomic] = ACTIONS(2815), + [anon_sym__Noreturn] = ACTIONS(2815), + [anon_sym_noreturn] = ACTIONS(2815), + [anon_sym__Nonnull] = ACTIONS(2815), + [anon_sym_mutable] = ACTIONS(2815), + [anon_sym_constinit] = ACTIONS(2815), + [anon_sym_consteval] = ACTIONS(2815), + [anon_sym_alignas] = ACTIONS(2815), + [anon_sym__Alignas] = ACTIONS(2815), + [sym_primitive_type] = ACTIONS(2815), + [anon_sym_enum] = ACTIONS(2815), + [anon_sym_class] = ACTIONS(2815), + [anon_sym_struct] = ACTIONS(2815), + [anon_sym_union] = ACTIONS(2815), + [anon_sym_if] = ACTIONS(2815), + [anon_sym_switch] = ACTIONS(2815), + [anon_sym_case] = ACTIONS(2815), + [anon_sym_default] = ACTIONS(2815), + [anon_sym_while] = ACTIONS(2815), + [anon_sym_do] = ACTIONS(2815), + [anon_sym_for] = ACTIONS(2815), + [anon_sym_return] = ACTIONS(2815), + [anon_sym_break] = ACTIONS(2815), + [anon_sym_continue] = ACTIONS(2815), + [anon_sym_goto] = ACTIONS(2815), + [anon_sym___try] = ACTIONS(2815), + [anon_sym___leave] = ACTIONS(2815), + [anon_sym_not] = ACTIONS(2815), + [anon_sym_compl] = ACTIONS(2815), + [anon_sym_DASH_DASH] = ACTIONS(2817), + [anon_sym_PLUS_PLUS] = ACTIONS(2817), + [anon_sym_sizeof] = ACTIONS(2815), + [anon_sym___alignof__] = ACTIONS(2815), + [anon_sym___alignof] = ACTIONS(2815), + [anon_sym__alignof] = ACTIONS(2815), + [anon_sym_alignof] = ACTIONS(2815), + [anon_sym__Alignof] = ACTIONS(2815), + [anon_sym_offsetof] = ACTIONS(2815), + [anon_sym__Generic] = ACTIONS(2815), + [anon_sym_asm] = ACTIONS(2815), + [anon_sym___asm__] = ACTIONS(2815), + [anon_sym___asm] = ACTIONS(2815), + [sym_number_literal] = ACTIONS(2817), + [anon_sym_L_SQUOTE] = ACTIONS(2817), + [anon_sym_u_SQUOTE] = ACTIONS(2817), + [anon_sym_U_SQUOTE] = ACTIONS(2817), + [anon_sym_u8_SQUOTE] = ACTIONS(2817), + [anon_sym_SQUOTE] = ACTIONS(2817), + [anon_sym_L_DQUOTE] = ACTIONS(2817), + [anon_sym_u_DQUOTE] = ACTIONS(2817), + [anon_sym_U_DQUOTE] = ACTIONS(2817), + [anon_sym_u8_DQUOTE] = ACTIONS(2817), + [anon_sym_DQUOTE] = ACTIONS(2817), + [sym_true] = ACTIONS(2815), + [sym_false] = ACTIONS(2815), + [anon_sym_NULL] = ACTIONS(2815), + [anon_sym_nullptr] = ACTIONS(2815), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2955), - [anon_sym_decltype] = ACTIONS(2955), - [anon_sym_explicit] = ACTIONS(2955), - [anon_sym_typename] = ACTIONS(2955), - [anon_sym_template] = ACTIONS(2955), - [anon_sym_operator] = ACTIONS(2955), - [anon_sym_try] = ACTIONS(2955), - [anon_sym_delete] = ACTIONS(2955), - [anon_sym_throw] = ACTIONS(2955), - [anon_sym_namespace] = ACTIONS(2955), - [anon_sym_static_assert] = ACTIONS(2955), - [anon_sym_concept] = ACTIONS(2955), - [anon_sym_co_return] = ACTIONS(2955), - [anon_sym_co_yield] = ACTIONS(2955), - [anon_sym_R_DQUOTE] = ACTIONS(2957), - [anon_sym_LR_DQUOTE] = ACTIONS(2957), - [anon_sym_uR_DQUOTE] = ACTIONS(2957), - [anon_sym_UR_DQUOTE] = ACTIONS(2957), - [anon_sym_u8R_DQUOTE] = ACTIONS(2957), - [anon_sym_co_await] = ACTIONS(2955), - [anon_sym_new] = ACTIONS(2955), - [anon_sym_requires] = ACTIONS(2955), - [sym_this] = ACTIONS(2955), + [sym_auto] = ACTIONS(2815), + [anon_sym_decltype] = ACTIONS(2815), + [anon_sym_explicit] = ACTIONS(2815), + [anon_sym_typename] = ACTIONS(2815), + [anon_sym_template] = ACTIONS(2815), + [anon_sym_operator] = ACTIONS(2815), + [anon_sym_try] = ACTIONS(2815), + [anon_sym_delete] = ACTIONS(2815), + [anon_sym_throw] = ACTIONS(2815), + [anon_sym_namespace] = ACTIONS(2815), + [anon_sym_static_assert] = ACTIONS(2815), + [anon_sym_concept] = ACTIONS(2815), + [anon_sym_co_return] = ACTIONS(2815), + [anon_sym_co_yield] = ACTIONS(2815), + [anon_sym_R_DQUOTE] = ACTIONS(2817), + [anon_sym_LR_DQUOTE] = ACTIONS(2817), + [anon_sym_uR_DQUOTE] = ACTIONS(2817), + [anon_sym_UR_DQUOTE] = ACTIONS(2817), + [anon_sym_u8R_DQUOTE] = ACTIONS(2817), + [anon_sym_co_await] = ACTIONS(2815), + [anon_sym_new] = ACTIONS(2815), + [anon_sym_requires] = ACTIONS(2815), + [sym_this] = ACTIONS(2815), }, - [746] = { - [sym_identifier] = ACTIONS(3079), - [aux_sym_preproc_include_token1] = ACTIONS(3079), - [aux_sym_preproc_def_token1] = ACTIONS(3079), - [aux_sym_preproc_if_token1] = ACTIONS(3079), - [aux_sym_preproc_if_token2] = ACTIONS(3079), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3079), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3079), - [sym_preproc_directive] = ACTIONS(3079), - [anon_sym_LPAREN2] = ACTIONS(3081), - [anon_sym_BANG] = ACTIONS(3081), - [anon_sym_TILDE] = ACTIONS(3081), - [anon_sym_DASH] = ACTIONS(3079), - [anon_sym_PLUS] = ACTIONS(3079), - [anon_sym_STAR] = ACTIONS(3081), - [anon_sym_AMP_AMP] = ACTIONS(3081), - [anon_sym_AMP] = ACTIONS(3079), - [anon_sym_SEMI] = ACTIONS(3081), - [anon_sym___extension__] = ACTIONS(3079), - [anon_sym_typedef] = ACTIONS(3079), - [anon_sym_virtual] = ACTIONS(3079), - [anon_sym_extern] = ACTIONS(3079), - [anon_sym___attribute__] = ACTIONS(3079), - [anon_sym___attribute] = ACTIONS(3079), - [anon_sym_using] = ACTIONS(3079), - [anon_sym_COLON_COLON] = ACTIONS(3081), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3081), - [anon_sym___declspec] = ACTIONS(3079), - [anon_sym___based] = ACTIONS(3079), - [anon_sym___cdecl] = ACTIONS(3079), - [anon_sym___clrcall] = ACTIONS(3079), - [anon_sym___stdcall] = ACTIONS(3079), - [anon_sym___fastcall] = ACTIONS(3079), - [anon_sym___thiscall] = ACTIONS(3079), - [anon_sym___vectorcall] = ACTIONS(3079), - [anon_sym_LBRACE] = ACTIONS(3081), - [anon_sym_signed] = ACTIONS(3079), - [anon_sym_unsigned] = ACTIONS(3079), - [anon_sym_long] = ACTIONS(3079), - [anon_sym_short] = ACTIONS(3079), - [anon_sym_LBRACK] = ACTIONS(3079), - [anon_sym_static] = ACTIONS(3079), - [anon_sym_register] = ACTIONS(3079), - [anon_sym_inline] = ACTIONS(3079), - [anon_sym___inline] = ACTIONS(3079), - [anon_sym___inline__] = ACTIONS(3079), - [anon_sym___forceinline] = ACTIONS(3079), - [anon_sym_thread_local] = ACTIONS(3079), - [anon_sym___thread] = ACTIONS(3079), - [anon_sym_const] = ACTIONS(3079), - [anon_sym_constexpr] = ACTIONS(3079), - [anon_sym_volatile] = ACTIONS(3079), - [anon_sym_restrict] = ACTIONS(3079), - [anon_sym___restrict__] = ACTIONS(3079), - [anon_sym__Atomic] = ACTIONS(3079), - [anon_sym__Noreturn] = ACTIONS(3079), - [anon_sym_noreturn] = ACTIONS(3079), - [anon_sym__Nonnull] = ACTIONS(3079), - [anon_sym_mutable] = ACTIONS(3079), - [anon_sym_constinit] = ACTIONS(3079), - [anon_sym_consteval] = ACTIONS(3079), - [anon_sym_alignas] = ACTIONS(3079), - [anon_sym__Alignas] = ACTIONS(3079), - [sym_primitive_type] = ACTIONS(3079), - [anon_sym_enum] = ACTIONS(3079), - [anon_sym_class] = ACTIONS(3079), - [anon_sym_struct] = ACTIONS(3079), - [anon_sym_union] = ACTIONS(3079), - [anon_sym_if] = ACTIONS(3079), - [anon_sym_switch] = ACTIONS(3079), - [anon_sym_case] = ACTIONS(3079), - [anon_sym_default] = ACTIONS(3079), - [anon_sym_while] = ACTIONS(3079), - [anon_sym_do] = ACTIONS(3079), - [anon_sym_for] = ACTIONS(3079), - [anon_sym_return] = ACTIONS(3079), - [anon_sym_break] = ACTIONS(3079), - [anon_sym_continue] = ACTIONS(3079), - [anon_sym_goto] = ACTIONS(3079), - [anon_sym___try] = ACTIONS(3079), - [anon_sym___leave] = ACTIONS(3079), - [anon_sym_not] = ACTIONS(3079), - [anon_sym_compl] = ACTIONS(3079), - [anon_sym_DASH_DASH] = ACTIONS(3081), - [anon_sym_PLUS_PLUS] = ACTIONS(3081), - [anon_sym_sizeof] = ACTIONS(3079), - [anon_sym___alignof__] = ACTIONS(3079), - [anon_sym___alignof] = ACTIONS(3079), - [anon_sym__alignof] = ACTIONS(3079), - [anon_sym_alignof] = ACTIONS(3079), - [anon_sym__Alignof] = ACTIONS(3079), - [anon_sym_offsetof] = ACTIONS(3079), - [anon_sym__Generic] = ACTIONS(3079), - [anon_sym_asm] = ACTIONS(3079), - [anon_sym___asm__] = ACTIONS(3079), - [anon_sym___asm] = ACTIONS(3079), - [sym_number_literal] = ACTIONS(3081), - [anon_sym_L_SQUOTE] = ACTIONS(3081), - [anon_sym_u_SQUOTE] = ACTIONS(3081), - [anon_sym_U_SQUOTE] = ACTIONS(3081), - [anon_sym_u8_SQUOTE] = ACTIONS(3081), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_L_DQUOTE] = ACTIONS(3081), - [anon_sym_u_DQUOTE] = ACTIONS(3081), - [anon_sym_U_DQUOTE] = ACTIONS(3081), - [anon_sym_u8_DQUOTE] = ACTIONS(3081), - [anon_sym_DQUOTE] = ACTIONS(3081), - [sym_true] = ACTIONS(3079), - [sym_false] = ACTIONS(3079), - [anon_sym_NULL] = ACTIONS(3079), - [anon_sym_nullptr] = ACTIONS(3079), + [780] = { + [sym_identifier] = ACTIONS(2819), + [aux_sym_preproc_include_token1] = ACTIONS(2819), + [aux_sym_preproc_def_token1] = ACTIONS(2819), + [aux_sym_preproc_if_token1] = ACTIONS(2819), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2819), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2819), + [sym_preproc_directive] = ACTIONS(2819), + [anon_sym_LPAREN2] = ACTIONS(2821), + [anon_sym_BANG] = ACTIONS(2821), + [anon_sym_TILDE] = ACTIONS(2821), + [anon_sym_DASH] = ACTIONS(2819), + [anon_sym_PLUS] = ACTIONS(2819), + [anon_sym_STAR] = ACTIONS(2821), + [anon_sym_AMP_AMP] = ACTIONS(2821), + [anon_sym_AMP] = ACTIONS(2819), + [anon_sym_SEMI] = ACTIONS(2821), + [anon_sym___extension__] = ACTIONS(2819), + [anon_sym_typedef] = ACTIONS(2819), + [anon_sym_virtual] = ACTIONS(2819), + [anon_sym_extern] = ACTIONS(2819), + [anon_sym___attribute__] = ACTIONS(2819), + [anon_sym___attribute] = ACTIONS(2819), + [anon_sym_using] = ACTIONS(2819), + [anon_sym_COLON_COLON] = ACTIONS(2821), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2821), + [anon_sym___declspec] = ACTIONS(2819), + [anon_sym___based] = ACTIONS(2819), + [anon_sym___cdecl] = ACTIONS(2819), + [anon_sym___clrcall] = ACTIONS(2819), + [anon_sym___stdcall] = ACTIONS(2819), + [anon_sym___fastcall] = ACTIONS(2819), + [anon_sym___thiscall] = ACTIONS(2819), + [anon_sym___vectorcall] = ACTIONS(2819), + [anon_sym_LBRACE] = ACTIONS(2821), + [anon_sym_RBRACE] = ACTIONS(2821), + [anon_sym_signed] = ACTIONS(2819), + [anon_sym_unsigned] = ACTIONS(2819), + [anon_sym_long] = ACTIONS(2819), + [anon_sym_short] = ACTIONS(2819), + [anon_sym_LBRACK] = ACTIONS(2819), + [anon_sym_static] = ACTIONS(2819), + [anon_sym_register] = ACTIONS(2819), + [anon_sym_inline] = ACTIONS(2819), + [anon_sym___inline] = ACTIONS(2819), + [anon_sym___inline__] = ACTIONS(2819), + [anon_sym___forceinline] = ACTIONS(2819), + [anon_sym_thread_local] = ACTIONS(2819), + [anon_sym___thread] = ACTIONS(2819), + [anon_sym_const] = ACTIONS(2819), + [anon_sym_constexpr] = ACTIONS(2819), + [anon_sym_volatile] = ACTIONS(2819), + [anon_sym_restrict] = ACTIONS(2819), + [anon_sym___restrict__] = ACTIONS(2819), + [anon_sym__Atomic] = ACTIONS(2819), + [anon_sym__Noreturn] = ACTIONS(2819), + [anon_sym_noreturn] = ACTIONS(2819), + [anon_sym__Nonnull] = ACTIONS(2819), + [anon_sym_mutable] = ACTIONS(2819), + [anon_sym_constinit] = ACTIONS(2819), + [anon_sym_consteval] = ACTIONS(2819), + [anon_sym_alignas] = ACTIONS(2819), + [anon_sym__Alignas] = ACTIONS(2819), + [sym_primitive_type] = ACTIONS(2819), + [anon_sym_enum] = ACTIONS(2819), + [anon_sym_class] = ACTIONS(2819), + [anon_sym_struct] = ACTIONS(2819), + [anon_sym_union] = ACTIONS(2819), + [anon_sym_if] = ACTIONS(2819), + [anon_sym_switch] = ACTIONS(2819), + [anon_sym_case] = ACTIONS(2819), + [anon_sym_default] = ACTIONS(2819), + [anon_sym_while] = ACTIONS(2819), + [anon_sym_do] = ACTIONS(2819), + [anon_sym_for] = ACTIONS(2819), + [anon_sym_return] = ACTIONS(2819), + [anon_sym_break] = ACTIONS(2819), + [anon_sym_continue] = ACTIONS(2819), + [anon_sym_goto] = ACTIONS(2819), + [anon_sym___try] = ACTIONS(2819), + [anon_sym___leave] = ACTIONS(2819), + [anon_sym_not] = ACTIONS(2819), + [anon_sym_compl] = ACTIONS(2819), + [anon_sym_DASH_DASH] = ACTIONS(2821), + [anon_sym_PLUS_PLUS] = ACTIONS(2821), + [anon_sym_sizeof] = ACTIONS(2819), + [anon_sym___alignof__] = ACTIONS(2819), + [anon_sym___alignof] = ACTIONS(2819), + [anon_sym__alignof] = ACTIONS(2819), + [anon_sym_alignof] = ACTIONS(2819), + [anon_sym__Alignof] = ACTIONS(2819), + [anon_sym_offsetof] = ACTIONS(2819), + [anon_sym__Generic] = ACTIONS(2819), + [anon_sym_asm] = ACTIONS(2819), + [anon_sym___asm__] = ACTIONS(2819), + [anon_sym___asm] = ACTIONS(2819), + [sym_number_literal] = ACTIONS(2821), + [anon_sym_L_SQUOTE] = ACTIONS(2821), + [anon_sym_u_SQUOTE] = ACTIONS(2821), + [anon_sym_U_SQUOTE] = ACTIONS(2821), + [anon_sym_u8_SQUOTE] = ACTIONS(2821), + [anon_sym_SQUOTE] = ACTIONS(2821), + [anon_sym_L_DQUOTE] = ACTIONS(2821), + [anon_sym_u_DQUOTE] = ACTIONS(2821), + [anon_sym_U_DQUOTE] = ACTIONS(2821), + [anon_sym_u8_DQUOTE] = ACTIONS(2821), + [anon_sym_DQUOTE] = ACTIONS(2821), + [sym_true] = ACTIONS(2819), + [sym_false] = ACTIONS(2819), + [anon_sym_NULL] = ACTIONS(2819), + [anon_sym_nullptr] = ACTIONS(2819), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3079), - [anon_sym_decltype] = ACTIONS(3079), - [anon_sym_explicit] = ACTIONS(3079), - [anon_sym_typename] = ACTIONS(3079), - [anon_sym_template] = ACTIONS(3079), - [anon_sym_operator] = ACTIONS(3079), - [anon_sym_try] = ACTIONS(3079), - [anon_sym_delete] = ACTIONS(3079), - [anon_sym_throw] = ACTIONS(3079), - [anon_sym_namespace] = ACTIONS(3079), - [anon_sym_static_assert] = ACTIONS(3079), - [anon_sym_concept] = ACTIONS(3079), - [anon_sym_co_return] = ACTIONS(3079), - [anon_sym_co_yield] = ACTIONS(3079), - [anon_sym_R_DQUOTE] = ACTIONS(3081), - [anon_sym_LR_DQUOTE] = ACTIONS(3081), - [anon_sym_uR_DQUOTE] = ACTIONS(3081), - [anon_sym_UR_DQUOTE] = ACTIONS(3081), - [anon_sym_u8R_DQUOTE] = ACTIONS(3081), - [anon_sym_co_await] = ACTIONS(3079), - [anon_sym_new] = ACTIONS(3079), - [anon_sym_requires] = ACTIONS(3079), - [sym_this] = ACTIONS(3079), + [sym_auto] = ACTIONS(2819), + [anon_sym_decltype] = ACTIONS(2819), + [anon_sym_explicit] = ACTIONS(2819), + [anon_sym_typename] = ACTIONS(2819), + [anon_sym_template] = ACTIONS(2819), + [anon_sym_operator] = ACTIONS(2819), + [anon_sym_try] = ACTIONS(2819), + [anon_sym_delete] = ACTIONS(2819), + [anon_sym_throw] = ACTIONS(2819), + [anon_sym_namespace] = ACTIONS(2819), + [anon_sym_static_assert] = ACTIONS(2819), + [anon_sym_concept] = ACTIONS(2819), + [anon_sym_co_return] = ACTIONS(2819), + [anon_sym_co_yield] = ACTIONS(2819), + [anon_sym_R_DQUOTE] = ACTIONS(2821), + [anon_sym_LR_DQUOTE] = ACTIONS(2821), + [anon_sym_uR_DQUOTE] = ACTIONS(2821), + [anon_sym_UR_DQUOTE] = ACTIONS(2821), + [anon_sym_u8R_DQUOTE] = ACTIONS(2821), + [anon_sym_co_await] = ACTIONS(2819), + [anon_sym_new] = ACTIONS(2819), + [anon_sym_requires] = ACTIONS(2819), + [sym_this] = ACTIONS(2819), }, - [747] = { - [sym_identifier] = ACTIONS(3019), - [aux_sym_preproc_include_token1] = ACTIONS(3019), - [aux_sym_preproc_def_token1] = ACTIONS(3019), - [aux_sym_preproc_if_token1] = ACTIONS(3019), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3019), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3019), - [sym_preproc_directive] = ACTIONS(3019), - [anon_sym_LPAREN2] = ACTIONS(3021), - [anon_sym_BANG] = ACTIONS(3021), - [anon_sym_TILDE] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3019), - [anon_sym_PLUS] = ACTIONS(3019), - [anon_sym_STAR] = ACTIONS(3021), - [anon_sym_AMP_AMP] = ACTIONS(3021), - [anon_sym_AMP] = ACTIONS(3019), - [anon_sym_SEMI] = ACTIONS(3021), - [anon_sym___extension__] = ACTIONS(3019), - [anon_sym_typedef] = ACTIONS(3019), - [anon_sym_virtual] = ACTIONS(3019), - [anon_sym_extern] = ACTIONS(3019), - [anon_sym___attribute__] = ACTIONS(3019), - [anon_sym___attribute] = ACTIONS(3019), - [anon_sym_using] = ACTIONS(3019), - [anon_sym_COLON_COLON] = ACTIONS(3021), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3021), - [anon_sym___declspec] = ACTIONS(3019), - [anon_sym___based] = ACTIONS(3019), - [anon_sym___cdecl] = ACTIONS(3019), - [anon_sym___clrcall] = ACTIONS(3019), - [anon_sym___stdcall] = ACTIONS(3019), - [anon_sym___fastcall] = ACTIONS(3019), - [anon_sym___thiscall] = ACTIONS(3019), - [anon_sym___vectorcall] = ACTIONS(3019), - [anon_sym_LBRACE] = ACTIONS(3021), - [anon_sym_RBRACE] = ACTIONS(3021), - [anon_sym_signed] = ACTIONS(3019), - [anon_sym_unsigned] = ACTIONS(3019), - [anon_sym_long] = ACTIONS(3019), - [anon_sym_short] = ACTIONS(3019), - [anon_sym_LBRACK] = ACTIONS(3019), - [anon_sym_static] = ACTIONS(3019), - [anon_sym_register] = ACTIONS(3019), - [anon_sym_inline] = ACTIONS(3019), - [anon_sym___inline] = ACTIONS(3019), - [anon_sym___inline__] = ACTIONS(3019), - [anon_sym___forceinline] = ACTIONS(3019), - [anon_sym_thread_local] = ACTIONS(3019), - [anon_sym___thread] = ACTIONS(3019), - [anon_sym_const] = ACTIONS(3019), - [anon_sym_constexpr] = ACTIONS(3019), - [anon_sym_volatile] = ACTIONS(3019), - [anon_sym_restrict] = ACTIONS(3019), - [anon_sym___restrict__] = ACTIONS(3019), - [anon_sym__Atomic] = ACTIONS(3019), - [anon_sym__Noreturn] = ACTIONS(3019), - [anon_sym_noreturn] = ACTIONS(3019), - [anon_sym__Nonnull] = ACTIONS(3019), - [anon_sym_mutable] = ACTIONS(3019), - [anon_sym_constinit] = ACTIONS(3019), - [anon_sym_consteval] = ACTIONS(3019), - [anon_sym_alignas] = ACTIONS(3019), - [anon_sym__Alignas] = ACTIONS(3019), - [sym_primitive_type] = ACTIONS(3019), - [anon_sym_enum] = ACTIONS(3019), - [anon_sym_class] = ACTIONS(3019), - [anon_sym_struct] = ACTIONS(3019), - [anon_sym_union] = ACTIONS(3019), - [anon_sym_if] = ACTIONS(3019), - [anon_sym_switch] = ACTIONS(3019), - [anon_sym_case] = ACTIONS(3019), - [anon_sym_default] = ACTIONS(3019), - [anon_sym_while] = ACTIONS(3019), - [anon_sym_do] = ACTIONS(3019), - [anon_sym_for] = ACTIONS(3019), - [anon_sym_return] = ACTIONS(3019), - [anon_sym_break] = ACTIONS(3019), - [anon_sym_continue] = ACTIONS(3019), - [anon_sym_goto] = ACTIONS(3019), - [anon_sym___try] = ACTIONS(3019), - [anon_sym___leave] = ACTIONS(3019), - [anon_sym_not] = ACTIONS(3019), - [anon_sym_compl] = ACTIONS(3019), - [anon_sym_DASH_DASH] = ACTIONS(3021), - [anon_sym_PLUS_PLUS] = ACTIONS(3021), - [anon_sym_sizeof] = ACTIONS(3019), - [anon_sym___alignof__] = ACTIONS(3019), - [anon_sym___alignof] = ACTIONS(3019), - [anon_sym__alignof] = ACTIONS(3019), - [anon_sym_alignof] = ACTIONS(3019), - [anon_sym__Alignof] = ACTIONS(3019), - [anon_sym_offsetof] = ACTIONS(3019), - [anon_sym__Generic] = ACTIONS(3019), - [anon_sym_asm] = ACTIONS(3019), - [anon_sym___asm__] = ACTIONS(3019), - [anon_sym___asm] = ACTIONS(3019), - [sym_number_literal] = ACTIONS(3021), - [anon_sym_L_SQUOTE] = ACTIONS(3021), - [anon_sym_u_SQUOTE] = ACTIONS(3021), - [anon_sym_U_SQUOTE] = ACTIONS(3021), - [anon_sym_u8_SQUOTE] = ACTIONS(3021), - [anon_sym_SQUOTE] = ACTIONS(3021), - [anon_sym_L_DQUOTE] = ACTIONS(3021), - [anon_sym_u_DQUOTE] = ACTIONS(3021), - [anon_sym_U_DQUOTE] = ACTIONS(3021), - [anon_sym_u8_DQUOTE] = ACTIONS(3021), - [anon_sym_DQUOTE] = ACTIONS(3021), - [sym_true] = ACTIONS(3019), - [sym_false] = ACTIONS(3019), - [anon_sym_NULL] = ACTIONS(3019), - [anon_sym_nullptr] = ACTIONS(3019), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3019), - [anon_sym_decltype] = ACTIONS(3019), - [anon_sym_explicit] = ACTIONS(3019), - [anon_sym_typename] = ACTIONS(3019), - [anon_sym_template] = ACTIONS(3019), - [anon_sym_operator] = ACTIONS(3019), - [anon_sym_try] = ACTIONS(3019), - [anon_sym_delete] = ACTIONS(3019), - [anon_sym_throw] = ACTIONS(3019), - [anon_sym_namespace] = ACTIONS(3019), - [anon_sym_static_assert] = ACTIONS(3019), - [anon_sym_concept] = ACTIONS(3019), - [anon_sym_co_return] = ACTIONS(3019), - [anon_sym_co_yield] = ACTIONS(3019), - [anon_sym_R_DQUOTE] = ACTIONS(3021), - [anon_sym_LR_DQUOTE] = ACTIONS(3021), - [anon_sym_uR_DQUOTE] = ACTIONS(3021), - [anon_sym_UR_DQUOTE] = ACTIONS(3021), - [anon_sym_u8R_DQUOTE] = ACTIONS(3021), - [anon_sym_co_await] = ACTIONS(3019), - [anon_sym_new] = ACTIONS(3019), - [anon_sym_requires] = ACTIONS(3019), - [sym_this] = ACTIONS(3019), + [781] = { + [sym_identifier] = ACTIONS(3112), + [aux_sym_preproc_include_token1] = ACTIONS(3112), + [aux_sym_preproc_def_token1] = ACTIONS(3112), + [aux_sym_preproc_if_token1] = ACTIONS(3112), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3112), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3112), + [sym_preproc_directive] = ACTIONS(3112), + [anon_sym_LPAREN2] = ACTIONS(3114), + [anon_sym_BANG] = ACTIONS(3114), + [anon_sym_TILDE] = ACTIONS(3114), + [anon_sym_DASH] = ACTIONS(3112), + [anon_sym_PLUS] = ACTIONS(3112), + [anon_sym_STAR] = ACTIONS(3114), + [anon_sym_AMP_AMP] = ACTIONS(3114), + [anon_sym_AMP] = ACTIONS(3112), + [anon_sym_SEMI] = ACTIONS(3114), + [anon_sym___extension__] = ACTIONS(3112), + [anon_sym_typedef] = ACTIONS(3112), + [anon_sym_virtual] = ACTIONS(3112), + [anon_sym_extern] = ACTIONS(3112), + [anon_sym___attribute__] = ACTIONS(3112), + [anon_sym___attribute] = ACTIONS(3112), + [anon_sym_using] = ACTIONS(3112), + [anon_sym_COLON_COLON] = ACTIONS(3114), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3114), + [anon_sym___declspec] = ACTIONS(3112), + [anon_sym___based] = ACTIONS(3112), + [anon_sym___cdecl] = ACTIONS(3112), + [anon_sym___clrcall] = ACTIONS(3112), + [anon_sym___stdcall] = ACTIONS(3112), + [anon_sym___fastcall] = ACTIONS(3112), + [anon_sym___thiscall] = ACTIONS(3112), + [anon_sym___vectorcall] = ACTIONS(3112), + [anon_sym_LBRACE] = ACTIONS(3114), + [anon_sym_RBRACE] = ACTIONS(3114), + [anon_sym_signed] = ACTIONS(3112), + [anon_sym_unsigned] = ACTIONS(3112), + [anon_sym_long] = ACTIONS(3112), + [anon_sym_short] = ACTIONS(3112), + [anon_sym_LBRACK] = ACTIONS(3112), + [anon_sym_static] = ACTIONS(3112), + [anon_sym_register] = ACTIONS(3112), + [anon_sym_inline] = ACTIONS(3112), + [anon_sym___inline] = ACTIONS(3112), + [anon_sym___inline__] = ACTIONS(3112), + [anon_sym___forceinline] = ACTIONS(3112), + [anon_sym_thread_local] = ACTIONS(3112), + [anon_sym___thread] = ACTIONS(3112), + [anon_sym_const] = ACTIONS(3112), + [anon_sym_constexpr] = ACTIONS(3112), + [anon_sym_volatile] = ACTIONS(3112), + [anon_sym_restrict] = ACTIONS(3112), + [anon_sym___restrict__] = ACTIONS(3112), + [anon_sym__Atomic] = ACTIONS(3112), + [anon_sym__Noreturn] = ACTIONS(3112), + [anon_sym_noreturn] = ACTIONS(3112), + [anon_sym__Nonnull] = ACTIONS(3112), + [anon_sym_mutable] = ACTIONS(3112), + [anon_sym_constinit] = ACTIONS(3112), + [anon_sym_consteval] = ACTIONS(3112), + [anon_sym_alignas] = ACTIONS(3112), + [anon_sym__Alignas] = ACTIONS(3112), + [sym_primitive_type] = ACTIONS(3112), + [anon_sym_enum] = ACTIONS(3112), + [anon_sym_class] = ACTIONS(3112), + [anon_sym_struct] = ACTIONS(3112), + [anon_sym_union] = ACTIONS(3112), + [anon_sym_if] = ACTIONS(3112), + [anon_sym_switch] = ACTIONS(3112), + [anon_sym_case] = ACTIONS(3112), + [anon_sym_default] = ACTIONS(3112), + [anon_sym_while] = ACTIONS(3112), + [anon_sym_do] = ACTIONS(3112), + [anon_sym_for] = ACTIONS(3112), + [anon_sym_return] = ACTIONS(3112), + [anon_sym_break] = ACTIONS(3112), + [anon_sym_continue] = ACTIONS(3112), + [anon_sym_goto] = ACTIONS(3112), + [anon_sym___try] = ACTIONS(3112), + [anon_sym___leave] = ACTIONS(3112), + [anon_sym_not] = ACTIONS(3112), + [anon_sym_compl] = ACTIONS(3112), + [anon_sym_DASH_DASH] = ACTIONS(3114), + [anon_sym_PLUS_PLUS] = ACTIONS(3114), + [anon_sym_sizeof] = ACTIONS(3112), + [anon_sym___alignof__] = ACTIONS(3112), + [anon_sym___alignof] = ACTIONS(3112), + [anon_sym__alignof] = ACTIONS(3112), + [anon_sym_alignof] = ACTIONS(3112), + [anon_sym__Alignof] = ACTIONS(3112), + [anon_sym_offsetof] = ACTIONS(3112), + [anon_sym__Generic] = ACTIONS(3112), + [anon_sym_asm] = ACTIONS(3112), + [anon_sym___asm__] = ACTIONS(3112), + [anon_sym___asm] = ACTIONS(3112), + [sym_number_literal] = ACTIONS(3114), + [anon_sym_L_SQUOTE] = ACTIONS(3114), + [anon_sym_u_SQUOTE] = ACTIONS(3114), + [anon_sym_U_SQUOTE] = ACTIONS(3114), + [anon_sym_u8_SQUOTE] = ACTIONS(3114), + [anon_sym_SQUOTE] = ACTIONS(3114), + [anon_sym_L_DQUOTE] = ACTIONS(3114), + [anon_sym_u_DQUOTE] = ACTIONS(3114), + [anon_sym_U_DQUOTE] = ACTIONS(3114), + [anon_sym_u8_DQUOTE] = ACTIONS(3114), + [anon_sym_DQUOTE] = ACTIONS(3114), + [sym_true] = ACTIONS(3112), + [sym_false] = ACTIONS(3112), + [anon_sym_NULL] = ACTIONS(3112), + [anon_sym_nullptr] = ACTIONS(3112), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3112), + [anon_sym_decltype] = ACTIONS(3112), + [anon_sym_explicit] = ACTIONS(3112), + [anon_sym_typename] = ACTIONS(3112), + [anon_sym_template] = ACTIONS(3112), + [anon_sym_operator] = ACTIONS(3112), + [anon_sym_try] = ACTIONS(3112), + [anon_sym_delete] = ACTIONS(3112), + [anon_sym_throw] = ACTIONS(3112), + [anon_sym_namespace] = ACTIONS(3112), + [anon_sym_static_assert] = ACTIONS(3112), + [anon_sym_concept] = ACTIONS(3112), + [anon_sym_co_return] = ACTIONS(3112), + [anon_sym_co_yield] = ACTIONS(3112), + [anon_sym_R_DQUOTE] = ACTIONS(3114), + [anon_sym_LR_DQUOTE] = ACTIONS(3114), + [anon_sym_uR_DQUOTE] = ACTIONS(3114), + [anon_sym_UR_DQUOTE] = ACTIONS(3114), + [anon_sym_u8R_DQUOTE] = ACTIONS(3114), + [anon_sym_co_await] = ACTIONS(3112), + [anon_sym_new] = ACTIONS(3112), + [anon_sym_requires] = ACTIONS(3112), + [sym_this] = ACTIONS(3112), }, - [748] = { - [sym_identifier] = ACTIONS(3023), - [aux_sym_preproc_include_token1] = ACTIONS(3023), - [aux_sym_preproc_def_token1] = ACTIONS(3023), - [aux_sym_preproc_if_token1] = ACTIONS(3023), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3023), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3023), - [sym_preproc_directive] = ACTIONS(3023), - [anon_sym_LPAREN2] = ACTIONS(3025), - [anon_sym_BANG] = ACTIONS(3025), - [anon_sym_TILDE] = ACTIONS(3025), - [anon_sym_DASH] = ACTIONS(3023), - [anon_sym_PLUS] = ACTIONS(3023), - [anon_sym_STAR] = ACTIONS(3025), - [anon_sym_AMP_AMP] = ACTIONS(3025), - [anon_sym_AMP] = ACTIONS(3023), - [anon_sym_SEMI] = ACTIONS(3025), - [anon_sym___extension__] = ACTIONS(3023), - [anon_sym_typedef] = ACTIONS(3023), - [anon_sym_virtual] = ACTIONS(3023), - [anon_sym_extern] = ACTIONS(3023), - [anon_sym___attribute__] = ACTIONS(3023), - [anon_sym___attribute] = ACTIONS(3023), - [anon_sym_using] = ACTIONS(3023), - [anon_sym_COLON_COLON] = ACTIONS(3025), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3025), - [anon_sym___declspec] = ACTIONS(3023), - [anon_sym___based] = ACTIONS(3023), - [anon_sym___cdecl] = ACTIONS(3023), - [anon_sym___clrcall] = ACTIONS(3023), - [anon_sym___stdcall] = ACTIONS(3023), - [anon_sym___fastcall] = ACTIONS(3023), - [anon_sym___thiscall] = ACTIONS(3023), - [anon_sym___vectorcall] = ACTIONS(3023), - [anon_sym_LBRACE] = ACTIONS(3025), - [anon_sym_RBRACE] = ACTIONS(3025), - [anon_sym_signed] = ACTIONS(3023), - [anon_sym_unsigned] = ACTIONS(3023), - [anon_sym_long] = ACTIONS(3023), - [anon_sym_short] = ACTIONS(3023), - [anon_sym_LBRACK] = ACTIONS(3023), - [anon_sym_static] = ACTIONS(3023), - [anon_sym_register] = ACTIONS(3023), - [anon_sym_inline] = ACTIONS(3023), - [anon_sym___inline] = ACTIONS(3023), - [anon_sym___inline__] = ACTIONS(3023), - [anon_sym___forceinline] = ACTIONS(3023), - [anon_sym_thread_local] = ACTIONS(3023), - [anon_sym___thread] = ACTIONS(3023), - [anon_sym_const] = ACTIONS(3023), - [anon_sym_constexpr] = ACTIONS(3023), - [anon_sym_volatile] = ACTIONS(3023), - [anon_sym_restrict] = ACTIONS(3023), - [anon_sym___restrict__] = ACTIONS(3023), - [anon_sym__Atomic] = ACTIONS(3023), - [anon_sym__Noreturn] = ACTIONS(3023), - [anon_sym_noreturn] = ACTIONS(3023), - [anon_sym__Nonnull] = ACTIONS(3023), - [anon_sym_mutable] = ACTIONS(3023), - [anon_sym_constinit] = ACTIONS(3023), - [anon_sym_consteval] = ACTIONS(3023), - [anon_sym_alignas] = ACTIONS(3023), - [anon_sym__Alignas] = ACTIONS(3023), - [sym_primitive_type] = ACTIONS(3023), - [anon_sym_enum] = ACTIONS(3023), - [anon_sym_class] = ACTIONS(3023), - [anon_sym_struct] = ACTIONS(3023), - [anon_sym_union] = ACTIONS(3023), - [anon_sym_if] = ACTIONS(3023), - [anon_sym_switch] = ACTIONS(3023), - [anon_sym_case] = ACTIONS(3023), - [anon_sym_default] = ACTIONS(3023), - [anon_sym_while] = ACTIONS(3023), - [anon_sym_do] = ACTIONS(3023), - [anon_sym_for] = ACTIONS(3023), - [anon_sym_return] = ACTIONS(3023), - [anon_sym_break] = ACTIONS(3023), - [anon_sym_continue] = ACTIONS(3023), - [anon_sym_goto] = ACTIONS(3023), - [anon_sym___try] = ACTIONS(3023), - [anon_sym___leave] = ACTIONS(3023), - [anon_sym_not] = ACTIONS(3023), - [anon_sym_compl] = ACTIONS(3023), - [anon_sym_DASH_DASH] = ACTIONS(3025), - [anon_sym_PLUS_PLUS] = ACTIONS(3025), - [anon_sym_sizeof] = ACTIONS(3023), - [anon_sym___alignof__] = ACTIONS(3023), - [anon_sym___alignof] = ACTIONS(3023), - [anon_sym__alignof] = ACTIONS(3023), - [anon_sym_alignof] = ACTIONS(3023), - [anon_sym__Alignof] = ACTIONS(3023), - [anon_sym_offsetof] = ACTIONS(3023), - [anon_sym__Generic] = ACTIONS(3023), - [anon_sym_asm] = ACTIONS(3023), - [anon_sym___asm__] = ACTIONS(3023), - [anon_sym___asm] = ACTIONS(3023), - [sym_number_literal] = ACTIONS(3025), - [anon_sym_L_SQUOTE] = ACTIONS(3025), - [anon_sym_u_SQUOTE] = ACTIONS(3025), - [anon_sym_U_SQUOTE] = ACTIONS(3025), - [anon_sym_u8_SQUOTE] = ACTIONS(3025), - [anon_sym_SQUOTE] = ACTIONS(3025), - [anon_sym_L_DQUOTE] = ACTIONS(3025), - [anon_sym_u_DQUOTE] = ACTIONS(3025), - [anon_sym_U_DQUOTE] = ACTIONS(3025), - [anon_sym_u8_DQUOTE] = ACTIONS(3025), - [anon_sym_DQUOTE] = ACTIONS(3025), - [sym_true] = ACTIONS(3023), - [sym_false] = ACTIONS(3023), - [anon_sym_NULL] = ACTIONS(3023), - [anon_sym_nullptr] = ACTIONS(3023), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3023), - [anon_sym_decltype] = ACTIONS(3023), - [anon_sym_explicit] = ACTIONS(3023), - [anon_sym_typename] = ACTIONS(3023), - [anon_sym_template] = ACTIONS(3023), - [anon_sym_operator] = ACTIONS(3023), - [anon_sym_try] = ACTIONS(3023), - [anon_sym_delete] = ACTIONS(3023), - [anon_sym_throw] = ACTIONS(3023), - [anon_sym_namespace] = ACTIONS(3023), - [anon_sym_static_assert] = ACTIONS(3023), - [anon_sym_concept] = ACTIONS(3023), - [anon_sym_co_return] = ACTIONS(3023), - [anon_sym_co_yield] = ACTIONS(3023), - [anon_sym_R_DQUOTE] = ACTIONS(3025), - [anon_sym_LR_DQUOTE] = ACTIONS(3025), - [anon_sym_uR_DQUOTE] = ACTIONS(3025), - [anon_sym_UR_DQUOTE] = ACTIONS(3025), - [anon_sym_u8R_DQUOTE] = ACTIONS(3025), - [anon_sym_co_await] = ACTIONS(3023), - [anon_sym_new] = ACTIONS(3023), - [anon_sym_requires] = ACTIONS(3023), - [sym_this] = ACTIONS(3023), + [782] = { + [sym_identifier] = ACTIONS(3116), + [aux_sym_preproc_include_token1] = ACTIONS(3116), + [aux_sym_preproc_def_token1] = ACTIONS(3116), + [aux_sym_preproc_if_token1] = ACTIONS(3116), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3116), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3116), + [sym_preproc_directive] = ACTIONS(3116), + [anon_sym_LPAREN2] = ACTIONS(3118), + [anon_sym_BANG] = ACTIONS(3118), + [anon_sym_TILDE] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3116), + [anon_sym_PLUS] = ACTIONS(3116), + [anon_sym_STAR] = ACTIONS(3118), + [anon_sym_AMP_AMP] = ACTIONS(3118), + [anon_sym_AMP] = ACTIONS(3116), + [anon_sym_SEMI] = ACTIONS(3118), + [anon_sym___extension__] = ACTIONS(3116), + [anon_sym_typedef] = ACTIONS(3116), + [anon_sym_virtual] = ACTIONS(3116), + [anon_sym_extern] = ACTIONS(3116), + [anon_sym___attribute__] = ACTIONS(3116), + [anon_sym___attribute] = ACTIONS(3116), + [anon_sym_using] = ACTIONS(3116), + [anon_sym_COLON_COLON] = ACTIONS(3118), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3118), + [anon_sym___declspec] = ACTIONS(3116), + [anon_sym___based] = ACTIONS(3116), + [anon_sym___cdecl] = ACTIONS(3116), + [anon_sym___clrcall] = ACTIONS(3116), + [anon_sym___stdcall] = ACTIONS(3116), + [anon_sym___fastcall] = ACTIONS(3116), + [anon_sym___thiscall] = ACTIONS(3116), + [anon_sym___vectorcall] = ACTIONS(3116), + [anon_sym_LBRACE] = ACTIONS(3118), + [anon_sym_RBRACE] = ACTIONS(3118), + [anon_sym_signed] = ACTIONS(3116), + [anon_sym_unsigned] = ACTIONS(3116), + [anon_sym_long] = ACTIONS(3116), + [anon_sym_short] = ACTIONS(3116), + [anon_sym_LBRACK] = ACTIONS(3116), + [anon_sym_static] = ACTIONS(3116), + [anon_sym_register] = ACTIONS(3116), + [anon_sym_inline] = ACTIONS(3116), + [anon_sym___inline] = ACTIONS(3116), + [anon_sym___inline__] = ACTIONS(3116), + [anon_sym___forceinline] = ACTIONS(3116), + [anon_sym_thread_local] = ACTIONS(3116), + [anon_sym___thread] = ACTIONS(3116), + [anon_sym_const] = ACTIONS(3116), + [anon_sym_constexpr] = ACTIONS(3116), + [anon_sym_volatile] = ACTIONS(3116), + [anon_sym_restrict] = ACTIONS(3116), + [anon_sym___restrict__] = ACTIONS(3116), + [anon_sym__Atomic] = ACTIONS(3116), + [anon_sym__Noreturn] = ACTIONS(3116), + [anon_sym_noreturn] = ACTIONS(3116), + [anon_sym__Nonnull] = ACTIONS(3116), + [anon_sym_mutable] = ACTIONS(3116), + [anon_sym_constinit] = ACTIONS(3116), + [anon_sym_consteval] = ACTIONS(3116), + [anon_sym_alignas] = ACTIONS(3116), + [anon_sym__Alignas] = ACTIONS(3116), + [sym_primitive_type] = ACTIONS(3116), + [anon_sym_enum] = ACTIONS(3116), + [anon_sym_class] = ACTIONS(3116), + [anon_sym_struct] = ACTIONS(3116), + [anon_sym_union] = ACTIONS(3116), + [anon_sym_if] = ACTIONS(3116), + [anon_sym_switch] = ACTIONS(3116), + [anon_sym_case] = ACTIONS(3116), + [anon_sym_default] = ACTIONS(3116), + [anon_sym_while] = ACTIONS(3116), + [anon_sym_do] = ACTIONS(3116), + [anon_sym_for] = ACTIONS(3116), + [anon_sym_return] = ACTIONS(3116), + [anon_sym_break] = ACTIONS(3116), + [anon_sym_continue] = ACTIONS(3116), + [anon_sym_goto] = ACTIONS(3116), + [anon_sym___try] = ACTIONS(3116), + [anon_sym___leave] = ACTIONS(3116), + [anon_sym_not] = ACTIONS(3116), + [anon_sym_compl] = ACTIONS(3116), + [anon_sym_DASH_DASH] = ACTIONS(3118), + [anon_sym_PLUS_PLUS] = ACTIONS(3118), + [anon_sym_sizeof] = ACTIONS(3116), + [anon_sym___alignof__] = ACTIONS(3116), + [anon_sym___alignof] = ACTIONS(3116), + [anon_sym__alignof] = ACTIONS(3116), + [anon_sym_alignof] = ACTIONS(3116), + [anon_sym__Alignof] = ACTIONS(3116), + [anon_sym_offsetof] = ACTIONS(3116), + [anon_sym__Generic] = ACTIONS(3116), + [anon_sym_asm] = ACTIONS(3116), + [anon_sym___asm__] = ACTIONS(3116), + [anon_sym___asm] = ACTIONS(3116), + [sym_number_literal] = ACTIONS(3118), + [anon_sym_L_SQUOTE] = ACTIONS(3118), + [anon_sym_u_SQUOTE] = ACTIONS(3118), + [anon_sym_U_SQUOTE] = ACTIONS(3118), + [anon_sym_u8_SQUOTE] = ACTIONS(3118), + [anon_sym_SQUOTE] = ACTIONS(3118), + [anon_sym_L_DQUOTE] = ACTIONS(3118), + [anon_sym_u_DQUOTE] = ACTIONS(3118), + [anon_sym_U_DQUOTE] = ACTIONS(3118), + [anon_sym_u8_DQUOTE] = ACTIONS(3118), + [anon_sym_DQUOTE] = ACTIONS(3118), + [sym_true] = ACTIONS(3116), + [sym_false] = ACTIONS(3116), + [anon_sym_NULL] = ACTIONS(3116), + [anon_sym_nullptr] = ACTIONS(3116), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3116), + [anon_sym_decltype] = ACTIONS(3116), + [anon_sym_explicit] = ACTIONS(3116), + [anon_sym_typename] = ACTIONS(3116), + [anon_sym_template] = ACTIONS(3116), + [anon_sym_operator] = ACTIONS(3116), + [anon_sym_try] = ACTIONS(3116), + [anon_sym_delete] = ACTIONS(3116), + [anon_sym_throw] = ACTIONS(3116), + [anon_sym_namespace] = ACTIONS(3116), + [anon_sym_static_assert] = ACTIONS(3116), + [anon_sym_concept] = ACTIONS(3116), + [anon_sym_co_return] = ACTIONS(3116), + [anon_sym_co_yield] = ACTIONS(3116), + [anon_sym_R_DQUOTE] = ACTIONS(3118), + [anon_sym_LR_DQUOTE] = ACTIONS(3118), + [anon_sym_uR_DQUOTE] = ACTIONS(3118), + [anon_sym_UR_DQUOTE] = ACTIONS(3118), + [anon_sym_u8R_DQUOTE] = ACTIONS(3118), + [anon_sym_co_await] = ACTIONS(3116), + [anon_sym_new] = ACTIONS(3116), + [anon_sym_requires] = ACTIONS(3116), + [sym_this] = ACTIONS(3116), }, - [749] = { - [sym_identifier] = ACTIONS(3027), - [aux_sym_preproc_include_token1] = ACTIONS(3027), - [aux_sym_preproc_def_token1] = ACTIONS(3027), - [aux_sym_preproc_if_token1] = ACTIONS(3027), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3027), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3027), - [sym_preproc_directive] = ACTIONS(3027), - [anon_sym_LPAREN2] = ACTIONS(3029), - [anon_sym_BANG] = ACTIONS(3029), - [anon_sym_TILDE] = ACTIONS(3029), - [anon_sym_DASH] = ACTIONS(3027), - [anon_sym_PLUS] = ACTIONS(3027), - [anon_sym_STAR] = ACTIONS(3029), - [anon_sym_AMP_AMP] = ACTIONS(3029), - [anon_sym_AMP] = ACTIONS(3027), - [anon_sym_SEMI] = ACTIONS(3029), - [anon_sym___extension__] = ACTIONS(3027), - [anon_sym_typedef] = ACTIONS(3027), - [anon_sym_virtual] = ACTIONS(3027), - [anon_sym_extern] = ACTIONS(3027), - [anon_sym___attribute__] = ACTIONS(3027), - [anon_sym___attribute] = ACTIONS(3027), - [anon_sym_using] = ACTIONS(3027), - [anon_sym_COLON_COLON] = ACTIONS(3029), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3029), - [anon_sym___declspec] = ACTIONS(3027), - [anon_sym___based] = ACTIONS(3027), - [anon_sym___cdecl] = ACTIONS(3027), - [anon_sym___clrcall] = ACTIONS(3027), - [anon_sym___stdcall] = ACTIONS(3027), - [anon_sym___fastcall] = ACTIONS(3027), - [anon_sym___thiscall] = ACTIONS(3027), - [anon_sym___vectorcall] = ACTIONS(3027), - [anon_sym_LBRACE] = ACTIONS(3029), - [anon_sym_RBRACE] = ACTIONS(3029), - [anon_sym_signed] = ACTIONS(3027), - [anon_sym_unsigned] = ACTIONS(3027), - [anon_sym_long] = ACTIONS(3027), - [anon_sym_short] = ACTIONS(3027), - [anon_sym_LBRACK] = ACTIONS(3027), - [anon_sym_static] = ACTIONS(3027), - [anon_sym_register] = ACTIONS(3027), - [anon_sym_inline] = ACTIONS(3027), - [anon_sym___inline] = ACTIONS(3027), - [anon_sym___inline__] = ACTIONS(3027), - [anon_sym___forceinline] = ACTIONS(3027), - [anon_sym_thread_local] = ACTIONS(3027), - [anon_sym___thread] = ACTIONS(3027), - [anon_sym_const] = ACTIONS(3027), - [anon_sym_constexpr] = ACTIONS(3027), - [anon_sym_volatile] = ACTIONS(3027), - [anon_sym_restrict] = ACTIONS(3027), - [anon_sym___restrict__] = ACTIONS(3027), - [anon_sym__Atomic] = ACTIONS(3027), - [anon_sym__Noreturn] = ACTIONS(3027), - [anon_sym_noreturn] = ACTIONS(3027), - [anon_sym__Nonnull] = ACTIONS(3027), - [anon_sym_mutable] = ACTIONS(3027), - [anon_sym_constinit] = ACTIONS(3027), - [anon_sym_consteval] = ACTIONS(3027), - [anon_sym_alignas] = ACTIONS(3027), - [anon_sym__Alignas] = ACTIONS(3027), - [sym_primitive_type] = ACTIONS(3027), - [anon_sym_enum] = ACTIONS(3027), - [anon_sym_class] = ACTIONS(3027), - [anon_sym_struct] = ACTIONS(3027), - [anon_sym_union] = ACTIONS(3027), - [anon_sym_if] = ACTIONS(3027), - [anon_sym_switch] = ACTIONS(3027), - [anon_sym_case] = ACTIONS(3027), - [anon_sym_default] = ACTIONS(3027), - [anon_sym_while] = ACTIONS(3027), - [anon_sym_do] = ACTIONS(3027), - [anon_sym_for] = ACTIONS(3027), - [anon_sym_return] = ACTIONS(3027), - [anon_sym_break] = ACTIONS(3027), - [anon_sym_continue] = ACTIONS(3027), - [anon_sym_goto] = ACTIONS(3027), - [anon_sym___try] = ACTIONS(3027), - [anon_sym___leave] = ACTIONS(3027), - [anon_sym_not] = ACTIONS(3027), - [anon_sym_compl] = ACTIONS(3027), - [anon_sym_DASH_DASH] = ACTIONS(3029), - [anon_sym_PLUS_PLUS] = ACTIONS(3029), - [anon_sym_sizeof] = ACTIONS(3027), - [anon_sym___alignof__] = ACTIONS(3027), - [anon_sym___alignof] = ACTIONS(3027), - [anon_sym__alignof] = ACTIONS(3027), - [anon_sym_alignof] = ACTIONS(3027), - [anon_sym__Alignof] = ACTIONS(3027), - [anon_sym_offsetof] = ACTIONS(3027), - [anon_sym__Generic] = ACTIONS(3027), - [anon_sym_asm] = ACTIONS(3027), - [anon_sym___asm__] = ACTIONS(3027), - [anon_sym___asm] = ACTIONS(3027), - [sym_number_literal] = ACTIONS(3029), - [anon_sym_L_SQUOTE] = ACTIONS(3029), - [anon_sym_u_SQUOTE] = ACTIONS(3029), - [anon_sym_U_SQUOTE] = ACTIONS(3029), - [anon_sym_u8_SQUOTE] = ACTIONS(3029), - [anon_sym_SQUOTE] = ACTIONS(3029), - [anon_sym_L_DQUOTE] = ACTIONS(3029), - [anon_sym_u_DQUOTE] = ACTIONS(3029), - [anon_sym_U_DQUOTE] = ACTIONS(3029), - [anon_sym_u8_DQUOTE] = ACTIONS(3029), - [anon_sym_DQUOTE] = ACTIONS(3029), - [sym_true] = ACTIONS(3027), - [sym_false] = ACTIONS(3027), - [anon_sym_NULL] = ACTIONS(3027), - [anon_sym_nullptr] = ACTIONS(3027), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3027), - [anon_sym_decltype] = ACTIONS(3027), - [anon_sym_explicit] = ACTIONS(3027), - [anon_sym_typename] = ACTIONS(3027), - [anon_sym_template] = ACTIONS(3027), - [anon_sym_operator] = ACTIONS(3027), - [anon_sym_try] = ACTIONS(3027), - [anon_sym_delete] = ACTIONS(3027), - [anon_sym_throw] = ACTIONS(3027), - [anon_sym_namespace] = ACTIONS(3027), - [anon_sym_static_assert] = ACTIONS(3027), - [anon_sym_concept] = ACTIONS(3027), - [anon_sym_co_return] = ACTIONS(3027), - [anon_sym_co_yield] = ACTIONS(3027), - [anon_sym_R_DQUOTE] = ACTIONS(3029), - [anon_sym_LR_DQUOTE] = ACTIONS(3029), - [anon_sym_uR_DQUOTE] = ACTIONS(3029), - [anon_sym_UR_DQUOTE] = ACTIONS(3029), - [anon_sym_u8R_DQUOTE] = ACTIONS(3029), - [anon_sym_co_await] = ACTIONS(3027), - [anon_sym_new] = ACTIONS(3027), - [anon_sym_requires] = ACTIONS(3027), - [sym_this] = ACTIONS(3027), + [783] = { + [sym_identifier] = ACTIONS(2823), + [aux_sym_preproc_include_token1] = ACTIONS(2823), + [aux_sym_preproc_def_token1] = ACTIONS(2823), + [aux_sym_preproc_if_token1] = ACTIONS(2823), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2823), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2823), + [sym_preproc_directive] = ACTIONS(2823), + [anon_sym_LPAREN2] = ACTIONS(2825), + [anon_sym_BANG] = ACTIONS(2825), + [anon_sym_TILDE] = ACTIONS(2825), + [anon_sym_DASH] = ACTIONS(2823), + [anon_sym_PLUS] = ACTIONS(2823), + [anon_sym_STAR] = ACTIONS(2825), + [anon_sym_AMP_AMP] = ACTIONS(2825), + [anon_sym_AMP] = ACTIONS(2823), + [anon_sym_SEMI] = ACTIONS(2825), + [anon_sym___extension__] = ACTIONS(2823), + [anon_sym_typedef] = ACTIONS(2823), + [anon_sym_virtual] = ACTIONS(2823), + [anon_sym_extern] = ACTIONS(2823), + [anon_sym___attribute__] = ACTIONS(2823), + [anon_sym___attribute] = ACTIONS(2823), + [anon_sym_using] = ACTIONS(2823), + [anon_sym_COLON_COLON] = ACTIONS(2825), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2825), + [anon_sym___declspec] = ACTIONS(2823), + [anon_sym___based] = ACTIONS(2823), + [anon_sym___cdecl] = ACTIONS(2823), + [anon_sym___clrcall] = ACTIONS(2823), + [anon_sym___stdcall] = ACTIONS(2823), + [anon_sym___fastcall] = ACTIONS(2823), + [anon_sym___thiscall] = ACTIONS(2823), + [anon_sym___vectorcall] = ACTIONS(2823), + [anon_sym_LBRACE] = ACTIONS(2825), + [anon_sym_RBRACE] = ACTIONS(2825), + [anon_sym_signed] = ACTIONS(2823), + [anon_sym_unsigned] = ACTIONS(2823), + [anon_sym_long] = ACTIONS(2823), + [anon_sym_short] = ACTIONS(2823), + [anon_sym_LBRACK] = ACTIONS(2823), + [anon_sym_static] = ACTIONS(2823), + [anon_sym_register] = ACTIONS(2823), + [anon_sym_inline] = ACTIONS(2823), + [anon_sym___inline] = ACTIONS(2823), + [anon_sym___inline__] = ACTIONS(2823), + [anon_sym___forceinline] = ACTIONS(2823), + [anon_sym_thread_local] = ACTIONS(2823), + [anon_sym___thread] = ACTIONS(2823), + [anon_sym_const] = ACTIONS(2823), + [anon_sym_constexpr] = ACTIONS(2823), + [anon_sym_volatile] = ACTIONS(2823), + [anon_sym_restrict] = ACTIONS(2823), + [anon_sym___restrict__] = ACTIONS(2823), + [anon_sym__Atomic] = ACTIONS(2823), + [anon_sym__Noreturn] = ACTIONS(2823), + [anon_sym_noreturn] = ACTIONS(2823), + [anon_sym__Nonnull] = ACTIONS(2823), + [anon_sym_mutable] = ACTIONS(2823), + [anon_sym_constinit] = ACTIONS(2823), + [anon_sym_consteval] = ACTIONS(2823), + [anon_sym_alignas] = ACTIONS(2823), + [anon_sym__Alignas] = ACTIONS(2823), + [sym_primitive_type] = ACTIONS(2823), + [anon_sym_enum] = ACTIONS(2823), + [anon_sym_class] = ACTIONS(2823), + [anon_sym_struct] = ACTIONS(2823), + [anon_sym_union] = ACTIONS(2823), + [anon_sym_if] = ACTIONS(2823), + [anon_sym_switch] = ACTIONS(2823), + [anon_sym_case] = ACTIONS(2823), + [anon_sym_default] = ACTIONS(2823), + [anon_sym_while] = ACTIONS(2823), + [anon_sym_do] = ACTIONS(2823), + [anon_sym_for] = ACTIONS(2823), + [anon_sym_return] = ACTIONS(2823), + [anon_sym_break] = ACTIONS(2823), + [anon_sym_continue] = ACTIONS(2823), + [anon_sym_goto] = ACTIONS(2823), + [anon_sym___try] = ACTIONS(2823), + [anon_sym___leave] = ACTIONS(2823), + [anon_sym_not] = ACTIONS(2823), + [anon_sym_compl] = ACTIONS(2823), + [anon_sym_DASH_DASH] = ACTIONS(2825), + [anon_sym_PLUS_PLUS] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2823), + [anon_sym___alignof__] = ACTIONS(2823), + [anon_sym___alignof] = ACTIONS(2823), + [anon_sym__alignof] = ACTIONS(2823), + [anon_sym_alignof] = ACTIONS(2823), + [anon_sym__Alignof] = ACTIONS(2823), + [anon_sym_offsetof] = ACTIONS(2823), + [anon_sym__Generic] = ACTIONS(2823), + [anon_sym_asm] = ACTIONS(2823), + [anon_sym___asm__] = ACTIONS(2823), + [anon_sym___asm] = ACTIONS(2823), + [sym_number_literal] = ACTIONS(2825), + [anon_sym_L_SQUOTE] = ACTIONS(2825), + [anon_sym_u_SQUOTE] = ACTIONS(2825), + [anon_sym_U_SQUOTE] = ACTIONS(2825), + [anon_sym_u8_SQUOTE] = ACTIONS(2825), + [anon_sym_SQUOTE] = ACTIONS(2825), + [anon_sym_L_DQUOTE] = ACTIONS(2825), + [anon_sym_u_DQUOTE] = ACTIONS(2825), + [anon_sym_U_DQUOTE] = ACTIONS(2825), + [anon_sym_u8_DQUOTE] = ACTIONS(2825), + [anon_sym_DQUOTE] = ACTIONS(2825), + [sym_true] = ACTIONS(2823), + [sym_false] = ACTIONS(2823), + [anon_sym_NULL] = ACTIONS(2823), + [anon_sym_nullptr] = ACTIONS(2823), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2823), + [anon_sym_decltype] = ACTIONS(2823), + [anon_sym_explicit] = ACTIONS(2823), + [anon_sym_typename] = ACTIONS(2823), + [anon_sym_template] = ACTIONS(2823), + [anon_sym_operator] = ACTIONS(2823), + [anon_sym_try] = ACTIONS(2823), + [anon_sym_delete] = ACTIONS(2823), + [anon_sym_throw] = ACTIONS(2823), + [anon_sym_namespace] = ACTIONS(2823), + [anon_sym_static_assert] = ACTIONS(2823), + [anon_sym_concept] = ACTIONS(2823), + [anon_sym_co_return] = ACTIONS(2823), + [anon_sym_co_yield] = ACTIONS(2823), + [anon_sym_R_DQUOTE] = ACTIONS(2825), + [anon_sym_LR_DQUOTE] = ACTIONS(2825), + [anon_sym_uR_DQUOTE] = ACTIONS(2825), + [anon_sym_UR_DQUOTE] = ACTIONS(2825), + [anon_sym_u8R_DQUOTE] = ACTIONS(2825), + [anon_sym_co_await] = ACTIONS(2823), + [anon_sym_new] = ACTIONS(2823), + [anon_sym_requires] = ACTIONS(2823), + [sym_this] = ACTIONS(2823), }, - [750] = { - [sym_identifier] = ACTIONS(3031), - [aux_sym_preproc_include_token1] = ACTIONS(3031), - [aux_sym_preproc_def_token1] = ACTIONS(3031), - [aux_sym_preproc_if_token1] = ACTIONS(3031), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3031), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3031), - [sym_preproc_directive] = ACTIONS(3031), - [anon_sym_LPAREN2] = ACTIONS(3033), - [anon_sym_BANG] = ACTIONS(3033), - [anon_sym_TILDE] = ACTIONS(3033), - [anon_sym_DASH] = ACTIONS(3031), - [anon_sym_PLUS] = ACTIONS(3031), - [anon_sym_STAR] = ACTIONS(3033), - [anon_sym_AMP_AMP] = ACTIONS(3033), - [anon_sym_AMP] = ACTIONS(3031), - [anon_sym_SEMI] = ACTIONS(3033), - [anon_sym___extension__] = ACTIONS(3031), - [anon_sym_typedef] = ACTIONS(3031), - [anon_sym_virtual] = ACTIONS(3031), - [anon_sym_extern] = ACTIONS(3031), - [anon_sym___attribute__] = ACTIONS(3031), - [anon_sym___attribute] = ACTIONS(3031), - [anon_sym_using] = ACTIONS(3031), - [anon_sym_COLON_COLON] = ACTIONS(3033), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3033), - [anon_sym___declspec] = ACTIONS(3031), - [anon_sym___based] = ACTIONS(3031), - [anon_sym___cdecl] = ACTIONS(3031), - [anon_sym___clrcall] = ACTIONS(3031), - [anon_sym___stdcall] = ACTIONS(3031), - [anon_sym___fastcall] = ACTIONS(3031), - [anon_sym___thiscall] = ACTIONS(3031), - [anon_sym___vectorcall] = ACTIONS(3031), - [anon_sym_LBRACE] = ACTIONS(3033), - [anon_sym_RBRACE] = ACTIONS(3033), - [anon_sym_signed] = ACTIONS(3031), - [anon_sym_unsigned] = ACTIONS(3031), - [anon_sym_long] = ACTIONS(3031), - [anon_sym_short] = ACTIONS(3031), - [anon_sym_LBRACK] = ACTIONS(3031), - [anon_sym_static] = ACTIONS(3031), - [anon_sym_register] = ACTIONS(3031), - [anon_sym_inline] = ACTIONS(3031), - [anon_sym___inline] = ACTIONS(3031), - [anon_sym___inline__] = ACTIONS(3031), - [anon_sym___forceinline] = ACTIONS(3031), - [anon_sym_thread_local] = ACTIONS(3031), - [anon_sym___thread] = ACTIONS(3031), - [anon_sym_const] = ACTIONS(3031), - [anon_sym_constexpr] = ACTIONS(3031), - [anon_sym_volatile] = ACTIONS(3031), - [anon_sym_restrict] = ACTIONS(3031), - [anon_sym___restrict__] = ACTIONS(3031), - [anon_sym__Atomic] = ACTIONS(3031), - [anon_sym__Noreturn] = ACTIONS(3031), - [anon_sym_noreturn] = ACTIONS(3031), - [anon_sym__Nonnull] = ACTIONS(3031), - [anon_sym_mutable] = ACTIONS(3031), - [anon_sym_constinit] = ACTIONS(3031), - [anon_sym_consteval] = ACTIONS(3031), - [anon_sym_alignas] = ACTIONS(3031), - [anon_sym__Alignas] = ACTIONS(3031), - [sym_primitive_type] = ACTIONS(3031), - [anon_sym_enum] = ACTIONS(3031), - [anon_sym_class] = ACTIONS(3031), - [anon_sym_struct] = ACTIONS(3031), - [anon_sym_union] = ACTIONS(3031), - [anon_sym_if] = ACTIONS(3031), - [anon_sym_switch] = ACTIONS(3031), - [anon_sym_case] = ACTIONS(3031), - [anon_sym_default] = ACTIONS(3031), - [anon_sym_while] = ACTIONS(3031), - [anon_sym_do] = ACTIONS(3031), - [anon_sym_for] = ACTIONS(3031), - [anon_sym_return] = ACTIONS(3031), - [anon_sym_break] = ACTIONS(3031), - [anon_sym_continue] = ACTIONS(3031), - [anon_sym_goto] = ACTIONS(3031), - [anon_sym___try] = ACTIONS(3031), - [anon_sym___leave] = ACTIONS(3031), - [anon_sym_not] = ACTIONS(3031), - [anon_sym_compl] = ACTIONS(3031), - [anon_sym_DASH_DASH] = ACTIONS(3033), - [anon_sym_PLUS_PLUS] = ACTIONS(3033), - [anon_sym_sizeof] = ACTIONS(3031), - [anon_sym___alignof__] = ACTIONS(3031), - [anon_sym___alignof] = ACTIONS(3031), - [anon_sym__alignof] = ACTIONS(3031), - [anon_sym_alignof] = ACTIONS(3031), - [anon_sym__Alignof] = ACTIONS(3031), - [anon_sym_offsetof] = ACTIONS(3031), - [anon_sym__Generic] = ACTIONS(3031), - [anon_sym_asm] = ACTIONS(3031), - [anon_sym___asm__] = ACTIONS(3031), - [anon_sym___asm] = ACTIONS(3031), - [sym_number_literal] = ACTIONS(3033), - [anon_sym_L_SQUOTE] = ACTIONS(3033), - [anon_sym_u_SQUOTE] = ACTIONS(3033), - [anon_sym_U_SQUOTE] = ACTIONS(3033), - [anon_sym_u8_SQUOTE] = ACTIONS(3033), - [anon_sym_SQUOTE] = ACTIONS(3033), - [anon_sym_L_DQUOTE] = ACTIONS(3033), - [anon_sym_u_DQUOTE] = ACTIONS(3033), - [anon_sym_U_DQUOTE] = ACTIONS(3033), - [anon_sym_u8_DQUOTE] = ACTIONS(3033), - [anon_sym_DQUOTE] = ACTIONS(3033), - [sym_true] = ACTIONS(3031), - [sym_false] = ACTIONS(3031), - [anon_sym_NULL] = ACTIONS(3031), - [anon_sym_nullptr] = ACTIONS(3031), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3031), - [anon_sym_decltype] = ACTIONS(3031), - [anon_sym_explicit] = ACTIONS(3031), - [anon_sym_typename] = ACTIONS(3031), - [anon_sym_template] = ACTIONS(3031), - [anon_sym_operator] = ACTIONS(3031), - [anon_sym_try] = ACTIONS(3031), - [anon_sym_delete] = ACTIONS(3031), - [anon_sym_throw] = ACTIONS(3031), - [anon_sym_namespace] = ACTIONS(3031), - [anon_sym_static_assert] = ACTIONS(3031), - [anon_sym_concept] = ACTIONS(3031), - [anon_sym_co_return] = ACTIONS(3031), - [anon_sym_co_yield] = ACTIONS(3031), - [anon_sym_R_DQUOTE] = ACTIONS(3033), - [anon_sym_LR_DQUOTE] = ACTIONS(3033), - [anon_sym_uR_DQUOTE] = ACTIONS(3033), - [anon_sym_UR_DQUOTE] = ACTIONS(3033), - [anon_sym_u8R_DQUOTE] = ACTIONS(3033), - [anon_sym_co_await] = ACTIONS(3031), - [anon_sym_new] = ACTIONS(3031), - [anon_sym_requires] = ACTIONS(3031), - [sym_this] = ACTIONS(3031), + [784] = { + [sym_identifier] = ACTIONS(2827), + [aux_sym_preproc_include_token1] = ACTIONS(2827), + [aux_sym_preproc_def_token1] = ACTIONS(2827), + [aux_sym_preproc_if_token1] = ACTIONS(2827), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2827), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2827), + [sym_preproc_directive] = ACTIONS(2827), + [anon_sym_LPAREN2] = ACTIONS(2829), + [anon_sym_BANG] = ACTIONS(2829), + [anon_sym_TILDE] = ACTIONS(2829), + [anon_sym_DASH] = ACTIONS(2827), + [anon_sym_PLUS] = ACTIONS(2827), + [anon_sym_STAR] = ACTIONS(2829), + [anon_sym_AMP_AMP] = ACTIONS(2829), + [anon_sym_AMP] = ACTIONS(2827), + [anon_sym_SEMI] = ACTIONS(2829), + [anon_sym___extension__] = ACTIONS(2827), + [anon_sym_typedef] = ACTIONS(2827), + [anon_sym_virtual] = ACTIONS(2827), + [anon_sym_extern] = ACTIONS(2827), + [anon_sym___attribute__] = ACTIONS(2827), + [anon_sym___attribute] = ACTIONS(2827), + [anon_sym_using] = ACTIONS(2827), + [anon_sym_COLON_COLON] = ACTIONS(2829), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2829), + [anon_sym___declspec] = ACTIONS(2827), + [anon_sym___based] = ACTIONS(2827), + [anon_sym___cdecl] = ACTIONS(2827), + [anon_sym___clrcall] = ACTIONS(2827), + [anon_sym___stdcall] = ACTIONS(2827), + [anon_sym___fastcall] = ACTIONS(2827), + [anon_sym___thiscall] = ACTIONS(2827), + [anon_sym___vectorcall] = ACTIONS(2827), + [anon_sym_LBRACE] = ACTIONS(2829), + [anon_sym_RBRACE] = ACTIONS(2829), + [anon_sym_signed] = ACTIONS(2827), + [anon_sym_unsigned] = ACTIONS(2827), + [anon_sym_long] = ACTIONS(2827), + [anon_sym_short] = ACTIONS(2827), + [anon_sym_LBRACK] = ACTIONS(2827), + [anon_sym_static] = ACTIONS(2827), + [anon_sym_register] = ACTIONS(2827), + [anon_sym_inline] = ACTIONS(2827), + [anon_sym___inline] = ACTIONS(2827), + [anon_sym___inline__] = ACTIONS(2827), + [anon_sym___forceinline] = ACTIONS(2827), + [anon_sym_thread_local] = ACTIONS(2827), + [anon_sym___thread] = ACTIONS(2827), + [anon_sym_const] = ACTIONS(2827), + [anon_sym_constexpr] = ACTIONS(2827), + [anon_sym_volatile] = ACTIONS(2827), + [anon_sym_restrict] = ACTIONS(2827), + [anon_sym___restrict__] = ACTIONS(2827), + [anon_sym__Atomic] = ACTIONS(2827), + [anon_sym__Noreturn] = ACTIONS(2827), + [anon_sym_noreturn] = ACTIONS(2827), + [anon_sym__Nonnull] = ACTIONS(2827), + [anon_sym_mutable] = ACTIONS(2827), + [anon_sym_constinit] = ACTIONS(2827), + [anon_sym_consteval] = ACTIONS(2827), + [anon_sym_alignas] = ACTIONS(2827), + [anon_sym__Alignas] = ACTIONS(2827), + [sym_primitive_type] = ACTIONS(2827), + [anon_sym_enum] = ACTIONS(2827), + [anon_sym_class] = ACTIONS(2827), + [anon_sym_struct] = ACTIONS(2827), + [anon_sym_union] = ACTIONS(2827), + [anon_sym_if] = ACTIONS(2827), + [anon_sym_switch] = ACTIONS(2827), + [anon_sym_case] = ACTIONS(2827), + [anon_sym_default] = ACTIONS(2827), + [anon_sym_while] = ACTIONS(2827), + [anon_sym_do] = ACTIONS(2827), + [anon_sym_for] = ACTIONS(2827), + [anon_sym_return] = ACTIONS(2827), + [anon_sym_break] = ACTIONS(2827), + [anon_sym_continue] = ACTIONS(2827), + [anon_sym_goto] = ACTIONS(2827), + [anon_sym___try] = ACTIONS(2827), + [anon_sym___leave] = ACTIONS(2827), + [anon_sym_not] = ACTIONS(2827), + [anon_sym_compl] = ACTIONS(2827), + [anon_sym_DASH_DASH] = ACTIONS(2829), + [anon_sym_PLUS_PLUS] = ACTIONS(2829), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym___alignof__] = ACTIONS(2827), + [anon_sym___alignof] = ACTIONS(2827), + [anon_sym__alignof] = ACTIONS(2827), + [anon_sym_alignof] = ACTIONS(2827), + [anon_sym__Alignof] = ACTIONS(2827), + [anon_sym_offsetof] = ACTIONS(2827), + [anon_sym__Generic] = ACTIONS(2827), + [anon_sym_asm] = ACTIONS(2827), + [anon_sym___asm__] = ACTIONS(2827), + [anon_sym___asm] = ACTIONS(2827), + [sym_number_literal] = ACTIONS(2829), + [anon_sym_L_SQUOTE] = ACTIONS(2829), + [anon_sym_u_SQUOTE] = ACTIONS(2829), + [anon_sym_U_SQUOTE] = ACTIONS(2829), + [anon_sym_u8_SQUOTE] = ACTIONS(2829), + [anon_sym_SQUOTE] = ACTIONS(2829), + [anon_sym_L_DQUOTE] = ACTIONS(2829), + [anon_sym_u_DQUOTE] = ACTIONS(2829), + [anon_sym_U_DQUOTE] = ACTIONS(2829), + [anon_sym_u8_DQUOTE] = ACTIONS(2829), + [anon_sym_DQUOTE] = ACTIONS(2829), + [sym_true] = ACTIONS(2827), + [sym_false] = ACTIONS(2827), + [anon_sym_NULL] = ACTIONS(2827), + [anon_sym_nullptr] = ACTIONS(2827), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2827), + [anon_sym_decltype] = ACTIONS(2827), + [anon_sym_explicit] = ACTIONS(2827), + [anon_sym_typename] = ACTIONS(2827), + [anon_sym_template] = ACTIONS(2827), + [anon_sym_operator] = ACTIONS(2827), + [anon_sym_try] = ACTIONS(2827), + [anon_sym_delete] = ACTIONS(2827), + [anon_sym_throw] = ACTIONS(2827), + [anon_sym_namespace] = ACTIONS(2827), + [anon_sym_static_assert] = ACTIONS(2827), + [anon_sym_concept] = ACTIONS(2827), + [anon_sym_co_return] = ACTIONS(2827), + [anon_sym_co_yield] = ACTIONS(2827), + [anon_sym_R_DQUOTE] = ACTIONS(2829), + [anon_sym_LR_DQUOTE] = ACTIONS(2829), + [anon_sym_uR_DQUOTE] = ACTIONS(2829), + [anon_sym_UR_DQUOTE] = ACTIONS(2829), + [anon_sym_u8R_DQUOTE] = ACTIONS(2829), + [anon_sym_co_await] = ACTIONS(2827), + [anon_sym_new] = ACTIONS(2827), + [anon_sym_requires] = ACTIONS(2827), + [sym_this] = ACTIONS(2827), }, - [751] = { - [sym_identifier] = ACTIONS(3035), - [aux_sym_preproc_include_token1] = ACTIONS(3035), - [aux_sym_preproc_def_token1] = ACTIONS(3035), - [aux_sym_preproc_if_token1] = ACTIONS(3035), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3035), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3035), - [sym_preproc_directive] = ACTIONS(3035), - [anon_sym_LPAREN2] = ACTIONS(3037), - [anon_sym_BANG] = ACTIONS(3037), - [anon_sym_TILDE] = ACTIONS(3037), - [anon_sym_DASH] = ACTIONS(3035), - [anon_sym_PLUS] = ACTIONS(3035), - [anon_sym_STAR] = ACTIONS(3037), - [anon_sym_AMP_AMP] = ACTIONS(3037), - [anon_sym_AMP] = ACTIONS(3035), - [anon_sym_SEMI] = ACTIONS(3037), - [anon_sym___extension__] = ACTIONS(3035), - [anon_sym_typedef] = ACTIONS(3035), - [anon_sym_virtual] = ACTIONS(3035), - [anon_sym_extern] = ACTIONS(3035), - [anon_sym___attribute__] = ACTIONS(3035), - [anon_sym___attribute] = ACTIONS(3035), - [anon_sym_using] = ACTIONS(3035), - [anon_sym_COLON_COLON] = ACTIONS(3037), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3037), - [anon_sym___declspec] = ACTIONS(3035), - [anon_sym___based] = ACTIONS(3035), - [anon_sym___cdecl] = ACTIONS(3035), - [anon_sym___clrcall] = ACTIONS(3035), - [anon_sym___stdcall] = ACTIONS(3035), - [anon_sym___fastcall] = ACTIONS(3035), - [anon_sym___thiscall] = ACTIONS(3035), - [anon_sym___vectorcall] = ACTIONS(3035), - [anon_sym_LBRACE] = ACTIONS(3037), - [anon_sym_RBRACE] = ACTIONS(3037), - [anon_sym_signed] = ACTIONS(3035), - [anon_sym_unsigned] = ACTIONS(3035), - [anon_sym_long] = ACTIONS(3035), - [anon_sym_short] = ACTIONS(3035), - [anon_sym_LBRACK] = ACTIONS(3035), - [anon_sym_static] = ACTIONS(3035), - [anon_sym_register] = ACTIONS(3035), - [anon_sym_inline] = ACTIONS(3035), - [anon_sym___inline] = ACTIONS(3035), - [anon_sym___inline__] = ACTIONS(3035), - [anon_sym___forceinline] = ACTIONS(3035), - [anon_sym_thread_local] = ACTIONS(3035), - [anon_sym___thread] = ACTIONS(3035), - [anon_sym_const] = ACTIONS(3035), - [anon_sym_constexpr] = ACTIONS(3035), - [anon_sym_volatile] = ACTIONS(3035), - [anon_sym_restrict] = ACTIONS(3035), - [anon_sym___restrict__] = ACTIONS(3035), - [anon_sym__Atomic] = ACTIONS(3035), - [anon_sym__Noreturn] = ACTIONS(3035), - [anon_sym_noreturn] = ACTIONS(3035), - [anon_sym__Nonnull] = ACTIONS(3035), - [anon_sym_mutable] = ACTIONS(3035), - [anon_sym_constinit] = ACTIONS(3035), - [anon_sym_consteval] = ACTIONS(3035), - [anon_sym_alignas] = ACTIONS(3035), - [anon_sym__Alignas] = ACTIONS(3035), - [sym_primitive_type] = ACTIONS(3035), - [anon_sym_enum] = ACTIONS(3035), - [anon_sym_class] = ACTIONS(3035), - [anon_sym_struct] = ACTIONS(3035), - [anon_sym_union] = ACTIONS(3035), - [anon_sym_if] = ACTIONS(3035), - [anon_sym_switch] = ACTIONS(3035), - [anon_sym_case] = ACTIONS(3035), - [anon_sym_default] = ACTIONS(3035), - [anon_sym_while] = ACTIONS(3035), - [anon_sym_do] = ACTIONS(3035), - [anon_sym_for] = ACTIONS(3035), - [anon_sym_return] = ACTIONS(3035), - [anon_sym_break] = ACTIONS(3035), - [anon_sym_continue] = ACTIONS(3035), - [anon_sym_goto] = ACTIONS(3035), - [anon_sym___try] = ACTIONS(3035), - [anon_sym___leave] = ACTIONS(3035), - [anon_sym_not] = ACTIONS(3035), - [anon_sym_compl] = ACTIONS(3035), - [anon_sym_DASH_DASH] = ACTIONS(3037), - [anon_sym_PLUS_PLUS] = ACTIONS(3037), - [anon_sym_sizeof] = ACTIONS(3035), - [anon_sym___alignof__] = ACTIONS(3035), - [anon_sym___alignof] = ACTIONS(3035), - [anon_sym__alignof] = ACTIONS(3035), - [anon_sym_alignof] = ACTIONS(3035), - [anon_sym__Alignof] = ACTIONS(3035), - [anon_sym_offsetof] = ACTIONS(3035), - [anon_sym__Generic] = ACTIONS(3035), - [anon_sym_asm] = ACTIONS(3035), - [anon_sym___asm__] = ACTIONS(3035), - [anon_sym___asm] = ACTIONS(3035), - [sym_number_literal] = ACTIONS(3037), - [anon_sym_L_SQUOTE] = ACTIONS(3037), - [anon_sym_u_SQUOTE] = ACTIONS(3037), - [anon_sym_U_SQUOTE] = ACTIONS(3037), - [anon_sym_u8_SQUOTE] = ACTIONS(3037), - [anon_sym_SQUOTE] = ACTIONS(3037), - [anon_sym_L_DQUOTE] = ACTIONS(3037), - [anon_sym_u_DQUOTE] = ACTIONS(3037), - [anon_sym_U_DQUOTE] = ACTIONS(3037), - [anon_sym_u8_DQUOTE] = ACTIONS(3037), - [anon_sym_DQUOTE] = ACTIONS(3037), - [sym_true] = ACTIONS(3035), - [sym_false] = ACTIONS(3035), - [anon_sym_NULL] = ACTIONS(3035), - [anon_sym_nullptr] = ACTIONS(3035), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3035), - [anon_sym_decltype] = ACTIONS(3035), - [anon_sym_explicit] = ACTIONS(3035), - [anon_sym_typename] = ACTIONS(3035), - [anon_sym_template] = ACTIONS(3035), - [anon_sym_operator] = ACTIONS(3035), - [anon_sym_try] = ACTIONS(3035), - [anon_sym_delete] = ACTIONS(3035), - [anon_sym_throw] = ACTIONS(3035), - [anon_sym_namespace] = ACTIONS(3035), - [anon_sym_static_assert] = ACTIONS(3035), - [anon_sym_concept] = ACTIONS(3035), - [anon_sym_co_return] = ACTIONS(3035), - [anon_sym_co_yield] = ACTIONS(3035), - [anon_sym_R_DQUOTE] = ACTIONS(3037), - [anon_sym_LR_DQUOTE] = ACTIONS(3037), - [anon_sym_uR_DQUOTE] = ACTIONS(3037), - [anon_sym_UR_DQUOTE] = ACTIONS(3037), - [anon_sym_u8R_DQUOTE] = ACTIONS(3037), - [anon_sym_co_await] = ACTIONS(3035), - [anon_sym_new] = ACTIONS(3035), - [anon_sym_requires] = ACTIONS(3035), - [sym_this] = ACTIONS(3035), + [785] = { + [sym_identifier] = ACTIONS(2831), + [aux_sym_preproc_include_token1] = ACTIONS(2831), + [aux_sym_preproc_def_token1] = ACTIONS(2831), + [aux_sym_preproc_if_token1] = ACTIONS(2831), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2831), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2831), + [sym_preproc_directive] = ACTIONS(2831), + [anon_sym_LPAREN2] = ACTIONS(2833), + [anon_sym_BANG] = ACTIONS(2833), + [anon_sym_TILDE] = ACTIONS(2833), + [anon_sym_DASH] = ACTIONS(2831), + [anon_sym_PLUS] = ACTIONS(2831), + [anon_sym_STAR] = ACTIONS(2833), + [anon_sym_AMP_AMP] = ACTIONS(2833), + [anon_sym_AMP] = ACTIONS(2831), + [anon_sym_SEMI] = ACTIONS(2833), + [anon_sym___extension__] = ACTIONS(2831), + [anon_sym_typedef] = ACTIONS(2831), + [anon_sym_virtual] = ACTIONS(2831), + [anon_sym_extern] = ACTIONS(2831), + [anon_sym___attribute__] = ACTIONS(2831), + [anon_sym___attribute] = ACTIONS(2831), + [anon_sym_using] = ACTIONS(2831), + [anon_sym_COLON_COLON] = ACTIONS(2833), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2833), + [anon_sym___declspec] = ACTIONS(2831), + [anon_sym___based] = ACTIONS(2831), + [anon_sym___cdecl] = ACTIONS(2831), + [anon_sym___clrcall] = ACTIONS(2831), + [anon_sym___stdcall] = ACTIONS(2831), + [anon_sym___fastcall] = ACTIONS(2831), + [anon_sym___thiscall] = ACTIONS(2831), + [anon_sym___vectorcall] = ACTIONS(2831), + [anon_sym_LBRACE] = ACTIONS(2833), + [anon_sym_RBRACE] = ACTIONS(2833), + [anon_sym_signed] = ACTIONS(2831), + [anon_sym_unsigned] = ACTIONS(2831), + [anon_sym_long] = ACTIONS(2831), + [anon_sym_short] = ACTIONS(2831), + [anon_sym_LBRACK] = ACTIONS(2831), + [anon_sym_static] = ACTIONS(2831), + [anon_sym_register] = ACTIONS(2831), + [anon_sym_inline] = ACTIONS(2831), + [anon_sym___inline] = ACTIONS(2831), + [anon_sym___inline__] = ACTIONS(2831), + [anon_sym___forceinline] = ACTIONS(2831), + [anon_sym_thread_local] = ACTIONS(2831), + [anon_sym___thread] = ACTIONS(2831), + [anon_sym_const] = ACTIONS(2831), + [anon_sym_constexpr] = ACTIONS(2831), + [anon_sym_volatile] = ACTIONS(2831), + [anon_sym_restrict] = ACTIONS(2831), + [anon_sym___restrict__] = ACTIONS(2831), + [anon_sym__Atomic] = ACTIONS(2831), + [anon_sym__Noreturn] = ACTIONS(2831), + [anon_sym_noreturn] = ACTIONS(2831), + [anon_sym__Nonnull] = ACTIONS(2831), + [anon_sym_mutable] = ACTIONS(2831), + [anon_sym_constinit] = ACTIONS(2831), + [anon_sym_consteval] = ACTIONS(2831), + [anon_sym_alignas] = ACTIONS(2831), + [anon_sym__Alignas] = ACTIONS(2831), + [sym_primitive_type] = ACTIONS(2831), + [anon_sym_enum] = ACTIONS(2831), + [anon_sym_class] = ACTIONS(2831), + [anon_sym_struct] = ACTIONS(2831), + [anon_sym_union] = ACTIONS(2831), + [anon_sym_if] = ACTIONS(2831), + [anon_sym_switch] = ACTIONS(2831), + [anon_sym_case] = ACTIONS(2831), + [anon_sym_default] = ACTIONS(2831), + [anon_sym_while] = ACTIONS(2831), + [anon_sym_do] = ACTIONS(2831), + [anon_sym_for] = ACTIONS(2831), + [anon_sym_return] = ACTIONS(2831), + [anon_sym_break] = ACTIONS(2831), + [anon_sym_continue] = ACTIONS(2831), + [anon_sym_goto] = ACTIONS(2831), + [anon_sym___try] = ACTIONS(2831), + [anon_sym___leave] = ACTIONS(2831), + [anon_sym_not] = ACTIONS(2831), + [anon_sym_compl] = ACTIONS(2831), + [anon_sym_DASH_DASH] = ACTIONS(2833), + [anon_sym_PLUS_PLUS] = ACTIONS(2833), + [anon_sym_sizeof] = ACTIONS(2831), + [anon_sym___alignof__] = ACTIONS(2831), + [anon_sym___alignof] = ACTIONS(2831), + [anon_sym__alignof] = ACTIONS(2831), + [anon_sym_alignof] = ACTIONS(2831), + [anon_sym__Alignof] = ACTIONS(2831), + [anon_sym_offsetof] = ACTIONS(2831), + [anon_sym__Generic] = ACTIONS(2831), + [anon_sym_asm] = ACTIONS(2831), + [anon_sym___asm__] = ACTIONS(2831), + [anon_sym___asm] = ACTIONS(2831), + [sym_number_literal] = ACTIONS(2833), + [anon_sym_L_SQUOTE] = ACTIONS(2833), + [anon_sym_u_SQUOTE] = ACTIONS(2833), + [anon_sym_U_SQUOTE] = ACTIONS(2833), + [anon_sym_u8_SQUOTE] = ACTIONS(2833), + [anon_sym_SQUOTE] = ACTIONS(2833), + [anon_sym_L_DQUOTE] = ACTIONS(2833), + [anon_sym_u_DQUOTE] = ACTIONS(2833), + [anon_sym_U_DQUOTE] = ACTIONS(2833), + [anon_sym_u8_DQUOTE] = ACTIONS(2833), + [anon_sym_DQUOTE] = ACTIONS(2833), + [sym_true] = ACTIONS(2831), + [sym_false] = ACTIONS(2831), + [anon_sym_NULL] = ACTIONS(2831), + [anon_sym_nullptr] = ACTIONS(2831), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2831), + [anon_sym_decltype] = ACTIONS(2831), + [anon_sym_explicit] = ACTIONS(2831), + [anon_sym_typename] = ACTIONS(2831), + [anon_sym_template] = ACTIONS(2831), + [anon_sym_operator] = ACTIONS(2831), + [anon_sym_try] = ACTIONS(2831), + [anon_sym_delete] = ACTIONS(2831), + [anon_sym_throw] = ACTIONS(2831), + [anon_sym_namespace] = ACTIONS(2831), + [anon_sym_static_assert] = ACTIONS(2831), + [anon_sym_concept] = ACTIONS(2831), + [anon_sym_co_return] = ACTIONS(2831), + [anon_sym_co_yield] = ACTIONS(2831), + [anon_sym_R_DQUOTE] = ACTIONS(2833), + [anon_sym_LR_DQUOTE] = ACTIONS(2833), + [anon_sym_uR_DQUOTE] = ACTIONS(2833), + [anon_sym_UR_DQUOTE] = ACTIONS(2833), + [anon_sym_u8R_DQUOTE] = ACTIONS(2833), + [anon_sym_co_await] = ACTIONS(2831), + [anon_sym_new] = ACTIONS(2831), + [anon_sym_requires] = ACTIONS(2831), + [sym_this] = ACTIONS(2831), }, - [752] = { - [sym_identifier] = ACTIONS(3039), - [aux_sym_preproc_include_token1] = ACTIONS(3039), - [aux_sym_preproc_def_token1] = ACTIONS(3039), - [aux_sym_preproc_if_token1] = ACTIONS(3039), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3039), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3039), - [sym_preproc_directive] = ACTIONS(3039), - [anon_sym_LPAREN2] = ACTIONS(3041), - [anon_sym_BANG] = ACTIONS(3041), - [anon_sym_TILDE] = ACTIONS(3041), - [anon_sym_DASH] = ACTIONS(3039), - [anon_sym_PLUS] = ACTIONS(3039), - [anon_sym_STAR] = ACTIONS(3041), - [anon_sym_AMP_AMP] = ACTIONS(3041), - [anon_sym_AMP] = ACTIONS(3039), - [anon_sym_SEMI] = ACTIONS(3041), - [anon_sym___extension__] = ACTIONS(3039), - [anon_sym_typedef] = ACTIONS(3039), - [anon_sym_virtual] = ACTIONS(3039), - [anon_sym_extern] = ACTIONS(3039), - [anon_sym___attribute__] = ACTIONS(3039), - [anon_sym___attribute] = ACTIONS(3039), - [anon_sym_using] = ACTIONS(3039), - [anon_sym_COLON_COLON] = ACTIONS(3041), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3041), - [anon_sym___declspec] = ACTIONS(3039), - [anon_sym___based] = ACTIONS(3039), - [anon_sym___cdecl] = ACTIONS(3039), - [anon_sym___clrcall] = ACTIONS(3039), - [anon_sym___stdcall] = ACTIONS(3039), - [anon_sym___fastcall] = ACTIONS(3039), - [anon_sym___thiscall] = ACTIONS(3039), - [anon_sym___vectorcall] = ACTIONS(3039), - [anon_sym_LBRACE] = ACTIONS(3041), - [anon_sym_RBRACE] = ACTIONS(3041), - [anon_sym_signed] = ACTIONS(3039), - [anon_sym_unsigned] = ACTIONS(3039), - [anon_sym_long] = ACTIONS(3039), - [anon_sym_short] = ACTIONS(3039), - [anon_sym_LBRACK] = ACTIONS(3039), - [anon_sym_static] = ACTIONS(3039), - [anon_sym_register] = ACTIONS(3039), - [anon_sym_inline] = ACTIONS(3039), - [anon_sym___inline] = ACTIONS(3039), - [anon_sym___inline__] = ACTIONS(3039), - [anon_sym___forceinline] = ACTIONS(3039), - [anon_sym_thread_local] = ACTIONS(3039), - [anon_sym___thread] = ACTIONS(3039), - [anon_sym_const] = ACTIONS(3039), - [anon_sym_constexpr] = ACTIONS(3039), - [anon_sym_volatile] = ACTIONS(3039), - [anon_sym_restrict] = ACTIONS(3039), - [anon_sym___restrict__] = ACTIONS(3039), - [anon_sym__Atomic] = ACTIONS(3039), - [anon_sym__Noreturn] = ACTIONS(3039), - [anon_sym_noreturn] = ACTIONS(3039), - [anon_sym__Nonnull] = ACTIONS(3039), - [anon_sym_mutable] = ACTIONS(3039), - [anon_sym_constinit] = ACTIONS(3039), - [anon_sym_consteval] = ACTIONS(3039), - [anon_sym_alignas] = ACTIONS(3039), - [anon_sym__Alignas] = ACTIONS(3039), - [sym_primitive_type] = ACTIONS(3039), - [anon_sym_enum] = ACTIONS(3039), - [anon_sym_class] = ACTIONS(3039), - [anon_sym_struct] = ACTIONS(3039), - [anon_sym_union] = ACTIONS(3039), - [anon_sym_if] = ACTIONS(3039), - [anon_sym_switch] = ACTIONS(3039), - [anon_sym_case] = ACTIONS(3039), - [anon_sym_default] = ACTIONS(3039), - [anon_sym_while] = ACTIONS(3039), - [anon_sym_do] = ACTIONS(3039), - [anon_sym_for] = ACTIONS(3039), - [anon_sym_return] = ACTIONS(3039), - [anon_sym_break] = ACTIONS(3039), - [anon_sym_continue] = ACTIONS(3039), - [anon_sym_goto] = ACTIONS(3039), - [anon_sym___try] = ACTIONS(3039), - [anon_sym___leave] = ACTIONS(3039), - [anon_sym_not] = ACTIONS(3039), - [anon_sym_compl] = ACTIONS(3039), - [anon_sym_DASH_DASH] = ACTIONS(3041), - [anon_sym_PLUS_PLUS] = ACTIONS(3041), - [anon_sym_sizeof] = ACTIONS(3039), - [anon_sym___alignof__] = ACTIONS(3039), - [anon_sym___alignof] = ACTIONS(3039), - [anon_sym__alignof] = ACTIONS(3039), - [anon_sym_alignof] = ACTIONS(3039), - [anon_sym__Alignof] = ACTIONS(3039), - [anon_sym_offsetof] = ACTIONS(3039), - [anon_sym__Generic] = ACTIONS(3039), - [anon_sym_asm] = ACTIONS(3039), - [anon_sym___asm__] = ACTIONS(3039), - [anon_sym___asm] = ACTIONS(3039), - [sym_number_literal] = ACTIONS(3041), - [anon_sym_L_SQUOTE] = ACTIONS(3041), - [anon_sym_u_SQUOTE] = ACTIONS(3041), - [anon_sym_U_SQUOTE] = ACTIONS(3041), - [anon_sym_u8_SQUOTE] = ACTIONS(3041), - [anon_sym_SQUOTE] = ACTIONS(3041), - [anon_sym_L_DQUOTE] = ACTIONS(3041), - [anon_sym_u_DQUOTE] = ACTIONS(3041), - [anon_sym_U_DQUOTE] = ACTIONS(3041), - [anon_sym_u8_DQUOTE] = ACTIONS(3041), - [anon_sym_DQUOTE] = ACTIONS(3041), - [sym_true] = ACTIONS(3039), - [sym_false] = ACTIONS(3039), - [anon_sym_NULL] = ACTIONS(3039), - [anon_sym_nullptr] = ACTIONS(3039), + [786] = { + [sym_identifier] = ACTIONS(2879), + [aux_sym_preproc_include_token1] = ACTIONS(2879), + [aux_sym_preproc_def_token1] = ACTIONS(2879), + [aux_sym_preproc_if_token1] = ACTIONS(2879), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2879), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2879), + [sym_preproc_directive] = ACTIONS(2879), + [anon_sym_LPAREN2] = ACTIONS(2881), + [anon_sym_BANG] = ACTIONS(2881), + [anon_sym_TILDE] = ACTIONS(2881), + [anon_sym_DASH] = ACTIONS(2879), + [anon_sym_PLUS] = ACTIONS(2879), + [anon_sym_STAR] = ACTIONS(2881), + [anon_sym_AMP_AMP] = ACTIONS(2881), + [anon_sym_AMP] = ACTIONS(2879), + [anon_sym_SEMI] = ACTIONS(2881), + [anon_sym___extension__] = ACTIONS(2879), + [anon_sym_typedef] = ACTIONS(2879), + [anon_sym_virtual] = ACTIONS(2879), + [anon_sym_extern] = ACTIONS(2879), + [anon_sym___attribute__] = ACTIONS(2879), + [anon_sym___attribute] = ACTIONS(2879), + [anon_sym_using] = ACTIONS(2879), + [anon_sym_COLON_COLON] = ACTIONS(2881), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2881), + [anon_sym___declspec] = ACTIONS(2879), + [anon_sym___based] = ACTIONS(2879), + [anon_sym___cdecl] = ACTIONS(2879), + [anon_sym___clrcall] = ACTIONS(2879), + [anon_sym___stdcall] = ACTIONS(2879), + [anon_sym___fastcall] = ACTIONS(2879), + [anon_sym___thiscall] = ACTIONS(2879), + [anon_sym___vectorcall] = ACTIONS(2879), + [anon_sym_LBRACE] = ACTIONS(2881), + [anon_sym_RBRACE] = ACTIONS(2881), + [anon_sym_signed] = ACTIONS(2879), + [anon_sym_unsigned] = ACTIONS(2879), + [anon_sym_long] = ACTIONS(2879), + [anon_sym_short] = ACTIONS(2879), + [anon_sym_LBRACK] = ACTIONS(2879), + [anon_sym_static] = ACTIONS(2879), + [anon_sym_register] = ACTIONS(2879), + [anon_sym_inline] = ACTIONS(2879), + [anon_sym___inline] = ACTIONS(2879), + [anon_sym___inline__] = ACTIONS(2879), + [anon_sym___forceinline] = ACTIONS(2879), + [anon_sym_thread_local] = ACTIONS(2879), + [anon_sym___thread] = ACTIONS(2879), + [anon_sym_const] = ACTIONS(2879), + [anon_sym_constexpr] = ACTIONS(2879), + [anon_sym_volatile] = ACTIONS(2879), + [anon_sym_restrict] = ACTIONS(2879), + [anon_sym___restrict__] = ACTIONS(2879), + [anon_sym__Atomic] = ACTIONS(2879), + [anon_sym__Noreturn] = ACTIONS(2879), + [anon_sym_noreturn] = ACTIONS(2879), + [anon_sym__Nonnull] = ACTIONS(2879), + [anon_sym_mutable] = ACTIONS(2879), + [anon_sym_constinit] = ACTIONS(2879), + [anon_sym_consteval] = ACTIONS(2879), + [anon_sym_alignas] = ACTIONS(2879), + [anon_sym__Alignas] = ACTIONS(2879), + [sym_primitive_type] = ACTIONS(2879), + [anon_sym_enum] = ACTIONS(2879), + [anon_sym_class] = ACTIONS(2879), + [anon_sym_struct] = ACTIONS(2879), + [anon_sym_union] = ACTIONS(2879), + [anon_sym_if] = ACTIONS(2879), + [anon_sym_switch] = ACTIONS(2879), + [anon_sym_case] = ACTIONS(2879), + [anon_sym_default] = ACTIONS(2879), + [anon_sym_while] = ACTIONS(2879), + [anon_sym_do] = ACTIONS(2879), + [anon_sym_for] = ACTIONS(2879), + [anon_sym_return] = ACTIONS(2879), + [anon_sym_break] = ACTIONS(2879), + [anon_sym_continue] = ACTIONS(2879), + [anon_sym_goto] = ACTIONS(2879), + [anon_sym___try] = ACTIONS(2879), + [anon_sym___leave] = ACTIONS(2879), + [anon_sym_not] = ACTIONS(2879), + [anon_sym_compl] = ACTIONS(2879), + [anon_sym_DASH_DASH] = ACTIONS(2881), + [anon_sym_PLUS_PLUS] = ACTIONS(2881), + [anon_sym_sizeof] = ACTIONS(2879), + [anon_sym___alignof__] = ACTIONS(2879), + [anon_sym___alignof] = ACTIONS(2879), + [anon_sym__alignof] = ACTIONS(2879), + [anon_sym_alignof] = ACTIONS(2879), + [anon_sym__Alignof] = ACTIONS(2879), + [anon_sym_offsetof] = ACTIONS(2879), + [anon_sym__Generic] = ACTIONS(2879), + [anon_sym_asm] = ACTIONS(2879), + [anon_sym___asm__] = ACTIONS(2879), + [anon_sym___asm] = ACTIONS(2879), + [sym_number_literal] = ACTIONS(2881), + [anon_sym_L_SQUOTE] = ACTIONS(2881), + [anon_sym_u_SQUOTE] = ACTIONS(2881), + [anon_sym_U_SQUOTE] = ACTIONS(2881), + [anon_sym_u8_SQUOTE] = ACTIONS(2881), + [anon_sym_SQUOTE] = ACTIONS(2881), + [anon_sym_L_DQUOTE] = ACTIONS(2881), + [anon_sym_u_DQUOTE] = ACTIONS(2881), + [anon_sym_U_DQUOTE] = ACTIONS(2881), + [anon_sym_u8_DQUOTE] = ACTIONS(2881), + [anon_sym_DQUOTE] = ACTIONS(2881), + [sym_true] = ACTIONS(2879), + [sym_false] = ACTIONS(2879), + [anon_sym_NULL] = ACTIONS(2879), + [anon_sym_nullptr] = ACTIONS(2879), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3039), - [anon_sym_decltype] = ACTIONS(3039), - [anon_sym_explicit] = ACTIONS(3039), - [anon_sym_typename] = ACTIONS(3039), - [anon_sym_template] = ACTIONS(3039), - [anon_sym_operator] = ACTIONS(3039), - [anon_sym_try] = ACTIONS(3039), - [anon_sym_delete] = ACTIONS(3039), - [anon_sym_throw] = ACTIONS(3039), - [anon_sym_namespace] = ACTIONS(3039), - [anon_sym_static_assert] = ACTIONS(3039), - [anon_sym_concept] = ACTIONS(3039), - [anon_sym_co_return] = ACTIONS(3039), - [anon_sym_co_yield] = ACTIONS(3039), - [anon_sym_R_DQUOTE] = ACTIONS(3041), - [anon_sym_LR_DQUOTE] = ACTIONS(3041), - [anon_sym_uR_DQUOTE] = ACTIONS(3041), - [anon_sym_UR_DQUOTE] = ACTIONS(3041), - [anon_sym_u8R_DQUOTE] = ACTIONS(3041), - [anon_sym_co_await] = ACTIONS(3039), - [anon_sym_new] = ACTIONS(3039), - [anon_sym_requires] = ACTIONS(3039), - [sym_this] = ACTIONS(3039), + [sym_auto] = ACTIONS(2879), + [anon_sym_decltype] = ACTIONS(2879), + [anon_sym_explicit] = ACTIONS(2879), + [anon_sym_typename] = ACTIONS(2879), + [anon_sym_template] = ACTIONS(2879), + [anon_sym_operator] = ACTIONS(2879), + [anon_sym_try] = ACTIONS(2879), + [anon_sym_delete] = ACTIONS(2879), + [anon_sym_throw] = ACTIONS(2879), + [anon_sym_namespace] = ACTIONS(2879), + [anon_sym_static_assert] = ACTIONS(2879), + [anon_sym_concept] = ACTIONS(2879), + [anon_sym_co_return] = ACTIONS(2879), + [anon_sym_co_yield] = ACTIONS(2879), + [anon_sym_R_DQUOTE] = ACTIONS(2881), + [anon_sym_LR_DQUOTE] = ACTIONS(2881), + [anon_sym_uR_DQUOTE] = ACTIONS(2881), + [anon_sym_UR_DQUOTE] = ACTIONS(2881), + [anon_sym_u8R_DQUOTE] = ACTIONS(2881), + [anon_sym_co_await] = ACTIONS(2879), + [anon_sym_new] = ACTIONS(2879), + [anon_sym_requires] = ACTIONS(2879), + [sym_this] = ACTIONS(2879), }, - [753] = { - [sym_identifier] = ACTIONS(3063), - [aux_sym_preproc_include_token1] = ACTIONS(3063), - [aux_sym_preproc_def_token1] = ACTIONS(3063), - [aux_sym_preproc_if_token1] = ACTIONS(3063), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3063), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3063), - [sym_preproc_directive] = ACTIONS(3063), - [anon_sym_LPAREN2] = ACTIONS(3065), - [anon_sym_BANG] = ACTIONS(3065), - [anon_sym_TILDE] = ACTIONS(3065), - [anon_sym_DASH] = ACTIONS(3063), - [anon_sym_PLUS] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3065), - [anon_sym_AMP_AMP] = ACTIONS(3065), - [anon_sym_AMP] = ACTIONS(3063), - [anon_sym_SEMI] = ACTIONS(3065), - [anon_sym___extension__] = ACTIONS(3063), - [anon_sym_typedef] = ACTIONS(3063), - [anon_sym_virtual] = ACTIONS(3063), - [anon_sym_extern] = ACTIONS(3063), - [anon_sym___attribute__] = ACTIONS(3063), - [anon_sym___attribute] = ACTIONS(3063), - [anon_sym_using] = ACTIONS(3063), - [anon_sym_COLON_COLON] = ACTIONS(3065), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3065), - [anon_sym___declspec] = ACTIONS(3063), - [anon_sym___based] = ACTIONS(3063), - [anon_sym___cdecl] = ACTIONS(3063), - [anon_sym___clrcall] = ACTIONS(3063), - [anon_sym___stdcall] = ACTIONS(3063), - [anon_sym___fastcall] = ACTIONS(3063), - [anon_sym___thiscall] = ACTIONS(3063), - [anon_sym___vectorcall] = ACTIONS(3063), - [anon_sym_LBRACE] = ACTIONS(3065), - [anon_sym_RBRACE] = ACTIONS(3065), - [anon_sym_signed] = ACTIONS(3063), - [anon_sym_unsigned] = ACTIONS(3063), - [anon_sym_long] = ACTIONS(3063), - [anon_sym_short] = ACTIONS(3063), - [anon_sym_LBRACK] = ACTIONS(3063), - [anon_sym_static] = ACTIONS(3063), - [anon_sym_register] = ACTIONS(3063), - [anon_sym_inline] = ACTIONS(3063), - [anon_sym___inline] = ACTIONS(3063), - [anon_sym___inline__] = ACTIONS(3063), - [anon_sym___forceinline] = ACTIONS(3063), - [anon_sym_thread_local] = ACTIONS(3063), - [anon_sym___thread] = ACTIONS(3063), - [anon_sym_const] = ACTIONS(3063), - [anon_sym_constexpr] = ACTIONS(3063), - [anon_sym_volatile] = ACTIONS(3063), - [anon_sym_restrict] = ACTIONS(3063), - [anon_sym___restrict__] = ACTIONS(3063), - [anon_sym__Atomic] = ACTIONS(3063), - [anon_sym__Noreturn] = ACTIONS(3063), - [anon_sym_noreturn] = ACTIONS(3063), - [anon_sym__Nonnull] = ACTIONS(3063), - [anon_sym_mutable] = ACTIONS(3063), - [anon_sym_constinit] = ACTIONS(3063), - [anon_sym_consteval] = ACTIONS(3063), - [anon_sym_alignas] = ACTIONS(3063), - [anon_sym__Alignas] = ACTIONS(3063), - [sym_primitive_type] = ACTIONS(3063), - [anon_sym_enum] = ACTIONS(3063), - [anon_sym_class] = ACTIONS(3063), - [anon_sym_struct] = ACTIONS(3063), - [anon_sym_union] = ACTIONS(3063), - [anon_sym_if] = ACTIONS(3063), - [anon_sym_switch] = ACTIONS(3063), - [anon_sym_case] = ACTIONS(3063), - [anon_sym_default] = ACTIONS(3063), - [anon_sym_while] = ACTIONS(3063), - [anon_sym_do] = ACTIONS(3063), - [anon_sym_for] = ACTIONS(3063), - [anon_sym_return] = ACTIONS(3063), - [anon_sym_break] = ACTIONS(3063), - [anon_sym_continue] = ACTIONS(3063), - [anon_sym_goto] = ACTIONS(3063), - [anon_sym___try] = ACTIONS(3063), - [anon_sym___leave] = ACTIONS(3063), - [anon_sym_not] = ACTIONS(3063), - [anon_sym_compl] = ACTIONS(3063), - [anon_sym_DASH_DASH] = ACTIONS(3065), - [anon_sym_PLUS_PLUS] = ACTIONS(3065), - [anon_sym_sizeof] = ACTIONS(3063), - [anon_sym___alignof__] = ACTIONS(3063), - [anon_sym___alignof] = ACTIONS(3063), - [anon_sym__alignof] = ACTIONS(3063), - [anon_sym_alignof] = ACTIONS(3063), - [anon_sym__Alignof] = ACTIONS(3063), - [anon_sym_offsetof] = ACTIONS(3063), - [anon_sym__Generic] = ACTIONS(3063), - [anon_sym_asm] = ACTIONS(3063), - [anon_sym___asm__] = ACTIONS(3063), - [anon_sym___asm] = ACTIONS(3063), - [sym_number_literal] = ACTIONS(3065), - [anon_sym_L_SQUOTE] = ACTIONS(3065), - [anon_sym_u_SQUOTE] = ACTIONS(3065), - [anon_sym_U_SQUOTE] = ACTIONS(3065), - [anon_sym_u8_SQUOTE] = ACTIONS(3065), - [anon_sym_SQUOTE] = ACTIONS(3065), - [anon_sym_L_DQUOTE] = ACTIONS(3065), - [anon_sym_u_DQUOTE] = ACTIONS(3065), - [anon_sym_U_DQUOTE] = ACTIONS(3065), - [anon_sym_u8_DQUOTE] = ACTIONS(3065), - [anon_sym_DQUOTE] = ACTIONS(3065), - [sym_true] = ACTIONS(3063), - [sym_false] = ACTIONS(3063), - [anon_sym_NULL] = ACTIONS(3063), - [anon_sym_nullptr] = ACTIONS(3063), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3063), - [anon_sym_decltype] = ACTIONS(3063), - [anon_sym_explicit] = ACTIONS(3063), - [anon_sym_typename] = ACTIONS(3063), - [anon_sym_template] = ACTIONS(3063), - [anon_sym_operator] = ACTIONS(3063), - [anon_sym_try] = ACTIONS(3063), - [anon_sym_delete] = ACTIONS(3063), - [anon_sym_throw] = ACTIONS(3063), - [anon_sym_namespace] = ACTIONS(3063), - [anon_sym_static_assert] = ACTIONS(3063), - [anon_sym_concept] = ACTIONS(3063), - [anon_sym_co_return] = ACTIONS(3063), - [anon_sym_co_yield] = ACTIONS(3063), - [anon_sym_R_DQUOTE] = ACTIONS(3065), - [anon_sym_LR_DQUOTE] = ACTIONS(3065), - [anon_sym_uR_DQUOTE] = ACTIONS(3065), - [anon_sym_UR_DQUOTE] = ACTIONS(3065), - [anon_sym_u8R_DQUOTE] = ACTIONS(3065), - [anon_sym_co_await] = ACTIONS(3063), - [anon_sym_new] = ACTIONS(3063), - [anon_sym_requires] = ACTIONS(3063), - [sym_this] = ACTIONS(3063), + [787] = { + [sym_identifier] = ACTIONS(2835), + [aux_sym_preproc_include_token1] = ACTIONS(2835), + [aux_sym_preproc_def_token1] = ACTIONS(2835), + [aux_sym_preproc_if_token1] = ACTIONS(2835), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2835), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2835), + [sym_preproc_directive] = ACTIONS(2835), + [anon_sym_LPAREN2] = ACTIONS(2837), + [anon_sym_BANG] = ACTIONS(2837), + [anon_sym_TILDE] = ACTIONS(2837), + [anon_sym_DASH] = ACTIONS(2835), + [anon_sym_PLUS] = ACTIONS(2835), + [anon_sym_STAR] = ACTIONS(2837), + [anon_sym_AMP_AMP] = ACTIONS(2837), + [anon_sym_AMP] = ACTIONS(2835), + [anon_sym_SEMI] = ACTIONS(2837), + [anon_sym___extension__] = ACTIONS(2835), + [anon_sym_typedef] = ACTIONS(2835), + [anon_sym_virtual] = ACTIONS(2835), + [anon_sym_extern] = ACTIONS(2835), + [anon_sym___attribute__] = ACTIONS(2835), + [anon_sym___attribute] = ACTIONS(2835), + [anon_sym_using] = ACTIONS(2835), + [anon_sym_COLON_COLON] = ACTIONS(2837), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2837), + [anon_sym___declspec] = ACTIONS(2835), + [anon_sym___based] = ACTIONS(2835), + [anon_sym___cdecl] = ACTIONS(2835), + [anon_sym___clrcall] = ACTIONS(2835), + [anon_sym___stdcall] = ACTIONS(2835), + [anon_sym___fastcall] = ACTIONS(2835), + [anon_sym___thiscall] = ACTIONS(2835), + [anon_sym___vectorcall] = ACTIONS(2835), + [anon_sym_LBRACE] = ACTIONS(2837), + [anon_sym_RBRACE] = ACTIONS(2837), + [anon_sym_signed] = ACTIONS(2835), + [anon_sym_unsigned] = ACTIONS(2835), + [anon_sym_long] = ACTIONS(2835), + [anon_sym_short] = ACTIONS(2835), + [anon_sym_LBRACK] = ACTIONS(2835), + [anon_sym_static] = ACTIONS(2835), + [anon_sym_register] = ACTIONS(2835), + [anon_sym_inline] = ACTIONS(2835), + [anon_sym___inline] = ACTIONS(2835), + [anon_sym___inline__] = ACTIONS(2835), + [anon_sym___forceinline] = ACTIONS(2835), + [anon_sym_thread_local] = ACTIONS(2835), + [anon_sym___thread] = ACTIONS(2835), + [anon_sym_const] = ACTIONS(2835), + [anon_sym_constexpr] = ACTIONS(2835), + [anon_sym_volatile] = ACTIONS(2835), + [anon_sym_restrict] = ACTIONS(2835), + [anon_sym___restrict__] = ACTIONS(2835), + [anon_sym__Atomic] = ACTIONS(2835), + [anon_sym__Noreturn] = ACTIONS(2835), + [anon_sym_noreturn] = ACTIONS(2835), + [anon_sym__Nonnull] = ACTIONS(2835), + [anon_sym_mutable] = ACTIONS(2835), + [anon_sym_constinit] = ACTIONS(2835), + [anon_sym_consteval] = ACTIONS(2835), + [anon_sym_alignas] = ACTIONS(2835), + [anon_sym__Alignas] = ACTIONS(2835), + [sym_primitive_type] = ACTIONS(2835), + [anon_sym_enum] = ACTIONS(2835), + [anon_sym_class] = ACTIONS(2835), + [anon_sym_struct] = ACTIONS(2835), + [anon_sym_union] = ACTIONS(2835), + [anon_sym_if] = ACTIONS(2835), + [anon_sym_switch] = ACTIONS(2835), + [anon_sym_case] = ACTIONS(2835), + [anon_sym_default] = ACTIONS(2835), + [anon_sym_while] = ACTIONS(2835), + [anon_sym_do] = ACTIONS(2835), + [anon_sym_for] = ACTIONS(2835), + [anon_sym_return] = ACTIONS(2835), + [anon_sym_break] = ACTIONS(2835), + [anon_sym_continue] = ACTIONS(2835), + [anon_sym_goto] = ACTIONS(2835), + [anon_sym___try] = ACTIONS(2835), + [anon_sym___leave] = ACTIONS(2835), + [anon_sym_not] = ACTIONS(2835), + [anon_sym_compl] = ACTIONS(2835), + [anon_sym_DASH_DASH] = ACTIONS(2837), + [anon_sym_PLUS_PLUS] = ACTIONS(2837), + [anon_sym_sizeof] = ACTIONS(2835), + [anon_sym___alignof__] = ACTIONS(2835), + [anon_sym___alignof] = ACTIONS(2835), + [anon_sym__alignof] = ACTIONS(2835), + [anon_sym_alignof] = ACTIONS(2835), + [anon_sym__Alignof] = ACTIONS(2835), + [anon_sym_offsetof] = ACTIONS(2835), + [anon_sym__Generic] = ACTIONS(2835), + [anon_sym_asm] = ACTIONS(2835), + [anon_sym___asm__] = ACTIONS(2835), + [anon_sym___asm] = ACTIONS(2835), + [sym_number_literal] = ACTIONS(2837), + [anon_sym_L_SQUOTE] = ACTIONS(2837), + [anon_sym_u_SQUOTE] = ACTIONS(2837), + [anon_sym_U_SQUOTE] = ACTIONS(2837), + [anon_sym_u8_SQUOTE] = ACTIONS(2837), + [anon_sym_SQUOTE] = ACTIONS(2837), + [anon_sym_L_DQUOTE] = ACTIONS(2837), + [anon_sym_u_DQUOTE] = ACTIONS(2837), + [anon_sym_U_DQUOTE] = ACTIONS(2837), + [anon_sym_u8_DQUOTE] = ACTIONS(2837), + [anon_sym_DQUOTE] = ACTIONS(2837), + [sym_true] = ACTIONS(2835), + [sym_false] = ACTIONS(2835), + [anon_sym_NULL] = ACTIONS(2835), + [anon_sym_nullptr] = ACTIONS(2835), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2835), + [anon_sym_decltype] = ACTIONS(2835), + [anon_sym_explicit] = ACTIONS(2835), + [anon_sym_typename] = ACTIONS(2835), + [anon_sym_template] = ACTIONS(2835), + [anon_sym_operator] = ACTIONS(2835), + [anon_sym_try] = ACTIONS(2835), + [anon_sym_delete] = ACTIONS(2835), + [anon_sym_throw] = ACTIONS(2835), + [anon_sym_namespace] = ACTIONS(2835), + [anon_sym_static_assert] = ACTIONS(2835), + [anon_sym_concept] = ACTIONS(2835), + [anon_sym_co_return] = ACTIONS(2835), + [anon_sym_co_yield] = ACTIONS(2835), + [anon_sym_R_DQUOTE] = ACTIONS(2837), + [anon_sym_LR_DQUOTE] = ACTIONS(2837), + [anon_sym_uR_DQUOTE] = ACTIONS(2837), + [anon_sym_UR_DQUOTE] = ACTIONS(2837), + [anon_sym_u8R_DQUOTE] = ACTIONS(2837), + [anon_sym_co_await] = ACTIONS(2835), + [anon_sym_new] = ACTIONS(2835), + [anon_sym_requires] = ACTIONS(2835), + [sym_this] = ACTIONS(2835), }, - [754] = { - [sym_identifier] = ACTIONS(3063), - [aux_sym_preproc_include_token1] = ACTIONS(3063), - [aux_sym_preproc_def_token1] = ACTIONS(3063), - [aux_sym_preproc_if_token1] = ACTIONS(3063), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3063), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3063), - [sym_preproc_directive] = ACTIONS(3063), - [anon_sym_LPAREN2] = ACTIONS(3065), - [anon_sym_BANG] = ACTIONS(3065), - [anon_sym_TILDE] = ACTIONS(3065), - [anon_sym_DASH] = ACTIONS(3063), - [anon_sym_PLUS] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3065), - [anon_sym_AMP_AMP] = ACTIONS(3065), - [anon_sym_AMP] = ACTIONS(3063), - [anon_sym_SEMI] = ACTIONS(3065), - [anon_sym___extension__] = ACTIONS(3063), - [anon_sym_typedef] = ACTIONS(3063), - [anon_sym_virtual] = ACTIONS(3063), - [anon_sym_extern] = ACTIONS(3063), - [anon_sym___attribute__] = ACTIONS(3063), - [anon_sym___attribute] = ACTIONS(3063), - [anon_sym_using] = ACTIONS(3063), - [anon_sym_COLON_COLON] = ACTIONS(3065), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3065), - [anon_sym___declspec] = ACTIONS(3063), - [anon_sym___based] = ACTIONS(3063), - [anon_sym___cdecl] = ACTIONS(3063), - [anon_sym___clrcall] = ACTIONS(3063), - [anon_sym___stdcall] = ACTIONS(3063), - [anon_sym___fastcall] = ACTIONS(3063), - [anon_sym___thiscall] = ACTIONS(3063), - [anon_sym___vectorcall] = ACTIONS(3063), - [anon_sym_LBRACE] = ACTIONS(3065), - [anon_sym_RBRACE] = ACTIONS(3065), - [anon_sym_signed] = ACTIONS(3063), - [anon_sym_unsigned] = ACTIONS(3063), - [anon_sym_long] = ACTIONS(3063), - [anon_sym_short] = ACTIONS(3063), - [anon_sym_LBRACK] = ACTIONS(3063), - [anon_sym_static] = ACTIONS(3063), - [anon_sym_register] = ACTIONS(3063), - [anon_sym_inline] = ACTIONS(3063), - [anon_sym___inline] = ACTIONS(3063), - [anon_sym___inline__] = ACTIONS(3063), - [anon_sym___forceinline] = ACTIONS(3063), - [anon_sym_thread_local] = ACTIONS(3063), - [anon_sym___thread] = ACTIONS(3063), - [anon_sym_const] = ACTIONS(3063), - [anon_sym_constexpr] = ACTIONS(3063), - [anon_sym_volatile] = ACTIONS(3063), - [anon_sym_restrict] = ACTIONS(3063), - [anon_sym___restrict__] = ACTIONS(3063), - [anon_sym__Atomic] = ACTIONS(3063), - [anon_sym__Noreturn] = ACTIONS(3063), - [anon_sym_noreturn] = ACTIONS(3063), - [anon_sym__Nonnull] = ACTIONS(3063), - [anon_sym_mutable] = ACTIONS(3063), - [anon_sym_constinit] = ACTIONS(3063), - [anon_sym_consteval] = ACTIONS(3063), - [anon_sym_alignas] = ACTIONS(3063), - [anon_sym__Alignas] = ACTIONS(3063), - [sym_primitive_type] = ACTIONS(3063), - [anon_sym_enum] = ACTIONS(3063), - [anon_sym_class] = ACTIONS(3063), - [anon_sym_struct] = ACTIONS(3063), - [anon_sym_union] = ACTIONS(3063), - [anon_sym_if] = ACTIONS(3063), - [anon_sym_switch] = ACTIONS(3063), - [anon_sym_case] = ACTIONS(3063), - [anon_sym_default] = ACTIONS(3063), - [anon_sym_while] = ACTIONS(3063), - [anon_sym_do] = ACTIONS(3063), - [anon_sym_for] = ACTIONS(3063), - [anon_sym_return] = ACTIONS(3063), - [anon_sym_break] = ACTIONS(3063), - [anon_sym_continue] = ACTIONS(3063), - [anon_sym_goto] = ACTIONS(3063), - [anon_sym___try] = ACTIONS(3063), - [anon_sym___leave] = ACTIONS(3063), - [anon_sym_not] = ACTIONS(3063), - [anon_sym_compl] = ACTIONS(3063), - [anon_sym_DASH_DASH] = ACTIONS(3065), - [anon_sym_PLUS_PLUS] = ACTIONS(3065), - [anon_sym_sizeof] = ACTIONS(3063), - [anon_sym___alignof__] = ACTIONS(3063), - [anon_sym___alignof] = ACTIONS(3063), - [anon_sym__alignof] = ACTIONS(3063), - [anon_sym_alignof] = ACTIONS(3063), - [anon_sym__Alignof] = ACTIONS(3063), - [anon_sym_offsetof] = ACTIONS(3063), - [anon_sym__Generic] = ACTIONS(3063), - [anon_sym_asm] = ACTIONS(3063), - [anon_sym___asm__] = ACTIONS(3063), - [anon_sym___asm] = ACTIONS(3063), - [sym_number_literal] = ACTIONS(3065), - [anon_sym_L_SQUOTE] = ACTIONS(3065), - [anon_sym_u_SQUOTE] = ACTIONS(3065), - [anon_sym_U_SQUOTE] = ACTIONS(3065), - [anon_sym_u8_SQUOTE] = ACTIONS(3065), - [anon_sym_SQUOTE] = ACTIONS(3065), - [anon_sym_L_DQUOTE] = ACTIONS(3065), - [anon_sym_u_DQUOTE] = ACTIONS(3065), - [anon_sym_U_DQUOTE] = ACTIONS(3065), - [anon_sym_u8_DQUOTE] = ACTIONS(3065), - [anon_sym_DQUOTE] = ACTIONS(3065), - [sym_true] = ACTIONS(3063), - [sym_false] = ACTIONS(3063), - [anon_sym_NULL] = ACTIONS(3063), - [anon_sym_nullptr] = ACTIONS(3063), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3063), - [anon_sym_decltype] = ACTIONS(3063), - [anon_sym_explicit] = ACTIONS(3063), - [anon_sym_typename] = ACTIONS(3063), - [anon_sym_template] = ACTIONS(3063), - [anon_sym_operator] = ACTIONS(3063), - [anon_sym_try] = ACTIONS(3063), - [anon_sym_delete] = ACTIONS(3063), - [anon_sym_throw] = ACTIONS(3063), - [anon_sym_namespace] = ACTIONS(3063), - [anon_sym_static_assert] = ACTIONS(3063), - [anon_sym_concept] = ACTIONS(3063), - [anon_sym_co_return] = ACTIONS(3063), - [anon_sym_co_yield] = ACTIONS(3063), - [anon_sym_R_DQUOTE] = ACTIONS(3065), - [anon_sym_LR_DQUOTE] = ACTIONS(3065), - [anon_sym_uR_DQUOTE] = ACTIONS(3065), - [anon_sym_UR_DQUOTE] = ACTIONS(3065), - [anon_sym_u8R_DQUOTE] = ACTIONS(3065), - [anon_sym_co_await] = ACTIONS(3063), - [anon_sym_new] = ACTIONS(3063), - [anon_sym_requires] = ACTIONS(3063), - [sym_this] = ACTIONS(3063), + [788] = { + [sym_identifier] = ACTIONS(2839), + [aux_sym_preproc_include_token1] = ACTIONS(2839), + [aux_sym_preproc_def_token1] = ACTIONS(2839), + [aux_sym_preproc_if_token1] = ACTIONS(2839), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2839), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2839), + [sym_preproc_directive] = ACTIONS(2839), + [anon_sym_LPAREN2] = ACTIONS(2841), + [anon_sym_BANG] = ACTIONS(2841), + [anon_sym_TILDE] = ACTIONS(2841), + [anon_sym_DASH] = ACTIONS(2839), + [anon_sym_PLUS] = ACTIONS(2839), + [anon_sym_STAR] = ACTIONS(2841), + [anon_sym_AMP_AMP] = ACTIONS(2841), + [anon_sym_AMP] = ACTIONS(2839), + [anon_sym_SEMI] = ACTIONS(2841), + [anon_sym___extension__] = ACTIONS(2839), + [anon_sym_typedef] = ACTIONS(2839), + [anon_sym_virtual] = ACTIONS(2839), + [anon_sym_extern] = ACTIONS(2839), + [anon_sym___attribute__] = ACTIONS(2839), + [anon_sym___attribute] = ACTIONS(2839), + [anon_sym_using] = ACTIONS(2839), + [anon_sym_COLON_COLON] = ACTIONS(2841), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2841), + [anon_sym___declspec] = ACTIONS(2839), + [anon_sym___based] = ACTIONS(2839), + [anon_sym___cdecl] = ACTIONS(2839), + [anon_sym___clrcall] = ACTIONS(2839), + [anon_sym___stdcall] = ACTIONS(2839), + [anon_sym___fastcall] = ACTIONS(2839), + [anon_sym___thiscall] = ACTIONS(2839), + [anon_sym___vectorcall] = ACTIONS(2839), + [anon_sym_LBRACE] = ACTIONS(2841), + [anon_sym_RBRACE] = ACTIONS(2841), + [anon_sym_signed] = ACTIONS(2839), + [anon_sym_unsigned] = ACTIONS(2839), + [anon_sym_long] = ACTIONS(2839), + [anon_sym_short] = ACTIONS(2839), + [anon_sym_LBRACK] = ACTIONS(2839), + [anon_sym_static] = ACTIONS(2839), + [anon_sym_register] = ACTIONS(2839), + [anon_sym_inline] = ACTIONS(2839), + [anon_sym___inline] = ACTIONS(2839), + [anon_sym___inline__] = ACTIONS(2839), + [anon_sym___forceinline] = ACTIONS(2839), + [anon_sym_thread_local] = ACTIONS(2839), + [anon_sym___thread] = ACTIONS(2839), + [anon_sym_const] = ACTIONS(2839), + [anon_sym_constexpr] = ACTIONS(2839), + [anon_sym_volatile] = ACTIONS(2839), + [anon_sym_restrict] = ACTIONS(2839), + [anon_sym___restrict__] = ACTIONS(2839), + [anon_sym__Atomic] = ACTIONS(2839), + [anon_sym__Noreturn] = ACTIONS(2839), + [anon_sym_noreturn] = ACTIONS(2839), + [anon_sym__Nonnull] = ACTIONS(2839), + [anon_sym_mutable] = ACTIONS(2839), + [anon_sym_constinit] = ACTIONS(2839), + [anon_sym_consteval] = ACTIONS(2839), + [anon_sym_alignas] = ACTIONS(2839), + [anon_sym__Alignas] = ACTIONS(2839), + [sym_primitive_type] = ACTIONS(2839), + [anon_sym_enum] = ACTIONS(2839), + [anon_sym_class] = ACTIONS(2839), + [anon_sym_struct] = ACTIONS(2839), + [anon_sym_union] = ACTIONS(2839), + [anon_sym_if] = ACTIONS(2839), + [anon_sym_switch] = ACTIONS(2839), + [anon_sym_case] = ACTIONS(2839), + [anon_sym_default] = ACTIONS(2839), + [anon_sym_while] = ACTIONS(2839), + [anon_sym_do] = ACTIONS(2839), + [anon_sym_for] = ACTIONS(2839), + [anon_sym_return] = ACTIONS(2839), + [anon_sym_break] = ACTIONS(2839), + [anon_sym_continue] = ACTIONS(2839), + [anon_sym_goto] = ACTIONS(2839), + [anon_sym___try] = ACTIONS(2839), + [anon_sym___leave] = ACTIONS(2839), + [anon_sym_not] = ACTIONS(2839), + [anon_sym_compl] = ACTIONS(2839), + [anon_sym_DASH_DASH] = ACTIONS(2841), + [anon_sym_PLUS_PLUS] = ACTIONS(2841), + [anon_sym_sizeof] = ACTIONS(2839), + [anon_sym___alignof__] = ACTIONS(2839), + [anon_sym___alignof] = ACTIONS(2839), + [anon_sym__alignof] = ACTIONS(2839), + [anon_sym_alignof] = ACTIONS(2839), + [anon_sym__Alignof] = ACTIONS(2839), + [anon_sym_offsetof] = ACTIONS(2839), + [anon_sym__Generic] = ACTIONS(2839), + [anon_sym_asm] = ACTIONS(2839), + [anon_sym___asm__] = ACTIONS(2839), + [anon_sym___asm] = ACTIONS(2839), + [sym_number_literal] = ACTIONS(2841), + [anon_sym_L_SQUOTE] = ACTIONS(2841), + [anon_sym_u_SQUOTE] = ACTIONS(2841), + [anon_sym_U_SQUOTE] = ACTIONS(2841), + [anon_sym_u8_SQUOTE] = ACTIONS(2841), + [anon_sym_SQUOTE] = ACTIONS(2841), + [anon_sym_L_DQUOTE] = ACTIONS(2841), + [anon_sym_u_DQUOTE] = ACTIONS(2841), + [anon_sym_U_DQUOTE] = ACTIONS(2841), + [anon_sym_u8_DQUOTE] = ACTIONS(2841), + [anon_sym_DQUOTE] = ACTIONS(2841), + [sym_true] = ACTIONS(2839), + [sym_false] = ACTIONS(2839), + [anon_sym_NULL] = ACTIONS(2839), + [anon_sym_nullptr] = ACTIONS(2839), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2839), + [anon_sym_decltype] = ACTIONS(2839), + [anon_sym_explicit] = ACTIONS(2839), + [anon_sym_typename] = ACTIONS(2839), + [anon_sym_template] = ACTIONS(2839), + [anon_sym_operator] = ACTIONS(2839), + [anon_sym_try] = ACTIONS(2839), + [anon_sym_delete] = ACTIONS(2839), + [anon_sym_throw] = ACTIONS(2839), + [anon_sym_namespace] = ACTIONS(2839), + [anon_sym_static_assert] = ACTIONS(2839), + [anon_sym_concept] = ACTIONS(2839), + [anon_sym_co_return] = ACTIONS(2839), + [anon_sym_co_yield] = ACTIONS(2839), + [anon_sym_R_DQUOTE] = ACTIONS(2841), + [anon_sym_LR_DQUOTE] = ACTIONS(2841), + [anon_sym_uR_DQUOTE] = ACTIONS(2841), + [anon_sym_UR_DQUOTE] = ACTIONS(2841), + [anon_sym_u8R_DQUOTE] = ACTIONS(2841), + [anon_sym_co_await] = ACTIONS(2839), + [anon_sym_new] = ACTIONS(2839), + [anon_sym_requires] = ACTIONS(2839), + [sym_this] = ACTIONS(2839), }, - [755] = { - [sym_identifier] = ACTIONS(3067), - [aux_sym_preproc_include_token1] = ACTIONS(3067), - [aux_sym_preproc_def_token1] = ACTIONS(3067), - [aux_sym_preproc_if_token1] = ACTIONS(3067), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3067), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3067), - [sym_preproc_directive] = ACTIONS(3067), - [anon_sym_LPAREN2] = ACTIONS(3069), - [anon_sym_BANG] = ACTIONS(3069), - [anon_sym_TILDE] = ACTIONS(3069), - [anon_sym_DASH] = ACTIONS(3067), - [anon_sym_PLUS] = ACTIONS(3067), - [anon_sym_STAR] = ACTIONS(3069), - [anon_sym_AMP_AMP] = ACTIONS(3069), - [anon_sym_AMP] = ACTIONS(3067), - [anon_sym_SEMI] = ACTIONS(3069), - [anon_sym___extension__] = ACTIONS(3067), - [anon_sym_typedef] = ACTIONS(3067), - [anon_sym_virtual] = ACTIONS(3067), - [anon_sym_extern] = ACTIONS(3067), - [anon_sym___attribute__] = ACTIONS(3067), - [anon_sym___attribute] = ACTIONS(3067), - [anon_sym_using] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(3069), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3069), - [anon_sym___declspec] = ACTIONS(3067), - [anon_sym___based] = ACTIONS(3067), - [anon_sym___cdecl] = ACTIONS(3067), - [anon_sym___clrcall] = ACTIONS(3067), - [anon_sym___stdcall] = ACTIONS(3067), - [anon_sym___fastcall] = ACTIONS(3067), - [anon_sym___thiscall] = ACTIONS(3067), - [anon_sym___vectorcall] = ACTIONS(3067), - [anon_sym_LBRACE] = ACTIONS(3069), - [anon_sym_RBRACE] = ACTIONS(3069), - [anon_sym_signed] = ACTIONS(3067), - [anon_sym_unsigned] = ACTIONS(3067), - [anon_sym_long] = ACTIONS(3067), - [anon_sym_short] = ACTIONS(3067), - [anon_sym_LBRACK] = ACTIONS(3067), - [anon_sym_static] = ACTIONS(3067), - [anon_sym_register] = ACTIONS(3067), - [anon_sym_inline] = ACTIONS(3067), - [anon_sym___inline] = ACTIONS(3067), - [anon_sym___inline__] = ACTIONS(3067), - [anon_sym___forceinline] = ACTIONS(3067), - [anon_sym_thread_local] = ACTIONS(3067), - [anon_sym___thread] = ACTIONS(3067), - [anon_sym_const] = ACTIONS(3067), - [anon_sym_constexpr] = ACTIONS(3067), - [anon_sym_volatile] = ACTIONS(3067), - [anon_sym_restrict] = ACTIONS(3067), - [anon_sym___restrict__] = ACTIONS(3067), - [anon_sym__Atomic] = ACTIONS(3067), - [anon_sym__Noreturn] = ACTIONS(3067), - [anon_sym_noreturn] = ACTIONS(3067), - [anon_sym__Nonnull] = ACTIONS(3067), - [anon_sym_mutable] = ACTIONS(3067), - [anon_sym_constinit] = ACTIONS(3067), - [anon_sym_consteval] = ACTIONS(3067), - [anon_sym_alignas] = ACTIONS(3067), - [anon_sym__Alignas] = ACTIONS(3067), - [sym_primitive_type] = ACTIONS(3067), - [anon_sym_enum] = ACTIONS(3067), - [anon_sym_class] = ACTIONS(3067), - [anon_sym_struct] = ACTIONS(3067), - [anon_sym_union] = ACTIONS(3067), - [anon_sym_if] = ACTIONS(3067), - [anon_sym_switch] = ACTIONS(3067), - [anon_sym_case] = ACTIONS(3067), - [anon_sym_default] = ACTIONS(3067), - [anon_sym_while] = ACTIONS(3067), - [anon_sym_do] = ACTIONS(3067), - [anon_sym_for] = ACTIONS(3067), - [anon_sym_return] = ACTIONS(3067), - [anon_sym_break] = ACTIONS(3067), - [anon_sym_continue] = ACTIONS(3067), - [anon_sym_goto] = ACTIONS(3067), - [anon_sym___try] = ACTIONS(3067), - [anon_sym___leave] = ACTIONS(3067), - [anon_sym_not] = ACTIONS(3067), - [anon_sym_compl] = ACTIONS(3067), - [anon_sym_DASH_DASH] = ACTIONS(3069), - [anon_sym_PLUS_PLUS] = ACTIONS(3069), - [anon_sym_sizeof] = ACTIONS(3067), - [anon_sym___alignof__] = ACTIONS(3067), - [anon_sym___alignof] = ACTIONS(3067), - [anon_sym__alignof] = ACTIONS(3067), - [anon_sym_alignof] = ACTIONS(3067), - [anon_sym__Alignof] = ACTIONS(3067), - [anon_sym_offsetof] = ACTIONS(3067), - [anon_sym__Generic] = ACTIONS(3067), - [anon_sym_asm] = ACTIONS(3067), - [anon_sym___asm__] = ACTIONS(3067), - [anon_sym___asm] = ACTIONS(3067), - [sym_number_literal] = ACTIONS(3069), - [anon_sym_L_SQUOTE] = ACTIONS(3069), - [anon_sym_u_SQUOTE] = ACTIONS(3069), - [anon_sym_U_SQUOTE] = ACTIONS(3069), - [anon_sym_u8_SQUOTE] = ACTIONS(3069), - [anon_sym_SQUOTE] = ACTIONS(3069), - [anon_sym_L_DQUOTE] = ACTIONS(3069), - [anon_sym_u_DQUOTE] = ACTIONS(3069), - [anon_sym_U_DQUOTE] = ACTIONS(3069), - [anon_sym_u8_DQUOTE] = ACTIONS(3069), - [anon_sym_DQUOTE] = ACTIONS(3069), - [sym_true] = ACTIONS(3067), - [sym_false] = ACTIONS(3067), - [anon_sym_NULL] = ACTIONS(3067), - [anon_sym_nullptr] = ACTIONS(3067), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3067), - [anon_sym_decltype] = ACTIONS(3067), - [anon_sym_explicit] = ACTIONS(3067), - [anon_sym_typename] = ACTIONS(3067), - [anon_sym_template] = ACTIONS(3067), - [anon_sym_operator] = ACTIONS(3067), - [anon_sym_try] = ACTIONS(3067), - [anon_sym_delete] = ACTIONS(3067), - [anon_sym_throw] = ACTIONS(3067), - [anon_sym_namespace] = ACTIONS(3067), - [anon_sym_static_assert] = ACTIONS(3067), - [anon_sym_concept] = ACTIONS(3067), - [anon_sym_co_return] = ACTIONS(3067), - [anon_sym_co_yield] = ACTIONS(3067), - [anon_sym_R_DQUOTE] = ACTIONS(3069), - [anon_sym_LR_DQUOTE] = ACTIONS(3069), - [anon_sym_uR_DQUOTE] = ACTIONS(3069), - [anon_sym_UR_DQUOTE] = ACTIONS(3069), - [anon_sym_u8R_DQUOTE] = ACTIONS(3069), - [anon_sym_co_await] = ACTIONS(3067), - [anon_sym_new] = ACTIONS(3067), - [anon_sym_requires] = ACTIONS(3067), - [sym_this] = ACTIONS(3067), + [789] = { + [sym_identifier] = ACTIONS(3120), + [aux_sym_preproc_include_token1] = ACTIONS(3120), + [aux_sym_preproc_def_token1] = ACTIONS(3120), + [aux_sym_preproc_if_token1] = ACTIONS(3120), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3120), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3120), + [sym_preproc_directive] = ACTIONS(3120), + [anon_sym_LPAREN2] = ACTIONS(3122), + [anon_sym_BANG] = ACTIONS(3122), + [anon_sym_TILDE] = ACTIONS(3122), + [anon_sym_DASH] = ACTIONS(3120), + [anon_sym_PLUS] = ACTIONS(3120), + [anon_sym_STAR] = ACTIONS(3122), + [anon_sym_AMP_AMP] = ACTIONS(3122), + [anon_sym_AMP] = ACTIONS(3120), + [anon_sym_SEMI] = ACTIONS(3122), + [anon_sym___extension__] = ACTIONS(3120), + [anon_sym_typedef] = ACTIONS(3120), + [anon_sym_virtual] = ACTIONS(3120), + [anon_sym_extern] = ACTIONS(3120), + [anon_sym___attribute__] = ACTIONS(3120), + [anon_sym___attribute] = ACTIONS(3120), + [anon_sym_using] = ACTIONS(3120), + [anon_sym_COLON_COLON] = ACTIONS(3122), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3122), + [anon_sym___declspec] = ACTIONS(3120), + [anon_sym___based] = ACTIONS(3120), + [anon_sym___cdecl] = ACTIONS(3120), + [anon_sym___clrcall] = ACTIONS(3120), + [anon_sym___stdcall] = ACTIONS(3120), + [anon_sym___fastcall] = ACTIONS(3120), + [anon_sym___thiscall] = ACTIONS(3120), + [anon_sym___vectorcall] = ACTIONS(3120), + [anon_sym_LBRACE] = ACTIONS(3122), + [anon_sym_RBRACE] = ACTIONS(3122), + [anon_sym_signed] = ACTIONS(3120), + [anon_sym_unsigned] = ACTIONS(3120), + [anon_sym_long] = ACTIONS(3120), + [anon_sym_short] = ACTIONS(3120), + [anon_sym_LBRACK] = ACTIONS(3120), + [anon_sym_static] = ACTIONS(3120), + [anon_sym_register] = ACTIONS(3120), + [anon_sym_inline] = ACTIONS(3120), + [anon_sym___inline] = ACTIONS(3120), + [anon_sym___inline__] = ACTIONS(3120), + [anon_sym___forceinline] = ACTIONS(3120), + [anon_sym_thread_local] = ACTIONS(3120), + [anon_sym___thread] = ACTIONS(3120), + [anon_sym_const] = ACTIONS(3120), + [anon_sym_constexpr] = ACTIONS(3120), + [anon_sym_volatile] = ACTIONS(3120), + [anon_sym_restrict] = ACTIONS(3120), + [anon_sym___restrict__] = ACTIONS(3120), + [anon_sym__Atomic] = ACTIONS(3120), + [anon_sym__Noreturn] = ACTIONS(3120), + [anon_sym_noreturn] = ACTIONS(3120), + [anon_sym__Nonnull] = ACTIONS(3120), + [anon_sym_mutable] = ACTIONS(3120), + [anon_sym_constinit] = ACTIONS(3120), + [anon_sym_consteval] = ACTIONS(3120), + [anon_sym_alignas] = ACTIONS(3120), + [anon_sym__Alignas] = ACTIONS(3120), + [sym_primitive_type] = ACTIONS(3120), + [anon_sym_enum] = ACTIONS(3120), + [anon_sym_class] = ACTIONS(3120), + [anon_sym_struct] = ACTIONS(3120), + [anon_sym_union] = ACTIONS(3120), + [anon_sym_if] = ACTIONS(3120), + [anon_sym_switch] = ACTIONS(3120), + [anon_sym_case] = ACTIONS(3120), + [anon_sym_default] = ACTIONS(3120), + [anon_sym_while] = ACTIONS(3120), + [anon_sym_do] = ACTIONS(3120), + [anon_sym_for] = ACTIONS(3120), + [anon_sym_return] = ACTIONS(3120), + [anon_sym_break] = ACTIONS(3120), + [anon_sym_continue] = ACTIONS(3120), + [anon_sym_goto] = ACTIONS(3120), + [anon_sym___try] = ACTIONS(3120), + [anon_sym___leave] = ACTIONS(3120), + [anon_sym_not] = ACTIONS(3120), + [anon_sym_compl] = ACTIONS(3120), + [anon_sym_DASH_DASH] = ACTIONS(3122), + [anon_sym_PLUS_PLUS] = ACTIONS(3122), + [anon_sym_sizeof] = ACTIONS(3120), + [anon_sym___alignof__] = ACTIONS(3120), + [anon_sym___alignof] = ACTIONS(3120), + [anon_sym__alignof] = ACTIONS(3120), + [anon_sym_alignof] = ACTIONS(3120), + [anon_sym__Alignof] = ACTIONS(3120), + [anon_sym_offsetof] = ACTIONS(3120), + [anon_sym__Generic] = ACTIONS(3120), + [anon_sym_asm] = ACTIONS(3120), + [anon_sym___asm__] = ACTIONS(3120), + [anon_sym___asm] = ACTIONS(3120), + [sym_number_literal] = ACTIONS(3122), + [anon_sym_L_SQUOTE] = ACTIONS(3122), + [anon_sym_u_SQUOTE] = ACTIONS(3122), + [anon_sym_U_SQUOTE] = ACTIONS(3122), + [anon_sym_u8_SQUOTE] = ACTIONS(3122), + [anon_sym_SQUOTE] = ACTIONS(3122), + [anon_sym_L_DQUOTE] = ACTIONS(3122), + [anon_sym_u_DQUOTE] = ACTIONS(3122), + [anon_sym_U_DQUOTE] = ACTIONS(3122), + [anon_sym_u8_DQUOTE] = ACTIONS(3122), + [anon_sym_DQUOTE] = ACTIONS(3122), + [sym_true] = ACTIONS(3120), + [sym_false] = ACTIONS(3120), + [anon_sym_NULL] = ACTIONS(3120), + [anon_sym_nullptr] = ACTIONS(3120), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3120), + [anon_sym_decltype] = ACTIONS(3120), + [anon_sym_explicit] = ACTIONS(3120), + [anon_sym_typename] = ACTIONS(3120), + [anon_sym_template] = ACTIONS(3120), + [anon_sym_operator] = ACTIONS(3120), + [anon_sym_try] = ACTIONS(3120), + [anon_sym_delete] = ACTIONS(3120), + [anon_sym_throw] = ACTIONS(3120), + [anon_sym_namespace] = ACTIONS(3120), + [anon_sym_static_assert] = ACTIONS(3120), + [anon_sym_concept] = ACTIONS(3120), + [anon_sym_co_return] = ACTIONS(3120), + [anon_sym_co_yield] = ACTIONS(3120), + [anon_sym_R_DQUOTE] = ACTIONS(3122), + [anon_sym_LR_DQUOTE] = ACTIONS(3122), + [anon_sym_uR_DQUOTE] = ACTIONS(3122), + [anon_sym_UR_DQUOTE] = ACTIONS(3122), + [anon_sym_u8R_DQUOTE] = ACTIONS(3122), + [anon_sym_co_await] = ACTIONS(3120), + [anon_sym_new] = ACTIONS(3120), + [anon_sym_requires] = ACTIONS(3120), + [sym_this] = ACTIONS(3120), }, - [756] = { - [sym_identifier] = ACTIONS(3071), - [aux_sym_preproc_include_token1] = ACTIONS(3071), - [aux_sym_preproc_def_token1] = ACTIONS(3071), - [aux_sym_preproc_if_token1] = ACTIONS(3071), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3071), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3071), - [sym_preproc_directive] = ACTIONS(3071), - [anon_sym_LPAREN2] = ACTIONS(3073), - [anon_sym_BANG] = ACTIONS(3073), - [anon_sym_TILDE] = ACTIONS(3073), - [anon_sym_DASH] = ACTIONS(3071), - [anon_sym_PLUS] = ACTIONS(3071), - [anon_sym_STAR] = ACTIONS(3073), - [anon_sym_AMP_AMP] = ACTIONS(3073), - [anon_sym_AMP] = ACTIONS(3071), - [anon_sym_SEMI] = ACTIONS(3073), - [anon_sym___extension__] = ACTIONS(3071), - [anon_sym_typedef] = ACTIONS(3071), - [anon_sym_virtual] = ACTIONS(3071), - [anon_sym_extern] = ACTIONS(3071), - [anon_sym___attribute__] = ACTIONS(3071), - [anon_sym___attribute] = ACTIONS(3071), - [anon_sym_using] = ACTIONS(3071), - [anon_sym_COLON_COLON] = ACTIONS(3073), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3073), - [anon_sym___declspec] = ACTIONS(3071), - [anon_sym___based] = ACTIONS(3071), - [anon_sym___cdecl] = ACTIONS(3071), - [anon_sym___clrcall] = ACTIONS(3071), - [anon_sym___stdcall] = ACTIONS(3071), - [anon_sym___fastcall] = ACTIONS(3071), - [anon_sym___thiscall] = ACTIONS(3071), - [anon_sym___vectorcall] = ACTIONS(3071), - [anon_sym_LBRACE] = ACTIONS(3073), - [anon_sym_RBRACE] = ACTIONS(3073), - [anon_sym_signed] = ACTIONS(3071), - [anon_sym_unsigned] = ACTIONS(3071), - [anon_sym_long] = ACTIONS(3071), - [anon_sym_short] = ACTIONS(3071), - [anon_sym_LBRACK] = ACTIONS(3071), - [anon_sym_static] = ACTIONS(3071), - [anon_sym_register] = ACTIONS(3071), - [anon_sym_inline] = ACTIONS(3071), - [anon_sym___inline] = ACTIONS(3071), - [anon_sym___inline__] = ACTIONS(3071), - [anon_sym___forceinline] = ACTIONS(3071), - [anon_sym_thread_local] = ACTIONS(3071), - [anon_sym___thread] = ACTIONS(3071), - [anon_sym_const] = ACTIONS(3071), - [anon_sym_constexpr] = ACTIONS(3071), - [anon_sym_volatile] = ACTIONS(3071), - [anon_sym_restrict] = ACTIONS(3071), - [anon_sym___restrict__] = ACTIONS(3071), - [anon_sym__Atomic] = ACTIONS(3071), - [anon_sym__Noreturn] = ACTIONS(3071), - [anon_sym_noreturn] = ACTIONS(3071), - [anon_sym__Nonnull] = ACTIONS(3071), - [anon_sym_mutable] = ACTIONS(3071), - [anon_sym_constinit] = ACTIONS(3071), - [anon_sym_consteval] = ACTIONS(3071), - [anon_sym_alignas] = ACTIONS(3071), - [anon_sym__Alignas] = ACTIONS(3071), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(3071), - [anon_sym_class] = ACTIONS(3071), - [anon_sym_struct] = ACTIONS(3071), - [anon_sym_union] = ACTIONS(3071), - [anon_sym_if] = ACTIONS(3071), - [anon_sym_switch] = ACTIONS(3071), - [anon_sym_case] = ACTIONS(3071), - [anon_sym_default] = ACTIONS(3071), - [anon_sym_while] = ACTIONS(3071), - [anon_sym_do] = ACTIONS(3071), - [anon_sym_for] = ACTIONS(3071), - [anon_sym_return] = ACTIONS(3071), - [anon_sym_break] = ACTIONS(3071), - [anon_sym_continue] = ACTIONS(3071), - [anon_sym_goto] = ACTIONS(3071), - [anon_sym___try] = ACTIONS(3071), - [anon_sym___leave] = ACTIONS(3071), - [anon_sym_not] = ACTIONS(3071), - [anon_sym_compl] = ACTIONS(3071), - [anon_sym_DASH_DASH] = ACTIONS(3073), - [anon_sym_PLUS_PLUS] = ACTIONS(3073), - [anon_sym_sizeof] = ACTIONS(3071), - [anon_sym___alignof__] = ACTIONS(3071), - [anon_sym___alignof] = ACTIONS(3071), - [anon_sym__alignof] = ACTIONS(3071), - [anon_sym_alignof] = ACTIONS(3071), - [anon_sym__Alignof] = ACTIONS(3071), - [anon_sym_offsetof] = ACTIONS(3071), - [anon_sym__Generic] = ACTIONS(3071), - [anon_sym_asm] = ACTIONS(3071), - [anon_sym___asm__] = ACTIONS(3071), - [anon_sym___asm] = ACTIONS(3071), - [sym_number_literal] = ACTIONS(3073), - [anon_sym_L_SQUOTE] = ACTIONS(3073), - [anon_sym_u_SQUOTE] = ACTIONS(3073), - [anon_sym_U_SQUOTE] = ACTIONS(3073), - [anon_sym_u8_SQUOTE] = ACTIONS(3073), - [anon_sym_SQUOTE] = ACTIONS(3073), - [anon_sym_L_DQUOTE] = ACTIONS(3073), - [anon_sym_u_DQUOTE] = ACTIONS(3073), - [anon_sym_U_DQUOTE] = ACTIONS(3073), - [anon_sym_u8_DQUOTE] = ACTIONS(3073), - [anon_sym_DQUOTE] = ACTIONS(3073), - [sym_true] = ACTIONS(3071), - [sym_false] = ACTIONS(3071), - [anon_sym_NULL] = ACTIONS(3071), - [anon_sym_nullptr] = ACTIONS(3071), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3071), - [anon_sym_decltype] = ACTIONS(3071), - [anon_sym_explicit] = ACTIONS(3071), - [anon_sym_typename] = ACTIONS(3071), - [anon_sym_template] = ACTIONS(3071), - [anon_sym_operator] = ACTIONS(3071), - [anon_sym_try] = ACTIONS(3071), - [anon_sym_delete] = ACTIONS(3071), - [anon_sym_throw] = ACTIONS(3071), - [anon_sym_namespace] = ACTIONS(3071), - [anon_sym_static_assert] = ACTIONS(3071), - [anon_sym_concept] = ACTIONS(3071), - [anon_sym_co_return] = ACTIONS(3071), - [anon_sym_co_yield] = ACTIONS(3071), - [anon_sym_R_DQUOTE] = ACTIONS(3073), - [anon_sym_LR_DQUOTE] = ACTIONS(3073), - [anon_sym_uR_DQUOTE] = ACTIONS(3073), - [anon_sym_UR_DQUOTE] = ACTIONS(3073), - [anon_sym_u8R_DQUOTE] = ACTIONS(3073), - [anon_sym_co_await] = ACTIONS(3071), - [anon_sym_new] = ACTIONS(3071), - [anon_sym_requires] = ACTIONS(3071), - [sym_this] = ACTIONS(3071), + [790] = { + [sym_identifier] = ACTIONS(3124), + [aux_sym_preproc_include_token1] = ACTIONS(3124), + [aux_sym_preproc_def_token1] = ACTIONS(3124), + [aux_sym_preproc_if_token1] = ACTIONS(3124), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3124), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3124), + [sym_preproc_directive] = ACTIONS(3124), + [anon_sym_LPAREN2] = ACTIONS(3126), + [anon_sym_BANG] = ACTIONS(3126), + [anon_sym_TILDE] = ACTIONS(3126), + [anon_sym_DASH] = ACTIONS(3124), + [anon_sym_PLUS] = ACTIONS(3124), + [anon_sym_STAR] = ACTIONS(3126), + [anon_sym_AMP_AMP] = ACTIONS(3126), + [anon_sym_AMP] = ACTIONS(3124), + [anon_sym_SEMI] = ACTIONS(3126), + [anon_sym___extension__] = ACTIONS(3124), + [anon_sym_typedef] = ACTIONS(3124), + [anon_sym_virtual] = ACTIONS(3124), + [anon_sym_extern] = ACTIONS(3124), + [anon_sym___attribute__] = ACTIONS(3124), + [anon_sym___attribute] = ACTIONS(3124), + [anon_sym_using] = ACTIONS(3124), + [anon_sym_COLON_COLON] = ACTIONS(3126), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3126), + [anon_sym___declspec] = ACTIONS(3124), + [anon_sym___based] = ACTIONS(3124), + [anon_sym___cdecl] = ACTIONS(3124), + [anon_sym___clrcall] = ACTIONS(3124), + [anon_sym___stdcall] = ACTIONS(3124), + [anon_sym___fastcall] = ACTIONS(3124), + [anon_sym___thiscall] = ACTIONS(3124), + [anon_sym___vectorcall] = ACTIONS(3124), + [anon_sym_LBRACE] = ACTIONS(3126), + [anon_sym_RBRACE] = ACTIONS(3126), + [anon_sym_signed] = ACTIONS(3124), + [anon_sym_unsigned] = ACTIONS(3124), + [anon_sym_long] = ACTIONS(3124), + [anon_sym_short] = ACTIONS(3124), + [anon_sym_LBRACK] = ACTIONS(3124), + [anon_sym_static] = ACTIONS(3124), + [anon_sym_register] = ACTIONS(3124), + [anon_sym_inline] = ACTIONS(3124), + [anon_sym___inline] = ACTIONS(3124), + [anon_sym___inline__] = ACTIONS(3124), + [anon_sym___forceinline] = ACTIONS(3124), + [anon_sym_thread_local] = ACTIONS(3124), + [anon_sym___thread] = ACTIONS(3124), + [anon_sym_const] = ACTIONS(3124), + [anon_sym_constexpr] = ACTIONS(3124), + [anon_sym_volatile] = ACTIONS(3124), + [anon_sym_restrict] = ACTIONS(3124), + [anon_sym___restrict__] = ACTIONS(3124), + [anon_sym__Atomic] = ACTIONS(3124), + [anon_sym__Noreturn] = ACTIONS(3124), + [anon_sym_noreturn] = ACTIONS(3124), + [anon_sym__Nonnull] = ACTIONS(3124), + [anon_sym_mutable] = ACTIONS(3124), + [anon_sym_constinit] = ACTIONS(3124), + [anon_sym_consteval] = ACTIONS(3124), + [anon_sym_alignas] = ACTIONS(3124), + [anon_sym__Alignas] = ACTIONS(3124), + [sym_primitive_type] = ACTIONS(3124), + [anon_sym_enum] = ACTIONS(3124), + [anon_sym_class] = ACTIONS(3124), + [anon_sym_struct] = ACTIONS(3124), + [anon_sym_union] = ACTIONS(3124), + [anon_sym_if] = ACTIONS(3124), + [anon_sym_switch] = ACTIONS(3124), + [anon_sym_case] = ACTIONS(3124), + [anon_sym_default] = ACTIONS(3124), + [anon_sym_while] = ACTIONS(3124), + [anon_sym_do] = ACTIONS(3124), + [anon_sym_for] = ACTIONS(3124), + [anon_sym_return] = ACTIONS(3124), + [anon_sym_break] = ACTIONS(3124), + [anon_sym_continue] = ACTIONS(3124), + [anon_sym_goto] = ACTIONS(3124), + [anon_sym___try] = ACTIONS(3124), + [anon_sym___leave] = ACTIONS(3124), + [anon_sym_not] = ACTIONS(3124), + [anon_sym_compl] = ACTIONS(3124), + [anon_sym_DASH_DASH] = ACTIONS(3126), + [anon_sym_PLUS_PLUS] = ACTIONS(3126), + [anon_sym_sizeof] = ACTIONS(3124), + [anon_sym___alignof__] = ACTIONS(3124), + [anon_sym___alignof] = ACTIONS(3124), + [anon_sym__alignof] = ACTIONS(3124), + [anon_sym_alignof] = ACTIONS(3124), + [anon_sym__Alignof] = ACTIONS(3124), + [anon_sym_offsetof] = ACTIONS(3124), + [anon_sym__Generic] = ACTIONS(3124), + [anon_sym_asm] = ACTIONS(3124), + [anon_sym___asm__] = ACTIONS(3124), + [anon_sym___asm] = ACTIONS(3124), + [sym_number_literal] = ACTIONS(3126), + [anon_sym_L_SQUOTE] = ACTIONS(3126), + [anon_sym_u_SQUOTE] = ACTIONS(3126), + [anon_sym_U_SQUOTE] = ACTIONS(3126), + [anon_sym_u8_SQUOTE] = ACTIONS(3126), + [anon_sym_SQUOTE] = ACTIONS(3126), + [anon_sym_L_DQUOTE] = ACTIONS(3126), + [anon_sym_u_DQUOTE] = ACTIONS(3126), + [anon_sym_U_DQUOTE] = ACTIONS(3126), + [anon_sym_u8_DQUOTE] = ACTIONS(3126), + [anon_sym_DQUOTE] = ACTIONS(3126), + [sym_true] = ACTIONS(3124), + [sym_false] = ACTIONS(3124), + [anon_sym_NULL] = ACTIONS(3124), + [anon_sym_nullptr] = ACTIONS(3124), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3124), + [anon_sym_decltype] = ACTIONS(3124), + [anon_sym_explicit] = ACTIONS(3124), + [anon_sym_typename] = ACTIONS(3124), + [anon_sym_template] = ACTIONS(3124), + [anon_sym_operator] = ACTIONS(3124), + [anon_sym_try] = ACTIONS(3124), + [anon_sym_delete] = ACTIONS(3124), + [anon_sym_throw] = ACTIONS(3124), + [anon_sym_namespace] = ACTIONS(3124), + [anon_sym_static_assert] = ACTIONS(3124), + [anon_sym_concept] = ACTIONS(3124), + [anon_sym_co_return] = ACTIONS(3124), + [anon_sym_co_yield] = ACTIONS(3124), + [anon_sym_R_DQUOTE] = ACTIONS(3126), + [anon_sym_LR_DQUOTE] = ACTIONS(3126), + [anon_sym_uR_DQUOTE] = ACTIONS(3126), + [anon_sym_UR_DQUOTE] = ACTIONS(3126), + [anon_sym_u8R_DQUOTE] = ACTIONS(3126), + [anon_sym_co_await] = ACTIONS(3124), + [anon_sym_new] = ACTIONS(3124), + [anon_sym_requires] = ACTIONS(3124), + [sym_this] = ACTIONS(3124), }, - [757] = { - [sym_identifier] = ACTIONS(3075), - [aux_sym_preproc_include_token1] = ACTIONS(3075), - [aux_sym_preproc_def_token1] = ACTIONS(3075), - [aux_sym_preproc_if_token1] = ACTIONS(3075), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3075), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3075), - [sym_preproc_directive] = ACTIONS(3075), - [anon_sym_LPAREN2] = ACTIONS(3077), - [anon_sym_BANG] = ACTIONS(3077), - [anon_sym_TILDE] = ACTIONS(3077), - [anon_sym_DASH] = ACTIONS(3075), - [anon_sym_PLUS] = ACTIONS(3075), - [anon_sym_STAR] = ACTIONS(3077), - [anon_sym_AMP_AMP] = ACTIONS(3077), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_SEMI] = ACTIONS(3077), - [anon_sym___extension__] = ACTIONS(3075), - [anon_sym_typedef] = ACTIONS(3075), - [anon_sym_virtual] = ACTIONS(3075), - [anon_sym_extern] = ACTIONS(3075), - [anon_sym___attribute__] = ACTIONS(3075), - [anon_sym___attribute] = ACTIONS(3075), - [anon_sym_using] = ACTIONS(3075), - [anon_sym_COLON_COLON] = ACTIONS(3077), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3077), - [anon_sym___declspec] = ACTIONS(3075), - [anon_sym___based] = ACTIONS(3075), - [anon_sym___cdecl] = ACTIONS(3075), - [anon_sym___clrcall] = ACTIONS(3075), - [anon_sym___stdcall] = ACTIONS(3075), - [anon_sym___fastcall] = ACTIONS(3075), - [anon_sym___thiscall] = ACTIONS(3075), - [anon_sym___vectorcall] = ACTIONS(3075), - [anon_sym_LBRACE] = ACTIONS(3077), - [anon_sym_RBRACE] = ACTIONS(3077), - [anon_sym_signed] = ACTIONS(3075), - [anon_sym_unsigned] = ACTIONS(3075), - [anon_sym_long] = ACTIONS(3075), - [anon_sym_short] = ACTIONS(3075), - [anon_sym_LBRACK] = ACTIONS(3075), - [anon_sym_static] = ACTIONS(3075), - [anon_sym_register] = ACTIONS(3075), - [anon_sym_inline] = ACTIONS(3075), - [anon_sym___inline] = ACTIONS(3075), - [anon_sym___inline__] = ACTIONS(3075), - [anon_sym___forceinline] = ACTIONS(3075), - [anon_sym_thread_local] = ACTIONS(3075), - [anon_sym___thread] = ACTIONS(3075), - [anon_sym_const] = ACTIONS(3075), - [anon_sym_constexpr] = ACTIONS(3075), - [anon_sym_volatile] = ACTIONS(3075), - [anon_sym_restrict] = ACTIONS(3075), - [anon_sym___restrict__] = ACTIONS(3075), - [anon_sym__Atomic] = ACTIONS(3075), - [anon_sym__Noreturn] = ACTIONS(3075), - [anon_sym_noreturn] = ACTIONS(3075), - [anon_sym__Nonnull] = ACTIONS(3075), - [anon_sym_mutable] = ACTIONS(3075), - [anon_sym_constinit] = ACTIONS(3075), - [anon_sym_consteval] = ACTIONS(3075), - [anon_sym_alignas] = ACTIONS(3075), - [anon_sym__Alignas] = ACTIONS(3075), - [sym_primitive_type] = ACTIONS(3075), - [anon_sym_enum] = ACTIONS(3075), - [anon_sym_class] = ACTIONS(3075), - [anon_sym_struct] = ACTIONS(3075), - [anon_sym_union] = ACTIONS(3075), - [anon_sym_if] = ACTIONS(3075), - [anon_sym_switch] = ACTIONS(3075), - [anon_sym_case] = ACTIONS(3075), - [anon_sym_default] = ACTIONS(3075), - [anon_sym_while] = ACTIONS(3075), - [anon_sym_do] = ACTIONS(3075), - [anon_sym_for] = ACTIONS(3075), - [anon_sym_return] = ACTIONS(3075), - [anon_sym_break] = ACTIONS(3075), - [anon_sym_continue] = ACTIONS(3075), - [anon_sym_goto] = ACTIONS(3075), - [anon_sym___try] = ACTIONS(3075), - [anon_sym___leave] = ACTIONS(3075), - [anon_sym_not] = ACTIONS(3075), - [anon_sym_compl] = ACTIONS(3075), - [anon_sym_DASH_DASH] = ACTIONS(3077), - [anon_sym_PLUS_PLUS] = ACTIONS(3077), - [anon_sym_sizeof] = ACTIONS(3075), - [anon_sym___alignof__] = ACTIONS(3075), - [anon_sym___alignof] = ACTIONS(3075), - [anon_sym__alignof] = ACTIONS(3075), - [anon_sym_alignof] = ACTIONS(3075), - [anon_sym__Alignof] = ACTIONS(3075), - [anon_sym_offsetof] = ACTIONS(3075), - [anon_sym__Generic] = ACTIONS(3075), - [anon_sym_asm] = ACTIONS(3075), - [anon_sym___asm__] = ACTIONS(3075), - [anon_sym___asm] = ACTIONS(3075), - [sym_number_literal] = ACTIONS(3077), - [anon_sym_L_SQUOTE] = ACTIONS(3077), - [anon_sym_u_SQUOTE] = ACTIONS(3077), - [anon_sym_U_SQUOTE] = ACTIONS(3077), - [anon_sym_u8_SQUOTE] = ACTIONS(3077), - [anon_sym_SQUOTE] = ACTIONS(3077), - [anon_sym_L_DQUOTE] = ACTIONS(3077), - [anon_sym_u_DQUOTE] = ACTIONS(3077), - [anon_sym_U_DQUOTE] = ACTIONS(3077), - [anon_sym_u8_DQUOTE] = ACTIONS(3077), - [anon_sym_DQUOTE] = ACTIONS(3077), - [sym_true] = ACTIONS(3075), - [sym_false] = ACTIONS(3075), - [anon_sym_NULL] = ACTIONS(3075), - [anon_sym_nullptr] = ACTIONS(3075), + [791] = { + [sym_identifier] = ACTIONS(2843), + [aux_sym_preproc_include_token1] = ACTIONS(2843), + [aux_sym_preproc_def_token1] = ACTIONS(2843), + [aux_sym_preproc_if_token1] = ACTIONS(2843), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2843), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2843), + [sym_preproc_directive] = ACTIONS(2843), + [anon_sym_LPAREN2] = ACTIONS(2845), + [anon_sym_BANG] = ACTIONS(2845), + [anon_sym_TILDE] = ACTIONS(2845), + [anon_sym_DASH] = ACTIONS(2843), + [anon_sym_PLUS] = ACTIONS(2843), + [anon_sym_STAR] = ACTIONS(2845), + [anon_sym_AMP_AMP] = ACTIONS(2845), + [anon_sym_AMP] = ACTIONS(2843), + [anon_sym_SEMI] = ACTIONS(2845), + [anon_sym___extension__] = ACTIONS(2843), + [anon_sym_typedef] = ACTIONS(2843), + [anon_sym_virtual] = ACTIONS(2843), + [anon_sym_extern] = ACTIONS(2843), + [anon_sym___attribute__] = ACTIONS(2843), + [anon_sym___attribute] = ACTIONS(2843), + [anon_sym_using] = ACTIONS(2843), + [anon_sym_COLON_COLON] = ACTIONS(2845), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2845), + [anon_sym___declspec] = ACTIONS(2843), + [anon_sym___based] = ACTIONS(2843), + [anon_sym___cdecl] = ACTIONS(2843), + [anon_sym___clrcall] = ACTIONS(2843), + [anon_sym___stdcall] = ACTIONS(2843), + [anon_sym___fastcall] = ACTIONS(2843), + [anon_sym___thiscall] = ACTIONS(2843), + [anon_sym___vectorcall] = ACTIONS(2843), + [anon_sym_LBRACE] = ACTIONS(2845), + [anon_sym_RBRACE] = ACTIONS(2845), + [anon_sym_signed] = ACTIONS(2843), + [anon_sym_unsigned] = ACTIONS(2843), + [anon_sym_long] = ACTIONS(2843), + [anon_sym_short] = ACTIONS(2843), + [anon_sym_LBRACK] = ACTIONS(2843), + [anon_sym_static] = ACTIONS(2843), + [anon_sym_register] = ACTIONS(2843), + [anon_sym_inline] = ACTIONS(2843), + [anon_sym___inline] = ACTIONS(2843), + [anon_sym___inline__] = ACTIONS(2843), + [anon_sym___forceinline] = ACTIONS(2843), + [anon_sym_thread_local] = ACTIONS(2843), + [anon_sym___thread] = ACTIONS(2843), + [anon_sym_const] = ACTIONS(2843), + [anon_sym_constexpr] = ACTIONS(2843), + [anon_sym_volatile] = ACTIONS(2843), + [anon_sym_restrict] = ACTIONS(2843), + [anon_sym___restrict__] = ACTIONS(2843), + [anon_sym__Atomic] = ACTIONS(2843), + [anon_sym__Noreturn] = ACTIONS(2843), + [anon_sym_noreturn] = ACTIONS(2843), + [anon_sym__Nonnull] = ACTIONS(2843), + [anon_sym_mutable] = ACTIONS(2843), + [anon_sym_constinit] = ACTIONS(2843), + [anon_sym_consteval] = ACTIONS(2843), + [anon_sym_alignas] = ACTIONS(2843), + [anon_sym__Alignas] = ACTIONS(2843), + [sym_primitive_type] = ACTIONS(2843), + [anon_sym_enum] = ACTIONS(2843), + [anon_sym_class] = ACTIONS(2843), + [anon_sym_struct] = ACTIONS(2843), + [anon_sym_union] = ACTIONS(2843), + [anon_sym_if] = ACTIONS(2843), + [anon_sym_switch] = ACTIONS(2843), + [anon_sym_case] = ACTIONS(2843), + [anon_sym_default] = ACTIONS(2843), + [anon_sym_while] = ACTIONS(2843), + [anon_sym_do] = ACTIONS(2843), + [anon_sym_for] = ACTIONS(2843), + [anon_sym_return] = ACTIONS(2843), + [anon_sym_break] = ACTIONS(2843), + [anon_sym_continue] = ACTIONS(2843), + [anon_sym_goto] = ACTIONS(2843), + [anon_sym___try] = ACTIONS(2843), + [anon_sym___leave] = ACTIONS(2843), + [anon_sym_not] = ACTIONS(2843), + [anon_sym_compl] = ACTIONS(2843), + [anon_sym_DASH_DASH] = ACTIONS(2845), + [anon_sym_PLUS_PLUS] = ACTIONS(2845), + [anon_sym_sizeof] = ACTIONS(2843), + [anon_sym___alignof__] = ACTIONS(2843), + [anon_sym___alignof] = ACTIONS(2843), + [anon_sym__alignof] = ACTIONS(2843), + [anon_sym_alignof] = ACTIONS(2843), + [anon_sym__Alignof] = ACTIONS(2843), + [anon_sym_offsetof] = ACTIONS(2843), + [anon_sym__Generic] = ACTIONS(2843), + [anon_sym_asm] = ACTIONS(2843), + [anon_sym___asm__] = ACTIONS(2843), + [anon_sym___asm] = ACTIONS(2843), + [sym_number_literal] = ACTIONS(2845), + [anon_sym_L_SQUOTE] = ACTIONS(2845), + [anon_sym_u_SQUOTE] = ACTIONS(2845), + [anon_sym_U_SQUOTE] = ACTIONS(2845), + [anon_sym_u8_SQUOTE] = ACTIONS(2845), + [anon_sym_SQUOTE] = ACTIONS(2845), + [anon_sym_L_DQUOTE] = ACTIONS(2845), + [anon_sym_u_DQUOTE] = ACTIONS(2845), + [anon_sym_U_DQUOTE] = ACTIONS(2845), + [anon_sym_u8_DQUOTE] = ACTIONS(2845), + [anon_sym_DQUOTE] = ACTIONS(2845), + [sym_true] = ACTIONS(2843), + [sym_false] = ACTIONS(2843), + [anon_sym_NULL] = ACTIONS(2843), + [anon_sym_nullptr] = ACTIONS(2843), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3075), - [anon_sym_decltype] = ACTIONS(3075), - [anon_sym_explicit] = ACTIONS(3075), - [anon_sym_typename] = ACTIONS(3075), - [anon_sym_template] = ACTIONS(3075), - [anon_sym_operator] = ACTIONS(3075), - [anon_sym_try] = ACTIONS(3075), - [anon_sym_delete] = ACTIONS(3075), - [anon_sym_throw] = ACTIONS(3075), - [anon_sym_namespace] = ACTIONS(3075), - [anon_sym_static_assert] = ACTIONS(3075), - [anon_sym_concept] = ACTIONS(3075), - [anon_sym_co_return] = ACTIONS(3075), - [anon_sym_co_yield] = ACTIONS(3075), - [anon_sym_R_DQUOTE] = ACTIONS(3077), - [anon_sym_LR_DQUOTE] = ACTIONS(3077), - [anon_sym_uR_DQUOTE] = ACTIONS(3077), - [anon_sym_UR_DQUOTE] = ACTIONS(3077), - [anon_sym_u8R_DQUOTE] = ACTIONS(3077), - [anon_sym_co_await] = ACTIONS(3075), - [anon_sym_new] = ACTIONS(3075), - [anon_sym_requires] = ACTIONS(3075), - [sym_this] = ACTIONS(3075), + [sym_auto] = ACTIONS(2843), + [anon_sym_decltype] = ACTIONS(2843), + [anon_sym_explicit] = ACTIONS(2843), + [anon_sym_typename] = ACTIONS(2843), + [anon_sym_template] = ACTIONS(2843), + [anon_sym_operator] = ACTIONS(2843), + [anon_sym_try] = ACTIONS(2843), + [anon_sym_delete] = ACTIONS(2843), + [anon_sym_throw] = ACTIONS(2843), + [anon_sym_namespace] = ACTIONS(2843), + [anon_sym_static_assert] = ACTIONS(2843), + [anon_sym_concept] = ACTIONS(2843), + [anon_sym_co_return] = ACTIONS(2843), + [anon_sym_co_yield] = ACTIONS(2843), + [anon_sym_R_DQUOTE] = ACTIONS(2845), + [anon_sym_LR_DQUOTE] = ACTIONS(2845), + [anon_sym_uR_DQUOTE] = ACTIONS(2845), + [anon_sym_UR_DQUOTE] = ACTIONS(2845), + [anon_sym_u8R_DQUOTE] = ACTIONS(2845), + [anon_sym_co_await] = ACTIONS(2843), + [anon_sym_new] = ACTIONS(2843), + [anon_sym_requires] = ACTIONS(2843), + [sym_this] = ACTIONS(2843), }, - [758] = { - [sym_identifier] = ACTIONS(3079), - [aux_sym_preproc_include_token1] = ACTIONS(3079), - [aux_sym_preproc_def_token1] = ACTIONS(3079), - [aux_sym_preproc_if_token1] = ACTIONS(3079), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3079), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3079), - [sym_preproc_directive] = ACTIONS(3079), - [anon_sym_LPAREN2] = ACTIONS(3081), - [anon_sym_BANG] = ACTIONS(3081), - [anon_sym_TILDE] = ACTIONS(3081), - [anon_sym_DASH] = ACTIONS(3079), - [anon_sym_PLUS] = ACTIONS(3079), - [anon_sym_STAR] = ACTIONS(3081), - [anon_sym_AMP_AMP] = ACTIONS(3081), - [anon_sym_AMP] = ACTIONS(3079), - [anon_sym_SEMI] = ACTIONS(3081), - [anon_sym___extension__] = ACTIONS(3079), - [anon_sym_typedef] = ACTIONS(3079), - [anon_sym_virtual] = ACTIONS(3079), - [anon_sym_extern] = ACTIONS(3079), - [anon_sym___attribute__] = ACTIONS(3079), - [anon_sym___attribute] = ACTIONS(3079), - [anon_sym_using] = ACTIONS(3079), - [anon_sym_COLON_COLON] = ACTIONS(3081), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3081), - [anon_sym___declspec] = ACTIONS(3079), - [anon_sym___based] = ACTIONS(3079), - [anon_sym___cdecl] = ACTIONS(3079), - [anon_sym___clrcall] = ACTIONS(3079), - [anon_sym___stdcall] = ACTIONS(3079), - [anon_sym___fastcall] = ACTIONS(3079), - [anon_sym___thiscall] = ACTIONS(3079), - [anon_sym___vectorcall] = ACTIONS(3079), - [anon_sym_LBRACE] = ACTIONS(3081), - [anon_sym_RBRACE] = ACTIONS(3081), - [anon_sym_signed] = ACTIONS(3079), - [anon_sym_unsigned] = ACTIONS(3079), - [anon_sym_long] = ACTIONS(3079), - [anon_sym_short] = ACTIONS(3079), - [anon_sym_LBRACK] = ACTIONS(3079), - [anon_sym_static] = ACTIONS(3079), - [anon_sym_register] = ACTIONS(3079), - [anon_sym_inline] = ACTIONS(3079), - [anon_sym___inline] = ACTIONS(3079), - [anon_sym___inline__] = ACTIONS(3079), - [anon_sym___forceinline] = ACTIONS(3079), - [anon_sym_thread_local] = ACTIONS(3079), - [anon_sym___thread] = ACTIONS(3079), - [anon_sym_const] = ACTIONS(3079), - [anon_sym_constexpr] = ACTIONS(3079), - [anon_sym_volatile] = ACTIONS(3079), - [anon_sym_restrict] = ACTIONS(3079), - [anon_sym___restrict__] = ACTIONS(3079), - [anon_sym__Atomic] = ACTIONS(3079), - [anon_sym__Noreturn] = ACTIONS(3079), - [anon_sym_noreturn] = ACTIONS(3079), - [anon_sym__Nonnull] = ACTIONS(3079), - [anon_sym_mutable] = ACTIONS(3079), - [anon_sym_constinit] = ACTIONS(3079), - [anon_sym_consteval] = ACTIONS(3079), - [anon_sym_alignas] = ACTIONS(3079), - [anon_sym__Alignas] = ACTIONS(3079), - [sym_primitive_type] = ACTIONS(3079), - [anon_sym_enum] = ACTIONS(3079), - [anon_sym_class] = ACTIONS(3079), - [anon_sym_struct] = ACTIONS(3079), - [anon_sym_union] = ACTIONS(3079), - [anon_sym_if] = ACTIONS(3079), - [anon_sym_switch] = ACTIONS(3079), - [anon_sym_case] = ACTIONS(3079), - [anon_sym_default] = ACTIONS(3079), - [anon_sym_while] = ACTIONS(3079), - [anon_sym_do] = ACTIONS(3079), - [anon_sym_for] = ACTIONS(3079), - [anon_sym_return] = ACTIONS(3079), - [anon_sym_break] = ACTIONS(3079), - [anon_sym_continue] = ACTIONS(3079), - [anon_sym_goto] = ACTIONS(3079), - [anon_sym___try] = ACTIONS(3079), - [anon_sym___leave] = ACTIONS(3079), - [anon_sym_not] = ACTIONS(3079), - [anon_sym_compl] = ACTIONS(3079), - [anon_sym_DASH_DASH] = ACTIONS(3081), - [anon_sym_PLUS_PLUS] = ACTIONS(3081), - [anon_sym_sizeof] = ACTIONS(3079), - [anon_sym___alignof__] = ACTIONS(3079), - [anon_sym___alignof] = ACTIONS(3079), - [anon_sym__alignof] = ACTIONS(3079), - [anon_sym_alignof] = ACTIONS(3079), - [anon_sym__Alignof] = ACTIONS(3079), - [anon_sym_offsetof] = ACTIONS(3079), - [anon_sym__Generic] = ACTIONS(3079), - [anon_sym_asm] = ACTIONS(3079), - [anon_sym___asm__] = ACTIONS(3079), - [anon_sym___asm] = ACTIONS(3079), - [sym_number_literal] = ACTIONS(3081), - [anon_sym_L_SQUOTE] = ACTIONS(3081), - [anon_sym_u_SQUOTE] = ACTIONS(3081), - [anon_sym_U_SQUOTE] = ACTIONS(3081), - [anon_sym_u8_SQUOTE] = ACTIONS(3081), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_L_DQUOTE] = ACTIONS(3081), - [anon_sym_u_DQUOTE] = ACTIONS(3081), - [anon_sym_U_DQUOTE] = ACTIONS(3081), - [anon_sym_u8_DQUOTE] = ACTIONS(3081), - [anon_sym_DQUOTE] = ACTIONS(3081), - [sym_true] = ACTIONS(3079), - [sym_false] = ACTIONS(3079), - [anon_sym_NULL] = ACTIONS(3079), - [anon_sym_nullptr] = ACTIONS(3079), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3079), - [anon_sym_decltype] = ACTIONS(3079), - [anon_sym_explicit] = ACTIONS(3079), - [anon_sym_typename] = ACTIONS(3079), - [anon_sym_template] = ACTIONS(3079), - [anon_sym_operator] = ACTIONS(3079), - [anon_sym_try] = ACTIONS(3079), - [anon_sym_delete] = ACTIONS(3079), - [anon_sym_throw] = ACTIONS(3079), - [anon_sym_namespace] = ACTIONS(3079), - [anon_sym_static_assert] = ACTIONS(3079), - [anon_sym_concept] = ACTIONS(3079), - [anon_sym_co_return] = ACTIONS(3079), - [anon_sym_co_yield] = ACTIONS(3079), - [anon_sym_R_DQUOTE] = ACTIONS(3081), - [anon_sym_LR_DQUOTE] = ACTIONS(3081), - [anon_sym_uR_DQUOTE] = ACTIONS(3081), - [anon_sym_UR_DQUOTE] = ACTIONS(3081), - [anon_sym_u8R_DQUOTE] = ACTIONS(3081), - [anon_sym_co_await] = ACTIONS(3079), - [anon_sym_new] = ACTIONS(3079), - [anon_sym_requires] = ACTIONS(3079), - [sym_this] = ACTIONS(3079), + [792] = { + [sym_identifier] = ACTIONS(3321), + [aux_sym_preproc_include_token1] = ACTIONS(3321), + [aux_sym_preproc_def_token1] = ACTIONS(3321), + [aux_sym_preproc_if_token1] = ACTIONS(3321), + [aux_sym_preproc_if_token2] = ACTIONS(3321), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3321), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3321), + [sym_preproc_directive] = ACTIONS(3321), + [anon_sym_LPAREN2] = ACTIONS(3324), + [anon_sym_BANG] = ACTIONS(3324), + [anon_sym_TILDE] = ACTIONS(3324), + [anon_sym_DASH] = ACTIONS(3321), + [anon_sym_PLUS] = ACTIONS(3321), + [anon_sym_STAR] = ACTIONS(3324), + [anon_sym_AMP_AMP] = ACTIONS(3324), + [anon_sym_AMP] = ACTIONS(3321), + [anon_sym_SEMI] = ACTIONS(3324), + [anon_sym___extension__] = ACTIONS(3321), + [anon_sym_typedef] = ACTIONS(3321), + [anon_sym_virtual] = ACTIONS(3321), + [anon_sym_extern] = ACTIONS(3321), + [anon_sym___attribute__] = ACTIONS(3321), + [anon_sym___attribute] = ACTIONS(3321), + [anon_sym_using] = ACTIONS(3321), + [anon_sym_COLON_COLON] = ACTIONS(3324), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3324), + [anon_sym___declspec] = ACTIONS(3321), + [anon_sym___based] = ACTIONS(3321), + [anon_sym___cdecl] = ACTIONS(3321), + [anon_sym___clrcall] = ACTIONS(3321), + [anon_sym___stdcall] = ACTIONS(3321), + [anon_sym___fastcall] = ACTIONS(3321), + [anon_sym___thiscall] = ACTIONS(3321), + [anon_sym___vectorcall] = ACTIONS(3321), + [anon_sym_LBRACE] = ACTIONS(3324), + [anon_sym_signed] = ACTIONS(3321), + [anon_sym_unsigned] = ACTIONS(3321), + [anon_sym_long] = ACTIONS(3321), + [anon_sym_short] = ACTIONS(3321), + [anon_sym_LBRACK] = ACTIONS(3321), + [anon_sym_static] = ACTIONS(3321), + [anon_sym_register] = ACTIONS(3321), + [anon_sym_inline] = ACTIONS(3321), + [anon_sym___inline] = ACTIONS(3321), + [anon_sym___inline__] = ACTIONS(3321), + [anon_sym___forceinline] = ACTIONS(3321), + [anon_sym_thread_local] = ACTIONS(3321), + [anon_sym___thread] = ACTIONS(3321), + [anon_sym_const] = ACTIONS(3321), + [anon_sym_constexpr] = ACTIONS(3321), + [anon_sym_volatile] = ACTIONS(3321), + [anon_sym_restrict] = ACTIONS(3321), + [anon_sym___restrict__] = ACTIONS(3321), + [anon_sym__Atomic] = ACTIONS(3321), + [anon_sym__Noreturn] = ACTIONS(3321), + [anon_sym_noreturn] = ACTIONS(3321), + [anon_sym__Nonnull] = ACTIONS(3321), + [anon_sym_mutable] = ACTIONS(3321), + [anon_sym_constinit] = ACTIONS(3321), + [anon_sym_consteval] = ACTIONS(3321), + [anon_sym_alignas] = ACTIONS(3321), + [anon_sym__Alignas] = ACTIONS(3321), + [sym_primitive_type] = ACTIONS(3321), + [anon_sym_enum] = ACTIONS(3321), + [anon_sym_class] = ACTIONS(3321), + [anon_sym_struct] = ACTIONS(3321), + [anon_sym_union] = ACTIONS(3321), + [anon_sym_if] = ACTIONS(3321), + [anon_sym_switch] = ACTIONS(3321), + [anon_sym_case] = ACTIONS(3321), + [anon_sym_default] = ACTIONS(3321), + [anon_sym_while] = ACTIONS(3321), + [anon_sym_do] = ACTIONS(3321), + [anon_sym_for] = ACTIONS(3321), + [anon_sym_return] = ACTIONS(3321), + [anon_sym_break] = ACTIONS(3321), + [anon_sym_continue] = ACTIONS(3321), + [anon_sym_goto] = ACTIONS(3321), + [anon_sym___try] = ACTIONS(3321), + [anon_sym___leave] = ACTIONS(3321), + [anon_sym_not] = ACTIONS(3321), + [anon_sym_compl] = ACTIONS(3321), + [anon_sym_DASH_DASH] = ACTIONS(3324), + [anon_sym_PLUS_PLUS] = ACTIONS(3324), + [anon_sym_sizeof] = ACTIONS(3321), + [anon_sym___alignof__] = ACTIONS(3321), + [anon_sym___alignof] = ACTIONS(3321), + [anon_sym__alignof] = ACTIONS(3321), + [anon_sym_alignof] = ACTIONS(3321), + [anon_sym__Alignof] = ACTIONS(3321), + [anon_sym_offsetof] = ACTIONS(3321), + [anon_sym__Generic] = ACTIONS(3321), + [anon_sym_asm] = ACTIONS(3321), + [anon_sym___asm__] = ACTIONS(3321), + [anon_sym___asm] = ACTIONS(3321), + [sym_number_literal] = ACTIONS(3324), + [anon_sym_L_SQUOTE] = ACTIONS(3324), + [anon_sym_u_SQUOTE] = ACTIONS(3324), + [anon_sym_U_SQUOTE] = ACTIONS(3324), + [anon_sym_u8_SQUOTE] = ACTIONS(3324), + [anon_sym_SQUOTE] = ACTIONS(3324), + [anon_sym_L_DQUOTE] = ACTIONS(3324), + [anon_sym_u_DQUOTE] = ACTIONS(3324), + [anon_sym_U_DQUOTE] = ACTIONS(3324), + [anon_sym_u8_DQUOTE] = ACTIONS(3324), + [anon_sym_DQUOTE] = ACTIONS(3324), + [sym_true] = ACTIONS(3321), + [sym_false] = ACTIONS(3321), + [anon_sym_NULL] = ACTIONS(3321), + [anon_sym_nullptr] = ACTIONS(3321), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3321), + [anon_sym_decltype] = ACTIONS(3321), + [anon_sym_explicit] = ACTIONS(3321), + [anon_sym_typename] = ACTIONS(3321), + [anon_sym_template] = ACTIONS(3321), + [anon_sym_operator] = ACTIONS(3321), + [anon_sym_try] = ACTIONS(3321), + [anon_sym_delete] = ACTIONS(3321), + [anon_sym_throw] = ACTIONS(3321), + [anon_sym_namespace] = ACTIONS(3321), + [anon_sym_static_assert] = ACTIONS(3321), + [anon_sym_concept] = ACTIONS(3321), + [anon_sym_co_return] = ACTIONS(3321), + [anon_sym_co_yield] = ACTIONS(3321), + [anon_sym_R_DQUOTE] = ACTIONS(3324), + [anon_sym_LR_DQUOTE] = ACTIONS(3324), + [anon_sym_uR_DQUOTE] = ACTIONS(3324), + [anon_sym_UR_DQUOTE] = ACTIONS(3324), + [anon_sym_u8R_DQUOTE] = ACTIONS(3324), + [anon_sym_co_await] = ACTIONS(3321), + [anon_sym_new] = ACTIONS(3321), + [anon_sym_requires] = ACTIONS(3321), + [sym_this] = ACTIONS(3321), }, - [759] = { - [sym_identifier] = ACTIONS(3083), - [aux_sym_preproc_include_token1] = ACTIONS(3083), - [aux_sym_preproc_def_token1] = ACTIONS(3083), - [aux_sym_preproc_if_token1] = ACTIONS(3083), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3083), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3083), - [sym_preproc_directive] = ACTIONS(3083), - [anon_sym_LPAREN2] = ACTIONS(3085), - [anon_sym_BANG] = ACTIONS(3085), - [anon_sym_TILDE] = ACTIONS(3085), - [anon_sym_DASH] = ACTIONS(3083), - [anon_sym_PLUS] = ACTIONS(3083), - [anon_sym_STAR] = ACTIONS(3085), - [anon_sym_AMP_AMP] = ACTIONS(3085), - [anon_sym_AMP] = ACTIONS(3083), - [anon_sym_SEMI] = ACTIONS(3085), - [anon_sym___extension__] = ACTIONS(3083), - [anon_sym_typedef] = ACTIONS(3083), - [anon_sym_virtual] = ACTIONS(3083), - [anon_sym_extern] = ACTIONS(3083), - [anon_sym___attribute__] = ACTIONS(3083), - [anon_sym___attribute] = ACTIONS(3083), - [anon_sym_using] = ACTIONS(3083), - [anon_sym_COLON_COLON] = ACTIONS(3085), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3085), - [anon_sym___declspec] = ACTIONS(3083), - [anon_sym___based] = ACTIONS(3083), - [anon_sym___cdecl] = ACTIONS(3083), - [anon_sym___clrcall] = ACTIONS(3083), - [anon_sym___stdcall] = ACTIONS(3083), - [anon_sym___fastcall] = ACTIONS(3083), - [anon_sym___thiscall] = ACTIONS(3083), - [anon_sym___vectorcall] = ACTIONS(3083), - [anon_sym_LBRACE] = ACTIONS(3085), - [anon_sym_RBRACE] = ACTIONS(3085), - [anon_sym_signed] = ACTIONS(3083), - [anon_sym_unsigned] = ACTIONS(3083), - [anon_sym_long] = ACTIONS(3083), - [anon_sym_short] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(3083), - [anon_sym_static] = ACTIONS(3083), - [anon_sym_register] = ACTIONS(3083), - [anon_sym_inline] = ACTIONS(3083), - [anon_sym___inline] = ACTIONS(3083), - [anon_sym___inline__] = ACTIONS(3083), - [anon_sym___forceinline] = ACTIONS(3083), - [anon_sym_thread_local] = ACTIONS(3083), - [anon_sym___thread] = ACTIONS(3083), - [anon_sym_const] = ACTIONS(3083), - [anon_sym_constexpr] = ACTIONS(3083), - [anon_sym_volatile] = ACTIONS(3083), - [anon_sym_restrict] = ACTIONS(3083), - [anon_sym___restrict__] = ACTIONS(3083), - [anon_sym__Atomic] = ACTIONS(3083), - [anon_sym__Noreturn] = ACTIONS(3083), - [anon_sym_noreturn] = ACTIONS(3083), - [anon_sym__Nonnull] = ACTIONS(3083), - [anon_sym_mutable] = ACTIONS(3083), - [anon_sym_constinit] = ACTIONS(3083), - [anon_sym_consteval] = ACTIONS(3083), - [anon_sym_alignas] = ACTIONS(3083), - [anon_sym__Alignas] = ACTIONS(3083), - [sym_primitive_type] = ACTIONS(3083), - [anon_sym_enum] = ACTIONS(3083), - [anon_sym_class] = ACTIONS(3083), - [anon_sym_struct] = ACTIONS(3083), - [anon_sym_union] = ACTIONS(3083), - [anon_sym_if] = ACTIONS(3083), - [anon_sym_switch] = ACTIONS(3083), - [anon_sym_case] = ACTIONS(3083), - [anon_sym_default] = ACTIONS(3083), - [anon_sym_while] = ACTIONS(3083), - [anon_sym_do] = ACTIONS(3083), - [anon_sym_for] = ACTIONS(3083), - [anon_sym_return] = ACTIONS(3083), - [anon_sym_break] = ACTIONS(3083), - [anon_sym_continue] = ACTIONS(3083), - [anon_sym_goto] = ACTIONS(3083), - [anon_sym___try] = ACTIONS(3083), - [anon_sym___leave] = ACTIONS(3083), - [anon_sym_not] = ACTIONS(3083), - [anon_sym_compl] = ACTIONS(3083), - [anon_sym_DASH_DASH] = ACTIONS(3085), - [anon_sym_PLUS_PLUS] = ACTIONS(3085), - [anon_sym_sizeof] = ACTIONS(3083), - [anon_sym___alignof__] = ACTIONS(3083), - [anon_sym___alignof] = ACTIONS(3083), - [anon_sym__alignof] = ACTIONS(3083), - [anon_sym_alignof] = ACTIONS(3083), - [anon_sym__Alignof] = ACTIONS(3083), - [anon_sym_offsetof] = ACTIONS(3083), - [anon_sym__Generic] = ACTIONS(3083), - [anon_sym_asm] = ACTIONS(3083), - [anon_sym___asm__] = ACTIONS(3083), - [anon_sym___asm] = ACTIONS(3083), - [sym_number_literal] = ACTIONS(3085), - [anon_sym_L_SQUOTE] = ACTIONS(3085), - [anon_sym_u_SQUOTE] = ACTIONS(3085), - [anon_sym_U_SQUOTE] = ACTIONS(3085), - [anon_sym_u8_SQUOTE] = ACTIONS(3085), - [anon_sym_SQUOTE] = ACTIONS(3085), - [anon_sym_L_DQUOTE] = ACTIONS(3085), - [anon_sym_u_DQUOTE] = ACTIONS(3085), - [anon_sym_U_DQUOTE] = ACTIONS(3085), - [anon_sym_u8_DQUOTE] = ACTIONS(3085), - [anon_sym_DQUOTE] = ACTIONS(3085), - [sym_true] = ACTIONS(3083), - [sym_false] = ACTIONS(3083), - [anon_sym_NULL] = ACTIONS(3083), - [anon_sym_nullptr] = ACTIONS(3083), + [793] = { + [sym_identifier] = ACTIONS(2847), + [aux_sym_preproc_include_token1] = ACTIONS(2847), + [aux_sym_preproc_def_token1] = ACTIONS(2847), + [aux_sym_preproc_if_token1] = ACTIONS(2847), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2847), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2847), + [sym_preproc_directive] = ACTIONS(2847), + [anon_sym_LPAREN2] = ACTIONS(2849), + [anon_sym_BANG] = ACTIONS(2849), + [anon_sym_TILDE] = ACTIONS(2849), + [anon_sym_DASH] = ACTIONS(2847), + [anon_sym_PLUS] = ACTIONS(2847), + [anon_sym_STAR] = ACTIONS(2849), + [anon_sym_AMP_AMP] = ACTIONS(2849), + [anon_sym_AMP] = ACTIONS(2847), + [anon_sym_SEMI] = ACTIONS(2849), + [anon_sym___extension__] = ACTIONS(2847), + [anon_sym_typedef] = ACTIONS(2847), + [anon_sym_virtual] = ACTIONS(2847), + [anon_sym_extern] = ACTIONS(2847), + [anon_sym___attribute__] = ACTIONS(2847), + [anon_sym___attribute] = ACTIONS(2847), + [anon_sym_using] = ACTIONS(2847), + [anon_sym_COLON_COLON] = ACTIONS(2849), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2849), + [anon_sym___declspec] = ACTIONS(2847), + [anon_sym___based] = ACTIONS(2847), + [anon_sym___cdecl] = ACTIONS(2847), + [anon_sym___clrcall] = ACTIONS(2847), + [anon_sym___stdcall] = ACTIONS(2847), + [anon_sym___fastcall] = ACTIONS(2847), + [anon_sym___thiscall] = ACTIONS(2847), + [anon_sym___vectorcall] = ACTIONS(2847), + [anon_sym_LBRACE] = ACTIONS(2849), + [anon_sym_RBRACE] = ACTIONS(2849), + [anon_sym_signed] = ACTIONS(2847), + [anon_sym_unsigned] = ACTIONS(2847), + [anon_sym_long] = ACTIONS(2847), + [anon_sym_short] = ACTIONS(2847), + [anon_sym_LBRACK] = ACTIONS(2847), + [anon_sym_static] = ACTIONS(2847), + [anon_sym_register] = ACTIONS(2847), + [anon_sym_inline] = ACTIONS(2847), + [anon_sym___inline] = ACTIONS(2847), + [anon_sym___inline__] = ACTIONS(2847), + [anon_sym___forceinline] = ACTIONS(2847), + [anon_sym_thread_local] = ACTIONS(2847), + [anon_sym___thread] = ACTIONS(2847), + [anon_sym_const] = ACTIONS(2847), + [anon_sym_constexpr] = ACTIONS(2847), + [anon_sym_volatile] = ACTIONS(2847), + [anon_sym_restrict] = ACTIONS(2847), + [anon_sym___restrict__] = ACTIONS(2847), + [anon_sym__Atomic] = ACTIONS(2847), + [anon_sym__Noreturn] = ACTIONS(2847), + [anon_sym_noreturn] = ACTIONS(2847), + [anon_sym__Nonnull] = ACTIONS(2847), + [anon_sym_mutable] = ACTIONS(2847), + [anon_sym_constinit] = ACTIONS(2847), + [anon_sym_consteval] = ACTIONS(2847), + [anon_sym_alignas] = ACTIONS(2847), + [anon_sym__Alignas] = ACTIONS(2847), + [sym_primitive_type] = ACTIONS(2847), + [anon_sym_enum] = ACTIONS(2847), + [anon_sym_class] = ACTIONS(2847), + [anon_sym_struct] = ACTIONS(2847), + [anon_sym_union] = ACTIONS(2847), + [anon_sym_if] = ACTIONS(2847), + [anon_sym_switch] = ACTIONS(2847), + [anon_sym_case] = ACTIONS(2847), + [anon_sym_default] = ACTIONS(2847), + [anon_sym_while] = ACTIONS(2847), + [anon_sym_do] = ACTIONS(2847), + [anon_sym_for] = ACTIONS(2847), + [anon_sym_return] = ACTIONS(2847), + [anon_sym_break] = ACTIONS(2847), + [anon_sym_continue] = ACTIONS(2847), + [anon_sym_goto] = ACTIONS(2847), + [anon_sym___try] = ACTIONS(2847), + [anon_sym___leave] = ACTIONS(2847), + [anon_sym_not] = ACTIONS(2847), + [anon_sym_compl] = ACTIONS(2847), + [anon_sym_DASH_DASH] = ACTIONS(2849), + [anon_sym_PLUS_PLUS] = ACTIONS(2849), + [anon_sym_sizeof] = ACTIONS(2847), + [anon_sym___alignof__] = ACTIONS(2847), + [anon_sym___alignof] = ACTIONS(2847), + [anon_sym__alignof] = ACTIONS(2847), + [anon_sym_alignof] = ACTIONS(2847), + [anon_sym__Alignof] = ACTIONS(2847), + [anon_sym_offsetof] = ACTIONS(2847), + [anon_sym__Generic] = ACTIONS(2847), + [anon_sym_asm] = ACTIONS(2847), + [anon_sym___asm__] = ACTIONS(2847), + [anon_sym___asm] = ACTIONS(2847), + [sym_number_literal] = ACTIONS(2849), + [anon_sym_L_SQUOTE] = ACTIONS(2849), + [anon_sym_u_SQUOTE] = ACTIONS(2849), + [anon_sym_U_SQUOTE] = ACTIONS(2849), + [anon_sym_u8_SQUOTE] = ACTIONS(2849), + [anon_sym_SQUOTE] = ACTIONS(2849), + [anon_sym_L_DQUOTE] = ACTIONS(2849), + [anon_sym_u_DQUOTE] = ACTIONS(2849), + [anon_sym_U_DQUOTE] = ACTIONS(2849), + [anon_sym_u8_DQUOTE] = ACTIONS(2849), + [anon_sym_DQUOTE] = ACTIONS(2849), + [sym_true] = ACTIONS(2847), + [sym_false] = ACTIONS(2847), + [anon_sym_NULL] = ACTIONS(2847), + [anon_sym_nullptr] = ACTIONS(2847), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3083), - [anon_sym_decltype] = ACTIONS(3083), - [anon_sym_explicit] = ACTIONS(3083), - [anon_sym_typename] = ACTIONS(3083), - [anon_sym_template] = ACTIONS(3083), - [anon_sym_operator] = ACTIONS(3083), - [anon_sym_try] = ACTIONS(3083), - [anon_sym_delete] = ACTIONS(3083), - [anon_sym_throw] = ACTIONS(3083), - [anon_sym_namespace] = ACTIONS(3083), - [anon_sym_static_assert] = ACTIONS(3083), - [anon_sym_concept] = ACTIONS(3083), - [anon_sym_co_return] = ACTIONS(3083), - [anon_sym_co_yield] = ACTIONS(3083), - [anon_sym_R_DQUOTE] = ACTIONS(3085), - [anon_sym_LR_DQUOTE] = ACTIONS(3085), - [anon_sym_uR_DQUOTE] = ACTIONS(3085), - [anon_sym_UR_DQUOTE] = ACTIONS(3085), - [anon_sym_u8R_DQUOTE] = ACTIONS(3085), - [anon_sym_co_await] = ACTIONS(3083), - [anon_sym_new] = ACTIONS(3083), - [anon_sym_requires] = ACTIONS(3083), - [sym_this] = ACTIONS(3083), - }, - [760] = { - [sym_identifier] = ACTIONS(3309), - [aux_sym_preproc_include_token1] = ACTIONS(3309), - [aux_sym_preproc_def_token1] = ACTIONS(3309), - [aux_sym_preproc_if_token1] = ACTIONS(3309), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3309), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3309), - [sym_preproc_directive] = ACTIONS(3309), - [anon_sym_LPAREN2] = ACTIONS(3311), - [anon_sym_BANG] = ACTIONS(3311), - [anon_sym_TILDE] = ACTIONS(3311), - [anon_sym_DASH] = ACTIONS(3309), - [anon_sym_PLUS] = ACTIONS(3309), - [anon_sym_STAR] = ACTIONS(3311), - [anon_sym_AMP_AMP] = ACTIONS(3311), - [anon_sym_AMP] = ACTIONS(3309), - [anon_sym_SEMI] = ACTIONS(3311), - [anon_sym___extension__] = ACTIONS(3309), - [anon_sym_typedef] = ACTIONS(3309), - [anon_sym_virtual] = ACTIONS(3309), - [anon_sym_extern] = ACTIONS(3309), - [anon_sym___attribute__] = ACTIONS(3309), - [anon_sym___attribute] = ACTIONS(3309), - [anon_sym_using] = ACTIONS(3309), - [anon_sym_COLON_COLON] = ACTIONS(3311), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3311), - [anon_sym___declspec] = ACTIONS(3309), - [anon_sym___based] = ACTIONS(3309), - [anon_sym___cdecl] = ACTIONS(3309), - [anon_sym___clrcall] = ACTIONS(3309), - [anon_sym___stdcall] = ACTIONS(3309), - [anon_sym___fastcall] = ACTIONS(3309), - [anon_sym___thiscall] = ACTIONS(3309), - [anon_sym___vectorcall] = ACTIONS(3309), - [anon_sym_LBRACE] = ACTIONS(3311), - [anon_sym_RBRACE] = ACTIONS(3311), - [anon_sym_signed] = ACTIONS(3309), - [anon_sym_unsigned] = ACTIONS(3309), - [anon_sym_long] = ACTIONS(3309), - [anon_sym_short] = ACTIONS(3309), - [anon_sym_LBRACK] = ACTIONS(3309), - [anon_sym_static] = ACTIONS(3309), - [anon_sym_register] = ACTIONS(3309), - [anon_sym_inline] = ACTIONS(3309), - [anon_sym___inline] = ACTIONS(3309), - [anon_sym___inline__] = ACTIONS(3309), - [anon_sym___forceinline] = ACTIONS(3309), - [anon_sym_thread_local] = ACTIONS(3309), - [anon_sym___thread] = ACTIONS(3309), - [anon_sym_const] = ACTIONS(3309), - [anon_sym_constexpr] = ACTIONS(3309), - [anon_sym_volatile] = ACTIONS(3309), - [anon_sym_restrict] = ACTIONS(3309), - [anon_sym___restrict__] = ACTIONS(3309), - [anon_sym__Atomic] = ACTIONS(3309), - [anon_sym__Noreturn] = ACTIONS(3309), - [anon_sym_noreturn] = ACTIONS(3309), - [anon_sym__Nonnull] = ACTIONS(3309), - [anon_sym_mutable] = ACTIONS(3309), - [anon_sym_constinit] = ACTIONS(3309), - [anon_sym_consteval] = ACTIONS(3309), - [anon_sym_alignas] = ACTIONS(3309), - [anon_sym__Alignas] = ACTIONS(3309), - [sym_primitive_type] = ACTIONS(3309), - [anon_sym_enum] = ACTIONS(3309), - [anon_sym_class] = ACTIONS(3309), - [anon_sym_struct] = ACTIONS(3309), - [anon_sym_union] = ACTIONS(3309), - [anon_sym_if] = ACTIONS(3309), - [anon_sym_switch] = ACTIONS(3309), - [anon_sym_case] = ACTIONS(3309), - [anon_sym_default] = ACTIONS(3309), - [anon_sym_while] = ACTIONS(3309), - [anon_sym_do] = ACTIONS(3309), - [anon_sym_for] = ACTIONS(3309), - [anon_sym_return] = ACTIONS(3309), - [anon_sym_break] = ACTIONS(3309), - [anon_sym_continue] = ACTIONS(3309), - [anon_sym_goto] = ACTIONS(3309), - [anon_sym___try] = ACTIONS(3309), - [anon_sym___leave] = ACTIONS(3309), - [anon_sym_not] = ACTIONS(3309), - [anon_sym_compl] = ACTIONS(3309), - [anon_sym_DASH_DASH] = ACTIONS(3311), - [anon_sym_PLUS_PLUS] = ACTIONS(3311), - [anon_sym_sizeof] = ACTIONS(3309), - [anon_sym___alignof__] = ACTIONS(3309), - [anon_sym___alignof] = ACTIONS(3309), - [anon_sym__alignof] = ACTIONS(3309), - [anon_sym_alignof] = ACTIONS(3309), - [anon_sym__Alignof] = ACTIONS(3309), - [anon_sym_offsetof] = ACTIONS(3309), - [anon_sym__Generic] = ACTIONS(3309), - [anon_sym_asm] = ACTIONS(3309), - [anon_sym___asm__] = ACTIONS(3309), - [anon_sym___asm] = ACTIONS(3309), - [sym_number_literal] = ACTIONS(3311), - [anon_sym_L_SQUOTE] = ACTIONS(3311), - [anon_sym_u_SQUOTE] = ACTIONS(3311), - [anon_sym_U_SQUOTE] = ACTIONS(3311), - [anon_sym_u8_SQUOTE] = ACTIONS(3311), - [anon_sym_SQUOTE] = ACTIONS(3311), - [anon_sym_L_DQUOTE] = ACTIONS(3311), - [anon_sym_u_DQUOTE] = ACTIONS(3311), - [anon_sym_U_DQUOTE] = ACTIONS(3311), - [anon_sym_u8_DQUOTE] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(3311), - [sym_true] = ACTIONS(3309), - [sym_false] = ACTIONS(3309), - [anon_sym_NULL] = ACTIONS(3309), - [anon_sym_nullptr] = ACTIONS(3309), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3309), - [anon_sym_decltype] = ACTIONS(3309), - [anon_sym_explicit] = ACTIONS(3309), - [anon_sym_typename] = ACTIONS(3309), - [anon_sym_template] = ACTIONS(3309), - [anon_sym_operator] = ACTIONS(3309), - [anon_sym_try] = ACTIONS(3309), - [anon_sym_delete] = ACTIONS(3309), - [anon_sym_throw] = ACTIONS(3309), - [anon_sym_namespace] = ACTIONS(3309), - [anon_sym_static_assert] = ACTIONS(3309), - [anon_sym_concept] = ACTIONS(3309), - [anon_sym_co_return] = ACTIONS(3309), - [anon_sym_co_yield] = ACTIONS(3309), - [anon_sym_R_DQUOTE] = ACTIONS(3311), - [anon_sym_LR_DQUOTE] = ACTIONS(3311), - [anon_sym_uR_DQUOTE] = ACTIONS(3311), - [anon_sym_UR_DQUOTE] = ACTIONS(3311), - [anon_sym_u8R_DQUOTE] = ACTIONS(3311), - [anon_sym_co_await] = ACTIONS(3309), - [anon_sym_new] = ACTIONS(3309), - [anon_sym_requires] = ACTIONS(3309), - [sym_this] = ACTIONS(3309), - }, - [761] = { - [sym_identifier] = ACTIONS(3313), - [aux_sym_preproc_include_token1] = ACTIONS(3313), - [aux_sym_preproc_def_token1] = ACTIONS(3313), - [aux_sym_preproc_if_token1] = ACTIONS(3313), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3313), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3313), - [sym_preproc_directive] = ACTIONS(3313), - [anon_sym_LPAREN2] = ACTIONS(3316), - [anon_sym_BANG] = ACTIONS(3316), - [anon_sym_TILDE] = ACTIONS(3316), - [anon_sym_DASH] = ACTIONS(3313), - [anon_sym_PLUS] = ACTIONS(3313), - [anon_sym_STAR] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_AMP] = ACTIONS(3313), - [anon_sym_SEMI] = ACTIONS(3316), - [anon_sym___extension__] = ACTIONS(3313), - [anon_sym_typedef] = ACTIONS(3313), - [anon_sym_virtual] = ACTIONS(3313), - [anon_sym_extern] = ACTIONS(3313), - [anon_sym___attribute__] = ACTIONS(3313), - [anon_sym___attribute] = ACTIONS(3313), - [anon_sym_using] = ACTIONS(3313), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3316), - [anon_sym___declspec] = ACTIONS(3313), - [anon_sym___based] = ACTIONS(3313), - [anon_sym___cdecl] = ACTIONS(3313), - [anon_sym___clrcall] = ACTIONS(3313), - [anon_sym___stdcall] = ACTIONS(3313), - [anon_sym___fastcall] = ACTIONS(3313), - [anon_sym___thiscall] = ACTIONS(3313), - [anon_sym___vectorcall] = ACTIONS(3313), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_signed] = ACTIONS(3313), - [anon_sym_unsigned] = ACTIONS(3313), - [anon_sym_long] = ACTIONS(3313), - [anon_sym_short] = ACTIONS(3313), - [anon_sym_LBRACK] = ACTIONS(3313), - [anon_sym_static] = ACTIONS(3313), - [anon_sym_register] = ACTIONS(3313), - [anon_sym_inline] = ACTIONS(3313), - [anon_sym___inline] = ACTIONS(3313), - [anon_sym___inline__] = ACTIONS(3313), - [anon_sym___forceinline] = ACTIONS(3313), - [anon_sym_thread_local] = ACTIONS(3313), - [anon_sym___thread] = ACTIONS(3313), - [anon_sym_const] = ACTIONS(3313), - [anon_sym_constexpr] = ACTIONS(3313), - [anon_sym_volatile] = ACTIONS(3313), - [anon_sym_restrict] = ACTIONS(3313), - [anon_sym___restrict__] = ACTIONS(3313), - [anon_sym__Atomic] = ACTIONS(3313), - [anon_sym__Noreturn] = ACTIONS(3313), - [anon_sym_noreturn] = ACTIONS(3313), - [anon_sym__Nonnull] = ACTIONS(3313), - [anon_sym_mutable] = ACTIONS(3313), - [anon_sym_constinit] = ACTIONS(3313), - [anon_sym_consteval] = ACTIONS(3313), - [anon_sym_alignas] = ACTIONS(3313), - [anon_sym__Alignas] = ACTIONS(3313), - [sym_primitive_type] = ACTIONS(3313), - [anon_sym_enum] = ACTIONS(3313), - [anon_sym_class] = ACTIONS(3313), - [anon_sym_struct] = ACTIONS(3313), - [anon_sym_union] = ACTIONS(3313), - [anon_sym_if] = ACTIONS(3313), - [anon_sym_switch] = ACTIONS(3313), - [anon_sym_case] = ACTIONS(3313), - [anon_sym_default] = ACTIONS(3313), - [anon_sym_while] = ACTIONS(3313), - [anon_sym_do] = ACTIONS(3313), - [anon_sym_for] = ACTIONS(3313), - [anon_sym_return] = ACTIONS(3313), - [anon_sym_break] = ACTIONS(3313), - [anon_sym_continue] = ACTIONS(3313), - [anon_sym_goto] = ACTIONS(3313), - [anon_sym___try] = ACTIONS(3313), - [anon_sym___leave] = ACTIONS(3313), - [anon_sym_not] = ACTIONS(3313), - [anon_sym_compl] = ACTIONS(3313), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_sizeof] = ACTIONS(3313), - [anon_sym___alignof__] = ACTIONS(3313), - [anon_sym___alignof] = ACTIONS(3313), - [anon_sym__alignof] = ACTIONS(3313), - [anon_sym_alignof] = ACTIONS(3313), - [anon_sym__Alignof] = ACTIONS(3313), - [anon_sym_offsetof] = ACTIONS(3313), - [anon_sym__Generic] = ACTIONS(3313), - [anon_sym_asm] = ACTIONS(3313), - [anon_sym___asm__] = ACTIONS(3313), - [anon_sym___asm] = ACTIONS(3313), - [sym_number_literal] = ACTIONS(3316), - [anon_sym_L_SQUOTE] = ACTIONS(3316), - [anon_sym_u_SQUOTE] = ACTIONS(3316), - [anon_sym_U_SQUOTE] = ACTIONS(3316), - [anon_sym_u8_SQUOTE] = ACTIONS(3316), - [anon_sym_SQUOTE] = ACTIONS(3316), - [anon_sym_L_DQUOTE] = ACTIONS(3316), - [anon_sym_u_DQUOTE] = ACTIONS(3316), - [anon_sym_U_DQUOTE] = ACTIONS(3316), - [anon_sym_u8_DQUOTE] = ACTIONS(3316), - [anon_sym_DQUOTE] = ACTIONS(3316), - [sym_true] = ACTIONS(3313), - [sym_false] = ACTIONS(3313), - [anon_sym_NULL] = ACTIONS(3313), - [anon_sym_nullptr] = ACTIONS(3313), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3313), - [anon_sym_decltype] = ACTIONS(3313), - [anon_sym_explicit] = ACTIONS(3313), - [anon_sym_typename] = ACTIONS(3313), - [anon_sym_template] = ACTIONS(3313), - [anon_sym_operator] = ACTIONS(3313), - [anon_sym_try] = ACTIONS(3313), - [anon_sym_delete] = ACTIONS(3313), - [anon_sym_throw] = ACTIONS(3313), - [anon_sym_namespace] = ACTIONS(3313), - [anon_sym_static_assert] = ACTIONS(3313), - [anon_sym_concept] = ACTIONS(3313), - [anon_sym_co_return] = ACTIONS(3313), - [anon_sym_co_yield] = ACTIONS(3313), - [anon_sym_R_DQUOTE] = ACTIONS(3316), - [anon_sym_LR_DQUOTE] = ACTIONS(3316), - [anon_sym_uR_DQUOTE] = ACTIONS(3316), - [anon_sym_UR_DQUOTE] = ACTIONS(3316), - [anon_sym_u8R_DQUOTE] = ACTIONS(3316), - [anon_sym_co_await] = ACTIONS(3313), - [anon_sym_new] = ACTIONS(3313), - [anon_sym_requires] = ACTIONS(3313), - [sym_this] = ACTIONS(3313), - }, - [762] = { - [sym_identifier] = ACTIONS(3089), - [aux_sym_preproc_include_token1] = ACTIONS(3089), - [aux_sym_preproc_def_token1] = ACTIONS(3089), - [aux_sym_preproc_if_token1] = ACTIONS(3089), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3089), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3089), - [sym_preproc_directive] = ACTIONS(3089), - [anon_sym_LPAREN2] = ACTIONS(3091), - [anon_sym_BANG] = ACTIONS(3091), - [anon_sym_TILDE] = ACTIONS(3091), - [anon_sym_DASH] = ACTIONS(3089), - [anon_sym_PLUS] = ACTIONS(3089), - [anon_sym_STAR] = ACTIONS(3091), - [anon_sym_AMP_AMP] = ACTIONS(3091), - [anon_sym_AMP] = ACTIONS(3089), - [anon_sym_SEMI] = ACTIONS(3091), - [anon_sym___extension__] = ACTIONS(3089), - [anon_sym_typedef] = ACTIONS(3089), - [anon_sym_virtual] = ACTIONS(3089), - [anon_sym_extern] = ACTIONS(3089), - [anon_sym___attribute__] = ACTIONS(3089), - [anon_sym___attribute] = ACTIONS(3089), - [anon_sym_using] = ACTIONS(3089), - [anon_sym_COLON_COLON] = ACTIONS(3091), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3091), - [anon_sym___declspec] = ACTIONS(3089), - [anon_sym___based] = ACTIONS(3089), - [anon_sym___cdecl] = ACTIONS(3089), - [anon_sym___clrcall] = ACTIONS(3089), - [anon_sym___stdcall] = ACTIONS(3089), - [anon_sym___fastcall] = ACTIONS(3089), - [anon_sym___thiscall] = ACTIONS(3089), - [anon_sym___vectorcall] = ACTIONS(3089), - [anon_sym_LBRACE] = ACTIONS(3091), - [anon_sym_RBRACE] = ACTIONS(3091), - [anon_sym_signed] = ACTIONS(3089), - [anon_sym_unsigned] = ACTIONS(3089), - [anon_sym_long] = ACTIONS(3089), - [anon_sym_short] = ACTIONS(3089), - [anon_sym_LBRACK] = ACTIONS(3089), - [anon_sym_static] = ACTIONS(3089), - [anon_sym_register] = ACTIONS(3089), - [anon_sym_inline] = ACTIONS(3089), - [anon_sym___inline] = ACTIONS(3089), - [anon_sym___inline__] = ACTIONS(3089), - [anon_sym___forceinline] = ACTIONS(3089), - [anon_sym_thread_local] = ACTIONS(3089), - [anon_sym___thread] = ACTIONS(3089), - [anon_sym_const] = ACTIONS(3089), - [anon_sym_constexpr] = ACTIONS(3089), - [anon_sym_volatile] = ACTIONS(3089), - [anon_sym_restrict] = ACTIONS(3089), - [anon_sym___restrict__] = ACTIONS(3089), - [anon_sym__Atomic] = ACTIONS(3089), - [anon_sym__Noreturn] = ACTIONS(3089), - [anon_sym_noreturn] = ACTIONS(3089), - [anon_sym__Nonnull] = ACTIONS(3089), - [anon_sym_mutable] = ACTIONS(3089), - [anon_sym_constinit] = ACTIONS(3089), - [anon_sym_consteval] = ACTIONS(3089), - [anon_sym_alignas] = ACTIONS(3089), - [anon_sym__Alignas] = ACTIONS(3089), - [sym_primitive_type] = ACTIONS(3089), - [anon_sym_enum] = ACTIONS(3089), - [anon_sym_class] = ACTIONS(3089), - [anon_sym_struct] = ACTIONS(3089), - [anon_sym_union] = ACTIONS(3089), - [anon_sym_if] = ACTIONS(3089), - [anon_sym_switch] = ACTIONS(3089), - [anon_sym_case] = ACTIONS(3089), - [anon_sym_default] = ACTIONS(3089), - [anon_sym_while] = ACTIONS(3089), - [anon_sym_do] = ACTIONS(3089), - [anon_sym_for] = ACTIONS(3089), - [anon_sym_return] = ACTIONS(3089), - [anon_sym_break] = ACTIONS(3089), - [anon_sym_continue] = ACTIONS(3089), - [anon_sym_goto] = ACTIONS(3089), - [anon_sym___try] = ACTIONS(3089), - [anon_sym___leave] = ACTIONS(3089), - [anon_sym_not] = ACTIONS(3089), - [anon_sym_compl] = ACTIONS(3089), - [anon_sym_DASH_DASH] = ACTIONS(3091), - [anon_sym_PLUS_PLUS] = ACTIONS(3091), - [anon_sym_sizeof] = ACTIONS(3089), - [anon_sym___alignof__] = ACTIONS(3089), - [anon_sym___alignof] = ACTIONS(3089), - [anon_sym__alignof] = ACTIONS(3089), - [anon_sym_alignof] = ACTIONS(3089), - [anon_sym__Alignof] = ACTIONS(3089), - [anon_sym_offsetof] = ACTIONS(3089), - [anon_sym__Generic] = ACTIONS(3089), - [anon_sym_asm] = ACTIONS(3089), - [anon_sym___asm__] = ACTIONS(3089), - [anon_sym___asm] = ACTIONS(3089), - [sym_number_literal] = ACTIONS(3091), - [anon_sym_L_SQUOTE] = ACTIONS(3091), - [anon_sym_u_SQUOTE] = ACTIONS(3091), - [anon_sym_U_SQUOTE] = ACTIONS(3091), - [anon_sym_u8_SQUOTE] = ACTIONS(3091), - [anon_sym_SQUOTE] = ACTIONS(3091), - [anon_sym_L_DQUOTE] = ACTIONS(3091), - [anon_sym_u_DQUOTE] = ACTIONS(3091), - [anon_sym_U_DQUOTE] = ACTIONS(3091), - [anon_sym_u8_DQUOTE] = ACTIONS(3091), - [anon_sym_DQUOTE] = ACTIONS(3091), - [sym_true] = ACTIONS(3089), - [sym_false] = ACTIONS(3089), - [anon_sym_NULL] = ACTIONS(3089), - [anon_sym_nullptr] = ACTIONS(3089), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3089), - [anon_sym_decltype] = ACTIONS(3089), - [anon_sym_explicit] = ACTIONS(3089), - [anon_sym_typename] = ACTIONS(3089), - [anon_sym_template] = ACTIONS(3089), - [anon_sym_operator] = ACTIONS(3089), - [anon_sym_try] = ACTIONS(3089), - [anon_sym_delete] = ACTIONS(3089), - [anon_sym_throw] = ACTIONS(3089), - [anon_sym_namespace] = ACTIONS(3089), - [anon_sym_static_assert] = ACTIONS(3089), - [anon_sym_concept] = ACTIONS(3089), - [anon_sym_co_return] = ACTIONS(3089), - [anon_sym_co_yield] = ACTIONS(3089), - [anon_sym_R_DQUOTE] = ACTIONS(3091), - [anon_sym_LR_DQUOTE] = ACTIONS(3091), - [anon_sym_uR_DQUOTE] = ACTIONS(3091), - [anon_sym_UR_DQUOTE] = ACTIONS(3091), - [anon_sym_u8R_DQUOTE] = ACTIONS(3091), - [anon_sym_co_await] = ACTIONS(3089), - [anon_sym_new] = ACTIONS(3089), - [anon_sym_requires] = ACTIONS(3089), - [sym_this] = ACTIONS(3089), - }, - [763] = { - [sym_identifier] = ACTIONS(3093), - [aux_sym_preproc_include_token1] = ACTIONS(3093), - [aux_sym_preproc_def_token1] = ACTIONS(3093), - [aux_sym_preproc_if_token1] = ACTIONS(3093), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3093), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3093), - [sym_preproc_directive] = ACTIONS(3093), - [anon_sym_LPAREN2] = ACTIONS(3095), - [anon_sym_BANG] = ACTIONS(3095), - [anon_sym_TILDE] = ACTIONS(3095), - [anon_sym_DASH] = ACTIONS(3093), - [anon_sym_PLUS] = ACTIONS(3093), - [anon_sym_STAR] = ACTIONS(3095), - [anon_sym_AMP_AMP] = ACTIONS(3095), - [anon_sym_AMP] = ACTIONS(3093), - [anon_sym_SEMI] = ACTIONS(3095), - [anon_sym___extension__] = ACTIONS(3093), - [anon_sym_typedef] = ACTIONS(3093), - [anon_sym_virtual] = ACTIONS(3093), - [anon_sym_extern] = ACTIONS(3093), - [anon_sym___attribute__] = ACTIONS(3093), - [anon_sym___attribute] = ACTIONS(3093), - [anon_sym_using] = ACTIONS(3093), - [anon_sym_COLON_COLON] = ACTIONS(3095), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3095), - [anon_sym___declspec] = ACTIONS(3093), - [anon_sym___based] = ACTIONS(3093), - [anon_sym___cdecl] = ACTIONS(3093), - [anon_sym___clrcall] = ACTIONS(3093), - [anon_sym___stdcall] = ACTIONS(3093), - [anon_sym___fastcall] = ACTIONS(3093), - [anon_sym___thiscall] = ACTIONS(3093), - [anon_sym___vectorcall] = ACTIONS(3093), - [anon_sym_LBRACE] = ACTIONS(3095), - [anon_sym_RBRACE] = ACTIONS(3095), - [anon_sym_signed] = ACTIONS(3093), - [anon_sym_unsigned] = ACTIONS(3093), - [anon_sym_long] = ACTIONS(3093), - [anon_sym_short] = ACTIONS(3093), - [anon_sym_LBRACK] = ACTIONS(3093), - [anon_sym_static] = ACTIONS(3093), - [anon_sym_register] = ACTIONS(3093), - [anon_sym_inline] = ACTIONS(3093), - [anon_sym___inline] = ACTIONS(3093), - [anon_sym___inline__] = ACTIONS(3093), - [anon_sym___forceinline] = ACTIONS(3093), - [anon_sym_thread_local] = ACTIONS(3093), - [anon_sym___thread] = ACTIONS(3093), - [anon_sym_const] = ACTIONS(3093), - [anon_sym_constexpr] = ACTIONS(3093), - [anon_sym_volatile] = ACTIONS(3093), - [anon_sym_restrict] = ACTIONS(3093), - [anon_sym___restrict__] = ACTIONS(3093), - [anon_sym__Atomic] = ACTIONS(3093), - [anon_sym__Noreturn] = ACTIONS(3093), - [anon_sym_noreturn] = ACTIONS(3093), - [anon_sym__Nonnull] = ACTIONS(3093), - [anon_sym_mutable] = ACTIONS(3093), - [anon_sym_constinit] = ACTIONS(3093), - [anon_sym_consteval] = ACTIONS(3093), - [anon_sym_alignas] = ACTIONS(3093), - [anon_sym__Alignas] = ACTIONS(3093), - [sym_primitive_type] = ACTIONS(3093), - [anon_sym_enum] = ACTIONS(3093), - [anon_sym_class] = ACTIONS(3093), - [anon_sym_struct] = ACTIONS(3093), - [anon_sym_union] = ACTIONS(3093), - [anon_sym_if] = ACTIONS(3093), - [anon_sym_switch] = ACTIONS(3093), - [anon_sym_case] = ACTIONS(3093), - [anon_sym_default] = ACTIONS(3093), - [anon_sym_while] = ACTIONS(3093), - [anon_sym_do] = ACTIONS(3093), - [anon_sym_for] = ACTIONS(3093), - [anon_sym_return] = ACTIONS(3093), - [anon_sym_break] = ACTIONS(3093), - [anon_sym_continue] = ACTIONS(3093), - [anon_sym_goto] = ACTIONS(3093), - [anon_sym___try] = ACTIONS(3093), - [anon_sym___leave] = ACTIONS(3093), - [anon_sym_not] = ACTIONS(3093), - [anon_sym_compl] = ACTIONS(3093), - [anon_sym_DASH_DASH] = ACTIONS(3095), - [anon_sym_PLUS_PLUS] = ACTIONS(3095), - [anon_sym_sizeof] = ACTIONS(3093), - [anon_sym___alignof__] = ACTIONS(3093), - [anon_sym___alignof] = ACTIONS(3093), - [anon_sym__alignof] = ACTIONS(3093), - [anon_sym_alignof] = ACTIONS(3093), - [anon_sym__Alignof] = ACTIONS(3093), - [anon_sym_offsetof] = ACTIONS(3093), - [anon_sym__Generic] = ACTIONS(3093), - [anon_sym_asm] = ACTIONS(3093), - [anon_sym___asm__] = ACTIONS(3093), - [anon_sym___asm] = ACTIONS(3093), - [sym_number_literal] = ACTIONS(3095), - [anon_sym_L_SQUOTE] = ACTIONS(3095), - [anon_sym_u_SQUOTE] = ACTIONS(3095), - [anon_sym_U_SQUOTE] = ACTIONS(3095), - [anon_sym_u8_SQUOTE] = ACTIONS(3095), - [anon_sym_SQUOTE] = ACTIONS(3095), - [anon_sym_L_DQUOTE] = ACTIONS(3095), - [anon_sym_u_DQUOTE] = ACTIONS(3095), - [anon_sym_U_DQUOTE] = ACTIONS(3095), - [anon_sym_u8_DQUOTE] = ACTIONS(3095), - [anon_sym_DQUOTE] = ACTIONS(3095), - [sym_true] = ACTIONS(3093), - [sym_false] = ACTIONS(3093), - [anon_sym_NULL] = ACTIONS(3093), - [anon_sym_nullptr] = ACTIONS(3093), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3093), - [anon_sym_decltype] = ACTIONS(3093), - [anon_sym_explicit] = ACTIONS(3093), - [anon_sym_typename] = ACTIONS(3093), - [anon_sym_template] = ACTIONS(3093), - [anon_sym_operator] = ACTIONS(3093), - [anon_sym_try] = ACTIONS(3093), - [anon_sym_delete] = ACTIONS(3093), - [anon_sym_throw] = ACTIONS(3093), - [anon_sym_namespace] = ACTIONS(3093), - [anon_sym_static_assert] = ACTIONS(3093), - [anon_sym_concept] = ACTIONS(3093), - [anon_sym_co_return] = ACTIONS(3093), - [anon_sym_co_yield] = ACTIONS(3093), - [anon_sym_R_DQUOTE] = ACTIONS(3095), - [anon_sym_LR_DQUOTE] = ACTIONS(3095), - [anon_sym_uR_DQUOTE] = ACTIONS(3095), - [anon_sym_UR_DQUOTE] = ACTIONS(3095), - [anon_sym_u8R_DQUOTE] = ACTIONS(3095), - [anon_sym_co_await] = ACTIONS(3093), - [anon_sym_new] = ACTIONS(3093), - [anon_sym_requires] = ACTIONS(3093), - [sym_this] = ACTIONS(3093), - }, - [764] = { - [sym_identifier] = ACTIONS(3100), - [aux_sym_preproc_include_token1] = ACTIONS(3100), - [aux_sym_preproc_def_token1] = ACTIONS(3100), - [aux_sym_preproc_if_token1] = ACTIONS(3100), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3100), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3100), - [sym_preproc_directive] = ACTIONS(3100), - [anon_sym_LPAREN2] = ACTIONS(3102), - [anon_sym_BANG] = ACTIONS(3102), - [anon_sym_TILDE] = ACTIONS(3102), - [anon_sym_DASH] = ACTIONS(3100), - [anon_sym_PLUS] = ACTIONS(3100), - [anon_sym_STAR] = ACTIONS(3102), - [anon_sym_AMP_AMP] = ACTIONS(3102), - [anon_sym_AMP] = ACTIONS(3100), - [anon_sym_SEMI] = ACTIONS(3102), - [anon_sym___extension__] = ACTIONS(3100), - [anon_sym_typedef] = ACTIONS(3100), - [anon_sym_virtual] = ACTIONS(3100), - [anon_sym_extern] = ACTIONS(3100), - [anon_sym___attribute__] = ACTIONS(3100), - [anon_sym___attribute] = ACTIONS(3100), - [anon_sym_using] = ACTIONS(3100), - [anon_sym_COLON_COLON] = ACTIONS(3102), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3102), - [anon_sym___declspec] = ACTIONS(3100), - [anon_sym___based] = ACTIONS(3100), - [anon_sym___cdecl] = ACTIONS(3100), - [anon_sym___clrcall] = ACTIONS(3100), - [anon_sym___stdcall] = ACTIONS(3100), - [anon_sym___fastcall] = ACTIONS(3100), - [anon_sym___thiscall] = ACTIONS(3100), - [anon_sym___vectorcall] = ACTIONS(3100), - [anon_sym_LBRACE] = ACTIONS(3102), - [anon_sym_RBRACE] = ACTIONS(3102), - [anon_sym_signed] = ACTIONS(3100), - [anon_sym_unsigned] = ACTIONS(3100), - [anon_sym_long] = ACTIONS(3100), - [anon_sym_short] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(3100), - [anon_sym_static] = ACTIONS(3100), - [anon_sym_register] = ACTIONS(3100), - [anon_sym_inline] = ACTIONS(3100), - [anon_sym___inline] = ACTIONS(3100), - [anon_sym___inline__] = ACTIONS(3100), - [anon_sym___forceinline] = ACTIONS(3100), - [anon_sym_thread_local] = ACTIONS(3100), - [anon_sym___thread] = ACTIONS(3100), - [anon_sym_const] = ACTIONS(3100), - [anon_sym_constexpr] = ACTIONS(3100), - [anon_sym_volatile] = ACTIONS(3100), - [anon_sym_restrict] = ACTIONS(3100), - [anon_sym___restrict__] = ACTIONS(3100), - [anon_sym__Atomic] = ACTIONS(3100), - [anon_sym__Noreturn] = ACTIONS(3100), - [anon_sym_noreturn] = ACTIONS(3100), - [anon_sym__Nonnull] = ACTIONS(3100), - [anon_sym_mutable] = ACTIONS(3100), - [anon_sym_constinit] = ACTIONS(3100), - [anon_sym_consteval] = ACTIONS(3100), - [anon_sym_alignas] = ACTIONS(3100), - [anon_sym__Alignas] = ACTIONS(3100), - [sym_primitive_type] = ACTIONS(3100), - [anon_sym_enum] = ACTIONS(3100), - [anon_sym_class] = ACTIONS(3100), - [anon_sym_struct] = ACTIONS(3100), - [anon_sym_union] = ACTIONS(3100), - [anon_sym_if] = ACTIONS(3100), - [anon_sym_switch] = ACTIONS(3100), - [anon_sym_case] = ACTIONS(3100), - [anon_sym_default] = ACTIONS(3100), - [anon_sym_while] = ACTIONS(3100), - [anon_sym_do] = ACTIONS(3100), - [anon_sym_for] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3100), - [anon_sym_break] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(3100), - [anon_sym_goto] = ACTIONS(3100), - [anon_sym___try] = ACTIONS(3100), - [anon_sym___leave] = ACTIONS(3100), - [anon_sym_not] = ACTIONS(3100), - [anon_sym_compl] = ACTIONS(3100), - [anon_sym_DASH_DASH] = ACTIONS(3102), - [anon_sym_PLUS_PLUS] = ACTIONS(3102), - [anon_sym_sizeof] = ACTIONS(3100), - [anon_sym___alignof__] = ACTIONS(3100), - [anon_sym___alignof] = ACTIONS(3100), - [anon_sym__alignof] = ACTIONS(3100), - [anon_sym_alignof] = ACTIONS(3100), - [anon_sym__Alignof] = ACTIONS(3100), - [anon_sym_offsetof] = ACTIONS(3100), - [anon_sym__Generic] = ACTIONS(3100), - [anon_sym_asm] = ACTIONS(3100), - [anon_sym___asm__] = ACTIONS(3100), - [anon_sym___asm] = ACTIONS(3100), - [sym_number_literal] = ACTIONS(3102), - [anon_sym_L_SQUOTE] = ACTIONS(3102), - [anon_sym_u_SQUOTE] = ACTIONS(3102), - [anon_sym_U_SQUOTE] = ACTIONS(3102), - [anon_sym_u8_SQUOTE] = ACTIONS(3102), - [anon_sym_SQUOTE] = ACTIONS(3102), - [anon_sym_L_DQUOTE] = ACTIONS(3102), - [anon_sym_u_DQUOTE] = ACTIONS(3102), - [anon_sym_U_DQUOTE] = ACTIONS(3102), - [anon_sym_u8_DQUOTE] = ACTIONS(3102), - [anon_sym_DQUOTE] = ACTIONS(3102), - [sym_true] = ACTIONS(3100), - [sym_false] = ACTIONS(3100), - [anon_sym_NULL] = ACTIONS(3100), - [anon_sym_nullptr] = ACTIONS(3100), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3100), - [anon_sym_decltype] = ACTIONS(3100), - [anon_sym_explicit] = ACTIONS(3100), - [anon_sym_typename] = ACTIONS(3100), - [anon_sym_template] = ACTIONS(3100), - [anon_sym_operator] = ACTIONS(3100), - [anon_sym_try] = ACTIONS(3100), - [anon_sym_delete] = ACTIONS(3100), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_namespace] = ACTIONS(3100), - [anon_sym_static_assert] = ACTIONS(3100), - [anon_sym_concept] = ACTIONS(3100), - [anon_sym_co_return] = ACTIONS(3100), - [anon_sym_co_yield] = ACTIONS(3100), - [anon_sym_R_DQUOTE] = ACTIONS(3102), - [anon_sym_LR_DQUOTE] = ACTIONS(3102), - [anon_sym_uR_DQUOTE] = ACTIONS(3102), - [anon_sym_UR_DQUOTE] = ACTIONS(3102), - [anon_sym_u8R_DQUOTE] = ACTIONS(3102), - [anon_sym_co_await] = ACTIONS(3100), - [anon_sym_new] = ACTIONS(3100), - [anon_sym_requires] = ACTIONS(3100), - [sym_this] = ACTIONS(3100), + [sym_auto] = ACTIONS(2847), + [anon_sym_decltype] = ACTIONS(2847), + [anon_sym_explicit] = ACTIONS(2847), + [anon_sym_typename] = ACTIONS(2847), + [anon_sym_template] = ACTIONS(2847), + [anon_sym_operator] = ACTIONS(2847), + [anon_sym_try] = ACTIONS(2847), + [anon_sym_delete] = ACTIONS(2847), + [anon_sym_throw] = ACTIONS(2847), + [anon_sym_namespace] = ACTIONS(2847), + [anon_sym_static_assert] = ACTIONS(2847), + [anon_sym_concept] = ACTIONS(2847), + [anon_sym_co_return] = ACTIONS(2847), + [anon_sym_co_yield] = ACTIONS(2847), + [anon_sym_R_DQUOTE] = ACTIONS(2849), + [anon_sym_LR_DQUOTE] = ACTIONS(2849), + [anon_sym_uR_DQUOTE] = ACTIONS(2849), + [anon_sym_UR_DQUOTE] = ACTIONS(2849), + [anon_sym_u8R_DQUOTE] = ACTIONS(2849), + [anon_sym_co_await] = ACTIONS(2847), + [anon_sym_new] = ACTIONS(2847), + [anon_sym_requires] = ACTIONS(2847), + [sym_this] = ACTIONS(2847), }, - [765] = { - [sym_identifier] = ACTIONS(2775), - [aux_sym_preproc_include_token1] = ACTIONS(2775), - [aux_sym_preproc_def_token1] = ACTIONS(2775), - [aux_sym_preproc_if_token1] = ACTIONS(2775), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2775), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2775), - [sym_preproc_directive] = ACTIONS(2775), - [anon_sym_LPAREN2] = ACTIONS(2777), - [anon_sym_BANG] = ACTIONS(2777), - [anon_sym_TILDE] = ACTIONS(2777), - [anon_sym_DASH] = ACTIONS(2775), - [anon_sym_PLUS] = ACTIONS(2775), - [anon_sym_STAR] = ACTIONS(2777), - [anon_sym_AMP_AMP] = ACTIONS(2777), - [anon_sym_AMP] = ACTIONS(2775), - [anon_sym_SEMI] = ACTIONS(2777), - [anon_sym___extension__] = ACTIONS(2775), - [anon_sym_typedef] = ACTIONS(2775), - [anon_sym_virtual] = ACTIONS(2775), - [anon_sym_extern] = ACTIONS(2775), - [anon_sym___attribute__] = ACTIONS(2775), - [anon_sym___attribute] = ACTIONS(2775), - [anon_sym_using] = ACTIONS(2775), - [anon_sym_COLON_COLON] = ACTIONS(2777), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2777), - [anon_sym___declspec] = ACTIONS(2775), - [anon_sym___based] = ACTIONS(2775), - [anon_sym___cdecl] = ACTIONS(2775), - [anon_sym___clrcall] = ACTIONS(2775), - [anon_sym___stdcall] = ACTIONS(2775), - [anon_sym___fastcall] = ACTIONS(2775), - [anon_sym___thiscall] = ACTIONS(2775), - [anon_sym___vectorcall] = ACTIONS(2775), - [anon_sym_LBRACE] = ACTIONS(2777), - [anon_sym_RBRACE] = ACTIONS(2777), - [anon_sym_signed] = ACTIONS(2775), - [anon_sym_unsigned] = ACTIONS(2775), - [anon_sym_long] = ACTIONS(2775), - [anon_sym_short] = ACTIONS(2775), - [anon_sym_LBRACK] = ACTIONS(2775), - [anon_sym_static] = ACTIONS(2775), - [anon_sym_register] = ACTIONS(2775), - [anon_sym_inline] = ACTIONS(2775), - [anon_sym___inline] = ACTIONS(2775), - [anon_sym___inline__] = ACTIONS(2775), - [anon_sym___forceinline] = ACTIONS(2775), - [anon_sym_thread_local] = ACTIONS(2775), - [anon_sym___thread] = ACTIONS(2775), - [anon_sym_const] = ACTIONS(2775), - [anon_sym_constexpr] = ACTIONS(2775), - [anon_sym_volatile] = ACTIONS(2775), - [anon_sym_restrict] = ACTIONS(2775), - [anon_sym___restrict__] = ACTIONS(2775), - [anon_sym__Atomic] = ACTIONS(2775), - [anon_sym__Noreturn] = ACTIONS(2775), - [anon_sym_noreturn] = ACTIONS(2775), - [anon_sym__Nonnull] = ACTIONS(2775), - [anon_sym_mutable] = ACTIONS(2775), - [anon_sym_constinit] = ACTIONS(2775), - [anon_sym_consteval] = ACTIONS(2775), - [anon_sym_alignas] = ACTIONS(2775), - [anon_sym__Alignas] = ACTIONS(2775), - [sym_primitive_type] = ACTIONS(2775), - [anon_sym_enum] = ACTIONS(2775), - [anon_sym_class] = ACTIONS(2775), - [anon_sym_struct] = ACTIONS(2775), - [anon_sym_union] = ACTIONS(2775), - [anon_sym_if] = ACTIONS(2775), - [anon_sym_switch] = ACTIONS(2775), - [anon_sym_case] = ACTIONS(2775), - [anon_sym_default] = ACTIONS(2775), - [anon_sym_while] = ACTIONS(2775), - [anon_sym_do] = ACTIONS(2775), - [anon_sym_for] = ACTIONS(2775), - [anon_sym_return] = ACTIONS(2775), - [anon_sym_break] = ACTIONS(2775), - [anon_sym_continue] = ACTIONS(2775), - [anon_sym_goto] = ACTIONS(2775), - [anon_sym___try] = ACTIONS(2775), - [anon_sym___leave] = ACTIONS(2775), - [anon_sym_not] = ACTIONS(2775), - [anon_sym_compl] = ACTIONS(2775), - [anon_sym_DASH_DASH] = ACTIONS(2777), - [anon_sym_PLUS_PLUS] = ACTIONS(2777), - [anon_sym_sizeof] = ACTIONS(2775), - [anon_sym___alignof__] = ACTIONS(2775), - [anon_sym___alignof] = ACTIONS(2775), - [anon_sym__alignof] = ACTIONS(2775), - [anon_sym_alignof] = ACTIONS(2775), - [anon_sym__Alignof] = ACTIONS(2775), - [anon_sym_offsetof] = ACTIONS(2775), - [anon_sym__Generic] = ACTIONS(2775), - [anon_sym_asm] = ACTIONS(2775), - [anon_sym___asm__] = ACTIONS(2775), - [anon_sym___asm] = ACTIONS(2775), - [sym_number_literal] = ACTIONS(2777), - [anon_sym_L_SQUOTE] = ACTIONS(2777), - [anon_sym_u_SQUOTE] = ACTIONS(2777), - [anon_sym_U_SQUOTE] = ACTIONS(2777), - [anon_sym_u8_SQUOTE] = ACTIONS(2777), - [anon_sym_SQUOTE] = ACTIONS(2777), - [anon_sym_L_DQUOTE] = ACTIONS(2777), - [anon_sym_u_DQUOTE] = ACTIONS(2777), - [anon_sym_U_DQUOTE] = ACTIONS(2777), - [anon_sym_u8_DQUOTE] = ACTIONS(2777), - [anon_sym_DQUOTE] = ACTIONS(2777), - [sym_true] = ACTIONS(2775), - [sym_false] = ACTIONS(2775), - [anon_sym_NULL] = ACTIONS(2775), - [anon_sym_nullptr] = ACTIONS(2775), + [794] = { + [sym_identifier] = ACTIONS(2851), + [aux_sym_preproc_include_token1] = ACTIONS(2851), + [aux_sym_preproc_def_token1] = ACTIONS(2851), + [aux_sym_preproc_if_token1] = ACTIONS(2851), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2851), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2851), + [sym_preproc_directive] = ACTIONS(2851), + [anon_sym_LPAREN2] = ACTIONS(2853), + [anon_sym_BANG] = ACTIONS(2853), + [anon_sym_TILDE] = ACTIONS(2853), + [anon_sym_DASH] = ACTIONS(2851), + [anon_sym_PLUS] = ACTIONS(2851), + [anon_sym_STAR] = ACTIONS(2853), + [anon_sym_AMP_AMP] = ACTIONS(2853), + [anon_sym_AMP] = ACTIONS(2851), + [anon_sym_SEMI] = ACTIONS(2853), + [anon_sym___extension__] = ACTIONS(2851), + [anon_sym_typedef] = ACTIONS(2851), + [anon_sym_virtual] = ACTIONS(2851), + [anon_sym_extern] = ACTIONS(2851), + [anon_sym___attribute__] = ACTIONS(2851), + [anon_sym___attribute] = ACTIONS(2851), + [anon_sym_using] = ACTIONS(2851), + [anon_sym_COLON_COLON] = ACTIONS(2853), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2853), + [anon_sym___declspec] = ACTIONS(2851), + [anon_sym___based] = ACTIONS(2851), + [anon_sym___cdecl] = ACTIONS(2851), + [anon_sym___clrcall] = ACTIONS(2851), + [anon_sym___stdcall] = ACTIONS(2851), + [anon_sym___fastcall] = ACTIONS(2851), + [anon_sym___thiscall] = ACTIONS(2851), + [anon_sym___vectorcall] = ACTIONS(2851), + [anon_sym_LBRACE] = ACTIONS(2853), + [anon_sym_RBRACE] = ACTIONS(2853), + [anon_sym_signed] = ACTIONS(2851), + [anon_sym_unsigned] = ACTIONS(2851), + [anon_sym_long] = ACTIONS(2851), + [anon_sym_short] = ACTIONS(2851), + [anon_sym_LBRACK] = ACTIONS(2851), + [anon_sym_static] = ACTIONS(2851), + [anon_sym_register] = ACTIONS(2851), + [anon_sym_inline] = ACTIONS(2851), + [anon_sym___inline] = ACTIONS(2851), + [anon_sym___inline__] = ACTIONS(2851), + [anon_sym___forceinline] = ACTIONS(2851), + [anon_sym_thread_local] = ACTIONS(2851), + [anon_sym___thread] = ACTIONS(2851), + [anon_sym_const] = ACTIONS(2851), + [anon_sym_constexpr] = ACTIONS(2851), + [anon_sym_volatile] = ACTIONS(2851), + [anon_sym_restrict] = ACTIONS(2851), + [anon_sym___restrict__] = ACTIONS(2851), + [anon_sym__Atomic] = ACTIONS(2851), + [anon_sym__Noreturn] = ACTIONS(2851), + [anon_sym_noreturn] = ACTIONS(2851), + [anon_sym__Nonnull] = ACTIONS(2851), + [anon_sym_mutable] = ACTIONS(2851), + [anon_sym_constinit] = ACTIONS(2851), + [anon_sym_consteval] = ACTIONS(2851), + [anon_sym_alignas] = ACTIONS(2851), + [anon_sym__Alignas] = ACTIONS(2851), + [sym_primitive_type] = ACTIONS(2851), + [anon_sym_enum] = ACTIONS(2851), + [anon_sym_class] = ACTIONS(2851), + [anon_sym_struct] = ACTIONS(2851), + [anon_sym_union] = ACTIONS(2851), + [anon_sym_if] = ACTIONS(2851), + [anon_sym_switch] = ACTIONS(2851), + [anon_sym_case] = ACTIONS(2851), + [anon_sym_default] = ACTIONS(2851), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_do] = ACTIONS(2851), + [anon_sym_for] = ACTIONS(2851), + [anon_sym_return] = ACTIONS(2851), + [anon_sym_break] = ACTIONS(2851), + [anon_sym_continue] = ACTIONS(2851), + [anon_sym_goto] = ACTIONS(2851), + [anon_sym___try] = ACTIONS(2851), + [anon_sym___leave] = ACTIONS(2851), + [anon_sym_not] = ACTIONS(2851), + [anon_sym_compl] = ACTIONS(2851), + [anon_sym_DASH_DASH] = ACTIONS(2853), + [anon_sym_PLUS_PLUS] = ACTIONS(2853), + [anon_sym_sizeof] = ACTIONS(2851), + [anon_sym___alignof__] = ACTIONS(2851), + [anon_sym___alignof] = ACTIONS(2851), + [anon_sym__alignof] = ACTIONS(2851), + [anon_sym_alignof] = ACTIONS(2851), + [anon_sym__Alignof] = ACTIONS(2851), + [anon_sym_offsetof] = ACTIONS(2851), + [anon_sym__Generic] = ACTIONS(2851), + [anon_sym_asm] = ACTIONS(2851), + [anon_sym___asm__] = ACTIONS(2851), + [anon_sym___asm] = ACTIONS(2851), + [sym_number_literal] = ACTIONS(2853), + [anon_sym_L_SQUOTE] = ACTIONS(2853), + [anon_sym_u_SQUOTE] = ACTIONS(2853), + [anon_sym_U_SQUOTE] = ACTIONS(2853), + [anon_sym_u8_SQUOTE] = ACTIONS(2853), + [anon_sym_SQUOTE] = ACTIONS(2853), + [anon_sym_L_DQUOTE] = ACTIONS(2853), + [anon_sym_u_DQUOTE] = ACTIONS(2853), + [anon_sym_U_DQUOTE] = ACTIONS(2853), + [anon_sym_u8_DQUOTE] = ACTIONS(2853), + [anon_sym_DQUOTE] = ACTIONS(2853), + [sym_true] = ACTIONS(2851), + [sym_false] = ACTIONS(2851), + [anon_sym_NULL] = ACTIONS(2851), + [anon_sym_nullptr] = ACTIONS(2851), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2775), - [anon_sym_decltype] = ACTIONS(2775), - [anon_sym_explicit] = ACTIONS(2775), - [anon_sym_typename] = ACTIONS(2775), - [anon_sym_template] = ACTIONS(2775), - [anon_sym_operator] = ACTIONS(2775), - [anon_sym_try] = ACTIONS(2775), - [anon_sym_delete] = ACTIONS(2775), - [anon_sym_throw] = ACTIONS(2775), - [anon_sym_namespace] = ACTIONS(2775), - [anon_sym_static_assert] = ACTIONS(2775), - [anon_sym_concept] = ACTIONS(2775), - [anon_sym_co_return] = ACTIONS(2775), - [anon_sym_co_yield] = ACTIONS(2775), - [anon_sym_R_DQUOTE] = ACTIONS(2777), - [anon_sym_LR_DQUOTE] = ACTIONS(2777), - [anon_sym_uR_DQUOTE] = ACTIONS(2777), - [anon_sym_UR_DQUOTE] = ACTIONS(2777), - [anon_sym_u8R_DQUOTE] = ACTIONS(2777), - [anon_sym_co_await] = ACTIONS(2775), - [anon_sym_new] = ACTIONS(2775), - [anon_sym_requires] = ACTIONS(2775), - [sym_this] = ACTIONS(2775), + [sym_auto] = ACTIONS(2851), + [anon_sym_decltype] = ACTIONS(2851), + [anon_sym_explicit] = ACTIONS(2851), + [anon_sym_typename] = ACTIONS(2851), + [anon_sym_template] = ACTIONS(2851), + [anon_sym_operator] = ACTIONS(2851), + [anon_sym_try] = ACTIONS(2851), + [anon_sym_delete] = ACTIONS(2851), + [anon_sym_throw] = ACTIONS(2851), + [anon_sym_namespace] = ACTIONS(2851), + [anon_sym_static_assert] = ACTIONS(2851), + [anon_sym_concept] = ACTIONS(2851), + [anon_sym_co_return] = ACTIONS(2851), + [anon_sym_co_yield] = ACTIONS(2851), + [anon_sym_R_DQUOTE] = ACTIONS(2853), + [anon_sym_LR_DQUOTE] = ACTIONS(2853), + [anon_sym_uR_DQUOTE] = ACTIONS(2853), + [anon_sym_UR_DQUOTE] = ACTIONS(2853), + [anon_sym_u8R_DQUOTE] = ACTIONS(2853), + [anon_sym_co_await] = ACTIONS(2851), + [anon_sym_new] = ACTIONS(2851), + [anon_sym_requires] = ACTIONS(2851), + [sym_this] = ACTIONS(2851), }, - [766] = { - [sym_identifier] = ACTIONS(2779), - [aux_sym_preproc_include_token1] = ACTIONS(2779), - [aux_sym_preproc_def_token1] = ACTIONS(2779), - [aux_sym_preproc_if_token1] = ACTIONS(2779), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2779), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2779), - [sym_preproc_directive] = ACTIONS(2779), - [anon_sym_LPAREN2] = ACTIONS(2781), - [anon_sym_BANG] = ACTIONS(2781), - [anon_sym_TILDE] = ACTIONS(2781), - [anon_sym_DASH] = ACTIONS(2779), - [anon_sym_PLUS] = ACTIONS(2779), - [anon_sym_STAR] = ACTIONS(2781), - [anon_sym_AMP_AMP] = ACTIONS(2781), - [anon_sym_AMP] = ACTIONS(2779), - [anon_sym_SEMI] = ACTIONS(2781), - [anon_sym___extension__] = ACTIONS(2779), - [anon_sym_typedef] = ACTIONS(2779), - [anon_sym_virtual] = ACTIONS(2779), - [anon_sym_extern] = ACTIONS(2779), - [anon_sym___attribute__] = ACTIONS(2779), - [anon_sym___attribute] = ACTIONS(2779), - [anon_sym_using] = ACTIONS(2779), - [anon_sym_COLON_COLON] = ACTIONS(2781), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2781), - [anon_sym___declspec] = ACTIONS(2779), - [anon_sym___based] = ACTIONS(2779), - [anon_sym___cdecl] = ACTIONS(2779), - [anon_sym___clrcall] = ACTIONS(2779), - [anon_sym___stdcall] = ACTIONS(2779), - [anon_sym___fastcall] = ACTIONS(2779), - [anon_sym___thiscall] = ACTIONS(2779), - [anon_sym___vectorcall] = ACTIONS(2779), - [anon_sym_LBRACE] = ACTIONS(2781), - [anon_sym_RBRACE] = ACTIONS(2781), - [anon_sym_signed] = ACTIONS(2779), - [anon_sym_unsigned] = ACTIONS(2779), - [anon_sym_long] = ACTIONS(2779), - [anon_sym_short] = ACTIONS(2779), - [anon_sym_LBRACK] = ACTIONS(2779), - [anon_sym_static] = ACTIONS(2779), - [anon_sym_register] = ACTIONS(2779), - [anon_sym_inline] = ACTIONS(2779), - [anon_sym___inline] = ACTIONS(2779), - [anon_sym___inline__] = ACTIONS(2779), - [anon_sym___forceinline] = ACTIONS(2779), - [anon_sym_thread_local] = ACTIONS(2779), - [anon_sym___thread] = ACTIONS(2779), - [anon_sym_const] = ACTIONS(2779), - [anon_sym_constexpr] = ACTIONS(2779), - [anon_sym_volatile] = ACTIONS(2779), - [anon_sym_restrict] = ACTIONS(2779), - [anon_sym___restrict__] = ACTIONS(2779), - [anon_sym__Atomic] = ACTIONS(2779), - [anon_sym__Noreturn] = ACTIONS(2779), - [anon_sym_noreturn] = ACTIONS(2779), - [anon_sym__Nonnull] = ACTIONS(2779), - [anon_sym_mutable] = ACTIONS(2779), - [anon_sym_constinit] = ACTIONS(2779), - [anon_sym_consteval] = ACTIONS(2779), - [anon_sym_alignas] = ACTIONS(2779), - [anon_sym__Alignas] = ACTIONS(2779), - [sym_primitive_type] = ACTIONS(2779), - [anon_sym_enum] = ACTIONS(2779), - [anon_sym_class] = ACTIONS(2779), - [anon_sym_struct] = ACTIONS(2779), - [anon_sym_union] = ACTIONS(2779), - [anon_sym_if] = ACTIONS(2779), - [anon_sym_switch] = ACTIONS(2779), - [anon_sym_case] = ACTIONS(2779), - [anon_sym_default] = ACTIONS(2779), - [anon_sym_while] = ACTIONS(2779), - [anon_sym_do] = ACTIONS(2779), - [anon_sym_for] = ACTIONS(2779), - [anon_sym_return] = ACTIONS(2779), - [anon_sym_break] = ACTIONS(2779), - [anon_sym_continue] = ACTIONS(2779), - [anon_sym_goto] = ACTIONS(2779), - [anon_sym___try] = ACTIONS(2779), - [anon_sym___leave] = ACTIONS(2779), - [anon_sym_not] = ACTIONS(2779), - [anon_sym_compl] = ACTIONS(2779), - [anon_sym_DASH_DASH] = ACTIONS(2781), - [anon_sym_PLUS_PLUS] = ACTIONS(2781), - [anon_sym_sizeof] = ACTIONS(2779), - [anon_sym___alignof__] = ACTIONS(2779), - [anon_sym___alignof] = ACTIONS(2779), - [anon_sym__alignof] = ACTIONS(2779), - [anon_sym_alignof] = ACTIONS(2779), - [anon_sym__Alignof] = ACTIONS(2779), - [anon_sym_offsetof] = ACTIONS(2779), - [anon_sym__Generic] = ACTIONS(2779), - [anon_sym_asm] = ACTIONS(2779), - [anon_sym___asm__] = ACTIONS(2779), - [anon_sym___asm] = ACTIONS(2779), - [sym_number_literal] = ACTIONS(2781), - [anon_sym_L_SQUOTE] = ACTIONS(2781), - [anon_sym_u_SQUOTE] = ACTIONS(2781), - [anon_sym_U_SQUOTE] = ACTIONS(2781), - [anon_sym_u8_SQUOTE] = ACTIONS(2781), - [anon_sym_SQUOTE] = ACTIONS(2781), - [anon_sym_L_DQUOTE] = ACTIONS(2781), - [anon_sym_u_DQUOTE] = ACTIONS(2781), - [anon_sym_U_DQUOTE] = ACTIONS(2781), - [anon_sym_u8_DQUOTE] = ACTIONS(2781), - [anon_sym_DQUOTE] = ACTIONS(2781), - [sym_true] = ACTIONS(2779), - [sym_false] = ACTIONS(2779), - [anon_sym_NULL] = ACTIONS(2779), - [anon_sym_nullptr] = ACTIONS(2779), + [795] = { + [sym_identifier] = ACTIONS(2855), + [aux_sym_preproc_include_token1] = ACTIONS(2855), + [aux_sym_preproc_def_token1] = ACTIONS(2855), + [aux_sym_preproc_if_token1] = ACTIONS(2855), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2855), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2855), + [sym_preproc_directive] = ACTIONS(2855), + [anon_sym_LPAREN2] = ACTIONS(2857), + [anon_sym_BANG] = ACTIONS(2857), + [anon_sym_TILDE] = ACTIONS(2857), + [anon_sym_DASH] = ACTIONS(2855), + [anon_sym_PLUS] = ACTIONS(2855), + [anon_sym_STAR] = ACTIONS(2857), + [anon_sym_AMP_AMP] = ACTIONS(2857), + [anon_sym_AMP] = ACTIONS(2855), + [anon_sym_SEMI] = ACTIONS(2857), + [anon_sym___extension__] = ACTIONS(2855), + [anon_sym_typedef] = ACTIONS(2855), + [anon_sym_virtual] = ACTIONS(2855), + [anon_sym_extern] = ACTIONS(2855), + [anon_sym___attribute__] = ACTIONS(2855), + [anon_sym___attribute] = ACTIONS(2855), + [anon_sym_using] = ACTIONS(2855), + [anon_sym_COLON_COLON] = ACTIONS(2857), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2857), + [anon_sym___declspec] = ACTIONS(2855), + [anon_sym___based] = ACTIONS(2855), + [anon_sym___cdecl] = ACTIONS(2855), + [anon_sym___clrcall] = ACTIONS(2855), + [anon_sym___stdcall] = ACTIONS(2855), + [anon_sym___fastcall] = ACTIONS(2855), + [anon_sym___thiscall] = ACTIONS(2855), + [anon_sym___vectorcall] = ACTIONS(2855), + [anon_sym_LBRACE] = ACTIONS(2857), + [anon_sym_RBRACE] = ACTIONS(2857), + [anon_sym_signed] = ACTIONS(2855), + [anon_sym_unsigned] = ACTIONS(2855), + [anon_sym_long] = ACTIONS(2855), + [anon_sym_short] = ACTIONS(2855), + [anon_sym_LBRACK] = ACTIONS(2855), + [anon_sym_static] = ACTIONS(2855), + [anon_sym_register] = ACTIONS(2855), + [anon_sym_inline] = ACTIONS(2855), + [anon_sym___inline] = ACTIONS(2855), + [anon_sym___inline__] = ACTIONS(2855), + [anon_sym___forceinline] = ACTIONS(2855), + [anon_sym_thread_local] = ACTIONS(2855), + [anon_sym___thread] = ACTIONS(2855), + [anon_sym_const] = ACTIONS(2855), + [anon_sym_constexpr] = ACTIONS(2855), + [anon_sym_volatile] = ACTIONS(2855), + [anon_sym_restrict] = ACTIONS(2855), + [anon_sym___restrict__] = ACTIONS(2855), + [anon_sym__Atomic] = ACTIONS(2855), + [anon_sym__Noreturn] = ACTIONS(2855), + [anon_sym_noreturn] = ACTIONS(2855), + [anon_sym__Nonnull] = ACTIONS(2855), + [anon_sym_mutable] = ACTIONS(2855), + [anon_sym_constinit] = ACTIONS(2855), + [anon_sym_consteval] = ACTIONS(2855), + [anon_sym_alignas] = ACTIONS(2855), + [anon_sym__Alignas] = ACTIONS(2855), + [sym_primitive_type] = ACTIONS(2855), + [anon_sym_enum] = ACTIONS(2855), + [anon_sym_class] = ACTIONS(2855), + [anon_sym_struct] = ACTIONS(2855), + [anon_sym_union] = ACTIONS(2855), + [anon_sym_if] = ACTIONS(2855), + [anon_sym_switch] = ACTIONS(2855), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_default] = ACTIONS(2855), + [anon_sym_while] = ACTIONS(2855), + [anon_sym_do] = ACTIONS(2855), + [anon_sym_for] = ACTIONS(2855), + [anon_sym_return] = ACTIONS(2855), + [anon_sym_break] = ACTIONS(2855), + [anon_sym_continue] = ACTIONS(2855), + [anon_sym_goto] = ACTIONS(2855), + [anon_sym___try] = ACTIONS(2855), + [anon_sym___leave] = ACTIONS(2855), + [anon_sym_not] = ACTIONS(2855), + [anon_sym_compl] = ACTIONS(2855), + [anon_sym_DASH_DASH] = ACTIONS(2857), + [anon_sym_PLUS_PLUS] = ACTIONS(2857), + [anon_sym_sizeof] = ACTIONS(2855), + [anon_sym___alignof__] = ACTIONS(2855), + [anon_sym___alignof] = ACTIONS(2855), + [anon_sym__alignof] = ACTIONS(2855), + [anon_sym_alignof] = ACTIONS(2855), + [anon_sym__Alignof] = ACTIONS(2855), + [anon_sym_offsetof] = ACTIONS(2855), + [anon_sym__Generic] = ACTIONS(2855), + [anon_sym_asm] = ACTIONS(2855), + [anon_sym___asm__] = ACTIONS(2855), + [anon_sym___asm] = ACTIONS(2855), + [sym_number_literal] = ACTIONS(2857), + [anon_sym_L_SQUOTE] = ACTIONS(2857), + [anon_sym_u_SQUOTE] = ACTIONS(2857), + [anon_sym_U_SQUOTE] = ACTIONS(2857), + [anon_sym_u8_SQUOTE] = ACTIONS(2857), + [anon_sym_SQUOTE] = ACTIONS(2857), + [anon_sym_L_DQUOTE] = ACTIONS(2857), + [anon_sym_u_DQUOTE] = ACTIONS(2857), + [anon_sym_U_DQUOTE] = ACTIONS(2857), + [anon_sym_u8_DQUOTE] = ACTIONS(2857), + [anon_sym_DQUOTE] = ACTIONS(2857), + [sym_true] = ACTIONS(2855), + [sym_false] = ACTIONS(2855), + [anon_sym_NULL] = ACTIONS(2855), + [anon_sym_nullptr] = ACTIONS(2855), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2779), - [anon_sym_decltype] = ACTIONS(2779), - [anon_sym_explicit] = ACTIONS(2779), - [anon_sym_typename] = ACTIONS(2779), - [anon_sym_template] = ACTIONS(2779), - [anon_sym_operator] = ACTIONS(2779), - [anon_sym_try] = ACTIONS(2779), - [anon_sym_delete] = ACTIONS(2779), - [anon_sym_throw] = ACTIONS(2779), - [anon_sym_namespace] = ACTIONS(2779), - [anon_sym_static_assert] = ACTIONS(2779), - [anon_sym_concept] = ACTIONS(2779), - [anon_sym_co_return] = ACTIONS(2779), - [anon_sym_co_yield] = ACTIONS(2779), - [anon_sym_R_DQUOTE] = ACTIONS(2781), - [anon_sym_LR_DQUOTE] = ACTIONS(2781), - [anon_sym_uR_DQUOTE] = ACTIONS(2781), - [anon_sym_UR_DQUOTE] = ACTIONS(2781), - [anon_sym_u8R_DQUOTE] = ACTIONS(2781), - [anon_sym_co_await] = ACTIONS(2779), - [anon_sym_new] = ACTIONS(2779), - [anon_sym_requires] = ACTIONS(2779), - [sym_this] = ACTIONS(2779), + [sym_auto] = ACTIONS(2855), + [anon_sym_decltype] = ACTIONS(2855), + [anon_sym_explicit] = ACTIONS(2855), + [anon_sym_typename] = ACTIONS(2855), + [anon_sym_template] = ACTIONS(2855), + [anon_sym_operator] = ACTIONS(2855), + [anon_sym_try] = ACTIONS(2855), + [anon_sym_delete] = ACTIONS(2855), + [anon_sym_throw] = ACTIONS(2855), + [anon_sym_namespace] = ACTIONS(2855), + [anon_sym_static_assert] = ACTIONS(2855), + [anon_sym_concept] = ACTIONS(2855), + [anon_sym_co_return] = ACTIONS(2855), + [anon_sym_co_yield] = ACTIONS(2855), + [anon_sym_R_DQUOTE] = ACTIONS(2857), + [anon_sym_LR_DQUOTE] = ACTIONS(2857), + [anon_sym_uR_DQUOTE] = ACTIONS(2857), + [anon_sym_UR_DQUOTE] = ACTIONS(2857), + [anon_sym_u8R_DQUOTE] = ACTIONS(2857), + [anon_sym_co_await] = ACTIONS(2855), + [anon_sym_new] = ACTIONS(2855), + [anon_sym_requires] = ACTIONS(2855), + [sym_this] = ACTIONS(2855), }, - [767] = { + [796] = { [sym_identifier] = ACTIONS(2783), [aux_sym_preproc_include_token1] = ACTIONS(2783), [aux_sym_preproc_def_token1] = ACTIONS(2783), [aux_sym_preproc_if_token1] = ACTIONS(2783), + [aux_sym_preproc_if_token2] = ACTIONS(2783), [aux_sym_preproc_ifdef_token1] = ACTIONS(2783), [aux_sym_preproc_ifdef_token2] = ACTIONS(2783), [sym_preproc_directive] = ACTIONS(2783), @@ -151421,7 +155693,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(2783), [anon_sym___vectorcall] = ACTIONS(2783), [anon_sym_LBRACE] = ACTIONS(2785), - [anon_sym_RBRACE] = ACTIONS(2785), [anon_sym_signed] = ACTIONS(2783), [anon_sym_unsigned] = ACTIONS(2783), [anon_sym_long] = ACTIONS(2783), @@ -151522,419 +155793,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2783), [sym_this] = ACTIONS(2783), }, - [768] = { - [sym_identifier] = ACTIONS(2787), - [aux_sym_preproc_include_token1] = ACTIONS(2787), - [aux_sym_preproc_def_token1] = ACTIONS(2787), - [aux_sym_preproc_if_token1] = ACTIONS(2787), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2787), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2787), - [sym_preproc_directive] = ACTIONS(2787), - [anon_sym_LPAREN2] = ACTIONS(2789), - [anon_sym_BANG] = ACTIONS(2789), - [anon_sym_TILDE] = ACTIONS(2789), - [anon_sym_DASH] = ACTIONS(2787), - [anon_sym_PLUS] = ACTIONS(2787), - [anon_sym_STAR] = ACTIONS(2789), - [anon_sym_AMP_AMP] = ACTIONS(2789), - [anon_sym_AMP] = ACTIONS(2787), - [anon_sym_SEMI] = ACTIONS(2789), - [anon_sym___extension__] = ACTIONS(2787), - [anon_sym_typedef] = ACTIONS(2787), - [anon_sym_virtual] = ACTIONS(2787), - [anon_sym_extern] = ACTIONS(2787), - [anon_sym___attribute__] = ACTIONS(2787), - [anon_sym___attribute] = ACTIONS(2787), - [anon_sym_using] = ACTIONS(2787), - [anon_sym_COLON_COLON] = ACTIONS(2789), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2789), - [anon_sym___declspec] = ACTIONS(2787), - [anon_sym___based] = ACTIONS(2787), - [anon_sym___cdecl] = ACTIONS(2787), - [anon_sym___clrcall] = ACTIONS(2787), - [anon_sym___stdcall] = ACTIONS(2787), - [anon_sym___fastcall] = ACTIONS(2787), - [anon_sym___thiscall] = ACTIONS(2787), - [anon_sym___vectorcall] = ACTIONS(2787), - [anon_sym_LBRACE] = ACTIONS(2789), - [anon_sym_RBRACE] = ACTIONS(2789), - [anon_sym_signed] = ACTIONS(2787), - [anon_sym_unsigned] = ACTIONS(2787), - [anon_sym_long] = ACTIONS(2787), - [anon_sym_short] = ACTIONS(2787), - [anon_sym_LBRACK] = ACTIONS(2787), - [anon_sym_static] = ACTIONS(2787), - [anon_sym_register] = ACTIONS(2787), - [anon_sym_inline] = ACTIONS(2787), - [anon_sym___inline] = ACTIONS(2787), - [anon_sym___inline__] = ACTIONS(2787), - [anon_sym___forceinline] = ACTIONS(2787), - [anon_sym_thread_local] = ACTIONS(2787), - [anon_sym___thread] = ACTIONS(2787), - [anon_sym_const] = ACTIONS(2787), - [anon_sym_constexpr] = ACTIONS(2787), - [anon_sym_volatile] = ACTIONS(2787), - [anon_sym_restrict] = ACTIONS(2787), - [anon_sym___restrict__] = ACTIONS(2787), - [anon_sym__Atomic] = ACTIONS(2787), - [anon_sym__Noreturn] = ACTIONS(2787), - [anon_sym_noreturn] = ACTIONS(2787), - [anon_sym__Nonnull] = ACTIONS(2787), - [anon_sym_mutable] = ACTIONS(2787), - [anon_sym_constinit] = ACTIONS(2787), - [anon_sym_consteval] = ACTIONS(2787), - [anon_sym_alignas] = ACTIONS(2787), - [anon_sym__Alignas] = ACTIONS(2787), - [sym_primitive_type] = ACTIONS(2787), - [anon_sym_enum] = ACTIONS(2787), - [anon_sym_class] = ACTIONS(2787), - [anon_sym_struct] = ACTIONS(2787), - [anon_sym_union] = ACTIONS(2787), - [anon_sym_if] = ACTIONS(2787), - [anon_sym_switch] = ACTIONS(2787), - [anon_sym_case] = ACTIONS(2787), - [anon_sym_default] = ACTIONS(2787), - [anon_sym_while] = ACTIONS(2787), - [anon_sym_do] = ACTIONS(2787), - [anon_sym_for] = ACTIONS(2787), - [anon_sym_return] = ACTIONS(2787), - [anon_sym_break] = ACTIONS(2787), - [anon_sym_continue] = ACTIONS(2787), - [anon_sym_goto] = ACTIONS(2787), - [anon_sym___try] = ACTIONS(2787), - [anon_sym___leave] = ACTIONS(2787), - [anon_sym_not] = ACTIONS(2787), - [anon_sym_compl] = ACTIONS(2787), - [anon_sym_DASH_DASH] = ACTIONS(2789), - [anon_sym_PLUS_PLUS] = ACTIONS(2789), - [anon_sym_sizeof] = ACTIONS(2787), - [anon_sym___alignof__] = ACTIONS(2787), - [anon_sym___alignof] = ACTIONS(2787), - [anon_sym__alignof] = ACTIONS(2787), - [anon_sym_alignof] = ACTIONS(2787), - [anon_sym__Alignof] = ACTIONS(2787), - [anon_sym_offsetof] = ACTIONS(2787), - [anon_sym__Generic] = ACTIONS(2787), - [anon_sym_asm] = ACTIONS(2787), - [anon_sym___asm__] = ACTIONS(2787), - [anon_sym___asm] = ACTIONS(2787), - [sym_number_literal] = ACTIONS(2789), - [anon_sym_L_SQUOTE] = ACTIONS(2789), - [anon_sym_u_SQUOTE] = ACTIONS(2789), - [anon_sym_U_SQUOTE] = ACTIONS(2789), - [anon_sym_u8_SQUOTE] = ACTIONS(2789), - [anon_sym_SQUOTE] = ACTIONS(2789), - [anon_sym_L_DQUOTE] = ACTIONS(2789), - [anon_sym_u_DQUOTE] = ACTIONS(2789), - [anon_sym_U_DQUOTE] = ACTIONS(2789), - [anon_sym_u8_DQUOTE] = ACTIONS(2789), - [anon_sym_DQUOTE] = ACTIONS(2789), - [sym_true] = ACTIONS(2787), - [sym_false] = ACTIONS(2787), - [anon_sym_NULL] = ACTIONS(2787), - [anon_sym_nullptr] = ACTIONS(2787), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2787), - [anon_sym_decltype] = ACTIONS(2787), - [anon_sym_explicit] = ACTIONS(2787), - [anon_sym_typename] = ACTIONS(2787), - [anon_sym_template] = ACTIONS(2787), - [anon_sym_operator] = ACTIONS(2787), - [anon_sym_try] = ACTIONS(2787), - [anon_sym_delete] = ACTIONS(2787), - [anon_sym_throw] = ACTIONS(2787), - [anon_sym_namespace] = ACTIONS(2787), - [anon_sym_static_assert] = ACTIONS(2787), - [anon_sym_concept] = ACTIONS(2787), - [anon_sym_co_return] = ACTIONS(2787), - [anon_sym_co_yield] = ACTIONS(2787), - [anon_sym_R_DQUOTE] = ACTIONS(2789), - [anon_sym_LR_DQUOTE] = ACTIONS(2789), - [anon_sym_uR_DQUOTE] = ACTIONS(2789), - [anon_sym_UR_DQUOTE] = ACTIONS(2789), - [anon_sym_u8R_DQUOTE] = ACTIONS(2789), - [anon_sym_co_await] = ACTIONS(2787), - [anon_sym_new] = ACTIONS(2787), - [anon_sym_requires] = ACTIONS(2787), - [sym_this] = ACTIONS(2787), - }, - [769] = { - [sym_identifier] = ACTIONS(2791), - [aux_sym_preproc_include_token1] = ACTIONS(2791), - [aux_sym_preproc_def_token1] = ACTIONS(2791), - [aux_sym_preproc_if_token1] = ACTIONS(2791), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2791), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2791), - [sym_preproc_directive] = ACTIONS(2791), - [anon_sym_LPAREN2] = ACTIONS(2793), - [anon_sym_BANG] = ACTIONS(2793), - [anon_sym_TILDE] = ACTIONS(2793), - [anon_sym_DASH] = ACTIONS(2791), - [anon_sym_PLUS] = ACTIONS(2791), - [anon_sym_STAR] = ACTIONS(2793), - [anon_sym_AMP_AMP] = ACTIONS(2793), - [anon_sym_AMP] = ACTIONS(2791), - [anon_sym_SEMI] = ACTIONS(2793), - [anon_sym___extension__] = ACTIONS(2791), - [anon_sym_typedef] = ACTIONS(2791), - [anon_sym_virtual] = ACTIONS(2791), - [anon_sym_extern] = ACTIONS(2791), - [anon_sym___attribute__] = ACTIONS(2791), - [anon_sym___attribute] = ACTIONS(2791), - [anon_sym_using] = ACTIONS(2791), - [anon_sym_COLON_COLON] = ACTIONS(2793), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2793), - [anon_sym___declspec] = ACTIONS(2791), - [anon_sym___based] = ACTIONS(2791), - [anon_sym___cdecl] = ACTIONS(2791), - [anon_sym___clrcall] = ACTIONS(2791), - [anon_sym___stdcall] = ACTIONS(2791), - [anon_sym___fastcall] = ACTIONS(2791), - [anon_sym___thiscall] = ACTIONS(2791), - [anon_sym___vectorcall] = ACTIONS(2791), - [anon_sym_LBRACE] = ACTIONS(2793), - [anon_sym_RBRACE] = ACTIONS(2793), - [anon_sym_signed] = ACTIONS(2791), - [anon_sym_unsigned] = ACTIONS(2791), - [anon_sym_long] = ACTIONS(2791), - [anon_sym_short] = ACTIONS(2791), - [anon_sym_LBRACK] = ACTIONS(2791), - [anon_sym_static] = ACTIONS(2791), - [anon_sym_register] = ACTIONS(2791), - [anon_sym_inline] = ACTIONS(2791), - [anon_sym___inline] = ACTIONS(2791), - [anon_sym___inline__] = ACTIONS(2791), - [anon_sym___forceinline] = ACTIONS(2791), - [anon_sym_thread_local] = ACTIONS(2791), - [anon_sym___thread] = ACTIONS(2791), - [anon_sym_const] = ACTIONS(2791), - [anon_sym_constexpr] = ACTIONS(2791), - [anon_sym_volatile] = ACTIONS(2791), - [anon_sym_restrict] = ACTIONS(2791), - [anon_sym___restrict__] = ACTIONS(2791), - [anon_sym__Atomic] = ACTIONS(2791), - [anon_sym__Noreturn] = ACTIONS(2791), - [anon_sym_noreturn] = ACTIONS(2791), - [anon_sym__Nonnull] = ACTIONS(2791), - [anon_sym_mutable] = ACTIONS(2791), - [anon_sym_constinit] = ACTIONS(2791), - [anon_sym_consteval] = ACTIONS(2791), - [anon_sym_alignas] = ACTIONS(2791), - [anon_sym__Alignas] = ACTIONS(2791), - [sym_primitive_type] = ACTIONS(2791), - [anon_sym_enum] = ACTIONS(2791), - [anon_sym_class] = ACTIONS(2791), - [anon_sym_struct] = ACTIONS(2791), - [anon_sym_union] = ACTIONS(2791), - [anon_sym_if] = ACTIONS(2791), - [anon_sym_switch] = ACTIONS(2791), - [anon_sym_case] = ACTIONS(2791), - [anon_sym_default] = ACTIONS(2791), - [anon_sym_while] = ACTIONS(2791), - [anon_sym_do] = ACTIONS(2791), - [anon_sym_for] = ACTIONS(2791), - [anon_sym_return] = ACTIONS(2791), - [anon_sym_break] = ACTIONS(2791), - [anon_sym_continue] = ACTIONS(2791), - [anon_sym_goto] = ACTIONS(2791), - [anon_sym___try] = ACTIONS(2791), - [anon_sym___leave] = ACTIONS(2791), - [anon_sym_not] = ACTIONS(2791), - [anon_sym_compl] = ACTIONS(2791), - [anon_sym_DASH_DASH] = ACTIONS(2793), - [anon_sym_PLUS_PLUS] = ACTIONS(2793), - [anon_sym_sizeof] = ACTIONS(2791), - [anon_sym___alignof__] = ACTIONS(2791), - [anon_sym___alignof] = ACTIONS(2791), - [anon_sym__alignof] = ACTIONS(2791), - [anon_sym_alignof] = ACTIONS(2791), - [anon_sym__Alignof] = ACTIONS(2791), - [anon_sym_offsetof] = ACTIONS(2791), - [anon_sym__Generic] = ACTIONS(2791), - [anon_sym_asm] = ACTIONS(2791), - [anon_sym___asm__] = ACTIONS(2791), - [anon_sym___asm] = ACTIONS(2791), - [sym_number_literal] = ACTIONS(2793), - [anon_sym_L_SQUOTE] = ACTIONS(2793), - [anon_sym_u_SQUOTE] = ACTIONS(2793), - [anon_sym_U_SQUOTE] = ACTIONS(2793), - [anon_sym_u8_SQUOTE] = ACTIONS(2793), - [anon_sym_SQUOTE] = ACTIONS(2793), - [anon_sym_L_DQUOTE] = ACTIONS(2793), - [anon_sym_u_DQUOTE] = ACTIONS(2793), - [anon_sym_U_DQUOTE] = ACTIONS(2793), - [anon_sym_u8_DQUOTE] = ACTIONS(2793), - [anon_sym_DQUOTE] = ACTIONS(2793), - [sym_true] = ACTIONS(2791), - [sym_false] = ACTIONS(2791), - [anon_sym_NULL] = ACTIONS(2791), - [anon_sym_nullptr] = ACTIONS(2791), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2791), - [anon_sym_decltype] = ACTIONS(2791), - [anon_sym_explicit] = ACTIONS(2791), - [anon_sym_typename] = ACTIONS(2791), - [anon_sym_template] = ACTIONS(2791), - [anon_sym_operator] = ACTIONS(2791), - [anon_sym_try] = ACTIONS(2791), - [anon_sym_delete] = ACTIONS(2791), - [anon_sym_throw] = ACTIONS(2791), - [anon_sym_namespace] = ACTIONS(2791), - [anon_sym_static_assert] = ACTIONS(2791), - [anon_sym_concept] = ACTIONS(2791), - [anon_sym_co_return] = ACTIONS(2791), - [anon_sym_co_yield] = ACTIONS(2791), - [anon_sym_R_DQUOTE] = ACTIONS(2793), - [anon_sym_LR_DQUOTE] = ACTIONS(2793), - [anon_sym_uR_DQUOTE] = ACTIONS(2793), - [anon_sym_UR_DQUOTE] = ACTIONS(2793), - [anon_sym_u8R_DQUOTE] = ACTIONS(2793), - [anon_sym_co_await] = ACTIONS(2791), - [anon_sym_new] = ACTIONS(2791), - [anon_sym_requires] = ACTIONS(2791), - [sym_this] = ACTIONS(2791), - }, - [770] = { - [sym_identifier] = ACTIONS(2839), - [aux_sym_preproc_include_token1] = ACTIONS(2839), - [aux_sym_preproc_def_token1] = ACTIONS(2839), - [aux_sym_preproc_if_token1] = ACTIONS(2839), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2839), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2839), - [sym_preproc_directive] = ACTIONS(2839), - [anon_sym_LPAREN2] = ACTIONS(2841), - [anon_sym_BANG] = ACTIONS(2841), - [anon_sym_TILDE] = ACTIONS(2841), - [anon_sym_DASH] = ACTIONS(2839), - [anon_sym_PLUS] = ACTIONS(2839), - [anon_sym_STAR] = ACTIONS(2841), - [anon_sym_AMP_AMP] = ACTIONS(2841), - [anon_sym_AMP] = ACTIONS(2839), - [anon_sym_SEMI] = ACTIONS(2841), - [anon_sym___extension__] = ACTIONS(2839), - [anon_sym_typedef] = ACTIONS(2839), - [anon_sym_virtual] = ACTIONS(2839), - [anon_sym_extern] = ACTIONS(2839), - [anon_sym___attribute__] = ACTIONS(2839), - [anon_sym___attribute] = ACTIONS(2839), - [anon_sym_using] = ACTIONS(2839), - [anon_sym_COLON_COLON] = ACTIONS(2841), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2841), - [anon_sym___declspec] = ACTIONS(2839), - [anon_sym___based] = ACTIONS(2839), - [anon_sym___cdecl] = ACTIONS(2839), - [anon_sym___clrcall] = ACTIONS(2839), - [anon_sym___stdcall] = ACTIONS(2839), - [anon_sym___fastcall] = ACTIONS(2839), - [anon_sym___thiscall] = ACTIONS(2839), - [anon_sym___vectorcall] = ACTIONS(2839), - [anon_sym_LBRACE] = ACTIONS(2841), - [anon_sym_RBRACE] = ACTIONS(2841), - [anon_sym_signed] = ACTIONS(2839), - [anon_sym_unsigned] = ACTIONS(2839), - [anon_sym_long] = ACTIONS(2839), - [anon_sym_short] = ACTIONS(2839), - [anon_sym_LBRACK] = ACTIONS(2839), - [anon_sym_static] = ACTIONS(2839), - [anon_sym_register] = ACTIONS(2839), - [anon_sym_inline] = ACTIONS(2839), - [anon_sym___inline] = ACTIONS(2839), - [anon_sym___inline__] = ACTIONS(2839), - [anon_sym___forceinline] = ACTIONS(2839), - [anon_sym_thread_local] = ACTIONS(2839), - [anon_sym___thread] = ACTIONS(2839), - [anon_sym_const] = ACTIONS(2839), - [anon_sym_constexpr] = ACTIONS(2839), - [anon_sym_volatile] = ACTIONS(2839), - [anon_sym_restrict] = ACTIONS(2839), - [anon_sym___restrict__] = ACTIONS(2839), - [anon_sym__Atomic] = ACTIONS(2839), - [anon_sym__Noreturn] = ACTIONS(2839), - [anon_sym_noreturn] = ACTIONS(2839), - [anon_sym__Nonnull] = ACTIONS(2839), - [anon_sym_mutable] = ACTIONS(2839), - [anon_sym_constinit] = ACTIONS(2839), - [anon_sym_consteval] = ACTIONS(2839), - [anon_sym_alignas] = ACTIONS(2839), - [anon_sym__Alignas] = ACTIONS(2839), - [sym_primitive_type] = ACTIONS(2839), - [anon_sym_enum] = ACTIONS(2839), - [anon_sym_class] = ACTIONS(2839), - [anon_sym_struct] = ACTIONS(2839), - [anon_sym_union] = ACTIONS(2839), - [anon_sym_if] = ACTIONS(2839), - [anon_sym_switch] = ACTIONS(2839), - [anon_sym_case] = ACTIONS(2839), - [anon_sym_default] = ACTIONS(2839), - [anon_sym_while] = ACTIONS(2839), - [anon_sym_do] = ACTIONS(2839), - [anon_sym_for] = ACTIONS(2839), - [anon_sym_return] = ACTIONS(2839), - [anon_sym_break] = ACTIONS(2839), - [anon_sym_continue] = ACTIONS(2839), - [anon_sym_goto] = ACTIONS(2839), - [anon_sym___try] = ACTIONS(2839), - [anon_sym___leave] = ACTIONS(2839), - [anon_sym_not] = ACTIONS(2839), - [anon_sym_compl] = ACTIONS(2839), - [anon_sym_DASH_DASH] = ACTIONS(2841), - [anon_sym_PLUS_PLUS] = ACTIONS(2841), - [anon_sym_sizeof] = ACTIONS(2839), - [anon_sym___alignof__] = ACTIONS(2839), - [anon_sym___alignof] = ACTIONS(2839), - [anon_sym__alignof] = ACTIONS(2839), - [anon_sym_alignof] = ACTIONS(2839), - [anon_sym__Alignof] = ACTIONS(2839), - [anon_sym_offsetof] = ACTIONS(2839), - [anon_sym__Generic] = ACTIONS(2839), - [anon_sym_asm] = ACTIONS(2839), - [anon_sym___asm__] = ACTIONS(2839), - [anon_sym___asm] = ACTIONS(2839), - [sym_number_literal] = ACTIONS(2841), - [anon_sym_L_SQUOTE] = ACTIONS(2841), - [anon_sym_u_SQUOTE] = ACTIONS(2841), - [anon_sym_U_SQUOTE] = ACTIONS(2841), - [anon_sym_u8_SQUOTE] = ACTIONS(2841), - [anon_sym_SQUOTE] = ACTIONS(2841), - [anon_sym_L_DQUOTE] = ACTIONS(2841), - [anon_sym_u_DQUOTE] = ACTIONS(2841), - [anon_sym_U_DQUOTE] = ACTIONS(2841), - [anon_sym_u8_DQUOTE] = ACTIONS(2841), - [anon_sym_DQUOTE] = ACTIONS(2841), - [sym_true] = ACTIONS(2839), - [sym_false] = ACTIONS(2839), - [anon_sym_NULL] = ACTIONS(2839), - [anon_sym_nullptr] = ACTIONS(2839), + [797] = { + [sym_identifier] = ACTIONS(2855), + [aux_sym_preproc_include_token1] = ACTIONS(2855), + [aux_sym_preproc_def_token1] = ACTIONS(2855), + [aux_sym_preproc_if_token1] = ACTIONS(2855), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2855), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2855), + [sym_preproc_directive] = ACTIONS(2855), + [anon_sym_LPAREN2] = ACTIONS(2857), + [anon_sym_BANG] = ACTIONS(2857), + [anon_sym_TILDE] = ACTIONS(2857), + [anon_sym_DASH] = ACTIONS(2855), + [anon_sym_PLUS] = ACTIONS(2855), + [anon_sym_STAR] = ACTIONS(2857), + [anon_sym_AMP_AMP] = ACTIONS(2857), + [anon_sym_AMP] = ACTIONS(2855), + [anon_sym_SEMI] = ACTIONS(2857), + [anon_sym___extension__] = ACTIONS(2855), + [anon_sym_typedef] = ACTIONS(2855), + [anon_sym_virtual] = ACTIONS(2855), + [anon_sym_extern] = ACTIONS(2855), + [anon_sym___attribute__] = ACTIONS(2855), + [anon_sym___attribute] = ACTIONS(2855), + [anon_sym_using] = ACTIONS(2855), + [anon_sym_COLON_COLON] = ACTIONS(2857), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2857), + [anon_sym___declspec] = ACTIONS(2855), + [anon_sym___based] = ACTIONS(2855), + [anon_sym___cdecl] = ACTIONS(2855), + [anon_sym___clrcall] = ACTIONS(2855), + [anon_sym___stdcall] = ACTIONS(2855), + [anon_sym___fastcall] = ACTIONS(2855), + [anon_sym___thiscall] = ACTIONS(2855), + [anon_sym___vectorcall] = ACTIONS(2855), + [anon_sym_LBRACE] = ACTIONS(2857), + [anon_sym_RBRACE] = ACTIONS(2857), + [anon_sym_signed] = ACTIONS(2855), + [anon_sym_unsigned] = ACTIONS(2855), + [anon_sym_long] = ACTIONS(2855), + [anon_sym_short] = ACTIONS(2855), + [anon_sym_LBRACK] = ACTIONS(2855), + [anon_sym_static] = ACTIONS(2855), + [anon_sym_register] = ACTIONS(2855), + [anon_sym_inline] = ACTIONS(2855), + [anon_sym___inline] = ACTIONS(2855), + [anon_sym___inline__] = ACTIONS(2855), + [anon_sym___forceinline] = ACTIONS(2855), + [anon_sym_thread_local] = ACTIONS(2855), + [anon_sym___thread] = ACTIONS(2855), + [anon_sym_const] = ACTIONS(2855), + [anon_sym_constexpr] = ACTIONS(2855), + [anon_sym_volatile] = ACTIONS(2855), + [anon_sym_restrict] = ACTIONS(2855), + [anon_sym___restrict__] = ACTIONS(2855), + [anon_sym__Atomic] = ACTIONS(2855), + [anon_sym__Noreturn] = ACTIONS(2855), + [anon_sym_noreturn] = ACTIONS(2855), + [anon_sym__Nonnull] = ACTIONS(2855), + [anon_sym_mutable] = ACTIONS(2855), + [anon_sym_constinit] = ACTIONS(2855), + [anon_sym_consteval] = ACTIONS(2855), + [anon_sym_alignas] = ACTIONS(2855), + [anon_sym__Alignas] = ACTIONS(2855), + [sym_primitive_type] = ACTIONS(2855), + [anon_sym_enum] = ACTIONS(2855), + [anon_sym_class] = ACTIONS(2855), + [anon_sym_struct] = ACTIONS(2855), + [anon_sym_union] = ACTIONS(2855), + [anon_sym_if] = ACTIONS(2855), + [anon_sym_switch] = ACTIONS(2855), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_default] = ACTIONS(2855), + [anon_sym_while] = ACTIONS(2855), + [anon_sym_do] = ACTIONS(2855), + [anon_sym_for] = ACTIONS(2855), + [anon_sym_return] = ACTIONS(2855), + [anon_sym_break] = ACTIONS(2855), + [anon_sym_continue] = ACTIONS(2855), + [anon_sym_goto] = ACTIONS(2855), + [anon_sym___try] = ACTIONS(2855), + [anon_sym___leave] = ACTIONS(2855), + [anon_sym_not] = ACTIONS(2855), + [anon_sym_compl] = ACTIONS(2855), + [anon_sym_DASH_DASH] = ACTIONS(2857), + [anon_sym_PLUS_PLUS] = ACTIONS(2857), + [anon_sym_sizeof] = ACTIONS(2855), + [anon_sym___alignof__] = ACTIONS(2855), + [anon_sym___alignof] = ACTIONS(2855), + [anon_sym__alignof] = ACTIONS(2855), + [anon_sym_alignof] = ACTIONS(2855), + [anon_sym__Alignof] = ACTIONS(2855), + [anon_sym_offsetof] = ACTIONS(2855), + [anon_sym__Generic] = ACTIONS(2855), + [anon_sym_asm] = ACTIONS(2855), + [anon_sym___asm__] = ACTIONS(2855), + [anon_sym___asm] = ACTIONS(2855), + [sym_number_literal] = ACTIONS(2857), + [anon_sym_L_SQUOTE] = ACTIONS(2857), + [anon_sym_u_SQUOTE] = ACTIONS(2857), + [anon_sym_U_SQUOTE] = ACTIONS(2857), + [anon_sym_u8_SQUOTE] = ACTIONS(2857), + [anon_sym_SQUOTE] = ACTIONS(2857), + [anon_sym_L_DQUOTE] = ACTIONS(2857), + [anon_sym_u_DQUOTE] = ACTIONS(2857), + [anon_sym_U_DQUOTE] = ACTIONS(2857), + [anon_sym_u8_DQUOTE] = ACTIONS(2857), + [anon_sym_DQUOTE] = ACTIONS(2857), + [sym_true] = ACTIONS(2855), + [sym_false] = ACTIONS(2855), + [anon_sym_NULL] = ACTIONS(2855), + [anon_sym_nullptr] = ACTIONS(2855), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2839), - [anon_sym_decltype] = ACTIONS(2839), - [anon_sym_explicit] = ACTIONS(2839), - [anon_sym_typename] = ACTIONS(2839), - [anon_sym_template] = ACTIONS(2839), - [anon_sym_operator] = ACTIONS(2839), - [anon_sym_try] = ACTIONS(2839), - [anon_sym_delete] = ACTIONS(2839), - [anon_sym_throw] = ACTIONS(2839), - [anon_sym_namespace] = ACTIONS(2839), - [anon_sym_static_assert] = ACTIONS(2839), - [anon_sym_concept] = ACTIONS(2839), - [anon_sym_co_return] = ACTIONS(2839), - [anon_sym_co_yield] = ACTIONS(2839), - [anon_sym_R_DQUOTE] = ACTIONS(2841), - [anon_sym_LR_DQUOTE] = ACTIONS(2841), - [anon_sym_uR_DQUOTE] = ACTIONS(2841), - [anon_sym_UR_DQUOTE] = ACTIONS(2841), - [anon_sym_u8R_DQUOTE] = ACTIONS(2841), - [anon_sym_co_await] = ACTIONS(2839), - [anon_sym_new] = ACTIONS(2839), - [anon_sym_requires] = ACTIONS(2839), - [sym_this] = ACTIONS(2839), + [sym_auto] = ACTIONS(2855), + [anon_sym_decltype] = ACTIONS(2855), + [anon_sym_explicit] = ACTIONS(2855), + [anon_sym_typename] = ACTIONS(2855), + [anon_sym_template] = ACTIONS(2855), + [anon_sym_operator] = ACTIONS(2855), + [anon_sym_try] = ACTIONS(2855), + [anon_sym_delete] = ACTIONS(2855), + [anon_sym_throw] = ACTIONS(2855), + [anon_sym_namespace] = ACTIONS(2855), + [anon_sym_static_assert] = ACTIONS(2855), + [anon_sym_concept] = ACTIONS(2855), + [anon_sym_co_return] = ACTIONS(2855), + [anon_sym_co_yield] = ACTIONS(2855), + [anon_sym_R_DQUOTE] = ACTIONS(2857), + [anon_sym_LR_DQUOTE] = ACTIONS(2857), + [anon_sym_uR_DQUOTE] = ACTIONS(2857), + [anon_sym_UR_DQUOTE] = ACTIONS(2857), + [anon_sym_u8R_DQUOTE] = ACTIONS(2857), + [anon_sym_co_await] = ACTIONS(2855), + [anon_sym_new] = ACTIONS(2855), + [anon_sym_requires] = ACTIONS(2855), + [sym_this] = ACTIONS(2855), }, - [771] = { + [798] = { [sym_identifier] = ACTIONS(2795), [aux_sym_preproc_include_token1] = ACTIONS(2795), [aux_sym_preproc_def_token1] = ACTIONS(2795), [aux_sym_preproc_if_token1] = ACTIONS(2795), + [aux_sym_preproc_if_token2] = ACTIONS(2795), [aux_sym_preproc_ifdef_token1] = ACTIONS(2795), [aux_sym_preproc_ifdef_token2] = ACTIONS(2795), [sym_preproc_directive] = ACTIONS(2795), @@ -151965,7 +155965,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(2795), [anon_sym___vectorcall] = ACTIONS(2795), [anon_sym_LBRACE] = ACTIONS(2797), - [anon_sym_RBRACE] = ACTIONS(2797), [anon_sym_signed] = ACTIONS(2795), [anon_sym_unsigned] = ACTIONS(2795), [anon_sym_long] = ACTIONS(2795), @@ -152066,283 +156065,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2795), [sym_this] = ACTIONS(2795), }, - [772] = { - [sym_identifier] = ACTIONS(2799), - [aux_sym_preproc_include_token1] = ACTIONS(2799), - [aux_sym_preproc_def_token1] = ACTIONS(2799), - [aux_sym_preproc_if_token1] = ACTIONS(2799), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2799), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2799), - [sym_preproc_directive] = ACTIONS(2799), - [anon_sym_LPAREN2] = ACTIONS(2801), - [anon_sym_BANG] = ACTIONS(2801), - [anon_sym_TILDE] = ACTIONS(2801), - [anon_sym_DASH] = ACTIONS(2799), - [anon_sym_PLUS] = ACTIONS(2799), - [anon_sym_STAR] = ACTIONS(2801), - [anon_sym_AMP_AMP] = ACTIONS(2801), - [anon_sym_AMP] = ACTIONS(2799), - [anon_sym_SEMI] = ACTIONS(2801), - [anon_sym___extension__] = ACTIONS(2799), - [anon_sym_typedef] = ACTIONS(2799), - [anon_sym_virtual] = ACTIONS(2799), - [anon_sym_extern] = ACTIONS(2799), - [anon_sym___attribute__] = ACTIONS(2799), - [anon_sym___attribute] = ACTIONS(2799), - [anon_sym_using] = ACTIONS(2799), - [anon_sym_COLON_COLON] = ACTIONS(2801), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2801), - [anon_sym___declspec] = ACTIONS(2799), - [anon_sym___based] = ACTIONS(2799), - [anon_sym___cdecl] = ACTIONS(2799), - [anon_sym___clrcall] = ACTIONS(2799), - [anon_sym___stdcall] = ACTIONS(2799), - [anon_sym___fastcall] = ACTIONS(2799), - [anon_sym___thiscall] = ACTIONS(2799), - [anon_sym___vectorcall] = ACTIONS(2799), - [anon_sym_LBRACE] = ACTIONS(2801), - [anon_sym_RBRACE] = ACTIONS(2801), - [anon_sym_signed] = ACTIONS(2799), - [anon_sym_unsigned] = ACTIONS(2799), - [anon_sym_long] = ACTIONS(2799), - [anon_sym_short] = ACTIONS(2799), - [anon_sym_LBRACK] = ACTIONS(2799), - [anon_sym_static] = ACTIONS(2799), - [anon_sym_register] = ACTIONS(2799), - [anon_sym_inline] = ACTIONS(2799), - [anon_sym___inline] = ACTIONS(2799), - [anon_sym___inline__] = ACTIONS(2799), - [anon_sym___forceinline] = ACTIONS(2799), - [anon_sym_thread_local] = ACTIONS(2799), - [anon_sym___thread] = ACTIONS(2799), - [anon_sym_const] = ACTIONS(2799), - [anon_sym_constexpr] = ACTIONS(2799), - [anon_sym_volatile] = ACTIONS(2799), - [anon_sym_restrict] = ACTIONS(2799), - [anon_sym___restrict__] = ACTIONS(2799), - [anon_sym__Atomic] = ACTIONS(2799), - [anon_sym__Noreturn] = ACTIONS(2799), - [anon_sym_noreturn] = ACTIONS(2799), - [anon_sym__Nonnull] = ACTIONS(2799), - [anon_sym_mutable] = ACTIONS(2799), - [anon_sym_constinit] = ACTIONS(2799), - [anon_sym_consteval] = ACTIONS(2799), - [anon_sym_alignas] = ACTIONS(2799), - [anon_sym__Alignas] = ACTIONS(2799), - [sym_primitive_type] = ACTIONS(2799), - [anon_sym_enum] = ACTIONS(2799), - [anon_sym_class] = ACTIONS(2799), - [anon_sym_struct] = ACTIONS(2799), - [anon_sym_union] = ACTIONS(2799), - [anon_sym_if] = ACTIONS(2799), - [anon_sym_switch] = ACTIONS(2799), - [anon_sym_case] = ACTIONS(2799), - [anon_sym_default] = ACTIONS(2799), - [anon_sym_while] = ACTIONS(2799), - [anon_sym_do] = ACTIONS(2799), - [anon_sym_for] = ACTIONS(2799), - [anon_sym_return] = ACTIONS(2799), - [anon_sym_break] = ACTIONS(2799), - [anon_sym_continue] = ACTIONS(2799), - [anon_sym_goto] = ACTIONS(2799), - [anon_sym___try] = ACTIONS(2799), - [anon_sym___leave] = ACTIONS(2799), - [anon_sym_not] = ACTIONS(2799), - [anon_sym_compl] = ACTIONS(2799), - [anon_sym_DASH_DASH] = ACTIONS(2801), - [anon_sym_PLUS_PLUS] = ACTIONS(2801), - [anon_sym_sizeof] = ACTIONS(2799), - [anon_sym___alignof__] = ACTIONS(2799), - [anon_sym___alignof] = ACTIONS(2799), - [anon_sym__alignof] = ACTIONS(2799), - [anon_sym_alignof] = ACTIONS(2799), - [anon_sym__Alignof] = ACTIONS(2799), - [anon_sym_offsetof] = ACTIONS(2799), - [anon_sym__Generic] = ACTIONS(2799), - [anon_sym_asm] = ACTIONS(2799), - [anon_sym___asm__] = ACTIONS(2799), - [anon_sym___asm] = ACTIONS(2799), - [sym_number_literal] = ACTIONS(2801), - [anon_sym_L_SQUOTE] = ACTIONS(2801), - [anon_sym_u_SQUOTE] = ACTIONS(2801), - [anon_sym_U_SQUOTE] = ACTIONS(2801), - [anon_sym_u8_SQUOTE] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2801), - [anon_sym_L_DQUOTE] = ACTIONS(2801), - [anon_sym_u_DQUOTE] = ACTIONS(2801), - [anon_sym_U_DQUOTE] = ACTIONS(2801), - [anon_sym_u8_DQUOTE] = ACTIONS(2801), - [anon_sym_DQUOTE] = ACTIONS(2801), - [sym_true] = ACTIONS(2799), - [sym_false] = ACTIONS(2799), - [anon_sym_NULL] = ACTIONS(2799), - [anon_sym_nullptr] = ACTIONS(2799), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2799), - [anon_sym_decltype] = ACTIONS(2799), - [anon_sym_explicit] = ACTIONS(2799), - [anon_sym_typename] = ACTIONS(2799), - [anon_sym_template] = ACTIONS(2799), - [anon_sym_operator] = ACTIONS(2799), - [anon_sym_try] = ACTIONS(2799), - [anon_sym_delete] = ACTIONS(2799), - [anon_sym_throw] = ACTIONS(2799), - [anon_sym_namespace] = ACTIONS(2799), - [anon_sym_static_assert] = ACTIONS(2799), - [anon_sym_concept] = ACTIONS(2799), - [anon_sym_co_return] = ACTIONS(2799), - [anon_sym_co_yield] = ACTIONS(2799), - [anon_sym_R_DQUOTE] = ACTIONS(2801), - [anon_sym_LR_DQUOTE] = ACTIONS(2801), - [anon_sym_uR_DQUOTE] = ACTIONS(2801), - [anon_sym_UR_DQUOTE] = ACTIONS(2801), - [anon_sym_u8R_DQUOTE] = ACTIONS(2801), - [anon_sym_co_await] = ACTIONS(2799), - [anon_sym_new] = ACTIONS(2799), - [anon_sym_requires] = ACTIONS(2799), - [sym_this] = ACTIONS(2799), - }, - [773] = { - [sym_identifier] = ACTIONS(2803), - [aux_sym_preproc_include_token1] = ACTIONS(2803), - [aux_sym_preproc_def_token1] = ACTIONS(2803), - [aux_sym_preproc_if_token1] = ACTIONS(2803), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2803), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2803), - [sym_preproc_directive] = ACTIONS(2803), - [anon_sym_LPAREN2] = ACTIONS(2805), - [anon_sym_BANG] = ACTIONS(2805), - [anon_sym_TILDE] = ACTIONS(2805), - [anon_sym_DASH] = ACTIONS(2803), - [anon_sym_PLUS] = ACTIONS(2803), - [anon_sym_STAR] = ACTIONS(2805), - [anon_sym_AMP_AMP] = ACTIONS(2805), - [anon_sym_AMP] = ACTIONS(2803), - [anon_sym_SEMI] = ACTIONS(2805), - [anon_sym___extension__] = ACTIONS(2803), - [anon_sym_typedef] = ACTIONS(2803), - [anon_sym_virtual] = ACTIONS(2803), - [anon_sym_extern] = ACTIONS(2803), - [anon_sym___attribute__] = ACTIONS(2803), - [anon_sym___attribute] = ACTIONS(2803), - [anon_sym_using] = ACTIONS(2803), - [anon_sym_COLON_COLON] = ACTIONS(2805), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2805), - [anon_sym___declspec] = ACTIONS(2803), - [anon_sym___based] = ACTIONS(2803), - [anon_sym___cdecl] = ACTIONS(2803), - [anon_sym___clrcall] = ACTIONS(2803), - [anon_sym___stdcall] = ACTIONS(2803), - [anon_sym___fastcall] = ACTIONS(2803), - [anon_sym___thiscall] = ACTIONS(2803), - [anon_sym___vectorcall] = ACTIONS(2803), - [anon_sym_LBRACE] = ACTIONS(2805), - [anon_sym_RBRACE] = ACTIONS(2805), - [anon_sym_signed] = ACTIONS(2803), - [anon_sym_unsigned] = ACTIONS(2803), - [anon_sym_long] = ACTIONS(2803), - [anon_sym_short] = ACTIONS(2803), - [anon_sym_LBRACK] = ACTIONS(2803), - [anon_sym_static] = ACTIONS(2803), - [anon_sym_register] = ACTIONS(2803), - [anon_sym_inline] = ACTIONS(2803), - [anon_sym___inline] = ACTIONS(2803), - [anon_sym___inline__] = ACTIONS(2803), - [anon_sym___forceinline] = ACTIONS(2803), - [anon_sym_thread_local] = ACTIONS(2803), - [anon_sym___thread] = ACTIONS(2803), - [anon_sym_const] = ACTIONS(2803), - [anon_sym_constexpr] = ACTIONS(2803), - [anon_sym_volatile] = ACTIONS(2803), - [anon_sym_restrict] = ACTIONS(2803), - [anon_sym___restrict__] = ACTIONS(2803), - [anon_sym__Atomic] = ACTIONS(2803), - [anon_sym__Noreturn] = ACTIONS(2803), - [anon_sym_noreturn] = ACTIONS(2803), - [anon_sym__Nonnull] = ACTIONS(2803), - [anon_sym_mutable] = ACTIONS(2803), - [anon_sym_constinit] = ACTIONS(2803), - [anon_sym_consteval] = ACTIONS(2803), - [anon_sym_alignas] = ACTIONS(2803), - [anon_sym__Alignas] = ACTIONS(2803), - [sym_primitive_type] = ACTIONS(2803), - [anon_sym_enum] = ACTIONS(2803), - [anon_sym_class] = ACTIONS(2803), - [anon_sym_struct] = ACTIONS(2803), - [anon_sym_union] = ACTIONS(2803), - [anon_sym_if] = ACTIONS(2803), - [anon_sym_switch] = ACTIONS(2803), - [anon_sym_case] = ACTIONS(2803), - [anon_sym_default] = ACTIONS(2803), - [anon_sym_while] = ACTIONS(2803), - [anon_sym_do] = ACTIONS(2803), - [anon_sym_for] = ACTIONS(2803), - [anon_sym_return] = ACTIONS(2803), - [anon_sym_break] = ACTIONS(2803), - [anon_sym_continue] = ACTIONS(2803), - [anon_sym_goto] = ACTIONS(2803), - [anon_sym___try] = ACTIONS(2803), - [anon_sym___leave] = ACTIONS(2803), - [anon_sym_not] = ACTIONS(2803), - [anon_sym_compl] = ACTIONS(2803), - [anon_sym_DASH_DASH] = ACTIONS(2805), - [anon_sym_PLUS_PLUS] = ACTIONS(2805), - [anon_sym_sizeof] = ACTIONS(2803), - [anon_sym___alignof__] = ACTIONS(2803), - [anon_sym___alignof] = ACTIONS(2803), - [anon_sym__alignof] = ACTIONS(2803), - [anon_sym_alignof] = ACTIONS(2803), - [anon_sym__Alignof] = ACTIONS(2803), - [anon_sym_offsetof] = ACTIONS(2803), - [anon_sym__Generic] = ACTIONS(2803), - [anon_sym_asm] = ACTIONS(2803), - [anon_sym___asm__] = ACTIONS(2803), - [anon_sym___asm] = ACTIONS(2803), - [sym_number_literal] = ACTIONS(2805), - [anon_sym_L_SQUOTE] = ACTIONS(2805), - [anon_sym_u_SQUOTE] = ACTIONS(2805), - [anon_sym_U_SQUOTE] = ACTIONS(2805), - [anon_sym_u8_SQUOTE] = ACTIONS(2805), - [anon_sym_SQUOTE] = ACTIONS(2805), - [anon_sym_L_DQUOTE] = ACTIONS(2805), - [anon_sym_u_DQUOTE] = ACTIONS(2805), - [anon_sym_U_DQUOTE] = ACTIONS(2805), - [anon_sym_u8_DQUOTE] = ACTIONS(2805), - [anon_sym_DQUOTE] = ACTIONS(2805), - [sym_true] = ACTIONS(2803), - [sym_false] = ACTIONS(2803), - [anon_sym_NULL] = ACTIONS(2803), - [anon_sym_nullptr] = ACTIONS(2803), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2803), - [anon_sym_decltype] = ACTIONS(2803), - [anon_sym_explicit] = ACTIONS(2803), - [anon_sym_typename] = ACTIONS(2803), - [anon_sym_template] = ACTIONS(2803), - [anon_sym_operator] = ACTIONS(2803), - [anon_sym_try] = ACTIONS(2803), - [anon_sym_delete] = ACTIONS(2803), - [anon_sym_throw] = ACTIONS(2803), - [anon_sym_namespace] = ACTIONS(2803), - [anon_sym_static_assert] = ACTIONS(2803), - [anon_sym_concept] = ACTIONS(2803), - [anon_sym_co_return] = ACTIONS(2803), - [anon_sym_co_yield] = ACTIONS(2803), - [anon_sym_R_DQUOTE] = ACTIONS(2805), - [anon_sym_LR_DQUOTE] = ACTIONS(2805), - [anon_sym_uR_DQUOTE] = ACTIONS(2805), - [anon_sym_UR_DQUOTE] = ACTIONS(2805), - [anon_sym_u8R_DQUOTE] = ACTIONS(2805), - [anon_sym_co_await] = ACTIONS(2803), - [anon_sym_new] = ACTIONS(2803), - [anon_sym_requires] = ACTIONS(2803), - [sym_this] = ACTIONS(2803), - }, - [774] = { + [799] = { [sym_identifier] = ACTIONS(2807), [aux_sym_preproc_include_token1] = ACTIONS(2807), [aux_sym_preproc_def_token1] = ACTIONS(2807), [aux_sym_preproc_if_token1] = ACTIONS(2807), + [aux_sym_preproc_if_token2] = ACTIONS(2807), [aux_sym_preproc_ifdef_token1] = ACTIONS(2807), [aux_sym_preproc_ifdef_token2] = ACTIONS(2807), [sym_preproc_directive] = ACTIONS(2807), @@ -152373,7 +156101,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(2807), [anon_sym___vectorcall] = ACTIONS(2807), [anon_sym_LBRACE] = ACTIONS(2809), - [anon_sym_RBRACE] = ACTIONS(2809), [anon_sym_signed] = ACTIONS(2807), [anon_sym_unsigned] = ACTIONS(2807), [anon_sym_long] = ACTIONS(2807), @@ -152474,419 +156201,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2807), [sym_this] = ACTIONS(2807), }, - [775] = { - [sym_identifier] = ACTIONS(3319), - [aux_sym_preproc_include_token1] = ACTIONS(3319), - [aux_sym_preproc_def_token1] = ACTIONS(3319), - [aux_sym_preproc_if_token1] = ACTIONS(3319), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3319), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3319), - [sym_preproc_directive] = ACTIONS(3319), - [anon_sym_LPAREN2] = ACTIONS(3321), - [anon_sym_BANG] = ACTIONS(3321), - [anon_sym_TILDE] = ACTIONS(3321), - [anon_sym_DASH] = ACTIONS(3319), - [anon_sym_PLUS] = ACTIONS(3319), - [anon_sym_STAR] = ACTIONS(3321), - [anon_sym_AMP_AMP] = ACTIONS(3321), - [anon_sym_AMP] = ACTIONS(3319), - [anon_sym_SEMI] = ACTIONS(3321), - [anon_sym___extension__] = ACTIONS(3319), - [anon_sym_typedef] = ACTIONS(3319), - [anon_sym_virtual] = ACTIONS(3319), - [anon_sym_extern] = ACTIONS(3319), - [anon_sym___attribute__] = ACTIONS(3319), - [anon_sym___attribute] = ACTIONS(3319), - [anon_sym_using] = ACTIONS(3319), - [anon_sym_COLON_COLON] = ACTIONS(3321), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3321), - [anon_sym___declspec] = ACTIONS(3319), - [anon_sym___based] = ACTIONS(3319), - [anon_sym___cdecl] = ACTIONS(3319), - [anon_sym___clrcall] = ACTIONS(3319), - [anon_sym___stdcall] = ACTIONS(3319), - [anon_sym___fastcall] = ACTIONS(3319), - [anon_sym___thiscall] = ACTIONS(3319), - [anon_sym___vectorcall] = ACTIONS(3319), - [anon_sym_LBRACE] = ACTIONS(3321), - [anon_sym_RBRACE] = ACTIONS(3321), - [anon_sym_signed] = ACTIONS(3319), - [anon_sym_unsigned] = ACTIONS(3319), - [anon_sym_long] = ACTIONS(3319), - [anon_sym_short] = ACTIONS(3319), - [anon_sym_LBRACK] = ACTIONS(3319), - [anon_sym_static] = ACTIONS(3319), - [anon_sym_register] = ACTIONS(3319), - [anon_sym_inline] = ACTIONS(3319), - [anon_sym___inline] = ACTIONS(3319), - [anon_sym___inline__] = ACTIONS(3319), - [anon_sym___forceinline] = ACTIONS(3319), - [anon_sym_thread_local] = ACTIONS(3319), - [anon_sym___thread] = ACTIONS(3319), - [anon_sym_const] = ACTIONS(3319), - [anon_sym_constexpr] = ACTIONS(3319), - [anon_sym_volatile] = ACTIONS(3319), - [anon_sym_restrict] = ACTIONS(3319), - [anon_sym___restrict__] = ACTIONS(3319), - [anon_sym__Atomic] = ACTIONS(3319), - [anon_sym__Noreturn] = ACTIONS(3319), - [anon_sym_noreturn] = ACTIONS(3319), - [anon_sym__Nonnull] = ACTIONS(3319), - [anon_sym_mutable] = ACTIONS(3319), - [anon_sym_constinit] = ACTIONS(3319), - [anon_sym_consteval] = ACTIONS(3319), - [anon_sym_alignas] = ACTIONS(3319), - [anon_sym__Alignas] = ACTIONS(3319), - [sym_primitive_type] = ACTIONS(3319), - [anon_sym_enum] = ACTIONS(3319), - [anon_sym_class] = ACTIONS(3319), - [anon_sym_struct] = ACTIONS(3319), - [anon_sym_union] = ACTIONS(3319), - [anon_sym_if] = ACTIONS(3319), - [anon_sym_switch] = ACTIONS(3319), - [anon_sym_case] = ACTIONS(3319), - [anon_sym_default] = ACTIONS(3319), - [anon_sym_while] = ACTIONS(3319), - [anon_sym_do] = ACTIONS(3319), - [anon_sym_for] = ACTIONS(3319), - [anon_sym_return] = ACTIONS(3319), - [anon_sym_break] = ACTIONS(3319), - [anon_sym_continue] = ACTIONS(3319), - [anon_sym_goto] = ACTIONS(3319), - [anon_sym___try] = ACTIONS(3319), - [anon_sym___leave] = ACTIONS(3319), - [anon_sym_not] = ACTIONS(3319), - [anon_sym_compl] = ACTIONS(3319), - [anon_sym_DASH_DASH] = ACTIONS(3321), - [anon_sym_PLUS_PLUS] = ACTIONS(3321), - [anon_sym_sizeof] = ACTIONS(3319), - [anon_sym___alignof__] = ACTIONS(3319), - [anon_sym___alignof] = ACTIONS(3319), - [anon_sym__alignof] = ACTIONS(3319), - [anon_sym_alignof] = ACTIONS(3319), - [anon_sym__Alignof] = ACTIONS(3319), - [anon_sym_offsetof] = ACTIONS(3319), - [anon_sym__Generic] = ACTIONS(3319), - [anon_sym_asm] = ACTIONS(3319), - [anon_sym___asm__] = ACTIONS(3319), - [anon_sym___asm] = ACTIONS(3319), - [sym_number_literal] = ACTIONS(3321), - [anon_sym_L_SQUOTE] = ACTIONS(3321), - [anon_sym_u_SQUOTE] = ACTIONS(3321), - [anon_sym_U_SQUOTE] = ACTIONS(3321), - [anon_sym_u8_SQUOTE] = ACTIONS(3321), - [anon_sym_SQUOTE] = ACTIONS(3321), - [anon_sym_L_DQUOTE] = ACTIONS(3321), - [anon_sym_u_DQUOTE] = ACTIONS(3321), - [anon_sym_U_DQUOTE] = ACTIONS(3321), - [anon_sym_u8_DQUOTE] = ACTIONS(3321), - [anon_sym_DQUOTE] = ACTIONS(3321), - [sym_true] = ACTIONS(3319), - [sym_false] = ACTIONS(3319), - [anon_sym_NULL] = ACTIONS(3319), - [anon_sym_nullptr] = ACTIONS(3319), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3319), - [anon_sym_decltype] = ACTIONS(3319), - [anon_sym_explicit] = ACTIONS(3319), - [anon_sym_typename] = ACTIONS(3319), - [anon_sym_template] = ACTIONS(3319), - [anon_sym_operator] = ACTIONS(3319), - [anon_sym_try] = ACTIONS(3319), - [anon_sym_delete] = ACTIONS(3319), - [anon_sym_throw] = ACTIONS(3319), - [anon_sym_namespace] = ACTIONS(3319), - [anon_sym_static_assert] = ACTIONS(3319), - [anon_sym_concept] = ACTIONS(3319), - [anon_sym_co_return] = ACTIONS(3319), - [anon_sym_co_yield] = ACTIONS(3319), - [anon_sym_R_DQUOTE] = ACTIONS(3321), - [anon_sym_LR_DQUOTE] = ACTIONS(3321), - [anon_sym_uR_DQUOTE] = ACTIONS(3321), - [anon_sym_UR_DQUOTE] = ACTIONS(3321), - [anon_sym_u8R_DQUOTE] = ACTIONS(3321), - [anon_sym_co_await] = ACTIONS(3319), - [anon_sym_new] = ACTIONS(3319), - [anon_sym_requires] = ACTIONS(3319), - [sym_this] = ACTIONS(3319), - }, - [776] = { - [sym_identifier] = ACTIONS(3104), - [aux_sym_preproc_include_token1] = ACTIONS(3104), - [aux_sym_preproc_def_token1] = ACTIONS(3104), - [aux_sym_preproc_if_token1] = ACTIONS(3104), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3104), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3104), - [sym_preproc_directive] = ACTIONS(3104), - [anon_sym_LPAREN2] = ACTIONS(3106), - [anon_sym_BANG] = ACTIONS(3106), - [anon_sym_TILDE] = ACTIONS(3106), - [anon_sym_DASH] = ACTIONS(3104), - [anon_sym_PLUS] = ACTIONS(3104), - [anon_sym_STAR] = ACTIONS(3106), - [anon_sym_AMP_AMP] = ACTIONS(3106), - [anon_sym_AMP] = ACTIONS(3104), - [anon_sym_SEMI] = ACTIONS(3106), - [anon_sym___extension__] = ACTIONS(3104), - [anon_sym_typedef] = ACTIONS(3104), - [anon_sym_virtual] = ACTIONS(3104), - [anon_sym_extern] = ACTIONS(3104), - [anon_sym___attribute__] = ACTIONS(3104), - [anon_sym___attribute] = ACTIONS(3104), - [anon_sym_using] = ACTIONS(3104), - [anon_sym_COLON_COLON] = ACTIONS(3106), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3106), - [anon_sym___declspec] = ACTIONS(3104), - [anon_sym___based] = ACTIONS(3104), - [anon_sym___cdecl] = ACTIONS(3104), - [anon_sym___clrcall] = ACTIONS(3104), - [anon_sym___stdcall] = ACTIONS(3104), - [anon_sym___fastcall] = ACTIONS(3104), - [anon_sym___thiscall] = ACTIONS(3104), - [anon_sym___vectorcall] = ACTIONS(3104), - [anon_sym_LBRACE] = ACTIONS(3106), - [anon_sym_RBRACE] = ACTIONS(3106), - [anon_sym_signed] = ACTIONS(3104), - [anon_sym_unsigned] = ACTIONS(3104), - [anon_sym_long] = ACTIONS(3104), - [anon_sym_short] = ACTIONS(3104), - [anon_sym_LBRACK] = ACTIONS(3104), - [anon_sym_static] = ACTIONS(3104), - [anon_sym_register] = ACTIONS(3104), - [anon_sym_inline] = ACTIONS(3104), - [anon_sym___inline] = ACTIONS(3104), - [anon_sym___inline__] = ACTIONS(3104), - [anon_sym___forceinline] = ACTIONS(3104), - [anon_sym_thread_local] = ACTIONS(3104), - [anon_sym___thread] = ACTIONS(3104), - [anon_sym_const] = ACTIONS(3104), - [anon_sym_constexpr] = ACTIONS(3104), - [anon_sym_volatile] = ACTIONS(3104), - [anon_sym_restrict] = ACTIONS(3104), - [anon_sym___restrict__] = ACTIONS(3104), - [anon_sym__Atomic] = ACTIONS(3104), - [anon_sym__Noreturn] = ACTIONS(3104), - [anon_sym_noreturn] = ACTIONS(3104), - [anon_sym__Nonnull] = ACTIONS(3104), - [anon_sym_mutable] = ACTIONS(3104), - [anon_sym_constinit] = ACTIONS(3104), - [anon_sym_consteval] = ACTIONS(3104), - [anon_sym_alignas] = ACTIONS(3104), - [anon_sym__Alignas] = ACTIONS(3104), - [sym_primitive_type] = ACTIONS(3104), - [anon_sym_enum] = ACTIONS(3104), - [anon_sym_class] = ACTIONS(3104), - [anon_sym_struct] = ACTIONS(3104), - [anon_sym_union] = ACTIONS(3104), - [anon_sym_if] = ACTIONS(3104), - [anon_sym_switch] = ACTIONS(3104), - [anon_sym_case] = ACTIONS(3104), - [anon_sym_default] = ACTIONS(3104), - [anon_sym_while] = ACTIONS(3104), - [anon_sym_do] = ACTIONS(3104), - [anon_sym_for] = ACTIONS(3104), - [anon_sym_return] = ACTIONS(3104), - [anon_sym_break] = ACTIONS(3104), - [anon_sym_continue] = ACTIONS(3104), - [anon_sym_goto] = ACTIONS(3104), - [anon_sym___try] = ACTIONS(3104), - [anon_sym___leave] = ACTIONS(3104), - [anon_sym_not] = ACTIONS(3104), - [anon_sym_compl] = ACTIONS(3104), - [anon_sym_DASH_DASH] = ACTIONS(3106), - [anon_sym_PLUS_PLUS] = ACTIONS(3106), - [anon_sym_sizeof] = ACTIONS(3104), - [anon_sym___alignof__] = ACTIONS(3104), - [anon_sym___alignof] = ACTIONS(3104), - [anon_sym__alignof] = ACTIONS(3104), - [anon_sym_alignof] = ACTIONS(3104), - [anon_sym__Alignof] = ACTIONS(3104), - [anon_sym_offsetof] = ACTIONS(3104), - [anon_sym__Generic] = ACTIONS(3104), - [anon_sym_asm] = ACTIONS(3104), - [anon_sym___asm__] = ACTIONS(3104), - [anon_sym___asm] = ACTIONS(3104), - [sym_number_literal] = ACTIONS(3106), - [anon_sym_L_SQUOTE] = ACTIONS(3106), - [anon_sym_u_SQUOTE] = ACTIONS(3106), - [anon_sym_U_SQUOTE] = ACTIONS(3106), - [anon_sym_u8_SQUOTE] = ACTIONS(3106), - [anon_sym_SQUOTE] = ACTIONS(3106), - [anon_sym_L_DQUOTE] = ACTIONS(3106), - [anon_sym_u_DQUOTE] = ACTIONS(3106), - [anon_sym_U_DQUOTE] = ACTIONS(3106), - [anon_sym_u8_DQUOTE] = ACTIONS(3106), - [anon_sym_DQUOTE] = ACTIONS(3106), - [sym_true] = ACTIONS(3104), - [sym_false] = ACTIONS(3104), - [anon_sym_NULL] = ACTIONS(3104), - [anon_sym_nullptr] = ACTIONS(3104), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3104), - [anon_sym_decltype] = ACTIONS(3104), - [anon_sym_explicit] = ACTIONS(3104), - [anon_sym_typename] = ACTIONS(3104), - [anon_sym_template] = ACTIONS(3104), - [anon_sym_operator] = ACTIONS(3104), - [anon_sym_try] = ACTIONS(3104), - [anon_sym_delete] = ACTIONS(3104), - [anon_sym_throw] = ACTIONS(3104), - [anon_sym_namespace] = ACTIONS(3104), - [anon_sym_static_assert] = ACTIONS(3104), - [anon_sym_concept] = ACTIONS(3104), - [anon_sym_co_return] = ACTIONS(3104), - [anon_sym_co_yield] = ACTIONS(3104), - [anon_sym_R_DQUOTE] = ACTIONS(3106), - [anon_sym_LR_DQUOTE] = ACTIONS(3106), - [anon_sym_uR_DQUOTE] = ACTIONS(3106), - [anon_sym_UR_DQUOTE] = ACTIONS(3106), - [anon_sym_u8R_DQUOTE] = ACTIONS(3106), - [anon_sym_co_await] = ACTIONS(3104), - [anon_sym_new] = ACTIONS(3104), - [anon_sym_requires] = ACTIONS(3104), - [sym_this] = ACTIONS(3104), - }, - [777] = { - [sym_identifier] = ACTIONS(2811), - [aux_sym_preproc_include_token1] = ACTIONS(2811), - [aux_sym_preproc_def_token1] = ACTIONS(2811), - [aux_sym_preproc_if_token1] = ACTIONS(2811), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2811), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2811), - [sym_preproc_directive] = ACTIONS(2811), - [anon_sym_LPAREN2] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(2813), - [anon_sym_TILDE] = ACTIONS(2813), - [anon_sym_DASH] = ACTIONS(2811), - [anon_sym_PLUS] = ACTIONS(2811), - [anon_sym_STAR] = ACTIONS(2813), - [anon_sym_AMP_AMP] = ACTIONS(2813), - [anon_sym_AMP] = ACTIONS(2811), - [anon_sym_SEMI] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(2811), - [anon_sym_typedef] = ACTIONS(2811), - [anon_sym_virtual] = ACTIONS(2811), - [anon_sym_extern] = ACTIONS(2811), - [anon_sym___attribute__] = ACTIONS(2811), - [anon_sym___attribute] = ACTIONS(2811), - [anon_sym_using] = ACTIONS(2811), - [anon_sym_COLON_COLON] = ACTIONS(2813), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2813), - [anon_sym___declspec] = ACTIONS(2811), - [anon_sym___based] = ACTIONS(2811), - [anon_sym___cdecl] = ACTIONS(2811), - [anon_sym___clrcall] = ACTIONS(2811), - [anon_sym___stdcall] = ACTIONS(2811), - [anon_sym___fastcall] = ACTIONS(2811), - [anon_sym___thiscall] = ACTIONS(2811), - [anon_sym___vectorcall] = ACTIONS(2811), - [anon_sym_LBRACE] = ACTIONS(2813), - [anon_sym_RBRACE] = ACTIONS(2813), - [anon_sym_signed] = ACTIONS(2811), - [anon_sym_unsigned] = ACTIONS(2811), - [anon_sym_long] = ACTIONS(2811), - [anon_sym_short] = ACTIONS(2811), - [anon_sym_LBRACK] = ACTIONS(2811), - [anon_sym_static] = ACTIONS(2811), - [anon_sym_register] = ACTIONS(2811), - [anon_sym_inline] = ACTIONS(2811), - [anon_sym___inline] = ACTIONS(2811), - [anon_sym___inline__] = ACTIONS(2811), - [anon_sym___forceinline] = ACTIONS(2811), - [anon_sym_thread_local] = ACTIONS(2811), - [anon_sym___thread] = ACTIONS(2811), - [anon_sym_const] = ACTIONS(2811), - [anon_sym_constexpr] = ACTIONS(2811), - [anon_sym_volatile] = ACTIONS(2811), - [anon_sym_restrict] = ACTIONS(2811), - [anon_sym___restrict__] = ACTIONS(2811), - [anon_sym__Atomic] = ACTIONS(2811), - [anon_sym__Noreturn] = ACTIONS(2811), - [anon_sym_noreturn] = ACTIONS(2811), - [anon_sym__Nonnull] = ACTIONS(2811), - [anon_sym_mutable] = ACTIONS(2811), - [anon_sym_constinit] = ACTIONS(2811), - [anon_sym_consteval] = ACTIONS(2811), - [anon_sym_alignas] = ACTIONS(2811), - [anon_sym__Alignas] = ACTIONS(2811), - [sym_primitive_type] = ACTIONS(2811), - [anon_sym_enum] = ACTIONS(2811), - [anon_sym_class] = ACTIONS(2811), - [anon_sym_struct] = ACTIONS(2811), - [anon_sym_union] = ACTIONS(2811), - [anon_sym_if] = ACTIONS(2811), - [anon_sym_switch] = ACTIONS(2811), - [anon_sym_case] = ACTIONS(2811), - [anon_sym_default] = ACTIONS(2811), - [anon_sym_while] = ACTIONS(2811), - [anon_sym_do] = ACTIONS(2811), - [anon_sym_for] = ACTIONS(2811), - [anon_sym_return] = ACTIONS(2811), - [anon_sym_break] = ACTIONS(2811), - [anon_sym_continue] = ACTIONS(2811), - [anon_sym_goto] = ACTIONS(2811), - [anon_sym___try] = ACTIONS(2811), - [anon_sym___leave] = ACTIONS(2811), - [anon_sym_not] = ACTIONS(2811), - [anon_sym_compl] = ACTIONS(2811), - [anon_sym_DASH_DASH] = ACTIONS(2813), - [anon_sym_PLUS_PLUS] = ACTIONS(2813), - [anon_sym_sizeof] = ACTIONS(2811), - [anon_sym___alignof__] = ACTIONS(2811), - [anon_sym___alignof] = ACTIONS(2811), - [anon_sym__alignof] = ACTIONS(2811), - [anon_sym_alignof] = ACTIONS(2811), - [anon_sym__Alignof] = ACTIONS(2811), - [anon_sym_offsetof] = ACTIONS(2811), - [anon_sym__Generic] = ACTIONS(2811), - [anon_sym_asm] = ACTIONS(2811), - [anon_sym___asm__] = ACTIONS(2811), - [anon_sym___asm] = ACTIONS(2811), - [sym_number_literal] = ACTIONS(2813), - [anon_sym_L_SQUOTE] = ACTIONS(2813), - [anon_sym_u_SQUOTE] = ACTIONS(2813), - [anon_sym_U_SQUOTE] = ACTIONS(2813), - [anon_sym_u8_SQUOTE] = ACTIONS(2813), - [anon_sym_SQUOTE] = ACTIONS(2813), - [anon_sym_L_DQUOTE] = ACTIONS(2813), - [anon_sym_u_DQUOTE] = ACTIONS(2813), - [anon_sym_U_DQUOTE] = ACTIONS(2813), - [anon_sym_u8_DQUOTE] = ACTIONS(2813), - [anon_sym_DQUOTE] = ACTIONS(2813), - [sym_true] = ACTIONS(2811), - [sym_false] = ACTIONS(2811), - [anon_sym_NULL] = ACTIONS(2811), - [anon_sym_nullptr] = ACTIONS(2811), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2811), - [anon_sym_decltype] = ACTIONS(2811), - [anon_sym_explicit] = ACTIONS(2811), - [anon_sym_typename] = ACTIONS(2811), - [anon_sym_template] = ACTIONS(2811), - [anon_sym_operator] = ACTIONS(2811), - [anon_sym_try] = ACTIONS(2811), - [anon_sym_delete] = ACTIONS(2811), - [anon_sym_throw] = ACTIONS(2811), - [anon_sym_namespace] = ACTIONS(2811), - [anon_sym_static_assert] = ACTIONS(2811), - [anon_sym_concept] = ACTIONS(2811), - [anon_sym_co_return] = ACTIONS(2811), - [anon_sym_co_yield] = ACTIONS(2811), - [anon_sym_R_DQUOTE] = ACTIONS(2813), - [anon_sym_LR_DQUOTE] = ACTIONS(2813), - [anon_sym_uR_DQUOTE] = ACTIONS(2813), - [anon_sym_UR_DQUOTE] = ACTIONS(2813), - [anon_sym_u8R_DQUOTE] = ACTIONS(2813), - [anon_sym_co_await] = ACTIONS(2811), - [anon_sym_new] = ACTIONS(2811), - [anon_sym_requires] = ACTIONS(2811), - [sym_this] = ACTIONS(2811), - }, - [778] = { + [800] = { [sym_identifier] = ACTIONS(2815), [aux_sym_preproc_include_token1] = ACTIONS(2815), [aux_sym_preproc_def_token1] = ACTIONS(2815), [aux_sym_preproc_if_token1] = ACTIONS(2815), + [aux_sym_preproc_if_token2] = ACTIONS(2815), [aux_sym_preproc_ifdef_token1] = ACTIONS(2815), [aux_sym_preproc_ifdef_token2] = ACTIONS(2815), [sym_preproc_directive] = ACTIONS(2815), @@ -152917,7 +156237,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(2815), [anon_sym___vectorcall] = ACTIONS(2815), [anon_sym_LBRACE] = ACTIONS(2817), - [anon_sym_RBRACE] = ACTIONS(2817), [anon_sym_signed] = ACTIONS(2815), [anon_sym_unsigned] = ACTIONS(2815), [anon_sym_long] = ACTIONS(2815), @@ -153018,555 +156337,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2815), [sym_this] = ACTIONS(2815), }, - [779] = { - [sym_identifier] = ACTIONS(2819), - [aux_sym_preproc_include_token1] = ACTIONS(2819), - [aux_sym_preproc_def_token1] = ACTIONS(2819), - [aux_sym_preproc_if_token1] = ACTIONS(2819), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2819), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2819), - [sym_preproc_directive] = ACTIONS(2819), - [anon_sym_LPAREN2] = ACTIONS(2821), - [anon_sym_BANG] = ACTIONS(2821), - [anon_sym_TILDE] = ACTIONS(2821), - [anon_sym_DASH] = ACTIONS(2819), - [anon_sym_PLUS] = ACTIONS(2819), - [anon_sym_STAR] = ACTIONS(2821), - [anon_sym_AMP_AMP] = ACTIONS(2821), - [anon_sym_AMP] = ACTIONS(2819), - [anon_sym_SEMI] = ACTIONS(2821), - [anon_sym___extension__] = ACTIONS(2819), - [anon_sym_typedef] = ACTIONS(2819), - [anon_sym_virtual] = ACTIONS(2819), - [anon_sym_extern] = ACTIONS(2819), - [anon_sym___attribute__] = ACTIONS(2819), - [anon_sym___attribute] = ACTIONS(2819), - [anon_sym_using] = ACTIONS(2819), - [anon_sym_COLON_COLON] = ACTIONS(2821), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2821), - [anon_sym___declspec] = ACTIONS(2819), - [anon_sym___based] = ACTIONS(2819), - [anon_sym___cdecl] = ACTIONS(2819), - [anon_sym___clrcall] = ACTIONS(2819), - [anon_sym___stdcall] = ACTIONS(2819), - [anon_sym___fastcall] = ACTIONS(2819), - [anon_sym___thiscall] = ACTIONS(2819), - [anon_sym___vectorcall] = ACTIONS(2819), - [anon_sym_LBRACE] = ACTIONS(2821), - [anon_sym_RBRACE] = ACTIONS(2821), - [anon_sym_signed] = ACTIONS(2819), - [anon_sym_unsigned] = ACTIONS(2819), - [anon_sym_long] = ACTIONS(2819), - [anon_sym_short] = ACTIONS(2819), - [anon_sym_LBRACK] = ACTIONS(2819), - [anon_sym_static] = ACTIONS(2819), - [anon_sym_register] = ACTIONS(2819), - [anon_sym_inline] = ACTIONS(2819), - [anon_sym___inline] = ACTIONS(2819), - [anon_sym___inline__] = ACTIONS(2819), - [anon_sym___forceinline] = ACTIONS(2819), - [anon_sym_thread_local] = ACTIONS(2819), - [anon_sym___thread] = ACTIONS(2819), - [anon_sym_const] = ACTIONS(2819), - [anon_sym_constexpr] = ACTIONS(2819), - [anon_sym_volatile] = ACTIONS(2819), - [anon_sym_restrict] = ACTIONS(2819), - [anon_sym___restrict__] = ACTIONS(2819), - [anon_sym__Atomic] = ACTIONS(2819), - [anon_sym__Noreturn] = ACTIONS(2819), - [anon_sym_noreturn] = ACTIONS(2819), - [anon_sym__Nonnull] = ACTIONS(2819), - [anon_sym_mutable] = ACTIONS(2819), - [anon_sym_constinit] = ACTIONS(2819), - [anon_sym_consteval] = ACTIONS(2819), - [anon_sym_alignas] = ACTIONS(2819), - [anon_sym__Alignas] = ACTIONS(2819), - [sym_primitive_type] = ACTIONS(2819), - [anon_sym_enum] = ACTIONS(2819), - [anon_sym_class] = ACTIONS(2819), - [anon_sym_struct] = ACTIONS(2819), - [anon_sym_union] = ACTIONS(2819), - [anon_sym_if] = ACTIONS(2819), - [anon_sym_switch] = ACTIONS(2819), - [anon_sym_case] = ACTIONS(2819), - [anon_sym_default] = ACTIONS(2819), - [anon_sym_while] = ACTIONS(2819), - [anon_sym_do] = ACTIONS(2819), - [anon_sym_for] = ACTIONS(2819), - [anon_sym_return] = ACTIONS(2819), - [anon_sym_break] = ACTIONS(2819), - [anon_sym_continue] = ACTIONS(2819), - [anon_sym_goto] = ACTIONS(2819), - [anon_sym___try] = ACTIONS(2819), - [anon_sym___leave] = ACTIONS(2819), - [anon_sym_not] = ACTIONS(2819), - [anon_sym_compl] = ACTIONS(2819), - [anon_sym_DASH_DASH] = ACTIONS(2821), - [anon_sym_PLUS_PLUS] = ACTIONS(2821), - [anon_sym_sizeof] = ACTIONS(2819), - [anon_sym___alignof__] = ACTIONS(2819), - [anon_sym___alignof] = ACTIONS(2819), - [anon_sym__alignof] = ACTIONS(2819), - [anon_sym_alignof] = ACTIONS(2819), - [anon_sym__Alignof] = ACTIONS(2819), - [anon_sym_offsetof] = ACTIONS(2819), - [anon_sym__Generic] = ACTIONS(2819), - [anon_sym_asm] = ACTIONS(2819), - [anon_sym___asm__] = ACTIONS(2819), - [anon_sym___asm] = ACTIONS(2819), - [sym_number_literal] = ACTIONS(2821), - [anon_sym_L_SQUOTE] = ACTIONS(2821), - [anon_sym_u_SQUOTE] = ACTIONS(2821), - [anon_sym_U_SQUOTE] = ACTIONS(2821), - [anon_sym_u8_SQUOTE] = ACTIONS(2821), - [anon_sym_SQUOTE] = ACTIONS(2821), - [anon_sym_L_DQUOTE] = ACTIONS(2821), - [anon_sym_u_DQUOTE] = ACTIONS(2821), - [anon_sym_U_DQUOTE] = ACTIONS(2821), - [anon_sym_u8_DQUOTE] = ACTIONS(2821), - [anon_sym_DQUOTE] = ACTIONS(2821), - [sym_true] = ACTIONS(2819), - [sym_false] = ACTIONS(2819), - [anon_sym_NULL] = ACTIONS(2819), - [anon_sym_nullptr] = ACTIONS(2819), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2819), - [anon_sym_decltype] = ACTIONS(2819), - [anon_sym_explicit] = ACTIONS(2819), - [anon_sym_typename] = ACTIONS(2819), - [anon_sym_template] = ACTIONS(2819), - [anon_sym_operator] = ACTIONS(2819), - [anon_sym_try] = ACTIONS(2819), - [anon_sym_delete] = ACTIONS(2819), - [anon_sym_throw] = ACTIONS(2819), - [anon_sym_namespace] = ACTIONS(2819), - [anon_sym_static_assert] = ACTIONS(2819), - [anon_sym_concept] = ACTIONS(2819), - [anon_sym_co_return] = ACTIONS(2819), - [anon_sym_co_yield] = ACTIONS(2819), - [anon_sym_R_DQUOTE] = ACTIONS(2821), - [anon_sym_LR_DQUOTE] = ACTIONS(2821), - [anon_sym_uR_DQUOTE] = ACTIONS(2821), - [anon_sym_UR_DQUOTE] = ACTIONS(2821), - [anon_sym_u8R_DQUOTE] = ACTIONS(2821), - [anon_sym_co_await] = ACTIONS(2819), - [anon_sym_new] = ACTIONS(2819), - [anon_sym_requires] = ACTIONS(2819), - [sym_this] = ACTIONS(2819), - }, - [780] = { - [sym_identifier] = ACTIONS(3108), - [aux_sym_preproc_include_token1] = ACTIONS(3108), - [aux_sym_preproc_def_token1] = ACTIONS(3108), - [aux_sym_preproc_if_token1] = ACTIONS(3108), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3108), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3108), - [sym_preproc_directive] = ACTIONS(3108), - [anon_sym_LPAREN2] = ACTIONS(3110), - [anon_sym_BANG] = ACTIONS(3110), - [anon_sym_TILDE] = ACTIONS(3110), - [anon_sym_DASH] = ACTIONS(3108), - [anon_sym_PLUS] = ACTIONS(3108), - [anon_sym_STAR] = ACTIONS(3110), - [anon_sym_AMP_AMP] = ACTIONS(3110), - [anon_sym_AMP] = ACTIONS(3108), - [anon_sym_SEMI] = ACTIONS(3110), - [anon_sym___extension__] = ACTIONS(3108), - [anon_sym_typedef] = ACTIONS(3108), - [anon_sym_virtual] = ACTIONS(3108), - [anon_sym_extern] = ACTIONS(3108), - [anon_sym___attribute__] = ACTIONS(3108), - [anon_sym___attribute] = ACTIONS(3108), - [anon_sym_using] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(3110), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3110), - [anon_sym___declspec] = ACTIONS(3108), - [anon_sym___based] = ACTIONS(3108), - [anon_sym___cdecl] = ACTIONS(3108), - [anon_sym___clrcall] = ACTIONS(3108), - [anon_sym___stdcall] = ACTIONS(3108), - [anon_sym___fastcall] = ACTIONS(3108), - [anon_sym___thiscall] = ACTIONS(3108), - [anon_sym___vectorcall] = ACTIONS(3108), - [anon_sym_LBRACE] = ACTIONS(3110), - [anon_sym_RBRACE] = ACTIONS(3110), - [anon_sym_signed] = ACTIONS(3108), - [anon_sym_unsigned] = ACTIONS(3108), - [anon_sym_long] = ACTIONS(3108), - [anon_sym_short] = ACTIONS(3108), - [anon_sym_LBRACK] = ACTIONS(3108), - [anon_sym_static] = ACTIONS(3108), - [anon_sym_register] = ACTIONS(3108), - [anon_sym_inline] = ACTIONS(3108), - [anon_sym___inline] = ACTIONS(3108), - [anon_sym___inline__] = ACTIONS(3108), - [anon_sym___forceinline] = ACTIONS(3108), - [anon_sym_thread_local] = ACTIONS(3108), - [anon_sym___thread] = ACTIONS(3108), - [anon_sym_const] = ACTIONS(3108), - [anon_sym_constexpr] = ACTIONS(3108), - [anon_sym_volatile] = ACTIONS(3108), - [anon_sym_restrict] = ACTIONS(3108), - [anon_sym___restrict__] = ACTIONS(3108), - [anon_sym__Atomic] = ACTIONS(3108), - [anon_sym__Noreturn] = ACTIONS(3108), - [anon_sym_noreturn] = ACTIONS(3108), - [anon_sym__Nonnull] = ACTIONS(3108), - [anon_sym_mutable] = ACTIONS(3108), - [anon_sym_constinit] = ACTIONS(3108), - [anon_sym_consteval] = ACTIONS(3108), - [anon_sym_alignas] = ACTIONS(3108), - [anon_sym__Alignas] = ACTIONS(3108), - [sym_primitive_type] = ACTIONS(3108), - [anon_sym_enum] = ACTIONS(3108), - [anon_sym_class] = ACTIONS(3108), - [anon_sym_struct] = ACTIONS(3108), - [anon_sym_union] = ACTIONS(3108), - [anon_sym_if] = ACTIONS(3108), - [anon_sym_switch] = ACTIONS(3108), - [anon_sym_case] = ACTIONS(3108), - [anon_sym_default] = ACTIONS(3108), - [anon_sym_while] = ACTIONS(3108), - [anon_sym_do] = ACTIONS(3108), - [anon_sym_for] = ACTIONS(3108), - [anon_sym_return] = ACTIONS(3108), - [anon_sym_break] = ACTIONS(3108), - [anon_sym_continue] = ACTIONS(3108), - [anon_sym_goto] = ACTIONS(3108), - [anon_sym___try] = ACTIONS(3108), - [anon_sym___leave] = ACTIONS(3108), - [anon_sym_not] = ACTIONS(3108), - [anon_sym_compl] = ACTIONS(3108), - [anon_sym_DASH_DASH] = ACTIONS(3110), - [anon_sym_PLUS_PLUS] = ACTIONS(3110), - [anon_sym_sizeof] = ACTIONS(3108), - [anon_sym___alignof__] = ACTIONS(3108), - [anon_sym___alignof] = ACTIONS(3108), - [anon_sym__alignof] = ACTIONS(3108), - [anon_sym_alignof] = ACTIONS(3108), - [anon_sym__Alignof] = ACTIONS(3108), - [anon_sym_offsetof] = ACTIONS(3108), - [anon_sym__Generic] = ACTIONS(3108), - [anon_sym_asm] = ACTIONS(3108), - [anon_sym___asm__] = ACTIONS(3108), - [anon_sym___asm] = ACTIONS(3108), - [sym_number_literal] = ACTIONS(3110), - [anon_sym_L_SQUOTE] = ACTIONS(3110), - [anon_sym_u_SQUOTE] = ACTIONS(3110), - [anon_sym_U_SQUOTE] = ACTIONS(3110), - [anon_sym_u8_SQUOTE] = ACTIONS(3110), - [anon_sym_SQUOTE] = ACTIONS(3110), - [anon_sym_L_DQUOTE] = ACTIONS(3110), - [anon_sym_u_DQUOTE] = ACTIONS(3110), - [anon_sym_U_DQUOTE] = ACTIONS(3110), - [anon_sym_u8_DQUOTE] = ACTIONS(3110), - [anon_sym_DQUOTE] = ACTIONS(3110), - [sym_true] = ACTIONS(3108), - [sym_false] = ACTIONS(3108), - [anon_sym_NULL] = ACTIONS(3108), - [anon_sym_nullptr] = ACTIONS(3108), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3108), - [anon_sym_decltype] = ACTIONS(3108), - [anon_sym_explicit] = ACTIONS(3108), - [anon_sym_typename] = ACTIONS(3108), - [anon_sym_template] = ACTIONS(3108), - [anon_sym_operator] = ACTIONS(3108), - [anon_sym_try] = ACTIONS(3108), - [anon_sym_delete] = ACTIONS(3108), - [anon_sym_throw] = ACTIONS(3108), - [anon_sym_namespace] = ACTIONS(3108), - [anon_sym_static_assert] = ACTIONS(3108), - [anon_sym_concept] = ACTIONS(3108), - [anon_sym_co_return] = ACTIONS(3108), - [anon_sym_co_yield] = ACTIONS(3108), - [anon_sym_R_DQUOTE] = ACTIONS(3110), - [anon_sym_LR_DQUOTE] = ACTIONS(3110), - [anon_sym_uR_DQUOTE] = ACTIONS(3110), - [anon_sym_UR_DQUOTE] = ACTIONS(3110), - [anon_sym_u8R_DQUOTE] = ACTIONS(3110), - [anon_sym_co_await] = ACTIONS(3108), - [anon_sym_new] = ACTIONS(3108), - [anon_sym_requires] = ACTIONS(3108), - [sym_this] = ACTIONS(3108), - }, - [781] = { - [sym_identifier] = ACTIONS(3112), - [aux_sym_preproc_include_token1] = ACTIONS(3112), - [aux_sym_preproc_def_token1] = ACTIONS(3112), - [aux_sym_preproc_if_token1] = ACTIONS(3112), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3112), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3112), - [sym_preproc_directive] = ACTIONS(3112), - [anon_sym_LPAREN2] = ACTIONS(3114), - [anon_sym_BANG] = ACTIONS(3114), - [anon_sym_TILDE] = ACTIONS(3114), - [anon_sym_DASH] = ACTIONS(3112), - [anon_sym_PLUS] = ACTIONS(3112), - [anon_sym_STAR] = ACTIONS(3114), - [anon_sym_AMP_AMP] = ACTIONS(3114), - [anon_sym_AMP] = ACTIONS(3112), - [anon_sym_SEMI] = ACTIONS(3114), - [anon_sym___extension__] = ACTIONS(3112), - [anon_sym_typedef] = ACTIONS(3112), - [anon_sym_virtual] = ACTIONS(3112), - [anon_sym_extern] = ACTIONS(3112), - [anon_sym___attribute__] = ACTIONS(3112), - [anon_sym___attribute] = ACTIONS(3112), - [anon_sym_using] = ACTIONS(3112), - [anon_sym_COLON_COLON] = ACTIONS(3114), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3114), - [anon_sym___declspec] = ACTIONS(3112), - [anon_sym___based] = ACTIONS(3112), - [anon_sym___cdecl] = ACTIONS(3112), - [anon_sym___clrcall] = ACTIONS(3112), - [anon_sym___stdcall] = ACTIONS(3112), - [anon_sym___fastcall] = ACTIONS(3112), - [anon_sym___thiscall] = ACTIONS(3112), - [anon_sym___vectorcall] = ACTIONS(3112), - [anon_sym_LBRACE] = ACTIONS(3114), - [anon_sym_RBRACE] = ACTIONS(3114), - [anon_sym_signed] = ACTIONS(3112), - [anon_sym_unsigned] = ACTIONS(3112), - [anon_sym_long] = ACTIONS(3112), - [anon_sym_short] = ACTIONS(3112), - [anon_sym_LBRACK] = ACTIONS(3112), - [anon_sym_static] = ACTIONS(3112), - [anon_sym_register] = ACTIONS(3112), - [anon_sym_inline] = ACTIONS(3112), - [anon_sym___inline] = ACTIONS(3112), - [anon_sym___inline__] = ACTIONS(3112), - [anon_sym___forceinline] = ACTIONS(3112), - [anon_sym_thread_local] = ACTIONS(3112), - [anon_sym___thread] = ACTIONS(3112), - [anon_sym_const] = ACTIONS(3112), - [anon_sym_constexpr] = ACTIONS(3112), - [anon_sym_volatile] = ACTIONS(3112), - [anon_sym_restrict] = ACTIONS(3112), - [anon_sym___restrict__] = ACTIONS(3112), - [anon_sym__Atomic] = ACTIONS(3112), - [anon_sym__Noreturn] = ACTIONS(3112), - [anon_sym_noreturn] = ACTIONS(3112), - [anon_sym__Nonnull] = ACTIONS(3112), - [anon_sym_mutable] = ACTIONS(3112), - [anon_sym_constinit] = ACTIONS(3112), - [anon_sym_consteval] = ACTIONS(3112), - [anon_sym_alignas] = ACTIONS(3112), - [anon_sym__Alignas] = ACTIONS(3112), - [sym_primitive_type] = ACTIONS(3112), - [anon_sym_enum] = ACTIONS(3112), - [anon_sym_class] = ACTIONS(3112), - [anon_sym_struct] = ACTIONS(3112), - [anon_sym_union] = ACTIONS(3112), - [anon_sym_if] = ACTIONS(3112), - [anon_sym_switch] = ACTIONS(3112), - [anon_sym_case] = ACTIONS(3112), - [anon_sym_default] = ACTIONS(3112), - [anon_sym_while] = ACTIONS(3112), - [anon_sym_do] = ACTIONS(3112), - [anon_sym_for] = ACTIONS(3112), - [anon_sym_return] = ACTIONS(3112), - [anon_sym_break] = ACTIONS(3112), - [anon_sym_continue] = ACTIONS(3112), - [anon_sym_goto] = ACTIONS(3112), - [anon_sym___try] = ACTIONS(3112), - [anon_sym___leave] = ACTIONS(3112), - [anon_sym_not] = ACTIONS(3112), - [anon_sym_compl] = ACTIONS(3112), - [anon_sym_DASH_DASH] = ACTIONS(3114), - [anon_sym_PLUS_PLUS] = ACTIONS(3114), - [anon_sym_sizeof] = ACTIONS(3112), - [anon_sym___alignof__] = ACTIONS(3112), - [anon_sym___alignof] = ACTIONS(3112), - [anon_sym__alignof] = ACTIONS(3112), - [anon_sym_alignof] = ACTIONS(3112), - [anon_sym__Alignof] = ACTIONS(3112), - [anon_sym_offsetof] = ACTIONS(3112), - [anon_sym__Generic] = ACTIONS(3112), - [anon_sym_asm] = ACTIONS(3112), - [anon_sym___asm__] = ACTIONS(3112), - [anon_sym___asm] = ACTIONS(3112), - [sym_number_literal] = ACTIONS(3114), - [anon_sym_L_SQUOTE] = ACTIONS(3114), - [anon_sym_u_SQUOTE] = ACTIONS(3114), - [anon_sym_U_SQUOTE] = ACTIONS(3114), - [anon_sym_u8_SQUOTE] = ACTIONS(3114), - [anon_sym_SQUOTE] = ACTIONS(3114), - [anon_sym_L_DQUOTE] = ACTIONS(3114), - [anon_sym_u_DQUOTE] = ACTIONS(3114), - [anon_sym_U_DQUOTE] = ACTIONS(3114), - [anon_sym_u8_DQUOTE] = ACTIONS(3114), - [anon_sym_DQUOTE] = ACTIONS(3114), - [sym_true] = ACTIONS(3112), - [sym_false] = ACTIONS(3112), - [anon_sym_NULL] = ACTIONS(3112), - [anon_sym_nullptr] = ACTIONS(3112), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3112), - [anon_sym_decltype] = ACTIONS(3112), - [anon_sym_explicit] = ACTIONS(3112), - [anon_sym_typename] = ACTIONS(3112), - [anon_sym_template] = ACTIONS(3112), - [anon_sym_operator] = ACTIONS(3112), - [anon_sym_try] = ACTIONS(3112), - [anon_sym_delete] = ACTIONS(3112), - [anon_sym_throw] = ACTIONS(3112), - [anon_sym_namespace] = ACTIONS(3112), - [anon_sym_static_assert] = ACTIONS(3112), - [anon_sym_concept] = ACTIONS(3112), - [anon_sym_co_return] = ACTIONS(3112), - [anon_sym_co_yield] = ACTIONS(3112), - [anon_sym_R_DQUOTE] = ACTIONS(3114), - [anon_sym_LR_DQUOTE] = ACTIONS(3114), - [anon_sym_uR_DQUOTE] = ACTIONS(3114), - [anon_sym_UR_DQUOTE] = ACTIONS(3114), - [anon_sym_u8R_DQUOTE] = ACTIONS(3114), - [anon_sym_co_await] = ACTIONS(3112), - [anon_sym_new] = ACTIONS(3112), - [anon_sym_requires] = ACTIONS(3112), - [sym_this] = ACTIONS(3112), - }, - [782] = { - [sym_identifier] = ACTIONS(3313), - [aux_sym_preproc_include_token1] = ACTIONS(3313), - [aux_sym_preproc_def_token1] = ACTIONS(3313), - [aux_sym_preproc_if_token1] = ACTIONS(3313), - [aux_sym_preproc_if_token2] = ACTIONS(3313), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3313), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3313), - [sym_preproc_directive] = ACTIONS(3313), - [anon_sym_LPAREN2] = ACTIONS(3316), - [anon_sym_BANG] = ACTIONS(3316), - [anon_sym_TILDE] = ACTIONS(3316), - [anon_sym_DASH] = ACTIONS(3313), - [anon_sym_PLUS] = ACTIONS(3313), - [anon_sym_STAR] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_AMP] = ACTIONS(3313), - [anon_sym_SEMI] = ACTIONS(3316), - [anon_sym___extension__] = ACTIONS(3313), - [anon_sym_typedef] = ACTIONS(3313), - [anon_sym_virtual] = ACTIONS(3313), - [anon_sym_extern] = ACTIONS(3313), - [anon_sym___attribute__] = ACTIONS(3313), - [anon_sym___attribute] = ACTIONS(3313), - [anon_sym_using] = ACTIONS(3313), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3316), - [anon_sym___declspec] = ACTIONS(3313), - [anon_sym___based] = ACTIONS(3313), - [anon_sym___cdecl] = ACTIONS(3313), - [anon_sym___clrcall] = ACTIONS(3313), - [anon_sym___stdcall] = ACTIONS(3313), - [anon_sym___fastcall] = ACTIONS(3313), - [anon_sym___thiscall] = ACTIONS(3313), - [anon_sym___vectorcall] = ACTIONS(3313), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_signed] = ACTIONS(3313), - [anon_sym_unsigned] = ACTIONS(3313), - [anon_sym_long] = ACTIONS(3313), - [anon_sym_short] = ACTIONS(3313), - [anon_sym_LBRACK] = ACTIONS(3313), - [anon_sym_static] = ACTIONS(3313), - [anon_sym_register] = ACTIONS(3313), - [anon_sym_inline] = ACTIONS(3313), - [anon_sym___inline] = ACTIONS(3313), - [anon_sym___inline__] = ACTIONS(3313), - [anon_sym___forceinline] = ACTIONS(3313), - [anon_sym_thread_local] = ACTIONS(3313), - [anon_sym___thread] = ACTIONS(3313), - [anon_sym_const] = ACTIONS(3313), - [anon_sym_constexpr] = ACTIONS(3313), - [anon_sym_volatile] = ACTIONS(3313), - [anon_sym_restrict] = ACTIONS(3313), - [anon_sym___restrict__] = ACTIONS(3313), - [anon_sym__Atomic] = ACTIONS(3313), - [anon_sym__Noreturn] = ACTIONS(3313), - [anon_sym_noreturn] = ACTIONS(3313), - [anon_sym__Nonnull] = ACTIONS(3313), - [anon_sym_mutable] = ACTIONS(3313), - [anon_sym_constinit] = ACTIONS(3313), - [anon_sym_consteval] = ACTIONS(3313), - [anon_sym_alignas] = ACTIONS(3313), - [anon_sym__Alignas] = ACTIONS(3313), - [sym_primitive_type] = ACTIONS(3313), - [anon_sym_enum] = ACTIONS(3313), - [anon_sym_class] = ACTIONS(3313), - [anon_sym_struct] = ACTIONS(3313), - [anon_sym_union] = ACTIONS(3313), - [anon_sym_if] = ACTIONS(3313), - [anon_sym_switch] = ACTIONS(3313), - [anon_sym_case] = ACTIONS(3313), - [anon_sym_default] = ACTIONS(3313), - [anon_sym_while] = ACTIONS(3313), - [anon_sym_do] = ACTIONS(3313), - [anon_sym_for] = ACTIONS(3313), - [anon_sym_return] = ACTIONS(3313), - [anon_sym_break] = ACTIONS(3313), - [anon_sym_continue] = ACTIONS(3313), - [anon_sym_goto] = ACTIONS(3313), - [anon_sym___try] = ACTIONS(3313), - [anon_sym___leave] = ACTIONS(3313), - [anon_sym_not] = ACTIONS(3313), - [anon_sym_compl] = ACTIONS(3313), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_sizeof] = ACTIONS(3313), - [anon_sym___alignof__] = ACTIONS(3313), - [anon_sym___alignof] = ACTIONS(3313), - [anon_sym__alignof] = ACTIONS(3313), - [anon_sym_alignof] = ACTIONS(3313), - [anon_sym__Alignof] = ACTIONS(3313), - [anon_sym_offsetof] = ACTIONS(3313), - [anon_sym__Generic] = ACTIONS(3313), - [anon_sym_asm] = ACTIONS(3313), - [anon_sym___asm__] = ACTIONS(3313), - [anon_sym___asm] = ACTIONS(3313), - [sym_number_literal] = ACTIONS(3316), - [anon_sym_L_SQUOTE] = ACTIONS(3316), - [anon_sym_u_SQUOTE] = ACTIONS(3316), - [anon_sym_U_SQUOTE] = ACTIONS(3316), - [anon_sym_u8_SQUOTE] = ACTIONS(3316), - [anon_sym_SQUOTE] = ACTIONS(3316), - [anon_sym_L_DQUOTE] = ACTIONS(3316), - [anon_sym_u_DQUOTE] = ACTIONS(3316), - [anon_sym_U_DQUOTE] = ACTIONS(3316), - [anon_sym_u8_DQUOTE] = ACTIONS(3316), - [anon_sym_DQUOTE] = ACTIONS(3316), - [sym_true] = ACTIONS(3313), - [sym_false] = ACTIONS(3313), - [anon_sym_NULL] = ACTIONS(3313), - [anon_sym_nullptr] = ACTIONS(3313), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3313), - [anon_sym_decltype] = ACTIONS(3313), - [anon_sym_explicit] = ACTIONS(3313), - [anon_sym_typename] = ACTIONS(3313), - [anon_sym_template] = ACTIONS(3313), - [anon_sym_operator] = ACTIONS(3313), - [anon_sym_try] = ACTIONS(3313), - [anon_sym_delete] = ACTIONS(3313), - [anon_sym_throw] = ACTIONS(3313), - [anon_sym_namespace] = ACTIONS(3313), - [anon_sym_static_assert] = ACTIONS(3313), - [anon_sym_concept] = ACTIONS(3313), - [anon_sym_co_return] = ACTIONS(3313), - [anon_sym_co_yield] = ACTIONS(3313), - [anon_sym_R_DQUOTE] = ACTIONS(3316), - [anon_sym_LR_DQUOTE] = ACTIONS(3316), - [anon_sym_uR_DQUOTE] = ACTIONS(3316), - [anon_sym_UR_DQUOTE] = ACTIONS(3316), - [anon_sym_u8R_DQUOTE] = ACTIONS(3316), - [anon_sym_co_await] = ACTIONS(3313), - [anon_sym_new] = ACTIONS(3313), - [anon_sym_requires] = ACTIONS(3313), - [sym_this] = ACTIONS(3313), - }, - [783] = { + [801] = { [sym_identifier] = ACTIONS(2823), [aux_sym_preproc_include_token1] = ACTIONS(2823), [aux_sym_preproc_def_token1] = ACTIONS(2823), [aux_sym_preproc_if_token1] = ACTIONS(2823), + [aux_sym_preproc_if_token2] = ACTIONS(2823), [aux_sym_preproc_ifdef_token1] = ACTIONS(2823), [aux_sym_preproc_ifdef_token2] = ACTIONS(2823), [sym_preproc_directive] = ACTIONS(2823), @@ -153597,7 +156373,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(2823), [anon_sym___vectorcall] = ACTIONS(2823), [anon_sym_LBRACE] = ACTIONS(2825), - [anon_sym_RBRACE] = ACTIONS(2825), [anon_sym_signed] = ACTIONS(2823), [anon_sym_unsigned] = ACTIONS(2823), [anon_sym_long] = ACTIONS(2823), @@ -153630,623 +156405,352 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(2823), [anon_sym_struct] = ACTIONS(2823), [anon_sym_union] = ACTIONS(2823), - [anon_sym_if] = ACTIONS(2823), - [anon_sym_switch] = ACTIONS(2823), - [anon_sym_case] = ACTIONS(2823), - [anon_sym_default] = ACTIONS(2823), - [anon_sym_while] = ACTIONS(2823), - [anon_sym_do] = ACTIONS(2823), - [anon_sym_for] = ACTIONS(2823), - [anon_sym_return] = ACTIONS(2823), - [anon_sym_break] = ACTIONS(2823), - [anon_sym_continue] = ACTIONS(2823), - [anon_sym_goto] = ACTIONS(2823), - [anon_sym___try] = ACTIONS(2823), - [anon_sym___leave] = ACTIONS(2823), - [anon_sym_not] = ACTIONS(2823), - [anon_sym_compl] = ACTIONS(2823), - [anon_sym_DASH_DASH] = ACTIONS(2825), - [anon_sym_PLUS_PLUS] = ACTIONS(2825), - [anon_sym_sizeof] = ACTIONS(2823), - [anon_sym___alignof__] = ACTIONS(2823), - [anon_sym___alignof] = ACTIONS(2823), - [anon_sym__alignof] = ACTIONS(2823), - [anon_sym_alignof] = ACTIONS(2823), - [anon_sym__Alignof] = ACTIONS(2823), - [anon_sym_offsetof] = ACTIONS(2823), - [anon_sym__Generic] = ACTIONS(2823), - [anon_sym_asm] = ACTIONS(2823), - [anon_sym___asm__] = ACTIONS(2823), - [anon_sym___asm] = ACTIONS(2823), - [sym_number_literal] = ACTIONS(2825), - [anon_sym_L_SQUOTE] = ACTIONS(2825), - [anon_sym_u_SQUOTE] = ACTIONS(2825), - [anon_sym_U_SQUOTE] = ACTIONS(2825), - [anon_sym_u8_SQUOTE] = ACTIONS(2825), - [anon_sym_SQUOTE] = ACTIONS(2825), - [anon_sym_L_DQUOTE] = ACTIONS(2825), - [anon_sym_u_DQUOTE] = ACTIONS(2825), - [anon_sym_U_DQUOTE] = ACTIONS(2825), - [anon_sym_u8_DQUOTE] = ACTIONS(2825), - [anon_sym_DQUOTE] = ACTIONS(2825), - [sym_true] = ACTIONS(2823), - [sym_false] = ACTIONS(2823), - [anon_sym_NULL] = ACTIONS(2823), - [anon_sym_nullptr] = ACTIONS(2823), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2823), - [anon_sym_decltype] = ACTIONS(2823), - [anon_sym_explicit] = ACTIONS(2823), - [anon_sym_typename] = ACTIONS(2823), - [anon_sym_template] = ACTIONS(2823), - [anon_sym_operator] = ACTIONS(2823), - [anon_sym_try] = ACTIONS(2823), - [anon_sym_delete] = ACTIONS(2823), - [anon_sym_throw] = ACTIONS(2823), - [anon_sym_namespace] = ACTIONS(2823), - [anon_sym_static_assert] = ACTIONS(2823), - [anon_sym_concept] = ACTIONS(2823), - [anon_sym_co_return] = ACTIONS(2823), - [anon_sym_co_yield] = ACTIONS(2823), - [anon_sym_R_DQUOTE] = ACTIONS(2825), - [anon_sym_LR_DQUOTE] = ACTIONS(2825), - [anon_sym_uR_DQUOTE] = ACTIONS(2825), - [anon_sym_UR_DQUOTE] = ACTIONS(2825), - [anon_sym_u8R_DQUOTE] = ACTIONS(2825), - [anon_sym_co_await] = ACTIONS(2823), - [anon_sym_new] = ACTIONS(2823), - [anon_sym_requires] = ACTIONS(2823), - [sym_this] = ACTIONS(2823), - }, - [784] = { - [sym_identifier] = ACTIONS(2827), - [aux_sym_preproc_include_token1] = ACTIONS(2827), - [aux_sym_preproc_def_token1] = ACTIONS(2827), - [aux_sym_preproc_if_token1] = ACTIONS(2827), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2827), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2827), - [sym_preproc_directive] = ACTIONS(2827), - [anon_sym_LPAREN2] = ACTIONS(2829), - [anon_sym_BANG] = ACTIONS(2829), - [anon_sym_TILDE] = ACTIONS(2829), - [anon_sym_DASH] = ACTIONS(2827), - [anon_sym_PLUS] = ACTIONS(2827), - [anon_sym_STAR] = ACTIONS(2829), - [anon_sym_AMP_AMP] = ACTIONS(2829), - [anon_sym_AMP] = ACTIONS(2827), - [anon_sym_SEMI] = ACTIONS(2829), - [anon_sym___extension__] = ACTIONS(2827), - [anon_sym_typedef] = ACTIONS(2827), - [anon_sym_virtual] = ACTIONS(2827), - [anon_sym_extern] = ACTIONS(2827), - [anon_sym___attribute__] = ACTIONS(2827), - [anon_sym___attribute] = ACTIONS(2827), - [anon_sym_using] = ACTIONS(2827), - [anon_sym_COLON_COLON] = ACTIONS(2829), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2829), - [anon_sym___declspec] = ACTIONS(2827), - [anon_sym___based] = ACTIONS(2827), - [anon_sym___cdecl] = ACTIONS(2827), - [anon_sym___clrcall] = ACTIONS(2827), - [anon_sym___stdcall] = ACTIONS(2827), - [anon_sym___fastcall] = ACTIONS(2827), - [anon_sym___thiscall] = ACTIONS(2827), - [anon_sym___vectorcall] = ACTIONS(2827), - [anon_sym_LBRACE] = ACTIONS(2829), - [anon_sym_RBRACE] = ACTIONS(2829), - [anon_sym_signed] = ACTIONS(2827), - [anon_sym_unsigned] = ACTIONS(2827), - [anon_sym_long] = ACTIONS(2827), - [anon_sym_short] = ACTIONS(2827), - [anon_sym_LBRACK] = ACTIONS(2827), - [anon_sym_static] = ACTIONS(2827), - [anon_sym_register] = ACTIONS(2827), - [anon_sym_inline] = ACTIONS(2827), - [anon_sym___inline] = ACTIONS(2827), - [anon_sym___inline__] = ACTIONS(2827), - [anon_sym___forceinline] = ACTIONS(2827), - [anon_sym_thread_local] = ACTIONS(2827), - [anon_sym___thread] = ACTIONS(2827), - [anon_sym_const] = ACTIONS(2827), - [anon_sym_constexpr] = ACTIONS(2827), - [anon_sym_volatile] = ACTIONS(2827), - [anon_sym_restrict] = ACTIONS(2827), - [anon_sym___restrict__] = ACTIONS(2827), - [anon_sym__Atomic] = ACTIONS(2827), - [anon_sym__Noreturn] = ACTIONS(2827), - [anon_sym_noreturn] = ACTIONS(2827), - [anon_sym__Nonnull] = ACTIONS(2827), - [anon_sym_mutable] = ACTIONS(2827), - [anon_sym_constinit] = ACTIONS(2827), - [anon_sym_consteval] = ACTIONS(2827), - [anon_sym_alignas] = ACTIONS(2827), - [anon_sym__Alignas] = ACTIONS(2827), - [sym_primitive_type] = ACTIONS(2827), - [anon_sym_enum] = ACTIONS(2827), - [anon_sym_class] = ACTIONS(2827), - [anon_sym_struct] = ACTIONS(2827), - [anon_sym_union] = ACTIONS(2827), - [anon_sym_if] = ACTIONS(2827), - [anon_sym_switch] = ACTIONS(2827), - [anon_sym_case] = ACTIONS(2827), - [anon_sym_default] = ACTIONS(2827), - [anon_sym_while] = ACTIONS(2827), - [anon_sym_do] = ACTIONS(2827), - [anon_sym_for] = ACTIONS(2827), - [anon_sym_return] = ACTIONS(2827), - [anon_sym_break] = ACTIONS(2827), - [anon_sym_continue] = ACTIONS(2827), - [anon_sym_goto] = ACTIONS(2827), - [anon_sym___try] = ACTIONS(2827), - [anon_sym___leave] = ACTIONS(2827), - [anon_sym_not] = ACTIONS(2827), - [anon_sym_compl] = ACTIONS(2827), - [anon_sym_DASH_DASH] = ACTIONS(2829), - [anon_sym_PLUS_PLUS] = ACTIONS(2829), - [anon_sym_sizeof] = ACTIONS(2827), - [anon_sym___alignof__] = ACTIONS(2827), - [anon_sym___alignof] = ACTIONS(2827), - [anon_sym__alignof] = ACTIONS(2827), - [anon_sym_alignof] = ACTIONS(2827), - [anon_sym__Alignof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2827), - [anon_sym__Generic] = ACTIONS(2827), - [anon_sym_asm] = ACTIONS(2827), - [anon_sym___asm__] = ACTIONS(2827), - [anon_sym___asm] = ACTIONS(2827), - [sym_number_literal] = ACTIONS(2829), - [anon_sym_L_SQUOTE] = ACTIONS(2829), - [anon_sym_u_SQUOTE] = ACTIONS(2829), - [anon_sym_U_SQUOTE] = ACTIONS(2829), - [anon_sym_u8_SQUOTE] = ACTIONS(2829), - [anon_sym_SQUOTE] = ACTIONS(2829), - [anon_sym_L_DQUOTE] = ACTIONS(2829), - [anon_sym_u_DQUOTE] = ACTIONS(2829), - [anon_sym_U_DQUOTE] = ACTIONS(2829), - [anon_sym_u8_DQUOTE] = ACTIONS(2829), - [anon_sym_DQUOTE] = ACTIONS(2829), - [sym_true] = ACTIONS(2827), - [sym_false] = ACTIONS(2827), - [anon_sym_NULL] = ACTIONS(2827), - [anon_sym_nullptr] = ACTIONS(2827), + [anon_sym_if] = ACTIONS(2823), + [anon_sym_switch] = ACTIONS(2823), + [anon_sym_case] = ACTIONS(2823), + [anon_sym_default] = ACTIONS(2823), + [anon_sym_while] = ACTIONS(2823), + [anon_sym_do] = ACTIONS(2823), + [anon_sym_for] = ACTIONS(2823), + [anon_sym_return] = ACTIONS(2823), + [anon_sym_break] = ACTIONS(2823), + [anon_sym_continue] = ACTIONS(2823), + [anon_sym_goto] = ACTIONS(2823), + [anon_sym___try] = ACTIONS(2823), + [anon_sym___leave] = ACTIONS(2823), + [anon_sym_not] = ACTIONS(2823), + [anon_sym_compl] = ACTIONS(2823), + [anon_sym_DASH_DASH] = ACTIONS(2825), + [anon_sym_PLUS_PLUS] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2823), + [anon_sym___alignof__] = ACTIONS(2823), + [anon_sym___alignof] = ACTIONS(2823), + [anon_sym__alignof] = ACTIONS(2823), + [anon_sym_alignof] = ACTIONS(2823), + [anon_sym__Alignof] = ACTIONS(2823), + [anon_sym_offsetof] = ACTIONS(2823), + [anon_sym__Generic] = ACTIONS(2823), + [anon_sym_asm] = ACTIONS(2823), + [anon_sym___asm__] = ACTIONS(2823), + [anon_sym___asm] = ACTIONS(2823), + [sym_number_literal] = ACTIONS(2825), + [anon_sym_L_SQUOTE] = ACTIONS(2825), + [anon_sym_u_SQUOTE] = ACTIONS(2825), + [anon_sym_U_SQUOTE] = ACTIONS(2825), + [anon_sym_u8_SQUOTE] = ACTIONS(2825), + [anon_sym_SQUOTE] = ACTIONS(2825), + [anon_sym_L_DQUOTE] = ACTIONS(2825), + [anon_sym_u_DQUOTE] = ACTIONS(2825), + [anon_sym_U_DQUOTE] = ACTIONS(2825), + [anon_sym_u8_DQUOTE] = ACTIONS(2825), + [anon_sym_DQUOTE] = ACTIONS(2825), + [sym_true] = ACTIONS(2823), + [sym_false] = ACTIONS(2823), + [anon_sym_NULL] = ACTIONS(2823), + [anon_sym_nullptr] = ACTIONS(2823), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2827), - [anon_sym_decltype] = ACTIONS(2827), - [anon_sym_explicit] = ACTIONS(2827), - [anon_sym_typename] = ACTIONS(2827), - [anon_sym_template] = ACTIONS(2827), - [anon_sym_operator] = ACTIONS(2827), - [anon_sym_try] = ACTIONS(2827), - [anon_sym_delete] = ACTIONS(2827), - [anon_sym_throw] = ACTIONS(2827), - [anon_sym_namespace] = ACTIONS(2827), - [anon_sym_static_assert] = ACTIONS(2827), - [anon_sym_concept] = ACTIONS(2827), - [anon_sym_co_return] = ACTIONS(2827), - [anon_sym_co_yield] = ACTIONS(2827), - [anon_sym_R_DQUOTE] = ACTIONS(2829), - [anon_sym_LR_DQUOTE] = ACTIONS(2829), - [anon_sym_uR_DQUOTE] = ACTIONS(2829), - [anon_sym_UR_DQUOTE] = ACTIONS(2829), - [anon_sym_u8R_DQUOTE] = ACTIONS(2829), - [anon_sym_co_await] = ACTIONS(2827), - [anon_sym_new] = ACTIONS(2827), - [anon_sym_requires] = ACTIONS(2827), - [sym_this] = ACTIONS(2827), + [sym_auto] = ACTIONS(2823), + [anon_sym_decltype] = ACTIONS(2823), + [anon_sym_explicit] = ACTIONS(2823), + [anon_sym_typename] = ACTIONS(2823), + [anon_sym_template] = ACTIONS(2823), + [anon_sym_operator] = ACTIONS(2823), + [anon_sym_try] = ACTIONS(2823), + [anon_sym_delete] = ACTIONS(2823), + [anon_sym_throw] = ACTIONS(2823), + [anon_sym_namespace] = ACTIONS(2823), + [anon_sym_static_assert] = ACTIONS(2823), + [anon_sym_concept] = ACTIONS(2823), + [anon_sym_co_return] = ACTIONS(2823), + [anon_sym_co_yield] = ACTIONS(2823), + [anon_sym_R_DQUOTE] = ACTIONS(2825), + [anon_sym_LR_DQUOTE] = ACTIONS(2825), + [anon_sym_uR_DQUOTE] = ACTIONS(2825), + [anon_sym_UR_DQUOTE] = ACTIONS(2825), + [anon_sym_u8R_DQUOTE] = ACTIONS(2825), + [anon_sym_co_await] = ACTIONS(2823), + [anon_sym_new] = ACTIONS(2823), + [anon_sym_requires] = ACTIONS(2823), + [sym_this] = ACTIONS(2823), }, - [785] = { - [sym_identifier] = ACTIONS(2819), - [aux_sym_preproc_include_token1] = ACTIONS(2819), - [aux_sym_preproc_def_token1] = ACTIONS(2819), - [aux_sym_preproc_if_token1] = ACTIONS(2819), - [aux_sym_preproc_if_token2] = ACTIONS(2819), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2819), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2819), - [sym_preproc_directive] = ACTIONS(2819), - [anon_sym_LPAREN2] = ACTIONS(2821), - [anon_sym_BANG] = ACTIONS(2821), - [anon_sym_TILDE] = ACTIONS(2821), - [anon_sym_DASH] = ACTIONS(2819), - [anon_sym_PLUS] = ACTIONS(2819), - [anon_sym_STAR] = ACTIONS(2821), - [anon_sym_AMP_AMP] = ACTIONS(2821), - [anon_sym_AMP] = ACTIONS(2819), - [anon_sym_SEMI] = ACTIONS(2821), - [anon_sym___extension__] = ACTIONS(2819), - [anon_sym_typedef] = ACTIONS(2819), - [anon_sym_virtual] = ACTIONS(2819), - [anon_sym_extern] = ACTIONS(2819), - [anon_sym___attribute__] = ACTIONS(2819), - [anon_sym___attribute] = ACTIONS(2819), - [anon_sym_using] = ACTIONS(2819), - [anon_sym_COLON_COLON] = ACTIONS(2821), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2821), - [anon_sym___declspec] = ACTIONS(2819), - [anon_sym___based] = ACTIONS(2819), - [anon_sym___cdecl] = ACTIONS(2819), - [anon_sym___clrcall] = ACTIONS(2819), - [anon_sym___stdcall] = ACTIONS(2819), - [anon_sym___fastcall] = ACTIONS(2819), - [anon_sym___thiscall] = ACTIONS(2819), - [anon_sym___vectorcall] = ACTIONS(2819), - [anon_sym_LBRACE] = ACTIONS(2821), - [anon_sym_signed] = ACTIONS(2819), - [anon_sym_unsigned] = ACTIONS(2819), - [anon_sym_long] = ACTIONS(2819), - [anon_sym_short] = ACTIONS(2819), - [anon_sym_LBRACK] = ACTIONS(2819), - [anon_sym_static] = ACTIONS(2819), - [anon_sym_register] = ACTIONS(2819), - [anon_sym_inline] = ACTIONS(2819), - [anon_sym___inline] = ACTIONS(2819), - [anon_sym___inline__] = ACTIONS(2819), - [anon_sym___forceinline] = ACTIONS(2819), - [anon_sym_thread_local] = ACTIONS(2819), - [anon_sym___thread] = ACTIONS(2819), - [anon_sym_const] = ACTIONS(2819), - [anon_sym_constexpr] = ACTIONS(2819), - [anon_sym_volatile] = ACTIONS(2819), - [anon_sym_restrict] = ACTIONS(2819), - [anon_sym___restrict__] = ACTIONS(2819), - [anon_sym__Atomic] = ACTIONS(2819), - [anon_sym__Noreturn] = ACTIONS(2819), - [anon_sym_noreturn] = ACTIONS(2819), - [anon_sym__Nonnull] = ACTIONS(2819), - [anon_sym_mutable] = ACTIONS(2819), - [anon_sym_constinit] = ACTIONS(2819), - [anon_sym_consteval] = ACTIONS(2819), - [anon_sym_alignas] = ACTIONS(2819), - [anon_sym__Alignas] = ACTIONS(2819), - [sym_primitive_type] = ACTIONS(2819), - [anon_sym_enum] = ACTIONS(2819), - [anon_sym_class] = ACTIONS(2819), - [anon_sym_struct] = ACTIONS(2819), - [anon_sym_union] = ACTIONS(2819), - [anon_sym_if] = ACTIONS(2819), - [anon_sym_switch] = ACTIONS(2819), - [anon_sym_case] = ACTIONS(2819), - [anon_sym_default] = ACTIONS(2819), - [anon_sym_while] = ACTIONS(2819), - [anon_sym_do] = ACTIONS(2819), - [anon_sym_for] = ACTIONS(2819), - [anon_sym_return] = ACTIONS(2819), - [anon_sym_break] = ACTIONS(2819), - [anon_sym_continue] = ACTIONS(2819), - [anon_sym_goto] = ACTIONS(2819), - [anon_sym___try] = ACTIONS(2819), - [anon_sym___leave] = ACTIONS(2819), - [anon_sym_not] = ACTIONS(2819), - [anon_sym_compl] = ACTIONS(2819), - [anon_sym_DASH_DASH] = ACTIONS(2821), - [anon_sym_PLUS_PLUS] = ACTIONS(2821), - [anon_sym_sizeof] = ACTIONS(2819), - [anon_sym___alignof__] = ACTIONS(2819), - [anon_sym___alignof] = ACTIONS(2819), - [anon_sym__alignof] = ACTIONS(2819), - [anon_sym_alignof] = ACTIONS(2819), - [anon_sym__Alignof] = ACTIONS(2819), - [anon_sym_offsetof] = ACTIONS(2819), - [anon_sym__Generic] = ACTIONS(2819), - [anon_sym_asm] = ACTIONS(2819), - [anon_sym___asm__] = ACTIONS(2819), - [anon_sym___asm] = ACTIONS(2819), - [sym_number_literal] = ACTIONS(2821), - [anon_sym_L_SQUOTE] = ACTIONS(2821), - [anon_sym_u_SQUOTE] = ACTIONS(2821), - [anon_sym_U_SQUOTE] = ACTIONS(2821), - [anon_sym_u8_SQUOTE] = ACTIONS(2821), - [anon_sym_SQUOTE] = ACTIONS(2821), - [anon_sym_L_DQUOTE] = ACTIONS(2821), - [anon_sym_u_DQUOTE] = ACTIONS(2821), - [anon_sym_U_DQUOTE] = ACTIONS(2821), - [anon_sym_u8_DQUOTE] = ACTIONS(2821), - [anon_sym_DQUOTE] = ACTIONS(2821), - [sym_true] = ACTIONS(2819), - [sym_false] = ACTIONS(2819), - [anon_sym_NULL] = ACTIONS(2819), - [anon_sym_nullptr] = ACTIONS(2819), + [802] = { + [sym_identifier] = ACTIONS(2859), + [aux_sym_preproc_include_token1] = ACTIONS(2859), + [aux_sym_preproc_def_token1] = ACTIONS(2859), + [aux_sym_preproc_if_token1] = ACTIONS(2859), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), + [sym_preproc_directive] = ACTIONS(2859), + [anon_sym_LPAREN2] = ACTIONS(2861), + [anon_sym_BANG] = ACTIONS(2861), + [anon_sym_TILDE] = ACTIONS(2861), + [anon_sym_DASH] = ACTIONS(2859), + [anon_sym_PLUS] = ACTIONS(2859), + [anon_sym_STAR] = ACTIONS(2861), + [anon_sym_AMP_AMP] = ACTIONS(2861), + [anon_sym_AMP] = ACTIONS(2859), + [anon_sym_SEMI] = ACTIONS(2861), + [anon_sym___extension__] = ACTIONS(2859), + [anon_sym_typedef] = ACTIONS(2859), + [anon_sym_virtual] = ACTIONS(2859), + [anon_sym_extern] = ACTIONS(2859), + [anon_sym___attribute__] = ACTIONS(2859), + [anon_sym___attribute] = ACTIONS(2859), + [anon_sym_using] = ACTIONS(2859), + [anon_sym_COLON_COLON] = ACTIONS(2861), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), + [anon_sym___declspec] = ACTIONS(2859), + [anon_sym___based] = ACTIONS(2859), + [anon_sym___cdecl] = ACTIONS(2859), + [anon_sym___clrcall] = ACTIONS(2859), + [anon_sym___stdcall] = ACTIONS(2859), + [anon_sym___fastcall] = ACTIONS(2859), + [anon_sym___thiscall] = ACTIONS(2859), + [anon_sym___vectorcall] = ACTIONS(2859), + [anon_sym_LBRACE] = ACTIONS(2861), + [anon_sym_RBRACE] = ACTIONS(2861), + [anon_sym_signed] = ACTIONS(2859), + [anon_sym_unsigned] = ACTIONS(2859), + [anon_sym_long] = ACTIONS(2859), + [anon_sym_short] = ACTIONS(2859), + [anon_sym_LBRACK] = ACTIONS(2859), + [anon_sym_static] = ACTIONS(2859), + [anon_sym_register] = ACTIONS(2859), + [anon_sym_inline] = ACTIONS(2859), + [anon_sym___inline] = ACTIONS(2859), + [anon_sym___inline__] = ACTIONS(2859), + [anon_sym___forceinline] = ACTIONS(2859), + [anon_sym_thread_local] = ACTIONS(2859), + [anon_sym___thread] = ACTIONS(2859), + [anon_sym_const] = ACTIONS(2859), + [anon_sym_constexpr] = ACTIONS(2859), + [anon_sym_volatile] = ACTIONS(2859), + [anon_sym_restrict] = ACTIONS(2859), + [anon_sym___restrict__] = ACTIONS(2859), + [anon_sym__Atomic] = ACTIONS(2859), + [anon_sym__Noreturn] = ACTIONS(2859), + [anon_sym_noreturn] = ACTIONS(2859), + [anon_sym__Nonnull] = ACTIONS(2859), + [anon_sym_mutable] = ACTIONS(2859), + [anon_sym_constinit] = ACTIONS(2859), + [anon_sym_consteval] = ACTIONS(2859), + [anon_sym_alignas] = ACTIONS(2859), + [anon_sym__Alignas] = ACTIONS(2859), + [sym_primitive_type] = ACTIONS(2859), + [anon_sym_enum] = ACTIONS(2859), + [anon_sym_class] = ACTIONS(2859), + [anon_sym_struct] = ACTIONS(2859), + [anon_sym_union] = ACTIONS(2859), + [anon_sym_if] = ACTIONS(2859), + [anon_sym_switch] = ACTIONS(2859), + [anon_sym_case] = ACTIONS(2859), + [anon_sym_default] = ACTIONS(2859), + [anon_sym_while] = ACTIONS(2859), + [anon_sym_do] = ACTIONS(2859), + [anon_sym_for] = ACTIONS(2859), + [anon_sym_return] = ACTIONS(2859), + [anon_sym_break] = ACTIONS(2859), + [anon_sym_continue] = ACTIONS(2859), + [anon_sym_goto] = ACTIONS(2859), + [anon_sym___try] = ACTIONS(2859), + [anon_sym___leave] = ACTIONS(2859), + [anon_sym_not] = ACTIONS(2859), + [anon_sym_compl] = ACTIONS(2859), + [anon_sym_DASH_DASH] = ACTIONS(2861), + [anon_sym_PLUS_PLUS] = ACTIONS(2861), + [anon_sym_sizeof] = ACTIONS(2859), + [anon_sym___alignof__] = ACTIONS(2859), + [anon_sym___alignof] = ACTIONS(2859), + [anon_sym__alignof] = ACTIONS(2859), + [anon_sym_alignof] = ACTIONS(2859), + [anon_sym__Alignof] = ACTIONS(2859), + [anon_sym_offsetof] = ACTIONS(2859), + [anon_sym__Generic] = ACTIONS(2859), + [anon_sym_asm] = ACTIONS(2859), + [anon_sym___asm__] = ACTIONS(2859), + [anon_sym___asm] = ACTIONS(2859), + [sym_number_literal] = ACTIONS(2861), + [anon_sym_L_SQUOTE] = ACTIONS(2861), + [anon_sym_u_SQUOTE] = ACTIONS(2861), + [anon_sym_U_SQUOTE] = ACTIONS(2861), + [anon_sym_u8_SQUOTE] = ACTIONS(2861), + [anon_sym_SQUOTE] = ACTIONS(2861), + [anon_sym_L_DQUOTE] = ACTIONS(2861), + [anon_sym_u_DQUOTE] = ACTIONS(2861), + [anon_sym_U_DQUOTE] = ACTIONS(2861), + [anon_sym_u8_DQUOTE] = ACTIONS(2861), + [anon_sym_DQUOTE] = ACTIONS(2861), + [sym_true] = ACTIONS(2859), + [sym_false] = ACTIONS(2859), + [anon_sym_NULL] = ACTIONS(2859), + [anon_sym_nullptr] = ACTIONS(2859), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2819), - [anon_sym_decltype] = ACTIONS(2819), - [anon_sym_explicit] = ACTIONS(2819), - [anon_sym_typename] = ACTIONS(2819), - [anon_sym_template] = ACTIONS(2819), - [anon_sym_operator] = ACTIONS(2819), - [anon_sym_try] = ACTIONS(2819), - [anon_sym_delete] = ACTIONS(2819), - [anon_sym_throw] = ACTIONS(2819), - [anon_sym_namespace] = ACTIONS(2819), - [anon_sym_static_assert] = ACTIONS(2819), - [anon_sym_concept] = ACTIONS(2819), - [anon_sym_co_return] = ACTIONS(2819), - [anon_sym_co_yield] = ACTIONS(2819), - [anon_sym_R_DQUOTE] = ACTIONS(2821), - [anon_sym_LR_DQUOTE] = ACTIONS(2821), - [anon_sym_uR_DQUOTE] = ACTIONS(2821), - [anon_sym_UR_DQUOTE] = ACTIONS(2821), - [anon_sym_u8R_DQUOTE] = ACTIONS(2821), - [anon_sym_co_await] = ACTIONS(2819), - [anon_sym_new] = ACTIONS(2819), - [anon_sym_requires] = ACTIONS(2819), - [sym_this] = ACTIONS(2819), - }, - [786] = { - [sym_identifier] = ACTIONS(3100), - [aux_sym_preproc_include_token1] = ACTIONS(3100), - [aux_sym_preproc_def_token1] = ACTIONS(3100), - [aux_sym_preproc_if_token1] = ACTIONS(3100), - [aux_sym_preproc_if_token2] = ACTIONS(3100), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3100), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3100), - [sym_preproc_directive] = ACTIONS(3100), - [anon_sym_LPAREN2] = ACTIONS(3102), - [anon_sym_BANG] = ACTIONS(3102), - [anon_sym_TILDE] = ACTIONS(3102), - [anon_sym_DASH] = ACTIONS(3100), - [anon_sym_PLUS] = ACTIONS(3100), - [anon_sym_STAR] = ACTIONS(3102), - [anon_sym_AMP_AMP] = ACTIONS(3102), - [anon_sym_AMP] = ACTIONS(3100), - [anon_sym_SEMI] = ACTIONS(3102), - [anon_sym___extension__] = ACTIONS(3100), - [anon_sym_typedef] = ACTIONS(3100), - [anon_sym_virtual] = ACTIONS(3100), - [anon_sym_extern] = ACTIONS(3100), - [anon_sym___attribute__] = ACTIONS(3100), - [anon_sym___attribute] = ACTIONS(3100), - [anon_sym_using] = ACTIONS(3100), - [anon_sym_COLON_COLON] = ACTIONS(3102), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3102), - [anon_sym___declspec] = ACTIONS(3100), - [anon_sym___based] = ACTIONS(3100), - [anon_sym___cdecl] = ACTIONS(3100), - [anon_sym___clrcall] = ACTIONS(3100), - [anon_sym___stdcall] = ACTIONS(3100), - [anon_sym___fastcall] = ACTIONS(3100), - [anon_sym___thiscall] = ACTIONS(3100), - [anon_sym___vectorcall] = ACTIONS(3100), - [anon_sym_LBRACE] = ACTIONS(3102), - [anon_sym_signed] = ACTIONS(3100), - [anon_sym_unsigned] = ACTIONS(3100), - [anon_sym_long] = ACTIONS(3100), - [anon_sym_short] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(3100), - [anon_sym_static] = ACTIONS(3100), - [anon_sym_register] = ACTIONS(3100), - [anon_sym_inline] = ACTIONS(3100), - [anon_sym___inline] = ACTIONS(3100), - [anon_sym___inline__] = ACTIONS(3100), - [anon_sym___forceinline] = ACTIONS(3100), - [anon_sym_thread_local] = ACTIONS(3100), - [anon_sym___thread] = ACTIONS(3100), - [anon_sym_const] = ACTIONS(3100), - [anon_sym_constexpr] = ACTIONS(3100), - [anon_sym_volatile] = ACTIONS(3100), - [anon_sym_restrict] = ACTIONS(3100), - [anon_sym___restrict__] = ACTIONS(3100), - [anon_sym__Atomic] = ACTIONS(3100), - [anon_sym__Noreturn] = ACTIONS(3100), - [anon_sym_noreturn] = ACTIONS(3100), - [anon_sym__Nonnull] = ACTIONS(3100), - [anon_sym_mutable] = ACTIONS(3100), - [anon_sym_constinit] = ACTIONS(3100), - [anon_sym_consteval] = ACTIONS(3100), - [anon_sym_alignas] = ACTIONS(3100), - [anon_sym__Alignas] = ACTIONS(3100), - [sym_primitive_type] = ACTIONS(3100), - [anon_sym_enum] = ACTIONS(3100), - [anon_sym_class] = ACTIONS(3100), - [anon_sym_struct] = ACTIONS(3100), - [anon_sym_union] = ACTIONS(3100), - [anon_sym_if] = ACTIONS(3100), - [anon_sym_switch] = ACTIONS(3100), - [anon_sym_case] = ACTIONS(3100), - [anon_sym_default] = ACTIONS(3100), - [anon_sym_while] = ACTIONS(3100), - [anon_sym_do] = ACTIONS(3100), - [anon_sym_for] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3100), - [anon_sym_break] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(3100), - [anon_sym_goto] = ACTIONS(3100), - [anon_sym___try] = ACTIONS(3100), - [anon_sym___leave] = ACTIONS(3100), - [anon_sym_not] = ACTIONS(3100), - [anon_sym_compl] = ACTIONS(3100), - [anon_sym_DASH_DASH] = ACTIONS(3102), - [anon_sym_PLUS_PLUS] = ACTIONS(3102), - [anon_sym_sizeof] = ACTIONS(3100), - [anon_sym___alignof__] = ACTIONS(3100), - [anon_sym___alignof] = ACTIONS(3100), - [anon_sym__alignof] = ACTIONS(3100), - [anon_sym_alignof] = ACTIONS(3100), - [anon_sym__Alignof] = ACTIONS(3100), - [anon_sym_offsetof] = ACTIONS(3100), - [anon_sym__Generic] = ACTIONS(3100), - [anon_sym_asm] = ACTIONS(3100), - [anon_sym___asm__] = ACTIONS(3100), - [anon_sym___asm] = ACTIONS(3100), - [sym_number_literal] = ACTIONS(3102), - [anon_sym_L_SQUOTE] = ACTIONS(3102), - [anon_sym_u_SQUOTE] = ACTIONS(3102), - [anon_sym_U_SQUOTE] = ACTIONS(3102), - [anon_sym_u8_SQUOTE] = ACTIONS(3102), - [anon_sym_SQUOTE] = ACTIONS(3102), - [anon_sym_L_DQUOTE] = ACTIONS(3102), - [anon_sym_u_DQUOTE] = ACTIONS(3102), - [anon_sym_U_DQUOTE] = ACTIONS(3102), - [anon_sym_u8_DQUOTE] = ACTIONS(3102), - [anon_sym_DQUOTE] = ACTIONS(3102), - [sym_true] = ACTIONS(3100), - [sym_false] = ACTIONS(3100), - [anon_sym_NULL] = ACTIONS(3100), - [anon_sym_nullptr] = ACTIONS(3100), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3100), - [anon_sym_decltype] = ACTIONS(3100), - [anon_sym_explicit] = ACTIONS(3100), - [anon_sym_typename] = ACTIONS(3100), - [anon_sym_template] = ACTIONS(3100), - [anon_sym_operator] = ACTIONS(3100), - [anon_sym_try] = ACTIONS(3100), - [anon_sym_delete] = ACTIONS(3100), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_namespace] = ACTIONS(3100), - [anon_sym_static_assert] = ACTIONS(3100), - [anon_sym_concept] = ACTIONS(3100), - [anon_sym_co_return] = ACTIONS(3100), - [anon_sym_co_yield] = ACTIONS(3100), - [anon_sym_R_DQUOTE] = ACTIONS(3102), - [anon_sym_LR_DQUOTE] = ACTIONS(3102), - [anon_sym_uR_DQUOTE] = ACTIONS(3102), - [anon_sym_UR_DQUOTE] = ACTIONS(3102), - [anon_sym_u8R_DQUOTE] = ACTIONS(3102), - [anon_sym_co_await] = ACTIONS(3100), - [anon_sym_new] = ACTIONS(3100), - [anon_sym_requires] = ACTIONS(3100), - [sym_this] = ACTIONS(3100), + [sym_auto] = ACTIONS(2859), + [anon_sym_decltype] = ACTIONS(2859), + [anon_sym_explicit] = ACTIONS(2859), + [anon_sym_typename] = ACTIONS(2859), + [anon_sym_template] = ACTIONS(2859), + [anon_sym_operator] = ACTIONS(2859), + [anon_sym_try] = ACTIONS(2859), + [anon_sym_delete] = ACTIONS(2859), + [anon_sym_throw] = ACTIONS(2859), + [anon_sym_namespace] = ACTIONS(2859), + [anon_sym_static_assert] = ACTIONS(2859), + [anon_sym_concept] = ACTIONS(2859), + [anon_sym_co_return] = ACTIONS(2859), + [anon_sym_co_yield] = ACTIONS(2859), + [anon_sym_R_DQUOTE] = ACTIONS(2861), + [anon_sym_LR_DQUOTE] = ACTIONS(2861), + [anon_sym_uR_DQUOTE] = ACTIONS(2861), + [anon_sym_UR_DQUOTE] = ACTIONS(2861), + [anon_sym_u8R_DQUOTE] = ACTIONS(2861), + [anon_sym_co_await] = ACTIONS(2859), + [anon_sym_new] = ACTIONS(2859), + [anon_sym_requires] = ACTIONS(2859), + [sym_this] = ACTIONS(2859), }, - [787] = { - [sym_identifier] = ACTIONS(2783), - [aux_sym_preproc_include_token1] = ACTIONS(2783), - [aux_sym_preproc_def_token1] = ACTIONS(2783), - [aux_sym_preproc_if_token1] = ACTIONS(2783), - [aux_sym_preproc_if_token2] = ACTIONS(2783), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2783), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2783), - [sym_preproc_directive] = ACTIONS(2783), - [anon_sym_LPAREN2] = ACTIONS(2785), - [anon_sym_BANG] = ACTIONS(2785), - [anon_sym_TILDE] = ACTIONS(2785), - [anon_sym_DASH] = ACTIONS(2783), - [anon_sym_PLUS] = ACTIONS(2783), - [anon_sym_STAR] = ACTIONS(2785), - [anon_sym_AMP_AMP] = ACTIONS(2785), - [anon_sym_AMP] = ACTIONS(2783), - [anon_sym_SEMI] = ACTIONS(2785), - [anon_sym___extension__] = ACTIONS(2783), - [anon_sym_typedef] = ACTIONS(2783), - [anon_sym_virtual] = ACTIONS(2783), - [anon_sym_extern] = ACTIONS(2783), - [anon_sym___attribute__] = ACTIONS(2783), - [anon_sym___attribute] = ACTIONS(2783), - [anon_sym_using] = ACTIONS(2783), - [anon_sym_COLON_COLON] = ACTIONS(2785), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2785), - [anon_sym___declspec] = ACTIONS(2783), - [anon_sym___based] = ACTIONS(2783), - [anon_sym___cdecl] = ACTIONS(2783), - [anon_sym___clrcall] = ACTIONS(2783), - [anon_sym___stdcall] = ACTIONS(2783), - [anon_sym___fastcall] = ACTIONS(2783), - [anon_sym___thiscall] = ACTIONS(2783), - [anon_sym___vectorcall] = ACTIONS(2783), - [anon_sym_LBRACE] = ACTIONS(2785), - [anon_sym_signed] = ACTIONS(2783), - [anon_sym_unsigned] = ACTIONS(2783), - [anon_sym_long] = ACTIONS(2783), - [anon_sym_short] = ACTIONS(2783), - [anon_sym_LBRACK] = ACTIONS(2783), - [anon_sym_static] = ACTIONS(2783), - [anon_sym_register] = ACTIONS(2783), - [anon_sym_inline] = ACTIONS(2783), - [anon_sym___inline] = ACTIONS(2783), - [anon_sym___inline__] = ACTIONS(2783), - [anon_sym___forceinline] = ACTIONS(2783), - [anon_sym_thread_local] = ACTIONS(2783), - [anon_sym___thread] = ACTIONS(2783), - [anon_sym_const] = ACTIONS(2783), - [anon_sym_constexpr] = ACTIONS(2783), - [anon_sym_volatile] = ACTIONS(2783), - [anon_sym_restrict] = ACTIONS(2783), - [anon_sym___restrict__] = ACTIONS(2783), - [anon_sym__Atomic] = ACTIONS(2783), - [anon_sym__Noreturn] = ACTIONS(2783), - [anon_sym_noreturn] = ACTIONS(2783), - [anon_sym__Nonnull] = ACTIONS(2783), - [anon_sym_mutable] = ACTIONS(2783), - [anon_sym_constinit] = ACTIONS(2783), - [anon_sym_consteval] = ACTIONS(2783), - [anon_sym_alignas] = ACTIONS(2783), - [anon_sym__Alignas] = ACTIONS(2783), - [sym_primitive_type] = ACTIONS(2783), - [anon_sym_enum] = ACTIONS(2783), - [anon_sym_class] = ACTIONS(2783), - [anon_sym_struct] = ACTIONS(2783), - [anon_sym_union] = ACTIONS(2783), - [anon_sym_if] = ACTIONS(2783), - [anon_sym_switch] = ACTIONS(2783), - [anon_sym_case] = ACTIONS(2783), - [anon_sym_default] = ACTIONS(2783), - [anon_sym_while] = ACTIONS(2783), - [anon_sym_do] = ACTIONS(2783), - [anon_sym_for] = ACTIONS(2783), - [anon_sym_return] = ACTIONS(2783), - [anon_sym_break] = ACTIONS(2783), - [anon_sym_continue] = ACTIONS(2783), - [anon_sym_goto] = ACTIONS(2783), - [anon_sym___try] = ACTIONS(2783), - [anon_sym___leave] = ACTIONS(2783), - [anon_sym_not] = ACTIONS(2783), - [anon_sym_compl] = ACTIONS(2783), - [anon_sym_DASH_DASH] = ACTIONS(2785), - [anon_sym_PLUS_PLUS] = ACTIONS(2785), - [anon_sym_sizeof] = ACTIONS(2783), - [anon_sym___alignof__] = ACTIONS(2783), - [anon_sym___alignof] = ACTIONS(2783), - [anon_sym__alignof] = ACTIONS(2783), - [anon_sym_alignof] = ACTIONS(2783), - [anon_sym__Alignof] = ACTIONS(2783), - [anon_sym_offsetof] = ACTIONS(2783), - [anon_sym__Generic] = ACTIONS(2783), - [anon_sym_asm] = ACTIONS(2783), - [anon_sym___asm__] = ACTIONS(2783), - [anon_sym___asm] = ACTIONS(2783), - [sym_number_literal] = ACTIONS(2785), - [anon_sym_L_SQUOTE] = ACTIONS(2785), - [anon_sym_u_SQUOTE] = ACTIONS(2785), - [anon_sym_U_SQUOTE] = ACTIONS(2785), - [anon_sym_u8_SQUOTE] = ACTIONS(2785), - [anon_sym_SQUOTE] = ACTIONS(2785), - [anon_sym_L_DQUOTE] = ACTIONS(2785), - [anon_sym_u_DQUOTE] = ACTIONS(2785), - [anon_sym_U_DQUOTE] = ACTIONS(2785), - [anon_sym_u8_DQUOTE] = ACTIONS(2785), - [anon_sym_DQUOTE] = ACTIONS(2785), - [sym_true] = ACTIONS(2783), - [sym_false] = ACTIONS(2783), - [anon_sym_NULL] = ACTIONS(2783), - [anon_sym_nullptr] = ACTIONS(2783), + [803] = { + [sym_identifier] = ACTIONS(2863), + [aux_sym_preproc_include_token1] = ACTIONS(2863), + [aux_sym_preproc_def_token1] = ACTIONS(2863), + [aux_sym_preproc_if_token1] = ACTIONS(2863), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2863), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2863), + [sym_preproc_directive] = ACTIONS(2863), + [anon_sym_LPAREN2] = ACTIONS(2865), + [anon_sym_BANG] = ACTIONS(2865), + [anon_sym_TILDE] = ACTIONS(2865), + [anon_sym_DASH] = ACTIONS(2863), + [anon_sym_PLUS] = ACTIONS(2863), + [anon_sym_STAR] = ACTIONS(2865), + [anon_sym_AMP_AMP] = ACTIONS(2865), + [anon_sym_AMP] = ACTIONS(2863), + [anon_sym_SEMI] = ACTIONS(2865), + [anon_sym___extension__] = ACTIONS(2863), + [anon_sym_typedef] = ACTIONS(2863), + [anon_sym_virtual] = ACTIONS(2863), + [anon_sym_extern] = ACTIONS(2863), + [anon_sym___attribute__] = ACTIONS(2863), + [anon_sym___attribute] = ACTIONS(2863), + [anon_sym_using] = ACTIONS(2863), + [anon_sym_COLON_COLON] = ACTIONS(2865), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2865), + [anon_sym___declspec] = ACTIONS(2863), + [anon_sym___based] = ACTIONS(2863), + [anon_sym___cdecl] = ACTIONS(2863), + [anon_sym___clrcall] = ACTIONS(2863), + [anon_sym___stdcall] = ACTIONS(2863), + [anon_sym___fastcall] = ACTIONS(2863), + [anon_sym___thiscall] = ACTIONS(2863), + [anon_sym___vectorcall] = ACTIONS(2863), + [anon_sym_LBRACE] = ACTIONS(2865), + [anon_sym_RBRACE] = ACTIONS(2865), + [anon_sym_signed] = ACTIONS(2863), + [anon_sym_unsigned] = ACTIONS(2863), + [anon_sym_long] = ACTIONS(2863), + [anon_sym_short] = ACTIONS(2863), + [anon_sym_LBRACK] = ACTIONS(2863), + [anon_sym_static] = ACTIONS(2863), + [anon_sym_register] = ACTIONS(2863), + [anon_sym_inline] = ACTIONS(2863), + [anon_sym___inline] = ACTIONS(2863), + [anon_sym___inline__] = ACTIONS(2863), + [anon_sym___forceinline] = ACTIONS(2863), + [anon_sym_thread_local] = ACTIONS(2863), + [anon_sym___thread] = ACTIONS(2863), + [anon_sym_const] = ACTIONS(2863), + [anon_sym_constexpr] = ACTIONS(2863), + [anon_sym_volatile] = ACTIONS(2863), + [anon_sym_restrict] = ACTIONS(2863), + [anon_sym___restrict__] = ACTIONS(2863), + [anon_sym__Atomic] = ACTIONS(2863), + [anon_sym__Noreturn] = ACTIONS(2863), + [anon_sym_noreturn] = ACTIONS(2863), + [anon_sym__Nonnull] = ACTIONS(2863), + [anon_sym_mutable] = ACTIONS(2863), + [anon_sym_constinit] = ACTIONS(2863), + [anon_sym_consteval] = ACTIONS(2863), + [anon_sym_alignas] = ACTIONS(2863), + [anon_sym__Alignas] = ACTIONS(2863), + [sym_primitive_type] = ACTIONS(2863), + [anon_sym_enum] = ACTIONS(2863), + [anon_sym_class] = ACTIONS(2863), + [anon_sym_struct] = ACTIONS(2863), + [anon_sym_union] = ACTIONS(2863), + [anon_sym_if] = ACTIONS(2863), + [anon_sym_switch] = ACTIONS(2863), + [anon_sym_case] = ACTIONS(2863), + [anon_sym_default] = ACTIONS(2863), + [anon_sym_while] = ACTIONS(2863), + [anon_sym_do] = ACTIONS(2863), + [anon_sym_for] = ACTIONS(2863), + [anon_sym_return] = ACTIONS(2863), + [anon_sym_break] = ACTIONS(2863), + [anon_sym_continue] = ACTIONS(2863), + [anon_sym_goto] = ACTIONS(2863), + [anon_sym___try] = ACTIONS(2863), + [anon_sym___leave] = ACTIONS(2863), + [anon_sym_not] = ACTIONS(2863), + [anon_sym_compl] = ACTIONS(2863), + [anon_sym_DASH_DASH] = ACTIONS(2865), + [anon_sym_PLUS_PLUS] = ACTIONS(2865), + [anon_sym_sizeof] = ACTIONS(2863), + [anon_sym___alignof__] = ACTIONS(2863), + [anon_sym___alignof] = ACTIONS(2863), + [anon_sym__alignof] = ACTIONS(2863), + [anon_sym_alignof] = ACTIONS(2863), + [anon_sym__Alignof] = ACTIONS(2863), + [anon_sym_offsetof] = ACTIONS(2863), + [anon_sym__Generic] = ACTIONS(2863), + [anon_sym_asm] = ACTIONS(2863), + [anon_sym___asm__] = ACTIONS(2863), + [anon_sym___asm] = ACTIONS(2863), + [sym_number_literal] = ACTIONS(2865), + [anon_sym_L_SQUOTE] = ACTIONS(2865), + [anon_sym_u_SQUOTE] = ACTIONS(2865), + [anon_sym_U_SQUOTE] = ACTIONS(2865), + [anon_sym_u8_SQUOTE] = ACTIONS(2865), + [anon_sym_SQUOTE] = ACTIONS(2865), + [anon_sym_L_DQUOTE] = ACTIONS(2865), + [anon_sym_u_DQUOTE] = ACTIONS(2865), + [anon_sym_U_DQUOTE] = ACTIONS(2865), + [anon_sym_u8_DQUOTE] = ACTIONS(2865), + [anon_sym_DQUOTE] = ACTIONS(2865), + [sym_true] = ACTIONS(2863), + [sym_false] = ACTIONS(2863), + [anon_sym_NULL] = ACTIONS(2863), + [anon_sym_nullptr] = ACTIONS(2863), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2783), - [anon_sym_decltype] = ACTIONS(2783), - [anon_sym_explicit] = ACTIONS(2783), - [anon_sym_typename] = ACTIONS(2783), - [anon_sym_template] = ACTIONS(2783), - [anon_sym_operator] = ACTIONS(2783), - [anon_sym_try] = ACTIONS(2783), - [anon_sym_delete] = ACTIONS(2783), - [anon_sym_throw] = ACTIONS(2783), - [anon_sym_namespace] = ACTIONS(2783), - [anon_sym_static_assert] = ACTIONS(2783), - [anon_sym_concept] = ACTIONS(2783), - [anon_sym_co_return] = ACTIONS(2783), - [anon_sym_co_yield] = ACTIONS(2783), - [anon_sym_R_DQUOTE] = ACTIONS(2785), - [anon_sym_LR_DQUOTE] = ACTIONS(2785), - [anon_sym_uR_DQUOTE] = ACTIONS(2785), - [anon_sym_UR_DQUOTE] = ACTIONS(2785), - [anon_sym_u8R_DQUOTE] = ACTIONS(2785), - [anon_sym_co_await] = ACTIONS(2783), - [anon_sym_new] = ACTIONS(2783), - [anon_sym_requires] = ACTIONS(2783), - [sym_this] = ACTIONS(2783), + [sym_auto] = ACTIONS(2863), + [anon_sym_decltype] = ACTIONS(2863), + [anon_sym_explicit] = ACTIONS(2863), + [anon_sym_typename] = ACTIONS(2863), + [anon_sym_template] = ACTIONS(2863), + [anon_sym_operator] = ACTIONS(2863), + [anon_sym_try] = ACTIONS(2863), + [anon_sym_delete] = ACTIONS(2863), + [anon_sym_throw] = ACTIONS(2863), + [anon_sym_namespace] = ACTIONS(2863), + [anon_sym_static_assert] = ACTIONS(2863), + [anon_sym_concept] = ACTIONS(2863), + [anon_sym_co_return] = ACTIONS(2863), + [anon_sym_co_yield] = ACTIONS(2863), + [anon_sym_R_DQUOTE] = ACTIONS(2865), + [anon_sym_LR_DQUOTE] = ACTIONS(2865), + [anon_sym_uR_DQUOTE] = ACTIONS(2865), + [anon_sym_UR_DQUOTE] = ACTIONS(2865), + [anon_sym_u8R_DQUOTE] = ACTIONS(2865), + [anon_sym_co_await] = ACTIONS(2863), + [anon_sym_new] = ACTIONS(2863), + [anon_sym_requires] = ACTIONS(2863), + [sym_this] = ACTIONS(2863), }, - [788] = { + [804] = { [sym_identifier] = ACTIONS(2831), [aux_sym_preproc_include_token1] = ACTIONS(2831), [aux_sym_preproc_def_token1] = ACTIONS(2831), [aux_sym_preproc_if_token1] = ACTIONS(2831), + [aux_sym_preproc_if_token2] = ACTIONS(2831), [aux_sym_preproc_ifdef_token1] = ACTIONS(2831), [aux_sym_preproc_ifdef_token2] = ACTIONS(2831), [sym_preproc_directive] = ACTIONS(2831), @@ -154277,7 +156781,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(2831), [anon_sym___vectorcall] = ACTIONS(2831), [anon_sym_LBRACE] = ACTIONS(2833), - [anon_sym_RBRACE] = ACTIONS(2833), [anon_sym_signed] = ACTIONS(2831), [anon_sym_unsigned] = ACTIONS(2831), [anon_sym_long] = ACTIONS(2831), @@ -154378,731 +156881,731 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2831), [sym_this] = ACTIONS(2831), }, - [789] = { - [sym_identifier] = ACTIONS(2795), - [aux_sym_preproc_include_token1] = ACTIONS(2795), - [aux_sym_preproc_def_token1] = ACTIONS(2795), - [aux_sym_preproc_if_token1] = ACTIONS(2795), - [aux_sym_preproc_if_token2] = ACTIONS(2795), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2795), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2795), - [sym_preproc_directive] = ACTIONS(2795), - [anon_sym_LPAREN2] = ACTIONS(2797), - [anon_sym_BANG] = ACTIONS(2797), - [anon_sym_TILDE] = ACTIONS(2797), - [anon_sym_DASH] = ACTIONS(2795), - [anon_sym_PLUS] = ACTIONS(2795), - [anon_sym_STAR] = ACTIONS(2797), - [anon_sym_AMP_AMP] = ACTIONS(2797), - [anon_sym_AMP] = ACTIONS(2795), - [anon_sym_SEMI] = ACTIONS(2797), - [anon_sym___extension__] = ACTIONS(2795), - [anon_sym_typedef] = ACTIONS(2795), - [anon_sym_virtual] = ACTIONS(2795), - [anon_sym_extern] = ACTIONS(2795), - [anon_sym___attribute__] = ACTIONS(2795), - [anon_sym___attribute] = ACTIONS(2795), - [anon_sym_using] = ACTIONS(2795), - [anon_sym_COLON_COLON] = ACTIONS(2797), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2797), - [anon_sym___declspec] = ACTIONS(2795), - [anon_sym___based] = ACTIONS(2795), - [anon_sym___cdecl] = ACTIONS(2795), - [anon_sym___clrcall] = ACTIONS(2795), - [anon_sym___stdcall] = ACTIONS(2795), - [anon_sym___fastcall] = ACTIONS(2795), - [anon_sym___thiscall] = ACTIONS(2795), - [anon_sym___vectorcall] = ACTIONS(2795), - [anon_sym_LBRACE] = ACTIONS(2797), - [anon_sym_signed] = ACTIONS(2795), - [anon_sym_unsigned] = ACTIONS(2795), - [anon_sym_long] = ACTIONS(2795), - [anon_sym_short] = ACTIONS(2795), - [anon_sym_LBRACK] = ACTIONS(2795), - [anon_sym_static] = ACTIONS(2795), - [anon_sym_register] = ACTIONS(2795), - [anon_sym_inline] = ACTIONS(2795), - [anon_sym___inline] = ACTIONS(2795), - [anon_sym___inline__] = ACTIONS(2795), - [anon_sym___forceinline] = ACTIONS(2795), - [anon_sym_thread_local] = ACTIONS(2795), - [anon_sym___thread] = ACTIONS(2795), - [anon_sym_const] = ACTIONS(2795), - [anon_sym_constexpr] = ACTIONS(2795), - [anon_sym_volatile] = ACTIONS(2795), - [anon_sym_restrict] = ACTIONS(2795), - [anon_sym___restrict__] = ACTIONS(2795), - [anon_sym__Atomic] = ACTIONS(2795), - [anon_sym__Noreturn] = ACTIONS(2795), - [anon_sym_noreturn] = ACTIONS(2795), - [anon_sym__Nonnull] = ACTIONS(2795), - [anon_sym_mutable] = ACTIONS(2795), - [anon_sym_constinit] = ACTIONS(2795), - [anon_sym_consteval] = ACTIONS(2795), - [anon_sym_alignas] = ACTIONS(2795), - [anon_sym__Alignas] = ACTIONS(2795), - [sym_primitive_type] = ACTIONS(2795), - [anon_sym_enum] = ACTIONS(2795), - [anon_sym_class] = ACTIONS(2795), - [anon_sym_struct] = ACTIONS(2795), - [anon_sym_union] = ACTIONS(2795), - [anon_sym_if] = ACTIONS(2795), - [anon_sym_switch] = ACTIONS(2795), - [anon_sym_case] = ACTIONS(2795), - [anon_sym_default] = ACTIONS(2795), - [anon_sym_while] = ACTIONS(2795), - [anon_sym_do] = ACTIONS(2795), - [anon_sym_for] = ACTIONS(2795), - [anon_sym_return] = ACTIONS(2795), - [anon_sym_break] = ACTIONS(2795), - [anon_sym_continue] = ACTIONS(2795), - [anon_sym_goto] = ACTIONS(2795), - [anon_sym___try] = ACTIONS(2795), - [anon_sym___leave] = ACTIONS(2795), - [anon_sym_not] = ACTIONS(2795), - [anon_sym_compl] = ACTIONS(2795), - [anon_sym_DASH_DASH] = ACTIONS(2797), - [anon_sym_PLUS_PLUS] = ACTIONS(2797), - [anon_sym_sizeof] = ACTIONS(2795), - [anon_sym___alignof__] = ACTIONS(2795), - [anon_sym___alignof] = ACTIONS(2795), - [anon_sym__alignof] = ACTIONS(2795), - [anon_sym_alignof] = ACTIONS(2795), - [anon_sym__Alignof] = ACTIONS(2795), - [anon_sym_offsetof] = ACTIONS(2795), - [anon_sym__Generic] = ACTIONS(2795), - [anon_sym_asm] = ACTIONS(2795), - [anon_sym___asm__] = ACTIONS(2795), - [anon_sym___asm] = ACTIONS(2795), - [sym_number_literal] = ACTIONS(2797), - [anon_sym_L_SQUOTE] = ACTIONS(2797), - [anon_sym_u_SQUOTE] = ACTIONS(2797), - [anon_sym_U_SQUOTE] = ACTIONS(2797), - [anon_sym_u8_SQUOTE] = ACTIONS(2797), - [anon_sym_SQUOTE] = ACTIONS(2797), - [anon_sym_L_DQUOTE] = ACTIONS(2797), - [anon_sym_u_DQUOTE] = ACTIONS(2797), - [anon_sym_U_DQUOTE] = ACTIONS(2797), - [anon_sym_u8_DQUOTE] = ACTIONS(2797), - [anon_sym_DQUOTE] = ACTIONS(2797), - [sym_true] = ACTIONS(2795), - [sym_false] = ACTIONS(2795), - [anon_sym_NULL] = ACTIONS(2795), - [anon_sym_nullptr] = ACTIONS(2795), + [805] = { + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_include_token1] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym___attribute] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym___cdecl] = ACTIONS(2867), + [anon_sym___clrcall] = ACTIONS(2867), + [anon_sym___stdcall] = ACTIONS(2867), + [anon_sym___fastcall] = ACTIONS(2867), + [anon_sym___thiscall] = ACTIONS(2867), + [anon_sym___vectorcall] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_RBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym__Nonnull] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym__Alignas] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [anon_sym___asm] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2795), - [anon_sym_decltype] = ACTIONS(2795), - [anon_sym_explicit] = ACTIONS(2795), - [anon_sym_typename] = ACTIONS(2795), - [anon_sym_template] = ACTIONS(2795), - [anon_sym_operator] = ACTIONS(2795), - [anon_sym_try] = ACTIONS(2795), - [anon_sym_delete] = ACTIONS(2795), - [anon_sym_throw] = ACTIONS(2795), - [anon_sym_namespace] = ACTIONS(2795), - [anon_sym_static_assert] = ACTIONS(2795), - [anon_sym_concept] = ACTIONS(2795), - [anon_sym_co_return] = ACTIONS(2795), - [anon_sym_co_yield] = ACTIONS(2795), - [anon_sym_R_DQUOTE] = ACTIONS(2797), - [anon_sym_LR_DQUOTE] = ACTIONS(2797), - [anon_sym_uR_DQUOTE] = ACTIONS(2797), - [anon_sym_UR_DQUOTE] = ACTIONS(2797), - [anon_sym_u8R_DQUOTE] = ACTIONS(2797), - [anon_sym_co_await] = ACTIONS(2795), - [anon_sym_new] = ACTIONS(2795), - [anon_sym_requires] = ACTIONS(2795), - [sym_this] = ACTIONS(2795), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), + [anon_sym_concept] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, - [790] = { - [sym_identifier] = ACTIONS(2803), - [aux_sym_preproc_include_token1] = ACTIONS(2803), - [aux_sym_preproc_def_token1] = ACTIONS(2803), - [aux_sym_preproc_if_token1] = ACTIONS(2803), - [aux_sym_preproc_if_token2] = ACTIONS(2803), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2803), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2803), - [sym_preproc_directive] = ACTIONS(2803), - [anon_sym_LPAREN2] = ACTIONS(2805), - [anon_sym_BANG] = ACTIONS(2805), - [anon_sym_TILDE] = ACTIONS(2805), - [anon_sym_DASH] = ACTIONS(2803), - [anon_sym_PLUS] = ACTIONS(2803), - [anon_sym_STAR] = ACTIONS(2805), - [anon_sym_AMP_AMP] = ACTIONS(2805), - [anon_sym_AMP] = ACTIONS(2803), - [anon_sym_SEMI] = ACTIONS(2805), - [anon_sym___extension__] = ACTIONS(2803), - [anon_sym_typedef] = ACTIONS(2803), - [anon_sym_virtual] = ACTIONS(2803), - [anon_sym_extern] = ACTIONS(2803), - [anon_sym___attribute__] = ACTIONS(2803), - [anon_sym___attribute] = ACTIONS(2803), - [anon_sym_using] = ACTIONS(2803), - [anon_sym_COLON_COLON] = ACTIONS(2805), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2805), - [anon_sym___declspec] = ACTIONS(2803), - [anon_sym___based] = ACTIONS(2803), - [anon_sym___cdecl] = ACTIONS(2803), - [anon_sym___clrcall] = ACTIONS(2803), - [anon_sym___stdcall] = ACTIONS(2803), - [anon_sym___fastcall] = ACTIONS(2803), - [anon_sym___thiscall] = ACTIONS(2803), - [anon_sym___vectorcall] = ACTIONS(2803), - [anon_sym_LBRACE] = ACTIONS(2805), - [anon_sym_signed] = ACTIONS(2803), - [anon_sym_unsigned] = ACTIONS(2803), - [anon_sym_long] = ACTIONS(2803), - [anon_sym_short] = ACTIONS(2803), - [anon_sym_LBRACK] = ACTIONS(2803), - [anon_sym_static] = ACTIONS(2803), - [anon_sym_register] = ACTIONS(2803), - [anon_sym_inline] = ACTIONS(2803), - [anon_sym___inline] = ACTIONS(2803), - [anon_sym___inline__] = ACTIONS(2803), - [anon_sym___forceinline] = ACTIONS(2803), - [anon_sym_thread_local] = ACTIONS(2803), - [anon_sym___thread] = ACTIONS(2803), - [anon_sym_const] = ACTIONS(2803), - [anon_sym_constexpr] = ACTIONS(2803), - [anon_sym_volatile] = ACTIONS(2803), - [anon_sym_restrict] = ACTIONS(2803), - [anon_sym___restrict__] = ACTIONS(2803), - [anon_sym__Atomic] = ACTIONS(2803), - [anon_sym__Noreturn] = ACTIONS(2803), - [anon_sym_noreturn] = ACTIONS(2803), - [anon_sym__Nonnull] = ACTIONS(2803), - [anon_sym_mutable] = ACTIONS(2803), - [anon_sym_constinit] = ACTIONS(2803), - [anon_sym_consteval] = ACTIONS(2803), - [anon_sym_alignas] = ACTIONS(2803), - [anon_sym__Alignas] = ACTIONS(2803), - [sym_primitive_type] = ACTIONS(2803), - [anon_sym_enum] = ACTIONS(2803), - [anon_sym_class] = ACTIONS(2803), - [anon_sym_struct] = ACTIONS(2803), - [anon_sym_union] = ACTIONS(2803), - [anon_sym_if] = ACTIONS(2803), - [anon_sym_switch] = ACTIONS(2803), - [anon_sym_case] = ACTIONS(2803), - [anon_sym_default] = ACTIONS(2803), - [anon_sym_while] = ACTIONS(2803), - [anon_sym_do] = ACTIONS(2803), - [anon_sym_for] = ACTIONS(2803), - [anon_sym_return] = ACTIONS(2803), - [anon_sym_break] = ACTIONS(2803), - [anon_sym_continue] = ACTIONS(2803), - [anon_sym_goto] = ACTIONS(2803), - [anon_sym___try] = ACTIONS(2803), - [anon_sym___leave] = ACTIONS(2803), - [anon_sym_not] = ACTIONS(2803), - [anon_sym_compl] = ACTIONS(2803), - [anon_sym_DASH_DASH] = ACTIONS(2805), - [anon_sym_PLUS_PLUS] = ACTIONS(2805), - [anon_sym_sizeof] = ACTIONS(2803), - [anon_sym___alignof__] = ACTIONS(2803), - [anon_sym___alignof] = ACTIONS(2803), - [anon_sym__alignof] = ACTIONS(2803), - [anon_sym_alignof] = ACTIONS(2803), - [anon_sym__Alignof] = ACTIONS(2803), - [anon_sym_offsetof] = ACTIONS(2803), - [anon_sym__Generic] = ACTIONS(2803), - [anon_sym_asm] = ACTIONS(2803), - [anon_sym___asm__] = ACTIONS(2803), - [anon_sym___asm] = ACTIONS(2803), - [sym_number_literal] = ACTIONS(2805), - [anon_sym_L_SQUOTE] = ACTIONS(2805), - [anon_sym_u_SQUOTE] = ACTIONS(2805), - [anon_sym_U_SQUOTE] = ACTIONS(2805), - [anon_sym_u8_SQUOTE] = ACTIONS(2805), - [anon_sym_SQUOTE] = ACTIONS(2805), - [anon_sym_L_DQUOTE] = ACTIONS(2805), - [anon_sym_u_DQUOTE] = ACTIONS(2805), - [anon_sym_U_DQUOTE] = ACTIONS(2805), - [anon_sym_u8_DQUOTE] = ACTIONS(2805), - [anon_sym_DQUOTE] = ACTIONS(2805), - [sym_true] = ACTIONS(2803), - [sym_false] = ACTIONS(2803), - [anon_sym_NULL] = ACTIONS(2803), - [anon_sym_nullptr] = ACTIONS(2803), + [806] = { + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym___attribute] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym__Nonnull] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym__Alignas] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [anon_sym___asm] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2803), - [anon_sym_decltype] = ACTIONS(2803), - [anon_sym_explicit] = ACTIONS(2803), - [anon_sym_typename] = ACTIONS(2803), - [anon_sym_template] = ACTIONS(2803), - [anon_sym_operator] = ACTIONS(2803), - [anon_sym_try] = ACTIONS(2803), - [anon_sym_delete] = ACTIONS(2803), - [anon_sym_throw] = ACTIONS(2803), - [anon_sym_namespace] = ACTIONS(2803), - [anon_sym_static_assert] = ACTIONS(2803), - [anon_sym_concept] = ACTIONS(2803), - [anon_sym_co_return] = ACTIONS(2803), - [anon_sym_co_yield] = ACTIONS(2803), - [anon_sym_R_DQUOTE] = ACTIONS(2805), - [anon_sym_LR_DQUOTE] = ACTIONS(2805), - [anon_sym_uR_DQUOTE] = ACTIONS(2805), - [anon_sym_UR_DQUOTE] = ACTIONS(2805), - [anon_sym_u8R_DQUOTE] = ACTIONS(2805), - [anon_sym_co_await] = ACTIONS(2803), - [anon_sym_new] = ACTIONS(2803), - [anon_sym_requires] = ACTIONS(2803), - [sym_this] = ACTIONS(2803), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), }, - [791] = { - [sym_identifier] = ACTIONS(2811), - [aux_sym_preproc_include_token1] = ACTIONS(2811), - [aux_sym_preproc_def_token1] = ACTIONS(2811), - [aux_sym_preproc_if_token1] = ACTIONS(2811), - [aux_sym_preproc_if_token2] = ACTIONS(2811), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2811), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2811), - [sym_preproc_directive] = ACTIONS(2811), - [anon_sym_LPAREN2] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(2813), - [anon_sym_TILDE] = ACTIONS(2813), - [anon_sym_DASH] = ACTIONS(2811), - [anon_sym_PLUS] = ACTIONS(2811), - [anon_sym_STAR] = ACTIONS(2813), - [anon_sym_AMP_AMP] = ACTIONS(2813), - [anon_sym_AMP] = ACTIONS(2811), - [anon_sym_SEMI] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(2811), - [anon_sym_typedef] = ACTIONS(2811), - [anon_sym_virtual] = ACTIONS(2811), - [anon_sym_extern] = ACTIONS(2811), - [anon_sym___attribute__] = ACTIONS(2811), - [anon_sym___attribute] = ACTIONS(2811), - [anon_sym_using] = ACTIONS(2811), - [anon_sym_COLON_COLON] = ACTIONS(2813), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2813), - [anon_sym___declspec] = ACTIONS(2811), - [anon_sym___based] = ACTIONS(2811), - [anon_sym___cdecl] = ACTIONS(2811), - [anon_sym___clrcall] = ACTIONS(2811), - [anon_sym___stdcall] = ACTIONS(2811), - [anon_sym___fastcall] = ACTIONS(2811), - [anon_sym___thiscall] = ACTIONS(2811), - [anon_sym___vectorcall] = ACTIONS(2811), - [anon_sym_LBRACE] = ACTIONS(2813), - [anon_sym_signed] = ACTIONS(2811), - [anon_sym_unsigned] = ACTIONS(2811), - [anon_sym_long] = ACTIONS(2811), - [anon_sym_short] = ACTIONS(2811), - [anon_sym_LBRACK] = ACTIONS(2811), - [anon_sym_static] = ACTIONS(2811), - [anon_sym_register] = ACTIONS(2811), - [anon_sym_inline] = ACTIONS(2811), - [anon_sym___inline] = ACTIONS(2811), - [anon_sym___inline__] = ACTIONS(2811), - [anon_sym___forceinline] = ACTIONS(2811), - [anon_sym_thread_local] = ACTIONS(2811), - [anon_sym___thread] = ACTIONS(2811), - [anon_sym_const] = ACTIONS(2811), - [anon_sym_constexpr] = ACTIONS(2811), - [anon_sym_volatile] = ACTIONS(2811), - [anon_sym_restrict] = ACTIONS(2811), - [anon_sym___restrict__] = ACTIONS(2811), - [anon_sym__Atomic] = ACTIONS(2811), - [anon_sym__Noreturn] = ACTIONS(2811), - [anon_sym_noreturn] = ACTIONS(2811), - [anon_sym__Nonnull] = ACTIONS(2811), - [anon_sym_mutable] = ACTIONS(2811), - [anon_sym_constinit] = ACTIONS(2811), - [anon_sym_consteval] = ACTIONS(2811), - [anon_sym_alignas] = ACTIONS(2811), - [anon_sym__Alignas] = ACTIONS(2811), - [sym_primitive_type] = ACTIONS(2811), - [anon_sym_enum] = ACTIONS(2811), - [anon_sym_class] = ACTIONS(2811), - [anon_sym_struct] = ACTIONS(2811), - [anon_sym_union] = ACTIONS(2811), - [anon_sym_if] = ACTIONS(2811), - [anon_sym_switch] = ACTIONS(2811), - [anon_sym_case] = ACTIONS(2811), - [anon_sym_default] = ACTIONS(2811), - [anon_sym_while] = ACTIONS(2811), - [anon_sym_do] = ACTIONS(2811), - [anon_sym_for] = ACTIONS(2811), - [anon_sym_return] = ACTIONS(2811), - [anon_sym_break] = ACTIONS(2811), - [anon_sym_continue] = ACTIONS(2811), - [anon_sym_goto] = ACTIONS(2811), - [anon_sym___try] = ACTIONS(2811), - [anon_sym___leave] = ACTIONS(2811), - [anon_sym_not] = ACTIONS(2811), - [anon_sym_compl] = ACTIONS(2811), - [anon_sym_DASH_DASH] = ACTIONS(2813), - [anon_sym_PLUS_PLUS] = ACTIONS(2813), - [anon_sym_sizeof] = ACTIONS(2811), - [anon_sym___alignof__] = ACTIONS(2811), - [anon_sym___alignof] = ACTIONS(2811), - [anon_sym__alignof] = ACTIONS(2811), - [anon_sym_alignof] = ACTIONS(2811), - [anon_sym__Alignof] = ACTIONS(2811), - [anon_sym_offsetof] = ACTIONS(2811), - [anon_sym__Generic] = ACTIONS(2811), - [anon_sym_asm] = ACTIONS(2811), - [anon_sym___asm__] = ACTIONS(2811), - [anon_sym___asm] = ACTIONS(2811), - [sym_number_literal] = ACTIONS(2813), - [anon_sym_L_SQUOTE] = ACTIONS(2813), - [anon_sym_u_SQUOTE] = ACTIONS(2813), - [anon_sym_U_SQUOTE] = ACTIONS(2813), - [anon_sym_u8_SQUOTE] = ACTIONS(2813), - [anon_sym_SQUOTE] = ACTIONS(2813), - [anon_sym_L_DQUOTE] = ACTIONS(2813), - [anon_sym_u_DQUOTE] = ACTIONS(2813), - [anon_sym_U_DQUOTE] = ACTIONS(2813), - [anon_sym_u8_DQUOTE] = ACTIONS(2813), - [anon_sym_DQUOTE] = ACTIONS(2813), - [sym_true] = ACTIONS(2811), - [sym_false] = ACTIONS(2811), - [anon_sym_NULL] = ACTIONS(2811), - [anon_sym_nullptr] = ACTIONS(2811), + [807] = { + [sym_identifier] = ACTIONS(2875), + [aux_sym_preproc_include_token1] = ACTIONS(2875), + [aux_sym_preproc_def_token1] = ACTIONS(2875), + [aux_sym_preproc_if_token1] = ACTIONS(2875), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2875), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2875), + [sym_preproc_directive] = ACTIONS(2875), + [anon_sym_LPAREN2] = ACTIONS(2877), + [anon_sym_BANG] = ACTIONS(2877), + [anon_sym_TILDE] = ACTIONS(2877), + [anon_sym_DASH] = ACTIONS(2875), + [anon_sym_PLUS] = ACTIONS(2875), + [anon_sym_STAR] = ACTIONS(2877), + [anon_sym_AMP_AMP] = ACTIONS(2877), + [anon_sym_AMP] = ACTIONS(2875), + [anon_sym_SEMI] = ACTIONS(2877), + [anon_sym___extension__] = ACTIONS(2875), + [anon_sym_typedef] = ACTIONS(2875), + [anon_sym_virtual] = ACTIONS(2875), + [anon_sym_extern] = ACTIONS(2875), + [anon_sym___attribute__] = ACTIONS(2875), + [anon_sym___attribute] = ACTIONS(2875), + [anon_sym_using] = ACTIONS(2875), + [anon_sym_COLON_COLON] = ACTIONS(2877), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2877), + [anon_sym___declspec] = ACTIONS(2875), + [anon_sym___based] = ACTIONS(2875), + [anon_sym___cdecl] = ACTIONS(2875), + [anon_sym___clrcall] = ACTIONS(2875), + [anon_sym___stdcall] = ACTIONS(2875), + [anon_sym___fastcall] = ACTIONS(2875), + [anon_sym___thiscall] = ACTIONS(2875), + [anon_sym___vectorcall] = ACTIONS(2875), + [anon_sym_LBRACE] = ACTIONS(2877), + [anon_sym_RBRACE] = ACTIONS(2877), + [anon_sym_signed] = ACTIONS(2875), + [anon_sym_unsigned] = ACTIONS(2875), + [anon_sym_long] = ACTIONS(2875), + [anon_sym_short] = ACTIONS(2875), + [anon_sym_LBRACK] = ACTIONS(2875), + [anon_sym_static] = ACTIONS(2875), + [anon_sym_register] = ACTIONS(2875), + [anon_sym_inline] = ACTIONS(2875), + [anon_sym___inline] = ACTIONS(2875), + [anon_sym___inline__] = ACTIONS(2875), + [anon_sym___forceinline] = ACTIONS(2875), + [anon_sym_thread_local] = ACTIONS(2875), + [anon_sym___thread] = ACTIONS(2875), + [anon_sym_const] = ACTIONS(2875), + [anon_sym_constexpr] = ACTIONS(2875), + [anon_sym_volatile] = ACTIONS(2875), + [anon_sym_restrict] = ACTIONS(2875), + [anon_sym___restrict__] = ACTIONS(2875), + [anon_sym__Atomic] = ACTIONS(2875), + [anon_sym__Noreturn] = ACTIONS(2875), + [anon_sym_noreturn] = ACTIONS(2875), + [anon_sym__Nonnull] = ACTIONS(2875), + [anon_sym_mutable] = ACTIONS(2875), + [anon_sym_constinit] = ACTIONS(2875), + [anon_sym_consteval] = ACTIONS(2875), + [anon_sym_alignas] = ACTIONS(2875), + [anon_sym__Alignas] = ACTIONS(2875), + [sym_primitive_type] = ACTIONS(2875), + [anon_sym_enum] = ACTIONS(2875), + [anon_sym_class] = ACTIONS(2875), + [anon_sym_struct] = ACTIONS(2875), + [anon_sym_union] = ACTIONS(2875), + [anon_sym_if] = ACTIONS(2875), + [anon_sym_switch] = ACTIONS(2875), + [anon_sym_case] = ACTIONS(2875), + [anon_sym_default] = ACTIONS(2875), + [anon_sym_while] = ACTIONS(2875), + [anon_sym_do] = ACTIONS(2875), + [anon_sym_for] = ACTIONS(2875), + [anon_sym_return] = ACTIONS(2875), + [anon_sym_break] = ACTIONS(2875), + [anon_sym_continue] = ACTIONS(2875), + [anon_sym_goto] = ACTIONS(2875), + [anon_sym___try] = ACTIONS(2875), + [anon_sym___leave] = ACTIONS(2875), + [anon_sym_not] = ACTIONS(2875), + [anon_sym_compl] = ACTIONS(2875), + [anon_sym_DASH_DASH] = ACTIONS(2877), + [anon_sym_PLUS_PLUS] = ACTIONS(2877), + [anon_sym_sizeof] = ACTIONS(2875), + [anon_sym___alignof__] = ACTIONS(2875), + [anon_sym___alignof] = ACTIONS(2875), + [anon_sym__alignof] = ACTIONS(2875), + [anon_sym_alignof] = ACTIONS(2875), + [anon_sym__Alignof] = ACTIONS(2875), + [anon_sym_offsetof] = ACTIONS(2875), + [anon_sym__Generic] = ACTIONS(2875), + [anon_sym_asm] = ACTIONS(2875), + [anon_sym___asm__] = ACTIONS(2875), + [anon_sym___asm] = ACTIONS(2875), + [sym_number_literal] = ACTIONS(2877), + [anon_sym_L_SQUOTE] = ACTIONS(2877), + [anon_sym_u_SQUOTE] = ACTIONS(2877), + [anon_sym_U_SQUOTE] = ACTIONS(2877), + [anon_sym_u8_SQUOTE] = ACTIONS(2877), + [anon_sym_SQUOTE] = ACTIONS(2877), + [anon_sym_L_DQUOTE] = ACTIONS(2877), + [anon_sym_u_DQUOTE] = ACTIONS(2877), + [anon_sym_U_DQUOTE] = ACTIONS(2877), + [anon_sym_u8_DQUOTE] = ACTIONS(2877), + [anon_sym_DQUOTE] = ACTIONS(2877), + [sym_true] = ACTIONS(2875), + [sym_false] = ACTIONS(2875), + [anon_sym_NULL] = ACTIONS(2875), + [anon_sym_nullptr] = ACTIONS(2875), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2811), - [anon_sym_decltype] = ACTIONS(2811), - [anon_sym_explicit] = ACTIONS(2811), - [anon_sym_typename] = ACTIONS(2811), - [anon_sym_template] = ACTIONS(2811), - [anon_sym_operator] = ACTIONS(2811), - [anon_sym_try] = ACTIONS(2811), - [anon_sym_delete] = ACTIONS(2811), - [anon_sym_throw] = ACTIONS(2811), - [anon_sym_namespace] = ACTIONS(2811), - [anon_sym_static_assert] = ACTIONS(2811), - [anon_sym_concept] = ACTIONS(2811), - [anon_sym_co_return] = ACTIONS(2811), - [anon_sym_co_yield] = ACTIONS(2811), - [anon_sym_R_DQUOTE] = ACTIONS(2813), - [anon_sym_LR_DQUOTE] = ACTIONS(2813), - [anon_sym_uR_DQUOTE] = ACTIONS(2813), - [anon_sym_UR_DQUOTE] = ACTIONS(2813), - [anon_sym_u8R_DQUOTE] = ACTIONS(2813), - [anon_sym_co_await] = ACTIONS(2811), - [anon_sym_new] = ACTIONS(2811), - [anon_sym_requires] = ACTIONS(2811), - [sym_this] = ACTIONS(2811), + [sym_auto] = ACTIONS(2875), + [anon_sym_decltype] = ACTIONS(2875), + [anon_sym_explicit] = ACTIONS(2875), + [anon_sym_typename] = ACTIONS(2875), + [anon_sym_template] = ACTIONS(2875), + [anon_sym_operator] = ACTIONS(2875), + [anon_sym_try] = ACTIONS(2875), + [anon_sym_delete] = ACTIONS(2875), + [anon_sym_throw] = ACTIONS(2875), + [anon_sym_namespace] = ACTIONS(2875), + [anon_sym_static_assert] = ACTIONS(2875), + [anon_sym_concept] = ACTIONS(2875), + [anon_sym_co_return] = ACTIONS(2875), + [anon_sym_co_yield] = ACTIONS(2875), + [anon_sym_R_DQUOTE] = ACTIONS(2877), + [anon_sym_LR_DQUOTE] = ACTIONS(2877), + [anon_sym_uR_DQUOTE] = ACTIONS(2877), + [anon_sym_UR_DQUOTE] = ACTIONS(2877), + [anon_sym_u8R_DQUOTE] = ACTIONS(2877), + [anon_sym_co_await] = ACTIONS(2875), + [anon_sym_new] = ACTIONS(2875), + [anon_sym_requires] = ACTIONS(2875), + [sym_this] = ACTIONS(2875), }, - [792] = { - [sym_identifier] = ACTIONS(2835), - [aux_sym_preproc_include_token1] = ACTIONS(2835), - [aux_sym_preproc_def_token1] = ACTIONS(2835), - [aux_sym_preproc_if_token1] = ACTIONS(2835), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2835), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2835), - [sym_preproc_directive] = ACTIONS(2835), - [anon_sym_LPAREN2] = ACTIONS(2837), - [anon_sym_BANG] = ACTIONS(2837), - [anon_sym_TILDE] = ACTIONS(2837), - [anon_sym_DASH] = ACTIONS(2835), - [anon_sym_PLUS] = ACTIONS(2835), - [anon_sym_STAR] = ACTIONS(2837), - [anon_sym_AMP_AMP] = ACTIONS(2837), - [anon_sym_AMP] = ACTIONS(2835), - [anon_sym_SEMI] = ACTIONS(2837), - [anon_sym___extension__] = ACTIONS(2835), - [anon_sym_typedef] = ACTIONS(2835), - [anon_sym_virtual] = ACTIONS(2835), - [anon_sym_extern] = ACTIONS(2835), - [anon_sym___attribute__] = ACTIONS(2835), - [anon_sym___attribute] = ACTIONS(2835), - [anon_sym_using] = ACTIONS(2835), - [anon_sym_COLON_COLON] = ACTIONS(2837), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2837), - [anon_sym___declspec] = ACTIONS(2835), - [anon_sym___based] = ACTIONS(2835), - [anon_sym___cdecl] = ACTIONS(2835), - [anon_sym___clrcall] = ACTIONS(2835), - [anon_sym___stdcall] = ACTIONS(2835), - [anon_sym___fastcall] = ACTIONS(2835), - [anon_sym___thiscall] = ACTIONS(2835), - [anon_sym___vectorcall] = ACTIONS(2835), - [anon_sym_LBRACE] = ACTIONS(2837), - [anon_sym_RBRACE] = ACTIONS(2837), - [anon_sym_signed] = ACTIONS(2835), - [anon_sym_unsigned] = ACTIONS(2835), - [anon_sym_long] = ACTIONS(2835), - [anon_sym_short] = ACTIONS(2835), - [anon_sym_LBRACK] = ACTIONS(2835), - [anon_sym_static] = ACTIONS(2835), - [anon_sym_register] = ACTIONS(2835), - [anon_sym_inline] = ACTIONS(2835), - [anon_sym___inline] = ACTIONS(2835), - [anon_sym___inline__] = ACTIONS(2835), - [anon_sym___forceinline] = ACTIONS(2835), - [anon_sym_thread_local] = ACTIONS(2835), - [anon_sym___thread] = ACTIONS(2835), - [anon_sym_const] = ACTIONS(2835), - [anon_sym_constexpr] = ACTIONS(2835), - [anon_sym_volatile] = ACTIONS(2835), - [anon_sym_restrict] = ACTIONS(2835), - [anon_sym___restrict__] = ACTIONS(2835), - [anon_sym__Atomic] = ACTIONS(2835), - [anon_sym__Noreturn] = ACTIONS(2835), - [anon_sym_noreturn] = ACTIONS(2835), - [anon_sym__Nonnull] = ACTIONS(2835), - [anon_sym_mutable] = ACTIONS(2835), - [anon_sym_constinit] = ACTIONS(2835), - [anon_sym_consteval] = ACTIONS(2835), - [anon_sym_alignas] = ACTIONS(2835), - [anon_sym__Alignas] = ACTIONS(2835), - [sym_primitive_type] = ACTIONS(2835), - [anon_sym_enum] = ACTIONS(2835), - [anon_sym_class] = ACTIONS(2835), - [anon_sym_struct] = ACTIONS(2835), - [anon_sym_union] = ACTIONS(2835), - [anon_sym_if] = ACTIONS(2835), - [anon_sym_switch] = ACTIONS(2835), - [anon_sym_case] = ACTIONS(2835), - [anon_sym_default] = ACTIONS(2835), - [anon_sym_while] = ACTIONS(2835), - [anon_sym_do] = ACTIONS(2835), - [anon_sym_for] = ACTIONS(2835), - [anon_sym_return] = ACTIONS(2835), - [anon_sym_break] = ACTIONS(2835), - [anon_sym_continue] = ACTIONS(2835), - [anon_sym_goto] = ACTIONS(2835), - [anon_sym___try] = ACTIONS(2835), - [anon_sym___leave] = ACTIONS(2835), - [anon_sym_not] = ACTIONS(2835), - [anon_sym_compl] = ACTIONS(2835), - [anon_sym_DASH_DASH] = ACTIONS(2837), - [anon_sym_PLUS_PLUS] = ACTIONS(2837), - [anon_sym_sizeof] = ACTIONS(2835), - [anon_sym___alignof__] = ACTIONS(2835), - [anon_sym___alignof] = ACTIONS(2835), - [anon_sym__alignof] = ACTIONS(2835), - [anon_sym_alignof] = ACTIONS(2835), - [anon_sym__Alignof] = ACTIONS(2835), - [anon_sym_offsetof] = ACTIONS(2835), - [anon_sym__Generic] = ACTIONS(2835), - [anon_sym_asm] = ACTIONS(2835), - [anon_sym___asm__] = ACTIONS(2835), - [anon_sym___asm] = ACTIONS(2835), - [sym_number_literal] = ACTIONS(2837), - [anon_sym_L_SQUOTE] = ACTIONS(2837), - [anon_sym_u_SQUOTE] = ACTIONS(2837), - [anon_sym_U_SQUOTE] = ACTIONS(2837), - [anon_sym_u8_SQUOTE] = ACTIONS(2837), - [anon_sym_SQUOTE] = ACTIONS(2837), - [anon_sym_L_DQUOTE] = ACTIONS(2837), - [anon_sym_u_DQUOTE] = ACTIONS(2837), - [anon_sym_U_DQUOTE] = ACTIONS(2837), - [anon_sym_u8_DQUOTE] = ACTIONS(2837), - [anon_sym_DQUOTE] = ACTIONS(2837), - [sym_true] = ACTIONS(2835), - [sym_false] = ACTIONS(2835), - [anon_sym_NULL] = ACTIONS(2835), - [anon_sym_nullptr] = ACTIONS(2835), + [808] = { + [sym_identifier] = ACTIONS(2779), + [aux_sym_preproc_include_token1] = ACTIONS(2779), + [aux_sym_preproc_def_token1] = ACTIONS(2779), + [aux_sym_preproc_if_token1] = ACTIONS(2779), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2779), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2779), + [sym_preproc_directive] = ACTIONS(2779), + [anon_sym_LPAREN2] = ACTIONS(2781), + [anon_sym_BANG] = ACTIONS(2781), + [anon_sym_TILDE] = ACTIONS(2781), + [anon_sym_DASH] = ACTIONS(2779), + [anon_sym_PLUS] = ACTIONS(2779), + [anon_sym_STAR] = ACTIONS(2781), + [anon_sym_AMP_AMP] = ACTIONS(2781), + [anon_sym_AMP] = ACTIONS(2779), + [anon_sym_SEMI] = ACTIONS(2781), + [anon_sym___extension__] = ACTIONS(2779), + [anon_sym_typedef] = ACTIONS(2779), + [anon_sym_virtual] = ACTIONS(2779), + [anon_sym_extern] = ACTIONS(2779), + [anon_sym___attribute__] = ACTIONS(2779), + [anon_sym___attribute] = ACTIONS(2779), + [anon_sym_using] = ACTIONS(2779), + [anon_sym_COLON_COLON] = ACTIONS(2781), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2781), + [anon_sym___declspec] = ACTIONS(2779), + [anon_sym___based] = ACTIONS(2779), + [anon_sym___cdecl] = ACTIONS(2779), + [anon_sym___clrcall] = ACTIONS(2779), + [anon_sym___stdcall] = ACTIONS(2779), + [anon_sym___fastcall] = ACTIONS(2779), + [anon_sym___thiscall] = ACTIONS(2779), + [anon_sym___vectorcall] = ACTIONS(2779), + [anon_sym_LBRACE] = ACTIONS(2781), + [anon_sym_RBRACE] = ACTIONS(2781), + [anon_sym_signed] = ACTIONS(2779), + [anon_sym_unsigned] = ACTIONS(2779), + [anon_sym_long] = ACTIONS(2779), + [anon_sym_short] = ACTIONS(2779), + [anon_sym_LBRACK] = ACTIONS(2779), + [anon_sym_static] = ACTIONS(2779), + [anon_sym_register] = ACTIONS(2779), + [anon_sym_inline] = ACTIONS(2779), + [anon_sym___inline] = ACTIONS(2779), + [anon_sym___inline__] = ACTIONS(2779), + [anon_sym___forceinline] = ACTIONS(2779), + [anon_sym_thread_local] = ACTIONS(2779), + [anon_sym___thread] = ACTIONS(2779), + [anon_sym_const] = ACTIONS(2779), + [anon_sym_constexpr] = ACTIONS(2779), + [anon_sym_volatile] = ACTIONS(2779), + [anon_sym_restrict] = ACTIONS(2779), + [anon_sym___restrict__] = ACTIONS(2779), + [anon_sym__Atomic] = ACTIONS(2779), + [anon_sym__Noreturn] = ACTIONS(2779), + [anon_sym_noreturn] = ACTIONS(2779), + [anon_sym__Nonnull] = ACTIONS(2779), + [anon_sym_mutable] = ACTIONS(2779), + [anon_sym_constinit] = ACTIONS(2779), + [anon_sym_consteval] = ACTIONS(2779), + [anon_sym_alignas] = ACTIONS(2779), + [anon_sym__Alignas] = ACTIONS(2779), + [sym_primitive_type] = ACTIONS(2779), + [anon_sym_enum] = ACTIONS(2779), + [anon_sym_class] = ACTIONS(2779), + [anon_sym_struct] = ACTIONS(2779), + [anon_sym_union] = ACTIONS(2779), + [anon_sym_if] = ACTIONS(2779), + [anon_sym_switch] = ACTIONS(2779), + [anon_sym_case] = ACTIONS(2779), + [anon_sym_default] = ACTIONS(2779), + [anon_sym_while] = ACTIONS(2779), + [anon_sym_do] = ACTIONS(2779), + [anon_sym_for] = ACTIONS(2779), + [anon_sym_return] = ACTIONS(2779), + [anon_sym_break] = ACTIONS(2779), + [anon_sym_continue] = ACTIONS(2779), + [anon_sym_goto] = ACTIONS(2779), + [anon_sym___try] = ACTIONS(2779), + [anon_sym___leave] = ACTIONS(2779), + [anon_sym_not] = ACTIONS(2779), + [anon_sym_compl] = ACTIONS(2779), + [anon_sym_DASH_DASH] = ACTIONS(2781), + [anon_sym_PLUS_PLUS] = ACTIONS(2781), + [anon_sym_sizeof] = ACTIONS(2779), + [anon_sym___alignof__] = ACTIONS(2779), + [anon_sym___alignof] = ACTIONS(2779), + [anon_sym__alignof] = ACTIONS(2779), + [anon_sym_alignof] = ACTIONS(2779), + [anon_sym__Alignof] = ACTIONS(2779), + [anon_sym_offsetof] = ACTIONS(2779), + [anon_sym__Generic] = ACTIONS(2779), + [anon_sym_asm] = ACTIONS(2779), + [anon_sym___asm__] = ACTIONS(2779), + [anon_sym___asm] = ACTIONS(2779), + [sym_number_literal] = ACTIONS(2781), + [anon_sym_L_SQUOTE] = ACTIONS(2781), + [anon_sym_u_SQUOTE] = ACTIONS(2781), + [anon_sym_U_SQUOTE] = ACTIONS(2781), + [anon_sym_u8_SQUOTE] = ACTIONS(2781), + [anon_sym_SQUOTE] = ACTIONS(2781), + [anon_sym_L_DQUOTE] = ACTIONS(2781), + [anon_sym_u_DQUOTE] = ACTIONS(2781), + [anon_sym_U_DQUOTE] = ACTIONS(2781), + [anon_sym_u8_DQUOTE] = ACTIONS(2781), + [anon_sym_DQUOTE] = ACTIONS(2781), + [sym_true] = ACTIONS(2779), + [sym_false] = ACTIONS(2779), + [anon_sym_NULL] = ACTIONS(2779), + [anon_sym_nullptr] = ACTIONS(2779), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2835), - [anon_sym_decltype] = ACTIONS(2835), - [anon_sym_explicit] = ACTIONS(2835), - [anon_sym_typename] = ACTIONS(2835), - [anon_sym_template] = ACTIONS(2835), - [anon_sym_operator] = ACTIONS(2835), - [anon_sym_try] = ACTIONS(2835), - [anon_sym_delete] = ACTIONS(2835), - [anon_sym_throw] = ACTIONS(2835), - [anon_sym_namespace] = ACTIONS(2835), - [anon_sym_static_assert] = ACTIONS(2835), - [anon_sym_concept] = ACTIONS(2835), - [anon_sym_co_return] = ACTIONS(2835), - [anon_sym_co_yield] = ACTIONS(2835), - [anon_sym_R_DQUOTE] = ACTIONS(2837), - [anon_sym_LR_DQUOTE] = ACTIONS(2837), - [anon_sym_uR_DQUOTE] = ACTIONS(2837), - [anon_sym_UR_DQUOTE] = ACTIONS(2837), - [anon_sym_u8R_DQUOTE] = ACTIONS(2837), - [anon_sym_co_await] = ACTIONS(2835), - [anon_sym_new] = ACTIONS(2835), - [anon_sym_requires] = ACTIONS(2835), - [sym_this] = ACTIONS(2835), + [sym_auto] = ACTIONS(2779), + [anon_sym_decltype] = ACTIONS(2779), + [anon_sym_explicit] = ACTIONS(2779), + [anon_sym_typename] = ACTIONS(2779), + [anon_sym_template] = ACTIONS(2779), + [anon_sym_operator] = ACTIONS(2779), + [anon_sym_try] = ACTIONS(2779), + [anon_sym_delete] = ACTIONS(2779), + [anon_sym_throw] = ACTIONS(2779), + [anon_sym_namespace] = ACTIONS(2779), + [anon_sym_static_assert] = ACTIONS(2779), + [anon_sym_concept] = ACTIONS(2779), + [anon_sym_co_return] = ACTIONS(2779), + [anon_sym_co_yield] = ACTIONS(2779), + [anon_sym_R_DQUOTE] = ACTIONS(2781), + [anon_sym_LR_DQUOTE] = ACTIONS(2781), + [anon_sym_uR_DQUOTE] = ACTIONS(2781), + [anon_sym_UR_DQUOTE] = ACTIONS(2781), + [anon_sym_u8R_DQUOTE] = ACTIONS(2781), + [anon_sym_co_await] = ACTIONS(2779), + [anon_sym_new] = ACTIONS(2779), + [anon_sym_requires] = ACTIONS(2779), + [sym_this] = ACTIONS(2779), }, - [793] = { - [sym_identifier] = ACTIONS(3071), - [aux_sym_preproc_include_token1] = ACTIONS(3071), - [aux_sym_preproc_def_token1] = ACTIONS(3071), - [aux_sym_preproc_if_token1] = ACTIONS(3071), - [aux_sym_preproc_if_token2] = ACTIONS(3071), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3071), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3071), - [sym_preproc_directive] = ACTIONS(3071), - [anon_sym_LPAREN2] = ACTIONS(3073), - [anon_sym_BANG] = ACTIONS(3073), - [anon_sym_TILDE] = ACTIONS(3073), - [anon_sym_DASH] = ACTIONS(3071), - [anon_sym_PLUS] = ACTIONS(3071), - [anon_sym_STAR] = ACTIONS(3073), - [anon_sym_AMP_AMP] = ACTIONS(3073), - [anon_sym_AMP] = ACTIONS(3071), - [anon_sym_SEMI] = ACTIONS(3073), - [anon_sym___extension__] = ACTIONS(3071), - [anon_sym_typedef] = ACTIONS(3071), - [anon_sym_virtual] = ACTIONS(3071), - [anon_sym_extern] = ACTIONS(3071), - [anon_sym___attribute__] = ACTIONS(3071), - [anon_sym___attribute] = ACTIONS(3071), - [anon_sym_using] = ACTIONS(3071), - [anon_sym_COLON_COLON] = ACTIONS(3073), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3073), - [anon_sym___declspec] = ACTIONS(3071), - [anon_sym___based] = ACTIONS(3071), - [anon_sym___cdecl] = ACTIONS(3071), - [anon_sym___clrcall] = ACTIONS(3071), - [anon_sym___stdcall] = ACTIONS(3071), - [anon_sym___fastcall] = ACTIONS(3071), - [anon_sym___thiscall] = ACTIONS(3071), - [anon_sym___vectorcall] = ACTIONS(3071), - [anon_sym_LBRACE] = ACTIONS(3073), - [anon_sym_signed] = ACTIONS(3071), - [anon_sym_unsigned] = ACTIONS(3071), - [anon_sym_long] = ACTIONS(3071), - [anon_sym_short] = ACTIONS(3071), - [anon_sym_LBRACK] = ACTIONS(3071), - [anon_sym_static] = ACTIONS(3071), - [anon_sym_register] = ACTIONS(3071), - [anon_sym_inline] = ACTIONS(3071), - [anon_sym___inline] = ACTIONS(3071), - [anon_sym___inline__] = ACTIONS(3071), - [anon_sym___forceinline] = ACTIONS(3071), - [anon_sym_thread_local] = ACTIONS(3071), - [anon_sym___thread] = ACTIONS(3071), - [anon_sym_const] = ACTIONS(3071), - [anon_sym_constexpr] = ACTIONS(3071), - [anon_sym_volatile] = ACTIONS(3071), - [anon_sym_restrict] = ACTIONS(3071), - [anon_sym___restrict__] = ACTIONS(3071), - [anon_sym__Atomic] = ACTIONS(3071), - [anon_sym__Noreturn] = ACTIONS(3071), - [anon_sym_noreturn] = ACTIONS(3071), - [anon_sym__Nonnull] = ACTIONS(3071), - [anon_sym_mutable] = ACTIONS(3071), - [anon_sym_constinit] = ACTIONS(3071), - [anon_sym_consteval] = ACTIONS(3071), - [anon_sym_alignas] = ACTIONS(3071), - [anon_sym__Alignas] = ACTIONS(3071), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(3071), - [anon_sym_class] = ACTIONS(3071), - [anon_sym_struct] = ACTIONS(3071), - [anon_sym_union] = ACTIONS(3071), - [anon_sym_if] = ACTIONS(3071), - [anon_sym_switch] = ACTIONS(3071), - [anon_sym_case] = ACTIONS(3071), - [anon_sym_default] = ACTIONS(3071), - [anon_sym_while] = ACTIONS(3071), - [anon_sym_do] = ACTIONS(3071), - [anon_sym_for] = ACTIONS(3071), - [anon_sym_return] = ACTIONS(3071), - [anon_sym_break] = ACTIONS(3071), - [anon_sym_continue] = ACTIONS(3071), - [anon_sym_goto] = ACTIONS(3071), - [anon_sym___try] = ACTIONS(3071), - [anon_sym___leave] = ACTIONS(3071), - [anon_sym_not] = ACTIONS(3071), - [anon_sym_compl] = ACTIONS(3071), - [anon_sym_DASH_DASH] = ACTIONS(3073), - [anon_sym_PLUS_PLUS] = ACTIONS(3073), - [anon_sym_sizeof] = ACTIONS(3071), - [anon_sym___alignof__] = ACTIONS(3071), - [anon_sym___alignof] = ACTIONS(3071), - [anon_sym__alignof] = ACTIONS(3071), - [anon_sym_alignof] = ACTIONS(3071), - [anon_sym__Alignof] = ACTIONS(3071), - [anon_sym_offsetof] = ACTIONS(3071), - [anon_sym__Generic] = ACTIONS(3071), - [anon_sym_asm] = ACTIONS(3071), - [anon_sym___asm__] = ACTIONS(3071), - [anon_sym___asm] = ACTIONS(3071), - [sym_number_literal] = ACTIONS(3073), - [anon_sym_L_SQUOTE] = ACTIONS(3073), - [anon_sym_u_SQUOTE] = ACTIONS(3073), - [anon_sym_U_SQUOTE] = ACTIONS(3073), - [anon_sym_u8_SQUOTE] = ACTIONS(3073), - [anon_sym_SQUOTE] = ACTIONS(3073), - [anon_sym_L_DQUOTE] = ACTIONS(3073), - [anon_sym_u_DQUOTE] = ACTIONS(3073), - [anon_sym_U_DQUOTE] = ACTIONS(3073), - [anon_sym_u8_DQUOTE] = ACTIONS(3073), - [anon_sym_DQUOTE] = ACTIONS(3073), - [sym_true] = ACTIONS(3071), - [sym_false] = ACTIONS(3071), - [anon_sym_NULL] = ACTIONS(3071), - [anon_sym_nullptr] = ACTIONS(3071), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3071), - [anon_sym_decltype] = ACTIONS(3071), - [anon_sym_explicit] = ACTIONS(3071), - [anon_sym_typename] = ACTIONS(3071), - [anon_sym_template] = ACTIONS(3071), - [anon_sym_operator] = ACTIONS(3071), - [anon_sym_try] = ACTIONS(3071), - [anon_sym_delete] = ACTIONS(3071), - [anon_sym_throw] = ACTIONS(3071), - [anon_sym_namespace] = ACTIONS(3071), - [anon_sym_static_assert] = ACTIONS(3071), - [anon_sym_concept] = ACTIONS(3071), - [anon_sym_co_return] = ACTIONS(3071), - [anon_sym_co_yield] = ACTIONS(3071), - [anon_sym_R_DQUOTE] = ACTIONS(3073), - [anon_sym_LR_DQUOTE] = ACTIONS(3073), - [anon_sym_uR_DQUOTE] = ACTIONS(3073), - [anon_sym_UR_DQUOTE] = ACTIONS(3073), - [anon_sym_u8R_DQUOTE] = ACTIONS(3073), - [anon_sym_co_await] = ACTIONS(3071), - [anon_sym_new] = ACTIONS(3071), - [anon_sym_requires] = ACTIONS(3071), - [sym_this] = ACTIONS(3071), + [809] = { + [sym_identifier] = ACTIONS(2855), + [aux_sym_preproc_include_token1] = ACTIONS(2855), + [aux_sym_preproc_def_token1] = ACTIONS(2855), + [aux_sym_preproc_if_token1] = ACTIONS(2855), + [aux_sym_preproc_if_token2] = ACTIONS(2855), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2855), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2855), + [sym_preproc_directive] = ACTIONS(2855), + [anon_sym_LPAREN2] = ACTIONS(2857), + [anon_sym_BANG] = ACTIONS(2857), + [anon_sym_TILDE] = ACTIONS(2857), + [anon_sym_DASH] = ACTIONS(2855), + [anon_sym_PLUS] = ACTIONS(2855), + [anon_sym_STAR] = ACTIONS(2857), + [anon_sym_AMP_AMP] = ACTIONS(2857), + [anon_sym_AMP] = ACTIONS(2855), + [anon_sym_SEMI] = ACTIONS(2857), + [anon_sym___extension__] = ACTIONS(2855), + [anon_sym_typedef] = ACTIONS(2855), + [anon_sym_virtual] = ACTIONS(2855), + [anon_sym_extern] = ACTIONS(2855), + [anon_sym___attribute__] = ACTIONS(2855), + [anon_sym___attribute] = ACTIONS(2855), + [anon_sym_using] = ACTIONS(2855), + [anon_sym_COLON_COLON] = ACTIONS(2857), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2857), + [anon_sym___declspec] = ACTIONS(2855), + [anon_sym___based] = ACTIONS(2855), + [anon_sym___cdecl] = ACTIONS(2855), + [anon_sym___clrcall] = ACTIONS(2855), + [anon_sym___stdcall] = ACTIONS(2855), + [anon_sym___fastcall] = ACTIONS(2855), + [anon_sym___thiscall] = ACTIONS(2855), + [anon_sym___vectorcall] = ACTIONS(2855), + [anon_sym_LBRACE] = ACTIONS(2857), + [anon_sym_signed] = ACTIONS(2855), + [anon_sym_unsigned] = ACTIONS(2855), + [anon_sym_long] = ACTIONS(2855), + [anon_sym_short] = ACTIONS(2855), + [anon_sym_LBRACK] = ACTIONS(2855), + [anon_sym_static] = ACTIONS(2855), + [anon_sym_register] = ACTIONS(2855), + [anon_sym_inline] = ACTIONS(2855), + [anon_sym___inline] = ACTIONS(2855), + [anon_sym___inline__] = ACTIONS(2855), + [anon_sym___forceinline] = ACTIONS(2855), + [anon_sym_thread_local] = ACTIONS(2855), + [anon_sym___thread] = ACTIONS(2855), + [anon_sym_const] = ACTIONS(2855), + [anon_sym_constexpr] = ACTIONS(2855), + [anon_sym_volatile] = ACTIONS(2855), + [anon_sym_restrict] = ACTIONS(2855), + [anon_sym___restrict__] = ACTIONS(2855), + [anon_sym__Atomic] = ACTIONS(2855), + [anon_sym__Noreturn] = ACTIONS(2855), + [anon_sym_noreturn] = ACTIONS(2855), + [anon_sym__Nonnull] = ACTIONS(2855), + [anon_sym_mutable] = ACTIONS(2855), + [anon_sym_constinit] = ACTIONS(2855), + [anon_sym_consteval] = ACTIONS(2855), + [anon_sym_alignas] = ACTIONS(2855), + [anon_sym__Alignas] = ACTIONS(2855), + [sym_primitive_type] = ACTIONS(2855), + [anon_sym_enum] = ACTIONS(2855), + [anon_sym_class] = ACTIONS(2855), + [anon_sym_struct] = ACTIONS(2855), + [anon_sym_union] = ACTIONS(2855), + [anon_sym_if] = ACTIONS(2855), + [anon_sym_switch] = ACTIONS(2855), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_default] = ACTIONS(2855), + [anon_sym_while] = ACTIONS(2855), + [anon_sym_do] = ACTIONS(2855), + [anon_sym_for] = ACTIONS(2855), + [anon_sym_return] = ACTIONS(2855), + [anon_sym_break] = ACTIONS(2855), + [anon_sym_continue] = ACTIONS(2855), + [anon_sym_goto] = ACTIONS(2855), + [anon_sym___try] = ACTIONS(2855), + [anon_sym___leave] = ACTIONS(2855), + [anon_sym_not] = ACTIONS(2855), + [anon_sym_compl] = ACTIONS(2855), + [anon_sym_DASH_DASH] = ACTIONS(2857), + [anon_sym_PLUS_PLUS] = ACTIONS(2857), + [anon_sym_sizeof] = ACTIONS(2855), + [anon_sym___alignof__] = ACTIONS(2855), + [anon_sym___alignof] = ACTIONS(2855), + [anon_sym__alignof] = ACTIONS(2855), + [anon_sym_alignof] = ACTIONS(2855), + [anon_sym__Alignof] = ACTIONS(2855), + [anon_sym_offsetof] = ACTIONS(2855), + [anon_sym__Generic] = ACTIONS(2855), + [anon_sym_asm] = ACTIONS(2855), + [anon_sym___asm__] = ACTIONS(2855), + [anon_sym___asm] = ACTIONS(2855), + [sym_number_literal] = ACTIONS(2857), + [anon_sym_L_SQUOTE] = ACTIONS(2857), + [anon_sym_u_SQUOTE] = ACTIONS(2857), + [anon_sym_U_SQUOTE] = ACTIONS(2857), + [anon_sym_u8_SQUOTE] = ACTIONS(2857), + [anon_sym_SQUOTE] = ACTIONS(2857), + [anon_sym_L_DQUOTE] = ACTIONS(2857), + [anon_sym_u_DQUOTE] = ACTIONS(2857), + [anon_sym_U_DQUOTE] = ACTIONS(2857), + [anon_sym_u8_DQUOTE] = ACTIONS(2857), + [anon_sym_DQUOTE] = ACTIONS(2857), + [sym_true] = ACTIONS(2855), + [sym_false] = ACTIONS(2855), + [anon_sym_NULL] = ACTIONS(2855), + [anon_sym_nullptr] = ACTIONS(2855), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2855), + [anon_sym_decltype] = ACTIONS(2855), + [anon_sym_explicit] = ACTIONS(2855), + [anon_sym_typename] = ACTIONS(2855), + [anon_sym_template] = ACTIONS(2855), + [anon_sym_operator] = ACTIONS(2855), + [anon_sym_try] = ACTIONS(2855), + [anon_sym_delete] = ACTIONS(2855), + [anon_sym_throw] = ACTIONS(2855), + [anon_sym_namespace] = ACTIONS(2855), + [anon_sym_static_assert] = ACTIONS(2855), + [anon_sym_concept] = ACTIONS(2855), + [anon_sym_co_return] = ACTIONS(2855), + [anon_sym_co_yield] = ACTIONS(2855), + [anon_sym_R_DQUOTE] = ACTIONS(2857), + [anon_sym_LR_DQUOTE] = ACTIONS(2857), + [anon_sym_uR_DQUOTE] = ACTIONS(2857), + [anon_sym_UR_DQUOTE] = ACTIONS(2857), + [anon_sym_u8R_DQUOTE] = ACTIONS(2857), + [anon_sym_co_await] = ACTIONS(2855), + [anon_sym_new] = ACTIONS(2855), + [anon_sym_requires] = ACTIONS(2855), + [sym_this] = ACTIONS(2855), }, - [794] = { - [sym_expression] = STATE(3797), - [sym__string] = STATE(4199), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(2935), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(2935), - [sym_call_expression] = STATE(2935), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(2935), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(2935), - [sym_initializer_list] = STATE(3805), - [sym_char_literal] = STATE(4199), - [sym_concatenated_string] = STATE(4199), - [sym_string_literal] = STATE(3059), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3059), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2935), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(2935), + [810] = { + [sym_expression] = STATE(3759), + [sym__string] = STATE(4269), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(2921), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(2921), + [sym_call_expression] = STATE(2921), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(2921), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(2921), + [sym_initializer_list] = STATE(3899), + [sym_char_literal] = STATE(4269), + [sym_concatenated_string] = STATE(4269), + [sym_string_literal] = STATE(3102), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3102), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2921), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(2921), [sym_identifier] = ACTIONS(1942), [anon_sym_DOT_DOT_DOT] = ACTIONS(1944), [anon_sym_COMMA] = ACTIONS(1944), @@ -155112,8 +157615,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_elifdef_token1] = ACTIONS(1944), [aux_sym_preproc_elifdef_token2] = ACTIONS(1944), [anon_sym_LPAREN2] = ACTIONS(1944), - [anon_sym_BANG] = ACTIONS(3607), - [anon_sym_TILDE] = ACTIONS(3609), + [anon_sym_BANG] = ACTIONS(3615), + [anon_sym_TILDE] = ACTIONS(3617), [anon_sym_DASH] = ACTIONS(1942), [anon_sym_PLUS] = ACTIONS(1942), [anon_sym_STAR] = ACTIONS(1944), @@ -155132,14 +157635,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(1942), [anon_sym_LT_LT] = ACTIONS(1944), [anon_sym_GT_GT] = ACTIONS(1944), - [anon_sym___extension__] = ACTIONS(3611), - [anon_sym_COLON_COLON] = ACTIONS(3613), - [anon_sym_LBRACE] = ACTIONS(3615), + [anon_sym___extension__] = ACTIONS(3619), + [anon_sym_COLON_COLON] = ACTIONS(3621), + [anon_sym_LBRACE] = ACTIONS(3623), [anon_sym_LBRACK] = ACTIONS(1944), - [sym_primitive_type] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_QMARK] = ACTIONS(1944), - [anon_sym_not] = ACTIONS(3607), - [anon_sym_compl] = ACTIONS(3607), + [anon_sym_not] = ACTIONS(3615), + [anon_sym_compl] = ACTIONS(3615), [anon_sym_LT_EQ_GT] = ACTIONS(1944), [anon_sym_or] = ACTIONS(1942), [anon_sym_and] = ACTIONS(1942), @@ -155149,7 +157652,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_not_eq] = ACTIONS(1942), [anon_sym_DASH_DASH] = ACTIONS(1944), [anon_sym_PLUS_PLUS] = ACTIONS(1944), - [anon_sym_sizeof] = ACTIONS(3617), + [anon_sym_sizeof] = ACTIONS(3625), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -155163,128 +157666,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(1942), [anon_sym_DOT_STAR] = ACTIONS(1944), [anon_sym_DASH_GT] = ACTIONS(1944), - [sym_number_literal] = ACTIONS(3619), - [anon_sym_L_SQUOTE] = ACTIONS(3621), - [anon_sym_u_SQUOTE] = ACTIONS(3621), - [anon_sym_U_SQUOTE] = ACTIONS(3621), - [anon_sym_u8_SQUOTE] = ACTIONS(3621), - [anon_sym_SQUOTE] = ACTIONS(3621), - [anon_sym_L_DQUOTE] = ACTIONS(3623), - [anon_sym_u_DQUOTE] = ACTIONS(3623), - [anon_sym_U_DQUOTE] = ACTIONS(3623), - [anon_sym_u8_DQUOTE] = ACTIONS(3623), - [anon_sym_DQUOTE] = ACTIONS(3623), + [sym_number_literal] = ACTIONS(3627), + [anon_sym_L_SQUOTE] = ACTIONS(3629), + [anon_sym_u_SQUOTE] = ACTIONS(3629), + [anon_sym_U_SQUOTE] = ACTIONS(3629), + [anon_sym_u8_SQUOTE] = ACTIONS(3629), + [anon_sym_SQUOTE] = ACTIONS(3629), + [anon_sym_L_DQUOTE] = ACTIONS(3631), + [anon_sym_u_DQUOTE] = ACTIONS(3631), + [anon_sym_U_DQUOTE] = ACTIONS(3631), + [anon_sym_u8_DQUOTE] = ACTIONS(3631), + [anon_sym_DQUOTE] = ACTIONS(3631), [sym_true] = ACTIONS(229), [sym_false] = ACTIONS(229), [anon_sym_NULL] = ACTIONS(123), [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3625), - [anon_sym_R_DQUOTE] = ACTIONS(3627), - [anon_sym_LR_DQUOTE] = ACTIONS(3627), - [anon_sym_uR_DQUOTE] = ACTIONS(3627), - [anon_sym_UR_DQUOTE] = ACTIONS(3627), - [anon_sym_u8R_DQUOTE] = ACTIONS(3627), - [anon_sym_co_await] = ACTIONS(3629), - [anon_sym_new] = ACTIONS(3631), - [anon_sym_requires] = ACTIONS(3633), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3633), + [anon_sym_R_DQUOTE] = ACTIONS(3635), + [anon_sym_LR_DQUOTE] = ACTIONS(3635), + [anon_sym_uR_DQUOTE] = ACTIONS(3635), + [anon_sym_UR_DQUOTE] = ACTIONS(3635), + [anon_sym_u8R_DQUOTE] = ACTIONS(3635), + [anon_sym_co_await] = ACTIONS(3637), + [anon_sym_new] = ACTIONS(3639), + [anon_sym_requires] = ACTIONS(3641), [sym_this] = ACTIONS(229), }, - [795] = { - [sym_preproc_def] = STATE(804), - [sym_preproc_function_def] = STATE(804), - [sym_preproc_call] = STATE(804), - [sym_preproc_if_in_field_declaration_list] = STATE(804), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(804), - [sym_type_definition] = STATE(804), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(5498), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(3005), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6214), - [sym_array_declarator] = STATE(5998), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym__field_declaration_list_item] = STATE(804), - [sym_field_declaration] = STATE(804), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym_explicit_function_specifier] = STATE(1812), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(804), - [sym_operator_cast] = STATE(6839), - [sym_inline_method_definition] = STATE(804), - [sym__constructor_specifiers] = STATE(1812), - [sym_operator_cast_definition] = STATE(804), - [sym_operator_cast_declaration] = STATE(804), - [sym_constructor_or_destructor_definition] = STATE(804), - [sym_constructor_or_destructor_declaration] = STATE(804), - [sym_friend_declaration] = STATE(804), - [sym_access_specifier] = STATE(7967), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(2406), - [sym_template_function] = STATE(5998), - [sym_using_declaration] = STATE(804), - [sym_alias_declaration] = STATE(804), - [sym_static_assert_declaration] = STATE(804), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5478), - [sym_qualified_identifier] = STATE(5998), - [sym_qualified_type_identifier] = STATE(3015), - [sym_qualified_operator_cast_identifier] = STATE(6839), - [sym_operator_name] = STATE(5998), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(804), - [aux_sym__declaration_specifiers_repeat1] = STATE(1993), - [aux_sym_attributed_declarator_repeat1] = STATE(7067), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1812), - [sym_identifier] = ACTIONS(2959), - [aux_sym_preproc_def_token1] = ACTIONS(3635), - [aux_sym_preproc_if_token1] = ACTIONS(3637), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3639), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3639), - [sym_preproc_directive] = ACTIONS(3641), - [anon_sym_LPAREN2] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2979), - [anon_sym_STAR] = ACTIONS(2981), + [811] = { + [sym_preproc_def] = STATE(814), + [sym_preproc_function_def] = STATE(814), + [sym_preproc_call] = STATE(814), + [sym_preproc_if_in_field_declaration_list] = STATE(814), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(814), + [sym_type_definition] = STATE(814), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(5714), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(3133), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6293), + [sym_array_declarator] = STATE(6145), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym__field_declaration_list_item] = STATE(814), + [sym_field_declaration] = STATE(814), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym_explicit_function_specifier] = STATE(1759), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(814), + [sym_operator_cast] = STATE(6942), + [sym_inline_method_definition] = STATE(814), + [sym__constructor_specifiers] = STATE(1759), + [sym_operator_cast_definition] = STATE(814), + [sym_operator_cast_declaration] = STATE(814), + [sym_constructor_or_destructor_definition] = STATE(814), + [sym_constructor_or_destructor_declaration] = STATE(814), + [sym_friend_declaration] = STATE(814), + [sym_access_specifier] = STATE(8896), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(2439), + [sym_template_function] = STATE(6145), + [sym_using_declaration] = STATE(814), + [sym_alias_declaration] = STATE(814), + [sym_static_assert_declaration] = STATE(814), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5557), + [sym_qualified_identifier] = STATE(6145), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6942), + [sym_operator_name] = STATE(6145), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(814), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_attributed_declarator_repeat1] = STATE(7239), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1759), + [sym_identifier] = ACTIONS(2979), + [aux_sym_preproc_def_token1] = ACTIONS(3643), + [aux_sym_preproc_if_token1] = ACTIONS(3645), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3647), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3647), + [sym_preproc_directive] = ACTIONS(3649), + [anon_sym_LPAREN2] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(3001), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2983), - [anon_sym_SEMI] = ACTIONS(3643), - [anon_sym___extension__] = ACTIONS(3645), - [anon_sym_typedef] = ACTIONS(3647), + [anon_sym_AMP] = ACTIONS(3003), + [anon_sym_SEMI] = ACTIONS(3651), + [anon_sym___extension__] = ACTIONS(3653), + [anon_sym_typedef] = ACTIONS(3655), [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(3649), - [anon_sym_COLON_COLON] = ACTIONS(2993), + [anon_sym_using] = ACTIONS(3657), + [anon_sym_COLON_COLON] = ACTIONS(3013), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(3651), + [anon_sym_RBRACE] = ACTIONS(3659), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2995), + [anon_sym_LBRACK] = ACTIONS(3015), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -155294,7 +157797,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread_local] = ACTIONS(63), [anon_sym___thread] = ACTIONS(63), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(3653), + [anon_sym_constexpr] = ACTIONS(3661), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -155307,117 +157810,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2999), - [anon_sym_enum] = ACTIONS(3001), - [anon_sym_class] = ACTIONS(3003), - [anon_sym_struct] = ACTIONS(3005), - [anon_sym_union] = ACTIONS(3007), + [sym_primitive_type] = ACTIONS(3019), + [anon_sym_enum] = ACTIONS(3021), + [anon_sym_class] = ACTIONS(3023), + [anon_sym_struct] = ACTIONS(3025), + [anon_sym_union] = ACTIONS(3027), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(3009), - [anon_sym_private] = ACTIONS(3011), - [anon_sym_template] = ACTIONS(3655), + [anon_sym_typename] = ACTIONS(3029), + [anon_sym_private] = ACTIONS(3031), + [anon_sym_template] = ACTIONS(3663), [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(3657), - [anon_sym_public] = ACTIONS(3011), - [anon_sym_protected] = ACTIONS(3011), - [anon_sym_static_assert] = ACTIONS(3659), + [anon_sym_friend] = ACTIONS(3665), + [anon_sym_public] = ACTIONS(3031), + [anon_sym_protected] = ACTIONS(3031), + [anon_sym_static_assert] = ACTIONS(3667), }, - [796] = { - [sym_preproc_def] = STATE(810), - [sym_preproc_function_def] = STATE(810), - [sym_preproc_call] = STATE(810), - [sym_preproc_if_in_field_declaration_list] = STATE(810), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(810), - [sym_type_definition] = STATE(810), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(5498), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(3005), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6214), - [sym_array_declarator] = STATE(5998), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym__field_declaration_list_item] = STATE(810), - [sym_field_declaration] = STATE(810), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym_explicit_function_specifier] = STATE(1812), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(810), - [sym_operator_cast] = STATE(6839), - [sym_inline_method_definition] = STATE(810), - [sym__constructor_specifiers] = STATE(1812), - [sym_operator_cast_definition] = STATE(810), - [sym_operator_cast_declaration] = STATE(810), - [sym_constructor_or_destructor_definition] = STATE(810), - [sym_constructor_or_destructor_declaration] = STATE(810), - [sym_friend_declaration] = STATE(810), - [sym_access_specifier] = STATE(7967), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(2406), - [sym_template_function] = STATE(5998), - [sym_using_declaration] = STATE(810), - [sym_alias_declaration] = STATE(810), - [sym_static_assert_declaration] = STATE(810), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5478), - [sym_qualified_identifier] = STATE(5998), - [sym_qualified_type_identifier] = STATE(3015), - [sym_qualified_operator_cast_identifier] = STATE(6839), - [sym_operator_name] = STATE(5998), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(810), - [aux_sym__declaration_specifiers_repeat1] = STATE(1993), - [aux_sym_attributed_declarator_repeat1] = STATE(7067), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1812), - [sym_identifier] = ACTIONS(2959), - [aux_sym_preproc_def_token1] = ACTIONS(3635), - [aux_sym_preproc_if_token1] = ACTIONS(3637), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3639), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3639), - [sym_preproc_directive] = ACTIONS(3641), - [anon_sym_LPAREN2] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2979), - [anon_sym_STAR] = ACTIONS(2981), + [812] = { + [sym_preproc_def] = STATE(813), + [sym_preproc_function_def] = STATE(813), + [sym_preproc_call] = STATE(813), + [sym_preproc_if_in_field_declaration_list] = STATE(813), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(813), + [sym_type_definition] = STATE(813), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(5714), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(3133), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6293), + [sym_array_declarator] = STATE(6145), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym__field_declaration_list_item] = STATE(813), + [sym_field_declaration] = STATE(813), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym_explicit_function_specifier] = STATE(1759), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(813), + [sym_operator_cast] = STATE(6942), + [sym_inline_method_definition] = STATE(813), + [sym__constructor_specifiers] = STATE(1759), + [sym_operator_cast_definition] = STATE(813), + [sym_operator_cast_declaration] = STATE(813), + [sym_constructor_or_destructor_definition] = STATE(813), + [sym_constructor_or_destructor_declaration] = STATE(813), + [sym_friend_declaration] = STATE(813), + [sym_access_specifier] = STATE(8896), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(2439), + [sym_template_function] = STATE(6145), + [sym_using_declaration] = STATE(813), + [sym_alias_declaration] = STATE(813), + [sym_static_assert_declaration] = STATE(813), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5557), + [sym_qualified_identifier] = STATE(6145), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6942), + [sym_operator_name] = STATE(6145), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(813), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_attributed_declarator_repeat1] = STATE(7239), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1759), + [sym_identifier] = ACTIONS(2979), + [aux_sym_preproc_def_token1] = ACTIONS(3643), + [aux_sym_preproc_if_token1] = ACTIONS(3645), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3647), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3647), + [sym_preproc_directive] = ACTIONS(3649), + [anon_sym_LPAREN2] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(3001), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2983), - [anon_sym_SEMI] = ACTIONS(3661), - [anon_sym___extension__] = ACTIONS(3645), - [anon_sym_typedef] = ACTIONS(3647), + [anon_sym_AMP] = ACTIONS(3003), + [anon_sym_SEMI] = ACTIONS(3669), + [anon_sym___extension__] = ACTIONS(3653), + [anon_sym_typedef] = ACTIONS(3655), [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(3649), - [anon_sym_COLON_COLON] = ACTIONS(2993), + [anon_sym_using] = ACTIONS(3657), + [anon_sym_COLON_COLON] = ACTIONS(3013), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(3663), + [anon_sym_RBRACE] = ACTIONS(3671), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2995), + [anon_sym_LBRACK] = ACTIONS(3015), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -155427,7 +157930,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread_local] = ACTIONS(63), [anon_sym___thread] = ACTIONS(63), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(3653), + [anon_sym_constexpr] = ACTIONS(3661), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -155440,117 +157943,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2999), - [anon_sym_enum] = ACTIONS(3001), - [anon_sym_class] = ACTIONS(3003), - [anon_sym_struct] = ACTIONS(3005), - [anon_sym_union] = ACTIONS(3007), + [sym_primitive_type] = ACTIONS(3019), + [anon_sym_enum] = ACTIONS(3021), + [anon_sym_class] = ACTIONS(3023), + [anon_sym_struct] = ACTIONS(3025), + [anon_sym_union] = ACTIONS(3027), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(3009), - [anon_sym_private] = ACTIONS(3011), - [anon_sym_template] = ACTIONS(3655), + [anon_sym_typename] = ACTIONS(3029), + [anon_sym_private] = ACTIONS(3031), + [anon_sym_template] = ACTIONS(3663), [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(3657), - [anon_sym_public] = ACTIONS(3011), - [anon_sym_protected] = ACTIONS(3011), - [anon_sym_static_assert] = ACTIONS(3659), + [anon_sym_friend] = ACTIONS(3665), + [anon_sym_public] = ACTIONS(3031), + [anon_sym_protected] = ACTIONS(3031), + [anon_sym_static_assert] = ACTIONS(3667), }, - [797] = { - [sym_preproc_def] = STATE(798), - [sym_preproc_function_def] = STATE(798), - [sym_preproc_call] = STATE(798), - [sym_preproc_if_in_field_declaration_list] = STATE(798), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(798), - [sym_type_definition] = STATE(798), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(5498), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(3005), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6214), - [sym_array_declarator] = STATE(5998), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym__field_declaration_list_item] = STATE(798), - [sym_field_declaration] = STATE(798), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym_explicit_function_specifier] = STATE(1812), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(798), - [sym_operator_cast] = STATE(6839), - [sym_inline_method_definition] = STATE(798), - [sym__constructor_specifiers] = STATE(1812), - [sym_operator_cast_definition] = STATE(798), - [sym_operator_cast_declaration] = STATE(798), - [sym_constructor_or_destructor_definition] = STATE(798), - [sym_constructor_or_destructor_declaration] = STATE(798), - [sym_friend_declaration] = STATE(798), - [sym_access_specifier] = STATE(7967), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(2406), - [sym_template_function] = STATE(5998), - [sym_using_declaration] = STATE(798), - [sym_alias_declaration] = STATE(798), - [sym_static_assert_declaration] = STATE(798), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5478), - [sym_qualified_identifier] = STATE(5998), - [sym_qualified_type_identifier] = STATE(3015), - [sym_qualified_operator_cast_identifier] = STATE(6839), - [sym_operator_name] = STATE(5998), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(798), - [aux_sym__declaration_specifiers_repeat1] = STATE(1993), - [aux_sym_attributed_declarator_repeat1] = STATE(7067), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1812), - [sym_identifier] = ACTIONS(2959), - [aux_sym_preproc_def_token1] = ACTIONS(3635), - [aux_sym_preproc_if_token1] = ACTIONS(3637), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3639), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3639), - [sym_preproc_directive] = ACTIONS(3641), - [anon_sym_LPAREN2] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2979), - [anon_sym_STAR] = ACTIONS(2981), + [813] = { + [sym_preproc_def] = STATE(814), + [sym_preproc_function_def] = STATE(814), + [sym_preproc_call] = STATE(814), + [sym_preproc_if_in_field_declaration_list] = STATE(814), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(814), + [sym_type_definition] = STATE(814), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(5714), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(3133), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6293), + [sym_array_declarator] = STATE(6145), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym__field_declaration_list_item] = STATE(814), + [sym_field_declaration] = STATE(814), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym_explicit_function_specifier] = STATE(1759), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(814), + [sym_operator_cast] = STATE(6942), + [sym_inline_method_definition] = STATE(814), + [sym__constructor_specifiers] = STATE(1759), + [sym_operator_cast_definition] = STATE(814), + [sym_operator_cast_declaration] = STATE(814), + [sym_constructor_or_destructor_definition] = STATE(814), + [sym_constructor_or_destructor_declaration] = STATE(814), + [sym_friend_declaration] = STATE(814), + [sym_access_specifier] = STATE(8896), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(2439), + [sym_template_function] = STATE(6145), + [sym_using_declaration] = STATE(814), + [sym_alias_declaration] = STATE(814), + [sym_static_assert_declaration] = STATE(814), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5557), + [sym_qualified_identifier] = STATE(6145), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6942), + [sym_operator_name] = STATE(6145), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(814), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_attributed_declarator_repeat1] = STATE(7239), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1759), + [sym_identifier] = ACTIONS(2979), + [aux_sym_preproc_def_token1] = ACTIONS(3643), + [aux_sym_preproc_if_token1] = ACTIONS(3645), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3647), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3647), + [sym_preproc_directive] = ACTIONS(3649), + [anon_sym_LPAREN2] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(3001), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2983), - [anon_sym_SEMI] = ACTIONS(3665), - [anon_sym___extension__] = ACTIONS(3645), - [anon_sym_typedef] = ACTIONS(3647), + [anon_sym_AMP] = ACTIONS(3003), + [anon_sym_SEMI] = ACTIONS(3651), + [anon_sym___extension__] = ACTIONS(3653), + [anon_sym_typedef] = ACTIONS(3655), [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(3649), - [anon_sym_COLON_COLON] = ACTIONS(2993), + [anon_sym_using] = ACTIONS(3657), + [anon_sym_COLON_COLON] = ACTIONS(3013), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(3667), + [anon_sym_RBRACE] = ACTIONS(3673), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2995), + [anon_sym_LBRACK] = ACTIONS(3015), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -155560,7 +158063,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread_local] = ACTIONS(63), [anon_sym___thread] = ACTIONS(63), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(3653), + [anon_sym_constexpr] = ACTIONS(3661), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -155573,117 +158076,250 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2999), - [anon_sym_enum] = ACTIONS(3001), - [anon_sym_class] = ACTIONS(3003), - [anon_sym_struct] = ACTIONS(3005), - [anon_sym_union] = ACTIONS(3007), + [sym_primitive_type] = ACTIONS(3019), + [anon_sym_enum] = ACTIONS(3021), + [anon_sym_class] = ACTIONS(3023), + [anon_sym_struct] = ACTIONS(3025), + [anon_sym_union] = ACTIONS(3027), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(3009), - [anon_sym_private] = ACTIONS(3011), - [anon_sym_template] = ACTIONS(3655), + [anon_sym_typename] = ACTIONS(3029), + [anon_sym_private] = ACTIONS(3031), + [anon_sym_template] = ACTIONS(3663), [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(3657), - [anon_sym_public] = ACTIONS(3011), - [anon_sym_protected] = ACTIONS(3011), - [anon_sym_static_assert] = ACTIONS(3659), + [anon_sym_friend] = ACTIONS(3665), + [anon_sym_public] = ACTIONS(3031), + [anon_sym_protected] = ACTIONS(3031), + [anon_sym_static_assert] = ACTIONS(3667), }, - [798] = { - [sym_preproc_def] = STATE(804), - [sym_preproc_function_def] = STATE(804), - [sym_preproc_call] = STATE(804), - [sym_preproc_if_in_field_declaration_list] = STATE(804), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(804), - [sym_type_definition] = STATE(804), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(5498), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(3005), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6214), - [sym_array_declarator] = STATE(5998), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym__field_declaration_list_item] = STATE(804), - [sym_field_declaration] = STATE(804), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym_explicit_function_specifier] = STATE(1812), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(804), - [sym_operator_cast] = STATE(6839), - [sym_inline_method_definition] = STATE(804), - [sym__constructor_specifiers] = STATE(1812), - [sym_operator_cast_definition] = STATE(804), - [sym_operator_cast_declaration] = STATE(804), - [sym_constructor_or_destructor_definition] = STATE(804), - [sym_constructor_or_destructor_declaration] = STATE(804), - [sym_friend_declaration] = STATE(804), - [sym_access_specifier] = STATE(7967), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(2406), - [sym_template_function] = STATE(5998), - [sym_using_declaration] = STATE(804), - [sym_alias_declaration] = STATE(804), - [sym_static_assert_declaration] = STATE(804), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5478), - [sym_qualified_identifier] = STATE(5998), - [sym_qualified_type_identifier] = STATE(3015), - [sym_qualified_operator_cast_identifier] = STATE(6839), - [sym_operator_name] = STATE(5998), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(804), - [aux_sym__declaration_specifiers_repeat1] = STATE(1993), - [aux_sym_attributed_declarator_repeat1] = STATE(7067), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1812), - [sym_identifier] = ACTIONS(2959), - [aux_sym_preproc_def_token1] = ACTIONS(3635), - [aux_sym_preproc_if_token1] = ACTIONS(3637), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3639), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3639), - [sym_preproc_directive] = ACTIONS(3641), - [anon_sym_LPAREN2] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2979), - [anon_sym_STAR] = ACTIONS(2981), + [814] = { + [sym_preproc_def] = STATE(814), + [sym_preproc_function_def] = STATE(814), + [sym_preproc_call] = STATE(814), + [sym_preproc_if_in_field_declaration_list] = STATE(814), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(814), + [sym_type_definition] = STATE(814), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(5714), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(3133), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6293), + [sym_array_declarator] = STATE(6145), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym__field_declaration_list_item] = STATE(814), + [sym_field_declaration] = STATE(814), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym_explicit_function_specifier] = STATE(1759), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(814), + [sym_operator_cast] = STATE(6942), + [sym_inline_method_definition] = STATE(814), + [sym__constructor_specifiers] = STATE(1759), + [sym_operator_cast_definition] = STATE(814), + [sym_operator_cast_declaration] = STATE(814), + [sym_constructor_or_destructor_definition] = STATE(814), + [sym_constructor_or_destructor_declaration] = STATE(814), + [sym_friend_declaration] = STATE(814), + [sym_access_specifier] = STATE(8896), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(2439), + [sym_template_function] = STATE(6145), + [sym_using_declaration] = STATE(814), + [sym_alias_declaration] = STATE(814), + [sym_static_assert_declaration] = STATE(814), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5557), + [sym_qualified_identifier] = STATE(6145), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6942), + [sym_operator_name] = STATE(6145), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(814), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_attributed_declarator_repeat1] = STATE(7239), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1759), + [sym_identifier] = ACTIONS(3473), + [aux_sym_preproc_def_token1] = ACTIONS(3675), + [aux_sym_preproc_if_token1] = ACTIONS(3678), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3681), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3681), + [sym_preproc_directive] = ACTIONS(3684), + [anon_sym_LPAREN2] = ACTIONS(3490), + [anon_sym_TILDE] = ACTIONS(3493), + [anon_sym_STAR] = ACTIONS(3496), + [anon_sym_AMP_AMP] = ACTIONS(3499), + [anon_sym_AMP] = ACTIONS(3502), + [anon_sym_SEMI] = ACTIONS(3687), + [anon_sym___extension__] = ACTIONS(3690), + [anon_sym_typedef] = ACTIONS(3693), + [anon_sym_virtual] = ACTIONS(3514), + [anon_sym_extern] = ACTIONS(3517), + [anon_sym___attribute__] = ACTIONS(3520), + [anon_sym___attribute] = ACTIONS(3520), + [anon_sym_using] = ACTIONS(3696), + [anon_sym_COLON_COLON] = ACTIONS(3526), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3529), + [anon_sym___declspec] = ACTIONS(3532), + [anon_sym___based] = ACTIONS(3535), + [anon_sym_RBRACE] = ACTIONS(3699), + [anon_sym_signed] = ACTIONS(3538), + [anon_sym_unsigned] = ACTIONS(3538), + [anon_sym_long] = ACTIONS(3538), + [anon_sym_short] = ACTIONS(3538), + [anon_sym_LBRACK] = ACTIONS(3541), + [anon_sym_static] = ACTIONS(3517), + [anon_sym_register] = ACTIONS(3517), + [anon_sym_inline] = ACTIONS(3517), + [anon_sym___inline] = ACTIONS(3517), + [anon_sym___inline__] = ACTIONS(3517), + [anon_sym___forceinline] = ACTIONS(3517), + [anon_sym_thread_local] = ACTIONS(3517), + [anon_sym___thread] = ACTIONS(3517), + [anon_sym_const] = ACTIONS(3544), + [anon_sym_constexpr] = ACTIONS(3701), + [anon_sym_volatile] = ACTIONS(3544), + [anon_sym_restrict] = ACTIONS(3544), + [anon_sym___restrict__] = ACTIONS(3544), + [anon_sym__Atomic] = ACTIONS(3544), + [anon_sym__Noreturn] = ACTIONS(3544), + [anon_sym_noreturn] = ACTIONS(3544), + [anon_sym__Nonnull] = ACTIONS(3544), + [anon_sym_mutable] = ACTIONS(3544), + [anon_sym_constinit] = ACTIONS(3544), + [anon_sym_consteval] = ACTIONS(3544), + [anon_sym_alignas] = ACTIONS(3550), + [anon_sym__Alignas] = ACTIONS(3550), + [sym_primitive_type] = ACTIONS(3553), + [anon_sym_enum] = ACTIONS(3556), + [anon_sym_class] = ACTIONS(3559), + [anon_sym_struct] = ACTIONS(3562), + [anon_sym_union] = ACTIONS(3565), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3568), + [anon_sym_decltype] = ACTIONS(3571), + [anon_sym_explicit] = ACTIONS(3574), + [anon_sym_typename] = ACTIONS(3577), + [anon_sym_private] = ACTIONS(3580), + [anon_sym_template] = ACTIONS(3704), + [anon_sym_operator] = ACTIONS(3586), + [anon_sym_friend] = ACTIONS(3707), + [anon_sym_public] = ACTIONS(3580), + [anon_sym_protected] = ACTIONS(3580), + [anon_sym_static_assert] = ACTIONS(3710), + }, + [815] = { + [sym_preproc_def] = STATE(818), + [sym_preproc_function_def] = STATE(818), + [sym_preproc_call] = STATE(818), + [sym_preproc_if_in_field_declaration_list] = STATE(818), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(818), + [sym_type_definition] = STATE(818), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(5714), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(3133), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6293), + [sym_array_declarator] = STATE(6145), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym__field_declaration_list_item] = STATE(818), + [sym_field_declaration] = STATE(818), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym_explicit_function_specifier] = STATE(1759), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(818), + [sym_operator_cast] = STATE(6942), + [sym_inline_method_definition] = STATE(818), + [sym__constructor_specifiers] = STATE(1759), + [sym_operator_cast_definition] = STATE(818), + [sym_operator_cast_declaration] = STATE(818), + [sym_constructor_or_destructor_definition] = STATE(818), + [sym_constructor_or_destructor_declaration] = STATE(818), + [sym_friend_declaration] = STATE(818), + [sym_access_specifier] = STATE(8896), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(2439), + [sym_template_function] = STATE(6145), + [sym_using_declaration] = STATE(818), + [sym_alias_declaration] = STATE(818), + [sym_static_assert_declaration] = STATE(818), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5557), + [sym_qualified_identifier] = STATE(6145), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6942), + [sym_operator_name] = STATE(6145), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(818), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_attributed_declarator_repeat1] = STATE(7239), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1759), + [sym_identifier] = ACTIONS(2979), + [aux_sym_preproc_def_token1] = ACTIONS(3643), + [aux_sym_preproc_if_token1] = ACTIONS(3645), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3647), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3647), + [sym_preproc_directive] = ACTIONS(3649), + [anon_sym_LPAREN2] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(3001), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2983), - [anon_sym_SEMI] = ACTIONS(3643), - [anon_sym___extension__] = ACTIONS(3645), - [anon_sym_typedef] = ACTIONS(3647), + [anon_sym_AMP] = ACTIONS(3003), + [anon_sym_SEMI] = ACTIONS(3713), + [anon_sym___extension__] = ACTIONS(3653), + [anon_sym_typedef] = ACTIONS(3655), [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(3649), - [anon_sym_COLON_COLON] = ACTIONS(2993), + [anon_sym_using] = ACTIONS(3657), + [anon_sym_COLON_COLON] = ACTIONS(3013), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(3669), + [anon_sym_RBRACE] = ACTIONS(3715), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2995), + [anon_sym_LBRACK] = ACTIONS(3015), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -155693,7 +158329,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread_local] = ACTIONS(63), [anon_sym___thread] = ACTIONS(63), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(3653), + [anon_sym_constexpr] = ACTIONS(3661), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -155706,117 +158342,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2999), - [anon_sym_enum] = ACTIONS(3001), - [anon_sym_class] = ACTIONS(3003), - [anon_sym_struct] = ACTIONS(3005), - [anon_sym_union] = ACTIONS(3007), + [sym_primitive_type] = ACTIONS(3019), + [anon_sym_enum] = ACTIONS(3021), + [anon_sym_class] = ACTIONS(3023), + [anon_sym_struct] = ACTIONS(3025), + [anon_sym_union] = ACTIONS(3027), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(3009), - [anon_sym_private] = ACTIONS(3011), - [anon_sym_template] = ACTIONS(3655), + [anon_sym_typename] = ACTIONS(3029), + [anon_sym_private] = ACTIONS(3031), + [anon_sym_template] = ACTIONS(3663), [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(3657), - [anon_sym_public] = ACTIONS(3011), - [anon_sym_protected] = ACTIONS(3011), - [anon_sym_static_assert] = ACTIONS(3659), + [anon_sym_friend] = ACTIONS(3665), + [anon_sym_public] = ACTIONS(3031), + [anon_sym_protected] = ACTIONS(3031), + [anon_sym_static_assert] = ACTIONS(3667), }, - [799] = { - [sym_preproc_def] = STATE(800), - [sym_preproc_function_def] = STATE(800), - [sym_preproc_call] = STATE(800), - [sym_preproc_if_in_field_declaration_list] = STATE(800), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(800), - [sym_type_definition] = STATE(800), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(5525), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(3005), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6217), - [sym_array_declarator] = STATE(5998), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym__field_declaration_list_item] = STATE(800), - [sym_field_declaration] = STATE(800), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym_explicit_function_specifier] = STATE(1760), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(800), - [sym_operator_cast] = STATE(6816), - [sym_inline_method_definition] = STATE(800), - [sym__constructor_specifiers] = STATE(1760), - [sym_operator_cast_definition] = STATE(800), - [sym_operator_cast_declaration] = STATE(800), - [sym_constructor_or_destructor_definition] = STATE(800), - [sym_constructor_or_destructor_declaration] = STATE(800), - [sym_friend_declaration] = STATE(800), - [sym_access_specifier] = STATE(8096), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(2406), - [sym_template_function] = STATE(5998), - [sym_using_declaration] = STATE(800), - [sym_alias_declaration] = STATE(800), - [sym_static_assert_declaration] = STATE(800), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5478), - [sym_qualified_identifier] = STATE(5998), - [sym_qualified_type_identifier] = STATE(3015), - [sym_qualified_operator_cast_identifier] = STATE(6816), - [sym_operator_name] = STATE(5998), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(800), - [aux_sym__declaration_specifiers_repeat1] = STATE(1993), - [aux_sym_attributed_declarator_repeat1] = STATE(7036), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1760), - [sym_identifier] = ACTIONS(2959), - [aux_sym_preproc_def_token1] = ACTIONS(3671), - [aux_sym_preproc_if_token1] = ACTIONS(3673), - [aux_sym_preproc_if_token2] = ACTIONS(3675), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3677), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3677), - [sym_preproc_directive] = ACTIONS(3679), - [anon_sym_LPAREN2] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2979), - [anon_sym_STAR] = ACTIONS(2981), + [816] = { + [sym_preproc_def] = STATE(825), + [sym_preproc_function_def] = STATE(825), + [sym_preproc_call] = STATE(825), + [sym_preproc_if_in_field_declaration_list] = STATE(825), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(825), + [sym_type_definition] = STATE(825), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(5714), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(3133), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6293), + [sym_array_declarator] = STATE(6145), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym__field_declaration_list_item] = STATE(825), + [sym_field_declaration] = STATE(825), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym_explicit_function_specifier] = STATE(1759), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(825), + [sym_operator_cast] = STATE(6942), + [sym_inline_method_definition] = STATE(825), + [sym__constructor_specifiers] = STATE(1759), + [sym_operator_cast_definition] = STATE(825), + [sym_operator_cast_declaration] = STATE(825), + [sym_constructor_or_destructor_definition] = STATE(825), + [sym_constructor_or_destructor_declaration] = STATE(825), + [sym_friend_declaration] = STATE(825), + [sym_access_specifier] = STATE(8896), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(2439), + [sym_template_function] = STATE(6145), + [sym_using_declaration] = STATE(825), + [sym_alias_declaration] = STATE(825), + [sym_static_assert_declaration] = STATE(825), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5557), + [sym_qualified_identifier] = STATE(6145), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6942), + [sym_operator_name] = STATE(6145), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(825), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_attributed_declarator_repeat1] = STATE(7239), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1759), + [sym_identifier] = ACTIONS(2979), + [aux_sym_preproc_def_token1] = ACTIONS(3643), + [aux_sym_preproc_if_token1] = ACTIONS(3645), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3647), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3647), + [sym_preproc_directive] = ACTIONS(3649), + [anon_sym_LPAREN2] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(3001), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2983), - [anon_sym_SEMI] = ACTIONS(3681), - [anon_sym___extension__] = ACTIONS(3683), - [anon_sym_typedef] = ACTIONS(3685), + [anon_sym_AMP] = ACTIONS(3003), + [anon_sym_SEMI] = ACTIONS(3717), + [anon_sym___extension__] = ACTIONS(3653), + [anon_sym_typedef] = ACTIONS(3655), [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(3687), - [anon_sym_COLON_COLON] = ACTIONS(2993), + [anon_sym_using] = ACTIONS(3657), + [anon_sym_COLON_COLON] = ACTIONS(3013), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(3719), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2995), + [anon_sym_LBRACK] = ACTIONS(3015), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -155826,7 +158462,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread_local] = ACTIONS(63), [anon_sym___thread] = ACTIONS(63), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(3689), + [anon_sym_constexpr] = ACTIONS(3661), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -155839,117 +158475,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2999), - [anon_sym_enum] = ACTIONS(3001), - [anon_sym_class] = ACTIONS(3003), - [anon_sym_struct] = ACTIONS(3005), - [anon_sym_union] = ACTIONS(3007), + [sym_primitive_type] = ACTIONS(3019), + [anon_sym_enum] = ACTIONS(3021), + [anon_sym_class] = ACTIONS(3023), + [anon_sym_struct] = ACTIONS(3025), + [anon_sym_union] = ACTIONS(3027), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(3009), - [anon_sym_private] = ACTIONS(3011), - [anon_sym_template] = ACTIONS(3691), + [anon_sym_typename] = ACTIONS(3029), + [anon_sym_private] = ACTIONS(3031), + [anon_sym_template] = ACTIONS(3663), [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(3693), - [anon_sym_public] = ACTIONS(3011), - [anon_sym_protected] = ACTIONS(3011), - [anon_sym_static_assert] = ACTIONS(3695), + [anon_sym_friend] = ACTIONS(3665), + [anon_sym_public] = ACTIONS(3031), + [anon_sym_protected] = ACTIONS(3031), + [anon_sym_static_assert] = ACTIONS(3667), }, - [800] = { - [sym_preproc_def] = STATE(812), - [sym_preproc_function_def] = STATE(812), - [sym_preproc_call] = STATE(812), - [sym_preproc_if_in_field_declaration_list] = STATE(812), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(812), - [sym_type_definition] = STATE(812), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(5525), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(3005), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6217), - [sym_array_declarator] = STATE(5998), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym__field_declaration_list_item] = STATE(812), - [sym_field_declaration] = STATE(812), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym_explicit_function_specifier] = STATE(1760), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(812), - [sym_operator_cast] = STATE(6816), - [sym_inline_method_definition] = STATE(812), - [sym__constructor_specifiers] = STATE(1760), - [sym_operator_cast_definition] = STATE(812), - [sym_operator_cast_declaration] = STATE(812), - [sym_constructor_or_destructor_definition] = STATE(812), - [sym_constructor_or_destructor_declaration] = STATE(812), - [sym_friend_declaration] = STATE(812), - [sym_access_specifier] = STATE(8096), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(2406), - [sym_template_function] = STATE(5998), - [sym_using_declaration] = STATE(812), - [sym_alias_declaration] = STATE(812), - [sym_static_assert_declaration] = STATE(812), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5478), - [sym_qualified_identifier] = STATE(5998), - [sym_qualified_type_identifier] = STATE(3015), - [sym_qualified_operator_cast_identifier] = STATE(6816), - [sym_operator_name] = STATE(5998), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(812), - [aux_sym__declaration_specifiers_repeat1] = STATE(1993), - [aux_sym_attributed_declarator_repeat1] = STATE(7036), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1760), - [sym_identifier] = ACTIONS(2959), - [aux_sym_preproc_def_token1] = ACTIONS(3671), - [aux_sym_preproc_if_token1] = ACTIONS(3673), - [aux_sym_preproc_if_token2] = ACTIONS(3697), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3677), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3677), - [sym_preproc_directive] = ACTIONS(3679), - [anon_sym_LPAREN2] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2979), - [anon_sym_STAR] = ACTIONS(2981), + [817] = { + [sym_preproc_def] = STATE(814), + [sym_preproc_function_def] = STATE(814), + [sym_preproc_call] = STATE(814), + [sym_preproc_if_in_field_declaration_list] = STATE(814), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(814), + [sym_type_definition] = STATE(814), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(5714), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(3133), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6293), + [sym_array_declarator] = STATE(6145), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym__field_declaration_list_item] = STATE(814), + [sym_field_declaration] = STATE(814), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym_explicit_function_specifier] = STATE(1759), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(814), + [sym_operator_cast] = STATE(6942), + [sym_inline_method_definition] = STATE(814), + [sym__constructor_specifiers] = STATE(1759), + [sym_operator_cast_definition] = STATE(814), + [sym_operator_cast_declaration] = STATE(814), + [sym_constructor_or_destructor_definition] = STATE(814), + [sym_constructor_or_destructor_declaration] = STATE(814), + [sym_friend_declaration] = STATE(814), + [sym_access_specifier] = STATE(8896), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(2439), + [sym_template_function] = STATE(6145), + [sym_using_declaration] = STATE(814), + [sym_alias_declaration] = STATE(814), + [sym_static_assert_declaration] = STATE(814), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5557), + [sym_qualified_identifier] = STATE(6145), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6942), + [sym_operator_name] = STATE(6145), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(814), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_attributed_declarator_repeat1] = STATE(7239), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1759), + [sym_identifier] = ACTIONS(2979), + [aux_sym_preproc_def_token1] = ACTIONS(3643), + [aux_sym_preproc_if_token1] = ACTIONS(3645), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3647), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3647), + [sym_preproc_directive] = ACTIONS(3649), + [anon_sym_LPAREN2] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(3001), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2983), - [anon_sym_SEMI] = ACTIONS(3699), - [anon_sym___extension__] = ACTIONS(3683), - [anon_sym_typedef] = ACTIONS(3685), + [anon_sym_AMP] = ACTIONS(3003), + [anon_sym_SEMI] = ACTIONS(3651), + [anon_sym___extension__] = ACTIONS(3653), + [anon_sym_typedef] = ACTIONS(3655), [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(3687), - [anon_sym_COLON_COLON] = ACTIONS(2993), + [anon_sym_using] = ACTIONS(3657), + [anon_sym_COLON_COLON] = ACTIONS(3013), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(3721), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2995), + [anon_sym_LBRACK] = ACTIONS(3015), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -155959,7 +158595,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread_local] = ACTIONS(63), [anon_sym___thread] = ACTIONS(63), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(3689), + [anon_sym_constexpr] = ACTIONS(3661), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -155972,117 +158608,250 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2999), - [anon_sym_enum] = ACTIONS(3001), - [anon_sym_class] = ACTIONS(3003), - [anon_sym_struct] = ACTIONS(3005), - [anon_sym_union] = ACTIONS(3007), + [sym_primitive_type] = ACTIONS(3019), + [anon_sym_enum] = ACTIONS(3021), + [anon_sym_class] = ACTIONS(3023), + [anon_sym_struct] = ACTIONS(3025), + [anon_sym_union] = ACTIONS(3027), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(3009), - [anon_sym_private] = ACTIONS(3011), - [anon_sym_template] = ACTIONS(3691), + [anon_sym_typename] = ACTIONS(3029), + [anon_sym_private] = ACTIONS(3031), + [anon_sym_template] = ACTIONS(3663), [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(3693), - [anon_sym_public] = ACTIONS(3011), - [anon_sym_protected] = ACTIONS(3011), - [anon_sym_static_assert] = ACTIONS(3695), + [anon_sym_friend] = ACTIONS(3665), + [anon_sym_public] = ACTIONS(3031), + [anon_sym_protected] = ACTIONS(3031), + [anon_sym_static_assert] = ACTIONS(3667), }, - [801] = { - [sym_preproc_def] = STATE(802), - [sym_preproc_function_def] = STATE(802), - [sym_preproc_call] = STATE(802), - [sym_preproc_if_in_field_declaration_list] = STATE(802), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(802), - [sym_type_definition] = STATE(802), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(5498), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(3005), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6214), - [sym_array_declarator] = STATE(5998), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym__field_declaration_list_item] = STATE(802), - [sym_field_declaration] = STATE(802), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym_explicit_function_specifier] = STATE(1812), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(802), - [sym_operator_cast] = STATE(6839), - [sym_inline_method_definition] = STATE(802), - [sym__constructor_specifiers] = STATE(1812), - [sym_operator_cast_definition] = STATE(802), - [sym_operator_cast_declaration] = STATE(802), - [sym_constructor_or_destructor_definition] = STATE(802), - [sym_constructor_or_destructor_declaration] = STATE(802), - [sym_friend_declaration] = STATE(802), - [sym_access_specifier] = STATE(7967), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(2406), - [sym_template_function] = STATE(5998), - [sym_using_declaration] = STATE(802), - [sym_alias_declaration] = STATE(802), - [sym_static_assert_declaration] = STATE(802), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5478), - [sym_qualified_identifier] = STATE(5998), - [sym_qualified_type_identifier] = STATE(3015), - [sym_qualified_operator_cast_identifier] = STATE(6839), - [sym_operator_name] = STATE(5998), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(802), - [aux_sym__declaration_specifiers_repeat1] = STATE(1993), - [aux_sym_attributed_declarator_repeat1] = STATE(7067), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1812), - [sym_identifier] = ACTIONS(2959), - [aux_sym_preproc_def_token1] = ACTIONS(3635), - [aux_sym_preproc_if_token1] = ACTIONS(3637), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3639), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3639), - [sym_preproc_directive] = ACTIONS(3641), - [anon_sym_LPAREN2] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2979), - [anon_sym_STAR] = ACTIONS(2981), + [818] = { + [sym_preproc_def] = STATE(814), + [sym_preproc_function_def] = STATE(814), + [sym_preproc_call] = STATE(814), + [sym_preproc_if_in_field_declaration_list] = STATE(814), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(814), + [sym_type_definition] = STATE(814), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(5714), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(3133), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6293), + [sym_array_declarator] = STATE(6145), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym__field_declaration_list_item] = STATE(814), + [sym_field_declaration] = STATE(814), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym_explicit_function_specifier] = STATE(1759), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(814), + [sym_operator_cast] = STATE(6942), + [sym_inline_method_definition] = STATE(814), + [sym__constructor_specifiers] = STATE(1759), + [sym_operator_cast_definition] = STATE(814), + [sym_operator_cast_declaration] = STATE(814), + [sym_constructor_or_destructor_definition] = STATE(814), + [sym_constructor_or_destructor_declaration] = STATE(814), + [sym_friend_declaration] = STATE(814), + [sym_access_specifier] = STATE(8896), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(2439), + [sym_template_function] = STATE(6145), + [sym_using_declaration] = STATE(814), + [sym_alias_declaration] = STATE(814), + [sym_static_assert_declaration] = STATE(814), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5557), + [sym_qualified_identifier] = STATE(6145), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6942), + [sym_operator_name] = STATE(6145), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(814), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_attributed_declarator_repeat1] = STATE(7239), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1759), + [sym_identifier] = ACTIONS(2979), + [aux_sym_preproc_def_token1] = ACTIONS(3643), + [aux_sym_preproc_if_token1] = ACTIONS(3645), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3647), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3647), + [sym_preproc_directive] = ACTIONS(3649), + [anon_sym_LPAREN2] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(3001), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3003), + [anon_sym_SEMI] = ACTIONS(3651), + [anon_sym___extension__] = ACTIONS(3653), + [anon_sym_typedef] = ACTIONS(3655), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(3657), + [anon_sym_COLON_COLON] = ACTIONS(3013), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(3723), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3015), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(3661), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(69), + [anon_sym__Alignas] = ACTIONS(69), + [sym_primitive_type] = ACTIONS(3019), + [anon_sym_enum] = ACTIONS(3021), + [anon_sym_class] = ACTIONS(3023), + [anon_sym_struct] = ACTIONS(3025), + [anon_sym_union] = ACTIONS(3027), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(125), + [anon_sym_decltype] = ACTIONS(127), + [anon_sym_explicit] = ACTIONS(129), + [anon_sym_typename] = ACTIONS(3029), + [anon_sym_private] = ACTIONS(3031), + [anon_sym_template] = ACTIONS(3663), + [anon_sym_operator] = ACTIONS(141), + [anon_sym_friend] = ACTIONS(3665), + [anon_sym_public] = ACTIONS(3031), + [anon_sym_protected] = ACTIONS(3031), + [anon_sym_static_assert] = ACTIONS(3667), + }, + [819] = { + [sym_preproc_def] = STATE(814), + [sym_preproc_function_def] = STATE(814), + [sym_preproc_call] = STATE(814), + [sym_preproc_if_in_field_declaration_list] = STATE(814), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(814), + [sym_type_definition] = STATE(814), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(5714), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(3133), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6293), + [sym_array_declarator] = STATE(6145), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym__field_declaration_list_item] = STATE(814), + [sym_field_declaration] = STATE(814), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym_explicit_function_specifier] = STATE(1759), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(814), + [sym_operator_cast] = STATE(6942), + [sym_inline_method_definition] = STATE(814), + [sym__constructor_specifiers] = STATE(1759), + [sym_operator_cast_definition] = STATE(814), + [sym_operator_cast_declaration] = STATE(814), + [sym_constructor_or_destructor_definition] = STATE(814), + [sym_constructor_or_destructor_declaration] = STATE(814), + [sym_friend_declaration] = STATE(814), + [sym_access_specifier] = STATE(8896), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(2439), + [sym_template_function] = STATE(6145), + [sym_using_declaration] = STATE(814), + [sym_alias_declaration] = STATE(814), + [sym_static_assert_declaration] = STATE(814), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5557), + [sym_qualified_identifier] = STATE(6145), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6942), + [sym_operator_name] = STATE(6145), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(814), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_attributed_declarator_repeat1] = STATE(7239), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1759), + [sym_identifier] = ACTIONS(2979), + [aux_sym_preproc_def_token1] = ACTIONS(3643), + [aux_sym_preproc_if_token1] = ACTIONS(3645), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3647), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3647), + [sym_preproc_directive] = ACTIONS(3649), + [anon_sym_LPAREN2] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(3001), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2983), - [anon_sym_SEMI] = ACTIONS(3701), - [anon_sym___extension__] = ACTIONS(3645), - [anon_sym_typedef] = ACTIONS(3647), + [anon_sym_AMP] = ACTIONS(3003), + [anon_sym_SEMI] = ACTIONS(3651), + [anon_sym___extension__] = ACTIONS(3653), + [anon_sym_typedef] = ACTIONS(3655), [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(3649), - [anon_sym_COLON_COLON] = ACTIONS(2993), + [anon_sym_using] = ACTIONS(3657), + [anon_sym_COLON_COLON] = ACTIONS(3013), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(3703), + [anon_sym_RBRACE] = ACTIONS(3725), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2995), + [anon_sym_LBRACK] = ACTIONS(3015), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -156092,7 +158861,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread_local] = ACTIONS(63), [anon_sym___thread] = ACTIONS(63), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(3653), + [anon_sym_constexpr] = ACTIONS(3661), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -156105,117 +158874,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2999), - [anon_sym_enum] = ACTIONS(3001), - [anon_sym_class] = ACTIONS(3003), - [anon_sym_struct] = ACTIONS(3005), - [anon_sym_union] = ACTIONS(3007), + [sym_primitive_type] = ACTIONS(3019), + [anon_sym_enum] = ACTIONS(3021), + [anon_sym_class] = ACTIONS(3023), + [anon_sym_struct] = ACTIONS(3025), + [anon_sym_union] = ACTIONS(3027), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(3009), - [anon_sym_private] = ACTIONS(3011), - [anon_sym_template] = ACTIONS(3655), + [anon_sym_typename] = ACTIONS(3029), + [anon_sym_private] = ACTIONS(3031), + [anon_sym_template] = ACTIONS(3663), [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(3657), - [anon_sym_public] = ACTIONS(3011), - [anon_sym_protected] = ACTIONS(3011), - [anon_sym_static_assert] = ACTIONS(3659), + [anon_sym_friend] = ACTIONS(3665), + [anon_sym_public] = ACTIONS(3031), + [anon_sym_protected] = ACTIONS(3031), + [anon_sym_static_assert] = ACTIONS(3667), }, - [802] = { - [sym_preproc_def] = STATE(804), - [sym_preproc_function_def] = STATE(804), - [sym_preproc_call] = STATE(804), - [sym_preproc_if_in_field_declaration_list] = STATE(804), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(804), - [sym_type_definition] = STATE(804), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(5498), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(3005), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6214), - [sym_array_declarator] = STATE(5998), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym__field_declaration_list_item] = STATE(804), - [sym_field_declaration] = STATE(804), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym_explicit_function_specifier] = STATE(1812), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(804), - [sym_operator_cast] = STATE(6839), - [sym_inline_method_definition] = STATE(804), - [sym__constructor_specifiers] = STATE(1812), - [sym_operator_cast_definition] = STATE(804), - [sym_operator_cast_declaration] = STATE(804), - [sym_constructor_or_destructor_definition] = STATE(804), - [sym_constructor_or_destructor_declaration] = STATE(804), - [sym_friend_declaration] = STATE(804), - [sym_access_specifier] = STATE(7967), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(2406), - [sym_template_function] = STATE(5998), - [sym_using_declaration] = STATE(804), - [sym_alias_declaration] = STATE(804), - [sym_static_assert_declaration] = STATE(804), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5478), - [sym_qualified_identifier] = STATE(5998), - [sym_qualified_type_identifier] = STATE(3015), - [sym_qualified_operator_cast_identifier] = STATE(6839), - [sym_operator_name] = STATE(5998), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(804), - [aux_sym__declaration_specifiers_repeat1] = STATE(1993), - [aux_sym_attributed_declarator_repeat1] = STATE(7067), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1812), - [sym_identifier] = ACTIONS(2959), - [aux_sym_preproc_def_token1] = ACTIONS(3635), - [aux_sym_preproc_if_token1] = ACTIONS(3637), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3639), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3639), - [sym_preproc_directive] = ACTIONS(3641), - [anon_sym_LPAREN2] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2979), - [anon_sym_STAR] = ACTIONS(2981), + [820] = { + [sym_preproc_def] = STATE(822), + [sym_preproc_function_def] = STATE(822), + [sym_preproc_call] = STATE(822), + [sym_preproc_if_in_field_declaration_list] = STATE(822), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(822), + [sym_type_definition] = STATE(822), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(5714), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(3133), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6293), + [sym_array_declarator] = STATE(6145), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym__field_declaration_list_item] = STATE(822), + [sym_field_declaration] = STATE(822), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym_explicit_function_specifier] = STATE(1759), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(822), + [sym_operator_cast] = STATE(6942), + [sym_inline_method_definition] = STATE(822), + [sym__constructor_specifiers] = STATE(1759), + [sym_operator_cast_definition] = STATE(822), + [sym_operator_cast_declaration] = STATE(822), + [sym_constructor_or_destructor_definition] = STATE(822), + [sym_constructor_or_destructor_declaration] = STATE(822), + [sym_friend_declaration] = STATE(822), + [sym_access_specifier] = STATE(8896), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(2439), + [sym_template_function] = STATE(6145), + [sym_using_declaration] = STATE(822), + [sym_alias_declaration] = STATE(822), + [sym_static_assert_declaration] = STATE(822), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5557), + [sym_qualified_identifier] = STATE(6145), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6942), + [sym_operator_name] = STATE(6145), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(822), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_attributed_declarator_repeat1] = STATE(7239), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1759), + [sym_identifier] = ACTIONS(2979), + [aux_sym_preproc_def_token1] = ACTIONS(3643), + [aux_sym_preproc_if_token1] = ACTIONS(3645), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3647), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3647), + [sym_preproc_directive] = ACTIONS(3649), + [anon_sym_LPAREN2] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(3001), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2983), - [anon_sym_SEMI] = ACTIONS(3643), - [anon_sym___extension__] = ACTIONS(3645), - [anon_sym_typedef] = ACTIONS(3647), + [anon_sym_AMP] = ACTIONS(3003), + [anon_sym_SEMI] = ACTIONS(3727), + [anon_sym___extension__] = ACTIONS(3653), + [anon_sym_typedef] = ACTIONS(3655), [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(3649), - [anon_sym_COLON_COLON] = ACTIONS(2993), + [anon_sym_using] = ACTIONS(3657), + [anon_sym_COLON_COLON] = ACTIONS(3013), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(3705), + [anon_sym_RBRACE] = ACTIONS(3729), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2995), + [anon_sym_LBRACK] = ACTIONS(3015), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -156225,7 +158994,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread_local] = ACTIONS(63), [anon_sym___thread] = ACTIONS(63), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(3653), + [anon_sym_constexpr] = ACTIONS(3661), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -156238,117 +159007,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2999), - [anon_sym_enum] = ACTIONS(3001), - [anon_sym_class] = ACTIONS(3003), - [anon_sym_struct] = ACTIONS(3005), - [anon_sym_union] = ACTIONS(3007), + [sym_primitive_type] = ACTIONS(3019), + [anon_sym_enum] = ACTIONS(3021), + [anon_sym_class] = ACTIONS(3023), + [anon_sym_struct] = ACTIONS(3025), + [anon_sym_union] = ACTIONS(3027), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(3009), - [anon_sym_private] = ACTIONS(3011), - [anon_sym_template] = ACTIONS(3655), + [anon_sym_typename] = ACTIONS(3029), + [anon_sym_private] = ACTIONS(3031), + [anon_sym_template] = ACTIONS(3663), [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(3657), - [anon_sym_public] = ACTIONS(3011), - [anon_sym_protected] = ACTIONS(3011), - [anon_sym_static_assert] = ACTIONS(3659), + [anon_sym_friend] = ACTIONS(3665), + [anon_sym_public] = ACTIONS(3031), + [anon_sym_protected] = ACTIONS(3031), + [anon_sym_static_assert] = ACTIONS(3667), }, - [803] = { - [sym_preproc_def] = STATE(805), - [sym_preproc_function_def] = STATE(805), - [sym_preproc_call] = STATE(805), - [sym_preproc_if_in_field_declaration_list] = STATE(805), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(805), - [sym_type_definition] = STATE(805), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(5498), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(3005), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6214), - [sym_array_declarator] = STATE(5998), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym__field_declaration_list_item] = STATE(805), - [sym_field_declaration] = STATE(805), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym_explicit_function_specifier] = STATE(1812), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(805), - [sym_operator_cast] = STATE(6839), - [sym_inline_method_definition] = STATE(805), - [sym__constructor_specifiers] = STATE(1812), - [sym_operator_cast_definition] = STATE(805), - [sym_operator_cast_declaration] = STATE(805), - [sym_constructor_or_destructor_definition] = STATE(805), - [sym_constructor_or_destructor_declaration] = STATE(805), - [sym_friend_declaration] = STATE(805), - [sym_access_specifier] = STATE(7967), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(2406), - [sym_template_function] = STATE(5998), - [sym_using_declaration] = STATE(805), - [sym_alias_declaration] = STATE(805), - [sym_static_assert_declaration] = STATE(805), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5478), - [sym_qualified_identifier] = STATE(5998), - [sym_qualified_type_identifier] = STATE(3015), - [sym_qualified_operator_cast_identifier] = STATE(6839), - [sym_operator_name] = STATE(5998), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(805), - [aux_sym__declaration_specifiers_repeat1] = STATE(1993), - [aux_sym_attributed_declarator_repeat1] = STATE(7067), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1812), - [sym_identifier] = ACTIONS(2959), - [aux_sym_preproc_def_token1] = ACTIONS(3635), - [aux_sym_preproc_if_token1] = ACTIONS(3637), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3639), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3639), - [sym_preproc_directive] = ACTIONS(3641), - [anon_sym_LPAREN2] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2979), - [anon_sym_STAR] = ACTIONS(2981), + [821] = { + [sym_preproc_def] = STATE(831), + [sym_preproc_function_def] = STATE(831), + [sym_preproc_call] = STATE(831), + [sym_preproc_if_in_field_declaration_list] = STATE(831), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(831), + [sym_type_definition] = STATE(831), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(5597), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(3133), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6389), + [sym_array_declarator] = STATE(6145), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym__field_declaration_list_item] = STATE(831), + [sym_field_declaration] = STATE(831), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym_explicit_function_specifier] = STATE(1848), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(831), + [sym_operator_cast] = STATE(6896), + [sym_inline_method_definition] = STATE(831), + [sym__constructor_specifiers] = STATE(1848), + [sym_operator_cast_definition] = STATE(831), + [sym_operator_cast_declaration] = STATE(831), + [sym_constructor_or_destructor_definition] = STATE(831), + [sym_constructor_or_destructor_declaration] = STATE(831), + [sym_friend_declaration] = STATE(831), + [sym_access_specifier] = STATE(8270), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(2439), + [sym_template_function] = STATE(6145), + [sym_using_declaration] = STATE(831), + [sym_alias_declaration] = STATE(831), + [sym_static_assert_declaration] = STATE(831), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5557), + [sym_qualified_identifier] = STATE(6145), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6896), + [sym_operator_name] = STATE(6145), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(831), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_attributed_declarator_repeat1] = STATE(7210), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1848), + [sym_identifier] = ACTIONS(2979), + [aux_sym_preproc_def_token1] = ACTIONS(3731), + [aux_sym_preproc_if_token1] = ACTIONS(3733), + [aux_sym_preproc_if_token2] = ACTIONS(3735), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3737), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3737), + [sym_preproc_directive] = ACTIONS(3739), + [anon_sym_LPAREN2] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(3001), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2983), - [anon_sym_SEMI] = ACTIONS(3707), - [anon_sym___extension__] = ACTIONS(3645), - [anon_sym_typedef] = ACTIONS(3647), + [anon_sym_AMP] = ACTIONS(3003), + [anon_sym_SEMI] = ACTIONS(3741), + [anon_sym___extension__] = ACTIONS(3743), + [anon_sym_typedef] = ACTIONS(3745), [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(3649), - [anon_sym_COLON_COLON] = ACTIONS(2993), + [anon_sym_using] = ACTIONS(3747), + [anon_sym_COLON_COLON] = ACTIONS(3013), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(3709), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2995), + [anon_sym_LBRACK] = ACTIONS(3015), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -156358,7 +159127,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread_local] = ACTIONS(63), [anon_sym___thread] = ACTIONS(63), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(3653), + [anon_sym_constexpr] = ACTIONS(3749), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -156371,250 +159140,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2999), - [anon_sym_enum] = ACTIONS(3001), - [anon_sym_class] = ACTIONS(3003), - [anon_sym_struct] = ACTIONS(3005), - [anon_sym_union] = ACTIONS(3007), + [sym_primitive_type] = ACTIONS(3019), + [anon_sym_enum] = ACTIONS(3021), + [anon_sym_class] = ACTIONS(3023), + [anon_sym_struct] = ACTIONS(3025), + [anon_sym_union] = ACTIONS(3027), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(3009), - [anon_sym_private] = ACTIONS(3011), - [anon_sym_template] = ACTIONS(3655), + [anon_sym_typename] = ACTIONS(3029), + [anon_sym_private] = ACTIONS(3031), + [anon_sym_template] = ACTIONS(3751), [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(3657), - [anon_sym_public] = ACTIONS(3011), - [anon_sym_protected] = ACTIONS(3011), - [anon_sym_static_assert] = ACTIONS(3659), + [anon_sym_friend] = ACTIONS(3753), + [anon_sym_public] = ACTIONS(3031), + [anon_sym_protected] = ACTIONS(3031), + [anon_sym_static_assert] = ACTIONS(3755), }, - [804] = { - [sym_preproc_def] = STATE(804), - [sym_preproc_function_def] = STATE(804), - [sym_preproc_call] = STATE(804), - [sym_preproc_if_in_field_declaration_list] = STATE(804), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(804), - [sym_type_definition] = STATE(804), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(5498), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(3005), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6214), - [sym_array_declarator] = STATE(5998), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym__field_declaration_list_item] = STATE(804), - [sym_field_declaration] = STATE(804), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym_explicit_function_specifier] = STATE(1812), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(804), - [sym_operator_cast] = STATE(6839), - [sym_inline_method_definition] = STATE(804), - [sym__constructor_specifiers] = STATE(1812), - [sym_operator_cast_definition] = STATE(804), - [sym_operator_cast_declaration] = STATE(804), - [sym_constructor_or_destructor_definition] = STATE(804), - [sym_constructor_or_destructor_declaration] = STATE(804), - [sym_friend_declaration] = STATE(804), - [sym_access_specifier] = STATE(7967), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(2406), - [sym_template_function] = STATE(5998), - [sym_using_declaration] = STATE(804), - [sym_alias_declaration] = STATE(804), - [sym_static_assert_declaration] = STATE(804), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5478), - [sym_qualified_identifier] = STATE(5998), - [sym_qualified_type_identifier] = STATE(3015), - [sym_qualified_operator_cast_identifier] = STATE(6839), - [sym_operator_name] = STATE(5998), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(804), - [aux_sym__declaration_specifiers_repeat1] = STATE(1993), - [aux_sym_attributed_declarator_repeat1] = STATE(7067), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1812), - [sym_identifier] = ACTIONS(3449), - [aux_sym_preproc_def_token1] = ACTIONS(3711), - [aux_sym_preproc_if_token1] = ACTIONS(3714), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3717), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3717), - [sym_preproc_directive] = ACTIONS(3720), - [anon_sym_LPAREN2] = ACTIONS(3466), - [anon_sym_TILDE] = ACTIONS(3469), - [anon_sym_STAR] = ACTIONS(3472), - [anon_sym_AMP_AMP] = ACTIONS(3475), - [anon_sym_AMP] = ACTIONS(3478), - [anon_sym_SEMI] = ACTIONS(3723), - [anon_sym___extension__] = ACTIONS(3726), - [anon_sym_typedef] = ACTIONS(3729), - [anon_sym_virtual] = ACTIONS(3490), - [anon_sym_extern] = ACTIONS(3493), - [anon_sym___attribute__] = ACTIONS(3496), - [anon_sym___attribute] = ACTIONS(3496), - [anon_sym_using] = ACTIONS(3732), - [anon_sym_COLON_COLON] = ACTIONS(3502), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3505), - [anon_sym___declspec] = ACTIONS(3508), - [anon_sym___based] = ACTIONS(3511), - [anon_sym_RBRACE] = ACTIONS(3735), - [anon_sym_signed] = ACTIONS(3514), - [anon_sym_unsigned] = ACTIONS(3514), - [anon_sym_long] = ACTIONS(3514), - [anon_sym_short] = ACTIONS(3514), - [anon_sym_LBRACK] = ACTIONS(3517), - [anon_sym_static] = ACTIONS(3493), - [anon_sym_register] = ACTIONS(3493), - [anon_sym_inline] = ACTIONS(3493), - [anon_sym___inline] = ACTIONS(3493), - [anon_sym___inline__] = ACTIONS(3493), - [anon_sym___forceinline] = ACTIONS(3493), - [anon_sym_thread_local] = ACTIONS(3493), - [anon_sym___thread] = ACTIONS(3493), - [anon_sym_const] = ACTIONS(3520), - [anon_sym_constexpr] = ACTIONS(3737), - [anon_sym_volatile] = ACTIONS(3520), - [anon_sym_restrict] = ACTIONS(3520), - [anon_sym___restrict__] = ACTIONS(3520), - [anon_sym__Atomic] = ACTIONS(3520), - [anon_sym__Noreturn] = ACTIONS(3520), - [anon_sym_noreturn] = ACTIONS(3520), - [anon_sym__Nonnull] = ACTIONS(3520), - [anon_sym_mutable] = ACTIONS(3520), - [anon_sym_constinit] = ACTIONS(3520), - [anon_sym_consteval] = ACTIONS(3520), - [anon_sym_alignas] = ACTIONS(3526), - [anon_sym__Alignas] = ACTIONS(3526), - [sym_primitive_type] = ACTIONS(3529), - [anon_sym_enum] = ACTIONS(3532), - [anon_sym_class] = ACTIONS(3535), - [anon_sym_struct] = ACTIONS(3538), - [anon_sym_union] = ACTIONS(3541), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3544), - [anon_sym_decltype] = ACTIONS(3547), - [anon_sym_explicit] = ACTIONS(3550), - [anon_sym_typename] = ACTIONS(3553), - [anon_sym_private] = ACTIONS(3556), - [anon_sym_template] = ACTIONS(3740), - [anon_sym_operator] = ACTIONS(3562), - [anon_sym_friend] = ACTIONS(3743), - [anon_sym_public] = ACTIONS(3556), - [anon_sym_protected] = ACTIONS(3556), - [anon_sym_static_assert] = ACTIONS(3746), - }, - [805] = { - [sym_preproc_def] = STATE(804), - [sym_preproc_function_def] = STATE(804), - [sym_preproc_call] = STATE(804), - [sym_preproc_if_in_field_declaration_list] = STATE(804), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(804), - [sym_type_definition] = STATE(804), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(5498), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(3005), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6214), - [sym_array_declarator] = STATE(5998), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym__field_declaration_list_item] = STATE(804), - [sym_field_declaration] = STATE(804), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym_explicit_function_specifier] = STATE(1812), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(804), - [sym_operator_cast] = STATE(6839), - [sym_inline_method_definition] = STATE(804), - [sym__constructor_specifiers] = STATE(1812), - [sym_operator_cast_definition] = STATE(804), - [sym_operator_cast_declaration] = STATE(804), - [sym_constructor_or_destructor_definition] = STATE(804), - [sym_constructor_or_destructor_declaration] = STATE(804), - [sym_friend_declaration] = STATE(804), - [sym_access_specifier] = STATE(7967), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(2406), - [sym_template_function] = STATE(5998), - [sym_using_declaration] = STATE(804), - [sym_alias_declaration] = STATE(804), - [sym_static_assert_declaration] = STATE(804), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5478), - [sym_qualified_identifier] = STATE(5998), - [sym_qualified_type_identifier] = STATE(3015), - [sym_qualified_operator_cast_identifier] = STATE(6839), - [sym_operator_name] = STATE(5998), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(804), - [aux_sym__declaration_specifiers_repeat1] = STATE(1993), - [aux_sym_attributed_declarator_repeat1] = STATE(7067), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1812), - [sym_identifier] = ACTIONS(2959), - [aux_sym_preproc_def_token1] = ACTIONS(3635), - [aux_sym_preproc_if_token1] = ACTIONS(3637), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3639), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3639), - [sym_preproc_directive] = ACTIONS(3641), - [anon_sym_LPAREN2] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2979), - [anon_sym_STAR] = ACTIONS(2981), + [822] = { + [sym_preproc_def] = STATE(814), + [sym_preproc_function_def] = STATE(814), + [sym_preproc_call] = STATE(814), + [sym_preproc_if_in_field_declaration_list] = STATE(814), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(814), + [sym_type_definition] = STATE(814), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(5714), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(3133), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6293), + [sym_array_declarator] = STATE(6145), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym__field_declaration_list_item] = STATE(814), + [sym_field_declaration] = STATE(814), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym_explicit_function_specifier] = STATE(1759), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(814), + [sym_operator_cast] = STATE(6942), + [sym_inline_method_definition] = STATE(814), + [sym__constructor_specifiers] = STATE(1759), + [sym_operator_cast_definition] = STATE(814), + [sym_operator_cast_declaration] = STATE(814), + [sym_constructor_or_destructor_definition] = STATE(814), + [sym_constructor_or_destructor_declaration] = STATE(814), + [sym_friend_declaration] = STATE(814), + [sym_access_specifier] = STATE(8896), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(2439), + [sym_template_function] = STATE(6145), + [sym_using_declaration] = STATE(814), + [sym_alias_declaration] = STATE(814), + [sym_static_assert_declaration] = STATE(814), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5557), + [sym_qualified_identifier] = STATE(6145), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6942), + [sym_operator_name] = STATE(6145), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(814), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_attributed_declarator_repeat1] = STATE(7239), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1759), + [sym_identifier] = ACTIONS(2979), + [aux_sym_preproc_def_token1] = ACTIONS(3643), + [aux_sym_preproc_if_token1] = ACTIONS(3645), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3647), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3647), + [sym_preproc_directive] = ACTIONS(3649), + [anon_sym_LPAREN2] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(3001), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2983), - [anon_sym_SEMI] = ACTIONS(3643), - [anon_sym___extension__] = ACTIONS(3645), - [anon_sym_typedef] = ACTIONS(3647), + [anon_sym_AMP] = ACTIONS(3003), + [anon_sym_SEMI] = ACTIONS(3651), + [anon_sym___extension__] = ACTIONS(3653), + [anon_sym_typedef] = ACTIONS(3655), [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(3649), - [anon_sym_COLON_COLON] = ACTIONS(2993), + [anon_sym_using] = ACTIONS(3657), + [anon_sym_COLON_COLON] = ACTIONS(3013), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(3749), + [anon_sym_RBRACE] = ACTIONS(3757), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2995), + [anon_sym_LBRACK] = ACTIONS(3015), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -156624,7 +159260,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread_local] = ACTIONS(63), [anon_sym___thread] = ACTIONS(63), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(3653), + [anon_sym_constexpr] = ACTIONS(3661), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -156637,117 +159273,250 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2999), - [anon_sym_enum] = ACTIONS(3001), - [anon_sym_class] = ACTIONS(3003), - [anon_sym_struct] = ACTIONS(3005), - [anon_sym_union] = ACTIONS(3007), + [sym_primitive_type] = ACTIONS(3019), + [anon_sym_enum] = ACTIONS(3021), + [anon_sym_class] = ACTIONS(3023), + [anon_sym_struct] = ACTIONS(3025), + [anon_sym_union] = ACTIONS(3027), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(3009), - [anon_sym_private] = ACTIONS(3011), - [anon_sym_template] = ACTIONS(3655), + [anon_sym_typename] = ACTIONS(3029), + [anon_sym_private] = ACTIONS(3031), + [anon_sym_template] = ACTIONS(3663), [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(3657), - [anon_sym_public] = ACTIONS(3011), - [anon_sym_protected] = ACTIONS(3011), - [anon_sym_static_assert] = ACTIONS(3659), + [anon_sym_friend] = ACTIONS(3665), + [anon_sym_public] = ACTIONS(3031), + [anon_sym_protected] = ACTIONS(3031), + [anon_sym_static_assert] = ACTIONS(3667), }, - [806] = { - [sym_preproc_def] = STATE(807), - [sym_preproc_function_def] = STATE(807), - [sym_preproc_call] = STATE(807), - [sym_preproc_if_in_field_declaration_list] = STATE(807), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(807), - [sym_type_definition] = STATE(807), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(5498), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(3005), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6214), - [sym_array_declarator] = STATE(5998), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym__field_declaration_list_item] = STATE(807), - [sym_field_declaration] = STATE(807), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym_explicit_function_specifier] = STATE(1812), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(807), - [sym_operator_cast] = STATE(6839), - [sym_inline_method_definition] = STATE(807), - [sym__constructor_specifiers] = STATE(1812), - [sym_operator_cast_definition] = STATE(807), - [sym_operator_cast_declaration] = STATE(807), - [sym_constructor_or_destructor_definition] = STATE(807), - [sym_constructor_or_destructor_declaration] = STATE(807), - [sym_friend_declaration] = STATE(807), - [sym_access_specifier] = STATE(7967), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(2406), - [sym_template_function] = STATE(5998), - [sym_using_declaration] = STATE(807), - [sym_alias_declaration] = STATE(807), - [sym_static_assert_declaration] = STATE(807), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5478), - [sym_qualified_identifier] = STATE(5998), - [sym_qualified_type_identifier] = STATE(3015), - [sym_qualified_operator_cast_identifier] = STATE(6839), - [sym_operator_name] = STATE(5998), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(807), - [aux_sym__declaration_specifiers_repeat1] = STATE(1993), - [aux_sym_attributed_declarator_repeat1] = STATE(7067), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1812), - [sym_identifier] = ACTIONS(2959), - [aux_sym_preproc_def_token1] = ACTIONS(3635), - [aux_sym_preproc_if_token1] = ACTIONS(3637), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3639), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3639), - [sym_preproc_directive] = ACTIONS(3641), - [anon_sym_LPAREN2] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2979), - [anon_sym_STAR] = ACTIONS(2981), + [823] = { + [sym_preproc_def] = STATE(823), + [sym_preproc_function_def] = STATE(823), + [sym_preproc_call] = STATE(823), + [sym_preproc_if_in_field_declaration_list] = STATE(823), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(823), + [sym_type_definition] = STATE(823), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(5597), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(3133), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6389), + [sym_array_declarator] = STATE(6145), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym__field_declaration_list_item] = STATE(823), + [sym_field_declaration] = STATE(823), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym_explicit_function_specifier] = STATE(1848), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(823), + [sym_operator_cast] = STATE(6896), + [sym_inline_method_definition] = STATE(823), + [sym__constructor_specifiers] = STATE(1848), + [sym_operator_cast_definition] = STATE(823), + [sym_operator_cast_declaration] = STATE(823), + [sym_constructor_or_destructor_definition] = STATE(823), + [sym_constructor_or_destructor_declaration] = STATE(823), + [sym_friend_declaration] = STATE(823), + [sym_access_specifier] = STATE(8270), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(2439), + [sym_template_function] = STATE(6145), + [sym_using_declaration] = STATE(823), + [sym_alias_declaration] = STATE(823), + [sym_static_assert_declaration] = STATE(823), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5557), + [sym_qualified_identifier] = STATE(6145), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6896), + [sym_operator_name] = STATE(6145), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(823), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_attributed_declarator_repeat1] = STATE(7210), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1848), + [sym_identifier] = ACTIONS(3473), + [aux_sym_preproc_def_token1] = ACTIONS(3759), + [aux_sym_preproc_if_token1] = ACTIONS(3762), + [aux_sym_preproc_if_token2] = ACTIONS(3482), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3765), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3765), + [sym_preproc_directive] = ACTIONS(3768), + [anon_sym_LPAREN2] = ACTIONS(3490), + [anon_sym_TILDE] = ACTIONS(3493), + [anon_sym_STAR] = ACTIONS(3496), + [anon_sym_AMP_AMP] = ACTIONS(3499), + [anon_sym_AMP] = ACTIONS(3502), + [anon_sym_SEMI] = ACTIONS(3771), + [anon_sym___extension__] = ACTIONS(3774), + [anon_sym_typedef] = ACTIONS(3777), + [anon_sym_virtual] = ACTIONS(3514), + [anon_sym_extern] = ACTIONS(3517), + [anon_sym___attribute__] = ACTIONS(3520), + [anon_sym___attribute] = ACTIONS(3520), + [anon_sym_using] = ACTIONS(3780), + [anon_sym_COLON_COLON] = ACTIONS(3526), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3529), + [anon_sym___declspec] = ACTIONS(3532), + [anon_sym___based] = ACTIONS(3535), + [anon_sym_signed] = ACTIONS(3538), + [anon_sym_unsigned] = ACTIONS(3538), + [anon_sym_long] = ACTIONS(3538), + [anon_sym_short] = ACTIONS(3538), + [anon_sym_LBRACK] = ACTIONS(3541), + [anon_sym_static] = ACTIONS(3517), + [anon_sym_register] = ACTIONS(3517), + [anon_sym_inline] = ACTIONS(3517), + [anon_sym___inline] = ACTIONS(3517), + [anon_sym___inline__] = ACTIONS(3517), + [anon_sym___forceinline] = ACTIONS(3517), + [anon_sym_thread_local] = ACTIONS(3517), + [anon_sym___thread] = ACTIONS(3517), + [anon_sym_const] = ACTIONS(3544), + [anon_sym_constexpr] = ACTIONS(3783), + [anon_sym_volatile] = ACTIONS(3544), + [anon_sym_restrict] = ACTIONS(3544), + [anon_sym___restrict__] = ACTIONS(3544), + [anon_sym__Atomic] = ACTIONS(3544), + [anon_sym__Noreturn] = ACTIONS(3544), + [anon_sym_noreturn] = ACTIONS(3544), + [anon_sym__Nonnull] = ACTIONS(3544), + [anon_sym_mutable] = ACTIONS(3544), + [anon_sym_constinit] = ACTIONS(3544), + [anon_sym_consteval] = ACTIONS(3544), + [anon_sym_alignas] = ACTIONS(3550), + [anon_sym__Alignas] = ACTIONS(3550), + [sym_primitive_type] = ACTIONS(3553), + [anon_sym_enum] = ACTIONS(3556), + [anon_sym_class] = ACTIONS(3559), + [anon_sym_struct] = ACTIONS(3562), + [anon_sym_union] = ACTIONS(3565), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3568), + [anon_sym_decltype] = ACTIONS(3571), + [anon_sym_explicit] = ACTIONS(3574), + [anon_sym_typename] = ACTIONS(3577), + [anon_sym_private] = ACTIONS(3580), + [anon_sym_template] = ACTIONS(3786), + [anon_sym_operator] = ACTIONS(3586), + [anon_sym_friend] = ACTIONS(3789), + [anon_sym_public] = ACTIONS(3580), + [anon_sym_protected] = ACTIONS(3580), + [anon_sym_static_assert] = ACTIONS(3792), + }, + [824] = { + [sym_preproc_def] = STATE(826), + [sym_preproc_function_def] = STATE(826), + [sym_preproc_call] = STATE(826), + [sym_preproc_if_in_field_declaration_list] = STATE(826), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(826), + [sym_type_definition] = STATE(826), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(5714), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(3133), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6293), + [sym_array_declarator] = STATE(6145), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym__field_declaration_list_item] = STATE(826), + [sym_field_declaration] = STATE(826), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym_explicit_function_specifier] = STATE(1759), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(826), + [sym_operator_cast] = STATE(6942), + [sym_inline_method_definition] = STATE(826), + [sym__constructor_specifiers] = STATE(1759), + [sym_operator_cast_definition] = STATE(826), + [sym_operator_cast_declaration] = STATE(826), + [sym_constructor_or_destructor_definition] = STATE(826), + [sym_constructor_or_destructor_declaration] = STATE(826), + [sym_friend_declaration] = STATE(826), + [sym_access_specifier] = STATE(8896), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(2439), + [sym_template_function] = STATE(6145), + [sym_using_declaration] = STATE(826), + [sym_alias_declaration] = STATE(826), + [sym_static_assert_declaration] = STATE(826), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5557), + [sym_qualified_identifier] = STATE(6145), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6942), + [sym_operator_name] = STATE(6145), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(826), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_attributed_declarator_repeat1] = STATE(7239), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1759), + [sym_identifier] = ACTIONS(2979), + [aux_sym_preproc_def_token1] = ACTIONS(3643), + [aux_sym_preproc_if_token1] = ACTIONS(3645), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3647), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3647), + [sym_preproc_directive] = ACTIONS(3649), + [anon_sym_LPAREN2] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(3001), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2983), - [anon_sym_SEMI] = ACTIONS(3751), - [anon_sym___extension__] = ACTIONS(3645), - [anon_sym_typedef] = ACTIONS(3647), + [anon_sym_AMP] = ACTIONS(3003), + [anon_sym_SEMI] = ACTIONS(3795), + [anon_sym___extension__] = ACTIONS(3653), + [anon_sym_typedef] = ACTIONS(3655), [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(3649), - [anon_sym_COLON_COLON] = ACTIONS(2993), + [anon_sym_using] = ACTIONS(3657), + [anon_sym_COLON_COLON] = ACTIONS(3013), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(3753), + [anon_sym_RBRACE] = ACTIONS(3797), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2995), + [anon_sym_LBRACK] = ACTIONS(3015), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -156757,7 +159526,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread_local] = ACTIONS(63), [anon_sym___thread] = ACTIONS(63), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(3653), + [anon_sym_constexpr] = ACTIONS(3661), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -156770,117 +159539,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2999), - [anon_sym_enum] = ACTIONS(3001), - [anon_sym_class] = ACTIONS(3003), - [anon_sym_struct] = ACTIONS(3005), - [anon_sym_union] = ACTIONS(3007), + [sym_primitive_type] = ACTIONS(3019), + [anon_sym_enum] = ACTIONS(3021), + [anon_sym_class] = ACTIONS(3023), + [anon_sym_struct] = ACTIONS(3025), + [anon_sym_union] = ACTIONS(3027), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(3009), - [anon_sym_private] = ACTIONS(3011), - [anon_sym_template] = ACTIONS(3655), + [anon_sym_typename] = ACTIONS(3029), + [anon_sym_private] = ACTIONS(3031), + [anon_sym_template] = ACTIONS(3663), [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(3657), - [anon_sym_public] = ACTIONS(3011), - [anon_sym_protected] = ACTIONS(3011), - [anon_sym_static_assert] = ACTIONS(3659), + [anon_sym_friend] = ACTIONS(3665), + [anon_sym_public] = ACTIONS(3031), + [anon_sym_protected] = ACTIONS(3031), + [anon_sym_static_assert] = ACTIONS(3667), }, - [807] = { - [sym_preproc_def] = STATE(804), - [sym_preproc_function_def] = STATE(804), - [sym_preproc_call] = STATE(804), - [sym_preproc_if_in_field_declaration_list] = STATE(804), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(804), - [sym_type_definition] = STATE(804), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(5498), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(3005), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6214), - [sym_array_declarator] = STATE(5998), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym__field_declaration_list_item] = STATE(804), - [sym_field_declaration] = STATE(804), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym_explicit_function_specifier] = STATE(1812), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(804), - [sym_operator_cast] = STATE(6839), - [sym_inline_method_definition] = STATE(804), - [sym__constructor_specifiers] = STATE(1812), - [sym_operator_cast_definition] = STATE(804), - [sym_operator_cast_declaration] = STATE(804), - [sym_constructor_or_destructor_definition] = STATE(804), - [sym_constructor_or_destructor_declaration] = STATE(804), - [sym_friend_declaration] = STATE(804), - [sym_access_specifier] = STATE(7967), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(2406), - [sym_template_function] = STATE(5998), - [sym_using_declaration] = STATE(804), - [sym_alias_declaration] = STATE(804), - [sym_static_assert_declaration] = STATE(804), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5478), - [sym_qualified_identifier] = STATE(5998), - [sym_qualified_type_identifier] = STATE(3015), - [sym_qualified_operator_cast_identifier] = STATE(6839), - [sym_operator_name] = STATE(5998), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(804), - [aux_sym__declaration_specifiers_repeat1] = STATE(1993), - [aux_sym_attributed_declarator_repeat1] = STATE(7067), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1812), - [sym_identifier] = ACTIONS(2959), - [aux_sym_preproc_def_token1] = ACTIONS(3635), - [aux_sym_preproc_if_token1] = ACTIONS(3637), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3639), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3639), - [sym_preproc_directive] = ACTIONS(3641), - [anon_sym_LPAREN2] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2979), - [anon_sym_STAR] = ACTIONS(2981), + [825] = { + [sym_preproc_def] = STATE(814), + [sym_preproc_function_def] = STATE(814), + [sym_preproc_call] = STATE(814), + [sym_preproc_if_in_field_declaration_list] = STATE(814), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(814), + [sym_type_definition] = STATE(814), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(5714), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(3133), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6293), + [sym_array_declarator] = STATE(6145), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym__field_declaration_list_item] = STATE(814), + [sym_field_declaration] = STATE(814), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym_explicit_function_specifier] = STATE(1759), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(814), + [sym_operator_cast] = STATE(6942), + [sym_inline_method_definition] = STATE(814), + [sym__constructor_specifiers] = STATE(1759), + [sym_operator_cast_definition] = STATE(814), + [sym_operator_cast_declaration] = STATE(814), + [sym_constructor_or_destructor_definition] = STATE(814), + [sym_constructor_or_destructor_declaration] = STATE(814), + [sym_friend_declaration] = STATE(814), + [sym_access_specifier] = STATE(8896), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(2439), + [sym_template_function] = STATE(6145), + [sym_using_declaration] = STATE(814), + [sym_alias_declaration] = STATE(814), + [sym_static_assert_declaration] = STATE(814), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5557), + [sym_qualified_identifier] = STATE(6145), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6942), + [sym_operator_name] = STATE(6145), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(814), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_attributed_declarator_repeat1] = STATE(7239), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1759), + [sym_identifier] = ACTIONS(2979), + [aux_sym_preproc_def_token1] = ACTIONS(3643), + [aux_sym_preproc_if_token1] = ACTIONS(3645), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3647), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3647), + [sym_preproc_directive] = ACTIONS(3649), + [anon_sym_LPAREN2] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(3001), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2983), - [anon_sym_SEMI] = ACTIONS(3643), - [anon_sym___extension__] = ACTIONS(3645), - [anon_sym_typedef] = ACTIONS(3647), + [anon_sym_AMP] = ACTIONS(3003), + [anon_sym_SEMI] = ACTIONS(3651), + [anon_sym___extension__] = ACTIONS(3653), + [anon_sym_typedef] = ACTIONS(3655), [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(3649), - [anon_sym_COLON_COLON] = ACTIONS(2993), + [anon_sym_using] = ACTIONS(3657), + [anon_sym_COLON_COLON] = ACTIONS(3013), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(3755), + [anon_sym_RBRACE] = ACTIONS(3799), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2995), + [anon_sym_LBRACK] = ACTIONS(3015), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -156890,7 +159659,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread_local] = ACTIONS(63), [anon_sym___thread] = ACTIONS(63), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(3653), + [anon_sym_constexpr] = ACTIONS(3661), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -156903,117 +159672,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2999), - [anon_sym_enum] = ACTIONS(3001), - [anon_sym_class] = ACTIONS(3003), - [anon_sym_struct] = ACTIONS(3005), - [anon_sym_union] = ACTIONS(3007), + [sym_primitive_type] = ACTIONS(3019), + [anon_sym_enum] = ACTIONS(3021), + [anon_sym_class] = ACTIONS(3023), + [anon_sym_struct] = ACTIONS(3025), + [anon_sym_union] = ACTIONS(3027), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(3009), - [anon_sym_private] = ACTIONS(3011), - [anon_sym_template] = ACTIONS(3655), + [anon_sym_typename] = ACTIONS(3029), + [anon_sym_private] = ACTIONS(3031), + [anon_sym_template] = ACTIONS(3663), [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(3657), - [anon_sym_public] = ACTIONS(3011), - [anon_sym_protected] = ACTIONS(3011), - [anon_sym_static_assert] = ACTIONS(3659), + [anon_sym_friend] = ACTIONS(3665), + [anon_sym_public] = ACTIONS(3031), + [anon_sym_protected] = ACTIONS(3031), + [anon_sym_static_assert] = ACTIONS(3667), }, - [808] = { - [sym_preproc_def] = STATE(811), - [sym_preproc_function_def] = STATE(811), - [sym_preproc_call] = STATE(811), - [sym_preproc_if_in_field_declaration_list] = STATE(811), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(811), - [sym_type_definition] = STATE(811), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(5498), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(3005), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6214), - [sym_array_declarator] = STATE(5998), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym__field_declaration_list_item] = STATE(811), - [sym_field_declaration] = STATE(811), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym_explicit_function_specifier] = STATE(1812), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(811), - [sym_operator_cast] = STATE(6839), - [sym_inline_method_definition] = STATE(811), - [sym__constructor_specifiers] = STATE(1812), - [sym_operator_cast_definition] = STATE(811), - [sym_operator_cast_declaration] = STATE(811), - [sym_constructor_or_destructor_definition] = STATE(811), - [sym_constructor_or_destructor_declaration] = STATE(811), - [sym_friend_declaration] = STATE(811), - [sym_access_specifier] = STATE(7967), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(2406), - [sym_template_function] = STATE(5998), - [sym_using_declaration] = STATE(811), - [sym_alias_declaration] = STATE(811), - [sym_static_assert_declaration] = STATE(811), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5478), - [sym_qualified_identifier] = STATE(5998), - [sym_qualified_type_identifier] = STATE(3015), - [sym_qualified_operator_cast_identifier] = STATE(6839), - [sym_operator_name] = STATE(5998), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(811), - [aux_sym__declaration_specifiers_repeat1] = STATE(1993), - [aux_sym_attributed_declarator_repeat1] = STATE(7067), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1812), - [sym_identifier] = ACTIONS(2959), - [aux_sym_preproc_def_token1] = ACTIONS(3635), - [aux_sym_preproc_if_token1] = ACTIONS(3637), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3639), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3639), - [sym_preproc_directive] = ACTIONS(3641), - [anon_sym_LPAREN2] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2979), - [anon_sym_STAR] = ACTIONS(2981), + [826] = { + [sym_preproc_def] = STATE(814), + [sym_preproc_function_def] = STATE(814), + [sym_preproc_call] = STATE(814), + [sym_preproc_if_in_field_declaration_list] = STATE(814), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(814), + [sym_type_definition] = STATE(814), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(5714), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(3133), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6293), + [sym_array_declarator] = STATE(6145), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym__field_declaration_list_item] = STATE(814), + [sym_field_declaration] = STATE(814), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym_explicit_function_specifier] = STATE(1759), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(814), + [sym_operator_cast] = STATE(6942), + [sym_inline_method_definition] = STATE(814), + [sym__constructor_specifiers] = STATE(1759), + [sym_operator_cast_definition] = STATE(814), + [sym_operator_cast_declaration] = STATE(814), + [sym_constructor_or_destructor_definition] = STATE(814), + [sym_constructor_or_destructor_declaration] = STATE(814), + [sym_friend_declaration] = STATE(814), + [sym_access_specifier] = STATE(8896), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(2439), + [sym_template_function] = STATE(6145), + [sym_using_declaration] = STATE(814), + [sym_alias_declaration] = STATE(814), + [sym_static_assert_declaration] = STATE(814), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5557), + [sym_qualified_identifier] = STATE(6145), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6942), + [sym_operator_name] = STATE(6145), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(814), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_attributed_declarator_repeat1] = STATE(7239), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1759), + [sym_identifier] = ACTIONS(2979), + [aux_sym_preproc_def_token1] = ACTIONS(3643), + [aux_sym_preproc_if_token1] = ACTIONS(3645), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3647), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3647), + [sym_preproc_directive] = ACTIONS(3649), + [anon_sym_LPAREN2] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(3001), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2983), - [anon_sym_SEMI] = ACTIONS(3757), - [anon_sym___extension__] = ACTIONS(3645), - [anon_sym_typedef] = ACTIONS(3647), + [anon_sym_AMP] = ACTIONS(3003), + [anon_sym_SEMI] = ACTIONS(3651), + [anon_sym___extension__] = ACTIONS(3653), + [anon_sym_typedef] = ACTIONS(3655), [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(3649), - [anon_sym_COLON_COLON] = ACTIONS(2993), + [anon_sym_using] = ACTIONS(3657), + [anon_sym_COLON_COLON] = ACTIONS(3013), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(3759), + [anon_sym_RBRACE] = ACTIONS(3801), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2995), + [anon_sym_LBRACK] = ACTIONS(3015), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -157023,7 +159792,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread_local] = ACTIONS(63), [anon_sym___thread] = ACTIONS(63), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(3653), + [anon_sym_constexpr] = ACTIONS(3661), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -157036,117 +159805,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2999), - [anon_sym_enum] = ACTIONS(3001), - [anon_sym_class] = ACTIONS(3003), - [anon_sym_struct] = ACTIONS(3005), - [anon_sym_union] = ACTIONS(3007), + [sym_primitive_type] = ACTIONS(3019), + [anon_sym_enum] = ACTIONS(3021), + [anon_sym_class] = ACTIONS(3023), + [anon_sym_struct] = ACTIONS(3025), + [anon_sym_union] = ACTIONS(3027), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(3009), - [anon_sym_private] = ACTIONS(3011), - [anon_sym_template] = ACTIONS(3655), + [anon_sym_typename] = ACTIONS(3029), + [anon_sym_private] = ACTIONS(3031), + [anon_sym_template] = ACTIONS(3663), [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(3657), - [anon_sym_public] = ACTIONS(3011), - [anon_sym_protected] = ACTIONS(3011), - [anon_sym_static_assert] = ACTIONS(3659), + [anon_sym_friend] = ACTIONS(3665), + [anon_sym_public] = ACTIONS(3031), + [anon_sym_protected] = ACTIONS(3031), + [anon_sym_static_assert] = ACTIONS(3667), }, - [809] = { - [sym_preproc_def] = STATE(804), - [sym_preproc_function_def] = STATE(804), - [sym_preproc_call] = STATE(804), - [sym_preproc_if_in_field_declaration_list] = STATE(804), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(804), - [sym_type_definition] = STATE(804), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(5498), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(3005), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6214), - [sym_array_declarator] = STATE(5998), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym__field_declaration_list_item] = STATE(804), - [sym_field_declaration] = STATE(804), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym_explicit_function_specifier] = STATE(1812), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(804), - [sym_operator_cast] = STATE(6839), - [sym_inline_method_definition] = STATE(804), - [sym__constructor_specifiers] = STATE(1812), - [sym_operator_cast_definition] = STATE(804), - [sym_operator_cast_declaration] = STATE(804), - [sym_constructor_or_destructor_definition] = STATE(804), - [sym_constructor_or_destructor_declaration] = STATE(804), - [sym_friend_declaration] = STATE(804), - [sym_access_specifier] = STATE(7967), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(2406), - [sym_template_function] = STATE(5998), - [sym_using_declaration] = STATE(804), - [sym_alias_declaration] = STATE(804), - [sym_static_assert_declaration] = STATE(804), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5478), - [sym_qualified_identifier] = STATE(5998), - [sym_qualified_type_identifier] = STATE(3015), - [sym_qualified_operator_cast_identifier] = STATE(6839), - [sym_operator_name] = STATE(5998), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(804), - [aux_sym__declaration_specifiers_repeat1] = STATE(1993), - [aux_sym_attributed_declarator_repeat1] = STATE(7067), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1812), - [sym_identifier] = ACTIONS(2959), - [aux_sym_preproc_def_token1] = ACTIONS(3635), - [aux_sym_preproc_if_token1] = ACTIONS(3637), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3639), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3639), - [sym_preproc_directive] = ACTIONS(3641), - [anon_sym_LPAREN2] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2979), - [anon_sym_STAR] = ACTIONS(2981), + [827] = { + [sym_preproc_def] = STATE(819), + [sym_preproc_function_def] = STATE(819), + [sym_preproc_call] = STATE(819), + [sym_preproc_if_in_field_declaration_list] = STATE(819), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(819), + [sym_type_definition] = STATE(819), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(5714), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(3133), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6293), + [sym_array_declarator] = STATE(6145), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym__field_declaration_list_item] = STATE(819), + [sym_field_declaration] = STATE(819), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym_explicit_function_specifier] = STATE(1759), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(819), + [sym_operator_cast] = STATE(6942), + [sym_inline_method_definition] = STATE(819), + [sym__constructor_specifiers] = STATE(1759), + [sym_operator_cast_definition] = STATE(819), + [sym_operator_cast_declaration] = STATE(819), + [sym_constructor_or_destructor_definition] = STATE(819), + [sym_constructor_or_destructor_declaration] = STATE(819), + [sym_friend_declaration] = STATE(819), + [sym_access_specifier] = STATE(8896), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(2439), + [sym_template_function] = STATE(6145), + [sym_using_declaration] = STATE(819), + [sym_alias_declaration] = STATE(819), + [sym_static_assert_declaration] = STATE(819), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5557), + [sym_qualified_identifier] = STATE(6145), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6942), + [sym_operator_name] = STATE(6145), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(819), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_attributed_declarator_repeat1] = STATE(7239), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1759), + [sym_identifier] = ACTIONS(2979), + [aux_sym_preproc_def_token1] = ACTIONS(3643), + [aux_sym_preproc_if_token1] = ACTIONS(3645), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3647), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3647), + [sym_preproc_directive] = ACTIONS(3649), + [anon_sym_LPAREN2] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(3001), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2983), - [anon_sym_SEMI] = ACTIONS(3643), - [anon_sym___extension__] = ACTIONS(3645), - [anon_sym_typedef] = ACTIONS(3647), + [anon_sym_AMP] = ACTIONS(3003), + [anon_sym_SEMI] = ACTIONS(3803), + [anon_sym___extension__] = ACTIONS(3653), + [anon_sym_typedef] = ACTIONS(3655), [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(3649), - [anon_sym_COLON_COLON] = ACTIONS(2993), + [anon_sym_using] = ACTIONS(3657), + [anon_sym_COLON_COLON] = ACTIONS(3013), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(3761), + [anon_sym_RBRACE] = ACTIONS(3805), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2995), + [anon_sym_LBRACK] = ACTIONS(3015), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -157156,7 +159925,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread_local] = ACTIONS(63), [anon_sym___thread] = ACTIONS(63), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(3653), + [anon_sym_constexpr] = ACTIONS(3661), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -157169,117 +159938,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2999), - [anon_sym_enum] = ACTIONS(3001), - [anon_sym_class] = ACTIONS(3003), - [anon_sym_struct] = ACTIONS(3005), - [anon_sym_union] = ACTIONS(3007), + [sym_primitive_type] = ACTIONS(3019), + [anon_sym_enum] = ACTIONS(3021), + [anon_sym_class] = ACTIONS(3023), + [anon_sym_struct] = ACTIONS(3025), + [anon_sym_union] = ACTIONS(3027), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(3009), - [anon_sym_private] = ACTIONS(3011), - [anon_sym_template] = ACTIONS(3655), + [anon_sym_typename] = ACTIONS(3029), + [anon_sym_private] = ACTIONS(3031), + [anon_sym_template] = ACTIONS(3663), [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(3657), - [anon_sym_public] = ACTIONS(3011), - [anon_sym_protected] = ACTIONS(3011), - [anon_sym_static_assert] = ACTIONS(3659), + [anon_sym_friend] = ACTIONS(3665), + [anon_sym_public] = ACTIONS(3031), + [anon_sym_protected] = ACTIONS(3031), + [anon_sym_static_assert] = ACTIONS(3667), }, - [810] = { - [sym_preproc_def] = STATE(804), - [sym_preproc_function_def] = STATE(804), - [sym_preproc_call] = STATE(804), - [sym_preproc_if_in_field_declaration_list] = STATE(804), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(804), - [sym_type_definition] = STATE(804), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(5498), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(3005), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6214), - [sym_array_declarator] = STATE(5998), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym__field_declaration_list_item] = STATE(804), - [sym_field_declaration] = STATE(804), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym_explicit_function_specifier] = STATE(1812), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(804), - [sym_operator_cast] = STATE(6839), - [sym_inline_method_definition] = STATE(804), - [sym__constructor_specifiers] = STATE(1812), - [sym_operator_cast_definition] = STATE(804), - [sym_operator_cast_declaration] = STATE(804), - [sym_constructor_or_destructor_definition] = STATE(804), - [sym_constructor_or_destructor_declaration] = STATE(804), - [sym_friend_declaration] = STATE(804), - [sym_access_specifier] = STATE(7967), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(2406), - [sym_template_function] = STATE(5998), - [sym_using_declaration] = STATE(804), - [sym_alias_declaration] = STATE(804), - [sym_static_assert_declaration] = STATE(804), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5478), - [sym_qualified_identifier] = STATE(5998), - [sym_qualified_type_identifier] = STATE(3015), - [sym_qualified_operator_cast_identifier] = STATE(6839), - [sym_operator_name] = STATE(5998), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(804), - [aux_sym__declaration_specifiers_repeat1] = STATE(1993), - [aux_sym_attributed_declarator_repeat1] = STATE(7067), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1812), - [sym_identifier] = ACTIONS(2959), - [aux_sym_preproc_def_token1] = ACTIONS(3635), - [aux_sym_preproc_if_token1] = ACTIONS(3637), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3639), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3639), - [sym_preproc_directive] = ACTIONS(3641), - [anon_sym_LPAREN2] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2979), - [anon_sym_STAR] = ACTIONS(2981), + [828] = { + [sym_preproc_def] = STATE(830), + [sym_preproc_function_def] = STATE(830), + [sym_preproc_call] = STATE(830), + [sym_preproc_if_in_field_declaration_list] = STATE(830), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(830), + [sym_type_definition] = STATE(830), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(5714), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(3133), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6293), + [sym_array_declarator] = STATE(6145), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym__field_declaration_list_item] = STATE(830), + [sym_field_declaration] = STATE(830), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym_explicit_function_specifier] = STATE(1759), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(830), + [sym_operator_cast] = STATE(6942), + [sym_inline_method_definition] = STATE(830), + [sym__constructor_specifiers] = STATE(1759), + [sym_operator_cast_definition] = STATE(830), + [sym_operator_cast_declaration] = STATE(830), + [sym_constructor_or_destructor_definition] = STATE(830), + [sym_constructor_or_destructor_declaration] = STATE(830), + [sym_friend_declaration] = STATE(830), + [sym_access_specifier] = STATE(8896), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(2439), + [sym_template_function] = STATE(6145), + [sym_using_declaration] = STATE(830), + [sym_alias_declaration] = STATE(830), + [sym_static_assert_declaration] = STATE(830), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5557), + [sym_qualified_identifier] = STATE(6145), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6942), + [sym_operator_name] = STATE(6145), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(830), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_attributed_declarator_repeat1] = STATE(7239), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1759), + [sym_identifier] = ACTIONS(2979), + [aux_sym_preproc_def_token1] = ACTIONS(3643), + [aux_sym_preproc_if_token1] = ACTIONS(3645), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3647), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3647), + [sym_preproc_directive] = ACTIONS(3649), + [anon_sym_LPAREN2] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(3001), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2983), - [anon_sym_SEMI] = ACTIONS(3643), - [anon_sym___extension__] = ACTIONS(3645), - [anon_sym_typedef] = ACTIONS(3647), + [anon_sym_AMP] = ACTIONS(3003), + [anon_sym_SEMI] = ACTIONS(3807), + [anon_sym___extension__] = ACTIONS(3653), + [anon_sym_typedef] = ACTIONS(3655), [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(3649), - [anon_sym_COLON_COLON] = ACTIONS(2993), + [anon_sym_using] = ACTIONS(3657), + [anon_sym_COLON_COLON] = ACTIONS(3013), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(3763), + [anon_sym_RBRACE] = ACTIONS(3809), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2995), + [anon_sym_LBRACK] = ACTIONS(3015), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -157289,7 +160058,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread_local] = ACTIONS(63), [anon_sym___thread] = ACTIONS(63), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(3653), + [anon_sym_constexpr] = ACTIONS(3661), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -157302,117 +160071,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2999), - [anon_sym_enum] = ACTIONS(3001), - [anon_sym_class] = ACTIONS(3003), - [anon_sym_struct] = ACTIONS(3005), - [anon_sym_union] = ACTIONS(3007), + [sym_primitive_type] = ACTIONS(3019), + [anon_sym_enum] = ACTIONS(3021), + [anon_sym_class] = ACTIONS(3023), + [anon_sym_struct] = ACTIONS(3025), + [anon_sym_union] = ACTIONS(3027), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(3009), - [anon_sym_private] = ACTIONS(3011), - [anon_sym_template] = ACTIONS(3655), + [anon_sym_typename] = ACTIONS(3029), + [anon_sym_private] = ACTIONS(3031), + [anon_sym_template] = ACTIONS(3663), [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(3657), - [anon_sym_public] = ACTIONS(3011), - [anon_sym_protected] = ACTIONS(3011), - [anon_sym_static_assert] = ACTIONS(3659), + [anon_sym_friend] = ACTIONS(3665), + [anon_sym_public] = ACTIONS(3031), + [anon_sym_protected] = ACTIONS(3031), + [anon_sym_static_assert] = ACTIONS(3667), }, - [811] = { - [sym_preproc_def] = STATE(804), - [sym_preproc_function_def] = STATE(804), - [sym_preproc_call] = STATE(804), - [sym_preproc_if_in_field_declaration_list] = STATE(804), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(804), - [sym_type_definition] = STATE(804), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(5498), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(3005), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6214), - [sym_array_declarator] = STATE(5998), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym__field_declaration_list_item] = STATE(804), - [sym_field_declaration] = STATE(804), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym_explicit_function_specifier] = STATE(1812), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(804), - [sym_operator_cast] = STATE(6839), - [sym_inline_method_definition] = STATE(804), - [sym__constructor_specifiers] = STATE(1812), - [sym_operator_cast_definition] = STATE(804), - [sym_operator_cast_declaration] = STATE(804), - [sym_constructor_or_destructor_definition] = STATE(804), - [sym_constructor_or_destructor_declaration] = STATE(804), - [sym_friend_declaration] = STATE(804), - [sym_access_specifier] = STATE(7967), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(2406), - [sym_template_function] = STATE(5998), - [sym_using_declaration] = STATE(804), - [sym_alias_declaration] = STATE(804), - [sym_static_assert_declaration] = STATE(804), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5478), - [sym_qualified_identifier] = STATE(5998), - [sym_qualified_type_identifier] = STATE(3015), - [sym_qualified_operator_cast_identifier] = STATE(6839), - [sym_operator_name] = STATE(5998), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(804), - [aux_sym__declaration_specifiers_repeat1] = STATE(1993), - [aux_sym_attributed_declarator_repeat1] = STATE(7067), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1812), - [sym_identifier] = ACTIONS(2959), - [aux_sym_preproc_def_token1] = ACTIONS(3635), - [aux_sym_preproc_if_token1] = ACTIONS(3637), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3639), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3639), - [sym_preproc_directive] = ACTIONS(3641), - [anon_sym_LPAREN2] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2979), - [anon_sym_STAR] = ACTIONS(2981), + [829] = { + [sym_preproc_def] = STATE(832), + [sym_preproc_function_def] = STATE(832), + [sym_preproc_call] = STATE(832), + [sym_preproc_if_in_field_declaration_list] = STATE(832), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(832), + [sym_type_definition] = STATE(832), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(5714), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(3133), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6293), + [sym_array_declarator] = STATE(6145), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym__field_declaration_list_item] = STATE(832), + [sym_field_declaration] = STATE(832), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym_explicit_function_specifier] = STATE(1759), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(832), + [sym_operator_cast] = STATE(6942), + [sym_inline_method_definition] = STATE(832), + [sym__constructor_specifiers] = STATE(1759), + [sym_operator_cast_definition] = STATE(832), + [sym_operator_cast_declaration] = STATE(832), + [sym_constructor_or_destructor_definition] = STATE(832), + [sym_constructor_or_destructor_declaration] = STATE(832), + [sym_friend_declaration] = STATE(832), + [sym_access_specifier] = STATE(8896), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(2439), + [sym_template_function] = STATE(6145), + [sym_using_declaration] = STATE(832), + [sym_alias_declaration] = STATE(832), + [sym_static_assert_declaration] = STATE(832), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5557), + [sym_qualified_identifier] = STATE(6145), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6942), + [sym_operator_name] = STATE(6145), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(832), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_attributed_declarator_repeat1] = STATE(7239), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1759), + [sym_identifier] = ACTIONS(2979), + [aux_sym_preproc_def_token1] = ACTIONS(3643), + [aux_sym_preproc_if_token1] = ACTIONS(3645), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3647), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3647), + [sym_preproc_directive] = ACTIONS(3649), + [anon_sym_LPAREN2] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(3001), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2983), - [anon_sym_SEMI] = ACTIONS(3643), - [anon_sym___extension__] = ACTIONS(3645), - [anon_sym_typedef] = ACTIONS(3647), + [anon_sym_AMP] = ACTIONS(3003), + [anon_sym_SEMI] = ACTIONS(3811), + [anon_sym___extension__] = ACTIONS(3653), + [anon_sym_typedef] = ACTIONS(3655), [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(3649), - [anon_sym_COLON_COLON] = ACTIONS(2993), + [anon_sym_using] = ACTIONS(3657), + [anon_sym_COLON_COLON] = ACTIONS(3013), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(3765), + [anon_sym_RBRACE] = ACTIONS(3813), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2995), + [anon_sym_LBRACK] = ACTIONS(3015), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -157422,7 +160191,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread_local] = ACTIONS(63), [anon_sym___thread] = ACTIONS(63), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(3653), + [anon_sym_constexpr] = ACTIONS(3661), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -157435,383 +160204,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2999), - [anon_sym_enum] = ACTIONS(3001), - [anon_sym_class] = ACTIONS(3003), - [anon_sym_struct] = ACTIONS(3005), - [anon_sym_union] = ACTIONS(3007), + [sym_primitive_type] = ACTIONS(3019), + [anon_sym_enum] = ACTIONS(3021), + [anon_sym_class] = ACTIONS(3023), + [anon_sym_struct] = ACTIONS(3025), + [anon_sym_union] = ACTIONS(3027), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(3009), - [anon_sym_private] = ACTIONS(3011), - [anon_sym_template] = ACTIONS(3655), + [anon_sym_typename] = ACTIONS(3029), + [anon_sym_private] = ACTIONS(3031), + [anon_sym_template] = ACTIONS(3663), [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(3657), - [anon_sym_public] = ACTIONS(3011), - [anon_sym_protected] = ACTIONS(3011), - [anon_sym_static_assert] = ACTIONS(3659), - }, - [812] = { - [sym_preproc_def] = STATE(812), - [sym_preproc_function_def] = STATE(812), - [sym_preproc_call] = STATE(812), - [sym_preproc_if_in_field_declaration_list] = STATE(812), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(812), - [sym_type_definition] = STATE(812), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(5525), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(3005), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6217), - [sym_array_declarator] = STATE(5998), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym__field_declaration_list_item] = STATE(812), - [sym_field_declaration] = STATE(812), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym_explicit_function_specifier] = STATE(1760), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(812), - [sym_operator_cast] = STATE(6816), - [sym_inline_method_definition] = STATE(812), - [sym__constructor_specifiers] = STATE(1760), - [sym_operator_cast_definition] = STATE(812), - [sym_operator_cast_declaration] = STATE(812), - [sym_constructor_or_destructor_definition] = STATE(812), - [sym_constructor_or_destructor_declaration] = STATE(812), - [sym_friend_declaration] = STATE(812), - [sym_access_specifier] = STATE(8096), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(2406), - [sym_template_function] = STATE(5998), - [sym_using_declaration] = STATE(812), - [sym_alias_declaration] = STATE(812), - [sym_static_assert_declaration] = STATE(812), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5478), - [sym_qualified_identifier] = STATE(5998), - [sym_qualified_type_identifier] = STATE(3015), - [sym_qualified_operator_cast_identifier] = STATE(6816), - [sym_operator_name] = STATE(5998), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(812), - [aux_sym__declaration_specifiers_repeat1] = STATE(1993), - [aux_sym_attributed_declarator_repeat1] = STATE(7036), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1760), - [sym_identifier] = ACTIONS(3449), - [aux_sym_preproc_def_token1] = ACTIONS(3767), - [aux_sym_preproc_if_token1] = ACTIONS(3770), - [aux_sym_preproc_if_token2] = ACTIONS(3458), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3773), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3773), - [sym_preproc_directive] = ACTIONS(3776), - [anon_sym_LPAREN2] = ACTIONS(3466), - [anon_sym_TILDE] = ACTIONS(3469), - [anon_sym_STAR] = ACTIONS(3472), - [anon_sym_AMP_AMP] = ACTIONS(3475), - [anon_sym_AMP] = ACTIONS(3478), - [anon_sym_SEMI] = ACTIONS(3779), - [anon_sym___extension__] = ACTIONS(3782), - [anon_sym_typedef] = ACTIONS(3785), - [anon_sym_virtual] = ACTIONS(3490), - [anon_sym_extern] = ACTIONS(3493), - [anon_sym___attribute__] = ACTIONS(3496), - [anon_sym___attribute] = ACTIONS(3496), - [anon_sym_using] = ACTIONS(3788), - [anon_sym_COLON_COLON] = ACTIONS(3502), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3505), - [anon_sym___declspec] = ACTIONS(3508), - [anon_sym___based] = ACTIONS(3511), - [anon_sym_signed] = ACTIONS(3514), - [anon_sym_unsigned] = ACTIONS(3514), - [anon_sym_long] = ACTIONS(3514), - [anon_sym_short] = ACTIONS(3514), - [anon_sym_LBRACK] = ACTIONS(3517), - [anon_sym_static] = ACTIONS(3493), - [anon_sym_register] = ACTIONS(3493), - [anon_sym_inline] = ACTIONS(3493), - [anon_sym___inline] = ACTIONS(3493), - [anon_sym___inline__] = ACTIONS(3493), - [anon_sym___forceinline] = ACTIONS(3493), - [anon_sym_thread_local] = ACTIONS(3493), - [anon_sym___thread] = ACTIONS(3493), - [anon_sym_const] = ACTIONS(3520), - [anon_sym_constexpr] = ACTIONS(3791), - [anon_sym_volatile] = ACTIONS(3520), - [anon_sym_restrict] = ACTIONS(3520), - [anon_sym___restrict__] = ACTIONS(3520), - [anon_sym__Atomic] = ACTIONS(3520), - [anon_sym__Noreturn] = ACTIONS(3520), - [anon_sym_noreturn] = ACTIONS(3520), - [anon_sym__Nonnull] = ACTIONS(3520), - [anon_sym_mutable] = ACTIONS(3520), - [anon_sym_constinit] = ACTIONS(3520), - [anon_sym_consteval] = ACTIONS(3520), - [anon_sym_alignas] = ACTIONS(3526), - [anon_sym__Alignas] = ACTIONS(3526), - [sym_primitive_type] = ACTIONS(3529), - [anon_sym_enum] = ACTIONS(3532), - [anon_sym_class] = ACTIONS(3535), - [anon_sym_struct] = ACTIONS(3538), - [anon_sym_union] = ACTIONS(3541), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3544), - [anon_sym_decltype] = ACTIONS(3547), - [anon_sym_explicit] = ACTIONS(3550), - [anon_sym_typename] = ACTIONS(3553), - [anon_sym_private] = ACTIONS(3556), - [anon_sym_template] = ACTIONS(3794), - [anon_sym_operator] = ACTIONS(3562), - [anon_sym_friend] = ACTIONS(3797), - [anon_sym_public] = ACTIONS(3556), - [anon_sym_protected] = ACTIONS(3556), - [anon_sym_static_assert] = ACTIONS(3800), + [anon_sym_friend] = ACTIONS(3665), + [anon_sym_public] = ACTIONS(3031), + [anon_sym_protected] = ACTIONS(3031), + [anon_sym_static_assert] = ACTIONS(3667), }, - [813] = { + [830] = { [sym_preproc_def] = STATE(814), [sym_preproc_function_def] = STATE(814), [sym_preproc_call] = STATE(814), [sym_preproc_if_in_field_declaration_list] = STATE(814), [sym_preproc_ifdef_in_field_declaration_list] = STATE(814), [sym_type_definition] = STATE(814), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(5498), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(3005), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6214), - [sym_array_declarator] = STATE(5998), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(5714), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(3133), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6293), + [sym_array_declarator] = STATE(6145), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), [sym__field_declaration_list_item] = STATE(814), [sym_field_declaration] = STATE(814), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym_explicit_function_specifier] = STATE(1812), - [sym_dependent_type] = STATE(2523), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym_explicit_function_specifier] = STATE(1759), + [sym_dependent_type] = STATE(2558), [sym_template_declaration] = STATE(814), - [sym_operator_cast] = STATE(6839), + [sym_operator_cast] = STATE(6942), [sym_inline_method_definition] = STATE(814), - [sym__constructor_specifiers] = STATE(1812), + [sym__constructor_specifiers] = STATE(1759), [sym_operator_cast_definition] = STATE(814), [sym_operator_cast_declaration] = STATE(814), [sym_constructor_or_destructor_definition] = STATE(814), [sym_constructor_or_destructor_declaration] = STATE(814), [sym_friend_declaration] = STATE(814), - [sym_access_specifier] = STATE(7967), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(2406), - [sym_template_function] = STATE(5998), + [sym_access_specifier] = STATE(8896), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(2439), + [sym_template_function] = STATE(6145), [sym_using_declaration] = STATE(814), [sym_alias_declaration] = STATE(814), [sym_static_assert_declaration] = STATE(814), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5478), - [sym_qualified_identifier] = STATE(5998), - [sym_qualified_type_identifier] = STATE(3015), - [sym_qualified_operator_cast_identifier] = STATE(6839), - [sym_operator_name] = STATE(5998), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5557), + [sym_qualified_identifier] = STATE(6145), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6942), + [sym_operator_name] = STATE(6145), [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(814), - [aux_sym__declaration_specifiers_repeat1] = STATE(1993), - [aux_sym_attributed_declarator_repeat1] = STATE(7067), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1812), - [sym_identifier] = ACTIONS(2959), - [aux_sym_preproc_def_token1] = ACTIONS(3635), - [aux_sym_preproc_if_token1] = ACTIONS(3637), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3639), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3639), - [sym_preproc_directive] = ACTIONS(3641), - [anon_sym_LPAREN2] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2979), - [anon_sym_STAR] = ACTIONS(2981), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_attributed_declarator_repeat1] = STATE(7239), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1759), + [sym_identifier] = ACTIONS(2979), + [aux_sym_preproc_def_token1] = ACTIONS(3643), + [aux_sym_preproc_if_token1] = ACTIONS(3645), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3647), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3647), + [sym_preproc_directive] = ACTIONS(3649), + [anon_sym_LPAREN2] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(3001), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2983), - [anon_sym_SEMI] = ACTIONS(3803), - [anon_sym___extension__] = ACTIONS(3645), - [anon_sym_typedef] = ACTIONS(3647), + [anon_sym_AMP] = ACTIONS(3003), + [anon_sym_SEMI] = ACTIONS(3651), + [anon_sym___extension__] = ACTIONS(3653), + [anon_sym_typedef] = ACTIONS(3655), [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(3649), - [anon_sym_COLON_COLON] = ACTIONS(2993), + [anon_sym_using] = ACTIONS(3657), + [anon_sym_COLON_COLON] = ACTIONS(3013), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(3805), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2995), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(3653), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2999), - [anon_sym_enum] = ACTIONS(3001), - [anon_sym_class] = ACTIONS(3003), - [anon_sym_struct] = ACTIONS(3005), - [anon_sym_union] = ACTIONS(3007), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(3009), - [anon_sym_private] = ACTIONS(3011), - [anon_sym_template] = ACTIONS(3655), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(3657), - [anon_sym_public] = ACTIONS(3011), - [anon_sym_protected] = ACTIONS(3011), - [anon_sym_static_assert] = ACTIONS(3659), - }, - [814] = { - [sym_preproc_def] = STATE(804), - [sym_preproc_function_def] = STATE(804), - [sym_preproc_call] = STATE(804), - [sym_preproc_if_in_field_declaration_list] = STATE(804), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(804), - [sym_type_definition] = STATE(804), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(5498), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(3005), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6214), - [sym_array_declarator] = STATE(5998), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym__field_declaration_list_item] = STATE(804), - [sym_field_declaration] = STATE(804), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym_explicit_function_specifier] = STATE(1812), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(804), - [sym_operator_cast] = STATE(6839), - [sym_inline_method_definition] = STATE(804), - [sym__constructor_specifiers] = STATE(1812), - [sym_operator_cast_definition] = STATE(804), - [sym_operator_cast_declaration] = STATE(804), - [sym_constructor_or_destructor_definition] = STATE(804), - [sym_constructor_or_destructor_declaration] = STATE(804), - [sym_friend_declaration] = STATE(804), - [sym_access_specifier] = STATE(7967), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(2406), - [sym_template_function] = STATE(5998), - [sym_using_declaration] = STATE(804), - [sym_alias_declaration] = STATE(804), - [sym_static_assert_declaration] = STATE(804), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5478), - [sym_qualified_identifier] = STATE(5998), - [sym_qualified_type_identifier] = STATE(3015), - [sym_qualified_operator_cast_identifier] = STATE(6839), - [sym_operator_name] = STATE(5998), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(804), - [aux_sym__declaration_specifiers_repeat1] = STATE(1993), - [aux_sym_attributed_declarator_repeat1] = STATE(7067), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1812), - [sym_identifier] = ACTIONS(2959), - [aux_sym_preproc_def_token1] = ACTIONS(3635), - [aux_sym_preproc_if_token1] = ACTIONS(3637), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3639), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3639), - [sym_preproc_directive] = ACTIONS(3641), - [anon_sym_LPAREN2] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2979), - [anon_sym_STAR] = ACTIONS(2981), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2983), - [anon_sym_SEMI] = ACTIONS(3643), - [anon_sym___extension__] = ACTIONS(3645), - [anon_sym_typedef] = ACTIONS(3647), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(3649), - [anon_sym_COLON_COLON] = ACTIONS(2993), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(3807), + [anon_sym_RBRACE] = ACTIONS(3815), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2995), + [anon_sym_LBRACK] = ACTIONS(3015), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -157821,7 +160324,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread_local] = ACTIONS(63), [anon_sym___thread] = ACTIONS(63), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(3653), + [anon_sym_constexpr] = ACTIONS(3661), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -157834,117 +160337,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2999), - [anon_sym_enum] = ACTIONS(3001), - [anon_sym_class] = ACTIONS(3003), - [anon_sym_struct] = ACTIONS(3005), - [anon_sym_union] = ACTIONS(3007), + [sym_primitive_type] = ACTIONS(3019), + [anon_sym_enum] = ACTIONS(3021), + [anon_sym_class] = ACTIONS(3023), + [anon_sym_struct] = ACTIONS(3025), + [anon_sym_union] = ACTIONS(3027), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(3009), - [anon_sym_private] = ACTIONS(3011), - [anon_sym_template] = ACTIONS(3655), + [anon_sym_typename] = ACTIONS(3029), + [anon_sym_private] = ACTIONS(3031), + [anon_sym_template] = ACTIONS(3663), [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(3657), - [anon_sym_public] = ACTIONS(3011), - [anon_sym_protected] = ACTIONS(3011), - [anon_sym_static_assert] = ACTIONS(3659), + [anon_sym_friend] = ACTIONS(3665), + [anon_sym_public] = ACTIONS(3031), + [anon_sym_protected] = ACTIONS(3031), + [anon_sym_static_assert] = ACTIONS(3667), }, - [815] = { - [sym_preproc_def] = STATE(809), - [sym_preproc_function_def] = STATE(809), - [sym_preproc_call] = STATE(809), - [sym_preproc_if_in_field_declaration_list] = STATE(809), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(809), - [sym_type_definition] = STATE(809), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(5498), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(3005), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6214), - [sym_array_declarator] = STATE(5998), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym__field_declaration_list_item] = STATE(809), - [sym_field_declaration] = STATE(809), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym_explicit_function_specifier] = STATE(1812), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(809), - [sym_operator_cast] = STATE(6839), - [sym_inline_method_definition] = STATE(809), - [sym__constructor_specifiers] = STATE(1812), - [sym_operator_cast_definition] = STATE(809), - [sym_operator_cast_declaration] = STATE(809), - [sym_constructor_or_destructor_definition] = STATE(809), - [sym_constructor_or_destructor_declaration] = STATE(809), - [sym_friend_declaration] = STATE(809), - [sym_access_specifier] = STATE(7967), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(2406), - [sym_template_function] = STATE(5998), - [sym_using_declaration] = STATE(809), - [sym_alias_declaration] = STATE(809), - [sym_static_assert_declaration] = STATE(809), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5478), - [sym_qualified_identifier] = STATE(5998), - [sym_qualified_type_identifier] = STATE(3015), - [sym_qualified_operator_cast_identifier] = STATE(6839), - [sym_operator_name] = STATE(5998), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(809), - [aux_sym__declaration_specifiers_repeat1] = STATE(1993), - [aux_sym_attributed_declarator_repeat1] = STATE(7067), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1812), - [sym_identifier] = ACTIONS(2959), - [aux_sym_preproc_def_token1] = ACTIONS(3635), - [aux_sym_preproc_if_token1] = ACTIONS(3637), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3639), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3639), - [sym_preproc_directive] = ACTIONS(3641), - [anon_sym_LPAREN2] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2979), - [anon_sym_STAR] = ACTIONS(2981), + [831] = { + [sym_preproc_def] = STATE(823), + [sym_preproc_function_def] = STATE(823), + [sym_preproc_call] = STATE(823), + [sym_preproc_if_in_field_declaration_list] = STATE(823), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(823), + [sym_type_definition] = STATE(823), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(5597), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(3133), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6389), + [sym_array_declarator] = STATE(6145), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym__field_declaration_list_item] = STATE(823), + [sym_field_declaration] = STATE(823), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym_explicit_function_specifier] = STATE(1848), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(823), + [sym_operator_cast] = STATE(6896), + [sym_inline_method_definition] = STATE(823), + [sym__constructor_specifiers] = STATE(1848), + [sym_operator_cast_definition] = STATE(823), + [sym_operator_cast_declaration] = STATE(823), + [sym_constructor_or_destructor_definition] = STATE(823), + [sym_constructor_or_destructor_declaration] = STATE(823), + [sym_friend_declaration] = STATE(823), + [sym_access_specifier] = STATE(8270), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(2439), + [sym_template_function] = STATE(6145), + [sym_using_declaration] = STATE(823), + [sym_alias_declaration] = STATE(823), + [sym_static_assert_declaration] = STATE(823), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5557), + [sym_qualified_identifier] = STATE(6145), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6896), + [sym_operator_name] = STATE(6145), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(823), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_attributed_declarator_repeat1] = STATE(7210), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1848), + [sym_identifier] = ACTIONS(2979), + [aux_sym_preproc_def_token1] = ACTIONS(3731), + [aux_sym_preproc_if_token1] = ACTIONS(3733), + [aux_sym_preproc_if_token2] = ACTIONS(3817), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3737), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3737), + [sym_preproc_directive] = ACTIONS(3739), + [anon_sym_LPAREN2] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(3001), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2983), - [anon_sym_SEMI] = ACTIONS(3809), - [anon_sym___extension__] = ACTIONS(3645), - [anon_sym_typedef] = ACTIONS(3647), + [anon_sym_AMP] = ACTIONS(3003), + [anon_sym_SEMI] = ACTIONS(3819), + [anon_sym___extension__] = ACTIONS(3743), + [anon_sym_typedef] = ACTIONS(3745), [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(3649), - [anon_sym_COLON_COLON] = ACTIONS(2993), + [anon_sym_using] = ACTIONS(3747), + [anon_sym_COLON_COLON] = ACTIONS(3013), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(3811), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2995), + [anon_sym_LBRACK] = ACTIONS(3015), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -157954,7 +160457,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread_local] = ACTIONS(63), [anon_sym___thread] = ACTIONS(63), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(3653), + [anon_sym_constexpr] = ACTIONS(3749), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -157967,117 +160470,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2999), - [anon_sym_enum] = ACTIONS(3001), - [anon_sym_class] = ACTIONS(3003), - [anon_sym_struct] = ACTIONS(3005), - [anon_sym_union] = ACTIONS(3007), + [sym_primitive_type] = ACTIONS(3019), + [anon_sym_enum] = ACTIONS(3021), + [anon_sym_class] = ACTIONS(3023), + [anon_sym_struct] = ACTIONS(3025), + [anon_sym_union] = ACTIONS(3027), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(3009), - [anon_sym_private] = ACTIONS(3011), - [anon_sym_template] = ACTIONS(3655), + [anon_sym_typename] = ACTIONS(3029), + [anon_sym_private] = ACTIONS(3031), + [anon_sym_template] = ACTIONS(3751), [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(3657), - [anon_sym_public] = ACTIONS(3011), - [anon_sym_protected] = ACTIONS(3011), - [anon_sym_static_assert] = ACTIONS(3659), + [anon_sym_friend] = ACTIONS(3753), + [anon_sym_public] = ACTIONS(3031), + [anon_sym_protected] = ACTIONS(3031), + [anon_sym_static_assert] = ACTIONS(3755), }, - [816] = { - [sym_preproc_def] = STATE(795), - [sym_preproc_function_def] = STATE(795), - [sym_preproc_call] = STATE(795), - [sym_preproc_if_in_field_declaration_list] = STATE(795), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(795), - [sym_type_definition] = STATE(795), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(5498), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(3005), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6214), - [sym_array_declarator] = STATE(5998), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym__field_declaration_list_item] = STATE(795), - [sym_field_declaration] = STATE(795), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym_explicit_function_specifier] = STATE(1812), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(795), - [sym_operator_cast] = STATE(6839), - [sym_inline_method_definition] = STATE(795), - [sym__constructor_specifiers] = STATE(1812), - [sym_operator_cast_definition] = STATE(795), - [sym_operator_cast_declaration] = STATE(795), - [sym_constructor_or_destructor_definition] = STATE(795), - [sym_constructor_or_destructor_declaration] = STATE(795), - [sym_friend_declaration] = STATE(795), - [sym_access_specifier] = STATE(7967), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(2406), - [sym_template_function] = STATE(5998), - [sym_using_declaration] = STATE(795), - [sym_alias_declaration] = STATE(795), - [sym_static_assert_declaration] = STATE(795), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5478), - [sym_qualified_identifier] = STATE(5998), - [sym_qualified_type_identifier] = STATE(3015), - [sym_qualified_operator_cast_identifier] = STATE(6839), - [sym_operator_name] = STATE(5998), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(795), - [aux_sym__declaration_specifiers_repeat1] = STATE(1993), - [aux_sym_attributed_declarator_repeat1] = STATE(7067), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1812), - [sym_identifier] = ACTIONS(2959), - [aux_sym_preproc_def_token1] = ACTIONS(3635), - [aux_sym_preproc_if_token1] = ACTIONS(3637), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3639), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3639), - [sym_preproc_directive] = ACTIONS(3641), - [anon_sym_LPAREN2] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2979), - [anon_sym_STAR] = ACTIONS(2981), + [832] = { + [sym_preproc_def] = STATE(814), + [sym_preproc_function_def] = STATE(814), + [sym_preproc_call] = STATE(814), + [sym_preproc_if_in_field_declaration_list] = STATE(814), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(814), + [sym_type_definition] = STATE(814), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(5714), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(3133), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6293), + [sym_array_declarator] = STATE(6145), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym__field_declaration_list_item] = STATE(814), + [sym_field_declaration] = STATE(814), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym_explicit_function_specifier] = STATE(1759), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(814), + [sym_operator_cast] = STATE(6942), + [sym_inline_method_definition] = STATE(814), + [sym__constructor_specifiers] = STATE(1759), + [sym_operator_cast_definition] = STATE(814), + [sym_operator_cast_declaration] = STATE(814), + [sym_constructor_or_destructor_definition] = STATE(814), + [sym_constructor_or_destructor_declaration] = STATE(814), + [sym_friend_declaration] = STATE(814), + [sym_access_specifier] = STATE(8896), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(2439), + [sym_template_function] = STATE(6145), + [sym_using_declaration] = STATE(814), + [sym_alias_declaration] = STATE(814), + [sym_static_assert_declaration] = STATE(814), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5557), + [sym_qualified_identifier] = STATE(6145), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6942), + [sym_operator_name] = STATE(6145), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(814), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_attributed_declarator_repeat1] = STATE(7239), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1759), + [sym_identifier] = ACTIONS(2979), + [aux_sym_preproc_def_token1] = ACTIONS(3643), + [aux_sym_preproc_if_token1] = ACTIONS(3645), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3647), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3647), + [sym_preproc_directive] = ACTIONS(3649), + [anon_sym_LPAREN2] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(3001), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2983), - [anon_sym_SEMI] = ACTIONS(3813), - [anon_sym___extension__] = ACTIONS(3645), - [anon_sym_typedef] = ACTIONS(3647), + [anon_sym_AMP] = ACTIONS(3003), + [anon_sym_SEMI] = ACTIONS(3651), + [anon_sym___extension__] = ACTIONS(3653), + [anon_sym_typedef] = ACTIONS(3655), [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(3649), - [anon_sym_COLON_COLON] = ACTIONS(2993), + [anon_sym_using] = ACTIONS(3657), + [anon_sym_COLON_COLON] = ACTIONS(3013), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(3815), + [anon_sym_RBRACE] = ACTIONS(3821), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2995), + [anon_sym_LBRACK] = ACTIONS(3015), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -158087,7 +160590,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread_local] = ACTIONS(63), [anon_sym___thread] = ACTIONS(63), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(3653), + [anon_sym_constexpr] = ACTIONS(3661), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -158100,117 +160603,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2999), - [anon_sym_enum] = ACTIONS(3001), - [anon_sym_class] = ACTIONS(3003), - [anon_sym_struct] = ACTIONS(3005), - [anon_sym_union] = ACTIONS(3007), + [sym_primitive_type] = ACTIONS(3019), + [anon_sym_enum] = ACTIONS(3021), + [anon_sym_class] = ACTIONS(3023), + [anon_sym_struct] = ACTIONS(3025), + [anon_sym_union] = ACTIONS(3027), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(3009), - [anon_sym_private] = ACTIONS(3011), - [anon_sym_template] = ACTIONS(3655), + [anon_sym_typename] = ACTIONS(3029), + [anon_sym_private] = ACTIONS(3031), + [anon_sym_template] = ACTIONS(3663), [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(3657), - [anon_sym_public] = ACTIONS(3011), - [anon_sym_protected] = ACTIONS(3011), - [anon_sym_static_assert] = ACTIONS(3659), + [anon_sym_friend] = ACTIONS(3665), + [anon_sym_public] = ACTIONS(3031), + [anon_sym_protected] = ACTIONS(3031), + [anon_sym_static_assert] = ACTIONS(3667), }, - [817] = { - [sym_preproc_def] = STATE(804), - [sym_preproc_function_def] = STATE(804), - [sym_preproc_call] = STATE(804), - [sym_preproc_if_in_field_declaration_list] = STATE(804), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(804), - [sym_type_definition] = STATE(804), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(5498), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(3005), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6214), - [sym_array_declarator] = STATE(5998), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym__field_declaration_list_item] = STATE(804), - [sym_field_declaration] = STATE(804), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym_explicit_function_specifier] = STATE(1812), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(804), - [sym_operator_cast] = STATE(6839), - [sym_inline_method_definition] = STATE(804), - [sym__constructor_specifiers] = STATE(1812), - [sym_operator_cast_definition] = STATE(804), - [sym_operator_cast_declaration] = STATE(804), - [sym_constructor_or_destructor_definition] = STATE(804), - [sym_constructor_or_destructor_declaration] = STATE(804), - [sym_friend_declaration] = STATE(804), - [sym_access_specifier] = STATE(7967), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(2406), - [sym_template_function] = STATE(5998), - [sym_using_declaration] = STATE(804), - [sym_alias_declaration] = STATE(804), - [sym_static_assert_declaration] = STATE(804), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5478), - [sym_qualified_identifier] = STATE(5998), - [sym_qualified_type_identifier] = STATE(3015), - [sym_qualified_operator_cast_identifier] = STATE(6839), - [sym_operator_name] = STATE(5998), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(804), - [aux_sym__declaration_specifiers_repeat1] = STATE(1993), - [aux_sym_attributed_declarator_repeat1] = STATE(7067), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1812), - [sym_identifier] = ACTIONS(2959), - [aux_sym_preproc_def_token1] = ACTIONS(3635), - [aux_sym_preproc_if_token1] = ACTIONS(3637), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3639), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3639), - [sym_preproc_directive] = ACTIONS(3641), - [anon_sym_LPAREN2] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2979), - [anon_sym_STAR] = ACTIONS(2981), + [833] = { + [sym_preproc_def] = STATE(811), + [sym_preproc_function_def] = STATE(811), + [sym_preproc_call] = STATE(811), + [sym_preproc_if_in_field_declaration_list] = STATE(811), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(811), + [sym_type_definition] = STATE(811), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(5714), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(3133), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6293), + [sym_array_declarator] = STATE(6145), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym__field_declaration_list_item] = STATE(811), + [sym_field_declaration] = STATE(811), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym_explicit_function_specifier] = STATE(1759), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(811), + [sym_operator_cast] = STATE(6942), + [sym_inline_method_definition] = STATE(811), + [sym__constructor_specifiers] = STATE(1759), + [sym_operator_cast_definition] = STATE(811), + [sym_operator_cast_declaration] = STATE(811), + [sym_constructor_or_destructor_definition] = STATE(811), + [sym_constructor_or_destructor_declaration] = STATE(811), + [sym_friend_declaration] = STATE(811), + [sym_access_specifier] = STATE(8896), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(2439), + [sym_template_function] = STATE(6145), + [sym_using_declaration] = STATE(811), + [sym_alias_declaration] = STATE(811), + [sym_static_assert_declaration] = STATE(811), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5557), + [sym_qualified_identifier] = STATE(6145), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6942), + [sym_operator_name] = STATE(6145), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(811), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_attributed_declarator_repeat1] = STATE(7239), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1759), + [sym_identifier] = ACTIONS(2979), + [aux_sym_preproc_def_token1] = ACTIONS(3643), + [aux_sym_preproc_if_token1] = ACTIONS(3645), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3647), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3647), + [sym_preproc_directive] = ACTIONS(3649), + [anon_sym_LPAREN2] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(3001), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2983), - [anon_sym_SEMI] = ACTIONS(3643), - [anon_sym___extension__] = ACTIONS(3645), - [anon_sym_typedef] = ACTIONS(3647), + [anon_sym_AMP] = ACTIONS(3003), + [anon_sym_SEMI] = ACTIONS(3823), + [anon_sym___extension__] = ACTIONS(3653), + [anon_sym_typedef] = ACTIONS(3655), [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(3649), - [anon_sym_COLON_COLON] = ACTIONS(2993), + [anon_sym_using] = ACTIONS(3657), + [anon_sym_COLON_COLON] = ACTIONS(3013), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(3817), + [anon_sym_RBRACE] = ACTIONS(3825), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2995), + [anon_sym_LBRACK] = ACTIONS(3015), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -158220,7 +160723,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread_local] = ACTIONS(63), [anon_sym___thread] = ACTIONS(63), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(3653), + [anon_sym_constexpr] = ACTIONS(3661), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -158233,117 +160736,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2999), - [anon_sym_enum] = ACTIONS(3001), - [anon_sym_class] = ACTIONS(3003), - [anon_sym_struct] = ACTIONS(3005), - [anon_sym_union] = ACTIONS(3007), + [sym_primitive_type] = ACTIONS(3019), + [anon_sym_enum] = ACTIONS(3021), + [anon_sym_class] = ACTIONS(3023), + [anon_sym_struct] = ACTIONS(3025), + [anon_sym_union] = ACTIONS(3027), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(3009), - [anon_sym_private] = ACTIONS(3011), - [anon_sym_template] = ACTIONS(3655), + [anon_sym_typename] = ACTIONS(3029), + [anon_sym_private] = ACTIONS(3031), + [anon_sym_template] = ACTIONS(3663), [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(3657), - [anon_sym_public] = ACTIONS(3011), - [anon_sym_protected] = ACTIONS(3011), - [anon_sym_static_assert] = ACTIONS(3659), + [anon_sym_friend] = ACTIONS(3665), + [anon_sym_public] = ACTIONS(3031), + [anon_sym_protected] = ACTIONS(3031), + [anon_sym_static_assert] = ACTIONS(3667), }, - [818] = { + [834] = { [sym_preproc_def] = STATE(817), [sym_preproc_function_def] = STATE(817), [sym_preproc_call] = STATE(817), [sym_preproc_if_in_field_declaration_list] = STATE(817), [sym_preproc_ifdef_in_field_declaration_list] = STATE(817), [sym_type_definition] = STATE(817), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(5498), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(3005), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6214), - [sym_array_declarator] = STATE(5998), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(5714), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(3133), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6293), + [sym_array_declarator] = STATE(6145), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), [sym__field_declaration_list_item] = STATE(817), [sym_field_declaration] = STATE(817), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym_explicit_function_specifier] = STATE(1812), - [sym_dependent_type] = STATE(2523), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym_explicit_function_specifier] = STATE(1759), + [sym_dependent_type] = STATE(2558), [sym_template_declaration] = STATE(817), - [sym_operator_cast] = STATE(6839), + [sym_operator_cast] = STATE(6942), [sym_inline_method_definition] = STATE(817), - [sym__constructor_specifiers] = STATE(1812), + [sym__constructor_specifiers] = STATE(1759), [sym_operator_cast_definition] = STATE(817), [sym_operator_cast_declaration] = STATE(817), [sym_constructor_or_destructor_definition] = STATE(817), [sym_constructor_or_destructor_declaration] = STATE(817), [sym_friend_declaration] = STATE(817), - [sym_access_specifier] = STATE(7967), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(2406), - [sym_template_function] = STATE(5998), + [sym_access_specifier] = STATE(8896), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(2439), + [sym_template_function] = STATE(6145), [sym_using_declaration] = STATE(817), [sym_alias_declaration] = STATE(817), [sym_static_assert_declaration] = STATE(817), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5478), - [sym_qualified_identifier] = STATE(5998), - [sym_qualified_type_identifier] = STATE(3015), - [sym_qualified_operator_cast_identifier] = STATE(6839), - [sym_operator_name] = STATE(5998), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5557), + [sym_qualified_identifier] = STATE(6145), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6942), + [sym_operator_name] = STATE(6145), [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(817), - [aux_sym__declaration_specifiers_repeat1] = STATE(1993), - [aux_sym_attributed_declarator_repeat1] = STATE(7067), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1812), - [sym_identifier] = ACTIONS(2959), - [aux_sym_preproc_def_token1] = ACTIONS(3635), - [aux_sym_preproc_if_token1] = ACTIONS(3637), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3639), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3639), - [sym_preproc_directive] = ACTIONS(3641), - [anon_sym_LPAREN2] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2979), - [anon_sym_STAR] = ACTIONS(2981), + [aux_sym__declaration_specifiers_repeat1] = STATE(2036), + [aux_sym_attributed_declarator_repeat1] = STATE(7239), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1759), + [sym_identifier] = ACTIONS(2979), + [aux_sym_preproc_def_token1] = ACTIONS(3643), + [aux_sym_preproc_if_token1] = ACTIONS(3645), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3647), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3647), + [sym_preproc_directive] = ACTIONS(3649), + [anon_sym_LPAREN2] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(3001), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2983), - [anon_sym_SEMI] = ACTIONS(3819), - [anon_sym___extension__] = ACTIONS(3645), - [anon_sym_typedef] = ACTIONS(3647), + [anon_sym_AMP] = ACTIONS(3003), + [anon_sym_SEMI] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(3653), + [anon_sym_typedef] = ACTIONS(3655), [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(3649), - [anon_sym_COLON_COLON] = ACTIONS(2993), + [anon_sym_using] = ACTIONS(3657), + [anon_sym_COLON_COLON] = ACTIONS(3013), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(3821), + [anon_sym_RBRACE] = ACTIONS(3829), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2995), + [anon_sym_LBRACK] = ACTIONS(3015), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -158353,7 +160856,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread_local] = ACTIONS(63), [anon_sym___thread] = ACTIONS(63), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(3653), + [anon_sym_constexpr] = ACTIONS(3661), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -158366,75 +160869,207 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2999), - [anon_sym_enum] = ACTIONS(3001), - [anon_sym_class] = ACTIONS(3003), - [anon_sym_struct] = ACTIONS(3005), - [anon_sym_union] = ACTIONS(3007), + [sym_primitive_type] = ACTIONS(3019), + [anon_sym_enum] = ACTIONS(3021), + [anon_sym_class] = ACTIONS(3023), + [anon_sym_struct] = ACTIONS(3025), + [anon_sym_union] = ACTIONS(3027), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(3009), - [anon_sym_private] = ACTIONS(3011), - [anon_sym_template] = ACTIONS(3655), + [anon_sym_typename] = ACTIONS(3029), + [anon_sym_private] = ACTIONS(3031), + [anon_sym_template] = ACTIONS(3663), [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(3657), - [anon_sym_public] = ACTIONS(3011), - [anon_sym_protected] = ACTIONS(3011), - [anon_sym_static_assert] = ACTIONS(3659), + [anon_sym_friend] = ACTIONS(3665), + [anon_sym_public] = ACTIONS(3031), + [anon_sym_protected] = ACTIONS(3031), + [anon_sym_static_assert] = ACTIONS(3667), }, - [819] = { - [sym_expression] = STATE(3797), - [sym__string] = STATE(4380), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3253), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3253), - [sym_call_expression] = STATE(3253), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3253), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3253), - [sym_initializer_list] = STATE(3805), - [sym_char_literal] = STATE(4380), - [sym_concatenated_string] = STATE(4380), - [sym_string_literal] = STATE(3416), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3416), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3253), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3253), - [sym_identifier] = ACTIONS(3823), + [835] = { + [sym_expression] = STATE(3759), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_initializer_list] = STATE(3899), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1944), + [anon_sym_COMMA] = ACTIONS(1944), + [anon_sym_RPAREN] = ACTIONS(1944), + [anon_sym_LPAREN2] = ACTIONS(1944), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(1942), + [anon_sym_PLUS] = ACTIONS(1942), + [anon_sym_STAR] = ACTIONS(1944), + [anon_sym_SLASH] = ACTIONS(1942), + [anon_sym_PERCENT] = ACTIONS(1944), + [anon_sym_PIPE_PIPE] = ACTIONS(1944), + [anon_sym_AMP_AMP] = ACTIONS(1944), + [anon_sym_PIPE] = ACTIONS(1942), + [anon_sym_CARET] = ACTIONS(1944), + [anon_sym_AMP] = ACTIONS(1942), + [anon_sym_EQ_EQ] = ACTIONS(1944), + [anon_sym_BANG_EQ] = ACTIONS(1944), + [anon_sym_GT] = ACTIONS(1942), + [anon_sym_GT_EQ] = ACTIONS(1944), + [anon_sym_LT_EQ] = ACTIONS(1942), + [anon_sym_LT] = ACTIONS(1942), + [anon_sym_LT_LT] = ACTIONS(1944), + [anon_sym_GT_GT] = ACTIONS(1944), + [anon_sym_SEMI] = ACTIONS(1944), + [anon_sym___extension__] = ACTIONS(2167), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(3623), + [anon_sym_RBRACE] = ACTIONS(1944), + [anon_sym_LBRACK] = ACTIONS(1944), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_QMARK] = ACTIONS(1944), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_LT_EQ_GT] = ACTIONS(1944), + [anon_sym_or] = ACTIONS(1942), + [anon_sym_and] = ACTIONS(1942), + [anon_sym_bitor] = ACTIONS(1942), + [anon_sym_xor] = ACTIONS(1942), + [anon_sym_bitand] = ACTIONS(1942), + [anon_sym_not_eq] = ACTIONS(1942), + [anon_sym_DASH_DASH] = ACTIONS(1944), + [anon_sym_PLUS_PLUS] = ACTIONS(1944), + [anon_sym_sizeof] = ACTIONS(105), + [anon_sym___alignof__] = ACTIONS(107), + [anon_sym___alignof] = ACTIONS(107), + [anon_sym__alignof] = ACTIONS(107), + [anon_sym_alignof] = ACTIONS(107), + [anon_sym__Alignof] = ACTIONS(107), + [anon_sym_offsetof] = ACTIONS(109), + [anon_sym__Generic] = ACTIONS(111), + [anon_sym_asm] = ACTIONS(113), + [anon_sym___asm__] = ACTIONS(113), + [anon_sym___asm] = ACTIONS(113), + [anon_sym_DOT] = ACTIONS(1942), + [anon_sym_DOT_STAR] = ACTIONS(1944), + [anon_sym_DASH_GT] = ACTIONS(1944), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(117), + [anon_sym_u_SQUOTE] = ACTIONS(117), + [anon_sym_U_SQUOTE] = ACTIONS(117), + [anon_sym_u8_SQUOTE] = ACTIONS(117), + [anon_sym_SQUOTE] = ACTIONS(117), + [anon_sym_L_DQUOTE] = ACTIONS(119), + [anon_sym_u_DQUOTE] = ACTIONS(119), + [anon_sym_U_DQUOTE] = ACTIONS(119), + [anon_sym_u8_DQUOTE] = ACTIONS(119), + [anon_sym_DQUOTE] = ACTIONS(119), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(123), + [anon_sym_nullptr] = ACTIONS(123), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(145), + [anon_sym_R_DQUOTE] = ACTIONS(159), + [anon_sym_LR_DQUOTE] = ACTIONS(159), + [anon_sym_uR_DQUOTE] = ACTIONS(159), + [anon_sym_UR_DQUOTE] = ACTIONS(159), + [anon_sym_u8R_DQUOTE] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), + }, + [836] = { + [sym_expression] = STATE(3759), + [sym__string] = STATE(4455), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3366), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3366), + [sym_call_expression] = STATE(3366), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3366), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3366), + [sym_initializer_list] = STATE(3899), + [sym_char_literal] = STATE(4455), + [sym_concatenated_string] = STATE(4455), + [sym_string_literal] = STATE(3406), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3406), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3366), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3366), + [sym_identifier] = ACTIONS(3833), [anon_sym_DOT_DOT_DOT] = ACTIONS(1944), [anon_sym_COMMA] = ACTIONS(1944), [anon_sym_LPAREN2] = ACTIONS(1944), - [anon_sym_BANG] = ACTIONS(3825), - [anon_sym_TILDE] = ACTIONS(3827), + [anon_sym_BANG] = ACTIONS(3835), + [anon_sym_TILDE] = ACTIONS(3837), [anon_sym_DASH] = ACTIONS(1942), [anon_sym_PLUS] = ACTIONS(1942), [anon_sym_STAR] = ACTIONS(1944), @@ -158454,16 +161089,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1944), [anon_sym_GT_GT] = ACTIONS(1944), [anon_sym_SEMI] = ACTIONS(1944), - [anon_sym___extension__] = ACTIONS(3829), + [anon_sym___extension__] = ACTIONS(3839), [anon_sym___attribute__] = ACTIONS(1942), [anon_sym___attribute] = ACTIONS(1942), - [anon_sym_COLON_COLON] = ACTIONS(3831), - [anon_sym_LBRACE] = ACTIONS(3615), + [anon_sym_COLON_COLON] = ACTIONS(3841), + [anon_sym_LBRACE] = ACTIONS(3623), [anon_sym_LBRACK] = ACTIONS(1944), - [sym_primitive_type] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_QMARK] = ACTIONS(1944), - [anon_sym_not] = ACTIONS(3825), - [anon_sym_compl] = ACTIONS(3825), + [anon_sym_not] = ACTIONS(3835), + [anon_sym_compl] = ACTIONS(3835), [anon_sym_LT_EQ_GT] = ACTIONS(1944), [anon_sym_or] = ACTIONS(1942), [anon_sym_and] = ACTIONS(1942), @@ -158473,7 +161108,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_not_eq] = ACTIONS(1942), [anon_sym_DASH_DASH] = ACTIONS(1944), [anon_sym_PLUS_PLUS] = ACTIONS(1944), - [anon_sym_sizeof] = ACTIONS(3833), + [anon_sym_sizeof] = ACTIONS(3843), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -158487,87 +161122,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(1942), [anon_sym_DOT_STAR] = ACTIONS(1944), [anon_sym_DASH_GT] = ACTIONS(1944), - [sym_number_literal] = ACTIONS(3835), - [anon_sym_L_SQUOTE] = ACTIONS(3837), - [anon_sym_u_SQUOTE] = ACTIONS(3837), - [anon_sym_U_SQUOTE] = ACTIONS(3837), - [anon_sym_u8_SQUOTE] = ACTIONS(3837), - [anon_sym_SQUOTE] = ACTIONS(3837), - [anon_sym_L_DQUOTE] = ACTIONS(3839), - [anon_sym_u_DQUOTE] = ACTIONS(3839), - [anon_sym_U_DQUOTE] = ACTIONS(3839), - [anon_sym_u8_DQUOTE] = ACTIONS(3839), - [anon_sym_DQUOTE] = ACTIONS(3839), + [sym_number_literal] = ACTIONS(3845), + [anon_sym_L_SQUOTE] = ACTIONS(3847), + [anon_sym_u_SQUOTE] = ACTIONS(3847), + [anon_sym_U_SQUOTE] = ACTIONS(3847), + [anon_sym_u8_SQUOTE] = ACTIONS(3847), + [anon_sym_SQUOTE] = ACTIONS(3847), + [anon_sym_L_DQUOTE] = ACTIONS(3849), + [anon_sym_u_DQUOTE] = ACTIONS(3849), + [anon_sym_U_DQUOTE] = ACTIONS(3849), + [anon_sym_u8_DQUOTE] = ACTIONS(3849), + [anon_sym_DQUOTE] = ACTIONS(3849), [sym_true] = ACTIONS(229), [sym_false] = ACTIONS(229), [anon_sym_NULL] = ACTIONS(123), [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3841), - [anon_sym_R_DQUOTE] = ACTIONS(3843), - [anon_sym_LR_DQUOTE] = ACTIONS(3843), - [anon_sym_uR_DQUOTE] = ACTIONS(3843), - [anon_sym_UR_DQUOTE] = ACTIONS(3843), - [anon_sym_u8R_DQUOTE] = ACTIONS(3843), - [anon_sym_co_await] = ACTIONS(3845), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3851), + [anon_sym_R_DQUOTE] = ACTIONS(3853), + [anon_sym_LR_DQUOTE] = ACTIONS(3853), + [anon_sym_uR_DQUOTE] = ACTIONS(3853), + [anon_sym_UR_DQUOTE] = ACTIONS(3853), + [anon_sym_u8R_DQUOTE] = ACTIONS(3853), + [anon_sym_co_await] = ACTIONS(3855), [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [820] = { - [sym_expression] = STATE(3797), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_initializer_list] = STATE(3805), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), + [837] = { + [sym_expression] = STATE(4526), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3597), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3597), + [sym_call_expression] = STATE(3597), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3597), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3597), + [sym_initializer_list] = STATE(3899), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3597), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3597), + [sym_identifier] = ACTIONS(3857), [anon_sym_DOT_DOT_DOT] = ACTIONS(1944), [anon_sym_COMMA] = ACTIONS(1944), - [anon_sym_RPAREN] = ACTIONS(1944), [anon_sym_LPAREN2] = ACTIONS(1944), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(3859), + [anon_sym_TILDE] = ACTIONS(3861), [anon_sym_DASH] = ACTIONS(1942), [anon_sym_PLUS] = ACTIONS(1942), [anon_sym_STAR] = ACTIONS(1944), @@ -158586,16 +161220,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(1942), [anon_sym_LT_LT] = ACTIONS(1944), [anon_sym_GT_GT] = ACTIONS(1944), - [anon_sym_SEMI] = ACTIONS(1944), - [anon_sym___extension__] = ACTIONS(2024), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3615), - [anon_sym_RBRACE] = ACTIONS(1944), + [anon_sym___extension__] = ACTIONS(3863), + [anon_sym_COLON] = ACTIONS(1942), + [anon_sym_COLON_COLON] = ACTIONS(3865), + [anon_sym_LBRACE] = ACTIONS(3623), [anon_sym_LBRACK] = ACTIONS(1944), - [sym_primitive_type] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_QMARK] = ACTIONS(1944), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), + [anon_sym_not] = ACTIONS(3859), + [anon_sym_compl] = ACTIONS(3859), [anon_sym_LT_EQ_GT] = ACTIONS(1944), [anon_sym_or] = ACTIONS(1942), [anon_sym_and] = ACTIONS(1942), @@ -158605,7 +161238,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_not_eq] = ACTIONS(1942), [anon_sym_DASH_DASH] = ACTIONS(1944), [anon_sym_PLUS_PLUS] = ACTIONS(1944), - [anon_sym_sizeof] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(3867), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -158636,69 +161269,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(145), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3869), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), + [anon_sym_co_await] = ACTIONS(3871), + [anon_sym_new] = ACTIONS(3873), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [821] = { - [sym_expression] = STATE(3797), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3678), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3678), - [sym_call_expression] = STATE(3678), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3678), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3678), - [sym_initializer_list] = STATE(3805), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3678), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3678), - [sym_identifier] = ACTIONS(3849), + [838] = { + [sym_expression] = STATE(4626), + [sym__string] = STATE(4825), + [sym_conditional_expression] = STATE(4856), + [sym_assignment_expression] = STATE(4856), + [sym_pointer_expression] = STATE(3701), + [sym_unary_expression] = STATE(4856), + [sym_binary_expression] = STATE(4856), + [sym_update_expression] = STATE(4856), + [sym_cast_expression] = STATE(4856), + [sym_sizeof_expression] = STATE(4856), + [sym_alignof_expression] = STATE(4856), + [sym_offsetof_expression] = STATE(4856), + [sym_generic_expression] = STATE(4856), + [sym_subscript_expression] = STATE(3701), + [sym_call_expression] = STATE(3701), + [sym_gnu_asm_expression] = STATE(4856), + [sym_extension_expression] = STATE(4856), + [sym_field_expression] = STATE(3701), + [sym_compound_literal_expression] = STATE(4856), + [sym_parenthesized_expression] = STATE(3701), + [sym_initializer_list] = STATE(4889), + [sym_char_literal] = STATE(4825), + [sym_concatenated_string] = STATE(4825), + [sym_string_literal] = STATE(3812), + [sym_null] = STATE(4856), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7816), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(4856), + [sym_raw_string_literal] = STATE(3812), + [sym_co_await_expression] = STATE(4856), + [sym_new_expression] = STATE(4856), + [sym_delete_expression] = STATE(4856), + [sym_requires_clause] = STATE(4856), + [sym_requires_expression] = STATE(4856), + [sym_lambda_expression] = STATE(4856), + [sym_lambda_capture_specifier] = STATE(5489), + [sym_fold_expression] = STATE(4856), + [sym_parameter_pack_expansion] = STATE(4856), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5769), + [sym_qualified_identifier] = STATE(3701), + [sym_qualified_type_identifier] = STATE(7816), + [sym_user_defined_literal] = STATE(3701), + [sym_identifier] = ACTIONS(3875), [anon_sym_DOT_DOT_DOT] = ACTIONS(1944), [anon_sym_COMMA] = ACTIONS(1944), [anon_sym_LPAREN2] = ACTIONS(1944), - [anon_sym_BANG] = ACTIONS(3851), - [anon_sym_TILDE] = ACTIONS(3853), + [anon_sym_BANG] = ACTIONS(3134), + [anon_sym_TILDE] = ACTIONS(3132), [anon_sym_DASH] = ACTIONS(1942), [anon_sym_PLUS] = ACTIONS(1942), [anon_sym_STAR] = ACTIONS(1944), @@ -158712,20 +161345,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_EQ] = ACTIONS(1944), [anon_sym_BANG_EQ] = ACTIONS(1944), [anon_sym_GT] = ACTIONS(1942), - [anon_sym_GT_EQ] = ACTIONS(1944), + [anon_sym_GT_EQ] = ACTIONS(1942), [anon_sym_LT_EQ] = ACTIONS(1942), [anon_sym_LT] = ACTIONS(1942), [anon_sym_LT_LT] = ACTIONS(1944), - [anon_sym_GT_GT] = ACTIONS(1944), - [anon_sym___extension__] = ACTIONS(3855), - [anon_sym_COLON_COLON] = ACTIONS(3857), - [anon_sym_LBRACE] = ACTIONS(3615), + [anon_sym_GT_GT] = ACTIONS(1942), + [anon_sym___extension__] = ACTIONS(3877), + [anon_sym_COLON_COLON] = ACTIONS(3140), + [anon_sym_LBRACE] = ACTIONS(3879), [anon_sym_LBRACK] = ACTIONS(1944), - [anon_sym_RBRACK] = ACTIONS(1944), - [sym_primitive_type] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(3881), [anon_sym_QMARK] = ACTIONS(1944), - [anon_sym_not] = ACTIONS(3851), - [anon_sym_compl] = ACTIONS(3851), + [anon_sym_not] = ACTIONS(3134), + [anon_sym_compl] = ACTIONS(3134), [anon_sym_LT_EQ_GT] = ACTIONS(1944), [anon_sym_or] = ACTIONS(1942), [anon_sym_and] = ACTIONS(1942), @@ -158735,100 +161367,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_not_eq] = ACTIONS(1942), [anon_sym_DASH_DASH] = ACTIONS(1944), [anon_sym_PLUS_PLUS] = ACTIONS(1944), - [anon_sym_sizeof] = ACTIONS(3859), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), + [anon_sym_sizeof] = ACTIONS(3156), + [anon_sym___alignof__] = ACTIONS(3158), + [anon_sym___alignof] = ACTIONS(3158), + [anon_sym__alignof] = ACTIONS(3158), + [anon_sym_alignof] = ACTIONS(3158), + [anon_sym__Alignof] = ACTIONS(3158), + [anon_sym_offsetof] = ACTIONS(3160), + [anon_sym__Generic] = ACTIONS(3162), + [anon_sym_asm] = ACTIONS(3164), + [anon_sym___asm__] = ACTIONS(3164), + [anon_sym___asm] = ACTIONS(3164), [anon_sym_DOT] = ACTIONS(1942), [anon_sym_DOT_STAR] = ACTIONS(1944), [anon_sym_DASH_GT] = ACTIONS(1944), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), + [sym_number_literal] = ACTIONS(3166), + [anon_sym_L_SQUOTE] = ACTIONS(3168), + [anon_sym_u_SQUOTE] = ACTIONS(3168), + [anon_sym_U_SQUOTE] = ACTIONS(3168), + [anon_sym_u8_SQUOTE] = ACTIONS(3168), + [anon_sym_SQUOTE] = ACTIONS(3168), + [anon_sym_L_DQUOTE] = ACTIONS(3170), + [anon_sym_u_DQUOTE] = ACTIONS(3170), + [anon_sym_U_DQUOTE] = ACTIONS(3170), + [anon_sym_u8_DQUOTE] = ACTIONS(3170), + [anon_sym_DQUOTE] = ACTIONS(3170), + [sym_true] = ACTIONS(3172), + [sym_false] = ACTIONS(3172), + [anon_sym_NULL] = ACTIONS(3174), + [anon_sym_nullptr] = ACTIONS(3174), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3861), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3863), - [anon_sym_new] = ACTIONS(3865), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_GT2] = ACTIONS(1944), + [anon_sym_delete] = ACTIONS(3184), + [anon_sym_R_DQUOTE] = ACTIONS(3186), + [anon_sym_LR_DQUOTE] = ACTIONS(3186), + [anon_sym_uR_DQUOTE] = ACTIONS(3186), + [anon_sym_UR_DQUOTE] = ACTIONS(3186), + [anon_sym_u8R_DQUOTE] = ACTIONS(3186), + [anon_sym_co_await] = ACTIONS(3188), + [anon_sym_new] = ACTIONS(3190), + [anon_sym_requires] = ACTIONS(3192), + [sym_this] = ACTIONS(3172), }, - [822] = { - [sym_expression] = STATE(4498), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3568), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3568), - [sym_call_expression] = STATE(3568), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3568), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3568), - [sym_initializer_list] = STATE(3805), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3568), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3568), - [sym_identifier] = ACTIONS(3867), + [839] = { + [sym_expression] = STATE(3759), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3728), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3728), + [sym_call_expression] = STATE(3728), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3728), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3728), + [sym_initializer_list] = STATE(3899), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3728), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3728), + [sym_identifier] = ACTIONS(3883), [anon_sym_DOT_DOT_DOT] = ACTIONS(1944), [anon_sym_COMMA] = ACTIONS(1944), [anon_sym_LPAREN2] = ACTIONS(1944), - [anon_sym_BANG] = ACTIONS(3869), - [anon_sym_TILDE] = ACTIONS(3871), + [anon_sym_BANG] = ACTIONS(3885), + [anon_sym_TILDE] = ACTIONS(3887), [anon_sym_DASH] = ACTIONS(1942), [anon_sym_PLUS] = ACTIONS(1942), [anon_sym_STAR] = ACTIONS(1944), @@ -158847,15 +161480,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(1942), [anon_sym_LT_LT] = ACTIONS(1944), [anon_sym_GT_GT] = ACTIONS(1944), - [anon_sym___extension__] = ACTIONS(3873), - [anon_sym_COLON] = ACTIONS(1942), - [anon_sym_COLON_COLON] = ACTIONS(3875), - [anon_sym_LBRACE] = ACTIONS(3615), + [anon_sym___extension__] = ACTIONS(3889), + [anon_sym_COLON_COLON] = ACTIONS(3891), + [anon_sym_LBRACE] = ACTIONS(3623), [anon_sym_LBRACK] = ACTIONS(1944), - [sym_primitive_type] = ACTIONS(2028), + [anon_sym_RBRACK] = ACTIONS(1944), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_QMARK] = ACTIONS(1944), - [anon_sym_not] = ACTIONS(3869), - [anon_sym_compl] = ACTIONS(3869), + [anon_sym_not] = ACTIONS(3885), + [anon_sym_compl] = ACTIONS(3885), [anon_sym_LT_EQ_GT] = ACTIONS(1944), [anon_sym_or] = ACTIONS(1942), [anon_sym_and] = ACTIONS(1942), @@ -158865,7 +161498,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_not_eq] = ACTIONS(1942), [anon_sym_DASH_DASH] = ACTIONS(1944), [anon_sym_PLUS_PLUS] = ACTIONS(1944), - [anon_sym_sizeof] = ACTIONS(3877), + [anon_sym_sizeof] = ACTIONS(3893), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -158896,233 +161529,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3879), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3895), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3881), - [anon_sym_new] = ACTIONS(3865), + [anon_sym_co_await] = ACTIONS(3897), + [anon_sym_new] = ACTIONS(3873), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [823] = { - [sym_expression] = STATE(4507), - [sym__string] = STATE(4738), - [sym_conditional_expression] = STATE(4829), - [sym_assignment_expression] = STATE(4829), - [sym_pointer_expression] = STATE(3602), - [sym_unary_expression] = STATE(4829), - [sym_binary_expression] = STATE(4829), - [sym_update_expression] = STATE(4829), - [sym_cast_expression] = STATE(4829), - [sym_sizeof_expression] = STATE(4829), - [sym_alignof_expression] = STATE(4829), - [sym_offsetof_expression] = STATE(4829), - [sym_generic_expression] = STATE(4829), - [sym_subscript_expression] = STATE(3602), - [sym_call_expression] = STATE(3602), - [sym_gnu_asm_expression] = STATE(4829), - [sym_extension_expression] = STATE(4829), - [sym_field_expression] = STATE(3602), - [sym_compound_literal_expression] = STATE(4829), - [sym_parenthesized_expression] = STATE(3602), - [sym_initializer_list] = STATE(4828), - [sym_char_literal] = STATE(4738), - [sym_concatenated_string] = STATE(4738), - [sym_string_literal] = STATE(3759), - [sym_null] = STATE(4829), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7804), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(4829), - [sym_raw_string_literal] = STATE(3759), - [sym_co_await_expression] = STATE(4829), - [sym_new_expression] = STATE(4829), - [sym_delete_expression] = STATE(4829), - [sym_requires_clause] = STATE(4829), - [sym_requires_expression] = STATE(4829), - [sym_lambda_expression] = STATE(4829), - [sym_lambda_capture_specifier] = STATE(5401), - [sym_fold_expression] = STATE(4829), - [sym_parameter_pack_expansion] = STATE(4829), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5773), - [sym_qualified_identifier] = STATE(3602), - [sym_qualified_type_identifier] = STATE(7804), - [sym_user_defined_literal] = STATE(3602), + [840] = { + [sym_expression] = STATE(4641), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3728), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3728), + [sym_call_expression] = STATE(3728), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3728), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3728), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3728), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3728), [sym_identifier] = ACTIONS(3883), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1944), - [anon_sym_COMMA] = ACTIONS(1944), - [anon_sym_LPAREN2] = ACTIONS(1944), - [anon_sym_BANG] = ACTIONS(3122), - [anon_sym_TILDE] = ACTIONS(3120), - [anon_sym_DASH] = ACTIONS(1942), - [anon_sym_PLUS] = ACTIONS(1942), - [anon_sym_STAR] = ACTIONS(1944), - [anon_sym_SLASH] = ACTIONS(1942), - [anon_sym_PERCENT] = ACTIONS(1944), - [anon_sym_PIPE_PIPE] = ACTIONS(1944), - [anon_sym_AMP_AMP] = ACTIONS(1944), - [anon_sym_PIPE] = ACTIONS(1942), - [anon_sym_CARET] = ACTIONS(1944), - [anon_sym_AMP] = ACTIONS(1942), - [anon_sym_EQ_EQ] = ACTIONS(1944), - [anon_sym_BANG_EQ] = ACTIONS(1944), - [anon_sym_GT] = ACTIONS(1942), - [anon_sym_GT_EQ] = ACTIONS(1942), - [anon_sym_LT_EQ] = ACTIONS(1942), - [anon_sym_LT] = ACTIONS(1942), - [anon_sym_LT_LT] = ACTIONS(1944), - [anon_sym_GT_GT] = ACTIONS(1942), - [anon_sym___extension__] = ACTIONS(3885), - [anon_sym_COLON_COLON] = ACTIONS(3128), - [anon_sym_LBRACE] = ACTIONS(3887), - [anon_sym_LBRACK] = ACTIONS(1944), - [sym_primitive_type] = ACTIONS(3889), - [anon_sym_QMARK] = ACTIONS(1944), - [anon_sym_not] = ACTIONS(3122), - [anon_sym_compl] = ACTIONS(3122), - [anon_sym_LT_EQ_GT] = ACTIONS(1944), - [anon_sym_or] = ACTIONS(1942), - [anon_sym_and] = ACTIONS(1942), - [anon_sym_bitor] = ACTIONS(1942), - [anon_sym_xor] = ACTIONS(1942), - [anon_sym_bitand] = ACTIONS(1942), - [anon_sym_not_eq] = ACTIONS(1942), - [anon_sym_DASH_DASH] = ACTIONS(1944), - [anon_sym_PLUS_PLUS] = ACTIONS(1944), - [anon_sym_sizeof] = ACTIONS(3144), - [anon_sym___alignof__] = ACTIONS(3146), - [anon_sym___alignof] = ACTIONS(3146), - [anon_sym__alignof] = ACTIONS(3146), - [anon_sym_alignof] = ACTIONS(3146), - [anon_sym__Alignof] = ACTIONS(3146), - [anon_sym_offsetof] = ACTIONS(3148), - [anon_sym__Generic] = ACTIONS(3150), - [anon_sym_asm] = ACTIONS(3152), - [anon_sym___asm__] = ACTIONS(3152), - [anon_sym___asm] = ACTIONS(3152), - [anon_sym_DOT] = ACTIONS(1942), - [anon_sym_DOT_STAR] = ACTIONS(1944), - [anon_sym_DASH_GT] = ACTIONS(1944), - [sym_number_literal] = ACTIONS(3154), - [anon_sym_L_SQUOTE] = ACTIONS(3156), - [anon_sym_u_SQUOTE] = ACTIONS(3156), - [anon_sym_U_SQUOTE] = ACTIONS(3156), - [anon_sym_u8_SQUOTE] = ACTIONS(3156), - [anon_sym_SQUOTE] = ACTIONS(3156), - [anon_sym_L_DQUOTE] = ACTIONS(3158), - [anon_sym_u_DQUOTE] = ACTIONS(3158), - [anon_sym_U_DQUOTE] = ACTIONS(3158), - [anon_sym_u8_DQUOTE] = ACTIONS(3158), - [anon_sym_DQUOTE] = ACTIONS(3158), - [sym_true] = ACTIONS(3160), - [sym_false] = ACTIONS(3160), - [anon_sym_NULL] = ACTIONS(3162), - [anon_sym_nullptr] = ACTIONS(3162), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_GT2] = ACTIONS(1944), - [anon_sym_delete] = ACTIONS(3172), - [anon_sym_R_DQUOTE] = ACTIONS(3174), - [anon_sym_LR_DQUOTE] = ACTIONS(3174), - [anon_sym_uR_DQUOTE] = ACTIONS(3174), - [anon_sym_UR_DQUOTE] = ACTIONS(3174), - [anon_sym_u8R_DQUOTE] = ACTIONS(3174), - [anon_sym_co_await] = ACTIONS(3176), - [anon_sym_new] = ACTIONS(3178), - [anon_sym_requires] = ACTIONS(3180), - [sym_this] = ACTIONS(3160), - }, - [824] = { - [sym_expression] = STATE(4728), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3678), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3678), - [sym_call_expression] = STATE(3678), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3678), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3678), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3678), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3678), - [sym_identifier] = ACTIONS(3849), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3891), - [anon_sym_LPAREN2] = ACTIONS(3893), - [anon_sym_BANG] = ACTIONS(3851), - [anon_sym_TILDE] = ACTIONS(3853), - [anon_sym_DASH] = ACTIONS(3851), - [anon_sym_PLUS] = ACTIONS(3851), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_SLASH] = ACTIONS(3895), - [anon_sym_PERCENT] = ACTIONS(3891), - [anon_sym_PIPE_PIPE] = ACTIONS(3891), - [anon_sym_AMP_AMP] = ACTIONS(3891), - [anon_sym_PIPE] = ACTIONS(3895), - [anon_sym_CARET] = ACTIONS(3891), - [anon_sym_AMP] = ACTIONS(1442), - [anon_sym_EQ_EQ] = ACTIONS(3891), - [anon_sym_BANG_EQ] = ACTIONS(3891), - [anon_sym_GT] = ACTIONS(3895), - [anon_sym_GT_EQ] = ACTIONS(3891), - [anon_sym_LT_EQ] = ACTIONS(3895), - [anon_sym_LT] = ACTIONS(3895), - [anon_sym_LT_LT] = ACTIONS(3891), - [anon_sym_GT_GT] = ACTIONS(3891), - [anon_sym___extension__] = ACTIONS(3855), - [anon_sym_COLON_COLON] = ACTIONS(3857), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3899), + [anon_sym_LPAREN2] = ACTIONS(3901), + [anon_sym_BANG] = ACTIONS(3885), + [anon_sym_TILDE] = ACTIONS(3887), + [anon_sym_DASH] = ACTIONS(3885), + [anon_sym_PLUS] = ACTIONS(3885), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_SLASH] = ACTIONS(3903), + [anon_sym_PERCENT] = ACTIONS(3899), + [anon_sym_PIPE_PIPE] = ACTIONS(3899), + [anon_sym_AMP_AMP] = ACTIONS(3899), + [anon_sym_PIPE] = ACTIONS(3903), + [anon_sym_CARET] = ACTIONS(3899), + [anon_sym_AMP] = ACTIONS(1258), + [anon_sym_EQ_EQ] = ACTIONS(3899), + [anon_sym_BANG_EQ] = ACTIONS(3899), + [anon_sym_GT] = ACTIONS(3903), + [anon_sym_GT_EQ] = ACTIONS(3899), + [anon_sym_LT_EQ] = ACTIONS(3903), + [anon_sym_LT] = ACTIONS(3903), + [anon_sym_LT_LT] = ACTIONS(3899), + [anon_sym_GT_GT] = ACTIONS(3899), + [anon_sym___extension__] = ACTIONS(3889), + [anon_sym_COLON_COLON] = ACTIONS(3891), [anon_sym_LBRACK] = ACTIONS(2020), - [anon_sym_RBRACK] = ACTIONS(3891), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_QMARK] = ACTIONS(3891), - [anon_sym_not] = ACTIONS(3851), - [anon_sym_compl] = ACTIONS(3851), - [anon_sym_LT_EQ_GT] = ACTIONS(3891), - [anon_sym_or] = ACTIONS(3895), - [anon_sym_and] = ACTIONS(3895), - [anon_sym_bitor] = ACTIONS(3895), - [anon_sym_xor] = ACTIONS(3895), - [anon_sym_bitand] = ACTIONS(3895), - [anon_sym_not_eq] = ACTIONS(3895), - [anon_sym_DASH_DASH] = ACTIONS(3897), - [anon_sym_PLUS_PLUS] = ACTIONS(3897), - [anon_sym_sizeof] = ACTIONS(3859), + [anon_sym_RBRACK] = ACTIONS(3899), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_QMARK] = ACTIONS(3899), + [anon_sym_not] = ACTIONS(3885), + [anon_sym_compl] = ACTIONS(3885), + [anon_sym_LT_EQ_GT] = ACTIONS(3899), + [anon_sym_or] = ACTIONS(3903), + [anon_sym_and] = ACTIONS(3903), + [anon_sym_bitor] = ACTIONS(3903), + [anon_sym_xor] = ACTIONS(3903), + [anon_sym_bitand] = ACTIONS(3903), + [anon_sym_not_eq] = ACTIONS(3903), + [anon_sym_DASH_DASH] = ACTIONS(3905), + [anon_sym_PLUS_PLUS] = ACTIONS(3905), + [anon_sym_sizeof] = ACTIONS(3893), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -159133,9 +161636,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(113), [anon_sym___asm__] = ACTIONS(113), [anon_sym___asm] = ACTIONS(113), - [anon_sym_DOT] = ACTIONS(3895), - [anon_sym_DOT_STAR] = ACTIONS(3891), - [anon_sym_DASH_GT] = ACTIONS(3891), + [anon_sym_DOT] = ACTIONS(3903), + [anon_sym_DOT_STAR] = ACTIONS(3899), + [anon_sym_DASH_GT] = ACTIONS(3899), [sym_number_literal] = ACTIONS(227), [anon_sym_L_SQUOTE] = ACTIONS(117), [anon_sym_u_SQUOTE] = ACTIONS(117), @@ -159153,79 +161656,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3861), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3895), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3863), - [anon_sym_new] = ACTIONS(3865), + [anon_sym_co_await] = ACTIONS(3897), + [anon_sym_new] = ACTIONS(3873), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [825] = { - [sym__declaration_modifiers] = STATE(2092), - [sym__declaration_specifiers] = STATE(6303), - [sym_attribute_specifier] = STATE(2092), - [sym_attribute_declaration] = STATE(2092), - [sym_ms_declspec_modifier] = STATE(2092), - [sym_storage_class_specifier] = STATE(2092), - [sym_type_qualifier] = STATE(2092), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(4018), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym_dependent_type] = STATE(2523), - [sym_template_type] = STATE(2406), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(6599), - [sym_qualified_type_identifier] = STATE(2809), - [aux_sym__declaration_specifiers_repeat1] = STATE(2092), - [aux_sym_sized_type_specifier_repeat1] = STATE(2674), - [sym_identifier] = ACTIONS(3899), - [anon_sym_COMMA] = ACTIONS(3901), - [anon_sym_BANG] = ACTIONS(3903), - [anon_sym_TILDE] = ACTIONS(3901), - [anon_sym_DASH] = ACTIONS(3903), - [anon_sym_PLUS] = ACTIONS(3903), - [anon_sym_STAR] = ACTIONS(3903), - [anon_sym_SLASH] = ACTIONS(3903), - [anon_sym_PERCENT] = ACTIONS(3903), - [anon_sym_PIPE_PIPE] = ACTIONS(3901), - [anon_sym_AMP_AMP] = ACTIONS(3901), - [anon_sym_PIPE] = ACTIONS(3903), - [anon_sym_CARET] = ACTIONS(3903), - [anon_sym_AMP] = ACTIONS(3903), - [anon_sym_EQ_EQ] = ACTIONS(3901), - [anon_sym_BANG_EQ] = ACTIONS(3901), - [anon_sym_GT] = ACTIONS(3903), - [anon_sym_GT_EQ] = ACTIONS(3901), - [anon_sym_LT_EQ] = ACTIONS(3903), - [anon_sym_LT] = ACTIONS(3903), - [anon_sym_LT_LT] = ACTIONS(3903), - [anon_sym_GT_GT] = ACTIONS(3903), + [841] = { + [sym__declaration_modifiers] = STATE(2167), + [sym__declaration_specifiers] = STATE(6405), + [sym_attribute_specifier] = STATE(2167), + [sym_attribute_declaration] = STATE(2167), + [sym_ms_declspec_modifier] = STATE(2167), + [sym_storage_class_specifier] = STATE(2167), + [sym_type_qualifier] = STATE(2167), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(4094), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym_dependent_type] = STATE(2558), + [sym_template_type] = STATE(2439), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(6697), + [sym_qualified_type_identifier] = STATE(2836), + [aux_sym__declaration_specifiers_repeat1] = STATE(2167), + [aux_sym_sized_type_specifier_repeat1] = STATE(2695), + [sym_identifier] = ACTIONS(3907), + [anon_sym_COMMA] = ACTIONS(3909), + [anon_sym_BANG] = ACTIONS(3911), + [anon_sym_TILDE] = ACTIONS(3909), + [anon_sym_DASH] = ACTIONS(3911), + [anon_sym_PLUS] = ACTIONS(3911), + [anon_sym_STAR] = ACTIONS(3911), + [anon_sym_SLASH] = ACTIONS(3911), + [anon_sym_PERCENT] = ACTIONS(3911), + [anon_sym_PIPE_PIPE] = ACTIONS(3909), + [anon_sym_AMP_AMP] = ACTIONS(3909), + [anon_sym_PIPE] = ACTIONS(3911), + [anon_sym_CARET] = ACTIONS(3911), + [anon_sym_AMP] = ACTIONS(3911), + [anon_sym_EQ_EQ] = ACTIONS(3909), + [anon_sym_BANG_EQ] = ACTIONS(3909), + [anon_sym_GT] = ACTIONS(3911), + [anon_sym_GT_EQ] = ACTIONS(3909), + [anon_sym_LT_EQ] = ACTIONS(3911), + [anon_sym_LT] = ACTIONS(3911), + [anon_sym_LT_LT] = ACTIONS(3911), + [anon_sym_GT_GT] = ACTIONS(3911), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(3905), + [anon_sym_virtual] = ACTIONS(3913), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3907), + [anon_sym_COLON_COLON] = ACTIONS(3915), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), - [anon_sym_signed] = ACTIONS(3909), - [anon_sym_unsigned] = ACTIONS(3909), - [anon_sym_long] = ACTIONS(3909), - [anon_sym_short] = ACTIONS(3909), + [anon_sym_signed] = ACTIONS(3917), + [anon_sym_unsigned] = ACTIONS(3917), + [anon_sym_long] = ACTIONS(3917), + [anon_sym_short] = ACTIONS(3917), [anon_sym_static] = ACTIONS(63), - [anon_sym_EQ] = ACTIONS(3903), + [anon_sym_EQ] = ACTIONS(3911), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), [anon_sym___inline] = ACTIONS(63), @@ -159247,110 +161750,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(3911), - [anon_sym_enum] = ACTIONS(3913), - [anon_sym_class] = ACTIONS(3915), - [anon_sym_struct] = ACTIONS(3917), - [anon_sym_union] = ACTIONS(3919), - [anon_sym_STAR_EQ] = ACTIONS(3901), - [anon_sym_SLASH_EQ] = ACTIONS(3901), - [anon_sym_PERCENT_EQ] = ACTIONS(3901), - [anon_sym_PLUS_EQ] = ACTIONS(3901), - [anon_sym_DASH_EQ] = ACTIONS(3901), - [anon_sym_LT_LT_EQ] = ACTIONS(3901), - [anon_sym_GT_GT_EQ] = ACTIONS(3901), - [anon_sym_AMP_EQ] = ACTIONS(3901), - [anon_sym_CARET_EQ] = ACTIONS(3901), - [anon_sym_PIPE_EQ] = ACTIONS(3901), - [anon_sym_and_eq] = ACTIONS(3903), - [anon_sym_or_eq] = ACTIONS(3903), - [anon_sym_xor_eq] = ACTIONS(3903), - [anon_sym_not] = ACTIONS(3903), - [anon_sym_compl] = ACTIONS(3903), - [anon_sym_LT_EQ_GT] = ACTIONS(3901), - [anon_sym_or] = ACTIONS(3903), - [anon_sym_and] = ACTIONS(3903), - [anon_sym_bitor] = ACTIONS(3903), - [anon_sym_xor] = ACTIONS(3903), - [anon_sym_bitand] = ACTIONS(3903), - [anon_sym_not_eq] = ACTIONS(3903), - [anon_sym_DASH_DASH] = ACTIONS(3901), - [anon_sym_PLUS_PLUS] = ACTIONS(3901), - [anon_sym_DASH_GT] = ACTIONS(3903), + [sym_primitive_type] = ACTIONS(3919), + [anon_sym_enum] = ACTIONS(3921), + [anon_sym_class] = ACTIONS(3923), + [anon_sym_struct] = ACTIONS(3925), + [anon_sym_union] = ACTIONS(3927), + [anon_sym_STAR_EQ] = ACTIONS(3909), + [anon_sym_SLASH_EQ] = ACTIONS(3909), + [anon_sym_PERCENT_EQ] = ACTIONS(3909), + [anon_sym_PLUS_EQ] = ACTIONS(3909), + [anon_sym_DASH_EQ] = ACTIONS(3909), + [anon_sym_LT_LT_EQ] = ACTIONS(3909), + [anon_sym_GT_GT_EQ] = ACTIONS(3909), + [anon_sym_AMP_EQ] = ACTIONS(3909), + [anon_sym_CARET_EQ] = ACTIONS(3909), + [anon_sym_PIPE_EQ] = ACTIONS(3909), + [anon_sym_and_eq] = ACTIONS(3911), + [anon_sym_or_eq] = ACTIONS(3911), + [anon_sym_xor_eq] = ACTIONS(3911), + [anon_sym_not] = ACTIONS(3911), + [anon_sym_compl] = ACTIONS(3911), + [anon_sym_LT_EQ_GT] = ACTIONS(3909), + [anon_sym_or] = ACTIONS(3911), + [anon_sym_and] = ACTIONS(3911), + [anon_sym_bitor] = ACTIONS(3911), + [anon_sym_xor] = ACTIONS(3911), + [anon_sym_bitand] = ACTIONS(3911), + [anon_sym_not_eq] = ACTIONS(3911), + [anon_sym_DASH_DASH] = ACTIONS(3909), + [anon_sym_PLUS_PLUS] = ACTIONS(3909), + [anon_sym_DASH_GT] = ACTIONS(3911), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(3921), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3923), - [anon_sym_co_await] = ACTIONS(3903), - [anon_sym_new] = ACTIONS(3923), - [anon_sym_DASH_GT_STAR] = ACTIONS(3901), - [anon_sym_LPAREN_RPAREN] = ACTIONS(3901), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3901), - [anon_sym_DQUOTE_DQUOTE] = ACTIONS(3925), + [anon_sym_typename] = ACTIONS(3929), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3931), + [anon_sym_co_await] = ACTIONS(3911), + [anon_sym_new] = ACTIONS(3931), + [anon_sym_DASH_GT_STAR] = ACTIONS(3909), + [anon_sym_LPAREN_RPAREN] = ACTIONS(3909), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3909), + [anon_sym_DQUOTE_DQUOTE] = ACTIONS(3933), }, - [826] = { - [sym__declaration_modifiers] = STATE(2092), - [sym__declaration_specifiers] = STATE(6303), - [sym_attribute_specifier] = STATE(2092), - [sym_attribute_declaration] = STATE(2092), - [sym_ms_declspec_modifier] = STATE(2092), - [sym_storage_class_specifier] = STATE(2092), - [sym_type_qualifier] = STATE(2092), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(4018), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym_dependent_type] = STATE(2523), - [sym_template_type] = STATE(2406), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(6599), - [sym_qualified_type_identifier] = STATE(2809), - [aux_sym__declaration_specifiers_repeat1] = STATE(2092), - [aux_sym_sized_type_specifier_repeat1] = STATE(2674), - [sym_identifier] = ACTIONS(3899), - [anon_sym_COMMA] = ACTIONS(3927), - [anon_sym_BANG] = ACTIONS(3929), - [anon_sym_TILDE] = ACTIONS(3927), - [anon_sym_DASH] = ACTIONS(3929), - [anon_sym_PLUS] = ACTIONS(3929), - [anon_sym_STAR] = ACTIONS(3929), - [anon_sym_SLASH] = ACTIONS(3929), - [anon_sym_PERCENT] = ACTIONS(3929), - [anon_sym_PIPE_PIPE] = ACTIONS(3927), - [anon_sym_AMP_AMP] = ACTIONS(3927), - [anon_sym_PIPE] = ACTIONS(3929), - [anon_sym_CARET] = ACTIONS(3929), - [anon_sym_AMP] = ACTIONS(3929), - [anon_sym_EQ_EQ] = ACTIONS(3927), - [anon_sym_BANG_EQ] = ACTIONS(3927), - [anon_sym_GT] = ACTIONS(3929), - [anon_sym_GT_EQ] = ACTIONS(3927), - [anon_sym_LT_EQ] = ACTIONS(3929), - [anon_sym_LT] = ACTIONS(3929), - [anon_sym_LT_LT] = ACTIONS(3929), - [anon_sym_GT_GT] = ACTIONS(3929), + [842] = { + [sym__declaration_modifiers] = STATE(2167), + [sym__declaration_specifiers] = STATE(6405), + [sym_attribute_specifier] = STATE(2167), + [sym_attribute_declaration] = STATE(2167), + [sym_ms_declspec_modifier] = STATE(2167), + [sym_storage_class_specifier] = STATE(2167), + [sym_type_qualifier] = STATE(2167), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(4094), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym_dependent_type] = STATE(2558), + [sym_template_type] = STATE(2439), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(6697), + [sym_qualified_type_identifier] = STATE(2836), + [aux_sym__declaration_specifiers_repeat1] = STATE(2167), + [aux_sym_sized_type_specifier_repeat1] = STATE(2695), + [sym_identifier] = ACTIONS(3907), + [anon_sym_COMMA] = ACTIONS(3935), + [anon_sym_BANG] = ACTIONS(3937), + [anon_sym_TILDE] = ACTIONS(3935), + [anon_sym_DASH] = ACTIONS(3937), + [anon_sym_PLUS] = ACTIONS(3937), + [anon_sym_STAR] = ACTIONS(3937), + [anon_sym_SLASH] = ACTIONS(3937), + [anon_sym_PERCENT] = ACTIONS(3937), + [anon_sym_PIPE_PIPE] = ACTIONS(3935), + [anon_sym_AMP_AMP] = ACTIONS(3935), + [anon_sym_PIPE] = ACTIONS(3937), + [anon_sym_CARET] = ACTIONS(3937), + [anon_sym_AMP] = ACTIONS(3937), + [anon_sym_EQ_EQ] = ACTIONS(3935), + [anon_sym_BANG_EQ] = ACTIONS(3935), + [anon_sym_GT] = ACTIONS(3937), + [anon_sym_GT_EQ] = ACTIONS(3935), + [anon_sym_LT_EQ] = ACTIONS(3937), + [anon_sym_LT] = ACTIONS(3937), + [anon_sym_LT_LT] = ACTIONS(3937), + [anon_sym_GT_GT] = ACTIONS(3937), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(3905), + [anon_sym_virtual] = ACTIONS(3913), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3907), + [anon_sym_COLON_COLON] = ACTIONS(3915), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), - [anon_sym_signed] = ACTIONS(3909), - [anon_sym_unsigned] = ACTIONS(3909), - [anon_sym_long] = ACTIONS(3909), - [anon_sym_short] = ACTIONS(3909), + [anon_sym_signed] = ACTIONS(3917), + [anon_sym_unsigned] = ACTIONS(3917), + [anon_sym_long] = ACTIONS(3917), + [anon_sym_short] = ACTIONS(3917), [anon_sym_static] = ACTIONS(63), - [anon_sym_EQ] = ACTIONS(3929), + [anon_sym_EQ] = ACTIONS(3937), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), [anon_sym___inline] = ACTIONS(63), @@ -159372,623 +161875,251 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(3911), - [anon_sym_enum] = ACTIONS(3913), - [anon_sym_class] = ACTIONS(3915), - [anon_sym_struct] = ACTIONS(3917), - [anon_sym_union] = ACTIONS(3919), - [anon_sym_STAR_EQ] = ACTIONS(3927), - [anon_sym_SLASH_EQ] = ACTIONS(3927), - [anon_sym_PERCENT_EQ] = ACTIONS(3927), - [anon_sym_PLUS_EQ] = ACTIONS(3927), - [anon_sym_DASH_EQ] = ACTIONS(3927), - [anon_sym_LT_LT_EQ] = ACTIONS(3927), - [anon_sym_GT_GT_EQ] = ACTIONS(3927), - [anon_sym_AMP_EQ] = ACTIONS(3927), - [anon_sym_CARET_EQ] = ACTIONS(3927), - [anon_sym_PIPE_EQ] = ACTIONS(3927), - [anon_sym_and_eq] = ACTIONS(3929), - [anon_sym_or_eq] = ACTIONS(3929), - [anon_sym_xor_eq] = ACTIONS(3929), - [anon_sym_not] = ACTIONS(3929), - [anon_sym_compl] = ACTIONS(3929), - [anon_sym_LT_EQ_GT] = ACTIONS(3927), - [anon_sym_or] = ACTIONS(3929), - [anon_sym_and] = ACTIONS(3929), - [anon_sym_bitor] = ACTIONS(3929), - [anon_sym_xor] = ACTIONS(3929), - [anon_sym_bitand] = ACTIONS(3929), - [anon_sym_not_eq] = ACTIONS(3929), - [anon_sym_DASH_DASH] = ACTIONS(3927), - [anon_sym_PLUS_PLUS] = ACTIONS(3927), - [anon_sym_DASH_GT] = ACTIONS(3929), + [sym_primitive_type] = ACTIONS(3919), + [anon_sym_enum] = ACTIONS(3921), + [anon_sym_class] = ACTIONS(3923), + [anon_sym_struct] = ACTIONS(3925), + [anon_sym_union] = ACTIONS(3927), + [anon_sym_STAR_EQ] = ACTIONS(3935), + [anon_sym_SLASH_EQ] = ACTIONS(3935), + [anon_sym_PERCENT_EQ] = ACTIONS(3935), + [anon_sym_PLUS_EQ] = ACTIONS(3935), + [anon_sym_DASH_EQ] = ACTIONS(3935), + [anon_sym_LT_LT_EQ] = ACTIONS(3935), + [anon_sym_GT_GT_EQ] = ACTIONS(3935), + [anon_sym_AMP_EQ] = ACTIONS(3935), + [anon_sym_CARET_EQ] = ACTIONS(3935), + [anon_sym_PIPE_EQ] = ACTIONS(3935), + [anon_sym_and_eq] = ACTIONS(3937), + [anon_sym_or_eq] = ACTIONS(3937), + [anon_sym_xor_eq] = ACTIONS(3937), + [anon_sym_not] = ACTIONS(3937), + [anon_sym_compl] = ACTIONS(3937), + [anon_sym_LT_EQ_GT] = ACTIONS(3935), + [anon_sym_or] = ACTIONS(3937), + [anon_sym_and] = ACTIONS(3937), + [anon_sym_bitor] = ACTIONS(3937), + [anon_sym_xor] = ACTIONS(3937), + [anon_sym_bitand] = ACTIONS(3937), + [anon_sym_not_eq] = ACTIONS(3937), + [anon_sym_DASH_DASH] = ACTIONS(3935), + [anon_sym_PLUS_PLUS] = ACTIONS(3935), + [anon_sym_DASH_GT] = ACTIONS(3937), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(3921), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3931), - [anon_sym_co_await] = ACTIONS(3929), - [anon_sym_new] = ACTIONS(3931), - [anon_sym_DASH_GT_STAR] = ACTIONS(3927), - [anon_sym_LPAREN_RPAREN] = ACTIONS(3927), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3927), - [anon_sym_DQUOTE_DQUOTE] = ACTIONS(3933), - }, - [827] = { - [sym_expression] = STATE(4551), - [sym__string] = STATE(4738), - [sym_conditional_expression] = STATE(4829), - [sym_assignment_expression] = STATE(4829), - [sym_pointer_expression] = STATE(3602), - [sym_unary_expression] = STATE(4829), - [sym_binary_expression] = STATE(4829), - [sym_update_expression] = STATE(4829), - [sym_cast_expression] = STATE(4829), - [sym_sizeof_expression] = STATE(4829), - [sym_alignof_expression] = STATE(4829), - [sym_offsetof_expression] = STATE(4829), - [sym_generic_expression] = STATE(4829), - [sym_subscript_expression] = STATE(3602), - [sym_call_expression] = STATE(3602), - [sym_gnu_asm_expression] = STATE(4829), - [sym_extension_expression] = STATE(4829), - [sym_field_expression] = STATE(3602), - [sym_compound_literal_expression] = STATE(4829), - [sym_parenthesized_expression] = STATE(3602), - [sym_char_literal] = STATE(4738), - [sym_concatenated_string] = STATE(4738), - [sym_string_literal] = STATE(3759), - [sym_null] = STATE(4829), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7804), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(4829), - [sym_raw_string_literal] = STATE(3759), - [sym_co_await_expression] = STATE(4829), - [sym_new_expression] = STATE(4829), - [sym_delete_expression] = STATE(4829), - [sym_requires_clause] = STATE(4829), - [sym_requires_expression] = STATE(4829), - [sym_lambda_expression] = STATE(4829), - [sym_lambda_capture_specifier] = STATE(5401), - [sym_fold_expression] = STATE(4829), - [sym_parameter_pack_expansion] = STATE(4829), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5773), - [sym_qualified_identifier] = STATE(3602), - [sym_qualified_type_identifier] = STATE(7804), - [sym_user_defined_literal] = STATE(3602), - [sym_identifier] = ACTIONS(3935), - [anon_sym_LPAREN2] = ACTIONS(3118), - [anon_sym_BANG] = ACTIONS(3120), - [anon_sym_TILDE] = ACTIONS(3120), - [anon_sym_DASH] = ACTIONS(3122), - [anon_sym_PLUS] = ACTIONS(3122), - [anon_sym_STAR] = ACTIONS(3124), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym___extension__] = ACTIONS(3938), - [anon_sym_COLON_COLON] = ACTIONS(3941), - [anon_sym_signed] = ACTIONS(2573), - [anon_sym_unsigned] = ACTIONS(2573), - [anon_sym_long] = ACTIONS(2573), - [anon_sym_short] = ACTIONS(2573), - [anon_sym_LBRACK] = ACTIONS(2020), - [anon_sym_const] = ACTIONS(2573), - [anon_sym_constexpr] = ACTIONS(2573), - [anon_sym_volatile] = ACTIONS(2573), - [anon_sym_restrict] = ACTIONS(2573), - [anon_sym___restrict__] = ACTIONS(2573), - [anon_sym__Atomic] = ACTIONS(2573), - [anon_sym__Noreturn] = ACTIONS(2573), - [anon_sym_noreturn] = ACTIONS(2573), - [anon_sym__Nonnull] = ACTIONS(2573), - [anon_sym_mutable] = ACTIONS(2573), - [anon_sym_constinit] = ACTIONS(2573), - [anon_sym_consteval] = ACTIONS(2573), - [anon_sym_alignas] = ACTIONS(2573), - [anon_sym__Alignas] = ACTIONS(2573), - [sym_primitive_type] = ACTIONS(3944), - [anon_sym_enum] = ACTIONS(2573), - [anon_sym_class] = ACTIONS(2573), - [anon_sym_struct] = ACTIONS(2573), - [anon_sym_union] = ACTIONS(2573), - [anon_sym_not] = ACTIONS(3122), - [anon_sym_compl] = ACTIONS(3122), - [anon_sym_DASH_DASH] = ACTIONS(3142), - [anon_sym_PLUS_PLUS] = ACTIONS(3142), - [anon_sym_sizeof] = ACTIONS(3144), - [anon_sym___alignof__] = ACTIONS(3146), - [anon_sym___alignof] = ACTIONS(3146), - [anon_sym__alignof] = ACTIONS(3146), - [anon_sym_alignof] = ACTIONS(3146), - [anon_sym__Alignof] = ACTIONS(3146), - [anon_sym_offsetof] = ACTIONS(3148), - [anon_sym__Generic] = ACTIONS(3150), - [anon_sym_asm] = ACTIONS(3152), - [anon_sym___asm__] = ACTIONS(3152), - [anon_sym___asm] = ACTIONS(3152), - [sym_number_literal] = ACTIONS(3154), - [anon_sym_L_SQUOTE] = ACTIONS(3156), - [anon_sym_u_SQUOTE] = ACTIONS(3156), - [anon_sym_U_SQUOTE] = ACTIONS(3156), - [anon_sym_u8_SQUOTE] = ACTIONS(3156), - [anon_sym_SQUOTE] = ACTIONS(3156), - [anon_sym_L_DQUOTE] = ACTIONS(3158), - [anon_sym_u_DQUOTE] = ACTIONS(3158), - [anon_sym_U_DQUOTE] = ACTIONS(3158), - [anon_sym_u8_DQUOTE] = ACTIONS(3158), - [anon_sym_DQUOTE] = ACTIONS(3158), - [sym_true] = ACTIONS(3160), - [sym_false] = ACTIONS(3160), - [anon_sym_NULL] = ACTIONS(3162), - [anon_sym_nullptr] = ACTIONS(3162), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2573), - [anon_sym_decltype] = ACTIONS(2584), - [anon_sym_typename] = ACTIONS(2573), - [anon_sym_template] = ACTIONS(2587), - [anon_sym_delete] = ACTIONS(3172), - [anon_sym_R_DQUOTE] = ACTIONS(3174), - [anon_sym_LR_DQUOTE] = ACTIONS(3174), - [anon_sym_uR_DQUOTE] = ACTIONS(3174), - [anon_sym_UR_DQUOTE] = ACTIONS(3174), - [anon_sym_u8R_DQUOTE] = ACTIONS(3174), - [anon_sym_co_await] = ACTIONS(3176), - [anon_sym_new] = ACTIONS(3178), - [anon_sym_requires] = ACTIONS(3180), - [sym_this] = ACTIONS(3160), - }, - [828] = { - [sym_identifier] = ACTIONS(3947), - [anon_sym_COMMA] = ACTIONS(3949), - [anon_sym_RPAREN] = ACTIONS(3949), - [anon_sym_LPAREN2] = ACTIONS(3949), - [anon_sym_BANG] = ACTIONS(3949), - [anon_sym_TILDE] = ACTIONS(3949), - [anon_sym_DASH] = ACTIONS(3947), - [anon_sym_PLUS] = ACTIONS(3947), - [anon_sym_STAR] = ACTIONS(3949), - [anon_sym_AMP_AMP] = ACTIONS(3949), - [anon_sym_AMP] = ACTIONS(3947), - [anon_sym_SEMI] = ACTIONS(3949), - [anon_sym___extension__] = ACTIONS(3947), - [anon_sym_virtual] = ACTIONS(3947), - [anon_sym_extern] = ACTIONS(3947), - [anon_sym___attribute__] = ACTIONS(3947), - [anon_sym___attribute] = ACTIONS(3947), - [anon_sym_using] = ACTIONS(3947), - [anon_sym_COLON_COLON] = ACTIONS(3949), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3949), - [anon_sym___declspec] = ACTIONS(3947), - [anon_sym___based] = ACTIONS(3947), - [anon_sym_LBRACE] = ACTIONS(3949), - [anon_sym_signed] = ACTIONS(3947), - [anon_sym_unsigned] = ACTIONS(3947), - [anon_sym_long] = ACTIONS(3947), - [anon_sym_short] = ACTIONS(3947), - [anon_sym_LBRACK] = ACTIONS(3947), - [anon_sym_static] = ACTIONS(3947), - [anon_sym_RBRACK] = ACTIONS(3949), - [anon_sym_EQ] = ACTIONS(3949), - [anon_sym_register] = ACTIONS(3947), - [anon_sym_inline] = ACTIONS(3947), - [anon_sym___inline] = ACTIONS(3947), - [anon_sym___inline__] = ACTIONS(3947), - [anon_sym___forceinline] = ACTIONS(3947), - [anon_sym_thread_local] = ACTIONS(3947), - [anon_sym___thread] = ACTIONS(3947), - [anon_sym_const] = ACTIONS(3947), - [anon_sym_constexpr] = ACTIONS(3947), - [anon_sym_volatile] = ACTIONS(3947), - [anon_sym_restrict] = ACTIONS(3947), - [anon_sym___restrict__] = ACTIONS(3947), - [anon_sym__Atomic] = ACTIONS(3947), - [anon_sym__Noreturn] = ACTIONS(3947), - [anon_sym_noreturn] = ACTIONS(3947), - [anon_sym__Nonnull] = ACTIONS(3947), - [anon_sym_mutable] = ACTIONS(3947), - [anon_sym_constinit] = ACTIONS(3947), - [anon_sym_consteval] = ACTIONS(3947), - [anon_sym_alignas] = ACTIONS(3947), - [anon_sym__Alignas] = ACTIONS(3947), - [sym_primitive_type] = ACTIONS(3947), - [anon_sym_enum] = ACTIONS(3947), - [anon_sym_class] = ACTIONS(3947), - [anon_sym_struct] = ACTIONS(3947), - [anon_sym_union] = ACTIONS(3947), - [anon_sym_if] = ACTIONS(3947), - [anon_sym_switch] = ACTIONS(3947), - [anon_sym_case] = ACTIONS(3947), - [anon_sym_default] = ACTIONS(3947), - [anon_sym_while] = ACTIONS(3947), - [anon_sym_do] = ACTIONS(3947), - [anon_sym_for] = ACTIONS(3947), - [anon_sym_return] = ACTIONS(3947), - [anon_sym_break] = ACTIONS(3947), - [anon_sym_continue] = ACTIONS(3947), - [anon_sym_goto] = ACTIONS(3947), - [anon_sym___try] = ACTIONS(3947), - [anon_sym___leave] = ACTIONS(3947), - [anon_sym_not] = ACTIONS(3947), - [anon_sym_compl] = ACTIONS(3947), - [anon_sym_DASH_DASH] = ACTIONS(3949), - [anon_sym_PLUS_PLUS] = ACTIONS(3949), - [anon_sym_sizeof] = ACTIONS(3947), - [anon_sym___alignof__] = ACTIONS(3947), - [anon_sym___alignof] = ACTIONS(3947), - [anon_sym__alignof] = ACTIONS(3947), - [anon_sym_alignof] = ACTIONS(3947), - [anon_sym__Alignof] = ACTIONS(3947), - [anon_sym_offsetof] = ACTIONS(3947), - [anon_sym__Generic] = ACTIONS(3947), - [anon_sym_asm] = ACTIONS(3947), - [anon_sym___asm__] = ACTIONS(3947), - [anon_sym___asm] = ACTIONS(3947), - [sym_number_literal] = ACTIONS(3949), - [anon_sym_L_SQUOTE] = ACTIONS(3949), - [anon_sym_u_SQUOTE] = ACTIONS(3949), - [anon_sym_U_SQUOTE] = ACTIONS(3949), - [anon_sym_u8_SQUOTE] = ACTIONS(3949), - [anon_sym_SQUOTE] = ACTIONS(3949), - [anon_sym_L_DQUOTE] = ACTIONS(3949), - [anon_sym_u_DQUOTE] = ACTIONS(3949), - [anon_sym_U_DQUOTE] = ACTIONS(3949), - [anon_sym_u8_DQUOTE] = ACTIONS(3949), - [anon_sym_DQUOTE] = ACTIONS(3949), - [sym_true] = ACTIONS(3947), - [sym_false] = ACTIONS(3947), - [anon_sym_NULL] = ACTIONS(3947), - [anon_sym_nullptr] = ACTIONS(3947), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3947), - [anon_sym_decltype] = ACTIONS(3947), - [anon_sym_explicit] = ACTIONS(3947), - [anon_sym_typename] = ACTIONS(3947), - [anon_sym_template] = ACTIONS(3947), - [anon_sym_GT2] = ACTIONS(3949), - [anon_sym_operator] = ACTIONS(3947), - [anon_sym_try] = ACTIONS(3947), - [anon_sym_delete] = ACTIONS(3947), - [anon_sym_throw] = ACTIONS(3947), - [anon_sym_co_return] = ACTIONS(3947), - [anon_sym_co_yield] = ACTIONS(3947), - [anon_sym_R_DQUOTE] = ACTIONS(3949), - [anon_sym_LR_DQUOTE] = ACTIONS(3949), - [anon_sym_uR_DQUOTE] = ACTIONS(3949), - [anon_sym_UR_DQUOTE] = ACTIONS(3949), - [anon_sym_u8R_DQUOTE] = ACTIONS(3949), - [anon_sym_co_await] = ACTIONS(3947), - [anon_sym_new] = ACTIONS(3947), - [anon_sym_requires] = ACTIONS(3947), - [sym_this] = ACTIONS(3947), + [anon_sym_typename] = ACTIONS(3929), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3939), + [anon_sym_co_await] = ACTIONS(3937), + [anon_sym_new] = ACTIONS(3939), + [anon_sym_DASH_GT_STAR] = ACTIONS(3935), + [anon_sym_LPAREN_RPAREN] = ACTIONS(3935), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3935), + [anon_sym_DQUOTE_DQUOTE] = ACTIONS(3941), }, - [829] = { - [sym_identifier] = ACTIONS(3951), - [anon_sym_COMMA] = ACTIONS(3953), - [anon_sym_RPAREN] = ACTIONS(3953), - [anon_sym_LPAREN2] = ACTIONS(3953), - [anon_sym_BANG] = ACTIONS(3953), - [anon_sym_TILDE] = ACTIONS(3953), - [anon_sym_DASH] = ACTIONS(3951), - [anon_sym_PLUS] = ACTIONS(3951), - [anon_sym_STAR] = ACTIONS(3953), - [anon_sym_AMP_AMP] = ACTIONS(3953), - [anon_sym_AMP] = ACTIONS(3951), - [anon_sym_SEMI] = ACTIONS(3953), - [anon_sym___extension__] = ACTIONS(3951), - [anon_sym_virtual] = ACTIONS(3951), - [anon_sym_extern] = ACTIONS(3951), - [anon_sym___attribute__] = ACTIONS(3951), - [anon_sym___attribute] = ACTIONS(3951), - [anon_sym_using] = ACTIONS(3951), - [anon_sym_COLON_COLON] = ACTIONS(3953), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3953), - [anon_sym___declspec] = ACTIONS(3951), - [anon_sym___based] = ACTIONS(3951), - [anon_sym_LBRACE] = ACTIONS(3953), - [anon_sym_signed] = ACTIONS(3951), - [anon_sym_unsigned] = ACTIONS(3951), - [anon_sym_long] = ACTIONS(3951), - [anon_sym_short] = ACTIONS(3951), - [anon_sym_LBRACK] = ACTIONS(3951), - [anon_sym_static] = ACTIONS(3951), - [anon_sym_RBRACK] = ACTIONS(3953), - [anon_sym_EQ] = ACTIONS(3953), - [anon_sym_register] = ACTIONS(3951), - [anon_sym_inline] = ACTIONS(3951), - [anon_sym___inline] = ACTIONS(3951), - [anon_sym___inline__] = ACTIONS(3951), - [anon_sym___forceinline] = ACTIONS(3951), - [anon_sym_thread_local] = ACTIONS(3951), - [anon_sym___thread] = ACTIONS(3951), - [anon_sym_const] = ACTIONS(3951), - [anon_sym_constexpr] = ACTIONS(3951), - [anon_sym_volatile] = ACTIONS(3951), - [anon_sym_restrict] = ACTIONS(3951), - [anon_sym___restrict__] = ACTIONS(3951), - [anon_sym__Atomic] = ACTIONS(3951), - [anon_sym__Noreturn] = ACTIONS(3951), - [anon_sym_noreturn] = ACTIONS(3951), - [anon_sym__Nonnull] = ACTIONS(3951), - [anon_sym_mutable] = ACTIONS(3951), - [anon_sym_constinit] = ACTIONS(3951), - [anon_sym_consteval] = ACTIONS(3951), - [anon_sym_alignas] = ACTIONS(3951), - [anon_sym__Alignas] = ACTIONS(3951), - [sym_primitive_type] = ACTIONS(3951), - [anon_sym_enum] = ACTIONS(3951), - [anon_sym_class] = ACTIONS(3951), - [anon_sym_struct] = ACTIONS(3951), - [anon_sym_union] = ACTIONS(3951), - [anon_sym_if] = ACTIONS(3951), - [anon_sym_switch] = ACTIONS(3951), - [anon_sym_case] = ACTIONS(3951), - [anon_sym_default] = ACTIONS(3951), - [anon_sym_while] = ACTIONS(3951), - [anon_sym_do] = ACTIONS(3951), - [anon_sym_for] = ACTIONS(3951), - [anon_sym_return] = ACTIONS(3951), - [anon_sym_break] = ACTIONS(3951), - [anon_sym_continue] = ACTIONS(3951), - [anon_sym_goto] = ACTIONS(3951), - [anon_sym___try] = ACTIONS(3951), - [anon_sym___leave] = ACTIONS(3951), - [anon_sym_not] = ACTIONS(3951), - [anon_sym_compl] = ACTIONS(3951), - [anon_sym_DASH_DASH] = ACTIONS(3953), - [anon_sym_PLUS_PLUS] = ACTIONS(3953), - [anon_sym_sizeof] = ACTIONS(3951), - [anon_sym___alignof__] = ACTIONS(3951), - [anon_sym___alignof] = ACTIONS(3951), - [anon_sym__alignof] = ACTIONS(3951), - [anon_sym_alignof] = ACTIONS(3951), - [anon_sym__Alignof] = ACTIONS(3951), - [anon_sym_offsetof] = ACTIONS(3951), - [anon_sym__Generic] = ACTIONS(3951), - [anon_sym_asm] = ACTIONS(3951), - [anon_sym___asm__] = ACTIONS(3951), - [anon_sym___asm] = ACTIONS(3951), - [sym_number_literal] = ACTIONS(3953), - [anon_sym_L_SQUOTE] = ACTIONS(3953), - [anon_sym_u_SQUOTE] = ACTIONS(3953), - [anon_sym_U_SQUOTE] = ACTIONS(3953), - [anon_sym_u8_SQUOTE] = ACTIONS(3953), - [anon_sym_SQUOTE] = ACTIONS(3953), - [anon_sym_L_DQUOTE] = ACTIONS(3953), - [anon_sym_u_DQUOTE] = ACTIONS(3953), - [anon_sym_U_DQUOTE] = ACTIONS(3953), - [anon_sym_u8_DQUOTE] = ACTIONS(3953), - [anon_sym_DQUOTE] = ACTIONS(3953), - [sym_true] = ACTIONS(3951), - [sym_false] = ACTIONS(3951), - [anon_sym_NULL] = ACTIONS(3951), - [anon_sym_nullptr] = ACTIONS(3951), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3951), - [anon_sym_decltype] = ACTIONS(3951), - [anon_sym_explicit] = ACTIONS(3951), - [anon_sym_typename] = ACTIONS(3951), - [anon_sym_template] = ACTIONS(3951), - [anon_sym_GT2] = ACTIONS(3953), - [anon_sym_operator] = ACTIONS(3951), - [anon_sym_try] = ACTIONS(3951), - [anon_sym_delete] = ACTIONS(3951), - [anon_sym_throw] = ACTIONS(3951), - [anon_sym_co_return] = ACTIONS(3951), - [anon_sym_co_yield] = ACTIONS(3951), - [anon_sym_R_DQUOTE] = ACTIONS(3953), - [anon_sym_LR_DQUOTE] = ACTIONS(3953), - [anon_sym_uR_DQUOTE] = ACTIONS(3953), - [anon_sym_UR_DQUOTE] = ACTIONS(3953), - [anon_sym_u8R_DQUOTE] = ACTIONS(3953), - [anon_sym_co_await] = ACTIONS(3951), - [anon_sym_new] = ACTIONS(3951), - [anon_sym_requires] = ACTIONS(3951), - [sym_this] = ACTIONS(3951), - }, - [830] = { - [sym_expression] = STATE(3201), - [sym__string] = STATE(3235), - [sym_conditional_expression] = STATE(3373), - [sym_assignment_expression] = STATE(3373), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3373), - [sym_binary_expression] = STATE(3373), - [sym_update_expression] = STATE(3373), - [sym_cast_expression] = STATE(3373), - [sym_sizeof_expression] = STATE(3373), - [sym_alignof_expression] = STATE(3373), - [sym_offsetof_expression] = STATE(3373), - [sym_generic_expression] = STATE(3373), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3373), - [sym_extension_expression] = STATE(3373), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3373), - [sym_parenthesized_expression] = STATE(3365), - [sym_char_literal] = STATE(3235), - [sym_concatenated_string] = STATE(3235), - [sym_string_literal] = STATE(2358), - [sym_null] = STATE(3373), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7814), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3373), - [sym_raw_string_literal] = STATE(2358), - [sym_co_await_expression] = STATE(3373), - [sym_new_expression] = STATE(3373), - [sym_delete_expression] = STATE(3373), - [sym_requires_clause] = STATE(3373), - [sym_requires_expression] = STATE(3373), - [sym_lambda_expression] = STATE(3373), - [sym_lambda_capture_specifier] = STATE(5414), - [sym_fold_expression] = STATE(3373), - [sym_parameter_pack_expansion] = STATE(3373), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3365), - [sym_qualified_type_identifier] = STATE(7814), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(3955), - [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(3958), - [anon_sym_COLON_COLON] = ACTIONS(3961), - [anon_sym_signed] = ACTIONS(2573), - [anon_sym_unsigned] = ACTIONS(2573), - [anon_sym_long] = ACTIONS(2573), - [anon_sym_short] = ACTIONS(2573), - [anon_sym_LBRACK] = ACTIONS(2020), - [anon_sym_const] = ACTIONS(2573), - [anon_sym_constexpr] = ACTIONS(2573), - [anon_sym_volatile] = ACTIONS(2573), - [anon_sym_restrict] = ACTIONS(2573), - [anon_sym___restrict__] = ACTIONS(2573), - [anon_sym__Atomic] = ACTIONS(2573), - [anon_sym__Noreturn] = ACTIONS(2573), - [anon_sym_noreturn] = ACTIONS(2573), - [anon_sym__Nonnull] = ACTIONS(2573), - [anon_sym_mutable] = ACTIONS(2573), - [anon_sym_constinit] = ACTIONS(2573), - [anon_sym_consteval] = ACTIONS(2573), - [anon_sym_alignas] = ACTIONS(2573), - [anon_sym__Alignas] = ACTIONS(2573), - [sym_primitive_type] = ACTIONS(3964), - [anon_sym_enum] = ACTIONS(2573), - [anon_sym_class] = ACTIONS(2573), - [anon_sym_struct] = ACTIONS(2573), - [anon_sym_union] = ACTIONS(2573), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2573), - [anon_sym_decltype] = ACTIONS(2584), - [anon_sym_typename] = ACTIONS(2573), - [anon_sym_template] = ACTIONS(2587), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), + [843] = { + [sym_identifier] = ACTIONS(3943), + [anon_sym_COMMA] = ACTIONS(3945), + [anon_sym_RPAREN] = ACTIONS(3945), + [anon_sym_LPAREN2] = ACTIONS(3945), + [anon_sym_BANG] = ACTIONS(3945), + [anon_sym_TILDE] = ACTIONS(3945), + [anon_sym_DASH] = ACTIONS(3943), + [anon_sym_PLUS] = ACTIONS(3943), + [anon_sym_STAR] = ACTIONS(3945), + [anon_sym_AMP_AMP] = ACTIONS(3945), + [anon_sym_AMP] = ACTIONS(3943), + [anon_sym_SEMI] = ACTIONS(3945), + [anon_sym___extension__] = ACTIONS(3943), + [anon_sym_virtual] = ACTIONS(3943), + [anon_sym_extern] = ACTIONS(3943), + [anon_sym___attribute__] = ACTIONS(3943), + [anon_sym___attribute] = ACTIONS(3943), + [anon_sym_using] = ACTIONS(3943), + [anon_sym_COLON_COLON] = ACTIONS(3945), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3945), + [anon_sym___declspec] = ACTIONS(3943), + [anon_sym___based] = ACTIONS(3943), + [anon_sym_LBRACE] = ACTIONS(3945), + [anon_sym_signed] = ACTIONS(3943), + [anon_sym_unsigned] = ACTIONS(3943), + [anon_sym_long] = ACTIONS(3943), + [anon_sym_short] = ACTIONS(3943), + [anon_sym_LBRACK] = ACTIONS(3943), + [anon_sym_static] = ACTIONS(3943), + [anon_sym_RBRACK] = ACTIONS(3945), + [anon_sym_EQ] = ACTIONS(3945), + [anon_sym_register] = ACTIONS(3943), + [anon_sym_inline] = ACTIONS(3943), + [anon_sym___inline] = ACTIONS(3943), + [anon_sym___inline__] = ACTIONS(3943), + [anon_sym___forceinline] = ACTIONS(3943), + [anon_sym_thread_local] = ACTIONS(3943), + [anon_sym___thread] = ACTIONS(3943), + [anon_sym_const] = ACTIONS(3943), + [anon_sym_constexpr] = ACTIONS(3943), + [anon_sym_volatile] = ACTIONS(3943), + [anon_sym_restrict] = ACTIONS(3943), + [anon_sym___restrict__] = ACTIONS(3943), + [anon_sym__Atomic] = ACTIONS(3943), + [anon_sym__Noreturn] = ACTIONS(3943), + [anon_sym_noreturn] = ACTIONS(3943), + [anon_sym__Nonnull] = ACTIONS(3943), + [anon_sym_mutable] = ACTIONS(3943), + [anon_sym_constinit] = ACTIONS(3943), + [anon_sym_consteval] = ACTIONS(3943), + [anon_sym_alignas] = ACTIONS(3943), + [anon_sym__Alignas] = ACTIONS(3943), + [sym_primitive_type] = ACTIONS(3943), + [anon_sym_enum] = ACTIONS(3943), + [anon_sym_class] = ACTIONS(3943), + [anon_sym_struct] = ACTIONS(3943), + [anon_sym_union] = ACTIONS(3943), + [anon_sym_if] = ACTIONS(3943), + [anon_sym_switch] = ACTIONS(3943), + [anon_sym_case] = ACTIONS(3943), + [anon_sym_default] = ACTIONS(3943), + [anon_sym_while] = ACTIONS(3943), + [anon_sym_do] = ACTIONS(3943), + [anon_sym_for] = ACTIONS(3943), + [anon_sym_return] = ACTIONS(3943), + [anon_sym_break] = ACTIONS(3943), + [anon_sym_continue] = ACTIONS(3943), + [anon_sym_goto] = ACTIONS(3943), + [anon_sym___try] = ACTIONS(3943), + [anon_sym___leave] = ACTIONS(3943), + [anon_sym_not] = ACTIONS(3943), + [anon_sym_compl] = ACTIONS(3943), + [anon_sym_DASH_DASH] = ACTIONS(3945), + [anon_sym_PLUS_PLUS] = ACTIONS(3945), + [anon_sym_sizeof] = ACTIONS(3943), + [anon_sym___alignof__] = ACTIONS(3943), + [anon_sym___alignof] = ACTIONS(3943), + [anon_sym__alignof] = ACTIONS(3943), + [anon_sym_alignof] = ACTIONS(3943), + [anon_sym__Alignof] = ACTIONS(3943), + [anon_sym_offsetof] = ACTIONS(3943), + [anon_sym__Generic] = ACTIONS(3943), + [anon_sym_asm] = ACTIONS(3943), + [anon_sym___asm__] = ACTIONS(3943), + [anon_sym___asm] = ACTIONS(3943), + [sym_number_literal] = ACTIONS(3945), + [anon_sym_L_SQUOTE] = ACTIONS(3945), + [anon_sym_u_SQUOTE] = ACTIONS(3945), + [anon_sym_U_SQUOTE] = ACTIONS(3945), + [anon_sym_u8_SQUOTE] = ACTIONS(3945), + [anon_sym_SQUOTE] = ACTIONS(3945), + [anon_sym_L_DQUOTE] = ACTIONS(3945), + [anon_sym_u_DQUOTE] = ACTIONS(3945), + [anon_sym_U_DQUOTE] = ACTIONS(3945), + [anon_sym_u8_DQUOTE] = ACTIONS(3945), + [anon_sym_DQUOTE] = ACTIONS(3945), + [sym_true] = ACTIONS(3943), + [sym_false] = ACTIONS(3943), + [anon_sym_NULL] = ACTIONS(3943), + [anon_sym_nullptr] = ACTIONS(3943), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3943), + [anon_sym_decltype] = ACTIONS(3943), + [anon_sym_explicit] = ACTIONS(3943), + [anon_sym_typename] = ACTIONS(3943), + [anon_sym_template] = ACTIONS(3943), + [anon_sym_GT2] = ACTIONS(3945), + [anon_sym_operator] = ACTIONS(3943), + [anon_sym_try] = ACTIONS(3943), + [anon_sym_delete] = ACTIONS(3943), + [anon_sym_throw] = ACTIONS(3943), + [anon_sym_co_return] = ACTIONS(3943), + [anon_sym_co_yield] = ACTIONS(3943), + [anon_sym_R_DQUOTE] = ACTIONS(3945), + [anon_sym_LR_DQUOTE] = ACTIONS(3945), + [anon_sym_uR_DQUOTE] = ACTIONS(3945), + [anon_sym_UR_DQUOTE] = ACTIONS(3945), + [anon_sym_u8R_DQUOTE] = ACTIONS(3945), + [anon_sym_co_await] = ACTIONS(3943), + [anon_sym_new] = ACTIONS(3943), + [anon_sym_requires] = ACTIONS(3943), + [sym_this] = ACTIONS(3943), }, - [831] = { - [sym_expression] = STATE(4294), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(2551), - [anon_sym_LPAREN2] = ACTIONS(1436), + [844] = { + [sym_expression] = STATE(4345), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(2547), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2568), - [anon_sym_COLON_COLON] = ACTIONS(2575), - [anon_sym_signed] = ACTIONS(2573), - [anon_sym_unsigned] = ACTIONS(2573), - [anon_sym_long] = ACTIONS(2573), - [anon_sym_short] = ACTIONS(2573), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2564), + [anon_sym_COLON_COLON] = ACTIONS(2571), + [anon_sym_signed] = ACTIONS(2569), + [anon_sym_unsigned] = ACTIONS(2569), + [anon_sym_long] = ACTIONS(2569), + [anon_sym_short] = ACTIONS(2569), [anon_sym_LBRACK] = ACTIONS(2020), - [anon_sym_const] = ACTIONS(2573), - [anon_sym_constexpr] = ACTIONS(2573), - [anon_sym_volatile] = ACTIONS(2573), - [anon_sym_restrict] = ACTIONS(2573), - [anon_sym___restrict__] = ACTIONS(2573), - [anon_sym__Atomic] = ACTIONS(2573), - [anon_sym__Noreturn] = ACTIONS(2573), - [anon_sym_noreturn] = ACTIONS(2573), - [anon_sym__Nonnull] = ACTIONS(2573), - [anon_sym_mutable] = ACTIONS(2573), - [anon_sym_constinit] = ACTIONS(2573), - [anon_sym_consteval] = ACTIONS(2573), - [anon_sym_alignas] = ACTIONS(2573), - [anon_sym__Alignas] = ACTIONS(2573), - [sym_primitive_type] = ACTIONS(2581), - [anon_sym_enum] = ACTIONS(2573), - [anon_sym_class] = ACTIONS(2573), - [anon_sym_struct] = ACTIONS(2573), - [anon_sym_union] = ACTIONS(2573), + [anon_sym_const] = ACTIONS(2569), + [anon_sym_constexpr] = ACTIONS(2569), + [anon_sym_volatile] = ACTIONS(2569), + [anon_sym_restrict] = ACTIONS(2569), + [anon_sym___restrict__] = ACTIONS(2569), + [anon_sym__Atomic] = ACTIONS(2569), + [anon_sym__Noreturn] = ACTIONS(2569), + [anon_sym_noreturn] = ACTIONS(2569), + [anon_sym__Nonnull] = ACTIONS(2569), + [anon_sym_mutable] = ACTIONS(2569), + [anon_sym_constinit] = ACTIONS(2569), + [anon_sym_consteval] = ACTIONS(2569), + [anon_sym_alignas] = ACTIONS(2569), + [anon_sym__Alignas] = ACTIONS(2569), + [sym_primitive_type] = ACTIONS(2577), + [anon_sym_enum] = ACTIONS(2569), + [anon_sym_class] = ACTIONS(2569), + [anon_sym_struct] = ACTIONS(2569), + [anon_sym_union] = ACTIONS(2569), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -160020,10 +162151,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(123), [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2573), - [anon_sym_decltype] = ACTIONS(2584), - [anon_sym_typename] = ACTIONS(2573), - [anon_sym_template] = ACTIONS(2587), + [sym_auto] = ACTIONS(2569), + [anon_sym_decltype] = ACTIONS(2580), + [anon_sym_typename] = ACTIONS(2569), + [anon_sym_template] = ACTIONS(2583), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -160035,75 +162166,447 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [832] = { - [sym_function_definition] = STATE(2150), - [sym_declaration] = STATE(2150), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(4684), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(3120), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_call_modifier] = STATE(1934), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6217), - [sym_array_declarator] = STATE(5998), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2745), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym__empty_declaration] = STATE(2150), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym_explicit_function_specifier] = STATE(1760), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(2150), - [sym_operator_cast] = STATE(6816), - [sym__constructor_specifiers] = STATE(1760), - [sym_operator_cast_definition] = STATE(2150), - [sym_operator_cast_declaration] = STATE(2150), - [sym_constructor_or_destructor_definition] = STATE(2150), - [sym_constructor_or_destructor_declaration] = STATE(2150), - [sym_friend_declaration] = STATE(2150), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(2406), - [sym_template_function] = STATE(5998), - [sym_alias_declaration] = STATE(2150), - [sym_concept_definition] = STATE(2150), - [sym_requires_clause] = STATE(854), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5462), - [sym_qualified_identifier] = STATE(5998), - [sym_qualified_type_identifier] = STATE(3015), - [sym_qualified_operator_cast_identifier] = STATE(6816), - [sym_operator_name] = STATE(5998), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1760), - [sym_identifier] = ACTIONS(3967), - [anon_sym_LPAREN2] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2979), - [anon_sym_STAR] = ACTIONS(2981), + [845] = { + [sym_expression] = STATE(4601), + [sym__string] = STATE(4825), + [sym_conditional_expression] = STATE(4856), + [sym_assignment_expression] = STATE(4856), + [sym_pointer_expression] = STATE(3701), + [sym_unary_expression] = STATE(4856), + [sym_binary_expression] = STATE(4856), + [sym_update_expression] = STATE(4856), + [sym_cast_expression] = STATE(4856), + [sym_sizeof_expression] = STATE(4856), + [sym_alignof_expression] = STATE(4856), + [sym_offsetof_expression] = STATE(4856), + [sym_generic_expression] = STATE(4856), + [sym_subscript_expression] = STATE(3701), + [sym_call_expression] = STATE(3701), + [sym_gnu_asm_expression] = STATE(4856), + [sym_extension_expression] = STATE(4856), + [sym_field_expression] = STATE(3701), + [sym_compound_literal_expression] = STATE(4856), + [sym_parenthesized_expression] = STATE(3701), + [sym_char_literal] = STATE(4825), + [sym_concatenated_string] = STATE(4825), + [sym_string_literal] = STATE(3812), + [sym_null] = STATE(4856), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7816), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(4856), + [sym_raw_string_literal] = STATE(3812), + [sym_co_await_expression] = STATE(4856), + [sym_new_expression] = STATE(4856), + [sym_delete_expression] = STATE(4856), + [sym_requires_clause] = STATE(4856), + [sym_requires_expression] = STATE(4856), + [sym_lambda_expression] = STATE(4856), + [sym_lambda_capture_specifier] = STATE(5489), + [sym_fold_expression] = STATE(4856), + [sym_parameter_pack_expansion] = STATE(4856), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5769), + [sym_qualified_identifier] = STATE(3701), + [sym_qualified_type_identifier] = STATE(7816), + [sym_user_defined_literal] = STATE(3701), + [sym_identifier] = ACTIONS(3947), + [anon_sym_LPAREN2] = ACTIONS(3130), + [anon_sym_BANG] = ACTIONS(3132), + [anon_sym_TILDE] = ACTIONS(3132), + [anon_sym_DASH] = ACTIONS(3134), + [anon_sym_PLUS] = ACTIONS(3134), + [anon_sym_STAR] = ACTIONS(3136), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym___extension__] = ACTIONS(3950), + [anon_sym_COLON_COLON] = ACTIONS(3953), + [anon_sym_signed] = ACTIONS(2569), + [anon_sym_unsigned] = ACTIONS(2569), + [anon_sym_long] = ACTIONS(2569), + [anon_sym_short] = ACTIONS(2569), + [anon_sym_LBRACK] = ACTIONS(2020), + [anon_sym_const] = ACTIONS(2569), + [anon_sym_constexpr] = ACTIONS(2569), + [anon_sym_volatile] = ACTIONS(2569), + [anon_sym_restrict] = ACTIONS(2569), + [anon_sym___restrict__] = ACTIONS(2569), + [anon_sym__Atomic] = ACTIONS(2569), + [anon_sym__Noreturn] = ACTIONS(2569), + [anon_sym_noreturn] = ACTIONS(2569), + [anon_sym__Nonnull] = ACTIONS(2569), + [anon_sym_mutable] = ACTIONS(2569), + [anon_sym_constinit] = ACTIONS(2569), + [anon_sym_consteval] = ACTIONS(2569), + [anon_sym_alignas] = ACTIONS(2569), + [anon_sym__Alignas] = ACTIONS(2569), + [sym_primitive_type] = ACTIONS(3956), + [anon_sym_enum] = ACTIONS(2569), + [anon_sym_class] = ACTIONS(2569), + [anon_sym_struct] = ACTIONS(2569), + [anon_sym_union] = ACTIONS(2569), + [anon_sym_not] = ACTIONS(3134), + [anon_sym_compl] = ACTIONS(3134), + [anon_sym_DASH_DASH] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_sizeof] = ACTIONS(3156), + [anon_sym___alignof__] = ACTIONS(3158), + [anon_sym___alignof] = ACTIONS(3158), + [anon_sym__alignof] = ACTIONS(3158), + [anon_sym_alignof] = ACTIONS(3158), + [anon_sym__Alignof] = ACTIONS(3158), + [anon_sym_offsetof] = ACTIONS(3160), + [anon_sym__Generic] = ACTIONS(3162), + [anon_sym_asm] = ACTIONS(3164), + [anon_sym___asm__] = ACTIONS(3164), + [anon_sym___asm] = ACTIONS(3164), + [sym_number_literal] = ACTIONS(3166), + [anon_sym_L_SQUOTE] = ACTIONS(3168), + [anon_sym_u_SQUOTE] = ACTIONS(3168), + [anon_sym_U_SQUOTE] = ACTIONS(3168), + [anon_sym_u8_SQUOTE] = ACTIONS(3168), + [anon_sym_SQUOTE] = ACTIONS(3168), + [anon_sym_L_DQUOTE] = ACTIONS(3170), + [anon_sym_u_DQUOTE] = ACTIONS(3170), + [anon_sym_U_DQUOTE] = ACTIONS(3170), + [anon_sym_u8_DQUOTE] = ACTIONS(3170), + [anon_sym_DQUOTE] = ACTIONS(3170), + [sym_true] = ACTIONS(3172), + [sym_false] = ACTIONS(3172), + [anon_sym_NULL] = ACTIONS(3174), + [anon_sym_nullptr] = ACTIONS(3174), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2569), + [anon_sym_decltype] = ACTIONS(2580), + [anon_sym_typename] = ACTIONS(2569), + [anon_sym_template] = ACTIONS(2583), + [anon_sym_delete] = ACTIONS(3184), + [anon_sym_R_DQUOTE] = ACTIONS(3186), + [anon_sym_LR_DQUOTE] = ACTIONS(3186), + [anon_sym_uR_DQUOTE] = ACTIONS(3186), + [anon_sym_UR_DQUOTE] = ACTIONS(3186), + [anon_sym_u8R_DQUOTE] = ACTIONS(3186), + [anon_sym_co_await] = ACTIONS(3188), + [anon_sym_new] = ACTIONS(3190), + [anon_sym_requires] = ACTIONS(3192), + [sym_this] = ACTIONS(3172), + }, + [846] = { + [sym_identifier] = ACTIONS(3959), + [anon_sym_COMMA] = ACTIONS(3961), + [anon_sym_RPAREN] = ACTIONS(3961), + [anon_sym_LPAREN2] = ACTIONS(3961), + [anon_sym_BANG] = ACTIONS(3961), + [anon_sym_TILDE] = ACTIONS(3961), + [anon_sym_DASH] = ACTIONS(3959), + [anon_sym_PLUS] = ACTIONS(3959), + [anon_sym_STAR] = ACTIONS(3961), + [anon_sym_AMP_AMP] = ACTIONS(3961), + [anon_sym_AMP] = ACTIONS(3959), + [anon_sym_SEMI] = ACTIONS(3961), + [anon_sym___extension__] = ACTIONS(3959), + [anon_sym_virtual] = ACTIONS(3959), + [anon_sym_extern] = ACTIONS(3959), + [anon_sym___attribute__] = ACTIONS(3959), + [anon_sym___attribute] = ACTIONS(3959), + [anon_sym_using] = ACTIONS(3959), + [anon_sym_COLON_COLON] = ACTIONS(3961), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3961), + [anon_sym___declspec] = ACTIONS(3959), + [anon_sym___based] = ACTIONS(3959), + [anon_sym_LBRACE] = ACTIONS(3961), + [anon_sym_signed] = ACTIONS(3959), + [anon_sym_unsigned] = ACTIONS(3959), + [anon_sym_long] = ACTIONS(3959), + [anon_sym_short] = ACTIONS(3959), + [anon_sym_LBRACK] = ACTIONS(3959), + [anon_sym_static] = ACTIONS(3959), + [anon_sym_RBRACK] = ACTIONS(3961), + [anon_sym_EQ] = ACTIONS(3961), + [anon_sym_register] = ACTIONS(3959), + [anon_sym_inline] = ACTIONS(3959), + [anon_sym___inline] = ACTIONS(3959), + [anon_sym___inline__] = ACTIONS(3959), + [anon_sym___forceinline] = ACTIONS(3959), + [anon_sym_thread_local] = ACTIONS(3959), + [anon_sym___thread] = ACTIONS(3959), + [anon_sym_const] = ACTIONS(3959), + [anon_sym_constexpr] = ACTIONS(3959), + [anon_sym_volatile] = ACTIONS(3959), + [anon_sym_restrict] = ACTIONS(3959), + [anon_sym___restrict__] = ACTIONS(3959), + [anon_sym__Atomic] = ACTIONS(3959), + [anon_sym__Noreturn] = ACTIONS(3959), + [anon_sym_noreturn] = ACTIONS(3959), + [anon_sym__Nonnull] = ACTIONS(3959), + [anon_sym_mutable] = ACTIONS(3959), + [anon_sym_constinit] = ACTIONS(3959), + [anon_sym_consteval] = ACTIONS(3959), + [anon_sym_alignas] = ACTIONS(3959), + [anon_sym__Alignas] = ACTIONS(3959), + [sym_primitive_type] = ACTIONS(3959), + [anon_sym_enum] = ACTIONS(3959), + [anon_sym_class] = ACTIONS(3959), + [anon_sym_struct] = ACTIONS(3959), + [anon_sym_union] = ACTIONS(3959), + [anon_sym_if] = ACTIONS(3959), + [anon_sym_switch] = ACTIONS(3959), + [anon_sym_case] = ACTIONS(3959), + [anon_sym_default] = ACTIONS(3959), + [anon_sym_while] = ACTIONS(3959), + [anon_sym_do] = ACTIONS(3959), + [anon_sym_for] = ACTIONS(3959), + [anon_sym_return] = ACTIONS(3959), + [anon_sym_break] = ACTIONS(3959), + [anon_sym_continue] = ACTIONS(3959), + [anon_sym_goto] = ACTIONS(3959), + [anon_sym___try] = ACTIONS(3959), + [anon_sym___leave] = ACTIONS(3959), + [anon_sym_not] = ACTIONS(3959), + [anon_sym_compl] = ACTIONS(3959), + [anon_sym_DASH_DASH] = ACTIONS(3961), + [anon_sym_PLUS_PLUS] = ACTIONS(3961), + [anon_sym_sizeof] = ACTIONS(3959), + [anon_sym___alignof__] = ACTIONS(3959), + [anon_sym___alignof] = ACTIONS(3959), + [anon_sym__alignof] = ACTIONS(3959), + [anon_sym_alignof] = ACTIONS(3959), + [anon_sym__Alignof] = ACTIONS(3959), + [anon_sym_offsetof] = ACTIONS(3959), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_asm] = ACTIONS(3959), + [anon_sym___asm__] = ACTIONS(3959), + [anon_sym___asm] = ACTIONS(3959), + [sym_number_literal] = ACTIONS(3961), + [anon_sym_L_SQUOTE] = ACTIONS(3961), + [anon_sym_u_SQUOTE] = ACTIONS(3961), + [anon_sym_U_SQUOTE] = ACTIONS(3961), + [anon_sym_u8_SQUOTE] = ACTIONS(3961), + [anon_sym_SQUOTE] = ACTIONS(3961), + [anon_sym_L_DQUOTE] = ACTIONS(3961), + [anon_sym_u_DQUOTE] = ACTIONS(3961), + [anon_sym_U_DQUOTE] = ACTIONS(3961), + [anon_sym_u8_DQUOTE] = ACTIONS(3961), + [anon_sym_DQUOTE] = ACTIONS(3961), + [sym_true] = ACTIONS(3959), + [sym_false] = ACTIONS(3959), + [anon_sym_NULL] = ACTIONS(3959), + [anon_sym_nullptr] = ACTIONS(3959), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3959), + [anon_sym_decltype] = ACTIONS(3959), + [anon_sym_explicit] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(3959), + [anon_sym_template] = ACTIONS(3959), + [anon_sym_GT2] = ACTIONS(3961), + [anon_sym_operator] = ACTIONS(3959), + [anon_sym_try] = ACTIONS(3959), + [anon_sym_delete] = ACTIONS(3959), + [anon_sym_throw] = ACTIONS(3959), + [anon_sym_co_return] = ACTIONS(3959), + [anon_sym_co_yield] = ACTIONS(3959), + [anon_sym_R_DQUOTE] = ACTIONS(3961), + [anon_sym_LR_DQUOTE] = ACTIONS(3961), + [anon_sym_uR_DQUOTE] = ACTIONS(3961), + [anon_sym_UR_DQUOTE] = ACTIONS(3961), + [anon_sym_u8R_DQUOTE] = ACTIONS(3961), + [anon_sym_co_await] = ACTIONS(3959), + [anon_sym_new] = ACTIONS(3959), + [anon_sym_requires] = ACTIONS(3959), + [sym_this] = ACTIONS(3959), + }, + [847] = { + [sym_expression] = STATE(3230), + [sym__string] = STATE(3393), + [sym_conditional_expression] = STATE(3401), + [sym_assignment_expression] = STATE(3401), + [sym_pointer_expression] = STATE(3405), + [sym_unary_expression] = STATE(3401), + [sym_binary_expression] = STATE(3401), + [sym_update_expression] = STATE(3401), + [sym_cast_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3401), + [sym_alignof_expression] = STATE(3401), + [sym_offsetof_expression] = STATE(3401), + [sym_generic_expression] = STATE(3401), + [sym_subscript_expression] = STATE(3405), + [sym_call_expression] = STATE(3405), + [sym_gnu_asm_expression] = STATE(3401), + [sym_extension_expression] = STATE(3401), + [sym_field_expression] = STATE(3405), + [sym_compound_literal_expression] = STATE(3401), + [sym_parenthesized_expression] = STATE(3405), + [sym_char_literal] = STATE(3393), + [sym_concatenated_string] = STATE(3393), + [sym_string_literal] = STATE(2380), + [sym_null] = STATE(3401), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7745), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3401), + [sym_raw_string_literal] = STATE(2380), + [sym_co_await_expression] = STATE(3401), + [sym_new_expression] = STATE(3401), + [sym_delete_expression] = STATE(3401), + [sym_requires_clause] = STATE(3401), + [sym_requires_expression] = STATE(3401), + [sym_lambda_expression] = STATE(3401), + [sym_lambda_capture_specifier] = STATE(5494), + [sym_fold_expression] = STATE(3401), + [sym_parameter_pack_expansion] = STATE(3401), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3405), + [sym_qualified_type_identifier] = STATE(7745), + [sym_user_defined_literal] = STATE(3405), + [sym_identifier] = ACTIONS(3963), + [anon_sym_LPAREN2] = ACTIONS(2018), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(3966), + [anon_sym_COLON_COLON] = ACTIONS(3969), + [anon_sym_signed] = ACTIONS(2569), + [anon_sym_unsigned] = ACTIONS(2569), + [anon_sym_long] = ACTIONS(2569), + [anon_sym_short] = ACTIONS(2569), + [anon_sym_LBRACK] = ACTIONS(2020), + [anon_sym_const] = ACTIONS(2569), + [anon_sym_constexpr] = ACTIONS(2569), + [anon_sym_volatile] = ACTIONS(2569), + [anon_sym_restrict] = ACTIONS(2569), + [anon_sym___restrict__] = ACTIONS(2569), + [anon_sym__Atomic] = ACTIONS(2569), + [anon_sym__Noreturn] = ACTIONS(2569), + [anon_sym_noreturn] = ACTIONS(2569), + [anon_sym__Nonnull] = ACTIONS(2569), + [anon_sym_mutable] = ACTIONS(2569), + [anon_sym_constinit] = ACTIONS(2569), + [anon_sym_consteval] = ACTIONS(2569), + [anon_sym_alignas] = ACTIONS(2569), + [anon_sym__Alignas] = ACTIONS(2569), + [sym_primitive_type] = ACTIONS(3972), + [anon_sym_enum] = ACTIONS(2569), + [anon_sym_class] = ACTIONS(2569), + [anon_sym_struct] = ACTIONS(2569), + [anon_sym_union] = ACTIONS(2569), + [anon_sym_not] = ACTIONS(1796), + [anon_sym_compl] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_sizeof] = ACTIONS(1824), + [anon_sym___alignof__] = ACTIONS(1826), + [anon_sym___alignof] = ACTIONS(1826), + [anon_sym__alignof] = ACTIONS(1826), + [anon_sym_alignof] = ACTIONS(1826), + [anon_sym__Alignof] = ACTIONS(1826), + [anon_sym_offsetof] = ACTIONS(1828), + [anon_sym__Generic] = ACTIONS(1830), + [anon_sym_asm] = ACTIONS(1832), + [anon_sym___asm__] = ACTIONS(1832), + [anon_sym___asm] = ACTIONS(1832), + [sym_number_literal] = ACTIONS(1834), + [anon_sym_L_SQUOTE] = ACTIONS(1836), + [anon_sym_u_SQUOTE] = ACTIONS(1836), + [anon_sym_U_SQUOTE] = ACTIONS(1836), + [anon_sym_u8_SQUOTE] = ACTIONS(1836), + [anon_sym_SQUOTE] = ACTIONS(1836), + [anon_sym_L_DQUOTE] = ACTIONS(1838), + [anon_sym_u_DQUOTE] = ACTIONS(1838), + [anon_sym_U_DQUOTE] = ACTIONS(1838), + [anon_sym_u8_DQUOTE] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym_true] = ACTIONS(1840), + [sym_false] = ACTIONS(1840), + [anon_sym_NULL] = ACTIONS(1842), + [anon_sym_nullptr] = ACTIONS(1842), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2569), + [anon_sym_decltype] = ACTIONS(2580), + [anon_sym_typename] = ACTIONS(2569), + [anon_sym_template] = ACTIONS(2583), + [anon_sym_delete] = ACTIONS(1852), + [anon_sym_R_DQUOTE] = ACTIONS(1854), + [anon_sym_LR_DQUOTE] = ACTIONS(1854), + [anon_sym_uR_DQUOTE] = ACTIONS(1854), + [anon_sym_UR_DQUOTE] = ACTIONS(1854), + [anon_sym_u8R_DQUOTE] = ACTIONS(1854), + [anon_sym_co_await] = ACTIONS(1856), + [anon_sym_new] = ACTIONS(1858), + [anon_sym_requires] = ACTIONS(1860), + [sym_this] = ACTIONS(1840), + }, + [848] = { + [sym_function_definition] = STATE(788), + [sym_declaration] = STATE(788), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(4646), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(3211), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_call_modifier] = STATE(1956), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6316), + [sym_array_declarator] = STATE(6145), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2764), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym__empty_declaration] = STATE(788), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym_explicit_function_specifier] = STATE(1835), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(788), + [sym_operator_cast] = STATE(6888), + [sym__constructor_specifiers] = STATE(1835), + [sym_operator_cast_definition] = STATE(788), + [sym_operator_cast_declaration] = STATE(788), + [sym_constructor_or_destructor_definition] = STATE(788), + [sym_constructor_or_destructor_declaration] = STATE(788), + [sym_friend_declaration] = STATE(788), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(2439), + [sym_template_function] = STATE(6145), + [sym_alias_declaration] = STATE(788), + [sym_concept_definition] = STATE(788), + [sym_requires_clause] = STATE(866), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5553), + [sym_qualified_identifier] = STATE(6145), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6888), + [sym_operator_name] = STATE(6145), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1835), + [sym_identifier] = ACTIONS(3975), + [anon_sym_LPAREN2] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(3001), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2983), + [anon_sym_AMP] = ACTIONS(3003), [anon_sym___extension__] = ACTIONS(67), [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(3969), - [anon_sym_COLON_COLON] = ACTIONS(3971), + [anon_sym_using] = ACTIONS(3977), + [anon_sym_COLON_COLON] = ACTIONS(3979), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), @@ -160117,7 +162620,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2995), + [anon_sym_LBRACK] = ACTIONS(3015), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -160127,7 +162630,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread_local] = ACTIONS(63), [anon_sym___thread] = ACTIONS(63), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(3689), + [anon_sym_constexpr] = ACTIONS(3981), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -160140,7 +162643,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2999), + [sym_primitive_type] = ACTIONS(3019), [anon_sym_enum] = ACTIONS(73), [anon_sym_class] = ACTIONS(75), [anon_sym_struct] = ACTIONS(77), @@ -160150,81 +162653,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_decltype] = ACTIONS(127), [anon_sym_explicit] = ACTIONS(129), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(3691), + [anon_sym_template] = ACTIONS(3983), [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(3693), - [anon_sym_concept] = ACTIONS(3973), - [anon_sym_requires] = ACTIONS(3975), + [anon_sym_friend] = ACTIONS(3985), + [anon_sym_concept] = ACTIONS(241), + [anon_sym_requires] = ACTIONS(3987), }, - [833] = { - [sym_function_definition] = STATE(2066), - [sym_declaration] = STATE(2066), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(4668), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(3120), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_call_modifier] = STATE(1932), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6214), - [sym_array_declarator] = STATE(5998), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2736), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym__empty_declaration] = STATE(2066), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym_explicit_function_specifier] = STATE(1812), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(2066), - [sym_operator_cast] = STATE(6839), - [sym__constructor_specifiers] = STATE(1812), - [sym_operator_cast_definition] = STATE(2066), - [sym_operator_cast_declaration] = STATE(2066), - [sym_constructor_or_destructor_definition] = STATE(2066), - [sym_constructor_or_destructor_declaration] = STATE(2066), - [sym_friend_declaration] = STATE(2066), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(2406), - [sym_template_function] = STATE(5998), - [sym_alias_declaration] = STATE(2066), - [sym_concept_definition] = STATE(2066), - [sym_requires_clause] = STATE(863), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5462), - [sym_qualified_identifier] = STATE(5998), - [sym_qualified_type_identifier] = STATE(3015), - [sym_qualified_operator_cast_identifier] = STATE(6839), - [sym_operator_name] = STATE(5998), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1812), - [sym_identifier] = ACTIONS(3967), - [anon_sym_LPAREN2] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2979), - [anon_sym_STAR] = ACTIONS(2981), + [849] = { + [sym_function_definition] = STATE(498), + [sym_declaration] = STATE(498), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(4803), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(3211), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_call_modifier] = STATE(1954), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6319), + [sym_array_declarator] = STATE(6145), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2791), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym__empty_declaration] = STATE(498), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym_explicit_function_specifier] = STATE(1779), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(498), + [sym_operator_cast] = STATE(6950), + [sym__constructor_specifiers] = STATE(1779), + [sym_operator_cast_definition] = STATE(498), + [sym_operator_cast_declaration] = STATE(498), + [sym_constructor_or_destructor_definition] = STATE(498), + [sym_constructor_or_destructor_declaration] = STATE(498), + [sym_friend_declaration] = STATE(498), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(2439), + [sym_template_function] = STATE(6145), + [sym_alias_declaration] = STATE(498), + [sym_concept_definition] = STATE(498), + [sym_requires_clause] = STATE(882), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5553), + [sym_qualified_identifier] = STATE(6145), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6950), + [sym_operator_name] = STATE(6145), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1779), + [sym_identifier] = ACTIONS(3975), + [anon_sym_LPAREN2] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(3001), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2983), + [anon_sym_AMP] = ACTIONS(3003), [anon_sym___extension__] = ACTIONS(67), [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(3977), - [anon_sym_COLON_COLON] = ACTIONS(3971), + [anon_sym_using] = ACTIONS(3989), + [anon_sym_COLON_COLON] = ACTIONS(3979), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), @@ -160238,7 +162741,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2995), + [anon_sym_LBRACK] = ACTIONS(3015), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -160248,7 +162751,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread_local] = ACTIONS(63), [anon_sym___thread] = ACTIONS(63), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(3653), + [anon_sym_constexpr] = ACTIONS(3991), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -160261,7 +162764,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2999), + [sym_primitive_type] = ACTIONS(3019), [anon_sym_enum] = ACTIONS(73), [anon_sym_class] = ACTIONS(75), [anon_sym_struct] = ACTIONS(77), @@ -160271,81 +162774,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_decltype] = ACTIONS(127), [anon_sym_explicit] = ACTIONS(129), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(3655), + [anon_sym_template] = ACTIONS(3993), [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(3657), - [anon_sym_concept] = ACTIONS(3979), - [anon_sym_requires] = ACTIONS(3975), + [anon_sym_friend] = ACTIONS(3995), + [anon_sym_concept] = ACTIONS(153), + [anon_sym_requires] = ACTIONS(3987), }, - [834] = { - [sym_function_definition] = STATE(1710), - [sym_declaration] = STATE(1710), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(4676), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(3120), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_call_modifier] = STATE(1933), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6218), - [sym_array_declarator] = STATE(5998), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2742), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym__empty_declaration] = STATE(1710), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym_explicit_function_specifier] = STATE(1744), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(1710), - [sym_operator_cast] = STATE(6834), - [sym__constructor_specifiers] = STATE(1744), - [sym_operator_cast_definition] = STATE(1710), - [sym_operator_cast_declaration] = STATE(1710), - [sym_constructor_or_destructor_definition] = STATE(1710), - [sym_constructor_or_destructor_declaration] = STATE(1710), - [sym_friend_declaration] = STATE(1710), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(2406), - [sym_template_function] = STATE(5998), - [sym_alias_declaration] = STATE(1710), - [sym_concept_definition] = STATE(1710), - [sym_requires_clause] = STATE(849), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5462), - [sym_qualified_identifier] = STATE(5998), - [sym_qualified_type_identifier] = STATE(3015), - [sym_qualified_operator_cast_identifier] = STATE(6834), - [sym_operator_name] = STATE(5998), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1744), - [sym_identifier] = ACTIONS(3967), - [anon_sym_LPAREN2] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2979), - [anon_sym_STAR] = ACTIONS(2981), + [850] = { + [sym_function_definition] = STATE(306), + [sym_declaration] = STATE(306), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(4710), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(3211), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_call_modifier] = STATE(1963), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6387), + [sym_array_declarator] = STATE(6145), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2784), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym__empty_declaration] = STATE(306), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym_explicit_function_specifier] = STATE(1838), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(306), + [sym_operator_cast] = STATE(6927), + [sym__constructor_specifiers] = STATE(1838), + [sym_operator_cast_definition] = STATE(306), + [sym_operator_cast_declaration] = STATE(306), + [sym_constructor_or_destructor_definition] = STATE(306), + [sym_constructor_or_destructor_declaration] = STATE(306), + [sym_friend_declaration] = STATE(306), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(2439), + [sym_template_function] = STATE(6145), + [sym_alias_declaration] = STATE(306), + [sym_concept_definition] = STATE(306), + [sym_requires_clause] = STATE(860), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5553), + [sym_qualified_identifier] = STATE(6145), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6927), + [sym_operator_name] = STATE(6145), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1838), + [sym_identifier] = ACTIONS(3975), + [anon_sym_LPAREN2] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(3001), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2983), + [anon_sym_AMP] = ACTIONS(3003), [anon_sym___extension__] = ACTIONS(67), [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(3981), - [anon_sym_COLON_COLON] = ACTIONS(3971), + [anon_sym_using] = ACTIONS(3997), + [anon_sym_COLON_COLON] = ACTIONS(3979), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), @@ -160359,7 +162862,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2995), + [anon_sym_LBRACK] = ACTIONS(3015), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -160369,7 +162872,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread_local] = ACTIONS(63), [anon_sym___thread] = ACTIONS(63), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(2997), + [anon_sym_constexpr] = ACTIONS(3999), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -160382,7 +162885,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2999), + [sym_primitive_type] = ACTIONS(3019), [anon_sym_enum] = ACTIONS(73), [anon_sym_class] = ACTIONS(75), [anon_sym_struct] = ACTIONS(77), @@ -160392,81 +162895,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_decltype] = ACTIONS(127), [anon_sym_explicit] = ACTIONS(129), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(3013), + [anon_sym_template] = ACTIONS(4001), [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(3015), - [anon_sym_concept] = ACTIONS(3983), - [anon_sym_requires] = ACTIONS(3975), + [anon_sym_friend] = ACTIONS(4003), + [anon_sym_concept] = ACTIONS(337), + [anon_sym_requires] = ACTIONS(3987), }, - [835] = { - [sym_function_definition] = STATE(302), - [sym_declaration] = STATE(302), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(4644), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(3120), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_call_modifier] = STATE(1929), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6222), - [sym_array_declarator] = STATE(5998), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2724), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym__empty_declaration] = STATE(302), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym_explicit_function_specifier] = STATE(1734), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(302), - [sym_operator_cast] = STATE(6804), - [sym__constructor_specifiers] = STATE(1734), - [sym_operator_cast_definition] = STATE(302), - [sym_operator_cast_declaration] = STATE(302), - [sym_constructor_or_destructor_definition] = STATE(302), - [sym_constructor_or_destructor_declaration] = STATE(302), - [sym_friend_declaration] = STATE(302), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(2406), - [sym_template_function] = STATE(5998), - [sym_alias_declaration] = STATE(302), - [sym_concept_definition] = STATE(302), - [sym_requires_clause] = STATE(851), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5462), - [sym_qualified_identifier] = STATE(5998), - [sym_qualified_type_identifier] = STATE(3015), - [sym_qualified_operator_cast_identifier] = STATE(6804), - [sym_operator_name] = STATE(5998), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1734), - [sym_identifier] = ACTIONS(3967), - [anon_sym_LPAREN2] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2979), - [anon_sym_STAR] = ACTIONS(2981), + [851] = { + [sym_function_definition] = STATE(2143), + [sym_declaration] = STATE(2143), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(4798), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(3211), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_call_modifier] = STATE(1967), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6293), + [sym_array_declarator] = STATE(6145), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2755), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym__empty_declaration] = STATE(2143), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym_explicit_function_specifier] = STATE(1759), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(2143), + [sym_operator_cast] = STATE(6942), + [sym__constructor_specifiers] = STATE(1759), + [sym_operator_cast_definition] = STATE(2143), + [sym_operator_cast_declaration] = STATE(2143), + [sym_constructor_or_destructor_definition] = STATE(2143), + [sym_constructor_or_destructor_declaration] = STATE(2143), + [sym_friend_declaration] = STATE(2143), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(2439), + [sym_template_function] = STATE(6145), + [sym_alias_declaration] = STATE(2143), + [sym_concept_definition] = STATE(2143), + [sym_requires_clause] = STATE(855), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5553), + [sym_qualified_identifier] = STATE(6145), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6942), + [sym_operator_name] = STATE(6145), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1759), + [sym_identifier] = ACTIONS(3975), + [anon_sym_LPAREN2] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(3001), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2983), + [anon_sym_AMP] = ACTIONS(3003), [anon_sym___extension__] = ACTIONS(67), [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(3985), - [anon_sym_COLON_COLON] = ACTIONS(3971), + [anon_sym_using] = ACTIONS(4005), + [anon_sym_COLON_COLON] = ACTIONS(3979), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), @@ -160480,7 +162983,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2995), + [anon_sym_LBRACK] = ACTIONS(3015), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -160490,7 +162993,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread_local] = ACTIONS(63), [anon_sym___thread] = ACTIONS(63), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(3987), + [anon_sym_constexpr] = ACTIONS(3661), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -160503,7 +163006,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2999), + [sym_primitive_type] = ACTIONS(3019), [anon_sym_enum] = ACTIONS(73), [anon_sym_class] = ACTIONS(75), [anon_sym_struct] = ACTIONS(77), @@ -160513,81 +163016,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_decltype] = ACTIONS(127), [anon_sym_explicit] = ACTIONS(129), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(3989), + [anon_sym_template] = ACTIONS(3663), [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(3991), - [anon_sym_concept] = ACTIONS(337), - [anon_sym_requires] = ACTIONS(3975), + [anon_sym_friend] = ACTIONS(3665), + [anon_sym_concept] = ACTIONS(4007), + [anon_sym_requires] = ACTIONS(3987), }, - [836] = { - [sym_function_definition] = STATE(704), - [sym_declaration] = STATE(704), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(4658), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(3120), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_call_modifier] = STATE(1912), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6174), - [sym_array_declarator] = STATE(5998), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2729), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym__empty_declaration] = STATE(704), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym_explicit_function_specifier] = STATE(1752), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(704), - [sym_operator_cast] = STATE(6793), - [sym__constructor_specifiers] = STATE(1752), - [sym_operator_cast_definition] = STATE(704), - [sym_operator_cast_declaration] = STATE(704), - [sym_constructor_or_destructor_definition] = STATE(704), - [sym_constructor_or_destructor_declaration] = STATE(704), - [sym_friend_declaration] = STATE(704), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(2406), - [sym_template_function] = STATE(5998), - [sym_alias_declaration] = STATE(704), - [sym_concept_definition] = STATE(704), - [sym_requires_clause] = STATE(843), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5462), - [sym_qualified_identifier] = STATE(5998), - [sym_qualified_type_identifier] = STATE(3015), - [sym_qualified_operator_cast_identifier] = STATE(6793), - [sym_operator_name] = STATE(5998), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1752), - [sym_identifier] = ACTIONS(3967), - [anon_sym_LPAREN2] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2979), - [anon_sym_STAR] = ACTIONS(2981), + [852] = { + [sym_function_definition] = STATE(714), + [sym_declaration] = STATE(714), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(4774), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(3211), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_call_modifier] = STATE(1965), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6327), + [sym_array_declarator] = STATE(6145), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2749), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym__empty_declaration] = STATE(714), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym_explicit_function_specifier] = STATE(1847), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(714), + [sym_operator_cast] = STATE(6933), + [sym__constructor_specifiers] = STATE(1847), + [sym_operator_cast_definition] = STATE(714), + [sym_operator_cast_declaration] = STATE(714), + [sym_constructor_or_destructor_definition] = STATE(714), + [sym_constructor_or_destructor_declaration] = STATE(714), + [sym_friend_declaration] = STATE(714), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(2439), + [sym_template_function] = STATE(6145), + [sym_alias_declaration] = STATE(714), + [sym_concept_definition] = STATE(714), + [sym_requires_clause] = STATE(871), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5553), + [sym_qualified_identifier] = STATE(6145), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6933), + [sym_operator_name] = STATE(6145), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1847), + [sym_identifier] = ACTIONS(3975), + [anon_sym_LPAREN2] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(3001), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2983), + [anon_sym_AMP] = ACTIONS(3003), [anon_sym___extension__] = ACTIONS(67), [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(3993), - [anon_sym_COLON_COLON] = ACTIONS(3971), + [anon_sym_using] = ACTIONS(4009), + [anon_sym_COLON_COLON] = ACTIONS(3979), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), @@ -160601,7 +163104,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2995), + [anon_sym_LBRACK] = ACTIONS(3015), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -160611,7 +163114,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread_local] = ACTIONS(63), [anon_sym___thread] = ACTIONS(63), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(3995), + [anon_sym_constexpr] = ACTIONS(4011), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -160624,7 +163127,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2999), + [sym_primitive_type] = ACTIONS(3019), [anon_sym_enum] = ACTIONS(73), [anon_sym_class] = ACTIONS(75), [anon_sym_struct] = ACTIONS(77), @@ -160634,81 +163137,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_decltype] = ACTIONS(127), [anon_sym_explicit] = ACTIONS(129), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(3997), + [anon_sym_template] = ACTIONS(4013), [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(3999), + [anon_sym_friend] = ACTIONS(4015), [anon_sym_concept] = ACTIONS(934), - [anon_sym_requires] = ACTIONS(3975), + [anon_sym_requires] = ACTIONS(3987), }, - [837] = { - [sym_function_definition] = STATE(784), - [sym_declaration] = STATE(784), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(4599), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(3120), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_call_modifier] = STATE(1924), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6242), - [sym_array_declarator] = STATE(5998), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), + [853] = { + [sym_function_definition] = STATE(1778), + [sym_declaration] = STATE(1778), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(4828), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(3211), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_call_modifier] = STATE(1968), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6303), + [sym_array_declarator] = STATE(6145), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), [sym_type_specifier] = STATE(2758), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym__empty_declaration] = STATE(784), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym_explicit_function_specifier] = STATE(1720), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(784), - [sym_operator_cast] = STATE(6799), - [sym__constructor_specifiers] = STATE(1720), - [sym_operator_cast_definition] = STATE(784), - [sym_operator_cast_declaration] = STATE(784), - [sym_constructor_or_destructor_definition] = STATE(784), - [sym_constructor_or_destructor_declaration] = STATE(784), - [sym_friend_declaration] = STATE(784), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(2406), - [sym_template_function] = STATE(5998), - [sym_alias_declaration] = STATE(784), - [sym_concept_definition] = STATE(784), - [sym_requires_clause] = STATE(850), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5462), - [sym_qualified_identifier] = STATE(5998), - [sym_qualified_type_identifier] = STATE(3015), - [sym_qualified_operator_cast_identifier] = STATE(6799), - [sym_operator_name] = STATE(5998), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1720), - [sym_identifier] = ACTIONS(3967), - [anon_sym_LPAREN2] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2979), - [anon_sym_STAR] = ACTIONS(2981), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym__empty_declaration] = STATE(1778), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym_explicit_function_specifier] = STATE(1845), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(1778), + [sym_operator_cast] = STATE(6890), + [sym__constructor_specifiers] = STATE(1845), + [sym_operator_cast_definition] = STATE(1778), + [sym_operator_cast_declaration] = STATE(1778), + [sym_constructor_or_destructor_definition] = STATE(1778), + [sym_constructor_or_destructor_declaration] = STATE(1778), + [sym_friend_declaration] = STATE(1778), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(2439), + [sym_template_function] = STATE(6145), + [sym_alias_declaration] = STATE(1778), + [sym_concept_definition] = STATE(1778), + [sym_requires_clause] = STATE(873), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5553), + [sym_qualified_identifier] = STATE(6145), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6890), + [sym_operator_name] = STATE(6145), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1845), + [sym_identifier] = ACTIONS(3975), + [anon_sym_LPAREN2] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(3001), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2983), + [anon_sym_AMP] = ACTIONS(3003), [anon_sym___extension__] = ACTIONS(67), [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(4001), - [anon_sym_COLON_COLON] = ACTIONS(3971), + [anon_sym_using] = ACTIONS(4017), + [anon_sym_COLON_COLON] = ACTIONS(3979), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), @@ -160722,7 +163225,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2995), + [anon_sym_LBRACK] = ACTIONS(3015), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -160732,7 +163235,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread_local] = ACTIONS(63), [anon_sym___thread] = ACTIONS(63), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(4003), + [anon_sym_constexpr] = ACTIONS(3017), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -160745,7 +163248,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2999), + [sym_primitive_type] = ACTIONS(3019), [anon_sym_enum] = ACTIONS(73), [anon_sym_class] = ACTIONS(75), [anon_sym_struct] = ACTIONS(77), @@ -160755,81 +163258,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_decltype] = ACTIONS(127), [anon_sym_explicit] = ACTIONS(129), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(4005), + [anon_sym_template] = ACTIONS(3033), [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(4007), - [anon_sym_concept] = ACTIONS(241), - [anon_sym_requires] = ACTIONS(3975), + [anon_sym_friend] = ACTIONS(3035), + [anon_sym_concept] = ACTIONS(4019), + [anon_sym_requires] = ACTIONS(3987), }, - [838] = { - [sym_function_definition] = STATE(648), - [sym_declaration] = STATE(648), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(4748), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(3120), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_call_modifier] = STATE(1925), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6274), - [sym_array_declarator] = STATE(5998), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2748), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym__empty_declaration] = STATE(648), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym_explicit_function_specifier] = STATE(1783), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(648), - [sym_operator_cast] = STATE(6833), - [sym__constructor_specifiers] = STATE(1783), - [sym_operator_cast_definition] = STATE(648), - [sym_operator_cast_declaration] = STATE(648), - [sym_constructor_or_destructor_definition] = STATE(648), - [sym_constructor_or_destructor_declaration] = STATE(648), - [sym_friend_declaration] = STATE(648), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(2406), - [sym_template_function] = STATE(5998), - [sym_alias_declaration] = STATE(648), - [sym_concept_definition] = STATE(648), - [sym_requires_clause] = STATE(847), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5462), - [sym_qualified_identifier] = STATE(5998), - [sym_qualified_type_identifier] = STATE(3015), - [sym_qualified_operator_cast_identifier] = STATE(6833), - [sym_operator_name] = STATE(5998), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1783), - [sym_identifier] = ACTIONS(3967), - [anon_sym_LPAREN2] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2979), - [anon_sym_STAR] = ACTIONS(2981), + [854] = { + [sym_function_definition] = STATE(2163), + [sym_declaration] = STATE(2163), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(4649), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(3211), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_call_modifier] = STATE(1969), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6389), + [sym_array_declarator] = STATE(6145), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2763), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym__empty_declaration] = STATE(2163), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym_explicit_function_specifier] = STATE(1848), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(2163), + [sym_operator_cast] = STATE(6896), + [sym__constructor_specifiers] = STATE(1848), + [sym_operator_cast_definition] = STATE(2163), + [sym_operator_cast_declaration] = STATE(2163), + [sym_constructor_or_destructor_definition] = STATE(2163), + [sym_constructor_or_destructor_declaration] = STATE(2163), + [sym_friend_declaration] = STATE(2163), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(2439), + [sym_template_function] = STATE(6145), + [sym_alias_declaration] = STATE(2163), + [sym_concept_definition] = STATE(2163), + [sym_requires_clause] = STATE(876), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5553), + [sym_qualified_identifier] = STATE(6145), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6896), + [sym_operator_name] = STATE(6145), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1848), + [sym_identifier] = ACTIONS(3975), + [anon_sym_LPAREN2] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(3001), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2983), + [anon_sym_AMP] = ACTIONS(3003), [anon_sym___extension__] = ACTIONS(67), [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(4009), - [anon_sym_COLON_COLON] = ACTIONS(3971), + [anon_sym_using] = ACTIONS(4021), + [anon_sym_COLON_COLON] = ACTIONS(3979), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), @@ -160843,7 +163346,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2995), + [anon_sym_LBRACK] = ACTIONS(3015), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -160853,7 +163356,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread_local] = ACTIONS(63), [anon_sym___thread] = ACTIONS(63), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(4011), + [anon_sym_constexpr] = ACTIONS(3749), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -160866,7 +163369,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2999), + [sym_primitive_type] = ACTIONS(3019), [anon_sym_enum] = ACTIONS(73), [anon_sym_class] = ACTIONS(75), [anon_sym_struct] = ACTIONS(77), @@ -160876,92 +163379,211 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_decltype] = ACTIONS(127), [anon_sym_explicit] = ACTIONS(129), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(4013), + [anon_sym_template] = ACTIONS(3751), [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(4015), - [anon_sym_concept] = ACTIONS(153), - [anon_sym_requires] = ACTIONS(3975), + [anon_sym_friend] = ACTIONS(3753), + [anon_sym_concept] = ACTIONS(4023), + [anon_sym_requires] = ACTIONS(3987), }, - [839] = { - [sym_type_qualifier] = STATE(841), - [sym_alignas_qualifier] = STATE(1868), - [sym_expression] = STATE(4715), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3678), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3678), - [sym_call_expression] = STATE(3678), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3678), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3678), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3678), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3678), - [aux_sym_array_declarator_repeat1] = STATE(841), - [sym_identifier] = ACTIONS(3849), - [anon_sym_LPAREN2] = ACTIONS(3893), - [anon_sym_BANG] = ACTIONS(3853), - [anon_sym_TILDE] = ACTIONS(3853), - [anon_sym_DASH] = ACTIONS(3851), - [anon_sym_PLUS] = ACTIONS(3851), - [anon_sym_STAR] = ACTIONS(4017), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(4019), - [anon_sym_COLON_COLON] = ACTIONS(3857), + [855] = { + [sym_function_definition] = STATE(2183), + [sym_declaration] = STATE(2183), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(4798), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(3211), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_call_modifier] = STATE(1967), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6293), + [sym_array_declarator] = STATE(6145), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2755), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym__empty_declaration] = STATE(2183), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym_explicit_function_specifier] = STATE(1759), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(2183), + [sym_operator_cast] = STATE(6942), + [sym__constructor_specifiers] = STATE(1759), + [sym_operator_cast_definition] = STATE(2183), + [sym_operator_cast_declaration] = STATE(2183), + [sym_constructor_or_destructor_definition] = STATE(2183), + [sym_constructor_or_destructor_declaration] = STATE(2183), + [sym_friend_declaration] = STATE(2183), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(2439), + [sym_template_function] = STATE(6145), + [sym_alias_declaration] = STATE(2183), + [sym_concept_definition] = STATE(2183), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5553), + [sym_qualified_identifier] = STATE(6145), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6942), + [sym_operator_name] = STATE(6145), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1759), + [sym_identifier] = ACTIONS(3975), + [anon_sym_LPAREN2] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(3001), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3003), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(4005), + [anon_sym_COLON_COLON] = ACTIONS(3979), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3015), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(3661), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(69), + [anon_sym__Alignas] = ACTIONS(69), + [sym_primitive_type] = ACTIONS(3019), + [anon_sym_enum] = ACTIONS(73), + [anon_sym_class] = ACTIONS(75), + [anon_sym_struct] = ACTIONS(77), + [anon_sym_union] = ACTIONS(79), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(125), + [anon_sym_decltype] = ACTIONS(127), + [anon_sym_explicit] = ACTIONS(129), + [anon_sym_typename] = ACTIONS(131), + [anon_sym_template] = ACTIONS(3663), + [anon_sym_operator] = ACTIONS(141), + [anon_sym_friend] = ACTIONS(3665), + [anon_sym_concept] = ACTIONS(4007), + }, + [856] = { + [sym_type_qualifier] = STATE(879), + [sym_alignas_qualifier] = STATE(1866), + [sym_expression] = STATE(4820), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3728), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3728), + [sym_call_expression] = STATE(3728), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3728), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3728), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3728), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3728), + [aux_sym_array_declarator_repeat1] = STATE(879), + [sym_identifier] = ACTIONS(3883), + [anon_sym_LPAREN2] = ACTIONS(3901), + [anon_sym_BANG] = ACTIONS(3887), + [anon_sym_TILDE] = ACTIONS(3887), + [anon_sym_DASH] = ACTIONS(3885), + [anon_sym_PLUS] = ACTIONS(3885), + [anon_sym_STAR] = ACTIONS(4025), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(4027), + [anon_sym_COLON_COLON] = ACTIONS(3891), [anon_sym_LBRACK] = ACTIONS(2020), - [anon_sym_static] = ACTIONS(4021), - [anon_sym_RBRACK] = ACTIONS(4023), - [anon_sym_const] = ACTIONS(4025), - [anon_sym_constexpr] = ACTIONS(4025), - [anon_sym_volatile] = ACTIONS(4025), - [anon_sym_restrict] = ACTIONS(4025), - [anon_sym___restrict__] = ACTIONS(4025), - [anon_sym__Atomic] = ACTIONS(4025), - [anon_sym__Noreturn] = ACTIONS(4025), - [anon_sym_noreturn] = ACTIONS(4025), - [anon_sym__Nonnull] = ACTIONS(4025), - [anon_sym_mutable] = ACTIONS(4025), - [anon_sym_constinit] = ACTIONS(4025), - [anon_sym_consteval] = ACTIONS(4025), - [anon_sym_alignas] = ACTIONS(4027), - [anon_sym__Alignas] = ACTIONS(4027), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3851), - [anon_sym_compl] = ACTIONS(3851), - [anon_sym_DASH_DASH] = ACTIONS(3897), - [anon_sym_PLUS_PLUS] = ACTIONS(3897), - [anon_sym_sizeof] = ACTIONS(3859), + [anon_sym_static] = ACTIONS(4029), + [anon_sym_RBRACK] = ACTIONS(4031), + [anon_sym_const] = ACTIONS(4033), + [anon_sym_constexpr] = ACTIONS(4033), + [anon_sym_volatile] = ACTIONS(4033), + [anon_sym_restrict] = ACTIONS(4033), + [anon_sym___restrict__] = ACTIONS(4033), + [anon_sym__Atomic] = ACTIONS(4033), + [anon_sym__Noreturn] = ACTIONS(4033), + [anon_sym_noreturn] = ACTIONS(4033), + [anon_sym__Nonnull] = ACTIONS(4033), + [anon_sym_mutable] = ACTIONS(4033), + [anon_sym_constinit] = ACTIONS(4033), + [anon_sym_consteval] = ACTIONS(4033), + [anon_sym_alignas] = ACTIONS(4035), + [anon_sym__Alignas] = ACTIONS(4035), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3885), + [anon_sym_compl] = ACTIONS(3885), + [anon_sym_DASH_DASH] = ACTIONS(3905), + [anon_sym_PLUS_PLUS] = ACTIONS(3905), + [anon_sym_sizeof] = ACTIONS(3893), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -160989,98 +163611,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3861), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3895), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3863), - [anon_sym_new] = ACTIONS(3865), + [anon_sym_co_await] = ACTIONS(3897), + [anon_sym_new] = ACTIONS(3873), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [840] = { - [sym_type_qualifier] = STATE(859), - [sym_alignas_qualifier] = STATE(1868), - [sym_expression] = STATE(4619), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3678), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3678), - [sym_call_expression] = STATE(3678), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3678), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3678), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3678), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3678), - [aux_sym_array_declarator_repeat1] = STATE(859), - [sym_identifier] = ACTIONS(3849), - [anon_sym_LPAREN2] = ACTIONS(3893), - [anon_sym_BANG] = ACTIONS(3853), - [anon_sym_TILDE] = ACTIONS(3853), - [anon_sym_DASH] = ACTIONS(3851), - [anon_sym_PLUS] = ACTIONS(3851), - [anon_sym_STAR] = ACTIONS(4029), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(4019), - [anon_sym_COLON_COLON] = ACTIONS(3857), + [857] = { + [sym_type_qualifier] = STATE(870), + [sym_alignas_qualifier] = STATE(1866), + [sym_expression] = STATE(4770), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3728), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3728), + [sym_call_expression] = STATE(3728), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3728), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3728), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3728), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3728), + [aux_sym_array_declarator_repeat1] = STATE(870), + [sym_identifier] = ACTIONS(3883), + [anon_sym_LPAREN2] = ACTIONS(3901), + [anon_sym_BANG] = ACTIONS(3887), + [anon_sym_TILDE] = ACTIONS(3887), + [anon_sym_DASH] = ACTIONS(3885), + [anon_sym_PLUS] = ACTIONS(3885), + [anon_sym_STAR] = ACTIONS(4037), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(4027), + [anon_sym_COLON_COLON] = ACTIONS(3891), [anon_sym_LBRACK] = ACTIONS(2020), - [anon_sym_static] = ACTIONS(4031), - [anon_sym_RBRACK] = ACTIONS(4033), - [anon_sym_const] = ACTIONS(4025), - [anon_sym_constexpr] = ACTIONS(4025), - [anon_sym_volatile] = ACTIONS(4025), - [anon_sym_restrict] = ACTIONS(4025), - [anon_sym___restrict__] = ACTIONS(4025), - [anon_sym__Atomic] = ACTIONS(4025), - [anon_sym__Noreturn] = ACTIONS(4025), - [anon_sym_noreturn] = ACTIONS(4025), - [anon_sym__Nonnull] = ACTIONS(4025), - [anon_sym_mutable] = ACTIONS(4025), - [anon_sym_constinit] = ACTIONS(4025), - [anon_sym_consteval] = ACTIONS(4025), - [anon_sym_alignas] = ACTIONS(4027), - [anon_sym__Alignas] = ACTIONS(4027), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3851), - [anon_sym_compl] = ACTIONS(3851), - [anon_sym_DASH_DASH] = ACTIONS(3897), - [anon_sym_PLUS_PLUS] = ACTIONS(3897), - [anon_sym_sizeof] = ACTIONS(3859), + [anon_sym_static] = ACTIONS(4039), + [anon_sym_RBRACK] = ACTIONS(4041), + [anon_sym_const] = ACTIONS(4033), + [anon_sym_constexpr] = ACTIONS(4033), + [anon_sym_volatile] = ACTIONS(4033), + [anon_sym_restrict] = ACTIONS(4033), + [anon_sym___restrict__] = ACTIONS(4033), + [anon_sym__Atomic] = ACTIONS(4033), + [anon_sym__Noreturn] = ACTIONS(4033), + [anon_sym_noreturn] = ACTIONS(4033), + [anon_sym__Nonnull] = ACTIONS(4033), + [anon_sym_mutable] = ACTIONS(4033), + [anon_sym_constinit] = ACTIONS(4033), + [anon_sym_consteval] = ACTIONS(4033), + [anon_sym_alignas] = ACTIONS(4035), + [anon_sym__Alignas] = ACTIONS(4035), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3885), + [anon_sym_compl] = ACTIONS(3885), + [anon_sym_DASH_DASH] = ACTIONS(3905), + [anon_sym_PLUS_PLUS] = ACTIONS(3905), + [anon_sym_sizeof] = ACTIONS(3893), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -161108,98 +163730,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3861), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3895), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3863), - [anon_sym_new] = ACTIONS(3865), + [anon_sym_co_await] = ACTIONS(3897), + [anon_sym_new] = ACTIONS(3873), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [841] = { - [sym_type_qualifier] = STATE(1698), - [sym_alignas_qualifier] = STATE(1868), - [sym_expression] = STATE(4727), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3678), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3678), - [sym_call_expression] = STATE(3678), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3678), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3678), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3678), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3678), - [aux_sym_array_declarator_repeat1] = STATE(1698), - [sym_identifier] = ACTIONS(3849), - [anon_sym_LPAREN2] = ACTIONS(3893), - [anon_sym_BANG] = ACTIONS(3853), - [anon_sym_TILDE] = ACTIONS(3853), - [anon_sym_DASH] = ACTIONS(3851), - [anon_sym_PLUS] = ACTIONS(3851), - [anon_sym_STAR] = ACTIONS(4035), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(4019), - [anon_sym_COLON_COLON] = ACTIONS(3857), + [858] = { + [sym_type_qualifier] = STATE(1716), + [sym_alignas_qualifier] = STATE(1866), + [sym_expression] = STATE(4651), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3728), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3728), + [sym_call_expression] = STATE(3728), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3728), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3728), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3728), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3728), + [aux_sym_array_declarator_repeat1] = STATE(1716), + [sym_identifier] = ACTIONS(3883), + [anon_sym_LPAREN2] = ACTIONS(3901), + [anon_sym_BANG] = ACTIONS(3887), + [anon_sym_TILDE] = ACTIONS(3887), + [anon_sym_DASH] = ACTIONS(3885), + [anon_sym_PLUS] = ACTIONS(3885), + [anon_sym_STAR] = ACTIONS(4043), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(4027), + [anon_sym_COLON_COLON] = ACTIONS(3891), [anon_sym_LBRACK] = ACTIONS(2020), - [anon_sym_static] = ACTIONS(4037), - [anon_sym_RBRACK] = ACTIONS(4039), - [anon_sym_const] = ACTIONS(4025), - [anon_sym_constexpr] = ACTIONS(4025), - [anon_sym_volatile] = ACTIONS(4025), - [anon_sym_restrict] = ACTIONS(4025), - [anon_sym___restrict__] = ACTIONS(4025), - [anon_sym__Atomic] = ACTIONS(4025), - [anon_sym__Noreturn] = ACTIONS(4025), - [anon_sym_noreturn] = ACTIONS(4025), - [anon_sym__Nonnull] = ACTIONS(4025), - [anon_sym_mutable] = ACTIONS(4025), - [anon_sym_constinit] = ACTIONS(4025), - [anon_sym_consteval] = ACTIONS(4025), - [anon_sym_alignas] = ACTIONS(4027), - [anon_sym__Alignas] = ACTIONS(4027), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3851), - [anon_sym_compl] = ACTIONS(3851), - [anon_sym_DASH_DASH] = ACTIONS(3897), - [anon_sym_PLUS_PLUS] = ACTIONS(3897), - [anon_sym_sizeof] = ACTIONS(3859), + [anon_sym_static] = ACTIONS(4045), + [anon_sym_RBRACK] = ACTIONS(4047), + [anon_sym_const] = ACTIONS(4033), + [anon_sym_constexpr] = ACTIONS(4033), + [anon_sym_volatile] = ACTIONS(4033), + [anon_sym_restrict] = ACTIONS(4033), + [anon_sym___restrict__] = ACTIONS(4033), + [anon_sym__Atomic] = ACTIONS(4033), + [anon_sym__Noreturn] = ACTIONS(4033), + [anon_sym_noreturn] = ACTIONS(4033), + [anon_sym__Nonnull] = ACTIONS(4033), + [anon_sym_mutable] = ACTIONS(4033), + [anon_sym_constinit] = ACTIONS(4033), + [anon_sym_consteval] = ACTIONS(4033), + [anon_sym_alignas] = ACTIONS(4035), + [anon_sym__Alignas] = ACTIONS(4035), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3885), + [anon_sym_compl] = ACTIONS(3885), + [anon_sym_DASH_DASH] = ACTIONS(3905), + [anon_sym_PLUS_PLUS] = ACTIONS(3905), + [anon_sym_sizeof] = ACTIONS(3893), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -161227,98 +163849,336 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3861), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3895), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3863), - [anon_sym_new] = ACTIONS(3865), + [anon_sym_co_await] = ACTIONS(3897), + [anon_sym_new] = ACTIONS(3873), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [842] = { - [sym_type_qualifier] = STATE(858), - [sym_alignas_qualifier] = STATE(1868), - [sym_expression] = STATE(4698), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3678), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3678), - [sym_call_expression] = STATE(3678), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3678), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3678), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3678), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3678), - [aux_sym_array_declarator_repeat1] = STATE(858), - [sym_identifier] = ACTIONS(3849), - [anon_sym_LPAREN2] = ACTIONS(3893), - [anon_sym_BANG] = ACTIONS(3853), - [anon_sym_TILDE] = ACTIONS(3853), - [anon_sym_DASH] = ACTIONS(3851), - [anon_sym_PLUS] = ACTIONS(3851), - [anon_sym_STAR] = ACTIONS(4041), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(4019), - [anon_sym_COLON_COLON] = ACTIONS(3857), + [859] = { + [sym_identifier] = ACTIONS(4049), + [anon_sym_LPAREN2] = ACTIONS(4052), + [anon_sym_BANG] = ACTIONS(4055), + [anon_sym_TILDE] = ACTIONS(4052), + [anon_sym_DASH] = ACTIONS(4057), + [anon_sym_PLUS] = ACTIONS(4057), + [anon_sym_STAR] = ACTIONS(4052), + [anon_sym_AMP_AMP] = ACTIONS(4059), + [anon_sym_AMP] = ACTIONS(4049), + [anon_sym_SEMI] = ACTIONS(4055), + [anon_sym___extension__] = ACTIONS(4049), + [anon_sym_virtual] = ACTIONS(4061), + [anon_sym_extern] = ACTIONS(4061), + [anon_sym___attribute__] = ACTIONS(4061), + [anon_sym___attribute] = ACTIONS(4061), + [anon_sym_using] = ACTIONS(4057), + [anon_sym_COLON_COLON] = ACTIONS(4052), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4052), + [anon_sym___declspec] = ACTIONS(4061), + [anon_sym___based] = ACTIONS(4061), + [anon_sym_LBRACE] = ACTIONS(4055), + [anon_sym_signed] = ACTIONS(4061), + [anon_sym_unsigned] = ACTIONS(4061), + [anon_sym_long] = ACTIONS(4061), + [anon_sym_short] = ACTIONS(4061), + [anon_sym_LBRACK] = ACTIONS(4049), + [anon_sym_static] = ACTIONS(4061), + [anon_sym_register] = ACTIONS(4061), + [anon_sym_inline] = ACTIONS(4061), + [anon_sym___inline] = ACTIONS(4061), + [anon_sym___inline__] = ACTIONS(4061), + [anon_sym___forceinline] = ACTIONS(4061), + [anon_sym_thread_local] = ACTIONS(4061), + [anon_sym___thread] = ACTIONS(4061), + [anon_sym_const] = ACTIONS(4061), + [anon_sym_constexpr] = ACTIONS(4061), + [anon_sym_volatile] = ACTIONS(4061), + [anon_sym_restrict] = ACTIONS(4061), + [anon_sym___restrict__] = ACTIONS(4061), + [anon_sym__Atomic] = ACTIONS(4061), + [anon_sym__Noreturn] = ACTIONS(4061), + [anon_sym_noreturn] = ACTIONS(4061), + [anon_sym__Nonnull] = ACTIONS(4061), + [anon_sym_mutable] = ACTIONS(4061), + [anon_sym_constinit] = ACTIONS(4061), + [anon_sym_consteval] = ACTIONS(4061), + [anon_sym_alignas] = ACTIONS(4061), + [anon_sym__Alignas] = ACTIONS(4061), + [sym_primitive_type] = ACTIONS(4049), + [anon_sym_enum] = ACTIONS(4061), + [anon_sym_class] = ACTIONS(4061), + [anon_sym_struct] = ACTIONS(4061), + [anon_sym_union] = ACTIONS(4061), + [anon_sym_if] = ACTIONS(4057), + [anon_sym_switch] = ACTIONS(4057), + [anon_sym_case] = ACTIONS(4057), + [anon_sym_default] = ACTIONS(4057), + [anon_sym_while] = ACTIONS(4057), + [anon_sym_do] = ACTIONS(4057), + [anon_sym_for] = ACTIONS(4057), + [anon_sym_return] = ACTIONS(4057), + [anon_sym_break] = ACTIONS(4057), + [anon_sym_continue] = ACTIONS(4057), + [anon_sym_goto] = ACTIONS(4057), + [anon_sym___try] = ACTIONS(4057), + [anon_sym___leave] = ACTIONS(4057), + [anon_sym_not] = ACTIONS(4057), + [anon_sym_compl] = ACTIONS(4057), + [anon_sym_DASH_DASH] = ACTIONS(4055), + [anon_sym_PLUS_PLUS] = ACTIONS(4055), + [anon_sym_sizeof] = ACTIONS(4057), + [anon_sym___alignof__] = ACTIONS(4057), + [anon_sym___alignof] = ACTIONS(4057), + [anon_sym__alignof] = ACTIONS(4057), + [anon_sym_alignof] = ACTIONS(4057), + [anon_sym__Alignof] = ACTIONS(4057), + [anon_sym_offsetof] = ACTIONS(4057), + [anon_sym__Generic] = ACTIONS(4057), + [anon_sym_asm] = ACTIONS(4057), + [anon_sym___asm__] = ACTIONS(4057), + [anon_sym___asm] = ACTIONS(4057), + [sym_number_literal] = ACTIONS(4055), + [anon_sym_L_SQUOTE] = ACTIONS(4055), + [anon_sym_u_SQUOTE] = ACTIONS(4055), + [anon_sym_U_SQUOTE] = ACTIONS(4055), + [anon_sym_u8_SQUOTE] = ACTIONS(4055), + [anon_sym_SQUOTE] = ACTIONS(4055), + [anon_sym_L_DQUOTE] = ACTIONS(4055), + [anon_sym_u_DQUOTE] = ACTIONS(4055), + [anon_sym_U_DQUOTE] = ACTIONS(4055), + [anon_sym_u8_DQUOTE] = ACTIONS(4055), + [anon_sym_DQUOTE] = ACTIONS(4055), + [sym_true] = ACTIONS(4057), + [sym_false] = ACTIONS(4057), + [anon_sym_NULL] = ACTIONS(4057), + [anon_sym_nullptr] = ACTIONS(4057), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4061), + [anon_sym_decltype] = ACTIONS(4049), + [anon_sym_explicit] = ACTIONS(4061), + [anon_sym_typename] = ACTIONS(4061), + [anon_sym_template] = ACTIONS(4049), + [anon_sym_operator] = ACTIONS(4061), + [anon_sym_try] = ACTIONS(4057), + [anon_sym_delete] = ACTIONS(4057), + [anon_sym_throw] = ACTIONS(4057), + [anon_sym_co_return] = ACTIONS(4057), + [anon_sym_co_yield] = ACTIONS(4057), + [anon_sym_R_DQUOTE] = ACTIONS(4055), + [anon_sym_LR_DQUOTE] = ACTIONS(4055), + [anon_sym_uR_DQUOTE] = ACTIONS(4055), + [anon_sym_UR_DQUOTE] = ACTIONS(4055), + [anon_sym_u8R_DQUOTE] = ACTIONS(4055), + [anon_sym_co_await] = ACTIONS(4057), + [anon_sym_new] = ACTIONS(4057), + [anon_sym_requires] = ACTIONS(4057), + [sym_this] = ACTIONS(4057), + }, + [860] = { + [sym_function_definition] = STATE(328), + [sym_declaration] = STATE(328), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(4710), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(3211), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_call_modifier] = STATE(1963), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6387), + [sym_array_declarator] = STATE(6145), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2784), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym__empty_declaration] = STATE(328), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym_explicit_function_specifier] = STATE(1838), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(328), + [sym_operator_cast] = STATE(6927), + [sym__constructor_specifiers] = STATE(1838), + [sym_operator_cast_definition] = STATE(328), + [sym_operator_cast_declaration] = STATE(328), + [sym_constructor_or_destructor_definition] = STATE(328), + [sym_constructor_or_destructor_declaration] = STATE(328), + [sym_friend_declaration] = STATE(328), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(2439), + [sym_template_function] = STATE(6145), + [sym_alias_declaration] = STATE(328), + [sym_concept_definition] = STATE(328), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5553), + [sym_qualified_identifier] = STATE(6145), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6927), + [sym_operator_name] = STATE(6145), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1838), + [sym_identifier] = ACTIONS(3975), + [anon_sym_LPAREN2] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(3001), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3003), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(3997), + [anon_sym_COLON_COLON] = ACTIONS(3979), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3015), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(3999), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(69), + [anon_sym__Alignas] = ACTIONS(69), + [sym_primitive_type] = ACTIONS(3019), + [anon_sym_enum] = ACTIONS(73), + [anon_sym_class] = ACTIONS(75), + [anon_sym_struct] = ACTIONS(77), + [anon_sym_union] = ACTIONS(79), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(125), + [anon_sym_decltype] = ACTIONS(127), + [anon_sym_explicit] = ACTIONS(129), + [anon_sym_typename] = ACTIONS(131), + [anon_sym_template] = ACTIONS(4001), + [anon_sym_operator] = ACTIONS(141), + [anon_sym_friend] = ACTIONS(4003), + [anon_sym_concept] = ACTIONS(337), + }, + [861] = { + [sym_type_qualifier] = STATE(863), + [sym_alignas_qualifier] = STATE(1866), + [sym_expression] = STATE(4663), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3728), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3728), + [sym_call_expression] = STATE(3728), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3728), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3728), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3728), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3728), + [aux_sym_array_declarator_repeat1] = STATE(863), + [sym_identifier] = ACTIONS(3883), + [anon_sym_LPAREN2] = ACTIONS(3901), + [anon_sym_BANG] = ACTIONS(3887), + [anon_sym_TILDE] = ACTIONS(3887), + [anon_sym_DASH] = ACTIONS(3885), + [anon_sym_PLUS] = ACTIONS(3885), + [anon_sym_STAR] = ACTIONS(4063), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(4027), + [anon_sym_COLON_COLON] = ACTIONS(3891), [anon_sym_LBRACK] = ACTIONS(2020), - [anon_sym_static] = ACTIONS(4043), - [anon_sym_RBRACK] = ACTIONS(4045), - [anon_sym_const] = ACTIONS(4025), - [anon_sym_constexpr] = ACTIONS(4025), - [anon_sym_volatile] = ACTIONS(4025), - [anon_sym_restrict] = ACTIONS(4025), - [anon_sym___restrict__] = ACTIONS(4025), - [anon_sym__Atomic] = ACTIONS(4025), - [anon_sym__Noreturn] = ACTIONS(4025), - [anon_sym_noreturn] = ACTIONS(4025), - [anon_sym__Nonnull] = ACTIONS(4025), - [anon_sym_mutable] = ACTIONS(4025), - [anon_sym_constinit] = ACTIONS(4025), - [anon_sym_consteval] = ACTIONS(4025), - [anon_sym_alignas] = ACTIONS(4027), - [anon_sym__Alignas] = ACTIONS(4027), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3851), - [anon_sym_compl] = ACTIONS(3851), - [anon_sym_DASH_DASH] = ACTIONS(3897), - [anon_sym_PLUS_PLUS] = ACTIONS(3897), - [anon_sym_sizeof] = ACTIONS(3859), + [anon_sym_static] = ACTIONS(4065), + [anon_sym_RBRACK] = ACTIONS(4067), + [anon_sym_const] = ACTIONS(4033), + [anon_sym_constexpr] = ACTIONS(4033), + [anon_sym_volatile] = ACTIONS(4033), + [anon_sym_restrict] = ACTIONS(4033), + [anon_sym___restrict__] = ACTIONS(4033), + [anon_sym__Atomic] = ACTIONS(4033), + [anon_sym__Noreturn] = ACTIONS(4033), + [anon_sym_noreturn] = ACTIONS(4033), + [anon_sym__Nonnull] = ACTIONS(4033), + [anon_sym_mutable] = ACTIONS(4033), + [anon_sym_constinit] = ACTIONS(4033), + [anon_sym_consteval] = ACTIONS(4033), + [anon_sym_alignas] = ACTIONS(4035), + [anon_sym__Alignas] = ACTIONS(4035), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3885), + [anon_sym_compl] = ACTIONS(3885), + [anon_sym_DASH_DASH] = ACTIONS(3905), + [anon_sym_PLUS_PLUS] = ACTIONS(3905), + [anon_sym_sizeof] = ACTIONS(3893), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -161346,86 +164206,562 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3861), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3895), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3863), - [anon_sym_new] = ACTIONS(3865), + [anon_sym_co_await] = ACTIONS(3897), + [anon_sym_new] = ACTIONS(3873), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [843] = { - [sym_function_definition] = STATE(716), - [sym_declaration] = STATE(716), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(4658), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(3120), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_call_modifier] = STATE(1912), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6174), - [sym_array_declarator] = STATE(5998), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2729), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym__empty_declaration] = STATE(716), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym_explicit_function_specifier] = STATE(1752), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(716), - [sym_operator_cast] = STATE(6793), - [sym__constructor_specifiers] = STATE(1752), - [sym_operator_cast_definition] = STATE(716), - [sym_operator_cast_declaration] = STATE(716), - [sym_constructor_or_destructor_definition] = STATE(716), - [sym_constructor_or_destructor_declaration] = STATE(716), - [sym_friend_declaration] = STATE(716), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(2406), - [sym_template_function] = STATE(5998), - [sym_alias_declaration] = STATE(716), - [sym_concept_definition] = STATE(716), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5462), - [sym_qualified_identifier] = STATE(5998), - [sym_qualified_type_identifier] = STATE(3015), - [sym_qualified_operator_cast_identifier] = STATE(6793), - [sym_operator_name] = STATE(5998), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1752), - [sym_identifier] = ACTIONS(3967), - [anon_sym_LPAREN2] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2979), - [anon_sym_STAR] = ACTIONS(2981), + [862] = { + [sym_type_qualifier] = STATE(1716), + [sym_alignas_qualifier] = STATE(1866), + [sym_expression] = STATE(4827), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3728), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3728), + [sym_call_expression] = STATE(3728), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3728), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3728), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3728), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3728), + [aux_sym_array_declarator_repeat1] = STATE(1716), + [sym_identifier] = ACTIONS(3883), + [anon_sym_LPAREN2] = ACTIONS(3901), + [anon_sym_BANG] = ACTIONS(3887), + [anon_sym_TILDE] = ACTIONS(3887), + [anon_sym_DASH] = ACTIONS(3885), + [anon_sym_PLUS] = ACTIONS(3885), + [anon_sym_STAR] = ACTIONS(4069), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(4027), + [anon_sym_COLON_COLON] = ACTIONS(3891), + [anon_sym_LBRACK] = ACTIONS(2020), + [anon_sym_static] = ACTIONS(4045), + [anon_sym_RBRACK] = ACTIONS(4071), + [anon_sym_const] = ACTIONS(4033), + [anon_sym_constexpr] = ACTIONS(4033), + [anon_sym_volatile] = ACTIONS(4033), + [anon_sym_restrict] = ACTIONS(4033), + [anon_sym___restrict__] = ACTIONS(4033), + [anon_sym__Atomic] = ACTIONS(4033), + [anon_sym__Noreturn] = ACTIONS(4033), + [anon_sym_noreturn] = ACTIONS(4033), + [anon_sym__Nonnull] = ACTIONS(4033), + [anon_sym_mutable] = ACTIONS(4033), + [anon_sym_constinit] = ACTIONS(4033), + [anon_sym_consteval] = ACTIONS(4033), + [anon_sym_alignas] = ACTIONS(4035), + [anon_sym__Alignas] = ACTIONS(4035), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3885), + [anon_sym_compl] = ACTIONS(3885), + [anon_sym_DASH_DASH] = ACTIONS(3905), + [anon_sym_PLUS_PLUS] = ACTIONS(3905), + [anon_sym_sizeof] = ACTIONS(3893), + [anon_sym___alignof__] = ACTIONS(107), + [anon_sym___alignof] = ACTIONS(107), + [anon_sym__alignof] = ACTIONS(107), + [anon_sym_alignof] = ACTIONS(107), + [anon_sym__Alignof] = ACTIONS(107), + [anon_sym_offsetof] = ACTIONS(109), + [anon_sym__Generic] = ACTIONS(111), + [anon_sym_asm] = ACTIONS(113), + [anon_sym___asm__] = ACTIONS(113), + [anon_sym___asm] = ACTIONS(113), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(117), + [anon_sym_u_SQUOTE] = ACTIONS(117), + [anon_sym_U_SQUOTE] = ACTIONS(117), + [anon_sym_u8_SQUOTE] = ACTIONS(117), + [anon_sym_SQUOTE] = ACTIONS(117), + [anon_sym_L_DQUOTE] = ACTIONS(119), + [anon_sym_u_DQUOTE] = ACTIONS(119), + [anon_sym_U_DQUOTE] = ACTIONS(119), + [anon_sym_u8_DQUOTE] = ACTIONS(119), + [anon_sym_DQUOTE] = ACTIONS(119), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(123), + [anon_sym_nullptr] = ACTIONS(123), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3895), + [anon_sym_R_DQUOTE] = ACTIONS(159), + [anon_sym_LR_DQUOTE] = ACTIONS(159), + [anon_sym_uR_DQUOTE] = ACTIONS(159), + [anon_sym_UR_DQUOTE] = ACTIONS(159), + [anon_sym_u8R_DQUOTE] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(3897), + [anon_sym_new] = ACTIONS(3873), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), + }, + [863] = { + [sym_type_qualifier] = STATE(1716), + [sym_alignas_qualifier] = STATE(1866), + [sym_expression] = STATE(4680), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3728), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3728), + [sym_call_expression] = STATE(3728), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3728), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3728), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3728), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3728), + [aux_sym_array_declarator_repeat1] = STATE(1716), + [sym_identifier] = ACTIONS(3883), + [anon_sym_LPAREN2] = ACTIONS(3901), + [anon_sym_BANG] = ACTIONS(3887), + [anon_sym_TILDE] = ACTIONS(3887), + [anon_sym_DASH] = ACTIONS(3885), + [anon_sym_PLUS] = ACTIONS(3885), + [anon_sym_STAR] = ACTIONS(4073), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(4027), + [anon_sym_COLON_COLON] = ACTIONS(3891), + [anon_sym_LBRACK] = ACTIONS(2020), + [anon_sym_static] = ACTIONS(4045), + [anon_sym_RBRACK] = ACTIONS(4075), + [anon_sym_const] = ACTIONS(4033), + [anon_sym_constexpr] = ACTIONS(4033), + [anon_sym_volatile] = ACTIONS(4033), + [anon_sym_restrict] = ACTIONS(4033), + [anon_sym___restrict__] = ACTIONS(4033), + [anon_sym__Atomic] = ACTIONS(4033), + [anon_sym__Noreturn] = ACTIONS(4033), + [anon_sym_noreturn] = ACTIONS(4033), + [anon_sym__Nonnull] = ACTIONS(4033), + [anon_sym_mutable] = ACTIONS(4033), + [anon_sym_constinit] = ACTIONS(4033), + [anon_sym_consteval] = ACTIONS(4033), + [anon_sym_alignas] = ACTIONS(4035), + [anon_sym__Alignas] = ACTIONS(4035), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3885), + [anon_sym_compl] = ACTIONS(3885), + [anon_sym_DASH_DASH] = ACTIONS(3905), + [anon_sym_PLUS_PLUS] = ACTIONS(3905), + [anon_sym_sizeof] = ACTIONS(3893), + [anon_sym___alignof__] = ACTIONS(107), + [anon_sym___alignof] = ACTIONS(107), + [anon_sym__alignof] = ACTIONS(107), + [anon_sym_alignof] = ACTIONS(107), + [anon_sym__Alignof] = ACTIONS(107), + [anon_sym_offsetof] = ACTIONS(109), + [anon_sym__Generic] = ACTIONS(111), + [anon_sym_asm] = ACTIONS(113), + [anon_sym___asm__] = ACTIONS(113), + [anon_sym___asm] = ACTIONS(113), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(117), + [anon_sym_u_SQUOTE] = ACTIONS(117), + [anon_sym_U_SQUOTE] = ACTIONS(117), + [anon_sym_u8_SQUOTE] = ACTIONS(117), + [anon_sym_SQUOTE] = ACTIONS(117), + [anon_sym_L_DQUOTE] = ACTIONS(119), + [anon_sym_u_DQUOTE] = ACTIONS(119), + [anon_sym_U_DQUOTE] = ACTIONS(119), + [anon_sym_u8_DQUOTE] = ACTIONS(119), + [anon_sym_DQUOTE] = ACTIONS(119), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(123), + [anon_sym_nullptr] = ACTIONS(123), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3895), + [anon_sym_R_DQUOTE] = ACTIONS(159), + [anon_sym_LR_DQUOTE] = ACTIONS(159), + [anon_sym_uR_DQUOTE] = ACTIONS(159), + [anon_sym_UR_DQUOTE] = ACTIONS(159), + [anon_sym_u8R_DQUOTE] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(3897), + [anon_sym_new] = ACTIONS(3873), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), + }, + [864] = { + [sym_type_qualifier] = STATE(875), + [sym_alignas_qualifier] = STATE(1866), + [sym_expression] = STATE(4754), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3728), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3728), + [sym_call_expression] = STATE(3728), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3728), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3728), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3728), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3728), + [aux_sym_array_declarator_repeat1] = STATE(875), + [sym_identifier] = ACTIONS(3883), + [anon_sym_LPAREN2] = ACTIONS(3901), + [anon_sym_BANG] = ACTIONS(3887), + [anon_sym_TILDE] = ACTIONS(3887), + [anon_sym_DASH] = ACTIONS(3885), + [anon_sym_PLUS] = ACTIONS(3885), + [anon_sym_STAR] = ACTIONS(4077), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(4027), + [anon_sym_COLON_COLON] = ACTIONS(3891), + [anon_sym_LBRACK] = ACTIONS(2020), + [anon_sym_static] = ACTIONS(4079), + [anon_sym_RBRACK] = ACTIONS(4081), + [anon_sym_const] = ACTIONS(4033), + [anon_sym_constexpr] = ACTIONS(4033), + [anon_sym_volatile] = ACTIONS(4033), + [anon_sym_restrict] = ACTIONS(4033), + [anon_sym___restrict__] = ACTIONS(4033), + [anon_sym__Atomic] = ACTIONS(4033), + [anon_sym__Noreturn] = ACTIONS(4033), + [anon_sym_noreturn] = ACTIONS(4033), + [anon_sym__Nonnull] = ACTIONS(4033), + [anon_sym_mutable] = ACTIONS(4033), + [anon_sym_constinit] = ACTIONS(4033), + [anon_sym_consteval] = ACTIONS(4033), + [anon_sym_alignas] = ACTIONS(4035), + [anon_sym__Alignas] = ACTIONS(4035), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3885), + [anon_sym_compl] = ACTIONS(3885), + [anon_sym_DASH_DASH] = ACTIONS(3905), + [anon_sym_PLUS_PLUS] = ACTIONS(3905), + [anon_sym_sizeof] = ACTIONS(3893), + [anon_sym___alignof__] = ACTIONS(107), + [anon_sym___alignof] = ACTIONS(107), + [anon_sym__alignof] = ACTIONS(107), + [anon_sym_alignof] = ACTIONS(107), + [anon_sym__Alignof] = ACTIONS(107), + [anon_sym_offsetof] = ACTIONS(109), + [anon_sym__Generic] = ACTIONS(111), + [anon_sym_asm] = ACTIONS(113), + [anon_sym___asm__] = ACTIONS(113), + [anon_sym___asm] = ACTIONS(113), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(117), + [anon_sym_u_SQUOTE] = ACTIONS(117), + [anon_sym_U_SQUOTE] = ACTIONS(117), + [anon_sym_u8_SQUOTE] = ACTIONS(117), + [anon_sym_SQUOTE] = ACTIONS(117), + [anon_sym_L_DQUOTE] = ACTIONS(119), + [anon_sym_u_DQUOTE] = ACTIONS(119), + [anon_sym_U_DQUOTE] = ACTIONS(119), + [anon_sym_u8_DQUOTE] = ACTIONS(119), + [anon_sym_DQUOTE] = ACTIONS(119), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(123), + [anon_sym_nullptr] = ACTIONS(123), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3895), + [anon_sym_R_DQUOTE] = ACTIONS(159), + [anon_sym_LR_DQUOTE] = ACTIONS(159), + [anon_sym_uR_DQUOTE] = ACTIONS(159), + [anon_sym_UR_DQUOTE] = ACTIONS(159), + [anon_sym_u8R_DQUOTE] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(3897), + [anon_sym_new] = ACTIONS(3873), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), + }, + [865] = { + [sym_type_qualifier] = STATE(872), + [sym_alignas_qualifier] = STATE(1866), + [sym_expression] = STATE(4653), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3728), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3728), + [sym_call_expression] = STATE(3728), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3728), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3728), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3728), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3728), + [aux_sym_array_declarator_repeat1] = STATE(872), + [sym_identifier] = ACTIONS(3883), + [anon_sym_LPAREN2] = ACTIONS(3901), + [anon_sym_BANG] = ACTIONS(3887), + [anon_sym_TILDE] = ACTIONS(3887), + [anon_sym_DASH] = ACTIONS(3885), + [anon_sym_PLUS] = ACTIONS(3885), + [anon_sym_STAR] = ACTIONS(4083), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(4027), + [anon_sym_COLON_COLON] = ACTIONS(3891), + [anon_sym_LBRACK] = ACTIONS(2020), + [anon_sym_static] = ACTIONS(4085), + [anon_sym_RBRACK] = ACTIONS(4087), + [anon_sym_const] = ACTIONS(4033), + [anon_sym_constexpr] = ACTIONS(4033), + [anon_sym_volatile] = ACTIONS(4033), + [anon_sym_restrict] = ACTIONS(4033), + [anon_sym___restrict__] = ACTIONS(4033), + [anon_sym__Atomic] = ACTIONS(4033), + [anon_sym__Noreturn] = ACTIONS(4033), + [anon_sym_noreturn] = ACTIONS(4033), + [anon_sym__Nonnull] = ACTIONS(4033), + [anon_sym_mutable] = ACTIONS(4033), + [anon_sym_constinit] = ACTIONS(4033), + [anon_sym_consteval] = ACTIONS(4033), + [anon_sym_alignas] = ACTIONS(4035), + [anon_sym__Alignas] = ACTIONS(4035), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3885), + [anon_sym_compl] = ACTIONS(3885), + [anon_sym_DASH_DASH] = ACTIONS(3905), + [anon_sym_PLUS_PLUS] = ACTIONS(3905), + [anon_sym_sizeof] = ACTIONS(3893), + [anon_sym___alignof__] = ACTIONS(107), + [anon_sym___alignof] = ACTIONS(107), + [anon_sym__alignof] = ACTIONS(107), + [anon_sym_alignof] = ACTIONS(107), + [anon_sym__Alignof] = ACTIONS(107), + [anon_sym_offsetof] = ACTIONS(109), + [anon_sym__Generic] = ACTIONS(111), + [anon_sym_asm] = ACTIONS(113), + [anon_sym___asm__] = ACTIONS(113), + [anon_sym___asm] = ACTIONS(113), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(117), + [anon_sym_u_SQUOTE] = ACTIONS(117), + [anon_sym_U_SQUOTE] = ACTIONS(117), + [anon_sym_u8_SQUOTE] = ACTIONS(117), + [anon_sym_SQUOTE] = ACTIONS(117), + [anon_sym_L_DQUOTE] = ACTIONS(119), + [anon_sym_u_DQUOTE] = ACTIONS(119), + [anon_sym_U_DQUOTE] = ACTIONS(119), + [anon_sym_u8_DQUOTE] = ACTIONS(119), + [anon_sym_DQUOTE] = ACTIONS(119), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(123), + [anon_sym_nullptr] = ACTIONS(123), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3895), + [anon_sym_R_DQUOTE] = ACTIONS(159), + [anon_sym_LR_DQUOTE] = ACTIONS(159), + [anon_sym_uR_DQUOTE] = ACTIONS(159), + [anon_sym_UR_DQUOTE] = ACTIONS(159), + [anon_sym_u8R_DQUOTE] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(3897), + [anon_sym_new] = ACTIONS(3873), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), + }, + [866] = { + [sym_function_definition] = STATE(696), + [sym_declaration] = STATE(696), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(4646), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(3211), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_call_modifier] = STATE(1956), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6316), + [sym_array_declarator] = STATE(6145), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2764), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym__empty_declaration] = STATE(696), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym_explicit_function_specifier] = STATE(1835), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(696), + [sym_operator_cast] = STATE(6888), + [sym__constructor_specifiers] = STATE(1835), + [sym_operator_cast_definition] = STATE(696), + [sym_operator_cast_declaration] = STATE(696), + [sym_constructor_or_destructor_definition] = STATE(696), + [sym_constructor_or_destructor_declaration] = STATE(696), + [sym_friend_declaration] = STATE(696), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(2439), + [sym_template_function] = STATE(6145), + [sym_alias_declaration] = STATE(696), + [sym_concept_definition] = STATE(696), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5553), + [sym_qualified_identifier] = STATE(6145), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6888), + [sym_operator_name] = STATE(6145), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1835), + [sym_identifier] = ACTIONS(3975), + [anon_sym_LPAREN2] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(3001), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2983), + [anon_sym_AMP] = ACTIONS(3003), [anon_sym___extension__] = ACTIONS(67), [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(3993), - [anon_sym_COLON_COLON] = ACTIONS(3971), + [anon_sym_using] = ACTIONS(3977), + [anon_sym_COLON_COLON] = ACTIONS(3979), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), @@ -161439,7 +164775,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2995), + [anon_sym_LBRACK] = ACTIONS(3015), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -161449,7 +164785,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread_local] = ACTIONS(63), [anon_sym___thread] = ACTIONS(63), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(3995), + [anon_sym_constexpr] = ACTIONS(3981), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -161462,7 +164798,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2999), + [sym_primitive_type] = ACTIONS(3019), [anon_sym_enum] = ACTIONS(73), [anon_sym_class] = ACTIONS(75), [anon_sym_struct] = ACTIONS(77), @@ -161472,91 +164808,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_decltype] = ACTIONS(127), [anon_sym_explicit] = ACTIONS(129), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(3997), + [anon_sym_template] = ACTIONS(3983), [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(3999), - [anon_sym_concept] = ACTIONS(934), + [anon_sym_friend] = ACTIONS(3985), + [anon_sym_concept] = ACTIONS(241), }, - [844] = { - [sym_type_qualifier] = STATE(852), - [sym_alignas_qualifier] = STATE(1868), - [sym_expression] = STATE(4763), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3678), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3678), - [sym_call_expression] = STATE(3678), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3678), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3678), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3678), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3678), - [aux_sym_array_declarator_repeat1] = STATE(852), - [sym_identifier] = ACTIONS(3849), - [anon_sym_LPAREN2] = ACTIONS(3893), - [anon_sym_BANG] = ACTIONS(3853), - [anon_sym_TILDE] = ACTIONS(3853), - [anon_sym_DASH] = ACTIONS(3851), - [anon_sym_PLUS] = ACTIONS(3851), - [anon_sym_STAR] = ACTIONS(4047), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(4019), - [anon_sym_COLON_COLON] = ACTIONS(3857), + [867] = { + [sym_type_qualifier] = STATE(868), + [sym_alignas_qualifier] = STATE(1866), + [sym_expression] = STATE(4671), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3728), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3728), + [sym_call_expression] = STATE(3728), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3728), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3728), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3728), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3728), + [aux_sym_array_declarator_repeat1] = STATE(868), + [sym_identifier] = ACTIONS(3883), + [anon_sym_LPAREN2] = ACTIONS(3901), + [anon_sym_BANG] = ACTIONS(3887), + [anon_sym_TILDE] = ACTIONS(3887), + [anon_sym_DASH] = ACTIONS(3885), + [anon_sym_PLUS] = ACTIONS(3885), + [anon_sym_STAR] = ACTIONS(4089), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(4027), + [anon_sym_COLON_COLON] = ACTIONS(3891), [anon_sym_LBRACK] = ACTIONS(2020), - [anon_sym_static] = ACTIONS(4049), - [anon_sym_RBRACK] = ACTIONS(4051), - [anon_sym_const] = ACTIONS(4025), - [anon_sym_constexpr] = ACTIONS(4025), - [anon_sym_volatile] = ACTIONS(4025), - [anon_sym_restrict] = ACTIONS(4025), - [anon_sym___restrict__] = ACTIONS(4025), - [anon_sym__Atomic] = ACTIONS(4025), - [anon_sym__Noreturn] = ACTIONS(4025), - [anon_sym_noreturn] = ACTIONS(4025), - [anon_sym__Nonnull] = ACTIONS(4025), - [anon_sym_mutable] = ACTIONS(4025), - [anon_sym_constinit] = ACTIONS(4025), - [anon_sym_consteval] = ACTIONS(4025), - [anon_sym_alignas] = ACTIONS(4027), - [anon_sym__Alignas] = ACTIONS(4027), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3851), - [anon_sym_compl] = ACTIONS(3851), - [anon_sym_DASH_DASH] = ACTIONS(3897), - [anon_sym_PLUS_PLUS] = ACTIONS(3897), - [anon_sym_sizeof] = ACTIONS(3859), + [anon_sym_static] = ACTIONS(4091), + [anon_sym_RBRACK] = ACTIONS(4093), + [anon_sym_const] = ACTIONS(4033), + [anon_sym_constexpr] = ACTIONS(4033), + [anon_sym_volatile] = ACTIONS(4033), + [anon_sym_restrict] = ACTIONS(4033), + [anon_sym___restrict__] = ACTIONS(4033), + [anon_sym__Atomic] = ACTIONS(4033), + [anon_sym__Noreturn] = ACTIONS(4033), + [anon_sym_noreturn] = ACTIONS(4033), + [anon_sym__Nonnull] = ACTIONS(4033), + [anon_sym_mutable] = ACTIONS(4033), + [anon_sym_constinit] = ACTIONS(4033), + [anon_sym_consteval] = ACTIONS(4033), + [anon_sym_alignas] = ACTIONS(4035), + [anon_sym__Alignas] = ACTIONS(4035), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3885), + [anon_sym_compl] = ACTIONS(3885), + [anon_sym_DASH_DASH] = ACTIONS(3905), + [anon_sym_PLUS_PLUS] = ACTIONS(3905), + [anon_sym_sizeof] = ACTIONS(3893), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -161584,98 +164920,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3861), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3895), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3863), - [anon_sym_new] = ACTIONS(3865), + [anon_sym_co_await] = ACTIONS(3897), + [anon_sym_new] = ACTIONS(3873), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [845] = { - [sym_type_qualifier] = STATE(1698), - [sym_alignas_qualifier] = STATE(1868), - [sym_expression] = STATE(4657), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3678), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3678), - [sym_call_expression] = STATE(3678), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3678), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3678), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3678), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3678), - [aux_sym_array_declarator_repeat1] = STATE(1698), - [sym_identifier] = ACTIONS(3849), - [anon_sym_LPAREN2] = ACTIONS(3893), - [anon_sym_BANG] = ACTIONS(3853), - [anon_sym_TILDE] = ACTIONS(3853), - [anon_sym_DASH] = ACTIONS(3851), - [anon_sym_PLUS] = ACTIONS(3851), - [anon_sym_STAR] = ACTIONS(4053), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(4019), - [anon_sym_COLON_COLON] = ACTIONS(3857), + [868] = { + [sym_type_qualifier] = STATE(1716), + [sym_alignas_qualifier] = STATE(1866), + [sym_expression] = STATE(4677), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3728), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3728), + [sym_call_expression] = STATE(3728), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3728), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3728), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3728), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3728), + [aux_sym_array_declarator_repeat1] = STATE(1716), + [sym_identifier] = ACTIONS(3883), + [anon_sym_LPAREN2] = ACTIONS(3901), + [anon_sym_BANG] = ACTIONS(3887), + [anon_sym_TILDE] = ACTIONS(3887), + [anon_sym_DASH] = ACTIONS(3885), + [anon_sym_PLUS] = ACTIONS(3885), + [anon_sym_STAR] = ACTIONS(4095), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(4027), + [anon_sym_COLON_COLON] = ACTIONS(3891), [anon_sym_LBRACK] = ACTIONS(2020), - [anon_sym_static] = ACTIONS(4037), - [anon_sym_RBRACK] = ACTIONS(4055), - [anon_sym_const] = ACTIONS(4025), - [anon_sym_constexpr] = ACTIONS(4025), - [anon_sym_volatile] = ACTIONS(4025), - [anon_sym_restrict] = ACTIONS(4025), - [anon_sym___restrict__] = ACTIONS(4025), - [anon_sym__Atomic] = ACTIONS(4025), - [anon_sym__Noreturn] = ACTIONS(4025), - [anon_sym_noreturn] = ACTIONS(4025), - [anon_sym__Nonnull] = ACTIONS(4025), - [anon_sym_mutable] = ACTIONS(4025), - [anon_sym_constinit] = ACTIONS(4025), - [anon_sym_consteval] = ACTIONS(4025), - [anon_sym_alignas] = ACTIONS(4027), - [anon_sym__Alignas] = ACTIONS(4027), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3851), - [anon_sym_compl] = ACTIONS(3851), - [anon_sym_DASH_DASH] = ACTIONS(3897), - [anon_sym_PLUS_PLUS] = ACTIONS(3897), - [anon_sym_sizeof] = ACTIONS(3859), + [anon_sym_static] = ACTIONS(4045), + [anon_sym_RBRACK] = ACTIONS(4097), + [anon_sym_const] = ACTIONS(4033), + [anon_sym_constexpr] = ACTIONS(4033), + [anon_sym_volatile] = ACTIONS(4033), + [anon_sym_restrict] = ACTIONS(4033), + [anon_sym___restrict__] = ACTIONS(4033), + [anon_sym__Atomic] = ACTIONS(4033), + [anon_sym__Noreturn] = ACTIONS(4033), + [anon_sym_noreturn] = ACTIONS(4033), + [anon_sym__Nonnull] = ACTIONS(4033), + [anon_sym_mutable] = ACTIONS(4033), + [anon_sym_constinit] = ACTIONS(4033), + [anon_sym_consteval] = ACTIONS(4033), + [anon_sym_alignas] = ACTIONS(4035), + [anon_sym__Alignas] = ACTIONS(4035), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3885), + [anon_sym_compl] = ACTIONS(3885), + [anon_sym_DASH_DASH] = ACTIONS(3905), + [anon_sym_PLUS_PLUS] = ACTIONS(3905), + [anon_sym_sizeof] = ACTIONS(3893), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -161703,98 +165039,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3861), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3895), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3863), - [anon_sym_new] = ACTIONS(3865), + [anon_sym_co_await] = ACTIONS(3897), + [anon_sym_new] = ACTIONS(3873), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [846] = { - [sym_type_qualifier] = STATE(865), - [sym_alignas_qualifier] = STATE(1868), - [sym_expression] = STATE(4661), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3678), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3678), - [sym_call_expression] = STATE(3678), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3678), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3678), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3678), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3678), - [aux_sym_array_declarator_repeat1] = STATE(865), - [sym_identifier] = ACTIONS(3849), - [anon_sym_LPAREN2] = ACTIONS(3893), - [anon_sym_BANG] = ACTIONS(3853), - [anon_sym_TILDE] = ACTIONS(3853), - [anon_sym_DASH] = ACTIONS(3851), - [anon_sym_PLUS] = ACTIONS(3851), - [anon_sym_STAR] = ACTIONS(4057), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(4019), - [anon_sym_COLON_COLON] = ACTIONS(3857), + [869] = { + [sym_type_qualifier] = STATE(874), + [sym_alignas_qualifier] = STATE(1866), + [sym_expression] = STATE(4662), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3728), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3728), + [sym_call_expression] = STATE(3728), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3728), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3728), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3728), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3728), + [aux_sym_array_declarator_repeat1] = STATE(874), + [sym_identifier] = ACTIONS(3883), + [anon_sym_LPAREN2] = ACTIONS(3901), + [anon_sym_BANG] = ACTIONS(3887), + [anon_sym_TILDE] = ACTIONS(3887), + [anon_sym_DASH] = ACTIONS(3885), + [anon_sym_PLUS] = ACTIONS(3885), + [anon_sym_STAR] = ACTIONS(4099), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(4027), + [anon_sym_COLON_COLON] = ACTIONS(3891), [anon_sym_LBRACK] = ACTIONS(2020), - [anon_sym_static] = ACTIONS(4059), - [anon_sym_RBRACK] = ACTIONS(4061), - [anon_sym_const] = ACTIONS(4025), - [anon_sym_constexpr] = ACTIONS(4025), - [anon_sym_volatile] = ACTIONS(4025), - [anon_sym_restrict] = ACTIONS(4025), - [anon_sym___restrict__] = ACTIONS(4025), - [anon_sym__Atomic] = ACTIONS(4025), - [anon_sym__Noreturn] = ACTIONS(4025), - [anon_sym_noreturn] = ACTIONS(4025), - [anon_sym__Nonnull] = ACTIONS(4025), - [anon_sym_mutable] = ACTIONS(4025), - [anon_sym_constinit] = ACTIONS(4025), - [anon_sym_consteval] = ACTIONS(4025), - [anon_sym_alignas] = ACTIONS(4027), - [anon_sym__Alignas] = ACTIONS(4027), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3851), - [anon_sym_compl] = ACTIONS(3851), - [anon_sym_DASH_DASH] = ACTIONS(3897), - [anon_sym_PLUS_PLUS] = ACTIONS(3897), - [anon_sym_sizeof] = ACTIONS(3859), + [anon_sym_static] = ACTIONS(4101), + [anon_sym_RBRACK] = ACTIONS(4103), + [anon_sym_const] = ACTIONS(4033), + [anon_sym_constexpr] = ACTIONS(4033), + [anon_sym_volatile] = ACTIONS(4033), + [anon_sym_restrict] = ACTIONS(4033), + [anon_sym___restrict__] = ACTIONS(4033), + [anon_sym__Atomic] = ACTIONS(4033), + [anon_sym__Noreturn] = ACTIONS(4033), + [anon_sym_noreturn] = ACTIONS(4033), + [anon_sym__Nonnull] = ACTIONS(4033), + [anon_sym_mutable] = ACTIONS(4033), + [anon_sym_constinit] = ACTIONS(4033), + [anon_sym_consteval] = ACTIONS(4033), + [anon_sym_alignas] = ACTIONS(4035), + [anon_sym__Alignas] = ACTIONS(4035), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3885), + [anon_sym_compl] = ACTIONS(3885), + [anon_sym_DASH_DASH] = ACTIONS(3905), + [anon_sym_PLUS_PLUS] = ACTIONS(3905), + [anon_sym_sizeof] = ACTIONS(3893), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -161822,86 +165158,205 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3861), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3895), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3863), - [anon_sym_new] = ACTIONS(3865), + [anon_sym_co_await] = ACTIONS(3897), + [anon_sym_new] = ACTIONS(3873), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [847] = { - [sym_function_definition] = STATE(606), - [sym_declaration] = STATE(606), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(4748), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(3120), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_call_modifier] = STATE(1925), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6274), - [sym_array_declarator] = STATE(5998), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2748), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym__empty_declaration] = STATE(606), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym_explicit_function_specifier] = STATE(1783), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(606), - [sym_operator_cast] = STATE(6833), - [sym__constructor_specifiers] = STATE(1783), - [sym_operator_cast_definition] = STATE(606), - [sym_operator_cast_declaration] = STATE(606), - [sym_constructor_or_destructor_definition] = STATE(606), - [sym_constructor_or_destructor_declaration] = STATE(606), - [sym_friend_declaration] = STATE(606), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(2406), - [sym_template_function] = STATE(5998), - [sym_alias_declaration] = STATE(606), - [sym_concept_definition] = STATE(606), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5462), - [sym_qualified_identifier] = STATE(5998), - [sym_qualified_type_identifier] = STATE(3015), - [sym_qualified_operator_cast_identifier] = STATE(6833), - [sym_operator_name] = STATE(5998), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1783), - [sym_identifier] = ACTIONS(3967), - [anon_sym_LPAREN2] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2979), - [anon_sym_STAR] = ACTIONS(2981), + [870] = { + [sym_type_qualifier] = STATE(1716), + [sym_alignas_qualifier] = STATE(1866), + [sym_expression] = STATE(4744), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3728), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3728), + [sym_call_expression] = STATE(3728), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3728), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3728), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3728), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3728), + [aux_sym_array_declarator_repeat1] = STATE(1716), + [sym_identifier] = ACTIONS(3883), + [anon_sym_LPAREN2] = ACTIONS(3901), + [anon_sym_BANG] = ACTIONS(3887), + [anon_sym_TILDE] = ACTIONS(3887), + [anon_sym_DASH] = ACTIONS(3885), + [anon_sym_PLUS] = ACTIONS(3885), + [anon_sym_STAR] = ACTIONS(4105), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(4027), + [anon_sym_COLON_COLON] = ACTIONS(3891), + [anon_sym_LBRACK] = ACTIONS(2020), + [anon_sym_static] = ACTIONS(4045), + [anon_sym_RBRACK] = ACTIONS(4107), + [anon_sym_const] = ACTIONS(4033), + [anon_sym_constexpr] = ACTIONS(4033), + [anon_sym_volatile] = ACTIONS(4033), + [anon_sym_restrict] = ACTIONS(4033), + [anon_sym___restrict__] = ACTIONS(4033), + [anon_sym__Atomic] = ACTIONS(4033), + [anon_sym__Noreturn] = ACTIONS(4033), + [anon_sym_noreturn] = ACTIONS(4033), + [anon_sym__Nonnull] = ACTIONS(4033), + [anon_sym_mutable] = ACTIONS(4033), + [anon_sym_constinit] = ACTIONS(4033), + [anon_sym_consteval] = ACTIONS(4033), + [anon_sym_alignas] = ACTIONS(4035), + [anon_sym__Alignas] = ACTIONS(4035), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3885), + [anon_sym_compl] = ACTIONS(3885), + [anon_sym_DASH_DASH] = ACTIONS(3905), + [anon_sym_PLUS_PLUS] = ACTIONS(3905), + [anon_sym_sizeof] = ACTIONS(3893), + [anon_sym___alignof__] = ACTIONS(107), + [anon_sym___alignof] = ACTIONS(107), + [anon_sym__alignof] = ACTIONS(107), + [anon_sym_alignof] = ACTIONS(107), + [anon_sym__Alignof] = ACTIONS(107), + [anon_sym_offsetof] = ACTIONS(109), + [anon_sym__Generic] = ACTIONS(111), + [anon_sym_asm] = ACTIONS(113), + [anon_sym___asm__] = ACTIONS(113), + [anon_sym___asm] = ACTIONS(113), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(117), + [anon_sym_u_SQUOTE] = ACTIONS(117), + [anon_sym_U_SQUOTE] = ACTIONS(117), + [anon_sym_u8_SQUOTE] = ACTIONS(117), + [anon_sym_SQUOTE] = ACTIONS(117), + [anon_sym_L_DQUOTE] = ACTIONS(119), + [anon_sym_u_DQUOTE] = ACTIONS(119), + [anon_sym_U_DQUOTE] = ACTIONS(119), + [anon_sym_u8_DQUOTE] = ACTIONS(119), + [anon_sym_DQUOTE] = ACTIONS(119), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(123), + [anon_sym_nullptr] = ACTIONS(123), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3895), + [anon_sym_R_DQUOTE] = ACTIONS(159), + [anon_sym_LR_DQUOTE] = ACTIONS(159), + [anon_sym_uR_DQUOTE] = ACTIONS(159), + [anon_sym_UR_DQUOTE] = ACTIONS(159), + [anon_sym_u8R_DQUOTE] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(3897), + [anon_sym_new] = ACTIONS(3873), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), + }, + [871] = { + [sym_function_definition] = STATE(727), + [sym_declaration] = STATE(727), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(4774), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(3211), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_call_modifier] = STATE(1965), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6327), + [sym_array_declarator] = STATE(6145), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2749), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym__empty_declaration] = STATE(727), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym_explicit_function_specifier] = STATE(1847), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(727), + [sym_operator_cast] = STATE(6933), + [sym__constructor_specifiers] = STATE(1847), + [sym_operator_cast_definition] = STATE(727), + [sym_operator_cast_declaration] = STATE(727), + [sym_constructor_or_destructor_definition] = STATE(727), + [sym_constructor_or_destructor_declaration] = STATE(727), + [sym_friend_declaration] = STATE(727), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(2439), + [sym_template_function] = STATE(6145), + [sym_alias_declaration] = STATE(727), + [sym_concept_definition] = STATE(727), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5553), + [sym_qualified_identifier] = STATE(6145), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6933), + [sym_operator_name] = STATE(6145), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1847), + [sym_identifier] = ACTIONS(3975), + [anon_sym_LPAREN2] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(3001), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2983), + [anon_sym_AMP] = ACTIONS(3003), [anon_sym___extension__] = ACTIONS(67), [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), [anon_sym_using] = ACTIONS(4009), - [anon_sym_COLON_COLON] = ACTIONS(3971), + [anon_sym_COLON_COLON] = ACTIONS(3979), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), @@ -161915,7 +165370,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2995), + [anon_sym_LBRACK] = ACTIONS(3015), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -161938,7 +165393,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2999), + [sym_primitive_type] = ACTIONS(3019), [anon_sym_enum] = ACTIONS(73), [anon_sym_class] = ACTIONS(75), [anon_sym_struct] = ACTIONS(77), @@ -161951,88 +165406,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_template] = ACTIONS(4013), [anon_sym_operator] = ACTIONS(141), [anon_sym_friend] = ACTIONS(4015), - [anon_sym_concept] = ACTIONS(153), + [anon_sym_concept] = ACTIONS(934), }, - [848] = { - [sym_type_qualifier] = STATE(867), - [sym_alignas_qualifier] = STATE(1868), - [sym_expression] = STATE(4671), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3678), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3678), - [sym_call_expression] = STATE(3678), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3678), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3678), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3678), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3678), - [aux_sym_array_declarator_repeat1] = STATE(867), - [sym_identifier] = ACTIONS(3849), - [anon_sym_LPAREN2] = ACTIONS(3893), - [anon_sym_BANG] = ACTIONS(3853), - [anon_sym_TILDE] = ACTIONS(3853), - [anon_sym_DASH] = ACTIONS(3851), - [anon_sym_PLUS] = ACTIONS(3851), - [anon_sym_STAR] = ACTIONS(4063), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(4019), - [anon_sym_COLON_COLON] = ACTIONS(3857), + [872] = { + [sym_type_qualifier] = STATE(1716), + [sym_alignas_qualifier] = STATE(1866), + [sym_expression] = STATE(4685), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3728), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3728), + [sym_call_expression] = STATE(3728), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3728), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3728), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3728), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3728), + [aux_sym_array_declarator_repeat1] = STATE(1716), + [sym_identifier] = ACTIONS(3883), + [anon_sym_LPAREN2] = ACTIONS(3901), + [anon_sym_BANG] = ACTIONS(3887), + [anon_sym_TILDE] = ACTIONS(3887), + [anon_sym_DASH] = ACTIONS(3885), + [anon_sym_PLUS] = ACTIONS(3885), + [anon_sym_STAR] = ACTIONS(4109), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(4027), + [anon_sym_COLON_COLON] = ACTIONS(3891), [anon_sym_LBRACK] = ACTIONS(2020), - [anon_sym_static] = ACTIONS(4065), - [anon_sym_RBRACK] = ACTIONS(4067), - [anon_sym_const] = ACTIONS(4025), - [anon_sym_constexpr] = ACTIONS(4025), - [anon_sym_volatile] = ACTIONS(4025), - [anon_sym_restrict] = ACTIONS(4025), - [anon_sym___restrict__] = ACTIONS(4025), - [anon_sym__Atomic] = ACTIONS(4025), - [anon_sym__Noreturn] = ACTIONS(4025), - [anon_sym_noreturn] = ACTIONS(4025), - [anon_sym__Nonnull] = ACTIONS(4025), - [anon_sym_mutable] = ACTIONS(4025), - [anon_sym_constinit] = ACTIONS(4025), - [anon_sym_consteval] = ACTIONS(4025), - [anon_sym_alignas] = ACTIONS(4027), - [anon_sym__Alignas] = ACTIONS(4027), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3851), - [anon_sym_compl] = ACTIONS(3851), - [anon_sym_DASH_DASH] = ACTIONS(3897), - [anon_sym_PLUS_PLUS] = ACTIONS(3897), - [anon_sym_sizeof] = ACTIONS(3859), + [anon_sym_static] = ACTIONS(4045), + [anon_sym_RBRACK] = ACTIONS(4111), + [anon_sym_const] = ACTIONS(4033), + [anon_sym_constexpr] = ACTIONS(4033), + [anon_sym_volatile] = ACTIONS(4033), + [anon_sym_restrict] = ACTIONS(4033), + [anon_sym___restrict__] = ACTIONS(4033), + [anon_sym__Atomic] = ACTIONS(4033), + [anon_sym__Noreturn] = ACTIONS(4033), + [anon_sym_noreturn] = ACTIONS(4033), + [anon_sym__Nonnull] = ACTIONS(4033), + [anon_sym_mutable] = ACTIONS(4033), + [anon_sym_constinit] = ACTIONS(4033), + [anon_sym_consteval] = ACTIONS(4033), + [anon_sym_alignas] = ACTIONS(4035), + [anon_sym__Alignas] = ACTIONS(4035), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3885), + [anon_sym_compl] = ACTIONS(3885), + [anon_sym_DASH_DASH] = ACTIONS(3905), + [anon_sym_PLUS_PLUS] = ACTIONS(3905), + [anon_sym_sizeof] = ACTIONS(3893), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -162060,86 +165515,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3861), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3895), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3863), - [anon_sym_new] = ACTIONS(3865), + [anon_sym_co_await] = ACTIONS(3897), + [anon_sym_new] = ACTIONS(3873), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [849] = { - [sym_function_definition] = STATE(1817), - [sym_declaration] = STATE(1817), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(4676), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(3120), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_call_modifier] = STATE(1933), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6218), - [sym_array_declarator] = STATE(5998), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2742), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym__empty_declaration] = STATE(1817), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym_explicit_function_specifier] = STATE(1744), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(1817), - [sym_operator_cast] = STATE(6834), - [sym__constructor_specifiers] = STATE(1744), - [sym_operator_cast_definition] = STATE(1817), - [sym_operator_cast_declaration] = STATE(1817), - [sym_constructor_or_destructor_definition] = STATE(1817), - [sym_constructor_or_destructor_declaration] = STATE(1817), - [sym_friend_declaration] = STATE(1817), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(2406), - [sym_template_function] = STATE(5998), - [sym_alias_declaration] = STATE(1817), - [sym_concept_definition] = STATE(1817), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5462), - [sym_qualified_identifier] = STATE(5998), - [sym_qualified_type_identifier] = STATE(3015), - [sym_qualified_operator_cast_identifier] = STATE(6834), - [sym_operator_name] = STATE(5998), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1744), - [sym_identifier] = ACTIONS(3967), - [anon_sym_LPAREN2] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2979), - [anon_sym_STAR] = ACTIONS(2981), + [873] = { + [sym_function_definition] = STATE(1802), + [sym_declaration] = STATE(1802), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(4828), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(3211), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_call_modifier] = STATE(1968), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6303), + [sym_array_declarator] = STATE(6145), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2758), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym__empty_declaration] = STATE(1802), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym_explicit_function_specifier] = STATE(1845), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(1802), + [sym_operator_cast] = STATE(6890), + [sym__constructor_specifiers] = STATE(1845), + [sym_operator_cast_definition] = STATE(1802), + [sym_operator_cast_declaration] = STATE(1802), + [sym_constructor_or_destructor_definition] = STATE(1802), + [sym_constructor_or_destructor_declaration] = STATE(1802), + [sym_friend_declaration] = STATE(1802), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(2439), + [sym_template_function] = STATE(6145), + [sym_alias_declaration] = STATE(1802), + [sym_concept_definition] = STATE(1802), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5553), + [sym_qualified_identifier] = STATE(6145), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6890), + [sym_operator_name] = STATE(6145), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1845), + [sym_identifier] = ACTIONS(3975), + [anon_sym_LPAREN2] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(3001), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2983), + [anon_sym_AMP] = ACTIONS(3003), [anon_sym___extension__] = ACTIONS(67), [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(3981), - [anon_sym_COLON_COLON] = ACTIONS(3971), + [anon_sym_using] = ACTIONS(4017), + [anon_sym_COLON_COLON] = ACTIONS(3979), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), @@ -162153,7 +165608,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2995), + [anon_sym_LBRACK] = ACTIONS(3015), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -162163,7 +165618,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread_local] = ACTIONS(63), [anon_sym___thread] = ACTIONS(63), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(2997), + [anon_sym_constexpr] = ACTIONS(3017), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -162176,7 +165631,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2999), + [sym_primitive_type] = ACTIONS(3019), [anon_sym_enum] = ACTIONS(73), [anon_sym_class] = ACTIONS(75), [anon_sym_struct] = ACTIONS(77), @@ -162186,198 +165641,317 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_decltype] = ACTIONS(127), [anon_sym_explicit] = ACTIONS(129), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(3013), + [anon_sym_template] = ACTIONS(3033), [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(3015), - [anon_sym_concept] = ACTIONS(3983), + [anon_sym_friend] = ACTIONS(3035), + [anon_sym_concept] = ACTIONS(4019), }, - [850] = { - [sym_function_definition] = STATE(703), - [sym_declaration] = STATE(703), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(4599), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(3120), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_call_modifier] = STATE(1924), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6242), - [sym_array_declarator] = STATE(5998), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2758), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym__empty_declaration] = STATE(703), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym_explicit_function_specifier] = STATE(1720), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(703), - [sym_operator_cast] = STATE(6799), - [sym__constructor_specifiers] = STATE(1720), - [sym_operator_cast_definition] = STATE(703), - [sym_operator_cast_declaration] = STATE(703), - [sym_constructor_or_destructor_definition] = STATE(703), - [sym_constructor_or_destructor_declaration] = STATE(703), - [sym_friend_declaration] = STATE(703), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(2406), - [sym_template_function] = STATE(5998), - [sym_alias_declaration] = STATE(703), - [sym_concept_definition] = STATE(703), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5462), - [sym_qualified_identifier] = STATE(5998), - [sym_qualified_type_identifier] = STATE(3015), - [sym_qualified_operator_cast_identifier] = STATE(6799), - [sym_operator_name] = STATE(5998), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1720), - [sym_identifier] = ACTIONS(3967), - [anon_sym_LPAREN2] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2979), - [anon_sym_STAR] = ACTIONS(2981), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2983), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(4001), - [anon_sym_COLON_COLON] = ACTIONS(3971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym___cdecl] = ACTIONS(55), - [anon_sym___clrcall] = ACTIONS(55), - [anon_sym___stdcall] = ACTIONS(55), - [anon_sym___fastcall] = ACTIONS(55), - [anon_sym___thiscall] = ACTIONS(55), - [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2995), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(4003), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2999), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), + [874] = { + [sym_type_qualifier] = STATE(1716), + [sym_alignas_qualifier] = STATE(1866), + [sym_expression] = STATE(4689), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3728), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3728), + [sym_call_expression] = STATE(3728), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3728), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3728), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3728), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3728), + [aux_sym_array_declarator_repeat1] = STATE(1716), + [sym_identifier] = ACTIONS(3883), + [anon_sym_LPAREN2] = ACTIONS(3901), + [anon_sym_BANG] = ACTIONS(3887), + [anon_sym_TILDE] = ACTIONS(3887), + [anon_sym_DASH] = ACTIONS(3885), + [anon_sym_PLUS] = ACTIONS(3885), + [anon_sym_STAR] = ACTIONS(4113), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(4027), + [anon_sym_COLON_COLON] = ACTIONS(3891), + [anon_sym_LBRACK] = ACTIONS(2020), + [anon_sym_static] = ACTIONS(4045), + [anon_sym_RBRACK] = ACTIONS(4115), + [anon_sym_const] = ACTIONS(4033), + [anon_sym_constexpr] = ACTIONS(4033), + [anon_sym_volatile] = ACTIONS(4033), + [anon_sym_restrict] = ACTIONS(4033), + [anon_sym___restrict__] = ACTIONS(4033), + [anon_sym__Atomic] = ACTIONS(4033), + [anon_sym__Noreturn] = ACTIONS(4033), + [anon_sym_noreturn] = ACTIONS(4033), + [anon_sym__Nonnull] = ACTIONS(4033), + [anon_sym_mutable] = ACTIONS(4033), + [anon_sym_constinit] = ACTIONS(4033), + [anon_sym_consteval] = ACTIONS(4033), + [anon_sym_alignas] = ACTIONS(4035), + [anon_sym__Alignas] = ACTIONS(4035), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3885), + [anon_sym_compl] = ACTIONS(3885), + [anon_sym_DASH_DASH] = ACTIONS(3905), + [anon_sym_PLUS_PLUS] = ACTIONS(3905), + [anon_sym_sizeof] = ACTIONS(3893), + [anon_sym___alignof__] = ACTIONS(107), + [anon_sym___alignof] = ACTIONS(107), + [anon_sym__alignof] = ACTIONS(107), + [anon_sym_alignof] = ACTIONS(107), + [anon_sym__Alignof] = ACTIONS(107), + [anon_sym_offsetof] = ACTIONS(109), + [anon_sym__Generic] = ACTIONS(111), + [anon_sym_asm] = ACTIONS(113), + [anon_sym___asm__] = ACTIONS(113), + [anon_sym___asm] = ACTIONS(113), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(117), + [anon_sym_u_SQUOTE] = ACTIONS(117), + [anon_sym_U_SQUOTE] = ACTIONS(117), + [anon_sym_u8_SQUOTE] = ACTIONS(117), + [anon_sym_SQUOTE] = ACTIONS(117), + [anon_sym_L_DQUOTE] = ACTIONS(119), + [anon_sym_u_DQUOTE] = ACTIONS(119), + [anon_sym_U_DQUOTE] = ACTIONS(119), + [anon_sym_u8_DQUOTE] = ACTIONS(119), + [anon_sym_DQUOTE] = ACTIONS(119), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(123), + [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(4005), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(4007), - [anon_sym_concept] = ACTIONS(241), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3895), + [anon_sym_R_DQUOTE] = ACTIONS(159), + [anon_sym_LR_DQUOTE] = ACTIONS(159), + [anon_sym_uR_DQUOTE] = ACTIONS(159), + [anon_sym_UR_DQUOTE] = ACTIONS(159), + [anon_sym_u8R_DQUOTE] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(3897), + [anon_sym_new] = ACTIONS(3873), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), }, - [851] = { - [sym_function_definition] = STATE(322), - [sym_declaration] = STATE(322), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(4644), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(3120), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_call_modifier] = STATE(1929), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6222), - [sym_array_declarator] = STATE(5998), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2724), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym__empty_declaration] = STATE(322), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym_explicit_function_specifier] = STATE(1734), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(322), - [sym_operator_cast] = STATE(6804), - [sym__constructor_specifiers] = STATE(1734), - [sym_operator_cast_definition] = STATE(322), - [sym_operator_cast_declaration] = STATE(322), - [sym_constructor_or_destructor_definition] = STATE(322), - [sym_constructor_or_destructor_declaration] = STATE(322), - [sym_friend_declaration] = STATE(322), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(2406), - [sym_template_function] = STATE(5998), - [sym_alias_declaration] = STATE(322), - [sym_concept_definition] = STATE(322), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5462), - [sym_qualified_identifier] = STATE(5998), - [sym_qualified_type_identifier] = STATE(3015), - [sym_qualified_operator_cast_identifier] = STATE(6804), - [sym_operator_name] = STATE(5998), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1734), - [sym_identifier] = ACTIONS(3967), - [anon_sym_LPAREN2] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2979), - [anon_sym_STAR] = ACTIONS(2981), + [875] = { + [sym_type_qualifier] = STATE(1716), + [sym_alignas_qualifier] = STATE(1866), + [sym_expression] = STATE(4772), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3728), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3728), + [sym_call_expression] = STATE(3728), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3728), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3728), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3728), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3728), + [aux_sym_array_declarator_repeat1] = STATE(1716), + [sym_identifier] = ACTIONS(3883), + [anon_sym_LPAREN2] = ACTIONS(3901), + [anon_sym_BANG] = ACTIONS(3887), + [anon_sym_TILDE] = ACTIONS(3887), + [anon_sym_DASH] = ACTIONS(3885), + [anon_sym_PLUS] = ACTIONS(3885), + [anon_sym_STAR] = ACTIONS(4117), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(4027), + [anon_sym_COLON_COLON] = ACTIONS(3891), + [anon_sym_LBRACK] = ACTIONS(2020), + [anon_sym_static] = ACTIONS(4045), + [anon_sym_RBRACK] = ACTIONS(4119), + [anon_sym_const] = ACTIONS(4033), + [anon_sym_constexpr] = ACTIONS(4033), + [anon_sym_volatile] = ACTIONS(4033), + [anon_sym_restrict] = ACTIONS(4033), + [anon_sym___restrict__] = ACTIONS(4033), + [anon_sym__Atomic] = ACTIONS(4033), + [anon_sym__Noreturn] = ACTIONS(4033), + [anon_sym_noreturn] = ACTIONS(4033), + [anon_sym__Nonnull] = ACTIONS(4033), + [anon_sym_mutable] = ACTIONS(4033), + [anon_sym_constinit] = ACTIONS(4033), + [anon_sym_consteval] = ACTIONS(4033), + [anon_sym_alignas] = ACTIONS(4035), + [anon_sym__Alignas] = ACTIONS(4035), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3885), + [anon_sym_compl] = ACTIONS(3885), + [anon_sym_DASH_DASH] = ACTIONS(3905), + [anon_sym_PLUS_PLUS] = ACTIONS(3905), + [anon_sym_sizeof] = ACTIONS(3893), + [anon_sym___alignof__] = ACTIONS(107), + [anon_sym___alignof] = ACTIONS(107), + [anon_sym__alignof] = ACTIONS(107), + [anon_sym_alignof] = ACTIONS(107), + [anon_sym__Alignof] = ACTIONS(107), + [anon_sym_offsetof] = ACTIONS(109), + [anon_sym__Generic] = ACTIONS(111), + [anon_sym_asm] = ACTIONS(113), + [anon_sym___asm__] = ACTIONS(113), + [anon_sym___asm] = ACTIONS(113), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(117), + [anon_sym_u_SQUOTE] = ACTIONS(117), + [anon_sym_U_SQUOTE] = ACTIONS(117), + [anon_sym_u8_SQUOTE] = ACTIONS(117), + [anon_sym_SQUOTE] = ACTIONS(117), + [anon_sym_L_DQUOTE] = ACTIONS(119), + [anon_sym_u_DQUOTE] = ACTIONS(119), + [anon_sym_U_DQUOTE] = ACTIONS(119), + [anon_sym_u8_DQUOTE] = ACTIONS(119), + [anon_sym_DQUOTE] = ACTIONS(119), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(123), + [anon_sym_nullptr] = ACTIONS(123), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3895), + [anon_sym_R_DQUOTE] = ACTIONS(159), + [anon_sym_LR_DQUOTE] = ACTIONS(159), + [anon_sym_uR_DQUOTE] = ACTIONS(159), + [anon_sym_UR_DQUOTE] = ACTIONS(159), + [anon_sym_u8R_DQUOTE] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(3897), + [anon_sym_new] = ACTIONS(3873), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), + }, + [876] = { + [sym_function_definition] = STATE(2101), + [sym_declaration] = STATE(2101), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(4649), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(3211), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_call_modifier] = STATE(1969), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6389), + [sym_array_declarator] = STATE(6145), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2763), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym__empty_declaration] = STATE(2101), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym_explicit_function_specifier] = STATE(1848), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(2101), + [sym_operator_cast] = STATE(6896), + [sym__constructor_specifiers] = STATE(1848), + [sym_operator_cast_definition] = STATE(2101), + [sym_operator_cast_declaration] = STATE(2101), + [sym_constructor_or_destructor_definition] = STATE(2101), + [sym_constructor_or_destructor_declaration] = STATE(2101), + [sym_friend_declaration] = STATE(2101), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(2439), + [sym_template_function] = STATE(6145), + [sym_alias_declaration] = STATE(2101), + [sym_concept_definition] = STATE(2101), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5553), + [sym_qualified_identifier] = STATE(6145), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6896), + [sym_operator_name] = STATE(6145), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1848), + [sym_identifier] = ACTIONS(3975), + [anon_sym_LPAREN2] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(3001), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2983), + [anon_sym_AMP] = ACTIONS(3003), [anon_sym___extension__] = ACTIONS(67), [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(3985), - [anon_sym_COLON_COLON] = ACTIONS(3971), + [anon_sym_using] = ACTIONS(4021), + [anon_sym_COLON_COLON] = ACTIONS(3979), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), @@ -162391,7 +165965,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2995), + [anon_sym_LBRACK] = ACTIONS(3015), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -162401,7 +165975,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread_local] = ACTIONS(63), [anon_sym___thread] = ACTIONS(63), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(3987), + [anon_sym_constexpr] = ACTIONS(3749), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -162414,7 +165988,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2999), + [sym_primitive_type] = ACTIONS(3019), [anon_sym_enum] = ACTIONS(73), [anon_sym_class] = ACTIONS(75), [anon_sym_struct] = ACTIONS(77), @@ -162424,91 +165998,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_decltype] = ACTIONS(127), [anon_sym_explicit] = ACTIONS(129), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(3989), + [anon_sym_template] = ACTIONS(3751), [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(3991), - [anon_sym_concept] = ACTIONS(337), + [anon_sym_friend] = ACTIONS(3753), + [anon_sym_concept] = ACTIONS(4023), }, - [852] = { - [sym_type_qualifier] = STATE(1698), - [sym_alignas_qualifier] = STATE(1868), - [sym_expression] = STATE(4666), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3678), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3678), - [sym_call_expression] = STATE(3678), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3678), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3678), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3678), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3678), - [aux_sym_array_declarator_repeat1] = STATE(1698), - [sym_identifier] = ACTIONS(3849), - [anon_sym_LPAREN2] = ACTIONS(3893), - [anon_sym_BANG] = ACTIONS(3853), - [anon_sym_TILDE] = ACTIONS(3853), - [anon_sym_DASH] = ACTIONS(3851), - [anon_sym_PLUS] = ACTIONS(3851), - [anon_sym_STAR] = ACTIONS(4069), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(4019), - [anon_sym_COLON_COLON] = ACTIONS(3857), + [877] = { + [sym_type_qualifier] = STATE(1716), + [sym_alignas_qualifier] = STATE(1866), + [sym_expression] = STATE(4699), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3728), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3728), + [sym_call_expression] = STATE(3728), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3728), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3728), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3728), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3728), + [aux_sym_array_declarator_repeat1] = STATE(1716), + [sym_identifier] = ACTIONS(3883), + [anon_sym_LPAREN2] = ACTIONS(3901), + [anon_sym_BANG] = ACTIONS(3887), + [anon_sym_TILDE] = ACTIONS(3887), + [anon_sym_DASH] = ACTIONS(3885), + [anon_sym_PLUS] = ACTIONS(3885), + [anon_sym_STAR] = ACTIONS(4121), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(4027), + [anon_sym_COLON_COLON] = ACTIONS(3891), [anon_sym_LBRACK] = ACTIONS(2020), - [anon_sym_static] = ACTIONS(4037), - [anon_sym_RBRACK] = ACTIONS(4071), - [anon_sym_const] = ACTIONS(4025), - [anon_sym_constexpr] = ACTIONS(4025), - [anon_sym_volatile] = ACTIONS(4025), - [anon_sym_restrict] = ACTIONS(4025), - [anon_sym___restrict__] = ACTIONS(4025), - [anon_sym__Atomic] = ACTIONS(4025), - [anon_sym__Noreturn] = ACTIONS(4025), - [anon_sym_noreturn] = ACTIONS(4025), - [anon_sym__Nonnull] = ACTIONS(4025), - [anon_sym_mutable] = ACTIONS(4025), - [anon_sym_constinit] = ACTIONS(4025), - [anon_sym_consteval] = ACTIONS(4025), - [anon_sym_alignas] = ACTIONS(4027), - [anon_sym__Alignas] = ACTIONS(4027), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3851), - [anon_sym_compl] = ACTIONS(3851), - [anon_sym_DASH_DASH] = ACTIONS(3897), - [anon_sym_PLUS_PLUS] = ACTIONS(3897), - [anon_sym_sizeof] = ACTIONS(3859), + [anon_sym_static] = ACTIONS(4045), + [anon_sym_RBRACK] = ACTIONS(4123), + [anon_sym_const] = ACTIONS(4033), + [anon_sym_constexpr] = ACTIONS(4033), + [anon_sym_volatile] = ACTIONS(4033), + [anon_sym_restrict] = ACTIONS(4033), + [anon_sym___restrict__] = ACTIONS(4033), + [anon_sym__Atomic] = ACTIONS(4033), + [anon_sym__Noreturn] = ACTIONS(4033), + [anon_sym_noreturn] = ACTIONS(4033), + [anon_sym__Nonnull] = ACTIONS(4033), + [anon_sym_mutable] = ACTIONS(4033), + [anon_sym_constinit] = ACTIONS(4033), + [anon_sym_consteval] = ACTIONS(4033), + [anon_sym_alignas] = ACTIONS(4035), + [anon_sym__Alignas] = ACTIONS(4035), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3885), + [anon_sym_compl] = ACTIONS(3885), + [anon_sym_DASH_DASH] = ACTIONS(3905), + [anon_sym_PLUS_PLUS] = ACTIONS(3905), + [anon_sym_sizeof] = ACTIONS(3893), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -162536,98 +166110,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3861), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3895), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3863), - [anon_sym_new] = ACTIONS(3865), + [anon_sym_co_await] = ACTIONS(3897), + [anon_sym_new] = ACTIONS(3873), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [853] = { - [sym_type_qualifier] = STATE(855), - [sym_alignas_qualifier] = STATE(1868), - [sym_expression] = STATE(4625), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3678), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3678), - [sym_call_expression] = STATE(3678), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3678), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3678), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3678), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3678), - [aux_sym_array_declarator_repeat1] = STATE(855), - [sym_identifier] = ACTIONS(3849), - [anon_sym_LPAREN2] = ACTIONS(3893), - [anon_sym_BANG] = ACTIONS(3853), - [anon_sym_TILDE] = ACTIONS(3853), - [anon_sym_DASH] = ACTIONS(3851), - [anon_sym_PLUS] = ACTIONS(3851), - [anon_sym_STAR] = ACTIONS(4073), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(4019), - [anon_sym_COLON_COLON] = ACTIONS(3857), + [878] = { + [sym_type_qualifier] = STATE(877), + [sym_alignas_qualifier] = STATE(1866), + [sym_expression] = STATE(4775), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3728), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3728), + [sym_call_expression] = STATE(3728), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3728), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3728), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3728), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3728), + [aux_sym_array_declarator_repeat1] = STATE(877), + [sym_identifier] = ACTIONS(4125), + [anon_sym_LPAREN2] = ACTIONS(3901), + [anon_sym_BANG] = ACTIONS(3887), + [anon_sym_TILDE] = ACTIONS(3887), + [anon_sym_DASH] = ACTIONS(3885), + [anon_sym_PLUS] = ACTIONS(3885), + [anon_sym_STAR] = ACTIONS(4127), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(4027), + [anon_sym_COLON_COLON] = ACTIONS(3891), [anon_sym_LBRACK] = ACTIONS(2020), - [anon_sym_static] = ACTIONS(4075), - [anon_sym_RBRACK] = ACTIONS(4077), - [anon_sym_const] = ACTIONS(4025), - [anon_sym_constexpr] = ACTIONS(4025), - [anon_sym_volatile] = ACTIONS(4025), - [anon_sym_restrict] = ACTIONS(4025), - [anon_sym___restrict__] = ACTIONS(4025), - [anon_sym__Atomic] = ACTIONS(4025), - [anon_sym__Noreturn] = ACTIONS(4025), - [anon_sym_noreturn] = ACTIONS(4025), - [anon_sym__Nonnull] = ACTIONS(4025), - [anon_sym_mutable] = ACTIONS(4025), - [anon_sym_constinit] = ACTIONS(4025), - [anon_sym_consteval] = ACTIONS(4025), - [anon_sym_alignas] = ACTIONS(4027), - [anon_sym__Alignas] = ACTIONS(4027), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3851), - [anon_sym_compl] = ACTIONS(3851), - [anon_sym_DASH_DASH] = ACTIONS(3897), - [anon_sym_PLUS_PLUS] = ACTIONS(3897), - [anon_sym_sizeof] = ACTIONS(3859), + [anon_sym_static] = ACTIONS(4129), + [anon_sym_RBRACK] = ACTIONS(4131), + [anon_sym_const] = ACTIONS(4033), + [anon_sym_constexpr] = ACTIONS(4033), + [anon_sym_volatile] = ACTIONS(4033), + [anon_sym_restrict] = ACTIONS(4033), + [anon_sym___restrict__] = ACTIONS(4033), + [anon_sym__Atomic] = ACTIONS(4033), + [anon_sym__Noreturn] = ACTIONS(4033), + [anon_sym_noreturn] = ACTIONS(4033), + [anon_sym__Nonnull] = ACTIONS(4033), + [anon_sym_mutable] = ACTIONS(4033), + [anon_sym_constinit] = ACTIONS(4033), + [anon_sym_consteval] = ACTIONS(4033), + [anon_sym_alignas] = ACTIONS(4035), + [anon_sym__Alignas] = ACTIONS(4035), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3885), + [anon_sym_compl] = ACTIONS(3885), + [anon_sym_DASH_DASH] = ACTIONS(3905), + [anon_sym_PLUS_PLUS] = ACTIONS(3905), + [anon_sym_sizeof] = ACTIONS(3893), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -162655,86 +166229,443 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3861), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3895), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3863), - [anon_sym_new] = ACTIONS(3865), + [anon_sym_co_await] = ACTIONS(3897), + [anon_sym_new] = ACTIONS(3873), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [854] = { - [sym_function_definition] = STATE(1968), - [sym_declaration] = STATE(1968), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(4684), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(3120), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_call_modifier] = STATE(1934), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6217), - [sym_array_declarator] = STATE(5998), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2745), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym__empty_declaration] = STATE(1968), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym_explicit_function_specifier] = STATE(1760), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(1968), - [sym_operator_cast] = STATE(6816), - [sym__constructor_specifiers] = STATE(1760), - [sym_operator_cast_definition] = STATE(1968), - [sym_operator_cast_declaration] = STATE(1968), - [sym_constructor_or_destructor_definition] = STATE(1968), - [sym_constructor_or_destructor_declaration] = STATE(1968), - [sym_friend_declaration] = STATE(1968), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(2406), - [sym_template_function] = STATE(5998), - [sym_alias_declaration] = STATE(1968), - [sym_concept_definition] = STATE(1968), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5462), - [sym_qualified_identifier] = STATE(5998), - [sym_qualified_type_identifier] = STATE(3015), - [sym_qualified_operator_cast_identifier] = STATE(6816), - [sym_operator_name] = STATE(5998), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1760), - [sym_identifier] = ACTIONS(3967), - [anon_sym_LPAREN2] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2979), - [anon_sym_STAR] = ACTIONS(2981), + [879] = { + [sym_type_qualifier] = STATE(1716), + [sym_alignas_qualifier] = STATE(1866), + [sym_expression] = STATE(4652), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3728), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3728), + [sym_call_expression] = STATE(3728), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3728), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3728), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3728), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3728), + [aux_sym_array_declarator_repeat1] = STATE(1716), + [sym_identifier] = ACTIONS(3883), + [anon_sym_LPAREN2] = ACTIONS(3901), + [anon_sym_BANG] = ACTIONS(3887), + [anon_sym_TILDE] = ACTIONS(3887), + [anon_sym_DASH] = ACTIONS(3885), + [anon_sym_PLUS] = ACTIONS(3885), + [anon_sym_STAR] = ACTIONS(4133), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(4027), + [anon_sym_COLON_COLON] = ACTIONS(3891), + [anon_sym_LBRACK] = ACTIONS(2020), + [anon_sym_static] = ACTIONS(4045), + [anon_sym_RBRACK] = ACTIONS(4135), + [anon_sym_const] = ACTIONS(4033), + [anon_sym_constexpr] = ACTIONS(4033), + [anon_sym_volatile] = ACTIONS(4033), + [anon_sym_restrict] = ACTIONS(4033), + [anon_sym___restrict__] = ACTIONS(4033), + [anon_sym__Atomic] = ACTIONS(4033), + [anon_sym__Noreturn] = ACTIONS(4033), + [anon_sym_noreturn] = ACTIONS(4033), + [anon_sym__Nonnull] = ACTIONS(4033), + [anon_sym_mutable] = ACTIONS(4033), + [anon_sym_constinit] = ACTIONS(4033), + [anon_sym_consteval] = ACTIONS(4033), + [anon_sym_alignas] = ACTIONS(4035), + [anon_sym__Alignas] = ACTIONS(4035), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3885), + [anon_sym_compl] = ACTIONS(3885), + [anon_sym_DASH_DASH] = ACTIONS(3905), + [anon_sym_PLUS_PLUS] = ACTIONS(3905), + [anon_sym_sizeof] = ACTIONS(3893), + [anon_sym___alignof__] = ACTIONS(107), + [anon_sym___alignof] = ACTIONS(107), + [anon_sym__alignof] = ACTIONS(107), + [anon_sym_alignof] = ACTIONS(107), + [anon_sym__Alignof] = ACTIONS(107), + [anon_sym_offsetof] = ACTIONS(109), + [anon_sym__Generic] = ACTIONS(111), + [anon_sym_asm] = ACTIONS(113), + [anon_sym___asm__] = ACTIONS(113), + [anon_sym___asm] = ACTIONS(113), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(117), + [anon_sym_u_SQUOTE] = ACTIONS(117), + [anon_sym_U_SQUOTE] = ACTIONS(117), + [anon_sym_u8_SQUOTE] = ACTIONS(117), + [anon_sym_SQUOTE] = ACTIONS(117), + [anon_sym_L_DQUOTE] = ACTIONS(119), + [anon_sym_u_DQUOTE] = ACTIONS(119), + [anon_sym_U_DQUOTE] = ACTIONS(119), + [anon_sym_u8_DQUOTE] = ACTIONS(119), + [anon_sym_DQUOTE] = ACTIONS(119), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(123), + [anon_sym_nullptr] = ACTIONS(123), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3895), + [anon_sym_R_DQUOTE] = ACTIONS(159), + [anon_sym_LR_DQUOTE] = ACTIONS(159), + [anon_sym_uR_DQUOTE] = ACTIONS(159), + [anon_sym_UR_DQUOTE] = ACTIONS(159), + [anon_sym_u8R_DQUOTE] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(3897), + [anon_sym_new] = ACTIONS(3873), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), + }, + [880] = { + [sym_type_qualifier] = STATE(877), + [sym_alignas_qualifier] = STATE(1866), + [sym_expression] = STATE(4775), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3728), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3728), + [sym_call_expression] = STATE(3728), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3728), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3728), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3728), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3728), + [aux_sym_array_declarator_repeat1] = STATE(877), + [sym_identifier] = ACTIONS(3883), + [anon_sym_LPAREN2] = ACTIONS(3901), + [anon_sym_BANG] = ACTIONS(3887), + [anon_sym_TILDE] = ACTIONS(3887), + [anon_sym_DASH] = ACTIONS(3885), + [anon_sym_PLUS] = ACTIONS(3885), + [anon_sym_STAR] = ACTIONS(4127), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(4027), + [anon_sym_COLON_COLON] = ACTIONS(3891), + [anon_sym_LBRACK] = ACTIONS(2020), + [anon_sym_static] = ACTIONS(4129), + [anon_sym_RBRACK] = ACTIONS(4131), + [anon_sym_const] = ACTIONS(4033), + [anon_sym_constexpr] = ACTIONS(4033), + [anon_sym_volatile] = ACTIONS(4033), + [anon_sym_restrict] = ACTIONS(4033), + [anon_sym___restrict__] = ACTIONS(4033), + [anon_sym__Atomic] = ACTIONS(4033), + [anon_sym__Noreturn] = ACTIONS(4033), + [anon_sym_noreturn] = ACTIONS(4033), + [anon_sym__Nonnull] = ACTIONS(4033), + [anon_sym_mutable] = ACTIONS(4033), + [anon_sym_constinit] = ACTIONS(4033), + [anon_sym_consteval] = ACTIONS(4033), + [anon_sym_alignas] = ACTIONS(4035), + [anon_sym__Alignas] = ACTIONS(4035), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3885), + [anon_sym_compl] = ACTIONS(3885), + [anon_sym_DASH_DASH] = ACTIONS(3905), + [anon_sym_PLUS_PLUS] = ACTIONS(3905), + [anon_sym_sizeof] = ACTIONS(3893), + [anon_sym___alignof__] = ACTIONS(107), + [anon_sym___alignof] = ACTIONS(107), + [anon_sym__alignof] = ACTIONS(107), + [anon_sym_alignof] = ACTIONS(107), + [anon_sym__Alignof] = ACTIONS(107), + [anon_sym_offsetof] = ACTIONS(109), + [anon_sym__Generic] = ACTIONS(111), + [anon_sym_asm] = ACTIONS(113), + [anon_sym___asm__] = ACTIONS(113), + [anon_sym___asm] = ACTIONS(113), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(117), + [anon_sym_u_SQUOTE] = ACTIONS(117), + [anon_sym_U_SQUOTE] = ACTIONS(117), + [anon_sym_u8_SQUOTE] = ACTIONS(117), + [anon_sym_SQUOTE] = ACTIONS(117), + [anon_sym_L_DQUOTE] = ACTIONS(119), + [anon_sym_u_DQUOTE] = ACTIONS(119), + [anon_sym_U_DQUOTE] = ACTIONS(119), + [anon_sym_u8_DQUOTE] = ACTIONS(119), + [anon_sym_DQUOTE] = ACTIONS(119), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(123), + [anon_sym_nullptr] = ACTIONS(123), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3895), + [anon_sym_R_DQUOTE] = ACTIONS(159), + [anon_sym_LR_DQUOTE] = ACTIONS(159), + [anon_sym_uR_DQUOTE] = ACTIONS(159), + [anon_sym_UR_DQUOTE] = ACTIONS(159), + [anon_sym_u8R_DQUOTE] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(3897), + [anon_sym_new] = ACTIONS(3873), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), + }, + [881] = { + [sym_type_qualifier] = STATE(862), + [sym_alignas_qualifier] = STATE(1866), + [sym_expression] = STATE(4796), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3728), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3728), + [sym_call_expression] = STATE(3728), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3728), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3728), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3728), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3728), + [aux_sym_array_declarator_repeat1] = STATE(862), + [sym_identifier] = ACTIONS(3883), + [anon_sym_LPAREN2] = ACTIONS(3901), + [anon_sym_BANG] = ACTIONS(3887), + [anon_sym_TILDE] = ACTIONS(3887), + [anon_sym_DASH] = ACTIONS(3885), + [anon_sym_PLUS] = ACTIONS(3885), + [anon_sym_STAR] = ACTIONS(4137), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(4027), + [anon_sym_COLON_COLON] = ACTIONS(3891), + [anon_sym_LBRACK] = ACTIONS(2020), + [anon_sym_static] = ACTIONS(4139), + [anon_sym_RBRACK] = ACTIONS(4141), + [anon_sym_const] = ACTIONS(4033), + [anon_sym_constexpr] = ACTIONS(4033), + [anon_sym_volatile] = ACTIONS(4033), + [anon_sym_restrict] = ACTIONS(4033), + [anon_sym___restrict__] = ACTIONS(4033), + [anon_sym__Atomic] = ACTIONS(4033), + [anon_sym__Noreturn] = ACTIONS(4033), + [anon_sym_noreturn] = ACTIONS(4033), + [anon_sym__Nonnull] = ACTIONS(4033), + [anon_sym_mutable] = ACTIONS(4033), + [anon_sym_constinit] = ACTIONS(4033), + [anon_sym_consteval] = ACTIONS(4033), + [anon_sym_alignas] = ACTIONS(4035), + [anon_sym__Alignas] = ACTIONS(4035), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3885), + [anon_sym_compl] = ACTIONS(3885), + [anon_sym_DASH_DASH] = ACTIONS(3905), + [anon_sym_PLUS_PLUS] = ACTIONS(3905), + [anon_sym_sizeof] = ACTIONS(3893), + [anon_sym___alignof__] = ACTIONS(107), + [anon_sym___alignof] = ACTIONS(107), + [anon_sym__alignof] = ACTIONS(107), + [anon_sym_alignof] = ACTIONS(107), + [anon_sym__Alignof] = ACTIONS(107), + [anon_sym_offsetof] = ACTIONS(109), + [anon_sym__Generic] = ACTIONS(111), + [anon_sym_asm] = ACTIONS(113), + [anon_sym___asm__] = ACTIONS(113), + [anon_sym___asm] = ACTIONS(113), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(117), + [anon_sym_u_SQUOTE] = ACTIONS(117), + [anon_sym_U_SQUOTE] = ACTIONS(117), + [anon_sym_u8_SQUOTE] = ACTIONS(117), + [anon_sym_SQUOTE] = ACTIONS(117), + [anon_sym_L_DQUOTE] = ACTIONS(119), + [anon_sym_u_DQUOTE] = ACTIONS(119), + [anon_sym_U_DQUOTE] = ACTIONS(119), + [anon_sym_u8_DQUOTE] = ACTIONS(119), + [anon_sym_DQUOTE] = ACTIONS(119), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(123), + [anon_sym_nullptr] = ACTIONS(123), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3895), + [anon_sym_R_DQUOTE] = ACTIONS(159), + [anon_sym_LR_DQUOTE] = ACTIONS(159), + [anon_sym_uR_DQUOTE] = ACTIONS(159), + [anon_sym_UR_DQUOTE] = ACTIONS(159), + [anon_sym_u8R_DQUOTE] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(3897), + [anon_sym_new] = ACTIONS(3873), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), + }, + [882] = { + [sym_function_definition] = STATE(609), + [sym_declaration] = STATE(609), + [sym__declaration_modifiers] = STATE(3211), + [sym__declaration_specifiers] = STATE(4803), + [sym_attribute_specifier] = STATE(3211), + [sym_attribute_declaration] = STATE(3211), + [sym_ms_declspec_modifier] = STATE(3211), + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_call_modifier] = STATE(1954), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6319), + [sym_array_declarator] = STATE(6145), + [sym_storage_class_specifier] = STATE(3211), + [sym_type_qualifier] = STATE(3211), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2791), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym__empty_declaration] = STATE(609), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym_explicit_function_specifier] = STATE(1779), + [sym_dependent_type] = STATE(2558), + [sym_template_declaration] = STATE(609), + [sym_operator_cast] = STATE(6950), + [sym__constructor_specifiers] = STATE(1779), + [sym_operator_cast_definition] = STATE(609), + [sym_operator_cast_declaration] = STATE(609), + [sym_constructor_or_destructor_definition] = STATE(609), + [sym_constructor_or_destructor_declaration] = STATE(609), + [sym_friend_declaration] = STATE(609), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(2439), + [sym_template_function] = STATE(6145), + [sym_alias_declaration] = STATE(609), + [sym_concept_definition] = STATE(609), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5553), + [sym_qualified_identifier] = STATE(6145), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6950), + [sym_operator_name] = STATE(6145), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_operator_cast_definition_repeat1] = STATE(1779), + [sym_identifier] = ACTIONS(3975), + [anon_sym_LPAREN2] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(3001), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2983), + [anon_sym_AMP] = ACTIONS(3003), [anon_sym___extension__] = ACTIONS(67), [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(3969), - [anon_sym_COLON_COLON] = ACTIONS(3971), + [anon_sym_using] = ACTIONS(3989), + [anon_sym_COLON_COLON] = ACTIONS(3979), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), @@ -162748,7 +166679,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2995), + [anon_sym_LBRACK] = ACTIONS(3015), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -162758,7 +166689,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread_local] = ACTIONS(63), [anon_sym___thread] = ACTIONS(63), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(3689), + [anon_sym_constexpr] = ACTIONS(3991), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -162771,7 +166702,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2999), + [sym_primitive_type] = ACTIONS(3019), [anon_sym_enum] = ACTIONS(73), [anon_sym_class] = ACTIONS(75), [anon_sym_struct] = ACTIONS(77), @@ -162781,91 +166712,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_decltype] = ACTIONS(127), [anon_sym_explicit] = ACTIONS(129), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(3691), + [anon_sym_template] = ACTIONS(3993), [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(3693), - [anon_sym_concept] = ACTIONS(3973), + [anon_sym_friend] = ACTIONS(3995), + [anon_sym_concept] = ACTIONS(153), }, - [855] = { - [sym_type_qualifier] = STATE(1698), - [sym_alignas_qualifier] = STATE(1868), - [sym_expression] = STATE(4694), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3678), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3678), - [sym_call_expression] = STATE(3678), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3678), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3678), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3678), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3678), - [aux_sym_array_declarator_repeat1] = STATE(1698), - [sym_identifier] = ACTIONS(3849), - [anon_sym_LPAREN2] = ACTIONS(3893), - [anon_sym_BANG] = ACTIONS(3853), - [anon_sym_TILDE] = ACTIONS(3853), - [anon_sym_DASH] = ACTIONS(3851), - [anon_sym_PLUS] = ACTIONS(3851), - [anon_sym_STAR] = ACTIONS(4079), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(4019), - [anon_sym_COLON_COLON] = ACTIONS(3857), + [883] = { + [sym_type_qualifier] = STATE(858), + [sym_alignas_qualifier] = STATE(1866), + [sym_expression] = STATE(4777), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3728), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3728), + [sym_call_expression] = STATE(3728), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3728), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3728), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3728), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3728), + [aux_sym_array_declarator_repeat1] = STATE(858), + [sym_identifier] = ACTIONS(3883), + [anon_sym_LPAREN2] = ACTIONS(3901), + [anon_sym_BANG] = ACTIONS(3887), + [anon_sym_TILDE] = ACTIONS(3887), + [anon_sym_DASH] = ACTIONS(3885), + [anon_sym_PLUS] = ACTIONS(3885), + [anon_sym_STAR] = ACTIONS(4143), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(4027), + [anon_sym_COLON_COLON] = ACTIONS(3891), [anon_sym_LBRACK] = ACTIONS(2020), - [anon_sym_static] = ACTIONS(4037), - [anon_sym_RBRACK] = ACTIONS(4081), - [anon_sym_const] = ACTIONS(4025), - [anon_sym_constexpr] = ACTIONS(4025), - [anon_sym_volatile] = ACTIONS(4025), - [anon_sym_restrict] = ACTIONS(4025), - [anon_sym___restrict__] = ACTIONS(4025), - [anon_sym__Atomic] = ACTIONS(4025), - [anon_sym__Noreturn] = ACTIONS(4025), - [anon_sym_noreturn] = ACTIONS(4025), - [anon_sym__Nonnull] = ACTIONS(4025), - [anon_sym_mutable] = ACTIONS(4025), - [anon_sym_constinit] = ACTIONS(4025), - [anon_sym_consteval] = ACTIONS(4025), - [anon_sym_alignas] = ACTIONS(4027), - [anon_sym__Alignas] = ACTIONS(4027), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3851), - [anon_sym_compl] = ACTIONS(3851), - [anon_sym_DASH_DASH] = ACTIONS(3897), - [anon_sym_PLUS_PLUS] = ACTIONS(3897), - [anon_sym_sizeof] = ACTIONS(3859), + [anon_sym_static] = ACTIONS(4145), + [anon_sym_RBRACK] = ACTIONS(4147), + [anon_sym_const] = ACTIONS(4033), + [anon_sym_constexpr] = ACTIONS(4033), + [anon_sym_volatile] = ACTIONS(4033), + [anon_sym_restrict] = ACTIONS(4033), + [anon_sym___restrict__] = ACTIONS(4033), + [anon_sym__Atomic] = ACTIONS(4033), + [anon_sym__Noreturn] = ACTIONS(4033), + [anon_sym_noreturn] = ACTIONS(4033), + [anon_sym__Nonnull] = ACTIONS(4033), + [anon_sym_mutable] = ACTIONS(4033), + [anon_sym_constinit] = ACTIONS(4033), + [anon_sym_consteval] = ACTIONS(4033), + [anon_sym_alignas] = ACTIONS(4035), + [anon_sym__Alignas] = ACTIONS(4035), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3885), + [anon_sym_compl] = ACTIONS(3885), + [anon_sym_DASH_DASH] = ACTIONS(3905), + [anon_sym_PLUS_PLUS] = ACTIONS(3905), + [anon_sym_sizeof] = ACTIONS(3893), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -162892,1757 +166823,5042 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(123), [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3861), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3863), - [anon_sym_new] = ACTIONS(3865), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3895), + [anon_sym_R_DQUOTE] = ACTIONS(159), + [anon_sym_LR_DQUOTE] = ACTIONS(159), + [anon_sym_uR_DQUOTE] = ACTIONS(159), + [anon_sym_UR_DQUOTE] = ACTIONS(159), + [anon_sym_u8R_DQUOTE] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(3897), + [anon_sym_new] = ACTIONS(3873), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), + }, + [884] = { + [sym_expression] = STATE(3230), + [sym__string] = STATE(3393), + [sym_conditional_expression] = STATE(3401), + [sym_assignment_expression] = STATE(3401), + [sym_pointer_expression] = STATE(3405), + [sym_unary_expression] = STATE(3401), + [sym_binary_expression] = STATE(3401), + [sym_update_expression] = STATE(3401), + [sym_cast_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3401), + [sym_alignof_expression] = STATE(3401), + [sym_offsetof_expression] = STATE(3401), + [sym_generic_expression] = STATE(3401), + [sym_subscript_expression] = STATE(3405), + [sym_call_expression] = STATE(3405), + [sym_gnu_asm_expression] = STATE(3401), + [sym_extension_expression] = STATE(3401), + [sym_field_expression] = STATE(3405), + [sym_compound_literal_expression] = STATE(3401), + [sym_parenthesized_expression] = STATE(3405), + [sym_char_literal] = STATE(3393), + [sym_concatenated_string] = STATE(3393), + [sym_string_literal] = STATE(2380), + [sym_null] = STATE(3401), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7745), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3401), + [sym_raw_string_literal] = STATE(2380), + [sym_co_await_expression] = STATE(3401), + [sym_new_expression] = STATE(3401), + [sym_delete_expression] = STATE(3401), + [sym_requires_clause] = STATE(3401), + [sym_requires_expression] = STATE(3401), + [sym_lambda_expression] = STATE(3401), + [sym_lambda_capture_specifier] = STATE(5494), + [sym_fold_expression] = STATE(3401), + [sym_parameter_pack_expansion] = STATE(3401), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3405), + [sym_qualified_type_identifier] = STATE(7745), + [sym_user_defined_literal] = STATE(3405), + [sym_identifier] = ACTIONS(3963), + [anon_sym_LPAREN2] = ACTIONS(4149), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(4152), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(4155), + [anon_sym_AMP_AMP] = ACTIONS(2559), + [anon_sym_AMP] = ACTIONS(4158), + [anon_sym___extension__] = ACTIONS(3966), + [anon_sym_COLON_COLON] = ACTIONS(3969), + [anon_sym___based] = ACTIONS(2569), + [anon_sym_LBRACK] = ACTIONS(4161), + [anon_sym_const] = ACTIONS(2569), + [anon_sym_constexpr] = ACTIONS(2569), + [anon_sym_volatile] = ACTIONS(2569), + [anon_sym_restrict] = ACTIONS(2569), + [anon_sym___restrict__] = ACTIONS(2569), + [anon_sym__Atomic] = ACTIONS(2569), + [anon_sym__Noreturn] = ACTIONS(2569), + [anon_sym_noreturn] = ACTIONS(2569), + [anon_sym__Nonnull] = ACTIONS(2569), + [anon_sym_mutable] = ACTIONS(2569), + [anon_sym_constinit] = ACTIONS(2569), + [anon_sym_consteval] = ACTIONS(2569), + [anon_sym_alignas] = ACTIONS(2569), + [anon_sym__Alignas] = ACTIONS(2569), + [sym_primitive_type] = ACTIONS(2459), + [anon_sym_not] = ACTIONS(1796), + [anon_sym_compl] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_sizeof] = ACTIONS(1824), + [anon_sym___alignof__] = ACTIONS(1826), + [anon_sym___alignof] = ACTIONS(1826), + [anon_sym__alignof] = ACTIONS(1826), + [anon_sym_alignof] = ACTIONS(1826), + [anon_sym__Alignof] = ACTIONS(1826), + [anon_sym_offsetof] = ACTIONS(1828), + [anon_sym__Generic] = ACTIONS(1830), + [anon_sym_asm] = ACTIONS(1832), + [anon_sym___asm__] = ACTIONS(1832), + [anon_sym___asm] = ACTIONS(1832), + [sym_number_literal] = ACTIONS(1834), + [anon_sym_L_SQUOTE] = ACTIONS(1836), + [anon_sym_u_SQUOTE] = ACTIONS(1836), + [anon_sym_U_SQUOTE] = ACTIONS(1836), + [anon_sym_u8_SQUOTE] = ACTIONS(1836), + [anon_sym_SQUOTE] = ACTIONS(1836), + [anon_sym_L_DQUOTE] = ACTIONS(1838), + [anon_sym_u_DQUOTE] = ACTIONS(1838), + [anon_sym_U_DQUOTE] = ACTIONS(1838), + [anon_sym_u8_DQUOTE] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym_true] = ACTIONS(1840), + [sym_false] = ACTIONS(1840), + [anon_sym_NULL] = ACTIONS(1842), + [anon_sym_nullptr] = ACTIONS(1842), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2580), + [anon_sym_template] = ACTIONS(2583), + [anon_sym_operator] = ACTIONS(2569), + [anon_sym_delete] = ACTIONS(1852), + [anon_sym_R_DQUOTE] = ACTIONS(1854), + [anon_sym_LR_DQUOTE] = ACTIONS(1854), + [anon_sym_uR_DQUOTE] = ACTIONS(1854), + [anon_sym_UR_DQUOTE] = ACTIONS(1854), + [anon_sym_u8R_DQUOTE] = ACTIONS(1854), + [anon_sym_co_await] = ACTIONS(1856), + [anon_sym_new] = ACTIONS(1858), + [anon_sym_requires] = ACTIONS(1860), + [sym_this] = ACTIONS(1840), + }, + [885] = { + [sym_string_literal] = STATE(2657), + [sym_template_argument_list] = STATE(1624), + [sym_raw_string_literal] = STATE(2657), + [aux_sym_sized_type_specifier_repeat1] = STATE(2660), + [sym_identifier] = ACTIONS(4164), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4166), + [anon_sym_COMMA] = ACTIONS(4166), + [anon_sym_LPAREN2] = ACTIONS(4168), + [anon_sym_TILDE] = ACTIONS(4172), + [anon_sym_DASH] = ACTIONS(4174), + [anon_sym_PLUS] = ACTIONS(4174), + [anon_sym_STAR] = ACTIONS(4176), + [anon_sym_SLASH] = ACTIONS(4174), + [anon_sym_PERCENT] = ACTIONS(4174), + [anon_sym_PIPE_PIPE] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4179), + [anon_sym_PIPE] = ACTIONS(4174), + [anon_sym_CARET] = ACTIONS(4174), + [anon_sym_AMP] = ACTIONS(4176), + [anon_sym_EQ_EQ] = ACTIONS(4166), + [anon_sym_BANG_EQ] = ACTIONS(4166), + [anon_sym_GT] = ACTIONS(4174), + [anon_sym_GT_EQ] = ACTIONS(4166), + [anon_sym_LT_EQ] = ACTIONS(4174), + [anon_sym_LT] = ACTIONS(4182), + [anon_sym_LT_LT] = ACTIONS(4174), + [anon_sym_GT_GT] = ACTIONS(4174), + [anon_sym_SEMI] = ACTIONS(4179), + [anon_sym___extension__] = ACTIONS(4164), + [anon_sym_virtual] = ACTIONS(4164), + [anon_sym_extern] = ACTIONS(4164), + [anon_sym___attribute__] = ACTIONS(4164), + [anon_sym___attribute] = ACTIONS(4164), + [anon_sym_COLON] = ACTIONS(4185), + [anon_sym_COLON_COLON] = ACTIONS(4187), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4189), + [anon_sym___declspec] = ACTIONS(4164), + [anon_sym___based] = ACTIONS(4164), + [anon_sym___cdecl] = ACTIONS(4164), + [anon_sym___clrcall] = ACTIONS(4164), + [anon_sym___stdcall] = ACTIONS(4164), + [anon_sym___fastcall] = ACTIONS(4164), + [anon_sym___thiscall] = ACTIONS(4164), + [anon_sym___vectorcall] = ACTIONS(4164), + [anon_sym_LBRACE] = ACTIONS(4192), + [anon_sym_RBRACE] = ACTIONS(4166), + [anon_sym_signed] = ACTIONS(4194), + [anon_sym_unsigned] = ACTIONS(4194), + [anon_sym_long] = ACTIONS(4194), + [anon_sym_short] = ACTIONS(4194), + [anon_sym_LBRACK] = ACTIONS(4196), + [anon_sym_static] = ACTIONS(4164), + [anon_sym_EQ] = ACTIONS(4200), + [anon_sym_register] = ACTIONS(4164), + [anon_sym_inline] = ACTIONS(4164), + [anon_sym___inline] = ACTIONS(4164), + [anon_sym___inline__] = ACTIONS(4164), + [anon_sym___forceinline] = ACTIONS(4164), + [anon_sym_thread_local] = ACTIONS(4164), + [anon_sym___thread] = ACTIONS(4164), + [anon_sym_const] = ACTIONS(4164), + [anon_sym_constexpr] = ACTIONS(4164), + [anon_sym_volatile] = ACTIONS(4164), + [anon_sym_restrict] = ACTIONS(4164), + [anon_sym___restrict__] = ACTIONS(4164), + [anon_sym__Atomic] = ACTIONS(4164), + [anon_sym__Noreturn] = ACTIONS(4164), + [anon_sym_noreturn] = ACTIONS(4164), + [anon_sym__Nonnull] = ACTIONS(4164), + [anon_sym_mutable] = ACTIONS(4164), + [anon_sym_constinit] = ACTIONS(4164), + [anon_sym_consteval] = ACTIONS(4164), + [anon_sym_alignas] = ACTIONS(4164), + [anon_sym__Alignas] = ACTIONS(4164), + [anon_sym_QMARK] = ACTIONS(4166), + [anon_sym_STAR_EQ] = ACTIONS(4202), + [anon_sym_SLASH_EQ] = ACTIONS(4202), + [anon_sym_PERCENT_EQ] = ACTIONS(4202), + [anon_sym_PLUS_EQ] = ACTIONS(4202), + [anon_sym_DASH_EQ] = ACTIONS(4202), + [anon_sym_LT_LT_EQ] = ACTIONS(4202), + [anon_sym_GT_GT_EQ] = ACTIONS(4202), + [anon_sym_AMP_EQ] = ACTIONS(4202), + [anon_sym_CARET_EQ] = ACTIONS(4202), + [anon_sym_PIPE_EQ] = ACTIONS(4202), + [anon_sym_and_eq] = ACTIONS(4200), + [anon_sym_or_eq] = ACTIONS(4200), + [anon_sym_xor_eq] = ACTIONS(4200), + [anon_sym_LT_EQ_GT] = ACTIONS(4166), + [anon_sym_or] = ACTIONS(4174), + [anon_sym_and] = ACTIONS(4174), + [anon_sym_bitor] = ACTIONS(4174), + [anon_sym_xor] = ACTIONS(4174), + [anon_sym_bitand] = ACTIONS(4174), + [anon_sym_not_eq] = ACTIONS(4174), + [anon_sym_DASH_DASH] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4174), + [anon_sym_DOT_STAR] = ACTIONS(4166), + [anon_sym_DASH_GT] = ACTIONS(4166), + [anon_sym_L_DQUOTE] = ACTIONS(3631), + [anon_sym_u_DQUOTE] = ACTIONS(3631), + [anon_sym_U_DQUOTE] = ACTIONS(3631), + [anon_sym_u8_DQUOTE] = ACTIONS(3631), + [anon_sym_DQUOTE] = ACTIONS(3631), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4164), + [anon_sym_decltype] = ACTIONS(4164), + [anon_sym_template] = ACTIONS(4164), + [anon_sym_operator] = ACTIONS(4164), + [anon_sym_R_DQUOTE] = ACTIONS(3635), + [anon_sym_LR_DQUOTE] = ACTIONS(3635), + [anon_sym_uR_DQUOTE] = ACTIONS(3635), + [anon_sym_UR_DQUOTE] = ACTIONS(3635), + [anon_sym_u8R_DQUOTE] = ACTIONS(3635), + }, + [886] = { + [sym_catch_clause] = STATE(886), + [aux_sym_constructor_try_statement_repeat1] = STATE(886), + [sym_identifier] = ACTIONS(2476), + [anon_sym_LPAREN2] = ACTIONS(2478), + [anon_sym_BANG] = ACTIONS(2478), + [anon_sym_TILDE] = ACTIONS(2478), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_STAR] = ACTIONS(2478), + [anon_sym_AMP] = ACTIONS(2478), + [anon_sym_SEMI] = ACTIONS(2478), + [anon_sym___extension__] = ACTIONS(2476), + [anon_sym_typedef] = ACTIONS(2476), + [anon_sym_virtual] = ACTIONS(2476), + [anon_sym_extern] = ACTIONS(2476), + [anon_sym___attribute__] = ACTIONS(2476), + [anon_sym___attribute] = ACTIONS(2476), + [anon_sym_COLON_COLON] = ACTIONS(2478), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2478), + [anon_sym___declspec] = ACTIONS(2476), + [anon_sym_LBRACE] = ACTIONS(2478), + [anon_sym_signed] = ACTIONS(2476), + [anon_sym_unsigned] = ACTIONS(2476), + [anon_sym_long] = ACTIONS(2476), + [anon_sym_short] = ACTIONS(2476), + [anon_sym_LBRACK] = ACTIONS(2476), + [anon_sym_static] = ACTIONS(2476), + [anon_sym_register] = ACTIONS(2476), + [anon_sym_inline] = ACTIONS(2476), + [anon_sym___inline] = ACTIONS(2476), + [anon_sym___inline__] = ACTIONS(2476), + [anon_sym___forceinline] = ACTIONS(2476), + [anon_sym_thread_local] = ACTIONS(2476), + [anon_sym___thread] = ACTIONS(2476), + [anon_sym_const] = ACTIONS(2476), + [anon_sym_constexpr] = ACTIONS(2476), + [anon_sym_volatile] = ACTIONS(2476), + [anon_sym_restrict] = ACTIONS(2476), + [anon_sym___restrict__] = ACTIONS(2476), + [anon_sym__Atomic] = ACTIONS(2476), + [anon_sym__Noreturn] = ACTIONS(2476), + [anon_sym_noreturn] = ACTIONS(2476), + [anon_sym__Nonnull] = ACTIONS(2476), + [anon_sym_mutable] = ACTIONS(2476), + [anon_sym_constinit] = ACTIONS(2476), + [anon_sym_consteval] = ACTIONS(2476), + [anon_sym_alignas] = ACTIONS(2476), + [anon_sym__Alignas] = ACTIONS(2476), + [sym_primitive_type] = ACTIONS(2476), + [anon_sym_enum] = ACTIONS(2476), + [anon_sym_class] = ACTIONS(2476), + [anon_sym_struct] = ACTIONS(2476), + [anon_sym_union] = ACTIONS(2476), + [anon_sym_if] = ACTIONS(2476), + [anon_sym_else] = ACTIONS(2476), + [anon_sym_switch] = ACTIONS(2476), + [anon_sym_while] = ACTIONS(2476), + [anon_sym_do] = ACTIONS(2476), + [anon_sym_for] = ACTIONS(2476), + [anon_sym_return] = ACTIONS(2476), + [anon_sym_break] = ACTIONS(2476), + [anon_sym_continue] = ACTIONS(2476), + [anon_sym_goto] = ACTIONS(2476), + [anon_sym___try] = ACTIONS(2476), + [anon_sym___leave] = ACTIONS(2476), + [anon_sym_not] = ACTIONS(2476), + [anon_sym_compl] = ACTIONS(2476), + [anon_sym_DASH_DASH] = ACTIONS(2478), + [anon_sym_PLUS_PLUS] = ACTIONS(2478), + [anon_sym_sizeof] = ACTIONS(2476), + [anon_sym___alignof__] = ACTIONS(2476), + [anon_sym___alignof] = ACTIONS(2476), + [anon_sym__alignof] = ACTIONS(2476), + [anon_sym_alignof] = ACTIONS(2476), + [anon_sym__Alignof] = ACTIONS(2476), + [anon_sym_offsetof] = ACTIONS(2476), + [anon_sym__Generic] = ACTIONS(2476), + [anon_sym_asm] = ACTIONS(2476), + [anon_sym___asm__] = ACTIONS(2476), + [anon_sym___asm] = ACTIONS(2476), + [sym_number_literal] = ACTIONS(2478), + [anon_sym_L_SQUOTE] = ACTIONS(2478), + [anon_sym_u_SQUOTE] = ACTIONS(2478), + [anon_sym_U_SQUOTE] = ACTIONS(2478), + [anon_sym_u8_SQUOTE] = ACTIONS(2478), + [anon_sym_SQUOTE] = ACTIONS(2478), + [anon_sym_L_DQUOTE] = ACTIONS(2478), + [anon_sym_u_DQUOTE] = ACTIONS(2478), + [anon_sym_U_DQUOTE] = ACTIONS(2478), + [anon_sym_u8_DQUOTE] = ACTIONS(2478), + [anon_sym_DQUOTE] = ACTIONS(2478), + [sym_true] = ACTIONS(2476), + [sym_false] = ACTIONS(2476), + [anon_sym_NULL] = ACTIONS(2476), + [anon_sym_nullptr] = ACTIONS(2476), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2476), + [anon_sym_decltype] = ACTIONS(2476), + [anon_sym_typename] = ACTIONS(2476), + [anon_sym_template] = ACTIONS(2476), + [anon_sym_try] = ACTIONS(2476), + [anon_sym_delete] = ACTIONS(2476), + [anon_sym_throw] = ACTIONS(2476), + [anon_sym_co_return] = ACTIONS(2476), + [anon_sym_co_yield] = ACTIONS(2476), + [anon_sym_catch] = ACTIONS(4204), + [anon_sym_R_DQUOTE] = ACTIONS(2478), + [anon_sym_LR_DQUOTE] = ACTIONS(2478), + [anon_sym_uR_DQUOTE] = ACTIONS(2478), + [anon_sym_UR_DQUOTE] = ACTIONS(2478), + [anon_sym_u8R_DQUOTE] = ACTIONS(2478), + [anon_sym_co_await] = ACTIONS(2476), + [anon_sym_new] = ACTIONS(2476), + [anon_sym_requires] = ACTIONS(2476), + [sym_this] = ACTIONS(2476), + }, + [887] = { + [sym_expression] = STATE(2932), + [sym__string] = STATE(2917), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(2917), + [sym_concatenated_string] = STATE(2917), + [sym_string_literal] = STATE(2114), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(2114), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), + [sym_identifier] = ACTIONS(4207), + [anon_sym_LPAREN2] = ACTIONS(4210), + [anon_sym_BANG] = ACTIONS(1994), + [anon_sym_TILDE] = ACTIONS(4213), + [anon_sym_DASH] = ACTIONS(1992), + [anon_sym_PLUS] = ACTIONS(1992), + [anon_sym_STAR] = ACTIONS(2556), + [anon_sym_AMP_AMP] = ACTIONS(2559), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym___extension__] = ACTIONS(4216), + [anon_sym_COLON_COLON] = ACTIONS(4219), + [anon_sym___based] = ACTIONS(2569), + [anon_sym_LBRACK] = ACTIONS(4161), + [anon_sym_const] = ACTIONS(2569), + [anon_sym_constexpr] = ACTIONS(2569), + [anon_sym_volatile] = ACTIONS(2569), + [anon_sym_restrict] = ACTIONS(2569), + [anon_sym___restrict__] = ACTIONS(2569), + [anon_sym__Atomic] = ACTIONS(2569), + [anon_sym__Noreturn] = ACTIONS(2569), + [anon_sym_noreturn] = ACTIONS(2569), + [anon_sym__Nonnull] = ACTIONS(2569), + [anon_sym_mutable] = ACTIONS(2569), + [anon_sym_constinit] = ACTIONS(2569), + [anon_sym_consteval] = ACTIONS(2569), + [anon_sym_alignas] = ACTIONS(2569), + [anon_sym__Alignas] = ACTIONS(2569), + [sym_primitive_type] = ACTIONS(1956), + [anon_sym_not] = ACTIONS(1992), + [anon_sym_compl] = ACTIONS(1992), + [anon_sym_DASH_DASH] = ACTIONS(3355), + [anon_sym_PLUS_PLUS] = ACTIONS(3355), + [anon_sym_sizeof] = ACTIONS(2000), + [anon_sym___alignof__] = ACTIONS(1960), + [anon_sym___alignof] = ACTIONS(1960), + [anon_sym__alignof] = ACTIONS(1960), + [anon_sym_alignof] = ACTIONS(1960), + [anon_sym__Alignof] = ACTIONS(1960), + [anon_sym_offsetof] = ACTIONS(1962), + [anon_sym__Generic] = ACTIONS(1964), + [anon_sym_asm] = ACTIONS(1966), + [anon_sym___asm__] = ACTIONS(1966), + [anon_sym___asm] = ACTIONS(1966), + [sym_number_literal] = ACTIONS(2002), + [anon_sym_L_SQUOTE] = ACTIONS(2004), + [anon_sym_u_SQUOTE] = ACTIONS(2004), + [anon_sym_U_SQUOTE] = ACTIONS(2004), + [anon_sym_u8_SQUOTE] = ACTIONS(2004), + [anon_sym_SQUOTE] = ACTIONS(2004), + [anon_sym_L_DQUOTE] = ACTIONS(2006), + [anon_sym_u_DQUOTE] = ACTIONS(2006), + [anon_sym_U_DQUOTE] = ACTIONS(2006), + [anon_sym_u8_DQUOTE] = ACTIONS(2006), + [anon_sym_DQUOTE] = ACTIONS(2006), + [sym_true] = ACTIONS(1974), + [sym_false] = ACTIONS(1974), + [anon_sym_NULL] = ACTIONS(1976), + [anon_sym_nullptr] = ACTIONS(1976), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2580), + [anon_sym_template] = ACTIONS(2583), + [anon_sym_operator] = ACTIONS(2569), + [anon_sym_delete] = ACTIONS(2008), + [anon_sym_R_DQUOTE] = ACTIONS(2010), + [anon_sym_LR_DQUOTE] = ACTIONS(2010), + [anon_sym_uR_DQUOTE] = ACTIONS(2010), + [anon_sym_UR_DQUOTE] = ACTIONS(2010), + [anon_sym_u8R_DQUOTE] = ACTIONS(2010), + [anon_sym_co_await] = ACTIONS(2012), + [anon_sym_new] = ACTIONS(2014), + [anon_sym_requires] = ACTIONS(1988), + [sym_this] = ACTIONS(1974), + }, + [888] = { + [sym_catch_clause] = STATE(886), + [aux_sym_constructor_try_statement_repeat1] = STATE(886), + [sym_identifier] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2529), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym___extension__] = ACTIONS(2527), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym___attribute] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym___inline] = ACTIONS(2527), + [anon_sym___inline__] = ACTIONS(2527), + [anon_sym___forceinline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym___thread] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym___restrict__] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym__Noreturn] = ACTIONS(2527), + [anon_sym_noreturn] = ACTIONS(2527), + [anon_sym__Nonnull] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_alignas] = ACTIONS(2527), + [anon_sym__Alignas] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_else] = ACTIONS(2527), + [anon_sym_switch] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_do] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_goto] = ACTIONS(2527), + [anon_sym___try] = ACTIONS(2527), + [anon_sym___leave] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_compl] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_sizeof] = ACTIONS(2527), + [anon_sym___alignof__] = ACTIONS(2527), + [anon_sym___alignof] = ACTIONS(2527), + [anon_sym__alignof] = ACTIONS(2527), + [anon_sym_alignof] = ACTIONS(2527), + [anon_sym__Alignof] = ACTIONS(2527), + [anon_sym_offsetof] = ACTIONS(2527), + [anon_sym__Generic] = ACTIONS(2527), + [anon_sym_asm] = ACTIONS(2527), + [anon_sym___asm__] = ACTIONS(2527), + [anon_sym___asm] = ACTIONS(2527), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_L_SQUOTE] = ACTIONS(2529), + [anon_sym_u_SQUOTE] = ACTIONS(2529), + [anon_sym_U_SQUOTE] = ACTIONS(2529), + [anon_sym_u8_SQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_L_DQUOTE] = ACTIONS(2529), + [anon_sym_u_DQUOTE] = ACTIONS(2529), + [anon_sym_U_DQUOTE] = ACTIONS(2529), + [anon_sym_u8_DQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [anon_sym_NULL] = ACTIONS(2527), + [anon_sym_nullptr] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [anon_sym_delete] = ACTIONS(2527), + [anon_sym_throw] = ACTIONS(2527), + [anon_sym_co_return] = ACTIONS(2527), + [anon_sym_co_yield] = ACTIONS(2527), + [anon_sym_catch] = ACTIONS(4222), + [anon_sym_R_DQUOTE] = ACTIONS(2529), + [anon_sym_LR_DQUOTE] = ACTIONS(2529), + [anon_sym_uR_DQUOTE] = ACTIONS(2529), + [anon_sym_UR_DQUOTE] = ACTIONS(2529), + [anon_sym_u8R_DQUOTE] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2527), + [anon_sym_requires] = ACTIONS(2527), + [sym_this] = ACTIONS(2527), + }, + [889] = { + [sym_string_literal] = STATE(2657), + [sym_template_argument_list] = STATE(1625), + [sym_raw_string_literal] = STATE(2657), + [aux_sym_sized_type_specifier_repeat1] = STATE(2660), + [sym_identifier] = ACTIONS(4164), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4166), + [anon_sym_COMMA] = ACTIONS(4166), + [anon_sym_LPAREN2] = ACTIONS(4179), + [anon_sym_TILDE] = ACTIONS(4172), + [anon_sym_DASH] = ACTIONS(4174), + [anon_sym_PLUS] = ACTIONS(4174), + [anon_sym_STAR] = ACTIONS(4176), + [anon_sym_SLASH] = ACTIONS(4174), + [anon_sym_PERCENT] = ACTIONS(4174), + [anon_sym_PIPE_PIPE] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4179), + [anon_sym_PIPE] = ACTIONS(4174), + [anon_sym_CARET] = ACTIONS(4174), + [anon_sym_AMP] = ACTIONS(4176), + [anon_sym_EQ_EQ] = ACTIONS(4166), + [anon_sym_BANG_EQ] = ACTIONS(4166), + [anon_sym_GT] = ACTIONS(4174), + [anon_sym_GT_EQ] = ACTIONS(4166), + [anon_sym_LT_EQ] = ACTIONS(4174), + [anon_sym_LT] = ACTIONS(4182), + [anon_sym_LT_LT] = ACTIONS(4174), + [anon_sym_GT_GT] = ACTIONS(4174), + [anon_sym_SEMI] = ACTIONS(4166), + [anon_sym___extension__] = ACTIONS(4164), + [anon_sym_virtual] = ACTIONS(4164), + [anon_sym_extern] = ACTIONS(4164), + [anon_sym___attribute__] = ACTIONS(4164), + [anon_sym___attribute] = ACTIONS(4164), + [anon_sym_COLON] = ACTIONS(4224), + [anon_sym_COLON_COLON] = ACTIONS(4187), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4172), + [anon_sym___declspec] = ACTIONS(4164), + [anon_sym___based] = ACTIONS(4164), + [anon_sym___cdecl] = ACTIONS(4164), + [anon_sym___clrcall] = ACTIONS(4164), + [anon_sym___stdcall] = ACTIONS(4164), + [anon_sym___fastcall] = ACTIONS(4164), + [anon_sym___thiscall] = ACTIONS(4164), + [anon_sym___vectorcall] = ACTIONS(4164), + [anon_sym_LBRACE] = ACTIONS(4192), + [anon_sym_RBRACE] = ACTIONS(4166), + [anon_sym_signed] = ACTIONS(4194), + [anon_sym_unsigned] = ACTIONS(4194), + [anon_sym_long] = ACTIONS(4194), + [anon_sym_short] = ACTIONS(4194), + [anon_sym_LBRACK] = ACTIONS(4176), + [anon_sym_static] = ACTIONS(4164), + [anon_sym_EQ] = ACTIONS(4200), + [anon_sym_register] = ACTIONS(4164), + [anon_sym_inline] = ACTIONS(4164), + [anon_sym___inline] = ACTIONS(4164), + [anon_sym___inline__] = ACTIONS(4164), + [anon_sym___forceinline] = ACTIONS(4164), + [anon_sym_thread_local] = ACTIONS(4164), + [anon_sym___thread] = ACTIONS(4164), + [anon_sym_const] = ACTIONS(4164), + [anon_sym_constexpr] = ACTIONS(4164), + [anon_sym_volatile] = ACTIONS(4164), + [anon_sym_restrict] = ACTIONS(4164), + [anon_sym___restrict__] = ACTIONS(4164), + [anon_sym__Atomic] = ACTIONS(4164), + [anon_sym__Noreturn] = ACTIONS(4164), + [anon_sym_noreturn] = ACTIONS(4164), + [anon_sym__Nonnull] = ACTIONS(4164), + [anon_sym_mutable] = ACTIONS(4164), + [anon_sym_constinit] = ACTIONS(4164), + [anon_sym_consteval] = ACTIONS(4164), + [anon_sym_alignas] = ACTIONS(4164), + [anon_sym__Alignas] = ACTIONS(4164), + [anon_sym_QMARK] = ACTIONS(4166), + [anon_sym_STAR_EQ] = ACTIONS(4202), + [anon_sym_SLASH_EQ] = ACTIONS(4202), + [anon_sym_PERCENT_EQ] = ACTIONS(4202), + [anon_sym_PLUS_EQ] = ACTIONS(4202), + [anon_sym_DASH_EQ] = ACTIONS(4202), + [anon_sym_LT_LT_EQ] = ACTIONS(4202), + [anon_sym_GT_GT_EQ] = ACTIONS(4202), + [anon_sym_AMP_EQ] = ACTIONS(4202), + [anon_sym_CARET_EQ] = ACTIONS(4202), + [anon_sym_PIPE_EQ] = ACTIONS(4202), + [anon_sym_and_eq] = ACTIONS(4200), + [anon_sym_or_eq] = ACTIONS(4200), + [anon_sym_xor_eq] = ACTIONS(4200), + [anon_sym_LT_EQ_GT] = ACTIONS(4166), + [anon_sym_or] = ACTIONS(4174), + [anon_sym_and] = ACTIONS(4174), + [anon_sym_bitor] = ACTIONS(4174), + [anon_sym_xor] = ACTIONS(4174), + [anon_sym_bitand] = ACTIONS(4174), + [anon_sym_not_eq] = ACTIONS(4174), + [anon_sym_DASH_DASH] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4174), + [anon_sym_DOT_STAR] = ACTIONS(4166), + [anon_sym_DASH_GT] = ACTIONS(4166), + [anon_sym_L_DQUOTE] = ACTIONS(3631), + [anon_sym_u_DQUOTE] = ACTIONS(3631), + [anon_sym_U_DQUOTE] = ACTIONS(3631), + [anon_sym_u8_DQUOTE] = ACTIONS(3631), + [anon_sym_DQUOTE] = ACTIONS(3631), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4164), + [anon_sym_decltype] = ACTIONS(4164), + [anon_sym_template] = ACTIONS(4164), + [anon_sym_operator] = ACTIONS(4164), + [anon_sym_R_DQUOTE] = ACTIONS(3635), + [anon_sym_LR_DQUOTE] = ACTIONS(3635), + [anon_sym_uR_DQUOTE] = ACTIONS(3635), + [anon_sym_UR_DQUOTE] = ACTIONS(3635), + [anon_sym_u8R_DQUOTE] = ACTIONS(3635), + }, + [890] = { + [sym_string_literal] = STATE(2657), + [sym_template_argument_list] = STATE(1625), + [sym_raw_string_literal] = STATE(2657), + [aux_sym_sized_type_specifier_repeat1] = STATE(2660), + [sym_identifier] = ACTIONS(4164), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4166), + [anon_sym_COMMA] = ACTIONS(4166), + [anon_sym_LPAREN2] = ACTIONS(4179), + [anon_sym_TILDE] = ACTIONS(4172), + [anon_sym_DASH] = ACTIONS(4174), + [anon_sym_PLUS] = ACTIONS(4174), + [anon_sym_STAR] = ACTIONS(4176), + [anon_sym_SLASH] = ACTIONS(4174), + [anon_sym_PERCENT] = ACTIONS(4174), + [anon_sym_PIPE_PIPE] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4179), + [anon_sym_PIPE] = ACTIONS(4174), + [anon_sym_CARET] = ACTIONS(4174), + [anon_sym_AMP] = ACTIONS(4176), + [anon_sym_EQ_EQ] = ACTIONS(4166), + [anon_sym_BANG_EQ] = ACTIONS(4166), + [anon_sym_GT] = ACTIONS(4174), + [anon_sym_GT_EQ] = ACTIONS(4166), + [anon_sym_LT_EQ] = ACTIONS(4174), + [anon_sym_LT] = ACTIONS(4182), + [anon_sym_LT_LT] = ACTIONS(4174), + [anon_sym_GT_GT] = ACTIONS(4174), + [anon_sym_SEMI] = ACTIONS(4166), + [anon_sym___extension__] = ACTIONS(4164), + [anon_sym_virtual] = ACTIONS(4164), + [anon_sym_extern] = ACTIONS(4164), + [anon_sym___attribute__] = ACTIONS(4164), + [anon_sym___attribute] = ACTIONS(4164), + [anon_sym_COLON] = ACTIONS(4226), + [anon_sym_COLON_COLON] = ACTIONS(4187), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4172), + [anon_sym___declspec] = ACTIONS(4164), + [anon_sym___based] = ACTIONS(4164), + [anon_sym___cdecl] = ACTIONS(4164), + [anon_sym___clrcall] = ACTIONS(4164), + [anon_sym___stdcall] = ACTIONS(4164), + [anon_sym___fastcall] = ACTIONS(4164), + [anon_sym___thiscall] = ACTIONS(4164), + [anon_sym___vectorcall] = ACTIONS(4164), + [anon_sym_LBRACE] = ACTIONS(4192), + [anon_sym_signed] = ACTIONS(4194), + [anon_sym_unsigned] = ACTIONS(4194), + [anon_sym_long] = ACTIONS(4194), + [anon_sym_short] = ACTIONS(4194), + [anon_sym_LBRACK] = ACTIONS(4176), + [anon_sym_static] = ACTIONS(4164), + [anon_sym_EQ] = ACTIONS(4200), + [anon_sym_register] = ACTIONS(4164), + [anon_sym_inline] = ACTIONS(4164), + [anon_sym___inline] = ACTIONS(4164), + [anon_sym___inline__] = ACTIONS(4164), + [anon_sym___forceinline] = ACTIONS(4164), + [anon_sym_thread_local] = ACTIONS(4164), + [anon_sym___thread] = ACTIONS(4164), + [anon_sym_const] = ACTIONS(4164), + [anon_sym_constexpr] = ACTIONS(4164), + [anon_sym_volatile] = ACTIONS(4164), + [anon_sym_restrict] = ACTIONS(4164), + [anon_sym___restrict__] = ACTIONS(4164), + [anon_sym__Atomic] = ACTIONS(4164), + [anon_sym__Noreturn] = ACTIONS(4164), + [anon_sym_noreturn] = ACTIONS(4164), + [anon_sym__Nonnull] = ACTIONS(4164), + [anon_sym_mutable] = ACTIONS(4164), + [anon_sym_constinit] = ACTIONS(4164), + [anon_sym_consteval] = ACTIONS(4164), + [anon_sym_alignas] = ACTIONS(4164), + [anon_sym__Alignas] = ACTIONS(4164), + [anon_sym_QMARK] = ACTIONS(4166), + [anon_sym_STAR_EQ] = ACTIONS(4202), + [anon_sym_SLASH_EQ] = ACTIONS(4202), + [anon_sym_PERCENT_EQ] = ACTIONS(4202), + [anon_sym_PLUS_EQ] = ACTIONS(4202), + [anon_sym_DASH_EQ] = ACTIONS(4202), + [anon_sym_LT_LT_EQ] = ACTIONS(4202), + [anon_sym_GT_GT_EQ] = ACTIONS(4202), + [anon_sym_AMP_EQ] = ACTIONS(4202), + [anon_sym_CARET_EQ] = ACTIONS(4202), + [anon_sym_PIPE_EQ] = ACTIONS(4202), + [anon_sym_and_eq] = ACTIONS(4200), + [anon_sym_or_eq] = ACTIONS(4200), + [anon_sym_xor_eq] = ACTIONS(4200), + [anon_sym_LT_EQ_GT] = ACTIONS(4166), + [anon_sym_or] = ACTIONS(4174), + [anon_sym_and] = ACTIONS(4174), + [anon_sym_bitor] = ACTIONS(4174), + [anon_sym_xor] = ACTIONS(4174), + [anon_sym_bitand] = ACTIONS(4174), + [anon_sym_not_eq] = ACTIONS(4174), + [anon_sym_DASH_DASH] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4174), + [anon_sym_DOT_STAR] = ACTIONS(4166), + [anon_sym_DASH_GT] = ACTIONS(4166), + [anon_sym_L_DQUOTE] = ACTIONS(3631), + [anon_sym_u_DQUOTE] = ACTIONS(3631), + [anon_sym_U_DQUOTE] = ACTIONS(3631), + [anon_sym_u8_DQUOTE] = ACTIONS(3631), + [anon_sym_DQUOTE] = ACTIONS(3631), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4164), + [anon_sym_decltype] = ACTIONS(4164), + [anon_sym_template] = ACTIONS(4164), + [anon_sym_operator] = ACTIONS(4164), + [anon_sym_R_DQUOTE] = ACTIONS(3635), + [anon_sym_LR_DQUOTE] = ACTIONS(3635), + [anon_sym_uR_DQUOTE] = ACTIONS(3635), + [anon_sym_UR_DQUOTE] = ACTIONS(3635), + [anon_sym_u8R_DQUOTE] = ACTIONS(3635), + }, + [891] = { + [sym_string_literal] = STATE(2657), + [sym_template_argument_list] = STATE(1624), + [sym_raw_string_literal] = STATE(2657), + [aux_sym_sized_type_specifier_repeat1] = STATE(2660), + [sym_identifier] = ACTIONS(4164), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4166), + [anon_sym_COMMA] = ACTIONS(4166), + [anon_sym_LPAREN2] = ACTIONS(4168), + [anon_sym_TILDE] = ACTIONS(4172), + [anon_sym_DASH] = ACTIONS(4174), + [anon_sym_PLUS] = ACTIONS(4174), + [anon_sym_STAR] = ACTIONS(4176), + [anon_sym_SLASH] = ACTIONS(4174), + [anon_sym_PERCENT] = ACTIONS(4174), + [anon_sym_PIPE_PIPE] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4179), + [anon_sym_PIPE] = ACTIONS(4174), + [anon_sym_CARET] = ACTIONS(4174), + [anon_sym_AMP] = ACTIONS(4176), + [anon_sym_EQ_EQ] = ACTIONS(4166), + [anon_sym_BANG_EQ] = ACTIONS(4166), + [anon_sym_GT] = ACTIONS(4174), + [anon_sym_GT_EQ] = ACTIONS(4166), + [anon_sym_LT_EQ] = ACTIONS(4174), + [anon_sym_LT] = ACTIONS(4182), + [anon_sym_LT_LT] = ACTIONS(4174), + [anon_sym_GT_GT] = ACTIONS(4174), + [anon_sym_SEMI] = ACTIONS(4179), + [anon_sym___extension__] = ACTIONS(4164), + [anon_sym_virtual] = ACTIONS(4164), + [anon_sym_extern] = ACTIONS(4164), + [anon_sym___attribute__] = ACTIONS(4164), + [anon_sym___attribute] = ACTIONS(4164), + [anon_sym_COLON] = ACTIONS(4224), + [anon_sym_COLON_COLON] = ACTIONS(4187), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4189), + [anon_sym___declspec] = ACTIONS(4164), + [anon_sym___based] = ACTIONS(4164), + [anon_sym___cdecl] = ACTIONS(4164), + [anon_sym___clrcall] = ACTIONS(4164), + [anon_sym___stdcall] = ACTIONS(4164), + [anon_sym___fastcall] = ACTIONS(4164), + [anon_sym___thiscall] = ACTIONS(4164), + [anon_sym___vectorcall] = ACTIONS(4164), + [anon_sym_LBRACE] = ACTIONS(4192), + [anon_sym_signed] = ACTIONS(4194), + [anon_sym_unsigned] = ACTIONS(4194), + [anon_sym_long] = ACTIONS(4194), + [anon_sym_short] = ACTIONS(4194), + [anon_sym_LBRACK] = ACTIONS(4196), + [anon_sym_static] = ACTIONS(4164), + [anon_sym_EQ] = ACTIONS(4200), + [anon_sym_register] = ACTIONS(4164), + [anon_sym_inline] = ACTIONS(4164), + [anon_sym___inline] = ACTIONS(4164), + [anon_sym___inline__] = ACTIONS(4164), + [anon_sym___forceinline] = ACTIONS(4164), + [anon_sym_thread_local] = ACTIONS(4164), + [anon_sym___thread] = ACTIONS(4164), + [anon_sym_const] = ACTIONS(4164), + [anon_sym_constexpr] = ACTIONS(4164), + [anon_sym_volatile] = ACTIONS(4164), + [anon_sym_restrict] = ACTIONS(4164), + [anon_sym___restrict__] = ACTIONS(4164), + [anon_sym__Atomic] = ACTIONS(4164), + [anon_sym__Noreturn] = ACTIONS(4164), + [anon_sym_noreturn] = ACTIONS(4164), + [anon_sym__Nonnull] = ACTIONS(4164), + [anon_sym_mutable] = ACTIONS(4164), + [anon_sym_constinit] = ACTIONS(4164), + [anon_sym_consteval] = ACTIONS(4164), + [anon_sym_alignas] = ACTIONS(4164), + [anon_sym__Alignas] = ACTIONS(4164), + [anon_sym_QMARK] = ACTIONS(4166), + [anon_sym_STAR_EQ] = ACTIONS(4202), + [anon_sym_SLASH_EQ] = ACTIONS(4202), + [anon_sym_PERCENT_EQ] = ACTIONS(4202), + [anon_sym_PLUS_EQ] = ACTIONS(4202), + [anon_sym_DASH_EQ] = ACTIONS(4202), + [anon_sym_LT_LT_EQ] = ACTIONS(4202), + [anon_sym_GT_GT_EQ] = ACTIONS(4202), + [anon_sym_AMP_EQ] = ACTIONS(4202), + [anon_sym_CARET_EQ] = ACTIONS(4202), + [anon_sym_PIPE_EQ] = ACTIONS(4202), + [anon_sym_and_eq] = ACTIONS(4200), + [anon_sym_or_eq] = ACTIONS(4200), + [anon_sym_xor_eq] = ACTIONS(4200), + [anon_sym_LT_EQ_GT] = ACTIONS(4166), + [anon_sym_or] = ACTIONS(4174), + [anon_sym_and] = ACTIONS(4174), + [anon_sym_bitor] = ACTIONS(4174), + [anon_sym_xor] = ACTIONS(4174), + [anon_sym_bitand] = ACTIONS(4174), + [anon_sym_not_eq] = ACTIONS(4174), + [anon_sym_DASH_DASH] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4174), + [anon_sym_DOT_STAR] = ACTIONS(4166), + [anon_sym_DASH_GT] = ACTIONS(4166), + [anon_sym_L_DQUOTE] = ACTIONS(3631), + [anon_sym_u_DQUOTE] = ACTIONS(3631), + [anon_sym_U_DQUOTE] = ACTIONS(3631), + [anon_sym_u8_DQUOTE] = ACTIONS(3631), + [anon_sym_DQUOTE] = ACTIONS(3631), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4164), + [anon_sym_decltype] = ACTIONS(4164), + [anon_sym_template] = ACTIONS(4164), + [anon_sym_operator] = ACTIONS(4164), + [anon_sym_R_DQUOTE] = ACTIONS(3635), + [anon_sym_LR_DQUOTE] = ACTIONS(3635), + [anon_sym_uR_DQUOTE] = ACTIONS(3635), + [anon_sym_UR_DQUOTE] = ACTIONS(3635), + [anon_sym_u8R_DQUOTE] = ACTIONS(3635), + }, + [892] = { + [sym_string_literal] = STATE(2657), + [sym_template_argument_list] = STATE(1624), + [sym_raw_string_literal] = STATE(2657), + [aux_sym_sized_type_specifier_repeat1] = STATE(2660), + [sym_identifier] = ACTIONS(4164), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4166), + [anon_sym_COMMA] = ACTIONS(4166), + [anon_sym_LPAREN2] = ACTIONS(4168), + [anon_sym_TILDE] = ACTIONS(4172), + [anon_sym_DASH] = ACTIONS(4174), + [anon_sym_PLUS] = ACTIONS(4174), + [anon_sym_STAR] = ACTIONS(4176), + [anon_sym_SLASH] = ACTIONS(4174), + [anon_sym_PERCENT] = ACTIONS(4174), + [anon_sym_PIPE_PIPE] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4179), + [anon_sym_PIPE] = ACTIONS(4174), + [anon_sym_CARET] = ACTIONS(4174), + [anon_sym_AMP] = ACTIONS(4176), + [anon_sym_EQ_EQ] = ACTIONS(4166), + [anon_sym_BANG_EQ] = ACTIONS(4166), + [anon_sym_GT] = ACTIONS(4174), + [anon_sym_GT_EQ] = ACTIONS(4166), + [anon_sym_LT_EQ] = ACTIONS(4174), + [anon_sym_LT] = ACTIONS(4182), + [anon_sym_LT_LT] = ACTIONS(4174), + [anon_sym_GT_GT] = ACTIONS(4174), + [anon_sym_SEMI] = ACTIONS(4179), + [anon_sym___extension__] = ACTIONS(4164), + [anon_sym_virtual] = ACTIONS(4164), + [anon_sym_extern] = ACTIONS(4164), + [anon_sym___attribute__] = ACTIONS(4164), + [anon_sym___attribute] = ACTIONS(4164), + [anon_sym_COLON] = ACTIONS(4226), + [anon_sym_COLON_COLON] = ACTIONS(4187), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4189), + [anon_sym___declspec] = ACTIONS(4164), + [anon_sym___based] = ACTIONS(4164), + [anon_sym___cdecl] = ACTIONS(4164), + [anon_sym___clrcall] = ACTIONS(4164), + [anon_sym___stdcall] = ACTIONS(4164), + [anon_sym___fastcall] = ACTIONS(4164), + [anon_sym___thiscall] = ACTIONS(4164), + [anon_sym___vectorcall] = ACTIONS(4164), + [anon_sym_LBRACE] = ACTIONS(4192), + [anon_sym_signed] = ACTIONS(4194), + [anon_sym_unsigned] = ACTIONS(4194), + [anon_sym_long] = ACTIONS(4194), + [anon_sym_short] = ACTIONS(4194), + [anon_sym_LBRACK] = ACTIONS(4196), + [anon_sym_static] = ACTIONS(4164), + [anon_sym_EQ] = ACTIONS(4200), + [anon_sym_register] = ACTIONS(4164), + [anon_sym_inline] = ACTIONS(4164), + [anon_sym___inline] = ACTIONS(4164), + [anon_sym___inline__] = ACTIONS(4164), + [anon_sym___forceinline] = ACTIONS(4164), + [anon_sym_thread_local] = ACTIONS(4164), + [anon_sym___thread] = ACTIONS(4164), + [anon_sym_const] = ACTIONS(4164), + [anon_sym_constexpr] = ACTIONS(4164), + [anon_sym_volatile] = ACTIONS(4164), + [anon_sym_restrict] = ACTIONS(4164), + [anon_sym___restrict__] = ACTIONS(4164), + [anon_sym__Atomic] = ACTIONS(4164), + [anon_sym__Noreturn] = ACTIONS(4164), + [anon_sym_noreturn] = ACTIONS(4164), + [anon_sym__Nonnull] = ACTIONS(4164), + [anon_sym_mutable] = ACTIONS(4164), + [anon_sym_constinit] = ACTIONS(4164), + [anon_sym_consteval] = ACTIONS(4164), + [anon_sym_alignas] = ACTIONS(4164), + [anon_sym__Alignas] = ACTIONS(4164), + [anon_sym_QMARK] = ACTIONS(4166), + [anon_sym_STAR_EQ] = ACTIONS(4202), + [anon_sym_SLASH_EQ] = ACTIONS(4202), + [anon_sym_PERCENT_EQ] = ACTIONS(4202), + [anon_sym_PLUS_EQ] = ACTIONS(4202), + [anon_sym_DASH_EQ] = ACTIONS(4202), + [anon_sym_LT_LT_EQ] = ACTIONS(4202), + [anon_sym_GT_GT_EQ] = ACTIONS(4202), + [anon_sym_AMP_EQ] = ACTIONS(4202), + [anon_sym_CARET_EQ] = ACTIONS(4202), + [anon_sym_PIPE_EQ] = ACTIONS(4202), + [anon_sym_and_eq] = ACTIONS(4200), + [anon_sym_or_eq] = ACTIONS(4200), + [anon_sym_xor_eq] = ACTIONS(4200), + [anon_sym_LT_EQ_GT] = ACTIONS(4166), + [anon_sym_or] = ACTIONS(4174), + [anon_sym_and] = ACTIONS(4174), + [anon_sym_bitor] = ACTIONS(4174), + [anon_sym_xor] = ACTIONS(4174), + [anon_sym_bitand] = ACTIONS(4174), + [anon_sym_not_eq] = ACTIONS(4174), + [anon_sym_DASH_DASH] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4174), + [anon_sym_DOT_STAR] = ACTIONS(4166), + [anon_sym_DASH_GT] = ACTIONS(4166), + [anon_sym_L_DQUOTE] = ACTIONS(3631), + [anon_sym_u_DQUOTE] = ACTIONS(3631), + [anon_sym_U_DQUOTE] = ACTIONS(3631), + [anon_sym_u8_DQUOTE] = ACTIONS(3631), + [anon_sym_DQUOTE] = ACTIONS(3631), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4164), + [anon_sym_decltype] = ACTIONS(4164), + [anon_sym_template] = ACTIONS(4164), + [anon_sym_operator] = ACTIONS(4164), + [anon_sym_R_DQUOTE] = ACTIONS(3635), + [anon_sym_LR_DQUOTE] = ACTIONS(3635), + [anon_sym_uR_DQUOTE] = ACTIONS(3635), + [anon_sym_UR_DQUOTE] = ACTIONS(3635), + [anon_sym_u8R_DQUOTE] = ACTIONS(3635), + }, + [893] = { + [sym_string_literal] = STATE(2657), + [sym_template_argument_list] = STATE(1624), + [sym_raw_string_literal] = STATE(2657), + [aux_sym_sized_type_specifier_repeat1] = STATE(2660), + [sym_identifier] = ACTIONS(4164), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4166), + [anon_sym_COMMA] = ACTIONS(4166), + [anon_sym_LPAREN2] = ACTIONS(4168), + [anon_sym_TILDE] = ACTIONS(4172), + [anon_sym_DASH] = ACTIONS(4174), + [anon_sym_PLUS] = ACTIONS(4174), + [anon_sym_STAR] = ACTIONS(4176), + [anon_sym_SLASH] = ACTIONS(4174), + [anon_sym_PERCENT] = ACTIONS(4174), + [anon_sym_PIPE_PIPE] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4179), + [anon_sym_PIPE] = ACTIONS(4174), + [anon_sym_CARET] = ACTIONS(4174), + [anon_sym_AMP] = ACTIONS(4176), + [anon_sym_EQ_EQ] = ACTIONS(4166), + [anon_sym_BANG_EQ] = ACTIONS(4166), + [anon_sym_GT] = ACTIONS(4174), + [anon_sym_GT_EQ] = ACTIONS(4166), + [anon_sym_LT_EQ] = ACTIONS(4174), + [anon_sym_LT] = ACTIONS(4182), + [anon_sym_LT_LT] = ACTIONS(4174), + [anon_sym_GT_GT] = ACTIONS(4174), + [anon_sym_SEMI] = ACTIONS(4179), + [anon_sym___extension__] = ACTIONS(4164), + [anon_sym_virtual] = ACTIONS(4164), + [anon_sym_extern] = ACTIONS(4164), + [anon_sym___attribute__] = ACTIONS(4164), + [anon_sym___attribute] = ACTIONS(4164), + [anon_sym_COLON] = ACTIONS(4228), + [anon_sym_COLON_COLON] = ACTIONS(4187), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4189), + [anon_sym___declspec] = ACTIONS(4164), + [anon_sym___based] = ACTIONS(4164), + [anon_sym___cdecl] = ACTIONS(4164), + [anon_sym___clrcall] = ACTIONS(4164), + [anon_sym___stdcall] = ACTIONS(4164), + [anon_sym___fastcall] = ACTIONS(4164), + [anon_sym___thiscall] = ACTIONS(4164), + [anon_sym___vectorcall] = ACTIONS(4164), + [anon_sym_LBRACE] = ACTIONS(4192), + [anon_sym_signed] = ACTIONS(4194), + [anon_sym_unsigned] = ACTIONS(4194), + [anon_sym_long] = ACTIONS(4194), + [anon_sym_short] = ACTIONS(4194), + [anon_sym_LBRACK] = ACTIONS(4196), + [anon_sym_static] = ACTIONS(4164), + [anon_sym_EQ] = ACTIONS(4200), + [anon_sym_register] = ACTIONS(4164), + [anon_sym_inline] = ACTIONS(4164), + [anon_sym___inline] = ACTIONS(4164), + [anon_sym___inline__] = ACTIONS(4164), + [anon_sym___forceinline] = ACTIONS(4164), + [anon_sym_thread_local] = ACTIONS(4164), + [anon_sym___thread] = ACTIONS(4164), + [anon_sym_const] = ACTIONS(4164), + [anon_sym_constexpr] = ACTIONS(4164), + [anon_sym_volatile] = ACTIONS(4164), + [anon_sym_restrict] = ACTIONS(4164), + [anon_sym___restrict__] = ACTIONS(4164), + [anon_sym__Atomic] = ACTIONS(4164), + [anon_sym__Noreturn] = ACTIONS(4164), + [anon_sym_noreturn] = ACTIONS(4164), + [anon_sym__Nonnull] = ACTIONS(4164), + [anon_sym_mutable] = ACTIONS(4164), + [anon_sym_constinit] = ACTIONS(4164), + [anon_sym_consteval] = ACTIONS(4164), + [anon_sym_alignas] = ACTIONS(4164), + [anon_sym__Alignas] = ACTIONS(4164), + [anon_sym_QMARK] = ACTIONS(4166), + [anon_sym_STAR_EQ] = ACTIONS(4202), + [anon_sym_SLASH_EQ] = ACTIONS(4202), + [anon_sym_PERCENT_EQ] = ACTIONS(4202), + [anon_sym_PLUS_EQ] = ACTIONS(4202), + [anon_sym_DASH_EQ] = ACTIONS(4202), + [anon_sym_LT_LT_EQ] = ACTIONS(4202), + [anon_sym_GT_GT_EQ] = ACTIONS(4202), + [anon_sym_AMP_EQ] = ACTIONS(4202), + [anon_sym_CARET_EQ] = ACTIONS(4202), + [anon_sym_PIPE_EQ] = ACTIONS(4202), + [anon_sym_and_eq] = ACTIONS(4200), + [anon_sym_or_eq] = ACTIONS(4200), + [anon_sym_xor_eq] = ACTIONS(4200), + [anon_sym_LT_EQ_GT] = ACTIONS(4166), + [anon_sym_or] = ACTIONS(4174), + [anon_sym_and] = ACTIONS(4174), + [anon_sym_bitor] = ACTIONS(4174), + [anon_sym_xor] = ACTIONS(4174), + [anon_sym_bitand] = ACTIONS(4174), + [anon_sym_not_eq] = ACTIONS(4174), + [anon_sym_DASH_DASH] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4174), + [anon_sym_DOT_STAR] = ACTIONS(4166), + [anon_sym_DASH_GT] = ACTIONS(4166), + [anon_sym_L_DQUOTE] = ACTIONS(3631), + [anon_sym_u_DQUOTE] = ACTIONS(3631), + [anon_sym_U_DQUOTE] = ACTIONS(3631), + [anon_sym_u8_DQUOTE] = ACTIONS(3631), + [anon_sym_DQUOTE] = ACTIONS(3631), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4164), + [anon_sym_decltype] = ACTIONS(4164), + [anon_sym_template] = ACTIONS(4164), + [anon_sym_operator] = ACTIONS(4164), + [anon_sym_R_DQUOTE] = ACTIONS(3635), + [anon_sym_LR_DQUOTE] = ACTIONS(3635), + [anon_sym_uR_DQUOTE] = ACTIONS(3635), + [anon_sym_UR_DQUOTE] = ACTIONS(3635), + [anon_sym_u8R_DQUOTE] = ACTIONS(3635), + }, + [894] = { + [sym_expression] = STATE(4576), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3728), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3728), + [sym_call_expression] = STATE(3728), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3728), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3728), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3728), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3728), + [sym_identifier] = ACTIONS(4230), + [anon_sym_LPAREN2] = ACTIONS(4233), + [anon_sym_BANG] = ACTIONS(4236), + [anon_sym_TILDE] = ACTIONS(4236), + [anon_sym_DASH] = ACTIONS(4239), + [anon_sym_PLUS] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(2556), + [anon_sym_AMP] = ACTIONS(2556), + [anon_sym___extension__] = ACTIONS(4242), + [anon_sym_COLON_COLON] = ACTIONS(4245), + [anon_sym_LBRACK] = ACTIONS(4161), + [anon_sym_static] = ACTIONS(2569), + [anon_sym_RBRACK] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2569), + [anon_sym_constexpr] = ACTIONS(2569), + [anon_sym_volatile] = ACTIONS(2569), + [anon_sym_restrict] = ACTIONS(2569), + [anon_sym___restrict__] = ACTIONS(2569), + [anon_sym__Atomic] = ACTIONS(2569), + [anon_sym__Noreturn] = ACTIONS(2569), + [anon_sym_noreturn] = ACTIONS(2569), + [anon_sym__Nonnull] = ACTIONS(2569), + [anon_sym_mutable] = ACTIONS(2569), + [anon_sym_constinit] = ACTIONS(2569), + [anon_sym_consteval] = ACTIONS(2569), + [anon_sym_alignas] = ACTIONS(2569), + [anon_sym__Alignas] = ACTIONS(2569), + [sym_primitive_type] = ACTIONS(2577), + [anon_sym_not] = ACTIONS(4239), + [anon_sym_compl] = ACTIONS(4239), + [anon_sym_DASH_DASH] = ACTIONS(4248), + [anon_sym_PLUS_PLUS] = ACTIONS(4248), + [anon_sym_sizeof] = ACTIONS(4251), + [anon_sym___alignof__] = ACTIONS(4254), + [anon_sym___alignof] = ACTIONS(4254), + [anon_sym__alignof] = ACTIONS(4254), + [anon_sym_alignof] = ACTIONS(4254), + [anon_sym__Alignof] = ACTIONS(4254), + [anon_sym_offsetof] = ACTIONS(4257), + [anon_sym__Generic] = ACTIONS(4260), + [anon_sym_asm] = ACTIONS(4263), + [anon_sym___asm__] = ACTIONS(4263), + [anon_sym___asm] = ACTIONS(4263), + [sym_number_literal] = ACTIONS(4266), + [anon_sym_L_SQUOTE] = ACTIONS(4269), + [anon_sym_u_SQUOTE] = ACTIONS(4269), + [anon_sym_U_SQUOTE] = ACTIONS(4269), + [anon_sym_u8_SQUOTE] = ACTIONS(4269), + [anon_sym_SQUOTE] = ACTIONS(4269), + [anon_sym_L_DQUOTE] = ACTIONS(4272), + [anon_sym_u_DQUOTE] = ACTIONS(4272), + [anon_sym_U_DQUOTE] = ACTIONS(4272), + [anon_sym_u8_DQUOTE] = ACTIONS(4272), + [anon_sym_DQUOTE] = ACTIONS(4272), + [sym_true] = ACTIONS(4275), + [sym_false] = ACTIONS(4275), + [anon_sym_NULL] = ACTIONS(4278), + [anon_sym_nullptr] = ACTIONS(4278), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2580), + [anon_sym_template] = ACTIONS(2583), + [anon_sym_delete] = ACTIONS(4281), + [anon_sym_R_DQUOTE] = ACTIONS(4284), + [anon_sym_LR_DQUOTE] = ACTIONS(4284), + [anon_sym_uR_DQUOTE] = ACTIONS(4284), + [anon_sym_UR_DQUOTE] = ACTIONS(4284), + [anon_sym_u8R_DQUOTE] = ACTIONS(4284), + [anon_sym_co_await] = ACTIONS(4287), + [anon_sym_new] = ACTIONS(4290), + [anon_sym_requires] = ACTIONS(4293), + [sym_this] = ACTIONS(4275), + }, + [895] = { + [sym_string_literal] = STATE(2657), + [sym_template_argument_list] = STATE(1625), + [sym_raw_string_literal] = STATE(2657), + [aux_sym_sized_type_specifier_repeat1] = STATE(2660), + [sym_identifier] = ACTIONS(4164), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4166), + [anon_sym_COMMA] = ACTIONS(4166), + [anon_sym_RPAREN] = ACTIONS(4166), + [anon_sym_LPAREN2] = ACTIONS(4179), + [anon_sym_TILDE] = ACTIONS(4172), + [anon_sym_DASH] = ACTIONS(4174), + [anon_sym_PLUS] = ACTIONS(4174), + [anon_sym_STAR] = ACTIONS(4176), + [anon_sym_SLASH] = ACTIONS(4174), + [anon_sym_PERCENT] = ACTIONS(4174), + [anon_sym_PIPE_PIPE] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4179), + [anon_sym_PIPE] = ACTIONS(4174), + [anon_sym_CARET] = ACTIONS(4174), + [anon_sym_AMP] = ACTIONS(4176), + [anon_sym_EQ_EQ] = ACTIONS(4166), + [anon_sym_BANG_EQ] = ACTIONS(4166), + [anon_sym_GT] = ACTIONS(4174), + [anon_sym_GT_EQ] = ACTIONS(4166), + [anon_sym_LT_EQ] = ACTIONS(4174), + [anon_sym_LT] = ACTIONS(4182), + [anon_sym_LT_LT] = ACTIONS(4174), + [anon_sym_GT_GT] = ACTIONS(4174), + [anon_sym_SEMI] = ACTIONS(4166), + [anon_sym___extension__] = ACTIONS(4164), + [anon_sym_virtual] = ACTIONS(4164), + [anon_sym_extern] = ACTIONS(4164), + [anon_sym___attribute__] = ACTIONS(4164), + [anon_sym___attribute] = ACTIONS(4164), + [anon_sym_COLON_COLON] = ACTIONS(4187), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4172), + [anon_sym___declspec] = ACTIONS(4164), + [anon_sym___based] = ACTIONS(4164), + [anon_sym___cdecl] = ACTIONS(4164), + [anon_sym___clrcall] = ACTIONS(4164), + [anon_sym___stdcall] = ACTIONS(4164), + [anon_sym___fastcall] = ACTIONS(4164), + [anon_sym___thiscall] = ACTIONS(4164), + [anon_sym___vectorcall] = ACTIONS(4164), + [anon_sym_LBRACE] = ACTIONS(4192), + [anon_sym_signed] = ACTIONS(4194), + [anon_sym_unsigned] = ACTIONS(4194), + [anon_sym_long] = ACTIONS(4194), + [anon_sym_short] = ACTIONS(4194), + [anon_sym_LBRACK] = ACTIONS(4176), + [anon_sym_static] = ACTIONS(4164), + [anon_sym_EQ] = ACTIONS(4200), + [anon_sym_register] = ACTIONS(4164), + [anon_sym_inline] = ACTIONS(4164), + [anon_sym___inline] = ACTIONS(4164), + [anon_sym___inline__] = ACTIONS(4164), + [anon_sym___forceinline] = ACTIONS(4164), + [anon_sym_thread_local] = ACTIONS(4164), + [anon_sym___thread] = ACTIONS(4164), + [anon_sym_const] = ACTIONS(4164), + [anon_sym_constexpr] = ACTIONS(4164), + [anon_sym_volatile] = ACTIONS(4164), + [anon_sym_restrict] = ACTIONS(4164), + [anon_sym___restrict__] = ACTIONS(4164), + [anon_sym__Atomic] = ACTIONS(4164), + [anon_sym__Noreturn] = ACTIONS(4164), + [anon_sym_noreturn] = ACTIONS(4164), + [anon_sym__Nonnull] = ACTIONS(4164), + [anon_sym_mutable] = ACTIONS(4164), + [anon_sym_constinit] = ACTIONS(4164), + [anon_sym_consteval] = ACTIONS(4164), + [anon_sym_alignas] = ACTIONS(4164), + [anon_sym__Alignas] = ACTIONS(4164), + [anon_sym_QMARK] = ACTIONS(4166), + [anon_sym_STAR_EQ] = ACTIONS(4202), + [anon_sym_SLASH_EQ] = ACTIONS(4202), + [anon_sym_PERCENT_EQ] = ACTIONS(4202), + [anon_sym_PLUS_EQ] = ACTIONS(4202), + [anon_sym_DASH_EQ] = ACTIONS(4202), + [anon_sym_LT_LT_EQ] = ACTIONS(4202), + [anon_sym_GT_GT_EQ] = ACTIONS(4202), + [anon_sym_AMP_EQ] = ACTIONS(4202), + [anon_sym_CARET_EQ] = ACTIONS(4202), + [anon_sym_PIPE_EQ] = ACTIONS(4202), + [anon_sym_and_eq] = ACTIONS(4200), + [anon_sym_or_eq] = ACTIONS(4200), + [anon_sym_xor_eq] = ACTIONS(4200), + [anon_sym_LT_EQ_GT] = ACTIONS(4166), + [anon_sym_or] = ACTIONS(4174), + [anon_sym_and] = ACTIONS(4174), + [anon_sym_bitor] = ACTIONS(4174), + [anon_sym_xor] = ACTIONS(4174), + [anon_sym_bitand] = ACTIONS(4174), + [anon_sym_not_eq] = ACTIONS(4174), + [anon_sym_DASH_DASH] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4174), + [anon_sym_DOT_STAR] = ACTIONS(4166), + [anon_sym_DASH_GT] = ACTIONS(4166), + [anon_sym_L_DQUOTE] = ACTIONS(3631), + [anon_sym_u_DQUOTE] = ACTIONS(3631), + [anon_sym_U_DQUOTE] = ACTIONS(3631), + [anon_sym_u8_DQUOTE] = ACTIONS(3631), + [anon_sym_DQUOTE] = ACTIONS(3631), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4164), + [anon_sym_decltype] = ACTIONS(4164), + [anon_sym_template] = ACTIONS(4164), + [anon_sym_operator] = ACTIONS(4164), + [anon_sym_R_DQUOTE] = ACTIONS(3635), + [anon_sym_LR_DQUOTE] = ACTIONS(3635), + [anon_sym_uR_DQUOTE] = ACTIONS(3635), + [anon_sym_UR_DQUOTE] = ACTIONS(3635), + [anon_sym_u8R_DQUOTE] = ACTIONS(3635), + }, + [896] = { + [sym_string_literal] = STATE(2657), + [sym_template_argument_list] = STATE(1625), + [sym_raw_string_literal] = STATE(2657), + [aux_sym_sized_type_specifier_repeat1] = STATE(2660), + [sym_identifier] = ACTIONS(4164), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4166), + [anon_sym_COMMA] = ACTIONS(4166), + [anon_sym_LPAREN2] = ACTIONS(4179), + [anon_sym_TILDE] = ACTIONS(4172), + [anon_sym_DASH] = ACTIONS(4174), + [anon_sym_PLUS] = ACTIONS(4174), + [anon_sym_STAR] = ACTIONS(4176), + [anon_sym_SLASH] = ACTIONS(4174), + [anon_sym_PERCENT] = ACTIONS(4174), + [anon_sym_PIPE_PIPE] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4179), + [anon_sym_PIPE] = ACTIONS(4174), + [anon_sym_CARET] = ACTIONS(4174), + [anon_sym_AMP] = ACTIONS(4176), + [anon_sym_EQ_EQ] = ACTIONS(4166), + [anon_sym_BANG_EQ] = ACTIONS(4166), + [anon_sym_GT] = ACTIONS(4174), + [anon_sym_GT_EQ] = ACTIONS(4166), + [anon_sym_LT_EQ] = ACTIONS(4174), + [anon_sym_LT] = ACTIONS(4182), + [anon_sym_LT_LT] = ACTIONS(4174), + [anon_sym_GT_GT] = ACTIONS(4174), + [anon_sym_SEMI] = ACTIONS(4166), + [anon_sym___extension__] = ACTIONS(4164), + [anon_sym_virtual] = ACTIONS(4164), + [anon_sym_extern] = ACTIONS(4164), + [anon_sym___attribute__] = ACTIONS(4164), + [anon_sym___attribute] = ACTIONS(4164), + [anon_sym_COLON] = ACTIONS(4296), + [anon_sym_COLON_COLON] = ACTIONS(4187), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4172), + [anon_sym___declspec] = ACTIONS(4164), + [anon_sym___based] = ACTIONS(4164), + [anon_sym___cdecl] = ACTIONS(4164), + [anon_sym___clrcall] = ACTIONS(4164), + [anon_sym___stdcall] = ACTIONS(4164), + [anon_sym___fastcall] = ACTIONS(4164), + [anon_sym___thiscall] = ACTIONS(4164), + [anon_sym___vectorcall] = ACTIONS(4164), + [anon_sym_LBRACE] = ACTIONS(4192), + [anon_sym_signed] = ACTIONS(4194), + [anon_sym_unsigned] = ACTIONS(4194), + [anon_sym_long] = ACTIONS(4194), + [anon_sym_short] = ACTIONS(4194), + [anon_sym_LBRACK] = ACTIONS(4176), + [anon_sym_static] = ACTIONS(4164), + [anon_sym_EQ] = ACTIONS(4200), + [anon_sym_register] = ACTIONS(4164), + [anon_sym_inline] = ACTIONS(4164), + [anon_sym___inline] = ACTIONS(4164), + [anon_sym___inline__] = ACTIONS(4164), + [anon_sym___forceinline] = ACTIONS(4164), + [anon_sym_thread_local] = ACTIONS(4164), + [anon_sym___thread] = ACTIONS(4164), + [anon_sym_const] = ACTIONS(4164), + [anon_sym_constexpr] = ACTIONS(4164), + [anon_sym_volatile] = ACTIONS(4164), + [anon_sym_restrict] = ACTIONS(4164), + [anon_sym___restrict__] = ACTIONS(4164), + [anon_sym__Atomic] = ACTIONS(4164), + [anon_sym__Noreturn] = ACTIONS(4164), + [anon_sym_noreturn] = ACTIONS(4164), + [anon_sym__Nonnull] = ACTIONS(4164), + [anon_sym_mutable] = ACTIONS(4164), + [anon_sym_constinit] = ACTIONS(4164), + [anon_sym_consteval] = ACTIONS(4164), + [anon_sym_alignas] = ACTIONS(4164), + [anon_sym__Alignas] = ACTIONS(4164), + [anon_sym_QMARK] = ACTIONS(4166), + [anon_sym_STAR_EQ] = ACTIONS(4202), + [anon_sym_SLASH_EQ] = ACTIONS(4202), + [anon_sym_PERCENT_EQ] = ACTIONS(4202), + [anon_sym_PLUS_EQ] = ACTIONS(4202), + [anon_sym_DASH_EQ] = ACTIONS(4202), + [anon_sym_LT_LT_EQ] = ACTIONS(4202), + [anon_sym_GT_GT_EQ] = ACTIONS(4202), + [anon_sym_AMP_EQ] = ACTIONS(4202), + [anon_sym_CARET_EQ] = ACTIONS(4202), + [anon_sym_PIPE_EQ] = ACTIONS(4202), + [anon_sym_and_eq] = ACTIONS(4200), + [anon_sym_or_eq] = ACTIONS(4200), + [anon_sym_xor_eq] = ACTIONS(4200), + [anon_sym_LT_EQ_GT] = ACTIONS(4166), + [anon_sym_or] = ACTIONS(4174), + [anon_sym_and] = ACTIONS(4174), + [anon_sym_bitor] = ACTIONS(4174), + [anon_sym_xor] = ACTIONS(4174), + [anon_sym_bitand] = ACTIONS(4174), + [anon_sym_not_eq] = ACTIONS(4174), + [anon_sym_DASH_DASH] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4174), + [anon_sym_DOT_STAR] = ACTIONS(4166), + [anon_sym_DASH_GT] = ACTIONS(4166), + [anon_sym_L_DQUOTE] = ACTIONS(3631), + [anon_sym_u_DQUOTE] = ACTIONS(3631), + [anon_sym_U_DQUOTE] = ACTIONS(3631), + [anon_sym_u8_DQUOTE] = ACTIONS(3631), + [anon_sym_DQUOTE] = ACTIONS(3631), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4164), + [anon_sym_decltype] = ACTIONS(4164), + [anon_sym_template] = ACTIONS(4164), + [anon_sym_operator] = ACTIONS(4164), + [anon_sym_R_DQUOTE] = ACTIONS(3635), + [anon_sym_LR_DQUOTE] = ACTIONS(3635), + [anon_sym_uR_DQUOTE] = ACTIONS(3635), + [anon_sym_UR_DQUOTE] = ACTIONS(3635), + [anon_sym_u8R_DQUOTE] = ACTIONS(3635), + }, + [897] = { + [sym_string_literal] = STATE(2657), + [sym_template_argument_list] = STATE(1625), + [sym_raw_string_literal] = STATE(2657), + [aux_sym_sized_type_specifier_repeat1] = STATE(2660), + [sym_identifier] = ACTIONS(4164), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4166), + [anon_sym_COMMA] = ACTIONS(4166), + [anon_sym_LPAREN2] = ACTIONS(4179), + [anon_sym_TILDE] = ACTIONS(4172), + [anon_sym_DASH] = ACTIONS(4174), + [anon_sym_PLUS] = ACTIONS(4174), + [anon_sym_STAR] = ACTIONS(4176), + [anon_sym_SLASH] = ACTIONS(4174), + [anon_sym_PERCENT] = ACTIONS(4174), + [anon_sym_PIPE_PIPE] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4179), + [anon_sym_PIPE] = ACTIONS(4174), + [anon_sym_CARET] = ACTIONS(4174), + [anon_sym_AMP] = ACTIONS(4176), + [anon_sym_EQ_EQ] = ACTIONS(4166), + [anon_sym_BANG_EQ] = ACTIONS(4166), + [anon_sym_GT] = ACTIONS(4174), + [anon_sym_GT_EQ] = ACTIONS(4166), + [anon_sym_LT_EQ] = ACTIONS(4174), + [anon_sym_LT] = ACTIONS(4182), + [anon_sym_LT_LT] = ACTIONS(4174), + [anon_sym_GT_GT] = ACTIONS(4174), + [anon_sym_SEMI] = ACTIONS(4166), + [anon_sym___extension__] = ACTIONS(4164), + [anon_sym_virtual] = ACTIONS(4164), + [anon_sym_extern] = ACTIONS(4164), + [anon_sym___attribute__] = ACTIONS(4164), + [anon_sym___attribute] = ACTIONS(4164), + [anon_sym_COLON] = ACTIONS(4228), + [anon_sym_COLON_COLON] = ACTIONS(4187), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4172), + [anon_sym___declspec] = ACTIONS(4164), + [anon_sym___based] = ACTIONS(4164), + [anon_sym___cdecl] = ACTIONS(4164), + [anon_sym___clrcall] = ACTIONS(4164), + [anon_sym___stdcall] = ACTIONS(4164), + [anon_sym___fastcall] = ACTIONS(4164), + [anon_sym___thiscall] = ACTIONS(4164), + [anon_sym___vectorcall] = ACTIONS(4164), + [anon_sym_LBRACE] = ACTIONS(4192), + [anon_sym_signed] = ACTIONS(4194), + [anon_sym_unsigned] = ACTIONS(4194), + [anon_sym_long] = ACTIONS(4194), + [anon_sym_short] = ACTIONS(4194), + [anon_sym_LBRACK] = ACTIONS(4176), + [anon_sym_static] = ACTIONS(4164), + [anon_sym_EQ] = ACTIONS(4200), + [anon_sym_register] = ACTIONS(4164), + [anon_sym_inline] = ACTIONS(4164), + [anon_sym___inline] = ACTIONS(4164), + [anon_sym___inline__] = ACTIONS(4164), + [anon_sym___forceinline] = ACTIONS(4164), + [anon_sym_thread_local] = ACTIONS(4164), + [anon_sym___thread] = ACTIONS(4164), + [anon_sym_const] = ACTIONS(4164), + [anon_sym_constexpr] = ACTIONS(4164), + [anon_sym_volatile] = ACTIONS(4164), + [anon_sym_restrict] = ACTIONS(4164), + [anon_sym___restrict__] = ACTIONS(4164), + [anon_sym__Atomic] = ACTIONS(4164), + [anon_sym__Noreturn] = ACTIONS(4164), + [anon_sym_noreturn] = ACTIONS(4164), + [anon_sym__Nonnull] = ACTIONS(4164), + [anon_sym_mutable] = ACTIONS(4164), + [anon_sym_constinit] = ACTIONS(4164), + [anon_sym_consteval] = ACTIONS(4164), + [anon_sym_alignas] = ACTIONS(4164), + [anon_sym__Alignas] = ACTIONS(4164), + [anon_sym_QMARK] = ACTIONS(4166), + [anon_sym_STAR_EQ] = ACTIONS(4202), + [anon_sym_SLASH_EQ] = ACTIONS(4202), + [anon_sym_PERCENT_EQ] = ACTIONS(4202), + [anon_sym_PLUS_EQ] = ACTIONS(4202), + [anon_sym_DASH_EQ] = ACTIONS(4202), + [anon_sym_LT_LT_EQ] = ACTIONS(4202), + [anon_sym_GT_GT_EQ] = ACTIONS(4202), + [anon_sym_AMP_EQ] = ACTIONS(4202), + [anon_sym_CARET_EQ] = ACTIONS(4202), + [anon_sym_PIPE_EQ] = ACTIONS(4202), + [anon_sym_and_eq] = ACTIONS(4200), + [anon_sym_or_eq] = ACTIONS(4200), + [anon_sym_xor_eq] = ACTIONS(4200), + [anon_sym_LT_EQ_GT] = ACTIONS(4166), + [anon_sym_or] = ACTIONS(4174), + [anon_sym_and] = ACTIONS(4174), + [anon_sym_bitor] = ACTIONS(4174), + [anon_sym_xor] = ACTIONS(4174), + [anon_sym_bitand] = ACTIONS(4174), + [anon_sym_not_eq] = ACTIONS(4174), + [anon_sym_DASH_DASH] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4174), + [anon_sym_DOT_STAR] = ACTIONS(4166), + [anon_sym_DASH_GT] = ACTIONS(4166), + [anon_sym_L_DQUOTE] = ACTIONS(3631), + [anon_sym_u_DQUOTE] = ACTIONS(3631), + [anon_sym_U_DQUOTE] = ACTIONS(3631), + [anon_sym_u8_DQUOTE] = ACTIONS(3631), + [anon_sym_DQUOTE] = ACTIONS(3631), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4164), + [anon_sym_decltype] = ACTIONS(4164), + [anon_sym_template] = ACTIONS(4164), + [anon_sym_operator] = ACTIONS(4164), + [anon_sym_R_DQUOTE] = ACTIONS(3635), + [anon_sym_LR_DQUOTE] = ACTIONS(3635), + [anon_sym_uR_DQUOTE] = ACTIONS(3635), + [anon_sym_UR_DQUOTE] = ACTIONS(3635), + [anon_sym_u8R_DQUOTE] = ACTIONS(3635), + }, + [898] = { + [sym_string_literal] = STATE(2657), + [sym_template_argument_list] = STATE(1624), + [sym_raw_string_literal] = STATE(2657), + [aux_sym_sized_type_specifier_repeat1] = STATE(2660), + [sym_identifier] = ACTIONS(4164), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4166), + [anon_sym_COMMA] = ACTIONS(4166), + [anon_sym_LPAREN2] = ACTIONS(4168), + [anon_sym_TILDE] = ACTIONS(4172), + [anon_sym_DASH] = ACTIONS(4174), + [anon_sym_PLUS] = ACTIONS(4174), + [anon_sym_STAR] = ACTIONS(4176), + [anon_sym_SLASH] = ACTIONS(4174), + [anon_sym_PERCENT] = ACTIONS(4174), + [anon_sym_PIPE_PIPE] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4179), + [anon_sym_PIPE] = ACTIONS(4174), + [anon_sym_CARET] = ACTIONS(4174), + [anon_sym_AMP] = ACTIONS(4176), + [anon_sym_EQ_EQ] = ACTIONS(4166), + [anon_sym_BANG_EQ] = ACTIONS(4166), + [anon_sym_GT] = ACTIONS(4174), + [anon_sym_GT_EQ] = ACTIONS(4166), + [anon_sym_LT_EQ] = ACTIONS(4174), + [anon_sym_LT] = ACTIONS(4182), + [anon_sym_LT_LT] = ACTIONS(4174), + [anon_sym_GT_GT] = ACTIONS(4174), + [anon_sym_SEMI] = ACTIONS(4179), + [anon_sym___extension__] = ACTIONS(4164), + [anon_sym_virtual] = ACTIONS(4164), + [anon_sym_extern] = ACTIONS(4164), + [anon_sym___attribute__] = ACTIONS(4164), + [anon_sym___attribute] = ACTIONS(4164), + [anon_sym_COLON] = ACTIONS(4298), + [anon_sym_COLON_COLON] = ACTIONS(4187), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4189), + [anon_sym___declspec] = ACTIONS(4164), + [anon_sym___based] = ACTIONS(4164), + [anon_sym___cdecl] = ACTIONS(4164), + [anon_sym___clrcall] = ACTIONS(4164), + [anon_sym___stdcall] = ACTIONS(4164), + [anon_sym___fastcall] = ACTIONS(4164), + [anon_sym___thiscall] = ACTIONS(4164), + [anon_sym___vectorcall] = ACTIONS(4164), + [anon_sym_LBRACE] = ACTIONS(4192), + [anon_sym_signed] = ACTIONS(4194), + [anon_sym_unsigned] = ACTIONS(4194), + [anon_sym_long] = ACTIONS(4194), + [anon_sym_short] = ACTIONS(4194), + [anon_sym_LBRACK] = ACTIONS(4196), + [anon_sym_static] = ACTIONS(4164), + [anon_sym_EQ] = ACTIONS(4200), + [anon_sym_register] = ACTIONS(4164), + [anon_sym_inline] = ACTIONS(4164), + [anon_sym___inline] = ACTIONS(4164), + [anon_sym___inline__] = ACTIONS(4164), + [anon_sym___forceinline] = ACTIONS(4164), + [anon_sym_thread_local] = ACTIONS(4164), + [anon_sym___thread] = ACTIONS(4164), + [anon_sym_const] = ACTIONS(4164), + [anon_sym_constexpr] = ACTIONS(4164), + [anon_sym_volatile] = ACTIONS(4164), + [anon_sym_restrict] = ACTIONS(4164), + [anon_sym___restrict__] = ACTIONS(4164), + [anon_sym__Atomic] = ACTIONS(4164), + [anon_sym__Noreturn] = ACTIONS(4164), + [anon_sym_noreturn] = ACTIONS(4164), + [anon_sym__Nonnull] = ACTIONS(4164), + [anon_sym_mutable] = ACTIONS(4164), + [anon_sym_constinit] = ACTIONS(4164), + [anon_sym_consteval] = ACTIONS(4164), + [anon_sym_alignas] = ACTIONS(4164), + [anon_sym__Alignas] = ACTIONS(4164), + [anon_sym_QMARK] = ACTIONS(4166), + [anon_sym_STAR_EQ] = ACTIONS(4202), + [anon_sym_SLASH_EQ] = ACTIONS(4202), + [anon_sym_PERCENT_EQ] = ACTIONS(4202), + [anon_sym_PLUS_EQ] = ACTIONS(4202), + [anon_sym_DASH_EQ] = ACTIONS(4202), + [anon_sym_LT_LT_EQ] = ACTIONS(4202), + [anon_sym_GT_GT_EQ] = ACTIONS(4202), + [anon_sym_AMP_EQ] = ACTIONS(4202), + [anon_sym_CARET_EQ] = ACTIONS(4202), + [anon_sym_PIPE_EQ] = ACTIONS(4202), + [anon_sym_and_eq] = ACTIONS(4200), + [anon_sym_or_eq] = ACTIONS(4200), + [anon_sym_xor_eq] = ACTIONS(4200), + [anon_sym_LT_EQ_GT] = ACTIONS(4166), + [anon_sym_or] = ACTIONS(4174), + [anon_sym_and] = ACTIONS(4174), + [anon_sym_bitor] = ACTIONS(4174), + [anon_sym_xor] = ACTIONS(4174), + [anon_sym_bitand] = ACTIONS(4174), + [anon_sym_not_eq] = ACTIONS(4174), + [anon_sym_DASH_DASH] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4174), + [anon_sym_DOT_STAR] = ACTIONS(4166), + [anon_sym_DASH_GT] = ACTIONS(4166), + [anon_sym_L_DQUOTE] = ACTIONS(3631), + [anon_sym_u_DQUOTE] = ACTIONS(3631), + [anon_sym_U_DQUOTE] = ACTIONS(3631), + [anon_sym_u8_DQUOTE] = ACTIONS(3631), + [anon_sym_DQUOTE] = ACTIONS(3631), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4164), + [anon_sym_decltype] = ACTIONS(4164), + [anon_sym_template] = ACTIONS(4164), + [anon_sym_operator] = ACTIONS(4164), + [anon_sym_R_DQUOTE] = ACTIONS(3635), + [anon_sym_LR_DQUOTE] = ACTIONS(3635), + [anon_sym_uR_DQUOTE] = ACTIONS(3635), + [anon_sym_UR_DQUOTE] = ACTIONS(3635), + [anon_sym_u8R_DQUOTE] = ACTIONS(3635), + }, + [899] = { + [sym_string_literal] = STATE(2657), + [sym_template_argument_list] = STATE(1625), + [sym_raw_string_literal] = STATE(2657), + [aux_sym_sized_type_specifier_repeat1] = STATE(2660), + [sym_identifier] = ACTIONS(4164), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4166), + [anon_sym_COMMA] = ACTIONS(4166), + [anon_sym_LPAREN2] = ACTIONS(4179), + [anon_sym_TILDE] = ACTIONS(4172), + [anon_sym_DASH] = ACTIONS(4174), + [anon_sym_PLUS] = ACTIONS(4174), + [anon_sym_STAR] = ACTIONS(4176), + [anon_sym_SLASH] = ACTIONS(4174), + [anon_sym_PERCENT] = ACTIONS(4174), + [anon_sym_PIPE_PIPE] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4179), + [anon_sym_PIPE] = ACTIONS(4174), + [anon_sym_CARET] = ACTIONS(4174), + [anon_sym_AMP] = ACTIONS(4176), + [anon_sym_EQ_EQ] = ACTIONS(4166), + [anon_sym_BANG_EQ] = ACTIONS(4166), + [anon_sym_GT] = ACTIONS(4174), + [anon_sym_GT_EQ] = ACTIONS(4166), + [anon_sym_LT_EQ] = ACTIONS(4174), + [anon_sym_LT] = ACTIONS(4182), + [anon_sym_LT_LT] = ACTIONS(4174), + [anon_sym_GT_GT] = ACTIONS(4174), + [anon_sym_SEMI] = ACTIONS(4166), + [anon_sym___extension__] = ACTIONS(4164), + [anon_sym_virtual] = ACTIONS(4164), + [anon_sym_extern] = ACTIONS(4164), + [anon_sym___attribute__] = ACTIONS(4164), + [anon_sym___attribute] = ACTIONS(4164), + [anon_sym_COLON] = ACTIONS(4298), + [anon_sym_COLON_COLON] = ACTIONS(4187), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4172), + [anon_sym___declspec] = ACTIONS(4164), + [anon_sym___based] = ACTIONS(4164), + [anon_sym___cdecl] = ACTIONS(4164), + [anon_sym___clrcall] = ACTIONS(4164), + [anon_sym___stdcall] = ACTIONS(4164), + [anon_sym___fastcall] = ACTIONS(4164), + [anon_sym___thiscall] = ACTIONS(4164), + [anon_sym___vectorcall] = ACTIONS(4164), + [anon_sym_LBRACE] = ACTIONS(4192), + [anon_sym_signed] = ACTIONS(4194), + [anon_sym_unsigned] = ACTIONS(4194), + [anon_sym_long] = ACTIONS(4194), + [anon_sym_short] = ACTIONS(4194), + [anon_sym_LBRACK] = ACTIONS(4176), + [anon_sym_static] = ACTIONS(4164), + [anon_sym_EQ] = ACTIONS(4200), + [anon_sym_register] = ACTIONS(4164), + [anon_sym_inline] = ACTIONS(4164), + [anon_sym___inline] = ACTIONS(4164), + [anon_sym___inline__] = ACTIONS(4164), + [anon_sym___forceinline] = ACTIONS(4164), + [anon_sym_thread_local] = ACTIONS(4164), + [anon_sym___thread] = ACTIONS(4164), + [anon_sym_const] = ACTIONS(4164), + [anon_sym_constexpr] = ACTIONS(4164), + [anon_sym_volatile] = ACTIONS(4164), + [anon_sym_restrict] = ACTIONS(4164), + [anon_sym___restrict__] = ACTIONS(4164), + [anon_sym__Atomic] = ACTIONS(4164), + [anon_sym__Noreturn] = ACTIONS(4164), + [anon_sym_noreturn] = ACTIONS(4164), + [anon_sym__Nonnull] = ACTIONS(4164), + [anon_sym_mutable] = ACTIONS(4164), + [anon_sym_constinit] = ACTIONS(4164), + [anon_sym_consteval] = ACTIONS(4164), + [anon_sym_alignas] = ACTIONS(4164), + [anon_sym__Alignas] = ACTIONS(4164), + [anon_sym_QMARK] = ACTIONS(4166), + [anon_sym_STAR_EQ] = ACTIONS(4202), + [anon_sym_SLASH_EQ] = ACTIONS(4202), + [anon_sym_PERCENT_EQ] = ACTIONS(4202), + [anon_sym_PLUS_EQ] = ACTIONS(4202), + [anon_sym_DASH_EQ] = ACTIONS(4202), + [anon_sym_LT_LT_EQ] = ACTIONS(4202), + [anon_sym_GT_GT_EQ] = ACTIONS(4202), + [anon_sym_AMP_EQ] = ACTIONS(4202), + [anon_sym_CARET_EQ] = ACTIONS(4202), + [anon_sym_PIPE_EQ] = ACTIONS(4202), + [anon_sym_and_eq] = ACTIONS(4200), + [anon_sym_or_eq] = ACTIONS(4200), + [anon_sym_xor_eq] = ACTIONS(4200), + [anon_sym_LT_EQ_GT] = ACTIONS(4166), + [anon_sym_or] = ACTIONS(4174), + [anon_sym_and] = ACTIONS(4174), + [anon_sym_bitor] = ACTIONS(4174), + [anon_sym_xor] = ACTIONS(4174), + [anon_sym_bitand] = ACTIONS(4174), + [anon_sym_not_eq] = ACTIONS(4174), + [anon_sym_DASH_DASH] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4174), + [anon_sym_DOT_STAR] = ACTIONS(4166), + [anon_sym_DASH_GT] = ACTIONS(4166), + [anon_sym_L_DQUOTE] = ACTIONS(3631), + [anon_sym_u_DQUOTE] = ACTIONS(3631), + [anon_sym_U_DQUOTE] = ACTIONS(3631), + [anon_sym_u8_DQUOTE] = ACTIONS(3631), + [anon_sym_DQUOTE] = ACTIONS(3631), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4164), + [anon_sym_decltype] = ACTIONS(4164), + [anon_sym_template] = ACTIONS(4164), + [anon_sym_operator] = ACTIONS(4164), + [anon_sym_R_DQUOTE] = ACTIONS(3635), + [anon_sym_LR_DQUOTE] = ACTIONS(3635), + [anon_sym_uR_DQUOTE] = ACTIONS(3635), + [anon_sym_UR_DQUOTE] = ACTIONS(3635), + [anon_sym_u8R_DQUOTE] = ACTIONS(3635), + }, + [900] = { + [sym_string_literal] = STATE(2657), + [sym_template_argument_list] = STATE(1625), + [sym_raw_string_literal] = STATE(2657), + [aux_sym_sized_type_specifier_repeat1] = STATE(2660), + [sym_identifier] = ACTIONS(4164), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4166), + [anon_sym_COMMA] = ACTIONS(4166), + [anon_sym_LPAREN2] = ACTIONS(4179), + [anon_sym_TILDE] = ACTIONS(4172), + [anon_sym_DASH] = ACTIONS(4174), + [anon_sym_PLUS] = ACTIONS(4174), + [anon_sym_STAR] = ACTIONS(4176), + [anon_sym_SLASH] = ACTIONS(4174), + [anon_sym_PERCENT] = ACTIONS(4174), + [anon_sym_PIPE_PIPE] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4179), + [anon_sym_PIPE] = ACTIONS(4174), + [anon_sym_CARET] = ACTIONS(4174), + [anon_sym_AMP] = ACTIONS(4176), + [anon_sym_EQ_EQ] = ACTIONS(4166), + [anon_sym_BANG_EQ] = ACTIONS(4166), + [anon_sym_GT] = ACTIONS(4174), + [anon_sym_GT_EQ] = ACTIONS(4166), + [anon_sym_LT_EQ] = ACTIONS(4174), + [anon_sym_LT] = ACTIONS(4182), + [anon_sym_LT_LT] = ACTIONS(4174), + [anon_sym_GT_GT] = ACTIONS(4174), + [anon_sym_SEMI] = ACTIONS(4166), + [anon_sym___extension__] = ACTIONS(4164), + [anon_sym_virtual] = ACTIONS(4164), + [anon_sym_extern] = ACTIONS(4164), + [anon_sym___attribute__] = ACTIONS(4164), + [anon_sym___attribute] = ACTIONS(4164), + [anon_sym_COLON] = ACTIONS(4300), + [anon_sym_COLON_COLON] = ACTIONS(4187), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4172), + [anon_sym___declspec] = ACTIONS(4164), + [anon_sym___based] = ACTIONS(4164), + [anon_sym___cdecl] = ACTIONS(4164), + [anon_sym___clrcall] = ACTIONS(4164), + [anon_sym___stdcall] = ACTIONS(4164), + [anon_sym___fastcall] = ACTIONS(4164), + [anon_sym___thiscall] = ACTIONS(4164), + [anon_sym___vectorcall] = ACTIONS(4164), + [anon_sym_LBRACE] = ACTIONS(4192), + [anon_sym_signed] = ACTIONS(4194), + [anon_sym_unsigned] = ACTIONS(4194), + [anon_sym_long] = ACTIONS(4194), + [anon_sym_short] = ACTIONS(4194), + [anon_sym_LBRACK] = ACTIONS(4176), + [anon_sym_static] = ACTIONS(4164), + [anon_sym_EQ] = ACTIONS(4200), + [anon_sym_register] = ACTIONS(4164), + [anon_sym_inline] = ACTIONS(4164), + [anon_sym___inline] = ACTIONS(4164), + [anon_sym___inline__] = ACTIONS(4164), + [anon_sym___forceinline] = ACTIONS(4164), + [anon_sym_thread_local] = ACTIONS(4164), + [anon_sym___thread] = ACTIONS(4164), + [anon_sym_const] = ACTIONS(4164), + [anon_sym_constexpr] = ACTIONS(4164), + [anon_sym_volatile] = ACTIONS(4164), + [anon_sym_restrict] = ACTIONS(4164), + [anon_sym___restrict__] = ACTIONS(4164), + [anon_sym__Atomic] = ACTIONS(4164), + [anon_sym__Noreturn] = ACTIONS(4164), + [anon_sym_noreturn] = ACTIONS(4164), + [anon_sym__Nonnull] = ACTIONS(4164), + [anon_sym_mutable] = ACTIONS(4164), + [anon_sym_constinit] = ACTIONS(4164), + [anon_sym_consteval] = ACTIONS(4164), + [anon_sym_alignas] = ACTIONS(4164), + [anon_sym__Alignas] = ACTIONS(4164), + [anon_sym_QMARK] = ACTIONS(4166), + [anon_sym_STAR_EQ] = ACTIONS(4202), + [anon_sym_SLASH_EQ] = ACTIONS(4202), + [anon_sym_PERCENT_EQ] = ACTIONS(4202), + [anon_sym_PLUS_EQ] = ACTIONS(4202), + [anon_sym_DASH_EQ] = ACTIONS(4202), + [anon_sym_LT_LT_EQ] = ACTIONS(4202), + [anon_sym_GT_GT_EQ] = ACTIONS(4202), + [anon_sym_AMP_EQ] = ACTIONS(4202), + [anon_sym_CARET_EQ] = ACTIONS(4202), + [anon_sym_PIPE_EQ] = ACTIONS(4202), + [anon_sym_and_eq] = ACTIONS(4200), + [anon_sym_or_eq] = ACTIONS(4200), + [anon_sym_xor_eq] = ACTIONS(4200), + [anon_sym_LT_EQ_GT] = ACTIONS(4166), + [anon_sym_or] = ACTIONS(4174), + [anon_sym_and] = ACTIONS(4174), + [anon_sym_bitor] = ACTIONS(4174), + [anon_sym_xor] = ACTIONS(4174), + [anon_sym_bitand] = ACTIONS(4174), + [anon_sym_not_eq] = ACTIONS(4174), + [anon_sym_DASH_DASH] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4174), + [anon_sym_DOT_STAR] = ACTIONS(4166), + [anon_sym_DASH_GT] = ACTIONS(4166), + [anon_sym_L_DQUOTE] = ACTIONS(3631), + [anon_sym_u_DQUOTE] = ACTIONS(3631), + [anon_sym_U_DQUOTE] = ACTIONS(3631), + [anon_sym_u8_DQUOTE] = ACTIONS(3631), + [anon_sym_DQUOTE] = ACTIONS(3631), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4164), + [anon_sym_decltype] = ACTIONS(4164), + [anon_sym_template] = ACTIONS(4164), + [anon_sym_operator] = ACTIONS(4164), + [anon_sym_R_DQUOTE] = ACTIONS(3635), + [anon_sym_LR_DQUOTE] = ACTIONS(3635), + [anon_sym_uR_DQUOTE] = ACTIONS(3635), + [anon_sym_UR_DQUOTE] = ACTIONS(3635), + [anon_sym_u8R_DQUOTE] = ACTIONS(3635), + }, + [901] = { + [sym_identifier] = ACTIONS(2611), + [anon_sym_LPAREN2] = ACTIONS(2613), + [anon_sym_BANG] = ACTIONS(2613), + [anon_sym_TILDE] = ACTIONS(2613), + [anon_sym_DASH] = ACTIONS(2611), + [anon_sym_PLUS] = ACTIONS(2611), + [anon_sym_STAR] = ACTIONS(2613), + [anon_sym_AMP] = ACTIONS(2613), + [anon_sym_SEMI] = ACTIONS(2613), + [anon_sym___extension__] = ACTIONS(2611), + [anon_sym_typedef] = ACTIONS(2611), + [anon_sym_virtual] = ACTIONS(2611), + [anon_sym_extern] = ACTIONS(2611), + [anon_sym___attribute__] = ACTIONS(2611), + [anon_sym___attribute] = ACTIONS(2611), + [anon_sym_COLON_COLON] = ACTIONS(2613), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2613), + [anon_sym___declspec] = ACTIONS(2611), + [anon_sym_LBRACE] = ACTIONS(2613), + [anon_sym_signed] = ACTIONS(2611), + [anon_sym_unsigned] = ACTIONS(2611), + [anon_sym_long] = ACTIONS(2611), + [anon_sym_short] = ACTIONS(2611), + [anon_sym_LBRACK] = ACTIONS(2611), + [anon_sym_static] = ACTIONS(2611), + [anon_sym_register] = ACTIONS(2611), + [anon_sym_inline] = ACTIONS(2611), + [anon_sym___inline] = ACTIONS(2611), + [anon_sym___inline__] = ACTIONS(2611), + [anon_sym___forceinline] = ACTIONS(2611), + [anon_sym_thread_local] = ACTIONS(2611), + [anon_sym___thread] = ACTIONS(2611), + [anon_sym_const] = ACTIONS(2611), + [anon_sym_constexpr] = ACTIONS(2611), + [anon_sym_volatile] = ACTIONS(2611), + [anon_sym_restrict] = ACTIONS(2611), + [anon_sym___restrict__] = ACTIONS(2611), + [anon_sym__Atomic] = ACTIONS(2611), + [anon_sym__Noreturn] = ACTIONS(2611), + [anon_sym_noreturn] = ACTIONS(2611), + [anon_sym__Nonnull] = ACTIONS(2611), + [anon_sym_mutable] = ACTIONS(2611), + [anon_sym_constinit] = ACTIONS(2611), + [anon_sym_consteval] = ACTIONS(2611), + [anon_sym_alignas] = ACTIONS(2611), + [anon_sym__Alignas] = ACTIONS(2611), + [sym_primitive_type] = ACTIONS(2611), + [anon_sym_enum] = ACTIONS(2611), + [anon_sym_class] = ACTIONS(2611), + [anon_sym_struct] = ACTIONS(2611), + [anon_sym_union] = ACTIONS(2611), + [anon_sym_if] = ACTIONS(2611), + [anon_sym_else] = ACTIONS(2611), + [anon_sym_switch] = ACTIONS(2611), + [anon_sym_while] = ACTIONS(2611), + [anon_sym_do] = ACTIONS(2611), + [anon_sym_for] = ACTIONS(2611), + [anon_sym_return] = ACTIONS(2611), + [anon_sym_break] = ACTIONS(2611), + [anon_sym_continue] = ACTIONS(2611), + [anon_sym_goto] = ACTIONS(2611), + [anon_sym___try] = ACTIONS(2611), + [anon_sym___leave] = ACTIONS(2611), + [anon_sym_not] = ACTIONS(2611), + [anon_sym_compl] = ACTIONS(2611), + [anon_sym_DASH_DASH] = ACTIONS(2613), + [anon_sym_PLUS_PLUS] = ACTIONS(2613), + [anon_sym_sizeof] = ACTIONS(2611), + [anon_sym___alignof__] = ACTIONS(2611), + [anon_sym___alignof] = ACTIONS(2611), + [anon_sym__alignof] = ACTIONS(2611), + [anon_sym_alignof] = ACTIONS(2611), + [anon_sym__Alignof] = ACTIONS(2611), + [anon_sym_offsetof] = ACTIONS(2611), + [anon_sym__Generic] = ACTIONS(2611), + [anon_sym_asm] = ACTIONS(2611), + [anon_sym___asm__] = ACTIONS(2611), + [anon_sym___asm] = ACTIONS(2611), + [sym_number_literal] = ACTIONS(2613), + [anon_sym_L_SQUOTE] = ACTIONS(2613), + [anon_sym_u_SQUOTE] = ACTIONS(2613), + [anon_sym_U_SQUOTE] = ACTIONS(2613), + [anon_sym_u8_SQUOTE] = ACTIONS(2613), + [anon_sym_SQUOTE] = ACTIONS(2613), + [anon_sym_L_DQUOTE] = ACTIONS(2613), + [anon_sym_u_DQUOTE] = ACTIONS(2613), + [anon_sym_U_DQUOTE] = ACTIONS(2613), + [anon_sym_u8_DQUOTE] = ACTIONS(2613), + [anon_sym_DQUOTE] = ACTIONS(2613), + [sym_true] = ACTIONS(2611), + [sym_false] = ACTIONS(2611), + [anon_sym_NULL] = ACTIONS(2611), + [anon_sym_nullptr] = ACTIONS(2611), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2611), + [anon_sym_decltype] = ACTIONS(2611), + [anon_sym_typename] = ACTIONS(2611), + [anon_sym_template] = ACTIONS(2611), + [anon_sym_try] = ACTIONS(2611), + [anon_sym_delete] = ACTIONS(2611), + [anon_sym_throw] = ACTIONS(2611), + [anon_sym_co_return] = ACTIONS(2611), + [anon_sym_co_yield] = ACTIONS(2611), + [anon_sym_catch] = ACTIONS(2611), + [anon_sym_R_DQUOTE] = ACTIONS(2613), + [anon_sym_LR_DQUOTE] = ACTIONS(2613), + [anon_sym_uR_DQUOTE] = ACTIONS(2613), + [anon_sym_UR_DQUOTE] = ACTIONS(2613), + [anon_sym_u8R_DQUOTE] = ACTIONS(2613), + [anon_sym_co_await] = ACTIONS(2611), + [anon_sym_new] = ACTIONS(2611), + [anon_sym_requires] = ACTIONS(2611), + [sym_this] = ACTIONS(2611), + }, + [902] = { + [sym_else_clause] = STATE(939), + [sym_identifier] = ACTIONS(2605), + [anon_sym_LPAREN2] = ACTIONS(2607), + [anon_sym_BANG] = ACTIONS(2607), + [anon_sym_TILDE] = ACTIONS(2607), + [anon_sym_DASH] = ACTIONS(2605), + [anon_sym_PLUS] = ACTIONS(2605), + [anon_sym_STAR] = ACTIONS(2607), + [anon_sym_AMP] = ACTIONS(2607), + [anon_sym_SEMI] = ACTIONS(2607), + [anon_sym___extension__] = ACTIONS(2605), + [anon_sym_typedef] = ACTIONS(2605), + [anon_sym_virtual] = ACTIONS(2605), + [anon_sym_extern] = ACTIONS(2605), + [anon_sym___attribute__] = ACTIONS(2605), + [anon_sym___attribute] = ACTIONS(2605), + [anon_sym_COLON_COLON] = ACTIONS(2607), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2607), + [anon_sym___declspec] = ACTIONS(2605), + [anon_sym_LBRACE] = ACTIONS(2607), + [anon_sym_signed] = ACTIONS(2605), + [anon_sym_unsigned] = ACTIONS(2605), + [anon_sym_long] = ACTIONS(2605), + [anon_sym_short] = ACTIONS(2605), + [anon_sym_LBRACK] = ACTIONS(2605), + [anon_sym_static] = ACTIONS(2605), + [anon_sym_register] = ACTIONS(2605), + [anon_sym_inline] = ACTIONS(2605), + [anon_sym___inline] = ACTIONS(2605), + [anon_sym___inline__] = ACTIONS(2605), + [anon_sym___forceinline] = ACTIONS(2605), + [anon_sym_thread_local] = ACTIONS(2605), + [anon_sym___thread] = ACTIONS(2605), + [anon_sym_const] = ACTIONS(2605), + [anon_sym_constexpr] = ACTIONS(2605), + [anon_sym_volatile] = ACTIONS(2605), + [anon_sym_restrict] = ACTIONS(2605), + [anon_sym___restrict__] = ACTIONS(2605), + [anon_sym__Atomic] = ACTIONS(2605), + [anon_sym__Noreturn] = ACTIONS(2605), + [anon_sym_noreturn] = ACTIONS(2605), + [anon_sym__Nonnull] = ACTIONS(2605), + [anon_sym_mutable] = ACTIONS(2605), + [anon_sym_constinit] = ACTIONS(2605), + [anon_sym_consteval] = ACTIONS(2605), + [anon_sym_alignas] = ACTIONS(2605), + [anon_sym__Alignas] = ACTIONS(2605), + [sym_primitive_type] = ACTIONS(2605), + [anon_sym_enum] = ACTIONS(2605), + [anon_sym_class] = ACTIONS(2605), + [anon_sym_struct] = ACTIONS(2605), + [anon_sym_union] = ACTIONS(2605), + [anon_sym_if] = ACTIONS(2605), + [anon_sym_else] = ACTIONS(4302), + [anon_sym_switch] = ACTIONS(2605), + [anon_sym_while] = ACTIONS(2605), + [anon_sym_do] = ACTIONS(2605), + [anon_sym_for] = ACTIONS(2605), + [anon_sym_return] = ACTIONS(2605), + [anon_sym_break] = ACTIONS(2605), + [anon_sym_continue] = ACTIONS(2605), + [anon_sym_goto] = ACTIONS(2605), + [anon_sym___try] = ACTIONS(2605), + [anon_sym___leave] = ACTIONS(2605), + [anon_sym_not] = ACTIONS(2605), + [anon_sym_compl] = ACTIONS(2605), + [anon_sym_DASH_DASH] = ACTIONS(2607), + [anon_sym_PLUS_PLUS] = ACTIONS(2607), + [anon_sym_sizeof] = ACTIONS(2605), + [anon_sym___alignof__] = ACTIONS(2605), + [anon_sym___alignof] = ACTIONS(2605), + [anon_sym__alignof] = ACTIONS(2605), + [anon_sym_alignof] = ACTIONS(2605), + [anon_sym__Alignof] = ACTIONS(2605), + [anon_sym_offsetof] = ACTIONS(2605), + [anon_sym__Generic] = ACTIONS(2605), + [anon_sym_asm] = ACTIONS(2605), + [anon_sym___asm__] = ACTIONS(2605), + [anon_sym___asm] = ACTIONS(2605), + [sym_number_literal] = ACTIONS(2607), + [anon_sym_L_SQUOTE] = ACTIONS(2607), + [anon_sym_u_SQUOTE] = ACTIONS(2607), + [anon_sym_U_SQUOTE] = ACTIONS(2607), + [anon_sym_u8_SQUOTE] = ACTIONS(2607), + [anon_sym_SQUOTE] = ACTIONS(2607), + [anon_sym_L_DQUOTE] = ACTIONS(2607), + [anon_sym_u_DQUOTE] = ACTIONS(2607), + [anon_sym_U_DQUOTE] = ACTIONS(2607), + [anon_sym_u8_DQUOTE] = ACTIONS(2607), + [anon_sym_DQUOTE] = ACTIONS(2607), + [sym_true] = ACTIONS(2605), + [sym_false] = ACTIONS(2605), + [anon_sym_NULL] = ACTIONS(2605), + [anon_sym_nullptr] = ACTIONS(2605), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2605), + [anon_sym_decltype] = ACTIONS(2605), + [anon_sym_typename] = ACTIONS(2605), + [anon_sym_template] = ACTIONS(2605), + [anon_sym_try] = ACTIONS(2605), + [anon_sym_delete] = ACTIONS(2605), + [anon_sym_throw] = ACTIONS(2605), + [anon_sym_co_return] = ACTIONS(2605), + [anon_sym_co_yield] = ACTIONS(2605), + [anon_sym_R_DQUOTE] = ACTIONS(2607), + [anon_sym_LR_DQUOTE] = ACTIONS(2607), + [anon_sym_uR_DQUOTE] = ACTIONS(2607), + [anon_sym_UR_DQUOTE] = ACTIONS(2607), + [anon_sym_u8R_DQUOTE] = ACTIONS(2607), + [anon_sym_co_await] = ACTIONS(2605), + [anon_sym_new] = ACTIONS(2605), + [anon_sym_requires] = ACTIONS(2605), + [sym_this] = ACTIONS(2605), + }, + [903] = { + [sym_string_literal] = STATE(2657), + [sym_template_argument_list] = STATE(1624), + [sym_raw_string_literal] = STATE(2657), + [aux_sym_sized_type_specifier_repeat1] = STATE(2660), + [sym_identifier] = ACTIONS(4164), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4166), + [anon_sym_LPAREN2] = ACTIONS(4168), + [anon_sym_TILDE] = ACTIONS(4172), + [anon_sym_DASH] = ACTIONS(4174), + [anon_sym_PLUS] = ACTIONS(4174), + [anon_sym_STAR] = ACTIONS(4176), + [anon_sym_SLASH] = ACTIONS(4174), + [anon_sym_PERCENT] = ACTIONS(4174), + [anon_sym_PIPE_PIPE] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4179), + [anon_sym_PIPE] = ACTIONS(4174), + [anon_sym_CARET] = ACTIONS(4174), + [anon_sym_AMP] = ACTIONS(4176), + [anon_sym_EQ_EQ] = ACTIONS(4166), + [anon_sym_BANG_EQ] = ACTIONS(4166), + [anon_sym_GT] = ACTIONS(4174), + [anon_sym_GT_EQ] = ACTIONS(4166), + [anon_sym_LT_EQ] = ACTIONS(4174), + [anon_sym_LT] = ACTIONS(4182), + [anon_sym_LT_LT] = ACTIONS(4174), + [anon_sym_GT_GT] = ACTIONS(4174), + [anon_sym_SEMI] = ACTIONS(4304), + [anon_sym___extension__] = ACTIONS(4164), + [anon_sym_virtual] = ACTIONS(4164), + [anon_sym_extern] = ACTIONS(4164), + [anon_sym___attribute__] = ACTIONS(4164), + [anon_sym___attribute] = ACTIONS(4164), + [anon_sym_COLON] = ACTIONS(4298), + [anon_sym_COLON_COLON] = ACTIONS(4187), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4189), + [anon_sym___declspec] = ACTIONS(4164), + [anon_sym___based] = ACTIONS(4164), + [anon_sym___cdecl] = ACTIONS(4164), + [anon_sym___clrcall] = ACTIONS(4164), + [anon_sym___stdcall] = ACTIONS(4164), + [anon_sym___fastcall] = ACTIONS(4164), + [anon_sym___thiscall] = ACTIONS(4164), + [anon_sym___vectorcall] = ACTIONS(4164), + [anon_sym_LBRACE] = ACTIONS(4192), + [anon_sym_signed] = ACTIONS(4194), + [anon_sym_unsigned] = ACTIONS(4194), + [anon_sym_long] = ACTIONS(4194), + [anon_sym_short] = ACTIONS(4194), + [anon_sym_LBRACK] = ACTIONS(4196), + [anon_sym_static] = ACTIONS(4164), + [anon_sym_EQ] = ACTIONS(4200), + [anon_sym_register] = ACTIONS(4164), + [anon_sym_inline] = ACTIONS(4164), + [anon_sym___inline] = ACTIONS(4164), + [anon_sym___inline__] = ACTIONS(4164), + [anon_sym___forceinline] = ACTIONS(4164), + [anon_sym_thread_local] = ACTIONS(4164), + [anon_sym___thread] = ACTIONS(4164), + [anon_sym_const] = ACTIONS(4164), + [anon_sym_constexpr] = ACTIONS(4164), + [anon_sym_volatile] = ACTIONS(4164), + [anon_sym_restrict] = ACTIONS(4164), + [anon_sym___restrict__] = ACTIONS(4164), + [anon_sym__Atomic] = ACTIONS(4164), + [anon_sym__Noreturn] = ACTIONS(4164), + [anon_sym_noreturn] = ACTIONS(4164), + [anon_sym__Nonnull] = ACTIONS(4164), + [anon_sym_mutable] = ACTIONS(4164), + [anon_sym_constinit] = ACTIONS(4164), + [anon_sym_consteval] = ACTIONS(4164), + [anon_sym_alignas] = ACTIONS(4164), + [anon_sym__Alignas] = ACTIONS(4164), + [anon_sym_QMARK] = ACTIONS(4166), + [anon_sym_STAR_EQ] = ACTIONS(4202), + [anon_sym_SLASH_EQ] = ACTIONS(4202), + [anon_sym_PERCENT_EQ] = ACTIONS(4202), + [anon_sym_PLUS_EQ] = ACTIONS(4202), + [anon_sym_DASH_EQ] = ACTIONS(4202), + [anon_sym_LT_LT_EQ] = ACTIONS(4202), + [anon_sym_GT_GT_EQ] = ACTIONS(4202), + [anon_sym_AMP_EQ] = ACTIONS(4202), + [anon_sym_CARET_EQ] = ACTIONS(4202), + [anon_sym_PIPE_EQ] = ACTIONS(4202), + [anon_sym_and_eq] = ACTIONS(4200), + [anon_sym_or_eq] = ACTIONS(4200), + [anon_sym_xor_eq] = ACTIONS(4200), + [anon_sym_LT_EQ_GT] = ACTIONS(4166), + [anon_sym_or] = ACTIONS(4174), + [anon_sym_and] = ACTIONS(4174), + [anon_sym_bitor] = ACTIONS(4174), + [anon_sym_xor] = ACTIONS(4174), + [anon_sym_bitand] = ACTIONS(4174), + [anon_sym_not_eq] = ACTIONS(4174), + [anon_sym_DASH_DASH] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4174), + [anon_sym_DOT_STAR] = ACTIONS(4166), + [anon_sym_DASH_GT] = ACTIONS(4166), + [anon_sym_L_DQUOTE] = ACTIONS(3631), + [anon_sym_u_DQUOTE] = ACTIONS(3631), + [anon_sym_U_DQUOTE] = ACTIONS(3631), + [anon_sym_u8_DQUOTE] = ACTIONS(3631), + [anon_sym_DQUOTE] = ACTIONS(3631), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4164), + [anon_sym_decltype] = ACTIONS(4164), + [anon_sym_template] = ACTIONS(4164), + [anon_sym_operator] = ACTIONS(4164), + [anon_sym_R_DQUOTE] = ACTIONS(3635), + [anon_sym_LR_DQUOTE] = ACTIONS(3635), + [anon_sym_uR_DQUOTE] = ACTIONS(3635), + [anon_sym_UR_DQUOTE] = ACTIONS(3635), + [anon_sym_u8R_DQUOTE] = ACTIONS(3635), + }, + [904] = { + [sym_identifier] = ACTIONS(3943), + [anon_sym_LPAREN2] = ACTIONS(3945), + [anon_sym_BANG] = ACTIONS(3945), + [anon_sym_TILDE] = ACTIONS(3945), + [anon_sym_DASH] = ACTIONS(3943), + [anon_sym_PLUS] = ACTIONS(3943), + [anon_sym_STAR] = ACTIONS(3945), + [anon_sym_AMP] = ACTIONS(3945), + [anon_sym_SEMI] = ACTIONS(3945), + [anon_sym___extension__] = ACTIONS(3943), + [anon_sym_virtual] = ACTIONS(3943), + [anon_sym_extern] = ACTIONS(3943), + [anon_sym___attribute__] = ACTIONS(3943), + [anon_sym___attribute] = ACTIONS(3943), + [anon_sym_using] = ACTIONS(3943), + [anon_sym_COLON_COLON] = ACTIONS(3945), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3945), + [anon_sym___declspec] = ACTIONS(3943), + [anon_sym_LBRACE] = ACTIONS(3945), + [anon_sym_signed] = ACTIONS(3943), + [anon_sym_unsigned] = ACTIONS(3943), + [anon_sym_long] = ACTIONS(3943), + [anon_sym_short] = ACTIONS(3943), + [anon_sym_LBRACK] = ACTIONS(3943), + [anon_sym_static] = ACTIONS(3943), + [anon_sym_register] = ACTIONS(3943), + [anon_sym_inline] = ACTIONS(3943), + [anon_sym___inline] = ACTIONS(3943), + [anon_sym___inline__] = ACTIONS(3943), + [anon_sym___forceinline] = ACTIONS(3943), + [anon_sym_thread_local] = ACTIONS(3943), + [anon_sym___thread] = ACTIONS(3943), + [anon_sym_const] = ACTIONS(3943), + [anon_sym_constexpr] = ACTIONS(3943), + [anon_sym_volatile] = ACTIONS(3943), + [anon_sym_restrict] = ACTIONS(3943), + [anon_sym___restrict__] = ACTIONS(3943), + [anon_sym__Atomic] = ACTIONS(3943), + [anon_sym__Noreturn] = ACTIONS(3943), + [anon_sym_noreturn] = ACTIONS(3943), + [anon_sym__Nonnull] = ACTIONS(3943), + [anon_sym_mutable] = ACTIONS(3943), + [anon_sym_constinit] = ACTIONS(3943), + [anon_sym_consteval] = ACTIONS(3943), + [anon_sym_alignas] = ACTIONS(3943), + [anon_sym__Alignas] = ACTIONS(3943), + [sym_primitive_type] = ACTIONS(3943), + [anon_sym_enum] = ACTIONS(3943), + [anon_sym_class] = ACTIONS(3943), + [anon_sym_struct] = ACTIONS(3943), + [anon_sym_union] = ACTIONS(3943), + [anon_sym_if] = ACTIONS(3943), + [anon_sym_switch] = ACTIONS(3943), + [anon_sym_case] = ACTIONS(3943), + [anon_sym_default] = ACTIONS(3943), + [anon_sym_while] = ACTIONS(3943), + [anon_sym_do] = ACTIONS(3943), + [anon_sym_for] = ACTIONS(3943), + [anon_sym_return] = ACTIONS(3943), + [anon_sym_break] = ACTIONS(3943), + [anon_sym_continue] = ACTIONS(3943), + [anon_sym_goto] = ACTIONS(3943), + [anon_sym___try] = ACTIONS(3943), + [anon_sym___leave] = ACTIONS(3943), + [anon_sym_not] = ACTIONS(3943), + [anon_sym_compl] = ACTIONS(3943), + [anon_sym_DASH_DASH] = ACTIONS(3945), + [anon_sym_PLUS_PLUS] = ACTIONS(3945), + [anon_sym_sizeof] = ACTIONS(3943), + [anon_sym___alignof__] = ACTIONS(3943), + [anon_sym___alignof] = ACTIONS(3943), + [anon_sym__alignof] = ACTIONS(3943), + [anon_sym_alignof] = ACTIONS(3943), + [anon_sym__Alignof] = ACTIONS(3943), + [anon_sym_offsetof] = ACTIONS(3943), + [anon_sym__Generic] = ACTIONS(3943), + [anon_sym_asm] = ACTIONS(3943), + [anon_sym___asm__] = ACTIONS(3943), + [anon_sym___asm] = ACTIONS(3943), + [sym_number_literal] = ACTIONS(3945), + [anon_sym_L_SQUOTE] = ACTIONS(3945), + [anon_sym_u_SQUOTE] = ACTIONS(3945), + [anon_sym_U_SQUOTE] = ACTIONS(3945), + [anon_sym_u8_SQUOTE] = ACTIONS(3945), + [anon_sym_SQUOTE] = ACTIONS(3945), + [anon_sym_L_DQUOTE] = ACTIONS(3945), + [anon_sym_u_DQUOTE] = ACTIONS(3945), + [anon_sym_U_DQUOTE] = ACTIONS(3945), + [anon_sym_u8_DQUOTE] = ACTIONS(3945), + [anon_sym_DQUOTE] = ACTIONS(3945), + [sym_true] = ACTIONS(3943), + [sym_false] = ACTIONS(3943), + [anon_sym_NULL] = ACTIONS(3943), + [anon_sym_nullptr] = ACTIONS(3943), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3943), + [anon_sym_decltype] = ACTIONS(3943), + [anon_sym_typename] = ACTIONS(3943), + [anon_sym_template] = ACTIONS(3943), + [anon_sym_try] = ACTIONS(3943), + [anon_sym_delete] = ACTIONS(3943), + [anon_sym_throw] = ACTIONS(3943), + [anon_sym_co_return] = ACTIONS(3943), + [anon_sym_co_yield] = ACTIONS(3943), + [anon_sym_R_DQUOTE] = ACTIONS(3945), + [anon_sym_LR_DQUOTE] = ACTIONS(3945), + [anon_sym_uR_DQUOTE] = ACTIONS(3945), + [anon_sym_UR_DQUOTE] = ACTIONS(3945), + [anon_sym_u8R_DQUOTE] = ACTIONS(3945), + [anon_sym_co_await] = ACTIONS(3943), + [anon_sym_new] = ACTIONS(3943), + [anon_sym_requires] = ACTIONS(3943), + [sym_this] = ACTIONS(3943), + }, + [905] = { + [sym_identifier] = ACTIONS(1940), + [anon_sym_LPAREN2] = ACTIONS(1938), + [anon_sym_BANG] = ACTIONS(1938), + [anon_sym_TILDE] = ACTIONS(1938), + [anon_sym_DASH] = ACTIONS(1940), + [anon_sym_PLUS] = ACTIONS(1940), + [anon_sym_STAR] = ACTIONS(1938), + [anon_sym_AMP] = ACTIONS(1938), + [anon_sym_SEMI] = ACTIONS(1938), + [anon_sym___extension__] = ACTIONS(1940), + [anon_sym_typedef] = ACTIONS(1940), + [anon_sym_virtual] = ACTIONS(1940), + [anon_sym_extern] = ACTIONS(1940), + [anon_sym___attribute__] = ACTIONS(1940), + [anon_sym___attribute] = ACTIONS(1940), + [anon_sym_COLON_COLON] = ACTIONS(1938), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1938), + [anon_sym___declspec] = ACTIONS(1940), + [anon_sym_LBRACE] = ACTIONS(1938), + [anon_sym_signed] = ACTIONS(1940), + [anon_sym_unsigned] = ACTIONS(1940), + [anon_sym_long] = ACTIONS(1940), + [anon_sym_short] = ACTIONS(1940), + [anon_sym_LBRACK] = ACTIONS(1940), + [anon_sym_static] = ACTIONS(1940), + [anon_sym_register] = ACTIONS(1940), + [anon_sym_inline] = ACTIONS(1940), + [anon_sym___inline] = ACTIONS(1940), + [anon_sym___inline__] = ACTIONS(1940), + [anon_sym___forceinline] = ACTIONS(1940), + [anon_sym_thread_local] = ACTIONS(1940), + [anon_sym___thread] = ACTIONS(1940), + [anon_sym_const] = ACTIONS(1940), + [anon_sym_constexpr] = ACTIONS(1940), + [anon_sym_volatile] = ACTIONS(1940), + [anon_sym_restrict] = ACTIONS(1940), + [anon_sym___restrict__] = ACTIONS(1940), + [anon_sym__Atomic] = ACTIONS(1940), + [anon_sym__Noreturn] = ACTIONS(1940), + [anon_sym_noreturn] = ACTIONS(1940), + [anon_sym__Nonnull] = ACTIONS(1940), + [anon_sym_mutable] = ACTIONS(1940), + [anon_sym_constinit] = ACTIONS(1940), + [anon_sym_consteval] = ACTIONS(1940), + [anon_sym_alignas] = ACTIONS(1940), + [anon_sym__Alignas] = ACTIONS(1940), + [sym_primitive_type] = ACTIONS(1940), + [anon_sym_enum] = ACTIONS(1940), + [anon_sym_class] = ACTIONS(1940), + [anon_sym_struct] = ACTIONS(1940), + [anon_sym_union] = ACTIONS(1940), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_else] = ACTIONS(1940), + [anon_sym_switch] = ACTIONS(1940), + [anon_sym_while] = ACTIONS(1940), + [anon_sym_do] = ACTIONS(1940), + [anon_sym_for] = ACTIONS(1940), + [anon_sym_return] = ACTIONS(1940), + [anon_sym_break] = ACTIONS(1940), + [anon_sym_continue] = ACTIONS(1940), + [anon_sym_goto] = ACTIONS(1940), + [anon_sym___try] = ACTIONS(1940), + [anon_sym___leave] = ACTIONS(1940), + [anon_sym_not] = ACTIONS(1940), + [anon_sym_compl] = ACTIONS(1940), + [anon_sym_DASH_DASH] = ACTIONS(1938), + [anon_sym_PLUS_PLUS] = ACTIONS(1938), + [anon_sym_sizeof] = ACTIONS(1940), + [anon_sym___alignof__] = ACTIONS(1940), + [anon_sym___alignof] = ACTIONS(1940), + [anon_sym__alignof] = ACTIONS(1940), + [anon_sym_alignof] = ACTIONS(1940), + [anon_sym__Alignof] = ACTIONS(1940), + [anon_sym_offsetof] = ACTIONS(1940), + [anon_sym__Generic] = ACTIONS(1940), + [anon_sym_asm] = ACTIONS(1940), + [anon_sym___asm__] = ACTIONS(1940), + [anon_sym___asm] = ACTIONS(1940), + [sym_number_literal] = ACTIONS(1938), + [anon_sym_L_SQUOTE] = ACTIONS(1938), + [anon_sym_u_SQUOTE] = ACTIONS(1938), + [anon_sym_U_SQUOTE] = ACTIONS(1938), + [anon_sym_u8_SQUOTE] = ACTIONS(1938), + [anon_sym_SQUOTE] = ACTIONS(1938), + [anon_sym_L_DQUOTE] = ACTIONS(1938), + [anon_sym_u_DQUOTE] = ACTIONS(1938), + [anon_sym_U_DQUOTE] = ACTIONS(1938), + [anon_sym_u8_DQUOTE] = ACTIONS(1938), + [anon_sym_DQUOTE] = ACTIONS(1938), + [sym_true] = ACTIONS(1940), + [sym_false] = ACTIONS(1940), + [anon_sym_NULL] = ACTIONS(1940), + [anon_sym_nullptr] = ACTIONS(1940), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1940), + [anon_sym_decltype] = ACTIONS(1940), + [anon_sym_typename] = ACTIONS(1940), + [anon_sym_template] = ACTIONS(1940), + [anon_sym_try] = ACTIONS(1940), + [anon_sym_delete] = ACTIONS(1940), + [anon_sym_throw] = ACTIONS(1940), + [anon_sym_co_return] = ACTIONS(1940), + [anon_sym_co_yield] = ACTIONS(1940), + [anon_sym_catch] = ACTIONS(1940), + [anon_sym_R_DQUOTE] = ACTIONS(1938), + [anon_sym_LR_DQUOTE] = ACTIONS(1938), + [anon_sym_uR_DQUOTE] = ACTIONS(1938), + [anon_sym_UR_DQUOTE] = ACTIONS(1938), + [anon_sym_u8R_DQUOTE] = ACTIONS(1938), + [anon_sym_co_await] = ACTIONS(1940), + [anon_sym_new] = ACTIONS(1940), + [anon_sym_requires] = ACTIONS(1940), + [sym_this] = ACTIONS(1940), + }, + [906] = { + [sym_identifier] = ACTIONS(1936), + [anon_sym_LPAREN2] = ACTIONS(1934), + [anon_sym_BANG] = ACTIONS(1934), + [anon_sym_TILDE] = ACTIONS(1934), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_STAR] = ACTIONS(1934), + [anon_sym_AMP] = ACTIONS(1934), + [anon_sym_SEMI] = ACTIONS(1934), + [anon_sym___extension__] = ACTIONS(1936), + [anon_sym_typedef] = ACTIONS(1936), + [anon_sym_virtual] = ACTIONS(1936), + [anon_sym_extern] = ACTIONS(1936), + [anon_sym___attribute__] = ACTIONS(1936), + [anon_sym___attribute] = ACTIONS(1936), + [anon_sym_COLON_COLON] = ACTIONS(1934), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1934), + [anon_sym___declspec] = ACTIONS(1936), + [anon_sym_LBRACE] = ACTIONS(1934), + [anon_sym_signed] = ACTIONS(1936), + [anon_sym_unsigned] = ACTIONS(1936), + [anon_sym_long] = ACTIONS(1936), + [anon_sym_short] = ACTIONS(1936), + [anon_sym_LBRACK] = ACTIONS(1936), + [anon_sym_static] = ACTIONS(1936), + [anon_sym_register] = ACTIONS(1936), + [anon_sym_inline] = ACTIONS(1936), + [anon_sym___inline] = ACTIONS(1936), + [anon_sym___inline__] = ACTIONS(1936), + [anon_sym___forceinline] = ACTIONS(1936), + [anon_sym_thread_local] = ACTIONS(1936), + [anon_sym___thread] = ACTIONS(1936), + [anon_sym_const] = ACTIONS(1936), + [anon_sym_constexpr] = ACTIONS(1936), + [anon_sym_volatile] = ACTIONS(1936), + [anon_sym_restrict] = ACTIONS(1936), + [anon_sym___restrict__] = ACTIONS(1936), + [anon_sym__Atomic] = ACTIONS(1936), + [anon_sym__Noreturn] = ACTIONS(1936), + [anon_sym_noreturn] = ACTIONS(1936), + [anon_sym__Nonnull] = ACTIONS(1936), + [anon_sym_mutable] = ACTIONS(1936), + [anon_sym_constinit] = ACTIONS(1936), + [anon_sym_consteval] = ACTIONS(1936), + [anon_sym_alignas] = ACTIONS(1936), + [anon_sym__Alignas] = ACTIONS(1936), + [sym_primitive_type] = ACTIONS(1936), + [anon_sym_enum] = ACTIONS(1936), + [anon_sym_class] = ACTIONS(1936), + [anon_sym_struct] = ACTIONS(1936), + [anon_sym_union] = ACTIONS(1936), + [anon_sym_if] = ACTIONS(1936), + [anon_sym_else] = ACTIONS(1936), + [anon_sym_switch] = ACTIONS(1936), + [anon_sym_while] = ACTIONS(1936), + [anon_sym_do] = ACTIONS(1936), + [anon_sym_for] = ACTIONS(1936), + [anon_sym_return] = ACTIONS(1936), + [anon_sym_break] = ACTIONS(1936), + [anon_sym_continue] = ACTIONS(1936), + [anon_sym_goto] = ACTIONS(1936), + [anon_sym___try] = ACTIONS(1936), + [anon_sym___leave] = ACTIONS(1936), + [anon_sym_not] = ACTIONS(1936), + [anon_sym_compl] = ACTIONS(1936), + [anon_sym_DASH_DASH] = ACTIONS(1934), + [anon_sym_PLUS_PLUS] = ACTIONS(1934), + [anon_sym_sizeof] = ACTIONS(1936), + [anon_sym___alignof__] = ACTIONS(1936), + [anon_sym___alignof] = ACTIONS(1936), + [anon_sym__alignof] = ACTIONS(1936), + [anon_sym_alignof] = ACTIONS(1936), + [anon_sym__Alignof] = ACTIONS(1936), + [anon_sym_offsetof] = ACTIONS(1936), + [anon_sym__Generic] = ACTIONS(1936), + [anon_sym_asm] = ACTIONS(1936), + [anon_sym___asm__] = ACTIONS(1936), + [anon_sym___asm] = ACTIONS(1936), + [sym_number_literal] = ACTIONS(1934), + [anon_sym_L_SQUOTE] = ACTIONS(1934), + [anon_sym_u_SQUOTE] = ACTIONS(1934), + [anon_sym_U_SQUOTE] = ACTIONS(1934), + [anon_sym_u8_SQUOTE] = ACTIONS(1934), + [anon_sym_SQUOTE] = ACTIONS(1934), + [anon_sym_L_DQUOTE] = ACTIONS(1934), + [anon_sym_u_DQUOTE] = ACTIONS(1934), + [anon_sym_U_DQUOTE] = ACTIONS(1934), + [anon_sym_u8_DQUOTE] = ACTIONS(1934), + [anon_sym_DQUOTE] = ACTIONS(1934), + [sym_true] = ACTIONS(1936), + [sym_false] = ACTIONS(1936), + [anon_sym_NULL] = ACTIONS(1936), + [anon_sym_nullptr] = ACTIONS(1936), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1936), + [anon_sym_decltype] = ACTIONS(1936), + [anon_sym_typename] = ACTIONS(1936), + [anon_sym_template] = ACTIONS(1936), + [anon_sym_try] = ACTIONS(1936), + [anon_sym_delete] = ACTIONS(1936), + [anon_sym_throw] = ACTIONS(1936), + [anon_sym_co_return] = ACTIONS(1936), + [anon_sym_co_yield] = ACTIONS(1936), + [anon_sym_catch] = ACTIONS(1936), + [anon_sym_R_DQUOTE] = ACTIONS(1934), + [anon_sym_LR_DQUOTE] = ACTIONS(1934), + [anon_sym_uR_DQUOTE] = ACTIONS(1934), + [anon_sym_UR_DQUOTE] = ACTIONS(1934), + [anon_sym_u8R_DQUOTE] = ACTIONS(1934), + [anon_sym_co_await] = ACTIONS(1936), + [anon_sym_new] = ACTIONS(1936), + [anon_sym_requires] = ACTIONS(1936), + [sym_this] = ACTIONS(1936), + }, + [907] = { + [sym_identifier] = ACTIONS(3959), + [anon_sym_LPAREN2] = ACTIONS(3961), + [anon_sym_BANG] = ACTIONS(3961), + [anon_sym_TILDE] = ACTIONS(3961), + [anon_sym_DASH] = ACTIONS(3959), + [anon_sym_PLUS] = ACTIONS(3959), + [anon_sym_STAR] = ACTIONS(3961), + [anon_sym_AMP] = ACTIONS(3961), + [anon_sym_SEMI] = ACTIONS(3961), + [anon_sym___extension__] = ACTIONS(3959), + [anon_sym_virtual] = ACTIONS(3959), + [anon_sym_extern] = ACTIONS(3959), + [anon_sym___attribute__] = ACTIONS(3959), + [anon_sym___attribute] = ACTIONS(3959), + [anon_sym_using] = ACTIONS(3959), + [anon_sym_COLON_COLON] = ACTIONS(3961), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3961), + [anon_sym___declspec] = ACTIONS(3959), + [anon_sym_LBRACE] = ACTIONS(3961), + [anon_sym_signed] = ACTIONS(3959), + [anon_sym_unsigned] = ACTIONS(3959), + [anon_sym_long] = ACTIONS(3959), + [anon_sym_short] = ACTIONS(3959), + [anon_sym_LBRACK] = ACTIONS(3959), + [anon_sym_static] = ACTIONS(3959), + [anon_sym_register] = ACTIONS(3959), + [anon_sym_inline] = ACTIONS(3959), + [anon_sym___inline] = ACTIONS(3959), + [anon_sym___inline__] = ACTIONS(3959), + [anon_sym___forceinline] = ACTIONS(3959), + [anon_sym_thread_local] = ACTIONS(3959), + [anon_sym___thread] = ACTIONS(3959), + [anon_sym_const] = ACTIONS(3959), + [anon_sym_constexpr] = ACTIONS(3959), + [anon_sym_volatile] = ACTIONS(3959), + [anon_sym_restrict] = ACTIONS(3959), + [anon_sym___restrict__] = ACTIONS(3959), + [anon_sym__Atomic] = ACTIONS(3959), + [anon_sym__Noreturn] = ACTIONS(3959), + [anon_sym_noreturn] = ACTIONS(3959), + [anon_sym__Nonnull] = ACTIONS(3959), + [anon_sym_mutable] = ACTIONS(3959), + [anon_sym_constinit] = ACTIONS(3959), + [anon_sym_consteval] = ACTIONS(3959), + [anon_sym_alignas] = ACTIONS(3959), + [anon_sym__Alignas] = ACTIONS(3959), + [sym_primitive_type] = ACTIONS(3959), + [anon_sym_enum] = ACTIONS(3959), + [anon_sym_class] = ACTIONS(3959), + [anon_sym_struct] = ACTIONS(3959), + [anon_sym_union] = ACTIONS(3959), + [anon_sym_if] = ACTIONS(3959), + [anon_sym_switch] = ACTIONS(3959), + [anon_sym_case] = ACTIONS(3959), + [anon_sym_default] = ACTIONS(3959), + [anon_sym_while] = ACTIONS(3959), + [anon_sym_do] = ACTIONS(3959), + [anon_sym_for] = ACTIONS(3959), + [anon_sym_return] = ACTIONS(3959), + [anon_sym_break] = ACTIONS(3959), + [anon_sym_continue] = ACTIONS(3959), + [anon_sym_goto] = ACTIONS(3959), + [anon_sym___try] = ACTIONS(3959), + [anon_sym___leave] = ACTIONS(3959), + [anon_sym_not] = ACTIONS(3959), + [anon_sym_compl] = ACTIONS(3959), + [anon_sym_DASH_DASH] = ACTIONS(3961), + [anon_sym_PLUS_PLUS] = ACTIONS(3961), + [anon_sym_sizeof] = ACTIONS(3959), + [anon_sym___alignof__] = ACTIONS(3959), + [anon_sym___alignof] = ACTIONS(3959), + [anon_sym__alignof] = ACTIONS(3959), + [anon_sym_alignof] = ACTIONS(3959), + [anon_sym__Alignof] = ACTIONS(3959), + [anon_sym_offsetof] = ACTIONS(3959), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_asm] = ACTIONS(3959), + [anon_sym___asm__] = ACTIONS(3959), + [anon_sym___asm] = ACTIONS(3959), + [sym_number_literal] = ACTIONS(3961), + [anon_sym_L_SQUOTE] = ACTIONS(3961), + [anon_sym_u_SQUOTE] = ACTIONS(3961), + [anon_sym_U_SQUOTE] = ACTIONS(3961), + [anon_sym_u8_SQUOTE] = ACTIONS(3961), + [anon_sym_SQUOTE] = ACTIONS(3961), + [anon_sym_L_DQUOTE] = ACTIONS(3961), + [anon_sym_u_DQUOTE] = ACTIONS(3961), + [anon_sym_U_DQUOTE] = ACTIONS(3961), + [anon_sym_u8_DQUOTE] = ACTIONS(3961), + [anon_sym_DQUOTE] = ACTIONS(3961), + [sym_true] = ACTIONS(3959), + [sym_false] = ACTIONS(3959), + [anon_sym_NULL] = ACTIONS(3959), + [anon_sym_nullptr] = ACTIONS(3959), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3959), + [anon_sym_decltype] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(3959), + [anon_sym_template] = ACTIONS(3959), + [anon_sym_try] = ACTIONS(3959), + [anon_sym_delete] = ACTIONS(3959), + [anon_sym_throw] = ACTIONS(3959), + [anon_sym_co_return] = ACTIONS(3959), + [anon_sym_co_yield] = ACTIONS(3959), + [anon_sym_R_DQUOTE] = ACTIONS(3961), + [anon_sym_LR_DQUOTE] = ACTIONS(3961), + [anon_sym_uR_DQUOTE] = ACTIONS(3961), + [anon_sym_UR_DQUOTE] = ACTIONS(3961), + [anon_sym_u8R_DQUOTE] = ACTIONS(3961), + [anon_sym_co_await] = ACTIONS(3959), + [anon_sym_new] = ACTIONS(3959), + [anon_sym_requires] = ACTIONS(3959), + [sym_this] = ACTIONS(3959), + }, + [908] = { + [sym_else_clause] = STATE(936), + [sym_identifier] = ACTIONS(2615), + [anon_sym_LPAREN2] = ACTIONS(2617), + [anon_sym_BANG] = ACTIONS(2617), + [anon_sym_TILDE] = ACTIONS(2617), + [anon_sym_DASH] = ACTIONS(2615), + [anon_sym_PLUS] = ACTIONS(2615), + [anon_sym_STAR] = ACTIONS(2617), + [anon_sym_AMP] = ACTIONS(2617), + [anon_sym_SEMI] = ACTIONS(2617), + [anon_sym___extension__] = ACTIONS(2615), + [anon_sym_typedef] = ACTIONS(2615), + [anon_sym_virtual] = ACTIONS(2615), + [anon_sym_extern] = ACTIONS(2615), + [anon_sym___attribute__] = ACTIONS(2615), + [anon_sym___attribute] = ACTIONS(2615), + [anon_sym_COLON_COLON] = ACTIONS(2617), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2617), + [anon_sym___declspec] = ACTIONS(2615), + [anon_sym_LBRACE] = ACTIONS(2617), + [anon_sym_signed] = ACTIONS(2615), + [anon_sym_unsigned] = ACTIONS(2615), + [anon_sym_long] = ACTIONS(2615), + [anon_sym_short] = ACTIONS(2615), + [anon_sym_LBRACK] = ACTIONS(2615), + [anon_sym_static] = ACTIONS(2615), + [anon_sym_register] = ACTIONS(2615), + [anon_sym_inline] = ACTIONS(2615), + [anon_sym___inline] = ACTIONS(2615), + [anon_sym___inline__] = ACTIONS(2615), + [anon_sym___forceinline] = ACTIONS(2615), + [anon_sym_thread_local] = ACTIONS(2615), + [anon_sym___thread] = ACTIONS(2615), + [anon_sym_const] = ACTIONS(2615), + [anon_sym_constexpr] = ACTIONS(2615), + [anon_sym_volatile] = ACTIONS(2615), + [anon_sym_restrict] = ACTIONS(2615), + [anon_sym___restrict__] = ACTIONS(2615), + [anon_sym__Atomic] = ACTIONS(2615), + [anon_sym__Noreturn] = ACTIONS(2615), + [anon_sym_noreturn] = ACTIONS(2615), + [anon_sym__Nonnull] = ACTIONS(2615), + [anon_sym_mutable] = ACTIONS(2615), + [anon_sym_constinit] = ACTIONS(2615), + [anon_sym_consteval] = ACTIONS(2615), + [anon_sym_alignas] = ACTIONS(2615), + [anon_sym__Alignas] = ACTIONS(2615), + [sym_primitive_type] = ACTIONS(2615), + [anon_sym_enum] = ACTIONS(2615), + [anon_sym_class] = ACTIONS(2615), + [anon_sym_struct] = ACTIONS(2615), + [anon_sym_union] = ACTIONS(2615), + [anon_sym_if] = ACTIONS(2615), + [anon_sym_else] = ACTIONS(4302), + [anon_sym_switch] = ACTIONS(2615), + [anon_sym_while] = ACTIONS(2615), + [anon_sym_do] = ACTIONS(2615), + [anon_sym_for] = ACTIONS(2615), + [anon_sym_return] = ACTIONS(2615), + [anon_sym_break] = ACTIONS(2615), + [anon_sym_continue] = ACTIONS(2615), + [anon_sym_goto] = ACTIONS(2615), + [anon_sym___try] = ACTIONS(2615), + [anon_sym___leave] = ACTIONS(2615), + [anon_sym_not] = ACTIONS(2615), + [anon_sym_compl] = ACTIONS(2615), + [anon_sym_DASH_DASH] = ACTIONS(2617), + [anon_sym_PLUS_PLUS] = ACTIONS(2617), + [anon_sym_sizeof] = ACTIONS(2615), + [anon_sym___alignof__] = ACTIONS(2615), + [anon_sym___alignof] = ACTIONS(2615), + [anon_sym__alignof] = ACTIONS(2615), + [anon_sym_alignof] = ACTIONS(2615), + [anon_sym__Alignof] = ACTIONS(2615), + [anon_sym_offsetof] = ACTIONS(2615), + [anon_sym__Generic] = ACTIONS(2615), + [anon_sym_asm] = ACTIONS(2615), + [anon_sym___asm__] = ACTIONS(2615), + [anon_sym___asm] = ACTIONS(2615), + [sym_number_literal] = ACTIONS(2617), + [anon_sym_L_SQUOTE] = ACTIONS(2617), + [anon_sym_u_SQUOTE] = ACTIONS(2617), + [anon_sym_U_SQUOTE] = ACTIONS(2617), + [anon_sym_u8_SQUOTE] = ACTIONS(2617), + [anon_sym_SQUOTE] = ACTIONS(2617), + [anon_sym_L_DQUOTE] = ACTIONS(2617), + [anon_sym_u_DQUOTE] = ACTIONS(2617), + [anon_sym_U_DQUOTE] = ACTIONS(2617), + [anon_sym_u8_DQUOTE] = ACTIONS(2617), + [anon_sym_DQUOTE] = ACTIONS(2617), + [sym_true] = ACTIONS(2615), + [sym_false] = ACTIONS(2615), + [anon_sym_NULL] = ACTIONS(2615), + [anon_sym_nullptr] = ACTIONS(2615), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2615), + [anon_sym_decltype] = ACTIONS(2615), + [anon_sym_typename] = ACTIONS(2615), + [anon_sym_template] = ACTIONS(2615), + [anon_sym_try] = ACTIONS(2615), + [anon_sym_delete] = ACTIONS(2615), + [anon_sym_throw] = ACTIONS(2615), + [anon_sym_co_return] = ACTIONS(2615), + [anon_sym_co_yield] = ACTIONS(2615), + [anon_sym_R_DQUOTE] = ACTIONS(2617), + [anon_sym_LR_DQUOTE] = ACTIONS(2617), + [anon_sym_uR_DQUOTE] = ACTIONS(2617), + [anon_sym_UR_DQUOTE] = ACTIONS(2617), + [anon_sym_u8R_DQUOTE] = ACTIONS(2617), + [anon_sym_co_await] = ACTIONS(2615), + [anon_sym_new] = ACTIONS(2615), + [anon_sym_requires] = ACTIONS(2615), + [sym_this] = ACTIONS(2615), + }, + [909] = { + [sym_ms_based_modifier] = STATE(8864), + [sym__declarator] = STATE(6634), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6145), + [sym_array_declarator] = STATE(6145), + [sym_expression] = STATE(3226), + [sym__string] = STATE(3393), + [sym_conditional_expression] = STATE(3401), + [sym_assignment_expression] = STATE(3401), + [sym_pointer_expression] = STATE(3405), + [sym_unary_expression] = STATE(3401), + [sym_binary_expression] = STATE(3401), + [sym_update_expression] = STATE(3401), + [sym_cast_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3401), + [sym_alignof_expression] = STATE(3401), + [sym_offsetof_expression] = STATE(3401), + [sym_generic_expression] = STATE(3401), + [sym_subscript_expression] = STATE(3405), + [sym_call_expression] = STATE(3405), + [sym_gnu_asm_expression] = STATE(3401), + [sym_extension_expression] = STATE(3401), + [sym_field_expression] = STATE(3405), + [sym_compound_literal_expression] = STATE(3401), + [sym_parenthesized_expression] = STATE(3405), + [sym_char_literal] = STATE(3393), + [sym_concatenated_string] = STATE(3393), + [sym_string_literal] = STATE(2380), + [sym_null] = STATE(3401), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7745), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3319), + [sym_raw_string_literal] = STATE(2380), + [sym_co_await_expression] = STATE(3401), + [sym_new_expression] = STATE(3401), + [sym_delete_expression] = STATE(3401), + [sym_requires_clause] = STATE(3401), + [sym_requires_expression] = STATE(3401), + [sym_lambda_expression] = STATE(3401), + [sym_lambda_capture_specifier] = STATE(5494), + [sym_fold_expression] = STATE(3401), + [sym_parameter_pack_expansion] = STATE(3401), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5869), + [sym_qualified_identifier] = STATE(3389), + [sym_qualified_type_identifier] = STATE(7745), + [sym_operator_name] = STATE(6145), + [sym_user_defined_literal] = STATE(3405), + [sym_identifier] = ACTIONS(3331), + [anon_sym_LPAREN2] = ACTIONS(1790), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1794), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1800), + [anon_sym___extension__] = ACTIONS(2455), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym___based] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(1810), + [sym_primitive_type] = ACTIONS(2459), + [anon_sym_not] = ACTIONS(1796), + [anon_sym_compl] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_sizeof] = ACTIONS(1824), + [anon_sym___alignof__] = ACTIONS(1826), + [anon_sym___alignof] = ACTIONS(1826), + [anon_sym__alignof] = ACTIONS(1826), + [anon_sym_alignof] = ACTIONS(1826), + [anon_sym__Alignof] = ACTIONS(1826), + [anon_sym_offsetof] = ACTIONS(1828), + [anon_sym__Generic] = ACTIONS(1830), + [anon_sym_asm] = ACTIONS(1832), + [anon_sym___asm__] = ACTIONS(1832), + [anon_sym___asm] = ACTIONS(1832), + [sym_number_literal] = ACTIONS(1834), + [anon_sym_L_SQUOTE] = ACTIONS(1836), + [anon_sym_u_SQUOTE] = ACTIONS(1836), + [anon_sym_U_SQUOTE] = ACTIONS(1836), + [anon_sym_u8_SQUOTE] = ACTIONS(1836), + [anon_sym_SQUOTE] = ACTIONS(1836), + [anon_sym_L_DQUOTE] = ACTIONS(1838), + [anon_sym_u_DQUOTE] = ACTIONS(1838), + [anon_sym_U_DQUOTE] = ACTIONS(1838), + [anon_sym_u8_DQUOTE] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym_true] = ACTIONS(1840), + [sym_false] = ACTIONS(1840), + [anon_sym_NULL] = ACTIONS(1842), + [anon_sym_nullptr] = ACTIONS(1842), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_operator] = ACTIONS(1850), + [anon_sym_delete] = ACTIONS(1852), + [anon_sym_R_DQUOTE] = ACTIONS(1854), + [anon_sym_LR_DQUOTE] = ACTIONS(1854), + [anon_sym_uR_DQUOTE] = ACTIONS(1854), + [anon_sym_UR_DQUOTE] = ACTIONS(1854), + [anon_sym_u8R_DQUOTE] = ACTIONS(1854), + [anon_sym_co_await] = ACTIONS(1856), + [anon_sym_new] = ACTIONS(1858), + [anon_sym_requires] = ACTIONS(1860), + [sym_this] = ACTIONS(1840), + }, + [910] = { + [sym_identifier] = ACTIONS(2647), + [anon_sym_LPAREN2] = ACTIONS(2649), + [anon_sym_BANG] = ACTIONS(2649), + [anon_sym_TILDE] = ACTIONS(2649), + [anon_sym_DASH] = ACTIONS(2647), + [anon_sym_PLUS] = ACTIONS(2647), + [anon_sym_STAR] = ACTIONS(2649), + [anon_sym_AMP] = ACTIONS(2649), + [anon_sym_SEMI] = ACTIONS(2649), + [anon_sym___extension__] = ACTIONS(2647), + [anon_sym_typedef] = ACTIONS(2647), + [anon_sym_virtual] = ACTIONS(2647), + [anon_sym_extern] = ACTIONS(2647), + [anon_sym___attribute__] = ACTIONS(2647), + [anon_sym___attribute] = ACTIONS(2647), + [anon_sym_COLON_COLON] = ACTIONS(2649), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2649), + [anon_sym___declspec] = ACTIONS(2647), + [anon_sym_LBRACE] = ACTIONS(2649), + [anon_sym_signed] = ACTIONS(2647), + [anon_sym_unsigned] = ACTIONS(2647), + [anon_sym_long] = ACTIONS(2647), + [anon_sym_short] = ACTIONS(2647), + [anon_sym_LBRACK] = ACTIONS(2647), + [anon_sym_static] = ACTIONS(2647), + [anon_sym_register] = ACTIONS(2647), + [anon_sym_inline] = ACTIONS(2647), + [anon_sym___inline] = ACTIONS(2647), + [anon_sym___inline__] = ACTIONS(2647), + [anon_sym___forceinline] = ACTIONS(2647), + [anon_sym_thread_local] = ACTIONS(2647), + [anon_sym___thread] = ACTIONS(2647), + [anon_sym_const] = ACTIONS(2647), + [anon_sym_constexpr] = ACTIONS(2647), + [anon_sym_volatile] = ACTIONS(2647), + [anon_sym_restrict] = ACTIONS(2647), + [anon_sym___restrict__] = ACTIONS(2647), + [anon_sym__Atomic] = ACTIONS(2647), + [anon_sym__Noreturn] = ACTIONS(2647), + [anon_sym_noreturn] = ACTIONS(2647), + [anon_sym__Nonnull] = ACTIONS(2647), + [anon_sym_mutable] = ACTIONS(2647), + [anon_sym_constinit] = ACTIONS(2647), + [anon_sym_consteval] = ACTIONS(2647), + [anon_sym_alignas] = ACTIONS(2647), + [anon_sym__Alignas] = ACTIONS(2647), + [sym_primitive_type] = ACTIONS(2647), + [anon_sym_enum] = ACTIONS(2647), + [anon_sym_class] = ACTIONS(2647), + [anon_sym_struct] = ACTIONS(2647), + [anon_sym_union] = ACTIONS(2647), + [anon_sym_if] = ACTIONS(2647), + [anon_sym_else] = ACTIONS(2647), + [anon_sym_switch] = ACTIONS(2647), + [anon_sym_while] = ACTIONS(2647), + [anon_sym_do] = ACTIONS(2647), + [anon_sym_for] = ACTIONS(2647), + [anon_sym_return] = ACTIONS(2647), + [anon_sym_break] = ACTIONS(2647), + [anon_sym_continue] = ACTIONS(2647), + [anon_sym_goto] = ACTIONS(2647), + [anon_sym___try] = ACTIONS(2647), + [anon_sym___leave] = ACTIONS(2647), + [anon_sym_not] = ACTIONS(2647), + [anon_sym_compl] = ACTIONS(2647), + [anon_sym_DASH_DASH] = ACTIONS(2649), + [anon_sym_PLUS_PLUS] = ACTIONS(2649), + [anon_sym_sizeof] = ACTIONS(2647), + [anon_sym___alignof__] = ACTIONS(2647), + [anon_sym___alignof] = ACTIONS(2647), + [anon_sym__alignof] = ACTIONS(2647), + [anon_sym_alignof] = ACTIONS(2647), + [anon_sym__Alignof] = ACTIONS(2647), + [anon_sym_offsetof] = ACTIONS(2647), + [anon_sym__Generic] = ACTIONS(2647), + [anon_sym_asm] = ACTIONS(2647), + [anon_sym___asm__] = ACTIONS(2647), + [anon_sym___asm] = ACTIONS(2647), + [sym_number_literal] = ACTIONS(2649), + [anon_sym_L_SQUOTE] = ACTIONS(2649), + [anon_sym_u_SQUOTE] = ACTIONS(2649), + [anon_sym_U_SQUOTE] = ACTIONS(2649), + [anon_sym_u8_SQUOTE] = ACTIONS(2649), + [anon_sym_SQUOTE] = ACTIONS(2649), + [anon_sym_L_DQUOTE] = ACTIONS(2649), + [anon_sym_u_DQUOTE] = ACTIONS(2649), + [anon_sym_U_DQUOTE] = ACTIONS(2649), + [anon_sym_u8_DQUOTE] = ACTIONS(2649), + [anon_sym_DQUOTE] = ACTIONS(2649), + [sym_true] = ACTIONS(2647), + [sym_false] = ACTIONS(2647), + [anon_sym_NULL] = ACTIONS(2647), + [anon_sym_nullptr] = ACTIONS(2647), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2647), + [anon_sym_decltype] = ACTIONS(2647), + [anon_sym_typename] = ACTIONS(2647), + [anon_sym_template] = ACTIONS(2647), + [anon_sym_try] = ACTIONS(2647), + [anon_sym_delete] = ACTIONS(2647), + [anon_sym_throw] = ACTIONS(2647), + [anon_sym_co_return] = ACTIONS(2647), + [anon_sym_co_yield] = ACTIONS(2647), + [anon_sym_R_DQUOTE] = ACTIONS(2649), + [anon_sym_LR_DQUOTE] = ACTIONS(2649), + [anon_sym_uR_DQUOTE] = ACTIONS(2649), + [anon_sym_UR_DQUOTE] = ACTIONS(2649), + [anon_sym_u8R_DQUOTE] = ACTIONS(2649), + [anon_sym_co_await] = ACTIONS(2647), + [anon_sym_new] = ACTIONS(2647), + [anon_sym_requires] = ACTIONS(2647), + [sym_this] = ACTIONS(2647), + }, + [911] = { + [sym_identifier] = ACTIONS(2651), + [anon_sym_LPAREN2] = ACTIONS(2653), + [anon_sym_BANG] = ACTIONS(2653), + [anon_sym_TILDE] = ACTIONS(2653), + [anon_sym_DASH] = ACTIONS(2651), + [anon_sym_PLUS] = ACTIONS(2651), + [anon_sym_STAR] = ACTIONS(2653), + [anon_sym_AMP] = ACTIONS(2653), + [anon_sym_SEMI] = ACTIONS(2653), + [anon_sym___extension__] = ACTIONS(2651), + [anon_sym_typedef] = ACTIONS(2651), + [anon_sym_virtual] = ACTIONS(2651), + [anon_sym_extern] = ACTIONS(2651), + [anon_sym___attribute__] = ACTIONS(2651), + [anon_sym___attribute] = ACTIONS(2651), + [anon_sym_COLON_COLON] = ACTIONS(2653), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2653), + [anon_sym___declspec] = ACTIONS(2651), + [anon_sym_LBRACE] = ACTIONS(2653), + [anon_sym_signed] = ACTIONS(2651), + [anon_sym_unsigned] = ACTIONS(2651), + [anon_sym_long] = ACTIONS(2651), + [anon_sym_short] = ACTIONS(2651), + [anon_sym_LBRACK] = ACTIONS(2651), + [anon_sym_static] = ACTIONS(2651), + [anon_sym_register] = ACTIONS(2651), + [anon_sym_inline] = ACTIONS(2651), + [anon_sym___inline] = ACTIONS(2651), + [anon_sym___inline__] = ACTIONS(2651), + [anon_sym___forceinline] = ACTIONS(2651), + [anon_sym_thread_local] = ACTIONS(2651), + [anon_sym___thread] = ACTIONS(2651), + [anon_sym_const] = ACTIONS(2651), + [anon_sym_constexpr] = ACTIONS(2651), + [anon_sym_volatile] = ACTIONS(2651), + [anon_sym_restrict] = ACTIONS(2651), + [anon_sym___restrict__] = ACTIONS(2651), + [anon_sym__Atomic] = ACTIONS(2651), + [anon_sym__Noreturn] = ACTIONS(2651), + [anon_sym_noreturn] = ACTIONS(2651), + [anon_sym__Nonnull] = ACTIONS(2651), + [anon_sym_mutable] = ACTIONS(2651), + [anon_sym_constinit] = ACTIONS(2651), + [anon_sym_consteval] = ACTIONS(2651), + [anon_sym_alignas] = ACTIONS(2651), + [anon_sym__Alignas] = ACTIONS(2651), + [sym_primitive_type] = ACTIONS(2651), + [anon_sym_enum] = ACTIONS(2651), + [anon_sym_class] = ACTIONS(2651), + [anon_sym_struct] = ACTIONS(2651), + [anon_sym_union] = ACTIONS(2651), + [anon_sym_if] = ACTIONS(2651), + [anon_sym_else] = ACTIONS(2651), + [anon_sym_switch] = ACTIONS(2651), + [anon_sym_while] = ACTIONS(2651), + [anon_sym_do] = ACTIONS(2651), + [anon_sym_for] = ACTIONS(2651), + [anon_sym_return] = ACTIONS(2651), + [anon_sym_break] = ACTIONS(2651), + [anon_sym_continue] = ACTIONS(2651), + [anon_sym_goto] = ACTIONS(2651), + [anon_sym___try] = ACTIONS(2651), + [anon_sym___leave] = ACTIONS(2651), + [anon_sym_not] = ACTIONS(2651), + [anon_sym_compl] = ACTIONS(2651), + [anon_sym_DASH_DASH] = ACTIONS(2653), + [anon_sym_PLUS_PLUS] = ACTIONS(2653), + [anon_sym_sizeof] = ACTIONS(2651), + [anon_sym___alignof__] = ACTIONS(2651), + [anon_sym___alignof] = ACTIONS(2651), + [anon_sym__alignof] = ACTIONS(2651), + [anon_sym_alignof] = ACTIONS(2651), + [anon_sym__Alignof] = ACTIONS(2651), + [anon_sym_offsetof] = ACTIONS(2651), + [anon_sym__Generic] = ACTIONS(2651), + [anon_sym_asm] = ACTIONS(2651), + [anon_sym___asm__] = ACTIONS(2651), + [anon_sym___asm] = ACTIONS(2651), + [sym_number_literal] = ACTIONS(2653), + [anon_sym_L_SQUOTE] = ACTIONS(2653), + [anon_sym_u_SQUOTE] = ACTIONS(2653), + [anon_sym_U_SQUOTE] = ACTIONS(2653), + [anon_sym_u8_SQUOTE] = ACTIONS(2653), + [anon_sym_SQUOTE] = ACTIONS(2653), + [anon_sym_L_DQUOTE] = ACTIONS(2653), + [anon_sym_u_DQUOTE] = ACTIONS(2653), + [anon_sym_U_DQUOTE] = ACTIONS(2653), + [anon_sym_u8_DQUOTE] = ACTIONS(2653), + [anon_sym_DQUOTE] = ACTIONS(2653), + [sym_true] = ACTIONS(2651), + [sym_false] = ACTIONS(2651), + [anon_sym_NULL] = ACTIONS(2651), + [anon_sym_nullptr] = ACTIONS(2651), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2651), + [anon_sym_decltype] = ACTIONS(2651), + [anon_sym_typename] = ACTIONS(2651), + [anon_sym_template] = ACTIONS(2651), + [anon_sym_try] = ACTIONS(2651), + [anon_sym_delete] = ACTIONS(2651), + [anon_sym_throw] = ACTIONS(2651), + [anon_sym_co_return] = ACTIONS(2651), + [anon_sym_co_yield] = ACTIONS(2651), + [anon_sym_R_DQUOTE] = ACTIONS(2653), + [anon_sym_LR_DQUOTE] = ACTIONS(2653), + [anon_sym_uR_DQUOTE] = ACTIONS(2653), + [anon_sym_UR_DQUOTE] = ACTIONS(2653), + [anon_sym_u8R_DQUOTE] = ACTIONS(2653), + [anon_sym_co_await] = ACTIONS(2651), + [anon_sym_new] = ACTIONS(2651), + [anon_sym_requires] = ACTIONS(2651), + [sym_this] = ACTIONS(2651), }, - [856] = { - [sym_type_qualifier] = STATE(861), - [sym_alignas_qualifier] = STATE(1868), - [sym_expression] = STATE(4769), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3678), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3678), - [sym_call_expression] = STATE(3678), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3678), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3678), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3678), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3678), - [aux_sym_array_declarator_repeat1] = STATE(861), - [sym_identifier] = ACTIONS(3849), - [anon_sym_LPAREN2] = ACTIONS(3893), - [anon_sym_BANG] = ACTIONS(3853), - [anon_sym_TILDE] = ACTIONS(3853), - [anon_sym_DASH] = ACTIONS(3851), - [anon_sym_PLUS] = ACTIONS(3851), - [anon_sym_STAR] = ACTIONS(4083), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(4019), - [anon_sym_COLON_COLON] = ACTIONS(3857), - [anon_sym_LBRACK] = ACTIONS(2020), - [anon_sym_static] = ACTIONS(4085), - [anon_sym_RBRACK] = ACTIONS(4087), - [anon_sym_const] = ACTIONS(4025), - [anon_sym_constexpr] = ACTIONS(4025), - [anon_sym_volatile] = ACTIONS(4025), - [anon_sym_restrict] = ACTIONS(4025), - [anon_sym___restrict__] = ACTIONS(4025), - [anon_sym__Atomic] = ACTIONS(4025), - [anon_sym__Noreturn] = ACTIONS(4025), - [anon_sym_noreturn] = ACTIONS(4025), - [anon_sym__Nonnull] = ACTIONS(4025), - [anon_sym_mutable] = ACTIONS(4025), - [anon_sym_constinit] = ACTIONS(4025), - [anon_sym_consteval] = ACTIONS(4025), - [anon_sym_alignas] = ACTIONS(4027), - [anon_sym__Alignas] = ACTIONS(4027), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3851), - [anon_sym_compl] = ACTIONS(3851), - [anon_sym_DASH_DASH] = ACTIONS(3897), - [anon_sym_PLUS_PLUS] = ACTIONS(3897), - [anon_sym_sizeof] = ACTIONS(3859), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), + [912] = { + [sym_identifier] = ACTIONS(2707), + [anon_sym_LPAREN2] = ACTIONS(2709), + [anon_sym_BANG] = ACTIONS(2709), + [anon_sym_TILDE] = ACTIONS(2709), + [anon_sym_DASH] = ACTIONS(2707), + [anon_sym_PLUS] = ACTIONS(2707), + [anon_sym_STAR] = ACTIONS(2709), + [anon_sym_AMP] = ACTIONS(2709), + [anon_sym_SEMI] = ACTIONS(2709), + [anon_sym___extension__] = ACTIONS(2707), + [anon_sym_typedef] = ACTIONS(2707), + [anon_sym_virtual] = ACTIONS(2707), + [anon_sym_extern] = ACTIONS(2707), + [anon_sym___attribute__] = ACTIONS(2707), + [anon_sym___attribute] = ACTIONS(2707), + [anon_sym_COLON_COLON] = ACTIONS(2709), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2709), + [anon_sym___declspec] = ACTIONS(2707), + [anon_sym_LBRACE] = ACTIONS(2709), + [anon_sym_signed] = ACTIONS(2707), + [anon_sym_unsigned] = ACTIONS(2707), + [anon_sym_long] = ACTIONS(2707), + [anon_sym_short] = ACTIONS(2707), + [anon_sym_LBRACK] = ACTIONS(2707), + [anon_sym_static] = ACTIONS(2707), + [anon_sym_register] = ACTIONS(2707), + [anon_sym_inline] = ACTIONS(2707), + [anon_sym___inline] = ACTIONS(2707), + [anon_sym___inline__] = ACTIONS(2707), + [anon_sym___forceinline] = ACTIONS(2707), + [anon_sym_thread_local] = ACTIONS(2707), + [anon_sym___thread] = ACTIONS(2707), + [anon_sym_const] = ACTIONS(2707), + [anon_sym_constexpr] = ACTIONS(2707), + [anon_sym_volatile] = ACTIONS(2707), + [anon_sym_restrict] = ACTIONS(2707), + [anon_sym___restrict__] = ACTIONS(2707), + [anon_sym__Atomic] = ACTIONS(2707), + [anon_sym__Noreturn] = ACTIONS(2707), + [anon_sym_noreturn] = ACTIONS(2707), + [anon_sym__Nonnull] = ACTIONS(2707), + [anon_sym_mutable] = ACTIONS(2707), + [anon_sym_constinit] = ACTIONS(2707), + [anon_sym_consteval] = ACTIONS(2707), + [anon_sym_alignas] = ACTIONS(2707), + [anon_sym__Alignas] = ACTIONS(2707), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(2707), + [anon_sym_class] = ACTIONS(2707), + [anon_sym_struct] = ACTIONS(2707), + [anon_sym_union] = ACTIONS(2707), + [anon_sym_if] = ACTIONS(2707), + [anon_sym_else] = ACTIONS(2707), + [anon_sym_switch] = ACTIONS(2707), + [anon_sym_while] = ACTIONS(2707), + [anon_sym_do] = ACTIONS(2707), + [anon_sym_for] = ACTIONS(2707), + [anon_sym_return] = ACTIONS(2707), + [anon_sym_break] = ACTIONS(2707), + [anon_sym_continue] = ACTIONS(2707), + [anon_sym_goto] = ACTIONS(2707), + [anon_sym___try] = ACTIONS(2707), + [anon_sym___leave] = ACTIONS(2707), + [anon_sym_not] = ACTIONS(2707), + [anon_sym_compl] = ACTIONS(2707), + [anon_sym_DASH_DASH] = ACTIONS(2709), + [anon_sym_PLUS_PLUS] = ACTIONS(2709), + [anon_sym_sizeof] = ACTIONS(2707), + [anon_sym___alignof__] = ACTIONS(2707), + [anon_sym___alignof] = ACTIONS(2707), + [anon_sym__alignof] = ACTIONS(2707), + [anon_sym_alignof] = ACTIONS(2707), + [anon_sym__Alignof] = ACTIONS(2707), + [anon_sym_offsetof] = ACTIONS(2707), + [anon_sym__Generic] = ACTIONS(2707), + [anon_sym_asm] = ACTIONS(2707), + [anon_sym___asm__] = ACTIONS(2707), + [anon_sym___asm] = ACTIONS(2707), + [sym_number_literal] = ACTIONS(2709), + [anon_sym_L_SQUOTE] = ACTIONS(2709), + [anon_sym_u_SQUOTE] = ACTIONS(2709), + [anon_sym_U_SQUOTE] = ACTIONS(2709), + [anon_sym_u8_SQUOTE] = ACTIONS(2709), + [anon_sym_SQUOTE] = ACTIONS(2709), + [anon_sym_L_DQUOTE] = ACTIONS(2709), + [anon_sym_u_DQUOTE] = ACTIONS(2709), + [anon_sym_U_DQUOTE] = ACTIONS(2709), + [anon_sym_u8_DQUOTE] = ACTIONS(2709), + [anon_sym_DQUOTE] = ACTIONS(2709), + [sym_true] = ACTIONS(2707), + [sym_false] = ACTIONS(2707), + [anon_sym_NULL] = ACTIONS(2707), + [anon_sym_nullptr] = ACTIONS(2707), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3861), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3863), - [anon_sym_new] = ACTIONS(3865), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [sym_auto] = ACTIONS(2707), + [anon_sym_decltype] = ACTIONS(2707), + [anon_sym_typename] = ACTIONS(2707), + [anon_sym_template] = ACTIONS(2707), + [anon_sym_try] = ACTIONS(2707), + [anon_sym_delete] = ACTIONS(2707), + [anon_sym_throw] = ACTIONS(2707), + [anon_sym_co_return] = ACTIONS(2707), + [anon_sym_co_yield] = ACTIONS(2707), + [anon_sym_R_DQUOTE] = ACTIONS(2709), + [anon_sym_LR_DQUOTE] = ACTIONS(2709), + [anon_sym_uR_DQUOTE] = ACTIONS(2709), + [anon_sym_UR_DQUOTE] = ACTIONS(2709), + [anon_sym_u8R_DQUOTE] = ACTIONS(2709), + [anon_sym_co_await] = ACTIONS(2707), + [anon_sym_new] = ACTIONS(2707), + [anon_sym_requires] = ACTIONS(2707), + [sym_this] = ACTIONS(2707), }, - [857] = { - [sym_type_qualifier] = STATE(864), - [sym_alignas_qualifier] = STATE(1868), - [sym_expression] = STATE(4615), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3678), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3678), - [sym_call_expression] = STATE(3678), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3678), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3678), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3678), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3678), - [aux_sym_array_declarator_repeat1] = STATE(864), - [sym_identifier] = ACTIONS(3849), - [anon_sym_LPAREN2] = ACTIONS(3893), - [anon_sym_BANG] = ACTIONS(3853), - [anon_sym_TILDE] = ACTIONS(3853), - [anon_sym_DASH] = ACTIONS(3851), - [anon_sym_PLUS] = ACTIONS(3851), - [anon_sym_STAR] = ACTIONS(4089), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(4019), - [anon_sym_COLON_COLON] = ACTIONS(3857), - [anon_sym_LBRACK] = ACTIONS(2020), - [anon_sym_static] = ACTIONS(4091), - [anon_sym_RBRACK] = ACTIONS(4093), - [anon_sym_const] = ACTIONS(4025), - [anon_sym_constexpr] = ACTIONS(4025), - [anon_sym_volatile] = ACTIONS(4025), - [anon_sym_restrict] = ACTIONS(4025), - [anon_sym___restrict__] = ACTIONS(4025), - [anon_sym__Atomic] = ACTIONS(4025), - [anon_sym__Noreturn] = ACTIONS(4025), - [anon_sym_noreturn] = ACTIONS(4025), - [anon_sym__Nonnull] = ACTIONS(4025), - [anon_sym_mutable] = ACTIONS(4025), - [anon_sym_constinit] = ACTIONS(4025), - [anon_sym_consteval] = ACTIONS(4025), - [anon_sym_alignas] = ACTIONS(4027), - [anon_sym__Alignas] = ACTIONS(4027), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3851), - [anon_sym_compl] = ACTIONS(3851), - [anon_sym_DASH_DASH] = ACTIONS(3897), - [anon_sym_PLUS_PLUS] = ACTIONS(3897), - [anon_sym_sizeof] = ACTIONS(3859), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), + [913] = { + [sym_identifier] = ACTIONS(2655), + [anon_sym_LPAREN2] = ACTIONS(2657), + [anon_sym_BANG] = ACTIONS(2657), + [anon_sym_TILDE] = ACTIONS(2657), + [anon_sym_DASH] = ACTIONS(2655), + [anon_sym_PLUS] = ACTIONS(2655), + [anon_sym_STAR] = ACTIONS(2657), + [anon_sym_AMP] = ACTIONS(2657), + [anon_sym_SEMI] = ACTIONS(2657), + [anon_sym___extension__] = ACTIONS(2655), + [anon_sym_typedef] = ACTIONS(2655), + [anon_sym_virtual] = ACTIONS(2655), + [anon_sym_extern] = ACTIONS(2655), + [anon_sym___attribute__] = ACTIONS(2655), + [anon_sym___attribute] = ACTIONS(2655), + [anon_sym_COLON_COLON] = ACTIONS(2657), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2657), + [anon_sym___declspec] = ACTIONS(2655), + [anon_sym_LBRACE] = ACTIONS(2657), + [anon_sym_signed] = ACTIONS(2655), + [anon_sym_unsigned] = ACTIONS(2655), + [anon_sym_long] = ACTIONS(2655), + [anon_sym_short] = ACTIONS(2655), + [anon_sym_LBRACK] = ACTIONS(2655), + [anon_sym_static] = ACTIONS(2655), + [anon_sym_register] = ACTIONS(2655), + [anon_sym_inline] = ACTIONS(2655), + [anon_sym___inline] = ACTIONS(2655), + [anon_sym___inline__] = ACTIONS(2655), + [anon_sym___forceinline] = ACTIONS(2655), + [anon_sym_thread_local] = ACTIONS(2655), + [anon_sym___thread] = ACTIONS(2655), + [anon_sym_const] = ACTIONS(2655), + [anon_sym_constexpr] = ACTIONS(2655), + [anon_sym_volatile] = ACTIONS(2655), + [anon_sym_restrict] = ACTIONS(2655), + [anon_sym___restrict__] = ACTIONS(2655), + [anon_sym__Atomic] = ACTIONS(2655), + [anon_sym__Noreturn] = ACTIONS(2655), + [anon_sym_noreturn] = ACTIONS(2655), + [anon_sym__Nonnull] = ACTIONS(2655), + [anon_sym_mutable] = ACTIONS(2655), + [anon_sym_constinit] = ACTIONS(2655), + [anon_sym_consteval] = ACTIONS(2655), + [anon_sym_alignas] = ACTIONS(2655), + [anon_sym__Alignas] = ACTIONS(2655), + [sym_primitive_type] = ACTIONS(2655), + [anon_sym_enum] = ACTIONS(2655), + [anon_sym_class] = ACTIONS(2655), + [anon_sym_struct] = ACTIONS(2655), + [anon_sym_union] = ACTIONS(2655), + [anon_sym_if] = ACTIONS(2655), + [anon_sym_else] = ACTIONS(2655), + [anon_sym_switch] = ACTIONS(2655), + [anon_sym_while] = ACTIONS(2655), + [anon_sym_do] = ACTIONS(2655), + [anon_sym_for] = ACTIONS(2655), + [anon_sym_return] = ACTIONS(2655), + [anon_sym_break] = ACTIONS(2655), + [anon_sym_continue] = ACTIONS(2655), + [anon_sym_goto] = ACTIONS(2655), + [anon_sym___try] = ACTIONS(2655), + [anon_sym___leave] = ACTIONS(2655), + [anon_sym_not] = ACTIONS(2655), + [anon_sym_compl] = ACTIONS(2655), + [anon_sym_DASH_DASH] = ACTIONS(2657), + [anon_sym_PLUS_PLUS] = ACTIONS(2657), + [anon_sym_sizeof] = ACTIONS(2655), + [anon_sym___alignof__] = ACTIONS(2655), + [anon_sym___alignof] = ACTIONS(2655), + [anon_sym__alignof] = ACTIONS(2655), + [anon_sym_alignof] = ACTIONS(2655), + [anon_sym__Alignof] = ACTIONS(2655), + [anon_sym_offsetof] = ACTIONS(2655), + [anon_sym__Generic] = ACTIONS(2655), + [anon_sym_asm] = ACTIONS(2655), + [anon_sym___asm__] = ACTIONS(2655), + [anon_sym___asm] = ACTIONS(2655), + [sym_number_literal] = ACTIONS(2657), + [anon_sym_L_SQUOTE] = ACTIONS(2657), + [anon_sym_u_SQUOTE] = ACTIONS(2657), + [anon_sym_U_SQUOTE] = ACTIONS(2657), + [anon_sym_u8_SQUOTE] = ACTIONS(2657), + [anon_sym_SQUOTE] = ACTIONS(2657), + [anon_sym_L_DQUOTE] = ACTIONS(2657), + [anon_sym_u_DQUOTE] = ACTIONS(2657), + [anon_sym_U_DQUOTE] = ACTIONS(2657), + [anon_sym_u8_DQUOTE] = ACTIONS(2657), + [anon_sym_DQUOTE] = ACTIONS(2657), + [sym_true] = ACTIONS(2655), + [sym_false] = ACTIONS(2655), + [anon_sym_NULL] = ACTIONS(2655), + [anon_sym_nullptr] = ACTIONS(2655), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3861), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3863), - [anon_sym_new] = ACTIONS(3865), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [sym_auto] = ACTIONS(2655), + [anon_sym_decltype] = ACTIONS(2655), + [anon_sym_typename] = ACTIONS(2655), + [anon_sym_template] = ACTIONS(2655), + [anon_sym_try] = ACTIONS(2655), + [anon_sym_delete] = ACTIONS(2655), + [anon_sym_throw] = ACTIONS(2655), + [anon_sym_co_return] = ACTIONS(2655), + [anon_sym_co_yield] = ACTIONS(2655), + [anon_sym_R_DQUOTE] = ACTIONS(2657), + [anon_sym_LR_DQUOTE] = ACTIONS(2657), + [anon_sym_uR_DQUOTE] = ACTIONS(2657), + [anon_sym_UR_DQUOTE] = ACTIONS(2657), + [anon_sym_u8R_DQUOTE] = ACTIONS(2657), + [anon_sym_co_await] = ACTIONS(2655), + [anon_sym_new] = ACTIONS(2655), + [anon_sym_requires] = ACTIONS(2655), + [sym_this] = ACTIONS(2655), }, - [858] = { - [sym_type_qualifier] = STATE(1698), - [sym_alignas_qualifier] = STATE(1868), - [sym_expression] = STATE(4677), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3678), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3678), - [sym_call_expression] = STATE(3678), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3678), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3678), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3678), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3678), - [aux_sym_array_declarator_repeat1] = STATE(1698), - [sym_identifier] = ACTIONS(3849), - [anon_sym_LPAREN2] = ACTIONS(3893), - [anon_sym_BANG] = ACTIONS(3853), - [anon_sym_TILDE] = ACTIONS(3853), - [anon_sym_DASH] = ACTIONS(3851), - [anon_sym_PLUS] = ACTIONS(3851), - [anon_sym_STAR] = ACTIONS(4095), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(4019), - [anon_sym_COLON_COLON] = ACTIONS(3857), - [anon_sym_LBRACK] = ACTIONS(2020), - [anon_sym_static] = ACTIONS(4037), - [anon_sym_RBRACK] = ACTIONS(4097), - [anon_sym_const] = ACTIONS(4025), - [anon_sym_constexpr] = ACTIONS(4025), - [anon_sym_volatile] = ACTIONS(4025), - [anon_sym_restrict] = ACTIONS(4025), - [anon_sym___restrict__] = ACTIONS(4025), - [anon_sym__Atomic] = ACTIONS(4025), - [anon_sym__Noreturn] = ACTIONS(4025), - [anon_sym_noreturn] = ACTIONS(4025), - [anon_sym__Nonnull] = ACTIONS(4025), - [anon_sym_mutable] = ACTIONS(4025), - [anon_sym_constinit] = ACTIONS(4025), - [anon_sym_consteval] = ACTIONS(4025), - [anon_sym_alignas] = ACTIONS(4027), - [anon_sym__Alignas] = ACTIONS(4027), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3851), - [anon_sym_compl] = ACTIONS(3851), - [anon_sym_DASH_DASH] = ACTIONS(3897), - [anon_sym_PLUS_PLUS] = ACTIONS(3897), - [anon_sym_sizeof] = ACTIONS(3859), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), + [914] = { + [sym_identifier] = ACTIONS(2627), + [anon_sym_LPAREN2] = ACTIONS(2629), + [anon_sym_BANG] = ACTIONS(2629), + [anon_sym_TILDE] = ACTIONS(2629), + [anon_sym_DASH] = ACTIONS(2627), + [anon_sym_PLUS] = ACTIONS(2627), + [anon_sym_STAR] = ACTIONS(2629), + [anon_sym_AMP] = ACTIONS(2629), + [anon_sym_SEMI] = ACTIONS(2629), + [anon_sym___extension__] = ACTIONS(2627), + [anon_sym_typedef] = ACTIONS(2627), + [anon_sym_virtual] = ACTIONS(2627), + [anon_sym_extern] = ACTIONS(2627), + [anon_sym___attribute__] = ACTIONS(2627), + [anon_sym___attribute] = ACTIONS(2627), + [anon_sym_COLON_COLON] = ACTIONS(2629), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2629), + [anon_sym___declspec] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(2629), + [anon_sym_signed] = ACTIONS(2627), + [anon_sym_unsigned] = ACTIONS(2627), + [anon_sym_long] = ACTIONS(2627), + [anon_sym_short] = ACTIONS(2627), + [anon_sym_LBRACK] = ACTIONS(2627), + [anon_sym_static] = ACTIONS(2627), + [anon_sym_register] = ACTIONS(2627), + [anon_sym_inline] = ACTIONS(2627), + [anon_sym___inline] = ACTIONS(2627), + [anon_sym___inline__] = ACTIONS(2627), + [anon_sym___forceinline] = ACTIONS(2627), + [anon_sym_thread_local] = ACTIONS(2627), + [anon_sym___thread] = ACTIONS(2627), + [anon_sym_const] = ACTIONS(2627), + [anon_sym_constexpr] = ACTIONS(2627), + [anon_sym_volatile] = ACTIONS(2627), + [anon_sym_restrict] = ACTIONS(2627), + [anon_sym___restrict__] = ACTIONS(2627), + [anon_sym__Atomic] = ACTIONS(2627), + [anon_sym__Noreturn] = ACTIONS(2627), + [anon_sym_noreturn] = ACTIONS(2627), + [anon_sym__Nonnull] = ACTIONS(2627), + [anon_sym_mutable] = ACTIONS(2627), + [anon_sym_constinit] = ACTIONS(2627), + [anon_sym_consteval] = ACTIONS(2627), + [anon_sym_alignas] = ACTIONS(2627), + [anon_sym__Alignas] = ACTIONS(2627), + [sym_primitive_type] = ACTIONS(2627), + [anon_sym_enum] = ACTIONS(2627), + [anon_sym_class] = ACTIONS(2627), + [anon_sym_struct] = ACTIONS(2627), + [anon_sym_union] = ACTIONS(2627), + [anon_sym_if] = ACTIONS(2627), + [anon_sym_else] = ACTIONS(2627), + [anon_sym_switch] = ACTIONS(2627), + [anon_sym_while] = ACTIONS(2627), + [anon_sym_do] = ACTIONS(2627), + [anon_sym_for] = ACTIONS(2627), + [anon_sym_return] = ACTIONS(2627), + [anon_sym_break] = ACTIONS(2627), + [anon_sym_continue] = ACTIONS(2627), + [anon_sym_goto] = ACTIONS(2627), + [anon_sym___try] = ACTIONS(2627), + [anon_sym___leave] = ACTIONS(2627), + [anon_sym_not] = ACTIONS(2627), + [anon_sym_compl] = ACTIONS(2627), + [anon_sym_DASH_DASH] = ACTIONS(2629), + [anon_sym_PLUS_PLUS] = ACTIONS(2629), + [anon_sym_sizeof] = ACTIONS(2627), + [anon_sym___alignof__] = ACTIONS(2627), + [anon_sym___alignof] = ACTIONS(2627), + [anon_sym__alignof] = ACTIONS(2627), + [anon_sym_alignof] = ACTIONS(2627), + [anon_sym__Alignof] = ACTIONS(2627), + [anon_sym_offsetof] = ACTIONS(2627), + [anon_sym__Generic] = ACTIONS(2627), + [anon_sym_asm] = ACTIONS(2627), + [anon_sym___asm__] = ACTIONS(2627), + [anon_sym___asm] = ACTIONS(2627), + [sym_number_literal] = ACTIONS(2629), + [anon_sym_L_SQUOTE] = ACTIONS(2629), + [anon_sym_u_SQUOTE] = ACTIONS(2629), + [anon_sym_U_SQUOTE] = ACTIONS(2629), + [anon_sym_u8_SQUOTE] = ACTIONS(2629), + [anon_sym_SQUOTE] = ACTIONS(2629), + [anon_sym_L_DQUOTE] = ACTIONS(2629), + [anon_sym_u_DQUOTE] = ACTIONS(2629), + [anon_sym_U_DQUOTE] = ACTIONS(2629), + [anon_sym_u8_DQUOTE] = ACTIONS(2629), + [anon_sym_DQUOTE] = ACTIONS(2629), + [sym_true] = ACTIONS(2627), + [sym_false] = ACTIONS(2627), + [anon_sym_NULL] = ACTIONS(2627), + [anon_sym_nullptr] = ACTIONS(2627), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3861), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3863), - [anon_sym_new] = ACTIONS(3865), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [sym_auto] = ACTIONS(2627), + [anon_sym_decltype] = ACTIONS(2627), + [anon_sym_typename] = ACTIONS(2627), + [anon_sym_template] = ACTIONS(2627), + [anon_sym_try] = ACTIONS(2627), + [anon_sym_delete] = ACTIONS(2627), + [anon_sym_throw] = ACTIONS(2627), + [anon_sym_co_return] = ACTIONS(2627), + [anon_sym_co_yield] = ACTIONS(2627), + [anon_sym_R_DQUOTE] = ACTIONS(2629), + [anon_sym_LR_DQUOTE] = ACTIONS(2629), + [anon_sym_uR_DQUOTE] = ACTIONS(2629), + [anon_sym_UR_DQUOTE] = ACTIONS(2629), + [anon_sym_u8R_DQUOTE] = ACTIONS(2629), + [anon_sym_co_await] = ACTIONS(2627), + [anon_sym_new] = ACTIONS(2627), + [anon_sym_requires] = ACTIONS(2627), + [sym_this] = ACTIONS(2627), }, - [859] = { - [sym_type_qualifier] = STATE(1698), - [sym_alignas_qualifier] = STATE(1868), - [sym_expression] = STATE(4689), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3678), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3678), - [sym_call_expression] = STATE(3678), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3678), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3678), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3678), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3678), - [aux_sym_array_declarator_repeat1] = STATE(1698), - [sym_identifier] = ACTIONS(3849), - [anon_sym_LPAREN2] = ACTIONS(3893), - [anon_sym_BANG] = ACTIONS(3853), - [anon_sym_TILDE] = ACTIONS(3853), - [anon_sym_DASH] = ACTIONS(3851), - [anon_sym_PLUS] = ACTIONS(3851), - [anon_sym_STAR] = ACTIONS(4099), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(4019), - [anon_sym_COLON_COLON] = ACTIONS(3857), - [anon_sym_LBRACK] = ACTIONS(2020), - [anon_sym_static] = ACTIONS(4037), - [anon_sym_RBRACK] = ACTIONS(4101), - [anon_sym_const] = ACTIONS(4025), - [anon_sym_constexpr] = ACTIONS(4025), - [anon_sym_volatile] = ACTIONS(4025), - [anon_sym_restrict] = ACTIONS(4025), - [anon_sym___restrict__] = ACTIONS(4025), - [anon_sym__Atomic] = ACTIONS(4025), - [anon_sym__Noreturn] = ACTIONS(4025), - [anon_sym_noreturn] = ACTIONS(4025), - [anon_sym__Nonnull] = ACTIONS(4025), - [anon_sym_mutable] = ACTIONS(4025), - [anon_sym_constinit] = ACTIONS(4025), - [anon_sym_consteval] = ACTIONS(4025), - [anon_sym_alignas] = ACTIONS(4027), - [anon_sym__Alignas] = ACTIONS(4027), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3851), - [anon_sym_compl] = ACTIONS(3851), - [anon_sym_DASH_DASH] = ACTIONS(3897), - [anon_sym_PLUS_PLUS] = ACTIONS(3897), - [anon_sym_sizeof] = ACTIONS(3859), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), + [915] = { + [sym_identifier] = ACTIONS(2775), + [anon_sym_LPAREN2] = ACTIONS(2777), + [anon_sym_BANG] = ACTIONS(2777), + [anon_sym_TILDE] = ACTIONS(2777), + [anon_sym_DASH] = ACTIONS(2775), + [anon_sym_PLUS] = ACTIONS(2775), + [anon_sym_STAR] = ACTIONS(2777), + [anon_sym_AMP] = ACTIONS(2777), + [anon_sym_SEMI] = ACTIONS(2777), + [anon_sym___extension__] = ACTIONS(2775), + [anon_sym_typedef] = ACTIONS(2775), + [anon_sym_virtual] = ACTIONS(2775), + [anon_sym_extern] = ACTIONS(2775), + [anon_sym___attribute__] = ACTIONS(2775), + [anon_sym___attribute] = ACTIONS(2775), + [anon_sym_COLON_COLON] = ACTIONS(2777), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2777), + [anon_sym___declspec] = ACTIONS(2775), + [anon_sym_LBRACE] = ACTIONS(2777), + [anon_sym_signed] = ACTIONS(2775), + [anon_sym_unsigned] = ACTIONS(2775), + [anon_sym_long] = ACTIONS(2775), + [anon_sym_short] = ACTIONS(2775), + [anon_sym_LBRACK] = ACTIONS(2775), + [anon_sym_static] = ACTIONS(2775), + [anon_sym_register] = ACTIONS(2775), + [anon_sym_inline] = ACTIONS(2775), + [anon_sym___inline] = ACTIONS(2775), + [anon_sym___inline__] = ACTIONS(2775), + [anon_sym___forceinline] = ACTIONS(2775), + [anon_sym_thread_local] = ACTIONS(2775), + [anon_sym___thread] = ACTIONS(2775), + [anon_sym_const] = ACTIONS(2775), + [anon_sym_constexpr] = ACTIONS(2775), + [anon_sym_volatile] = ACTIONS(2775), + [anon_sym_restrict] = ACTIONS(2775), + [anon_sym___restrict__] = ACTIONS(2775), + [anon_sym__Atomic] = ACTIONS(2775), + [anon_sym__Noreturn] = ACTIONS(2775), + [anon_sym_noreturn] = ACTIONS(2775), + [anon_sym__Nonnull] = ACTIONS(2775), + [anon_sym_mutable] = ACTIONS(2775), + [anon_sym_constinit] = ACTIONS(2775), + [anon_sym_consteval] = ACTIONS(2775), + [anon_sym_alignas] = ACTIONS(2775), + [anon_sym__Alignas] = ACTIONS(2775), + [sym_primitive_type] = ACTIONS(2775), + [anon_sym_enum] = ACTIONS(2775), + [anon_sym_class] = ACTIONS(2775), + [anon_sym_struct] = ACTIONS(2775), + [anon_sym_union] = ACTIONS(2775), + [anon_sym_if] = ACTIONS(2775), + [anon_sym_else] = ACTIONS(2775), + [anon_sym_switch] = ACTIONS(2775), + [anon_sym_while] = ACTIONS(2775), + [anon_sym_do] = ACTIONS(2775), + [anon_sym_for] = ACTIONS(2775), + [anon_sym_return] = ACTIONS(2775), + [anon_sym_break] = ACTIONS(2775), + [anon_sym_continue] = ACTIONS(2775), + [anon_sym_goto] = ACTIONS(2775), + [anon_sym___try] = ACTIONS(2775), + [anon_sym___leave] = ACTIONS(2775), + [anon_sym_not] = ACTIONS(2775), + [anon_sym_compl] = ACTIONS(2775), + [anon_sym_DASH_DASH] = ACTIONS(2777), + [anon_sym_PLUS_PLUS] = ACTIONS(2777), + [anon_sym_sizeof] = ACTIONS(2775), + [anon_sym___alignof__] = ACTIONS(2775), + [anon_sym___alignof] = ACTIONS(2775), + [anon_sym__alignof] = ACTIONS(2775), + [anon_sym_alignof] = ACTIONS(2775), + [anon_sym__Alignof] = ACTIONS(2775), + [anon_sym_offsetof] = ACTIONS(2775), + [anon_sym__Generic] = ACTIONS(2775), + [anon_sym_asm] = ACTIONS(2775), + [anon_sym___asm__] = ACTIONS(2775), + [anon_sym___asm] = ACTIONS(2775), + [sym_number_literal] = ACTIONS(2777), + [anon_sym_L_SQUOTE] = ACTIONS(2777), + [anon_sym_u_SQUOTE] = ACTIONS(2777), + [anon_sym_U_SQUOTE] = ACTIONS(2777), + [anon_sym_u8_SQUOTE] = ACTIONS(2777), + [anon_sym_SQUOTE] = ACTIONS(2777), + [anon_sym_L_DQUOTE] = ACTIONS(2777), + [anon_sym_u_DQUOTE] = ACTIONS(2777), + [anon_sym_U_DQUOTE] = ACTIONS(2777), + [anon_sym_u8_DQUOTE] = ACTIONS(2777), + [anon_sym_DQUOTE] = ACTIONS(2777), + [sym_true] = ACTIONS(2775), + [sym_false] = ACTIONS(2775), + [anon_sym_NULL] = ACTIONS(2775), + [anon_sym_nullptr] = ACTIONS(2775), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3861), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3863), - [anon_sym_new] = ACTIONS(3865), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [sym_auto] = ACTIONS(2775), + [anon_sym_decltype] = ACTIONS(2775), + [anon_sym_typename] = ACTIONS(2775), + [anon_sym_template] = ACTIONS(2775), + [anon_sym_try] = ACTIONS(2775), + [anon_sym_delete] = ACTIONS(2775), + [anon_sym_throw] = ACTIONS(2775), + [anon_sym_co_return] = ACTIONS(2775), + [anon_sym_co_yield] = ACTIONS(2775), + [anon_sym_R_DQUOTE] = ACTIONS(2777), + [anon_sym_LR_DQUOTE] = ACTIONS(2777), + [anon_sym_uR_DQUOTE] = ACTIONS(2777), + [anon_sym_UR_DQUOTE] = ACTIONS(2777), + [anon_sym_u8R_DQUOTE] = ACTIONS(2777), + [anon_sym_co_await] = ACTIONS(2775), + [anon_sym_new] = ACTIONS(2775), + [anon_sym_requires] = ACTIONS(2775), + [sym_this] = ACTIONS(2775), }, - [860] = { - [sym_identifier] = ACTIONS(4103), - [anon_sym_LPAREN2] = ACTIONS(4106), - [anon_sym_BANG] = ACTIONS(4109), - [anon_sym_TILDE] = ACTIONS(4106), - [anon_sym_DASH] = ACTIONS(4111), - [anon_sym_PLUS] = ACTIONS(4111), - [anon_sym_STAR] = ACTIONS(4106), - [anon_sym_AMP_AMP] = ACTIONS(4113), - [anon_sym_AMP] = ACTIONS(4103), - [anon_sym_SEMI] = ACTIONS(4109), - [anon_sym___extension__] = ACTIONS(4103), - [anon_sym_virtual] = ACTIONS(4115), - [anon_sym_extern] = ACTIONS(4115), - [anon_sym___attribute__] = ACTIONS(4115), - [anon_sym___attribute] = ACTIONS(4115), - [anon_sym_using] = ACTIONS(4111), - [anon_sym_COLON_COLON] = ACTIONS(4106), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4106), - [anon_sym___declspec] = ACTIONS(4115), - [anon_sym___based] = ACTIONS(4115), - [anon_sym_LBRACE] = ACTIONS(4109), - [anon_sym_signed] = ACTIONS(4115), - [anon_sym_unsigned] = ACTIONS(4115), - [anon_sym_long] = ACTIONS(4115), - [anon_sym_short] = ACTIONS(4115), - [anon_sym_LBRACK] = ACTIONS(4103), - [anon_sym_static] = ACTIONS(4115), - [anon_sym_register] = ACTIONS(4115), - [anon_sym_inline] = ACTIONS(4115), - [anon_sym___inline] = ACTIONS(4115), - [anon_sym___inline__] = ACTIONS(4115), - [anon_sym___forceinline] = ACTIONS(4115), - [anon_sym_thread_local] = ACTIONS(4115), - [anon_sym___thread] = ACTIONS(4115), - [anon_sym_const] = ACTIONS(4115), - [anon_sym_constexpr] = ACTIONS(4115), - [anon_sym_volatile] = ACTIONS(4115), - [anon_sym_restrict] = ACTIONS(4115), - [anon_sym___restrict__] = ACTIONS(4115), - [anon_sym__Atomic] = ACTIONS(4115), - [anon_sym__Noreturn] = ACTIONS(4115), - [anon_sym_noreturn] = ACTIONS(4115), - [anon_sym__Nonnull] = ACTIONS(4115), - [anon_sym_mutable] = ACTIONS(4115), - [anon_sym_constinit] = ACTIONS(4115), - [anon_sym_consteval] = ACTIONS(4115), - [anon_sym_alignas] = ACTIONS(4115), - [anon_sym__Alignas] = ACTIONS(4115), - [sym_primitive_type] = ACTIONS(4103), - [anon_sym_enum] = ACTIONS(4115), - [anon_sym_class] = ACTIONS(4115), - [anon_sym_struct] = ACTIONS(4115), - [anon_sym_union] = ACTIONS(4115), - [anon_sym_if] = ACTIONS(4111), - [anon_sym_switch] = ACTIONS(4111), - [anon_sym_case] = ACTIONS(4111), - [anon_sym_default] = ACTIONS(4111), - [anon_sym_while] = ACTIONS(4111), - [anon_sym_do] = ACTIONS(4111), - [anon_sym_for] = ACTIONS(4111), - [anon_sym_return] = ACTIONS(4111), - [anon_sym_break] = ACTIONS(4111), - [anon_sym_continue] = ACTIONS(4111), - [anon_sym_goto] = ACTIONS(4111), - [anon_sym___try] = ACTIONS(4111), - [anon_sym___leave] = ACTIONS(4111), - [anon_sym_not] = ACTIONS(4111), - [anon_sym_compl] = ACTIONS(4111), - [anon_sym_DASH_DASH] = ACTIONS(4109), - [anon_sym_PLUS_PLUS] = ACTIONS(4109), - [anon_sym_sizeof] = ACTIONS(4111), - [anon_sym___alignof__] = ACTIONS(4111), - [anon_sym___alignof] = ACTIONS(4111), - [anon_sym__alignof] = ACTIONS(4111), - [anon_sym_alignof] = ACTIONS(4111), - [anon_sym__Alignof] = ACTIONS(4111), - [anon_sym_offsetof] = ACTIONS(4111), - [anon_sym__Generic] = ACTIONS(4111), - [anon_sym_asm] = ACTIONS(4111), - [anon_sym___asm__] = ACTIONS(4111), - [anon_sym___asm] = ACTIONS(4111), - [sym_number_literal] = ACTIONS(4109), - [anon_sym_L_SQUOTE] = ACTIONS(4109), - [anon_sym_u_SQUOTE] = ACTIONS(4109), - [anon_sym_U_SQUOTE] = ACTIONS(4109), - [anon_sym_u8_SQUOTE] = ACTIONS(4109), - [anon_sym_SQUOTE] = ACTIONS(4109), - [anon_sym_L_DQUOTE] = ACTIONS(4109), - [anon_sym_u_DQUOTE] = ACTIONS(4109), - [anon_sym_U_DQUOTE] = ACTIONS(4109), - [anon_sym_u8_DQUOTE] = ACTIONS(4109), - [anon_sym_DQUOTE] = ACTIONS(4109), - [sym_true] = ACTIONS(4111), - [sym_false] = ACTIONS(4111), - [anon_sym_NULL] = ACTIONS(4111), - [anon_sym_nullptr] = ACTIONS(4111), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4115), - [anon_sym_decltype] = ACTIONS(4103), - [anon_sym_explicit] = ACTIONS(4115), - [anon_sym_typename] = ACTIONS(4115), - [anon_sym_template] = ACTIONS(4103), - [anon_sym_operator] = ACTIONS(4115), - [anon_sym_try] = ACTIONS(4111), - [anon_sym_delete] = ACTIONS(4111), - [anon_sym_throw] = ACTIONS(4111), - [anon_sym_co_return] = ACTIONS(4111), - [anon_sym_co_yield] = ACTIONS(4111), - [anon_sym_R_DQUOTE] = ACTIONS(4109), - [anon_sym_LR_DQUOTE] = ACTIONS(4109), - [anon_sym_uR_DQUOTE] = ACTIONS(4109), - [anon_sym_UR_DQUOTE] = ACTIONS(4109), - [anon_sym_u8R_DQUOTE] = ACTIONS(4109), - [anon_sym_co_await] = ACTIONS(4111), - [anon_sym_new] = ACTIONS(4111), - [anon_sym_requires] = ACTIONS(4111), - [sym_this] = ACTIONS(4111), + [916] = { + [sym_identifier] = ACTIONS(2713), + [anon_sym_LPAREN2] = ACTIONS(2715), + [anon_sym_BANG] = ACTIONS(2715), + [anon_sym_TILDE] = ACTIONS(2715), + [anon_sym_DASH] = ACTIONS(2713), + [anon_sym_PLUS] = ACTIONS(2713), + [anon_sym_STAR] = ACTIONS(2715), + [anon_sym_AMP] = ACTIONS(2715), + [anon_sym_SEMI] = ACTIONS(2715), + [anon_sym___extension__] = ACTIONS(2713), + [anon_sym_typedef] = ACTIONS(2713), + [anon_sym_virtual] = ACTIONS(2713), + [anon_sym_extern] = ACTIONS(2713), + [anon_sym___attribute__] = ACTIONS(2713), + [anon_sym___attribute] = ACTIONS(2713), + [anon_sym_COLON_COLON] = ACTIONS(2715), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2715), + [anon_sym___declspec] = ACTIONS(2713), + [anon_sym_LBRACE] = ACTIONS(2715), + [anon_sym_signed] = ACTIONS(2713), + [anon_sym_unsigned] = ACTIONS(2713), + [anon_sym_long] = ACTIONS(2713), + [anon_sym_short] = ACTIONS(2713), + [anon_sym_LBRACK] = ACTIONS(2713), + [anon_sym_static] = ACTIONS(2713), + [anon_sym_register] = ACTIONS(2713), + [anon_sym_inline] = ACTIONS(2713), + [anon_sym___inline] = ACTIONS(2713), + [anon_sym___inline__] = ACTIONS(2713), + [anon_sym___forceinline] = ACTIONS(2713), + [anon_sym_thread_local] = ACTIONS(2713), + [anon_sym___thread] = ACTIONS(2713), + [anon_sym_const] = ACTIONS(2713), + [anon_sym_constexpr] = ACTIONS(2713), + [anon_sym_volatile] = ACTIONS(2713), + [anon_sym_restrict] = ACTIONS(2713), + [anon_sym___restrict__] = ACTIONS(2713), + [anon_sym__Atomic] = ACTIONS(2713), + [anon_sym__Noreturn] = ACTIONS(2713), + [anon_sym_noreturn] = ACTIONS(2713), + [anon_sym__Nonnull] = ACTIONS(2713), + [anon_sym_mutable] = ACTIONS(2713), + [anon_sym_constinit] = ACTIONS(2713), + [anon_sym_consteval] = ACTIONS(2713), + [anon_sym_alignas] = ACTIONS(2713), + [anon_sym__Alignas] = ACTIONS(2713), + [sym_primitive_type] = ACTIONS(2713), + [anon_sym_enum] = ACTIONS(2713), + [anon_sym_class] = ACTIONS(2713), + [anon_sym_struct] = ACTIONS(2713), + [anon_sym_union] = ACTIONS(2713), + [anon_sym_if] = ACTIONS(2713), + [anon_sym_else] = ACTIONS(2713), + [anon_sym_switch] = ACTIONS(2713), + [anon_sym_while] = ACTIONS(2713), + [anon_sym_do] = ACTIONS(2713), + [anon_sym_for] = ACTIONS(2713), + [anon_sym_return] = ACTIONS(2713), + [anon_sym_break] = ACTIONS(2713), + [anon_sym_continue] = ACTIONS(2713), + [anon_sym_goto] = ACTIONS(2713), + [anon_sym___try] = ACTIONS(2713), + [anon_sym___leave] = ACTIONS(2713), + [anon_sym_not] = ACTIONS(2713), + [anon_sym_compl] = ACTIONS(2713), + [anon_sym_DASH_DASH] = ACTIONS(2715), + [anon_sym_PLUS_PLUS] = ACTIONS(2715), + [anon_sym_sizeof] = ACTIONS(2713), + [anon_sym___alignof__] = ACTIONS(2713), + [anon_sym___alignof] = ACTIONS(2713), + [anon_sym__alignof] = ACTIONS(2713), + [anon_sym_alignof] = ACTIONS(2713), + [anon_sym__Alignof] = ACTIONS(2713), + [anon_sym_offsetof] = ACTIONS(2713), + [anon_sym__Generic] = ACTIONS(2713), + [anon_sym_asm] = ACTIONS(2713), + [anon_sym___asm__] = ACTIONS(2713), + [anon_sym___asm] = ACTIONS(2713), + [sym_number_literal] = ACTIONS(2715), + [anon_sym_L_SQUOTE] = ACTIONS(2715), + [anon_sym_u_SQUOTE] = ACTIONS(2715), + [anon_sym_U_SQUOTE] = ACTIONS(2715), + [anon_sym_u8_SQUOTE] = ACTIONS(2715), + [anon_sym_SQUOTE] = ACTIONS(2715), + [anon_sym_L_DQUOTE] = ACTIONS(2715), + [anon_sym_u_DQUOTE] = ACTIONS(2715), + [anon_sym_U_DQUOTE] = ACTIONS(2715), + [anon_sym_u8_DQUOTE] = ACTIONS(2715), + [anon_sym_DQUOTE] = ACTIONS(2715), + [sym_true] = ACTIONS(2713), + [sym_false] = ACTIONS(2713), + [anon_sym_NULL] = ACTIONS(2713), + [anon_sym_nullptr] = ACTIONS(2713), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2713), + [anon_sym_decltype] = ACTIONS(2713), + [anon_sym_typename] = ACTIONS(2713), + [anon_sym_template] = ACTIONS(2713), + [anon_sym_try] = ACTIONS(2713), + [anon_sym_delete] = ACTIONS(2713), + [anon_sym_throw] = ACTIONS(2713), + [anon_sym_co_return] = ACTIONS(2713), + [anon_sym_co_yield] = ACTIONS(2713), + [anon_sym_R_DQUOTE] = ACTIONS(2715), + [anon_sym_LR_DQUOTE] = ACTIONS(2715), + [anon_sym_uR_DQUOTE] = ACTIONS(2715), + [anon_sym_UR_DQUOTE] = ACTIONS(2715), + [anon_sym_u8R_DQUOTE] = ACTIONS(2715), + [anon_sym_co_await] = ACTIONS(2713), + [anon_sym_new] = ACTIONS(2713), + [anon_sym_requires] = ACTIONS(2713), + [sym_this] = ACTIONS(2713), }, - [861] = { - [sym_type_qualifier] = STATE(1698), - [sym_alignas_qualifier] = STATE(1868), - [sym_expression] = STATE(4674), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3678), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3678), - [sym_call_expression] = STATE(3678), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3678), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3678), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3678), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3678), - [aux_sym_array_declarator_repeat1] = STATE(1698), - [sym_identifier] = ACTIONS(3849), - [anon_sym_LPAREN2] = ACTIONS(3893), - [anon_sym_BANG] = ACTIONS(3853), - [anon_sym_TILDE] = ACTIONS(3853), - [anon_sym_DASH] = ACTIONS(3851), - [anon_sym_PLUS] = ACTIONS(3851), - [anon_sym_STAR] = ACTIONS(4117), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(4019), - [anon_sym_COLON_COLON] = ACTIONS(3857), - [anon_sym_LBRACK] = ACTIONS(2020), - [anon_sym_static] = ACTIONS(4037), - [anon_sym_RBRACK] = ACTIONS(4119), - [anon_sym_const] = ACTIONS(4025), - [anon_sym_constexpr] = ACTIONS(4025), - [anon_sym_volatile] = ACTIONS(4025), - [anon_sym_restrict] = ACTIONS(4025), - [anon_sym___restrict__] = ACTIONS(4025), - [anon_sym__Atomic] = ACTIONS(4025), - [anon_sym__Noreturn] = ACTIONS(4025), - [anon_sym_noreturn] = ACTIONS(4025), - [anon_sym__Nonnull] = ACTIONS(4025), - [anon_sym_mutable] = ACTIONS(4025), - [anon_sym_constinit] = ACTIONS(4025), - [anon_sym_consteval] = ACTIONS(4025), - [anon_sym_alignas] = ACTIONS(4027), - [anon_sym__Alignas] = ACTIONS(4027), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3851), - [anon_sym_compl] = ACTIONS(3851), - [anon_sym_DASH_DASH] = ACTIONS(3897), - [anon_sym_PLUS_PLUS] = ACTIONS(3897), - [anon_sym_sizeof] = ACTIONS(3859), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3861), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3863), - [anon_sym_new] = ACTIONS(3865), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [917] = { + [sym_identifier] = ACTIONS(2717), + [anon_sym_LPAREN2] = ACTIONS(2719), + [anon_sym_BANG] = ACTIONS(2719), + [anon_sym_TILDE] = ACTIONS(2719), + [anon_sym_DASH] = ACTIONS(2717), + [anon_sym_PLUS] = ACTIONS(2717), + [anon_sym_STAR] = ACTIONS(2719), + [anon_sym_AMP] = ACTIONS(2719), + [anon_sym_SEMI] = ACTIONS(2719), + [anon_sym___extension__] = ACTIONS(2717), + [anon_sym_typedef] = ACTIONS(2717), + [anon_sym_virtual] = ACTIONS(2717), + [anon_sym_extern] = ACTIONS(2717), + [anon_sym___attribute__] = ACTIONS(2717), + [anon_sym___attribute] = ACTIONS(2717), + [anon_sym_COLON_COLON] = ACTIONS(2719), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2719), + [anon_sym___declspec] = ACTIONS(2717), + [anon_sym_LBRACE] = ACTIONS(2719), + [anon_sym_signed] = ACTIONS(2717), + [anon_sym_unsigned] = ACTIONS(2717), + [anon_sym_long] = ACTIONS(2717), + [anon_sym_short] = ACTIONS(2717), + [anon_sym_LBRACK] = ACTIONS(2717), + [anon_sym_static] = ACTIONS(2717), + [anon_sym_register] = ACTIONS(2717), + [anon_sym_inline] = ACTIONS(2717), + [anon_sym___inline] = ACTIONS(2717), + [anon_sym___inline__] = ACTIONS(2717), + [anon_sym___forceinline] = ACTIONS(2717), + [anon_sym_thread_local] = ACTIONS(2717), + [anon_sym___thread] = ACTIONS(2717), + [anon_sym_const] = ACTIONS(2717), + [anon_sym_constexpr] = ACTIONS(2717), + [anon_sym_volatile] = ACTIONS(2717), + [anon_sym_restrict] = ACTIONS(2717), + [anon_sym___restrict__] = ACTIONS(2717), + [anon_sym__Atomic] = ACTIONS(2717), + [anon_sym__Noreturn] = ACTIONS(2717), + [anon_sym_noreturn] = ACTIONS(2717), + [anon_sym__Nonnull] = ACTIONS(2717), + [anon_sym_mutable] = ACTIONS(2717), + [anon_sym_constinit] = ACTIONS(2717), + [anon_sym_consteval] = ACTIONS(2717), + [anon_sym_alignas] = ACTIONS(2717), + [anon_sym__Alignas] = ACTIONS(2717), + [sym_primitive_type] = ACTIONS(2717), + [anon_sym_enum] = ACTIONS(2717), + [anon_sym_class] = ACTIONS(2717), + [anon_sym_struct] = ACTIONS(2717), + [anon_sym_union] = ACTIONS(2717), + [anon_sym_if] = ACTIONS(2717), + [anon_sym_else] = ACTIONS(2717), + [anon_sym_switch] = ACTIONS(2717), + [anon_sym_while] = ACTIONS(2717), + [anon_sym_do] = ACTIONS(2717), + [anon_sym_for] = ACTIONS(2717), + [anon_sym_return] = ACTIONS(2717), + [anon_sym_break] = ACTIONS(2717), + [anon_sym_continue] = ACTIONS(2717), + [anon_sym_goto] = ACTIONS(2717), + [anon_sym___try] = ACTIONS(2717), + [anon_sym___leave] = ACTIONS(2717), + [anon_sym_not] = ACTIONS(2717), + [anon_sym_compl] = ACTIONS(2717), + [anon_sym_DASH_DASH] = ACTIONS(2719), + [anon_sym_PLUS_PLUS] = ACTIONS(2719), + [anon_sym_sizeof] = ACTIONS(2717), + [anon_sym___alignof__] = ACTIONS(2717), + [anon_sym___alignof] = ACTIONS(2717), + [anon_sym__alignof] = ACTIONS(2717), + [anon_sym_alignof] = ACTIONS(2717), + [anon_sym__Alignof] = ACTIONS(2717), + [anon_sym_offsetof] = ACTIONS(2717), + [anon_sym__Generic] = ACTIONS(2717), + [anon_sym_asm] = ACTIONS(2717), + [anon_sym___asm__] = ACTIONS(2717), + [anon_sym___asm] = ACTIONS(2717), + [sym_number_literal] = ACTIONS(2719), + [anon_sym_L_SQUOTE] = ACTIONS(2719), + [anon_sym_u_SQUOTE] = ACTIONS(2719), + [anon_sym_U_SQUOTE] = ACTIONS(2719), + [anon_sym_u8_SQUOTE] = ACTIONS(2719), + [anon_sym_SQUOTE] = ACTIONS(2719), + [anon_sym_L_DQUOTE] = ACTIONS(2719), + [anon_sym_u_DQUOTE] = ACTIONS(2719), + [anon_sym_U_DQUOTE] = ACTIONS(2719), + [anon_sym_u8_DQUOTE] = ACTIONS(2719), + [anon_sym_DQUOTE] = ACTIONS(2719), + [sym_true] = ACTIONS(2717), + [sym_false] = ACTIONS(2717), + [anon_sym_NULL] = ACTIONS(2717), + [anon_sym_nullptr] = ACTIONS(2717), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2717), + [anon_sym_decltype] = ACTIONS(2717), + [anon_sym_typename] = ACTIONS(2717), + [anon_sym_template] = ACTIONS(2717), + [anon_sym_try] = ACTIONS(2717), + [anon_sym_delete] = ACTIONS(2717), + [anon_sym_throw] = ACTIONS(2717), + [anon_sym_co_return] = ACTIONS(2717), + [anon_sym_co_yield] = ACTIONS(2717), + [anon_sym_R_DQUOTE] = ACTIONS(2719), + [anon_sym_LR_DQUOTE] = ACTIONS(2719), + [anon_sym_uR_DQUOTE] = ACTIONS(2719), + [anon_sym_UR_DQUOTE] = ACTIONS(2719), + [anon_sym_u8R_DQUOTE] = ACTIONS(2719), + [anon_sym_co_await] = ACTIONS(2717), + [anon_sym_new] = ACTIONS(2717), + [anon_sym_requires] = ACTIONS(2717), + [sym_this] = ACTIONS(2717), }, - [862] = { - [sym_type_qualifier] = STATE(845), - [sym_alignas_qualifier] = STATE(1868), - [sym_expression] = STATE(4717), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3678), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3678), - [sym_call_expression] = STATE(3678), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3678), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3678), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3678), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3678), - [aux_sym_array_declarator_repeat1] = STATE(845), - [sym_identifier] = ACTIONS(4121), - [anon_sym_LPAREN2] = ACTIONS(3893), - [anon_sym_BANG] = ACTIONS(3853), - [anon_sym_TILDE] = ACTIONS(3853), - [anon_sym_DASH] = ACTIONS(3851), - [anon_sym_PLUS] = ACTIONS(3851), - [anon_sym_STAR] = ACTIONS(4123), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(4019), - [anon_sym_COLON_COLON] = ACTIONS(3857), - [anon_sym_LBRACK] = ACTIONS(2020), - [anon_sym_static] = ACTIONS(4125), - [anon_sym_RBRACK] = ACTIONS(4127), - [anon_sym_const] = ACTIONS(4025), - [anon_sym_constexpr] = ACTIONS(4025), - [anon_sym_volatile] = ACTIONS(4025), - [anon_sym_restrict] = ACTIONS(4025), - [anon_sym___restrict__] = ACTIONS(4025), - [anon_sym__Atomic] = ACTIONS(4025), - [anon_sym__Noreturn] = ACTIONS(4025), - [anon_sym_noreturn] = ACTIONS(4025), - [anon_sym__Nonnull] = ACTIONS(4025), - [anon_sym_mutable] = ACTIONS(4025), - [anon_sym_constinit] = ACTIONS(4025), - [anon_sym_consteval] = ACTIONS(4025), - [anon_sym_alignas] = ACTIONS(4027), - [anon_sym__Alignas] = ACTIONS(4027), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3851), - [anon_sym_compl] = ACTIONS(3851), - [anon_sym_DASH_DASH] = ACTIONS(3897), - [anon_sym_PLUS_PLUS] = ACTIONS(3897), - [anon_sym_sizeof] = ACTIONS(3859), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3861), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3863), - [anon_sym_new] = ACTIONS(3865), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [918] = { + [sym_identifier] = ACTIONS(2671), + [anon_sym_LPAREN2] = ACTIONS(2673), + [anon_sym_BANG] = ACTIONS(2673), + [anon_sym_TILDE] = ACTIONS(2673), + [anon_sym_DASH] = ACTIONS(2671), + [anon_sym_PLUS] = ACTIONS(2671), + [anon_sym_STAR] = ACTIONS(2673), + [anon_sym_AMP] = ACTIONS(2673), + [anon_sym_SEMI] = ACTIONS(2673), + [anon_sym___extension__] = ACTIONS(2671), + [anon_sym_typedef] = ACTIONS(2671), + [anon_sym_virtual] = ACTIONS(2671), + [anon_sym_extern] = ACTIONS(2671), + [anon_sym___attribute__] = ACTIONS(2671), + [anon_sym___attribute] = ACTIONS(2671), + [anon_sym_COLON_COLON] = ACTIONS(2673), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2673), + [anon_sym___declspec] = ACTIONS(2671), + [anon_sym_LBRACE] = ACTIONS(2673), + [anon_sym_signed] = ACTIONS(2671), + [anon_sym_unsigned] = ACTIONS(2671), + [anon_sym_long] = ACTIONS(2671), + [anon_sym_short] = ACTIONS(2671), + [anon_sym_LBRACK] = ACTIONS(2671), + [anon_sym_static] = ACTIONS(2671), + [anon_sym_register] = ACTIONS(2671), + [anon_sym_inline] = ACTIONS(2671), + [anon_sym___inline] = ACTIONS(2671), + [anon_sym___inline__] = ACTIONS(2671), + [anon_sym___forceinline] = ACTIONS(2671), + [anon_sym_thread_local] = ACTIONS(2671), + [anon_sym___thread] = ACTIONS(2671), + [anon_sym_const] = ACTIONS(2671), + [anon_sym_constexpr] = ACTIONS(2671), + [anon_sym_volatile] = ACTIONS(2671), + [anon_sym_restrict] = ACTIONS(2671), + [anon_sym___restrict__] = ACTIONS(2671), + [anon_sym__Atomic] = ACTIONS(2671), + [anon_sym__Noreturn] = ACTIONS(2671), + [anon_sym_noreturn] = ACTIONS(2671), + [anon_sym__Nonnull] = ACTIONS(2671), + [anon_sym_mutable] = ACTIONS(2671), + [anon_sym_constinit] = ACTIONS(2671), + [anon_sym_consteval] = ACTIONS(2671), + [anon_sym_alignas] = ACTIONS(2671), + [anon_sym__Alignas] = ACTIONS(2671), + [sym_primitive_type] = ACTIONS(2671), + [anon_sym_enum] = ACTIONS(2671), + [anon_sym_class] = ACTIONS(2671), + [anon_sym_struct] = ACTIONS(2671), + [anon_sym_union] = ACTIONS(2671), + [anon_sym_if] = ACTIONS(2671), + [anon_sym_else] = ACTIONS(2671), + [anon_sym_switch] = ACTIONS(2671), + [anon_sym_while] = ACTIONS(2671), + [anon_sym_do] = ACTIONS(2671), + [anon_sym_for] = ACTIONS(2671), + [anon_sym_return] = ACTIONS(2671), + [anon_sym_break] = ACTIONS(2671), + [anon_sym_continue] = ACTIONS(2671), + [anon_sym_goto] = ACTIONS(2671), + [anon_sym___try] = ACTIONS(2671), + [anon_sym___leave] = ACTIONS(2671), + [anon_sym_not] = ACTIONS(2671), + [anon_sym_compl] = ACTIONS(2671), + [anon_sym_DASH_DASH] = ACTIONS(2673), + [anon_sym_PLUS_PLUS] = ACTIONS(2673), + [anon_sym_sizeof] = ACTIONS(2671), + [anon_sym___alignof__] = ACTIONS(2671), + [anon_sym___alignof] = ACTIONS(2671), + [anon_sym__alignof] = ACTIONS(2671), + [anon_sym_alignof] = ACTIONS(2671), + [anon_sym__Alignof] = ACTIONS(2671), + [anon_sym_offsetof] = ACTIONS(2671), + [anon_sym__Generic] = ACTIONS(2671), + [anon_sym_asm] = ACTIONS(2671), + [anon_sym___asm__] = ACTIONS(2671), + [anon_sym___asm] = ACTIONS(2671), + [sym_number_literal] = ACTIONS(2673), + [anon_sym_L_SQUOTE] = ACTIONS(2673), + [anon_sym_u_SQUOTE] = ACTIONS(2673), + [anon_sym_U_SQUOTE] = ACTIONS(2673), + [anon_sym_u8_SQUOTE] = ACTIONS(2673), + [anon_sym_SQUOTE] = ACTIONS(2673), + [anon_sym_L_DQUOTE] = ACTIONS(2673), + [anon_sym_u_DQUOTE] = ACTIONS(2673), + [anon_sym_U_DQUOTE] = ACTIONS(2673), + [anon_sym_u8_DQUOTE] = ACTIONS(2673), + [anon_sym_DQUOTE] = ACTIONS(2673), + [sym_true] = ACTIONS(2671), + [sym_false] = ACTIONS(2671), + [anon_sym_NULL] = ACTIONS(2671), + [anon_sym_nullptr] = ACTIONS(2671), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2671), + [anon_sym_decltype] = ACTIONS(2671), + [anon_sym_typename] = ACTIONS(2671), + [anon_sym_template] = ACTIONS(2671), + [anon_sym_try] = ACTIONS(2671), + [anon_sym_delete] = ACTIONS(2671), + [anon_sym_throw] = ACTIONS(2671), + [anon_sym_co_return] = ACTIONS(2671), + [anon_sym_co_yield] = ACTIONS(2671), + [anon_sym_R_DQUOTE] = ACTIONS(2673), + [anon_sym_LR_DQUOTE] = ACTIONS(2673), + [anon_sym_uR_DQUOTE] = ACTIONS(2673), + [anon_sym_UR_DQUOTE] = ACTIONS(2673), + [anon_sym_u8R_DQUOTE] = ACTIONS(2673), + [anon_sym_co_await] = ACTIONS(2671), + [anon_sym_new] = ACTIONS(2671), + [anon_sym_requires] = ACTIONS(2671), + [sym_this] = ACTIONS(2671), }, - [863] = { - [sym_function_definition] = STATE(2145), - [sym_declaration] = STATE(2145), - [sym__declaration_modifiers] = STATE(3120), - [sym__declaration_specifiers] = STATE(4668), - [sym_attribute_specifier] = STATE(3120), - [sym_attribute_declaration] = STATE(3120), - [sym_ms_declspec_modifier] = STATE(3120), - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_call_modifier] = STATE(1932), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6214), - [sym_array_declarator] = STATE(5998), - [sym_storage_class_specifier] = STATE(3120), - [sym_type_qualifier] = STATE(3120), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2736), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym__empty_declaration] = STATE(2145), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym_explicit_function_specifier] = STATE(1812), - [sym_dependent_type] = STATE(2523), - [sym_template_declaration] = STATE(2145), - [sym_operator_cast] = STATE(6839), - [sym__constructor_specifiers] = STATE(1812), - [sym_operator_cast_definition] = STATE(2145), - [sym_operator_cast_declaration] = STATE(2145), - [sym_constructor_or_destructor_definition] = STATE(2145), - [sym_constructor_or_destructor_declaration] = STATE(2145), - [sym_friend_declaration] = STATE(2145), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(2406), - [sym_template_function] = STATE(5998), - [sym_alias_declaration] = STATE(2145), - [sym_concept_definition] = STATE(2145), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5462), - [sym_qualified_identifier] = STATE(5998), - [sym_qualified_type_identifier] = STATE(3015), - [sym_qualified_operator_cast_identifier] = STATE(6839), - [sym_operator_name] = STATE(5998), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [aux_sym_operator_cast_definition_repeat1] = STATE(1812), - [sym_identifier] = ACTIONS(3967), - [anon_sym_LPAREN2] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2979), - [anon_sym_STAR] = ACTIONS(2981), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2983), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(3977), - [anon_sym_COLON_COLON] = ACTIONS(3971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym___cdecl] = ACTIONS(55), - [anon_sym___clrcall] = ACTIONS(55), - [anon_sym___stdcall] = ACTIONS(55), - [anon_sym___fastcall] = ACTIONS(55), - [anon_sym___thiscall] = ACTIONS(55), - [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2995), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(3653), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2999), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(3655), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(3657), - [anon_sym_concept] = ACTIONS(3979), + [919] = { + [sym_identifier] = ACTIONS(2675), + [anon_sym_LPAREN2] = ACTIONS(2677), + [anon_sym_BANG] = ACTIONS(2677), + [anon_sym_TILDE] = ACTIONS(2677), + [anon_sym_DASH] = ACTIONS(2675), + [anon_sym_PLUS] = ACTIONS(2675), + [anon_sym_STAR] = ACTIONS(2677), + [anon_sym_AMP] = ACTIONS(2677), + [anon_sym_SEMI] = ACTIONS(2677), + [anon_sym___extension__] = ACTIONS(2675), + [anon_sym_typedef] = ACTIONS(2675), + [anon_sym_virtual] = ACTIONS(2675), + [anon_sym_extern] = ACTIONS(2675), + [anon_sym___attribute__] = ACTIONS(2675), + [anon_sym___attribute] = ACTIONS(2675), + [anon_sym_COLON_COLON] = ACTIONS(2677), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2677), + [anon_sym___declspec] = ACTIONS(2675), + [anon_sym_LBRACE] = ACTIONS(2677), + [anon_sym_signed] = ACTIONS(2675), + [anon_sym_unsigned] = ACTIONS(2675), + [anon_sym_long] = ACTIONS(2675), + [anon_sym_short] = ACTIONS(2675), + [anon_sym_LBRACK] = ACTIONS(2675), + [anon_sym_static] = ACTIONS(2675), + [anon_sym_register] = ACTIONS(2675), + [anon_sym_inline] = ACTIONS(2675), + [anon_sym___inline] = ACTIONS(2675), + [anon_sym___inline__] = ACTIONS(2675), + [anon_sym___forceinline] = ACTIONS(2675), + [anon_sym_thread_local] = ACTIONS(2675), + [anon_sym___thread] = ACTIONS(2675), + [anon_sym_const] = ACTIONS(2675), + [anon_sym_constexpr] = ACTIONS(2675), + [anon_sym_volatile] = ACTIONS(2675), + [anon_sym_restrict] = ACTIONS(2675), + [anon_sym___restrict__] = ACTIONS(2675), + [anon_sym__Atomic] = ACTIONS(2675), + [anon_sym__Noreturn] = ACTIONS(2675), + [anon_sym_noreturn] = ACTIONS(2675), + [anon_sym__Nonnull] = ACTIONS(2675), + [anon_sym_mutable] = ACTIONS(2675), + [anon_sym_constinit] = ACTIONS(2675), + [anon_sym_consteval] = ACTIONS(2675), + [anon_sym_alignas] = ACTIONS(2675), + [anon_sym__Alignas] = ACTIONS(2675), + [sym_primitive_type] = ACTIONS(2675), + [anon_sym_enum] = ACTIONS(2675), + [anon_sym_class] = ACTIONS(2675), + [anon_sym_struct] = ACTIONS(2675), + [anon_sym_union] = ACTIONS(2675), + [anon_sym_if] = ACTIONS(2675), + [anon_sym_else] = ACTIONS(2675), + [anon_sym_switch] = ACTIONS(2675), + [anon_sym_while] = ACTIONS(2675), + [anon_sym_do] = ACTIONS(2675), + [anon_sym_for] = ACTIONS(2675), + [anon_sym_return] = ACTIONS(2675), + [anon_sym_break] = ACTIONS(2675), + [anon_sym_continue] = ACTIONS(2675), + [anon_sym_goto] = ACTIONS(2675), + [anon_sym___try] = ACTIONS(2675), + [anon_sym___leave] = ACTIONS(2675), + [anon_sym_not] = ACTIONS(2675), + [anon_sym_compl] = ACTIONS(2675), + [anon_sym_DASH_DASH] = ACTIONS(2677), + [anon_sym_PLUS_PLUS] = ACTIONS(2677), + [anon_sym_sizeof] = ACTIONS(2675), + [anon_sym___alignof__] = ACTIONS(2675), + [anon_sym___alignof] = ACTIONS(2675), + [anon_sym__alignof] = ACTIONS(2675), + [anon_sym_alignof] = ACTIONS(2675), + [anon_sym__Alignof] = ACTIONS(2675), + [anon_sym_offsetof] = ACTIONS(2675), + [anon_sym__Generic] = ACTIONS(2675), + [anon_sym_asm] = ACTIONS(2675), + [anon_sym___asm__] = ACTIONS(2675), + [anon_sym___asm] = ACTIONS(2675), + [sym_number_literal] = ACTIONS(2677), + [anon_sym_L_SQUOTE] = ACTIONS(2677), + [anon_sym_u_SQUOTE] = ACTIONS(2677), + [anon_sym_U_SQUOTE] = ACTIONS(2677), + [anon_sym_u8_SQUOTE] = ACTIONS(2677), + [anon_sym_SQUOTE] = ACTIONS(2677), + [anon_sym_L_DQUOTE] = ACTIONS(2677), + [anon_sym_u_DQUOTE] = ACTIONS(2677), + [anon_sym_U_DQUOTE] = ACTIONS(2677), + [anon_sym_u8_DQUOTE] = ACTIONS(2677), + [anon_sym_DQUOTE] = ACTIONS(2677), + [sym_true] = ACTIONS(2675), + [sym_false] = ACTIONS(2675), + [anon_sym_NULL] = ACTIONS(2675), + [anon_sym_nullptr] = ACTIONS(2675), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2675), + [anon_sym_decltype] = ACTIONS(2675), + [anon_sym_typename] = ACTIONS(2675), + [anon_sym_template] = ACTIONS(2675), + [anon_sym_try] = ACTIONS(2675), + [anon_sym_delete] = ACTIONS(2675), + [anon_sym_throw] = ACTIONS(2675), + [anon_sym_co_return] = ACTIONS(2675), + [anon_sym_co_yield] = ACTIONS(2675), + [anon_sym_R_DQUOTE] = ACTIONS(2677), + [anon_sym_LR_DQUOTE] = ACTIONS(2677), + [anon_sym_uR_DQUOTE] = ACTIONS(2677), + [anon_sym_UR_DQUOTE] = ACTIONS(2677), + [anon_sym_u8R_DQUOTE] = ACTIONS(2677), + [anon_sym_co_await] = ACTIONS(2675), + [anon_sym_new] = ACTIONS(2675), + [anon_sym_requires] = ACTIONS(2675), + [sym_this] = ACTIONS(2675), }, - [864] = { - [sym_type_qualifier] = STATE(1698), - [sym_alignas_qualifier] = STATE(1868), - [sym_expression] = STATE(4692), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3678), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3678), - [sym_call_expression] = STATE(3678), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3678), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3678), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3678), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3678), - [aux_sym_array_declarator_repeat1] = STATE(1698), - [sym_identifier] = ACTIONS(3849), - [anon_sym_LPAREN2] = ACTIONS(3893), - [anon_sym_BANG] = ACTIONS(3853), - [anon_sym_TILDE] = ACTIONS(3853), - [anon_sym_DASH] = ACTIONS(3851), - [anon_sym_PLUS] = ACTIONS(3851), - [anon_sym_STAR] = ACTIONS(4129), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(4019), - [anon_sym_COLON_COLON] = ACTIONS(3857), - [anon_sym_LBRACK] = ACTIONS(2020), - [anon_sym_static] = ACTIONS(4037), - [anon_sym_RBRACK] = ACTIONS(4131), - [anon_sym_const] = ACTIONS(4025), - [anon_sym_constexpr] = ACTIONS(4025), - [anon_sym_volatile] = ACTIONS(4025), - [anon_sym_restrict] = ACTIONS(4025), - [anon_sym___restrict__] = ACTIONS(4025), - [anon_sym__Atomic] = ACTIONS(4025), - [anon_sym__Noreturn] = ACTIONS(4025), - [anon_sym_noreturn] = ACTIONS(4025), - [anon_sym__Nonnull] = ACTIONS(4025), - [anon_sym_mutable] = ACTIONS(4025), - [anon_sym_constinit] = ACTIONS(4025), - [anon_sym_consteval] = ACTIONS(4025), - [anon_sym_alignas] = ACTIONS(4027), - [anon_sym__Alignas] = ACTIONS(4027), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3851), - [anon_sym_compl] = ACTIONS(3851), - [anon_sym_DASH_DASH] = ACTIONS(3897), - [anon_sym_PLUS_PLUS] = ACTIONS(3897), - [anon_sym_sizeof] = ACTIONS(3859), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3861), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3863), - [anon_sym_new] = ACTIONS(3865), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [920] = { + [sym_identifier] = ACTIONS(2721), + [anon_sym_LPAREN2] = ACTIONS(2723), + [anon_sym_BANG] = ACTIONS(2723), + [anon_sym_TILDE] = ACTIONS(2723), + [anon_sym_DASH] = ACTIONS(2721), + [anon_sym_PLUS] = ACTIONS(2721), + [anon_sym_STAR] = ACTIONS(2723), + [anon_sym_AMP] = ACTIONS(2723), + [anon_sym_SEMI] = ACTIONS(2723), + [anon_sym___extension__] = ACTIONS(2721), + [anon_sym_typedef] = ACTIONS(2721), + [anon_sym_virtual] = ACTIONS(2721), + [anon_sym_extern] = ACTIONS(2721), + [anon_sym___attribute__] = ACTIONS(2721), + [anon_sym___attribute] = ACTIONS(2721), + [anon_sym_COLON_COLON] = ACTIONS(2723), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2723), + [anon_sym___declspec] = ACTIONS(2721), + [anon_sym_LBRACE] = ACTIONS(2723), + [anon_sym_signed] = ACTIONS(2721), + [anon_sym_unsigned] = ACTIONS(2721), + [anon_sym_long] = ACTIONS(2721), + [anon_sym_short] = ACTIONS(2721), + [anon_sym_LBRACK] = ACTIONS(2721), + [anon_sym_static] = ACTIONS(2721), + [anon_sym_register] = ACTIONS(2721), + [anon_sym_inline] = ACTIONS(2721), + [anon_sym___inline] = ACTIONS(2721), + [anon_sym___inline__] = ACTIONS(2721), + [anon_sym___forceinline] = ACTIONS(2721), + [anon_sym_thread_local] = ACTIONS(2721), + [anon_sym___thread] = ACTIONS(2721), + [anon_sym_const] = ACTIONS(2721), + [anon_sym_constexpr] = ACTIONS(2721), + [anon_sym_volatile] = ACTIONS(2721), + [anon_sym_restrict] = ACTIONS(2721), + [anon_sym___restrict__] = ACTIONS(2721), + [anon_sym__Atomic] = ACTIONS(2721), + [anon_sym__Noreturn] = ACTIONS(2721), + [anon_sym_noreturn] = ACTIONS(2721), + [anon_sym__Nonnull] = ACTIONS(2721), + [anon_sym_mutable] = ACTIONS(2721), + [anon_sym_constinit] = ACTIONS(2721), + [anon_sym_consteval] = ACTIONS(2721), + [anon_sym_alignas] = ACTIONS(2721), + [anon_sym__Alignas] = ACTIONS(2721), + [sym_primitive_type] = ACTIONS(2721), + [anon_sym_enum] = ACTIONS(2721), + [anon_sym_class] = ACTIONS(2721), + [anon_sym_struct] = ACTIONS(2721), + [anon_sym_union] = ACTIONS(2721), + [anon_sym_if] = ACTIONS(2721), + [anon_sym_else] = ACTIONS(2721), + [anon_sym_switch] = ACTIONS(2721), + [anon_sym_while] = ACTIONS(2721), + [anon_sym_do] = ACTIONS(2721), + [anon_sym_for] = ACTIONS(2721), + [anon_sym_return] = ACTIONS(2721), + [anon_sym_break] = ACTIONS(2721), + [anon_sym_continue] = ACTIONS(2721), + [anon_sym_goto] = ACTIONS(2721), + [anon_sym___try] = ACTIONS(2721), + [anon_sym___leave] = ACTIONS(2721), + [anon_sym_not] = ACTIONS(2721), + [anon_sym_compl] = ACTIONS(2721), + [anon_sym_DASH_DASH] = ACTIONS(2723), + [anon_sym_PLUS_PLUS] = ACTIONS(2723), + [anon_sym_sizeof] = ACTIONS(2721), + [anon_sym___alignof__] = ACTIONS(2721), + [anon_sym___alignof] = ACTIONS(2721), + [anon_sym__alignof] = ACTIONS(2721), + [anon_sym_alignof] = ACTIONS(2721), + [anon_sym__Alignof] = ACTIONS(2721), + [anon_sym_offsetof] = ACTIONS(2721), + [anon_sym__Generic] = ACTIONS(2721), + [anon_sym_asm] = ACTIONS(2721), + [anon_sym___asm__] = ACTIONS(2721), + [anon_sym___asm] = ACTIONS(2721), + [sym_number_literal] = ACTIONS(2723), + [anon_sym_L_SQUOTE] = ACTIONS(2723), + [anon_sym_u_SQUOTE] = ACTIONS(2723), + [anon_sym_U_SQUOTE] = ACTIONS(2723), + [anon_sym_u8_SQUOTE] = ACTIONS(2723), + [anon_sym_SQUOTE] = ACTIONS(2723), + [anon_sym_L_DQUOTE] = ACTIONS(2723), + [anon_sym_u_DQUOTE] = ACTIONS(2723), + [anon_sym_U_DQUOTE] = ACTIONS(2723), + [anon_sym_u8_DQUOTE] = ACTIONS(2723), + [anon_sym_DQUOTE] = ACTIONS(2723), + [sym_true] = ACTIONS(2721), + [sym_false] = ACTIONS(2721), + [anon_sym_NULL] = ACTIONS(2721), + [anon_sym_nullptr] = ACTIONS(2721), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2721), + [anon_sym_decltype] = ACTIONS(2721), + [anon_sym_typename] = ACTIONS(2721), + [anon_sym_template] = ACTIONS(2721), + [anon_sym_try] = ACTIONS(2721), + [anon_sym_delete] = ACTIONS(2721), + [anon_sym_throw] = ACTIONS(2721), + [anon_sym_co_return] = ACTIONS(2721), + [anon_sym_co_yield] = ACTIONS(2721), + [anon_sym_R_DQUOTE] = ACTIONS(2723), + [anon_sym_LR_DQUOTE] = ACTIONS(2723), + [anon_sym_uR_DQUOTE] = ACTIONS(2723), + [anon_sym_UR_DQUOTE] = ACTIONS(2723), + [anon_sym_u8R_DQUOTE] = ACTIONS(2723), + [anon_sym_co_await] = ACTIONS(2721), + [anon_sym_new] = ACTIONS(2721), + [anon_sym_requires] = ACTIONS(2721), + [sym_this] = ACTIONS(2721), }, - [865] = { - [sym_type_qualifier] = STATE(1698), - [sym_alignas_qualifier] = STATE(1868), - [sym_expression] = STATE(4734), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3678), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3678), - [sym_call_expression] = STATE(3678), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3678), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3678), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3678), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3678), - [aux_sym_array_declarator_repeat1] = STATE(1698), - [sym_identifier] = ACTIONS(3849), - [anon_sym_LPAREN2] = ACTIONS(3893), - [anon_sym_BANG] = ACTIONS(3853), - [anon_sym_TILDE] = ACTIONS(3853), - [anon_sym_DASH] = ACTIONS(3851), - [anon_sym_PLUS] = ACTIONS(3851), - [anon_sym_STAR] = ACTIONS(4133), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(4019), - [anon_sym_COLON_COLON] = ACTIONS(3857), - [anon_sym_LBRACK] = ACTIONS(2020), - [anon_sym_static] = ACTIONS(4037), - [anon_sym_RBRACK] = ACTIONS(4135), - [anon_sym_const] = ACTIONS(4025), - [anon_sym_constexpr] = ACTIONS(4025), - [anon_sym_volatile] = ACTIONS(4025), - [anon_sym_restrict] = ACTIONS(4025), - [anon_sym___restrict__] = ACTIONS(4025), - [anon_sym__Atomic] = ACTIONS(4025), - [anon_sym__Noreturn] = ACTIONS(4025), - [anon_sym_noreturn] = ACTIONS(4025), - [anon_sym__Nonnull] = ACTIONS(4025), - [anon_sym_mutable] = ACTIONS(4025), - [anon_sym_constinit] = ACTIONS(4025), - [anon_sym_consteval] = ACTIONS(4025), - [anon_sym_alignas] = ACTIONS(4027), - [anon_sym__Alignas] = ACTIONS(4027), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3851), - [anon_sym_compl] = ACTIONS(3851), - [anon_sym_DASH_DASH] = ACTIONS(3897), - [anon_sym_PLUS_PLUS] = ACTIONS(3897), - [anon_sym_sizeof] = ACTIONS(3859), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), + [921] = { + [sym_identifier] = ACTIONS(2663), + [anon_sym_LPAREN2] = ACTIONS(2665), + [anon_sym_BANG] = ACTIONS(2665), + [anon_sym_TILDE] = ACTIONS(2665), + [anon_sym_DASH] = ACTIONS(2663), + [anon_sym_PLUS] = ACTIONS(2663), + [anon_sym_STAR] = ACTIONS(2665), + [anon_sym_AMP] = ACTIONS(2665), + [anon_sym_SEMI] = ACTIONS(2665), + [anon_sym___extension__] = ACTIONS(2663), + [anon_sym_typedef] = ACTIONS(2663), + [anon_sym_virtual] = ACTIONS(2663), + [anon_sym_extern] = ACTIONS(2663), + [anon_sym___attribute__] = ACTIONS(2663), + [anon_sym___attribute] = ACTIONS(2663), + [anon_sym_COLON_COLON] = ACTIONS(2665), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2665), + [anon_sym___declspec] = ACTIONS(2663), + [anon_sym_LBRACE] = ACTIONS(2665), + [anon_sym_signed] = ACTIONS(2663), + [anon_sym_unsigned] = ACTIONS(2663), + [anon_sym_long] = ACTIONS(2663), + [anon_sym_short] = ACTIONS(2663), + [anon_sym_LBRACK] = ACTIONS(2663), + [anon_sym_static] = ACTIONS(2663), + [anon_sym_register] = ACTIONS(2663), + [anon_sym_inline] = ACTIONS(2663), + [anon_sym___inline] = ACTIONS(2663), + [anon_sym___inline__] = ACTIONS(2663), + [anon_sym___forceinline] = ACTIONS(2663), + [anon_sym_thread_local] = ACTIONS(2663), + [anon_sym___thread] = ACTIONS(2663), + [anon_sym_const] = ACTIONS(2663), + [anon_sym_constexpr] = ACTIONS(2663), + [anon_sym_volatile] = ACTIONS(2663), + [anon_sym_restrict] = ACTIONS(2663), + [anon_sym___restrict__] = ACTIONS(2663), + [anon_sym__Atomic] = ACTIONS(2663), + [anon_sym__Noreturn] = ACTIONS(2663), + [anon_sym_noreturn] = ACTIONS(2663), + [anon_sym__Nonnull] = ACTIONS(2663), + [anon_sym_mutable] = ACTIONS(2663), + [anon_sym_constinit] = ACTIONS(2663), + [anon_sym_consteval] = ACTIONS(2663), + [anon_sym_alignas] = ACTIONS(2663), + [anon_sym__Alignas] = ACTIONS(2663), + [sym_primitive_type] = ACTIONS(2663), + [anon_sym_enum] = ACTIONS(2663), + [anon_sym_class] = ACTIONS(2663), + [anon_sym_struct] = ACTIONS(2663), + [anon_sym_union] = ACTIONS(2663), + [anon_sym_if] = ACTIONS(2663), + [anon_sym_else] = ACTIONS(2663), + [anon_sym_switch] = ACTIONS(2663), + [anon_sym_while] = ACTIONS(2663), + [anon_sym_do] = ACTIONS(2663), + [anon_sym_for] = ACTIONS(2663), + [anon_sym_return] = ACTIONS(2663), + [anon_sym_break] = ACTIONS(2663), + [anon_sym_continue] = ACTIONS(2663), + [anon_sym_goto] = ACTIONS(2663), + [anon_sym___try] = ACTIONS(2663), + [anon_sym___leave] = ACTIONS(2663), + [anon_sym_not] = ACTIONS(2663), + [anon_sym_compl] = ACTIONS(2663), + [anon_sym_DASH_DASH] = ACTIONS(2665), + [anon_sym_PLUS_PLUS] = ACTIONS(2665), + [anon_sym_sizeof] = ACTIONS(2663), + [anon_sym___alignof__] = ACTIONS(2663), + [anon_sym___alignof] = ACTIONS(2663), + [anon_sym__alignof] = ACTIONS(2663), + [anon_sym_alignof] = ACTIONS(2663), + [anon_sym__Alignof] = ACTIONS(2663), + [anon_sym_offsetof] = ACTIONS(2663), + [anon_sym__Generic] = ACTIONS(2663), + [anon_sym_asm] = ACTIONS(2663), + [anon_sym___asm__] = ACTIONS(2663), + [anon_sym___asm] = ACTIONS(2663), + [sym_number_literal] = ACTIONS(2665), + [anon_sym_L_SQUOTE] = ACTIONS(2665), + [anon_sym_u_SQUOTE] = ACTIONS(2665), + [anon_sym_U_SQUOTE] = ACTIONS(2665), + [anon_sym_u8_SQUOTE] = ACTIONS(2665), + [anon_sym_SQUOTE] = ACTIONS(2665), + [anon_sym_L_DQUOTE] = ACTIONS(2665), + [anon_sym_u_DQUOTE] = ACTIONS(2665), + [anon_sym_U_DQUOTE] = ACTIONS(2665), + [anon_sym_u8_DQUOTE] = ACTIONS(2665), + [anon_sym_DQUOTE] = ACTIONS(2665), + [sym_true] = ACTIONS(2663), + [sym_false] = ACTIONS(2663), + [anon_sym_NULL] = ACTIONS(2663), + [anon_sym_nullptr] = ACTIONS(2663), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2663), + [anon_sym_decltype] = ACTIONS(2663), + [anon_sym_typename] = ACTIONS(2663), + [anon_sym_template] = ACTIONS(2663), + [anon_sym_try] = ACTIONS(2663), + [anon_sym_delete] = ACTIONS(2663), + [anon_sym_throw] = ACTIONS(2663), + [anon_sym_co_return] = ACTIONS(2663), + [anon_sym_co_yield] = ACTIONS(2663), + [anon_sym_R_DQUOTE] = ACTIONS(2665), + [anon_sym_LR_DQUOTE] = ACTIONS(2665), + [anon_sym_uR_DQUOTE] = ACTIONS(2665), + [anon_sym_UR_DQUOTE] = ACTIONS(2665), + [anon_sym_u8R_DQUOTE] = ACTIONS(2665), + [anon_sym_co_await] = ACTIONS(2663), + [anon_sym_new] = ACTIONS(2663), + [anon_sym_requires] = ACTIONS(2663), + [sym_this] = ACTIONS(2663), + }, + [922] = { + [sym_identifier] = ACTIONS(2739), + [anon_sym_LPAREN2] = ACTIONS(2741), + [anon_sym_BANG] = ACTIONS(2741), + [anon_sym_TILDE] = ACTIONS(2741), + [anon_sym_DASH] = ACTIONS(2739), + [anon_sym_PLUS] = ACTIONS(2739), + [anon_sym_STAR] = ACTIONS(2741), + [anon_sym_AMP] = ACTIONS(2741), + [anon_sym_SEMI] = ACTIONS(2741), + [anon_sym___extension__] = ACTIONS(2739), + [anon_sym_typedef] = ACTIONS(2739), + [anon_sym_virtual] = ACTIONS(2739), + [anon_sym_extern] = ACTIONS(2739), + [anon_sym___attribute__] = ACTIONS(2739), + [anon_sym___attribute] = ACTIONS(2739), + [anon_sym_COLON_COLON] = ACTIONS(2741), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2741), + [anon_sym___declspec] = ACTIONS(2739), + [anon_sym_LBRACE] = ACTIONS(2741), + [anon_sym_signed] = ACTIONS(2739), + [anon_sym_unsigned] = ACTIONS(2739), + [anon_sym_long] = ACTIONS(2739), + [anon_sym_short] = ACTIONS(2739), + [anon_sym_LBRACK] = ACTIONS(2739), + [anon_sym_static] = ACTIONS(2739), + [anon_sym_register] = ACTIONS(2739), + [anon_sym_inline] = ACTIONS(2739), + [anon_sym___inline] = ACTIONS(2739), + [anon_sym___inline__] = ACTIONS(2739), + [anon_sym___forceinline] = ACTIONS(2739), + [anon_sym_thread_local] = ACTIONS(2739), + [anon_sym___thread] = ACTIONS(2739), + [anon_sym_const] = ACTIONS(2739), + [anon_sym_constexpr] = ACTIONS(2739), + [anon_sym_volatile] = ACTIONS(2739), + [anon_sym_restrict] = ACTIONS(2739), + [anon_sym___restrict__] = ACTIONS(2739), + [anon_sym__Atomic] = ACTIONS(2739), + [anon_sym__Noreturn] = ACTIONS(2739), + [anon_sym_noreturn] = ACTIONS(2739), + [anon_sym__Nonnull] = ACTIONS(2739), + [anon_sym_mutable] = ACTIONS(2739), + [anon_sym_constinit] = ACTIONS(2739), + [anon_sym_consteval] = ACTIONS(2739), + [anon_sym_alignas] = ACTIONS(2739), + [anon_sym__Alignas] = ACTIONS(2739), + [sym_primitive_type] = ACTIONS(2739), + [anon_sym_enum] = ACTIONS(2739), + [anon_sym_class] = ACTIONS(2739), + [anon_sym_struct] = ACTIONS(2739), + [anon_sym_union] = ACTIONS(2739), + [anon_sym_if] = ACTIONS(2739), + [anon_sym_else] = ACTIONS(2739), + [anon_sym_switch] = ACTIONS(2739), + [anon_sym_while] = ACTIONS(2739), + [anon_sym_do] = ACTIONS(2739), + [anon_sym_for] = ACTIONS(2739), + [anon_sym_return] = ACTIONS(2739), + [anon_sym_break] = ACTIONS(2739), + [anon_sym_continue] = ACTIONS(2739), + [anon_sym_goto] = ACTIONS(2739), + [anon_sym___try] = ACTIONS(2739), + [anon_sym___leave] = ACTIONS(2739), + [anon_sym_not] = ACTIONS(2739), + [anon_sym_compl] = ACTIONS(2739), + [anon_sym_DASH_DASH] = ACTIONS(2741), + [anon_sym_PLUS_PLUS] = ACTIONS(2741), + [anon_sym_sizeof] = ACTIONS(2739), + [anon_sym___alignof__] = ACTIONS(2739), + [anon_sym___alignof] = ACTIONS(2739), + [anon_sym__alignof] = ACTIONS(2739), + [anon_sym_alignof] = ACTIONS(2739), + [anon_sym__Alignof] = ACTIONS(2739), + [anon_sym_offsetof] = ACTIONS(2739), + [anon_sym__Generic] = ACTIONS(2739), + [anon_sym_asm] = ACTIONS(2739), + [anon_sym___asm__] = ACTIONS(2739), + [anon_sym___asm] = ACTIONS(2739), + [sym_number_literal] = ACTIONS(2741), + [anon_sym_L_SQUOTE] = ACTIONS(2741), + [anon_sym_u_SQUOTE] = ACTIONS(2741), + [anon_sym_U_SQUOTE] = ACTIONS(2741), + [anon_sym_u8_SQUOTE] = ACTIONS(2741), + [anon_sym_SQUOTE] = ACTIONS(2741), + [anon_sym_L_DQUOTE] = ACTIONS(2741), + [anon_sym_u_DQUOTE] = ACTIONS(2741), + [anon_sym_U_DQUOTE] = ACTIONS(2741), + [anon_sym_u8_DQUOTE] = ACTIONS(2741), + [anon_sym_DQUOTE] = ACTIONS(2741), + [sym_true] = ACTIONS(2739), + [sym_false] = ACTIONS(2739), + [anon_sym_NULL] = ACTIONS(2739), + [anon_sym_nullptr] = ACTIONS(2739), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3861), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3863), - [anon_sym_new] = ACTIONS(3865), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [sym_auto] = ACTIONS(2739), + [anon_sym_decltype] = ACTIONS(2739), + [anon_sym_typename] = ACTIONS(2739), + [anon_sym_template] = ACTIONS(2739), + [anon_sym_try] = ACTIONS(2739), + [anon_sym_delete] = ACTIONS(2739), + [anon_sym_throw] = ACTIONS(2739), + [anon_sym_co_return] = ACTIONS(2739), + [anon_sym_co_yield] = ACTIONS(2739), + [anon_sym_R_DQUOTE] = ACTIONS(2741), + [anon_sym_LR_DQUOTE] = ACTIONS(2741), + [anon_sym_uR_DQUOTE] = ACTIONS(2741), + [anon_sym_UR_DQUOTE] = ACTIONS(2741), + [anon_sym_u8R_DQUOTE] = ACTIONS(2741), + [anon_sym_co_await] = ACTIONS(2739), + [anon_sym_new] = ACTIONS(2739), + [anon_sym_requires] = ACTIONS(2739), + [sym_this] = ACTIONS(2739), }, - [866] = { - [sym_type_qualifier] = STATE(845), - [sym_alignas_qualifier] = STATE(1868), - [sym_expression] = STATE(4717), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3678), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3678), - [sym_call_expression] = STATE(3678), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3678), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3678), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3678), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3678), - [aux_sym_array_declarator_repeat1] = STATE(845), - [sym_identifier] = ACTIONS(3849), - [anon_sym_LPAREN2] = ACTIONS(3893), - [anon_sym_BANG] = ACTIONS(3853), - [anon_sym_TILDE] = ACTIONS(3853), - [anon_sym_DASH] = ACTIONS(3851), - [anon_sym_PLUS] = ACTIONS(3851), - [anon_sym_STAR] = ACTIONS(4123), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(4019), - [anon_sym_COLON_COLON] = ACTIONS(3857), - [anon_sym_LBRACK] = ACTIONS(2020), - [anon_sym_static] = ACTIONS(4125), - [anon_sym_RBRACK] = ACTIONS(4127), - [anon_sym_const] = ACTIONS(4025), - [anon_sym_constexpr] = ACTIONS(4025), - [anon_sym_volatile] = ACTIONS(4025), - [anon_sym_restrict] = ACTIONS(4025), - [anon_sym___restrict__] = ACTIONS(4025), - [anon_sym__Atomic] = ACTIONS(4025), - [anon_sym__Noreturn] = ACTIONS(4025), - [anon_sym_noreturn] = ACTIONS(4025), - [anon_sym__Nonnull] = ACTIONS(4025), - [anon_sym_mutable] = ACTIONS(4025), - [anon_sym_constinit] = ACTIONS(4025), - [anon_sym_consteval] = ACTIONS(4025), - [anon_sym_alignas] = ACTIONS(4027), - [anon_sym__Alignas] = ACTIONS(4027), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3851), - [anon_sym_compl] = ACTIONS(3851), - [anon_sym_DASH_DASH] = ACTIONS(3897), - [anon_sym_PLUS_PLUS] = ACTIONS(3897), - [anon_sym_sizeof] = ACTIONS(3859), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), + [923] = { + [sym_identifier] = ACTIONS(2751), + [anon_sym_LPAREN2] = ACTIONS(2753), + [anon_sym_BANG] = ACTIONS(2753), + [anon_sym_TILDE] = ACTIONS(2753), + [anon_sym_DASH] = ACTIONS(2751), + [anon_sym_PLUS] = ACTIONS(2751), + [anon_sym_STAR] = ACTIONS(2753), + [anon_sym_AMP] = ACTIONS(2753), + [anon_sym_SEMI] = ACTIONS(2753), + [anon_sym___extension__] = ACTIONS(2751), + [anon_sym_typedef] = ACTIONS(2751), + [anon_sym_virtual] = ACTIONS(2751), + [anon_sym_extern] = ACTIONS(2751), + [anon_sym___attribute__] = ACTIONS(2751), + [anon_sym___attribute] = ACTIONS(2751), + [anon_sym_COLON_COLON] = ACTIONS(2753), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2753), + [anon_sym___declspec] = ACTIONS(2751), + [anon_sym_LBRACE] = ACTIONS(2753), + [anon_sym_signed] = ACTIONS(2751), + [anon_sym_unsigned] = ACTIONS(2751), + [anon_sym_long] = ACTIONS(2751), + [anon_sym_short] = ACTIONS(2751), + [anon_sym_LBRACK] = ACTIONS(2751), + [anon_sym_static] = ACTIONS(2751), + [anon_sym_register] = ACTIONS(2751), + [anon_sym_inline] = ACTIONS(2751), + [anon_sym___inline] = ACTIONS(2751), + [anon_sym___inline__] = ACTIONS(2751), + [anon_sym___forceinline] = ACTIONS(2751), + [anon_sym_thread_local] = ACTIONS(2751), + [anon_sym___thread] = ACTIONS(2751), + [anon_sym_const] = ACTIONS(2751), + [anon_sym_constexpr] = ACTIONS(2751), + [anon_sym_volatile] = ACTIONS(2751), + [anon_sym_restrict] = ACTIONS(2751), + [anon_sym___restrict__] = ACTIONS(2751), + [anon_sym__Atomic] = ACTIONS(2751), + [anon_sym__Noreturn] = ACTIONS(2751), + [anon_sym_noreturn] = ACTIONS(2751), + [anon_sym__Nonnull] = ACTIONS(2751), + [anon_sym_mutable] = ACTIONS(2751), + [anon_sym_constinit] = ACTIONS(2751), + [anon_sym_consteval] = ACTIONS(2751), + [anon_sym_alignas] = ACTIONS(2751), + [anon_sym__Alignas] = ACTIONS(2751), + [sym_primitive_type] = ACTIONS(2751), + [anon_sym_enum] = ACTIONS(2751), + [anon_sym_class] = ACTIONS(2751), + [anon_sym_struct] = ACTIONS(2751), + [anon_sym_union] = ACTIONS(2751), + [anon_sym_if] = ACTIONS(2751), + [anon_sym_else] = ACTIONS(2751), + [anon_sym_switch] = ACTIONS(2751), + [anon_sym_while] = ACTIONS(2751), + [anon_sym_do] = ACTIONS(2751), + [anon_sym_for] = ACTIONS(2751), + [anon_sym_return] = ACTIONS(2751), + [anon_sym_break] = ACTIONS(2751), + [anon_sym_continue] = ACTIONS(2751), + [anon_sym_goto] = ACTIONS(2751), + [anon_sym___try] = ACTIONS(2751), + [anon_sym___leave] = ACTIONS(2751), + [anon_sym_not] = ACTIONS(2751), + [anon_sym_compl] = ACTIONS(2751), + [anon_sym_DASH_DASH] = ACTIONS(2753), + [anon_sym_PLUS_PLUS] = ACTIONS(2753), + [anon_sym_sizeof] = ACTIONS(2751), + [anon_sym___alignof__] = ACTIONS(2751), + [anon_sym___alignof] = ACTIONS(2751), + [anon_sym__alignof] = ACTIONS(2751), + [anon_sym_alignof] = ACTIONS(2751), + [anon_sym__Alignof] = ACTIONS(2751), + [anon_sym_offsetof] = ACTIONS(2751), + [anon_sym__Generic] = ACTIONS(2751), + [anon_sym_asm] = ACTIONS(2751), + [anon_sym___asm__] = ACTIONS(2751), + [anon_sym___asm] = ACTIONS(2751), + [sym_number_literal] = ACTIONS(2753), + [anon_sym_L_SQUOTE] = ACTIONS(2753), + [anon_sym_u_SQUOTE] = ACTIONS(2753), + [anon_sym_U_SQUOTE] = ACTIONS(2753), + [anon_sym_u8_SQUOTE] = ACTIONS(2753), + [anon_sym_SQUOTE] = ACTIONS(2753), + [anon_sym_L_DQUOTE] = ACTIONS(2753), + [anon_sym_u_DQUOTE] = ACTIONS(2753), + [anon_sym_U_DQUOTE] = ACTIONS(2753), + [anon_sym_u8_DQUOTE] = ACTIONS(2753), + [anon_sym_DQUOTE] = ACTIONS(2753), + [sym_true] = ACTIONS(2751), + [sym_false] = ACTIONS(2751), + [anon_sym_NULL] = ACTIONS(2751), + [anon_sym_nullptr] = ACTIONS(2751), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3861), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3863), - [anon_sym_new] = ACTIONS(3865), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [sym_auto] = ACTIONS(2751), + [anon_sym_decltype] = ACTIONS(2751), + [anon_sym_typename] = ACTIONS(2751), + [anon_sym_template] = ACTIONS(2751), + [anon_sym_try] = ACTIONS(2751), + [anon_sym_delete] = ACTIONS(2751), + [anon_sym_throw] = ACTIONS(2751), + [anon_sym_co_return] = ACTIONS(2751), + [anon_sym_co_yield] = ACTIONS(2751), + [anon_sym_R_DQUOTE] = ACTIONS(2753), + [anon_sym_LR_DQUOTE] = ACTIONS(2753), + [anon_sym_uR_DQUOTE] = ACTIONS(2753), + [anon_sym_UR_DQUOTE] = ACTIONS(2753), + [anon_sym_u8R_DQUOTE] = ACTIONS(2753), + [anon_sym_co_await] = ACTIONS(2751), + [anon_sym_new] = ACTIONS(2751), + [anon_sym_requires] = ACTIONS(2751), + [sym_this] = ACTIONS(2751), }, - [867] = { - [sym_type_qualifier] = STATE(1698), - [sym_alignas_qualifier] = STATE(1868), - [sym_expression] = STATE(4632), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3678), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3678), - [sym_call_expression] = STATE(3678), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3678), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3678), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3678), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3678), - [aux_sym_array_declarator_repeat1] = STATE(1698), - [sym_identifier] = ACTIONS(3849), - [anon_sym_LPAREN2] = ACTIONS(3893), - [anon_sym_BANG] = ACTIONS(3853), - [anon_sym_TILDE] = ACTIONS(3853), - [anon_sym_DASH] = ACTIONS(3851), - [anon_sym_PLUS] = ACTIONS(3851), - [anon_sym_STAR] = ACTIONS(4137), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(4019), - [anon_sym_COLON_COLON] = ACTIONS(3857), - [anon_sym_LBRACK] = ACTIONS(2020), - [anon_sym_static] = ACTIONS(4037), - [anon_sym_RBRACK] = ACTIONS(4139), - [anon_sym_const] = ACTIONS(4025), - [anon_sym_constexpr] = ACTIONS(4025), - [anon_sym_volatile] = ACTIONS(4025), - [anon_sym_restrict] = ACTIONS(4025), - [anon_sym___restrict__] = ACTIONS(4025), - [anon_sym__Atomic] = ACTIONS(4025), - [anon_sym__Noreturn] = ACTIONS(4025), - [anon_sym_noreturn] = ACTIONS(4025), - [anon_sym__Nonnull] = ACTIONS(4025), - [anon_sym_mutable] = ACTIONS(4025), - [anon_sym_constinit] = ACTIONS(4025), - [anon_sym_consteval] = ACTIONS(4025), - [anon_sym_alignas] = ACTIONS(4027), - [anon_sym__Alignas] = ACTIONS(4027), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3851), - [anon_sym_compl] = ACTIONS(3851), - [anon_sym_DASH_DASH] = ACTIONS(3897), - [anon_sym_PLUS_PLUS] = ACTIONS(3897), - [anon_sym_sizeof] = ACTIONS(3859), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), + [924] = { + [sym_identifier] = ACTIONS(2763), + [anon_sym_LPAREN2] = ACTIONS(2765), + [anon_sym_BANG] = ACTIONS(2765), + [anon_sym_TILDE] = ACTIONS(2765), + [anon_sym_DASH] = ACTIONS(2763), + [anon_sym_PLUS] = ACTIONS(2763), + [anon_sym_STAR] = ACTIONS(2765), + [anon_sym_AMP] = ACTIONS(2765), + [anon_sym_SEMI] = ACTIONS(2765), + [anon_sym___extension__] = ACTIONS(2763), + [anon_sym_typedef] = ACTIONS(2763), + [anon_sym_virtual] = ACTIONS(2763), + [anon_sym_extern] = ACTIONS(2763), + [anon_sym___attribute__] = ACTIONS(2763), + [anon_sym___attribute] = ACTIONS(2763), + [anon_sym_COLON_COLON] = ACTIONS(2765), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2765), + [anon_sym___declspec] = ACTIONS(2763), + [anon_sym_LBRACE] = ACTIONS(2765), + [anon_sym_signed] = ACTIONS(2763), + [anon_sym_unsigned] = ACTIONS(2763), + [anon_sym_long] = ACTIONS(2763), + [anon_sym_short] = ACTIONS(2763), + [anon_sym_LBRACK] = ACTIONS(2763), + [anon_sym_static] = ACTIONS(2763), + [anon_sym_register] = ACTIONS(2763), + [anon_sym_inline] = ACTIONS(2763), + [anon_sym___inline] = ACTIONS(2763), + [anon_sym___inline__] = ACTIONS(2763), + [anon_sym___forceinline] = ACTIONS(2763), + [anon_sym_thread_local] = ACTIONS(2763), + [anon_sym___thread] = ACTIONS(2763), + [anon_sym_const] = ACTIONS(2763), + [anon_sym_constexpr] = ACTIONS(2763), + [anon_sym_volatile] = ACTIONS(2763), + [anon_sym_restrict] = ACTIONS(2763), + [anon_sym___restrict__] = ACTIONS(2763), + [anon_sym__Atomic] = ACTIONS(2763), + [anon_sym__Noreturn] = ACTIONS(2763), + [anon_sym_noreturn] = ACTIONS(2763), + [anon_sym__Nonnull] = ACTIONS(2763), + [anon_sym_mutable] = ACTIONS(2763), + [anon_sym_constinit] = ACTIONS(2763), + [anon_sym_consteval] = ACTIONS(2763), + [anon_sym_alignas] = ACTIONS(2763), + [anon_sym__Alignas] = ACTIONS(2763), + [sym_primitive_type] = ACTIONS(2763), + [anon_sym_enum] = ACTIONS(2763), + [anon_sym_class] = ACTIONS(2763), + [anon_sym_struct] = ACTIONS(2763), + [anon_sym_union] = ACTIONS(2763), + [anon_sym_if] = ACTIONS(2763), + [anon_sym_else] = ACTIONS(2763), + [anon_sym_switch] = ACTIONS(2763), + [anon_sym_while] = ACTIONS(2763), + [anon_sym_do] = ACTIONS(2763), + [anon_sym_for] = ACTIONS(2763), + [anon_sym_return] = ACTIONS(2763), + [anon_sym_break] = ACTIONS(2763), + [anon_sym_continue] = ACTIONS(2763), + [anon_sym_goto] = ACTIONS(2763), + [anon_sym___try] = ACTIONS(2763), + [anon_sym___leave] = ACTIONS(2763), + [anon_sym_not] = ACTIONS(2763), + [anon_sym_compl] = ACTIONS(2763), + [anon_sym_DASH_DASH] = ACTIONS(2765), + [anon_sym_PLUS_PLUS] = ACTIONS(2765), + [anon_sym_sizeof] = ACTIONS(2763), + [anon_sym___alignof__] = ACTIONS(2763), + [anon_sym___alignof] = ACTIONS(2763), + [anon_sym__alignof] = ACTIONS(2763), + [anon_sym_alignof] = ACTIONS(2763), + [anon_sym__Alignof] = ACTIONS(2763), + [anon_sym_offsetof] = ACTIONS(2763), + [anon_sym__Generic] = ACTIONS(2763), + [anon_sym_asm] = ACTIONS(2763), + [anon_sym___asm__] = ACTIONS(2763), + [anon_sym___asm] = ACTIONS(2763), + [sym_number_literal] = ACTIONS(2765), + [anon_sym_L_SQUOTE] = ACTIONS(2765), + [anon_sym_u_SQUOTE] = ACTIONS(2765), + [anon_sym_U_SQUOTE] = ACTIONS(2765), + [anon_sym_u8_SQUOTE] = ACTIONS(2765), + [anon_sym_SQUOTE] = ACTIONS(2765), + [anon_sym_L_DQUOTE] = ACTIONS(2765), + [anon_sym_u_DQUOTE] = ACTIONS(2765), + [anon_sym_U_DQUOTE] = ACTIONS(2765), + [anon_sym_u8_DQUOTE] = ACTIONS(2765), + [anon_sym_DQUOTE] = ACTIONS(2765), + [sym_true] = ACTIONS(2763), + [sym_false] = ACTIONS(2763), + [anon_sym_NULL] = ACTIONS(2763), + [anon_sym_nullptr] = ACTIONS(2763), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3861), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3863), - [anon_sym_new] = ACTIONS(3865), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [sym_auto] = ACTIONS(2763), + [anon_sym_decltype] = ACTIONS(2763), + [anon_sym_typename] = ACTIONS(2763), + [anon_sym_template] = ACTIONS(2763), + [anon_sym_try] = ACTIONS(2763), + [anon_sym_delete] = ACTIONS(2763), + [anon_sym_throw] = ACTIONS(2763), + [anon_sym_co_return] = ACTIONS(2763), + [anon_sym_co_yield] = ACTIONS(2763), + [anon_sym_R_DQUOTE] = ACTIONS(2765), + [anon_sym_LR_DQUOTE] = ACTIONS(2765), + [anon_sym_uR_DQUOTE] = ACTIONS(2765), + [anon_sym_UR_DQUOTE] = ACTIONS(2765), + [anon_sym_u8R_DQUOTE] = ACTIONS(2765), + [anon_sym_co_await] = ACTIONS(2763), + [anon_sym_new] = ACTIONS(2763), + [anon_sym_requires] = ACTIONS(2763), + [sym_this] = ACTIONS(2763), }, - [868] = { - [sym_catch_clause] = STATE(868), - [aux_sym_constructor_try_statement_repeat1] = STATE(868), - [sym_identifier] = ACTIONS(2476), - [anon_sym_LPAREN2] = ACTIONS(2478), - [anon_sym_BANG] = ACTIONS(2478), - [anon_sym_TILDE] = ACTIONS(2478), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_STAR] = ACTIONS(2478), - [anon_sym_AMP] = ACTIONS(2478), - [anon_sym_SEMI] = ACTIONS(2478), - [anon_sym___extension__] = ACTIONS(2476), - [anon_sym_typedef] = ACTIONS(2476), - [anon_sym_virtual] = ACTIONS(2476), - [anon_sym_extern] = ACTIONS(2476), - [anon_sym___attribute__] = ACTIONS(2476), - [anon_sym___attribute] = ACTIONS(2476), - [anon_sym_COLON_COLON] = ACTIONS(2478), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2478), - [anon_sym___declspec] = ACTIONS(2476), - [anon_sym_LBRACE] = ACTIONS(2478), - [anon_sym_signed] = ACTIONS(2476), - [anon_sym_unsigned] = ACTIONS(2476), - [anon_sym_long] = ACTIONS(2476), - [anon_sym_short] = ACTIONS(2476), - [anon_sym_LBRACK] = ACTIONS(2476), - [anon_sym_static] = ACTIONS(2476), - [anon_sym_register] = ACTIONS(2476), - [anon_sym_inline] = ACTIONS(2476), - [anon_sym___inline] = ACTIONS(2476), - [anon_sym___inline__] = ACTIONS(2476), - [anon_sym___forceinline] = ACTIONS(2476), - [anon_sym_thread_local] = ACTIONS(2476), - [anon_sym___thread] = ACTIONS(2476), - [anon_sym_const] = ACTIONS(2476), - [anon_sym_constexpr] = ACTIONS(2476), - [anon_sym_volatile] = ACTIONS(2476), - [anon_sym_restrict] = ACTIONS(2476), - [anon_sym___restrict__] = ACTIONS(2476), - [anon_sym__Atomic] = ACTIONS(2476), - [anon_sym__Noreturn] = ACTIONS(2476), - [anon_sym_noreturn] = ACTIONS(2476), - [anon_sym__Nonnull] = ACTIONS(2476), - [anon_sym_mutable] = ACTIONS(2476), - [anon_sym_constinit] = ACTIONS(2476), - [anon_sym_consteval] = ACTIONS(2476), - [anon_sym_alignas] = ACTIONS(2476), - [anon_sym__Alignas] = ACTIONS(2476), - [sym_primitive_type] = ACTIONS(2476), - [anon_sym_enum] = ACTIONS(2476), - [anon_sym_class] = ACTIONS(2476), - [anon_sym_struct] = ACTIONS(2476), - [anon_sym_union] = ACTIONS(2476), - [anon_sym_if] = ACTIONS(2476), - [anon_sym_else] = ACTIONS(2476), - [anon_sym_switch] = ACTIONS(2476), - [anon_sym_while] = ACTIONS(2476), - [anon_sym_do] = ACTIONS(2476), - [anon_sym_for] = ACTIONS(2476), - [anon_sym_return] = ACTIONS(2476), - [anon_sym_break] = ACTIONS(2476), - [anon_sym_continue] = ACTIONS(2476), - [anon_sym_goto] = ACTIONS(2476), - [anon_sym___try] = ACTIONS(2476), - [anon_sym___leave] = ACTIONS(2476), - [anon_sym_not] = ACTIONS(2476), - [anon_sym_compl] = ACTIONS(2476), - [anon_sym_DASH_DASH] = ACTIONS(2478), - [anon_sym_PLUS_PLUS] = ACTIONS(2478), - [anon_sym_sizeof] = ACTIONS(2476), - [anon_sym___alignof__] = ACTIONS(2476), - [anon_sym___alignof] = ACTIONS(2476), - [anon_sym__alignof] = ACTIONS(2476), - [anon_sym_alignof] = ACTIONS(2476), - [anon_sym__Alignof] = ACTIONS(2476), - [anon_sym_offsetof] = ACTIONS(2476), - [anon_sym__Generic] = ACTIONS(2476), - [anon_sym_asm] = ACTIONS(2476), - [anon_sym___asm__] = ACTIONS(2476), - [anon_sym___asm] = ACTIONS(2476), - [sym_number_literal] = ACTIONS(2478), - [anon_sym_L_SQUOTE] = ACTIONS(2478), - [anon_sym_u_SQUOTE] = ACTIONS(2478), - [anon_sym_U_SQUOTE] = ACTIONS(2478), - [anon_sym_u8_SQUOTE] = ACTIONS(2478), - [anon_sym_SQUOTE] = ACTIONS(2478), - [anon_sym_L_DQUOTE] = ACTIONS(2478), - [anon_sym_u_DQUOTE] = ACTIONS(2478), - [anon_sym_U_DQUOTE] = ACTIONS(2478), - [anon_sym_u8_DQUOTE] = ACTIONS(2478), - [anon_sym_DQUOTE] = ACTIONS(2478), - [sym_true] = ACTIONS(2476), - [sym_false] = ACTIONS(2476), - [anon_sym_NULL] = ACTIONS(2476), - [anon_sym_nullptr] = ACTIONS(2476), + [925] = { + [sym_identifier] = ACTIONS(2731), + [anon_sym_LPAREN2] = ACTIONS(2733), + [anon_sym_BANG] = ACTIONS(2733), + [anon_sym_TILDE] = ACTIONS(2733), + [anon_sym_DASH] = ACTIONS(2731), + [anon_sym_PLUS] = ACTIONS(2731), + [anon_sym_STAR] = ACTIONS(2733), + [anon_sym_AMP] = ACTIONS(2733), + [anon_sym_SEMI] = ACTIONS(2733), + [anon_sym___extension__] = ACTIONS(2731), + [anon_sym_typedef] = ACTIONS(2731), + [anon_sym_virtual] = ACTIONS(2731), + [anon_sym_extern] = ACTIONS(2731), + [anon_sym___attribute__] = ACTIONS(2731), + [anon_sym___attribute] = ACTIONS(2731), + [anon_sym_COLON_COLON] = ACTIONS(2733), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2733), + [anon_sym___declspec] = ACTIONS(2731), + [anon_sym_LBRACE] = ACTIONS(2733), + [anon_sym_signed] = ACTIONS(2731), + [anon_sym_unsigned] = ACTIONS(2731), + [anon_sym_long] = ACTIONS(2731), + [anon_sym_short] = ACTIONS(2731), + [anon_sym_LBRACK] = ACTIONS(2731), + [anon_sym_static] = ACTIONS(2731), + [anon_sym_register] = ACTIONS(2731), + [anon_sym_inline] = ACTIONS(2731), + [anon_sym___inline] = ACTIONS(2731), + [anon_sym___inline__] = ACTIONS(2731), + [anon_sym___forceinline] = ACTIONS(2731), + [anon_sym_thread_local] = ACTIONS(2731), + [anon_sym___thread] = ACTIONS(2731), + [anon_sym_const] = ACTIONS(2731), + [anon_sym_constexpr] = ACTIONS(2731), + [anon_sym_volatile] = ACTIONS(2731), + [anon_sym_restrict] = ACTIONS(2731), + [anon_sym___restrict__] = ACTIONS(2731), + [anon_sym__Atomic] = ACTIONS(2731), + [anon_sym__Noreturn] = ACTIONS(2731), + [anon_sym_noreturn] = ACTIONS(2731), + [anon_sym__Nonnull] = ACTIONS(2731), + [anon_sym_mutable] = ACTIONS(2731), + [anon_sym_constinit] = ACTIONS(2731), + [anon_sym_consteval] = ACTIONS(2731), + [anon_sym_alignas] = ACTIONS(2731), + [anon_sym__Alignas] = ACTIONS(2731), + [sym_primitive_type] = ACTIONS(2731), + [anon_sym_enum] = ACTIONS(2731), + [anon_sym_class] = ACTIONS(2731), + [anon_sym_struct] = ACTIONS(2731), + [anon_sym_union] = ACTIONS(2731), + [anon_sym_if] = ACTIONS(2731), + [anon_sym_else] = ACTIONS(2731), + [anon_sym_switch] = ACTIONS(2731), + [anon_sym_while] = ACTIONS(2731), + [anon_sym_do] = ACTIONS(2731), + [anon_sym_for] = ACTIONS(2731), + [anon_sym_return] = ACTIONS(2731), + [anon_sym_break] = ACTIONS(2731), + [anon_sym_continue] = ACTIONS(2731), + [anon_sym_goto] = ACTIONS(2731), + [anon_sym___try] = ACTIONS(2731), + [anon_sym___leave] = ACTIONS(2731), + [anon_sym_not] = ACTIONS(2731), + [anon_sym_compl] = ACTIONS(2731), + [anon_sym_DASH_DASH] = ACTIONS(2733), + [anon_sym_PLUS_PLUS] = ACTIONS(2733), + [anon_sym_sizeof] = ACTIONS(2731), + [anon_sym___alignof__] = ACTIONS(2731), + [anon_sym___alignof] = ACTIONS(2731), + [anon_sym__alignof] = ACTIONS(2731), + [anon_sym_alignof] = ACTIONS(2731), + [anon_sym__Alignof] = ACTIONS(2731), + [anon_sym_offsetof] = ACTIONS(2731), + [anon_sym__Generic] = ACTIONS(2731), + [anon_sym_asm] = ACTIONS(2731), + [anon_sym___asm__] = ACTIONS(2731), + [anon_sym___asm] = ACTIONS(2731), + [sym_number_literal] = ACTIONS(2733), + [anon_sym_L_SQUOTE] = ACTIONS(2733), + [anon_sym_u_SQUOTE] = ACTIONS(2733), + [anon_sym_U_SQUOTE] = ACTIONS(2733), + [anon_sym_u8_SQUOTE] = ACTIONS(2733), + [anon_sym_SQUOTE] = ACTIONS(2733), + [anon_sym_L_DQUOTE] = ACTIONS(2733), + [anon_sym_u_DQUOTE] = ACTIONS(2733), + [anon_sym_U_DQUOTE] = ACTIONS(2733), + [anon_sym_u8_DQUOTE] = ACTIONS(2733), + [anon_sym_DQUOTE] = ACTIONS(2733), + [sym_true] = ACTIONS(2731), + [sym_false] = ACTIONS(2731), + [anon_sym_NULL] = ACTIONS(2731), + [anon_sym_nullptr] = ACTIONS(2731), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2476), - [anon_sym_decltype] = ACTIONS(2476), - [anon_sym_typename] = ACTIONS(2476), - [anon_sym_template] = ACTIONS(2476), - [anon_sym_try] = ACTIONS(2476), - [anon_sym_delete] = ACTIONS(2476), - [anon_sym_throw] = ACTIONS(2476), - [anon_sym_co_return] = ACTIONS(2476), - [anon_sym_co_yield] = ACTIONS(2476), - [anon_sym_catch] = ACTIONS(4141), - [anon_sym_R_DQUOTE] = ACTIONS(2478), - [anon_sym_LR_DQUOTE] = ACTIONS(2478), - [anon_sym_uR_DQUOTE] = ACTIONS(2478), - [anon_sym_UR_DQUOTE] = ACTIONS(2478), - [anon_sym_u8R_DQUOTE] = ACTIONS(2478), - [anon_sym_co_await] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(2476), - [anon_sym_requires] = ACTIONS(2476), - [sym_this] = ACTIONS(2476), + [sym_auto] = ACTIONS(2731), + [anon_sym_decltype] = ACTIONS(2731), + [anon_sym_typename] = ACTIONS(2731), + [anon_sym_template] = ACTIONS(2731), + [anon_sym_try] = ACTIONS(2731), + [anon_sym_delete] = ACTIONS(2731), + [anon_sym_throw] = ACTIONS(2731), + [anon_sym_co_return] = ACTIONS(2731), + [anon_sym_co_yield] = ACTIONS(2731), + [anon_sym_R_DQUOTE] = ACTIONS(2733), + [anon_sym_LR_DQUOTE] = ACTIONS(2733), + [anon_sym_uR_DQUOTE] = ACTIONS(2733), + [anon_sym_UR_DQUOTE] = ACTIONS(2733), + [anon_sym_u8R_DQUOTE] = ACTIONS(2733), + [anon_sym_co_await] = ACTIONS(2731), + [anon_sym_new] = ACTIONS(2731), + [anon_sym_requires] = ACTIONS(2731), + [sym_this] = ACTIONS(2731), }, - [869] = { - [sym_string_literal] = STATE(2624), - [sym_template_argument_list] = STATE(1604), - [sym_raw_string_literal] = STATE(2624), - [aux_sym_sized_type_specifier_repeat1] = STATE(2641), - [sym_identifier] = ACTIONS(4144), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4146), - [anon_sym_COMMA] = ACTIONS(4146), - [anon_sym_LPAREN2] = ACTIONS(4148), - [anon_sym_TILDE] = ACTIONS(4152), - [anon_sym_DASH] = ACTIONS(4154), - [anon_sym_PLUS] = ACTIONS(4154), - [anon_sym_STAR] = ACTIONS(4156), - [anon_sym_SLASH] = ACTIONS(4154), - [anon_sym_PERCENT] = ACTIONS(4154), - [anon_sym_PIPE_PIPE] = ACTIONS(4146), - [anon_sym_AMP_AMP] = ACTIONS(4159), - [anon_sym_PIPE] = ACTIONS(4154), - [anon_sym_CARET] = ACTIONS(4154), - [anon_sym_AMP] = ACTIONS(4156), - [anon_sym_EQ_EQ] = ACTIONS(4146), - [anon_sym_BANG_EQ] = ACTIONS(4146), - [anon_sym_GT] = ACTIONS(4154), - [anon_sym_GT_EQ] = ACTIONS(4146), - [anon_sym_LT_EQ] = ACTIONS(4154), - [anon_sym_LT] = ACTIONS(4162), - [anon_sym_LT_LT] = ACTIONS(4154), - [anon_sym_GT_GT] = ACTIONS(4154), - [anon_sym_SEMI] = ACTIONS(4159), - [anon_sym___extension__] = ACTIONS(4144), - [anon_sym_virtual] = ACTIONS(4144), - [anon_sym_extern] = ACTIONS(4144), - [anon_sym___attribute__] = ACTIONS(4144), - [anon_sym___attribute] = ACTIONS(4144), - [anon_sym_COLON] = ACTIONS(4165), - [anon_sym_COLON_COLON] = ACTIONS(4167), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4169), - [anon_sym___declspec] = ACTIONS(4144), - [anon_sym___based] = ACTIONS(4144), - [anon_sym___cdecl] = ACTIONS(4144), - [anon_sym___clrcall] = ACTIONS(4144), - [anon_sym___stdcall] = ACTIONS(4144), - [anon_sym___fastcall] = ACTIONS(4144), - [anon_sym___thiscall] = ACTIONS(4144), - [anon_sym___vectorcall] = ACTIONS(4144), - [anon_sym_LBRACE] = ACTIONS(4172), - [anon_sym_RBRACE] = ACTIONS(4146), - [anon_sym_signed] = ACTIONS(4174), - [anon_sym_unsigned] = ACTIONS(4174), - [anon_sym_long] = ACTIONS(4174), - [anon_sym_short] = ACTIONS(4174), - [anon_sym_LBRACK] = ACTIONS(4176), - [anon_sym_static] = ACTIONS(4144), - [anon_sym_EQ] = ACTIONS(4180), - [anon_sym_register] = ACTIONS(4144), - [anon_sym_inline] = ACTIONS(4144), - [anon_sym___inline] = ACTIONS(4144), - [anon_sym___inline__] = ACTIONS(4144), - [anon_sym___forceinline] = ACTIONS(4144), - [anon_sym_thread_local] = ACTIONS(4144), - [anon_sym___thread] = ACTIONS(4144), - [anon_sym_const] = ACTIONS(4144), - [anon_sym_constexpr] = ACTIONS(4144), - [anon_sym_volatile] = ACTIONS(4144), - [anon_sym_restrict] = ACTIONS(4144), - [anon_sym___restrict__] = ACTIONS(4144), - [anon_sym__Atomic] = ACTIONS(4144), - [anon_sym__Noreturn] = ACTIONS(4144), - [anon_sym_noreturn] = ACTIONS(4144), - [anon_sym__Nonnull] = ACTIONS(4144), - [anon_sym_mutable] = ACTIONS(4144), - [anon_sym_constinit] = ACTIONS(4144), - [anon_sym_consteval] = ACTIONS(4144), - [anon_sym_alignas] = ACTIONS(4144), - [anon_sym__Alignas] = ACTIONS(4144), - [anon_sym_QMARK] = ACTIONS(4146), - [anon_sym_STAR_EQ] = ACTIONS(4182), - [anon_sym_SLASH_EQ] = ACTIONS(4182), - [anon_sym_PERCENT_EQ] = ACTIONS(4182), - [anon_sym_PLUS_EQ] = ACTIONS(4182), - [anon_sym_DASH_EQ] = ACTIONS(4182), - [anon_sym_LT_LT_EQ] = ACTIONS(4182), - [anon_sym_GT_GT_EQ] = ACTIONS(4182), - [anon_sym_AMP_EQ] = ACTIONS(4182), - [anon_sym_CARET_EQ] = ACTIONS(4182), - [anon_sym_PIPE_EQ] = ACTIONS(4182), - [anon_sym_and_eq] = ACTIONS(4180), - [anon_sym_or_eq] = ACTIONS(4180), - [anon_sym_xor_eq] = ACTIONS(4180), - [anon_sym_LT_EQ_GT] = ACTIONS(4146), - [anon_sym_or] = ACTIONS(4154), - [anon_sym_and] = ACTIONS(4154), - [anon_sym_bitor] = ACTIONS(4154), - [anon_sym_xor] = ACTIONS(4154), - [anon_sym_bitand] = ACTIONS(4154), - [anon_sym_not_eq] = ACTIONS(4154), - [anon_sym_DASH_DASH] = ACTIONS(4146), - [anon_sym_PLUS_PLUS] = ACTIONS(4146), - [anon_sym_DOT] = ACTIONS(4154), - [anon_sym_DOT_STAR] = ACTIONS(4146), - [anon_sym_DASH_GT] = ACTIONS(4146), - [anon_sym_L_DQUOTE] = ACTIONS(3623), - [anon_sym_u_DQUOTE] = ACTIONS(3623), - [anon_sym_U_DQUOTE] = ACTIONS(3623), - [anon_sym_u8_DQUOTE] = ACTIONS(3623), - [anon_sym_DQUOTE] = ACTIONS(3623), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4144), - [anon_sym_decltype] = ACTIONS(4144), - [anon_sym_template] = ACTIONS(4144), - [anon_sym_operator] = ACTIONS(4144), - [anon_sym_R_DQUOTE] = ACTIONS(3627), - [anon_sym_LR_DQUOTE] = ACTIONS(3627), - [anon_sym_uR_DQUOTE] = ACTIONS(3627), - [anon_sym_UR_DQUOTE] = ACTIONS(3627), - [anon_sym_u8R_DQUOTE] = ACTIONS(3627), + [926] = { + [sym_identifier] = ACTIONS(2679), + [anon_sym_LPAREN2] = ACTIONS(2681), + [anon_sym_BANG] = ACTIONS(2681), + [anon_sym_TILDE] = ACTIONS(2681), + [anon_sym_DASH] = ACTIONS(2679), + [anon_sym_PLUS] = ACTIONS(2679), + [anon_sym_STAR] = ACTIONS(2681), + [anon_sym_AMP] = ACTIONS(2681), + [anon_sym_SEMI] = ACTIONS(2681), + [anon_sym___extension__] = ACTIONS(2679), + [anon_sym_typedef] = ACTIONS(2679), + [anon_sym_virtual] = ACTIONS(2679), + [anon_sym_extern] = ACTIONS(2679), + [anon_sym___attribute__] = ACTIONS(2679), + [anon_sym___attribute] = ACTIONS(2679), + [anon_sym_COLON_COLON] = ACTIONS(2681), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2681), + [anon_sym___declspec] = ACTIONS(2679), + [anon_sym_LBRACE] = ACTIONS(2681), + [anon_sym_signed] = ACTIONS(2679), + [anon_sym_unsigned] = ACTIONS(2679), + [anon_sym_long] = ACTIONS(2679), + [anon_sym_short] = ACTIONS(2679), + [anon_sym_LBRACK] = ACTIONS(2679), + [anon_sym_static] = ACTIONS(2679), + [anon_sym_register] = ACTIONS(2679), + [anon_sym_inline] = ACTIONS(2679), + [anon_sym___inline] = ACTIONS(2679), + [anon_sym___inline__] = ACTIONS(2679), + [anon_sym___forceinline] = ACTIONS(2679), + [anon_sym_thread_local] = ACTIONS(2679), + [anon_sym___thread] = ACTIONS(2679), + [anon_sym_const] = ACTIONS(2679), + [anon_sym_constexpr] = ACTIONS(2679), + [anon_sym_volatile] = ACTIONS(2679), + [anon_sym_restrict] = ACTIONS(2679), + [anon_sym___restrict__] = ACTIONS(2679), + [anon_sym__Atomic] = ACTIONS(2679), + [anon_sym__Noreturn] = ACTIONS(2679), + [anon_sym_noreturn] = ACTIONS(2679), + [anon_sym__Nonnull] = ACTIONS(2679), + [anon_sym_mutable] = ACTIONS(2679), + [anon_sym_constinit] = ACTIONS(2679), + [anon_sym_consteval] = ACTIONS(2679), + [anon_sym_alignas] = ACTIONS(2679), + [anon_sym__Alignas] = ACTIONS(2679), + [sym_primitive_type] = ACTIONS(2679), + [anon_sym_enum] = ACTIONS(2679), + [anon_sym_class] = ACTIONS(2679), + [anon_sym_struct] = ACTIONS(2679), + [anon_sym_union] = ACTIONS(2679), + [anon_sym_if] = ACTIONS(2679), + [anon_sym_else] = ACTIONS(2679), + [anon_sym_switch] = ACTIONS(2679), + [anon_sym_while] = ACTIONS(2679), + [anon_sym_do] = ACTIONS(2679), + [anon_sym_for] = ACTIONS(2679), + [anon_sym_return] = ACTIONS(2679), + [anon_sym_break] = ACTIONS(2679), + [anon_sym_continue] = ACTIONS(2679), + [anon_sym_goto] = ACTIONS(2679), + [anon_sym___try] = ACTIONS(2679), + [anon_sym___leave] = ACTIONS(2679), + [anon_sym_not] = ACTIONS(2679), + [anon_sym_compl] = ACTIONS(2679), + [anon_sym_DASH_DASH] = ACTIONS(2681), + [anon_sym_PLUS_PLUS] = ACTIONS(2681), + [anon_sym_sizeof] = ACTIONS(2679), + [anon_sym___alignof__] = ACTIONS(2679), + [anon_sym___alignof] = ACTIONS(2679), + [anon_sym__alignof] = ACTIONS(2679), + [anon_sym_alignof] = ACTIONS(2679), + [anon_sym__Alignof] = ACTIONS(2679), + [anon_sym_offsetof] = ACTIONS(2679), + [anon_sym__Generic] = ACTIONS(2679), + [anon_sym_asm] = ACTIONS(2679), + [anon_sym___asm__] = ACTIONS(2679), + [anon_sym___asm] = ACTIONS(2679), + [sym_number_literal] = ACTIONS(2681), + [anon_sym_L_SQUOTE] = ACTIONS(2681), + [anon_sym_u_SQUOTE] = ACTIONS(2681), + [anon_sym_U_SQUOTE] = ACTIONS(2681), + [anon_sym_u8_SQUOTE] = ACTIONS(2681), + [anon_sym_SQUOTE] = ACTIONS(2681), + [anon_sym_L_DQUOTE] = ACTIONS(2681), + [anon_sym_u_DQUOTE] = ACTIONS(2681), + [anon_sym_U_DQUOTE] = ACTIONS(2681), + [anon_sym_u8_DQUOTE] = ACTIONS(2681), + [anon_sym_DQUOTE] = ACTIONS(2681), + [sym_true] = ACTIONS(2679), + [sym_false] = ACTIONS(2679), + [anon_sym_NULL] = ACTIONS(2679), + [anon_sym_nullptr] = ACTIONS(2679), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2679), + [anon_sym_decltype] = ACTIONS(2679), + [anon_sym_typename] = ACTIONS(2679), + [anon_sym_template] = ACTIONS(2679), + [anon_sym_try] = ACTIONS(2679), + [anon_sym_delete] = ACTIONS(2679), + [anon_sym_throw] = ACTIONS(2679), + [anon_sym_co_return] = ACTIONS(2679), + [anon_sym_co_yield] = ACTIONS(2679), + [anon_sym_R_DQUOTE] = ACTIONS(2681), + [anon_sym_LR_DQUOTE] = ACTIONS(2681), + [anon_sym_uR_DQUOTE] = ACTIONS(2681), + [anon_sym_UR_DQUOTE] = ACTIONS(2681), + [anon_sym_u8R_DQUOTE] = ACTIONS(2681), + [anon_sym_co_await] = ACTIONS(2679), + [anon_sym_new] = ACTIONS(2679), + [anon_sym_requires] = ACTIONS(2679), + [sym_this] = ACTIONS(2679), }, - [870] = { - [sym_expression] = STATE(2893), - [sym__string] = STATE(2950), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(2950), - [sym_concatenated_string] = STATE(2950), - [sym_string_literal] = STATE(2034), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(2034), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), - [sym_identifier] = ACTIONS(4184), - [anon_sym_LPAREN2] = ACTIONS(4187), + [927] = { + [sym_ms_based_modifier] = STATE(8864), + [sym__declarator] = STATE(6634), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6145), + [sym_array_declarator] = STATE(6145), + [sym_expression] = STATE(2432), + [sym__string] = STATE(2917), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(2917), + [sym_concatenated_string] = STATE(2917), + [sym_string_literal] = STATE(2114), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3324), + [sym_raw_string_literal] = STATE(2114), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5796), + [sym_qualified_identifier] = STATE(3325), + [sym_qualified_type_identifier] = STATE(7728), + [sym_operator_name] = STATE(6145), + [sym_user_defined_literal] = STATE(2450), + [sym_identifier] = ACTIONS(3347), + [anon_sym_LPAREN2] = ACTIONS(3349), [anon_sym_BANG] = ACTIONS(1994), - [anon_sym_TILDE] = ACTIONS(4190), + [anon_sym_TILDE] = ACTIONS(3351), [anon_sym_DASH] = ACTIONS(1992), [anon_sym_PLUS] = ACTIONS(1992), - [anon_sym_STAR] = ACTIONS(2560), - [anon_sym_AMP_AMP] = ACTIONS(2563), - [anon_sym_AMP] = ACTIONS(2565), - [anon_sym___extension__] = ACTIONS(4193), - [anon_sym_COLON_COLON] = ACTIONS(4196), - [anon_sym___based] = ACTIONS(2573), - [anon_sym_LBRACK] = ACTIONS(4199), - [anon_sym_const] = ACTIONS(2573), - [anon_sym_constexpr] = ACTIONS(2573), - [anon_sym_volatile] = ACTIONS(2573), - [anon_sym_restrict] = ACTIONS(2573), - [anon_sym___restrict__] = ACTIONS(2573), - [anon_sym__Atomic] = ACTIONS(2573), - [anon_sym__Noreturn] = ACTIONS(2573), - [anon_sym_noreturn] = ACTIONS(2573), - [anon_sym__Nonnull] = ACTIONS(2573), - [anon_sym_mutable] = ACTIONS(2573), - [anon_sym_constinit] = ACTIONS(2573), - [anon_sym_consteval] = ACTIONS(2573), - [anon_sym_alignas] = ACTIONS(2573), - [anon_sym__Alignas] = ACTIONS(2573), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym___extension__] = ACTIONS(1996), + [anon_sym_COLON_COLON] = ACTIONS(1998), + [anon_sym___based] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(1810), [sym_primitive_type] = ACTIONS(1956), [anon_sym_not] = ACTIONS(1992), [anon_sym_compl] = ACTIONS(1992), - [anon_sym_DASH_DASH] = ACTIONS(3343), - [anon_sym_PLUS_PLUS] = ACTIONS(3343), + [anon_sym_DASH_DASH] = ACTIONS(3355), + [anon_sym_PLUS_PLUS] = ACTIONS(3355), [anon_sym_sizeof] = ACTIONS(2000), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), @@ -164670,9 +171886,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(1976), [anon_sym_nullptr] = ACTIONS(1976), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2584), - [anon_sym_template] = ACTIONS(2587), - [anon_sym_operator] = ACTIONS(2573), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_operator] = ACTIONS(1850), [anon_sym_delete] = ACTIONS(2008), [anon_sym_R_DQUOTE] = ACTIONS(2010), [anon_sym_LR_DQUOTE] = ACTIONS(2010), @@ -164684,2197 +171900,349 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [871] = { - [sym_expression] = STATE(3201), - [sym__string] = STATE(3235), - [sym_conditional_expression] = STATE(3373), - [sym_assignment_expression] = STATE(3373), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3373), - [sym_binary_expression] = STATE(3373), - [sym_update_expression] = STATE(3373), - [sym_cast_expression] = STATE(3373), - [sym_sizeof_expression] = STATE(3373), - [sym_alignof_expression] = STATE(3373), - [sym_offsetof_expression] = STATE(3373), - [sym_generic_expression] = STATE(3373), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3373), - [sym_extension_expression] = STATE(3373), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3373), - [sym_parenthesized_expression] = STATE(3365), - [sym_char_literal] = STATE(3235), - [sym_concatenated_string] = STATE(3235), - [sym_string_literal] = STATE(2358), - [sym_null] = STATE(3373), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7814), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3373), - [sym_raw_string_literal] = STATE(2358), - [sym_co_await_expression] = STATE(3373), - [sym_new_expression] = STATE(3373), - [sym_delete_expression] = STATE(3373), - [sym_requires_clause] = STATE(3373), - [sym_requires_expression] = STATE(3373), - [sym_lambda_expression] = STATE(3373), - [sym_lambda_capture_specifier] = STATE(5414), - [sym_fold_expression] = STATE(3373), - [sym_parameter_pack_expansion] = STATE(3373), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3365), - [sym_qualified_type_identifier] = STATE(7814), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(3955), - [anon_sym_LPAREN2] = ACTIONS(4202), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(4205), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(4208), - [anon_sym_AMP_AMP] = ACTIONS(2563), - [anon_sym_AMP] = ACTIONS(4211), - [anon_sym___extension__] = ACTIONS(3958), - [anon_sym_COLON_COLON] = ACTIONS(3961), - [anon_sym___based] = ACTIONS(2573), - [anon_sym_LBRACK] = ACTIONS(4199), - [anon_sym_const] = ACTIONS(2573), - [anon_sym_constexpr] = ACTIONS(2573), - [anon_sym_volatile] = ACTIONS(2573), - [anon_sym_restrict] = ACTIONS(2573), - [anon_sym___restrict__] = ACTIONS(2573), - [anon_sym__Atomic] = ACTIONS(2573), - [anon_sym__Noreturn] = ACTIONS(2573), - [anon_sym_noreturn] = ACTIONS(2573), - [anon_sym__Nonnull] = ACTIONS(2573), - [anon_sym_mutable] = ACTIONS(2573), - [anon_sym_constinit] = ACTIONS(2573), - [anon_sym_consteval] = ACTIONS(2573), - [anon_sym_alignas] = ACTIONS(2573), - [anon_sym__Alignas] = ACTIONS(2573), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2584), - [anon_sym_template] = ACTIONS(2587), - [anon_sym_operator] = ACTIONS(2573), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), - }, - [872] = { - [sym_catch_clause] = STATE(868), - [aux_sym_constructor_try_statement_repeat1] = STATE(868), - [sym_identifier] = ACTIONS(2483), - [anon_sym_LPAREN2] = ACTIONS(2485), - [anon_sym_BANG] = ACTIONS(2485), - [anon_sym_TILDE] = ACTIONS(2485), - [anon_sym_DASH] = ACTIONS(2483), - [anon_sym_PLUS] = ACTIONS(2483), - [anon_sym_STAR] = ACTIONS(2485), - [anon_sym_AMP] = ACTIONS(2485), - [anon_sym_SEMI] = ACTIONS(2485), - [anon_sym___extension__] = ACTIONS(2483), - [anon_sym_typedef] = ACTIONS(2483), - [anon_sym_virtual] = ACTIONS(2483), - [anon_sym_extern] = ACTIONS(2483), - [anon_sym___attribute__] = ACTIONS(2483), - [anon_sym___attribute] = ACTIONS(2483), - [anon_sym_COLON_COLON] = ACTIONS(2485), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2485), - [anon_sym___declspec] = ACTIONS(2483), - [anon_sym_LBRACE] = ACTIONS(2485), - [anon_sym_signed] = ACTIONS(2483), - [anon_sym_unsigned] = ACTIONS(2483), - [anon_sym_long] = ACTIONS(2483), - [anon_sym_short] = ACTIONS(2483), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_static] = ACTIONS(2483), - [anon_sym_register] = ACTIONS(2483), - [anon_sym_inline] = ACTIONS(2483), - [anon_sym___inline] = ACTIONS(2483), - [anon_sym___inline__] = ACTIONS(2483), - [anon_sym___forceinline] = ACTIONS(2483), - [anon_sym_thread_local] = ACTIONS(2483), - [anon_sym___thread] = ACTIONS(2483), - [anon_sym_const] = ACTIONS(2483), - [anon_sym_constexpr] = ACTIONS(2483), - [anon_sym_volatile] = ACTIONS(2483), - [anon_sym_restrict] = ACTIONS(2483), - [anon_sym___restrict__] = ACTIONS(2483), - [anon_sym__Atomic] = ACTIONS(2483), - [anon_sym__Noreturn] = ACTIONS(2483), - [anon_sym_noreturn] = ACTIONS(2483), - [anon_sym__Nonnull] = ACTIONS(2483), - [anon_sym_mutable] = ACTIONS(2483), - [anon_sym_constinit] = ACTIONS(2483), - [anon_sym_consteval] = ACTIONS(2483), - [anon_sym_alignas] = ACTIONS(2483), - [anon_sym__Alignas] = ACTIONS(2483), - [sym_primitive_type] = ACTIONS(2483), - [anon_sym_enum] = ACTIONS(2483), - [anon_sym_class] = ACTIONS(2483), - [anon_sym_struct] = ACTIONS(2483), - [anon_sym_union] = ACTIONS(2483), - [anon_sym_if] = ACTIONS(2483), - [anon_sym_else] = ACTIONS(2483), - [anon_sym_switch] = ACTIONS(2483), - [anon_sym_while] = ACTIONS(2483), - [anon_sym_do] = ACTIONS(2483), - [anon_sym_for] = ACTIONS(2483), - [anon_sym_return] = ACTIONS(2483), - [anon_sym_break] = ACTIONS(2483), - [anon_sym_continue] = ACTIONS(2483), - [anon_sym_goto] = ACTIONS(2483), - [anon_sym___try] = ACTIONS(2483), - [anon_sym___leave] = ACTIONS(2483), - [anon_sym_not] = ACTIONS(2483), - [anon_sym_compl] = ACTIONS(2483), - [anon_sym_DASH_DASH] = ACTIONS(2485), - [anon_sym_PLUS_PLUS] = ACTIONS(2485), - [anon_sym_sizeof] = ACTIONS(2483), - [anon_sym___alignof__] = ACTIONS(2483), - [anon_sym___alignof] = ACTIONS(2483), - [anon_sym__alignof] = ACTIONS(2483), - [anon_sym_alignof] = ACTIONS(2483), - [anon_sym__Alignof] = ACTIONS(2483), - [anon_sym_offsetof] = ACTIONS(2483), - [anon_sym__Generic] = ACTIONS(2483), - [anon_sym_asm] = ACTIONS(2483), - [anon_sym___asm__] = ACTIONS(2483), - [anon_sym___asm] = ACTIONS(2483), - [sym_number_literal] = ACTIONS(2485), - [anon_sym_L_SQUOTE] = ACTIONS(2485), - [anon_sym_u_SQUOTE] = ACTIONS(2485), - [anon_sym_U_SQUOTE] = ACTIONS(2485), - [anon_sym_u8_SQUOTE] = ACTIONS(2485), - [anon_sym_SQUOTE] = ACTIONS(2485), - [anon_sym_L_DQUOTE] = ACTIONS(2485), - [anon_sym_u_DQUOTE] = ACTIONS(2485), - [anon_sym_U_DQUOTE] = ACTIONS(2485), - [anon_sym_u8_DQUOTE] = ACTIONS(2485), - [anon_sym_DQUOTE] = ACTIONS(2485), - [sym_true] = ACTIONS(2483), - [sym_false] = ACTIONS(2483), - [anon_sym_NULL] = ACTIONS(2483), - [anon_sym_nullptr] = ACTIONS(2483), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2483), - [anon_sym_decltype] = ACTIONS(2483), - [anon_sym_typename] = ACTIONS(2483), - [anon_sym_template] = ACTIONS(2483), - [anon_sym_try] = ACTIONS(2483), - [anon_sym_delete] = ACTIONS(2483), - [anon_sym_throw] = ACTIONS(2483), - [anon_sym_co_return] = ACTIONS(2483), - [anon_sym_co_yield] = ACTIONS(2483), - [anon_sym_catch] = ACTIONS(4214), - [anon_sym_R_DQUOTE] = ACTIONS(2485), - [anon_sym_LR_DQUOTE] = ACTIONS(2485), - [anon_sym_uR_DQUOTE] = ACTIONS(2485), - [anon_sym_UR_DQUOTE] = ACTIONS(2485), - [anon_sym_u8R_DQUOTE] = ACTIONS(2485), - [anon_sym_co_await] = ACTIONS(2483), - [anon_sym_new] = ACTIONS(2483), - [anon_sym_requires] = ACTIONS(2483), - [sym_this] = ACTIONS(2483), - }, - [873] = { - [sym_string_literal] = STATE(2624), - [sym_template_argument_list] = STATE(1604), - [sym_raw_string_literal] = STATE(2624), - [aux_sym_sized_type_specifier_repeat1] = STATE(2641), - [sym_identifier] = ACTIONS(4144), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4146), - [anon_sym_COMMA] = ACTIONS(4146), - [anon_sym_LPAREN2] = ACTIONS(4148), - [anon_sym_TILDE] = ACTIONS(4152), - [anon_sym_DASH] = ACTIONS(4154), - [anon_sym_PLUS] = ACTIONS(4154), - [anon_sym_STAR] = ACTIONS(4156), - [anon_sym_SLASH] = ACTIONS(4154), - [anon_sym_PERCENT] = ACTIONS(4154), - [anon_sym_PIPE_PIPE] = ACTIONS(4146), - [anon_sym_AMP_AMP] = ACTIONS(4159), - [anon_sym_PIPE] = ACTIONS(4154), - [anon_sym_CARET] = ACTIONS(4154), - [anon_sym_AMP] = ACTIONS(4156), - [anon_sym_EQ_EQ] = ACTIONS(4146), - [anon_sym_BANG_EQ] = ACTIONS(4146), - [anon_sym_GT] = ACTIONS(4154), - [anon_sym_GT_EQ] = ACTIONS(4146), - [anon_sym_LT_EQ] = ACTIONS(4154), - [anon_sym_LT] = ACTIONS(4162), - [anon_sym_LT_LT] = ACTIONS(4154), - [anon_sym_GT_GT] = ACTIONS(4154), - [anon_sym_SEMI] = ACTIONS(4159), - [anon_sym___extension__] = ACTIONS(4144), - [anon_sym_virtual] = ACTIONS(4144), - [anon_sym_extern] = ACTIONS(4144), - [anon_sym___attribute__] = ACTIONS(4144), - [anon_sym___attribute] = ACTIONS(4144), - [anon_sym_COLON] = ACTIONS(4216), - [anon_sym_COLON_COLON] = ACTIONS(4167), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4169), - [anon_sym___declspec] = ACTIONS(4144), - [anon_sym___based] = ACTIONS(4144), - [anon_sym___cdecl] = ACTIONS(4144), - [anon_sym___clrcall] = ACTIONS(4144), - [anon_sym___stdcall] = ACTIONS(4144), - [anon_sym___fastcall] = ACTIONS(4144), - [anon_sym___thiscall] = ACTIONS(4144), - [anon_sym___vectorcall] = ACTIONS(4144), - [anon_sym_LBRACE] = ACTIONS(4172), - [anon_sym_signed] = ACTIONS(4174), - [anon_sym_unsigned] = ACTIONS(4174), - [anon_sym_long] = ACTIONS(4174), - [anon_sym_short] = ACTIONS(4174), - [anon_sym_LBRACK] = ACTIONS(4176), - [anon_sym_static] = ACTIONS(4144), - [anon_sym_EQ] = ACTIONS(4180), - [anon_sym_register] = ACTIONS(4144), - [anon_sym_inline] = ACTIONS(4144), - [anon_sym___inline] = ACTIONS(4144), - [anon_sym___inline__] = ACTIONS(4144), - [anon_sym___forceinline] = ACTIONS(4144), - [anon_sym_thread_local] = ACTIONS(4144), - [anon_sym___thread] = ACTIONS(4144), - [anon_sym_const] = ACTIONS(4144), - [anon_sym_constexpr] = ACTIONS(4144), - [anon_sym_volatile] = ACTIONS(4144), - [anon_sym_restrict] = ACTIONS(4144), - [anon_sym___restrict__] = ACTIONS(4144), - [anon_sym__Atomic] = ACTIONS(4144), - [anon_sym__Noreturn] = ACTIONS(4144), - [anon_sym_noreturn] = ACTIONS(4144), - [anon_sym__Nonnull] = ACTIONS(4144), - [anon_sym_mutable] = ACTIONS(4144), - [anon_sym_constinit] = ACTIONS(4144), - [anon_sym_consteval] = ACTIONS(4144), - [anon_sym_alignas] = ACTIONS(4144), - [anon_sym__Alignas] = ACTIONS(4144), - [anon_sym_QMARK] = ACTIONS(4146), - [anon_sym_STAR_EQ] = ACTIONS(4182), - [anon_sym_SLASH_EQ] = ACTIONS(4182), - [anon_sym_PERCENT_EQ] = ACTIONS(4182), - [anon_sym_PLUS_EQ] = ACTIONS(4182), - [anon_sym_DASH_EQ] = ACTIONS(4182), - [anon_sym_LT_LT_EQ] = ACTIONS(4182), - [anon_sym_GT_GT_EQ] = ACTIONS(4182), - [anon_sym_AMP_EQ] = ACTIONS(4182), - [anon_sym_CARET_EQ] = ACTIONS(4182), - [anon_sym_PIPE_EQ] = ACTIONS(4182), - [anon_sym_and_eq] = ACTIONS(4180), - [anon_sym_or_eq] = ACTIONS(4180), - [anon_sym_xor_eq] = ACTIONS(4180), - [anon_sym_LT_EQ_GT] = ACTIONS(4146), - [anon_sym_or] = ACTIONS(4154), - [anon_sym_and] = ACTIONS(4154), - [anon_sym_bitor] = ACTIONS(4154), - [anon_sym_xor] = ACTIONS(4154), - [anon_sym_bitand] = ACTIONS(4154), - [anon_sym_not_eq] = ACTIONS(4154), - [anon_sym_DASH_DASH] = ACTIONS(4146), - [anon_sym_PLUS_PLUS] = ACTIONS(4146), - [anon_sym_DOT] = ACTIONS(4154), - [anon_sym_DOT_STAR] = ACTIONS(4146), - [anon_sym_DASH_GT] = ACTIONS(4146), - [anon_sym_L_DQUOTE] = ACTIONS(3623), - [anon_sym_u_DQUOTE] = ACTIONS(3623), - [anon_sym_U_DQUOTE] = ACTIONS(3623), - [anon_sym_u8_DQUOTE] = ACTIONS(3623), - [anon_sym_DQUOTE] = ACTIONS(3623), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4144), - [anon_sym_decltype] = ACTIONS(4144), - [anon_sym_template] = ACTIONS(4144), - [anon_sym_operator] = ACTIONS(4144), - [anon_sym_R_DQUOTE] = ACTIONS(3627), - [anon_sym_LR_DQUOTE] = ACTIONS(3627), - [anon_sym_uR_DQUOTE] = ACTIONS(3627), - [anon_sym_UR_DQUOTE] = ACTIONS(3627), - [anon_sym_u8R_DQUOTE] = ACTIONS(3627), - }, - [874] = { - [sym_string_literal] = STATE(2624), - [sym_template_argument_list] = STATE(1604), - [sym_raw_string_literal] = STATE(2624), - [aux_sym_sized_type_specifier_repeat1] = STATE(2641), - [sym_identifier] = ACTIONS(4144), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4146), - [anon_sym_COMMA] = ACTIONS(4146), - [anon_sym_LPAREN2] = ACTIONS(4148), - [anon_sym_TILDE] = ACTIONS(4152), - [anon_sym_DASH] = ACTIONS(4154), - [anon_sym_PLUS] = ACTIONS(4154), - [anon_sym_STAR] = ACTIONS(4156), - [anon_sym_SLASH] = ACTIONS(4154), - [anon_sym_PERCENT] = ACTIONS(4154), - [anon_sym_PIPE_PIPE] = ACTIONS(4146), - [anon_sym_AMP_AMP] = ACTIONS(4159), - [anon_sym_PIPE] = ACTIONS(4154), - [anon_sym_CARET] = ACTIONS(4154), - [anon_sym_AMP] = ACTIONS(4156), - [anon_sym_EQ_EQ] = ACTIONS(4146), - [anon_sym_BANG_EQ] = ACTIONS(4146), - [anon_sym_GT] = ACTIONS(4154), - [anon_sym_GT_EQ] = ACTIONS(4146), - [anon_sym_LT_EQ] = ACTIONS(4154), - [anon_sym_LT] = ACTIONS(4162), - [anon_sym_LT_LT] = ACTIONS(4154), - [anon_sym_GT_GT] = ACTIONS(4154), - [anon_sym_SEMI] = ACTIONS(4159), - [anon_sym___extension__] = ACTIONS(4144), - [anon_sym_virtual] = ACTIONS(4144), - [anon_sym_extern] = ACTIONS(4144), - [anon_sym___attribute__] = ACTIONS(4144), - [anon_sym___attribute] = ACTIONS(4144), - [anon_sym_COLON] = ACTIONS(4218), - [anon_sym_COLON_COLON] = ACTIONS(4167), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4169), - [anon_sym___declspec] = ACTIONS(4144), - [anon_sym___based] = ACTIONS(4144), - [anon_sym___cdecl] = ACTIONS(4144), - [anon_sym___clrcall] = ACTIONS(4144), - [anon_sym___stdcall] = ACTIONS(4144), - [anon_sym___fastcall] = ACTIONS(4144), - [anon_sym___thiscall] = ACTIONS(4144), - [anon_sym___vectorcall] = ACTIONS(4144), - [anon_sym_LBRACE] = ACTIONS(4172), - [anon_sym_signed] = ACTIONS(4174), - [anon_sym_unsigned] = ACTIONS(4174), - [anon_sym_long] = ACTIONS(4174), - [anon_sym_short] = ACTIONS(4174), - [anon_sym_LBRACK] = ACTIONS(4176), - [anon_sym_static] = ACTIONS(4144), - [anon_sym_EQ] = ACTIONS(4180), - [anon_sym_register] = ACTIONS(4144), - [anon_sym_inline] = ACTIONS(4144), - [anon_sym___inline] = ACTIONS(4144), - [anon_sym___inline__] = ACTIONS(4144), - [anon_sym___forceinline] = ACTIONS(4144), - [anon_sym_thread_local] = ACTIONS(4144), - [anon_sym___thread] = ACTIONS(4144), - [anon_sym_const] = ACTIONS(4144), - [anon_sym_constexpr] = ACTIONS(4144), - [anon_sym_volatile] = ACTIONS(4144), - [anon_sym_restrict] = ACTIONS(4144), - [anon_sym___restrict__] = ACTIONS(4144), - [anon_sym__Atomic] = ACTIONS(4144), - [anon_sym__Noreturn] = ACTIONS(4144), - [anon_sym_noreturn] = ACTIONS(4144), - [anon_sym__Nonnull] = ACTIONS(4144), - [anon_sym_mutable] = ACTIONS(4144), - [anon_sym_constinit] = ACTIONS(4144), - [anon_sym_consteval] = ACTIONS(4144), - [anon_sym_alignas] = ACTIONS(4144), - [anon_sym__Alignas] = ACTIONS(4144), - [anon_sym_QMARK] = ACTIONS(4146), - [anon_sym_STAR_EQ] = ACTIONS(4182), - [anon_sym_SLASH_EQ] = ACTIONS(4182), - [anon_sym_PERCENT_EQ] = ACTIONS(4182), - [anon_sym_PLUS_EQ] = ACTIONS(4182), - [anon_sym_DASH_EQ] = ACTIONS(4182), - [anon_sym_LT_LT_EQ] = ACTIONS(4182), - [anon_sym_GT_GT_EQ] = ACTIONS(4182), - [anon_sym_AMP_EQ] = ACTIONS(4182), - [anon_sym_CARET_EQ] = ACTIONS(4182), - [anon_sym_PIPE_EQ] = ACTIONS(4182), - [anon_sym_and_eq] = ACTIONS(4180), - [anon_sym_or_eq] = ACTIONS(4180), - [anon_sym_xor_eq] = ACTIONS(4180), - [anon_sym_LT_EQ_GT] = ACTIONS(4146), - [anon_sym_or] = ACTIONS(4154), - [anon_sym_and] = ACTIONS(4154), - [anon_sym_bitor] = ACTIONS(4154), - [anon_sym_xor] = ACTIONS(4154), - [anon_sym_bitand] = ACTIONS(4154), - [anon_sym_not_eq] = ACTIONS(4154), - [anon_sym_DASH_DASH] = ACTIONS(4146), - [anon_sym_PLUS_PLUS] = ACTIONS(4146), - [anon_sym_DOT] = ACTIONS(4154), - [anon_sym_DOT_STAR] = ACTIONS(4146), - [anon_sym_DASH_GT] = ACTIONS(4146), - [anon_sym_L_DQUOTE] = ACTIONS(3623), - [anon_sym_u_DQUOTE] = ACTIONS(3623), - [anon_sym_U_DQUOTE] = ACTIONS(3623), - [anon_sym_u8_DQUOTE] = ACTIONS(3623), - [anon_sym_DQUOTE] = ACTIONS(3623), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4144), - [anon_sym_decltype] = ACTIONS(4144), - [anon_sym_template] = ACTIONS(4144), - [anon_sym_operator] = ACTIONS(4144), - [anon_sym_R_DQUOTE] = ACTIONS(3627), - [anon_sym_LR_DQUOTE] = ACTIONS(3627), - [anon_sym_uR_DQUOTE] = ACTIONS(3627), - [anon_sym_UR_DQUOTE] = ACTIONS(3627), - [anon_sym_u8R_DQUOTE] = ACTIONS(3627), - }, - [875] = { - [sym_string_literal] = STATE(2624), - [sym_template_argument_list] = STATE(1604), - [sym_raw_string_literal] = STATE(2624), - [aux_sym_sized_type_specifier_repeat1] = STATE(2641), - [sym_identifier] = ACTIONS(4144), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4146), - [anon_sym_COMMA] = ACTIONS(4146), - [anon_sym_LPAREN2] = ACTIONS(4148), - [anon_sym_TILDE] = ACTIONS(4152), - [anon_sym_DASH] = ACTIONS(4154), - [anon_sym_PLUS] = ACTIONS(4154), - [anon_sym_STAR] = ACTIONS(4156), - [anon_sym_SLASH] = ACTIONS(4154), - [anon_sym_PERCENT] = ACTIONS(4154), - [anon_sym_PIPE_PIPE] = ACTIONS(4146), - [anon_sym_AMP_AMP] = ACTIONS(4159), - [anon_sym_PIPE] = ACTIONS(4154), - [anon_sym_CARET] = ACTIONS(4154), - [anon_sym_AMP] = ACTIONS(4156), - [anon_sym_EQ_EQ] = ACTIONS(4146), - [anon_sym_BANG_EQ] = ACTIONS(4146), - [anon_sym_GT] = ACTIONS(4154), - [anon_sym_GT_EQ] = ACTIONS(4146), - [anon_sym_LT_EQ] = ACTIONS(4154), - [anon_sym_LT] = ACTIONS(4162), - [anon_sym_LT_LT] = ACTIONS(4154), - [anon_sym_GT_GT] = ACTIONS(4154), - [anon_sym_SEMI] = ACTIONS(4159), - [anon_sym___extension__] = ACTIONS(4144), - [anon_sym_virtual] = ACTIONS(4144), - [anon_sym_extern] = ACTIONS(4144), - [anon_sym___attribute__] = ACTIONS(4144), - [anon_sym___attribute] = ACTIONS(4144), - [anon_sym_COLON] = ACTIONS(4220), - [anon_sym_COLON_COLON] = ACTIONS(4167), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4169), - [anon_sym___declspec] = ACTIONS(4144), - [anon_sym___based] = ACTIONS(4144), - [anon_sym___cdecl] = ACTIONS(4144), - [anon_sym___clrcall] = ACTIONS(4144), - [anon_sym___stdcall] = ACTIONS(4144), - [anon_sym___fastcall] = ACTIONS(4144), - [anon_sym___thiscall] = ACTIONS(4144), - [anon_sym___vectorcall] = ACTIONS(4144), - [anon_sym_LBRACE] = ACTIONS(4172), - [anon_sym_signed] = ACTIONS(4174), - [anon_sym_unsigned] = ACTIONS(4174), - [anon_sym_long] = ACTIONS(4174), - [anon_sym_short] = ACTIONS(4174), - [anon_sym_LBRACK] = ACTIONS(4176), - [anon_sym_static] = ACTIONS(4144), - [anon_sym_EQ] = ACTIONS(4180), - [anon_sym_register] = ACTIONS(4144), - [anon_sym_inline] = ACTIONS(4144), - [anon_sym___inline] = ACTIONS(4144), - [anon_sym___inline__] = ACTIONS(4144), - [anon_sym___forceinline] = ACTIONS(4144), - [anon_sym_thread_local] = ACTIONS(4144), - [anon_sym___thread] = ACTIONS(4144), - [anon_sym_const] = ACTIONS(4144), - [anon_sym_constexpr] = ACTIONS(4144), - [anon_sym_volatile] = ACTIONS(4144), - [anon_sym_restrict] = ACTIONS(4144), - [anon_sym___restrict__] = ACTIONS(4144), - [anon_sym__Atomic] = ACTIONS(4144), - [anon_sym__Noreturn] = ACTIONS(4144), - [anon_sym_noreturn] = ACTIONS(4144), - [anon_sym__Nonnull] = ACTIONS(4144), - [anon_sym_mutable] = ACTIONS(4144), - [anon_sym_constinit] = ACTIONS(4144), - [anon_sym_consteval] = ACTIONS(4144), - [anon_sym_alignas] = ACTIONS(4144), - [anon_sym__Alignas] = ACTIONS(4144), - [anon_sym_QMARK] = ACTIONS(4146), - [anon_sym_STAR_EQ] = ACTIONS(4182), - [anon_sym_SLASH_EQ] = ACTIONS(4182), - [anon_sym_PERCENT_EQ] = ACTIONS(4182), - [anon_sym_PLUS_EQ] = ACTIONS(4182), - [anon_sym_DASH_EQ] = ACTIONS(4182), - [anon_sym_LT_LT_EQ] = ACTIONS(4182), - [anon_sym_GT_GT_EQ] = ACTIONS(4182), - [anon_sym_AMP_EQ] = ACTIONS(4182), - [anon_sym_CARET_EQ] = ACTIONS(4182), - [anon_sym_PIPE_EQ] = ACTIONS(4182), - [anon_sym_and_eq] = ACTIONS(4180), - [anon_sym_or_eq] = ACTIONS(4180), - [anon_sym_xor_eq] = ACTIONS(4180), - [anon_sym_LT_EQ_GT] = ACTIONS(4146), - [anon_sym_or] = ACTIONS(4154), - [anon_sym_and] = ACTIONS(4154), - [anon_sym_bitor] = ACTIONS(4154), - [anon_sym_xor] = ACTIONS(4154), - [anon_sym_bitand] = ACTIONS(4154), - [anon_sym_not_eq] = ACTIONS(4154), - [anon_sym_DASH_DASH] = ACTIONS(4146), - [anon_sym_PLUS_PLUS] = ACTIONS(4146), - [anon_sym_DOT] = ACTIONS(4154), - [anon_sym_DOT_STAR] = ACTIONS(4146), - [anon_sym_DASH_GT] = ACTIONS(4146), - [anon_sym_L_DQUOTE] = ACTIONS(3623), - [anon_sym_u_DQUOTE] = ACTIONS(3623), - [anon_sym_U_DQUOTE] = ACTIONS(3623), - [anon_sym_u8_DQUOTE] = ACTIONS(3623), - [anon_sym_DQUOTE] = ACTIONS(3623), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4144), - [anon_sym_decltype] = ACTIONS(4144), - [anon_sym_template] = ACTIONS(4144), - [anon_sym_operator] = ACTIONS(4144), - [anon_sym_R_DQUOTE] = ACTIONS(3627), - [anon_sym_LR_DQUOTE] = ACTIONS(3627), - [anon_sym_uR_DQUOTE] = ACTIONS(3627), - [anon_sym_UR_DQUOTE] = ACTIONS(3627), - [anon_sym_u8R_DQUOTE] = ACTIONS(3627), - }, - [876] = { - [sym_string_literal] = STATE(2624), - [sym_template_argument_list] = STATE(1604), - [sym_raw_string_literal] = STATE(2624), - [aux_sym_sized_type_specifier_repeat1] = STATE(2641), - [sym_identifier] = ACTIONS(4144), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4146), - [anon_sym_COMMA] = ACTIONS(4146), - [anon_sym_LPAREN2] = ACTIONS(4148), - [anon_sym_TILDE] = ACTIONS(4152), - [anon_sym_DASH] = ACTIONS(4154), - [anon_sym_PLUS] = ACTIONS(4154), - [anon_sym_STAR] = ACTIONS(4156), - [anon_sym_SLASH] = ACTIONS(4154), - [anon_sym_PERCENT] = ACTIONS(4154), - [anon_sym_PIPE_PIPE] = ACTIONS(4146), - [anon_sym_AMP_AMP] = ACTIONS(4159), - [anon_sym_PIPE] = ACTIONS(4154), - [anon_sym_CARET] = ACTIONS(4154), - [anon_sym_AMP] = ACTIONS(4156), - [anon_sym_EQ_EQ] = ACTIONS(4146), - [anon_sym_BANG_EQ] = ACTIONS(4146), - [anon_sym_GT] = ACTIONS(4154), - [anon_sym_GT_EQ] = ACTIONS(4146), - [anon_sym_LT_EQ] = ACTIONS(4154), - [anon_sym_LT] = ACTIONS(4162), - [anon_sym_LT_LT] = ACTIONS(4154), - [anon_sym_GT_GT] = ACTIONS(4154), - [anon_sym_SEMI] = ACTIONS(4159), - [anon_sym___extension__] = ACTIONS(4144), - [anon_sym_virtual] = ACTIONS(4144), - [anon_sym_extern] = ACTIONS(4144), - [anon_sym___attribute__] = ACTIONS(4144), - [anon_sym___attribute] = ACTIONS(4144), - [anon_sym_COLON] = ACTIONS(4222), - [anon_sym_COLON_COLON] = ACTIONS(4167), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4169), - [anon_sym___declspec] = ACTIONS(4144), - [anon_sym___based] = ACTIONS(4144), - [anon_sym___cdecl] = ACTIONS(4144), - [anon_sym___clrcall] = ACTIONS(4144), - [anon_sym___stdcall] = ACTIONS(4144), - [anon_sym___fastcall] = ACTIONS(4144), - [anon_sym___thiscall] = ACTIONS(4144), - [anon_sym___vectorcall] = ACTIONS(4144), - [anon_sym_LBRACE] = ACTIONS(4172), - [anon_sym_signed] = ACTIONS(4174), - [anon_sym_unsigned] = ACTIONS(4174), - [anon_sym_long] = ACTIONS(4174), - [anon_sym_short] = ACTIONS(4174), - [anon_sym_LBRACK] = ACTIONS(4176), - [anon_sym_static] = ACTIONS(4144), - [anon_sym_EQ] = ACTIONS(4180), - [anon_sym_register] = ACTIONS(4144), - [anon_sym_inline] = ACTIONS(4144), - [anon_sym___inline] = ACTIONS(4144), - [anon_sym___inline__] = ACTIONS(4144), - [anon_sym___forceinline] = ACTIONS(4144), - [anon_sym_thread_local] = ACTIONS(4144), - [anon_sym___thread] = ACTIONS(4144), - [anon_sym_const] = ACTIONS(4144), - [anon_sym_constexpr] = ACTIONS(4144), - [anon_sym_volatile] = ACTIONS(4144), - [anon_sym_restrict] = ACTIONS(4144), - [anon_sym___restrict__] = ACTIONS(4144), - [anon_sym__Atomic] = ACTIONS(4144), - [anon_sym__Noreturn] = ACTIONS(4144), - [anon_sym_noreturn] = ACTIONS(4144), - [anon_sym__Nonnull] = ACTIONS(4144), - [anon_sym_mutable] = ACTIONS(4144), - [anon_sym_constinit] = ACTIONS(4144), - [anon_sym_consteval] = ACTIONS(4144), - [anon_sym_alignas] = ACTIONS(4144), - [anon_sym__Alignas] = ACTIONS(4144), - [anon_sym_QMARK] = ACTIONS(4146), - [anon_sym_STAR_EQ] = ACTIONS(4182), - [anon_sym_SLASH_EQ] = ACTIONS(4182), - [anon_sym_PERCENT_EQ] = ACTIONS(4182), - [anon_sym_PLUS_EQ] = ACTIONS(4182), - [anon_sym_DASH_EQ] = ACTIONS(4182), - [anon_sym_LT_LT_EQ] = ACTIONS(4182), - [anon_sym_GT_GT_EQ] = ACTIONS(4182), - [anon_sym_AMP_EQ] = ACTIONS(4182), - [anon_sym_CARET_EQ] = ACTIONS(4182), - [anon_sym_PIPE_EQ] = ACTIONS(4182), - [anon_sym_and_eq] = ACTIONS(4180), - [anon_sym_or_eq] = ACTIONS(4180), - [anon_sym_xor_eq] = ACTIONS(4180), - [anon_sym_LT_EQ_GT] = ACTIONS(4146), - [anon_sym_or] = ACTIONS(4154), - [anon_sym_and] = ACTIONS(4154), - [anon_sym_bitor] = ACTIONS(4154), - [anon_sym_xor] = ACTIONS(4154), - [anon_sym_bitand] = ACTIONS(4154), - [anon_sym_not_eq] = ACTIONS(4154), - [anon_sym_DASH_DASH] = ACTIONS(4146), - [anon_sym_PLUS_PLUS] = ACTIONS(4146), - [anon_sym_DOT] = ACTIONS(4154), - [anon_sym_DOT_STAR] = ACTIONS(4146), - [anon_sym_DASH_GT] = ACTIONS(4146), - [anon_sym_L_DQUOTE] = ACTIONS(3623), - [anon_sym_u_DQUOTE] = ACTIONS(3623), - [anon_sym_U_DQUOTE] = ACTIONS(3623), - [anon_sym_u8_DQUOTE] = ACTIONS(3623), - [anon_sym_DQUOTE] = ACTIONS(3623), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4144), - [anon_sym_decltype] = ACTIONS(4144), - [anon_sym_template] = ACTIONS(4144), - [anon_sym_operator] = ACTIONS(4144), - [anon_sym_R_DQUOTE] = ACTIONS(3627), - [anon_sym_LR_DQUOTE] = ACTIONS(3627), - [anon_sym_uR_DQUOTE] = ACTIONS(3627), - [anon_sym_UR_DQUOTE] = ACTIONS(3627), - [anon_sym_u8R_DQUOTE] = ACTIONS(3627), - }, - [877] = { - [sym_expression] = STATE(4533), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3678), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3678), - [sym_call_expression] = STATE(3678), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3678), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3678), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3678), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3678), - [sym_identifier] = ACTIONS(4224), - [anon_sym_LPAREN2] = ACTIONS(4227), - [anon_sym_BANG] = ACTIONS(4230), - [anon_sym_TILDE] = ACTIONS(4230), - [anon_sym_DASH] = ACTIONS(4233), - [anon_sym_PLUS] = ACTIONS(4233), - [anon_sym_STAR] = ACTIONS(2560), - [anon_sym_AMP] = ACTIONS(2560), - [anon_sym___extension__] = ACTIONS(4236), - [anon_sym_COLON_COLON] = ACTIONS(4239), - [anon_sym_LBRACK] = ACTIONS(4199), - [anon_sym_static] = ACTIONS(2573), - [anon_sym_RBRACK] = ACTIONS(2563), - [anon_sym_const] = ACTIONS(2573), - [anon_sym_constexpr] = ACTIONS(2573), - [anon_sym_volatile] = ACTIONS(2573), - [anon_sym_restrict] = ACTIONS(2573), - [anon_sym___restrict__] = ACTIONS(2573), - [anon_sym__Atomic] = ACTIONS(2573), - [anon_sym__Noreturn] = ACTIONS(2573), - [anon_sym_noreturn] = ACTIONS(2573), - [anon_sym__Nonnull] = ACTIONS(2573), - [anon_sym_mutable] = ACTIONS(2573), - [anon_sym_constinit] = ACTIONS(2573), - [anon_sym_consteval] = ACTIONS(2573), - [anon_sym_alignas] = ACTIONS(2573), - [anon_sym__Alignas] = ACTIONS(2573), - [sym_primitive_type] = ACTIONS(2581), - [anon_sym_not] = ACTIONS(4233), - [anon_sym_compl] = ACTIONS(4233), - [anon_sym_DASH_DASH] = ACTIONS(4242), - [anon_sym_PLUS_PLUS] = ACTIONS(4242), - [anon_sym_sizeof] = ACTIONS(4245), - [anon_sym___alignof__] = ACTIONS(4248), - [anon_sym___alignof] = ACTIONS(4248), - [anon_sym__alignof] = ACTIONS(4248), - [anon_sym_alignof] = ACTIONS(4248), - [anon_sym__Alignof] = ACTIONS(4248), - [anon_sym_offsetof] = ACTIONS(4251), - [anon_sym__Generic] = ACTIONS(4254), - [anon_sym_asm] = ACTIONS(4257), - [anon_sym___asm__] = ACTIONS(4257), - [anon_sym___asm] = ACTIONS(4257), - [sym_number_literal] = ACTIONS(4260), - [anon_sym_L_SQUOTE] = ACTIONS(4263), - [anon_sym_u_SQUOTE] = ACTIONS(4263), - [anon_sym_U_SQUOTE] = ACTIONS(4263), - [anon_sym_u8_SQUOTE] = ACTIONS(4263), - [anon_sym_SQUOTE] = ACTIONS(4263), - [anon_sym_L_DQUOTE] = ACTIONS(4266), - [anon_sym_u_DQUOTE] = ACTIONS(4266), - [anon_sym_U_DQUOTE] = ACTIONS(4266), - [anon_sym_u8_DQUOTE] = ACTIONS(4266), - [anon_sym_DQUOTE] = ACTIONS(4266), - [sym_true] = ACTIONS(4269), - [sym_false] = ACTIONS(4269), - [anon_sym_NULL] = ACTIONS(4272), - [anon_sym_nullptr] = ACTIONS(4272), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2584), - [anon_sym_template] = ACTIONS(2587), - [anon_sym_delete] = ACTIONS(4275), - [anon_sym_R_DQUOTE] = ACTIONS(4278), - [anon_sym_LR_DQUOTE] = ACTIONS(4278), - [anon_sym_uR_DQUOTE] = ACTIONS(4278), - [anon_sym_UR_DQUOTE] = ACTIONS(4278), - [anon_sym_u8R_DQUOTE] = ACTIONS(4278), - [anon_sym_co_await] = ACTIONS(4281), - [anon_sym_new] = ACTIONS(4284), - [anon_sym_requires] = ACTIONS(4287), - [sym_this] = ACTIONS(4269), - }, - [878] = { - [sym_identifier] = ACTIONS(1936), - [anon_sym_LPAREN2] = ACTIONS(1934), - [anon_sym_BANG] = ACTIONS(1934), - [anon_sym_TILDE] = ACTIONS(1934), - [anon_sym_DASH] = ACTIONS(1936), - [anon_sym_PLUS] = ACTIONS(1936), - [anon_sym_STAR] = ACTIONS(1934), - [anon_sym_AMP] = ACTIONS(1934), - [anon_sym_SEMI] = ACTIONS(1934), - [anon_sym___extension__] = ACTIONS(1936), - [anon_sym_typedef] = ACTIONS(1936), - [anon_sym_virtual] = ACTIONS(1936), - [anon_sym_extern] = ACTIONS(1936), - [anon_sym___attribute__] = ACTIONS(1936), - [anon_sym___attribute] = ACTIONS(1936), - [anon_sym_COLON_COLON] = ACTIONS(1934), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1934), - [anon_sym___declspec] = ACTIONS(1936), - [anon_sym_LBRACE] = ACTIONS(1934), - [anon_sym_signed] = ACTIONS(1936), - [anon_sym_unsigned] = ACTIONS(1936), - [anon_sym_long] = ACTIONS(1936), - [anon_sym_short] = ACTIONS(1936), - [anon_sym_LBRACK] = ACTIONS(1936), - [anon_sym_static] = ACTIONS(1936), - [anon_sym_register] = ACTIONS(1936), - [anon_sym_inline] = ACTIONS(1936), - [anon_sym___inline] = ACTIONS(1936), - [anon_sym___inline__] = ACTIONS(1936), - [anon_sym___forceinline] = ACTIONS(1936), - [anon_sym_thread_local] = ACTIONS(1936), - [anon_sym___thread] = ACTIONS(1936), - [anon_sym_const] = ACTIONS(1936), - [anon_sym_constexpr] = ACTIONS(1936), - [anon_sym_volatile] = ACTIONS(1936), - [anon_sym_restrict] = ACTIONS(1936), - [anon_sym___restrict__] = ACTIONS(1936), - [anon_sym__Atomic] = ACTIONS(1936), - [anon_sym__Noreturn] = ACTIONS(1936), - [anon_sym_noreturn] = ACTIONS(1936), - [anon_sym__Nonnull] = ACTIONS(1936), - [anon_sym_mutable] = ACTIONS(1936), - [anon_sym_constinit] = ACTIONS(1936), - [anon_sym_consteval] = ACTIONS(1936), - [anon_sym_alignas] = ACTIONS(1936), - [anon_sym__Alignas] = ACTIONS(1936), - [sym_primitive_type] = ACTIONS(1936), - [anon_sym_enum] = ACTIONS(1936), - [anon_sym_class] = ACTIONS(1936), - [anon_sym_struct] = ACTIONS(1936), - [anon_sym_union] = ACTIONS(1936), - [anon_sym_if] = ACTIONS(1936), - [anon_sym_else] = ACTIONS(1936), - [anon_sym_switch] = ACTIONS(1936), - [anon_sym_while] = ACTIONS(1936), - [anon_sym_do] = ACTIONS(1936), - [anon_sym_for] = ACTIONS(1936), - [anon_sym_return] = ACTIONS(1936), - [anon_sym_break] = ACTIONS(1936), - [anon_sym_continue] = ACTIONS(1936), - [anon_sym_goto] = ACTIONS(1936), - [anon_sym___try] = ACTIONS(1936), - [anon_sym___leave] = ACTIONS(1936), - [anon_sym_not] = ACTIONS(1936), - [anon_sym_compl] = ACTIONS(1936), - [anon_sym_DASH_DASH] = ACTIONS(1934), - [anon_sym_PLUS_PLUS] = ACTIONS(1934), - [anon_sym_sizeof] = ACTIONS(1936), - [anon_sym___alignof__] = ACTIONS(1936), - [anon_sym___alignof] = ACTIONS(1936), - [anon_sym__alignof] = ACTIONS(1936), - [anon_sym_alignof] = ACTIONS(1936), - [anon_sym__Alignof] = ACTIONS(1936), - [anon_sym_offsetof] = ACTIONS(1936), - [anon_sym__Generic] = ACTIONS(1936), - [anon_sym_asm] = ACTIONS(1936), - [anon_sym___asm__] = ACTIONS(1936), - [anon_sym___asm] = ACTIONS(1936), - [sym_number_literal] = ACTIONS(1934), - [anon_sym_L_SQUOTE] = ACTIONS(1934), - [anon_sym_u_SQUOTE] = ACTIONS(1934), - [anon_sym_U_SQUOTE] = ACTIONS(1934), - [anon_sym_u8_SQUOTE] = ACTIONS(1934), - [anon_sym_SQUOTE] = ACTIONS(1934), - [anon_sym_L_DQUOTE] = ACTIONS(1934), - [anon_sym_u_DQUOTE] = ACTIONS(1934), - [anon_sym_U_DQUOTE] = ACTIONS(1934), - [anon_sym_u8_DQUOTE] = ACTIONS(1934), - [anon_sym_DQUOTE] = ACTIONS(1934), - [sym_true] = ACTIONS(1936), - [sym_false] = ACTIONS(1936), - [anon_sym_NULL] = ACTIONS(1936), - [anon_sym_nullptr] = ACTIONS(1936), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1936), - [anon_sym_decltype] = ACTIONS(1936), - [anon_sym_typename] = ACTIONS(1936), - [anon_sym_template] = ACTIONS(1936), - [anon_sym_try] = ACTIONS(1936), - [anon_sym_delete] = ACTIONS(1936), - [anon_sym_throw] = ACTIONS(1936), - [anon_sym_co_return] = ACTIONS(1936), - [anon_sym_co_yield] = ACTIONS(1936), - [anon_sym_catch] = ACTIONS(1936), - [anon_sym_R_DQUOTE] = ACTIONS(1934), - [anon_sym_LR_DQUOTE] = ACTIONS(1934), - [anon_sym_uR_DQUOTE] = ACTIONS(1934), - [anon_sym_UR_DQUOTE] = ACTIONS(1934), - [anon_sym_u8R_DQUOTE] = ACTIONS(1934), - [anon_sym_co_await] = ACTIONS(1936), - [anon_sym_new] = ACTIONS(1936), - [anon_sym_requires] = ACTIONS(1936), - [sym_this] = ACTIONS(1936), - }, - [879] = { - [sym_string_literal] = STATE(2624), - [sym_template_argument_list] = STATE(1604), - [sym_raw_string_literal] = STATE(2624), - [aux_sym_sized_type_specifier_repeat1] = STATE(2641), - [sym_identifier] = ACTIONS(4144), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4146), - [anon_sym_LPAREN2] = ACTIONS(4148), - [anon_sym_TILDE] = ACTIONS(4152), - [anon_sym_DASH] = ACTIONS(4154), - [anon_sym_PLUS] = ACTIONS(4154), - [anon_sym_STAR] = ACTIONS(4156), - [anon_sym_SLASH] = ACTIONS(4154), - [anon_sym_PERCENT] = ACTIONS(4154), - [anon_sym_PIPE_PIPE] = ACTIONS(4146), - [anon_sym_AMP_AMP] = ACTIONS(4159), - [anon_sym_PIPE] = ACTIONS(4154), - [anon_sym_CARET] = ACTIONS(4154), - [anon_sym_AMP] = ACTIONS(4156), - [anon_sym_EQ_EQ] = ACTIONS(4146), - [anon_sym_BANG_EQ] = ACTIONS(4146), - [anon_sym_GT] = ACTIONS(4154), - [anon_sym_GT_EQ] = ACTIONS(4146), - [anon_sym_LT_EQ] = ACTIONS(4154), - [anon_sym_LT] = ACTIONS(4162), - [anon_sym_LT_LT] = ACTIONS(4154), - [anon_sym_GT_GT] = ACTIONS(4154), - [anon_sym_SEMI] = ACTIONS(4290), - [anon_sym___extension__] = ACTIONS(4144), - [anon_sym_virtual] = ACTIONS(4144), - [anon_sym_extern] = ACTIONS(4144), - [anon_sym___attribute__] = ACTIONS(4144), - [anon_sym___attribute] = ACTIONS(4144), - [anon_sym_COLON] = ACTIONS(4218), - [anon_sym_COLON_COLON] = ACTIONS(4167), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4169), - [anon_sym___declspec] = ACTIONS(4144), - [anon_sym___based] = ACTIONS(4144), - [anon_sym___cdecl] = ACTIONS(4144), - [anon_sym___clrcall] = ACTIONS(4144), - [anon_sym___stdcall] = ACTIONS(4144), - [anon_sym___fastcall] = ACTIONS(4144), - [anon_sym___thiscall] = ACTIONS(4144), - [anon_sym___vectorcall] = ACTIONS(4144), - [anon_sym_LBRACE] = ACTIONS(4172), - [anon_sym_signed] = ACTIONS(4174), - [anon_sym_unsigned] = ACTIONS(4174), - [anon_sym_long] = ACTIONS(4174), - [anon_sym_short] = ACTIONS(4174), - [anon_sym_LBRACK] = ACTIONS(4176), - [anon_sym_static] = ACTIONS(4144), - [anon_sym_EQ] = ACTIONS(4180), - [anon_sym_register] = ACTIONS(4144), - [anon_sym_inline] = ACTIONS(4144), - [anon_sym___inline] = ACTIONS(4144), - [anon_sym___inline__] = ACTIONS(4144), - [anon_sym___forceinline] = ACTIONS(4144), - [anon_sym_thread_local] = ACTIONS(4144), - [anon_sym___thread] = ACTIONS(4144), - [anon_sym_const] = ACTIONS(4144), - [anon_sym_constexpr] = ACTIONS(4144), - [anon_sym_volatile] = ACTIONS(4144), - [anon_sym_restrict] = ACTIONS(4144), - [anon_sym___restrict__] = ACTIONS(4144), - [anon_sym__Atomic] = ACTIONS(4144), - [anon_sym__Noreturn] = ACTIONS(4144), - [anon_sym_noreturn] = ACTIONS(4144), - [anon_sym__Nonnull] = ACTIONS(4144), - [anon_sym_mutable] = ACTIONS(4144), - [anon_sym_constinit] = ACTIONS(4144), - [anon_sym_consteval] = ACTIONS(4144), - [anon_sym_alignas] = ACTIONS(4144), - [anon_sym__Alignas] = ACTIONS(4144), - [anon_sym_QMARK] = ACTIONS(4146), - [anon_sym_STAR_EQ] = ACTIONS(4182), - [anon_sym_SLASH_EQ] = ACTIONS(4182), - [anon_sym_PERCENT_EQ] = ACTIONS(4182), - [anon_sym_PLUS_EQ] = ACTIONS(4182), - [anon_sym_DASH_EQ] = ACTIONS(4182), - [anon_sym_LT_LT_EQ] = ACTIONS(4182), - [anon_sym_GT_GT_EQ] = ACTIONS(4182), - [anon_sym_AMP_EQ] = ACTIONS(4182), - [anon_sym_CARET_EQ] = ACTIONS(4182), - [anon_sym_PIPE_EQ] = ACTIONS(4182), - [anon_sym_and_eq] = ACTIONS(4180), - [anon_sym_or_eq] = ACTIONS(4180), - [anon_sym_xor_eq] = ACTIONS(4180), - [anon_sym_LT_EQ_GT] = ACTIONS(4146), - [anon_sym_or] = ACTIONS(4154), - [anon_sym_and] = ACTIONS(4154), - [anon_sym_bitor] = ACTIONS(4154), - [anon_sym_xor] = ACTIONS(4154), - [anon_sym_bitand] = ACTIONS(4154), - [anon_sym_not_eq] = ACTIONS(4154), - [anon_sym_DASH_DASH] = ACTIONS(4146), - [anon_sym_PLUS_PLUS] = ACTIONS(4146), - [anon_sym_DOT] = ACTIONS(4154), - [anon_sym_DOT_STAR] = ACTIONS(4146), - [anon_sym_DASH_GT] = ACTIONS(4146), - [anon_sym_L_DQUOTE] = ACTIONS(3623), - [anon_sym_u_DQUOTE] = ACTIONS(3623), - [anon_sym_U_DQUOTE] = ACTIONS(3623), - [anon_sym_u8_DQUOTE] = ACTIONS(3623), - [anon_sym_DQUOTE] = ACTIONS(3623), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4144), - [anon_sym_decltype] = ACTIONS(4144), - [anon_sym_template] = ACTIONS(4144), - [anon_sym_operator] = ACTIONS(4144), - [anon_sym_R_DQUOTE] = ACTIONS(3627), - [anon_sym_LR_DQUOTE] = ACTIONS(3627), - [anon_sym_uR_DQUOTE] = ACTIONS(3627), - [anon_sym_UR_DQUOTE] = ACTIONS(3627), - [anon_sym_u8R_DQUOTE] = ACTIONS(3627), - }, - [880] = { - [sym_identifier] = ACTIONS(3951), - [anon_sym_LPAREN2] = ACTIONS(3953), - [anon_sym_BANG] = ACTIONS(3953), - [anon_sym_TILDE] = ACTIONS(3953), - [anon_sym_DASH] = ACTIONS(3951), - [anon_sym_PLUS] = ACTIONS(3951), - [anon_sym_STAR] = ACTIONS(3953), - [anon_sym_AMP] = ACTIONS(3953), - [anon_sym_SEMI] = ACTIONS(3953), - [anon_sym___extension__] = ACTIONS(3951), - [anon_sym_virtual] = ACTIONS(3951), - [anon_sym_extern] = ACTIONS(3951), - [anon_sym___attribute__] = ACTIONS(3951), - [anon_sym___attribute] = ACTIONS(3951), - [anon_sym_using] = ACTIONS(3951), - [anon_sym_COLON_COLON] = ACTIONS(3953), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3953), - [anon_sym___declspec] = ACTIONS(3951), - [anon_sym_LBRACE] = ACTIONS(3953), - [anon_sym_signed] = ACTIONS(3951), - [anon_sym_unsigned] = ACTIONS(3951), - [anon_sym_long] = ACTIONS(3951), - [anon_sym_short] = ACTIONS(3951), - [anon_sym_LBRACK] = ACTIONS(3951), - [anon_sym_static] = ACTIONS(3951), - [anon_sym_register] = ACTIONS(3951), - [anon_sym_inline] = ACTIONS(3951), - [anon_sym___inline] = ACTIONS(3951), - [anon_sym___inline__] = ACTIONS(3951), - [anon_sym___forceinline] = ACTIONS(3951), - [anon_sym_thread_local] = ACTIONS(3951), - [anon_sym___thread] = ACTIONS(3951), - [anon_sym_const] = ACTIONS(3951), - [anon_sym_constexpr] = ACTIONS(3951), - [anon_sym_volatile] = ACTIONS(3951), - [anon_sym_restrict] = ACTIONS(3951), - [anon_sym___restrict__] = ACTIONS(3951), - [anon_sym__Atomic] = ACTIONS(3951), - [anon_sym__Noreturn] = ACTIONS(3951), - [anon_sym_noreturn] = ACTIONS(3951), - [anon_sym__Nonnull] = ACTIONS(3951), - [anon_sym_mutable] = ACTIONS(3951), - [anon_sym_constinit] = ACTIONS(3951), - [anon_sym_consteval] = ACTIONS(3951), - [anon_sym_alignas] = ACTIONS(3951), - [anon_sym__Alignas] = ACTIONS(3951), - [sym_primitive_type] = ACTIONS(3951), - [anon_sym_enum] = ACTIONS(3951), - [anon_sym_class] = ACTIONS(3951), - [anon_sym_struct] = ACTIONS(3951), - [anon_sym_union] = ACTIONS(3951), - [anon_sym_if] = ACTIONS(3951), - [anon_sym_switch] = ACTIONS(3951), - [anon_sym_case] = ACTIONS(3951), - [anon_sym_default] = ACTIONS(3951), - [anon_sym_while] = ACTIONS(3951), - [anon_sym_do] = ACTIONS(3951), - [anon_sym_for] = ACTIONS(3951), - [anon_sym_return] = ACTIONS(3951), - [anon_sym_break] = ACTIONS(3951), - [anon_sym_continue] = ACTIONS(3951), - [anon_sym_goto] = ACTIONS(3951), - [anon_sym___try] = ACTIONS(3951), - [anon_sym___leave] = ACTIONS(3951), - [anon_sym_not] = ACTIONS(3951), - [anon_sym_compl] = ACTIONS(3951), - [anon_sym_DASH_DASH] = ACTIONS(3953), - [anon_sym_PLUS_PLUS] = ACTIONS(3953), - [anon_sym_sizeof] = ACTIONS(3951), - [anon_sym___alignof__] = ACTIONS(3951), - [anon_sym___alignof] = ACTIONS(3951), - [anon_sym__alignof] = ACTIONS(3951), - [anon_sym_alignof] = ACTIONS(3951), - [anon_sym__Alignof] = ACTIONS(3951), - [anon_sym_offsetof] = ACTIONS(3951), - [anon_sym__Generic] = ACTIONS(3951), - [anon_sym_asm] = ACTIONS(3951), - [anon_sym___asm__] = ACTIONS(3951), - [anon_sym___asm] = ACTIONS(3951), - [sym_number_literal] = ACTIONS(3953), - [anon_sym_L_SQUOTE] = ACTIONS(3953), - [anon_sym_u_SQUOTE] = ACTIONS(3953), - [anon_sym_U_SQUOTE] = ACTIONS(3953), - [anon_sym_u8_SQUOTE] = ACTIONS(3953), - [anon_sym_SQUOTE] = ACTIONS(3953), - [anon_sym_L_DQUOTE] = ACTIONS(3953), - [anon_sym_u_DQUOTE] = ACTIONS(3953), - [anon_sym_U_DQUOTE] = ACTIONS(3953), - [anon_sym_u8_DQUOTE] = ACTIONS(3953), - [anon_sym_DQUOTE] = ACTIONS(3953), - [sym_true] = ACTIONS(3951), - [sym_false] = ACTIONS(3951), - [anon_sym_NULL] = ACTIONS(3951), - [anon_sym_nullptr] = ACTIONS(3951), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3951), - [anon_sym_decltype] = ACTIONS(3951), - [anon_sym_typename] = ACTIONS(3951), - [anon_sym_template] = ACTIONS(3951), - [anon_sym_try] = ACTIONS(3951), - [anon_sym_delete] = ACTIONS(3951), - [anon_sym_throw] = ACTIONS(3951), - [anon_sym_co_return] = ACTIONS(3951), - [anon_sym_co_yield] = ACTIONS(3951), - [anon_sym_R_DQUOTE] = ACTIONS(3953), - [anon_sym_LR_DQUOTE] = ACTIONS(3953), - [anon_sym_uR_DQUOTE] = ACTIONS(3953), - [anon_sym_UR_DQUOTE] = ACTIONS(3953), - [anon_sym_u8R_DQUOTE] = ACTIONS(3953), - [anon_sym_co_await] = ACTIONS(3951), - [anon_sym_new] = ACTIONS(3951), - [anon_sym_requires] = ACTIONS(3951), - [sym_this] = ACTIONS(3951), - }, - [881] = { - [sym_identifier] = ACTIONS(3947), - [anon_sym_LPAREN2] = ACTIONS(3949), - [anon_sym_BANG] = ACTIONS(3949), - [anon_sym_TILDE] = ACTIONS(3949), - [anon_sym_DASH] = ACTIONS(3947), - [anon_sym_PLUS] = ACTIONS(3947), - [anon_sym_STAR] = ACTIONS(3949), - [anon_sym_AMP] = ACTIONS(3949), - [anon_sym_SEMI] = ACTIONS(3949), - [anon_sym___extension__] = ACTIONS(3947), - [anon_sym_virtual] = ACTIONS(3947), - [anon_sym_extern] = ACTIONS(3947), - [anon_sym___attribute__] = ACTIONS(3947), - [anon_sym___attribute] = ACTIONS(3947), - [anon_sym_using] = ACTIONS(3947), - [anon_sym_COLON_COLON] = ACTIONS(3949), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3949), - [anon_sym___declspec] = ACTIONS(3947), - [anon_sym_LBRACE] = ACTIONS(3949), - [anon_sym_signed] = ACTIONS(3947), - [anon_sym_unsigned] = ACTIONS(3947), - [anon_sym_long] = ACTIONS(3947), - [anon_sym_short] = ACTIONS(3947), - [anon_sym_LBRACK] = ACTIONS(3947), - [anon_sym_static] = ACTIONS(3947), - [anon_sym_register] = ACTIONS(3947), - [anon_sym_inline] = ACTIONS(3947), - [anon_sym___inline] = ACTIONS(3947), - [anon_sym___inline__] = ACTIONS(3947), - [anon_sym___forceinline] = ACTIONS(3947), - [anon_sym_thread_local] = ACTIONS(3947), - [anon_sym___thread] = ACTIONS(3947), - [anon_sym_const] = ACTIONS(3947), - [anon_sym_constexpr] = ACTIONS(3947), - [anon_sym_volatile] = ACTIONS(3947), - [anon_sym_restrict] = ACTIONS(3947), - [anon_sym___restrict__] = ACTIONS(3947), - [anon_sym__Atomic] = ACTIONS(3947), - [anon_sym__Noreturn] = ACTIONS(3947), - [anon_sym_noreturn] = ACTIONS(3947), - [anon_sym__Nonnull] = ACTIONS(3947), - [anon_sym_mutable] = ACTIONS(3947), - [anon_sym_constinit] = ACTIONS(3947), - [anon_sym_consteval] = ACTIONS(3947), - [anon_sym_alignas] = ACTIONS(3947), - [anon_sym__Alignas] = ACTIONS(3947), - [sym_primitive_type] = ACTIONS(3947), - [anon_sym_enum] = ACTIONS(3947), - [anon_sym_class] = ACTIONS(3947), - [anon_sym_struct] = ACTIONS(3947), - [anon_sym_union] = ACTIONS(3947), - [anon_sym_if] = ACTIONS(3947), - [anon_sym_switch] = ACTIONS(3947), - [anon_sym_case] = ACTIONS(3947), - [anon_sym_default] = ACTIONS(3947), - [anon_sym_while] = ACTIONS(3947), - [anon_sym_do] = ACTIONS(3947), - [anon_sym_for] = ACTIONS(3947), - [anon_sym_return] = ACTIONS(3947), - [anon_sym_break] = ACTIONS(3947), - [anon_sym_continue] = ACTIONS(3947), - [anon_sym_goto] = ACTIONS(3947), - [anon_sym___try] = ACTIONS(3947), - [anon_sym___leave] = ACTIONS(3947), - [anon_sym_not] = ACTIONS(3947), - [anon_sym_compl] = ACTIONS(3947), - [anon_sym_DASH_DASH] = ACTIONS(3949), - [anon_sym_PLUS_PLUS] = ACTIONS(3949), - [anon_sym_sizeof] = ACTIONS(3947), - [anon_sym___alignof__] = ACTIONS(3947), - [anon_sym___alignof] = ACTIONS(3947), - [anon_sym__alignof] = ACTIONS(3947), - [anon_sym_alignof] = ACTIONS(3947), - [anon_sym__Alignof] = ACTIONS(3947), - [anon_sym_offsetof] = ACTIONS(3947), - [anon_sym__Generic] = ACTIONS(3947), - [anon_sym_asm] = ACTIONS(3947), - [anon_sym___asm__] = ACTIONS(3947), - [anon_sym___asm] = ACTIONS(3947), - [sym_number_literal] = ACTIONS(3949), - [anon_sym_L_SQUOTE] = ACTIONS(3949), - [anon_sym_u_SQUOTE] = ACTIONS(3949), - [anon_sym_U_SQUOTE] = ACTIONS(3949), - [anon_sym_u8_SQUOTE] = ACTIONS(3949), - [anon_sym_SQUOTE] = ACTIONS(3949), - [anon_sym_L_DQUOTE] = ACTIONS(3949), - [anon_sym_u_DQUOTE] = ACTIONS(3949), - [anon_sym_U_DQUOTE] = ACTIONS(3949), - [anon_sym_u8_DQUOTE] = ACTIONS(3949), - [anon_sym_DQUOTE] = ACTIONS(3949), - [sym_true] = ACTIONS(3947), - [sym_false] = ACTIONS(3947), - [anon_sym_NULL] = ACTIONS(3947), - [anon_sym_nullptr] = ACTIONS(3947), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3947), - [anon_sym_decltype] = ACTIONS(3947), - [anon_sym_typename] = ACTIONS(3947), - [anon_sym_template] = ACTIONS(3947), - [anon_sym_try] = ACTIONS(3947), - [anon_sym_delete] = ACTIONS(3947), - [anon_sym_throw] = ACTIONS(3947), - [anon_sym_co_return] = ACTIONS(3947), - [anon_sym_co_yield] = ACTIONS(3947), - [anon_sym_R_DQUOTE] = ACTIONS(3949), - [anon_sym_LR_DQUOTE] = ACTIONS(3949), - [anon_sym_uR_DQUOTE] = ACTIONS(3949), - [anon_sym_UR_DQUOTE] = ACTIONS(3949), - [anon_sym_u8R_DQUOTE] = ACTIONS(3949), - [anon_sym_co_await] = ACTIONS(3947), - [anon_sym_new] = ACTIONS(3947), - [anon_sym_requires] = ACTIONS(3947), - [sym_this] = ACTIONS(3947), - }, - [882] = { - [sym_identifier] = ACTIONS(2619), - [anon_sym_LPAREN2] = ACTIONS(2621), - [anon_sym_BANG] = ACTIONS(2621), - [anon_sym_TILDE] = ACTIONS(2621), - [anon_sym_DASH] = ACTIONS(2619), - [anon_sym_PLUS] = ACTIONS(2619), - [anon_sym_STAR] = ACTIONS(2621), - [anon_sym_AMP] = ACTIONS(2621), - [anon_sym_SEMI] = ACTIONS(2621), - [anon_sym___extension__] = ACTIONS(2619), - [anon_sym_typedef] = ACTIONS(2619), - [anon_sym_virtual] = ACTIONS(2619), - [anon_sym_extern] = ACTIONS(2619), - [anon_sym___attribute__] = ACTIONS(2619), - [anon_sym___attribute] = ACTIONS(2619), - [anon_sym_COLON_COLON] = ACTIONS(2621), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2621), - [anon_sym___declspec] = ACTIONS(2619), - [anon_sym_LBRACE] = ACTIONS(2621), - [anon_sym_signed] = ACTIONS(2619), - [anon_sym_unsigned] = ACTIONS(2619), - [anon_sym_long] = ACTIONS(2619), - [anon_sym_short] = ACTIONS(2619), - [anon_sym_LBRACK] = ACTIONS(2619), - [anon_sym_static] = ACTIONS(2619), - [anon_sym_register] = ACTIONS(2619), - [anon_sym_inline] = ACTIONS(2619), - [anon_sym___inline] = ACTIONS(2619), - [anon_sym___inline__] = ACTIONS(2619), - [anon_sym___forceinline] = ACTIONS(2619), - [anon_sym_thread_local] = ACTIONS(2619), - [anon_sym___thread] = ACTIONS(2619), - [anon_sym_const] = ACTIONS(2619), - [anon_sym_constexpr] = ACTIONS(2619), - [anon_sym_volatile] = ACTIONS(2619), - [anon_sym_restrict] = ACTIONS(2619), - [anon_sym___restrict__] = ACTIONS(2619), - [anon_sym__Atomic] = ACTIONS(2619), - [anon_sym__Noreturn] = ACTIONS(2619), - [anon_sym_noreturn] = ACTIONS(2619), - [anon_sym__Nonnull] = ACTIONS(2619), - [anon_sym_mutable] = ACTIONS(2619), - [anon_sym_constinit] = ACTIONS(2619), - [anon_sym_consteval] = ACTIONS(2619), - [anon_sym_alignas] = ACTIONS(2619), - [anon_sym__Alignas] = ACTIONS(2619), - [sym_primitive_type] = ACTIONS(2619), - [anon_sym_enum] = ACTIONS(2619), - [anon_sym_class] = ACTIONS(2619), - [anon_sym_struct] = ACTIONS(2619), - [anon_sym_union] = ACTIONS(2619), - [anon_sym_if] = ACTIONS(2619), - [anon_sym_else] = ACTIONS(2619), - [anon_sym_switch] = ACTIONS(2619), - [anon_sym_while] = ACTIONS(2619), - [anon_sym_do] = ACTIONS(2619), - [anon_sym_for] = ACTIONS(2619), - [anon_sym_return] = ACTIONS(2619), - [anon_sym_break] = ACTIONS(2619), - [anon_sym_continue] = ACTIONS(2619), - [anon_sym_goto] = ACTIONS(2619), - [anon_sym___try] = ACTIONS(2619), - [anon_sym___leave] = ACTIONS(2619), - [anon_sym_not] = ACTIONS(2619), - [anon_sym_compl] = ACTIONS(2619), - [anon_sym_DASH_DASH] = ACTIONS(2621), - [anon_sym_PLUS_PLUS] = ACTIONS(2621), - [anon_sym_sizeof] = ACTIONS(2619), - [anon_sym___alignof__] = ACTIONS(2619), - [anon_sym___alignof] = ACTIONS(2619), - [anon_sym__alignof] = ACTIONS(2619), - [anon_sym_alignof] = ACTIONS(2619), - [anon_sym__Alignof] = ACTIONS(2619), - [anon_sym_offsetof] = ACTIONS(2619), - [anon_sym__Generic] = ACTIONS(2619), - [anon_sym_asm] = ACTIONS(2619), - [anon_sym___asm__] = ACTIONS(2619), - [anon_sym___asm] = ACTIONS(2619), - [sym_number_literal] = ACTIONS(2621), - [anon_sym_L_SQUOTE] = ACTIONS(2621), - [anon_sym_u_SQUOTE] = ACTIONS(2621), - [anon_sym_U_SQUOTE] = ACTIONS(2621), - [anon_sym_u8_SQUOTE] = ACTIONS(2621), - [anon_sym_SQUOTE] = ACTIONS(2621), - [anon_sym_L_DQUOTE] = ACTIONS(2621), - [anon_sym_u_DQUOTE] = ACTIONS(2621), - [anon_sym_U_DQUOTE] = ACTIONS(2621), - [anon_sym_u8_DQUOTE] = ACTIONS(2621), - [anon_sym_DQUOTE] = ACTIONS(2621), - [sym_true] = ACTIONS(2619), - [sym_false] = ACTIONS(2619), - [anon_sym_NULL] = ACTIONS(2619), - [anon_sym_nullptr] = ACTIONS(2619), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2619), - [anon_sym_decltype] = ACTIONS(2619), - [anon_sym_typename] = ACTIONS(2619), - [anon_sym_template] = ACTIONS(2619), - [anon_sym_try] = ACTIONS(2619), - [anon_sym_delete] = ACTIONS(2619), - [anon_sym_throw] = ACTIONS(2619), - [anon_sym_co_return] = ACTIONS(2619), - [anon_sym_co_yield] = ACTIONS(2619), - [anon_sym_catch] = ACTIONS(2619), - [anon_sym_R_DQUOTE] = ACTIONS(2621), - [anon_sym_LR_DQUOTE] = ACTIONS(2621), - [anon_sym_uR_DQUOTE] = ACTIONS(2621), - [anon_sym_UR_DQUOTE] = ACTIONS(2621), - [anon_sym_u8R_DQUOTE] = ACTIONS(2621), - [anon_sym_co_await] = ACTIONS(2619), - [anon_sym_new] = ACTIONS(2619), - [anon_sym_requires] = ACTIONS(2619), - [sym_this] = ACTIONS(2619), - }, - [883] = { - [sym_else_clause] = STATE(903), - [sym_identifier] = ACTIONS(2613), - [anon_sym_LPAREN2] = ACTIONS(2615), - [anon_sym_BANG] = ACTIONS(2615), - [anon_sym_TILDE] = ACTIONS(2615), - [anon_sym_DASH] = ACTIONS(2613), - [anon_sym_PLUS] = ACTIONS(2613), - [anon_sym_STAR] = ACTIONS(2615), - [anon_sym_AMP] = ACTIONS(2615), - [anon_sym_SEMI] = ACTIONS(2615), - [anon_sym___extension__] = ACTIONS(2613), - [anon_sym_typedef] = ACTIONS(2613), - [anon_sym_virtual] = ACTIONS(2613), - [anon_sym_extern] = ACTIONS(2613), - [anon_sym___attribute__] = ACTIONS(2613), - [anon_sym___attribute] = ACTIONS(2613), - [anon_sym_COLON_COLON] = ACTIONS(2615), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2615), - [anon_sym___declspec] = ACTIONS(2613), - [anon_sym_LBRACE] = ACTIONS(2615), - [anon_sym_signed] = ACTIONS(2613), - [anon_sym_unsigned] = ACTIONS(2613), - [anon_sym_long] = ACTIONS(2613), - [anon_sym_short] = ACTIONS(2613), - [anon_sym_LBRACK] = ACTIONS(2613), - [anon_sym_static] = ACTIONS(2613), - [anon_sym_register] = ACTIONS(2613), - [anon_sym_inline] = ACTIONS(2613), - [anon_sym___inline] = ACTIONS(2613), - [anon_sym___inline__] = ACTIONS(2613), - [anon_sym___forceinline] = ACTIONS(2613), - [anon_sym_thread_local] = ACTIONS(2613), - [anon_sym___thread] = ACTIONS(2613), - [anon_sym_const] = ACTIONS(2613), - [anon_sym_constexpr] = ACTIONS(2613), - [anon_sym_volatile] = ACTIONS(2613), - [anon_sym_restrict] = ACTIONS(2613), - [anon_sym___restrict__] = ACTIONS(2613), - [anon_sym__Atomic] = ACTIONS(2613), - [anon_sym__Noreturn] = ACTIONS(2613), - [anon_sym_noreturn] = ACTIONS(2613), - [anon_sym__Nonnull] = ACTIONS(2613), - [anon_sym_mutable] = ACTIONS(2613), - [anon_sym_constinit] = ACTIONS(2613), - [anon_sym_consteval] = ACTIONS(2613), - [anon_sym_alignas] = ACTIONS(2613), - [anon_sym__Alignas] = ACTIONS(2613), - [sym_primitive_type] = ACTIONS(2613), - [anon_sym_enum] = ACTIONS(2613), - [anon_sym_class] = ACTIONS(2613), - [anon_sym_struct] = ACTIONS(2613), - [anon_sym_union] = ACTIONS(2613), - [anon_sym_if] = ACTIONS(2613), - [anon_sym_else] = ACTIONS(4292), - [anon_sym_switch] = ACTIONS(2613), - [anon_sym_while] = ACTIONS(2613), - [anon_sym_do] = ACTIONS(2613), - [anon_sym_for] = ACTIONS(2613), - [anon_sym_return] = ACTIONS(2613), - [anon_sym_break] = ACTIONS(2613), - [anon_sym_continue] = ACTIONS(2613), - [anon_sym_goto] = ACTIONS(2613), - [anon_sym___try] = ACTIONS(2613), - [anon_sym___leave] = ACTIONS(2613), - [anon_sym_not] = ACTIONS(2613), - [anon_sym_compl] = ACTIONS(2613), - [anon_sym_DASH_DASH] = ACTIONS(2615), - [anon_sym_PLUS_PLUS] = ACTIONS(2615), - [anon_sym_sizeof] = ACTIONS(2613), - [anon_sym___alignof__] = ACTIONS(2613), - [anon_sym___alignof] = ACTIONS(2613), - [anon_sym__alignof] = ACTIONS(2613), - [anon_sym_alignof] = ACTIONS(2613), - [anon_sym__Alignof] = ACTIONS(2613), - [anon_sym_offsetof] = ACTIONS(2613), - [anon_sym__Generic] = ACTIONS(2613), - [anon_sym_asm] = ACTIONS(2613), - [anon_sym___asm__] = ACTIONS(2613), - [anon_sym___asm] = ACTIONS(2613), - [sym_number_literal] = ACTIONS(2615), - [anon_sym_L_SQUOTE] = ACTIONS(2615), - [anon_sym_u_SQUOTE] = ACTIONS(2615), - [anon_sym_U_SQUOTE] = ACTIONS(2615), - [anon_sym_u8_SQUOTE] = ACTIONS(2615), - [anon_sym_SQUOTE] = ACTIONS(2615), - [anon_sym_L_DQUOTE] = ACTIONS(2615), - [anon_sym_u_DQUOTE] = ACTIONS(2615), - [anon_sym_U_DQUOTE] = ACTIONS(2615), - [anon_sym_u8_DQUOTE] = ACTIONS(2615), - [anon_sym_DQUOTE] = ACTIONS(2615), - [sym_true] = ACTIONS(2613), - [sym_false] = ACTIONS(2613), - [anon_sym_NULL] = ACTIONS(2613), - [anon_sym_nullptr] = ACTIONS(2613), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2613), - [anon_sym_decltype] = ACTIONS(2613), - [anon_sym_typename] = ACTIONS(2613), - [anon_sym_template] = ACTIONS(2613), - [anon_sym_try] = ACTIONS(2613), - [anon_sym_delete] = ACTIONS(2613), - [anon_sym_throw] = ACTIONS(2613), - [anon_sym_co_return] = ACTIONS(2613), - [anon_sym_co_yield] = ACTIONS(2613), - [anon_sym_R_DQUOTE] = ACTIONS(2615), - [anon_sym_LR_DQUOTE] = ACTIONS(2615), - [anon_sym_uR_DQUOTE] = ACTIONS(2615), - [anon_sym_UR_DQUOTE] = ACTIONS(2615), - [anon_sym_u8R_DQUOTE] = ACTIONS(2615), - [anon_sym_co_await] = ACTIONS(2613), - [anon_sym_new] = ACTIONS(2613), - [anon_sym_requires] = ACTIONS(2613), - [sym_this] = ACTIONS(2613), - }, - [884] = { - [sym_else_clause] = STATE(916), - [sym_identifier] = ACTIONS(2623), - [anon_sym_LPAREN2] = ACTIONS(2625), - [anon_sym_BANG] = ACTIONS(2625), - [anon_sym_TILDE] = ACTIONS(2625), - [anon_sym_DASH] = ACTIONS(2623), - [anon_sym_PLUS] = ACTIONS(2623), - [anon_sym_STAR] = ACTIONS(2625), - [anon_sym_AMP] = ACTIONS(2625), - [anon_sym_SEMI] = ACTIONS(2625), - [anon_sym___extension__] = ACTIONS(2623), - [anon_sym_typedef] = ACTIONS(2623), - [anon_sym_virtual] = ACTIONS(2623), - [anon_sym_extern] = ACTIONS(2623), - [anon_sym___attribute__] = ACTIONS(2623), - [anon_sym___attribute] = ACTIONS(2623), - [anon_sym_COLON_COLON] = ACTIONS(2625), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2625), - [anon_sym___declspec] = ACTIONS(2623), - [anon_sym_LBRACE] = ACTIONS(2625), - [anon_sym_signed] = ACTIONS(2623), - [anon_sym_unsigned] = ACTIONS(2623), - [anon_sym_long] = ACTIONS(2623), - [anon_sym_short] = ACTIONS(2623), - [anon_sym_LBRACK] = ACTIONS(2623), - [anon_sym_static] = ACTIONS(2623), - [anon_sym_register] = ACTIONS(2623), - [anon_sym_inline] = ACTIONS(2623), - [anon_sym___inline] = ACTIONS(2623), - [anon_sym___inline__] = ACTIONS(2623), - [anon_sym___forceinline] = ACTIONS(2623), - [anon_sym_thread_local] = ACTIONS(2623), - [anon_sym___thread] = ACTIONS(2623), - [anon_sym_const] = ACTIONS(2623), - [anon_sym_constexpr] = ACTIONS(2623), - [anon_sym_volatile] = ACTIONS(2623), - [anon_sym_restrict] = ACTIONS(2623), - [anon_sym___restrict__] = ACTIONS(2623), - [anon_sym__Atomic] = ACTIONS(2623), - [anon_sym__Noreturn] = ACTIONS(2623), - [anon_sym_noreturn] = ACTIONS(2623), - [anon_sym__Nonnull] = ACTIONS(2623), - [anon_sym_mutable] = ACTIONS(2623), - [anon_sym_constinit] = ACTIONS(2623), - [anon_sym_consteval] = ACTIONS(2623), - [anon_sym_alignas] = ACTIONS(2623), - [anon_sym__Alignas] = ACTIONS(2623), - [sym_primitive_type] = ACTIONS(2623), - [anon_sym_enum] = ACTIONS(2623), - [anon_sym_class] = ACTIONS(2623), - [anon_sym_struct] = ACTIONS(2623), - [anon_sym_union] = ACTIONS(2623), - [anon_sym_if] = ACTIONS(2623), - [anon_sym_else] = ACTIONS(4292), - [anon_sym_switch] = ACTIONS(2623), - [anon_sym_while] = ACTIONS(2623), - [anon_sym_do] = ACTIONS(2623), - [anon_sym_for] = ACTIONS(2623), - [anon_sym_return] = ACTIONS(2623), - [anon_sym_break] = ACTIONS(2623), - [anon_sym_continue] = ACTIONS(2623), - [anon_sym_goto] = ACTIONS(2623), - [anon_sym___try] = ACTIONS(2623), - [anon_sym___leave] = ACTIONS(2623), - [anon_sym_not] = ACTIONS(2623), - [anon_sym_compl] = ACTIONS(2623), - [anon_sym_DASH_DASH] = ACTIONS(2625), - [anon_sym_PLUS_PLUS] = ACTIONS(2625), - [anon_sym_sizeof] = ACTIONS(2623), - [anon_sym___alignof__] = ACTIONS(2623), - [anon_sym___alignof] = ACTIONS(2623), - [anon_sym__alignof] = ACTIONS(2623), - [anon_sym_alignof] = ACTIONS(2623), - [anon_sym__Alignof] = ACTIONS(2623), - [anon_sym_offsetof] = ACTIONS(2623), - [anon_sym__Generic] = ACTIONS(2623), - [anon_sym_asm] = ACTIONS(2623), - [anon_sym___asm__] = ACTIONS(2623), - [anon_sym___asm] = ACTIONS(2623), - [sym_number_literal] = ACTIONS(2625), - [anon_sym_L_SQUOTE] = ACTIONS(2625), - [anon_sym_u_SQUOTE] = ACTIONS(2625), - [anon_sym_U_SQUOTE] = ACTIONS(2625), - [anon_sym_u8_SQUOTE] = ACTIONS(2625), - [anon_sym_SQUOTE] = ACTIONS(2625), - [anon_sym_L_DQUOTE] = ACTIONS(2625), - [anon_sym_u_DQUOTE] = ACTIONS(2625), - [anon_sym_U_DQUOTE] = ACTIONS(2625), - [anon_sym_u8_DQUOTE] = ACTIONS(2625), - [anon_sym_DQUOTE] = ACTIONS(2625), - [sym_true] = ACTIONS(2623), - [sym_false] = ACTIONS(2623), - [anon_sym_NULL] = ACTIONS(2623), - [anon_sym_nullptr] = ACTIONS(2623), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2623), - [anon_sym_decltype] = ACTIONS(2623), - [anon_sym_typename] = ACTIONS(2623), - [anon_sym_template] = ACTIONS(2623), - [anon_sym_try] = ACTIONS(2623), - [anon_sym_delete] = ACTIONS(2623), - [anon_sym_throw] = ACTIONS(2623), - [anon_sym_co_return] = ACTIONS(2623), - [anon_sym_co_yield] = ACTIONS(2623), - [anon_sym_R_DQUOTE] = ACTIONS(2625), - [anon_sym_LR_DQUOTE] = ACTIONS(2625), - [anon_sym_uR_DQUOTE] = ACTIONS(2625), - [anon_sym_UR_DQUOTE] = ACTIONS(2625), - [anon_sym_u8R_DQUOTE] = ACTIONS(2625), - [anon_sym_co_await] = ACTIONS(2623), - [anon_sym_new] = ACTIONS(2623), - [anon_sym_requires] = ACTIONS(2623), - [sym_this] = ACTIONS(2623), - }, - [885] = { - [sym_identifier] = ACTIONS(1940), - [anon_sym_LPAREN2] = ACTIONS(1938), - [anon_sym_BANG] = ACTIONS(1938), - [anon_sym_TILDE] = ACTIONS(1938), - [anon_sym_DASH] = ACTIONS(1940), - [anon_sym_PLUS] = ACTIONS(1940), - [anon_sym_STAR] = ACTIONS(1938), - [anon_sym_AMP] = ACTIONS(1938), - [anon_sym_SEMI] = ACTIONS(1938), - [anon_sym___extension__] = ACTIONS(1940), - [anon_sym_typedef] = ACTIONS(1940), - [anon_sym_virtual] = ACTIONS(1940), - [anon_sym_extern] = ACTIONS(1940), - [anon_sym___attribute__] = ACTIONS(1940), - [anon_sym___attribute] = ACTIONS(1940), - [anon_sym_COLON_COLON] = ACTIONS(1938), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1938), - [anon_sym___declspec] = ACTIONS(1940), - [anon_sym_LBRACE] = ACTIONS(1938), - [anon_sym_signed] = ACTIONS(1940), - [anon_sym_unsigned] = ACTIONS(1940), - [anon_sym_long] = ACTIONS(1940), - [anon_sym_short] = ACTIONS(1940), - [anon_sym_LBRACK] = ACTIONS(1940), - [anon_sym_static] = ACTIONS(1940), - [anon_sym_register] = ACTIONS(1940), - [anon_sym_inline] = ACTIONS(1940), - [anon_sym___inline] = ACTIONS(1940), - [anon_sym___inline__] = ACTIONS(1940), - [anon_sym___forceinline] = ACTIONS(1940), - [anon_sym_thread_local] = ACTIONS(1940), - [anon_sym___thread] = ACTIONS(1940), - [anon_sym_const] = ACTIONS(1940), - [anon_sym_constexpr] = ACTIONS(1940), - [anon_sym_volatile] = ACTIONS(1940), - [anon_sym_restrict] = ACTIONS(1940), - [anon_sym___restrict__] = ACTIONS(1940), - [anon_sym__Atomic] = ACTIONS(1940), - [anon_sym__Noreturn] = ACTIONS(1940), - [anon_sym_noreturn] = ACTIONS(1940), - [anon_sym__Nonnull] = ACTIONS(1940), - [anon_sym_mutable] = ACTIONS(1940), - [anon_sym_constinit] = ACTIONS(1940), - [anon_sym_consteval] = ACTIONS(1940), - [anon_sym_alignas] = ACTIONS(1940), - [anon_sym__Alignas] = ACTIONS(1940), - [sym_primitive_type] = ACTIONS(1940), - [anon_sym_enum] = ACTIONS(1940), - [anon_sym_class] = ACTIONS(1940), - [anon_sym_struct] = ACTIONS(1940), - [anon_sym_union] = ACTIONS(1940), - [anon_sym_if] = ACTIONS(1940), - [anon_sym_else] = ACTIONS(1940), - [anon_sym_switch] = ACTIONS(1940), - [anon_sym_while] = ACTIONS(1940), - [anon_sym_do] = ACTIONS(1940), - [anon_sym_for] = ACTIONS(1940), - [anon_sym_return] = ACTIONS(1940), - [anon_sym_break] = ACTIONS(1940), - [anon_sym_continue] = ACTIONS(1940), - [anon_sym_goto] = ACTIONS(1940), - [anon_sym___try] = ACTIONS(1940), - [anon_sym___leave] = ACTIONS(1940), - [anon_sym_not] = ACTIONS(1940), - [anon_sym_compl] = ACTIONS(1940), - [anon_sym_DASH_DASH] = ACTIONS(1938), - [anon_sym_PLUS_PLUS] = ACTIONS(1938), - [anon_sym_sizeof] = ACTIONS(1940), - [anon_sym___alignof__] = ACTIONS(1940), - [anon_sym___alignof] = ACTIONS(1940), - [anon_sym__alignof] = ACTIONS(1940), - [anon_sym_alignof] = ACTIONS(1940), - [anon_sym__Alignof] = ACTIONS(1940), - [anon_sym_offsetof] = ACTIONS(1940), - [anon_sym__Generic] = ACTIONS(1940), - [anon_sym_asm] = ACTIONS(1940), - [anon_sym___asm__] = ACTIONS(1940), - [anon_sym___asm] = ACTIONS(1940), - [sym_number_literal] = ACTIONS(1938), - [anon_sym_L_SQUOTE] = ACTIONS(1938), - [anon_sym_u_SQUOTE] = ACTIONS(1938), - [anon_sym_U_SQUOTE] = ACTIONS(1938), - [anon_sym_u8_SQUOTE] = ACTIONS(1938), - [anon_sym_SQUOTE] = ACTIONS(1938), - [anon_sym_L_DQUOTE] = ACTIONS(1938), - [anon_sym_u_DQUOTE] = ACTIONS(1938), - [anon_sym_U_DQUOTE] = ACTIONS(1938), - [anon_sym_u8_DQUOTE] = ACTIONS(1938), - [anon_sym_DQUOTE] = ACTIONS(1938), - [sym_true] = ACTIONS(1940), - [sym_false] = ACTIONS(1940), - [anon_sym_NULL] = ACTIONS(1940), - [anon_sym_nullptr] = ACTIONS(1940), + [928] = { + [sym_identifier] = ACTIONS(2759), + [anon_sym_LPAREN2] = ACTIONS(2761), + [anon_sym_BANG] = ACTIONS(2761), + [anon_sym_TILDE] = ACTIONS(2761), + [anon_sym_DASH] = ACTIONS(2759), + [anon_sym_PLUS] = ACTIONS(2759), + [anon_sym_STAR] = ACTIONS(2761), + [anon_sym_AMP] = ACTIONS(2761), + [anon_sym_SEMI] = ACTIONS(2761), + [anon_sym___extension__] = ACTIONS(2759), + [anon_sym_typedef] = ACTIONS(2759), + [anon_sym_virtual] = ACTIONS(2759), + [anon_sym_extern] = ACTIONS(2759), + [anon_sym___attribute__] = ACTIONS(2759), + [anon_sym___attribute] = ACTIONS(2759), + [anon_sym_COLON_COLON] = ACTIONS(2761), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2761), + [anon_sym___declspec] = ACTIONS(2759), + [anon_sym_LBRACE] = ACTIONS(2761), + [anon_sym_signed] = ACTIONS(2759), + [anon_sym_unsigned] = ACTIONS(2759), + [anon_sym_long] = ACTIONS(2759), + [anon_sym_short] = ACTIONS(2759), + [anon_sym_LBRACK] = ACTIONS(2759), + [anon_sym_static] = ACTIONS(2759), + [anon_sym_register] = ACTIONS(2759), + [anon_sym_inline] = ACTIONS(2759), + [anon_sym___inline] = ACTIONS(2759), + [anon_sym___inline__] = ACTIONS(2759), + [anon_sym___forceinline] = ACTIONS(2759), + [anon_sym_thread_local] = ACTIONS(2759), + [anon_sym___thread] = ACTIONS(2759), + [anon_sym_const] = ACTIONS(2759), + [anon_sym_constexpr] = ACTIONS(2759), + [anon_sym_volatile] = ACTIONS(2759), + [anon_sym_restrict] = ACTIONS(2759), + [anon_sym___restrict__] = ACTIONS(2759), + [anon_sym__Atomic] = ACTIONS(2759), + [anon_sym__Noreturn] = ACTIONS(2759), + [anon_sym_noreturn] = ACTIONS(2759), + [anon_sym__Nonnull] = ACTIONS(2759), + [anon_sym_mutable] = ACTIONS(2759), + [anon_sym_constinit] = ACTIONS(2759), + [anon_sym_consteval] = ACTIONS(2759), + [anon_sym_alignas] = ACTIONS(2759), + [anon_sym__Alignas] = ACTIONS(2759), + [sym_primitive_type] = ACTIONS(2759), + [anon_sym_enum] = ACTIONS(2759), + [anon_sym_class] = ACTIONS(2759), + [anon_sym_struct] = ACTIONS(2759), + [anon_sym_union] = ACTIONS(2759), + [anon_sym_if] = ACTIONS(2759), + [anon_sym_else] = ACTIONS(2759), + [anon_sym_switch] = ACTIONS(2759), + [anon_sym_while] = ACTIONS(2759), + [anon_sym_do] = ACTIONS(2759), + [anon_sym_for] = ACTIONS(2759), + [anon_sym_return] = ACTIONS(2759), + [anon_sym_break] = ACTIONS(2759), + [anon_sym_continue] = ACTIONS(2759), + [anon_sym_goto] = ACTIONS(2759), + [anon_sym___try] = ACTIONS(2759), + [anon_sym___leave] = ACTIONS(2759), + [anon_sym_not] = ACTIONS(2759), + [anon_sym_compl] = ACTIONS(2759), + [anon_sym_DASH_DASH] = ACTIONS(2761), + [anon_sym_PLUS_PLUS] = ACTIONS(2761), + [anon_sym_sizeof] = ACTIONS(2759), + [anon_sym___alignof__] = ACTIONS(2759), + [anon_sym___alignof] = ACTIONS(2759), + [anon_sym__alignof] = ACTIONS(2759), + [anon_sym_alignof] = ACTIONS(2759), + [anon_sym__Alignof] = ACTIONS(2759), + [anon_sym_offsetof] = ACTIONS(2759), + [anon_sym__Generic] = ACTIONS(2759), + [anon_sym_asm] = ACTIONS(2759), + [anon_sym___asm__] = ACTIONS(2759), + [anon_sym___asm] = ACTIONS(2759), + [sym_number_literal] = ACTIONS(2761), + [anon_sym_L_SQUOTE] = ACTIONS(2761), + [anon_sym_u_SQUOTE] = ACTIONS(2761), + [anon_sym_U_SQUOTE] = ACTIONS(2761), + [anon_sym_u8_SQUOTE] = ACTIONS(2761), + [anon_sym_SQUOTE] = ACTIONS(2761), + [anon_sym_L_DQUOTE] = ACTIONS(2761), + [anon_sym_u_DQUOTE] = ACTIONS(2761), + [anon_sym_U_DQUOTE] = ACTIONS(2761), + [anon_sym_u8_DQUOTE] = ACTIONS(2761), + [anon_sym_DQUOTE] = ACTIONS(2761), + [sym_true] = ACTIONS(2759), + [sym_false] = ACTIONS(2759), + [anon_sym_NULL] = ACTIONS(2759), + [anon_sym_nullptr] = ACTIONS(2759), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1940), - [anon_sym_decltype] = ACTIONS(1940), - [anon_sym_typename] = ACTIONS(1940), - [anon_sym_template] = ACTIONS(1940), - [anon_sym_try] = ACTIONS(1940), - [anon_sym_delete] = ACTIONS(1940), - [anon_sym_throw] = ACTIONS(1940), - [anon_sym_co_return] = ACTIONS(1940), - [anon_sym_co_yield] = ACTIONS(1940), - [anon_sym_catch] = ACTIONS(1940), - [anon_sym_R_DQUOTE] = ACTIONS(1938), - [anon_sym_LR_DQUOTE] = ACTIONS(1938), - [anon_sym_uR_DQUOTE] = ACTIONS(1938), - [anon_sym_UR_DQUOTE] = ACTIONS(1938), - [anon_sym_u8R_DQUOTE] = ACTIONS(1938), - [anon_sym_co_await] = ACTIONS(1940), - [anon_sym_new] = ACTIONS(1940), - [anon_sym_requires] = ACTIONS(1940), - [sym_this] = ACTIONS(1940), - }, - [886] = { - [sym_identifier] = ACTIONS(2711), - [anon_sym_LPAREN2] = ACTIONS(2713), - [anon_sym_BANG] = ACTIONS(2713), - [anon_sym_TILDE] = ACTIONS(2713), - [anon_sym_DASH] = ACTIONS(2711), - [anon_sym_PLUS] = ACTIONS(2711), - [anon_sym_STAR] = ACTIONS(2713), - [anon_sym_AMP] = ACTIONS(2713), - [anon_sym_SEMI] = ACTIONS(2713), - [anon_sym___extension__] = ACTIONS(2711), - [anon_sym_typedef] = ACTIONS(2711), - [anon_sym_virtual] = ACTIONS(2711), - [anon_sym_extern] = ACTIONS(2711), - [anon_sym___attribute__] = ACTIONS(2711), - [anon_sym___attribute] = ACTIONS(2711), - [anon_sym_COLON_COLON] = ACTIONS(2713), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2713), - [anon_sym___declspec] = ACTIONS(2711), - [anon_sym_LBRACE] = ACTIONS(2713), - [anon_sym_signed] = ACTIONS(2711), - [anon_sym_unsigned] = ACTIONS(2711), - [anon_sym_long] = ACTIONS(2711), - [anon_sym_short] = ACTIONS(2711), - [anon_sym_LBRACK] = ACTIONS(2711), - [anon_sym_static] = ACTIONS(2711), - [anon_sym_register] = ACTIONS(2711), - [anon_sym_inline] = ACTIONS(2711), - [anon_sym___inline] = ACTIONS(2711), - [anon_sym___inline__] = ACTIONS(2711), - [anon_sym___forceinline] = ACTIONS(2711), - [anon_sym_thread_local] = ACTIONS(2711), - [anon_sym___thread] = ACTIONS(2711), - [anon_sym_const] = ACTIONS(2711), - [anon_sym_constexpr] = ACTIONS(2711), - [anon_sym_volatile] = ACTIONS(2711), - [anon_sym_restrict] = ACTIONS(2711), - [anon_sym___restrict__] = ACTIONS(2711), - [anon_sym__Atomic] = ACTIONS(2711), - [anon_sym__Noreturn] = ACTIONS(2711), - [anon_sym_noreturn] = ACTIONS(2711), - [anon_sym__Nonnull] = ACTIONS(2711), - [anon_sym_mutable] = ACTIONS(2711), - [anon_sym_constinit] = ACTIONS(2711), - [anon_sym_consteval] = ACTIONS(2711), - [anon_sym_alignas] = ACTIONS(2711), - [anon_sym__Alignas] = ACTIONS(2711), - [sym_primitive_type] = ACTIONS(2711), - [anon_sym_enum] = ACTIONS(2711), - [anon_sym_class] = ACTIONS(2711), - [anon_sym_struct] = ACTIONS(2711), - [anon_sym_union] = ACTIONS(2711), - [anon_sym_if] = ACTIONS(2711), - [anon_sym_else] = ACTIONS(2711), - [anon_sym_switch] = ACTIONS(2711), - [anon_sym_while] = ACTIONS(2711), - [anon_sym_do] = ACTIONS(2711), - [anon_sym_for] = ACTIONS(2711), - [anon_sym_return] = ACTIONS(2711), - [anon_sym_break] = ACTIONS(2711), - [anon_sym_continue] = ACTIONS(2711), - [anon_sym_goto] = ACTIONS(2711), - [anon_sym___try] = ACTIONS(2711), - [anon_sym___leave] = ACTIONS(2711), - [anon_sym_not] = ACTIONS(2711), - [anon_sym_compl] = ACTIONS(2711), - [anon_sym_DASH_DASH] = ACTIONS(2713), - [anon_sym_PLUS_PLUS] = ACTIONS(2713), - [anon_sym_sizeof] = ACTIONS(2711), - [anon_sym___alignof__] = ACTIONS(2711), - [anon_sym___alignof] = ACTIONS(2711), - [anon_sym__alignof] = ACTIONS(2711), - [anon_sym_alignof] = ACTIONS(2711), - [anon_sym__Alignof] = ACTIONS(2711), - [anon_sym_offsetof] = ACTIONS(2711), - [anon_sym__Generic] = ACTIONS(2711), - [anon_sym_asm] = ACTIONS(2711), - [anon_sym___asm__] = ACTIONS(2711), - [anon_sym___asm] = ACTIONS(2711), - [sym_number_literal] = ACTIONS(2713), - [anon_sym_L_SQUOTE] = ACTIONS(2713), - [anon_sym_u_SQUOTE] = ACTIONS(2713), - [anon_sym_U_SQUOTE] = ACTIONS(2713), - [anon_sym_u8_SQUOTE] = ACTIONS(2713), - [anon_sym_SQUOTE] = ACTIONS(2713), - [anon_sym_L_DQUOTE] = ACTIONS(2713), - [anon_sym_u_DQUOTE] = ACTIONS(2713), - [anon_sym_U_DQUOTE] = ACTIONS(2713), - [anon_sym_u8_DQUOTE] = ACTIONS(2713), - [anon_sym_DQUOTE] = ACTIONS(2713), - [sym_true] = ACTIONS(2711), - [sym_false] = ACTIONS(2711), - [anon_sym_NULL] = ACTIONS(2711), - [anon_sym_nullptr] = ACTIONS(2711), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2711), - [anon_sym_decltype] = ACTIONS(2711), - [anon_sym_typename] = ACTIONS(2711), - [anon_sym_template] = ACTIONS(2711), - [anon_sym_try] = ACTIONS(2711), - [anon_sym_delete] = ACTIONS(2711), - [anon_sym_throw] = ACTIONS(2711), - [anon_sym_co_return] = ACTIONS(2711), - [anon_sym_co_yield] = ACTIONS(2711), - [anon_sym_R_DQUOTE] = ACTIONS(2713), - [anon_sym_LR_DQUOTE] = ACTIONS(2713), - [anon_sym_uR_DQUOTE] = ACTIONS(2713), - [anon_sym_UR_DQUOTE] = ACTIONS(2713), - [anon_sym_u8R_DQUOTE] = ACTIONS(2713), - [anon_sym_co_await] = ACTIONS(2711), - [anon_sym_new] = ACTIONS(2711), - [anon_sym_requires] = ACTIONS(2711), - [sym_this] = ACTIONS(2711), - }, - [887] = { - [sym_identifier] = ACTIONS(2723), - [anon_sym_LPAREN2] = ACTIONS(2725), - [anon_sym_BANG] = ACTIONS(2725), - [anon_sym_TILDE] = ACTIONS(2725), - [anon_sym_DASH] = ACTIONS(2723), - [anon_sym_PLUS] = ACTIONS(2723), - [anon_sym_STAR] = ACTIONS(2725), - [anon_sym_AMP] = ACTIONS(2725), - [anon_sym_SEMI] = ACTIONS(2725), - [anon_sym___extension__] = ACTIONS(2723), - [anon_sym_typedef] = ACTIONS(2723), - [anon_sym_virtual] = ACTIONS(2723), - [anon_sym_extern] = ACTIONS(2723), - [anon_sym___attribute__] = ACTIONS(2723), - [anon_sym___attribute] = ACTIONS(2723), - [anon_sym_COLON_COLON] = ACTIONS(2725), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2725), - [anon_sym___declspec] = ACTIONS(2723), - [anon_sym_LBRACE] = ACTIONS(2725), - [anon_sym_signed] = ACTIONS(2723), - [anon_sym_unsigned] = ACTIONS(2723), - [anon_sym_long] = ACTIONS(2723), - [anon_sym_short] = ACTIONS(2723), - [anon_sym_LBRACK] = ACTIONS(2723), - [anon_sym_static] = ACTIONS(2723), - [anon_sym_register] = ACTIONS(2723), - [anon_sym_inline] = ACTIONS(2723), - [anon_sym___inline] = ACTIONS(2723), - [anon_sym___inline__] = ACTIONS(2723), - [anon_sym___forceinline] = ACTIONS(2723), - [anon_sym_thread_local] = ACTIONS(2723), - [anon_sym___thread] = ACTIONS(2723), - [anon_sym_const] = ACTIONS(2723), - [anon_sym_constexpr] = ACTIONS(2723), - [anon_sym_volatile] = ACTIONS(2723), - [anon_sym_restrict] = ACTIONS(2723), - [anon_sym___restrict__] = ACTIONS(2723), - [anon_sym__Atomic] = ACTIONS(2723), - [anon_sym__Noreturn] = ACTIONS(2723), - [anon_sym_noreturn] = ACTIONS(2723), - [anon_sym__Nonnull] = ACTIONS(2723), - [anon_sym_mutable] = ACTIONS(2723), - [anon_sym_constinit] = ACTIONS(2723), - [anon_sym_consteval] = ACTIONS(2723), - [anon_sym_alignas] = ACTIONS(2723), - [anon_sym__Alignas] = ACTIONS(2723), - [sym_primitive_type] = ACTIONS(2723), - [anon_sym_enum] = ACTIONS(2723), - [anon_sym_class] = ACTIONS(2723), - [anon_sym_struct] = ACTIONS(2723), - [anon_sym_union] = ACTIONS(2723), - [anon_sym_if] = ACTIONS(2723), - [anon_sym_else] = ACTIONS(2723), - [anon_sym_switch] = ACTIONS(2723), - [anon_sym_while] = ACTIONS(2723), - [anon_sym_do] = ACTIONS(2723), - [anon_sym_for] = ACTIONS(2723), - [anon_sym_return] = ACTIONS(2723), - [anon_sym_break] = ACTIONS(2723), - [anon_sym_continue] = ACTIONS(2723), - [anon_sym_goto] = ACTIONS(2723), - [anon_sym___try] = ACTIONS(2723), - [anon_sym___leave] = ACTIONS(2723), - [anon_sym_not] = ACTIONS(2723), - [anon_sym_compl] = ACTIONS(2723), - [anon_sym_DASH_DASH] = ACTIONS(2725), - [anon_sym_PLUS_PLUS] = ACTIONS(2725), - [anon_sym_sizeof] = ACTIONS(2723), - [anon_sym___alignof__] = ACTIONS(2723), - [anon_sym___alignof] = ACTIONS(2723), - [anon_sym__alignof] = ACTIONS(2723), - [anon_sym_alignof] = ACTIONS(2723), - [anon_sym__Alignof] = ACTIONS(2723), - [anon_sym_offsetof] = ACTIONS(2723), - [anon_sym__Generic] = ACTIONS(2723), - [anon_sym_asm] = ACTIONS(2723), - [anon_sym___asm__] = ACTIONS(2723), - [anon_sym___asm] = ACTIONS(2723), - [sym_number_literal] = ACTIONS(2725), - [anon_sym_L_SQUOTE] = ACTIONS(2725), - [anon_sym_u_SQUOTE] = ACTIONS(2725), - [anon_sym_U_SQUOTE] = ACTIONS(2725), - [anon_sym_u8_SQUOTE] = ACTIONS(2725), - [anon_sym_SQUOTE] = ACTIONS(2725), - [anon_sym_L_DQUOTE] = ACTIONS(2725), - [anon_sym_u_DQUOTE] = ACTIONS(2725), - [anon_sym_U_DQUOTE] = ACTIONS(2725), - [anon_sym_u8_DQUOTE] = ACTIONS(2725), - [anon_sym_DQUOTE] = ACTIONS(2725), - [sym_true] = ACTIONS(2723), - [sym_false] = ACTIONS(2723), - [anon_sym_NULL] = ACTIONS(2723), - [anon_sym_nullptr] = ACTIONS(2723), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2723), - [anon_sym_decltype] = ACTIONS(2723), - [anon_sym_typename] = ACTIONS(2723), - [anon_sym_template] = ACTIONS(2723), - [anon_sym_try] = ACTIONS(2723), - [anon_sym_delete] = ACTIONS(2723), - [anon_sym_throw] = ACTIONS(2723), - [anon_sym_co_return] = ACTIONS(2723), - [anon_sym_co_yield] = ACTIONS(2723), - [anon_sym_R_DQUOTE] = ACTIONS(2725), - [anon_sym_LR_DQUOTE] = ACTIONS(2725), - [anon_sym_uR_DQUOTE] = ACTIONS(2725), - [anon_sym_UR_DQUOTE] = ACTIONS(2725), - [anon_sym_u8R_DQUOTE] = ACTIONS(2725), - [anon_sym_co_await] = ACTIONS(2723), - [anon_sym_new] = ACTIONS(2723), - [anon_sym_requires] = ACTIONS(2723), - [sym_this] = ACTIONS(2723), + [sym_auto] = ACTIONS(2759), + [anon_sym_decltype] = ACTIONS(2759), + [anon_sym_typename] = ACTIONS(2759), + [anon_sym_template] = ACTIONS(2759), + [anon_sym_try] = ACTIONS(2759), + [anon_sym_delete] = ACTIONS(2759), + [anon_sym_throw] = ACTIONS(2759), + [anon_sym_co_return] = ACTIONS(2759), + [anon_sym_co_yield] = ACTIONS(2759), + [anon_sym_R_DQUOTE] = ACTIONS(2761), + [anon_sym_LR_DQUOTE] = ACTIONS(2761), + [anon_sym_uR_DQUOTE] = ACTIONS(2761), + [anon_sym_UR_DQUOTE] = ACTIONS(2761), + [anon_sym_u8R_DQUOTE] = ACTIONS(2761), + [anon_sym_co_await] = ACTIONS(2759), + [anon_sym_new] = ACTIONS(2759), + [anon_sym_requires] = ACTIONS(2759), + [sym_this] = ACTIONS(2759), }, - [888] = { - [sym_identifier] = ACTIONS(2687), - [anon_sym_LPAREN2] = ACTIONS(2689), - [anon_sym_BANG] = ACTIONS(2689), - [anon_sym_TILDE] = ACTIONS(2689), - [anon_sym_DASH] = ACTIONS(2687), - [anon_sym_PLUS] = ACTIONS(2687), - [anon_sym_STAR] = ACTIONS(2689), - [anon_sym_AMP] = ACTIONS(2689), - [anon_sym_SEMI] = ACTIONS(2689), - [anon_sym___extension__] = ACTIONS(2687), - [anon_sym_typedef] = ACTIONS(2687), - [anon_sym_virtual] = ACTIONS(2687), - [anon_sym_extern] = ACTIONS(2687), - [anon_sym___attribute__] = ACTIONS(2687), - [anon_sym___attribute] = ACTIONS(2687), - [anon_sym_COLON_COLON] = ACTIONS(2689), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2689), - [anon_sym___declspec] = ACTIONS(2687), - [anon_sym_LBRACE] = ACTIONS(2689), - [anon_sym_signed] = ACTIONS(2687), - [anon_sym_unsigned] = ACTIONS(2687), - [anon_sym_long] = ACTIONS(2687), - [anon_sym_short] = ACTIONS(2687), - [anon_sym_LBRACK] = ACTIONS(2687), - [anon_sym_static] = ACTIONS(2687), - [anon_sym_register] = ACTIONS(2687), - [anon_sym_inline] = ACTIONS(2687), - [anon_sym___inline] = ACTIONS(2687), - [anon_sym___inline__] = ACTIONS(2687), - [anon_sym___forceinline] = ACTIONS(2687), - [anon_sym_thread_local] = ACTIONS(2687), - [anon_sym___thread] = ACTIONS(2687), - [anon_sym_const] = ACTIONS(2687), - [anon_sym_constexpr] = ACTIONS(2687), - [anon_sym_volatile] = ACTIONS(2687), - [anon_sym_restrict] = ACTIONS(2687), - [anon_sym___restrict__] = ACTIONS(2687), - [anon_sym__Atomic] = ACTIONS(2687), - [anon_sym__Noreturn] = ACTIONS(2687), - [anon_sym_noreturn] = ACTIONS(2687), - [anon_sym__Nonnull] = ACTIONS(2687), - [anon_sym_mutable] = ACTIONS(2687), - [anon_sym_constinit] = ACTIONS(2687), - [anon_sym_consteval] = ACTIONS(2687), - [anon_sym_alignas] = ACTIONS(2687), - [anon_sym__Alignas] = ACTIONS(2687), - [sym_primitive_type] = ACTIONS(2687), - [anon_sym_enum] = ACTIONS(2687), - [anon_sym_class] = ACTIONS(2687), - [anon_sym_struct] = ACTIONS(2687), - [anon_sym_union] = ACTIONS(2687), - [anon_sym_if] = ACTIONS(2687), - [anon_sym_else] = ACTIONS(2687), - [anon_sym_switch] = ACTIONS(2687), - [anon_sym_while] = ACTIONS(2687), - [anon_sym_do] = ACTIONS(2687), - [anon_sym_for] = ACTIONS(2687), - [anon_sym_return] = ACTIONS(2687), - [anon_sym_break] = ACTIONS(2687), - [anon_sym_continue] = ACTIONS(2687), - [anon_sym_goto] = ACTIONS(2687), - [anon_sym___try] = ACTIONS(2687), - [anon_sym___leave] = ACTIONS(2687), - [anon_sym_not] = ACTIONS(2687), - [anon_sym_compl] = ACTIONS(2687), - [anon_sym_DASH_DASH] = ACTIONS(2689), - [anon_sym_PLUS_PLUS] = ACTIONS(2689), - [anon_sym_sizeof] = ACTIONS(2687), - [anon_sym___alignof__] = ACTIONS(2687), - [anon_sym___alignof] = ACTIONS(2687), - [anon_sym__alignof] = ACTIONS(2687), - [anon_sym_alignof] = ACTIONS(2687), - [anon_sym__Alignof] = ACTIONS(2687), - [anon_sym_offsetof] = ACTIONS(2687), - [anon_sym__Generic] = ACTIONS(2687), - [anon_sym_asm] = ACTIONS(2687), - [anon_sym___asm__] = ACTIONS(2687), - [anon_sym___asm] = ACTIONS(2687), - [sym_number_literal] = ACTIONS(2689), - [anon_sym_L_SQUOTE] = ACTIONS(2689), - [anon_sym_u_SQUOTE] = ACTIONS(2689), - [anon_sym_U_SQUOTE] = ACTIONS(2689), - [anon_sym_u8_SQUOTE] = ACTIONS(2689), - [anon_sym_SQUOTE] = ACTIONS(2689), - [anon_sym_L_DQUOTE] = ACTIONS(2689), - [anon_sym_u_DQUOTE] = ACTIONS(2689), - [anon_sym_U_DQUOTE] = ACTIONS(2689), - [anon_sym_u8_DQUOTE] = ACTIONS(2689), - [anon_sym_DQUOTE] = ACTIONS(2689), - [sym_true] = ACTIONS(2687), - [sym_false] = ACTIONS(2687), - [anon_sym_NULL] = ACTIONS(2687), - [anon_sym_nullptr] = ACTIONS(2687), + [929] = { + [sym_identifier] = ACTIONS(2771), + [anon_sym_LPAREN2] = ACTIONS(2773), + [anon_sym_BANG] = ACTIONS(2773), + [anon_sym_TILDE] = ACTIONS(2773), + [anon_sym_DASH] = ACTIONS(2771), + [anon_sym_PLUS] = ACTIONS(2771), + [anon_sym_STAR] = ACTIONS(2773), + [anon_sym_AMP] = ACTIONS(2773), + [anon_sym_SEMI] = ACTIONS(2773), + [anon_sym___extension__] = ACTIONS(2771), + [anon_sym_typedef] = ACTIONS(2771), + [anon_sym_virtual] = ACTIONS(2771), + [anon_sym_extern] = ACTIONS(2771), + [anon_sym___attribute__] = ACTIONS(2771), + [anon_sym___attribute] = ACTIONS(2771), + [anon_sym_COLON_COLON] = ACTIONS(2773), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2773), + [anon_sym___declspec] = ACTIONS(2771), + [anon_sym_LBRACE] = ACTIONS(2773), + [anon_sym_signed] = ACTIONS(2771), + [anon_sym_unsigned] = ACTIONS(2771), + [anon_sym_long] = ACTIONS(2771), + [anon_sym_short] = ACTIONS(2771), + [anon_sym_LBRACK] = ACTIONS(2771), + [anon_sym_static] = ACTIONS(2771), + [anon_sym_register] = ACTIONS(2771), + [anon_sym_inline] = ACTIONS(2771), + [anon_sym___inline] = ACTIONS(2771), + [anon_sym___inline__] = ACTIONS(2771), + [anon_sym___forceinline] = ACTIONS(2771), + [anon_sym_thread_local] = ACTIONS(2771), + [anon_sym___thread] = ACTIONS(2771), + [anon_sym_const] = ACTIONS(2771), + [anon_sym_constexpr] = ACTIONS(2771), + [anon_sym_volatile] = ACTIONS(2771), + [anon_sym_restrict] = ACTIONS(2771), + [anon_sym___restrict__] = ACTIONS(2771), + [anon_sym__Atomic] = ACTIONS(2771), + [anon_sym__Noreturn] = ACTIONS(2771), + [anon_sym_noreturn] = ACTIONS(2771), + [anon_sym__Nonnull] = ACTIONS(2771), + [anon_sym_mutable] = ACTIONS(2771), + [anon_sym_constinit] = ACTIONS(2771), + [anon_sym_consteval] = ACTIONS(2771), + [anon_sym_alignas] = ACTIONS(2771), + [anon_sym__Alignas] = ACTIONS(2771), + [sym_primitive_type] = ACTIONS(2771), + [anon_sym_enum] = ACTIONS(2771), + [anon_sym_class] = ACTIONS(2771), + [anon_sym_struct] = ACTIONS(2771), + [anon_sym_union] = ACTIONS(2771), + [anon_sym_if] = ACTIONS(2771), + [anon_sym_else] = ACTIONS(2771), + [anon_sym_switch] = ACTIONS(2771), + [anon_sym_while] = ACTIONS(2771), + [anon_sym_do] = ACTIONS(2771), + [anon_sym_for] = ACTIONS(2771), + [anon_sym_return] = ACTIONS(2771), + [anon_sym_break] = ACTIONS(2771), + [anon_sym_continue] = ACTIONS(2771), + [anon_sym_goto] = ACTIONS(2771), + [anon_sym___try] = ACTIONS(2771), + [anon_sym___leave] = ACTIONS(2771), + [anon_sym_not] = ACTIONS(2771), + [anon_sym_compl] = ACTIONS(2771), + [anon_sym_DASH_DASH] = ACTIONS(2773), + [anon_sym_PLUS_PLUS] = ACTIONS(2773), + [anon_sym_sizeof] = ACTIONS(2771), + [anon_sym___alignof__] = ACTIONS(2771), + [anon_sym___alignof] = ACTIONS(2771), + [anon_sym__alignof] = ACTIONS(2771), + [anon_sym_alignof] = ACTIONS(2771), + [anon_sym__Alignof] = ACTIONS(2771), + [anon_sym_offsetof] = ACTIONS(2771), + [anon_sym__Generic] = ACTIONS(2771), + [anon_sym_asm] = ACTIONS(2771), + [anon_sym___asm__] = ACTIONS(2771), + [anon_sym___asm] = ACTIONS(2771), + [sym_number_literal] = ACTIONS(2773), + [anon_sym_L_SQUOTE] = ACTIONS(2773), + [anon_sym_u_SQUOTE] = ACTIONS(2773), + [anon_sym_U_SQUOTE] = ACTIONS(2773), + [anon_sym_u8_SQUOTE] = ACTIONS(2773), + [anon_sym_SQUOTE] = ACTIONS(2773), + [anon_sym_L_DQUOTE] = ACTIONS(2773), + [anon_sym_u_DQUOTE] = ACTIONS(2773), + [anon_sym_U_DQUOTE] = ACTIONS(2773), + [anon_sym_u8_DQUOTE] = ACTIONS(2773), + [anon_sym_DQUOTE] = ACTIONS(2773), + [sym_true] = ACTIONS(2771), + [sym_false] = ACTIONS(2771), + [anon_sym_NULL] = ACTIONS(2771), + [anon_sym_nullptr] = ACTIONS(2771), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2687), - [anon_sym_decltype] = ACTIONS(2687), - [anon_sym_typename] = ACTIONS(2687), - [anon_sym_template] = ACTIONS(2687), - [anon_sym_try] = ACTIONS(2687), - [anon_sym_delete] = ACTIONS(2687), - [anon_sym_throw] = ACTIONS(2687), - [anon_sym_co_return] = ACTIONS(2687), - [anon_sym_co_yield] = ACTIONS(2687), - [anon_sym_R_DQUOTE] = ACTIONS(2689), - [anon_sym_LR_DQUOTE] = ACTIONS(2689), - [anon_sym_uR_DQUOTE] = ACTIONS(2689), - [anon_sym_UR_DQUOTE] = ACTIONS(2689), - [anon_sym_u8R_DQUOTE] = ACTIONS(2689), - [anon_sym_co_await] = ACTIONS(2687), - [anon_sym_new] = ACTIONS(2687), - [anon_sym_requires] = ACTIONS(2687), - [sym_this] = ACTIONS(2687), + [sym_auto] = ACTIONS(2771), + [anon_sym_decltype] = ACTIONS(2771), + [anon_sym_typename] = ACTIONS(2771), + [anon_sym_template] = ACTIONS(2771), + [anon_sym_try] = ACTIONS(2771), + [anon_sym_delete] = ACTIONS(2771), + [anon_sym_throw] = ACTIONS(2771), + [anon_sym_co_return] = ACTIONS(2771), + [anon_sym_co_yield] = ACTIONS(2771), + [anon_sym_R_DQUOTE] = ACTIONS(2773), + [anon_sym_LR_DQUOTE] = ACTIONS(2773), + [anon_sym_uR_DQUOTE] = ACTIONS(2773), + [anon_sym_UR_DQUOTE] = ACTIONS(2773), + [anon_sym_u8R_DQUOTE] = ACTIONS(2773), + [anon_sym_co_await] = ACTIONS(2771), + [anon_sym_new] = ACTIONS(2771), + [anon_sym_requires] = ACTIONS(2771), + [sym_this] = ACTIONS(2771), }, - [889] = { - [sym_identifier] = ACTIONS(2715), - [anon_sym_LPAREN2] = ACTIONS(2717), - [anon_sym_BANG] = ACTIONS(2717), - [anon_sym_TILDE] = ACTIONS(2717), - [anon_sym_DASH] = ACTIONS(2715), - [anon_sym_PLUS] = ACTIONS(2715), - [anon_sym_STAR] = ACTIONS(2717), - [anon_sym_AMP] = ACTIONS(2717), - [anon_sym_SEMI] = ACTIONS(2717), - [anon_sym___extension__] = ACTIONS(2715), - [anon_sym_typedef] = ACTIONS(2715), - [anon_sym_virtual] = ACTIONS(2715), - [anon_sym_extern] = ACTIONS(2715), - [anon_sym___attribute__] = ACTIONS(2715), - [anon_sym___attribute] = ACTIONS(2715), - [anon_sym_COLON_COLON] = ACTIONS(2717), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2717), - [anon_sym___declspec] = ACTIONS(2715), - [anon_sym_LBRACE] = ACTIONS(2717), - [anon_sym_signed] = ACTIONS(2715), - [anon_sym_unsigned] = ACTIONS(2715), - [anon_sym_long] = ACTIONS(2715), - [anon_sym_short] = ACTIONS(2715), - [anon_sym_LBRACK] = ACTIONS(2715), - [anon_sym_static] = ACTIONS(2715), - [anon_sym_register] = ACTIONS(2715), - [anon_sym_inline] = ACTIONS(2715), - [anon_sym___inline] = ACTIONS(2715), - [anon_sym___inline__] = ACTIONS(2715), - [anon_sym___forceinline] = ACTIONS(2715), - [anon_sym_thread_local] = ACTIONS(2715), - [anon_sym___thread] = ACTIONS(2715), - [anon_sym_const] = ACTIONS(2715), - [anon_sym_constexpr] = ACTIONS(2715), - [anon_sym_volatile] = ACTIONS(2715), - [anon_sym_restrict] = ACTIONS(2715), - [anon_sym___restrict__] = ACTIONS(2715), - [anon_sym__Atomic] = ACTIONS(2715), - [anon_sym__Noreturn] = ACTIONS(2715), - [anon_sym_noreturn] = ACTIONS(2715), - [anon_sym__Nonnull] = ACTIONS(2715), - [anon_sym_mutable] = ACTIONS(2715), - [anon_sym_constinit] = ACTIONS(2715), - [anon_sym_consteval] = ACTIONS(2715), - [anon_sym_alignas] = ACTIONS(2715), - [anon_sym__Alignas] = ACTIONS(2715), - [sym_primitive_type] = ACTIONS(2715), - [anon_sym_enum] = ACTIONS(2715), - [anon_sym_class] = ACTIONS(2715), - [anon_sym_struct] = ACTIONS(2715), - [anon_sym_union] = ACTIONS(2715), - [anon_sym_if] = ACTIONS(2715), - [anon_sym_else] = ACTIONS(2715), - [anon_sym_switch] = ACTIONS(2715), - [anon_sym_while] = ACTIONS(2715), - [anon_sym_do] = ACTIONS(2715), - [anon_sym_for] = ACTIONS(2715), - [anon_sym_return] = ACTIONS(2715), - [anon_sym_break] = ACTIONS(2715), - [anon_sym_continue] = ACTIONS(2715), - [anon_sym_goto] = ACTIONS(2715), - [anon_sym___try] = ACTIONS(2715), - [anon_sym___leave] = ACTIONS(2715), - [anon_sym_not] = ACTIONS(2715), - [anon_sym_compl] = ACTIONS(2715), - [anon_sym_DASH_DASH] = ACTIONS(2717), - [anon_sym_PLUS_PLUS] = ACTIONS(2717), - [anon_sym_sizeof] = ACTIONS(2715), - [anon_sym___alignof__] = ACTIONS(2715), - [anon_sym___alignof] = ACTIONS(2715), - [anon_sym__alignof] = ACTIONS(2715), - [anon_sym_alignof] = ACTIONS(2715), - [anon_sym__Alignof] = ACTIONS(2715), - [anon_sym_offsetof] = ACTIONS(2715), - [anon_sym__Generic] = ACTIONS(2715), - [anon_sym_asm] = ACTIONS(2715), - [anon_sym___asm__] = ACTIONS(2715), - [anon_sym___asm] = ACTIONS(2715), - [sym_number_literal] = ACTIONS(2717), - [anon_sym_L_SQUOTE] = ACTIONS(2717), - [anon_sym_u_SQUOTE] = ACTIONS(2717), - [anon_sym_U_SQUOTE] = ACTIONS(2717), - [anon_sym_u8_SQUOTE] = ACTIONS(2717), - [anon_sym_SQUOTE] = ACTIONS(2717), - [anon_sym_L_DQUOTE] = ACTIONS(2717), - [anon_sym_u_DQUOTE] = ACTIONS(2717), - [anon_sym_U_DQUOTE] = ACTIONS(2717), - [anon_sym_u8_DQUOTE] = ACTIONS(2717), - [anon_sym_DQUOTE] = ACTIONS(2717), - [sym_true] = ACTIONS(2715), - [sym_false] = ACTIONS(2715), - [anon_sym_NULL] = ACTIONS(2715), - [anon_sym_nullptr] = ACTIONS(2715), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2715), - [anon_sym_decltype] = ACTIONS(2715), - [anon_sym_typename] = ACTIONS(2715), - [anon_sym_template] = ACTIONS(2715), - [anon_sym_try] = ACTIONS(2715), - [anon_sym_delete] = ACTIONS(2715), - [anon_sym_throw] = ACTIONS(2715), - [anon_sym_co_return] = ACTIONS(2715), - [anon_sym_co_yield] = ACTIONS(2715), - [anon_sym_R_DQUOTE] = ACTIONS(2717), - [anon_sym_LR_DQUOTE] = ACTIONS(2717), - [anon_sym_uR_DQUOTE] = ACTIONS(2717), - [anon_sym_UR_DQUOTE] = ACTIONS(2717), - [anon_sym_u8R_DQUOTE] = ACTIONS(2717), - [anon_sym_co_await] = ACTIONS(2715), - [anon_sym_new] = ACTIONS(2715), - [anon_sym_requires] = ACTIONS(2715), - [sym_this] = ACTIONS(2715), + [930] = { + [sym_identifier] = ACTIONS(2731), + [anon_sym_LPAREN2] = ACTIONS(2733), + [anon_sym_BANG] = ACTIONS(2733), + [anon_sym_TILDE] = ACTIONS(2733), + [anon_sym_DASH] = ACTIONS(2731), + [anon_sym_PLUS] = ACTIONS(2731), + [anon_sym_STAR] = ACTIONS(2733), + [anon_sym_AMP] = ACTIONS(2733), + [anon_sym_SEMI] = ACTIONS(2733), + [anon_sym___extension__] = ACTIONS(2731), + [anon_sym_typedef] = ACTIONS(2731), + [anon_sym_virtual] = ACTIONS(2731), + [anon_sym_extern] = ACTIONS(2731), + [anon_sym___attribute__] = ACTIONS(2731), + [anon_sym___attribute] = ACTIONS(2731), + [anon_sym_COLON_COLON] = ACTIONS(2733), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2733), + [anon_sym___declspec] = ACTIONS(2731), + [anon_sym_LBRACE] = ACTIONS(2733), + [anon_sym_signed] = ACTIONS(2731), + [anon_sym_unsigned] = ACTIONS(2731), + [anon_sym_long] = ACTIONS(2731), + [anon_sym_short] = ACTIONS(2731), + [anon_sym_LBRACK] = ACTIONS(2731), + [anon_sym_static] = ACTIONS(2731), + [anon_sym_register] = ACTIONS(2731), + [anon_sym_inline] = ACTIONS(2731), + [anon_sym___inline] = ACTIONS(2731), + [anon_sym___inline__] = ACTIONS(2731), + [anon_sym___forceinline] = ACTIONS(2731), + [anon_sym_thread_local] = ACTIONS(2731), + [anon_sym___thread] = ACTIONS(2731), + [anon_sym_const] = ACTIONS(2731), + [anon_sym_constexpr] = ACTIONS(2731), + [anon_sym_volatile] = ACTIONS(2731), + [anon_sym_restrict] = ACTIONS(2731), + [anon_sym___restrict__] = ACTIONS(2731), + [anon_sym__Atomic] = ACTIONS(2731), + [anon_sym__Noreturn] = ACTIONS(2731), + [anon_sym_noreturn] = ACTIONS(2731), + [anon_sym__Nonnull] = ACTIONS(2731), + [anon_sym_mutable] = ACTIONS(2731), + [anon_sym_constinit] = ACTIONS(2731), + [anon_sym_consteval] = ACTIONS(2731), + [anon_sym_alignas] = ACTIONS(2731), + [anon_sym__Alignas] = ACTIONS(2731), + [sym_primitive_type] = ACTIONS(2731), + [anon_sym_enum] = ACTIONS(2731), + [anon_sym_class] = ACTIONS(2731), + [anon_sym_struct] = ACTIONS(2731), + [anon_sym_union] = ACTIONS(2731), + [anon_sym_if] = ACTIONS(2731), + [anon_sym_else] = ACTIONS(2731), + [anon_sym_switch] = ACTIONS(2731), + [anon_sym_while] = ACTIONS(2731), + [anon_sym_do] = ACTIONS(2731), + [anon_sym_for] = ACTIONS(2731), + [anon_sym_return] = ACTIONS(2731), + [anon_sym_break] = ACTIONS(2731), + [anon_sym_continue] = ACTIONS(2731), + [anon_sym_goto] = ACTIONS(2731), + [anon_sym___try] = ACTIONS(2731), + [anon_sym___leave] = ACTIONS(2731), + [anon_sym_not] = ACTIONS(2731), + [anon_sym_compl] = ACTIONS(2731), + [anon_sym_DASH_DASH] = ACTIONS(2733), + [anon_sym_PLUS_PLUS] = ACTIONS(2733), + [anon_sym_sizeof] = ACTIONS(2731), + [anon_sym___alignof__] = ACTIONS(2731), + [anon_sym___alignof] = ACTIONS(2731), + [anon_sym__alignof] = ACTIONS(2731), + [anon_sym_alignof] = ACTIONS(2731), + [anon_sym__Alignof] = ACTIONS(2731), + [anon_sym_offsetof] = ACTIONS(2731), + [anon_sym__Generic] = ACTIONS(2731), + [anon_sym_asm] = ACTIONS(2731), + [anon_sym___asm__] = ACTIONS(2731), + [anon_sym___asm] = ACTIONS(2731), + [sym_number_literal] = ACTIONS(2733), + [anon_sym_L_SQUOTE] = ACTIONS(2733), + [anon_sym_u_SQUOTE] = ACTIONS(2733), + [anon_sym_U_SQUOTE] = ACTIONS(2733), + [anon_sym_u8_SQUOTE] = ACTIONS(2733), + [anon_sym_SQUOTE] = ACTIONS(2733), + [anon_sym_L_DQUOTE] = ACTIONS(2733), + [anon_sym_u_DQUOTE] = ACTIONS(2733), + [anon_sym_U_DQUOTE] = ACTIONS(2733), + [anon_sym_u8_DQUOTE] = ACTIONS(2733), + [anon_sym_DQUOTE] = ACTIONS(2733), + [sym_true] = ACTIONS(2731), + [sym_false] = ACTIONS(2731), + [anon_sym_NULL] = ACTIONS(2731), + [anon_sym_nullptr] = ACTIONS(2731), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2731), + [anon_sym_decltype] = ACTIONS(2731), + [anon_sym_typename] = ACTIONS(2731), + [anon_sym_template] = ACTIONS(2731), + [anon_sym_try] = ACTIONS(2731), + [anon_sym_delete] = ACTIONS(2731), + [anon_sym_throw] = ACTIONS(2731), + [anon_sym_co_return] = ACTIONS(2731), + [anon_sym_co_yield] = ACTIONS(2731), + [anon_sym_R_DQUOTE] = ACTIONS(2733), + [anon_sym_LR_DQUOTE] = ACTIONS(2733), + [anon_sym_uR_DQUOTE] = ACTIONS(2733), + [anon_sym_UR_DQUOTE] = ACTIONS(2733), + [anon_sym_u8R_DQUOTE] = ACTIONS(2733), + [anon_sym_co_await] = ACTIONS(2731), + [anon_sym_new] = ACTIONS(2731), + [anon_sym_requires] = ACTIONS(2731), + [sym_this] = ACTIONS(2731), }, - [890] = { + [931] = { [sym_identifier] = ACTIONS(2695), [anon_sym_LPAREN2] = ACTIONS(2697), [anon_sym_BANG] = ACTIONS(2697), @@ -166988,7 +172356,463 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2695), [sym_this] = ACTIONS(2695), }, - [891] = { + [932] = { + [sym_identifier] = ACTIONS(2631), + [anon_sym_LPAREN2] = ACTIONS(2633), + [anon_sym_BANG] = ACTIONS(2633), + [anon_sym_TILDE] = ACTIONS(2633), + [anon_sym_DASH] = ACTIONS(2631), + [anon_sym_PLUS] = ACTIONS(2631), + [anon_sym_STAR] = ACTIONS(2633), + [anon_sym_AMP] = ACTIONS(2633), + [anon_sym_SEMI] = ACTIONS(2633), + [anon_sym___extension__] = ACTIONS(2631), + [anon_sym_typedef] = ACTIONS(2631), + [anon_sym_virtual] = ACTIONS(2631), + [anon_sym_extern] = ACTIONS(2631), + [anon_sym___attribute__] = ACTIONS(2631), + [anon_sym___attribute] = ACTIONS(2631), + [anon_sym_COLON_COLON] = ACTIONS(2633), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2633), + [anon_sym___declspec] = ACTIONS(2631), + [anon_sym_LBRACE] = ACTIONS(2633), + [anon_sym_signed] = ACTIONS(2631), + [anon_sym_unsigned] = ACTIONS(2631), + [anon_sym_long] = ACTIONS(2631), + [anon_sym_short] = ACTIONS(2631), + [anon_sym_LBRACK] = ACTIONS(2631), + [anon_sym_static] = ACTIONS(2631), + [anon_sym_register] = ACTIONS(2631), + [anon_sym_inline] = ACTIONS(2631), + [anon_sym___inline] = ACTIONS(2631), + [anon_sym___inline__] = ACTIONS(2631), + [anon_sym___forceinline] = ACTIONS(2631), + [anon_sym_thread_local] = ACTIONS(2631), + [anon_sym___thread] = ACTIONS(2631), + [anon_sym_const] = ACTIONS(2631), + [anon_sym_constexpr] = ACTIONS(2631), + [anon_sym_volatile] = ACTIONS(2631), + [anon_sym_restrict] = ACTIONS(2631), + [anon_sym___restrict__] = ACTIONS(2631), + [anon_sym__Atomic] = ACTIONS(2631), + [anon_sym__Noreturn] = ACTIONS(2631), + [anon_sym_noreturn] = ACTIONS(2631), + [anon_sym__Nonnull] = ACTIONS(2631), + [anon_sym_mutable] = ACTIONS(2631), + [anon_sym_constinit] = ACTIONS(2631), + [anon_sym_consteval] = ACTIONS(2631), + [anon_sym_alignas] = ACTIONS(2631), + [anon_sym__Alignas] = ACTIONS(2631), + [sym_primitive_type] = ACTIONS(2631), + [anon_sym_enum] = ACTIONS(2631), + [anon_sym_class] = ACTIONS(2631), + [anon_sym_struct] = ACTIONS(2631), + [anon_sym_union] = ACTIONS(2631), + [anon_sym_if] = ACTIONS(2631), + [anon_sym_else] = ACTIONS(2631), + [anon_sym_switch] = ACTIONS(2631), + [anon_sym_while] = ACTIONS(2631), + [anon_sym_do] = ACTIONS(2631), + [anon_sym_for] = ACTIONS(2631), + [anon_sym_return] = ACTIONS(2631), + [anon_sym_break] = ACTIONS(2631), + [anon_sym_continue] = ACTIONS(2631), + [anon_sym_goto] = ACTIONS(2631), + [anon_sym___try] = ACTIONS(2631), + [anon_sym___leave] = ACTIONS(2631), + [anon_sym_not] = ACTIONS(2631), + [anon_sym_compl] = ACTIONS(2631), + [anon_sym_DASH_DASH] = ACTIONS(2633), + [anon_sym_PLUS_PLUS] = ACTIONS(2633), + [anon_sym_sizeof] = ACTIONS(2631), + [anon_sym___alignof__] = ACTIONS(2631), + [anon_sym___alignof] = ACTIONS(2631), + [anon_sym__alignof] = ACTIONS(2631), + [anon_sym_alignof] = ACTIONS(2631), + [anon_sym__Alignof] = ACTIONS(2631), + [anon_sym_offsetof] = ACTIONS(2631), + [anon_sym__Generic] = ACTIONS(2631), + [anon_sym_asm] = ACTIONS(2631), + [anon_sym___asm__] = ACTIONS(2631), + [anon_sym___asm] = ACTIONS(2631), + [sym_number_literal] = ACTIONS(2633), + [anon_sym_L_SQUOTE] = ACTIONS(2633), + [anon_sym_u_SQUOTE] = ACTIONS(2633), + [anon_sym_U_SQUOTE] = ACTIONS(2633), + [anon_sym_u8_SQUOTE] = ACTIONS(2633), + [anon_sym_SQUOTE] = ACTIONS(2633), + [anon_sym_L_DQUOTE] = ACTIONS(2633), + [anon_sym_u_DQUOTE] = ACTIONS(2633), + [anon_sym_U_DQUOTE] = ACTIONS(2633), + [anon_sym_u8_DQUOTE] = ACTIONS(2633), + [anon_sym_DQUOTE] = ACTIONS(2633), + [sym_true] = ACTIONS(2631), + [sym_false] = ACTIONS(2631), + [anon_sym_NULL] = ACTIONS(2631), + [anon_sym_nullptr] = ACTIONS(2631), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2631), + [anon_sym_decltype] = ACTIONS(2631), + [anon_sym_typename] = ACTIONS(2631), + [anon_sym_template] = ACTIONS(2631), + [anon_sym_try] = ACTIONS(2631), + [anon_sym_delete] = ACTIONS(2631), + [anon_sym_throw] = ACTIONS(2631), + [anon_sym_co_return] = ACTIONS(2631), + [anon_sym_co_yield] = ACTIONS(2631), + [anon_sym_R_DQUOTE] = ACTIONS(2633), + [anon_sym_LR_DQUOTE] = ACTIONS(2633), + [anon_sym_uR_DQUOTE] = ACTIONS(2633), + [anon_sym_UR_DQUOTE] = ACTIONS(2633), + [anon_sym_u8R_DQUOTE] = ACTIONS(2633), + [anon_sym_co_await] = ACTIONS(2631), + [anon_sym_new] = ACTIONS(2631), + [anon_sym_requires] = ACTIONS(2631), + [sym_this] = ACTIONS(2631), + }, + [933] = { + [sym_identifier] = ACTIONS(2627), + [anon_sym_LPAREN2] = ACTIONS(2629), + [anon_sym_BANG] = ACTIONS(2629), + [anon_sym_TILDE] = ACTIONS(2629), + [anon_sym_DASH] = ACTIONS(2627), + [anon_sym_PLUS] = ACTIONS(2627), + [anon_sym_STAR] = ACTIONS(2629), + [anon_sym_AMP] = ACTIONS(2629), + [anon_sym_SEMI] = ACTIONS(2629), + [anon_sym___extension__] = ACTIONS(2627), + [anon_sym_typedef] = ACTIONS(2627), + [anon_sym_virtual] = ACTIONS(2627), + [anon_sym_extern] = ACTIONS(2627), + [anon_sym___attribute__] = ACTIONS(2627), + [anon_sym___attribute] = ACTIONS(2627), + [anon_sym_COLON_COLON] = ACTIONS(2629), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2629), + [anon_sym___declspec] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(2629), + [anon_sym_signed] = ACTIONS(2627), + [anon_sym_unsigned] = ACTIONS(2627), + [anon_sym_long] = ACTIONS(2627), + [anon_sym_short] = ACTIONS(2627), + [anon_sym_LBRACK] = ACTIONS(2627), + [anon_sym_static] = ACTIONS(2627), + [anon_sym_register] = ACTIONS(2627), + [anon_sym_inline] = ACTIONS(2627), + [anon_sym___inline] = ACTIONS(2627), + [anon_sym___inline__] = ACTIONS(2627), + [anon_sym___forceinline] = ACTIONS(2627), + [anon_sym_thread_local] = ACTIONS(2627), + [anon_sym___thread] = ACTIONS(2627), + [anon_sym_const] = ACTIONS(2627), + [anon_sym_constexpr] = ACTIONS(2627), + [anon_sym_volatile] = ACTIONS(2627), + [anon_sym_restrict] = ACTIONS(2627), + [anon_sym___restrict__] = ACTIONS(2627), + [anon_sym__Atomic] = ACTIONS(2627), + [anon_sym__Noreturn] = ACTIONS(2627), + [anon_sym_noreturn] = ACTIONS(2627), + [anon_sym__Nonnull] = ACTIONS(2627), + [anon_sym_mutable] = ACTIONS(2627), + [anon_sym_constinit] = ACTIONS(2627), + [anon_sym_consteval] = ACTIONS(2627), + [anon_sym_alignas] = ACTIONS(2627), + [anon_sym__Alignas] = ACTIONS(2627), + [sym_primitive_type] = ACTIONS(2627), + [anon_sym_enum] = ACTIONS(2627), + [anon_sym_class] = ACTIONS(2627), + [anon_sym_struct] = ACTIONS(2627), + [anon_sym_union] = ACTIONS(2627), + [anon_sym_if] = ACTIONS(2627), + [anon_sym_else] = ACTIONS(2627), + [anon_sym_switch] = ACTIONS(2627), + [anon_sym_while] = ACTIONS(2627), + [anon_sym_do] = ACTIONS(2627), + [anon_sym_for] = ACTIONS(2627), + [anon_sym_return] = ACTIONS(2627), + [anon_sym_break] = ACTIONS(2627), + [anon_sym_continue] = ACTIONS(2627), + [anon_sym_goto] = ACTIONS(2627), + [anon_sym___try] = ACTIONS(2627), + [anon_sym___leave] = ACTIONS(2627), + [anon_sym_not] = ACTIONS(2627), + [anon_sym_compl] = ACTIONS(2627), + [anon_sym_DASH_DASH] = ACTIONS(2629), + [anon_sym_PLUS_PLUS] = ACTIONS(2629), + [anon_sym_sizeof] = ACTIONS(2627), + [anon_sym___alignof__] = ACTIONS(2627), + [anon_sym___alignof] = ACTIONS(2627), + [anon_sym__alignof] = ACTIONS(2627), + [anon_sym_alignof] = ACTIONS(2627), + [anon_sym__Alignof] = ACTIONS(2627), + [anon_sym_offsetof] = ACTIONS(2627), + [anon_sym__Generic] = ACTIONS(2627), + [anon_sym_asm] = ACTIONS(2627), + [anon_sym___asm__] = ACTIONS(2627), + [anon_sym___asm] = ACTIONS(2627), + [sym_number_literal] = ACTIONS(2629), + [anon_sym_L_SQUOTE] = ACTIONS(2629), + [anon_sym_u_SQUOTE] = ACTIONS(2629), + [anon_sym_U_SQUOTE] = ACTIONS(2629), + [anon_sym_u8_SQUOTE] = ACTIONS(2629), + [anon_sym_SQUOTE] = ACTIONS(2629), + [anon_sym_L_DQUOTE] = ACTIONS(2629), + [anon_sym_u_DQUOTE] = ACTIONS(2629), + [anon_sym_U_DQUOTE] = ACTIONS(2629), + [anon_sym_u8_DQUOTE] = ACTIONS(2629), + [anon_sym_DQUOTE] = ACTIONS(2629), + [sym_true] = ACTIONS(2627), + [sym_false] = ACTIONS(2627), + [anon_sym_NULL] = ACTIONS(2627), + [anon_sym_nullptr] = ACTIONS(2627), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2627), + [anon_sym_decltype] = ACTIONS(2627), + [anon_sym_typename] = ACTIONS(2627), + [anon_sym_template] = ACTIONS(2627), + [anon_sym_try] = ACTIONS(2627), + [anon_sym_delete] = ACTIONS(2627), + [anon_sym_throw] = ACTIONS(2627), + [anon_sym_co_return] = ACTIONS(2627), + [anon_sym_co_yield] = ACTIONS(2627), + [anon_sym_R_DQUOTE] = ACTIONS(2629), + [anon_sym_LR_DQUOTE] = ACTIONS(2629), + [anon_sym_uR_DQUOTE] = ACTIONS(2629), + [anon_sym_UR_DQUOTE] = ACTIONS(2629), + [anon_sym_u8R_DQUOTE] = ACTIONS(2629), + [anon_sym_co_await] = ACTIONS(2627), + [anon_sym_new] = ACTIONS(2627), + [anon_sym_requires] = ACTIONS(2627), + [sym_this] = ACTIONS(2627), + }, + [934] = { + [sym_identifier] = ACTIONS(2703), + [anon_sym_LPAREN2] = ACTIONS(2705), + [anon_sym_BANG] = ACTIONS(2705), + [anon_sym_TILDE] = ACTIONS(2705), + [anon_sym_DASH] = ACTIONS(2703), + [anon_sym_PLUS] = ACTIONS(2703), + [anon_sym_STAR] = ACTIONS(2705), + [anon_sym_AMP] = ACTIONS(2705), + [anon_sym_SEMI] = ACTIONS(2705), + [anon_sym___extension__] = ACTIONS(2703), + [anon_sym_typedef] = ACTIONS(2703), + [anon_sym_virtual] = ACTIONS(2703), + [anon_sym_extern] = ACTIONS(2703), + [anon_sym___attribute__] = ACTIONS(2703), + [anon_sym___attribute] = ACTIONS(2703), + [anon_sym_COLON_COLON] = ACTIONS(2705), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2705), + [anon_sym___declspec] = ACTIONS(2703), + [anon_sym_LBRACE] = ACTIONS(2705), + [anon_sym_signed] = ACTIONS(2703), + [anon_sym_unsigned] = ACTIONS(2703), + [anon_sym_long] = ACTIONS(2703), + [anon_sym_short] = ACTIONS(2703), + [anon_sym_LBRACK] = ACTIONS(2703), + [anon_sym_static] = ACTIONS(2703), + [anon_sym_register] = ACTIONS(2703), + [anon_sym_inline] = ACTIONS(2703), + [anon_sym___inline] = ACTIONS(2703), + [anon_sym___inline__] = ACTIONS(2703), + [anon_sym___forceinline] = ACTIONS(2703), + [anon_sym_thread_local] = ACTIONS(2703), + [anon_sym___thread] = ACTIONS(2703), + [anon_sym_const] = ACTIONS(2703), + [anon_sym_constexpr] = ACTIONS(2703), + [anon_sym_volatile] = ACTIONS(2703), + [anon_sym_restrict] = ACTIONS(2703), + [anon_sym___restrict__] = ACTIONS(2703), + [anon_sym__Atomic] = ACTIONS(2703), + [anon_sym__Noreturn] = ACTIONS(2703), + [anon_sym_noreturn] = ACTIONS(2703), + [anon_sym__Nonnull] = ACTIONS(2703), + [anon_sym_mutable] = ACTIONS(2703), + [anon_sym_constinit] = ACTIONS(2703), + [anon_sym_consteval] = ACTIONS(2703), + [anon_sym_alignas] = ACTIONS(2703), + [anon_sym__Alignas] = ACTIONS(2703), + [sym_primitive_type] = ACTIONS(2703), + [anon_sym_enum] = ACTIONS(2703), + [anon_sym_class] = ACTIONS(2703), + [anon_sym_struct] = ACTIONS(2703), + [anon_sym_union] = ACTIONS(2703), + [anon_sym_if] = ACTIONS(2703), + [anon_sym_else] = ACTIONS(2703), + [anon_sym_switch] = ACTIONS(2703), + [anon_sym_while] = ACTIONS(2703), + [anon_sym_do] = ACTIONS(2703), + [anon_sym_for] = ACTIONS(2703), + [anon_sym_return] = ACTIONS(2703), + [anon_sym_break] = ACTIONS(2703), + [anon_sym_continue] = ACTIONS(2703), + [anon_sym_goto] = ACTIONS(2703), + [anon_sym___try] = ACTIONS(2703), + [anon_sym___leave] = ACTIONS(2703), + [anon_sym_not] = ACTIONS(2703), + [anon_sym_compl] = ACTIONS(2703), + [anon_sym_DASH_DASH] = ACTIONS(2705), + [anon_sym_PLUS_PLUS] = ACTIONS(2705), + [anon_sym_sizeof] = ACTIONS(2703), + [anon_sym___alignof__] = ACTIONS(2703), + [anon_sym___alignof] = ACTIONS(2703), + [anon_sym__alignof] = ACTIONS(2703), + [anon_sym_alignof] = ACTIONS(2703), + [anon_sym__Alignof] = ACTIONS(2703), + [anon_sym_offsetof] = ACTIONS(2703), + [anon_sym__Generic] = ACTIONS(2703), + [anon_sym_asm] = ACTIONS(2703), + [anon_sym___asm__] = ACTIONS(2703), + [anon_sym___asm] = ACTIONS(2703), + [sym_number_literal] = ACTIONS(2705), + [anon_sym_L_SQUOTE] = ACTIONS(2705), + [anon_sym_u_SQUOTE] = ACTIONS(2705), + [anon_sym_U_SQUOTE] = ACTIONS(2705), + [anon_sym_u8_SQUOTE] = ACTIONS(2705), + [anon_sym_SQUOTE] = ACTIONS(2705), + [anon_sym_L_DQUOTE] = ACTIONS(2705), + [anon_sym_u_DQUOTE] = ACTIONS(2705), + [anon_sym_U_DQUOTE] = ACTIONS(2705), + [anon_sym_u8_DQUOTE] = ACTIONS(2705), + [anon_sym_DQUOTE] = ACTIONS(2705), + [sym_true] = ACTIONS(2703), + [sym_false] = ACTIONS(2703), + [anon_sym_NULL] = ACTIONS(2703), + [anon_sym_nullptr] = ACTIONS(2703), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2703), + [anon_sym_decltype] = ACTIONS(2703), + [anon_sym_typename] = ACTIONS(2703), + [anon_sym_template] = ACTIONS(2703), + [anon_sym_try] = ACTIONS(2703), + [anon_sym_delete] = ACTIONS(2703), + [anon_sym_throw] = ACTIONS(2703), + [anon_sym_co_return] = ACTIONS(2703), + [anon_sym_co_yield] = ACTIONS(2703), + [anon_sym_R_DQUOTE] = ACTIONS(2705), + [anon_sym_LR_DQUOTE] = ACTIONS(2705), + [anon_sym_uR_DQUOTE] = ACTIONS(2705), + [anon_sym_UR_DQUOTE] = ACTIONS(2705), + [anon_sym_u8R_DQUOTE] = ACTIONS(2705), + [anon_sym_co_await] = ACTIONS(2703), + [anon_sym_new] = ACTIONS(2703), + [anon_sym_requires] = ACTIONS(2703), + [sym_this] = ACTIONS(2703), + }, + [935] = { + [sym_identifier] = ACTIONS(2755), + [anon_sym_LPAREN2] = ACTIONS(2757), + [anon_sym_BANG] = ACTIONS(2757), + [anon_sym_TILDE] = ACTIONS(2757), + [anon_sym_DASH] = ACTIONS(2755), + [anon_sym_PLUS] = ACTIONS(2755), + [anon_sym_STAR] = ACTIONS(2757), + [anon_sym_AMP] = ACTIONS(2757), + [anon_sym_SEMI] = ACTIONS(2757), + [anon_sym___extension__] = ACTIONS(2755), + [anon_sym_typedef] = ACTIONS(2755), + [anon_sym_virtual] = ACTIONS(2755), + [anon_sym_extern] = ACTIONS(2755), + [anon_sym___attribute__] = ACTIONS(2755), + [anon_sym___attribute] = ACTIONS(2755), + [anon_sym_COLON_COLON] = ACTIONS(2757), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2757), + [anon_sym___declspec] = ACTIONS(2755), + [anon_sym_LBRACE] = ACTIONS(2757), + [anon_sym_signed] = ACTIONS(2755), + [anon_sym_unsigned] = ACTIONS(2755), + [anon_sym_long] = ACTIONS(2755), + [anon_sym_short] = ACTIONS(2755), + [anon_sym_LBRACK] = ACTIONS(2755), + [anon_sym_static] = ACTIONS(2755), + [anon_sym_register] = ACTIONS(2755), + [anon_sym_inline] = ACTIONS(2755), + [anon_sym___inline] = ACTIONS(2755), + [anon_sym___inline__] = ACTIONS(2755), + [anon_sym___forceinline] = ACTIONS(2755), + [anon_sym_thread_local] = ACTIONS(2755), + [anon_sym___thread] = ACTIONS(2755), + [anon_sym_const] = ACTIONS(2755), + [anon_sym_constexpr] = ACTIONS(2755), + [anon_sym_volatile] = ACTIONS(2755), + [anon_sym_restrict] = ACTIONS(2755), + [anon_sym___restrict__] = ACTIONS(2755), + [anon_sym__Atomic] = ACTIONS(2755), + [anon_sym__Noreturn] = ACTIONS(2755), + [anon_sym_noreturn] = ACTIONS(2755), + [anon_sym__Nonnull] = ACTIONS(2755), + [anon_sym_mutable] = ACTIONS(2755), + [anon_sym_constinit] = ACTIONS(2755), + [anon_sym_consteval] = ACTIONS(2755), + [anon_sym_alignas] = ACTIONS(2755), + [anon_sym__Alignas] = ACTIONS(2755), + [sym_primitive_type] = ACTIONS(2755), + [anon_sym_enum] = ACTIONS(2755), + [anon_sym_class] = ACTIONS(2755), + [anon_sym_struct] = ACTIONS(2755), + [anon_sym_union] = ACTIONS(2755), + [anon_sym_if] = ACTIONS(2755), + [anon_sym_else] = ACTIONS(2755), + [anon_sym_switch] = ACTIONS(2755), + [anon_sym_while] = ACTIONS(2755), + [anon_sym_do] = ACTIONS(2755), + [anon_sym_for] = ACTIONS(2755), + [anon_sym_return] = ACTIONS(2755), + [anon_sym_break] = ACTIONS(2755), + [anon_sym_continue] = ACTIONS(2755), + [anon_sym_goto] = ACTIONS(2755), + [anon_sym___try] = ACTIONS(2755), + [anon_sym___leave] = ACTIONS(2755), + [anon_sym_not] = ACTIONS(2755), + [anon_sym_compl] = ACTIONS(2755), + [anon_sym_DASH_DASH] = ACTIONS(2757), + [anon_sym_PLUS_PLUS] = ACTIONS(2757), + [anon_sym_sizeof] = ACTIONS(2755), + [anon_sym___alignof__] = ACTIONS(2755), + [anon_sym___alignof] = ACTIONS(2755), + [anon_sym__alignof] = ACTIONS(2755), + [anon_sym_alignof] = ACTIONS(2755), + [anon_sym__Alignof] = ACTIONS(2755), + [anon_sym_offsetof] = ACTIONS(2755), + [anon_sym__Generic] = ACTIONS(2755), + [anon_sym_asm] = ACTIONS(2755), + [anon_sym___asm__] = ACTIONS(2755), + [anon_sym___asm] = ACTIONS(2755), + [sym_number_literal] = ACTIONS(2757), + [anon_sym_L_SQUOTE] = ACTIONS(2757), + [anon_sym_u_SQUOTE] = ACTIONS(2757), + [anon_sym_U_SQUOTE] = ACTIONS(2757), + [anon_sym_u8_SQUOTE] = ACTIONS(2757), + [anon_sym_SQUOTE] = ACTIONS(2757), + [anon_sym_L_DQUOTE] = ACTIONS(2757), + [anon_sym_u_DQUOTE] = ACTIONS(2757), + [anon_sym_U_DQUOTE] = ACTIONS(2757), + [anon_sym_u8_DQUOTE] = ACTIONS(2757), + [anon_sym_DQUOTE] = ACTIONS(2757), + [sym_true] = ACTIONS(2755), + [sym_false] = ACTIONS(2755), + [anon_sym_NULL] = ACTIONS(2755), + [anon_sym_nullptr] = ACTIONS(2755), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2755), + [anon_sym_decltype] = ACTIONS(2755), + [anon_sym_typename] = ACTIONS(2755), + [anon_sym_template] = ACTIONS(2755), + [anon_sym_try] = ACTIONS(2755), + [anon_sym_delete] = ACTIONS(2755), + [anon_sym_throw] = ACTIONS(2755), + [anon_sym_co_return] = ACTIONS(2755), + [anon_sym_co_yield] = ACTIONS(2755), + [anon_sym_R_DQUOTE] = ACTIONS(2757), + [anon_sym_LR_DQUOTE] = ACTIONS(2757), + [anon_sym_uR_DQUOTE] = ACTIONS(2757), + [anon_sym_UR_DQUOTE] = ACTIONS(2757), + [anon_sym_u8R_DQUOTE] = ACTIONS(2757), + [anon_sym_co_await] = ACTIONS(2755), + [anon_sym_new] = ACTIONS(2755), + [anon_sym_requires] = ACTIONS(2755), + [sym_this] = ACTIONS(2755), + }, + [936] = { [sym_identifier] = ACTIONS(2635), [anon_sym_LPAREN2] = ACTIONS(2637), [anon_sym_BANG] = ACTIONS(2637), @@ -167102,7 +172926,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2635), [sym_this] = ACTIONS(2635), }, - [892] = { + [937] = { [sym_identifier] = ACTIONS(2735), [anon_sym_LPAREN2] = ACTIONS(2737), [anon_sym_BANG] = ACTIONS(2737), @@ -167183,382 +173007,268 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___asm] = ACTIONS(2735), [sym_number_literal] = ACTIONS(2737), [anon_sym_L_SQUOTE] = ACTIONS(2737), - [anon_sym_u_SQUOTE] = ACTIONS(2737), - [anon_sym_U_SQUOTE] = ACTIONS(2737), - [anon_sym_u8_SQUOTE] = ACTIONS(2737), - [anon_sym_SQUOTE] = ACTIONS(2737), - [anon_sym_L_DQUOTE] = ACTIONS(2737), - [anon_sym_u_DQUOTE] = ACTIONS(2737), - [anon_sym_U_DQUOTE] = ACTIONS(2737), - [anon_sym_u8_DQUOTE] = ACTIONS(2737), - [anon_sym_DQUOTE] = ACTIONS(2737), - [sym_true] = ACTIONS(2735), - [sym_false] = ACTIONS(2735), - [anon_sym_NULL] = ACTIONS(2735), - [anon_sym_nullptr] = ACTIONS(2735), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2735), - [anon_sym_decltype] = ACTIONS(2735), - [anon_sym_typename] = ACTIONS(2735), - [anon_sym_template] = ACTIONS(2735), - [anon_sym_try] = ACTIONS(2735), - [anon_sym_delete] = ACTIONS(2735), - [anon_sym_throw] = ACTIONS(2735), - [anon_sym_co_return] = ACTIONS(2735), - [anon_sym_co_yield] = ACTIONS(2735), - [anon_sym_R_DQUOTE] = ACTIONS(2737), - [anon_sym_LR_DQUOTE] = ACTIONS(2737), - [anon_sym_uR_DQUOTE] = ACTIONS(2737), - [anon_sym_UR_DQUOTE] = ACTIONS(2737), - [anon_sym_u8R_DQUOTE] = ACTIONS(2737), - [anon_sym_co_await] = ACTIONS(2735), - [anon_sym_new] = ACTIONS(2735), - [anon_sym_requires] = ACTIONS(2735), - [sym_this] = ACTIONS(2735), - }, - [893] = { - [sym_identifier] = ACTIONS(2747), - [anon_sym_LPAREN2] = ACTIONS(2749), - [anon_sym_BANG] = ACTIONS(2749), - [anon_sym_TILDE] = ACTIONS(2749), - [anon_sym_DASH] = ACTIONS(2747), - [anon_sym_PLUS] = ACTIONS(2747), - [anon_sym_STAR] = ACTIONS(2749), - [anon_sym_AMP] = ACTIONS(2749), - [anon_sym_SEMI] = ACTIONS(2749), - [anon_sym___extension__] = ACTIONS(2747), - [anon_sym_typedef] = ACTIONS(2747), - [anon_sym_virtual] = ACTIONS(2747), - [anon_sym_extern] = ACTIONS(2747), - [anon_sym___attribute__] = ACTIONS(2747), - [anon_sym___attribute] = ACTIONS(2747), - [anon_sym_COLON_COLON] = ACTIONS(2749), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2749), - [anon_sym___declspec] = ACTIONS(2747), - [anon_sym_LBRACE] = ACTIONS(2749), - [anon_sym_signed] = ACTIONS(2747), - [anon_sym_unsigned] = ACTIONS(2747), - [anon_sym_long] = ACTIONS(2747), - [anon_sym_short] = ACTIONS(2747), - [anon_sym_LBRACK] = ACTIONS(2747), - [anon_sym_static] = ACTIONS(2747), - [anon_sym_register] = ACTIONS(2747), - [anon_sym_inline] = ACTIONS(2747), - [anon_sym___inline] = ACTIONS(2747), - [anon_sym___inline__] = ACTIONS(2747), - [anon_sym___forceinline] = ACTIONS(2747), - [anon_sym_thread_local] = ACTIONS(2747), - [anon_sym___thread] = ACTIONS(2747), - [anon_sym_const] = ACTIONS(2747), - [anon_sym_constexpr] = ACTIONS(2747), - [anon_sym_volatile] = ACTIONS(2747), - [anon_sym_restrict] = ACTIONS(2747), - [anon_sym___restrict__] = ACTIONS(2747), - [anon_sym__Atomic] = ACTIONS(2747), - [anon_sym__Noreturn] = ACTIONS(2747), - [anon_sym_noreturn] = ACTIONS(2747), - [anon_sym__Nonnull] = ACTIONS(2747), - [anon_sym_mutable] = ACTIONS(2747), - [anon_sym_constinit] = ACTIONS(2747), - [anon_sym_consteval] = ACTIONS(2747), - [anon_sym_alignas] = ACTIONS(2747), - [anon_sym__Alignas] = ACTIONS(2747), - [sym_primitive_type] = ACTIONS(2747), - [anon_sym_enum] = ACTIONS(2747), - [anon_sym_class] = ACTIONS(2747), - [anon_sym_struct] = ACTIONS(2747), - [anon_sym_union] = ACTIONS(2747), - [anon_sym_if] = ACTIONS(2747), - [anon_sym_else] = ACTIONS(2747), - [anon_sym_switch] = ACTIONS(2747), - [anon_sym_while] = ACTIONS(2747), - [anon_sym_do] = ACTIONS(2747), - [anon_sym_for] = ACTIONS(2747), - [anon_sym_return] = ACTIONS(2747), - [anon_sym_break] = ACTIONS(2747), - [anon_sym_continue] = ACTIONS(2747), - [anon_sym_goto] = ACTIONS(2747), - [anon_sym___try] = ACTIONS(2747), - [anon_sym___leave] = ACTIONS(2747), - [anon_sym_not] = ACTIONS(2747), - [anon_sym_compl] = ACTIONS(2747), - [anon_sym_DASH_DASH] = ACTIONS(2749), - [anon_sym_PLUS_PLUS] = ACTIONS(2749), - [anon_sym_sizeof] = ACTIONS(2747), - [anon_sym___alignof__] = ACTIONS(2747), - [anon_sym___alignof] = ACTIONS(2747), - [anon_sym__alignof] = ACTIONS(2747), - [anon_sym_alignof] = ACTIONS(2747), - [anon_sym__Alignof] = ACTIONS(2747), - [anon_sym_offsetof] = ACTIONS(2747), - [anon_sym__Generic] = ACTIONS(2747), - [anon_sym_asm] = ACTIONS(2747), - [anon_sym___asm__] = ACTIONS(2747), - [anon_sym___asm] = ACTIONS(2747), - [sym_number_literal] = ACTIONS(2749), - [anon_sym_L_SQUOTE] = ACTIONS(2749), - [anon_sym_u_SQUOTE] = ACTIONS(2749), - [anon_sym_U_SQUOTE] = ACTIONS(2749), - [anon_sym_u8_SQUOTE] = ACTIONS(2749), - [anon_sym_SQUOTE] = ACTIONS(2749), - [anon_sym_L_DQUOTE] = ACTIONS(2749), - [anon_sym_u_DQUOTE] = ACTIONS(2749), - [anon_sym_U_DQUOTE] = ACTIONS(2749), - [anon_sym_u8_DQUOTE] = ACTIONS(2749), - [anon_sym_DQUOTE] = ACTIONS(2749), - [sym_true] = ACTIONS(2747), - [sym_false] = ACTIONS(2747), - [anon_sym_NULL] = ACTIONS(2747), - [anon_sym_nullptr] = ACTIONS(2747), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2747), - [anon_sym_decltype] = ACTIONS(2747), - [anon_sym_typename] = ACTIONS(2747), - [anon_sym_template] = ACTIONS(2747), - [anon_sym_try] = ACTIONS(2747), - [anon_sym_delete] = ACTIONS(2747), - [anon_sym_throw] = ACTIONS(2747), - [anon_sym_co_return] = ACTIONS(2747), - [anon_sym_co_yield] = ACTIONS(2747), - [anon_sym_R_DQUOTE] = ACTIONS(2749), - [anon_sym_LR_DQUOTE] = ACTIONS(2749), - [anon_sym_uR_DQUOTE] = ACTIONS(2749), - [anon_sym_UR_DQUOTE] = ACTIONS(2749), - [anon_sym_u8R_DQUOTE] = ACTIONS(2749), - [anon_sym_co_await] = ACTIONS(2747), - [anon_sym_new] = ACTIONS(2747), - [anon_sym_requires] = ACTIONS(2747), - [sym_this] = ACTIONS(2747), - }, - [894] = { - [sym_identifier] = ACTIONS(2739), - [anon_sym_LPAREN2] = ACTIONS(2741), - [anon_sym_BANG] = ACTIONS(2741), - [anon_sym_TILDE] = ACTIONS(2741), - [anon_sym_DASH] = ACTIONS(2739), - [anon_sym_PLUS] = ACTIONS(2739), - [anon_sym_STAR] = ACTIONS(2741), - [anon_sym_AMP] = ACTIONS(2741), - [anon_sym_SEMI] = ACTIONS(2741), - [anon_sym___extension__] = ACTIONS(2739), - [anon_sym_typedef] = ACTIONS(2739), - [anon_sym_virtual] = ACTIONS(2739), - [anon_sym_extern] = ACTIONS(2739), - [anon_sym___attribute__] = ACTIONS(2739), - [anon_sym___attribute] = ACTIONS(2739), - [anon_sym_COLON_COLON] = ACTIONS(2741), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2741), - [anon_sym___declspec] = ACTIONS(2739), - [anon_sym_LBRACE] = ACTIONS(2741), - [anon_sym_signed] = ACTIONS(2739), - [anon_sym_unsigned] = ACTIONS(2739), - [anon_sym_long] = ACTIONS(2739), - [anon_sym_short] = ACTIONS(2739), - [anon_sym_LBRACK] = ACTIONS(2739), - [anon_sym_static] = ACTIONS(2739), - [anon_sym_register] = ACTIONS(2739), - [anon_sym_inline] = ACTIONS(2739), - [anon_sym___inline] = ACTIONS(2739), - [anon_sym___inline__] = ACTIONS(2739), - [anon_sym___forceinline] = ACTIONS(2739), - [anon_sym_thread_local] = ACTIONS(2739), - [anon_sym___thread] = ACTIONS(2739), - [anon_sym_const] = ACTIONS(2739), - [anon_sym_constexpr] = ACTIONS(2739), - [anon_sym_volatile] = ACTIONS(2739), - [anon_sym_restrict] = ACTIONS(2739), - [anon_sym___restrict__] = ACTIONS(2739), - [anon_sym__Atomic] = ACTIONS(2739), - [anon_sym__Noreturn] = ACTIONS(2739), - [anon_sym_noreturn] = ACTIONS(2739), - [anon_sym__Nonnull] = ACTIONS(2739), - [anon_sym_mutable] = ACTIONS(2739), - [anon_sym_constinit] = ACTIONS(2739), - [anon_sym_consteval] = ACTIONS(2739), - [anon_sym_alignas] = ACTIONS(2739), - [anon_sym__Alignas] = ACTIONS(2739), - [sym_primitive_type] = ACTIONS(2739), - [anon_sym_enum] = ACTIONS(2739), - [anon_sym_class] = ACTIONS(2739), - [anon_sym_struct] = ACTIONS(2739), - [anon_sym_union] = ACTIONS(2739), - [anon_sym_if] = ACTIONS(2739), - [anon_sym_else] = ACTIONS(2739), - [anon_sym_switch] = ACTIONS(2739), - [anon_sym_while] = ACTIONS(2739), - [anon_sym_do] = ACTIONS(2739), - [anon_sym_for] = ACTIONS(2739), - [anon_sym_return] = ACTIONS(2739), - [anon_sym_break] = ACTIONS(2739), - [anon_sym_continue] = ACTIONS(2739), - [anon_sym_goto] = ACTIONS(2739), - [anon_sym___try] = ACTIONS(2739), - [anon_sym___leave] = ACTIONS(2739), - [anon_sym_not] = ACTIONS(2739), - [anon_sym_compl] = ACTIONS(2739), - [anon_sym_DASH_DASH] = ACTIONS(2741), - [anon_sym_PLUS_PLUS] = ACTIONS(2741), - [anon_sym_sizeof] = ACTIONS(2739), - [anon_sym___alignof__] = ACTIONS(2739), - [anon_sym___alignof] = ACTIONS(2739), - [anon_sym__alignof] = ACTIONS(2739), - [anon_sym_alignof] = ACTIONS(2739), - [anon_sym__Alignof] = ACTIONS(2739), - [anon_sym_offsetof] = ACTIONS(2739), - [anon_sym__Generic] = ACTIONS(2739), - [anon_sym_asm] = ACTIONS(2739), - [anon_sym___asm__] = ACTIONS(2739), - [anon_sym___asm] = ACTIONS(2739), - [sym_number_literal] = ACTIONS(2741), - [anon_sym_L_SQUOTE] = ACTIONS(2741), - [anon_sym_u_SQUOTE] = ACTIONS(2741), - [anon_sym_U_SQUOTE] = ACTIONS(2741), - [anon_sym_u8_SQUOTE] = ACTIONS(2741), - [anon_sym_SQUOTE] = ACTIONS(2741), - [anon_sym_L_DQUOTE] = ACTIONS(2741), - [anon_sym_u_DQUOTE] = ACTIONS(2741), - [anon_sym_U_DQUOTE] = ACTIONS(2741), - [anon_sym_u8_DQUOTE] = ACTIONS(2741), - [anon_sym_DQUOTE] = ACTIONS(2741), - [sym_true] = ACTIONS(2739), - [sym_false] = ACTIONS(2739), - [anon_sym_NULL] = ACTIONS(2739), - [anon_sym_nullptr] = ACTIONS(2739), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2739), - [anon_sym_decltype] = ACTIONS(2739), - [anon_sym_typename] = ACTIONS(2739), - [anon_sym_template] = ACTIONS(2739), - [anon_sym_try] = ACTIONS(2739), - [anon_sym_delete] = ACTIONS(2739), - [anon_sym_throw] = ACTIONS(2739), - [anon_sym_co_return] = ACTIONS(2739), - [anon_sym_co_yield] = ACTIONS(2739), - [anon_sym_R_DQUOTE] = ACTIONS(2741), - [anon_sym_LR_DQUOTE] = ACTIONS(2741), - [anon_sym_uR_DQUOTE] = ACTIONS(2741), - [anon_sym_UR_DQUOTE] = ACTIONS(2741), - [anon_sym_u8R_DQUOTE] = ACTIONS(2741), - [anon_sym_co_await] = ACTIONS(2739), - [anon_sym_new] = ACTIONS(2739), - [anon_sym_requires] = ACTIONS(2739), - [sym_this] = ACTIONS(2739), - }, - [895] = { - [sym_identifier] = ACTIONS(2759), - [anon_sym_LPAREN2] = ACTIONS(2761), - [anon_sym_BANG] = ACTIONS(2761), - [anon_sym_TILDE] = ACTIONS(2761), - [anon_sym_DASH] = ACTIONS(2759), - [anon_sym_PLUS] = ACTIONS(2759), - [anon_sym_STAR] = ACTIONS(2761), - [anon_sym_AMP] = ACTIONS(2761), - [anon_sym_SEMI] = ACTIONS(2761), - [anon_sym___extension__] = ACTIONS(2759), - [anon_sym_typedef] = ACTIONS(2759), - [anon_sym_virtual] = ACTIONS(2759), - [anon_sym_extern] = ACTIONS(2759), - [anon_sym___attribute__] = ACTIONS(2759), - [anon_sym___attribute] = ACTIONS(2759), - [anon_sym_COLON_COLON] = ACTIONS(2761), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2761), - [anon_sym___declspec] = ACTIONS(2759), - [anon_sym_LBRACE] = ACTIONS(2761), - [anon_sym_signed] = ACTIONS(2759), - [anon_sym_unsigned] = ACTIONS(2759), - [anon_sym_long] = ACTIONS(2759), - [anon_sym_short] = ACTIONS(2759), - [anon_sym_LBRACK] = ACTIONS(2759), - [anon_sym_static] = ACTIONS(2759), - [anon_sym_register] = ACTIONS(2759), - [anon_sym_inline] = ACTIONS(2759), - [anon_sym___inline] = ACTIONS(2759), - [anon_sym___inline__] = ACTIONS(2759), - [anon_sym___forceinline] = ACTIONS(2759), - [anon_sym_thread_local] = ACTIONS(2759), - [anon_sym___thread] = ACTIONS(2759), - [anon_sym_const] = ACTIONS(2759), - [anon_sym_constexpr] = ACTIONS(2759), - [anon_sym_volatile] = ACTIONS(2759), - [anon_sym_restrict] = ACTIONS(2759), - [anon_sym___restrict__] = ACTIONS(2759), - [anon_sym__Atomic] = ACTIONS(2759), - [anon_sym__Noreturn] = ACTIONS(2759), - [anon_sym_noreturn] = ACTIONS(2759), - [anon_sym__Nonnull] = ACTIONS(2759), - [anon_sym_mutable] = ACTIONS(2759), - [anon_sym_constinit] = ACTIONS(2759), - [anon_sym_consteval] = ACTIONS(2759), - [anon_sym_alignas] = ACTIONS(2759), - [anon_sym__Alignas] = ACTIONS(2759), - [sym_primitive_type] = ACTIONS(2759), - [anon_sym_enum] = ACTIONS(2759), - [anon_sym_class] = ACTIONS(2759), - [anon_sym_struct] = ACTIONS(2759), - [anon_sym_union] = ACTIONS(2759), - [anon_sym_if] = ACTIONS(2759), - [anon_sym_else] = ACTIONS(2759), - [anon_sym_switch] = ACTIONS(2759), - [anon_sym_while] = ACTIONS(2759), - [anon_sym_do] = ACTIONS(2759), - [anon_sym_for] = ACTIONS(2759), - [anon_sym_return] = ACTIONS(2759), - [anon_sym_break] = ACTIONS(2759), - [anon_sym_continue] = ACTIONS(2759), - [anon_sym_goto] = ACTIONS(2759), - [anon_sym___try] = ACTIONS(2759), - [anon_sym___leave] = ACTIONS(2759), - [anon_sym_not] = ACTIONS(2759), - [anon_sym_compl] = ACTIONS(2759), - [anon_sym_DASH_DASH] = ACTIONS(2761), - [anon_sym_PLUS_PLUS] = ACTIONS(2761), - [anon_sym_sizeof] = ACTIONS(2759), - [anon_sym___alignof__] = ACTIONS(2759), - [anon_sym___alignof] = ACTIONS(2759), - [anon_sym__alignof] = ACTIONS(2759), - [anon_sym_alignof] = ACTIONS(2759), - [anon_sym__Alignof] = ACTIONS(2759), - [anon_sym_offsetof] = ACTIONS(2759), - [anon_sym__Generic] = ACTIONS(2759), - [anon_sym_asm] = ACTIONS(2759), - [anon_sym___asm__] = ACTIONS(2759), - [anon_sym___asm] = ACTIONS(2759), - [sym_number_literal] = ACTIONS(2761), - [anon_sym_L_SQUOTE] = ACTIONS(2761), - [anon_sym_u_SQUOTE] = ACTIONS(2761), - [anon_sym_U_SQUOTE] = ACTIONS(2761), - [anon_sym_u8_SQUOTE] = ACTIONS(2761), - [anon_sym_SQUOTE] = ACTIONS(2761), - [anon_sym_L_DQUOTE] = ACTIONS(2761), - [anon_sym_u_DQUOTE] = ACTIONS(2761), - [anon_sym_U_DQUOTE] = ACTIONS(2761), - [anon_sym_u8_DQUOTE] = ACTIONS(2761), - [anon_sym_DQUOTE] = ACTIONS(2761), - [sym_true] = ACTIONS(2759), - [sym_false] = ACTIONS(2759), - [anon_sym_NULL] = ACTIONS(2759), - [anon_sym_nullptr] = ACTIONS(2759), + [anon_sym_u_SQUOTE] = ACTIONS(2737), + [anon_sym_U_SQUOTE] = ACTIONS(2737), + [anon_sym_u8_SQUOTE] = ACTIONS(2737), + [anon_sym_SQUOTE] = ACTIONS(2737), + [anon_sym_L_DQUOTE] = ACTIONS(2737), + [anon_sym_u_DQUOTE] = ACTIONS(2737), + [anon_sym_U_DQUOTE] = ACTIONS(2737), + [anon_sym_u8_DQUOTE] = ACTIONS(2737), + [anon_sym_DQUOTE] = ACTIONS(2737), + [sym_true] = ACTIONS(2735), + [sym_false] = ACTIONS(2735), + [anon_sym_NULL] = ACTIONS(2735), + [anon_sym_nullptr] = ACTIONS(2735), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2759), - [anon_sym_decltype] = ACTIONS(2759), - [anon_sym_typename] = ACTIONS(2759), - [anon_sym_template] = ACTIONS(2759), - [anon_sym_try] = ACTIONS(2759), - [anon_sym_delete] = ACTIONS(2759), - [anon_sym_throw] = ACTIONS(2759), - [anon_sym_co_return] = ACTIONS(2759), - [anon_sym_co_yield] = ACTIONS(2759), - [anon_sym_R_DQUOTE] = ACTIONS(2761), - [anon_sym_LR_DQUOTE] = ACTIONS(2761), - [anon_sym_uR_DQUOTE] = ACTIONS(2761), - [anon_sym_UR_DQUOTE] = ACTIONS(2761), - [anon_sym_u8R_DQUOTE] = ACTIONS(2761), - [anon_sym_co_await] = ACTIONS(2759), - [anon_sym_new] = ACTIONS(2759), - [anon_sym_requires] = ACTIONS(2759), - [sym_this] = ACTIONS(2759), + [sym_auto] = ACTIONS(2735), + [anon_sym_decltype] = ACTIONS(2735), + [anon_sym_typename] = ACTIONS(2735), + [anon_sym_template] = ACTIONS(2735), + [anon_sym_try] = ACTIONS(2735), + [anon_sym_delete] = ACTIONS(2735), + [anon_sym_throw] = ACTIONS(2735), + [anon_sym_co_return] = ACTIONS(2735), + [anon_sym_co_yield] = ACTIONS(2735), + [anon_sym_R_DQUOTE] = ACTIONS(2737), + [anon_sym_LR_DQUOTE] = ACTIONS(2737), + [anon_sym_uR_DQUOTE] = ACTIONS(2737), + [anon_sym_UR_DQUOTE] = ACTIONS(2737), + [anon_sym_u8R_DQUOTE] = ACTIONS(2737), + [anon_sym_co_await] = ACTIONS(2735), + [anon_sym_new] = ACTIONS(2735), + [anon_sym_requires] = ACTIONS(2735), + [sym_this] = ACTIONS(2735), }, - [896] = { + [938] = { + [sym_identifier] = ACTIONS(2667), + [anon_sym_LPAREN2] = ACTIONS(2669), + [anon_sym_BANG] = ACTIONS(2669), + [anon_sym_TILDE] = ACTIONS(2669), + [anon_sym_DASH] = ACTIONS(2667), + [anon_sym_PLUS] = ACTIONS(2667), + [anon_sym_STAR] = ACTIONS(2669), + [anon_sym_AMP] = ACTIONS(2669), + [anon_sym_SEMI] = ACTIONS(2669), + [anon_sym___extension__] = ACTIONS(2667), + [anon_sym_typedef] = ACTIONS(2667), + [anon_sym_virtual] = ACTIONS(2667), + [anon_sym_extern] = ACTIONS(2667), + [anon_sym___attribute__] = ACTIONS(2667), + [anon_sym___attribute] = ACTIONS(2667), + [anon_sym_COLON_COLON] = ACTIONS(2669), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2669), + [anon_sym___declspec] = ACTIONS(2667), + [anon_sym_LBRACE] = ACTIONS(2669), + [anon_sym_signed] = ACTIONS(2667), + [anon_sym_unsigned] = ACTIONS(2667), + [anon_sym_long] = ACTIONS(2667), + [anon_sym_short] = ACTIONS(2667), + [anon_sym_LBRACK] = ACTIONS(2667), + [anon_sym_static] = ACTIONS(2667), + [anon_sym_register] = ACTIONS(2667), + [anon_sym_inline] = ACTIONS(2667), + [anon_sym___inline] = ACTIONS(2667), + [anon_sym___inline__] = ACTIONS(2667), + [anon_sym___forceinline] = ACTIONS(2667), + [anon_sym_thread_local] = ACTIONS(2667), + [anon_sym___thread] = ACTIONS(2667), + [anon_sym_const] = ACTIONS(2667), + [anon_sym_constexpr] = ACTIONS(2667), + [anon_sym_volatile] = ACTIONS(2667), + [anon_sym_restrict] = ACTIONS(2667), + [anon_sym___restrict__] = ACTIONS(2667), + [anon_sym__Atomic] = ACTIONS(2667), + [anon_sym__Noreturn] = ACTIONS(2667), + [anon_sym_noreturn] = ACTIONS(2667), + [anon_sym__Nonnull] = ACTIONS(2667), + [anon_sym_mutable] = ACTIONS(2667), + [anon_sym_constinit] = ACTIONS(2667), + [anon_sym_consteval] = ACTIONS(2667), + [anon_sym_alignas] = ACTIONS(2667), + [anon_sym__Alignas] = ACTIONS(2667), + [sym_primitive_type] = ACTIONS(2667), + [anon_sym_enum] = ACTIONS(2667), + [anon_sym_class] = ACTIONS(2667), + [anon_sym_struct] = ACTIONS(2667), + [anon_sym_union] = ACTIONS(2667), + [anon_sym_if] = ACTIONS(2667), + [anon_sym_else] = ACTIONS(2667), + [anon_sym_switch] = ACTIONS(2667), + [anon_sym_while] = ACTIONS(2667), + [anon_sym_do] = ACTIONS(2667), + [anon_sym_for] = ACTIONS(2667), + [anon_sym_return] = ACTIONS(2667), + [anon_sym_break] = ACTIONS(2667), + [anon_sym_continue] = ACTIONS(2667), + [anon_sym_goto] = ACTIONS(2667), + [anon_sym___try] = ACTIONS(2667), + [anon_sym___leave] = ACTIONS(2667), + [anon_sym_not] = ACTIONS(2667), + [anon_sym_compl] = ACTIONS(2667), + [anon_sym_DASH_DASH] = ACTIONS(2669), + [anon_sym_PLUS_PLUS] = ACTIONS(2669), + [anon_sym_sizeof] = ACTIONS(2667), + [anon_sym___alignof__] = ACTIONS(2667), + [anon_sym___alignof] = ACTIONS(2667), + [anon_sym__alignof] = ACTIONS(2667), + [anon_sym_alignof] = ACTIONS(2667), + [anon_sym__Alignof] = ACTIONS(2667), + [anon_sym_offsetof] = ACTIONS(2667), + [anon_sym__Generic] = ACTIONS(2667), + [anon_sym_asm] = ACTIONS(2667), + [anon_sym___asm__] = ACTIONS(2667), + [anon_sym___asm] = ACTIONS(2667), + [sym_number_literal] = ACTIONS(2669), + [anon_sym_L_SQUOTE] = ACTIONS(2669), + [anon_sym_u_SQUOTE] = ACTIONS(2669), + [anon_sym_U_SQUOTE] = ACTIONS(2669), + [anon_sym_u8_SQUOTE] = ACTIONS(2669), + [anon_sym_SQUOTE] = ACTIONS(2669), + [anon_sym_L_DQUOTE] = ACTIONS(2669), + [anon_sym_u_DQUOTE] = ACTIONS(2669), + [anon_sym_U_DQUOTE] = ACTIONS(2669), + [anon_sym_u8_DQUOTE] = ACTIONS(2669), + [anon_sym_DQUOTE] = ACTIONS(2669), + [sym_true] = ACTIONS(2667), + [sym_false] = ACTIONS(2667), + [anon_sym_NULL] = ACTIONS(2667), + [anon_sym_nullptr] = ACTIONS(2667), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2667), + [anon_sym_decltype] = ACTIONS(2667), + [anon_sym_typename] = ACTIONS(2667), + [anon_sym_template] = ACTIONS(2667), + [anon_sym_try] = ACTIONS(2667), + [anon_sym_delete] = ACTIONS(2667), + [anon_sym_throw] = ACTIONS(2667), + [anon_sym_co_return] = ACTIONS(2667), + [anon_sym_co_yield] = ACTIONS(2667), + [anon_sym_R_DQUOTE] = ACTIONS(2669), + [anon_sym_LR_DQUOTE] = ACTIONS(2669), + [anon_sym_uR_DQUOTE] = ACTIONS(2669), + [anon_sym_UR_DQUOTE] = ACTIONS(2669), + [anon_sym_u8R_DQUOTE] = ACTIONS(2669), + [anon_sym_co_await] = ACTIONS(2667), + [anon_sym_new] = ACTIONS(2667), + [anon_sym_requires] = ACTIONS(2667), + [sym_this] = ACTIONS(2667), + }, + [939] = { + [sym_identifier] = ACTIONS(2687), + [anon_sym_LPAREN2] = ACTIONS(2689), + [anon_sym_BANG] = ACTIONS(2689), + [anon_sym_TILDE] = ACTIONS(2689), + [anon_sym_DASH] = ACTIONS(2687), + [anon_sym_PLUS] = ACTIONS(2687), + [anon_sym_STAR] = ACTIONS(2689), + [anon_sym_AMP] = ACTIONS(2689), + [anon_sym_SEMI] = ACTIONS(2689), + [anon_sym___extension__] = ACTIONS(2687), + [anon_sym_typedef] = ACTIONS(2687), + [anon_sym_virtual] = ACTIONS(2687), + [anon_sym_extern] = ACTIONS(2687), + [anon_sym___attribute__] = ACTIONS(2687), + [anon_sym___attribute] = ACTIONS(2687), + [anon_sym_COLON_COLON] = ACTIONS(2689), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2689), + [anon_sym___declspec] = ACTIONS(2687), + [anon_sym_LBRACE] = ACTIONS(2689), + [anon_sym_signed] = ACTIONS(2687), + [anon_sym_unsigned] = ACTIONS(2687), + [anon_sym_long] = ACTIONS(2687), + [anon_sym_short] = ACTIONS(2687), + [anon_sym_LBRACK] = ACTIONS(2687), + [anon_sym_static] = ACTIONS(2687), + [anon_sym_register] = ACTIONS(2687), + [anon_sym_inline] = ACTIONS(2687), + [anon_sym___inline] = ACTIONS(2687), + [anon_sym___inline__] = ACTIONS(2687), + [anon_sym___forceinline] = ACTIONS(2687), + [anon_sym_thread_local] = ACTIONS(2687), + [anon_sym___thread] = ACTIONS(2687), + [anon_sym_const] = ACTIONS(2687), + [anon_sym_constexpr] = ACTIONS(2687), + [anon_sym_volatile] = ACTIONS(2687), + [anon_sym_restrict] = ACTIONS(2687), + [anon_sym___restrict__] = ACTIONS(2687), + [anon_sym__Atomic] = ACTIONS(2687), + [anon_sym__Noreturn] = ACTIONS(2687), + [anon_sym_noreturn] = ACTIONS(2687), + [anon_sym__Nonnull] = ACTIONS(2687), + [anon_sym_mutable] = ACTIONS(2687), + [anon_sym_constinit] = ACTIONS(2687), + [anon_sym_consteval] = ACTIONS(2687), + [anon_sym_alignas] = ACTIONS(2687), + [anon_sym__Alignas] = ACTIONS(2687), + [sym_primitive_type] = ACTIONS(2687), + [anon_sym_enum] = ACTIONS(2687), + [anon_sym_class] = ACTIONS(2687), + [anon_sym_struct] = ACTIONS(2687), + [anon_sym_union] = ACTIONS(2687), + [anon_sym_if] = ACTIONS(2687), + [anon_sym_else] = ACTIONS(2687), + [anon_sym_switch] = ACTIONS(2687), + [anon_sym_while] = ACTIONS(2687), + [anon_sym_do] = ACTIONS(2687), + [anon_sym_for] = ACTIONS(2687), + [anon_sym_return] = ACTIONS(2687), + [anon_sym_break] = ACTIONS(2687), + [anon_sym_continue] = ACTIONS(2687), + [anon_sym_goto] = ACTIONS(2687), + [anon_sym___try] = ACTIONS(2687), + [anon_sym___leave] = ACTIONS(2687), + [anon_sym_not] = ACTIONS(2687), + [anon_sym_compl] = ACTIONS(2687), + [anon_sym_DASH_DASH] = ACTIONS(2689), + [anon_sym_PLUS_PLUS] = ACTIONS(2689), + [anon_sym_sizeof] = ACTIONS(2687), + [anon_sym___alignof__] = ACTIONS(2687), + [anon_sym___alignof] = ACTIONS(2687), + [anon_sym__alignof] = ACTIONS(2687), + [anon_sym_alignof] = ACTIONS(2687), + [anon_sym__Alignof] = ACTIONS(2687), + [anon_sym_offsetof] = ACTIONS(2687), + [anon_sym__Generic] = ACTIONS(2687), + [anon_sym_asm] = ACTIONS(2687), + [anon_sym___asm__] = ACTIONS(2687), + [anon_sym___asm] = ACTIONS(2687), + [sym_number_literal] = ACTIONS(2689), + [anon_sym_L_SQUOTE] = ACTIONS(2689), + [anon_sym_u_SQUOTE] = ACTIONS(2689), + [anon_sym_U_SQUOTE] = ACTIONS(2689), + [anon_sym_u8_SQUOTE] = ACTIONS(2689), + [anon_sym_SQUOTE] = ACTIONS(2689), + [anon_sym_L_DQUOTE] = ACTIONS(2689), + [anon_sym_u_DQUOTE] = ACTIONS(2689), + [anon_sym_U_DQUOTE] = ACTIONS(2689), + [anon_sym_u8_DQUOTE] = ACTIONS(2689), + [anon_sym_DQUOTE] = ACTIONS(2689), + [sym_true] = ACTIONS(2687), + [sym_false] = ACTIONS(2687), + [anon_sym_NULL] = ACTIONS(2687), + [anon_sym_nullptr] = ACTIONS(2687), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2687), + [anon_sym_decltype] = ACTIONS(2687), + [anon_sym_typename] = ACTIONS(2687), + [anon_sym_template] = ACTIONS(2687), + [anon_sym_try] = ACTIONS(2687), + [anon_sym_delete] = ACTIONS(2687), + [anon_sym_throw] = ACTIONS(2687), + [anon_sym_co_return] = ACTIONS(2687), + [anon_sym_co_yield] = ACTIONS(2687), + [anon_sym_R_DQUOTE] = ACTIONS(2689), + [anon_sym_LR_DQUOTE] = ACTIONS(2689), + [anon_sym_uR_DQUOTE] = ACTIONS(2689), + [anon_sym_UR_DQUOTE] = ACTIONS(2689), + [anon_sym_u8R_DQUOTE] = ACTIONS(2689), + [anon_sym_co_await] = ACTIONS(2687), + [anon_sym_new] = ACTIONS(2687), + [anon_sym_requires] = ACTIONS(2687), + [sym_this] = ACTIONS(2687), + }, + [940] = { [sym_identifier] = ACTIONS(2767), [anon_sym_LPAREN2] = ACTIONS(2769), [anon_sym_BANG] = ACTIONS(2769), @@ -167672,235 +173382,919 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2767), [sym_this] = ACTIONS(2767), }, - [897] = { - [sym_identifier] = ACTIONS(2659), - [anon_sym_LPAREN2] = ACTIONS(2661), - [anon_sym_BANG] = ACTIONS(2661), - [anon_sym_TILDE] = ACTIONS(2661), - [anon_sym_DASH] = ACTIONS(2659), - [anon_sym_PLUS] = ACTIONS(2659), - [anon_sym_STAR] = ACTIONS(2661), - [anon_sym_AMP] = ACTIONS(2661), - [anon_sym_SEMI] = ACTIONS(2661), - [anon_sym___extension__] = ACTIONS(2659), - [anon_sym_typedef] = ACTIONS(2659), - [anon_sym_virtual] = ACTIONS(2659), - [anon_sym_extern] = ACTIONS(2659), - [anon_sym___attribute__] = ACTIONS(2659), - [anon_sym___attribute] = ACTIONS(2659), - [anon_sym_COLON_COLON] = ACTIONS(2661), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2661), - [anon_sym___declspec] = ACTIONS(2659), - [anon_sym_LBRACE] = ACTIONS(2661), - [anon_sym_signed] = ACTIONS(2659), - [anon_sym_unsigned] = ACTIONS(2659), - [anon_sym_long] = ACTIONS(2659), - [anon_sym_short] = ACTIONS(2659), - [anon_sym_LBRACK] = ACTIONS(2659), - [anon_sym_static] = ACTIONS(2659), - [anon_sym_register] = ACTIONS(2659), - [anon_sym_inline] = ACTIONS(2659), - [anon_sym___inline] = ACTIONS(2659), - [anon_sym___inline__] = ACTIONS(2659), - [anon_sym___forceinline] = ACTIONS(2659), - [anon_sym_thread_local] = ACTIONS(2659), - [anon_sym___thread] = ACTIONS(2659), - [anon_sym_const] = ACTIONS(2659), - [anon_sym_constexpr] = ACTIONS(2659), - [anon_sym_volatile] = ACTIONS(2659), - [anon_sym_restrict] = ACTIONS(2659), - [anon_sym___restrict__] = ACTIONS(2659), - [anon_sym__Atomic] = ACTIONS(2659), - [anon_sym__Noreturn] = ACTIONS(2659), - [anon_sym_noreturn] = ACTIONS(2659), - [anon_sym__Nonnull] = ACTIONS(2659), - [anon_sym_mutable] = ACTIONS(2659), - [anon_sym_constinit] = ACTIONS(2659), - [anon_sym_consteval] = ACTIONS(2659), - [anon_sym_alignas] = ACTIONS(2659), - [anon_sym__Alignas] = ACTIONS(2659), - [sym_primitive_type] = ACTIONS(2659), - [anon_sym_enum] = ACTIONS(2659), - [anon_sym_class] = ACTIONS(2659), - [anon_sym_struct] = ACTIONS(2659), - [anon_sym_union] = ACTIONS(2659), - [anon_sym_if] = ACTIONS(2659), - [anon_sym_else] = ACTIONS(2659), - [anon_sym_switch] = ACTIONS(2659), - [anon_sym_while] = ACTIONS(2659), - [anon_sym_do] = ACTIONS(2659), - [anon_sym_for] = ACTIONS(2659), - [anon_sym_return] = ACTIONS(2659), - [anon_sym_break] = ACTIONS(2659), - [anon_sym_continue] = ACTIONS(2659), - [anon_sym_goto] = ACTIONS(2659), - [anon_sym___try] = ACTIONS(2659), - [anon_sym___leave] = ACTIONS(2659), - [anon_sym_not] = ACTIONS(2659), - [anon_sym_compl] = ACTIONS(2659), - [anon_sym_DASH_DASH] = ACTIONS(2661), - [anon_sym_PLUS_PLUS] = ACTIONS(2661), - [anon_sym_sizeof] = ACTIONS(2659), - [anon_sym___alignof__] = ACTIONS(2659), - [anon_sym___alignof] = ACTIONS(2659), - [anon_sym__alignof] = ACTIONS(2659), - [anon_sym_alignof] = ACTIONS(2659), - [anon_sym__Alignof] = ACTIONS(2659), - [anon_sym_offsetof] = ACTIONS(2659), - [anon_sym__Generic] = ACTIONS(2659), - [anon_sym_asm] = ACTIONS(2659), - [anon_sym___asm__] = ACTIONS(2659), - [anon_sym___asm] = ACTIONS(2659), - [sym_number_literal] = ACTIONS(2661), - [anon_sym_L_SQUOTE] = ACTIONS(2661), - [anon_sym_u_SQUOTE] = ACTIONS(2661), - [anon_sym_U_SQUOTE] = ACTIONS(2661), - [anon_sym_u8_SQUOTE] = ACTIONS(2661), - [anon_sym_SQUOTE] = ACTIONS(2661), - [anon_sym_L_DQUOTE] = ACTIONS(2661), - [anon_sym_u_DQUOTE] = ACTIONS(2661), - [anon_sym_U_DQUOTE] = ACTIONS(2661), - [anon_sym_u8_DQUOTE] = ACTIONS(2661), - [anon_sym_DQUOTE] = ACTIONS(2661), - [sym_true] = ACTIONS(2659), - [sym_false] = ACTIONS(2659), - [anon_sym_NULL] = ACTIONS(2659), - [anon_sym_nullptr] = ACTIONS(2659), + [941] = { + [sym_identifier] = ACTIONS(2747), + [anon_sym_LPAREN2] = ACTIONS(2749), + [anon_sym_BANG] = ACTIONS(2749), + [anon_sym_TILDE] = ACTIONS(2749), + [anon_sym_DASH] = ACTIONS(2747), + [anon_sym_PLUS] = ACTIONS(2747), + [anon_sym_STAR] = ACTIONS(2749), + [anon_sym_AMP] = ACTIONS(2749), + [anon_sym_SEMI] = ACTIONS(2749), + [anon_sym___extension__] = ACTIONS(2747), + [anon_sym_typedef] = ACTIONS(2747), + [anon_sym_virtual] = ACTIONS(2747), + [anon_sym_extern] = ACTIONS(2747), + [anon_sym___attribute__] = ACTIONS(2747), + [anon_sym___attribute] = ACTIONS(2747), + [anon_sym_COLON_COLON] = ACTIONS(2749), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2749), + [anon_sym___declspec] = ACTIONS(2747), + [anon_sym_LBRACE] = ACTIONS(2749), + [anon_sym_signed] = ACTIONS(2747), + [anon_sym_unsigned] = ACTIONS(2747), + [anon_sym_long] = ACTIONS(2747), + [anon_sym_short] = ACTIONS(2747), + [anon_sym_LBRACK] = ACTIONS(2747), + [anon_sym_static] = ACTIONS(2747), + [anon_sym_register] = ACTIONS(2747), + [anon_sym_inline] = ACTIONS(2747), + [anon_sym___inline] = ACTIONS(2747), + [anon_sym___inline__] = ACTIONS(2747), + [anon_sym___forceinline] = ACTIONS(2747), + [anon_sym_thread_local] = ACTIONS(2747), + [anon_sym___thread] = ACTIONS(2747), + [anon_sym_const] = ACTIONS(2747), + [anon_sym_constexpr] = ACTIONS(2747), + [anon_sym_volatile] = ACTIONS(2747), + [anon_sym_restrict] = ACTIONS(2747), + [anon_sym___restrict__] = ACTIONS(2747), + [anon_sym__Atomic] = ACTIONS(2747), + [anon_sym__Noreturn] = ACTIONS(2747), + [anon_sym_noreturn] = ACTIONS(2747), + [anon_sym__Nonnull] = ACTIONS(2747), + [anon_sym_mutable] = ACTIONS(2747), + [anon_sym_constinit] = ACTIONS(2747), + [anon_sym_consteval] = ACTIONS(2747), + [anon_sym_alignas] = ACTIONS(2747), + [anon_sym__Alignas] = ACTIONS(2747), + [sym_primitive_type] = ACTIONS(2747), + [anon_sym_enum] = ACTIONS(2747), + [anon_sym_class] = ACTIONS(2747), + [anon_sym_struct] = ACTIONS(2747), + [anon_sym_union] = ACTIONS(2747), + [anon_sym_if] = ACTIONS(2747), + [anon_sym_else] = ACTIONS(2747), + [anon_sym_switch] = ACTIONS(2747), + [anon_sym_while] = ACTIONS(2747), + [anon_sym_do] = ACTIONS(2747), + [anon_sym_for] = ACTIONS(2747), + [anon_sym_return] = ACTIONS(2747), + [anon_sym_break] = ACTIONS(2747), + [anon_sym_continue] = ACTIONS(2747), + [anon_sym_goto] = ACTIONS(2747), + [anon_sym___try] = ACTIONS(2747), + [anon_sym___leave] = ACTIONS(2747), + [anon_sym_not] = ACTIONS(2747), + [anon_sym_compl] = ACTIONS(2747), + [anon_sym_DASH_DASH] = ACTIONS(2749), + [anon_sym_PLUS_PLUS] = ACTIONS(2749), + [anon_sym_sizeof] = ACTIONS(2747), + [anon_sym___alignof__] = ACTIONS(2747), + [anon_sym___alignof] = ACTIONS(2747), + [anon_sym__alignof] = ACTIONS(2747), + [anon_sym_alignof] = ACTIONS(2747), + [anon_sym__Alignof] = ACTIONS(2747), + [anon_sym_offsetof] = ACTIONS(2747), + [anon_sym__Generic] = ACTIONS(2747), + [anon_sym_asm] = ACTIONS(2747), + [anon_sym___asm__] = ACTIONS(2747), + [anon_sym___asm] = ACTIONS(2747), + [sym_number_literal] = ACTIONS(2749), + [anon_sym_L_SQUOTE] = ACTIONS(2749), + [anon_sym_u_SQUOTE] = ACTIONS(2749), + [anon_sym_U_SQUOTE] = ACTIONS(2749), + [anon_sym_u8_SQUOTE] = ACTIONS(2749), + [anon_sym_SQUOTE] = ACTIONS(2749), + [anon_sym_L_DQUOTE] = ACTIONS(2749), + [anon_sym_u_DQUOTE] = ACTIONS(2749), + [anon_sym_U_DQUOTE] = ACTIONS(2749), + [anon_sym_u8_DQUOTE] = ACTIONS(2749), + [anon_sym_DQUOTE] = ACTIONS(2749), + [sym_true] = ACTIONS(2747), + [sym_false] = ACTIONS(2747), + [anon_sym_NULL] = ACTIONS(2747), + [anon_sym_nullptr] = ACTIONS(2747), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2659), - [anon_sym_decltype] = ACTIONS(2659), - [anon_sym_typename] = ACTIONS(2659), - [anon_sym_template] = ACTIONS(2659), - [anon_sym_try] = ACTIONS(2659), - [anon_sym_delete] = ACTIONS(2659), - [anon_sym_throw] = ACTIONS(2659), - [anon_sym_co_return] = ACTIONS(2659), - [anon_sym_co_yield] = ACTIONS(2659), - [anon_sym_R_DQUOTE] = ACTIONS(2661), - [anon_sym_LR_DQUOTE] = ACTIONS(2661), - [anon_sym_uR_DQUOTE] = ACTIONS(2661), - [anon_sym_UR_DQUOTE] = ACTIONS(2661), - [anon_sym_u8R_DQUOTE] = ACTIONS(2661), - [anon_sym_co_await] = ACTIONS(2659), - [anon_sym_new] = ACTIONS(2659), - [anon_sym_requires] = ACTIONS(2659), - [sym_this] = ACTIONS(2659), + [sym_auto] = ACTIONS(2747), + [anon_sym_decltype] = ACTIONS(2747), + [anon_sym_typename] = ACTIONS(2747), + [anon_sym_template] = ACTIONS(2747), + [anon_sym_try] = ACTIONS(2747), + [anon_sym_delete] = ACTIONS(2747), + [anon_sym_throw] = ACTIONS(2747), + [anon_sym_co_return] = ACTIONS(2747), + [anon_sym_co_yield] = ACTIONS(2747), + [anon_sym_R_DQUOTE] = ACTIONS(2749), + [anon_sym_LR_DQUOTE] = ACTIONS(2749), + [anon_sym_uR_DQUOTE] = ACTIONS(2749), + [anon_sym_UR_DQUOTE] = ACTIONS(2749), + [anon_sym_u8R_DQUOTE] = ACTIONS(2749), + [anon_sym_co_await] = ACTIONS(2747), + [anon_sym_new] = ACTIONS(2747), + [anon_sym_requires] = ACTIONS(2747), + [sym_this] = ACTIONS(2747), }, - [898] = { - [sym_identifier] = ACTIONS(2751), - [anon_sym_LPAREN2] = ACTIONS(2753), - [anon_sym_BANG] = ACTIONS(2753), - [anon_sym_TILDE] = ACTIONS(2753), - [anon_sym_DASH] = ACTIONS(2751), - [anon_sym_PLUS] = ACTIONS(2751), - [anon_sym_STAR] = ACTIONS(2753), - [anon_sym_AMP] = ACTIONS(2753), - [anon_sym_SEMI] = ACTIONS(2753), - [anon_sym___extension__] = ACTIONS(2751), - [anon_sym_typedef] = ACTIONS(2751), - [anon_sym_virtual] = ACTIONS(2751), - [anon_sym_extern] = ACTIONS(2751), - [anon_sym___attribute__] = ACTIONS(2751), - [anon_sym___attribute] = ACTIONS(2751), - [anon_sym_COLON_COLON] = ACTIONS(2753), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2753), - [anon_sym___declspec] = ACTIONS(2751), - [anon_sym_LBRACE] = ACTIONS(2753), - [anon_sym_signed] = ACTIONS(2751), - [anon_sym_unsigned] = ACTIONS(2751), - [anon_sym_long] = ACTIONS(2751), - [anon_sym_short] = ACTIONS(2751), - [anon_sym_LBRACK] = ACTIONS(2751), - [anon_sym_static] = ACTIONS(2751), - [anon_sym_register] = ACTIONS(2751), - [anon_sym_inline] = ACTIONS(2751), - [anon_sym___inline] = ACTIONS(2751), - [anon_sym___inline__] = ACTIONS(2751), - [anon_sym___forceinline] = ACTIONS(2751), - [anon_sym_thread_local] = ACTIONS(2751), - [anon_sym___thread] = ACTIONS(2751), - [anon_sym_const] = ACTIONS(2751), - [anon_sym_constexpr] = ACTIONS(2751), - [anon_sym_volatile] = ACTIONS(2751), - [anon_sym_restrict] = ACTIONS(2751), - [anon_sym___restrict__] = ACTIONS(2751), - [anon_sym__Atomic] = ACTIONS(2751), - [anon_sym__Noreturn] = ACTIONS(2751), - [anon_sym_noreturn] = ACTIONS(2751), - [anon_sym__Nonnull] = ACTIONS(2751), - [anon_sym_mutable] = ACTIONS(2751), - [anon_sym_constinit] = ACTIONS(2751), - [anon_sym_consteval] = ACTIONS(2751), - [anon_sym_alignas] = ACTIONS(2751), - [anon_sym__Alignas] = ACTIONS(2751), - [sym_primitive_type] = ACTIONS(2751), - [anon_sym_enum] = ACTIONS(2751), - [anon_sym_class] = ACTIONS(2751), - [anon_sym_struct] = ACTIONS(2751), - [anon_sym_union] = ACTIONS(2751), - [anon_sym_if] = ACTIONS(2751), - [anon_sym_else] = ACTIONS(2751), - [anon_sym_switch] = ACTIONS(2751), - [anon_sym_while] = ACTIONS(2751), - [anon_sym_do] = ACTIONS(2751), - [anon_sym_for] = ACTIONS(2751), - [anon_sym_return] = ACTIONS(2751), - [anon_sym_break] = ACTIONS(2751), - [anon_sym_continue] = ACTIONS(2751), - [anon_sym_goto] = ACTIONS(2751), - [anon_sym___try] = ACTIONS(2751), - [anon_sym___leave] = ACTIONS(2751), - [anon_sym_not] = ACTIONS(2751), - [anon_sym_compl] = ACTIONS(2751), - [anon_sym_DASH_DASH] = ACTIONS(2753), - [anon_sym_PLUS_PLUS] = ACTIONS(2753), - [anon_sym_sizeof] = ACTIONS(2751), - [anon_sym___alignof__] = ACTIONS(2751), - [anon_sym___alignof] = ACTIONS(2751), - [anon_sym__alignof] = ACTIONS(2751), - [anon_sym_alignof] = ACTIONS(2751), - [anon_sym__Alignof] = ACTIONS(2751), - [anon_sym_offsetof] = ACTIONS(2751), - [anon_sym__Generic] = ACTIONS(2751), - [anon_sym_asm] = ACTIONS(2751), - [anon_sym___asm__] = ACTIONS(2751), - [anon_sym___asm] = ACTIONS(2751), - [sym_number_literal] = ACTIONS(2753), - [anon_sym_L_SQUOTE] = ACTIONS(2753), - [anon_sym_u_SQUOTE] = ACTIONS(2753), - [anon_sym_U_SQUOTE] = ACTIONS(2753), - [anon_sym_u8_SQUOTE] = ACTIONS(2753), - [anon_sym_SQUOTE] = ACTIONS(2753), - [anon_sym_L_DQUOTE] = ACTIONS(2753), - [anon_sym_u_DQUOTE] = ACTIONS(2753), - [anon_sym_U_DQUOTE] = ACTIONS(2753), - [anon_sym_u8_DQUOTE] = ACTIONS(2753), - [anon_sym_DQUOTE] = ACTIONS(2753), - [sym_true] = ACTIONS(2751), - [sym_false] = ACTIONS(2751), - [anon_sym_NULL] = ACTIONS(2751), - [anon_sym_nullptr] = ACTIONS(2751), + [942] = { + [sym_identifier] = ACTIONS(2639), + [anon_sym_LPAREN2] = ACTIONS(2641), + [anon_sym_BANG] = ACTIONS(2641), + [anon_sym_TILDE] = ACTIONS(2641), + [anon_sym_DASH] = ACTIONS(2639), + [anon_sym_PLUS] = ACTIONS(2639), + [anon_sym_STAR] = ACTIONS(2641), + [anon_sym_AMP] = ACTIONS(2641), + [anon_sym_SEMI] = ACTIONS(2641), + [anon_sym___extension__] = ACTIONS(2639), + [anon_sym_typedef] = ACTIONS(2639), + [anon_sym_virtual] = ACTIONS(2639), + [anon_sym_extern] = ACTIONS(2639), + [anon_sym___attribute__] = ACTIONS(2639), + [anon_sym___attribute] = ACTIONS(2639), + [anon_sym_COLON_COLON] = ACTIONS(2641), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2641), + [anon_sym___declspec] = ACTIONS(2639), + [anon_sym_LBRACE] = ACTIONS(2641), + [anon_sym_signed] = ACTIONS(2639), + [anon_sym_unsigned] = ACTIONS(2639), + [anon_sym_long] = ACTIONS(2639), + [anon_sym_short] = ACTIONS(2639), + [anon_sym_LBRACK] = ACTIONS(2639), + [anon_sym_static] = ACTIONS(2639), + [anon_sym_register] = ACTIONS(2639), + [anon_sym_inline] = ACTIONS(2639), + [anon_sym___inline] = ACTIONS(2639), + [anon_sym___inline__] = ACTIONS(2639), + [anon_sym___forceinline] = ACTIONS(2639), + [anon_sym_thread_local] = ACTIONS(2639), + [anon_sym___thread] = ACTIONS(2639), + [anon_sym_const] = ACTIONS(2639), + [anon_sym_constexpr] = ACTIONS(2639), + [anon_sym_volatile] = ACTIONS(2639), + [anon_sym_restrict] = ACTIONS(2639), + [anon_sym___restrict__] = ACTIONS(2639), + [anon_sym__Atomic] = ACTIONS(2639), + [anon_sym__Noreturn] = ACTIONS(2639), + [anon_sym_noreturn] = ACTIONS(2639), + [anon_sym__Nonnull] = ACTIONS(2639), + [anon_sym_mutable] = ACTIONS(2639), + [anon_sym_constinit] = ACTIONS(2639), + [anon_sym_consteval] = ACTIONS(2639), + [anon_sym_alignas] = ACTIONS(2639), + [anon_sym__Alignas] = ACTIONS(2639), + [sym_primitive_type] = ACTIONS(2639), + [anon_sym_enum] = ACTIONS(2639), + [anon_sym_class] = ACTIONS(2639), + [anon_sym_struct] = ACTIONS(2639), + [anon_sym_union] = ACTIONS(2639), + [anon_sym_if] = ACTIONS(2639), + [anon_sym_else] = ACTIONS(2639), + [anon_sym_switch] = ACTIONS(2639), + [anon_sym_while] = ACTIONS(2639), + [anon_sym_do] = ACTIONS(2639), + [anon_sym_for] = ACTIONS(2639), + [anon_sym_return] = ACTIONS(2639), + [anon_sym_break] = ACTIONS(2639), + [anon_sym_continue] = ACTIONS(2639), + [anon_sym_goto] = ACTIONS(2639), + [anon_sym___try] = ACTIONS(2639), + [anon_sym___leave] = ACTIONS(2639), + [anon_sym_not] = ACTIONS(2639), + [anon_sym_compl] = ACTIONS(2639), + [anon_sym_DASH_DASH] = ACTIONS(2641), + [anon_sym_PLUS_PLUS] = ACTIONS(2641), + [anon_sym_sizeof] = ACTIONS(2639), + [anon_sym___alignof__] = ACTIONS(2639), + [anon_sym___alignof] = ACTIONS(2639), + [anon_sym__alignof] = ACTIONS(2639), + [anon_sym_alignof] = ACTIONS(2639), + [anon_sym__Alignof] = ACTIONS(2639), + [anon_sym_offsetof] = ACTIONS(2639), + [anon_sym__Generic] = ACTIONS(2639), + [anon_sym_asm] = ACTIONS(2639), + [anon_sym___asm__] = ACTIONS(2639), + [anon_sym___asm] = ACTIONS(2639), + [sym_number_literal] = ACTIONS(2641), + [anon_sym_L_SQUOTE] = ACTIONS(2641), + [anon_sym_u_SQUOTE] = ACTIONS(2641), + [anon_sym_U_SQUOTE] = ACTIONS(2641), + [anon_sym_u8_SQUOTE] = ACTIONS(2641), + [anon_sym_SQUOTE] = ACTIONS(2641), + [anon_sym_L_DQUOTE] = ACTIONS(2641), + [anon_sym_u_DQUOTE] = ACTIONS(2641), + [anon_sym_U_DQUOTE] = ACTIONS(2641), + [anon_sym_u8_DQUOTE] = ACTIONS(2641), + [anon_sym_DQUOTE] = ACTIONS(2641), + [sym_true] = ACTIONS(2639), + [sym_false] = ACTIONS(2639), + [anon_sym_NULL] = ACTIONS(2639), + [anon_sym_nullptr] = ACTIONS(2639), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2639), + [anon_sym_decltype] = ACTIONS(2639), + [anon_sym_typename] = ACTIONS(2639), + [anon_sym_template] = ACTIONS(2639), + [anon_sym_try] = ACTIONS(2639), + [anon_sym_delete] = ACTIONS(2639), + [anon_sym_throw] = ACTIONS(2639), + [anon_sym_co_return] = ACTIONS(2639), + [anon_sym_co_yield] = ACTIONS(2639), + [anon_sym_R_DQUOTE] = ACTIONS(2641), + [anon_sym_LR_DQUOTE] = ACTIONS(2641), + [anon_sym_uR_DQUOTE] = ACTIONS(2641), + [anon_sym_UR_DQUOTE] = ACTIONS(2641), + [anon_sym_u8R_DQUOTE] = ACTIONS(2641), + [anon_sym_co_await] = ACTIONS(2639), + [anon_sym_new] = ACTIONS(2639), + [anon_sym_requires] = ACTIONS(2639), + [sym_this] = ACTIONS(2639), + }, + [943] = { + [sym_identifier] = ACTIONS(2683), + [anon_sym_LPAREN2] = ACTIONS(2685), + [anon_sym_BANG] = ACTIONS(2685), + [anon_sym_TILDE] = ACTIONS(2685), + [anon_sym_DASH] = ACTIONS(2683), + [anon_sym_PLUS] = ACTIONS(2683), + [anon_sym_STAR] = ACTIONS(2685), + [anon_sym_AMP] = ACTIONS(2685), + [anon_sym_SEMI] = ACTIONS(2685), + [anon_sym___extension__] = ACTIONS(2683), + [anon_sym_typedef] = ACTIONS(2683), + [anon_sym_virtual] = ACTIONS(2683), + [anon_sym_extern] = ACTIONS(2683), + [anon_sym___attribute__] = ACTIONS(2683), + [anon_sym___attribute] = ACTIONS(2683), + [anon_sym_COLON_COLON] = ACTIONS(2685), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2685), + [anon_sym___declspec] = ACTIONS(2683), + [anon_sym_LBRACE] = ACTIONS(2685), + [anon_sym_signed] = ACTIONS(2683), + [anon_sym_unsigned] = ACTIONS(2683), + [anon_sym_long] = ACTIONS(2683), + [anon_sym_short] = ACTIONS(2683), + [anon_sym_LBRACK] = ACTIONS(2683), + [anon_sym_static] = ACTIONS(2683), + [anon_sym_register] = ACTIONS(2683), + [anon_sym_inline] = ACTIONS(2683), + [anon_sym___inline] = ACTIONS(2683), + [anon_sym___inline__] = ACTIONS(2683), + [anon_sym___forceinline] = ACTIONS(2683), + [anon_sym_thread_local] = ACTIONS(2683), + [anon_sym___thread] = ACTIONS(2683), + [anon_sym_const] = ACTIONS(2683), + [anon_sym_constexpr] = ACTIONS(2683), + [anon_sym_volatile] = ACTIONS(2683), + [anon_sym_restrict] = ACTIONS(2683), + [anon_sym___restrict__] = ACTIONS(2683), + [anon_sym__Atomic] = ACTIONS(2683), + [anon_sym__Noreturn] = ACTIONS(2683), + [anon_sym_noreturn] = ACTIONS(2683), + [anon_sym__Nonnull] = ACTIONS(2683), + [anon_sym_mutable] = ACTIONS(2683), + [anon_sym_constinit] = ACTIONS(2683), + [anon_sym_consteval] = ACTIONS(2683), + [anon_sym_alignas] = ACTIONS(2683), + [anon_sym__Alignas] = ACTIONS(2683), + [sym_primitive_type] = ACTIONS(2683), + [anon_sym_enum] = ACTIONS(2683), + [anon_sym_class] = ACTIONS(2683), + [anon_sym_struct] = ACTIONS(2683), + [anon_sym_union] = ACTIONS(2683), + [anon_sym_if] = ACTIONS(2683), + [anon_sym_else] = ACTIONS(2683), + [anon_sym_switch] = ACTIONS(2683), + [anon_sym_while] = ACTIONS(2683), + [anon_sym_do] = ACTIONS(2683), + [anon_sym_for] = ACTIONS(2683), + [anon_sym_return] = ACTIONS(2683), + [anon_sym_break] = ACTIONS(2683), + [anon_sym_continue] = ACTIONS(2683), + [anon_sym_goto] = ACTIONS(2683), + [anon_sym___try] = ACTIONS(2683), + [anon_sym___leave] = ACTIONS(2683), + [anon_sym_not] = ACTIONS(2683), + [anon_sym_compl] = ACTIONS(2683), + [anon_sym_DASH_DASH] = ACTIONS(2685), + [anon_sym_PLUS_PLUS] = ACTIONS(2685), + [anon_sym_sizeof] = ACTIONS(2683), + [anon_sym___alignof__] = ACTIONS(2683), + [anon_sym___alignof] = ACTIONS(2683), + [anon_sym__alignof] = ACTIONS(2683), + [anon_sym_alignof] = ACTIONS(2683), + [anon_sym__Alignof] = ACTIONS(2683), + [anon_sym_offsetof] = ACTIONS(2683), + [anon_sym__Generic] = ACTIONS(2683), + [anon_sym_asm] = ACTIONS(2683), + [anon_sym___asm__] = ACTIONS(2683), + [anon_sym___asm] = ACTIONS(2683), + [sym_number_literal] = ACTIONS(2685), + [anon_sym_L_SQUOTE] = ACTIONS(2685), + [anon_sym_u_SQUOTE] = ACTIONS(2685), + [anon_sym_U_SQUOTE] = ACTIONS(2685), + [anon_sym_u8_SQUOTE] = ACTIONS(2685), + [anon_sym_SQUOTE] = ACTIONS(2685), + [anon_sym_L_DQUOTE] = ACTIONS(2685), + [anon_sym_u_DQUOTE] = ACTIONS(2685), + [anon_sym_U_DQUOTE] = ACTIONS(2685), + [anon_sym_u8_DQUOTE] = ACTIONS(2685), + [anon_sym_DQUOTE] = ACTIONS(2685), + [sym_true] = ACTIONS(2683), + [sym_false] = ACTIONS(2683), + [anon_sym_NULL] = ACTIONS(2683), + [anon_sym_nullptr] = ACTIONS(2683), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2683), + [anon_sym_decltype] = ACTIONS(2683), + [anon_sym_typename] = ACTIONS(2683), + [anon_sym_template] = ACTIONS(2683), + [anon_sym_try] = ACTIONS(2683), + [anon_sym_delete] = ACTIONS(2683), + [anon_sym_throw] = ACTIONS(2683), + [anon_sym_co_return] = ACTIONS(2683), + [anon_sym_co_yield] = ACTIONS(2683), + [anon_sym_R_DQUOTE] = ACTIONS(2685), + [anon_sym_LR_DQUOTE] = ACTIONS(2685), + [anon_sym_uR_DQUOTE] = ACTIONS(2685), + [anon_sym_UR_DQUOTE] = ACTIONS(2685), + [anon_sym_u8R_DQUOTE] = ACTIONS(2685), + [anon_sym_co_await] = ACTIONS(2683), + [anon_sym_new] = ACTIONS(2683), + [anon_sym_requires] = ACTIONS(2683), + [sym_this] = ACTIONS(2683), + }, + [944] = { + [sym_identifier] = ACTIONS(2699), + [anon_sym_LPAREN2] = ACTIONS(2701), + [anon_sym_BANG] = ACTIONS(2701), + [anon_sym_TILDE] = ACTIONS(2701), + [anon_sym_DASH] = ACTIONS(2699), + [anon_sym_PLUS] = ACTIONS(2699), + [anon_sym_STAR] = ACTIONS(2701), + [anon_sym_AMP] = ACTIONS(2701), + [anon_sym_SEMI] = ACTIONS(2701), + [anon_sym___extension__] = ACTIONS(2699), + [anon_sym_typedef] = ACTIONS(2699), + [anon_sym_virtual] = ACTIONS(2699), + [anon_sym_extern] = ACTIONS(2699), + [anon_sym___attribute__] = ACTIONS(2699), + [anon_sym___attribute] = ACTIONS(2699), + [anon_sym_COLON_COLON] = ACTIONS(2701), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2701), + [anon_sym___declspec] = ACTIONS(2699), + [anon_sym_LBRACE] = ACTIONS(2701), + [anon_sym_signed] = ACTIONS(2699), + [anon_sym_unsigned] = ACTIONS(2699), + [anon_sym_long] = ACTIONS(2699), + [anon_sym_short] = ACTIONS(2699), + [anon_sym_LBRACK] = ACTIONS(2699), + [anon_sym_static] = ACTIONS(2699), + [anon_sym_register] = ACTIONS(2699), + [anon_sym_inline] = ACTIONS(2699), + [anon_sym___inline] = ACTIONS(2699), + [anon_sym___inline__] = ACTIONS(2699), + [anon_sym___forceinline] = ACTIONS(2699), + [anon_sym_thread_local] = ACTIONS(2699), + [anon_sym___thread] = ACTIONS(2699), + [anon_sym_const] = ACTIONS(2699), + [anon_sym_constexpr] = ACTIONS(2699), + [anon_sym_volatile] = ACTIONS(2699), + [anon_sym_restrict] = ACTIONS(2699), + [anon_sym___restrict__] = ACTIONS(2699), + [anon_sym__Atomic] = ACTIONS(2699), + [anon_sym__Noreturn] = ACTIONS(2699), + [anon_sym_noreturn] = ACTIONS(2699), + [anon_sym__Nonnull] = ACTIONS(2699), + [anon_sym_mutable] = ACTIONS(2699), + [anon_sym_constinit] = ACTIONS(2699), + [anon_sym_consteval] = ACTIONS(2699), + [anon_sym_alignas] = ACTIONS(2699), + [anon_sym__Alignas] = ACTIONS(2699), + [sym_primitive_type] = ACTIONS(2699), + [anon_sym_enum] = ACTIONS(2699), + [anon_sym_class] = ACTIONS(2699), + [anon_sym_struct] = ACTIONS(2699), + [anon_sym_union] = ACTIONS(2699), + [anon_sym_if] = ACTIONS(2699), + [anon_sym_else] = ACTIONS(2699), + [anon_sym_switch] = ACTIONS(2699), + [anon_sym_while] = ACTIONS(2699), + [anon_sym_do] = ACTIONS(2699), + [anon_sym_for] = ACTIONS(2699), + [anon_sym_return] = ACTIONS(2699), + [anon_sym_break] = ACTIONS(2699), + [anon_sym_continue] = ACTIONS(2699), + [anon_sym_goto] = ACTIONS(2699), + [anon_sym___try] = ACTIONS(2699), + [anon_sym___leave] = ACTIONS(2699), + [anon_sym_not] = ACTIONS(2699), + [anon_sym_compl] = ACTIONS(2699), + [anon_sym_DASH_DASH] = ACTIONS(2701), + [anon_sym_PLUS_PLUS] = ACTIONS(2701), + [anon_sym_sizeof] = ACTIONS(2699), + [anon_sym___alignof__] = ACTIONS(2699), + [anon_sym___alignof] = ACTIONS(2699), + [anon_sym__alignof] = ACTIONS(2699), + [anon_sym_alignof] = ACTIONS(2699), + [anon_sym__Alignof] = ACTIONS(2699), + [anon_sym_offsetof] = ACTIONS(2699), + [anon_sym__Generic] = ACTIONS(2699), + [anon_sym_asm] = ACTIONS(2699), + [anon_sym___asm__] = ACTIONS(2699), + [anon_sym___asm] = ACTIONS(2699), + [sym_number_literal] = ACTIONS(2701), + [anon_sym_L_SQUOTE] = ACTIONS(2701), + [anon_sym_u_SQUOTE] = ACTIONS(2701), + [anon_sym_U_SQUOTE] = ACTIONS(2701), + [anon_sym_u8_SQUOTE] = ACTIONS(2701), + [anon_sym_SQUOTE] = ACTIONS(2701), + [anon_sym_L_DQUOTE] = ACTIONS(2701), + [anon_sym_u_DQUOTE] = ACTIONS(2701), + [anon_sym_U_DQUOTE] = ACTIONS(2701), + [anon_sym_u8_DQUOTE] = ACTIONS(2701), + [anon_sym_DQUOTE] = ACTIONS(2701), + [sym_true] = ACTIONS(2699), + [sym_false] = ACTIONS(2699), + [anon_sym_NULL] = ACTIONS(2699), + [anon_sym_nullptr] = ACTIONS(2699), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2699), + [anon_sym_decltype] = ACTIONS(2699), + [anon_sym_typename] = ACTIONS(2699), + [anon_sym_template] = ACTIONS(2699), + [anon_sym_try] = ACTIONS(2699), + [anon_sym_delete] = ACTIONS(2699), + [anon_sym_throw] = ACTIONS(2699), + [anon_sym_co_return] = ACTIONS(2699), + [anon_sym_co_yield] = ACTIONS(2699), + [anon_sym_R_DQUOTE] = ACTIONS(2701), + [anon_sym_LR_DQUOTE] = ACTIONS(2701), + [anon_sym_uR_DQUOTE] = ACTIONS(2701), + [anon_sym_UR_DQUOTE] = ACTIONS(2701), + [anon_sym_u8R_DQUOTE] = ACTIONS(2701), + [anon_sym_co_await] = ACTIONS(2699), + [anon_sym_new] = ACTIONS(2699), + [anon_sym_requires] = ACTIONS(2699), + [sym_this] = ACTIONS(2699), + }, + [945] = { + [sym_identifier] = ACTIONS(2743), + [anon_sym_LPAREN2] = ACTIONS(2745), + [anon_sym_BANG] = ACTIONS(2745), + [anon_sym_TILDE] = ACTIONS(2745), + [anon_sym_DASH] = ACTIONS(2743), + [anon_sym_PLUS] = ACTIONS(2743), + [anon_sym_STAR] = ACTIONS(2745), + [anon_sym_AMP] = ACTIONS(2745), + [anon_sym_SEMI] = ACTIONS(2745), + [anon_sym___extension__] = ACTIONS(2743), + [anon_sym_typedef] = ACTIONS(2743), + [anon_sym_virtual] = ACTIONS(2743), + [anon_sym_extern] = ACTIONS(2743), + [anon_sym___attribute__] = ACTIONS(2743), + [anon_sym___attribute] = ACTIONS(2743), + [anon_sym_COLON_COLON] = ACTIONS(2745), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2745), + [anon_sym___declspec] = ACTIONS(2743), + [anon_sym_LBRACE] = ACTIONS(2745), + [anon_sym_signed] = ACTIONS(2743), + [anon_sym_unsigned] = ACTIONS(2743), + [anon_sym_long] = ACTIONS(2743), + [anon_sym_short] = ACTIONS(2743), + [anon_sym_LBRACK] = ACTIONS(2743), + [anon_sym_static] = ACTIONS(2743), + [anon_sym_register] = ACTIONS(2743), + [anon_sym_inline] = ACTIONS(2743), + [anon_sym___inline] = ACTIONS(2743), + [anon_sym___inline__] = ACTIONS(2743), + [anon_sym___forceinline] = ACTIONS(2743), + [anon_sym_thread_local] = ACTIONS(2743), + [anon_sym___thread] = ACTIONS(2743), + [anon_sym_const] = ACTIONS(2743), + [anon_sym_constexpr] = ACTIONS(2743), + [anon_sym_volatile] = ACTIONS(2743), + [anon_sym_restrict] = ACTIONS(2743), + [anon_sym___restrict__] = ACTIONS(2743), + [anon_sym__Atomic] = ACTIONS(2743), + [anon_sym__Noreturn] = ACTIONS(2743), + [anon_sym_noreturn] = ACTIONS(2743), + [anon_sym__Nonnull] = ACTIONS(2743), + [anon_sym_mutable] = ACTIONS(2743), + [anon_sym_constinit] = ACTIONS(2743), + [anon_sym_consteval] = ACTIONS(2743), + [anon_sym_alignas] = ACTIONS(2743), + [anon_sym__Alignas] = ACTIONS(2743), + [sym_primitive_type] = ACTIONS(2743), + [anon_sym_enum] = ACTIONS(2743), + [anon_sym_class] = ACTIONS(2743), + [anon_sym_struct] = ACTIONS(2743), + [anon_sym_union] = ACTIONS(2743), + [anon_sym_if] = ACTIONS(2743), + [anon_sym_else] = ACTIONS(2743), + [anon_sym_switch] = ACTIONS(2743), + [anon_sym_while] = ACTIONS(2743), + [anon_sym_do] = ACTIONS(2743), + [anon_sym_for] = ACTIONS(2743), + [anon_sym_return] = ACTIONS(2743), + [anon_sym_break] = ACTIONS(2743), + [anon_sym_continue] = ACTIONS(2743), + [anon_sym_goto] = ACTIONS(2743), + [anon_sym___try] = ACTIONS(2743), + [anon_sym___leave] = ACTIONS(2743), + [anon_sym_not] = ACTIONS(2743), + [anon_sym_compl] = ACTIONS(2743), + [anon_sym_DASH_DASH] = ACTIONS(2745), + [anon_sym_PLUS_PLUS] = ACTIONS(2745), + [anon_sym_sizeof] = ACTIONS(2743), + [anon_sym___alignof__] = ACTIONS(2743), + [anon_sym___alignof] = ACTIONS(2743), + [anon_sym__alignof] = ACTIONS(2743), + [anon_sym_alignof] = ACTIONS(2743), + [anon_sym__Alignof] = ACTIONS(2743), + [anon_sym_offsetof] = ACTIONS(2743), + [anon_sym__Generic] = ACTIONS(2743), + [anon_sym_asm] = ACTIONS(2743), + [anon_sym___asm__] = ACTIONS(2743), + [anon_sym___asm] = ACTIONS(2743), + [sym_number_literal] = ACTIONS(2745), + [anon_sym_L_SQUOTE] = ACTIONS(2745), + [anon_sym_u_SQUOTE] = ACTIONS(2745), + [anon_sym_U_SQUOTE] = ACTIONS(2745), + [anon_sym_u8_SQUOTE] = ACTIONS(2745), + [anon_sym_SQUOTE] = ACTIONS(2745), + [anon_sym_L_DQUOTE] = ACTIONS(2745), + [anon_sym_u_DQUOTE] = ACTIONS(2745), + [anon_sym_U_DQUOTE] = ACTIONS(2745), + [anon_sym_u8_DQUOTE] = ACTIONS(2745), + [anon_sym_DQUOTE] = ACTIONS(2745), + [sym_true] = ACTIONS(2743), + [sym_false] = ACTIONS(2743), + [anon_sym_NULL] = ACTIONS(2743), + [anon_sym_nullptr] = ACTIONS(2743), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2743), + [anon_sym_decltype] = ACTIONS(2743), + [anon_sym_typename] = ACTIONS(2743), + [anon_sym_template] = ACTIONS(2743), + [anon_sym_try] = ACTIONS(2743), + [anon_sym_delete] = ACTIONS(2743), + [anon_sym_throw] = ACTIONS(2743), + [anon_sym_co_return] = ACTIONS(2743), + [anon_sym_co_yield] = ACTIONS(2743), + [anon_sym_R_DQUOTE] = ACTIONS(2745), + [anon_sym_LR_DQUOTE] = ACTIONS(2745), + [anon_sym_uR_DQUOTE] = ACTIONS(2745), + [anon_sym_UR_DQUOTE] = ACTIONS(2745), + [anon_sym_u8R_DQUOTE] = ACTIONS(2745), + [anon_sym_co_await] = ACTIONS(2743), + [anon_sym_new] = ACTIONS(2743), + [anon_sym_requires] = ACTIONS(2743), + [sym_this] = ACTIONS(2743), + }, + [946] = { + [sym_identifier] = ACTIONS(2743), + [anon_sym_LPAREN2] = ACTIONS(2745), + [anon_sym_BANG] = ACTIONS(2745), + [anon_sym_TILDE] = ACTIONS(2745), + [anon_sym_DASH] = ACTIONS(2743), + [anon_sym_PLUS] = ACTIONS(2743), + [anon_sym_STAR] = ACTIONS(2745), + [anon_sym_AMP] = ACTIONS(2745), + [anon_sym_SEMI] = ACTIONS(2745), + [anon_sym___extension__] = ACTIONS(2743), + [anon_sym_typedef] = ACTIONS(2743), + [anon_sym_virtual] = ACTIONS(2743), + [anon_sym_extern] = ACTIONS(2743), + [anon_sym___attribute__] = ACTIONS(2743), + [anon_sym___attribute] = ACTIONS(2743), + [anon_sym_COLON_COLON] = ACTIONS(2745), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2745), + [anon_sym___declspec] = ACTIONS(2743), + [anon_sym_LBRACE] = ACTIONS(2745), + [anon_sym_signed] = ACTIONS(2743), + [anon_sym_unsigned] = ACTIONS(2743), + [anon_sym_long] = ACTIONS(2743), + [anon_sym_short] = ACTIONS(2743), + [anon_sym_LBRACK] = ACTIONS(2743), + [anon_sym_static] = ACTIONS(2743), + [anon_sym_register] = ACTIONS(2743), + [anon_sym_inline] = ACTIONS(2743), + [anon_sym___inline] = ACTIONS(2743), + [anon_sym___inline__] = ACTIONS(2743), + [anon_sym___forceinline] = ACTIONS(2743), + [anon_sym_thread_local] = ACTIONS(2743), + [anon_sym___thread] = ACTIONS(2743), + [anon_sym_const] = ACTIONS(2743), + [anon_sym_constexpr] = ACTIONS(2743), + [anon_sym_volatile] = ACTIONS(2743), + [anon_sym_restrict] = ACTIONS(2743), + [anon_sym___restrict__] = ACTIONS(2743), + [anon_sym__Atomic] = ACTIONS(2743), + [anon_sym__Noreturn] = ACTIONS(2743), + [anon_sym_noreturn] = ACTIONS(2743), + [anon_sym__Nonnull] = ACTIONS(2743), + [anon_sym_mutable] = ACTIONS(2743), + [anon_sym_constinit] = ACTIONS(2743), + [anon_sym_consteval] = ACTIONS(2743), + [anon_sym_alignas] = ACTIONS(2743), + [anon_sym__Alignas] = ACTIONS(2743), + [sym_primitive_type] = ACTIONS(2743), + [anon_sym_enum] = ACTIONS(2743), + [anon_sym_class] = ACTIONS(2743), + [anon_sym_struct] = ACTIONS(2743), + [anon_sym_union] = ACTIONS(2743), + [anon_sym_if] = ACTIONS(2743), + [anon_sym_else] = ACTIONS(2743), + [anon_sym_switch] = ACTIONS(2743), + [anon_sym_while] = ACTIONS(2743), + [anon_sym_do] = ACTIONS(2743), + [anon_sym_for] = ACTIONS(2743), + [anon_sym_return] = ACTIONS(2743), + [anon_sym_break] = ACTIONS(2743), + [anon_sym_continue] = ACTIONS(2743), + [anon_sym_goto] = ACTIONS(2743), + [anon_sym___try] = ACTIONS(2743), + [anon_sym___leave] = ACTIONS(2743), + [anon_sym_not] = ACTIONS(2743), + [anon_sym_compl] = ACTIONS(2743), + [anon_sym_DASH_DASH] = ACTIONS(2745), + [anon_sym_PLUS_PLUS] = ACTIONS(2745), + [anon_sym_sizeof] = ACTIONS(2743), + [anon_sym___alignof__] = ACTIONS(2743), + [anon_sym___alignof] = ACTIONS(2743), + [anon_sym__alignof] = ACTIONS(2743), + [anon_sym_alignof] = ACTIONS(2743), + [anon_sym__Alignof] = ACTIONS(2743), + [anon_sym_offsetof] = ACTIONS(2743), + [anon_sym__Generic] = ACTIONS(2743), + [anon_sym_asm] = ACTIONS(2743), + [anon_sym___asm__] = ACTIONS(2743), + [anon_sym___asm] = ACTIONS(2743), + [sym_number_literal] = ACTIONS(2745), + [anon_sym_L_SQUOTE] = ACTIONS(2745), + [anon_sym_u_SQUOTE] = ACTIONS(2745), + [anon_sym_U_SQUOTE] = ACTIONS(2745), + [anon_sym_u8_SQUOTE] = ACTIONS(2745), + [anon_sym_SQUOTE] = ACTIONS(2745), + [anon_sym_L_DQUOTE] = ACTIONS(2745), + [anon_sym_u_DQUOTE] = ACTIONS(2745), + [anon_sym_U_DQUOTE] = ACTIONS(2745), + [anon_sym_u8_DQUOTE] = ACTIONS(2745), + [anon_sym_DQUOTE] = ACTIONS(2745), + [sym_true] = ACTIONS(2743), + [sym_false] = ACTIONS(2743), + [anon_sym_NULL] = ACTIONS(2743), + [anon_sym_nullptr] = ACTIONS(2743), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2743), + [anon_sym_decltype] = ACTIONS(2743), + [anon_sym_typename] = ACTIONS(2743), + [anon_sym_template] = ACTIONS(2743), + [anon_sym_try] = ACTIONS(2743), + [anon_sym_delete] = ACTIONS(2743), + [anon_sym_throw] = ACTIONS(2743), + [anon_sym_co_return] = ACTIONS(2743), + [anon_sym_co_yield] = ACTIONS(2743), + [anon_sym_R_DQUOTE] = ACTIONS(2745), + [anon_sym_LR_DQUOTE] = ACTIONS(2745), + [anon_sym_uR_DQUOTE] = ACTIONS(2745), + [anon_sym_UR_DQUOTE] = ACTIONS(2745), + [anon_sym_u8R_DQUOTE] = ACTIONS(2745), + [anon_sym_co_await] = ACTIONS(2743), + [anon_sym_new] = ACTIONS(2743), + [anon_sym_requires] = ACTIONS(2743), + [sym_this] = ACTIONS(2743), + }, + [947] = { + [sym_identifier] = ACTIONS(2725), + [anon_sym_LPAREN2] = ACTIONS(2727), + [anon_sym_BANG] = ACTIONS(2727), + [anon_sym_TILDE] = ACTIONS(2727), + [anon_sym_DASH] = ACTIONS(2725), + [anon_sym_PLUS] = ACTIONS(2725), + [anon_sym_STAR] = ACTIONS(2727), + [anon_sym_AMP] = ACTIONS(2727), + [anon_sym_SEMI] = ACTIONS(2727), + [anon_sym___extension__] = ACTIONS(2725), + [anon_sym_typedef] = ACTIONS(2725), + [anon_sym_virtual] = ACTIONS(2725), + [anon_sym_extern] = ACTIONS(2725), + [anon_sym___attribute__] = ACTIONS(2725), + [anon_sym___attribute] = ACTIONS(2725), + [anon_sym_COLON_COLON] = ACTIONS(2727), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2727), + [anon_sym___declspec] = ACTIONS(2725), + [anon_sym_LBRACE] = ACTIONS(2727), + [anon_sym_signed] = ACTIONS(2725), + [anon_sym_unsigned] = ACTIONS(2725), + [anon_sym_long] = ACTIONS(2725), + [anon_sym_short] = ACTIONS(2725), + [anon_sym_LBRACK] = ACTIONS(2725), + [anon_sym_static] = ACTIONS(2725), + [anon_sym_register] = ACTIONS(2725), + [anon_sym_inline] = ACTIONS(2725), + [anon_sym___inline] = ACTIONS(2725), + [anon_sym___inline__] = ACTIONS(2725), + [anon_sym___forceinline] = ACTIONS(2725), + [anon_sym_thread_local] = ACTIONS(2725), + [anon_sym___thread] = ACTIONS(2725), + [anon_sym_const] = ACTIONS(2725), + [anon_sym_constexpr] = ACTIONS(2725), + [anon_sym_volatile] = ACTIONS(2725), + [anon_sym_restrict] = ACTIONS(2725), + [anon_sym___restrict__] = ACTIONS(2725), + [anon_sym__Atomic] = ACTIONS(2725), + [anon_sym__Noreturn] = ACTIONS(2725), + [anon_sym_noreturn] = ACTIONS(2725), + [anon_sym__Nonnull] = ACTIONS(2725), + [anon_sym_mutable] = ACTIONS(2725), + [anon_sym_constinit] = ACTIONS(2725), + [anon_sym_consteval] = ACTIONS(2725), + [anon_sym_alignas] = ACTIONS(2725), + [anon_sym__Alignas] = ACTIONS(2725), + [sym_primitive_type] = ACTIONS(2725), + [anon_sym_enum] = ACTIONS(2725), + [anon_sym_class] = ACTIONS(2725), + [anon_sym_struct] = ACTIONS(2725), + [anon_sym_union] = ACTIONS(2725), + [anon_sym_if] = ACTIONS(2725), + [anon_sym_else] = ACTIONS(2725), + [anon_sym_switch] = ACTIONS(2725), + [anon_sym_while] = ACTIONS(2725), + [anon_sym_do] = ACTIONS(2725), + [anon_sym_for] = ACTIONS(2725), + [anon_sym_return] = ACTIONS(2725), + [anon_sym_break] = ACTIONS(2725), + [anon_sym_continue] = ACTIONS(2725), + [anon_sym_goto] = ACTIONS(2725), + [anon_sym___try] = ACTIONS(2725), + [anon_sym___leave] = ACTIONS(2725), + [anon_sym_not] = ACTIONS(2725), + [anon_sym_compl] = ACTIONS(2725), + [anon_sym_DASH_DASH] = ACTIONS(2727), + [anon_sym_PLUS_PLUS] = ACTIONS(2727), + [anon_sym_sizeof] = ACTIONS(2725), + [anon_sym___alignof__] = ACTIONS(2725), + [anon_sym___alignof] = ACTIONS(2725), + [anon_sym__alignof] = ACTIONS(2725), + [anon_sym_alignof] = ACTIONS(2725), + [anon_sym__Alignof] = ACTIONS(2725), + [anon_sym_offsetof] = ACTIONS(2725), + [anon_sym__Generic] = ACTIONS(2725), + [anon_sym_asm] = ACTIONS(2725), + [anon_sym___asm__] = ACTIONS(2725), + [anon_sym___asm] = ACTIONS(2725), + [sym_number_literal] = ACTIONS(2727), + [anon_sym_L_SQUOTE] = ACTIONS(2727), + [anon_sym_u_SQUOTE] = ACTIONS(2727), + [anon_sym_U_SQUOTE] = ACTIONS(2727), + [anon_sym_u8_SQUOTE] = ACTIONS(2727), + [anon_sym_SQUOTE] = ACTIONS(2727), + [anon_sym_L_DQUOTE] = ACTIONS(2727), + [anon_sym_u_DQUOTE] = ACTIONS(2727), + [anon_sym_U_DQUOTE] = ACTIONS(2727), + [anon_sym_u8_DQUOTE] = ACTIONS(2727), + [anon_sym_DQUOTE] = ACTIONS(2727), + [sym_true] = ACTIONS(2725), + [sym_false] = ACTIONS(2725), + [anon_sym_NULL] = ACTIONS(2725), + [anon_sym_nullptr] = ACTIONS(2725), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2725), + [anon_sym_decltype] = ACTIONS(2725), + [anon_sym_typename] = ACTIONS(2725), + [anon_sym_template] = ACTIONS(2725), + [anon_sym_try] = ACTIONS(2725), + [anon_sym_delete] = ACTIONS(2725), + [anon_sym_throw] = ACTIONS(2725), + [anon_sym_co_return] = ACTIONS(2725), + [anon_sym_co_yield] = ACTIONS(2725), + [anon_sym_R_DQUOTE] = ACTIONS(2727), + [anon_sym_LR_DQUOTE] = ACTIONS(2727), + [anon_sym_uR_DQUOTE] = ACTIONS(2727), + [anon_sym_UR_DQUOTE] = ACTIONS(2727), + [anon_sym_u8R_DQUOTE] = ACTIONS(2727), + [anon_sym_co_await] = ACTIONS(2725), + [anon_sym_new] = ACTIONS(2725), + [anon_sym_requires] = ACTIONS(2725), + [sym_this] = ACTIONS(2725), + }, + [948] = { + [sym_identifier] = ACTIONS(2691), + [anon_sym_LPAREN2] = ACTIONS(2693), + [anon_sym_BANG] = ACTIONS(2693), + [anon_sym_TILDE] = ACTIONS(2693), + [anon_sym_DASH] = ACTIONS(2691), + [anon_sym_PLUS] = ACTIONS(2691), + [anon_sym_STAR] = ACTIONS(2693), + [anon_sym_AMP] = ACTIONS(2693), + [anon_sym_SEMI] = ACTIONS(2693), + [anon_sym___extension__] = ACTIONS(2691), + [anon_sym_typedef] = ACTIONS(2691), + [anon_sym_virtual] = ACTIONS(2691), + [anon_sym_extern] = ACTIONS(2691), + [anon_sym___attribute__] = ACTIONS(2691), + [anon_sym___attribute] = ACTIONS(2691), + [anon_sym_COLON_COLON] = ACTIONS(2693), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2693), + [anon_sym___declspec] = ACTIONS(2691), + [anon_sym_LBRACE] = ACTIONS(2693), + [anon_sym_signed] = ACTIONS(2691), + [anon_sym_unsigned] = ACTIONS(2691), + [anon_sym_long] = ACTIONS(2691), + [anon_sym_short] = ACTIONS(2691), + [anon_sym_LBRACK] = ACTIONS(2691), + [anon_sym_static] = ACTIONS(2691), + [anon_sym_register] = ACTIONS(2691), + [anon_sym_inline] = ACTIONS(2691), + [anon_sym___inline] = ACTIONS(2691), + [anon_sym___inline__] = ACTIONS(2691), + [anon_sym___forceinline] = ACTIONS(2691), + [anon_sym_thread_local] = ACTIONS(2691), + [anon_sym___thread] = ACTIONS(2691), + [anon_sym_const] = ACTIONS(2691), + [anon_sym_constexpr] = ACTIONS(2691), + [anon_sym_volatile] = ACTIONS(2691), + [anon_sym_restrict] = ACTIONS(2691), + [anon_sym___restrict__] = ACTIONS(2691), + [anon_sym__Atomic] = ACTIONS(2691), + [anon_sym__Noreturn] = ACTIONS(2691), + [anon_sym_noreturn] = ACTIONS(2691), + [anon_sym__Nonnull] = ACTIONS(2691), + [anon_sym_mutable] = ACTIONS(2691), + [anon_sym_constinit] = ACTIONS(2691), + [anon_sym_consteval] = ACTIONS(2691), + [anon_sym_alignas] = ACTIONS(2691), + [anon_sym__Alignas] = ACTIONS(2691), + [sym_primitive_type] = ACTIONS(2691), + [anon_sym_enum] = ACTIONS(2691), + [anon_sym_class] = ACTIONS(2691), + [anon_sym_struct] = ACTIONS(2691), + [anon_sym_union] = ACTIONS(2691), + [anon_sym_if] = ACTIONS(2691), + [anon_sym_else] = ACTIONS(2691), + [anon_sym_switch] = ACTIONS(2691), + [anon_sym_while] = ACTIONS(2691), + [anon_sym_do] = ACTIONS(2691), + [anon_sym_for] = ACTIONS(2691), + [anon_sym_return] = ACTIONS(2691), + [anon_sym_break] = ACTIONS(2691), + [anon_sym_continue] = ACTIONS(2691), + [anon_sym_goto] = ACTIONS(2691), + [anon_sym___try] = ACTIONS(2691), + [anon_sym___leave] = ACTIONS(2691), + [anon_sym_not] = ACTIONS(2691), + [anon_sym_compl] = ACTIONS(2691), + [anon_sym_DASH_DASH] = ACTIONS(2693), + [anon_sym_PLUS_PLUS] = ACTIONS(2693), + [anon_sym_sizeof] = ACTIONS(2691), + [anon_sym___alignof__] = ACTIONS(2691), + [anon_sym___alignof] = ACTIONS(2691), + [anon_sym__alignof] = ACTIONS(2691), + [anon_sym_alignof] = ACTIONS(2691), + [anon_sym__Alignof] = ACTIONS(2691), + [anon_sym_offsetof] = ACTIONS(2691), + [anon_sym__Generic] = ACTIONS(2691), + [anon_sym_asm] = ACTIONS(2691), + [anon_sym___asm__] = ACTIONS(2691), + [anon_sym___asm] = ACTIONS(2691), + [sym_number_literal] = ACTIONS(2693), + [anon_sym_L_SQUOTE] = ACTIONS(2693), + [anon_sym_u_SQUOTE] = ACTIONS(2693), + [anon_sym_U_SQUOTE] = ACTIONS(2693), + [anon_sym_u8_SQUOTE] = ACTIONS(2693), + [anon_sym_SQUOTE] = ACTIONS(2693), + [anon_sym_L_DQUOTE] = ACTIONS(2693), + [anon_sym_u_DQUOTE] = ACTIONS(2693), + [anon_sym_U_DQUOTE] = ACTIONS(2693), + [anon_sym_u8_DQUOTE] = ACTIONS(2693), + [anon_sym_DQUOTE] = ACTIONS(2693), + [sym_true] = ACTIONS(2691), + [sym_false] = ACTIONS(2691), + [anon_sym_NULL] = ACTIONS(2691), + [anon_sym_nullptr] = ACTIONS(2691), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2751), - [anon_sym_decltype] = ACTIONS(2751), - [anon_sym_typename] = ACTIONS(2751), - [anon_sym_template] = ACTIONS(2751), - [anon_sym_try] = ACTIONS(2751), - [anon_sym_delete] = ACTIONS(2751), - [anon_sym_throw] = ACTIONS(2751), - [anon_sym_co_return] = ACTIONS(2751), - [anon_sym_co_yield] = ACTIONS(2751), - [anon_sym_R_DQUOTE] = ACTIONS(2753), - [anon_sym_LR_DQUOTE] = ACTIONS(2753), - [anon_sym_uR_DQUOTE] = ACTIONS(2753), - [anon_sym_UR_DQUOTE] = ACTIONS(2753), - [anon_sym_u8R_DQUOTE] = ACTIONS(2753), - [anon_sym_co_await] = ACTIONS(2751), - [anon_sym_new] = ACTIONS(2751), - [anon_sym_requires] = ACTIONS(2751), - [sym_this] = ACTIONS(2751), + [sym_auto] = ACTIONS(2691), + [anon_sym_decltype] = ACTIONS(2691), + [anon_sym_typename] = ACTIONS(2691), + [anon_sym_template] = ACTIONS(2691), + [anon_sym_try] = ACTIONS(2691), + [anon_sym_delete] = ACTIONS(2691), + [anon_sym_throw] = ACTIONS(2691), + [anon_sym_co_return] = ACTIONS(2691), + [anon_sym_co_yield] = ACTIONS(2691), + [anon_sym_R_DQUOTE] = ACTIONS(2693), + [anon_sym_LR_DQUOTE] = ACTIONS(2693), + [anon_sym_uR_DQUOTE] = ACTIONS(2693), + [anon_sym_UR_DQUOTE] = ACTIONS(2693), + [anon_sym_u8R_DQUOTE] = ACTIONS(2693), + [anon_sym_co_await] = ACTIONS(2691), + [anon_sym_new] = ACTIONS(2691), + [anon_sym_requires] = ACTIONS(2691), + [sym_this] = ACTIONS(2691), }, - [899] = { + [949] = { [sym_identifier] = ACTIONS(2643), [anon_sym_LPAREN2] = ACTIONS(2645), [anon_sym_BANG] = ACTIONS(2645), @@ -168014,193 +174408,1737 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2643), [sym_this] = ACTIONS(2643), }, - [900] = { - [sym_identifier] = ACTIONS(4103), - [anon_sym_LPAREN2] = ACTIONS(4109), - [anon_sym_BANG] = ACTIONS(4109), - [anon_sym_TILDE] = ACTIONS(4109), - [anon_sym_DASH] = ACTIONS(4111), - [anon_sym_PLUS] = ACTIONS(4111), - [anon_sym_STAR] = ACTIONS(4109), - [anon_sym_AMP] = ACTIONS(4109), - [anon_sym_SEMI] = ACTIONS(4109), - [anon_sym___extension__] = ACTIONS(4103), - [anon_sym_virtual] = ACTIONS(4115), - [anon_sym_extern] = ACTIONS(4115), - [anon_sym___attribute__] = ACTIONS(4115), - [anon_sym___attribute] = ACTIONS(4115), - [anon_sym_COLON_COLON] = ACTIONS(4106), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4106), - [anon_sym___declspec] = ACTIONS(4115), - [anon_sym_LBRACE] = ACTIONS(4109), - [anon_sym_signed] = ACTIONS(4115), - [anon_sym_unsigned] = ACTIONS(4115), - [anon_sym_long] = ACTIONS(4115), - [anon_sym_short] = ACTIONS(4115), - [anon_sym_LBRACK] = ACTIONS(4111), - [anon_sym_static] = ACTIONS(4115), - [anon_sym_register] = ACTIONS(4115), - [anon_sym_inline] = ACTIONS(4115), - [anon_sym___inline] = ACTIONS(4115), - [anon_sym___inline__] = ACTIONS(4115), - [anon_sym___forceinline] = ACTIONS(4115), - [anon_sym_thread_local] = ACTIONS(4115), - [anon_sym___thread] = ACTIONS(4115), - [anon_sym_const] = ACTIONS(4115), - [anon_sym_constexpr] = ACTIONS(4115), - [anon_sym_volatile] = ACTIONS(4115), - [anon_sym_restrict] = ACTIONS(4115), - [anon_sym___restrict__] = ACTIONS(4115), - [anon_sym__Atomic] = ACTIONS(4115), - [anon_sym__Noreturn] = ACTIONS(4115), - [anon_sym_noreturn] = ACTIONS(4115), - [anon_sym__Nonnull] = ACTIONS(4115), - [anon_sym_mutable] = ACTIONS(4115), - [anon_sym_constinit] = ACTIONS(4115), - [anon_sym_consteval] = ACTIONS(4115), - [anon_sym_alignas] = ACTIONS(4115), - [anon_sym__Alignas] = ACTIONS(4115), - [sym_primitive_type] = ACTIONS(4103), - [anon_sym_enum] = ACTIONS(4115), - [anon_sym_class] = ACTIONS(4115), - [anon_sym_struct] = ACTIONS(4115), - [anon_sym_union] = ACTIONS(4115), - [anon_sym_if] = ACTIONS(4111), - [anon_sym_switch] = ACTIONS(4111), - [anon_sym_case] = ACTIONS(4111), - [anon_sym_default] = ACTIONS(4111), - [anon_sym_while] = ACTIONS(4111), - [anon_sym_do] = ACTIONS(4111), - [anon_sym_for] = ACTIONS(4111), - [anon_sym_return] = ACTIONS(4111), - [anon_sym_break] = ACTIONS(4111), - [anon_sym_continue] = ACTIONS(4111), - [anon_sym_goto] = ACTIONS(4111), - [anon_sym___try] = ACTIONS(4111), - [anon_sym___leave] = ACTIONS(4111), - [anon_sym_not] = ACTIONS(4111), - [anon_sym_compl] = ACTIONS(4111), - [anon_sym_DASH_DASH] = ACTIONS(4109), - [anon_sym_PLUS_PLUS] = ACTIONS(4109), - [anon_sym_sizeof] = ACTIONS(4111), - [anon_sym___alignof__] = ACTIONS(4111), - [anon_sym___alignof] = ACTIONS(4111), - [anon_sym__alignof] = ACTIONS(4111), - [anon_sym_alignof] = ACTIONS(4111), - [anon_sym__Alignof] = ACTIONS(4111), - [anon_sym_offsetof] = ACTIONS(4111), - [anon_sym__Generic] = ACTIONS(4111), - [anon_sym_asm] = ACTIONS(4111), - [anon_sym___asm__] = ACTIONS(4111), - [anon_sym___asm] = ACTIONS(4111), - [sym_number_literal] = ACTIONS(4109), - [anon_sym_L_SQUOTE] = ACTIONS(4109), - [anon_sym_u_SQUOTE] = ACTIONS(4109), - [anon_sym_U_SQUOTE] = ACTIONS(4109), - [anon_sym_u8_SQUOTE] = ACTIONS(4109), - [anon_sym_SQUOTE] = ACTIONS(4109), - [anon_sym_L_DQUOTE] = ACTIONS(4109), - [anon_sym_u_DQUOTE] = ACTIONS(4109), - [anon_sym_U_DQUOTE] = ACTIONS(4109), - [anon_sym_u8_DQUOTE] = ACTIONS(4109), - [anon_sym_DQUOTE] = ACTIONS(4109), - [sym_true] = ACTIONS(4111), - [sym_false] = ACTIONS(4111), - [anon_sym_NULL] = ACTIONS(4111), - [anon_sym_nullptr] = ACTIONS(4111), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4115), - [anon_sym_decltype] = ACTIONS(4103), - [anon_sym_typename] = ACTIONS(4115), - [anon_sym_template] = ACTIONS(4103), - [anon_sym_try] = ACTIONS(4111), - [anon_sym_delete] = ACTIONS(4111), - [anon_sym_throw] = ACTIONS(4111), - [anon_sym_co_return] = ACTIONS(4111), - [anon_sym_co_yield] = ACTIONS(4111), - [anon_sym_R_DQUOTE] = ACTIONS(4109), - [anon_sym_LR_DQUOTE] = ACTIONS(4109), - [anon_sym_uR_DQUOTE] = ACTIONS(4109), - [anon_sym_UR_DQUOTE] = ACTIONS(4109), - [anon_sym_u8R_DQUOTE] = ACTIONS(4109), - [anon_sym_co_await] = ACTIONS(4111), - [anon_sym_new] = ACTIONS(4111), - [anon_sym_requires] = ACTIONS(4111), - [sym_this] = ACTIONS(4111), + [950] = { + [sym_identifier] = ACTIONS(4049), + [anon_sym_LPAREN2] = ACTIONS(4055), + [anon_sym_BANG] = ACTIONS(4055), + [anon_sym_TILDE] = ACTIONS(4055), + [anon_sym_DASH] = ACTIONS(4057), + [anon_sym_PLUS] = ACTIONS(4057), + [anon_sym_STAR] = ACTIONS(4055), + [anon_sym_AMP] = ACTIONS(4055), + [anon_sym_SEMI] = ACTIONS(4055), + [anon_sym___extension__] = ACTIONS(4049), + [anon_sym_virtual] = ACTIONS(4061), + [anon_sym_extern] = ACTIONS(4061), + [anon_sym___attribute__] = ACTIONS(4061), + [anon_sym___attribute] = ACTIONS(4061), + [anon_sym_COLON_COLON] = ACTIONS(4052), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4052), + [anon_sym___declspec] = ACTIONS(4061), + [anon_sym_LBRACE] = ACTIONS(4055), + [anon_sym_signed] = ACTIONS(4061), + [anon_sym_unsigned] = ACTIONS(4061), + [anon_sym_long] = ACTIONS(4061), + [anon_sym_short] = ACTIONS(4061), + [anon_sym_LBRACK] = ACTIONS(4057), + [anon_sym_static] = ACTIONS(4061), + [anon_sym_register] = ACTIONS(4061), + [anon_sym_inline] = ACTIONS(4061), + [anon_sym___inline] = ACTIONS(4061), + [anon_sym___inline__] = ACTIONS(4061), + [anon_sym___forceinline] = ACTIONS(4061), + [anon_sym_thread_local] = ACTIONS(4061), + [anon_sym___thread] = ACTIONS(4061), + [anon_sym_const] = ACTIONS(4061), + [anon_sym_constexpr] = ACTIONS(4061), + [anon_sym_volatile] = ACTIONS(4061), + [anon_sym_restrict] = ACTIONS(4061), + [anon_sym___restrict__] = ACTIONS(4061), + [anon_sym__Atomic] = ACTIONS(4061), + [anon_sym__Noreturn] = ACTIONS(4061), + [anon_sym_noreturn] = ACTIONS(4061), + [anon_sym__Nonnull] = ACTIONS(4061), + [anon_sym_mutable] = ACTIONS(4061), + [anon_sym_constinit] = ACTIONS(4061), + [anon_sym_consteval] = ACTIONS(4061), + [anon_sym_alignas] = ACTIONS(4061), + [anon_sym__Alignas] = ACTIONS(4061), + [sym_primitive_type] = ACTIONS(4049), + [anon_sym_enum] = ACTIONS(4061), + [anon_sym_class] = ACTIONS(4061), + [anon_sym_struct] = ACTIONS(4061), + [anon_sym_union] = ACTIONS(4061), + [anon_sym_if] = ACTIONS(4057), + [anon_sym_switch] = ACTIONS(4057), + [anon_sym_case] = ACTIONS(4057), + [anon_sym_default] = ACTIONS(4057), + [anon_sym_while] = ACTIONS(4057), + [anon_sym_do] = ACTIONS(4057), + [anon_sym_for] = ACTIONS(4057), + [anon_sym_return] = ACTIONS(4057), + [anon_sym_break] = ACTIONS(4057), + [anon_sym_continue] = ACTIONS(4057), + [anon_sym_goto] = ACTIONS(4057), + [anon_sym___try] = ACTIONS(4057), + [anon_sym___leave] = ACTIONS(4057), + [anon_sym_not] = ACTIONS(4057), + [anon_sym_compl] = ACTIONS(4057), + [anon_sym_DASH_DASH] = ACTIONS(4055), + [anon_sym_PLUS_PLUS] = ACTIONS(4055), + [anon_sym_sizeof] = ACTIONS(4057), + [anon_sym___alignof__] = ACTIONS(4057), + [anon_sym___alignof] = ACTIONS(4057), + [anon_sym__alignof] = ACTIONS(4057), + [anon_sym_alignof] = ACTIONS(4057), + [anon_sym__Alignof] = ACTIONS(4057), + [anon_sym_offsetof] = ACTIONS(4057), + [anon_sym__Generic] = ACTIONS(4057), + [anon_sym_asm] = ACTIONS(4057), + [anon_sym___asm__] = ACTIONS(4057), + [anon_sym___asm] = ACTIONS(4057), + [sym_number_literal] = ACTIONS(4055), + [anon_sym_L_SQUOTE] = ACTIONS(4055), + [anon_sym_u_SQUOTE] = ACTIONS(4055), + [anon_sym_U_SQUOTE] = ACTIONS(4055), + [anon_sym_u8_SQUOTE] = ACTIONS(4055), + [anon_sym_SQUOTE] = ACTIONS(4055), + [anon_sym_L_DQUOTE] = ACTIONS(4055), + [anon_sym_u_DQUOTE] = ACTIONS(4055), + [anon_sym_U_DQUOTE] = ACTIONS(4055), + [anon_sym_u8_DQUOTE] = ACTIONS(4055), + [anon_sym_DQUOTE] = ACTIONS(4055), + [sym_true] = ACTIONS(4057), + [sym_false] = ACTIONS(4057), + [anon_sym_NULL] = ACTIONS(4057), + [anon_sym_nullptr] = ACTIONS(4057), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4061), + [anon_sym_decltype] = ACTIONS(4049), + [anon_sym_typename] = ACTIONS(4061), + [anon_sym_template] = ACTIONS(4049), + [anon_sym_try] = ACTIONS(4057), + [anon_sym_delete] = ACTIONS(4057), + [anon_sym_throw] = ACTIONS(4057), + [anon_sym_co_return] = ACTIONS(4057), + [anon_sym_co_yield] = ACTIONS(4057), + [anon_sym_R_DQUOTE] = ACTIONS(4055), + [anon_sym_LR_DQUOTE] = ACTIONS(4055), + [anon_sym_uR_DQUOTE] = ACTIONS(4055), + [anon_sym_UR_DQUOTE] = ACTIONS(4055), + [anon_sym_u8R_DQUOTE] = ACTIONS(4055), + [anon_sym_co_await] = ACTIONS(4057), + [anon_sym_new] = ACTIONS(4057), + [anon_sym_requires] = ACTIONS(4057), + [sym_this] = ACTIONS(4057), }, - [901] = { - [sym_ms_based_modifier] = STATE(8682), - [sym__declarator] = STATE(6451), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(5998), - [sym_array_declarator] = STATE(5998), - [sym_expression] = STATE(2398), - [sym__string] = STATE(2950), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(2950), - [sym_concatenated_string] = STATE(2950), - [sym_string_literal] = STATE(2034), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3243), - [sym_raw_string_literal] = STATE(2034), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5654), - [sym_qualified_identifier] = STATE(3252), - [sym_qualified_type_identifier] = STATE(7743), - [sym_operator_name] = STATE(5998), - [sym_user_defined_literal] = STATE(2480), - [sym_identifier] = ACTIONS(3335), - [anon_sym_LPAREN2] = ACTIONS(3337), + [951] = { + [sym_identifier] = ACTIONS(2663), + [anon_sym_LPAREN2] = ACTIONS(2665), + [anon_sym_BANG] = ACTIONS(2665), + [anon_sym_TILDE] = ACTIONS(2665), + [anon_sym_DASH] = ACTIONS(2663), + [anon_sym_PLUS] = ACTIONS(2663), + [anon_sym_STAR] = ACTIONS(2665), + [anon_sym_AMP] = ACTIONS(2665), + [anon_sym_SEMI] = ACTIONS(2665), + [anon_sym___extension__] = ACTIONS(2663), + [anon_sym_typedef] = ACTIONS(2663), + [anon_sym_virtual] = ACTIONS(2663), + [anon_sym_extern] = ACTIONS(2663), + [anon_sym___attribute__] = ACTIONS(2663), + [anon_sym___attribute] = ACTIONS(2663), + [anon_sym_COLON_COLON] = ACTIONS(2665), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2665), + [anon_sym___declspec] = ACTIONS(2663), + [anon_sym_LBRACE] = ACTIONS(2665), + [anon_sym_signed] = ACTIONS(2663), + [anon_sym_unsigned] = ACTIONS(2663), + [anon_sym_long] = ACTIONS(2663), + [anon_sym_short] = ACTIONS(2663), + [anon_sym_LBRACK] = ACTIONS(2663), + [anon_sym_static] = ACTIONS(2663), + [anon_sym_register] = ACTIONS(2663), + [anon_sym_inline] = ACTIONS(2663), + [anon_sym___inline] = ACTIONS(2663), + [anon_sym___inline__] = ACTIONS(2663), + [anon_sym___forceinline] = ACTIONS(2663), + [anon_sym_thread_local] = ACTIONS(2663), + [anon_sym___thread] = ACTIONS(2663), + [anon_sym_const] = ACTIONS(2663), + [anon_sym_constexpr] = ACTIONS(2663), + [anon_sym_volatile] = ACTIONS(2663), + [anon_sym_restrict] = ACTIONS(2663), + [anon_sym___restrict__] = ACTIONS(2663), + [anon_sym__Atomic] = ACTIONS(2663), + [anon_sym__Noreturn] = ACTIONS(2663), + [anon_sym_noreturn] = ACTIONS(2663), + [anon_sym__Nonnull] = ACTIONS(2663), + [anon_sym_mutable] = ACTIONS(2663), + [anon_sym_constinit] = ACTIONS(2663), + [anon_sym_consteval] = ACTIONS(2663), + [anon_sym_alignas] = ACTIONS(2663), + [anon_sym__Alignas] = ACTIONS(2663), + [sym_primitive_type] = ACTIONS(2663), + [anon_sym_enum] = ACTIONS(2663), + [anon_sym_class] = ACTIONS(2663), + [anon_sym_struct] = ACTIONS(2663), + [anon_sym_union] = ACTIONS(2663), + [anon_sym_if] = ACTIONS(2663), + [anon_sym_else] = ACTIONS(2663), + [anon_sym_switch] = ACTIONS(2663), + [anon_sym_while] = ACTIONS(2663), + [anon_sym_do] = ACTIONS(2663), + [anon_sym_for] = ACTIONS(2663), + [anon_sym_return] = ACTIONS(2663), + [anon_sym_break] = ACTIONS(2663), + [anon_sym_continue] = ACTIONS(2663), + [anon_sym_goto] = ACTIONS(2663), + [anon_sym___try] = ACTIONS(2663), + [anon_sym___leave] = ACTIONS(2663), + [anon_sym_not] = ACTIONS(2663), + [anon_sym_compl] = ACTIONS(2663), + [anon_sym_DASH_DASH] = ACTIONS(2665), + [anon_sym_PLUS_PLUS] = ACTIONS(2665), + [anon_sym_sizeof] = ACTIONS(2663), + [anon_sym___alignof__] = ACTIONS(2663), + [anon_sym___alignof] = ACTIONS(2663), + [anon_sym__alignof] = ACTIONS(2663), + [anon_sym_alignof] = ACTIONS(2663), + [anon_sym__Alignof] = ACTIONS(2663), + [anon_sym_offsetof] = ACTIONS(2663), + [anon_sym__Generic] = ACTIONS(2663), + [anon_sym_asm] = ACTIONS(2663), + [anon_sym___asm__] = ACTIONS(2663), + [anon_sym___asm] = ACTIONS(2663), + [sym_number_literal] = ACTIONS(2665), + [anon_sym_L_SQUOTE] = ACTIONS(2665), + [anon_sym_u_SQUOTE] = ACTIONS(2665), + [anon_sym_U_SQUOTE] = ACTIONS(2665), + [anon_sym_u8_SQUOTE] = ACTIONS(2665), + [anon_sym_SQUOTE] = ACTIONS(2665), + [anon_sym_L_DQUOTE] = ACTIONS(2665), + [anon_sym_u_DQUOTE] = ACTIONS(2665), + [anon_sym_U_DQUOTE] = ACTIONS(2665), + [anon_sym_u8_DQUOTE] = ACTIONS(2665), + [anon_sym_DQUOTE] = ACTIONS(2665), + [sym_true] = ACTIONS(2663), + [sym_false] = ACTIONS(2663), + [anon_sym_NULL] = ACTIONS(2663), + [anon_sym_nullptr] = ACTIONS(2663), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2663), + [anon_sym_decltype] = ACTIONS(2663), + [anon_sym_typename] = ACTIONS(2663), + [anon_sym_template] = ACTIONS(2663), + [anon_sym_try] = ACTIONS(2663), + [anon_sym_delete] = ACTIONS(2663), + [anon_sym_throw] = ACTIONS(2663), + [anon_sym_co_return] = ACTIONS(2663), + [anon_sym_co_yield] = ACTIONS(2663), + [anon_sym_R_DQUOTE] = ACTIONS(2665), + [anon_sym_LR_DQUOTE] = ACTIONS(2665), + [anon_sym_uR_DQUOTE] = ACTIONS(2665), + [anon_sym_UR_DQUOTE] = ACTIONS(2665), + [anon_sym_u8R_DQUOTE] = ACTIONS(2665), + [anon_sym_co_await] = ACTIONS(2663), + [anon_sym_new] = ACTIONS(2663), + [anon_sym_requires] = ACTIONS(2663), + [sym_this] = ACTIONS(2663), + }, + [952] = { + [sym_identifier] = ACTIONS(2659), + [anon_sym_LPAREN2] = ACTIONS(2661), + [anon_sym_BANG] = ACTIONS(2661), + [anon_sym_TILDE] = ACTIONS(2661), + [anon_sym_DASH] = ACTIONS(2659), + [anon_sym_PLUS] = ACTIONS(2659), + [anon_sym_STAR] = ACTIONS(2661), + [anon_sym_AMP] = ACTIONS(2661), + [anon_sym_SEMI] = ACTIONS(2661), + [anon_sym___extension__] = ACTIONS(2659), + [anon_sym_typedef] = ACTIONS(2659), + [anon_sym_virtual] = ACTIONS(2659), + [anon_sym_extern] = ACTIONS(2659), + [anon_sym___attribute__] = ACTIONS(2659), + [anon_sym___attribute] = ACTIONS(2659), + [anon_sym_COLON_COLON] = ACTIONS(2661), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2661), + [anon_sym___declspec] = ACTIONS(2659), + [anon_sym_LBRACE] = ACTIONS(2661), + [anon_sym_signed] = ACTIONS(2659), + [anon_sym_unsigned] = ACTIONS(2659), + [anon_sym_long] = ACTIONS(2659), + [anon_sym_short] = ACTIONS(2659), + [anon_sym_LBRACK] = ACTIONS(2659), + [anon_sym_static] = ACTIONS(2659), + [anon_sym_register] = ACTIONS(2659), + [anon_sym_inline] = ACTIONS(2659), + [anon_sym___inline] = ACTIONS(2659), + [anon_sym___inline__] = ACTIONS(2659), + [anon_sym___forceinline] = ACTIONS(2659), + [anon_sym_thread_local] = ACTIONS(2659), + [anon_sym___thread] = ACTIONS(2659), + [anon_sym_const] = ACTIONS(2659), + [anon_sym_constexpr] = ACTIONS(2659), + [anon_sym_volatile] = ACTIONS(2659), + [anon_sym_restrict] = ACTIONS(2659), + [anon_sym___restrict__] = ACTIONS(2659), + [anon_sym__Atomic] = ACTIONS(2659), + [anon_sym__Noreturn] = ACTIONS(2659), + [anon_sym_noreturn] = ACTIONS(2659), + [anon_sym__Nonnull] = ACTIONS(2659), + [anon_sym_mutable] = ACTIONS(2659), + [anon_sym_constinit] = ACTIONS(2659), + [anon_sym_consteval] = ACTIONS(2659), + [anon_sym_alignas] = ACTIONS(2659), + [anon_sym__Alignas] = ACTIONS(2659), + [sym_primitive_type] = ACTIONS(2659), + [anon_sym_enum] = ACTIONS(2659), + [anon_sym_class] = ACTIONS(2659), + [anon_sym_struct] = ACTIONS(2659), + [anon_sym_union] = ACTIONS(2659), + [anon_sym_if] = ACTIONS(2659), + [anon_sym_else] = ACTIONS(2659), + [anon_sym_switch] = ACTIONS(2659), + [anon_sym_while] = ACTIONS(2659), + [anon_sym_do] = ACTIONS(2659), + [anon_sym_for] = ACTIONS(2659), + [anon_sym_return] = ACTIONS(2659), + [anon_sym_break] = ACTIONS(2659), + [anon_sym_continue] = ACTIONS(2659), + [anon_sym_goto] = ACTIONS(2659), + [anon_sym___try] = ACTIONS(2659), + [anon_sym___leave] = ACTIONS(2659), + [anon_sym_not] = ACTIONS(2659), + [anon_sym_compl] = ACTIONS(2659), + [anon_sym_DASH_DASH] = ACTIONS(2661), + [anon_sym_PLUS_PLUS] = ACTIONS(2661), + [anon_sym_sizeof] = ACTIONS(2659), + [anon_sym___alignof__] = ACTIONS(2659), + [anon_sym___alignof] = ACTIONS(2659), + [anon_sym__alignof] = ACTIONS(2659), + [anon_sym_alignof] = ACTIONS(2659), + [anon_sym__Alignof] = ACTIONS(2659), + [anon_sym_offsetof] = ACTIONS(2659), + [anon_sym__Generic] = ACTIONS(2659), + [anon_sym_asm] = ACTIONS(2659), + [anon_sym___asm__] = ACTIONS(2659), + [anon_sym___asm] = ACTIONS(2659), + [sym_number_literal] = ACTIONS(2661), + [anon_sym_L_SQUOTE] = ACTIONS(2661), + [anon_sym_u_SQUOTE] = ACTIONS(2661), + [anon_sym_U_SQUOTE] = ACTIONS(2661), + [anon_sym_u8_SQUOTE] = ACTIONS(2661), + [anon_sym_SQUOTE] = ACTIONS(2661), + [anon_sym_L_DQUOTE] = ACTIONS(2661), + [anon_sym_u_DQUOTE] = ACTIONS(2661), + [anon_sym_U_DQUOTE] = ACTIONS(2661), + [anon_sym_u8_DQUOTE] = ACTIONS(2661), + [anon_sym_DQUOTE] = ACTIONS(2661), + [sym_true] = ACTIONS(2659), + [sym_false] = ACTIONS(2659), + [anon_sym_NULL] = ACTIONS(2659), + [anon_sym_nullptr] = ACTIONS(2659), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2659), + [anon_sym_decltype] = ACTIONS(2659), + [anon_sym_typename] = ACTIONS(2659), + [anon_sym_template] = ACTIONS(2659), + [anon_sym_try] = ACTIONS(2659), + [anon_sym_delete] = ACTIONS(2659), + [anon_sym_throw] = ACTIONS(2659), + [anon_sym_co_return] = ACTIONS(2659), + [anon_sym_co_yield] = ACTIONS(2659), + [anon_sym_R_DQUOTE] = ACTIONS(2661), + [anon_sym_LR_DQUOTE] = ACTIONS(2661), + [anon_sym_uR_DQUOTE] = ACTIONS(2661), + [anon_sym_UR_DQUOTE] = ACTIONS(2661), + [anon_sym_u8R_DQUOTE] = ACTIONS(2661), + [anon_sym_co_await] = ACTIONS(2659), + [anon_sym_new] = ACTIONS(2659), + [anon_sym_requires] = ACTIONS(2659), + [sym_this] = ACTIONS(2659), + }, + [953] = { + [sym__declaration_modifiers] = STATE(2121), + [sym__declaration_specifiers] = STATE(3995), + [sym_attribute_specifier] = STATE(2121), + [sym_attribute_declaration] = STATE(2121), + [sym_ms_declspec_modifier] = STATE(2121), + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_call_modifier] = STATE(4642), + [sym__declarator] = STATE(6806), + [sym__abstract_declarator] = STATE(7022), + [sym_parenthesized_declarator] = STATE(6145), + [sym_abstract_parenthesized_declarator] = STATE(6099), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_abstract_pointer_declarator] = STATE(6099), + [sym_function_declarator] = STATE(6145), + [sym_abstract_function_declarator] = STATE(6099), + [sym_array_declarator] = STATE(6145), + [sym_abstract_array_declarator] = STATE(6099), + [sym_storage_class_specifier] = STATE(2121), + [sym_type_qualifier] = STATE(2121), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_parameter_list] = STATE(3113), + [sym_parameter_declaration] = STATE(7297), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym_dependent_type] = STATE(2558), + [sym_optional_parameter_declaration] = STATE(7297), + [sym_variadic_parameter_declaration] = STATE(7297), + [sym_reference_declarator] = STATE(6145), + [sym_abstract_reference_declarator] = STATE(6099), + [sym_structured_binding_declarator] = STATE(6145), + [sym__function_declarator_seq] = STATE(6109), + [sym_template_type] = STATE(2439), + [sym_template_function] = STATE(6145), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5781), + [sym_qualified_identifier] = STATE(6145), + [sym_qualified_type_identifier] = STATE(3138), + [sym_operator_name] = STATE(6145), + [aux_sym__declaration_specifiers_repeat1] = STATE(2121), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(4306), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1866), + [anon_sym_RPAREN] = ACTIONS(4308), + [anon_sym_LPAREN2] = ACTIONS(4310), + [anon_sym_TILDE] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(4312), + [anon_sym_AMP_AMP] = ACTIONS(4314), + [anon_sym_AMP] = ACTIONS(4316), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1870), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(4318), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym___cdecl] = ACTIONS(1806), + [anon_sym___clrcall] = ACTIONS(1806), + [anon_sym___stdcall] = ACTIONS(1806), + [anon_sym___fastcall] = ACTIONS(1806), + [anon_sym___thiscall] = ACTIONS(1806), + [anon_sym___vectorcall] = ACTIONS(1806), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(4320), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(69), + [anon_sym__Alignas] = ACTIONS(69), + [sym_primitive_type] = ACTIONS(3019), + [anon_sym_enum] = ACTIONS(1874), + [anon_sym_class] = ACTIONS(1876), + [anon_sym_struct] = ACTIONS(1878), + [anon_sym_union] = ACTIONS(1880), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(125), + [anon_sym_decltype] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(1882), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_operator] = ACTIONS(1850), + }, + [954] = { + [sym_expression] = STATE(3237), + [sym__string] = STATE(3393), + [sym_conditional_expression] = STATE(3401), + [sym_assignment_expression] = STATE(3401), + [sym_pointer_expression] = STATE(3405), + [sym_unary_expression] = STATE(3401), + [sym_binary_expression] = STATE(3401), + [sym_update_expression] = STATE(3401), + [sym_cast_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3401), + [sym_alignof_expression] = STATE(3401), + [sym_offsetof_expression] = STATE(3401), + [sym_generic_expression] = STATE(3401), + [sym_subscript_expression] = STATE(3405), + [sym_call_expression] = STATE(3405), + [sym_gnu_asm_expression] = STATE(3401), + [sym_extension_expression] = STATE(3401), + [sym_field_expression] = STATE(3405), + [sym_compound_literal_expression] = STATE(3401), + [sym_parenthesized_expression] = STATE(3405), + [sym_char_literal] = STATE(3393), + [sym_concatenated_string] = STATE(3393), + [sym_string_literal] = STATE(2380), + [sym_null] = STATE(3401), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7745), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3401), + [sym_raw_string_literal] = STATE(2380), + [sym_co_await_expression] = STATE(3401), + [sym_new_expression] = STATE(3401), + [sym_delete_expression] = STATE(3401), + [sym_requires_clause] = STATE(3401), + [sym_requires_expression] = STATE(3401), + [sym_lambda_expression] = STATE(3401), + [sym_lambda_capture_specifier] = STATE(5494), + [sym_fold_expression] = STATE(3401), + [sym_parameter_pack_expansion] = STATE(3401), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3405), + [sym_qualified_type_identifier] = STATE(7745), + [sym_user_defined_literal] = STATE(3405), + [sym_identifier] = ACTIONS(2453), + [anon_sym_LPAREN2] = ACTIONS(4322), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym_LT] = ACTIONS(4322), + [anon_sym___extension__] = ACTIONS(2455), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4322), + [anon_sym_LBRACE] = ACTIONS(4322), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_static] = ACTIONS(4324), + [anon_sym_constexpr] = ACTIONS(4324), + [anon_sym_mutable] = ACTIONS(4324), + [anon_sym_consteval] = ACTIONS(4324), + [sym_primitive_type] = ACTIONS(2459), + [anon_sym_not] = ACTIONS(1796), + [anon_sym_compl] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_sizeof] = ACTIONS(1824), + [anon_sym___alignof__] = ACTIONS(1826), + [anon_sym___alignof] = ACTIONS(1826), + [anon_sym__alignof] = ACTIONS(1826), + [anon_sym_alignof] = ACTIONS(1826), + [anon_sym__Alignof] = ACTIONS(1826), + [anon_sym_offsetof] = ACTIONS(1828), + [anon_sym__Generic] = ACTIONS(1830), + [anon_sym_asm] = ACTIONS(1832), + [anon_sym___asm__] = ACTIONS(1832), + [anon_sym___asm] = ACTIONS(1832), + [anon_sym_DASH_GT] = ACTIONS(4322), + [sym_number_literal] = ACTIONS(1834), + [anon_sym_L_SQUOTE] = ACTIONS(1836), + [anon_sym_u_SQUOTE] = ACTIONS(1836), + [anon_sym_U_SQUOTE] = ACTIONS(1836), + [anon_sym_u8_SQUOTE] = ACTIONS(1836), + [anon_sym_SQUOTE] = ACTIONS(1836), + [anon_sym_L_DQUOTE] = ACTIONS(1838), + [anon_sym_u_DQUOTE] = ACTIONS(1838), + [anon_sym_U_DQUOTE] = ACTIONS(1838), + [anon_sym_u8_DQUOTE] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym_true] = ACTIONS(1840), + [sym_false] = ACTIONS(1840), + [anon_sym_NULL] = ACTIONS(1842), + [anon_sym_nullptr] = ACTIONS(1842), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1852), + [anon_sym_noexcept] = ACTIONS(4324), + [anon_sym_throw] = ACTIONS(4324), + [anon_sym_R_DQUOTE] = ACTIONS(1854), + [anon_sym_LR_DQUOTE] = ACTIONS(1854), + [anon_sym_uR_DQUOTE] = ACTIONS(1854), + [anon_sym_UR_DQUOTE] = ACTIONS(1854), + [anon_sym_u8R_DQUOTE] = ACTIONS(1854), + [anon_sym_co_await] = ACTIONS(1856), + [anon_sym_new] = ACTIONS(1858), + [anon_sym_requires] = ACTIONS(1860), + [sym_this] = ACTIONS(1840), + }, + [955] = { + [sym_expression_statement] = STATE(2760), + [sym_expression] = STATE(4616), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8334), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_type_requirement] = STATE(956), + [sym_compound_requirement] = STATE(956), + [sym__requirement] = STATE(956), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_requirement_seq_repeat1] = STATE(956), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(4326), + [anon_sym___extension__] = ACTIONS(2167), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(4328), + [anon_sym_RBRACE] = ACTIONS(4330), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [anon_sym___alignof__] = ACTIONS(107), + [anon_sym___alignof] = ACTIONS(107), + [anon_sym__alignof] = ACTIONS(107), + [anon_sym_alignof] = ACTIONS(107), + [anon_sym__Alignof] = ACTIONS(107), + [anon_sym_offsetof] = ACTIONS(109), + [anon_sym__Generic] = ACTIONS(111), + [anon_sym_asm] = ACTIONS(113), + [anon_sym___asm__] = ACTIONS(113), + [anon_sym___asm] = ACTIONS(113), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(117), + [anon_sym_u_SQUOTE] = ACTIONS(117), + [anon_sym_U_SQUOTE] = ACTIONS(117), + [anon_sym_u8_SQUOTE] = ACTIONS(117), + [anon_sym_SQUOTE] = ACTIONS(117), + [anon_sym_L_DQUOTE] = ACTIONS(119), + [anon_sym_u_DQUOTE] = ACTIONS(119), + [anon_sym_U_DQUOTE] = ACTIONS(119), + [anon_sym_u8_DQUOTE] = ACTIONS(119), + [anon_sym_DQUOTE] = ACTIONS(119), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(123), + [anon_sym_nullptr] = ACTIONS(123), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_typename] = ACTIONS(4332), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(145), + [anon_sym_R_DQUOTE] = ACTIONS(159), + [anon_sym_LR_DQUOTE] = ACTIONS(159), + [anon_sym_uR_DQUOTE] = ACTIONS(159), + [anon_sym_UR_DQUOTE] = ACTIONS(159), + [anon_sym_u8R_DQUOTE] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), + }, + [956] = { + [sym_expression_statement] = STATE(2760), + [sym_expression] = STATE(4616), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8334), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_type_requirement] = STATE(979), + [sym_compound_requirement] = STATE(979), + [sym__requirement] = STATE(979), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_requirement_seq_repeat1] = STATE(979), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(4326), + [anon_sym___extension__] = ACTIONS(2167), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(4328), + [anon_sym_RBRACE] = ACTIONS(4334), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [anon_sym___alignof__] = ACTIONS(107), + [anon_sym___alignof] = ACTIONS(107), + [anon_sym__alignof] = ACTIONS(107), + [anon_sym_alignof] = ACTIONS(107), + [anon_sym__Alignof] = ACTIONS(107), + [anon_sym_offsetof] = ACTIONS(109), + [anon_sym__Generic] = ACTIONS(111), + [anon_sym_asm] = ACTIONS(113), + [anon_sym___asm__] = ACTIONS(113), + [anon_sym___asm] = ACTIONS(113), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(117), + [anon_sym_u_SQUOTE] = ACTIONS(117), + [anon_sym_U_SQUOTE] = ACTIONS(117), + [anon_sym_u8_SQUOTE] = ACTIONS(117), + [anon_sym_SQUOTE] = ACTIONS(117), + [anon_sym_L_DQUOTE] = ACTIONS(119), + [anon_sym_u_DQUOTE] = ACTIONS(119), + [anon_sym_U_DQUOTE] = ACTIONS(119), + [anon_sym_u8_DQUOTE] = ACTIONS(119), + [anon_sym_DQUOTE] = ACTIONS(119), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(123), + [anon_sym_nullptr] = ACTIONS(123), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_typename] = ACTIONS(4332), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(145), + [anon_sym_R_DQUOTE] = ACTIONS(159), + [anon_sym_LR_DQUOTE] = ACTIONS(159), + [anon_sym_uR_DQUOTE] = ACTIONS(159), + [anon_sym_UR_DQUOTE] = ACTIONS(159), + [anon_sym_u8R_DQUOTE] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), + }, + [957] = { + [sym_expression] = STATE(4357), + [sym__string] = STATE(4455), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3366), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3366), + [sym_call_expression] = STATE(3366), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3366), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3366), + [sym_char_literal] = STATE(4455), + [sym_concatenated_string] = STATE(4455), + [sym_string_literal] = STATE(3406), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3406), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3366), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3366), + [sym_identifier] = ACTIONS(3833), + [anon_sym_LPAREN2] = ACTIONS(4322), + [anon_sym_BANG] = ACTIONS(3837), + [anon_sym_TILDE] = ACTIONS(3837), + [anon_sym_DASH] = ACTIONS(3835), + [anon_sym_PLUS] = ACTIONS(3835), + [anon_sym_STAR] = ACTIONS(4336), + [anon_sym_AMP] = ACTIONS(4336), + [anon_sym_LT] = ACTIONS(4322), + [anon_sym___extension__] = ACTIONS(3839), + [anon_sym_COLON_COLON] = ACTIONS(3841), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4322), + [anon_sym_LBRACE] = ACTIONS(4322), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_static] = ACTIONS(4324), + [anon_sym_constexpr] = ACTIONS(4324), + [anon_sym_mutable] = ACTIONS(4324), + [anon_sym_consteval] = ACTIONS(4324), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3835), + [anon_sym_compl] = ACTIONS(3835), + [anon_sym_DASH_DASH] = ACTIONS(4338), + [anon_sym_PLUS_PLUS] = ACTIONS(4338), + [anon_sym_sizeof] = ACTIONS(3843), + [anon_sym___alignof__] = ACTIONS(107), + [anon_sym___alignof] = ACTIONS(107), + [anon_sym__alignof] = ACTIONS(107), + [anon_sym_alignof] = ACTIONS(107), + [anon_sym__Alignof] = ACTIONS(107), + [anon_sym_offsetof] = ACTIONS(109), + [anon_sym__Generic] = ACTIONS(111), + [anon_sym_asm] = ACTIONS(113), + [anon_sym___asm__] = ACTIONS(113), + [anon_sym___asm] = ACTIONS(113), + [anon_sym_DASH_GT] = ACTIONS(4322), + [sym_number_literal] = ACTIONS(3845), + [anon_sym_L_SQUOTE] = ACTIONS(3847), + [anon_sym_u_SQUOTE] = ACTIONS(3847), + [anon_sym_U_SQUOTE] = ACTIONS(3847), + [anon_sym_u8_SQUOTE] = ACTIONS(3847), + [anon_sym_SQUOTE] = ACTIONS(3847), + [anon_sym_L_DQUOTE] = ACTIONS(3849), + [anon_sym_u_DQUOTE] = ACTIONS(3849), + [anon_sym_U_DQUOTE] = ACTIONS(3849), + [anon_sym_u8_DQUOTE] = ACTIONS(3849), + [anon_sym_DQUOTE] = ACTIONS(3849), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(123), + [anon_sym_nullptr] = ACTIONS(123), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3851), + [anon_sym_noexcept] = ACTIONS(4324), + [anon_sym_throw] = ACTIONS(4324), + [anon_sym_R_DQUOTE] = ACTIONS(3853), + [anon_sym_LR_DQUOTE] = ACTIONS(3853), + [anon_sym_uR_DQUOTE] = ACTIONS(3853), + [anon_sym_UR_DQUOTE] = ACTIONS(3853), + [anon_sym_u8R_DQUOTE] = ACTIONS(3853), + [anon_sym_co_await] = ACTIONS(3855), + [anon_sym_new] = ACTIONS(163), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), + }, + [958] = { + [sym_expression] = STATE(4377), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(4322), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_LT] = ACTIONS(4322), + [anon_sym___extension__] = ACTIONS(2167), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4322), + [anon_sym_LBRACE] = ACTIONS(4322), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_static] = ACTIONS(4324), + [anon_sym_constexpr] = ACTIONS(4324), + [anon_sym_mutable] = ACTIONS(4324), + [anon_sym_consteval] = ACTIONS(4324), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [anon_sym___alignof__] = ACTIONS(107), + [anon_sym___alignof] = ACTIONS(107), + [anon_sym__alignof] = ACTIONS(107), + [anon_sym_alignof] = ACTIONS(107), + [anon_sym__Alignof] = ACTIONS(107), + [anon_sym_offsetof] = ACTIONS(109), + [anon_sym__Generic] = ACTIONS(111), + [anon_sym_asm] = ACTIONS(113), + [anon_sym___asm__] = ACTIONS(113), + [anon_sym___asm] = ACTIONS(113), + [anon_sym_DASH_GT] = ACTIONS(4322), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(117), + [anon_sym_u_SQUOTE] = ACTIONS(117), + [anon_sym_U_SQUOTE] = ACTIONS(117), + [anon_sym_u8_SQUOTE] = ACTIONS(117), + [anon_sym_SQUOTE] = ACTIONS(117), + [anon_sym_L_DQUOTE] = ACTIONS(119), + [anon_sym_u_DQUOTE] = ACTIONS(119), + [anon_sym_U_DQUOTE] = ACTIONS(119), + [anon_sym_u8_DQUOTE] = ACTIONS(119), + [anon_sym_DQUOTE] = ACTIONS(119), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(123), + [anon_sym_nullptr] = ACTIONS(123), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(145), + [anon_sym_noexcept] = ACTIONS(4324), + [anon_sym_throw] = ACTIONS(4324), + [anon_sym_R_DQUOTE] = ACTIONS(159), + [anon_sym_LR_DQUOTE] = ACTIONS(159), + [anon_sym_uR_DQUOTE] = ACTIONS(159), + [anon_sym_UR_DQUOTE] = ACTIONS(159), + [anon_sym_u8R_DQUOTE] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), + }, + [959] = { + [sym_expression_statement] = STATE(2760), + [sym_expression] = STATE(4616), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8334), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_type_requirement] = STATE(961), + [sym_compound_requirement] = STATE(961), + [sym__requirement] = STATE(961), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_requirement_seq_repeat1] = STATE(961), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(4326), + [anon_sym___extension__] = ACTIONS(2167), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(4328), + [anon_sym_RBRACE] = ACTIONS(4340), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [anon_sym___alignof__] = ACTIONS(107), + [anon_sym___alignof] = ACTIONS(107), + [anon_sym__alignof] = ACTIONS(107), + [anon_sym_alignof] = ACTIONS(107), + [anon_sym__Alignof] = ACTIONS(107), + [anon_sym_offsetof] = ACTIONS(109), + [anon_sym__Generic] = ACTIONS(111), + [anon_sym_asm] = ACTIONS(113), + [anon_sym___asm__] = ACTIONS(113), + [anon_sym___asm] = ACTIONS(113), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(117), + [anon_sym_u_SQUOTE] = ACTIONS(117), + [anon_sym_U_SQUOTE] = ACTIONS(117), + [anon_sym_u8_SQUOTE] = ACTIONS(117), + [anon_sym_SQUOTE] = ACTIONS(117), + [anon_sym_L_DQUOTE] = ACTIONS(119), + [anon_sym_u_DQUOTE] = ACTIONS(119), + [anon_sym_U_DQUOTE] = ACTIONS(119), + [anon_sym_u8_DQUOTE] = ACTIONS(119), + [anon_sym_DQUOTE] = ACTIONS(119), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(123), + [anon_sym_nullptr] = ACTIONS(123), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_typename] = ACTIONS(4332), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(145), + [anon_sym_R_DQUOTE] = ACTIONS(159), + [anon_sym_LR_DQUOTE] = ACTIONS(159), + [anon_sym_uR_DQUOTE] = ACTIONS(159), + [anon_sym_UR_DQUOTE] = ACTIONS(159), + [anon_sym_u8R_DQUOTE] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), + }, + [960] = { + [sym_expression] = STATE(4510), + [sym__string] = STATE(4825), + [sym_conditional_expression] = STATE(4856), + [sym_assignment_expression] = STATE(4856), + [sym_pointer_expression] = STATE(3701), + [sym_unary_expression] = STATE(4856), + [sym_binary_expression] = STATE(4856), + [sym_update_expression] = STATE(4856), + [sym_cast_expression] = STATE(4856), + [sym_sizeof_expression] = STATE(4856), + [sym_alignof_expression] = STATE(4856), + [sym_offsetof_expression] = STATE(4856), + [sym_generic_expression] = STATE(4856), + [sym_subscript_expression] = STATE(3701), + [sym_call_expression] = STATE(3701), + [sym_gnu_asm_expression] = STATE(4856), + [sym_extension_expression] = STATE(4856), + [sym_field_expression] = STATE(3701), + [sym_compound_literal_expression] = STATE(4856), + [sym_parenthesized_expression] = STATE(3701), + [sym_char_literal] = STATE(4825), + [sym_concatenated_string] = STATE(4825), + [sym_string_literal] = STATE(3812), + [sym_null] = STATE(4856), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7816), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(4856), + [sym_raw_string_literal] = STATE(3812), + [sym_co_await_expression] = STATE(4856), + [sym_new_expression] = STATE(4856), + [sym_delete_expression] = STATE(4856), + [sym_requires_clause] = STATE(4856), + [sym_requires_expression] = STATE(4856), + [sym_lambda_expression] = STATE(4856), + [sym_lambda_capture_specifier] = STATE(5489), + [sym_fold_expression] = STATE(4856), + [sym_parameter_pack_expansion] = STATE(4856), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5769), + [sym_qualified_identifier] = STATE(3701), + [sym_qualified_type_identifier] = STATE(7816), + [sym_user_defined_literal] = STATE(3701), + [sym_identifier] = ACTIONS(3875), + [anon_sym_LPAREN2] = ACTIONS(4322), + [anon_sym_BANG] = ACTIONS(3132), + [anon_sym_TILDE] = ACTIONS(3132), + [anon_sym_DASH] = ACTIONS(3134), + [anon_sym_PLUS] = ACTIONS(3134), + [anon_sym_STAR] = ACTIONS(3136), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym_LT] = ACTIONS(4322), + [anon_sym___extension__] = ACTIONS(3877), + [anon_sym_COLON_COLON] = ACTIONS(3140), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4322), + [anon_sym_LBRACE] = ACTIONS(4322), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_static] = ACTIONS(4324), + [anon_sym_constexpr] = ACTIONS(4324), + [anon_sym_mutable] = ACTIONS(4324), + [anon_sym_consteval] = ACTIONS(4324), + [sym_primitive_type] = ACTIONS(3881), + [anon_sym_not] = ACTIONS(3134), + [anon_sym_compl] = ACTIONS(3134), + [anon_sym_DASH_DASH] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_sizeof] = ACTIONS(3156), + [anon_sym___alignof__] = ACTIONS(3158), + [anon_sym___alignof] = ACTIONS(3158), + [anon_sym__alignof] = ACTIONS(3158), + [anon_sym_alignof] = ACTIONS(3158), + [anon_sym__Alignof] = ACTIONS(3158), + [anon_sym_offsetof] = ACTIONS(3160), + [anon_sym__Generic] = ACTIONS(3162), + [anon_sym_asm] = ACTIONS(3164), + [anon_sym___asm__] = ACTIONS(3164), + [anon_sym___asm] = ACTIONS(3164), + [anon_sym_DASH_GT] = ACTIONS(4322), + [sym_number_literal] = ACTIONS(3166), + [anon_sym_L_SQUOTE] = ACTIONS(3168), + [anon_sym_u_SQUOTE] = ACTIONS(3168), + [anon_sym_U_SQUOTE] = ACTIONS(3168), + [anon_sym_u8_SQUOTE] = ACTIONS(3168), + [anon_sym_SQUOTE] = ACTIONS(3168), + [anon_sym_L_DQUOTE] = ACTIONS(3170), + [anon_sym_u_DQUOTE] = ACTIONS(3170), + [anon_sym_U_DQUOTE] = ACTIONS(3170), + [anon_sym_u8_DQUOTE] = ACTIONS(3170), + [anon_sym_DQUOTE] = ACTIONS(3170), + [sym_true] = ACTIONS(3172), + [sym_false] = ACTIONS(3172), + [anon_sym_NULL] = ACTIONS(3174), + [anon_sym_nullptr] = ACTIONS(3174), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3184), + [anon_sym_noexcept] = ACTIONS(4324), + [anon_sym_throw] = ACTIONS(4324), + [anon_sym_R_DQUOTE] = ACTIONS(3186), + [anon_sym_LR_DQUOTE] = ACTIONS(3186), + [anon_sym_uR_DQUOTE] = ACTIONS(3186), + [anon_sym_UR_DQUOTE] = ACTIONS(3186), + [anon_sym_u8R_DQUOTE] = ACTIONS(3186), + [anon_sym_co_await] = ACTIONS(3188), + [anon_sym_new] = ACTIONS(3190), + [anon_sym_requires] = ACTIONS(3192), + [sym_this] = ACTIONS(3172), + }, + [961] = { + [sym_expression_statement] = STATE(2760), + [sym_expression] = STATE(4616), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8334), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_type_requirement] = STATE(979), + [sym_compound_requirement] = STATE(979), + [sym__requirement] = STATE(979), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_requirement_seq_repeat1] = STATE(979), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(4326), + [anon_sym___extension__] = ACTIONS(2167), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(4328), + [anon_sym_RBRACE] = ACTIONS(4342), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [anon_sym___alignof__] = ACTIONS(107), + [anon_sym___alignof] = ACTIONS(107), + [anon_sym__alignof] = ACTIONS(107), + [anon_sym_alignof] = ACTIONS(107), + [anon_sym__Alignof] = ACTIONS(107), + [anon_sym_offsetof] = ACTIONS(109), + [anon_sym__Generic] = ACTIONS(111), + [anon_sym_asm] = ACTIONS(113), + [anon_sym___asm__] = ACTIONS(113), + [anon_sym___asm] = ACTIONS(113), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(117), + [anon_sym_u_SQUOTE] = ACTIONS(117), + [anon_sym_U_SQUOTE] = ACTIONS(117), + [anon_sym_u8_SQUOTE] = ACTIONS(117), + [anon_sym_SQUOTE] = ACTIONS(117), + [anon_sym_L_DQUOTE] = ACTIONS(119), + [anon_sym_u_DQUOTE] = ACTIONS(119), + [anon_sym_U_DQUOTE] = ACTIONS(119), + [anon_sym_u8_DQUOTE] = ACTIONS(119), + [anon_sym_DQUOTE] = ACTIONS(119), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(123), + [anon_sym_nullptr] = ACTIONS(123), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_typename] = ACTIONS(4332), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(145), + [anon_sym_R_DQUOTE] = ACTIONS(159), + [anon_sym_LR_DQUOTE] = ACTIONS(159), + [anon_sym_uR_DQUOTE] = ACTIONS(159), + [anon_sym_UR_DQUOTE] = ACTIONS(159), + [anon_sym_u8R_DQUOTE] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), + }, + [962] = { + [sym_expression_statement] = STATE(2760), + [sym_expression] = STATE(4616), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8334), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_type_requirement] = STATE(964), + [sym_compound_requirement] = STATE(964), + [sym__requirement] = STATE(964), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_requirement_seq_repeat1] = STATE(964), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(4326), + [anon_sym___extension__] = ACTIONS(2167), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(4328), + [anon_sym_RBRACE] = ACTIONS(4344), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [anon_sym___alignof__] = ACTIONS(107), + [anon_sym___alignof] = ACTIONS(107), + [anon_sym__alignof] = ACTIONS(107), + [anon_sym_alignof] = ACTIONS(107), + [anon_sym__Alignof] = ACTIONS(107), + [anon_sym_offsetof] = ACTIONS(109), + [anon_sym__Generic] = ACTIONS(111), + [anon_sym_asm] = ACTIONS(113), + [anon_sym___asm__] = ACTIONS(113), + [anon_sym___asm] = ACTIONS(113), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(117), + [anon_sym_u_SQUOTE] = ACTIONS(117), + [anon_sym_U_SQUOTE] = ACTIONS(117), + [anon_sym_u8_SQUOTE] = ACTIONS(117), + [anon_sym_SQUOTE] = ACTIONS(117), + [anon_sym_L_DQUOTE] = ACTIONS(119), + [anon_sym_u_DQUOTE] = ACTIONS(119), + [anon_sym_U_DQUOTE] = ACTIONS(119), + [anon_sym_u8_DQUOTE] = ACTIONS(119), + [anon_sym_DQUOTE] = ACTIONS(119), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(123), + [anon_sym_nullptr] = ACTIONS(123), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_typename] = ACTIONS(4332), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(145), + [anon_sym_R_DQUOTE] = ACTIONS(159), + [anon_sym_LR_DQUOTE] = ACTIONS(159), + [anon_sym_uR_DQUOTE] = ACTIONS(159), + [anon_sym_UR_DQUOTE] = ACTIONS(159), + [anon_sym_u8R_DQUOTE] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), + }, + [963] = { + [sym_expression] = STATE(2824), + [sym__string] = STATE(2887), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(2887), + [sym_concatenated_string] = STATE(2887), + [sym_string_literal] = STATE(1947), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(1947), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), + [sym_identifier] = ACTIONS(1990), + [anon_sym_LPAREN2] = ACTIONS(4322), + [anon_sym_BANG] = ACTIONS(1948), + [anon_sym_TILDE] = ACTIONS(1948), + [anon_sym_DASH] = ACTIONS(1946), + [anon_sym_PLUS] = ACTIONS(1946), + [anon_sym_STAR] = ACTIONS(4346), + [anon_sym_AMP] = ACTIONS(4346), + [anon_sym_LT] = ACTIONS(4322), + [anon_sym___extension__] = ACTIONS(1950), + [anon_sym_COLON_COLON] = ACTIONS(1952), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4322), + [anon_sym_LBRACE] = ACTIONS(4322), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_static] = ACTIONS(4324), + [anon_sym_constexpr] = ACTIONS(4324), + [anon_sym_mutable] = ACTIONS(4324), + [anon_sym_consteval] = ACTIONS(4324), + [sym_primitive_type] = ACTIONS(1956), + [anon_sym_not] = ACTIONS(1946), + [anon_sym_compl] = ACTIONS(1946), + [anon_sym_DASH_DASH] = ACTIONS(4348), + [anon_sym_PLUS_PLUS] = ACTIONS(4348), + [anon_sym_sizeof] = ACTIONS(1958), + [anon_sym___alignof__] = ACTIONS(1960), + [anon_sym___alignof] = ACTIONS(1960), + [anon_sym__alignof] = ACTIONS(1960), + [anon_sym_alignof] = ACTIONS(1960), + [anon_sym__Alignof] = ACTIONS(1960), + [anon_sym_offsetof] = ACTIONS(1962), + [anon_sym__Generic] = ACTIONS(1964), + [anon_sym_asm] = ACTIONS(1966), + [anon_sym___asm__] = ACTIONS(1966), + [anon_sym___asm] = ACTIONS(1966), + [anon_sym_DASH_GT] = ACTIONS(4322), + [sym_number_literal] = ACTIONS(1968), + [anon_sym_L_SQUOTE] = ACTIONS(1970), + [anon_sym_u_SQUOTE] = ACTIONS(1970), + [anon_sym_U_SQUOTE] = ACTIONS(1970), + [anon_sym_u8_SQUOTE] = ACTIONS(1970), + [anon_sym_SQUOTE] = ACTIONS(1970), + [anon_sym_L_DQUOTE] = ACTIONS(1972), + [anon_sym_u_DQUOTE] = ACTIONS(1972), + [anon_sym_U_DQUOTE] = ACTIONS(1972), + [anon_sym_u8_DQUOTE] = ACTIONS(1972), + [anon_sym_DQUOTE] = ACTIONS(1972), + [sym_true] = ACTIONS(1974), + [sym_false] = ACTIONS(1974), + [anon_sym_NULL] = ACTIONS(1976), + [anon_sym_nullptr] = ACTIONS(1976), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1980), + [anon_sym_noexcept] = ACTIONS(4324), + [anon_sym_throw] = ACTIONS(4324), + [anon_sym_R_DQUOTE] = ACTIONS(1982), + [anon_sym_LR_DQUOTE] = ACTIONS(1982), + [anon_sym_uR_DQUOTE] = ACTIONS(1982), + [anon_sym_UR_DQUOTE] = ACTIONS(1982), + [anon_sym_u8R_DQUOTE] = ACTIONS(1982), + [anon_sym_co_await] = ACTIONS(1984), + [anon_sym_new] = ACTIONS(1986), + [anon_sym_requires] = ACTIONS(1988), + [sym_this] = ACTIONS(1974), + }, + [964] = { + [sym_expression_statement] = STATE(2760), + [sym_expression] = STATE(4616), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8334), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_type_requirement] = STATE(979), + [sym_compound_requirement] = STATE(979), + [sym__requirement] = STATE(979), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_requirement_seq_repeat1] = STATE(979), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(4326), + [anon_sym___extension__] = ACTIONS(2167), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(4328), + [anon_sym_RBRACE] = ACTIONS(4350), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [anon_sym___alignof__] = ACTIONS(107), + [anon_sym___alignof] = ACTIONS(107), + [anon_sym__alignof] = ACTIONS(107), + [anon_sym_alignof] = ACTIONS(107), + [anon_sym__Alignof] = ACTIONS(107), + [anon_sym_offsetof] = ACTIONS(109), + [anon_sym__Generic] = ACTIONS(111), + [anon_sym_asm] = ACTIONS(113), + [anon_sym___asm__] = ACTIONS(113), + [anon_sym___asm] = ACTIONS(113), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(117), + [anon_sym_u_SQUOTE] = ACTIONS(117), + [anon_sym_U_SQUOTE] = ACTIONS(117), + [anon_sym_u8_SQUOTE] = ACTIONS(117), + [anon_sym_SQUOTE] = ACTIONS(117), + [anon_sym_L_DQUOTE] = ACTIONS(119), + [anon_sym_u_DQUOTE] = ACTIONS(119), + [anon_sym_U_DQUOTE] = ACTIONS(119), + [anon_sym_u8_DQUOTE] = ACTIONS(119), + [anon_sym_DQUOTE] = ACTIONS(119), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(123), + [anon_sym_nullptr] = ACTIONS(123), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_typename] = ACTIONS(4332), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(145), + [anon_sym_R_DQUOTE] = ACTIONS(159), + [anon_sym_LR_DQUOTE] = ACTIONS(159), + [anon_sym_uR_DQUOTE] = ACTIONS(159), + [anon_sym_UR_DQUOTE] = ACTIONS(159), + [anon_sym_u8R_DQUOTE] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), + }, + [965] = { + [sym_expression] = STATE(2937), + [sym__string] = STATE(2917), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(2917), + [sym_concatenated_string] = STATE(2917), + [sym_string_literal] = STATE(2114), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(2114), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), + [sym_identifier] = ACTIONS(1990), + [anon_sym_LPAREN2] = ACTIONS(4322), [anon_sym_BANG] = ACTIONS(1994), - [anon_sym_TILDE] = ACTIONS(3339), + [anon_sym_TILDE] = ACTIONS(1994), [anon_sym_DASH] = ACTIONS(1992), [anon_sym_PLUS] = ACTIONS(1992), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_LT] = ACTIONS(4322), [anon_sym___extension__] = ACTIONS(1996), [anon_sym_COLON_COLON] = ACTIONS(1998), - [anon_sym___based] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(1812), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4322), + [anon_sym_LBRACE] = ACTIONS(4322), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_static] = ACTIONS(4324), + [anon_sym_constexpr] = ACTIONS(4324), + [anon_sym_mutable] = ACTIONS(4324), + [anon_sym_consteval] = ACTIONS(4324), [sym_primitive_type] = ACTIONS(1956), [anon_sym_not] = ACTIONS(1992), [anon_sym_compl] = ACTIONS(1992), - [anon_sym_DASH_DASH] = ACTIONS(3343), - [anon_sym_PLUS_PLUS] = ACTIONS(3343), + [anon_sym_DASH_DASH] = ACTIONS(3355), + [anon_sym_PLUS_PLUS] = ACTIONS(3355), [anon_sym_sizeof] = ACTIONS(2000), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), @@ -168212,6 +176150,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(1966), [anon_sym___asm__] = ACTIONS(1966), [anon_sym___asm] = ACTIONS(1966), + [anon_sym_DASH_GT] = ACTIONS(4322), [sym_number_literal] = ACTIONS(2002), [anon_sym_L_SQUOTE] = ACTIONS(2004), [anon_sym_u_SQUOTE] = ACTIONS(2004), @@ -168223,3051 +176162,3173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(2006), [anon_sym_u8_DQUOTE] = ACTIONS(2006), [anon_sym_DQUOTE] = ACTIONS(2006), - [sym_true] = ACTIONS(1974), - [sym_false] = ACTIONS(1974), - [anon_sym_NULL] = ACTIONS(1976), - [anon_sym_nullptr] = ACTIONS(1976), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_operator] = ACTIONS(1852), - [anon_sym_delete] = ACTIONS(2008), - [anon_sym_R_DQUOTE] = ACTIONS(2010), - [anon_sym_LR_DQUOTE] = ACTIONS(2010), - [anon_sym_uR_DQUOTE] = ACTIONS(2010), - [anon_sym_UR_DQUOTE] = ACTIONS(2010), - [anon_sym_u8R_DQUOTE] = ACTIONS(2010), - [anon_sym_co_await] = ACTIONS(2012), - [anon_sym_new] = ACTIONS(2014), - [anon_sym_requires] = ACTIONS(1988), - [sym_this] = ACTIONS(1974), - }, - [902] = { - [sym_identifier] = ACTIONS(2707), - [anon_sym_LPAREN2] = ACTIONS(2709), - [anon_sym_BANG] = ACTIONS(2709), - [anon_sym_TILDE] = ACTIONS(2709), - [anon_sym_DASH] = ACTIONS(2707), - [anon_sym_PLUS] = ACTIONS(2707), - [anon_sym_STAR] = ACTIONS(2709), - [anon_sym_AMP] = ACTIONS(2709), - [anon_sym_SEMI] = ACTIONS(2709), - [anon_sym___extension__] = ACTIONS(2707), - [anon_sym_typedef] = ACTIONS(2707), - [anon_sym_virtual] = ACTIONS(2707), - [anon_sym_extern] = ACTIONS(2707), - [anon_sym___attribute__] = ACTIONS(2707), - [anon_sym___attribute] = ACTIONS(2707), - [anon_sym_COLON_COLON] = ACTIONS(2709), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2709), - [anon_sym___declspec] = ACTIONS(2707), - [anon_sym_LBRACE] = ACTIONS(2709), - [anon_sym_signed] = ACTIONS(2707), - [anon_sym_unsigned] = ACTIONS(2707), - [anon_sym_long] = ACTIONS(2707), - [anon_sym_short] = ACTIONS(2707), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_static] = ACTIONS(2707), - [anon_sym_register] = ACTIONS(2707), - [anon_sym_inline] = ACTIONS(2707), - [anon_sym___inline] = ACTIONS(2707), - [anon_sym___inline__] = ACTIONS(2707), - [anon_sym___forceinline] = ACTIONS(2707), - [anon_sym_thread_local] = ACTIONS(2707), - [anon_sym___thread] = ACTIONS(2707), - [anon_sym_const] = ACTIONS(2707), - [anon_sym_constexpr] = ACTIONS(2707), - [anon_sym_volatile] = ACTIONS(2707), - [anon_sym_restrict] = ACTIONS(2707), - [anon_sym___restrict__] = ACTIONS(2707), - [anon_sym__Atomic] = ACTIONS(2707), - [anon_sym__Noreturn] = ACTIONS(2707), - [anon_sym_noreturn] = ACTIONS(2707), - [anon_sym__Nonnull] = ACTIONS(2707), - [anon_sym_mutable] = ACTIONS(2707), - [anon_sym_constinit] = ACTIONS(2707), - [anon_sym_consteval] = ACTIONS(2707), - [anon_sym_alignas] = ACTIONS(2707), - [anon_sym__Alignas] = ACTIONS(2707), - [sym_primitive_type] = ACTIONS(2707), - [anon_sym_enum] = ACTIONS(2707), - [anon_sym_class] = ACTIONS(2707), - [anon_sym_struct] = ACTIONS(2707), - [anon_sym_union] = ACTIONS(2707), - [anon_sym_if] = ACTIONS(2707), - [anon_sym_else] = ACTIONS(2707), - [anon_sym_switch] = ACTIONS(2707), - [anon_sym_while] = ACTIONS(2707), - [anon_sym_do] = ACTIONS(2707), - [anon_sym_for] = ACTIONS(2707), - [anon_sym_return] = ACTIONS(2707), - [anon_sym_break] = ACTIONS(2707), - [anon_sym_continue] = ACTIONS(2707), - [anon_sym_goto] = ACTIONS(2707), - [anon_sym___try] = ACTIONS(2707), - [anon_sym___leave] = ACTIONS(2707), - [anon_sym_not] = ACTIONS(2707), - [anon_sym_compl] = ACTIONS(2707), - [anon_sym_DASH_DASH] = ACTIONS(2709), - [anon_sym_PLUS_PLUS] = ACTIONS(2709), - [anon_sym_sizeof] = ACTIONS(2707), - [anon_sym___alignof__] = ACTIONS(2707), - [anon_sym___alignof] = ACTIONS(2707), - [anon_sym__alignof] = ACTIONS(2707), - [anon_sym_alignof] = ACTIONS(2707), - [anon_sym__Alignof] = ACTIONS(2707), - [anon_sym_offsetof] = ACTIONS(2707), - [anon_sym__Generic] = ACTIONS(2707), - [anon_sym_asm] = ACTIONS(2707), - [anon_sym___asm__] = ACTIONS(2707), - [anon_sym___asm] = ACTIONS(2707), - [sym_number_literal] = ACTIONS(2709), - [anon_sym_L_SQUOTE] = ACTIONS(2709), - [anon_sym_u_SQUOTE] = ACTIONS(2709), - [anon_sym_U_SQUOTE] = ACTIONS(2709), - [anon_sym_u8_SQUOTE] = ACTIONS(2709), - [anon_sym_SQUOTE] = ACTIONS(2709), - [anon_sym_L_DQUOTE] = ACTIONS(2709), - [anon_sym_u_DQUOTE] = ACTIONS(2709), - [anon_sym_U_DQUOTE] = ACTIONS(2709), - [anon_sym_u8_DQUOTE] = ACTIONS(2709), - [anon_sym_DQUOTE] = ACTIONS(2709), - [sym_true] = ACTIONS(2707), - [sym_false] = ACTIONS(2707), - [anon_sym_NULL] = ACTIONS(2707), - [anon_sym_nullptr] = ACTIONS(2707), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2707), - [anon_sym_decltype] = ACTIONS(2707), - [anon_sym_typename] = ACTIONS(2707), - [anon_sym_template] = ACTIONS(2707), - [anon_sym_try] = ACTIONS(2707), - [anon_sym_delete] = ACTIONS(2707), - [anon_sym_throw] = ACTIONS(2707), - [anon_sym_co_return] = ACTIONS(2707), - [anon_sym_co_yield] = ACTIONS(2707), - [anon_sym_R_DQUOTE] = ACTIONS(2709), - [anon_sym_LR_DQUOTE] = ACTIONS(2709), - [anon_sym_uR_DQUOTE] = ACTIONS(2709), - [anon_sym_UR_DQUOTE] = ACTIONS(2709), - [anon_sym_u8R_DQUOTE] = ACTIONS(2709), - [anon_sym_co_await] = ACTIONS(2707), - [anon_sym_new] = ACTIONS(2707), - [anon_sym_requires] = ACTIONS(2707), - [sym_this] = ACTIONS(2707), - }, - [903] = { - [sym_identifier] = ACTIONS(2665), - [anon_sym_LPAREN2] = ACTIONS(2667), - [anon_sym_BANG] = ACTIONS(2667), - [anon_sym_TILDE] = ACTIONS(2667), - [anon_sym_DASH] = ACTIONS(2665), - [anon_sym_PLUS] = ACTIONS(2665), - [anon_sym_STAR] = ACTIONS(2667), - [anon_sym_AMP] = ACTIONS(2667), - [anon_sym_SEMI] = ACTIONS(2667), - [anon_sym___extension__] = ACTIONS(2665), - [anon_sym_typedef] = ACTIONS(2665), - [anon_sym_virtual] = ACTIONS(2665), - [anon_sym_extern] = ACTIONS(2665), - [anon_sym___attribute__] = ACTIONS(2665), - [anon_sym___attribute] = ACTIONS(2665), - [anon_sym_COLON_COLON] = ACTIONS(2667), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2667), - [anon_sym___declspec] = ACTIONS(2665), - [anon_sym_LBRACE] = ACTIONS(2667), - [anon_sym_signed] = ACTIONS(2665), - [anon_sym_unsigned] = ACTIONS(2665), - [anon_sym_long] = ACTIONS(2665), - [anon_sym_short] = ACTIONS(2665), - [anon_sym_LBRACK] = ACTIONS(2665), - [anon_sym_static] = ACTIONS(2665), - [anon_sym_register] = ACTIONS(2665), - [anon_sym_inline] = ACTIONS(2665), - [anon_sym___inline] = ACTIONS(2665), - [anon_sym___inline__] = ACTIONS(2665), - [anon_sym___forceinline] = ACTIONS(2665), - [anon_sym_thread_local] = ACTIONS(2665), - [anon_sym___thread] = ACTIONS(2665), - [anon_sym_const] = ACTIONS(2665), - [anon_sym_constexpr] = ACTIONS(2665), - [anon_sym_volatile] = ACTIONS(2665), - [anon_sym_restrict] = ACTIONS(2665), - [anon_sym___restrict__] = ACTIONS(2665), - [anon_sym__Atomic] = ACTIONS(2665), - [anon_sym__Noreturn] = ACTIONS(2665), - [anon_sym_noreturn] = ACTIONS(2665), - [anon_sym__Nonnull] = ACTIONS(2665), - [anon_sym_mutable] = ACTIONS(2665), - [anon_sym_constinit] = ACTIONS(2665), - [anon_sym_consteval] = ACTIONS(2665), - [anon_sym_alignas] = ACTIONS(2665), - [anon_sym__Alignas] = ACTIONS(2665), - [sym_primitive_type] = ACTIONS(2665), - [anon_sym_enum] = ACTIONS(2665), - [anon_sym_class] = ACTIONS(2665), - [anon_sym_struct] = ACTIONS(2665), - [anon_sym_union] = ACTIONS(2665), - [anon_sym_if] = ACTIONS(2665), - [anon_sym_else] = ACTIONS(2665), - [anon_sym_switch] = ACTIONS(2665), - [anon_sym_while] = ACTIONS(2665), - [anon_sym_do] = ACTIONS(2665), - [anon_sym_for] = ACTIONS(2665), - [anon_sym_return] = ACTIONS(2665), - [anon_sym_break] = ACTIONS(2665), - [anon_sym_continue] = ACTIONS(2665), - [anon_sym_goto] = ACTIONS(2665), - [anon_sym___try] = ACTIONS(2665), - [anon_sym___leave] = ACTIONS(2665), - [anon_sym_not] = ACTIONS(2665), - [anon_sym_compl] = ACTIONS(2665), - [anon_sym_DASH_DASH] = ACTIONS(2667), - [anon_sym_PLUS_PLUS] = ACTIONS(2667), - [anon_sym_sizeof] = ACTIONS(2665), - [anon_sym___alignof__] = ACTIONS(2665), - [anon_sym___alignof] = ACTIONS(2665), - [anon_sym__alignof] = ACTIONS(2665), - [anon_sym_alignof] = ACTIONS(2665), - [anon_sym__Alignof] = ACTIONS(2665), - [anon_sym_offsetof] = ACTIONS(2665), - [anon_sym__Generic] = ACTIONS(2665), - [anon_sym_asm] = ACTIONS(2665), - [anon_sym___asm__] = ACTIONS(2665), - [anon_sym___asm] = ACTIONS(2665), - [sym_number_literal] = ACTIONS(2667), - [anon_sym_L_SQUOTE] = ACTIONS(2667), - [anon_sym_u_SQUOTE] = ACTIONS(2667), - [anon_sym_U_SQUOTE] = ACTIONS(2667), - [anon_sym_u8_SQUOTE] = ACTIONS(2667), - [anon_sym_SQUOTE] = ACTIONS(2667), - [anon_sym_L_DQUOTE] = ACTIONS(2667), - [anon_sym_u_DQUOTE] = ACTIONS(2667), - [anon_sym_U_DQUOTE] = ACTIONS(2667), - [anon_sym_u8_DQUOTE] = ACTIONS(2667), - [anon_sym_DQUOTE] = ACTIONS(2667), - [sym_true] = ACTIONS(2665), - [sym_false] = ACTIONS(2665), - [anon_sym_NULL] = ACTIONS(2665), - [anon_sym_nullptr] = ACTIONS(2665), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2665), - [anon_sym_decltype] = ACTIONS(2665), - [anon_sym_typename] = ACTIONS(2665), - [anon_sym_template] = ACTIONS(2665), - [anon_sym_try] = ACTIONS(2665), - [anon_sym_delete] = ACTIONS(2665), - [anon_sym_throw] = ACTIONS(2665), - [anon_sym_co_return] = ACTIONS(2665), - [anon_sym_co_yield] = ACTIONS(2665), - [anon_sym_R_DQUOTE] = ACTIONS(2667), - [anon_sym_LR_DQUOTE] = ACTIONS(2667), - [anon_sym_uR_DQUOTE] = ACTIONS(2667), - [anon_sym_UR_DQUOTE] = ACTIONS(2667), - [anon_sym_u8R_DQUOTE] = ACTIONS(2667), - [anon_sym_co_await] = ACTIONS(2665), - [anon_sym_new] = ACTIONS(2665), - [anon_sym_requires] = ACTIONS(2665), - [sym_this] = ACTIONS(2665), - }, - [904] = { - [sym_identifier] = ACTIONS(2763), - [anon_sym_LPAREN2] = ACTIONS(2765), - [anon_sym_BANG] = ACTIONS(2765), - [anon_sym_TILDE] = ACTIONS(2765), - [anon_sym_DASH] = ACTIONS(2763), - [anon_sym_PLUS] = ACTIONS(2763), - [anon_sym_STAR] = ACTIONS(2765), - [anon_sym_AMP] = ACTIONS(2765), - [anon_sym_SEMI] = ACTIONS(2765), - [anon_sym___extension__] = ACTIONS(2763), - [anon_sym_typedef] = ACTIONS(2763), - [anon_sym_virtual] = ACTIONS(2763), - [anon_sym_extern] = ACTIONS(2763), - [anon_sym___attribute__] = ACTIONS(2763), - [anon_sym___attribute] = ACTIONS(2763), - [anon_sym_COLON_COLON] = ACTIONS(2765), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2765), - [anon_sym___declspec] = ACTIONS(2763), - [anon_sym_LBRACE] = ACTIONS(2765), - [anon_sym_signed] = ACTIONS(2763), - [anon_sym_unsigned] = ACTIONS(2763), - [anon_sym_long] = ACTIONS(2763), - [anon_sym_short] = ACTIONS(2763), - [anon_sym_LBRACK] = ACTIONS(2763), - [anon_sym_static] = ACTIONS(2763), - [anon_sym_register] = ACTIONS(2763), - [anon_sym_inline] = ACTIONS(2763), - [anon_sym___inline] = ACTIONS(2763), - [anon_sym___inline__] = ACTIONS(2763), - [anon_sym___forceinline] = ACTIONS(2763), - [anon_sym_thread_local] = ACTIONS(2763), - [anon_sym___thread] = ACTIONS(2763), - [anon_sym_const] = ACTIONS(2763), - [anon_sym_constexpr] = ACTIONS(2763), - [anon_sym_volatile] = ACTIONS(2763), - [anon_sym_restrict] = ACTIONS(2763), - [anon_sym___restrict__] = ACTIONS(2763), - [anon_sym__Atomic] = ACTIONS(2763), - [anon_sym__Noreturn] = ACTIONS(2763), - [anon_sym_noreturn] = ACTIONS(2763), - [anon_sym__Nonnull] = ACTIONS(2763), - [anon_sym_mutable] = ACTIONS(2763), - [anon_sym_constinit] = ACTIONS(2763), - [anon_sym_consteval] = ACTIONS(2763), - [anon_sym_alignas] = ACTIONS(2763), - [anon_sym__Alignas] = ACTIONS(2763), - [sym_primitive_type] = ACTIONS(2763), - [anon_sym_enum] = ACTIONS(2763), - [anon_sym_class] = ACTIONS(2763), - [anon_sym_struct] = ACTIONS(2763), - [anon_sym_union] = ACTIONS(2763), - [anon_sym_if] = ACTIONS(2763), - [anon_sym_else] = ACTIONS(2763), - [anon_sym_switch] = ACTIONS(2763), - [anon_sym_while] = ACTIONS(2763), - [anon_sym_do] = ACTIONS(2763), - [anon_sym_for] = ACTIONS(2763), - [anon_sym_return] = ACTIONS(2763), - [anon_sym_break] = ACTIONS(2763), - [anon_sym_continue] = ACTIONS(2763), - [anon_sym_goto] = ACTIONS(2763), - [anon_sym___try] = ACTIONS(2763), - [anon_sym___leave] = ACTIONS(2763), - [anon_sym_not] = ACTIONS(2763), - [anon_sym_compl] = ACTIONS(2763), - [anon_sym_DASH_DASH] = ACTIONS(2765), - [anon_sym_PLUS_PLUS] = ACTIONS(2765), - [anon_sym_sizeof] = ACTIONS(2763), - [anon_sym___alignof__] = ACTIONS(2763), - [anon_sym___alignof] = ACTIONS(2763), - [anon_sym__alignof] = ACTIONS(2763), - [anon_sym_alignof] = ACTIONS(2763), - [anon_sym__Alignof] = ACTIONS(2763), - [anon_sym_offsetof] = ACTIONS(2763), - [anon_sym__Generic] = ACTIONS(2763), - [anon_sym_asm] = ACTIONS(2763), - [anon_sym___asm__] = ACTIONS(2763), - [anon_sym___asm] = ACTIONS(2763), - [sym_number_literal] = ACTIONS(2765), - [anon_sym_L_SQUOTE] = ACTIONS(2765), - [anon_sym_u_SQUOTE] = ACTIONS(2765), - [anon_sym_U_SQUOTE] = ACTIONS(2765), - [anon_sym_u8_SQUOTE] = ACTIONS(2765), - [anon_sym_SQUOTE] = ACTIONS(2765), - [anon_sym_L_DQUOTE] = ACTIONS(2765), - [anon_sym_u_DQUOTE] = ACTIONS(2765), - [anon_sym_U_DQUOTE] = ACTIONS(2765), - [anon_sym_u8_DQUOTE] = ACTIONS(2765), - [anon_sym_DQUOTE] = ACTIONS(2765), - [sym_true] = ACTIONS(2763), - [sym_false] = ACTIONS(2763), - [anon_sym_NULL] = ACTIONS(2763), - [anon_sym_nullptr] = ACTIONS(2763), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2763), - [anon_sym_decltype] = ACTIONS(2763), - [anon_sym_typename] = ACTIONS(2763), - [anon_sym_template] = ACTIONS(2763), - [anon_sym_try] = ACTIONS(2763), - [anon_sym_delete] = ACTIONS(2763), - [anon_sym_throw] = ACTIONS(2763), - [anon_sym_co_return] = ACTIONS(2763), - [anon_sym_co_yield] = ACTIONS(2763), - [anon_sym_R_DQUOTE] = ACTIONS(2765), - [anon_sym_LR_DQUOTE] = ACTIONS(2765), - [anon_sym_uR_DQUOTE] = ACTIONS(2765), - [anon_sym_UR_DQUOTE] = ACTIONS(2765), - [anon_sym_u8R_DQUOTE] = ACTIONS(2765), - [anon_sym_co_await] = ACTIONS(2763), - [anon_sym_new] = ACTIONS(2763), - [anon_sym_requires] = ACTIONS(2763), - [sym_this] = ACTIONS(2763), - }, - [905] = { - [sym_identifier] = ACTIONS(2755), - [anon_sym_LPAREN2] = ACTIONS(2757), - [anon_sym_BANG] = ACTIONS(2757), - [anon_sym_TILDE] = ACTIONS(2757), - [anon_sym_DASH] = ACTIONS(2755), - [anon_sym_PLUS] = ACTIONS(2755), - [anon_sym_STAR] = ACTIONS(2757), - [anon_sym_AMP] = ACTIONS(2757), - [anon_sym_SEMI] = ACTIONS(2757), - [anon_sym___extension__] = ACTIONS(2755), - [anon_sym_typedef] = ACTIONS(2755), - [anon_sym_virtual] = ACTIONS(2755), - [anon_sym_extern] = ACTIONS(2755), - [anon_sym___attribute__] = ACTIONS(2755), - [anon_sym___attribute] = ACTIONS(2755), - [anon_sym_COLON_COLON] = ACTIONS(2757), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2757), - [anon_sym___declspec] = ACTIONS(2755), - [anon_sym_LBRACE] = ACTIONS(2757), - [anon_sym_signed] = ACTIONS(2755), - [anon_sym_unsigned] = ACTIONS(2755), - [anon_sym_long] = ACTIONS(2755), - [anon_sym_short] = ACTIONS(2755), - [anon_sym_LBRACK] = ACTIONS(2755), - [anon_sym_static] = ACTIONS(2755), - [anon_sym_register] = ACTIONS(2755), - [anon_sym_inline] = ACTIONS(2755), - [anon_sym___inline] = ACTIONS(2755), - [anon_sym___inline__] = ACTIONS(2755), - [anon_sym___forceinline] = ACTIONS(2755), - [anon_sym_thread_local] = ACTIONS(2755), - [anon_sym___thread] = ACTIONS(2755), - [anon_sym_const] = ACTIONS(2755), - [anon_sym_constexpr] = ACTIONS(2755), - [anon_sym_volatile] = ACTIONS(2755), - [anon_sym_restrict] = ACTIONS(2755), - [anon_sym___restrict__] = ACTIONS(2755), - [anon_sym__Atomic] = ACTIONS(2755), - [anon_sym__Noreturn] = ACTIONS(2755), - [anon_sym_noreturn] = ACTIONS(2755), - [anon_sym__Nonnull] = ACTIONS(2755), - [anon_sym_mutable] = ACTIONS(2755), - [anon_sym_constinit] = ACTIONS(2755), - [anon_sym_consteval] = ACTIONS(2755), - [anon_sym_alignas] = ACTIONS(2755), - [anon_sym__Alignas] = ACTIONS(2755), - [sym_primitive_type] = ACTIONS(2755), - [anon_sym_enum] = ACTIONS(2755), - [anon_sym_class] = ACTIONS(2755), - [anon_sym_struct] = ACTIONS(2755), - [anon_sym_union] = ACTIONS(2755), - [anon_sym_if] = ACTIONS(2755), - [anon_sym_else] = ACTIONS(2755), - [anon_sym_switch] = ACTIONS(2755), - [anon_sym_while] = ACTIONS(2755), - [anon_sym_do] = ACTIONS(2755), - [anon_sym_for] = ACTIONS(2755), - [anon_sym_return] = ACTIONS(2755), - [anon_sym_break] = ACTIONS(2755), - [anon_sym_continue] = ACTIONS(2755), - [anon_sym_goto] = ACTIONS(2755), - [anon_sym___try] = ACTIONS(2755), - [anon_sym___leave] = ACTIONS(2755), - [anon_sym_not] = ACTIONS(2755), - [anon_sym_compl] = ACTIONS(2755), - [anon_sym_DASH_DASH] = ACTIONS(2757), - [anon_sym_PLUS_PLUS] = ACTIONS(2757), - [anon_sym_sizeof] = ACTIONS(2755), - [anon_sym___alignof__] = ACTIONS(2755), - [anon_sym___alignof] = ACTIONS(2755), - [anon_sym__alignof] = ACTIONS(2755), - [anon_sym_alignof] = ACTIONS(2755), - [anon_sym__Alignof] = ACTIONS(2755), - [anon_sym_offsetof] = ACTIONS(2755), - [anon_sym__Generic] = ACTIONS(2755), - [anon_sym_asm] = ACTIONS(2755), - [anon_sym___asm__] = ACTIONS(2755), - [anon_sym___asm] = ACTIONS(2755), - [sym_number_literal] = ACTIONS(2757), - [anon_sym_L_SQUOTE] = ACTIONS(2757), - [anon_sym_u_SQUOTE] = ACTIONS(2757), - [anon_sym_U_SQUOTE] = ACTIONS(2757), - [anon_sym_u8_SQUOTE] = ACTIONS(2757), - [anon_sym_SQUOTE] = ACTIONS(2757), - [anon_sym_L_DQUOTE] = ACTIONS(2757), - [anon_sym_u_DQUOTE] = ACTIONS(2757), - [anon_sym_U_DQUOTE] = ACTIONS(2757), - [anon_sym_u8_DQUOTE] = ACTIONS(2757), - [anon_sym_DQUOTE] = ACTIONS(2757), - [sym_true] = ACTIONS(2755), - [sym_false] = ACTIONS(2755), - [anon_sym_NULL] = ACTIONS(2755), - [anon_sym_nullptr] = ACTIONS(2755), + [sym_true] = ACTIONS(1974), + [sym_false] = ACTIONS(1974), + [anon_sym_NULL] = ACTIONS(1976), + [anon_sym_nullptr] = ACTIONS(1976), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2755), - [anon_sym_decltype] = ACTIONS(2755), - [anon_sym_typename] = ACTIONS(2755), - [anon_sym_template] = ACTIONS(2755), - [anon_sym_try] = ACTIONS(2755), - [anon_sym_delete] = ACTIONS(2755), - [anon_sym_throw] = ACTIONS(2755), - [anon_sym_co_return] = ACTIONS(2755), - [anon_sym_co_yield] = ACTIONS(2755), - [anon_sym_R_DQUOTE] = ACTIONS(2757), - [anon_sym_LR_DQUOTE] = ACTIONS(2757), - [anon_sym_uR_DQUOTE] = ACTIONS(2757), - [anon_sym_UR_DQUOTE] = ACTIONS(2757), - [anon_sym_u8R_DQUOTE] = ACTIONS(2757), - [anon_sym_co_await] = ACTIONS(2755), - [anon_sym_new] = ACTIONS(2755), - [anon_sym_requires] = ACTIONS(2755), - [sym_this] = ACTIONS(2755), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(2008), + [anon_sym_noexcept] = ACTIONS(4324), + [anon_sym_throw] = ACTIONS(4324), + [anon_sym_R_DQUOTE] = ACTIONS(2010), + [anon_sym_LR_DQUOTE] = ACTIONS(2010), + [anon_sym_uR_DQUOTE] = ACTIONS(2010), + [anon_sym_UR_DQUOTE] = ACTIONS(2010), + [anon_sym_u8R_DQUOTE] = ACTIONS(2010), + [anon_sym_co_await] = ACTIONS(2012), + [anon_sym_new] = ACTIONS(2014), + [anon_sym_requires] = ACTIONS(1988), + [sym_this] = ACTIONS(1974), }, - [906] = { - [sym_identifier] = ACTIONS(2677), - [anon_sym_LPAREN2] = ACTIONS(2679), - [anon_sym_BANG] = ACTIONS(2679), - [anon_sym_TILDE] = ACTIONS(2679), - [anon_sym_DASH] = ACTIONS(2677), - [anon_sym_PLUS] = ACTIONS(2677), - [anon_sym_STAR] = ACTIONS(2679), - [anon_sym_AMP] = ACTIONS(2679), - [anon_sym_SEMI] = ACTIONS(2679), - [anon_sym___extension__] = ACTIONS(2677), - [anon_sym_typedef] = ACTIONS(2677), - [anon_sym_virtual] = ACTIONS(2677), - [anon_sym_extern] = ACTIONS(2677), - [anon_sym___attribute__] = ACTIONS(2677), - [anon_sym___attribute] = ACTIONS(2677), - [anon_sym_COLON_COLON] = ACTIONS(2679), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2679), - [anon_sym___declspec] = ACTIONS(2677), - [anon_sym_LBRACE] = ACTIONS(2679), - [anon_sym_signed] = ACTIONS(2677), - [anon_sym_unsigned] = ACTIONS(2677), - [anon_sym_long] = ACTIONS(2677), - [anon_sym_short] = ACTIONS(2677), - [anon_sym_LBRACK] = ACTIONS(2677), - [anon_sym_static] = ACTIONS(2677), - [anon_sym_register] = ACTIONS(2677), - [anon_sym_inline] = ACTIONS(2677), - [anon_sym___inline] = ACTIONS(2677), - [anon_sym___inline__] = ACTIONS(2677), - [anon_sym___forceinline] = ACTIONS(2677), - [anon_sym_thread_local] = ACTIONS(2677), - [anon_sym___thread] = ACTIONS(2677), - [anon_sym_const] = ACTIONS(2677), - [anon_sym_constexpr] = ACTIONS(2677), - [anon_sym_volatile] = ACTIONS(2677), - [anon_sym_restrict] = ACTIONS(2677), - [anon_sym___restrict__] = ACTIONS(2677), - [anon_sym__Atomic] = ACTIONS(2677), - [anon_sym__Noreturn] = ACTIONS(2677), - [anon_sym_noreturn] = ACTIONS(2677), - [anon_sym__Nonnull] = ACTIONS(2677), - [anon_sym_mutable] = ACTIONS(2677), - [anon_sym_constinit] = ACTIONS(2677), - [anon_sym_consteval] = ACTIONS(2677), - [anon_sym_alignas] = ACTIONS(2677), - [anon_sym__Alignas] = ACTIONS(2677), - [sym_primitive_type] = ACTIONS(2677), - [anon_sym_enum] = ACTIONS(2677), - [anon_sym_class] = ACTIONS(2677), - [anon_sym_struct] = ACTIONS(2677), - [anon_sym_union] = ACTIONS(2677), - [anon_sym_if] = ACTIONS(2677), - [anon_sym_else] = ACTIONS(2677), - [anon_sym_switch] = ACTIONS(2677), - [anon_sym_while] = ACTIONS(2677), - [anon_sym_do] = ACTIONS(2677), - [anon_sym_for] = ACTIONS(2677), - [anon_sym_return] = ACTIONS(2677), - [anon_sym_break] = ACTIONS(2677), - [anon_sym_continue] = ACTIONS(2677), - [anon_sym_goto] = ACTIONS(2677), - [anon_sym___try] = ACTIONS(2677), - [anon_sym___leave] = ACTIONS(2677), - [anon_sym_not] = ACTIONS(2677), - [anon_sym_compl] = ACTIONS(2677), - [anon_sym_DASH_DASH] = ACTIONS(2679), - [anon_sym_PLUS_PLUS] = ACTIONS(2679), - [anon_sym_sizeof] = ACTIONS(2677), - [anon_sym___alignof__] = ACTIONS(2677), - [anon_sym___alignof] = ACTIONS(2677), - [anon_sym__alignof] = ACTIONS(2677), - [anon_sym_alignof] = ACTIONS(2677), - [anon_sym__Alignof] = ACTIONS(2677), - [anon_sym_offsetof] = ACTIONS(2677), - [anon_sym__Generic] = ACTIONS(2677), - [anon_sym_asm] = ACTIONS(2677), - [anon_sym___asm__] = ACTIONS(2677), - [anon_sym___asm] = ACTIONS(2677), - [sym_number_literal] = ACTIONS(2679), - [anon_sym_L_SQUOTE] = ACTIONS(2679), - [anon_sym_u_SQUOTE] = ACTIONS(2679), - [anon_sym_U_SQUOTE] = ACTIONS(2679), - [anon_sym_u8_SQUOTE] = ACTIONS(2679), - [anon_sym_SQUOTE] = ACTIONS(2679), - [anon_sym_L_DQUOTE] = ACTIONS(2679), - [anon_sym_u_DQUOTE] = ACTIONS(2679), - [anon_sym_U_DQUOTE] = ACTIONS(2679), - [anon_sym_u8_DQUOTE] = ACTIONS(2679), - [anon_sym_DQUOTE] = ACTIONS(2679), - [sym_true] = ACTIONS(2677), - [sym_false] = ACTIONS(2677), - [anon_sym_NULL] = ACTIONS(2677), - [anon_sym_nullptr] = ACTIONS(2677), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2677), - [anon_sym_decltype] = ACTIONS(2677), - [anon_sym_typename] = ACTIONS(2677), - [anon_sym_template] = ACTIONS(2677), - [anon_sym_try] = ACTIONS(2677), - [anon_sym_delete] = ACTIONS(2677), - [anon_sym_throw] = ACTIONS(2677), - [anon_sym_co_return] = ACTIONS(2677), - [anon_sym_co_yield] = ACTIONS(2677), - [anon_sym_R_DQUOTE] = ACTIONS(2679), - [anon_sym_LR_DQUOTE] = ACTIONS(2679), - [anon_sym_uR_DQUOTE] = ACTIONS(2679), - [anon_sym_UR_DQUOTE] = ACTIONS(2679), - [anon_sym_u8R_DQUOTE] = ACTIONS(2679), - [anon_sym_co_await] = ACTIONS(2677), - [anon_sym_new] = ACTIONS(2677), - [anon_sym_requires] = ACTIONS(2677), - [sym_this] = ACTIONS(2677), + [966] = { + [sym_expression] = STATE(3038), + [sym__string] = STATE(3178), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(3178), + [sym_concatenated_string] = STATE(3178), + [sym_string_literal] = STATE(2317), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(2317), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), + [sym_identifier] = ACTIONS(2301), + [anon_sym_LPAREN2] = ACTIONS(4322), + [anon_sym_BANG] = ACTIONS(2305), + [anon_sym_TILDE] = ACTIONS(2305), + [anon_sym_DASH] = ACTIONS(2303), + [anon_sym_PLUS] = ACTIONS(2303), + [anon_sym_STAR] = ACTIONS(4336), + [anon_sym_AMP] = ACTIONS(4336), + [anon_sym_LT] = ACTIONS(4322), + [anon_sym___extension__] = ACTIONS(2307), + [anon_sym_COLON_COLON] = ACTIONS(2309), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4322), + [anon_sym_LBRACE] = ACTIONS(4322), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_static] = ACTIONS(4324), + [anon_sym_constexpr] = ACTIONS(4324), + [anon_sym_mutable] = ACTIONS(4324), + [anon_sym_consteval] = ACTIONS(4324), + [sym_primitive_type] = ACTIONS(1956), + [anon_sym_not] = ACTIONS(2303), + [anon_sym_compl] = ACTIONS(2303), + [anon_sym_DASH_DASH] = ACTIONS(4352), + [anon_sym_PLUS_PLUS] = ACTIONS(4352), + [anon_sym_sizeof] = ACTIONS(2311), + [anon_sym___alignof__] = ACTIONS(1960), + [anon_sym___alignof] = ACTIONS(1960), + [anon_sym__alignof] = ACTIONS(1960), + [anon_sym_alignof] = ACTIONS(1960), + [anon_sym__Alignof] = ACTIONS(1960), + [anon_sym_offsetof] = ACTIONS(1962), + [anon_sym__Generic] = ACTIONS(1964), + [anon_sym_asm] = ACTIONS(1966), + [anon_sym___asm__] = ACTIONS(1966), + [anon_sym___asm] = ACTIONS(1966), + [anon_sym_DASH_GT] = ACTIONS(4322), + [sym_number_literal] = ACTIONS(2313), + [anon_sym_L_SQUOTE] = ACTIONS(2315), + [anon_sym_u_SQUOTE] = ACTIONS(2315), + [anon_sym_U_SQUOTE] = ACTIONS(2315), + [anon_sym_u8_SQUOTE] = ACTIONS(2315), + [anon_sym_SQUOTE] = ACTIONS(2315), + [anon_sym_L_DQUOTE] = ACTIONS(2317), + [anon_sym_u_DQUOTE] = ACTIONS(2317), + [anon_sym_U_DQUOTE] = ACTIONS(2317), + [anon_sym_u8_DQUOTE] = ACTIONS(2317), + [anon_sym_DQUOTE] = ACTIONS(2317), + [sym_true] = ACTIONS(1974), + [sym_false] = ACTIONS(1974), + [anon_sym_NULL] = ACTIONS(1976), + [anon_sym_nullptr] = ACTIONS(1976), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(2319), + [anon_sym_noexcept] = ACTIONS(4324), + [anon_sym_throw] = ACTIONS(4324), + [anon_sym_R_DQUOTE] = ACTIONS(2321), + [anon_sym_LR_DQUOTE] = ACTIONS(2321), + [anon_sym_uR_DQUOTE] = ACTIONS(2321), + [anon_sym_UR_DQUOTE] = ACTIONS(2321), + [anon_sym_u8R_DQUOTE] = ACTIONS(2321), + [anon_sym_co_await] = ACTIONS(2323), + [anon_sym_new] = ACTIONS(2014), + [anon_sym_requires] = ACTIONS(1988), + [sym_this] = ACTIONS(1974), }, - [907] = { - [sym_identifier] = ACTIONS(2647), - [anon_sym_LPAREN2] = ACTIONS(2649), - [anon_sym_BANG] = ACTIONS(2649), - [anon_sym_TILDE] = ACTIONS(2649), - [anon_sym_DASH] = ACTIONS(2647), - [anon_sym_PLUS] = ACTIONS(2647), - [anon_sym_STAR] = ACTIONS(2649), - [anon_sym_AMP] = ACTIONS(2649), - [anon_sym_SEMI] = ACTIONS(2649), - [anon_sym___extension__] = ACTIONS(2647), - [anon_sym_typedef] = ACTIONS(2647), - [anon_sym_virtual] = ACTIONS(2647), - [anon_sym_extern] = ACTIONS(2647), - [anon_sym___attribute__] = ACTIONS(2647), - [anon_sym___attribute] = ACTIONS(2647), - [anon_sym_COLON_COLON] = ACTIONS(2649), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2649), - [anon_sym___declspec] = ACTIONS(2647), - [anon_sym_LBRACE] = ACTIONS(2649), - [anon_sym_signed] = ACTIONS(2647), - [anon_sym_unsigned] = ACTIONS(2647), - [anon_sym_long] = ACTIONS(2647), - [anon_sym_short] = ACTIONS(2647), - [anon_sym_LBRACK] = ACTIONS(2647), - [anon_sym_static] = ACTIONS(2647), - [anon_sym_register] = ACTIONS(2647), - [anon_sym_inline] = ACTIONS(2647), - [anon_sym___inline] = ACTIONS(2647), - [anon_sym___inline__] = ACTIONS(2647), - [anon_sym___forceinline] = ACTIONS(2647), - [anon_sym_thread_local] = ACTIONS(2647), - [anon_sym___thread] = ACTIONS(2647), - [anon_sym_const] = ACTIONS(2647), - [anon_sym_constexpr] = ACTIONS(2647), - [anon_sym_volatile] = ACTIONS(2647), - [anon_sym_restrict] = ACTIONS(2647), - [anon_sym___restrict__] = ACTIONS(2647), - [anon_sym__Atomic] = ACTIONS(2647), - [anon_sym__Noreturn] = ACTIONS(2647), - [anon_sym_noreturn] = ACTIONS(2647), - [anon_sym__Nonnull] = ACTIONS(2647), - [anon_sym_mutable] = ACTIONS(2647), - [anon_sym_constinit] = ACTIONS(2647), - [anon_sym_consteval] = ACTIONS(2647), - [anon_sym_alignas] = ACTIONS(2647), - [anon_sym__Alignas] = ACTIONS(2647), - [sym_primitive_type] = ACTIONS(2647), - [anon_sym_enum] = ACTIONS(2647), - [anon_sym_class] = ACTIONS(2647), - [anon_sym_struct] = ACTIONS(2647), - [anon_sym_union] = ACTIONS(2647), - [anon_sym_if] = ACTIONS(2647), - [anon_sym_else] = ACTIONS(2647), - [anon_sym_switch] = ACTIONS(2647), - [anon_sym_while] = ACTIONS(2647), - [anon_sym_do] = ACTIONS(2647), - [anon_sym_for] = ACTIONS(2647), - [anon_sym_return] = ACTIONS(2647), - [anon_sym_break] = ACTIONS(2647), - [anon_sym_continue] = ACTIONS(2647), - [anon_sym_goto] = ACTIONS(2647), - [anon_sym___try] = ACTIONS(2647), - [anon_sym___leave] = ACTIONS(2647), - [anon_sym_not] = ACTIONS(2647), - [anon_sym_compl] = ACTIONS(2647), - [anon_sym_DASH_DASH] = ACTIONS(2649), - [anon_sym_PLUS_PLUS] = ACTIONS(2649), - [anon_sym_sizeof] = ACTIONS(2647), - [anon_sym___alignof__] = ACTIONS(2647), - [anon_sym___alignof] = ACTIONS(2647), - [anon_sym__alignof] = ACTIONS(2647), - [anon_sym_alignof] = ACTIONS(2647), - [anon_sym__Alignof] = ACTIONS(2647), - [anon_sym_offsetof] = ACTIONS(2647), - [anon_sym__Generic] = ACTIONS(2647), - [anon_sym_asm] = ACTIONS(2647), - [anon_sym___asm__] = ACTIONS(2647), - [anon_sym___asm] = ACTIONS(2647), - [sym_number_literal] = ACTIONS(2649), - [anon_sym_L_SQUOTE] = ACTIONS(2649), - [anon_sym_u_SQUOTE] = ACTIONS(2649), - [anon_sym_U_SQUOTE] = ACTIONS(2649), - [anon_sym_u8_SQUOTE] = ACTIONS(2649), - [anon_sym_SQUOTE] = ACTIONS(2649), - [anon_sym_L_DQUOTE] = ACTIONS(2649), - [anon_sym_u_DQUOTE] = ACTIONS(2649), - [anon_sym_U_DQUOTE] = ACTIONS(2649), - [anon_sym_u8_DQUOTE] = ACTIONS(2649), - [anon_sym_DQUOTE] = ACTIONS(2649), - [sym_true] = ACTIONS(2647), - [sym_false] = ACTIONS(2647), - [anon_sym_NULL] = ACTIONS(2647), - [anon_sym_nullptr] = ACTIONS(2647), + [967] = { + [sym_expression_statement] = STATE(2760), + [sym_expression] = STATE(4616), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8334), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_type_requirement] = STATE(973), + [sym_compound_requirement] = STATE(973), + [sym__requirement] = STATE(973), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_requirement_seq_repeat1] = STATE(973), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(4326), + [anon_sym___extension__] = ACTIONS(2167), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(4328), + [anon_sym_RBRACE] = ACTIONS(4354), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [anon_sym___alignof__] = ACTIONS(107), + [anon_sym___alignof] = ACTIONS(107), + [anon_sym__alignof] = ACTIONS(107), + [anon_sym_alignof] = ACTIONS(107), + [anon_sym__Alignof] = ACTIONS(107), + [anon_sym_offsetof] = ACTIONS(109), + [anon_sym__Generic] = ACTIONS(111), + [anon_sym_asm] = ACTIONS(113), + [anon_sym___asm__] = ACTIONS(113), + [anon_sym___asm] = ACTIONS(113), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(117), + [anon_sym_u_SQUOTE] = ACTIONS(117), + [anon_sym_U_SQUOTE] = ACTIONS(117), + [anon_sym_u8_SQUOTE] = ACTIONS(117), + [anon_sym_SQUOTE] = ACTIONS(117), + [anon_sym_L_DQUOTE] = ACTIONS(119), + [anon_sym_u_DQUOTE] = ACTIONS(119), + [anon_sym_U_DQUOTE] = ACTIONS(119), + [anon_sym_u8_DQUOTE] = ACTIONS(119), + [anon_sym_DQUOTE] = ACTIONS(119), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(123), + [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2647), - [anon_sym_decltype] = ACTIONS(2647), - [anon_sym_typename] = ACTIONS(2647), - [anon_sym_template] = ACTIONS(2647), - [anon_sym_try] = ACTIONS(2647), - [anon_sym_delete] = ACTIONS(2647), - [anon_sym_throw] = ACTIONS(2647), - [anon_sym_co_return] = ACTIONS(2647), - [anon_sym_co_yield] = ACTIONS(2647), - [anon_sym_R_DQUOTE] = ACTIONS(2649), - [anon_sym_LR_DQUOTE] = ACTIONS(2649), - [anon_sym_uR_DQUOTE] = ACTIONS(2649), - [anon_sym_UR_DQUOTE] = ACTIONS(2649), - [anon_sym_u8R_DQUOTE] = ACTIONS(2649), - [anon_sym_co_await] = ACTIONS(2647), - [anon_sym_new] = ACTIONS(2647), - [anon_sym_requires] = ACTIONS(2647), - [sym_this] = ACTIONS(2647), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_typename] = ACTIONS(4332), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(145), + [anon_sym_R_DQUOTE] = ACTIONS(159), + [anon_sym_LR_DQUOTE] = ACTIONS(159), + [anon_sym_uR_DQUOTE] = ACTIONS(159), + [anon_sym_UR_DQUOTE] = ACTIONS(159), + [anon_sym_u8R_DQUOTE] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), }, - [908] = { - [sym_identifier] = ACTIONS(2631), - [anon_sym_LPAREN2] = ACTIONS(2633), - [anon_sym_BANG] = ACTIONS(2633), - [anon_sym_TILDE] = ACTIONS(2633), - [anon_sym_DASH] = ACTIONS(2631), - [anon_sym_PLUS] = ACTIONS(2631), - [anon_sym_STAR] = ACTIONS(2633), - [anon_sym_AMP] = ACTIONS(2633), - [anon_sym_SEMI] = ACTIONS(2633), - [anon_sym___extension__] = ACTIONS(2631), - [anon_sym_typedef] = ACTIONS(2631), - [anon_sym_virtual] = ACTIONS(2631), - [anon_sym_extern] = ACTIONS(2631), - [anon_sym___attribute__] = ACTIONS(2631), - [anon_sym___attribute] = ACTIONS(2631), - [anon_sym_COLON_COLON] = ACTIONS(2633), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2633), - [anon_sym___declspec] = ACTIONS(2631), - [anon_sym_LBRACE] = ACTIONS(2633), - [anon_sym_signed] = ACTIONS(2631), - [anon_sym_unsigned] = ACTIONS(2631), - [anon_sym_long] = ACTIONS(2631), - [anon_sym_short] = ACTIONS(2631), - [anon_sym_LBRACK] = ACTIONS(2631), - [anon_sym_static] = ACTIONS(2631), - [anon_sym_register] = ACTIONS(2631), - [anon_sym_inline] = ACTIONS(2631), - [anon_sym___inline] = ACTIONS(2631), - [anon_sym___inline__] = ACTIONS(2631), - [anon_sym___forceinline] = ACTIONS(2631), - [anon_sym_thread_local] = ACTIONS(2631), - [anon_sym___thread] = ACTIONS(2631), - [anon_sym_const] = ACTIONS(2631), - [anon_sym_constexpr] = ACTIONS(2631), - [anon_sym_volatile] = ACTIONS(2631), - [anon_sym_restrict] = ACTIONS(2631), - [anon_sym___restrict__] = ACTIONS(2631), - [anon_sym__Atomic] = ACTIONS(2631), - [anon_sym__Noreturn] = ACTIONS(2631), - [anon_sym_noreturn] = ACTIONS(2631), - [anon_sym__Nonnull] = ACTIONS(2631), - [anon_sym_mutable] = ACTIONS(2631), - [anon_sym_constinit] = ACTIONS(2631), - [anon_sym_consteval] = ACTIONS(2631), - [anon_sym_alignas] = ACTIONS(2631), - [anon_sym__Alignas] = ACTIONS(2631), - [sym_primitive_type] = ACTIONS(2631), - [anon_sym_enum] = ACTIONS(2631), - [anon_sym_class] = ACTIONS(2631), - [anon_sym_struct] = ACTIONS(2631), - [anon_sym_union] = ACTIONS(2631), - [anon_sym_if] = ACTIONS(2631), - [anon_sym_else] = ACTIONS(2631), - [anon_sym_switch] = ACTIONS(2631), - [anon_sym_while] = ACTIONS(2631), - [anon_sym_do] = ACTIONS(2631), - [anon_sym_for] = ACTIONS(2631), - [anon_sym_return] = ACTIONS(2631), - [anon_sym_break] = ACTIONS(2631), - [anon_sym_continue] = ACTIONS(2631), - [anon_sym_goto] = ACTIONS(2631), - [anon_sym___try] = ACTIONS(2631), - [anon_sym___leave] = ACTIONS(2631), - [anon_sym_not] = ACTIONS(2631), - [anon_sym_compl] = ACTIONS(2631), - [anon_sym_DASH_DASH] = ACTIONS(2633), - [anon_sym_PLUS_PLUS] = ACTIONS(2633), - [anon_sym_sizeof] = ACTIONS(2631), - [anon_sym___alignof__] = ACTIONS(2631), - [anon_sym___alignof] = ACTIONS(2631), - [anon_sym__alignof] = ACTIONS(2631), - [anon_sym_alignof] = ACTIONS(2631), - [anon_sym__Alignof] = ACTIONS(2631), - [anon_sym_offsetof] = ACTIONS(2631), - [anon_sym__Generic] = ACTIONS(2631), - [anon_sym_asm] = ACTIONS(2631), - [anon_sym___asm__] = ACTIONS(2631), - [anon_sym___asm] = ACTIONS(2631), - [sym_number_literal] = ACTIONS(2633), - [anon_sym_L_SQUOTE] = ACTIONS(2633), - [anon_sym_u_SQUOTE] = ACTIONS(2633), - [anon_sym_U_SQUOTE] = ACTIONS(2633), - [anon_sym_u8_SQUOTE] = ACTIONS(2633), - [anon_sym_SQUOTE] = ACTIONS(2633), - [anon_sym_L_DQUOTE] = ACTIONS(2633), - [anon_sym_u_DQUOTE] = ACTIONS(2633), - [anon_sym_U_DQUOTE] = ACTIONS(2633), - [anon_sym_u8_DQUOTE] = ACTIONS(2633), - [anon_sym_DQUOTE] = ACTIONS(2633), - [sym_true] = ACTIONS(2631), - [sym_false] = ACTIONS(2631), - [anon_sym_NULL] = ACTIONS(2631), - [anon_sym_nullptr] = ACTIONS(2631), + [968] = { + [sym_expression] = STATE(3058), + [sym__string] = STATE(3178), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(3178), + [sym_concatenated_string] = STATE(3178), + [sym_string_literal] = STATE(2317), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(2317), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), + [sym_identifier] = ACTIONS(2301), + [anon_sym_LPAREN2] = ACTIONS(4322), + [anon_sym_BANG] = ACTIONS(2305), + [anon_sym_TILDE] = ACTIONS(2305), + [anon_sym_DASH] = ACTIONS(2303), + [anon_sym_PLUS] = ACTIONS(2303), + [anon_sym_STAR] = ACTIONS(4336), + [anon_sym_AMP] = ACTIONS(4336), + [anon_sym_LT] = ACTIONS(4322), + [anon_sym___extension__] = ACTIONS(2307), + [anon_sym_COLON_COLON] = ACTIONS(2309), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4322), + [anon_sym_LBRACE] = ACTIONS(4322), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_static] = ACTIONS(4324), + [anon_sym_constexpr] = ACTIONS(4324), + [anon_sym_mutable] = ACTIONS(4324), + [anon_sym_consteval] = ACTIONS(4324), + [sym_primitive_type] = ACTIONS(1956), + [anon_sym_not] = ACTIONS(2303), + [anon_sym_compl] = ACTIONS(2303), + [anon_sym_DASH_DASH] = ACTIONS(4352), + [anon_sym_PLUS_PLUS] = ACTIONS(4352), + [anon_sym_sizeof] = ACTIONS(2311), + [anon_sym___alignof__] = ACTIONS(1960), + [anon_sym___alignof] = ACTIONS(1960), + [anon_sym__alignof] = ACTIONS(1960), + [anon_sym_alignof] = ACTIONS(1960), + [anon_sym__Alignof] = ACTIONS(1960), + [anon_sym_offsetof] = ACTIONS(1962), + [anon_sym__Generic] = ACTIONS(1964), + [anon_sym_asm] = ACTIONS(1966), + [anon_sym___asm__] = ACTIONS(1966), + [anon_sym___asm] = ACTIONS(1966), + [anon_sym_DASH_GT] = ACTIONS(4322), + [sym_number_literal] = ACTIONS(2313), + [anon_sym_L_SQUOTE] = ACTIONS(2315), + [anon_sym_u_SQUOTE] = ACTIONS(2315), + [anon_sym_U_SQUOTE] = ACTIONS(2315), + [anon_sym_u8_SQUOTE] = ACTIONS(2315), + [anon_sym_SQUOTE] = ACTIONS(2315), + [anon_sym_L_DQUOTE] = ACTIONS(2317), + [anon_sym_u_DQUOTE] = ACTIONS(2317), + [anon_sym_U_DQUOTE] = ACTIONS(2317), + [anon_sym_u8_DQUOTE] = ACTIONS(2317), + [anon_sym_DQUOTE] = ACTIONS(2317), + [sym_true] = ACTIONS(1974), + [sym_false] = ACTIONS(1974), + [anon_sym_NULL] = ACTIONS(1976), + [anon_sym_nullptr] = ACTIONS(1976), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2631), - [anon_sym_decltype] = ACTIONS(2631), - [anon_sym_typename] = ACTIONS(2631), - [anon_sym_template] = ACTIONS(2631), - [anon_sym_try] = ACTIONS(2631), - [anon_sym_delete] = ACTIONS(2631), - [anon_sym_throw] = ACTIONS(2631), - [anon_sym_co_return] = ACTIONS(2631), - [anon_sym_co_yield] = ACTIONS(2631), - [anon_sym_R_DQUOTE] = ACTIONS(2633), - [anon_sym_LR_DQUOTE] = ACTIONS(2633), - [anon_sym_uR_DQUOTE] = ACTIONS(2633), - [anon_sym_UR_DQUOTE] = ACTIONS(2633), - [anon_sym_u8R_DQUOTE] = ACTIONS(2633), - [anon_sym_co_await] = ACTIONS(2631), - [anon_sym_new] = ACTIONS(2631), - [anon_sym_requires] = ACTIONS(2631), - [sym_this] = ACTIONS(2631), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(2319), + [anon_sym_noexcept] = ACTIONS(4324), + [anon_sym_throw] = ACTIONS(4324), + [anon_sym_R_DQUOTE] = ACTIONS(2321), + [anon_sym_LR_DQUOTE] = ACTIONS(2321), + [anon_sym_uR_DQUOTE] = ACTIONS(2321), + [anon_sym_UR_DQUOTE] = ACTIONS(2321), + [anon_sym_u8R_DQUOTE] = ACTIONS(2321), + [anon_sym_co_await] = ACTIONS(2323), + [anon_sym_new] = ACTIONS(2014), + [anon_sym_requires] = ACTIONS(1988), + [sym_this] = ACTIONS(1974), }, - [909] = { - [sym_ms_based_modifier] = STATE(8682), - [sym__declarator] = STATE(6451), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(5998), - [sym_array_declarator] = STATE(5998), - [sym_expression] = STATE(3197), - [sym__string] = STATE(3235), - [sym_conditional_expression] = STATE(3373), - [sym_assignment_expression] = STATE(3373), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3373), - [sym_binary_expression] = STATE(3373), - [sym_update_expression] = STATE(3373), - [sym_cast_expression] = STATE(3373), - [sym_sizeof_expression] = STATE(3373), - [sym_alignof_expression] = STATE(3373), - [sym_offsetof_expression] = STATE(3373), - [sym_generic_expression] = STATE(3373), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3373), - [sym_extension_expression] = STATE(3373), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3373), - [sym_parenthesized_expression] = STATE(3365), - [sym_char_literal] = STATE(3235), - [sym_concatenated_string] = STATE(3235), - [sym_string_literal] = STATE(2358), - [sym_null] = STATE(3373), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7814), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3233), - [sym_raw_string_literal] = STATE(2358), - [sym_co_await_expression] = STATE(3373), - [sym_new_expression] = STATE(3373), - [sym_delete_expression] = STATE(3373), - [sym_requires_clause] = STATE(3373), - [sym_requires_expression] = STATE(3373), - [sym_lambda_expression] = STATE(3373), - [sym_lambda_capture_specifier] = STATE(5414), - [sym_fold_expression] = STATE(3373), - [sym_parameter_pack_expansion] = STATE(3373), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5659), - [sym_qualified_identifier] = STATE(3292), - [sym_qualified_type_identifier] = STATE(7814), - [sym_operator_name] = STATE(5998), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(3323), - [anon_sym_LPAREN2] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1800), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1802), - [anon_sym___extension__] = ACTIONS(2455), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym___based] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(1812), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), + [969] = { + [sym_expression] = STATE(4522), + [sym__string] = STATE(4825), + [sym_conditional_expression] = STATE(4856), + [sym_assignment_expression] = STATE(4856), + [sym_pointer_expression] = STATE(3701), + [sym_unary_expression] = STATE(4856), + [sym_binary_expression] = STATE(4856), + [sym_update_expression] = STATE(4856), + [sym_cast_expression] = STATE(4856), + [sym_sizeof_expression] = STATE(4856), + [sym_alignof_expression] = STATE(4856), + [sym_offsetof_expression] = STATE(4856), + [sym_generic_expression] = STATE(4856), + [sym_subscript_expression] = STATE(3701), + [sym_call_expression] = STATE(3701), + [sym_gnu_asm_expression] = STATE(4856), + [sym_extension_expression] = STATE(4856), + [sym_field_expression] = STATE(3701), + [sym_compound_literal_expression] = STATE(4856), + [sym_parenthesized_expression] = STATE(3701), + [sym_char_literal] = STATE(4825), + [sym_concatenated_string] = STATE(4825), + [sym_string_literal] = STATE(3812), + [sym_null] = STATE(4856), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7816), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(4856), + [sym_raw_string_literal] = STATE(3812), + [sym_co_await_expression] = STATE(4856), + [sym_new_expression] = STATE(4856), + [sym_delete_expression] = STATE(4856), + [sym_requires_clause] = STATE(4856), + [sym_requires_expression] = STATE(4856), + [sym_lambda_expression] = STATE(4856), + [sym_lambda_capture_specifier] = STATE(5489), + [sym_fold_expression] = STATE(4856), + [sym_parameter_pack_expansion] = STATE(4856), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5769), + [sym_qualified_identifier] = STATE(3701), + [sym_qualified_type_identifier] = STATE(7816), + [sym_user_defined_literal] = STATE(3701), + [sym_identifier] = ACTIONS(3875), + [anon_sym_LPAREN2] = ACTIONS(4322), + [anon_sym_BANG] = ACTIONS(3132), + [anon_sym_TILDE] = ACTIONS(3132), + [anon_sym_DASH] = ACTIONS(3134), + [anon_sym_PLUS] = ACTIONS(3134), + [anon_sym_STAR] = ACTIONS(3136), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym_LT] = ACTIONS(4322), + [anon_sym___extension__] = ACTIONS(3877), + [anon_sym_COLON_COLON] = ACTIONS(3140), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4322), + [anon_sym_LBRACE] = ACTIONS(4322), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_static] = ACTIONS(4324), + [anon_sym_constexpr] = ACTIONS(4324), + [anon_sym_mutable] = ACTIONS(4324), + [anon_sym_consteval] = ACTIONS(4324), + [sym_primitive_type] = ACTIONS(3881), + [anon_sym_not] = ACTIONS(3134), + [anon_sym_compl] = ACTIONS(3134), + [anon_sym_DASH_DASH] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_sizeof] = ACTIONS(3156), + [anon_sym___alignof__] = ACTIONS(3158), + [anon_sym___alignof] = ACTIONS(3158), + [anon_sym__alignof] = ACTIONS(3158), + [anon_sym_alignof] = ACTIONS(3158), + [anon_sym__Alignof] = ACTIONS(3158), + [anon_sym_offsetof] = ACTIONS(3160), + [anon_sym__Generic] = ACTIONS(3162), + [anon_sym_asm] = ACTIONS(3164), + [anon_sym___asm__] = ACTIONS(3164), + [anon_sym___asm] = ACTIONS(3164), + [anon_sym_DASH_GT] = ACTIONS(4322), + [sym_number_literal] = ACTIONS(3166), + [anon_sym_L_SQUOTE] = ACTIONS(3168), + [anon_sym_u_SQUOTE] = ACTIONS(3168), + [anon_sym_U_SQUOTE] = ACTIONS(3168), + [anon_sym_u8_SQUOTE] = ACTIONS(3168), + [anon_sym_SQUOTE] = ACTIONS(3168), + [anon_sym_L_DQUOTE] = ACTIONS(3170), + [anon_sym_u_DQUOTE] = ACTIONS(3170), + [anon_sym_U_DQUOTE] = ACTIONS(3170), + [anon_sym_u8_DQUOTE] = ACTIONS(3170), + [anon_sym_DQUOTE] = ACTIONS(3170), + [sym_true] = ACTIONS(3172), + [sym_false] = ACTIONS(3172), + [anon_sym_NULL] = ACTIONS(3174), + [anon_sym_nullptr] = ACTIONS(3174), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_operator] = ACTIONS(1852), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3184), + [anon_sym_noexcept] = ACTIONS(4324), + [anon_sym_throw] = ACTIONS(4324), + [anon_sym_R_DQUOTE] = ACTIONS(3186), + [anon_sym_LR_DQUOTE] = ACTIONS(3186), + [anon_sym_uR_DQUOTE] = ACTIONS(3186), + [anon_sym_UR_DQUOTE] = ACTIONS(3186), + [anon_sym_u8R_DQUOTE] = ACTIONS(3186), + [anon_sym_co_await] = ACTIONS(3188), + [anon_sym_new] = ACTIONS(3190), + [anon_sym_requires] = ACTIONS(3192), + [sym_this] = ACTIONS(3172), }, - [910] = { - [sym_identifier] = ACTIONS(2743), - [anon_sym_LPAREN2] = ACTIONS(2745), - [anon_sym_BANG] = ACTIONS(2745), - [anon_sym_TILDE] = ACTIONS(2745), - [anon_sym_DASH] = ACTIONS(2743), - [anon_sym_PLUS] = ACTIONS(2743), - [anon_sym_STAR] = ACTIONS(2745), - [anon_sym_AMP] = ACTIONS(2745), - [anon_sym_SEMI] = ACTIONS(2745), - [anon_sym___extension__] = ACTIONS(2743), - [anon_sym_typedef] = ACTIONS(2743), - [anon_sym_virtual] = ACTIONS(2743), - [anon_sym_extern] = ACTIONS(2743), - [anon_sym___attribute__] = ACTIONS(2743), - [anon_sym___attribute] = ACTIONS(2743), - [anon_sym_COLON_COLON] = ACTIONS(2745), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2745), - [anon_sym___declspec] = ACTIONS(2743), - [anon_sym_LBRACE] = ACTIONS(2745), - [anon_sym_signed] = ACTIONS(2743), - [anon_sym_unsigned] = ACTIONS(2743), - [anon_sym_long] = ACTIONS(2743), - [anon_sym_short] = ACTIONS(2743), - [anon_sym_LBRACK] = ACTIONS(2743), - [anon_sym_static] = ACTIONS(2743), - [anon_sym_register] = ACTIONS(2743), - [anon_sym_inline] = ACTIONS(2743), - [anon_sym___inline] = ACTIONS(2743), - [anon_sym___inline__] = ACTIONS(2743), - [anon_sym___forceinline] = ACTIONS(2743), - [anon_sym_thread_local] = ACTIONS(2743), - [anon_sym___thread] = ACTIONS(2743), - [anon_sym_const] = ACTIONS(2743), - [anon_sym_constexpr] = ACTIONS(2743), - [anon_sym_volatile] = ACTIONS(2743), - [anon_sym_restrict] = ACTIONS(2743), - [anon_sym___restrict__] = ACTIONS(2743), - [anon_sym__Atomic] = ACTIONS(2743), - [anon_sym__Noreturn] = ACTIONS(2743), - [anon_sym_noreturn] = ACTIONS(2743), - [anon_sym__Nonnull] = ACTIONS(2743), - [anon_sym_mutable] = ACTIONS(2743), - [anon_sym_constinit] = ACTIONS(2743), - [anon_sym_consteval] = ACTIONS(2743), - [anon_sym_alignas] = ACTIONS(2743), - [anon_sym__Alignas] = ACTIONS(2743), - [sym_primitive_type] = ACTIONS(2743), - [anon_sym_enum] = ACTIONS(2743), - [anon_sym_class] = ACTIONS(2743), - [anon_sym_struct] = ACTIONS(2743), - [anon_sym_union] = ACTIONS(2743), - [anon_sym_if] = ACTIONS(2743), - [anon_sym_else] = ACTIONS(2743), - [anon_sym_switch] = ACTIONS(2743), - [anon_sym_while] = ACTIONS(2743), - [anon_sym_do] = ACTIONS(2743), - [anon_sym_for] = ACTIONS(2743), - [anon_sym_return] = ACTIONS(2743), - [anon_sym_break] = ACTIONS(2743), - [anon_sym_continue] = ACTIONS(2743), - [anon_sym_goto] = ACTIONS(2743), - [anon_sym___try] = ACTIONS(2743), - [anon_sym___leave] = ACTIONS(2743), - [anon_sym_not] = ACTIONS(2743), - [anon_sym_compl] = ACTIONS(2743), - [anon_sym_DASH_DASH] = ACTIONS(2745), - [anon_sym_PLUS_PLUS] = ACTIONS(2745), - [anon_sym_sizeof] = ACTIONS(2743), - [anon_sym___alignof__] = ACTIONS(2743), - [anon_sym___alignof] = ACTIONS(2743), - [anon_sym__alignof] = ACTIONS(2743), - [anon_sym_alignof] = ACTIONS(2743), - [anon_sym__Alignof] = ACTIONS(2743), - [anon_sym_offsetof] = ACTIONS(2743), - [anon_sym__Generic] = ACTIONS(2743), - [anon_sym_asm] = ACTIONS(2743), - [anon_sym___asm__] = ACTIONS(2743), - [anon_sym___asm] = ACTIONS(2743), - [sym_number_literal] = ACTIONS(2745), - [anon_sym_L_SQUOTE] = ACTIONS(2745), - [anon_sym_u_SQUOTE] = ACTIONS(2745), - [anon_sym_U_SQUOTE] = ACTIONS(2745), - [anon_sym_u8_SQUOTE] = ACTIONS(2745), - [anon_sym_SQUOTE] = ACTIONS(2745), - [anon_sym_L_DQUOTE] = ACTIONS(2745), - [anon_sym_u_DQUOTE] = ACTIONS(2745), - [anon_sym_U_DQUOTE] = ACTIONS(2745), - [anon_sym_u8_DQUOTE] = ACTIONS(2745), - [anon_sym_DQUOTE] = ACTIONS(2745), - [sym_true] = ACTIONS(2743), - [sym_false] = ACTIONS(2743), - [anon_sym_NULL] = ACTIONS(2743), - [anon_sym_nullptr] = ACTIONS(2743), + [970] = { + [sym_expression] = STATE(4184), + [sym__string] = STATE(4269), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(2921), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(2921), + [sym_call_expression] = STATE(2921), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(2921), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(2921), + [sym_char_literal] = STATE(4269), + [sym_concatenated_string] = STATE(4269), + [sym_string_literal] = STATE(3102), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3102), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2921), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(2921), + [sym_identifier] = ACTIONS(4356), + [anon_sym_LPAREN2] = ACTIONS(4322), + [anon_sym_BANG] = ACTIONS(3617), + [anon_sym_TILDE] = ACTIONS(3617), + [anon_sym_DASH] = ACTIONS(3615), + [anon_sym_PLUS] = ACTIONS(3615), + [anon_sym_STAR] = ACTIONS(4346), + [anon_sym_AMP] = ACTIONS(4346), + [anon_sym_LT] = ACTIONS(4322), + [anon_sym___extension__] = ACTIONS(3619), + [anon_sym_COLON_COLON] = ACTIONS(3621), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4322), + [anon_sym_LBRACE] = ACTIONS(4322), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_static] = ACTIONS(4324), + [anon_sym_constexpr] = ACTIONS(4324), + [anon_sym_mutable] = ACTIONS(4324), + [anon_sym_consteval] = ACTIONS(4324), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3615), + [anon_sym_compl] = ACTIONS(3615), + [anon_sym_DASH_DASH] = ACTIONS(4358), + [anon_sym_PLUS_PLUS] = ACTIONS(4358), + [anon_sym_sizeof] = ACTIONS(3625), + [anon_sym___alignof__] = ACTIONS(107), + [anon_sym___alignof] = ACTIONS(107), + [anon_sym__alignof] = ACTIONS(107), + [anon_sym_alignof] = ACTIONS(107), + [anon_sym__Alignof] = ACTIONS(107), + [anon_sym_offsetof] = ACTIONS(109), + [anon_sym__Generic] = ACTIONS(111), + [anon_sym_asm] = ACTIONS(113), + [anon_sym___asm__] = ACTIONS(113), + [anon_sym___asm] = ACTIONS(113), + [anon_sym_DASH_GT] = ACTIONS(4322), + [sym_number_literal] = ACTIONS(3627), + [anon_sym_L_SQUOTE] = ACTIONS(3629), + [anon_sym_u_SQUOTE] = ACTIONS(3629), + [anon_sym_U_SQUOTE] = ACTIONS(3629), + [anon_sym_u8_SQUOTE] = ACTIONS(3629), + [anon_sym_SQUOTE] = ACTIONS(3629), + [anon_sym_L_DQUOTE] = ACTIONS(3631), + [anon_sym_u_DQUOTE] = ACTIONS(3631), + [anon_sym_U_DQUOTE] = ACTIONS(3631), + [anon_sym_u8_DQUOTE] = ACTIONS(3631), + [anon_sym_DQUOTE] = ACTIONS(3631), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(123), + [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2743), - [anon_sym_decltype] = ACTIONS(2743), - [anon_sym_typename] = ACTIONS(2743), - [anon_sym_template] = ACTIONS(2743), - [anon_sym_try] = ACTIONS(2743), - [anon_sym_delete] = ACTIONS(2743), - [anon_sym_throw] = ACTIONS(2743), - [anon_sym_co_return] = ACTIONS(2743), - [anon_sym_co_yield] = ACTIONS(2743), - [anon_sym_R_DQUOTE] = ACTIONS(2745), - [anon_sym_LR_DQUOTE] = ACTIONS(2745), - [anon_sym_uR_DQUOTE] = ACTIONS(2745), - [anon_sym_UR_DQUOTE] = ACTIONS(2745), - [anon_sym_u8R_DQUOTE] = ACTIONS(2745), - [anon_sym_co_await] = ACTIONS(2743), - [anon_sym_new] = ACTIONS(2743), - [anon_sym_requires] = ACTIONS(2743), - [sym_this] = ACTIONS(2743), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3633), + [anon_sym_noexcept] = ACTIONS(4324), + [anon_sym_throw] = ACTIONS(4324), + [anon_sym_R_DQUOTE] = ACTIONS(3635), + [anon_sym_LR_DQUOTE] = ACTIONS(3635), + [anon_sym_uR_DQUOTE] = ACTIONS(3635), + [anon_sym_UR_DQUOTE] = ACTIONS(3635), + [anon_sym_u8R_DQUOTE] = ACTIONS(3635), + [anon_sym_co_await] = ACTIONS(3637), + [anon_sym_new] = ACTIONS(3639), + [anon_sym_requires] = ACTIONS(3641), + [sym_this] = ACTIONS(229), }, - [911] = { - [sym_identifier] = ACTIONS(2719), - [anon_sym_LPAREN2] = ACTIONS(2721), - [anon_sym_BANG] = ACTIONS(2721), - [anon_sym_TILDE] = ACTIONS(2721), - [anon_sym_DASH] = ACTIONS(2719), - [anon_sym_PLUS] = ACTIONS(2719), - [anon_sym_STAR] = ACTIONS(2721), - [anon_sym_AMP] = ACTIONS(2721), - [anon_sym_SEMI] = ACTIONS(2721), - [anon_sym___extension__] = ACTIONS(2719), - [anon_sym_typedef] = ACTIONS(2719), - [anon_sym_virtual] = ACTIONS(2719), - [anon_sym_extern] = ACTIONS(2719), - [anon_sym___attribute__] = ACTIONS(2719), - [anon_sym___attribute] = ACTIONS(2719), - [anon_sym_COLON_COLON] = ACTIONS(2721), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2721), - [anon_sym___declspec] = ACTIONS(2719), - [anon_sym_LBRACE] = ACTIONS(2721), - [anon_sym_signed] = ACTIONS(2719), - [anon_sym_unsigned] = ACTIONS(2719), - [anon_sym_long] = ACTIONS(2719), - [anon_sym_short] = ACTIONS(2719), - [anon_sym_LBRACK] = ACTIONS(2719), - [anon_sym_static] = ACTIONS(2719), - [anon_sym_register] = ACTIONS(2719), - [anon_sym_inline] = ACTIONS(2719), - [anon_sym___inline] = ACTIONS(2719), - [anon_sym___inline__] = ACTIONS(2719), - [anon_sym___forceinline] = ACTIONS(2719), - [anon_sym_thread_local] = ACTIONS(2719), - [anon_sym___thread] = ACTIONS(2719), - [anon_sym_const] = ACTIONS(2719), - [anon_sym_constexpr] = ACTIONS(2719), - [anon_sym_volatile] = ACTIONS(2719), - [anon_sym_restrict] = ACTIONS(2719), - [anon_sym___restrict__] = ACTIONS(2719), - [anon_sym__Atomic] = ACTIONS(2719), - [anon_sym__Noreturn] = ACTIONS(2719), - [anon_sym_noreturn] = ACTIONS(2719), - [anon_sym__Nonnull] = ACTIONS(2719), - [anon_sym_mutable] = ACTIONS(2719), - [anon_sym_constinit] = ACTIONS(2719), - [anon_sym_consteval] = ACTIONS(2719), - [anon_sym_alignas] = ACTIONS(2719), - [anon_sym__Alignas] = ACTIONS(2719), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(2719), - [anon_sym_class] = ACTIONS(2719), - [anon_sym_struct] = ACTIONS(2719), - [anon_sym_union] = ACTIONS(2719), - [anon_sym_if] = ACTIONS(2719), - [anon_sym_else] = ACTIONS(2719), - [anon_sym_switch] = ACTIONS(2719), - [anon_sym_while] = ACTIONS(2719), - [anon_sym_do] = ACTIONS(2719), - [anon_sym_for] = ACTIONS(2719), - [anon_sym_return] = ACTIONS(2719), - [anon_sym_break] = ACTIONS(2719), - [anon_sym_continue] = ACTIONS(2719), - [anon_sym_goto] = ACTIONS(2719), - [anon_sym___try] = ACTIONS(2719), - [anon_sym___leave] = ACTIONS(2719), - [anon_sym_not] = ACTIONS(2719), - [anon_sym_compl] = ACTIONS(2719), - [anon_sym_DASH_DASH] = ACTIONS(2721), - [anon_sym_PLUS_PLUS] = ACTIONS(2721), - [anon_sym_sizeof] = ACTIONS(2719), - [anon_sym___alignof__] = ACTIONS(2719), - [anon_sym___alignof] = ACTIONS(2719), - [anon_sym__alignof] = ACTIONS(2719), - [anon_sym_alignof] = ACTIONS(2719), - [anon_sym__Alignof] = ACTIONS(2719), - [anon_sym_offsetof] = ACTIONS(2719), - [anon_sym__Generic] = ACTIONS(2719), - [anon_sym_asm] = ACTIONS(2719), - [anon_sym___asm__] = ACTIONS(2719), - [anon_sym___asm] = ACTIONS(2719), - [sym_number_literal] = ACTIONS(2721), - [anon_sym_L_SQUOTE] = ACTIONS(2721), - [anon_sym_u_SQUOTE] = ACTIONS(2721), - [anon_sym_U_SQUOTE] = ACTIONS(2721), - [anon_sym_u8_SQUOTE] = ACTIONS(2721), - [anon_sym_SQUOTE] = ACTIONS(2721), - [anon_sym_L_DQUOTE] = ACTIONS(2721), - [anon_sym_u_DQUOTE] = ACTIONS(2721), - [anon_sym_U_DQUOTE] = ACTIONS(2721), - [anon_sym_u8_DQUOTE] = ACTIONS(2721), - [anon_sym_DQUOTE] = ACTIONS(2721), - [sym_true] = ACTIONS(2719), - [sym_false] = ACTIONS(2719), - [anon_sym_NULL] = ACTIONS(2719), - [anon_sym_nullptr] = ACTIONS(2719), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2719), - [anon_sym_decltype] = ACTIONS(2719), - [anon_sym_typename] = ACTIONS(2719), - [anon_sym_template] = ACTIONS(2719), - [anon_sym_try] = ACTIONS(2719), - [anon_sym_delete] = ACTIONS(2719), - [anon_sym_throw] = ACTIONS(2719), - [anon_sym_co_return] = ACTIONS(2719), - [anon_sym_co_yield] = ACTIONS(2719), - [anon_sym_R_DQUOTE] = ACTIONS(2721), - [anon_sym_LR_DQUOTE] = ACTIONS(2721), - [anon_sym_uR_DQUOTE] = ACTIONS(2721), - [anon_sym_UR_DQUOTE] = ACTIONS(2721), - [anon_sym_u8R_DQUOTE] = ACTIONS(2721), - [anon_sym_co_await] = ACTIONS(2719), - [anon_sym_new] = ACTIONS(2719), - [anon_sym_requires] = ACTIONS(2719), - [sym_this] = ACTIONS(2719), + [971] = { + [sym_expression] = STATE(2939), + [sym__string] = STATE(2917), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(2917), + [sym_concatenated_string] = STATE(2917), + [sym_string_literal] = STATE(2114), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(2114), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), + [sym_identifier] = ACTIONS(1990), + [anon_sym_LPAREN2] = ACTIONS(4322), + [anon_sym_BANG] = ACTIONS(1994), + [anon_sym_TILDE] = ACTIONS(1994), + [anon_sym_DASH] = ACTIONS(1992), + [anon_sym_PLUS] = ACTIONS(1992), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_LT] = ACTIONS(4322), + [anon_sym___extension__] = ACTIONS(1996), + [anon_sym_COLON_COLON] = ACTIONS(1998), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4322), + [anon_sym_LBRACE] = ACTIONS(4322), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_static] = ACTIONS(4324), + [anon_sym_constexpr] = ACTIONS(4324), + [anon_sym_mutable] = ACTIONS(4324), + [anon_sym_consteval] = ACTIONS(4324), + [sym_primitive_type] = ACTIONS(1956), + [anon_sym_not] = ACTIONS(1992), + [anon_sym_compl] = ACTIONS(1992), + [anon_sym_DASH_DASH] = ACTIONS(3355), + [anon_sym_PLUS_PLUS] = ACTIONS(3355), + [anon_sym_sizeof] = ACTIONS(2000), + [anon_sym___alignof__] = ACTIONS(1960), + [anon_sym___alignof] = ACTIONS(1960), + [anon_sym__alignof] = ACTIONS(1960), + [anon_sym_alignof] = ACTIONS(1960), + [anon_sym__Alignof] = ACTIONS(1960), + [anon_sym_offsetof] = ACTIONS(1962), + [anon_sym__Generic] = ACTIONS(1964), + [anon_sym_asm] = ACTIONS(1966), + [anon_sym___asm__] = ACTIONS(1966), + [anon_sym___asm] = ACTIONS(1966), + [anon_sym_DASH_GT] = ACTIONS(4322), + [sym_number_literal] = ACTIONS(2002), + [anon_sym_L_SQUOTE] = ACTIONS(2004), + [anon_sym_u_SQUOTE] = ACTIONS(2004), + [anon_sym_U_SQUOTE] = ACTIONS(2004), + [anon_sym_u8_SQUOTE] = ACTIONS(2004), + [anon_sym_SQUOTE] = ACTIONS(2004), + [anon_sym_L_DQUOTE] = ACTIONS(2006), + [anon_sym_u_DQUOTE] = ACTIONS(2006), + [anon_sym_U_DQUOTE] = ACTIONS(2006), + [anon_sym_u8_DQUOTE] = ACTIONS(2006), + [anon_sym_DQUOTE] = ACTIONS(2006), + [sym_true] = ACTIONS(1974), + [sym_false] = ACTIONS(1974), + [anon_sym_NULL] = ACTIONS(1976), + [anon_sym_nullptr] = ACTIONS(1976), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(2008), + [anon_sym_noexcept] = ACTIONS(4324), + [anon_sym_throw] = ACTIONS(4324), + [anon_sym_R_DQUOTE] = ACTIONS(2010), + [anon_sym_LR_DQUOTE] = ACTIONS(2010), + [anon_sym_uR_DQUOTE] = ACTIONS(2010), + [anon_sym_UR_DQUOTE] = ACTIONS(2010), + [anon_sym_u8R_DQUOTE] = ACTIONS(2010), + [anon_sym_co_await] = ACTIONS(2012), + [anon_sym_new] = ACTIONS(2014), + [anon_sym_requires] = ACTIONS(1988), + [sym_this] = ACTIONS(1974), }, - [912] = { - [sym_identifier] = ACTIONS(2669), - [anon_sym_LPAREN2] = ACTIONS(2671), - [anon_sym_BANG] = ACTIONS(2671), - [anon_sym_TILDE] = ACTIONS(2671), - [anon_sym_DASH] = ACTIONS(2669), - [anon_sym_PLUS] = ACTIONS(2669), - [anon_sym_STAR] = ACTIONS(2671), - [anon_sym_AMP] = ACTIONS(2671), - [anon_sym_SEMI] = ACTIONS(2671), - [anon_sym___extension__] = ACTIONS(2669), - [anon_sym_typedef] = ACTIONS(2669), - [anon_sym_virtual] = ACTIONS(2669), - [anon_sym_extern] = ACTIONS(2669), - [anon_sym___attribute__] = ACTIONS(2669), - [anon_sym___attribute] = ACTIONS(2669), - [anon_sym_COLON_COLON] = ACTIONS(2671), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2671), - [anon_sym___declspec] = ACTIONS(2669), - [anon_sym_LBRACE] = ACTIONS(2671), - [anon_sym_signed] = ACTIONS(2669), - [anon_sym_unsigned] = ACTIONS(2669), - [anon_sym_long] = ACTIONS(2669), - [anon_sym_short] = ACTIONS(2669), - [anon_sym_LBRACK] = ACTIONS(2669), - [anon_sym_static] = ACTIONS(2669), - [anon_sym_register] = ACTIONS(2669), - [anon_sym_inline] = ACTIONS(2669), - [anon_sym___inline] = ACTIONS(2669), - [anon_sym___inline__] = ACTIONS(2669), - [anon_sym___forceinline] = ACTIONS(2669), - [anon_sym_thread_local] = ACTIONS(2669), - [anon_sym___thread] = ACTIONS(2669), - [anon_sym_const] = ACTIONS(2669), - [anon_sym_constexpr] = ACTIONS(2669), - [anon_sym_volatile] = ACTIONS(2669), - [anon_sym_restrict] = ACTIONS(2669), - [anon_sym___restrict__] = ACTIONS(2669), - [anon_sym__Atomic] = ACTIONS(2669), - [anon_sym__Noreturn] = ACTIONS(2669), - [anon_sym_noreturn] = ACTIONS(2669), - [anon_sym__Nonnull] = ACTIONS(2669), - [anon_sym_mutable] = ACTIONS(2669), - [anon_sym_constinit] = ACTIONS(2669), - [anon_sym_consteval] = ACTIONS(2669), - [anon_sym_alignas] = ACTIONS(2669), - [anon_sym__Alignas] = ACTIONS(2669), - [sym_primitive_type] = ACTIONS(2669), - [anon_sym_enum] = ACTIONS(2669), - [anon_sym_class] = ACTIONS(2669), - [anon_sym_struct] = ACTIONS(2669), - [anon_sym_union] = ACTIONS(2669), - [anon_sym_if] = ACTIONS(2669), - [anon_sym_else] = ACTIONS(2669), - [anon_sym_switch] = ACTIONS(2669), - [anon_sym_while] = ACTIONS(2669), - [anon_sym_do] = ACTIONS(2669), - [anon_sym_for] = ACTIONS(2669), - [anon_sym_return] = ACTIONS(2669), - [anon_sym_break] = ACTIONS(2669), - [anon_sym_continue] = ACTIONS(2669), - [anon_sym_goto] = ACTIONS(2669), - [anon_sym___try] = ACTIONS(2669), - [anon_sym___leave] = ACTIONS(2669), - [anon_sym_not] = ACTIONS(2669), - [anon_sym_compl] = ACTIONS(2669), - [anon_sym_DASH_DASH] = ACTIONS(2671), - [anon_sym_PLUS_PLUS] = ACTIONS(2671), - [anon_sym_sizeof] = ACTIONS(2669), - [anon_sym___alignof__] = ACTIONS(2669), - [anon_sym___alignof] = ACTIONS(2669), - [anon_sym__alignof] = ACTIONS(2669), - [anon_sym_alignof] = ACTIONS(2669), - [anon_sym__Alignof] = ACTIONS(2669), - [anon_sym_offsetof] = ACTIONS(2669), - [anon_sym__Generic] = ACTIONS(2669), - [anon_sym_asm] = ACTIONS(2669), - [anon_sym___asm__] = ACTIONS(2669), - [anon_sym___asm] = ACTIONS(2669), - [sym_number_literal] = ACTIONS(2671), - [anon_sym_L_SQUOTE] = ACTIONS(2671), - [anon_sym_u_SQUOTE] = ACTIONS(2671), - [anon_sym_U_SQUOTE] = ACTIONS(2671), - [anon_sym_u8_SQUOTE] = ACTIONS(2671), - [anon_sym_SQUOTE] = ACTIONS(2671), - [anon_sym_L_DQUOTE] = ACTIONS(2671), - [anon_sym_u_DQUOTE] = ACTIONS(2671), - [anon_sym_U_DQUOTE] = ACTIONS(2671), - [anon_sym_u8_DQUOTE] = ACTIONS(2671), - [anon_sym_DQUOTE] = ACTIONS(2671), - [sym_true] = ACTIONS(2669), - [sym_false] = ACTIONS(2669), - [anon_sym_NULL] = ACTIONS(2669), - [anon_sym_nullptr] = ACTIONS(2669), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2669), - [anon_sym_decltype] = ACTIONS(2669), - [anon_sym_typename] = ACTIONS(2669), - [anon_sym_template] = ACTIONS(2669), - [anon_sym_try] = ACTIONS(2669), - [anon_sym_delete] = ACTIONS(2669), - [anon_sym_throw] = ACTIONS(2669), - [anon_sym_co_return] = ACTIONS(2669), - [anon_sym_co_yield] = ACTIONS(2669), - [anon_sym_R_DQUOTE] = ACTIONS(2671), - [anon_sym_LR_DQUOTE] = ACTIONS(2671), - [anon_sym_uR_DQUOTE] = ACTIONS(2671), - [anon_sym_UR_DQUOTE] = ACTIONS(2671), - [anon_sym_u8R_DQUOTE] = ACTIONS(2671), - [anon_sym_co_await] = ACTIONS(2669), - [anon_sym_new] = ACTIONS(2669), - [anon_sym_requires] = ACTIONS(2669), - [sym_this] = ACTIONS(2669), + [972] = { + [sym_expression_statement] = STATE(2760), + [sym_expression] = STATE(4616), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8334), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_type_requirement] = STATE(979), + [sym_compound_requirement] = STATE(979), + [sym__requirement] = STATE(979), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_requirement_seq_repeat1] = STATE(979), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(4326), + [anon_sym___extension__] = ACTIONS(2167), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(4328), + [anon_sym_RBRACE] = ACTIONS(4360), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [anon_sym___alignof__] = ACTIONS(107), + [anon_sym___alignof] = ACTIONS(107), + [anon_sym__alignof] = ACTIONS(107), + [anon_sym_alignof] = ACTIONS(107), + [anon_sym__Alignof] = ACTIONS(107), + [anon_sym_offsetof] = ACTIONS(109), + [anon_sym__Generic] = ACTIONS(111), + [anon_sym_asm] = ACTIONS(113), + [anon_sym___asm__] = ACTIONS(113), + [anon_sym___asm] = ACTIONS(113), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(117), + [anon_sym_u_SQUOTE] = ACTIONS(117), + [anon_sym_U_SQUOTE] = ACTIONS(117), + [anon_sym_u8_SQUOTE] = ACTIONS(117), + [anon_sym_SQUOTE] = ACTIONS(117), + [anon_sym_L_DQUOTE] = ACTIONS(119), + [anon_sym_u_DQUOTE] = ACTIONS(119), + [anon_sym_U_DQUOTE] = ACTIONS(119), + [anon_sym_u8_DQUOTE] = ACTIONS(119), + [anon_sym_DQUOTE] = ACTIONS(119), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(123), + [anon_sym_nullptr] = ACTIONS(123), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_typename] = ACTIONS(4332), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(145), + [anon_sym_R_DQUOTE] = ACTIONS(159), + [anon_sym_LR_DQUOTE] = ACTIONS(159), + [anon_sym_uR_DQUOTE] = ACTIONS(159), + [anon_sym_UR_DQUOTE] = ACTIONS(159), + [anon_sym_u8R_DQUOTE] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), }, - [913] = { - [sym_identifier] = ACTIONS(2681), - [anon_sym_LPAREN2] = ACTIONS(2683), - [anon_sym_BANG] = ACTIONS(2683), - [anon_sym_TILDE] = ACTIONS(2683), - [anon_sym_DASH] = ACTIONS(2681), - [anon_sym_PLUS] = ACTIONS(2681), - [anon_sym_STAR] = ACTIONS(2683), - [anon_sym_AMP] = ACTIONS(2683), - [anon_sym_SEMI] = ACTIONS(2683), - [anon_sym___extension__] = ACTIONS(2681), - [anon_sym_typedef] = ACTIONS(2681), - [anon_sym_virtual] = ACTIONS(2681), - [anon_sym_extern] = ACTIONS(2681), - [anon_sym___attribute__] = ACTIONS(2681), - [anon_sym___attribute] = ACTIONS(2681), - [anon_sym_COLON_COLON] = ACTIONS(2683), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2683), - [anon_sym___declspec] = ACTIONS(2681), - [anon_sym_LBRACE] = ACTIONS(2683), - [anon_sym_signed] = ACTIONS(2681), - [anon_sym_unsigned] = ACTIONS(2681), - [anon_sym_long] = ACTIONS(2681), - [anon_sym_short] = ACTIONS(2681), - [anon_sym_LBRACK] = ACTIONS(2681), - [anon_sym_static] = ACTIONS(2681), - [anon_sym_register] = ACTIONS(2681), - [anon_sym_inline] = ACTIONS(2681), - [anon_sym___inline] = ACTIONS(2681), - [anon_sym___inline__] = ACTIONS(2681), - [anon_sym___forceinline] = ACTIONS(2681), - [anon_sym_thread_local] = ACTIONS(2681), - [anon_sym___thread] = ACTIONS(2681), - [anon_sym_const] = ACTIONS(2681), - [anon_sym_constexpr] = ACTIONS(2681), - [anon_sym_volatile] = ACTIONS(2681), - [anon_sym_restrict] = ACTIONS(2681), - [anon_sym___restrict__] = ACTIONS(2681), - [anon_sym__Atomic] = ACTIONS(2681), - [anon_sym__Noreturn] = ACTIONS(2681), - [anon_sym_noreturn] = ACTIONS(2681), - [anon_sym__Nonnull] = ACTIONS(2681), - [anon_sym_mutable] = ACTIONS(2681), - [anon_sym_constinit] = ACTIONS(2681), - [anon_sym_consteval] = ACTIONS(2681), - [anon_sym_alignas] = ACTIONS(2681), - [anon_sym__Alignas] = ACTIONS(2681), - [sym_primitive_type] = ACTIONS(2681), - [anon_sym_enum] = ACTIONS(2681), - [anon_sym_class] = ACTIONS(2681), - [anon_sym_struct] = ACTIONS(2681), - [anon_sym_union] = ACTIONS(2681), - [anon_sym_if] = ACTIONS(2681), - [anon_sym_else] = ACTIONS(2681), - [anon_sym_switch] = ACTIONS(2681), - [anon_sym_while] = ACTIONS(2681), - [anon_sym_do] = ACTIONS(2681), - [anon_sym_for] = ACTIONS(2681), - [anon_sym_return] = ACTIONS(2681), - [anon_sym_break] = ACTIONS(2681), - [anon_sym_continue] = ACTIONS(2681), - [anon_sym_goto] = ACTIONS(2681), - [anon_sym___try] = ACTIONS(2681), - [anon_sym___leave] = ACTIONS(2681), - [anon_sym_not] = ACTIONS(2681), - [anon_sym_compl] = ACTIONS(2681), - [anon_sym_DASH_DASH] = ACTIONS(2683), - [anon_sym_PLUS_PLUS] = ACTIONS(2683), - [anon_sym_sizeof] = ACTIONS(2681), - [anon_sym___alignof__] = ACTIONS(2681), - [anon_sym___alignof] = ACTIONS(2681), - [anon_sym__alignof] = ACTIONS(2681), - [anon_sym_alignof] = ACTIONS(2681), - [anon_sym__Alignof] = ACTIONS(2681), - [anon_sym_offsetof] = ACTIONS(2681), - [anon_sym__Generic] = ACTIONS(2681), - [anon_sym_asm] = ACTIONS(2681), - [anon_sym___asm__] = ACTIONS(2681), - [anon_sym___asm] = ACTIONS(2681), - [sym_number_literal] = ACTIONS(2683), - [anon_sym_L_SQUOTE] = ACTIONS(2683), - [anon_sym_u_SQUOTE] = ACTIONS(2683), - [anon_sym_U_SQUOTE] = ACTIONS(2683), - [anon_sym_u8_SQUOTE] = ACTIONS(2683), - [anon_sym_SQUOTE] = ACTIONS(2683), - [anon_sym_L_DQUOTE] = ACTIONS(2683), - [anon_sym_u_DQUOTE] = ACTIONS(2683), - [anon_sym_U_DQUOTE] = ACTIONS(2683), - [anon_sym_u8_DQUOTE] = ACTIONS(2683), - [anon_sym_DQUOTE] = ACTIONS(2683), - [sym_true] = ACTIONS(2681), - [sym_false] = ACTIONS(2681), - [anon_sym_NULL] = ACTIONS(2681), - [anon_sym_nullptr] = ACTIONS(2681), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2681), - [anon_sym_decltype] = ACTIONS(2681), - [anon_sym_typename] = ACTIONS(2681), - [anon_sym_template] = ACTIONS(2681), - [anon_sym_try] = ACTIONS(2681), - [anon_sym_delete] = ACTIONS(2681), - [anon_sym_throw] = ACTIONS(2681), - [anon_sym_co_return] = ACTIONS(2681), - [anon_sym_co_yield] = ACTIONS(2681), - [anon_sym_R_DQUOTE] = ACTIONS(2683), - [anon_sym_LR_DQUOTE] = ACTIONS(2683), - [anon_sym_uR_DQUOTE] = ACTIONS(2683), - [anon_sym_UR_DQUOTE] = ACTIONS(2683), - [anon_sym_u8R_DQUOTE] = ACTIONS(2683), - [anon_sym_co_await] = ACTIONS(2681), - [anon_sym_new] = ACTIONS(2681), - [anon_sym_requires] = ACTIONS(2681), - [sym_this] = ACTIONS(2681), + [973] = { + [sym_expression_statement] = STATE(2760), + [sym_expression] = STATE(4616), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8334), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_type_requirement] = STATE(979), + [sym_compound_requirement] = STATE(979), + [sym__requirement] = STATE(979), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_requirement_seq_repeat1] = STATE(979), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(4326), + [anon_sym___extension__] = ACTIONS(2167), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(4328), + [anon_sym_RBRACE] = ACTIONS(4362), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [anon_sym___alignof__] = ACTIONS(107), + [anon_sym___alignof] = ACTIONS(107), + [anon_sym__alignof] = ACTIONS(107), + [anon_sym_alignof] = ACTIONS(107), + [anon_sym__Alignof] = ACTIONS(107), + [anon_sym_offsetof] = ACTIONS(109), + [anon_sym__Generic] = ACTIONS(111), + [anon_sym_asm] = ACTIONS(113), + [anon_sym___asm__] = ACTIONS(113), + [anon_sym___asm] = ACTIONS(113), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(117), + [anon_sym_u_SQUOTE] = ACTIONS(117), + [anon_sym_U_SQUOTE] = ACTIONS(117), + [anon_sym_u8_SQUOTE] = ACTIONS(117), + [anon_sym_SQUOTE] = ACTIONS(117), + [anon_sym_L_DQUOTE] = ACTIONS(119), + [anon_sym_u_DQUOTE] = ACTIONS(119), + [anon_sym_U_DQUOTE] = ACTIONS(119), + [anon_sym_u8_DQUOTE] = ACTIONS(119), + [anon_sym_DQUOTE] = ACTIONS(119), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(123), + [anon_sym_nullptr] = ACTIONS(123), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_typename] = ACTIONS(4332), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(145), + [anon_sym_R_DQUOTE] = ACTIONS(159), + [anon_sym_LR_DQUOTE] = ACTIONS(159), + [anon_sym_uR_DQUOTE] = ACTIONS(159), + [anon_sym_UR_DQUOTE] = ACTIONS(159), + [anon_sym_u8R_DQUOTE] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), }, - [914] = { - [sym_identifier] = ACTIONS(2699), - [anon_sym_LPAREN2] = ACTIONS(2701), - [anon_sym_BANG] = ACTIONS(2701), - [anon_sym_TILDE] = ACTIONS(2701), - [anon_sym_DASH] = ACTIONS(2699), - [anon_sym_PLUS] = ACTIONS(2699), - [anon_sym_STAR] = ACTIONS(2701), - [anon_sym_AMP] = ACTIONS(2701), - [anon_sym_SEMI] = ACTIONS(2701), - [anon_sym___extension__] = ACTIONS(2699), - [anon_sym_typedef] = ACTIONS(2699), - [anon_sym_virtual] = ACTIONS(2699), - [anon_sym_extern] = ACTIONS(2699), - [anon_sym___attribute__] = ACTIONS(2699), - [anon_sym___attribute] = ACTIONS(2699), - [anon_sym_COLON_COLON] = ACTIONS(2701), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2701), - [anon_sym___declspec] = ACTIONS(2699), - [anon_sym_LBRACE] = ACTIONS(2701), - [anon_sym_signed] = ACTIONS(2699), - [anon_sym_unsigned] = ACTIONS(2699), - [anon_sym_long] = ACTIONS(2699), - [anon_sym_short] = ACTIONS(2699), - [anon_sym_LBRACK] = ACTIONS(2699), - [anon_sym_static] = ACTIONS(2699), - [anon_sym_register] = ACTIONS(2699), - [anon_sym_inline] = ACTIONS(2699), - [anon_sym___inline] = ACTIONS(2699), - [anon_sym___inline__] = ACTIONS(2699), - [anon_sym___forceinline] = ACTIONS(2699), - [anon_sym_thread_local] = ACTIONS(2699), - [anon_sym___thread] = ACTIONS(2699), - [anon_sym_const] = ACTIONS(2699), - [anon_sym_constexpr] = ACTIONS(2699), - [anon_sym_volatile] = ACTIONS(2699), - [anon_sym_restrict] = ACTIONS(2699), - [anon_sym___restrict__] = ACTIONS(2699), - [anon_sym__Atomic] = ACTIONS(2699), - [anon_sym__Noreturn] = ACTIONS(2699), - [anon_sym_noreturn] = ACTIONS(2699), - [anon_sym__Nonnull] = ACTIONS(2699), - [anon_sym_mutable] = ACTIONS(2699), - [anon_sym_constinit] = ACTIONS(2699), - [anon_sym_consteval] = ACTIONS(2699), - [anon_sym_alignas] = ACTIONS(2699), - [anon_sym__Alignas] = ACTIONS(2699), - [sym_primitive_type] = ACTIONS(2699), - [anon_sym_enum] = ACTIONS(2699), - [anon_sym_class] = ACTIONS(2699), - [anon_sym_struct] = ACTIONS(2699), - [anon_sym_union] = ACTIONS(2699), - [anon_sym_if] = ACTIONS(2699), - [anon_sym_else] = ACTIONS(2699), - [anon_sym_switch] = ACTIONS(2699), - [anon_sym_while] = ACTIONS(2699), - [anon_sym_do] = ACTIONS(2699), - [anon_sym_for] = ACTIONS(2699), - [anon_sym_return] = ACTIONS(2699), - [anon_sym_break] = ACTIONS(2699), - [anon_sym_continue] = ACTIONS(2699), - [anon_sym_goto] = ACTIONS(2699), - [anon_sym___try] = ACTIONS(2699), - [anon_sym___leave] = ACTIONS(2699), - [anon_sym_not] = ACTIONS(2699), - [anon_sym_compl] = ACTIONS(2699), - [anon_sym_DASH_DASH] = ACTIONS(2701), - [anon_sym_PLUS_PLUS] = ACTIONS(2701), - [anon_sym_sizeof] = ACTIONS(2699), - [anon_sym___alignof__] = ACTIONS(2699), - [anon_sym___alignof] = ACTIONS(2699), - [anon_sym__alignof] = ACTIONS(2699), - [anon_sym_alignof] = ACTIONS(2699), - [anon_sym__Alignof] = ACTIONS(2699), - [anon_sym_offsetof] = ACTIONS(2699), - [anon_sym__Generic] = ACTIONS(2699), - [anon_sym_asm] = ACTIONS(2699), - [anon_sym___asm__] = ACTIONS(2699), - [anon_sym___asm] = ACTIONS(2699), - [sym_number_literal] = ACTIONS(2701), - [anon_sym_L_SQUOTE] = ACTIONS(2701), - [anon_sym_u_SQUOTE] = ACTIONS(2701), - [anon_sym_U_SQUOTE] = ACTIONS(2701), - [anon_sym_u8_SQUOTE] = ACTIONS(2701), - [anon_sym_SQUOTE] = ACTIONS(2701), - [anon_sym_L_DQUOTE] = ACTIONS(2701), - [anon_sym_u_DQUOTE] = ACTIONS(2701), - [anon_sym_U_DQUOTE] = ACTIONS(2701), - [anon_sym_u8_DQUOTE] = ACTIONS(2701), - [anon_sym_DQUOTE] = ACTIONS(2701), - [sym_true] = ACTIONS(2699), - [sym_false] = ACTIONS(2699), - [anon_sym_NULL] = ACTIONS(2699), - [anon_sym_nullptr] = ACTIONS(2699), + [974] = { + [sym_expression_statement] = STATE(2760), + [sym_expression] = STATE(4616), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8334), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_type_requirement] = STATE(972), + [sym_compound_requirement] = STATE(972), + [sym__requirement] = STATE(972), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_requirement_seq_repeat1] = STATE(972), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(4326), + [anon_sym___extension__] = ACTIONS(2167), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(4328), + [anon_sym_RBRACE] = ACTIONS(4364), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [anon_sym___alignof__] = ACTIONS(107), + [anon_sym___alignof] = ACTIONS(107), + [anon_sym__alignof] = ACTIONS(107), + [anon_sym_alignof] = ACTIONS(107), + [anon_sym__Alignof] = ACTIONS(107), + [anon_sym_offsetof] = ACTIONS(109), + [anon_sym__Generic] = ACTIONS(111), + [anon_sym_asm] = ACTIONS(113), + [anon_sym___asm__] = ACTIONS(113), + [anon_sym___asm] = ACTIONS(113), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(117), + [anon_sym_u_SQUOTE] = ACTIONS(117), + [anon_sym_U_SQUOTE] = ACTIONS(117), + [anon_sym_u8_SQUOTE] = ACTIONS(117), + [anon_sym_SQUOTE] = ACTIONS(117), + [anon_sym_L_DQUOTE] = ACTIONS(119), + [anon_sym_u_DQUOTE] = ACTIONS(119), + [anon_sym_U_DQUOTE] = ACTIONS(119), + [anon_sym_u8_DQUOTE] = ACTIONS(119), + [anon_sym_DQUOTE] = ACTIONS(119), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(123), + [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2699), - [anon_sym_decltype] = ACTIONS(2699), - [anon_sym_typename] = ACTIONS(2699), - [anon_sym_template] = ACTIONS(2699), - [anon_sym_try] = ACTIONS(2699), - [anon_sym_delete] = ACTIONS(2699), - [anon_sym_throw] = ACTIONS(2699), - [anon_sym_co_return] = ACTIONS(2699), - [anon_sym_co_yield] = ACTIONS(2699), - [anon_sym_R_DQUOTE] = ACTIONS(2701), - [anon_sym_LR_DQUOTE] = ACTIONS(2701), - [anon_sym_uR_DQUOTE] = ACTIONS(2701), - [anon_sym_UR_DQUOTE] = ACTIONS(2701), - [anon_sym_u8R_DQUOTE] = ACTIONS(2701), - [anon_sym_co_await] = ACTIONS(2699), - [anon_sym_new] = ACTIONS(2699), - [anon_sym_requires] = ACTIONS(2699), - [sym_this] = ACTIONS(2699), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_typename] = ACTIONS(4332), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(145), + [anon_sym_R_DQUOTE] = ACTIONS(159), + [anon_sym_LR_DQUOTE] = ACTIONS(159), + [anon_sym_uR_DQUOTE] = ACTIONS(159), + [anon_sym_UR_DQUOTE] = ACTIONS(159), + [anon_sym_u8R_DQUOTE] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), }, - [915] = { - [sym_identifier] = ACTIONS(2651), - [anon_sym_LPAREN2] = ACTIONS(2653), - [anon_sym_BANG] = ACTIONS(2653), - [anon_sym_TILDE] = ACTIONS(2653), - [anon_sym_DASH] = ACTIONS(2651), - [anon_sym_PLUS] = ACTIONS(2651), - [anon_sym_STAR] = ACTIONS(2653), - [anon_sym_AMP] = ACTIONS(2653), - [anon_sym_SEMI] = ACTIONS(2653), - [anon_sym___extension__] = ACTIONS(2651), - [anon_sym_typedef] = ACTIONS(2651), - [anon_sym_virtual] = ACTIONS(2651), - [anon_sym_extern] = ACTIONS(2651), - [anon_sym___attribute__] = ACTIONS(2651), - [anon_sym___attribute] = ACTIONS(2651), - [anon_sym_COLON_COLON] = ACTIONS(2653), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2653), - [anon_sym___declspec] = ACTIONS(2651), - [anon_sym_LBRACE] = ACTIONS(2653), - [anon_sym_signed] = ACTIONS(2651), - [anon_sym_unsigned] = ACTIONS(2651), - [anon_sym_long] = ACTIONS(2651), - [anon_sym_short] = ACTIONS(2651), - [anon_sym_LBRACK] = ACTIONS(2651), - [anon_sym_static] = ACTIONS(2651), - [anon_sym_register] = ACTIONS(2651), - [anon_sym_inline] = ACTIONS(2651), - [anon_sym___inline] = ACTIONS(2651), - [anon_sym___inline__] = ACTIONS(2651), - [anon_sym___forceinline] = ACTIONS(2651), - [anon_sym_thread_local] = ACTIONS(2651), - [anon_sym___thread] = ACTIONS(2651), - [anon_sym_const] = ACTIONS(2651), - [anon_sym_constexpr] = ACTIONS(2651), - [anon_sym_volatile] = ACTIONS(2651), - [anon_sym_restrict] = ACTIONS(2651), - [anon_sym___restrict__] = ACTIONS(2651), - [anon_sym__Atomic] = ACTIONS(2651), - [anon_sym__Noreturn] = ACTIONS(2651), - [anon_sym_noreturn] = ACTIONS(2651), - [anon_sym__Nonnull] = ACTIONS(2651), - [anon_sym_mutable] = ACTIONS(2651), - [anon_sym_constinit] = ACTIONS(2651), - [anon_sym_consteval] = ACTIONS(2651), - [anon_sym_alignas] = ACTIONS(2651), - [anon_sym__Alignas] = ACTIONS(2651), - [sym_primitive_type] = ACTIONS(2651), - [anon_sym_enum] = ACTIONS(2651), - [anon_sym_class] = ACTIONS(2651), - [anon_sym_struct] = ACTIONS(2651), - [anon_sym_union] = ACTIONS(2651), - [anon_sym_if] = ACTIONS(2651), - [anon_sym_else] = ACTIONS(2651), - [anon_sym_switch] = ACTIONS(2651), - [anon_sym_while] = ACTIONS(2651), - [anon_sym_do] = ACTIONS(2651), - [anon_sym_for] = ACTIONS(2651), - [anon_sym_return] = ACTIONS(2651), - [anon_sym_break] = ACTIONS(2651), - [anon_sym_continue] = ACTIONS(2651), - [anon_sym_goto] = ACTIONS(2651), - [anon_sym___try] = ACTIONS(2651), - [anon_sym___leave] = ACTIONS(2651), - [anon_sym_not] = ACTIONS(2651), - [anon_sym_compl] = ACTIONS(2651), - [anon_sym_DASH_DASH] = ACTIONS(2653), - [anon_sym_PLUS_PLUS] = ACTIONS(2653), - [anon_sym_sizeof] = ACTIONS(2651), - [anon_sym___alignof__] = ACTIONS(2651), - [anon_sym___alignof] = ACTIONS(2651), - [anon_sym__alignof] = ACTIONS(2651), - [anon_sym_alignof] = ACTIONS(2651), - [anon_sym__Alignof] = ACTIONS(2651), - [anon_sym_offsetof] = ACTIONS(2651), - [anon_sym__Generic] = ACTIONS(2651), - [anon_sym_asm] = ACTIONS(2651), - [anon_sym___asm__] = ACTIONS(2651), - [anon_sym___asm] = ACTIONS(2651), - [sym_number_literal] = ACTIONS(2653), - [anon_sym_L_SQUOTE] = ACTIONS(2653), - [anon_sym_u_SQUOTE] = ACTIONS(2653), - [anon_sym_U_SQUOTE] = ACTIONS(2653), - [anon_sym_u8_SQUOTE] = ACTIONS(2653), - [anon_sym_SQUOTE] = ACTIONS(2653), - [anon_sym_L_DQUOTE] = ACTIONS(2653), - [anon_sym_u_DQUOTE] = ACTIONS(2653), - [anon_sym_U_DQUOTE] = ACTIONS(2653), - [anon_sym_u8_DQUOTE] = ACTIONS(2653), - [anon_sym_DQUOTE] = ACTIONS(2653), - [sym_true] = ACTIONS(2651), - [sym_false] = ACTIONS(2651), - [anon_sym_NULL] = ACTIONS(2651), - [anon_sym_nullptr] = ACTIONS(2651), + [975] = { + [sym_expression] = STATE(4610), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3597), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3597), + [sym_call_expression] = STATE(3597), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3597), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3597), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3597), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3597), + [sym_identifier] = ACTIONS(3857), + [anon_sym_LPAREN2] = ACTIONS(4322), + [anon_sym_BANG] = ACTIONS(3861), + [anon_sym_TILDE] = ACTIONS(3861), + [anon_sym_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3859), + [anon_sym_STAR] = ACTIONS(4366), + [anon_sym_AMP] = ACTIONS(4366), + [anon_sym_LT] = ACTIONS(4322), + [anon_sym___extension__] = ACTIONS(3863), + [anon_sym_COLON_COLON] = ACTIONS(3865), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4322), + [anon_sym_LBRACE] = ACTIONS(4322), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_static] = ACTIONS(4324), + [anon_sym_constexpr] = ACTIONS(4324), + [anon_sym_mutable] = ACTIONS(4324), + [anon_sym_consteval] = ACTIONS(4324), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3859), + [anon_sym_compl] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(4368), + [anon_sym_PLUS_PLUS] = ACTIONS(4368), + [anon_sym_sizeof] = ACTIONS(3867), + [anon_sym___alignof__] = ACTIONS(107), + [anon_sym___alignof] = ACTIONS(107), + [anon_sym__alignof] = ACTIONS(107), + [anon_sym_alignof] = ACTIONS(107), + [anon_sym__Alignof] = ACTIONS(107), + [anon_sym_offsetof] = ACTIONS(109), + [anon_sym__Generic] = ACTIONS(111), + [anon_sym_asm] = ACTIONS(113), + [anon_sym___asm__] = ACTIONS(113), + [anon_sym___asm] = ACTIONS(113), + [anon_sym_DASH_GT] = ACTIONS(4322), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(117), + [anon_sym_u_SQUOTE] = ACTIONS(117), + [anon_sym_U_SQUOTE] = ACTIONS(117), + [anon_sym_u8_SQUOTE] = ACTIONS(117), + [anon_sym_SQUOTE] = ACTIONS(117), + [anon_sym_L_DQUOTE] = ACTIONS(119), + [anon_sym_u_DQUOTE] = ACTIONS(119), + [anon_sym_U_DQUOTE] = ACTIONS(119), + [anon_sym_u8_DQUOTE] = ACTIONS(119), + [anon_sym_DQUOTE] = ACTIONS(119), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(123), + [anon_sym_nullptr] = ACTIONS(123), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3869), + [anon_sym_noexcept] = ACTIONS(4324), + [anon_sym_throw] = ACTIONS(4324), + [anon_sym_R_DQUOTE] = ACTIONS(159), + [anon_sym_LR_DQUOTE] = ACTIONS(159), + [anon_sym_uR_DQUOTE] = ACTIONS(159), + [anon_sym_UR_DQUOTE] = ACTIONS(159), + [anon_sym_u8R_DQUOTE] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(3871), + [anon_sym_new] = ACTIONS(3873), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), + }, + [976] = { + [sym_expression] = STATE(4624), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3597), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3597), + [sym_call_expression] = STATE(3597), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3597), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3597), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3597), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3597), + [sym_identifier] = ACTIONS(3857), + [anon_sym_LPAREN2] = ACTIONS(4322), + [anon_sym_BANG] = ACTIONS(3861), + [anon_sym_TILDE] = ACTIONS(3861), + [anon_sym_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3859), + [anon_sym_STAR] = ACTIONS(4366), + [anon_sym_AMP] = ACTIONS(4366), + [anon_sym_LT] = ACTIONS(4322), + [anon_sym___extension__] = ACTIONS(3863), + [anon_sym_COLON_COLON] = ACTIONS(3865), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4322), + [anon_sym_LBRACE] = ACTIONS(4322), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_static] = ACTIONS(4324), + [anon_sym_constexpr] = ACTIONS(4324), + [anon_sym_mutable] = ACTIONS(4324), + [anon_sym_consteval] = ACTIONS(4324), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3859), + [anon_sym_compl] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(4368), + [anon_sym_PLUS_PLUS] = ACTIONS(4368), + [anon_sym_sizeof] = ACTIONS(3867), + [anon_sym___alignof__] = ACTIONS(107), + [anon_sym___alignof] = ACTIONS(107), + [anon_sym__alignof] = ACTIONS(107), + [anon_sym_alignof] = ACTIONS(107), + [anon_sym__Alignof] = ACTIONS(107), + [anon_sym_offsetof] = ACTIONS(109), + [anon_sym__Generic] = ACTIONS(111), + [anon_sym_asm] = ACTIONS(113), + [anon_sym___asm__] = ACTIONS(113), + [anon_sym___asm] = ACTIONS(113), + [anon_sym_DASH_GT] = ACTIONS(4322), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(117), + [anon_sym_u_SQUOTE] = ACTIONS(117), + [anon_sym_U_SQUOTE] = ACTIONS(117), + [anon_sym_u8_SQUOTE] = ACTIONS(117), + [anon_sym_SQUOTE] = ACTIONS(117), + [anon_sym_L_DQUOTE] = ACTIONS(119), + [anon_sym_u_DQUOTE] = ACTIONS(119), + [anon_sym_U_DQUOTE] = ACTIONS(119), + [anon_sym_u8_DQUOTE] = ACTIONS(119), + [anon_sym_DQUOTE] = ACTIONS(119), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(123), + [anon_sym_nullptr] = ACTIONS(123), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3869), + [anon_sym_noexcept] = ACTIONS(4324), + [anon_sym_throw] = ACTIONS(4324), + [anon_sym_R_DQUOTE] = ACTIONS(159), + [anon_sym_LR_DQUOTE] = ACTIONS(159), + [anon_sym_uR_DQUOTE] = ACTIONS(159), + [anon_sym_UR_DQUOTE] = ACTIONS(159), + [anon_sym_u8R_DQUOTE] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(3871), + [anon_sym_new] = ACTIONS(3873), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), + }, + [977] = { + [sym_expression] = STATE(4393), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_initializer_list] = STATE(7491), + [sym_initializer_pair] = STATE(7491), + [sym_subscript_designator] = STATE(6849), + [sym_subscript_range_designator] = STATE(6849), + [sym_field_designator] = STATE(6849), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_initializer_pair_repeat1] = STATE(6849), + [sym_identifier] = ACTIONS(4370), + [anon_sym_COMMA] = ACTIONS(4372), + [anon_sym_LPAREN2] = ACTIONS(1252), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(3623), + [anon_sym_RBRACE] = ACTIONS(4374), + [anon_sym_LBRACK] = ACTIONS(4376), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [anon_sym___alignof__] = ACTIONS(107), + [anon_sym___alignof] = ACTIONS(107), + [anon_sym__alignof] = ACTIONS(107), + [anon_sym_alignof] = ACTIONS(107), + [anon_sym__Alignof] = ACTIONS(107), + [anon_sym_offsetof] = ACTIONS(109), + [anon_sym__Generic] = ACTIONS(111), + [anon_sym_asm] = ACTIONS(113), + [anon_sym___asm__] = ACTIONS(113), + [anon_sym___asm] = ACTIONS(113), + [anon_sym_DOT] = ACTIONS(225), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(117), + [anon_sym_u_SQUOTE] = ACTIONS(117), + [anon_sym_U_SQUOTE] = ACTIONS(117), + [anon_sym_u8_SQUOTE] = ACTIONS(117), + [anon_sym_SQUOTE] = ACTIONS(117), + [anon_sym_L_DQUOTE] = ACTIONS(119), + [anon_sym_u_DQUOTE] = ACTIONS(119), + [anon_sym_U_DQUOTE] = ACTIONS(119), + [anon_sym_u8_DQUOTE] = ACTIONS(119), + [anon_sym_DQUOTE] = ACTIONS(119), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(123), + [anon_sym_nullptr] = ACTIONS(123), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(145), + [anon_sym_R_DQUOTE] = ACTIONS(159), + [anon_sym_LR_DQUOTE] = ACTIONS(159), + [anon_sym_uR_DQUOTE] = ACTIONS(159), + [anon_sym_UR_DQUOTE] = ACTIONS(159), + [anon_sym_u8R_DQUOTE] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), + }, + [978] = { + [sym_expression] = STATE(4392), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_initializer_list] = STATE(7283), + [sym_initializer_pair] = STATE(7283), + [sym_subscript_designator] = STATE(6849), + [sym_subscript_range_designator] = STATE(6849), + [sym_field_designator] = STATE(6849), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_initializer_pair_repeat1] = STATE(6849), + [sym_identifier] = ACTIONS(4370), + [anon_sym_COMMA] = ACTIONS(4378), + [anon_sym_LPAREN2] = ACTIONS(1252), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(3623), + [anon_sym_RBRACE] = ACTIONS(4380), + [anon_sym_LBRACK] = ACTIONS(4376), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [anon_sym___alignof__] = ACTIONS(107), + [anon_sym___alignof] = ACTIONS(107), + [anon_sym__alignof] = ACTIONS(107), + [anon_sym_alignof] = ACTIONS(107), + [anon_sym__Alignof] = ACTIONS(107), + [anon_sym_offsetof] = ACTIONS(109), + [anon_sym__Generic] = ACTIONS(111), + [anon_sym_asm] = ACTIONS(113), + [anon_sym___asm__] = ACTIONS(113), + [anon_sym___asm] = ACTIONS(113), + [anon_sym_DOT] = ACTIONS(225), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(117), + [anon_sym_u_SQUOTE] = ACTIONS(117), + [anon_sym_U_SQUOTE] = ACTIONS(117), + [anon_sym_u8_SQUOTE] = ACTIONS(117), + [anon_sym_SQUOTE] = ACTIONS(117), + [anon_sym_L_DQUOTE] = ACTIONS(119), + [anon_sym_u_DQUOTE] = ACTIONS(119), + [anon_sym_U_DQUOTE] = ACTIONS(119), + [anon_sym_u8_DQUOTE] = ACTIONS(119), + [anon_sym_DQUOTE] = ACTIONS(119), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(123), + [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2651), - [anon_sym_decltype] = ACTIONS(2651), - [anon_sym_typename] = ACTIONS(2651), - [anon_sym_template] = ACTIONS(2651), - [anon_sym_try] = ACTIONS(2651), - [anon_sym_delete] = ACTIONS(2651), - [anon_sym_throw] = ACTIONS(2651), - [anon_sym_co_return] = ACTIONS(2651), - [anon_sym_co_yield] = ACTIONS(2651), - [anon_sym_R_DQUOTE] = ACTIONS(2653), - [anon_sym_LR_DQUOTE] = ACTIONS(2653), - [anon_sym_uR_DQUOTE] = ACTIONS(2653), - [anon_sym_UR_DQUOTE] = ACTIONS(2653), - [anon_sym_u8R_DQUOTE] = ACTIONS(2653), - [anon_sym_co_await] = ACTIONS(2651), - [anon_sym_new] = ACTIONS(2651), - [anon_sym_requires] = ACTIONS(2651), - [sym_this] = ACTIONS(2651), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(145), + [anon_sym_R_DQUOTE] = ACTIONS(159), + [anon_sym_LR_DQUOTE] = ACTIONS(159), + [anon_sym_uR_DQUOTE] = ACTIONS(159), + [anon_sym_UR_DQUOTE] = ACTIONS(159), + [anon_sym_u8R_DQUOTE] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), }, - [916] = { - [sym_identifier] = ACTIONS(2727), - [anon_sym_LPAREN2] = ACTIONS(2729), - [anon_sym_BANG] = ACTIONS(2729), - [anon_sym_TILDE] = ACTIONS(2729), - [anon_sym_DASH] = ACTIONS(2727), - [anon_sym_PLUS] = ACTIONS(2727), - [anon_sym_STAR] = ACTIONS(2729), - [anon_sym_AMP] = ACTIONS(2729), - [anon_sym_SEMI] = ACTIONS(2729), - [anon_sym___extension__] = ACTIONS(2727), - [anon_sym_typedef] = ACTIONS(2727), - [anon_sym_virtual] = ACTIONS(2727), - [anon_sym_extern] = ACTIONS(2727), - [anon_sym___attribute__] = ACTIONS(2727), - [anon_sym___attribute] = ACTIONS(2727), - [anon_sym_COLON_COLON] = ACTIONS(2729), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2729), - [anon_sym___declspec] = ACTIONS(2727), - [anon_sym_LBRACE] = ACTIONS(2729), - [anon_sym_signed] = ACTIONS(2727), - [anon_sym_unsigned] = ACTIONS(2727), - [anon_sym_long] = ACTIONS(2727), - [anon_sym_short] = ACTIONS(2727), - [anon_sym_LBRACK] = ACTIONS(2727), - [anon_sym_static] = ACTIONS(2727), - [anon_sym_register] = ACTIONS(2727), - [anon_sym_inline] = ACTIONS(2727), - [anon_sym___inline] = ACTIONS(2727), - [anon_sym___inline__] = ACTIONS(2727), - [anon_sym___forceinline] = ACTIONS(2727), - [anon_sym_thread_local] = ACTIONS(2727), - [anon_sym___thread] = ACTIONS(2727), - [anon_sym_const] = ACTIONS(2727), - [anon_sym_constexpr] = ACTIONS(2727), - [anon_sym_volatile] = ACTIONS(2727), - [anon_sym_restrict] = ACTIONS(2727), - [anon_sym___restrict__] = ACTIONS(2727), - [anon_sym__Atomic] = ACTIONS(2727), - [anon_sym__Noreturn] = ACTIONS(2727), - [anon_sym_noreturn] = ACTIONS(2727), - [anon_sym__Nonnull] = ACTIONS(2727), - [anon_sym_mutable] = ACTIONS(2727), - [anon_sym_constinit] = ACTIONS(2727), - [anon_sym_consteval] = ACTIONS(2727), - [anon_sym_alignas] = ACTIONS(2727), - [anon_sym__Alignas] = ACTIONS(2727), - [sym_primitive_type] = ACTIONS(2727), - [anon_sym_enum] = ACTIONS(2727), - [anon_sym_class] = ACTIONS(2727), - [anon_sym_struct] = ACTIONS(2727), - [anon_sym_union] = ACTIONS(2727), - [anon_sym_if] = ACTIONS(2727), - [anon_sym_else] = ACTIONS(2727), - [anon_sym_switch] = ACTIONS(2727), - [anon_sym_while] = ACTIONS(2727), - [anon_sym_do] = ACTIONS(2727), - [anon_sym_for] = ACTIONS(2727), - [anon_sym_return] = ACTIONS(2727), - [anon_sym_break] = ACTIONS(2727), - [anon_sym_continue] = ACTIONS(2727), - [anon_sym_goto] = ACTIONS(2727), - [anon_sym___try] = ACTIONS(2727), - [anon_sym___leave] = ACTIONS(2727), - [anon_sym_not] = ACTIONS(2727), - [anon_sym_compl] = ACTIONS(2727), - [anon_sym_DASH_DASH] = ACTIONS(2729), - [anon_sym_PLUS_PLUS] = ACTIONS(2729), - [anon_sym_sizeof] = ACTIONS(2727), - [anon_sym___alignof__] = ACTIONS(2727), - [anon_sym___alignof] = ACTIONS(2727), - [anon_sym__alignof] = ACTIONS(2727), - [anon_sym_alignof] = ACTIONS(2727), - [anon_sym__Alignof] = ACTIONS(2727), - [anon_sym_offsetof] = ACTIONS(2727), - [anon_sym__Generic] = ACTIONS(2727), - [anon_sym_asm] = ACTIONS(2727), - [anon_sym___asm__] = ACTIONS(2727), - [anon_sym___asm] = ACTIONS(2727), - [sym_number_literal] = ACTIONS(2729), - [anon_sym_L_SQUOTE] = ACTIONS(2729), - [anon_sym_u_SQUOTE] = ACTIONS(2729), - [anon_sym_U_SQUOTE] = ACTIONS(2729), - [anon_sym_u8_SQUOTE] = ACTIONS(2729), - [anon_sym_SQUOTE] = ACTIONS(2729), - [anon_sym_L_DQUOTE] = ACTIONS(2729), - [anon_sym_u_DQUOTE] = ACTIONS(2729), - [anon_sym_U_DQUOTE] = ACTIONS(2729), - [anon_sym_u8_DQUOTE] = ACTIONS(2729), - [anon_sym_DQUOTE] = ACTIONS(2729), - [sym_true] = ACTIONS(2727), - [sym_false] = ACTIONS(2727), - [anon_sym_NULL] = ACTIONS(2727), - [anon_sym_nullptr] = ACTIONS(2727), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2727), - [anon_sym_decltype] = ACTIONS(2727), - [anon_sym_typename] = ACTIONS(2727), - [anon_sym_template] = ACTIONS(2727), - [anon_sym_try] = ACTIONS(2727), - [anon_sym_delete] = ACTIONS(2727), - [anon_sym_throw] = ACTIONS(2727), - [anon_sym_co_return] = ACTIONS(2727), - [anon_sym_co_yield] = ACTIONS(2727), - [anon_sym_R_DQUOTE] = ACTIONS(2729), - [anon_sym_LR_DQUOTE] = ACTIONS(2729), - [anon_sym_uR_DQUOTE] = ACTIONS(2729), - [anon_sym_UR_DQUOTE] = ACTIONS(2729), - [anon_sym_u8R_DQUOTE] = ACTIONS(2729), - [anon_sym_co_await] = ACTIONS(2727), - [anon_sym_new] = ACTIONS(2727), - [anon_sym_requires] = ACTIONS(2727), - [sym_this] = ACTIONS(2727), + [979] = { + [sym_expression_statement] = STATE(2760), + [sym_expression] = STATE(4616), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8334), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_type_requirement] = STATE(979), + [sym_compound_requirement] = STATE(979), + [sym__requirement] = STATE(979), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_requirement_seq_repeat1] = STATE(979), + [sym_identifier] = ACTIONS(4382), + [anon_sym_LPAREN2] = ACTIONS(4385), + [anon_sym_BANG] = ACTIONS(4388), + [anon_sym_TILDE] = ACTIONS(4388), + [anon_sym_DASH] = ACTIONS(4391), + [anon_sym_PLUS] = ACTIONS(4391), + [anon_sym_STAR] = ACTIONS(4394), + [anon_sym_AMP] = ACTIONS(4394), + [anon_sym_SEMI] = ACTIONS(4397), + [anon_sym___extension__] = ACTIONS(4400), + [anon_sym_COLON_COLON] = ACTIONS(4403), + [anon_sym_LBRACE] = ACTIONS(4406), + [anon_sym_RBRACE] = ACTIONS(4409), + [anon_sym_LBRACK] = ACTIONS(4411), + [sym_primitive_type] = ACTIONS(4414), + [anon_sym_not] = ACTIONS(4391), + [anon_sym_compl] = ACTIONS(4391), + [anon_sym_DASH_DASH] = ACTIONS(4417), + [anon_sym_PLUS_PLUS] = ACTIONS(4417), + [anon_sym_sizeof] = ACTIONS(4420), + [anon_sym___alignof__] = ACTIONS(4423), + [anon_sym___alignof] = ACTIONS(4423), + [anon_sym__alignof] = ACTIONS(4423), + [anon_sym_alignof] = ACTIONS(4423), + [anon_sym__Alignof] = ACTIONS(4423), + [anon_sym_offsetof] = ACTIONS(4426), + [anon_sym__Generic] = ACTIONS(4429), + [anon_sym_asm] = ACTIONS(4432), + [anon_sym___asm__] = ACTIONS(4432), + [anon_sym___asm] = ACTIONS(4432), + [sym_number_literal] = ACTIONS(4435), + [anon_sym_L_SQUOTE] = ACTIONS(4438), + [anon_sym_u_SQUOTE] = ACTIONS(4438), + [anon_sym_U_SQUOTE] = ACTIONS(4438), + [anon_sym_u8_SQUOTE] = ACTIONS(4438), + [anon_sym_SQUOTE] = ACTIONS(4438), + [anon_sym_L_DQUOTE] = ACTIONS(4441), + [anon_sym_u_DQUOTE] = ACTIONS(4441), + [anon_sym_U_DQUOTE] = ACTIONS(4441), + [anon_sym_u8_DQUOTE] = ACTIONS(4441), + [anon_sym_DQUOTE] = ACTIONS(4441), + [sym_true] = ACTIONS(4444), + [sym_false] = ACTIONS(4444), + [anon_sym_NULL] = ACTIONS(4447), + [anon_sym_nullptr] = ACTIONS(4447), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(4450), + [anon_sym_typename] = ACTIONS(4453), + [anon_sym_template] = ACTIONS(4456), + [anon_sym_delete] = ACTIONS(4459), + [anon_sym_R_DQUOTE] = ACTIONS(4462), + [anon_sym_LR_DQUOTE] = ACTIONS(4462), + [anon_sym_uR_DQUOTE] = ACTIONS(4462), + [anon_sym_UR_DQUOTE] = ACTIONS(4462), + [anon_sym_u8R_DQUOTE] = ACTIONS(4462), + [anon_sym_co_await] = ACTIONS(4465), + [anon_sym_new] = ACTIONS(4468), + [anon_sym_requires] = ACTIONS(4471), + [sym_this] = ACTIONS(4444), }, - [917] = { - [sym_identifier] = ACTIONS(2691), - [anon_sym_LPAREN2] = ACTIONS(2693), - [anon_sym_BANG] = ACTIONS(2693), - [anon_sym_TILDE] = ACTIONS(2693), - [anon_sym_DASH] = ACTIONS(2691), - [anon_sym_PLUS] = ACTIONS(2691), - [anon_sym_STAR] = ACTIONS(2693), - [anon_sym_AMP] = ACTIONS(2693), - [anon_sym_SEMI] = ACTIONS(2693), - [anon_sym___extension__] = ACTIONS(2691), - [anon_sym_typedef] = ACTIONS(2691), - [anon_sym_virtual] = ACTIONS(2691), - [anon_sym_extern] = ACTIONS(2691), - [anon_sym___attribute__] = ACTIONS(2691), - [anon_sym___attribute] = ACTIONS(2691), - [anon_sym_COLON_COLON] = ACTIONS(2693), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2693), - [anon_sym___declspec] = ACTIONS(2691), - [anon_sym_LBRACE] = ACTIONS(2693), - [anon_sym_signed] = ACTIONS(2691), - [anon_sym_unsigned] = ACTIONS(2691), - [anon_sym_long] = ACTIONS(2691), - [anon_sym_short] = ACTIONS(2691), - [anon_sym_LBRACK] = ACTIONS(2691), - [anon_sym_static] = ACTIONS(2691), - [anon_sym_register] = ACTIONS(2691), - [anon_sym_inline] = ACTIONS(2691), - [anon_sym___inline] = ACTIONS(2691), - [anon_sym___inline__] = ACTIONS(2691), - [anon_sym___forceinline] = ACTIONS(2691), - [anon_sym_thread_local] = ACTIONS(2691), - [anon_sym___thread] = ACTIONS(2691), - [anon_sym_const] = ACTIONS(2691), - [anon_sym_constexpr] = ACTIONS(2691), - [anon_sym_volatile] = ACTIONS(2691), - [anon_sym_restrict] = ACTIONS(2691), - [anon_sym___restrict__] = ACTIONS(2691), - [anon_sym__Atomic] = ACTIONS(2691), - [anon_sym__Noreturn] = ACTIONS(2691), - [anon_sym_noreturn] = ACTIONS(2691), - [anon_sym__Nonnull] = ACTIONS(2691), - [anon_sym_mutable] = ACTIONS(2691), - [anon_sym_constinit] = ACTIONS(2691), - [anon_sym_consteval] = ACTIONS(2691), - [anon_sym_alignas] = ACTIONS(2691), - [anon_sym__Alignas] = ACTIONS(2691), - [sym_primitive_type] = ACTIONS(2691), - [anon_sym_enum] = ACTIONS(2691), - [anon_sym_class] = ACTIONS(2691), - [anon_sym_struct] = ACTIONS(2691), - [anon_sym_union] = ACTIONS(2691), - [anon_sym_if] = ACTIONS(2691), - [anon_sym_else] = ACTIONS(2691), - [anon_sym_switch] = ACTIONS(2691), - [anon_sym_while] = ACTIONS(2691), - [anon_sym_do] = ACTIONS(2691), - [anon_sym_for] = ACTIONS(2691), - [anon_sym_return] = ACTIONS(2691), - [anon_sym_break] = ACTIONS(2691), - [anon_sym_continue] = ACTIONS(2691), - [anon_sym_goto] = ACTIONS(2691), - [anon_sym___try] = ACTIONS(2691), - [anon_sym___leave] = ACTIONS(2691), - [anon_sym_not] = ACTIONS(2691), - [anon_sym_compl] = ACTIONS(2691), - [anon_sym_DASH_DASH] = ACTIONS(2693), - [anon_sym_PLUS_PLUS] = ACTIONS(2693), - [anon_sym_sizeof] = ACTIONS(2691), - [anon_sym___alignof__] = ACTIONS(2691), - [anon_sym___alignof] = ACTIONS(2691), - [anon_sym__alignof] = ACTIONS(2691), - [anon_sym_alignof] = ACTIONS(2691), - [anon_sym__Alignof] = ACTIONS(2691), - [anon_sym_offsetof] = ACTIONS(2691), - [anon_sym__Generic] = ACTIONS(2691), - [anon_sym_asm] = ACTIONS(2691), - [anon_sym___asm__] = ACTIONS(2691), - [anon_sym___asm] = ACTIONS(2691), - [sym_number_literal] = ACTIONS(2693), - [anon_sym_L_SQUOTE] = ACTIONS(2693), - [anon_sym_u_SQUOTE] = ACTIONS(2693), - [anon_sym_U_SQUOTE] = ACTIONS(2693), - [anon_sym_u8_SQUOTE] = ACTIONS(2693), - [anon_sym_SQUOTE] = ACTIONS(2693), - [anon_sym_L_DQUOTE] = ACTIONS(2693), - [anon_sym_u_DQUOTE] = ACTIONS(2693), - [anon_sym_U_DQUOTE] = ACTIONS(2693), - [anon_sym_u8_DQUOTE] = ACTIONS(2693), - [anon_sym_DQUOTE] = ACTIONS(2693), - [sym_true] = ACTIONS(2691), - [sym_false] = ACTIONS(2691), - [anon_sym_NULL] = ACTIONS(2691), - [anon_sym_nullptr] = ACTIONS(2691), + [980] = { + [sym_expression] = STATE(4203), + [sym__string] = STATE(4269), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(2921), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(2921), + [sym_call_expression] = STATE(2921), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(2921), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(2921), + [sym_char_literal] = STATE(4269), + [sym_concatenated_string] = STATE(4269), + [sym_string_literal] = STATE(3102), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3102), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2921), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(2921), + [sym_identifier] = ACTIONS(4356), + [anon_sym_LPAREN2] = ACTIONS(4322), + [anon_sym_BANG] = ACTIONS(3617), + [anon_sym_TILDE] = ACTIONS(3617), + [anon_sym_DASH] = ACTIONS(3615), + [anon_sym_PLUS] = ACTIONS(3615), + [anon_sym_STAR] = ACTIONS(4346), + [anon_sym_AMP] = ACTIONS(4346), + [anon_sym_LT] = ACTIONS(4322), + [anon_sym___extension__] = ACTIONS(3619), + [anon_sym_COLON_COLON] = ACTIONS(3621), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4322), + [anon_sym_LBRACE] = ACTIONS(4322), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_static] = ACTIONS(4324), + [anon_sym_constexpr] = ACTIONS(4324), + [anon_sym_mutable] = ACTIONS(4324), + [anon_sym_consteval] = ACTIONS(4324), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3615), + [anon_sym_compl] = ACTIONS(3615), + [anon_sym_DASH_DASH] = ACTIONS(4358), + [anon_sym_PLUS_PLUS] = ACTIONS(4358), + [anon_sym_sizeof] = ACTIONS(3625), + [anon_sym___alignof__] = ACTIONS(107), + [anon_sym___alignof] = ACTIONS(107), + [anon_sym__alignof] = ACTIONS(107), + [anon_sym_alignof] = ACTIONS(107), + [anon_sym__Alignof] = ACTIONS(107), + [anon_sym_offsetof] = ACTIONS(109), + [anon_sym__Generic] = ACTIONS(111), + [anon_sym_asm] = ACTIONS(113), + [anon_sym___asm__] = ACTIONS(113), + [anon_sym___asm] = ACTIONS(113), + [anon_sym_DASH_GT] = ACTIONS(4322), + [sym_number_literal] = ACTIONS(3627), + [anon_sym_L_SQUOTE] = ACTIONS(3629), + [anon_sym_u_SQUOTE] = ACTIONS(3629), + [anon_sym_U_SQUOTE] = ACTIONS(3629), + [anon_sym_u8_SQUOTE] = ACTIONS(3629), + [anon_sym_SQUOTE] = ACTIONS(3629), + [anon_sym_L_DQUOTE] = ACTIONS(3631), + [anon_sym_u_DQUOTE] = ACTIONS(3631), + [anon_sym_U_DQUOTE] = ACTIONS(3631), + [anon_sym_u8_DQUOTE] = ACTIONS(3631), + [anon_sym_DQUOTE] = ACTIONS(3631), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(123), + [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2691), - [anon_sym_decltype] = ACTIONS(2691), - [anon_sym_typename] = ACTIONS(2691), - [anon_sym_template] = ACTIONS(2691), - [anon_sym_try] = ACTIONS(2691), - [anon_sym_delete] = ACTIONS(2691), - [anon_sym_throw] = ACTIONS(2691), - [anon_sym_co_return] = ACTIONS(2691), - [anon_sym_co_yield] = ACTIONS(2691), - [anon_sym_R_DQUOTE] = ACTIONS(2693), - [anon_sym_LR_DQUOTE] = ACTIONS(2693), - [anon_sym_uR_DQUOTE] = ACTIONS(2693), - [anon_sym_UR_DQUOTE] = ACTIONS(2693), - [anon_sym_u8R_DQUOTE] = ACTIONS(2693), - [anon_sym_co_await] = ACTIONS(2691), - [anon_sym_new] = ACTIONS(2691), - [anon_sym_requires] = ACTIONS(2691), - [sym_this] = ACTIONS(2691), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3633), + [anon_sym_noexcept] = ACTIONS(4324), + [anon_sym_throw] = ACTIONS(4324), + [anon_sym_R_DQUOTE] = ACTIONS(3635), + [anon_sym_LR_DQUOTE] = ACTIONS(3635), + [anon_sym_uR_DQUOTE] = ACTIONS(3635), + [anon_sym_UR_DQUOTE] = ACTIONS(3635), + [anon_sym_u8R_DQUOTE] = ACTIONS(3635), + [anon_sym_co_await] = ACTIONS(3637), + [anon_sym_new] = ACTIONS(3639), + [anon_sym_requires] = ACTIONS(3641), + [sym_this] = ACTIONS(229), }, - [918] = { - [sym_identifier] = ACTIONS(2767), - [anon_sym_LPAREN2] = ACTIONS(2769), - [anon_sym_BANG] = ACTIONS(2769), - [anon_sym_TILDE] = ACTIONS(2769), - [anon_sym_DASH] = ACTIONS(2767), - [anon_sym_PLUS] = ACTIONS(2767), - [anon_sym_STAR] = ACTIONS(2769), - [anon_sym_AMP] = ACTIONS(2769), - [anon_sym_SEMI] = ACTIONS(2769), - [anon_sym___extension__] = ACTIONS(2767), - [anon_sym_typedef] = ACTIONS(2767), - [anon_sym_virtual] = ACTIONS(2767), - [anon_sym_extern] = ACTIONS(2767), - [anon_sym___attribute__] = ACTIONS(2767), - [anon_sym___attribute] = ACTIONS(2767), - [anon_sym_COLON_COLON] = ACTIONS(2769), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2769), - [anon_sym___declspec] = ACTIONS(2767), - [anon_sym_LBRACE] = ACTIONS(2769), - [anon_sym_signed] = ACTIONS(2767), - [anon_sym_unsigned] = ACTIONS(2767), - [anon_sym_long] = ACTIONS(2767), - [anon_sym_short] = ACTIONS(2767), - [anon_sym_LBRACK] = ACTIONS(2767), - [anon_sym_static] = ACTIONS(2767), - [anon_sym_register] = ACTIONS(2767), - [anon_sym_inline] = ACTIONS(2767), - [anon_sym___inline] = ACTIONS(2767), - [anon_sym___inline__] = ACTIONS(2767), - [anon_sym___forceinline] = ACTIONS(2767), - [anon_sym_thread_local] = ACTIONS(2767), - [anon_sym___thread] = ACTIONS(2767), - [anon_sym_const] = ACTIONS(2767), - [anon_sym_constexpr] = ACTIONS(2767), - [anon_sym_volatile] = ACTIONS(2767), - [anon_sym_restrict] = ACTIONS(2767), - [anon_sym___restrict__] = ACTIONS(2767), - [anon_sym__Atomic] = ACTIONS(2767), - [anon_sym__Noreturn] = ACTIONS(2767), - [anon_sym_noreturn] = ACTIONS(2767), - [anon_sym__Nonnull] = ACTIONS(2767), - [anon_sym_mutable] = ACTIONS(2767), - [anon_sym_constinit] = ACTIONS(2767), - [anon_sym_consteval] = ACTIONS(2767), - [anon_sym_alignas] = ACTIONS(2767), - [anon_sym__Alignas] = ACTIONS(2767), - [sym_primitive_type] = ACTIONS(2767), - [anon_sym_enum] = ACTIONS(2767), - [anon_sym_class] = ACTIONS(2767), - [anon_sym_struct] = ACTIONS(2767), - [anon_sym_union] = ACTIONS(2767), - [anon_sym_if] = ACTIONS(2767), - [anon_sym_else] = ACTIONS(2767), - [anon_sym_switch] = ACTIONS(2767), - [anon_sym_while] = ACTIONS(2767), - [anon_sym_do] = ACTIONS(2767), - [anon_sym_for] = ACTIONS(2767), - [anon_sym_return] = ACTIONS(2767), - [anon_sym_break] = ACTIONS(2767), - [anon_sym_continue] = ACTIONS(2767), - [anon_sym_goto] = ACTIONS(2767), - [anon_sym___try] = ACTIONS(2767), - [anon_sym___leave] = ACTIONS(2767), - [anon_sym_not] = ACTIONS(2767), - [anon_sym_compl] = ACTIONS(2767), - [anon_sym_DASH_DASH] = ACTIONS(2769), - [anon_sym_PLUS_PLUS] = ACTIONS(2769), - [anon_sym_sizeof] = ACTIONS(2767), - [anon_sym___alignof__] = ACTIONS(2767), - [anon_sym___alignof] = ACTIONS(2767), - [anon_sym__alignof] = ACTIONS(2767), - [anon_sym_alignof] = ACTIONS(2767), - [anon_sym__Alignof] = ACTIONS(2767), - [anon_sym_offsetof] = ACTIONS(2767), - [anon_sym__Generic] = ACTIONS(2767), - [anon_sym_asm] = ACTIONS(2767), - [anon_sym___asm__] = ACTIONS(2767), - [anon_sym___asm] = ACTIONS(2767), - [sym_number_literal] = ACTIONS(2769), - [anon_sym_L_SQUOTE] = ACTIONS(2769), - [anon_sym_u_SQUOTE] = ACTIONS(2769), - [anon_sym_U_SQUOTE] = ACTIONS(2769), - [anon_sym_u8_SQUOTE] = ACTIONS(2769), - [anon_sym_SQUOTE] = ACTIONS(2769), - [anon_sym_L_DQUOTE] = ACTIONS(2769), - [anon_sym_u_DQUOTE] = ACTIONS(2769), - [anon_sym_U_DQUOTE] = ACTIONS(2769), - [anon_sym_u8_DQUOTE] = ACTIONS(2769), - [anon_sym_DQUOTE] = ACTIONS(2769), - [sym_true] = ACTIONS(2767), - [sym_false] = ACTIONS(2767), - [anon_sym_NULL] = ACTIONS(2767), - [anon_sym_nullptr] = ACTIONS(2767), + [981] = { + [sym_expression_statement] = STATE(2760), + [sym_expression] = STATE(4616), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8334), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_type_requirement] = STATE(979), + [sym_compound_requirement] = STATE(979), + [sym__requirement] = STATE(979), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_requirement_seq_repeat1] = STATE(979), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(4326), + [anon_sym___extension__] = ACTIONS(2167), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(4328), + [anon_sym_RBRACE] = ACTIONS(4474), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [anon_sym___alignof__] = ACTIONS(107), + [anon_sym___alignof] = ACTIONS(107), + [anon_sym__alignof] = ACTIONS(107), + [anon_sym_alignof] = ACTIONS(107), + [anon_sym__Alignof] = ACTIONS(107), + [anon_sym_offsetof] = ACTIONS(109), + [anon_sym__Generic] = ACTIONS(111), + [anon_sym_asm] = ACTIONS(113), + [anon_sym___asm__] = ACTIONS(113), + [anon_sym___asm] = ACTIONS(113), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(117), + [anon_sym_u_SQUOTE] = ACTIONS(117), + [anon_sym_U_SQUOTE] = ACTIONS(117), + [anon_sym_u8_SQUOTE] = ACTIONS(117), + [anon_sym_SQUOTE] = ACTIONS(117), + [anon_sym_L_DQUOTE] = ACTIONS(119), + [anon_sym_u_DQUOTE] = ACTIONS(119), + [anon_sym_U_DQUOTE] = ACTIONS(119), + [anon_sym_u8_DQUOTE] = ACTIONS(119), + [anon_sym_DQUOTE] = ACTIONS(119), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(123), + [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2767), - [anon_sym_decltype] = ACTIONS(2767), - [anon_sym_typename] = ACTIONS(2767), - [anon_sym_template] = ACTIONS(2767), - [anon_sym_try] = ACTIONS(2767), - [anon_sym_delete] = ACTIONS(2767), - [anon_sym_throw] = ACTIONS(2767), - [anon_sym_co_return] = ACTIONS(2767), - [anon_sym_co_yield] = ACTIONS(2767), - [anon_sym_R_DQUOTE] = ACTIONS(2769), - [anon_sym_LR_DQUOTE] = ACTIONS(2769), - [anon_sym_uR_DQUOTE] = ACTIONS(2769), - [anon_sym_UR_DQUOTE] = ACTIONS(2769), - [anon_sym_u8R_DQUOTE] = ACTIONS(2769), - [anon_sym_co_await] = ACTIONS(2767), - [anon_sym_new] = ACTIONS(2767), - [anon_sym_requires] = ACTIONS(2767), - [sym_this] = ACTIONS(2767), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_typename] = ACTIONS(4332), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(145), + [anon_sym_R_DQUOTE] = ACTIONS(159), + [anon_sym_LR_DQUOTE] = ACTIONS(159), + [anon_sym_uR_DQUOTE] = ACTIONS(159), + [anon_sym_UR_DQUOTE] = ACTIONS(159), + [anon_sym_u8R_DQUOTE] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), }, - [919] = { - [sym_identifier] = ACTIONS(2703), - [anon_sym_LPAREN2] = ACTIONS(2705), - [anon_sym_BANG] = ACTIONS(2705), - [anon_sym_TILDE] = ACTIONS(2705), - [anon_sym_DASH] = ACTIONS(2703), - [anon_sym_PLUS] = ACTIONS(2703), - [anon_sym_STAR] = ACTIONS(2705), - [anon_sym_AMP] = ACTIONS(2705), - [anon_sym_SEMI] = ACTIONS(2705), - [anon_sym___extension__] = ACTIONS(2703), - [anon_sym_typedef] = ACTIONS(2703), - [anon_sym_virtual] = ACTIONS(2703), - [anon_sym_extern] = ACTIONS(2703), - [anon_sym___attribute__] = ACTIONS(2703), - [anon_sym___attribute] = ACTIONS(2703), - [anon_sym_COLON_COLON] = ACTIONS(2705), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2705), - [anon_sym___declspec] = ACTIONS(2703), - [anon_sym_LBRACE] = ACTIONS(2705), - [anon_sym_signed] = ACTIONS(2703), - [anon_sym_unsigned] = ACTIONS(2703), - [anon_sym_long] = ACTIONS(2703), - [anon_sym_short] = ACTIONS(2703), - [anon_sym_LBRACK] = ACTIONS(2703), - [anon_sym_static] = ACTIONS(2703), - [anon_sym_register] = ACTIONS(2703), - [anon_sym_inline] = ACTIONS(2703), - [anon_sym___inline] = ACTIONS(2703), - [anon_sym___inline__] = ACTIONS(2703), - [anon_sym___forceinline] = ACTIONS(2703), - [anon_sym_thread_local] = ACTIONS(2703), - [anon_sym___thread] = ACTIONS(2703), - [anon_sym_const] = ACTIONS(2703), - [anon_sym_constexpr] = ACTIONS(2703), - [anon_sym_volatile] = ACTIONS(2703), - [anon_sym_restrict] = ACTIONS(2703), - [anon_sym___restrict__] = ACTIONS(2703), - [anon_sym__Atomic] = ACTIONS(2703), - [anon_sym__Noreturn] = ACTIONS(2703), - [anon_sym_noreturn] = ACTIONS(2703), - [anon_sym__Nonnull] = ACTIONS(2703), - [anon_sym_mutable] = ACTIONS(2703), - [anon_sym_constinit] = ACTIONS(2703), - [anon_sym_consteval] = ACTIONS(2703), - [anon_sym_alignas] = ACTIONS(2703), - [anon_sym__Alignas] = ACTIONS(2703), - [sym_primitive_type] = ACTIONS(2703), - [anon_sym_enum] = ACTIONS(2703), - [anon_sym_class] = ACTIONS(2703), - [anon_sym_struct] = ACTIONS(2703), - [anon_sym_union] = ACTIONS(2703), - [anon_sym_if] = ACTIONS(2703), - [anon_sym_else] = ACTIONS(2703), - [anon_sym_switch] = ACTIONS(2703), - [anon_sym_while] = ACTIONS(2703), - [anon_sym_do] = ACTIONS(2703), - [anon_sym_for] = ACTIONS(2703), - [anon_sym_return] = ACTIONS(2703), - [anon_sym_break] = ACTIONS(2703), - [anon_sym_continue] = ACTIONS(2703), - [anon_sym_goto] = ACTIONS(2703), - [anon_sym___try] = ACTIONS(2703), - [anon_sym___leave] = ACTIONS(2703), - [anon_sym_not] = ACTIONS(2703), - [anon_sym_compl] = ACTIONS(2703), - [anon_sym_DASH_DASH] = ACTIONS(2705), - [anon_sym_PLUS_PLUS] = ACTIONS(2705), - [anon_sym_sizeof] = ACTIONS(2703), - [anon_sym___alignof__] = ACTIONS(2703), - [anon_sym___alignof] = ACTIONS(2703), - [anon_sym__alignof] = ACTIONS(2703), - [anon_sym_alignof] = ACTIONS(2703), - [anon_sym__Alignof] = ACTIONS(2703), - [anon_sym_offsetof] = ACTIONS(2703), - [anon_sym__Generic] = ACTIONS(2703), - [anon_sym_asm] = ACTIONS(2703), - [anon_sym___asm__] = ACTIONS(2703), - [anon_sym___asm] = ACTIONS(2703), - [sym_number_literal] = ACTIONS(2705), - [anon_sym_L_SQUOTE] = ACTIONS(2705), - [anon_sym_u_SQUOTE] = ACTIONS(2705), - [anon_sym_U_SQUOTE] = ACTIONS(2705), - [anon_sym_u8_SQUOTE] = ACTIONS(2705), - [anon_sym_SQUOTE] = ACTIONS(2705), - [anon_sym_L_DQUOTE] = ACTIONS(2705), - [anon_sym_u_DQUOTE] = ACTIONS(2705), - [anon_sym_U_DQUOTE] = ACTIONS(2705), - [anon_sym_u8_DQUOTE] = ACTIONS(2705), - [anon_sym_DQUOTE] = ACTIONS(2705), - [sym_true] = ACTIONS(2703), - [sym_false] = ACTIONS(2703), - [anon_sym_NULL] = ACTIONS(2703), - [anon_sym_nullptr] = ACTIONS(2703), + [982] = { + [sym_expression] = STATE(4453), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_initializer_list] = STATE(7552), + [sym_initializer_pair] = STATE(7552), + [sym_subscript_designator] = STATE(6849), + [sym_subscript_range_designator] = STATE(6849), + [sym_field_designator] = STATE(6849), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_initializer_pair_repeat1] = STATE(6849), + [sym_identifier] = ACTIONS(4370), + [anon_sym_COMMA] = ACTIONS(4476), + [anon_sym_LPAREN2] = ACTIONS(1252), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(3623), + [anon_sym_RBRACE] = ACTIONS(4478), + [anon_sym_LBRACK] = ACTIONS(4376), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [anon_sym___alignof__] = ACTIONS(107), + [anon_sym___alignof] = ACTIONS(107), + [anon_sym__alignof] = ACTIONS(107), + [anon_sym_alignof] = ACTIONS(107), + [anon_sym__Alignof] = ACTIONS(107), + [anon_sym_offsetof] = ACTIONS(109), + [anon_sym__Generic] = ACTIONS(111), + [anon_sym_asm] = ACTIONS(113), + [anon_sym___asm__] = ACTIONS(113), + [anon_sym___asm] = ACTIONS(113), + [anon_sym_DOT] = ACTIONS(225), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(117), + [anon_sym_u_SQUOTE] = ACTIONS(117), + [anon_sym_U_SQUOTE] = ACTIONS(117), + [anon_sym_u8_SQUOTE] = ACTIONS(117), + [anon_sym_SQUOTE] = ACTIONS(117), + [anon_sym_L_DQUOTE] = ACTIONS(119), + [anon_sym_u_DQUOTE] = ACTIONS(119), + [anon_sym_U_DQUOTE] = ACTIONS(119), + [anon_sym_u8_DQUOTE] = ACTIONS(119), + [anon_sym_DQUOTE] = ACTIONS(119), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(123), + [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2703), - [anon_sym_decltype] = ACTIONS(2703), - [anon_sym_typename] = ACTIONS(2703), - [anon_sym_template] = ACTIONS(2703), - [anon_sym_try] = ACTIONS(2703), - [anon_sym_delete] = ACTIONS(2703), - [anon_sym_throw] = ACTIONS(2703), - [anon_sym_co_return] = ACTIONS(2703), - [anon_sym_co_yield] = ACTIONS(2703), - [anon_sym_R_DQUOTE] = ACTIONS(2705), - [anon_sym_LR_DQUOTE] = ACTIONS(2705), - [anon_sym_uR_DQUOTE] = ACTIONS(2705), - [anon_sym_UR_DQUOTE] = ACTIONS(2705), - [anon_sym_u8R_DQUOTE] = ACTIONS(2705), - [anon_sym_co_await] = ACTIONS(2703), - [anon_sym_new] = ACTIONS(2703), - [anon_sym_requires] = ACTIONS(2703), - [sym_this] = ACTIONS(2703), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(145), + [anon_sym_R_DQUOTE] = ACTIONS(159), + [anon_sym_LR_DQUOTE] = ACTIONS(159), + [anon_sym_uR_DQUOTE] = ACTIONS(159), + [anon_sym_UR_DQUOTE] = ACTIONS(159), + [anon_sym_u8R_DQUOTE] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), }, - [920] = { - [sym_identifier] = ACTIONS(2703), - [anon_sym_LPAREN2] = ACTIONS(2705), - [anon_sym_BANG] = ACTIONS(2705), - [anon_sym_TILDE] = ACTIONS(2705), - [anon_sym_DASH] = ACTIONS(2703), - [anon_sym_PLUS] = ACTIONS(2703), - [anon_sym_STAR] = ACTIONS(2705), - [anon_sym_AMP] = ACTIONS(2705), - [anon_sym_SEMI] = ACTIONS(2705), - [anon_sym___extension__] = ACTIONS(2703), - [anon_sym_typedef] = ACTIONS(2703), - [anon_sym_virtual] = ACTIONS(2703), - [anon_sym_extern] = ACTIONS(2703), - [anon_sym___attribute__] = ACTIONS(2703), - [anon_sym___attribute] = ACTIONS(2703), - [anon_sym_COLON_COLON] = ACTIONS(2705), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2705), - [anon_sym___declspec] = ACTIONS(2703), - [anon_sym_LBRACE] = ACTIONS(2705), - [anon_sym_signed] = ACTIONS(2703), - [anon_sym_unsigned] = ACTIONS(2703), - [anon_sym_long] = ACTIONS(2703), - [anon_sym_short] = ACTIONS(2703), - [anon_sym_LBRACK] = ACTIONS(2703), - [anon_sym_static] = ACTIONS(2703), - [anon_sym_register] = ACTIONS(2703), - [anon_sym_inline] = ACTIONS(2703), - [anon_sym___inline] = ACTIONS(2703), - [anon_sym___inline__] = ACTIONS(2703), - [anon_sym___forceinline] = ACTIONS(2703), - [anon_sym_thread_local] = ACTIONS(2703), - [anon_sym___thread] = ACTIONS(2703), - [anon_sym_const] = ACTIONS(2703), - [anon_sym_constexpr] = ACTIONS(2703), - [anon_sym_volatile] = ACTIONS(2703), - [anon_sym_restrict] = ACTIONS(2703), - [anon_sym___restrict__] = ACTIONS(2703), - [anon_sym__Atomic] = ACTIONS(2703), - [anon_sym__Noreturn] = ACTIONS(2703), - [anon_sym_noreturn] = ACTIONS(2703), - [anon_sym__Nonnull] = ACTIONS(2703), - [anon_sym_mutable] = ACTIONS(2703), - [anon_sym_constinit] = ACTIONS(2703), - [anon_sym_consteval] = ACTIONS(2703), - [anon_sym_alignas] = ACTIONS(2703), - [anon_sym__Alignas] = ACTIONS(2703), - [sym_primitive_type] = ACTIONS(2703), - [anon_sym_enum] = ACTIONS(2703), - [anon_sym_class] = ACTIONS(2703), - [anon_sym_struct] = ACTIONS(2703), - [anon_sym_union] = ACTIONS(2703), - [anon_sym_if] = ACTIONS(2703), - [anon_sym_else] = ACTIONS(2703), - [anon_sym_switch] = ACTIONS(2703), - [anon_sym_while] = ACTIONS(2703), - [anon_sym_do] = ACTIONS(2703), - [anon_sym_for] = ACTIONS(2703), - [anon_sym_return] = ACTIONS(2703), - [anon_sym_break] = ACTIONS(2703), - [anon_sym_continue] = ACTIONS(2703), - [anon_sym_goto] = ACTIONS(2703), - [anon_sym___try] = ACTIONS(2703), - [anon_sym___leave] = ACTIONS(2703), - [anon_sym_not] = ACTIONS(2703), - [anon_sym_compl] = ACTIONS(2703), - [anon_sym_DASH_DASH] = ACTIONS(2705), - [anon_sym_PLUS_PLUS] = ACTIONS(2705), - [anon_sym_sizeof] = ACTIONS(2703), - [anon_sym___alignof__] = ACTIONS(2703), - [anon_sym___alignof] = ACTIONS(2703), - [anon_sym__alignof] = ACTIONS(2703), - [anon_sym_alignof] = ACTIONS(2703), - [anon_sym__Alignof] = ACTIONS(2703), - [anon_sym_offsetof] = ACTIONS(2703), - [anon_sym__Generic] = ACTIONS(2703), - [anon_sym_asm] = ACTIONS(2703), - [anon_sym___asm__] = ACTIONS(2703), - [anon_sym___asm] = ACTIONS(2703), - [sym_number_literal] = ACTIONS(2705), - [anon_sym_L_SQUOTE] = ACTIONS(2705), - [anon_sym_u_SQUOTE] = ACTIONS(2705), - [anon_sym_U_SQUOTE] = ACTIONS(2705), - [anon_sym_u8_SQUOTE] = ACTIONS(2705), - [anon_sym_SQUOTE] = ACTIONS(2705), - [anon_sym_L_DQUOTE] = ACTIONS(2705), - [anon_sym_u_DQUOTE] = ACTIONS(2705), - [anon_sym_U_DQUOTE] = ACTIONS(2705), - [anon_sym_u8_DQUOTE] = ACTIONS(2705), - [anon_sym_DQUOTE] = ACTIONS(2705), - [sym_true] = ACTIONS(2703), - [sym_false] = ACTIONS(2703), - [anon_sym_NULL] = ACTIONS(2703), - [anon_sym_nullptr] = ACTIONS(2703), + [983] = { + [sym_expression] = STATE(3232), + [sym__string] = STATE(3393), + [sym_conditional_expression] = STATE(3401), + [sym_assignment_expression] = STATE(3401), + [sym_pointer_expression] = STATE(3405), + [sym_unary_expression] = STATE(3401), + [sym_binary_expression] = STATE(3401), + [sym_update_expression] = STATE(3401), + [sym_cast_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3401), + [sym_alignof_expression] = STATE(3401), + [sym_offsetof_expression] = STATE(3401), + [sym_generic_expression] = STATE(3401), + [sym_subscript_expression] = STATE(3405), + [sym_call_expression] = STATE(3405), + [sym_gnu_asm_expression] = STATE(3401), + [sym_extension_expression] = STATE(3401), + [sym_field_expression] = STATE(3405), + [sym_compound_literal_expression] = STATE(3401), + [sym_parenthesized_expression] = STATE(3405), + [sym_char_literal] = STATE(3393), + [sym_concatenated_string] = STATE(3393), + [sym_string_literal] = STATE(2380), + [sym_null] = STATE(3401), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7745), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3401), + [sym_raw_string_literal] = STATE(2380), + [sym_co_await_expression] = STATE(3401), + [sym_new_expression] = STATE(3401), + [sym_delete_expression] = STATE(3401), + [sym_requires_clause] = STATE(3401), + [sym_requires_expression] = STATE(3401), + [sym_lambda_expression] = STATE(3401), + [sym_lambda_capture_specifier] = STATE(5494), + [sym_fold_expression] = STATE(3401), + [sym_parameter_pack_expansion] = STATE(3401), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3405), + [sym_qualified_type_identifier] = STATE(7745), + [sym_user_defined_literal] = STATE(3405), + [sym_identifier] = ACTIONS(2453), + [anon_sym_LPAREN2] = ACTIONS(4322), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym_LT] = ACTIONS(4322), + [anon_sym___extension__] = ACTIONS(2455), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4322), + [anon_sym_LBRACE] = ACTIONS(4322), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_static] = ACTIONS(4324), + [anon_sym_constexpr] = ACTIONS(4324), + [anon_sym_mutable] = ACTIONS(4324), + [anon_sym_consteval] = ACTIONS(4324), + [sym_primitive_type] = ACTIONS(2459), + [anon_sym_not] = ACTIONS(1796), + [anon_sym_compl] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_sizeof] = ACTIONS(1824), + [anon_sym___alignof__] = ACTIONS(1826), + [anon_sym___alignof] = ACTIONS(1826), + [anon_sym__alignof] = ACTIONS(1826), + [anon_sym_alignof] = ACTIONS(1826), + [anon_sym__Alignof] = ACTIONS(1826), + [anon_sym_offsetof] = ACTIONS(1828), + [anon_sym__Generic] = ACTIONS(1830), + [anon_sym_asm] = ACTIONS(1832), + [anon_sym___asm__] = ACTIONS(1832), + [anon_sym___asm] = ACTIONS(1832), + [anon_sym_DASH_GT] = ACTIONS(4322), + [sym_number_literal] = ACTIONS(1834), + [anon_sym_L_SQUOTE] = ACTIONS(1836), + [anon_sym_u_SQUOTE] = ACTIONS(1836), + [anon_sym_U_SQUOTE] = ACTIONS(1836), + [anon_sym_u8_SQUOTE] = ACTIONS(1836), + [anon_sym_SQUOTE] = ACTIONS(1836), + [anon_sym_L_DQUOTE] = ACTIONS(1838), + [anon_sym_u_DQUOTE] = ACTIONS(1838), + [anon_sym_U_DQUOTE] = ACTIONS(1838), + [anon_sym_u8_DQUOTE] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym_true] = ACTIONS(1840), + [sym_false] = ACTIONS(1840), + [anon_sym_NULL] = ACTIONS(1842), + [anon_sym_nullptr] = ACTIONS(1842), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2703), - [anon_sym_decltype] = ACTIONS(2703), - [anon_sym_typename] = ACTIONS(2703), - [anon_sym_template] = ACTIONS(2703), - [anon_sym_try] = ACTIONS(2703), - [anon_sym_delete] = ACTIONS(2703), - [anon_sym_throw] = ACTIONS(2703), - [anon_sym_co_return] = ACTIONS(2703), - [anon_sym_co_yield] = ACTIONS(2703), - [anon_sym_R_DQUOTE] = ACTIONS(2705), - [anon_sym_LR_DQUOTE] = ACTIONS(2705), - [anon_sym_uR_DQUOTE] = ACTIONS(2705), - [anon_sym_UR_DQUOTE] = ACTIONS(2705), - [anon_sym_u8R_DQUOTE] = ACTIONS(2705), - [anon_sym_co_await] = ACTIONS(2703), - [anon_sym_new] = ACTIONS(2703), - [anon_sym_requires] = ACTIONS(2703), - [sym_this] = ACTIONS(2703), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1852), + [anon_sym_noexcept] = ACTIONS(4324), + [anon_sym_throw] = ACTIONS(4324), + [anon_sym_R_DQUOTE] = ACTIONS(1854), + [anon_sym_LR_DQUOTE] = ACTIONS(1854), + [anon_sym_uR_DQUOTE] = ACTIONS(1854), + [anon_sym_UR_DQUOTE] = ACTIONS(1854), + [anon_sym_u8R_DQUOTE] = ACTIONS(1854), + [anon_sym_co_await] = ACTIONS(1856), + [anon_sym_new] = ACTIONS(1858), + [anon_sym_requires] = ACTIONS(1860), + [sym_this] = ACTIONS(1840), }, - [921] = { - [sym_identifier] = ACTIONS(2673), - [anon_sym_LPAREN2] = ACTIONS(2675), - [anon_sym_BANG] = ACTIONS(2675), - [anon_sym_TILDE] = ACTIONS(2675), - [anon_sym_DASH] = ACTIONS(2673), - [anon_sym_PLUS] = ACTIONS(2673), - [anon_sym_STAR] = ACTIONS(2675), - [anon_sym_AMP] = ACTIONS(2675), - [anon_sym_SEMI] = ACTIONS(2675), - [anon_sym___extension__] = ACTIONS(2673), - [anon_sym_typedef] = ACTIONS(2673), - [anon_sym_virtual] = ACTIONS(2673), - [anon_sym_extern] = ACTIONS(2673), - [anon_sym___attribute__] = ACTIONS(2673), - [anon_sym___attribute] = ACTIONS(2673), - [anon_sym_COLON_COLON] = ACTIONS(2675), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2675), - [anon_sym___declspec] = ACTIONS(2673), - [anon_sym_LBRACE] = ACTIONS(2675), - [anon_sym_signed] = ACTIONS(2673), - [anon_sym_unsigned] = ACTIONS(2673), - [anon_sym_long] = ACTIONS(2673), - [anon_sym_short] = ACTIONS(2673), - [anon_sym_LBRACK] = ACTIONS(2673), - [anon_sym_static] = ACTIONS(2673), - [anon_sym_register] = ACTIONS(2673), - [anon_sym_inline] = ACTIONS(2673), - [anon_sym___inline] = ACTIONS(2673), - [anon_sym___inline__] = ACTIONS(2673), - [anon_sym___forceinline] = ACTIONS(2673), - [anon_sym_thread_local] = ACTIONS(2673), - [anon_sym___thread] = ACTIONS(2673), - [anon_sym_const] = ACTIONS(2673), - [anon_sym_constexpr] = ACTIONS(2673), - [anon_sym_volatile] = ACTIONS(2673), - [anon_sym_restrict] = ACTIONS(2673), - [anon_sym___restrict__] = ACTIONS(2673), - [anon_sym__Atomic] = ACTIONS(2673), - [anon_sym__Noreturn] = ACTIONS(2673), - [anon_sym_noreturn] = ACTIONS(2673), - [anon_sym__Nonnull] = ACTIONS(2673), - [anon_sym_mutable] = ACTIONS(2673), - [anon_sym_constinit] = ACTIONS(2673), - [anon_sym_consteval] = ACTIONS(2673), - [anon_sym_alignas] = ACTIONS(2673), - [anon_sym__Alignas] = ACTIONS(2673), - [sym_primitive_type] = ACTIONS(2673), - [anon_sym_enum] = ACTIONS(2673), - [anon_sym_class] = ACTIONS(2673), - [anon_sym_struct] = ACTIONS(2673), - [anon_sym_union] = ACTIONS(2673), - [anon_sym_if] = ACTIONS(2673), - [anon_sym_else] = ACTIONS(2673), - [anon_sym_switch] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2673), - [anon_sym_do] = ACTIONS(2673), - [anon_sym_for] = ACTIONS(2673), - [anon_sym_return] = ACTIONS(2673), - [anon_sym_break] = ACTIONS(2673), - [anon_sym_continue] = ACTIONS(2673), - [anon_sym_goto] = ACTIONS(2673), - [anon_sym___try] = ACTIONS(2673), - [anon_sym___leave] = ACTIONS(2673), - [anon_sym_not] = ACTIONS(2673), - [anon_sym_compl] = ACTIONS(2673), - [anon_sym_DASH_DASH] = ACTIONS(2675), - [anon_sym_PLUS_PLUS] = ACTIONS(2675), - [anon_sym_sizeof] = ACTIONS(2673), - [anon_sym___alignof__] = ACTIONS(2673), - [anon_sym___alignof] = ACTIONS(2673), - [anon_sym__alignof] = ACTIONS(2673), - [anon_sym_alignof] = ACTIONS(2673), - [anon_sym__Alignof] = ACTIONS(2673), - [anon_sym_offsetof] = ACTIONS(2673), - [anon_sym__Generic] = ACTIONS(2673), - [anon_sym_asm] = ACTIONS(2673), - [anon_sym___asm__] = ACTIONS(2673), - [anon_sym___asm] = ACTIONS(2673), - [sym_number_literal] = ACTIONS(2675), - [anon_sym_L_SQUOTE] = ACTIONS(2675), - [anon_sym_u_SQUOTE] = ACTIONS(2675), - [anon_sym_U_SQUOTE] = ACTIONS(2675), - [anon_sym_u8_SQUOTE] = ACTIONS(2675), - [anon_sym_SQUOTE] = ACTIONS(2675), - [anon_sym_L_DQUOTE] = ACTIONS(2675), - [anon_sym_u_DQUOTE] = ACTIONS(2675), - [anon_sym_U_DQUOTE] = ACTIONS(2675), - [anon_sym_u8_DQUOTE] = ACTIONS(2675), - [anon_sym_DQUOTE] = ACTIONS(2675), - [sym_true] = ACTIONS(2673), - [sym_false] = ACTIONS(2673), - [anon_sym_NULL] = ACTIONS(2673), - [anon_sym_nullptr] = ACTIONS(2673), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2673), - [anon_sym_decltype] = ACTIONS(2673), - [anon_sym_typename] = ACTIONS(2673), - [anon_sym_template] = ACTIONS(2673), - [anon_sym_try] = ACTIONS(2673), - [anon_sym_delete] = ACTIONS(2673), - [anon_sym_throw] = ACTIONS(2673), - [anon_sym_co_return] = ACTIONS(2673), - [anon_sym_co_yield] = ACTIONS(2673), - [anon_sym_R_DQUOTE] = ACTIONS(2675), - [anon_sym_LR_DQUOTE] = ACTIONS(2675), - [anon_sym_uR_DQUOTE] = ACTIONS(2675), - [anon_sym_UR_DQUOTE] = ACTIONS(2675), - [anon_sym_u8R_DQUOTE] = ACTIONS(2675), - [anon_sym_co_await] = ACTIONS(2673), - [anon_sym_new] = ACTIONS(2673), - [anon_sym_requires] = ACTIONS(2673), - [sym_this] = ACTIONS(2673), + [984] = { + [sym_expression] = STATE(4431), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_initializer_list] = STATE(7612), + [sym_initializer_pair] = STATE(7612), + [sym_subscript_designator] = STATE(6849), + [sym_subscript_range_designator] = STATE(6849), + [sym_field_designator] = STATE(6849), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_initializer_pair_repeat1] = STATE(6849), + [sym_identifier] = ACTIONS(4370), + [anon_sym_COMMA] = ACTIONS(173), + [anon_sym_LPAREN2] = ACTIONS(1252), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(3623), + [anon_sym_RBRACE] = ACTIONS(4480), + [anon_sym_LBRACK] = ACTIONS(4376), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [anon_sym___alignof__] = ACTIONS(107), + [anon_sym___alignof] = ACTIONS(107), + [anon_sym__alignof] = ACTIONS(107), + [anon_sym_alignof] = ACTIONS(107), + [anon_sym__Alignof] = ACTIONS(107), + [anon_sym_offsetof] = ACTIONS(109), + [anon_sym__Generic] = ACTIONS(111), + [anon_sym_asm] = ACTIONS(113), + [anon_sym___asm__] = ACTIONS(113), + [anon_sym___asm] = ACTIONS(113), + [anon_sym_DOT] = ACTIONS(225), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(117), + [anon_sym_u_SQUOTE] = ACTIONS(117), + [anon_sym_U_SQUOTE] = ACTIONS(117), + [anon_sym_u8_SQUOTE] = ACTIONS(117), + [anon_sym_SQUOTE] = ACTIONS(117), + [anon_sym_L_DQUOTE] = ACTIONS(119), + [anon_sym_u_DQUOTE] = ACTIONS(119), + [anon_sym_U_DQUOTE] = ACTIONS(119), + [anon_sym_u8_DQUOTE] = ACTIONS(119), + [anon_sym_DQUOTE] = ACTIONS(119), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(123), + [anon_sym_nullptr] = ACTIONS(123), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(145), + [anon_sym_R_DQUOTE] = ACTIONS(159), + [anon_sym_LR_DQUOTE] = ACTIONS(159), + [anon_sym_uR_DQUOTE] = ACTIONS(159), + [anon_sym_UR_DQUOTE] = ACTIONS(159), + [anon_sym_u8R_DQUOTE] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), }, - [922] = { - [sym_identifier] = ACTIONS(2639), - [anon_sym_LPAREN2] = ACTIONS(2641), - [anon_sym_BANG] = ACTIONS(2641), - [anon_sym_TILDE] = ACTIONS(2641), - [anon_sym_DASH] = ACTIONS(2639), - [anon_sym_PLUS] = ACTIONS(2639), - [anon_sym_STAR] = ACTIONS(2641), - [anon_sym_AMP] = ACTIONS(2641), - [anon_sym_SEMI] = ACTIONS(2641), - [anon_sym___extension__] = ACTIONS(2639), - [anon_sym_typedef] = ACTIONS(2639), - [anon_sym_virtual] = ACTIONS(2639), - [anon_sym_extern] = ACTIONS(2639), - [anon_sym___attribute__] = ACTIONS(2639), - [anon_sym___attribute] = ACTIONS(2639), - [anon_sym_COLON_COLON] = ACTIONS(2641), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2641), - [anon_sym___declspec] = ACTIONS(2639), - [anon_sym_LBRACE] = ACTIONS(2641), - [anon_sym_signed] = ACTIONS(2639), - [anon_sym_unsigned] = ACTIONS(2639), - [anon_sym_long] = ACTIONS(2639), - [anon_sym_short] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(2639), - [anon_sym_static] = ACTIONS(2639), - [anon_sym_register] = ACTIONS(2639), - [anon_sym_inline] = ACTIONS(2639), - [anon_sym___inline] = ACTIONS(2639), - [anon_sym___inline__] = ACTIONS(2639), - [anon_sym___forceinline] = ACTIONS(2639), - [anon_sym_thread_local] = ACTIONS(2639), - [anon_sym___thread] = ACTIONS(2639), - [anon_sym_const] = ACTIONS(2639), - [anon_sym_constexpr] = ACTIONS(2639), - [anon_sym_volatile] = ACTIONS(2639), - [anon_sym_restrict] = ACTIONS(2639), - [anon_sym___restrict__] = ACTIONS(2639), - [anon_sym__Atomic] = ACTIONS(2639), - [anon_sym__Noreturn] = ACTIONS(2639), - [anon_sym_noreturn] = ACTIONS(2639), - [anon_sym__Nonnull] = ACTIONS(2639), - [anon_sym_mutable] = ACTIONS(2639), - [anon_sym_constinit] = ACTIONS(2639), - [anon_sym_consteval] = ACTIONS(2639), - [anon_sym_alignas] = ACTIONS(2639), - [anon_sym__Alignas] = ACTIONS(2639), - [sym_primitive_type] = ACTIONS(2639), - [anon_sym_enum] = ACTIONS(2639), - [anon_sym_class] = ACTIONS(2639), - [anon_sym_struct] = ACTIONS(2639), - [anon_sym_union] = ACTIONS(2639), - [anon_sym_if] = ACTIONS(2639), - [anon_sym_else] = ACTIONS(2639), - [anon_sym_switch] = ACTIONS(2639), - [anon_sym_while] = ACTIONS(2639), - [anon_sym_do] = ACTIONS(2639), - [anon_sym_for] = ACTIONS(2639), - [anon_sym_return] = ACTIONS(2639), - [anon_sym_break] = ACTIONS(2639), - [anon_sym_continue] = ACTIONS(2639), - [anon_sym_goto] = ACTIONS(2639), - [anon_sym___try] = ACTIONS(2639), - [anon_sym___leave] = ACTIONS(2639), - [anon_sym_not] = ACTIONS(2639), - [anon_sym_compl] = ACTIONS(2639), - [anon_sym_DASH_DASH] = ACTIONS(2641), - [anon_sym_PLUS_PLUS] = ACTIONS(2641), - [anon_sym_sizeof] = ACTIONS(2639), - [anon_sym___alignof__] = ACTIONS(2639), - [anon_sym___alignof] = ACTIONS(2639), - [anon_sym__alignof] = ACTIONS(2639), - [anon_sym_alignof] = ACTIONS(2639), - [anon_sym__Alignof] = ACTIONS(2639), - [anon_sym_offsetof] = ACTIONS(2639), - [anon_sym__Generic] = ACTIONS(2639), - [anon_sym_asm] = ACTIONS(2639), - [anon_sym___asm__] = ACTIONS(2639), - [anon_sym___asm] = ACTIONS(2639), - [sym_number_literal] = ACTIONS(2641), - [anon_sym_L_SQUOTE] = ACTIONS(2641), - [anon_sym_u_SQUOTE] = ACTIONS(2641), - [anon_sym_U_SQUOTE] = ACTIONS(2641), - [anon_sym_u8_SQUOTE] = ACTIONS(2641), - [anon_sym_SQUOTE] = ACTIONS(2641), - [anon_sym_L_DQUOTE] = ACTIONS(2641), - [anon_sym_u_DQUOTE] = ACTIONS(2641), - [anon_sym_U_DQUOTE] = ACTIONS(2641), - [anon_sym_u8_DQUOTE] = ACTIONS(2641), - [anon_sym_DQUOTE] = ACTIONS(2641), - [sym_true] = ACTIONS(2639), - [sym_false] = ACTIONS(2639), - [anon_sym_NULL] = ACTIONS(2639), - [anon_sym_nullptr] = ACTIONS(2639), + [985] = { + [sym_expression] = STATE(3640), + [sym__string] = STATE(3775), + [sym_conditional_expression] = STATE(3886), + [sym_assignment_expression] = STATE(3886), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(3886), + [sym_binary_expression] = STATE(3886), + [sym_update_expression] = STATE(3886), + [sym_cast_expression] = STATE(3886), + [sym_sizeof_expression] = STATE(3886), + [sym_alignof_expression] = STATE(3886), + [sym_offsetof_expression] = STATE(3886), + [sym_generic_expression] = STATE(3886), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(3886), + [sym_extension_expression] = STATE(3886), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(3886), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(3775), + [sym_concatenated_string] = STATE(3775), + [sym_string_literal] = STATE(2596), + [sym_null] = STATE(3886), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7756), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3886), + [sym_raw_string_literal] = STATE(2596), + [sym_co_await_expression] = STATE(3886), + [sym_new_expression] = STATE(3886), + [sym_delete_expression] = STATE(3886), + [sym_requires_clause] = STATE(3886), + [sym_requires_expression] = STATE(3886), + [sym_lambda_expression] = STATE(3886), + [sym_lambda_capture_specifier] = STATE(5492), + [sym_fold_expression] = STATE(3886), + [sym_parameter_pack_expansion] = STATE(3886), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(7756), + [sym_user_defined_literal] = STATE(3522), + [sym_identifier] = ACTIONS(2619), + [anon_sym_LPAREN2] = ACTIONS(4322), + [anon_sym_BANG] = ACTIONS(1890), + [anon_sym_TILDE] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1892), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym_LT] = ACTIONS(4322), + [anon_sym___extension__] = ACTIONS(2621), + [anon_sym_COLON_COLON] = ACTIONS(1898), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4322), + [anon_sym_LBRACE] = ACTIONS(4322), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_static] = ACTIONS(4324), + [anon_sym_constexpr] = ACTIONS(4324), + [anon_sym_mutable] = ACTIONS(4324), + [anon_sym_consteval] = ACTIONS(4324), + [sym_primitive_type] = ACTIONS(2625), + [anon_sym_not] = ACTIONS(1892), + [anon_sym_compl] = ACTIONS(1892), + [anon_sym_DASH_DASH] = ACTIONS(1902), + [anon_sym_PLUS_PLUS] = ACTIONS(1902), + [anon_sym_sizeof] = ACTIONS(1904), + [anon_sym___alignof__] = ACTIONS(1906), + [anon_sym___alignof] = ACTIONS(1906), + [anon_sym__alignof] = ACTIONS(1906), + [anon_sym_alignof] = ACTIONS(1906), + [anon_sym__Alignof] = ACTIONS(1906), + [anon_sym_offsetof] = ACTIONS(1908), + [anon_sym__Generic] = ACTIONS(1910), + [anon_sym_asm] = ACTIONS(1912), + [anon_sym___asm__] = ACTIONS(1912), + [anon_sym___asm] = ACTIONS(1912), + [anon_sym_DASH_GT] = ACTIONS(4322), + [sym_number_literal] = ACTIONS(1914), + [anon_sym_L_SQUOTE] = ACTIONS(1916), + [anon_sym_u_SQUOTE] = ACTIONS(1916), + [anon_sym_U_SQUOTE] = ACTIONS(1916), + [anon_sym_u8_SQUOTE] = ACTIONS(1916), + [anon_sym_SQUOTE] = ACTIONS(1916), + [anon_sym_L_DQUOTE] = ACTIONS(1918), + [anon_sym_u_DQUOTE] = ACTIONS(1918), + [anon_sym_U_DQUOTE] = ACTIONS(1918), + [anon_sym_u8_DQUOTE] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1918), + [sym_true] = ACTIONS(1920), + [sym_false] = ACTIONS(1920), + [anon_sym_NULL] = ACTIONS(1922), + [anon_sym_nullptr] = ACTIONS(1922), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2639), - [anon_sym_decltype] = ACTIONS(2639), - [anon_sym_typename] = ACTIONS(2639), - [anon_sym_template] = ACTIONS(2639), - [anon_sym_try] = ACTIONS(2639), - [anon_sym_delete] = ACTIONS(2639), - [anon_sym_throw] = ACTIONS(2639), - [anon_sym_co_return] = ACTIONS(2639), - [anon_sym_co_yield] = ACTIONS(2639), - [anon_sym_R_DQUOTE] = ACTIONS(2641), - [anon_sym_LR_DQUOTE] = ACTIONS(2641), - [anon_sym_uR_DQUOTE] = ACTIONS(2641), - [anon_sym_UR_DQUOTE] = ACTIONS(2641), - [anon_sym_u8R_DQUOTE] = ACTIONS(2641), - [anon_sym_co_await] = ACTIONS(2639), - [anon_sym_new] = ACTIONS(2639), - [anon_sym_requires] = ACTIONS(2639), - [sym_this] = ACTIONS(2639), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1924), + [anon_sym_noexcept] = ACTIONS(4324), + [anon_sym_throw] = ACTIONS(4324), + [anon_sym_R_DQUOTE] = ACTIONS(1926), + [anon_sym_LR_DQUOTE] = ACTIONS(1926), + [anon_sym_uR_DQUOTE] = ACTIONS(1926), + [anon_sym_UR_DQUOTE] = ACTIONS(1926), + [anon_sym_u8R_DQUOTE] = ACTIONS(1926), + [anon_sym_co_await] = ACTIONS(1928), + [anon_sym_new] = ACTIONS(1930), + [anon_sym_requires] = ACTIONS(1932), + [sym_this] = ACTIONS(1920), }, - [923] = { - [sym_identifier] = ACTIONS(2655), - [anon_sym_LPAREN2] = ACTIONS(2657), - [anon_sym_BANG] = ACTIONS(2657), - [anon_sym_TILDE] = ACTIONS(2657), - [anon_sym_DASH] = ACTIONS(2655), - [anon_sym_PLUS] = ACTIONS(2655), - [anon_sym_STAR] = ACTIONS(2657), - [anon_sym_AMP] = ACTIONS(2657), - [anon_sym_SEMI] = ACTIONS(2657), - [anon_sym___extension__] = ACTIONS(2655), - [anon_sym_typedef] = ACTIONS(2655), - [anon_sym_virtual] = ACTIONS(2655), - [anon_sym_extern] = ACTIONS(2655), - [anon_sym___attribute__] = ACTIONS(2655), - [anon_sym___attribute] = ACTIONS(2655), - [anon_sym_COLON_COLON] = ACTIONS(2657), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2657), - [anon_sym___declspec] = ACTIONS(2655), - [anon_sym_LBRACE] = ACTIONS(2657), - [anon_sym_signed] = ACTIONS(2655), - [anon_sym_unsigned] = ACTIONS(2655), - [anon_sym_long] = ACTIONS(2655), - [anon_sym_short] = ACTIONS(2655), - [anon_sym_LBRACK] = ACTIONS(2655), - [anon_sym_static] = ACTIONS(2655), - [anon_sym_register] = ACTIONS(2655), - [anon_sym_inline] = ACTIONS(2655), - [anon_sym___inline] = ACTIONS(2655), - [anon_sym___inline__] = ACTIONS(2655), - [anon_sym___forceinline] = ACTIONS(2655), - [anon_sym_thread_local] = ACTIONS(2655), - [anon_sym___thread] = ACTIONS(2655), - [anon_sym_const] = ACTIONS(2655), - [anon_sym_constexpr] = ACTIONS(2655), - [anon_sym_volatile] = ACTIONS(2655), - [anon_sym_restrict] = ACTIONS(2655), - [anon_sym___restrict__] = ACTIONS(2655), - [anon_sym__Atomic] = ACTIONS(2655), - [anon_sym__Noreturn] = ACTIONS(2655), - [anon_sym_noreturn] = ACTIONS(2655), - [anon_sym__Nonnull] = ACTIONS(2655), - [anon_sym_mutable] = ACTIONS(2655), - [anon_sym_constinit] = ACTIONS(2655), - [anon_sym_consteval] = ACTIONS(2655), - [anon_sym_alignas] = ACTIONS(2655), - [anon_sym__Alignas] = ACTIONS(2655), - [sym_primitive_type] = ACTIONS(2655), - [anon_sym_enum] = ACTIONS(2655), - [anon_sym_class] = ACTIONS(2655), - [anon_sym_struct] = ACTIONS(2655), - [anon_sym_union] = ACTIONS(2655), - [anon_sym_if] = ACTIONS(2655), - [anon_sym_else] = ACTIONS(2655), - [anon_sym_switch] = ACTIONS(2655), - [anon_sym_while] = ACTIONS(2655), - [anon_sym_do] = ACTIONS(2655), - [anon_sym_for] = ACTIONS(2655), - [anon_sym_return] = ACTIONS(2655), - [anon_sym_break] = ACTIONS(2655), - [anon_sym_continue] = ACTIONS(2655), - [anon_sym_goto] = ACTIONS(2655), - [anon_sym___try] = ACTIONS(2655), - [anon_sym___leave] = ACTIONS(2655), - [anon_sym_not] = ACTIONS(2655), - [anon_sym_compl] = ACTIONS(2655), - [anon_sym_DASH_DASH] = ACTIONS(2657), - [anon_sym_PLUS_PLUS] = ACTIONS(2657), - [anon_sym_sizeof] = ACTIONS(2655), - [anon_sym___alignof__] = ACTIONS(2655), - [anon_sym___alignof] = ACTIONS(2655), - [anon_sym__alignof] = ACTIONS(2655), - [anon_sym_alignof] = ACTIONS(2655), - [anon_sym__Alignof] = ACTIONS(2655), - [anon_sym_offsetof] = ACTIONS(2655), - [anon_sym__Generic] = ACTIONS(2655), - [anon_sym_asm] = ACTIONS(2655), - [anon_sym___asm__] = ACTIONS(2655), - [anon_sym___asm] = ACTIONS(2655), - [sym_number_literal] = ACTIONS(2657), - [anon_sym_L_SQUOTE] = ACTIONS(2657), - [anon_sym_u_SQUOTE] = ACTIONS(2657), - [anon_sym_U_SQUOTE] = ACTIONS(2657), - [anon_sym_u8_SQUOTE] = ACTIONS(2657), - [anon_sym_SQUOTE] = ACTIONS(2657), - [anon_sym_L_DQUOTE] = ACTIONS(2657), - [anon_sym_u_DQUOTE] = ACTIONS(2657), - [anon_sym_U_DQUOTE] = ACTIONS(2657), - [anon_sym_u8_DQUOTE] = ACTIONS(2657), - [anon_sym_DQUOTE] = ACTIONS(2657), - [sym_true] = ACTIONS(2655), - [sym_false] = ACTIONS(2655), - [anon_sym_NULL] = ACTIONS(2655), - [anon_sym_nullptr] = ACTIONS(2655), + [986] = { + [sym_expression] = STATE(4433), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_initializer_list] = STATE(7420), + [sym_initializer_pair] = STATE(7420), + [sym_subscript_designator] = STATE(6849), + [sym_subscript_range_designator] = STATE(6849), + [sym_field_designator] = STATE(6849), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_initializer_pair_repeat1] = STATE(6849), + [sym_identifier] = ACTIONS(4370), + [anon_sym_COMMA] = ACTIONS(4482), + [anon_sym_LPAREN2] = ACTIONS(1252), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(3623), + [anon_sym_RBRACE] = ACTIONS(4484), + [anon_sym_LBRACK] = ACTIONS(4376), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [anon_sym___alignof__] = ACTIONS(107), + [anon_sym___alignof] = ACTIONS(107), + [anon_sym__alignof] = ACTIONS(107), + [anon_sym_alignof] = ACTIONS(107), + [anon_sym__Alignof] = ACTIONS(107), + [anon_sym_offsetof] = ACTIONS(109), + [anon_sym__Generic] = ACTIONS(111), + [anon_sym_asm] = ACTIONS(113), + [anon_sym___asm__] = ACTIONS(113), + [anon_sym___asm] = ACTIONS(113), + [anon_sym_DOT] = ACTIONS(225), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(117), + [anon_sym_u_SQUOTE] = ACTIONS(117), + [anon_sym_U_SQUOTE] = ACTIONS(117), + [anon_sym_u8_SQUOTE] = ACTIONS(117), + [anon_sym_SQUOTE] = ACTIONS(117), + [anon_sym_L_DQUOTE] = ACTIONS(119), + [anon_sym_u_DQUOTE] = ACTIONS(119), + [anon_sym_U_DQUOTE] = ACTIONS(119), + [anon_sym_u8_DQUOTE] = ACTIONS(119), + [anon_sym_DQUOTE] = ACTIONS(119), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(123), + [anon_sym_nullptr] = ACTIONS(123), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(145), + [anon_sym_R_DQUOTE] = ACTIONS(159), + [anon_sym_LR_DQUOTE] = ACTIONS(159), + [anon_sym_uR_DQUOTE] = ACTIONS(159), + [anon_sym_UR_DQUOTE] = ACTIONS(159), + [anon_sym_u8R_DQUOTE] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), + }, + [987] = { + [sym_expression] = STATE(4362), + [sym__string] = STATE(4455), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3366), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3366), + [sym_call_expression] = STATE(3366), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3366), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3366), + [sym_char_literal] = STATE(4455), + [sym_concatenated_string] = STATE(4455), + [sym_string_literal] = STATE(3406), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3406), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3366), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3366), + [sym_identifier] = ACTIONS(3833), + [anon_sym_LPAREN2] = ACTIONS(4322), + [anon_sym_BANG] = ACTIONS(3837), + [anon_sym_TILDE] = ACTIONS(3837), + [anon_sym_DASH] = ACTIONS(3835), + [anon_sym_PLUS] = ACTIONS(3835), + [anon_sym_STAR] = ACTIONS(4336), + [anon_sym_AMP] = ACTIONS(4336), + [anon_sym_LT] = ACTIONS(4322), + [anon_sym___extension__] = ACTIONS(3839), + [anon_sym_COLON_COLON] = ACTIONS(3841), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4322), + [anon_sym_LBRACE] = ACTIONS(4322), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_static] = ACTIONS(4324), + [anon_sym_constexpr] = ACTIONS(4324), + [anon_sym_mutable] = ACTIONS(4324), + [anon_sym_consteval] = ACTIONS(4324), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3835), + [anon_sym_compl] = ACTIONS(3835), + [anon_sym_DASH_DASH] = ACTIONS(4338), + [anon_sym_PLUS_PLUS] = ACTIONS(4338), + [anon_sym_sizeof] = ACTIONS(3843), + [anon_sym___alignof__] = ACTIONS(107), + [anon_sym___alignof] = ACTIONS(107), + [anon_sym__alignof] = ACTIONS(107), + [anon_sym_alignof] = ACTIONS(107), + [anon_sym__Alignof] = ACTIONS(107), + [anon_sym_offsetof] = ACTIONS(109), + [anon_sym__Generic] = ACTIONS(111), + [anon_sym_asm] = ACTIONS(113), + [anon_sym___asm__] = ACTIONS(113), + [anon_sym___asm] = ACTIONS(113), + [anon_sym_DASH_GT] = ACTIONS(4322), + [sym_number_literal] = ACTIONS(3845), + [anon_sym_L_SQUOTE] = ACTIONS(3847), + [anon_sym_u_SQUOTE] = ACTIONS(3847), + [anon_sym_U_SQUOTE] = ACTIONS(3847), + [anon_sym_u8_SQUOTE] = ACTIONS(3847), + [anon_sym_SQUOTE] = ACTIONS(3847), + [anon_sym_L_DQUOTE] = ACTIONS(3849), + [anon_sym_u_DQUOTE] = ACTIONS(3849), + [anon_sym_U_DQUOTE] = ACTIONS(3849), + [anon_sym_u8_DQUOTE] = ACTIONS(3849), + [anon_sym_DQUOTE] = ACTIONS(3849), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(123), + [anon_sym_nullptr] = ACTIONS(123), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3851), + [anon_sym_noexcept] = ACTIONS(4324), + [anon_sym_throw] = ACTIONS(4324), + [anon_sym_R_DQUOTE] = ACTIONS(3853), + [anon_sym_LR_DQUOTE] = ACTIONS(3853), + [anon_sym_uR_DQUOTE] = ACTIONS(3853), + [anon_sym_UR_DQUOTE] = ACTIONS(3853), + [anon_sym_u8R_DQUOTE] = ACTIONS(3853), + [anon_sym_co_await] = ACTIONS(3855), + [anon_sym_new] = ACTIONS(163), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), + }, + [988] = { + [sym_expression_statement] = STATE(2760), + [sym_expression] = STATE(4616), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8334), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_type_requirement] = STATE(979), + [sym_compound_requirement] = STATE(979), + [sym__requirement] = STATE(979), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_requirement_seq_repeat1] = STATE(979), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(4326), + [anon_sym___extension__] = ACTIONS(2167), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(4328), + [anon_sym_RBRACE] = ACTIONS(4486), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [anon_sym___alignof__] = ACTIONS(107), + [anon_sym___alignof] = ACTIONS(107), + [anon_sym__alignof] = ACTIONS(107), + [anon_sym_alignof] = ACTIONS(107), + [anon_sym__Alignof] = ACTIONS(107), + [anon_sym_offsetof] = ACTIONS(109), + [anon_sym__Generic] = ACTIONS(111), + [anon_sym_asm] = ACTIONS(113), + [anon_sym___asm__] = ACTIONS(113), + [anon_sym___asm] = ACTIONS(113), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(117), + [anon_sym_u_SQUOTE] = ACTIONS(117), + [anon_sym_U_SQUOTE] = ACTIONS(117), + [anon_sym_u8_SQUOTE] = ACTIONS(117), + [anon_sym_SQUOTE] = ACTIONS(117), + [anon_sym_L_DQUOTE] = ACTIONS(119), + [anon_sym_u_DQUOTE] = ACTIONS(119), + [anon_sym_U_DQUOTE] = ACTIONS(119), + [anon_sym_u8_DQUOTE] = ACTIONS(119), + [anon_sym_DQUOTE] = ACTIONS(119), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(123), + [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2655), - [anon_sym_decltype] = ACTIONS(2655), - [anon_sym_typename] = ACTIONS(2655), - [anon_sym_template] = ACTIONS(2655), - [anon_sym_try] = ACTIONS(2655), - [anon_sym_delete] = ACTIONS(2655), - [anon_sym_throw] = ACTIONS(2655), - [anon_sym_co_return] = ACTIONS(2655), - [anon_sym_co_yield] = ACTIONS(2655), - [anon_sym_R_DQUOTE] = ACTIONS(2657), - [anon_sym_LR_DQUOTE] = ACTIONS(2657), - [anon_sym_uR_DQUOTE] = ACTIONS(2657), - [anon_sym_UR_DQUOTE] = ACTIONS(2657), - [anon_sym_u8R_DQUOTE] = ACTIONS(2657), - [anon_sym_co_await] = ACTIONS(2655), - [anon_sym_new] = ACTIONS(2655), - [anon_sym_requires] = ACTIONS(2655), - [sym_this] = ACTIONS(2655), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_typename] = ACTIONS(4332), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(145), + [anon_sym_R_DQUOTE] = ACTIONS(159), + [anon_sym_LR_DQUOTE] = ACTIONS(159), + [anon_sym_uR_DQUOTE] = ACTIONS(159), + [anon_sym_UR_DQUOTE] = ACTIONS(159), + [anon_sym_u8R_DQUOTE] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), }, - [924] = { - [sym_identifier] = ACTIONS(2731), - [anon_sym_LPAREN2] = ACTIONS(2733), - [anon_sym_BANG] = ACTIONS(2733), - [anon_sym_TILDE] = ACTIONS(2733), - [anon_sym_DASH] = ACTIONS(2731), - [anon_sym_PLUS] = ACTIONS(2731), - [anon_sym_STAR] = ACTIONS(2733), - [anon_sym_AMP] = ACTIONS(2733), - [anon_sym_SEMI] = ACTIONS(2733), - [anon_sym___extension__] = ACTIONS(2731), - [anon_sym_typedef] = ACTIONS(2731), - [anon_sym_virtual] = ACTIONS(2731), - [anon_sym_extern] = ACTIONS(2731), - [anon_sym___attribute__] = ACTIONS(2731), - [anon_sym___attribute] = ACTIONS(2731), - [anon_sym_COLON_COLON] = ACTIONS(2733), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2733), - [anon_sym___declspec] = ACTIONS(2731), - [anon_sym_LBRACE] = ACTIONS(2733), - [anon_sym_signed] = ACTIONS(2731), - [anon_sym_unsigned] = ACTIONS(2731), - [anon_sym_long] = ACTIONS(2731), - [anon_sym_short] = ACTIONS(2731), - [anon_sym_LBRACK] = ACTIONS(2731), - [anon_sym_static] = ACTIONS(2731), - [anon_sym_register] = ACTIONS(2731), - [anon_sym_inline] = ACTIONS(2731), - [anon_sym___inline] = ACTIONS(2731), - [anon_sym___inline__] = ACTIONS(2731), - [anon_sym___forceinline] = ACTIONS(2731), - [anon_sym_thread_local] = ACTIONS(2731), - [anon_sym___thread] = ACTIONS(2731), - [anon_sym_const] = ACTIONS(2731), - [anon_sym_constexpr] = ACTIONS(2731), - [anon_sym_volatile] = ACTIONS(2731), - [anon_sym_restrict] = ACTIONS(2731), - [anon_sym___restrict__] = ACTIONS(2731), - [anon_sym__Atomic] = ACTIONS(2731), - [anon_sym__Noreturn] = ACTIONS(2731), - [anon_sym_noreturn] = ACTIONS(2731), - [anon_sym__Nonnull] = ACTIONS(2731), - [anon_sym_mutable] = ACTIONS(2731), - [anon_sym_constinit] = ACTIONS(2731), - [anon_sym_consteval] = ACTIONS(2731), - [anon_sym_alignas] = ACTIONS(2731), - [anon_sym__Alignas] = ACTIONS(2731), - [sym_primitive_type] = ACTIONS(2731), - [anon_sym_enum] = ACTIONS(2731), - [anon_sym_class] = ACTIONS(2731), - [anon_sym_struct] = ACTIONS(2731), - [anon_sym_union] = ACTIONS(2731), - [anon_sym_if] = ACTIONS(2731), - [anon_sym_else] = ACTIONS(2731), - [anon_sym_switch] = ACTIONS(2731), - [anon_sym_while] = ACTIONS(2731), - [anon_sym_do] = ACTIONS(2731), - [anon_sym_for] = ACTIONS(2731), - [anon_sym_return] = ACTIONS(2731), - [anon_sym_break] = ACTIONS(2731), - [anon_sym_continue] = ACTIONS(2731), - [anon_sym_goto] = ACTIONS(2731), - [anon_sym___try] = ACTIONS(2731), - [anon_sym___leave] = ACTIONS(2731), - [anon_sym_not] = ACTIONS(2731), - [anon_sym_compl] = ACTIONS(2731), - [anon_sym_DASH_DASH] = ACTIONS(2733), - [anon_sym_PLUS_PLUS] = ACTIONS(2733), - [anon_sym_sizeof] = ACTIONS(2731), - [anon_sym___alignof__] = ACTIONS(2731), - [anon_sym___alignof] = ACTIONS(2731), - [anon_sym__alignof] = ACTIONS(2731), - [anon_sym_alignof] = ACTIONS(2731), - [anon_sym__Alignof] = ACTIONS(2731), - [anon_sym_offsetof] = ACTIONS(2731), - [anon_sym__Generic] = ACTIONS(2731), - [anon_sym_asm] = ACTIONS(2731), - [anon_sym___asm__] = ACTIONS(2731), - [anon_sym___asm] = ACTIONS(2731), - [sym_number_literal] = ACTIONS(2733), - [anon_sym_L_SQUOTE] = ACTIONS(2733), - [anon_sym_u_SQUOTE] = ACTIONS(2733), - [anon_sym_U_SQUOTE] = ACTIONS(2733), - [anon_sym_u8_SQUOTE] = ACTIONS(2733), - [anon_sym_SQUOTE] = ACTIONS(2733), - [anon_sym_L_DQUOTE] = ACTIONS(2733), - [anon_sym_u_DQUOTE] = ACTIONS(2733), - [anon_sym_U_DQUOTE] = ACTIONS(2733), - [anon_sym_u8_DQUOTE] = ACTIONS(2733), - [anon_sym_DQUOTE] = ACTIONS(2733), - [sym_true] = ACTIONS(2731), - [sym_false] = ACTIONS(2731), - [anon_sym_NULL] = ACTIONS(2731), - [anon_sym_nullptr] = ACTIONS(2731), + [989] = { + [sym_expression_statement] = STATE(2760), + [sym_expression] = STATE(4616), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8334), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_type_requirement] = STATE(981), + [sym_compound_requirement] = STATE(981), + [sym__requirement] = STATE(981), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_requirement_seq_repeat1] = STATE(981), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(4326), + [anon_sym___extension__] = ACTIONS(2167), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(4328), + [anon_sym_RBRACE] = ACTIONS(4488), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [anon_sym___alignof__] = ACTIONS(107), + [anon_sym___alignof] = ACTIONS(107), + [anon_sym__alignof] = ACTIONS(107), + [anon_sym_alignof] = ACTIONS(107), + [anon_sym__Alignof] = ACTIONS(107), + [anon_sym_offsetof] = ACTIONS(109), + [anon_sym__Generic] = ACTIONS(111), + [anon_sym_asm] = ACTIONS(113), + [anon_sym___asm__] = ACTIONS(113), + [anon_sym___asm] = ACTIONS(113), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(117), + [anon_sym_u_SQUOTE] = ACTIONS(117), + [anon_sym_U_SQUOTE] = ACTIONS(117), + [anon_sym_u8_SQUOTE] = ACTIONS(117), + [anon_sym_SQUOTE] = ACTIONS(117), + [anon_sym_L_DQUOTE] = ACTIONS(119), + [anon_sym_u_DQUOTE] = ACTIONS(119), + [anon_sym_U_DQUOTE] = ACTIONS(119), + [anon_sym_u8_DQUOTE] = ACTIONS(119), + [anon_sym_DQUOTE] = ACTIONS(119), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(123), + [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2731), - [anon_sym_decltype] = ACTIONS(2731), - [anon_sym_typename] = ACTIONS(2731), - [anon_sym_template] = ACTIONS(2731), - [anon_sym_try] = ACTIONS(2731), - [anon_sym_delete] = ACTIONS(2731), - [anon_sym_throw] = ACTIONS(2731), - [anon_sym_co_return] = ACTIONS(2731), - [anon_sym_co_yield] = ACTIONS(2731), - [anon_sym_R_DQUOTE] = ACTIONS(2733), - [anon_sym_LR_DQUOTE] = ACTIONS(2733), - [anon_sym_uR_DQUOTE] = ACTIONS(2733), - [anon_sym_UR_DQUOTE] = ACTIONS(2733), - [anon_sym_u8R_DQUOTE] = ACTIONS(2733), - [anon_sym_co_await] = ACTIONS(2731), - [anon_sym_new] = ACTIONS(2731), - [anon_sym_requires] = ACTIONS(2731), - [sym_this] = ACTIONS(2731), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_typename] = ACTIONS(4332), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(145), + [anon_sym_R_DQUOTE] = ACTIONS(159), + [anon_sym_LR_DQUOTE] = ACTIONS(159), + [anon_sym_uR_DQUOTE] = ACTIONS(159), + [anon_sym_UR_DQUOTE] = ACTIONS(159), + [anon_sym_u8R_DQUOTE] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), }, - [925] = { - [sym_identifier] = ACTIONS(2627), - [anon_sym_LPAREN2] = ACTIONS(2629), - [anon_sym_BANG] = ACTIONS(2629), - [anon_sym_TILDE] = ACTIONS(2629), - [anon_sym_DASH] = ACTIONS(2627), - [anon_sym_PLUS] = ACTIONS(2627), - [anon_sym_STAR] = ACTIONS(2629), - [anon_sym_AMP] = ACTIONS(2629), - [anon_sym_SEMI] = ACTIONS(2629), - [anon_sym___extension__] = ACTIONS(2627), - [anon_sym_typedef] = ACTIONS(2627), - [anon_sym_virtual] = ACTIONS(2627), - [anon_sym_extern] = ACTIONS(2627), - [anon_sym___attribute__] = ACTIONS(2627), - [anon_sym___attribute] = ACTIONS(2627), - [anon_sym_COLON_COLON] = ACTIONS(2629), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2629), - [anon_sym___declspec] = ACTIONS(2627), - [anon_sym_LBRACE] = ACTIONS(2629), - [anon_sym_signed] = ACTIONS(2627), - [anon_sym_unsigned] = ACTIONS(2627), - [anon_sym_long] = ACTIONS(2627), - [anon_sym_short] = ACTIONS(2627), - [anon_sym_LBRACK] = ACTIONS(2627), - [anon_sym_static] = ACTIONS(2627), - [anon_sym_register] = ACTIONS(2627), - [anon_sym_inline] = ACTIONS(2627), - [anon_sym___inline] = ACTIONS(2627), - [anon_sym___inline__] = ACTIONS(2627), - [anon_sym___forceinline] = ACTIONS(2627), - [anon_sym_thread_local] = ACTIONS(2627), - [anon_sym___thread] = ACTIONS(2627), - [anon_sym_const] = ACTIONS(2627), - [anon_sym_constexpr] = ACTIONS(2627), - [anon_sym_volatile] = ACTIONS(2627), - [anon_sym_restrict] = ACTIONS(2627), - [anon_sym___restrict__] = ACTIONS(2627), - [anon_sym__Atomic] = ACTIONS(2627), - [anon_sym__Noreturn] = ACTIONS(2627), - [anon_sym_noreturn] = ACTIONS(2627), - [anon_sym__Nonnull] = ACTIONS(2627), - [anon_sym_mutable] = ACTIONS(2627), - [anon_sym_constinit] = ACTIONS(2627), - [anon_sym_consteval] = ACTIONS(2627), - [anon_sym_alignas] = ACTIONS(2627), - [anon_sym__Alignas] = ACTIONS(2627), - [sym_primitive_type] = ACTIONS(2627), - [anon_sym_enum] = ACTIONS(2627), - [anon_sym_class] = ACTIONS(2627), - [anon_sym_struct] = ACTIONS(2627), - [anon_sym_union] = ACTIONS(2627), - [anon_sym_if] = ACTIONS(2627), - [anon_sym_else] = ACTIONS(2627), - [anon_sym_switch] = ACTIONS(2627), - [anon_sym_while] = ACTIONS(2627), - [anon_sym_do] = ACTIONS(2627), - [anon_sym_for] = ACTIONS(2627), - [anon_sym_return] = ACTIONS(2627), - [anon_sym_break] = ACTIONS(2627), - [anon_sym_continue] = ACTIONS(2627), - [anon_sym_goto] = ACTIONS(2627), - [anon_sym___try] = ACTIONS(2627), - [anon_sym___leave] = ACTIONS(2627), - [anon_sym_not] = ACTIONS(2627), - [anon_sym_compl] = ACTIONS(2627), - [anon_sym_DASH_DASH] = ACTIONS(2629), - [anon_sym_PLUS_PLUS] = ACTIONS(2629), - [anon_sym_sizeof] = ACTIONS(2627), - [anon_sym___alignof__] = ACTIONS(2627), - [anon_sym___alignof] = ACTIONS(2627), - [anon_sym__alignof] = ACTIONS(2627), - [anon_sym_alignof] = ACTIONS(2627), - [anon_sym__Alignof] = ACTIONS(2627), - [anon_sym_offsetof] = ACTIONS(2627), - [anon_sym__Generic] = ACTIONS(2627), - [anon_sym_asm] = ACTIONS(2627), - [anon_sym___asm__] = ACTIONS(2627), - [anon_sym___asm] = ACTIONS(2627), - [sym_number_literal] = ACTIONS(2629), - [anon_sym_L_SQUOTE] = ACTIONS(2629), - [anon_sym_u_SQUOTE] = ACTIONS(2629), - [anon_sym_U_SQUOTE] = ACTIONS(2629), - [anon_sym_u8_SQUOTE] = ACTIONS(2629), - [anon_sym_SQUOTE] = ACTIONS(2629), - [anon_sym_L_DQUOTE] = ACTIONS(2629), - [anon_sym_u_DQUOTE] = ACTIONS(2629), - [anon_sym_U_DQUOTE] = ACTIONS(2629), - [anon_sym_u8_DQUOTE] = ACTIONS(2629), - [anon_sym_DQUOTE] = ACTIONS(2629), - [sym_true] = ACTIONS(2627), - [sym_false] = ACTIONS(2627), - [anon_sym_NULL] = ACTIONS(2627), - [anon_sym_nullptr] = ACTIONS(2627), + [990] = { + [sym_expression] = STATE(3737), + [sym__string] = STATE(3775), + [sym_conditional_expression] = STATE(3886), + [sym_assignment_expression] = STATE(3886), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(3886), + [sym_binary_expression] = STATE(3886), + [sym_update_expression] = STATE(3886), + [sym_cast_expression] = STATE(3886), + [sym_sizeof_expression] = STATE(3886), + [sym_alignof_expression] = STATE(3886), + [sym_offsetof_expression] = STATE(3886), + [sym_generic_expression] = STATE(3886), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(3886), + [sym_extension_expression] = STATE(3886), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(3886), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(3775), + [sym_concatenated_string] = STATE(3775), + [sym_string_literal] = STATE(2596), + [sym_null] = STATE(3886), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7756), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3886), + [sym_raw_string_literal] = STATE(2596), + [sym_co_await_expression] = STATE(3886), + [sym_new_expression] = STATE(3886), + [sym_delete_expression] = STATE(3886), + [sym_requires_clause] = STATE(3886), + [sym_requires_expression] = STATE(3886), + [sym_lambda_expression] = STATE(3886), + [sym_lambda_capture_specifier] = STATE(5492), + [sym_fold_expression] = STATE(3886), + [sym_parameter_pack_expansion] = STATE(3886), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(7756), + [sym_user_defined_literal] = STATE(3522), + [sym_identifier] = ACTIONS(2619), + [anon_sym_LPAREN2] = ACTIONS(4322), + [anon_sym_BANG] = ACTIONS(1890), + [anon_sym_TILDE] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1892), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym_LT] = ACTIONS(4322), + [anon_sym___extension__] = ACTIONS(2621), + [anon_sym_COLON_COLON] = ACTIONS(1898), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4322), + [anon_sym_LBRACE] = ACTIONS(4322), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_static] = ACTIONS(4324), + [anon_sym_constexpr] = ACTIONS(4324), + [anon_sym_mutable] = ACTIONS(4324), + [anon_sym_consteval] = ACTIONS(4324), + [sym_primitive_type] = ACTIONS(2625), + [anon_sym_not] = ACTIONS(1892), + [anon_sym_compl] = ACTIONS(1892), + [anon_sym_DASH_DASH] = ACTIONS(1902), + [anon_sym_PLUS_PLUS] = ACTIONS(1902), + [anon_sym_sizeof] = ACTIONS(1904), + [anon_sym___alignof__] = ACTIONS(1906), + [anon_sym___alignof] = ACTIONS(1906), + [anon_sym__alignof] = ACTIONS(1906), + [anon_sym_alignof] = ACTIONS(1906), + [anon_sym__Alignof] = ACTIONS(1906), + [anon_sym_offsetof] = ACTIONS(1908), + [anon_sym__Generic] = ACTIONS(1910), + [anon_sym_asm] = ACTIONS(1912), + [anon_sym___asm__] = ACTIONS(1912), + [anon_sym___asm] = ACTIONS(1912), + [anon_sym_DASH_GT] = ACTIONS(4322), + [sym_number_literal] = ACTIONS(1914), + [anon_sym_L_SQUOTE] = ACTIONS(1916), + [anon_sym_u_SQUOTE] = ACTIONS(1916), + [anon_sym_U_SQUOTE] = ACTIONS(1916), + [anon_sym_u8_SQUOTE] = ACTIONS(1916), + [anon_sym_SQUOTE] = ACTIONS(1916), + [anon_sym_L_DQUOTE] = ACTIONS(1918), + [anon_sym_u_DQUOTE] = ACTIONS(1918), + [anon_sym_U_DQUOTE] = ACTIONS(1918), + [anon_sym_u8_DQUOTE] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1918), + [sym_true] = ACTIONS(1920), + [sym_false] = ACTIONS(1920), + [anon_sym_NULL] = ACTIONS(1922), + [anon_sym_nullptr] = ACTIONS(1922), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2627), - [anon_sym_decltype] = ACTIONS(2627), - [anon_sym_typename] = ACTIONS(2627), - [anon_sym_template] = ACTIONS(2627), - [anon_sym_try] = ACTIONS(2627), - [anon_sym_delete] = ACTIONS(2627), - [anon_sym_throw] = ACTIONS(2627), - [anon_sym_co_return] = ACTIONS(2627), - [anon_sym_co_yield] = ACTIONS(2627), - [anon_sym_R_DQUOTE] = ACTIONS(2629), - [anon_sym_LR_DQUOTE] = ACTIONS(2629), - [anon_sym_uR_DQUOTE] = ACTIONS(2629), - [anon_sym_UR_DQUOTE] = ACTIONS(2629), - [anon_sym_u8R_DQUOTE] = ACTIONS(2629), - [anon_sym_co_await] = ACTIONS(2627), - [anon_sym_new] = ACTIONS(2627), - [anon_sym_requires] = ACTIONS(2627), - [sym_this] = ACTIONS(2627), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1924), + [anon_sym_noexcept] = ACTIONS(4324), + [anon_sym_throw] = ACTIONS(4324), + [anon_sym_R_DQUOTE] = ACTIONS(1926), + [anon_sym_LR_DQUOTE] = ACTIONS(1926), + [anon_sym_uR_DQUOTE] = ACTIONS(1926), + [anon_sym_UR_DQUOTE] = ACTIONS(1926), + [anon_sym_u8R_DQUOTE] = ACTIONS(1926), + [anon_sym_co_await] = ACTIONS(1928), + [anon_sym_new] = ACTIONS(1930), + [anon_sym_requires] = ACTIONS(1932), + [sym_this] = ACTIONS(1920), }, - [926] = { - [sym__declaration_modifiers] = STATE(2061), - [sym__declaration_specifiers] = STATE(3966), - [sym_attribute_specifier] = STATE(2061), - [sym_attribute_declaration] = STATE(2061), - [sym_ms_declspec_modifier] = STATE(2061), - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_call_modifier] = STATE(4611), - [sym__declarator] = STATE(6672), - [sym__abstract_declarator] = STATE(6904), - [sym_parenthesized_declarator] = STATE(5998), - [sym_abstract_parenthesized_declarator] = STATE(6092), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_abstract_pointer_declarator] = STATE(6092), - [sym_function_declarator] = STATE(5998), - [sym_abstract_function_declarator] = STATE(6092), - [sym_array_declarator] = STATE(5998), - [sym_abstract_array_declarator] = STATE(6092), - [sym_storage_class_specifier] = STATE(2061), - [sym_type_qualifier] = STATE(2061), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_parameter_list] = STATE(3004), - [sym_parameter_declaration] = STATE(7399), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym_dependent_type] = STATE(2523), - [sym_optional_parameter_declaration] = STATE(7399), - [sym_variadic_parameter_declaration] = STATE(7399), - [sym_reference_declarator] = STATE(5998), - [sym_abstract_reference_declarator] = STATE(6092), - [sym_structured_binding_declarator] = STATE(5998), - [sym__function_declarator_seq] = STATE(6087), - [sym_template_type] = STATE(2406), - [sym_template_function] = STATE(5998), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5781), - [sym_qualified_identifier] = STATE(5998), - [sym_qualified_type_identifier] = STATE(3015), - [sym_operator_name] = STATE(5998), - [aux_sym__declaration_specifiers_repeat1] = STATE(2061), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [sym_identifier] = ACTIONS(4294), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1928), - [anon_sym_RPAREN] = ACTIONS(4296), - [anon_sym_LPAREN2] = ACTIONS(4298), - [anon_sym_TILDE] = ACTIONS(2979), - [anon_sym_STAR] = ACTIONS(4300), - [anon_sym_AMP_AMP] = ACTIONS(4302), - [anon_sym_AMP] = ACTIONS(4304), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1878), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(4306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym___cdecl] = ACTIONS(1808), - [anon_sym___clrcall] = ACTIONS(1808), - [anon_sym___stdcall] = ACTIONS(1808), - [anon_sym___fastcall] = ACTIONS(1808), - [anon_sym___thiscall] = ACTIONS(1808), - [anon_sym___vectorcall] = ACTIONS(1808), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(4308), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2999), - [anon_sym_enum] = ACTIONS(1884), - [anon_sym_class] = ACTIONS(1886), - [anon_sym_struct] = ACTIONS(1888), - [anon_sym_union] = ACTIONS(1890), + [991] = { + [sym_expression] = STATE(4401), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_initializer_list] = STATE(7295), + [sym_initializer_pair] = STATE(7295), + [sym_subscript_designator] = STATE(6849), + [sym_subscript_range_designator] = STATE(6849), + [sym_field_designator] = STATE(6849), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_initializer_pair_repeat1] = STATE(6849), + [sym_identifier] = ACTIONS(4370), + [anon_sym_COMMA] = ACTIONS(4490), + [anon_sym_LPAREN2] = ACTIONS(1252), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(3623), + [anon_sym_RBRACE] = ACTIONS(4492), + [anon_sym_LBRACK] = ACTIONS(4376), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [anon_sym___alignof__] = ACTIONS(107), + [anon_sym___alignof] = ACTIONS(107), + [anon_sym__alignof] = ACTIONS(107), + [anon_sym_alignof] = ACTIONS(107), + [anon_sym__Alignof] = ACTIONS(107), + [anon_sym_offsetof] = ACTIONS(109), + [anon_sym__Generic] = ACTIONS(111), + [anon_sym_asm] = ACTIONS(113), + [anon_sym___asm__] = ACTIONS(113), + [anon_sym___asm] = ACTIONS(113), + [anon_sym_DOT] = ACTIONS(225), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(117), + [anon_sym_u_SQUOTE] = ACTIONS(117), + [anon_sym_U_SQUOTE] = ACTIONS(117), + [anon_sym_u8_SQUOTE] = ACTIONS(117), + [anon_sym_SQUOTE] = ACTIONS(117), + [anon_sym_L_DQUOTE] = ACTIONS(119), + [anon_sym_u_DQUOTE] = ACTIONS(119), + [anon_sym_U_DQUOTE] = ACTIONS(119), + [anon_sym_u8_DQUOTE] = ACTIONS(119), + [anon_sym_DQUOTE] = ACTIONS(119), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(123), + [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(1914), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_operator] = ACTIONS(1852), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(145), + [anon_sym_R_DQUOTE] = ACTIONS(159), + [anon_sym_LR_DQUOTE] = ACTIONS(159), + [anon_sym_uR_DQUOTE] = ACTIONS(159), + [anon_sym_UR_DQUOTE] = ACTIONS(159), + [anon_sym_u8R_DQUOTE] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), }, - [927] = { - [sym_string_literal] = STATE(2624), - [sym_template_argument_list] = STATE(1659), - [sym_raw_string_literal] = STATE(2624), - [aux_sym_sized_type_specifier_repeat1] = STATE(2641), - [sym_identifier] = ACTIONS(4144), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4146), - [anon_sym_COMMA] = ACTIONS(4146), - [anon_sym_LPAREN2] = ACTIONS(4159), - [anon_sym_TILDE] = ACTIONS(4152), - [anon_sym_DASH] = ACTIONS(4154), - [anon_sym_PLUS] = ACTIONS(4154), - [anon_sym_STAR] = ACTIONS(4156), - [anon_sym_SLASH] = ACTIONS(4154), - [anon_sym_PERCENT] = ACTIONS(4154), - [anon_sym_PIPE_PIPE] = ACTIONS(4146), - [anon_sym_AMP_AMP] = ACTIONS(4159), - [anon_sym_PIPE] = ACTIONS(4154), - [anon_sym_CARET] = ACTIONS(4154), - [anon_sym_AMP] = ACTIONS(4156), - [anon_sym_EQ_EQ] = ACTIONS(4146), - [anon_sym_BANG_EQ] = ACTIONS(4146), - [anon_sym_GT] = ACTIONS(4154), - [anon_sym_GT_EQ] = ACTIONS(4146), - [anon_sym_LT_EQ] = ACTIONS(4154), - [anon_sym_LT] = ACTIONS(4162), - [anon_sym_LT_LT] = ACTIONS(4154), - [anon_sym_GT_GT] = ACTIONS(4154), - [anon_sym_SEMI] = ACTIONS(4146), - [anon_sym___extension__] = ACTIONS(4144), - [anon_sym_virtual] = ACTIONS(4144), - [anon_sym_extern] = ACTIONS(4144), - [anon_sym___attribute__] = ACTIONS(4144), - [anon_sym___attribute] = ACTIONS(4144), - [anon_sym_COLON] = ACTIONS(4216), - [anon_sym_COLON_COLON] = ACTIONS(4167), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4152), - [anon_sym___declspec] = ACTIONS(4144), - [anon_sym___based] = ACTIONS(4144), - [anon_sym_LBRACE] = ACTIONS(4172), - [anon_sym_RBRACE] = ACTIONS(4146), - [anon_sym_signed] = ACTIONS(4174), - [anon_sym_unsigned] = ACTIONS(4174), - [anon_sym_long] = ACTIONS(4174), - [anon_sym_short] = ACTIONS(4174), - [anon_sym_LBRACK] = ACTIONS(4156), - [anon_sym_static] = ACTIONS(4144), - [anon_sym_EQ] = ACTIONS(4180), - [anon_sym_register] = ACTIONS(4144), - [anon_sym_inline] = ACTIONS(4144), - [anon_sym___inline] = ACTIONS(4144), - [anon_sym___inline__] = ACTIONS(4144), - [anon_sym___forceinline] = ACTIONS(4144), - [anon_sym_thread_local] = ACTIONS(4144), - [anon_sym___thread] = ACTIONS(4144), - [anon_sym_const] = ACTIONS(4144), - [anon_sym_constexpr] = ACTIONS(4144), - [anon_sym_volatile] = ACTIONS(4144), - [anon_sym_restrict] = ACTIONS(4144), - [anon_sym___restrict__] = ACTIONS(4144), - [anon_sym__Atomic] = ACTIONS(4144), - [anon_sym__Noreturn] = ACTIONS(4144), - [anon_sym_noreturn] = ACTIONS(4144), - [anon_sym__Nonnull] = ACTIONS(4144), - [anon_sym_mutable] = ACTIONS(4144), - [anon_sym_constinit] = ACTIONS(4144), - [anon_sym_consteval] = ACTIONS(4144), - [anon_sym_alignas] = ACTIONS(4144), - [anon_sym__Alignas] = ACTIONS(4144), - [anon_sym_QMARK] = ACTIONS(4146), - [anon_sym_STAR_EQ] = ACTIONS(4182), - [anon_sym_SLASH_EQ] = ACTIONS(4182), - [anon_sym_PERCENT_EQ] = ACTIONS(4182), - [anon_sym_PLUS_EQ] = ACTIONS(4182), - [anon_sym_DASH_EQ] = ACTIONS(4182), - [anon_sym_LT_LT_EQ] = ACTIONS(4182), - [anon_sym_GT_GT_EQ] = ACTIONS(4182), - [anon_sym_AMP_EQ] = ACTIONS(4182), - [anon_sym_CARET_EQ] = ACTIONS(4182), - [anon_sym_PIPE_EQ] = ACTIONS(4182), - [anon_sym_and_eq] = ACTIONS(4180), - [anon_sym_or_eq] = ACTIONS(4180), - [anon_sym_xor_eq] = ACTIONS(4180), - [anon_sym_LT_EQ_GT] = ACTIONS(4146), - [anon_sym_or] = ACTIONS(4154), - [anon_sym_and] = ACTIONS(4154), - [anon_sym_bitor] = ACTIONS(4154), - [anon_sym_xor] = ACTIONS(4154), - [anon_sym_bitand] = ACTIONS(4154), - [anon_sym_not_eq] = ACTIONS(4154), - [anon_sym_DASH_DASH] = ACTIONS(4146), - [anon_sym_PLUS_PLUS] = ACTIONS(4146), - [anon_sym_DOT] = ACTIONS(4154), - [anon_sym_DOT_STAR] = ACTIONS(4146), - [anon_sym_DASH_GT] = ACTIONS(4146), - [anon_sym_L_DQUOTE] = ACTIONS(3623), - [anon_sym_u_DQUOTE] = ACTIONS(3623), - [anon_sym_U_DQUOTE] = ACTIONS(3623), - [anon_sym_u8_DQUOTE] = ACTIONS(3623), - [anon_sym_DQUOTE] = ACTIONS(3623), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4144), - [anon_sym_decltype] = ACTIONS(4144), - [anon_sym_template] = ACTIONS(4144), - [anon_sym_operator] = ACTIONS(4144), - [anon_sym_R_DQUOTE] = ACTIONS(3627), - [anon_sym_LR_DQUOTE] = ACTIONS(3627), - [anon_sym_uR_DQUOTE] = ACTIONS(3627), - [anon_sym_UR_DQUOTE] = ACTIONS(3627), - [anon_sym_u8R_DQUOTE] = ACTIONS(3627), + [992] = { + [sym_expression_statement] = STATE(2760), + [sym_expression] = STATE(4616), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8334), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_type_requirement] = STATE(999), + [sym_compound_requirement] = STATE(999), + [sym__requirement] = STATE(999), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_requirement_seq_repeat1] = STATE(999), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(4326), + [anon_sym___extension__] = ACTIONS(2167), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(4328), + [anon_sym_RBRACE] = ACTIONS(4494), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [anon_sym___alignof__] = ACTIONS(107), + [anon_sym___alignof] = ACTIONS(107), + [anon_sym__alignof] = ACTIONS(107), + [anon_sym_alignof] = ACTIONS(107), + [anon_sym__Alignof] = ACTIONS(107), + [anon_sym_offsetof] = ACTIONS(109), + [anon_sym__Generic] = ACTIONS(111), + [anon_sym_asm] = ACTIONS(113), + [anon_sym___asm__] = ACTIONS(113), + [anon_sym___asm] = ACTIONS(113), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(117), + [anon_sym_u_SQUOTE] = ACTIONS(117), + [anon_sym_U_SQUOTE] = ACTIONS(117), + [anon_sym_u8_SQUOTE] = ACTIONS(117), + [anon_sym_SQUOTE] = ACTIONS(117), + [anon_sym_L_DQUOTE] = ACTIONS(119), + [anon_sym_u_DQUOTE] = ACTIONS(119), + [anon_sym_U_DQUOTE] = ACTIONS(119), + [anon_sym_u8_DQUOTE] = ACTIONS(119), + [anon_sym_DQUOTE] = ACTIONS(119), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(123), + [anon_sym_nullptr] = ACTIONS(123), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_typename] = ACTIONS(4332), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(145), + [anon_sym_R_DQUOTE] = ACTIONS(159), + [anon_sym_LR_DQUOTE] = ACTIONS(159), + [anon_sym_uR_DQUOTE] = ACTIONS(159), + [anon_sym_UR_DQUOTE] = ACTIONS(159), + [anon_sym_u8R_DQUOTE] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), }, - [928] = { - [sym_expression] = STATE(3326), - [sym__string] = STATE(2950), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(2950), - [sym_concatenated_string] = STATE(2950), - [sym_string_literal] = STATE(2034), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(2034), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), + [993] = { + [sym_expression] = STATE(4465), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(7587), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_initializer_list] = STATE(7799), + [sym_initializer_pair] = STATE(7799), + [sym_subscript_designator] = STATE(6849), + [sym_subscript_range_designator] = STATE(6849), + [sym_field_designator] = STATE(6849), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_initializer_pair_repeat1] = STATE(6849), + [sym_identifier] = ACTIONS(4370), + [anon_sym_LPAREN2] = ACTIONS(1252), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(3623), + [anon_sym_RBRACE] = ACTIONS(4496), + [anon_sym_LBRACK] = ACTIONS(4376), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [anon_sym___alignof__] = ACTIONS(107), + [anon_sym___alignof] = ACTIONS(107), + [anon_sym__alignof] = ACTIONS(107), + [anon_sym_alignof] = ACTIONS(107), + [anon_sym__Alignof] = ACTIONS(107), + [anon_sym_offsetof] = ACTIONS(109), + [anon_sym__Generic] = ACTIONS(111), + [anon_sym_asm] = ACTIONS(113), + [anon_sym___asm__] = ACTIONS(113), + [anon_sym___asm] = ACTIONS(113), + [anon_sym_DOT] = ACTIONS(225), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(117), + [anon_sym_u_SQUOTE] = ACTIONS(117), + [anon_sym_U_SQUOTE] = ACTIONS(117), + [anon_sym_u8_SQUOTE] = ACTIONS(117), + [anon_sym_SQUOTE] = ACTIONS(117), + [anon_sym_L_DQUOTE] = ACTIONS(119), + [anon_sym_u_DQUOTE] = ACTIONS(119), + [anon_sym_U_DQUOTE] = ACTIONS(119), + [anon_sym_u8_DQUOTE] = ACTIONS(119), + [anon_sym_DQUOTE] = ACTIONS(119), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(123), + [anon_sym_nullptr] = ACTIONS(123), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(145), + [anon_sym_R_DQUOTE] = ACTIONS(159), + [anon_sym_LR_DQUOTE] = ACTIONS(159), + [anon_sym_uR_DQUOTE] = ACTIONS(159), + [anon_sym_UR_DQUOTE] = ACTIONS(159), + [anon_sym_u8R_DQUOTE] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), + }, + [994] = { + [sym_expression] = STATE(3348), + [sym__string] = STATE(2917), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(2917), + [sym_concatenated_string] = STATE(2917), + [sym_string_literal] = STATE(2114), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(2114), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), [sym_identifier] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(4310), + [anon_sym_LPAREN2] = ACTIONS(4322), [anon_sym_BANG] = ACTIONS(2535), [anon_sym_TILDE] = ACTIONS(2535), [anon_sym_DASH] = ACTIONS(2533), [anon_sym_PLUS] = ACTIONS(2533), - [anon_sym_STAR] = ACTIONS(4312), - [anon_sym_AMP] = ACTIONS(4312), - [anon_sym_LT] = ACTIONS(4310), + [anon_sym_STAR] = ACTIONS(4366), + [anon_sym_AMP] = ACTIONS(4366), + [anon_sym_LT] = ACTIONS(4322), [anon_sym___extension__] = ACTIONS(2537), [anon_sym_COLON_COLON] = ACTIONS(2539), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4310), - [anon_sym_LBRACE] = ACTIONS(4310), - [anon_sym_LBRACK] = ACTIONS(1450), - [anon_sym_static] = ACTIONS(4314), - [anon_sym_constexpr] = ACTIONS(4314), - [anon_sym_mutable] = ACTIONS(4314), - [anon_sym_consteval] = ACTIONS(4314), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4322), + [anon_sym_LBRACE] = ACTIONS(4322), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_static] = ACTIONS(4324), + [anon_sym_constexpr] = ACTIONS(4324), + [anon_sym_mutable] = ACTIONS(4324), + [anon_sym_consteval] = ACTIONS(4324), [sym_primitive_type] = ACTIONS(1956), [anon_sym_not] = ACTIONS(2533), [anon_sym_compl] = ACTIONS(2533), - [anon_sym_DASH_DASH] = ACTIONS(4316), - [anon_sym_PLUS_PLUS] = ACTIONS(4316), + [anon_sym_DASH_DASH] = ACTIONS(4498), + [anon_sym_PLUS_PLUS] = ACTIONS(4498), [anon_sym_sizeof] = ACTIONS(2541), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), @@ -171279,7 +179340,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(1966), [anon_sym___asm__] = ACTIONS(1966), [anon_sym___asm] = ACTIONS(1966), - [anon_sym_DASH_GT] = ACTIONS(4310), + [anon_sym_DASH_GT] = ACTIONS(4322), [sym_number_literal] = ACTIONS(2002), [anon_sym_L_SQUOTE] = ACTIONS(2004), [anon_sym_u_SQUOTE] = ACTIONS(2004), @@ -171297,10 +179358,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1976), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(2543), - [anon_sym_noexcept] = ACTIONS(4314), - [anon_sym_throw] = ACTIONS(4314), + [anon_sym_noexcept] = ACTIONS(4324), + [anon_sym_throw] = ACTIONS(4324), [anon_sym_R_DQUOTE] = ACTIONS(2010), [anon_sym_LR_DQUOTE] = ACTIONS(2010), [anon_sym_uR_DQUOTE] = ACTIONS(2010), @@ -171311,181 +179372,511 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [929] = { - [sym_expression] = STATE(3632), - [sym__string] = STATE(3714), - [sym_conditional_expression] = STATE(3908), - [sym_assignment_expression] = STATE(3908), - [sym_pointer_expression] = STATE(3506), - [sym_unary_expression] = STATE(3908), - [sym_binary_expression] = STATE(3908), - [sym_update_expression] = STATE(3908), - [sym_cast_expression] = STATE(3908), - [sym_sizeof_expression] = STATE(3908), - [sym_alignof_expression] = STATE(3908), - [sym_offsetof_expression] = STATE(3908), - [sym_generic_expression] = STATE(3908), - [sym_subscript_expression] = STATE(3506), - [sym_call_expression] = STATE(3506), - [sym_gnu_asm_expression] = STATE(3908), - [sym_extension_expression] = STATE(3908), - [sym_field_expression] = STATE(3506), - [sym_compound_literal_expression] = STATE(3908), - [sym_parenthesized_expression] = STATE(3506), - [sym_char_literal] = STATE(3714), - [sym_concatenated_string] = STATE(3714), - [sym_string_literal] = STATE(2566), - [sym_null] = STATE(3908), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7868), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3908), - [sym_raw_string_literal] = STATE(2566), - [sym_co_await_expression] = STATE(3908), - [sym_new_expression] = STATE(3908), - [sym_delete_expression] = STATE(3908), - [sym_requires_clause] = STATE(3908), - [sym_requires_expression] = STATE(3908), - [sym_lambda_expression] = STATE(3908), - [sym_lambda_capture_specifier] = STATE(5415), - [sym_fold_expression] = STATE(3908), - [sym_parameter_pack_expansion] = STATE(3908), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3506), - [sym_qualified_type_identifier] = STATE(7868), - [sym_user_defined_literal] = STATE(3506), - [sym_identifier] = ACTIONS(2605), - [anon_sym_LPAREN2] = ACTIONS(4310), - [anon_sym_BANG] = ACTIONS(1870), - [anon_sym_TILDE] = ACTIONS(1870), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_PLUS] = ACTIONS(1872), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym_LT] = ACTIONS(4310), - [anon_sym___extension__] = ACTIONS(2607), - [anon_sym_COLON_COLON] = ACTIONS(1880), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4310), - [anon_sym_LBRACE] = ACTIONS(4310), - [anon_sym_LBRACK] = ACTIONS(1450), - [anon_sym_static] = ACTIONS(4314), - [anon_sym_constexpr] = ACTIONS(4314), - [anon_sym_mutable] = ACTIONS(4314), - [anon_sym_consteval] = ACTIONS(4314), - [sym_primitive_type] = ACTIONS(2611), - [anon_sym_not] = ACTIONS(1872), - [anon_sym_compl] = ACTIONS(1872), - [anon_sym_DASH_DASH] = ACTIONS(1892), - [anon_sym_PLUS_PLUS] = ACTIONS(1892), - [anon_sym_sizeof] = ACTIONS(1894), - [anon_sym___alignof__] = ACTIONS(1896), - [anon_sym___alignof] = ACTIONS(1896), - [anon_sym__alignof] = ACTIONS(1896), - [anon_sym_alignof] = ACTIONS(1896), - [anon_sym__Alignof] = ACTIONS(1896), - [anon_sym_offsetof] = ACTIONS(1898), - [anon_sym__Generic] = ACTIONS(1900), - [anon_sym_asm] = ACTIONS(1902), - [anon_sym___asm__] = ACTIONS(1902), - [anon_sym___asm] = ACTIONS(1902), - [anon_sym_DASH_GT] = ACTIONS(4310), - [sym_number_literal] = ACTIONS(1904), - [anon_sym_L_SQUOTE] = ACTIONS(1906), - [anon_sym_u_SQUOTE] = ACTIONS(1906), - [anon_sym_U_SQUOTE] = ACTIONS(1906), - [anon_sym_u8_SQUOTE] = ACTIONS(1906), - [anon_sym_SQUOTE] = ACTIONS(1906), - [anon_sym_L_DQUOTE] = ACTIONS(1908), - [anon_sym_u_DQUOTE] = ACTIONS(1908), - [anon_sym_U_DQUOTE] = ACTIONS(1908), - [anon_sym_u8_DQUOTE] = ACTIONS(1908), - [anon_sym_DQUOTE] = ACTIONS(1908), - [sym_true] = ACTIONS(1910), - [sym_false] = ACTIONS(1910), - [anon_sym_NULL] = ACTIONS(1912), - [anon_sym_nullptr] = ACTIONS(1912), + [995] = { + [sym_expression] = STATE(3350), + [sym__string] = STATE(2917), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(2917), + [sym_concatenated_string] = STATE(2917), + [sym_string_literal] = STATE(2114), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(2114), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), + [sym_identifier] = ACTIONS(1990), + [anon_sym_LPAREN2] = ACTIONS(4322), + [anon_sym_BANG] = ACTIONS(2535), + [anon_sym_TILDE] = ACTIONS(2535), + [anon_sym_DASH] = ACTIONS(2533), + [anon_sym_PLUS] = ACTIONS(2533), + [anon_sym_STAR] = ACTIONS(4366), + [anon_sym_AMP] = ACTIONS(4366), + [anon_sym_LT] = ACTIONS(4322), + [anon_sym___extension__] = ACTIONS(2537), + [anon_sym_COLON_COLON] = ACTIONS(2539), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4322), + [anon_sym_LBRACE] = ACTIONS(4322), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_static] = ACTIONS(4324), + [anon_sym_constexpr] = ACTIONS(4324), + [anon_sym_mutable] = ACTIONS(4324), + [anon_sym_consteval] = ACTIONS(4324), + [sym_primitive_type] = ACTIONS(1956), + [anon_sym_not] = ACTIONS(2533), + [anon_sym_compl] = ACTIONS(2533), + [anon_sym_DASH_DASH] = ACTIONS(4498), + [anon_sym_PLUS_PLUS] = ACTIONS(4498), + [anon_sym_sizeof] = ACTIONS(2541), + [anon_sym___alignof__] = ACTIONS(1960), + [anon_sym___alignof] = ACTIONS(1960), + [anon_sym__alignof] = ACTIONS(1960), + [anon_sym_alignof] = ACTIONS(1960), + [anon_sym__Alignof] = ACTIONS(1960), + [anon_sym_offsetof] = ACTIONS(1962), + [anon_sym__Generic] = ACTIONS(1964), + [anon_sym_asm] = ACTIONS(1966), + [anon_sym___asm__] = ACTIONS(1966), + [anon_sym___asm] = ACTIONS(1966), + [anon_sym_DASH_GT] = ACTIONS(4322), + [sym_number_literal] = ACTIONS(2002), + [anon_sym_L_SQUOTE] = ACTIONS(2004), + [anon_sym_u_SQUOTE] = ACTIONS(2004), + [anon_sym_U_SQUOTE] = ACTIONS(2004), + [anon_sym_u8_SQUOTE] = ACTIONS(2004), + [anon_sym_SQUOTE] = ACTIONS(2004), + [anon_sym_L_DQUOTE] = ACTIONS(2006), + [anon_sym_u_DQUOTE] = ACTIONS(2006), + [anon_sym_U_DQUOTE] = ACTIONS(2006), + [anon_sym_u8_DQUOTE] = ACTIONS(2006), + [anon_sym_DQUOTE] = ACTIONS(2006), + [sym_true] = ACTIONS(1974), + [sym_false] = ACTIONS(1974), + [anon_sym_NULL] = ACTIONS(1976), + [anon_sym_nullptr] = ACTIONS(1976), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1916), - [anon_sym_noexcept] = ACTIONS(4314), - [anon_sym_throw] = ACTIONS(4314), - [anon_sym_R_DQUOTE] = ACTIONS(1918), - [anon_sym_LR_DQUOTE] = ACTIONS(1918), - [anon_sym_uR_DQUOTE] = ACTIONS(1918), - [anon_sym_UR_DQUOTE] = ACTIONS(1918), - [anon_sym_u8R_DQUOTE] = ACTIONS(1918), - [anon_sym_co_await] = ACTIONS(1920), - [anon_sym_new] = ACTIONS(1922), - [anon_sym_requires] = ACTIONS(1924), - [sym_this] = ACTIONS(1910), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(2543), + [anon_sym_noexcept] = ACTIONS(4324), + [anon_sym_throw] = ACTIONS(4324), + [anon_sym_R_DQUOTE] = ACTIONS(2010), + [anon_sym_LR_DQUOTE] = ACTIONS(2010), + [anon_sym_uR_DQUOTE] = ACTIONS(2010), + [anon_sym_UR_DQUOTE] = ACTIONS(2010), + [anon_sym_u8R_DQUOTE] = ACTIONS(2010), + [anon_sym_co_await] = ACTIONS(2545), + [anon_sym_new] = ACTIONS(2014), + [anon_sym_requires] = ACTIONS(1988), + [sym_this] = ACTIONS(1974), }, - [930] = { - [sym_expression_statement] = STATE(2752), - [sym_expression] = STATE(4466), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8471), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_type_requirement] = STATE(935), - [sym_compound_requirement] = STATE(935), - [sym__requirement] = STATE(935), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_requirement_seq_repeat1] = STATE(935), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), + [996] = { + [sym_expression] = STATE(2826), + [sym__string] = STATE(2887), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(2887), + [sym_concatenated_string] = STATE(2887), + [sym_string_literal] = STATE(1947), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(1947), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), + [sym_identifier] = ACTIONS(1990), + [anon_sym_LPAREN2] = ACTIONS(4322), + [anon_sym_BANG] = ACTIONS(1948), + [anon_sym_TILDE] = ACTIONS(1948), + [anon_sym_DASH] = ACTIONS(1946), + [anon_sym_PLUS] = ACTIONS(1946), + [anon_sym_STAR] = ACTIONS(4346), + [anon_sym_AMP] = ACTIONS(4346), + [anon_sym_LT] = ACTIONS(4322), + [anon_sym___extension__] = ACTIONS(1950), + [anon_sym_COLON_COLON] = ACTIONS(1952), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4322), + [anon_sym_LBRACE] = ACTIONS(4322), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_static] = ACTIONS(4324), + [anon_sym_constexpr] = ACTIONS(4324), + [anon_sym_mutable] = ACTIONS(4324), + [anon_sym_consteval] = ACTIONS(4324), + [sym_primitive_type] = ACTIONS(1956), + [anon_sym_not] = ACTIONS(1946), + [anon_sym_compl] = ACTIONS(1946), + [anon_sym_DASH_DASH] = ACTIONS(4348), + [anon_sym_PLUS_PLUS] = ACTIONS(4348), + [anon_sym_sizeof] = ACTIONS(1958), + [anon_sym___alignof__] = ACTIONS(1960), + [anon_sym___alignof] = ACTIONS(1960), + [anon_sym__alignof] = ACTIONS(1960), + [anon_sym_alignof] = ACTIONS(1960), + [anon_sym__Alignof] = ACTIONS(1960), + [anon_sym_offsetof] = ACTIONS(1962), + [anon_sym__Generic] = ACTIONS(1964), + [anon_sym_asm] = ACTIONS(1966), + [anon_sym___asm__] = ACTIONS(1966), + [anon_sym___asm] = ACTIONS(1966), + [anon_sym_DASH_GT] = ACTIONS(4322), + [sym_number_literal] = ACTIONS(1968), + [anon_sym_L_SQUOTE] = ACTIONS(1970), + [anon_sym_u_SQUOTE] = ACTIONS(1970), + [anon_sym_U_SQUOTE] = ACTIONS(1970), + [anon_sym_u8_SQUOTE] = ACTIONS(1970), + [anon_sym_SQUOTE] = ACTIONS(1970), + [anon_sym_L_DQUOTE] = ACTIONS(1972), + [anon_sym_u_DQUOTE] = ACTIONS(1972), + [anon_sym_U_DQUOTE] = ACTIONS(1972), + [anon_sym_u8_DQUOTE] = ACTIONS(1972), + [anon_sym_DQUOTE] = ACTIONS(1972), + [sym_true] = ACTIONS(1974), + [sym_false] = ACTIONS(1974), + [anon_sym_NULL] = ACTIONS(1976), + [anon_sym_nullptr] = ACTIONS(1976), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1980), + [anon_sym_noexcept] = ACTIONS(4324), + [anon_sym_throw] = ACTIONS(4324), + [anon_sym_R_DQUOTE] = ACTIONS(1982), + [anon_sym_LR_DQUOTE] = ACTIONS(1982), + [anon_sym_uR_DQUOTE] = ACTIONS(1982), + [anon_sym_UR_DQUOTE] = ACTIONS(1982), + [anon_sym_u8R_DQUOTE] = ACTIONS(1982), + [anon_sym_co_await] = ACTIONS(1984), + [anon_sym_new] = ACTIONS(1986), + [anon_sym_requires] = ACTIONS(1988), + [sym_this] = ACTIONS(1974), + }, + [997] = { + [sym_expression] = STATE(4571), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3728), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3728), + [sym_call_expression] = STATE(3728), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3728), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3728), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3728), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3728), + [sym_identifier] = ACTIONS(3883), + [anon_sym_LPAREN2] = ACTIONS(4322), + [anon_sym_BANG] = ACTIONS(3887), + [anon_sym_TILDE] = ACTIONS(3887), + [anon_sym_DASH] = ACTIONS(3885), + [anon_sym_PLUS] = ACTIONS(3885), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_LT] = ACTIONS(4322), + [anon_sym___extension__] = ACTIONS(3889), + [anon_sym_COLON_COLON] = ACTIONS(3891), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4322), + [anon_sym_LBRACE] = ACTIONS(4322), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_static] = ACTIONS(4324), + [anon_sym_constexpr] = ACTIONS(4324), + [anon_sym_mutable] = ACTIONS(4324), + [anon_sym_consteval] = ACTIONS(4324), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3885), + [anon_sym_compl] = ACTIONS(3885), + [anon_sym_DASH_DASH] = ACTIONS(3905), + [anon_sym_PLUS_PLUS] = ACTIONS(3905), + [anon_sym_sizeof] = ACTIONS(3893), + [anon_sym___alignof__] = ACTIONS(107), + [anon_sym___alignof] = ACTIONS(107), + [anon_sym__alignof] = ACTIONS(107), + [anon_sym_alignof] = ACTIONS(107), + [anon_sym__Alignof] = ACTIONS(107), + [anon_sym_offsetof] = ACTIONS(109), + [anon_sym__Generic] = ACTIONS(111), + [anon_sym_asm] = ACTIONS(113), + [anon_sym___asm__] = ACTIONS(113), + [anon_sym___asm] = ACTIONS(113), + [anon_sym_DASH_GT] = ACTIONS(4322), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(117), + [anon_sym_u_SQUOTE] = ACTIONS(117), + [anon_sym_U_SQUOTE] = ACTIONS(117), + [anon_sym_u8_SQUOTE] = ACTIONS(117), + [anon_sym_SQUOTE] = ACTIONS(117), + [anon_sym_L_DQUOTE] = ACTIONS(119), + [anon_sym_u_DQUOTE] = ACTIONS(119), + [anon_sym_U_DQUOTE] = ACTIONS(119), + [anon_sym_u8_DQUOTE] = ACTIONS(119), + [anon_sym_DQUOTE] = ACTIONS(119), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(123), + [anon_sym_nullptr] = ACTIONS(123), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3895), + [anon_sym_noexcept] = ACTIONS(4324), + [anon_sym_throw] = ACTIONS(4324), + [anon_sym_R_DQUOTE] = ACTIONS(159), + [anon_sym_LR_DQUOTE] = ACTIONS(159), + [anon_sym_uR_DQUOTE] = ACTIONS(159), + [anon_sym_UR_DQUOTE] = ACTIONS(159), + [anon_sym_u8R_DQUOTE] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(3897), + [anon_sym_new] = ACTIONS(3873), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), + }, + [998] = { + [sym_expression] = STATE(4573), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3728), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3728), + [sym_call_expression] = STATE(3728), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3728), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3728), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3728), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3728), + [sym_identifier] = ACTIONS(3883), + [anon_sym_LPAREN2] = ACTIONS(4322), + [anon_sym_BANG] = ACTIONS(3887), + [anon_sym_TILDE] = ACTIONS(3887), + [anon_sym_DASH] = ACTIONS(3885), + [anon_sym_PLUS] = ACTIONS(3885), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_LT] = ACTIONS(4322), + [anon_sym___extension__] = ACTIONS(3889), + [anon_sym_COLON_COLON] = ACTIONS(3891), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4322), + [anon_sym_LBRACE] = ACTIONS(4322), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_static] = ACTIONS(4324), + [anon_sym_constexpr] = ACTIONS(4324), + [anon_sym_mutable] = ACTIONS(4324), + [anon_sym_consteval] = ACTIONS(4324), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3885), + [anon_sym_compl] = ACTIONS(3885), + [anon_sym_DASH_DASH] = ACTIONS(3905), + [anon_sym_PLUS_PLUS] = ACTIONS(3905), + [anon_sym_sizeof] = ACTIONS(3893), + [anon_sym___alignof__] = ACTIONS(107), + [anon_sym___alignof] = ACTIONS(107), + [anon_sym__alignof] = ACTIONS(107), + [anon_sym_alignof] = ACTIONS(107), + [anon_sym__Alignof] = ACTIONS(107), + [anon_sym_offsetof] = ACTIONS(109), + [anon_sym__Generic] = ACTIONS(111), + [anon_sym_asm] = ACTIONS(113), + [anon_sym___asm__] = ACTIONS(113), + [anon_sym___asm] = ACTIONS(113), + [anon_sym_DASH_GT] = ACTIONS(4322), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(117), + [anon_sym_u_SQUOTE] = ACTIONS(117), + [anon_sym_U_SQUOTE] = ACTIONS(117), + [anon_sym_u8_SQUOTE] = ACTIONS(117), + [anon_sym_SQUOTE] = ACTIONS(117), + [anon_sym_L_DQUOTE] = ACTIONS(119), + [anon_sym_u_DQUOTE] = ACTIONS(119), + [anon_sym_U_DQUOTE] = ACTIONS(119), + [anon_sym_u8_DQUOTE] = ACTIONS(119), + [anon_sym_DQUOTE] = ACTIONS(119), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(123), + [anon_sym_nullptr] = ACTIONS(123), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3895), + [anon_sym_noexcept] = ACTIONS(4324), + [anon_sym_throw] = ACTIONS(4324), + [anon_sym_R_DQUOTE] = ACTIONS(159), + [anon_sym_LR_DQUOTE] = ACTIONS(159), + [anon_sym_uR_DQUOTE] = ACTIONS(159), + [anon_sym_UR_DQUOTE] = ACTIONS(159), + [anon_sym_u8R_DQUOTE] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(3897), + [anon_sym_new] = ACTIONS(3873), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), + }, + [999] = { + [sym_expression_statement] = STATE(2760), + [sym_expression] = STATE(4616), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8334), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_type_requirement] = STATE(979), + [sym_compound_requirement] = STATE(979), + [sym__requirement] = STATE(979), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_requirement_seq_repeat1] = STATE(979), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(4318), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(4326), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4320), - [anon_sym_RBRACE] = ACTIONS(4322), + [anon_sym_LBRACE] = ACTIONS(4328), + [anon_sym_RBRACE] = ACTIONS(4500), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -171518,8 +179909,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_typename] = ACTIONS(4324), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_typename] = ACTIONS(4332), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -171531,181 +179922,181 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [931] = { - [sym_string_literal] = STATE(2624), - [sym_template_argument_list] = STATE(1659), - [sym_raw_string_literal] = STATE(2624), - [aux_sym_sized_type_specifier_repeat1] = STATE(2641), - [sym_identifier] = ACTIONS(4144), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4146), - [anon_sym_COMMA] = ACTIONS(4146), - [anon_sym_RPAREN] = ACTIONS(4146), - [anon_sym_LPAREN2] = ACTIONS(4159), - [anon_sym_TILDE] = ACTIONS(4152), - [anon_sym_DASH] = ACTIONS(4154), - [anon_sym_PLUS] = ACTIONS(4154), - [anon_sym_STAR] = ACTIONS(4156), - [anon_sym_SLASH] = ACTIONS(4154), - [anon_sym_PERCENT] = ACTIONS(4154), - [anon_sym_PIPE_PIPE] = ACTIONS(4146), - [anon_sym_AMP_AMP] = ACTIONS(4159), - [anon_sym_PIPE] = ACTIONS(4154), - [anon_sym_CARET] = ACTIONS(4154), - [anon_sym_AMP] = ACTIONS(4156), - [anon_sym_EQ_EQ] = ACTIONS(4146), - [anon_sym_BANG_EQ] = ACTIONS(4146), - [anon_sym_GT] = ACTIONS(4154), - [anon_sym_GT_EQ] = ACTIONS(4146), - [anon_sym_LT_EQ] = ACTIONS(4154), - [anon_sym_LT] = ACTIONS(4162), - [anon_sym_LT_LT] = ACTIONS(4154), - [anon_sym_GT_GT] = ACTIONS(4154), - [anon_sym_SEMI] = ACTIONS(4146), - [anon_sym___extension__] = ACTIONS(4144), - [anon_sym_virtual] = ACTIONS(4144), - [anon_sym_extern] = ACTIONS(4144), - [anon_sym___attribute__] = ACTIONS(4144), - [anon_sym___attribute] = ACTIONS(4144), - [anon_sym_COLON_COLON] = ACTIONS(4167), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4152), - [anon_sym___declspec] = ACTIONS(4144), - [anon_sym___based] = ACTIONS(4144), - [anon_sym_LBRACE] = ACTIONS(4172), - [anon_sym_signed] = ACTIONS(4174), - [anon_sym_unsigned] = ACTIONS(4174), - [anon_sym_long] = ACTIONS(4174), - [anon_sym_short] = ACTIONS(4174), - [anon_sym_LBRACK] = ACTIONS(4156), - [anon_sym_static] = ACTIONS(4144), - [anon_sym_EQ] = ACTIONS(4180), - [anon_sym_register] = ACTIONS(4144), - [anon_sym_inline] = ACTIONS(4144), - [anon_sym___inline] = ACTIONS(4144), - [anon_sym___inline__] = ACTIONS(4144), - [anon_sym___forceinline] = ACTIONS(4144), - [anon_sym_thread_local] = ACTIONS(4144), - [anon_sym___thread] = ACTIONS(4144), - [anon_sym_const] = ACTIONS(4144), - [anon_sym_constexpr] = ACTIONS(4144), - [anon_sym_volatile] = ACTIONS(4144), - [anon_sym_restrict] = ACTIONS(4144), - [anon_sym___restrict__] = ACTIONS(4144), - [anon_sym__Atomic] = ACTIONS(4144), - [anon_sym__Noreturn] = ACTIONS(4144), - [anon_sym_noreturn] = ACTIONS(4144), - [anon_sym__Nonnull] = ACTIONS(4144), - [anon_sym_mutable] = ACTIONS(4144), - [anon_sym_constinit] = ACTIONS(4144), - [anon_sym_consteval] = ACTIONS(4144), - [anon_sym_alignas] = ACTIONS(4144), - [anon_sym__Alignas] = ACTIONS(4144), - [anon_sym_QMARK] = ACTIONS(4146), - [anon_sym_STAR_EQ] = ACTIONS(4182), - [anon_sym_SLASH_EQ] = ACTIONS(4182), - [anon_sym_PERCENT_EQ] = ACTIONS(4182), - [anon_sym_PLUS_EQ] = ACTIONS(4182), - [anon_sym_DASH_EQ] = ACTIONS(4182), - [anon_sym_LT_LT_EQ] = ACTIONS(4182), - [anon_sym_GT_GT_EQ] = ACTIONS(4182), - [anon_sym_AMP_EQ] = ACTIONS(4182), - [anon_sym_CARET_EQ] = ACTIONS(4182), - [anon_sym_PIPE_EQ] = ACTIONS(4182), - [anon_sym_and_eq] = ACTIONS(4180), - [anon_sym_or_eq] = ACTIONS(4180), - [anon_sym_xor_eq] = ACTIONS(4180), - [anon_sym_LT_EQ_GT] = ACTIONS(4146), - [anon_sym_or] = ACTIONS(4154), - [anon_sym_and] = ACTIONS(4154), - [anon_sym_bitor] = ACTIONS(4154), - [anon_sym_xor] = ACTIONS(4154), - [anon_sym_bitand] = ACTIONS(4154), - [anon_sym_not_eq] = ACTIONS(4154), - [anon_sym_DASH_DASH] = ACTIONS(4146), - [anon_sym_PLUS_PLUS] = ACTIONS(4146), - [anon_sym_DOT] = ACTIONS(4154), - [anon_sym_DOT_STAR] = ACTIONS(4146), - [anon_sym_DASH_GT] = ACTIONS(4146), - [anon_sym_L_DQUOTE] = ACTIONS(3623), - [anon_sym_u_DQUOTE] = ACTIONS(3623), - [anon_sym_U_DQUOTE] = ACTIONS(3623), - [anon_sym_u8_DQUOTE] = ACTIONS(3623), - [anon_sym_DQUOTE] = ACTIONS(3623), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4144), - [anon_sym_decltype] = ACTIONS(4144), - [anon_sym_template] = ACTIONS(4144), - [anon_sym_operator] = ACTIONS(4144), - [anon_sym_R_DQUOTE] = ACTIONS(3627), - [anon_sym_LR_DQUOTE] = ACTIONS(3627), - [anon_sym_uR_DQUOTE] = ACTIONS(3627), - [anon_sym_UR_DQUOTE] = ACTIONS(3627), - [anon_sym_u8R_DQUOTE] = ACTIONS(3627), + [1000] = { + [sym_expression] = STATE(4323), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(4322), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_LT] = ACTIONS(4322), + [anon_sym___extension__] = ACTIONS(2167), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4322), + [anon_sym_LBRACE] = ACTIONS(4322), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_static] = ACTIONS(4324), + [anon_sym_constexpr] = ACTIONS(4324), + [anon_sym_mutable] = ACTIONS(4324), + [anon_sym_consteval] = ACTIONS(4324), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [anon_sym___alignof__] = ACTIONS(107), + [anon_sym___alignof] = ACTIONS(107), + [anon_sym__alignof] = ACTIONS(107), + [anon_sym_alignof] = ACTIONS(107), + [anon_sym__Alignof] = ACTIONS(107), + [anon_sym_offsetof] = ACTIONS(109), + [anon_sym__Generic] = ACTIONS(111), + [anon_sym_asm] = ACTIONS(113), + [anon_sym___asm__] = ACTIONS(113), + [anon_sym___asm] = ACTIONS(113), + [anon_sym_DASH_GT] = ACTIONS(4322), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(117), + [anon_sym_u_SQUOTE] = ACTIONS(117), + [anon_sym_U_SQUOTE] = ACTIONS(117), + [anon_sym_u8_SQUOTE] = ACTIONS(117), + [anon_sym_SQUOTE] = ACTIONS(117), + [anon_sym_L_DQUOTE] = ACTIONS(119), + [anon_sym_u_DQUOTE] = ACTIONS(119), + [anon_sym_U_DQUOTE] = ACTIONS(119), + [anon_sym_u8_DQUOTE] = ACTIONS(119), + [anon_sym_DQUOTE] = ACTIONS(119), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(123), + [anon_sym_nullptr] = ACTIONS(123), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(145), + [anon_sym_noexcept] = ACTIONS(4324), + [anon_sym_throw] = ACTIONS(4324), + [anon_sym_R_DQUOTE] = ACTIONS(159), + [anon_sym_LR_DQUOTE] = ACTIONS(159), + [anon_sym_uR_DQUOTE] = ACTIONS(159), + [anon_sym_UR_DQUOTE] = ACTIONS(159), + [anon_sym_u8R_DQUOTE] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), }, - [932] = { - [sym_expression] = STATE(4396), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_initializer_list] = STATE(7209), - [sym_initializer_pair] = STATE(7209), - [sym_subscript_designator] = STATE(6728), - [sym_subscript_range_designator] = STATE(6728), - [sym_field_designator] = STATE(6728), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_initializer_pair_repeat1] = STATE(6728), - [sym_identifier] = ACTIONS(4326), - [anon_sym_COMMA] = ACTIONS(4328), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1001] = { + [sym_expression_statement] = STATE(2760), + [sym_expression] = STATE(4616), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8334), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_type_requirement] = STATE(1006), + [sym_compound_requirement] = STATE(1006), + [sym__requirement] = STATE(1006), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_requirement_seq_repeat1] = STATE(1006), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(4326), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3615), - [anon_sym_RBRACE] = ACTIONS(4330), - [anon_sym_LBRACK] = ACTIONS(4332), - [sym_primitive_type] = ACTIONS(2028), + [anon_sym_LBRACE] = ACTIONS(4328), + [anon_sym_RBRACE] = ACTIONS(4502), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -171721,7 +180112,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(113), [anon_sym___asm__] = ACTIONS(113), [anon_sym___asm] = ACTIONS(113), - [anon_sym_DOT] = ACTIONS(225), [sym_number_literal] = ACTIONS(227), [anon_sym_L_SQUOTE] = ACTIONS(117), [anon_sym_u_SQUOTE] = ACTIONS(117), @@ -171739,7 +180129,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_typename] = ACTIONS(4332), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -171751,184 +180142,406 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [933] = { - [sym_string_literal] = STATE(2624), - [sym_template_argument_list] = STATE(1659), - [sym_raw_string_literal] = STATE(2624), - [aux_sym_sized_type_specifier_repeat1] = STATE(2641), - [sym_identifier] = ACTIONS(4144), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4146), - [anon_sym_COMMA] = ACTIONS(4146), - [anon_sym_LPAREN2] = ACTIONS(4159), - [anon_sym_TILDE] = ACTIONS(4152), - [anon_sym_DASH] = ACTIONS(4154), - [anon_sym_PLUS] = ACTIONS(4154), - [anon_sym_STAR] = ACTIONS(4156), - [anon_sym_SLASH] = ACTIONS(4154), - [anon_sym_PERCENT] = ACTIONS(4154), - [anon_sym_PIPE_PIPE] = ACTIONS(4146), - [anon_sym_AMP_AMP] = ACTIONS(4159), - [anon_sym_PIPE] = ACTIONS(4154), - [anon_sym_CARET] = ACTIONS(4154), - [anon_sym_AMP] = ACTIONS(4156), - [anon_sym_EQ_EQ] = ACTIONS(4146), - [anon_sym_BANG_EQ] = ACTIONS(4146), - [anon_sym_GT] = ACTIONS(4154), - [anon_sym_GT_EQ] = ACTIONS(4146), - [anon_sym_LT_EQ] = ACTIONS(4154), - [anon_sym_LT] = ACTIONS(4162), - [anon_sym_LT_LT] = ACTIONS(4154), - [anon_sym_GT_GT] = ACTIONS(4154), - [anon_sym_SEMI] = ACTIONS(4146), - [anon_sym___extension__] = ACTIONS(4144), - [anon_sym_virtual] = ACTIONS(4144), - [anon_sym_extern] = ACTIONS(4144), - [anon_sym___attribute__] = ACTIONS(4144), - [anon_sym___attribute] = ACTIONS(4144), - [anon_sym_COLON] = ACTIONS(4220), - [anon_sym_COLON_COLON] = ACTIONS(4167), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4152), - [anon_sym___declspec] = ACTIONS(4144), - [anon_sym___based] = ACTIONS(4144), - [anon_sym_LBRACE] = ACTIONS(4172), - [anon_sym_signed] = ACTIONS(4174), - [anon_sym_unsigned] = ACTIONS(4174), - [anon_sym_long] = ACTIONS(4174), - [anon_sym_short] = ACTIONS(4174), - [anon_sym_LBRACK] = ACTIONS(4156), - [anon_sym_static] = ACTIONS(4144), - [anon_sym_EQ] = ACTIONS(4180), - [anon_sym_register] = ACTIONS(4144), - [anon_sym_inline] = ACTIONS(4144), - [anon_sym___inline] = ACTIONS(4144), - [anon_sym___inline__] = ACTIONS(4144), - [anon_sym___forceinline] = ACTIONS(4144), - [anon_sym_thread_local] = ACTIONS(4144), - [anon_sym___thread] = ACTIONS(4144), - [anon_sym_const] = ACTIONS(4144), - [anon_sym_constexpr] = ACTIONS(4144), - [anon_sym_volatile] = ACTIONS(4144), - [anon_sym_restrict] = ACTIONS(4144), - [anon_sym___restrict__] = ACTIONS(4144), - [anon_sym__Atomic] = ACTIONS(4144), - [anon_sym__Noreturn] = ACTIONS(4144), - [anon_sym_noreturn] = ACTIONS(4144), - [anon_sym__Nonnull] = ACTIONS(4144), - [anon_sym_mutable] = ACTIONS(4144), - [anon_sym_constinit] = ACTIONS(4144), - [anon_sym_consteval] = ACTIONS(4144), - [anon_sym_alignas] = ACTIONS(4144), - [anon_sym__Alignas] = ACTIONS(4144), - [anon_sym_QMARK] = ACTIONS(4146), - [anon_sym_STAR_EQ] = ACTIONS(4182), - [anon_sym_SLASH_EQ] = ACTIONS(4182), - [anon_sym_PERCENT_EQ] = ACTIONS(4182), - [anon_sym_PLUS_EQ] = ACTIONS(4182), - [anon_sym_DASH_EQ] = ACTIONS(4182), - [anon_sym_LT_LT_EQ] = ACTIONS(4182), - [anon_sym_GT_GT_EQ] = ACTIONS(4182), - [anon_sym_AMP_EQ] = ACTIONS(4182), - [anon_sym_CARET_EQ] = ACTIONS(4182), - [anon_sym_PIPE_EQ] = ACTIONS(4182), - [anon_sym_and_eq] = ACTIONS(4180), - [anon_sym_or_eq] = ACTIONS(4180), - [anon_sym_xor_eq] = ACTIONS(4180), - [anon_sym_LT_EQ_GT] = ACTIONS(4146), - [anon_sym_or] = ACTIONS(4154), - [anon_sym_and] = ACTIONS(4154), - [anon_sym_bitor] = ACTIONS(4154), - [anon_sym_xor] = ACTIONS(4154), - [anon_sym_bitand] = ACTIONS(4154), - [anon_sym_not_eq] = ACTIONS(4154), - [anon_sym_DASH_DASH] = ACTIONS(4146), - [anon_sym_PLUS_PLUS] = ACTIONS(4146), - [anon_sym_DOT] = ACTIONS(4154), - [anon_sym_DOT_STAR] = ACTIONS(4146), - [anon_sym_DASH_GT] = ACTIONS(4146), - [anon_sym_L_DQUOTE] = ACTIONS(3623), - [anon_sym_u_DQUOTE] = ACTIONS(3623), - [anon_sym_U_DQUOTE] = ACTIONS(3623), - [anon_sym_u8_DQUOTE] = ACTIONS(3623), - [anon_sym_DQUOTE] = ACTIONS(3623), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4144), - [anon_sym_decltype] = ACTIONS(4144), - [anon_sym_template] = ACTIONS(4144), - [anon_sym_operator] = ACTIONS(4144), - [anon_sym_R_DQUOTE] = ACTIONS(3627), - [anon_sym_LR_DQUOTE] = ACTIONS(3627), - [anon_sym_uR_DQUOTE] = ACTIONS(3627), - [anon_sym_UR_DQUOTE] = ACTIONS(3627), - [anon_sym_u8R_DQUOTE] = ACTIONS(3627), + [1002] = { + [sym_string_literal] = STATE(2425), + [sym_template_argument_list] = STATE(1607), + [sym_raw_string_literal] = STATE(2425), + [aux_sym_sized_type_specifier_repeat1] = STATE(2660), + [sym_identifier] = ACTIONS(4164), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4179), + [anon_sym_COMMA] = ACTIONS(4179), + [anon_sym_RPAREN] = ACTIONS(4179), + [anon_sym_LPAREN2] = ACTIONS(4179), + [anon_sym_TILDE] = ACTIONS(4172), + [anon_sym_DASH] = ACTIONS(4174), + [anon_sym_PLUS] = ACTIONS(4174), + [anon_sym_STAR] = ACTIONS(4176), + [anon_sym_SLASH] = ACTIONS(4174), + [anon_sym_PERCENT] = ACTIONS(4174), + [anon_sym_PIPE_PIPE] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4179), + [anon_sym_PIPE] = ACTIONS(4174), + [anon_sym_CARET] = ACTIONS(4174), + [anon_sym_AMP] = ACTIONS(4176), + [anon_sym_EQ_EQ] = ACTIONS(4166), + [anon_sym_BANG_EQ] = ACTIONS(4166), + [anon_sym_GT] = ACTIONS(4174), + [anon_sym_GT_EQ] = ACTIONS(4166), + [anon_sym_LT_EQ] = ACTIONS(4174), + [anon_sym_LT] = ACTIONS(4504), + [anon_sym_LT_LT] = ACTIONS(4174), + [anon_sym_GT_GT] = ACTIONS(4174), + [anon_sym___extension__] = ACTIONS(4164), + [anon_sym_virtual] = ACTIONS(4164), + [anon_sym_extern] = ACTIONS(4164), + [anon_sym___attribute__] = ACTIONS(4164), + [anon_sym___attribute] = ACTIONS(4164), + [anon_sym_COLON_COLON] = ACTIONS(4187), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4172), + [anon_sym___declspec] = ACTIONS(4164), + [anon_sym___based] = ACTIONS(4164), + [anon_sym_LBRACE] = ACTIONS(4192), + [anon_sym_signed] = ACTIONS(4194), + [anon_sym_unsigned] = ACTIONS(4194), + [anon_sym_long] = ACTIONS(4194), + [anon_sym_short] = ACTIONS(4194), + [anon_sym_LBRACK] = ACTIONS(4176), + [anon_sym_static] = ACTIONS(4164), + [anon_sym_EQ] = ACTIONS(4176), + [anon_sym_register] = ACTIONS(4164), + [anon_sym_inline] = ACTIONS(4164), + [anon_sym___inline] = ACTIONS(4164), + [anon_sym___inline__] = ACTIONS(4164), + [anon_sym___forceinline] = ACTIONS(4164), + [anon_sym_thread_local] = ACTIONS(4164), + [anon_sym___thread] = ACTIONS(4164), + [anon_sym_const] = ACTIONS(4164), + [anon_sym_constexpr] = ACTIONS(4164), + [anon_sym_volatile] = ACTIONS(4164), + [anon_sym_restrict] = ACTIONS(4164), + [anon_sym___restrict__] = ACTIONS(4164), + [anon_sym__Atomic] = ACTIONS(4164), + [anon_sym__Noreturn] = ACTIONS(4164), + [anon_sym_noreturn] = ACTIONS(4164), + [anon_sym__Nonnull] = ACTIONS(4164), + [anon_sym_mutable] = ACTIONS(4164), + [anon_sym_constinit] = ACTIONS(4164), + [anon_sym_consteval] = ACTIONS(4164), + [anon_sym_alignas] = ACTIONS(4164), + [anon_sym__Alignas] = ACTIONS(4164), + [anon_sym_QMARK] = ACTIONS(4166), + [anon_sym_STAR_EQ] = ACTIONS(4166), + [anon_sym_SLASH_EQ] = ACTIONS(4166), + [anon_sym_PERCENT_EQ] = ACTIONS(4166), + [anon_sym_PLUS_EQ] = ACTIONS(4166), + [anon_sym_DASH_EQ] = ACTIONS(4166), + [anon_sym_LT_LT_EQ] = ACTIONS(4166), + [anon_sym_GT_GT_EQ] = ACTIONS(4166), + [anon_sym_AMP_EQ] = ACTIONS(4166), + [anon_sym_CARET_EQ] = ACTIONS(4166), + [anon_sym_PIPE_EQ] = ACTIONS(4166), + [anon_sym_and_eq] = ACTIONS(4507), + [anon_sym_or_eq] = ACTIONS(4507), + [anon_sym_xor_eq] = ACTIONS(4507), + [anon_sym_LT_EQ_GT] = ACTIONS(4166), + [anon_sym_or] = ACTIONS(4174), + [anon_sym_and] = ACTIONS(4174), + [anon_sym_bitor] = ACTIONS(4174), + [anon_sym_xor] = ACTIONS(4174), + [anon_sym_bitand] = ACTIONS(4174), + [anon_sym_not_eq] = ACTIONS(4174), + [anon_sym_DASH_DASH] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4174), + [anon_sym_DOT_STAR] = ACTIONS(4166), + [anon_sym_DASH_GT] = ACTIONS(4174), + [anon_sym_L_DQUOTE] = ACTIONS(4509), + [anon_sym_u_DQUOTE] = ACTIONS(4509), + [anon_sym_U_DQUOTE] = ACTIONS(4509), + [anon_sym_u8_DQUOTE] = ACTIONS(4509), + [anon_sym_DQUOTE] = ACTIONS(4509), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4164), + [anon_sym_decltype] = ACTIONS(4164), + [anon_sym_template] = ACTIONS(4164), + [anon_sym_operator] = ACTIONS(4164), + [anon_sym_R_DQUOTE] = ACTIONS(4511), + [anon_sym_LR_DQUOTE] = ACTIONS(4511), + [anon_sym_uR_DQUOTE] = ACTIONS(4511), + [anon_sym_UR_DQUOTE] = ACTIONS(4511), + [anon_sym_u8R_DQUOTE] = ACTIONS(4511), + [anon_sym_DASH_GT_STAR] = ACTIONS(4166), }, - [934] = { - [sym_expression] = STATE(4116), - [sym__string] = STATE(4199), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(2935), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(2935), - [sym_call_expression] = STATE(2935), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(2935), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(2935), - [sym_char_literal] = STATE(4199), - [sym_concatenated_string] = STATE(4199), - [sym_string_literal] = STATE(3059), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3059), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2935), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(2935), - [sym_identifier] = ACTIONS(4334), - [anon_sym_LPAREN2] = ACTIONS(4310), - [anon_sym_BANG] = ACTIONS(3609), - [anon_sym_TILDE] = ACTIONS(3609), - [anon_sym_DASH] = ACTIONS(3607), - [anon_sym_PLUS] = ACTIONS(3607), - [anon_sym_STAR] = ACTIONS(4336), - [anon_sym_AMP] = ACTIONS(4336), - [anon_sym_LT] = ACTIONS(4310), - [anon_sym___extension__] = ACTIONS(3611), - [anon_sym_COLON_COLON] = ACTIONS(3613), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4310), - [anon_sym_LBRACE] = ACTIONS(4310), - [anon_sym_LBRACK] = ACTIONS(1450), - [anon_sym_static] = ACTIONS(4314), - [anon_sym_constexpr] = ACTIONS(4314), - [anon_sym_mutable] = ACTIONS(4314), - [anon_sym_consteval] = ACTIONS(4314), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3607), - [anon_sym_compl] = ACTIONS(3607), - [anon_sym_DASH_DASH] = ACTIONS(4338), - [anon_sym_PLUS_PLUS] = ACTIONS(4338), - [anon_sym_sizeof] = ACTIONS(3617), + [1003] = { + [sym_expression] = STATE(3254), + [sym__string] = STATE(3549), + [sym_conditional_expression] = STATE(3636), + [sym_assignment_expression] = STATE(3636), + [sym_pointer_expression] = STATE(3696), + [sym_unary_expression] = STATE(3636), + [sym_binary_expression] = STATE(3636), + [sym_update_expression] = STATE(3636), + [sym_cast_expression] = STATE(3636), + [sym_sizeof_expression] = STATE(3636), + [sym_alignof_expression] = STATE(3636), + [sym_offsetof_expression] = STATE(3636), + [sym_generic_expression] = STATE(3636), + [sym_subscript_expression] = STATE(3696), + [sym_call_expression] = STATE(3696), + [sym_gnu_asm_expression] = STATE(3636), + [sym_extension_expression] = STATE(3636), + [sym_field_expression] = STATE(3696), + [sym_compound_literal_expression] = STATE(3636), + [sym_parenthesized_expression] = STATE(3696), + [sym_char_literal] = STATE(3549), + [sym_concatenated_string] = STATE(3549), + [sym_string_literal] = STATE(2433), + [sym_null] = STATE(3636), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7883), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3636), + [sym_raw_string_literal] = STATE(2433), + [sym_co_await_expression] = STATE(3636), + [sym_new_expression] = STATE(3636), + [sym_delete_expression] = STATE(3636), + [sym_requires_clause] = STATE(3636), + [sym_requires_expression] = STATE(3636), + [sym_lambda_expression] = STATE(3636), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3636), + [sym_parameter_pack_expansion] = STATE(3636), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5769), + [sym_qualified_identifier] = STATE(3696), + [sym_qualified_type_identifier] = STATE(7883), + [sym_user_defined_literal] = STATE(3696), + [sym_identifier] = ACTIONS(2483), + [anon_sym_LPAREN2] = ACTIONS(4322), + [anon_sym_BANG] = ACTIONS(2487), + [anon_sym_TILDE] = ACTIONS(2487), + [anon_sym_DASH] = ACTIONS(2485), + [anon_sym_PLUS] = ACTIONS(2485), + [anon_sym_STAR] = ACTIONS(3136), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym_LT] = ACTIONS(4322), + [anon_sym___extension__] = ACTIONS(2489), + [anon_sym_COLON_COLON] = ACTIONS(2491), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4322), + [anon_sym_LBRACE] = ACTIONS(4322), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_static] = ACTIONS(4324), + [anon_sym_constexpr] = ACTIONS(4324), + [anon_sym_mutable] = ACTIONS(4324), + [anon_sym_consteval] = ACTIONS(4324), + [sym_primitive_type] = ACTIONS(2495), + [anon_sym_not] = ACTIONS(2485), + [anon_sym_compl] = ACTIONS(2485), + [anon_sym_DASH_DASH] = ACTIONS(4513), + [anon_sym_PLUS_PLUS] = ACTIONS(4513), + [anon_sym_sizeof] = ACTIONS(2497), + [anon_sym___alignof__] = ACTIONS(2499), + [anon_sym___alignof] = ACTIONS(2499), + [anon_sym__alignof] = ACTIONS(2499), + [anon_sym_alignof] = ACTIONS(2499), + [anon_sym__Alignof] = ACTIONS(2499), + [anon_sym_offsetof] = ACTIONS(2501), + [anon_sym__Generic] = ACTIONS(2503), + [anon_sym_asm] = ACTIONS(2505), + [anon_sym___asm__] = ACTIONS(2505), + [anon_sym___asm] = ACTIONS(2505), + [anon_sym_DASH_GT] = ACTIONS(4322), + [sym_number_literal] = ACTIONS(2507), + [anon_sym_L_SQUOTE] = ACTIONS(2509), + [anon_sym_u_SQUOTE] = ACTIONS(2509), + [anon_sym_U_SQUOTE] = ACTIONS(2509), + [anon_sym_u8_SQUOTE] = ACTIONS(2509), + [anon_sym_SQUOTE] = ACTIONS(2509), + [anon_sym_L_DQUOTE] = ACTIONS(2511), + [anon_sym_u_DQUOTE] = ACTIONS(2511), + [anon_sym_U_DQUOTE] = ACTIONS(2511), + [anon_sym_u8_DQUOTE] = ACTIONS(2511), + [anon_sym_DQUOTE] = ACTIONS(2511), + [sym_true] = ACTIONS(2513), + [sym_false] = ACTIONS(2513), + [anon_sym_NULL] = ACTIONS(2515), + [anon_sym_nullptr] = ACTIONS(2515), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(2517), + [anon_sym_noexcept] = ACTIONS(4324), + [anon_sym_throw] = ACTIONS(4324), + [anon_sym_R_DQUOTE] = ACTIONS(2519), + [anon_sym_LR_DQUOTE] = ACTIONS(2519), + [anon_sym_uR_DQUOTE] = ACTIONS(2519), + [anon_sym_UR_DQUOTE] = ACTIONS(2519), + [anon_sym_u8R_DQUOTE] = ACTIONS(2519), + [anon_sym_co_await] = ACTIONS(2521), + [anon_sym_new] = ACTIONS(2523), + [anon_sym_requires] = ACTIONS(2525), + [sym_this] = ACTIONS(2513), + }, + [1004] = { + [sym_expression] = STATE(3273), + [sym__string] = STATE(3549), + [sym_conditional_expression] = STATE(3636), + [sym_assignment_expression] = STATE(3636), + [sym_pointer_expression] = STATE(3696), + [sym_unary_expression] = STATE(3636), + [sym_binary_expression] = STATE(3636), + [sym_update_expression] = STATE(3636), + [sym_cast_expression] = STATE(3636), + [sym_sizeof_expression] = STATE(3636), + [sym_alignof_expression] = STATE(3636), + [sym_offsetof_expression] = STATE(3636), + [sym_generic_expression] = STATE(3636), + [sym_subscript_expression] = STATE(3696), + [sym_call_expression] = STATE(3696), + [sym_gnu_asm_expression] = STATE(3636), + [sym_extension_expression] = STATE(3636), + [sym_field_expression] = STATE(3696), + [sym_compound_literal_expression] = STATE(3636), + [sym_parenthesized_expression] = STATE(3696), + [sym_char_literal] = STATE(3549), + [sym_concatenated_string] = STATE(3549), + [sym_string_literal] = STATE(2433), + [sym_null] = STATE(3636), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7883), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3636), + [sym_raw_string_literal] = STATE(2433), + [sym_co_await_expression] = STATE(3636), + [sym_new_expression] = STATE(3636), + [sym_delete_expression] = STATE(3636), + [sym_requires_clause] = STATE(3636), + [sym_requires_expression] = STATE(3636), + [sym_lambda_expression] = STATE(3636), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3636), + [sym_parameter_pack_expansion] = STATE(3636), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5769), + [sym_qualified_identifier] = STATE(3696), + [sym_qualified_type_identifier] = STATE(7883), + [sym_user_defined_literal] = STATE(3696), + [sym_identifier] = ACTIONS(2483), + [anon_sym_LPAREN2] = ACTIONS(4322), + [anon_sym_BANG] = ACTIONS(2487), + [anon_sym_TILDE] = ACTIONS(2487), + [anon_sym_DASH] = ACTIONS(2485), + [anon_sym_PLUS] = ACTIONS(2485), + [anon_sym_STAR] = ACTIONS(3136), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym_LT] = ACTIONS(4322), + [anon_sym___extension__] = ACTIONS(2489), + [anon_sym_COLON_COLON] = ACTIONS(2491), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4322), + [anon_sym_LBRACE] = ACTIONS(4322), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_static] = ACTIONS(4324), + [anon_sym_constexpr] = ACTIONS(4324), + [anon_sym_mutable] = ACTIONS(4324), + [anon_sym_consteval] = ACTIONS(4324), + [sym_primitive_type] = ACTIONS(2495), + [anon_sym_not] = ACTIONS(2485), + [anon_sym_compl] = ACTIONS(2485), + [anon_sym_DASH_DASH] = ACTIONS(4513), + [anon_sym_PLUS_PLUS] = ACTIONS(4513), + [anon_sym_sizeof] = ACTIONS(2497), + [anon_sym___alignof__] = ACTIONS(2499), + [anon_sym___alignof] = ACTIONS(2499), + [anon_sym__alignof] = ACTIONS(2499), + [anon_sym_alignof] = ACTIONS(2499), + [anon_sym__Alignof] = ACTIONS(2499), + [anon_sym_offsetof] = ACTIONS(2501), + [anon_sym__Generic] = ACTIONS(2503), + [anon_sym_asm] = ACTIONS(2505), + [anon_sym___asm__] = ACTIONS(2505), + [anon_sym___asm] = ACTIONS(2505), + [anon_sym_DASH_GT] = ACTIONS(4322), + [sym_number_literal] = ACTIONS(2507), + [anon_sym_L_SQUOTE] = ACTIONS(2509), + [anon_sym_u_SQUOTE] = ACTIONS(2509), + [anon_sym_U_SQUOTE] = ACTIONS(2509), + [anon_sym_u8_SQUOTE] = ACTIONS(2509), + [anon_sym_SQUOTE] = ACTIONS(2509), + [anon_sym_L_DQUOTE] = ACTIONS(2511), + [anon_sym_u_DQUOTE] = ACTIONS(2511), + [anon_sym_U_DQUOTE] = ACTIONS(2511), + [anon_sym_u8_DQUOTE] = ACTIONS(2511), + [anon_sym_DQUOTE] = ACTIONS(2511), + [sym_true] = ACTIONS(2513), + [sym_false] = ACTIONS(2513), + [anon_sym_NULL] = ACTIONS(2515), + [anon_sym_nullptr] = ACTIONS(2515), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(2517), + [anon_sym_noexcept] = ACTIONS(4324), + [anon_sym_throw] = ACTIONS(4324), + [anon_sym_R_DQUOTE] = ACTIONS(2519), + [anon_sym_LR_DQUOTE] = ACTIONS(2519), + [anon_sym_uR_DQUOTE] = ACTIONS(2519), + [anon_sym_UR_DQUOTE] = ACTIONS(2519), + [anon_sym_u8R_DQUOTE] = ACTIONS(2519), + [anon_sym_co_await] = ACTIONS(2521), + [anon_sym_new] = ACTIONS(2523), + [anon_sym_requires] = ACTIONS(2525), + [sym_this] = ACTIONS(2513), + }, + [1005] = { + [sym_expression_statement] = STATE(2760), + [sym_expression] = STATE(4616), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8334), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_type_requirement] = STATE(988), + [sym_compound_requirement] = STATE(988), + [sym__requirement] = STATE(988), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_requirement_seq_repeat1] = STATE(988), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(4326), + [anon_sym___extension__] = ACTIONS(2167), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(4328), + [anon_sym_RBRACE] = ACTIONS(4515), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -171939,103 +180552,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(113), [anon_sym___asm__] = ACTIONS(113), [anon_sym___asm] = ACTIONS(113), - [anon_sym_DASH_GT] = ACTIONS(4310), - [sym_number_literal] = ACTIONS(3619), - [anon_sym_L_SQUOTE] = ACTIONS(3621), - [anon_sym_u_SQUOTE] = ACTIONS(3621), - [anon_sym_U_SQUOTE] = ACTIONS(3621), - [anon_sym_u8_SQUOTE] = ACTIONS(3621), - [anon_sym_SQUOTE] = ACTIONS(3621), - [anon_sym_L_DQUOTE] = ACTIONS(3623), - [anon_sym_u_DQUOTE] = ACTIONS(3623), - [anon_sym_U_DQUOTE] = ACTIONS(3623), - [anon_sym_u8_DQUOTE] = ACTIONS(3623), - [anon_sym_DQUOTE] = ACTIONS(3623), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(117), + [anon_sym_u_SQUOTE] = ACTIONS(117), + [anon_sym_U_SQUOTE] = ACTIONS(117), + [anon_sym_u8_SQUOTE] = ACTIONS(117), + [anon_sym_SQUOTE] = ACTIONS(117), + [anon_sym_L_DQUOTE] = ACTIONS(119), + [anon_sym_u_DQUOTE] = ACTIONS(119), + [anon_sym_U_DQUOTE] = ACTIONS(119), + [anon_sym_u8_DQUOTE] = ACTIONS(119), + [anon_sym_DQUOTE] = ACTIONS(119), [sym_true] = ACTIONS(229), [sym_false] = ACTIONS(229), [anon_sym_NULL] = ACTIONS(123), [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3625), - [anon_sym_noexcept] = ACTIONS(4314), - [anon_sym_throw] = ACTIONS(4314), - [anon_sym_R_DQUOTE] = ACTIONS(3627), - [anon_sym_LR_DQUOTE] = ACTIONS(3627), - [anon_sym_uR_DQUOTE] = ACTIONS(3627), - [anon_sym_UR_DQUOTE] = ACTIONS(3627), - [anon_sym_u8R_DQUOTE] = ACTIONS(3627), - [anon_sym_co_await] = ACTIONS(3629), - [anon_sym_new] = ACTIONS(3631), - [anon_sym_requires] = ACTIONS(3633), + [anon_sym_typename] = ACTIONS(4332), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(145), + [anon_sym_R_DQUOTE] = ACTIONS(159), + [anon_sym_LR_DQUOTE] = ACTIONS(159), + [anon_sym_uR_DQUOTE] = ACTIONS(159), + [anon_sym_UR_DQUOTE] = ACTIONS(159), + [anon_sym_u8R_DQUOTE] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), + [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [935] = { - [sym_expression_statement] = STATE(2752), - [sym_expression] = STATE(4466), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8471), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_type_requirement] = STATE(981), - [sym_compound_requirement] = STATE(981), - [sym__requirement] = STATE(981), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_requirement_seq_repeat1] = STATE(981), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1006] = { + [sym_expression_statement] = STATE(2760), + [sym_expression] = STATE(4616), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8334), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_type_requirement] = STATE(979), + [sym_compound_requirement] = STATE(979), + [sym__requirement] = STATE(979), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_requirement_seq_repeat1] = STATE(979), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(4318), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(4326), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4320), - [anon_sym_RBRACE] = ACTIONS(4340), + [anon_sym_LBRACE] = ACTIONS(4328), + [anon_sym_RBRACE] = ACTIONS(4517), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -172068,8 +180679,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_typename] = ACTIONS(4324), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_typename] = ACTIONS(4332), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -172081,74 +180692,184 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [936] = { - [sym_expression] = STATE(4119), - [sym__string] = STATE(4199), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(2935), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(2935), - [sym_call_expression] = STATE(2935), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(2935), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(2935), - [sym_char_literal] = STATE(4199), - [sym_concatenated_string] = STATE(4199), - [sym_string_literal] = STATE(3059), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3059), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2935), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(2935), - [sym_identifier] = ACTIONS(4334), - [anon_sym_LPAREN2] = ACTIONS(4310), - [anon_sym_BANG] = ACTIONS(3609), - [anon_sym_TILDE] = ACTIONS(3609), - [anon_sym_DASH] = ACTIONS(3607), - [anon_sym_PLUS] = ACTIONS(3607), - [anon_sym_STAR] = ACTIONS(4336), - [anon_sym_AMP] = ACTIONS(4336), - [anon_sym_LT] = ACTIONS(4310), - [anon_sym___extension__] = ACTIONS(3611), - [anon_sym_COLON_COLON] = ACTIONS(3613), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4310), - [anon_sym_LBRACE] = ACTIONS(4310), - [anon_sym_LBRACK] = ACTIONS(1450), - [anon_sym_static] = ACTIONS(4314), - [anon_sym_constexpr] = ACTIONS(4314), - [anon_sym_mutable] = ACTIONS(4314), - [anon_sym_consteval] = ACTIONS(4314), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3607), - [anon_sym_compl] = ACTIONS(3607), - [anon_sym_DASH_DASH] = ACTIONS(4338), - [anon_sym_PLUS_PLUS] = ACTIONS(4338), - [anon_sym_sizeof] = ACTIONS(3617), + [1007] = { + [sym_string_literal] = STATE(2657), + [sym_template_argument_list] = STATE(1686), + [sym_raw_string_literal] = STATE(2657), + [aux_sym_sized_type_specifier_repeat1] = STATE(2660), + [sym_identifier] = ACTIONS(4164), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4179), + [anon_sym_COMMA] = ACTIONS(4179), + [anon_sym_RPAREN] = ACTIONS(4179), + [anon_sym_LPAREN2] = ACTIONS(4179), + [anon_sym_TILDE] = ACTIONS(4172), + [anon_sym_DASH] = ACTIONS(4174), + [anon_sym_PLUS] = ACTIONS(4174), + [anon_sym_STAR] = ACTIONS(4176), + [anon_sym_SLASH] = ACTIONS(4174), + [anon_sym_PERCENT] = ACTIONS(4174), + [anon_sym_PIPE_PIPE] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4179), + [anon_sym_PIPE] = ACTIONS(4174), + [anon_sym_CARET] = ACTIONS(4174), + [anon_sym_AMP] = ACTIONS(4176), + [anon_sym_EQ_EQ] = ACTIONS(4166), + [anon_sym_BANG_EQ] = ACTIONS(4166), + [anon_sym_GT] = ACTIONS(4174), + [anon_sym_GT_EQ] = ACTIONS(4166), + [anon_sym_LT_EQ] = ACTIONS(4174), + [anon_sym_LT] = ACTIONS(4182), + [anon_sym_LT_LT] = ACTIONS(4174), + [anon_sym_GT_GT] = ACTIONS(4174), + [anon_sym___extension__] = ACTIONS(4164), + [anon_sym_virtual] = ACTIONS(4164), + [anon_sym_extern] = ACTIONS(4164), + [anon_sym___attribute__] = ACTIONS(4164), + [anon_sym___attribute] = ACTIONS(4164), + [anon_sym_COLON_COLON] = ACTIONS(4187), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4172), + [anon_sym___declspec] = ACTIONS(4164), + [anon_sym___based] = ACTIONS(4164), + [anon_sym_LBRACE] = ACTIONS(4192), + [anon_sym_signed] = ACTIONS(4194), + [anon_sym_unsigned] = ACTIONS(4194), + [anon_sym_long] = ACTIONS(4194), + [anon_sym_short] = ACTIONS(4194), + [anon_sym_LBRACK] = ACTIONS(4176), + [anon_sym_static] = ACTIONS(4164), + [anon_sym_EQ] = ACTIONS(4164), + [anon_sym_register] = ACTIONS(4164), + [anon_sym_inline] = ACTIONS(4164), + [anon_sym___inline] = ACTIONS(4164), + [anon_sym___inline__] = ACTIONS(4164), + [anon_sym___forceinline] = ACTIONS(4164), + [anon_sym_thread_local] = ACTIONS(4164), + [anon_sym___thread] = ACTIONS(4164), + [anon_sym_const] = ACTIONS(4164), + [anon_sym_constexpr] = ACTIONS(4164), + [anon_sym_volatile] = ACTIONS(4164), + [anon_sym_restrict] = ACTIONS(4164), + [anon_sym___restrict__] = ACTIONS(4164), + [anon_sym__Atomic] = ACTIONS(4164), + [anon_sym__Noreturn] = ACTIONS(4164), + [anon_sym_noreturn] = ACTIONS(4164), + [anon_sym__Nonnull] = ACTIONS(4164), + [anon_sym_mutable] = ACTIONS(4164), + [anon_sym_constinit] = ACTIONS(4164), + [anon_sym_consteval] = ACTIONS(4164), + [anon_sym_alignas] = ACTIONS(4164), + [anon_sym__Alignas] = ACTIONS(4164), + [anon_sym_QMARK] = ACTIONS(4166), + [anon_sym_STAR_EQ] = ACTIONS(4202), + [anon_sym_SLASH_EQ] = ACTIONS(4202), + [anon_sym_PERCENT_EQ] = ACTIONS(4202), + [anon_sym_PLUS_EQ] = ACTIONS(4202), + [anon_sym_DASH_EQ] = ACTIONS(4202), + [anon_sym_LT_LT_EQ] = ACTIONS(4202), + [anon_sym_GT_GT_EQ] = ACTIONS(4202), + [anon_sym_AMP_EQ] = ACTIONS(4202), + [anon_sym_CARET_EQ] = ACTIONS(4202), + [anon_sym_PIPE_EQ] = ACTIONS(4202), + [anon_sym_and_eq] = ACTIONS(4200), + [anon_sym_or_eq] = ACTIONS(4200), + [anon_sym_xor_eq] = ACTIONS(4200), + [anon_sym_LT_EQ_GT] = ACTIONS(4166), + [anon_sym_or] = ACTIONS(4174), + [anon_sym_and] = ACTIONS(4174), + [anon_sym_bitor] = ACTIONS(4174), + [anon_sym_xor] = ACTIONS(4174), + [anon_sym_bitand] = ACTIONS(4174), + [anon_sym_not_eq] = ACTIONS(4174), + [anon_sym_DASH_DASH] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4174), + [anon_sym_DOT_STAR] = ACTIONS(4166), + [anon_sym_DASH_GT] = ACTIONS(4166), + [anon_sym_L_DQUOTE] = ACTIONS(3631), + [anon_sym_u_DQUOTE] = ACTIONS(3631), + [anon_sym_U_DQUOTE] = ACTIONS(3631), + [anon_sym_u8_DQUOTE] = ACTIONS(3631), + [anon_sym_DQUOTE] = ACTIONS(3631), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4164), + [anon_sym_decltype] = ACTIONS(4164), + [anon_sym_template] = ACTIONS(4164), + [anon_sym_operator] = ACTIONS(4164), + [anon_sym_R_DQUOTE] = ACTIONS(3635), + [anon_sym_LR_DQUOTE] = ACTIONS(3635), + [anon_sym_uR_DQUOTE] = ACTIONS(3635), + [anon_sym_UR_DQUOTE] = ACTIONS(3635), + [anon_sym_u8R_DQUOTE] = ACTIONS(3635), + }, + [1008] = { + [sym_expression] = STATE(4507), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_initializer_list] = STATE(7799), + [sym_initializer_pair] = STATE(7799), + [sym_subscript_designator] = STATE(6849), + [sym_subscript_range_designator] = STATE(6849), + [sym_field_designator] = STATE(6849), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_initializer_pair_repeat1] = STATE(6849), + [sym_identifier] = ACTIONS(4370), + [anon_sym_LPAREN2] = ACTIONS(1252), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(3623), + [anon_sym_RBRACE] = ACTIONS(4519), + [anon_sym_LBRACK] = ACTIONS(4376), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -172159,103 +180880,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(113), [anon_sym___asm__] = ACTIONS(113), [anon_sym___asm] = ACTIONS(113), - [anon_sym_DASH_GT] = ACTIONS(4310), - [sym_number_literal] = ACTIONS(3619), - [anon_sym_L_SQUOTE] = ACTIONS(3621), - [anon_sym_u_SQUOTE] = ACTIONS(3621), - [anon_sym_U_SQUOTE] = ACTIONS(3621), - [anon_sym_u8_SQUOTE] = ACTIONS(3621), - [anon_sym_SQUOTE] = ACTIONS(3621), - [anon_sym_L_DQUOTE] = ACTIONS(3623), - [anon_sym_u_DQUOTE] = ACTIONS(3623), - [anon_sym_U_DQUOTE] = ACTIONS(3623), - [anon_sym_u8_DQUOTE] = ACTIONS(3623), - [anon_sym_DQUOTE] = ACTIONS(3623), + [anon_sym_DOT] = ACTIONS(225), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(117), + [anon_sym_u_SQUOTE] = ACTIONS(117), + [anon_sym_U_SQUOTE] = ACTIONS(117), + [anon_sym_u8_SQUOTE] = ACTIONS(117), + [anon_sym_SQUOTE] = ACTIONS(117), + [anon_sym_L_DQUOTE] = ACTIONS(119), + [anon_sym_u_DQUOTE] = ACTIONS(119), + [anon_sym_U_DQUOTE] = ACTIONS(119), + [anon_sym_u8_DQUOTE] = ACTIONS(119), + [anon_sym_DQUOTE] = ACTIONS(119), [sym_true] = ACTIONS(229), [sym_false] = ACTIONS(229), [anon_sym_NULL] = ACTIONS(123), [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3625), - [anon_sym_noexcept] = ACTIONS(4314), - [anon_sym_throw] = ACTIONS(4314), - [anon_sym_R_DQUOTE] = ACTIONS(3627), - [anon_sym_LR_DQUOTE] = ACTIONS(3627), - [anon_sym_uR_DQUOTE] = ACTIONS(3627), - [anon_sym_UR_DQUOTE] = ACTIONS(3627), - [anon_sym_u8R_DQUOTE] = ACTIONS(3627), - [anon_sym_co_await] = ACTIONS(3629), - [anon_sym_new] = ACTIONS(3631), - [anon_sym_requires] = ACTIONS(3633), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(145), + [anon_sym_R_DQUOTE] = ACTIONS(159), + [anon_sym_LR_DQUOTE] = ACTIONS(159), + [anon_sym_uR_DQUOTE] = ACTIONS(159), + [anon_sym_UR_DQUOTE] = ACTIONS(159), + [anon_sym_u8R_DQUOTE] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), + [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [937] = { - [sym_expression] = STATE(4366), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_initializer_list] = STATE(7146), - [sym_initializer_pair] = STATE(7146), - [sym_subscript_designator] = STATE(6728), - [sym_subscript_range_designator] = STATE(6728), - [sym_field_designator] = STATE(6728), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_initializer_pair_repeat1] = STATE(6728), - [sym_identifier] = ACTIONS(4326), - [anon_sym_COMMA] = ACTIONS(4342), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1009] = { + [sym_expression] = STATE(4507), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_initializer_list] = STATE(7799), + [sym_initializer_pair] = STATE(7799), + [sym_subscript_designator] = STATE(6849), + [sym_subscript_range_designator] = STATE(6849), + [sym_field_designator] = STATE(6849), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_initializer_pair_repeat1] = STATE(6849), + [sym_identifier] = ACTIONS(4370), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3615), - [anon_sym_RBRACE] = ACTIONS(4344), - [anon_sym_LBRACK] = ACTIONS(4332), - [sym_primitive_type] = ACTIONS(2028), + [anon_sym_LBRACE] = ACTIONS(3623), + [anon_sym_RBRACE] = ACTIONS(4521), + [anon_sym_LBRACK] = ACTIONS(4376), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -172289,7 +181007,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -172301,181 +181019,179 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [938] = { - [sym_expression] = STATE(2908), - [sym__string] = STATE(2950), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(2950), - [sym_concatenated_string] = STATE(2950), - [sym_string_literal] = STATE(2034), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(2034), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), - [sym_identifier] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(4310), - [anon_sym_BANG] = ACTIONS(1994), - [anon_sym_TILDE] = ACTIONS(1994), - [anon_sym_DASH] = ACTIONS(1992), - [anon_sym_PLUS] = ACTIONS(1992), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym_LT] = ACTIONS(4310), - [anon_sym___extension__] = ACTIONS(1996), - [anon_sym_COLON_COLON] = ACTIONS(1998), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4310), - [anon_sym_LBRACE] = ACTIONS(4310), - [anon_sym_LBRACK] = ACTIONS(1450), - [anon_sym_static] = ACTIONS(4314), - [anon_sym_constexpr] = ACTIONS(4314), - [anon_sym_mutable] = ACTIONS(4314), - [anon_sym_consteval] = ACTIONS(4314), - [sym_primitive_type] = ACTIONS(1956), - [anon_sym_not] = ACTIONS(1992), - [anon_sym_compl] = ACTIONS(1992), - [anon_sym_DASH_DASH] = ACTIONS(3343), - [anon_sym_PLUS_PLUS] = ACTIONS(3343), - [anon_sym_sizeof] = ACTIONS(2000), - [anon_sym___alignof__] = ACTIONS(1960), - [anon_sym___alignof] = ACTIONS(1960), - [anon_sym__alignof] = ACTIONS(1960), - [anon_sym_alignof] = ACTIONS(1960), - [anon_sym__Alignof] = ACTIONS(1960), - [anon_sym_offsetof] = ACTIONS(1962), - [anon_sym__Generic] = ACTIONS(1964), - [anon_sym_asm] = ACTIONS(1966), - [anon_sym___asm__] = ACTIONS(1966), - [anon_sym___asm] = ACTIONS(1966), - [anon_sym_DASH_GT] = ACTIONS(4310), - [sym_number_literal] = ACTIONS(2002), - [anon_sym_L_SQUOTE] = ACTIONS(2004), - [anon_sym_u_SQUOTE] = ACTIONS(2004), - [anon_sym_U_SQUOTE] = ACTIONS(2004), - [anon_sym_u8_SQUOTE] = ACTIONS(2004), - [anon_sym_SQUOTE] = ACTIONS(2004), - [anon_sym_L_DQUOTE] = ACTIONS(2006), - [anon_sym_u_DQUOTE] = ACTIONS(2006), - [anon_sym_U_DQUOTE] = ACTIONS(2006), - [anon_sym_u8_DQUOTE] = ACTIONS(2006), - [anon_sym_DQUOTE] = ACTIONS(2006), - [sym_true] = ACTIONS(1974), - [sym_false] = ACTIONS(1974), - [anon_sym_NULL] = ACTIONS(1976), - [anon_sym_nullptr] = ACTIONS(1976), + [1010] = { + [sym_expression] = STATE(4507), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_initializer_list] = STATE(7799), + [sym_initializer_pair] = STATE(7799), + [sym_subscript_designator] = STATE(6849), + [sym_subscript_range_designator] = STATE(6849), + [sym_field_designator] = STATE(6849), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_initializer_pair_repeat1] = STATE(6849), + [sym_identifier] = ACTIONS(4370), + [anon_sym_LPAREN2] = ACTIONS(1252), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(3623), + [anon_sym_RBRACE] = ACTIONS(4523), + [anon_sym_LBRACK] = ACTIONS(4376), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [anon_sym___alignof__] = ACTIONS(107), + [anon_sym___alignof] = ACTIONS(107), + [anon_sym__alignof] = ACTIONS(107), + [anon_sym_alignof] = ACTIONS(107), + [anon_sym__Alignof] = ACTIONS(107), + [anon_sym_offsetof] = ACTIONS(109), + [anon_sym__Generic] = ACTIONS(111), + [anon_sym_asm] = ACTIONS(113), + [anon_sym___asm__] = ACTIONS(113), + [anon_sym___asm] = ACTIONS(113), + [anon_sym_DOT] = ACTIONS(225), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(117), + [anon_sym_u_SQUOTE] = ACTIONS(117), + [anon_sym_U_SQUOTE] = ACTIONS(117), + [anon_sym_u8_SQUOTE] = ACTIONS(117), + [anon_sym_SQUOTE] = ACTIONS(117), + [anon_sym_L_DQUOTE] = ACTIONS(119), + [anon_sym_u_DQUOTE] = ACTIONS(119), + [anon_sym_U_DQUOTE] = ACTIONS(119), + [anon_sym_u8_DQUOTE] = ACTIONS(119), + [anon_sym_DQUOTE] = ACTIONS(119), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(123), + [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(2008), - [anon_sym_noexcept] = ACTIONS(4314), - [anon_sym_throw] = ACTIONS(4314), - [anon_sym_R_DQUOTE] = ACTIONS(2010), - [anon_sym_LR_DQUOTE] = ACTIONS(2010), - [anon_sym_uR_DQUOTE] = ACTIONS(2010), - [anon_sym_UR_DQUOTE] = ACTIONS(2010), - [anon_sym_u8R_DQUOTE] = ACTIONS(2010), - [anon_sym_co_await] = ACTIONS(2012), - [anon_sym_new] = ACTIONS(2014), - [anon_sym_requires] = ACTIONS(1988), - [sym_this] = ACTIONS(1974), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(145), + [anon_sym_R_DQUOTE] = ACTIONS(159), + [anon_sym_LR_DQUOTE] = ACTIONS(159), + [anon_sym_uR_DQUOTE] = ACTIONS(159), + [anon_sym_UR_DQUOTE] = ACTIONS(159), + [anon_sym_u8R_DQUOTE] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), }, - [939] = { - [sym_expression] = STATE(4372), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(7389), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_initializer_list] = STATE(7584), - [sym_initializer_pair] = STATE(7584), - [sym_subscript_designator] = STATE(6728), - [sym_subscript_range_designator] = STATE(6728), - [sym_field_designator] = STATE(6728), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_initializer_pair_repeat1] = STATE(6728), - [sym_identifier] = ACTIONS(4326), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1011] = { + [sym_expression] = STATE(4507), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_initializer_list] = STATE(7799), + [sym_initializer_pair] = STATE(7799), + [sym_subscript_designator] = STATE(6849), + [sym_subscript_range_designator] = STATE(6849), + [sym_field_designator] = STATE(6849), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_initializer_pair_repeat1] = STATE(6849), + [sym_identifier] = ACTIONS(4370), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3615), - [anon_sym_RBRACE] = ACTIONS(4346), - [anon_sym_LBRACK] = ACTIONS(4332), - [sym_primitive_type] = ACTIONS(2028), + [anon_sym_LBRACE] = ACTIONS(3623), + [anon_sym_RBRACE] = ACTIONS(4525), + [anon_sym_LBRACK] = ACTIONS(4376), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -172509,7 +181225,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -172521,71 +181237,179 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [940] = { - [sym_expression_statement] = STATE(2752), - [sym_expression] = STATE(4466), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8471), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_type_requirement] = STATE(942), - [sym_compound_requirement] = STATE(942), - [sym__requirement] = STATE(942), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_requirement_seq_repeat1] = STATE(942), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1012] = { + [sym_expression] = STATE(4507), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_initializer_list] = STATE(7799), + [sym_initializer_pair] = STATE(7799), + [sym_subscript_designator] = STATE(6849), + [sym_subscript_range_designator] = STATE(6849), + [sym_field_designator] = STATE(6849), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_initializer_pair_repeat1] = STATE(6849), + [sym_identifier] = ACTIONS(4370), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(4318), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4320), - [anon_sym_RBRACE] = ACTIONS(4348), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [anon_sym_LBRACE] = ACTIONS(3623), + [anon_sym_RBRACE] = ACTIONS(4527), + [anon_sym_LBRACK] = ACTIONS(4376), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [anon_sym___alignof__] = ACTIONS(107), + [anon_sym___alignof] = ACTIONS(107), + [anon_sym__alignof] = ACTIONS(107), + [anon_sym_alignof] = ACTIONS(107), + [anon_sym__Alignof] = ACTIONS(107), + [anon_sym_offsetof] = ACTIONS(109), + [anon_sym__Generic] = ACTIONS(111), + [anon_sym_asm] = ACTIONS(113), + [anon_sym___asm__] = ACTIONS(113), + [anon_sym___asm] = ACTIONS(113), + [anon_sym_DOT] = ACTIONS(225), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(117), + [anon_sym_u_SQUOTE] = ACTIONS(117), + [anon_sym_U_SQUOTE] = ACTIONS(117), + [anon_sym_u8_SQUOTE] = ACTIONS(117), + [anon_sym_SQUOTE] = ACTIONS(117), + [anon_sym_L_DQUOTE] = ACTIONS(119), + [anon_sym_u_DQUOTE] = ACTIONS(119), + [anon_sym_U_DQUOTE] = ACTIONS(119), + [anon_sym_u8_DQUOTE] = ACTIONS(119), + [anon_sym_DQUOTE] = ACTIONS(119), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(123), + [anon_sym_nullptr] = ACTIONS(123), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(145), + [anon_sym_R_DQUOTE] = ACTIONS(159), + [anon_sym_LR_DQUOTE] = ACTIONS(159), + [anon_sym_uR_DQUOTE] = ACTIONS(159), + [anon_sym_UR_DQUOTE] = ACTIONS(159), + [anon_sym_u8R_DQUOTE] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), + }, + [1013] = { + [sym_expression] = STATE(4507), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_initializer_list] = STATE(7799), + [sym_initializer_pair] = STATE(7799), + [sym_subscript_designator] = STATE(6849), + [sym_subscript_range_designator] = STATE(6849), + [sym_field_designator] = STATE(6849), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_initializer_pair_repeat1] = STATE(6849), + [sym_identifier] = ACTIONS(4370), + [anon_sym_LPAREN2] = ACTIONS(1252), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(3623), + [anon_sym_RBRACE] = ACTIONS(4529), + [anon_sym_LBRACK] = ACTIONS(4376), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -172601,6 +181425,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(113), [anon_sym___asm__] = ACTIONS(113), [anon_sym___asm] = ACTIONS(113), + [anon_sym_DOT] = ACTIONS(225), [sym_number_literal] = ACTIONS(227), [anon_sym_L_SQUOTE] = ACTIONS(117), [anon_sym_u_SQUOTE] = ACTIONS(117), @@ -172618,8 +181443,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_typename] = ACTIONS(4324), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -172631,71 +181455,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [941] = { - [sym_expression] = STATE(4345), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_initializer_list] = STATE(7551), - [sym_initializer_pair] = STATE(7551), - [sym_subscript_designator] = STATE(6728), - [sym_subscript_range_designator] = STATE(6728), - [sym_field_designator] = STATE(6728), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_initializer_pair_repeat1] = STATE(6728), - [sym_identifier] = ACTIONS(4326), - [anon_sym_COMMA] = ACTIONS(4350), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1014] = { + [sym_expression] = STATE(4507), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_initializer_list] = STATE(7799), + [sym_initializer_pair] = STATE(7799), + [sym_subscript_designator] = STATE(6849), + [sym_subscript_range_designator] = STATE(6849), + [sym_field_designator] = STATE(6849), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_initializer_pair_repeat1] = STATE(6849), + [sym_identifier] = ACTIONS(4370), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3615), - [anon_sym_RBRACE] = ACTIONS(4352), - [anon_sym_LBRACK] = ACTIONS(4332), - [sym_primitive_type] = ACTIONS(2028), + [anon_sym_LBRACE] = ACTIONS(3623), + [anon_sym_RBRACE] = ACTIONS(4531), + [anon_sym_LBRACK] = ACTIONS(4376), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -172729,7 +181552,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -172741,71 +181564,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [942] = { - [sym_expression_statement] = STATE(2752), - [sym_expression] = STATE(4466), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8471), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_type_requirement] = STATE(981), - [sym_compound_requirement] = STATE(981), - [sym__requirement] = STATE(981), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_requirement_seq_repeat1] = STATE(981), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1015] = { + [sym_expression] = STATE(4507), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_initializer_list] = STATE(7799), + [sym_initializer_pair] = STATE(7799), + [sym_subscript_designator] = STATE(6849), + [sym_subscript_range_designator] = STATE(6849), + [sym_field_designator] = STATE(6849), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_initializer_pair_repeat1] = STATE(6849), + [sym_identifier] = ACTIONS(4370), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(4318), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4320), - [anon_sym_RBRACE] = ACTIONS(4354), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [anon_sym_LBRACE] = ACTIONS(3623), + [anon_sym_RBRACE] = ACTIONS(4533), + [anon_sym_LBRACK] = ACTIONS(4376), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -172821,6 +181643,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(113), [anon_sym___asm__] = ACTIONS(113), [anon_sym___asm] = ACTIONS(113), + [anon_sym_DOT] = ACTIONS(225), [sym_number_literal] = ACTIONS(227), [anon_sym_L_SQUOTE] = ACTIONS(117), [anon_sym_u_SQUOTE] = ACTIONS(117), @@ -172838,8 +181661,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_typename] = ACTIONS(4324), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -172851,71 +181673,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [943] = { - [sym_expression_statement] = STATE(2752), - [sym_expression] = STATE(4466), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8471), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_type_requirement] = STATE(947), - [sym_compound_requirement] = STATE(947), - [sym__requirement] = STATE(947), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_requirement_seq_repeat1] = STATE(947), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1016] = { + [sym_expression] = STATE(4507), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_initializer_list] = STATE(7799), + [sym_initializer_pair] = STATE(7799), + [sym_subscript_designator] = STATE(6849), + [sym_subscript_range_designator] = STATE(6849), + [sym_field_designator] = STATE(6849), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_initializer_pair_repeat1] = STATE(6849), + [sym_identifier] = ACTIONS(4370), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(4318), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4320), - [anon_sym_RBRACE] = ACTIONS(4356), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [anon_sym_LBRACE] = ACTIONS(3623), + [anon_sym_RBRACE] = ACTIONS(4535), + [anon_sym_LBRACK] = ACTIONS(4376), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -172931,6 +181752,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(113), [anon_sym___asm__] = ACTIONS(113), [anon_sym___asm] = ACTIONS(113), + [anon_sym_DOT] = ACTIONS(225), [sym_number_literal] = ACTIONS(227), [anon_sym_L_SQUOTE] = ACTIONS(117), [anon_sym_u_SQUOTE] = ACTIONS(117), @@ -172948,8 +181770,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_typename] = ACTIONS(4324), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -172961,291 +181782,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [944] = { - [sym_expression] = STATE(3352), - [sym__string] = STATE(3360), - [sym_conditional_expression] = STATE(3651), - [sym_assignment_expression] = STATE(3651), - [sym_pointer_expression] = STATE(3547), - [sym_unary_expression] = STATE(3651), - [sym_binary_expression] = STATE(3651), - [sym_update_expression] = STATE(3651), - [sym_cast_expression] = STATE(3651), - [sym_sizeof_expression] = STATE(3651), - [sym_alignof_expression] = STATE(3651), - [sym_offsetof_expression] = STATE(3651), - [sym_generic_expression] = STATE(3651), - [sym_subscript_expression] = STATE(3547), - [sym_call_expression] = STATE(3547), - [sym_gnu_asm_expression] = STATE(3651), - [sym_extension_expression] = STATE(3651), - [sym_field_expression] = STATE(3547), - [sym_compound_literal_expression] = STATE(3651), - [sym_parenthesized_expression] = STATE(3547), - [sym_char_literal] = STATE(3360), - [sym_concatenated_string] = STATE(3360), - [sym_string_literal] = STATE(2369), - [sym_null] = STATE(3651), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7649), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3651), - [sym_raw_string_literal] = STATE(2369), - [sym_co_await_expression] = STATE(3651), - [sym_new_expression] = STATE(3651), - [sym_delete_expression] = STATE(3651), - [sym_requires_clause] = STATE(3651), - [sym_requires_expression] = STATE(3651), - [sym_lambda_expression] = STATE(3651), - [sym_lambda_capture_specifier] = STATE(5395), - [sym_fold_expression] = STATE(3651), - [sym_parameter_pack_expansion] = STATE(3651), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5773), - [sym_qualified_identifier] = STATE(3547), - [sym_qualified_type_identifier] = STATE(7649), - [sym_user_defined_literal] = STATE(3547), - [sym_identifier] = ACTIONS(2489), - [anon_sym_LPAREN2] = ACTIONS(4310), - [anon_sym_BANG] = ACTIONS(2493), - [anon_sym_TILDE] = ACTIONS(2493), - [anon_sym_DASH] = ACTIONS(2491), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_STAR] = ACTIONS(3124), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym_LT] = ACTIONS(4310), - [anon_sym___extension__] = ACTIONS(2495), - [anon_sym_COLON_COLON] = ACTIONS(2497), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4310), - [anon_sym_LBRACE] = ACTIONS(4310), - [anon_sym_LBRACK] = ACTIONS(1450), - [anon_sym_static] = ACTIONS(4314), - [anon_sym_constexpr] = ACTIONS(4314), - [anon_sym_mutable] = ACTIONS(4314), - [anon_sym_consteval] = ACTIONS(4314), - [sym_primitive_type] = ACTIONS(2501), - [anon_sym_not] = ACTIONS(2491), - [anon_sym_compl] = ACTIONS(2491), - [anon_sym_DASH_DASH] = ACTIONS(4358), - [anon_sym_PLUS_PLUS] = ACTIONS(4358), - [anon_sym_sizeof] = ACTIONS(2503), - [anon_sym___alignof__] = ACTIONS(2505), - [anon_sym___alignof] = ACTIONS(2505), - [anon_sym__alignof] = ACTIONS(2505), - [anon_sym_alignof] = ACTIONS(2505), - [anon_sym__Alignof] = ACTIONS(2505), - [anon_sym_offsetof] = ACTIONS(2507), - [anon_sym__Generic] = ACTIONS(2509), - [anon_sym_asm] = ACTIONS(2511), - [anon_sym___asm__] = ACTIONS(2511), - [anon_sym___asm] = ACTIONS(2511), - [anon_sym_DASH_GT] = ACTIONS(4310), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2515), - [anon_sym_u_SQUOTE] = ACTIONS(2515), - [anon_sym_U_SQUOTE] = ACTIONS(2515), - [anon_sym_u8_SQUOTE] = ACTIONS(2515), - [anon_sym_SQUOTE] = ACTIONS(2515), - [anon_sym_L_DQUOTE] = ACTIONS(2517), - [anon_sym_u_DQUOTE] = ACTIONS(2517), - [anon_sym_U_DQUOTE] = ACTIONS(2517), - [anon_sym_u8_DQUOTE] = ACTIONS(2517), - [anon_sym_DQUOTE] = ACTIONS(2517), - [sym_true] = ACTIONS(2519), - [sym_false] = ACTIONS(2519), - [anon_sym_NULL] = ACTIONS(2521), - [anon_sym_nullptr] = ACTIONS(2521), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(2523), - [anon_sym_noexcept] = ACTIONS(4314), - [anon_sym_throw] = ACTIONS(4314), - [anon_sym_R_DQUOTE] = ACTIONS(2525), - [anon_sym_LR_DQUOTE] = ACTIONS(2525), - [anon_sym_uR_DQUOTE] = ACTIONS(2525), - [anon_sym_UR_DQUOTE] = ACTIONS(2525), - [anon_sym_u8R_DQUOTE] = ACTIONS(2525), - [anon_sym_co_await] = ACTIONS(2527), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_requires] = ACTIONS(2531), - [sym_this] = ACTIONS(2519), - }, - [945] = { - [sym_expression] = STATE(3353), - [sym__string] = STATE(3360), - [sym_conditional_expression] = STATE(3651), - [sym_assignment_expression] = STATE(3651), - [sym_pointer_expression] = STATE(3547), - [sym_unary_expression] = STATE(3651), - [sym_binary_expression] = STATE(3651), - [sym_update_expression] = STATE(3651), - [sym_cast_expression] = STATE(3651), - [sym_sizeof_expression] = STATE(3651), - [sym_alignof_expression] = STATE(3651), - [sym_offsetof_expression] = STATE(3651), - [sym_generic_expression] = STATE(3651), - [sym_subscript_expression] = STATE(3547), - [sym_call_expression] = STATE(3547), - [sym_gnu_asm_expression] = STATE(3651), - [sym_extension_expression] = STATE(3651), - [sym_field_expression] = STATE(3547), - [sym_compound_literal_expression] = STATE(3651), - [sym_parenthesized_expression] = STATE(3547), - [sym_char_literal] = STATE(3360), - [sym_concatenated_string] = STATE(3360), - [sym_string_literal] = STATE(2369), - [sym_null] = STATE(3651), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7649), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3651), - [sym_raw_string_literal] = STATE(2369), - [sym_co_await_expression] = STATE(3651), - [sym_new_expression] = STATE(3651), - [sym_delete_expression] = STATE(3651), - [sym_requires_clause] = STATE(3651), - [sym_requires_expression] = STATE(3651), - [sym_lambda_expression] = STATE(3651), - [sym_lambda_capture_specifier] = STATE(5395), - [sym_fold_expression] = STATE(3651), - [sym_parameter_pack_expansion] = STATE(3651), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5773), - [sym_qualified_identifier] = STATE(3547), - [sym_qualified_type_identifier] = STATE(7649), - [sym_user_defined_literal] = STATE(3547), - [sym_identifier] = ACTIONS(2489), - [anon_sym_LPAREN2] = ACTIONS(4310), - [anon_sym_BANG] = ACTIONS(2493), - [anon_sym_TILDE] = ACTIONS(2493), - [anon_sym_DASH] = ACTIONS(2491), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_STAR] = ACTIONS(3124), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym_LT] = ACTIONS(4310), - [anon_sym___extension__] = ACTIONS(2495), - [anon_sym_COLON_COLON] = ACTIONS(2497), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4310), - [anon_sym_LBRACE] = ACTIONS(4310), - [anon_sym_LBRACK] = ACTIONS(1450), - [anon_sym_static] = ACTIONS(4314), - [anon_sym_constexpr] = ACTIONS(4314), - [anon_sym_mutable] = ACTIONS(4314), - [anon_sym_consteval] = ACTIONS(4314), - [sym_primitive_type] = ACTIONS(2501), - [anon_sym_not] = ACTIONS(2491), - [anon_sym_compl] = ACTIONS(2491), - [anon_sym_DASH_DASH] = ACTIONS(4358), - [anon_sym_PLUS_PLUS] = ACTIONS(4358), - [anon_sym_sizeof] = ACTIONS(2503), - [anon_sym___alignof__] = ACTIONS(2505), - [anon_sym___alignof] = ACTIONS(2505), - [anon_sym__alignof] = ACTIONS(2505), - [anon_sym_alignof] = ACTIONS(2505), - [anon_sym__Alignof] = ACTIONS(2505), - [anon_sym_offsetof] = ACTIONS(2507), - [anon_sym__Generic] = ACTIONS(2509), - [anon_sym_asm] = ACTIONS(2511), - [anon_sym___asm__] = ACTIONS(2511), - [anon_sym___asm] = ACTIONS(2511), - [anon_sym_DASH_GT] = ACTIONS(4310), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2515), - [anon_sym_u_SQUOTE] = ACTIONS(2515), - [anon_sym_U_SQUOTE] = ACTIONS(2515), - [anon_sym_u8_SQUOTE] = ACTIONS(2515), - [anon_sym_SQUOTE] = ACTIONS(2515), - [anon_sym_L_DQUOTE] = ACTIONS(2517), - [anon_sym_u_DQUOTE] = ACTIONS(2517), - [anon_sym_U_DQUOTE] = ACTIONS(2517), - [anon_sym_u8_DQUOTE] = ACTIONS(2517), - [anon_sym_DQUOTE] = ACTIONS(2517), - [sym_true] = ACTIONS(2519), - [sym_false] = ACTIONS(2519), - [anon_sym_NULL] = ACTIONS(2521), - [anon_sym_nullptr] = ACTIONS(2521), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(2523), - [anon_sym_noexcept] = ACTIONS(4314), - [anon_sym_throw] = ACTIONS(4314), - [anon_sym_R_DQUOTE] = ACTIONS(2525), - [anon_sym_LR_DQUOTE] = ACTIONS(2525), - [anon_sym_uR_DQUOTE] = ACTIONS(2525), - [anon_sym_UR_DQUOTE] = ACTIONS(2525), - [anon_sym_u8R_DQUOTE] = ACTIONS(2525), - [anon_sym_co_await] = ACTIONS(2527), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_requires] = ACTIONS(2531), - [sym_this] = ACTIONS(2519), - }, - [946] = { - [sym_expression] = STATE(4340), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_initializer_list] = STATE(7301), - [sym_initializer_pair] = STATE(7301), - [sym_subscript_designator] = STATE(6728), - [sym_subscript_range_designator] = STATE(6728), - [sym_field_designator] = STATE(6728), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_initializer_pair_repeat1] = STATE(6728), - [sym_identifier] = ACTIONS(4326), - [anon_sym_COMMA] = ACTIONS(4360), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1017] = { + [sym_expression] = STATE(4507), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_initializer_list] = STATE(7799), + [sym_initializer_pair] = STATE(7799), + [sym_subscript_designator] = STATE(6849), + [sym_subscript_range_designator] = STATE(6849), + [sym_field_designator] = STATE(6849), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_initializer_pair_repeat1] = STATE(6849), + [sym_identifier] = ACTIONS(4370), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3615), - [anon_sym_RBRACE] = ACTIONS(4362), - [anon_sym_LBRACK] = ACTIONS(4332), - [sym_primitive_type] = ACTIONS(2028), + [anon_sym_LBRACE] = ACTIONS(3623), + [anon_sym_RBRACE] = ACTIONS(4496), + [anon_sym_LBRACK] = ACTIONS(4376), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -173279,7 +181879,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -173291,71 +181891,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [947] = { - [sym_expression_statement] = STATE(2752), - [sym_expression] = STATE(4466), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8471), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_type_requirement] = STATE(981), - [sym_compound_requirement] = STATE(981), - [sym__requirement] = STATE(981), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_requirement_seq_repeat1] = STATE(981), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1018] = { + [sym_expression] = STATE(4507), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_initializer_list] = STATE(7799), + [sym_initializer_pair] = STATE(7799), + [sym_subscript_designator] = STATE(6849), + [sym_subscript_range_designator] = STATE(6849), + [sym_field_designator] = STATE(6849), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_initializer_pair_repeat1] = STATE(6849), + [sym_identifier] = ACTIONS(4370), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(4318), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4320), - [anon_sym_RBRACE] = ACTIONS(4364), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [anon_sym_LBRACE] = ACTIONS(3623), + [anon_sym_RBRACE] = ACTIONS(4537), + [anon_sym_LBRACK] = ACTIONS(4376), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -173371,6 +181970,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(113), [anon_sym___asm__] = ACTIONS(113), [anon_sym___asm] = ACTIONS(113), + [anon_sym_DOT] = ACTIONS(225), [sym_number_literal] = ACTIONS(227), [anon_sym_L_SQUOTE] = ACTIONS(117), [anon_sym_u_SQUOTE] = ACTIONS(117), @@ -173388,8 +181988,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_typename] = ACTIONS(4324), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -173401,71 +182000,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [948] = { - [sym_expression_statement] = STATE(2752), - [sym_expression] = STATE(4466), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8471), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_type_requirement] = STATE(951), - [sym_compound_requirement] = STATE(951), - [sym__requirement] = STATE(951), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_requirement_seq_repeat1] = STATE(951), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1019] = { + [sym_expression] = STATE(4507), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_initializer_list] = STATE(7799), + [sym_initializer_pair] = STATE(7799), + [sym_subscript_designator] = STATE(6849), + [sym_subscript_range_designator] = STATE(6849), + [sym_field_designator] = STATE(6849), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_initializer_pair_repeat1] = STATE(6849), + [sym_identifier] = ACTIONS(4370), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(4318), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4320), - [anon_sym_RBRACE] = ACTIONS(4366), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [anon_sym_LBRACE] = ACTIONS(3623), + [anon_sym_RBRACE] = ACTIONS(4539), + [anon_sym_LBRACK] = ACTIONS(4376), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -173481,6 +182079,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(113), [anon_sym___asm__] = ACTIONS(113), [anon_sym___asm] = ACTIONS(113), + [anon_sym_DOT] = ACTIONS(225), [sym_number_literal] = ACTIONS(227), [anon_sym_L_SQUOTE] = ACTIONS(117), [anon_sym_u_SQUOTE] = ACTIONS(117), @@ -173498,8 +182097,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_typename] = ACTIONS(4324), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -173511,69 +182109,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [949] = { - [sym_expression] = STATE(4306), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(4310), + [1020] = { + [sym_expression] = STATE(4507), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_initializer_list] = STATE(7799), + [sym_initializer_pair] = STATE(7799), + [sym_subscript_designator] = STATE(6849), + [sym_subscript_range_designator] = STATE(6849), + [sym_field_designator] = STATE(6849), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [aux_sym_initializer_pair_repeat1] = STATE(6849), + [sym_identifier] = ACTIONS(4370), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym_LT] = ACTIONS(4310), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4310), - [anon_sym_LBRACE] = ACTIONS(4310), - [anon_sym_LBRACK] = ACTIONS(1450), - [anon_sym_static] = ACTIONS(4314), - [anon_sym_constexpr] = ACTIONS(4314), - [anon_sym_mutable] = ACTIONS(4314), - [anon_sym_consteval] = ACTIONS(4314), - [sym_primitive_type] = ACTIONS(2028), + [anon_sym_LBRACE] = ACTIONS(3623), + [anon_sym_LBRACK] = ACTIONS(4376), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -173589,7 +182187,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(113), [anon_sym___asm__] = ACTIONS(113), [anon_sym___asm] = ACTIONS(113), - [anon_sym_DASH_GT] = ACTIONS(4310), + [anon_sym_DOT] = ACTIONS(225), [sym_number_literal] = ACTIONS(227), [anon_sym_L_SQUOTE] = ACTIONS(117), [anon_sym_u_SQUOTE] = ACTIONS(117), @@ -173607,10 +182205,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), - [anon_sym_noexcept] = ACTIONS(4314), - [anon_sym_throw] = ACTIONS(4314), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), @@ -173621,76 +182217,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [950] = { - [sym_expression_statement] = STATE(2752), - [sym_expression] = STATE(4466), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8471), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_type_requirement] = STATE(960), - [sym_compound_requirement] = STATE(960), - [sym__requirement] = STATE(960), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_requirement_seq_repeat1] = STATE(960), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(4318), - [anon_sym___extension__] = ACTIONS(2024), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4320), - [anon_sym_RBRACE] = ACTIONS(4368), + [1021] = { + [sym_expression] = STATE(4810), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3728), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3728), + [sym_call_expression] = STATE(3728), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3728), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3728), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_lambda_default_capture] = STATE(7761), + [sym__lambda_capture_identifier] = STATE(7462), + [sym_lambda_capture_initializer] = STATE(7462), + [sym__lambda_capture] = STATE(7462), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_identifier_parameter_pack_expansion] = STATE(7462), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3637), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3728), + [sym_identifier] = ACTIONS(4541), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4543), + [anon_sym_LPAREN2] = ACTIONS(3901), + [anon_sym_BANG] = ACTIONS(3887), + [anon_sym_TILDE] = ACTIONS(3887), + [anon_sym_DASH] = ACTIONS(3885), + [anon_sym_PLUS] = ACTIONS(3885), + [anon_sym_STAR] = ACTIONS(4545), + [anon_sym_AMP] = ACTIONS(4547), + [anon_sym___extension__] = ACTIONS(3889), + [anon_sym_COLON_COLON] = ACTIONS(3891), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), + [anon_sym_RBRACK] = ACTIONS(4549), + [anon_sym_EQ] = ACTIONS(4551), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3885), + [anon_sym_compl] = ACTIONS(3885), + [anon_sym_DASH_DASH] = ACTIONS(3905), + [anon_sym_PLUS_PLUS] = ACTIONS(3905), + [anon_sym_sizeof] = ACTIONS(3893), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -173718,89 +182313,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_typename] = ACTIONS(4324), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(145), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3895), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), + [anon_sym_co_await] = ACTIONS(3897), + [anon_sym_new] = ACTIONS(3873), [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [sym_this] = ACTIONS(4553), }, - [951] = { - [sym_expression_statement] = STATE(2752), - [sym_expression] = STATE(4466), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8471), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_type_requirement] = STATE(981), - [sym_compound_requirement] = STATE(981), - [sym__requirement] = STATE(981), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_requirement_seq_repeat1] = STATE(981), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(4318), - [anon_sym___extension__] = ACTIONS(2024), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4320), - [anon_sym_RBRACE] = ACTIONS(4370), + [1022] = { + [sym_expression] = STATE(4810), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3728), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3728), + [sym_call_expression] = STATE(3728), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3728), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3728), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_lambda_default_capture] = STATE(7761), + [sym__lambda_capture_identifier] = STATE(7462), + [sym_lambda_capture_initializer] = STATE(7462), + [sym__lambda_capture] = STATE(7462), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_identifier_parameter_pack_expansion] = STATE(7462), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3637), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3728), + [sym_identifier] = ACTIONS(4555), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4543), + [anon_sym_LPAREN2] = ACTIONS(3901), + [anon_sym_BANG] = ACTIONS(3887), + [anon_sym_TILDE] = ACTIONS(3887), + [anon_sym_DASH] = ACTIONS(3885), + [anon_sym_PLUS] = ACTIONS(3885), + [anon_sym_STAR] = ACTIONS(4545), + [anon_sym_AMP] = ACTIONS(4547), + [anon_sym___extension__] = ACTIONS(3889), + [anon_sym_COLON_COLON] = ACTIONS(3891), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), + [anon_sym_RBRACK] = ACTIONS(4549), + [anon_sym_EQ] = ACTIONS(4551), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3885), + [anon_sym_compl] = ACTIONS(3885), + [anon_sym_DASH_DASH] = ACTIONS(3905), + [anon_sym_PLUS_PLUS] = ACTIONS(3905), + [anon_sym_sizeof] = ACTIONS(3893), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -173828,86 +182421,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_typename] = ACTIONS(4324), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(145), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3895), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3897), + [anon_sym_new] = ACTIONS(3873), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(4553), + }, + [1023] = { + [sym_expression] = STATE(4266), + [sym__string] = STATE(4455), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3366), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3366), + [sym_call_expression] = STATE(3366), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3366), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3366), + [sym_initializer_list] = STATE(6921), + [sym_char_literal] = STATE(4455), + [sym_concatenated_string] = STATE(4455), + [sym_string_literal] = STATE(3406), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3406), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3366), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3366), + [sym_identifier] = ACTIONS(3833), + [anon_sym_LPAREN2] = ACTIONS(4557), + [anon_sym_BANG] = ACTIONS(3837), + [anon_sym_TILDE] = ACTIONS(3837), + [anon_sym_DASH] = ACTIONS(3835), + [anon_sym_PLUS] = ACTIONS(3835), + [anon_sym_STAR] = ACTIONS(4336), + [anon_sym_AMP] = ACTIONS(4336), + [anon_sym___extension__] = ACTIONS(3839), + [anon_sym_COLON_COLON] = ACTIONS(3841), + [anon_sym_LBRACE] = ACTIONS(3623), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_default] = ACTIONS(4559), + [anon_sym_not] = ACTIONS(3835), + [anon_sym_compl] = ACTIONS(3835), + [anon_sym_DASH_DASH] = ACTIONS(4338), + [anon_sym_PLUS_PLUS] = ACTIONS(4338), + [anon_sym_sizeof] = ACTIONS(3843), + [anon_sym___alignof__] = ACTIONS(107), + [anon_sym___alignof] = ACTIONS(107), + [anon_sym__alignof] = ACTIONS(107), + [anon_sym_alignof] = ACTIONS(107), + [anon_sym__Alignof] = ACTIONS(107), + [anon_sym_offsetof] = ACTIONS(109), + [anon_sym__Generic] = ACTIONS(111), + [anon_sym_asm] = ACTIONS(113), + [anon_sym___asm__] = ACTIONS(113), + [anon_sym___asm] = ACTIONS(113), + [sym_number_literal] = ACTIONS(3845), + [anon_sym_L_SQUOTE] = ACTIONS(3847), + [anon_sym_u_SQUOTE] = ACTIONS(3847), + [anon_sym_U_SQUOTE] = ACTIONS(3847), + [anon_sym_u8_SQUOTE] = ACTIONS(3847), + [anon_sym_SQUOTE] = ACTIONS(3847), + [anon_sym_L_DQUOTE] = ACTIONS(3849), + [anon_sym_u_DQUOTE] = ACTIONS(3849), + [anon_sym_U_DQUOTE] = ACTIONS(3849), + [anon_sym_u8_DQUOTE] = ACTIONS(3849), + [anon_sym_DQUOTE] = ACTIONS(3849), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(123), + [anon_sym_nullptr] = ACTIONS(123), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(4561), + [aux_sym_pure_virtual_clause_token1] = ACTIONS(4563), + [anon_sym_R_DQUOTE] = ACTIONS(3853), + [anon_sym_LR_DQUOTE] = ACTIONS(3853), + [anon_sym_uR_DQUOTE] = ACTIONS(3853), + [anon_sym_UR_DQUOTE] = ACTIONS(3853), + [anon_sym_u8R_DQUOTE] = ACTIONS(3853), + [anon_sym_co_await] = ACTIONS(3855), [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [952] = { - [sym_expression] = STATE(2949), - [sym__string] = STATE(2950), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(2950), - [sym_concatenated_string] = STATE(2950), - [sym_string_literal] = STATE(2034), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(2034), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), + [1024] = { + [sym_compound_statement] = STATE(8629), + [sym_expression] = STATE(3294), + [sym__string] = STATE(2917), + [sym_comma_expression] = STATE(8629), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(2917), + [sym_concatenated_string] = STATE(2917), + [sym_string_literal] = STATE(2114), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(2114), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym__assignment_expression_lhs] = STATE(8390), + [sym_user_defined_literal] = STATE(2450), [sym_identifier] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(4310), + [anon_sym_LPAREN2] = ACTIONS(4565), [anon_sym_BANG] = ACTIONS(1994), [anon_sym_TILDE] = ACTIONS(1994), [anon_sym_DASH] = ACTIONS(1992), [anon_sym_PLUS] = ACTIONS(1992), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym_LT] = ACTIONS(4310), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), [anon_sym___extension__] = ACTIONS(1996), [anon_sym_COLON_COLON] = ACTIONS(1998), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4310), - [anon_sym_LBRACE] = ACTIONS(4310), - [anon_sym_LBRACK] = ACTIONS(1450), - [anon_sym_static] = ACTIONS(4314), - [anon_sym_constexpr] = ACTIONS(4314), - [anon_sym_mutable] = ACTIONS(4314), - [anon_sym_consteval] = ACTIONS(4314), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(2020), [sym_primitive_type] = ACTIONS(1956), [anon_sym_not] = ACTIONS(1992), [anon_sym_compl] = ACTIONS(1992), - [anon_sym_DASH_DASH] = ACTIONS(3343), - [anon_sym_PLUS_PLUS] = ACTIONS(3343), + [anon_sym_DASH_DASH] = ACTIONS(3355), + [anon_sym_PLUS_PLUS] = ACTIONS(3355), [anon_sym_sizeof] = ACTIONS(2000), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), @@ -173919,7 +182612,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(1966), [anon_sym___asm__] = ACTIONS(1966), [anon_sym___asm] = ACTIONS(1966), - [anon_sym_DASH_GT] = ACTIONS(4310), [sym_number_literal] = ACTIONS(2002), [anon_sym_L_SQUOTE] = ACTIONS(2004), [anon_sym_u_SQUOTE] = ACTIONS(2004), @@ -173937,10 +182629,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1976), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(2008), - [anon_sym_noexcept] = ACTIONS(4314), - [anon_sym_throw] = ACTIONS(4314), [anon_sym_R_DQUOTE] = ACTIONS(2010), [anon_sym_LR_DQUOTE] = ACTIONS(2010), [anon_sym_uR_DQUOTE] = ACTIONS(2010), @@ -173951,71 +182641,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [953] = { - [sym_expression] = STATE(4365), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_initializer_list] = STATE(7388), - [sym_initializer_pair] = STATE(7388), - [sym_subscript_designator] = STATE(6728), - [sym_subscript_range_designator] = STATE(6728), - [sym_field_designator] = STATE(6728), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_initializer_pair_repeat1] = STATE(6728), - [sym_identifier] = ACTIONS(4326), - [anon_sym_COMMA] = ACTIONS(4372), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1025] = { + [sym_expression] = STATE(4537), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8505), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_initializer_list] = STATE(8505), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(4567), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3615), - [anon_sym_RBRACE] = ACTIONS(4374), - [anon_sym_LBRACK] = ACTIONS(4332), - [sym_primitive_type] = ACTIONS(2028), + [anon_sym_LBRACE] = ACTIONS(3623), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -174031,7 +182716,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(113), [anon_sym___asm__] = ACTIONS(113), [anon_sym___asm] = ACTIONS(113), - [anon_sym_DOT] = ACTIONS(225), [sym_number_literal] = ACTIONS(227), [anon_sym_L_SQUOTE] = ACTIONS(117), [anon_sym_u_SQUOTE] = ACTIONS(117), @@ -174049,7 +182733,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -174061,181 +182745,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [954] = { - [sym_expression] = STATE(3606), - [sym__string] = STATE(3714), - [sym_conditional_expression] = STATE(3908), - [sym_assignment_expression] = STATE(3908), - [sym_pointer_expression] = STATE(3506), - [sym_unary_expression] = STATE(3908), - [sym_binary_expression] = STATE(3908), - [sym_update_expression] = STATE(3908), - [sym_cast_expression] = STATE(3908), - [sym_sizeof_expression] = STATE(3908), - [sym_alignof_expression] = STATE(3908), - [sym_offsetof_expression] = STATE(3908), - [sym_generic_expression] = STATE(3908), - [sym_subscript_expression] = STATE(3506), - [sym_call_expression] = STATE(3506), - [sym_gnu_asm_expression] = STATE(3908), - [sym_extension_expression] = STATE(3908), - [sym_field_expression] = STATE(3506), - [sym_compound_literal_expression] = STATE(3908), - [sym_parenthesized_expression] = STATE(3506), - [sym_char_literal] = STATE(3714), - [sym_concatenated_string] = STATE(3714), - [sym_string_literal] = STATE(2566), - [sym_null] = STATE(3908), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7868), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3908), - [sym_raw_string_literal] = STATE(2566), - [sym_co_await_expression] = STATE(3908), - [sym_new_expression] = STATE(3908), - [sym_delete_expression] = STATE(3908), - [sym_requires_clause] = STATE(3908), - [sym_requires_expression] = STATE(3908), - [sym_lambda_expression] = STATE(3908), - [sym_lambda_capture_specifier] = STATE(5415), - [sym_fold_expression] = STATE(3908), - [sym_parameter_pack_expansion] = STATE(3908), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3506), - [sym_qualified_type_identifier] = STATE(7868), - [sym_user_defined_literal] = STATE(3506), - [sym_identifier] = ACTIONS(2605), - [anon_sym_LPAREN2] = ACTIONS(4310), - [anon_sym_BANG] = ACTIONS(1870), - [anon_sym_TILDE] = ACTIONS(1870), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_PLUS] = ACTIONS(1872), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym_LT] = ACTIONS(4310), - [anon_sym___extension__] = ACTIONS(2607), - [anon_sym_COLON_COLON] = ACTIONS(1880), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4310), - [anon_sym_LBRACE] = ACTIONS(4310), - [anon_sym_LBRACK] = ACTIONS(1450), - [anon_sym_static] = ACTIONS(4314), - [anon_sym_constexpr] = ACTIONS(4314), - [anon_sym_mutable] = ACTIONS(4314), - [anon_sym_consteval] = ACTIONS(4314), - [sym_primitive_type] = ACTIONS(2611), - [anon_sym_not] = ACTIONS(1872), - [anon_sym_compl] = ACTIONS(1872), - [anon_sym_DASH_DASH] = ACTIONS(1892), - [anon_sym_PLUS_PLUS] = ACTIONS(1892), - [anon_sym_sizeof] = ACTIONS(1894), - [anon_sym___alignof__] = ACTIONS(1896), - [anon_sym___alignof] = ACTIONS(1896), - [anon_sym__alignof] = ACTIONS(1896), - [anon_sym_alignof] = ACTIONS(1896), - [anon_sym__Alignof] = ACTIONS(1896), - [anon_sym_offsetof] = ACTIONS(1898), - [anon_sym__Generic] = ACTIONS(1900), - [anon_sym_asm] = ACTIONS(1902), - [anon_sym___asm__] = ACTIONS(1902), - [anon_sym___asm] = ACTIONS(1902), - [anon_sym_DASH_GT] = ACTIONS(4310), - [sym_number_literal] = ACTIONS(1904), - [anon_sym_L_SQUOTE] = ACTIONS(1906), - [anon_sym_u_SQUOTE] = ACTIONS(1906), - [anon_sym_U_SQUOTE] = ACTIONS(1906), - [anon_sym_u8_SQUOTE] = ACTIONS(1906), - [anon_sym_SQUOTE] = ACTIONS(1906), - [anon_sym_L_DQUOTE] = ACTIONS(1908), - [anon_sym_u_DQUOTE] = ACTIONS(1908), - [anon_sym_U_DQUOTE] = ACTIONS(1908), - [anon_sym_u8_DQUOTE] = ACTIONS(1908), - [anon_sym_DQUOTE] = ACTIONS(1908), - [sym_true] = ACTIONS(1910), - [sym_false] = ACTIONS(1910), - [anon_sym_NULL] = ACTIONS(1912), - [anon_sym_nullptr] = ACTIONS(1912), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1916), - [anon_sym_noexcept] = ACTIONS(4314), - [anon_sym_throw] = ACTIONS(4314), - [anon_sym_R_DQUOTE] = ACTIONS(1918), - [anon_sym_LR_DQUOTE] = ACTIONS(1918), - [anon_sym_uR_DQUOTE] = ACTIONS(1918), - [anon_sym_UR_DQUOTE] = ACTIONS(1918), - [anon_sym_u8R_DQUOTE] = ACTIONS(1918), - [anon_sym_co_await] = ACTIONS(1920), - [anon_sym_new] = ACTIONS(1922), - [anon_sym_requires] = ACTIONS(1924), - [sym_this] = ACTIONS(1910), - }, - [955] = { - [sym_expression_statement] = STATE(2752), - [sym_expression] = STATE(4466), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8471), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_type_requirement] = STATE(956), - [sym_compound_requirement] = STATE(956), - [sym__requirement] = STATE(956), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_requirement_seq_repeat1] = STATE(956), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1026] = { + [sym_compound_statement] = STATE(7415), + [sym_expression] = STATE(4432), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_initializer_list] = STATE(7415), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_RPAREN] = ACTIONS(4569), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(4318), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4320), - [anon_sym_RBRACE] = ACTIONS(4376), + [anon_sym_LBRACE] = ACTIONS(1872), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -174268,8 +182837,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_typename] = ACTIONS(4324), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -174281,71 +182849,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [956] = { - [sym_expression_statement] = STATE(2752), - [sym_expression] = STATE(4466), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8471), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_type_requirement] = STATE(981), - [sym_compound_requirement] = STATE(981), - [sym__requirement] = STATE(981), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_requirement_seq_repeat1] = STATE(981), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1027] = { + [sym_compound_statement] = STATE(7604), + [sym_expression] = STATE(4396), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_initializer_list] = STATE(7604), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_RPAREN] = ACTIONS(4571), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(4318), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4320), - [anon_sym_RBRACE] = ACTIONS(4378), + [anon_sym_LBRACE] = ACTIONS(1872), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -174378,8 +182941,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_typename] = ACTIONS(4324), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -174391,291 +182953,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [957] = { - [sym_string_literal] = STATE(2624), - [sym_template_argument_list] = STATE(1659), - [sym_raw_string_literal] = STATE(2624), - [aux_sym_sized_type_specifier_repeat1] = STATE(2641), - [sym_identifier] = ACTIONS(4144), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4146), - [anon_sym_COMMA] = ACTIONS(4146), - [anon_sym_LPAREN2] = ACTIONS(4159), - [anon_sym_TILDE] = ACTIONS(4152), - [anon_sym_DASH] = ACTIONS(4154), - [anon_sym_PLUS] = ACTIONS(4154), - [anon_sym_STAR] = ACTIONS(4156), - [anon_sym_SLASH] = ACTIONS(4154), - [anon_sym_PERCENT] = ACTIONS(4154), - [anon_sym_PIPE_PIPE] = ACTIONS(4146), - [anon_sym_AMP_AMP] = ACTIONS(4159), - [anon_sym_PIPE] = ACTIONS(4154), - [anon_sym_CARET] = ACTIONS(4154), - [anon_sym_AMP] = ACTIONS(4156), - [anon_sym_EQ_EQ] = ACTIONS(4146), - [anon_sym_BANG_EQ] = ACTIONS(4146), - [anon_sym_GT] = ACTIONS(4154), - [anon_sym_GT_EQ] = ACTIONS(4146), - [anon_sym_LT_EQ] = ACTIONS(4154), - [anon_sym_LT] = ACTIONS(4162), - [anon_sym_LT_LT] = ACTIONS(4154), - [anon_sym_GT_GT] = ACTIONS(4154), - [anon_sym_SEMI] = ACTIONS(4146), - [anon_sym___extension__] = ACTIONS(4144), - [anon_sym_virtual] = ACTIONS(4144), - [anon_sym_extern] = ACTIONS(4144), - [anon_sym___attribute__] = ACTIONS(4144), - [anon_sym___attribute] = ACTIONS(4144), - [anon_sym_COLON] = ACTIONS(4380), - [anon_sym_COLON_COLON] = ACTIONS(4167), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4152), - [anon_sym___declspec] = ACTIONS(4144), - [anon_sym___based] = ACTIONS(4144), - [anon_sym_LBRACE] = ACTIONS(4172), - [anon_sym_signed] = ACTIONS(4174), - [anon_sym_unsigned] = ACTIONS(4174), - [anon_sym_long] = ACTIONS(4174), - [anon_sym_short] = ACTIONS(4174), - [anon_sym_LBRACK] = ACTIONS(4156), - [anon_sym_static] = ACTIONS(4144), - [anon_sym_EQ] = ACTIONS(4180), - [anon_sym_register] = ACTIONS(4144), - [anon_sym_inline] = ACTIONS(4144), - [anon_sym___inline] = ACTIONS(4144), - [anon_sym___inline__] = ACTIONS(4144), - [anon_sym___forceinline] = ACTIONS(4144), - [anon_sym_thread_local] = ACTIONS(4144), - [anon_sym___thread] = ACTIONS(4144), - [anon_sym_const] = ACTIONS(4144), - [anon_sym_constexpr] = ACTIONS(4144), - [anon_sym_volatile] = ACTIONS(4144), - [anon_sym_restrict] = ACTIONS(4144), - [anon_sym___restrict__] = ACTIONS(4144), - [anon_sym__Atomic] = ACTIONS(4144), - [anon_sym__Noreturn] = ACTIONS(4144), - [anon_sym_noreturn] = ACTIONS(4144), - [anon_sym__Nonnull] = ACTIONS(4144), - [anon_sym_mutable] = ACTIONS(4144), - [anon_sym_constinit] = ACTIONS(4144), - [anon_sym_consteval] = ACTIONS(4144), - [anon_sym_alignas] = ACTIONS(4144), - [anon_sym__Alignas] = ACTIONS(4144), - [anon_sym_QMARK] = ACTIONS(4146), - [anon_sym_STAR_EQ] = ACTIONS(4182), - [anon_sym_SLASH_EQ] = ACTIONS(4182), - [anon_sym_PERCENT_EQ] = ACTIONS(4182), - [anon_sym_PLUS_EQ] = ACTIONS(4182), - [anon_sym_DASH_EQ] = ACTIONS(4182), - [anon_sym_LT_LT_EQ] = ACTIONS(4182), - [anon_sym_GT_GT_EQ] = ACTIONS(4182), - [anon_sym_AMP_EQ] = ACTIONS(4182), - [anon_sym_CARET_EQ] = ACTIONS(4182), - [anon_sym_PIPE_EQ] = ACTIONS(4182), - [anon_sym_and_eq] = ACTIONS(4180), - [anon_sym_or_eq] = ACTIONS(4180), - [anon_sym_xor_eq] = ACTIONS(4180), - [anon_sym_LT_EQ_GT] = ACTIONS(4146), - [anon_sym_or] = ACTIONS(4154), - [anon_sym_and] = ACTIONS(4154), - [anon_sym_bitor] = ACTIONS(4154), - [anon_sym_xor] = ACTIONS(4154), - [anon_sym_bitand] = ACTIONS(4154), - [anon_sym_not_eq] = ACTIONS(4154), - [anon_sym_DASH_DASH] = ACTIONS(4146), - [anon_sym_PLUS_PLUS] = ACTIONS(4146), - [anon_sym_DOT] = ACTIONS(4154), - [anon_sym_DOT_STAR] = ACTIONS(4146), - [anon_sym_DASH_GT] = ACTIONS(4146), - [anon_sym_L_DQUOTE] = ACTIONS(3623), - [anon_sym_u_DQUOTE] = ACTIONS(3623), - [anon_sym_U_DQUOTE] = ACTIONS(3623), - [anon_sym_u8_DQUOTE] = ACTIONS(3623), - [anon_sym_DQUOTE] = ACTIONS(3623), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4144), - [anon_sym_decltype] = ACTIONS(4144), - [anon_sym_template] = ACTIONS(4144), - [anon_sym_operator] = ACTIONS(4144), - [anon_sym_R_DQUOTE] = ACTIONS(3627), - [anon_sym_LR_DQUOTE] = ACTIONS(3627), - [anon_sym_uR_DQUOTE] = ACTIONS(3627), - [anon_sym_UR_DQUOTE] = ACTIONS(3627), - [anon_sym_u8R_DQUOTE] = ACTIONS(3627), - }, - [958] = { - [sym_expression] = STATE(4309), - [sym__string] = STATE(4380), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3253), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3253), - [sym_call_expression] = STATE(3253), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3253), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3253), - [sym_char_literal] = STATE(4380), - [sym_concatenated_string] = STATE(4380), - [sym_string_literal] = STATE(3416), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3416), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3253), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3253), - [sym_identifier] = ACTIONS(3823), - [anon_sym_LPAREN2] = ACTIONS(4310), - [anon_sym_BANG] = ACTIONS(3827), - [anon_sym_TILDE] = ACTIONS(3827), - [anon_sym_DASH] = ACTIONS(3825), - [anon_sym_PLUS] = ACTIONS(3825), - [anon_sym_STAR] = ACTIONS(4382), - [anon_sym_AMP] = ACTIONS(4382), - [anon_sym_LT] = ACTIONS(4310), - [anon_sym___extension__] = ACTIONS(3829), - [anon_sym_COLON_COLON] = ACTIONS(3831), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4310), - [anon_sym_LBRACE] = ACTIONS(4310), - [anon_sym_LBRACK] = ACTIONS(1450), - [anon_sym_static] = ACTIONS(4314), - [anon_sym_constexpr] = ACTIONS(4314), - [anon_sym_mutable] = ACTIONS(4314), - [anon_sym_consteval] = ACTIONS(4314), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3825), - [anon_sym_compl] = ACTIONS(3825), - [anon_sym_DASH_DASH] = ACTIONS(4384), - [anon_sym_PLUS_PLUS] = ACTIONS(4384), - [anon_sym_sizeof] = ACTIONS(3833), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [anon_sym_DASH_GT] = ACTIONS(4310), - [sym_number_literal] = ACTIONS(3835), - [anon_sym_L_SQUOTE] = ACTIONS(3837), - [anon_sym_u_SQUOTE] = ACTIONS(3837), - [anon_sym_U_SQUOTE] = ACTIONS(3837), - [anon_sym_u8_SQUOTE] = ACTIONS(3837), - [anon_sym_SQUOTE] = ACTIONS(3837), - [anon_sym_L_DQUOTE] = ACTIONS(3839), - [anon_sym_u_DQUOTE] = ACTIONS(3839), - [anon_sym_U_DQUOTE] = ACTIONS(3839), - [anon_sym_u8_DQUOTE] = ACTIONS(3839), - [anon_sym_DQUOTE] = ACTIONS(3839), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3841), - [anon_sym_noexcept] = ACTIONS(4314), - [anon_sym_throw] = ACTIONS(4314), - [anon_sym_R_DQUOTE] = ACTIONS(3843), - [anon_sym_LR_DQUOTE] = ACTIONS(3843), - [anon_sym_uR_DQUOTE] = ACTIONS(3843), - [anon_sym_UR_DQUOTE] = ACTIONS(3843), - [anon_sym_u8R_DQUOTE] = ACTIONS(3843), - [anon_sym_co_await] = ACTIONS(3845), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), - }, - [959] = { - [sym_expression_statement] = STATE(2752), - [sym_expression] = STATE(4466), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8471), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_type_requirement] = STATE(961), - [sym_compound_requirement] = STATE(961), - [sym__requirement] = STATE(961), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_requirement_seq_repeat1] = STATE(961), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1028] = { + [sym_compound_statement] = STATE(7546), + [sym_expression] = STATE(4452), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_initializer_list] = STATE(7546), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_RPAREN] = ACTIONS(4573), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(4318), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4320), - [anon_sym_RBRACE] = ACTIONS(4386), + [anon_sym_LBRACE] = ACTIONS(1872), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -174708,8 +183045,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_typename] = ACTIONS(4324), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -174721,71 +183057,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [960] = { - [sym_expression_statement] = STATE(2752), - [sym_expression] = STATE(4466), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8471), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_type_requirement] = STATE(981), - [sym_compound_requirement] = STATE(981), - [sym__requirement] = STATE(981), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_requirement_seq_repeat1] = STATE(981), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1029] = { + [sym_expression] = STATE(4622), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8460), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_initializer_list] = STATE(8460), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(4318), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(4575), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4320), - [anon_sym_RBRACE] = ACTIONS(4388), + [anon_sym_LBRACE] = ACTIONS(3623), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -174818,8 +183149,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_typename] = ACTIONS(4324), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -174831,76 +183161,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [961] = { - [sym_expression_statement] = STATE(2752), - [sym_expression] = STATE(4466), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8471), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_type_requirement] = STATE(981), - [sym_compound_requirement] = STATE(981), - [sym__requirement] = STATE(981), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_requirement_seq_repeat1] = STATE(981), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(4318), - [anon_sym___extension__] = ACTIONS(2024), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4320), - [anon_sym_RBRACE] = ACTIONS(4390), + [1030] = { + [sym_expression] = STATE(4235), + [sym__string] = STATE(4455), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3366), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3366), + [sym_call_expression] = STATE(3366), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3366), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3366), + [sym_initializer_list] = STATE(6914), + [sym_char_literal] = STATE(4455), + [sym_concatenated_string] = STATE(4455), + [sym_string_literal] = STATE(3406), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3406), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3366), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3366), + [sym_identifier] = ACTIONS(3833), + [anon_sym_LPAREN2] = ACTIONS(4557), + [anon_sym_BANG] = ACTIONS(3837), + [anon_sym_TILDE] = ACTIONS(3837), + [anon_sym_DASH] = ACTIONS(3835), + [anon_sym_PLUS] = ACTIONS(3835), + [anon_sym_STAR] = ACTIONS(4336), + [anon_sym_AMP] = ACTIONS(4336), + [anon_sym___extension__] = ACTIONS(3839), + [anon_sym_COLON_COLON] = ACTIONS(3841), + [anon_sym_LBRACE] = ACTIONS(3623), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_default] = ACTIONS(4577), + [anon_sym_not] = ACTIONS(3835), + [anon_sym_compl] = ACTIONS(3835), + [anon_sym_DASH_DASH] = ACTIONS(4338), + [anon_sym_PLUS_PLUS] = ACTIONS(4338), + [anon_sym_sizeof] = ACTIONS(3843), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -174911,321 +183235,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(113), [anon_sym___asm__] = ACTIONS(113), [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), + [sym_number_literal] = ACTIONS(3845), + [anon_sym_L_SQUOTE] = ACTIONS(3847), + [anon_sym_u_SQUOTE] = ACTIONS(3847), + [anon_sym_U_SQUOTE] = ACTIONS(3847), + [anon_sym_u8_SQUOTE] = ACTIONS(3847), + [anon_sym_SQUOTE] = ACTIONS(3847), + [anon_sym_L_DQUOTE] = ACTIONS(3849), + [anon_sym_u_DQUOTE] = ACTIONS(3849), + [anon_sym_U_DQUOTE] = ACTIONS(3849), + [anon_sym_u8_DQUOTE] = ACTIONS(3849), + [anon_sym_DQUOTE] = ACTIONS(3849), [sym_true] = ACTIONS(229), [sym_false] = ACTIONS(229), [anon_sym_NULL] = ACTIONS(123), [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_typename] = ACTIONS(4324), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(4579), + [aux_sym_pure_virtual_clause_token1] = ACTIONS(4581), + [anon_sym_R_DQUOTE] = ACTIONS(3853), + [anon_sym_LR_DQUOTE] = ACTIONS(3853), + [anon_sym_uR_DQUOTE] = ACTIONS(3853), + [anon_sym_UR_DQUOTE] = ACTIONS(3853), + [anon_sym_u8R_DQUOTE] = ACTIONS(3853), + [anon_sym_co_await] = ACTIONS(3855), [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [962] = { - [sym_expression] = STATE(4456), - [sym__string] = STATE(4738), - [sym_conditional_expression] = STATE(4829), - [sym_assignment_expression] = STATE(4829), - [sym_pointer_expression] = STATE(3602), - [sym_unary_expression] = STATE(4829), - [sym_binary_expression] = STATE(4829), - [sym_update_expression] = STATE(4829), - [sym_cast_expression] = STATE(4829), - [sym_sizeof_expression] = STATE(4829), - [sym_alignof_expression] = STATE(4829), - [sym_offsetof_expression] = STATE(4829), - [sym_generic_expression] = STATE(4829), - [sym_subscript_expression] = STATE(3602), - [sym_call_expression] = STATE(3602), - [sym_gnu_asm_expression] = STATE(4829), - [sym_extension_expression] = STATE(4829), - [sym_field_expression] = STATE(3602), - [sym_compound_literal_expression] = STATE(4829), - [sym_parenthesized_expression] = STATE(3602), - [sym_char_literal] = STATE(4738), - [sym_concatenated_string] = STATE(4738), - [sym_string_literal] = STATE(3759), - [sym_null] = STATE(4829), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7804), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(4829), - [sym_raw_string_literal] = STATE(3759), - [sym_co_await_expression] = STATE(4829), - [sym_new_expression] = STATE(4829), - [sym_delete_expression] = STATE(4829), - [sym_requires_clause] = STATE(4829), - [sym_requires_expression] = STATE(4829), - [sym_lambda_expression] = STATE(4829), - [sym_lambda_capture_specifier] = STATE(5401), - [sym_fold_expression] = STATE(4829), - [sym_parameter_pack_expansion] = STATE(4829), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5773), - [sym_qualified_identifier] = STATE(3602), - [sym_qualified_type_identifier] = STATE(7804), - [sym_user_defined_literal] = STATE(3602), - [sym_identifier] = ACTIONS(3883), - [anon_sym_LPAREN2] = ACTIONS(4310), - [anon_sym_BANG] = ACTIONS(3120), - [anon_sym_TILDE] = ACTIONS(3120), - [anon_sym_DASH] = ACTIONS(3122), - [anon_sym_PLUS] = ACTIONS(3122), - [anon_sym_STAR] = ACTIONS(3124), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym_LT] = ACTIONS(4310), - [anon_sym___extension__] = ACTIONS(3885), - [anon_sym_COLON_COLON] = ACTIONS(3128), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4310), - [anon_sym_LBRACE] = ACTIONS(4310), - [anon_sym_LBRACK] = ACTIONS(1450), - [anon_sym_static] = ACTIONS(4314), - [anon_sym_constexpr] = ACTIONS(4314), - [anon_sym_mutable] = ACTIONS(4314), - [anon_sym_consteval] = ACTIONS(4314), - [sym_primitive_type] = ACTIONS(3889), - [anon_sym_not] = ACTIONS(3122), - [anon_sym_compl] = ACTIONS(3122), - [anon_sym_DASH_DASH] = ACTIONS(3142), - [anon_sym_PLUS_PLUS] = ACTIONS(3142), - [anon_sym_sizeof] = ACTIONS(3144), - [anon_sym___alignof__] = ACTIONS(3146), - [anon_sym___alignof] = ACTIONS(3146), - [anon_sym__alignof] = ACTIONS(3146), - [anon_sym_alignof] = ACTIONS(3146), - [anon_sym__Alignof] = ACTIONS(3146), - [anon_sym_offsetof] = ACTIONS(3148), - [anon_sym__Generic] = ACTIONS(3150), - [anon_sym_asm] = ACTIONS(3152), - [anon_sym___asm__] = ACTIONS(3152), - [anon_sym___asm] = ACTIONS(3152), - [anon_sym_DASH_GT] = ACTIONS(4310), - [sym_number_literal] = ACTIONS(3154), - [anon_sym_L_SQUOTE] = ACTIONS(3156), - [anon_sym_u_SQUOTE] = ACTIONS(3156), - [anon_sym_U_SQUOTE] = ACTIONS(3156), - [anon_sym_u8_SQUOTE] = ACTIONS(3156), - [anon_sym_SQUOTE] = ACTIONS(3156), - [anon_sym_L_DQUOTE] = ACTIONS(3158), - [anon_sym_u_DQUOTE] = ACTIONS(3158), - [anon_sym_U_DQUOTE] = ACTIONS(3158), - [anon_sym_u8_DQUOTE] = ACTIONS(3158), - [anon_sym_DQUOTE] = ACTIONS(3158), - [sym_true] = ACTIONS(3160), - [sym_false] = ACTIONS(3160), - [anon_sym_NULL] = ACTIONS(3162), - [anon_sym_nullptr] = ACTIONS(3162), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3172), - [anon_sym_noexcept] = ACTIONS(4314), - [anon_sym_throw] = ACTIONS(4314), - [anon_sym_R_DQUOTE] = ACTIONS(3174), - [anon_sym_LR_DQUOTE] = ACTIONS(3174), - [anon_sym_uR_DQUOTE] = ACTIONS(3174), - [anon_sym_UR_DQUOTE] = ACTIONS(3174), - [anon_sym_u8R_DQUOTE] = ACTIONS(3174), - [anon_sym_co_await] = ACTIONS(3176), - [anon_sym_new] = ACTIONS(3178), - [anon_sym_requires] = ACTIONS(3180), - [sym_this] = ACTIONS(3160), - }, - [963] = { - [sym_expression] = STATE(3183), - [sym__string] = STATE(3235), - [sym_conditional_expression] = STATE(3373), - [sym_assignment_expression] = STATE(3373), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3373), - [sym_binary_expression] = STATE(3373), - [sym_update_expression] = STATE(3373), - [sym_cast_expression] = STATE(3373), - [sym_sizeof_expression] = STATE(3373), - [sym_alignof_expression] = STATE(3373), - [sym_offsetof_expression] = STATE(3373), - [sym_generic_expression] = STATE(3373), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3373), - [sym_extension_expression] = STATE(3373), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3373), - [sym_parenthesized_expression] = STATE(3365), - [sym_char_literal] = STATE(3235), - [sym_concatenated_string] = STATE(3235), - [sym_string_literal] = STATE(2358), - [sym_null] = STATE(3373), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7814), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3373), - [sym_raw_string_literal] = STATE(2358), - [sym_co_await_expression] = STATE(3373), - [sym_new_expression] = STATE(3373), - [sym_delete_expression] = STATE(3373), - [sym_requires_clause] = STATE(3373), - [sym_requires_expression] = STATE(3373), - [sym_lambda_expression] = STATE(3373), - [sym_lambda_capture_specifier] = STATE(5414), - [sym_fold_expression] = STATE(3373), - [sym_parameter_pack_expansion] = STATE(3373), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3365), - [sym_qualified_type_identifier] = STATE(7814), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2453), - [anon_sym_LPAREN2] = ACTIONS(4310), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym_LT] = ACTIONS(4310), - [anon_sym___extension__] = ACTIONS(2455), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4310), - [anon_sym_LBRACE] = ACTIONS(4310), - [anon_sym_LBRACK] = ACTIONS(1450), - [anon_sym_static] = ACTIONS(4314), - [anon_sym_constexpr] = ACTIONS(4314), - [anon_sym_mutable] = ACTIONS(4314), - [anon_sym_consteval] = ACTIONS(4314), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [anon_sym_DASH_GT] = ACTIONS(4310), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_noexcept] = ACTIONS(4314), - [anon_sym_throw] = ACTIONS(4314), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), - }, - [964] = { - [sym_expression_statement] = STATE(2752), - [sym_expression] = STATE(4466), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8471), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_type_requirement] = STATE(966), - [sym_compound_requirement] = STATE(966), - [sym__requirement] = STATE(966), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_requirement_seq_repeat1] = STATE(966), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1031] = { + [sym_compound_statement] = STATE(7481), + [sym_expression] = STATE(4424), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_initializer_list] = STATE(7481), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_RPAREN] = ACTIONS(4583), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(4318), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4320), - [anon_sym_RBRACE] = ACTIONS(4392), + [anon_sym_LBRACE] = ACTIONS(1872), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -175258,8 +183357,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_typename] = ACTIONS(4324), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -175271,181 +183369,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [965] = { - [sym_expression] = STATE(4317), - [sym__string] = STATE(4380), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3253), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3253), - [sym_call_expression] = STATE(3253), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3253), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3253), - [sym_char_literal] = STATE(4380), - [sym_concatenated_string] = STATE(4380), - [sym_string_literal] = STATE(3416), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3416), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3253), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3253), - [sym_identifier] = ACTIONS(3823), - [anon_sym_LPAREN2] = ACTIONS(4310), - [anon_sym_BANG] = ACTIONS(3827), - [anon_sym_TILDE] = ACTIONS(3827), - [anon_sym_DASH] = ACTIONS(3825), - [anon_sym_PLUS] = ACTIONS(3825), - [anon_sym_STAR] = ACTIONS(4382), - [anon_sym_AMP] = ACTIONS(4382), - [anon_sym_LT] = ACTIONS(4310), - [anon_sym___extension__] = ACTIONS(3829), - [anon_sym_COLON_COLON] = ACTIONS(3831), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4310), - [anon_sym_LBRACE] = ACTIONS(4310), - [anon_sym_LBRACK] = ACTIONS(1450), - [anon_sym_static] = ACTIONS(4314), - [anon_sym_constexpr] = ACTIONS(4314), - [anon_sym_mutable] = ACTIONS(4314), - [anon_sym_consteval] = ACTIONS(4314), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3825), - [anon_sym_compl] = ACTIONS(3825), - [anon_sym_DASH_DASH] = ACTIONS(4384), - [anon_sym_PLUS_PLUS] = ACTIONS(4384), - [anon_sym_sizeof] = ACTIONS(3833), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [anon_sym_DASH_GT] = ACTIONS(4310), - [sym_number_literal] = ACTIONS(3835), - [anon_sym_L_SQUOTE] = ACTIONS(3837), - [anon_sym_u_SQUOTE] = ACTIONS(3837), - [anon_sym_U_SQUOTE] = ACTIONS(3837), - [anon_sym_u8_SQUOTE] = ACTIONS(3837), - [anon_sym_SQUOTE] = ACTIONS(3837), - [anon_sym_L_DQUOTE] = ACTIONS(3839), - [anon_sym_u_DQUOTE] = ACTIONS(3839), - [anon_sym_U_DQUOTE] = ACTIONS(3839), - [anon_sym_u8_DQUOTE] = ACTIONS(3839), - [anon_sym_DQUOTE] = ACTIONS(3839), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3841), - [anon_sym_noexcept] = ACTIONS(4314), - [anon_sym_throw] = ACTIONS(4314), - [anon_sym_R_DQUOTE] = ACTIONS(3843), - [anon_sym_LR_DQUOTE] = ACTIONS(3843), - [anon_sym_uR_DQUOTE] = ACTIONS(3843), - [anon_sym_UR_DQUOTE] = ACTIONS(3843), - [anon_sym_u8R_DQUOTE] = ACTIONS(3843), - [anon_sym_co_await] = ACTIONS(3845), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), - }, - [966] = { - [sym_expression_statement] = STATE(2752), - [sym_expression] = STATE(4466), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8471), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_type_requirement] = STATE(981), - [sym_compound_requirement] = STATE(981), - [sym__requirement] = STATE(981), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_requirement_seq_repeat1] = STATE(981), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1032] = { + [sym_compound_statement] = STATE(7660), + [sym_expression] = STATE(4464), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_initializer_list] = STATE(7660), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_RPAREN] = ACTIONS(4585), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(4318), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4320), - [anon_sym_RBRACE] = ACTIONS(4394), + [anon_sym_LBRACE] = ACTIONS(1872), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -175478,8 +183461,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_typename] = ACTIONS(4324), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -175491,74 +183473,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [967] = { - [sym_expression] = STATE(3040), - [sym__string] = STATE(3181), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(3181), - [sym_concatenated_string] = STATE(3181), - [sym_string_literal] = STATE(2297), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(2297), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), - [sym_identifier] = ACTIONS(2305), - [anon_sym_LPAREN2] = ACTIONS(4310), - [anon_sym_BANG] = ACTIONS(2309), - [anon_sym_TILDE] = ACTIONS(2309), - [anon_sym_DASH] = ACTIONS(2307), - [anon_sym_PLUS] = ACTIONS(2307), - [anon_sym_STAR] = ACTIONS(4382), - [anon_sym_AMP] = ACTIONS(4382), - [anon_sym_LT] = ACTIONS(4310), - [anon_sym___extension__] = ACTIONS(2311), - [anon_sym_COLON_COLON] = ACTIONS(2313), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4310), - [anon_sym_LBRACE] = ACTIONS(4310), - [anon_sym_LBRACK] = ACTIONS(1450), - [anon_sym_static] = ACTIONS(4314), - [anon_sym_constexpr] = ACTIONS(4314), - [anon_sym_mutable] = ACTIONS(4314), - [anon_sym_consteval] = ACTIONS(4314), + [1033] = { + [sym_expression] = STATE(2432), + [sym__string] = STATE(2917), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(2917), + [sym_concatenated_string] = STATE(2917), + [sym_string_literal] = STATE(2114), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(2114), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_identifier_parameter_pack_expansion] = STATE(7916), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3700), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), + [sym_identifier] = ACTIONS(4587), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4589), + [anon_sym_COMMA] = ACTIONS(4591), + [anon_sym_LPAREN2] = ACTIONS(4565), + [anon_sym_BANG] = ACTIONS(1994), + [anon_sym_TILDE] = ACTIONS(1994), + [anon_sym_DASH] = ACTIONS(1992), + [anon_sym_PLUS] = ACTIONS(1992), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(1996), + [anon_sym_COLON_COLON] = ACTIONS(1998), + [anon_sym_LBRACK] = ACTIONS(2020), + [anon_sym_RBRACK] = ACTIONS(4591), [sym_primitive_type] = ACTIONS(1956), - [anon_sym_not] = ACTIONS(2307), - [anon_sym_compl] = ACTIONS(2307), - [anon_sym_DASH_DASH] = ACTIONS(4396), - [anon_sym_PLUS_PLUS] = ACTIONS(4396), - [anon_sym_sizeof] = ACTIONS(2315), + [anon_sym_not] = ACTIONS(1992), + [anon_sym_compl] = ACTIONS(1992), + [anon_sym_DASH_DASH] = ACTIONS(3355), + [anon_sym_PLUS_PLUS] = ACTIONS(3355), + [anon_sym_sizeof] = ACTIONS(2000), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), [anon_sym__alignof] = ACTIONS(1960), @@ -175569,103 +183548,303 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(1966), [anon_sym___asm__] = ACTIONS(1966), [anon_sym___asm] = ACTIONS(1966), - [anon_sym_DASH_GT] = ACTIONS(4310), - [sym_number_literal] = ACTIONS(2317), - [anon_sym_L_SQUOTE] = ACTIONS(2319), - [anon_sym_u_SQUOTE] = ACTIONS(2319), - [anon_sym_U_SQUOTE] = ACTIONS(2319), - [anon_sym_u8_SQUOTE] = ACTIONS(2319), - [anon_sym_SQUOTE] = ACTIONS(2319), - [anon_sym_L_DQUOTE] = ACTIONS(2321), - [anon_sym_u_DQUOTE] = ACTIONS(2321), - [anon_sym_U_DQUOTE] = ACTIONS(2321), - [anon_sym_u8_DQUOTE] = ACTIONS(2321), - [anon_sym_DQUOTE] = ACTIONS(2321), + [sym_number_literal] = ACTIONS(2002), + [anon_sym_L_SQUOTE] = ACTIONS(2004), + [anon_sym_u_SQUOTE] = ACTIONS(2004), + [anon_sym_U_SQUOTE] = ACTIONS(2004), + [anon_sym_u8_SQUOTE] = ACTIONS(2004), + [anon_sym_SQUOTE] = ACTIONS(2004), + [anon_sym_L_DQUOTE] = ACTIONS(2006), + [anon_sym_u_DQUOTE] = ACTIONS(2006), + [anon_sym_U_DQUOTE] = ACTIONS(2006), + [anon_sym_u8_DQUOTE] = ACTIONS(2006), + [anon_sym_DQUOTE] = ACTIONS(2006), [sym_true] = ACTIONS(1974), [sym_false] = ACTIONS(1974), [anon_sym_NULL] = ACTIONS(1976), [anon_sym_nullptr] = ACTIONS(1976), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(2323), - [anon_sym_noexcept] = ACTIONS(4314), - [anon_sym_throw] = ACTIONS(4314), - [anon_sym_R_DQUOTE] = ACTIONS(2325), - [anon_sym_LR_DQUOTE] = ACTIONS(2325), - [anon_sym_uR_DQUOTE] = ACTIONS(2325), - [anon_sym_UR_DQUOTE] = ACTIONS(2325), - [anon_sym_u8R_DQUOTE] = ACTIONS(2325), - [anon_sym_co_await] = ACTIONS(2327), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(2008), + [anon_sym_R_DQUOTE] = ACTIONS(2010), + [anon_sym_LR_DQUOTE] = ACTIONS(2010), + [anon_sym_uR_DQUOTE] = ACTIONS(2010), + [anon_sym_UR_DQUOTE] = ACTIONS(2010), + [anon_sym_u8R_DQUOTE] = ACTIONS(2010), + [anon_sym_co_await] = ACTIONS(2012), [anon_sym_new] = ACTIONS(2014), [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [968] = { - [sym_expression] = STATE(4361), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_initializer_list] = STATE(7299), - [sym_initializer_pair] = STATE(7299), - [sym_subscript_designator] = STATE(6728), - [sym_subscript_range_designator] = STATE(6728), - [sym_field_designator] = STATE(6728), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_initializer_pair_repeat1] = STATE(6728), - [sym_identifier] = ACTIONS(4326), - [anon_sym_COMMA] = ACTIONS(173), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1034] = { + [sym_expression] = STATE(3392), + [sym__string] = STATE(3775), + [sym_conditional_expression] = STATE(3886), + [sym_assignment_expression] = STATE(3886), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(3886), + [sym_binary_expression] = STATE(3886), + [sym_update_expression] = STATE(3886), + [sym_cast_expression] = STATE(3886), + [sym_sizeof_expression] = STATE(3886), + [sym_alignof_expression] = STATE(3886), + [sym_offsetof_expression] = STATE(3886), + [sym_generic_expression] = STATE(3886), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(3886), + [sym_extension_expression] = STATE(3886), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(3886), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(3775), + [sym_concatenated_string] = STATE(3775), + [sym_string_literal] = STATE(2596), + [sym_null] = STATE(3886), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7756), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3886), + [sym_raw_string_literal] = STATE(2596), + [sym_co_await_expression] = STATE(3886), + [sym_new_expression] = STATE(3886), + [sym_delete_expression] = STATE(3886), + [sym_requires_clause] = STATE(3886), + [sym_requires_expression] = STATE(3886), + [sym_lambda_expression] = STATE(3886), + [sym_lambda_capture_specifier] = STATE(5492), + [sym__unary_left_fold] = STATE(8633), + [sym__unary_right_fold] = STATE(8634), + [sym__binary_fold] = STATE(8635), + [sym_fold_expression] = STATE(3886), + [sym_parameter_pack_expansion] = STATE(3886), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(7756), + [sym_user_defined_literal] = STATE(3522), + [sym_identifier] = ACTIONS(2619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1788), + [anon_sym_LPAREN2] = ACTIONS(1888), + [anon_sym_BANG] = ACTIONS(1890), + [anon_sym_TILDE] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1892), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(2621), + [anon_sym_COLON_COLON] = ACTIONS(1898), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2625), + [anon_sym_not] = ACTIONS(1892), + [anon_sym_compl] = ACTIONS(1892), + [anon_sym_DASH_DASH] = ACTIONS(1902), + [anon_sym_PLUS_PLUS] = ACTIONS(1902), + [anon_sym_sizeof] = ACTIONS(1904), + [anon_sym___alignof__] = ACTIONS(1906), + [anon_sym___alignof] = ACTIONS(1906), + [anon_sym__alignof] = ACTIONS(1906), + [anon_sym_alignof] = ACTIONS(1906), + [anon_sym__Alignof] = ACTIONS(1906), + [anon_sym_offsetof] = ACTIONS(1908), + [anon_sym__Generic] = ACTIONS(1910), + [anon_sym_asm] = ACTIONS(1912), + [anon_sym___asm__] = ACTIONS(1912), + [anon_sym___asm] = ACTIONS(1912), + [sym_number_literal] = ACTIONS(1914), + [anon_sym_L_SQUOTE] = ACTIONS(1916), + [anon_sym_u_SQUOTE] = ACTIONS(1916), + [anon_sym_U_SQUOTE] = ACTIONS(1916), + [anon_sym_u8_SQUOTE] = ACTIONS(1916), + [anon_sym_SQUOTE] = ACTIONS(1916), + [anon_sym_L_DQUOTE] = ACTIONS(1918), + [anon_sym_u_DQUOTE] = ACTIONS(1918), + [anon_sym_U_DQUOTE] = ACTIONS(1918), + [anon_sym_u8_DQUOTE] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1918), + [sym_true] = ACTIONS(1920), + [sym_false] = ACTIONS(1920), + [anon_sym_NULL] = ACTIONS(1922), + [anon_sym_nullptr] = ACTIONS(1922), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1924), + [anon_sym_R_DQUOTE] = ACTIONS(1926), + [anon_sym_LR_DQUOTE] = ACTIONS(1926), + [anon_sym_uR_DQUOTE] = ACTIONS(1926), + [anon_sym_UR_DQUOTE] = ACTIONS(1926), + [anon_sym_u8R_DQUOTE] = ACTIONS(1926), + [anon_sym_co_await] = ACTIONS(1928), + [anon_sym_new] = ACTIONS(1930), + [anon_sym_requires] = ACTIONS(1932), + [sym_this] = ACTIONS(1920), + }, + [1035] = { + [sym_expression] = STATE(3256), + [sym__string] = STATE(3775), + [sym_conditional_expression] = STATE(3886), + [sym_assignment_expression] = STATE(3886), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(3886), + [sym_binary_expression] = STATE(3886), + [sym_update_expression] = STATE(3886), + [sym_cast_expression] = STATE(3886), + [sym_sizeof_expression] = STATE(3886), + [sym_alignof_expression] = STATE(3886), + [sym_offsetof_expression] = STATE(3886), + [sym_generic_expression] = STATE(3886), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(3886), + [sym_extension_expression] = STATE(3886), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(3886), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(3775), + [sym_concatenated_string] = STATE(3775), + [sym_string_literal] = STATE(2596), + [sym_null] = STATE(3886), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7756), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3886), + [sym_raw_string_literal] = STATE(2596), + [sym_co_await_expression] = STATE(3886), + [sym_new_expression] = STATE(3886), + [sym_delete_expression] = STATE(3886), + [sym_requires_clause] = STATE(3886), + [sym_requires_expression] = STATE(3886), + [sym_lambda_expression] = STATE(3886), + [sym_lambda_capture_specifier] = STATE(5492), + [sym__unary_left_fold] = STATE(8389), + [sym__unary_right_fold] = STATE(8397), + [sym__binary_fold] = STATE(8399), + [sym_fold_expression] = STATE(3886), + [sym_parameter_pack_expansion] = STATE(3886), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(7756), + [sym_user_defined_literal] = STATE(3522), + [sym_identifier] = ACTIONS(2619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1788), + [anon_sym_LPAREN2] = ACTIONS(1888), + [anon_sym_BANG] = ACTIONS(1890), + [anon_sym_TILDE] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1892), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(2621), + [anon_sym_COLON_COLON] = ACTIONS(1898), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2625), + [anon_sym_not] = ACTIONS(1892), + [anon_sym_compl] = ACTIONS(1892), + [anon_sym_DASH_DASH] = ACTIONS(1902), + [anon_sym_PLUS_PLUS] = ACTIONS(1902), + [anon_sym_sizeof] = ACTIONS(1904), + [anon_sym___alignof__] = ACTIONS(1906), + [anon_sym___alignof] = ACTIONS(1906), + [anon_sym__alignof] = ACTIONS(1906), + [anon_sym_alignof] = ACTIONS(1906), + [anon_sym__Alignof] = ACTIONS(1906), + [anon_sym_offsetof] = ACTIONS(1908), + [anon_sym__Generic] = ACTIONS(1910), + [anon_sym_asm] = ACTIONS(1912), + [anon_sym___asm__] = ACTIONS(1912), + [anon_sym___asm] = ACTIONS(1912), + [sym_number_literal] = ACTIONS(1914), + [anon_sym_L_SQUOTE] = ACTIONS(1916), + [anon_sym_u_SQUOTE] = ACTIONS(1916), + [anon_sym_U_SQUOTE] = ACTIONS(1916), + [anon_sym_u8_SQUOTE] = ACTIONS(1916), + [anon_sym_SQUOTE] = ACTIONS(1916), + [anon_sym_L_DQUOTE] = ACTIONS(1918), + [anon_sym_u_DQUOTE] = ACTIONS(1918), + [anon_sym_U_DQUOTE] = ACTIONS(1918), + [anon_sym_u8_DQUOTE] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1918), + [sym_true] = ACTIONS(1920), + [sym_false] = ACTIONS(1920), + [anon_sym_NULL] = ACTIONS(1922), + [anon_sym_nullptr] = ACTIONS(1922), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1924), + [anon_sym_R_DQUOTE] = ACTIONS(1926), + [anon_sym_LR_DQUOTE] = ACTIONS(1926), + [anon_sym_uR_DQUOTE] = ACTIONS(1926), + [anon_sym_UR_DQUOTE] = ACTIONS(1926), + [anon_sym_u8R_DQUOTE] = ACTIONS(1926), + [anon_sym_co_await] = ACTIONS(1928), + [anon_sym_new] = ACTIONS(1930), + [anon_sym_requires] = ACTIONS(1932), + [sym_this] = ACTIONS(1920), + }, + [1036] = { + [sym_compound_statement] = STATE(7482), + [sym_expression] = STATE(4390), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_initializer_list] = STATE(7482), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_RPAREN] = ACTIONS(4593), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3615), - [anon_sym_RBRACE] = ACTIONS(4398), - [anon_sym_LBRACK] = ACTIONS(4332), - [sym_primitive_type] = ACTIONS(2028), + [anon_sym_LBRACE] = ACTIONS(1872), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -175681,7 +183860,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(113), [anon_sym___asm__] = ACTIONS(113), [anon_sym___asm] = ACTIONS(113), - [anon_sym_DOT] = ACTIONS(225), [sym_number_literal] = ACTIONS(227), [anon_sym_L_SQUOTE] = ACTIONS(117), [anon_sym_u_SQUOTE] = ACTIONS(117), @@ -175699,7 +183877,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -175711,71 +183889,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [969] = { - [sym_expression_statement] = STATE(2752), - [sym_expression] = STATE(4466), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8471), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_type_requirement] = STATE(971), - [sym_compound_requirement] = STATE(971), - [sym__requirement] = STATE(971), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_requirement_seq_repeat1] = STATE(971), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1037] = { + [sym_expression] = STATE(4629), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8454), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_initializer_list] = STATE(8454), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(4318), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(4595), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4320), - [anon_sym_RBRACE] = ACTIONS(4400), + [anon_sym_LBRACE] = ACTIONS(3623), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -175808,8 +183981,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_typename] = ACTIONS(4324), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -175821,186 +183993,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [970] = { - [sym_expression] = STATE(4429), - [sym__string] = STATE(4738), - [sym_conditional_expression] = STATE(4829), - [sym_assignment_expression] = STATE(4829), - [sym_pointer_expression] = STATE(3602), - [sym_unary_expression] = STATE(4829), - [sym_binary_expression] = STATE(4829), - [sym_update_expression] = STATE(4829), - [sym_cast_expression] = STATE(4829), - [sym_sizeof_expression] = STATE(4829), - [sym_alignof_expression] = STATE(4829), - [sym_offsetof_expression] = STATE(4829), - [sym_generic_expression] = STATE(4829), - [sym_subscript_expression] = STATE(3602), - [sym_call_expression] = STATE(3602), - [sym_gnu_asm_expression] = STATE(4829), - [sym_extension_expression] = STATE(4829), - [sym_field_expression] = STATE(3602), - [sym_compound_literal_expression] = STATE(4829), - [sym_parenthesized_expression] = STATE(3602), - [sym_char_literal] = STATE(4738), - [sym_concatenated_string] = STATE(4738), - [sym_string_literal] = STATE(3759), - [sym_null] = STATE(4829), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7804), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(4829), - [sym_raw_string_literal] = STATE(3759), - [sym_co_await_expression] = STATE(4829), - [sym_new_expression] = STATE(4829), - [sym_delete_expression] = STATE(4829), - [sym_requires_clause] = STATE(4829), - [sym_requires_expression] = STATE(4829), - [sym_lambda_expression] = STATE(4829), - [sym_lambda_capture_specifier] = STATE(5401), - [sym_fold_expression] = STATE(4829), - [sym_parameter_pack_expansion] = STATE(4829), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5773), - [sym_qualified_identifier] = STATE(3602), - [sym_qualified_type_identifier] = STATE(7804), - [sym_user_defined_literal] = STATE(3602), - [sym_identifier] = ACTIONS(3883), - [anon_sym_LPAREN2] = ACTIONS(4310), - [anon_sym_BANG] = ACTIONS(3120), - [anon_sym_TILDE] = ACTIONS(3120), - [anon_sym_DASH] = ACTIONS(3122), - [anon_sym_PLUS] = ACTIONS(3122), - [anon_sym_STAR] = ACTIONS(3124), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym_LT] = ACTIONS(4310), - [anon_sym___extension__] = ACTIONS(3885), - [anon_sym_COLON_COLON] = ACTIONS(3128), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4310), - [anon_sym_LBRACE] = ACTIONS(4310), - [anon_sym_LBRACK] = ACTIONS(1450), - [anon_sym_static] = ACTIONS(4314), - [anon_sym_constexpr] = ACTIONS(4314), - [anon_sym_mutable] = ACTIONS(4314), - [anon_sym_consteval] = ACTIONS(4314), - [sym_primitive_type] = ACTIONS(3889), - [anon_sym_not] = ACTIONS(3122), - [anon_sym_compl] = ACTIONS(3122), - [anon_sym_DASH_DASH] = ACTIONS(3142), - [anon_sym_PLUS_PLUS] = ACTIONS(3142), - [anon_sym_sizeof] = ACTIONS(3144), - [anon_sym___alignof__] = ACTIONS(3146), - [anon_sym___alignof] = ACTIONS(3146), - [anon_sym__alignof] = ACTIONS(3146), - [anon_sym_alignof] = ACTIONS(3146), - [anon_sym__Alignof] = ACTIONS(3146), - [anon_sym_offsetof] = ACTIONS(3148), - [anon_sym__Generic] = ACTIONS(3150), - [anon_sym_asm] = ACTIONS(3152), - [anon_sym___asm__] = ACTIONS(3152), - [anon_sym___asm] = ACTIONS(3152), - [anon_sym_DASH_GT] = ACTIONS(4310), - [sym_number_literal] = ACTIONS(3154), - [anon_sym_L_SQUOTE] = ACTIONS(3156), - [anon_sym_u_SQUOTE] = ACTIONS(3156), - [anon_sym_U_SQUOTE] = ACTIONS(3156), - [anon_sym_u8_SQUOTE] = ACTIONS(3156), - [anon_sym_SQUOTE] = ACTIONS(3156), - [anon_sym_L_DQUOTE] = ACTIONS(3158), - [anon_sym_u_DQUOTE] = ACTIONS(3158), - [anon_sym_U_DQUOTE] = ACTIONS(3158), - [anon_sym_u8_DQUOTE] = ACTIONS(3158), - [anon_sym_DQUOTE] = ACTIONS(3158), - [sym_true] = ACTIONS(3160), - [sym_false] = ACTIONS(3160), - [anon_sym_NULL] = ACTIONS(3162), - [anon_sym_nullptr] = ACTIONS(3162), + [1038] = { + [sym_expression] = STATE(3311), + [sym__string] = STATE(3775), + [sym_conditional_expression] = STATE(3886), + [sym_assignment_expression] = STATE(3886), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(3886), + [sym_binary_expression] = STATE(3886), + [sym_update_expression] = STATE(3886), + [sym_cast_expression] = STATE(3886), + [sym_sizeof_expression] = STATE(3886), + [sym_alignof_expression] = STATE(3886), + [sym_offsetof_expression] = STATE(3886), + [sym_generic_expression] = STATE(3886), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(3886), + [sym_extension_expression] = STATE(3886), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(3886), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(3775), + [sym_concatenated_string] = STATE(3775), + [sym_string_literal] = STATE(2596), + [sym_null] = STATE(3886), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7756), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3886), + [sym_raw_string_literal] = STATE(2596), + [sym_co_await_expression] = STATE(3886), + [sym_new_expression] = STATE(3886), + [sym_delete_expression] = STATE(3886), + [sym_requires_clause] = STATE(3886), + [sym_requires_expression] = STATE(3886), + [sym_lambda_expression] = STATE(3886), + [sym_lambda_capture_specifier] = STATE(5492), + [sym__unary_left_fold] = STATE(8363), + [sym__unary_right_fold] = STATE(8370), + [sym__binary_fold] = STATE(8382), + [sym_fold_expression] = STATE(3886), + [sym_parameter_pack_expansion] = STATE(3886), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(7756), + [sym_user_defined_literal] = STATE(3522), + [sym_identifier] = ACTIONS(2619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1788), + [anon_sym_LPAREN2] = ACTIONS(1888), + [anon_sym_BANG] = ACTIONS(1890), + [anon_sym_TILDE] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1892), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(2621), + [anon_sym_COLON_COLON] = ACTIONS(1898), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2625), + [anon_sym_not] = ACTIONS(1892), + [anon_sym_compl] = ACTIONS(1892), + [anon_sym_DASH_DASH] = ACTIONS(1902), + [anon_sym_PLUS_PLUS] = ACTIONS(1902), + [anon_sym_sizeof] = ACTIONS(1904), + [anon_sym___alignof__] = ACTIONS(1906), + [anon_sym___alignof] = ACTIONS(1906), + [anon_sym__alignof] = ACTIONS(1906), + [anon_sym_alignof] = ACTIONS(1906), + [anon_sym__Alignof] = ACTIONS(1906), + [anon_sym_offsetof] = ACTIONS(1908), + [anon_sym__Generic] = ACTIONS(1910), + [anon_sym_asm] = ACTIONS(1912), + [anon_sym___asm__] = ACTIONS(1912), + [anon_sym___asm] = ACTIONS(1912), + [sym_number_literal] = ACTIONS(1914), + [anon_sym_L_SQUOTE] = ACTIONS(1916), + [anon_sym_u_SQUOTE] = ACTIONS(1916), + [anon_sym_U_SQUOTE] = ACTIONS(1916), + [anon_sym_u8_SQUOTE] = ACTIONS(1916), + [anon_sym_SQUOTE] = ACTIONS(1916), + [anon_sym_L_DQUOTE] = ACTIONS(1918), + [anon_sym_u_DQUOTE] = ACTIONS(1918), + [anon_sym_U_DQUOTE] = ACTIONS(1918), + [anon_sym_u8_DQUOTE] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1918), + [sym_true] = ACTIONS(1920), + [sym_false] = ACTIONS(1920), + [anon_sym_NULL] = ACTIONS(1922), + [anon_sym_nullptr] = ACTIONS(1922), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3172), - [anon_sym_noexcept] = ACTIONS(4314), - [anon_sym_throw] = ACTIONS(4314), - [anon_sym_R_DQUOTE] = ACTIONS(3174), - [anon_sym_LR_DQUOTE] = ACTIONS(3174), - [anon_sym_uR_DQUOTE] = ACTIONS(3174), - [anon_sym_UR_DQUOTE] = ACTIONS(3174), - [anon_sym_u8R_DQUOTE] = ACTIONS(3174), - [anon_sym_co_await] = ACTIONS(3176), - [anon_sym_new] = ACTIONS(3178), - [anon_sym_requires] = ACTIONS(3180), - [sym_this] = ACTIONS(3160), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1924), + [anon_sym_R_DQUOTE] = ACTIONS(1926), + [anon_sym_LR_DQUOTE] = ACTIONS(1926), + [anon_sym_uR_DQUOTE] = ACTIONS(1926), + [anon_sym_UR_DQUOTE] = ACTIONS(1926), + [anon_sym_u8R_DQUOTE] = ACTIONS(1926), + [anon_sym_co_await] = ACTIONS(1928), + [anon_sym_new] = ACTIONS(1930), + [anon_sym_requires] = ACTIONS(1932), + [sym_this] = ACTIONS(1920), }, - [971] = { - [sym_expression_statement] = STATE(2752), - [sym_expression] = STATE(4466), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8471), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_type_requirement] = STATE(981), - [sym_compound_requirement] = STATE(981), - [sym__requirement] = STATE(981), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_requirement_seq_repeat1] = STATE(981), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(4318), - [anon_sym___extension__] = ACTIONS(2024), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4320), - [anon_sym_RBRACE] = ACTIONS(4402), + [1039] = { + [sym_expression] = STATE(4230), + [sym__string] = STATE(4455), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3366), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3366), + [sym_call_expression] = STATE(3366), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3366), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3366), + [sym_initializer_list] = STATE(6945), + [sym_char_literal] = STATE(4455), + [sym_concatenated_string] = STATE(4455), + [sym_string_literal] = STATE(3406), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3406), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3366), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3366), + [sym_identifier] = ACTIONS(3833), + [anon_sym_LPAREN2] = ACTIONS(4557), + [anon_sym_BANG] = ACTIONS(3837), + [anon_sym_TILDE] = ACTIONS(3837), + [anon_sym_DASH] = ACTIONS(3835), + [anon_sym_PLUS] = ACTIONS(3835), + [anon_sym_STAR] = ACTIONS(4336), + [anon_sym_AMP] = ACTIONS(4336), + [anon_sym___extension__] = ACTIONS(3839), + [anon_sym_COLON_COLON] = ACTIONS(3841), + [anon_sym_LBRACE] = ACTIONS(3623), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_default] = ACTIONS(4597), + [anon_sym_not] = ACTIONS(3835), + [anon_sym_compl] = ACTIONS(3835), + [anon_sym_DASH_DASH] = ACTIONS(4338), + [anon_sym_PLUS_PLUS] = ACTIONS(4338), + [anon_sym_sizeof] = ACTIONS(3843), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -176011,214 +184171,621 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(113), [anon_sym___asm__] = ACTIONS(113), [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), + [sym_number_literal] = ACTIONS(3845), + [anon_sym_L_SQUOTE] = ACTIONS(3847), + [anon_sym_u_SQUOTE] = ACTIONS(3847), + [anon_sym_U_SQUOTE] = ACTIONS(3847), + [anon_sym_u8_SQUOTE] = ACTIONS(3847), + [anon_sym_SQUOTE] = ACTIONS(3847), + [anon_sym_L_DQUOTE] = ACTIONS(3849), + [anon_sym_u_DQUOTE] = ACTIONS(3849), + [anon_sym_U_DQUOTE] = ACTIONS(3849), + [anon_sym_u8_DQUOTE] = ACTIONS(3849), + [anon_sym_DQUOTE] = ACTIONS(3849), [sym_true] = ACTIONS(229), [sym_false] = ACTIONS(229), [anon_sym_NULL] = ACTIONS(123), [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_typename] = ACTIONS(4324), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(4599), + [aux_sym_pure_virtual_clause_token1] = ACTIONS(4601), + [anon_sym_R_DQUOTE] = ACTIONS(3853), + [anon_sym_LR_DQUOTE] = ACTIONS(3853), + [anon_sym_uR_DQUOTE] = ACTIONS(3853), + [anon_sym_UR_DQUOTE] = ACTIONS(3853), + [anon_sym_u8R_DQUOTE] = ACTIONS(3853), + [anon_sym_co_await] = ACTIONS(3855), [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [972] = { - [sym_expression] = STATE(3043), - [sym__string] = STATE(3181), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(3181), - [sym_concatenated_string] = STATE(3181), - [sym_string_literal] = STATE(2297), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(2297), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), - [sym_identifier] = ACTIONS(2305), - [anon_sym_LPAREN2] = ACTIONS(4310), - [anon_sym_BANG] = ACTIONS(2309), - [anon_sym_TILDE] = ACTIONS(2309), - [anon_sym_DASH] = ACTIONS(2307), - [anon_sym_PLUS] = ACTIONS(2307), - [anon_sym_STAR] = ACTIONS(4382), - [anon_sym_AMP] = ACTIONS(4382), - [anon_sym_LT] = ACTIONS(4310), - [anon_sym___extension__] = ACTIONS(2311), - [anon_sym_COLON_COLON] = ACTIONS(2313), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4310), - [anon_sym_LBRACE] = ACTIONS(4310), - [anon_sym_LBRACK] = ACTIONS(1450), - [anon_sym_static] = ACTIONS(4314), - [anon_sym_constexpr] = ACTIONS(4314), - [anon_sym_mutable] = ACTIONS(4314), - [anon_sym_consteval] = ACTIONS(4314), - [sym_primitive_type] = ACTIONS(1956), - [anon_sym_not] = ACTIONS(2307), - [anon_sym_compl] = ACTIONS(2307), - [anon_sym_DASH_DASH] = ACTIONS(4396), - [anon_sym_PLUS_PLUS] = ACTIONS(4396), - [anon_sym_sizeof] = ACTIONS(2315), - [anon_sym___alignof__] = ACTIONS(1960), - [anon_sym___alignof] = ACTIONS(1960), - [anon_sym__alignof] = ACTIONS(1960), - [anon_sym_alignof] = ACTIONS(1960), - [anon_sym__Alignof] = ACTIONS(1960), - [anon_sym_offsetof] = ACTIONS(1962), - [anon_sym__Generic] = ACTIONS(1964), - [anon_sym_asm] = ACTIONS(1966), - [anon_sym___asm__] = ACTIONS(1966), - [anon_sym___asm] = ACTIONS(1966), - [anon_sym_DASH_GT] = ACTIONS(4310), - [sym_number_literal] = ACTIONS(2317), - [anon_sym_L_SQUOTE] = ACTIONS(2319), - [anon_sym_u_SQUOTE] = ACTIONS(2319), - [anon_sym_U_SQUOTE] = ACTIONS(2319), - [anon_sym_u8_SQUOTE] = ACTIONS(2319), - [anon_sym_SQUOTE] = ACTIONS(2319), - [anon_sym_L_DQUOTE] = ACTIONS(2321), - [anon_sym_u_DQUOTE] = ACTIONS(2321), - [anon_sym_U_DQUOTE] = ACTIONS(2321), - [anon_sym_u8_DQUOTE] = ACTIONS(2321), - [anon_sym_DQUOTE] = ACTIONS(2321), - [sym_true] = ACTIONS(1974), - [sym_false] = ACTIONS(1974), - [anon_sym_NULL] = ACTIONS(1976), - [anon_sym_nullptr] = ACTIONS(1976), + [1040] = { + [sym_expression] = STATE(3352), + [sym__string] = STATE(3775), + [sym_conditional_expression] = STATE(3886), + [sym_assignment_expression] = STATE(3886), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(3886), + [sym_binary_expression] = STATE(3886), + [sym_update_expression] = STATE(3886), + [sym_cast_expression] = STATE(3886), + [sym_sizeof_expression] = STATE(3886), + [sym_alignof_expression] = STATE(3886), + [sym_offsetof_expression] = STATE(3886), + [sym_generic_expression] = STATE(3886), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(3886), + [sym_extension_expression] = STATE(3886), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(3886), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(3775), + [sym_concatenated_string] = STATE(3775), + [sym_string_literal] = STATE(2596), + [sym_null] = STATE(3886), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7756), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3886), + [sym_raw_string_literal] = STATE(2596), + [sym_co_await_expression] = STATE(3886), + [sym_new_expression] = STATE(3886), + [sym_delete_expression] = STATE(3886), + [sym_requires_clause] = STATE(3886), + [sym_requires_expression] = STATE(3886), + [sym_lambda_expression] = STATE(3886), + [sym_lambda_capture_specifier] = STATE(5492), + [sym__unary_left_fold] = STATE(8151), + [sym__unary_right_fold] = STATE(8158), + [sym__binary_fold] = STATE(8170), + [sym_fold_expression] = STATE(3886), + [sym_parameter_pack_expansion] = STATE(3886), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(7756), + [sym_user_defined_literal] = STATE(3522), + [sym_identifier] = ACTIONS(2619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1788), + [anon_sym_LPAREN2] = ACTIONS(1888), + [anon_sym_BANG] = ACTIONS(1890), + [anon_sym_TILDE] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1892), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(2621), + [anon_sym_COLON_COLON] = ACTIONS(1898), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2625), + [anon_sym_not] = ACTIONS(1892), + [anon_sym_compl] = ACTIONS(1892), + [anon_sym_DASH_DASH] = ACTIONS(1902), + [anon_sym_PLUS_PLUS] = ACTIONS(1902), + [anon_sym_sizeof] = ACTIONS(1904), + [anon_sym___alignof__] = ACTIONS(1906), + [anon_sym___alignof] = ACTIONS(1906), + [anon_sym__alignof] = ACTIONS(1906), + [anon_sym_alignof] = ACTIONS(1906), + [anon_sym__Alignof] = ACTIONS(1906), + [anon_sym_offsetof] = ACTIONS(1908), + [anon_sym__Generic] = ACTIONS(1910), + [anon_sym_asm] = ACTIONS(1912), + [anon_sym___asm__] = ACTIONS(1912), + [anon_sym___asm] = ACTIONS(1912), + [sym_number_literal] = ACTIONS(1914), + [anon_sym_L_SQUOTE] = ACTIONS(1916), + [anon_sym_u_SQUOTE] = ACTIONS(1916), + [anon_sym_U_SQUOTE] = ACTIONS(1916), + [anon_sym_u8_SQUOTE] = ACTIONS(1916), + [anon_sym_SQUOTE] = ACTIONS(1916), + [anon_sym_L_DQUOTE] = ACTIONS(1918), + [anon_sym_u_DQUOTE] = ACTIONS(1918), + [anon_sym_U_DQUOTE] = ACTIONS(1918), + [anon_sym_u8_DQUOTE] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1918), + [sym_true] = ACTIONS(1920), + [sym_false] = ACTIONS(1920), + [anon_sym_NULL] = ACTIONS(1922), + [anon_sym_nullptr] = ACTIONS(1922), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(2323), - [anon_sym_noexcept] = ACTIONS(4314), - [anon_sym_throw] = ACTIONS(4314), - [anon_sym_R_DQUOTE] = ACTIONS(2325), - [anon_sym_LR_DQUOTE] = ACTIONS(2325), - [anon_sym_uR_DQUOTE] = ACTIONS(2325), - [anon_sym_UR_DQUOTE] = ACTIONS(2325), - [anon_sym_u8R_DQUOTE] = ACTIONS(2325), - [anon_sym_co_await] = ACTIONS(2327), - [anon_sym_new] = ACTIONS(2014), - [anon_sym_requires] = ACTIONS(1988), - [sym_this] = ACTIONS(1974), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1924), + [anon_sym_R_DQUOTE] = ACTIONS(1926), + [anon_sym_LR_DQUOTE] = ACTIONS(1926), + [anon_sym_uR_DQUOTE] = ACTIONS(1926), + [anon_sym_UR_DQUOTE] = ACTIONS(1926), + [anon_sym_u8R_DQUOTE] = ACTIONS(1926), + [anon_sym_co_await] = ACTIONS(1928), + [anon_sym_new] = ACTIONS(1930), + [anon_sym_requires] = ACTIONS(1932), + [sym_this] = ACTIONS(1920), }, - [973] = { - [sym_expression] = STATE(4565), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3568), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3568), - [sym_call_expression] = STATE(3568), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3568), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3568), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3568), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3568), - [sym_identifier] = ACTIONS(3867), - [anon_sym_LPAREN2] = ACTIONS(4310), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_TILDE] = ACTIONS(3871), - [anon_sym_DASH] = ACTIONS(3869), - [anon_sym_PLUS] = ACTIONS(3869), - [anon_sym_STAR] = ACTIONS(4312), - [anon_sym_AMP] = ACTIONS(4312), - [anon_sym_LT] = ACTIONS(4310), - [anon_sym___extension__] = ACTIONS(3873), - [anon_sym_COLON_COLON] = ACTIONS(3875), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4310), - [anon_sym_LBRACE] = ACTIONS(4310), - [anon_sym_LBRACK] = ACTIONS(1450), - [anon_sym_static] = ACTIONS(4314), - [anon_sym_constexpr] = ACTIONS(4314), - [anon_sym_mutable] = ACTIONS(4314), - [anon_sym_consteval] = ACTIONS(4314), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3869), - [anon_sym_compl] = ACTIONS(3869), - [anon_sym_DASH_DASH] = ACTIONS(4404), - [anon_sym_PLUS_PLUS] = ACTIONS(4404), - [anon_sym_sizeof] = ACTIONS(3877), + [1041] = { + [sym_expression] = STATE(3288), + [sym__string] = STATE(3775), + [sym_conditional_expression] = STATE(3886), + [sym_assignment_expression] = STATE(3886), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(3886), + [sym_binary_expression] = STATE(3886), + [sym_update_expression] = STATE(3886), + [sym_cast_expression] = STATE(3886), + [sym_sizeof_expression] = STATE(3886), + [sym_alignof_expression] = STATE(3886), + [sym_offsetof_expression] = STATE(3886), + [sym_generic_expression] = STATE(3886), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(3886), + [sym_extension_expression] = STATE(3886), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(3886), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(3775), + [sym_concatenated_string] = STATE(3775), + [sym_string_literal] = STATE(2596), + [sym_null] = STATE(3886), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7756), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3886), + [sym_raw_string_literal] = STATE(2596), + [sym_co_await_expression] = STATE(3886), + [sym_new_expression] = STATE(3886), + [sym_delete_expression] = STATE(3886), + [sym_requires_clause] = STATE(3886), + [sym_requires_expression] = STATE(3886), + [sym_lambda_expression] = STATE(3886), + [sym_lambda_capture_specifier] = STATE(5492), + [sym__unary_left_fold] = STATE(8354), + [sym__unary_right_fold] = STATE(8356), + [sym__binary_fold] = STATE(8358), + [sym_fold_expression] = STATE(3886), + [sym_parameter_pack_expansion] = STATE(3886), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(7756), + [sym_user_defined_literal] = STATE(3522), + [sym_identifier] = ACTIONS(2619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1788), + [anon_sym_LPAREN2] = ACTIONS(1888), + [anon_sym_BANG] = ACTIONS(1890), + [anon_sym_TILDE] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1892), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(2621), + [anon_sym_COLON_COLON] = ACTIONS(1898), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2625), + [anon_sym_not] = ACTIONS(1892), + [anon_sym_compl] = ACTIONS(1892), + [anon_sym_DASH_DASH] = ACTIONS(1902), + [anon_sym_PLUS_PLUS] = ACTIONS(1902), + [anon_sym_sizeof] = ACTIONS(1904), + [anon_sym___alignof__] = ACTIONS(1906), + [anon_sym___alignof] = ACTIONS(1906), + [anon_sym__alignof] = ACTIONS(1906), + [anon_sym_alignof] = ACTIONS(1906), + [anon_sym__Alignof] = ACTIONS(1906), + [anon_sym_offsetof] = ACTIONS(1908), + [anon_sym__Generic] = ACTIONS(1910), + [anon_sym_asm] = ACTIONS(1912), + [anon_sym___asm__] = ACTIONS(1912), + [anon_sym___asm] = ACTIONS(1912), + [sym_number_literal] = ACTIONS(1914), + [anon_sym_L_SQUOTE] = ACTIONS(1916), + [anon_sym_u_SQUOTE] = ACTIONS(1916), + [anon_sym_U_SQUOTE] = ACTIONS(1916), + [anon_sym_u8_SQUOTE] = ACTIONS(1916), + [anon_sym_SQUOTE] = ACTIONS(1916), + [anon_sym_L_DQUOTE] = ACTIONS(1918), + [anon_sym_u_DQUOTE] = ACTIONS(1918), + [anon_sym_U_DQUOTE] = ACTIONS(1918), + [anon_sym_u8_DQUOTE] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1918), + [sym_true] = ACTIONS(1920), + [sym_false] = ACTIONS(1920), + [anon_sym_NULL] = ACTIONS(1922), + [anon_sym_nullptr] = ACTIONS(1922), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1924), + [anon_sym_R_DQUOTE] = ACTIONS(1926), + [anon_sym_LR_DQUOTE] = ACTIONS(1926), + [anon_sym_uR_DQUOTE] = ACTIONS(1926), + [anon_sym_UR_DQUOTE] = ACTIONS(1926), + [anon_sym_u8R_DQUOTE] = ACTIONS(1926), + [anon_sym_co_await] = ACTIONS(1928), + [anon_sym_new] = ACTIONS(1930), + [anon_sym_requires] = ACTIONS(1932), + [sym_this] = ACTIONS(1920), + }, + [1042] = { + [sym_expression] = STATE(3297), + [sym__string] = STATE(3775), + [sym_conditional_expression] = STATE(3886), + [sym_assignment_expression] = STATE(3886), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(3886), + [sym_binary_expression] = STATE(3886), + [sym_update_expression] = STATE(3886), + [sym_cast_expression] = STATE(3886), + [sym_sizeof_expression] = STATE(3886), + [sym_alignof_expression] = STATE(3886), + [sym_offsetof_expression] = STATE(3886), + [sym_generic_expression] = STATE(3886), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(3886), + [sym_extension_expression] = STATE(3886), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(3886), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(3775), + [sym_concatenated_string] = STATE(3775), + [sym_string_literal] = STATE(2596), + [sym_null] = STATE(3886), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7756), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3886), + [sym_raw_string_literal] = STATE(2596), + [sym_co_await_expression] = STATE(3886), + [sym_new_expression] = STATE(3886), + [sym_delete_expression] = STATE(3886), + [sym_requires_clause] = STATE(3886), + [sym_requires_expression] = STATE(3886), + [sym_lambda_expression] = STATE(3886), + [sym_lambda_capture_specifier] = STATE(5492), + [sym__unary_left_fold] = STATE(8133), + [sym__unary_right_fold] = STATE(8142), + [sym__binary_fold] = STATE(8143), + [sym_fold_expression] = STATE(3886), + [sym_parameter_pack_expansion] = STATE(3886), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(7756), + [sym_user_defined_literal] = STATE(3522), + [sym_identifier] = ACTIONS(2619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1788), + [anon_sym_LPAREN2] = ACTIONS(1888), + [anon_sym_BANG] = ACTIONS(1890), + [anon_sym_TILDE] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1892), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(2621), + [anon_sym_COLON_COLON] = ACTIONS(1898), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2625), + [anon_sym_not] = ACTIONS(1892), + [anon_sym_compl] = ACTIONS(1892), + [anon_sym_DASH_DASH] = ACTIONS(1902), + [anon_sym_PLUS_PLUS] = ACTIONS(1902), + [anon_sym_sizeof] = ACTIONS(1904), + [anon_sym___alignof__] = ACTIONS(1906), + [anon_sym___alignof] = ACTIONS(1906), + [anon_sym__alignof] = ACTIONS(1906), + [anon_sym_alignof] = ACTIONS(1906), + [anon_sym__Alignof] = ACTIONS(1906), + [anon_sym_offsetof] = ACTIONS(1908), + [anon_sym__Generic] = ACTIONS(1910), + [anon_sym_asm] = ACTIONS(1912), + [anon_sym___asm__] = ACTIONS(1912), + [anon_sym___asm] = ACTIONS(1912), + [sym_number_literal] = ACTIONS(1914), + [anon_sym_L_SQUOTE] = ACTIONS(1916), + [anon_sym_u_SQUOTE] = ACTIONS(1916), + [anon_sym_U_SQUOTE] = ACTIONS(1916), + [anon_sym_u8_SQUOTE] = ACTIONS(1916), + [anon_sym_SQUOTE] = ACTIONS(1916), + [anon_sym_L_DQUOTE] = ACTIONS(1918), + [anon_sym_u_DQUOTE] = ACTIONS(1918), + [anon_sym_U_DQUOTE] = ACTIONS(1918), + [anon_sym_u8_DQUOTE] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1918), + [sym_true] = ACTIONS(1920), + [sym_false] = ACTIONS(1920), + [anon_sym_NULL] = ACTIONS(1922), + [anon_sym_nullptr] = ACTIONS(1922), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1924), + [anon_sym_R_DQUOTE] = ACTIONS(1926), + [anon_sym_LR_DQUOTE] = ACTIONS(1926), + [anon_sym_uR_DQUOTE] = ACTIONS(1926), + [anon_sym_UR_DQUOTE] = ACTIONS(1926), + [anon_sym_u8R_DQUOTE] = ACTIONS(1926), + [anon_sym_co_await] = ACTIONS(1928), + [anon_sym_new] = ACTIONS(1930), + [anon_sym_requires] = ACTIONS(1932), + [sym_this] = ACTIONS(1920), + }, + [1043] = { + [sym_expression] = STATE(3317), + [sym__string] = STATE(3775), + [sym_conditional_expression] = STATE(3886), + [sym_assignment_expression] = STATE(3886), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(3886), + [sym_binary_expression] = STATE(3886), + [sym_update_expression] = STATE(3886), + [sym_cast_expression] = STATE(3886), + [sym_sizeof_expression] = STATE(3886), + [sym_alignof_expression] = STATE(3886), + [sym_offsetof_expression] = STATE(3886), + [sym_generic_expression] = STATE(3886), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(3886), + [sym_extension_expression] = STATE(3886), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(3886), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(3775), + [sym_concatenated_string] = STATE(3775), + [sym_string_literal] = STATE(2596), + [sym_null] = STATE(3886), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7756), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3886), + [sym_raw_string_literal] = STATE(2596), + [sym_co_await_expression] = STATE(3886), + [sym_new_expression] = STATE(3886), + [sym_delete_expression] = STATE(3886), + [sym_requires_clause] = STATE(3886), + [sym_requires_expression] = STATE(3886), + [sym_lambda_expression] = STATE(3886), + [sym_lambda_capture_specifier] = STATE(5492), + [sym__unary_left_fold] = STATE(8364), + [sym__unary_right_fold] = STATE(8365), + [sym__binary_fold] = STATE(8368), + [sym_fold_expression] = STATE(3886), + [sym_parameter_pack_expansion] = STATE(3886), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(7756), + [sym_user_defined_literal] = STATE(3522), + [sym_identifier] = ACTIONS(2619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1788), + [anon_sym_LPAREN2] = ACTIONS(1888), + [anon_sym_BANG] = ACTIONS(1890), + [anon_sym_TILDE] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1892), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(2621), + [anon_sym_COLON_COLON] = ACTIONS(1898), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2625), + [anon_sym_not] = ACTIONS(1892), + [anon_sym_compl] = ACTIONS(1892), + [anon_sym_DASH_DASH] = ACTIONS(1902), + [anon_sym_PLUS_PLUS] = ACTIONS(1902), + [anon_sym_sizeof] = ACTIONS(1904), + [anon_sym___alignof__] = ACTIONS(1906), + [anon_sym___alignof] = ACTIONS(1906), + [anon_sym__alignof] = ACTIONS(1906), + [anon_sym_alignof] = ACTIONS(1906), + [anon_sym__Alignof] = ACTIONS(1906), + [anon_sym_offsetof] = ACTIONS(1908), + [anon_sym__Generic] = ACTIONS(1910), + [anon_sym_asm] = ACTIONS(1912), + [anon_sym___asm__] = ACTIONS(1912), + [anon_sym___asm] = ACTIONS(1912), + [sym_number_literal] = ACTIONS(1914), + [anon_sym_L_SQUOTE] = ACTIONS(1916), + [anon_sym_u_SQUOTE] = ACTIONS(1916), + [anon_sym_U_SQUOTE] = ACTIONS(1916), + [anon_sym_u8_SQUOTE] = ACTIONS(1916), + [anon_sym_SQUOTE] = ACTIONS(1916), + [anon_sym_L_DQUOTE] = ACTIONS(1918), + [anon_sym_u_DQUOTE] = ACTIONS(1918), + [anon_sym_U_DQUOTE] = ACTIONS(1918), + [anon_sym_u8_DQUOTE] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1918), + [sym_true] = ACTIONS(1920), + [sym_false] = ACTIONS(1920), + [anon_sym_NULL] = ACTIONS(1922), + [anon_sym_nullptr] = ACTIONS(1922), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1924), + [anon_sym_R_DQUOTE] = ACTIONS(1926), + [anon_sym_LR_DQUOTE] = ACTIONS(1926), + [anon_sym_uR_DQUOTE] = ACTIONS(1926), + [anon_sym_UR_DQUOTE] = ACTIONS(1926), + [anon_sym_u8R_DQUOTE] = ACTIONS(1926), + [anon_sym_co_await] = ACTIONS(1928), + [anon_sym_new] = ACTIONS(1930), + [anon_sym_requires] = ACTIONS(1932), + [sym_this] = ACTIONS(1920), + }, + [1044] = { + [sym_expression] = STATE(3277), + [sym__string] = STATE(3775), + [sym_conditional_expression] = STATE(3886), + [sym_assignment_expression] = STATE(3886), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(3886), + [sym_binary_expression] = STATE(3886), + [sym_update_expression] = STATE(3886), + [sym_cast_expression] = STATE(3886), + [sym_sizeof_expression] = STATE(3886), + [sym_alignof_expression] = STATE(3886), + [sym_offsetof_expression] = STATE(3886), + [sym_generic_expression] = STATE(3886), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(3886), + [sym_extension_expression] = STATE(3886), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(3886), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(3775), + [sym_concatenated_string] = STATE(3775), + [sym_string_literal] = STATE(2596), + [sym_null] = STATE(3886), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7756), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3886), + [sym_raw_string_literal] = STATE(2596), + [sym_co_await_expression] = STATE(3886), + [sym_new_expression] = STATE(3886), + [sym_delete_expression] = STATE(3886), + [sym_requires_clause] = STATE(3886), + [sym_requires_expression] = STATE(3886), + [sym_lambda_expression] = STATE(3886), + [sym_lambda_capture_specifier] = STATE(5492), + [sym__unary_left_fold] = STATE(8287), + [sym__unary_right_fold] = STATE(8288), + [sym__binary_fold] = STATE(8289), + [sym_fold_expression] = STATE(3886), + [sym_parameter_pack_expansion] = STATE(3886), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(7756), + [sym_user_defined_literal] = STATE(3522), + [sym_identifier] = ACTIONS(2619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1788), + [anon_sym_LPAREN2] = ACTIONS(1888), + [anon_sym_BANG] = ACTIONS(1890), + [anon_sym_TILDE] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1892), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(2621), + [anon_sym_COLON_COLON] = ACTIONS(1898), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2625), + [anon_sym_not] = ACTIONS(1892), + [anon_sym_compl] = ACTIONS(1892), + [anon_sym_DASH_DASH] = ACTIONS(1902), + [anon_sym_PLUS_PLUS] = ACTIONS(1902), + [anon_sym_sizeof] = ACTIONS(1904), + [anon_sym___alignof__] = ACTIONS(1906), + [anon_sym___alignof] = ACTIONS(1906), + [anon_sym__alignof] = ACTIONS(1906), + [anon_sym_alignof] = ACTIONS(1906), + [anon_sym__Alignof] = ACTIONS(1906), + [anon_sym_offsetof] = ACTIONS(1908), + [anon_sym__Generic] = ACTIONS(1910), + [anon_sym_asm] = ACTIONS(1912), + [anon_sym___asm__] = ACTIONS(1912), + [anon_sym___asm] = ACTIONS(1912), + [sym_number_literal] = ACTIONS(1914), + [anon_sym_L_SQUOTE] = ACTIONS(1916), + [anon_sym_u_SQUOTE] = ACTIONS(1916), + [anon_sym_U_SQUOTE] = ACTIONS(1916), + [anon_sym_u8_SQUOTE] = ACTIONS(1916), + [anon_sym_SQUOTE] = ACTIONS(1916), + [anon_sym_L_DQUOTE] = ACTIONS(1918), + [anon_sym_u_DQUOTE] = ACTIONS(1918), + [anon_sym_U_DQUOTE] = ACTIONS(1918), + [anon_sym_u8_DQUOTE] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1918), + [sym_true] = ACTIONS(1920), + [sym_false] = ACTIONS(1920), + [anon_sym_NULL] = ACTIONS(1922), + [anon_sym_nullptr] = ACTIONS(1922), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1924), + [anon_sym_R_DQUOTE] = ACTIONS(1926), + [anon_sym_LR_DQUOTE] = ACTIONS(1926), + [anon_sym_uR_DQUOTE] = ACTIONS(1926), + [anon_sym_UR_DQUOTE] = ACTIONS(1926), + [anon_sym_u8R_DQUOTE] = ACTIONS(1926), + [anon_sym_co_await] = ACTIONS(1928), + [anon_sym_new] = ACTIONS(1930), + [anon_sym_requires] = ACTIONS(1932), + [sym_this] = ACTIONS(1920), + }, + [1045] = { + [sym_compound_statement] = STATE(7276), + [sym_expression] = STATE(4391), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_initializer_list] = STATE(7276), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_RPAREN] = ACTIONS(4603), + [anon_sym_LPAREN2] = ACTIONS(1252), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(1872), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -176229,7 +184796,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(113), [anon_sym___asm__] = ACTIONS(113), [anon_sym___asm] = ACTIONS(113), - [anon_sym_DASH_GT] = ACTIONS(4310), [sym_number_literal] = ACTIONS(227), [anon_sym_L_SQUOTE] = ACTIONS(117), [anon_sym_u_SQUOTE] = ACTIONS(117), @@ -176247,88 +184813,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3879), - [anon_sym_noexcept] = ACTIONS(4314), - [anon_sym_throw] = ACTIONS(4314), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3881), - [anon_sym_new] = ACTIONS(3865), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [974] = { - [sym_expression] = STATE(4567), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3568), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3568), - [sym_call_expression] = STATE(3568), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3568), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3568), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3568), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3568), - [sym_identifier] = ACTIONS(3867), - [anon_sym_LPAREN2] = ACTIONS(4310), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_TILDE] = ACTIONS(3871), - [anon_sym_DASH] = ACTIONS(3869), - [anon_sym_PLUS] = ACTIONS(3869), - [anon_sym_STAR] = ACTIONS(4312), - [anon_sym_AMP] = ACTIONS(4312), - [anon_sym_LT] = ACTIONS(4310), - [anon_sym___extension__] = ACTIONS(3873), - [anon_sym_COLON_COLON] = ACTIONS(3875), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4310), - [anon_sym_LBRACE] = ACTIONS(4310), - [anon_sym_LBRACK] = ACTIONS(1450), - [anon_sym_static] = ACTIONS(4314), - [anon_sym_constexpr] = ACTIONS(4314), - [anon_sym_mutable] = ACTIONS(4314), - [anon_sym_consteval] = ACTIONS(4314), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3869), - [anon_sym_compl] = ACTIONS(3869), - [anon_sym_DASH_DASH] = ACTIONS(4404), - [anon_sym_PLUS_PLUS] = ACTIONS(4404), - [anon_sym_sizeof] = ACTIONS(3877), + [1046] = { + [sym_expression] = STATE(4578), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8630), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_initializer_list] = STATE(8630), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(4605), + [anon_sym___extension__] = ACTIONS(2167), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(3623), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -176339,7 +184900,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(113), [anon_sym___asm__] = ACTIONS(113), [anon_sym___asm] = ACTIONS(113), - [anon_sym_DASH_GT] = ACTIONS(4310), [sym_number_literal] = ACTIONS(227), [anon_sym_L_SQUOTE] = ACTIONS(117), [anon_sym_u_SQUOTE] = ACTIONS(117), @@ -176357,1078 +184917,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3879), - [anon_sym_noexcept] = ACTIONS(4314), - [anon_sym_throw] = ACTIONS(4314), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3881), - [anon_sym_new] = ACTIONS(3865), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [975] = { - [sym_string_literal] = STATE(2624), - [sym_template_argument_list] = STATE(1659), - [sym_raw_string_literal] = STATE(2624), - [aux_sym_sized_type_specifier_repeat1] = STATE(2641), - [sym_identifier] = ACTIONS(4144), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4146), - [anon_sym_COMMA] = ACTIONS(4146), - [anon_sym_LPAREN2] = ACTIONS(4159), - [anon_sym_TILDE] = ACTIONS(4152), - [anon_sym_DASH] = ACTIONS(4154), - [anon_sym_PLUS] = ACTIONS(4154), - [anon_sym_STAR] = ACTIONS(4156), - [anon_sym_SLASH] = ACTIONS(4154), - [anon_sym_PERCENT] = ACTIONS(4154), - [anon_sym_PIPE_PIPE] = ACTIONS(4146), - [anon_sym_AMP_AMP] = ACTIONS(4159), - [anon_sym_PIPE] = ACTIONS(4154), - [anon_sym_CARET] = ACTIONS(4154), - [anon_sym_AMP] = ACTIONS(4156), - [anon_sym_EQ_EQ] = ACTIONS(4146), - [anon_sym_BANG_EQ] = ACTIONS(4146), - [anon_sym_GT] = ACTIONS(4154), - [anon_sym_GT_EQ] = ACTIONS(4146), - [anon_sym_LT_EQ] = ACTIONS(4154), - [anon_sym_LT] = ACTIONS(4162), - [anon_sym_LT_LT] = ACTIONS(4154), - [anon_sym_GT_GT] = ACTIONS(4154), - [anon_sym_SEMI] = ACTIONS(4146), - [anon_sym___extension__] = ACTIONS(4144), - [anon_sym_virtual] = ACTIONS(4144), - [anon_sym_extern] = ACTIONS(4144), - [anon_sym___attribute__] = ACTIONS(4144), - [anon_sym___attribute] = ACTIONS(4144), - [anon_sym_COLON] = ACTIONS(4222), - [anon_sym_COLON_COLON] = ACTIONS(4167), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4152), - [anon_sym___declspec] = ACTIONS(4144), - [anon_sym___based] = ACTIONS(4144), - [anon_sym_LBRACE] = ACTIONS(4172), - [anon_sym_signed] = ACTIONS(4174), - [anon_sym_unsigned] = ACTIONS(4174), - [anon_sym_long] = ACTIONS(4174), - [anon_sym_short] = ACTIONS(4174), - [anon_sym_LBRACK] = ACTIONS(4156), - [anon_sym_static] = ACTIONS(4144), - [anon_sym_EQ] = ACTIONS(4180), - [anon_sym_register] = ACTIONS(4144), - [anon_sym_inline] = ACTIONS(4144), - [anon_sym___inline] = ACTIONS(4144), - [anon_sym___inline__] = ACTIONS(4144), - [anon_sym___forceinline] = ACTIONS(4144), - [anon_sym_thread_local] = ACTIONS(4144), - [anon_sym___thread] = ACTIONS(4144), - [anon_sym_const] = ACTIONS(4144), - [anon_sym_constexpr] = ACTIONS(4144), - [anon_sym_volatile] = ACTIONS(4144), - [anon_sym_restrict] = ACTIONS(4144), - [anon_sym___restrict__] = ACTIONS(4144), - [anon_sym__Atomic] = ACTIONS(4144), - [anon_sym__Noreturn] = ACTIONS(4144), - [anon_sym_noreturn] = ACTIONS(4144), - [anon_sym__Nonnull] = ACTIONS(4144), - [anon_sym_mutable] = ACTIONS(4144), - [anon_sym_constinit] = ACTIONS(4144), - [anon_sym_consteval] = ACTIONS(4144), - [anon_sym_alignas] = ACTIONS(4144), - [anon_sym__Alignas] = ACTIONS(4144), - [anon_sym_QMARK] = ACTIONS(4146), - [anon_sym_STAR_EQ] = ACTIONS(4182), - [anon_sym_SLASH_EQ] = ACTIONS(4182), - [anon_sym_PERCENT_EQ] = ACTIONS(4182), - [anon_sym_PLUS_EQ] = ACTIONS(4182), - [anon_sym_DASH_EQ] = ACTIONS(4182), - [anon_sym_LT_LT_EQ] = ACTIONS(4182), - [anon_sym_GT_GT_EQ] = ACTIONS(4182), - [anon_sym_AMP_EQ] = ACTIONS(4182), - [anon_sym_CARET_EQ] = ACTIONS(4182), - [anon_sym_PIPE_EQ] = ACTIONS(4182), - [anon_sym_and_eq] = ACTIONS(4180), - [anon_sym_or_eq] = ACTIONS(4180), - [anon_sym_xor_eq] = ACTIONS(4180), - [anon_sym_LT_EQ_GT] = ACTIONS(4146), - [anon_sym_or] = ACTIONS(4154), - [anon_sym_and] = ACTIONS(4154), - [anon_sym_bitor] = ACTIONS(4154), - [anon_sym_xor] = ACTIONS(4154), - [anon_sym_bitand] = ACTIONS(4154), - [anon_sym_not_eq] = ACTIONS(4154), - [anon_sym_DASH_DASH] = ACTIONS(4146), - [anon_sym_PLUS_PLUS] = ACTIONS(4146), - [anon_sym_DOT] = ACTIONS(4154), - [anon_sym_DOT_STAR] = ACTIONS(4146), - [anon_sym_DASH_GT] = ACTIONS(4146), - [anon_sym_L_DQUOTE] = ACTIONS(3623), - [anon_sym_u_DQUOTE] = ACTIONS(3623), - [anon_sym_U_DQUOTE] = ACTIONS(3623), - [anon_sym_u8_DQUOTE] = ACTIONS(3623), - [anon_sym_DQUOTE] = ACTIONS(3623), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4144), - [anon_sym_decltype] = ACTIONS(4144), - [anon_sym_template] = ACTIONS(4144), - [anon_sym_operator] = ACTIONS(4144), - [anon_sym_R_DQUOTE] = ACTIONS(3627), - [anon_sym_LR_DQUOTE] = ACTIONS(3627), - [anon_sym_uR_DQUOTE] = ACTIONS(3627), - [anon_sym_UR_DQUOTE] = ACTIONS(3627), - [anon_sym_u8R_DQUOTE] = ACTIONS(3627), - }, - [976] = { - [sym_string_literal] = STATE(2370), - [sym_template_argument_list] = STATE(1586), - [sym_raw_string_literal] = STATE(2370), - [aux_sym_sized_type_specifier_repeat1] = STATE(2641), - [sym_identifier] = ACTIONS(4144), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4159), - [anon_sym_COMMA] = ACTIONS(4159), - [anon_sym_RPAREN] = ACTIONS(4159), - [anon_sym_LPAREN2] = ACTIONS(4159), - [anon_sym_TILDE] = ACTIONS(4152), - [anon_sym_DASH] = ACTIONS(4154), - [anon_sym_PLUS] = ACTIONS(4154), - [anon_sym_STAR] = ACTIONS(4156), - [anon_sym_SLASH] = ACTIONS(4154), - [anon_sym_PERCENT] = ACTIONS(4154), - [anon_sym_PIPE_PIPE] = ACTIONS(4146), - [anon_sym_AMP_AMP] = ACTIONS(4159), - [anon_sym_PIPE] = ACTIONS(4154), - [anon_sym_CARET] = ACTIONS(4154), - [anon_sym_AMP] = ACTIONS(4156), - [anon_sym_EQ_EQ] = ACTIONS(4146), - [anon_sym_BANG_EQ] = ACTIONS(4146), - [anon_sym_GT] = ACTIONS(4154), - [anon_sym_GT_EQ] = ACTIONS(4146), - [anon_sym_LT_EQ] = ACTIONS(4154), - [anon_sym_LT] = ACTIONS(4406), - [anon_sym_LT_LT] = ACTIONS(4154), - [anon_sym_GT_GT] = ACTIONS(4154), - [anon_sym___extension__] = ACTIONS(4144), - [anon_sym_virtual] = ACTIONS(4144), - [anon_sym_extern] = ACTIONS(4144), - [anon_sym___attribute__] = ACTIONS(4144), - [anon_sym___attribute] = ACTIONS(4144), - [anon_sym_COLON_COLON] = ACTIONS(4167), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4152), - [anon_sym___declspec] = ACTIONS(4144), - [anon_sym___based] = ACTIONS(4144), - [anon_sym_LBRACE] = ACTIONS(4172), - [anon_sym_signed] = ACTIONS(4174), - [anon_sym_unsigned] = ACTIONS(4174), - [anon_sym_long] = ACTIONS(4174), - [anon_sym_short] = ACTIONS(4174), - [anon_sym_LBRACK] = ACTIONS(4156), - [anon_sym_static] = ACTIONS(4144), - [anon_sym_EQ] = ACTIONS(4156), - [anon_sym_register] = ACTIONS(4144), - [anon_sym_inline] = ACTIONS(4144), - [anon_sym___inline] = ACTIONS(4144), - [anon_sym___inline__] = ACTIONS(4144), - [anon_sym___forceinline] = ACTIONS(4144), - [anon_sym_thread_local] = ACTIONS(4144), - [anon_sym___thread] = ACTIONS(4144), - [anon_sym_const] = ACTIONS(4144), - [anon_sym_constexpr] = ACTIONS(4144), - [anon_sym_volatile] = ACTIONS(4144), - [anon_sym_restrict] = ACTIONS(4144), - [anon_sym___restrict__] = ACTIONS(4144), - [anon_sym__Atomic] = ACTIONS(4144), - [anon_sym__Noreturn] = ACTIONS(4144), - [anon_sym_noreturn] = ACTIONS(4144), - [anon_sym__Nonnull] = ACTIONS(4144), - [anon_sym_mutable] = ACTIONS(4144), - [anon_sym_constinit] = ACTIONS(4144), - [anon_sym_consteval] = ACTIONS(4144), - [anon_sym_alignas] = ACTIONS(4144), - [anon_sym__Alignas] = ACTIONS(4144), - [anon_sym_QMARK] = ACTIONS(4146), - [anon_sym_STAR_EQ] = ACTIONS(4146), - [anon_sym_SLASH_EQ] = ACTIONS(4146), - [anon_sym_PERCENT_EQ] = ACTIONS(4146), - [anon_sym_PLUS_EQ] = ACTIONS(4146), - [anon_sym_DASH_EQ] = ACTIONS(4146), - [anon_sym_LT_LT_EQ] = ACTIONS(4146), - [anon_sym_GT_GT_EQ] = ACTIONS(4146), - [anon_sym_AMP_EQ] = ACTIONS(4146), - [anon_sym_CARET_EQ] = ACTIONS(4146), - [anon_sym_PIPE_EQ] = ACTIONS(4146), - [anon_sym_and_eq] = ACTIONS(4409), - [anon_sym_or_eq] = ACTIONS(4409), - [anon_sym_xor_eq] = ACTIONS(4409), - [anon_sym_LT_EQ_GT] = ACTIONS(4146), - [anon_sym_or] = ACTIONS(4154), - [anon_sym_and] = ACTIONS(4154), - [anon_sym_bitor] = ACTIONS(4154), - [anon_sym_xor] = ACTIONS(4154), - [anon_sym_bitand] = ACTIONS(4154), - [anon_sym_not_eq] = ACTIONS(4154), - [anon_sym_DASH_DASH] = ACTIONS(4146), - [anon_sym_PLUS_PLUS] = ACTIONS(4146), - [anon_sym_DOT] = ACTIONS(4154), - [anon_sym_DOT_STAR] = ACTIONS(4146), - [anon_sym_DASH_GT] = ACTIONS(4154), - [anon_sym_L_DQUOTE] = ACTIONS(4411), - [anon_sym_u_DQUOTE] = ACTIONS(4411), - [anon_sym_U_DQUOTE] = ACTIONS(4411), - [anon_sym_u8_DQUOTE] = ACTIONS(4411), - [anon_sym_DQUOTE] = ACTIONS(4411), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4144), - [anon_sym_decltype] = ACTIONS(4144), - [anon_sym_template] = ACTIONS(4144), - [anon_sym_operator] = ACTIONS(4144), - [anon_sym_R_DQUOTE] = ACTIONS(4413), - [anon_sym_LR_DQUOTE] = ACTIONS(4413), - [anon_sym_uR_DQUOTE] = ACTIONS(4413), - [anon_sym_UR_DQUOTE] = ACTIONS(4413), - [anon_sym_u8R_DQUOTE] = ACTIONS(4413), - [anon_sym_DASH_GT_STAR] = ACTIONS(4146), - }, - [977] = { - [sym_string_literal] = STATE(2624), - [sym_template_argument_list] = STATE(1659), - [sym_raw_string_literal] = STATE(2624), - [aux_sym_sized_type_specifier_repeat1] = STATE(2641), - [sym_identifier] = ACTIONS(4144), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4146), - [anon_sym_COMMA] = ACTIONS(4146), - [anon_sym_LPAREN2] = ACTIONS(4159), - [anon_sym_TILDE] = ACTIONS(4152), - [anon_sym_DASH] = ACTIONS(4154), - [anon_sym_PLUS] = ACTIONS(4154), - [anon_sym_STAR] = ACTIONS(4156), - [anon_sym_SLASH] = ACTIONS(4154), - [anon_sym_PERCENT] = ACTIONS(4154), - [anon_sym_PIPE_PIPE] = ACTIONS(4146), - [anon_sym_AMP_AMP] = ACTIONS(4159), - [anon_sym_PIPE] = ACTIONS(4154), - [anon_sym_CARET] = ACTIONS(4154), - [anon_sym_AMP] = ACTIONS(4156), - [anon_sym_EQ_EQ] = ACTIONS(4146), - [anon_sym_BANG_EQ] = ACTIONS(4146), - [anon_sym_GT] = ACTIONS(4154), - [anon_sym_GT_EQ] = ACTIONS(4146), - [anon_sym_LT_EQ] = ACTIONS(4154), - [anon_sym_LT] = ACTIONS(4162), - [anon_sym_LT_LT] = ACTIONS(4154), - [anon_sym_GT_GT] = ACTIONS(4154), - [anon_sym_SEMI] = ACTIONS(4146), - [anon_sym___extension__] = ACTIONS(4144), - [anon_sym_virtual] = ACTIONS(4144), - [anon_sym_extern] = ACTIONS(4144), - [anon_sym___attribute__] = ACTIONS(4144), - [anon_sym___attribute] = ACTIONS(4144), - [anon_sym_COLON] = ACTIONS(4218), - [anon_sym_COLON_COLON] = ACTIONS(4167), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4152), - [anon_sym___declspec] = ACTIONS(4144), - [anon_sym___based] = ACTIONS(4144), - [anon_sym_LBRACE] = ACTIONS(4172), - [anon_sym_signed] = ACTIONS(4174), - [anon_sym_unsigned] = ACTIONS(4174), - [anon_sym_long] = ACTIONS(4174), - [anon_sym_short] = ACTIONS(4174), - [anon_sym_LBRACK] = ACTIONS(4156), - [anon_sym_static] = ACTIONS(4144), - [anon_sym_EQ] = ACTIONS(4180), - [anon_sym_register] = ACTIONS(4144), - [anon_sym_inline] = ACTIONS(4144), - [anon_sym___inline] = ACTIONS(4144), - [anon_sym___inline__] = ACTIONS(4144), - [anon_sym___forceinline] = ACTIONS(4144), - [anon_sym_thread_local] = ACTIONS(4144), - [anon_sym___thread] = ACTIONS(4144), - [anon_sym_const] = ACTIONS(4144), - [anon_sym_constexpr] = ACTIONS(4144), - [anon_sym_volatile] = ACTIONS(4144), - [anon_sym_restrict] = ACTIONS(4144), - [anon_sym___restrict__] = ACTIONS(4144), - [anon_sym__Atomic] = ACTIONS(4144), - [anon_sym__Noreturn] = ACTIONS(4144), - [anon_sym_noreturn] = ACTIONS(4144), - [anon_sym__Nonnull] = ACTIONS(4144), - [anon_sym_mutable] = ACTIONS(4144), - [anon_sym_constinit] = ACTIONS(4144), - [anon_sym_consteval] = ACTIONS(4144), - [anon_sym_alignas] = ACTIONS(4144), - [anon_sym__Alignas] = ACTIONS(4144), - [anon_sym_QMARK] = ACTIONS(4146), - [anon_sym_STAR_EQ] = ACTIONS(4182), - [anon_sym_SLASH_EQ] = ACTIONS(4182), - [anon_sym_PERCENT_EQ] = ACTIONS(4182), - [anon_sym_PLUS_EQ] = ACTIONS(4182), - [anon_sym_DASH_EQ] = ACTIONS(4182), - [anon_sym_LT_LT_EQ] = ACTIONS(4182), - [anon_sym_GT_GT_EQ] = ACTIONS(4182), - [anon_sym_AMP_EQ] = ACTIONS(4182), - [anon_sym_CARET_EQ] = ACTIONS(4182), - [anon_sym_PIPE_EQ] = ACTIONS(4182), - [anon_sym_and_eq] = ACTIONS(4180), - [anon_sym_or_eq] = ACTIONS(4180), - [anon_sym_xor_eq] = ACTIONS(4180), - [anon_sym_LT_EQ_GT] = ACTIONS(4146), - [anon_sym_or] = ACTIONS(4154), - [anon_sym_and] = ACTIONS(4154), - [anon_sym_bitor] = ACTIONS(4154), - [anon_sym_xor] = ACTIONS(4154), - [anon_sym_bitand] = ACTIONS(4154), - [anon_sym_not_eq] = ACTIONS(4154), - [anon_sym_DASH_DASH] = ACTIONS(4146), - [anon_sym_PLUS_PLUS] = ACTIONS(4146), - [anon_sym_DOT] = ACTIONS(4154), - [anon_sym_DOT_STAR] = ACTIONS(4146), - [anon_sym_DASH_GT] = ACTIONS(4146), - [anon_sym_L_DQUOTE] = ACTIONS(3623), - [anon_sym_u_DQUOTE] = ACTIONS(3623), - [anon_sym_U_DQUOTE] = ACTIONS(3623), - [anon_sym_u8_DQUOTE] = ACTIONS(3623), - [anon_sym_DQUOTE] = ACTIONS(3623), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4144), - [anon_sym_decltype] = ACTIONS(4144), - [anon_sym_template] = ACTIONS(4144), - [anon_sym_operator] = ACTIONS(4144), - [anon_sym_R_DQUOTE] = ACTIONS(3627), - [anon_sym_LR_DQUOTE] = ACTIONS(3627), - [anon_sym_uR_DQUOTE] = ACTIONS(3627), - [anon_sym_UR_DQUOTE] = ACTIONS(3627), - [anon_sym_u8R_DQUOTE] = ACTIONS(3627), - }, - [978] = { - [sym_string_literal] = STATE(2624), - [sym_template_argument_list] = STATE(1659), - [sym_raw_string_literal] = STATE(2624), - [aux_sym_sized_type_specifier_repeat1] = STATE(2641), - [sym_identifier] = ACTIONS(4144), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4146), - [anon_sym_COMMA] = ACTIONS(4146), - [anon_sym_LPAREN2] = ACTIONS(4159), - [anon_sym_TILDE] = ACTIONS(4152), - [anon_sym_DASH] = ACTIONS(4154), - [anon_sym_PLUS] = ACTIONS(4154), - [anon_sym_STAR] = ACTIONS(4156), - [anon_sym_SLASH] = ACTIONS(4154), - [anon_sym_PERCENT] = ACTIONS(4154), - [anon_sym_PIPE_PIPE] = ACTIONS(4146), - [anon_sym_AMP_AMP] = ACTIONS(4159), - [anon_sym_PIPE] = ACTIONS(4154), - [anon_sym_CARET] = ACTIONS(4154), - [anon_sym_AMP] = ACTIONS(4156), - [anon_sym_EQ_EQ] = ACTIONS(4146), - [anon_sym_BANG_EQ] = ACTIONS(4146), - [anon_sym_GT] = ACTIONS(4154), - [anon_sym_GT_EQ] = ACTIONS(4146), - [anon_sym_LT_EQ] = ACTIONS(4154), - [anon_sym_LT] = ACTIONS(4162), - [anon_sym_LT_LT] = ACTIONS(4154), - [anon_sym_GT_GT] = ACTIONS(4154), - [anon_sym_SEMI] = ACTIONS(4146), - [anon_sym___extension__] = ACTIONS(4144), - [anon_sym_virtual] = ACTIONS(4144), - [anon_sym_extern] = ACTIONS(4144), - [anon_sym___attribute__] = ACTIONS(4144), - [anon_sym___attribute] = ACTIONS(4144), - [anon_sym_COLON] = ACTIONS(4415), - [anon_sym_COLON_COLON] = ACTIONS(4167), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4152), - [anon_sym___declspec] = ACTIONS(4144), - [anon_sym___based] = ACTIONS(4144), - [anon_sym_LBRACE] = ACTIONS(4172), - [anon_sym_signed] = ACTIONS(4174), - [anon_sym_unsigned] = ACTIONS(4174), - [anon_sym_long] = ACTIONS(4174), - [anon_sym_short] = ACTIONS(4174), - [anon_sym_LBRACK] = ACTIONS(4156), - [anon_sym_static] = ACTIONS(4144), - [anon_sym_EQ] = ACTIONS(4180), - [anon_sym_register] = ACTIONS(4144), - [anon_sym_inline] = ACTIONS(4144), - [anon_sym___inline] = ACTIONS(4144), - [anon_sym___inline__] = ACTIONS(4144), - [anon_sym___forceinline] = ACTIONS(4144), - [anon_sym_thread_local] = ACTIONS(4144), - [anon_sym___thread] = ACTIONS(4144), - [anon_sym_const] = ACTIONS(4144), - [anon_sym_constexpr] = ACTIONS(4144), - [anon_sym_volatile] = ACTIONS(4144), - [anon_sym_restrict] = ACTIONS(4144), - [anon_sym___restrict__] = ACTIONS(4144), - [anon_sym__Atomic] = ACTIONS(4144), - [anon_sym__Noreturn] = ACTIONS(4144), - [anon_sym_noreturn] = ACTIONS(4144), - [anon_sym__Nonnull] = ACTIONS(4144), - [anon_sym_mutable] = ACTIONS(4144), - [anon_sym_constinit] = ACTIONS(4144), - [anon_sym_consteval] = ACTIONS(4144), - [anon_sym_alignas] = ACTIONS(4144), - [anon_sym__Alignas] = ACTIONS(4144), - [anon_sym_QMARK] = ACTIONS(4146), - [anon_sym_STAR_EQ] = ACTIONS(4182), - [anon_sym_SLASH_EQ] = ACTIONS(4182), - [anon_sym_PERCENT_EQ] = ACTIONS(4182), - [anon_sym_PLUS_EQ] = ACTIONS(4182), - [anon_sym_DASH_EQ] = ACTIONS(4182), - [anon_sym_LT_LT_EQ] = ACTIONS(4182), - [anon_sym_GT_GT_EQ] = ACTIONS(4182), - [anon_sym_AMP_EQ] = ACTIONS(4182), - [anon_sym_CARET_EQ] = ACTIONS(4182), - [anon_sym_PIPE_EQ] = ACTIONS(4182), - [anon_sym_and_eq] = ACTIONS(4180), - [anon_sym_or_eq] = ACTIONS(4180), - [anon_sym_xor_eq] = ACTIONS(4180), - [anon_sym_LT_EQ_GT] = ACTIONS(4146), - [anon_sym_or] = ACTIONS(4154), - [anon_sym_and] = ACTIONS(4154), - [anon_sym_bitor] = ACTIONS(4154), - [anon_sym_xor] = ACTIONS(4154), - [anon_sym_bitand] = ACTIONS(4154), - [anon_sym_not_eq] = ACTIONS(4154), - [anon_sym_DASH_DASH] = ACTIONS(4146), - [anon_sym_PLUS_PLUS] = ACTIONS(4146), - [anon_sym_DOT] = ACTIONS(4154), - [anon_sym_DOT_STAR] = ACTIONS(4146), - [anon_sym_DASH_GT] = ACTIONS(4146), - [anon_sym_L_DQUOTE] = ACTIONS(3623), - [anon_sym_u_DQUOTE] = ACTIONS(3623), - [anon_sym_U_DQUOTE] = ACTIONS(3623), - [anon_sym_u8_DQUOTE] = ACTIONS(3623), - [anon_sym_DQUOTE] = ACTIONS(3623), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4144), - [anon_sym_decltype] = ACTIONS(4144), - [anon_sym_template] = ACTIONS(4144), - [anon_sym_operator] = ACTIONS(4144), - [anon_sym_R_DQUOTE] = ACTIONS(3627), - [anon_sym_LR_DQUOTE] = ACTIONS(3627), - [anon_sym_uR_DQUOTE] = ACTIONS(3627), - [anon_sym_UR_DQUOTE] = ACTIONS(3627), - [anon_sym_u8R_DQUOTE] = ACTIONS(3627), - }, - [979] = { - [sym_expression] = STATE(2808), - [sym__string] = STATE(2870), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(2870), - [sym_concatenated_string] = STATE(2870), - [sym_string_literal] = STATE(1942), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(1942), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), - [sym_identifier] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(4310), - [anon_sym_BANG] = ACTIONS(1948), - [anon_sym_TILDE] = ACTIONS(1948), - [anon_sym_DASH] = ACTIONS(1946), - [anon_sym_PLUS] = ACTIONS(1946), - [anon_sym_STAR] = ACTIONS(4336), - [anon_sym_AMP] = ACTIONS(4336), - [anon_sym_LT] = ACTIONS(4310), - [anon_sym___extension__] = ACTIONS(1950), - [anon_sym_COLON_COLON] = ACTIONS(1952), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4310), - [anon_sym_LBRACE] = ACTIONS(4310), - [anon_sym_LBRACK] = ACTIONS(1450), - [anon_sym_static] = ACTIONS(4314), - [anon_sym_constexpr] = ACTIONS(4314), - [anon_sym_mutable] = ACTIONS(4314), - [anon_sym_consteval] = ACTIONS(4314), - [sym_primitive_type] = ACTIONS(1956), - [anon_sym_not] = ACTIONS(1946), - [anon_sym_compl] = ACTIONS(1946), - [anon_sym_DASH_DASH] = ACTIONS(4417), - [anon_sym_PLUS_PLUS] = ACTIONS(4417), - [anon_sym_sizeof] = ACTIONS(1958), - [anon_sym___alignof__] = ACTIONS(1960), - [anon_sym___alignof] = ACTIONS(1960), - [anon_sym__alignof] = ACTIONS(1960), - [anon_sym_alignof] = ACTIONS(1960), - [anon_sym__Alignof] = ACTIONS(1960), - [anon_sym_offsetof] = ACTIONS(1962), - [anon_sym__Generic] = ACTIONS(1964), - [anon_sym_asm] = ACTIONS(1966), - [anon_sym___asm__] = ACTIONS(1966), - [anon_sym___asm] = ACTIONS(1966), - [anon_sym_DASH_GT] = ACTIONS(4310), - [sym_number_literal] = ACTIONS(1968), - [anon_sym_L_SQUOTE] = ACTIONS(1970), - [anon_sym_u_SQUOTE] = ACTIONS(1970), - [anon_sym_U_SQUOTE] = ACTIONS(1970), - [anon_sym_u8_SQUOTE] = ACTIONS(1970), - [anon_sym_SQUOTE] = ACTIONS(1970), - [anon_sym_L_DQUOTE] = ACTIONS(1972), - [anon_sym_u_DQUOTE] = ACTIONS(1972), - [anon_sym_U_DQUOTE] = ACTIONS(1972), - [anon_sym_u8_DQUOTE] = ACTIONS(1972), - [anon_sym_DQUOTE] = ACTIONS(1972), - [sym_true] = ACTIONS(1974), - [sym_false] = ACTIONS(1974), - [anon_sym_NULL] = ACTIONS(1976), - [anon_sym_nullptr] = ACTIONS(1976), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1980), - [anon_sym_noexcept] = ACTIONS(4314), - [anon_sym_throw] = ACTIONS(4314), - [anon_sym_R_DQUOTE] = ACTIONS(1982), - [anon_sym_LR_DQUOTE] = ACTIONS(1982), - [anon_sym_uR_DQUOTE] = ACTIONS(1982), - [anon_sym_UR_DQUOTE] = ACTIONS(1982), - [anon_sym_u8R_DQUOTE] = ACTIONS(1982), - [anon_sym_co_await] = ACTIONS(1984), - [anon_sym_new] = ACTIONS(1986), - [anon_sym_requires] = ACTIONS(1988), - [sym_this] = ACTIONS(1974), - }, - [980] = { - [sym_expression] = STATE(2813), - [sym__string] = STATE(2870), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(2870), - [sym_concatenated_string] = STATE(2870), - [sym_string_literal] = STATE(1942), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(1942), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), - [sym_identifier] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(4310), - [anon_sym_BANG] = ACTIONS(1948), - [anon_sym_TILDE] = ACTIONS(1948), - [anon_sym_DASH] = ACTIONS(1946), - [anon_sym_PLUS] = ACTIONS(1946), - [anon_sym_STAR] = ACTIONS(4336), - [anon_sym_AMP] = ACTIONS(4336), - [anon_sym_LT] = ACTIONS(4310), - [anon_sym___extension__] = ACTIONS(1950), - [anon_sym_COLON_COLON] = ACTIONS(1952), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4310), - [anon_sym_LBRACE] = ACTIONS(4310), - [anon_sym_LBRACK] = ACTIONS(1450), - [anon_sym_static] = ACTIONS(4314), - [anon_sym_constexpr] = ACTIONS(4314), - [anon_sym_mutable] = ACTIONS(4314), - [anon_sym_consteval] = ACTIONS(4314), - [sym_primitive_type] = ACTIONS(1956), - [anon_sym_not] = ACTIONS(1946), - [anon_sym_compl] = ACTIONS(1946), - [anon_sym_DASH_DASH] = ACTIONS(4417), - [anon_sym_PLUS_PLUS] = ACTIONS(4417), - [anon_sym_sizeof] = ACTIONS(1958), - [anon_sym___alignof__] = ACTIONS(1960), - [anon_sym___alignof] = ACTIONS(1960), - [anon_sym__alignof] = ACTIONS(1960), - [anon_sym_alignof] = ACTIONS(1960), - [anon_sym__Alignof] = ACTIONS(1960), - [anon_sym_offsetof] = ACTIONS(1962), - [anon_sym__Generic] = ACTIONS(1964), - [anon_sym_asm] = ACTIONS(1966), - [anon_sym___asm__] = ACTIONS(1966), - [anon_sym___asm] = ACTIONS(1966), - [anon_sym_DASH_GT] = ACTIONS(4310), - [sym_number_literal] = ACTIONS(1968), - [anon_sym_L_SQUOTE] = ACTIONS(1970), - [anon_sym_u_SQUOTE] = ACTIONS(1970), - [anon_sym_U_SQUOTE] = ACTIONS(1970), - [anon_sym_u8_SQUOTE] = ACTIONS(1970), - [anon_sym_SQUOTE] = ACTIONS(1970), - [anon_sym_L_DQUOTE] = ACTIONS(1972), - [anon_sym_u_DQUOTE] = ACTIONS(1972), - [anon_sym_U_DQUOTE] = ACTIONS(1972), - [anon_sym_u8_DQUOTE] = ACTIONS(1972), - [anon_sym_DQUOTE] = ACTIONS(1972), - [sym_true] = ACTIONS(1974), - [sym_false] = ACTIONS(1974), - [anon_sym_NULL] = ACTIONS(1976), - [anon_sym_nullptr] = ACTIONS(1976), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1980), - [anon_sym_noexcept] = ACTIONS(4314), - [anon_sym_throw] = ACTIONS(4314), - [anon_sym_R_DQUOTE] = ACTIONS(1982), - [anon_sym_LR_DQUOTE] = ACTIONS(1982), - [anon_sym_uR_DQUOTE] = ACTIONS(1982), - [anon_sym_UR_DQUOTE] = ACTIONS(1982), - [anon_sym_u8R_DQUOTE] = ACTIONS(1982), - [anon_sym_co_await] = ACTIONS(1984), - [anon_sym_new] = ACTIONS(1986), - [anon_sym_requires] = ACTIONS(1988), - [sym_this] = ACTIONS(1974), - }, - [981] = { - [sym_expression_statement] = STATE(2752), - [sym_expression] = STATE(4466), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8471), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_type_requirement] = STATE(981), - [sym_compound_requirement] = STATE(981), - [sym__requirement] = STATE(981), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_requirement_seq_repeat1] = STATE(981), - [sym_identifier] = ACTIONS(4419), - [anon_sym_LPAREN2] = ACTIONS(4422), - [anon_sym_BANG] = ACTIONS(4425), - [anon_sym_TILDE] = ACTIONS(4425), - [anon_sym_DASH] = ACTIONS(4428), - [anon_sym_PLUS] = ACTIONS(4428), - [anon_sym_STAR] = ACTIONS(4431), - [anon_sym_AMP] = ACTIONS(4431), - [anon_sym_SEMI] = ACTIONS(4434), - [anon_sym___extension__] = ACTIONS(4437), - [anon_sym_COLON_COLON] = ACTIONS(4440), - [anon_sym_LBRACE] = ACTIONS(4443), - [anon_sym_RBRACE] = ACTIONS(4446), - [anon_sym_LBRACK] = ACTIONS(4448), - [sym_primitive_type] = ACTIONS(4451), - [anon_sym_not] = ACTIONS(4428), - [anon_sym_compl] = ACTIONS(4428), - [anon_sym_DASH_DASH] = ACTIONS(4454), - [anon_sym_PLUS_PLUS] = ACTIONS(4454), - [anon_sym_sizeof] = ACTIONS(4457), - [anon_sym___alignof__] = ACTIONS(4460), - [anon_sym___alignof] = ACTIONS(4460), - [anon_sym__alignof] = ACTIONS(4460), - [anon_sym_alignof] = ACTIONS(4460), - [anon_sym__Alignof] = ACTIONS(4460), - [anon_sym_offsetof] = ACTIONS(4463), - [anon_sym__Generic] = ACTIONS(4466), - [anon_sym_asm] = ACTIONS(4469), - [anon_sym___asm__] = ACTIONS(4469), - [anon_sym___asm] = ACTIONS(4469), - [sym_number_literal] = ACTIONS(4472), - [anon_sym_L_SQUOTE] = ACTIONS(4475), - [anon_sym_u_SQUOTE] = ACTIONS(4475), - [anon_sym_U_SQUOTE] = ACTIONS(4475), - [anon_sym_u8_SQUOTE] = ACTIONS(4475), - [anon_sym_SQUOTE] = ACTIONS(4475), - [anon_sym_L_DQUOTE] = ACTIONS(4478), - [anon_sym_u_DQUOTE] = ACTIONS(4478), - [anon_sym_U_DQUOTE] = ACTIONS(4478), - [anon_sym_u8_DQUOTE] = ACTIONS(4478), - [anon_sym_DQUOTE] = ACTIONS(4478), - [sym_true] = ACTIONS(4481), - [sym_false] = ACTIONS(4481), - [anon_sym_NULL] = ACTIONS(4484), - [anon_sym_nullptr] = ACTIONS(4484), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(4487), - [anon_sym_typename] = ACTIONS(4490), - [anon_sym_template] = ACTIONS(4493), - [anon_sym_delete] = ACTIONS(4496), - [anon_sym_R_DQUOTE] = ACTIONS(4499), - [anon_sym_LR_DQUOTE] = ACTIONS(4499), - [anon_sym_uR_DQUOTE] = ACTIONS(4499), - [anon_sym_UR_DQUOTE] = ACTIONS(4499), - [anon_sym_u8R_DQUOTE] = ACTIONS(4499), - [anon_sym_co_await] = ACTIONS(4502), - [anon_sym_new] = ACTIONS(4505), - [anon_sym_requires] = ACTIONS(4508), - [sym_this] = ACTIONS(4481), - }, - [982] = { - [sym_expression] = STATE(3204), - [sym__string] = STATE(3235), - [sym_conditional_expression] = STATE(3373), - [sym_assignment_expression] = STATE(3373), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3373), - [sym_binary_expression] = STATE(3373), - [sym_update_expression] = STATE(3373), - [sym_cast_expression] = STATE(3373), - [sym_sizeof_expression] = STATE(3373), - [sym_alignof_expression] = STATE(3373), - [sym_offsetof_expression] = STATE(3373), - [sym_generic_expression] = STATE(3373), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3373), - [sym_extension_expression] = STATE(3373), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3373), - [sym_parenthesized_expression] = STATE(3365), - [sym_char_literal] = STATE(3235), - [sym_concatenated_string] = STATE(3235), - [sym_string_literal] = STATE(2358), - [sym_null] = STATE(3373), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7814), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3373), - [sym_raw_string_literal] = STATE(2358), - [sym_co_await_expression] = STATE(3373), - [sym_new_expression] = STATE(3373), - [sym_delete_expression] = STATE(3373), - [sym_requires_clause] = STATE(3373), - [sym_requires_expression] = STATE(3373), - [sym_lambda_expression] = STATE(3373), - [sym_lambda_capture_specifier] = STATE(5414), - [sym_fold_expression] = STATE(3373), - [sym_parameter_pack_expansion] = STATE(3373), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3365), - [sym_qualified_type_identifier] = STATE(7814), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2453), - [anon_sym_LPAREN2] = ACTIONS(4310), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym_LT] = ACTIONS(4310), - [anon_sym___extension__] = ACTIONS(2455), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4310), - [anon_sym_LBRACE] = ACTIONS(4310), - [anon_sym_LBRACK] = ACTIONS(1450), - [anon_sym_static] = ACTIONS(4314), - [anon_sym_constexpr] = ACTIONS(4314), - [anon_sym_mutable] = ACTIONS(4314), - [anon_sym_consteval] = ACTIONS(4314), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [anon_sym_DASH_GT] = ACTIONS(4310), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_noexcept] = ACTIONS(4314), - [anon_sym_throw] = ACTIONS(4314), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), - }, - [983] = { - [sym_expression] = STATE(3324), - [sym__string] = STATE(2950), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(2950), - [sym_concatenated_string] = STATE(2950), - [sym_string_literal] = STATE(2034), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(2034), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), - [sym_identifier] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(4310), - [anon_sym_BANG] = ACTIONS(2535), - [anon_sym_TILDE] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2533), - [anon_sym_PLUS] = ACTIONS(2533), - [anon_sym_STAR] = ACTIONS(4312), - [anon_sym_AMP] = ACTIONS(4312), - [anon_sym_LT] = ACTIONS(4310), - [anon_sym___extension__] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(2539), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4310), - [anon_sym_LBRACE] = ACTIONS(4310), - [anon_sym_LBRACK] = ACTIONS(1450), - [anon_sym_static] = ACTIONS(4314), - [anon_sym_constexpr] = ACTIONS(4314), - [anon_sym_mutable] = ACTIONS(4314), - [anon_sym_consteval] = ACTIONS(4314), - [sym_primitive_type] = ACTIONS(1956), - [anon_sym_not] = ACTIONS(2533), - [anon_sym_compl] = ACTIONS(2533), - [anon_sym_DASH_DASH] = ACTIONS(4316), - [anon_sym_PLUS_PLUS] = ACTIONS(4316), - [anon_sym_sizeof] = ACTIONS(2541), - [anon_sym___alignof__] = ACTIONS(1960), - [anon_sym___alignof] = ACTIONS(1960), - [anon_sym__alignof] = ACTIONS(1960), - [anon_sym_alignof] = ACTIONS(1960), - [anon_sym__Alignof] = ACTIONS(1960), - [anon_sym_offsetof] = ACTIONS(1962), - [anon_sym__Generic] = ACTIONS(1964), - [anon_sym_asm] = ACTIONS(1966), - [anon_sym___asm__] = ACTIONS(1966), - [anon_sym___asm] = ACTIONS(1966), - [anon_sym_DASH_GT] = ACTIONS(4310), - [sym_number_literal] = ACTIONS(2002), - [anon_sym_L_SQUOTE] = ACTIONS(2004), - [anon_sym_u_SQUOTE] = ACTIONS(2004), - [anon_sym_U_SQUOTE] = ACTIONS(2004), - [anon_sym_u8_SQUOTE] = ACTIONS(2004), - [anon_sym_SQUOTE] = ACTIONS(2004), - [anon_sym_L_DQUOTE] = ACTIONS(2006), - [anon_sym_u_DQUOTE] = ACTIONS(2006), - [anon_sym_U_DQUOTE] = ACTIONS(2006), - [anon_sym_u8_DQUOTE] = ACTIONS(2006), - [anon_sym_DQUOTE] = ACTIONS(2006), - [sym_true] = ACTIONS(1974), - [sym_false] = ACTIONS(1974), - [anon_sym_NULL] = ACTIONS(1976), - [anon_sym_nullptr] = ACTIONS(1976), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(2543), - [anon_sym_noexcept] = ACTIONS(4314), - [anon_sym_throw] = ACTIONS(4314), - [anon_sym_R_DQUOTE] = ACTIONS(2010), - [anon_sym_LR_DQUOTE] = ACTIONS(2010), - [anon_sym_uR_DQUOTE] = ACTIONS(2010), - [anon_sym_UR_DQUOTE] = ACTIONS(2010), - [anon_sym_u8R_DQUOTE] = ACTIONS(2010), - [anon_sym_co_await] = ACTIONS(2545), - [anon_sym_new] = ACTIONS(2014), - [anon_sym_requires] = ACTIONS(1988), - [sym_this] = ACTIONS(1974), - }, - [984] = { - [sym_expression] = STATE(4529), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3678), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3678), - [sym_call_expression] = STATE(3678), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3678), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3678), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3678), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3678), - [sym_identifier] = ACTIONS(3849), - [anon_sym_LPAREN2] = ACTIONS(4310), - [anon_sym_BANG] = ACTIONS(3853), - [anon_sym_TILDE] = ACTIONS(3853), - [anon_sym_DASH] = ACTIONS(3851), - [anon_sym_PLUS] = ACTIONS(3851), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym_LT] = ACTIONS(4310), - [anon_sym___extension__] = ACTIONS(3855), - [anon_sym_COLON_COLON] = ACTIONS(3857), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4310), - [anon_sym_LBRACE] = ACTIONS(4310), - [anon_sym_LBRACK] = ACTIONS(1450), - [anon_sym_static] = ACTIONS(4314), - [anon_sym_constexpr] = ACTIONS(4314), - [anon_sym_mutable] = ACTIONS(4314), - [anon_sym_consteval] = ACTIONS(4314), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3851), - [anon_sym_compl] = ACTIONS(3851), - [anon_sym_DASH_DASH] = ACTIONS(3897), - [anon_sym_PLUS_PLUS] = ACTIONS(3897), - [anon_sym_sizeof] = ACTIONS(3859), + [1047] = { + [sym_expression] = STATE(4521), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8535), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_initializer_list] = STATE(8535), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(4607), + [anon_sym___extension__] = ACTIONS(2167), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(3623), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -177439,7 +185004,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(113), [anon_sym___asm__] = ACTIONS(113), [anon_sym___asm] = ACTIONS(113), - [anon_sym_DASH_GT] = ACTIONS(4310), [sym_number_literal] = ACTIONS(227), [anon_sym_L_SQUOTE] = ACTIONS(117), [anon_sym_u_SQUOTE] = ACTIONS(117), @@ -177457,88 +185021,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3861), - [anon_sym_noexcept] = ACTIONS(4314), - [anon_sym_throw] = ACTIONS(4314), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3863), - [anon_sym_new] = ACTIONS(3865), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [985] = { - [sym_expression] = STATE(4531), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3678), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3678), - [sym_call_expression] = STATE(3678), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3678), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3678), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3678), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3678), - [sym_identifier] = ACTIONS(3849), - [anon_sym_LPAREN2] = ACTIONS(4310), - [anon_sym_BANG] = ACTIONS(3853), - [anon_sym_TILDE] = ACTIONS(3853), - [anon_sym_DASH] = ACTIONS(3851), - [anon_sym_PLUS] = ACTIONS(3851), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym_LT] = ACTIONS(4310), - [anon_sym___extension__] = ACTIONS(3855), - [anon_sym_COLON_COLON] = ACTIONS(3857), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4310), - [anon_sym_LBRACE] = ACTIONS(4310), - [anon_sym_LBRACK] = ACTIONS(1450), - [anon_sym_static] = ACTIONS(4314), - [anon_sym_constexpr] = ACTIONS(4314), - [anon_sym_mutable] = ACTIONS(4314), - [anon_sym_consteval] = ACTIONS(4314), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3851), - [anon_sym_compl] = ACTIONS(3851), - [anon_sym_DASH_DASH] = ACTIONS(3897), - [anon_sym_PLUS_PLUS] = ACTIONS(3897), - [anon_sym_sizeof] = ACTIONS(3859), + [1048] = { + [sym_expression] = STATE(3253), + [sym__string] = STATE(3775), + [sym_conditional_expression] = STATE(3886), + [sym_assignment_expression] = STATE(3886), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(3886), + [sym_binary_expression] = STATE(3886), + [sym_update_expression] = STATE(3886), + [sym_cast_expression] = STATE(3886), + [sym_sizeof_expression] = STATE(3886), + [sym_alignof_expression] = STATE(3886), + [sym_offsetof_expression] = STATE(3886), + [sym_generic_expression] = STATE(3886), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(3886), + [sym_extension_expression] = STATE(3886), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(3886), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(3775), + [sym_concatenated_string] = STATE(3775), + [sym_string_literal] = STATE(2596), + [sym_null] = STATE(3886), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7756), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3886), + [sym_raw_string_literal] = STATE(2596), + [sym_co_await_expression] = STATE(3886), + [sym_new_expression] = STATE(3886), + [sym_delete_expression] = STATE(3886), + [sym_requires_clause] = STATE(3886), + [sym_requires_expression] = STATE(3886), + [sym_lambda_expression] = STATE(3886), + [sym_lambda_capture_specifier] = STATE(5492), + [sym__unary_left_fold] = STATE(8716), + [sym__unary_right_fold] = STATE(8742), + [sym__binary_fold] = STATE(8824), + [sym_fold_expression] = STATE(3886), + [sym_parameter_pack_expansion] = STATE(3886), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(7756), + [sym_user_defined_literal] = STATE(3522), + [sym_identifier] = ACTIONS(2619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1788), + [anon_sym_LPAREN2] = ACTIONS(1888), + [anon_sym_BANG] = ACTIONS(1890), + [anon_sym_TILDE] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1892), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(2621), + [anon_sym_COLON_COLON] = ACTIONS(1898), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2625), + [anon_sym_not] = ACTIONS(1892), + [anon_sym_compl] = ACTIONS(1892), + [anon_sym_DASH_DASH] = ACTIONS(1902), + [anon_sym_PLUS_PLUS] = ACTIONS(1902), + [anon_sym_sizeof] = ACTIONS(1904), + [anon_sym___alignof__] = ACTIONS(1906), + [anon_sym___alignof] = ACTIONS(1906), + [anon_sym__alignof] = ACTIONS(1906), + [anon_sym_alignof] = ACTIONS(1906), + [anon_sym__Alignof] = ACTIONS(1906), + [anon_sym_offsetof] = ACTIONS(1908), + [anon_sym__Generic] = ACTIONS(1910), + [anon_sym_asm] = ACTIONS(1912), + [anon_sym___asm__] = ACTIONS(1912), + [anon_sym___asm] = ACTIONS(1912), + [sym_number_literal] = ACTIONS(1914), + [anon_sym_L_SQUOTE] = ACTIONS(1916), + [anon_sym_u_SQUOTE] = ACTIONS(1916), + [anon_sym_U_SQUOTE] = ACTIONS(1916), + [anon_sym_u8_SQUOTE] = ACTIONS(1916), + [anon_sym_SQUOTE] = ACTIONS(1916), + [anon_sym_L_DQUOTE] = ACTIONS(1918), + [anon_sym_u_DQUOTE] = ACTIONS(1918), + [anon_sym_U_DQUOTE] = ACTIONS(1918), + [anon_sym_u8_DQUOTE] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1918), + [sym_true] = ACTIONS(1920), + [sym_false] = ACTIONS(1920), + [anon_sym_NULL] = ACTIONS(1922), + [anon_sym_nullptr] = ACTIONS(1922), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1924), + [anon_sym_R_DQUOTE] = ACTIONS(1926), + [anon_sym_LR_DQUOTE] = ACTIONS(1926), + [anon_sym_uR_DQUOTE] = ACTIONS(1926), + [anon_sym_UR_DQUOTE] = ACTIONS(1926), + [anon_sym_u8R_DQUOTE] = ACTIONS(1926), + [anon_sym_co_await] = ACTIONS(1928), + [anon_sym_new] = ACTIONS(1930), + [anon_sym_requires] = ACTIONS(1932), + [sym_this] = ACTIONS(1920), + }, + [1049] = { + [sym_expression] = STATE(4728), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_initializer_list] = STATE(8457), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4609), + [anon_sym_LPAREN2] = ACTIONS(1252), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(3623), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -177549,7 +185211,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(113), [anon_sym___asm__] = ACTIONS(113), [anon_sym___asm] = ACTIONS(113), - [anon_sym_DASH_GT] = ACTIONS(4310), [sym_number_literal] = ACTIONS(227), [anon_sym_L_SQUOTE] = ACTIONS(117), [anon_sym_u_SQUOTE] = ACTIONS(117), @@ -177567,83 +185228,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3861), - [anon_sym_noexcept] = ACTIONS(4314), - [anon_sym_throw] = ACTIONS(4314), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3863), - [anon_sym_new] = ACTIONS(3865), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [986] = { - [sym_expression] = STATE(4284), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(4310), + [1050] = { + [sym_expression] = STATE(4728), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_initializer_list] = STATE(8457), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4612), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym_LT] = ACTIONS(4310), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4310), - [anon_sym_LBRACE] = ACTIONS(4310), - [anon_sym_LBRACK] = ACTIONS(1450), - [anon_sym_static] = ACTIONS(4314), - [anon_sym_constexpr] = ACTIONS(4314), - [anon_sym_mutable] = ACTIONS(4314), - [anon_sym_consteval] = ACTIONS(4314), - [sym_primitive_type] = ACTIONS(2028), + [anon_sym_LBRACE] = ACTIONS(3623), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -177659,7 +185314,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(113), [anon_sym___asm__] = ACTIONS(113), [anon_sym___asm] = ACTIONS(113), - [anon_sym_DASH_GT] = ACTIONS(4310), [sym_number_literal] = ACTIONS(227), [anon_sym_L_SQUOTE] = ACTIONS(117), [anon_sym_u_SQUOTE] = ACTIONS(117), @@ -177677,10 +185331,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), - [anon_sym_noexcept] = ACTIONS(4314), - [anon_sym_throw] = ACTIONS(4314), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), @@ -177691,70 +185343,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [987] = { - [sym_expression] = STATE(4556), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_initializer_list] = STATE(7584), - [sym_initializer_pair] = STATE(7584), - [sym_subscript_designator] = STATE(6728), - [sym_subscript_range_designator] = STATE(6728), - [sym_field_designator] = STATE(6728), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_initializer_pair_repeat1] = STATE(6728), - [sym_identifier] = ACTIONS(4326), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1051] = { + [sym_expression] = STATE(4728), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_initializer_list] = STATE(8457), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4615), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3615), - [anon_sym_RBRACE] = ACTIONS(4346), - [anon_sym_LBRACK] = ACTIONS(4332), - [sym_primitive_type] = ACTIONS(2028), + [anon_sym_LBRACE] = ACTIONS(3623), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -177770,7 +185417,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(113), [anon_sym___asm__] = ACTIONS(113), [anon_sym___asm] = ACTIONS(113), - [anon_sym_DOT] = ACTIONS(225), [sym_number_literal] = ACTIONS(227), [anon_sym_L_SQUOTE] = ACTIONS(117), [anon_sym_u_SQUOTE] = ACTIONS(117), @@ -177788,7 +185434,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -177800,70 +185446,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [988] = { - [sym_expression] = STATE(4556), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_initializer_list] = STATE(7584), - [sym_initializer_pair] = STATE(7584), - [sym_subscript_designator] = STATE(6728), - [sym_subscript_range_designator] = STATE(6728), - [sym_field_designator] = STATE(6728), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_initializer_pair_repeat1] = STATE(6728), - [sym_identifier] = ACTIONS(4326), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1052] = { + [sym_expression] = STATE(4728), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_initializer_list] = STATE(8457), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4618), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3615), - [anon_sym_RBRACE] = ACTIONS(4511), - [anon_sym_LBRACK] = ACTIONS(4332), - [sym_primitive_type] = ACTIONS(2028), + [anon_sym_LBRACE] = ACTIONS(3623), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -177879,7 +185520,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(113), [anon_sym___asm__] = ACTIONS(113), [anon_sym___asm] = ACTIONS(113), - [anon_sym_DOT] = ACTIONS(225), [sym_number_literal] = ACTIONS(227), [anon_sym_L_SQUOTE] = ACTIONS(117), [anon_sym_u_SQUOTE] = ACTIONS(117), @@ -177897,7 +185537,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -177909,75 +185549,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [989] = { - [sym_expression] = STATE(4556), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_initializer_list] = STATE(7584), - [sym_initializer_pair] = STATE(7584), - [sym_subscript_designator] = STATE(6728), - [sym_subscript_range_designator] = STATE(6728), - [sym_field_designator] = STATE(6728), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_initializer_pair_repeat1] = STATE(6728), - [sym_identifier] = ACTIONS(4326), - [anon_sym_LPAREN2] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3615), - [anon_sym_RBRACE] = ACTIONS(4513), - [anon_sym_LBRACK] = ACTIONS(4332), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), + [1053] = { + [sym_expression] = STATE(4448), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3728), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3728), + [sym_call_expression] = STATE(3728), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3728), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3728), + [sym_initializer_list] = STATE(7642), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3728), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3728), + [sym_identifier] = ACTIONS(3883), + [anon_sym_LPAREN2] = ACTIONS(3901), + [anon_sym_BANG] = ACTIONS(3887), + [anon_sym_TILDE] = ACTIONS(3887), + [anon_sym_DASH] = ACTIONS(3885), + [anon_sym_PLUS] = ACTIONS(3885), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(3889), + [anon_sym_COLON_COLON] = ACTIONS(3891), + [anon_sym_LBRACE] = ACTIONS(3623), + [anon_sym_LBRACK] = ACTIONS(2020), + [anon_sym_RBRACK] = ACTIONS(4621), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3885), + [anon_sym_compl] = ACTIONS(3885), + [anon_sym_DASH_DASH] = ACTIONS(3905), + [anon_sym_PLUS_PLUS] = ACTIONS(3905), + [anon_sym_sizeof] = ACTIONS(3893), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -177988,7 +185623,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(113), [anon_sym___asm__] = ACTIONS(113), [anon_sym___asm] = ACTIONS(113), - [anon_sym_DOT] = ACTIONS(225), [sym_number_literal] = ACTIONS(227), [anon_sym_L_SQUOTE] = ACTIONS(117), [anon_sym_u_SQUOTE] = ACTIONS(117), @@ -178006,82 +185640,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(145), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3895), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), + [anon_sym_co_await] = ACTIONS(3897), + [anon_sym_new] = ACTIONS(3873), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [990] = { - [sym_expression] = STATE(4556), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_initializer_list] = STATE(7584), - [sym_initializer_pair] = STATE(7584), - [sym_subscript_designator] = STATE(6728), - [sym_subscript_range_designator] = STATE(6728), - [sym_field_designator] = STATE(6728), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_initializer_pair_repeat1] = STATE(6728), - [sym_identifier] = ACTIONS(4326), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1054] = { + [sym_expression] = STATE(4728), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_initializer_list] = STATE(8457), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4623), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3615), - [anon_sym_RBRACE] = ACTIONS(4515), - [anon_sym_LBRACK] = ACTIONS(4332), - [sym_primitive_type] = ACTIONS(2028), + [anon_sym_LBRACE] = ACTIONS(3623), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -178097,7 +185726,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(113), [anon_sym___asm__] = ACTIONS(113), [anon_sym___asm] = ACTIONS(113), - [anon_sym_DOT] = ACTIONS(225), [sym_number_literal] = ACTIONS(227), [anon_sym_L_SQUOTE] = ACTIONS(117), [anon_sym_u_SQUOTE] = ACTIONS(117), @@ -178115,7 +185743,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -178127,70 +185755,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [991] = { - [sym_expression] = STATE(4556), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_initializer_list] = STATE(7584), - [sym_initializer_pair] = STATE(7584), - [sym_subscript_designator] = STATE(6728), - [sym_subscript_range_designator] = STATE(6728), - [sym_field_designator] = STATE(6728), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_initializer_pair_repeat1] = STATE(6728), - [sym_identifier] = ACTIONS(4326), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1055] = { + [sym_expression] = STATE(4728), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_initializer_list] = STATE(8457), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4626), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3615), - [anon_sym_RBRACE] = ACTIONS(4517), - [anon_sym_LBRACK] = ACTIONS(4332), - [sym_primitive_type] = ACTIONS(2028), + [anon_sym_LBRACE] = ACTIONS(3623), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -178206,7 +185829,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(113), [anon_sym___asm__] = ACTIONS(113), [anon_sym___asm] = ACTIONS(113), - [anon_sym_DOT] = ACTIONS(225), [sym_number_literal] = ACTIONS(227), [anon_sym_L_SQUOTE] = ACTIONS(117), [anon_sym_u_SQUOTE] = ACTIONS(117), @@ -178224,7 +185846,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -178236,179 +185858,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [992] = { - [sym_string_literal] = STATE(2624), - [sym_template_argument_list] = STATE(1673), - [sym_raw_string_literal] = STATE(2624), - [aux_sym_sized_type_specifier_repeat1] = STATE(2641), - [sym_identifier] = ACTIONS(4144), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4159), - [anon_sym_COMMA] = ACTIONS(4159), - [anon_sym_RPAREN] = ACTIONS(4159), - [anon_sym_LPAREN2] = ACTIONS(4159), - [anon_sym_TILDE] = ACTIONS(4152), - [anon_sym_DASH] = ACTIONS(4154), - [anon_sym_PLUS] = ACTIONS(4154), - [anon_sym_STAR] = ACTIONS(4156), - [anon_sym_SLASH] = ACTIONS(4154), - [anon_sym_PERCENT] = ACTIONS(4154), - [anon_sym_PIPE_PIPE] = ACTIONS(4146), - [anon_sym_AMP_AMP] = ACTIONS(4159), - [anon_sym_PIPE] = ACTIONS(4154), - [anon_sym_CARET] = ACTIONS(4154), - [anon_sym_AMP] = ACTIONS(4156), - [anon_sym_EQ_EQ] = ACTIONS(4146), - [anon_sym_BANG_EQ] = ACTIONS(4146), - [anon_sym_GT] = ACTIONS(4154), - [anon_sym_GT_EQ] = ACTIONS(4146), - [anon_sym_LT_EQ] = ACTIONS(4154), - [anon_sym_LT] = ACTIONS(4162), - [anon_sym_LT_LT] = ACTIONS(4154), - [anon_sym_GT_GT] = ACTIONS(4154), - [anon_sym___extension__] = ACTIONS(4144), - [anon_sym_virtual] = ACTIONS(4144), - [anon_sym_extern] = ACTIONS(4144), - [anon_sym___attribute__] = ACTIONS(4144), - [anon_sym___attribute] = ACTIONS(4144), - [anon_sym_COLON_COLON] = ACTIONS(4167), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4152), - [anon_sym___declspec] = ACTIONS(4144), - [anon_sym___based] = ACTIONS(4144), - [anon_sym_LBRACE] = ACTIONS(4172), - [anon_sym_signed] = ACTIONS(4174), - [anon_sym_unsigned] = ACTIONS(4174), - [anon_sym_long] = ACTIONS(4174), - [anon_sym_short] = ACTIONS(4174), - [anon_sym_LBRACK] = ACTIONS(4156), - [anon_sym_static] = ACTIONS(4144), - [anon_sym_EQ] = ACTIONS(4144), - [anon_sym_register] = ACTIONS(4144), - [anon_sym_inline] = ACTIONS(4144), - [anon_sym___inline] = ACTIONS(4144), - [anon_sym___inline__] = ACTIONS(4144), - [anon_sym___forceinline] = ACTIONS(4144), - [anon_sym_thread_local] = ACTIONS(4144), - [anon_sym___thread] = ACTIONS(4144), - [anon_sym_const] = ACTIONS(4144), - [anon_sym_constexpr] = ACTIONS(4144), - [anon_sym_volatile] = ACTIONS(4144), - [anon_sym_restrict] = ACTIONS(4144), - [anon_sym___restrict__] = ACTIONS(4144), - [anon_sym__Atomic] = ACTIONS(4144), - [anon_sym__Noreturn] = ACTIONS(4144), - [anon_sym_noreturn] = ACTIONS(4144), - [anon_sym__Nonnull] = ACTIONS(4144), - [anon_sym_mutable] = ACTIONS(4144), - [anon_sym_constinit] = ACTIONS(4144), - [anon_sym_consteval] = ACTIONS(4144), - [anon_sym_alignas] = ACTIONS(4144), - [anon_sym__Alignas] = ACTIONS(4144), - [anon_sym_QMARK] = ACTIONS(4146), - [anon_sym_STAR_EQ] = ACTIONS(4182), - [anon_sym_SLASH_EQ] = ACTIONS(4182), - [anon_sym_PERCENT_EQ] = ACTIONS(4182), - [anon_sym_PLUS_EQ] = ACTIONS(4182), - [anon_sym_DASH_EQ] = ACTIONS(4182), - [anon_sym_LT_LT_EQ] = ACTIONS(4182), - [anon_sym_GT_GT_EQ] = ACTIONS(4182), - [anon_sym_AMP_EQ] = ACTIONS(4182), - [anon_sym_CARET_EQ] = ACTIONS(4182), - [anon_sym_PIPE_EQ] = ACTIONS(4182), - [anon_sym_and_eq] = ACTIONS(4180), - [anon_sym_or_eq] = ACTIONS(4180), - [anon_sym_xor_eq] = ACTIONS(4180), - [anon_sym_LT_EQ_GT] = ACTIONS(4146), - [anon_sym_or] = ACTIONS(4154), - [anon_sym_and] = ACTIONS(4154), - [anon_sym_bitor] = ACTIONS(4154), - [anon_sym_xor] = ACTIONS(4154), - [anon_sym_bitand] = ACTIONS(4154), - [anon_sym_not_eq] = ACTIONS(4154), - [anon_sym_DASH_DASH] = ACTIONS(4146), - [anon_sym_PLUS_PLUS] = ACTIONS(4146), - [anon_sym_DOT] = ACTIONS(4154), - [anon_sym_DOT_STAR] = ACTIONS(4146), - [anon_sym_DASH_GT] = ACTIONS(4146), - [anon_sym_L_DQUOTE] = ACTIONS(3623), - [anon_sym_u_DQUOTE] = ACTIONS(3623), - [anon_sym_U_DQUOTE] = ACTIONS(3623), - [anon_sym_u8_DQUOTE] = ACTIONS(3623), - [anon_sym_DQUOTE] = ACTIONS(3623), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4144), - [anon_sym_decltype] = ACTIONS(4144), - [anon_sym_template] = ACTIONS(4144), - [anon_sym_operator] = ACTIONS(4144), - [anon_sym_R_DQUOTE] = ACTIONS(3627), - [anon_sym_LR_DQUOTE] = ACTIONS(3627), - [anon_sym_uR_DQUOTE] = ACTIONS(3627), - [anon_sym_UR_DQUOTE] = ACTIONS(3627), - [anon_sym_u8R_DQUOTE] = ACTIONS(3627), - }, - [993] = { - [sym_expression] = STATE(4556), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_initializer_list] = STATE(7584), - [sym_initializer_pair] = STATE(7584), - [sym_subscript_designator] = STATE(6728), - [sym_subscript_range_designator] = STATE(6728), - [sym_field_designator] = STATE(6728), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_initializer_pair_repeat1] = STATE(6728), - [sym_identifier] = ACTIONS(4326), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1056] = { + [sym_compound_statement] = STATE(7763), + [sym_expression] = STATE(4496), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_initializer_list] = STATE(7763), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3615), - [anon_sym_RBRACE] = ACTIONS(4519), - [anon_sym_LBRACK] = ACTIONS(4332), - [sym_primitive_type] = ACTIONS(2028), + [anon_sym_LBRACE] = ACTIONS(1872), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -178424,7 +185932,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(113), [anon_sym___asm__] = ACTIONS(113), [anon_sym___asm] = ACTIONS(113), - [anon_sym_DOT] = ACTIONS(225), [sym_number_literal] = ACTIONS(227), [anon_sym_L_SQUOTE] = ACTIONS(117), [anon_sym_u_SQUOTE] = ACTIONS(117), @@ -178442,7 +185949,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -178454,70 +185961,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [994] = { - [sym_expression] = STATE(4556), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_initializer_list] = STATE(7584), - [sym_initializer_pair] = STATE(7584), - [sym_subscript_designator] = STATE(6728), - [sym_subscript_range_designator] = STATE(6728), - [sym_field_designator] = STATE(6728), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_initializer_pair_repeat1] = STATE(6728), - [sym_identifier] = ACTIONS(4326), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1057] = { + [sym_expression] = STATE(4728), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_initializer_list] = STATE(8457), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4629), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3615), - [anon_sym_RBRACE] = ACTIONS(4521), - [anon_sym_LBRACK] = ACTIONS(4332), - [sym_primitive_type] = ACTIONS(2028), + [anon_sym_LBRACE] = ACTIONS(3623), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -178533,7 +186035,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(113), [anon_sym___asm__] = ACTIONS(113), [anon_sym___asm] = ACTIONS(113), - [anon_sym_DOT] = ACTIONS(225), [sym_number_literal] = ACTIONS(227), [anon_sym_L_SQUOTE] = ACTIONS(117), [anon_sym_u_SQUOTE] = ACTIONS(117), @@ -178551,7 +186052,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -178563,75 +186064,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [995] = { - [sym_expression] = STATE(4556), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_initializer_list] = STATE(7584), - [sym_initializer_pair] = STATE(7584), - [sym_subscript_designator] = STATE(6728), - [sym_subscript_range_designator] = STATE(6728), - [sym_field_designator] = STATE(6728), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_initializer_pair_repeat1] = STATE(6728), - [sym_identifier] = ACTIONS(4326), - [anon_sym_LPAREN2] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3615), - [anon_sym_RBRACE] = ACTIONS(4523), - [anon_sym_LBRACK] = ACTIONS(4332), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), + [1058] = { + [sym_expression] = STATE(4413), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3728), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3728), + [sym_call_expression] = STATE(3728), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3728), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3728), + [sym_initializer_list] = STATE(7572), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3728), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3728), + [sym_identifier] = ACTIONS(3883), + [anon_sym_LPAREN2] = ACTIONS(3901), + [anon_sym_BANG] = ACTIONS(3887), + [anon_sym_TILDE] = ACTIONS(3887), + [anon_sym_DASH] = ACTIONS(3885), + [anon_sym_PLUS] = ACTIONS(3885), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(3889), + [anon_sym_COLON_COLON] = ACTIONS(3891), + [anon_sym_LBRACE] = ACTIONS(3623), + [anon_sym_LBRACK] = ACTIONS(2020), + [anon_sym_RBRACK] = ACTIONS(4632), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3885), + [anon_sym_compl] = ACTIONS(3885), + [anon_sym_DASH_DASH] = ACTIONS(3905), + [anon_sym_PLUS_PLUS] = ACTIONS(3905), + [anon_sym_sizeof] = ACTIONS(3893), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -178642,7 +186138,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(113), [anon_sym___asm__] = ACTIONS(113), [anon_sym___asm] = ACTIONS(113), - [anon_sym_DOT] = ACTIONS(225), [sym_number_literal] = ACTIONS(227), [anon_sym_L_SQUOTE] = ACTIONS(117), [anon_sym_u_SQUOTE] = ACTIONS(117), @@ -178660,82 +186155,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(145), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3895), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), + [anon_sym_co_await] = ACTIONS(3897), + [anon_sym_new] = ACTIONS(3873), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [996] = { - [sym_expression] = STATE(4556), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_initializer_list] = STATE(7584), - [sym_initializer_pair] = STATE(7584), - [sym_subscript_designator] = STATE(6728), - [sym_subscript_range_designator] = STATE(6728), - [sym_field_designator] = STATE(6728), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_initializer_pair_repeat1] = STATE(6728), - [sym_identifier] = ACTIONS(4326), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1059] = { + [sym_expression] = STATE(4728), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_initializer_list] = STATE(8457), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4634), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3615), - [anon_sym_RBRACE] = ACTIONS(4525), - [anon_sym_LBRACK] = ACTIONS(4332), - [sym_primitive_type] = ACTIONS(2028), + [anon_sym_LBRACE] = ACTIONS(3623), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -178751,7 +186241,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(113), [anon_sym___asm__] = ACTIONS(113), [anon_sym___asm] = ACTIONS(113), - [anon_sym_DOT] = ACTIONS(225), [sym_number_literal] = ACTIONS(227), [anon_sym_L_SQUOTE] = ACTIONS(117), [anon_sym_u_SQUOTE] = ACTIONS(117), @@ -178769,7 +186258,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -178781,70 +186270,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [997] = { - [sym_expression] = STATE(4556), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_initializer_list] = STATE(7584), - [sym_initializer_pair] = STATE(7584), - [sym_subscript_designator] = STATE(6728), - [sym_subscript_range_designator] = STATE(6728), - [sym_field_designator] = STATE(6728), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_initializer_pair_repeat1] = STATE(6728), - [sym_identifier] = ACTIONS(4326), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1060] = { + [sym_expression] = STATE(4728), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_initializer_list] = STATE(8457), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4637), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3615), - [anon_sym_RBRACE] = ACTIONS(4527), - [anon_sym_LBRACK] = ACTIONS(4332), - [sym_primitive_type] = ACTIONS(2028), + [anon_sym_LBRACE] = ACTIONS(3623), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -178860,7 +186344,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(113), [anon_sym___asm__] = ACTIONS(113), [anon_sym___asm] = ACTIONS(113), - [anon_sym_DOT] = ACTIONS(225), [sym_number_literal] = ACTIONS(227), [anon_sym_L_SQUOTE] = ACTIONS(117), [anon_sym_u_SQUOTE] = ACTIONS(117), @@ -178878,7 +186361,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -178890,70 +186373,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [998] = { - [sym_expression] = STATE(4556), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_initializer_list] = STATE(7584), - [sym_initializer_pair] = STATE(7584), - [sym_subscript_designator] = STATE(6728), - [sym_subscript_range_designator] = STATE(6728), - [sym_field_designator] = STATE(6728), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_initializer_pair_repeat1] = STATE(6728), - [sym_identifier] = ACTIONS(4326), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1061] = { + [sym_expression] = STATE(4728), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_initializer_list] = STATE(8457), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4640), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3615), - [anon_sym_RBRACE] = ACTIONS(4529), - [anon_sym_LBRACK] = ACTIONS(4332), - [sym_primitive_type] = ACTIONS(2028), + [anon_sym_LBRACE] = ACTIONS(3623), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -178969,7 +186447,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(113), [anon_sym___asm__] = ACTIONS(113), [anon_sym___asm] = ACTIONS(113), - [anon_sym_DOT] = ACTIONS(225), [sym_number_literal] = ACTIONS(227), [anon_sym_L_SQUOTE] = ACTIONS(117), [anon_sym_u_SQUOTE] = ACTIONS(117), @@ -178987,7 +186464,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -178999,70 +186476,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [999] = { - [sym_expression] = STATE(4556), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_initializer_list] = STATE(7584), - [sym_initializer_pair] = STATE(7584), - [sym_subscript_designator] = STATE(6728), - [sym_subscript_range_designator] = STATE(6728), - [sym_field_designator] = STATE(6728), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_initializer_pair_repeat1] = STATE(6728), - [sym_identifier] = ACTIONS(4326), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1062] = { + [sym_expression] = STATE(4728), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_initializer_list] = STATE(8457), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4643), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3615), - [anon_sym_RBRACE] = ACTIONS(4531), - [anon_sym_LBRACK] = ACTIONS(4332), - [sym_primitive_type] = ACTIONS(2028), + [anon_sym_LBRACE] = ACTIONS(3623), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -179078,7 +186550,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(113), [anon_sym___asm__] = ACTIONS(113), [anon_sym___asm] = ACTIONS(113), - [anon_sym_DOT] = ACTIONS(225), [sym_number_literal] = ACTIONS(227), [anon_sym_L_SQUOTE] = ACTIONS(117), [anon_sym_u_SQUOTE] = ACTIONS(117), @@ -179096,7 +186567,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -179108,74 +186579,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1000] = { - [sym_expression] = STATE(4556), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_initializer_list] = STATE(7584), - [sym_initializer_pair] = STATE(7584), - [sym_subscript_designator] = STATE(6728), - [sym_subscript_range_designator] = STATE(6728), - [sym_field_designator] = STATE(6728), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [aux_sym_initializer_pair_repeat1] = STATE(6728), - [sym_identifier] = ACTIONS(4326), - [anon_sym_LPAREN2] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3615), - [anon_sym_LBRACK] = ACTIONS(4332), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), + [1063] = { + [sym_expression] = STATE(4466), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3728), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3728), + [sym_call_expression] = STATE(3728), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3728), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3728), + [sym_initializer_list] = STATE(7353), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3728), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3728), + [sym_identifier] = ACTIONS(3883), + [anon_sym_LPAREN2] = ACTIONS(3901), + [anon_sym_BANG] = ACTIONS(3887), + [anon_sym_TILDE] = ACTIONS(3887), + [anon_sym_DASH] = ACTIONS(3885), + [anon_sym_PLUS] = ACTIONS(3885), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(3889), + [anon_sym_COLON_COLON] = ACTIONS(3891), + [anon_sym_LBRACE] = ACTIONS(3623), + [anon_sym_LBRACK] = ACTIONS(2020), + [anon_sym_RBRACK] = ACTIONS(4646), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3885), + [anon_sym_compl] = ACTIONS(3885), + [anon_sym_DASH_DASH] = ACTIONS(3905), + [anon_sym_PLUS_PLUS] = ACTIONS(3905), + [anon_sym_sizeof] = ACTIONS(3893), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -179186,7 +186653,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(113), [anon_sym___asm__] = ACTIONS(113), [anon_sym___asm] = ACTIONS(113), - [anon_sym_DOT] = ACTIONS(225), [sym_number_literal] = ACTIONS(227), [anon_sym_L_SQUOTE] = ACTIONS(117), [anon_sym_u_SQUOTE] = ACTIONS(117), @@ -179204,87 +186670,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(145), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3895), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), + [anon_sym_co_await] = ACTIONS(3897), + [anon_sym_new] = ACTIONS(3873), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1001] = { - [sym_expression] = STATE(4766), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3678), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3678), - [sym_call_expression] = STATE(3678), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3678), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3678), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_lambda_default_capture] = STATE(7699), - [sym__lambda_capture_identifier] = STATE(7222), - [sym_lambda_capture_initializer] = STATE(7222), - [sym__lambda_capture] = STATE(7222), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_identifier_parameter_pack_expansion] = STATE(7222), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3675), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3678), - [sym_identifier] = ACTIONS(4533), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4535), - [anon_sym_LPAREN2] = ACTIONS(3893), - [anon_sym_BANG] = ACTIONS(3853), - [anon_sym_TILDE] = ACTIONS(3853), - [anon_sym_DASH] = ACTIONS(3851), - [anon_sym_PLUS] = ACTIONS(3851), - [anon_sym_STAR] = ACTIONS(4537), - [anon_sym_AMP] = ACTIONS(4539), - [anon_sym___extension__] = ACTIONS(3855), - [anon_sym_COLON_COLON] = ACTIONS(3857), + [1064] = { + [sym_expression] = STATE(4508), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_initializer_list] = STATE(7998), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(3623), [anon_sym_LBRACK] = ACTIONS(2020), - [anon_sym_RBRACK] = ACTIONS(4541), - [anon_sym_EQ] = ACTIONS(4543), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3851), - [anon_sym_compl] = ACTIONS(3851), - [anon_sym_DASH_DASH] = ACTIONS(3897), - [anon_sym_PLUS_PLUS] = ACTIONS(3897), - [anon_sym_sizeof] = ACTIONS(3859), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -179312,87 +186772,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3861), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3863), - [anon_sym_new] = ACTIONS(3865), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(4545), + [sym_this] = ACTIONS(229), }, - [1002] = { - [sym_expression] = STATE(4766), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3678), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3678), - [sym_call_expression] = STATE(3678), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3678), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3678), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_lambda_default_capture] = STATE(7699), - [sym__lambda_capture_identifier] = STATE(7222), - [sym_lambda_capture_initializer] = STATE(7222), - [sym__lambda_capture] = STATE(7222), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_identifier_parameter_pack_expansion] = STATE(7222), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3675), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3678), - [sym_identifier] = ACTIONS(4547), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4535), - [anon_sym_LPAREN2] = ACTIONS(3893), - [anon_sym_BANG] = ACTIONS(3853), - [anon_sym_TILDE] = ACTIONS(3853), - [anon_sym_DASH] = ACTIONS(3851), - [anon_sym_PLUS] = ACTIONS(3851), - [anon_sym_STAR] = ACTIONS(4537), - [anon_sym_AMP] = ACTIONS(4539), - [anon_sym___extension__] = ACTIONS(3855), - [anon_sym_COLON_COLON] = ACTIONS(3857), + [1065] = { + [sym_expression] = STATE(4617), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8500), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3597), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3597), + [sym_call_expression] = STATE(3597), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3597), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3597), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3597), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3597), + [sym_identifier] = ACTIONS(3857), + [anon_sym_LPAREN2] = ACTIONS(4648), + [anon_sym_BANG] = ACTIONS(3861), + [anon_sym_TILDE] = ACTIONS(3861), + [anon_sym_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3859), + [anon_sym_STAR] = ACTIONS(4366), + [anon_sym_AMP] = ACTIONS(4366), + [anon_sym___extension__] = ACTIONS(3863), + [anon_sym_COLON] = ACTIONS(4650), + [anon_sym_COLON_COLON] = ACTIONS(3865), [anon_sym_LBRACK] = ACTIONS(2020), - [anon_sym_RBRACK] = ACTIONS(4541), - [anon_sym_EQ] = ACTIONS(4543), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3851), - [anon_sym_compl] = ACTIONS(3851), - [anon_sym_DASH_DASH] = ACTIONS(3897), - [anon_sym_PLUS_PLUS] = ACTIONS(3897), - [anon_sym_sizeof] = ACTIONS(3859), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3859), + [anon_sym_compl] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(4368), + [anon_sym_PLUS_PLUS] = ACTIONS(4368), + [anon_sym_sizeof] = ACTIONS(3867), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -179420,82 +186874,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3861), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3869), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3863), - [anon_sym_new] = ACTIONS(3865), + [anon_sym_co_await] = ACTIONS(3871), + [anon_sym_new] = ACTIONS(3873), [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(4545), + [sym_this] = ACTIONS(229), }, - [1003] = { - [sym_expression] = STATE(2398), - [sym__string] = STATE(2950), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(2950), - [sym_concatenated_string] = STATE(2950), - [sym_string_literal] = STATE(2034), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(2034), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_identifier_parameter_pack_expansion] = STATE(7778), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3644), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), - [sym_identifier] = ACTIONS(4549), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4551), - [anon_sym_COMMA] = ACTIONS(4553), - [anon_sym_LPAREN2] = ACTIONS(4555), + [1066] = { + [sym_expression] = STATE(2417), + [sym__string] = STATE(2917), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_initializer_list] = STATE(2488), + [sym_char_literal] = STATE(2917), + [sym_concatenated_string] = STATE(2917), + [sym_string_literal] = STATE(2114), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(2114), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), + [sym_identifier] = ACTIONS(1990), + [anon_sym_LPAREN2] = ACTIONS(4565), [anon_sym_BANG] = ACTIONS(1994), [anon_sym_TILDE] = ACTIONS(1994), [anon_sym_DASH] = ACTIONS(1992), [anon_sym_PLUS] = ACTIONS(1992), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), [anon_sym___extension__] = ACTIONS(1996), [anon_sym_COLON_COLON] = ACTIONS(1998), + [anon_sym_LBRACE] = ACTIONS(1954), [anon_sym_LBRACK] = ACTIONS(2020), - [anon_sym_RBRACK] = ACTIONS(4553), [sym_primitive_type] = ACTIONS(1956), [anon_sym_not] = ACTIONS(1992), [anon_sym_compl] = ACTIONS(1992), - [anon_sym_DASH_DASH] = ACTIONS(3343), - [anon_sym_PLUS_PLUS] = ACTIONS(3343), + [anon_sym_DASH_DASH] = ACTIONS(3355), + [anon_sym_PLUS_PLUS] = ACTIONS(3355), [anon_sym_sizeof] = ACTIONS(2000), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), @@ -179524,7 +186976,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1976), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(2008), [anon_sym_R_DQUOTE] = ACTIONS(2010), [anon_sym_LR_DQUOTE] = ACTIONS(2010), @@ -179536,174 +186988,171 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [1004] = { - [sym_expression] = STATE(3230), - [sym__string] = STATE(3714), - [sym_conditional_expression] = STATE(3908), - [sym_assignment_expression] = STATE(3908), - [sym_pointer_expression] = STATE(3506), - [sym_unary_expression] = STATE(3908), - [sym_binary_expression] = STATE(3908), - [sym_update_expression] = STATE(3908), - [sym_cast_expression] = STATE(3908), - [sym_sizeof_expression] = STATE(3908), - [sym_alignof_expression] = STATE(3908), - [sym_offsetof_expression] = STATE(3908), - [sym_generic_expression] = STATE(3908), - [sym_subscript_expression] = STATE(3506), - [sym_call_expression] = STATE(3506), - [sym_gnu_asm_expression] = STATE(3908), - [sym_extension_expression] = STATE(3908), - [sym_field_expression] = STATE(3506), - [sym_compound_literal_expression] = STATE(3908), - [sym_parenthesized_expression] = STATE(3506), - [sym_char_literal] = STATE(3714), - [sym_concatenated_string] = STATE(3714), - [sym_string_literal] = STATE(2566), - [sym_null] = STATE(3908), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7868), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3908), - [sym_raw_string_literal] = STATE(2566), - [sym_co_await_expression] = STATE(3908), - [sym_new_expression] = STATE(3908), - [sym_delete_expression] = STATE(3908), - [sym_requires_clause] = STATE(3908), - [sym_requires_expression] = STATE(3908), - [sym_lambda_expression] = STATE(3908), - [sym_lambda_capture_specifier] = STATE(5415), - [sym__unary_left_fold] = STATE(8553), - [sym__unary_right_fold] = STATE(8555), - [sym__binary_fold] = STATE(8556), - [sym_fold_expression] = STATE(3908), - [sym_parameter_pack_expansion] = STATE(3908), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3506), - [sym_qualified_type_identifier] = STATE(7868), - [sym_user_defined_literal] = STATE(3506), - [sym_identifier] = ACTIONS(2605), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1870), - [anon_sym_TILDE] = ACTIONS(1870), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_PLUS] = ACTIONS(1872), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(2607), - [anon_sym_COLON_COLON] = ACTIONS(1880), + [1067] = { + [sym_expression] = STATE(2417), + [sym__string] = STATE(3178), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_initializer_list] = STATE(2488), + [sym_char_literal] = STATE(3178), + [sym_concatenated_string] = STATE(3178), + [sym_string_literal] = STATE(2317), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(2317), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), + [sym_identifier] = ACTIONS(2301), + [anon_sym_LPAREN2] = ACTIONS(4652), + [anon_sym_BANG] = ACTIONS(2305), + [anon_sym_TILDE] = ACTIONS(2305), + [anon_sym_DASH] = ACTIONS(2303), + [anon_sym_PLUS] = ACTIONS(2303), + [anon_sym_STAR] = ACTIONS(4336), + [anon_sym_AMP] = ACTIONS(4336), + [anon_sym___extension__] = ACTIONS(2307), + [anon_sym_COLON_COLON] = ACTIONS(2309), + [anon_sym_LBRACE] = ACTIONS(1954), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2611), - [anon_sym_not] = ACTIONS(1872), - [anon_sym_compl] = ACTIONS(1872), - [anon_sym_DASH_DASH] = ACTIONS(1892), - [anon_sym_PLUS_PLUS] = ACTIONS(1892), - [anon_sym_sizeof] = ACTIONS(1894), - [anon_sym___alignof__] = ACTIONS(1896), - [anon_sym___alignof] = ACTIONS(1896), - [anon_sym__alignof] = ACTIONS(1896), - [anon_sym_alignof] = ACTIONS(1896), - [anon_sym__Alignof] = ACTIONS(1896), - [anon_sym_offsetof] = ACTIONS(1898), - [anon_sym__Generic] = ACTIONS(1900), - [anon_sym_asm] = ACTIONS(1902), - [anon_sym___asm__] = ACTIONS(1902), - [anon_sym___asm] = ACTIONS(1902), - [sym_number_literal] = ACTIONS(1904), - [anon_sym_L_SQUOTE] = ACTIONS(1906), - [anon_sym_u_SQUOTE] = ACTIONS(1906), - [anon_sym_U_SQUOTE] = ACTIONS(1906), - [anon_sym_u8_SQUOTE] = ACTIONS(1906), - [anon_sym_SQUOTE] = ACTIONS(1906), - [anon_sym_L_DQUOTE] = ACTIONS(1908), - [anon_sym_u_DQUOTE] = ACTIONS(1908), - [anon_sym_U_DQUOTE] = ACTIONS(1908), - [anon_sym_u8_DQUOTE] = ACTIONS(1908), - [anon_sym_DQUOTE] = ACTIONS(1908), - [sym_true] = ACTIONS(1910), - [sym_false] = ACTIONS(1910), - [anon_sym_NULL] = ACTIONS(1912), - [anon_sym_nullptr] = ACTIONS(1912), + [sym_primitive_type] = ACTIONS(1956), + [anon_sym_not] = ACTIONS(2303), + [anon_sym_compl] = ACTIONS(2303), + [anon_sym_DASH_DASH] = ACTIONS(4352), + [anon_sym_PLUS_PLUS] = ACTIONS(4352), + [anon_sym_sizeof] = ACTIONS(2311), + [anon_sym___alignof__] = ACTIONS(1960), + [anon_sym___alignof] = ACTIONS(1960), + [anon_sym__alignof] = ACTIONS(1960), + [anon_sym_alignof] = ACTIONS(1960), + [anon_sym__Alignof] = ACTIONS(1960), + [anon_sym_offsetof] = ACTIONS(1962), + [anon_sym__Generic] = ACTIONS(1964), + [anon_sym_asm] = ACTIONS(1966), + [anon_sym___asm__] = ACTIONS(1966), + [anon_sym___asm] = ACTIONS(1966), + [sym_number_literal] = ACTIONS(2313), + [anon_sym_L_SQUOTE] = ACTIONS(2315), + [anon_sym_u_SQUOTE] = ACTIONS(2315), + [anon_sym_U_SQUOTE] = ACTIONS(2315), + [anon_sym_u8_SQUOTE] = ACTIONS(2315), + [anon_sym_SQUOTE] = ACTIONS(2315), + [anon_sym_L_DQUOTE] = ACTIONS(2317), + [anon_sym_u_DQUOTE] = ACTIONS(2317), + [anon_sym_U_DQUOTE] = ACTIONS(2317), + [anon_sym_u8_DQUOTE] = ACTIONS(2317), + [anon_sym_DQUOTE] = ACTIONS(2317), + [sym_true] = ACTIONS(1974), + [sym_false] = ACTIONS(1974), + [anon_sym_NULL] = ACTIONS(1976), + [anon_sym_nullptr] = ACTIONS(1976), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1916), - [anon_sym_R_DQUOTE] = ACTIONS(1918), - [anon_sym_LR_DQUOTE] = ACTIONS(1918), - [anon_sym_uR_DQUOTE] = ACTIONS(1918), - [anon_sym_UR_DQUOTE] = ACTIONS(1918), - [anon_sym_u8R_DQUOTE] = ACTIONS(1918), - [anon_sym_co_await] = ACTIONS(1920), - [anon_sym_new] = ACTIONS(1922), - [anon_sym_requires] = ACTIONS(1924), - [sym_this] = ACTIONS(1910), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(2319), + [anon_sym_R_DQUOTE] = ACTIONS(2321), + [anon_sym_LR_DQUOTE] = ACTIONS(2321), + [anon_sym_uR_DQUOTE] = ACTIONS(2321), + [anon_sym_UR_DQUOTE] = ACTIONS(2321), + [anon_sym_u8R_DQUOTE] = ACTIONS(2321), + [anon_sym_co_await] = ACTIONS(2323), + [anon_sym_new] = ACTIONS(2014), + [anon_sym_requires] = ACTIONS(1988), + [sym_this] = ACTIONS(1974), }, - [1005] = { - [sym_expression] = STATE(4173), - [sym__string] = STATE(4380), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3253), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3253), - [sym_call_expression] = STATE(3253), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3253), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3253), - [sym_initializer_list] = STATE(6830), - [sym_char_literal] = STATE(4380), - [sym_concatenated_string] = STATE(4380), - [sym_string_literal] = STATE(3416), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3416), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3253), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3253), - [sym_identifier] = ACTIONS(3823), - [anon_sym_LPAREN2] = ACTIONS(4557), - [anon_sym_BANG] = ACTIONS(3827), - [anon_sym_TILDE] = ACTIONS(3827), - [anon_sym_DASH] = ACTIONS(3825), - [anon_sym_PLUS] = ACTIONS(3825), - [anon_sym_STAR] = ACTIONS(4382), - [anon_sym_AMP] = ACTIONS(4382), - [anon_sym___extension__] = ACTIONS(3829), - [anon_sym_COLON_COLON] = ACTIONS(3831), - [anon_sym_LBRACE] = ACTIONS(3615), + [1068] = { + [sym_expression] = STATE(4482), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3728), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3728), + [sym_call_expression] = STATE(3728), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3728), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3728), + [sym_initializer_list] = STATE(3925), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3728), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3728), + [sym_identifier] = ACTIONS(3883), + [anon_sym_LPAREN2] = ACTIONS(3901), + [anon_sym_BANG] = ACTIONS(3887), + [anon_sym_TILDE] = ACTIONS(3887), + [anon_sym_DASH] = ACTIONS(3885), + [anon_sym_PLUS] = ACTIONS(3885), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(3889), + [anon_sym_COLON_COLON] = ACTIONS(3891), + [anon_sym_LBRACE] = ACTIONS(3623), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_default] = ACTIONS(4559), - [anon_sym_not] = ACTIONS(3825), - [anon_sym_compl] = ACTIONS(3825), - [anon_sym_DASH_DASH] = ACTIONS(4384), - [anon_sym_PLUS_PLUS] = ACTIONS(4384), - [anon_sym_sizeof] = ACTIONS(3833), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3885), + [anon_sym_compl] = ACTIONS(3885), + [anon_sym_DASH_DASH] = ACTIONS(3905), + [anon_sym_PLUS_PLUS] = ACTIONS(3905), + [anon_sym_sizeof] = ACTIONS(3893), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -179714,96 +187163,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(113), [anon_sym___asm__] = ACTIONS(113), [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3835), - [anon_sym_L_SQUOTE] = ACTIONS(3837), - [anon_sym_u_SQUOTE] = ACTIONS(3837), - [anon_sym_U_SQUOTE] = ACTIONS(3837), - [anon_sym_u8_SQUOTE] = ACTIONS(3837), - [anon_sym_SQUOTE] = ACTIONS(3837), - [anon_sym_L_DQUOTE] = ACTIONS(3839), - [anon_sym_u_DQUOTE] = ACTIONS(3839), - [anon_sym_U_DQUOTE] = ACTIONS(3839), - [anon_sym_u8_DQUOTE] = ACTIONS(3839), - [anon_sym_DQUOTE] = ACTIONS(3839), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(117), + [anon_sym_u_SQUOTE] = ACTIONS(117), + [anon_sym_U_SQUOTE] = ACTIONS(117), + [anon_sym_u8_SQUOTE] = ACTIONS(117), + [anon_sym_SQUOTE] = ACTIONS(117), + [anon_sym_L_DQUOTE] = ACTIONS(119), + [anon_sym_u_DQUOTE] = ACTIONS(119), + [anon_sym_U_DQUOTE] = ACTIONS(119), + [anon_sym_u8_DQUOTE] = ACTIONS(119), + [anon_sym_DQUOTE] = ACTIONS(119), [sym_true] = ACTIONS(229), [sym_false] = ACTIONS(229), [anon_sym_NULL] = ACTIONS(123), [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(4561), - [aux_sym_pure_virtual_clause_token1] = ACTIONS(4563), - [anon_sym_R_DQUOTE] = ACTIONS(3843), - [anon_sym_LR_DQUOTE] = ACTIONS(3843), - [anon_sym_uR_DQUOTE] = ACTIONS(3843), - [anon_sym_UR_DQUOTE] = ACTIONS(3843), - [anon_sym_u8R_DQUOTE] = ACTIONS(3843), - [anon_sym_co_await] = ACTIONS(3845), - [anon_sym_new] = ACTIONS(163), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3895), + [anon_sym_R_DQUOTE] = ACTIONS(159), + [anon_sym_LR_DQUOTE] = ACTIONS(159), + [anon_sym_uR_DQUOTE] = ACTIONS(159), + [anon_sym_UR_DQUOTE] = ACTIONS(159), + [anon_sym_u8R_DQUOTE] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(3897), + [anon_sym_new] = ACTIONS(3873), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1006] = { - [sym_expression] = STATE(4477), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8534), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_initializer_list] = STATE(8534), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1069] = { + [sym_expression] = STATE(4463), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_initializer_list] = STATE(8035), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(4565), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3615), + [anon_sym_LBRACE] = ACTIONS(3623), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -179836,7 +187282,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -179848,66 +187294,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1007] = { - [sym_expression] = STATE(4461), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8831), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_initializer_list] = STATE(8831), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1070] = { + [sym_expression] = STATE(4728), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_initializer_list] = STATE(8457), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(4567), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3615), + [anon_sym_LBRACE] = ACTIONS(3623), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -179940,7 +187384,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -179952,66 +187396,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1008] = { - [sym_compound_statement] = STATE(7140), - [sym_expression] = STATE(4385), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_initializer_list] = STATE(7140), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_RPAREN] = ACTIONS(4569), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1071] = { + [sym_expression] = STATE(3759), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_initializer_list] = STATE(3899), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(1932), + [anon_sym_LBRACE] = ACTIONS(3623), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -180044,7 +187486,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -180056,174 +187498,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1009] = { - [sym_expression] = STATE(3345), - [sym__string] = STATE(3714), - [sym_conditional_expression] = STATE(3908), - [sym_assignment_expression] = STATE(3908), - [sym_pointer_expression] = STATE(3506), - [sym_unary_expression] = STATE(3908), - [sym_binary_expression] = STATE(3908), - [sym_update_expression] = STATE(3908), - [sym_cast_expression] = STATE(3908), - [sym_sizeof_expression] = STATE(3908), - [sym_alignof_expression] = STATE(3908), - [sym_offsetof_expression] = STATE(3908), - [sym_generic_expression] = STATE(3908), - [sym_subscript_expression] = STATE(3506), - [sym_call_expression] = STATE(3506), - [sym_gnu_asm_expression] = STATE(3908), - [sym_extension_expression] = STATE(3908), - [sym_field_expression] = STATE(3506), - [sym_compound_literal_expression] = STATE(3908), - [sym_parenthesized_expression] = STATE(3506), - [sym_char_literal] = STATE(3714), - [sym_concatenated_string] = STATE(3714), - [sym_string_literal] = STATE(2566), - [sym_null] = STATE(3908), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7868), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3908), - [sym_raw_string_literal] = STATE(2566), - [sym_co_await_expression] = STATE(3908), - [sym_new_expression] = STATE(3908), - [sym_delete_expression] = STATE(3908), - [sym_requires_clause] = STATE(3908), - [sym_requires_expression] = STATE(3908), - [sym_lambda_expression] = STATE(3908), - [sym_lambda_capture_specifier] = STATE(5415), - [sym__unary_left_fold] = STATE(8414), - [sym__unary_right_fold] = STATE(8418), - [sym__binary_fold] = STATE(8419), - [sym_fold_expression] = STATE(3908), - [sym_parameter_pack_expansion] = STATE(3908), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3506), - [sym_qualified_type_identifier] = STATE(7868), - [sym_user_defined_literal] = STATE(3506), - [sym_identifier] = ACTIONS(2605), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1870), - [anon_sym_TILDE] = ACTIONS(1870), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_PLUS] = ACTIONS(1872), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(2607), - [anon_sym_COLON_COLON] = ACTIONS(1880), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2611), - [anon_sym_not] = ACTIONS(1872), - [anon_sym_compl] = ACTIONS(1872), - [anon_sym_DASH_DASH] = ACTIONS(1892), - [anon_sym_PLUS_PLUS] = ACTIONS(1892), - [anon_sym_sizeof] = ACTIONS(1894), - [anon_sym___alignof__] = ACTIONS(1896), - [anon_sym___alignof] = ACTIONS(1896), - [anon_sym__alignof] = ACTIONS(1896), - [anon_sym_alignof] = ACTIONS(1896), - [anon_sym__Alignof] = ACTIONS(1896), - [anon_sym_offsetof] = ACTIONS(1898), - [anon_sym__Generic] = ACTIONS(1900), - [anon_sym_asm] = ACTIONS(1902), - [anon_sym___asm__] = ACTIONS(1902), - [anon_sym___asm] = ACTIONS(1902), - [sym_number_literal] = ACTIONS(1904), - [anon_sym_L_SQUOTE] = ACTIONS(1906), - [anon_sym_u_SQUOTE] = ACTIONS(1906), - [anon_sym_U_SQUOTE] = ACTIONS(1906), - [anon_sym_u8_SQUOTE] = ACTIONS(1906), - [anon_sym_SQUOTE] = ACTIONS(1906), - [anon_sym_L_DQUOTE] = ACTIONS(1908), - [anon_sym_u_DQUOTE] = ACTIONS(1908), - [anon_sym_U_DQUOTE] = ACTIONS(1908), - [anon_sym_u8_DQUOTE] = ACTIONS(1908), - [anon_sym_DQUOTE] = ACTIONS(1908), - [sym_true] = ACTIONS(1910), - [sym_false] = ACTIONS(1910), - [anon_sym_NULL] = ACTIONS(1912), - [anon_sym_nullptr] = ACTIONS(1912), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1916), - [anon_sym_R_DQUOTE] = ACTIONS(1918), - [anon_sym_LR_DQUOTE] = ACTIONS(1918), - [anon_sym_uR_DQUOTE] = ACTIONS(1918), - [anon_sym_UR_DQUOTE] = ACTIONS(1918), - [anon_sym_u8R_DQUOTE] = ACTIONS(1918), - [anon_sym_co_await] = ACTIONS(1920), - [anon_sym_new] = ACTIONS(1922), - [anon_sym_requires] = ACTIONS(1924), - [sym_this] = ACTIONS(1910), - }, - [1010] = { - [sym_expression] = STATE(4172), - [sym__string] = STATE(4380), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3253), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3253), - [sym_call_expression] = STATE(3253), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3253), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3253), - [sym_initializer_list] = STATE(6803), - [sym_char_literal] = STATE(4380), - [sym_concatenated_string] = STATE(4380), - [sym_string_literal] = STATE(3416), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3416), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3253), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3253), - [sym_identifier] = ACTIONS(3823), - [anon_sym_LPAREN2] = ACTIONS(4557), - [anon_sym_BANG] = ACTIONS(3827), - [anon_sym_TILDE] = ACTIONS(3827), - [anon_sym_DASH] = ACTIONS(3825), - [anon_sym_PLUS] = ACTIONS(3825), - [anon_sym_STAR] = ACTIONS(4382), - [anon_sym_AMP] = ACTIONS(4382), - [anon_sym___extension__] = ACTIONS(3829), - [anon_sym_COLON_COLON] = ACTIONS(3831), - [anon_sym_LBRACE] = ACTIONS(3615), + [1072] = { + [sym_expression] = STATE(4169), + [sym__string] = STATE(4269), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(2921), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(2921), + [sym_call_expression] = STATE(2921), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(2921), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(2921), + [sym_initializer_list] = STATE(3925), + [sym_char_literal] = STATE(4269), + [sym_concatenated_string] = STATE(4269), + [sym_string_literal] = STATE(3102), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3102), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2921), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(2921), + [sym_identifier] = ACTIONS(4356), + [anon_sym_LPAREN2] = ACTIONS(4654), + [anon_sym_BANG] = ACTIONS(3617), + [anon_sym_TILDE] = ACTIONS(3617), + [anon_sym_DASH] = ACTIONS(3615), + [anon_sym_PLUS] = ACTIONS(3615), + [anon_sym_STAR] = ACTIONS(4346), + [anon_sym_AMP] = ACTIONS(4346), + [anon_sym___extension__] = ACTIONS(3619), + [anon_sym_COLON_COLON] = ACTIONS(3621), + [anon_sym_LBRACE] = ACTIONS(3623), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_default] = ACTIONS(4571), - [anon_sym_not] = ACTIONS(3825), - [anon_sym_compl] = ACTIONS(3825), - [anon_sym_DASH_DASH] = ACTIONS(4384), - [anon_sym_PLUS_PLUS] = ACTIONS(4384), - [anon_sym_sizeof] = ACTIONS(3833), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3615), + [anon_sym_compl] = ACTIONS(3615), + [anon_sym_DASH_DASH] = ACTIONS(4358), + [anon_sym_PLUS_PLUS] = ACTIONS(4358), + [anon_sym_sizeof] = ACTIONS(3625), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -180234,1037 +187571,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(113), [anon_sym___asm__] = ACTIONS(113), [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3835), - [anon_sym_L_SQUOTE] = ACTIONS(3837), - [anon_sym_u_SQUOTE] = ACTIONS(3837), - [anon_sym_U_SQUOTE] = ACTIONS(3837), - [anon_sym_u8_SQUOTE] = ACTIONS(3837), - [anon_sym_SQUOTE] = ACTIONS(3837), - [anon_sym_L_DQUOTE] = ACTIONS(3839), - [anon_sym_u_DQUOTE] = ACTIONS(3839), - [anon_sym_U_DQUOTE] = ACTIONS(3839), - [anon_sym_u8_DQUOTE] = ACTIONS(3839), - [anon_sym_DQUOTE] = ACTIONS(3839), + [sym_number_literal] = ACTIONS(3627), + [anon_sym_L_SQUOTE] = ACTIONS(3629), + [anon_sym_u_SQUOTE] = ACTIONS(3629), + [anon_sym_U_SQUOTE] = ACTIONS(3629), + [anon_sym_u8_SQUOTE] = ACTIONS(3629), + [anon_sym_SQUOTE] = ACTIONS(3629), + [anon_sym_L_DQUOTE] = ACTIONS(3631), + [anon_sym_u_DQUOTE] = ACTIONS(3631), + [anon_sym_U_DQUOTE] = ACTIONS(3631), + [anon_sym_u8_DQUOTE] = ACTIONS(3631), + [anon_sym_DQUOTE] = ACTIONS(3631), [sym_true] = ACTIONS(229), [sym_false] = ACTIONS(229), [anon_sym_NULL] = ACTIONS(123), [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(4573), - [aux_sym_pure_virtual_clause_token1] = ACTIONS(4575), - [anon_sym_R_DQUOTE] = ACTIONS(3843), - [anon_sym_LR_DQUOTE] = ACTIONS(3843), - [anon_sym_uR_DQUOTE] = ACTIONS(3843), - [anon_sym_UR_DQUOTE] = ACTIONS(3843), - [anon_sym_u8R_DQUOTE] = ACTIONS(3843), - [anon_sym_co_await] = ACTIONS(3845), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3633), + [anon_sym_R_DQUOTE] = ACTIONS(3635), + [anon_sym_LR_DQUOTE] = ACTIONS(3635), + [anon_sym_uR_DQUOTE] = ACTIONS(3635), + [anon_sym_UR_DQUOTE] = ACTIONS(3635), + [anon_sym_u8R_DQUOTE] = ACTIONS(3635), + [anon_sym_co_await] = ACTIONS(3637), + [anon_sym_new] = ACTIONS(3639), + [anon_sym_requires] = ACTIONS(3641), [sym_this] = ACTIONS(229), }, - [1011] = { - [sym_expression] = STATE(3244), - [sym__string] = STATE(3714), - [sym_conditional_expression] = STATE(3908), - [sym_assignment_expression] = STATE(3908), - [sym_pointer_expression] = STATE(3506), - [sym_unary_expression] = STATE(3908), - [sym_binary_expression] = STATE(3908), - [sym_update_expression] = STATE(3908), - [sym_cast_expression] = STATE(3908), - [sym_sizeof_expression] = STATE(3908), - [sym_alignof_expression] = STATE(3908), - [sym_offsetof_expression] = STATE(3908), - [sym_generic_expression] = STATE(3908), - [sym_subscript_expression] = STATE(3506), - [sym_call_expression] = STATE(3506), - [sym_gnu_asm_expression] = STATE(3908), - [sym_extension_expression] = STATE(3908), - [sym_field_expression] = STATE(3506), - [sym_compound_literal_expression] = STATE(3908), - [sym_parenthesized_expression] = STATE(3506), - [sym_char_literal] = STATE(3714), - [sym_concatenated_string] = STATE(3714), - [sym_string_literal] = STATE(2566), - [sym_null] = STATE(3908), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7868), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3908), - [sym_raw_string_literal] = STATE(2566), - [sym_co_await_expression] = STATE(3908), - [sym_new_expression] = STATE(3908), - [sym_delete_expression] = STATE(3908), - [sym_requires_clause] = STATE(3908), - [sym_requires_expression] = STATE(3908), - [sym_lambda_expression] = STATE(3908), - [sym_lambda_capture_specifier] = STATE(5415), - [sym__unary_left_fold] = STATE(8232), - [sym__unary_right_fold] = STATE(8236), - [sym__binary_fold] = STATE(8240), - [sym_fold_expression] = STATE(3908), - [sym_parameter_pack_expansion] = STATE(3908), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3506), - [sym_qualified_type_identifier] = STATE(7868), - [sym_user_defined_literal] = STATE(3506), - [sym_identifier] = ACTIONS(2605), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1870), - [anon_sym_TILDE] = ACTIONS(1870), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_PLUS] = ACTIONS(1872), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(2607), - [anon_sym_COLON_COLON] = ACTIONS(1880), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2611), - [anon_sym_not] = ACTIONS(1872), - [anon_sym_compl] = ACTIONS(1872), - [anon_sym_DASH_DASH] = ACTIONS(1892), - [anon_sym_PLUS_PLUS] = ACTIONS(1892), - [anon_sym_sizeof] = ACTIONS(1894), - [anon_sym___alignof__] = ACTIONS(1896), - [anon_sym___alignof] = ACTIONS(1896), - [anon_sym__alignof] = ACTIONS(1896), - [anon_sym_alignof] = ACTIONS(1896), - [anon_sym__Alignof] = ACTIONS(1896), - [anon_sym_offsetof] = ACTIONS(1898), - [anon_sym__Generic] = ACTIONS(1900), - [anon_sym_asm] = ACTIONS(1902), - [anon_sym___asm__] = ACTIONS(1902), - [anon_sym___asm] = ACTIONS(1902), - [sym_number_literal] = ACTIONS(1904), - [anon_sym_L_SQUOTE] = ACTIONS(1906), - [anon_sym_u_SQUOTE] = ACTIONS(1906), - [anon_sym_U_SQUOTE] = ACTIONS(1906), - [anon_sym_u8_SQUOTE] = ACTIONS(1906), - [anon_sym_SQUOTE] = ACTIONS(1906), - [anon_sym_L_DQUOTE] = ACTIONS(1908), - [anon_sym_u_DQUOTE] = ACTIONS(1908), - [anon_sym_U_DQUOTE] = ACTIONS(1908), - [anon_sym_u8_DQUOTE] = ACTIONS(1908), - [anon_sym_DQUOTE] = ACTIONS(1908), - [sym_true] = ACTIONS(1910), - [sym_false] = ACTIONS(1910), - [anon_sym_NULL] = ACTIONS(1912), - [anon_sym_nullptr] = ACTIONS(1912), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1916), - [anon_sym_R_DQUOTE] = ACTIONS(1918), - [anon_sym_LR_DQUOTE] = ACTIONS(1918), - [anon_sym_uR_DQUOTE] = ACTIONS(1918), - [anon_sym_UR_DQUOTE] = ACTIONS(1918), - [anon_sym_u8R_DQUOTE] = ACTIONS(1918), - [anon_sym_co_await] = ACTIONS(1920), - [anon_sym_new] = ACTIONS(1922), - [anon_sym_requires] = ACTIONS(1924), - [sym_this] = ACTIONS(1910), - }, - [1012] = { - [sym_expression] = STATE(4179), - [sym__string] = STATE(4380), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3253), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3253), - [sym_call_expression] = STATE(3253), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3253), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3253), - [sym_initializer_list] = STATE(6812), - [sym_char_literal] = STATE(4380), - [sym_concatenated_string] = STATE(4380), - [sym_string_literal] = STATE(3416), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3416), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3253), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3253), - [sym_identifier] = ACTIONS(3823), + [1073] = { + [sym_expression] = STATE(4333), + [sym__string] = STATE(4455), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3366), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3366), + [sym_call_expression] = STATE(3366), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3366), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3366), + [sym_initializer_list] = STATE(3925), + [sym_char_literal] = STATE(4455), + [sym_concatenated_string] = STATE(4455), + [sym_string_literal] = STATE(3406), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3406), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3366), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3366), + [sym_identifier] = ACTIONS(3833), [anon_sym_LPAREN2] = ACTIONS(4557), - [anon_sym_BANG] = ACTIONS(3827), - [anon_sym_TILDE] = ACTIONS(3827), - [anon_sym_DASH] = ACTIONS(3825), - [anon_sym_PLUS] = ACTIONS(3825), - [anon_sym_STAR] = ACTIONS(4382), - [anon_sym_AMP] = ACTIONS(4382), - [anon_sym___extension__] = ACTIONS(3829), - [anon_sym_COLON_COLON] = ACTIONS(3831), - [anon_sym_LBRACE] = ACTIONS(3615), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_default] = ACTIONS(4577), - [anon_sym_not] = ACTIONS(3825), - [anon_sym_compl] = ACTIONS(3825), - [anon_sym_DASH_DASH] = ACTIONS(4384), - [anon_sym_PLUS_PLUS] = ACTIONS(4384), - [anon_sym_sizeof] = ACTIONS(3833), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3835), - [anon_sym_L_SQUOTE] = ACTIONS(3837), - [anon_sym_u_SQUOTE] = ACTIONS(3837), - [anon_sym_U_SQUOTE] = ACTIONS(3837), - [anon_sym_u8_SQUOTE] = ACTIONS(3837), - [anon_sym_SQUOTE] = ACTIONS(3837), - [anon_sym_L_DQUOTE] = ACTIONS(3839), - [anon_sym_u_DQUOTE] = ACTIONS(3839), - [anon_sym_U_DQUOTE] = ACTIONS(3839), - [anon_sym_u8_DQUOTE] = ACTIONS(3839), - [anon_sym_DQUOTE] = ACTIONS(3839), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(4579), - [aux_sym_pure_virtual_clause_token1] = ACTIONS(4581), - [anon_sym_R_DQUOTE] = ACTIONS(3843), - [anon_sym_LR_DQUOTE] = ACTIONS(3843), - [anon_sym_uR_DQUOTE] = ACTIONS(3843), - [anon_sym_UR_DQUOTE] = ACTIONS(3843), - [anon_sym_u8R_DQUOTE] = ACTIONS(3843), - [anon_sym_co_await] = ACTIONS(3845), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), - }, - [1013] = { - [sym_expression] = STATE(3239), - [sym__string] = STATE(3714), - [sym_conditional_expression] = STATE(3908), - [sym_assignment_expression] = STATE(3908), - [sym_pointer_expression] = STATE(3506), - [sym_unary_expression] = STATE(3908), - [sym_binary_expression] = STATE(3908), - [sym_update_expression] = STATE(3908), - [sym_cast_expression] = STATE(3908), - [sym_sizeof_expression] = STATE(3908), - [sym_alignof_expression] = STATE(3908), - [sym_offsetof_expression] = STATE(3908), - [sym_generic_expression] = STATE(3908), - [sym_subscript_expression] = STATE(3506), - [sym_call_expression] = STATE(3506), - [sym_gnu_asm_expression] = STATE(3908), - [sym_extension_expression] = STATE(3908), - [sym_field_expression] = STATE(3506), - [sym_compound_literal_expression] = STATE(3908), - [sym_parenthesized_expression] = STATE(3506), - [sym_char_literal] = STATE(3714), - [sym_concatenated_string] = STATE(3714), - [sym_string_literal] = STATE(2566), - [sym_null] = STATE(3908), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7868), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3908), - [sym_raw_string_literal] = STATE(2566), - [sym_co_await_expression] = STATE(3908), - [sym_new_expression] = STATE(3908), - [sym_delete_expression] = STATE(3908), - [sym_requires_clause] = STATE(3908), - [sym_requires_expression] = STATE(3908), - [sym_lambda_expression] = STATE(3908), - [sym_lambda_capture_specifier] = STATE(5415), - [sym__unary_left_fold] = STATE(8383), - [sym__unary_right_fold] = STATE(8684), - [sym__binary_fold] = STATE(8748), - [sym_fold_expression] = STATE(3908), - [sym_parameter_pack_expansion] = STATE(3908), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3506), - [sym_qualified_type_identifier] = STATE(7868), - [sym_user_defined_literal] = STATE(3506), - [sym_identifier] = ACTIONS(2605), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1870), - [anon_sym_TILDE] = ACTIONS(1870), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_PLUS] = ACTIONS(1872), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(2607), - [anon_sym_COLON_COLON] = ACTIONS(1880), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2611), - [anon_sym_not] = ACTIONS(1872), - [anon_sym_compl] = ACTIONS(1872), - [anon_sym_DASH_DASH] = ACTIONS(1892), - [anon_sym_PLUS_PLUS] = ACTIONS(1892), - [anon_sym_sizeof] = ACTIONS(1894), - [anon_sym___alignof__] = ACTIONS(1896), - [anon_sym___alignof] = ACTIONS(1896), - [anon_sym__alignof] = ACTIONS(1896), - [anon_sym_alignof] = ACTIONS(1896), - [anon_sym__Alignof] = ACTIONS(1896), - [anon_sym_offsetof] = ACTIONS(1898), - [anon_sym__Generic] = ACTIONS(1900), - [anon_sym_asm] = ACTIONS(1902), - [anon_sym___asm__] = ACTIONS(1902), - [anon_sym___asm] = ACTIONS(1902), - [sym_number_literal] = ACTIONS(1904), - [anon_sym_L_SQUOTE] = ACTIONS(1906), - [anon_sym_u_SQUOTE] = ACTIONS(1906), - [anon_sym_U_SQUOTE] = ACTIONS(1906), - [anon_sym_u8_SQUOTE] = ACTIONS(1906), - [anon_sym_SQUOTE] = ACTIONS(1906), - [anon_sym_L_DQUOTE] = ACTIONS(1908), - [anon_sym_u_DQUOTE] = ACTIONS(1908), - [anon_sym_U_DQUOTE] = ACTIONS(1908), - [anon_sym_u8_DQUOTE] = ACTIONS(1908), - [anon_sym_DQUOTE] = ACTIONS(1908), - [sym_true] = ACTIONS(1910), - [sym_false] = ACTIONS(1910), - [anon_sym_NULL] = ACTIONS(1912), - [anon_sym_nullptr] = ACTIONS(1912), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1916), - [anon_sym_R_DQUOTE] = ACTIONS(1918), - [anon_sym_LR_DQUOTE] = ACTIONS(1918), - [anon_sym_uR_DQUOTE] = ACTIONS(1918), - [anon_sym_UR_DQUOTE] = ACTIONS(1918), - [anon_sym_u8R_DQUOTE] = ACTIONS(1918), - [anon_sym_co_await] = ACTIONS(1920), - [anon_sym_new] = ACTIONS(1922), - [anon_sym_requires] = ACTIONS(1924), - [sym_this] = ACTIONS(1910), - }, - [1014] = { - [sym_expression] = STATE(3290), - [sym__string] = STATE(3714), - [sym_conditional_expression] = STATE(3908), - [sym_assignment_expression] = STATE(3908), - [sym_pointer_expression] = STATE(3506), - [sym_unary_expression] = STATE(3908), - [sym_binary_expression] = STATE(3908), - [sym_update_expression] = STATE(3908), - [sym_cast_expression] = STATE(3908), - [sym_sizeof_expression] = STATE(3908), - [sym_alignof_expression] = STATE(3908), - [sym_offsetof_expression] = STATE(3908), - [sym_generic_expression] = STATE(3908), - [sym_subscript_expression] = STATE(3506), - [sym_call_expression] = STATE(3506), - [sym_gnu_asm_expression] = STATE(3908), - [sym_extension_expression] = STATE(3908), - [sym_field_expression] = STATE(3506), - [sym_compound_literal_expression] = STATE(3908), - [sym_parenthesized_expression] = STATE(3506), - [sym_char_literal] = STATE(3714), - [sym_concatenated_string] = STATE(3714), - [sym_string_literal] = STATE(2566), - [sym_null] = STATE(3908), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7868), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3908), - [sym_raw_string_literal] = STATE(2566), - [sym_co_await_expression] = STATE(3908), - [sym_new_expression] = STATE(3908), - [sym_delete_expression] = STATE(3908), - [sym_requires_clause] = STATE(3908), - [sym_requires_expression] = STATE(3908), - [sym_lambda_expression] = STATE(3908), - [sym_lambda_capture_specifier] = STATE(5415), - [sym__unary_left_fold] = STATE(8396), - [sym__unary_right_fold] = STATE(8410), - [sym__binary_fold] = STATE(8415), - [sym_fold_expression] = STATE(3908), - [sym_parameter_pack_expansion] = STATE(3908), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3506), - [sym_qualified_type_identifier] = STATE(7868), - [sym_user_defined_literal] = STATE(3506), - [sym_identifier] = ACTIONS(2605), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1870), - [anon_sym_TILDE] = ACTIONS(1870), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_PLUS] = ACTIONS(1872), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(2607), - [anon_sym_COLON_COLON] = ACTIONS(1880), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2611), - [anon_sym_not] = ACTIONS(1872), - [anon_sym_compl] = ACTIONS(1872), - [anon_sym_DASH_DASH] = ACTIONS(1892), - [anon_sym_PLUS_PLUS] = ACTIONS(1892), - [anon_sym_sizeof] = ACTIONS(1894), - [anon_sym___alignof__] = ACTIONS(1896), - [anon_sym___alignof] = ACTIONS(1896), - [anon_sym__alignof] = ACTIONS(1896), - [anon_sym_alignof] = ACTIONS(1896), - [anon_sym__Alignof] = ACTIONS(1896), - [anon_sym_offsetof] = ACTIONS(1898), - [anon_sym__Generic] = ACTIONS(1900), - [anon_sym_asm] = ACTIONS(1902), - [anon_sym___asm__] = ACTIONS(1902), - [anon_sym___asm] = ACTIONS(1902), - [sym_number_literal] = ACTIONS(1904), - [anon_sym_L_SQUOTE] = ACTIONS(1906), - [anon_sym_u_SQUOTE] = ACTIONS(1906), - [anon_sym_U_SQUOTE] = ACTIONS(1906), - [anon_sym_u8_SQUOTE] = ACTIONS(1906), - [anon_sym_SQUOTE] = ACTIONS(1906), - [anon_sym_L_DQUOTE] = ACTIONS(1908), - [anon_sym_u_DQUOTE] = ACTIONS(1908), - [anon_sym_U_DQUOTE] = ACTIONS(1908), - [anon_sym_u8_DQUOTE] = ACTIONS(1908), - [anon_sym_DQUOTE] = ACTIONS(1908), - [sym_true] = ACTIONS(1910), - [sym_false] = ACTIONS(1910), - [anon_sym_NULL] = ACTIONS(1912), - [anon_sym_nullptr] = ACTIONS(1912), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1916), - [anon_sym_R_DQUOTE] = ACTIONS(1918), - [anon_sym_LR_DQUOTE] = ACTIONS(1918), - [anon_sym_uR_DQUOTE] = ACTIONS(1918), - [anon_sym_UR_DQUOTE] = ACTIONS(1918), - [anon_sym_u8R_DQUOTE] = ACTIONS(1918), - [anon_sym_co_await] = ACTIONS(1920), - [anon_sym_new] = ACTIONS(1922), - [anon_sym_requires] = ACTIONS(1924), - [sym_this] = ACTIONS(1910), - }, - [1015] = { - [sym_expression] = STATE(3220), - [sym__string] = STATE(3714), - [sym_conditional_expression] = STATE(3908), - [sym_assignment_expression] = STATE(3908), - [sym_pointer_expression] = STATE(3506), - [sym_unary_expression] = STATE(3908), - [sym_binary_expression] = STATE(3908), - [sym_update_expression] = STATE(3908), - [sym_cast_expression] = STATE(3908), - [sym_sizeof_expression] = STATE(3908), - [sym_alignof_expression] = STATE(3908), - [sym_offsetof_expression] = STATE(3908), - [sym_generic_expression] = STATE(3908), - [sym_subscript_expression] = STATE(3506), - [sym_call_expression] = STATE(3506), - [sym_gnu_asm_expression] = STATE(3908), - [sym_extension_expression] = STATE(3908), - [sym_field_expression] = STATE(3506), - [sym_compound_literal_expression] = STATE(3908), - [sym_parenthesized_expression] = STATE(3506), - [sym_char_literal] = STATE(3714), - [sym_concatenated_string] = STATE(3714), - [sym_string_literal] = STATE(2566), - [sym_null] = STATE(3908), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7868), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3908), - [sym_raw_string_literal] = STATE(2566), - [sym_co_await_expression] = STATE(3908), - [sym_new_expression] = STATE(3908), - [sym_delete_expression] = STATE(3908), - [sym_requires_clause] = STATE(3908), - [sym_requires_expression] = STATE(3908), - [sym_lambda_expression] = STATE(3908), - [sym_lambda_capture_specifier] = STATE(5415), - [sym__unary_left_fold] = STATE(8699), - [sym__unary_right_fold] = STATE(8700), - [sym__binary_fold] = STATE(8703), - [sym_fold_expression] = STATE(3908), - [sym_parameter_pack_expansion] = STATE(3908), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3506), - [sym_qualified_type_identifier] = STATE(7868), - [sym_user_defined_literal] = STATE(3506), - [sym_identifier] = ACTIONS(2605), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1870), - [anon_sym_TILDE] = ACTIONS(1870), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_PLUS] = ACTIONS(1872), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(2607), - [anon_sym_COLON_COLON] = ACTIONS(1880), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2611), - [anon_sym_not] = ACTIONS(1872), - [anon_sym_compl] = ACTIONS(1872), - [anon_sym_DASH_DASH] = ACTIONS(1892), - [anon_sym_PLUS_PLUS] = ACTIONS(1892), - [anon_sym_sizeof] = ACTIONS(1894), - [anon_sym___alignof__] = ACTIONS(1896), - [anon_sym___alignof] = ACTIONS(1896), - [anon_sym__alignof] = ACTIONS(1896), - [anon_sym_alignof] = ACTIONS(1896), - [anon_sym__Alignof] = ACTIONS(1896), - [anon_sym_offsetof] = ACTIONS(1898), - [anon_sym__Generic] = ACTIONS(1900), - [anon_sym_asm] = ACTIONS(1902), - [anon_sym___asm__] = ACTIONS(1902), - [anon_sym___asm] = ACTIONS(1902), - [sym_number_literal] = ACTIONS(1904), - [anon_sym_L_SQUOTE] = ACTIONS(1906), - [anon_sym_u_SQUOTE] = ACTIONS(1906), - [anon_sym_U_SQUOTE] = ACTIONS(1906), - [anon_sym_u8_SQUOTE] = ACTIONS(1906), - [anon_sym_SQUOTE] = ACTIONS(1906), - [anon_sym_L_DQUOTE] = ACTIONS(1908), - [anon_sym_u_DQUOTE] = ACTIONS(1908), - [anon_sym_U_DQUOTE] = ACTIONS(1908), - [anon_sym_u8_DQUOTE] = ACTIONS(1908), - [anon_sym_DQUOTE] = ACTIONS(1908), - [sym_true] = ACTIONS(1910), - [sym_false] = ACTIONS(1910), - [anon_sym_NULL] = ACTIONS(1912), - [anon_sym_nullptr] = ACTIONS(1912), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1916), - [anon_sym_R_DQUOTE] = ACTIONS(1918), - [anon_sym_LR_DQUOTE] = ACTIONS(1918), - [anon_sym_uR_DQUOTE] = ACTIONS(1918), - [anon_sym_UR_DQUOTE] = ACTIONS(1918), - [anon_sym_u8R_DQUOTE] = ACTIONS(1918), - [anon_sym_co_await] = ACTIONS(1920), - [anon_sym_new] = ACTIONS(1922), - [anon_sym_requires] = ACTIONS(1924), - [sym_this] = ACTIONS(1910), - }, - [1016] = { - [sym_expression] = STATE(3236), - [sym__string] = STATE(3714), - [sym_conditional_expression] = STATE(3908), - [sym_assignment_expression] = STATE(3908), - [sym_pointer_expression] = STATE(3506), - [sym_unary_expression] = STATE(3908), - [sym_binary_expression] = STATE(3908), - [sym_update_expression] = STATE(3908), - [sym_cast_expression] = STATE(3908), - [sym_sizeof_expression] = STATE(3908), - [sym_alignof_expression] = STATE(3908), - [sym_offsetof_expression] = STATE(3908), - [sym_generic_expression] = STATE(3908), - [sym_subscript_expression] = STATE(3506), - [sym_call_expression] = STATE(3506), - [sym_gnu_asm_expression] = STATE(3908), - [sym_extension_expression] = STATE(3908), - [sym_field_expression] = STATE(3506), - [sym_compound_literal_expression] = STATE(3908), - [sym_parenthesized_expression] = STATE(3506), - [sym_char_literal] = STATE(3714), - [sym_concatenated_string] = STATE(3714), - [sym_string_literal] = STATE(2566), - [sym_null] = STATE(3908), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7868), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3908), - [sym_raw_string_literal] = STATE(2566), - [sym_co_await_expression] = STATE(3908), - [sym_new_expression] = STATE(3908), - [sym_delete_expression] = STATE(3908), - [sym_requires_clause] = STATE(3908), - [sym_requires_expression] = STATE(3908), - [sym_lambda_expression] = STATE(3908), - [sym_lambda_capture_specifier] = STATE(5415), - [sym__unary_left_fold] = STATE(8605), - [sym__unary_right_fold] = STATE(8610), - [sym__binary_fold] = STATE(8628), - [sym_fold_expression] = STATE(3908), - [sym_parameter_pack_expansion] = STATE(3908), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3506), - [sym_qualified_type_identifier] = STATE(7868), - [sym_user_defined_literal] = STATE(3506), - [sym_identifier] = ACTIONS(2605), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1870), - [anon_sym_TILDE] = ACTIONS(1870), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_PLUS] = ACTIONS(1872), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(2607), - [anon_sym_COLON_COLON] = ACTIONS(1880), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2611), - [anon_sym_not] = ACTIONS(1872), - [anon_sym_compl] = ACTIONS(1872), - [anon_sym_DASH_DASH] = ACTIONS(1892), - [anon_sym_PLUS_PLUS] = ACTIONS(1892), - [anon_sym_sizeof] = ACTIONS(1894), - [anon_sym___alignof__] = ACTIONS(1896), - [anon_sym___alignof] = ACTIONS(1896), - [anon_sym__alignof] = ACTIONS(1896), - [anon_sym_alignof] = ACTIONS(1896), - [anon_sym__Alignof] = ACTIONS(1896), - [anon_sym_offsetof] = ACTIONS(1898), - [anon_sym__Generic] = ACTIONS(1900), - [anon_sym_asm] = ACTIONS(1902), - [anon_sym___asm__] = ACTIONS(1902), - [anon_sym___asm] = ACTIONS(1902), - [sym_number_literal] = ACTIONS(1904), - [anon_sym_L_SQUOTE] = ACTIONS(1906), - [anon_sym_u_SQUOTE] = ACTIONS(1906), - [anon_sym_U_SQUOTE] = ACTIONS(1906), - [anon_sym_u8_SQUOTE] = ACTIONS(1906), - [anon_sym_SQUOTE] = ACTIONS(1906), - [anon_sym_L_DQUOTE] = ACTIONS(1908), - [anon_sym_u_DQUOTE] = ACTIONS(1908), - [anon_sym_U_DQUOTE] = ACTIONS(1908), - [anon_sym_u8_DQUOTE] = ACTIONS(1908), - [anon_sym_DQUOTE] = ACTIONS(1908), - [sym_true] = ACTIONS(1910), - [sym_false] = ACTIONS(1910), - [anon_sym_NULL] = ACTIONS(1912), - [anon_sym_nullptr] = ACTIONS(1912), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1916), - [anon_sym_R_DQUOTE] = ACTIONS(1918), - [anon_sym_LR_DQUOTE] = ACTIONS(1918), - [anon_sym_uR_DQUOTE] = ACTIONS(1918), - [anon_sym_UR_DQUOTE] = ACTIONS(1918), - [anon_sym_u8R_DQUOTE] = ACTIONS(1918), - [anon_sym_co_await] = ACTIONS(1920), - [anon_sym_new] = ACTIONS(1922), - [anon_sym_requires] = ACTIONS(1924), - [sym_this] = ACTIONS(1910), - }, - [1017] = { - [sym_compound_statement] = STATE(8449), - [sym_expression] = STATE(3257), - [sym__string] = STATE(2950), - [sym_comma_expression] = STATE(8449), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(2950), - [sym_concatenated_string] = STATE(2950), - [sym_string_literal] = STATE(2034), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(2034), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym__assignment_expression_lhs] = STATE(8569), - [sym_user_defined_literal] = STATE(2480), - [sym_identifier] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(4555), - [anon_sym_BANG] = ACTIONS(1994), - [anon_sym_TILDE] = ACTIONS(1994), - [anon_sym_DASH] = ACTIONS(1992), - [anon_sym_PLUS] = ACTIONS(1992), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(1996), - [anon_sym_COLON_COLON] = ACTIONS(1998), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(1956), - [anon_sym_not] = ACTIONS(1992), - [anon_sym_compl] = ACTIONS(1992), - [anon_sym_DASH_DASH] = ACTIONS(3343), - [anon_sym_PLUS_PLUS] = ACTIONS(3343), - [anon_sym_sizeof] = ACTIONS(2000), - [anon_sym___alignof__] = ACTIONS(1960), - [anon_sym___alignof] = ACTIONS(1960), - [anon_sym__alignof] = ACTIONS(1960), - [anon_sym_alignof] = ACTIONS(1960), - [anon_sym__Alignof] = ACTIONS(1960), - [anon_sym_offsetof] = ACTIONS(1962), - [anon_sym__Generic] = ACTIONS(1964), - [anon_sym_asm] = ACTIONS(1966), - [anon_sym___asm__] = ACTIONS(1966), - [anon_sym___asm] = ACTIONS(1966), - [sym_number_literal] = ACTIONS(2002), - [anon_sym_L_SQUOTE] = ACTIONS(2004), - [anon_sym_u_SQUOTE] = ACTIONS(2004), - [anon_sym_U_SQUOTE] = ACTIONS(2004), - [anon_sym_u8_SQUOTE] = ACTIONS(2004), - [anon_sym_SQUOTE] = ACTIONS(2004), - [anon_sym_L_DQUOTE] = ACTIONS(2006), - [anon_sym_u_DQUOTE] = ACTIONS(2006), - [anon_sym_U_DQUOTE] = ACTIONS(2006), - [anon_sym_u8_DQUOTE] = ACTIONS(2006), - [anon_sym_DQUOTE] = ACTIONS(2006), - [sym_true] = ACTIONS(1974), - [sym_false] = ACTIONS(1974), - [anon_sym_NULL] = ACTIONS(1976), - [anon_sym_nullptr] = ACTIONS(1976), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(2008), - [anon_sym_R_DQUOTE] = ACTIONS(2010), - [anon_sym_LR_DQUOTE] = ACTIONS(2010), - [anon_sym_uR_DQUOTE] = ACTIONS(2010), - [anon_sym_UR_DQUOTE] = ACTIONS(2010), - [anon_sym_u8R_DQUOTE] = ACTIONS(2010), - [anon_sym_co_await] = ACTIONS(2012), - [anon_sym_new] = ACTIONS(2014), - [anon_sym_requires] = ACTIONS(1988), - [sym_this] = ACTIONS(1974), - }, - [1018] = { - [sym_expression] = STATE(3215), - [sym__string] = STATE(3714), - [sym_conditional_expression] = STATE(3908), - [sym_assignment_expression] = STATE(3908), - [sym_pointer_expression] = STATE(3506), - [sym_unary_expression] = STATE(3908), - [sym_binary_expression] = STATE(3908), - [sym_update_expression] = STATE(3908), - [sym_cast_expression] = STATE(3908), - [sym_sizeof_expression] = STATE(3908), - [sym_alignof_expression] = STATE(3908), - [sym_offsetof_expression] = STATE(3908), - [sym_generic_expression] = STATE(3908), - [sym_subscript_expression] = STATE(3506), - [sym_call_expression] = STATE(3506), - [sym_gnu_asm_expression] = STATE(3908), - [sym_extension_expression] = STATE(3908), - [sym_field_expression] = STATE(3506), - [sym_compound_literal_expression] = STATE(3908), - [sym_parenthesized_expression] = STATE(3506), - [sym_char_literal] = STATE(3714), - [sym_concatenated_string] = STATE(3714), - [sym_string_literal] = STATE(2566), - [sym_null] = STATE(3908), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7868), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3908), - [sym_raw_string_literal] = STATE(2566), - [sym_co_await_expression] = STATE(3908), - [sym_new_expression] = STATE(3908), - [sym_delete_expression] = STATE(3908), - [sym_requires_clause] = STATE(3908), - [sym_requires_expression] = STATE(3908), - [sym_lambda_expression] = STATE(3908), - [sym_lambda_capture_specifier] = STATE(5415), - [sym__unary_left_fold] = STATE(8223), - [sym__unary_right_fold] = STATE(8226), - [sym__binary_fold] = STATE(8228), - [sym_fold_expression] = STATE(3908), - [sym_parameter_pack_expansion] = STATE(3908), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3506), - [sym_qualified_type_identifier] = STATE(7868), - [sym_user_defined_literal] = STATE(3506), - [sym_identifier] = ACTIONS(2605), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1870), - [anon_sym_TILDE] = ACTIONS(1870), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_PLUS] = ACTIONS(1872), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(2607), - [anon_sym_COLON_COLON] = ACTIONS(1880), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2611), - [anon_sym_not] = ACTIONS(1872), - [anon_sym_compl] = ACTIONS(1872), - [anon_sym_DASH_DASH] = ACTIONS(1892), - [anon_sym_PLUS_PLUS] = ACTIONS(1892), - [anon_sym_sizeof] = ACTIONS(1894), - [anon_sym___alignof__] = ACTIONS(1896), - [anon_sym___alignof] = ACTIONS(1896), - [anon_sym__alignof] = ACTIONS(1896), - [anon_sym_alignof] = ACTIONS(1896), - [anon_sym__Alignof] = ACTIONS(1896), - [anon_sym_offsetof] = ACTIONS(1898), - [anon_sym__Generic] = ACTIONS(1900), - [anon_sym_asm] = ACTIONS(1902), - [anon_sym___asm__] = ACTIONS(1902), - [anon_sym___asm] = ACTIONS(1902), - [sym_number_literal] = ACTIONS(1904), - [anon_sym_L_SQUOTE] = ACTIONS(1906), - [anon_sym_u_SQUOTE] = ACTIONS(1906), - [anon_sym_U_SQUOTE] = ACTIONS(1906), - [anon_sym_u8_SQUOTE] = ACTIONS(1906), - [anon_sym_SQUOTE] = ACTIONS(1906), - [anon_sym_L_DQUOTE] = ACTIONS(1908), - [anon_sym_u_DQUOTE] = ACTIONS(1908), - [anon_sym_U_DQUOTE] = ACTIONS(1908), - [anon_sym_u8_DQUOTE] = ACTIONS(1908), - [anon_sym_DQUOTE] = ACTIONS(1908), - [sym_true] = ACTIONS(1910), - [sym_false] = ACTIONS(1910), - [anon_sym_NULL] = ACTIONS(1912), - [anon_sym_nullptr] = ACTIONS(1912), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1916), - [anon_sym_R_DQUOTE] = ACTIONS(1918), - [anon_sym_LR_DQUOTE] = ACTIONS(1918), - [anon_sym_uR_DQUOTE] = ACTIONS(1918), - [anon_sym_UR_DQUOTE] = ACTIONS(1918), - [anon_sym_u8R_DQUOTE] = ACTIONS(1918), - [anon_sym_co_await] = ACTIONS(1920), - [anon_sym_new] = ACTIONS(1922), - [anon_sym_requires] = ACTIONS(1924), - [sym_this] = ACTIONS(1910), - }, - [1019] = { - [sym_compound_statement] = STATE(7549), - [sym_expression] = STATE(4327), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_initializer_list] = STATE(7549), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_RPAREN] = ACTIONS(4583), - [anon_sym_LPAREN2] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(1932), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), - }, - [1020] = { - [sym_compound_statement] = STATE(7153), - [sym_expression] = STATE(4348), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_initializer_list] = STATE(7153), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_RPAREN] = ACTIONS(4585), - [anon_sym_LPAREN2] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(1932), + [anon_sym_BANG] = ACTIONS(3837), + [anon_sym_TILDE] = ACTIONS(3837), + [anon_sym_DASH] = ACTIONS(3835), + [anon_sym_PLUS] = ACTIONS(3835), + [anon_sym_STAR] = ACTIONS(4336), + [anon_sym_AMP] = ACTIONS(4336), + [anon_sym___extension__] = ACTIONS(3839), + [anon_sym_COLON_COLON] = ACTIONS(3841), + [anon_sym_LBRACE] = ACTIONS(3623), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3835), + [anon_sym_compl] = ACTIONS(3835), + [anon_sym_DASH_DASH] = ACTIONS(4338), + [anon_sym_PLUS_PLUS] = ACTIONS(4338), + [anon_sym_sizeof] = ACTIONS(3843), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -181275,100 +187673,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(113), [anon_sym___asm__] = ACTIONS(113), [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), + [sym_number_literal] = ACTIONS(3845), + [anon_sym_L_SQUOTE] = ACTIONS(3847), + [anon_sym_u_SQUOTE] = ACTIONS(3847), + [anon_sym_U_SQUOTE] = ACTIONS(3847), + [anon_sym_u8_SQUOTE] = ACTIONS(3847), + [anon_sym_SQUOTE] = ACTIONS(3847), + [anon_sym_L_DQUOTE] = ACTIONS(3849), + [anon_sym_u_DQUOTE] = ACTIONS(3849), + [anon_sym_U_DQUOTE] = ACTIONS(3849), + [anon_sym_u8_DQUOTE] = ACTIONS(3849), + [anon_sym_DQUOTE] = ACTIONS(3849), [sym_true] = ACTIONS(229), [sym_false] = ACTIONS(229), [anon_sym_NULL] = ACTIONS(123), [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3851), + [anon_sym_R_DQUOTE] = ACTIONS(3853), + [anon_sym_LR_DQUOTE] = ACTIONS(3853), + [anon_sym_uR_DQUOTE] = ACTIONS(3853), + [anon_sym_UR_DQUOTE] = ACTIONS(3853), + [anon_sym_u8R_DQUOTE] = ACTIONS(3853), + [anon_sym_co_await] = ACTIONS(3855), [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1021] = { - [sym_compound_statement] = STATE(7482), - [sym_expression] = STATE(4338), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_initializer_list] = STATE(7482), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_RPAREN] = ACTIONS(4587), - [anon_sym_LPAREN2] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(1932), + [1074] = { + [sym_expression] = STATE(4481), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8939), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3597), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3597), + [sym_call_expression] = STATE(3597), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3597), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3597), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3597), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3597), + [sym_identifier] = ACTIONS(3857), + [anon_sym_LPAREN2] = ACTIONS(4648), + [anon_sym_BANG] = ACTIONS(3861), + [anon_sym_TILDE] = ACTIONS(3861), + [anon_sym_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3859), + [anon_sym_STAR] = ACTIONS(4366), + [anon_sym_AMP] = ACTIONS(4366), + [anon_sym___extension__] = ACTIONS(3863), + [anon_sym_COLON] = ACTIONS(4656), + [anon_sym_COLON_COLON] = ACTIONS(3865), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3859), + [anon_sym_compl] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(4368), + [anon_sym_PLUS_PLUS] = ACTIONS(4368), + [anon_sym_sizeof] = ACTIONS(3867), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -181396,83 +187792,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(145), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3869), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), + [anon_sym_co_await] = ACTIONS(3871), + [anon_sym_new] = ACTIONS(3873), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1022] = { - [sym_expression] = STATE(4582), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8533), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_initializer_list] = STATE(8533), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(4589), - [anon_sym___extension__] = ACTIONS(2024), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3615), + [1075] = { + [sym_expression] = STATE(4632), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8527), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3597), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3597), + [sym_call_expression] = STATE(3597), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3597), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3597), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3597), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3597), + [sym_identifier] = ACTIONS(3857), + [anon_sym_LPAREN2] = ACTIONS(4648), + [anon_sym_BANG] = ACTIONS(3861), + [anon_sym_TILDE] = ACTIONS(3861), + [anon_sym_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3859), + [anon_sym_STAR] = ACTIONS(4366), + [anon_sym_AMP] = ACTIONS(4366), + [anon_sym___extension__] = ACTIONS(3863), + [anon_sym_COLON] = ACTIONS(4658), + [anon_sym_COLON_COLON] = ACTIONS(3865), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3859), + [anon_sym_compl] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(4368), + [anon_sym_PLUS_PLUS] = ACTIONS(4368), + [anon_sym_sizeof] = ACTIONS(3867), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -181500,83 +187894,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(145), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3869), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), + [anon_sym_co_await] = ACTIONS(3871), + [anon_sym_new] = ACTIONS(3873), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1023] = { - [sym_compound_statement] = STATE(7386), - [sym_expression] = STATE(4364), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_initializer_list] = STATE(7386), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_RPAREN] = ACTIONS(4591), - [anon_sym_LPAREN2] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(1932), + [1076] = { + [sym_expression] = STATE(4488), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8920), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3597), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3597), + [sym_call_expression] = STATE(3597), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3597), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3597), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3597), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3597), + [sym_identifier] = ACTIONS(3857), + [anon_sym_LPAREN2] = ACTIONS(4648), + [anon_sym_BANG] = ACTIONS(3861), + [anon_sym_TILDE] = ACTIONS(3861), + [anon_sym_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3859), + [anon_sym_STAR] = ACTIONS(4366), + [anon_sym_AMP] = ACTIONS(4366), + [anon_sym___extension__] = ACTIONS(3863), + [anon_sym_COLON] = ACTIONS(4660), + [anon_sym_COLON_COLON] = ACTIONS(3865), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3859), + [anon_sym_compl] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(4368), + [anon_sym_PLUS_PLUS] = ACTIONS(4368), + [anon_sym_sizeof] = ACTIONS(3867), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -181604,83 +187996,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(145), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3869), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), + [anon_sym_co_await] = ACTIONS(3871), + [anon_sym_new] = ACTIONS(3873), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1024] = { - [sym_expression] = STATE(4561), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8490), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_initializer_list] = STATE(8490), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(4593), - [anon_sym___extension__] = ACTIONS(2024), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3615), + [1077] = { + [sym_expression] = STATE(3759), + [sym__string] = STATE(4269), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(2921), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(2921), + [sym_call_expression] = STATE(2921), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(2921), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(2921), + [sym_initializer_list] = STATE(3899), + [sym_char_literal] = STATE(4269), + [sym_concatenated_string] = STATE(4269), + [sym_string_literal] = STATE(3102), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3102), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2921), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(2921), + [sym_identifier] = ACTIONS(4356), + [anon_sym_LPAREN2] = ACTIONS(4654), + [anon_sym_BANG] = ACTIONS(3617), + [anon_sym_TILDE] = ACTIONS(3617), + [anon_sym_DASH] = ACTIONS(3615), + [anon_sym_PLUS] = ACTIONS(3615), + [anon_sym_STAR] = ACTIONS(4346), + [anon_sym_AMP] = ACTIONS(4346), + [anon_sym___extension__] = ACTIONS(3619), + [anon_sym_COLON_COLON] = ACTIONS(3621), + [anon_sym_LBRACE] = ACTIONS(3623), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3615), + [anon_sym_compl] = ACTIONS(3615), + [anon_sym_DASH_DASH] = ACTIONS(4358), + [anon_sym_PLUS_PLUS] = ACTIONS(4358), + [anon_sym_sizeof] = ACTIONS(3625), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -181691,95 +188081,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(113), [anon_sym___asm__] = ACTIONS(113), [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), + [sym_number_literal] = ACTIONS(3627), + [anon_sym_L_SQUOTE] = ACTIONS(3629), + [anon_sym_u_SQUOTE] = ACTIONS(3629), + [anon_sym_U_SQUOTE] = ACTIONS(3629), + [anon_sym_u8_SQUOTE] = ACTIONS(3629), + [anon_sym_SQUOTE] = ACTIONS(3629), + [anon_sym_L_DQUOTE] = ACTIONS(3631), + [anon_sym_u_DQUOTE] = ACTIONS(3631), + [anon_sym_U_DQUOTE] = ACTIONS(3631), + [anon_sym_u8_DQUOTE] = ACTIONS(3631), + [anon_sym_DQUOTE] = ACTIONS(3631), [sym_true] = ACTIONS(229), [sym_false] = ACTIONS(229), [anon_sym_NULL] = ACTIONS(123), [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3633), + [anon_sym_R_DQUOTE] = ACTIONS(3635), + [anon_sym_LR_DQUOTE] = ACTIONS(3635), + [anon_sym_uR_DQUOTE] = ACTIONS(3635), + [anon_sym_UR_DQUOTE] = ACTIONS(3635), + [anon_sym_u8R_DQUOTE] = ACTIONS(3635), + [anon_sym_co_await] = ACTIONS(3637), + [anon_sym_new] = ACTIONS(3639), + [anon_sym_requires] = ACTIONS(3641), [sym_this] = ACTIONS(229), }, - [1025] = { - [sym_expression] = STATE(4562), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(7937), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_initializer_list] = STATE(7937), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1078] = { + [sym_expression] = STATE(4472), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_initializer_list] = STATE(7939), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(4595), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3615), + [anon_sym_LBRACE] = ACTIONS(3623), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -181812,7 +188200,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -181824,170 +188212,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1026] = { - [sym_expression] = STATE(3272), - [sym__string] = STATE(3714), - [sym_conditional_expression] = STATE(3908), - [sym_assignment_expression] = STATE(3908), - [sym_pointer_expression] = STATE(3506), - [sym_unary_expression] = STATE(3908), - [sym_binary_expression] = STATE(3908), - [sym_update_expression] = STATE(3908), - [sym_cast_expression] = STATE(3908), - [sym_sizeof_expression] = STATE(3908), - [sym_alignof_expression] = STATE(3908), - [sym_offsetof_expression] = STATE(3908), - [sym_generic_expression] = STATE(3908), - [sym_subscript_expression] = STATE(3506), - [sym_call_expression] = STATE(3506), - [sym_gnu_asm_expression] = STATE(3908), - [sym_extension_expression] = STATE(3908), - [sym_field_expression] = STATE(3506), - [sym_compound_literal_expression] = STATE(3908), - [sym_parenthesized_expression] = STATE(3506), - [sym_char_literal] = STATE(3714), - [sym_concatenated_string] = STATE(3714), - [sym_string_literal] = STATE(2566), - [sym_null] = STATE(3908), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7868), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3908), - [sym_raw_string_literal] = STATE(2566), - [sym_co_await_expression] = STATE(3908), - [sym_new_expression] = STATE(3908), - [sym_delete_expression] = STATE(3908), - [sym_requires_clause] = STATE(3908), - [sym_requires_expression] = STATE(3908), - [sym_lambda_expression] = STATE(3908), - [sym_lambda_capture_specifier] = STATE(5415), - [sym__unary_left_fold] = STATE(8119), - [sym__unary_right_fold] = STATE(8280), - [sym__binary_fold] = STATE(7936), - [sym_fold_expression] = STATE(3908), - [sym_parameter_pack_expansion] = STATE(3908), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3506), - [sym_qualified_type_identifier] = STATE(7868), - [sym_user_defined_literal] = STATE(3506), - [sym_identifier] = ACTIONS(2605), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1870), - [anon_sym_TILDE] = ACTIONS(1870), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_PLUS] = ACTIONS(1872), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(2607), - [anon_sym_COLON_COLON] = ACTIONS(1880), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2611), - [anon_sym_not] = ACTIONS(1872), - [anon_sym_compl] = ACTIONS(1872), - [anon_sym_DASH_DASH] = ACTIONS(1892), - [anon_sym_PLUS_PLUS] = ACTIONS(1892), - [anon_sym_sizeof] = ACTIONS(1894), - [anon_sym___alignof__] = ACTIONS(1896), - [anon_sym___alignof] = ACTIONS(1896), - [anon_sym__alignof] = ACTIONS(1896), - [anon_sym_alignof] = ACTIONS(1896), - [anon_sym__Alignof] = ACTIONS(1896), - [anon_sym_offsetof] = ACTIONS(1898), - [anon_sym__Generic] = ACTIONS(1900), - [anon_sym_asm] = ACTIONS(1902), - [anon_sym___asm__] = ACTIONS(1902), - [anon_sym___asm] = ACTIONS(1902), - [sym_number_literal] = ACTIONS(1904), - [anon_sym_L_SQUOTE] = ACTIONS(1906), - [anon_sym_u_SQUOTE] = ACTIONS(1906), - [anon_sym_U_SQUOTE] = ACTIONS(1906), - [anon_sym_u8_SQUOTE] = ACTIONS(1906), - [anon_sym_SQUOTE] = ACTIONS(1906), - [anon_sym_L_DQUOTE] = ACTIONS(1908), - [anon_sym_u_DQUOTE] = ACTIONS(1908), - [anon_sym_U_DQUOTE] = ACTIONS(1908), - [anon_sym_u8_DQUOTE] = ACTIONS(1908), - [anon_sym_DQUOTE] = ACTIONS(1908), - [sym_true] = ACTIONS(1910), - [sym_false] = ACTIONS(1910), - [anon_sym_NULL] = ACTIONS(1912), - [anon_sym_nullptr] = ACTIONS(1912), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1916), - [anon_sym_R_DQUOTE] = ACTIONS(1918), - [anon_sym_LR_DQUOTE] = ACTIONS(1918), - [anon_sym_uR_DQUOTE] = ACTIONS(1918), - [anon_sym_UR_DQUOTE] = ACTIONS(1918), - [anon_sym_u8R_DQUOTE] = ACTIONS(1918), - [anon_sym_co_await] = ACTIONS(1920), - [anon_sym_new] = ACTIONS(1922), - [anon_sym_requires] = ACTIONS(1924), - [sym_this] = ACTIONS(1910), - }, - [1027] = { - [sym_compound_statement] = STATE(7298), - [sym_expression] = STATE(4335), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_initializer_list] = STATE(7298), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_RPAREN] = ACTIONS(4597), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1079] = { + [sym_expression] = STATE(4326), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_initializer_list] = STATE(3925), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(1932), + [anon_sym_LBRACE] = ACTIONS(3623), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -182020,7 +188302,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -182032,71 +188314,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1028] = { - [sym_compound_statement] = STATE(7197), - [sym_expression] = STATE(4395), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_initializer_list] = STATE(7197), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_RPAREN] = ACTIONS(4599), - [anon_sym_LPAREN2] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(1932), + [1080] = { + [sym_expression] = STATE(4597), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8407), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3597), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3597), + [sym_call_expression] = STATE(3597), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3597), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3597), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3597), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3597), + [sym_identifier] = ACTIONS(3857), + [anon_sym_LPAREN2] = ACTIONS(4648), + [anon_sym_BANG] = ACTIONS(3861), + [anon_sym_TILDE] = ACTIONS(3861), + [anon_sym_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3859), + [anon_sym_STAR] = ACTIONS(4366), + [anon_sym_AMP] = ACTIONS(4366), + [anon_sym___extension__] = ACTIONS(3863), + [anon_sym_COLON] = ACTIONS(4662), + [anon_sym_COLON_COLON] = ACTIONS(3865), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3859), + [anon_sym_compl] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(4368), + [anon_sym_PLUS_PLUS] = ACTIONS(4368), + [anon_sym_sizeof] = ACTIONS(3867), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -182124,77 +188404,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(145), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3869), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), + [anon_sym_co_await] = ACTIONS(3871), + [anon_sym_new] = ACTIONS(3873), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1029] = { - [sym_expression] = STATE(4735), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_initializer_list] = STATE(8155), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4601), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1081] = { + [sym_expression] = STATE(4534), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8514), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_RPAREN] = ACTIONS(4664), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3615), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -182227,7 +188506,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -182239,70 +188518,273 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1030] = { - [sym_expression] = STATE(4735), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_initializer_list] = STATE(8155), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4604), - [anon_sym_LPAREN2] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3615), + [1082] = { + [sym_expression] = STATE(3653), + [sym__string] = STATE(3775), + [sym_conditional_expression] = STATE(3886), + [sym_assignment_expression] = STATE(3886), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(3886), + [sym_binary_expression] = STATE(3886), + [sym_update_expression] = STATE(3886), + [sym_cast_expression] = STATE(3886), + [sym_sizeof_expression] = STATE(3886), + [sym_alignof_expression] = STATE(3886), + [sym_offsetof_expression] = STATE(3886), + [sym_generic_expression] = STATE(3886), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(3886), + [sym_extension_expression] = STATE(3886), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(3886), + [sym_parenthesized_expression] = STATE(3522), + [sym_initializer_list] = STATE(3877), + [sym_char_literal] = STATE(3775), + [sym_concatenated_string] = STATE(3775), + [sym_string_literal] = STATE(2596), + [sym_null] = STATE(3886), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7756), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3886), + [sym_raw_string_literal] = STATE(2596), + [sym_co_await_expression] = STATE(3886), + [sym_new_expression] = STATE(3886), + [sym_delete_expression] = STATE(3886), + [sym_requires_clause] = STATE(3886), + [sym_requires_expression] = STATE(3886), + [sym_lambda_expression] = STATE(3886), + [sym_lambda_capture_specifier] = STATE(5492), + [sym_fold_expression] = STATE(3886), + [sym_parameter_pack_expansion] = STATE(3886), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(7756), + [sym_user_defined_literal] = STATE(3522), + [sym_identifier] = ACTIONS(2619), + [anon_sym_LPAREN2] = ACTIONS(1888), + [anon_sym_BANG] = ACTIONS(1890), + [anon_sym_TILDE] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1892), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(2621), + [anon_sym_COLON_COLON] = ACTIONS(1898), + [anon_sym_LBRACE] = ACTIONS(2623), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), + [sym_primitive_type] = ACTIONS(2625), + [anon_sym_not] = ACTIONS(1892), + [anon_sym_compl] = ACTIONS(1892), + [anon_sym_DASH_DASH] = ACTIONS(1902), + [anon_sym_PLUS_PLUS] = ACTIONS(1902), + [anon_sym_sizeof] = ACTIONS(1904), + [anon_sym___alignof__] = ACTIONS(1906), + [anon_sym___alignof] = ACTIONS(1906), + [anon_sym__alignof] = ACTIONS(1906), + [anon_sym_alignof] = ACTIONS(1906), + [anon_sym__Alignof] = ACTIONS(1906), + [anon_sym_offsetof] = ACTIONS(1908), + [anon_sym__Generic] = ACTIONS(1910), + [anon_sym_asm] = ACTIONS(1912), + [anon_sym___asm__] = ACTIONS(1912), + [anon_sym___asm] = ACTIONS(1912), + [sym_number_literal] = ACTIONS(1914), + [anon_sym_L_SQUOTE] = ACTIONS(1916), + [anon_sym_u_SQUOTE] = ACTIONS(1916), + [anon_sym_U_SQUOTE] = ACTIONS(1916), + [anon_sym_u8_SQUOTE] = ACTIONS(1916), + [anon_sym_SQUOTE] = ACTIONS(1916), + [anon_sym_L_DQUOTE] = ACTIONS(1918), + [anon_sym_u_DQUOTE] = ACTIONS(1918), + [anon_sym_U_DQUOTE] = ACTIONS(1918), + [anon_sym_u8_DQUOTE] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1918), + [sym_true] = ACTIONS(1920), + [sym_false] = ACTIONS(1920), + [anon_sym_NULL] = ACTIONS(1922), + [anon_sym_nullptr] = ACTIONS(1922), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1924), + [anon_sym_R_DQUOTE] = ACTIONS(1926), + [anon_sym_LR_DQUOTE] = ACTIONS(1926), + [anon_sym_uR_DQUOTE] = ACTIONS(1926), + [anon_sym_UR_DQUOTE] = ACTIONS(1926), + [anon_sym_u8R_DQUOTE] = ACTIONS(1926), + [anon_sym_co_await] = ACTIONS(1928), + [anon_sym_new] = ACTIONS(1930), + [anon_sym_requires] = ACTIONS(1932), + [sym_this] = ACTIONS(1920), + }, + [1083] = { + [sym_expression] = STATE(3251), + [sym__string] = STATE(3393), + [sym_conditional_expression] = STATE(3401), + [sym_assignment_expression] = STATE(3401), + [sym_pointer_expression] = STATE(3405), + [sym_unary_expression] = STATE(3401), + [sym_binary_expression] = STATE(3401), + [sym_update_expression] = STATE(3401), + [sym_cast_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3401), + [sym_alignof_expression] = STATE(3401), + [sym_offsetof_expression] = STATE(3401), + [sym_generic_expression] = STATE(3401), + [sym_subscript_expression] = STATE(3405), + [sym_call_expression] = STATE(3405), + [sym_gnu_asm_expression] = STATE(3401), + [sym_extension_expression] = STATE(3401), + [sym_field_expression] = STATE(3405), + [sym_compound_literal_expression] = STATE(3401), + [sym_parenthesized_expression] = STATE(3405), + [sym_initializer_list] = STATE(3529), + [sym_char_literal] = STATE(3393), + [sym_concatenated_string] = STATE(3393), + [sym_string_literal] = STATE(2380), + [sym_null] = STATE(3401), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7745), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3401), + [sym_raw_string_literal] = STATE(2380), + [sym_co_await_expression] = STATE(3401), + [sym_new_expression] = STATE(3401), + [sym_delete_expression] = STATE(3401), + [sym_requires_clause] = STATE(3401), + [sym_requires_expression] = STATE(3401), + [sym_lambda_expression] = STATE(3401), + [sym_lambda_capture_specifier] = STATE(5494), + [sym_fold_expression] = STATE(3401), + [sym_parameter_pack_expansion] = STATE(3401), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3405), + [sym_qualified_type_identifier] = STATE(7745), + [sym_user_defined_literal] = STATE(3405), + [sym_identifier] = ACTIONS(2453), + [anon_sym_LPAREN2] = ACTIONS(2018), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(2455), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_LBRACE] = ACTIONS(2457), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2459), + [anon_sym_not] = ACTIONS(1796), + [anon_sym_compl] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_sizeof] = ACTIONS(1824), + [anon_sym___alignof__] = ACTIONS(1826), + [anon_sym___alignof] = ACTIONS(1826), + [anon_sym__alignof] = ACTIONS(1826), + [anon_sym_alignof] = ACTIONS(1826), + [anon_sym__Alignof] = ACTIONS(1826), + [anon_sym_offsetof] = ACTIONS(1828), + [anon_sym__Generic] = ACTIONS(1830), + [anon_sym_asm] = ACTIONS(1832), + [anon_sym___asm__] = ACTIONS(1832), + [anon_sym___asm] = ACTIONS(1832), + [sym_number_literal] = ACTIONS(1834), + [anon_sym_L_SQUOTE] = ACTIONS(1836), + [anon_sym_u_SQUOTE] = ACTIONS(1836), + [anon_sym_U_SQUOTE] = ACTIONS(1836), + [anon_sym_u8_SQUOTE] = ACTIONS(1836), + [anon_sym_SQUOTE] = ACTIONS(1836), + [anon_sym_L_DQUOTE] = ACTIONS(1838), + [anon_sym_u_DQUOTE] = ACTIONS(1838), + [anon_sym_U_DQUOTE] = ACTIONS(1838), + [anon_sym_u8_DQUOTE] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym_true] = ACTIONS(1840), + [sym_false] = ACTIONS(1840), + [anon_sym_NULL] = ACTIONS(1842), + [anon_sym_nullptr] = ACTIONS(1842), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1852), + [anon_sym_R_DQUOTE] = ACTIONS(1854), + [anon_sym_LR_DQUOTE] = ACTIONS(1854), + [anon_sym_uR_DQUOTE] = ACTIONS(1854), + [anon_sym_UR_DQUOTE] = ACTIONS(1854), + [anon_sym_u8R_DQUOTE] = ACTIONS(1854), + [anon_sym_co_await] = ACTIONS(1856), + [anon_sym_new] = ACTIONS(1858), + [anon_sym_requires] = ACTIONS(1860), + [sym_this] = ACTIONS(1840), + }, + [1084] = { + [sym_expression] = STATE(3759), + [sym__string] = STATE(4455), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3366), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3366), + [sym_call_expression] = STATE(3366), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3366), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3366), + [sym_initializer_list] = STATE(3899), + [sym_char_literal] = STATE(4455), + [sym_concatenated_string] = STATE(4455), + [sym_string_literal] = STATE(3406), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3406), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3366), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3366), + [sym_identifier] = ACTIONS(3833), + [anon_sym_LPAREN2] = ACTIONS(4557), + [anon_sym_BANG] = ACTIONS(3837), + [anon_sym_TILDE] = ACTIONS(3837), + [anon_sym_DASH] = ACTIONS(3835), + [anon_sym_PLUS] = ACTIONS(3835), + [anon_sym_STAR] = ACTIONS(4336), + [anon_sym_AMP] = ACTIONS(4336), + [anon_sym___extension__] = ACTIONS(3839), + [anon_sym_COLON_COLON] = ACTIONS(3841), + [anon_sym_LBRACE] = ACTIONS(3623), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3835), + [anon_sym_compl] = ACTIONS(3835), + [anon_sym_DASH_DASH] = ACTIONS(4338), + [anon_sym_PLUS_PLUS] = ACTIONS(4338), + [anon_sym_sizeof] = ACTIONS(3843), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -182313,99 +188795,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(113), [anon_sym___asm__] = ACTIONS(113), [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), + [sym_number_literal] = ACTIONS(3845), + [anon_sym_L_SQUOTE] = ACTIONS(3847), + [anon_sym_u_SQUOTE] = ACTIONS(3847), + [anon_sym_U_SQUOTE] = ACTIONS(3847), + [anon_sym_u8_SQUOTE] = ACTIONS(3847), + [anon_sym_SQUOTE] = ACTIONS(3847), + [anon_sym_L_DQUOTE] = ACTIONS(3849), + [anon_sym_u_DQUOTE] = ACTIONS(3849), + [anon_sym_U_DQUOTE] = ACTIONS(3849), + [anon_sym_u8_DQUOTE] = ACTIONS(3849), + [anon_sym_DQUOTE] = ACTIONS(3849), [sym_true] = ACTIONS(229), [sym_false] = ACTIONS(229), [anon_sym_NULL] = ACTIONS(123), [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3851), + [anon_sym_R_DQUOTE] = ACTIONS(3853), + [anon_sym_LR_DQUOTE] = ACTIONS(3853), + [anon_sym_uR_DQUOTE] = ACTIONS(3853), + [anon_sym_UR_DQUOTE] = ACTIONS(3853), + [anon_sym_u8R_DQUOTE] = ACTIONS(3853), + [anon_sym_co_await] = ACTIONS(3855), [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1031] = { - [sym_expression] = STATE(4407), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3678), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3678), - [sym_call_expression] = STATE(3678), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3678), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3678), - [sym_initializer_list] = STATE(7161), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3678), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3678), - [sym_identifier] = ACTIONS(3849), - [anon_sym_LPAREN2] = ACTIONS(3893), - [anon_sym_BANG] = ACTIONS(3853), - [anon_sym_TILDE] = ACTIONS(3853), - [anon_sym_DASH] = ACTIONS(3851), - [anon_sym_PLUS] = ACTIONS(3851), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(3855), - [anon_sym_COLON_COLON] = ACTIONS(3857), - [anon_sym_LBRACE] = ACTIONS(3615), + [1085] = { + [sym_expression] = STATE(4480), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8545), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_RPAREN] = ACTIONS(4666), + [anon_sym_LPAREN2] = ACTIONS(1252), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), + [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(2020), - [anon_sym_RBRACK] = ACTIONS(4607), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3851), - [anon_sym_compl] = ACTIONS(3851), - [anon_sym_DASH_DASH] = ACTIONS(3897), - [anon_sym_PLUS_PLUS] = ACTIONS(3897), - [anon_sym_sizeof] = ACTIONS(3859), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -182433,82 +188914,285 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3861), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3863), - [anon_sym_new] = ACTIONS(3865), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1032] = { - [sym_expression] = STATE(4363), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3678), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3678), - [sym_call_expression] = STATE(3678), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3678), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3678), - [sym_initializer_list] = STATE(7481), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3678), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3678), - [sym_identifier] = ACTIONS(3849), - [anon_sym_LPAREN2] = ACTIONS(3893), - [anon_sym_BANG] = ACTIONS(3853), - [anon_sym_TILDE] = ACTIONS(3853), - [anon_sym_DASH] = ACTIONS(3851), - [anon_sym_PLUS] = ACTIONS(3851), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(3855), - [anon_sym_COLON_COLON] = ACTIONS(3857), - [anon_sym_LBRACE] = ACTIONS(3615), + [1086] = { + [sym_expression] = STATE(3321), + [sym__string] = STATE(3549), + [sym_conditional_expression] = STATE(3636), + [sym_assignment_expression] = STATE(3636), + [sym_pointer_expression] = STATE(3696), + [sym_unary_expression] = STATE(3636), + [sym_binary_expression] = STATE(3636), + [sym_update_expression] = STATE(3636), + [sym_cast_expression] = STATE(3636), + [sym_sizeof_expression] = STATE(3636), + [sym_alignof_expression] = STATE(3636), + [sym_offsetof_expression] = STATE(3636), + [sym_generic_expression] = STATE(3636), + [sym_subscript_expression] = STATE(3696), + [sym_call_expression] = STATE(3696), + [sym_gnu_asm_expression] = STATE(3636), + [sym_extension_expression] = STATE(3636), + [sym_field_expression] = STATE(3696), + [sym_compound_literal_expression] = STATE(3636), + [sym_parenthesized_expression] = STATE(3696), + [sym_initializer_list] = STATE(3651), + [sym_char_literal] = STATE(3549), + [sym_concatenated_string] = STATE(3549), + [sym_string_literal] = STATE(2433), + [sym_null] = STATE(3636), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7883), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3636), + [sym_raw_string_literal] = STATE(2433), + [sym_co_await_expression] = STATE(3636), + [sym_new_expression] = STATE(3636), + [sym_delete_expression] = STATE(3636), + [sym_requires_clause] = STATE(3636), + [sym_requires_expression] = STATE(3636), + [sym_lambda_expression] = STATE(3636), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3636), + [sym_parameter_pack_expansion] = STATE(3636), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5769), + [sym_qualified_identifier] = STATE(3696), + [sym_qualified_type_identifier] = STATE(7883), + [sym_user_defined_literal] = STATE(3696), + [sym_identifier] = ACTIONS(2483), + [anon_sym_LPAREN2] = ACTIONS(4668), + [anon_sym_BANG] = ACTIONS(2487), + [anon_sym_TILDE] = ACTIONS(2487), + [anon_sym_DASH] = ACTIONS(2485), + [anon_sym_PLUS] = ACTIONS(2485), + [anon_sym_STAR] = ACTIONS(3136), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym___extension__] = ACTIONS(2489), + [anon_sym_COLON_COLON] = ACTIONS(2491), + [anon_sym_LBRACE] = ACTIONS(2493), [anon_sym_LBRACK] = ACTIONS(2020), - [anon_sym_RBRACK] = ACTIONS(4609), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3851), - [anon_sym_compl] = ACTIONS(3851), - [anon_sym_DASH_DASH] = ACTIONS(3897), - [anon_sym_PLUS_PLUS] = ACTIONS(3897), - [anon_sym_sizeof] = ACTIONS(3859), + [sym_primitive_type] = ACTIONS(2495), + [anon_sym_not] = ACTIONS(2485), + [anon_sym_compl] = ACTIONS(2485), + [anon_sym_DASH_DASH] = ACTIONS(4513), + [anon_sym_PLUS_PLUS] = ACTIONS(4513), + [anon_sym_sizeof] = ACTIONS(2497), + [anon_sym___alignof__] = ACTIONS(2499), + [anon_sym___alignof] = ACTIONS(2499), + [anon_sym__alignof] = ACTIONS(2499), + [anon_sym_alignof] = ACTIONS(2499), + [anon_sym__Alignof] = ACTIONS(2499), + [anon_sym_offsetof] = ACTIONS(2501), + [anon_sym__Generic] = ACTIONS(2503), + [anon_sym_asm] = ACTIONS(2505), + [anon_sym___asm__] = ACTIONS(2505), + [anon_sym___asm] = ACTIONS(2505), + [sym_number_literal] = ACTIONS(2507), + [anon_sym_L_SQUOTE] = ACTIONS(2509), + [anon_sym_u_SQUOTE] = ACTIONS(2509), + [anon_sym_U_SQUOTE] = ACTIONS(2509), + [anon_sym_u8_SQUOTE] = ACTIONS(2509), + [anon_sym_SQUOTE] = ACTIONS(2509), + [anon_sym_L_DQUOTE] = ACTIONS(2511), + [anon_sym_u_DQUOTE] = ACTIONS(2511), + [anon_sym_U_DQUOTE] = ACTIONS(2511), + [anon_sym_u8_DQUOTE] = ACTIONS(2511), + [anon_sym_DQUOTE] = ACTIONS(2511), + [sym_true] = ACTIONS(2513), + [sym_false] = ACTIONS(2513), + [anon_sym_NULL] = ACTIONS(2515), + [anon_sym_nullptr] = ACTIONS(2515), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(2517), + [anon_sym_R_DQUOTE] = ACTIONS(2519), + [anon_sym_LR_DQUOTE] = ACTIONS(2519), + [anon_sym_uR_DQUOTE] = ACTIONS(2519), + [anon_sym_UR_DQUOTE] = ACTIONS(2519), + [anon_sym_u8R_DQUOTE] = ACTIONS(2519), + [anon_sym_co_await] = ACTIONS(2521), + [anon_sym_new] = ACTIONS(2523), + [anon_sym_requires] = ACTIONS(2525), + [sym_this] = ACTIONS(2513), + }, + [1087] = { + [sym_expression] = STATE(3702), + [sym__string] = STATE(3775), + [sym_conditional_expression] = STATE(3886), + [sym_assignment_expression] = STATE(3886), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(3886), + [sym_binary_expression] = STATE(3886), + [sym_update_expression] = STATE(3886), + [sym_cast_expression] = STATE(3886), + [sym_sizeof_expression] = STATE(3886), + [sym_alignof_expression] = STATE(3886), + [sym_offsetof_expression] = STATE(3886), + [sym_generic_expression] = STATE(3886), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(3886), + [sym_extension_expression] = STATE(3886), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(3886), + [sym_parenthesized_expression] = STATE(3522), + [sym_initializer_list] = STATE(3936), + [sym_char_literal] = STATE(3775), + [sym_concatenated_string] = STATE(3775), + [sym_string_literal] = STATE(2596), + [sym_null] = STATE(3886), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7756), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3886), + [sym_raw_string_literal] = STATE(2596), + [sym_co_await_expression] = STATE(3886), + [sym_new_expression] = STATE(3886), + [sym_delete_expression] = STATE(3886), + [sym_requires_clause] = STATE(3886), + [sym_requires_expression] = STATE(3886), + [sym_lambda_expression] = STATE(3886), + [sym_lambda_capture_specifier] = STATE(5492), + [sym_fold_expression] = STATE(3886), + [sym_parameter_pack_expansion] = STATE(3886), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(7756), + [sym_user_defined_literal] = STATE(3522), + [sym_identifier] = ACTIONS(2619), + [anon_sym_LPAREN2] = ACTIONS(1888), + [anon_sym_BANG] = ACTIONS(1890), + [anon_sym_TILDE] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1892), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(2621), + [anon_sym_COLON_COLON] = ACTIONS(1898), + [anon_sym_LBRACE] = ACTIONS(2623), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2625), + [anon_sym_not] = ACTIONS(1892), + [anon_sym_compl] = ACTIONS(1892), + [anon_sym_DASH_DASH] = ACTIONS(1902), + [anon_sym_PLUS_PLUS] = ACTIONS(1902), + [anon_sym_sizeof] = ACTIONS(1904), + [anon_sym___alignof__] = ACTIONS(1906), + [anon_sym___alignof] = ACTIONS(1906), + [anon_sym__alignof] = ACTIONS(1906), + [anon_sym_alignof] = ACTIONS(1906), + [anon_sym__Alignof] = ACTIONS(1906), + [anon_sym_offsetof] = ACTIONS(1908), + [anon_sym__Generic] = ACTIONS(1910), + [anon_sym_asm] = ACTIONS(1912), + [anon_sym___asm__] = ACTIONS(1912), + [anon_sym___asm] = ACTIONS(1912), + [sym_number_literal] = ACTIONS(1914), + [anon_sym_L_SQUOTE] = ACTIONS(1916), + [anon_sym_u_SQUOTE] = ACTIONS(1916), + [anon_sym_U_SQUOTE] = ACTIONS(1916), + [anon_sym_u8_SQUOTE] = ACTIONS(1916), + [anon_sym_SQUOTE] = ACTIONS(1916), + [anon_sym_L_DQUOTE] = ACTIONS(1918), + [anon_sym_u_DQUOTE] = ACTIONS(1918), + [anon_sym_U_DQUOTE] = ACTIONS(1918), + [anon_sym_u8_DQUOTE] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1918), + [sym_true] = ACTIONS(1920), + [sym_false] = ACTIONS(1920), + [anon_sym_NULL] = ACTIONS(1922), + [anon_sym_nullptr] = ACTIONS(1922), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1924), + [anon_sym_R_DQUOTE] = ACTIONS(1926), + [anon_sym_LR_DQUOTE] = ACTIONS(1926), + [anon_sym_uR_DQUOTE] = ACTIONS(1926), + [anon_sym_UR_DQUOTE] = ACTIONS(1926), + [anon_sym_u8R_DQUOTE] = ACTIONS(1926), + [anon_sym_co_await] = ACTIONS(1928), + [anon_sym_new] = ACTIONS(1930), + [anon_sym_requires] = ACTIONS(1932), + [sym_this] = ACTIONS(1920), + }, + [1088] = { + [sym_expression] = STATE(4541), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3597), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3597), + [sym_call_expression] = STATE(3597), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3597), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3597), + [sym_initializer_list] = STATE(3925), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3597), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3597), + [sym_identifier] = ACTIONS(3857), + [anon_sym_LPAREN2] = ACTIONS(4648), + [anon_sym_BANG] = ACTIONS(3861), + [anon_sym_TILDE] = ACTIONS(3861), + [anon_sym_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3859), + [anon_sym_STAR] = ACTIONS(4366), + [anon_sym_AMP] = ACTIONS(4366), + [anon_sym___extension__] = ACTIONS(3863), + [anon_sym_COLON_COLON] = ACTIONS(3865), + [anon_sym_LBRACE] = ACTIONS(3623), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3859), + [anon_sym_compl] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(4368), + [anon_sym_PLUS_PLUS] = ACTIONS(4368), + [anon_sym_sizeof] = ACTIONS(3867), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -182536,82 +189220,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3861), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3869), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3863), - [anon_sym_new] = ACTIONS(3865), + [anon_sym_co_await] = ACTIONS(3871), + [anon_sym_new] = ACTIONS(3873), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1033] = { - [sym_expression] = STATE(4735), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_initializer_list] = STATE(8155), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4611), - [anon_sym_LPAREN2] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3615), + [1089] = { + [sym_expression] = STATE(4589), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8881), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3597), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3597), + [sym_call_expression] = STATE(3597), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3597), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3597), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3597), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3597), + [sym_identifier] = ACTIONS(3857), + [anon_sym_LPAREN2] = ACTIONS(4648), + [anon_sym_BANG] = ACTIONS(3861), + [anon_sym_TILDE] = ACTIONS(3861), + [anon_sym_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3859), + [anon_sym_STAR] = ACTIONS(4366), + [anon_sym_AMP] = ACTIONS(4366), + [anon_sym___extension__] = ACTIONS(3863), + [anon_sym_COLON] = ACTIONS(4670), + [anon_sym_COLON_COLON] = ACTIONS(3865), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3859), + [anon_sym_compl] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(4368), + [anon_sym_PLUS_PLUS] = ACTIONS(4368), + [anon_sym_sizeof] = ACTIONS(3867), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -182639,82 +189322,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(145), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3869), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), + [anon_sym_co_await] = ACTIONS(3871), + [anon_sym_new] = ACTIONS(3873), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1034] = { - [sym_expression] = STATE(4735), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_initializer_list] = STATE(8155), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4614), - [anon_sym_LPAREN2] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3615), + [1090] = { + [sym_expression] = STATE(4526), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3597), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3597), + [sym_call_expression] = STATE(3597), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3597), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3597), + [sym_initializer_list] = STATE(3899), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3597), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3597), + [sym_identifier] = ACTIONS(3857), + [anon_sym_LPAREN2] = ACTIONS(4648), + [anon_sym_BANG] = ACTIONS(3861), + [anon_sym_TILDE] = ACTIONS(3861), + [anon_sym_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3859), + [anon_sym_STAR] = ACTIONS(4366), + [anon_sym_AMP] = ACTIONS(4366), + [anon_sym___extension__] = ACTIONS(3863), + [anon_sym_COLON_COLON] = ACTIONS(3865), + [anon_sym_LBRACE] = ACTIONS(3623), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3859), + [anon_sym_compl] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(4368), + [anon_sym_PLUS_PLUS] = ACTIONS(4368), + [anon_sym_sizeof] = ACTIONS(3867), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -182742,77 +189424,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(145), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3869), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), + [anon_sym_co_await] = ACTIONS(3871), + [anon_sym_new] = ACTIONS(3873), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1035] = { - [sym_expression] = STATE(4735), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_initializer_list] = STATE(8155), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4617), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1091] = { + [sym_expression] = STATE(4501), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8259), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_RPAREN] = ACTIONS(4672), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3615), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -182845,7 +189526,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -182857,173 +189538,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1036] = { - [sym_expression] = STATE(4368), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3678), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3678), - [sym_call_expression] = STATE(3678), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3678), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3678), - [sym_initializer_list] = STATE(7277), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3678), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3678), - [sym_identifier] = ACTIONS(3849), - [anon_sym_LPAREN2] = ACTIONS(3893), - [anon_sym_BANG] = ACTIONS(3853), - [anon_sym_TILDE] = ACTIONS(3853), - [anon_sym_DASH] = ACTIONS(3851), - [anon_sym_PLUS] = ACTIONS(3851), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(3855), - [anon_sym_COLON_COLON] = ACTIONS(3857), - [anon_sym_LBRACE] = ACTIONS(3615), - [anon_sym_LBRACK] = ACTIONS(2020), - [anon_sym_RBRACK] = ACTIONS(4620), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3851), - [anon_sym_compl] = ACTIONS(3851), - [anon_sym_DASH_DASH] = ACTIONS(3897), - [anon_sym_PLUS_PLUS] = ACTIONS(3897), - [anon_sym_sizeof] = ACTIONS(3859), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3861), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3863), - [anon_sym_new] = ACTIONS(3865), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), - }, - [1037] = { - [sym_compound_statement] = STATE(7569), - [sym_expression] = STATE(4483), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_initializer_list] = STATE(7569), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(1932), + [1092] = { + [sym_expression] = STATE(4556), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8084), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3597), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3597), + [sym_call_expression] = STATE(3597), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3597), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3597), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3597), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3597), + [sym_identifier] = ACTIONS(3857), + [anon_sym_LPAREN2] = ACTIONS(4648), + [anon_sym_BANG] = ACTIONS(3861), + [anon_sym_TILDE] = ACTIONS(3861), + [anon_sym_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3859), + [anon_sym_STAR] = ACTIONS(4366), + [anon_sym_AMP] = ACTIONS(4366), + [anon_sym___extension__] = ACTIONS(3863), + [anon_sym_COLON] = ACTIONS(4674), + [anon_sym_COLON_COLON] = ACTIONS(3865), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3859), + [anon_sym_compl] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(4368), + [anon_sym_PLUS_PLUS] = ACTIONS(4368), + [anon_sym_sizeof] = ACTIONS(3867), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -183051,77 +189628,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(145), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3869), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), + [anon_sym_co_await] = ACTIONS(3871), + [anon_sym_new] = ACTIONS(3873), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1038] = { - [sym_expression] = STATE(4735), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_initializer_list] = STATE(8155), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4622), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1093] = { + [sym_expression] = STATE(4692), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_initializer_list] = STATE(8272), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3615), + [anon_sym_LBRACE] = ACTIONS(3623), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -183154,7 +189730,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -183166,65 +189742,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1039] = { - [sym_expression] = STATE(4735), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_initializer_list] = STATE(8155), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4625), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1094] = { + [sym_expression] = STATE(4470), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_initializer_list] = STATE(8035), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3615), + [anon_sym_LBRACE] = ACTIONS(3623), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -183257,7 +189832,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -183269,65 +189844,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1040] = { - [sym_expression] = STATE(4735), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_initializer_list] = STATE(8155), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4628), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1095] = { + [sym_expression] = STATE(4430), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(7587), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3615), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -183360,7 +189934,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -183372,70 +189946,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1041] = { - [sym_expression] = STATE(4735), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_initializer_list] = STATE(8155), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4631), - [anon_sym_LPAREN2] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3615), + [1096] = { + [sym_expression] = STATE(4552), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8916), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3597), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3597), + [sym_call_expression] = STATE(3597), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3597), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3597), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3597), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3597), + [sym_identifier] = ACTIONS(3857), + [anon_sym_LPAREN2] = ACTIONS(4648), + [anon_sym_BANG] = ACTIONS(3861), + [anon_sym_TILDE] = ACTIONS(3861), + [anon_sym_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3859), + [anon_sym_STAR] = ACTIONS(4366), + [anon_sym_AMP] = ACTIONS(4366), + [anon_sym___extension__] = ACTIONS(3863), + [anon_sym_COLON] = ACTIONS(4679), + [anon_sym_COLON_COLON] = ACTIONS(3865), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3859), + [anon_sym_compl] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(4368), + [anon_sym_PLUS_PLUS] = ACTIONS(4368), + [anon_sym_sizeof] = ACTIONS(3867), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -183463,180 +190036,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(145), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3869), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), + [anon_sym_co_await] = ACTIONS(3871), + [anon_sym_new] = ACTIONS(3873), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1042] = { - [sym_expression] = STATE(4735), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_initializer_list] = STATE(8155), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4634), - [anon_sym_LPAREN2] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3615), + [1097] = { + [sym_expression] = STATE(2417), + [sym__string] = STATE(2887), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_initializer_list] = STATE(2488), + [sym_char_literal] = STATE(2887), + [sym_concatenated_string] = STATE(2887), + [sym_string_literal] = STATE(1947), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(1947), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), + [sym_identifier] = ACTIONS(1990), + [anon_sym_LPAREN2] = ACTIONS(4681), + [anon_sym_BANG] = ACTIONS(1948), + [anon_sym_TILDE] = ACTIONS(1948), + [anon_sym_DASH] = ACTIONS(1946), + [anon_sym_PLUS] = ACTIONS(1946), + [anon_sym_STAR] = ACTIONS(4346), + [anon_sym_AMP] = ACTIONS(4346), + [anon_sym___extension__] = ACTIONS(1950), + [anon_sym_COLON_COLON] = ACTIONS(1952), + [anon_sym_LBRACE] = ACTIONS(1954), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), + [sym_primitive_type] = ACTIONS(1956), + [anon_sym_not] = ACTIONS(1946), + [anon_sym_compl] = ACTIONS(1946), + [anon_sym_DASH_DASH] = ACTIONS(4348), + [anon_sym_PLUS_PLUS] = ACTIONS(4348), + [anon_sym_sizeof] = ACTIONS(1958), + [anon_sym___alignof__] = ACTIONS(1960), + [anon_sym___alignof] = ACTIONS(1960), + [anon_sym__alignof] = ACTIONS(1960), + [anon_sym_alignof] = ACTIONS(1960), + [anon_sym__Alignof] = ACTIONS(1960), + [anon_sym_offsetof] = ACTIONS(1962), + [anon_sym__Generic] = ACTIONS(1964), + [anon_sym_asm] = ACTIONS(1966), + [anon_sym___asm__] = ACTIONS(1966), + [anon_sym___asm] = ACTIONS(1966), + [sym_number_literal] = ACTIONS(1968), + [anon_sym_L_SQUOTE] = ACTIONS(1970), + [anon_sym_u_SQUOTE] = ACTIONS(1970), + [anon_sym_U_SQUOTE] = ACTIONS(1970), + [anon_sym_u8_SQUOTE] = ACTIONS(1970), + [anon_sym_SQUOTE] = ACTIONS(1970), + [anon_sym_L_DQUOTE] = ACTIONS(1972), + [anon_sym_u_DQUOTE] = ACTIONS(1972), + [anon_sym_U_DQUOTE] = ACTIONS(1972), + [anon_sym_u8_DQUOTE] = ACTIONS(1972), + [anon_sym_DQUOTE] = ACTIONS(1972), + [sym_true] = ACTIONS(1974), + [sym_false] = ACTIONS(1974), + [anon_sym_NULL] = ACTIONS(1976), + [anon_sym_nullptr] = ACTIONS(1976), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1980), + [anon_sym_R_DQUOTE] = ACTIONS(1982), + [anon_sym_LR_DQUOTE] = ACTIONS(1982), + [anon_sym_uR_DQUOTE] = ACTIONS(1982), + [anon_sym_UR_DQUOTE] = ACTIONS(1982), + [anon_sym_u8R_DQUOTE] = ACTIONS(1982), + [anon_sym_co_await] = ACTIONS(1984), + [anon_sym_new] = ACTIONS(1986), + [anon_sym_requires] = ACTIONS(1988), + [sym_this] = ACTIONS(1974), }, - [1043] = { - [sym_expression] = STATE(4735), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_initializer_list] = STATE(8155), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4637), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1098] = { + [sym_expression] = STATE(4784), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_initializer_list] = STATE(8572), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3615), + [anon_sym_LBRACE] = ACTIONS(3623), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -183669,7 +190240,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -183681,69 +190252,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1044] = { - [sym_expression] = STATE(4326), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_initializer_list] = STATE(7816), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3615), + [1099] = { + [sym_expression] = STATE(4365), + [sym__string] = STATE(4455), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3366), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3366), + [sym_call_expression] = STATE(3366), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3366), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3366), + [sym_initializer_list] = STATE(7212), + [sym_char_literal] = STATE(4455), + [sym_concatenated_string] = STATE(4455), + [sym_string_literal] = STATE(3406), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3406), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3366), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3366), + [sym_identifier] = ACTIONS(3833), + [anon_sym_LPAREN2] = ACTIONS(4557), + [anon_sym_BANG] = ACTIONS(3837), + [anon_sym_TILDE] = ACTIONS(3837), + [anon_sym_DASH] = ACTIONS(3835), + [anon_sym_PLUS] = ACTIONS(3835), + [anon_sym_STAR] = ACTIONS(4336), + [anon_sym_AMP] = ACTIONS(4336), + [anon_sym___extension__] = ACTIONS(3839), + [anon_sym_COLON_COLON] = ACTIONS(3841), + [anon_sym_LBRACE] = ACTIONS(3623), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3835), + [anon_sym_compl] = ACTIONS(3835), + [anon_sym_DASH_DASH] = ACTIONS(4338), + [anon_sym_PLUS_PLUS] = ACTIONS(4338), + [anon_sym_sizeof] = ACTIONS(3843), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -183754,98 +190325,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(113), [anon_sym___asm__] = ACTIONS(113), [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), + [sym_number_literal] = ACTIONS(3845), + [anon_sym_L_SQUOTE] = ACTIONS(3847), + [anon_sym_u_SQUOTE] = ACTIONS(3847), + [anon_sym_U_SQUOTE] = ACTIONS(3847), + [anon_sym_u8_SQUOTE] = ACTIONS(3847), + [anon_sym_SQUOTE] = ACTIONS(3847), + [anon_sym_L_DQUOTE] = ACTIONS(3849), + [anon_sym_u_DQUOTE] = ACTIONS(3849), + [anon_sym_U_DQUOTE] = ACTIONS(3849), + [anon_sym_u8_DQUOTE] = ACTIONS(3849), + [anon_sym_DQUOTE] = ACTIONS(3849), [sym_true] = ACTIONS(229), [sym_false] = ACTIONS(229), [anon_sym_NULL] = ACTIONS(123), [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3851), + [anon_sym_R_DQUOTE] = ACTIONS(3853), + [anon_sym_LR_DQUOTE] = ACTIONS(3853), + [anon_sym_uR_DQUOTE] = ACTIONS(3853), + [anon_sym_UR_DQUOTE] = ACTIONS(3853), + [anon_sym_u8R_DQUOTE] = ACTIONS(3853), + [anon_sym_co_await] = ACTIONS(3855), [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1045] = { - [sym_expression] = STATE(4568), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8431), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_RPAREN] = ACTIONS(4640), - [anon_sym_LPAREN2] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), - [anon_sym_COLON_COLON] = ACTIONS(47), + [1100] = { + [sym_expression] = STATE(4525), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8499), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3597), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3597), + [sym_call_expression] = STATE(3597), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3597), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3597), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3597), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3597), + [sym_identifier] = ACTIONS(3857), + [anon_sym_LPAREN2] = ACTIONS(4648), + [anon_sym_BANG] = ACTIONS(3861), + [anon_sym_TILDE] = ACTIONS(3861), + [anon_sym_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3859), + [anon_sym_STAR] = ACTIONS(4366), + [anon_sym_AMP] = ACTIONS(4366), + [anon_sym___extension__] = ACTIONS(3863), + [anon_sym_COLON] = ACTIONS(4683), + [anon_sym_COLON_COLON] = ACTIONS(3865), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3859), + [anon_sym_compl] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(4368), + [anon_sym_PLUS_PLUS] = ACTIONS(4368), + [anon_sym_sizeof] = ACTIONS(3867), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -183873,81 +190444,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(145), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3869), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), + [anon_sym_co_await] = ACTIONS(3871), + [anon_sym_new] = ACTIONS(3873), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1046] = { - [sym_expression] = STATE(4575), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8705), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3568), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3568), - [sym_call_expression] = STATE(3568), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3568), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3568), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3568), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3568), - [sym_identifier] = ACTIONS(3867), - [anon_sym_LPAREN2] = ACTIONS(4642), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_TILDE] = ACTIONS(3871), - [anon_sym_DASH] = ACTIONS(3869), - [anon_sym_PLUS] = ACTIONS(3869), - [anon_sym_STAR] = ACTIONS(4312), - [anon_sym_AMP] = ACTIONS(4312), - [anon_sym___extension__] = ACTIONS(3873), - [anon_sym_COLON] = ACTIONS(4644), - [anon_sym_COLON_COLON] = ACTIONS(3875), + [1101] = { + [sym_expression] = STATE(3759), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3728), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3728), + [sym_call_expression] = STATE(3728), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3728), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3728), + [sym_initializer_list] = STATE(3899), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3728), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3728), + [sym_identifier] = ACTIONS(3883), + [anon_sym_LPAREN2] = ACTIONS(3901), + [anon_sym_BANG] = ACTIONS(3887), + [anon_sym_TILDE] = ACTIONS(3887), + [anon_sym_DASH] = ACTIONS(3885), + [anon_sym_PLUS] = ACTIONS(3885), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(3889), + [anon_sym_COLON_COLON] = ACTIONS(3891), + [anon_sym_LBRACE] = ACTIONS(3623), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3869), - [anon_sym_compl] = ACTIONS(3869), - [anon_sym_DASH_DASH] = ACTIONS(4404), - [anon_sym_PLUS_PLUS] = ACTIONS(4404), - [anon_sym_sizeof] = ACTIONS(3877), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3885), + [anon_sym_compl] = ACTIONS(3885), + [anon_sym_DASH_DASH] = ACTIONS(3905), + [anon_sym_PLUS_PLUS] = ACTIONS(3905), + [anon_sym_sizeof] = ACTIONS(3893), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -183975,81 +190546,183 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3879), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3895), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3881), - [anon_sym_new] = ACTIONS(3865), + [anon_sym_co_await] = ACTIONS(3897), + [anon_sym_new] = ACTIONS(3873), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1047] = { - [sym_expression] = STATE(4508), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8268), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3568), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3568), - [sym_call_expression] = STATE(3568), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3568), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3568), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3568), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3568), - [sym_identifier] = ACTIONS(3867), - [anon_sym_LPAREN2] = ACTIONS(4642), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_TILDE] = ACTIONS(3871), - [anon_sym_DASH] = ACTIONS(3869), - [anon_sym_PLUS] = ACTIONS(3869), - [anon_sym_STAR] = ACTIONS(4312), - [anon_sym_AMP] = ACTIONS(4312), - [anon_sym___extension__] = ACTIONS(3873), - [anon_sym_COLON] = ACTIONS(4646), - [anon_sym_COLON_COLON] = ACTIONS(3875), + [1102] = { + [sym_expression] = STATE(4538), + [sym__string] = STATE(4825), + [sym_conditional_expression] = STATE(4856), + [sym_assignment_expression] = STATE(4856), + [sym_pointer_expression] = STATE(3701), + [sym_unary_expression] = STATE(4856), + [sym_binary_expression] = STATE(4856), + [sym_update_expression] = STATE(4856), + [sym_cast_expression] = STATE(4856), + [sym_sizeof_expression] = STATE(4856), + [sym_alignof_expression] = STATE(4856), + [sym_offsetof_expression] = STATE(4856), + [sym_generic_expression] = STATE(4856), + [sym_subscript_expression] = STATE(3701), + [sym_call_expression] = STATE(3701), + [sym_gnu_asm_expression] = STATE(4856), + [sym_extension_expression] = STATE(4856), + [sym_field_expression] = STATE(3701), + [sym_compound_literal_expression] = STATE(4856), + [sym_parenthesized_expression] = STATE(3701), + [sym_initializer_list] = STATE(4903), + [sym_char_literal] = STATE(4825), + [sym_concatenated_string] = STATE(4825), + [sym_string_literal] = STATE(3812), + [sym_null] = STATE(4856), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7816), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(4856), + [sym_raw_string_literal] = STATE(3812), + [sym_co_await_expression] = STATE(4856), + [sym_new_expression] = STATE(4856), + [sym_delete_expression] = STATE(4856), + [sym_requires_clause] = STATE(4856), + [sym_requires_expression] = STATE(4856), + [sym_lambda_expression] = STATE(4856), + [sym_lambda_capture_specifier] = STATE(5489), + [sym_fold_expression] = STATE(4856), + [sym_parameter_pack_expansion] = STATE(4856), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5769), + [sym_qualified_identifier] = STATE(3701), + [sym_qualified_type_identifier] = STATE(7816), + [sym_user_defined_literal] = STATE(3701), + [sym_identifier] = ACTIONS(3875), + [anon_sym_LPAREN2] = ACTIONS(3130), + [anon_sym_BANG] = ACTIONS(3132), + [anon_sym_TILDE] = ACTIONS(3132), + [anon_sym_DASH] = ACTIONS(3134), + [anon_sym_PLUS] = ACTIONS(3134), + [anon_sym_STAR] = ACTIONS(3136), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym___extension__] = ACTIONS(3877), + [anon_sym_COLON_COLON] = ACTIONS(3140), + [anon_sym_LBRACE] = ACTIONS(3879), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3869), - [anon_sym_compl] = ACTIONS(3869), - [anon_sym_DASH_DASH] = ACTIONS(4404), - [anon_sym_PLUS_PLUS] = ACTIONS(4404), - [anon_sym_sizeof] = ACTIONS(3877), + [sym_primitive_type] = ACTIONS(3881), + [anon_sym_not] = ACTIONS(3134), + [anon_sym_compl] = ACTIONS(3134), + [anon_sym_DASH_DASH] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_sizeof] = ACTIONS(3156), + [anon_sym___alignof__] = ACTIONS(3158), + [anon_sym___alignof] = ACTIONS(3158), + [anon_sym__alignof] = ACTIONS(3158), + [anon_sym_alignof] = ACTIONS(3158), + [anon_sym__Alignof] = ACTIONS(3158), + [anon_sym_offsetof] = ACTIONS(3160), + [anon_sym__Generic] = ACTIONS(3162), + [anon_sym_asm] = ACTIONS(3164), + [anon_sym___asm__] = ACTIONS(3164), + [anon_sym___asm] = ACTIONS(3164), + [sym_number_literal] = ACTIONS(3166), + [anon_sym_L_SQUOTE] = ACTIONS(3168), + [anon_sym_u_SQUOTE] = ACTIONS(3168), + [anon_sym_U_SQUOTE] = ACTIONS(3168), + [anon_sym_u8_SQUOTE] = ACTIONS(3168), + [anon_sym_SQUOTE] = ACTIONS(3168), + [anon_sym_L_DQUOTE] = ACTIONS(3170), + [anon_sym_u_DQUOTE] = ACTIONS(3170), + [anon_sym_U_DQUOTE] = ACTIONS(3170), + [anon_sym_u8_DQUOTE] = ACTIONS(3170), + [anon_sym_DQUOTE] = ACTIONS(3170), + [sym_true] = ACTIONS(3172), + [sym_false] = ACTIONS(3172), + [anon_sym_NULL] = ACTIONS(3174), + [anon_sym_nullptr] = ACTIONS(3174), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3184), + [anon_sym_R_DQUOTE] = ACTIONS(3186), + [anon_sym_LR_DQUOTE] = ACTIONS(3186), + [anon_sym_uR_DQUOTE] = ACTIONS(3186), + [anon_sym_UR_DQUOTE] = ACTIONS(3186), + [anon_sym_u8R_DQUOTE] = ACTIONS(3186), + [anon_sym_co_await] = ACTIONS(3188), + [anon_sym_new] = ACTIONS(3190), + [anon_sym_requires] = ACTIONS(3192), + [sym_this] = ACTIONS(3172), + }, + [1103] = { + [sym_expression] = STATE(4603), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8583), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_RPAREN] = ACTIONS(4685), + [anon_sym_LPAREN2] = ACTIONS(1252), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -184077,81 +190750,183 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3879), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3881), - [anon_sym_new] = ACTIONS(3865), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1048] = { - [sym_expression] = STATE(4762), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_initializer_list] = STATE(8437), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3615), + [1104] = { + [sym_expression] = STATE(3346), + [sym__string] = STATE(2917), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_initializer_list] = STATE(2488), + [sym_char_literal] = STATE(2917), + [sym_concatenated_string] = STATE(2917), + [sym_string_literal] = STATE(2114), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(2114), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), + [sym_identifier] = ACTIONS(1990), + [anon_sym_LPAREN2] = ACTIONS(4687), + [anon_sym_BANG] = ACTIONS(2535), + [anon_sym_TILDE] = ACTIONS(2535), + [anon_sym_DASH] = ACTIONS(2533), + [anon_sym_PLUS] = ACTIONS(2533), + [anon_sym_STAR] = ACTIONS(4366), + [anon_sym_AMP] = ACTIONS(4366), + [anon_sym___extension__] = ACTIONS(2537), + [anon_sym_COLON_COLON] = ACTIONS(2539), + [anon_sym_LBRACE] = ACTIONS(1954), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(1956), + [anon_sym_not] = ACTIONS(2533), + [anon_sym_compl] = ACTIONS(2533), + [anon_sym_DASH_DASH] = ACTIONS(4498), + [anon_sym_PLUS_PLUS] = ACTIONS(4498), + [anon_sym_sizeof] = ACTIONS(2541), + [anon_sym___alignof__] = ACTIONS(1960), + [anon_sym___alignof] = ACTIONS(1960), + [anon_sym__alignof] = ACTIONS(1960), + [anon_sym_alignof] = ACTIONS(1960), + [anon_sym__Alignof] = ACTIONS(1960), + [anon_sym_offsetof] = ACTIONS(1962), + [anon_sym__Generic] = ACTIONS(1964), + [anon_sym_asm] = ACTIONS(1966), + [anon_sym___asm__] = ACTIONS(1966), + [anon_sym___asm] = ACTIONS(1966), + [sym_number_literal] = ACTIONS(2002), + [anon_sym_L_SQUOTE] = ACTIONS(2004), + [anon_sym_u_SQUOTE] = ACTIONS(2004), + [anon_sym_U_SQUOTE] = ACTIONS(2004), + [anon_sym_u8_SQUOTE] = ACTIONS(2004), + [anon_sym_SQUOTE] = ACTIONS(2004), + [anon_sym_L_DQUOTE] = ACTIONS(2006), + [anon_sym_u_DQUOTE] = ACTIONS(2006), + [anon_sym_U_DQUOTE] = ACTIONS(2006), + [anon_sym_u8_DQUOTE] = ACTIONS(2006), + [anon_sym_DQUOTE] = ACTIONS(2006), + [sym_true] = ACTIONS(1974), + [sym_false] = ACTIONS(1974), + [anon_sym_NULL] = ACTIONS(1976), + [anon_sym_nullptr] = ACTIONS(1976), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(2543), + [anon_sym_R_DQUOTE] = ACTIONS(2010), + [anon_sym_LR_DQUOTE] = ACTIONS(2010), + [anon_sym_uR_DQUOTE] = ACTIONS(2010), + [anon_sym_UR_DQUOTE] = ACTIONS(2010), + [anon_sym_u8R_DQUOTE] = ACTIONS(2010), + [anon_sym_co_await] = ACTIONS(2545), + [anon_sym_new] = ACTIONS(2014), + [anon_sym_requires] = ACTIONS(1988), + [sym_this] = ACTIONS(1974), + }, + [1105] = { + [sym_expression] = STATE(4489), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8178), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3597), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3597), + [sym_call_expression] = STATE(3597), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3597), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3597), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3597), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3597), + [sym_identifier] = ACTIONS(3857), + [anon_sym_LPAREN2] = ACTIONS(4648), + [anon_sym_BANG] = ACTIONS(3861), + [anon_sym_TILDE] = ACTIONS(3861), + [anon_sym_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3859), + [anon_sym_STAR] = ACTIONS(4366), + [anon_sym_AMP] = ACTIONS(4366), + [anon_sym___extension__] = ACTIONS(3863), + [anon_sym_COLON] = ACTIONS(4689), + [anon_sym_COLON_COLON] = ACTIONS(3865), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3859), + [anon_sym_compl] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(4368), + [anon_sym_PLUS_PLUS] = ACTIONS(4368), + [anon_sym_sizeof] = ACTIONS(3867), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -184179,183 +190954,183 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(145), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3869), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), + [anon_sym_co_await] = ACTIONS(3871), + [anon_sym_new] = ACTIONS(3873), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1049] = { - [sym_expression] = STATE(4458), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8245), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3568), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3568), - [sym_call_expression] = STATE(3568), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3568), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3568), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3568), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3568), - [sym_identifier] = ACTIONS(3867), - [anon_sym_LPAREN2] = ACTIONS(4642), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_TILDE] = ACTIONS(3871), - [anon_sym_DASH] = ACTIONS(3869), - [anon_sym_PLUS] = ACTIONS(3869), - [anon_sym_STAR] = ACTIONS(4312), - [anon_sym_AMP] = ACTIONS(4312), - [anon_sym___extension__] = ACTIONS(3873), - [anon_sym_COLON] = ACTIONS(4648), - [anon_sym_COLON_COLON] = ACTIONS(3875), + [1106] = { + [sym_expression] = STATE(4626), + [sym__string] = STATE(4825), + [sym_conditional_expression] = STATE(4856), + [sym_assignment_expression] = STATE(4856), + [sym_pointer_expression] = STATE(3701), + [sym_unary_expression] = STATE(4856), + [sym_binary_expression] = STATE(4856), + [sym_update_expression] = STATE(4856), + [sym_cast_expression] = STATE(4856), + [sym_sizeof_expression] = STATE(4856), + [sym_alignof_expression] = STATE(4856), + [sym_offsetof_expression] = STATE(4856), + [sym_generic_expression] = STATE(4856), + [sym_subscript_expression] = STATE(3701), + [sym_call_expression] = STATE(3701), + [sym_gnu_asm_expression] = STATE(4856), + [sym_extension_expression] = STATE(4856), + [sym_field_expression] = STATE(3701), + [sym_compound_literal_expression] = STATE(4856), + [sym_parenthesized_expression] = STATE(3701), + [sym_initializer_list] = STATE(4889), + [sym_char_literal] = STATE(4825), + [sym_concatenated_string] = STATE(4825), + [sym_string_literal] = STATE(3812), + [sym_null] = STATE(4856), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7816), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(4856), + [sym_raw_string_literal] = STATE(3812), + [sym_co_await_expression] = STATE(4856), + [sym_new_expression] = STATE(4856), + [sym_delete_expression] = STATE(4856), + [sym_requires_clause] = STATE(4856), + [sym_requires_expression] = STATE(4856), + [sym_lambda_expression] = STATE(4856), + [sym_lambda_capture_specifier] = STATE(5489), + [sym_fold_expression] = STATE(4856), + [sym_parameter_pack_expansion] = STATE(4856), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5769), + [sym_qualified_identifier] = STATE(3701), + [sym_qualified_type_identifier] = STATE(7816), + [sym_user_defined_literal] = STATE(3701), + [sym_identifier] = ACTIONS(3875), + [anon_sym_LPAREN2] = ACTIONS(3130), + [anon_sym_BANG] = ACTIONS(3132), + [anon_sym_TILDE] = ACTIONS(3132), + [anon_sym_DASH] = ACTIONS(3134), + [anon_sym_PLUS] = ACTIONS(3134), + [anon_sym_STAR] = ACTIONS(3136), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym___extension__] = ACTIONS(3877), + [anon_sym_COLON_COLON] = ACTIONS(3140), + [anon_sym_LBRACE] = ACTIONS(3879), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3869), - [anon_sym_compl] = ACTIONS(3869), - [anon_sym_DASH_DASH] = ACTIONS(4404), - [anon_sym_PLUS_PLUS] = ACTIONS(4404), - [anon_sym_sizeof] = ACTIONS(3877), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), + [sym_primitive_type] = ACTIONS(3881), + [anon_sym_not] = ACTIONS(3134), + [anon_sym_compl] = ACTIONS(3134), + [anon_sym_DASH_DASH] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_sizeof] = ACTIONS(3156), + [anon_sym___alignof__] = ACTIONS(3158), + [anon_sym___alignof] = ACTIONS(3158), + [anon_sym__alignof] = ACTIONS(3158), + [anon_sym_alignof] = ACTIONS(3158), + [anon_sym__Alignof] = ACTIONS(3158), + [anon_sym_offsetof] = ACTIONS(3160), + [anon_sym__Generic] = ACTIONS(3162), + [anon_sym_asm] = ACTIONS(3164), + [anon_sym___asm__] = ACTIONS(3164), + [anon_sym___asm] = ACTIONS(3164), + [sym_number_literal] = ACTIONS(3166), + [anon_sym_L_SQUOTE] = ACTIONS(3168), + [anon_sym_u_SQUOTE] = ACTIONS(3168), + [anon_sym_U_SQUOTE] = ACTIONS(3168), + [anon_sym_u8_SQUOTE] = ACTIONS(3168), + [anon_sym_SQUOTE] = ACTIONS(3168), + [anon_sym_L_DQUOTE] = ACTIONS(3170), + [anon_sym_u_DQUOTE] = ACTIONS(3170), + [anon_sym_U_DQUOTE] = ACTIONS(3170), + [anon_sym_u8_DQUOTE] = ACTIONS(3170), + [anon_sym_DQUOTE] = ACTIONS(3170), + [sym_true] = ACTIONS(3172), + [sym_false] = ACTIONS(3172), + [anon_sym_NULL] = ACTIONS(3174), + [anon_sym_nullptr] = ACTIONS(3174), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3879), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3881), - [anon_sym_new] = ACTIONS(3865), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3184), + [anon_sym_R_DQUOTE] = ACTIONS(3186), + [anon_sym_LR_DQUOTE] = ACTIONS(3186), + [anon_sym_uR_DQUOTE] = ACTIONS(3186), + [anon_sym_UR_DQUOTE] = ACTIONS(3186), + [anon_sym_u8R_DQUOTE] = ACTIONS(3186), + [anon_sym_co_await] = ACTIONS(3188), + [anon_sym_new] = ACTIONS(3190), + [anon_sym_requires] = ACTIONS(3192), + [sym_this] = ACTIONS(3172), }, - [1050] = { - [sym_expression] = STATE(4557), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_initializer_list] = STATE(7586), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3615), + [1107] = { + [sym_expression] = STATE(4613), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8837), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3597), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3597), + [sym_call_expression] = STATE(3597), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3597), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3597), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3597), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3597), + [sym_identifier] = ACTIONS(3857), + [anon_sym_LPAREN2] = ACTIONS(4648), + [anon_sym_BANG] = ACTIONS(3861), + [anon_sym_TILDE] = ACTIONS(3861), + [anon_sym_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3859), + [anon_sym_STAR] = ACTIONS(4366), + [anon_sym_AMP] = ACTIONS(4366), + [anon_sym___extension__] = ACTIONS(3863), + [anon_sym_COLON] = ACTIONS(4691), + [anon_sym_COLON_COLON] = ACTIONS(3865), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3859), + [anon_sym_compl] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(4368), + [anon_sym_PLUS_PLUS] = ACTIONS(4368), + [anon_sym_sizeof] = ACTIONS(3867), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -184383,81 +191158,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(145), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3869), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), + [anon_sym_co_await] = ACTIONS(3871), + [anon_sym_new] = ACTIONS(3873), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1051] = { - [sym_expression] = STATE(4437), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8033), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3568), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3568), - [sym_call_expression] = STATE(3568), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3568), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3568), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3568), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3568), - [sym_identifier] = ACTIONS(3867), - [anon_sym_LPAREN2] = ACTIONS(4642), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_TILDE] = ACTIONS(3871), - [anon_sym_DASH] = ACTIONS(3869), - [anon_sym_PLUS] = ACTIONS(3869), - [anon_sym_STAR] = ACTIONS(4312), - [anon_sym_AMP] = ACTIONS(4312), - [anon_sym___extension__] = ACTIONS(3873), - [anon_sym_COLON] = ACTIONS(4650), - [anon_sym_COLON_COLON] = ACTIONS(3875), + [1108] = { + [sym_expression] = STATE(4559), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3728), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3728), + [sym_call_expression] = STATE(3728), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3728), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3728), + [sym_initializer_list] = STATE(3925), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3728), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3728), + [sym_identifier] = ACTIONS(3883), + [anon_sym_LPAREN2] = ACTIONS(3901), + [anon_sym_BANG] = ACTIONS(3887), + [anon_sym_TILDE] = ACTIONS(3887), + [anon_sym_DASH] = ACTIONS(3885), + [anon_sym_PLUS] = ACTIONS(3885), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(3889), + [anon_sym_COLON_COLON] = ACTIONS(3891), + [anon_sym_LBRACE] = ACTIONS(3623), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3869), - [anon_sym_compl] = ACTIONS(3869), - [anon_sym_DASH_DASH] = ACTIONS(4404), - [anon_sym_PLUS_PLUS] = ACTIONS(4404), - [anon_sym_sizeof] = ACTIONS(3877), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3885), + [anon_sym_compl] = ACTIONS(3885), + [anon_sym_DASH_DASH] = ACTIONS(3905), + [anon_sym_PLUS_PLUS] = ACTIONS(3905), + [anon_sym_sizeof] = ACTIONS(3893), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -184485,76 +191260,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3879), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3895), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3881), - [anon_sym_new] = ACTIONS(3865), + [anon_sym_co_await] = ACTIONS(3897), + [anon_sym_new] = ACTIONS(3873), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1052] = { - [sym_expression] = STATE(4469), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_initializer_list] = STATE(7816), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1109] = { + [sym_expression] = STATE(4585), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8191), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_RPAREN] = ACTIONS(4693), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3615), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -184587,7 +191362,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -184599,166 +191374,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1053] = { - [sym_expression] = STATE(3339), - [sym__string] = STATE(3360), - [sym_conditional_expression] = STATE(3651), - [sym_assignment_expression] = STATE(3651), - [sym_pointer_expression] = STATE(3547), - [sym_unary_expression] = STATE(3651), - [sym_binary_expression] = STATE(3651), - [sym_update_expression] = STATE(3651), - [sym_cast_expression] = STATE(3651), - [sym_sizeof_expression] = STATE(3651), - [sym_alignof_expression] = STATE(3651), - [sym_offsetof_expression] = STATE(3651), - [sym_generic_expression] = STATE(3651), - [sym_subscript_expression] = STATE(3547), - [sym_call_expression] = STATE(3547), - [sym_gnu_asm_expression] = STATE(3651), - [sym_extension_expression] = STATE(3651), - [sym_field_expression] = STATE(3547), - [sym_compound_literal_expression] = STATE(3651), - [sym_parenthesized_expression] = STATE(3547), - [sym_initializer_list] = STATE(3605), - [sym_char_literal] = STATE(3360), - [sym_concatenated_string] = STATE(3360), - [sym_string_literal] = STATE(2369), - [sym_null] = STATE(3651), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7649), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3651), - [sym_raw_string_literal] = STATE(2369), - [sym_co_await_expression] = STATE(3651), - [sym_new_expression] = STATE(3651), - [sym_delete_expression] = STATE(3651), - [sym_requires_clause] = STATE(3651), - [sym_requires_expression] = STATE(3651), - [sym_lambda_expression] = STATE(3651), - [sym_lambda_capture_specifier] = STATE(5395), - [sym_fold_expression] = STATE(3651), - [sym_parameter_pack_expansion] = STATE(3651), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5773), - [sym_qualified_identifier] = STATE(3547), - [sym_qualified_type_identifier] = STATE(7649), - [sym_user_defined_literal] = STATE(3547), - [sym_identifier] = ACTIONS(2489), - [anon_sym_LPAREN2] = ACTIONS(4652), - [anon_sym_BANG] = ACTIONS(2493), - [anon_sym_TILDE] = ACTIONS(2493), - [anon_sym_DASH] = ACTIONS(2491), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_STAR] = ACTIONS(3124), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym___extension__] = ACTIONS(2495), - [anon_sym_COLON_COLON] = ACTIONS(2497), - [anon_sym_LBRACE] = ACTIONS(2499), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2501), - [anon_sym_not] = ACTIONS(2491), - [anon_sym_compl] = ACTIONS(2491), - [anon_sym_DASH_DASH] = ACTIONS(4358), - [anon_sym_PLUS_PLUS] = ACTIONS(4358), - [anon_sym_sizeof] = ACTIONS(2503), - [anon_sym___alignof__] = ACTIONS(2505), - [anon_sym___alignof] = ACTIONS(2505), - [anon_sym__alignof] = ACTIONS(2505), - [anon_sym_alignof] = ACTIONS(2505), - [anon_sym__Alignof] = ACTIONS(2505), - [anon_sym_offsetof] = ACTIONS(2507), - [anon_sym__Generic] = ACTIONS(2509), - [anon_sym_asm] = ACTIONS(2511), - [anon_sym___asm__] = ACTIONS(2511), - [anon_sym___asm] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2515), - [anon_sym_u_SQUOTE] = ACTIONS(2515), - [anon_sym_U_SQUOTE] = ACTIONS(2515), - [anon_sym_u8_SQUOTE] = ACTIONS(2515), - [anon_sym_SQUOTE] = ACTIONS(2515), - [anon_sym_L_DQUOTE] = ACTIONS(2517), - [anon_sym_u_DQUOTE] = ACTIONS(2517), - [anon_sym_U_DQUOTE] = ACTIONS(2517), - [anon_sym_u8_DQUOTE] = ACTIONS(2517), - [anon_sym_DQUOTE] = ACTIONS(2517), - [sym_true] = ACTIONS(2519), - [sym_false] = ACTIONS(2519), - [anon_sym_NULL] = ACTIONS(2521), - [anon_sym_nullptr] = ACTIONS(2521), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(2523), - [anon_sym_R_DQUOTE] = ACTIONS(2525), - [anon_sym_LR_DQUOTE] = ACTIONS(2525), - [anon_sym_uR_DQUOTE] = ACTIONS(2525), - [anon_sym_UR_DQUOTE] = ACTIONS(2525), - [anon_sym_u8R_DQUOTE] = ACTIONS(2525), - [anon_sym_co_await] = ACTIONS(2527), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_requires] = ACTIONS(2531), - [sym_this] = ACTIONS(2519), - }, - [1054] = { - [sym_expression] = STATE(4283), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_initializer_list] = STATE(3900), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1110] = { + [sym_expression] = STATE(4604), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8351), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_RPAREN] = ACTIONS(4695), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3615), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -184791,7 +191464,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -184803,273 +191476,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1055] = { - [sym_expression] = STATE(4312), - [sym__string] = STATE(4380), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3253), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3253), - [sym_call_expression] = STATE(3253), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3253), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3253), - [sym_initializer_list] = STATE(6951), - [sym_char_literal] = STATE(4380), - [sym_concatenated_string] = STATE(4380), - [sym_string_literal] = STATE(3416), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3416), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3253), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3253), - [sym_identifier] = ACTIONS(3823), - [anon_sym_LPAREN2] = ACTIONS(4557), - [anon_sym_BANG] = ACTIONS(3827), - [anon_sym_TILDE] = ACTIONS(3827), - [anon_sym_DASH] = ACTIONS(3825), - [anon_sym_PLUS] = ACTIONS(3825), - [anon_sym_STAR] = ACTIONS(4382), - [anon_sym_AMP] = ACTIONS(4382), - [anon_sym___extension__] = ACTIONS(3829), - [anon_sym_COLON_COLON] = ACTIONS(3831), - [anon_sym_LBRACE] = ACTIONS(3615), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3825), - [anon_sym_compl] = ACTIONS(3825), - [anon_sym_DASH_DASH] = ACTIONS(4384), - [anon_sym_PLUS_PLUS] = ACTIONS(4384), - [anon_sym_sizeof] = ACTIONS(3833), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3835), - [anon_sym_L_SQUOTE] = ACTIONS(3837), - [anon_sym_u_SQUOTE] = ACTIONS(3837), - [anon_sym_U_SQUOTE] = ACTIONS(3837), - [anon_sym_u8_SQUOTE] = ACTIONS(3837), - [anon_sym_SQUOTE] = ACTIONS(3837), - [anon_sym_L_DQUOTE] = ACTIONS(3839), - [anon_sym_u_DQUOTE] = ACTIONS(3839), - [anon_sym_U_DQUOTE] = ACTIONS(3839), - [anon_sym_u8_DQUOTE] = ACTIONS(3839), - [anon_sym_DQUOTE] = ACTIONS(3839), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3841), - [anon_sym_R_DQUOTE] = ACTIONS(3843), - [anon_sym_LR_DQUOTE] = ACTIONS(3843), - [anon_sym_uR_DQUOTE] = ACTIONS(3843), - [anon_sym_UR_DQUOTE] = ACTIONS(3843), - [anon_sym_u8R_DQUOTE] = ACTIONS(3843), - [anon_sym_co_await] = ACTIONS(3845), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), - }, - [1056] = { - [sym_expression] = STATE(3171), - [sym__string] = STATE(3235), - [sym_conditional_expression] = STATE(3373), - [sym_assignment_expression] = STATE(3373), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3373), - [sym_binary_expression] = STATE(3373), - [sym_update_expression] = STATE(3373), - [sym_cast_expression] = STATE(3373), - [sym_sizeof_expression] = STATE(3373), - [sym_alignof_expression] = STATE(3373), - [sym_offsetof_expression] = STATE(3373), - [sym_generic_expression] = STATE(3373), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3373), - [sym_extension_expression] = STATE(3373), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3373), - [sym_parenthesized_expression] = STATE(3365), - [sym_initializer_list] = STATE(3451), - [sym_char_literal] = STATE(3235), - [sym_concatenated_string] = STATE(3235), - [sym_string_literal] = STATE(2358), - [sym_null] = STATE(3373), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7814), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3373), - [sym_raw_string_literal] = STATE(2358), - [sym_co_await_expression] = STATE(3373), - [sym_new_expression] = STATE(3373), - [sym_delete_expression] = STATE(3373), - [sym_requires_clause] = STATE(3373), - [sym_requires_expression] = STATE(3373), - [sym_lambda_expression] = STATE(3373), - [sym_lambda_capture_specifier] = STATE(5414), - [sym_fold_expression] = STATE(3373), - [sym_parameter_pack_expansion] = STATE(3373), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3365), - [sym_qualified_type_identifier] = STATE(7814), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2453), - [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(2455), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACE] = ACTIONS(2457), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), - }, - [1057] = { - [sym_expression] = STATE(4505), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3568), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3568), - [sym_call_expression] = STATE(3568), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3568), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3568), - [sym_initializer_list] = STATE(3900), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3568), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3568), - [sym_identifier] = ACTIONS(3867), - [anon_sym_LPAREN2] = ACTIONS(4642), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_TILDE] = ACTIONS(3871), - [anon_sym_DASH] = ACTIONS(3869), - [anon_sym_PLUS] = ACTIONS(3869), - [anon_sym_STAR] = ACTIONS(4312), - [anon_sym_AMP] = ACTIONS(4312), - [anon_sym___extension__] = ACTIONS(3873), - [anon_sym_COLON_COLON] = ACTIONS(3875), - [anon_sym_LBRACE] = ACTIONS(3615), + [1111] = { + [sym_expression] = STATE(4625), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8867), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3597), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3597), + [sym_call_expression] = STATE(3597), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3597), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3597), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3597), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3597), + [sym_identifier] = ACTIONS(3857), + [anon_sym_LPAREN2] = ACTIONS(4648), + [anon_sym_BANG] = ACTIONS(3861), + [anon_sym_TILDE] = ACTIONS(3861), + [anon_sym_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3859), + [anon_sym_STAR] = ACTIONS(4366), + [anon_sym_AMP] = ACTIONS(4366), + [anon_sym___extension__] = ACTIONS(3863), + [anon_sym_COLON] = ACTIONS(4697), + [anon_sym_COLON_COLON] = ACTIONS(3865), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3869), - [anon_sym_compl] = ACTIONS(3869), - [anon_sym_DASH_DASH] = ACTIONS(4404), - [anon_sym_PLUS_PLUS] = ACTIONS(4404), - [anon_sym_sizeof] = ACTIONS(3877), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3859), + [anon_sym_compl] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(4368), + [anon_sym_PLUS_PLUS] = ACTIONS(4368), + [anon_sym_sizeof] = ACTIONS(3867), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -185097,81 +191566,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3879), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3869), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3881), - [anon_sym_new] = ACTIONS(3865), + [anon_sym_co_await] = ACTIONS(3871), + [anon_sym_new] = ACTIONS(3873), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1058] = { - [sym_expression] = STATE(4544), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8011), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3568), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3568), - [sym_call_expression] = STATE(3568), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3568), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3568), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3568), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3568), - [sym_identifier] = ACTIONS(3867), - [anon_sym_LPAREN2] = ACTIONS(4642), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_TILDE] = ACTIONS(3871), - [anon_sym_DASH] = ACTIONS(3869), - [anon_sym_PLUS] = ACTIONS(3869), - [anon_sym_STAR] = ACTIONS(4312), - [anon_sym_AMP] = ACTIONS(4312), - [anon_sym___extension__] = ACTIONS(3873), - [anon_sym_COLON] = ACTIONS(4654), - [anon_sym_COLON_COLON] = ACTIONS(3875), + [1112] = { + [sym_expression] = STATE(4474), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3728), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3728), + [sym_call_expression] = STATE(3728), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3728), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3728), + [sym_initializer_list] = STATE(7781), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3728), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3728), + [sym_identifier] = ACTIONS(3883), + [anon_sym_LPAREN2] = ACTIONS(3901), + [anon_sym_BANG] = ACTIONS(3887), + [anon_sym_TILDE] = ACTIONS(3887), + [anon_sym_DASH] = ACTIONS(3885), + [anon_sym_PLUS] = ACTIONS(3885), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(3889), + [anon_sym_COLON_COLON] = ACTIONS(3891), + [anon_sym_LBRACE] = ACTIONS(3623), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3869), - [anon_sym_compl] = ACTIONS(3869), - [anon_sym_DASH_DASH] = ACTIONS(4404), - [anon_sym_PLUS_PLUS] = ACTIONS(4404), - [anon_sym_sizeof] = ACTIONS(3877), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3885), + [anon_sym_compl] = ACTIONS(3885), + [anon_sym_DASH_DASH] = ACTIONS(3905), + [anon_sym_PLUS_PLUS] = ACTIONS(3905), + [anon_sym_sizeof] = ACTIONS(3893), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -185199,81 +191668,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3879), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3895), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3881), - [anon_sym_new] = ACTIONS(3865), + [anon_sym_co_await] = ACTIONS(3897), + [anon_sym_new] = ACTIONS(3873), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1059] = { - [sym_expression] = STATE(4498), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3568), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3568), - [sym_call_expression] = STATE(3568), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3568), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3568), - [sym_initializer_list] = STATE(3805), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3568), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3568), - [sym_identifier] = ACTIONS(3867), - [anon_sym_LPAREN2] = ACTIONS(4642), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_TILDE] = ACTIONS(3871), - [anon_sym_DASH] = ACTIONS(3869), - [anon_sym_PLUS] = ACTIONS(3869), - [anon_sym_STAR] = ACTIONS(4312), - [anon_sym_AMP] = ACTIONS(4312), - [anon_sym___extension__] = ACTIONS(3873), - [anon_sym_COLON_COLON] = ACTIONS(3875), - [anon_sym_LBRACE] = ACTIONS(3615), + [1113] = { + [sym_expression] = STATE(4536), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(8603), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3597), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3597), + [sym_call_expression] = STATE(3597), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3597), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3597), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3597), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3597), + [sym_identifier] = ACTIONS(3857), + [anon_sym_LPAREN2] = ACTIONS(4648), + [anon_sym_BANG] = ACTIONS(3861), + [anon_sym_TILDE] = ACTIONS(3861), + [anon_sym_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3859), + [anon_sym_STAR] = ACTIONS(4366), + [anon_sym_AMP] = ACTIONS(4366), + [anon_sym___extension__] = ACTIONS(3863), + [anon_sym_COLON] = ACTIONS(4699), + [anon_sym_COLON_COLON] = ACTIONS(3865), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3869), - [anon_sym_compl] = ACTIONS(3869), - [anon_sym_DASH_DASH] = ACTIONS(4404), - [anon_sym_PLUS_PLUS] = ACTIONS(4404), - [anon_sym_sizeof] = ACTIONS(3877), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3859), + [anon_sym_compl] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(4368), + [anon_sym_PLUS_PLUS] = ACTIONS(4368), + [anon_sym_sizeof] = ACTIONS(3867), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -185301,489 +191770,1494 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3879), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3869), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3881), - [anon_sym_new] = ACTIONS(3865), + [anon_sym_co_await] = ACTIONS(3871), + [anon_sym_new] = ACTIONS(3873), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1060] = { - [sym_expression] = STATE(3572), - [sym__string] = STATE(3714), - [sym_conditional_expression] = STATE(3908), - [sym_assignment_expression] = STATE(3908), - [sym_pointer_expression] = STATE(3506), - [sym_unary_expression] = STATE(3908), - [sym_binary_expression] = STATE(3908), - [sym_update_expression] = STATE(3908), - [sym_cast_expression] = STATE(3908), - [sym_sizeof_expression] = STATE(3908), - [sym_alignof_expression] = STATE(3908), - [sym_offsetof_expression] = STATE(3908), - [sym_generic_expression] = STATE(3908), - [sym_subscript_expression] = STATE(3506), - [sym_call_expression] = STATE(3506), - [sym_gnu_asm_expression] = STATE(3908), - [sym_extension_expression] = STATE(3908), - [sym_field_expression] = STATE(3506), - [sym_compound_literal_expression] = STATE(3908), - [sym_parenthesized_expression] = STATE(3506), - [sym_initializer_list] = STATE(3860), - [sym_char_literal] = STATE(3714), - [sym_concatenated_string] = STATE(3714), - [sym_string_literal] = STATE(2566), - [sym_null] = STATE(3908), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7868), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3908), - [sym_raw_string_literal] = STATE(2566), - [sym_co_await_expression] = STATE(3908), - [sym_new_expression] = STATE(3908), - [sym_delete_expression] = STATE(3908), - [sym_requires_clause] = STATE(3908), - [sym_requires_expression] = STATE(3908), - [sym_lambda_expression] = STATE(3908), - [sym_lambda_capture_specifier] = STATE(5415), - [sym_fold_expression] = STATE(3908), - [sym_parameter_pack_expansion] = STATE(3908), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3506), - [sym_qualified_type_identifier] = STATE(7868), - [sym_user_defined_literal] = STATE(3506), - [sym_identifier] = ACTIONS(2605), - [anon_sym_LPAREN2] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1870), - [anon_sym_TILDE] = ACTIONS(1870), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_PLUS] = ACTIONS(1872), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(2607), - [anon_sym_COLON_COLON] = ACTIONS(1880), - [anon_sym_LBRACE] = ACTIONS(2609), + [1114] = { + [sym_expression] = STATE(3183), + [sym__string] = STATE(3393), + [sym_conditional_expression] = STATE(3401), + [sym_assignment_expression] = STATE(3401), + [sym_pointer_expression] = STATE(3405), + [sym_unary_expression] = STATE(3401), + [sym_binary_expression] = STATE(3401), + [sym_update_expression] = STATE(3401), + [sym_cast_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3401), + [sym_alignof_expression] = STATE(3401), + [sym_offsetof_expression] = STATE(3401), + [sym_generic_expression] = STATE(3401), + [sym_subscript_expression] = STATE(3405), + [sym_call_expression] = STATE(3405), + [sym_gnu_asm_expression] = STATE(3401), + [sym_extension_expression] = STATE(3401), + [sym_field_expression] = STATE(3405), + [sym_compound_literal_expression] = STATE(3401), + [sym_parenthesized_expression] = STATE(3405), + [sym_char_literal] = STATE(3393), + [sym_concatenated_string] = STATE(3393), + [sym_string_literal] = STATE(2380), + [sym_null] = STATE(3401), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7745), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3401), + [sym_raw_string_literal] = STATE(2380), + [sym_co_await_expression] = STATE(3401), + [sym_new_expression] = STATE(3401), + [sym_delete_expression] = STATE(3401), + [sym_requires_clause] = STATE(3401), + [sym_requires_expression] = STATE(3401), + [sym_lambda_expression] = STATE(3401), + [sym_lambda_capture_specifier] = STATE(5494), + [sym_fold_expression] = STATE(3401), + [sym_parameter_pack_expansion] = STATE(3401), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3405), + [sym_qualified_type_identifier] = STATE(7745), + [sym_user_defined_literal] = STATE(3405), + [sym_identifier] = ACTIONS(2453), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4701), + [anon_sym_LPAREN2] = ACTIONS(2018), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(2455), + [anon_sym_COLON_COLON] = ACTIONS(1804), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2611), - [anon_sym_not] = ACTIONS(1872), - [anon_sym_compl] = ACTIONS(1872), - [anon_sym_DASH_DASH] = ACTIONS(1892), - [anon_sym_PLUS_PLUS] = ACTIONS(1892), - [anon_sym_sizeof] = ACTIONS(1894), - [anon_sym___alignof__] = ACTIONS(1896), - [anon_sym___alignof] = ACTIONS(1896), - [anon_sym__alignof] = ACTIONS(1896), - [anon_sym_alignof] = ACTIONS(1896), - [anon_sym__Alignof] = ACTIONS(1896), - [anon_sym_offsetof] = ACTIONS(1898), - [anon_sym__Generic] = ACTIONS(1900), - [anon_sym_asm] = ACTIONS(1902), - [anon_sym___asm__] = ACTIONS(1902), - [anon_sym___asm] = ACTIONS(1902), - [sym_number_literal] = ACTIONS(1904), - [anon_sym_L_SQUOTE] = ACTIONS(1906), - [anon_sym_u_SQUOTE] = ACTIONS(1906), - [anon_sym_U_SQUOTE] = ACTIONS(1906), - [anon_sym_u8_SQUOTE] = ACTIONS(1906), - [anon_sym_SQUOTE] = ACTIONS(1906), - [anon_sym_L_DQUOTE] = ACTIONS(1908), - [anon_sym_u_DQUOTE] = ACTIONS(1908), - [anon_sym_U_DQUOTE] = ACTIONS(1908), - [anon_sym_u8_DQUOTE] = ACTIONS(1908), - [anon_sym_DQUOTE] = ACTIONS(1908), - [sym_true] = ACTIONS(1910), - [sym_false] = ACTIONS(1910), - [anon_sym_NULL] = ACTIONS(1912), - [anon_sym_nullptr] = ACTIONS(1912), + [sym_primitive_type] = ACTIONS(2459), + [anon_sym_not] = ACTIONS(1796), + [anon_sym_compl] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_sizeof] = ACTIONS(1824), + [anon_sym___alignof__] = ACTIONS(1826), + [anon_sym___alignof] = ACTIONS(1826), + [anon_sym__alignof] = ACTIONS(1826), + [anon_sym_alignof] = ACTIONS(1826), + [anon_sym__Alignof] = ACTIONS(1826), + [anon_sym_offsetof] = ACTIONS(1828), + [anon_sym__Generic] = ACTIONS(1830), + [anon_sym_asm] = ACTIONS(1832), + [anon_sym___asm__] = ACTIONS(1832), + [anon_sym___asm] = ACTIONS(1832), + [sym_number_literal] = ACTIONS(1834), + [anon_sym_L_SQUOTE] = ACTIONS(1836), + [anon_sym_u_SQUOTE] = ACTIONS(1836), + [anon_sym_U_SQUOTE] = ACTIONS(1836), + [anon_sym_u8_SQUOTE] = ACTIONS(1836), + [anon_sym_SQUOTE] = ACTIONS(1836), + [anon_sym_L_DQUOTE] = ACTIONS(1838), + [anon_sym_u_DQUOTE] = ACTIONS(1838), + [anon_sym_U_DQUOTE] = ACTIONS(1838), + [anon_sym_u8_DQUOTE] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym_true] = ACTIONS(1840), + [sym_false] = ACTIONS(1840), + [anon_sym_NULL] = ACTIONS(1842), + [anon_sym_nullptr] = ACTIONS(1842), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1916), - [anon_sym_R_DQUOTE] = ACTIONS(1918), - [anon_sym_LR_DQUOTE] = ACTIONS(1918), - [anon_sym_uR_DQUOTE] = ACTIONS(1918), - [anon_sym_UR_DQUOTE] = ACTIONS(1918), - [anon_sym_u8R_DQUOTE] = ACTIONS(1918), - [anon_sym_co_await] = ACTIONS(1920), - [anon_sym_new] = ACTIONS(1922), - [anon_sym_requires] = ACTIONS(1924), - [sym_this] = ACTIONS(1910), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1852), + [anon_sym_R_DQUOTE] = ACTIONS(1854), + [anon_sym_LR_DQUOTE] = ACTIONS(1854), + [anon_sym_uR_DQUOTE] = ACTIONS(1854), + [anon_sym_UR_DQUOTE] = ACTIONS(1854), + [anon_sym_u8R_DQUOTE] = ACTIONS(1854), + [anon_sym_co_await] = ACTIONS(1856), + [anon_sym_new] = ACTIONS(1858), + [anon_sym_requires] = ACTIONS(1860), + [sym_this] = ACTIONS(1840), }, - [1061] = { - [sym_expression] = STATE(3578), - [sym__string] = STATE(3714), - [sym_conditional_expression] = STATE(3908), - [sym_assignment_expression] = STATE(3908), - [sym_pointer_expression] = STATE(3506), - [sym_unary_expression] = STATE(3908), - [sym_binary_expression] = STATE(3908), - [sym_update_expression] = STATE(3908), - [sym_cast_expression] = STATE(3908), - [sym_sizeof_expression] = STATE(3908), - [sym_alignof_expression] = STATE(3908), - [sym_offsetof_expression] = STATE(3908), - [sym_generic_expression] = STATE(3908), - [sym_subscript_expression] = STATE(3506), - [sym_call_expression] = STATE(3506), - [sym_gnu_asm_expression] = STATE(3908), - [sym_extension_expression] = STATE(3908), - [sym_field_expression] = STATE(3506), - [sym_compound_literal_expression] = STATE(3908), - [sym_parenthesized_expression] = STATE(3506), - [sym_initializer_list] = STATE(3864), - [sym_char_literal] = STATE(3714), - [sym_concatenated_string] = STATE(3714), - [sym_string_literal] = STATE(2566), - [sym_null] = STATE(3908), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7868), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3908), - [sym_raw_string_literal] = STATE(2566), - [sym_co_await_expression] = STATE(3908), - [sym_new_expression] = STATE(3908), - [sym_delete_expression] = STATE(3908), - [sym_requires_clause] = STATE(3908), - [sym_requires_expression] = STATE(3908), - [sym_lambda_expression] = STATE(3908), - [sym_lambda_capture_specifier] = STATE(5415), - [sym_fold_expression] = STATE(3908), - [sym_parameter_pack_expansion] = STATE(3908), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3506), - [sym_qualified_type_identifier] = STATE(7868), - [sym_user_defined_literal] = STATE(3506), - [sym_identifier] = ACTIONS(2605), - [anon_sym_LPAREN2] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1870), - [anon_sym_TILDE] = ACTIONS(1870), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_PLUS] = ACTIONS(1872), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(2607), - [anon_sym_COLON_COLON] = ACTIONS(1880), - [anon_sym_LBRACE] = ACTIONS(2609), + [1115] = { + [sym_expression] = STATE(3617), + [sym__string] = STATE(3775), + [sym_conditional_expression] = STATE(3886), + [sym_assignment_expression] = STATE(3886), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(3886), + [sym_binary_expression] = STATE(3886), + [sym_update_expression] = STATE(3886), + [sym_cast_expression] = STATE(3886), + [sym_sizeof_expression] = STATE(3886), + [sym_alignof_expression] = STATE(3886), + [sym_offsetof_expression] = STATE(3886), + [sym_generic_expression] = STATE(3886), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(3886), + [sym_extension_expression] = STATE(3886), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(3886), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(3775), + [sym_concatenated_string] = STATE(3775), + [sym_string_literal] = STATE(2596), + [sym_null] = STATE(3886), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7756), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3886), + [sym_raw_string_literal] = STATE(2596), + [sym_co_await_expression] = STATE(3886), + [sym_new_expression] = STATE(3886), + [sym_delete_expression] = STATE(3886), + [sym_requires_clause] = STATE(3886), + [sym_requires_expression] = STATE(3886), + [sym_lambda_expression] = STATE(3886), + [sym_lambda_capture_specifier] = STATE(5492), + [sym_fold_expression] = STATE(3886), + [sym_parameter_pack_expansion] = STATE(3886), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(7756), + [sym_user_defined_literal] = STATE(3522), + [sym_identifier] = ACTIONS(2619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4704), + [anon_sym_LPAREN2] = ACTIONS(1888), + [anon_sym_BANG] = ACTIONS(1890), + [anon_sym_TILDE] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1892), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(2621), + [anon_sym_COLON_COLON] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2611), - [anon_sym_not] = ACTIONS(1872), - [anon_sym_compl] = ACTIONS(1872), - [anon_sym_DASH_DASH] = ACTIONS(1892), - [anon_sym_PLUS_PLUS] = ACTIONS(1892), - [anon_sym_sizeof] = ACTIONS(1894), - [anon_sym___alignof__] = ACTIONS(1896), - [anon_sym___alignof] = ACTIONS(1896), - [anon_sym__alignof] = ACTIONS(1896), - [anon_sym_alignof] = ACTIONS(1896), - [anon_sym__Alignof] = ACTIONS(1896), - [anon_sym_offsetof] = ACTIONS(1898), - [anon_sym__Generic] = ACTIONS(1900), - [anon_sym_asm] = ACTIONS(1902), - [anon_sym___asm__] = ACTIONS(1902), - [anon_sym___asm] = ACTIONS(1902), - [sym_number_literal] = ACTIONS(1904), - [anon_sym_L_SQUOTE] = ACTIONS(1906), - [anon_sym_u_SQUOTE] = ACTIONS(1906), - [anon_sym_U_SQUOTE] = ACTIONS(1906), - [anon_sym_u8_SQUOTE] = ACTIONS(1906), - [anon_sym_SQUOTE] = ACTIONS(1906), - [anon_sym_L_DQUOTE] = ACTIONS(1908), - [anon_sym_u_DQUOTE] = ACTIONS(1908), - [anon_sym_U_DQUOTE] = ACTIONS(1908), - [anon_sym_u8_DQUOTE] = ACTIONS(1908), - [anon_sym_DQUOTE] = ACTIONS(1908), - [sym_true] = ACTIONS(1910), - [sym_false] = ACTIONS(1910), - [anon_sym_NULL] = ACTIONS(1912), - [anon_sym_nullptr] = ACTIONS(1912), + [sym_primitive_type] = ACTIONS(2625), + [anon_sym_not] = ACTIONS(1892), + [anon_sym_compl] = ACTIONS(1892), + [anon_sym_DASH_DASH] = ACTIONS(1902), + [anon_sym_PLUS_PLUS] = ACTIONS(1902), + [anon_sym_sizeof] = ACTIONS(1904), + [anon_sym___alignof__] = ACTIONS(1906), + [anon_sym___alignof] = ACTIONS(1906), + [anon_sym__alignof] = ACTIONS(1906), + [anon_sym_alignof] = ACTIONS(1906), + [anon_sym__Alignof] = ACTIONS(1906), + [anon_sym_offsetof] = ACTIONS(1908), + [anon_sym__Generic] = ACTIONS(1910), + [anon_sym_asm] = ACTIONS(1912), + [anon_sym___asm__] = ACTIONS(1912), + [anon_sym___asm] = ACTIONS(1912), + [sym_number_literal] = ACTIONS(1914), + [anon_sym_L_SQUOTE] = ACTIONS(1916), + [anon_sym_u_SQUOTE] = ACTIONS(1916), + [anon_sym_U_SQUOTE] = ACTIONS(1916), + [anon_sym_u8_SQUOTE] = ACTIONS(1916), + [anon_sym_SQUOTE] = ACTIONS(1916), + [anon_sym_L_DQUOTE] = ACTIONS(1918), + [anon_sym_u_DQUOTE] = ACTIONS(1918), + [anon_sym_U_DQUOTE] = ACTIONS(1918), + [anon_sym_u8_DQUOTE] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1918), + [sym_true] = ACTIONS(1920), + [sym_false] = ACTIONS(1920), + [anon_sym_NULL] = ACTIONS(1922), + [anon_sym_nullptr] = ACTIONS(1922), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1916), - [anon_sym_R_DQUOTE] = ACTIONS(1918), - [anon_sym_LR_DQUOTE] = ACTIONS(1918), - [anon_sym_uR_DQUOTE] = ACTIONS(1918), - [anon_sym_UR_DQUOTE] = ACTIONS(1918), - [anon_sym_u8R_DQUOTE] = ACTIONS(1918), - [anon_sym_co_await] = ACTIONS(1920), - [anon_sym_new] = ACTIONS(1922), - [anon_sym_requires] = ACTIONS(1924), - [sym_this] = ACTIONS(1910), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1924), + [anon_sym_R_DQUOTE] = ACTIONS(1926), + [anon_sym_LR_DQUOTE] = ACTIONS(1926), + [anon_sym_uR_DQUOTE] = ACTIONS(1926), + [anon_sym_UR_DQUOTE] = ACTIONS(1926), + [anon_sym_u8R_DQUOTE] = ACTIONS(1926), + [anon_sym_co_await] = ACTIONS(1928), + [anon_sym_new] = ACTIONS(1930), + [anon_sym_requires] = ACTIONS(1932), + [sym_this] = ACTIONS(1920), }, - [1062] = { - [sym_expression] = STATE(4443), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(7931), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3568), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3568), - [sym_call_expression] = STATE(3568), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3568), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3568), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3568), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3568), - [sym_identifier] = ACTIONS(3867), - [anon_sym_LPAREN2] = ACTIONS(4642), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_TILDE] = ACTIONS(3871), - [anon_sym_DASH] = ACTIONS(3869), - [anon_sym_PLUS] = ACTIONS(3869), - [anon_sym_STAR] = ACTIONS(4312), - [anon_sym_AMP] = ACTIONS(4312), - [anon_sym___extension__] = ACTIONS(3873), - [anon_sym_COLON] = ACTIONS(4656), - [anon_sym_COLON_COLON] = ACTIONS(3875), + [1116] = { + [sym_expression] = STATE(3617), + [sym__string] = STATE(3775), + [sym_conditional_expression] = STATE(3886), + [sym_assignment_expression] = STATE(3886), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(3886), + [sym_binary_expression] = STATE(3886), + [sym_update_expression] = STATE(3886), + [sym_cast_expression] = STATE(3886), + [sym_sizeof_expression] = STATE(3886), + [sym_alignof_expression] = STATE(3886), + [sym_offsetof_expression] = STATE(3886), + [sym_generic_expression] = STATE(3886), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(3886), + [sym_extension_expression] = STATE(3886), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(3886), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(3775), + [sym_concatenated_string] = STATE(3775), + [sym_string_literal] = STATE(2596), + [sym_null] = STATE(3886), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7756), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3886), + [sym_raw_string_literal] = STATE(2596), + [sym_co_await_expression] = STATE(3886), + [sym_new_expression] = STATE(3886), + [sym_delete_expression] = STATE(3886), + [sym_requires_clause] = STATE(3886), + [sym_requires_expression] = STATE(3886), + [sym_lambda_expression] = STATE(3886), + [sym_lambda_capture_specifier] = STATE(5492), + [sym_fold_expression] = STATE(3886), + [sym_parameter_pack_expansion] = STATE(3886), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(7756), + [sym_user_defined_literal] = STATE(3522), + [sym_identifier] = ACTIONS(2619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4707), + [anon_sym_LPAREN2] = ACTIONS(1888), + [anon_sym_BANG] = ACTIONS(1890), + [anon_sym_TILDE] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1892), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(2621), + [anon_sym_COLON_COLON] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3869), - [anon_sym_compl] = ACTIONS(3869), - [anon_sym_DASH_DASH] = ACTIONS(4404), - [anon_sym_PLUS_PLUS] = ACTIONS(4404), - [anon_sym_sizeof] = ACTIONS(3877), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), + [sym_primitive_type] = ACTIONS(2625), + [anon_sym_not] = ACTIONS(1892), + [anon_sym_compl] = ACTIONS(1892), + [anon_sym_DASH_DASH] = ACTIONS(1902), + [anon_sym_PLUS_PLUS] = ACTIONS(1902), + [anon_sym_sizeof] = ACTIONS(1904), + [anon_sym___alignof__] = ACTIONS(1906), + [anon_sym___alignof] = ACTIONS(1906), + [anon_sym__alignof] = ACTIONS(1906), + [anon_sym_alignof] = ACTIONS(1906), + [anon_sym__Alignof] = ACTIONS(1906), + [anon_sym_offsetof] = ACTIONS(1908), + [anon_sym__Generic] = ACTIONS(1910), + [anon_sym_asm] = ACTIONS(1912), + [anon_sym___asm__] = ACTIONS(1912), + [anon_sym___asm] = ACTIONS(1912), + [sym_number_literal] = ACTIONS(1914), + [anon_sym_L_SQUOTE] = ACTIONS(1916), + [anon_sym_u_SQUOTE] = ACTIONS(1916), + [anon_sym_U_SQUOTE] = ACTIONS(1916), + [anon_sym_u8_SQUOTE] = ACTIONS(1916), + [anon_sym_SQUOTE] = ACTIONS(1916), + [anon_sym_L_DQUOTE] = ACTIONS(1918), + [anon_sym_u_DQUOTE] = ACTIONS(1918), + [anon_sym_U_DQUOTE] = ACTIONS(1918), + [anon_sym_u8_DQUOTE] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1918), + [sym_true] = ACTIONS(1920), + [sym_false] = ACTIONS(1920), + [anon_sym_NULL] = ACTIONS(1922), + [anon_sym_nullptr] = ACTIONS(1922), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3879), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3881), - [anon_sym_new] = ACTIONS(3865), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1924), + [anon_sym_R_DQUOTE] = ACTIONS(1926), + [anon_sym_LR_DQUOTE] = ACTIONS(1926), + [anon_sym_uR_DQUOTE] = ACTIONS(1926), + [anon_sym_UR_DQUOTE] = ACTIONS(1926), + [anon_sym_u8R_DQUOTE] = ACTIONS(1926), + [anon_sym_co_await] = ACTIONS(1928), + [anon_sym_new] = ACTIONS(1930), + [anon_sym_requires] = ACTIONS(1932), + [sym_this] = ACTIONS(1920), }, - [1063] = { - [sym_expression] = STATE(3797), - [sym__string] = STATE(4380), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3253), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3253), - [sym_call_expression] = STATE(3253), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3253), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3253), - [sym_initializer_list] = STATE(3805), - [sym_char_literal] = STATE(4380), - [sym_concatenated_string] = STATE(4380), - [sym_string_literal] = STATE(3416), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3416), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3253), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3253), - [sym_identifier] = ACTIONS(3823), - [anon_sym_LPAREN2] = ACTIONS(4557), - [anon_sym_BANG] = ACTIONS(3827), - [anon_sym_TILDE] = ACTIONS(3827), - [anon_sym_DASH] = ACTIONS(3825), - [anon_sym_PLUS] = ACTIONS(3825), - [anon_sym_STAR] = ACTIONS(4382), - [anon_sym_AMP] = ACTIONS(4382), - [anon_sym___extension__] = ACTIONS(3829), - [anon_sym_COLON_COLON] = ACTIONS(3831), - [anon_sym_LBRACE] = ACTIONS(3615), + [1117] = { + [sym_expression] = STATE(3639), + [sym__string] = STATE(3775), + [sym_conditional_expression] = STATE(3886), + [sym_assignment_expression] = STATE(3886), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(3886), + [sym_binary_expression] = STATE(3886), + [sym_update_expression] = STATE(3886), + [sym_cast_expression] = STATE(3886), + [sym_sizeof_expression] = STATE(3886), + [sym_alignof_expression] = STATE(3886), + [sym_offsetof_expression] = STATE(3886), + [sym_generic_expression] = STATE(3886), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(3886), + [sym_extension_expression] = STATE(3886), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(3886), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(3775), + [sym_concatenated_string] = STATE(3775), + [sym_string_literal] = STATE(2596), + [sym_null] = STATE(3886), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7756), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3886), + [sym_raw_string_literal] = STATE(2596), + [sym_co_await_expression] = STATE(3886), + [sym_new_expression] = STATE(3886), + [sym_delete_expression] = STATE(3886), + [sym_requires_clause] = STATE(3886), + [sym_requires_expression] = STATE(3886), + [sym_lambda_expression] = STATE(3886), + [sym_lambda_capture_specifier] = STATE(5492), + [sym_fold_expression] = STATE(3886), + [sym_parameter_pack_expansion] = STATE(3886), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(7756), + [sym_user_defined_literal] = STATE(3522), + [sym_identifier] = ACTIONS(2619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4710), + [anon_sym_LPAREN2] = ACTIONS(1888), + [anon_sym_BANG] = ACTIONS(1890), + [anon_sym_TILDE] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1892), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(2621), + [anon_sym_COLON_COLON] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3825), - [anon_sym_compl] = ACTIONS(3825), - [anon_sym_DASH_DASH] = ACTIONS(4384), - [anon_sym_PLUS_PLUS] = ACTIONS(4384), - [anon_sym_sizeof] = ACTIONS(3833), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3835), - [anon_sym_L_SQUOTE] = ACTIONS(3837), - [anon_sym_u_SQUOTE] = ACTIONS(3837), - [anon_sym_U_SQUOTE] = ACTIONS(3837), - [anon_sym_u8_SQUOTE] = ACTIONS(3837), - [anon_sym_SQUOTE] = ACTIONS(3837), - [anon_sym_L_DQUOTE] = ACTIONS(3839), - [anon_sym_u_DQUOTE] = ACTIONS(3839), - [anon_sym_U_DQUOTE] = ACTIONS(3839), - [anon_sym_u8_DQUOTE] = ACTIONS(3839), - [anon_sym_DQUOTE] = ACTIONS(3839), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), + [sym_primitive_type] = ACTIONS(2625), + [anon_sym_not] = ACTIONS(1892), + [anon_sym_compl] = ACTIONS(1892), + [anon_sym_DASH_DASH] = ACTIONS(1902), + [anon_sym_PLUS_PLUS] = ACTIONS(1902), + [anon_sym_sizeof] = ACTIONS(1904), + [anon_sym___alignof__] = ACTIONS(1906), + [anon_sym___alignof] = ACTIONS(1906), + [anon_sym__alignof] = ACTIONS(1906), + [anon_sym_alignof] = ACTIONS(1906), + [anon_sym__Alignof] = ACTIONS(1906), + [anon_sym_offsetof] = ACTIONS(1908), + [anon_sym__Generic] = ACTIONS(1910), + [anon_sym_asm] = ACTIONS(1912), + [anon_sym___asm__] = ACTIONS(1912), + [anon_sym___asm] = ACTIONS(1912), + [sym_number_literal] = ACTIONS(1914), + [anon_sym_L_SQUOTE] = ACTIONS(1916), + [anon_sym_u_SQUOTE] = ACTIONS(1916), + [anon_sym_U_SQUOTE] = ACTIONS(1916), + [anon_sym_u8_SQUOTE] = ACTIONS(1916), + [anon_sym_SQUOTE] = ACTIONS(1916), + [anon_sym_L_DQUOTE] = ACTIONS(1918), + [anon_sym_u_DQUOTE] = ACTIONS(1918), + [anon_sym_U_DQUOTE] = ACTIONS(1918), + [anon_sym_u8_DQUOTE] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1918), + [sym_true] = ACTIONS(1920), + [sym_false] = ACTIONS(1920), + [anon_sym_NULL] = ACTIONS(1922), + [anon_sym_nullptr] = ACTIONS(1922), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3841), - [anon_sym_R_DQUOTE] = ACTIONS(3843), - [anon_sym_LR_DQUOTE] = ACTIONS(3843), - [anon_sym_uR_DQUOTE] = ACTIONS(3843), - [anon_sym_UR_DQUOTE] = ACTIONS(3843), - [anon_sym_u8R_DQUOTE] = ACTIONS(3843), - [anon_sym_co_await] = ACTIONS(3845), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1924), + [anon_sym_R_DQUOTE] = ACTIONS(1926), + [anon_sym_LR_DQUOTE] = ACTIONS(1926), + [anon_sym_uR_DQUOTE] = ACTIONS(1926), + [anon_sym_UR_DQUOTE] = ACTIONS(1926), + [anon_sym_u8R_DQUOTE] = ACTIONS(1926), + [anon_sym_co_await] = ACTIONS(1928), + [anon_sym_new] = ACTIONS(1930), + [anon_sym_requires] = ACTIONS(1932), + [sym_this] = ACTIONS(1920), }, - [1064] = { - [sym_expression] = STATE(3797), - [sym__string] = STATE(4199), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(2935), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(2935), - [sym_call_expression] = STATE(2935), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(2935), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(2935), - [sym_initializer_list] = STATE(3805), - [sym_char_literal] = STATE(4199), - [sym_concatenated_string] = STATE(4199), - [sym_string_literal] = STATE(3059), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3059), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2935), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(2935), - [sym_identifier] = ACTIONS(4334), - [anon_sym_LPAREN2] = ACTIONS(4658), - [anon_sym_BANG] = ACTIONS(3609), - [anon_sym_TILDE] = ACTIONS(3609), - [anon_sym_DASH] = ACTIONS(3607), - [anon_sym_PLUS] = ACTIONS(3607), + [1118] = { + [sym_expression] = STATE(3639), + [sym__string] = STATE(3775), + [sym_conditional_expression] = STATE(3886), + [sym_assignment_expression] = STATE(3886), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(3886), + [sym_binary_expression] = STATE(3886), + [sym_update_expression] = STATE(3886), + [sym_cast_expression] = STATE(3886), + [sym_sizeof_expression] = STATE(3886), + [sym_alignof_expression] = STATE(3886), + [sym_offsetof_expression] = STATE(3886), + [sym_generic_expression] = STATE(3886), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(3886), + [sym_extension_expression] = STATE(3886), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(3886), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(3775), + [sym_concatenated_string] = STATE(3775), + [sym_string_literal] = STATE(2596), + [sym_null] = STATE(3886), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7756), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3886), + [sym_raw_string_literal] = STATE(2596), + [sym_co_await_expression] = STATE(3886), + [sym_new_expression] = STATE(3886), + [sym_delete_expression] = STATE(3886), + [sym_requires_clause] = STATE(3886), + [sym_requires_expression] = STATE(3886), + [sym_lambda_expression] = STATE(3886), + [sym_lambda_capture_specifier] = STATE(5492), + [sym_fold_expression] = STATE(3886), + [sym_parameter_pack_expansion] = STATE(3886), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(7756), + [sym_user_defined_literal] = STATE(3522), + [sym_identifier] = ACTIONS(2619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4713), + [anon_sym_LPAREN2] = ACTIONS(1888), + [anon_sym_BANG] = ACTIONS(1890), + [anon_sym_TILDE] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1892), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(2621), + [anon_sym_COLON_COLON] = ACTIONS(1898), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2625), + [anon_sym_not] = ACTIONS(1892), + [anon_sym_compl] = ACTIONS(1892), + [anon_sym_DASH_DASH] = ACTIONS(1902), + [anon_sym_PLUS_PLUS] = ACTIONS(1902), + [anon_sym_sizeof] = ACTIONS(1904), + [anon_sym___alignof__] = ACTIONS(1906), + [anon_sym___alignof] = ACTIONS(1906), + [anon_sym__alignof] = ACTIONS(1906), + [anon_sym_alignof] = ACTIONS(1906), + [anon_sym__Alignof] = ACTIONS(1906), + [anon_sym_offsetof] = ACTIONS(1908), + [anon_sym__Generic] = ACTIONS(1910), + [anon_sym_asm] = ACTIONS(1912), + [anon_sym___asm__] = ACTIONS(1912), + [anon_sym___asm] = ACTIONS(1912), + [sym_number_literal] = ACTIONS(1914), + [anon_sym_L_SQUOTE] = ACTIONS(1916), + [anon_sym_u_SQUOTE] = ACTIONS(1916), + [anon_sym_U_SQUOTE] = ACTIONS(1916), + [anon_sym_u8_SQUOTE] = ACTIONS(1916), + [anon_sym_SQUOTE] = ACTIONS(1916), + [anon_sym_L_DQUOTE] = ACTIONS(1918), + [anon_sym_u_DQUOTE] = ACTIONS(1918), + [anon_sym_U_DQUOTE] = ACTIONS(1918), + [anon_sym_u8_DQUOTE] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1918), + [sym_true] = ACTIONS(1920), + [sym_false] = ACTIONS(1920), + [anon_sym_NULL] = ACTIONS(1922), + [anon_sym_nullptr] = ACTIONS(1922), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1924), + [anon_sym_R_DQUOTE] = ACTIONS(1926), + [anon_sym_LR_DQUOTE] = ACTIONS(1926), + [anon_sym_uR_DQUOTE] = ACTIONS(1926), + [anon_sym_UR_DQUOTE] = ACTIONS(1926), + [anon_sym_u8R_DQUOTE] = ACTIONS(1926), + [anon_sym_co_await] = ACTIONS(1928), + [anon_sym_new] = ACTIONS(1930), + [anon_sym_requires] = ACTIONS(1932), + [sym_this] = ACTIONS(1920), + }, + [1119] = { + [sym_expression] = STATE(3593), + [sym__string] = STATE(3775), + [sym_conditional_expression] = STATE(3886), + [sym_assignment_expression] = STATE(3886), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(3886), + [sym_binary_expression] = STATE(3886), + [sym_update_expression] = STATE(3886), + [sym_cast_expression] = STATE(3886), + [sym_sizeof_expression] = STATE(3886), + [sym_alignof_expression] = STATE(3886), + [sym_offsetof_expression] = STATE(3886), + [sym_generic_expression] = STATE(3886), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(3886), + [sym_extension_expression] = STATE(3886), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(3886), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(3775), + [sym_concatenated_string] = STATE(3775), + [sym_string_literal] = STATE(2596), + [sym_null] = STATE(3886), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7756), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3886), + [sym_raw_string_literal] = STATE(2596), + [sym_co_await_expression] = STATE(3886), + [sym_new_expression] = STATE(3886), + [sym_delete_expression] = STATE(3886), + [sym_requires_clause] = STATE(3886), + [sym_requires_expression] = STATE(3886), + [sym_lambda_expression] = STATE(3886), + [sym_lambda_capture_specifier] = STATE(5492), + [sym_fold_expression] = STATE(3886), + [sym_parameter_pack_expansion] = STATE(3886), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(7756), + [sym_user_defined_literal] = STATE(3522), + [sym_identifier] = ACTIONS(2619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4716), + [anon_sym_LPAREN2] = ACTIONS(1888), + [anon_sym_BANG] = ACTIONS(1890), + [anon_sym_TILDE] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1892), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(2621), + [anon_sym_COLON_COLON] = ACTIONS(1898), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2625), + [anon_sym_not] = ACTIONS(1892), + [anon_sym_compl] = ACTIONS(1892), + [anon_sym_DASH_DASH] = ACTIONS(1902), + [anon_sym_PLUS_PLUS] = ACTIONS(1902), + [anon_sym_sizeof] = ACTIONS(1904), + [anon_sym___alignof__] = ACTIONS(1906), + [anon_sym___alignof] = ACTIONS(1906), + [anon_sym__alignof] = ACTIONS(1906), + [anon_sym_alignof] = ACTIONS(1906), + [anon_sym__Alignof] = ACTIONS(1906), + [anon_sym_offsetof] = ACTIONS(1908), + [anon_sym__Generic] = ACTIONS(1910), + [anon_sym_asm] = ACTIONS(1912), + [anon_sym___asm__] = ACTIONS(1912), + [anon_sym___asm] = ACTIONS(1912), + [sym_number_literal] = ACTIONS(1914), + [anon_sym_L_SQUOTE] = ACTIONS(1916), + [anon_sym_u_SQUOTE] = ACTIONS(1916), + [anon_sym_U_SQUOTE] = ACTIONS(1916), + [anon_sym_u8_SQUOTE] = ACTIONS(1916), + [anon_sym_SQUOTE] = ACTIONS(1916), + [anon_sym_L_DQUOTE] = ACTIONS(1918), + [anon_sym_u_DQUOTE] = ACTIONS(1918), + [anon_sym_U_DQUOTE] = ACTIONS(1918), + [anon_sym_u8_DQUOTE] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1918), + [sym_true] = ACTIONS(1920), + [sym_false] = ACTIONS(1920), + [anon_sym_NULL] = ACTIONS(1922), + [anon_sym_nullptr] = ACTIONS(1922), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1924), + [anon_sym_R_DQUOTE] = ACTIONS(1926), + [anon_sym_LR_DQUOTE] = ACTIONS(1926), + [anon_sym_uR_DQUOTE] = ACTIONS(1926), + [anon_sym_UR_DQUOTE] = ACTIONS(1926), + [anon_sym_u8R_DQUOTE] = ACTIONS(1926), + [anon_sym_co_await] = ACTIONS(1928), + [anon_sym_new] = ACTIONS(1930), + [anon_sym_requires] = ACTIONS(1932), + [sym_this] = ACTIONS(1920), + }, + [1120] = { + [sym_expression] = STATE(3582), + [sym__string] = STATE(3775), + [sym_conditional_expression] = STATE(3886), + [sym_assignment_expression] = STATE(3886), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(3886), + [sym_binary_expression] = STATE(3886), + [sym_update_expression] = STATE(3886), + [sym_cast_expression] = STATE(3886), + [sym_sizeof_expression] = STATE(3886), + [sym_alignof_expression] = STATE(3886), + [sym_offsetof_expression] = STATE(3886), + [sym_generic_expression] = STATE(3886), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(3886), + [sym_extension_expression] = STATE(3886), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(3886), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(3775), + [sym_concatenated_string] = STATE(3775), + [sym_string_literal] = STATE(2596), + [sym_null] = STATE(3886), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7756), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3886), + [sym_raw_string_literal] = STATE(2596), + [sym_co_await_expression] = STATE(3886), + [sym_new_expression] = STATE(3886), + [sym_delete_expression] = STATE(3886), + [sym_requires_clause] = STATE(3886), + [sym_requires_expression] = STATE(3886), + [sym_lambda_expression] = STATE(3886), + [sym_lambda_capture_specifier] = STATE(5492), + [sym_fold_expression] = STATE(3886), + [sym_parameter_pack_expansion] = STATE(3886), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(7756), + [sym_user_defined_literal] = STATE(3522), + [sym_identifier] = ACTIONS(2619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4719), + [anon_sym_LPAREN2] = ACTIONS(1888), + [anon_sym_BANG] = ACTIONS(1890), + [anon_sym_TILDE] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1892), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(2621), + [anon_sym_COLON_COLON] = ACTIONS(1898), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2625), + [anon_sym_not] = ACTIONS(1892), + [anon_sym_compl] = ACTIONS(1892), + [anon_sym_DASH_DASH] = ACTIONS(1902), + [anon_sym_PLUS_PLUS] = ACTIONS(1902), + [anon_sym_sizeof] = ACTIONS(1904), + [anon_sym___alignof__] = ACTIONS(1906), + [anon_sym___alignof] = ACTIONS(1906), + [anon_sym__alignof] = ACTIONS(1906), + [anon_sym_alignof] = ACTIONS(1906), + [anon_sym__Alignof] = ACTIONS(1906), + [anon_sym_offsetof] = ACTIONS(1908), + [anon_sym__Generic] = ACTIONS(1910), + [anon_sym_asm] = ACTIONS(1912), + [anon_sym___asm__] = ACTIONS(1912), + [anon_sym___asm] = ACTIONS(1912), + [sym_number_literal] = ACTIONS(1914), + [anon_sym_L_SQUOTE] = ACTIONS(1916), + [anon_sym_u_SQUOTE] = ACTIONS(1916), + [anon_sym_U_SQUOTE] = ACTIONS(1916), + [anon_sym_u8_SQUOTE] = ACTIONS(1916), + [anon_sym_SQUOTE] = ACTIONS(1916), + [anon_sym_L_DQUOTE] = ACTIONS(1918), + [anon_sym_u_DQUOTE] = ACTIONS(1918), + [anon_sym_U_DQUOTE] = ACTIONS(1918), + [anon_sym_u8_DQUOTE] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1918), + [sym_true] = ACTIONS(1920), + [sym_false] = ACTIONS(1920), + [anon_sym_NULL] = ACTIONS(1922), + [anon_sym_nullptr] = ACTIONS(1922), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1924), + [anon_sym_R_DQUOTE] = ACTIONS(1926), + [anon_sym_LR_DQUOTE] = ACTIONS(1926), + [anon_sym_uR_DQUOTE] = ACTIONS(1926), + [anon_sym_UR_DQUOTE] = ACTIONS(1926), + [anon_sym_u8R_DQUOTE] = ACTIONS(1926), + [anon_sym_co_await] = ACTIONS(1928), + [anon_sym_new] = ACTIONS(1930), + [anon_sym_requires] = ACTIONS(1932), + [sym_this] = ACTIONS(1920), + }, + [1121] = { + [sym_expression] = STATE(3607), + [sym__string] = STATE(3775), + [sym_conditional_expression] = STATE(3886), + [sym_assignment_expression] = STATE(3886), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(3886), + [sym_binary_expression] = STATE(3886), + [sym_update_expression] = STATE(3886), + [sym_cast_expression] = STATE(3886), + [sym_sizeof_expression] = STATE(3886), + [sym_alignof_expression] = STATE(3886), + [sym_offsetof_expression] = STATE(3886), + [sym_generic_expression] = STATE(3886), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(3886), + [sym_extension_expression] = STATE(3886), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(3886), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(3775), + [sym_concatenated_string] = STATE(3775), + [sym_string_literal] = STATE(2596), + [sym_null] = STATE(3886), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7756), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3886), + [sym_raw_string_literal] = STATE(2596), + [sym_co_await_expression] = STATE(3886), + [sym_new_expression] = STATE(3886), + [sym_delete_expression] = STATE(3886), + [sym_requires_clause] = STATE(3886), + [sym_requires_expression] = STATE(3886), + [sym_lambda_expression] = STATE(3886), + [sym_lambda_capture_specifier] = STATE(5492), + [sym_fold_expression] = STATE(3886), + [sym_parameter_pack_expansion] = STATE(3886), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(7756), + [sym_user_defined_literal] = STATE(3522), + [sym_identifier] = ACTIONS(2619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4722), + [anon_sym_LPAREN2] = ACTIONS(1888), + [anon_sym_BANG] = ACTIONS(1890), + [anon_sym_TILDE] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1892), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(2621), + [anon_sym_COLON_COLON] = ACTIONS(1898), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2625), + [anon_sym_not] = ACTIONS(1892), + [anon_sym_compl] = ACTIONS(1892), + [anon_sym_DASH_DASH] = ACTIONS(1902), + [anon_sym_PLUS_PLUS] = ACTIONS(1902), + [anon_sym_sizeof] = ACTIONS(1904), + [anon_sym___alignof__] = ACTIONS(1906), + [anon_sym___alignof] = ACTIONS(1906), + [anon_sym__alignof] = ACTIONS(1906), + [anon_sym_alignof] = ACTIONS(1906), + [anon_sym__Alignof] = ACTIONS(1906), + [anon_sym_offsetof] = ACTIONS(1908), + [anon_sym__Generic] = ACTIONS(1910), + [anon_sym_asm] = ACTIONS(1912), + [anon_sym___asm__] = ACTIONS(1912), + [anon_sym___asm] = ACTIONS(1912), + [sym_number_literal] = ACTIONS(1914), + [anon_sym_L_SQUOTE] = ACTIONS(1916), + [anon_sym_u_SQUOTE] = ACTIONS(1916), + [anon_sym_U_SQUOTE] = ACTIONS(1916), + [anon_sym_u8_SQUOTE] = ACTIONS(1916), + [anon_sym_SQUOTE] = ACTIONS(1916), + [anon_sym_L_DQUOTE] = ACTIONS(1918), + [anon_sym_u_DQUOTE] = ACTIONS(1918), + [anon_sym_U_DQUOTE] = ACTIONS(1918), + [anon_sym_u8_DQUOTE] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1918), + [sym_true] = ACTIONS(1920), + [sym_false] = ACTIONS(1920), + [anon_sym_NULL] = ACTIONS(1922), + [anon_sym_nullptr] = ACTIONS(1922), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1924), + [anon_sym_R_DQUOTE] = ACTIONS(1926), + [anon_sym_LR_DQUOTE] = ACTIONS(1926), + [anon_sym_uR_DQUOTE] = ACTIONS(1926), + [anon_sym_UR_DQUOTE] = ACTIONS(1926), + [anon_sym_u8R_DQUOTE] = ACTIONS(1926), + [anon_sym_co_await] = ACTIONS(1928), + [anon_sym_new] = ACTIONS(1930), + [anon_sym_requires] = ACTIONS(1932), + [sym_this] = ACTIONS(1920), + }, + [1122] = { + [sym_expression] = STATE(3609), + [sym__string] = STATE(3775), + [sym_conditional_expression] = STATE(3886), + [sym_assignment_expression] = STATE(3886), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(3886), + [sym_binary_expression] = STATE(3886), + [sym_update_expression] = STATE(3886), + [sym_cast_expression] = STATE(3886), + [sym_sizeof_expression] = STATE(3886), + [sym_alignof_expression] = STATE(3886), + [sym_offsetof_expression] = STATE(3886), + [sym_generic_expression] = STATE(3886), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(3886), + [sym_extension_expression] = STATE(3886), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(3886), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(3775), + [sym_concatenated_string] = STATE(3775), + [sym_string_literal] = STATE(2596), + [sym_null] = STATE(3886), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7756), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3886), + [sym_raw_string_literal] = STATE(2596), + [sym_co_await_expression] = STATE(3886), + [sym_new_expression] = STATE(3886), + [sym_delete_expression] = STATE(3886), + [sym_requires_clause] = STATE(3886), + [sym_requires_expression] = STATE(3886), + [sym_lambda_expression] = STATE(3886), + [sym_lambda_capture_specifier] = STATE(5492), + [sym_fold_expression] = STATE(3886), + [sym_parameter_pack_expansion] = STATE(3886), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(7756), + [sym_user_defined_literal] = STATE(3522), + [sym_identifier] = ACTIONS(2619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4725), + [anon_sym_LPAREN2] = ACTIONS(1888), + [anon_sym_BANG] = ACTIONS(1890), + [anon_sym_TILDE] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1892), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(2621), + [anon_sym_COLON_COLON] = ACTIONS(1898), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2625), + [anon_sym_not] = ACTIONS(1892), + [anon_sym_compl] = ACTIONS(1892), + [anon_sym_DASH_DASH] = ACTIONS(1902), + [anon_sym_PLUS_PLUS] = ACTIONS(1902), + [anon_sym_sizeof] = ACTIONS(1904), + [anon_sym___alignof__] = ACTIONS(1906), + [anon_sym___alignof] = ACTIONS(1906), + [anon_sym__alignof] = ACTIONS(1906), + [anon_sym_alignof] = ACTIONS(1906), + [anon_sym__Alignof] = ACTIONS(1906), + [anon_sym_offsetof] = ACTIONS(1908), + [anon_sym__Generic] = ACTIONS(1910), + [anon_sym_asm] = ACTIONS(1912), + [anon_sym___asm__] = ACTIONS(1912), + [anon_sym___asm] = ACTIONS(1912), + [sym_number_literal] = ACTIONS(1914), + [anon_sym_L_SQUOTE] = ACTIONS(1916), + [anon_sym_u_SQUOTE] = ACTIONS(1916), + [anon_sym_U_SQUOTE] = ACTIONS(1916), + [anon_sym_u8_SQUOTE] = ACTIONS(1916), + [anon_sym_SQUOTE] = ACTIONS(1916), + [anon_sym_L_DQUOTE] = ACTIONS(1918), + [anon_sym_u_DQUOTE] = ACTIONS(1918), + [anon_sym_U_DQUOTE] = ACTIONS(1918), + [anon_sym_u8_DQUOTE] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1918), + [sym_true] = ACTIONS(1920), + [sym_false] = ACTIONS(1920), + [anon_sym_NULL] = ACTIONS(1922), + [anon_sym_nullptr] = ACTIONS(1922), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1924), + [anon_sym_R_DQUOTE] = ACTIONS(1926), + [anon_sym_LR_DQUOTE] = ACTIONS(1926), + [anon_sym_uR_DQUOTE] = ACTIONS(1926), + [anon_sym_UR_DQUOTE] = ACTIONS(1926), + [anon_sym_u8R_DQUOTE] = ACTIONS(1926), + [anon_sym_co_await] = ACTIONS(1928), + [anon_sym_new] = ACTIONS(1930), + [anon_sym_requires] = ACTIONS(1932), + [sym_this] = ACTIONS(1920), + }, + [1123] = { + [sym_expression] = STATE(3188), + [sym__string] = STATE(3393), + [sym_conditional_expression] = STATE(3401), + [sym_assignment_expression] = STATE(3401), + [sym_pointer_expression] = STATE(3405), + [sym_unary_expression] = STATE(3401), + [sym_binary_expression] = STATE(3401), + [sym_update_expression] = STATE(3401), + [sym_cast_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3401), + [sym_alignof_expression] = STATE(3401), + [sym_offsetof_expression] = STATE(3401), + [sym_generic_expression] = STATE(3401), + [sym_subscript_expression] = STATE(3405), + [sym_call_expression] = STATE(3405), + [sym_gnu_asm_expression] = STATE(3401), + [sym_extension_expression] = STATE(3401), + [sym_field_expression] = STATE(3405), + [sym_compound_literal_expression] = STATE(3401), + [sym_parenthesized_expression] = STATE(3405), + [sym_char_literal] = STATE(3393), + [sym_concatenated_string] = STATE(3393), + [sym_string_literal] = STATE(2380), + [sym_null] = STATE(3401), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7745), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3401), + [sym_raw_string_literal] = STATE(2380), + [sym_co_await_expression] = STATE(3401), + [sym_new_expression] = STATE(3401), + [sym_delete_expression] = STATE(3401), + [sym_requires_clause] = STATE(3401), + [sym_requires_expression] = STATE(3401), + [sym_lambda_expression] = STATE(3401), + [sym_lambda_capture_specifier] = STATE(5494), + [sym_fold_expression] = STATE(3401), + [sym_parameter_pack_expansion] = STATE(3401), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3405), + [sym_qualified_type_identifier] = STATE(7745), + [sym_user_defined_literal] = STATE(3405), + [sym_identifier] = ACTIONS(2453), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4728), + [anon_sym_LPAREN2] = ACTIONS(2018), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(2455), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2459), + [anon_sym_not] = ACTIONS(1796), + [anon_sym_compl] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_sizeof] = ACTIONS(1824), + [anon_sym___alignof__] = ACTIONS(1826), + [anon_sym___alignof] = ACTIONS(1826), + [anon_sym__alignof] = ACTIONS(1826), + [anon_sym_alignof] = ACTIONS(1826), + [anon_sym__Alignof] = ACTIONS(1826), + [anon_sym_offsetof] = ACTIONS(1828), + [anon_sym__Generic] = ACTIONS(1830), + [anon_sym_asm] = ACTIONS(1832), + [anon_sym___asm__] = ACTIONS(1832), + [anon_sym___asm] = ACTIONS(1832), + [sym_number_literal] = ACTIONS(1834), + [anon_sym_L_SQUOTE] = ACTIONS(1836), + [anon_sym_u_SQUOTE] = ACTIONS(1836), + [anon_sym_U_SQUOTE] = ACTIONS(1836), + [anon_sym_u8_SQUOTE] = ACTIONS(1836), + [anon_sym_SQUOTE] = ACTIONS(1836), + [anon_sym_L_DQUOTE] = ACTIONS(1838), + [anon_sym_u_DQUOTE] = ACTIONS(1838), + [anon_sym_U_DQUOTE] = ACTIONS(1838), + [anon_sym_u8_DQUOTE] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym_true] = ACTIONS(1840), + [sym_false] = ACTIONS(1840), + [anon_sym_NULL] = ACTIONS(1842), + [anon_sym_nullptr] = ACTIONS(1842), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1852), + [anon_sym_R_DQUOTE] = ACTIONS(1854), + [anon_sym_LR_DQUOTE] = ACTIONS(1854), + [anon_sym_uR_DQUOTE] = ACTIONS(1854), + [anon_sym_UR_DQUOTE] = ACTIONS(1854), + [anon_sym_u8R_DQUOTE] = ACTIONS(1854), + [anon_sym_co_await] = ACTIONS(1856), + [anon_sym_new] = ACTIONS(1858), + [anon_sym_requires] = ACTIONS(1860), + [sym_this] = ACTIONS(1840), + }, + [1124] = { + [sym_expression] = STATE(2432), + [sym__string] = STATE(2917), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(2917), + [sym_concatenated_string] = STATE(2917), + [sym_string_literal] = STATE(2114), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(2114), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), + [sym_identifier] = ACTIONS(1990), + [anon_sym_LPAREN2] = ACTIONS(4565), + [anon_sym_BANG] = ACTIONS(1994), + [anon_sym_TILDE] = ACTIONS(1994), + [anon_sym_DASH] = ACTIONS(1992), + [anon_sym_PLUS] = ACTIONS(1992), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(1996), + [anon_sym_COLON_COLON] = ACTIONS(1998), + [anon_sym_LBRACK] = ACTIONS(2020), + [anon_sym_RBRACK] = ACTIONS(4731), + [sym_primitive_type] = ACTIONS(1956), + [anon_sym_not] = ACTIONS(1992), + [anon_sym_compl] = ACTIONS(1992), + [anon_sym_DASH_DASH] = ACTIONS(3355), + [anon_sym_PLUS_PLUS] = ACTIONS(3355), + [anon_sym_sizeof] = ACTIONS(2000), + [anon_sym___alignof__] = ACTIONS(1960), + [anon_sym___alignof] = ACTIONS(1960), + [anon_sym__alignof] = ACTIONS(1960), + [anon_sym_alignof] = ACTIONS(1960), + [anon_sym__Alignof] = ACTIONS(1960), + [anon_sym_offsetof] = ACTIONS(1962), + [anon_sym__Generic] = ACTIONS(1964), + [anon_sym_asm] = ACTIONS(1966), + [anon_sym___asm__] = ACTIONS(1966), + [anon_sym___asm] = ACTIONS(1966), + [sym_number_literal] = ACTIONS(2002), + [anon_sym_L_SQUOTE] = ACTIONS(2004), + [anon_sym_u_SQUOTE] = ACTIONS(2004), + [anon_sym_U_SQUOTE] = ACTIONS(2004), + [anon_sym_u8_SQUOTE] = ACTIONS(2004), + [anon_sym_SQUOTE] = ACTIONS(2004), + [anon_sym_L_DQUOTE] = ACTIONS(2006), + [anon_sym_u_DQUOTE] = ACTIONS(2006), + [anon_sym_U_DQUOTE] = ACTIONS(2006), + [anon_sym_u8_DQUOTE] = ACTIONS(2006), + [anon_sym_DQUOTE] = ACTIONS(2006), + [sym_true] = ACTIONS(1974), + [sym_false] = ACTIONS(1974), + [anon_sym_NULL] = ACTIONS(1976), + [anon_sym_nullptr] = ACTIONS(1976), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(2008), + [anon_sym_R_DQUOTE] = ACTIONS(2010), + [anon_sym_LR_DQUOTE] = ACTIONS(2010), + [anon_sym_uR_DQUOTE] = ACTIONS(2010), + [anon_sym_UR_DQUOTE] = ACTIONS(2010), + [anon_sym_u8R_DQUOTE] = ACTIONS(2010), + [anon_sym_co_await] = ACTIONS(2012), + [anon_sym_new] = ACTIONS(2014), + [anon_sym_requires] = ACTIONS(1988), + [sym_this] = ACTIONS(1974), + }, + [1125] = { + [sym_expression] = STATE(3611), + [sym__string] = STATE(3775), + [sym_conditional_expression] = STATE(3886), + [sym_assignment_expression] = STATE(3886), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(3886), + [sym_binary_expression] = STATE(3886), + [sym_update_expression] = STATE(3886), + [sym_cast_expression] = STATE(3886), + [sym_sizeof_expression] = STATE(3886), + [sym_alignof_expression] = STATE(3886), + [sym_offsetof_expression] = STATE(3886), + [sym_generic_expression] = STATE(3886), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(3886), + [sym_extension_expression] = STATE(3886), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(3886), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(3775), + [sym_concatenated_string] = STATE(3775), + [sym_string_literal] = STATE(2596), + [sym_null] = STATE(3886), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7756), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3886), + [sym_raw_string_literal] = STATE(2596), + [sym_co_await_expression] = STATE(3886), + [sym_new_expression] = STATE(3886), + [sym_delete_expression] = STATE(3886), + [sym_requires_clause] = STATE(3886), + [sym_requires_expression] = STATE(3886), + [sym_lambda_expression] = STATE(3886), + [sym_lambda_capture_specifier] = STATE(5492), + [sym_fold_expression] = STATE(3886), + [sym_parameter_pack_expansion] = STATE(3886), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(7756), + [sym_user_defined_literal] = STATE(3522), + [sym_identifier] = ACTIONS(2619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4733), + [anon_sym_LPAREN2] = ACTIONS(1888), + [anon_sym_BANG] = ACTIONS(1890), + [anon_sym_TILDE] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1892), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(2621), + [anon_sym_COLON_COLON] = ACTIONS(1898), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2625), + [anon_sym_not] = ACTIONS(1892), + [anon_sym_compl] = ACTIONS(1892), + [anon_sym_DASH_DASH] = ACTIONS(1902), + [anon_sym_PLUS_PLUS] = ACTIONS(1902), + [anon_sym_sizeof] = ACTIONS(1904), + [anon_sym___alignof__] = ACTIONS(1906), + [anon_sym___alignof] = ACTIONS(1906), + [anon_sym__alignof] = ACTIONS(1906), + [anon_sym_alignof] = ACTIONS(1906), + [anon_sym__Alignof] = ACTIONS(1906), + [anon_sym_offsetof] = ACTIONS(1908), + [anon_sym__Generic] = ACTIONS(1910), + [anon_sym_asm] = ACTIONS(1912), + [anon_sym___asm__] = ACTIONS(1912), + [anon_sym___asm] = ACTIONS(1912), + [sym_number_literal] = ACTIONS(1914), + [anon_sym_L_SQUOTE] = ACTIONS(1916), + [anon_sym_u_SQUOTE] = ACTIONS(1916), + [anon_sym_U_SQUOTE] = ACTIONS(1916), + [anon_sym_u8_SQUOTE] = ACTIONS(1916), + [anon_sym_SQUOTE] = ACTIONS(1916), + [anon_sym_L_DQUOTE] = ACTIONS(1918), + [anon_sym_u_DQUOTE] = ACTIONS(1918), + [anon_sym_U_DQUOTE] = ACTIONS(1918), + [anon_sym_u8_DQUOTE] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1918), + [sym_true] = ACTIONS(1920), + [sym_false] = ACTIONS(1920), + [anon_sym_NULL] = ACTIONS(1922), + [anon_sym_nullptr] = ACTIONS(1922), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1924), + [anon_sym_R_DQUOTE] = ACTIONS(1926), + [anon_sym_LR_DQUOTE] = ACTIONS(1926), + [anon_sym_uR_DQUOTE] = ACTIONS(1926), + [anon_sym_UR_DQUOTE] = ACTIONS(1926), + [anon_sym_u8R_DQUOTE] = ACTIONS(1926), + [anon_sym_co_await] = ACTIONS(1928), + [anon_sym_new] = ACTIONS(1930), + [anon_sym_requires] = ACTIONS(1932), + [sym_this] = ACTIONS(1920), + }, + [1126] = { + [sym_expression] = STATE(3613), + [sym__string] = STATE(3775), + [sym_conditional_expression] = STATE(3886), + [sym_assignment_expression] = STATE(3886), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(3886), + [sym_binary_expression] = STATE(3886), + [sym_update_expression] = STATE(3886), + [sym_cast_expression] = STATE(3886), + [sym_sizeof_expression] = STATE(3886), + [sym_alignof_expression] = STATE(3886), + [sym_offsetof_expression] = STATE(3886), + [sym_generic_expression] = STATE(3886), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(3886), + [sym_extension_expression] = STATE(3886), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(3886), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(3775), + [sym_concatenated_string] = STATE(3775), + [sym_string_literal] = STATE(2596), + [sym_null] = STATE(3886), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7756), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3886), + [sym_raw_string_literal] = STATE(2596), + [sym_co_await_expression] = STATE(3886), + [sym_new_expression] = STATE(3886), + [sym_delete_expression] = STATE(3886), + [sym_requires_clause] = STATE(3886), + [sym_requires_expression] = STATE(3886), + [sym_lambda_expression] = STATE(3886), + [sym_lambda_capture_specifier] = STATE(5492), + [sym_fold_expression] = STATE(3886), + [sym_parameter_pack_expansion] = STATE(3886), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(7756), + [sym_user_defined_literal] = STATE(3522), + [sym_identifier] = ACTIONS(2619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4736), + [anon_sym_LPAREN2] = ACTIONS(1888), + [anon_sym_BANG] = ACTIONS(1890), + [anon_sym_TILDE] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1892), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(2621), + [anon_sym_COLON_COLON] = ACTIONS(1898), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2625), + [anon_sym_not] = ACTIONS(1892), + [anon_sym_compl] = ACTIONS(1892), + [anon_sym_DASH_DASH] = ACTIONS(1902), + [anon_sym_PLUS_PLUS] = ACTIONS(1902), + [anon_sym_sizeof] = ACTIONS(1904), + [anon_sym___alignof__] = ACTIONS(1906), + [anon_sym___alignof] = ACTIONS(1906), + [anon_sym__alignof] = ACTIONS(1906), + [anon_sym_alignof] = ACTIONS(1906), + [anon_sym__Alignof] = ACTIONS(1906), + [anon_sym_offsetof] = ACTIONS(1908), + [anon_sym__Generic] = ACTIONS(1910), + [anon_sym_asm] = ACTIONS(1912), + [anon_sym___asm__] = ACTIONS(1912), + [anon_sym___asm] = ACTIONS(1912), + [sym_number_literal] = ACTIONS(1914), + [anon_sym_L_SQUOTE] = ACTIONS(1916), + [anon_sym_u_SQUOTE] = ACTIONS(1916), + [anon_sym_U_SQUOTE] = ACTIONS(1916), + [anon_sym_u8_SQUOTE] = ACTIONS(1916), + [anon_sym_SQUOTE] = ACTIONS(1916), + [anon_sym_L_DQUOTE] = ACTIONS(1918), + [anon_sym_u_DQUOTE] = ACTIONS(1918), + [anon_sym_U_DQUOTE] = ACTIONS(1918), + [anon_sym_u8_DQUOTE] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1918), + [sym_true] = ACTIONS(1920), + [sym_false] = ACTIONS(1920), + [anon_sym_NULL] = ACTIONS(1922), + [anon_sym_nullptr] = ACTIONS(1922), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1924), + [anon_sym_R_DQUOTE] = ACTIONS(1926), + [anon_sym_LR_DQUOTE] = ACTIONS(1926), + [anon_sym_uR_DQUOTE] = ACTIONS(1926), + [anon_sym_UR_DQUOTE] = ACTIONS(1926), + [anon_sym_u8R_DQUOTE] = ACTIONS(1926), + [anon_sym_co_await] = ACTIONS(1928), + [anon_sym_new] = ACTIONS(1930), + [anon_sym_requires] = ACTIONS(1932), + [sym_this] = ACTIONS(1920), + }, + [1127] = { + [sym_expression] = STATE(3189), + [sym__string] = STATE(3393), + [sym_conditional_expression] = STATE(3401), + [sym_assignment_expression] = STATE(3401), + [sym_pointer_expression] = STATE(3405), + [sym_unary_expression] = STATE(3401), + [sym_binary_expression] = STATE(3401), + [sym_update_expression] = STATE(3401), + [sym_cast_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3401), + [sym_alignof_expression] = STATE(3401), + [sym_offsetof_expression] = STATE(3401), + [sym_generic_expression] = STATE(3401), + [sym_subscript_expression] = STATE(3405), + [sym_call_expression] = STATE(3405), + [sym_gnu_asm_expression] = STATE(3401), + [sym_extension_expression] = STATE(3401), + [sym_field_expression] = STATE(3405), + [sym_compound_literal_expression] = STATE(3401), + [sym_parenthesized_expression] = STATE(3405), + [sym_char_literal] = STATE(3393), + [sym_concatenated_string] = STATE(3393), + [sym_string_literal] = STATE(2380), + [sym_null] = STATE(3401), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7745), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3401), + [sym_raw_string_literal] = STATE(2380), + [sym_co_await_expression] = STATE(3401), + [sym_new_expression] = STATE(3401), + [sym_delete_expression] = STATE(3401), + [sym_requires_clause] = STATE(3401), + [sym_requires_expression] = STATE(3401), + [sym_lambda_expression] = STATE(3401), + [sym_lambda_capture_specifier] = STATE(5494), + [sym_fold_expression] = STATE(3401), + [sym_parameter_pack_expansion] = STATE(3401), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3405), + [sym_qualified_type_identifier] = STATE(7745), + [sym_user_defined_literal] = STATE(3405), + [sym_identifier] = ACTIONS(2453), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4710), + [anon_sym_LPAREN2] = ACTIONS(2018), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(2455), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2459), + [anon_sym_not] = ACTIONS(1796), + [anon_sym_compl] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_sizeof] = ACTIONS(1824), + [anon_sym___alignof__] = ACTIONS(1826), + [anon_sym___alignof] = ACTIONS(1826), + [anon_sym__alignof] = ACTIONS(1826), + [anon_sym_alignof] = ACTIONS(1826), + [anon_sym__Alignof] = ACTIONS(1826), + [anon_sym_offsetof] = ACTIONS(1828), + [anon_sym__Generic] = ACTIONS(1830), + [anon_sym_asm] = ACTIONS(1832), + [anon_sym___asm__] = ACTIONS(1832), + [anon_sym___asm] = ACTIONS(1832), + [sym_number_literal] = ACTIONS(1834), + [anon_sym_L_SQUOTE] = ACTIONS(1836), + [anon_sym_u_SQUOTE] = ACTIONS(1836), + [anon_sym_U_SQUOTE] = ACTIONS(1836), + [anon_sym_u8_SQUOTE] = ACTIONS(1836), + [anon_sym_SQUOTE] = ACTIONS(1836), + [anon_sym_L_DQUOTE] = ACTIONS(1838), + [anon_sym_u_DQUOTE] = ACTIONS(1838), + [anon_sym_U_DQUOTE] = ACTIONS(1838), + [anon_sym_u8_DQUOTE] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym_true] = ACTIONS(1840), + [sym_false] = ACTIONS(1840), + [anon_sym_NULL] = ACTIONS(1842), + [anon_sym_nullptr] = ACTIONS(1842), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1852), + [anon_sym_R_DQUOTE] = ACTIONS(1854), + [anon_sym_LR_DQUOTE] = ACTIONS(1854), + [anon_sym_uR_DQUOTE] = ACTIONS(1854), + [anon_sym_UR_DQUOTE] = ACTIONS(1854), + [anon_sym_u8R_DQUOTE] = ACTIONS(1854), + [anon_sym_co_await] = ACTIONS(1856), + [anon_sym_new] = ACTIONS(1858), + [anon_sym_requires] = ACTIONS(1860), + [sym_this] = ACTIONS(1840), + }, + [1128] = { + [sym_expression] = STATE(4319), + [sym__string] = STATE(4455), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3366), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3366), + [sym_call_expression] = STATE(3366), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3366), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3366), + [sym_char_literal] = STATE(4455), + [sym_concatenated_string] = STATE(4455), + [sym_string_literal] = STATE(3406), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3406), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3366), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3366), + [sym_identifier] = ACTIONS(3833), + [anon_sym_LPAREN2] = ACTIONS(4557), + [anon_sym_BANG] = ACTIONS(3837), + [anon_sym_TILDE] = ACTIONS(3837), + [anon_sym_DASH] = ACTIONS(3835), + [anon_sym_PLUS] = ACTIONS(3835), [anon_sym_STAR] = ACTIONS(4336), [anon_sym_AMP] = ACTIONS(4336), - [anon_sym___extension__] = ACTIONS(3611), - [anon_sym_COLON_COLON] = ACTIONS(3613), - [anon_sym_LBRACE] = ACTIONS(3615), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3607), - [anon_sym_compl] = ACTIONS(3607), + [anon_sym_SEMI] = ACTIONS(4739), + [anon_sym___extension__] = ACTIONS(3839), + [anon_sym_COLON_COLON] = ACTIONS(3841), + [anon_sym_LBRACK] = ACTIONS(4741), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3835), + [anon_sym_compl] = ACTIONS(3835), [anon_sym_DASH_DASH] = ACTIONS(4338), [anon_sym_PLUS_PLUS] = ACTIONS(4338), - [anon_sym_sizeof] = ACTIONS(3617), + [anon_sym_sizeof] = ACTIONS(3843), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -185794,93 +193268,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(113), [anon_sym___asm__] = ACTIONS(113), [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3619), - [anon_sym_L_SQUOTE] = ACTIONS(3621), - [anon_sym_u_SQUOTE] = ACTIONS(3621), - [anon_sym_U_SQUOTE] = ACTIONS(3621), - [anon_sym_u8_SQUOTE] = ACTIONS(3621), - [anon_sym_SQUOTE] = ACTIONS(3621), - [anon_sym_L_DQUOTE] = ACTIONS(3623), - [anon_sym_u_DQUOTE] = ACTIONS(3623), - [anon_sym_U_DQUOTE] = ACTIONS(3623), - [anon_sym_u8_DQUOTE] = ACTIONS(3623), - [anon_sym_DQUOTE] = ACTIONS(3623), + [sym_number_literal] = ACTIONS(3845), + [anon_sym_L_SQUOTE] = ACTIONS(3847), + [anon_sym_u_SQUOTE] = ACTIONS(3847), + [anon_sym_U_SQUOTE] = ACTIONS(3847), + [anon_sym_u8_SQUOTE] = ACTIONS(3847), + [anon_sym_SQUOTE] = ACTIONS(3847), + [anon_sym_L_DQUOTE] = ACTIONS(3849), + [anon_sym_u_DQUOTE] = ACTIONS(3849), + [anon_sym_U_DQUOTE] = ACTIONS(3849), + [anon_sym_u8_DQUOTE] = ACTIONS(3849), + [anon_sym_DQUOTE] = ACTIONS(3849), [sym_true] = ACTIONS(229), [sym_false] = ACTIONS(229), [anon_sym_NULL] = ACTIONS(123), [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3625), - [anon_sym_R_DQUOTE] = ACTIONS(3627), - [anon_sym_LR_DQUOTE] = ACTIONS(3627), - [anon_sym_uR_DQUOTE] = ACTIONS(3627), - [anon_sym_UR_DQUOTE] = ACTIONS(3627), - [anon_sym_u8R_DQUOTE] = ACTIONS(3627), - [anon_sym_co_await] = ACTIONS(3629), - [anon_sym_new] = ACTIONS(3631), - [anon_sym_requires] = ACTIONS(3633), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3851), + [anon_sym_R_DQUOTE] = ACTIONS(3853), + [anon_sym_LR_DQUOTE] = ACTIONS(3853), + [anon_sym_uR_DQUOTE] = ACTIONS(3853), + [anon_sym_UR_DQUOTE] = ACTIONS(3853), + [anon_sym_u8R_DQUOTE] = ACTIONS(3853), + [anon_sym_co_await] = ACTIONS(3855), + [anon_sym_new] = ACTIONS(163), + [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1065] = { - [sym_expression] = STATE(3797), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_initializer_list] = STATE(3805), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1129] = { + [sym_expression] = STATE(4826), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_RPAREN] = ACTIONS(4743), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3615), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -185913,7 +193386,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -185925,64 +193398,164 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1066] = { - [sym_expression] = STATE(4543), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_initializer_list] = STATE(7580), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1130] = { + [sym_expression] = STATE(3188), + [sym__string] = STATE(3393), + [sym_conditional_expression] = STATE(3401), + [sym_assignment_expression] = STATE(3401), + [sym_pointer_expression] = STATE(3405), + [sym_unary_expression] = STATE(3401), + [sym_binary_expression] = STATE(3401), + [sym_update_expression] = STATE(3401), + [sym_cast_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3401), + [sym_alignof_expression] = STATE(3401), + [sym_offsetof_expression] = STATE(3401), + [sym_generic_expression] = STATE(3401), + [sym_subscript_expression] = STATE(3405), + [sym_call_expression] = STATE(3405), + [sym_gnu_asm_expression] = STATE(3401), + [sym_extension_expression] = STATE(3401), + [sym_field_expression] = STATE(3405), + [sym_compound_literal_expression] = STATE(3401), + [sym_parenthesized_expression] = STATE(3405), + [sym_char_literal] = STATE(3393), + [sym_concatenated_string] = STATE(3393), + [sym_string_literal] = STATE(2380), + [sym_null] = STATE(3401), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7745), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3401), + [sym_raw_string_literal] = STATE(2380), + [sym_co_await_expression] = STATE(3401), + [sym_new_expression] = STATE(3401), + [sym_delete_expression] = STATE(3401), + [sym_requires_clause] = STATE(3401), + [sym_requires_expression] = STATE(3401), + [sym_lambda_expression] = STATE(3401), + [sym_lambda_capture_specifier] = STATE(5494), + [sym_fold_expression] = STATE(3401), + [sym_parameter_pack_expansion] = STATE(3401), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3405), + [sym_qualified_type_identifier] = STATE(7745), + [sym_user_defined_literal] = STATE(3405), + [sym_identifier] = ACTIONS(2453), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4745), + [anon_sym_LPAREN2] = ACTIONS(2018), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(2455), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2459), + [anon_sym_not] = ACTIONS(1796), + [anon_sym_compl] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_sizeof] = ACTIONS(1824), + [anon_sym___alignof__] = ACTIONS(1826), + [anon_sym___alignof] = ACTIONS(1826), + [anon_sym__alignof] = ACTIONS(1826), + [anon_sym_alignof] = ACTIONS(1826), + [anon_sym__Alignof] = ACTIONS(1826), + [anon_sym_offsetof] = ACTIONS(1828), + [anon_sym__Generic] = ACTIONS(1830), + [anon_sym_asm] = ACTIONS(1832), + [anon_sym___asm__] = ACTIONS(1832), + [anon_sym___asm] = ACTIONS(1832), + [sym_number_literal] = ACTIONS(1834), + [anon_sym_L_SQUOTE] = ACTIONS(1836), + [anon_sym_u_SQUOTE] = ACTIONS(1836), + [anon_sym_U_SQUOTE] = ACTIONS(1836), + [anon_sym_u8_SQUOTE] = ACTIONS(1836), + [anon_sym_SQUOTE] = ACTIONS(1836), + [anon_sym_L_DQUOTE] = ACTIONS(1838), + [anon_sym_u_DQUOTE] = ACTIONS(1838), + [anon_sym_U_DQUOTE] = ACTIONS(1838), + [anon_sym_u8_DQUOTE] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym_true] = ACTIONS(1840), + [sym_false] = ACTIONS(1840), + [anon_sym_NULL] = ACTIONS(1842), + [anon_sym_nullptr] = ACTIONS(1842), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1852), + [anon_sym_R_DQUOTE] = ACTIONS(1854), + [anon_sym_LR_DQUOTE] = ACTIONS(1854), + [anon_sym_uR_DQUOTE] = ACTIONS(1854), + [anon_sym_UR_DQUOTE] = ACTIONS(1854), + [anon_sym_u8R_DQUOTE] = ACTIONS(1854), + [anon_sym_co_await] = ACTIONS(1856), + [anon_sym_new] = ACTIONS(1858), + [anon_sym_requires] = ACTIONS(1860), + [sym_this] = ACTIONS(1840), + }, + [1131] = { + [sym_expression] = STATE(4842), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(4748), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3615), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -186015,7 +193588,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -186027,69 +193600,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1067] = { - [sym_expression] = STATE(4489), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3678), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3678), - [sym_call_expression] = STATE(3678), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3678), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3678), - [sym_initializer_list] = STATE(7785), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3678), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3678), - [sym_identifier] = ACTIONS(3849), - [anon_sym_LPAREN2] = ACTIONS(3893), - [anon_sym_BANG] = ACTIONS(3853), - [anon_sym_TILDE] = ACTIONS(3853), - [anon_sym_DASH] = ACTIONS(3851), - [anon_sym_PLUS] = ACTIONS(3851), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(3855), - [anon_sym_COLON_COLON] = ACTIONS(3857), - [anon_sym_LBRACE] = ACTIONS(3615), + [1132] = { + [sym_expression] = STATE(2432), + [sym__string] = STATE(2917), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(2917), + [sym_concatenated_string] = STATE(2917), + [sym_string_literal] = STATE(2114), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(2114), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), + [sym_identifier] = ACTIONS(1990), + [anon_sym_LPAREN2] = ACTIONS(4565), + [anon_sym_BANG] = ACTIONS(1994), + [anon_sym_TILDE] = ACTIONS(1994), + [anon_sym_DASH] = ACTIONS(1992), + [anon_sym_PLUS] = ACTIONS(1992), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(1996), + [anon_sym_COLON_COLON] = ACTIONS(1998), + [anon_sym_LBRACK] = ACTIONS(2020), + [anon_sym_RBRACK] = ACTIONS(4750), + [sym_primitive_type] = ACTIONS(1956), + [anon_sym_not] = ACTIONS(1992), + [anon_sym_compl] = ACTIONS(1992), + [anon_sym_DASH_DASH] = ACTIONS(3355), + [anon_sym_PLUS_PLUS] = ACTIONS(3355), + [anon_sym_sizeof] = ACTIONS(2000), + [anon_sym___alignof__] = ACTIONS(1960), + [anon_sym___alignof] = ACTIONS(1960), + [anon_sym__alignof] = ACTIONS(1960), + [anon_sym_alignof] = ACTIONS(1960), + [anon_sym__Alignof] = ACTIONS(1960), + [anon_sym_offsetof] = ACTIONS(1962), + [anon_sym__Generic] = ACTIONS(1964), + [anon_sym_asm] = ACTIONS(1966), + [anon_sym___asm__] = ACTIONS(1966), + [anon_sym___asm] = ACTIONS(1966), + [sym_number_literal] = ACTIONS(2002), + [anon_sym_L_SQUOTE] = ACTIONS(2004), + [anon_sym_u_SQUOTE] = ACTIONS(2004), + [anon_sym_U_SQUOTE] = ACTIONS(2004), + [anon_sym_u8_SQUOTE] = ACTIONS(2004), + [anon_sym_SQUOTE] = ACTIONS(2004), + [anon_sym_L_DQUOTE] = ACTIONS(2006), + [anon_sym_u_DQUOTE] = ACTIONS(2006), + [anon_sym_U_DQUOTE] = ACTIONS(2006), + [anon_sym_u8_DQUOTE] = ACTIONS(2006), + [anon_sym_DQUOTE] = ACTIONS(2006), + [sym_true] = ACTIONS(1974), + [sym_false] = ACTIONS(1974), + [anon_sym_NULL] = ACTIONS(1976), + [anon_sym_nullptr] = ACTIONS(1976), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(2008), + [anon_sym_R_DQUOTE] = ACTIONS(2010), + [anon_sym_LR_DQUOTE] = ACTIONS(2010), + [anon_sym_uR_DQUOTE] = ACTIONS(2010), + [anon_sym_UR_DQUOTE] = ACTIONS(2010), + [anon_sym_u8R_DQUOTE] = ACTIONS(2010), + [anon_sym_co_await] = ACTIONS(2012), + [anon_sym_new] = ACTIONS(2014), + [anon_sym_requires] = ACTIONS(1988), + [sym_this] = ACTIONS(1974), + }, + [1133] = { + [sym_expression] = STATE(3807), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4752), + [anon_sym_LPAREN2] = ACTIONS(4754), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), + [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3851), - [anon_sym_compl] = ACTIONS(3851), - [anon_sym_DASH_DASH] = ACTIONS(3897), - [anon_sym_PLUS_PLUS] = ACTIONS(3897), - [anon_sym_sizeof] = ACTIONS(3859), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -186117,80 +193790,180 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3861), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3863), - [anon_sym_new] = ACTIONS(3865), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1068] = { - [sym_expression] = STATE(2388), - [sym__string] = STATE(2950), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_initializer_list] = STATE(2441), - [sym_char_literal] = STATE(2950), - [sym_concatenated_string] = STATE(2950), - [sym_string_literal] = STATE(2034), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(2034), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), + [1134] = { + [sym_expression] = STATE(4319), + [sym__string] = STATE(4455), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3366), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3366), + [sym_call_expression] = STATE(3366), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3366), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3366), + [sym_char_literal] = STATE(4455), + [sym_concatenated_string] = STATE(4455), + [sym_string_literal] = STATE(3406), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3406), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3366), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3366), + [sym_identifier] = ACTIONS(3833), + [anon_sym_LPAREN2] = ACTIONS(4557), + [anon_sym_BANG] = ACTIONS(3837), + [anon_sym_TILDE] = ACTIONS(3837), + [anon_sym_DASH] = ACTIONS(3835), + [anon_sym_PLUS] = ACTIONS(3835), + [anon_sym_STAR] = ACTIONS(4336), + [anon_sym_AMP] = ACTIONS(4336), + [anon_sym_SEMI] = ACTIONS(4756), + [anon_sym___extension__] = ACTIONS(3839), + [anon_sym_COLON_COLON] = ACTIONS(3841), + [anon_sym_LBRACK] = ACTIONS(4741), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3835), + [anon_sym_compl] = ACTIONS(3835), + [anon_sym_DASH_DASH] = ACTIONS(4338), + [anon_sym_PLUS_PLUS] = ACTIONS(4338), + [anon_sym_sizeof] = ACTIONS(3843), + [anon_sym___alignof__] = ACTIONS(107), + [anon_sym___alignof] = ACTIONS(107), + [anon_sym__alignof] = ACTIONS(107), + [anon_sym_alignof] = ACTIONS(107), + [anon_sym__Alignof] = ACTIONS(107), + [anon_sym_offsetof] = ACTIONS(109), + [anon_sym__Generic] = ACTIONS(111), + [anon_sym_asm] = ACTIONS(113), + [anon_sym___asm__] = ACTIONS(113), + [anon_sym___asm] = ACTIONS(113), + [sym_number_literal] = ACTIONS(3845), + [anon_sym_L_SQUOTE] = ACTIONS(3847), + [anon_sym_u_SQUOTE] = ACTIONS(3847), + [anon_sym_U_SQUOTE] = ACTIONS(3847), + [anon_sym_u8_SQUOTE] = ACTIONS(3847), + [anon_sym_SQUOTE] = ACTIONS(3847), + [anon_sym_L_DQUOTE] = ACTIONS(3849), + [anon_sym_u_DQUOTE] = ACTIONS(3849), + [anon_sym_U_DQUOTE] = ACTIONS(3849), + [anon_sym_u8_DQUOTE] = ACTIONS(3849), + [anon_sym_DQUOTE] = ACTIONS(3849), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(123), + [anon_sym_nullptr] = ACTIONS(123), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3851), + [anon_sym_R_DQUOTE] = ACTIONS(3853), + [anon_sym_LR_DQUOTE] = ACTIONS(3853), + [anon_sym_uR_DQUOTE] = ACTIONS(3853), + [anon_sym_UR_DQUOTE] = ACTIONS(3853), + [anon_sym_u8R_DQUOTE] = ACTIONS(3853), + [anon_sym_co_await] = ACTIONS(3855), + [anon_sym_new] = ACTIONS(163), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), + }, + [1135] = { + [sym_expression] = STATE(2432), + [sym__string] = STATE(2917), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(2917), + [sym_concatenated_string] = STATE(2917), + [sym_string_literal] = STATE(2114), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(2114), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), [sym_identifier] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(4555), + [anon_sym_LPAREN2] = ACTIONS(4565), [anon_sym_BANG] = ACTIONS(1994), [anon_sym_TILDE] = ACTIONS(1994), [anon_sym_DASH] = ACTIONS(1992), [anon_sym_PLUS] = ACTIONS(1992), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), [anon_sym___extension__] = ACTIONS(1996), [anon_sym_COLON_COLON] = ACTIONS(1998), - [anon_sym_LBRACE] = ACTIONS(1954), [anon_sym_LBRACK] = ACTIONS(2020), + [anon_sym_RBRACK] = ACTIONS(4758), [sym_primitive_type] = ACTIONS(1956), [anon_sym_not] = ACTIONS(1992), [anon_sym_compl] = ACTIONS(1992), - [anon_sym_DASH_DASH] = ACTIONS(3343), - [anon_sym_PLUS_PLUS] = ACTIONS(3343), + [anon_sym_DASH_DASH] = ACTIONS(3355), + [anon_sym_PLUS_PLUS] = ACTIONS(3355), [anon_sym_sizeof] = ACTIONS(2000), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), @@ -186219,7 +193992,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1976), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(2008), [anon_sym_R_DQUOTE] = ACTIONS(2010), [anon_sym_LR_DQUOTE] = ACTIONS(2010), @@ -186231,69 +194004,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [1069] = { - [sym_expression] = STATE(4431), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8338), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_RPAREN] = ACTIONS(4660), - [anon_sym_LPAREN2] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), - [anon_sym_COLON_COLON] = ACTIONS(47), + [1136] = { + [sym_expression] = STATE(3182), + [sym__string] = STATE(3393), + [sym_conditional_expression] = STATE(3401), + [sym_assignment_expression] = STATE(3401), + [sym_pointer_expression] = STATE(3405), + [sym_unary_expression] = STATE(3401), + [sym_binary_expression] = STATE(3401), + [sym_update_expression] = STATE(3401), + [sym_cast_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3401), + [sym_alignof_expression] = STATE(3401), + [sym_offsetof_expression] = STATE(3401), + [sym_generic_expression] = STATE(3401), + [sym_subscript_expression] = STATE(3405), + [sym_call_expression] = STATE(3405), + [sym_gnu_asm_expression] = STATE(3401), + [sym_extension_expression] = STATE(3401), + [sym_field_expression] = STATE(3405), + [sym_compound_literal_expression] = STATE(3401), + [sym_parenthesized_expression] = STATE(3405), + [sym_char_literal] = STATE(3393), + [sym_concatenated_string] = STATE(3393), + [sym_string_literal] = STATE(2380), + [sym_null] = STATE(3401), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7745), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3401), + [sym_raw_string_literal] = STATE(2380), + [sym_co_await_expression] = STATE(3401), + [sym_new_expression] = STATE(3401), + [sym_delete_expression] = STATE(3401), + [sym_requires_clause] = STATE(3401), + [sym_requires_expression] = STATE(3401), + [sym_lambda_expression] = STATE(3401), + [sym_lambda_capture_specifier] = STATE(5494), + [sym_fold_expression] = STATE(3401), + [sym_parameter_pack_expansion] = STATE(3401), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3405), + [sym_qualified_type_identifier] = STATE(7745), + [sym_user_defined_literal] = STATE(3405), + [sym_identifier] = ACTIONS(2453), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4716), + [anon_sym_LPAREN2] = ACTIONS(2018), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(2455), + [anon_sym_COLON_COLON] = ACTIONS(1804), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), + [sym_primitive_type] = ACTIONS(2459), + [anon_sym_not] = ACTIONS(1796), + [anon_sym_compl] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_sizeof] = ACTIONS(1824), + [anon_sym___alignof__] = ACTIONS(1826), + [anon_sym___alignof] = ACTIONS(1826), + [anon_sym__alignof] = ACTIONS(1826), + [anon_sym_alignof] = ACTIONS(1826), + [anon_sym__Alignof] = ACTIONS(1826), + [anon_sym_offsetof] = ACTIONS(1828), + [anon_sym__Generic] = ACTIONS(1830), + [anon_sym_asm] = ACTIONS(1832), + [anon_sym___asm__] = ACTIONS(1832), + [anon_sym___asm] = ACTIONS(1832), + [sym_number_literal] = ACTIONS(1834), + [anon_sym_L_SQUOTE] = ACTIONS(1836), + [anon_sym_u_SQUOTE] = ACTIONS(1836), + [anon_sym_U_SQUOTE] = ACTIONS(1836), + [anon_sym_u8_SQUOTE] = ACTIONS(1836), + [anon_sym_SQUOTE] = ACTIONS(1836), + [anon_sym_L_DQUOTE] = ACTIONS(1838), + [anon_sym_u_DQUOTE] = ACTIONS(1838), + [anon_sym_U_DQUOTE] = ACTIONS(1838), + [anon_sym_u8_DQUOTE] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym_true] = ACTIONS(1840), + [sym_false] = ACTIONS(1840), + [anon_sym_NULL] = ACTIONS(1842), + [anon_sym_nullptr] = ACTIONS(1842), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1852), + [anon_sym_R_DQUOTE] = ACTIONS(1854), + [anon_sym_LR_DQUOTE] = ACTIONS(1854), + [anon_sym_uR_DQUOTE] = ACTIONS(1854), + [anon_sym_UR_DQUOTE] = ACTIONS(1854), + [anon_sym_u8R_DQUOTE] = ACTIONS(1854), + [anon_sym_co_await] = ACTIONS(1856), + [anon_sym_new] = ACTIONS(1858), + [anon_sym_requires] = ACTIONS(1860), + [sym_this] = ACTIONS(1840), + }, + [1137] = { + [sym_expression] = STATE(3807), + [sym__string] = STATE(4269), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(2921), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(2921), + [sym_call_expression] = STATE(2921), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(2921), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(2921), + [sym_char_literal] = STATE(4269), + [sym_concatenated_string] = STATE(4269), + [sym_string_literal] = STATE(3102), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3102), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2921), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(2921), + [sym_identifier] = ACTIONS(4356), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4752), + [anon_sym_LPAREN2] = ACTIONS(4760), + [anon_sym_BANG] = ACTIONS(3617), + [anon_sym_TILDE] = ACTIONS(3617), + [anon_sym_DASH] = ACTIONS(3615), + [anon_sym_PLUS] = ACTIONS(3615), + [anon_sym_STAR] = ACTIONS(4346), + [anon_sym_AMP] = ACTIONS(4346), + [anon_sym___extension__] = ACTIONS(3619), + [anon_sym_COLON_COLON] = ACTIONS(3621), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3615), + [anon_sym_compl] = ACTIONS(3615), + [anon_sym_DASH_DASH] = ACTIONS(4358), + [anon_sym_PLUS_PLUS] = ACTIONS(4358), + [anon_sym_sizeof] = ACTIONS(3625), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -186304,93 +194177,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(113), [anon_sym___asm__] = ACTIONS(113), [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), + [sym_number_literal] = ACTIONS(3627), + [anon_sym_L_SQUOTE] = ACTIONS(3629), + [anon_sym_u_SQUOTE] = ACTIONS(3629), + [anon_sym_U_SQUOTE] = ACTIONS(3629), + [anon_sym_u8_SQUOTE] = ACTIONS(3629), + [anon_sym_SQUOTE] = ACTIONS(3629), + [anon_sym_L_DQUOTE] = ACTIONS(3631), + [anon_sym_u_DQUOTE] = ACTIONS(3631), + [anon_sym_U_DQUOTE] = ACTIONS(3631), + [anon_sym_u8_DQUOTE] = ACTIONS(3631), + [anon_sym_DQUOTE] = ACTIONS(3631), [sym_true] = ACTIONS(229), [sym_false] = ACTIONS(229), [anon_sym_NULL] = ACTIONS(123), [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3633), + [anon_sym_R_DQUOTE] = ACTIONS(3635), + [anon_sym_LR_DQUOTE] = ACTIONS(3635), + [anon_sym_uR_DQUOTE] = ACTIONS(3635), + [anon_sym_UR_DQUOTE] = ACTIONS(3635), + [anon_sym_u8R_DQUOTE] = ACTIONS(3635), + [anon_sym_co_await] = ACTIONS(3637), + [anon_sym_new] = ACTIONS(3639), + [anon_sym_requires] = ACTIONS(3641), [sym_this] = ACTIONS(229), }, - [1070] = { - [sym_expression] = STATE(4433), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8038), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_RPAREN] = ACTIONS(4662), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1138] = { + [sym_expression] = STATE(4673), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(4762), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -186423,7 +194295,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -186435,64 +194307,264 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1071] = { - [sym_expression] = STATE(4645), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_initializer_list] = STATE(8336), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1139] = { + [sym_expression] = STATE(3184), + [sym__string] = STATE(3393), + [sym_conditional_expression] = STATE(3401), + [sym_assignment_expression] = STATE(3401), + [sym_pointer_expression] = STATE(3405), + [sym_unary_expression] = STATE(3401), + [sym_binary_expression] = STATE(3401), + [sym_update_expression] = STATE(3401), + [sym_cast_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3401), + [sym_alignof_expression] = STATE(3401), + [sym_offsetof_expression] = STATE(3401), + [sym_generic_expression] = STATE(3401), + [sym_subscript_expression] = STATE(3405), + [sym_call_expression] = STATE(3405), + [sym_gnu_asm_expression] = STATE(3401), + [sym_extension_expression] = STATE(3401), + [sym_field_expression] = STATE(3405), + [sym_compound_literal_expression] = STATE(3401), + [sym_parenthesized_expression] = STATE(3405), + [sym_char_literal] = STATE(3393), + [sym_concatenated_string] = STATE(3393), + [sym_string_literal] = STATE(2380), + [sym_null] = STATE(3401), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7745), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3401), + [sym_raw_string_literal] = STATE(2380), + [sym_co_await_expression] = STATE(3401), + [sym_new_expression] = STATE(3401), + [sym_delete_expression] = STATE(3401), + [sym_requires_clause] = STATE(3401), + [sym_requires_expression] = STATE(3401), + [sym_lambda_expression] = STATE(3401), + [sym_lambda_capture_specifier] = STATE(5494), + [sym_fold_expression] = STATE(3401), + [sym_parameter_pack_expansion] = STATE(3401), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3405), + [sym_qualified_type_identifier] = STATE(7745), + [sym_user_defined_literal] = STATE(3405), + [sym_identifier] = ACTIONS(2453), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4764), + [anon_sym_LPAREN2] = ACTIONS(2018), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(2455), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2459), + [anon_sym_not] = ACTIONS(1796), + [anon_sym_compl] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_sizeof] = ACTIONS(1824), + [anon_sym___alignof__] = ACTIONS(1826), + [anon_sym___alignof] = ACTIONS(1826), + [anon_sym__alignof] = ACTIONS(1826), + [anon_sym_alignof] = ACTIONS(1826), + [anon_sym__Alignof] = ACTIONS(1826), + [anon_sym_offsetof] = ACTIONS(1828), + [anon_sym__Generic] = ACTIONS(1830), + [anon_sym_asm] = ACTIONS(1832), + [anon_sym___asm__] = ACTIONS(1832), + [anon_sym___asm] = ACTIONS(1832), + [sym_number_literal] = ACTIONS(1834), + [anon_sym_L_SQUOTE] = ACTIONS(1836), + [anon_sym_u_SQUOTE] = ACTIONS(1836), + [anon_sym_U_SQUOTE] = ACTIONS(1836), + [anon_sym_u8_SQUOTE] = ACTIONS(1836), + [anon_sym_SQUOTE] = ACTIONS(1836), + [anon_sym_L_DQUOTE] = ACTIONS(1838), + [anon_sym_u_DQUOTE] = ACTIONS(1838), + [anon_sym_U_DQUOTE] = ACTIONS(1838), + [anon_sym_u8_DQUOTE] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym_true] = ACTIONS(1840), + [sym_false] = ACTIONS(1840), + [anon_sym_NULL] = ACTIONS(1842), + [anon_sym_nullptr] = ACTIONS(1842), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1852), + [anon_sym_R_DQUOTE] = ACTIONS(1854), + [anon_sym_LR_DQUOTE] = ACTIONS(1854), + [anon_sym_uR_DQUOTE] = ACTIONS(1854), + [anon_sym_UR_DQUOTE] = ACTIONS(1854), + [anon_sym_u8R_DQUOTE] = ACTIONS(1854), + [anon_sym_co_await] = ACTIONS(1856), + [anon_sym_new] = ACTIONS(1858), + [anon_sym_requires] = ACTIONS(1860), + [sym_this] = ACTIONS(1840), + }, + [1140] = { + [sym_expression] = STATE(3706), + [sym__string] = STATE(3775), + [sym_conditional_expression] = STATE(3886), + [sym_assignment_expression] = STATE(3886), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(3886), + [sym_binary_expression] = STATE(3886), + [sym_update_expression] = STATE(3886), + [sym_cast_expression] = STATE(3886), + [sym_sizeof_expression] = STATE(3886), + [sym_alignof_expression] = STATE(3886), + [sym_offsetof_expression] = STATE(3886), + [sym_generic_expression] = STATE(3886), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(3886), + [sym_extension_expression] = STATE(3886), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(3886), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(3775), + [sym_concatenated_string] = STATE(3775), + [sym_string_literal] = STATE(2596), + [sym_null] = STATE(3886), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7756), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3886), + [sym_raw_string_literal] = STATE(2596), + [sym_co_await_expression] = STATE(3886), + [sym_new_expression] = STATE(3886), + [sym_delete_expression] = STATE(3886), + [sym_requires_clause] = STATE(3886), + [sym_requires_expression] = STATE(3886), + [sym_lambda_expression] = STATE(3886), + [sym_lambda_capture_specifier] = STATE(5492), + [sym_fold_expression] = STATE(3886), + [sym_parameter_pack_expansion] = STATE(3886), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(7756), + [sym_user_defined_literal] = STATE(3522), + [sym_identifier] = ACTIONS(2619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4767), + [anon_sym_LPAREN2] = ACTIONS(1888), + [anon_sym_BANG] = ACTIONS(1890), + [anon_sym_TILDE] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1892), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(2621), + [anon_sym_COLON_COLON] = ACTIONS(1898), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2625), + [anon_sym_not] = ACTIONS(1892), + [anon_sym_compl] = ACTIONS(1892), + [anon_sym_DASH_DASH] = ACTIONS(1902), + [anon_sym_PLUS_PLUS] = ACTIONS(1902), + [anon_sym_sizeof] = ACTIONS(1904), + [anon_sym___alignof__] = ACTIONS(1906), + [anon_sym___alignof] = ACTIONS(1906), + [anon_sym__alignof] = ACTIONS(1906), + [anon_sym_alignof] = ACTIONS(1906), + [anon_sym__Alignof] = ACTIONS(1906), + [anon_sym_offsetof] = ACTIONS(1908), + [anon_sym__Generic] = ACTIONS(1910), + [anon_sym_asm] = ACTIONS(1912), + [anon_sym___asm__] = ACTIONS(1912), + [anon_sym___asm] = ACTIONS(1912), + [sym_number_literal] = ACTIONS(1914), + [anon_sym_L_SQUOTE] = ACTIONS(1916), + [anon_sym_u_SQUOTE] = ACTIONS(1916), + [anon_sym_U_SQUOTE] = ACTIONS(1916), + [anon_sym_u8_SQUOTE] = ACTIONS(1916), + [anon_sym_SQUOTE] = ACTIONS(1916), + [anon_sym_L_DQUOTE] = ACTIONS(1918), + [anon_sym_u_DQUOTE] = ACTIONS(1918), + [anon_sym_U_DQUOTE] = ACTIONS(1918), + [anon_sym_u8_DQUOTE] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1918), + [sym_true] = ACTIONS(1920), + [sym_false] = ACTIONS(1920), + [anon_sym_NULL] = ACTIONS(1922), + [anon_sym_nullptr] = ACTIONS(1922), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1924), + [anon_sym_R_DQUOTE] = ACTIONS(1926), + [anon_sym_LR_DQUOTE] = ACTIONS(1926), + [anon_sym_uR_DQUOTE] = ACTIONS(1926), + [anon_sym_UR_DQUOTE] = ACTIONS(1926), + [anon_sym_u8R_DQUOTE] = ACTIONS(1926), + [anon_sym_co_await] = ACTIONS(1928), + [anon_sym_new] = ACTIONS(1930), + [anon_sym_requires] = ACTIONS(1932), + [sym_this] = ACTIONS(1920), + }, + [1141] = { + [sym_expression] = STATE(4716), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3615), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -186524,8 +194596,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(123), [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4770), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -186537,171 +194610,270 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1072] = { - [sym_expression] = STATE(4417), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8411), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3568), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3568), - [sym_call_expression] = STATE(3568), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3568), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3568), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3568), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3568), - [sym_identifier] = ACTIONS(3867), - [anon_sym_LPAREN2] = ACTIONS(4642), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_TILDE] = ACTIONS(3871), - [anon_sym_DASH] = ACTIONS(3869), - [anon_sym_PLUS] = ACTIONS(3869), - [anon_sym_STAR] = ACTIONS(4312), - [anon_sym_AMP] = ACTIONS(4312), - [anon_sym___extension__] = ACTIONS(3873), - [anon_sym_COLON] = ACTIONS(4664), - [anon_sym_COLON_COLON] = ACTIONS(3875), + [1142] = { + [sym_expression] = STATE(3706), + [sym__string] = STATE(3775), + [sym_conditional_expression] = STATE(3886), + [sym_assignment_expression] = STATE(3886), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(3886), + [sym_binary_expression] = STATE(3886), + [sym_update_expression] = STATE(3886), + [sym_cast_expression] = STATE(3886), + [sym_sizeof_expression] = STATE(3886), + [sym_alignof_expression] = STATE(3886), + [sym_offsetof_expression] = STATE(3886), + [sym_generic_expression] = STATE(3886), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(3886), + [sym_extension_expression] = STATE(3886), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(3886), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(3775), + [sym_concatenated_string] = STATE(3775), + [sym_string_literal] = STATE(2596), + [sym_null] = STATE(3886), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7756), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3886), + [sym_raw_string_literal] = STATE(2596), + [sym_co_await_expression] = STATE(3886), + [sym_new_expression] = STATE(3886), + [sym_delete_expression] = STATE(3886), + [sym_requires_clause] = STATE(3886), + [sym_requires_expression] = STATE(3886), + [sym_lambda_expression] = STATE(3886), + [sym_lambda_capture_specifier] = STATE(5492), + [sym_fold_expression] = STATE(3886), + [sym_parameter_pack_expansion] = STATE(3886), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(7756), + [sym_user_defined_literal] = STATE(3522), + [sym_identifier] = ACTIONS(2619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4772), + [anon_sym_LPAREN2] = ACTIONS(1888), + [anon_sym_BANG] = ACTIONS(1890), + [anon_sym_TILDE] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1892), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(2621), + [anon_sym_COLON_COLON] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3869), - [anon_sym_compl] = ACTIONS(3869), - [anon_sym_DASH_DASH] = ACTIONS(4404), - [anon_sym_PLUS_PLUS] = ACTIONS(4404), - [anon_sym_sizeof] = ACTIONS(3877), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), + [sym_primitive_type] = ACTIONS(2625), + [anon_sym_not] = ACTIONS(1892), + [anon_sym_compl] = ACTIONS(1892), + [anon_sym_DASH_DASH] = ACTIONS(1902), + [anon_sym_PLUS_PLUS] = ACTIONS(1902), + [anon_sym_sizeof] = ACTIONS(1904), + [anon_sym___alignof__] = ACTIONS(1906), + [anon_sym___alignof] = ACTIONS(1906), + [anon_sym__alignof] = ACTIONS(1906), + [anon_sym_alignof] = ACTIONS(1906), + [anon_sym__Alignof] = ACTIONS(1906), + [anon_sym_offsetof] = ACTIONS(1908), + [anon_sym__Generic] = ACTIONS(1910), + [anon_sym_asm] = ACTIONS(1912), + [anon_sym___asm__] = ACTIONS(1912), + [anon_sym___asm] = ACTIONS(1912), + [sym_number_literal] = ACTIONS(1914), + [anon_sym_L_SQUOTE] = ACTIONS(1916), + [anon_sym_u_SQUOTE] = ACTIONS(1916), + [anon_sym_U_SQUOTE] = ACTIONS(1916), + [anon_sym_u8_SQUOTE] = ACTIONS(1916), + [anon_sym_SQUOTE] = ACTIONS(1916), + [anon_sym_L_DQUOTE] = ACTIONS(1918), + [anon_sym_u_DQUOTE] = ACTIONS(1918), + [anon_sym_U_DQUOTE] = ACTIONS(1918), + [anon_sym_u8_DQUOTE] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1918), + [sym_true] = ACTIONS(1920), + [sym_false] = ACTIONS(1920), + [anon_sym_NULL] = ACTIONS(1922), + [anon_sym_nullptr] = ACTIONS(1922), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3879), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3881), - [anon_sym_new] = ACTIONS(3865), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1924), + [anon_sym_R_DQUOTE] = ACTIONS(1926), + [anon_sym_LR_DQUOTE] = ACTIONS(1926), + [anon_sym_uR_DQUOTE] = ACTIONS(1926), + [anon_sym_UR_DQUOTE] = ACTIONS(1926), + [anon_sym_u8R_DQUOTE] = ACTIONS(1926), + [anon_sym_co_await] = ACTIONS(1928), + [anon_sym_new] = ACTIONS(1930), + [anon_sym_requires] = ACTIONS(1932), + [sym_this] = ACTIONS(1920), }, - [1073] = { - [sym_expression] = STATE(4497), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8366), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3568), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3568), - [sym_call_expression] = STATE(3568), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3568), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3568), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3568), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3568), - [sym_identifier] = ACTIONS(3867), - [anon_sym_LPAREN2] = ACTIONS(4642), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_TILDE] = ACTIONS(3871), - [anon_sym_DASH] = ACTIONS(3869), - [anon_sym_PLUS] = ACTIONS(3869), - [anon_sym_STAR] = ACTIONS(4312), - [anon_sym_AMP] = ACTIONS(4312), - [anon_sym___extension__] = ACTIONS(3873), - [anon_sym_COLON] = ACTIONS(4666), - [anon_sym_COLON_COLON] = ACTIONS(3875), + [1143] = { + [sym_expression] = STATE(2432), + [sym__string] = STATE(2917), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(2917), + [sym_concatenated_string] = STATE(2917), + [sym_string_literal] = STATE(2114), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(2114), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), + [sym_identifier] = ACTIONS(1990), + [anon_sym_LPAREN2] = ACTIONS(4565), + [anon_sym_BANG] = ACTIONS(1994), + [anon_sym_TILDE] = ACTIONS(1994), + [anon_sym_DASH] = ACTIONS(1992), + [anon_sym_PLUS] = ACTIONS(1992), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(1996), + [anon_sym_COLON_COLON] = ACTIONS(1998), + [anon_sym_LBRACK] = ACTIONS(2020), + [anon_sym_RBRACK] = ACTIONS(4775), + [sym_primitive_type] = ACTIONS(1956), + [anon_sym_not] = ACTIONS(1992), + [anon_sym_compl] = ACTIONS(1992), + [anon_sym_DASH_DASH] = ACTIONS(3355), + [anon_sym_PLUS_PLUS] = ACTIONS(3355), + [anon_sym_sizeof] = ACTIONS(2000), + [anon_sym___alignof__] = ACTIONS(1960), + [anon_sym___alignof] = ACTIONS(1960), + [anon_sym__alignof] = ACTIONS(1960), + [anon_sym_alignof] = ACTIONS(1960), + [anon_sym__Alignof] = ACTIONS(1960), + [anon_sym_offsetof] = ACTIONS(1962), + [anon_sym__Generic] = ACTIONS(1964), + [anon_sym_asm] = ACTIONS(1966), + [anon_sym___asm__] = ACTIONS(1966), + [anon_sym___asm] = ACTIONS(1966), + [sym_number_literal] = ACTIONS(2002), + [anon_sym_L_SQUOTE] = ACTIONS(2004), + [anon_sym_u_SQUOTE] = ACTIONS(2004), + [anon_sym_U_SQUOTE] = ACTIONS(2004), + [anon_sym_u8_SQUOTE] = ACTIONS(2004), + [anon_sym_SQUOTE] = ACTIONS(2004), + [anon_sym_L_DQUOTE] = ACTIONS(2006), + [anon_sym_u_DQUOTE] = ACTIONS(2006), + [anon_sym_U_DQUOTE] = ACTIONS(2006), + [anon_sym_u8_DQUOTE] = ACTIONS(2006), + [anon_sym_DQUOTE] = ACTIONS(2006), + [sym_true] = ACTIONS(1974), + [sym_false] = ACTIONS(1974), + [anon_sym_NULL] = ACTIONS(1976), + [anon_sym_nullptr] = ACTIONS(1976), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(2008), + [anon_sym_R_DQUOTE] = ACTIONS(2010), + [anon_sym_LR_DQUOTE] = ACTIONS(2010), + [anon_sym_uR_DQUOTE] = ACTIONS(2010), + [anon_sym_UR_DQUOTE] = ACTIONS(2010), + [anon_sym_u8R_DQUOTE] = ACTIONS(2010), + [anon_sym_co_await] = ACTIONS(2012), + [anon_sym_new] = ACTIONS(2014), + [anon_sym_requires] = ACTIONS(1988), + [sym_this] = ACTIONS(1974), + }, + [1144] = { + [sym_expression] = STATE(4593), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(7587), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3597), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3597), + [sym_call_expression] = STATE(3597), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3597), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3597), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3597), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3597), + [sym_identifier] = ACTIONS(3857), + [anon_sym_LPAREN2] = ACTIONS(4648), + [anon_sym_BANG] = ACTIONS(3861), + [anon_sym_TILDE] = ACTIONS(3861), + [anon_sym_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3859), + [anon_sym_STAR] = ACTIONS(4366), + [anon_sym_AMP] = ACTIONS(4366), + [anon_sym___extension__] = ACTIONS(3863), + [anon_sym_COLON_COLON] = ACTIONS(3865), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3869), - [anon_sym_compl] = ACTIONS(3869), - [anon_sym_DASH_DASH] = ACTIONS(4404), - [anon_sym_PLUS_PLUS] = ACTIONS(4404), - [anon_sym_sizeof] = ACTIONS(3877), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3859), + [anon_sym_compl] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(4368), + [anon_sym_PLUS_PLUS] = ACTIONS(4368), + [anon_sym_sizeof] = ACTIONS(3867), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -186729,81 +194901,282 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3879), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3869), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3881), - [anon_sym_new] = ACTIONS(3865), + [anon_sym_co_await] = ACTIONS(3871), + [anon_sym_new] = ACTIONS(3873), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1074] = { - [sym_expression] = STATE(2388), - [sym__string] = STATE(2870), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_initializer_list] = STATE(2441), - [sym_char_literal] = STATE(2870), - [sym_concatenated_string] = STATE(2870), - [sym_string_literal] = STATE(1942), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(1942), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), + [1145] = { + [sym_expression] = STATE(3707), + [sym__string] = STATE(3775), + [sym_conditional_expression] = STATE(3886), + [sym_assignment_expression] = STATE(3886), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(3886), + [sym_binary_expression] = STATE(3886), + [sym_update_expression] = STATE(3886), + [sym_cast_expression] = STATE(3886), + [sym_sizeof_expression] = STATE(3886), + [sym_alignof_expression] = STATE(3886), + [sym_offsetof_expression] = STATE(3886), + [sym_generic_expression] = STATE(3886), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(3886), + [sym_extension_expression] = STATE(3886), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(3886), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(3775), + [sym_concatenated_string] = STATE(3775), + [sym_string_literal] = STATE(2596), + [sym_null] = STATE(3886), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7756), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3886), + [sym_raw_string_literal] = STATE(2596), + [sym_co_await_expression] = STATE(3886), + [sym_new_expression] = STATE(3886), + [sym_delete_expression] = STATE(3886), + [sym_requires_clause] = STATE(3886), + [sym_requires_expression] = STATE(3886), + [sym_lambda_expression] = STATE(3886), + [sym_lambda_capture_specifier] = STATE(5492), + [sym_fold_expression] = STATE(3886), + [sym_parameter_pack_expansion] = STATE(3886), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(7756), + [sym_user_defined_literal] = STATE(3522), + [sym_identifier] = ACTIONS(2619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4777), + [anon_sym_LPAREN2] = ACTIONS(1888), + [anon_sym_BANG] = ACTIONS(1890), + [anon_sym_TILDE] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1892), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(2621), + [anon_sym_COLON_COLON] = ACTIONS(1898), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2625), + [anon_sym_not] = ACTIONS(1892), + [anon_sym_compl] = ACTIONS(1892), + [anon_sym_DASH_DASH] = ACTIONS(1902), + [anon_sym_PLUS_PLUS] = ACTIONS(1902), + [anon_sym_sizeof] = ACTIONS(1904), + [anon_sym___alignof__] = ACTIONS(1906), + [anon_sym___alignof] = ACTIONS(1906), + [anon_sym__alignof] = ACTIONS(1906), + [anon_sym_alignof] = ACTIONS(1906), + [anon_sym__Alignof] = ACTIONS(1906), + [anon_sym_offsetof] = ACTIONS(1908), + [anon_sym__Generic] = ACTIONS(1910), + [anon_sym_asm] = ACTIONS(1912), + [anon_sym___asm__] = ACTIONS(1912), + [anon_sym___asm] = ACTIONS(1912), + [sym_number_literal] = ACTIONS(1914), + [anon_sym_L_SQUOTE] = ACTIONS(1916), + [anon_sym_u_SQUOTE] = ACTIONS(1916), + [anon_sym_U_SQUOTE] = ACTIONS(1916), + [anon_sym_u8_SQUOTE] = ACTIONS(1916), + [anon_sym_SQUOTE] = ACTIONS(1916), + [anon_sym_L_DQUOTE] = ACTIONS(1918), + [anon_sym_u_DQUOTE] = ACTIONS(1918), + [anon_sym_U_DQUOTE] = ACTIONS(1918), + [anon_sym_u8_DQUOTE] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1918), + [sym_true] = ACTIONS(1920), + [sym_false] = ACTIONS(1920), + [anon_sym_NULL] = ACTIONS(1922), + [anon_sym_nullptr] = ACTIONS(1922), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1924), + [anon_sym_R_DQUOTE] = ACTIONS(1926), + [anon_sym_LR_DQUOTE] = ACTIONS(1926), + [anon_sym_uR_DQUOTE] = ACTIONS(1926), + [anon_sym_UR_DQUOTE] = ACTIONS(1926), + [anon_sym_u8R_DQUOTE] = ACTIONS(1926), + [anon_sym_co_await] = ACTIONS(1928), + [anon_sym_new] = ACTIONS(1930), + [anon_sym_requires] = ACTIONS(1932), + [sym_this] = ACTIONS(1920), + }, + [1146] = { + [sym_expression] = STATE(3188), + [sym__string] = STATE(3393), + [sym_conditional_expression] = STATE(3401), + [sym_assignment_expression] = STATE(3401), + [sym_pointer_expression] = STATE(3405), + [sym_unary_expression] = STATE(3401), + [sym_binary_expression] = STATE(3401), + [sym_update_expression] = STATE(3401), + [sym_cast_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3401), + [sym_alignof_expression] = STATE(3401), + [sym_offsetof_expression] = STATE(3401), + [sym_generic_expression] = STATE(3401), + [sym_subscript_expression] = STATE(3405), + [sym_call_expression] = STATE(3405), + [sym_gnu_asm_expression] = STATE(3401), + [sym_extension_expression] = STATE(3401), + [sym_field_expression] = STATE(3405), + [sym_compound_literal_expression] = STATE(3401), + [sym_parenthesized_expression] = STATE(3405), + [sym_char_literal] = STATE(3393), + [sym_concatenated_string] = STATE(3393), + [sym_string_literal] = STATE(2380), + [sym_null] = STATE(3401), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7745), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3401), + [sym_raw_string_literal] = STATE(2380), + [sym_co_await_expression] = STATE(3401), + [sym_new_expression] = STATE(3401), + [sym_delete_expression] = STATE(3401), + [sym_requires_clause] = STATE(3401), + [sym_requires_expression] = STATE(3401), + [sym_lambda_expression] = STATE(3401), + [sym_lambda_capture_specifier] = STATE(5494), + [sym_fold_expression] = STATE(3401), + [sym_parameter_pack_expansion] = STATE(3401), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3405), + [sym_qualified_type_identifier] = STATE(7745), + [sym_user_defined_literal] = STATE(3405), + [sym_identifier] = ACTIONS(2453), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4704), + [anon_sym_LPAREN2] = ACTIONS(2018), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(2455), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2459), + [anon_sym_not] = ACTIONS(1796), + [anon_sym_compl] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_sizeof] = ACTIONS(1824), + [anon_sym___alignof__] = ACTIONS(1826), + [anon_sym___alignof] = ACTIONS(1826), + [anon_sym__alignof] = ACTIONS(1826), + [anon_sym_alignof] = ACTIONS(1826), + [anon_sym__Alignof] = ACTIONS(1826), + [anon_sym_offsetof] = ACTIONS(1828), + [anon_sym__Generic] = ACTIONS(1830), + [anon_sym_asm] = ACTIONS(1832), + [anon_sym___asm__] = ACTIONS(1832), + [anon_sym___asm] = ACTIONS(1832), + [sym_number_literal] = ACTIONS(1834), + [anon_sym_L_SQUOTE] = ACTIONS(1836), + [anon_sym_u_SQUOTE] = ACTIONS(1836), + [anon_sym_U_SQUOTE] = ACTIONS(1836), + [anon_sym_u8_SQUOTE] = ACTIONS(1836), + [anon_sym_SQUOTE] = ACTIONS(1836), + [anon_sym_L_DQUOTE] = ACTIONS(1838), + [anon_sym_u_DQUOTE] = ACTIONS(1838), + [anon_sym_U_DQUOTE] = ACTIONS(1838), + [anon_sym_u8_DQUOTE] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym_true] = ACTIONS(1840), + [sym_false] = ACTIONS(1840), + [anon_sym_NULL] = ACTIONS(1842), + [anon_sym_nullptr] = ACTIONS(1842), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1852), + [anon_sym_R_DQUOTE] = ACTIONS(1854), + [anon_sym_LR_DQUOTE] = ACTIONS(1854), + [anon_sym_uR_DQUOTE] = ACTIONS(1854), + [anon_sym_UR_DQUOTE] = ACTIONS(1854), + [anon_sym_u8R_DQUOTE] = ACTIONS(1854), + [anon_sym_co_await] = ACTIONS(1856), + [anon_sym_new] = ACTIONS(1858), + [anon_sym_requires] = ACTIONS(1860), + [sym_this] = ACTIONS(1840), + }, + [1147] = { + [sym_expression] = STATE(2432), + [sym__string] = STATE(2917), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(2917), + [sym_concatenated_string] = STATE(2917), + [sym_string_literal] = STATE(2114), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(2114), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), [sym_identifier] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(4668), - [anon_sym_BANG] = ACTIONS(1948), - [anon_sym_TILDE] = ACTIONS(1948), - [anon_sym_DASH] = ACTIONS(1946), - [anon_sym_PLUS] = ACTIONS(1946), - [anon_sym_STAR] = ACTIONS(4336), - [anon_sym_AMP] = ACTIONS(4336), - [anon_sym___extension__] = ACTIONS(1950), - [anon_sym_COLON_COLON] = ACTIONS(1952), - [anon_sym_LBRACE] = ACTIONS(1954), + [anon_sym_LPAREN2] = ACTIONS(4565), + [anon_sym_BANG] = ACTIONS(1994), + [anon_sym_TILDE] = ACTIONS(1994), + [anon_sym_DASH] = ACTIONS(1992), + [anon_sym_PLUS] = ACTIONS(1992), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(1996), + [anon_sym_COLON_COLON] = ACTIONS(1998), [anon_sym_LBRACK] = ACTIONS(2020), + [anon_sym_RBRACK] = ACTIONS(4780), [sym_primitive_type] = ACTIONS(1956), - [anon_sym_not] = ACTIONS(1946), - [anon_sym_compl] = ACTIONS(1946), - [anon_sym_DASH_DASH] = ACTIONS(4417), - [anon_sym_PLUS_PLUS] = ACTIONS(4417), - [anon_sym_sizeof] = ACTIONS(1958), + [anon_sym_not] = ACTIONS(1992), + [anon_sym_compl] = ACTIONS(1992), + [anon_sym_DASH_DASH] = ACTIONS(3355), + [anon_sym_PLUS_PLUS] = ACTIONS(3355), + [anon_sym_sizeof] = ACTIONS(2000), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), [anon_sym__alignof] = ACTIONS(1960), @@ -186814,200 +195187,299 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(1966), [anon_sym___asm__] = ACTIONS(1966), [anon_sym___asm] = ACTIONS(1966), - [sym_number_literal] = ACTIONS(1968), - [anon_sym_L_SQUOTE] = ACTIONS(1970), - [anon_sym_u_SQUOTE] = ACTIONS(1970), - [anon_sym_U_SQUOTE] = ACTIONS(1970), - [anon_sym_u8_SQUOTE] = ACTIONS(1970), - [anon_sym_SQUOTE] = ACTIONS(1970), - [anon_sym_L_DQUOTE] = ACTIONS(1972), - [anon_sym_u_DQUOTE] = ACTIONS(1972), - [anon_sym_U_DQUOTE] = ACTIONS(1972), - [anon_sym_u8_DQUOTE] = ACTIONS(1972), - [anon_sym_DQUOTE] = ACTIONS(1972), + [sym_number_literal] = ACTIONS(2002), + [anon_sym_L_SQUOTE] = ACTIONS(2004), + [anon_sym_u_SQUOTE] = ACTIONS(2004), + [anon_sym_U_SQUOTE] = ACTIONS(2004), + [anon_sym_u8_SQUOTE] = ACTIONS(2004), + [anon_sym_SQUOTE] = ACTIONS(2004), + [anon_sym_L_DQUOTE] = ACTIONS(2006), + [anon_sym_u_DQUOTE] = ACTIONS(2006), + [anon_sym_U_DQUOTE] = ACTIONS(2006), + [anon_sym_u8_DQUOTE] = ACTIONS(2006), + [anon_sym_DQUOTE] = ACTIONS(2006), [sym_true] = ACTIONS(1974), [sym_false] = ACTIONS(1974), [anon_sym_NULL] = ACTIONS(1976), [anon_sym_nullptr] = ACTIONS(1976), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1980), - [anon_sym_R_DQUOTE] = ACTIONS(1982), - [anon_sym_LR_DQUOTE] = ACTIONS(1982), - [anon_sym_uR_DQUOTE] = ACTIONS(1982), - [anon_sym_UR_DQUOTE] = ACTIONS(1982), - [anon_sym_u8R_DQUOTE] = ACTIONS(1982), - [anon_sym_co_await] = ACTIONS(1984), - [anon_sym_new] = ACTIONS(1986), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(2008), + [anon_sym_R_DQUOTE] = ACTIONS(2010), + [anon_sym_LR_DQUOTE] = ACTIONS(2010), + [anon_sym_uR_DQUOTE] = ACTIONS(2010), + [anon_sym_UR_DQUOTE] = ACTIONS(2010), + [anon_sym_u8R_DQUOTE] = ACTIONS(2010), + [anon_sym_co_await] = ACTIONS(2012), + [anon_sym_new] = ACTIONS(2014), [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [1075] = { - [sym_expression] = STATE(3797), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3678), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3678), - [sym_call_expression] = STATE(3678), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3678), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3678), - [sym_initializer_list] = STATE(3805), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3678), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3678), - [sym_identifier] = ACTIONS(3849), - [anon_sym_LPAREN2] = ACTIONS(3893), - [anon_sym_BANG] = ACTIONS(3853), - [anon_sym_TILDE] = ACTIONS(3853), - [anon_sym_DASH] = ACTIONS(3851), - [anon_sym_PLUS] = ACTIONS(3851), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(3855), - [anon_sym_COLON_COLON] = ACTIONS(3857), - [anon_sym_LBRACE] = ACTIONS(3615), + [1148] = { + [sym_expression] = STATE(3183), + [sym__string] = STATE(3393), + [sym_conditional_expression] = STATE(3401), + [sym_assignment_expression] = STATE(3401), + [sym_pointer_expression] = STATE(3405), + [sym_unary_expression] = STATE(3401), + [sym_binary_expression] = STATE(3401), + [sym_update_expression] = STATE(3401), + [sym_cast_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3401), + [sym_alignof_expression] = STATE(3401), + [sym_offsetof_expression] = STATE(3401), + [sym_generic_expression] = STATE(3401), + [sym_subscript_expression] = STATE(3405), + [sym_call_expression] = STATE(3405), + [sym_gnu_asm_expression] = STATE(3401), + [sym_extension_expression] = STATE(3401), + [sym_field_expression] = STATE(3405), + [sym_compound_literal_expression] = STATE(3401), + [sym_parenthesized_expression] = STATE(3405), + [sym_char_literal] = STATE(3393), + [sym_concatenated_string] = STATE(3393), + [sym_string_literal] = STATE(2380), + [sym_null] = STATE(3401), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7745), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3401), + [sym_raw_string_literal] = STATE(2380), + [sym_co_await_expression] = STATE(3401), + [sym_new_expression] = STATE(3401), + [sym_delete_expression] = STATE(3401), + [sym_requires_clause] = STATE(3401), + [sym_requires_expression] = STATE(3401), + [sym_lambda_expression] = STATE(3401), + [sym_lambda_capture_specifier] = STATE(5494), + [sym_fold_expression] = STATE(3401), + [sym_parameter_pack_expansion] = STATE(3401), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3405), + [sym_qualified_type_identifier] = STATE(7745), + [sym_user_defined_literal] = STATE(3405), + [sym_identifier] = ACTIONS(2453), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4719), + [anon_sym_LPAREN2] = ACTIONS(2018), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(2455), + [anon_sym_COLON_COLON] = ACTIONS(1804), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3851), - [anon_sym_compl] = ACTIONS(3851), - [anon_sym_DASH_DASH] = ACTIONS(3897), - [anon_sym_PLUS_PLUS] = ACTIONS(3897), - [anon_sym_sizeof] = ACTIONS(3859), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), + [sym_primitive_type] = ACTIONS(2459), + [anon_sym_not] = ACTIONS(1796), + [anon_sym_compl] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_sizeof] = ACTIONS(1824), + [anon_sym___alignof__] = ACTIONS(1826), + [anon_sym___alignof] = ACTIONS(1826), + [anon_sym__alignof] = ACTIONS(1826), + [anon_sym_alignof] = ACTIONS(1826), + [anon_sym__Alignof] = ACTIONS(1826), + [anon_sym_offsetof] = ACTIONS(1828), + [anon_sym__Generic] = ACTIONS(1830), + [anon_sym_asm] = ACTIONS(1832), + [anon_sym___asm__] = ACTIONS(1832), + [anon_sym___asm] = ACTIONS(1832), + [sym_number_literal] = ACTIONS(1834), + [anon_sym_L_SQUOTE] = ACTIONS(1836), + [anon_sym_u_SQUOTE] = ACTIONS(1836), + [anon_sym_U_SQUOTE] = ACTIONS(1836), + [anon_sym_u8_SQUOTE] = ACTIONS(1836), + [anon_sym_SQUOTE] = ACTIONS(1836), + [anon_sym_L_DQUOTE] = ACTIONS(1838), + [anon_sym_u_DQUOTE] = ACTIONS(1838), + [anon_sym_U_DQUOTE] = ACTIONS(1838), + [anon_sym_u8_DQUOTE] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym_true] = ACTIONS(1840), + [sym_false] = ACTIONS(1840), + [anon_sym_NULL] = ACTIONS(1842), + [anon_sym_nullptr] = ACTIONS(1842), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3861), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3863), - [anon_sym_new] = ACTIONS(3865), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1852), + [anon_sym_R_DQUOTE] = ACTIONS(1854), + [anon_sym_LR_DQUOTE] = ACTIONS(1854), + [anon_sym_uR_DQUOTE] = ACTIONS(1854), + [anon_sym_UR_DQUOTE] = ACTIONS(1854), + [anon_sym_u8R_DQUOTE] = ACTIONS(1854), + [anon_sym_co_await] = ACTIONS(1856), + [anon_sym_new] = ACTIONS(1858), + [anon_sym_requires] = ACTIONS(1860), + [sym_this] = ACTIONS(1840), }, - [1076] = { - [sym_expression] = STATE(4282), - [sym__string] = STATE(4380), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3253), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3253), - [sym_call_expression] = STATE(3253), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3253), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3253), - [sym_initializer_list] = STATE(3900), - [sym_char_literal] = STATE(4380), - [sym_concatenated_string] = STATE(4380), - [sym_string_literal] = STATE(3416), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3416), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3253), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3253), - [sym_identifier] = ACTIONS(3823), - [anon_sym_LPAREN2] = ACTIONS(4557), - [anon_sym_BANG] = ACTIONS(3827), - [anon_sym_TILDE] = ACTIONS(3827), - [anon_sym_DASH] = ACTIONS(3825), - [anon_sym_PLUS] = ACTIONS(3825), - [anon_sym_STAR] = ACTIONS(4382), - [anon_sym_AMP] = ACTIONS(4382), - [anon_sym___extension__] = ACTIONS(3829), - [anon_sym_COLON_COLON] = ACTIONS(3831), - [anon_sym_LBRACE] = ACTIONS(3615), + [1149] = { + [sym_expression] = STATE(3187), + [sym__string] = STATE(3393), + [sym_conditional_expression] = STATE(3401), + [sym_assignment_expression] = STATE(3401), + [sym_pointer_expression] = STATE(3405), + [sym_unary_expression] = STATE(3401), + [sym_binary_expression] = STATE(3401), + [sym_update_expression] = STATE(3401), + [sym_cast_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3401), + [sym_alignof_expression] = STATE(3401), + [sym_offsetof_expression] = STATE(3401), + [sym_generic_expression] = STATE(3401), + [sym_subscript_expression] = STATE(3405), + [sym_call_expression] = STATE(3405), + [sym_gnu_asm_expression] = STATE(3401), + [sym_extension_expression] = STATE(3401), + [sym_field_expression] = STATE(3405), + [sym_compound_literal_expression] = STATE(3401), + [sym_parenthesized_expression] = STATE(3405), + [sym_char_literal] = STATE(3393), + [sym_concatenated_string] = STATE(3393), + [sym_string_literal] = STATE(2380), + [sym_null] = STATE(3401), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7745), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3401), + [sym_raw_string_literal] = STATE(2380), + [sym_co_await_expression] = STATE(3401), + [sym_new_expression] = STATE(3401), + [sym_delete_expression] = STATE(3401), + [sym_requires_clause] = STATE(3401), + [sym_requires_expression] = STATE(3401), + [sym_lambda_expression] = STATE(3401), + [sym_lambda_capture_specifier] = STATE(5494), + [sym_fold_expression] = STATE(3401), + [sym_parameter_pack_expansion] = STATE(3401), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3405), + [sym_qualified_type_identifier] = STATE(7745), + [sym_user_defined_literal] = STATE(3405), + [sym_identifier] = ACTIONS(2453), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4782), + [anon_sym_LPAREN2] = ACTIONS(2018), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(2455), + [anon_sym_COLON_COLON] = ACTIONS(1804), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3825), - [anon_sym_compl] = ACTIONS(3825), - [anon_sym_DASH_DASH] = ACTIONS(4384), - [anon_sym_PLUS_PLUS] = ACTIONS(4384), - [anon_sym_sizeof] = ACTIONS(3833), + [sym_primitive_type] = ACTIONS(2459), + [anon_sym_not] = ACTIONS(1796), + [anon_sym_compl] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_sizeof] = ACTIONS(1824), + [anon_sym___alignof__] = ACTIONS(1826), + [anon_sym___alignof] = ACTIONS(1826), + [anon_sym__alignof] = ACTIONS(1826), + [anon_sym_alignof] = ACTIONS(1826), + [anon_sym__Alignof] = ACTIONS(1826), + [anon_sym_offsetof] = ACTIONS(1828), + [anon_sym__Generic] = ACTIONS(1830), + [anon_sym_asm] = ACTIONS(1832), + [anon_sym___asm__] = ACTIONS(1832), + [anon_sym___asm] = ACTIONS(1832), + [sym_number_literal] = ACTIONS(1834), + [anon_sym_L_SQUOTE] = ACTIONS(1836), + [anon_sym_u_SQUOTE] = ACTIONS(1836), + [anon_sym_U_SQUOTE] = ACTIONS(1836), + [anon_sym_u8_SQUOTE] = ACTIONS(1836), + [anon_sym_SQUOTE] = ACTIONS(1836), + [anon_sym_L_DQUOTE] = ACTIONS(1838), + [anon_sym_u_DQUOTE] = ACTIONS(1838), + [anon_sym_U_DQUOTE] = ACTIONS(1838), + [anon_sym_u8_DQUOTE] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym_true] = ACTIONS(1840), + [sym_false] = ACTIONS(1840), + [anon_sym_NULL] = ACTIONS(1842), + [anon_sym_nullptr] = ACTIONS(1842), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1852), + [anon_sym_R_DQUOTE] = ACTIONS(1854), + [anon_sym_LR_DQUOTE] = ACTIONS(1854), + [anon_sym_uR_DQUOTE] = ACTIONS(1854), + [anon_sym_UR_DQUOTE] = ACTIONS(1854), + [anon_sym_u8R_DQUOTE] = ACTIONS(1854), + [anon_sym_co_await] = ACTIONS(1856), + [anon_sym_new] = ACTIONS(1858), + [anon_sym_requires] = ACTIONS(1860), + [sym_this] = ACTIONS(1840), + }, + [1150] = { + [sym_expression] = STATE(4319), + [sym__string] = STATE(4455), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3366), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3366), + [sym_call_expression] = STATE(3366), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3366), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3366), + [sym_char_literal] = STATE(4455), + [sym_concatenated_string] = STATE(4455), + [sym_string_literal] = STATE(3406), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3406), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3366), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3366), + [sym_identifier] = ACTIONS(3833), + [anon_sym_LPAREN2] = ACTIONS(4557), + [anon_sym_BANG] = ACTIONS(3837), + [anon_sym_TILDE] = ACTIONS(3837), + [anon_sym_DASH] = ACTIONS(3835), + [anon_sym_PLUS] = ACTIONS(3835), + [anon_sym_STAR] = ACTIONS(4336), + [anon_sym_AMP] = ACTIONS(4336), + [anon_sym_SEMI] = ACTIONS(4785), + [anon_sym___extension__] = ACTIONS(3839), + [anon_sym_COLON_COLON] = ACTIONS(3841), + [anon_sym_LBRACK] = ACTIONS(4741), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3835), + [anon_sym_compl] = ACTIONS(3835), + [anon_sym_DASH_DASH] = ACTIONS(4338), + [anon_sym_PLUS_PLUS] = ACTIONS(4338), + [anon_sym_sizeof] = ACTIONS(3843), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -187018,93 +195490,395 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(113), [anon_sym___asm__] = ACTIONS(113), [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3835), - [anon_sym_L_SQUOTE] = ACTIONS(3837), - [anon_sym_u_SQUOTE] = ACTIONS(3837), - [anon_sym_U_SQUOTE] = ACTIONS(3837), - [anon_sym_u8_SQUOTE] = ACTIONS(3837), - [anon_sym_SQUOTE] = ACTIONS(3837), - [anon_sym_L_DQUOTE] = ACTIONS(3839), - [anon_sym_u_DQUOTE] = ACTIONS(3839), - [anon_sym_U_DQUOTE] = ACTIONS(3839), - [anon_sym_u8_DQUOTE] = ACTIONS(3839), - [anon_sym_DQUOTE] = ACTIONS(3839), + [sym_number_literal] = ACTIONS(3845), + [anon_sym_L_SQUOTE] = ACTIONS(3847), + [anon_sym_u_SQUOTE] = ACTIONS(3847), + [anon_sym_U_SQUOTE] = ACTIONS(3847), + [anon_sym_u8_SQUOTE] = ACTIONS(3847), + [anon_sym_SQUOTE] = ACTIONS(3847), + [anon_sym_L_DQUOTE] = ACTIONS(3849), + [anon_sym_u_DQUOTE] = ACTIONS(3849), + [anon_sym_U_DQUOTE] = ACTIONS(3849), + [anon_sym_u8_DQUOTE] = ACTIONS(3849), + [anon_sym_DQUOTE] = ACTIONS(3849), [sym_true] = ACTIONS(229), [sym_false] = ACTIONS(229), [anon_sym_NULL] = ACTIONS(123), [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3841), - [anon_sym_R_DQUOTE] = ACTIONS(3843), - [anon_sym_LR_DQUOTE] = ACTIONS(3843), - [anon_sym_uR_DQUOTE] = ACTIONS(3843), - [anon_sym_UR_DQUOTE] = ACTIONS(3843), - [anon_sym_u8R_DQUOTE] = ACTIONS(3843), - [anon_sym_co_await] = ACTIONS(3845), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3851), + [anon_sym_R_DQUOTE] = ACTIONS(3853), + [anon_sym_LR_DQUOTE] = ACTIONS(3853), + [anon_sym_uR_DQUOTE] = ACTIONS(3853), + [anon_sym_UR_DQUOTE] = ACTIONS(3853), + [anon_sym_u8R_DQUOTE] = ACTIONS(3853), + [anon_sym_co_await] = ACTIONS(3855), [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1077] = { - [sym_expression] = STATE(4452), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8459), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_RPAREN] = ACTIONS(4670), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1151] = { + [sym_expression] = STATE(3184), + [sym__string] = STATE(3393), + [sym_conditional_expression] = STATE(3401), + [sym_assignment_expression] = STATE(3401), + [sym_pointer_expression] = STATE(3405), + [sym_unary_expression] = STATE(3401), + [sym_binary_expression] = STATE(3401), + [sym_update_expression] = STATE(3401), + [sym_cast_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3401), + [sym_alignof_expression] = STATE(3401), + [sym_offsetof_expression] = STATE(3401), + [sym_generic_expression] = STATE(3401), + [sym_subscript_expression] = STATE(3405), + [sym_call_expression] = STATE(3405), + [sym_gnu_asm_expression] = STATE(3401), + [sym_extension_expression] = STATE(3401), + [sym_field_expression] = STATE(3405), + [sym_compound_literal_expression] = STATE(3401), + [sym_parenthesized_expression] = STATE(3405), + [sym_char_literal] = STATE(3393), + [sym_concatenated_string] = STATE(3393), + [sym_string_literal] = STATE(2380), + [sym_null] = STATE(3401), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7745), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3401), + [sym_raw_string_literal] = STATE(2380), + [sym_co_await_expression] = STATE(3401), + [sym_new_expression] = STATE(3401), + [sym_delete_expression] = STATE(3401), + [sym_requires_clause] = STATE(3401), + [sym_requires_expression] = STATE(3401), + [sym_lambda_expression] = STATE(3401), + [sym_lambda_capture_specifier] = STATE(5494), + [sym_fold_expression] = STATE(3401), + [sym_parameter_pack_expansion] = STATE(3401), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3405), + [sym_qualified_type_identifier] = STATE(7745), + [sym_user_defined_literal] = STATE(3405), + [sym_identifier] = ACTIONS(2453), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4722), + [anon_sym_LPAREN2] = ACTIONS(2018), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(2455), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2459), + [anon_sym_not] = ACTIONS(1796), + [anon_sym_compl] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_sizeof] = ACTIONS(1824), + [anon_sym___alignof__] = ACTIONS(1826), + [anon_sym___alignof] = ACTIONS(1826), + [anon_sym__alignof] = ACTIONS(1826), + [anon_sym_alignof] = ACTIONS(1826), + [anon_sym__Alignof] = ACTIONS(1826), + [anon_sym_offsetof] = ACTIONS(1828), + [anon_sym__Generic] = ACTIONS(1830), + [anon_sym_asm] = ACTIONS(1832), + [anon_sym___asm__] = ACTIONS(1832), + [anon_sym___asm] = ACTIONS(1832), + [sym_number_literal] = ACTIONS(1834), + [anon_sym_L_SQUOTE] = ACTIONS(1836), + [anon_sym_u_SQUOTE] = ACTIONS(1836), + [anon_sym_U_SQUOTE] = ACTIONS(1836), + [anon_sym_u8_SQUOTE] = ACTIONS(1836), + [anon_sym_SQUOTE] = ACTIONS(1836), + [anon_sym_L_DQUOTE] = ACTIONS(1838), + [anon_sym_u_DQUOTE] = ACTIONS(1838), + [anon_sym_U_DQUOTE] = ACTIONS(1838), + [anon_sym_u8_DQUOTE] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym_true] = ACTIONS(1840), + [sym_false] = ACTIONS(1840), + [anon_sym_NULL] = ACTIONS(1842), + [anon_sym_nullptr] = ACTIONS(1842), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1852), + [anon_sym_R_DQUOTE] = ACTIONS(1854), + [anon_sym_LR_DQUOTE] = ACTIONS(1854), + [anon_sym_uR_DQUOTE] = ACTIONS(1854), + [anon_sym_UR_DQUOTE] = ACTIONS(1854), + [anon_sym_u8R_DQUOTE] = ACTIONS(1854), + [anon_sym_co_await] = ACTIONS(1856), + [anon_sym_new] = ACTIONS(1858), + [anon_sym_requires] = ACTIONS(1860), + [sym_this] = ACTIONS(1840), + }, + [1152] = { + [sym_expression] = STATE(3707), + [sym__string] = STATE(3775), + [sym_conditional_expression] = STATE(3886), + [sym_assignment_expression] = STATE(3886), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(3886), + [sym_binary_expression] = STATE(3886), + [sym_update_expression] = STATE(3886), + [sym_cast_expression] = STATE(3886), + [sym_sizeof_expression] = STATE(3886), + [sym_alignof_expression] = STATE(3886), + [sym_offsetof_expression] = STATE(3886), + [sym_generic_expression] = STATE(3886), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(3886), + [sym_extension_expression] = STATE(3886), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(3886), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(3775), + [sym_concatenated_string] = STATE(3775), + [sym_string_literal] = STATE(2596), + [sym_null] = STATE(3886), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7756), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3886), + [sym_raw_string_literal] = STATE(2596), + [sym_co_await_expression] = STATE(3886), + [sym_new_expression] = STATE(3886), + [sym_delete_expression] = STATE(3886), + [sym_requires_clause] = STATE(3886), + [sym_requires_expression] = STATE(3886), + [sym_lambda_expression] = STATE(3886), + [sym_lambda_capture_specifier] = STATE(5492), + [sym_fold_expression] = STATE(3886), + [sym_parameter_pack_expansion] = STATE(3886), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(7756), + [sym_user_defined_literal] = STATE(3522), + [sym_identifier] = ACTIONS(2619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4787), + [anon_sym_LPAREN2] = ACTIONS(1888), + [anon_sym_BANG] = ACTIONS(1890), + [anon_sym_TILDE] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1892), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(2621), + [anon_sym_COLON_COLON] = ACTIONS(1898), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2625), + [anon_sym_not] = ACTIONS(1892), + [anon_sym_compl] = ACTIONS(1892), + [anon_sym_DASH_DASH] = ACTIONS(1902), + [anon_sym_PLUS_PLUS] = ACTIONS(1902), + [anon_sym_sizeof] = ACTIONS(1904), + [anon_sym___alignof__] = ACTIONS(1906), + [anon_sym___alignof] = ACTIONS(1906), + [anon_sym__alignof] = ACTIONS(1906), + [anon_sym_alignof] = ACTIONS(1906), + [anon_sym__Alignof] = ACTIONS(1906), + [anon_sym_offsetof] = ACTIONS(1908), + [anon_sym__Generic] = ACTIONS(1910), + [anon_sym_asm] = ACTIONS(1912), + [anon_sym___asm__] = ACTIONS(1912), + [anon_sym___asm] = ACTIONS(1912), + [sym_number_literal] = ACTIONS(1914), + [anon_sym_L_SQUOTE] = ACTIONS(1916), + [anon_sym_u_SQUOTE] = ACTIONS(1916), + [anon_sym_U_SQUOTE] = ACTIONS(1916), + [anon_sym_u8_SQUOTE] = ACTIONS(1916), + [anon_sym_SQUOTE] = ACTIONS(1916), + [anon_sym_L_DQUOTE] = ACTIONS(1918), + [anon_sym_u_DQUOTE] = ACTIONS(1918), + [anon_sym_U_DQUOTE] = ACTIONS(1918), + [anon_sym_u8_DQUOTE] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1918), + [sym_true] = ACTIONS(1920), + [sym_false] = ACTIONS(1920), + [anon_sym_NULL] = ACTIONS(1922), + [anon_sym_nullptr] = ACTIONS(1922), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1924), + [anon_sym_R_DQUOTE] = ACTIONS(1926), + [anon_sym_LR_DQUOTE] = ACTIONS(1926), + [anon_sym_uR_DQUOTE] = ACTIONS(1926), + [anon_sym_UR_DQUOTE] = ACTIONS(1926), + [anon_sym_u8R_DQUOTE] = ACTIONS(1926), + [anon_sym_co_await] = ACTIONS(1928), + [anon_sym_new] = ACTIONS(1930), + [anon_sym_requires] = ACTIONS(1932), + [sym_this] = ACTIONS(1920), + }, + [1153] = { + [sym_expression] = STATE(3186), + [sym__string] = STATE(3393), + [sym_conditional_expression] = STATE(3401), + [sym_assignment_expression] = STATE(3401), + [sym_pointer_expression] = STATE(3405), + [sym_unary_expression] = STATE(3401), + [sym_binary_expression] = STATE(3401), + [sym_update_expression] = STATE(3401), + [sym_cast_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3401), + [sym_alignof_expression] = STATE(3401), + [sym_offsetof_expression] = STATE(3401), + [sym_generic_expression] = STATE(3401), + [sym_subscript_expression] = STATE(3405), + [sym_call_expression] = STATE(3405), + [sym_gnu_asm_expression] = STATE(3401), + [sym_extension_expression] = STATE(3401), + [sym_field_expression] = STATE(3405), + [sym_compound_literal_expression] = STATE(3401), + [sym_parenthesized_expression] = STATE(3405), + [sym_char_literal] = STATE(3393), + [sym_concatenated_string] = STATE(3393), + [sym_string_literal] = STATE(2380), + [sym_null] = STATE(3401), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7745), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3401), + [sym_raw_string_literal] = STATE(2380), + [sym_co_await_expression] = STATE(3401), + [sym_new_expression] = STATE(3401), + [sym_delete_expression] = STATE(3401), + [sym_requires_clause] = STATE(3401), + [sym_requires_expression] = STATE(3401), + [sym_lambda_expression] = STATE(3401), + [sym_lambda_capture_specifier] = STATE(5494), + [sym_fold_expression] = STATE(3401), + [sym_parameter_pack_expansion] = STATE(3401), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3405), + [sym_qualified_type_identifier] = STATE(7745), + [sym_user_defined_literal] = STATE(3405), + [sym_identifier] = ACTIONS(2453), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4790), + [anon_sym_LPAREN2] = ACTIONS(2018), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(2455), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2459), + [anon_sym_not] = ACTIONS(1796), + [anon_sym_compl] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_sizeof] = ACTIONS(1824), + [anon_sym___alignof__] = ACTIONS(1826), + [anon_sym___alignof] = ACTIONS(1826), + [anon_sym__alignof] = ACTIONS(1826), + [anon_sym_alignof] = ACTIONS(1826), + [anon_sym__Alignof] = ACTIONS(1826), + [anon_sym_offsetof] = ACTIONS(1828), + [anon_sym__Generic] = ACTIONS(1830), + [anon_sym_asm] = ACTIONS(1832), + [anon_sym___asm__] = ACTIONS(1832), + [anon_sym___asm] = ACTIONS(1832), + [sym_number_literal] = ACTIONS(1834), + [anon_sym_L_SQUOTE] = ACTIONS(1836), + [anon_sym_u_SQUOTE] = ACTIONS(1836), + [anon_sym_U_SQUOTE] = ACTIONS(1836), + [anon_sym_u8_SQUOTE] = ACTIONS(1836), + [anon_sym_SQUOTE] = ACTIONS(1836), + [anon_sym_L_DQUOTE] = ACTIONS(1838), + [anon_sym_u_DQUOTE] = ACTIONS(1838), + [anon_sym_U_DQUOTE] = ACTIONS(1838), + [anon_sym_u8_DQUOTE] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym_true] = ACTIONS(1840), + [sym_false] = ACTIONS(1840), + [anon_sym_NULL] = ACTIONS(1842), + [anon_sym_nullptr] = ACTIONS(1842), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1852), + [anon_sym_R_DQUOTE] = ACTIONS(1854), + [anon_sym_LR_DQUOTE] = ACTIONS(1854), + [anon_sym_uR_DQUOTE] = ACTIONS(1854), + [anon_sym_UR_DQUOTE] = ACTIONS(1854), + [anon_sym_u8R_DQUOTE] = ACTIONS(1854), + [anon_sym_co_await] = ACTIONS(1856), + [anon_sym_new] = ACTIONS(1858), + [anon_sym_requires] = ACTIONS(1860), + [sym_this] = ACTIONS(1840), + }, + [1154] = { + [sym_expression] = STATE(4714), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(4793), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -187137,7 +195911,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -187149,166 +195923,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1078] = { - [sym_expression] = STATE(4447), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(7983), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3568), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3568), - [sym_call_expression] = STATE(3568), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3568), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3568), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3568), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3568), - [sym_identifier] = ACTIONS(3867), - [anon_sym_LPAREN2] = ACTIONS(4642), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_TILDE] = ACTIONS(3871), - [anon_sym_DASH] = ACTIONS(3869), - [anon_sym_PLUS] = ACTIONS(3869), - [anon_sym_STAR] = ACTIONS(4312), - [anon_sym_AMP] = ACTIONS(4312), - [anon_sym___extension__] = ACTIONS(3873), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_COLON_COLON] = ACTIONS(3875), + [1155] = { + [sym_expression] = STATE(3180), + [sym__string] = STATE(3393), + [sym_conditional_expression] = STATE(3401), + [sym_assignment_expression] = STATE(3401), + [sym_pointer_expression] = STATE(3405), + [sym_unary_expression] = STATE(3401), + [sym_binary_expression] = STATE(3401), + [sym_update_expression] = STATE(3401), + [sym_cast_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3401), + [sym_alignof_expression] = STATE(3401), + [sym_offsetof_expression] = STATE(3401), + [sym_generic_expression] = STATE(3401), + [sym_subscript_expression] = STATE(3405), + [sym_call_expression] = STATE(3405), + [sym_gnu_asm_expression] = STATE(3401), + [sym_extension_expression] = STATE(3401), + [sym_field_expression] = STATE(3405), + [sym_compound_literal_expression] = STATE(3401), + [sym_parenthesized_expression] = STATE(3405), + [sym_char_literal] = STATE(3393), + [sym_concatenated_string] = STATE(3393), + [sym_string_literal] = STATE(2380), + [sym_null] = STATE(3401), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7745), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3401), + [sym_raw_string_literal] = STATE(2380), + [sym_co_await_expression] = STATE(3401), + [sym_new_expression] = STATE(3401), + [sym_delete_expression] = STATE(3401), + [sym_requires_clause] = STATE(3401), + [sym_requires_expression] = STATE(3401), + [sym_lambda_expression] = STATE(3401), + [sym_lambda_capture_specifier] = STATE(5494), + [sym_fold_expression] = STATE(3401), + [sym_parameter_pack_expansion] = STATE(3401), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3405), + [sym_qualified_type_identifier] = STATE(7745), + [sym_user_defined_literal] = STATE(3405), + [sym_identifier] = ACTIONS(2453), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4767), + [anon_sym_LPAREN2] = ACTIONS(2018), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(2455), + [anon_sym_COLON_COLON] = ACTIONS(1804), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3869), - [anon_sym_compl] = ACTIONS(3869), - [anon_sym_DASH_DASH] = ACTIONS(4404), - [anon_sym_PLUS_PLUS] = ACTIONS(4404), - [anon_sym_sizeof] = ACTIONS(3877), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), + [sym_primitive_type] = ACTIONS(2459), + [anon_sym_not] = ACTIONS(1796), + [anon_sym_compl] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_sizeof] = ACTIONS(1824), + [anon_sym___alignof__] = ACTIONS(1826), + [anon_sym___alignof] = ACTIONS(1826), + [anon_sym__alignof] = ACTIONS(1826), + [anon_sym_alignof] = ACTIONS(1826), + [anon_sym__Alignof] = ACTIONS(1826), + [anon_sym_offsetof] = ACTIONS(1828), + [anon_sym__Generic] = ACTIONS(1830), + [anon_sym_asm] = ACTIONS(1832), + [anon_sym___asm__] = ACTIONS(1832), + [anon_sym___asm] = ACTIONS(1832), + [sym_number_literal] = ACTIONS(1834), + [anon_sym_L_SQUOTE] = ACTIONS(1836), + [anon_sym_u_SQUOTE] = ACTIONS(1836), + [anon_sym_U_SQUOTE] = ACTIONS(1836), + [anon_sym_u8_SQUOTE] = ACTIONS(1836), + [anon_sym_SQUOTE] = ACTIONS(1836), + [anon_sym_L_DQUOTE] = ACTIONS(1838), + [anon_sym_u_DQUOTE] = ACTIONS(1838), + [anon_sym_U_DQUOTE] = ACTIONS(1838), + [anon_sym_u8_DQUOTE] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym_true] = ACTIONS(1840), + [sym_false] = ACTIONS(1840), + [anon_sym_NULL] = ACTIONS(1842), + [anon_sym_nullptr] = ACTIONS(1842), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3879), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3881), - [anon_sym_new] = ACTIONS(3865), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1852), + [anon_sym_R_DQUOTE] = ACTIONS(1854), + [anon_sym_LR_DQUOTE] = ACTIONS(1854), + [anon_sym_uR_DQUOTE] = ACTIONS(1854), + [anon_sym_UR_DQUOTE] = ACTIONS(1854), + [anon_sym_u8R_DQUOTE] = ACTIONS(1854), + [anon_sym_co_await] = ACTIONS(1856), + [anon_sym_new] = ACTIONS(1858), + [anon_sym_requires] = ACTIONS(1860), + [sym_this] = ACTIONS(1840), }, - [1079] = { - [sym_expression] = STATE(4411), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(7943), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_RPAREN] = ACTIONS(4674), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1156] = { + [sym_expression] = STATE(4724), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -187340,8 +196111,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(123), [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4795), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -187353,171 +196125,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1080] = { - [sym_expression] = STATE(4435), - [sym__string] = STATE(4738), - [sym_conditional_expression] = STATE(4829), - [sym_assignment_expression] = STATE(4829), - [sym_pointer_expression] = STATE(3602), - [sym_unary_expression] = STATE(4829), - [sym_binary_expression] = STATE(4829), - [sym_update_expression] = STATE(4829), - [sym_cast_expression] = STATE(4829), - [sym_sizeof_expression] = STATE(4829), - [sym_alignof_expression] = STATE(4829), - [sym_offsetof_expression] = STATE(4829), - [sym_generic_expression] = STATE(4829), - [sym_subscript_expression] = STATE(3602), - [sym_call_expression] = STATE(3602), - [sym_gnu_asm_expression] = STATE(4829), - [sym_extension_expression] = STATE(4829), - [sym_field_expression] = STATE(3602), - [sym_compound_literal_expression] = STATE(4829), - [sym_parenthesized_expression] = STATE(3602), - [sym_initializer_list] = STATE(4816), - [sym_char_literal] = STATE(4738), - [sym_concatenated_string] = STATE(4738), - [sym_string_literal] = STATE(3759), - [sym_null] = STATE(4829), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7804), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(4829), - [sym_raw_string_literal] = STATE(3759), - [sym_co_await_expression] = STATE(4829), - [sym_new_expression] = STATE(4829), - [sym_delete_expression] = STATE(4829), - [sym_requires_clause] = STATE(4829), - [sym_requires_expression] = STATE(4829), - [sym_lambda_expression] = STATE(4829), - [sym_lambda_capture_specifier] = STATE(5401), - [sym_fold_expression] = STATE(4829), - [sym_parameter_pack_expansion] = STATE(4829), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5773), - [sym_qualified_identifier] = STATE(3602), - [sym_qualified_type_identifier] = STATE(7804), - [sym_user_defined_literal] = STATE(3602), - [sym_identifier] = ACTIONS(3883), - [anon_sym_LPAREN2] = ACTIONS(3118), - [anon_sym_BANG] = ACTIONS(3120), - [anon_sym_TILDE] = ACTIONS(3120), - [anon_sym_DASH] = ACTIONS(3122), - [anon_sym_PLUS] = ACTIONS(3122), - [anon_sym_STAR] = ACTIONS(3124), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym___extension__] = ACTIONS(3885), - [anon_sym_COLON_COLON] = ACTIONS(3128), - [anon_sym_LBRACE] = ACTIONS(3887), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(3889), - [anon_sym_not] = ACTIONS(3122), - [anon_sym_compl] = ACTIONS(3122), - [anon_sym_DASH_DASH] = ACTIONS(3142), - [anon_sym_PLUS_PLUS] = ACTIONS(3142), - [anon_sym_sizeof] = ACTIONS(3144), - [anon_sym___alignof__] = ACTIONS(3146), - [anon_sym___alignof] = ACTIONS(3146), - [anon_sym__alignof] = ACTIONS(3146), - [anon_sym_alignof] = ACTIONS(3146), - [anon_sym__Alignof] = ACTIONS(3146), - [anon_sym_offsetof] = ACTIONS(3148), - [anon_sym__Generic] = ACTIONS(3150), - [anon_sym_asm] = ACTIONS(3152), - [anon_sym___asm__] = ACTIONS(3152), - [anon_sym___asm] = ACTIONS(3152), - [sym_number_literal] = ACTIONS(3154), - [anon_sym_L_SQUOTE] = ACTIONS(3156), - [anon_sym_u_SQUOTE] = ACTIONS(3156), - [anon_sym_U_SQUOTE] = ACTIONS(3156), - [anon_sym_u8_SQUOTE] = ACTIONS(3156), - [anon_sym_SQUOTE] = ACTIONS(3156), - [anon_sym_L_DQUOTE] = ACTIONS(3158), - [anon_sym_u_DQUOTE] = ACTIONS(3158), - [anon_sym_U_DQUOTE] = ACTIONS(3158), - [anon_sym_u8_DQUOTE] = ACTIONS(3158), - [anon_sym_DQUOTE] = ACTIONS(3158), - [sym_true] = ACTIONS(3160), - [sym_false] = ACTIONS(3160), - [anon_sym_NULL] = ACTIONS(3162), - [anon_sym_nullptr] = ACTIONS(3162), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3172), - [anon_sym_R_DQUOTE] = ACTIONS(3174), - [anon_sym_LR_DQUOTE] = ACTIONS(3174), - [anon_sym_uR_DQUOTE] = ACTIONS(3174), - [anon_sym_UR_DQUOTE] = ACTIONS(3174), - [anon_sym_u8R_DQUOTE] = ACTIONS(3174), - [anon_sym_co_await] = ACTIONS(3176), - [anon_sym_new] = ACTIONS(3178), - [anon_sym_requires] = ACTIONS(3180), - [sym_this] = ACTIONS(3160), - }, - [1081] = { - [sym_expression] = STATE(4450), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3678), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3678), - [sym_call_expression] = STATE(3678), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3678), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3678), - [sym_initializer_list] = STATE(3900), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3678), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3678), - [sym_identifier] = ACTIONS(3849), - [anon_sym_LPAREN2] = ACTIONS(3893), - [anon_sym_BANG] = ACTIONS(3853), - [anon_sym_TILDE] = ACTIONS(3853), - [anon_sym_DASH] = ACTIONS(3851), - [anon_sym_PLUS] = ACTIONS(3851), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(3855), - [anon_sym_COLON_COLON] = ACTIONS(3857), - [anon_sym_LBRACE] = ACTIONS(3615), + [1157] = { + [sym_expression] = STATE(4809), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), + [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3851), - [anon_sym_compl] = ACTIONS(3851), - [anon_sym_DASH_DASH] = ACTIONS(3897), - [anon_sym_PLUS_PLUS] = ACTIONS(3897), - [anon_sym_sizeof] = ACTIONS(3859), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -187544,82 +196212,183 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(123), [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4797), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3861), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3863), - [anon_sym_new] = ACTIONS(3865), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1082] = { - [sym_expression] = STATE(3323), - [sym__string] = STATE(2950), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_initializer_list] = STATE(2441), - [sym_char_literal] = STATE(2950), - [sym_concatenated_string] = STATE(2950), - [sym_string_literal] = STATE(2034), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(2034), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), + [1158] = { + [sym_expression] = STATE(3185), + [sym__string] = STATE(3393), + [sym_conditional_expression] = STATE(3401), + [sym_assignment_expression] = STATE(3401), + [sym_pointer_expression] = STATE(3405), + [sym_unary_expression] = STATE(3401), + [sym_binary_expression] = STATE(3401), + [sym_update_expression] = STATE(3401), + [sym_cast_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3401), + [sym_alignof_expression] = STATE(3401), + [sym_offsetof_expression] = STATE(3401), + [sym_generic_expression] = STATE(3401), + [sym_subscript_expression] = STATE(3405), + [sym_call_expression] = STATE(3405), + [sym_gnu_asm_expression] = STATE(3401), + [sym_extension_expression] = STATE(3401), + [sym_field_expression] = STATE(3405), + [sym_compound_literal_expression] = STATE(3401), + [sym_parenthesized_expression] = STATE(3405), + [sym_char_literal] = STATE(3393), + [sym_concatenated_string] = STATE(3393), + [sym_string_literal] = STATE(2380), + [sym_null] = STATE(3401), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7745), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3401), + [sym_raw_string_literal] = STATE(2380), + [sym_co_await_expression] = STATE(3401), + [sym_new_expression] = STATE(3401), + [sym_delete_expression] = STATE(3401), + [sym_requires_clause] = STATE(3401), + [sym_requires_expression] = STATE(3401), + [sym_lambda_expression] = STATE(3401), + [sym_lambda_capture_specifier] = STATE(5494), + [sym_fold_expression] = STATE(3401), + [sym_parameter_pack_expansion] = STATE(3401), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3405), + [sym_qualified_type_identifier] = STATE(7745), + [sym_user_defined_literal] = STATE(3405), + [sym_identifier] = ACTIONS(2453), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4725), + [anon_sym_LPAREN2] = ACTIONS(2018), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(2455), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2459), + [anon_sym_not] = ACTIONS(1796), + [anon_sym_compl] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_sizeof] = ACTIONS(1824), + [anon_sym___alignof__] = ACTIONS(1826), + [anon_sym___alignof] = ACTIONS(1826), + [anon_sym__alignof] = ACTIONS(1826), + [anon_sym_alignof] = ACTIONS(1826), + [anon_sym__Alignof] = ACTIONS(1826), + [anon_sym_offsetof] = ACTIONS(1828), + [anon_sym__Generic] = ACTIONS(1830), + [anon_sym_asm] = ACTIONS(1832), + [anon_sym___asm__] = ACTIONS(1832), + [anon_sym___asm] = ACTIONS(1832), + [sym_number_literal] = ACTIONS(1834), + [anon_sym_L_SQUOTE] = ACTIONS(1836), + [anon_sym_u_SQUOTE] = ACTIONS(1836), + [anon_sym_U_SQUOTE] = ACTIONS(1836), + [anon_sym_u8_SQUOTE] = ACTIONS(1836), + [anon_sym_SQUOTE] = ACTIONS(1836), + [anon_sym_L_DQUOTE] = ACTIONS(1838), + [anon_sym_u_DQUOTE] = ACTIONS(1838), + [anon_sym_U_DQUOTE] = ACTIONS(1838), + [anon_sym_u8_DQUOTE] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym_true] = ACTIONS(1840), + [sym_false] = ACTIONS(1840), + [anon_sym_NULL] = ACTIONS(1842), + [anon_sym_nullptr] = ACTIONS(1842), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1852), + [anon_sym_R_DQUOTE] = ACTIONS(1854), + [anon_sym_LR_DQUOTE] = ACTIONS(1854), + [anon_sym_uR_DQUOTE] = ACTIONS(1854), + [anon_sym_UR_DQUOTE] = ACTIONS(1854), + [anon_sym_u8R_DQUOTE] = ACTIONS(1854), + [anon_sym_co_await] = ACTIONS(1856), + [anon_sym_new] = ACTIONS(1858), + [anon_sym_requires] = ACTIONS(1860), + [sym_this] = ACTIONS(1840), + }, + [1159] = { + [sym_expression] = STATE(2432), + [sym__string] = STATE(2917), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(2917), + [sym_concatenated_string] = STATE(2917), + [sym_string_literal] = STATE(2114), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(2114), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), [sym_identifier] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(2535), - [anon_sym_TILDE] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2533), - [anon_sym_PLUS] = ACTIONS(2533), - [anon_sym_STAR] = ACTIONS(4312), - [anon_sym_AMP] = ACTIONS(4312), - [anon_sym___extension__] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(2539), - [anon_sym_LBRACE] = ACTIONS(1954), + [anon_sym_LPAREN2] = ACTIONS(4565), + [anon_sym_BANG] = ACTIONS(1994), + [anon_sym_TILDE] = ACTIONS(1994), + [anon_sym_DASH] = ACTIONS(1992), + [anon_sym_PLUS] = ACTIONS(1992), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(1996), + [anon_sym_COLON_COLON] = ACTIONS(1998), [anon_sym_LBRACK] = ACTIONS(2020), + [anon_sym_RBRACK] = ACTIONS(4799), [sym_primitive_type] = ACTIONS(1956), - [anon_sym_not] = ACTIONS(2533), - [anon_sym_compl] = ACTIONS(2533), - [anon_sym_DASH_DASH] = ACTIONS(4316), - [anon_sym_PLUS_PLUS] = ACTIONS(4316), - [anon_sym_sizeof] = ACTIONS(2541), + [anon_sym_not] = ACTIONS(1992), + [anon_sym_compl] = ACTIONS(1992), + [anon_sym_DASH_DASH] = ACTIONS(3355), + [anon_sym_PLUS_PLUS] = ACTIONS(3355), + [anon_sym_sizeof] = ACTIONS(2000), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), [anon_sym__alignof] = ACTIONS(1960), @@ -187647,76 +196416,176 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1976), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(2543), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(2008), [anon_sym_R_DQUOTE] = ACTIONS(2010), [anon_sym_LR_DQUOTE] = ACTIONS(2010), [anon_sym_uR_DQUOTE] = ACTIONS(2010), [anon_sym_UR_DQUOTE] = ACTIONS(2010), [anon_sym_u8R_DQUOTE] = ACTIONS(2010), - [anon_sym_co_await] = ACTIONS(2545), + [anon_sym_co_await] = ACTIONS(2012), [anon_sym_new] = ACTIONS(2014), [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [1083] = { - [sym_expression] = STATE(4424), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(7950), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_RPAREN] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1160] = { + [sym_expression] = STATE(4476), + [sym__string] = STATE(4825), + [sym_conditional_expression] = STATE(4856), + [sym_assignment_expression] = STATE(4856), + [sym_pointer_expression] = STATE(3701), + [sym_unary_expression] = STATE(4856), + [sym_binary_expression] = STATE(4856), + [sym_update_expression] = STATE(4856), + [sym_cast_expression] = STATE(4856), + [sym_sizeof_expression] = STATE(4856), + [sym_alignof_expression] = STATE(4856), + [sym_offsetof_expression] = STATE(4856), + [sym_generic_expression] = STATE(4856), + [sym_subscript_expression] = STATE(3701), + [sym_call_expression] = STATE(3701), + [sym_gnu_asm_expression] = STATE(4856), + [sym_extension_expression] = STATE(4856), + [sym_field_expression] = STATE(3701), + [sym_compound_literal_expression] = STATE(4856), + [sym_parenthesized_expression] = STATE(3701), + [sym_char_literal] = STATE(4825), + [sym_concatenated_string] = STATE(4825), + [sym_string_literal] = STATE(3812), + [sym_null] = STATE(4856), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7816), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(4856), + [sym_raw_string_literal] = STATE(3812), + [sym_co_await_expression] = STATE(4856), + [sym_new_expression] = STATE(4856), + [sym_delete_expression] = STATE(4856), + [sym_requires_clause] = STATE(4856), + [sym_requires_expression] = STATE(4856), + [sym_lambda_expression] = STATE(4856), + [sym_lambda_capture_specifier] = STATE(5489), + [sym_fold_expression] = STATE(4856), + [sym_parameter_pack_expansion] = STATE(4856), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5769), + [sym_qualified_identifier] = STATE(3701), + [sym_qualified_type_identifier] = STATE(7816), + [sym_user_defined_literal] = STATE(3701), + [sym_identifier] = ACTIONS(3875), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4801), + [anon_sym_LPAREN2] = ACTIONS(4803), + [anon_sym_BANG] = ACTIONS(3132), + [anon_sym_TILDE] = ACTIONS(3132), + [anon_sym_DASH] = ACTIONS(3134), + [anon_sym_PLUS] = ACTIONS(3134), + [anon_sym_STAR] = ACTIONS(3136), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym___extension__] = ACTIONS(3877), + [anon_sym_COLON_COLON] = ACTIONS(3140), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(3881), + [anon_sym_not] = ACTIONS(3134), + [anon_sym_compl] = ACTIONS(3134), + [anon_sym_DASH_DASH] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_sizeof] = ACTIONS(3156), + [anon_sym___alignof__] = ACTIONS(3158), + [anon_sym___alignof] = ACTIONS(3158), + [anon_sym__alignof] = ACTIONS(3158), + [anon_sym_alignof] = ACTIONS(3158), + [anon_sym__Alignof] = ACTIONS(3158), + [anon_sym_offsetof] = ACTIONS(3160), + [anon_sym__Generic] = ACTIONS(3162), + [anon_sym_asm] = ACTIONS(3164), + [anon_sym___asm__] = ACTIONS(3164), + [anon_sym___asm] = ACTIONS(3164), + [sym_number_literal] = ACTIONS(3166), + [anon_sym_L_SQUOTE] = ACTIONS(3168), + [anon_sym_u_SQUOTE] = ACTIONS(3168), + [anon_sym_U_SQUOTE] = ACTIONS(3168), + [anon_sym_u8_SQUOTE] = ACTIONS(3168), + [anon_sym_SQUOTE] = ACTIONS(3168), + [anon_sym_L_DQUOTE] = ACTIONS(3170), + [anon_sym_u_DQUOTE] = ACTIONS(3170), + [anon_sym_U_DQUOTE] = ACTIONS(3170), + [anon_sym_u8_DQUOTE] = ACTIONS(3170), + [anon_sym_DQUOTE] = ACTIONS(3170), + [sym_true] = ACTIONS(3172), + [sym_false] = ACTIONS(3172), + [anon_sym_NULL] = ACTIONS(3174), + [anon_sym_nullptr] = ACTIONS(3174), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3184), + [anon_sym_R_DQUOTE] = ACTIONS(3186), + [anon_sym_LR_DQUOTE] = ACTIONS(3186), + [anon_sym_uR_DQUOTE] = ACTIONS(3186), + [anon_sym_UR_DQUOTE] = ACTIONS(3186), + [anon_sym_u8R_DQUOTE] = ACTIONS(3186), + [anon_sym_co_await] = ACTIONS(3188), + [anon_sym_new] = ACTIONS(3190), + [anon_sym_requires] = ACTIONS(3192), + [sym_this] = ACTIONS(3172), + }, + [1161] = { + [sym_expression] = STATE(4802), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(4805), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -187749,7 +196618,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -187761,64 +196630,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1084] = { - [sym_expression] = STATE(4322), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(7389), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4680), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1162] = { + [sym_expression] = STATE(4647), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -187850,8 +196717,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(123), [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4807), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -187863,171 +196731,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1085] = { - [sym_expression] = STATE(4564), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8704), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3568), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3568), - [sym_call_expression] = STATE(3568), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3568), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3568), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3568), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3568), - [sym_identifier] = ACTIONS(3867), - [anon_sym_LPAREN2] = ACTIONS(4642), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_TILDE] = ACTIONS(3871), - [anon_sym_DASH] = ACTIONS(3869), - [anon_sym_PLUS] = ACTIONS(3869), - [anon_sym_STAR] = ACTIONS(4312), - [anon_sym_AMP] = ACTIONS(4312), - [anon_sym___extension__] = ACTIONS(3873), - [anon_sym_COLON] = ACTIONS(4683), - [anon_sym_COLON_COLON] = ACTIONS(3875), + [1163] = { + [sym_expression] = STATE(3707), + [sym__string] = STATE(3775), + [sym_conditional_expression] = STATE(3886), + [sym_assignment_expression] = STATE(3886), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(3886), + [sym_binary_expression] = STATE(3886), + [sym_update_expression] = STATE(3886), + [sym_cast_expression] = STATE(3886), + [sym_sizeof_expression] = STATE(3886), + [sym_alignof_expression] = STATE(3886), + [sym_offsetof_expression] = STATE(3886), + [sym_generic_expression] = STATE(3886), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(3886), + [sym_extension_expression] = STATE(3886), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(3886), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(3775), + [sym_concatenated_string] = STATE(3775), + [sym_string_literal] = STATE(2596), + [sym_null] = STATE(3886), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7756), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3886), + [sym_raw_string_literal] = STATE(2596), + [sym_co_await_expression] = STATE(3886), + [sym_new_expression] = STATE(3886), + [sym_delete_expression] = STATE(3886), + [sym_requires_clause] = STATE(3886), + [sym_requires_expression] = STATE(3886), + [sym_lambda_expression] = STATE(3886), + [sym_lambda_capture_specifier] = STATE(5492), + [sym_fold_expression] = STATE(3886), + [sym_parameter_pack_expansion] = STATE(3886), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(7756), + [sym_user_defined_literal] = STATE(3522), + [sym_identifier] = ACTIONS(2619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4809), + [anon_sym_LPAREN2] = ACTIONS(1888), + [anon_sym_BANG] = ACTIONS(1890), + [anon_sym_TILDE] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1892), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(2621), + [anon_sym_COLON_COLON] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3869), - [anon_sym_compl] = ACTIONS(3869), - [anon_sym_DASH_DASH] = ACTIONS(4404), - [anon_sym_PLUS_PLUS] = ACTIONS(4404), - [anon_sym_sizeof] = ACTIONS(3877), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), + [sym_primitive_type] = ACTIONS(2625), + [anon_sym_not] = ACTIONS(1892), + [anon_sym_compl] = ACTIONS(1892), + [anon_sym_DASH_DASH] = ACTIONS(1902), + [anon_sym_PLUS_PLUS] = ACTIONS(1902), + [anon_sym_sizeof] = ACTIONS(1904), + [anon_sym___alignof__] = ACTIONS(1906), + [anon_sym___alignof] = ACTIONS(1906), + [anon_sym__alignof] = ACTIONS(1906), + [anon_sym_alignof] = ACTIONS(1906), + [anon_sym__Alignof] = ACTIONS(1906), + [anon_sym_offsetof] = ACTIONS(1908), + [anon_sym__Generic] = ACTIONS(1910), + [anon_sym_asm] = ACTIONS(1912), + [anon_sym___asm__] = ACTIONS(1912), + [anon_sym___asm] = ACTIONS(1912), + [sym_number_literal] = ACTIONS(1914), + [anon_sym_L_SQUOTE] = ACTIONS(1916), + [anon_sym_u_SQUOTE] = ACTIONS(1916), + [anon_sym_U_SQUOTE] = ACTIONS(1916), + [anon_sym_u8_SQUOTE] = ACTIONS(1916), + [anon_sym_SQUOTE] = ACTIONS(1916), + [anon_sym_L_DQUOTE] = ACTIONS(1918), + [anon_sym_u_DQUOTE] = ACTIONS(1918), + [anon_sym_U_DQUOTE] = ACTIONS(1918), + [anon_sym_u8_DQUOTE] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1918), + [sym_true] = ACTIONS(1920), + [sym_false] = ACTIONS(1920), + [anon_sym_NULL] = ACTIONS(1922), + [anon_sym_nullptr] = ACTIONS(1922), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3879), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3881), - [anon_sym_new] = ACTIONS(3865), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1924), + [anon_sym_R_DQUOTE] = ACTIONS(1926), + [anon_sym_LR_DQUOTE] = ACTIONS(1926), + [anon_sym_uR_DQUOTE] = ACTIONS(1926), + [anon_sym_UR_DQUOTE] = ACTIONS(1926), + [anon_sym_u8R_DQUOTE] = ACTIONS(1926), + [anon_sym_co_await] = ACTIONS(1928), + [anon_sym_new] = ACTIONS(1930), + [anon_sym_requires] = ACTIONS(1932), + [sym_this] = ACTIONS(1920), }, - [1086] = { - [sym_expression] = STATE(4518), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3678), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3678), - [sym_call_expression] = STATE(3678), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3678), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3678), - [sym_initializer_list] = STATE(3900), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3678), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3678), - [sym_identifier] = ACTIONS(3849), - [anon_sym_LPAREN2] = ACTIONS(3893), - [anon_sym_BANG] = ACTIONS(3853), - [anon_sym_TILDE] = ACTIONS(3853), - [anon_sym_DASH] = ACTIONS(3851), - [anon_sym_PLUS] = ACTIONS(3851), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(3855), - [anon_sym_COLON_COLON] = ACTIONS(3857), - [anon_sym_LBRACE] = ACTIONS(3615), + [1164] = { + [sym_expression] = STATE(4805), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(4812), + [anon_sym___extension__] = ACTIONS(2167), + [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3851), - [anon_sym_compl] = ACTIONS(3851), - [anon_sym_DASH_DASH] = ACTIONS(3897), - [anon_sym_PLUS_PLUS] = ACTIONS(3897), - [anon_sym_sizeof] = ACTIONS(3859), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -188055,81 +196921,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3861), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3863), - [anon_sym_new] = ACTIONS(3865), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1087] = { - [sym_expression] = STATE(4448), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8076), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3568), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3568), - [sym_call_expression] = STATE(3568), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3568), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3568), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3568), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3568), - [sym_identifier] = ACTIONS(3867), - [anon_sym_LPAREN2] = ACTIONS(4642), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_TILDE] = ACTIONS(3871), - [anon_sym_DASH] = ACTIONS(3869), - [anon_sym_PLUS] = ACTIONS(3869), - [anon_sym_STAR] = ACTIONS(4312), - [anon_sym_AMP] = ACTIONS(4312), - [anon_sym___extension__] = ACTIONS(3873), - [anon_sym_COLON] = ACTIONS(4685), - [anon_sym_COLON_COLON] = ACTIONS(3875), + [1165] = { + [sym_expression] = STATE(4736), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), + [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3869), - [anon_sym_compl] = ACTIONS(3869), - [anon_sym_DASH_DASH] = ACTIONS(4404), - [anon_sym_PLUS_PLUS] = ACTIONS(4404), - [anon_sym_sizeof] = ACTIONS(3877), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -188156,184 +197020,283 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(123), [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4814), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3879), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3881), - [anon_sym_new] = ACTIONS(3865), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1088] = { - [sym_expression] = STATE(4573), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8734), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3568), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3568), - [sym_call_expression] = STATE(3568), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3568), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3568), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3568), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3568), - [sym_identifier] = ACTIONS(3867), - [anon_sym_LPAREN2] = ACTIONS(4642), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_TILDE] = ACTIONS(3871), - [anon_sym_DASH] = ACTIONS(3869), - [anon_sym_PLUS] = ACTIONS(3869), - [anon_sym_STAR] = ACTIONS(4312), - [anon_sym_AMP] = ACTIONS(4312), - [anon_sym___extension__] = ACTIONS(3873), - [anon_sym_COLON] = ACTIONS(4687), - [anon_sym_COLON_COLON] = ACTIONS(3875), + [1166] = { + [sym_expression] = STATE(3189), + [sym__string] = STATE(3393), + [sym_conditional_expression] = STATE(3401), + [sym_assignment_expression] = STATE(3401), + [sym_pointer_expression] = STATE(3405), + [sym_unary_expression] = STATE(3401), + [sym_binary_expression] = STATE(3401), + [sym_update_expression] = STATE(3401), + [sym_cast_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3401), + [sym_alignof_expression] = STATE(3401), + [sym_offsetof_expression] = STATE(3401), + [sym_generic_expression] = STATE(3401), + [sym_subscript_expression] = STATE(3405), + [sym_call_expression] = STATE(3405), + [sym_gnu_asm_expression] = STATE(3401), + [sym_extension_expression] = STATE(3401), + [sym_field_expression] = STATE(3405), + [sym_compound_literal_expression] = STATE(3401), + [sym_parenthesized_expression] = STATE(3405), + [sym_char_literal] = STATE(3393), + [sym_concatenated_string] = STATE(3393), + [sym_string_literal] = STATE(2380), + [sym_null] = STATE(3401), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7745), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3401), + [sym_raw_string_literal] = STATE(2380), + [sym_co_await_expression] = STATE(3401), + [sym_new_expression] = STATE(3401), + [sym_delete_expression] = STATE(3401), + [sym_requires_clause] = STATE(3401), + [sym_requires_expression] = STATE(3401), + [sym_lambda_expression] = STATE(3401), + [sym_lambda_capture_specifier] = STATE(5494), + [sym_fold_expression] = STATE(3401), + [sym_parameter_pack_expansion] = STATE(3401), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3405), + [sym_qualified_type_identifier] = STATE(7745), + [sym_user_defined_literal] = STATE(3405), + [sym_identifier] = ACTIONS(2453), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4713), + [anon_sym_LPAREN2] = ACTIONS(2018), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(2455), + [anon_sym_COLON_COLON] = ACTIONS(1804), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3869), - [anon_sym_compl] = ACTIONS(3869), - [anon_sym_DASH_DASH] = ACTIONS(4404), - [anon_sym_PLUS_PLUS] = ACTIONS(4404), - [anon_sym_sizeof] = ACTIONS(3877), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), + [sym_primitive_type] = ACTIONS(2459), + [anon_sym_not] = ACTIONS(1796), + [anon_sym_compl] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_sizeof] = ACTIONS(1824), + [anon_sym___alignof__] = ACTIONS(1826), + [anon_sym___alignof] = ACTIONS(1826), + [anon_sym__alignof] = ACTIONS(1826), + [anon_sym_alignof] = ACTIONS(1826), + [anon_sym__Alignof] = ACTIONS(1826), + [anon_sym_offsetof] = ACTIONS(1828), + [anon_sym__Generic] = ACTIONS(1830), + [anon_sym_asm] = ACTIONS(1832), + [anon_sym___asm__] = ACTIONS(1832), + [anon_sym___asm] = ACTIONS(1832), + [sym_number_literal] = ACTIONS(1834), + [anon_sym_L_SQUOTE] = ACTIONS(1836), + [anon_sym_u_SQUOTE] = ACTIONS(1836), + [anon_sym_U_SQUOTE] = ACTIONS(1836), + [anon_sym_u8_SQUOTE] = ACTIONS(1836), + [anon_sym_SQUOTE] = ACTIONS(1836), + [anon_sym_L_DQUOTE] = ACTIONS(1838), + [anon_sym_u_DQUOTE] = ACTIONS(1838), + [anon_sym_U_DQUOTE] = ACTIONS(1838), + [anon_sym_u8_DQUOTE] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym_true] = ACTIONS(1840), + [sym_false] = ACTIONS(1840), + [anon_sym_NULL] = ACTIONS(1842), + [anon_sym_nullptr] = ACTIONS(1842), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3879), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3881), - [anon_sym_new] = ACTIONS(3865), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1852), + [anon_sym_R_DQUOTE] = ACTIONS(1854), + [anon_sym_LR_DQUOTE] = ACTIONS(1854), + [anon_sym_uR_DQUOTE] = ACTIONS(1854), + [anon_sym_UR_DQUOTE] = ACTIONS(1854), + [anon_sym_u8R_DQUOTE] = ACTIONS(1854), + [anon_sym_co_await] = ACTIONS(1856), + [anon_sym_new] = ACTIONS(1858), + [anon_sym_requires] = ACTIONS(1860), + [sym_this] = ACTIONS(1840), + }, + [1167] = { + [sym_expression] = STATE(3180), + [sym__string] = STATE(3393), + [sym_conditional_expression] = STATE(3401), + [sym_assignment_expression] = STATE(3401), + [sym_pointer_expression] = STATE(3405), + [sym_unary_expression] = STATE(3401), + [sym_binary_expression] = STATE(3401), + [sym_update_expression] = STATE(3401), + [sym_cast_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3401), + [sym_alignof_expression] = STATE(3401), + [sym_offsetof_expression] = STATE(3401), + [sym_generic_expression] = STATE(3401), + [sym_subscript_expression] = STATE(3405), + [sym_call_expression] = STATE(3405), + [sym_gnu_asm_expression] = STATE(3401), + [sym_extension_expression] = STATE(3401), + [sym_field_expression] = STATE(3405), + [sym_compound_literal_expression] = STATE(3401), + [sym_parenthesized_expression] = STATE(3405), + [sym_char_literal] = STATE(3393), + [sym_concatenated_string] = STATE(3393), + [sym_string_literal] = STATE(2380), + [sym_null] = STATE(3401), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7745), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3401), + [sym_raw_string_literal] = STATE(2380), + [sym_co_await_expression] = STATE(3401), + [sym_new_expression] = STATE(3401), + [sym_delete_expression] = STATE(3401), + [sym_requires_clause] = STATE(3401), + [sym_requires_expression] = STATE(3401), + [sym_lambda_expression] = STATE(3401), + [sym_lambda_capture_specifier] = STATE(5494), + [sym_fold_expression] = STATE(3401), + [sym_parameter_pack_expansion] = STATE(3401), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3405), + [sym_qualified_type_identifier] = STATE(7745), + [sym_user_defined_literal] = STATE(3405), + [sym_identifier] = ACTIONS(2453), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4772), + [anon_sym_LPAREN2] = ACTIONS(2018), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(2455), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2459), + [anon_sym_not] = ACTIONS(1796), + [anon_sym_compl] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_sizeof] = ACTIONS(1824), + [anon_sym___alignof__] = ACTIONS(1826), + [anon_sym___alignof] = ACTIONS(1826), + [anon_sym__alignof] = ACTIONS(1826), + [anon_sym_alignof] = ACTIONS(1826), + [anon_sym__Alignof] = ACTIONS(1826), + [anon_sym_offsetof] = ACTIONS(1828), + [anon_sym__Generic] = ACTIONS(1830), + [anon_sym_asm] = ACTIONS(1832), + [anon_sym___asm__] = ACTIONS(1832), + [anon_sym___asm] = ACTIONS(1832), + [sym_number_literal] = ACTIONS(1834), + [anon_sym_L_SQUOTE] = ACTIONS(1836), + [anon_sym_u_SQUOTE] = ACTIONS(1836), + [anon_sym_U_SQUOTE] = ACTIONS(1836), + [anon_sym_u8_SQUOTE] = ACTIONS(1836), + [anon_sym_SQUOTE] = ACTIONS(1836), + [anon_sym_L_DQUOTE] = ACTIONS(1838), + [anon_sym_u_DQUOTE] = ACTIONS(1838), + [anon_sym_U_DQUOTE] = ACTIONS(1838), + [anon_sym_u8_DQUOTE] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym_true] = ACTIONS(1840), + [sym_false] = ACTIONS(1840), + [anon_sym_NULL] = ACTIONS(1842), + [anon_sym_nullptr] = ACTIONS(1842), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1852), + [anon_sym_R_DQUOTE] = ACTIONS(1854), + [anon_sym_LR_DQUOTE] = ACTIONS(1854), + [anon_sym_uR_DQUOTE] = ACTIONS(1854), + [anon_sym_UR_DQUOTE] = ACTIONS(1854), + [anon_sym_u8R_DQUOTE] = ACTIONS(1854), + [anon_sym_co_await] = ACTIONS(1856), + [anon_sym_new] = ACTIONS(1858), + [anon_sym_requires] = ACTIONS(1860), + [sym_this] = ACTIONS(1840), }, - [1089] = { - [sym_expression] = STATE(4482), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(8412), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3568), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3568), - [sym_call_expression] = STATE(3568), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3568), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3568), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3568), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3568), - [sym_identifier] = ACTIONS(3867), - [anon_sym_LPAREN2] = ACTIONS(4642), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_TILDE] = ACTIONS(3871), - [anon_sym_DASH] = ACTIONS(3869), - [anon_sym_PLUS] = ACTIONS(3869), - [anon_sym_STAR] = ACTIONS(4312), - [anon_sym_AMP] = ACTIONS(4312), - [anon_sym___extension__] = ACTIONS(3873), - [anon_sym_COLON] = ACTIONS(4689), - [anon_sym_COLON_COLON] = ACTIONS(3875), + [1168] = { + [sym_expression] = STATE(4806), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), + [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3869), - [anon_sym_compl] = ACTIONS(3869), - [anon_sym_DASH_DASH] = ACTIONS(4404), - [anon_sym_PLUS_PLUS] = ACTIONS(4404), - [anon_sym_sizeof] = ACTIONS(3877), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -188360,383 +197323,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(123), [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4816), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3879), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3881), - [anon_sym_new] = ACTIONS(3865), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1090] = { - [sym_expression] = STATE(4168), - [sym__string] = STATE(4199), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(2935), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(2935), - [sym_call_expression] = STATE(2935), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(2935), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(2935), - [sym_initializer_list] = STATE(3900), - [sym_char_literal] = STATE(4199), - [sym_concatenated_string] = STATE(4199), - [sym_string_literal] = STATE(3059), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3059), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2935), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(2935), - [sym_identifier] = ACTIONS(4334), - [anon_sym_LPAREN2] = ACTIONS(4658), - [anon_sym_BANG] = ACTIONS(3609), - [anon_sym_TILDE] = ACTIONS(3609), - [anon_sym_DASH] = ACTIONS(3607), - [anon_sym_PLUS] = ACTIONS(3607), - [anon_sym_STAR] = ACTIONS(4336), - [anon_sym_AMP] = ACTIONS(4336), - [anon_sym___extension__] = ACTIONS(3611), - [anon_sym_COLON_COLON] = ACTIONS(3613), - [anon_sym_LBRACE] = ACTIONS(3615), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3607), - [anon_sym_compl] = ACTIONS(3607), - [anon_sym_DASH_DASH] = ACTIONS(4338), - [anon_sym_PLUS_PLUS] = ACTIONS(4338), - [anon_sym_sizeof] = ACTIONS(3617), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3619), - [anon_sym_L_SQUOTE] = ACTIONS(3621), - [anon_sym_u_SQUOTE] = ACTIONS(3621), - [anon_sym_U_SQUOTE] = ACTIONS(3621), - [anon_sym_u8_SQUOTE] = ACTIONS(3621), - [anon_sym_SQUOTE] = ACTIONS(3621), - [anon_sym_L_DQUOTE] = ACTIONS(3623), - [anon_sym_u_DQUOTE] = ACTIONS(3623), - [anon_sym_U_DQUOTE] = ACTIONS(3623), - [anon_sym_u8_DQUOTE] = ACTIONS(3623), - [anon_sym_DQUOTE] = ACTIONS(3623), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3625), - [anon_sym_R_DQUOTE] = ACTIONS(3627), - [anon_sym_LR_DQUOTE] = ACTIONS(3627), - [anon_sym_uR_DQUOTE] = ACTIONS(3627), - [anon_sym_UR_DQUOTE] = ACTIONS(3627), - [anon_sym_u8R_DQUOTE] = ACTIONS(3627), - [anon_sym_co_await] = ACTIONS(3629), - [anon_sym_new] = ACTIONS(3631), - [anon_sym_requires] = ACTIONS(3633), - [sym_this] = ACTIONS(229), - }, - [1091] = { - [sym_expression] = STATE(4507), - [sym__string] = STATE(4738), - [sym_conditional_expression] = STATE(4829), - [sym_assignment_expression] = STATE(4829), - [sym_pointer_expression] = STATE(3602), - [sym_unary_expression] = STATE(4829), - [sym_binary_expression] = STATE(4829), - [sym_update_expression] = STATE(4829), - [sym_cast_expression] = STATE(4829), - [sym_sizeof_expression] = STATE(4829), - [sym_alignof_expression] = STATE(4829), - [sym_offsetof_expression] = STATE(4829), - [sym_generic_expression] = STATE(4829), - [sym_subscript_expression] = STATE(3602), - [sym_call_expression] = STATE(3602), - [sym_gnu_asm_expression] = STATE(4829), - [sym_extension_expression] = STATE(4829), - [sym_field_expression] = STATE(3602), - [sym_compound_literal_expression] = STATE(4829), - [sym_parenthesized_expression] = STATE(3602), - [sym_initializer_list] = STATE(4828), - [sym_char_literal] = STATE(4738), - [sym_concatenated_string] = STATE(4738), - [sym_string_literal] = STATE(3759), - [sym_null] = STATE(4829), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7804), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(4829), - [sym_raw_string_literal] = STATE(3759), - [sym_co_await_expression] = STATE(4829), - [sym_new_expression] = STATE(4829), - [sym_delete_expression] = STATE(4829), - [sym_requires_clause] = STATE(4829), - [sym_requires_expression] = STATE(4829), - [sym_lambda_expression] = STATE(4829), - [sym_lambda_capture_specifier] = STATE(5401), - [sym_fold_expression] = STATE(4829), - [sym_parameter_pack_expansion] = STATE(4829), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5773), - [sym_qualified_identifier] = STATE(3602), - [sym_qualified_type_identifier] = STATE(7804), - [sym_user_defined_literal] = STATE(3602), - [sym_identifier] = ACTIONS(3883), - [anon_sym_LPAREN2] = ACTIONS(3118), - [anon_sym_BANG] = ACTIONS(3120), - [anon_sym_TILDE] = ACTIONS(3120), - [anon_sym_DASH] = ACTIONS(3122), - [anon_sym_PLUS] = ACTIONS(3122), - [anon_sym_STAR] = ACTIONS(3124), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym___extension__] = ACTIONS(3885), - [anon_sym_COLON_COLON] = ACTIONS(3128), - [anon_sym_LBRACE] = ACTIONS(3887), + [1169] = { + [sym_expression] = STATE(3617), + [sym__string] = STATE(3775), + [sym_conditional_expression] = STATE(3886), + [sym_assignment_expression] = STATE(3886), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(3886), + [sym_binary_expression] = STATE(3886), + [sym_update_expression] = STATE(3886), + [sym_cast_expression] = STATE(3886), + [sym_sizeof_expression] = STATE(3886), + [sym_alignof_expression] = STATE(3886), + [sym_offsetof_expression] = STATE(3886), + [sym_generic_expression] = STATE(3886), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(3886), + [sym_extension_expression] = STATE(3886), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(3886), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(3775), + [sym_concatenated_string] = STATE(3775), + [sym_string_literal] = STATE(2596), + [sym_null] = STATE(3886), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7756), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3886), + [sym_raw_string_literal] = STATE(2596), + [sym_co_await_expression] = STATE(3886), + [sym_new_expression] = STATE(3886), + [sym_delete_expression] = STATE(3886), + [sym_requires_clause] = STATE(3886), + [sym_requires_expression] = STATE(3886), + [sym_lambda_expression] = STATE(3886), + [sym_lambda_capture_specifier] = STATE(5492), + [sym_fold_expression] = STATE(3886), + [sym_parameter_pack_expansion] = STATE(3886), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(7756), + [sym_user_defined_literal] = STATE(3522), + [sym_identifier] = ACTIONS(2619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4728), + [anon_sym_LPAREN2] = ACTIONS(1888), + [anon_sym_BANG] = ACTIONS(1890), + [anon_sym_TILDE] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1892), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(2621), + [anon_sym_COLON_COLON] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(3889), - [anon_sym_not] = ACTIONS(3122), - [anon_sym_compl] = ACTIONS(3122), - [anon_sym_DASH_DASH] = ACTIONS(3142), - [anon_sym_PLUS_PLUS] = ACTIONS(3142), - [anon_sym_sizeof] = ACTIONS(3144), - [anon_sym___alignof__] = ACTIONS(3146), - [anon_sym___alignof] = ACTIONS(3146), - [anon_sym__alignof] = ACTIONS(3146), - [anon_sym_alignof] = ACTIONS(3146), - [anon_sym__Alignof] = ACTIONS(3146), - [anon_sym_offsetof] = ACTIONS(3148), - [anon_sym__Generic] = ACTIONS(3150), - [anon_sym_asm] = ACTIONS(3152), - [anon_sym___asm__] = ACTIONS(3152), - [anon_sym___asm] = ACTIONS(3152), - [sym_number_literal] = ACTIONS(3154), - [anon_sym_L_SQUOTE] = ACTIONS(3156), - [anon_sym_u_SQUOTE] = ACTIONS(3156), - [anon_sym_U_SQUOTE] = ACTIONS(3156), - [anon_sym_u8_SQUOTE] = ACTIONS(3156), - [anon_sym_SQUOTE] = ACTIONS(3156), - [anon_sym_L_DQUOTE] = ACTIONS(3158), - [anon_sym_u_DQUOTE] = ACTIONS(3158), - [anon_sym_U_DQUOTE] = ACTIONS(3158), - [anon_sym_u8_DQUOTE] = ACTIONS(3158), - [anon_sym_DQUOTE] = ACTIONS(3158), - [sym_true] = ACTIONS(3160), - [sym_false] = ACTIONS(3160), - [anon_sym_NULL] = ACTIONS(3162), - [anon_sym_nullptr] = ACTIONS(3162), + [sym_primitive_type] = ACTIONS(2625), + [anon_sym_not] = ACTIONS(1892), + [anon_sym_compl] = ACTIONS(1892), + [anon_sym_DASH_DASH] = ACTIONS(1902), + [anon_sym_PLUS_PLUS] = ACTIONS(1902), + [anon_sym_sizeof] = ACTIONS(1904), + [anon_sym___alignof__] = ACTIONS(1906), + [anon_sym___alignof] = ACTIONS(1906), + [anon_sym__alignof] = ACTIONS(1906), + [anon_sym_alignof] = ACTIONS(1906), + [anon_sym__Alignof] = ACTIONS(1906), + [anon_sym_offsetof] = ACTIONS(1908), + [anon_sym__Generic] = ACTIONS(1910), + [anon_sym_asm] = ACTIONS(1912), + [anon_sym___asm__] = ACTIONS(1912), + [anon_sym___asm] = ACTIONS(1912), + [sym_number_literal] = ACTIONS(1914), + [anon_sym_L_SQUOTE] = ACTIONS(1916), + [anon_sym_u_SQUOTE] = ACTIONS(1916), + [anon_sym_U_SQUOTE] = ACTIONS(1916), + [anon_sym_u8_SQUOTE] = ACTIONS(1916), + [anon_sym_SQUOTE] = ACTIONS(1916), + [anon_sym_L_DQUOTE] = ACTIONS(1918), + [anon_sym_u_DQUOTE] = ACTIONS(1918), + [anon_sym_U_DQUOTE] = ACTIONS(1918), + [anon_sym_u8_DQUOTE] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1918), + [sym_true] = ACTIONS(1920), + [sym_false] = ACTIONS(1920), + [anon_sym_NULL] = ACTIONS(1922), + [anon_sym_nullptr] = ACTIONS(1922), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3172), - [anon_sym_R_DQUOTE] = ACTIONS(3174), - [anon_sym_LR_DQUOTE] = ACTIONS(3174), - [anon_sym_uR_DQUOTE] = ACTIONS(3174), - [anon_sym_UR_DQUOTE] = ACTIONS(3174), - [anon_sym_u8R_DQUOTE] = ACTIONS(3174), - [anon_sym_co_await] = ACTIONS(3176), - [anon_sym_new] = ACTIONS(3178), - [anon_sym_requires] = ACTIONS(3180), - [sym_this] = ACTIONS(3160), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1924), + [anon_sym_R_DQUOTE] = ACTIONS(1926), + [anon_sym_LR_DQUOTE] = ACTIONS(1926), + [anon_sym_uR_DQUOTE] = ACTIONS(1926), + [anon_sym_UR_DQUOTE] = ACTIONS(1926), + [anon_sym_u8R_DQUOTE] = ACTIONS(1926), + [anon_sym_co_await] = ACTIONS(1928), + [anon_sym_new] = ACTIONS(1930), + [anon_sym_requires] = ACTIONS(1932), + [sym_this] = ACTIONS(1920), }, - [1092] = { - [sym_expression] = STATE(2388), - [sym__string] = STATE(3181), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_initializer_list] = STATE(2441), - [sym_char_literal] = STATE(3181), - [sym_concatenated_string] = STATE(3181), - [sym_string_literal] = STATE(2297), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(2297), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), - [sym_identifier] = ACTIONS(2305), - [anon_sym_LPAREN2] = ACTIONS(4691), - [anon_sym_BANG] = ACTIONS(2309), - [anon_sym_TILDE] = ACTIONS(2309), - [anon_sym_DASH] = ACTIONS(2307), - [anon_sym_PLUS] = ACTIONS(2307), - [anon_sym_STAR] = ACTIONS(4382), - [anon_sym_AMP] = ACTIONS(4382), - [anon_sym___extension__] = ACTIONS(2311), - [anon_sym_COLON_COLON] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(1954), + [1170] = { + [sym_expression] = STATE(3617), + [sym__string] = STATE(3775), + [sym_conditional_expression] = STATE(3886), + [sym_assignment_expression] = STATE(3886), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(3886), + [sym_binary_expression] = STATE(3886), + [sym_update_expression] = STATE(3886), + [sym_cast_expression] = STATE(3886), + [sym_sizeof_expression] = STATE(3886), + [sym_alignof_expression] = STATE(3886), + [sym_offsetof_expression] = STATE(3886), + [sym_generic_expression] = STATE(3886), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(3886), + [sym_extension_expression] = STATE(3886), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(3886), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(3775), + [sym_concatenated_string] = STATE(3775), + [sym_string_literal] = STATE(2596), + [sym_null] = STATE(3886), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7756), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3886), + [sym_raw_string_literal] = STATE(2596), + [sym_co_await_expression] = STATE(3886), + [sym_new_expression] = STATE(3886), + [sym_delete_expression] = STATE(3886), + [sym_requires_clause] = STATE(3886), + [sym_requires_expression] = STATE(3886), + [sym_lambda_expression] = STATE(3886), + [sym_lambda_capture_specifier] = STATE(5492), + [sym_fold_expression] = STATE(3886), + [sym_parameter_pack_expansion] = STATE(3886), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(7756), + [sym_user_defined_literal] = STATE(3522), + [sym_identifier] = ACTIONS(2619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4745), + [anon_sym_LPAREN2] = ACTIONS(1888), + [anon_sym_BANG] = ACTIONS(1890), + [anon_sym_TILDE] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1892), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(2621), + [anon_sym_COLON_COLON] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(1956), - [anon_sym_not] = ACTIONS(2307), - [anon_sym_compl] = ACTIONS(2307), - [anon_sym_DASH_DASH] = ACTIONS(4396), - [anon_sym_PLUS_PLUS] = ACTIONS(4396), - [anon_sym_sizeof] = ACTIONS(2315), - [anon_sym___alignof__] = ACTIONS(1960), - [anon_sym___alignof] = ACTIONS(1960), - [anon_sym__alignof] = ACTIONS(1960), - [anon_sym_alignof] = ACTIONS(1960), - [anon_sym__Alignof] = ACTIONS(1960), - [anon_sym_offsetof] = ACTIONS(1962), - [anon_sym__Generic] = ACTIONS(1964), - [anon_sym_asm] = ACTIONS(1966), - [anon_sym___asm__] = ACTIONS(1966), - [anon_sym___asm] = ACTIONS(1966), - [sym_number_literal] = ACTIONS(2317), - [anon_sym_L_SQUOTE] = ACTIONS(2319), - [anon_sym_u_SQUOTE] = ACTIONS(2319), - [anon_sym_U_SQUOTE] = ACTIONS(2319), - [anon_sym_u8_SQUOTE] = ACTIONS(2319), - [anon_sym_SQUOTE] = ACTIONS(2319), - [anon_sym_L_DQUOTE] = ACTIONS(2321), - [anon_sym_u_DQUOTE] = ACTIONS(2321), - [anon_sym_U_DQUOTE] = ACTIONS(2321), - [anon_sym_u8_DQUOTE] = ACTIONS(2321), - [anon_sym_DQUOTE] = ACTIONS(2321), - [sym_true] = ACTIONS(1974), - [sym_false] = ACTIONS(1974), - [anon_sym_NULL] = ACTIONS(1976), - [anon_sym_nullptr] = ACTIONS(1976), + [sym_primitive_type] = ACTIONS(2625), + [anon_sym_not] = ACTIONS(1892), + [anon_sym_compl] = ACTIONS(1892), + [anon_sym_DASH_DASH] = ACTIONS(1902), + [anon_sym_PLUS_PLUS] = ACTIONS(1902), + [anon_sym_sizeof] = ACTIONS(1904), + [anon_sym___alignof__] = ACTIONS(1906), + [anon_sym___alignof] = ACTIONS(1906), + [anon_sym__alignof] = ACTIONS(1906), + [anon_sym_alignof] = ACTIONS(1906), + [anon_sym__Alignof] = ACTIONS(1906), + [anon_sym_offsetof] = ACTIONS(1908), + [anon_sym__Generic] = ACTIONS(1910), + [anon_sym_asm] = ACTIONS(1912), + [anon_sym___asm__] = ACTIONS(1912), + [anon_sym___asm] = ACTIONS(1912), + [sym_number_literal] = ACTIONS(1914), + [anon_sym_L_SQUOTE] = ACTIONS(1916), + [anon_sym_u_SQUOTE] = ACTIONS(1916), + [anon_sym_U_SQUOTE] = ACTIONS(1916), + [anon_sym_u8_SQUOTE] = ACTIONS(1916), + [anon_sym_SQUOTE] = ACTIONS(1916), + [anon_sym_L_DQUOTE] = ACTIONS(1918), + [anon_sym_u_DQUOTE] = ACTIONS(1918), + [anon_sym_U_DQUOTE] = ACTIONS(1918), + [anon_sym_u8_DQUOTE] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1918), + [sym_true] = ACTIONS(1920), + [sym_false] = ACTIONS(1920), + [anon_sym_NULL] = ACTIONS(1922), + [anon_sym_nullptr] = ACTIONS(1922), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(2323), - [anon_sym_R_DQUOTE] = ACTIONS(2325), - [anon_sym_LR_DQUOTE] = ACTIONS(2325), - [anon_sym_uR_DQUOTE] = ACTIONS(2325), - [anon_sym_UR_DQUOTE] = ACTIONS(2325), - [anon_sym_u8R_DQUOTE] = ACTIONS(2325), - [anon_sym_co_await] = ACTIONS(2327), - [anon_sym_new] = ACTIONS(2014), - [anon_sym_requires] = ACTIONS(1988), - [sym_this] = ACTIONS(1974), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1924), + [anon_sym_R_DQUOTE] = ACTIONS(1926), + [anon_sym_LR_DQUOTE] = ACTIONS(1926), + [anon_sym_uR_DQUOTE] = ACTIONS(1926), + [anon_sym_UR_DQUOTE] = ACTIONS(1926), + [anon_sym_u8R_DQUOTE] = ACTIONS(1926), + [anon_sym_co_await] = ACTIONS(1928), + [anon_sym_new] = ACTIONS(1930), + [anon_sym_requires] = ACTIONS(1932), + [sym_this] = ACTIONS(1920), }, - [1093] = { - [sym_expression] = STATE(4735), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_initializer_list] = STATE(8155), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1171] = { + [sym_expression] = STATE(4809), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3615), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -188768,8 +197626,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(123), [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4818), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -188781,63 +197640,264 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1094] = { - [sym_expression] = STATE(4608), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_RPAREN] = ACTIONS(4693), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1172] = { + [sym_expression] = STATE(3375), + [sym__string] = STATE(3549), + [sym_conditional_expression] = STATE(3636), + [sym_assignment_expression] = STATE(3636), + [sym_pointer_expression] = STATE(3696), + [sym_unary_expression] = STATE(3636), + [sym_binary_expression] = STATE(3636), + [sym_update_expression] = STATE(3636), + [sym_cast_expression] = STATE(3636), + [sym_sizeof_expression] = STATE(3636), + [sym_alignof_expression] = STATE(3636), + [sym_offsetof_expression] = STATE(3636), + [sym_generic_expression] = STATE(3636), + [sym_subscript_expression] = STATE(3696), + [sym_call_expression] = STATE(3696), + [sym_gnu_asm_expression] = STATE(3636), + [sym_extension_expression] = STATE(3636), + [sym_field_expression] = STATE(3696), + [sym_compound_literal_expression] = STATE(3636), + [sym_parenthesized_expression] = STATE(3696), + [sym_char_literal] = STATE(3549), + [sym_concatenated_string] = STATE(3549), + [sym_string_literal] = STATE(2433), + [sym_null] = STATE(3636), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7883), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3636), + [sym_raw_string_literal] = STATE(2433), + [sym_co_await_expression] = STATE(3636), + [sym_new_expression] = STATE(3636), + [sym_delete_expression] = STATE(3636), + [sym_requires_clause] = STATE(3636), + [sym_requires_expression] = STATE(3636), + [sym_lambda_expression] = STATE(3636), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3636), + [sym_parameter_pack_expansion] = STATE(3636), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5769), + [sym_qualified_identifier] = STATE(3696), + [sym_qualified_type_identifier] = STATE(7883), + [sym_user_defined_literal] = STATE(3696), + [sym_identifier] = ACTIONS(2483), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4820), + [anon_sym_LPAREN2] = ACTIONS(4822), + [anon_sym_BANG] = ACTIONS(2487), + [anon_sym_TILDE] = ACTIONS(2487), + [anon_sym_DASH] = ACTIONS(2485), + [anon_sym_PLUS] = ACTIONS(2485), + [anon_sym_STAR] = ACTIONS(3136), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym___extension__] = ACTIONS(2489), + [anon_sym_COLON_COLON] = ACTIONS(2491), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2495), + [anon_sym_not] = ACTIONS(2485), + [anon_sym_compl] = ACTIONS(2485), + [anon_sym_DASH_DASH] = ACTIONS(4513), + [anon_sym_PLUS_PLUS] = ACTIONS(4513), + [anon_sym_sizeof] = ACTIONS(2497), + [anon_sym___alignof__] = ACTIONS(2499), + [anon_sym___alignof] = ACTIONS(2499), + [anon_sym__alignof] = ACTIONS(2499), + [anon_sym_alignof] = ACTIONS(2499), + [anon_sym__Alignof] = ACTIONS(2499), + [anon_sym_offsetof] = ACTIONS(2501), + [anon_sym__Generic] = ACTIONS(2503), + [anon_sym_asm] = ACTIONS(2505), + [anon_sym___asm__] = ACTIONS(2505), + [anon_sym___asm] = ACTIONS(2505), + [sym_number_literal] = ACTIONS(2507), + [anon_sym_L_SQUOTE] = ACTIONS(2509), + [anon_sym_u_SQUOTE] = ACTIONS(2509), + [anon_sym_U_SQUOTE] = ACTIONS(2509), + [anon_sym_u8_SQUOTE] = ACTIONS(2509), + [anon_sym_SQUOTE] = ACTIONS(2509), + [anon_sym_L_DQUOTE] = ACTIONS(2511), + [anon_sym_u_DQUOTE] = ACTIONS(2511), + [anon_sym_U_DQUOTE] = ACTIONS(2511), + [anon_sym_u8_DQUOTE] = ACTIONS(2511), + [anon_sym_DQUOTE] = ACTIONS(2511), + [sym_true] = ACTIONS(2513), + [sym_false] = ACTIONS(2513), + [anon_sym_NULL] = ACTIONS(2515), + [anon_sym_nullptr] = ACTIONS(2515), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(2517), + [anon_sym_R_DQUOTE] = ACTIONS(2519), + [anon_sym_LR_DQUOTE] = ACTIONS(2519), + [anon_sym_uR_DQUOTE] = ACTIONS(2519), + [anon_sym_UR_DQUOTE] = ACTIONS(2519), + [anon_sym_u8R_DQUOTE] = ACTIONS(2519), + [anon_sym_co_await] = ACTIONS(2521), + [anon_sym_new] = ACTIONS(2523), + [anon_sym_requires] = ACTIONS(2525), + [sym_this] = ACTIONS(2513), + }, + [1173] = { + [sym_expression] = STATE(2402), + [sym__string] = STATE(3178), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(3178), + [sym_concatenated_string] = STATE(3178), + [sym_string_literal] = STATE(2317), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(2317), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), + [sym_identifier] = ACTIONS(2301), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4824), + [anon_sym_LPAREN2] = ACTIONS(4826), + [anon_sym_BANG] = ACTIONS(2305), + [anon_sym_TILDE] = ACTIONS(2305), + [anon_sym_DASH] = ACTIONS(2303), + [anon_sym_PLUS] = ACTIONS(2303), + [anon_sym_STAR] = ACTIONS(4336), + [anon_sym_AMP] = ACTIONS(4336), + [anon_sym___extension__] = ACTIONS(2307), + [anon_sym_COLON_COLON] = ACTIONS(2309), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(1956), + [anon_sym_not] = ACTIONS(2303), + [anon_sym_compl] = ACTIONS(2303), + [anon_sym_DASH_DASH] = ACTIONS(4352), + [anon_sym_PLUS_PLUS] = ACTIONS(4352), + [anon_sym_sizeof] = ACTIONS(2311), + [anon_sym___alignof__] = ACTIONS(1960), + [anon_sym___alignof] = ACTIONS(1960), + [anon_sym__alignof] = ACTIONS(1960), + [anon_sym_alignof] = ACTIONS(1960), + [anon_sym__Alignof] = ACTIONS(1960), + [anon_sym_offsetof] = ACTIONS(1962), + [anon_sym__Generic] = ACTIONS(1964), + [anon_sym_asm] = ACTIONS(1966), + [anon_sym___asm__] = ACTIONS(1966), + [anon_sym___asm] = ACTIONS(1966), + [sym_number_literal] = ACTIONS(2313), + [anon_sym_L_SQUOTE] = ACTIONS(2315), + [anon_sym_u_SQUOTE] = ACTIONS(2315), + [anon_sym_U_SQUOTE] = ACTIONS(2315), + [anon_sym_u8_SQUOTE] = ACTIONS(2315), + [anon_sym_SQUOTE] = ACTIONS(2315), + [anon_sym_L_DQUOTE] = ACTIONS(2317), + [anon_sym_u_DQUOTE] = ACTIONS(2317), + [anon_sym_U_DQUOTE] = ACTIONS(2317), + [anon_sym_u8_DQUOTE] = ACTIONS(2317), + [anon_sym_DQUOTE] = ACTIONS(2317), + [sym_true] = ACTIONS(1974), + [sym_false] = ACTIONS(1974), + [anon_sym_NULL] = ACTIONS(1976), + [anon_sym_nullptr] = ACTIONS(1976), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(2319), + [anon_sym_R_DQUOTE] = ACTIONS(2321), + [anon_sym_LR_DQUOTE] = ACTIONS(2321), + [anon_sym_uR_DQUOTE] = ACTIONS(2321), + [anon_sym_UR_DQUOTE] = ACTIONS(2321), + [anon_sym_u8R_DQUOTE] = ACTIONS(2321), + [anon_sym_co_await] = ACTIONS(2323), + [anon_sym_new] = ACTIONS(2014), + [anon_sym_requires] = ACTIONS(1988), + [sym_this] = ACTIONS(1974), + }, + [1174] = { + [sym_expression] = STATE(4658), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -188869,8 +197929,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(123), [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4828), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -188882,2592 +197943,168 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1095] = { - [sym_expression] = STATE(3549), - [sym__string] = STATE(3714), - [sym_conditional_expression] = STATE(3908), - [sym_assignment_expression] = STATE(3908), - [sym_pointer_expression] = STATE(3506), - [sym_unary_expression] = STATE(3908), - [sym_binary_expression] = STATE(3908), - [sym_update_expression] = STATE(3908), - [sym_cast_expression] = STATE(3908), - [sym_sizeof_expression] = STATE(3908), - [sym_alignof_expression] = STATE(3908), - [sym_offsetof_expression] = STATE(3908), - [sym_generic_expression] = STATE(3908), - [sym_subscript_expression] = STATE(3506), - [sym_call_expression] = STATE(3506), - [sym_gnu_asm_expression] = STATE(3908), - [sym_extension_expression] = STATE(3908), - [sym_field_expression] = STATE(3506), - [sym_compound_literal_expression] = STATE(3908), - [sym_parenthesized_expression] = STATE(3506), - [sym_char_literal] = STATE(3714), - [sym_concatenated_string] = STATE(3714), - [sym_string_literal] = STATE(2566), - [sym_null] = STATE(3908), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7868), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3908), - [sym_raw_string_literal] = STATE(2566), - [sym_co_await_expression] = STATE(3908), - [sym_new_expression] = STATE(3908), - [sym_delete_expression] = STATE(3908), - [sym_requires_clause] = STATE(3908), - [sym_requires_expression] = STATE(3908), - [sym_lambda_expression] = STATE(3908), - [sym_lambda_capture_specifier] = STATE(5415), - [sym_fold_expression] = STATE(3908), - [sym_parameter_pack_expansion] = STATE(3908), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3506), - [sym_qualified_type_identifier] = STATE(7868), - [sym_user_defined_literal] = STATE(3506), - [sym_identifier] = ACTIONS(2605), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4695), - [anon_sym_LPAREN2] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1870), - [anon_sym_TILDE] = ACTIONS(1870), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_PLUS] = ACTIONS(1872), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(2607), - [anon_sym_COLON_COLON] = ACTIONS(1880), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2611), - [anon_sym_not] = ACTIONS(1872), - [anon_sym_compl] = ACTIONS(1872), - [anon_sym_DASH_DASH] = ACTIONS(1892), - [anon_sym_PLUS_PLUS] = ACTIONS(1892), - [anon_sym_sizeof] = ACTIONS(1894), - [anon_sym___alignof__] = ACTIONS(1896), - [anon_sym___alignof] = ACTIONS(1896), - [anon_sym__alignof] = ACTIONS(1896), - [anon_sym_alignof] = ACTIONS(1896), - [anon_sym__Alignof] = ACTIONS(1896), - [anon_sym_offsetof] = ACTIONS(1898), - [anon_sym__Generic] = ACTIONS(1900), - [anon_sym_asm] = ACTIONS(1902), - [anon_sym___asm__] = ACTIONS(1902), - [anon_sym___asm] = ACTIONS(1902), - [sym_number_literal] = ACTIONS(1904), - [anon_sym_L_SQUOTE] = ACTIONS(1906), - [anon_sym_u_SQUOTE] = ACTIONS(1906), - [anon_sym_U_SQUOTE] = ACTIONS(1906), - [anon_sym_u8_SQUOTE] = ACTIONS(1906), - [anon_sym_SQUOTE] = ACTIONS(1906), - [anon_sym_L_DQUOTE] = ACTIONS(1908), - [anon_sym_u_DQUOTE] = ACTIONS(1908), - [anon_sym_U_DQUOTE] = ACTIONS(1908), - [anon_sym_u8_DQUOTE] = ACTIONS(1908), - [anon_sym_DQUOTE] = ACTIONS(1908), - [sym_true] = ACTIONS(1910), - [sym_false] = ACTIONS(1910), - [anon_sym_NULL] = ACTIONS(1912), - [anon_sym_nullptr] = ACTIONS(1912), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1916), - [anon_sym_R_DQUOTE] = ACTIONS(1918), - [anon_sym_LR_DQUOTE] = ACTIONS(1918), - [anon_sym_uR_DQUOTE] = ACTIONS(1918), - [anon_sym_UR_DQUOTE] = ACTIONS(1918), - [anon_sym_u8R_DQUOTE] = ACTIONS(1918), - [anon_sym_co_await] = ACTIONS(1920), - [anon_sym_new] = ACTIONS(1922), - [anon_sym_requires] = ACTIONS(1924), - [sym_this] = ACTIONS(1910), - }, - [1096] = { - [sym_expression] = STATE(3550), - [sym__string] = STATE(3714), - [sym_conditional_expression] = STATE(3908), - [sym_assignment_expression] = STATE(3908), - [sym_pointer_expression] = STATE(3506), - [sym_unary_expression] = STATE(3908), - [sym_binary_expression] = STATE(3908), - [sym_update_expression] = STATE(3908), - [sym_cast_expression] = STATE(3908), - [sym_sizeof_expression] = STATE(3908), - [sym_alignof_expression] = STATE(3908), - [sym_offsetof_expression] = STATE(3908), - [sym_generic_expression] = STATE(3908), - [sym_subscript_expression] = STATE(3506), - [sym_call_expression] = STATE(3506), - [sym_gnu_asm_expression] = STATE(3908), - [sym_extension_expression] = STATE(3908), - [sym_field_expression] = STATE(3506), - [sym_compound_literal_expression] = STATE(3908), - [sym_parenthesized_expression] = STATE(3506), - [sym_char_literal] = STATE(3714), - [sym_concatenated_string] = STATE(3714), - [sym_string_literal] = STATE(2566), - [sym_null] = STATE(3908), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7868), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3908), - [sym_raw_string_literal] = STATE(2566), - [sym_co_await_expression] = STATE(3908), - [sym_new_expression] = STATE(3908), - [sym_delete_expression] = STATE(3908), - [sym_requires_clause] = STATE(3908), - [sym_requires_expression] = STATE(3908), - [sym_lambda_expression] = STATE(3908), - [sym_lambda_capture_specifier] = STATE(5415), - [sym_fold_expression] = STATE(3908), - [sym_parameter_pack_expansion] = STATE(3908), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3506), - [sym_qualified_type_identifier] = STATE(7868), - [sym_user_defined_literal] = STATE(3506), - [sym_identifier] = ACTIONS(2605), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4698), - [anon_sym_LPAREN2] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1870), - [anon_sym_TILDE] = ACTIONS(1870), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_PLUS] = ACTIONS(1872), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(2607), - [anon_sym_COLON_COLON] = ACTIONS(1880), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2611), - [anon_sym_not] = ACTIONS(1872), - [anon_sym_compl] = ACTIONS(1872), - [anon_sym_DASH_DASH] = ACTIONS(1892), - [anon_sym_PLUS_PLUS] = ACTIONS(1892), - [anon_sym_sizeof] = ACTIONS(1894), - [anon_sym___alignof__] = ACTIONS(1896), - [anon_sym___alignof] = ACTIONS(1896), - [anon_sym__alignof] = ACTIONS(1896), - [anon_sym_alignof] = ACTIONS(1896), - [anon_sym__Alignof] = ACTIONS(1896), - [anon_sym_offsetof] = ACTIONS(1898), - [anon_sym__Generic] = ACTIONS(1900), - [anon_sym_asm] = ACTIONS(1902), - [anon_sym___asm__] = ACTIONS(1902), - [anon_sym___asm] = ACTIONS(1902), - [sym_number_literal] = ACTIONS(1904), - [anon_sym_L_SQUOTE] = ACTIONS(1906), - [anon_sym_u_SQUOTE] = ACTIONS(1906), - [anon_sym_U_SQUOTE] = ACTIONS(1906), - [anon_sym_u8_SQUOTE] = ACTIONS(1906), - [anon_sym_SQUOTE] = ACTIONS(1906), - [anon_sym_L_DQUOTE] = ACTIONS(1908), - [anon_sym_u_DQUOTE] = ACTIONS(1908), - [anon_sym_U_DQUOTE] = ACTIONS(1908), - [anon_sym_u8_DQUOTE] = ACTIONS(1908), - [anon_sym_DQUOTE] = ACTIONS(1908), - [sym_true] = ACTIONS(1910), - [sym_false] = ACTIONS(1910), - [anon_sym_NULL] = ACTIONS(1912), - [anon_sym_nullptr] = ACTIONS(1912), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1916), - [anon_sym_R_DQUOTE] = ACTIONS(1918), - [anon_sym_LR_DQUOTE] = ACTIONS(1918), - [anon_sym_uR_DQUOTE] = ACTIONS(1918), - [anon_sym_UR_DQUOTE] = ACTIONS(1918), - [anon_sym_u8R_DQUOTE] = ACTIONS(1918), - [anon_sym_co_await] = ACTIONS(1920), - [anon_sym_new] = ACTIONS(1922), - [anon_sym_requires] = ACTIONS(1924), - [sym_this] = ACTIONS(1910), - }, - [1097] = { - [sym_expression] = STATE(3550), - [sym__string] = STATE(3714), - [sym_conditional_expression] = STATE(3908), - [sym_assignment_expression] = STATE(3908), - [sym_pointer_expression] = STATE(3506), - [sym_unary_expression] = STATE(3908), - [sym_binary_expression] = STATE(3908), - [sym_update_expression] = STATE(3908), - [sym_cast_expression] = STATE(3908), - [sym_sizeof_expression] = STATE(3908), - [sym_alignof_expression] = STATE(3908), - [sym_offsetof_expression] = STATE(3908), - [sym_generic_expression] = STATE(3908), - [sym_subscript_expression] = STATE(3506), - [sym_call_expression] = STATE(3506), - [sym_gnu_asm_expression] = STATE(3908), - [sym_extension_expression] = STATE(3908), - [sym_field_expression] = STATE(3506), - [sym_compound_literal_expression] = STATE(3908), - [sym_parenthesized_expression] = STATE(3506), - [sym_char_literal] = STATE(3714), - [sym_concatenated_string] = STATE(3714), - [sym_string_literal] = STATE(2566), - [sym_null] = STATE(3908), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7868), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3908), - [sym_raw_string_literal] = STATE(2566), - [sym_co_await_expression] = STATE(3908), - [sym_new_expression] = STATE(3908), - [sym_delete_expression] = STATE(3908), - [sym_requires_clause] = STATE(3908), - [sym_requires_expression] = STATE(3908), - [sym_lambda_expression] = STATE(3908), - [sym_lambda_capture_specifier] = STATE(5415), - [sym_fold_expression] = STATE(3908), - [sym_parameter_pack_expansion] = STATE(3908), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3506), - [sym_qualified_type_identifier] = STATE(7868), - [sym_user_defined_literal] = STATE(3506), - [sym_identifier] = ACTIONS(2605), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4701), - [anon_sym_LPAREN2] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1870), - [anon_sym_TILDE] = ACTIONS(1870), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_PLUS] = ACTIONS(1872), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(2607), - [anon_sym_COLON_COLON] = ACTIONS(1880), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2611), - [anon_sym_not] = ACTIONS(1872), - [anon_sym_compl] = ACTIONS(1872), - [anon_sym_DASH_DASH] = ACTIONS(1892), - [anon_sym_PLUS_PLUS] = ACTIONS(1892), - [anon_sym_sizeof] = ACTIONS(1894), - [anon_sym___alignof__] = ACTIONS(1896), - [anon_sym___alignof] = ACTIONS(1896), - [anon_sym__alignof] = ACTIONS(1896), - [anon_sym_alignof] = ACTIONS(1896), - [anon_sym__Alignof] = ACTIONS(1896), - [anon_sym_offsetof] = ACTIONS(1898), - [anon_sym__Generic] = ACTIONS(1900), - [anon_sym_asm] = ACTIONS(1902), - [anon_sym___asm__] = ACTIONS(1902), - [anon_sym___asm] = ACTIONS(1902), - [sym_number_literal] = ACTIONS(1904), - [anon_sym_L_SQUOTE] = ACTIONS(1906), - [anon_sym_u_SQUOTE] = ACTIONS(1906), - [anon_sym_U_SQUOTE] = ACTIONS(1906), - [anon_sym_u8_SQUOTE] = ACTIONS(1906), - [anon_sym_SQUOTE] = ACTIONS(1906), - [anon_sym_L_DQUOTE] = ACTIONS(1908), - [anon_sym_u_DQUOTE] = ACTIONS(1908), - [anon_sym_U_DQUOTE] = ACTIONS(1908), - [anon_sym_u8_DQUOTE] = ACTIONS(1908), - [anon_sym_DQUOTE] = ACTIONS(1908), - [sym_true] = ACTIONS(1910), - [sym_false] = ACTIONS(1910), - [anon_sym_NULL] = ACTIONS(1912), - [anon_sym_nullptr] = ACTIONS(1912), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1916), - [anon_sym_R_DQUOTE] = ACTIONS(1918), - [anon_sym_LR_DQUOTE] = ACTIONS(1918), - [anon_sym_uR_DQUOTE] = ACTIONS(1918), - [anon_sym_UR_DQUOTE] = ACTIONS(1918), - [anon_sym_u8R_DQUOTE] = ACTIONS(1918), - [anon_sym_co_await] = ACTIONS(1920), - [anon_sym_new] = ACTIONS(1922), - [anon_sym_requires] = ACTIONS(1924), - [sym_this] = ACTIONS(1910), - }, - [1098] = { - [sym_expression] = STATE(3550), - [sym__string] = STATE(3714), - [sym_conditional_expression] = STATE(3908), - [sym_assignment_expression] = STATE(3908), - [sym_pointer_expression] = STATE(3506), - [sym_unary_expression] = STATE(3908), - [sym_binary_expression] = STATE(3908), - [sym_update_expression] = STATE(3908), - [sym_cast_expression] = STATE(3908), - [sym_sizeof_expression] = STATE(3908), - [sym_alignof_expression] = STATE(3908), - [sym_offsetof_expression] = STATE(3908), - [sym_generic_expression] = STATE(3908), - [sym_subscript_expression] = STATE(3506), - [sym_call_expression] = STATE(3506), - [sym_gnu_asm_expression] = STATE(3908), - [sym_extension_expression] = STATE(3908), - [sym_field_expression] = STATE(3506), - [sym_compound_literal_expression] = STATE(3908), - [sym_parenthesized_expression] = STATE(3506), - [sym_char_literal] = STATE(3714), - [sym_concatenated_string] = STATE(3714), - [sym_string_literal] = STATE(2566), - [sym_null] = STATE(3908), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7868), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3908), - [sym_raw_string_literal] = STATE(2566), - [sym_co_await_expression] = STATE(3908), - [sym_new_expression] = STATE(3908), - [sym_delete_expression] = STATE(3908), - [sym_requires_clause] = STATE(3908), - [sym_requires_expression] = STATE(3908), - [sym_lambda_expression] = STATE(3908), - [sym_lambda_capture_specifier] = STATE(5415), - [sym_fold_expression] = STATE(3908), - [sym_parameter_pack_expansion] = STATE(3908), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3506), - [sym_qualified_type_identifier] = STATE(7868), - [sym_user_defined_literal] = STATE(3506), - [sym_identifier] = ACTIONS(2605), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4704), - [anon_sym_LPAREN2] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1870), - [anon_sym_TILDE] = ACTIONS(1870), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_PLUS] = ACTIONS(1872), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(2607), - [anon_sym_COLON_COLON] = ACTIONS(1880), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2611), - [anon_sym_not] = ACTIONS(1872), - [anon_sym_compl] = ACTIONS(1872), - [anon_sym_DASH_DASH] = ACTIONS(1892), - [anon_sym_PLUS_PLUS] = ACTIONS(1892), - [anon_sym_sizeof] = ACTIONS(1894), - [anon_sym___alignof__] = ACTIONS(1896), - [anon_sym___alignof] = ACTIONS(1896), - [anon_sym__alignof] = ACTIONS(1896), - [anon_sym_alignof] = ACTIONS(1896), - [anon_sym__Alignof] = ACTIONS(1896), - [anon_sym_offsetof] = ACTIONS(1898), - [anon_sym__Generic] = ACTIONS(1900), - [anon_sym_asm] = ACTIONS(1902), - [anon_sym___asm__] = ACTIONS(1902), - [anon_sym___asm] = ACTIONS(1902), - [sym_number_literal] = ACTIONS(1904), - [anon_sym_L_SQUOTE] = ACTIONS(1906), - [anon_sym_u_SQUOTE] = ACTIONS(1906), - [anon_sym_U_SQUOTE] = ACTIONS(1906), - [anon_sym_u8_SQUOTE] = ACTIONS(1906), - [anon_sym_SQUOTE] = ACTIONS(1906), - [anon_sym_L_DQUOTE] = ACTIONS(1908), - [anon_sym_u_DQUOTE] = ACTIONS(1908), - [anon_sym_U_DQUOTE] = ACTIONS(1908), - [anon_sym_u8_DQUOTE] = ACTIONS(1908), - [anon_sym_DQUOTE] = ACTIONS(1908), - [sym_true] = ACTIONS(1910), - [sym_false] = ACTIONS(1910), - [anon_sym_NULL] = ACTIONS(1912), - [anon_sym_nullptr] = ACTIONS(1912), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1916), - [anon_sym_R_DQUOTE] = ACTIONS(1918), - [anon_sym_LR_DQUOTE] = ACTIONS(1918), - [anon_sym_uR_DQUOTE] = ACTIONS(1918), - [anon_sym_UR_DQUOTE] = ACTIONS(1918), - [anon_sym_u8R_DQUOTE] = ACTIONS(1918), - [anon_sym_co_await] = ACTIONS(1920), - [anon_sym_new] = ACTIONS(1922), - [anon_sym_requires] = ACTIONS(1924), - [sym_this] = ACTIONS(1910), - }, - [1099] = { - [sym_expression] = STATE(3553), - [sym__string] = STATE(3714), - [sym_conditional_expression] = STATE(3908), - [sym_assignment_expression] = STATE(3908), - [sym_pointer_expression] = STATE(3506), - [sym_unary_expression] = STATE(3908), - [sym_binary_expression] = STATE(3908), - [sym_update_expression] = STATE(3908), - [sym_cast_expression] = STATE(3908), - [sym_sizeof_expression] = STATE(3908), - [sym_alignof_expression] = STATE(3908), - [sym_offsetof_expression] = STATE(3908), - [sym_generic_expression] = STATE(3908), - [sym_subscript_expression] = STATE(3506), - [sym_call_expression] = STATE(3506), - [sym_gnu_asm_expression] = STATE(3908), - [sym_extension_expression] = STATE(3908), - [sym_field_expression] = STATE(3506), - [sym_compound_literal_expression] = STATE(3908), - [sym_parenthesized_expression] = STATE(3506), - [sym_char_literal] = STATE(3714), - [sym_concatenated_string] = STATE(3714), - [sym_string_literal] = STATE(2566), - [sym_null] = STATE(3908), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7868), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3908), - [sym_raw_string_literal] = STATE(2566), - [sym_co_await_expression] = STATE(3908), - [sym_new_expression] = STATE(3908), - [sym_delete_expression] = STATE(3908), - [sym_requires_clause] = STATE(3908), - [sym_requires_expression] = STATE(3908), - [sym_lambda_expression] = STATE(3908), - [sym_lambda_capture_specifier] = STATE(5415), - [sym_fold_expression] = STATE(3908), - [sym_parameter_pack_expansion] = STATE(3908), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3506), - [sym_qualified_type_identifier] = STATE(7868), - [sym_user_defined_literal] = STATE(3506), - [sym_identifier] = ACTIONS(2605), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4707), - [anon_sym_LPAREN2] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1870), - [anon_sym_TILDE] = ACTIONS(1870), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_PLUS] = ACTIONS(1872), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(2607), - [anon_sym_COLON_COLON] = ACTIONS(1880), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2611), - [anon_sym_not] = ACTIONS(1872), - [anon_sym_compl] = ACTIONS(1872), - [anon_sym_DASH_DASH] = ACTIONS(1892), - [anon_sym_PLUS_PLUS] = ACTIONS(1892), - [anon_sym_sizeof] = ACTIONS(1894), - [anon_sym___alignof__] = ACTIONS(1896), - [anon_sym___alignof] = ACTIONS(1896), - [anon_sym__alignof] = ACTIONS(1896), - [anon_sym_alignof] = ACTIONS(1896), - [anon_sym__Alignof] = ACTIONS(1896), - [anon_sym_offsetof] = ACTIONS(1898), - [anon_sym__Generic] = ACTIONS(1900), - [anon_sym_asm] = ACTIONS(1902), - [anon_sym___asm__] = ACTIONS(1902), - [anon_sym___asm] = ACTIONS(1902), - [sym_number_literal] = ACTIONS(1904), - [anon_sym_L_SQUOTE] = ACTIONS(1906), - [anon_sym_u_SQUOTE] = ACTIONS(1906), - [anon_sym_U_SQUOTE] = ACTIONS(1906), - [anon_sym_u8_SQUOTE] = ACTIONS(1906), - [anon_sym_SQUOTE] = ACTIONS(1906), - [anon_sym_L_DQUOTE] = ACTIONS(1908), - [anon_sym_u_DQUOTE] = ACTIONS(1908), - [anon_sym_U_DQUOTE] = ACTIONS(1908), - [anon_sym_u8_DQUOTE] = ACTIONS(1908), - [anon_sym_DQUOTE] = ACTIONS(1908), - [sym_true] = ACTIONS(1910), - [sym_false] = ACTIONS(1910), - [anon_sym_NULL] = ACTIONS(1912), - [anon_sym_nullptr] = ACTIONS(1912), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1916), - [anon_sym_R_DQUOTE] = ACTIONS(1918), - [anon_sym_LR_DQUOTE] = ACTIONS(1918), - [anon_sym_uR_DQUOTE] = ACTIONS(1918), - [anon_sym_UR_DQUOTE] = ACTIONS(1918), - [anon_sym_u8R_DQUOTE] = ACTIONS(1918), - [anon_sym_co_await] = ACTIONS(1920), - [anon_sym_new] = ACTIONS(1922), - [anon_sym_requires] = ACTIONS(1924), - [sym_this] = ACTIONS(1910), - }, - [1100] = { - [sym_expression] = STATE(3554), - [sym__string] = STATE(3714), - [sym_conditional_expression] = STATE(3908), - [sym_assignment_expression] = STATE(3908), - [sym_pointer_expression] = STATE(3506), - [sym_unary_expression] = STATE(3908), - [sym_binary_expression] = STATE(3908), - [sym_update_expression] = STATE(3908), - [sym_cast_expression] = STATE(3908), - [sym_sizeof_expression] = STATE(3908), - [sym_alignof_expression] = STATE(3908), - [sym_offsetof_expression] = STATE(3908), - [sym_generic_expression] = STATE(3908), - [sym_subscript_expression] = STATE(3506), - [sym_call_expression] = STATE(3506), - [sym_gnu_asm_expression] = STATE(3908), - [sym_extension_expression] = STATE(3908), - [sym_field_expression] = STATE(3506), - [sym_compound_literal_expression] = STATE(3908), - [sym_parenthesized_expression] = STATE(3506), - [sym_char_literal] = STATE(3714), - [sym_concatenated_string] = STATE(3714), - [sym_string_literal] = STATE(2566), - [sym_null] = STATE(3908), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7868), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3908), - [sym_raw_string_literal] = STATE(2566), - [sym_co_await_expression] = STATE(3908), - [sym_new_expression] = STATE(3908), - [sym_delete_expression] = STATE(3908), - [sym_requires_clause] = STATE(3908), - [sym_requires_expression] = STATE(3908), - [sym_lambda_expression] = STATE(3908), - [sym_lambda_capture_specifier] = STATE(5415), - [sym_fold_expression] = STATE(3908), - [sym_parameter_pack_expansion] = STATE(3908), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3506), - [sym_qualified_type_identifier] = STATE(7868), - [sym_user_defined_literal] = STATE(3506), - [sym_identifier] = ACTIONS(2605), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4710), - [anon_sym_LPAREN2] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1870), - [anon_sym_TILDE] = ACTIONS(1870), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_PLUS] = ACTIONS(1872), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(2607), - [anon_sym_COLON_COLON] = ACTIONS(1880), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2611), - [anon_sym_not] = ACTIONS(1872), - [anon_sym_compl] = ACTIONS(1872), - [anon_sym_DASH_DASH] = ACTIONS(1892), - [anon_sym_PLUS_PLUS] = ACTIONS(1892), - [anon_sym_sizeof] = ACTIONS(1894), - [anon_sym___alignof__] = ACTIONS(1896), - [anon_sym___alignof] = ACTIONS(1896), - [anon_sym__alignof] = ACTIONS(1896), - [anon_sym_alignof] = ACTIONS(1896), - [anon_sym__Alignof] = ACTIONS(1896), - [anon_sym_offsetof] = ACTIONS(1898), - [anon_sym__Generic] = ACTIONS(1900), - [anon_sym_asm] = ACTIONS(1902), - [anon_sym___asm__] = ACTIONS(1902), - [anon_sym___asm] = ACTIONS(1902), - [sym_number_literal] = ACTIONS(1904), - [anon_sym_L_SQUOTE] = ACTIONS(1906), - [anon_sym_u_SQUOTE] = ACTIONS(1906), - [anon_sym_U_SQUOTE] = ACTIONS(1906), - [anon_sym_u8_SQUOTE] = ACTIONS(1906), - [anon_sym_SQUOTE] = ACTIONS(1906), - [anon_sym_L_DQUOTE] = ACTIONS(1908), - [anon_sym_u_DQUOTE] = ACTIONS(1908), - [anon_sym_U_DQUOTE] = ACTIONS(1908), - [anon_sym_u8_DQUOTE] = ACTIONS(1908), - [anon_sym_DQUOTE] = ACTIONS(1908), - [sym_true] = ACTIONS(1910), - [sym_false] = ACTIONS(1910), - [anon_sym_NULL] = ACTIONS(1912), - [anon_sym_nullptr] = ACTIONS(1912), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1916), - [anon_sym_R_DQUOTE] = ACTIONS(1918), - [anon_sym_LR_DQUOTE] = ACTIONS(1918), - [anon_sym_uR_DQUOTE] = ACTIONS(1918), - [anon_sym_UR_DQUOTE] = ACTIONS(1918), - [anon_sym_u8R_DQUOTE] = ACTIONS(1918), - [anon_sym_co_await] = ACTIONS(1920), - [anon_sym_new] = ACTIONS(1922), - [anon_sym_requires] = ACTIONS(1924), - [sym_this] = ACTIONS(1910), - }, - [1101] = { - [sym_expression] = STATE(3556), - [sym__string] = STATE(3714), - [sym_conditional_expression] = STATE(3908), - [sym_assignment_expression] = STATE(3908), - [sym_pointer_expression] = STATE(3506), - [sym_unary_expression] = STATE(3908), - [sym_binary_expression] = STATE(3908), - [sym_update_expression] = STATE(3908), - [sym_cast_expression] = STATE(3908), - [sym_sizeof_expression] = STATE(3908), - [sym_alignof_expression] = STATE(3908), - [sym_offsetof_expression] = STATE(3908), - [sym_generic_expression] = STATE(3908), - [sym_subscript_expression] = STATE(3506), - [sym_call_expression] = STATE(3506), - [sym_gnu_asm_expression] = STATE(3908), - [sym_extension_expression] = STATE(3908), - [sym_field_expression] = STATE(3506), - [sym_compound_literal_expression] = STATE(3908), - [sym_parenthesized_expression] = STATE(3506), - [sym_char_literal] = STATE(3714), - [sym_concatenated_string] = STATE(3714), - [sym_string_literal] = STATE(2566), - [sym_null] = STATE(3908), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7868), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3908), - [sym_raw_string_literal] = STATE(2566), - [sym_co_await_expression] = STATE(3908), - [sym_new_expression] = STATE(3908), - [sym_delete_expression] = STATE(3908), - [sym_requires_clause] = STATE(3908), - [sym_requires_expression] = STATE(3908), - [sym_lambda_expression] = STATE(3908), - [sym_lambda_capture_specifier] = STATE(5415), - [sym_fold_expression] = STATE(3908), - [sym_parameter_pack_expansion] = STATE(3908), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3506), - [sym_qualified_type_identifier] = STATE(7868), - [sym_user_defined_literal] = STATE(3506), - [sym_identifier] = ACTIONS(2605), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4713), - [anon_sym_LPAREN2] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1870), - [anon_sym_TILDE] = ACTIONS(1870), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_PLUS] = ACTIONS(1872), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(2607), - [anon_sym_COLON_COLON] = ACTIONS(1880), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2611), - [anon_sym_not] = ACTIONS(1872), - [anon_sym_compl] = ACTIONS(1872), - [anon_sym_DASH_DASH] = ACTIONS(1892), - [anon_sym_PLUS_PLUS] = ACTIONS(1892), - [anon_sym_sizeof] = ACTIONS(1894), - [anon_sym___alignof__] = ACTIONS(1896), - [anon_sym___alignof] = ACTIONS(1896), - [anon_sym__alignof] = ACTIONS(1896), - [anon_sym_alignof] = ACTIONS(1896), - [anon_sym__Alignof] = ACTIONS(1896), - [anon_sym_offsetof] = ACTIONS(1898), - [anon_sym__Generic] = ACTIONS(1900), - [anon_sym_asm] = ACTIONS(1902), - [anon_sym___asm__] = ACTIONS(1902), - [anon_sym___asm] = ACTIONS(1902), - [sym_number_literal] = ACTIONS(1904), - [anon_sym_L_SQUOTE] = ACTIONS(1906), - [anon_sym_u_SQUOTE] = ACTIONS(1906), - [anon_sym_U_SQUOTE] = ACTIONS(1906), - [anon_sym_u8_SQUOTE] = ACTIONS(1906), - [anon_sym_SQUOTE] = ACTIONS(1906), - [anon_sym_L_DQUOTE] = ACTIONS(1908), - [anon_sym_u_DQUOTE] = ACTIONS(1908), - [anon_sym_U_DQUOTE] = ACTIONS(1908), - [anon_sym_u8_DQUOTE] = ACTIONS(1908), - [anon_sym_DQUOTE] = ACTIONS(1908), - [sym_true] = ACTIONS(1910), - [sym_false] = ACTIONS(1910), - [anon_sym_NULL] = ACTIONS(1912), - [anon_sym_nullptr] = ACTIONS(1912), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1916), - [anon_sym_R_DQUOTE] = ACTIONS(1918), - [anon_sym_LR_DQUOTE] = ACTIONS(1918), - [anon_sym_uR_DQUOTE] = ACTIONS(1918), - [anon_sym_UR_DQUOTE] = ACTIONS(1918), - [anon_sym_u8R_DQUOTE] = ACTIONS(1918), - [anon_sym_co_await] = ACTIONS(1920), - [anon_sym_new] = ACTIONS(1922), - [anon_sym_requires] = ACTIONS(1924), - [sym_this] = ACTIONS(1910), - }, - [1102] = { - [sym_expression] = STATE(3562), - [sym__string] = STATE(3714), - [sym_conditional_expression] = STATE(3908), - [sym_assignment_expression] = STATE(3908), - [sym_pointer_expression] = STATE(3506), - [sym_unary_expression] = STATE(3908), - [sym_binary_expression] = STATE(3908), - [sym_update_expression] = STATE(3908), - [sym_cast_expression] = STATE(3908), - [sym_sizeof_expression] = STATE(3908), - [sym_alignof_expression] = STATE(3908), - [sym_offsetof_expression] = STATE(3908), - [sym_generic_expression] = STATE(3908), - [sym_subscript_expression] = STATE(3506), - [sym_call_expression] = STATE(3506), - [sym_gnu_asm_expression] = STATE(3908), - [sym_extension_expression] = STATE(3908), - [sym_field_expression] = STATE(3506), - [sym_compound_literal_expression] = STATE(3908), - [sym_parenthesized_expression] = STATE(3506), - [sym_char_literal] = STATE(3714), - [sym_concatenated_string] = STATE(3714), - [sym_string_literal] = STATE(2566), - [sym_null] = STATE(3908), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7868), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3908), - [sym_raw_string_literal] = STATE(2566), - [sym_co_await_expression] = STATE(3908), - [sym_new_expression] = STATE(3908), - [sym_delete_expression] = STATE(3908), - [sym_requires_clause] = STATE(3908), - [sym_requires_expression] = STATE(3908), - [sym_lambda_expression] = STATE(3908), - [sym_lambda_capture_specifier] = STATE(5415), - [sym_fold_expression] = STATE(3908), - [sym_parameter_pack_expansion] = STATE(3908), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3506), - [sym_qualified_type_identifier] = STATE(7868), - [sym_user_defined_literal] = STATE(3506), - [sym_identifier] = ACTIONS(2605), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4716), - [anon_sym_LPAREN2] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1870), - [anon_sym_TILDE] = ACTIONS(1870), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_PLUS] = ACTIONS(1872), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(2607), - [anon_sym_COLON_COLON] = ACTIONS(1880), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2611), - [anon_sym_not] = ACTIONS(1872), - [anon_sym_compl] = ACTIONS(1872), - [anon_sym_DASH_DASH] = ACTIONS(1892), - [anon_sym_PLUS_PLUS] = ACTIONS(1892), - [anon_sym_sizeof] = ACTIONS(1894), - [anon_sym___alignof__] = ACTIONS(1896), - [anon_sym___alignof] = ACTIONS(1896), - [anon_sym__alignof] = ACTIONS(1896), - [anon_sym_alignof] = ACTIONS(1896), - [anon_sym__Alignof] = ACTIONS(1896), - [anon_sym_offsetof] = ACTIONS(1898), - [anon_sym__Generic] = ACTIONS(1900), - [anon_sym_asm] = ACTIONS(1902), - [anon_sym___asm__] = ACTIONS(1902), - [anon_sym___asm] = ACTIONS(1902), - [sym_number_literal] = ACTIONS(1904), - [anon_sym_L_SQUOTE] = ACTIONS(1906), - [anon_sym_u_SQUOTE] = ACTIONS(1906), - [anon_sym_U_SQUOTE] = ACTIONS(1906), - [anon_sym_u8_SQUOTE] = ACTIONS(1906), - [anon_sym_SQUOTE] = ACTIONS(1906), - [anon_sym_L_DQUOTE] = ACTIONS(1908), - [anon_sym_u_DQUOTE] = ACTIONS(1908), - [anon_sym_U_DQUOTE] = ACTIONS(1908), - [anon_sym_u8_DQUOTE] = ACTIONS(1908), - [anon_sym_DQUOTE] = ACTIONS(1908), - [sym_true] = ACTIONS(1910), - [sym_false] = ACTIONS(1910), - [anon_sym_NULL] = ACTIONS(1912), - [anon_sym_nullptr] = ACTIONS(1912), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1916), - [anon_sym_R_DQUOTE] = ACTIONS(1918), - [anon_sym_LR_DQUOTE] = ACTIONS(1918), - [anon_sym_uR_DQUOTE] = ACTIONS(1918), - [anon_sym_UR_DQUOTE] = ACTIONS(1918), - [anon_sym_u8R_DQUOTE] = ACTIONS(1918), - [anon_sym_co_await] = ACTIONS(1920), - [anon_sym_new] = ACTIONS(1922), - [anon_sym_requires] = ACTIONS(1924), - [sym_this] = ACTIONS(1910), - }, - [1103] = { - [sym_expression] = STATE(3563), - [sym__string] = STATE(3714), - [sym_conditional_expression] = STATE(3908), - [sym_assignment_expression] = STATE(3908), - [sym_pointer_expression] = STATE(3506), - [sym_unary_expression] = STATE(3908), - [sym_binary_expression] = STATE(3908), - [sym_update_expression] = STATE(3908), - [sym_cast_expression] = STATE(3908), - [sym_sizeof_expression] = STATE(3908), - [sym_alignof_expression] = STATE(3908), - [sym_offsetof_expression] = STATE(3908), - [sym_generic_expression] = STATE(3908), - [sym_subscript_expression] = STATE(3506), - [sym_call_expression] = STATE(3506), - [sym_gnu_asm_expression] = STATE(3908), - [sym_extension_expression] = STATE(3908), - [sym_field_expression] = STATE(3506), - [sym_compound_literal_expression] = STATE(3908), - [sym_parenthesized_expression] = STATE(3506), - [sym_char_literal] = STATE(3714), - [sym_concatenated_string] = STATE(3714), - [sym_string_literal] = STATE(2566), - [sym_null] = STATE(3908), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7868), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3908), - [sym_raw_string_literal] = STATE(2566), - [sym_co_await_expression] = STATE(3908), - [sym_new_expression] = STATE(3908), - [sym_delete_expression] = STATE(3908), - [sym_requires_clause] = STATE(3908), - [sym_requires_expression] = STATE(3908), - [sym_lambda_expression] = STATE(3908), - [sym_lambda_capture_specifier] = STATE(5415), - [sym_fold_expression] = STATE(3908), - [sym_parameter_pack_expansion] = STATE(3908), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3506), - [sym_qualified_type_identifier] = STATE(7868), - [sym_user_defined_literal] = STATE(3506), - [sym_identifier] = ACTIONS(2605), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4719), - [anon_sym_LPAREN2] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1870), - [anon_sym_TILDE] = ACTIONS(1870), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_PLUS] = ACTIONS(1872), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(2607), - [anon_sym_COLON_COLON] = ACTIONS(1880), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2611), - [anon_sym_not] = ACTIONS(1872), - [anon_sym_compl] = ACTIONS(1872), - [anon_sym_DASH_DASH] = ACTIONS(1892), - [anon_sym_PLUS_PLUS] = ACTIONS(1892), - [anon_sym_sizeof] = ACTIONS(1894), - [anon_sym___alignof__] = ACTIONS(1896), - [anon_sym___alignof] = ACTIONS(1896), - [anon_sym__alignof] = ACTIONS(1896), - [anon_sym_alignof] = ACTIONS(1896), - [anon_sym__Alignof] = ACTIONS(1896), - [anon_sym_offsetof] = ACTIONS(1898), - [anon_sym__Generic] = ACTIONS(1900), - [anon_sym_asm] = ACTIONS(1902), - [anon_sym___asm__] = ACTIONS(1902), - [anon_sym___asm] = ACTIONS(1902), - [sym_number_literal] = ACTIONS(1904), - [anon_sym_L_SQUOTE] = ACTIONS(1906), - [anon_sym_u_SQUOTE] = ACTIONS(1906), - [anon_sym_U_SQUOTE] = ACTIONS(1906), - [anon_sym_u8_SQUOTE] = ACTIONS(1906), - [anon_sym_SQUOTE] = ACTIONS(1906), - [anon_sym_L_DQUOTE] = ACTIONS(1908), - [anon_sym_u_DQUOTE] = ACTIONS(1908), - [anon_sym_U_DQUOTE] = ACTIONS(1908), - [anon_sym_u8_DQUOTE] = ACTIONS(1908), - [anon_sym_DQUOTE] = ACTIONS(1908), - [sym_true] = ACTIONS(1910), - [sym_false] = ACTIONS(1910), - [anon_sym_NULL] = ACTIONS(1912), - [anon_sym_nullptr] = ACTIONS(1912), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1916), - [anon_sym_R_DQUOTE] = ACTIONS(1918), - [anon_sym_LR_DQUOTE] = ACTIONS(1918), - [anon_sym_uR_DQUOTE] = ACTIONS(1918), - [anon_sym_UR_DQUOTE] = ACTIONS(1918), - [anon_sym_u8R_DQUOTE] = ACTIONS(1918), - [anon_sym_co_await] = ACTIONS(1920), - [anon_sym_new] = ACTIONS(1922), - [anon_sym_requires] = ACTIONS(1924), - [sym_this] = ACTIONS(1910), - }, - [1104] = { - [sym_expression] = STATE(3570), - [sym__string] = STATE(3714), - [sym_conditional_expression] = STATE(3908), - [sym_assignment_expression] = STATE(3908), - [sym_pointer_expression] = STATE(3506), - [sym_unary_expression] = STATE(3908), - [sym_binary_expression] = STATE(3908), - [sym_update_expression] = STATE(3908), - [sym_cast_expression] = STATE(3908), - [sym_sizeof_expression] = STATE(3908), - [sym_alignof_expression] = STATE(3908), - [sym_offsetof_expression] = STATE(3908), - [sym_generic_expression] = STATE(3908), - [sym_subscript_expression] = STATE(3506), - [sym_call_expression] = STATE(3506), - [sym_gnu_asm_expression] = STATE(3908), - [sym_extension_expression] = STATE(3908), - [sym_field_expression] = STATE(3506), - [sym_compound_literal_expression] = STATE(3908), - [sym_parenthesized_expression] = STATE(3506), - [sym_char_literal] = STATE(3714), - [sym_concatenated_string] = STATE(3714), - [sym_string_literal] = STATE(2566), - [sym_null] = STATE(3908), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7868), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3908), - [sym_raw_string_literal] = STATE(2566), - [sym_co_await_expression] = STATE(3908), - [sym_new_expression] = STATE(3908), - [sym_delete_expression] = STATE(3908), - [sym_requires_clause] = STATE(3908), - [sym_requires_expression] = STATE(3908), - [sym_lambda_expression] = STATE(3908), - [sym_lambda_capture_specifier] = STATE(5415), - [sym_fold_expression] = STATE(3908), - [sym_parameter_pack_expansion] = STATE(3908), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3506), - [sym_qualified_type_identifier] = STATE(7868), - [sym_user_defined_literal] = STATE(3506), - [sym_identifier] = ACTIONS(2605), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4722), - [anon_sym_LPAREN2] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1870), - [anon_sym_TILDE] = ACTIONS(1870), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_PLUS] = ACTIONS(1872), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(2607), - [anon_sym_COLON_COLON] = ACTIONS(1880), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2611), - [anon_sym_not] = ACTIONS(1872), - [anon_sym_compl] = ACTIONS(1872), - [anon_sym_DASH_DASH] = ACTIONS(1892), - [anon_sym_PLUS_PLUS] = ACTIONS(1892), - [anon_sym_sizeof] = ACTIONS(1894), - [anon_sym___alignof__] = ACTIONS(1896), - [anon_sym___alignof] = ACTIONS(1896), - [anon_sym__alignof] = ACTIONS(1896), - [anon_sym_alignof] = ACTIONS(1896), - [anon_sym__Alignof] = ACTIONS(1896), - [anon_sym_offsetof] = ACTIONS(1898), - [anon_sym__Generic] = ACTIONS(1900), - [anon_sym_asm] = ACTIONS(1902), - [anon_sym___asm__] = ACTIONS(1902), - [anon_sym___asm] = ACTIONS(1902), - [sym_number_literal] = ACTIONS(1904), - [anon_sym_L_SQUOTE] = ACTIONS(1906), - [anon_sym_u_SQUOTE] = ACTIONS(1906), - [anon_sym_U_SQUOTE] = ACTIONS(1906), - [anon_sym_u8_SQUOTE] = ACTIONS(1906), - [anon_sym_SQUOTE] = ACTIONS(1906), - [anon_sym_L_DQUOTE] = ACTIONS(1908), - [anon_sym_u_DQUOTE] = ACTIONS(1908), - [anon_sym_U_DQUOTE] = ACTIONS(1908), - [anon_sym_u8_DQUOTE] = ACTIONS(1908), - [anon_sym_DQUOTE] = ACTIONS(1908), - [sym_true] = ACTIONS(1910), - [sym_false] = ACTIONS(1910), - [anon_sym_NULL] = ACTIONS(1912), - [anon_sym_nullptr] = ACTIONS(1912), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1916), - [anon_sym_R_DQUOTE] = ACTIONS(1918), - [anon_sym_LR_DQUOTE] = ACTIONS(1918), - [anon_sym_uR_DQUOTE] = ACTIONS(1918), - [anon_sym_UR_DQUOTE] = ACTIONS(1918), - [anon_sym_u8R_DQUOTE] = ACTIONS(1918), - [anon_sym_co_await] = ACTIONS(1920), - [anon_sym_new] = ACTIONS(1922), - [anon_sym_requires] = ACTIONS(1924), - [sym_this] = ACTIONS(1910), - }, - [1105] = { - [sym_expression] = STATE(3570), - [sym__string] = STATE(3714), - [sym_conditional_expression] = STATE(3908), - [sym_assignment_expression] = STATE(3908), - [sym_pointer_expression] = STATE(3506), - [sym_unary_expression] = STATE(3908), - [sym_binary_expression] = STATE(3908), - [sym_update_expression] = STATE(3908), - [sym_cast_expression] = STATE(3908), - [sym_sizeof_expression] = STATE(3908), - [sym_alignof_expression] = STATE(3908), - [sym_offsetof_expression] = STATE(3908), - [sym_generic_expression] = STATE(3908), - [sym_subscript_expression] = STATE(3506), - [sym_call_expression] = STATE(3506), - [sym_gnu_asm_expression] = STATE(3908), - [sym_extension_expression] = STATE(3908), - [sym_field_expression] = STATE(3506), - [sym_compound_literal_expression] = STATE(3908), - [sym_parenthesized_expression] = STATE(3506), - [sym_char_literal] = STATE(3714), - [sym_concatenated_string] = STATE(3714), - [sym_string_literal] = STATE(2566), - [sym_null] = STATE(3908), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7868), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3908), - [sym_raw_string_literal] = STATE(2566), - [sym_co_await_expression] = STATE(3908), - [sym_new_expression] = STATE(3908), - [sym_delete_expression] = STATE(3908), - [sym_requires_clause] = STATE(3908), - [sym_requires_expression] = STATE(3908), - [sym_lambda_expression] = STATE(3908), - [sym_lambda_capture_specifier] = STATE(5415), - [sym_fold_expression] = STATE(3908), - [sym_parameter_pack_expansion] = STATE(3908), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3506), - [sym_qualified_type_identifier] = STATE(7868), - [sym_user_defined_literal] = STATE(3506), - [sym_identifier] = ACTIONS(2605), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4725), - [anon_sym_LPAREN2] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1870), - [anon_sym_TILDE] = ACTIONS(1870), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_PLUS] = ACTIONS(1872), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(2607), - [anon_sym_COLON_COLON] = ACTIONS(1880), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2611), - [anon_sym_not] = ACTIONS(1872), - [anon_sym_compl] = ACTIONS(1872), - [anon_sym_DASH_DASH] = ACTIONS(1892), - [anon_sym_PLUS_PLUS] = ACTIONS(1892), - [anon_sym_sizeof] = ACTIONS(1894), - [anon_sym___alignof__] = ACTIONS(1896), - [anon_sym___alignof] = ACTIONS(1896), - [anon_sym__alignof] = ACTIONS(1896), - [anon_sym_alignof] = ACTIONS(1896), - [anon_sym__Alignof] = ACTIONS(1896), - [anon_sym_offsetof] = ACTIONS(1898), - [anon_sym__Generic] = ACTIONS(1900), - [anon_sym_asm] = ACTIONS(1902), - [anon_sym___asm__] = ACTIONS(1902), - [anon_sym___asm] = ACTIONS(1902), - [sym_number_literal] = ACTIONS(1904), - [anon_sym_L_SQUOTE] = ACTIONS(1906), - [anon_sym_u_SQUOTE] = ACTIONS(1906), - [anon_sym_U_SQUOTE] = ACTIONS(1906), - [anon_sym_u8_SQUOTE] = ACTIONS(1906), - [anon_sym_SQUOTE] = ACTIONS(1906), - [anon_sym_L_DQUOTE] = ACTIONS(1908), - [anon_sym_u_DQUOTE] = ACTIONS(1908), - [anon_sym_U_DQUOTE] = ACTIONS(1908), - [anon_sym_u8_DQUOTE] = ACTIONS(1908), - [anon_sym_DQUOTE] = ACTIONS(1908), - [sym_true] = ACTIONS(1910), - [sym_false] = ACTIONS(1910), - [anon_sym_NULL] = ACTIONS(1912), - [anon_sym_nullptr] = ACTIONS(1912), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1916), - [anon_sym_R_DQUOTE] = ACTIONS(1918), - [anon_sym_LR_DQUOTE] = ACTIONS(1918), - [anon_sym_uR_DQUOTE] = ACTIONS(1918), - [anon_sym_UR_DQUOTE] = ACTIONS(1918), - [anon_sym_u8R_DQUOTE] = ACTIONS(1918), - [anon_sym_co_await] = ACTIONS(1920), - [anon_sym_new] = ACTIONS(1922), - [anon_sym_requires] = ACTIONS(1924), - [sym_this] = ACTIONS(1910), - }, - [1106] = { - [sym_expression] = STATE(3584), - [sym__string] = STATE(3714), - [sym_conditional_expression] = STATE(3908), - [sym_assignment_expression] = STATE(3908), - [sym_pointer_expression] = STATE(3506), - [sym_unary_expression] = STATE(3908), - [sym_binary_expression] = STATE(3908), - [sym_update_expression] = STATE(3908), - [sym_cast_expression] = STATE(3908), - [sym_sizeof_expression] = STATE(3908), - [sym_alignof_expression] = STATE(3908), - [sym_offsetof_expression] = STATE(3908), - [sym_generic_expression] = STATE(3908), - [sym_subscript_expression] = STATE(3506), - [sym_call_expression] = STATE(3506), - [sym_gnu_asm_expression] = STATE(3908), - [sym_extension_expression] = STATE(3908), - [sym_field_expression] = STATE(3506), - [sym_compound_literal_expression] = STATE(3908), - [sym_parenthesized_expression] = STATE(3506), - [sym_char_literal] = STATE(3714), - [sym_concatenated_string] = STATE(3714), - [sym_string_literal] = STATE(2566), - [sym_null] = STATE(3908), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7868), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3908), - [sym_raw_string_literal] = STATE(2566), - [sym_co_await_expression] = STATE(3908), - [sym_new_expression] = STATE(3908), - [sym_delete_expression] = STATE(3908), - [sym_requires_clause] = STATE(3908), - [sym_requires_expression] = STATE(3908), - [sym_lambda_expression] = STATE(3908), - [sym_lambda_capture_specifier] = STATE(5415), - [sym_fold_expression] = STATE(3908), - [sym_parameter_pack_expansion] = STATE(3908), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3506), - [sym_qualified_type_identifier] = STATE(7868), - [sym_user_defined_literal] = STATE(3506), - [sym_identifier] = ACTIONS(2605), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4728), - [anon_sym_LPAREN2] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1870), - [anon_sym_TILDE] = ACTIONS(1870), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_PLUS] = ACTIONS(1872), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(2607), - [anon_sym_COLON_COLON] = ACTIONS(1880), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2611), - [anon_sym_not] = ACTIONS(1872), - [anon_sym_compl] = ACTIONS(1872), - [anon_sym_DASH_DASH] = ACTIONS(1892), - [anon_sym_PLUS_PLUS] = ACTIONS(1892), - [anon_sym_sizeof] = ACTIONS(1894), - [anon_sym___alignof__] = ACTIONS(1896), - [anon_sym___alignof] = ACTIONS(1896), - [anon_sym__alignof] = ACTIONS(1896), - [anon_sym_alignof] = ACTIONS(1896), - [anon_sym__Alignof] = ACTIONS(1896), - [anon_sym_offsetof] = ACTIONS(1898), - [anon_sym__Generic] = ACTIONS(1900), - [anon_sym_asm] = ACTIONS(1902), - [anon_sym___asm__] = ACTIONS(1902), - [anon_sym___asm] = ACTIONS(1902), - [sym_number_literal] = ACTIONS(1904), - [anon_sym_L_SQUOTE] = ACTIONS(1906), - [anon_sym_u_SQUOTE] = ACTIONS(1906), - [anon_sym_U_SQUOTE] = ACTIONS(1906), - [anon_sym_u8_SQUOTE] = ACTIONS(1906), - [anon_sym_SQUOTE] = ACTIONS(1906), - [anon_sym_L_DQUOTE] = ACTIONS(1908), - [anon_sym_u_DQUOTE] = ACTIONS(1908), - [anon_sym_U_DQUOTE] = ACTIONS(1908), - [anon_sym_u8_DQUOTE] = ACTIONS(1908), - [anon_sym_DQUOTE] = ACTIONS(1908), - [sym_true] = ACTIONS(1910), - [sym_false] = ACTIONS(1910), - [anon_sym_NULL] = ACTIONS(1912), - [anon_sym_nullptr] = ACTIONS(1912), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1916), - [anon_sym_R_DQUOTE] = ACTIONS(1918), - [anon_sym_LR_DQUOTE] = ACTIONS(1918), - [anon_sym_uR_DQUOTE] = ACTIONS(1918), - [anon_sym_UR_DQUOTE] = ACTIONS(1918), - [anon_sym_u8R_DQUOTE] = ACTIONS(1918), - [anon_sym_co_await] = ACTIONS(1920), - [anon_sym_new] = ACTIONS(1922), - [anon_sym_requires] = ACTIONS(1924), - [sym_this] = ACTIONS(1910), - }, - [1107] = { - [sym_expression] = STATE(3584), - [sym__string] = STATE(3714), - [sym_conditional_expression] = STATE(3908), - [sym_assignment_expression] = STATE(3908), - [sym_pointer_expression] = STATE(3506), - [sym_unary_expression] = STATE(3908), - [sym_binary_expression] = STATE(3908), - [sym_update_expression] = STATE(3908), - [sym_cast_expression] = STATE(3908), - [sym_sizeof_expression] = STATE(3908), - [sym_alignof_expression] = STATE(3908), - [sym_offsetof_expression] = STATE(3908), - [sym_generic_expression] = STATE(3908), - [sym_subscript_expression] = STATE(3506), - [sym_call_expression] = STATE(3506), - [sym_gnu_asm_expression] = STATE(3908), - [sym_extension_expression] = STATE(3908), - [sym_field_expression] = STATE(3506), - [sym_compound_literal_expression] = STATE(3908), - [sym_parenthesized_expression] = STATE(3506), - [sym_char_literal] = STATE(3714), - [sym_concatenated_string] = STATE(3714), - [sym_string_literal] = STATE(2566), - [sym_null] = STATE(3908), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7868), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3908), - [sym_raw_string_literal] = STATE(2566), - [sym_co_await_expression] = STATE(3908), - [sym_new_expression] = STATE(3908), - [sym_delete_expression] = STATE(3908), - [sym_requires_clause] = STATE(3908), - [sym_requires_expression] = STATE(3908), - [sym_lambda_expression] = STATE(3908), - [sym_lambda_capture_specifier] = STATE(5415), - [sym_fold_expression] = STATE(3908), - [sym_parameter_pack_expansion] = STATE(3908), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3506), - [sym_qualified_type_identifier] = STATE(7868), - [sym_user_defined_literal] = STATE(3506), - [sym_identifier] = ACTIONS(2605), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4731), - [anon_sym_LPAREN2] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1870), - [anon_sym_TILDE] = ACTIONS(1870), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_PLUS] = ACTIONS(1872), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(2607), - [anon_sym_COLON_COLON] = ACTIONS(1880), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2611), - [anon_sym_not] = ACTIONS(1872), - [anon_sym_compl] = ACTIONS(1872), - [anon_sym_DASH_DASH] = ACTIONS(1892), - [anon_sym_PLUS_PLUS] = ACTIONS(1892), - [anon_sym_sizeof] = ACTIONS(1894), - [anon_sym___alignof__] = ACTIONS(1896), - [anon_sym___alignof] = ACTIONS(1896), - [anon_sym__alignof] = ACTIONS(1896), - [anon_sym_alignof] = ACTIONS(1896), - [anon_sym__Alignof] = ACTIONS(1896), - [anon_sym_offsetof] = ACTIONS(1898), - [anon_sym__Generic] = ACTIONS(1900), - [anon_sym_asm] = ACTIONS(1902), - [anon_sym___asm__] = ACTIONS(1902), - [anon_sym___asm] = ACTIONS(1902), - [sym_number_literal] = ACTIONS(1904), - [anon_sym_L_SQUOTE] = ACTIONS(1906), - [anon_sym_u_SQUOTE] = ACTIONS(1906), - [anon_sym_U_SQUOTE] = ACTIONS(1906), - [anon_sym_u8_SQUOTE] = ACTIONS(1906), - [anon_sym_SQUOTE] = ACTIONS(1906), - [anon_sym_L_DQUOTE] = ACTIONS(1908), - [anon_sym_u_DQUOTE] = ACTIONS(1908), - [anon_sym_U_DQUOTE] = ACTIONS(1908), - [anon_sym_u8_DQUOTE] = ACTIONS(1908), - [anon_sym_DQUOTE] = ACTIONS(1908), - [sym_true] = ACTIONS(1910), - [sym_false] = ACTIONS(1910), - [anon_sym_NULL] = ACTIONS(1912), - [anon_sym_nullptr] = ACTIONS(1912), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1916), - [anon_sym_R_DQUOTE] = ACTIONS(1918), - [anon_sym_LR_DQUOTE] = ACTIONS(1918), - [anon_sym_uR_DQUOTE] = ACTIONS(1918), - [anon_sym_UR_DQUOTE] = ACTIONS(1918), - [anon_sym_u8R_DQUOTE] = ACTIONS(1918), - [anon_sym_co_await] = ACTIONS(1920), - [anon_sym_new] = ACTIONS(1922), - [anon_sym_requires] = ACTIONS(1924), - [sym_this] = ACTIONS(1910), - }, - [1108] = { - [sym_expression] = STATE(3584), - [sym__string] = STATE(3714), - [sym_conditional_expression] = STATE(3908), - [sym_assignment_expression] = STATE(3908), - [sym_pointer_expression] = STATE(3506), - [sym_unary_expression] = STATE(3908), - [sym_binary_expression] = STATE(3908), - [sym_update_expression] = STATE(3908), - [sym_cast_expression] = STATE(3908), - [sym_sizeof_expression] = STATE(3908), - [sym_alignof_expression] = STATE(3908), - [sym_offsetof_expression] = STATE(3908), - [sym_generic_expression] = STATE(3908), - [sym_subscript_expression] = STATE(3506), - [sym_call_expression] = STATE(3506), - [sym_gnu_asm_expression] = STATE(3908), - [sym_extension_expression] = STATE(3908), - [sym_field_expression] = STATE(3506), - [sym_compound_literal_expression] = STATE(3908), - [sym_parenthesized_expression] = STATE(3506), - [sym_char_literal] = STATE(3714), - [sym_concatenated_string] = STATE(3714), - [sym_string_literal] = STATE(2566), - [sym_null] = STATE(3908), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7868), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3908), - [sym_raw_string_literal] = STATE(2566), - [sym_co_await_expression] = STATE(3908), - [sym_new_expression] = STATE(3908), - [sym_delete_expression] = STATE(3908), - [sym_requires_clause] = STATE(3908), - [sym_requires_expression] = STATE(3908), - [sym_lambda_expression] = STATE(3908), - [sym_lambda_capture_specifier] = STATE(5415), - [sym_fold_expression] = STATE(3908), - [sym_parameter_pack_expansion] = STATE(3908), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3506), - [sym_qualified_type_identifier] = STATE(7868), - [sym_user_defined_literal] = STATE(3506), - [sym_identifier] = ACTIONS(2605), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4734), - [anon_sym_LPAREN2] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1870), - [anon_sym_TILDE] = ACTIONS(1870), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_PLUS] = ACTIONS(1872), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(2607), - [anon_sym_COLON_COLON] = ACTIONS(1880), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2611), - [anon_sym_not] = ACTIONS(1872), - [anon_sym_compl] = ACTIONS(1872), - [anon_sym_DASH_DASH] = ACTIONS(1892), - [anon_sym_PLUS_PLUS] = ACTIONS(1892), - [anon_sym_sizeof] = ACTIONS(1894), - [anon_sym___alignof__] = ACTIONS(1896), - [anon_sym___alignof] = ACTIONS(1896), - [anon_sym__alignof] = ACTIONS(1896), - [anon_sym_alignof] = ACTIONS(1896), - [anon_sym__Alignof] = ACTIONS(1896), - [anon_sym_offsetof] = ACTIONS(1898), - [anon_sym__Generic] = ACTIONS(1900), - [anon_sym_asm] = ACTIONS(1902), - [anon_sym___asm__] = ACTIONS(1902), - [anon_sym___asm] = ACTIONS(1902), - [sym_number_literal] = ACTIONS(1904), - [anon_sym_L_SQUOTE] = ACTIONS(1906), - [anon_sym_u_SQUOTE] = ACTIONS(1906), - [anon_sym_U_SQUOTE] = ACTIONS(1906), - [anon_sym_u8_SQUOTE] = ACTIONS(1906), - [anon_sym_SQUOTE] = ACTIONS(1906), - [anon_sym_L_DQUOTE] = ACTIONS(1908), - [anon_sym_u_DQUOTE] = ACTIONS(1908), - [anon_sym_U_DQUOTE] = ACTIONS(1908), - [anon_sym_u8_DQUOTE] = ACTIONS(1908), - [anon_sym_DQUOTE] = ACTIONS(1908), - [sym_true] = ACTIONS(1910), - [sym_false] = ACTIONS(1910), - [anon_sym_NULL] = ACTIONS(1912), - [anon_sym_nullptr] = ACTIONS(1912), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1916), - [anon_sym_R_DQUOTE] = ACTIONS(1918), - [anon_sym_LR_DQUOTE] = ACTIONS(1918), - [anon_sym_uR_DQUOTE] = ACTIONS(1918), - [anon_sym_UR_DQUOTE] = ACTIONS(1918), - [anon_sym_u8R_DQUOTE] = ACTIONS(1918), - [anon_sym_co_await] = ACTIONS(1920), - [anon_sym_new] = ACTIONS(1922), - [anon_sym_requires] = ACTIONS(1924), - [sym_this] = ACTIONS(1910), - }, - [1109] = { - [sym_expression] = STATE(3584), - [sym__string] = STATE(3714), - [sym_conditional_expression] = STATE(3908), - [sym_assignment_expression] = STATE(3908), - [sym_pointer_expression] = STATE(3506), - [sym_unary_expression] = STATE(3908), - [sym_binary_expression] = STATE(3908), - [sym_update_expression] = STATE(3908), - [sym_cast_expression] = STATE(3908), - [sym_sizeof_expression] = STATE(3908), - [sym_alignof_expression] = STATE(3908), - [sym_offsetof_expression] = STATE(3908), - [sym_generic_expression] = STATE(3908), - [sym_subscript_expression] = STATE(3506), - [sym_call_expression] = STATE(3506), - [sym_gnu_asm_expression] = STATE(3908), - [sym_extension_expression] = STATE(3908), - [sym_field_expression] = STATE(3506), - [sym_compound_literal_expression] = STATE(3908), - [sym_parenthesized_expression] = STATE(3506), - [sym_char_literal] = STATE(3714), - [sym_concatenated_string] = STATE(3714), - [sym_string_literal] = STATE(2566), - [sym_null] = STATE(3908), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7868), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3908), - [sym_raw_string_literal] = STATE(2566), - [sym_co_await_expression] = STATE(3908), - [sym_new_expression] = STATE(3908), - [sym_delete_expression] = STATE(3908), - [sym_requires_clause] = STATE(3908), - [sym_requires_expression] = STATE(3908), - [sym_lambda_expression] = STATE(3908), - [sym_lambda_capture_specifier] = STATE(5415), - [sym_fold_expression] = STATE(3908), - [sym_parameter_pack_expansion] = STATE(3908), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3506), - [sym_qualified_type_identifier] = STATE(7868), - [sym_user_defined_literal] = STATE(3506), - [sym_identifier] = ACTIONS(2605), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4737), - [anon_sym_LPAREN2] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1870), - [anon_sym_TILDE] = ACTIONS(1870), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_PLUS] = ACTIONS(1872), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(2607), - [anon_sym_COLON_COLON] = ACTIONS(1880), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2611), - [anon_sym_not] = ACTIONS(1872), - [anon_sym_compl] = ACTIONS(1872), - [anon_sym_DASH_DASH] = ACTIONS(1892), - [anon_sym_PLUS_PLUS] = ACTIONS(1892), - [anon_sym_sizeof] = ACTIONS(1894), - [anon_sym___alignof__] = ACTIONS(1896), - [anon_sym___alignof] = ACTIONS(1896), - [anon_sym__alignof] = ACTIONS(1896), - [anon_sym_alignof] = ACTIONS(1896), - [anon_sym__Alignof] = ACTIONS(1896), - [anon_sym_offsetof] = ACTIONS(1898), - [anon_sym__Generic] = ACTIONS(1900), - [anon_sym_asm] = ACTIONS(1902), - [anon_sym___asm__] = ACTIONS(1902), - [anon_sym___asm] = ACTIONS(1902), - [sym_number_literal] = ACTIONS(1904), - [anon_sym_L_SQUOTE] = ACTIONS(1906), - [anon_sym_u_SQUOTE] = ACTIONS(1906), - [anon_sym_U_SQUOTE] = ACTIONS(1906), - [anon_sym_u8_SQUOTE] = ACTIONS(1906), - [anon_sym_SQUOTE] = ACTIONS(1906), - [anon_sym_L_DQUOTE] = ACTIONS(1908), - [anon_sym_u_DQUOTE] = ACTIONS(1908), - [anon_sym_U_DQUOTE] = ACTIONS(1908), - [anon_sym_u8_DQUOTE] = ACTIONS(1908), - [anon_sym_DQUOTE] = ACTIONS(1908), - [sym_true] = ACTIONS(1910), - [sym_false] = ACTIONS(1910), - [anon_sym_NULL] = ACTIONS(1912), - [anon_sym_nullptr] = ACTIONS(1912), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1916), - [anon_sym_R_DQUOTE] = ACTIONS(1918), - [anon_sym_LR_DQUOTE] = ACTIONS(1918), - [anon_sym_uR_DQUOTE] = ACTIONS(1918), - [anon_sym_UR_DQUOTE] = ACTIONS(1918), - [anon_sym_u8R_DQUOTE] = ACTIONS(1918), - [anon_sym_co_await] = ACTIONS(1920), - [anon_sym_new] = ACTIONS(1922), - [anon_sym_requires] = ACTIONS(1924), - [sym_this] = ACTIONS(1910), - }, - [1110] = { - [sym_expression] = STATE(3595), - [sym__string] = STATE(3714), - [sym_conditional_expression] = STATE(3908), - [sym_assignment_expression] = STATE(3908), - [sym_pointer_expression] = STATE(3506), - [sym_unary_expression] = STATE(3908), - [sym_binary_expression] = STATE(3908), - [sym_update_expression] = STATE(3908), - [sym_cast_expression] = STATE(3908), - [sym_sizeof_expression] = STATE(3908), - [sym_alignof_expression] = STATE(3908), - [sym_offsetof_expression] = STATE(3908), - [sym_generic_expression] = STATE(3908), - [sym_subscript_expression] = STATE(3506), - [sym_call_expression] = STATE(3506), - [sym_gnu_asm_expression] = STATE(3908), - [sym_extension_expression] = STATE(3908), - [sym_field_expression] = STATE(3506), - [sym_compound_literal_expression] = STATE(3908), - [sym_parenthesized_expression] = STATE(3506), - [sym_char_literal] = STATE(3714), - [sym_concatenated_string] = STATE(3714), - [sym_string_literal] = STATE(2566), - [sym_null] = STATE(3908), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7868), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3908), - [sym_raw_string_literal] = STATE(2566), - [sym_co_await_expression] = STATE(3908), - [sym_new_expression] = STATE(3908), - [sym_delete_expression] = STATE(3908), - [sym_requires_clause] = STATE(3908), - [sym_requires_expression] = STATE(3908), - [sym_lambda_expression] = STATE(3908), - [sym_lambda_capture_specifier] = STATE(5415), - [sym_fold_expression] = STATE(3908), - [sym_parameter_pack_expansion] = STATE(3908), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3506), - [sym_qualified_type_identifier] = STATE(7868), - [sym_user_defined_literal] = STATE(3506), - [sym_identifier] = ACTIONS(2605), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4740), - [anon_sym_LPAREN2] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1870), - [anon_sym_TILDE] = ACTIONS(1870), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_PLUS] = ACTIONS(1872), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(2607), - [anon_sym_COLON_COLON] = ACTIONS(1880), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2611), - [anon_sym_not] = ACTIONS(1872), - [anon_sym_compl] = ACTIONS(1872), - [anon_sym_DASH_DASH] = ACTIONS(1892), - [anon_sym_PLUS_PLUS] = ACTIONS(1892), - [anon_sym_sizeof] = ACTIONS(1894), - [anon_sym___alignof__] = ACTIONS(1896), - [anon_sym___alignof] = ACTIONS(1896), - [anon_sym__alignof] = ACTIONS(1896), - [anon_sym_alignof] = ACTIONS(1896), - [anon_sym__Alignof] = ACTIONS(1896), - [anon_sym_offsetof] = ACTIONS(1898), - [anon_sym__Generic] = ACTIONS(1900), - [anon_sym_asm] = ACTIONS(1902), - [anon_sym___asm__] = ACTIONS(1902), - [anon_sym___asm] = ACTIONS(1902), - [sym_number_literal] = ACTIONS(1904), - [anon_sym_L_SQUOTE] = ACTIONS(1906), - [anon_sym_u_SQUOTE] = ACTIONS(1906), - [anon_sym_U_SQUOTE] = ACTIONS(1906), - [anon_sym_u8_SQUOTE] = ACTIONS(1906), - [anon_sym_SQUOTE] = ACTIONS(1906), - [anon_sym_L_DQUOTE] = ACTIONS(1908), - [anon_sym_u_DQUOTE] = ACTIONS(1908), - [anon_sym_U_DQUOTE] = ACTIONS(1908), - [anon_sym_u8_DQUOTE] = ACTIONS(1908), - [anon_sym_DQUOTE] = ACTIONS(1908), - [sym_true] = ACTIONS(1910), - [sym_false] = ACTIONS(1910), - [anon_sym_NULL] = ACTIONS(1912), - [anon_sym_nullptr] = ACTIONS(1912), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1916), - [anon_sym_R_DQUOTE] = ACTIONS(1918), - [anon_sym_LR_DQUOTE] = ACTIONS(1918), - [anon_sym_uR_DQUOTE] = ACTIONS(1918), - [anon_sym_UR_DQUOTE] = ACTIONS(1918), - [anon_sym_u8R_DQUOTE] = ACTIONS(1918), - [anon_sym_co_await] = ACTIONS(1920), - [anon_sym_new] = ACTIONS(1922), - [anon_sym_requires] = ACTIONS(1924), - [sym_this] = ACTIONS(1910), - }, - [1111] = { - [sym_expression] = STATE(3164), - [sym__string] = STATE(3235), - [sym_conditional_expression] = STATE(3373), - [sym_assignment_expression] = STATE(3373), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3373), - [sym_binary_expression] = STATE(3373), - [sym_update_expression] = STATE(3373), - [sym_cast_expression] = STATE(3373), - [sym_sizeof_expression] = STATE(3373), - [sym_alignof_expression] = STATE(3373), - [sym_offsetof_expression] = STATE(3373), - [sym_generic_expression] = STATE(3373), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3373), - [sym_extension_expression] = STATE(3373), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3373), - [sym_parenthesized_expression] = STATE(3365), - [sym_char_literal] = STATE(3235), - [sym_concatenated_string] = STATE(3235), - [sym_string_literal] = STATE(2358), - [sym_null] = STATE(3373), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7814), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3373), - [sym_raw_string_literal] = STATE(2358), - [sym_co_await_expression] = STATE(3373), - [sym_new_expression] = STATE(3373), - [sym_delete_expression] = STATE(3373), - [sym_requires_clause] = STATE(3373), - [sym_requires_expression] = STATE(3373), - [sym_lambda_expression] = STATE(3373), - [sym_lambda_capture_specifier] = STATE(5414), - [sym_fold_expression] = STATE(3373), - [sym_parameter_pack_expansion] = STATE(3373), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3365), - [sym_qualified_type_identifier] = STATE(7814), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2453), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4737), - [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(2455), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), - }, - [1112] = { - [sym_expression] = STATE(3110), - [sym__string] = STATE(3235), - [sym_conditional_expression] = STATE(3373), - [sym_assignment_expression] = STATE(3373), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3373), - [sym_binary_expression] = STATE(3373), - [sym_update_expression] = STATE(3373), - [sym_cast_expression] = STATE(3373), - [sym_sizeof_expression] = STATE(3373), - [sym_alignof_expression] = STATE(3373), - [sym_offsetof_expression] = STATE(3373), - [sym_generic_expression] = STATE(3373), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3373), - [sym_extension_expression] = STATE(3373), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3373), - [sym_parenthesized_expression] = STATE(3365), - [sym_char_literal] = STATE(3235), - [sym_concatenated_string] = STATE(3235), - [sym_string_literal] = STATE(2358), - [sym_null] = STATE(3373), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7814), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3373), - [sym_raw_string_literal] = STATE(2358), - [sym_co_await_expression] = STATE(3373), - [sym_new_expression] = STATE(3373), - [sym_delete_expression] = STATE(3373), - [sym_requires_clause] = STATE(3373), - [sym_requires_expression] = STATE(3373), - [sym_lambda_expression] = STATE(3373), - [sym_lambda_capture_specifier] = STATE(5414), - [sym_fold_expression] = STATE(3373), - [sym_parameter_pack_expansion] = STATE(3373), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3365), - [sym_qualified_type_identifier] = STATE(7814), - [sym_user_defined_literal] = STATE(3365), + [1175] = { + [sym_expression] = STATE(3187), + [sym__string] = STATE(3393), + [sym_conditional_expression] = STATE(3401), + [sym_assignment_expression] = STATE(3401), + [sym_pointer_expression] = STATE(3405), + [sym_unary_expression] = STATE(3401), + [sym_binary_expression] = STATE(3401), + [sym_update_expression] = STATE(3401), + [sym_cast_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3401), + [sym_alignof_expression] = STATE(3401), + [sym_offsetof_expression] = STATE(3401), + [sym_generic_expression] = STATE(3401), + [sym_subscript_expression] = STATE(3405), + [sym_call_expression] = STATE(3405), + [sym_gnu_asm_expression] = STATE(3401), + [sym_extension_expression] = STATE(3401), + [sym_field_expression] = STATE(3405), + [sym_compound_literal_expression] = STATE(3401), + [sym_parenthesized_expression] = STATE(3405), + [sym_char_literal] = STATE(3393), + [sym_concatenated_string] = STATE(3393), + [sym_string_literal] = STATE(2380), + [sym_null] = STATE(3401), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7745), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3401), + [sym_raw_string_literal] = STATE(2380), + [sym_co_await_expression] = STATE(3401), + [sym_new_expression] = STATE(3401), + [sym_delete_expression] = STATE(3401), + [sym_requires_clause] = STATE(3401), + [sym_requires_expression] = STATE(3401), + [sym_lambda_expression] = STATE(3401), + [sym_lambda_capture_specifier] = STATE(5494), + [sym_fold_expression] = STATE(3401), + [sym_parameter_pack_expansion] = STATE(3401), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3405), + [sym_qualified_type_identifier] = STATE(7745), + [sym_user_defined_literal] = STATE(3405), [sym_identifier] = ACTIONS(2453), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4830), [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), [anon_sym___extension__] = ACTIONS(2455), - [anon_sym_COLON_COLON] = ACTIONS(1806), + [anon_sym_COLON_COLON] = ACTIONS(1804), [anon_sym_LBRACK] = ACTIONS(2020), [sym_primitive_type] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), - }, - [1113] = { - [sym_expression] = STATE(3595), - [sym__string] = STATE(3714), - [sym_conditional_expression] = STATE(3908), - [sym_assignment_expression] = STATE(3908), - [sym_pointer_expression] = STATE(3506), - [sym_unary_expression] = STATE(3908), - [sym_binary_expression] = STATE(3908), - [sym_update_expression] = STATE(3908), - [sym_cast_expression] = STATE(3908), - [sym_sizeof_expression] = STATE(3908), - [sym_alignof_expression] = STATE(3908), - [sym_offsetof_expression] = STATE(3908), - [sym_generic_expression] = STATE(3908), - [sym_subscript_expression] = STATE(3506), - [sym_call_expression] = STATE(3506), - [sym_gnu_asm_expression] = STATE(3908), - [sym_extension_expression] = STATE(3908), - [sym_field_expression] = STATE(3506), - [sym_compound_literal_expression] = STATE(3908), - [sym_parenthesized_expression] = STATE(3506), - [sym_char_literal] = STATE(3714), - [sym_concatenated_string] = STATE(3714), - [sym_string_literal] = STATE(2566), - [sym_null] = STATE(3908), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7868), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3908), - [sym_raw_string_literal] = STATE(2566), - [sym_co_await_expression] = STATE(3908), - [sym_new_expression] = STATE(3908), - [sym_delete_expression] = STATE(3908), - [sym_requires_clause] = STATE(3908), - [sym_requires_expression] = STATE(3908), - [sym_lambda_expression] = STATE(3908), - [sym_lambda_capture_specifier] = STATE(5415), - [sym_fold_expression] = STATE(3908), - [sym_parameter_pack_expansion] = STATE(3908), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3506), - [sym_qualified_type_identifier] = STATE(7868), - [sym_user_defined_literal] = STATE(3506), - [sym_identifier] = ACTIONS(2605), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4746), - [anon_sym_LPAREN2] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1870), - [anon_sym_TILDE] = ACTIONS(1870), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_PLUS] = ACTIONS(1872), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(2607), - [anon_sym_COLON_COLON] = ACTIONS(1880), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2611), - [anon_sym_not] = ACTIONS(1872), - [anon_sym_compl] = ACTIONS(1872), - [anon_sym_DASH_DASH] = ACTIONS(1892), - [anon_sym_PLUS_PLUS] = ACTIONS(1892), - [anon_sym_sizeof] = ACTIONS(1894), - [anon_sym___alignof__] = ACTIONS(1896), - [anon_sym___alignof] = ACTIONS(1896), - [anon_sym__alignof] = ACTIONS(1896), - [anon_sym_alignof] = ACTIONS(1896), - [anon_sym__Alignof] = ACTIONS(1896), - [anon_sym_offsetof] = ACTIONS(1898), - [anon_sym__Generic] = ACTIONS(1900), - [anon_sym_asm] = ACTIONS(1902), - [anon_sym___asm__] = ACTIONS(1902), - [anon_sym___asm] = ACTIONS(1902), - [sym_number_literal] = ACTIONS(1904), - [anon_sym_L_SQUOTE] = ACTIONS(1906), - [anon_sym_u_SQUOTE] = ACTIONS(1906), - [anon_sym_U_SQUOTE] = ACTIONS(1906), - [anon_sym_u8_SQUOTE] = ACTIONS(1906), - [anon_sym_SQUOTE] = ACTIONS(1906), - [anon_sym_L_DQUOTE] = ACTIONS(1908), - [anon_sym_u_DQUOTE] = ACTIONS(1908), - [anon_sym_U_DQUOTE] = ACTIONS(1908), - [anon_sym_u8_DQUOTE] = ACTIONS(1908), - [anon_sym_DQUOTE] = ACTIONS(1908), - [sym_true] = ACTIONS(1910), - [sym_false] = ACTIONS(1910), - [anon_sym_NULL] = ACTIONS(1912), - [anon_sym_nullptr] = ACTIONS(1912), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1916), - [anon_sym_R_DQUOTE] = ACTIONS(1918), - [anon_sym_LR_DQUOTE] = ACTIONS(1918), - [anon_sym_uR_DQUOTE] = ACTIONS(1918), - [anon_sym_UR_DQUOTE] = ACTIONS(1918), - [anon_sym_u8R_DQUOTE] = ACTIONS(1918), - [anon_sym_co_await] = ACTIONS(1920), - [anon_sym_new] = ACTIONS(1922), - [anon_sym_requires] = ACTIONS(1924), - [sym_this] = ACTIONS(1910), - }, - [1114] = { - [sym_expression] = STATE(3553), - [sym__string] = STATE(3714), - [sym_conditional_expression] = STATE(3908), - [sym_assignment_expression] = STATE(3908), - [sym_pointer_expression] = STATE(3506), - [sym_unary_expression] = STATE(3908), - [sym_binary_expression] = STATE(3908), - [sym_update_expression] = STATE(3908), - [sym_cast_expression] = STATE(3908), - [sym_sizeof_expression] = STATE(3908), - [sym_alignof_expression] = STATE(3908), - [sym_offsetof_expression] = STATE(3908), - [sym_generic_expression] = STATE(3908), - [sym_subscript_expression] = STATE(3506), - [sym_call_expression] = STATE(3506), - [sym_gnu_asm_expression] = STATE(3908), - [sym_extension_expression] = STATE(3908), - [sym_field_expression] = STATE(3506), - [sym_compound_literal_expression] = STATE(3908), - [sym_parenthesized_expression] = STATE(3506), - [sym_char_literal] = STATE(3714), - [sym_concatenated_string] = STATE(3714), - [sym_string_literal] = STATE(2566), - [sym_null] = STATE(3908), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7868), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3908), - [sym_raw_string_literal] = STATE(2566), - [sym_co_await_expression] = STATE(3908), - [sym_new_expression] = STATE(3908), - [sym_delete_expression] = STATE(3908), - [sym_requires_clause] = STATE(3908), - [sym_requires_expression] = STATE(3908), - [sym_lambda_expression] = STATE(3908), - [sym_lambda_capture_specifier] = STATE(5415), - [sym_fold_expression] = STATE(3908), - [sym_parameter_pack_expansion] = STATE(3908), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3506), - [sym_qualified_type_identifier] = STATE(7868), - [sym_user_defined_literal] = STATE(3506), - [sym_identifier] = ACTIONS(2605), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4749), - [anon_sym_LPAREN2] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1870), - [anon_sym_TILDE] = ACTIONS(1870), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_PLUS] = ACTIONS(1872), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(2607), - [anon_sym_COLON_COLON] = ACTIONS(1880), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2611), - [anon_sym_not] = ACTIONS(1872), - [anon_sym_compl] = ACTIONS(1872), - [anon_sym_DASH_DASH] = ACTIONS(1892), - [anon_sym_PLUS_PLUS] = ACTIONS(1892), - [anon_sym_sizeof] = ACTIONS(1894), - [anon_sym___alignof__] = ACTIONS(1896), - [anon_sym___alignof] = ACTIONS(1896), - [anon_sym__alignof] = ACTIONS(1896), - [anon_sym_alignof] = ACTIONS(1896), - [anon_sym__Alignof] = ACTIONS(1896), - [anon_sym_offsetof] = ACTIONS(1898), - [anon_sym__Generic] = ACTIONS(1900), - [anon_sym_asm] = ACTIONS(1902), - [anon_sym___asm__] = ACTIONS(1902), - [anon_sym___asm] = ACTIONS(1902), - [sym_number_literal] = ACTIONS(1904), - [anon_sym_L_SQUOTE] = ACTIONS(1906), - [anon_sym_u_SQUOTE] = ACTIONS(1906), - [anon_sym_U_SQUOTE] = ACTIONS(1906), - [anon_sym_u8_SQUOTE] = ACTIONS(1906), - [anon_sym_SQUOTE] = ACTIONS(1906), - [anon_sym_L_DQUOTE] = ACTIONS(1908), - [anon_sym_u_DQUOTE] = ACTIONS(1908), - [anon_sym_U_DQUOTE] = ACTIONS(1908), - [anon_sym_u8_DQUOTE] = ACTIONS(1908), - [anon_sym_DQUOTE] = ACTIONS(1908), - [sym_true] = ACTIONS(1910), - [sym_false] = ACTIONS(1910), - [anon_sym_NULL] = ACTIONS(1912), - [anon_sym_nullptr] = ACTIONS(1912), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1916), - [anon_sym_R_DQUOTE] = ACTIONS(1918), - [anon_sym_LR_DQUOTE] = ACTIONS(1918), - [anon_sym_uR_DQUOTE] = ACTIONS(1918), - [anon_sym_UR_DQUOTE] = ACTIONS(1918), - [anon_sym_u8R_DQUOTE] = ACTIONS(1918), - [anon_sym_co_await] = ACTIONS(1920), - [anon_sym_new] = ACTIONS(1922), - [anon_sym_requires] = ACTIONS(1924), - [sym_this] = ACTIONS(1910), - }, - [1115] = { - [sym_expression] = STATE(3554), - [sym__string] = STATE(3714), - [sym_conditional_expression] = STATE(3908), - [sym_assignment_expression] = STATE(3908), - [sym_pointer_expression] = STATE(3506), - [sym_unary_expression] = STATE(3908), - [sym_binary_expression] = STATE(3908), - [sym_update_expression] = STATE(3908), - [sym_cast_expression] = STATE(3908), - [sym_sizeof_expression] = STATE(3908), - [sym_alignof_expression] = STATE(3908), - [sym_offsetof_expression] = STATE(3908), - [sym_generic_expression] = STATE(3908), - [sym_subscript_expression] = STATE(3506), - [sym_call_expression] = STATE(3506), - [sym_gnu_asm_expression] = STATE(3908), - [sym_extension_expression] = STATE(3908), - [sym_field_expression] = STATE(3506), - [sym_compound_literal_expression] = STATE(3908), - [sym_parenthesized_expression] = STATE(3506), - [sym_char_literal] = STATE(3714), - [sym_concatenated_string] = STATE(3714), - [sym_string_literal] = STATE(2566), - [sym_null] = STATE(3908), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7868), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3908), - [sym_raw_string_literal] = STATE(2566), - [sym_co_await_expression] = STATE(3908), - [sym_new_expression] = STATE(3908), - [sym_delete_expression] = STATE(3908), - [sym_requires_clause] = STATE(3908), - [sym_requires_expression] = STATE(3908), - [sym_lambda_expression] = STATE(3908), - [sym_lambda_capture_specifier] = STATE(5415), - [sym_fold_expression] = STATE(3908), - [sym_parameter_pack_expansion] = STATE(3908), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3506), - [sym_qualified_type_identifier] = STATE(7868), - [sym_user_defined_literal] = STATE(3506), - [sym_identifier] = ACTIONS(2605), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4752), - [anon_sym_LPAREN2] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1870), - [anon_sym_TILDE] = ACTIONS(1870), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_PLUS] = ACTIONS(1872), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(2607), - [anon_sym_COLON_COLON] = ACTIONS(1880), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2611), - [anon_sym_not] = ACTIONS(1872), - [anon_sym_compl] = ACTIONS(1872), - [anon_sym_DASH_DASH] = ACTIONS(1892), - [anon_sym_PLUS_PLUS] = ACTIONS(1892), - [anon_sym_sizeof] = ACTIONS(1894), - [anon_sym___alignof__] = ACTIONS(1896), - [anon_sym___alignof] = ACTIONS(1896), - [anon_sym__alignof] = ACTIONS(1896), - [anon_sym_alignof] = ACTIONS(1896), - [anon_sym__Alignof] = ACTIONS(1896), - [anon_sym_offsetof] = ACTIONS(1898), - [anon_sym__Generic] = ACTIONS(1900), - [anon_sym_asm] = ACTIONS(1902), - [anon_sym___asm__] = ACTIONS(1902), - [anon_sym___asm] = ACTIONS(1902), - [sym_number_literal] = ACTIONS(1904), - [anon_sym_L_SQUOTE] = ACTIONS(1906), - [anon_sym_u_SQUOTE] = ACTIONS(1906), - [anon_sym_U_SQUOTE] = ACTIONS(1906), - [anon_sym_u8_SQUOTE] = ACTIONS(1906), - [anon_sym_SQUOTE] = ACTIONS(1906), - [anon_sym_L_DQUOTE] = ACTIONS(1908), - [anon_sym_u_DQUOTE] = ACTIONS(1908), - [anon_sym_U_DQUOTE] = ACTIONS(1908), - [anon_sym_u8_DQUOTE] = ACTIONS(1908), - [anon_sym_DQUOTE] = ACTIONS(1908), - [sym_true] = ACTIONS(1910), - [sym_false] = ACTIONS(1910), - [anon_sym_NULL] = ACTIONS(1912), - [anon_sym_nullptr] = ACTIONS(1912), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1916), - [anon_sym_R_DQUOTE] = ACTIONS(1918), - [anon_sym_LR_DQUOTE] = ACTIONS(1918), - [anon_sym_uR_DQUOTE] = ACTIONS(1918), - [anon_sym_UR_DQUOTE] = ACTIONS(1918), - [anon_sym_u8R_DQUOTE] = ACTIONS(1918), - [anon_sym_co_await] = ACTIONS(1920), - [anon_sym_new] = ACTIONS(1922), - [anon_sym_requires] = ACTIONS(1924), - [sym_this] = ACTIONS(1910), - }, - [1116] = { - [sym_expression] = STATE(3556), - [sym__string] = STATE(3714), - [sym_conditional_expression] = STATE(3908), - [sym_assignment_expression] = STATE(3908), - [sym_pointer_expression] = STATE(3506), - [sym_unary_expression] = STATE(3908), - [sym_binary_expression] = STATE(3908), - [sym_update_expression] = STATE(3908), - [sym_cast_expression] = STATE(3908), - [sym_sizeof_expression] = STATE(3908), - [sym_alignof_expression] = STATE(3908), - [sym_offsetof_expression] = STATE(3908), - [sym_generic_expression] = STATE(3908), - [sym_subscript_expression] = STATE(3506), - [sym_call_expression] = STATE(3506), - [sym_gnu_asm_expression] = STATE(3908), - [sym_extension_expression] = STATE(3908), - [sym_field_expression] = STATE(3506), - [sym_compound_literal_expression] = STATE(3908), - [sym_parenthesized_expression] = STATE(3506), - [sym_char_literal] = STATE(3714), - [sym_concatenated_string] = STATE(3714), - [sym_string_literal] = STATE(2566), - [sym_null] = STATE(3908), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7868), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3908), - [sym_raw_string_literal] = STATE(2566), - [sym_co_await_expression] = STATE(3908), - [sym_new_expression] = STATE(3908), - [sym_delete_expression] = STATE(3908), - [sym_requires_clause] = STATE(3908), - [sym_requires_expression] = STATE(3908), - [sym_lambda_expression] = STATE(3908), - [sym_lambda_capture_specifier] = STATE(5415), - [sym_fold_expression] = STATE(3908), - [sym_parameter_pack_expansion] = STATE(3908), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3506), - [sym_qualified_type_identifier] = STATE(7868), - [sym_user_defined_literal] = STATE(3506), - [sym_identifier] = ACTIONS(2605), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4755), - [anon_sym_LPAREN2] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1870), - [anon_sym_TILDE] = ACTIONS(1870), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_PLUS] = ACTIONS(1872), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(2607), - [anon_sym_COLON_COLON] = ACTIONS(1880), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2611), - [anon_sym_not] = ACTIONS(1872), - [anon_sym_compl] = ACTIONS(1872), - [anon_sym_DASH_DASH] = ACTIONS(1892), - [anon_sym_PLUS_PLUS] = ACTIONS(1892), - [anon_sym_sizeof] = ACTIONS(1894), - [anon_sym___alignof__] = ACTIONS(1896), - [anon_sym___alignof] = ACTIONS(1896), - [anon_sym__alignof] = ACTIONS(1896), - [anon_sym_alignof] = ACTIONS(1896), - [anon_sym__Alignof] = ACTIONS(1896), - [anon_sym_offsetof] = ACTIONS(1898), - [anon_sym__Generic] = ACTIONS(1900), - [anon_sym_asm] = ACTIONS(1902), - [anon_sym___asm__] = ACTIONS(1902), - [anon_sym___asm] = ACTIONS(1902), - [sym_number_literal] = ACTIONS(1904), - [anon_sym_L_SQUOTE] = ACTIONS(1906), - [anon_sym_u_SQUOTE] = ACTIONS(1906), - [anon_sym_U_SQUOTE] = ACTIONS(1906), - [anon_sym_u8_SQUOTE] = ACTIONS(1906), - [anon_sym_SQUOTE] = ACTIONS(1906), - [anon_sym_L_DQUOTE] = ACTIONS(1908), - [anon_sym_u_DQUOTE] = ACTIONS(1908), - [anon_sym_U_DQUOTE] = ACTIONS(1908), - [anon_sym_u8_DQUOTE] = ACTIONS(1908), - [anon_sym_DQUOTE] = ACTIONS(1908), - [sym_true] = ACTIONS(1910), - [sym_false] = ACTIONS(1910), - [anon_sym_NULL] = ACTIONS(1912), - [anon_sym_nullptr] = ACTIONS(1912), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1916), - [anon_sym_R_DQUOTE] = ACTIONS(1918), - [anon_sym_LR_DQUOTE] = ACTIONS(1918), - [anon_sym_uR_DQUOTE] = ACTIONS(1918), - [anon_sym_UR_DQUOTE] = ACTIONS(1918), - [anon_sym_u8R_DQUOTE] = ACTIONS(1918), - [anon_sym_co_await] = ACTIONS(1920), - [anon_sym_new] = ACTIONS(1922), - [anon_sym_requires] = ACTIONS(1924), - [sym_this] = ACTIONS(1910), - }, - [1117] = { - [sym_expression] = STATE(3562), - [sym__string] = STATE(3714), - [sym_conditional_expression] = STATE(3908), - [sym_assignment_expression] = STATE(3908), - [sym_pointer_expression] = STATE(3506), - [sym_unary_expression] = STATE(3908), - [sym_binary_expression] = STATE(3908), - [sym_update_expression] = STATE(3908), - [sym_cast_expression] = STATE(3908), - [sym_sizeof_expression] = STATE(3908), - [sym_alignof_expression] = STATE(3908), - [sym_offsetof_expression] = STATE(3908), - [sym_generic_expression] = STATE(3908), - [sym_subscript_expression] = STATE(3506), - [sym_call_expression] = STATE(3506), - [sym_gnu_asm_expression] = STATE(3908), - [sym_extension_expression] = STATE(3908), - [sym_field_expression] = STATE(3506), - [sym_compound_literal_expression] = STATE(3908), - [sym_parenthesized_expression] = STATE(3506), - [sym_char_literal] = STATE(3714), - [sym_concatenated_string] = STATE(3714), - [sym_string_literal] = STATE(2566), - [sym_null] = STATE(3908), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7868), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3908), - [sym_raw_string_literal] = STATE(2566), - [sym_co_await_expression] = STATE(3908), - [sym_new_expression] = STATE(3908), - [sym_delete_expression] = STATE(3908), - [sym_requires_clause] = STATE(3908), - [sym_requires_expression] = STATE(3908), - [sym_lambda_expression] = STATE(3908), - [sym_lambda_capture_specifier] = STATE(5415), - [sym_fold_expression] = STATE(3908), - [sym_parameter_pack_expansion] = STATE(3908), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3506), - [sym_qualified_type_identifier] = STATE(7868), - [sym_user_defined_literal] = STATE(3506), - [sym_identifier] = ACTIONS(2605), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4743), - [anon_sym_LPAREN2] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1870), - [anon_sym_TILDE] = ACTIONS(1870), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_PLUS] = ACTIONS(1872), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(2607), - [anon_sym_COLON_COLON] = ACTIONS(1880), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2611), - [anon_sym_not] = ACTIONS(1872), - [anon_sym_compl] = ACTIONS(1872), - [anon_sym_DASH_DASH] = ACTIONS(1892), - [anon_sym_PLUS_PLUS] = ACTIONS(1892), - [anon_sym_sizeof] = ACTIONS(1894), - [anon_sym___alignof__] = ACTIONS(1896), - [anon_sym___alignof] = ACTIONS(1896), - [anon_sym__alignof] = ACTIONS(1896), - [anon_sym_alignof] = ACTIONS(1896), - [anon_sym__Alignof] = ACTIONS(1896), - [anon_sym_offsetof] = ACTIONS(1898), - [anon_sym__Generic] = ACTIONS(1900), - [anon_sym_asm] = ACTIONS(1902), - [anon_sym___asm__] = ACTIONS(1902), - [anon_sym___asm] = ACTIONS(1902), - [sym_number_literal] = ACTIONS(1904), - [anon_sym_L_SQUOTE] = ACTIONS(1906), - [anon_sym_u_SQUOTE] = ACTIONS(1906), - [anon_sym_U_SQUOTE] = ACTIONS(1906), - [anon_sym_u8_SQUOTE] = ACTIONS(1906), - [anon_sym_SQUOTE] = ACTIONS(1906), - [anon_sym_L_DQUOTE] = ACTIONS(1908), - [anon_sym_u_DQUOTE] = ACTIONS(1908), - [anon_sym_U_DQUOTE] = ACTIONS(1908), - [anon_sym_u8_DQUOTE] = ACTIONS(1908), - [anon_sym_DQUOTE] = ACTIONS(1908), - [sym_true] = ACTIONS(1910), - [sym_false] = ACTIONS(1910), - [anon_sym_NULL] = ACTIONS(1912), - [anon_sym_nullptr] = ACTIONS(1912), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1916), - [anon_sym_R_DQUOTE] = ACTIONS(1918), - [anon_sym_LR_DQUOTE] = ACTIONS(1918), - [anon_sym_uR_DQUOTE] = ACTIONS(1918), - [anon_sym_UR_DQUOTE] = ACTIONS(1918), - [anon_sym_u8R_DQUOTE] = ACTIONS(1918), - [anon_sym_co_await] = ACTIONS(1920), - [anon_sym_new] = ACTIONS(1922), - [anon_sym_requires] = ACTIONS(1924), - [sym_this] = ACTIONS(1910), - }, - [1118] = { - [sym_expression] = STATE(3563), - [sym__string] = STATE(3714), - [sym_conditional_expression] = STATE(3908), - [sym_assignment_expression] = STATE(3908), - [sym_pointer_expression] = STATE(3506), - [sym_unary_expression] = STATE(3908), - [sym_binary_expression] = STATE(3908), - [sym_update_expression] = STATE(3908), - [sym_cast_expression] = STATE(3908), - [sym_sizeof_expression] = STATE(3908), - [sym_alignof_expression] = STATE(3908), - [sym_offsetof_expression] = STATE(3908), - [sym_generic_expression] = STATE(3908), - [sym_subscript_expression] = STATE(3506), - [sym_call_expression] = STATE(3506), - [sym_gnu_asm_expression] = STATE(3908), - [sym_extension_expression] = STATE(3908), - [sym_field_expression] = STATE(3506), - [sym_compound_literal_expression] = STATE(3908), - [sym_parenthesized_expression] = STATE(3506), - [sym_char_literal] = STATE(3714), - [sym_concatenated_string] = STATE(3714), - [sym_string_literal] = STATE(2566), - [sym_null] = STATE(3908), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7868), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3908), - [sym_raw_string_literal] = STATE(2566), - [sym_co_await_expression] = STATE(3908), - [sym_new_expression] = STATE(3908), - [sym_delete_expression] = STATE(3908), - [sym_requires_clause] = STATE(3908), - [sym_requires_expression] = STATE(3908), - [sym_lambda_expression] = STATE(3908), - [sym_lambda_capture_specifier] = STATE(5415), - [sym_fold_expression] = STATE(3908), - [sym_parameter_pack_expansion] = STATE(3908), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3506), - [sym_qualified_type_identifier] = STATE(7868), - [sym_user_defined_literal] = STATE(3506), - [sym_identifier] = ACTIONS(2605), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4758), - [anon_sym_LPAREN2] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1870), - [anon_sym_TILDE] = ACTIONS(1870), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_PLUS] = ACTIONS(1872), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(2607), - [anon_sym_COLON_COLON] = ACTIONS(1880), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2611), - [anon_sym_not] = ACTIONS(1872), - [anon_sym_compl] = ACTIONS(1872), - [anon_sym_DASH_DASH] = ACTIONS(1892), - [anon_sym_PLUS_PLUS] = ACTIONS(1892), - [anon_sym_sizeof] = ACTIONS(1894), - [anon_sym___alignof__] = ACTIONS(1896), - [anon_sym___alignof] = ACTIONS(1896), - [anon_sym__alignof] = ACTIONS(1896), - [anon_sym_alignof] = ACTIONS(1896), - [anon_sym__Alignof] = ACTIONS(1896), - [anon_sym_offsetof] = ACTIONS(1898), - [anon_sym__Generic] = ACTIONS(1900), - [anon_sym_asm] = ACTIONS(1902), - [anon_sym___asm__] = ACTIONS(1902), - [anon_sym___asm] = ACTIONS(1902), - [sym_number_literal] = ACTIONS(1904), - [anon_sym_L_SQUOTE] = ACTIONS(1906), - [anon_sym_u_SQUOTE] = ACTIONS(1906), - [anon_sym_U_SQUOTE] = ACTIONS(1906), - [anon_sym_u8_SQUOTE] = ACTIONS(1906), - [anon_sym_SQUOTE] = ACTIONS(1906), - [anon_sym_L_DQUOTE] = ACTIONS(1908), - [anon_sym_u_DQUOTE] = ACTIONS(1908), - [anon_sym_U_DQUOTE] = ACTIONS(1908), - [anon_sym_u8_DQUOTE] = ACTIONS(1908), - [anon_sym_DQUOTE] = ACTIONS(1908), - [sym_true] = ACTIONS(1910), - [sym_false] = ACTIONS(1910), - [anon_sym_NULL] = ACTIONS(1912), - [anon_sym_nullptr] = ACTIONS(1912), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1916), - [anon_sym_R_DQUOTE] = ACTIONS(1918), - [anon_sym_LR_DQUOTE] = ACTIONS(1918), - [anon_sym_uR_DQUOTE] = ACTIONS(1918), - [anon_sym_UR_DQUOTE] = ACTIONS(1918), - [anon_sym_u8R_DQUOTE] = ACTIONS(1918), - [anon_sym_co_await] = ACTIONS(1920), - [anon_sym_new] = ACTIONS(1922), - [anon_sym_requires] = ACTIONS(1924), - [sym_this] = ACTIONS(1910), - }, - [1119] = { - [sym_expression] = STATE(3570), - [sym__string] = STATE(3714), - [sym_conditional_expression] = STATE(3908), - [sym_assignment_expression] = STATE(3908), - [sym_pointer_expression] = STATE(3506), - [sym_unary_expression] = STATE(3908), - [sym_binary_expression] = STATE(3908), - [sym_update_expression] = STATE(3908), - [sym_cast_expression] = STATE(3908), - [sym_sizeof_expression] = STATE(3908), - [sym_alignof_expression] = STATE(3908), - [sym_offsetof_expression] = STATE(3908), - [sym_generic_expression] = STATE(3908), - [sym_subscript_expression] = STATE(3506), - [sym_call_expression] = STATE(3506), - [sym_gnu_asm_expression] = STATE(3908), - [sym_extension_expression] = STATE(3908), - [sym_field_expression] = STATE(3506), - [sym_compound_literal_expression] = STATE(3908), - [sym_parenthesized_expression] = STATE(3506), - [sym_char_literal] = STATE(3714), - [sym_concatenated_string] = STATE(3714), - [sym_string_literal] = STATE(2566), - [sym_null] = STATE(3908), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7868), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3908), - [sym_raw_string_literal] = STATE(2566), - [sym_co_await_expression] = STATE(3908), - [sym_new_expression] = STATE(3908), - [sym_delete_expression] = STATE(3908), - [sym_requires_clause] = STATE(3908), - [sym_requires_expression] = STATE(3908), - [sym_lambda_expression] = STATE(3908), - [sym_lambda_capture_specifier] = STATE(5415), - [sym_fold_expression] = STATE(3908), - [sym_parameter_pack_expansion] = STATE(3908), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3506), - [sym_qualified_type_identifier] = STATE(7868), - [sym_user_defined_literal] = STATE(3506), - [sym_identifier] = ACTIONS(2605), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4761), - [anon_sym_LPAREN2] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1870), - [anon_sym_TILDE] = ACTIONS(1870), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_PLUS] = ACTIONS(1872), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(2607), - [anon_sym_COLON_COLON] = ACTIONS(1880), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2611), - [anon_sym_not] = ACTIONS(1872), - [anon_sym_compl] = ACTIONS(1872), - [anon_sym_DASH_DASH] = ACTIONS(1892), - [anon_sym_PLUS_PLUS] = ACTIONS(1892), - [anon_sym_sizeof] = ACTIONS(1894), - [anon_sym___alignof__] = ACTIONS(1896), - [anon_sym___alignof] = ACTIONS(1896), - [anon_sym__alignof] = ACTIONS(1896), - [anon_sym_alignof] = ACTIONS(1896), - [anon_sym__Alignof] = ACTIONS(1896), - [anon_sym_offsetof] = ACTIONS(1898), - [anon_sym__Generic] = ACTIONS(1900), - [anon_sym_asm] = ACTIONS(1902), - [anon_sym___asm__] = ACTIONS(1902), - [anon_sym___asm] = ACTIONS(1902), - [sym_number_literal] = ACTIONS(1904), - [anon_sym_L_SQUOTE] = ACTIONS(1906), - [anon_sym_u_SQUOTE] = ACTIONS(1906), - [anon_sym_U_SQUOTE] = ACTIONS(1906), - [anon_sym_u8_SQUOTE] = ACTIONS(1906), - [anon_sym_SQUOTE] = ACTIONS(1906), - [anon_sym_L_DQUOTE] = ACTIONS(1908), - [anon_sym_u_DQUOTE] = ACTIONS(1908), - [anon_sym_U_DQUOTE] = ACTIONS(1908), - [anon_sym_u8_DQUOTE] = ACTIONS(1908), - [anon_sym_DQUOTE] = ACTIONS(1908), - [sym_true] = ACTIONS(1910), - [sym_false] = ACTIONS(1910), - [anon_sym_NULL] = ACTIONS(1912), - [anon_sym_nullptr] = ACTIONS(1912), + [anon_sym_not] = ACTIONS(1796), + [anon_sym_compl] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_sizeof] = ACTIONS(1824), + [anon_sym___alignof__] = ACTIONS(1826), + [anon_sym___alignof] = ACTIONS(1826), + [anon_sym__alignof] = ACTIONS(1826), + [anon_sym_alignof] = ACTIONS(1826), + [anon_sym__Alignof] = ACTIONS(1826), + [anon_sym_offsetof] = ACTIONS(1828), + [anon_sym__Generic] = ACTIONS(1830), + [anon_sym_asm] = ACTIONS(1832), + [anon_sym___asm__] = ACTIONS(1832), + [anon_sym___asm] = ACTIONS(1832), + [sym_number_literal] = ACTIONS(1834), + [anon_sym_L_SQUOTE] = ACTIONS(1836), + [anon_sym_u_SQUOTE] = ACTIONS(1836), + [anon_sym_U_SQUOTE] = ACTIONS(1836), + [anon_sym_u8_SQUOTE] = ACTIONS(1836), + [anon_sym_SQUOTE] = ACTIONS(1836), + [anon_sym_L_DQUOTE] = ACTIONS(1838), + [anon_sym_u_DQUOTE] = ACTIONS(1838), + [anon_sym_U_DQUOTE] = ACTIONS(1838), + [anon_sym_u8_DQUOTE] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym_true] = ACTIONS(1840), + [sym_false] = ACTIONS(1840), + [anon_sym_NULL] = ACTIONS(1842), + [anon_sym_nullptr] = ACTIONS(1842), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1916), - [anon_sym_R_DQUOTE] = ACTIONS(1918), - [anon_sym_LR_DQUOTE] = ACTIONS(1918), - [anon_sym_uR_DQUOTE] = ACTIONS(1918), - [anon_sym_UR_DQUOTE] = ACTIONS(1918), - [anon_sym_u8R_DQUOTE] = ACTIONS(1918), - [anon_sym_co_await] = ACTIONS(1920), - [anon_sym_new] = ACTIONS(1922), - [anon_sym_requires] = ACTIONS(1924), - [sym_this] = ACTIONS(1910), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1852), + [anon_sym_R_DQUOTE] = ACTIONS(1854), + [anon_sym_LR_DQUOTE] = ACTIONS(1854), + [anon_sym_uR_DQUOTE] = ACTIONS(1854), + [anon_sym_UR_DQUOTE] = ACTIONS(1854), + [anon_sym_u8R_DQUOTE] = ACTIONS(1854), + [anon_sym_co_await] = ACTIONS(1856), + [anon_sym_new] = ACTIONS(1858), + [anon_sym_requires] = ACTIONS(1860), + [sym_this] = ACTIONS(1840), }, - [1120] = { - [sym_expression] = STATE(2398), - [sym__string] = STATE(2950), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(2950), - [sym_concatenated_string] = STATE(2950), - [sym_string_literal] = STATE(2034), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(2034), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), + [1176] = { + [sym_expression] = STATE(2432), + [sym__string] = STATE(2917), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(2917), + [sym_concatenated_string] = STATE(2917), + [sym_string_literal] = STATE(2114), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(2114), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), [sym_identifier] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(4555), + [anon_sym_LPAREN2] = ACTIONS(4565), [anon_sym_BANG] = ACTIONS(1994), [anon_sym_TILDE] = ACTIONS(1994), [anon_sym_DASH] = ACTIONS(1992), [anon_sym_PLUS] = ACTIONS(1992), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), [anon_sym___extension__] = ACTIONS(1996), [anon_sym_COLON_COLON] = ACTIONS(1998), [anon_sym_LBRACK] = ACTIONS(2020), - [anon_sym_RBRACK] = ACTIONS(4764), + [anon_sym_RBRACK] = ACTIONS(4833), [sym_primitive_type] = ACTIONS(1956), [anon_sym_not] = ACTIONS(1992), [anon_sym_compl] = ACTIONS(1992), - [anon_sym_DASH_DASH] = ACTIONS(3343), - [anon_sym_PLUS_PLUS] = ACTIONS(3343), + [anon_sym_DASH_DASH] = ACTIONS(3355), + [anon_sym_PLUS_PLUS] = ACTIONS(3355), [anon_sym_sizeof] = ACTIONS(2000), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), @@ -191496,7 +198133,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1976), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(2008), [anon_sym_R_DQUOTE] = ACTIONS(2010), [anon_sym_LR_DQUOTE] = ACTIONS(2010), @@ -191508,163 +198145,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [1121] = { - [sym_expression] = STATE(3156), - [sym__string] = STATE(3235), - [sym_conditional_expression] = STATE(3373), - [sym_assignment_expression] = STATE(3373), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3373), - [sym_binary_expression] = STATE(3373), - [sym_update_expression] = STATE(3373), - [sym_cast_expression] = STATE(3373), - [sym_sizeof_expression] = STATE(3373), - [sym_alignof_expression] = STATE(3373), - [sym_offsetof_expression] = STATE(3373), - [sym_generic_expression] = STATE(3373), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3373), - [sym_extension_expression] = STATE(3373), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3373), - [sym_parenthesized_expression] = STATE(3365), - [sym_char_literal] = STATE(3235), - [sym_concatenated_string] = STATE(3235), - [sym_string_literal] = STATE(2358), - [sym_null] = STATE(3373), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7814), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3373), - [sym_raw_string_literal] = STATE(2358), - [sym_co_await_expression] = STATE(3373), - [sym_new_expression] = STATE(3373), - [sym_delete_expression] = STATE(3373), - [sym_requires_clause] = STATE(3373), - [sym_requires_expression] = STATE(3373), - [sym_lambda_expression] = STATE(3373), - [sym_lambda_capture_specifier] = STATE(5414), - [sym_fold_expression] = STATE(3373), - [sym_parameter_pack_expansion] = STATE(3373), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3365), - [sym_qualified_type_identifier] = STATE(7814), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2453), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4704), - [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(2455), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), - }, - [1122] = { - [sym_expression] = STATE(4758), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1177] = { + [sym_expression] = STATE(4659), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -191696,9 +198232,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(123), [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4766), + [sym_auto] = ACTIONS(4835), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -191710,63 +198246,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1123] = { - [sym_expression] = STATE(4651), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1178] = { + [sym_expression] = STATE(2432), + [sym__string] = STATE(2917), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(2917), + [sym_concatenated_string] = STATE(2917), + [sym_string_literal] = STATE(2114), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(2114), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), + [sym_identifier] = ACTIONS(1990), + [anon_sym_LPAREN2] = ACTIONS(4565), + [anon_sym_BANG] = ACTIONS(1994), + [anon_sym_TILDE] = ACTIONS(1994), + [anon_sym_DASH] = ACTIONS(1992), + [anon_sym_PLUS] = ACTIONS(1992), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(1996), + [anon_sym_COLON_COLON] = ACTIONS(1998), + [anon_sym_LBRACK] = ACTIONS(2020), + [anon_sym_RBRACK] = ACTIONS(4837), + [sym_primitive_type] = ACTIONS(1956), + [anon_sym_not] = ACTIONS(1992), + [anon_sym_compl] = ACTIONS(1992), + [anon_sym_DASH_DASH] = ACTIONS(3355), + [anon_sym_PLUS_PLUS] = ACTIONS(3355), + [anon_sym_sizeof] = ACTIONS(2000), + [anon_sym___alignof__] = ACTIONS(1960), + [anon_sym___alignof] = ACTIONS(1960), + [anon_sym__alignof] = ACTIONS(1960), + [anon_sym_alignof] = ACTIONS(1960), + [anon_sym__Alignof] = ACTIONS(1960), + [anon_sym_offsetof] = ACTIONS(1962), + [anon_sym__Generic] = ACTIONS(1964), + [anon_sym_asm] = ACTIONS(1966), + [anon_sym___asm__] = ACTIONS(1966), + [anon_sym___asm] = ACTIONS(1966), + [sym_number_literal] = ACTIONS(2002), + [anon_sym_L_SQUOTE] = ACTIONS(2004), + [anon_sym_u_SQUOTE] = ACTIONS(2004), + [anon_sym_U_SQUOTE] = ACTIONS(2004), + [anon_sym_u8_SQUOTE] = ACTIONS(2004), + [anon_sym_SQUOTE] = ACTIONS(2004), + [anon_sym_L_DQUOTE] = ACTIONS(2006), + [anon_sym_u_DQUOTE] = ACTIONS(2006), + [anon_sym_U_DQUOTE] = ACTIONS(2006), + [anon_sym_u8_DQUOTE] = ACTIONS(2006), + [anon_sym_DQUOTE] = ACTIONS(2006), + [sym_true] = ACTIONS(1974), + [sym_false] = ACTIONS(1974), + [anon_sym_NULL] = ACTIONS(1976), + [anon_sym_nullptr] = ACTIONS(1976), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(2008), + [anon_sym_R_DQUOTE] = ACTIONS(2010), + [anon_sym_LR_DQUOTE] = ACTIONS(2010), + [anon_sym_uR_DQUOTE] = ACTIONS(2010), + [anon_sym_UR_DQUOTE] = ACTIONS(2010), + [anon_sym_u8R_DQUOTE] = ACTIONS(2010), + [anon_sym_co_await] = ACTIONS(2012), + [anon_sym_new] = ACTIONS(2014), + [anon_sym_requires] = ACTIONS(1988), + [sym_this] = ACTIONS(1974), + }, + [1179] = { + [sym_expression] = STATE(4791), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(4768), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -191798,8 +198434,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(123), [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4839), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -191811,67 +198448,168 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1124] = { - [sym_expression] = STATE(2398), - [sym__string] = STATE(2950), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(2950), - [sym_concatenated_string] = STATE(2950), - [sym_string_literal] = STATE(2034), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(2034), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), + [1180] = { + [sym_expression] = STATE(3153), + [sym__string] = STATE(3393), + [sym_conditional_expression] = STATE(3401), + [sym_assignment_expression] = STATE(3401), + [sym_pointer_expression] = STATE(3405), + [sym_unary_expression] = STATE(3401), + [sym_binary_expression] = STATE(3401), + [sym_update_expression] = STATE(3401), + [sym_cast_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3401), + [sym_alignof_expression] = STATE(3401), + [sym_offsetof_expression] = STATE(3401), + [sym_generic_expression] = STATE(3401), + [sym_subscript_expression] = STATE(3405), + [sym_call_expression] = STATE(3405), + [sym_gnu_asm_expression] = STATE(3401), + [sym_extension_expression] = STATE(3401), + [sym_field_expression] = STATE(3405), + [sym_compound_literal_expression] = STATE(3401), + [sym_parenthesized_expression] = STATE(3405), + [sym_char_literal] = STATE(3393), + [sym_concatenated_string] = STATE(3393), + [sym_string_literal] = STATE(2380), + [sym_null] = STATE(3401), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7745), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3401), + [sym_raw_string_literal] = STATE(2380), + [sym_co_await_expression] = STATE(3401), + [sym_new_expression] = STATE(3401), + [sym_delete_expression] = STATE(3401), + [sym_requires_clause] = STATE(3401), + [sym_requires_expression] = STATE(3401), + [sym_lambda_expression] = STATE(3401), + [sym_lambda_capture_specifier] = STATE(5494), + [sym_fold_expression] = STATE(3401), + [sym_parameter_pack_expansion] = STATE(3401), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3405), + [sym_qualified_type_identifier] = STATE(7745), + [sym_user_defined_literal] = STATE(3405), + [sym_identifier] = ACTIONS(2453), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4777), + [anon_sym_LPAREN2] = ACTIONS(2018), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(2455), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2459), + [anon_sym_not] = ACTIONS(1796), + [anon_sym_compl] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_sizeof] = ACTIONS(1824), + [anon_sym___alignof__] = ACTIONS(1826), + [anon_sym___alignof] = ACTIONS(1826), + [anon_sym__alignof] = ACTIONS(1826), + [anon_sym_alignof] = ACTIONS(1826), + [anon_sym__Alignof] = ACTIONS(1826), + [anon_sym_offsetof] = ACTIONS(1828), + [anon_sym__Generic] = ACTIONS(1830), + [anon_sym_asm] = ACTIONS(1832), + [anon_sym___asm__] = ACTIONS(1832), + [anon_sym___asm] = ACTIONS(1832), + [sym_number_literal] = ACTIONS(1834), + [anon_sym_L_SQUOTE] = ACTIONS(1836), + [anon_sym_u_SQUOTE] = ACTIONS(1836), + [anon_sym_U_SQUOTE] = ACTIONS(1836), + [anon_sym_u8_SQUOTE] = ACTIONS(1836), + [anon_sym_SQUOTE] = ACTIONS(1836), + [anon_sym_L_DQUOTE] = ACTIONS(1838), + [anon_sym_u_DQUOTE] = ACTIONS(1838), + [anon_sym_U_DQUOTE] = ACTIONS(1838), + [anon_sym_u8_DQUOTE] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym_true] = ACTIONS(1840), + [sym_false] = ACTIONS(1840), + [anon_sym_NULL] = ACTIONS(1842), + [anon_sym_nullptr] = ACTIONS(1842), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1852), + [anon_sym_R_DQUOTE] = ACTIONS(1854), + [anon_sym_LR_DQUOTE] = ACTIONS(1854), + [anon_sym_uR_DQUOTE] = ACTIONS(1854), + [anon_sym_UR_DQUOTE] = ACTIONS(1854), + [anon_sym_u8R_DQUOTE] = ACTIONS(1854), + [anon_sym_co_await] = ACTIONS(1856), + [anon_sym_new] = ACTIONS(1858), + [anon_sym_requires] = ACTIONS(1860), + [sym_this] = ACTIONS(1840), + }, + [1181] = { + [sym_expression] = STATE(2432), + [sym__string] = STATE(2917), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(2917), + [sym_concatenated_string] = STATE(2917), + [sym_string_literal] = STATE(2114), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(2114), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), [sym_identifier] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(4555), + [anon_sym_LPAREN2] = ACTIONS(4565), [anon_sym_BANG] = ACTIONS(1994), [anon_sym_TILDE] = ACTIONS(1994), [anon_sym_DASH] = ACTIONS(1992), [anon_sym_PLUS] = ACTIONS(1992), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), [anon_sym___extension__] = ACTIONS(1996), [anon_sym_COLON_COLON] = ACTIONS(1998), [anon_sym_LBRACK] = ACTIONS(2020), - [anon_sym_RBRACK] = ACTIONS(4770), + [anon_sym_RBRACK] = ACTIONS(4841), [sym_primitive_type] = ACTIONS(1956), [anon_sym_not] = ACTIONS(1992), [anon_sym_compl] = ACTIONS(1992), - [anon_sym_DASH_DASH] = ACTIONS(3343), - [anon_sym_PLUS_PLUS] = ACTIONS(3343), + [anon_sym_DASH_DASH] = ACTIONS(3355), + [anon_sym_PLUS_PLUS] = ACTIONS(3355), [anon_sym_sizeof] = ACTIONS(2000), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), @@ -191900,7 +198638,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1976), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(2008), [anon_sym_R_DQUOTE] = ACTIONS(2010), [anon_sym_LR_DQUOTE] = ACTIONS(2010), @@ -191912,68 +198650,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [1125] = { - [sym_expression] = STATE(4555), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(7389), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3568), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3568), - [sym_call_expression] = STATE(3568), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3568), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3568), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3568), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3568), - [sym_identifier] = ACTIONS(3867), - [anon_sym_LPAREN2] = ACTIONS(4642), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_TILDE] = ACTIONS(3871), - [anon_sym_DASH] = ACTIONS(3869), - [anon_sym_PLUS] = ACTIONS(3869), - [anon_sym_STAR] = ACTIONS(4312), - [anon_sym_AMP] = ACTIONS(4312), - [anon_sym___extension__] = ACTIONS(3873), - [anon_sym_COLON_COLON] = ACTIONS(3875), + [1182] = { + [sym_expression] = STATE(4598), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3597), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3597), + [sym_call_expression] = STATE(3597), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3597), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3597), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3597), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3597), + [sym_identifier] = ACTIONS(3857), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4752), + [anon_sym_LPAREN2] = ACTIONS(4843), + [anon_sym_BANG] = ACTIONS(3861), + [anon_sym_TILDE] = ACTIONS(3861), + [anon_sym_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3859), + [anon_sym_STAR] = ACTIONS(4366), + [anon_sym_AMP] = ACTIONS(4366), + [anon_sym___extension__] = ACTIONS(3863), + [anon_sym_COLON_COLON] = ACTIONS(3865), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3869), - [anon_sym_compl] = ACTIONS(3869), - [anon_sym_DASH_DASH] = ACTIONS(4404), - [anon_sym_PLUS_PLUS] = ACTIONS(4404), - [anon_sym_sizeof] = ACTIONS(3877), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3859), + [anon_sym_compl] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(4368), + [anon_sym_PLUS_PLUS] = ACTIONS(4368), + [anon_sym_sizeof] = ACTIONS(3867), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -192001,483 +198739,180 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3879), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3869), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3881), - [anon_sym_new] = ACTIONS(3865), + [anon_sym_co_await] = ACTIONS(3871), + [anon_sym_new] = ACTIONS(3873), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1126] = { - [sym_expression] = STATE(3164), - [sym__string] = STATE(3235), - [sym_conditional_expression] = STATE(3373), - [sym_assignment_expression] = STATE(3373), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3373), - [sym_binary_expression] = STATE(3373), - [sym_update_expression] = STATE(3373), - [sym_cast_expression] = STATE(3373), - [sym_sizeof_expression] = STATE(3373), - [sym_alignof_expression] = STATE(3373), - [sym_offsetof_expression] = STATE(3373), - [sym_generic_expression] = STATE(3373), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3373), - [sym_extension_expression] = STATE(3373), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3373), - [sym_parenthesized_expression] = STATE(3365), - [sym_char_literal] = STATE(3235), - [sym_concatenated_string] = STATE(3235), - [sym_string_literal] = STATE(2358), - [sym_null] = STATE(3373), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7814), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3373), - [sym_raw_string_literal] = STATE(2358), - [sym_co_await_expression] = STATE(3373), - [sym_new_expression] = STATE(3373), - [sym_delete_expression] = STATE(3373), - [sym_requires_clause] = STATE(3373), - [sym_requires_expression] = STATE(3373), - [sym_lambda_expression] = STATE(3373), - [sym_lambda_capture_specifier] = STATE(5414), - [sym_fold_expression] = STATE(3373), - [sym_parameter_pack_expansion] = STATE(3373), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3365), - [sym_qualified_type_identifier] = STATE(7814), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2453), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4728), - [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(2455), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), - }, - [1127] = { - [sym_expression] = STATE(3163), - [sym__string] = STATE(3235), - [sym_conditional_expression] = STATE(3373), - [sym_assignment_expression] = STATE(3373), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3373), - [sym_binary_expression] = STATE(3373), - [sym_update_expression] = STATE(3373), - [sym_cast_expression] = STATE(3373), - [sym_sizeof_expression] = STATE(3373), - [sym_alignof_expression] = STATE(3373), - [sym_offsetof_expression] = STATE(3373), - [sym_generic_expression] = STATE(3373), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3373), - [sym_extension_expression] = STATE(3373), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3373), - [sym_parenthesized_expression] = STATE(3365), - [sym_char_literal] = STATE(3235), - [sym_concatenated_string] = STATE(3235), - [sym_string_literal] = STATE(2358), - [sym_null] = STATE(3373), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7814), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3373), - [sym_raw_string_literal] = STATE(2358), - [sym_co_await_expression] = STATE(3373), - [sym_new_expression] = STATE(3373), - [sym_delete_expression] = STATE(3373), - [sym_requires_clause] = STATE(3373), - [sym_requires_expression] = STATE(3373), - [sym_lambda_expression] = STATE(3373), - [sym_lambda_capture_specifier] = STATE(5414), - [sym_fold_expression] = STATE(3373), - [sym_parameter_pack_expansion] = STATE(3373), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3365), - [sym_qualified_type_identifier] = STATE(7814), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2453), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4722), - [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(2455), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), - }, - [1128] = { - [sym_expression] = STATE(3160), - [sym__string] = STATE(3235), - [sym_conditional_expression] = STATE(3373), - [sym_assignment_expression] = STATE(3373), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3373), - [sym_binary_expression] = STATE(3373), - [sym_update_expression] = STATE(3373), - [sym_cast_expression] = STATE(3373), - [sym_sizeof_expression] = STATE(3373), - [sym_alignof_expression] = STATE(3373), - [sym_offsetof_expression] = STATE(3373), - [sym_generic_expression] = STATE(3373), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3373), - [sym_extension_expression] = STATE(3373), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3373), - [sym_parenthesized_expression] = STATE(3365), - [sym_char_literal] = STATE(3235), - [sym_concatenated_string] = STATE(3235), - [sym_string_literal] = STATE(2358), - [sym_null] = STATE(3373), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7814), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3373), - [sym_raw_string_literal] = STATE(2358), - [sym_co_await_expression] = STATE(3373), - [sym_new_expression] = STATE(3373), - [sym_delete_expression] = STATE(3373), - [sym_requires_clause] = STATE(3373), - [sym_requires_expression] = STATE(3373), - [sym_lambda_expression] = STATE(3373), - [sym_lambda_capture_specifier] = STATE(5414), - [sym_fold_expression] = STATE(3373), - [sym_parameter_pack_expansion] = STATE(3373), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3365), - [sym_qualified_type_identifier] = STATE(7814), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2453), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4713), - [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(2455), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), - }, - [1129] = { - [sym_expression] = STATE(3164), - [sym__string] = STATE(3235), - [sym_conditional_expression] = STATE(3373), - [sym_assignment_expression] = STATE(3373), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3373), - [sym_binary_expression] = STATE(3373), - [sym_update_expression] = STATE(3373), - [sym_cast_expression] = STATE(3373), - [sym_sizeof_expression] = STATE(3373), - [sym_alignof_expression] = STATE(3373), - [sym_offsetof_expression] = STATE(3373), - [sym_generic_expression] = STATE(3373), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3373), - [sym_extension_expression] = STATE(3373), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3373), - [sym_parenthesized_expression] = STATE(3365), - [sym_char_literal] = STATE(3235), - [sym_concatenated_string] = STATE(3235), - [sym_string_literal] = STATE(2358), - [sym_null] = STATE(3373), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7814), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3373), - [sym_raw_string_literal] = STATE(2358), - [sym_co_await_expression] = STATE(3373), - [sym_new_expression] = STATE(3373), - [sym_delete_expression] = STATE(3373), - [sym_requires_clause] = STATE(3373), - [sym_requires_expression] = STATE(3373), - [sym_lambda_expression] = STATE(3373), - [sym_lambda_capture_specifier] = STATE(5414), - [sym_fold_expression] = STATE(3373), - [sym_parameter_pack_expansion] = STATE(3373), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3365), - [sym_qualified_type_identifier] = STATE(7814), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2453), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4734), - [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(2455), - [anon_sym_COLON_COLON] = ACTIONS(1806), + [1183] = { + [sym_expression] = STATE(3593), + [sym__string] = STATE(3775), + [sym_conditional_expression] = STATE(3886), + [sym_assignment_expression] = STATE(3886), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(3886), + [sym_binary_expression] = STATE(3886), + [sym_update_expression] = STATE(3886), + [sym_cast_expression] = STATE(3886), + [sym_sizeof_expression] = STATE(3886), + [sym_alignof_expression] = STATE(3886), + [sym_offsetof_expression] = STATE(3886), + [sym_generic_expression] = STATE(3886), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(3886), + [sym_extension_expression] = STATE(3886), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(3886), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(3775), + [sym_concatenated_string] = STATE(3775), + [sym_string_literal] = STATE(2596), + [sym_null] = STATE(3886), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7756), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3886), + [sym_raw_string_literal] = STATE(2596), + [sym_co_await_expression] = STATE(3886), + [sym_new_expression] = STATE(3886), + [sym_delete_expression] = STATE(3886), + [sym_requires_clause] = STATE(3886), + [sym_requires_expression] = STATE(3886), + [sym_lambda_expression] = STATE(3886), + [sym_lambda_capture_specifier] = STATE(5492), + [sym_fold_expression] = STATE(3886), + [sym_parameter_pack_expansion] = STATE(3886), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(7756), + [sym_user_defined_literal] = STATE(3522), + [sym_identifier] = ACTIONS(2619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4845), + [anon_sym_LPAREN2] = ACTIONS(1888), + [anon_sym_BANG] = ACTIONS(1890), + [anon_sym_TILDE] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1892), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(2621), + [anon_sym_COLON_COLON] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), + [sym_primitive_type] = ACTIONS(2625), + [anon_sym_not] = ACTIONS(1892), + [anon_sym_compl] = ACTIONS(1892), + [anon_sym_DASH_DASH] = ACTIONS(1902), + [anon_sym_PLUS_PLUS] = ACTIONS(1902), + [anon_sym_sizeof] = ACTIONS(1904), + [anon_sym___alignof__] = ACTIONS(1906), + [anon_sym___alignof] = ACTIONS(1906), + [anon_sym__alignof] = ACTIONS(1906), + [anon_sym_alignof] = ACTIONS(1906), + [anon_sym__Alignof] = ACTIONS(1906), + [anon_sym_offsetof] = ACTIONS(1908), + [anon_sym__Generic] = ACTIONS(1910), + [anon_sym_asm] = ACTIONS(1912), + [anon_sym___asm__] = ACTIONS(1912), + [anon_sym___asm] = ACTIONS(1912), + [sym_number_literal] = ACTIONS(1914), + [anon_sym_L_SQUOTE] = ACTIONS(1916), + [anon_sym_u_SQUOTE] = ACTIONS(1916), + [anon_sym_U_SQUOTE] = ACTIONS(1916), + [anon_sym_u8_SQUOTE] = ACTIONS(1916), + [anon_sym_SQUOTE] = ACTIONS(1916), + [anon_sym_L_DQUOTE] = ACTIONS(1918), + [anon_sym_u_DQUOTE] = ACTIONS(1918), + [anon_sym_U_DQUOTE] = ACTIONS(1918), + [anon_sym_u8_DQUOTE] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1918), + [sym_true] = ACTIONS(1920), + [sym_false] = ACTIONS(1920), + [anon_sym_NULL] = ACTIONS(1922), + [anon_sym_nullptr] = ACTIONS(1922), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1924), + [anon_sym_R_DQUOTE] = ACTIONS(1926), + [anon_sym_LR_DQUOTE] = ACTIONS(1926), + [anon_sym_uR_DQUOTE] = ACTIONS(1926), + [anon_sym_UR_DQUOTE] = ACTIONS(1926), + [anon_sym_u8R_DQUOTE] = ACTIONS(1926), + [anon_sym_co_await] = ACTIONS(1928), + [anon_sym_new] = ACTIONS(1930), + [anon_sym_requires] = ACTIONS(1932), + [sym_this] = ACTIONS(1920), }, - [1130] = { - [sym_expression] = STATE(2398), - [sym__string] = STATE(2950), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(2950), - [sym_concatenated_string] = STATE(2950), - [sym_string_literal] = STATE(2034), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(2034), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), + [1184] = { + [sym_expression] = STATE(2432), + [sym__string] = STATE(2917), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(2917), + [sym_concatenated_string] = STATE(2917), + [sym_string_literal] = STATE(2114), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(2114), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), [sym_identifier] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(4555), + [anon_sym_LPAREN2] = ACTIONS(4565), [anon_sym_BANG] = ACTIONS(1994), [anon_sym_TILDE] = ACTIONS(1994), [anon_sym_DASH] = ACTIONS(1992), [anon_sym_PLUS] = ACTIONS(1992), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), [anon_sym___extension__] = ACTIONS(1996), [anon_sym_COLON_COLON] = ACTIONS(1998), [anon_sym_LBRACK] = ACTIONS(2020), - [anon_sym_RBRACK] = ACTIONS(4772), + [anon_sym_RBRACK] = ACTIONS(4848), [sym_primitive_type] = ACTIONS(1956), [anon_sym_not] = ACTIONS(1992), [anon_sym_compl] = ACTIONS(1992), - [anon_sym_DASH_DASH] = ACTIONS(3343), - [anon_sym_PLUS_PLUS] = ACTIONS(3343), + [anon_sym_DASH_DASH] = ACTIONS(3355), + [anon_sym_PLUS_PLUS] = ACTIONS(3355), [anon_sym_sizeof] = ACTIONS(2000), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), @@ -192506,7 +198941,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1976), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(2008), [anon_sym_R_DQUOTE] = ACTIONS(2010), [anon_sym_LR_DQUOTE] = ACTIONS(2010), @@ -192518,169 +198953,472 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [1131] = { - [sym_expression] = STATE(3158), - [sym__string] = STATE(3235), - [sym_conditional_expression] = STATE(3373), - [sym_assignment_expression] = STATE(3373), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3373), - [sym_binary_expression] = STATE(3373), - [sym_update_expression] = STATE(3373), - [sym_cast_expression] = STATE(3373), - [sym_sizeof_expression] = STATE(3373), - [sym_alignof_expression] = STATE(3373), - [sym_offsetof_expression] = STATE(3373), - [sym_generic_expression] = STATE(3373), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3373), - [sym_extension_expression] = STATE(3373), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3373), - [sym_parenthesized_expression] = STATE(3365), - [sym_char_literal] = STATE(3235), - [sym_concatenated_string] = STATE(3235), - [sym_string_literal] = STATE(2358), - [sym_null] = STATE(3373), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7814), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3373), - [sym_raw_string_literal] = STATE(2358), - [sym_co_await_expression] = STATE(3373), - [sym_new_expression] = STATE(3373), - [sym_delete_expression] = STATE(3373), - [sym_requires_clause] = STATE(3373), - [sym_requires_expression] = STATE(3373), - [sym_lambda_expression] = STATE(3373), - [sym_lambda_capture_specifier] = STATE(5414), - [sym_fold_expression] = STATE(3373), - [sym_parameter_pack_expansion] = STATE(3373), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3365), - [sym_qualified_type_identifier] = STATE(7814), - [sym_user_defined_literal] = STATE(3365), + [1185] = { + [sym_expression] = STATE(3185), + [sym__string] = STATE(3393), + [sym_conditional_expression] = STATE(3401), + [sym_assignment_expression] = STATE(3401), + [sym_pointer_expression] = STATE(3405), + [sym_unary_expression] = STATE(3401), + [sym_binary_expression] = STATE(3401), + [sym_update_expression] = STATE(3401), + [sym_cast_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3401), + [sym_alignof_expression] = STATE(3401), + [sym_offsetof_expression] = STATE(3401), + [sym_generic_expression] = STATE(3401), + [sym_subscript_expression] = STATE(3405), + [sym_call_expression] = STATE(3405), + [sym_gnu_asm_expression] = STATE(3401), + [sym_extension_expression] = STATE(3401), + [sym_field_expression] = STATE(3405), + [sym_compound_literal_expression] = STATE(3401), + [sym_parenthesized_expression] = STATE(3405), + [sym_char_literal] = STATE(3393), + [sym_concatenated_string] = STATE(3393), + [sym_string_literal] = STATE(2380), + [sym_null] = STATE(3401), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7745), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3401), + [sym_raw_string_literal] = STATE(2380), + [sym_co_await_expression] = STATE(3401), + [sym_new_expression] = STATE(3401), + [sym_delete_expression] = STATE(3401), + [sym_requires_clause] = STATE(3401), + [sym_requires_expression] = STATE(3401), + [sym_lambda_expression] = STATE(3401), + [sym_lambda_capture_specifier] = STATE(5494), + [sym_fold_expression] = STATE(3401), + [sym_parameter_pack_expansion] = STATE(3401), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3405), + [sym_qualified_type_identifier] = STATE(7745), + [sym_user_defined_literal] = STATE(3405), [sym_identifier] = ACTIONS(2453), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4707), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4850), [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), [anon_sym___extension__] = ACTIONS(2455), - [anon_sym_COLON_COLON] = ACTIONS(1806), + [anon_sym_COLON_COLON] = ACTIONS(1804), [anon_sym_LBRACK] = ACTIONS(2020), [sym_primitive_type] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), + [anon_sym_not] = ACTIONS(1796), + [anon_sym_compl] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_sizeof] = ACTIONS(1824), + [anon_sym___alignof__] = ACTIONS(1826), + [anon_sym___alignof] = ACTIONS(1826), + [anon_sym__alignof] = ACTIONS(1826), + [anon_sym_alignof] = ACTIONS(1826), + [anon_sym__Alignof] = ACTIONS(1826), + [anon_sym_offsetof] = ACTIONS(1828), + [anon_sym__Generic] = ACTIONS(1830), + [anon_sym_asm] = ACTIONS(1832), + [anon_sym___asm__] = ACTIONS(1832), + [anon_sym___asm] = ACTIONS(1832), + [sym_number_literal] = ACTIONS(1834), + [anon_sym_L_SQUOTE] = ACTIONS(1836), + [anon_sym_u_SQUOTE] = ACTIONS(1836), + [anon_sym_U_SQUOTE] = ACTIONS(1836), + [anon_sym_u8_SQUOTE] = ACTIONS(1836), + [anon_sym_SQUOTE] = ACTIONS(1836), + [anon_sym_L_DQUOTE] = ACTIONS(1838), + [anon_sym_u_DQUOTE] = ACTIONS(1838), + [anon_sym_U_DQUOTE] = ACTIONS(1838), + [anon_sym_u8_DQUOTE] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym_true] = ACTIONS(1840), + [sym_false] = ACTIONS(1840), + [anon_sym_NULL] = ACTIONS(1842), + [anon_sym_nullptr] = ACTIONS(1842), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1852), + [anon_sym_R_DQUOTE] = ACTIONS(1854), + [anon_sym_LR_DQUOTE] = ACTIONS(1854), + [anon_sym_uR_DQUOTE] = ACTIONS(1854), + [anon_sym_UR_DQUOTE] = ACTIONS(1854), + [anon_sym_u8R_DQUOTE] = ACTIONS(1854), + [anon_sym_co_await] = ACTIONS(1856), + [anon_sym_new] = ACTIONS(1858), + [anon_sym_requires] = ACTIONS(1860), + [sym_this] = ACTIONS(1840), }, - [1132] = { - [sym_expression] = STATE(2398), - [sym__string] = STATE(2950), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(2950), - [sym_concatenated_string] = STATE(2950), - [sym_string_literal] = STATE(2034), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(2034), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), + [1186] = { + [sym_expression] = STATE(3807), + [sym__string] = STATE(4455), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3366), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3366), + [sym_call_expression] = STATE(3366), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3366), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3366), + [sym_char_literal] = STATE(4455), + [sym_concatenated_string] = STATE(4455), + [sym_string_literal] = STATE(3406), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3406), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3366), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3366), + [sym_identifier] = ACTIONS(3833), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4752), + [anon_sym_LPAREN2] = ACTIONS(4853), + [anon_sym_BANG] = ACTIONS(3837), + [anon_sym_TILDE] = ACTIONS(3837), + [anon_sym_DASH] = ACTIONS(3835), + [anon_sym_PLUS] = ACTIONS(3835), + [anon_sym_STAR] = ACTIONS(4336), + [anon_sym_AMP] = ACTIONS(4336), + [anon_sym___extension__] = ACTIONS(3839), + [anon_sym_COLON_COLON] = ACTIONS(3841), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3835), + [anon_sym_compl] = ACTIONS(3835), + [anon_sym_DASH_DASH] = ACTIONS(4338), + [anon_sym_PLUS_PLUS] = ACTIONS(4338), + [anon_sym_sizeof] = ACTIONS(3843), + [anon_sym___alignof__] = ACTIONS(107), + [anon_sym___alignof] = ACTIONS(107), + [anon_sym__alignof] = ACTIONS(107), + [anon_sym_alignof] = ACTIONS(107), + [anon_sym__Alignof] = ACTIONS(107), + [anon_sym_offsetof] = ACTIONS(109), + [anon_sym__Generic] = ACTIONS(111), + [anon_sym_asm] = ACTIONS(113), + [anon_sym___asm__] = ACTIONS(113), + [anon_sym___asm] = ACTIONS(113), + [sym_number_literal] = ACTIONS(3845), + [anon_sym_L_SQUOTE] = ACTIONS(3847), + [anon_sym_u_SQUOTE] = ACTIONS(3847), + [anon_sym_U_SQUOTE] = ACTIONS(3847), + [anon_sym_u8_SQUOTE] = ACTIONS(3847), + [anon_sym_SQUOTE] = ACTIONS(3847), + [anon_sym_L_DQUOTE] = ACTIONS(3849), + [anon_sym_u_DQUOTE] = ACTIONS(3849), + [anon_sym_U_DQUOTE] = ACTIONS(3849), + [anon_sym_u8_DQUOTE] = ACTIONS(3849), + [anon_sym_DQUOTE] = ACTIONS(3849), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(123), + [anon_sym_nullptr] = ACTIONS(123), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3851), + [anon_sym_R_DQUOTE] = ACTIONS(3853), + [anon_sym_LR_DQUOTE] = ACTIONS(3853), + [anon_sym_uR_DQUOTE] = ACTIONS(3853), + [anon_sym_UR_DQUOTE] = ACTIONS(3853), + [anon_sym_u8R_DQUOTE] = ACTIONS(3853), + [anon_sym_co_await] = ACTIONS(3855), + [anon_sym_new] = ACTIONS(163), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), + }, + [1187] = { + [sym_expression] = STATE(3153), + [sym__string] = STATE(3393), + [sym_conditional_expression] = STATE(3401), + [sym_assignment_expression] = STATE(3401), + [sym_pointer_expression] = STATE(3405), + [sym_unary_expression] = STATE(3401), + [sym_binary_expression] = STATE(3401), + [sym_update_expression] = STATE(3401), + [sym_cast_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3401), + [sym_alignof_expression] = STATE(3401), + [sym_offsetof_expression] = STATE(3401), + [sym_generic_expression] = STATE(3401), + [sym_subscript_expression] = STATE(3405), + [sym_call_expression] = STATE(3405), + [sym_gnu_asm_expression] = STATE(3401), + [sym_extension_expression] = STATE(3401), + [sym_field_expression] = STATE(3405), + [sym_compound_literal_expression] = STATE(3401), + [sym_parenthesized_expression] = STATE(3405), + [sym_char_literal] = STATE(3393), + [sym_concatenated_string] = STATE(3393), + [sym_string_literal] = STATE(2380), + [sym_null] = STATE(3401), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7745), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3401), + [sym_raw_string_literal] = STATE(2380), + [sym_co_await_expression] = STATE(3401), + [sym_new_expression] = STATE(3401), + [sym_delete_expression] = STATE(3401), + [sym_requires_clause] = STATE(3401), + [sym_requires_expression] = STATE(3401), + [sym_lambda_expression] = STATE(3401), + [sym_lambda_capture_specifier] = STATE(5494), + [sym_fold_expression] = STATE(3401), + [sym_parameter_pack_expansion] = STATE(3401), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3405), + [sym_qualified_type_identifier] = STATE(7745), + [sym_user_defined_literal] = STATE(3405), + [sym_identifier] = ACTIONS(2453), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4787), + [anon_sym_LPAREN2] = ACTIONS(2018), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(2455), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2459), + [anon_sym_not] = ACTIONS(1796), + [anon_sym_compl] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_sizeof] = ACTIONS(1824), + [anon_sym___alignof__] = ACTIONS(1826), + [anon_sym___alignof] = ACTIONS(1826), + [anon_sym__alignof] = ACTIONS(1826), + [anon_sym_alignof] = ACTIONS(1826), + [anon_sym__Alignof] = ACTIONS(1826), + [anon_sym_offsetof] = ACTIONS(1828), + [anon_sym__Generic] = ACTIONS(1830), + [anon_sym_asm] = ACTIONS(1832), + [anon_sym___asm__] = ACTIONS(1832), + [anon_sym___asm] = ACTIONS(1832), + [sym_number_literal] = ACTIONS(1834), + [anon_sym_L_SQUOTE] = ACTIONS(1836), + [anon_sym_u_SQUOTE] = ACTIONS(1836), + [anon_sym_U_SQUOTE] = ACTIONS(1836), + [anon_sym_u8_SQUOTE] = ACTIONS(1836), + [anon_sym_SQUOTE] = ACTIONS(1836), + [anon_sym_L_DQUOTE] = ACTIONS(1838), + [anon_sym_u_DQUOTE] = ACTIONS(1838), + [anon_sym_U_DQUOTE] = ACTIONS(1838), + [anon_sym_u8_DQUOTE] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym_true] = ACTIONS(1840), + [sym_false] = ACTIONS(1840), + [anon_sym_NULL] = ACTIONS(1842), + [anon_sym_nullptr] = ACTIONS(1842), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1852), + [anon_sym_R_DQUOTE] = ACTIONS(1854), + [anon_sym_LR_DQUOTE] = ACTIONS(1854), + [anon_sym_uR_DQUOTE] = ACTIONS(1854), + [anon_sym_UR_DQUOTE] = ACTIONS(1854), + [anon_sym_u8R_DQUOTE] = ACTIONS(1854), + [anon_sym_co_await] = ACTIONS(1856), + [anon_sym_new] = ACTIONS(1858), + [anon_sym_requires] = ACTIONS(1860), + [sym_this] = ACTIONS(1840), + }, + [1188] = { + [sym_expression] = STATE(3153), + [sym__string] = STATE(3393), + [sym_conditional_expression] = STATE(3401), + [sym_assignment_expression] = STATE(3401), + [sym_pointer_expression] = STATE(3405), + [sym_unary_expression] = STATE(3401), + [sym_binary_expression] = STATE(3401), + [sym_update_expression] = STATE(3401), + [sym_cast_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3401), + [sym_alignof_expression] = STATE(3401), + [sym_offsetof_expression] = STATE(3401), + [sym_generic_expression] = STATE(3401), + [sym_subscript_expression] = STATE(3405), + [sym_call_expression] = STATE(3405), + [sym_gnu_asm_expression] = STATE(3401), + [sym_extension_expression] = STATE(3401), + [sym_field_expression] = STATE(3405), + [sym_compound_literal_expression] = STATE(3401), + [sym_parenthesized_expression] = STATE(3405), + [sym_char_literal] = STATE(3393), + [sym_concatenated_string] = STATE(3393), + [sym_string_literal] = STATE(2380), + [sym_null] = STATE(3401), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7745), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3401), + [sym_raw_string_literal] = STATE(2380), + [sym_co_await_expression] = STATE(3401), + [sym_new_expression] = STATE(3401), + [sym_delete_expression] = STATE(3401), + [sym_requires_clause] = STATE(3401), + [sym_requires_expression] = STATE(3401), + [sym_lambda_expression] = STATE(3401), + [sym_lambda_capture_specifier] = STATE(5494), + [sym_fold_expression] = STATE(3401), + [sym_parameter_pack_expansion] = STATE(3401), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3405), + [sym_qualified_type_identifier] = STATE(7745), + [sym_user_defined_literal] = STATE(3405), + [sym_identifier] = ACTIONS(2453), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4809), + [anon_sym_LPAREN2] = ACTIONS(2018), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(2455), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2459), + [anon_sym_not] = ACTIONS(1796), + [anon_sym_compl] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_sizeof] = ACTIONS(1824), + [anon_sym___alignof__] = ACTIONS(1826), + [anon_sym___alignof] = ACTIONS(1826), + [anon_sym__alignof] = ACTIONS(1826), + [anon_sym_alignof] = ACTIONS(1826), + [anon_sym__Alignof] = ACTIONS(1826), + [anon_sym_offsetof] = ACTIONS(1828), + [anon_sym__Generic] = ACTIONS(1830), + [anon_sym_asm] = ACTIONS(1832), + [anon_sym___asm__] = ACTIONS(1832), + [anon_sym___asm] = ACTIONS(1832), + [sym_number_literal] = ACTIONS(1834), + [anon_sym_L_SQUOTE] = ACTIONS(1836), + [anon_sym_u_SQUOTE] = ACTIONS(1836), + [anon_sym_U_SQUOTE] = ACTIONS(1836), + [anon_sym_u8_SQUOTE] = ACTIONS(1836), + [anon_sym_SQUOTE] = ACTIONS(1836), + [anon_sym_L_DQUOTE] = ACTIONS(1838), + [anon_sym_u_DQUOTE] = ACTIONS(1838), + [anon_sym_U_DQUOTE] = ACTIONS(1838), + [anon_sym_u8_DQUOTE] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym_true] = ACTIONS(1840), + [sym_false] = ACTIONS(1840), + [anon_sym_NULL] = ACTIONS(1842), + [anon_sym_nullptr] = ACTIONS(1842), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1852), + [anon_sym_R_DQUOTE] = ACTIONS(1854), + [anon_sym_LR_DQUOTE] = ACTIONS(1854), + [anon_sym_uR_DQUOTE] = ACTIONS(1854), + [anon_sym_UR_DQUOTE] = ACTIONS(1854), + [anon_sym_u8R_DQUOTE] = ACTIONS(1854), + [anon_sym_co_await] = ACTIONS(1856), + [anon_sym_new] = ACTIONS(1858), + [anon_sym_requires] = ACTIONS(1860), + [sym_this] = ACTIONS(1840), + }, + [1189] = { + [sym_expression] = STATE(3330), + [sym__string] = STATE(2917), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(2917), + [sym_concatenated_string] = STATE(2917), + [sym_string_literal] = STATE(2114), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(2114), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), [sym_identifier] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(4555), - [anon_sym_BANG] = ACTIONS(1994), - [anon_sym_TILDE] = ACTIONS(1994), - [anon_sym_DASH] = ACTIONS(1992), - [anon_sym_PLUS] = ACTIONS(1992), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(1996), - [anon_sym_COLON_COLON] = ACTIONS(1998), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4824), + [anon_sym_LPAREN2] = ACTIONS(4855), + [anon_sym_BANG] = ACTIONS(2535), + [anon_sym_TILDE] = ACTIONS(2535), + [anon_sym_DASH] = ACTIONS(2533), + [anon_sym_PLUS] = ACTIONS(2533), + [anon_sym_STAR] = ACTIONS(4366), + [anon_sym_AMP] = ACTIONS(4366), + [anon_sym___extension__] = ACTIONS(2537), + [anon_sym_COLON_COLON] = ACTIONS(2539), [anon_sym_LBRACK] = ACTIONS(2020), - [anon_sym_RBRACK] = ACTIONS(4774), [sym_primitive_type] = ACTIONS(1956), - [anon_sym_not] = ACTIONS(1992), - [anon_sym_compl] = ACTIONS(1992), - [anon_sym_DASH_DASH] = ACTIONS(3343), - [anon_sym_PLUS_PLUS] = ACTIONS(3343), - [anon_sym_sizeof] = ACTIONS(2000), + [anon_sym_not] = ACTIONS(2533), + [anon_sym_compl] = ACTIONS(2533), + [anon_sym_DASH_DASH] = ACTIONS(4498), + [anon_sym_PLUS_PLUS] = ACTIONS(4498), + [anon_sym_sizeof] = ACTIONS(2541), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), [anon_sym__alignof] = ACTIONS(1960), @@ -192708,79 +199446,180 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1976), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(2008), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(2543), [anon_sym_R_DQUOTE] = ACTIONS(2010), [anon_sym_LR_DQUOTE] = ACTIONS(2010), [anon_sym_uR_DQUOTE] = ACTIONS(2010), [anon_sym_UR_DQUOTE] = ACTIONS(2010), [anon_sym_u8R_DQUOTE] = ACTIONS(2010), - [anon_sym_co_await] = ACTIONS(2012), + [anon_sym_co_await] = ACTIONS(2545), [anon_sym_new] = ACTIONS(2014), [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [1133] = { - [sym_expression] = STATE(2398), - [sym__string] = STATE(2950), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(2950), - [sym_concatenated_string] = STATE(2950), - [sym_string_literal] = STATE(2034), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(2034), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), + [1190] = { + [sym_expression] = STATE(3582), + [sym__string] = STATE(3775), + [sym_conditional_expression] = STATE(3886), + [sym_assignment_expression] = STATE(3886), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(3886), + [sym_binary_expression] = STATE(3886), + [sym_update_expression] = STATE(3886), + [sym_cast_expression] = STATE(3886), + [sym_sizeof_expression] = STATE(3886), + [sym_alignof_expression] = STATE(3886), + [sym_offsetof_expression] = STATE(3886), + [sym_generic_expression] = STATE(3886), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(3886), + [sym_extension_expression] = STATE(3886), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(3886), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(3775), + [sym_concatenated_string] = STATE(3775), + [sym_string_literal] = STATE(2596), + [sym_null] = STATE(3886), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7756), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3886), + [sym_raw_string_literal] = STATE(2596), + [sym_co_await_expression] = STATE(3886), + [sym_new_expression] = STATE(3886), + [sym_delete_expression] = STATE(3886), + [sym_requires_clause] = STATE(3886), + [sym_requires_expression] = STATE(3886), + [sym_lambda_expression] = STATE(3886), + [sym_lambda_capture_specifier] = STATE(5492), + [sym_fold_expression] = STATE(3886), + [sym_parameter_pack_expansion] = STATE(3886), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(7756), + [sym_user_defined_literal] = STATE(3522), + [sym_identifier] = ACTIONS(2619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4701), + [anon_sym_LPAREN2] = ACTIONS(1888), + [anon_sym_BANG] = ACTIONS(1890), + [anon_sym_TILDE] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1892), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(2621), + [anon_sym_COLON_COLON] = ACTIONS(1898), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2625), + [anon_sym_not] = ACTIONS(1892), + [anon_sym_compl] = ACTIONS(1892), + [anon_sym_DASH_DASH] = ACTIONS(1902), + [anon_sym_PLUS_PLUS] = ACTIONS(1902), + [anon_sym_sizeof] = ACTIONS(1904), + [anon_sym___alignof__] = ACTIONS(1906), + [anon_sym___alignof] = ACTIONS(1906), + [anon_sym__alignof] = ACTIONS(1906), + [anon_sym_alignof] = ACTIONS(1906), + [anon_sym__Alignof] = ACTIONS(1906), + [anon_sym_offsetof] = ACTIONS(1908), + [anon_sym__Generic] = ACTIONS(1910), + [anon_sym_asm] = ACTIONS(1912), + [anon_sym___asm__] = ACTIONS(1912), + [anon_sym___asm] = ACTIONS(1912), + [sym_number_literal] = ACTIONS(1914), + [anon_sym_L_SQUOTE] = ACTIONS(1916), + [anon_sym_u_SQUOTE] = ACTIONS(1916), + [anon_sym_U_SQUOTE] = ACTIONS(1916), + [anon_sym_u8_SQUOTE] = ACTIONS(1916), + [anon_sym_SQUOTE] = ACTIONS(1916), + [anon_sym_L_DQUOTE] = ACTIONS(1918), + [anon_sym_u_DQUOTE] = ACTIONS(1918), + [anon_sym_U_DQUOTE] = ACTIONS(1918), + [anon_sym_u8_DQUOTE] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1918), + [sym_true] = ACTIONS(1920), + [sym_false] = ACTIONS(1920), + [anon_sym_NULL] = ACTIONS(1922), + [anon_sym_nullptr] = ACTIONS(1922), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1924), + [anon_sym_R_DQUOTE] = ACTIONS(1926), + [anon_sym_LR_DQUOTE] = ACTIONS(1926), + [anon_sym_uR_DQUOTE] = ACTIONS(1926), + [anon_sym_UR_DQUOTE] = ACTIONS(1926), + [anon_sym_u8R_DQUOTE] = ACTIONS(1926), + [anon_sym_co_await] = ACTIONS(1928), + [anon_sym_new] = ACTIONS(1930), + [anon_sym_requires] = ACTIONS(1932), + [sym_this] = ACTIONS(1920), + }, + [1191] = { + [sym_expression] = STATE(2432), + [sym__string] = STATE(2917), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(2917), + [sym_concatenated_string] = STATE(2917), + [sym_string_literal] = STATE(2114), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(2114), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), [sym_identifier] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(4555), + [anon_sym_LPAREN2] = ACTIONS(4565), [anon_sym_BANG] = ACTIONS(1994), [anon_sym_TILDE] = ACTIONS(1994), [anon_sym_DASH] = ACTIONS(1992), [anon_sym_PLUS] = ACTIONS(1992), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), [anon_sym___extension__] = ACTIONS(1996), [anon_sym_COLON_COLON] = ACTIONS(1998), [anon_sym_LBRACK] = ACTIONS(2020), - [anon_sym_RBRACK] = ACTIONS(4776), + [anon_sym_RBRACK] = ACTIONS(4857), [sym_primitive_type] = ACTIONS(1956), [anon_sym_not] = ACTIONS(1992), [anon_sym_compl] = ACTIONS(1992), - [anon_sym_DASH_DASH] = ACTIONS(3343), - [anon_sym_PLUS_PLUS] = ACTIONS(3343), + [anon_sym_DASH_DASH] = ACTIONS(3355), + [anon_sym_PLUS_PLUS] = ACTIONS(3355), [anon_sym_sizeof] = ACTIONS(2000), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), @@ -192809,7 +199648,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1976), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(2008), [anon_sym_R_DQUOTE] = ACTIONS(2010), [anon_sym_LR_DQUOTE] = ACTIONS(2010), @@ -192821,67 +199660,168 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [1134] = { - [sym_expression] = STATE(2398), - [sym__string] = STATE(2950), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(2950), - [sym_concatenated_string] = STATE(2950), - [sym_string_literal] = STATE(2034), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(2034), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), + [1192] = { + [sym_expression] = STATE(3182), + [sym__string] = STATE(3393), + [sym_conditional_expression] = STATE(3401), + [sym_assignment_expression] = STATE(3401), + [sym_pointer_expression] = STATE(3405), + [sym_unary_expression] = STATE(3401), + [sym_binary_expression] = STATE(3401), + [sym_update_expression] = STATE(3401), + [sym_cast_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3401), + [sym_alignof_expression] = STATE(3401), + [sym_offsetof_expression] = STATE(3401), + [sym_generic_expression] = STATE(3401), + [sym_subscript_expression] = STATE(3405), + [sym_call_expression] = STATE(3405), + [sym_gnu_asm_expression] = STATE(3401), + [sym_extension_expression] = STATE(3401), + [sym_field_expression] = STATE(3405), + [sym_compound_literal_expression] = STATE(3401), + [sym_parenthesized_expression] = STATE(3405), + [sym_char_literal] = STATE(3393), + [sym_concatenated_string] = STATE(3393), + [sym_string_literal] = STATE(2380), + [sym_null] = STATE(3401), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7745), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3401), + [sym_raw_string_literal] = STATE(2380), + [sym_co_await_expression] = STATE(3401), + [sym_new_expression] = STATE(3401), + [sym_delete_expression] = STATE(3401), + [sym_requires_clause] = STATE(3401), + [sym_requires_expression] = STATE(3401), + [sym_lambda_expression] = STATE(3401), + [sym_lambda_capture_specifier] = STATE(5494), + [sym_fold_expression] = STATE(3401), + [sym_parameter_pack_expansion] = STATE(3401), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3405), + [sym_qualified_type_identifier] = STATE(7745), + [sym_user_defined_literal] = STATE(3405), + [sym_identifier] = ACTIONS(2453), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4845), + [anon_sym_LPAREN2] = ACTIONS(2018), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(2455), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2459), + [anon_sym_not] = ACTIONS(1796), + [anon_sym_compl] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_sizeof] = ACTIONS(1824), + [anon_sym___alignof__] = ACTIONS(1826), + [anon_sym___alignof] = ACTIONS(1826), + [anon_sym__alignof] = ACTIONS(1826), + [anon_sym_alignof] = ACTIONS(1826), + [anon_sym__Alignof] = ACTIONS(1826), + [anon_sym_offsetof] = ACTIONS(1828), + [anon_sym__Generic] = ACTIONS(1830), + [anon_sym_asm] = ACTIONS(1832), + [anon_sym___asm__] = ACTIONS(1832), + [anon_sym___asm] = ACTIONS(1832), + [sym_number_literal] = ACTIONS(1834), + [anon_sym_L_SQUOTE] = ACTIONS(1836), + [anon_sym_u_SQUOTE] = ACTIONS(1836), + [anon_sym_U_SQUOTE] = ACTIONS(1836), + [anon_sym_u8_SQUOTE] = ACTIONS(1836), + [anon_sym_SQUOTE] = ACTIONS(1836), + [anon_sym_L_DQUOTE] = ACTIONS(1838), + [anon_sym_u_DQUOTE] = ACTIONS(1838), + [anon_sym_U_DQUOTE] = ACTIONS(1838), + [anon_sym_u8_DQUOTE] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym_true] = ACTIONS(1840), + [sym_false] = ACTIONS(1840), + [anon_sym_NULL] = ACTIONS(1842), + [anon_sym_nullptr] = ACTIONS(1842), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1852), + [anon_sym_R_DQUOTE] = ACTIONS(1854), + [anon_sym_LR_DQUOTE] = ACTIONS(1854), + [anon_sym_uR_DQUOTE] = ACTIONS(1854), + [anon_sym_UR_DQUOTE] = ACTIONS(1854), + [anon_sym_u8R_DQUOTE] = ACTIONS(1854), + [anon_sym_co_await] = ACTIONS(1856), + [anon_sym_new] = ACTIONS(1858), + [anon_sym_requires] = ACTIONS(1860), + [sym_this] = ACTIONS(1840), + }, + [1193] = { + [sym_expression] = STATE(2432), + [sym__string] = STATE(2917), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(2917), + [sym_concatenated_string] = STATE(2917), + [sym_string_literal] = STATE(2114), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(2114), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), [sym_identifier] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(4555), + [anon_sym_LPAREN2] = ACTIONS(4565), [anon_sym_BANG] = ACTIONS(1994), [anon_sym_TILDE] = ACTIONS(1994), [anon_sym_DASH] = ACTIONS(1992), [anon_sym_PLUS] = ACTIONS(1992), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), [anon_sym___extension__] = ACTIONS(1996), [anon_sym_COLON_COLON] = ACTIONS(1998), [anon_sym_LBRACK] = ACTIONS(2020), - [anon_sym_RBRACK] = ACTIONS(4778), + [anon_sym_RBRACK] = ACTIONS(4859), [sym_primitive_type] = ACTIONS(1956), [anon_sym_not] = ACTIONS(1992), [anon_sym_compl] = ACTIONS(1992), - [anon_sym_DASH_DASH] = ACTIONS(3343), - [anon_sym_PLUS_PLUS] = ACTIONS(3343), + [anon_sym_DASH_DASH] = ACTIONS(3355), + [anon_sym_PLUS_PLUS] = ACTIONS(3355), [anon_sym_sizeof] = ACTIONS(2000), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), @@ -192910,7 +199850,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1976), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(2008), [anon_sym_R_DQUOTE] = ACTIONS(2010), [anon_sym_LR_DQUOTE] = ACTIONS(2010), @@ -192922,62 +199862,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [1135] = { - [sym_expression] = STATE(4686), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1194] = { + [sym_expression] = STATE(4430), + [sym__string] = STATE(4294), + [sym_comma_expression] = STATE(7587), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -193009,9 +199950,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(123), [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4780), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -193023,67 +199963,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1136] = { - [sym_expression] = STATE(2398), - [sym__string] = STATE(2950), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(2950), - [sym_concatenated_string] = STATE(2950), - [sym_string_literal] = STATE(2034), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(2034), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), + [1195] = { + [sym_expression] = STATE(2432), + [sym__string] = STATE(2917), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(2917), + [sym_concatenated_string] = STATE(2917), + [sym_string_literal] = STATE(2114), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(2114), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), [sym_identifier] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(4555), + [anon_sym_LPAREN2] = ACTIONS(4565), [anon_sym_BANG] = ACTIONS(1994), [anon_sym_TILDE] = ACTIONS(1994), [anon_sym_DASH] = ACTIONS(1992), [anon_sym_PLUS] = ACTIONS(1992), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), [anon_sym___extension__] = ACTIONS(1996), [anon_sym_COLON_COLON] = ACTIONS(1998), [anon_sym_LBRACK] = ACTIONS(2020), - [anon_sym_RBRACK] = ACTIONS(4782), + [anon_sym_RBRACK] = ACTIONS(4861), [sym_primitive_type] = ACTIONS(1956), [anon_sym_not] = ACTIONS(1992), [anon_sym_compl] = ACTIONS(1992), - [anon_sym_DASH_DASH] = ACTIONS(3343), - [anon_sym_PLUS_PLUS] = ACTIONS(3343), + [anon_sym_DASH_DASH] = ACTIONS(3355), + [anon_sym_PLUS_PLUS] = ACTIONS(3355), [anon_sym_sizeof] = ACTIONS(2000), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), @@ -193112,7 +200052,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1976), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(2008), [anon_sym_R_DQUOTE] = ACTIONS(2010), [anon_sym_LR_DQUOTE] = ACTIONS(2010), @@ -193124,62 +200064,265 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [1137] = { - [sym_expression] = STATE(4767), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1196] = { + [sym_expression] = STATE(2432), + [sym__string] = STATE(2917), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(2917), + [sym_concatenated_string] = STATE(2917), + [sym_string_literal] = STATE(2114), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(2114), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), + [sym_identifier] = ACTIONS(1990), + [anon_sym_LPAREN2] = ACTIONS(4565), + [anon_sym_BANG] = ACTIONS(1994), + [anon_sym_TILDE] = ACTIONS(1994), + [anon_sym_DASH] = ACTIONS(1992), + [anon_sym_PLUS] = ACTIONS(1992), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(1996), + [anon_sym_COLON_COLON] = ACTIONS(1998), + [anon_sym_LBRACK] = ACTIONS(2020), + [anon_sym_RBRACK] = ACTIONS(4863), + [sym_primitive_type] = ACTIONS(1956), + [anon_sym_not] = ACTIONS(1992), + [anon_sym_compl] = ACTIONS(1992), + [anon_sym_DASH_DASH] = ACTIONS(3355), + [anon_sym_PLUS_PLUS] = ACTIONS(3355), + [anon_sym_sizeof] = ACTIONS(2000), + [anon_sym___alignof__] = ACTIONS(1960), + [anon_sym___alignof] = ACTIONS(1960), + [anon_sym__alignof] = ACTIONS(1960), + [anon_sym_alignof] = ACTIONS(1960), + [anon_sym__Alignof] = ACTIONS(1960), + [anon_sym_offsetof] = ACTIONS(1962), + [anon_sym__Generic] = ACTIONS(1964), + [anon_sym_asm] = ACTIONS(1966), + [anon_sym___asm__] = ACTIONS(1966), + [anon_sym___asm] = ACTIONS(1966), + [sym_number_literal] = ACTIONS(2002), + [anon_sym_L_SQUOTE] = ACTIONS(2004), + [anon_sym_u_SQUOTE] = ACTIONS(2004), + [anon_sym_U_SQUOTE] = ACTIONS(2004), + [anon_sym_u8_SQUOTE] = ACTIONS(2004), + [anon_sym_SQUOTE] = ACTIONS(2004), + [anon_sym_L_DQUOTE] = ACTIONS(2006), + [anon_sym_u_DQUOTE] = ACTIONS(2006), + [anon_sym_U_DQUOTE] = ACTIONS(2006), + [anon_sym_u8_DQUOTE] = ACTIONS(2006), + [anon_sym_DQUOTE] = ACTIONS(2006), + [sym_true] = ACTIONS(1974), + [sym_false] = ACTIONS(1974), + [anon_sym_NULL] = ACTIONS(1976), + [anon_sym_nullptr] = ACTIONS(1976), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(2008), + [anon_sym_R_DQUOTE] = ACTIONS(2010), + [anon_sym_LR_DQUOTE] = ACTIONS(2010), + [anon_sym_uR_DQUOTE] = ACTIONS(2010), + [anon_sym_UR_DQUOTE] = ACTIONS(2010), + [anon_sym_u8R_DQUOTE] = ACTIONS(2010), + [anon_sym_co_await] = ACTIONS(2012), + [anon_sym_new] = ACTIONS(2014), + [anon_sym_requires] = ACTIONS(1988), + [sym_this] = ACTIONS(1974), + }, + [1197] = { + [sym_expression] = STATE(2402), + [sym__string] = STATE(2917), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(2917), + [sym_concatenated_string] = STATE(2917), + [sym_string_literal] = STATE(2114), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(2114), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), + [sym_identifier] = ACTIONS(1990), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4824), + [anon_sym_LPAREN2] = ACTIONS(4865), + [anon_sym_BANG] = ACTIONS(1994), + [anon_sym_TILDE] = ACTIONS(1994), + [anon_sym_DASH] = ACTIONS(1992), + [anon_sym_PLUS] = ACTIONS(1992), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(1996), + [anon_sym_COLON_COLON] = ACTIONS(1998), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(1956), + [anon_sym_not] = ACTIONS(1992), + [anon_sym_compl] = ACTIONS(1992), + [anon_sym_DASH_DASH] = ACTIONS(3355), + [anon_sym_PLUS_PLUS] = ACTIONS(3355), + [anon_sym_sizeof] = ACTIONS(2000), + [anon_sym___alignof__] = ACTIONS(1960), + [anon_sym___alignof] = ACTIONS(1960), + [anon_sym__alignof] = ACTIONS(1960), + [anon_sym_alignof] = ACTIONS(1960), + [anon_sym__Alignof] = ACTIONS(1960), + [anon_sym_offsetof] = ACTIONS(1962), + [anon_sym__Generic] = ACTIONS(1964), + [anon_sym_asm] = ACTIONS(1966), + [anon_sym___asm__] = ACTIONS(1966), + [anon_sym___asm] = ACTIONS(1966), + [sym_number_literal] = ACTIONS(2002), + [anon_sym_L_SQUOTE] = ACTIONS(2004), + [anon_sym_u_SQUOTE] = ACTIONS(2004), + [anon_sym_U_SQUOTE] = ACTIONS(2004), + [anon_sym_u8_SQUOTE] = ACTIONS(2004), + [anon_sym_SQUOTE] = ACTIONS(2004), + [anon_sym_L_DQUOTE] = ACTIONS(2006), + [anon_sym_u_DQUOTE] = ACTIONS(2006), + [anon_sym_U_DQUOTE] = ACTIONS(2006), + [anon_sym_u8_DQUOTE] = ACTIONS(2006), + [anon_sym_DQUOTE] = ACTIONS(2006), + [sym_true] = ACTIONS(1974), + [sym_false] = ACTIONS(1974), + [anon_sym_NULL] = ACTIONS(1976), + [anon_sym_nullptr] = ACTIONS(1976), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(2008), + [anon_sym_R_DQUOTE] = ACTIONS(2010), + [anon_sym_LR_DQUOTE] = ACTIONS(2010), + [anon_sym_uR_DQUOTE] = ACTIONS(2010), + [anon_sym_UR_DQUOTE] = ACTIONS(2010), + [anon_sym_u8R_DQUOTE] = ACTIONS(2010), + [anon_sym_co_await] = ACTIONS(2012), + [anon_sym_new] = ACTIONS(2014), + [anon_sym_requires] = ACTIONS(1988), + [sym_this] = ACTIONS(1974), + }, + [1198] = { + [sym_expression] = STATE(4684), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(4867), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -193211,9 +200354,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(123), [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4784), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -193225,63 +200367,265 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1138] = { - [sym_expression] = STATE(3755), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4786), - [anon_sym_LPAREN2] = ACTIONS(4788), + [1199] = { + [sym_expression] = STATE(3607), + [sym__string] = STATE(3775), + [sym_conditional_expression] = STATE(3886), + [sym_assignment_expression] = STATE(3886), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(3886), + [sym_binary_expression] = STATE(3886), + [sym_update_expression] = STATE(3886), + [sym_cast_expression] = STATE(3886), + [sym_sizeof_expression] = STATE(3886), + [sym_alignof_expression] = STATE(3886), + [sym_offsetof_expression] = STATE(3886), + [sym_generic_expression] = STATE(3886), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(3886), + [sym_extension_expression] = STATE(3886), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(3886), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(3775), + [sym_concatenated_string] = STATE(3775), + [sym_string_literal] = STATE(2596), + [sym_null] = STATE(3886), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7756), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3886), + [sym_raw_string_literal] = STATE(2596), + [sym_co_await_expression] = STATE(3886), + [sym_new_expression] = STATE(3886), + [sym_delete_expression] = STATE(3886), + [sym_requires_clause] = STATE(3886), + [sym_requires_expression] = STATE(3886), + [sym_lambda_expression] = STATE(3886), + [sym_lambda_capture_specifier] = STATE(5492), + [sym_fold_expression] = STATE(3886), + [sym_parameter_pack_expansion] = STATE(3886), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(7756), + [sym_user_defined_literal] = STATE(3522), + [sym_identifier] = ACTIONS(2619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4764), + [anon_sym_LPAREN2] = ACTIONS(1888), + [anon_sym_BANG] = ACTIONS(1890), + [anon_sym_TILDE] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1892), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(2621), + [anon_sym_COLON_COLON] = ACTIONS(1898), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2625), + [anon_sym_not] = ACTIONS(1892), + [anon_sym_compl] = ACTIONS(1892), + [anon_sym_DASH_DASH] = ACTIONS(1902), + [anon_sym_PLUS_PLUS] = ACTIONS(1902), + [anon_sym_sizeof] = ACTIONS(1904), + [anon_sym___alignof__] = ACTIONS(1906), + [anon_sym___alignof] = ACTIONS(1906), + [anon_sym__alignof] = ACTIONS(1906), + [anon_sym_alignof] = ACTIONS(1906), + [anon_sym__Alignof] = ACTIONS(1906), + [anon_sym_offsetof] = ACTIONS(1908), + [anon_sym__Generic] = ACTIONS(1910), + [anon_sym_asm] = ACTIONS(1912), + [anon_sym___asm__] = ACTIONS(1912), + [anon_sym___asm] = ACTIONS(1912), + [sym_number_literal] = ACTIONS(1914), + [anon_sym_L_SQUOTE] = ACTIONS(1916), + [anon_sym_u_SQUOTE] = ACTIONS(1916), + [anon_sym_U_SQUOTE] = ACTIONS(1916), + [anon_sym_u8_SQUOTE] = ACTIONS(1916), + [anon_sym_SQUOTE] = ACTIONS(1916), + [anon_sym_L_DQUOTE] = ACTIONS(1918), + [anon_sym_u_DQUOTE] = ACTIONS(1918), + [anon_sym_U_DQUOTE] = ACTIONS(1918), + [anon_sym_u8_DQUOTE] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1918), + [sym_true] = ACTIONS(1920), + [sym_false] = ACTIONS(1920), + [anon_sym_NULL] = ACTIONS(1922), + [anon_sym_nullptr] = ACTIONS(1922), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1924), + [anon_sym_R_DQUOTE] = ACTIONS(1926), + [anon_sym_LR_DQUOTE] = ACTIONS(1926), + [anon_sym_uR_DQUOTE] = ACTIONS(1926), + [anon_sym_UR_DQUOTE] = ACTIONS(1926), + [anon_sym_u8R_DQUOTE] = ACTIONS(1926), + [anon_sym_co_await] = ACTIONS(1928), + [anon_sym_new] = ACTIONS(1930), + [anon_sym_requires] = ACTIONS(1932), + [sym_this] = ACTIONS(1920), + }, + [1200] = { + [sym_expression] = STATE(2432), + [sym__string] = STATE(2917), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(2917), + [sym_concatenated_string] = STATE(2917), + [sym_string_literal] = STATE(2114), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(2114), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), + [sym_identifier] = ACTIONS(1990), + [anon_sym_LPAREN2] = ACTIONS(4565), + [anon_sym_BANG] = ACTIONS(1994), + [anon_sym_TILDE] = ACTIONS(1994), + [anon_sym_DASH] = ACTIONS(1992), + [anon_sym_PLUS] = ACTIONS(1992), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(1996), + [anon_sym_COLON_COLON] = ACTIONS(1998), + [anon_sym_LBRACK] = ACTIONS(2020), + [anon_sym_RBRACK] = ACTIONS(4869), + [sym_primitive_type] = ACTIONS(1956), + [anon_sym_not] = ACTIONS(1992), + [anon_sym_compl] = ACTIONS(1992), + [anon_sym_DASH_DASH] = ACTIONS(3355), + [anon_sym_PLUS_PLUS] = ACTIONS(3355), + [anon_sym_sizeof] = ACTIONS(2000), + [anon_sym___alignof__] = ACTIONS(1960), + [anon_sym___alignof] = ACTIONS(1960), + [anon_sym__alignof] = ACTIONS(1960), + [anon_sym_alignof] = ACTIONS(1960), + [anon_sym__Alignof] = ACTIONS(1960), + [anon_sym_offsetof] = ACTIONS(1962), + [anon_sym__Generic] = ACTIONS(1964), + [anon_sym_asm] = ACTIONS(1966), + [anon_sym___asm__] = ACTIONS(1966), + [anon_sym___asm] = ACTIONS(1966), + [sym_number_literal] = ACTIONS(2002), + [anon_sym_L_SQUOTE] = ACTIONS(2004), + [anon_sym_u_SQUOTE] = ACTIONS(2004), + [anon_sym_U_SQUOTE] = ACTIONS(2004), + [anon_sym_u8_SQUOTE] = ACTIONS(2004), + [anon_sym_SQUOTE] = ACTIONS(2004), + [anon_sym_L_DQUOTE] = ACTIONS(2006), + [anon_sym_u_DQUOTE] = ACTIONS(2006), + [anon_sym_U_DQUOTE] = ACTIONS(2006), + [anon_sym_u8_DQUOTE] = ACTIONS(2006), + [anon_sym_DQUOTE] = ACTIONS(2006), + [sym_true] = ACTIONS(1974), + [sym_false] = ACTIONS(1974), + [anon_sym_NULL] = ACTIONS(1976), + [anon_sym_nullptr] = ACTIONS(1976), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(2008), + [anon_sym_R_DQUOTE] = ACTIONS(2010), + [anon_sym_LR_DQUOTE] = ACTIONS(2010), + [anon_sym_uR_DQUOTE] = ACTIONS(2010), + [anon_sym_UR_DQUOTE] = ACTIONS(2010), + [anon_sym_u8R_DQUOTE] = ACTIONS(2010), + [anon_sym_co_await] = ACTIONS(2012), + [anon_sym_new] = ACTIONS(2014), + [anon_sym_requires] = ACTIONS(1988), + [sym_this] = ACTIONS(1974), + }, + [1201] = { + [sym_expression] = STATE(4703), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(4871), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -193314,7 +200658,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -193326,466 +200670,164 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1139] = { - [sym_expression] = STATE(3158), - [sym__string] = STATE(3235), - [sym_conditional_expression] = STATE(3373), - [sym_assignment_expression] = STATE(3373), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3373), - [sym_binary_expression] = STATE(3373), - [sym_update_expression] = STATE(3373), - [sym_cast_expression] = STATE(3373), - [sym_sizeof_expression] = STATE(3373), - [sym_alignof_expression] = STATE(3373), - [sym_offsetof_expression] = STATE(3373), - [sym_generic_expression] = STATE(3373), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3373), - [sym_extension_expression] = STATE(3373), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3373), - [sym_parenthesized_expression] = STATE(3365), - [sym_char_literal] = STATE(3235), - [sym_concatenated_string] = STATE(3235), - [sym_string_literal] = STATE(2358), - [sym_null] = STATE(3373), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7814), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3373), - [sym_raw_string_literal] = STATE(2358), - [sym_co_await_expression] = STATE(3373), - [sym_new_expression] = STATE(3373), - [sym_delete_expression] = STATE(3373), - [sym_requires_clause] = STATE(3373), - [sym_requires_expression] = STATE(3373), - [sym_lambda_expression] = STATE(3373), - [sym_lambda_capture_specifier] = STATE(5414), - [sym_fold_expression] = STATE(3373), - [sym_parameter_pack_expansion] = STATE(3373), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3365), - [sym_qualified_type_identifier] = STATE(7814), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2453), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4749), - [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(2455), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), - }, - [1140] = { - [sym_expression] = STATE(3164), - [sym__string] = STATE(3235), - [sym_conditional_expression] = STATE(3373), - [sym_assignment_expression] = STATE(3373), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3373), - [sym_binary_expression] = STATE(3373), - [sym_update_expression] = STATE(3373), - [sym_cast_expression] = STATE(3373), - [sym_sizeof_expression] = STATE(3373), - [sym_alignof_expression] = STATE(3373), - [sym_offsetof_expression] = STATE(3373), - [sym_generic_expression] = STATE(3373), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3373), - [sym_extension_expression] = STATE(3373), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3373), - [sym_parenthesized_expression] = STATE(3365), - [sym_char_literal] = STATE(3235), - [sym_concatenated_string] = STATE(3235), - [sym_string_literal] = STATE(2358), - [sym_null] = STATE(3373), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7814), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3373), - [sym_raw_string_literal] = STATE(2358), - [sym_co_await_expression] = STATE(3373), - [sym_new_expression] = STATE(3373), - [sym_delete_expression] = STATE(3373), - [sym_requires_clause] = STATE(3373), - [sym_requires_expression] = STATE(3373), - [sym_lambda_expression] = STATE(3373), - [sym_lambda_capture_specifier] = STATE(5414), - [sym_fold_expression] = STATE(3373), - [sym_parameter_pack_expansion] = STATE(3373), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3365), - [sym_qualified_type_identifier] = STATE(7814), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2453), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4731), - [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(2455), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), - }, - [1141] = { - [sym_expression] = STATE(3165), - [sym__string] = STATE(3235), - [sym_conditional_expression] = STATE(3373), - [sym_assignment_expression] = STATE(3373), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3373), - [sym_binary_expression] = STATE(3373), - [sym_update_expression] = STATE(3373), - [sym_cast_expression] = STATE(3373), - [sym_sizeof_expression] = STATE(3373), - [sym_alignof_expression] = STATE(3373), - [sym_offsetof_expression] = STATE(3373), - [sym_generic_expression] = STATE(3373), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3373), - [sym_extension_expression] = STATE(3373), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3373), - [sym_parenthesized_expression] = STATE(3365), - [sym_char_literal] = STATE(3235), - [sym_concatenated_string] = STATE(3235), - [sym_string_literal] = STATE(2358), - [sym_null] = STATE(3373), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7814), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3373), - [sym_raw_string_literal] = STATE(2358), - [sym_co_await_expression] = STATE(3373), - [sym_new_expression] = STATE(3373), - [sym_delete_expression] = STATE(3373), - [sym_requires_clause] = STATE(3373), - [sym_requires_expression] = STATE(3373), - [sym_lambda_expression] = STATE(3373), - [sym_lambda_capture_specifier] = STATE(5414), - [sym_fold_expression] = STATE(3373), - [sym_parameter_pack_expansion] = STATE(3373), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3365), - [sym_qualified_type_identifier] = STATE(7814), - [sym_user_defined_literal] = STATE(3365), + [1202] = { + [sym_expression] = STATE(3186), + [sym__string] = STATE(3393), + [sym_conditional_expression] = STATE(3401), + [sym_assignment_expression] = STATE(3401), + [sym_pointer_expression] = STATE(3405), + [sym_unary_expression] = STATE(3401), + [sym_binary_expression] = STATE(3401), + [sym_update_expression] = STATE(3401), + [sym_cast_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3401), + [sym_alignof_expression] = STATE(3401), + [sym_offsetof_expression] = STATE(3401), + [sym_generic_expression] = STATE(3401), + [sym_subscript_expression] = STATE(3405), + [sym_call_expression] = STATE(3405), + [sym_gnu_asm_expression] = STATE(3401), + [sym_extension_expression] = STATE(3401), + [sym_field_expression] = STATE(3405), + [sym_compound_literal_expression] = STATE(3401), + [sym_parenthesized_expression] = STATE(3405), + [sym_char_literal] = STATE(3393), + [sym_concatenated_string] = STATE(3393), + [sym_string_literal] = STATE(2380), + [sym_null] = STATE(3401), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7745), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3401), + [sym_raw_string_literal] = STATE(2380), + [sym_co_await_expression] = STATE(3401), + [sym_new_expression] = STATE(3401), + [sym_delete_expression] = STATE(3401), + [sym_requires_clause] = STATE(3401), + [sym_requires_expression] = STATE(3401), + [sym_lambda_expression] = STATE(3401), + [sym_lambda_capture_specifier] = STATE(5494), + [sym_fold_expression] = STATE(3401), + [sym_parameter_pack_expansion] = STATE(3401), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3405), + [sym_qualified_type_identifier] = STATE(7745), + [sym_user_defined_literal] = STATE(3405), [sym_identifier] = ACTIONS(2453), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4740), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4733), [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), [anon_sym___extension__] = ACTIONS(2455), - [anon_sym_COLON_COLON] = ACTIONS(1806), + [anon_sym_COLON_COLON] = ACTIONS(1804), [anon_sym_LBRACK] = ACTIONS(2020), [sym_primitive_type] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), - }, - [1142] = { - [sym_expression] = STATE(4266), - [sym__string] = STATE(4380), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3253), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3253), - [sym_call_expression] = STATE(3253), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3253), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3253), - [sym_char_literal] = STATE(4380), - [sym_concatenated_string] = STATE(4380), - [sym_string_literal] = STATE(3416), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3416), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3253), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3253), - [sym_identifier] = ACTIONS(3823), - [anon_sym_LPAREN2] = ACTIONS(4557), - [anon_sym_BANG] = ACTIONS(3827), - [anon_sym_TILDE] = ACTIONS(3827), - [anon_sym_DASH] = ACTIONS(3825), - [anon_sym_PLUS] = ACTIONS(3825), - [anon_sym_STAR] = ACTIONS(4382), - [anon_sym_AMP] = ACTIONS(4382), - [anon_sym_SEMI] = ACTIONS(4790), - [anon_sym___extension__] = ACTIONS(3829), - [anon_sym_COLON_COLON] = ACTIONS(3831), - [anon_sym_LBRACK] = ACTIONS(4792), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3825), - [anon_sym_compl] = ACTIONS(3825), - [anon_sym_DASH_DASH] = ACTIONS(4384), - [anon_sym_PLUS_PLUS] = ACTIONS(4384), - [anon_sym_sizeof] = ACTIONS(3833), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3835), - [anon_sym_L_SQUOTE] = ACTIONS(3837), - [anon_sym_u_SQUOTE] = ACTIONS(3837), - [anon_sym_U_SQUOTE] = ACTIONS(3837), - [anon_sym_u8_SQUOTE] = ACTIONS(3837), - [anon_sym_SQUOTE] = ACTIONS(3837), - [anon_sym_L_DQUOTE] = ACTIONS(3839), - [anon_sym_u_DQUOTE] = ACTIONS(3839), - [anon_sym_U_DQUOTE] = ACTIONS(3839), - [anon_sym_u8_DQUOTE] = ACTIONS(3839), - [anon_sym_DQUOTE] = ACTIONS(3839), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), + [anon_sym_not] = ACTIONS(1796), + [anon_sym_compl] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_sizeof] = ACTIONS(1824), + [anon_sym___alignof__] = ACTIONS(1826), + [anon_sym___alignof] = ACTIONS(1826), + [anon_sym__alignof] = ACTIONS(1826), + [anon_sym_alignof] = ACTIONS(1826), + [anon_sym__Alignof] = ACTIONS(1826), + [anon_sym_offsetof] = ACTIONS(1828), + [anon_sym__Generic] = ACTIONS(1830), + [anon_sym_asm] = ACTIONS(1832), + [anon_sym___asm__] = ACTIONS(1832), + [anon_sym___asm] = ACTIONS(1832), + [sym_number_literal] = ACTIONS(1834), + [anon_sym_L_SQUOTE] = ACTIONS(1836), + [anon_sym_u_SQUOTE] = ACTIONS(1836), + [anon_sym_U_SQUOTE] = ACTIONS(1836), + [anon_sym_u8_SQUOTE] = ACTIONS(1836), + [anon_sym_SQUOTE] = ACTIONS(1836), + [anon_sym_L_DQUOTE] = ACTIONS(1838), + [anon_sym_u_DQUOTE] = ACTIONS(1838), + [anon_sym_U_DQUOTE] = ACTIONS(1838), + [anon_sym_u8_DQUOTE] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym_true] = ACTIONS(1840), + [sym_false] = ACTIONS(1840), + [anon_sym_NULL] = ACTIONS(1842), + [anon_sym_nullptr] = ACTIONS(1842), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3841), - [anon_sym_R_DQUOTE] = ACTIONS(3843), - [anon_sym_LR_DQUOTE] = ACTIONS(3843), - [anon_sym_uR_DQUOTE] = ACTIONS(3843), - [anon_sym_UR_DQUOTE] = ACTIONS(3843), - [anon_sym_u8R_DQUOTE] = ACTIONS(3843), - [anon_sym_co_await] = ACTIONS(3845), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1852), + [anon_sym_R_DQUOTE] = ACTIONS(1854), + [anon_sym_LR_DQUOTE] = ACTIONS(1854), + [anon_sym_uR_DQUOTE] = ACTIONS(1854), + [anon_sym_UR_DQUOTE] = ACTIONS(1854), + [anon_sym_u8R_DQUOTE] = ACTIONS(1854), + [anon_sym_co_await] = ACTIONS(1856), + [anon_sym_new] = ACTIONS(1858), + [anon_sym_requires] = ACTIONS(1860), + [sym_this] = ACTIONS(1840), }, - [1143] = { - [sym_expression] = STATE(4673), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1203] = { + [sym_expression] = STATE(4701), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(4873), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -193817,9 +200859,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(123), [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4794), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -193831,67 +200872,370 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1144] = { - [sym_expression] = STATE(2398), - [sym__string] = STATE(2950), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(2950), - [sym_concatenated_string] = STATE(2950), - [sym_string_literal] = STATE(2034), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(2034), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), + [1204] = { + [sym_expression] = STATE(3609), + [sym__string] = STATE(3775), + [sym_conditional_expression] = STATE(3886), + [sym_assignment_expression] = STATE(3886), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(3886), + [sym_binary_expression] = STATE(3886), + [sym_update_expression] = STATE(3886), + [sym_cast_expression] = STATE(3886), + [sym_sizeof_expression] = STATE(3886), + [sym_alignof_expression] = STATE(3886), + [sym_offsetof_expression] = STATE(3886), + [sym_generic_expression] = STATE(3886), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(3886), + [sym_extension_expression] = STATE(3886), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(3886), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(3775), + [sym_concatenated_string] = STATE(3775), + [sym_string_literal] = STATE(2596), + [sym_null] = STATE(3886), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7756), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3886), + [sym_raw_string_literal] = STATE(2596), + [sym_co_await_expression] = STATE(3886), + [sym_new_expression] = STATE(3886), + [sym_delete_expression] = STATE(3886), + [sym_requires_clause] = STATE(3886), + [sym_requires_expression] = STATE(3886), + [sym_lambda_expression] = STATE(3886), + [sym_lambda_capture_specifier] = STATE(5492), + [sym_fold_expression] = STATE(3886), + [sym_parameter_pack_expansion] = STATE(3886), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(7756), + [sym_user_defined_literal] = STATE(3522), + [sym_identifier] = ACTIONS(2619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4850), + [anon_sym_LPAREN2] = ACTIONS(1888), + [anon_sym_BANG] = ACTIONS(1890), + [anon_sym_TILDE] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1892), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(2621), + [anon_sym_COLON_COLON] = ACTIONS(1898), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2625), + [anon_sym_not] = ACTIONS(1892), + [anon_sym_compl] = ACTIONS(1892), + [anon_sym_DASH_DASH] = ACTIONS(1902), + [anon_sym_PLUS_PLUS] = ACTIONS(1902), + [anon_sym_sizeof] = ACTIONS(1904), + [anon_sym___alignof__] = ACTIONS(1906), + [anon_sym___alignof] = ACTIONS(1906), + [anon_sym__alignof] = ACTIONS(1906), + [anon_sym_alignof] = ACTIONS(1906), + [anon_sym__Alignof] = ACTIONS(1906), + [anon_sym_offsetof] = ACTIONS(1908), + [anon_sym__Generic] = ACTIONS(1910), + [anon_sym_asm] = ACTIONS(1912), + [anon_sym___asm__] = ACTIONS(1912), + [anon_sym___asm] = ACTIONS(1912), + [sym_number_literal] = ACTIONS(1914), + [anon_sym_L_SQUOTE] = ACTIONS(1916), + [anon_sym_u_SQUOTE] = ACTIONS(1916), + [anon_sym_U_SQUOTE] = ACTIONS(1916), + [anon_sym_u8_SQUOTE] = ACTIONS(1916), + [anon_sym_SQUOTE] = ACTIONS(1916), + [anon_sym_L_DQUOTE] = ACTIONS(1918), + [anon_sym_u_DQUOTE] = ACTIONS(1918), + [anon_sym_U_DQUOTE] = ACTIONS(1918), + [anon_sym_u8_DQUOTE] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1918), + [sym_true] = ACTIONS(1920), + [sym_false] = ACTIONS(1920), + [anon_sym_NULL] = ACTIONS(1922), + [anon_sym_nullptr] = ACTIONS(1922), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1924), + [anon_sym_R_DQUOTE] = ACTIONS(1926), + [anon_sym_LR_DQUOTE] = ACTIONS(1926), + [anon_sym_uR_DQUOTE] = ACTIONS(1926), + [anon_sym_UR_DQUOTE] = ACTIONS(1926), + [anon_sym_u8R_DQUOTE] = ACTIONS(1926), + [anon_sym_co_await] = ACTIONS(1928), + [anon_sym_new] = ACTIONS(1930), + [anon_sym_requires] = ACTIONS(1932), + [sym_this] = ACTIONS(1920), + }, + [1205] = { + [sym_expression] = STATE(2402), + [sym__string] = STATE(2887), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(2887), + [sym_concatenated_string] = STATE(2887), + [sym_string_literal] = STATE(1947), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(1947), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), + [sym_identifier] = ACTIONS(1990), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4824), + [anon_sym_LPAREN2] = ACTIONS(4875), + [anon_sym_BANG] = ACTIONS(1948), + [anon_sym_TILDE] = ACTIONS(1948), + [anon_sym_DASH] = ACTIONS(1946), + [anon_sym_PLUS] = ACTIONS(1946), + [anon_sym_STAR] = ACTIONS(4346), + [anon_sym_AMP] = ACTIONS(4346), + [anon_sym___extension__] = ACTIONS(1950), + [anon_sym_COLON_COLON] = ACTIONS(1952), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(1956), + [anon_sym_not] = ACTIONS(1946), + [anon_sym_compl] = ACTIONS(1946), + [anon_sym_DASH_DASH] = ACTIONS(4348), + [anon_sym_PLUS_PLUS] = ACTIONS(4348), + [anon_sym_sizeof] = ACTIONS(1958), + [anon_sym___alignof__] = ACTIONS(1960), + [anon_sym___alignof] = ACTIONS(1960), + [anon_sym__alignof] = ACTIONS(1960), + [anon_sym_alignof] = ACTIONS(1960), + [anon_sym__Alignof] = ACTIONS(1960), + [anon_sym_offsetof] = ACTIONS(1962), + [anon_sym__Generic] = ACTIONS(1964), + [anon_sym_asm] = ACTIONS(1966), + [anon_sym___asm__] = ACTIONS(1966), + [anon_sym___asm] = ACTIONS(1966), + [sym_number_literal] = ACTIONS(1968), + [anon_sym_L_SQUOTE] = ACTIONS(1970), + [anon_sym_u_SQUOTE] = ACTIONS(1970), + [anon_sym_U_SQUOTE] = ACTIONS(1970), + [anon_sym_u8_SQUOTE] = ACTIONS(1970), + [anon_sym_SQUOTE] = ACTIONS(1970), + [anon_sym_L_DQUOTE] = ACTIONS(1972), + [anon_sym_u_DQUOTE] = ACTIONS(1972), + [anon_sym_U_DQUOTE] = ACTIONS(1972), + [anon_sym_u8_DQUOTE] = ACTIONS(1972), + [anon_sym_DQUOTE] = ACTIONS(1972), + [sym_true] = ACTIONS(1974), + [sym_false] = ACTIONS(1974), + [anon_sym_NULL] = ACTIONS(1976), + [anon_sym_nullptr] = ACTIONS(1976), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1980), + [anon_sym_R_DQUOTE] = ACTIONS(1982), + [anon_sym_LR_DQUOTE] = ACTIONS(1982), + [anon_sym_uR_DQUOTE] = ACTIONS(1982), + [anon_sym_UR_DQUOTE] = ACTIONS(1982), + [anon_sym_u8R_DQUOTE] = ACTIONS(1982), + [anon_sym_co_await] = ACTIONS(1984), + [anon_sym_new] = ACTIONS(1986), + [anon_sym_requires] = ACTIONS(1988), + [sym_this] = ACTIONS(1974), + }, + [1206] = { + [sym_expression] = STATE(3611), + [sym__string] = STATE(3775), + [sym_conditional_expression] = STATE(3886), + [sym_assignment_expression] = STATE(3886), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(3886), + [sym_binary_expression] = STATE(3886), + [sym_update_expression] = STATE(3886), + [sym_cast_expression] = STATE(3886), + [sym_sizeof_expression] = STATE(3886), + [sym_alignof_expression] = STATE(3886), + [sym_offsetof_expression] = STATE(3886), + [sym_generic_expression] = STATE(3886), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(3886), + [sym_extension_expression] = STATE(3886), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(3886), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(3775), + [sym_concatenated_string] = STATE(3775), + [sym_string_literal] = STATE(2596), + [sym_null] = STATE(3886), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7756), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3886), + [sym_raw_string_literal] = STATE(2596), + [sym_co_await_expression] = STATE(3886), + [sym_new_expression] = STATE(3886), + [sym_delete_expression] = STATE(3886), + [sym_requires_clause] = STATE(3886), + [sym_requires_expression] = STATE(3886), + [sym_lambda_expression] = STATE(3886), + [sym_lambda_capture_specifier] = STATE(5492), + [sym_fold_expression] = STATE(3886), + [sym_parameter_pack_expansion] = STATE(3886), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(7756), + [sym_user_defined_literal] = STATE(3522), + [sym_identifier] = ACTIONS(2619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4790), + [anon_sym_LPAREN2] = ACTIONS(1888), + [anon_sym_BANG] = ACTIONS(1890), + [anon_sym_TILDE] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1892), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(2621), + [anon_sym_COLON_COLON] = ACTIONS(1898), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2625), + [anon_sym_not] = ACTIONS(1892), + [anon_sym_compl] = ACTIONS(1892), + [anon_sym_DASH_DASH] = ACTIONS(1902), + [anon_sym_PLUS_PLUS] = ACTIONS(1902), + [anon_sym_sizeof] = ACTIONS(1904), + [anon_sym___alignof__] = ACTIONS(1906), + [anon_sym___alignof] = ACTIONS(1906), + [anon_sym__alignof] = ACTIONS(1906), + [anon_sym_alignof] = ACTIONS(1906), + [anon_sym__Alignof] = ACTIONS(1906), + [anon_sym_offsetof] = ACTIONS(1908), + [anon_sym__Generic] = ACTIONS(1910), + [anon_sym_asm] = ACTIONS(1912), + [anon_sym___asm__] = ACTIONS(1912), + [anon_sym___asm] = ACTIONS(1912), + [sym_number_literal] = ACTIONS(1914), + [anon_sym_L_SQUOTE] = ACTIONS(1916), + [anon_sym_u_SQUOTE] = ACTIONS(1916), + [anon_sym_U_SQUOTE] = ACTIONS(1916), + [anon_sym_u8_SQUOTE] = ACTIONS(1916), + [anon_sym_SQUOTE] = ACTIONS(1916), + [anon_sym_L_DQUOTE] = ACTIONS(1918), + [anon_sym_u_DQUOTE] = ACTIONS(1918), + [anon_sym_U_DQUOTE] = ACTIONS(1918), + [anon_sym_u8_DQUOTE] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1918), + [sym_true] = ACTIONS(1920), + [sym_false] = ACTIONS(1920), + [anon_sym_NULL] = ACTIONS(1922), + [anon_sym_nullptr] = ACTIONS(1922), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1924), + [anon_sym_R_DQUOTE] = ACTIONS(1926), + [anon_sym_LR_DQUOTE] = ACTIONS(1926), + [anon_sym_uR_DQUOTE] = ACTIONS(1926), + [anon_sym_UR_DQUOTE] = ACTIONS(1926), + [anon_sym_u8R_DQUOTE] = ACTIONS(1926), + [anon_sym_co_await] = ACTIONS(1928), + [anon_sym_new] = ACTIONS(1930), + [anon_sym_requires] = ACTIONS(1932), + [sym_this] = ACTIONS(1920), + }, + [1207] = { + [sym_expression] = STATE(2432), + [sym__string] = STATE(2917), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(2917), + [sym_concatenated_string] = STATE(2917), + [sym_string_literal] = STATE(2114), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(2114), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), [sym_identifier] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(4555), + [anon_sym_LPAREN2] = ACTIONS(4565), [anon_sym_BANG] = ACTIONS(1994), [anon_sym_TILDE] = ACTIONS(1994), [anon_sym_DASH] = ACTIONS(1992), [anon_sym_PLUS] = ACTIONS(1992), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), [anon_sym___extension__] = ACTIONS(1996), [anon_sym_COLON_COLON] = ACTIONS(1998), [anon_sym_LBRACK] = ACTIONS(2020), - [anon_sym_RBRACK] = ACTIONS(4796), + [anon_sym_RBRACK] = ACTIONS(4877), [sym_primitive_type] = ACTIONS(1956), [anon_sym_not] = ACTIONS(1992), [anon_sym_compl] = ACTIONS(1992), - [anon_sym_DASH_DASH] = ACTIONS(3343), - [anon_sym_PLUS_PLUS] = ACTIONS(3343), + [anon_sym_DASH_DASH] = ACTIONS(3355), + [anon_sym_PLUS_PLUS] = ACTIONS(3355), [anon_sym_sizeof] = ACTIONS(2000), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), @@ -193920,7 +201264,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1976), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(2008), [anon_sym_R_DQUOTE] = ACTIONS(2010), [anon_sym_LR_DQUOTE] = ACTIONS(2010), @@ -193932,68 +201276,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [1145] = { - [sym_expression] = STATE(4751), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(4798), - [anon_sym___extension__] = ACTIONS(2024), - [anon_sym_COLON_COLON] = ACTIONS(47), + [1208] = { + [sym_expression] = STATE(3613), + [sym__string] = STATE(3775), + [sym_conditional_expression] = STATE(3886), + [sym_assignment_expression] = STATE(3886), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(3886), + [sym_binary_expression] = STATE(3886), + [sym_update_expression] = STATE(3886), + [sym_cast_expression] = STATE(3886), + [sym_sizeof_expression] = STATE(3886), + [sym_alignof_expression] = STATE(3886), + [sym_offsetof_expression] = STATE(3886), + [sym_generic_expression] = STATE(3886), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(3886), + [sym_extension_expression] = STATE(3886), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(3886), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(3775), + [sym_concatenated_string] = STATE(3775), + [sym_string_literal] = STATE(2596), + [sym_null] = STATE(3886), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7756), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3886), + [sym_raw_string_literal] = STATE(2596), + [sym_co_await_expression] = STATE(3886), + [sym_new_expression] = STATE(3886), + [sym_delete_expression] = STATE(3886), + [sym_requires_clause] = STATE(3886), + [sym_requires_expression] = STATE(3886), + [sym_lambda_expression] = STATE(3886), + [sym_lambda_capture_specifier] = STATE(5492), + [sym_fold_expression] = STATE(3886), + [sym_parameter_pack_expansion] = STATE(3886), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(7756), + [sym_user_defined_literal] = STATE(3522), + [sym_identifier] = ACTIONS(2619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4782), + [anon_sym_LPAREN2] = ACTIONS(1888), + [anon_sym_BANG] = ACTIONS(1890), + [anon_sym_TILDE] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1892), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(2621), + [anon_sym_COLON_COLON] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), + [sym_primitive_type] = ACTIONS(2625), + [anon_sym_not] = ACTIONS(1892), + [anon_sym_compl] = ACTIONS(1892), + [anon_sym_DASH_DASH] = ACTIONS(1902), + [anon_sym_PLUS_PLUS] = ACTIONS(1902), + [anon_sym_sizeof] = ACTIONS(1904), + [anon_sym___alignof__] = ACTIONS(1906), + [anon_sym___alignof] = ACTIONS(1906), + [anon_sym__alignof] = ACTIONS(1906), + [anon_sym_alignof] = ACTIONS(1906), + [anon_sym__Alignof] = ACTIONS(1906), + [anon_sym_offsetof] = ACTIONS(1908), + [anon_sym__Generic] = ACTIONS(1910), + [anon_sym_asm] = ACTIONS(1912), + [anon_sym___asm__] = ACTIONS(1912), + [anon_sym___asm] = ACTIONS(1912), + [sym_number_literal] = ACTIONS(1914), + [anon_sym_L_SQUOTE] = ACTIONS(1916), + [anon_sym_u_SQUOTE] = ACTIONS(1916), + [anon_sym_U_SQUOTE] = ACTIONS(1916), + [anon_sym_u8_SQUOTE] = ACTIONS(1916), + [anon_sym_SQUOTE] = ACTIONS(1916), + [anon_sym_L_DQUOTE] = ACTIONS(1918), + [anon_sym_u_DQUOTE] = ACTIONS(1918), + [anon_sym_U_DQUOTE] = ACTIONS(1918), + [anon_sym_u8_DQUOTE] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1918), + [sym_true] = ACTIONS(1920), + [sym_false] = ACTIONS(1920), + [anon_sym_NULL] = ACTIONS(1922), + [anon_sym_nullptr] = ACTIONS(1922), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1924), + [anon_sym_R_DQUOTE] = ACTIONS(1926), + [anon_sym_LR_DQUOTE] = ACTIONS(1926), + [anon_sym_uR_DQUOTE] = ACTIONS(1926), + [anon_sym_UR_DQUOTE] = ACTIONS(1926), + [anon_sym_u8R_DQUOTE] = ACTIONS(1926), + [anon_sym_co_await] = ACTIONS(1928), + [anon_sym_new] = ACTIONS(1930), + [anon_sym_requires] = ACTIONS(1932), + [sym_this] = ACTIONS(1920), + }, + [1209] = { + [sym_expression] = STATE(3807), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3728), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3728), + [sym_call_expression] = STATE(3728), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3728), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3728), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3728), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3728), + [sym_identifier] = ACTIONS(3883), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4752), + [anon_sym_LPAREN2] = ACTIONS(4879), + [anon_sym_BANG] = ACTIONS(3887), + [anon_sym_TILDE] = ACTIONS(3887), + [anon_sym_DASH] = ACTIONS(3885), + [anon_sym_PLUS] = ACTIONS(3885), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(3889), + [anon_sym_COLON_COLON] = ACTIONS(3891), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3885), + [anon_sym_compl] = ACTIONS(3885), + [anon_sym_DASH_DASH] = ACTIONS(3905), + [anon_sym_PLUS_PLUS] = ACTIONS(3905), + [anon_sym_sizeof] = ACTIONS(3893), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -194021,74 +201466,479 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(145), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3895), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), + [anon_sym_co_await] = ACTIONS(3897), + [anon_sym_new] = ACTIONS(3873), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1146] = { - [sym_expression] = STATE(4616), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1210] = { + [sym_expression] = STATE(3613), + [sym__string] = STATE(3775), + [sym_conditional_expression] = STATE(3886), + [sym_assignment_expression] = STATE(3886), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(3886), + [sym_binary_expression] = STATE(3886), + [sym_update_expression] = STATE(3886), + [sym_cast_expression] = STATE(3886), + [sym_sizeof_expression] = STATE(3886), + [sym_alignof_expression] = STATE(3886), + [sym_offsetof_expression] = STATE(3886), + [sym_generic_expression] = STATE(3886), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(3886), + [sym_extension_expression] = STATE(3886), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(3886), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(3775), + [sym_concatenated_string] = STATE(3775), + [sym_string_literal] = STATE(2596), + [sym_null] = STATE(3886), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7756), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3886), + [sym_raw_string_literal] = STATE(2596), + [sym_co_await_expression] = STATE(3886), + [sym_new_expression] = STATE(3886), + [sym_delete_expression] = STATE(3886), + [sym_requires_clause] = STATE(3886), + [sym_requires_expression] = STATE(3886), + [sym_lambda_expression] = STATE(3886), + [sym_lambda_capture_specifier] = STATE(5492), + [sym_fold_expression] = STATE(3886), + [sym_parameter_pack_expansion] = STATE(3886), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(7756), + [sym_user_defined_literal] = STATE(3522), + [sym_identifier] = ACTIONS(2619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4830), + [anon_sym_LPAREN2] = ACTIONS(1888), + [anon_sym_BANG] = ACTIONS(1890), + [anon_sym_TILDE] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1892), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(2621), + [anon_sym_COLON_COLON] = ACTIONS(1898), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2625), + [anon_sym_not] = ACTIONS(1892), + [anon_sym_compl] = ACTIONS(1892), + [anon_sym_DASH_DASH] = ACTIONS(1902), + [anon_sym_PLUS_PLUS] = ACTIONS(1902), + [anon_sym_sizeof] = ACTIONS(1904), + [anon_sym___alignof__] = ACTIONS(1906), + [anon_sym___alignof] = ACTIONS(1906), + [anon_sym__alignof] = ACTIONS(1906), + [anon_sym_alignof] = ACTIONS(1906), + [anon_sym__Alignof] = ACTIONS(1906), + [anon_sym_offsetof] = ACTIONS(1908), + [anon_sym__Generic] = ACTIONS(1910), + [anon_sym_asm] = ACTIONS(1912), + [anon_sym___asm__] = ACTIONS(1912), + [anon_sym___asm] = ACTIONS(1912), + [sym_number_literal] = ACTIONS(1914), + [anon_sym_L_SQUOTE] = ACTIONS(1916), + [anon_sym_u_SQUOTE] = ACTIONS(1916), + [anon_sym_U_SQUOTE] = ACTIONS(1916), + [anon_sym_u8_SQUOTE] = ACTIONS(1916), + [anon_sym_SQUOTE] = ACTIONS(1916), + [anon_sym_L_DQUOTE] = ACTIONS(1918), + [anon_sym_u_DQUOTE] = ACTIONS(1918), + [anon_sym_U_DQUOTE] = ACTIONS(1918), + [anon_sym_u8_DQUOTE] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1918), + [sym_true] = ACTIONS(1920), + [sym_false] = ACTIONS(1920), + [anon_sym_NULL] = ACTIONS(1922), + [anon_sym_nullptr] = ACTIONS(1922), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1924), + [anon_sym_R_DQUOTE] = ACTIONS(1926), + [anon_sym_LR_DQUOTE] = ACTIONS(1926), + [anon_sym_uR_DQUOTE] = ACTIONS(1926), + [anon_sym_UR_DQUOTE] = ACTIONS(1926), + [anon_sym_u8R_DQUOTE] = ACTIONS(1926), + [anon_sym_co_await] = ACTIONS(1928), + [anon_sym_new] = ACTIONS(1930), + [anon_sym_requires] = ACTIONS(1932), + [sym_this] = ACTIONS(1920), + }, + [1211] = { + [sym_expression] = STATE(2432), + [sym__string] = STATE(2917), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(2917), + [sym_concatenated_string] = STATE(2917), + [sym_string_literal] = STATE(2114), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(2114), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), + [sym_identifier] = ACTIONS(1990), + [anon_sym_LPAREN2] = ACTIONS(4565), + [anon_sym_BANG] = ACTIONS(1994), + [anon_sym_TILDE] = ACTIONS(1994), + [anon_sym_DASH] = ACTIONS(1992), + [anon_sym_PLUS] = ACTIONS(1992), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(1996), + [anon_sym_COLON_COLON] = ACTIONS(1998), + [anon_sym_LBRACK] = ACTIONS(2020), + [anon_sym_RBRACK] = ACTIONS(4881), + [sym_primitive_type] = ACTIONS(1956), + [anon_sym_not] = ACTIONS(1992), + [anon_sym_compl] = ACTIONS(1992), + [anon_sym_DASH_DASH] = ACTIONS(3355), + [anon_sym_PLUS_PLUS] = ACTIONS(3355), + [anon_sym_sizeof] = ACTIONS(2000), + [anon_sym___alignof__] = ACTIONS(1960), + [anon_sym___alignof] = ACTIONS(1960), + [anon_sym__alignof] = ACTIONS(1960), + [anon_sym_alignof] = ACTIONS(1960), + [anon_sym__Alignof] = ACTIONS(1960), + [anon_sym_offsetof] = ACTIONS(1962), + [anon_sym__Generic] = ACTIONS(1964), + [anon_sym_asm] = ACTIONS(1966), + [anon_sym___asm__] = ACTIONS(1966), + [anon_sym___asm] = ACTIONS(1966), + [sym_number_literal] = ACTIONS(2002), + [anon_sym_L_SQUOTE] = ACTIONS(2004), + [anon_sym_u_SQUOTE] = ACTIONS(2004), + [anon_sym_U_SQUOTE] = ACTIONS(2004), + [anon_sym_u8_SQUOTE] = ACTIONS(2004), + [anon_sym_SQUOTE] = ACTIONS(2004), + [anon_sym_L_DQUOTE] = ACTIONS(2006), + [anon_sym_u_DQUOTE] = ACTIONS(2006), + [anon_sym_U_DQUOTE] = ACTIONS(2006), + [anon_sym_u8_DQUOTE] = ACTIONS(2006), + [anon_sym_DQUOTE] = ACTIONS(2006), + [sym_true] = ACTIONS(1974), + [sym_false] = ACTIONS(1974), + [anon_sym_NULL] = ACTIONS(1976), + [anon_sym_nullptr] = ACTIONS(1976), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(2008), + [anon_sym_R_DQUOTE] = ACTIONS(2010), + [anon_sym_LR_DQUOTE] = ACTIONS(2010), + [anon_sym_uR_DQUOTE] = ACTIONS(2010), + [anon_sym_UR_DQUOTE] = ACTIONS(2010), + [anon_sym_u8R_DQUOTE] = ACTIONS(2010), + [anon_sym_co_await] = ACTIONS(2012), + [anon_sym_new] = ACTIONS(2014), + [anon_sym_requires] = ACTIONS(1988), + [sym_this] = ACTIONS(1974), + }, + [1212] = { + [sym_expression] = STATE(3646), + [sym__string] = STATE(3775), + [sym_conditional_expression] = STATE(3886), + [sym_assignment_expression] = STATE(3886), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(3886), + [sym_binary_expression] = STATE(3886), + [sym_update_expression] = STATE(3886), + [sym_cast_expression] = STATE(3886), + [sym_sizeof_expression] = STATE(3886), + [sym_alignof_expression] = STATE(3886), + [sym_offsetof_expression] = STATE(3886), + [sym_generic_expression] = STATE(3886), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(3886), + [sym_extension_expression] = STATE(3886), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(3886), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(3775), + [sym_concatenated_string] = STATE(3775), + [sym_string_literal] = STATE(2596), + [sym_null] = STATE(3886), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7756), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3886), + [sym_raw_string_literal] = STATE(2596), + [sym_co_await_expression] = STATE(3886), + [sym_new_expression] = STATE(3886), + [sym_delete_expression] = STATE(3886), + [sym_requires_clause] = STATE(3886), + [sym_requires_expression] = STATE(3886), + [sym_lambda_expression] = STATE(3886), + [sym_lambda_capture_specifier] = STATE(5492), + [sym_fold_expression] = STATE(3886), + [sym_parameter_pack_expansion] = STATE(3886), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(7756), + [sym_user_defined_literal] = STATE(3522), + [sym_identifier] = ACTIONS(2619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4883), + [anon_sym_LPAREN2] = ACTIONS(4885), + [anon_sym_BANG] = ACTIONS(1890), + [anon_sym_TILDE] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1892), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(2621), + [anon_sym_COLON_COLON] = ACTIONS(1898), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2625), + [anon_sym_not] = ACTIONS(1892), + [anon_sym_compl] = ACTIONS(1892), + [anon_sym_DASH_DASH] = ACTIONS(1902), + [anon_sym_PLUS_PLUS] = ACTIONS(1902), + [anon_sym_sizeof] = ACTIONS(1904), + [anon_sym___alignof__] = ACTIONS(1906), + [anon_sym___alignof] = ACTIONS(1906), + [anon_sym__alignof] = ACTIONS(1906), + [anon_sym_alignof] = ACTIONS(1906), + [anon_sym__Alignof] = ACTIONS(1906), + [anon_sym_offsetof] = ACTIONS(1908), + [anon_sym__Generic] = ACTIONS(1910), + [anon_sym_asm] = ACTIONS(1912), + [anon_sym___asm__] = ACTIONS(1912), + [anon_sym___asm] = ACTIONS(1912), + [sym_number_literal] = ACTIONS(1914), + [anon_sym_L_SQUOTE] = ACTIONS(1916), + [anon_sym_u_SQUOTE] = ACTIONS(1916), + [anon_sym_U_SQUOTE] = ACTIONS(1916), + [anon_sym_u8_SQUOTE] = ACTIONS(1916), + [anon_sym_SQUOTE] = ACTIONS(1916), + [anon_sym_L_DQUOTE] = ACTIONS(1918), + [anon_sym_u_DQUOTE] = ACTIONS(1918), + [anon_sym_U_DQUOTE] = ACTIONS(1918), + [anon_sym_u8_DQUOTE] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1918), + [sym_true] = ACTIONS(1920), + [sym_false] = ACTIONS(1920), + [anon_sym_NULL] = ACTIONS(1922), + [anon_sym_nullptr] = ACTIONS(1922), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1924), + [anon_sym_R_DQUOTE] = ACTIONS(1926), + [anon_sym_LR_DQUOTE] = ACTIONS(1926), + [anon_sym_uR_DQUOTE] = ACTIONS(1926), + [anon_sym_UR_DQUOTE] = ACTIONS(1926), + [anon_sym_u8R_DQUOTE] = ACTIONS(1926), + [anon_sym_co_await] = ACTIONS(1928), + [anon_sym_new] = ACTIONS(1930), + [anon_sym_requires] = ACTIONS(1932), + [sym_this] = ACTIONS(1920), + }, + [1213] = { + [sym_expression] = STATE(3209), + [sym__string] = STATE(3393), + [sym_conditional_expression] = STATE(3401), + [sym_assignment_expression] = STATE(3401), + [sym_pointer_expression] = STATE(3405), + [sym_unary_expression] = STATE(3401), + [sym_binary_expression] = STATE(3401), + [sym_update_expression] = STATE(3401), + [sym_cast_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3401), + [sym_alignof_expression] = STATE(3401), + [sym_offsetof_expression] = STATE(3401), + [sym_generic_expression] = STATE(3401), + [sym_subscript_expression] = STATE(3405), + [sym_call_expression] = STATE(3405), + [sym_gnu_asm_expression] = STATE(3401), + [sym_extension_expression] = STATE(3401), + [sym_field_expression] = STATE(3405), + [sym_compound_literal_expression] = STATE(3401), + [sym_parenthesized_expression] = STATE(3405), + [sym_char_literal] = STATE(3393), + [sym_concatenated_string] = STATE(3393), + [sym_string_literal] = STATE(2380), + [sym_null] = STATE(3401), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7745), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3401), + [sym_raw_string_literal] = STATE(2380), + [sym_co_await_expression] = STATE(3401), + [sym_new_expression] = STATE(3401), + [sym_delete_expression] = STATE(3401), + [sym_requires_clause] = STATE(3401), + [sym_requires_expression] = STATE(3401), + [sym_lambda_expression] = STATE(3401), + [sym_lambda_capture_specifier] = STATE(5494), + [sym_fold_expression] = STATE(3401), + [sym_parameter_pack_expansion] = STATE(3401), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3405), + [sym_qualified_type_identifier] = STATE(7745), + [sym_user_defined_literal] = STATE(3405), + [sym_identifier] = ACTIONS(2453), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4887), + [anon_sym_LPAREN2] = ACTIONS(4889), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(2455), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2459), + [anon_sym_not] = ACTIONS(1796), + [anon_sym_compl] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_sizeof] = ACTIONS(1824), + [anon_sym___alignof__] = ACTIONS(1826), + [anon_sym___alignof] = ACTIONS(1826), + [anon_sym__alignof] = ACTIONS(1826), + [anon_sym_alignof] = ACTIONS(1826), + [anon_sym__Alignof] = ACTIONS(1826), + [anon_sym_offsetof] = ACTIONS(1828), + [anon_sym__Generic] = ACTIONS(1830), + [anon_sym_asm] = ACTIONS(1832), + [anon_sym___asm__] = ACTIONS(1832), + [anon_sym___asm] = ACTIONS(1832), + [sym_number_literal] = ACTIONS(1834), + [anon_sym_L_SQUOTE] = ACTIONS(1836), + [anon_sym_u_SQUOTE] = ACTIONS(1836), + [anon_sym_U_SQUOTE] = ACTIONS(1836), + [anon_sym_u8_SQUOTE] = ACTIONS(1836), + [anon_sym_SQUOTE] = ACTIONS(1836), + [anon_sym_L_DQUOTE] = ACTIONS(1838), + [anon_sym_u_DQUOTE] = ACTIONS(1838), + [anon_sym_U_DQUOTE] = ACTIONS(1838), + [anon_sym_u8_DQUOTE] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym_true] = ACTIONS(1840), + [sym_false] = ACTIONS(1840), + [anon_sym_NULL] = ACTIONS(1842), + [anon_sym_nullptr] = ACTIONS(1842), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1852), + [anon_sym_R_DQUOTE] = ACTIONS(1854), + [anon_sym_LR_DQUOTE] = ACTIONS(1854), + [anon_sym_uR_DQUOTE] = ACTIONS(1854), + [anon_sym_UR_DQUOTE] = ACTIONS(1854), + [anon_sym_u8R_DQUOTE] = ACTIONS(1854), + [anon_sym_co_await] = ACTIONS(1856), + [anon_sym_new] = ACTIONS(1858), + [anon_sym_requires] = ACTIONS(1860), + [sym_this] = ACTIONS(1840), + }, + [1214] = { + [sym_expression] = STATE(4713), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(4891), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -194120,9 +201970,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(123), [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4800), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -194134,67 +201983,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1147] = { - [sym_expression] = STATE(2398), - [sym__string] = STATE(2950), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(2950), - [sym_concatenated_string] = STATE(2950), - [sym_string_literal] = STATE(2034), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(2034), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), + [1215] = { + [sym_expression] = STATE(2432), + [sym__string] = STATE(2917), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(2917), + [sym_concatenated_string] = STATE(2917), + [sym_string_literal] = STATE(2114), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(2114), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), [sym_identifier] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(4555), + [anon_sym_LPAREN2] = ACTIONS(4565), [anon_sym_BANG] = ACTIONS(1994), [anon_sym_TILDE] = ACTIONS(1994), [anon_sym_DASH] = ACTIONS(1992), [anon_sym_PLUS] = ACTIONS(1992), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), [anon_sym___extension__] = ACTIONS(1996), [anon_sym_COLON_COLON] = ACTIONS(1998), [anon_sym_LBRACK] = ACTIONS(2020), - [anon_sym_RBRACK] = ACTIONS(4802), + [anon_sym_RBRACK] = ACTIONS(4893), [sym_primitive_type] = ACTIONS(1956), [anon_sym_not] = ACTIONS(1992), [anon_sym_compl] = ACTIONS(1992), - [anon_sym_DASH_DASH] = ACTIONS(3343), - [anon_sym_PLUS_PLUS] = ACTIONS(3343), + [anon_sym_DASH_DASH] = ACTIONS(3355), + [anon_sym_PLUS_PLUS] = ACTIONS(3355), [anon_sym_sizeof] = ACTIONS(2000), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), @@ -194223,7 +202072,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1976), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(2008), [anon_sym_R_DQUOTE] = ACTIONS(2010), [anon_sym_LR_DQUOTE] = ACTIONS(2010), @@ -194235,163 +202084,366 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [1148] = { - [sym_expression] = STATE(3163), - [sym__string] = STATE(3235), - [sym_conditional_expression] = STATE(3373), - [sym_assignment_expression] = STATE(3373), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3373), - [sym_binary_expression] = STATE(3373), - [sym_update_expression] = STATE(3373), - [sym_cast_expression] = STATE(3373), - [sym_sizeof_expression] = STATE(3373), - [sym_alignof_expression] = STATE(3373), - [sym_offsetof_expression] = STATE(3373), - [sym_generic_expression] = STATE(3373), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3373), - [sym_extension_expression] = STATE(3373), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3373), - [sym_parenthesized_expression] = STATE(3365), - [sym_char_literal] = STATE(3235), - [sym_concatenated_string] = STATE(3235), - [sym_string_literal] = STATE(2358), - [sym_null] = STATE(3373), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7814), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3373), - [sym_raw_string_literal] = STATE(2358), - [sym_co_await_expression] = STATE(3373), - [sym_new_expression] = STATE(3373), - [sym_delete_expression] = STATE(3373), - [sym_requires_clause] = STATE(3373), - [sym_requires_expression] = STATE(3373), - [sym_lambda_expression] = STATE(3373), - [sym_lambda_capture_specifier] = STATE(5414), - [sym_fold_expression] = STATE(3373), - [sym_parameter_pack_expansion] = STATE(3373), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3365), - [sym_qualified_type_identifier] = STATE(7814), - [sym_user_defined_literal] = STATE(3365), + [1216] = { + [sym_expression] = STATE(2432), + [sym__string] = STATE(2917), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(2917), + [sym_concatenated_string] = STATE(2917), + [sym_string_literal] = STATE(2114), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(2114), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), + [sym_identifier] = ACTIONS(1990), + [anon_sym_LPAREN2] = ACTIONS(4565), + [anon_sym_BANG] = ACTIONS(1994), + [anon_sym_TILDE] = ACTIONS(1994), + [anon_sym_DASH] = ACTIONS(1992), + [anon_sym_PLUS] = ACTIONS(1992), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(1996), + [anon_sym_COLON_COLON] = ACTIONS(1998), + [anon_sym_LBRACK] = ACTIONS(2020), + [anon_sym_RBRACK] = ACTIONS(4895), + [sym_primitive_type] = ACTIONS(1956), + [anon_sym_not] = ACTIONS(1992), + [anon_sym_compl] = ACTIONS(1992), + [anon_sym_DASH_DASH] = ACTIONS(3355), + [anon_sym_PLUS_PLUS] = ACTIONS(3355), + [anon_sym_sizeof] = ACTIONS(2000), + [anon_sym___alignof__] = ACTIONS(1960), + [anon_sym___alignof] = ACTIONS(1960), + [anon_sym__alignof] = ACTIONS(1960), + [anon_sym_alignof] = ACTIONS(1960), + [anon_sym__Alignof] = ACTIONS(1960), + [anon_sym_offsetof] = ACTIONS(1962), + [anon_sym__Generic] = ACTIONS(1964), + [anon_sym_asm] = ACTIONS(1966), + [anon_sym___asm__] = ACTIONS(1966), + [anon_sym___asm] = ACTIONS(1966), + [sym_number_literal] = ACTIONS(2002), + [anon_sym_L_SQUOTE] = ACTIONS(2004), + [anon_sym_u_SQUOTE] = ACTIONS(2004), + [anon_sym_U_SQUOTE] = ACTIONS(2004), + [anon_sym_u8_SQUOTE] = ACTIONS(2004), + [anon_sym_SQUOTE] = ACTIONS(2004), + [anon_sym_L_DQUOTE] = ACTIONS(2006), + [anon_sym_u_DQUOTE] = ACTIONS(2006), + [anon_sym_U_DQUOTE] = ACTIONS(2006), + [anon_sym_u8_DQUOTE] = ACTIONS(2006), + [anon_sym_DQUOTE] = ACTIONS(2006), + [sym_true] = ACTIONS(1974), + [sym_false] = ACTIONS(1974), + [anon_sym_NULL] = ACTIONS(1976), + [anon_sym_nullptr] = ACTIONS(1976), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(2008), + [anon_sym_R_DQUOTE] = ACTIONS(2010), + [anon_sym_LR_DQUOTE] = ACTIONS(2010), + [anon_sym_uR_DQUOTE] = ACTIONS(2010), + [anon_sym_UR_DQUOTE] = ACTIONS(2010), + [anon_sym_u8R_DQUOTE] = ACTIONS(2010), + [anon_sym_co_await] = ACTIONS(2012), + [anon_sym_new] = ACTIONS(2014), + [anon_sym_requires] = ACTIONS(1988), + [sym_this] = ACTIONS(1974), + }, + [1217] = { + [sym_expression] = STATE(3187), + [sym__string] = STATE(3393), + [sym_conditional_expression] = STATE(3401), + [sym_assignment_expression] = STATE(3401), + [sym_pointer_expression] = STATE(3405), + [sym_unary_expression] = STATE(3401), + [sym_binary_expression] = STATE(3401), + [sym_update_expression] = STATE(3401), + [sym_cast_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3401), + [sym_alignof_expression] = STATE(3401), + [sym_offsetof_expression] = STATE(3401), + [sym_generic_expression] = STATE(3401), + [sym_subscript_expression] = STATE(3405), + [sym_call_expression] = STATE(3405), + [sym_gnu_asm_expression] = STATE(3401), + [sym_extension_expression] = STATE(3401), + [sym_field_expression] = STATE(3405), + [sym_compound_literal_expression] = STATE(3401), + [sym_parenthesized_expression] = STATE(3405), + [sym_char_literal] = STATE(3393), + [sym_concatenated_string] = STATE(3393), + [sym_string_literal] = STATE(2380), + [sym_null] = STATE(3401), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7745), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3401), + [sym_raw_string_literal] = STATE(2380), + [sym_co_await_expression] = STATE(3401), + [sym_new_expression] = STATE(3401), + [sym_delete_expression] = STATE(3401), + [sym_requires_clause] = STATE(3401), + [sym_requires_expression] = STATE(3401), + [sym_lambda_expression] = STATE(3401), + [sym_lambda_capture_specifier] = STATE(5494), + [sym_fold_expression] = STATE(3401), + [sym_parameter_pack_expansion] = STATE(3401), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3405), + [sym_qualified_type_identifier] = STATE(7745), + [sym_user_defined_literal] = STATE(3405), [sym_identifier] = ACTIONS(2453), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4725), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4736), [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), [anon_sym___extension__] = ACTIONS(2455), - [anon_sym_COLON_COLON] = ACTIONS(1806), + [anon_sym_COLON_COLON] = ACTIONS(1804), [anon_sym_LBRACK] = ACTIONS(2020), [sym_primitive_type] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), + [anon_sym_not] = ACTIONS(1796), + [anon_sym_compl] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_sizeof] = ACTIONS(1824), + [anon_sym___alignof__] = ACTIONS(1826), + [anon_sym___alignof] = ACTIONS(1826), + [anon_sym__alignof] = ACTIONS(1826), + [anon_sym_alignof] = ACTIONS(1826), + [anon_sym__Alignof] = ACTIONS(1826), + [anon_sym_offsetof] = ACTIONS(1828), + [anon_sym__Generic] = ACTIONS(1830), + [anon_sym_asm] = ACTIONS(1832), + [anon_sym___asm__] = ACTIONS(1832), + [anon_sym___asm] = ACTIONS(1832), + [sym_number_literal] = ACTIONS(1834), + [anon_sym_L_SQUOTE] = ACTIONS(1836), + [anon_sym_u_SQUOTE] = ACTIONS(1836), + [anon_sym_U_SQUOTE] = ACTIONS(1836), + [anon_sym_u8_SQUOTE] = ACTIONS(1836), + [anon_sym_SQUOTE] = ACTIONS(1836), + [anon_sym_L_DQUOTE] = ACTIONS(1838), + [anon_sym_u_DQUOTE] = ACTIONS(1838), + [anon_sym_U_DQUOTE] = ACTIONS(1838), + [anon_sym_u8_DQUOTE] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym_true] = ACTIONS(1840), + [sym_false] = ACTIONS(1840), + [anon_sym_NULL] = ACTIONS(1842), + [anon_sym_nullptr] = ACTIONS(1842), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1852), + [anon_sym_R_DQUOTE] = ACTIONS(1854), + [anon_sym_LR_DQUOTE] = ACTIONS(1854), + [anon_sym_uR_DQUOTE] = ACTIONS(1854), + [anon_sym_UR_DQUOTE] = ACTIONS(1854), + [anon_sym_u8R_DQUOTE] = ACTIONS(1854), + [anon_sym_co_await] = ACTIONS(1856), + [anon_sym_new] = ACTIONS(1858), + [anon_sym_requires] = ACTIONS(1860), + [sym_this] = ACTIONS(1840), + }, + [1218] = { + [sym_expression] = STATE(2432), + [sym__string] = STATE(2917), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(2917), + [sym_concatenated_string] = STATE(2917), + [sym_string_literal] = STATE(2114), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(2114), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), + [sym_identifier] = ACTIONS(1990), + [anon_sym_LPAREN2] = ACTIONS(4565), + [anon_sym_BANG] = ACTIONS(1994), + [anon_sym_TILDE] = ACTIONS(1994), + [anon_sym_DASH] = ACTIONS(1992), + [anon_sym_PLUS] = ACTIONS(1992), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(1996), + [anon_sym_COLON_COLON] = ACTIONS(1998), + [anon_sym_LBRACK] = ACTIONS(2020), + [anon_sym_RBRACK] = ACTIONS(4897), + [sym_primitive_type] = ACTIONS(1956), + [anon_sym_not] = ACTIONS(1992), + [anon_sym_compl] = ACTIONS(1992), + [anon_sym_DASH_DASH] = ACTIONS(3355), + [anon_sym_PLUS_PLUS] = ACTIONS(3355), + [anon_sym_sizeof] = ACTIONS(2000), + [anon_sym___alignof__] = ACTIONS(1960), + [anon_sym___alignof] = ACTIONS(1960), + [anon_sym__alignof] = ACTIONS(1960), + [anon_sym_alignof] = ACTIONS(1960), + [anon_sym__Alignof] = ACTIONS(1960), + [anon_sym_offsetof] = ACTIONS(1962), + [anon_sym__Generic] = ACTIONS(1964), + [anon_sym_asm] = ACTIONS(1966), + [anon_sym___asm__] = ACTIONS(1966), + [anon_sym___asm] = ACTIONS(1966), + [sym_number_literal] = ACTIONS(2002), + [anon_sym_L_SQUOTE] = ACTIONS(2004), + [anon_sym_u_SQUOTE] = ACTIONS(2004), + [anon_sym_U_SQUOTE] = ACTIONS(2004), + [anon_sym_u8_SQUOTE] = ACTIONS(2004), + [anon_sym_SQUOTE] = ACTIONS(2004), + [anon_sym_L_DQUOTE] = ACTIONS(2006), + [anon_sym_u_DQUOTE] = ACTIONS(2006), + [anon_sym_U_DQUOTE] = ACTIONS(2006), + [anon_sym_u8_DQUOTE] = ACTIONS(2006), + [anon_sym_DQUOTE] = ACTIONS(2006), + [sym_true] = ACTIONS(1974), + [sym_false] = ACTIONS(1974), + [anon_sym_NULL] = ACTIONS(1976), + [anon_sym_nullptr] = ACTIONS(1976), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(2008), + [anon_sym_R_DQUOTE] = ACTIONS(2010), + [anon_sym_LR_DQUOTE] = ACTIONS(2010), + [anon_sym_uR_DQUOTE] = ACTIONS(2010), + [anon_sym_UR_DQUOTE] = ACTIONS(2010), + [anon_sym_u8R_DQUOTE] = ACTIONS(2010), + [anon_sym_co_await] = ACTIONS(2012), + [anon_sym_new] = ACTIONS(2014), + [anon_sym_requires] = ACTIONS(1988), + [sym_this] = ACTIONS(1974), }, - [1149] = { - [sym_expression] = STATE(4654), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1219] = { + [sym_expression] = STATE(4741), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(4899), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -194423,9 +202475,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(123), [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4804), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -194437,169 +202488,168 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1150] = { - [sym_expression] = STATE(3549), - [sym__string] = STATE(3714), - [sym_conditional_expression] = STATE(3908), - [sym_assignment_expression] = STATE(3908), - [sym_pointer_expression] = STATE(3506), - [sym_unary_expression] = STATE(3908), - [sym_binary_expression] = STATE(3908), - [sym_update_expression] = STATE(3908), - [sym_cast_expression] = STATE(3908), - [sym_sizeof_expression] = STATE(3908), - [sym_alignof_expression] = STATE(3908), - [sym_offsetof_expression] = STATE(3908), - [sym_generic_expression] = STATE(3908), - [sym_subscript_expression] = STATE(3506), - [sym_call_expression] = STATE(3506), - [sym_gnu_asm_expression] = STATE(3908), - [sym_extension_expression] = STATE(3908), - [sym_field_expression] = STATE(3506), - [sym_compound_literal_expression] = STATE(3908), - [sym_parenthesized_expression] = STATE(3506), - [sym_char_literal] = STATE(3714), - [sym_concatenated_string] = STATE(3714), - [sym_string_literal] = STATE(2566), - [sym_null] = STATE(3908), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7868), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3908), - [sym_raw_string_literal] = STATE(2566), - [sym_co_await_expression] = STATE(3908), - [sym_new_expression] = STATE(3908), - [sym_delete_expression] = STATE(3908), - [sym_requires_clause] = STATE(3908), - [sym_requires_expression] = STATE(3908), - [sym_lambda_expression] = STATE(3908), - [sym_lambda_capture_specifier] = STATE(5415), - [sym_fold_expression] = STATE(3908), - [sym_parameter_pack_expansion] = STATE(3908), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3506), - [sym_qualified_type_identifier] = STATE(7868), - [sym_user_defined_literal] = STATE(3506), - [sym_identifier] = ACTIONS(2605), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4806), - [anon_sym_LPAREN2] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1870), - [anon_sym_TILDE] = ACTIONS(1870), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_PLUS] = ACTIONS(1872), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(2607), - [anon_sym_COLON_COLON] = ACTIONS(1880), + [1220] = { + [sym_expression] = STATE(3188), + [sym__string] = STATE(3393), + [sym_conditional_expression] = STATE(3401), + [sym_assignment_expression] = STATE(3401), + [sym_pointer_expression] = STATE(3405), + [sym_unary_expression] = STATE(3401), + [sym_binary_expression] = STATE(3401), + [sym_update_expression] = STATE(3401), + [sym_cast_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3401), + [sym_alignof_expression] = STATE(3401), + [sym_offsetof_expression] = STATE(3401), + [sym_generic_expression] = STATE(3401), + [sym_subscript_expression] = STATE(3405), + [sym_call_expression] = STATE(3405), + [sym_gnu_asm_expression] = STATE(3401), + [sym_extension_expression] = STATE(3401), + [sym_field_expression] = STATE(3405), + [sym_compound_literal_expression] = STATE(3401), + [sym_parenthesized_expression] = STATE(3405), + [sym_char_literal] = STATE(3393), + [sym_concatenated_string] = STATE(3393), + [sym_string_literal] = STATE(2380), + [sym_null] = STATE(3401), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7745), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3401), + [sym_raw_string_literal] = STATE(2380), + [sym_co_await_expression] = STATE(3401), + [sym_new_expression] = STATE(3401), + [sym_delete_expression] = STATE(3401), + [sym_requires_clause] = STATE(3401), + [sym_requires_expression] = STATE(3401), + [sym_lambda_expression] = STATE(3401), + [sym_lambda_capture_specifier] = STATE(5494), + [sym_fold_expression] = STATE(3401), + [sym_parameter_pack_expansion] = STATE(3401), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3405), + [sym_qualified_type_identifier] = STATE(7745), + [sym_user_defined_literal] = STATE(3405), + [sym_identifier] = ACTIONS(2453), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4707), + [anon_sym_LPAREN2] = ACTIONS(2018), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(2455), + [anon_sym_COLON_COLON] = ACTIONS(1804), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2611), - [anon_sym_not] = ACTIONS(1872), - [anon_sym_compl] = ACTIONS(1872), - [anon_sym_DASH_DASH] = ACTIONS(1892), - [anon_sym_PLUS_PLUS] = ACTIONS(1892), - [anon_sym_sizeof] = ACTIONS(1894), - [anon_sym___alignof__] = ACTIONS(1896), - [anon_sym___alignof] = ACTIONS(1896), - [anon_sym__alignof] = ACTIONS(1896), - [anon_sym_alignof] = ACTIONS(1896), - [anon_sym__Alignof] = ACTIONS(1896), - [anon_sym_offsetof] = ACTIONS(1898), - [anon_sym__Generic] = ACTIONS(1900), - [anon_sym_asm] = ACTIONS(1902), - [anon_sym___asm__] = ACTIONS(1902), - [anon_sym___asm] = ACTIONS(1902), - [sym_number_literal] = ACTIONS(1904), - [anon_sym_L_SQUOTE] = ACTIONS(1906), - [anon_sym_u_SQUOTE] = ACTIONS(1906), - [anon_sym_U_SQUOTE] = ACTIONS(1906), - [anon_sym_u8_SQUOTE] = ACTIONS(1906), - [anon_sym_SQUOTE] = ACTIONS(1906), - [anon_sym_L_DQUOTE] = ACTIONS(1908), - [anon_sym_u_DQUOTE] = ACTIONS(1908), - [anon_sym_U_DQUOTE] = ACTIONS(1908), - [anon_sym_u8_DQUOTE] = ACTIONS(1908), - [anon_sym_DQUOTE] = ACTIONS(1908), - [sym_true] = ACTIONS(1910), - [sym_false] = ACTIONS(1910), - [anon_sym_NULL] = ACTIONS(1912), - [anon_sym_nullptr] = ACTIONS(1912), + [sym_primitive_type] = ACTIONS(2459), + [anon_sym_not] = ACTIONS(1796), + [anon_sym_compl] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_sizeof] = ACTIONS(1824), + [anon_sym___alignof__] = ACTIONS(1826), + [anon_sym___alignof] = ACTIONS(1826), + [anon_sym__alignof] = ACTIONS(1826), + [anon_sym_alignof] = ACTIONS(1826), + [anon_sym__Alignof] = ACTIONS(1826), + [anon_sym_offsetof] = ACTIONS(1828), + [anon_sym__Generic] = ACTIONS(1830), + [anon_sym_asm] = ACTIONS(1832), + [anon_sym___asm__] = ACTIONS(1832), + [anon_sym___asm] = ACTIONS(1832), + [sym_number_literal] = ACTIONS(1834), + [anon_sym_L_SQUOTE] = ACTIONS(1836), + [anon_sym_u_SQUOTE] = ACTIONS(1836), + [anon_sym_U_SQUOTE] = ACTIONS(1836), + [anon_sym_u8_SQUOTE] = ACTIONS(1836), + [anon_sym_SQUOTE] = ACTIONS(1836), + [anon_sym_L_DQUOTE] = ACTIONS(1838), + [anon_sym_u_DQUOTE] = ACTIONS(1838), + [anon_sym_U_DQUOTE] = ACTIONS(1838), + [anon_sym_u8_DQUOTE] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym_true] = ACTIONS(1840), + [sym_false] = ACTIONS(1840), + [anon_sym_NULL] = ACTIONS(1842), + [anon_sym_nullptr] = ACTIONS(1842), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1916), - [anon_sym_R_DQUOTE] = ACTIONS(1918), - [anon_sym_LR_DQUOTE] = ACTIONS(1918), - [anon_sym_uR_DQUOTE] = ACTIONS(1918), - [anon_sym_UR_DQUOTE] = ACTIONS(1918), - [anon_sym_u8R_DQUOTE] = ACTIONS(1918), - [anon_sym_co_await] = ACTIONS(1920), - [anon_sym_new] = ACTIONS(1922), - [anon_sym_requires] = ACTIONS(1924), - [sym_this] = ACTIONS(1910), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1852), + [anon_sym_R_DQUOTE] = ACTIONS(1854), + [anon_sym_LR_DQUOTE] = ACTIONS(1854), + [anon_sym_uR_DQUOTE] = ACTIONS(1854), + [anon_sym_UR_DQUOTE] = ACTIONS(1854), + [anon_sym_u8R_DQUOTE] = ACTIONS(1854), + [anon_sym_co_await] = ACTIONS(1856), + [anon_sym_new] = ACTIONS(1858), + [anon_sym_requires] = ACTIONS(1860), + [sym_this] = ACTIONS(1840), }, - [1151] = { - [sym_expression] = STATE(2398), - [sym__string] = STATE(2950), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(2950), - [sym_concatenated_string] = STATE(2950), - [sym_string_literal] = STATE(2034), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(2034), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), + [1221] = { + [sym_expression] = STATE(3328), + [sym__string] = STATE(2917), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(2917), + [sym_concatenated_string] = STATE(2917), + [sym_string_literal] = STATE(2114), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(2114), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), [sym_identifier] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(4555), - [anon_sym_BANG] = ACTIONS(1994), - [anon_sym_TILDE] = ACTIONS(1994), - [anon_sym_DASH] = ACTIONS(1992), - [anon_sym_PLUS] = ACTIONS(1992), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(1996), - [anon_sym_COLON_COLON] = ACTIONS(1998), + [anon_sym_LPAREN2] = ACTIONS(4687), + [anon_sym_BANG] = ACTIONS(2535), + [anon_sym_TILDE] = ACTIONS(2535), + [anon_sym_DASH] = ACTIONS(2533), + [anon_sym_PLUS] = ACTIONS(2533), + [anon_sym_STAR] = ACTIONS(4366), + [anon_sym_AMP] = ACTIONS(4366), + [anon_sym___extension__] = ACTIONS(2537), + [anon_sym_COLON_COLON] = ACTIONS(2539), [anon_sym_LBRACK] = ACTIONS(2020), - [anon_sym_RBRACK] = ACTIONS(4809), [sym_primitive_type] = ACTIONS(1956), - [anon_sym_not] = ACTIONS(1992), - [anon_sym_compl] = ACTIONS(1992), - [anon_sym_DASH_DASH] = ACTIONS(3343), - [anon_sym_PLUS_PLUS] = ACTIONS(3343), - [anon_sym_sizeof] = ACTIONS(2000), + [anon_sym_not] = ACTIONS(2533), + [anon_sym_compl] = ACTIONS(2533), + [anon_sym_DASH_DASH] = ACTIONS(4498), + [anon_sym_PLUS_PLUS] = ACTIONS(4498), + [anon_sym_sizeof] = ACTIONS(2541), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), [anon_sym__alignof] = ACTIONS(1960), @@ -194627,74 +202677,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1976), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(2008), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(2543), [anon_sym_R_DQUOTE] = ACTIONS(2010), [anon_sym_LR_DQUOTE] = ACTIONS(2010), [anon_sym_uR_DQUOTE] = ACTIONS(2010), [anon_sym_UR_DQUOTE] = ACTIONS(2010), [anon_sym_u8R_DQUOTE] = ACTIONS(2010), - [anon_sym_co_await] = ACTIONS(2012), + [anon_sym_co_await] = ACTIONS(2545), [anon_sym_new] = ACTIONS(2014), [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [1152] = { - [sym_expression] = STATE(4686), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1222] = { + [sym_expression] = STATE(4839), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -194726,9 +202776,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(123), [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4811), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -194740,63 +202789,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1153] = { - [sym_expression] = STATE(4600), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1223] = { + [sym_expression] = STATE(4511), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(4813), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -194829,7 +202877,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -194841,163 +202889,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1154] = { - [sym_expression] = STATE(3755), - [sym__string] = STATE(4199), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(2935), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(2935), - [sym_call_expression] = STATE(2935), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(2935), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(2935), - [sym_char_literal] = STATE(4199), - [sym_concatenated_string] = STATE(4199), - [sym_string_literal] = STATE(3059), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3059), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2935), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(2935), - [sym_identifier] = ACTIONS(4334), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4786), - [anon_sym_LPAREN2] = ACTIONS(4815), - [anon_sym_BANG] = ACTIONS(3609), - [anon_sym_TILDE] = ACTIONS(3609), - [anon_sym_DASH] = ACTIONS(3607), - [anon_sym_PLUS] = ACTIONS(3607), - [anon_sym_STAR] = ACTIONS(4336), - [anon_sym_AMP] = ACTIONS(4336), - [anon_sym___extension__] = ACTIONS(3611), - [anon_sym_COLON_COLON] = ACTIONS(3613), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3607), - [anon_sym_compl] = ACTIONS(3607), - [anon_sym_DASH_DASH] = ACTIONS(4338), - [anon_sym_PLUS_PLUS] = ACTIONS(4338), - [anon_sym_sizeof] = ACTIONS(3617), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3619), - [anon_sym_L_SQUOTE] = ACTIONS(3621), - [anon_sym_u_SQUOTE] = ACTIONS(3621), - [anon_sym_U_SQUOTE] = ACTIONS(3621), - [anon_sym_u8_SQUOTE] = ACTIONS(3621), - [anon_sym_SQUOTE] = ACTIONS(3621), - [anon_sym_L_DQUOTE] = ACTIONS(3623), - [anon_sym_u_DQUOTE] = ACTIONS(3623), - [anon_sym_U_DQUOTE] = ACTIONS(3623), - [anon_sym_u8_DQUOTE] = ACTIONS(3623), - [anon_sym_DQUOTE] = ACTIONS(3623), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3625), - [anon_sym_R_DQUOTE] = ACTIONS(3627), - [anon_sym_LR_DQUOTE] = ACTIONS(3627), - [anon_sym_uR_DQUOTE] = ACTIONS(3627), - [anon_sym_UR_DQUOTE] = ACTIONS(3627), - [anon_sym_u8R_DQUOTE] = ACTIONS(3627), - [anon_sym_co_await] = ACTIONS(3629), - [anon_sym_new] = ACTIONS(3631), - [anon_sym_requires] = ACTIONS(3633), - [sym_this] = ACTIONS(229), - }, - [1155] = { - [sym_expression] = STATE(4704), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1224] = { + [sym_expression] = STATE(4687), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -195029,9 +202976,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(123), [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4817), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -195043,63 +202989,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1156] = { - [sym_expression] = STATE(4602), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1225] = { + [sym_expression] = STATE(4336), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(4819), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -195132,7 +203077,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -195144,163 +203089,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1157] = { - [sym_expression] = STATE(2398), - [sym__string] = STATE(2950), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(2950), - [sym_concatenated_string] = STATE(2950), - [sym_string_literal] = STATE(2034), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(2034), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), - [sym_identifier] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(4555), - [anon_sym_BANG] = ACTIONS(1994), - [anon_sym_TILDE] = ACTIONS(1994), - [anon_sym_DASH] = ACTIONS(1992), - [anon_sym_PLUS] = ACTIONS(1992), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(1996), - [anon_sym_COLON_COLON] = ACTIONS(1998), - [anon_sym_LBRACK] = ACTIONS(2020), - [anon_sym_RBRACK] = ACTIONS(4821), - [sym_primitive_type] = ACTIONS(1956), - [anon_sym_not] = ACTIONS(1992), - [anon_sym_compl] = ACTIONS(1992), - [anon_sym_DASH_DASH] = ACTIONS(3343), - [anon_sym_PLUS_PLUS] = ACTIONS(3343), - [anon_sym_sizeof] = ACTIONS(2000), - [anon_sym___alignof__] = ACTIONS(1960), - [anon_sym___alignof] = ACTIONS(1960), - [anon_sym__alignof] = ACTIONS(1960), - [anon_sym_alignof] = ACTIONS(1960), - [anon_sym__Alignof] = ACTIONS(1960), - [anon_sym_offsetof] = ACTIONS(1962), - [anon_sym__Generic] = ACTIONS(1964), - [anon_sym_asm] = ACTIONS(1966), - [anon_sym___asm__] = ACTIONS(1966), - [anon_sym___asm] = ACTIONS(1966), - [sym_number_literal] = ACTIONS(2002), - [anon_sym_L_SQUOTE] = ACTIONS(2004), - [anon_sym_u_SQUOTE] = ACTIONS(2004), - [anon_sym_U_SQUOTE] = ACTIONS(2004), - [anon_sym_u8_SQUOTE] = ACTIONS(2004), - [anon_sym_SQUOTE] = ACTIONS(2004), - [anon_sym_L_DQUOTE] = ACTIONS(2006), - [anon_sym_u_DQUOTE] = ACTIONS(2006), - [anon_sym_U_DQUOTE] = ACTIONS(2006), - [anon_sym_u8_DQUOTE] = ACTIONS(2006), - [anon_sym_DQUOTE] = ACTIONS(2006), - [sym_true] = ACTIONS(1974), - [sym_false] = ACTIONS(1974), - [anon_sym_NULL] = ACTIONS(1976), - [anon_sym_nullptr] = ACTIONS(1976), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(2008), - [anon_sym_R_DQUOTE] = ACTIONS(2010), - [anon_sym_LR_DQUOTE] = ACTIONS(2010), - [anon_sym_uR_DQUOTE] = ACTIONS(2010), - [anon_sym_UR_DQUOTE] = ACTIONS(2010), - [anon_sym_u8R_DQUOTE] = ACTIONS(2010), - [anon_sym_co_await] = ACTIONS(2012), - [anon_sym_new] = ACTIONS(2014), - [anon_sym_requires] = ACTIONS(1988), - [sym_this] = ACTIONS(1974), - }, - [1158] = { - [sym_expression] = STATE(4741), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1226] = { + [sym_expression] = STATE(3756), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -195332,9 +203176,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(123), [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4823), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -195346,63 +203189,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1159] = { - [sym_expression] = STATE(4322), - [sym__string] = STATE(4250), - [sym_comma_expression] = STATE(7389), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1227] = { + [sym_expression] = STATE(4379), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -195435,7 +203277,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -195447,62 +203289,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1160] = { - [sym_expression] = STATE(4760), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1228] = { + [sym_expression] = STATE(4354), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -195534,9 +203376,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(123), [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4825), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -195548,68 +203389,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1161] = { - [sym_expression] = STATE(4266), - [sym__string] = STATE(4380), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3253), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3253), - [sym_call_expression] = STATE(3253), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3253), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3253), - [sym_char_literal] = STATE(4380), - [sym_concatenated_string] = STATE(4380), - [sym_string_literal] = STATE(3416), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3416), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3253), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3253), - [sym_identifier] = ACTIONS(3823), - [anon_sym_LPAREN2] = ACTIONS(4557), - [anon_sym_BANG] = ACTIONS(3827), - [anon_sym_TILDE] = ACTIONS(3827), - [anon_sym_DASH] = ACTIONS(3825), - [anon_sym_PLUS] = ACTIONS(3825), - [anon_sym_STAR] = ACTIONS(4382), - [anon_sym_AMP] = ACTIONS(4382), - [anon_sym_SEMI] = ACTIONS(4827), - [anon_sym___extension__] = ACTIONS(3829), - [anon_sym_COLON_COLON] = ACTIONS(3831), - [anon_sym_LBRACK] = ACTIONS(4792), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3825), - [anon_sym_compl] = ACTIONS(3825), - [anon_sym_DASH_DASH] = ACTIONS(4384), - [anon_sym_PLUS_PLUS] = ACTIONS(4384), - [anon_sym_sizeof] = ACTIONS(3833), + [1229] = { + [sym_expression] = STATE(4355), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -195620,198 +203460,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(113), [anon_sym___asm__] = ACTIONS(113), [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3835), - [anon_sym_L_SQUOTE] = ACTIONS(3837), - [anon_sym_u_SQUOTE] = ACTIONS(3837), - [anon_sym_U_SQUOTE] = ACTIONS(3837), - [anon_sym_u8_SQUOTE] = ACTIONS(3837), - [anon_sym_SQUOTE] = ACTIONS(3837), - [anon_sym_L_DQUOTE] = ACTIONS(3839), - [anon_sym_u_DQUOTE] = ACTIONS(3839), - [anon_sym_U_DQUOTE] = ACTIONS(3839), - [anon_sym_u8_DQUOTE] = ACTIONS(3839), - [anon_sym_DQUOTE] = ACTIONS(3839), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(117), + [anon_sym_u_SQUOTE] = ACTIONS(117), + [anon_sym_U_SQUOTE] = ACTIONS(117), + [anon_sym_u8_SQUOTE] = ACTIONS(117), + [anon_sym_SQUOTE] = ACTIONS(117), + [anon_sym_L_DQUOTE] = ACTIONS(119), + [anon_sym_u_DQUOTE] = ACTIONS(119), + [anon_sym_U_DQUOTE] = ACTIONS(119), + [anon_sym_u8_DQUOTE] = ACTIONS(119), + [anon_sym_DQUOTE] = ACTIONS(119), [sym_true] = ACTIONS(229), [sym_false] = ACTIONS(229), [anon_sym_NULL] = ACTIONS(123), [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3841), - [anon_sym_R_DQUOTE] = ACTIONS(3843), - [anon_sym_LR_DQUOTE] = ACTIONS(3843), - [anon_sym_uR_DQUOTE] = ACTIONS(3843), - [anon_sym_UR_DQUOTE] = ACTIONS(3843), - [anon_sym_u8R_DQUOTE] = ACTIONS(3843), - [anon_sym_co_await] = ACTIONS(3845), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(145), + [anon_sym_R_DQUOTE] = ACTIONS(159), + [anon_sym_LR_DQUOTE] = ACTIONS(159), + [anon_sym_uR_DQUOTE] = ACTIONS(159), + [anon_sym_UR_DQUOTE] = ACTIONS(159), + [anon_sym_u8R_DQUOTE] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(161), [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1162] = { - [sym_expression] = STATE(3160), - [sym__string] = STATE(3235), - [sym_conditional_expression] = STATE(3373), - [sym_assignment_expression] = STATE(3373), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3373), - [sym_binary_expression] = STATE(3373), - [sym_update_expression] = STATE(3373), - [sym_cast_expression] = STATE(3373), - [sym_sizeof_expression] = STATE(3373), - [sym_alignof_expression] = STATE(3373), - [sym_offsetof_expression] = STATE(3373), - [sym_generic_expression] = STATE(3373), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3373), - [sym_extension_expression] = STATE(3373), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3373), - [sym_parenthesized_expression] = STATE(3365), - [sym_char_literal] = STATE(3235), - [sym_concatenated_string] = STATE(3235), - [sym_string_literal] = STATE(2358), - [sym_null] = STATE(3373), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7814), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3373), - [sym_raw_string_literal] = STATE(2358), - [sym_co_await_expression] = STATE(3373), - [sym_new_expression] = STATE(3373), - [sym_delete_expression] = STATE(3373), - [sym_requires_clause] = STATE(3373), - [sym_requires_expression] = STATE(3373), - [sym_lambda_expression] = STATE(3373), - [sym_lambda_capture_specifier] = STATE(5414), - [sym_fold_expression] = STATE(3373), - [sym_parameter_pack_expansion] = STATE(3373), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3365), - [sym_qualified_type_identifier] = STATE(7814), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2453), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4755), - [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(2455), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), - }, - [1163] = { - [sym_expression] = STATE(4549), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3568), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3568), - [sym_call_expression] = STATE(3568), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3568), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3568), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3568), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3568), - [sym_identifier] = ACTIONS(3867), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4786), - [anon_sym_LPAREN2] = ACTIONS(4829), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_TILDE] = ACTIONS(3871), - [anon_sym_DASH] = ACTIONS(3869), - [anon_sym_PLUS] = ACTIONS(3869), - [anon_sym_STAR] = ACTIONS(4312), - [anon_sym_AMP] = ACTIONS(4312), - [anon_sym___extension__] = ACTIONS(3873), - [anon_sym_COLON_COLON] = ACTIONS(3875), + [1230] = { + [sym_expression] = STATE(4358), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), + [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3869), - [anon_sym_compl] = ACTIONS(3869), - [anon_sym_DASH_DASH] = ACTIONS(4404), - [anon_sym_PLUS_PLUS] = ACTIONS(4404), - [anon_sym_sizeof] = ACTIONS(3877), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -195839,479 +203577,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3879), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3881), - [anon_sym_new] = ACTIONS(3865), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1164] = { - [sym_expression] = STATE(3156), - [sym__string] = STATE(3235), - [sym_conditional_expression] = STATE(3373), - [sym_assignment_expression] = STATE(3373), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3373), - [sym_binary_expression] = STATE(3373), - [sym_update_expression] = STATE(3373), - [sym_cast_expression] = STATE(3373), - [sym_sizeof_expression] = STATE(3373), - [sym_alignof_expression] = STATE(3373), - [sym_offsetof_expression] = STATE(3373), - [sym_generic_expression] = STATE(3373), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3373), - [sym_extension_expression] = STATE(3373), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3373), - [sym_parenthesized_expression] = STATE(3365), - [sym_char_literal] = STATE(3235), - [sym_concatenated_string] = STATE(3235), - [sym_string_literal] = STATE(2358), - [sym_null] = STATE(3373), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7814), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3373), - [sym_raw_string_literal] = STATE(2358), - [sym_co_await_expression] = STATE(3373), - [sym_new_expression] = STATE(3373), - [sym_delete_expression] = STATE(3373), - [sym_requires_clause] = STATE(3373), - [sym_requires_expression] = STATE(3373), - [sym_lambda_expression] = STATE(3373), - [sym_lambda_capture_specifier] = STATE(5414), - [sym_fold_expression] = STATE(3373), - [sym_parameter_pack_expansion] = STATE(3373), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3365), - [sym_qualified_type_identifier] = STATE(7814), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2453), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4698), - [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(2455), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), - }, - [1165] = { - [sym_expression] = STATE(3330), - [sym__string] = STATE(3360), - [sym_conditional_expression] = STATE(3651), - [sym_assignment_expression] = STATE(3651), - [sym_pointer_expression] = STATE(3547), - [sym_unary_expression] = STATE(3651), - [sym_binary_expression] = STATE(3651), - [sym_update_expression] = STATE(3651), - [sym_cast_expression] = STATE(3651), - [sym_sizeof_expression] = STATE(3651), - [sym_alignof_expression] = STATE(3651), - [sym_offsetof_expression] = STATE(3651), - [sym_generic_expression] = STATE(3651), - [sym_subscript_expression] = STATE(3547), - [sym_call_expression] = STATE(3547), - [sym_gnu_asm_expression] = STATE(3651), - [sym_extension_expression] = STATE(3651), - [sym_field_expression] = STATE(3547), - [sym_compound_literal_expression] = STATE(3651), - [sym_parenthesized_expression] = STATE(3547), - [sym_char_literal] = STATE(3360), - [sym_concatenated_string] = STATE(3360), - [sym_string_literal] = STATE(2369), - [sym_null] = STATE(3651), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7649), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3651), - [sym_raw_string_literal] = STATE(2369), - [sym_co_await_expression] = STATE(3651), - [sym_new_expression] = STATE(3651), - [sym_delete_expression] = STATE(3651), - [sym_requires_clause] = STATE(3651), - [sym_requires_expression] = STATE(3651), - [sym_lambda_expression] = STATE(3651), - [sym_lambda_capture_specifier] = STATE(5395), - [sym_fold_expression] = STATE(3651), - [sym_parameter_pack_expansion] = STATE(3651), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5773), - [sym_qualified_identifier] = STATE(3547), - [sym_qualified_type_identifier] = STATE(7649), - [sym_user_defined_literal] = STATE(3547), - [sym_identifier] = ACTIONS(2489), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4831), - [anon_sym_LPAREN2] = ACTIONS(4833), - [anon_sym_BANG] = ACTIONS(2493), - [anon_sym_TILDE] = ACTIONS(2493), - [anon_sym_DASH] = ACTIONS(2491), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_STAR] = ACTIONS(3124), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym___extension__] = ACTIONS(2495), - [anon_sym_COLON_COLON] = ACTIONS(2497), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2501), - [anon_sym_not] = ACTIONS(2491), - [anon_sym_compl] = ACTIONS(2491), - [anon_sym_DASH_DASH] = ACTIONS(4358), - [anon_sym_PLUS_PLUS] = ACTIONS(4358), - [anon_sym_sizeof] = ACTIONS(2503), - [anon_sym___alignof__] = ACTIONS(2505), - [anon_sym___alignof] = ACTIONS(2505), - [anon_sym__alignof] = ACTIONS(2505), - [anon_sym_alignof] = ACTIONS(2505), - [anon_sym__Alignof] = ACTIONS(2505), - [anon_sym_offsetof] = ACTIONS(2507), - [anon_sym__Generic] = ACTIONS(2509), - [anon_sym_asm] = ACTIONS(2511), - [anon_sym___asm__] = ACTIONS(2511), - [anon_sym___asm] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2515), - [anon_sym_u_SQUOTE] = ACTIONS(2515), - [anon_sym_U_SQUOTE] = ACTIONS(2515), - [anon_sym_u8_SQUOTE] = ACTIONS(2515), - [anon_sym_SQUOTE] = ACTIONS(2515), - [anon_sym_L_DQUOTE] = ACTIONS(2517), - [anon_sym_u_DQUOTE] = ACTIONS(2517), - [anon_sym_U_DQUOTE] = ACTIONS(2517), - [anon_sym_u8_DQUOTE] = ACTIONS(2517), - [anon_sym_DQUOTE] = ACTIONS(2517), - [sym_true] = ACTIONS(2519), - [sym_false] = ACTIONS(2519), - [anon_sym_NULL] = ACTIONS(2521), - [anon_sym_nullptr] = ACTIONS(2521), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(2523), - [anon_sym_R_DQUOTE] = ACTIONS(2525), - [anon_sym_LR_DQUOTE] = ACTIONS(2525), - [anon_sym_uR_DQUOTE] = ACTIONS(2525), - [anon_sym_UR_DQUOTE] = ACTIONS(2525), - [anon_sym_u8R_DQUOTE] = ACTIONS(2525), - [anon_sym_co_await] = ACTIONS(2527), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_requires] = ACTIONS(2531), - [sym_this] = ACTIONS(2519), - }, - [1166] = { - [sym_expression] = STATE(3208), - [sym__string] = STATE(3235), - [sym_conditional_expression] = STATE(3373), - [sym_assignment_expression] = STATE(3373), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3373), - [sym_binary_expression] = STATE(3373), - [sym_update_expression] = STATE(3373), - [sym_cast_expression] = STATE(3373), - [sym_sizeof_expression] = STATE(3373), - [sym_alignof_expression] = STATE(3373), - [sym_offsetof_expression] = STATE(3373), - [sym_generic_expression] = STATE(3373), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3373), - [sym_extension_expression] = STATE(3373), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3373), - [sym_parenthesized_expression] = STATE(3365), - [sym_char_literal] = STATE(3235), - [sym_concatenated_string] = STATE(3235), - [sym_string_literal] = STATE(2358), - [sym_null] = STATE(3373), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7814), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3373), - [sym_raw_string_literal] = STATE(2358), - [sym_co_await_expression] = STATE(3373), - [sym_new_expression] = STATE(3373), - [sym_delete_expression] = STATE(3373), - [sym_requires_clause] = STATE(3373), - [sym_requires_expression] = STATE(3373), - [sym_lambda_expression] = STATE(3373), - [sym_lambda_capture_specifier] = STATE(5414), - [sym_fold_expression] = STATE(3373), - [sym_parameter_pack_expansion] = STATE(3373), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3365), - [sym_qualified_type_identifier] = STATE(7814), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2453), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4758), - [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(2455), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), - }, - [1167] = { - [sym_expression] = STATE(2398), - [sym__string] = STATE(2950), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(2950), - [sym_concatenated_string] = STATE(2950), - [sym_string_literal] = STATE(2034), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(2034), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), - [sym_identifier] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(4555), - [anon_sym_BANG] = ACTIONS(1994), - [anon_sym_TILDE] = ACTIONS(1994), - [anon_sym_DASH] = ACTIONS(1992), - [anon_sym_PLUS] = ACTIONS(1992), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(1996), - [anon_sym_COLON_COLON] = ACTIONS(1998), - [anon_sym_LBRACK] = ACTIONS(2020), - [anon_sym_RBRACK] = ACTIONS(4835), - [sym_primitive_type] = ACTIONS(1956), - [anon_sym_not] = ACTIONS(1992), - [anon_sym_compl] = ACTIONS(1992), - [anon_sym_DASH_DASH] = ACTIONS(3343), - [anon_sym_PLUS_PLUS] = ACTIONS(3343), - [anon_sym_sizeof] = ACTIONS(2000), - [anon_sym___alignof__] = ACTIONS(1960), - [anon_sym___alignof] = ACTIONS(1960), - [anon_sym__alignof] = ACTIONS(1960), - [anon_sym_alignof] = ACTIONS(1960), - [anon_sym__Alignof] = ACTIONS(1960), - [anon_sym_offsetof] = ACTIONS(1962), - [anon_sym__Generic] = ACTIONS(1964), - [anon_sym_asm] = ACTIONS(1966), - [anon_sym___asm__] = ACTIONS(1966), - [anon_sym___asm] = ACTIONS(1966), - [sym_number_literal] = ACTIONS(2002), - [anon_sym_L_SQUOTE] = ACTIONS(2004), - [anon_sym_u_SQUOTE] = ACTIONS(2004), - [anon_sym_U_SQUOTE] = ACTIONS(2004), - [anon_sym_u8_SQUOTE] = ACTIONS(2004), - [anon_sym_SQUOTE] = ACTIONS(2004), - [anon_sym_L_DQUOTE] = ACTIONS(2006), - [anon_sym_u_DQUOTE] = ACTIONS(2006), - [anon_sym_U_DQUOTE] = ACTIONS(2006), - [anon_sym_u8_DQUOTE] = ACTIONS(2006), - [anon_sym_DQUOTE] = ACTIONS(2006), - [sym_true] = ACTIONS(1974), - [sym_false] = ACTIONS(1974), - [anon_sym_NULL] = ACTIONS(1976), - [anon_sym_nullptr] = ACTIONS(1976), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(2008), - [anon_sym_R_DQUOTE] = ACTIONS(2010), - [anon_sym_LR_DQUOTE] = ACTIONS(2010), - [anon_sym_uR_DQUOTE] = ACTIONS(2010), - [anon_sym_UR_DQUOTE] = ACTIONS(2010), - [anon_sym_u8R_DQUOTE] = ACTIONS(2010), - [anon_sym_co_await] = ACTIONS(2012), - [anon_sym_new] = ACTIONS(2014), - [anon_sym_requires] = ACTIONS(1988), - [sym_this] = ACTIONS(1974), - }, - [1168] = { - [sym_expression] = STATE(4723), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1231] = { + [sym_expression] = STATE(4361), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(4837), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -196344,7 +203677,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -196356,265 +203689,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1169] = { - [sym_expression] = STATE(2398), - [sym__string] = STATE(2950), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(2950), - [sym_concatenated_string] = STATE(2950), - [sym_string_literal] = STATE(2034), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(2034), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), - [sym_identifier] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(4555), - [anon_sym_BANG] = ACTIONS(1994), - [anon_sym_TILDE] = ACTIONS(1994), - [anon_sym_DASH] = ACTIONS(1992), - [anon_sym_PLUS] = ACTIONS(1992), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(1996), - [anon_sym_COLON_COLON] = ACTIONS(1998), - [anon_sym_LBRACK] = ACTIONS(2020), - [anon_sym_RBRACK] = ACTIONS(4839), - [sym_primitive_type] = ACTIONS(1956), - [anon_sym_not] = ACTIONS(1992), - [anon_sym_compl] = ACTIONS(1992), - [anon_sym_DASH_DASH] = ACTIONS(3343), - [anon_sym_PLUS_PLUS] = ACTIONS(3343), - [anon_sym_sizeof] = ACTIONS(2000), - [anon_sym___alignof__] = ACTIONS(1960), - [anon_sym___alignof] = ACTIONS(1960), - [anon_sym__alignof] = ACTIONS(1960), - [anon_sym_alignof] = ACTIONS(1960), - [anon_sym__Alignof] = ACTIONS(1960), - [anon_sym_offsetof] = ACTIONS(1962), - [anon_sym__Generic] = ACTIONS(1964), - [anon_sym_asm] = ACTIONS(1966), - [anon_sym___asm__] = ACTIONS(1966), - [anon_sym___asm] = ACTIONS(1966), - [sym_number_literal] = ACTIONS(2002), - [anon_sym_L_SQUOTE] = ACTIONS(2004), - [anon_sym_u_SQUOTE] = ACTIONS(2004), - [anon_sym_U_SQUOTE] = ACTIONS(2004), - [anon_sym_u8_SQUOTE] = ACTIONS(2004), - [anon_sym_SQUOTE] = ACTIONS(2004), - [anon_sym_L_DQUOTE] = ACTIONS(2006), - [anon_sym_u_DQUOTE] = ACTIONS(2006), - [anon_sym_U_DQUOTE] = ACTIONS(2006), - [anon_sym_u8_DQUOTE] = ACTIONS(2006), - [anon_sym_DQUOTE] = ACTIONS(2006), - [sym_true] = ACTIONS(1974), - [sym_false] = ACTIONS(1974), - [anon_sym_NULL] = ACTIONS(1976), - [anon_sym_nullptr] = ACTIONS(1976), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(2008), - [anon_sym_R_DQUOTE] = ACTIONS(2010), - [anon_sym_LR_DQUOTE] = ACTIONS(2010), - [anon_sym_uR_DQUOTE] = ACTIONS(2010), - [anon_sym_UR_DQUOTE] = ACTIONS(2010), - [anon_sym_u8R_DQUOTE] = ACTIONS(2010), - [anon_sym_co_await] = ACTIONS(2012), - [anon_sym_new] = ACTIONS(2014), - [anon_sym_requires] = ACTIONS(1988), - [sym_this] = ACTIONS(1974), - }, - [1170] = { - [sym_expression] = STATE(3307), - [sym__string] = STATE(2950), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(2950), - [sym_concatenated_string] = STATE(2950), - [sym_string_literal] = STATE(2034), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(2034), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), - [sym_identifier] = ACTIONS(1990), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4841), - [anon_sym_LPAREN2] = ACTIONS(4843), - [anon_sym_BANG] = ACTIONS(2535), - [anon_sym_TILDE] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2533), - [anon_sym_PLUS] = ACTIONS(2533), - [anon_sym_STAR] = ACTIONS(4312), - [anon_sym_AMP] = ACTIONS(4312), - [anon_sym___extension__] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(2539), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(1956), - [anon_sym_not] = ACTIONS(2533), - [anon_sym_compl] = ACTIONS(2533), - [anon_sym_DASH_DASH] = ACTIONS(4316), - [anon_sym_PLUS_PLUS] = ACTIONS(4316), - [anon_sym_sizeof] = ACTIONS(2541), - [anon_sym___alignof__] = ACTIONS(1960), - [anon_sym___alignof] = ACTIONS(1960), - [anon_sym__alignof] = ACTIONS(1960), - [anon_sym_alignof] = ACTIONS(1960), - [anon_sym__Alignof] = ACTIONS(1960), - [anon_sym_offsetof] = ACTIONS(1962), - [anon_sym__Generic] = ACTIONS(1964), - [anon_sym_asm] = ACTIONS(1966), - [anon_sym___asm__] = ACTIONS(1966), - [anon_sym___asm] = ACTIONS(1966), - [sym_number_literal] = ACTIONS(2002), - [anon_sym_L_SQUOTE] = ACTIONS(2004), - [anon_sym_u_SQUOTE] = ACTIONS(2004), - [anon_sym_U_SQUOTE] = ACTIONS(2004), - [anon_sym_u8_SQUOTE] = ACTIONS(2004), - [anon_sym_SQUOTE] = ACTIONS(2004), - [anon_sym_L_DQUOTE] = ACTIONS(2006), - [anon_sym_u_DQUOTE] = ACTIONS(2006), - [anon_sym_U_DQUOTE] = ACTIONS(2006), - [anon_sym_u8_DQUOTE] = ACTIONS(2006), - [anon_sym_DQUOTE] = ACTIONS(2006), - [sym_true] = ACTIONS(1974), - [sym_false] = ACTIONS(1974), - [anon_sym_NULL] = ACTIONS(1976), - [anon_sym_nullptr] = ACTIONS(1976), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(2543), - [anon_sym_R_DQUOTE] = ACTIONS(2010), - [anon_sym_LR_DQUOTE] = ACTIONS(2010), - [anon_sym_uR_DQUOTE] = ACTIONS(2010), - [anon_sym_UR_DQUOTE] = ACTIONS(2010), - [anon_sym_u8R_DQUOTE] = ACTIONS(2010), - [anon_sym_co_await] = ACTIONS(2545), - [anon_sym_new] = ACTIONS(2014), - [anon_sym_requires] = ACTIONS(1988), - [sym_this] = ACTIONS(1974), - }, - [1171] = { - [sym_expression] = STATE(4634), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1232] = { + [sym_expression] = STATE(4363), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(4845), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -196647,7 +203777,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -196659,265 +203789,162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1172] = { - [sym_expression] = STATE(3110), - [sym__string] = STATE(3235), - [sym_conditional_expression] = STATE(3373), - [sym_assignment_expression] = STATE(3373), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3373), - [sym_binary_expression] = STATE(3373), - [sym_update_expression] = STATE(3373), - [sym_cast_expression] = STATE(3373), - [sym_sizeof_expression] = STATE(3373), - [sym_alignof_expression] = STATE(3373), - [sym_offsetof_expression] = STATE(3373), - [sym_generic_expression] = STATE(3373), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3373), - [sym_extension_expression] = STATE(3373), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3373), - [sym_parenthesized_expression] = STATE(3365), - [sym_char_literal] = STATE(3235), - [sym_concatenated_string] = STATE(3235), - [sym_string_literal] = STATE(2358), - [sym_null] = STATE(3373), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7814), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3373), - [sym_raw_string_literal] = STATE(2358), - [sym_co_await_expression] = STATE(3373), - [sym_new_expression] = STATE(3373), - [sym_delete_expression] = STATE(3373), - [sym_requires_clause] = STATE(3373), - [sym_requires_expression] = STATE(3373), - [sym_lambda_expression] = STATE(3373), - [sym_lambda_capture_specifier] = STATE(5414), - [sym_fold_expression] = STATE(3373), - [sym_parameter_pack_expansion] = STATE(3373), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3365), - [sym_qualified_type_identifier] = STATE(7814), - [sym_user_defined_literal] = STATE(3365), + [1233] = { + [sym_expression] = STATE(3200), + [sym__string] = STATE(3393), + [sym_conditional_expression] = STATE(3401), + [sym_assignment_expression] = STATE(3401), + [sym_pointer_expression] = STATE(3405), + [sym_unary_expression] = STATE(3401), + [sym_binary_expression] = STATE(3401), + [sym_update_expression] = STATE(3401), + [sym_cast_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3401), + [sym_alignof_expression] = STATE(3401), + [sym_offsetof_expression] = STATE(3401), + [sym_generic_expression] = STATE(3401), + [sym_subscript_expression] = STATE(3405), + [sym_call_expression] = STATE(3405), + [sym_gnu_asm_expression] = STATE(3401), + [sym_extension_expression] = STATE(3401), + [sym_field_expression] = STATE(3405), + [sym_compound_literal_expression] = STATE(3401), + [sym_parenthesized_expression] = STATE(3405), + [sym_char_literal] = STATE(3393), + [sym_concatenated_string] = STATE(3393), + [sym_string_literal] = STATE(2380), + [sym_null] = STATE(3401), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7745), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3401), + [sym_raw_string_literal] = STATE(2380), + [sym_co_await_expression] = STATE(3401), + [sym_new_expression] = STATE(3401), + [sym_delete_expression] = STATE(3401), + [sym_requires_clause] = STATE(3401), + [sym_requires_expression] = STATE(3401), + [sym_lambda_expression] = STATE(3401), + [sym_lambda_capture_specifier] = STATE(5494), + [sym_fold_expression] = STATE(3401), + [sym_parameter_pack_expansion] = STATE(3401), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3405), + [sym_qualified_type_identifier] = STATE(7745), + [sym_user_defined_literal] = STATE(3405), [sym_identifier] = ACTIONS(2453), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4716), [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), [anon_sym___extension__] = ACTIONS(2455), - [anon_sym_COLON_COLON] = ACTIONS(1806), + [anon_sym_COLON_COLON] = ACTIONS(1804), [anon_sym_LBRACK] = ACTIONS(2020), [sym_primitive_type] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), - }, - [1173] = { - [sym_expression] = STATE(2398), - [sym__string] = STATE(2950), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(2950), - [sym_concatenated_string] = STATE(2950), - [sym_string_literal] = STATE(2034), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(2034), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), - [sym_identifier] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(4555), - [anon_sym_BANG] = ACTIONS(1994), - [anon_sym_TILDE] = ACTIONS(1994), - [anon_sym_DASH] = ACTIONS(1992), - [anon_sym_PLUS] = ACTIONS(1992), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(1996), - [anon_sym_COLON_COLON] = ACTIONS(1998), - [anon_sym_LBRACK] = ACTIONS(2020), - [anon_sym_RBRACK] = ACTIONS(4847), - [sym_primitive_type] = ACTIONS(1956), - [anon_sym_not] = ACTIONS(1992), - [anon_sym_compl] = ACTIONS(1992), - [anon_sym_DASH_DASH] = ACTIONS(3343), - [anon_sym_PLUS_PLUS] = ACTIONS(3343), - [anon_sym_sizeof] = ACTIONS(2000), - [anon_sym___alignof__] = ACTIONS(1960), - [anon_sym___alignof] = ACTIONS(1960), - [anon_sym__alignof] = ACTIONS(1960), - [anon_sym_alignof] = ACTIONS(1960), - [anon_sym__Alignof] = ACTIONS(1960), - [anon_sym_offsetof] = ACTIONS(1962), - [anon_sym__Generic] = ACTIONS(1964), - [anon_sym_asm] = ACTIONS(1966), - [anon_sym___asm__] = ACTIONS(1966), - [anon_sym___asm] = ACTIONS(1966), - [sym_number_literal] = ACTIONS(2002), - [anon_sym_L_SQUOTE] = ACTIONS(2004), - [anon_sym_u_SQUOTE] = ACTIONS(2004), - [anon_sym_U_SQUOTE] = ACTIONS(2004), - [anon_sym_u8_SQUOTE] = ACTIONS(2004), - [anon_sym_SQUOTE] = ACTIONS(2004), - [anon_sym_L_DQUOTE] = ACTIONS(2006), - [anon_sym_u_DQUOTE] = ACTIONS(2006), - [anon_sym_U_DQUOTE] = ACTIONS(2006), - [anon_sym_u8_DQUOTE] = ACTIONS(2006), - [anon_sym_DQUOTE] = ACTIONS(2006), - [sym_true] = ACTIONS(1974), - [sym_false] = ACTIONS(1974), - [anon_sym_NULL] = ACTIONS(1976), - [anon_sym_nullptr] = ACTIONS(1976), + [anon_sym_not] = ACTIONS(1796), + [anon_sym_compl] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_sizeof] = ACTIONS(1824), + [anon_sym___alignof__] = ACTIONS(1826), + [anon_sym___alignof] = ACTIONS(1826), + [anon_sym__alignof] = ACTIONS(1826), + [anon_sym_alignof] = ACTIONS(1826), + [anon_sym__Alignof] = ACTIONS(1826), + [anon_sym_offsetof] = ACTIONS(1828), + [anon_sym__Generic] = ACTIONS(1830), + [anon_sym_asm] = ACTIONS(1832), + [anon_sym___asm__] = ACTIONS(1832), + [anon_sym___asm] = ACTIONS(1832), + [sym_number_literal] = ACTIONS(1834), + [anon_sym_L_SQUOTE] = ACTIONS(1836), + [anon_sym_u_SQUOTE] = ACTIONS(1836), + [anon_sym_U_SQUOTE] = ACTIONS(1836), + [anon_sym_u8_SQUOTE] = ACTIONS(1836), + [anon_sym_SQUOTE] = ACTIONS(1836), + [anon_sym_L_DQUOTE] = ACTIONS(1838), + [anon_sym_u_DQUOTE] = ACTIONS(1838), + [anon_sym_U_DQUOTE] = ACTIONS(1838), + [anon_sym_u8_DQUOTE] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym_true] = ACTIONS(1840), + [sym_false] = ACTIONS(1840), + [anon_sym_NULL] = ACTIONS(1842), + [anon_sym_nullptr] = ACTIONS(1842), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(2008), - [anon_sym_R_DQUOTE] = ACTIONS(2010), - [anon_sym_LR_DQUOTE] = ACTIONS(2010), - [anon_sym_uR_DQUOTE] = ACTIONS(2010), - [anon_sym_UR_DQUOTE] = ACTIONS(2010), - [anon_sym_u8R_DQUOTE] = ACTIONS(2010), - [anon_sym_co_await] = ACTIONS(2012), - [anon_sym_new] = ACTIONS(2014), - [anon_sym_requires] = ACTIONS(1988), - [sym_this] = ACTIONS(1974), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1852), + [anon_sym_R_DQUOTE] = ACTIONS(1854), + [anon_sym_LR_DQUOTE] = ACTIONS(1854), + [anon_sym_uR_DQUOTE] = ACTIONS(1854), + [anon_sym_UR_DQUOTE] = ACTIONS(1854), + [anon_sym_u8R_DQUOTE] = ACTIONS(1854), + [anon_sym_co_await] = ACTIONS(1856), + [anon_sym_new] = ACTIONS(1858), + [anon_sym_requires] = ACTIONS(1860), + [sym_this] = ACTIONS(1840), }, - [1174] = { - [sym_expression] = STATE(4753), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1234] = { + [sym_expression] = STATE(4331), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(4849), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -196950,7 +203977,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -196962,68 +203989,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1175] = { - [sym_expression] = STATE(4266), - [sym__string] = STATE(4380), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3253), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3253), - [sym_call_expression] = STATE(3253), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3253), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3253), - [sym_char_literal] = STATE(4380), - [sym_concatenated_string] = STATE(4380), - [sym_string_literal] = STATE(3416), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3416), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3253), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3253), - [sym_identifier] = ACTIONS(3823), - [anon_sym_LPAREN2] = ACTIONS(4557), - [anon_sym_BANG] = ACTIONS(3827), - [anon_sym_TILDE] = ACTIONS(3827), - [anon_sym_DASH] = ACTIONS(3825), - [anon_sym_PLUS] = ACTIONS(3825), - [anon_sym_STAR] = ACTIONS(4382), - [anon_sym_AMP] = ACTIONS(4382), - [anon_sym_SEMI] = ACTIONS(4851), - [anon_sym___extension__] = ACTIONS(3829), - [anon_sym_COLON_COLON] = ACTIONS(3831), - [anon_sym_LBRACK] = ACTIONS(4792), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3825), - [anon_sym_compl] = ACTIONS(3825), - [anon_sym_DASH_DASH] = ACTIONS(4384), - [anon_sym_PLUS_PLUS] = ACTIONS(4384), - [anon_sym_sizeof] = ACTIONS(3833), + [1235] = { + [sym_expression] = STATE(4337), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -197034,294 +204060,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(113), [anon_sym___asm__] = ACTIONS(113), [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3835), - [anon_sym_L_SQUOTE] = ACTIONS(3837), - [anon_sym_u_SQUOTE] = ACTIONS(3837), - [anon_sym_U_SQUOTE] = ACTIONS(3837), - [anon_sym_u8_SQUOTE] = ACTIONS(3837), - [anon_sym_SQUOTE] = ACTIONS(3837), - [anon_sym_L_DQUOTE] = ACTIONS(3839), - [anon_sym_u_DQUOTE] = ACTIONS(3839), - [anon_sym_U_DQUOTE] = ACTIONS(3839), - [anon_sym_u8_DQUOTE] = ACTIONS(3839), - [anon_sym_DQUOTE] = ACTIONS(3839), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(117), + [anon_sym_u_SQUOTE] = ACTIONS(117), + [anon_sym_U_SQUOTE] = ACTIONS(117), + [anon_sym_u8_SQUOTE] = ACTIONS(117), + [anon_sym_SQUOTE] = ACTIONS(117), + [anon_sym_L_DQUOTE] = ACTIONS(119), + [anon_sym_u_DQUOTE] = ACTIONS(119), + [anon_sym_U_DQUOTE] = ACTIONS(119), + [anon_sym_u8_DQUOTE] = ACTIONS(119), + [anon_sym_DQUOTE] = ACTIONS(119), [sym_true] = ACTIONS(229), [sym_false] = ACTIONS(229), [anon_sym_NULL] = ACTIONS(123), [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3841), - [anon_sym_R_DQUOTE] = ACTIONS(3843), - [anon_sym_LR_DQUOTE] = ACTIONS(3843), - [anon_sym_uR_DQUOTE] = ACTIONS(3843), - [anon_sym_UR_DQUOTE] = ACTIONS(3843), - [anon_sym_u8R_DQUOTE] = ACTIONS(3843), - [anon_sym_co_await] = ACTIONS(3845), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(145), + [anon_sym_R_DQUOTE] = ACTIONS(159), + [anon_sym_LR_DQUOTE] = ACTIONS(159), + [anon_sym_uR_DQUOTE] = ACTIONS(159), + [anon_sym_UR_DQUOTE] = ACTIONS(159), + [anon_sym_u8R_DQUOTE] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(161), [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1176] = { - [sym_expression] = STATE(2380), - [sym__string] = STATE(3181), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(3181), - [sym_concatenated_string] = STATE(3181), - [sym_string_literal] = STATE(2297), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(2297), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), - [sym_identifier] = ACTIONS(2305), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4841), - [anon_sym_LPAREN2] = ACTIONS(4853), - [anon_sym_BANG] = ACTIONS(2309), - [anon_sym_TILDE] = ACTIONS(2309), - [anon_sym_DASH] = ACTIONS(2307), - [anon_sym_PLUS] = ACTIONS(2307), - [anon_sym_STAR] = ACTIONS(4382), - [anon_sym_AMP] = ACTIONS(4382), - [anon_sym___extension__] = ACTIONS(2311), - [anon_sym_COLON_COLON] = ACTIONS(2313), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(1956), - [anon_sym_not] = ACTIONS(2307), - [anon_sym_compl] = ACTIONS(2307), - [anon_sym_DASH_DASH] = ACTIONS(4396), - [anon_sym_PLUS_PLUS] = ACTIONS(4396), - [anon_sym_sizeof] = ACTIONS(2315), - [anon_sym___alignof__] = ACTIONS(1960), - [anon_sym___alignof] = ACTIONS(1960), - [anon_sym__alignof] = ACTIONS(1960), - [anon_sym_alignof] = ACTIONS(1960), - [anon_sym__Alignof] = ACTIONS(1960), - [anon_sym_offsetof] = ACTIONS(1962), - [anon_sym__Generic] = ACTIONS(1964), - [anon_sym_asm] = ACTIONS(1966), - [anon_sym___asm__] = ACTIONS(1966), - [anon_sym___asm] = ACTIONS(1966), - [sym_number_literal] = ACTIONS(2317), - [anon_sym_L_SQUOTE] = ACTIONS(2319), - [anon_sym_u_SQUOTE] = ACTIONS(2319), - [anon_sym_U_SQUOTE] = ACTIONS(2319), - [anon_sym_u8_SQUOTE] = ACTIONS(2319), - [anon_sym_SQUOTE] = ACTIONS(2319), - [anon_sym_L_DQUOTE] = ACTIONS(2321), - [anon_sym_u_DQUOTE] = ACTIONS(2321), - [anon_sym_U_DQUOTE] = ACTIONS(2321), - [anon_sym_u8_DQUOTE] = ACTIONS(2321), - [anon_sym_DQUOTE] = ACTIONS(2321), - [sym_true] = ACTIONS(1974), - [sym_false] = ACTIONS(1974), - [anon_sym_NULL] = ACTIONS(1976), - [anon_sym_nullptr] = ACTIONS(1976), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(2323), - [anon_sym_R_DQUOTE] = ACTIONS(2325), - [anon_sym_LR_DQUOTE] = ACTIONS(2325), - [anon_sym_uR_DQUOTE] = ACTIONS(2325), - [anon_sym_UR_DQUOTE] = ACTIONS(2325), - [anon_sym_u8R_DQUOTE] = ACTIONS(2325), - [anon_sym_co_await] = ACTIONS(2327), - [anon_sym_new] = ACTIONS(2014), - [anon_sym_requires] = ACTIONS(1988), - [sym_this] = ACTIONS(1974), - }, - [1177] = { - [sym_expression] = STATE(3165), - [sym__string] = STATE(3235), - [sym_conditional_expression] = STATE(3373), - [sym_assignment_expression] = STATE(3373), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3373), - [sym_binary_expression] = STATE(3373), - [sym_update_expression] = STATE(3373), - [sym_cast_expression] = STATE(3373), - [sym_sizeof_expression] = STATE(3373), - [sym_alignof_expression] = STATE(3373), - [sym_offsetof_expression] = STATE(3373), - [sym_generic_expression] = STATE(3373), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3373), - [sym_extension_expression] = STATE(3373), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3373), - [sym_parenthesized_expression] = STATE(3365), - [sym_char_literal] = STATE(3235), - [sym_concatenated_string] = STATE(3235), - [sym_string_literal] = STATE(2358), - [sym_null] = STATE(3373), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7814), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3373), - [sym_raw_string_literal] = STATE(2358), - [sym_co_await_expression] = STATE(3373), - [sym_new_expression] = STATE(3373), - [sym_delete_expression] = STATE(3373), - [sym_requires_clause] = STATE(3373), - [sym_requires_expression] = STATE(3373), - [sym_lambda_expression] = STATE(3373), - [sym_lambda_capture_specifier] = STATE(5414), - [sym_fold_expression] = STATE(3373), - [sym_parameter_pack_expansion] = STATE(3373), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3365), - [sym_qualified_type_identifier] = STATE(7814), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2453), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4746), - [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(2455), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), - }, - [1178] = { - [sym_expression] = STATE(4636), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1236] = { + [sym_expression] = STATE(4540), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(4855), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -197354,7 +204177,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -197366,169 +204189,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1179] = { - [sym_expression] = STATE(3159), - [sym__string] = STATE(3235), - [sym_conditional_expression] = STATE(3373), - [sym_assignment_expression] = STATE(3373), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3373), - [sym_binary_expression] = STATE(3373), - [sym_update_expression] = STATE(3373), - [sym_cast_expression] = STATE(3373), - [sym_sizeof_expression] = STATE(3373), - [sym_alignof_expression] = STATE(3373), - [sym_offsetof_expression] = STATE(3373), - [sym_generic_expression] = STATE(3373), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3373), - [sym_extension_expression] = STATE(3373), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3373), - [sym_parenthesized_expression] = STATE(3365), - [sym_char_literal] = STATE(3235), - [sym_concatenated_string] = STATE(3235), - [sym_string_literal] = STATE(2358), - [sym_null] = STATE(3373), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7814), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3373), - [sym_raw_string_literal] = STATE(2358), - [sym_co_await_expression] = STATE(3373), - [sym_new_expression] = STATE(3373), - [sym_delete_expression] = STATE(3373), - [sym_requires_clause] = STATE(3373), - [sym_requires_expression] = STATE(3373), - [sym_lambda_expression] = STATE(3373), - [sym_lambda_capture_specifier] = STATE(5414), - [sym_fold_expression] = STATE(3373), - [sym_parameter_pack_expansion] = STATE(3373), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3365), - [sym_qualified_type_identifier] = STATE(7814), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2453), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4710), - [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(2455), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), - }, - [1180] = { - [sym_expression] = STATE(3755), - [sym__string] = STATE(4380), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3253), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3253), - [sym_call_expression] = STATE(3253), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3253), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3253), - [sym_char_literal] = STATE(4380), - [sym_concatenated_string] = STATE(4380), - [sym_string_literal] = STATE(3416), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3416), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3253), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3253), - [sym_identifier] = ACTIONS(3823), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4786), - [anon_sym_LPAREN2] = ACTIONS(4857), - [anon_sym_BANG] = ACTIONS(3827), - [anon_sym_TILDE] = ACTIONS(3827), - [anon_sym_DASH] = ACTIONS(3825), - [anon_sym_PLUS] = ACTIONS(3825), - [anon_sym_STAR] = ACTIONS(4382), - [anon_sym_AMP] = ACTIONS(4382), - [anon_sym___extension__] = ACTIONS(3829), - [anon_sym_COLON_COLON] = ACTIONS(3831), + [1237] = { + [sym_expression] = STATE(4545), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), + [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3825), - [anon_sym_compl] = ACTIONS(3825), - [anon_sym_DASH_DASH] = ACTIONS(4384), - [anon_sym_PLUS_PLUS] = ACTIONS(4384), - [anon_sym_sizeof] = ACTIONS(3833), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -197539,294 +204260,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(113), [anon_sym___asm__] = ACTIONS(113), [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3835), - [anon_sym_L_SQUOTE] = ACTIONS(3837), - [anon_sym_u_SQUOTE] = ACTIONS(3837), - [anon_sym_U_SQUOTE] = ACTIONS(3837), - [anon_sym_u8_SQUOTE] = ACTIONS(3837), - [anon_sym_SQUOTE] = ACTIONS(3837), - [anon_sym_L_DQUOTE] = ACTIONS(3839), - [anon_sym_u_DQUOTE] = ACTIONS(3839), - [anon_sym_U_DQUOTE] = ACTIONS(3839), - [anon_sym_u8_DQUOTE] = ACTIONS(3839), - [anon_sym_DQUOTE] = ACTIONS(3839), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(117), + [anon_sym_u_SQUOTE] = ACTIONS(117), + [anon_sym_U_SQUOTE] = ACTIONS(117), + [anon_sym_u8_SQUOTE] = ACTIONS(117), + [anon_sym_SQUOTE] = ACTIONS(117), + [anon_sym_L_DQUOTE] = ACTIONS(119), + [anon_sym_u_DQUOTE] = ACTIONS(119), + [anon_sym_U_DQUOTE] = ACTIONS(119), + [anon_sym_u8_DQUOTE] = ACTIONS(119), + [anon_sym_DQUOTE] = ACTIONS(119), [sym_true] = ACTIONS(229), [sym_false] = ACTIONS(229), [anon_sym_NULL] = ACTIONS(123), [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3841), - [anon_sym_R_DQUOTE] = ACTIONS(3843), - [anon_sym_LR_DQUOTE] = ACTIONS(3843), - [anon_sym_uR_DQUOTE] = ACTIONS(3843), - [anon_sym_UR_DQUOTE] = ACTIONS(3843), - [anon_sym_u8R_DQUOTE] = ACTIONS(3843), - [anon_sym_co_await] = ACTIONS(3845), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(145), + [anon_sym_R_DQUOTE] = ACTIONS(159), + [anon_sym_LR_DQUOTE] = ACTIONS(159), + [anon_sym_uR_DQUOTE] = ACTIONS(159), + [anon_sym_UR_DQUOTE] = ACTIONS(159), + [anon_sym_u8R_DQUOTE] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(161), [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1181] = { - [sym_expression] = STATE(3155), - [sym__string] = STATE(3235), - [sym_conditional_expression] = STATE(3373), - [sym_assignment_expression] = STATE(3373), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3373), - [sym_binary_expression] = STATE(3373), - [sym_update_expression] = STATE(3373), - [sym_cast_expression] = STATE(3373), - [sym_sizeof_expression] = STATE(3373), - [sym_alignof_expression] = STATE(3373), - [sym_offsetof_expression] = STATE(3373), - [sym_generic_expression] = STATE(3373), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3373), - [sym_extension_expression] = STATE(3373), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3373), - [sym_parenthesized_expression] = STATE(3365), - [sym_char_literal] = STATE(3235), - [sym_concatenated_string] = STATE(3235), - [sym_string_literal] = STATE(2358), - [sym_null] = STATE(3373), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7814), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3373), - [sym_raw_string_literal] = STATE(2358), - [sym_co_await_expression] = STATE(3373), - [sym_new_expression] = STATE(3373), - [sym_delete_expression] = STATE(3373), - [sym_requires_clause] = STATE(3373), - [sym_requires_expression] = STATE(3373), - [sym_lambda_expression] = STATE(3373), - [sym_lambda_capture_specifier] = STATE(5414), - [sym_fold_expression] = STATE(3373), - [sym_parameter_pack_expansion] = STATE(3373), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3365), - [sym_qualified_type_identifier] = STATE(7814), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2453), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4695), - [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(2455), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), - }, - [1182] = { - [sym_expression] = STATE(2380), - [sym__string] = STATE(2950), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(2950), - [sym_concatenated_string] = STATE(2950), - [sym_string_literal] = STATE(2034), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(2034), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), - [sym_identifier] = ACTIONS(1990), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4841), - [anon_sym_LPAREN2] = ACTIONS(4859), - [anon_sym_BANG] = ACTIONS(1994), - [anon_sym_TILDE] = ACTIONS(1994), - [anon_sym_DASH] = ACTIONS(1992), - [anon_sym_PLUS] = ACTIONS(1992), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(1996), - [anon_sym_COLON_COLON] = ACTIONS(1998), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(1956), - [anon_sym_not] = ACTIONS(1992), - [anon_sym_compl] = ACTIONS(1992), - [anon_sym_DASH_DASH] = ACTIONS(3343), - [anon_sym_PLUS_PLUS] = ACTIONS(3343), - [anon_sym_sizeof] = ACTIONS(2000), - [anon_sym___alignof__] = ACTIONS(1960), - [anon_sym___alignof] = ACTIONS(1960), - [anon_sym__alignof] = ACTIONS(1960), - [anon_sym_alignof] = ACTIONS(1960), - [anon_sym__Alignof] = ACTIONS(1960), - [anon_sym_offsetof] = ACTIONS(1962), - [anon_sym__Generic] = ACTIONS(1964), - [anon_sym_asm] = ACTIONS(1966), - [anon_sym___asm__] = ACTIONS(1966), - [anon_sym___asm] = ACTIONS(1966), - [sym_number_literal] = ACTIONS(2002), - [anon_sym_L_SQUOTE] = ACTIONS(2004), - [anon_sym_u_SQUOTE] = ACTIONS(2004), - [anon_sym_U_SQUOTE] = ACTIONS(2004), - [anon_sym_u8_SQUOTE] = ACTIONS(2004), - [anon_sym_SQUOTE] = ACTIONS(2004), - [anon_sym_L_DQUOTE] = ACTIONS(2006), - [anon_sym_u_DQUOTE] = ACTIONS(2006), - [anon_sym_U_DQUOTE] = ACTIONS(2006), - [anon_sym_u8_DQUOTE] = ACTIONS(2006), - [anon_sym_DQUOTE] = ACTIONS(2006), - [sym_true] = ACTIONS(1974), - [sym_false] = ACTIONS(1974), - [anon_sym_NULL] = ACTIONS(1976), - [anon_sym_nullptr] = ACTIONS(1976), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(2008), - [anon_sym_R_DQUOTE] = ACTIONS(2010), - [anon_sym_LR_DQUOTE] = ACTIONS(2010), - [anon_sym_uR_DQUOTE] = ACTIONS(2010), - [anon_sym_UR_DQUOTE] = ACTIONS(2010), - [anon_sym_u8R_DQUOTE] = ACTIONS(2010), - [anon_sym_co_await] = ACTIONS(2012), - [anon_sym_new] = ACTIONS(2014), - [anon_sym_requires] = ACTIONS(1988), - [sym_this] = ACTIONS(1974), - }, - [1183] = { - [sym_expression] = STATE(4708), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1238] = { + [sym_expression] = STATE(4766), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(4861), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -197859,7 +204377,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -197871,371 +204389,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1184] = { - [sym_expression] = STATE(3139), - [sym__string] = STATE(3235), - [sym_conditional_expression] = STATE(3373), - [sym_assignment_expression] = STATE(3373), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3373), - [sym_binary_expression] = STATE(3373), - [sym_update_expression] = STATE(3373), - [sym_cast_expression] = STATE(3373), - [sym_sizeof_expression] = STATE(3373), - [sym_alignof_expression] = STATE(3373), - [sym_offsetof_expression] = STATE(3373), - [sym_generic_expression] = STATE(3373), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3373), - [sym_extension_expression] = STATE(3373), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3373), - [sym_parenthesized_expression] = STATE(3365), - [sym_char_literal] = STATE(3235), - [sym_concatenated_string] = STATE(3235), - [sym_string_literal] = STATE(2358), - [sym_null] = STATE(3373), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7814), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3373), - [sym_raw_string_literal] = STATE(2358), - [sym_co_await_expression] = STATE(3373), - [sym_new_expression] = STATE(3373), - [sym_delete_expression] = STATE(3373), - [sym_requires_clause] = STATE(3373), - [sym_requires_expression] = STATE(3373), - [sym_lambda_expression] = STATE(3373), - [sym_lambda_capture_specifier] = STATE(5414), - [sym_fold_expression] = STATE(3373), - [sym_parameter_pack_expansion] = STATE(3373), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3365), - [sym_qualified_type_identifier] = STATE(7814), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2453), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4863), - [anon_sym_LPAREN2] = ACTIONS(4865), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(2455), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), - }, - [1185] = { - [sym_expression] = STATE(4427), - [sym__string] = STATE(4738), - [sym_conditional_expression] = STATE(4829), - [sym_assignment_expression] = STATE(4829), - [sym_pointer_expression] = STATE(3602), - [sym_unary_expression] = STATE(4829), - [sym_binary_expression] = STATE(4829), - [sym_update_expression] = STATE(4829), - [sym_cast_expression] = STATE(4829), - [sym_sizeof_expression] = STATE(4829), - [sym_alignof_expression] = STATE(4829), - [sym_offsetof_expression] = STATE(4829), - [sym_generic_expression] = STATE(4829), - [sym_subscript_expression] = STATE(3602), - [sym_call_expression] = STATE(3602), - [sym_gnu_asm_expression] = STATE(4829), - [sym_extension_expression] = STATE(4829), - [sym_field_expression] = STATE(3602), - [sym_compound_literal_expression] = STATE(4829), - [sym_parenthesized_expression] = STATE(3602), - [sym_char_literal] = STATE(4738), - [sym_concatenated_string] = STATE(4738), - [sym_string_literal] = STATE(3759), - [sym_null] = STATE(4829), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7804), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(4829), - [sym_raw_string_literal] = STATE(3759), - [sym_co_await_expression] = STATE(4829), - [sym_new_expression] = STATE(4829), - [sym_delete_expression] = STATE(4829), - [sym_requires_clause] = STATE(4829), - [sym_requires_expression] = STATE(4829), - [sym_lambda_expression] = STATE(4829), - [sym_lambda_capture_specifier] = STATE(5401), - [sym_fold_expression] = STATE(4829), - [sym_parameter_pack_expansion] = STATE(4829), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5773), - [sym_qualified_identifier] = STATE(3602), - [sym_qualified_type_identifier] = STATE(7804), - [sym_user_defined_literal] = STATE(3602), + [1239] = { + [sym_expression] = STATE(4498), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3728), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3728), + [sym_call_expression] = STATE(3728), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3728), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3728), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3728), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3728), [sym_identifier] = ACTIONS(3883), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4867), - [anon_sym_LPAREN2] = ACTIONS(4869), - [anon_sym_BANG] = ACTIONS(3120), - [anon_sym_TILDE] = ACTIONS(3120), - [anon_sym_DASH] = ACTIONS(3122), - [anon_sym_PLUS] = ACTIONS(3122), - [anon_sym_STAR] = ACTIONS(3124), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym___extension__] = ACTIONS(3885), - [anon_sym_COLON_COLON] = ACTIONS(3128), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(3889), - [anon_sym_not] = ACTIONS(3122), - [anon_sym_compl] = ACTIONS(3122), - [anon_sym_DASH_DASH] = ACTIONS(3142), - [anon_sym_PLUS_PLUS] = ACTIONS(3142), - [anon_sym_sizeof] = ACTIONS(3144), - [anon_sym___alignof__] = ACTIONS(3146), - [anon_sym___alignof] = ACTIONS(3146), - [anon_sym__alignof] = ACTIONS(3146), - [anon_sym_alignof] = ACTIONS(3146), - [anon_sym__Alignof] = ACTIONS(3146), - [anon_sym_offsetof] = ACTIONS(3148), - [anon_sym__Generic] = ACTIONS(3150), - [anon_sym_asm] = ACTIONS(3152), - [anon_sym___asm__] = ACTIONS(3152), - [anon_sym___asm] = ACTIONS(3152), - [sym_number_literal] = ACTIONS(3154), - [anon_sym_L_SQUOTE] = ACTIONS(3156), - [anon_sym_u_SQUOTE] = ACTIONS(3156), - [anon_sym_U_SQUOTE] = ACTIONS(3156), - [anon_sym_u8_SQUOTE] = ACTIONS(3156), - [anon_sym_SQUOTE] = ACTIONS(3156), - [anon_sym_L_DQUOTE] = ACTIONS(3158), - [anon_sym_u_DQUOTE] = ACTIONS(3158), - [anon_sym_U_DQUOTE] = ACTIONS(3158), - [anon_sym_u8_DQUOTE] = ACTIONS(3158), - [anon_sym_DQUOTE] = ACTIONS(3158), - [sym_true] = ACTIONS(3160), - [sym_false] = ACTIONS(3160), - [anon_sym_NULL] = ACTIONS(3162), - [anon_sym_nullptr] = ACTIONS(3162), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3172), - [anon_sym_R_DQUOTE] = ACTIONS(3174), - [anon_sym_LR_DQUOTE] = ACTIONS(3174), - [anon_sym_uR_DQUOTE] = ACTIONS(3174), - [anon_sym_UR_DQUOTE] = ACTIONS(3174), - [anon_sym_u8R_DQUOTE] = ACTIONS(3174), - [anon_sym_co_await] = ACTIONS(3176), - [anon_sym_new] = ACTIONS(3178), - [anon_sym_requires] = ACTIONS(3180), - [sym_this] = ACTIONS(3160), - }, - [1186] = { - [sym_expression] = STATE(3159), - [sym__string] = STATE(3235), - [sym_conditional_expression] = STATE(3373), - [sym_assignment_expression] = STATE(3373), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3373), - [sym_binary_expression] = STATE(3373), - [sym_update_expression] = STATE(3373), - [sym_cast_expression] = STATE(3373), - [sym_sizeof_expression] = STATE(3373), - [sym_alignof_expression] = STATE(3373), - [sym_offsetof_expression] = STATE(3373), - [sym_generic_expression] = STATE(3373), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3373), - [sym_extension_expression] = STATE(3373), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3373), - [sym_parenthesized_expression] = STATE(3365), - [sym_char_literal] = STATE(3235), - [sym_concatenated_string] = STATE(3235), - [sym_string_literal] = STATE(2358), - [sym_null] = STATE(3373), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7814), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3373), - [sym_raw_string_literal] = STATE(2358), - [sym_co_await_expression] = STATE(3373), - [sym_new_expression] = STATE(3373), - [sym_delete_expression] = STATE(3373), - [sym_requires_clause] = STATE(3373), - [sym_requires_expression] = STATE(3373), - [sym_lambda_expression] = STATE(3373), - [sym_lambda_capture_specifier] = STATE(5414), - [sym_fold_expression] = STATE(3373), - [sym_parameter_pack_expansion] = STATE(3373), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3365), - [sym_qualified_type_identifier] = STATE(7814), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2453), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4752), - [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(2455), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), - }, - [1187] = { - [sym_expression] = STATE(4713), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(4871), - [anon_sym___extension__] = ACTIONS(2024), - [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LPAREN2] = ACTIONS(3901), + [anon_sym_BANG] = ACTIONS(3887), + [anon_sym_TILDE] = ACTIONS(3887), + [anon_sym_DASH] = ACTIONS(3885), + [anon_sym_PLUS] = ACTIONS(3885), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(3889), + [anon_sym_COLON_COLON] = ACTIONS(3891), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3885), + [anon_sym_compl] = ACTIONS(3885), + [anon_sym_DASH_DASH] = ACTIONS(3905), + [anon_sym_PLUS_PLUS] = ACTIONS(3905), + [anon_sym_sizeof] = ACTIONS(3893), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -198263,181 +204477,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(145), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3895), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), + [anon_sym_co_await] = ACTIONS(3897), + [anon_sym_new] = ACTIONS(3873), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1188] = { - [sym_expression] = STATE(3163), - [sym__string] = STATE(3235), - [sym_conditional_expression] = STATE(3373), - [sym_assignment_expression] = STATE(3373), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3373), - [sym_binary_expression] = STATE(3373), - [sym_update_expression] = STATE(3373), - [sym_cast_expression] = STATE(3373), - [sym_sizeof_expression] = STATE(3373), - [sym_alignof_expression] = STATE(3373), - [sym_offsetof_expression] = STATE(3373), - [sym_generic_expression] = STATE(3373), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3373), - [sym_extension_expression] = STATE(3373), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3373), - [sym_parenthesized_expression] = STATE(3365), - [sym_char_literal] = STATE(3235), - [sym_concatenated_string] = STATE(3235), - [sym_string_literal] = STATE(2358), - [sym_null] = STATE(3373), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7814), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3373), - [sym_raw_string_literal] = STATE(2358), - [sym_co_await_expression] = STATE(3373), - [sym_new_expression] = STATE(3373), - [sym_delete_expression] = STATE(3373), - [sym_requires_clause] = STATE(3373), - [sym_requires_expression] = STATE(3373), - [sym_lambda_expression] = STATE(3373), - [sym_lambda_capture_specifier] = STATE(5414), - [sym_fold_expression] = STATE(3373), - [sym_parameter_pack_expansion] = STATE(3373), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3365), - [sym_qualified_type_identifier] = STATE(7814), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2453), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4761), - [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(2455), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), - }, - [1189] = { - [sym_expression] = STATE(2380), - [sym__string] = STATE(2870), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(2870), - [sym_concatenated_string] = STATE(2870), - [sym_string_literal] = STATE(1942), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(1942), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), + [1240] = { + [sym_expression] = STATE(2432), + [sym__string] = STATE(2917), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(2917), + [sym_concatenated_string] = STATE(2917), + [sym_string_literal] = STATE(2114), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(2114), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), [sym_identifier] = ACTIONS(1990), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4841), - [anon_sym_LPAREN2] = ACTIONS(4873), - [anon_sym_BANG] = ACTIONS(1948), - [anon_sym_TILDE] = ACTIONS(1948), - [anon_sym_DASH] = ACTIONS(1946), - [anon_sym_PLUS] = ACTIONS(1946), - [anon_sym_STAR] = ACTIONS(4336), - [anon_sym_AMP] = ACTIONS(4336), - [anon_sym___extension__] = ACTIONS(1950), - [anon_sym_COLON_COLON] = ACTIONS(1952), + [anon_sym_LPAREN2] = ACTIONS(4565), + [anon_sym_BANG] = ACTIONS(1994), + [anon_sym_TILDE] = ACTIONS(1994), + [anon_sym_DASH] = ACTIONS(1992), + [anon_sym_PLUS] = ACTIONS(1992), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(1996), + [anon_sym_COLON_COLON] = ACTIONS(1998), [anon_sym_LBRACK] = ACTIONS(2020), [sym_primitive_type] = ACTIONS(1956), - [anon_sym_not] = ACTIONS(1946), - [anon_sym_compl] = ACTIONS(1946), - [anon_sym_DASH_DASH] = ACTIONS(4417), - [anon_sym_PLUS_PLUS] = ACTIONS(4417), - [anon_sym_sizeof] = ACTIONS(1958), + [anon_sym_not] = ACTIONS(1992), + [anon_sym_compl] = ACTIONS(1992), + [anon_sym_DASH_DASH] = ACTIONS(3355), + [anon_sym_PLUS_PLUS] = ACTIONS(3355), + [anon_sym_sizeof] = ACTIONS(2000), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), [anon_sym__alignof] = ACTIONS(1960), @@ -198448,97 +204560,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(1966), [anon_sym___asm__] = ACTIONS(1966), [anon_sym___asm] = ACTIONS(1966), - [sym_number_literal] = ACTIONS(1968), - [anon_sym_L_SQUOTE] = ACTIONS(1970), - [anon_sym_u_SQUOTE] = ACTIONS(1970), - [anon_sym_U_SQUOTE] = ACTIONS(1970), - [anon_sym_u8_SQUOTE] = ACTIONS(1970), - [anon_sym_SQUOTE] = ACTIONS(1970), - [anon_sym_L_DQUOTE] = ACTIONS(1972), - [anon_sym_u_DQUOTE] = ACTIONS(1972), - [anon_sym_U_DQUOTE] = ACTIONS(1972), - [anon_sym_u8_DQUOTE] = ACTIONS(1972), - [anon_sym_DQUOTE] = ACTIONS(1972), + [sym_number_literal] = ACTIONS(2002), + [anon_sym_L_SQUOTE] = ACTIONS(2004), + [anon_sym_u_SQUOTE] = ACTIONS(2004), + [anon_sym_U_SQUOTE] = ACTIONS(2004), + [anon_sym_u8_SQUOTE] = ACTIONS(2004), + [anon_sym_SQUOTE] = ACTIONS(2004), + [anon_sym_L_DQUOTE] = ACTIONS(2006), + [anon_sym_u_DQUOTE] = ACTIONS(2006), + [anon_sym_U_DQUOTE] = ACTIONS(2006), + [anon_sym_u8_DQUOTE] = ACTIONS(2006), + [anon_sym_DQUOTE] = ACTIONS(2006), [sym_true] = ACTIONS(1974), [sym_false] = ACTIONS(1974), [anon_sym_NULL] = ACTIONS(1976), [anon_sym_nullptr] = ACTIONS(1976), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1980), - [anon_sym_R_DQUOTE] = ACTIONS(1982), - [anon_sym_LR_DQUOTE] = ACTIONS(1982), - [anon_sym_uR_DQUOTE] = ACTIONS(1982), - [anon_sym_UR_DQUOTE] = ACTIONS(1982), - [anon_sym_u8R_DQUOTE] = ACTIONS(1982), - [anon_sym_co_await] = ACTIONS(1984), - [anon_sym_new] = ACTIONS(1986), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(2008), + [anon_sym_R_DQUOTE] = ACTIONS(2010), + [anon_sym_LR_DQUOTE] = ACTIONS(2010), + [anon_sym_uR_DQUOTE] = ACTIONS(2010), + [anon_sym_UR_DQUOTE] = ACTIONS(2010), + [anon_sym_u8R_DQUOTE] = ACTIONS(2010), + [anon_sym_co_await] = ACTIONS(2012), + [anon_sym_new] = ACTIONS(2014), [anon_sym_requires] = ACTIONS(1988), - [sym_this] = ACTIONS(1974), + [sym_this] = ACTIONS(4901), }, - [1190] = { - [sym_expression] = STATE(3755), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3678), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3678), - [sym_call_expression] = STATE(3678), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3678), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3678), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3678), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3678), - [sym_identifier] = ACTIONS(3849), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4786), - [anon_sym_LPAREN2] = ACTIONS(4875), - [anon_sym_BANG] = ACTIONS(3853), - [anon_sym_TILDE] = ACTIONS(3853), - [anon_sym_DASH] = ACTIONS(3851), - [anon_sym_PLUS] = ACTIONS(3851), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(3855), - [anon_sym_COLON_COLON] = ACTIONS(3857), + [1241] = { + [sym_expression] = STATE(4810), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3728), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3728), + [sym_call_expression] = STATE(3728), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3728), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3728), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3728), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3728), + [sym_identifier] = ACTIONS(3883), + [anon_sym_LPAREN2] = ACTIONS(3901), + [anon_sym_BANG] = ACTIONS(3887), + [anon_sym_TILDE] = ACTIONS(3887), + [anon_sym_DASH] = ACTIONS(3885), + [anon_sym_PLUS] = ACTIONS(3885), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(3889), + [anon_sym_COLON_COLON] = ACTIONS(3891), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3851), - [anon_sym_compl] = ACTIONS(3851), - [anon_sym_DASH_DASH] = ACTIONS(3897), - [anon_sym_PLUS_PLUS] = ACTIONS(3897), - [anon_sym_sizeof] = ACTIONS(3859), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3885), + [anon_sym_compl] = ACTIONS(3885), + [anon_sym_DASH_DASH] = ACTIONS(3905), + [anon_sym_PLUS_PLUS] = ACTIONS(3905), + [anon_sym_sizeof] = ACTIONS(3893), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -198566,79 +204677,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3861), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3895), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3863), - [anon_sym_new] = ACTIONS(3865), + [anon_sym_co_await] = ACTIONS(3897), + [anon_sym_new] = ACTIONS(3873), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1191] = { - [sym_expression] = STATE(2398), - [sym__string] = STATE(2950), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(2950), - [sym_concatenated_string] = STATE(2950), - [sym_string_literal] = STATE(2034), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(2034), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), + [1242] = { + [sym_expression] = STATE(2953), + [sym__string] = STATE(2917), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(2917), + [sym_concatenated_string] = STATE(2917), + [sym_string_literal] = STATE(2114), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(2114), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), [sym_identifier] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(4555), + [anon_sym_LPAREN2] = ACTIONS(4565), [anon_sym_BANG] = ACTIONS(1994), [anon_sym_TILDE] = ACTIONS(1994), [anon_sym_DASH] = ACTIONS(1992), [anon_sym_PLUS] = ACTIONS(1992), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), [anon_sym___extension__] = ACTIONS(1996), [anon_sym_COLON_COLON] = ACTIONS(1998), - [anon_sym_LBRACK] = ACTIONS(2020), - [anon_sym_RBRACK] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4903), [sym_primitive_type] = ACTIONS(1956), [anon_sym_not] = ACTIONS(1992), [anon_sym_compl] = ACTIONS(1992), - [anon_sym_DASH_DASH] = ACTIONS(3343), - [anon_sym_PLUS_PLUS] = ACTIONS(3343), + [anon_sym_DASH_DASH] = ACTIONS(3355), + [anon_sym_PLUS_PLUS] = ACTIONS(3355), [anon_sym_sizeof] = ACTIONS(2000), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), @@ -198667,7 +204777,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1976), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(2008), [anon_sym_R_DQUOTE] = ACTIONS(2010), [anon_sym_LR_DQUOTE] = ACTIONS(2010), @@ -198679,67 +204789,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [1192] = { - [sym_expression] = STATE(2398), - [sym__string] = STATE(2950), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(2950), - [sym_concatenated_string] = STATE(2950), - [sym_string_literal] = STATE(2034), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(2034), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), + [1243] = { + [sym_expression] = STATE(2408), + [sym__string] = STATE(2917), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(2917), + [sym_concatenated_string] = STATE(2917), + [sym_string_literal] = STATE(2114), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(2114), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), [sym_identifier] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(4555), + [anon_sym_LPAREN2] = ACTIONS(4565), [anon_sym_BANG] = ACTIONS(1994), [anon_sym_TILDE] = ACTIONS(1994), [anon_sym_DASH] = ACTIONS(1992), [anon_sym_PLUS] = ACTIONS(1992), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), [anon_sym___extension__] = ACTIONS(1996), [anon_sym_COLON_COLON] = ACTIONS(1998), [anon_sym_LBRACK] = ACTIONS(2020), - [anon_sym_RBRACK] = ACTIONS(4879), [sym_primitive_type] = ACTIONS(1956), [anon_sym_not] = ACTIONS(1992), [anon_sym_compl] = ACTIONS(1992), - [anon_sym_DASH_DASH] = ACTIONS(3343), - [anon_sym_PLUS_PLUS] = ACTIONS(3343), + [anon_sym_DASH_DASH] = ACTIONS(3355), + [anon_sym_PLUS_PLUS] = ACTIONS(3355), [anon_sym_sizeof] = ACTIONS(2000), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), @@ -198768,7 +204877,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1976), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(2008), [anon_sym_R_DQUOTE] = ACTIONS(2010), [anon_sym_LR_DQUOTE] = ACTIONS(2010), @@ -198780,67 +204889,266 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [1193] = { - [sym_expression] = STATE(2398), - [sym__string] = STATE(2950), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(2950), - [sym_concatenated_string] = STATE(2950), - [sym_string_literal] = STATE(2034), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(2034), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), + [1244] = { + [sym_expression] = STATE(4530), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [anon_sym___alignof__] = ACTIONS(107), + [anon_sym___alignof] = ACTIONS(107), + [anon_sym__alignof] = ACTIONS(107), + [anon_sym_alignof] = ACTIONS(107), + [anon_sym__Alignof] = ACTIONS(107), + [anon_sym_offsetof] = ACTIONS(109), + [anon_sym__Generic] = ACTIONS(111), + [anon_sym_asm] = ACTIONS(113), + [anon_sym___asm__] = ACTIONS(113), + [anon_sym___asm] = ACTIONS(113), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(117), + [anon_sym_u_SQUOTE] = ACTIONS(117), + [anon_sym_U_SQUOTE] = ACTIONS(117), + [anon_sym_u8_SQUOTE] = ACTIONS(117), + [anon_sym_SQUOTE] = ACTIONS(117), + [anon_sym_L_DQUOTE] = ACTIONS(119), + [anon_sym_u_DQUOTE] = ACTIONS(119), + [anon_sym_U_DQUOTE] = ACTIONS(119), + [anon_sym_u8_DQUOTE] = ACTIONS(119), + [anon_sym_DQUOTE] = ACTIONS(119), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(123), + [anon_sym_nullptr] = ACTIONS(123), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(145), + [anon_sym_R_DQUOTE] = ACTIONS(159), + [anon_sym_LR_DQUOTE] = ACTIONS(159), + [anon_sym_uR_DQUOTE] = ACTIONS(159), + [anon_sym_UR_DQUOTE] = ACTIONS(159), + [anon_sym_u8R_DQUOTE] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), + }, + [1245] = { + [sym_expression] = STATE(3230), + [sym__string] = STATE(3393), + [sym_conditional_expression] = STATE(3401), + [sym_assignment_expression] = STATE(3401), + [sym_pointer_expression] = STATE(3405), + [sym_unary_expression] = STATE(3401), + [sym_binary_expression] = STATE(3401), + [sym_update_expression] = STATE(3401), + [sym_cast_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3401), + [sym_alignof_expression] = STATE(3401), + [sym_offsetof_expression] = STATE(3401), + [sym_generic_expression] = STATE(3401), + [sym_subscript_expression] = STATE(3405), + [sym_call_expression] = STATE(3405), + [sym_gnu_asm_expression] = STATE(3401), + [sym_extension_expression] = STATE(3401), + [sym_field_expression] = STATE(3405), + [sym_compound_literal_expression] = STATE(3401), + [sym_parenthesized_expression] = STATE(3405), + [sym_char_literal] = STATE(3393), + [sym_concatenated_string] = STATE(3393), + [sym_string_literal] = STATE(2380), + [sym_null] = STATE(3401), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7745), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3401), + [sym_raw_string_literal] = STATE(2380), + [sym_co_await_expression] = STATE(3401), + [sym_new_expression] = STATE(3401), + [sym_delete_expression] = STATE(3401), + [sym_requires_clause] = STATE(3401), + [sym_requires_expression] = STATE(3401), + [sym_lambda_expression] = STATE(3401), + [sym_lambda_capture_specifier] = STATE(5494), + [sym_fold_expression] = STATE(3401), + [sym_parameter_pack_expansion] = STATE(3401), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3405), + [sym_qualified_type_identifier] = STATE(7745), + [sym_user_defined_literal] = STATE(3405), + [sym_identifier] = ACTIONS(2453), + [anon_sym_LPAREN2] = ACTIONS(2018), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(2455), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2459), + [anon_sym_not] = ACTIONS(1796), + [anon_sym_compl] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_sizeof] = ACTIONS(1824), + [anon_sym___alignof__] = ACTIONS(1826), + [anon_sym___alignof] = ACTIONS(1826), + [anon_sym__alignof] = ACTIONS(1826), + [anon_sym_alignof] = ACTIONS(1826), + [anon_sym__Alignof] = ACTIONS(1826), + [anon_sym_offsetof] = ACTIONS(1828), + [anon_sym__Generic] = ACTIONS(1830), + [anon_sym_asm] = ACTIONS(1832), + [anon_sym___asm__] = ACTIONS(1832), + [anon_sym___asm] = ACTIONS(1832), + [sym_number_literal] = ACTIONS(1834), + [anon_sym_L_SQUOTE] = ACTIONS(1836), + [anon_sym_u_SQUOTE] = ACTIONS(1836), + [anon_sym_U_SQUOTE] = ACTIONS(1836), + [anon_sym_u8_SQUOTE] = ACTIONS(1836), + [anon_sym_SQUOTE] = ACTIONS(1836), + [anon_sym_L_DQUOTE] = ACTIONS(1838), + [anon_sym_u_DQUOTE] = ACTIONS(1838), + [anon_sym_U_DQUOTE] = ACTIONS(1838), + [anon_sym_u8_DQUOTE] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym_true] = ACTIONS(1840), + [sym_false] = ACTIONS(1840), + [anon_sym_NULL] = ACTIONS(1842), + [anon_sym_nullptr] = ACTIONS(1842), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1852), + [anon_sym_R_DQUOTE] = ACTIONS(1854), + [anon_sym_LR_DQUOTE] = ACTIONS(1854), + [anon_sym_uR_DQUOTE] = ACTIONS(1854), + [anon_sym_UR_DQUOTE] = ACTIONS(1854), + [anon_sym_u8R_DQUOTE] = ACTIONS(1854), + [anon_sym_co_await] = ACTIONS(1856), + [anon_sym_new] = ACTIONS(1858), + [anon_sym_requires] = ACTIONS(1860), + [sym_this] = ACTIONS(1840), + }, + [1246] = { + [sym_expression] = STATE(2995), + [sym__string] = STATE(2917), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(2917), + [sym_concatenated_string] = STATE(2917), + [sym_string_literal] = STATE(2114), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(2114), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), [sym_identifier] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(4555), + [anon_sym_LPAREN2] = ACTIONS(4565), [anon_sym_BANG] = ACTIONS(1994), [anon_sym_TILDE] = ACTIONS(1994), [anon_sym_DASH] = ACTIONS(1992), [anon_sym_PLUS] = ACTIONS(1992), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), [anon_sym___extension__] = ACTIONS(1996), [anon_sym_COLON_COLON] = ACTIONS(1998), - [anon_sym_LBRACK] = ACTIONS(2020), - [anon_sym_RBRACK] = ACTIONS(4881), + [anon_sym_LBRACK] = ACTIONS(4905), [sym_primitive_type] = ACTIONS(1956), [anon_sym_not] = ACTIONS(1992), [anon_sym_compl] = ACTIONS(1992), - [anon_sym_DASH_DASH] = ACTIONS(3343), - [anon_sym_PLUS_PLUS] = ACTIONS(3343), + [anon_sym_DASH_DASH] = ACTIONS(3355), + [anon_sym_PLUS_PLUS] = ACTIONS(3355), [anon_sym_sizeof] = ACTIONS(2000), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), @@ -198869,7 +205177,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1976), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(2008), [anon_sym_R_DQUOTE] = ACTIONS(2010), [anon_sym_LR_DQUOTE] = ACTIONS(2010), @@ -198881,269 +205189,1066 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [1194] = { - [sym_expression] = STATE(3155), - [sym__string] = STATE(3235), - [sym_conditional_expression] = STATE(3373), - [sym_assignment_expression] = STATE(3373), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3373), - [sym_binary_expression] = STATE(3373), - [sym_update_expression] = STATE(3373), - [sym_cast_expression] = STATE(3373), - [sym_sizeof_expression] = STATE(3373), - [sym_alignof_expression] = STATE(3373), - [sym_offsetof_expression] = STATE(3373), - [sym_generic_expression] = STATE(3373), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3373), - [sym_extension_expression] = STATE(3373), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3373), - [sym_parenthesized_expression] = STATE(3365), - [sym_char_literal] = STATE(3235), - [sym_concatenated_string] = STATE(3235), - [sym_string_literal] = STATE(2358), - [sym_null] = STATE(3373), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7814), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3373), - [sym_raw_string_literal] = STATE(2358), - [sym_co_await_expression] = STATE(3373), - [sym_new_expression] = STATE(3373), - [sym_delete_expression] = STATE(3373), - [sym_requires_clause] = STATE(3373), - [sym_requires_expression] = STATE(3373), - [sym_lambda_expression] = STATE(3373), - [sym_lambda_capture_specifier] = STATE(5414), - [sym_fold_expression] = STATE(3373), - [sym_parameter_pack_expansion] = STATE(3373), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3365), - [sym_qualified_type_identifier] = STATE(7814), - [sym_user_defined_literal] = STATE(3365), + [1247] = { + [sym_expression] = STATE(3180), + [sym__string] = STATE(3393), + [sym_conditional_expression] = STATE(3401), + [sym_assignment_expression] = STATE(3401), + [sym_pointer_expression] = STATE(3405), + [sym_unary_expression] = STATE(3401), + [sym_binary_expression] = STATE(3401), + [sym_update_expression] = STATE(3401), + [sym_cast_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3401), + [sym_alignof_expression] = STATE(3401), + [sym_offsetof_expression] = STATE(3401), + [sym_generic_expression] = STATE(3401), + [sym_subscript_expression] = STATE(3405), + [sym_call_expression] = STATE(3405), + [sym_gnu_asm_expression] = STATE(3401), + [sym_extension_expression] = STATE(3401), + [sym_field_expression] = STATE(3405), + [sym_compound_literal_expression] = STATE(3401), + [sym_parenthesized_expression] = STATE(3405), + [sym_char_literal] = STATE(3393), + [sym_concatenated_string] = STATE(3393), + [sym_string_literal] = STATE(2380), + [sym_null] = STATE(3401), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7745), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3401), + [sym_raw_string_literal] = STATE(2380), + [sym_co_await_expression] = STATE(3401), + [sym_new_expression] = STATE(3401), + [sym_delete_expression] = STATE(3401), + [sym_requires_clause] = STATE(3401), + [sym_requires_expression] = STATE(3401), + [sym_lambda_expression] = STATE(3401), + [sym_lambda_capture_specifier] = STATE(5494), + [sym_fold_expression] = STATE(3401), + [sym_parameter_pack_expansion] = STATE(3401), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3405), + [sym_qualified_type_identifier] = STATE(7745), + [sym_user_defined_literal] = STATE(3405), [sym_identifier] = ACTIONS(2453), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4806), [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), [anon_sym___extension__] = ACTIONS(2455), - [anon_sym_COLON_COLON] = ACTIONS(1806), + [anon_sym_COLON_COLON] = ACTIONS(1804), [anon_sym_LBRACK] = ACTIONS(2020), [sym_primitive_type] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), + [anon_sym_not] = ACTIONS(1796), + [anon_sym_compl] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_sizeof] = ACTIONS(1824), + [anon_sym___alignof__] = ACTIONS(1826), + [anon_sym___alignof] = ACTIONS(1826), + [anon_sym__alignof] = ACTIONS(1826), + [anon_sym_alignof] = ACTIONS(1826), + [anon_sym__Alignof] = ACTIONS(1826), + [anon_sym_offsetof] = ACTIONS(1828), + [anon_sym__Generic] = ACTIONS(1830), + [anon_sym_asm] = ACTIONS(1832), + [anon_sym___asm__] = ACTIONS(1832), + [anon_sym___asm] = ACTIONS(1832), + [sym_number_literal] = ACTIONS(1834), + [anon_sym_L_SQUOTE] = ACTIONS(1836), + [anon_sym_u_SQUOTE] = ACTIONS(1836), + [anon_sym_U_SQUOTE] = ACTIONS(1836), + [anon_sym_u8_SQUOTE] = ACTIONS(1836), + [anon_sym_SQUOTE] = ACTIONS(1836), + [anon_sym_L_DQUOTE] = ACTIONS(1838), + [anon_sym_u_DQUOTE] = ACTIONS(1838), + [anon_sym_U_DQUOTE] = ACTIONS(1838), + [anon_sym_u8_DQUOTE] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym_true] = ACTIONS(1840), + [sym_false] = ACTIONS(1840), + [anon_sym_NULL] = ACTIONS(1842), + [anon_sym_nullptr] = ACTIONS(1842), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1852), + [anon_sym_R_DQUOTE] = ACTIONS(1854), + [anon_sym_LR_DQUOTE] = ACTIONS(1854), + [anon_sym_uR_DQUOTE] = ACTIONS(1854), + [anon_sym_UR_DQUOTE] = ACTIONS(1854), + [anon_sym_u8R_DQUOTE] = ACTIONS(1854), + [anon_sym_co_await] = ACTIONS(1856), + [anon_sym_new] = ACTIONS(1858), + [anon_sym_requires] = ACTIONS(1860), + [sym_this] = ACTIONS(1840), }, - [1195] = { - [sym_expression] = STATE(3156), - [sym__string] = STATE(3235), - [sym_conditional_expression] = STATE(3373), - [sym_assignment_expression] = STATE(3373), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3373), - [sym_binary_expression] = STATE(3373), - [sym_update_expression] = STATE(3373), - [sym_cast_expression] = STATE(3373), - [sym_sizeof_expression] = STATE(3373), - [sym_alignof_expression] = STATE(3373), - [sym_offsetof_expression] = STATE(3373), - [sym_generic_expression] = STATE(3373), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3373), - [sym_extension_expression] = STATE(3373), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3373), - [sym_parenthesized_expression] = STATE(3365), - [sym_char_literal] = STATE(3235), - [sym_concatenated_string] = STATE(3235), - [sym_string_literal] = STATE(2358), - [sym_null] = STATE(3373), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7814), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3373), - [sym_raw_string_literal] = STATE(2358), - [sym_co_await_expression] = STATE(3373), - [sym_new_expression] = STATE(3373), - [sym_delete_expression] = STATE(3373), - [sym_requires_clause] = STATE(3373), - [sym_requires_expression] = STATE(3373), - [sym_lambda_expression] = STATE(3373), - [sym_lambda_capture_specifier] = STATE(5414), - [sym_fold_expression] = STATE(3373), - [sym_parameter_pack_expansion] = STATE(3373), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3365), - [sym_qualified_type_identifier] = STATE(7814), - [sym_user_defined_literal] = STATE(3365), + [1248] = { + [sym_expression] = STATE(3153), + [sym__string] = STATE(3393), + [sym_conditional_expression] = STATE(3401), + [sym_assignment_expression] = STATE(3401), + [sym_pointer_expression] = STATE(3405), + [sym_unary_expression] = STATE(3401), + [sym_binary_expression] = STATE(3401), + [sym_update_expression] = STATE(3401), + [sym_cast_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3401), + [sym_alignof_expression] = STATE(3401), + [sym_offsetof_expression] = STATE(3401), + [sym_generic_expression] = STATE(3401), + [sym_subscript_expression] = STATE(3405), + [sym_call_expression] = STATE(3405), + [sym_gnu_asm_expression] = STATE(3401), + [sym_extension_expression] = STATE(3401), + [sym_field_expression] = STATE(3405), + [sym_compound_literal_expression] = STATE(3401), + [sym_parenthesized_expression] = STATE(3405), + [sym_char_literal] = STATE(3393), + [sym_concatenated_string] = STATE(3393), + [sym_string_literal] = STATE(2380), + [sym_null] = STATE(3401), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7745), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3401), + [sym_raw_string_literal] = STATE(2380), + [sym_co_await_expression] = STATE(3401), + [sym_new_expression] = STATE(3401), + [sym_delete_expression] = STATE(3401), + [sym_requires_clause] = STATE(3401), + [sym_requires_expression] = STATE(3401), + [sym_lambda_expression] = STATE(3401), + [sym_lambda_capture_specifier] = STATE(5494), + [sym_fold_expression] = STATE(3401), + [sym_parameter_pack_expansion] = STATE(3401), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3405), + [sym_qualified_type_identifier] = STATE(7745), + [sym_user_defined_literal] = STATE(3405), [sym_identifier] = ACTIONS(2453), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4701), [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), [anon_sym___extension__] = ACTIONS(2455), - [anon_sym_COLON_COLON] = ACTIONS(1806), + [anon_sym_COLON_COLON] = ACTIONS(1804), [anon_sym_LBRACK] = ACTIONS(2020), [sym_primitive_type] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), + [anon_sym_not] = ACTIONS(1796), + [anon_sym_compl] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_sizeof] = ACTIONS(1824), + [anon_sym___alignof__] = ACTIONS(1826), + [anon_sym___alignof] = ACTIONS(1826), + [anon_sym__alignof] = ACTIONS(1826), + [anon_sym_alignof] = ACTIONS(1826), + [anon_sym__Alignof] = ACTIONS(1826), + [anon_sym_offsetof] = ACTIONS(1828), + [anon_sym__Generic] = ACTIONS(1830), + [anon_sym_asm] = ACTIONS(1832), + [anon_sym___asm__] = ACTIONS(1832), + [anon_sym___asm] = ACTIONS(1832), + [sym_number_literal] = ACTIONS(1834), + [anon_sym_L_SQUOTE] = ACTIONS(1836), + [anon_sym_u_SQUOTE] = ACTIONS(1836), + [anon_sym_U_SQUOTE] = ACTIONS(1836), + [anon_sym_u8_SQUOTE] = ACTIONS(1836), + [anon_sym_SQUOTE] = ACTIONS(1836), + [anon_sym_L_DQUOTE] = ACTIONS(1838), + [anon_sym_u_DQUOTE] = ACTIONS(1838), + [anon_sym_U_DQUOTE] = ACTIONS(1838), + [anon_sym_u8_DQUOTE] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym_true] = ACTIONS(1840), + [sym_false] = ACTIONS(1840), + [anon_sym_NULL] = ACTIONS(1842), + [anon_sym_nullptr] = ACTIONS(1842), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1852), + [anon_sym_R_DQUOTE] = ACTIONS(1854), + [anon_sym_LR_DQUOTE] = ACTIONS(1854), + [anon_sym_uR_DQUOTE] = ACTIONS(1854), + [anon_sym_UR_DQUOTE] = ACTIONS(1854), + [anon_sym_u8R_DQUOTE] = ACTIONS(1854), + [anon_sym_co_await] = ACTIONS(1856), + [anon_sym_new] = ACTIONS(1858), + [anon_sym_requires] = ACTIONS(1860), + [sym_this] = ACTIONS(1840), }, - [1196] = { - [sym_expression] = STATE(2398), - [sym__string] = STATE(2950), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(2950), - [sym_concatenated_string] = STATE(2950), - [sym_string_literal] = STATE(2034), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(2034), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), + [1249] = { + [sym_expression] = STATE(3182), + [sym__string] = STATE(3393), + [sym_conditional_expression] = STATE(3401), + [sym_assignment_expression] = STATE(3401), + [sym_pointer_expression] = STATE(3405), + [sym_unary_expression] = STATE(3401), + [sym_binary_expression] = STATE(3401), + [sym_update_expression] = STATE(3401), + [sym_cast_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3401), + [sym_alignof_expression] = STATE(3401), + [sym_offsetof_expression] = STATE(3401), + [sym_generic_expression] = STATE(3401), + [sym_subscript_expression] = STATE(3405), + [sym_call_expression] = STATE(3405), + [sym_gnu_asm_expression] = STATE(3401), + [sym_extension_expression] = STATE(3401), + [sym_field_expression] = STATE(3405), + [sym_compound_literal_expression] = STATE(3401), + [sym_parenthesized_expression] = STATE(3405), + [sym_char_literal] = STATE(3393), + [sym_concatenated_string] = STATE(3393), + [sym_string_literal] = STATE(2380), + [sym_null] = STATE(3401), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7745), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3401), + [sym_raw_string_literal] = STATE(2380), + [sym_co_await_expression] = STATE(3401), + [sym_new_expression] = STATE(3401), + [sym_delete_expression] = STATE(3401), + [sym_requires_clause] = STATE(3401), + [sym_requires_expression] = STATE(3401), + [sym_lambda_expression] = STATE(3401), + [sym_lambda_capture_specifier] = STATE(5494), + [sym_fold_expression] = STATE(3401), + [sym_parameter_pack_expansion] = STATE(3401), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3405), + [sym_qualified_type_identifier] = STATE(7745), + [sym_user_defined_literal] = STATE(3405), + [sym_identifier] = ACTIONS(2453), + [anon_sym_LPAREN2] = ACTIONS(2018), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(2455), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2459), + [anon_sym_not] = ACTIONS(1796), + [anon_sym_compl] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_sizeof] = ACTIONS(1824), + [anon_sym___alignof__] = ACTIONS(1826), + [anon_sym___alignof] = ACTIONS(1826), + [anon_sym__alignof] = ACTIONS(1826), + [anon_sym_alignof] = ACTIONS(1826), + [anon_sym__Alignof] = ACTIONS(1826), + [anon_sym_offsetof] = ACTIONS(1828), + [anon_sym__Generic] = ACTIONS(1830), + [anon_sym_asm] = ACTIONS(1832), + [anon_sym___asm__] = ACTIONS(1832), + [anon_sym___asm] = ACTIONS(1832), + [sym_number_literal] = ACTIONS(1834), + [anon_sym_L_SQUOTE] = ACTIONS(1836), + [anon_sym_u_SQUOTE] = ACTIONS(1836), + [anon_sym_U_SQUOTE] = ACTIONS(1836), + [anon_sym_u8_SQUOTE] = ACTIONS(1836), + [anon_sym_SQUOTE] = ACTIONS(1836), + [anon_sym_L_DQUOTE] = ACTIONS(1838), + [anon_sym_u_DQUOTE] = ACTIONS(1838), + [anon_sym_U_DQUOTE] = ACTIONS(1838), + [anon_sym_u8_DQUOTE] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym_true] = ACTIONS(1840), + [sym_false] = ACTIONS(1840), + [anon_sym_NULL] = ACTIONS(1842), + [anon_sym_nullptr] = ACTIONS(1842), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1852), + [anon_sym_R_DQUOTE] = ACTIONS(1854), + [anon_sym_LR_DQUOTE] = ACTIONS(1854), + [anon_sym_uR_DQUOTE] = ACTIONS(1854), + [anon_sym_UR_DQUOTE] = ACTIONS(1854), + [anon_sym_u8R_DQUOTE] = ACTIONS(1854), + [anon_sym_co_await] = ACTIONS(1856), + [anon_sym_new] = ACTIONS(1858), + [anon_sym_requires] = ACTIONS(1860), + [sym_this] = ACTIONS(1840), + }, + [1250] = { + [sym_expression] = STATE(3183), + [sym__string] = STATE(3393), + [sym_conditional_expression] = STATE(3401), + [sym_assignment_expression] = STATE(3401), + [sym_pointer_expression] = STATE(3405), + [sym_unary_expression] = STATE(3401), + [sym_binary_expression] = STATE(3401), + [sym_update_expression] = STATE(3401), + [sym_cast_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3401), + [sym_alignof_expression] = STATE(3401), + [sym_offsetof_expression] = STATE(3401), + [sym_generic_expression] = STATE(3401), + [sym_subscript_expression] = STATE(3405), + [sym_call_expression] = STATE(3405), + [sym_gnu_asm_expression] = STATE(3401), + [sym_extension_expression] = STATE(3401), + [sym_field_expression] = STATE(3405), + [sym_compound_literal_expression] = STATE(3401), + [sym_parenthesized_expression] = STATE(3405), + [sym_char_literal] = STATE(3393), + [sym_concatenated_string] = STATE(3393), + [sym_string_literal] = STATE(2380), + [sym_null] = STATE(3401), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7745), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3401), + [sym_raw_string_literal] = STATE(2380), + [sym_co_await_expression] = STATE(3401), + [sym_new_expression] = STATE(3401), + [sym_delete_expression] = STATE(3401), + [sym_requires_clause] = STATE(3401), + [sym_requires_expression] = STATE(3401), + [sym_lambda_expression] = STATE(3401), + [sym_lambda_capture_specifier] = STATE(5494), + [sym_fold_expression] = STATE(3401), + [sym_parameter_pack_expansion] = STATE(3401), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3405), + [sym_qualified_type_identifier] = STATE(7745), + [sym_user_defined_literal] = STATE(3405), + [sym_identifier] = ACTIONS(2453), + [anon_sym_LPAREN2] = ACTIONS(2018), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(2455), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2459), + [anon_sym_not] = ACTIONS(1796), + [anon_sym_compl] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_sizeof] = ACTIONS(1824), + [anon_sym___alignof__] = ACTIONS(1826), + [anon_sym___alignof] = ACTIONS(1826), + [anon_sym__alignof] = ACTIONS(1826), + [anon_sym_alignof] = ACTIONS(1826), + [anon_sym__Alignof] = ACTIONS(1826), + [anon_sym_offsetof] = ACTIONS(1828), + [anon_sym__Generic] = ACTIONS(1830), + [anon_sym_asm] = ACTIONS(1832), + [anon_sym___asm__] = ACTIONS(1832), + [anon_sym___asm] = ACTIONS(1832), + [sym_number_literal] = ACTIONS(1834), + [anon_sym_L_SQUOTE] = ACTIONS(1836), + [anon_sym_u_SQUOTE] = ACTIONS(1836), + [anon_sym_U_SQUOTE] = ACTIONS(1836), + [anon_sym_u8_SQUOTE] = ACTIONS(1836), + [anon_sym_SQUOTE] = ACTIONS(1836), + [anon_sym_L_DQUOTE] = ACTIONS(1838), + [anon_sym_u_DQUOTE] = ACTIONS(1838), + [anon_sym_U_DQUOTE] = ACTIONS(1838), + [anon_sym_u8_DQUOTE] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym_true] = ACTIONS(1840), + [sym_false] = ACTIONS(1840), + [anon_sym_NULL] = ACTIONS(1842), + [anon_sym_nullptr] = ACTIONS(1842), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1852), + [anon_sym_R_DQUOTE] = ACTIONS(1854), + [anon_sym_LR_DQUOTE] = ACTIONS(1854), + [anon_sym_uR_DQUOTE] = ACTIONS(1854), + [anon_sym_UR_DQUOTE] = ACTIONS(1854), + [anon_sym_u8R_DQUOTE] = ACTIONS(1854), + [anon_sym_co_await] = ACTIONS(1856), + [anon_sym_new] = ACTIONS(1858), + [anon_sym_requires] = ACTIONS(1860), + [sym_this] = ACTIONS(1840), + }, + [1251] = { + [sym_expression] = STATE(3184), + [sym__string] = STATE(3393), + [sym_conditional_expression] = STATE(3401), + [sym_assignment_expression] = STATE(3401), + [sym_pointer_expression] = STATE(3405), + [sym_unary_expression] = STATE(3401), + [sym_binary_expression] = STATE(3401), + [sym_update_expression] = STATE(3401), + [sym_cast_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3401), + [sym_alignof_expression] = STATE(3401), + [sym_offsetof_expression] = STATE(3401), + [sym_generic_expression] = STATE(3401), + [sym_subscript_expression] = STATE(3405), + [sym_call_expression] = STATE(3405), + [sym_gnu_asm_expression] = STATE(3401), + [sym_extension_expression] = STATE(3401), + [sym_field_expression] = STATE(3405), + [sym_compound_literal_expression] = STATE(3401), + [sym_parenthesized_expression] = STATE(3405), + [sym_char_literal] = STATE(3393), + [sym_concatenated_string] = STATE(3393), + [sym_string_literal] = STATE(2380), + [sym_null] = STATE(3401), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7745), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3401), + [sym_raw_string_literal] = STATE(2380), + [sym_co_await_expression] = STATE(3401), + [sym_new_expression] = STATE(3401), + [sym_delete_expression] = STATE(3401), + [sym_requires_clause] = STATE(3401), + [sym_requires_expression] = STATE(3401), + [sym_lambda_expression] = STATE(3401), + [sym_lambda_capture_specifier] = STATE(5494), + [sym_fold_expression] = STATE(3401), + [sym_parameter_pack_expansion] = STATE(3401), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3405), + [sym_qualified_type_identifier] = STATE(7745), + [sym_user_defined_literal] = STATE(3405), + [sym_identifier] = ACTIONS(2453), + [anon_sym_LPAREN2] = ACTIONS(2018), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(2455), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2459), + [anon_sym_not] = ACTIONS(1796), + [anon_sym_compl] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_sizeof] = ACTIONS(1824), + [anon_sym___alignof__] = ACTIONS(1826), + [anon_sym___alignof] = ACTIONS(1826), + [anon_sym__alignof] = ACTIONS(1826), + [anon_sym_alignof] = ACTIONS(1826), + [anon_sym__Alignof] = ACTIONS(1826), + [anon_sym_offsetof] = ACTIONS(1828), + [anon_sym__Generic] = ACTIONS(1830), + [anon_sym_asm] = ACTIONS(1832), + [anon_sym___asm__] = ACTIONS(1832), + [anon_sym___asm] = ACTIONS(1832), + [sym_number_literal] = ACTIONS(1834), + [anon_sym_L_SQUOTE] = ACTIONS(1836), + [anon_sym_u_SQUOTE] = ACTIONS(1836), + [anon_sym_U_SQUOTE] = ACTIONS(1836), + [anon_sym_u8_SQUOTE] = ACTIONS(1836), + [anon_sym_SQUOTE] = ACTIONS(1836), + [anon_sym_L_DQUOTE] = ACTIONS(1838), + [anon_sym_u_DQUOTE] = ACTIONS(1838), + [anon_sym_U_DQUOTE] = ACTIONS(1838), + [anon_sym_u8_DQUOTE] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym_true] = ACTIONS(1840), + [sym_false] = ACTIONS(1840), + [anon_sym_NULL] = ACTIONS(1842), + [anon_sym_nullptr] = ACTIONS(1842), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1852), + [anon_sym_R_DQUOTE] = ACTIONS(1854), + [anon_sym_LR_DQUOTE] = ACTIONS(1854), + [anon_sym_uR_DQUOTE] = ACTIONS(1854), + [anon_sym_UR_DQUOTE] = ACTIONS(1854), + [anon_sym_u8R_DQUOTE] = ACTIONS(1854), + [anon_sym_co_await] = ACTIONS(1856), + [anon_sym_new] = ACTIONS(1858), + [anon_sym_requires] = ACTIONS(1860), + [sym_this] = ACTIONS(1840), + }, + [1252] = { + [sym_expression] = STATE(3185), + [sym__string] = STATE(3393), + [sym_conditional_expression] = STATE(3401), + [sym_assignment_expression] = STATE(3401), + [sym_pointer_expression] = STATE(3405), + [sym_unary_expression] = STATE(3401), + [sym_binary_expression] = STATE(3401), + [sym_update_expression] = STATE(3401), + [sym_cast_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3401), + [sym_alignof_expression] = STATE(3401), + [sym_offsetof_expression] = STATE(3401), + [sym_generic_expression] = STATE(3401), + [sym_subscript_expression] = STATE(3405), + [sym_call_expression] = STATE(3405), + [sym_gnu_asm_expression] = STATE(3401), + [sym_extension_expression] = STATE(3401), + [sym_field_expression] = STATE(3405), + [sym_compound_literal_expression] = STATE(3401), + [sym_parenthesized_expression] = STATE(3405), + [sym_char_literal] = STATE(3393), + [sym_concatenated_string] = STATE(3393), + [sym_string_literal] = STATE(2380), + [sym_null] = STATE(3401), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7745), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3401), + [sym_raw_string_literal] = STATE(2380), + [sym_co_await_expression] = STATE(3401), + [sym_new_expression] = STATE(3401), + [sym_delete_expression] = STATE(3401), + [sym_requires_clause] = STATE(3401), + [sym_requires_expression] = STATE(3401), + [sym_lambda_expression] = STATE(3401), + [sym_lambda_capture_specifier] = STATE(5494), + [sym_fold_expression] = STATE(3401), + [sym_parameter_pack_expansion] = STATE(3401), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3405), + [sym_qualified_type_identifier] = STATE(7745), + [sym_user_defined_literal] = STATE(3405), + [sym_identifier] = ACTIONS(2453), + [anon_sym_LPAREN2] = ACTIONS(2018), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(2455), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2459), + [anon_sym_not] = ACTIONS(1796), + [anon_sym_compl] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_sizeof] = ACTIONS(1824), + [anon_sym___alignof__] = ACTIONS(1826), + [anon_sym___alignof] = ACTIONS(1826), + [anon_sym__alignof] = ACTIONS(1826), + [anon_sym_alignof] = ACTIONS(1826), + [anon_sym__Alignof] = ACTIONS(1826), + [anon_sym_offsetof] = ACTIONS(1828), + [anon_sym__Generic] = ACTIONS(1830), + [anon_sym_asm] = ACTIONS(1832), + [anon_sym___asm__] = ACTIONS(1832), + [anon_sym___asm] = ACTIONS(1832), + [sym_number_literal] = ACTIONS(1834), + [anon_sym_L_SQUOTE] = ACTIONS(1836), + [anon_sym_u_SQUOTE] = ACTIONS(1836), + [anon_sym_U_SQUOTE] = ACTIONS(1836), + [anon_sym_u8_SQUOTE] = ACTIONS(1836), + [anon_sym_SQUOTE] = ACTIONS(1836), + [anon_sym_L_DQUOTE] = ACTIONS(1838), + [anon_sym_u_DQUOTE] = ACTIONS(1838), + [anon_sym_U_DQUOTE] = ACTIONS(1838), + [anon_sym_u8_DQUOTE] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym_true] = ACTIONS(1840), + [sym_false] = ACTIONS(1840), + [anon_sym_NULL] = ACTIONS(1842), + [anon_sym_nullptr] = ACTIONS(1842), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1852), + [anon_sym_R_DQUOTE] = ACTIONS(1854), + [anon_sym_LR_DQUOTE] = ACTIONS(1854), + [anon_sym_uR_DQUOTE] = ACTIONS(1854), + [anon_sym_UR_DQUOTE] = ACTIONS(1854), + [anon_sym_u8R_DQUOTE] = ACTIONS(1854), + [anon_sym_co_await] = ACTIONS(1856), + [anon_sym_new] = ACTIONS(1858), + [anon_sym_requires] = ACTIONS(1860), + [sym_this] = ACTIONS(1840), + }, + [1253] = { + [sym_expression] = STATE(3186), + [sym__string] = STATE(3393), + [sym_conditional_expression] = STATE(3401), + [sym_assignment_expression] = STATE(3401), + [sym_pointer_expression] = STATE(3405), + [sym_unary_expression] = STATE(3401), + [sym_binary_expression] = STATE(3401), + [sym_update_expression] = STATE(3401), + [sym_cast_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3401), + [sym_alignof_expression] = STATE(3401), + [sym_offsetof_expression] = STATE(3401), + [sym_generic_expression] = STATE(3401), + [sym_subscript_expression] = STATE(3405), + [sym_call_expression] = STATE(3405), + [sym_gnu_asm_expression] = STATE(3401), + [sym_extension_expression] = STATE(3401), + [sym_field_expression] = STATE(3405), + [sym_compound_literal_expression] = STATE(3401), + [sym_parenthesized_expression] = STATE(3405), + [sym_char_literal] = STATE(3393), + [sym_concatenated_string] = STATE(3393), + [sym_string_literal] = STATE(2380), + [sym_null] = STATE(3401), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7745), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3401), + [sym_raw_string_literal] = STATE(2380), + [sym_co_await_expression] = STATE(3401), + [sym_new_expression] = STATE(3401), + [sym_delete_expression] = STATE(3401), + [sym_requires_clause] = STATE(3401), + [sym_requires_expression] = STATE(3401), + [sym_lambda_expression] = STATE(3401), + [sym_lambda_capture_specifier] = STATE(5494), + [sym_fold_expression] = STATE(3401), + [sym_parameter_pack_expansion] = STATE(3401), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3405), + [sym_qualified_type_identifier] = STATE(7745), + [sym_user_defined_literal] = STATE(3405), + [sym_identifier] = ACTIONS(2453), + [anon_sym_LPAREN2] = ACTIONS(2018), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(2455), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2459), + [anon_sym_not] = ACTIONS(1796), + [anon_sym_compl] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_sizeof] = ACTIONS(1824), + [anon_sym___alignof__] = ACTIONS(1826), + [anon_sym___alignof] = ACTIONS(1826), + [anon_sym__alignof] = ACTIONS(1826), + [anon_sym_alignof] = ACTIONS(1826), + [anon_sym__Alignof] = ACTIONS(1826), + [anon_sym_offsetof] = ACTIONS(1828), + [anon_sym__Generic] = ACTIONS(1830), + [anon_sym_asm] = ACTIONS(1832), + [anon_sym___asm__] = ACTIONS(1832), + [anon_sym___asm] = ACTIONS(1832), + [sym_number_literal] = ACTIONS(1834), + [anon_sym_L_SQUOTE] = ACTIONS(1836), + [anon_sym_u_SQUOTE] = ACTIONS(1836), + [anon_sym_U_SQUOTE] = ACTIONS(1836), + [anon_sym_u8_SQUOTE] = ACTIONS(1836), + [anon_sym_SQUOTE] = ACTIONS(1836), + [anon_sym_L_DQUOTE] = ACTIONS(1838), + [anon_sym_u_DQUOTE] = ACTIONS(1838), + [anon_sym_U_DQUOTE] = ACTIONS(1838), + [anon_sym_u8_DQUOTE] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym_true] = ACTIONS(1840), + [sym_false] = ACTIONS(1840), + [anon_sym_NULL] = ACTIONS(1842), + [anon_sym_nullptr] = ACTIONS(1842), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1852), + [anon_sym_R_DQUOTE] = ACTIONS(1854), + [anon_sym_LR_DQUOTE] = ACTIONS(1854), + [anon_sym_uR_DQUOTE] = ACTIONS(1854), + [anon_sym_UR_DQUOTE] = ACTIONS(1854), + [anon_sym_u8R_DQUOTE] = ACTIONS(1854), + [anon_sym_co_await] = ACTIONS(1856), + [anon_sym_new] = ACTIONS(1858), + [anon_sym_requires] = ACTIONS(1860), + [sym_this] = ACTIONS(1840), + }, + [1254] = { + [sym_expression] = STATE(3187), + [sym__string] = STATE(3393), + [sym_conditional_expression] = STATE(3401), + [sym_assignment_expression] = STATE(3401), + [sym_pointer_expression] = STATE(3405), + [sym_unary_expression] = STATE(3401), + [sym_binary_expression] = STATE(3401), + [sym_update_expression] = STATE(3401), + [sym_cast_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3401), + [sym_alignof_expression] = STATE(3401), + [sym_offsetof_expression] = STATE(3401), + [sym_generic_expression] = STATE(3401), + [sym_subscript_expression] = STATE(3405), + [sym_call_expression] = STATE(3405), + [sym_gnu_asm_expression] = STATE(3401), + [sym_extension_expression] = STATE(3401), + [sym_field_expression] = STATE(3405), + [sym_compound_literal_expression] = STATE(3401), + [sym_parenthesized_expression] = STATE(3405), + [sym_char_literal] = STATE(3393), + [sym_concatenated_string] = STATE(3393), + [sym_string_literal] = STATE(2380), + [sym_null] = STATE(3401), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7745), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3401), + [sym_raw_string_literal] = STATE(2380), + [sym_co_await_expression] = STATE(3401), + [sym_new_expression] = STATE(3401), + [sym_delete_expression] = STATE(3401), + [sym_requires_clause] = STATE(3401), + [sym_requires_expression] = STATE(3401), + [sym_lambda_expression] = STATE(3401), + [sym_lambda_capture_specifier] = STATE(5494), + [sym_fold_expression] = STATE(3401), + [sym_parameter_pack_expansion] = STATE(3401), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3405), + [sym_qualified_type_identifier] = STATE(7745), + [sym_user_defined_literal] = STATE(3405), + [sym_identifier] = ACTIONS(2453), + [anon_sym_LPAREN2] = ACTIONS(2018), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(2455), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2459), + [anon_sym_not] = ACTIONS(1796), + [anon_sym_compl] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_sizeof] = ACTIONS(1824), + [anon_sym___alignof__] = ACTIONS(1826), + [anon_sym___alignof] = ACTIONS(1826), + [anon_sym__alignof] = ACTIONS(1826), + [anon_sym_alignof] = ACTIONS(1826), + [anon_sym__Alignof] = ACTIONS(1826), + [anon_sym_offsetof] = ACTIONS(1828), + [anon_sym__Generic] = ACTIONS(1830), + [anon_sym_asm] = ACTIONS(1832), + [anon_sym___asm__] = ACTIONS(1832), + [anon_sym___asm] = ACTIONS(1832), + [sym_number_literal] = ACTIONS(1834), + [anon_sym_L_SQUOTE] = ACTIONS(1836), + [anon_sym_u_SQUOTE] = ACTIONS(1836), + [anon_sym_U_SQUOTE] = ACTIONS(1836), + [anon_sym_u8_SQUOTE] = ACTIONS(1836), + [anon_sym_SQUOTE] = ACTIONS(1836), + [anon_sym_L_DQUOTE] = ACTIONS(1838), + [anon_sym_u_DQUOTE] = ACTIONS(1838), + [anon_sym_U_DQUOTE] = ACTIONS(1838), + [anon_sym_u8_DQUOTE] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym_true] = ACTIONS(1840), + [sym_false] = ACTIONS(1840), + [anon_sym_NULL] = ACTIONS(1842), + [anon_sym_nullptr] = ACTIONS(1842), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1852), + [anon_sym_R_DQUOTE] = ACTIONS(1854), + [anon_sym_LR_DQUOTE] = ACTIONS(1854), + [anon_sym_uR_DQUOTE] = ACTIONS(1854), + [anon_sym_UR_DQUOTE] = ACTIONS(1854), + [anon_sym_u8R_DQUOTE] = ACTIONS(1854), + [anon_sym_co_await] = ACTIONS(1856), + [anon_sym_new] = ACTIONS(1858), + [anon_sym_requires] = ACTIONS(1860), + [sym_this] = ACTIONS(1840), + }, + [1255] = { + [sym_expression] = STATE(3188), + [sym__string] = STATE(3393), + [sym_conditional_expression] = STATE(3401), + [sym_assignment_expression] = STATE(3401), + [sym_pointer_expression] = STATE(3405), + [sym_unary_expression] = STATE(3401), + [sym_binary_expression] = STATE(3401), + [sym_update_expression] = STATE(3401), + [sym_cast_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3401), + [sym_alignof_expression] = STATE(3401), + [sym_offsetof_expression] = STATE(3401), + [sym_generic_expression] = STATE(3401), + [sym_subscript_expression] = STATE(3405), + [sym_call_expression] = STATE(3405), + [sym_gnu_asm_expression] = STATE(3401), + [sym_extension_expression] = STATE(3401), + [sym_field_expression] = STATE(3405), + [sym_compound_literal_expression] = STATE(3401), + [sym_parenthesized_expression] = STATE(3405), + [sym_char_literal] = STATE(3393), + [sym_concatenated_string] = STATE(3393), + [sym_string_literal] = STATE(2380), + [sym_null] = STATE(3401), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7745), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3401), + [sym_raw_string_literal] = STATE(2380), + [sym_co_await_expression] = STATE(3401), + [sym_new_expression] = STATE(3401), + [sym_delete_expression] = STATE(3401), + [sym_requires_clause] = STATE(3401), + [sym_requires_expression] = STATE(3401), + [sym_lambda_expression] = STATE(3401), + [sym_lambda_capture_specifier] = STATE(5494), + [sym_fold_expression] = STATE(3401), + [sym_parameter_pack_expansion] = STATE(3401), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3405), + [sym_qualified_type_identifier] = STATE(7745), + [sym_user_defined_literal] = STATE(3405), + [sym_identifier] = ACTIONS(2453), + [anon_sym_LPAREN2] = ACTIONS(2018), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(2455), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2459), + [anon_sym_not] = ACTIONS(1796), + [anon_sym_compl] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_sizeof] = ACTIONS(1824), + [anon_sym___alignof__] = ACTIONS(1826), + [anon_sym___alignof] = ACTIONS(1826), + [anon_sym__alignof] = ACTIONS(1826), + [anon_sym_alignof] = ACTIONS(1826), + [anon_sym__Alignof] = ACTIONS(1826), + [anon_sym_offsetof] = ACTIONS(1828), + [anon_sym__Generic] = ACTIONS(1830), + [anon_sym_asm] = ACTIONS(1832), + [anon_sym___asm__] = ACTIONS(1832), + [anon_sym___asm] = ACTIONS(1832), + [sym_number_literal] = ACTIONS(1834), + [anon_sym_L_SQUOTE] = ACTIONS(1836), + [anon_sym_u_SQUOTE] = ACTIONS(1836), + [anon_sym_U_SQUOTE] = ACTIONS(1836), + [anon_sym_u8_SQUOTE] = ACTIONS(1836), + [anon_sym_SQUOTE] = ACTIONS(1836), + [anon_sym_L_DQUOTE] = ACTIONS(1838), + [anon_sym_u_DQUOTE] = ACTIONS(1838), + [anon_sym_U_DQUOTE] = ACTIONS(1838), + [anon_sym_u8_DQUOTE] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym_true] = ACTIONS(1840), + [sym_false] = ACTIONS(1840), + [anon_sym_NULL] = ACTIONS(1842), + [anon_sym_nullptr] = ACTIONS(1842), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1852), + [anon_sym_R_DQUOTE] = ACTIONS(1854), + [anon_sym_LR_DQUOTE] = ACTIONS(1854), + [anon_sym_uR_DQUOTE] = ACTIONS(1854), + [anon_sym_UR_DQUOTE] = ACTIONS(1854), + [anon_sym_u8R_DQUOTE] = ACTIONS(1854), + [anon_sym_co_await] = ACTIONS(1856), + [anon_sym_new] = ACTIONS(1858), + [anon_sym_requires] = ACTIONS(1860), + [sym_this] = ACTIONS(1840), + }, + [1256] = { + [sym_expression] = STATE(3189), + [sym__string] = STATE(3393), + [sym_conditional_expression] = STATE(3401), + [sym_assignment_expression] = STATE(3401), + [sym_pointer_expression] = STATE(3405), + [sym_unary_expression] = STATE(3401), + [sym_binary_expression] = STATE(3401), + [sym_update_expression] = STATE(3401), + [sym_cast_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3401), + [sym_alignof_expression] = STATE(3401), + [sym_offsetof_expression] = STATE(3401), + [sym_generic_expression] = STATE(3401), + [sym_subscript_expression] = STATE(3405), + [sym_call_expression] = STATE(3405), + [sym_gnu_asm_expression] = STATE(3401), + [sym_extension_expression] = STATE(3401), + [sym_field_expression] = STATE(3405), + [sym_compound_literal_expression] = STATE(3401), + [sym_parenthesized_expression] = STATE(3405), + [sym_char_literal] = STATE(3393), + [sym_concatenated_string] = STATE(3393), + [sym_string_literal] = STATE(2380), + [sym_null] = STATE(3401), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7745), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3401), + [sym_raw_string_literal] = STATE(2380), + [sym_co_await_expression] = STATE(3401), + [sym_new_expression] = STATE(3401), + [sym_delete_expression] = STATE(3401), + [sym_requires_clause] = STATE(3401), + [sym_requires_expression] = STATE(3401), + [sym_lambda_expression] = STATE(3401), + [sym_lambda_capture_specifier] = STATE(5494), + [sym_fold_expression] = STATE(3401), + [sym_parameter_pack_expansion] = STATE(3401), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3405), + [sym_qualified_type_identifier] = STATE(7745), + [sym_user_defined_literal] = STATE(3405), + [sym_identifier] = ACTIONS(2453), + [anon_sym_LPAREN2] = ACTIONS(2018), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(2455), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2459), + [anon_sym_not] = ACTIONS(1796), + [anon_sym_compl] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_sizeof] = ACTIONS(1824), + [anon_sym___alignof__] = ACTIONS(1826), + [anon_sym___alignof] = ACTIONS(1826), + [anon_sym__alignof] = ACTIONS(1826), + [anon_sym_alignof] = ACTIONS(1826), + [anon_sym__Alignof] = ACTIONS(1826), + [anon_sym_offsetof] = ACTIONS(1828), + [anon_sym__Generic] = ACTIONS(1830), + [anon_sym_asm] = ACTIONS(1832), + [anon_sym___asm__] = ACTIONS(1832), + [anon_sym___asm] = ACTIONS(1832), + [sym_number_literal] = ACTIONS(1834), + [anon_sym_L_SQUOTE] = ACTIONS(1836), + [anon_sym_u_SQUOTE] = ACTIONS(1836), + [anon_sym_U_SQUOTE] = ACTIONS(1836), + [anon_sym_u8_SQUOTE] = ACTIONS(1836), + [anon_sym_SQUOTE] = ACTIONS(1836), + [anon_sym_L_DQUOTE] = ACTIONS(1838), + [anon_sym_u_DQUOTE] = ACTIONS(1838), + [anon_sym_U_DQUOTE] = ACTIONS(1838), + [anon_sym_u8_DQUOTE] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym_true] = ACTIONS(1840), + [sym_false] = ACTIONS(1840), + [anon_sym_NULL] = ACTIONS(1842), + [anon_sym_nullptr] = ACTIONS(1842), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1852), + [anon_sym_R_DQUOTE] = ACTIONS(1854), + [anon_sym_LR_DQUOTE] = ACTIONS(1854), + [anon_sym_uR_DQUOTE] = ACTIONS(1854), + [anon_sym_UR_DQUOTE] = ACTIONS(1854), + [anon_sym_u8R_DQUOTE] = ACTIONS(1854), + [anon_sym_co_await] = ACTIONS(1856), + [anon_sym_new] = ACTIONS(1858), + [anon_sym_requires] = ACTIONS(1860), + [sym_this] = ACTIONS(1840), + }, + [1257] = { + [sym_expression] = STATE(2999), + [sym__string] = STATE(2917), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(2917), + [sym_concatenated_string] = STATE(2917), + [sym_string_literal] = STATE(2114), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(2114), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), [sym_identifier] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(4555), + [anon_sym_LPAREN2] = ACTIONS(4565), [anon_sym_BANG] = ACTIONS(1994), [anon_sym_TILDE] = ACTIONS(1994), [anon_sym_DASH] = ACTIONS(1992), [anon_sym_PLUS] = ACTIONS(1992), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), [anon_sym___extension__] = ACTIONS(1996), [anon_sym_COLON_COLON] = ACTIONS(1998), [anon_sym_LBRACK] = ACTIONS(2020), - [anon_sym_RBRACK] = ACTIONS(4883), [sym_primitive_type] = ACTIONS(1956), [anon_sym_not] = ACTIONS(1992), [anon_sym_compl] = ACTIONS(1992), - [anon_sym_DASH_DASH] = ACTIONS(3343), - [anon_sym_PLUS_PLUS] = ACTIONS(3343), + [anon_sym_DASH_DASH] = ACTIONS(3355), + [anon_sym_PLUS_PLUS] = ACTIONS(3355), [anon_sym_sizeof] = ACTIONS(2000), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), @@ -199172,7 +206277,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1976), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(2008), [anon_sym_R_DQUOTE] = ACTIONS(2010), [anon_sym_LR_DQUOTE] = ACTIONS(2010), @@ -199184,168 +206289,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [1197] = { - [sym_expression] = STATE(3208), - [sym__string] = STATE(3235), - [sym_conditional_expression] = STATE(3373), - [sym_assignment_expression] = STATE(3373), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3373), - [sym_binary_expression] = STATE(3373), - [sym_update_expression] = STATE(3373), - [sym_cast_expression] = STATE(3373), - [sym_sizeof_expression] = STATE(3373), - [sym_alignof_expression] = STATE(3373), - [sym_offsetof_expression] = STATE(3373), - [sym_generic_expression] = STATE(3373), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3373), - [sym_extension_expression] = STATE(3373), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3373), - [sym_parenthesized_expression] = STATE(3365), - [sym_char_literal] = STATE(3235), - [sym_concatenated_string] = STATE(3235), - [sym_string_literal] = STATE(2358), - [sym_null] = STATE(3373), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7814), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3373), - [sym_raw_string_literal] = STATE(2358), - [sym_co_await_expression] = STATE(3373), - [sym_new_expression] = STATE(3373), - [sym_delete_expression] = STATE(3373), - [sym_requires_clause] = STATE(3373), - [sym_requires_expression] = STATE(3373), - [sym_lambda_expression] = STATE(3373), - [sym_lambda_capture_specifier] = STATE(5414), - [sym_fold_expression] = STATE(3373), - [sym_parameter_pack_expansion] = STATE(3373), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3365), - [sym_qualified_type_identifier] = STATE(7814), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2453), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4719), - [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(2455), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), - }, - [1198] = { - [sym_expression] = STATE(2398), - [sym__string] = STATE(2950), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(2950), - [sym_concatenated_string] = STATE(2950), - [sym_string_literal] = STATE(2034), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(2034), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), + [1258] = { + [sym_expression] = STATE(2948), + [sym__string] = STATE(2917), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(2917), + [sym_concatenated_string] = STATE(2917), + [sym_string_literal] = STATE(2114), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(2114), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), [sym_identifier] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(4555), + [anon_sym_LPAREN2] = ACTIONS(4565), [anon_sym_BANG] = ACTIONS(1994), [anon_sym_TILDE] = ACTIONS(1994), [anon_sym_DASH] = ACTIONS(1992), [anon_sym_PLUS] = ACTIONS(1992), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), [anon_sym___extension__] = ACTIONS(1996), [anon_sym_COLON_COLON] = ACTIONS(1998), [anon_sym_LBRACK] = ACTIONS(2020), - [anon_sym_RBRACK] = ACTIONS(4885), [sym_primitive_type] = ACTIONS(1956), [anon_sym_not] = ACTIONS(1992), [anon_sym_compl] = ACTIONS(1992), - [anon_sym_DASH_DASH] = ACTIONS(3343), - [anon_sym_PLUS_PLUS] = ACTIONS(3343), + [anon_sym_DASH_DASH] = ACTIONS(3355), + [anon_sym_PLUS_PLUS] = ACTIONS(3355), [anon_sym_sizeof] = ACTIONS(2000), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), @@ -199374,7 +206377,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1976), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(2008), [anon_sym_R_DQUOTE] = ACTIONS(2010), [anon_sym_LR_DQUOTE] = ACTIONS(2010), @@ -199386,67 +206389,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [1199] = { - [sym_expression] = STATE(2398), - [sym__string] = STATE(2950), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(2950), - [sym_concatenated_string] = STATE(2950), - [sym_string_literal] = STATE(2034), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(2034), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), + [1259] = { + [sym_expression] = STATE(2432), + [sym__string] = STATE(2917), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(2917), + [sym_concatenated_string] = STATE(2917), + [sym_string_literal] = STATE(2114), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(2114), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), [sym_identifier] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(4555), + [anon_sym_LPAREN2] = ACTIONS(4565), [anon_sym_BANG] = ACTIONS(1994), [anon_sym_TILDE] = ACTIONS(1994), [anon_sym_DASH] = ACTIONS(1992), [anon_sym_PLUS] = ACTIONS(1992), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), [anon_sym___extension__] = ACTIONS(1996), [anon_sym_COLON_COLON] = ACTIONS(1998), [anon_sym_LBRACK] = ACTIONS(2020), - [anon_sym_RBRACK] = ACTIONS(4887), [sym_primitive_type] = ACTIONS(1956), [anon_sym_not] = ACTIONS(1992), [anon_sym_compl] = ACTIONS(1992), - [anon_sym_DASH_DASH] = ACTIONS(3343), - [anon_sym_PLUS_PLUS] = ACTIONS(3343), + [anon_sym_DASH_DASH] = ACTIONS(3355), + [anon_sym_PLUS_PLUS] = ACTIONS(3355), [anon_sym_sizeof] = ACTIONS(2000), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), @@ -199475,7 +206477,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1976), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(2008), [anon_sym_R_DQUOTE] = ACTIONS(2010), [anon_sym_LR_DQUOTE] = ACTIONS(2010), @@ -199487,168 +206489,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [1200] = { - [sym_expression] = STATE(3663), - [sym__string] = STATE(3714), - [sym_conditional_expression] = STATE(3908), - [sym_assignment_expression] = STATE(3908), - [sym_pointer_expression] = STATE(3506), - [sym_unary_expression] = STATE(3908), - [sym_binary_expression] = STATE(3908), - [sym_update_expression] = STATE(3908), - [sym_cast_expression] = STATE(3908), - [sym_sizeof_expression] = STATE(3908), - [sym_alignof_expression] = STATE(3908), - [sym_offsetof_expression] = STATE(3908), - [sym_generic_expression] = STATE(3908), - [sym_subscript_expression] = STATE(3506), - [sym_call_expression] = STATE(3506), - [sym_gnu_asm_expression] = STATE(3908), - [sym_extension_expression] = STATE(3908), - [sym_field_expression] = STATE(3506), - [sym_compound_literal_expression] = STATE(3908), - [sym_parenthesized_expression] = STATE(3506), - [sym_char_literal] = STATE(3714), - [sym_concatenated_string] = STATE(3714), - [sym_string_literal] = STATE(2566), - [sym_null] = STATE(3908), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7868), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3908), - [sym_raw_string_literal] = STATE(2566), - [sym_co_await_expression] = STATE(3908), - [sym_new_expression] = STATE(3908), - [sym_delete_expression] = STATE(3908), - [sym_requires_clause] = STATE(3908), - [sym_requires_expression] = STATE(3908), - [sym_lambda_expression] = STATE(3908), - [sym_lambda_capture_specifier] = STATE(5415), - [sym_fold_expression] = STATE(3908), - [sym_parameter_pack_expansion] = STATE(3908), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3506), - [sym_qualified_type_identifier] = STATE(7868), - [sym_user_defined_literal] = STATE(3506), - [sym_identifier] = ACTIONS(2605), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4889), - [anon_sym_LPAREN2] = ACTIONS(4891), - [anon_sym_BANG] = ACTIONS(1870), - [anon_sym_TILDE] = ACTIONS(1870), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_PLUS] = ACTIONS(1872), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(2607), - [anon_sym_COLON_COLON] = ACTIONS(1880), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2611), - [anon_sym_not] = ACTIONS(1872), - [anon_sym_compl] = ACTIONS(1872), - [anon_sym_DASH_DASH] = ACTIONS(1892), - [anon_sym_PLUS_PLUS] = ACTIONS(1892), - [anon_sym_sizeof] = ACTIONS(1894), - [anon_sym___alignof__] = ACTIONS(1896), - [anon_sym___alignof] = ACTIONS(1896), - [anon_sym__alignof] = ACTIONS(1896), - [anon_sym_alignof] = ACTIONS(1896), - [anon_sym__Alignof] = ACTIONS(1896), - [anon_sym_offsetof] = ACTIONS(1898), - [anon_sym__Generic] = ACTIONS(1900), - [anon_sym_asm] = ACTIONS(1902), - [anon_sym___asm__] = ACTIONS(1902), - [anon_sym___asm] = ACTIONS(1902), - [sym_number_literal] = ACTIONS(1904), - [anon_sym_L_SQUOTE] = ACTIONS(1906), - [anon_sym_u_SQUOTE] = ACTIONS(1906), - [anon_sym_U_SQUOTE] = ACTIONS(1906), - [anon_sym_u8_SQUOTE] = ACTIONS(1906), - [anon_sym_SQUOTE] = ACTIONS(1906), - [anon_sym_L_DQUOTE] = ACTIONS(1908), - [anon_sym_u_DQUOTE] = ACTIONS(1908), - [anon_sym_U_DQUOTE] = ACTIONS(1908), - [anon_sym_u8_DQUOTE] = ACTIONS(1908), - [anon_sym_DQUOTE] = ACTIONS(1908), - [sym_true] = ACTIONS(1910), - [sym_false] = ACTIONS(1910), - [anon_sym_NULL] = ACTIONS(1912), - [anon_sym_nullptr] = ACTIONS(1912), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1916), - [anon_sym_R_DQUOTE] = ACTIONS(1918), - [anon_sym_LR_DQUOTE] = ACTIONS(1918), - [anon_sym_uR_DQUOTE] = ACTIONS(1918), - [anon_sym_UR_DQUOTE] = ACTIONS(1918), - [anon_sym_u8R_DQUOTE] = ACTIONS(1918), - [anon_sym_co_await] = ACTIONS(1920), - [anon_sym_new] = ACTIONS(1922), - [anon_sym_requires] = ACTIONS(1924), - [sym_this] = ACTIONS(1910), - }, - [1201] = { - [sym_expression] = STATE(4522), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3678), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3678), - [sym_call_expression] = STATE(3678), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3678), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3678), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3678), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3678), - [sym_identifier] = ACTIONS(3849), - [anon_sym_LPAREN2] = ACTIONS(3893), - [anon_sym_BANG] = ACTIONS(3853), - [anon_sym_TILDE] = ACTIONS(3853), - [anon_sym_DASH] = ACTIONS(3851), - [anon_sym_PLUS] = ACTIONS(3851), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(3855), - [anon_sym_COLON_COLON] = ACTIONS(3857), + [1260] = { + [sym_expression] = STATE(4345), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), + [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3851), - [anon_sym_compl] = ACTIONS(3851), - [anon_sym_DASH_DASH] = ACTIONS(3897), - [anon_sym_PLUS_PLUS] = ACTIONS(3897), - [anon_sym_sizeof] = ACTIONS(3859), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -199676,74 +206577,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3861), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3863), - [anon_sym_new] = ACTIONS(3865), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1202] = { - [sym_expression] = STATE(4418), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1261] = { + [sym_expression] = STATE(4674), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -199776,7 +206677,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -199788,67 +206689,267 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1203] = { - [sym_expression] = STATE(4587), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3678), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3678), - [sym_call_expression] = STATE(3678), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3678), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3678), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3678), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3678), - [sym_identifier] = ACTIONS(3849), - [anon_sym_LPAREN2] = ACTIONS(3893), - [anon_sym_BANG] = ACTIONS(3853), - [anon_sym_TILDE] = ACTIONS(3853), - [anon_sym_DASH] = ACTIONS(3851), - [anon_sym_PLUS] = ACTIONS(3851), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(3855), - [anon_sym_COLON_COLON] = ACTIONS(3857), + [1262] = { + [sym_expression] = STATE(4493), + [sym__string] = STATE(4825), + [sym_conditional_expression] = STATE(4856), + [sym_assignment_expression] = STATE(4856), + [sym_pointer_expression] = STATE(3701), + [sym_unary_expression] = STATE(4856), + [sym_binary_expression] = STATE(4856), + [sym_update_expression] = STATE(4856), + [sym_cast_expression] = STATE(4856), + [sym_sizeof_expression] = STATE(4856), + [sym_alignof_expression] = STATE(4856), + [sym_offsetof_expression] = STATE(4856), + [sym_generic_expression] = STATE(4856), + [sym_subscript_expression] = STATE(3701), + [sym_call_expression] = STATE(3701), + [sym_gnu_asm_expression] = STATE(4856), + [sym_extension_expression] = STATE(4856), + [sym_field_expression] = STATE(3701), + [sym_compound_literal_expression] = STATE(4856), + [sym_parenthesized_expression] = STATE(3701), + [sym_char_literal] = STATE(4825), + [sym_concatenated_string] = STATE(4825), + [sym_string_literal] = STATE(3812), + [sym_null] = STATE(4856), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7816), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(4856), + [sym_raw_string_literal] = STATE(3812), + [sym_co_await_expression] = STATE(4856), + [sym_new_expression] = STATE(4856), + [sym_delete_expression] = STATE(4856), + [sym_requires_clause] = STATE(4856), + [sym_requires_expression] = STATE(4856), + [sym_lambda_expression] = STATE(4856), + [sym_lambda_capture_specifier] = STATE(5489), + [sym_fold_expression] = STATE(4856), + [sym_parameter_pack_expansion] = STATE(4856), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5769), + [sym_qualified_identifier] = STATE(3701), + [sym_qualified_type_identifier] = STATE(7816), + [sym_user_defined_literal] = STATE(3701), + [sym_identifier] = ACTIONS(3875), + [anon_sym_LPAREN2] = ACTIONS(3130), + [anon_sym_BANG] = ACTIONS(3132), + [anon_sym_TILDE] = ACTIONS(3132), + [anon_sym_DASH] = ACTIONS(3134), + [anon_sym_PLUS] = ACTIONS(3134), + [anon_sym_STAR] = ACTIONS(3136), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym___extension__] = ACTIONS(3877), + [anon_sym_COLON_COLON] = ACTIONS(3140), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(3881), + [anon_sym_not] = ACTIONS(3134), + [anon_sym_compl] = ACTIONS(3134), + [anon_sym_DASH_DASH] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_sizeof] = ACTIONS(3156), + [anon_sym___alignof__] = ACTIONS(3158), + [anon_sym___alignof] = ACTIONS(3158), + [anon_sym__alignof] = ACTIONS(3158), + [anon_sym_alignof] = ACTIONS(3158), + [anon_sym__Alignof] = ACTIONS(3158), + [anon_sym_offsetof] = ACTIONS(3160), + [anon_sym__Generic] = ACTIONS(3162), + [anon_sym_asm] = ACTIONS(3164), + [anon_sym___asm__] = ACTIONS(3164), + [anon_sym___asm] = ACTIONS(3164), + [sym_number_literal] = ACTIONS(3166), + [anon_sym_L_SQUOTE] = ACTIONS(3168), + [anon_sym_u_SQUOTE] = ACTIONS(3168), + [anon_sym_U_SQUOTE] = ACTIONS(3168), + [anon_sym_u8_SQUOTE] = ACTIONS(3168), + [anon_sym_SQUOTE] = ACTIONS(3168), + [anon_sym_L_DQUOTE] = ACTIONS(3170), + [anon_sym_u_DQUOTE] = ACTIONS(3170), + [anon_sym_U_DQUOTE] = ACTIONS(3170), + [anon_sym_u8_DQUOTE] = ACTIONS(3170), + [anon_sym_DQUOTE] = ACTIONS(3170), + [sym_true] = ACTIONS(3172), + [sym_false] = ACTIONS(3172), + [anon_sym_NULL] = ACTIONS(3174), + [anon_sym_nullptr] = ACTIONS(3174), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3184), + [anon_sym_R_DQUOTE] = ACTIONS(3186), + [anon_sym_LR_DQUOTE] = ACTIONS(3186), + [anon_sym_uR_DQUOTE] = ACTIONS(3186), + [anon_sym_UR_DQUOTE] = ACTIONS(3186), + [anon_sym_u8R_DQUOTE] = ACTIONS(3186), + [anon_sym_co_await] = ACTIONS(3188), + [anon_sym_new] = ACTIONS(3190), + [anon_sym_requires] = ACTIONS(3192), + [sym_this] = ACTIONS(3172), + }, + [1263] = { + [sym_expression] = STATE(3003), + [sym__string] = STATE(2917), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(2917), + [sym_concatenated_string] = STATE(2917), + [sym_string_literal] = STATE(2114), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(2114), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), + [sym_identifier] = ACTIONS(1990), + [anon_sym_LPAREN2] = ACTIONS(4565), + [anon_sym_BANG] = ACTIONS(1994), + [anon_sym_TILDE] = ACTIONS(1994), + [anon_sym_DASH] = ACTIONS(1992), + [anon_sym_PLUS] = ACTIONS(1992), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(1996), + [anon_sym_COLON_COLON] = ACTIONS(1998), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3851), - [anon_sym_compl] = ACTIONS(3851), - [anon_sym_DASH_DASH] = ACTIONS(3897), - [anon_sym_PLUS_PLUS] = ACTIONS(3897), - [anon_sym_sizeof] = ACTIONS(3859), + [sym_primitive_type] = ACTIONS(1956), + [anon_sym_not] = ACTIONS(1992), + [anon_sym_compl] = ACTIONS(1992), + [anon_sym_DASH_DASH] = ACTIONS(3355), + [anon_sym_PLUS_PLUS] = ACTIONS(3355), + [anon_sym_sizeof] = ACTIONS(2000), + [anon_sym___alignof__] = ACTIONS(1960), + [anon_sym___alignof] = ACTIONS(1960), + [anon_sym__alignof] = ACTIONS(1960), + [anon_sym_alignof] = ACTIONS(1960), + [anon_sym__Alignof] = ACTIONS(1960), + [anon_sym_offsetof] = ACTIONS(1962), + [anon_sym__Generic] = ACTIONS(1964), + [anon_sym_asm] = ACTIONS(1966), + [anon_sym___asm__] = ACTIONS(1966), + [anon_sym___asm] = ACTIONS(1966), + [sym_number_literal] = ACTIONS(2002), + [anon_sym_L_SQUOTE] = ACTIONS(2004), + [anon_sym_u_SQUOTE] = ACTIONS(2004), + [anon_sym_U_SQUOTE] = ACTIONS(2004), + [anon_sym_u8_SQUOTE] = ACTIONS(2004), + [anon_sym_SQUOTE] = ACTIONS(2004), + [anon_sym_L_DQUOTE] = ACTIONS(2006), + [anon_sym_u_DQUOTE] = ACTIONS(2006), + [anon_sym_U_DQUOTE] = ACTIONS(2006), + [anon_sym_u8_DQUOTE] = ACTIONS(2006), + [anon_sym_DQUOTE] = ACTIONS(2006), + [sym_true] = ACTIONS(1974), + [sym_false] = ACTIONS(1974), + [anon_sym_NULL] = ACTIONS(1976), + [anon_sym_nullptr] = ACTIONS(1976), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(2008), + [anon_sym_R_DQUOTE] = ACTIONS(2010), + [anon_sym_LR_DQUOTE] = ACTIONS(2010), + [anon_sym_uR_DQUOTE] = ACTIONS(2010), + [anon_sym_UR_DQUOTE] = ACTIONS(2010), + [anon_sym_u8R_DQUOTE] = ACTIONS(2010), + [anon_sym_co_await] = ACTIONS(2012), + [anon_sym_new] = ACTIONS(2014), + [anon_sym_requires] = ACTIONS(1988), + [sym_this] = ACTIONS(1974), + }, + [1264] = { + [sym_expression] = STATE(4317), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(4907), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -199876,74 +206977,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3861), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3863), - [anon_sym_new] = ACTIONS(3865), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1204] = { - [sym_expression] = STATE(4596), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1265] = { + [sym_expression] = STATE(3745), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -199976,7 +207077,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -199988,62 +207089,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1205] = { - [sym_expression] = STATE(4319), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1266] = { + [sym_expression] = STATE(4320), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(4893), - [sym_primitive_type] = ACTIONS(2028), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -200076,7 +207177,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -200088,62 +207189,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1206] = { - [sym_expression] = STATE(4752), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1267] = { + [sym_expression] = STATE(4364), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [anon_sym_LBRACK] = ACTIONS(4909), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -200176,7 +207277,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -200188,562 +207289,462 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1207] = { - [sym_expression] = STATE(3184), - [sym__string] = STATE(3235), - [sym_conditional_expression] = STATE(3373), - [sym_assignment_expression] = STATE(3373), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3373), - [sym_binary_expression] = STATE(3373), - [sym_update_expression] = STATE(3373), - [sym_cast_expression] = STATE(3373), - [sym_sizeof_expression] = STATE(3373), - [sym_alignof_expression] = STATE(3373), - [sym_offsetof_expression] = STATE(3373), - [sym_generic_expression] = STATE(3373), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3373), - [sym_extension_expression] = STATE(3373), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3373), - [sym_parenthesized_expression] = STATE(3365), - [sym_char_literal] = STATE(3235), - [sym_concatenated_string] = STATE(3235), - [sym_string_literal] = STATE(2358), - [sym_null] = STATE(3373), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7814), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3373), - [sym_raw_string_literal] = STATE(2358), - [sym_co_await_expression] = STATE(3373), - [sym_new_expression] = STATE(3373), - [sym_delete_expression] = STATE(3373), - [sym_requires_clause] = STATE(3373), - [sym_requires_expression] = STATE(3373), - [sym_lambda_expression] = STATE(3373), - [sym_lambda_capture_specifier] = STATE(5414), - [sym_fold_expression] = STATE(3373), - [sym_parameter_pack_expansion] = STATE(3373), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3365), - [sym_qualified_type_identifier] = STATE(7814), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2453), - [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(2455), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), - }, - [1208] = { - [sym_expression] = STATE(3668), - [sym__string] = STATE(3714), - [sym_conditional_expression] = STATE(3908), - [sym_assignment_expression] = STATE(3908), - [sym_pointer_expression] = STATE(3506), - [sym_unary_expression] = STATE(3908), - [sym_binary_expression] = STATE(3908), - [sym_update_expression] = STATE(3908), - [sym_cast_expression] = STATE(3908), - [sym_sizeof_expression] = STATE(3908), - [sym_alignof_expression] = STATE(3908), - [sym_offsetof_expression] = STATE(3908), - [sym_generic_expression] = STATE(3908), - [sym_subscript_expression] = STATE(3506), - [sym_call_expression] = STATE(3506), - [sym_gnu_asm_expression] = STATE(3908), - [sym_extension_expression] = STATE(3908), - [sym_field_expression] = STATE(3506), - [sym_compound_literal_expression] = STATE(3908), - [sym_parenthesized_expression] = STATE(3506), - [sym_char_literal] = STATE(3714), - [sym_concatenated_string] = STATE(3714), - [sym_string_literal] = STATE(2566), - [sym_null] = STATE(3908), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7868), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3908), - [sym_raw_string_literal] = STATE(2566), - [sym_co_await_expression] = STATE(3908), - [sym_new_expression] = STATE(3908), - [sym_delete_expression] = STATE(3908), - [sym_requires_clause] = STATE(3908), - [sym_requires_expression] = STATE(3908), - [sym_lambda_expression] = STATE(3908), - [sym_lambda_capture_specifier] = STATE(5415), - [sym_fold_expression] = STATE(3908), - [sym_parameter_pack_expansion] = STATE(3908), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3506), - [sym_qualified_type_identifier] = STATE(7868), - [sym_user_defined_literal] = STATE(3506), - [sym_identifier] = ACTIONS(2605), - [anon_sym_LPAREN2] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1870), - [anon_sym_TILDE] = ACTIONS(1870), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_PLUS] = ACTIONS(1872), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(2607), - [anon_sym_COLON_COLON] = ACTIONS(1880), - [anon_sym_LBRACK] = ACTIONS(4895), - [sym_primitive_type] = ACTIONS(2611), - [anon_sym_not] = ACTIONS(1872), - [anon_sym_compl] = ACTIONS(1872), - [anon_sym_DASH_DASH] = ACTIONS(1892), - [anon_sym_PLUS_PLUS] = ACTIONS(1892), - [anon_sym_sizeof] = ACTIONS(1894), - [anon_sym___alignof__] = ACTIONS(1896), - [anon_sym___alignof] = ACTIONS(1896), - [anon_sym__alignof] = ACTIONS(1896), - [anon_sym_alignof] = ACTIONS(1896), - [anon_sym__Alignof] = ACTIONS(1896), - [anon_sym_offsetof] = ACTIONS(1898), - [anon_sym__Generic] = ACTIONS(1900), - [anon_sym_asm] = ACTIONS(1902), - [anon_sym___asm__] = ACTIONS(1902), - [anon_sym___asm] = ACTIONS(1902), - [sym_number_literal] = ACTIONS(1904), - [anon_sym_L_SQUOTE] = ACTIONS(1906), - [anon_sym_u_SQUOTE] = ACTIONS(1906), - [anon_sym_U_SQUOTE] = ACTIONS(1906), - [anon_sym_u8_SQUOTE] = ACTIONS(1906), - [anon_sym_SQUOTE] = ACTIONS(1906), - [anon_sym_L_DQUOTE] = ACTIONS(1908), - [anon_sym_u_DQUOTE] = ACTIONS(1908), - [anon_sym_U_DQUOTE] = ACTIONS(1908), - [anon_sym_u8_DQUOTE] = ACTIONS(1908), - [anon_sym_DQUOTE] = ACTIONS(1908), - [sym_true] = ACTIONS(1910), - [sym_false] = ACTIONS(1910), - [anon_sym_NULL] = ACTIONS(1912), - [anon_sym_nullptr] = ACTIONS(1912), + [1268] = { + [sym_expression] = STATE(4533), + [sym__string] = STATE(4825), + [sym_conditional_expression] = STATE(4856), + [sym_assignment_expression] = STATE(4856), + [sym_pointer_expression] = STATE(3701), + [sym_unary_expression] = STATE(4856), + [sym_binary_expression] = STATE(4856), + [sym_update_expression] = STATE(4856), + [sym_cast_expression] = STATE(4856), + [sym_sizeof_expression] = STATE(4856), + [sym_alignof_expression] = STATE(4856), + [sym_offsetof_expression] = STATE(4856), + [sym_generic_expression] = STATE(4856), + [sym_subscript_expression] = STATE(3701), + [sym_call_expression] = STATE(3701), + [sym_gnu_asm_expression] = STATE(4856), + [sym_extension_expression] = STATE(4856), + [sym_field_expression] = STATE(3701), + [sym_compound_literal_expression] = STATE(4856), + [sym_parenthesized_expression] = STATE(3701), + [sym_char_literal] = STATE(4825), + [sym_concatenated_string] = STATE(4825), + [sym_string_literal] = STATE(3812), + [sym_null] = STATE(4856), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7816), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(4856), + [sym_raw_string_literal] = STATE(3812), + [sym_co_await_expression] = STATE(4856), + [sym_new_expression] = STATE(4856), + [sym_delete_expression] = STATE(4856), + [sym_requires_clause] = STATE(4856), + [sym_requires_expression] = STATE(4856), + [sym_lambda_expression] = STATE(4856), + [sym_lambda_capture_specifier] = STATE(5489), + [sym_fold_expression] = STATE(4856), + [sym_parameter_pack_expansion] = STATE(4856), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5769), + [sym_qualified_identifier] = STATE(3701), + [sym_qualified_type_identifier] = STATE(7816), + [sym_user_defined_literal] = STATE(3701), + [sym_identifier] = ACTIONS(3875), + [anon_sym_LPAREN2] = ACTIONS(3130), + [anon_sym_BANG] = ACTIONS(3132), + [anon_sym_TILDE] = ACTIONS(3132), + [anon_sym_DASH] = ACTIONS(3134), + [anon_sym_PLUS] = ACTIONS(3134), + [anon_sym_STAR] = ACTIONS(3136), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym___extension__] = ACTIONS(3877), + [anon_sym_COLON_COLON] = ACTIONS(3140), + [anon_sym_LBRACK] = ACTIONS(4911), + [sym_primitive_type] = ACTIONS(3881), + [anon_sym_not] = ACTIONS(3134), + [anon_sym_compl] = ACTIONS(3134), + [anon_sym_DASH_DASH] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_sizeof] = ACTIONS(3156), + [anon_sym___alignof__] = ACTIONS(3158), + [anon_sym___alignof] = ACTIONS(3158), + [anon_sym__alignof] = ACTIONS(3158), + [anon_sym_alignof] = ACTIONS(3158), + [anon_sym__Alignof] = ACTIONS(3158), + [anon_sym_offsetof] = ACTIONS(3160), + [anon_sym__Generic] = ACTIONS(3162), + [anon_sym_asm] = ACTIONS(3164), + [anon_sym___asm__] = ACTIONS(3164), + [anon_sym___asm] = ACTIONS(3164), + [sym_number_literal] = ACTIONS(3166), + [anon_sym_L_SQUOTE] = ACTIONS(3168), + [anon_sym_u_SQUOTE] = ACTIONS(3168), + [anon_sym_U_SQUOTE] = ACTIONS(3168), + [anon_sym_u8_SQUOTE] = ACTIONS(3168), + [anon_sym_SQUOTE] = ACTIONS(3168), + [anon_sym_L_DQUOTE] = ACTIONS(3170), + [anon_sym_u_DQUOTE] = ACTIONS(3170), + [anon_sym_U_DQUOTE] = ACTIONS(3170), + [anon_sym_u8_DQUOTE] = ACTIONS(3170), + [anon_sym_DQUOTE] = ACTIONS(3170), + [sym_true] = ACTIONS(3172), + [sym_false] = ACTIONS(3172), + [anon_sym_NULL] = ACTIONS(3174), + [anon_sym_nullptr] = ACTIONS(3174), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1916), - [anon_sym_R_DQUOTE] = ACTIONS(1918), - [anon_sym_LR_DQUOTE] = ACTIONS(1918), - [anon_sym_uR_DQUOTE] = ACTIONS(1918), - [anon_sym_UR_DQUOTE] = ACTIONS(1918), - [anon_sym_u8R_DQUOTE] = ACTIONS(1918), - [anon_sym_co_await] = ACTIONS(1920), - [anon_sym_new] = ACTIONS(1922), - [anon_sym_requires] = ACTIONS(1924), - [sym_this] = ACTIONS(1910), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3184), + [anon_sym_R_DQUOTE] = ACTIONS(3186), + [anon_sym_LR_DQUOTE] = ACTIONS(3186), + [anon_sym_uR_DQUOTE] = ACTIONS(3186), + [anon_sym_UR_DQUOTE] = ACTIONS(3186), + [anon_sym_u8R_DQUOTE] = ACTIONS(3186), + [anon_sym_co_await] = ACTIONS(3188), + [anon_sym_new] = ACTIONS(3190), + [anon_sym_requires] = ACTIONS(3192), + [sym_this] = ACTIONS(3172), }, - [1209] = { - [sym_expression] = STATE(3671), - [sym__string] = STATE(3714), - [sym_conditional_expression] = STATE(3908), - [sym_assignment_expression] = STATE(3908), - [sym_pointer_expression] = STATE(3506), - [sym_unary_expression] = STATE(3908), - [sym_binary_expression] = STATE(3908), - [sym_update_expression] = STATE(3908), - [sym_cast_expression] = STATE(3908), - [sym_sizeof_expression] = STATE(3908), - [sym_alignof_expression] = STATE(3908), - [sym_offsetof_expression] = STATE(3908), - [sym_generic_expression] = STATE(3908), - [sym_subscript_expression] = STATE(3506), - [sym_call_expression] = STATE(3506), - [sym_gnu_asm_expression] = STATE(3908), - [sym_extension_expression] = STATE(3908), - [sym_field_expression] = STATE(3506), - [sym_compound_literal_expression] = STATE(3908), - [sym_parenthesized_expression] = STATE(3506), - [sym_char_literal] = STATE(3714), - [sym_concatenated_string] = STATE(3714), - [sym_string_literal] = STATE(2566), - [sym_null] = STATE(3908), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7868), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3908), - [sym_raw_string_literal] = STATE(2566), - [sym_co_await_expression] = STATE(3908), - [sym_new_expression] = STATE(3908), - [sym_delete_expression] = STATE(3908), - [sym_requires_clause] = STATE(3908), - [sym_requires_expression] = STATE(3908), - [sym_lambda_expression] = STATE(3908), - [sym_lambda_capture_specifier] = STATE(5415), - [sym_fold_expression] = STATE(3908), - [sym_parameter_pack_expansion] = STATE(3908), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3506), - [sym_qualified_type_identifier] = STATE(7868), - [sym_user_defined_literal] = STATE(3506), - [sym_identifier] = ACTIONS(2605), - [anon_sym_LPAREN2] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1870), - [anon_sym_TILDE] = ACTIONS(1870), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_PLUS] = ACTIONS(1872), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(2607), - [anon_sym_COLON_COLON] = ACTIONS(1880), + [1269] = { + [sym_expression] = STATE(4553), + [sym__string] = STATE(4825), + [sym_conditional_expression] = STATE(4856), + [sym_assignment_expression] = STATE(4856), + [sym_pointer_expression] = STATE(3701), + [sym_unary_expression] = STATE(4856), + [sym_binary_expression] = STATE(4856), + [sym_update_expression] = STATE(4856), + [sym_cast_expression] = STATE(4856), + [sym_sizeof_expression] = STATE(4856), + [sym_alignof_expression] = STATE(4856), + [sym_offsetof_expression] = STATE(4856), + [sym_generic_expression] = STATE(4856), + [sym_subscript_expression] = STATE(3701), + [sym_call_expression] = STATE(3701), + [sym_gnu_asm_expression] = STATE(4856), + [sym_extension_expression] = STATE(4856), + [sym_field_expression] = STATE(3701), + [sym_compound_literal_expression] = STATE(4856), + [sym_parenthesized_expression] = STATE(3701), + [sym_char_literal] = STATE(4825), + [sym_concatenated_string] = STATE(4825), + [sym_string_literal] = STATE(3812), + [sym_null] = STATE(4856), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7816), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(4856), + [sym_raw_string_literal] = STATE(3812), + [sym_co_await_expression] = STATE(4856), + [sym_new_expression] = STATE(4856), + [sym_delete_expression] = STATE(4856), + [sym_requires_clause] = STATE(4856), + [sym_requires_expression] = STATE(4856), + [sym_lambda_expression] = STATE(4856), + [sym_lambda_capture_specifier] = STATE(5489), + [sym_fold_expression] = STATE(4856), + [sym_parameter_pack_expansion] = STATE(4856), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5769), + [sym_qualified_identifier] = STATE(3701), + [sym_qualified_type_identifier] = STATE(7816), + [sym_user_defined_literal] = STATE(3701), + [sym_identifier] = ACTIONS(3875), + [anon_sym_LPAREN2] = ACTIONS(3130), + [anon_sym_BANG] = ACTIONS(3132), + [anon_sym_TILDE] = ACTIONS(3132), + [anon_sym_DASH] = ACTIONS(3134), + [anon_sym_PLUS] = ACTIONS(3134), + [anon_sym_STAR] = ACTIONS(3136), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym___extension__] = ACTIONS(3877), + [anon_sym_COLON_COLON] = ACTIONS(3140), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2611), - [anon_sym_not] = ACTIONS(1872), - [anon_sym_compl] = ACTIONS(1872), - [anon_sym_DASH_DASH] = ACTIONS(1892), - [anon_sym_PLUS_PLUS] = ACTIONS(1892), - [anon_sym_sizeof] = ACTIONS(1894), - [anon_sym___alignof__] = ACTIONS(1896), - [anon_sym___alignof] = ACTIONS(1896), - [anon_sym__alignof] = ACTIONS(1896), - [anon_sym_alignof] = ACTIONS(1896), - [anon_sym__Alignof] = ACTIONS(1896), - [anon_sym_offsetof] = ACTIONS(1898), - [anon_sym__Generic] = ACTIONS(1900), - [anon_sym_asm] = ACTIONS(1902), - [anon_sym___asm__] = ACTIONS(1902), - [anon_sym___asm] = ACTIONS(1902), - [sym_number_literal] = ACTIONS(1904), - [anon_sym_L_SQUOTE] = ACTIONS(1906), - [anon_sym_u_SQUOTE] = ACTIONS(1906), - [anon_sym_U_SQUOTE] = ACTIONS(1906), - [anon_sym_u8_SQUOTE] = ACTIONS(1906), - [anon_sym_SQUOTE] = ACTIONS(1906), - [anon_sym_L_DQUOTE] = ACTIONS(1908), - [anon_sym_u_DQUOTE] = ACTIONS(1908), - [anon_sym_U_DQUOTE] = ACTIONS(1908), - [anon_sym_u8_DQUOTE] = ACTIONS(1908), - [anon_sym_DQUOTE] = ACTIONS(1908), - [sym_true] = ACTIONS(1910), - [sym_false] = ACTIONS(1910), - [anon_sym_NULL] = ACTIONS(1912), - [anon_sym_nullptr] = ACTIONS(1912), + [sym_primitive_type] = ACTIONS(3881), + [anon_sym_not] = ACTIONS(3134), + [anon_sym_compl] = ACTIONS(3134), + [anon_sym_DASH_DASH] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_sizeof] = ACTIONS(3156), + [anon_sym___alignof__] = ACTIONS(3158), + [anon_sym___alignof] = ACTIONS(3158), + [anon_sym__alignof] = ACTIONS(3158), + [anon_sym_alignof] = ACTIONS(3158), + [anon_sym__Alignof] = ACTIONS(3158), + [anon_sym_offsetof] = ACTIONS(3160), + [anon_sym__Generic] = ACTIONS(3162), + [anon_sym_asm] = ACTIONS(3164), + [anon_sym___asm__] = ACTIONS(3164), + [anon_sym___asm] = ACTIONS(3164), + [sym_number_literal] = ACTIONS(3166), + [anon_sym_L_SQUOTE] = ACTIONS(3168), + [anon_sym_u_SQUOTE] = ACTIONS(3168), + [anon_sym_U_SQUOTE] = ACTIONS(3168), + [anon_sym_u8_SQUOTE] = ACTIONS(3168), + [anon_sym_SQUOTE] = ACTIONS(3168), + [anon_sym_L_DQUOTE] = ACTIONS(3170), + [anon_sym_u_DQUOTE] = ACTIONS(3170), + [anon_sym_U_DQUOTE] = ACTIONS(3170), + [anon_sym_u8_DQUOTE] = ACTIONS(3170), + [anon_sym_DQUOTE] = ACTIONS(3170), + [sym_true] = ACTIONS(3172), + [sym_false] = ACTIONS(3172), + [anon_sym_NULL] = ACTIONS(3174), + [anon_sym_nullptr] = ACTIONS(3174), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1916), - [anon_sym_R_DQUOTE] = ACTIONS(1918), - [anon_sym_LR_DQUOTE] = ACTIONS(1918), - [anon_sym_uR_DQUOTE] = ACTIONS(1918), - [anon_sym_UR_DQUOTE] = ACTIONS(1918), - [anon_sym_u8R_DQUOTE] = ACTIONS(1918), - [anon_sym_co_await] = ACTIONS(1920), - [anon_sym_new] = ACTIONS(1922), - [anon_sym_requires] = ACTIONS(1924), - [sym_this] = ACTIONS(1910), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3184), + [anon_sym_R_DQUOTE] = ACTIONS(3186), + [anon_sym_LR_DQUOTE] = ACTIONS(3186), + [anon_sym_uR_DQUOTE] = ACTIONS(3186), + [anon_sym_UR_DQUOTE] = ACTIONS(3186), + [anon_sym_u8R_DQUOTE] = ACTIONS(3186), + [anon_sym_co_await] = ACTIONS(3188), + [anon_sym_new] = ACTIONS(3190), + [anon_sym_requires] = ACTIONS(3192), + [sym_this] = ACTIONS(3172), }, - [1210] = { - [sym_expression] = STATE(4472), - [sym__string] = STATE(4738), - [sym_conditional_expression] = STATE(4829), - [sym_assignment_expression] = STATE(4829), - [sym_pointer_expression] = STATE(3602), - [sym_unary_expression] = STATE(4829), - [sym_binary_expression] = STATE(4829), - [sym_update_expression] = STATE(4829), - [sym_cast_expression] = STATE(4829), - [sym_sizeof_expression] = STATE(4829), - [sym_alignof_expression] = STATE(4829), - [sym_offsetof_expression] = STATE(4829), - [sym_generic_expression] = STATE(4829), - [sym_subscript_expression] = STATE(3602), - [sym_call_expression] = STATE(3602), - [sym_gnu_asm_expression] = STATE(4829), - [sym_extension_expression] = STATE(4829), - [sym_field_expression] = STATE(3602), - [sym_compound_literal_expression] = STATE(4829), - [sym_parenthesized_expression] = STATE(3602), - [sym_char_literal] = STATE(4738), - [sym_concatenated_string] = STATE(4738), - [sym_string_literal] = STATE(3759), - [sym_null] = STATE(4829), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7804), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(4829), - [sym_raw_string_literal] = STATE(3759), - [sym_co_await_expression] = STATE(4829), - [sym_new_expression] = STATE(4829), - [sym_delete_expression] = STATE(4829), - [sym_requires_clause] = STATE(4829), - [sym_requires_expression] = STATE(4829), - [sym_lambda_expression] = STATE(4829), - [sym_lambda_capture_specifier] = STATE(5401), - [sym_fold_expression] = STATE(4829), - [sym_parameter_pack_expansion] = STATE(4829), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5773), - [sym_qualified_identifier] = STATE(3602), - [sym_qualified_type_identifier] = STATE(7804), - [sym_user_defined_literal] = STATE(3602), - [sym_identifier] = ACTIONS(3883), - [anon_sym_LPAREN2] = ACTIONS(3118), - [anon_sym_BANG] = ACTIONS(3120), - [anon_sym_TILDE] = ACTIONS(3120), - [anon_sym_DASH] = ACTIONS(3122), - [anon_sym_PLUS] = ACTIONS(3122), - [anon_sym_STAR] = ACTIONS(3124), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym___extension__] = ACTIONS(3885), - [anon_sym_COLON_COLON] = ACTIONS(3128), + [1270] = { + [sym_expression] = STATE(3623), + [sym__string] = STATE(3775), + [sym_conditional_expression] = STATE(3886), + [sym_assignment_expression] = STATE(3886), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(3886), + [sym_binary_expression] = STATE(3886), + [sym_update_expression] = STATE(3886), + [sym_cast_expression] = STATE(3886), + [sym_sizeof_expression] = STATE(3886), + [sym_alignof_expression] = STATE(3886), + [sym_offsetof_expression] = STATE(3886), + [sym_generic_expression] = STATE(3886), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(3886), + [sym_extension_expression] = STATE(3886), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(3886), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(3775), + [sym_concatenated_string] = STATE(3775), + [sym_string_literal] = STATE(2596), + [sym_null] = STATE(3886), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7756), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3886), + [sym_raw_string_literal] = STATE(2596), + [sym_co_await_expression] = STATE(3886), + [sym_new_expression] = STATE(3886), + [sym_delete_expression] = STATE(3886), + [sym_requires_clause] = STATE(3886), + [sym_requires_expression] = STATE(3886), + [sym_lambda_expression] = STATE(3886), + [sym_lambda_capture_specifier] = STATE(5492), + [sym_fold_expression] = STATE(3886), + [sym_parameter_pack_expansion] = STATE(3886), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(7756), + [sym_user_defined_literal] = STATE(3522), + [sym_identifier] = ACTIONS(2619), + [anon_sym_LPAREN2] = ACTIONS(1888), + [anon_sym_BANG] = ACTIONS(1890), + [anon_sym_TILDE] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1892), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(2621), + [anon_sym_COLON_COLON] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(3889), - [anon_sym_not] = ACTIONS(3122), - [anon_sym_compl] = ACTIONS(3122), - [anon_sym_DASH_DASH] = ACTIONS(3142), - [anon_sym_PLUS_PLUS] = ACTIONS(3142), - [anon_sym_sizeof] = ACTIONS(3144), - [anon_sym___alignof__] = ACTIONS(3146), - [anon_sym___alignof] = ACTIONS(3146), - [anon_sym__alignof] = ACTIONS(3146), - [anon_sym_alignof] = ACTIONS(3146), - [anon_sym__Alignof] = ACTIONS(3146), - [anon_sym_offsetof] = ACTIONS(3148), - [anon_sym__Generic] = ACTIONS(3150), - [anon_sym_asm] = ACTIONS(3152), - [anon_sym___asm__] = ACTIONS(3152), - [anon_sym___asm] = ACTIONS(3152), - [sym_number_literal] = ACTIONS(3154), - [anon_sym_L_SQUOTE] = ACTIONS(3156), - [anon_sym_u_SQUOTE] = ACTIONS(3156), - [anon_sym_U_SQUOTE] = ACTIONS(3156), - [anon_sym_u8_SQUOTE] = ACTIONS(3156), - [anon_sym_SQUOTE] = ACTIONS(3156), - [anon_sym_L_DQUOTE] = ACTIONS(3158), - [anon_sym_u_DQUOTE] = ACTIONS(3158), - [anon_sym_U_DQUOTE] = ACTIONS(3158), - [anon_sym_u8_DQUOTE] = ACTIONS(3158), - [anon_sym_DQUOTE] = ACTIONS(3158), - [sym_true] = ACTIONS(3160), - [sym_false] = ACTIONS(3160), - [anon_sym_NULL] = ACTIONS(3162), - [anon_sym_nullptr] = ACTIONS(3162), + [sym_primitive_type] = ACTIONS(2625), + [anon_sym_not] = ACTIONS(1892), + [anon_sym_compl] = ACTIONS(1892), + [anon_sym_DASH_DASH] = ACTIONS(1902), + [anon_sym_PLUS_PLUS] = ACTIONS(1902), + [anon_sym_sizeof] = ACTIONS(1904), + [anon_sym___alignof__] = ACTIONS(1906), + [anon_sym___alignof] = ACTIONS(1906), + [anon_sym__alignof] = ACTIONS(1906), + [anon_sym_alignof] = ACTIONS(1906), + [anon_sym__Alignof] = ACTIONS(1906), + [anon_sym_offsetof] = ACTIONS(1908), + [anon_sym__Generic] = ACTIONS(1910), + [anon_sym_asm] = ACTIONS(1912), + [anon_sym___asm__] = ACTIONS(1912), + [anon_sym___asm] = ACTIONS(1912), + [sym_number_literal] = ACTIONS(1914), + [anon_sym_L_SQUOTE] = ACTIONS(1916), + [anon_sym_u_SQUOTE] = ACTIONS(1916), + [anon_sym_U_SQUOTE] = ACTIONS(1916), + [anon_sym_u8_SQUOTE] = ACTIONS(1916), + [anon_sym_SQUOTE] = ACTIONS(1916), + [anon_sym_L_DQUOTE] = ACTIONS(1918), + [anon_sym_u_DQUOTE] = ACTIONS(1918), + [anon_sym_U_DQUOTE] = ACTIONS(1918), + [anon_sym_u8_DQUOTE] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1918), + [sym_true] = ACTIONS(1920), + [sym_false] = ACTIONS(1920), + [anon_sym_NULL] = ACTIONS(1922), + [anon_sym_nullptr] = ACTIONS(1922), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3172), - [anon_sym_R_DQUOTE] = ACTIONS(3174), - [anon_sym_LR_DQUOTE] = ACTIONS(3174), - [anon_sym_uR_DQUOTE] = ACTIONS(3174), - [anon_sym_UR_DQUOTE] = ACTIONS(3174), - [anon_sym_u8R_DQUOTE] = ACTIONS(3174), - [anon_sym_co_await] = ACTIONS(3176), - [anon_sym_new] = ACTIONS(3178), - [anon_sym_requires] = ACTIONS(3180), - [sym_this] = ACTIONS(3160), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1924), + [anon_sym_R_DQUOTE] = ACTIONS(1926), + [anon_sym_LR_DQUOTE] = ACTIONS(1926), + [anon_sym_uR_DQUOTE] = ACTIONS(1926), + [anon_sym_UR_DQUOTE] = ACTIONS(1926), + [anon_sym_u8R_DQUOTE] = ACTIONS(1926), + [anon_sym_co_await] = ACTIONS(1928), + [anon_sym_new] = ACTIONS(1930), + [anon_sym_requires] = ACTIONS(1932), + [sym_this] = ACTIONS(1920), }, - [1211] = { - [sym_expression] = STATE(3543), - [sym__string] = STATE(3714), - [sym_conditional_expression] = STATE(3908), - [sym_assignment_expression] = STATE(3908), - [sym_pointer_expression] = STATE(3506), - [sym_unary_expression] = STATE(3908), - [sym_binary_expression] = STATE(3908), - [sym_update_expression] = STATE(3908), - [sym_cast_expression] = STATE(3908), - [sym_sizeof_expression] = STATE(3908), - [sym_alignof_expression] = STATE(3908), - [sym_offsetof_expression] = STATE(3908), - [sym_generic_expression] = STATE(3908), - [sym_subscript_expression] = STATE(3506), - [sym_call_expression] = STATE(3506), - [sym_gnu_asm_expression] = STATE(3908), - [sym_extension_expression] = STATE(3908), - [sym_field_expression] = STATE(3506), - [sym_compound_literal_expression] = STATE(3908), - [sym_parenthesized_expression] = STATE(3506), - [sym_char_literal] = STATE(3714), - [sym_concatenated_string] = STATE(3714), - [sym_string_literal] = STATE(2566), - [sym_null] = STATE(3908), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7868), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3908), - [sym_raw_string_literal] = STATE(2566), - [sym_co_await_expression] = STATE(3908), - [sym_new_expression] = STATE(3908), - [sym_delete_expression] = STATE(3908), - [sym_requires_clause] = STATE(3908), - [sym_requires_expression] = STATE(3908), - [sym_lambda_expression] = STATE(3908), - [sym_lambda_capture_specifier] = STATE(5415), - [sym_fold_expression] = STATE(3908), - [sym_parameter_pack_expansion] = STATE(3908), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3506), - [sym_qualified_type_identifier] = STATE(7868), - [sym_user_defined_literal] = STATE(3506), - [sym_identifier] = ACTIONS(2605), - [anon_sym_LPAREN2] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1870), - [anon_sym_TILDE] = ACTIONS(1870), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_PLUS] = ACTIONS(1872), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(2607), - [anon_sym_COLON_COLON] = ACTIONS(1880), - [anon_sym_LBRACK] = ACTIONS(4897), - [sym_primitive_type] = ACTIONS(2611), - [anon_sym_not] = ACTIONS(1872), - [anon_sym_compl] = ACTIONS(1872), - [anon_sym_DASH_DASH] = ACTIONS(1892), - [anon_sym_PLUS_PLUS] = ACTIONS(1892), - [anon_sym_sizeof] = ACTIONS(1894), - [anon_sym___alignof__] = ACTIONS(1896), - [anon_sym___alignof] = ACTIONS(1896), - [anon_sym__alignof] = ACTIONS(1896), - [anon_sym_alignof] = ACTIONS(1896), - [anon_sym__Alignof] = ACTIONS(1896), - [anon_sym_offsetof] = ACTIONS(1898), - [anon_sym__Generic] = ACTIONS(1900), - [anon_sym_asm] = ACTIONS(1902), - [anon_sym___asm__] = ACTIONS(1902), - [anon_sym___asm] = ACTIONS(1902), - [sym_number_literal] = ACTIONS(1904), - [anon_sym_L_SQUOTE] = ACTIONS(1906), - [anon_sym_u_SQUOTE] = ACTIONS(1906), - [anon_sym_U_SQUOTE] = ACTIONS(1906), - [anon_sym_u8_SQUOTE] = ACTIONS(1906), - [anon_sym_SQUOTE] = ACTIONS(1906), - [anon_sym_L_DQUOTE] = ACTIONS(1908), - [anon_sym_u_DQUOTE] = ACTIONS(1908), - [anon_sym_U_DQUOTE] = ACTIONS(1908), - [anon_sym_u8_DQUOTE] = ACTIONS(1908), - [anon_sym_DQUOTE] = ACTIONS(1908), - [sym_true] = ACTIONS(1910), - [sym_false] = ACTIONS(1910), - [anon_sym_NULL] = ACTIONS(1912), - [anon_sym_nullptr] = ACTIONS(1912), + [1271] = { + [sym_expression] = STATE(4606), + [sym__string] = STATE(4825), + [sym_conditional_expression] = STATE(4856), + [sym_assignment_expression] = STATE(4856), + [sym_pointer_expression] = STATE(3701), + [sym_unary_expression] = STATE(4856), + [sym_binary_expression] = STATE(4856), + [sym_update_expression] = STATE(4856), + [sym_cast_expression] = STATE(4856), + [sym_sizeof_expression] = STATE(4856), + [sym_alignof_expression] = STATE(4856), + [sym_offsetof_expression] = STATE(4856), + [sym_generic_expression] = STATE(4856), + [sym_subscript_expression] = STATE(3701), + [sym_call_expression] = STATE(3701), + [sym_gnu_asm_expression] = STATE(4856), + [sym_extension_expression] = STATE(4856), + [sym_field_expression] = STATE(3701), + [sym_compound_literal_expression] = STATE(4856), + [sym_parenthesized_expression] = STATE(3701), + [sym_char_literal] = STATE(4825), + [sym_concatenated_string] = STATE(4825), + [sym_string_literal] = STATE(3812), + [sym_null] = STATE(4856), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7816), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(4856), + [sym_raw_string_literal] = STATE(3812), + [sym_co_await_expression] = STATE(4856), + [sym_new_expression] = STATE(4856), + [sym_delete_expression] = STATE(4856), + [sym_requires_clause] = STATE(4856), + [sym_requires_expression] = STATE(4856), + [sym_lambda_expression] = STATE(4856), + [sym_lambda_capture_specifier] = STATE(5489), + [sym_fold_expression] = STATE(4856), + [sym_parameter_pack_expansion] = STATE(4856), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5769), + [sym_qualified_identifier] = STATE(3701), + [sym_qualified_type_identifier] = STATE(7816), + [sym_user_defined_literal] = STATE(3701), + [sym_identifier] = ACTIONS(3875), + [anon_sym_LPAREN2] = ACTIONS(3130), + [anon_sym_BANG] = ACTIONS(3132), + [anon_sym_TILDE] = ACTIONS(3132), + [anon_sym_DASH] = ACTIONS(3134), + [anon_sym_PLUS] = ACTIONS(3134), + [anon_sym_STAR] = ACTIONS(3136), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym___extension__] = ACTIONS(3877), + [anon_sym_COLON_COLON] = ACTIONS(3140), + [anon_sym_LBRACK] = ACTIONS(4913), + [sym_primitive_type] = ACTIONS(3881), + [anon_sym_not] = ACTIONS(3134), + [anon_sym_compl] = ACTIONS(3134), + [anon_sym_DASH_DASH] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_sizeof] = ACTIONS(3156), + [anon_sym___alignof__] = ACTIONS(3158), + [anon_sym___alignof] = ACTIONS(3158), + [anon_sym__alignof] = ACTIONS(3158), + [anon_sym_alignof] = ACTIONS(3158), + [anon_sym__Alignof] = ACTIONS(3158), + [anon_sym_offsetof] = ACTIONS(3160), + [anon_sym__Generic] = ACTIONS(3162), + [anon_sym_asm] = ACTIONS(3164), + [anon_sym___asm__] = ACTIONS(3164), + [anon_sym___asm] = ACTIONS(3164), + [sym_number_literal] = ACTIONS(3166), + [anon_sym_L_SQUOTE] = ACTIONS(3168), + [anon_sym_u_SQUOTE] = ACTIONS(3168), + [anon_sym_U_SQUOTE] = ACTIONS(3168), + [anon_sym_u8_SQUOTE] = ACTIONS(3168), + [anon_sym_SQUOTE] = ACTIONS(3168), + [anon_sym_L_DQUOTE] = ACTIONS(3170), + [anon_sym_u_DQUOTE] = ACTIONS(3170), + [anon_sym_U_DQUOTE] = ACTIONS(3170), + [anon_sym_u8_DQUOTE] = ACTIONS(3170), + [anon_sym_DQUOTE] = ACTIONS(3170), + [sym_true] = ACTIONS(3172), + [sym_false] = ACTIONS(3172), + [anon_sym_NULL] = ACTIONS(3174), + [anon_sym_nullptr] = ACTIONS(3174), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1916), - [anon_sym_R_DQUOTE] = ACTIONS(1918), - [anon_sym_LR_DQUOTE] = ACTIONS(1918), - [anon_sym_uR_DQUOTE] = ACTIONS(1918), - [anon_sym_UR_DQUOTE] = ACTIONS(1918), - [anon_sym_u8R_DQUOTE] = ACTIONS(1918), - [anon_sym_co_await] = ACTIONS(1920), - [anon_sym_new] = ACTIONS(1922), - [anon_sym_requires] = ACTIONS(1924), - [sym_this] = ACTIONS(1910), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3184), + [anon_sym_R_DQUOTE] = ACTIONS(3186), + [anon_sym_LR_DQUOTE] = ACTIONS(3186), + [anon_sym_uR_DQUOTE] = ACTIONS(3186), + [anon_sym_UR_DQUOTE] = ACTIONS(3186), + [anon_sym_u8R_DQUOTE] = ACTIONS(3186), + [anon_sym_co_await] = ACTIONS(3188), + [anon_sym_new] = ACTIONS(3190), + [anon_sym_requires] = ACTIONS(3192), + [sym_this] = ACTIONS(3172), }, - [1212] = { - [sym_expression] = STATE(4397), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1272] = { + [sym_expression] = STATE(4704), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -200776,7 +207777,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -200788,62 +207789,1162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1213] = { - [sym_expression] = STATE(4764), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1273] = { + [sym_expression] = STATE(3706), + [sym__string] = STATE(3775), + [sym_conditional_expression] = STATE(3886), + [sym_assignment_expression] = STATE(3886), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(3886), + [sym_binary_expression] = STATE(3886), + [sym_update_expression] = STATE(3886), + [sym_cast_expression] = STATE(3886), + [sym_sizeof_expression] = STATE(3886), + [sym_alignof_expression] = STATE(3886), + [sym_offsetof_expression] = STATE(3886), + [sym_generic_expression] = STATE(3886), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(3886), + [sym_extension_expression] = STATE(3886), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(3886), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(3775), + [sym_concatenated_string] = STATE(3775), + [sym_string_literal] = STATE(2596), + [sym_null] = STATE(3886), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7756), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3886), + [sym_raw_string_literal] = STATE(2596), + [sym_co_await_expression] = STATE(3886), + [sym_new_expression] = STATE(3886), + [sym_delete_expression] = STATE(3886), + [sym_requires_clause] = STATE(3886), + [sym_requires_expression] = STATE(3886), + [sym_lambda_expression] = STATE(3886), + [sym_lambda_capture_specifier] = STATE(5492), + [sym_fold_expression] = STATE(3886), + [sym_parameter_pack_expansion] = STATE(3886), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(7756), + [sym_user_defined_literal] = STATE(3522), + [sym_identifier] = ACTIONS(2619), + [anon_sym_LPAREN2] = ACTIONS(1888), + [anon_sym_BANG] = ACTIONS(1890), + [anon_sym_TILDE] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1892), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(2621), + [anon_sym_COLON_COLON] = ACTIONS(1898), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2625), + [anon_sym_not] = ACTIONS(1892), + [anon_sym_compl] = ACTIONS(1892), + [anon_sym_DASH_DASH] = ACTIONS(1902), + [anon_sym_PLUS_PLUS] = ACTIONS(1902), + [anon_sym_sizeof] = ACTIONS(1904), + [anon_sym___alignof__] = ACTIONS(1906), + [anon_sym___alignof] = ACTIONS(1906), + [anon_sym__alignof] = ACTIONS(1906), + [anon_sym_alignof] = ACTIONS(1906), + [anon_sym__Alignof] = ACTIONS(1906), + [anon_sym_offsetof] = ACTIONS(1908), + [anon_sym__Generic] = ACTIONS(1910), + [anon_sym_asm] = ACTIONS(1912), + [anon_sym___asm__] = ACTIONS(1912), + [anon_sym___asm] = ACTIONS(1912), + [sym_number_literal] = ACTIONS(1914), + [anon_sym_L_SQUOTE] = ACTIONS(1916), + [anon_sym_u_SQUOTE] = ACTIONS(1916), + [anon_sym_U_SQUOTE] = ACTIONS(1916), + [anon_sym_u8_SQUOTE] = ACTIONS(1916), + [anon_sym_SQUOTE] = ACTIONS(1916), + [anon_sym_L_DQUOTE] = ACTIONS(1918), + [anon_sym_u_DQUOTE] = ACTIONS(1918), + [anon_sym_U_DQUOTE] = ACTIONS(1918), + [anon_sym_u8_DQUOTE] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1918), + [sym_true] = ACTIONS(1920), + [sym_false] = ACTIONS(1920), + [anon_sym_NULL] = ACTIONS(1922), + [anon_sym_nullptr] = ACTIONS(1922), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1924), + [anon_sym_R_DQUOTE] = ACTIONS(1926), + [anon_sym_LR_DQUOTE] = ACTIONS(1926), + [anon_sym_uR_DQUOTE] = ACTIONS(1926), + [anon_sym_UR_DQUOTE] = ACTIONS(1926), + [anon_sym_u8R_DQUOTE] = ACTIONS(1926), + [anon_sym_co_await] = ACTIONS(1928), + [anon_sym_new] = ACTIONS(1930), + [anon_sym_requires] = ACTIONS(1932), + [sym_this] = ACTIONS(1920), + }, + [1274] = { + [sym_expression] = STATE(3707), + [sym__string] = STATE(3775), + [sym_conditional_expression] = STATE(3886), + [sym_assignment_expression] = STATE(3886), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(3886), + [sym_binary_expression] = STATE(3886), + [sym_update_expression] = STATE(3886), + [sym_cast_expression] = STATE(3886), + [sym_sizeof_expression] = STATE(3886), + [sym_alignof_expression] = STATE(3886), + [sym_offsetof_expression] = STATE(3886), + [sym_generic_expression] = STATE(3886), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(3886), + [sym_extension_expression] = STATE(3886), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(3886), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(3775), + [sym_concatenated_string] = STATE(3775), + [sym_string_literal] = STATE(2596), + [sym_null] = STATE(3886), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7756), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3886), + [sym_raw_string_literal] = STATE(2596), + [sym_co_await_expression] = STATE(3886), + [sym_new_expression] = STATE(3886), + [sym_delete_expression] = STATE(3886), + [sym_requires_clause] = STATE(3886), + [sym_requires_expression] = STATE(3886), + [sym_lambda_expression] = STATE(3886), + [sym_lambda_capture_specifier] = STATE(5492), + [sym_fold_expression] = STATE(3886), + [sym_parameter_pack_expansion] = STATE(3886), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(7756), + [sym_user_defined_literal] = STATE(3522), + [sym_identifier] = ACTIONS(2619), + [anon_sym_LPAREN2] = ACTIONS(1888), + [anon_sym_BANG] = ACTIONS(1890), + [anon_sym_TILDE] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1892), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(2621), + [anon_sym_COLON_COLON] = ACTIONS(1898), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2625), + [anon_sym_not] = ACTIONS(1892), + [anon_sym_compl] = ACTIONS(1892), + [anon_sym_DASH_DASH] = ACTIONS(1902), + [anon_sym_PLUS_PLUS] = ACTIONS(1902), + [anon_sym_sizeof] = ACTIONS(1904), + [anon_sym___alignof__] = ACTIONS(1906), + [anon_sym___alignof] = ACTIONS(1906), + [anon_sym__alignof] = ACTIONS(1906), + [anon_sym_alignof] = ACTIONS(1906), + [anon_sym__Alignof] = ACTIONS(1906), + [anon_sym_offsetof] = ACTIONS(1908), + [anon_sym__Generic] = ACTIONS(1910), + [anon_sym_asm] = ACTIONS(1912), + [anon_sym___asm__] = ACTIONS(1912), + [anon_sym___asm] = ACTIONS(1912), + [sym_number_literal] = ACTIONS(1914), + [anon_sym_L_SQUOTE] = ACTIONS(1916), + [anon_sym_u_SQUOTE] = ACTIONS(1916), + [anon_sym_U_SQUOTE] = ACTIONS(1916), + [anon_sym_u8_SQUOTE] = ACTIONS(1916), + [anon_sym_SQUOTE] = ACTIONS(1916), + [anon_sym_L_DQUOTE] = ACTIONS(1918), + [anon_sym_u_DQUOTE] = ACTIONS(1918), + [anon_sym_U_DQUOTE] = ACTIONS(1918), + [anon_sym_u8_DQUOTE] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1918), + [sym_true] = ACTIONS(1920), + [sym_false] = ACTIONS(1920), + [anon_sym_NULL] = ACTIONS(1922), + [anon_sym_nullptr] = ACTIONS(1922), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1924), + [anon_sym_R_DQUOTE] = ACTIONS(1926), + [anon_sym_LR_DQUOTE] = ACTIONS(1926), + [anon_sym_uR_DQUOTE] = ACTIONS(1926), + [anon_sym_UR_DQUOTE] = ACTIONS(1926), + [anon_sym_u8R_DQUOTE] = ACTIONS(1926), + [anon_sym_co_await] = ACTIONS(1928), + [anon_sym_new] = ACTIONS(1930), + [anon_sym_requires] = ACTIONS(1932), + [sym_this] = ACTIONS(1920), + }, + [1275] = { + [sym_expression] = STATE(3593), + [sym__string] = STATE(3775), + [sym_conditional_expression] = STATE(3886), + [sym_assignment_expression] = STATE(3886), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(3886), + [sym_binary_expression] = STATE(3886), + [sym_update_expression] = STATE(3886), + [sym_cast_expression] = STATE(3886), + [sym_sizeof_expression] = STATE(3886), + [sym_alignof_expression] = STATE(3886), + [sym_offsetof_expression] = STATE(3886), + [sym_generic_expression] = STATE(3886), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(3886), + [sym_extension_expression] = STATE(3886), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(3886), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(3775), + [sym_concatenated_string] = STATE(3775), + [sym_string_literal] = STATE(2596), + [sym_null] = STATE(3886), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7756), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3886), + [sym_raw_string_literal] = STATE(2596), + [sym_co_await_expression] = STATE(3886), + [sym_new_expression] = STATE(3886), + [sym_delete_expression] = STATE(3886), + [sym_requires_clause] = STATE(3886), + [sym_requires_expression] = STATE(3886), + [sym_lambda_expression] = STATE(3886), + [sym_lambda_capture_specifier] = STATE(5492), + [sym_fold_expression] = STATE(3886), + [sym_parameter_pack_expansion] = STATE(3886), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(7756), + [sym_user_defined_literal] = STATE(3522), + [sym_identifier] = ACTIONS(2619), + [anon_sym_LPAREN2] = ACTIONS(1888), + [anon_sym_BANG] = ACTIONS(1890), + [anon_sym_TILDE] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1892), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(2621), + [anon_sym_COLON_COLON] = ACTIONS(1898), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2625), + [anon_sym_not] = ACTIONS(1892), + [anon_sym_compl] = ACTIONS(1892), + [anon_sym_DASH_DASH] = ACTIONS(1902), + [anon_sym_PLUS_PLUS] = ACTIONS(1902), + [anon_sym_sizeof] = ACTIONS(1904), + [anon_sym___alignof__] = ACTIONS(1906), + [anon_sym___alignof] = ACTIONS(1906), + [anon_sym__alignof] = ACTIONS(1906), + [anon_sym_alignof] = ACTIONS(1906), + [anon_sym__Alignof] = ACTIONS(1906), + [anon_sym_offsetof] = ACTIONS(1908), + [anon_sym__Generic] = ACTIONS(1910), + [anon_sym_asm] = ACTIONS(1912), + [anon_sym___asm__] = ACTIONS(1912), + [anon_sym___asm] = ACTIONS(1912), + [sym_number_literal] = ACTIONS(1914), + [anon_sym_L_SQUOTE] = ACTIONS(1916), + [anon_sym_u_SQUOTE] = ACTIONS(1916), + [anon_sym_U_SQUOTE] = ACTIONS(1916), + [anon_sym_u8_SQUOTE] = ACTIONS(1916), + [anon_sym_SQUOTE] = ACTIONS(1916), + [anon_sym_L_DQUOTE] = ACTIONS(1918), + [anon_sym_u_DQUOTE] = ACTIONS(1918), + [anon_sym_U_DQUOTE] = ACTIONS(1918), + [anon_sym_u8_DQUOTE] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1918), + [sym_true] = ACTIONS(1920), + [sym_false] = ACTIONS(1920), + [anon_sym_NULL] = ACTIONS(1922), + [anon_sym_nullptr] = ACTIONS(1922), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1924), + [anon_sym_R_DQUOTE] = ACTIONS(1926), + [anon_sym_LR_DQUOTE] = ACTIONS(1926), + [anon_sym_uR_DQUOTE] = ACTIONS(1926), + [anon_sym_UR_DQUOTE] = ACTIONS(1926), + [anon_sym_u8R_DQUOTE] = ACTIONS(1926), + [anon_sym_co_await] = ACTIONS(1928), + [anon_sym_new] = ACTIONS(1930), + [anon_sym_requires] = ACTIONS(1932), + [sym_this] = ACTIONS(1920), + }, + [1276] = { + [sym_expression] = STATE(3582), + [sym__string] = STATE(3775), + [sym_conditional_expression] = STATE(3886), + [sym_assignment_expression] = STATE(3886), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(3886), + [sym_binary_expression] = STATE(3886), + [sym_update_expression] = STATE(3886), + [sym_cast_expression] = STATE(3886), + [sym_sizeof_expression] = STATE(3886), + [sym_alignof_expression] = STATE(3886), + [sym_offsetof_expression] = STATE(3886), + [sym_generic_expression] = STATE(3886), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(3886), + [sym_extension_expression] = STATE(3886), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(3886), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(3775), + [sym_concatenated_string] = STATE(3775), + [sym_string_literal] = STATE(2596), + [sym_null] = STATE(3886), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7756), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3886), + [sym_raw_string_literal] = STATE(2596), + [sym_co_await_expression] = STATE(3886), + [sym_new_expression] = STATE(3886), + [sym_delete_expression] = STATE(3886), + [sym_requires_clause] = STATE(3886), + [sym_requires_expression] = STATE(3886), + [sym_lambda_expression] = STATE(3886), + [sym_lambda_capture_specifier] = STATE(5492), + [sym_fold_expression] = STATE(3886), + [sym_parameter_pack_expansion] = STATE(3886), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(7756), + [sym_user_defined_literal] = STATE(3522), + [sym_identifier] = ACTIONS(2619), + [anon_sym_LPAREN2] = ACTIONS(1888), + [anon_sym_BANG] = ACTIONS(1890), + [anon_sym_TILDE] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1892), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(2621), + [anon_sym_COLON_COLON] = ACTIONS(1898), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2625), + [anon_sym_not] = ACTIONS(1892), + [anon_sym_compl] = ACTIONS(1892), + [anon_sym_DASH_DASH] = ACTIONS(1902), + [anon_sym_PLUS_PLUS] = ACTIONS(1902), + [anon_sym_sizeof] = ACTIONS(1904), + [anon_sym___alignof__] = ACTIONS(1906), + [anon_sym___alignof] = ACTIONS(1906), + [anon_sym__alignof] = ACTIONS(1906), + [anon_sym_alignof] = ACTIONS(1906), + [anon_sym__Alignof] = ACTIONS(1906), + [anon_sym_offsetof] = ACTIONS(1908), + [anon_sym__Generic] = ACTIONS(1910), + [anon_sym_asm] = ACTIONS(1912), + [anon_sym___asm__] = ACTIONS(1912), + [anon_sym___asm] = ACTIONS(1912), + [sym_number_literal] = ACTIONS(1914), + [anon_sym_L_SQUOTE] = ACTIONS(1916), + [anon_sym_u_SQUOTE] = ACTIONS(1916), + [anon_sym_U_SQUOTE] = ACTIONS(1916), + [anon_sym_u8_SQUOTE] = ACTIONS(1916), + [anon_sym_SQUOTE] = ACTIONS(1916), + [anon_sym_L_DQUOTE] = ACTIONS(1918), + [anon_sym_u_DQUOTE] = ACTIONS(1918), + [anon_sym_U_DQUOTE] = ACTIONS(1918), + [anon_sym_u8_DQUOTE] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1918), + [sym_true] = ACTIONS(1920), + [sym_false] = ACTIONS(1920), + [anon_sym_NULL] = ACTIONS(1922), + [anon_sym_nullptr] = ACTIONS(1922), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1924), + [anon_sym_R_DQUOTE] = ACTIONS(1926), + [anon_sym_LR_DQUOTE] = ACTIONS(1926), + [anon_sym_uR_DQUOTE] = ACTIONS(1926), + [anon_sym_UR_DQUOTE] = ACTIONS(1926), + [anon_sym_u8R_DQUOTE] = ACTIONS(1926), + [anon_sym_co_await] = ACTIONS(1928), + [anon_sym_new] = ACTIONS(1930), + [anon_sym_requires] = ACTIONS(1932), + [sym_this] = ACTIONS(1920), + }, + [1277] = { + [sym_expression] = STATE(3607), + [sym__string] = STATE(3775), + [sym_conditional_expression] = STATE(3886), + [sym_assignment_expression] = STATE(3886), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(3886), + [sym_binary_expression] = STATE(3886), + [sym_update_expression] = STATE(3886), + [sym_cast_expression] = STATE(3886), + [sym_sizeof_expression] = STATE(3886), + [sym_alignof_expression] = STATE(3886), + [sym_offsetof_expression] = STATE(3886), + [sym_generic_expression] = STATE(3886), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(3886), + [sym_extension_expression] = STATE(3886), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(3886), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(3775), + [sym_concatenated_string] = STATE(3775), + [sym_string_literal] = STATE(2596), + [sym_null] = STATE(3886), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7756), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3886), + [sym_raw_string_literal] = STATE(2596), + [sym_co_await_expression] = STATE(3886), + [sym_new_expression] = STATE(3886), + [sym_delete_expression] = STATE(3886), + [sym_requires_clause] = STATE(3886), + [sym_requires_expression] = STATE(3886), + [sym_lambda_expression] = STATE(3886), + [sym_lambda_capture_specifier] = STATE(5492), + [sym_fold_expression] = STATE(3886), + [sym_parameter_pack_expansion] = STATE(3886), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(7756), + [sym_user_defined_literal] = STATE(3522), + [sym_identifier] = ACTIONS(2619), + [anon_sym_LPAREN2] = ACTIONS(1888), + [anon_sym_BANG] = ACTIONS(1890), + [anon_sym_TILDE] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1892), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(2621), + [anon_sym_COLON_COLON] = ACTIONS(1898), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2625), + [anon_sym_not] = ACTIONS(1892), + [anon_sym_compl] = ACTIONS(1892), + [anon_sym_DASH_DASH] = ACTIONS(1902), + [anon_sym_PLUS_PLUS] = ACTIONS(1902), + [anon_sym_sizeof] = ACTIONS(1904), + [anon_sym___alignof__] = ACTIONS(1906), + [anon_sym___alignof] = ACTIONS(1906), + [anon_sym__alignof] = ACTIONS(1906), + [anon_sym_alignof] = ACTIONS(1906), + [anon_sym__Alignof] = ACTIONS(1906), + [anon_sym_offsetof] = ACTIONS(1908), + [anon_sym__Generic] = ACTIONS(1910), + [anon_sym_asm] = ACTIONS(1912), + [anon_sym___asm__] = ACTIONS(1912), + [anon_sym___asm] = ACTIONS(1912), + [sym_number_literal] = ACTIONS(1914), + [anon_sym_L_SQUOTE] = ACTIONS(1916), + [anon_sym_u_SQUOTE] = ACTIONS(1916), + [anon_sym_U_SQUOTE] = ACTIONS(1916), + [anon_sym_u8_SQUOTE] = ACTIONS(1916), + [anon_sym_SQUOTE] = ACTIONS(1916), + [anon_sym_L_DQUOTE] = ACTIONS(1918), + [anon_sym_u_DQUOTE] = ACTIONS(1918), + [anon_sym_U_DQUOTE] = ACTIONS(1918), + [anon_sym_u8_DQUOTE] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1918), + [sym_true] = ACTIONS(1920), + [sym_false] = ACTIONS(1920), + [anon_sym_NULL] = ACTIONS(1922), + [anon_sym_nullptr] = ACTIONS(1922), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1924), + [anon_sym_R_DQUOTE] = ACTIONS(1926), + [anon_sym_LR_DQUOTE] = ACTIONS(1926), + [anon_sym_uR_DQUOTE] = ACTIONS(1926), + [anon_sym_UR_DQUOTE] = ACTIONS(1926), + [anon_sym_u8R_DQUOTE] = ACTIONS(1926), + [anon_sym_co_await] = ACTIONS(1928), + [anon_sym_new] = ACTIONS(1930), + [anon_sym_requires] = ACTIONS(1932), + [sym_this] = ACTIONS(1920), + }, + [1278] = { + [sym_expression] = STATE(3609), + [sym__string] = STATE(3775), + [sym_conditional_expression] = STATE(3886), + [sym_assignment_expression] = STATE(3886), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(3886), + [sym_binary_expression] = STATE(3886), + [sym_update_expression] = STATE(3886), + [sym_cast_expression] = STATE(3886), + [sym_sizeof_expression] = STATE(3886), + [sym_alignof_expression] = STATE(3886), + [sym_offsetof_expression] = STATE(3886), + [sym_generic_expression] = STATE(3886), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(3886), + [sym_extension_expression] = STATE(3886), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(3886), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(3775), + [sym_concatenated_string] = STATE(3775), + [sym_string_literal] = STATE(2596), + [sym_null] = STATE(3886), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7756), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3886), + [sym_raw_string_literal] = STATE(2596), + [sym_co_await_expression] = STATE(3886), + [sym_new_expression] = STATE(3886), + [sym_delete_expression] = STATE(3886), + [sym_requires_clause] = STATE(3886), + [sym_requires_expression] = STATE(3886), + [sym_lambda_expression] = STATE(3886), + [sym_lambda_capture_specifier] = STATE(5492), + [sym_fold_expression] = STATE(3886), + [sym_parameter_pack_expansion] = STATE(3886), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(7756), + [sym_user_defined_literal] = STATE(3522), + [sym_identifier] = ACTIONS(2619), + [anon_sym_LPAREN2] = ACTIONS(1888), + [anon_sym_BANG] = ACTIONS(1890), + [anon_sym_TILDE] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1892), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(2621), + [anon_sym_COLON_COLON] = ACTIONS(1898), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2625), + [anon_sym_not] = ACTIONS(1892), + [anon_sym_compl] = ACTIONS(1892), + [anon_sym_DASH_DASH] = ACTIONS(1902), + [anon_sym_PLUS_PLUS] = ACTIONS(1902), + [anon_sym_sizeof] = ACTIONS(1904), + [anon_sym___alignof__] = ACTIONS(1906), + [anon_sym___alignof] = ACTIONS(1906), + [anon_sym__alignof] = ACTIONS(1906), + [anon_sym_alignof] = ACTIONS(1906), + [anon_sym__Alignof] = ACTIONS(1906), + [anon_sym_offsetof] = ACTIONS(1908), + [anon_sym__Generic] = ACTIONS(1910), + [anon_sym_asm] = ACTIONS(1912), + [anon_sym___asm__] = ACTIONS(1912), + [anon_sym___asm] = ACTIONS(1912), + [sym_number_literal] = ACTIONS(1914), + [anon_sym_L_SQUOTE] = ACTIONS(1916), + [anon_sym_u_SQUOTE] = ACTIONS(1916), + [anon_sym_U_SQUOTE] = ACTIONS(1916), + [anon_sym_u8_SQUOTE] = ACTIONS(1916), + [anon_sym_SQUOTE] = ACTIONS(1916), + [anon_sym_L_DQUOTE] = ACTIONS(1918), + [anon_sym_u_DQUOTE] = ACTIONS(1918), + [anon_sym_U_DQUOTE] = ACTIONS(1918), + [anon_sym_u8_DQUOTE] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1918), + [sym_true] = ACTIONS(1920), + [sym_false] = ACTIONS(1920), + [anon_sym_NULL] = ACTIONS(1922), + [anon_sym_nullptr] = ACTIONS(1922), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1924), + [anon_sym_R_DQUOTE] = ACTIONS(1926), + [anon_sym_LR_DQUOTE] = ACTIONS(1926), + [anon_sym_uR_DQUOTE] = ACTIONS(1926), + [anon_sym_UR_DQUOTE] = ACTIONS(1926), + [anon_sym_u8R_DQUOTE] = ACTIONS(1926), + [anon_sym_co_await] = ACTIONS(1928), + [anon_sym_new] = ACTIONS(1930), + [anon_sym_requires] = ACTIONS(1932), + [sym_this] = ACTIONS(1920), + }, + [1279] = { + [sym_expression] = STATE(3611), + [sym__string] = STATE(3775), + [sym_conditional_expression] = STATE(3886), + [sym_assignment_expression] = STATE(3886), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(3886), + [sym_binary_expression] = STATE(3886), + [sym_update_expression] = STATE(3886), + [sym_cast_expression] = STATE(3886), + [sym_sizeof_expression] = STATE(3886), + [sym_alignof_expression] = STATE(3886), + [sym_offsetof_expression] = STATE(3886), + [sym_generic_expression] = STATE(3886), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(3886), + [sym_extension_expression] = STATE(3886), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(3886), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(3775), + [sym_concatenated_string] = STATE(3775), + [sym_string_literal] = STATE(2596), + [sym_null] = STATE(3886), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7756), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3886), + [sym_raw_string_literal] = STATE(2596), + [sym_co_await_expression] = STATE(3886), + [sym_new_expression] = STATE(3886), + [sym_delete_expression] = STATE(3886), + [sym_requires_clause] = STATE(3886), + [sym_requires_expression] = STATE(3886), + [sym_lambda_expression] = STATE(3886), + [sym_lambda_capture_specifier] = STATE(5492), + [sym_fold_expression] = STATE(3886), + [sym_parameter_pack_expansion] = STATE(3886), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(7756), + [sym_user_defined_literal] = STATE(3522), + [sym_identifier] = ACTIONS(2619), + [anon_sym_LPAREN2] = ACTIONS(1888), + [anon_sym_BANG] = ACTIONS(1890), + [anon_sym_TILDE] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1892), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(2621), + [anon_sym_COLON_COLON] = ACTIONS(1898), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2625), + [anon_sym_not] = ACTIONS(1892), + [anon_sym_compl] = ACTIONS(1892), + [anon_sym_DASH_DASH] = ACTIONS(1902), + [anon_sym_PLUS_PLUS] = ACTIONS(1902), + [anon_sym_sizeof] = ACTIONS(1904), + [anon_sym___alignof__] = ACTIONS(1906), + [anon_sym___alignof] = ACTIONS(1906), + [anon_sym__alignof] = ACTIONS(1906), + [anon_sym_alignof] = ACTIONS(1906), + [anon_sym__Alignof] = ACTIONS(1906), + [anon_sym_offsetof] = ACTIONS(1908), + [anon_sym__Generic] = ACTIONS(1910), + [anon_sym_asm] = ACTIONS(1912), + [anon_sym___asm__] = ACTIONS(1912), + [anon_sym___asm] = ACTIONS(1912), + [sym_number_literal] = ACTIONS(1914), + [anon_sym_L_SQUOTE] = ACTIONS(1916), + [anon_sym_u_SQUOTE] = ACTIONS(1916), + [anon_sym_U_SQUOTE] = ACTIONS(1916), + [anon_sym_u8_SQUOTE] = ACTIONS(1916), + [anon_sym_SQUOTE] = ACTIONS(1916), + [anon_sym_L_DQUOTE] = ACTIONS(1918), + [anon_sym_u_DQUOTE] = ACTIONS(1918), + [anon_sym_U_DQUOTE] = ACTIONS(1918), + [anon_sym_u8_DQUOTE] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1918), + [sym_true] = ACTIONS(1920), + [sym_false] = ACTIONS(1920), + [anon_sym_NULL] = ACTIONS(1922), + [anon_sym_nullptr] = ACTIONS(1922), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1924), + [anon_sym_R_DQUOTE] = ACTIONS(1926), + [anon_sym_LR_DQUOTE] = ACTIONS(1926), + [anon_sym_uR_DQUOTE] = ACTIONS(1926), + [anon_sym_UR_DQUOTE] = ACTIONS(1926), + [anon_sym_u8R_DQUOTE] = ACTIONS(1926), + [anon_sym_co_await] = ACTIONS(1928), + [anon_sym_new] = ACTIONS(1930), + [anon_sym_requires] = ACTIONS(1932), + [sym_this] = ACTIONS(1920), + }, + [1280] = { + [sym_expression] = STATE(3613), + [sym__string] = STATE(3775), + [sym_conditional_expression] = STATE(3886), + [sym_assignment_expression] = STATE(3886), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(3886), + [sym_binary_expression] = STATE(3886), + [sym_update_expression] = STATE(3886), + [sym_cast_expression] = STATE(3886), + [sym_sizeof_expression] = STATE(3886), + [sym_alignof_expression] = STATE(3886), + [sym_offsetof_expression] = STATE(3886), + [sym_generic_expression] = STATE(3886), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(3886), + [sym_extension_expression] = STATE(3886), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(3886), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(3775), + [sym_concatenated_string] = STATE(3775), + [sym_string_literal] = STATE(2596), + [sym_null] = STATE(3886), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7756), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3886), + [sym_raw_string_literal] = STATE(2596), + [sym_co_await_expression] = STATE(3886), + [sym_new_expression] = STATE(3886), + [sym_delete_expression] = STATE(3886), + [sym_requires_clause] = STATE(3886), + [sym_requires_expression] = STATE(3886), + [sym_lambda_expression] = STATE(3886), + [sym_lambda_capture_specifier] = STATE(5492), + [sym_fold_expression] = STATE(3886), + [sym_parameter_pack_expansion] = STATE(3886), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(7756), + [sym_user_defined_literal] = STATE(3522), + [sym_identifier] = ACTIONS(2619), + [anon_sym_LPAREN2] = ACTIONS(1888), + [anon_sym_BANG] = ACTIONS(1890), + [anon_sym_TILDE] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1892), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(2621), + [anon_sym_COLON_COLON] = ACTIONS(1898), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2625), + [anon_sym_not] = ACTIONS(1892), + [anon_sym_compl] = ACTIONS(1892), + [anon_sym_DASH_DASH] = ACTIONS(1902), + [anon_sym_PLUS_PLUS] = ACTIONS(1902), + [anon_sym_sizeof] = ACTIONS(1904), + [anon_sym___alignof__] = ACTIONS(1906), + [anon_sym___alignof] = ACTIONS(1906), + [anon_sym__alignof] = ACTIONS(1906), + [anon_sym_alignof] = ACTIONS(1906), + [anon_sym__Alignof] = ACTIONS(1906), + [anon_sym_offsetof] = ACTIONS(1908), + [anon_sym__Generic] = ACTIONS(1910), + [anon_sym_asm] = ACTIONS(1912), + [anon_sym___asm__] = ACTIONS(1912), + [anon_sym___asm] = ACTIONS(1912), + [sym_number_literal] = ACTIONS(1914), + [anon_sym_L_SQUOTE] = ACTIONS(1916), + [anon_sym_u_SQUOTE] = ACTIONS(1916), + [anon_sym_U_SQUOTE] = ACTIONS(1916), + [anon_sym_u8_SQUOTE] = ACTIONS(1916), + [anon_sym_SQUOTE] = ACTIONS(1916), + [anon_sym_L_DQUOTE] = ACTIONS(1918), + [anon_sym_u_DQUOTE] = ACTIONS(1918), + [anon_sym_U_DQUOTE] = ACTIONS(1918), + [anon_sym_u8_DQUOTE] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1918), + [sym_true] = ACTIONS(1920), + [sym_false] = ACTIONS(1920), + [anon_sym_NULL] = ACTIONS(1922), + [anon_sym_nullptr] = ACTIONS(1922), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1924), + [anon_sym_R_DQUOTE] = ACTIONS(1926), + [anon_sym_LR_DQUOTE] = ACTIONS(1926), + [anon_sym_uR_DQUOTE] = ACTIONS(1926), + [anon_sym_UR_DQUOTE] = ACTIONS(1926), + [anon_sym_u8R_DQUOTE] = ACTIONS(1926), + [anon_sym_co_await] = ACTIONS(1928), + [anon_sym_new] = ACTIONS(1930), + [anon_sym_requires] = ACTIONS(1932), + [sym_this] = ACTIONS(1920), + }, + [1281] = { + [sym_expression] = STATE(3617), + [sym__string] = STATE(3775), + [sym_conditional_expression] = STATE(3886), + [sym_assignment_expression] = STATE(3886), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(3886), + [sym_binary_expression] = STATE(3886), + [sym_update_expression] = STATE(3886), + [sym_cast_expression] = STATE(3886), + [sym_sizeof_expression] = STATE(3886), + [sym_alignof_expression] = STATE(3886), + [sym_offsetof_expression] = STATE(3886), + [sym_generic_expression] = STATE(3886), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(3886), + [sym_extension_expression] = STATE(3886), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(3886), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(3775), + [sym_concatenated_string] = STATE(3775), + [sym_string_literal] = STATE(2596), + [sym_null] = STATE(3886), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7756), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3886), + [sym_raw_string_literal] = STATE(2596), + [sym_co_await_expression] = STATE(3886), + [sym_new_expression] = STATE(3886), + [sym_delete_expression] = STATE(3886), + [sym_requires_clause] = STATE(3886), + [sym_requires_expression] = STATE(3886), + [sym_lambda_expression] = STATE(3886), + [sym_lambda_capture_specifier] = STATE(5492), + [sym_fold_expression] = STATE(3886), + [sym_parameter_pack_expansion] = STATE(3886), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(7756), + [sym_user_defined_literal] = STATE(3522), + [sym_identifier] = ACTIONS(2619), + [anon_sym_LPAREN2] = ACTIONS(1888), + [anon_sym_BANG] = ACTIONS(1890), + [anon_sym_TILDE] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1892), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(2621), + [anon_sym_COLON_COLON] = ACTIONS(1898), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2625), + [anon_sym_not] = ACTIONS(1892), + [anon_sym_compl] = ACTIONS(1892), + [anon_sym_DASH_DASH] = ACTIONS(1902), + [anon_sym_PLUS_PLUS] = ACTIONS(1902), + [anon_sym_sizeof] = ACTIONS(1904), + [anon_sym___alignof__] = ACTIONS(1906), + [anon_sym___alignof] = ACTIONS(1906), + [anon_sym__alignof] = ACTIONS(1906), + [anon_sym_alignof] = ACTIONS(1906), + [anon_sym__Alignof] = ACTIONS(1906), + [anon_sym_offsetof] = ACTIONS(1908), + [anon_sym__Generic] = ACTIONS(1910), + [anon_sym_asm] = ACTIONS(1912), + [anon_sym___asm__] = ACTIONS(1912), + [anon_sym___asm] = ACTIONS(1912), + [sym_number_literal] = ACTIONS(1914), + [anon_sym_L_SQUOTE] = ACTIONS(1916), + [anon_sym_u_SQUOTE] = ACTIONS(1916), + [anon_sym_U_SQUOTE] = ACTIONS(1916), + [anon_sym_u8_SQUOTE] = ACTIONS(1916), + [anon_sym_SQUOTE] = ACTIONS(1916), + [anon_sym_L_DQUOTE] = ACTIONS(1918), + [anon_sym_u_DQUOTE] = ACTIONS(1918), + [anon_sym_U_DQUOTE] = ACTIONS(1918), + [anon_sym_u8_DQUOTE] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1918), + [sym_true] = ACTIONS(1920), + [sym_false] = ACTIONS(1920), + [anon_sym_NULL] = ACTIONS(1922), + [anon_sym_nullptr] = ACTIONS(1922), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1924), + [anon_sym_R_DQUOTE] = ACTIONS(1926), + [anon_sym_LR_DQUOTE] = ACTIONS(1926), + [anon_sym_uR_DQUOTE] = ACTIONS(1926), + [anon_sym_UR_DQUOTE] = ACTIONS(1926), + [anon_sym_u8R_DQUOTE] = ACTIONS(1926), + [anon_sym_co_await] = ACTIONS(1928), + [anon_sym_new] = ACTIONS(1930), + [anon_sym_requires] = ACTIONS(1932), + [sym_this] = ACTIONS(1920), + }, + [1282] = { + [sym_expression] = STATE(3639), + [sym__string] = STATE(3775), + [sym_conditional_expression] = STATE(3886), + [sym_assignment_expression] = STATE(3886), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(3886), + [sym_binary_expression] = STATE(3886), + [sym_update_expression] = STATE(3886), + [sym_cast_expression] = STATE(3886), + [sym_sizeof_expression] = STATE(3886), + [sym_alignof_expression] = STATE(3886), + [sym_offsetof_expression] = STATE(3886), + [sym_generic_expression] = STATE(3886), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(3886), + [sym_extension_expression] = STATE(3886), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(3886), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(3775), + [sym_concatenated_string] = STATE(3775), + [sym_string_literal] = STATE(2596), + [sym_null] = STATE(3886), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7756), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3886), + [sym_raw_string_literal] = STATE(2596), + [sym_co_await_expression] = STATE(3886), + [sym_new_expression] = STATE(3886), + [sym_delete_expression] = STATE(3886), + [sym_requires_clause] = STATE(3886), + [sym_requires_expression] = STATE(3886), + [sym_lambda_expression] = STATE(3886), + [sym_lambda_capture_specifier] = STATE(5492), + [sym_fold_expression] = STATE(3886), + [sym_parameter_pack_expansion] = STATE(3886), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(7756), + [sym_user_defined_literal] = STATE(3522), + [sym_identifier] = ACTIONS(2619), + [anon_sym_LPAREN2] = ACTIONS(1888), + [anon_sym_BANG] = ACTIONS(1890), + [anon_sym_TILDE] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1892), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(2621), + [anon_sym_COLON_COLON] = ACTIONS(1898), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2625), + [anon_sym_not] = ACTIONS(1892), + [anon_sym_compl] = ACTIONS(1892), + [anon_sym_DASH_DASH] = ACTIONS(1902), + [anon_sym_PLUS_PLUS] = ACTIONS(1902), + [anon_sym_sizeof] = ACTIONS(1904), + [anon_sym___alignof__] = ACTIONS(1906), + [anon_sym___alignof] = ACTIONS(1906), + [anon_sym__alignof] = ACTIONS(1906), + [anon_sym_alignof] = ACTIONS(1906), + [anon_sym__Alignof] = ACTIONS(1906), + [anon_sym_offsetof] = ACTIONS(1908), + [anon_sym__Generic] = ACTIONS(1910), + [anon_sym_asm] = ACTIONS(1912), + [anon_sym___asm__] = ACTIONS(1912), + [anon_sym___asm] = ACTIONS(1912), + [sym_number_literal] = ACTIONS(1914), + [anon_sym_L_SQUOTE] = ACTIONS(1916), + [anon_sym_u_SQUOTE] = ACTIONS(1916), + [anon_sym_U_SQUOTE] = ACTIONS(1916), + [anon_sym_u8_SQUOTE] = ACTIONS(1916), + [anon_sym_SQUOTE] = ACTIONS(1916), + [anon_sym_L_DQUOTE] = ACTIONS(1918), + [anon_sym_u_DQUOTE] = ACTIONS(1918), + [anon_sym_U_DQUOTE] = ACTIONS(1918), + [anon_sym_u8_DQUOTE] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1918), + [sym_true] = ACTIONS(1920), + [sym_false] = ACTIONS(1920), + [anon_sym_NULL] = ACTIONS(1922), + [anon_sym_nullptr] = ACTIONS(1922), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1924), + [anon_sym_R_DQUOTE] = ACTIONS(1926), + [anon_sym_LR_DQUOTE] = ACTIONS(1926), + [anon_sym_uR_DQUOTE] = ACTIONS(1926), + [anon_sym_UR_DQUOTE] = ACTIONS(1926), + [anon_sym_u8R_DQUOTE] = ACTIONS(1926), + [anon_sym_co_await] = ACTIONS(1928), + [anon_sym_new] = ACTIONS(1930), + [anon_sym_requires] = ACTIONS(1932), + [sym_this] = ACTIONS(1920), + }, + [1283] = { + [sym_expression] = STATE(4490), + [sym__string] = STATE(4825), + [sym_conditional_expression] = STATE(4856), + [sym_assignment_expression] = STATE(4856), + [sym_pointer_expression] = STATE(3701), + [sym_unary_expression] = STATE(4856), + [sym_binary_expression] = STATE(4856), + [sym_update_expression] = STATE(4856), + [sym_cast_expression] = STATE(4856), + [sym_sizeof_expression] = STATE(4856), + [sym_alignof_expression] = STATE(4856), + [sym_offsetof_expression] = STATE(4856), + [sym_generic_expression] = STATE(4856), + [sym_subscript_expression] = STATE(3701), + [sym_call_expression] = STATE(3701), + [sym_gnu_asm_expression] = STATE(4856), + [sym_extension_expression] = STATE(4856), + [sym_field_expression] = STATE(3701), + [sym_compound_literal_expression] = STATE(4856), + [sym_parenthesized_expression] = STATE(3701), + [sym_char_literal] = STATE(4825), + [sym_concatenated_string] = STATE(4825), + [sym_string_literal] = STATE(3812), + [sym_null] = STATE(4856), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7816), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(4856), + [sym_raw_string_literal] = STATE(3812), + [sym_co_await_expression] = STATE(4856), + [sym_new_expression] = STATE(4856), + [sym_delete_expression] = STATE(4856), + [sym_requires_clause] = STATE(4856), + [sym_requires_expression] = STATE(4856), + [sym_lambda_expression] = STATE(4856), + [sym_lambda_capture_specifier] = STATE(5489), + [sym_fold_expression] = STATE(4856), + [sym_parameter_pack_expansion] = STATE(4856), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5769), + [sym_qualified_identifier] = STATE(3701), + [sym_qualified_type_identifier] = STATE(7816), + [sym_user_defined_literal] = STATE(3701), + [sym_identifier] = ACTIONS(3875), + [anon_sym_LPAREN2] = ACTIONS(3130), + [anon_sym_BANG] = ACTIONS(3132), + [anon_sym_TILDE] = ACTIONS(3132), + [anon_sym_DASH] = ACTIONS(3134), + [anon_sym_PLUS] = ACTIONS(3134), + [anon_sym_STAR] = ACTIONS(3136), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym___extension__] = ACTIONS(3877), + [anon_sym_COLON_COLON] = ACTIONS(3140), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(3881), + [anon_sym_not] = ACTIONS(3134), + [anon_sym_compl] = ACTIONS(3134), + [anon_sym_DASH_DASH] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_sizeof] = ACTIONS(3156), + [anon_sym___alignof__] = ACTIONS(3158), + [anon_sym___alignof] = ACTIONS(3158), + [anon_sym__alignof] = ACTIONS(3158), + [anon_sym_alignof] = ACTIONS(3158), + [anon_sym__Alignof] = ACTIONS(3158), + [anon_sym_offsetof] = ACTIONS(3160), + [anon_sym__Generic] = ACTIONS(3162), + [anon_sym_asm] = ACTIONS(3164), + [anon_sym___asm__] = ACTIONS(3164), + [anon_sym___asm] = ACTIONS(3164), + [sym_number_literal] = ACTIONS(3166), + [anon_sym_L_SQUOTE] = ACTIONS(3168), + [anon_sym_u_SQUOTE] = ACTIONS(3168), + [anon_sym_U_SQUOTE] = ACTIONS(3168), + [anon_sym_u8_SQUOTE] = ACTIONS(3168), + [anon_sym_SQUOTE] = ACTIONS(3168), + [anon_sym_L_DQUOTE] = ACTIONS(3170), + [anon_sym_u_DQUOTE] = ACTIONS(3170), + [anon_sym_U_DQUOTE] = ACTIONS(3170), + [anon_sym_u8_DQUOTE] = ACTIONS(3170), + [anon_sym_DQUOTE] = ACTIONS(3170), + [sym_true] = ACTIONS(3172), + [sym_false] = ACTIONS(3172), + [anon_sym_NULL] = ACTIONS(3174), + [anon_sym_nullptr] = ACTIONS(3174), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3184), + [anon_sym_R_DQUOTE] = ACTIONS(3186), + [anon_sym_LR_DQUOTE] = ACTIONS(3186), + [anon_sym_uR_DQUOTE] = ACTIONS(3186), + [anon_sym_UR_DQUOTE] = ACTIONS(3186), + [anon_sym_u8R_DQUOTE] = ACTIONS(3186), + [anon_sym_co_await] = ACTIONS(3188), + [anon_sym_new] = ACTIONS(3190), + [anon_sym_requires] = ACTIONS(3192), + [sym_this] = ACTIONS(3172), + }, + [1284] = { + [sym_expression] = STATE(3747), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -200876,7 +208977,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -200888,162 +208989,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1214] = { - [sym_expression] = STATE(3639), - [sym__string] = STATE(3714), - [sym_conditional_expression] = STATE(3908), - [sym_assignment_expression] = STATE(3908), - [sym_pointer_expression] = STATE(3506), - [sym_unary_expression] = STATE(3908), - [sym_binary_expression] = STATE(3908), - [sym_update_expression] = STATE(3908), - [sym_cast_expression] = STATE(3908), - [sym_sizeof_expression] = STATE(3908), - [sym_alignof_expression] = STATE(3908), - [sym_offsetof_expression] = STATE(3908), - [sym_generic_expression] = STATE(3908), - [sym_subscript_expression] = STATE(3506), - [sym_call_expression] = STATE(3506), - [sym_gnu_asm_expression] = STATE(3908), - [sym_extension_expression] = STATE(3908), - [sym_field_expression] = STATE(3506), - [sym_compound_literal_expression] = STATE(3908), - [sym_parenthesized_expression] = STATE(3506), - [sym_char_literal] = STATE(3714), - [sym_concatenated_string] = STATE(3714), - [sym_string_literal] = STATE(2566), - [sym_null] = STATE(3908), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7868), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3908), - [sym_raw_string_literal] = STATE(2566), - [sym_co_await_expression] = STATE(3908), - [sym_new_expression] = STATE(3908), - [sym_delete_expression] = STATE(3908), - [sym_requires_clause] = STATE(3908), - [sym_requires_expression] = STATE(3908), - [sym_lambda_expression] = STATE(3908), - [sym_lambda_capture_specifier] = STATE(5415), - [sym_fold_expression] = STATE(3908), - [sym_parameter_pack_expansion] = STATE(3908), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3506), - [sym_qualified_type_identifier] = STATE(7868), - [sym_user_defined_literal] = STATE(3506), - [sym_identifier] = ACTIONS(2605), - [anon_sym_LPAREN2] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1870), - [anon_sym_TILDE] = ACTIONS(1870), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_PLUS] = ACTIONS(1872), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(2607), - [anon_sym_COLON_COLON] = ACTIONS(1880), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2611), - [anon_sym_not] = ACTIONS(1872), - [anon_sym_compl] = ACTIONS(1872), - [anon_sym_DASH_DASH] = ACTIONS(1892), - [anon_sym_PLUS_PLUS] = ACTIONS(1892), - [anon_sym_sizeof] = ACTIONS(1894), - [anon_sym___alignof__] = ACTIONS(1896), - [anon_sym___alignof] = ACTIONS(1896), - [anon_sym__alignof] = ACTIONS(1896), - [anon_sym_alignof] = ACTIONS(1896), - [anon_sym__Alignof] = ACTIONS(1896), - [anon_sym_offsetof] = ACTIONS(1898), - [anon_sym__Generic] = ACTIONS(1900), - [anon_sym_asm] = ACTIONS(1902), - [anon_sym___asm__] = ACTIONS(1902), - [anon_sym___asm] = ACTIONS(1902), - [sym_number_literal] = ACTIONS(1904), - [anon_sym_L_SQUOTE] = ACTIONS(1906), - [anon_sym_u_SQUOTE] = ACTIONS(1906), - [anon_sym_U_SQUOTE] = ACTIONS(1906), - [anon_sym_u8_SQUOTE] = ACTIONS(1906), - [anon_sym_SQUOTE] = ACTIONS(1906), - [anon_sym_L_DQUOTE] = ACTIONS(1908), - [anon_sym_u_DQUOTE] = ACTIONS(1908), - [anon_sym_U_DQUOTE] = ACTIONS(1908), - [anon_sym_u8_DQUOTE] = ACTIONS(1908), - [anon_sym_DQUOTE] = ACTIONS(1908), - [sym_true] = ACTIONS(1910), - [sym_false] = ACTIONS(1910), - [anon_sym_NULL] = ACTIONS(1912), - [anon_sym_nullptr] = ACTIONS(1912), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1916), - [anon_sym_R_DQUOTE] = ACTIONS(1918), - [anon_sym_LR_DQUOTE] = ACTIONS(1918), - [anon_sym_uR_DQUOTE] = ACTIONS(1918), - [anon_sym_UR_DQUOTE] = ACTIONS(1918), - [anon_sym_u8R_DQUOTE] = ACTIONS(1918), - [anon_sym_co_await] = ACTIONS(1920), - [anon_sym_new] = ACTIONS(1922), - [anon_sym_requires] = ACTIONS(1924), - [sym_this] = ACTIONS(1910), - }, - [1215] = { - [sym_expression] = STATE(3782), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1285] = { + [sym_expression] = STATE(4786), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -201076,7 +209077,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -201088,67 +209089,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1216] = { - [sym_expression] = STATE(4765), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), - [anon_sym_COLON_COLON] = ACTIONS(47), + [1286] = { + [sym_expression] = STATE(4485), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3728), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3728), + [sym_call_expression] = STATE(3728), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3728), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3728), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3728), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3728), + [sym_identifier] = ACTIONS(3883), + [anon_sym_LPAREN2] = ACTIONS(3901), + [anon_sym_BANG] = ACTIONS(3887), + [anon_sym_TILDE] = ACTIONS(3887), + [anon_sym_DASH] = ACTIONS(3885), + [anon_sym_PLUS] = ACTIONS(3885), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(3889), + [anon_sym_COLON_COLON] = ACTIONS(3891), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3885), + [anon_sym_compl] = ACTIONS(3885), + [anon_sym_DASH_DASH] = ACTIONS(3905), + [anon_sym_PLUS_PLUS] = ACTIONS(3905), + [anon_sym_sizeof] = ACTIONS(3893), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -201176,174 +209177,274 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(145), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3895), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), + [anon_sym_co_await] = ACTIONS(3897), + [anon_sym_new] = ACTIONS(3873), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1217] = { - [sym_expression] = STATE(3591), - [sym__string] = STATE(3714), - [sym_conditional_expression] = STATE(3908), - [sym_assignment_expression] = STATE(3908), - [sym_pointer_expression] = STATE(3506), - [sym_unary_expression] = STATE(3908), - [sym_binary_expression] = STATE(3908), - [sym_update_expression] = STATE(3908), - [sym_cast_expression] = STATE(3908), - [sym_sizeof_expression] = STATE(3908), - [sym_alignof_expression] = STATE(3908), - [sym_offsetof_expression] = STATE(3908), - [sym_generic_expression] = STATE(3908), - [sym_subscript_expression] = STATE(3506), - [sym_call_expression] = STATE(3506), - [sym_gnu_asm_expression] = STATE(3908), - [sym_extension_expression] = STATE(3908), - [sym_field_expression] = STATE(3506), - [sym_compound_literal_expression] = STATE(3908), - [sym_parenthesized_expression] = STATE(3506), - [sym_char_literal] = STATE(3714), - [sym_concatenated_string] = STATE(3714), - [sym_string_literal] = STATE(2566), - [sym_null] = STATE(3908), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7868), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3908), - [sym_raw_string_literal] = STATE(2566), - [sym_co_await_expression] = STATE(3908), - [sym_new_expression] = STATE(3908), - [sym_delete_expression] = STATE(3908), - [sym_requires_clause] = STATE(3908), - [sym_requires_expression] = STATE(3908), - [sym_lambda_expression] = STATE(3908), - [sym_lambda_capture_specifier] = STATE(5415), - [sym_fold_expression] = STATE(3908), - [sym_parameter_pack_expansion] = STATE(3908), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3506), - [sym_qualified_type_identifier] = STATE(7868), - [sym_user_defined_literal] = STATE(3506), - [sym_identifier] = ACTIONS(2605), - [anon_sym_LPAREN2] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1870), - [anon_sym_TILDE] = ACTIONS(1870), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_PLUS] = ACTIONS(1872), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(2607), - [anon_sym_COLON_COLON] = ACTIONS(1880), + [1287] = { + [sym_expression] = STATE(4483), + [sym__string] = STATE(4825), + [sym_conditional_expression] = STATE(4856), + [sym_assignment_expression] = STATE(4856), + [sym_pointer_expression] = STATE(3701), + [sym_unary_expression] = STATE(4856), + [sym_binary_expression] = STATE(4856), + [sym_update_expression] = STATE(4856), + [sym_cast_expression] = STATE(4856), + [sym_sizeof_expression] = STATE(4856), + [sym_alignof_expression] = STATE(4856), + [sym_offsetof_expression] = STATE(4856), + [sym_generic_expression] = STATE(4856), + [sym_subscript_expression] = STATE(3701), + [sym_call_expression] = STATE(3701), + [sym_gnu_asm_expression] = STATE(4856), + [sym_extension_expression] = STATE(4856), + [sym_field_expression] = STATE(3701), + [sym_compound_literal_expression] = STATE(4856), + [sym_parenthesized_expression] = STATE(3701), + [sym_char_literal] = STATE(4825), + [sym_concatenated_string] = STATE(4825), + [sym_string_literal] = STATE(3812), + [sym_null] = STATE(4856), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7816), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(4856), + [sym_raw_string_literal] = STATE(3812), + [sym_co_await_expression] = STATE(4856), + [sym_new_expression] = STATE(4856), + [sym_delete_expression] = STATE(4856), + [sym_requires_clause] = STATE(4856), + [sym_requires_expression] = STATE(4856), + [sym_lambda_expression] = STATE(4856), + [sym_lambda_capture_specifier] = STATE(5489), + [sym_fold_expression] = STATE(4856), + [sym_parameter_pack_expansion] = STATE(4856), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5769), + [sym_qualified_identifier] = STATE(3701), + [sym_qualified_type_identifier] = STATE(7816), + [sym_user_defined_literal] = STATE(3701), + [sym_identifier] = ACTIONS(3875), + [anon_sym_LPAREN2] = ACTIONS(3130), + [anon_sym_BANG] = ACTIONS(3132), + [anon_sym_TILDE] = ACTIONS(3132), + [anon_sym_DASH] = ACTIONS(3134), + [anon_sym_PLUS] = ACTIONS(3134), + [anon_sym_STAR] = ACTIONS(3136), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym___extension__] = ACTIONS(3877), + [anon_sym_COLON_COLON] = ACTIONS(3140), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2611), - [anon_sym_not] = ACTIONS(1872), - [anon_sym_compl] = ACTIONS(1872), - [anon_sym_DASH_DASH] = ACTIONS(1892), - [anon_sym_PLUS_PLUS] = ACTIONS(1892), - [anon_sym_sizeof] = ACTIONS(1894), - [anon_sym___alignof__] = ACTIONS(1896), - [anon_sym___alignof] = ACTIONS(1896), - [anon_sym__alignof] = ACTIONS(1896), - [anon_sym_alignof] = ACTIONS(1896), - [anon_sym__Alignof] = ACTIONS(1896), - [anon_sym_offsetof] = ACTIONS(1898), - [anon_sym__Generic] = ACTIONS(1900), - [anon_sym_asm] = ACTIONS(1902), - [anon_sym___asm__] = ACTIONS(1902), - [anon_sym___asm] = ACTIONS(1902), - [sym_number_literal] = ACTIONS(1904), - [anon_sym_L_SQUOTE] = ACTIONS(1906), - [anon_sym_u_SQUOTE] = ACTIONS(1906), - [anon_sym_U_SQUOTE] = ACTIONS(1906), - [anon_sym_u8_SQUOTE] = ACTIONS(1906), - [anon_sym_SQUOTE] = ACTIONS(1906), - [anon_sym_L_DQUOTE] = ACTIONS(1908), - [anon_sym_u_DQUOTE] = ACTIONS(1908), - [anon_sym_U_DQUOTE] = ACTIONS(1908), - [anon_sym_u8_DQUOTE] = ACTIONS(1908), - [anon_sym_DQUOTE] = ACTIONS(1908), - [sym_true] = ACTIONS(1910), - [sym_false] = ACTIONS(1910), - [anon_sym_NULL] = ACTIONS(1912), - [anon_sym_nullptr] = ACTIONS(1912), + [sym_primitive_type] = ACTIONS(3881), + [anon_sym_not] = ACTIONS(3134), + [anon_sym_compl] = ACTIONS(3134), + [anon_sym_DASH_DASH] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_sizeof] = ACTIONS(3156), + [anon_sym___alignof__] = ACTIONS(3158), + [anon_sym___alignof] = ACTIONS(3158), + [anon_sym__alignof] = ACTIONS(3158), + [anon_sym_alignof] = ACTIONS(3158), + [anon_sym__Alignof] = ACTIONS(3158), + [anon_sym_offsetof] = ACTIONS(3160), + [anon_sym__Generic] = ACTIONS(3162), + [anon_sym_asm] = ACTIONS(3164), + [anon_sym___asm__] = ACTIONS(3164), + [anon_sym___asm] = ACTIONS(3164), + [sym_number_literal] = ACTIONS(3166), + [anon_sym_L_SQUOTE] = ACTIONS(3168), + [anon_sym_u_SQUOTE] = ACTIONS(3168), + [anon_sym_U_SQUOTE] = ACTIONS(3168), + [anon_sym_u8_SQUOTE] = ACTIONS(3168), + [anon_sym_SQUOTE] = ACTIONS(3168), + [anon_sym_L_DQUOTE] = ACTIONS(3170), + [anon_sym_u_DQUOTE] = ACTIONS(3170), + [anon_sym_U_DQUOTE] = ACTIONS(3170), + [anon_sym_u8_DQUOTE] = ACTIONS(3170), + [anon_sym_DQUOTE] = ACTIONS(3170), + [sym_true] = ACTIONS(3172), + [sym_false] = ACTIONS(3172), + [anon_sym_NULL] = ACTIONS(3174), + [anon_sym_nullptr] = ACTIONS(3174), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1916), - [anon_sym_R_DQUOTE] = ACTIONS(1918), - [anon_sym_LR_DQUOTE] = ACTIONS(1918), - [anon_sym_uR_DQUOTE] = ACTIONS(1918), - [anon_sym_UR_DQUOTE] = ACTIONS(1918), - [anon_sym_u8R_DQUOTE] = ACTIONS(1918), - [anon_sym_co_await] = ACTIONS(1920), - [anon_sym_new] = ACTIONS(1922), - [anon_sym_requires] = ACTIONS(1924), - [sym_this] = ACTIONS(1910), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3184), + [anon_sym_R_DQUOTE] = ACTIONS(3186), + [anon_sym_LR_DQUOTE] = ACTIONS(3186), + [anon_sym_uR_DQUOTE] = ACTIONS(3186), + [anon_sym_UR_DQUOTE] = ACTIONS(3186), + [anon_sym_u8R_DQUOTE] = ACTIONS(3186), + [anon_sym_co_await] = ACTIONS(3188), + [anon_sym_new] = ACTIONS(3190), + [anon_sym_requires] = ACTIONS(3192), + [sym_this] = ACTIONS(3172), }, - [1218] = { - [sym_expression] = STATE(4578), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1288] = { + [sym_expression] = STATE(4374), + [sym__string] = STATE(4455), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3366), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3366), + [sym_call_expression] = STATE(3366), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3366), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3366), + [sym_char_literal] = STATE(4455), + [sym_concatenated_string] = STATE(4455), + [sym_string_literal] = STATE(3406), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3406), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3366), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3366), + [sym_identifier] = ACTIONS(3833), + [anon_sym_LPAREN2] = ACTIONS(4557), + [anon_sym_BANG] = ACTIONS(3837), + [anon_sym_TILDE] = ACTIONS(3837), + [anon_sym_DASH] = ACTIONS(3835), + [anon_sym_PLUS] = ACTIONS(3835), + [anon_sym_STAR] = ACTIONS(4336), + [anon_sym_AMP] = ACTIONS(4336), + [anon_sym___extension__] = ACTIONS(3839), + [anon_sym_COLON_COLON] = ACTIONS(3841), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3835), + [anon_sym_compl] = ACTIONS(3835), + [anon_sym_DASH_DASH] = ACTIONS(4338), + [anon_sym_PLUS_PLUS] = ACTIONS(4338), + [anon_sym_sizeof] = ACTIONS(3843), + [anon_sym___alignof__] = ACTIONS(107), + [anon_sym___alignof] = ACTIONS(107), + [anon_sym__alignof] = ACTIONS(107), + [anon_sym_alignof] = ACTIONS(107), + [anon_sym__Alignof] = ACTIONS(107), + [anon_sym_offsetof] = ACTIONS(109), + [anon_sym__Generic] = ACTIONS(111), + [anon_sym_asm] = ACTIONS(113), + [anon_sym___asm__] = ACTIONS(113), + [anon_sym___asm] = ACTIONS(113), + [sym_number_literal] = ACTIONS(3845), + [anon_sym_L_SQUOTE] = ACTIONS(3847), + [anon_sym_u_SQUOTE] = ACTIONS(3847), + [anon_sym_U_SQUOTE] = ACTIONS(3847), + [anon_sym_u8_SQUOTE] = ACTIONS(3847), + [anon_sym_SQUOTE] = ACTIONS(3847), + [anon_sym_L_DQUOTE] = ACTIONS(3849), + [anon_sym_u_DQUOTE] = ACTIONS(3849), + [anon_sym_U_DQUOTE] = ACTIONS(3849), + [anon_sym_u8_DQUOTE] = ACTIONS(3849), + [anon_sym_DQUOTE] = ACTIONS(3849), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(123), + [anon_sym_nullptr] = ACTIONS(123), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3851), + [anon_sym_R_DQUOTE] = ACTIONS(3853), + [anon_sym_LR_DQUOTE] = ACTIONS(3853), + [anon_sym_uR_DQUOTE] = ACTIONS(3853), + [anon_sym_UR_DQUOTE] = ACTIONS(3853), + [anon_sym_u8R_DQUOTE] = ACTIONS(3853), + [anon_sym_co_await] = ACTIONS(3855), + [anon_sym_new] = ACTIONS(163), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), + }, + [1289] = { + [sym_expression] = STATE(4809), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -201376,7 +209477,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -201388,67 +209489,767 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1219] = { + [1290] = { + [sym_expression] = STATE(4512), + [sym__string] = STATE(4825), + [sym_conditional_expression] = STATE(4856), + [sym_assignment_expression] = STATE(4856), + [sym_pointer_expression] = STATE(3701), + [sym_unary_expression] = STATE(4856), + [sym_binary_expression] = STATE(4856), + [sym_update_expression] = STATE(4856), + [sym_cast_expression] = STATE(4856), + [sym_sizeof_expression] = STATE(4856), + [sym_alignof_expression] = STATE(4856), + [sym_offsetof_expression] = STATE(4856), + [sym_generic_expression] = STATE(4856), + [sym_subscript_expression] = STATE(3701), + [sym_call_expression] = STATE(3701), + [sym_gnu_asm_expression] = STATE(4856), + [sym_extension_expression] = STATE(4856), + [sym_field_expression] = STATE(3701), + [sym_compound_literal_expression] = STATE(4856), + [sym_parenthesized_expression] = STATE(3701), + [sym_char_literal] = STATE(4825), + [sym_concatenated_string] = STATE(4825), + [sym_string_literal] = STATE(3812), + [sym_null] = STATE(4856), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7816), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(4856), + [sym_raw_string_literal] = STATE(3812), + [sym_co_await_expression] = STATE(4856), + [sym_new_expression] = STATE(4856), + [sym_delete_expression] = STATE(4856), + [sym_requires_clause] = STATE(4856), + [sym_requires_expression] = STATE(4856), + [sym_lambda_expression] = STATE(4856), + [sym_lambda_capture_specifier] = STATE(5489), + [sym_fold_expression] = STATE(4856), + [sym_parameter_pack_expansion] = STATE(4856), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5769), + [sym_qualified_identifier] = STATE(3701), + [sym_qualified_type_identifier] = STATE(7816), + [sym_user_defined_literal] = STATE(3701), + [sym_identifier] = ACTIONS(3875), + [anon_sym_LPAREN2] = ACTIONS(3130), + [anon_sym_BANG] = ACTIONS(3132), + [anon_sym_TILDE] = ACTIONS(3132), + [anon_sym_DASH] = ACTIONS(3134), + [anon_sym_PLUS] = ACTIONS(3134), + [anon_sym_STAR] = ACTIONS(3136), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym___extension__] = ACTIONS(3877), + [anon_sym_COLON_COLON] = ACTIONS(3140), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(3881), + [anon_sym_not] = ACTIONS(3134), + [anon_sym_compl] = ACTIONS(3134), + [anon_sym_DASH_DASH] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_sizeof] = ACTIONS(3156), + [anon_sym___alignof__] = ACTIONS(3158), + [anon_sym___alignof] = ACTIONS(3158), + [anon_sym__alignof] = ACTIONS(3158), + [anon_sym_alignof] = ACTIONS(3158), + [anon_sym__Alignof] = ACTIONS(3158), + [anon_sym_offsetof] = ACTIONS(3160), + [anon_sym__Generic] = ACTIONS(3162), + [anon_sym_asm] = ACTIONS(3164), + [anon_sym___asm__] = ACTIONS(3164), + [anon_sym___asm] = ACTIONS(3164), + [sym_number_literal] = ACTIONS(3166), + [anon_sym_L_SQUOTE] = ACTIONS(3168), + [anon_sym_u_SQUOTE] = ACTIONS(3168), + [anon_sym_U_SQUOTE] = ACTIONS(3168), + [anon_sym_u8_SQUOTE] = ACTIONS(3168), + [anon_sym_SQUOTE] = ACTIONS(3168), + [anon_sym_L_DQUOTE] = ACTIONS(3170), + [anon_sym_u_DQUOTE] = ACTIONS(3170), + [anon_sym_U_DQUOTE] = ACTIONS(3170), + [anon_sym_u8_DQUOTE] = ACTIONS(3170), + [anon_sym_DQUOTE] = ACTIONS(3170), + [sym_true] = ACTIONS(3172), + [sym_false] = ACTIONS(3172), + [anon_sym_NULL] = ACTIONS(3174), + [anon_sym_nullptr] = ACTIONS(3174), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3184), + [anon_sym_R_DQUOTE] = ACTIONS(3186), + [anon_sym_LR_DQUOTE] = ACTIONS(3186), + [anon_sym_uR_DQUOTE] = ACTIONS(3186), + [anon_sym_UR_DQUOTE] = ACTIONS(3186), + [anon_sym_u8R_DQUOTE] = ACTIONS(3186), + [anon_sym_co_await] = ACTIONS(3188), + [anon_sym_new] = ACTIONS(3190), + [anon_sym_requires] = ACTIONS(3192), + [sym_this] = ACTIONS(3172), + }, + [1291] = { + [sym_expression] = STATE(3659), + [sym__string] = STATE(3775), + [sym_conditional_expression] = STATE(3886), + [sym_assignment_expression] = STATE(3886), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(3886), + [sym_binary_expression] = STATE(3886), + [sym_update_expression] = STATE(3886), + [sym_cast_expression] = STATE(3886), + [sym_sizeof_expression] = STATE(3886), + [sym_alignof_expression] = STATE(3886), + [sym_offsetof_expression] = STATE(3886), + [sym_generic_expression] = STATE(3886), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(3886), + [sym_extension_expression] = STATE(3886), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(3886), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(3775), + [sym_concatenated_string] = STATE(3775), + [sym_string_literal] = STATE(2596), + [sym_null] = STATE(3886), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7756), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3886), + [sym_raw_string_literal] = STATE(2596), + [sym_co_await_expression] = STATE(3886), + [sym_new_expression] = STATE(3886), + [sym_delete_expression] = STATE(3886), + [sym_requires_clause] = STATE(3886), + [sym_requires_expression] = STATE(3886), + [sym_lambda_expression] = STATE(3886), + [sym_lambda_capture_specifier] = STATE(5492), + [sym_fold_expression] = STATE(3886), + [sym_parameter_pack_expansion] = STATE(3886), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(7756), + [sym_user_defined_literal] = STATE(3522), + [sym_identifier] = ACTIONS(2619), + [anon_sym_LPAREN2] = ACTIONS(1888), + [anon_sym_BANG] = ACTIONS(1890), + [anon_sym_TILDE] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1892), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(2621), + [anon_sym_COLON_COLON] = ACTIONS(1898), + [anon_sym_LBRACK] = ACTIONS(4915), + [sym_primitive_type] = ACTIONS(2625), + [anon_sym_not] = ACTIONS(1892), + [anon_sym_compl] = ACTIONS(1892), + [anon_sym_DASH_DASH] = ACTIONS(1902), + [anon_sym_PLUS_PLUS] = ACTIONS(1902), + [anon_sym_sizeof] = ACTIONS(1904), + [anon_sym___alignof__] = ACTIONS(1906), + [anon_sym___alignof] = ACTIONS(1906), + [anon_sym__alignof] = ACTIONS(1906), + [anon_sym_alignof] = ACTIONS(1906), + [anon_sym__Alignof] = ACTIONS(1906), + [anon_sym_offsetof] = ACTIONS(1908), + [anon_sym__Generic] = ACTIONS(1910), + [anon_sym_asm] = ACTIONS(1912), + [anon_sym___asm__] = ACTIONS(1912), + [anon_sym___asm] = ACTIONS(1912), + [sym_number_literal] = ACTIONS(1914), + [anon_sym_L_SQUOTE] = ACTIONS(1916), + [anon_sym_u_SQUOTE] = ACTIONS(1916), + [anon_sym_U_SQUOTE] = ACTIONS(1916), + [anon_sym_u8_SQUOTE] = ACTIONS(1916), + [anon_sym_SQUOTE] = ACTIONS(1916), + [anon_sym_L_DQUOTE] = ACTIONS(1918), + [anon_sym_u_DQUOTE] = ACTIONS(1918), + [anon_sym_U_DQUOTE] = ACTIONS(1918), + [anon_sym_u8_DQUOTE] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1918), + [sym_true] = ACTIONS(1920), + [sym_false] = ACTIONS(1920), + [anon_sym_NULL] = ACTIONS(1922), + [anon_sym_nullptr] = ACTIONS(1922), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1924), + [anon_sym_R_DQUOTE] = ACTIONS(1926), + [anon_sym_LR_DQUOTE] = ACTIONS(1926), + [anon_sym_uR_DQUOTE] = ACTIONS(1926), + [anon_sym_UR_DQUOTE] = ACTIONS(1926), + [anon_sym_u8R_DQUOTE] = ACTIONS(1926), + [anon_sym_co_await] = ACTIONS(1928), + [anon_sym_new] = ACTIONS(1930), + [anon_sym_requires] = ACTIONS(1932), + [sym_this] = ACTIONS(1920), + }, + [1292] = { + [sym_expression] = STATE(3667), + [sym__string] = STATE(3775), + [sym_conditional_expression] = STATE(3886), + [sym_assignment_expression] = STATE(3886), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(3886), + [sym_binary_expression] = STATE(3886), + [sym_update_expression] = STATE(3886), + [sym_cast_expression] = STATE(3886), + [sym_sizeof_expression] = STATE(3886), + [sym_alignof_expression] = STATE(3886), + [sym_offsetof_expression] = STATE(3886), + [sym_generic_expression] = STATE(3886), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(3886), + [sym_extension_expression] = STATE(3886), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(3886), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(3775), + [sym_concatenated_string] = STATE(3775), + [sym_string_literal] = STATE(2596), + [sym_null] = STATE(3886), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7756), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3886), + [sym_raw_string_literal] = STATE(2596), + [sym_co_await_expression] = STATE(3886), + [sym_new_expression] = STATE(3886), + [sym_delete_expression] = STATE(3886), + [sym_requires_clause] = STATE(3886), + [sym_requires_expression] = STATE(3886), + [sym_lambda_expression] = STATE(3886), + [sym_lambda_capture_specifier] = STATE(5492), + [sym_fold_expression] = STATE(3886), + [sym_parameter_pack_expansion] = STATE(3886), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(7756), + [sym_user_defined_literal] = STATE(3522), + [sym_identifier] = ACTIONS(2619), + [anon_sym_LPAREN2] = ACTIONS(1888), + [anon_sym_BANG] = ACTIONS(1890), + [anon_sym_TILDE] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1892), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(2621), + [anon_sym_COLON_COLON] = ACTIONS(1898), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2625), + [anon_sym_not] = ACTIONS(1892), + [anon_sym_compl] = ACTIONS(1892), + [anon_sym_DASH_DASH] = ACTIONS(1902), + [anon_sym_PLUS_PLUS] = ACTIONS(1902), + [anon_sym_sizeof] = ACTIONS(1904), + [anon_sym___alignof__] = ACTIONS(1906), + [anon_sym___alignof] = ACTIONS(1906), + [anon_sym__alignof] = ACTIONS(1906), + [anon_sym_alignof] = ACTIONS(1906), + [anon_sym__Alignof] = ACTIONS(1906), + [anon_sym_offsetof] = ACTIONS(1908), + [anon_sym__Generic] = ACTIONS(1910), + [anon_sym_asm] = ACTIONS(1912), + [anon_sym___asm__] = ACTIONS(1912), + [anon_sym___asm] = ACTIONS(1912), + [sym_number_literal] = ACTIONS(1914), + [anon_sym_L_SQUOTE] = ACTIONS(1916), + [anon_sym_u_SQUOTE] = ACTIONS(1916), + [anon_sym_U_SQUOTE] = ACTIONS(1916), + [anon_sym_u8_SQUOTE] = ACTIONS(1916), + [anon_sym_SQUOTE] = ACTIONS(1916), + [anon_sym_L_DQUOTE] = ACTIONS(1918), + [anon_sym_u_DQUOTE] = ACTIONS(1918), + [anon_sym_U_DQUOTE] = ACTIONS(1918), + [anon_sym_u8_DQUOTE] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1918), + [sym_true] = ACTIONS(1920), + [sym_false] = ACTIONS(1920), + [anon_sym_NULL] = ACTIONS(1922), + [anon_sym_nullptr] = ACTIONS(1922), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1924), + [anon_sym_R_DQUOTE] = ACTIONS(1926), + [anon_sym_LR_DQUOTE] = ACTIONS(1926), + [anon_sym_uR_DQUOTE] = ACTIONS(1926), + [anon_sym_UR_DQUOTE] = ACTIONS(1926), + [anon_sym_u8R_DQUOTE] = ACTIONS(1926), + [anon_sym_co_await] = ACTIONS(1928), + [anon_sym_new] = ACTIONS(1930), + [anon_sym_requires] = ACTIONS(1932), + [sym_this] = ACTIONS(1920), + }, + [1293] = { + [sym_expression] = STATE(3717), + [sym__string] = STATE(3775), + [sym_conditional_expression] = STATE(3886), + [sym_assignment_expression] = STATE(3886), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(3886), + [sym_binary_expression] = STATE(3886), + [sym_update_expression] = STATE(3886), + [sym_cast_expression] = STATE(3886), + [sym_sizeof_expression] = STATE(3886), + [sym_alignof_expression] = STATE(3886), + [sym_offsetof_expression] = STATE(3886), + [sym_generic_expression] = STATE(3886), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(3886), + [sym_extension_expression] = STATE(3886), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(3886), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(3775), + [sym_concatenated_string] = STATE(3775), + [sym_string_literal] = STATE(2596), + [sym_null] = STATE(3886), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7756), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3886), + [sym_raw_string_literal] = STATE(2596), + [sym_co_await_expression] = STATE(3886), + [sym_new_expression] = STATE(3886), + [sym_delete_expression] = STATE(3886), + [sym_requires_clause] = STATE(3886), + [sym_requires_expression] = STATE(3886), + [sym_lambda_expression] = STATE(3886), + [sym_lambda_capture_specifier] = STATE(5492), + [sym_fold_expression] = STATE(3886), + [sym_parameter_pack_expansion] = STATE(3886), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(7756), + [sym_user_defined_literal] = STATE(3522), + [sym_identifier] = ACTIONS(2619), + [anon_sym_LPAREN2] = ACTIONS(1888), + [anon_sym_BANG] = ACTIONS(1890), + [anon_sym_TILDE] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1892), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(2621), + [anon_sym_COLON_COLON] = ACTIONS(1898), + [anon_sym_LBRACK] = ACTIONS(4917), + [sym_primitive_type] = ACTIONS(2625), + [anon_sym_not] = ACTIONS(1892), + [anon_sym_compl] = ACTIONS(1892), + [anon_sym_DASH_DASH] = ACTIONS(1902), + [anon_sym_PLUS_PLUS] = ACTIONS(1902), + [anon_sym_sizeof] = ACTIONS(1904), + [anon_sym___alignof__] = ACTIONS(1906), + [anon_sym___alignof] = ACTIONS(1906), + [anon_sym__alignof] = ACTIONS(1906), + [anon_sym_alignof] = ACTIONS(1906), + [anon_sym__Alignof] = ACTIONS(1906), + [anon_sym_offsetof] = ACTIONS(1908), + [anon_sym__Generic] = ACTIONS(1910), + [anon_sym_asm] = ACTIONS(1912), + [anon_sym___asm__] = ACTIONS(1912), + [anon_sym___asm] = ACTIONS(1912), + [sym_number_literal] = ACTIONS(1914), + [anon_sym_L_SQUOTE] = ACTIONS(1916), + [anon_sym_u_SQUOTE] = ACTIONS(1916), + [anon_sym_U_SQUOTE] = ACTIONS(1916), + [anon_sym_u8_SQUOTE] = ACTIONS(1916), + [anon_sym_SQUOTE] = ACTIONS(1916), + [anon_sym_L_DQUOTE] = ACTIONS(1918), + [anon_sym_u_DQUOTE] = ACTIONS(1918), + [anon_sym_U_DQUOTE] = ACTIONS(1918), + [anon_sym_u8_DQUOTE] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1918), + [sym_true] = ACTIONS(1920), + [sym_false] = ACTIONS(1920), + [anon_sym_NULL] = ACTIONS(1922), + [anon_sym_nullptr] = ACTIONS(1922), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1924), + [anon_sym_R_DQUOTE] = ACTIONS(1926), + [anon_sym_LR_DQUOTE] = ACTIONS(1926), + [anon_sym_uR_DQUOTE] = ACTIONS(1926), + [anon_sym_UR_DQUOTE] = ACTIONS(1926), + [anon_sym_u8R_DQUOTE] = ACTIONS(1926), + [anon_sym_co_await] = ACTIONS(1928), + [anon_sym_new] = ACTIONS(1930), + [anon_sym_requires] = ACTIONS(1932), + [sym_this] = ACTIONS(1920), + }, + [1294] = { + [sym_expression] = STATE(4527), + [sym__string] = STATE(4825), + [sym_conditional_expression] = STATE(4856), + [sym_assignment_expression] = STATE(4856), + [sym_pointer_expression] = STATE(3701), + [sym_unary_expression] = STATE(4856), + [sym_binary_expression] = STATE(4856), + [sym_update_expression] = STATE(4856), + [sym_cast_expression] = STATE(4856), + [sym_sizeof_expression] = STATE(4856), + [sym_alignof_expression] = STATE(4856), + [sym_offsetof_expression] = STATE(4856), + [sym_generic_expression] = STATE(4856), + [sym_subscript_expression] = STATE(3701), + [sym_call_expression] = STATE(3701), + [sym_gnu_asm_expression] = STATE(4856), + [sym_extension_expression] = STATE(4856), + [sym_field_expression] = STATE(3701), + [sym_compound_literal_expression] = STATE(4856), + [sym_parenthesized_expression] = STATE(3701), + [sym_char_literal] = STATE(4825), + [sym_concatenated_string] = STATE(4825), + [sym_string_literal] = STATE(3812), + [sym_null] = STATE(4856), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7816), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(4856), + [sym_raw_string_literal] = STATE(3812), + [sym_co_await_expression] = STATE(4856), + [sym_new_expression] = STATE(4856), + [sym_delete_expression] = STATE(4856), + [sym_requires_clause] = STATE(4856), + [sym_requires_expression] = STATE(4856), + [sym_lambda_expression] = STATE(4856), + [sym_lambda_capture_specifier] = STATE(5489), + [sym_fold_expression] = STATE(4856), + [sym_parameter_pack_expansion] = STATE(4856), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5769), + [sym_qualified_identifier] = STATE(3701), + [sym_qualified_type_identifier] = STATE(7816), + [sym_user_defined_literal] = STATE(3701), + [sym_identifier] = ACTIONS(3875), + [anon_sym_LPAREN2] = ACTIONS(3130), + [anon_sym_BANG] = ACTIONS(3132), + [anon_sym_TILDE] = ACTIONS(3132), + [anon_sym_DASH] = ACTIONS(3134), + [anon_sym_PLUS] = ACTIONS(3134), + [anon_sym_STAR] = ACTIONS(3136), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym___extension__] = ACTIONS(3877), + [anon_sym_COLON_COLON] = ACTIONS(3140), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(3881), + [anon_sym_not] = ACTIONS(3134), + [anon_sym_compl] = ACTIONS(3134), + [anon_sym_DASH_DASH] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_sizeof] = ACTIONS(3156), + [anon_sym___alignof__] = ACTIONS(3158), + [anon_sym___alignof] = ACTIONS(3158), + [anon_sym__alignof] = ACTIONS(3158), + [anon_sym_alignof] = ACTIONS(3158), + [anon_sym__Alignof] = ACTIONS(3158), + [anon_sym_offsetof] = ACTIONS(3160), + [anon_sym__Generic] = ACTIONS(3162), + [anon_sym_asm] = ACTIONS(3164), + [anon_sym___asm__] = ACTIONS(3164), + [anon_sym___asm] = ACTIONS(3164), + [sym_number_literal] = ACTIONS(3166), + [anon_sym_L_SQUOTE] = ACTIONS(3168), + [anon_sym_u_SQUOTE] = ACTIONS(3168), + [anon_sym_U_SQUOTE] = ACTIONS(3168), + [anon_sym_u8_SQUOTE] = ACTIONS(3168), + [anon_sym_SQUOTE] = ACTIONS(3168), + [anon_sym_L_DQUOTE] = ACTIONS(3170), + [anon_sym_u_DQUOTE] = ACTIONS(3170), + [anon_sym_U_DQUOTE] = ACTIONS(3170), + [anon_sym_u8_DQUOTE] = ACTIONS(3170), + [anon_sym_DQUOTE] = ACTIONS(3170), + [sym_true] = ACTIONS(3172), + [sym_false] = ACTIONS(3172), + [anon_sym_NULL] = ACTIONS(3174), + [anon_sym_nullptr] = ACTIONS(3174), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3184), + [anon_sym_R_DQUOTE] = ACTIONS(3186), + [anon_sym_LR_DQUOTE] = ACTIONS(3186), + [anon_sym_uR_DQUOTE] = ACTIONS(3186), + [anon_sym_UR_DQUOTE] = ACTIONS(3186), + [anon_sym_u8R_DQUOTE] = ACTIONS(3186), + [anon_sym_co_await] = ACTIONS(3188), + [anon_sym_new] = ACTIONS(3190), + [anon_sym_requires] = ACTIONS(3192), + [sym_this] = ACTIONS(3172), + }, + [1295] = { [sym_expression] = STATE(4581), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), - [anon_sym_COLON_COLON] = ACTIONS(47), + [sym__string] = STATE(4825), + [sym_conditional_expression] = STATE(4856), + [sym_assignment_expression] = STATE(4856), + [sym_pointer_expression] = STATE(3701), + [sym_unary_expression] = STATE(4856), + [sym_binary_expression] = STATE(4856), + [sym_update_expression] = STATE(4856), + [sym_cast_expression] = STATE(4856), + [sym_sizeof_expression] = STATE(4856), + [sym_alignof_expression] = STATE(4856), + [sym_offsetof_expression] = STATE(4856), + [sym_generic_expression] = STATE(4856), + [sym_subscript_expression] = STATE(3701), + [sym_call_expression] = STATE(3701), + [sym_gnu_asm_expression] = STATE(4856), + [sym_extension_expression] = STATE(4856), + [sym_field_expression] = STATE(3701), + [sym_compound_literal_expression] = STATE(4856), + [sym_parenthesized_expression] = STATE(3701), + [sym_char_literal] = STATE(4825), + [sym_concatenated_string] = STATE(4825), + [sym_string_literal] = STATE(3812), + [sym_null] = STATE(4856), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7816), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(4856), + [sym_raw_string_literal] = STATE(3812), + [sym_co_await_expression] = STATE(4856), + [sym_new_expression] = STATE(4856), + [sym_delete_expression] = STATE(4856), + [sym_requires_clause] = STATE(4856), + [sym_requires_expression] = STATE(4856), + [sym_lambda_expression] = STATE(4856), + [sym_lambda_capture_specifier] = STATE(5489), + [sym_fold_expression] = STATE(4856), + [sym_parameter_pack_expansion] = STATE(4856), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5769), + [sym_qualified_identifier] = STATE(3701), + [sym_qualified_type_identifier] = STATE(7816), + [sym_user_defined_literal] = STATE(3701), + [sym_identifier] = ACTIONS(3875), + [anon_sym_LPAREN2] = ACTIONS(3130), + [anon_sym_BANG] = ACTIONS(3132), + [anon_sym_TILDE] = ACTIONS(3132), + [anon_sym_DASH] = ACTIONS(3134), + [anon_sym_PLUS] = ACTIONS(3134), + [anon_sym_STAR] = ACTIONS(3136), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym___extension__] = ACTIONS(3877), + [anon_sym_COLON_COLON] = ACTIONS(3140), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), + [sym_primitive_type] = ACTIONS(3881), + [anon_sym_not] = ACTIONS(3134), + [anon_sym_compl] = ACTIONS(3134), + [anon_sym_DASH_DASH] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_sizeof] = ACTIONS(3156), + [anon_sym___alignof__] = ACTIONS(3158), + [anon_sym___alignof] = ACTIONS(3158), + [anon_sym__alignof] = ACTIONS(3158), + [anon_sym_alignof] = ACTIONS(3158), + [anon_sym__Alignof] = ACTIONS(3158), + [anon_sym_offsetof] = ACTIONS(3160), + [anon_sym__Generic] = ACTIONS(3162), + [anon_sym_asm] = ACTIONS(3164), + [anon_sym___asm__] = ACTIONS(3164), + [anon_sym___asm] = ACTIONS(3164), + [sym_number_literal] = ACTIONS(3166), + [anon_sym_L_SQUOTE] = ACTIONS(3168), + [anon_sym_u_SQUOTE] = ACTIONS(3168), + [anon_sym_U_SQUOTE] = ACTIONS(3168), + [anon_sym_u8_SQUOTE] = ACTIONS(3168), + [anon_sym_SQUOTE] = ACTIONS(3168), + [anon_sym_L_DQUOTE] = ACTIONS(3170), + [anon_sym_u_DQUOTE] = ACTIONS(3170), + [anon_sym_U_DQUOTE] = ACTIONS(3170), + [anon_sym_u8_DQUOTE] = ACTIONS(3170), + [anon_sym_DQUOTE] = ACTIONS(3170), + [sym_true] = ACTIONS(3172), + [sym_false] = ACTIONS(3172), + [anon_sym_NULL] = ACTIONS(3174), + [anon_sym_nullptr] = ACTIONS(3174), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3184), + [anon_sym_R_DQUOTE] = ACTIONS(3186), + [anon_sym_LR_DQUOTE] = ACTIONS(3186), + [anon_sym_uR_DQUOTE] = ACTIONS(3186), + [anon_sym_UR_DQUOTE] = ACTIONS(3186), + [anon_sym_u8R_DQUOTE] = ACTIONS(3186), + [anon_sym_co_await] = ACTIONS(3188), + [anon_sym_new] = ACTIONS(3190), + [anon_sym_requires] = ACTIONS(3192), + [sym_this] = ACTIONS(3172), + }, + [1296] = { + [sym_expression] = STATE(3641), + [sym__string] = STATE(3775), + [sym_conditional_expression] = STATE(3886), + [sym_assignment_expression] = STATE(3886), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(3886), + [sym_binary_expression] = STATE(3886), + [sym_update_expression] = STATE(3886), + [sym_cast_expression] = STATE(3886), + [sym_sizeof_expression] = STATE(3886), + [sym_alignof_expression] = STATE(3886), + [sym_offsetof_expression] = STATE(3886), + [sym_generic_expression] = STATE(3886), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(3886), + [sym_extension_expression] = STATE(3886), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(3886), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(3775), + [sym_concatenated_string] = STATE(3775), + [sym_string_literal] = STATE(2596), + [sym_null] = STATE(3886), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7756), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3886), + [sym_raw_string_literal] = STATE(2596), + [sym_co_await_expression] = STATE(3886), + [sym_new_expression] = STATE(3886), + [sym_delete_expression] = STATE(3886), + [sym_requires_clause] = STATE(3886), + [sym_requires_expression] = STATE(3886), + [sym_lambda_expression] = STATE(3886), + [sym_lambda_capture_specifier] = STATE(5492), + [sym_fold_expression] = STATE(3886), + [sym_parameter_pack_expansion] = STATE(3886), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(7756), + [sym_user_defined_literal] = STATE(3522), + [sym_identifier] = ACTIONS(2619), + [anon_sym_LPAREN2] = ACTIONS(1888), + [anon_sym_BANG] = ACTIONS(1890), + [anon_sym_TILDE] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1892), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(2621), + [anon_sym_COLON_COLON] = ACTIONS(1898), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2625), + [anon_sym_not] = ACTIONS(1892), + [anon_sym_compl] = ACTIONS(1892), + [anon_sym_DASH_DASH] = ACTIONS(1902), + [anon_sym_PLUS_PLUS] = ACTIONS(1902), + [anon_sym_sizeof] = ACTIONS(1904), + [anon_sym___alignof__] = ACTIONS(1906), + [anon_sym___alignof] = ACTIONS(1906), + [anon_sym__alignof] = ACTIONS(1906), + [anon_sym_alignof] = ACTIONS(1906), + [anon_sym__Alignof] = ACTIONS(1906), + [anon_sym_offsetof] = ACTIONS(1908), + [anon_sym__Generic] = ACTIONS(1910), + [anon_sym_asm] = ACTIONS(1912), + [anon_sym___asm__] = ACTIONS(1912), + [anon_sym___asm] = ACTIONS(1912), + [sym_number_literal] = ACTIONS(1914), + [anon_sym_L_SQUOTE] = ACTIONS(1916), + [anon_sym_u_SQUOTE] = ACTIONS(1916), + [anon_sym_U_SQUOTE] = ACTIONS(1916), + [anon_sym_u8_SQUOTE] = ACTIONS(1916), + [anon_sym_SQUOTE] = ACTIONS(1916), + [anon_sym_L_DQUOTE] = ACTIONS(1918), + [anon_sym_u_DQUOTE] = ACTIONS(1918), + [anon_sym_U_DQUOTE] = ACTIONS(1918), + [anon_sym_u8_DQUOTE] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1918), + [sym_true] = ACTIONS(1920), + [sym_false] = ACTIONS(1920), + [anon_sym_NULL] = ACTIONS(1922), + [anon_sym_nullptr] = ACTIONS(1922), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1924), + [anon_sym_R_DQUOTE] = ACTIONS(1926), + [anon_sym_LR_DQUOTE] = ACTIONS(1926), + [anon_sym_uR_DQUOTE] = ACTIONS(1926), + [anon_sym_UR_DQUOTE] = ACTIONS(1926), + [anon_sym_u8R_DQUOTE] = ACTIONS(1926), + [anon_sym_co_await] = ACTIONS(1928), + [anon_sym_new] = ACTIONS(1930), + [anon_sym_requires] = ACTIONS(1932), + [sym_this] = ACTIONS(1920), + }, + [1297] = { + [sym_expression] = STATE(4751), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3597), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3597), + [sym_call_expression] = STATE(3597), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3597), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3597), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3597), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3597), + [sym_identifier] = ACTIONS(3857), + [anon_sym_LPAREN2] = ACTIONS(4648), + [anon_sym_BANG] = ACTIONS(3861), + [anon_sym_TILDE] = ACTIONS(3861), + [anon_sym_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3859), + [anon_sym_STAR] = ACTIONS(4366), + [anon_sym_AMP] = ACTIONS(4366), + [anon_sym___extension__] = ACTIONS(3863), + [anon_sym_COLON_COLON] = ACTIONS(3865), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3859), + [anon_sym_compl] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(4368), + [anon_sym_PLUS_PLUS] = ACTIONS(4368), + [anon_sym_sizeof] = ACTIONS(3867), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -201476,79 +210277,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(145), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3869), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), + [anon_sym_co_await] = ACTIONS(3871), + [anon_sym_new] = ACTIONS(3873), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1220] = { - [sym_expression] = STATE(4744), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), - [anon_sym_COLON_COLON] = ACTIONS(47), + [1298] = { + [sym_expression] = STATE(4583), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3728), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3728), + [sym_call_expression] = STATE(3728), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3728), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3728), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3728), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3728), + [sym_identifier] = ACTIONS(3883), + [anon_sym_LPAREN2] = ACTIONS(3901), + [anon_sym_BANG] = ACTIONS(3887), + [anon_sym_TILDE] = ACTIONS(3887), + [anon_sym_DASH] = ACTIONS(3885), + [anon_sym_PLUS] = ACTIONS(3885), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(3889), + [anon_sym_COLON_COLON] = ACTIONS(3891), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3885), + [anon_sym_compl] = ACTIONS(3885), + [anon_sym_DASH_DASH] = ACTIONS(3905), + [anon_sym_PLUS_PLUS] = ACTIONS(3905), + [anon_sym_sizeof] = ACTIONS(3893), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -201576,174 +210377,274 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(145), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3895), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), + [anon_sym_co_await] = ACTIONS(3897), + [anon_sym_new] = ACTIONS(3873), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1221] = { - [sym_expression] = STATE(3582), - [sym__string] = STATE(3714), - [sym_conditional_expression] = STATE(3908), - [sym_assignment_expression] = STATE(3908), - [sym_pointer_expression] = STATE(3506), - [sym_unary_expression] = STATE(3908), - [sym_binary_expression] = STATE(3908), - [sym_update_expression] = STATE(3908), - [sym_cast_expression] = STATE(3908), - [sym_sizeof_expression] = STATE(3908), - [sym_alignof_expression] = STATE(3908), - [sym_offsetof_expression] = STATE(3908), - [sym_generic_expression] = STATE(3908), - [sym_subscript_expression] = STATE(3506), - [sym_call_expression] = STATE(3506), - [sym_gnu_asm_expression] = STATE(3908), - [sym_extension_expression] = STATE(3908), - [sym_field_expression] = STATE(3506), - [sym_compound_literal_expression] = STATE(3908), - [sym_parenthesized_expression] = STATE(3506), - [sym_char_literal] = STATE(3714), - [sym_concatenated_string] = STATE(3714), - [sym_string_literal] = STATE(2566), - [sym_null] = STATE(3908), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7868), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3908), - [sym_raw_string_literal] = STATE(2566), - [sym_co_await_expression] = STATE(3908), - [sym_new_expression] = STATE(3908), - [sym_delete_expression] = STATE(3908), - [sym_requires_clause] = STATE(3908), - [sym_requires_expression] = STATE(3908), - [sym_lambda_expression] = STATE(3908), - [sym_lambda_capture_specifier] = STATE(5415), - [sym_fold_expression] = STATE(3908), - [sym_parameter_pack_expansion] = STATE(3908), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3506), - [sym_qualified_type_identifier] = STATE(7868), - [sym_user_defined_literal] = STATE(3506), - [sym_identifier] = ACTIONS(2605), - [anon_sym_LPAREN2] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1870), - [anon_sym_TILDE] = ACTIONS(1870), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_PLUS] = ACTIONS(1872), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(2607), - [anon_sym_COLON_COLON] = ACTIONS(1880), + [1299] = { + [sym_expression] = STATE(3710), + [sym__string] = STATE(3775), + [sym_conditional_expression] = STATE(3886), + [sym_assignment_expression] = STATE(3886), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(3886), + [sym_binary_expression] = STATE(3886), + [sym_update_expression] = STATE(3886), + [sym_cast_expression] = STATE(3886), + [sym_sizeof_expression] = STATE(3886), + [sym_alignof_expression] = STATE(3886), + [sym_offsetof_expression] = STATE(3886), + [sym_generic_expression] = STATE(3886), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(3886), + [sym_extension_expression] = STATE(3886), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(3886), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(3775), + [sym_concatenated_string] = STATE(3775), + [sym_string_literal] = STATE(2596), + [sym_null] = STATE(3886), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7756), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3886), + [sym_raw_string_literal] = STATE(2596), + [sym_co_await_expression] = STATE(3886), + [sym_new_expression] = STATE(3886), + [sym_delete_expression] = STATE(3886), + [sym_requires_clause] = STATE(3886), + [sym_requires_expression] = STATE(3886), + [sym_lambda_expression] = STATE(3886), + [sym_lambda_capture_specifier] = STATE(5492), + [sym_fold_expression] = STATE(3886), + [sym_parameter_pack_expansion] = STATE(3886), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(7756), + [sym_user_defined_literal] = STATE(3522), + [sym_identifier] = ACTIONS(2619), + [anon_sym_LPAREN2] = ACTIONS(1888), + [anon_sym_BANG] = ACTIONS(1890), + [anon_sym_TILDE] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1892), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(2621), + [anon_sym_COLON_COLON] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2611), - [anon_sym_not] = ACTIONS(1872), - [anon_sym_compl] = ACTIONS(1872), - [anon_sym_DASH_DASH] = ACTIONS(1892), - [anon_sym_PLUS_PLUS] = ACTIONS(1892), - [anon_sym_sizeof] = ACTIONS(1894), - [anon_sym___alignof__] = ACTIONS(1896), - [anon_sym___alignof] = ACTIONS(1896), - [anon_sym__alignof] = ACTIONS(1896), - [anon_sym_alignof] = ACTIONS(1896), - [anon_sym__Alignof] = ACTIONS(1896), - [anon_sym_offsetof] = ACTIONS(1898), - [anon_sym__Generic] = ACTIONS(1900), - [anon_sym_asm] = ACTIONS(1902), - [anon_sym___asm__] = ACTIONS(1902), - [anon_sym___asm] = ACTIONS(1902), - [sym_number_literal] = ACTIONS(1904), - [anon_sym_L_SQUOTE] = ACTIONS(1906), - [anon_sym_u_SQUOTE] = ACTIONS(1906), - [anon_sym_U_SQUOTE] = ACTIONS(1906), - [anon_sym_u8_SQUOTE] = ACTIONS(1906), - [anon_sym_SQUOTE] = ACTIONS(1906), - [anon_sym_L_DQUOTE] = ACTIONS(1908), - [anon_sym_u_DQUOTE] = ACTIONS(1908), - [anon_sym_U_DQUOTE] = ACTIONS(1908), - [anon_sym_u8_DQUOTE] = ACTIONS(1908), - [anon_sym_DQUOTE] = ACTIONS(1908), - [sym_true] = ACTIONS(1910), - [sym_false] = ACTIONS(1910), - [anon_sym_NULL] = ACTIONS(1912), - [anon_sym_nullptr] = ACTIONS(1912), + [sym_primitive_type] = ACTIONS(2625), + [anon_sym_not] = ACTIONS(1892), + [anon_sym_compl] = ACTIONS(1892), + [anon_sym_DASH_DASH] = ACTIONS(1902), + [anon_sym_PLUS_PLUS] = ACTIONS(1902), + [anon_sym_sizeof] = ACTIONS(1904), + [anon_sym___alignof__] = ACTIONS(1906), + [anon_sym___alignof] = ACTIONS(1906), + [anon_sym__alignof] = ACTIONS(1906), + [anon_sym_alignof] = ACTIONS(1906), + [anon_sym__Alignof] = ACTIONS(1906), + [anon_sym_offsetof] = ACTIONS(1908), + [anon_sym__Generic] = ACTIONS(1910), + [anon_sym_asm] = ACTIONS(1912), + [anon_sym___asm__] = ACTIONS(1912), + [anon_sym___asm] = ACTIONS(1912), + [sym_number_literal] = ACTIONS(1914), + [anon_sym_L_SQUOTE] = ACTIONS(1916), + [anon_sym_u_SQUOTE] = ACTIONS(1916), + [anon_sym_U_SQUOTE] = ACTIONS(1916), + [anon_sym_u8_SQUOTE] = ACTIONS(1916), + [anon_sym_SQUOTE] = ACTIONS(1916), + [anon_sym_L_DQUOTE] = ACTIONS(1918), + [anon_sym_u_DQUOTE] = ACTIONS(1918), + [anon_sym_U_DQUOTE] = ACTIONS(1918), + [anon_sym_u8_DQUOTE] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1918), + [sym_true] = ACTIONS(1920), + [sym_false] = ACTIONS(1920), + [anon_sym_NULL] = ACTIONS(1922), + [anon_sym_nullptr] = ACTIONS(1922), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1916), - [anon_sym_R_DQUOTE] = ACTIONS(1918), - [anon_sym_LR_DQUOTE] = ACTIONS(1918), - [anon_sym_uR_DQUOTE] = ACTIONS(1918), - [anon_sym_UR_DQUOTE] = ACTIONS(1918), - [anon_sym_u8R_DQUOTE] = ACTIONS(1918), - [anon_sym_co_await] = ACTIONS(1920), - [anon_sym_new] = ACTIONS(1922), - [anon_sym_requires] = ACTIONS(1924), - [sym_this] = ACTIONS(1910), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1924), + [anon_sym_R_DQUOTE] = ACTIONS(1926), + [anon_sym_LR_DQUOTE] = ACTIONS(1926), + [anon_sym_uR_DQUOTE] = ACTIONS(1926), + [anon_sym_UR_DQUOTE] = ACTIONS(1926), + [anon_sym_u8R_DQUOTE] = ACTIONS(1926), + [anon_sym_co_await] = ACTIONS(1928), + [anon_sym_new] = ACTIONS(1930), + [anon_sym_requires] = ACTIONS(1932), + [sym_this] = ACTIONS(1920), }, - [1222] = { - [sym_expression] = STATE(4598), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1300] = { + [sym_expression] = STATE(3644), + [sym__string] = STATE(3775), + [sym_conditional_expression] = STATE(3886), + [sym_assignment_expression] = STATE(3886), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(3886), + [sym_binary_expression] = STATE(3886), + [sym_update_expression] = STATE(3886), + [sym_cast_expression] = STATE(3886), + [sym_sizeof_expression] = STATE(3886), + [sym_alignof_expression] = STATE(3886), + [sym_offsetof_expression] = STATE(3886), + [sym_generic_expression] = STATE(3886), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(3886), + [sym_extension_expression] = STATE(3886), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(3886), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(3775), + [sym_concatenated_string] = STATE(3775), + [sym_string_literal] = STATE(2596), + [sym_null] = STATE(3886), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7756), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3886), + [sym_raw_string_literal] = STATE(2596), + [sym_co_await_expression] = STATE(3886), + [sym_new_expression] = STATE(3886), + [sym_delete_expression] = STATE(3886), + [sym_requires_clause] = STATE(3886), + [sym_requires_expression] = STATE(3886), + [sym_lambda_expression] = STATE(3886), + [sym_lambda_capture_specifier] = STATE(5492), + [sym_fold_expression] = STATE(3886), + [sym_parameter_pack_expansion] = STATE(3886), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(7756), + [sym_user_defined_literal] = STATE(3522), + [sym_identifier] = ACTIONS(2619), + [anon_sym_LPAREN2] = ACTIONS(1888), + [anon_sym_BANG] = ACTIONS(1890), + [anon_sym_TILDE] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1892), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(2621), + [anon_sym_COLON_COLON] = ACTIONS(1898), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2625), + [anon_sym_not] = ACTIONS(1892), + [anon_sym_compl] = ACTIONS(1892), + [anon_sym_DASH_DASH] = ACTIONS(1902), + [anon_sym_PLUS_PLUS] = ACTIONS(1902), + [anon_sym_sizeof] = ACTIONS(1904), + [anon_sym___alignof__] = ACTIONS(1906), + [anon_sym___alignof] = ACTIONS(1906), + [anon_sym__alignof] = ACTIONS(1906), + [anon_sym_alignof] = ACTIONS(1906), + [anon_sym__Alignof] = ACTIONS(1906), + [anon_sym_offsetof] = ACTIONS(1908), + [anon_sym__Generic] = ACTIONS(1910), + [anon_sym_asm] = ACTIONS(1912), + [anon_sym___asm__] = ACTIONS(1912), + [anon_sym___asm] = ACTIONS(1912), + [sym_number_literal] = ACTIONS(1914), + [anon_sym_L_SQUOTE] = ACTIONS(1916), + [anon_sym_u_SQUOTE] = ACTIONS(1916), + [anon_sym_U_SQUOTE] = ACTIONS(1916), + [anon_sym_u8_SQUOTE] = ACTIONS(1916), + [anon_sym_SQUOTE] = ACTIONS(1916), + [anon_sym_L_DQUOTE] = ACTIONS(1918), + [anon_sym_u_DQUOTE] = ACTIONS(1918), + [anon_sym_U_DQUOTE] = ACTIONS(1918), + [anon_sym_u8_DQUOTE] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1918), + [sym_true] = ACTIONS(1920), + [sym_false] = ACTIONS(1920), + [anon_sym_NULL] = ACTIONS(1922), + [anon_sym_nullptr] = ACTIONS(1922), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1924), + [anon_sym_R_DQUOTE] = ACTIONS(1926), + [anon_sym_LR_DQUOTE] = ACTIONS(1926), + [anon_sym_uR_DQUOTE] = ACTIONS(1926), + [anon_sym_UR_DQUOTE] = ACTIONS(1926), + [anon_sym_u8R_DQUOTE] = ACTIONS(1926), + [anon_sym_co_await] = ACTIONS(1928), + [anon_sym_new] = ACTIONS(1930), + [anon_sym_requires] = ACTIONS(1932), + [sym_this] = ACTIONS(1920), + }, + [1301] = { + [sym_expression] = STATE(4686), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -201776,74 +210677,474 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(145), + [anon_sym_R_DQUOTE] = ACTIONS(159), + [anon_sym_LR_DQUOTE] = ACTIONS(159), + [anon_sym_uR_DQUOTE] = ACTIONS(159), + [anon_sym_UR_DQUOTE] = ACTIONS(159), + [anon_sym_u8R_DQUOTE] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), + }, + [1302] = { + [sym_expression] = STATE(3260), + [sym__string] = STATE(3549), + [sym_conditional_expression] = STATE(3636), + [sym_assignment_expression] = STATE(3636), + [sym_pointer_expression] = STATE(3696), + [sym_unary_expression] = STATE(3636), + [sym_binary_expression] = STATE(3636), + [sym_update_expression] = STATE(3636), + [sym_cast_expression] = STATE(3636), + [sym_sizeof_expression] = STATE(3636), + [sym_alignof_expression] = STATE(3636), + [sym_offsetof_expression] = STATE(3636), + [sym_generic_expression] = STATE(3636), + [sym_subscript_expression] = STATE(3696), + [sym_call_expression] = STATE(3696), + [sym_gnu_asm_expression] = STATE(3636), + [sym_extension_expression] = STATE(3636), + [sym_field_expression] = STATE(3696), + [sym_compound_literal_expression] = STATE(3636), + [sym_parenthesized_expression] = STATE(3696), + [sym_char_literal] = STATE(3549), + [sym_concatenated_string] = STATE(3549), + [sym_string_literal] = STATE(2433), + [sym_null] = STATE(3636), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7883), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3636), + [sym_raw_string_literal] = STATE(2433), + [sym_co_await_expression] = STATE(3636), + [sym_new_expression] = STATE(3636), + [sym_delete_expression] = STATE(3636), + [sym_requires_clause] = STATE(3636), + [sym_requires_expression] = STATE(3636), + [sym_lambda_expression] = STATE(3636), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3636), + [sym_parameter_pack_expansion] = STATE(3636), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5769), + [sym_qualified_identifier] = STATE(3696), + [sym_qualified_type_identifier] = STATE(7883), + [sym_user_defined_literal] = STATE(3696), + [sym_identifier] = ACTIONS(2483), + [anon_sym_LPAREN2] = ACTIONS(4668), + [anon_sym_BANG] = ACTIONS(2487), + [anon_sym_TILDE] = ACTIONS(2487), + [anon_sym_DASH] = ACTIONS(2485), + [anon_sym_PLUS] = ACTIONS(2485), + [anon_sym_STAR] = ACTIONS(3136), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym___extension__] = ACTIONS(2489), + [anon_sym_COLON_COLON] = ACTIONS(2491), + [anon_sym_LBRACK] = ACTIONS(4919), + [sym_primitive_type] = ACTIONS(2495), + [anon_sym_not] = ACTIONS(2485), + [anon_sym_compl] = ACTIONS(2485), + [anon_sym_DASH_DASH] = ACTIONS(4513), + [anon_sym_PLUS_PLUS] = ACTIONS(4513), + [anon_sym_sizeof] = ACTIONS(2497), + [anon_sym___alignof__] = ACTIONS(2499), + [anon_sym___alignof] = ACTIONS(2499), + [anon_sym__alignof] = ACTIONS(2499), + [anon_sym_alignof] = ACTIONS(2499), + [anon_sym__Alignof] = ACTIONS(2499), + [anon_sym_offsetof] = ACTIONS(2501), + [anon_sym__Generic] = ACTIONS(2503), + [anon_sym_asm] = ACTIONS(2505), + [anon_sym___asm__] = ACTIONS(2505), + [anon_sym___asm] = ACTIONS(2505), + [sym_number_literal] = ACTIONS(2507), + [anon_sym_L_SQUOTE] = ACTIONS(2509), + [anon_sym_u_SQUOTE] = ACTIONS(2509), + [anon_sym_U_SQUOTE] = ACTIONS(2509), + [anon_sym_u8_SQUOTE] = ACTIONS(2509), + [anon_sym_SQUOTE] = ACTIONS(2509), + [anon_sym_L_DQUOTE] = ACTIONS(2511), + [anon_sym_u_DQUOTE] = ACTIONS(2511), + [anon_sym_U_DQUOTE] = ACTIONS(2511), + [anon_sym_u8_DQUOTE] = ACTIONS(2511), + [anon_sym_DQUOTE] = ACTIONS(2511), + [sym_true] = ACTIONS(2513), + [sym_false] = ACTIONS(2513), + [anon_sym_NULL] = ACTIONS(2515), + [anon_sym_nullptr] = ACTIONS(2515), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(2517), + [anon_sym_R_DQUOTE] = ACTIONS(2519), + [anon_sym_LR_DQUOTE] = ACTIONS(2519), + [anon_sym_uR_DQUOTE] = ACTIONS(2519), + [anon_sym_UR_DQUOTE] = ACTIONS(2519), + [anon_sym_u8R_DQUOTE] = ACTIONS(2519), + [anon_sym_co_await] = ACTIONS(2521), + [anon_sym_new] = ACTIONS(2523), + [anon_sym_requires] = ACTIONS(2525), + [sym_this] = ACTIONS(2513), + }, + [1303] = { + [sym_expression] = STATE(3267), + [sym__string] = STATE(3549), + [sym_conditional_expression] = STATE(3636), + [sym_assignment_expression] = STATE(3636), + [sym_pointer_expression] = STATE(3696), + [sym_unary_expression] = STATE(3636), + [sym_binary_expression] = STATE(3636), + [sym_update_expression] = STATE(3636), + [sym_cast_expression] = STATE(3636), + [sym_sizeof_expression] = STATE(3636), + [sym_alignof_expression] = STATE(3636), + [sym_offsetof_expression] = STATE(3636), + [sym_generic_expression] = STATE(3636), + [sym_subscript_expression] = STATE(3696), + [sym_call_expression] = STATE(3696), + [sym_gnu_asm_expression] = STATE(3636), + [sym_extension_expression] = STATE(3636), + [sym_field_expression] = STATE(3696), + [sym_compound_literal_expression] = STATE(3636), + [sym_parenthesized_expression] = STATE(3696), + [sym_char_literal] = STATE(3549), + [sym_concatenated_string] = STATE(3549), + [sym_string_literal] = STATE(2433), + [sym_null] = STATE(3636), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7883), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3636), + [sym_raw_string_literal] = STATE(2433), + [sym_co_await_expression] = STATE(3636), + [sym_new_expression] = STATE(3636), + [sym_delete_expression] = STATE(3636), + [sym_requires_clause] = STATE(3636), + [sym_requires_expression] = STATE(3636), + [sym_lambda_expression] = STATE(3636), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3636), + [sym_parameter_pack_expansion] = STATE(3636), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5769), + [sym_qualified_identifier] = STATE(3696), + [sym_qualified_type_identifier] = STATE(7883), + [sym_user_defined_literal] = STATE(3696), + [sym_identifier] = ACTIONS(2483), + [anon_sym_LPAREN2] = ACTIONS(4668), + [anon_sym_BANG] = ACTIONS(2487), + [anon_sym_TILDE] = ACTIONS(2487), + [anon_sym_DASH] = ACTIONS(2485), + [anon_sym_PLUS] = ACTIONS(2485), + [anon_sym_STAR] = ACTIONS(3136), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym___extension__] = ACTIONS(2489), + [anon_sym_COLON_COLON] = ACTIONS(2491), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2495), + [anon_sym_not] = ACTIONS(2485), + [anon_sym_compl] = ACTIONS(2485), + [anon_sym_DASH_DASH] = ACTIONS(4513), + [anon_sym_PLUS_PLUS] = ACTIONS(4513), + [anon_sym_sizeof] = ACTIONS(2497), + [anon_sym___alignof__] = ACTIONS(2499), + [anon_sym___alignof] = ACTIONS(2499), + [anon_sym__alignof] = ACTIONS(2499), + [anon_sym_alignof] = ACTIONS(2499), + [anon_sym__Alignof] = ACTIONS(2499), + [anon_sym_offsetof] = ACTIONS(2501), + [anon_sym__Generic] = ACTIONS(2503), + [anon_sym_asm] = ACTIONS(2505), + [anon_sym___asm__] = ACTIONS(2505), + [anon_sym___asm] = ACTIONS(2505), + [sym_number_literal] = ACTIONS(2507), + [anon_sym_L_SQUOTE] = ACTIONS(2509), + [anon_sym_u_SQUOTE] = ACTIONS(2509), + [anon_sym_U_SQUOTE] = ACTIONS(2509), + [anon_sym_u8_SQUOTE] = ACTIONS(2509), + [anon_sym_SQUOTE] = ACTIONS(2509), + [anon_sym_L_DQUOTE] = ACTIONS(2511), + [anon_sym_u_DQUOTE] = ACTIONS(2511), + [anon_sym_U_DQUOTE] = ACTIONS(2511), + [anon_sym_u8_DQUOTE] = ACTIONS(2511), + [anon_sym_DQUOTE] = ACTIONS(2511), + [sym_true] = ACTIONS(2513), + [sym_false] = ACTIONS(2513), + [anon_sym_NULL] = ACTIONS(2515), + [anon_sym_nullptr] = ACTIONS(2515), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(2517), + [anon_sym_R_DQUOTE] = ACTIONS(2519), + [anon_sym_LR_DQUOTE] = ACTIONS(2519), + [anon_sym_uR_DQUOTE] = ACTIONS(2519), + [anon_sym_UR_DQUOTE] = ACTIONS(2519), + [anon_sym_u8R_DQUOTE] = ACTIONS(2519), + [anon_sym_co_await] = ACTIONS(2521), + [anon_sym_new] = ACTIONS(2523), + [anon_sym_requires] = ACTIONS(2525), + [sym_this] = ACTIONS(2513), }, - [1223] = { + [1304] = { + [sym_expression] = STATE(3360), + [sym__string] = STATE(3549), + [sym_conditional_expression] = STATE(3636), + [sym_assignment_expression] = STATE(3636), + [sym_pointer_expression] = STATE(3696), + [sym_unary_expression] = STATE(3636), + [sym_binary_expression] = STATE(3636), + [sym_update_expression] = STATE(3636), + [sym_cast_expression] = STATE(3636), + [sym_sizeof_expression] = STATE(3636), + [sym_alignof_expression] = STATE(3636), + [sym_offsetof_expression] = STATE(3636), + [sym_generic_expression] = STATE(3636), + [sym_subscript_expression] = STATE(3696), + [sym_call_expression] = STATE(3696), + [sym_gnu_asm_expression] = STATE(3636), + [sym_extension_expression] = STATE(3636), + [sym_field_expression] = STATE(3696), + [sym_compound_literal_expression] = STATE(3636), + [sym_parenthesized_expression] = STATE(3696), + [sym_char_literal] = STATE(3549), + [sym_concatenated_string] = STATE(3549), + [sym_string_literal] = STATE(2433), + [sym_null] = STATE(3636), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7883), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3636), + [sym_raw_string_literal] = STATE(2433), + [sym_co_await_expression] = STATE(3636), + [sym_new_expression] = STATE(3636), + [sym_delete_expression] = STATE(3636), + [sym_requires_clause] = STATE(3636), + [sym_requires_expression] = STATE(3636), + [sym_lambda_expression] = STATE(3636), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3636), + [sym_parameter_pack_expansion] = STATE(3636), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5769), + [sym_qualified_identifier] = STATE(3696), + [sym_qualified_type_identifier] = STATE(7883), + [sym_user_defined_literal] = STATE(3696), + [sym_identifier] = ACTIONS(2483), + [anon_sym_LPAREN2] = ACTIONS(4668), + [anon_sym_BANG] = ACTIONS(2487), + [anon_sym_TILDE] = ACTIONS(2487), + [anon_sym_DASH] = ACTIONS(2485), + [anon_sym_PLUS] = ACTIONS(2485), + [anon_sym_STAR] = ACTIONS(3136), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym___extension__] = ACTIONS(2489), + [anon_sym_COLON_COLON] = ACTIONS(2491), + [anon_sym_LBRACK] = ACTIONS(4921), + [sym_primitive_type] = ACTIONS(2495), + [anon_sym_not] = ACTIONS(2485), + [anon_sym_compl] = ACTIONS(2485), + [anon_sym_DASH_DASH] = ACTIONS(4513), + [anon_sym_PLUS_PLUS] = ACTIONS(4513), + [anon_sym_sizeof] = ACTIONS(2497), + [anon_sym___alignof__] = ACTIONS(2499), + [anon_sym___alignof] = ACTIONS(2499), + [anon_sym__alignof] = ACTIONS(2499), + [anon_sym_alignof] = ACTIONS(2499), + [anon_sym__Alignof] = ACTIONS(2499), + [anon_sym_offsetof] = ACTIONS(2501), + [anon_sym__Generic] = ACTIONS(2503), + [anon_sym_asm] = ACTIONS(2505), + [anon_sym___asm__] = ACTIONS(2505), + [anon_sym___asm] = ACTIONS(2505), + [sym_number_literal] = ACTIONS(2507), + [anon_sym_L_SQUOTE] = ACTIONS(2509), + [anon_sym_u_SQUOTE] = ACTIONS(2509), + [anon_sym_U_SQUOTE] = ACTIONS(2509), + [anon_sym_u8_SQUOTE] = ACTIONS(2509), + [anon_sym_SQUOTE] = ACTIONS(2509), + [anon_sym_L_DQUOTE] = ACTIONS(2511), + [anon_sym_u_DQUOTE] = ACTIONS(2511), + [anon_sym_U_DQUOTE] = ACTIONS(2511), + [anon_sym_u8_DQUOTE] = ACTIONS(2511), + [anon_sym_DQUOTE] = ACTIONS(2511), + [sym_true] = ACTIONS(2513), + [sym_false] = ACTIONS(2513), + [anon_sym_NULL] = ACTIONS(2515), + [anon_sym_nullptr] = ACTIONS(2515), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(2517), + [anon_sym_R_DQUOTE] = ACTIONS(2519), + [anon_sym_LR_DQUOTE] = ACTIONS(2519), + [anon_sym_uR_DQUOTE] = ACTIONS(2519), + [anon_sym_UR_DQUOTE] = ACTIONS(2519), + [anon_sym_u8R_DQUOTE] = ACTIONS(2519), + [anon_sym_co_await] = ACTIONS(2521), + [anon_sym_new] = ACTIONS(2523), + [anon_sym_requires] = ACTIONS(2525), + [sym_this] = ACTIONS(2513), + }, + [1305] = { + [sym_expression] = STATE(3304), + [sym__string] = STATE(3549), + [sym_conditional_expression] = STATE(3636), + [sym_assignment_expression] = STATE(3636), + [sym_pointer_expression] = STATE(3696), + [sym_unary_expression] = STATE(3636), + [sym_binary_expression] = STATE(3636), + [sym_update_expression] = STATE(3636), + [sym_cast_expression] = STATE(3636), + [sym_sizeof_expression] = STATE(3636), + [sym_alignof_expression] = STATE(3636), + [sym_offsetof_expression] = STATE(3636), + [sym_generic_expression] = STATE(3636), + [sym_subscript_expression] = STATE(3696), + [sym_call_expression] = STATE(3696), + [sym_gnu_asm_expression] = STATE(3636), + [sym_extension_expression] = STATE(3636), + [sym_field_expression] = STATE(3696), + [sym_compound_literal_expression] = STATE(3636), + [sym_parenthesized_expression] = STATE(3696), + [sym_char_literal] = STATE(3549), + [sym_concatenated_string] = STATE(3549), + [sym_string_literal] = STATE(2433), + [sym_null] = STATE(3636), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7883), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3636), + [sym_raw_string_literal] = STATE(2433), + [sym_co_await_expression] = STATE(3636), + [sym_new_expression] = STATE(3636), + [sym_delete_expression] = STATE(3636), + [sym_requires_clause] = STATE(3636), + [sym_requires_expression] = STATE(3636), + [sym_lambda_expression] = STATE(3636), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3636), + [sym_parameter_pack_expansion] = STATE(3636), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5769), + [sym_qualified_identifier] = STATE(3696), + [sym_qualified_type_identifier] = STATE(7883), + [sym_user_defined_literal] = STATE(3696), + [sym_identifier] = ACTIONS(2483), + [anon_sym_LPAREN2] = ACTIONS(4668), + [anon_sym_BANG] = ACTIONS(2487), + [anon_sym_TILDE] = ACTIONS(2487), + [anon_sym_DASH] = ACTIONS(2485), + [anon_sym_PLUS] = ACTIONS(2485), + [anon_sym_STAR] = ACTIONS(3136), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym___extension__] = ACTIONS(2489), + [anon_sym_COLON_COLON] = ACTIONS(2491), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2495), + [anon_sym_not] = ACTIONS(2485), + [anon_sym_compl] = ACTIONS(2485), + [anon_sym_DASH_DASH] = ACTIONS(4513), + [anon_sym_PLUS_PLUS] = ACTIONS(4513), + [anon_sym_sizeof] = ACTIONS(2497), + [anon_sym___alignof__] = ACTIONS(2499), + [anon_sym___alignof] = ACTIONS(2499), + [anon_sym__alignof] = ACTIONS(2499), + [anon_sym_alignof] = ACTIONS(2499), + [anon_sym__Alignof] = ACTIONS(2499), + [anon_sym_offsetof] = ACTIONS(2501), + [anon_sym__Generic] = ACTIONS(2503), + [anon_sym_asm] = ACTIONS(2505), + [anon_sym___asm__] = ACTIONS(2505), + [anon_sym___asm] = ACTIONS(2505), + [sym_number_literal] = ACTIONS(2507), + [anon_sym_L_SQUOTE] = ACTIONS(2509), + [anon_sym_u_SQUOTE] = ACTIONS(2509), + [anon_sym_U_SQUOTE] = ACTIONS(2509), + [anon_sym_u8_SQUOTE] = ACTIONS(2509), + [anon_sym_SQUOTE] = ACTIONS(2509), + [anon_sym_L_DQUOTE] = ACTIONS(2511), + [anon_sym_u_DQUOTE] = ACTIONS(2511), + [anon_sym_U_DQUOTE] = ACTIONS(2511), + [anon_sym_u8_DQUOTE] = ACTIONS(2511), + [anon_sym_DQUOTE] = ACTIONS(2511), + [sym_true] = ACTIONS(2513), + [sym_false] = ACTIONS(2513), + [anon_sym_NULL] = ACTIONS(2515), + [anon_sym_nullptr] = ACTIONS(2515), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(2517), + [anon_sym_R_DQUOTE] = ACTIONS(2519), + [anon_sym_LR_DQUOTE] = ACTIONS(2519), + [anon_sym_uR_DQUOTE] = ACTIONS(2519), + [anon_sym_UR_DQUOTE] = ACTIONS(2519), + [anon_sym_u8R_DQUOTE] = ACTIONS(2519), + [anon_sym_co_await] = ACTIONS(2521), + [anon_sym_new] = ACTIONS(2523), + [anon_sym_requires] = ACTIONS(2525), + [sym_this] = ACTIONS(2513), + }, + [1306] = { [sym_expression] = STATE(4460), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -201876,7 +211177,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -201888,62 +211189,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1224] = { - [sym_expression] = STATE(4604), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1307] = { + [sym_expression] = STATE(4711), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -201976,7 +211277,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -201988,667 +211289,267 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1225] = { - [sym_expression] = STATE(3347), - [sym__string] = STATE(3360), - [sym_conditional_expression] = STATE(3651), - [sym_assignment_expression] = STATE(3651), - [sym_pointer_expression] = STATE(3547), - [sym_unary_expression] = STATE(3651), - [sym_binary_expression] = STATE(3651), - [sym_update_expression] = STATE(3651), - [sym_cast_expression] = STATE(3651), - [sym_sizeof_expression] = STATE(3651), - [sym_alignof_expression] = STATE(3651), - [sym_offsetof_expression] = STATE(3651), - [sym_generic_expression] = STATE(3651), - [sym_subscript_expression] = STATE(3547), - [sym_call_expression] = STATE(3547), - [sym_gnu_asm_expression] = STATE(3651), - [sym_extension_expression] = STATE(3651), - [sym_field_expression] = STATE(3547), - [sym_compound_literal_expression] = STATE(3651), - [sym_parenthesized_expression] = STATE(3547), - [sym_char_literal] = STATE(3360), - [sym_concatenated_string] = STATE(3360), - [sym_string_literal] = STATE(2369), - [sym_null] = STATE(3651), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7649), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3651), - [sym_raw_string_literal] = STATE(2369), - [sym_co_await_expression] = STATE(3651), - [sym_new_expression] = STATE(3651), - [sym_delete_expression] = STATE(3651), - [sym_requires_clause] = STATE(3651), - [sym_requires_expression] = STATE(3651), - [sym_lambda_expression] = STATE(3651), - [sym_lambda_capture_specifier] = STATE(5395), - [sym_fold_expression] = STATE(3651), - [sym_parameter_pack_expansion] = STATE(3651), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5773), - [sym_qualified_identifier] = STATE(3547), - [sym_qualified_type_identifier] = STATE(7649), - [sym_user_defined_literal] = STATE(3547), - [sym_identifier] = ACTIONS(2489), - [anon_sym_LPAREN2] = ACTIONS(4652), - [anon_sym_BANG] = ACTIONS(2493), - [anon_sym_TILDE] = ACTIONS(2493), - [anon_sym_DASH] = ACTIONS(2491), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_STAR] = ACTIONS(3124), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym___extension__] = ACTIONS(2495), - [anon_sym_COLON_COLON] = ACTIONS(2497), - [anon_sym_LBRACK] = ACTIONS(4899), - [sym_primitive_type] = ACTIONS(2501), - [anon_sym_not] = ACTIONS(2491), - [anon_sym_compl] = ACTIONS(2491), - [anon_sym_DASH_DASH] = ACTIONS(4358), - [anon_sym_PLUS_PLUS] = ACTIONS(4358), - [anon_sym_sizeof] = ACTIONS(2503), - [anon_sym___alignof__] = ACTIONS(2505), - [anon_sym___alignof] = ACTIONS(2505), - [anon_sym__alignof] = ACTIONS(2505), - [anon_sym_alignof] = ACTIONS(2505), - [anon_sym__Alignof] = ACTIONS(2505), - [anon_sym_offsetof] = ACTIONS(2507), - [anon_sym__Generic] = ACTIONS(2509), - [anon_sym_asm] = ACTIONS(2511), - [anon_sym___asm__] = ACTIONS(2511), - [anon_sym___asm] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2515), - [anon_sym_u_SQUOTE] = ACTIONS(2515), - [anon_sym_U_SQUOTE] = ACTIONS(2515), - [anon_sym_u8_SQUOTE] = ACTIONS(2515), - [anon_sym_SQUOTE] = ACTIONS(2515), - [anon_sym_L_DQUOTE] = ACTIONS(2517), - [anon_sym_u_DQUOTE] = ACTIONS(2517), - [anon_sym_U_DQUOTE] = ACTIONS(2517), - [anon_sym_u8_DQUOTE] = ACTIONS(2517), - [anon_sym_DQUOTE] = ACTIONS(2517), - [sym_true] = ACTIONS(2519), - [sym_false] = ACTIONS(2519), - [anon_sym_NULL] = ACTIONS(2521), - [anon_sym_nullptr] = ACTIONS(2521), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(2523), - [anon_sym_R_DQUOTE] = ACTIONS(2525), - [anon_sym_LR_DQUOTE] = ACTIONS(2525), - [anon_sym_uR_DQUOTE] = ACTIONS(2525), - [anon_sym_UR_DQUOTE] = ACTIONS(2525), - [anon_sym_u8R_DQUOTE] = ACTIONS(2525), - [anon_sym_co_await] = ACTIONS(2527), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_requires] = ACTIONS(2531), - [sym_this] = ACTIONS(2519), - }, - [1226] = { - [sym_expression] = STATE(3289), - [sym__string] = STATE(3360), - [sym_conditional_expression] = STATE(3651), - [sym_assignment_expression] = STATE(3651), - [sym_pointer_expression] = STATE(3547), - [sym_unary_expression] = STATE(3651), - [sym_binary_expression] = STATE(3651), - [sym_update_expression] = STATE(3651), - [sym_cast_expression] = STATE(3651), - [sym_sizeof_expression] = STATE(3651), - [sym_alignof_expression] = STATE(3651), - [sym_offsetof_expression] = STATE(3651), - [sym_generic_expression] = STATE(3651), - [sym_subscript_expression] = STATE(3547), - [sym_call_expression] = STATE(3547), - [sym_gnu_asm_expression] = STATE(3651), - [sym_extension_expression] = STATE(3651), - [sym_field_expression] = STATE(3547), - [sym_compound_literal_expression] = STATE(3651), - [sym_parenthesized_expression] = STATE(3547), - [sym_char_literal] = STATE(3360), - [sym_concatenated_string] = STATE(3360), - [sym_string_literal] = STATE(2369), - [sym_null] = STATE(3651), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7649), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3651), - [sym_raw_string_literal] = STATE(2369), - [sym_co_await_expression] = STATE(3651), - [sym_new_expression] = STATE(3651), - [sym_delete_expression] = STATE(3651), - [sym_requires_clause] = STATE(3651), - [sym_requires_expression] = STATE(3651), - [sym_lambda_expression] = STATE(3651), - [sym_lambda_capture_specifier] = STATE(5395), - [sym_fold_expression] = STATE(3651), - [sym_parameter_pack_expansion] = STATE(3651), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5773), - [sym_qualified_identifier] = STATE(3547), - [sym_qualified_type_identifier] = STATE(7649), - [sym_user_defined_literal] = STATE(3547), - [sym_identifier] = ACTIONS(2489), - [anon_sym_LPAREN2] = ACTIONS(4652), - [anon_sym_BANG] = ACTIONS(2493), - [anon_sym_TILDE] = ACTIONS(2493), - [anon_sym_DASH] = ACTIONS(2491), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_STAR] = ACTIONS(3124), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym___extension__] = ACTIONS(2495), - [anon_sym_COLON_COLON] = ACTIONS(2497), + [1308] = { + [sym_expression] = STATE(3365), + [sym__string] = STATE(3549), + [sym_conditional_expression] = STATE(3636), + [sym_assignment_expression] = STATE(3636), + [sym_pointer_expression] = STATE(3696), + [sym_unary_expression] = STATE(3636), + [sym_binary_expression] = STATE(3636), + [sym_update_expression] = STATE(3636), + [sym_cast_expression] = STATE(3636), + [sym_sizeof_expression] = STATE(3636), + [sym_alignof_expression] = STATE(3636), + [sym_offsetof_expression] = STATE(3636), + [sym_generic_expression] = STATE(3636), + [sym_subscript_expression] = STATE(3696), + [sym_call_expression] = STATE(3696), + [sym_gnu_asm_expression] = STATE(3636), + [sym_extension_expression] = STATE(3636), + [sym_field_expression] = STATE(3696), + [sym_compound_literal_expression] = STATE(3636), + [sym_parenthesized_expression] = STATE(3696), + [sym_char_literal] = STATE(3549), + [sym_concatenated_string] = STATE(3549), + [sym_string_literal] = STATE(2433), + [sym_null] = STATE(3636), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7883), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3636), + [sym_raw_string_literal] = STATE(2433), + [sym_co_await_expression] = STATE(3636), + [sym_new_expression] = STATE(3636), + [sym_delete_expression] = STATE(3636), + [sym_requires_clause] = STATE(3636), + [sym_requires_expression] = STATE(3636), + [sym_lambda_expression] = STATE(3636), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3636), + [sym_parameter_pack_expansion] = STATE(3636), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5769), + [sym_qualified_identifier] = STATE(3696), + [sym_qualified_type_identifier] = STATE(7883), + [sym_user_defined_literal] = STATE(3696), + [sym_identifier] = ACTIONS(2483), + [anon_sym_LPAREN2] = ACTIONS(4668), + [anon_sym_BANG] = ACTIONS(2487), + [anon_sym_TILDE] = ACTIONS(2487), + [anon_sym_DASH] = ACTIONS(2485), + [anon_sym_PLUS] = ACTIONS(2485), + [anon_sym_STAR] = ACTIONS(3136), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym___extension__] = ACTIONS(2489), + [anon_sym_COLON_COLON] = ACTIONS(2491), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2501), - [anon_sym_not] = ACTIONS(2491), - [anon_sym_compl] = ACTIONS(2491), - [anon_sym_DASH_DASH] = ACTIONS(4358), - [anon_sym_PLUS_PLUS] = ACTIONS(4358), - [anon_sym_sizeof] = ACTIONS(2503), - [anon_sym___alignof__] = ACTIONS(2505), - [anon_sym___alignof] = ACTIONS(2505), - [anon_sym__alignof] = ACTIONS(2505), - [anon_sym_alignof] = ACTIONS(2505), - [anon_sym__Alignof] = ACTIONS(2505), - [anon_sym_offsetof] = ACTIONS(2507), - [anon_sym__Generic] = ACTIONS(2509), - [anon_sym_asm] = ACTIONS(2511), - [anon_sym___asm__] = ACTIONS(2511), - [anon_sym___asm] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2515), - [anon_sym_u_SQUOTE] = ACTIONS(2515), - [anon_sym_U_SQUOTE] = ACTIONS(2515), - [anon_sym_u8_SQUOTE] = ACTIONS(2515), - [anon_sym_SQUOTE] = ACTIONS(2515), - [anon_sym_L_DQUOTE] = ACTIONS(2517), - [anon_sym_u_DQUOTE] = ACTIONS(2517), - [anon_sym_U_DQUOTE] = ACTIONS(2517), - [anon_sym_u8_DQUOTE] = ACTIONS(2517), - [anon_sym_DQUOTE] = ACTIONS(2517), - [sym_true] = ACTIONS(2519), - [sym_false] = ACTIONS(2519), - [anon_sym_NULL] = ACTIONS(2521), - [anon_sym_nullptr] = ACTIONS(2521), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(2523), - [anon_sym_R_DQUOTE] = ACTIONS(2525), - [anon_sym_LR_DQUOTE] = ACTIONS(2525), - [anon_sym_uR_DQUOTE] = ACTIONS(2525), - [anon_sym_UR_DQUOTE] = ACTIONS(2525), - [anon_sym_u8R_DQUOTE] = ACTIONS(2525), - [anon_sym_co_await] = ACTIONS(2527), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_requires] = ACTIONS(2531), - [sym_this] = ACTIONS(2519), - }, - [1227] = { - [sym_expression] = STATE(3280), - [sym__string] = STATE(3360), - [sym_conditional_expression] = STATE(3651), - [sym_assignment_expression] = STATE(3651), - [sym_pointer_expression] = STATE(3547), - [sym_unary_expression] = STATE(3651), - [sym_binary_expression] = STATE(3651), - [sym_update_expression] = STATE(3651), - [sym_cast_expression] = STATE(3651), - [sym_sizeof_expression] = STATE(3651), - [sym_alignof_expression] = STATE(3651), - [sym_offsetof_expression] = STATE(3651), - [sym_generic_expression] = STATE(3651), - [sym_subscript_expression] = STATE(3547), - [sym_call_expression] = STATE(3547), - [sym_gnu_asm_expression] = STATE(3651), - [sym_extension_expression] = STATE(3651), - [sym_field_expression] = STATE(3547), - [sym_compound_literal_expression] = STATE(3651), - [sym_parenthesized_expression] = STATE(3547), - [sym_char_literal] = STATE(3360), - [sym_concatenated_string] = STATE(3360), - [sym_string_literal] = STATE(2369), - [sym_null] = STATE(3651), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7649), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3651), - [sym_raw_string_literal] = STATE(2369), - [sym_co_await_expression] = STATE(3651), - [sym_new_expression] = STATE(3651), - [sym_delete_expression] = STATE(3651), - [sym_requires_clause] = STATE(3651), - [sym_requires_expression] = STATE(3651), - [sym_lambda_expression] = STATE(3651), - [sym_lambda_capture_specifier] = STATE(5395), - [sym_fold_expression] = STATE(3651), - [sym_parameter_pack_expansion] = STATE(3651), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5773), - [sym_qualified_identifier] = STATE(3547), - [sym_qualified_type_identifier] = STATE(7649), - [sym_user_defined_literal] = STATE(3547), - [sym_identifier] = ACTIONS(2489), - [anon_sym_LPAREN2] = ACTIONS(4652), - [anon_sym_BANG] = ACTIONS(2493), - [anon_sym_TILDE] = ACTIONS(2493), - [anon_sym_DASH] = ACTIONS(2491), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_STAR] = ACTIONS(3124), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym___extension__] = ACTIONS(2495), - [anon_sym_COLON_COLON] = ACTIONS(2497), - [anon_sym_LBRACK] = ACTIONS(4901), - [sym_primitive_type] = ACTIONS(2501), - [anon_sym_not] = ACTIONS(2491), - [anon_sym_compl] = ACTIONS(2491), - [anon_sym_DASH_DASH] = ACTIONS(4358), - [anon_sym_PLUS_PLUS] = ACTIONS(4358), - [anon_sym_sizeof] = ACTIONS(2503), - [anon_sym___alignof__] = ACTIONS(2505), - [anon_sym___alignof] = ACTIONS(2505), - [anon_sym__alignof] = ACTIONS(2505), - [anon_sym_alignof] = ACTIONS(2505), - [anon_sym__Alignof] = ACTIONS(2505), - [anon_sym_offsetof] = ACTIONS(2507), - [anon_sym__Generic] = ACTIONS(2509), - [anon_sym_asm] = ACTIONS(2511), - [anon_sym___asm__] = ACTIONS(2511), - [anon_sym___asm] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2515), - [anon_sym_u_SQUOTE] = ACTIONS(2515), - [anon_sym_U_SQUOTE] = ACTIONS(2515), - [anon_sym_u8_SQUOTE] = ACTIONS(2515), - [anon_sym_SQUOTE] = ACTIONS(2515), - [anon_sym_L_DQUOTE] = ACTIONS(2517), - [anon_sym_u_DQUOTE] = ACTIONS(2517), - [anon_sym_U_DQUOTE] = ACTIONS(2517), - [anon_sym_u8_DQUOTE] = ACTIONS(2517), - [anon_sym_DQUOTE] = ACTIONS(2517), - [sym_true] = ACTIONS(2519), - [sym_false] = ACTIONS(2519), - [anon_sym_NULL] = ACTIONS(2521), - [anon_sym_nullptr] = ACTIONS(2521), + [sym_primitive_type] = ACTIONS(2495), + [anon_sym_not] = ACTIONS(2485), + [anon_sym_compl] = ACTIONS(2485), + [anon_sym_DASH_DASH] = ACTIONS(4513), + [anon_sym_PLUS_PLUS] = ACTIONS(4513), + [anon_sym_sizeof] = ACTIONS(2497), + [anon_sym___alignof__] = ACTIONS(2499), + [anon_sym___alignof] = ACTIONS(2499), + [anon_sym__alignof] = ACTIONS(2499), + [anon_sym_alignof] = ACTIONS(2499), + [anon_sym__Alignof] = ACTIONS(2499), + [anon_sym_offsetof] = ACTIONS(2501), + [anon_sym__Generic] = ACTIONS(2503), + [anon_sym_asm] = ACTIONS(2505), + [anon_sym___asm__] = ACTIONS(2505), + [anon_sym___asm] = ACTIONS(2505), + [sym_number_literal] = ACTIONS(2507), + [anon_sym_L_SQUOTE] = ACTIONS(2509), + [anon_sym_u_SQUOTE] = ACTIONS(2509), + [anon_sym_U_SQUOTE] = ACTIONS(2509), + [anon_sym_u8_SQUOTE] = ACTIONS(2509), + [anon_sym_SQUOTE] = ACTIONS(2509), + [anon_sym_L_DQUOTE] = ACTIONS(2511), + [anon_sym_u_DQUOTE] = ACTIONS(2511), + [anon_sym_U_DQUOTE] = ACTIONS(2511), + [anon_sym_u8_DQUOTE] = ACTIONS(2511), + [anon_sym_DQUOTE] = ACTIONS(2511), + [sym_true] = ACTIONS(2513), + [sym_false] = ACTIONS(2513), + [anon_sym_NULL] = ACTIONS(2515), + [anon_sym_nullptr] = ACTIONS(2515), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(2523), - [anon_sym_R_DQUOTE] = ACTIONS(2525), - [anon_sym_LR_DQUOTE] = ACTIONS(2525), - [anon_sym_uR_DQUOTE] = ACTIONS(2525), - [anon_sym_UR_DQUOTE] = ACTIONS(2525), - [anon_sym_u8R_DQUOTE] = ACTIONS(2525), - [anon_sym_co_await] = ACTIONS(2527), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_requires] = ACTIONS(2531), - [sym_this] = ACTIONS(2519), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(2517), + [anon_sym_R_DQUOTE] = ACTIONS(2519), + [anon_sym_LR_DQUOTE] = ACTIONS(2519), + [anon_sym_uR_DQUOTE] = ACTIONS(2519), + [anon_sym_UR_DQUOTE] = ACTIONS(2519), + [anon_sym_u8R_DQUOTE] = ACTIONS(2519), + [anon_sym_co_await] = ACTIONS(2521), + [anon_sym_new] = ACTIONS(2523), + [anon_sym_requires] = ACTIONS(2525), + [sym_this] = ACTIONS(2513), }, - [1228] = { - [sym_expression] = STATE(3351), - [sym__string] = STATE(3360), - [sym_conditional_expression] = STATE(3651), - [sym_assignment_expression] = STATE(3651), - [sym_pointer_expression] = STATE(3547), - [sym_unary_expression] = STATE(3651), - [sym_binary_expression] = STATE(3651), - [sym_update_expression] = STATE(3651), - [sym_cast_expression] = STATE(3651), - [sym_sizeof_expression] = STATE(3651), - [sym_alignof_expression] = STATE(3651), - [sym_offsetof_expression] = STATE(3651), - [sym_generic_expression] = STATE(3651), - [sym_subscript_expression] = STATE(3547), - [sym_call_expression] = STATE(3547), - [sym_gnu_asm_expression] = STATE(3651), - [sym_extension_expression] = STATE(3651), - [sym_field_expression] = STATE(3547), - [sym_compound_literal_expression] = STATE(3651), - [sym_parenthesized_expression] = STATE(3547), - [sym_char_literal] = STATE(3360), - [sym_concatenated_string] = STATE(3360), - [sym_string_literal] = STATE(2369), - [sym_null] = STATE(3651), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7649), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3651), - [sym_raw_string_literal] = STATE(2369), - [sym_co_await_expression] = STATE(3651), - [sym_new_expression] = STATE(3651), - [sym_delete_expression] = STATE(3651), - [sym_requires_clause] = STATE(3651), - [sym_requires_expression] = STATE(3651), - [sym_lambda_expression] = STATE(3651), - [sym_lambda_capture_specifier] = STATE(5395), - [sym_fold_expression] = STATE(3651), - [sym_parameter_pack_expansion] = STATE(3651), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5773), - [sym_qualified_identifier] = STATE(3547), - [sym_qualified_type_identifier] = STATE(7649), - [sym_user_defined_literal] = STATE(3547), - [sym_identifier] = ACTIONS(2489), - [anon_sym_LPAREN2] = ACTIONS(4652), - [anon_sym_BANG] = ACTIONS(2493), - [anon_sym_TILDE] = ACTIONS(2493), - [anon_sym_DASH] = ACTIONS(2491), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_STAR] = ACTIONS(3124), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym___extension__] = ACTIONS(2495), - [anon_sym_COLON_COLON] = ACTIONS(2497), + [1309] = { + [sym_expression] = STATE(3283), + [sym__string] = STATE(3549), + [sym_conditional_expression] = STATE(3636), + [sym_assignment_expression] = STATE(3636), + [sym_pointer_expression] = STATE(3696), + [sym_unary_expression] = STATE(3636), + [sym_binary_expression] = STATE(3636), + [sym_update_expression] = STATE(3636), + [sym_cast_expression] = STATE(3636), + [sym_sizeof_expression] = STATE(3636), + [sym_alignof_expression] = STATE(3636), + [sym_offsetof_expression] = STATE(3636), + [sym_generic_expression] = STATE(3636), + [sym_subscript_expression] = STATE(3696), + [sym_call_expression] = STATE(3696), + [sym_gnu_asm_expression] = STATE(3636), + [sym_extension_expression] = STATE(3636), + [sym_field_expression] = STATE(3696), + [sym_compound_literal_expression] = STATE(3636), + [sym_parenthesized_expression] = STATE(3696), + [sym_char_literal] = STATE(3549), + [sym_concatenated_string] = STATE(3549), + [sym_string_literal] = STATE(2433), + [sym_null] = STATE(3636), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7883), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3636), + [sym_raw_string_literal] = STATE(2433), + [sym_co_await_expression] = STATE(3636), + [sym_new_expression] = STATE(3636), + [sym_delete_expression] = STATE(3636), + [sym_requires_clause] = STATE(3636), + [sym_requires_expression] = STATE(3636), + [sym_lambda_expression] = STATE(3636), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3636), + [sym_parameter_pack_expansion] = STATE(3636), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5769), + [sym_qualified_identifier] = STATE(3696), + [sym_qualified_type_identifier] = STATE(7883), + [sym_user_defined_literal] = STATE(3696), + [sym_identifier] = ACTIONS(2483), + [anon_sym_LPAREN2] = ACTIONS(4668), + [anon_sym_BANG] = ACTIONS(2487), + [anon_sym_TILDE] = ACTIONS(2487), + [anon_sym_DASH] = ACTIONS(2485), + [anon_sym_PLUS] = ACTIONS(2485), + [anon_sym_STAR] = ACTIONS(3136), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym___extension__] = ACTIONS(2489), + [anon_sym_COLON_COLON] = ACTIONS(2491), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2501), - [anon_sym_not] = ACTIONS(2491), - [anon_sym_compl] = ACTIONS(2491), - [anon_sym_DASH_DASH] = ACTIONS(4358), - [anon_sym_PLUS_PLUS] = ACTIONS(4358), - [anon_sym_sizeof] = ACTIONS(2503), - [anon_sym___alignof__] = ACTIONS(2505), - [anon_sym___alignof] = ACTIONS(2505), - [anon_sym__alignof] = ACTIONS(2505), - [anon_sym_alignof] = ACTIONS(2505), - [anon_sym__Alignof] = ACTIONS(2505), - [anon_sym_offsetof] = ACTIONS(2507), - [anon_sym__Generic] = ACTIONS(2509), - [anon_sym_asm] = ACTIONS(2511), - [anon_sym___asm__] = ACTIONS(2511), - [anon_sym___asm] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2515), - [anon_sym_u_SQUOTE] = ACTIONS(2515), - [anon_sym_U_SQUOTE] = ACTIONS(2515), - [anon_sym_u8_SQUOTE] = ACTIONS(2515), - [anon_sym_SQUOTE] = ACTIONS(2515), - [anon_sym_L_DQUOTE] = ACTIONS(2517), - [anon_sym_u_DQUOTE] = ACTIONS(2517), - [anon_sym_U_DQUOTE] = ACTIONS(2517), - [anon_sym_u8_DQUOTE] = ACTIONS(2517), - [anon_sym_DQUOTE] = ACTIONS(2517), - [sym_true] = ACTIONS(2519), - [sym_false] = ACTIONS(2519), - [anon_sym_NULL] = ACTIONS(2521), - [anon_sym_nullptr] = ACTIONS(2521), + [sym_primitive_type] = ACTIONS(2495), + [anon_sym_not] = ACTIONS(2485), + [anon_sym_compl] = ACTIONS(2485), + [anon_sym_DASH_DASH] = ACTIONS(4513), + [anon_sym_PLUS_PLUS] = ACTIONS(4513), + [anon_sym_sizeof] = ACTIONS(2497), + [anon_sym___alignof__] = ACTIONS(2499), + [anon_sym___alignof] = ACTIONS(2499), + [anon_sym__alignof] = ACTIONS(2499), + [anon_sym_alignof] = ACTIONS(2499), + [anon_sym__Alignof] = ACTIONS(2499), + [anon_sym_offsetof] = ACTIONS(2501), + [anon_sym__Generic] = ACTIONS(2503), + [anon_sym_asm] = ACTIONS(2505), + [anon_sym___asm__] = ACTIONS(2505), + [anon_sym___asm] = ACTIONS(2505), + [sym_number_literal] = ACTIONS(2507), + [anon_sym_L_SQUOTE] = ACTIONS(2509), + [anon_sym_u_SQUOTE] = ACTIONS(2509), + [anon_sym_U_SQUOTE] = ACTIONS(2509), + [anon_sym_u8_SQUOTE] = ACTIONS(2509), + [anon_sym_SQUOTE] = ACTIONS(2509), + [anon_sym_L_DQUOTE] = ACTIONS(2511), + [anon_sym_u_DQUOTE] = ACTIONS(2511), + [anon_sym_U_DQUOTE] = ACTIONS(2511), + [anon_sym_u8_DQUOTE] = ACTIONS(2511), + [anon_sym_DQUOTE] = ACTIONS(2511), + [sym_true] = ACTIONS(2513), + [sym_false] = ACTIONS(2513), + [anon_sym_NULL] = ACTIONS(2515), + [anon_sym_nullptr] = ACTIONS(2515), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(2523), - [anon_sym_R_DQUOTE] = ACTIONS(2525), - [anon_sym_LR_DQUOTE] = ACTIONS(2525), - [anon_sym_uR_DQUOTE] = ACTIONS(2525), - [anon_sym_UR_DQUOTE] = ACTIONS(2525), - [anon_sym_u8R_DQUOTE] = ACTIONS(2525), - [anon_sym_co_await] = ACTIONS(2527), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_requires] = ACTIONS(2531), - [sym_this] = ACTIONS(2519), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(2517), + [anon_sym_R_DQUOTE] = ACTIONS(2519), + [anon_sym_LR_DQUOTE] = ACTIONS(2519), + [anon_sym_uR_DQUOTE] = ACTIONS(2519), + [anon_sym_UR_DQUOTE] = ACTIONS(2519), + [anon_sym_u8R_DQUOTE] = ACTIONS(2519), + [anon_sym_co_await] = ACTIONS(2521), + [anon_sym_new] = ACTIONS(2523), + [anon_sym_requires] = ACTIONS(2525), + [sym_this] = ACTIONS(2513), }, - [1229] = { - [sym_expression] = STATE(3224), - [sym__string] = STATE(3360), - [sym_conditional_expression] = STATE(3651), - [sym_assignment_expression] = STATE(3651), - [sym_pointer_expression] = STATE(3547), - [sym_unary_expression] = STATE(3651), - [sym_binary_expression] = STATE(3651), - [sym_update_expression] = STATE(3651), - [sym_cast_expression] = STATE(3651), - [sym_sizeof_expression] = STATE(3651), - [sym_alignof_expression] = STATE(3651), - [sym_offsetof_expression] = STATE(3651), - [sym_generic_expression] = STATE(3651), - [sym_subscript_expression] = STATE(3547), - [sym_call_expression] = STATE(3547), - [sym_gnu_asm_expression] = STATE(3651), - [sym_extension_expression] = STATE(3651), - [sym_field_expression] = STATE(3547), - [sym_compound_literal_expression] = STATE(3651), - [sym_parenthesized_expression] = STATE(3547), - [sym_char_literal] = STATE(3360), - [sym_concatenated_string] = STATE(3360), - [sym_string_literal] = STATE(2369), - [sym_null] = STATE(3651), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7649), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3651), - [sym_raw_string_literal] = STATE(2369), - [sym_co_await_expression] = STATE(3651), - [sym_new_expression] = STATE(3651), - [sym_delete_expression] = STATE(3651), - [sym_requires_clause] = STATE(3651), - [sym_requires_expression] = STATE(3651), - [sym_lambda_expression] = STATE(3651), - [sym_lambda_capture_specifier] = STATE(5395), - [sym_fold_expression] = STATE(3651), - [sym_parameter_pack_expansion] = STATE(3651), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5773), - [sym_qualified_identifier] = STATE(3547), - [sym_qualified_type_identifier] = STATE(7649), - [sym_user_defined_literal] = STATE(3547), - [sym_identifier] = ACTIONS(2489), + [1310] = { + [sym_expression] = STATE(3126), + [sym__string] = STATE(3178), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(3178), + [sym_concatenated_string] = STATE(3178), + [sym_string_literal] = STATE(2317), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(2317), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), + [sym_identifier] = ACTIONS(2301), [anon_sym_LPAREN2] = ACTIONS(4652), - [anon_sym_BANG] = ACTIONS(2493), - [anon_sym_TILDE] = ACTIONS(2493), - [anon_sym_DASH] = ACTIONS(2491), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_STAR] = ACTIONS(3124), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym___extension__] = ACTIONS(2495), - [anon_sym_COLON_COLON] = ACTIONS(2497), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2501), - [anon_sym_not] = ACTIONS(2491), - [anon_sym_compl] = ACTIONS(2491), - [anon_sym_DASH_DASH] = ACTIONS(4358), - [anon_sym_PLUS_PLUS] = ACTIONS(4358), - [anon_sym_sizeof] = ACTIONS(2503), - [anon_sym___alignof__] = ACTIONS(2505), - [anon_sym___alignof] = ACTIONS(2505), - [anon_sym__alignof] = ACTIONS(2505), - [anon_sym_alignof] = ACTIONS(2505), - [anon_sym__Alignof] = ACTIONS(2505), - [anon_sym_offsetof] = ACTIONS(2507), - [anon_sym__Generic] = ACTIONS(2509), - [anon_sym_asm] = ACTIONS(2511), - [anon_sym___asm__] = ACTIONS(2511), - [anon_sym___asm] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2515), - [anon_sym_u_SQUOTE] = ACTIONS(2515), - [anon_sym_U_SQUOTE] = ACTIONS(2515), - [anon_sym_u8_SQUOTE] = ACTIONS(2515), - [anon_sym_SQUOTE] = ACTIONS(2515), - [anon_sym_L_DQUOTE] = ACTIONS(2517), - [anon_sym_u_DQUOTE] = ACTIONS(2517), - [anon_sym_U_DQUOTE] = ACTIONS(2517), - [anon_sym_u8_DQUOTE] = ACTIONS(2517), - [anon_sym_DQUOTE] = ACTIONS(2517), - [sym_true] = ACTIONS(2519), - [sym_false] = ACTIONS(2519), - [anon_sym_NULL] = ACTIONS(2521), - [anon_sym_nullptr] = ACTIONS(2521), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(2523), - [anon_sym_R_DQUOTE] = ACTIONS(2525), - [anon_sym_LR_DQUOTE] = ACTIONS(2525), - [anon_sym_uR_DQUOTE] = ACTIONS(2525), - [anon_sym_UR_DQUOTE] = ACTIONS(2525), - [anon_sym_u8R_DQUOTE] = ACTIONS(2525), - [anon_sym_co_await] = ACTIONS(2527), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_requires] = ACTIONS(2531), - [sym_this] = ACTIONS(2519), - }, - [1230] = { - [sym_expression] = STATE(2911), - [sym__string] = STATE(2950), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(2950), - [sym_concatenated_string] = STATE(2950), - [sym_string_literal] = STATE(2034), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(2034), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), - [sym_identifier] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(4555), - [anon_sym_BANG] = ACTIONS(1994), - [anon_sym_TILDE] = ACTIONS(1994), - [anon_sym_DASH] = ACTIONS(1992), - [anon_sym_PLUS] = ACTIONS(1992), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(1996), - [anon_sym_COLON_COLON] = ACTIONS(1998), - [anon_sym_LBRACK] = ACTIONS(4903), - [sym_primitive_type] = ACTIONS(1956), - [anon_sym_not] = ACTIONS(1992), - [anon_sym_compl] = ACTIONS(1992), - [anon_sym_DASH_DASH] = ACTIONS(3343), - [anon_sym_PLUS_PLUS] = ACTIONS(3343), - [anon_sym_sizeof] = ACTIONS(2000), - [anon_sym___alignof__] = ACTIONS(1960), - [anon_sym___alignof] = ACTIONS(1960), - [anon_sym__alignof] = ACTIONS(1960), - [anon_sym_alignof] = ACTIONS(1960), - [anon_sym__Alignof] = ACTIONS(1960), - [anon_sym_offsetof] = ACTIONS(1962), - [anon_sym__Generic] = ACTIONS(1964), - [anon_sym_asm] = ACTIONS(1966), - [anon_sym___asm__] = ACTIONS(1966), - [anon_sym___asm] = ACTIONS(1966), - [sym_number_literal] = ACTIONS(2002), - [anon_sym_L_SQUOTE] = ACTIONS(2004), - [anon_sym_u_SQUOTE] = ACTIONS(2004), - [anon_sym_U_SQUOTE] = ACTIONS(2004), - [anon_sym_u8_SQUOTE] = ACTIONS(2004), - [anon_sym_SQUOTE] = ACTIONS(2004), - [anon_sym_L_DQUOTE] = ACTIONS(2006), - [anon_sym_u_DQUOTE] = ACTIONS(2006), - [anon_sym_U_DQUOTE] = ACTIONS(2006), - [anon_sym_u8_DQUOTE] = ACTIONS(2006), - [anon_sym_DQUOTE] = ACTIONS(2006), - [sym_true] = ACTIONS(1974), - [sym_false] = ACTIONS(1974), - [anon_sym_NULL] = ACTIONS(1976), - [anon_sym_nullptr] = ACTIONS(1976), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(2008), - [anon_sym_R_DQUOTE] = ACTIONS(2010), - [anon_sym_LR_DQUOTE] = ACTIONS(2010), - [anon_sym_uR_DQUOTE] = ACTIONS(2010), - [anon_sym_UR_DQUOTE] = ACTIONS(2010), - [anon_sym_u8R_DQUOTE] = ACTIONS(2010), - [anon_sym_co_await] = ACTIONS(2012), - [anon_sym_new] = ACTIONS(2014), - [anon_sym_requires] = ACTIONS(1988), - [sym_this] = ACTIONS(1974), - }, - [1231] = { - [sym_expression] = STATE(2381), - [sym__string] = STATE(2950), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(2950), - [sym_concatenated_string] = STATE(2950), - [sym_string_literal] = STATE(2034), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(2034), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), - [sym_identifier] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(4555), - [anon_sym_BANG] = ACTIONS(1994), - [anon_sym_TILDE] = ACTIONS(1994), - [anon_sym_DASH] = ACTIONS(1992), - [anon_sym_PLUS] = ACTIONS(1992), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(1996), - [anon_sym_COLON_COLON] = ACTIONS(1998), - [anon_sym_LBRACK] = ACTIONS(2020), + [anon_sym_BANG] = ACTIONS(2305), + [anon_sym_TILDE] = ACTIONS(2305), + [anon_sym_DASH] = ACTIONS(2303), + [anon_sym_PLUS] = ACTIONS(2303), + [anon_sym_STAR] = ACTIONS(4336), + [anon_sym_AMP] = ACTIONS(4336), + [anon_sym___extension__] = ACTIONS(2307), + [anon_sym_COLON_COLON] = ACTIONS(2309), + [anon_sym_LBRACK] = ACTIONS(4923), [sym_primitive_type] = ACTIONS(1956), - [anon_sym_not] = ACTIONS(1992), - [anon_sym_compl] = ACTIONS(1992), - [anon_sym_DASH_DASH] = ACTIONS(3343), - [anon_sym_PLUS_PLUS] = ACTIONS(3343), - [anon_sym_sizeof] = ACTIONS(2000), + [anon_sym_not] = ACTIONS(2303), + [anon_sym_compl] = ACTIONS(2303), + [anon_sym_DASH_DASH] = ACTIONS(4352), + [anon_sym_PLUS_PLUS] = ACTIONS(4352), + [anon_sym_sizeof] = ACTIONS(2311), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), [anon_sym__alignof] = ACTIONS(1960), @@ -202659,396 +211560,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(1966), [anon_sym___asm__] = ACTIONS(1966), [anon_sym___asm] = ACTIONS(1966), - [sym_number_literal] = ACTIONS(2002), - [anon_sym_L_SQUOTE] = ACTIONS(2004), - [anon_sym_u_SQUOTE] = ACTIONS(2004), - [anon_sym_U_SQUOTE] = ACTIONS(2004), - [anon_sym_u8_SQUOTE] = ACTIONS(2004), - [anon_sym_SQUOTE] = ACTIONS(2004), - [anon_sym_L_DQUOTE] = ACTIONS(2006), - [anon_sym_u_DQUOTE] = ACTIONS(2006), - [anon_sym_U_DQUOTE] = ACTIONS(2006), - [anon_sym_u8_DQUOTE] = ACTIONS(2006), - [anon_sym_DQUOTE] = ACTIONS(2006), + [sym_number_literal] = ACTIONS(2313), + [anon_sym_L_SQUOTE] = ACTIONS(2315), + [anon_sym_u_SQUOTE] = ACTIONS(2315), + [anon_sym_U_SQUOTE] = ACTIONS(2315), + [anon_sym_u8_SQUOTE] = ACTIONS(2315), + [anon_sym_SQUOTE] = ACTIONS(2315), + [anon_sym_L_DQUOTE] = ACTIONS(2317), + [anon_sym_u_DQUOTE] = ACTIONS(2317), + [anon_sym_U_DQUOTE] = ACTIONS(2317), + [anon_sym_u8_DQUOTE] = ACTIONS(2317), + [anon_sym_DQUOTE] = ACTIONS(2317), [sym_true] = ACTIONS(1974), [sym_false] = ACTIONS(1974), [anon_sym_NULL] = ACTIONS(1976), [anon_sym_nullptr] = ACTIONS(1976), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(2008), - [anon_sym_R_DQUOTE] = ACTIONS(2010), - [anon_sym_LR_DQUOTE] = ACTIONS(2010), - [anon_sym_uR_DQUOTE] = ACTIONS(2010), - [anon_sym_UR_DQUOTE] = ACTIONS(2010), - [anon_sym_u8R_DQUOTE] = ACTIONS(2010), - [anon_sym_co_await] = ACTIONS(2012), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(2319), + [anon_sym_R_DQUOTE] = ACTIONS(2321), + [anon_sym_LR_DQUOTE] = ACTIONS(2321), + [anon_sym_uR_DQUOTE] = ACTIONS(2321), + [anon_sym_UR_DQUOTE] = ACTIONS(2321), + [anon_sym_u8R_DQUOTE] = ACTIONS(2321), + [anon_sym_co_await] = ACTIONS(2323), [anon_sym_new] = ACTIONS(2014), [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [1232] = { - [sym_expression] = STATE(3279), - [sym__string] = STATE(3360), - [sym_conditional_expression] = STATE(3651), - [sym_assignment_expression] = STATE(3651), - [sym_pointer_expression] = STATE(3547), - [sym_unary_expression] = STATE(3651), - [sym_binary_expression] = STATE(3651), - [sym_update_expression] = STATE(3651), - [sym_cast_expression] = STATE(3651), - [sym_sizeof_expression] = STATE(3651), - [sym_alignof_expression] = STATE(3651), - [sym_offsetof_expression] = STATE(3651), - [sym_generic_expression] = STATE(3651), - [sym_subscript_expression] = STATE(3547), - [sym_call_expression] = STATE(3547), - [sym_gnu_asm_expression] = STATE(3651), - [sym_extension_expression] = STATE(3651), - [sym_field_expression] = STATE(3547), - [sym_compound_literal_expression] = STATE(3651), - [sym_parenthesized_expression] = STATE(3547), - [sym_char_literal] = STATE(3360), - [sym_concatenated_string] = STATE(3360), - [sym_string_literal] = STATE(2369), - [sym_null] = STATE(3651), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7649), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3651), - [sym_raw_string_literal] = STATE(2369), - [sym_co_await_expression] = STATE(3651), - [sym_new_expression] = STATE(3651), - [sym_delete_expression] = STATE(3651), - [sym_requires_clause] = STATE(3651), - [sym_requires_expression] = STATE(3651), - [sym_lambda_expression] = STATE(3651), - [sym_lambda_capture_specifier] = STATE(5395), - [sym_fold_expression] = STATE(3651), - [sym_parameter_pack_expansion] = STATE(3651), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5773), - [sym_qualified_identifier] = STATE(3547), - [sym_qualified_type_identifier] = STATE(7649), - [sym_user_defined_literal] = STATE(3547), - [sym_identifier] = ACTIONS(2489), + [1311] = { + [sym_expression] = STATE(3020), + [sym__string] = STATE(3178), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(3178), + [sym_concatenated_string] = STATE(3178), + [sym_string_literal] = STATE(2317), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(2317), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), + [sym_identifier] = ACTIONS(2301), [anon_sym_LPAREN2] = ACTIONS(4652), - [anon_sym_BANG] = ACTIONS(2493), - [anon_sym_TILDE] = ACTIONS(2493), - [anon_sym_DASH] = ACTIONS(2491), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_STAR] = ACTIONS(3124), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym___extension__] = ACTIONS(2495), - [anon_sym_COLON_COLON] = ACTIONS(2497), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2501), - [anon_sym_not] = ACTIONS(2491), - [anon_sym_compl] = ACTIONS(2491), - [anon_sym_DASH_DASH] = ACTIONS(4358), - [anon_sym_PLUS_PLUS] = ACTIONS(4358), - [anon_sym_sizeof] = ACTIONS(2503), - [anon_sym___alignof__] = ACTIONS(2505), - [anon_sym___alignof] = ACTIONS(2505), - [anon_sym__alignof] = ACTIONS(2505), - [anon_sym_alignof] = ACTIONS(2505), - [anon_sym__Alignof] = ACTIONS(2505), - [anon_sym_offsetof] = ACTIONS(2507), - [anon_sym__Generic] = ACTIONS(2509), - [anon_sym_asm] = ACTIONS(2511), - [anon_sym___asm__] = ACTIONS(2511), - [anon_sym___asm] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2515), - [anon_sym_u_SQUOTE] = ACTIONS(2515), - [anon_sym_U_SQUOTE] = ACTIONS(2515), - [anon_sym_u8_SQUOTE] = ACTIONS(2515), - [anon_sym_SQUOTE] = ACTIONS(2515), - [anon_sym_L_DQUOTE] = ACTIONS(2517), - [anon_sym_u_DQUOTE] = ACTIONS(2517), - [anon_sym_U_DQUOTE] = ACTIONS(2517), - [anon_sym_u8_DQUOTE] = ACTIONS(2517), - [anon_sym_DQUOTE] = ACTIONS(2517), - [sym_true] = ACTIONS(2519), - [sym_false] = ACTIONS(2519), - [anon_sym_NULL] = ACTIONS(2521), - [anon_sym_nullptr] = ACTIONS(2521), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(2523), - [anon_sym_R_DQUOTE] = ACTIONS(2525), - [anon_sym_LR_DQUOTE] = ACTIONS(2525), - [anon_sym_uR_DQUOTE] = ACTIONS(2525), - [anon_sym_UR_DQUOTE] = ACTIONS(2525), - [anon_sym_u8R_DQUOTE] = ACTIONS(2525), - [anon_sym_co_await] = ACTIONS(2527), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_requires] = ACTIONS(2531), - [sym_this] = ACTIONS(2519), - }, - [1233] = { - [sym_expression] = STATE(3145), - [sym__string] = STATE(3235), - [sym_conditional_expression] = STATE(3373), - [sym_assignment_expression] = STATE(3373), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3373), - [sym_binary_expression] = STATE(3373), - [sym_update_expression] = STATE(3373), - [sym_cast_expression] = STATE(3373), - [sym_sizeof_expression] = STATE(3373), - [sym_alignof_expression] = STATE(3373), - [sym_offsetof_expression] = STATE(3373), - [sym_generic_expression] = STATE(3373), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3373), - [sym_extension_expression] = STATE(3373), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3373), - [sym_parenthesized_expression] = STATE(3365), - [sym_char_literal] = STATE(3235), - [sym_concatenated_string] = STATE(3235), - [sym_string_literal] = STATE(2358), - [sym_null] = STATE(3373), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7814), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3373), - [sym_raw_string_literal] = STATE(2358), - [sym_co_await_expression] = STATE(3373), - [sym_new_expression] = STATE(3373), - [sym_delete_expression] = STATE(3373), - [sym_requires_clause] = STATE(3373), - [sym_requires_expression] = STATE(3373), - [sym_lambda_expression] = STATE(3373), - [sym_lambda_capture_specifier] = STATE(5414), - [sym_fold_expression] = STATE(3373), - [sym_parameter_pack_expansion] = STATE(3373), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3365), - [sym_qualified_type_identifier] = STATE(7814), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2453), - [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(2455), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACK] = ACTIONS(4905), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), - }, - [1234] = { - [sym_expression] = STATE(3201), - [sym__string] = STATE(3235), - [sym_conditional_expression] = STATE(3373), - [sym_assignment_expression] = STATE(3373), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3373), - [sym_binary_expression] = STATE(3373), - [sym_update_expression] = STATE(3373), - [sym_cast_expression] = STATE(3373), - [sym_sizeof_expression] = STATE(3373), - [sym_alignof_expression] = STATE(3373), - [sym_offsetof_expression] = STATE(3373), - [sym_generic_expression] = STATE(3373), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3373), - [sym_extension_expression] = STATE(3373), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3373), - [sym_parenthesized_expression] = STATE(3365), - [sym_char_literal] = STATE(3235), - [sym_concatenated_string] = STATE(3235), - [sym_string_literal] = STATE(2358), - [sym_null] = STATE(3373), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7814), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3373), - [sym_raw_string_literal] = STATE(2358), - [sym_co_await_expression] = STATE(3373), - [sym_new_expression] = STATE(3373), - [sym_delete_expression] = STATE(3373), - [sym_requires_clause] = STATE(3373), - [sym_requires_expression] = STATE(3373), - [sym_lambda_expression] = STATE(3373), - [sym_lambda_capture_specifier] = STATE(5414), - [sym_fold_expression] = STATE(3373), - [sym_parameter_pack_expansion] = STATE(3373), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3365), - [sym_qualified_type_identifier] = STATE(7814), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2453), - [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(2455), - [anon_sym_COLON_COLON] = ACTIONS(1806), + [anon_sym_BANG] = ACTIONS(2305), + [anon_sym_TILDE] = ACTIONS(2305), + [anon_sym_DASH] = ACTIONS(2303), + [anon_sym_PLUS] = ACTIONS(2303), + [anon_sym_STAR] = ACTIONS(4336), + [anon_sym_AMP] = ACTIONS(4336), + [anon_sym___extension__] = ACTIONS(2307), + [anon_sym_COLON_COLON] = ACTIONS(2309), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), - }, - [1235] = { - [sym_expression] = STATE(2903), - [sym__string] = STATE(2950), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(2950), - [sym_concatenated_string] = STATE(2950), - [sym_string_literal] = STATE(2034), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(2034), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), - [sym_identifier] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(4555), - [anon_sym_BANG] = ACTIONS(1994), - [anon_sym_TILDE] = ACTIONS(1994), - [anon_sym_DASH] = ACTIONS(1992), - [anon_sym_PLUS] = ACTIONS(1992), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(1996), - [anon_sym_COLON_COLON] = ACTIONS(1998), - [anon_sym_LBRACK] = ACTIONS(4907), [sym_primitive_type] = ACTIONS(1956), - [anon_sym_not] = ACTIONS(1992), - [anon_sym_compl] = ACTIONS(1992), - [anon_sym_DASH_DASH] = ACTIONS(3343), - [anon_sym_PLUS_PLUS] = ACTIONS(3343), - [anon_sym_sizeof] = ACTIONS(2000), + [anon_sym_not] = ACTIONS(2303), + [anon_sym_compl] = ACTIONS(2303), + [anon_sym_DASH_DASH] = ACTIONS(4352), + [anon_sym_PLUS_PLUS] = ACTIONS(4352), + [anon_sym_sizeof] = ACTIONS(2311), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), [anon_sym__alignof] = ACTIONS(1960), @@ -203059,196 +211660,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(1966), [anon_sym___asm__] = ACTIONS(1966), [anon_sym___asm] = ACTIONS(1966), - [sym_number_literal] = ACTIONS(2002), - [anon_sym_L_SQUOTE] = ACTIONS(2004), - [anon_sym_u_SQUOTE] = ACTIONS(2004), - [anon_sym_U_SQUOTE] = ACTIONS(2004), - [anon_sym_u8_SQUOTE] = ACTIONS(2004), - [anon_sym_SQUOTE] = ACTIONS(2004), - [anon_sym_L_DQUOTE] = ACTIONS(2006), - [anon_sym_u_DQUOTE] = ACTIONS(2006), - [anon_sym_U_DQUOTE] = ACTIONS(2006), - [anon_sym_u8_DQUOTE] = ACTIONS(2006), - [anon_sym_DQUOTE] = ACTIONS(2006), + [sym_number_literal] = ACTIONS(2313), + [anon_sym_L_SQUOTE] = ACTIONS(2315), + [anon_sym_u_SQUOTE] = ACTIONS(2315), + [anon_sym_U_SQUOTE] = ACTIONS(2315), + [anon_sym_u8_SQUOTE] = ACTIONS(2315), + [anon_sym_SQUOTE] = ACTIONS(2315), + [anon_sym_L_DQUOTE] = ACTIONS(2317), + [anon_sym_u_DQUOTE] = ACTIONS(2317), + [anon_sym_U_DQUOTE] = ACTIONS(2317), + [anon_sym_u8_DQUOTE] = ACTIONS(2317), + [anon_sym_DQUOTE] = ACTIONS(2317), [sym_true] = ACTIONS(1974), [sym_false] = ACTIONS(1974), [anon_sym_NULL] = ACTIONS(1976), [anon_sym_nullptr] = ACTIONS(1976), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(2008), - [anon_sym_R_DQUOTE] = ACTIONS(2010), - [anon_sym_LR_DQUOTE] = ACTIONS(2010), - [anon_sym_uR_DQUOTE] = ACTIONS(2010), - [anon_sym_UR_DQUOTE] = ACTIONS(2010), - [anon_sym_u8R_DQUOTE] = ACTIONS(2010), - [anon_sym_co_await] = ACTIONS(2012), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(2319), + [anon_sym_R_DQUOTE] = ACTIONS(2321), + [anon_sym_LR_DQUOTE] = ACTIONS(2321), + [anon_sym_uR_DQUOTE] = ACTIONS(2321), + [anon_sym_UR_DQUOTE] = ACTIONS(2321), + [anon_sym_u8R_DQUOTE] = ACTIONS(2321), + [anon_sym_co_await] = ACTIONS(2323), [anon_sym_new] = ACTIONS(2014), [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [1236] = { - [sym_expression] = STATE(3147), - [sym__string] = STATE(3235), - [sym_conditional_expression] = STATE(3373), - [sym_assignment_expression] = STATE(3373), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3373), - [sym_binary_expression] = STATE(3373), - [sym_update_expression] = STATE(3373), - [sym_cast_expression] = STATE(3373), - [sym_sizeof_expression] = STATE(3373), - [sym_alignof_expression] = STATE(3373), - [sym_offsetof_expression] = STATE(3373), - [sym_generic_expression] = STATE(3373), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3373), - [sym_extension_expression] = STATE(3373), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3373), - [sym_parenthesized_expression] = STATE(3365), - [sym_char_literal] = STATE(3235), - [sym_concatenated_string] = STATE(3235), - [sym_string_literal] = STATE(2358), - [sym_null] = STATE(3373), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7814), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3373), - [sym_raw_string_literal] = STATE(2358), - [sym_co_await_expression] = STATE(3373), - [sym_new_expression] = STATE(3373), - [sym_delete_expression] = STATE(3373), - [sym_requires_clause] = STATE(3373), - [sym_requires_expression] = STATE(3373), - [sym_lambda_expression] = STATE(3373), - [sym_lambda_capture_specifier] = STATE(5414), - [sym_fold_expression] = STATE(3373), - [sym_parameter_pack_expansion] = STATE(3373), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3365), - [sym_qualified_type_identifier] = STATE(7814), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2453), - [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(2455), - [anon_sym_COLON_COLON] = ACTIONS(1806), + [1312] = { + [sym_expression] = STATE(3050), + [sym__string] = STATE(3178), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(3178), + [sym_concatenated_string] = STATE(3178), + [sym_string_literal] = STATE(2317), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(2317), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), + [sym_identifier] = ACTIONS(2301), + [anon_sym_LPAREN2] = ACTIONS(4652), + [anon_sym_BANG] = ACTIONS(2305), + [anon_sym_TILDE] = ACTIONS(2305), + [anon_sym_DASH] = ACTIONS(2303), + [anon_sym_PLUS] = ACTIONS(2303), + [anon_sym_STAR] = ACTIONS(4336), + [anon_sym_AMP] = ACTIONS(4336), + [anon_sym___extension__] = ACTIONS(2307), + [anon_sym_COLON_COLON] = ACTIONS(2309), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), - }, - [1237] = { - [sym_expression] = STATE(3006), - [sym__string] = STATE(3181), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(3181), - [sym_concatenated_string] = STATE(3181), - [sym_string_literal] = STATE(2297), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(2297), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), - [sym_identifier] = ACTIONS(2305), - [anon_sym_LPAREN2] = ACTIONS(4691), - [anon_sym_BANG] = ACTIONS(2309), - [anon_sym_TILDE] = ACTIONS(2309), - [anon_sym_DASH] = ACTIONS(2307), - [anon_sym_PLUS] = ACTIONS(2307), - [anon_sym_STAR] = ACTIONS(4382), - [anon_sym_AMP] = ACTIONS(4382), - [anon_sym___extension__] = ACTIONS(2311), - [anon_sym_COLON_COLON] = ACTIONS(2313), - [anon_sym_LBRACK] = ACTIONS(4909), [sym_primitive_type] = ACTIONS(1956), - [anon_sym_not] = ACTIONS(2307), - [anon_sym_compl] = ACTIONS(2307), - [anon_sym_DASH_DASH] = ACTIONS(4396), - [anon_sym_PLUS_PLUS] = ACTIONS(4396), - [anon_sym_sizeof] = ACTIONS(2315), + [anon_sym_not] = ACTIONS(2303), + [anon_sym_compl] = ACTIONS(2303), + [anon_sym_DASH_DASH] = ACTIONS(4352), + [anon_sym_PLUS_PLUS] = ACTIONS(4352), + [anon_sym_sizeof] = ACTIONS(2311), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), [anon_sym__alignof] = ACTIONS(1960), @@ -203259,96 +211760,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(1966), [anon_sym___asm__] = ACTIONS(1966), [anon_sym___asm] = ACTIONS(1966), - [sym_number_literal] = ACTIONS(2317), - [anon_sym_L_SQUOTE] = ACTIONS(2319), - [anon_sym_u_SQUOTE] = ACTIONS(2319), - [anon_sym_U_SQUOTE] = ACTIONS(2319), - [anon_sym_u8_SQUOTE] = ACTIONS(2319), - [anon_sym_SQUOTE] = ACTIONS(2319), - [anon_sym_L_DQUOTE] = ACTIONS(2321), - [anon_sym_u_DQUOTE] = ACTIONS(2321), - [anon_sym_U_DQUOTE] = ACTIONS(2321), - [anon_sym_u8_DQUOTE] = ACTIONS(2321), - [anon_sym_DQUOTE] = ACTIONS(2321), + [sym_number_literal] = ACTIONS(2313), + [anon_sym_L_SQUOTE] = ACTIONS(2315), + [anon_sym_u_SQUOTE] = ACTIONS(2315), + [anon_sym_U_SQUOTE] = ACTIONS(2315), + [anon_sym_u8_SQUOTE] = ACTIONS(2315), + [anon_sym_SQUOTE] = ACTIONS(2315), + [anon_sym_L_DQUOTE] = ACTIONS(2317), + [anon_sym_u_DQUOTE] = ACTIONS(2317), + [anon_sym_U_DQUOTE] = ACTIONS(2317), + [anon_sym_u8_DQUOTE] = ACTIONS(2317), + [anon_sym_DQUOTE] = ACTIONS(2317), [sym_true] = ACTIONS(1974), [sym_false] = ACTIONS(1974), [anon_sym_NULL] = ACTIONS(1976), [anon_sym_nullptr] = ACTIONS(1976), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(2323), - [anon_sym_R_DQUOTE] = ACTIONS(2325), - [anon_sym_LR_DQUOTE] = ACTIONS(2325), - [anon_sym_uR_DQUOTE] = ACTIONS(2325), - [anon_sym_UR_DQUOTE] = ACTIONS(2325), - [anon_sym_u8R_DQUOTE] = ACTIONS(2325), - [anon_sym_co_await] = ACTIONS(2327), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(2319), + [anon_sym_R_DQUOTE] = ACTIONS(2321), + [anon_sym_LR_DQUOTE] = ACTIONS(2321), + [anon_sym_uR_DQUOTE] = ACTIONS(2321), + [anon_sym_UR_DQUOTE] = ACTIONS(2321), + [anon_sym_u8R_DQUOTE] = ACTIONS(2321), + [anon_sym_co_await] = ACTIONS(2323), [anon_sym_new] = ACTIONS(2014), [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [1238] = { - [sym_expression] = STATE(3039), - [sym__string] = STATE(3181), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(3181), - [sym_concatenated_string] = STATE(3181), - [sym_string_literal] = STATE(2297), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(2297), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), - [sym_identifier] = ACTIONS(2305), - [anon_sym_LPAREN2] = ACTIONS(4691), - [anon_sym_BANG] = ACTIONS(2309), - [anon_sym_TILDE] = ACTIONS(2309), - [anon_sym_DASH] = ACTIONS(2307), - [anon_sym_PLUS] = ACTIONS(2307), - [anon_sym_STAR] = ACTIONS(4382), - [anon_sym_AMP] = ACTIONS(4382), - [anon_sym___extension__] = ACTIONS(2311), - [anon_sym_COLON_COLON] = ACTIONS(2313), + [1313] = { + [sym_expression] = STATE(3092), + [sym__string] = STATE(3178), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(3178), + [sym_concatenated_string] = STATE(3178), + [sym_string_literal] = STATE(2317), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(2317), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), + [sym_identifier] = ACTIONS(2301), + [anon_sym_LPAREN2] = ACTIONS(4652), + [anon_sym_BANG] = ACTIONS(2305), + [anon_sym_TILDE] = ACTIONS(2305), + [anon_sym_DASH] = ACTIONS(2303), + [anon_sym_PLUS] = ACTIONS(2303), + [anon_sym_STAR] = ACTIONS(4336), + [anon_sym_AMP] = ACTIONS(4336), + [anon_sym___extension__] = ACTIONS(2307), + [anon_sym_COLON_COLON] = ACTIONS(2309), [anon_sym_LBRACK] = ACTIONS(2020), [sym_primitive_type] = ACTIONS(1956), - [anon_sym_not] = ACTIONS(2307), - [anon_sym_compl] = ACTIONS(2307), - [anon_sym_DASH_DASH] = ACTIONS(4396), - [anon_sym_PLUS_PLUS] = ACTIONS(4396), - [anon_sym_sizeof] = ACTIONS(2315), + [anon_sym_not] = ACTIONS(2303), + [anon_sym_compl] = ACTIONS(2303), + [anon_sym_DASH_DASH] = ACTIONS(4352), + [anon_sym_PLUS_PLUS] = ACTIONS(4352), + [anon_sym_sizeof] = ACTIONS(2311), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), [anon_sym__alignof] = ACTIONS(1960), @@ -203359,691 +211860,391 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(1966), [anon_sym___asm__] = ACTIONS(1966), [anon_sym___asm] = ACTIONS(1966), - [sym_number_literal] = ACTIONS(2317), - [anon_sym_L_SQUOTE] = ACTIONS(2319), - [anon_sym_u_SQUOTE] = ACTIONS(2319), - [anon_sym_U_SQUOTE] = ACTIONS(2319), - [anon_sym_u8_SQUOTE] = ACTIONS(2319), - [anon_sym_SQUOTE] = ACTIONS(2319), - [anon_sym_L_DQUOTE] = ACTIONS(2321), - [anon_sym_u_DQUOTE] = ACTIONS(2321), - [anon_sym_U_DQUOTE] = ACTIONS(2321), - [anon_sym_u8_DQUOTE] = ACTIONS(2321), - [anon_sym_DQUOTE] = ACTIONS(2321), + [sym_number_literal] = ACTIONS(2313), + [anon_sym_L_SQUOTE] = ACTIONS(2315), + [anon_sym_u_SQUOTE] = ACTIONS(2315), + [anon_sym_U_SQUOTE] = ACTIONS(2315), + [anon_sym_u8_SQUOTE] = ACTIONS(2315), + [anon_sym_SQUOTE] = ACTIONS(2315), + [anon_sym_L_DQUOTE] = ACTIONS(2317), + [anon_sym_u_DQUOTE] = ACTIONS(2317), + [anon_sym_U_DQUOTE] = ACTIONS(2317), + [anon_sym_u8_DQUOTE] = ACTIONS(2317), + [anon_sym_DQUOTE] = ACTIONS(2317), [sym_true] = ACTIONS(1974), [sym_false] = ACTIONS(1974), [anon_sym_NULL] = ACTIONS(1976), [anon_sym_nullptr] = ACTIONS(1976), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(2323), - [anon_sym_R_DQUOTE] = ACTIONS(2325), - [anon_sym_LR_DQUOTE] = ACTIONS(2325), - [anon_sym_uR_DQUOTE] = ACTIONS(2325), - [anon_sym_UR_DQUOTE] = ACTIONS(2325), - [anon_sym_u8R_DQUOTE] = ACTIONS(2325), - [anon_sym_co_await] = ACTIONS(2327), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(2319), + [anon_sym_R_DQUOTE] = ACTIONS(2321), + [anon_sym_LR_DQUOTE] = ACTIONS(2321), + [anon_sym_uR_DQUOTE] = ACTIONS(2321), + [anon_sym_UR_DQUOTE] = ACTIONS(2321), + [anon_sym_u8R_DQUOTE] = ACTIONS(2321), + [anon_sym_co_await] = ACTIONS(2323), [anon_sym_new] = ACTIONS(2014), [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [1239] = { - [sym_expression] = STATE(4686), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), - }, - [1240] = { - [sym_expression] = STATE(3041), - [sym__string] = STATE(3181), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(3181), - [sym_concatenated_string] = STATE(3181), - [sym_string_literal] = STATE(2297), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(2297), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), - [sym_identifier] = ACTIONS(2305), - [anon_sym_LPAREN2] = ACTIONS(4691), - [anon_sym_BANG] = ACTIONS(2309), - [anon_sym_TILDE] = ACTIONS(2309), - [anon_sym_DASH] = ACTIONS(2307), - [anon_sym_PLUS] = ACTIONS(2307), - [anon_sym_STAR] = ACTIONS(4382), - [anon_sym_AMP] = ACTIONS(4382), - [anon_sym___extension__] = ACTIONS(2311), - [anon_sym_COLON_COLON] = ACTIONS(2313), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(1956), - [anon_sym_not] = ACTIONS(2307), - [anon_sym_compl] = ACTIONS(2307), - [anon_sym_DASH_DASH] = ACTIONS(4396), - [anon_sym_PLUS_PLUS] = ACTIONS(4396), - [anon_sym_sizeof] = ACTIONS(2315), - [anon_sym___alignof__] = ACTIONS(1960), - [anon_sym___alignof] = ACTIONS(1960), - [anon_sym__alignof] = ACTIONS(1960), - [anon_sym_alignof] = ACTIONS(1960), - [anon_sym__Alignof] = ACTIONS(1960), - [anon_sym_offsetof] = ACTIONS(1962), - [anon_sym__Generic] = ACTIONS(1964), - [anon_sym_asm] = ACTIONS(1966), - [anon_sym___asm__] = ACTIONS(1966), - [anon_sym___asm] = ACTIONS(1966), - [sym_number_literal] = ACTIONS(2317), - [anon_sym_L_SQUOTE] = ACTIONS(2319), - [anon_sym_u_SQUOTE] = ACTIONS(2319), - [anon_sym_U_SQUOTE] = ACTIONS(2319), - [anon_sym_u8_SQUOTE] = ACTIONS(2319), - [anon_sym_SQUOTE] = ACTIONS(2319), - [anon_sym_L_DQUOTE] = ACTIONS(2321), - [anon_sym_u_DQUOTE] = ACTIONS(2321), - [anon_sym_U_DQUOTE] = ACTIONS(2321), - [anon_sym_u8_DQUOTE] = ACTIONS(2321), - [anon_sym_DQUOTE] = ACTIONS(2321), - [sym_true] = ACTIONS(1974), - [sym_false] = ACTIONS(1974), - [anon_sym_NULL] = ACTIONS(1976), - [anon_sym_nullptr] = ACTIONS(1976), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(2323), - [anon_sym_R_DQUOTE] = ACTIONS(2325), - [anon_sym_LR_DQUOTE] = ACTIONS(2325), - [anon_sym_uR_DQUOTE] = ACTIONS(2325), - [anon_sym_UR_DQUOTE] = ACTIONS(2325), - [anon_sym_u8R_DQUOTE] = ACTIONS(2325), - [anon_sym_co_await] = ACTIONS(2327), - [anon_sym_new] = ACTIONS(2014), - [anon_sym_requires] = ACTIONS(1988), - [sym_this] = ACTIONS(1974), + [1314] = { + [sym_template_argument_list] = STATE(1561), + [sym_identifier] = ACTIONS(4925), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4927), + [anon_sym_COMMA] = ACTIONS(4927), + [anon_sym_RPAREN] = ACTIONS(4927), + [anon_sym_LPAREN2] = ACTIONS(4929), + [anon_sym_TILDE] = ACTIONS(4932), + [anon_sym_DASH] = ACTIONS(4934), + [anon_sym_PLUS] = ACTIONS(4934), + [anon_sym_STAR] = ACTIONS(4936), + [anon_sym_SLASH] = ACTIONS(4934), + [anon_sym_PERCENT] = ACTIONS(4934), + [anon_sym_PIPE_PIPE] = ACTIONS(4927), + [anon_sym_AMP_AMP] = ACTIONS(4929), + [anon_sym_PIPE] = ACTIONS(4934), + [anon_sym_CARET] = ACTIONS(4934), + [anon_sym_AMP] = ACTIONS(4936), + [anon_sym_EQ_EQ] = ACTIONS(4927), + [anon_sym_BANG_EQ] = ACTIONS(4927), + [anon_sym_GT] = ACTIONS(4934), + [anon_sym_GT_EQ] = ACTIONS(4927), + [anon_sym_LT_EQ] = ACTIONS(4934), + [anon_sym_LT] = ACTIONS(4939), + [anon_sym_LT_LT] = ACTIONS(4934), + [anon_sym_GT_GT] = ACTIONS(4934), + [anon_sym_SEMI] = ACTIONS(4927), + [anon_sym___extension__] = ACTIONS(4925), + [anon_sym_virtual] = ACTIONS(4925), + [anon_sym_extern] = ACTIONS(4925), + [anon_sym___attribute__] = ACTIONS(4925), + [anon_sym___attribute] = ACTIONS(4925), + [anon_sym_COLON_COLON] = ACTIONS(4187), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4932), + [anon_sym___declspec] = ACTIONS(4925), + [anon_sym___based] = ACTIONS(4925), + [anon_sym___cdecl] = ACTIONS(4925), + [anon_sym___clrcall] = ACTIONS(4925), + [anon_sym___stdcall] = ACTIONS(4925), + [anon_sym___fastcall] = ACTIONS(4925), + [anon_sym___thiscall] = ACTIONS(4925), + [anon_sym___vectorcall] = ACTIONS(4925), + [anon_sym_LBRACE] = ACTIONS(4932), + [anon_sym_RBRACE] = ACTIONS(4927), + [anon_sym_LBRACK] = ACTIONS(4936), + [anon_sym_static] = ACTIONS(4925), + [anon_sym_EQ] = ACTIONS(4934), + [anon_sym_register] = ACTIONS(4925), + [anon_sym_inline] = ACTIONS(4925), + [anon_sym___inline] = ACTIONS(4925), + [anon_sym___inline__] = ACTIONS(4925), + [anon_sym___forceinline] = ACTIONS(4925), + [anon_sym_thread_local] = ACTIONS(4925), + [anon_sym___thread] = ACTIONS(4925), + [anon_sym_const] = ACTIONS(4925), + [anon_sym_constexpr] = ACTIONS(4925), + [anon_sym_volatile] = ACTIONS(4925), + [anon_sym_restrict] = ACTIONS(4925), + [anon_sym___restrict__] = ACTIONS(4925), + [anon_sym__Atomic] = ACTIONS(4925), + [anon_sym__Noreturn] = ACTIONS(4925), + [anon_sym_noreturn] = ACTIONS(4925), + [anon_sym__Nonnull] = ACTIONS(4925), + [anon_sym_mutable] = ACTIONS(4925), + [anon_sym_constinit] = ACTIONS(4925), + [anon_sym_consteval] = ACTIONS(4925), + [anon_sym_alignas] = ACTIONS(4925), + [anon_sym__Alignas] = ACTIONS(4925), + [anon_sym_QMARK] = ACTIONS(4927), + [anon_sym_STAR_EQ] = ACTIONS(4927), + [anon_sym_SLASH_EQ] = ACTIONS(4927), + [anon_sym_PERCENT_EQ] = ACTIONS(4927), + [anon_sym_PLUS_EQ] = ACTIONS(4927), + [anon_sym_DASH_EQ] = ACTIONS(4927), + [anon_sym_LT_LT_EQ] = ACTIONS(4927), + [anon_sym_GT_GT_EQ] = ACTIONS(4927), + [anon_sym_AMP_EQ] = ACTIONS(4927), + [anon_sym_CARET_EQ] = ACTIONS(4927), + [anon_sym_PIPE_EQ] = ACTIONS(4927), + [anon_sym_and_eq] = ACTIONS(4934), + [anon_sym_or_eq] = ACTIONS(4934), + [anon_sym_xor_eq] = ACTIONS(4934), + [anon_sym_LT_EQ_GT] = ACTIONS(4927), + [anon_sym_or] = ACTIONS(4934), + [anon_sym_and] = ACTIONS(4934), + [anon_sym_bitor] = ACTIONS(4934), + [anon_sym_xor] = ACTIONS(4934), + [anon_sym_bitand] = ACTIONS(4934), + [anon_sym_not_eq] = ACTIONS(4934), + [anon_sym_DASH_DASH] = ACTIONS(4927), + [anon_sym_PLUS_PLUS] = ACTIONS(4927), + [anon_sym_DOT] = ACTIONS(4934), + [anon_sym_DOT_STAR] = ACTIONS(4927), + [anon_sym_DASH_GT] = ACTIONS(4927), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4925), + [anon_sym_decltype] = ACTIONS(4925), + [anon_sym_template] = ACTIONS(4925), + [anon_sym_operator] = ACTIONS(4925), }, - [1241] = { - [sym_expression] = STATE(3197), - [sym__string] = STATE(3235), - [sym_conditional_expression] = STATE(3373), - [sym_assignment_expression] = STATE(3373), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3373), - [sym_binary_expression] = STATE(3373), - [sym_update_expression] = STATE(3373), - [sym_cast_expression] = STATE(3373), - [sym_sizeof_expression] = STATE(3373), - [sym_alignof_expression] = STATE(3373), - [sym_offsetof_expression] = STATE(3373), - [sym_generic_expression] = STATE(3373), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3373), - [sym_extension_expression] = STATE(3373), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3373), - [sym_parenthesized_expression] = STATE(3365), - [sym_char_literal] = STATE(3235), - [sym_concatenated_string] = STATE(3235), - [sym_string_literal] = STATE(2358), - [sym_null] = STATE(3373), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7814), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3373), - [sym_raw_string_literal] = STATE(2358), - [sym_co_await_expression] = STATE(3373), - [sym_new_expression] = STATE(3373), - [sym_delete_expression] = STATE(3373), - [sym_requires_clause] = STATE(3373), - [sym_requires_expression] = STATE(3373), - [sym_lambda_expression] = STATE(3373), - [sym_lambda_capture_specifier] = STATE(5414), - [sym_fold_expression] = STATE(3373), - [sym_parameter_pack_expansion] = STATE(3373), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3365), - [sym_qualified_type_identifier] = STATE(7814), - [sym_user_defined_literal] = STATE(3365), + [1315] = { + [sym_expression] = STATE(3225), + [sym__string] = STATE(3393), + [sym_conditional_expression] = STATE(3401), + [sym_assignment_expression] = STATE(3401), + [sym_pointer_expression] = STATE(3405), + [sym_unary_expression] = STATE(3401), + [sym_binary_expression] = STATE(3401), + [sym_update_expression] = STATE(3401), + [sym_cast_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3401), + [sym_alignof_expression] = STATE(3401), + [sym_offsetof_expression] = STATE(3401), + [sym_generic_expression] = STATE(3401), + [sym_subscript_expression] = STATE(3405), + [sym_call_expression] = STATE(3405), + [sym_gnu_asm_expression] = STATE(3401), + [sym_extension_expression] = STATE(3401), + [sym_field_expression] = STATE(3405), + [sym_compound_literal_expression] = STATE(3401), + [sym_parenthesized_expression] = STATE(3405), + [sym_char_literal] = STATE(3393), + [sym_concatenated_string] = STATE(3393), + [sym_string_literal] = STATE(2380), + [sym_null] = STATE(3401), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7745), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3401), + [sym_raw_string_literal] = STATE(2380), + [sym_co_await_expression] = STATE(3401), + [sym_new_expression] = STATE(3401), + [sym_delete_expression] = STATE(3401), + [sym_requires_clause] = STATE(3401), + [sym_requires_expression] = STATE(3401), + [sym_lambda_expression] = STATE(3401), + [sym_lambda_capture_specifier] = STATE(5494), + [sym_fold_expression] = STATE(3401), + [sym_parameter_pack_expansion] = STATE(3401), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3405), + [sym_qualified_type_identifier] = STATE(7745), + [sym_user_defined_literal] = STATE(3405), [sym_identifier] = ACTIONS(2453), [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), [anon_sym___extension__] = ACTIONS(2455), - [anon_sym_COLON_COLON] = ACTIONS(1806), + [anon_sym_COLON_COLON] = ACTIONS(1804), [anon_sym_LBRACK] = ACTIONS(2020), [sym_primitive_type] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), - }, - [1242] = { - [sym_expression] = STATE(2893), - [sym__string] = STATE(2950), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(2950), - [sym_concatenated_string] = STATE(2950), - [sym_string_literal] = STATE(2034), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(2034), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), - [sym_identifier] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(4555), - [anon_sym_BANG] = ACTIONS(1994), - [anon_sym_TILDE] = ACTIONS(1994), - [anon_sym_DASH] = ACTIONS(1992), - [anon_sym_PLUS] = ACTIONS(1992), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(1996), - [anon_sym_COLON_COLON] = ACTIONS(1998), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(1956), - [anon_sym_not] = ACTIONS(1992), - [anon_sym_compl] = ACTIONS(1992), - [anon_sym_DASH_DASH] = ACTIONS(3343), - [anon_sym_PLUS_PLUS] = ACTIONS(3343), - [anon_sym_sizeof] = ACTIONS(2000), - [anon_sym___alignof__] = ACTIONS(1960), - [anon_sym___alignof] = ACTIONS(1960), - [anon_sym__alignof] = ACTIONS(1960), - [anon_sym_alignof] = ACTIONS(1960), - [anon_sym__Alignof] = ACTIONS(1960), - [anon_sym_offsetof] = ACTIONS(1962), - [anon_sym__Generic] = ACTIONS(1964), - [anon_sym_asm] = ACTIONS(1966), - [anon_sym___asm__] = ACTIONS(1966), - [anon_sym___asm] = ACTIONS(1966), - [sym_number_literal] = ACTIONS(2002), - [anon_sym_L_SQUOTE] = ACTIONS(2004), - [anon_sym_u_SQUOTE] = ACTIONS(2004), - [anon_sym_U_SQUOTE] = ACTIONS(2004), - [anon_sym_u8_SQUOTE] = ACTIONS(2004), - [anon_sym_SQUOTE] = ACTIONS(2004), - [anon_sym_L_DQUOTE] = ACTIONS(2006), - [anon_sym_u_DQUOTE] = ACTIONS(2006), - [anon_sym_U_DQUOTE] = ACTIONS(2006), - [anon_sym_u8_DQUOTE] = ACTIONS(2006), - [anon_sym_DQUOTE] = ACTIONS(2006), - [sym_true] = ACTIONS(1974), - [sym_false] = ACTIONS(1974), - [anon_sym_NULL] = ACTIONS(1976), - [anon_sym_nullptr] = ACTIONS(1976), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(2008), - [anon_sym_R_DQUOTE] = ACTIONS(2010), - [anon_sym_LR_DQUOTE] = ACTIONS(2010), - [anon_sym_uR_DQUOTE] = ACTIONS(2010), - [anon_sym_UR_DQUOTE] = ACTIONS(2010), - [anon_sym_u8R_DQUOTE] = ACTIONS(2010), - [anon_sym_co_await] = ACTIONS(2012), - [anon_sym_new] = ACTIONS(2014), - [anon_sym_requires] = ACTIONS(1988), - [sym_this] = ACTIONS(1974), - }, - [1243] = { - [sym_expression] = STATE(3051), - [sym__string] = STATE(3181), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(3181), - [sym_concatenated_string] = STATE(3181), - [sym_string_literal] = STATE(2297), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(2297), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), - [sym_identifier] = ACTIONS(2305), - [anon_sym_LPAREN2] = ACTIONS(4691), - [anon_sym_BANG] = ACTIONS(2309), - [anon_sym_TILDE] = ACTIONS(2309), - [anon_sym_DASH] = ACTIONS(2307), - [anon_sym_PLUS] = ACTIONS(2307), - [anon_sym_STAR] = ACTIONS(4382), - [anon_sym_AMP] = ACTIONS(4382), - [anon_sym___extension__] = ACTIONS(2311), - [anon_sym_COLON_COLON] = ACTIONS(2313), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(1956), - [anon_sym_not] = ACTIONS(2307), - [anon_sym_compl] = ACTIONS(2307), - [anon_sym_DASH_DASH] = ACTIONS(4396), - [anon_sym_PLUS_PLUS] = ACTIONS(4396), - [anon_sym_sizeof] = ACTIONS(2315), - [anon_sym___alignof__] = ACTIONS(1960), - [anon_sym___alignof] = ACTIONS(1960), - [anon_sym__alignof] = ACTIONS(1960), - [anon_sym_alignof] = ACTIONS(1960), - [anon_sym__Alignof] = ACTIONS(1960), - [anon_sym_offsetof] = ACTIONS(1962), - [anon_sym__Generic] = ACTIONS(1964), - [anon_sym_asm] = ACTIONS(1966), - [anon_sym___asm__] = ACTIONS(1966), - [anon_sym___asm] = ACTIONS(1966), - [sym_number_literal] = ACTIONS(2317), - [anon_sym_L_SQUOTE] = ACTIONS(2319), - [anon_sym_u_SQUOTE] = ACTIONS(2319), - [anon_sym_U_SQUOTE] = ACTIONS(2319), - [anon_sym_u8_SQUOTE] = ACTIONS(2319), - [anon_sym_SQUOTE] = ACTIONS(2319), - [anon_sym_L_DQUOTE] = ACTIONS(2321), - [anon_sym_u_DQUOTE] = ACTIONS(2321), - [anon_sym_U_DQUOTE] = ACTIONS(2321), - [anon_sym_u8_DQUOTE] = ACTIONS(2321), - [anon_sym_DQUOTE] = ACTIONS(2321), - [sym_true] = ACTIONS(1974), - [sym_false] = ACTIONS(1974), - [anon_sym_NULL] = ACTIONS(1976), - [anon_sym_nullptr] = ACTIONS(1976), + [anon_sym_not] = ACTIONS(1796), + [anon_sym_compl] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_sizeof] = ACTIONS(1824), + [anon_sym___alignof__] = ACTIONS(1826), + [anon_sym___alignof] = ACTIONS(1826), + [anon_sym__alignof] = ACTIONS(1826), + [anon_sym_alignof] = ACTIONS(1826), + [anon_sym__Alignof] = ACTIONS(1826), + [anon_sym_offsetof] = ACTIONS(1828), + [anon_sym__Generic] = ACTIONS(1830), + [anon_sym_asm] = ACTIONS(1832), + [anon_sym___asm__] = ACTIONS(1832), + [anon_sym___asm] = ACTIONS(1832), + [sym_number_literal] = ACTIONS(1834), + [anon_sym_L_SQUOTE] = ACTIONS(1836), + [anon_sym_u_SQUOTE] = ACTIONS(1836), + [anon_sym_U_SQUOTE] = ACTIONS(1836), + [anon_sym_u8_SQUOTE] = ACTIONS(1836), + [anon_sym_SQUOTE] = ACTIONS(1836), + [anon_sym_L_DQUOTE] = ACTIONS(1838), + [anon_sym_u_DQUOTE] = ACTIONS(1838), + [anon_sym_U_DQUOTE] = ACTIONS(1838), + [anon_sym_u8_DQUOTE] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym_true] = ACTIONS(1840), + [sym_false] = ACTIONS(1840), + [anon_sym_NULL] = ACTIONS(1842), + [anon_sym_nullptr] = ACTIONS(1842), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(2323), - [anon_sym_R_DQUOTE] = ACTIONS(2325), - [anon_sym_LR_DQUOTE] = ACTIONS(2325), - [anon_sym_uR_DQUOTE] = ACTIONS(2325), - [anon_sym_UR_DQUOTE] = ACTIONS(2325), - [anon_sym_u8R_DQUOTE] = ACTIONS(2325), - [anon_sym_co_await] = ACTIONS(2327), - [anon_sym_new] = ACTIONS(2014), - [anon_sym_requires] = ACTIONS(1988), - [sym_this] = ACTIONS(1974), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1852), + [anon_sym_R_DQUOTE] = ACTIONS(1854), + [anon_sym_LR_DQUOTE] = ACTIONS(1854), + [anon_sym_uR_DQUOTE] = ACTIONS(1854), + [anon_sym_UR_DQUOTE] = ACTIONS(1854), + [anon_sym_u8R_DQUOTE] = ACTIONS(1854), + [anon_sym_co_await] = ACTIONS(1856), + [anon_sym_new] = ACTIONS(1858), + [anon_sym_requires] = ACTIONS(1860), + [sym_this] = ACTIONS(1840), }, - [1244] = { - [sym_expression] = STATE(3126), - [sym__string] = STATE(3235), - [sym_conditional_expression] = STATE(3373), - [sym_assignment_expression] = STATE(3373), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3373), - [sym_binary_expression] = STATE(3373), - [sym_update_expression] = STATE(3373), - [sym_cast_expression] = STATE(3373), - [sym_sizeof_expression] = STATE(3373), - [sym_alignof_expression] = STATE(3373), - [sym_offsetof_expression] = STATE(3373), - [sym_generic_expression] = STATE(3373), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3373), - [sym_extension_expression] = STATE(3373), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3373), - [sym_parenthesized_expression] = STATE(3365), - [sym_char_literal] = STATE(3235), - [sym_concatenated_string] = STATE(3235), - [sym_string_literal] = STATE(2358), - [sym_null] = STATE(3373), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7814), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3373), - [sym_raw_string_literal] = STATE(2358), - [sym_co_await_expression] = STATE(3373), - [sym_new_expression] = STATE(3373), - [sym_delete_expression] = STATE(3373), - [sym_requires_clause] = STATE(3373), - [sym_requires_expression] = STATE(3373), - [sym_lambda_expression] = STATE(3373), - [sym_lambda_capture_specifier] = STATE(5414), - [sym_fold_expression] = STATE(3373), - [sym_parameter_pack_expansion] = STATE(3373), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3365), - [sym_qualified_type_identifier] = STATE(7814), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2453), + [1316] = { + [sym_expression] = STATE(3225), + [sym__string] = STATE(3393), + [sym_conditional_expression] = STATE(3401), + [sym_assignment_expression] = STATE(3401), + [sym_pointer_expression] = STATE(3405), + [sym_unary_expression] = STATE(3401), + [sym_binary_expression] = STATE(3401), + [sym_update_expression] = STATE(3401), + [sym_cast_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3401), + [sym_alignof_expression] = STATE(3401), + [sym_offsetof_expression] = STATE(3401), + [sym_generic_expression] = STATE(3401), + [sym_subscript_expression] = STATE(3405), + [sym_call_expression] = STATE(3405), + [sym_gnu_asm_expression] = STATE(3401), + [sym_extension_expression] = STATE(3401), + [sym_field_expression] = STATE(3405), + [sym_compound_literal_expression] = STATE(3401), + [sym_parenthesized_expression] = STATE(3405), + [sym_char_literal] = STATE(3393), + [sym_concatenated_string] = STATE(3393), + [sym_string_literal] = STATE(2380), + [sym_null] = STATE(3401), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7745), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3401), + [sym_raw_string_literal] = STATE(2380), + [sym_co_await_expression] = STATE(3401), + [sym_new_expression] = STATE(3401), + [sym_delete_expression] = STATE(3401), + [sym_requires_clause] = STATE(3401), + [sym_requires_expression] = STATE(3401), + [sym_lambda_expression] = STATE(3401), + [sym_lambda_capture_specifier] = STATE(5494), + [sym_fold_expression] = STATE(3401), + [sym_parameter_pack_expansion] = STATE(3401), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3405), + [sym_qualified_type_identifier] = STATE(7745), + [sym_user_defined_literal] = STATE(3405), + [sym_identifier] = ACTIONS(4942), [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), [anon_sym___extension__] = ACTIONS(2455), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACK] = ACTIONS(4911), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_LBRACK] = ACTIONS(2020), [sym_primitive_type] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), + [anon_sym_not] = ACTIONS(1796), + [anon_sym_compl] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_sizeof] = ACTIONS(1824), + [anon_sym___alignof__] = ACTIONS(1826), + [anon_sym___alignof] = ACTIONS(1826), + [anon_sym__alignof] = ACTIONS(1826), + [anon_sym_alignof] = ACTIONS(1826), + [anon_sym__Alignof] = ACTIONS(1826), + [anon_sym_offsetof] = ACTIONS(1828), + [anon_sym__Generic] = ACTIONS(1830), + [anon_sym_asm] = ACTIONS(1832), + [anon_sym___asm__] = ACTIONS(1832), + [anon_sym___asm] = ACTIONS(1832), + [sym_number_literal] = ACTIONS(1834), + [anon_sym_L_SQUOTE] = ACTIONS(1836), + [anon_sym_u_SQUOTE] = ACTIONS(1836), + [anon_sym_U_SQUOTE] = ACTIONS(1836), + [anon_sym_u8_SQUOTE] = ACTIONS(1836), + [anon_sym_SQUOTE] = ACTIONS(1836), + [anon_sym_L_DQUOTE] = ACTIONS(1838), + [anon_sym_u_DQUOTE] = ACTIONS(1838), + [anon_sym_U_DQUOTE] = ACTIONS(1838), + [anon_sym_u8_DQUOTE] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym_true] = ACTIONS(1840), + [sym_false] = ACTIONS(1840), + [anon_sym_NULL] = ACTIONS(1842), + [anon_sym_nullptr] = ACTIONS(1842), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1852), + [anon_sym_R_DQUOTE] = ACTIONS(1854), + [anon_sym_LR_DQUOTE] = ACTIONS(1854), + [anon_sym_uR_DQUOTE] = ACTIONS(1854), + [anon_sym_UR_DQUOTE] = ACTIONS(1854), + [anon_sym_u8R_DQUOTE] = ACTIONS(1854), + [anon_sym_co_await] = ACTIONS(1856), + [anon_sym_new] = ACTIONS(1858), + [anon_sym_requires] = ACTIONS(1860), + [sym_this] = ACTIONS(1840), }, - [1245] = { - [sym_expression] = STATE(4307), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1317] = { + [sym_expression] = STATE(4691), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -204076,7 +212277,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -204088,1067 +212289,167 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1246] = { - [sym_expression] = STATE(3155), - [sym__string] = STATE(3235), - [sym_conditional_expression] = STATE(3373), - [sym_assignment_expression] = STATE(3373), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3373), - [sym_binary_expression] = STATE(3373), - [sym_update_expression] = STATE(3373), - [sym_cast_expression] = STATE(3373), - [sym_sizeof_expression] = STATE(3373), - [sym_alignof_expression] = STATE(3373), - [sym_offsetof_expression] = STATE(3373), - [sym_generic_expression] = STATE(3373), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3373), - [sym_extension_expression] = STATE(3373), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3373), - [sym_parenthesized_expression] = STATE(3365), - [sym_char_literal] = STATE(3235), - [sym_concatenated_string] = STATE(3235), - [sym_string_literal] = STATE(2358), - [sym_null] = STATE(3373), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7814), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3373), - [sym_raw_string_literal] = STATE(2358), - [sym_co_await_expression] = STATE(3373), - [sym_new_expression] = STATE(3373), - [sym_delete_expression] = STATE(3373), - [sym_requires_clause] = STATE(3373), - [sym_requires_expression] = STATE(3373), - [sym_lambda_expression] = STATE(3373), - [sym_lambda_capture_specifier] = STATE(5414), - [sym_fold_expression] = STATE(3373), - [sym_parameter_pack_expansion] = STATE(3373), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3365), - [sym_qualified_type_identifier] = STATE(7814), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2453), - [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(2455), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), - }, - [1247] = { - [sym_expression] = STATE(3186), - [sym__string] = STATE(3235), - [sym_conditional_expression] = STATE(3373), - [sym_assignment_expression] = STATE(3373), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3373), - [sym_binary_expression] = STATE(3373), - [sym_update_expression] = STATE(3373), - [sym_cast_expression] = STATE(3373), - [sym_sizeof_expression] = STATE(3373), - [sym_alignof_expression] = STATE(3373), - [sym_offsetof_expression] = STATE(3373), - [sym_generic_expression] = STATE(3373), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3373), - [sym_extension_expression] = STATE(3373), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3373), - [sym_parenthesized_expression] = STATE(3365), - [sym_char_literal] = STATE(3235), - [sym_concatenated_string] = STATE(3235), - [sym_string_literal] = STATE(2358), - [sym_null] = STATE(3373), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7814), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3373), - [sym_raw_string_literal] = STATE(2358), - [sym_co_await_expression] = STATE(3373), - [sym_new_expression] = STATE(3373), - [sym_delete_expression] = STATE(3373), - [sym_requires_clause] = STATE(3373), - [sym_requires_expression] = STATE(3373), - [sym_lambda_expression] = STATE(3373), - [sym_lambda_capture_specifier] = STATE(5414), - [sym_fold_expression] = STATE(3373), - [sym_parameter_pack_expansion] = STATE(3373), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3365), - [sym_qualified_type_identifier] = STATE(7814), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2453), - [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(2455), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), - }, - [1248] = { - [sym_expression] = STATE(3186), - [sym__string] = STATE(3235), - [sym_conditional_expression] = STATE(3373), - [sym_assignment_expression] = STATE(3373), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3373), - [sym_binary_expression] = STATE(3373), - [sym_update_expression] = STATE(3373), - [sym_cast_expression] = STATE(3373), - [sym_sizeof_expression] = STATE(3373), - [sym_alignof_expression] = STATE(3373), - [sym_offsetof_expression] = STATE(3373), - [sym_generic_expression] = STATE(3373), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3373), - [sym_extension_expression] = STATE(3373), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3373), - [sym_parenthesized_expression] = STATE(3365), - [sym_char_literal] = STATE(3235), - [sym_concatenated_string] = STATE(3235), - [sym_string_literal] = STATE(2358), - [sym_null] = STATE(3373), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7814), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3373), - [sym_raw_string_literal] = STATE(2358), - [sym_co_await_expression] = STATE(3373), - [sym_new_expression] = STATE(3373), - [sym_delete_expression] = STATE(3373), - [sym_requires_clause] = STATE(3373), - [sym_requires_expression] = STATE(3373), - [sym_lambda_expression] = STATE(3373), - [sym_lambda_capture_specifier] = STATE(5414), - [sym_fold_expression] = STATE(3373), - [sym_parameter_pack_expansion] = STATE(3373), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3365), - [sym_qualified_type_identifier] = STATE(7814), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(4913), - [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(2455), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), - }, - [1249] = { - [sym_expression] = STATE(3156), - [sym__string] = STATE(3235), - [sym_conditional_expression] = STATE(3373), - [sym_assignment_expression] = STATE(3373), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3373), - [sym_binary_expression] = STATE(3373), - [sym_update_expression] = STATE(3373), - [sym_cast_expression] = STATE(3373), - [sym_sizeof_expression] = STATE(3373), - [sym_alignof_expression] = STATE(3373), - [sym_offsetof_expression] = STATE(3373), - [sym_generic_expression] = STATE(3373), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3373), - [sym_extension_expression] = STATE(3373), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3373), - [sym_parenthesized_expression] = STATE(3365), - [sym_char_literal] = STATE(3235), - [sym_concatenated_string] = STATE(3235), - [sym_string_literal] = STATE(2358), - [sym_null] = STATE(3373), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7814), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3373), - [sym_raw_string_literal] = STATE(2358), - [sym_co_await_expression] = STATE(3373), - [sym_new_expression] = STATE(3373), - [sym_delete_expression] = STATE(3373), - [sym_requires_clause] = STATE(3373), - [sym_requires_expression] = STATE(3373), - [sym_lambda_expression] = STATE(3373), - [sym_lambda_capture_specifier] = STATE(5414), - [sym_fold_expression] = STATE(3373), - [sym_parameter_pack_expansion] = STATE(3373), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3365), - [sym_qualified_type_identifier] = STATE(7814), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2453), - [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(2455), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), - }, - [1250] = { - [sym_expression] = STATE(3158), - [sym__string] = STATE(3235), - [sym_conditional_expression] = STATE(3373), - [sym_assignment_expression] = STATE(3373), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3373), - [sym_binary_expression] = STATE(3373), - [sym_update_expression] = STATE(3373), - [sym_cast_expression] = STATE(3373), - [sym_sizeof_expression] = STATE(3373), - [sym_alignof_expression] = STATE(3373), - [sym_offsetof_expression] = STATE(3373), - [sym_generic_expression] = STATE(3373), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3373), - [sym_extension_expression] = STATE(3373), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3373), - [sym_parenthesized_expression] = STATE(3365), - [sym_char_literal] = STATE(3235), - [sym_concatenated_string] = STATE(3235), - [sym_string_literal] = STATE(2358), - [sym_null] = STATE(3373), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7814), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3373), - [sym_raw_string_literal] = STATE(2358), - [sym_co_await_expression] = STATE(3373), - [sym_new_expression] = STATE(3373), - [sym_delete_expression] = STATE(3373), - [sym_requires_clause] = STATE(3373), - [sym_requires_expression] = STATE(3373), - [sym_lambda_expression] = STATE(3373), - [sym_lambda_capture_specifier] = STATE(5414), - [sym_fold_expression] = STATE(3373), - [sym_parameter_pack_expansion] = STATE(3373), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3365), - [sym_qualified_type_identifier] = STATE(7814), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2453), - [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(2455), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), - }, - [1251] = { - [sym_expression] = STATE(3159), - [sym__string] = STATE(3235), - [sym_conditional_expression] = STATE(3373), - [sym_assignment_expression] = STATE(3373), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3373), - [sym_binary_expression] = STATE(3373), - [sym_update_expression] = STATE(3373), - [sym_cast_expression] = STATE(3373), - [sym_sizeof_expression] = STATE(3373), - [sym_alignof_expression] = STATE(3373), - [sym_offsetof_expression] = STATE(3373), - [sym_generic_expression] = STATE(3373), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3373), - [sym_extension_expression] = STATE(3373), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3373), - [sym_parenthesized_expression] = STATE(3365), - [sym_char_literal] = STATE(3235), - [sym_concatenated_string] = STATE(3235), - [sym_string_literal] = STATE(2358), - [sym_null] = STATE(3373), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7814), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3373), - [sym_raw_string_literal] = STATE(2358), - [sym_co_await_expression] = STATE(3373), - [sym_new_expression] = STATE(3373), - [sym_delete_expression] = STATE(3373), - [sym_requires_clause] = STATE(3373), - [sym_requires_expression] = STATE(3373), - [sym_lambda_expression] = STATE(3373), - [sym_lambda_capture_specifier] = STATE(5414), - [sym_fold_expression] = STATE(3373), - [sym_parameter_pack_expansion] = STATE(3373), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3365), - [sym_qualified_type_identifier] = STATE(7814), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2453), - [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(2455), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), - }, - [1252] = { - [sym_expression] = STATE(3160), - [sym__string] = STATE(3235), - [sym_conditional_expression] = STATE(3373), - [sym_assignment_expression] = STATE(3373), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3373), - [sym_binary_expression] = STATE(3373), - [sym_update_expression] = STATE(3373), - [sym_cast_expression] = STATE(3373), - [sym_sizeof_expression] = STATE(3373), - [sym_alignof_expression] = STATE(3373), - [sym_offsetof_expression] = STATE(3373), - [sym_generic_expression] = STATE(3373), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3373), - [sym_extension_expression] = STATE(3373), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3373), - [sym_parenthesized_expression] = STATE(3365), - [sym_char_literal] = STATE(3235), - [sym_concatenated_string] = STATE(3235), - [sym_string_literal] = STATE(2358), - [sym_null] = STATE(3373), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7814), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3373), - [sym_raw_string_literal] = STATE(2358), - [sym_co_await_expression] = STATE(3373), - [sym_new_expression] = STATE(3373), - [sym_delete_expression] = STATE(3373), - [sym_requires_clause] = STATE(3373), - [sym_requires_expression] = STATE(3373), - [sym_lambda_expression] = STATE(3373), - [sym_lambda_capture_specifier] = STATE(5414), - [sym_fold_expression] = STATE(3373), - [sym_parameter_pack_expansion] = STATE(3373), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3365), - [sym_qualified_type_identifier] = STATE(7814), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2453), - [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(2455), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), - }, - [1253] = { - [sym_expression] = STATE(3136), - [sym__string] = STATE(3235), - [sym_conditional_expression] = STATE(3373), - [sym_assignment_expression] = STATE(3373), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3373), - [sym_binary_expression] = STATE(3373), - [sym_update_expression] = STATE(3373), - [sym_cast_expression] = STATE(3373), - [sym_sizeof_expression] = STATE(3373), - [sym_alignof_expression] = STATE(3373), - [sym_offsetof_expression] = STATE(3373), - [sym_generic_expression] = STATE(3373), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3373), - [sym_extension_expression] = STATE(3373), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3373), - [sym_parenthesized_expression] = STATE(3365), - [sym_char_literal] = STATE(3235), - [sym_concatenated_string] = STATE(3235), - [sym_string_literal] = STATE(2358), - [sym_null] = STATE(3373), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7814), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3373), - [sym_raw_string_literal] = STATE(2358), - [sym_co_await_expression] = STATE(3373), - [sym_new_expression] = STATE(3373), - [sym_delete_expression] = STATE(3373), - [sym_requires_clause] = STATE(3373), - [sym_requires_expression] = STATE(3373), - [sym_lambda_expression] = STATE(3373), - [sym_lambda_capture_specifier] = STATE(5414), - [sym_fold_expression] = STATE(3373), - [sym_parameter_pack_expansion] = STATE(3373), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3365), - [sym_qualified_type_identifier] = STATE(7814), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2453), - [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(2455), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), - }, - [1254] = { - [sym_expression] = STATE(3110), - [sym__string] = STATE(3235), - [sym_conditional_expression] = STATE(3373), - [sym_assignment_expression] = STATE(3373), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3373), - [sym_binary_expression] = STATE(3373), - [sym_update_expression] = STATE(3373), - [sym_cast_expression] = STATE(3373), - [sym_sizeof_expression] = STATE(3373), - [sym_alignof_expression] = STATE(3373), - [sym_offsetof_expression] = STATE(3373), - [sym_generic_expression] = STATE(3373), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3373), - [sym_extension_expression] = STATE(3373), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3373), - [sym_parenthesized_expression] = STATE(3365), - [sym_char_literal] = STATE(3235), - [sym_concatenated_string] = STATE(3235), - [sym_string_literal] = STATE(2358), - [sym_null] = STATE(3373), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7814), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3373), - [sym_raw_string_literal] = STATE(2358), - [sym_co_await_expression] = STATE(3373), - [sym_new_expression] = STATE(3373), - [sym_delete_expression] = STATE(3373), - [sym_requires_clause] = STATE(3373), - [sym_requires_expression] = STATE(3373), - [sym_lambda_expression] = STATE(3373), - [sym_lambda_capture_specifier] = STATE(5414), - [sym_fold_expression] = STATE(3373), - [sym_parameter_pack_expansion] = STATE(3373), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3365), - [sym_qualified_type_identifier] = STATE(7814), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2453), - [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(2455), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), - }, - [1255] = { + [1318] = { [sym_expression] = STATE(3208), - [sym__string] = STATE(3235), - [sym_conditional_expression] = STATE(3373), - [sym_assignment_expression] = STATE(3373), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3373), - [sym_binary_expression] = STATE(3373), - [sym_update_expression] = STATE(3373), - [sym_cast_expression] = STATE(3373), - [sym_sizeof_expression] = STATE(3373), - [sym_alignof_expression] = STATE(3373), - [sym_offsetof_expression] = STATE(3373), - [sym_generic_expression] = STATE(3373), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3373), - [sym_extension_expression] = STATE(3373), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3373), - [sym_parenthesized_expression] = STATE(3365), - [sym_char_literal] = STATE(3235), - [sym_concatenated_string] = STATE(3235), - [sym_string_literal] = STATE(2358), - [sym_null] = STATE(3373), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7814), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3373), - [sym_raw_string_literal] = STATE(2358), - [sym_co_await_expression] = STATE(3373), - [sym_new_expression] = STATE(3373), - [sym_delete_expression] = STATE(3373), - [sym_requires_clause] = STATE(3373), - [sym_requires_expression] = STATE(3373), - [sym_lambda_expression] = STATE(3373), - [sym_lambda_capture_specifier] = STATE(5414), - [sym_fold_expression] = STATE(3373), - [sym_parameter_pack_expansion] = STATE(3373), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3365), - [sym_qualified_type_identifier] = STATE(7814), - [sym_user_defined_literal] = STATE(3365), + [sym__string] = STATE(3393), + [sym_conditional_expression] = STATE(3401), + [sym_assignment_expression] = STATE(3401), + [sym_pointer_expression] = STATE(3405), + [sym_unary_expression] = STATE(3401), + [sym_binary_expression] = STATE(3401), + [sym_update_expression] = STATE(3401), + [sym_cast_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3401), + [sym_alignof_expression] = STATE(3401), + [sym_offsetof_expression] = STATE(3401), + [sym_generic_expression] = STATE(3401), + [sym_subscript_expression] = STATE(3405), + [sym_call_expression] = STATE(3405), + [sym_gnu_asm_expression] = STATE(3401), + [sym_extension_expression] = STATE(3401), + [sym_field_expression] = STATE(3405), + [sym_compound_literal_expression] = STATE(3401), + [sym_parenthesized_expression] = STATE(3405), + [sym_char_literal] = STATE(3393), + [sym_concatenated_string] = STATE(3393), + [sym_string_literal] = STATE(2380), + [sym_null] = STATE(3401), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7745), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3401), + [sym_raw_string_literal] = STATE(2380), + [sym_co_await_expression] = STATE(3401), + [sym_new_expression] = STATE(3401), + [sym_delete_expression] = STATE(3401), + [sym_requires_clause] = STATE(3401), + [sym_requires_expression] = STATE(3401), + [sym_lambda_expression] = STATE(3401), + [sym_lambda_capture_specifier] = STATE(5494), + [sym_fold_expression] = STATE(3401), + [sym_parameter_pack_expansion] = STATE(3401), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3405), + [sym_qualified_type_identifier] = STATE(7745), + [sym_user_defined_literal] = STATE(3405), [sym_identifier] = ACTIONS(2453), [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), [anon_sym___extension__] = ACTIONS(2455), - [anon_sym_COLON_COLON] = ACTIONS(1806), + [anon_sym_COLON_COLON] = ACTIONS(1804), [anon_sym_LBRACK] = ACTIONS(2020), [sym_primitive_type] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), + [anon_sym_not] = ACTIONS(1796), + [anon_sym_compl] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_sizeof] = ACTIONS(1824), + [anon_sym___alignof__] = ACTIONS(1826), + [anon_sym___alignof] = ACTIONS(1826), + [anon_sym__alignof] = ACTIONS(1826), + [anon_sym_alignof] = ACTIONS(1826), + [anon_sym__Alignof] = ACTIONS(1826), + [anon_sym_offsetof] = ACTIONS(1828), + [anon_sym__Generic] = ACTIONS(1830), + [anon_sym_asm] = ACTIONS(1832), + [anon_sym___asm__] = ACTIONS(1832), + [anon_sym___asm] = ACTIONS(1832), + [sym_number_literal] = ACTIONS(1834), + [anon_sym_L_SQUOTE] = ACTIONS(1836), + [anon_sym_u_SQUOTE] = ACTIONS(1836), + [anon_sym_U_SQUOTE] = ACTIONS(1836), + [anon_sym_u8_SQUOTE] = ACTIONS(1836), + [anon_sym_SQUOTE] = ACTIONS(1836), + [anon_sym_L_DQUOTE] = ACTIONS(1838), + [anon_sym_u_DQUOTE] = ACTIONS(1838), + [anon_sym_U_DQUOTE] = ACTIONS(1838), + [anon_sym_u8_DQUOTE] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym_true] = ACTIONS(1840), + [sym_false] = ACTIONS(1840), + [anon_sym_NULL] = ACTIONS(1842), + [anon_sym_nullptr] = ACTIONS(1842), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1852), + [anon_sym_R_DQUOTE] = ACTIONS(1854), + [anon_sym_LR_DQUOTE] = ACTIONS(1854), + [anon_sym_uR_DQUOTE] = ACTIONS(1854), + [anon_sym_UR_DQUOTE] = ACTIONS(1854), + [anon_sym_u8R_DQUOTE] = ACTIONS(1854), + [anon_sym_co_await] = ACTIONS(1856), + [anon_sym_new] = ACTIONS(1858), + [anon_sym_requires] = ACTIONS(1860), + [sym_this] = ACTIONS(1840), }, - [1256] = { - [sym_expression] = STATE(4266), - [sym__string] = STATE(4380), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3253), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3253), - [sym_call_expression] = STATE(3253), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3253), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3253), - [sym_char_literal] = STATE(4380), - [sym_concatenated_string] = STATE(4380), - [sym_string_literal] = STATE(3416), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3416), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3253), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3253), - [sym_identifier] = ACTIONS(3823), + [1319] = { + [sym_expression] = STATE(4319), + [sym__string] = STATE(4455), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3366), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3366), + [sym_call_expression] = STATE(3366), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3366), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3366), + [sym_char_literal] = STATE(4455), + [sym_concatenated_string] = STATE(4455), + [sym_string_literal] = STATE(3406), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3406), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3366), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3366), + [sym_identifier] = ACTIONS(3833), [anon_sym_LPAREN2] = ACTIONS(4557), - [anon_sym_BANG] = ACTIONS(3827), - [anon_sym_TILDE] = ACTIONS(3827), - [anon_sym_DASH] = ACTIONS(3825), - [anon_sym_PLUS] = ACTIONS(3825), - [anon_sym_STAR] = ACTIONS(4382), - [anon_sym_AMP] = ACTIONS(4382), - [anon_sym___extension__] = ACTIONS(3829), - [anon_sym_COLON_COLON] = ACTIONS(3831), - [anon_sym_LBRACK] = ACTIONS(4792), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3825), - [anon_sym_compl] = ACTIONS(3825), - [anon_sym_DASH_DASH] = ACTIONS(4384), - [anon_sym_PLUS_PLUS] = ACTIONS(4384), - [anon_sym_sizeof] = ACTIONS(3833), + [anon_sym_BANG] = ACTIONS(3837), + [anon_sym_TILDE] = ACTIONS(3837), + [anon_sym_DASH] = ACTIONS(3835), + [anon_sym_PLUS] = ACTIONS(3835), + [anon_sym_STAR] = ACTIONS(4336), + [anon_sym_AMP] = ACTIONS(4336), + [anon_sym___extension__] = ACTIONS(3839), + [anon_sym_COLON_COLON] = ACTIONS(3841), + [anon_sym_LBRACK] = ACTIONS(4741), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3835), + [anon_sym_compl] = ACTIONS(3835), + [anon_sym_DASH_DASH] = ACTIONS(4338), + [anon_sym_PLUS_PLUS] = ACTIONS(4338), + [anon_sym_sizeof] = ACTIONS(3843), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -205159,296 +212460,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(113), [anon_sym___asm__] = ACTIONS(113), [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3835), - [anon_sym_L_SQUOTE] = ACTIONS(3837), - [anon_sym_u_SQUOTE] = ACTIONS(3837), - [anon_sym_U_SQUOTE] = ACTIONS(3837), - [anon_sym_u8_SQUOTE] = ACTIONS(3837), - [anon_sym_SQUOTE] = ACTIONS(3837), - [anon_sym_L_DQUOTE] = ACTIONS(3839), - [anon_sym_u_DQUOTE] = ACTIONS(3839), - [anon_sym_U_DQUOTE] = ACTIONS(3839), - [anon_sym_u8_DQUOTE] = ACTIONS(3839), - [anon_sym_DQUOTE] = ACTIONS(3839), + [sym_number_literal] = ACTIONS(3845), + [anon_sym_L_SQUOTE] = ACTIONS(3847), + [anon_sym_u_SQUOTE] = ACTIONS(3847), + [anon_sym_U_SQUOTE] = ACTIONS(3847), + [anon_sym_u8_SQUOTE] = ACTIONS(3847), + [anon_sym_SQUOTE] = ACTIONS(3847), + [anon_sym_L_DQUOTE] = ACTIONS(3849), + [anon_sym_u_DQUOTE] = ACTIONS(3849), + [anon_sym_U_DQUOTE] = ACTIONS(3849), + [anon_sym_u8_DQUOTE] = ACTIONS(3849), + [anon_sym_DQUOTE] = ACTIONS(3849), [sym_true] = ACTIONS(229), [sym_false] = ACTIONS(229), [anon_sym_NULL] = ACTIONS(123), [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3841), - [anon_sym_R_DQUOTE] = ACTIONS(3843), - [anon_sym_LR_DQUOTE] = ACTIONS(3843), - [anon_sym_uR_DQUOTE] = ACTIONS(3843), - [anon_sym_UR_DQUOTE] = ACTIONS(3843), - [anon_sym_u8R_DQUOTE] = ACTIONS(3843), - [anon_sym_co_await] = ACTIONS(3845), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3851), + [anon_sym_R_DQUOTE] = ACTIONS(3853), + [anon_sym_LR_DQUOTE] = ACTIONS(3853), + [anon_sym_uR_DQUOTE] = ACTIONS(3853), + [anon_sym_UR_DQUOTE] = ACTIONS(3853), + [anon_sym_u8R_DQUOTE] = ACTIONS(3853), + [anon_sym_co_await] = ACTIONS(3855), [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1257] = { - [sym_expression] = STATE(3163), - [sym__string] = STATE(3235), - [sym_conditional_expression] = STATE(3373), - [sym_assignment_expression] = STATE(3373), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3373), - [sym_binary_expression] = STATE(3373), - [sym_update_expression] = STATE(3373), - [sym_cast_expression] = STATE(3373), - [sym_sizeof_expression] = STATE(3373), - [sym_alignof_expression] = STATE(3373), - [sym_offsetof_expression] = STATE(3373), - [sym_generic_expression] = STATE(3373), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3373), - [sym_extension_expression] = STATE(3373), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3373), - [sym_parenthesized_expression] = STATE(3365), - [sym_char_literal] = STATE(3235), - [sym_concatenated_string] = STATE(3235), - [sym_string_literal] = STATE(2358), - [sym_null] = STATE(3373), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7814), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3373), - [sym_raw_string_literal] = STATE(2358), - [sym_co_await_expression] = STATE(3373), - [sym_new_expression] = STATE(3373), - [sym_delete_expression] = STATE(3373), - [sym_requires_clause] = STATE(3373), - [sym_requires_expression] = STATE(3373), - [sym_lambda_expression] = STATE(3373), - [sym_lambda_capture_specifier] = STATE(5414), - [sym_fold_expression] = STATE(3373), - [sym_parameter_pack_expansion] = STATE(3373), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3365), - [sym_qualified_type_identifier] = STATE(7814), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2453), - [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(2455), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), - }, - [1258] = { - [sym_expression] = STATE(3164), - [sym__string] = STATE(3235), - [sym_conditional_expression] = STATE(3373), - [sym_assignment_expression] = STATE(3373), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3373), - [sym_binary_expression] = STATE(3373), - [sym_update_expression] = STATE(3373), - [sym_cast_expression] = STATE(3373), - [sym_sizeof_expression] = STATE(3373), - [sym_alignof_expression] = STATE(3373), - [sym_offsetof_expression] = STATE(3373), - [sym_generic_expression] = STATE(3373), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3373), - [sym_extension_expression] = STATE(3373), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3373), - [sym_parenthesized_expression] = STATE(3365), - [sym_char_literal] = STATE(3235), - [sym_concatenated_string] = STATE(3235), - [sym_string_literal] = STATE(2358), - [sym_null] = STATE(3373), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7814), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3373), - [sym_raw_string_literal] = STATE(2358), - [sym_co_await_expression] = STATE(3373), - [sym_new_expression] = STATE(3373), - [sym_delete_expression] = STATE(3373), - [sym_requires_clause] = STATE(3373), - [sym_requires_expression] = STATE(3373), - [sym_lambda_expression] = STATE(3373), - [sym_lambda_capture_specifier] = STATE(5414), - [sym_fold_expression] = STATE(3373), - [sym_parameter_pack_expansion] = STATE(3373), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3365), - [sym_qualified_type_identifier] = STATE(7814), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2453), - [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(2455), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), - }, - [1259] = { - [sym_expression] = STATE(3766), - [sym__string] = STATE(4380), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3253), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3253), - [sym_call_expression] = STATE(3253), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3253), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3253), - [sym_char_literal] = STATE(4380), - [sym_concatenated_string] = STATE(4380), - [sym_string_literal] = STATE(3416), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3416), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3253), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3253), - [sym_identifier] = ACTIONS(3823), + [1320] = { + [sym_expression] = STATE(3747), + [sym__string] = STATE(4455), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3366), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3366), + [sym_call_expression] = STATE(3366), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3366), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3366), + [sym_char_literal] = STATE(4455), + [sym_concatenated_string] = STATE(4455), + [sym_string_literal] = STATE(3406), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3406), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3366), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3366), + [sym_identifier] = ACTIONS(3833), [anon_sym_LPAREN2] = ACTIONS(4557), - [anon_sym_BANG] = ACTIONS(3827), - [anon_sym_TILDE] = ACTIONS(3827), - [anon_sym_DASH] = ACTIONS(3825), - [anon_sym_PLUS] = ACTIONS(3825), - [anon_sym_STAR] = ACTIONS(4382), - [anon_sym_AMP] = ACTIONS(4382), - [anon_sym___extension__] = ACTIONS(3829), - [anon_sym_COLON_COLON] = ACTIONS(3831), + [anon_sym_BANG] = ACTIONS(3837), + [anon_sym_TILDE] = ACTIONS(3837), + [anon_sym_DASH] = ACTIONS(3835), + [anon_sym_PLUS] = ACTIONS(3835), + [anon_sym_STAR] = ACTIONS(4336), + [anon_sym_AMP] = ACTIONS(4336), + [anon_sym___extension__] = ACTIONS(3839), + [anon_sym_COLON_COLON] = ACTIONS(3841), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3825), - [anon_sym_compl] = ACTIONS(3825), - [anon_sym_DASH_DASH] = ACTIONS(4384), - [anon_sym_PLUS_PLUS] = ACTIONS(4384), - [anon_sym_sizeof] = ACTIONS(3833), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3835), + [anon_sym_compl] = ACTIONS(3835), + [anon_sym_DASH_DASH] = ACTIONS(4338), + [anon_sym_PLUS_PLUS] = ACTIONS(4338), + [anon_sym_sizeof] = ACTIONS(3843), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -205459,396 +212560,196 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(113), [anon_sym___asm__] = ACTIONS(113), [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3835), - [anon_sym_L_SQUOTE] = ACTIONS(3837), - [anon_sym_u_SQUOTE] = ACTIONS(3837), - [anon_sym_U_SQUOTE] = ACTIONS(3837), - [anon_sym_u8_SQUOTE] = ACTIONS(3837), - [anon_sym_SQUOTE] = ACTIONS(3837), - [anon_sym_L_DQUOTE] = ACTIONS(3839), - [anon_sym_u_DQUOTE] = ACTIONS(3839), - [anon_sym_U_DQUOTE] = ACTIONS(3839), - [anon_sym_u8_DQUOTE] = ACTIONS(3839), - [anon_sym_DQUOTE] = ACTIONS(3839), + [sym_number_literal] = ACTIONS(3845), + [anon_sym_L_SQUOTE] = ACTIONS(3847), + [anon_sym_u_SQUOTE] = ACTIONS(3847), + [anon_sym_U_SQUOTE] = ACTIONS(3847), + [anon_sym_u8_SQUOTE] = ACTIONS(3847), + [anon_sym_SQUOTE] = ACTIONS(3847), + [anon_sym_L_DQUOTE] = ACTIONS(3849), + [anon_sym_u_DQUOTE] = ACTIONS(3849), + [anon_sym_U_DQUOTE] = ACTIONS(3849), + [anon_sym_u8_DQUOTE] = ACTIONS(3849), + [anon_sym_DQUOTE] = ACTIONS(3849), [sym_true] = ACTIONS(229), [sym_false] = ACTIONS(229), [anon_sym_NULL] = ACTIONS(123), [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3841), - [anon_sym_R_DQUOTE] = ACTIONS(3843), - [anon_sym_LR_DQUOTE] = ACTIONS(3843), - [anon_sym_uR_DQUOTE] = ACTIONS(3843), - [anon_sym_UR_DQUOTE] = ACTIONS(3843), - [anon_sym_u8R_DQUOTE] = ACTIONS(3843), - [anon_sym_co_await] = ACTIONS(3845), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3851), + [anon_sym_R_DQUOTE] = ACTIONS(3853), + [anon_sym_LR_DQUOTE] = ACTIONS(3853), + [anon_sym_uR_DQUOTE] = ACTIONS(3853), + [anon_sym_UR_DQUOTE] = ACTIONS(3853), + [anon_sym_u8R_DQUOTE] = ACTIONS(3853), + [anon_sym_co_await] = ACTIONS(3855), [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1260] = { - [sym_expression] = STATE(3165), - [sym__string] = STATE(3235), - [sym_conditional_expression] = STATE(3373), - [sym_assignment_expression] = STATE(3373), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3373), - [sym_binary_expression] = STATE(3373), - [sym_update_expression] = STATE(3373), - [sym_cast_expression] = STATE(3373), - [sym_sizeof_expression] = STATE(3373), - [sym_alignof_expression] = STATE(3373), - [sym_offsetof_expression] = STATE(3373), - [sym_generic_expression] = STATE(3373), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3373), - [sym_extension_expression] = STATE(3373), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3373), - [sym_parenthesized_expression] = STATE(3365), - [sym_char_literal] = STATE(3235), - [sym_concatenated_string] = STATE(3235), - [sym_string_literal] = STATE(2358), - [sym_null] = STATE(3373), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7814), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3373), - [sym_raw_string_literal] = STATE(2358), - [sym_co_await_expression] = STATE(3373), - [sym_new_expression] = STATE(3373), - [sym_delete_expression] = STATE(3373), - [sym_requires_clause] = STATE(3373), - [sym_requires_expression] = STATE(3373), - [sym_lambda_expression] = STATE(3373), - [sym_lambda_capture_specifier] = STATE(5414), - [sym_fold_expression] = STATE(3373), - [sym_parameter_pack_expansion] = STATE(3373), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3365), - [sym_qualified_type_identifier] = STATE(7814), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2453), - [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(2455), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), - }, - [1261] = { - [sym_expression] = STATE(2970), - [sym__string] = STATE(2950), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(2950), - [sym_concatenated_string] = STATE(2950), - [sym_string_literal] = STATE(2034), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(2034), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), - [sym_identifier] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(4555), - [anon_sym_BANG] = ACTIONS(1994), - [anon_sym_TILDE] = ACTIONS(1994), - [anon_sym_DASH] = ACTIONS(1992), - [anon_sym_PLUS] = ACTIONS(1992), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(1996), - [anon_sym_COLON_COLON] = ACTIONS(1998), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(1956), - [anon_sym_not] = ACTIONS(1992), - [anon_sym_compl] = ACTIONS(1992), - [anon_sym_DASH_DASH] = ACTIONS(3343), - [anon_sym_PLUS_PLUS] = ACTIONS(3343), - [anon_sym_sizeof] = ACTIONS(2000), - [anon_sym___alignof__] = ACTIONS(1960), - [anon_sym___alignof] = ACTIONS(1960), - [anon_sym__alignof] = ACTIONS(1960), - [anon_sym_alignof] = ACTIONS(1960), - [anon_sym__Alignof] = ACTIONS(1960), - [anon_sym_offsetof] = ACTIONS(1962), - [anon_sym__Generic] = ACTIONS(1964), - [anon_sym_asm] = ACTIONS(1966), - [anon_sym___asm__] = ACTIONS(1966), - [anon_sym___asm] = ACTIONS(1966), - [sym_number_literal] = ACTIONS(2002), - [anon_sym_L_SQUOTE] = ACTIONS(2004), - [anon_sym_u_SQUOTE] = ACTIONS(2004), - [anon_sym_U_SQUOTE] = ACTIONS(2004), - [anon_sym_u8_SQUOTE] = ACTIONS(2004), - [anon_sym_SQUOTE] = ACTIONS(2004), - [anon_sym_L_DQUOTE] = ACTIONS(2006), - [anon_sym_u_DQUOTE] = ACTIONS(2006), - [anon_sym_U_DQUOTE] = ACTIONS(2006), - [anon_sym_u8_DQUOTE] = ACTIONS(2006), - [anon_sym_DQUOTE] = ACTIONS(2006), - [sym_true] = ACTIONS(1974), - [sym_false] = ACTIONS(1974), - [anon_sym_NULL] = ACTIONS(1976), - [anon_sym_nullptr] = ACTIONS(1976), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(2008), - [anon_sym_R_DQUOTE] = ACTIONS(2010), - [anon_sym_LR_DQUOTE] = ACTIONS(2010), - [anon_sym_uR_DQUOTE] = ACTIONS(2010), - [anon_sym_UR_DQUOTE] = ACTIONS(2010), - [anon_sym_u8R_DQUOTE] = ACTIONS(2010), - [anon_sym_co_await] = ACTIONS(2012), - [anon_sym_new] = ACTIONS(2014), - [anon_sym_requires] = ACTIONS(1988), - [sym_this] = ACTIONS(1974), - }, - [1262] = { - [sym_expression] = STATE(3221), - [sym__string] = STATE(3360), - [sym_conditional_expression] = STATE(3651), - [sym_assignment_expression] = STATE(3651), - [sym_pointer_expression] = STATE(3547), - [sym_unary_expression] = STATE(3651), - [sym_binary_expression] = STATE(3651), - [sym_update_expression] = STATE(3651), - [sym_cast_expression] = STATE(3651), - [sym_sizeof_expression] = STATE(3651), - [sym_alignof_expression] = STATE(3651), - [sym_offsetof_expression] = STATE(3651), - [sym_generic_expression] = STATE(3651), - [sym_subscript_expression] = STATE(3547), - [sym_call_expression] = STATE(3547), - [sym_gnu_asm_expression] = STATE(3651), - [sym_extension_expression] = STATE(3651), - [sym_field_expression] = STATE(3547), - [sym_compound_literal_expression] = STATE(3651), - [sym_parenthesized_expression] = STATE(3547), - [sym_char_literal] = STATE(3360), - [sym_concatenated_string] = STATE(3360), - [sym_string_literal] = STATE(2369), - [sym_null] = STATE(3651), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7649), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3651), - [sym_raw_string_literal] = STATE(2369), - [sym_co_await_expression] = STATE(3651), - [sym_new_expression] = STATE(3651), - [sym_delete_expression] = STATE(3651), - [sym_requires_clause] = STATE(3651), - [sym_requires_expression] = STATE(3651), - [sym_lambda_expression] = STATE(3651), - [sym_lambda_capture_specifier] = STATE(5395), - [sym_fold_expression] = STATE(3651), - [sym_parameter_pack_expansion] = STATE(3651), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5773), - [sym_qualified_identifier] = STATE(3547), - [sym_qualified_type_identifier] = STATE(7649), - [sym_user_defined_literal] = STATE(3547), - [sym_identifier] = ACTIONS(2489), - [anon_sym_LPAREN2] = ACTIONS(4652), - [anon_sym_BANG] = ACTIONS(2493), - [anon_sym_TILDE] = ACTIONS(2493), - [anon_sym_DASH] = ACTIONS(2491), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_STAR] = ACTIONS(3124), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym___extension__] = ACTIONS(2495), - [anon_sym_COLON_COLON] = ACTIONS(2497), + [1321] = { + [sym_expression] = STATE(3381), + [sym__string] = STATE(3549), + [sym_conditional_expression] = STATE(3636), + [sym_assignment_expression] = STATE(3636), + [sym_pointer_expression] = STATE(3696), + [sym_unary_expression] = STATE(3636), + [sym_binary_expression] = STATE(3636), + [sym_update_expression] = STATE(3636), + [sym_cast_expression] = STATE(3636), + [sym_sizeof_expression] = STATE(3636), + [sym_alignof_expression] = STATE(3636), + [sym_offsetof_expression] = STATE(3636), + [sym_generic_expression] = STATE(3636), + [sym_subscript_expression] = STATE(3696), + [sym_call_expression] = STATE(3696), + [sym_gnu_asm_expression] = STATE(3636), + [sym_extension_expression] = STATE(3636), + [sym_field_expression] = STATE(3696), + [sym_compound_literal_expression] = STATE(3636), + [sym_parenthesized_expression] = STATE(3696), + [sym_char_literal] = STATE(3549), + [sym_concatenated_string] = STATE(3549), + [sym_string_literal] = STATE(2433), + [sym_null] = STATE(3636), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7883), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3636), + [sym_raw_string_literal] = STATE(2433), + [sym_co_await_expression] = STATE(3636), + [sym_new_expression] = STATE(3636), + [sym_delete_expression] = STATE(3636), + [sym_requires_clause] = STATE(3636), + [sym_requires_expression] = STATE(3636), + [sym_lambda_expression] = STATE(3636), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3636), + [sym_parameter_pack_expansion] = STATE(3636), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5769), + [sym_qualified_identifier] = STATE(3696), + [sym_qualified_type_identifier] = STATE(7883), + [sym_user_defined_literal] = STATE(3696), + [sym_identifier] = ACTIONS(2483), + [anon_sym_LPAREN2] = ACTIONS(4668), + [anon_sym_BANG] = ACTIONS(2487), + [anon_sym_TILDE] = ACTIONS(2487), + [anon_sym_DASH] = ACTIONS(2485), + [anon_sym_PLUS] = ACTIONS(2485), + [anon_sym_STAR] = ACTIONS(3136), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym___extension__] = ACTIONS(2489), + [anon_sym_COLON_COLON] = ACTIONS(2491), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2501), - [anon_sym_not] = ACTIONS(2491), - [anon_sym_compl] = ACTIONS(2491), - [anon_sym_DASH_DASH] = ACTIONS(4358), - [anon_sym_PLUS_PLUS] = ACTIONS(4358), - [anon_sym_sizeof] = ACTIONS(2503), - [anon_sym___alignof__] = ACTIONS(2505), - [anon_sym___alignof] = ACTIONS(2505), - [anon_sym__alignof] = ACTIONS(2505), - [anon_sym_alignof] = ACTIONS(2505), - [anon_sym__Alignof] = ACTIONS(2505), - [anon_sym_offsetof] = ACTIONS(2507), - [anon_sym__Generic] = ACTIONS(2509), - [anon_sym_asm] = ACTIONS(2511), - [anon_sym___asm__] = ACTIONS(2511), - [anon_sym___asm] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2515), - [anon_sym_u_SQUOTE] = ACTIONS(2515), - [anon_sym_U_SQUOTE] = ACTIONS(2515), - [anon_sym_u8_SQUOTE] = ACTIONS(2515), - [anon_sym_SQUOTE] = ACTIONS(2515), - [anon_sym_L_DQUOTE] = ACTIONS(2517), - [anon_sym_u_DQUOTE] = ACTIONS(2517), - [anon_sym_U_DQUOTE] = ACTIONS(2517), - [anon_sym_u8_DQUOTE] = ACTIONS(2517), - [anon_sym_DQUOTE] = ACTIONS(2517), - [sym_true] = ACTIONS(2519), - [sym_false] = ACTIONS(2519), - [anon_sym_NULL] = ACTIONS(2521), - [anon_sym_nullptr] = ACTIONS(2521), + [sym_primitive_type] = ACTIONS(2495), + [anon_sym_not] = ACTIONS(2485), + [anon_sym_compl] = ACTIONS(2485), + [anon_sym_DASH_DASH] = ACTIONS(4513), + [anon_sym_PLUS_PLUS] = ACTIONS(4513), + [anon_sym_sizeof] = ACTIONS(2497), + [anon_sym___alignof__] = ACTIONS(2499), + [anon_sym___alignof] = ACTIONS(2499), + [anon_sym__alignof] = ACTIONS(2499), + [anon_sym_alignof] = ACTIONS(2499), + [anon_sym__Alignof] = ACTIONS(2499), + [anon_sym_offsetof] = ACTIONS(2501), + [anon_sym__Generic] = ACTIONS(2503), + [anon_sym_asm] = ACTIONS(2505), + [anon_sym___asm__] = ACTIONS(2505), + [anon_sym___asm] = ACTIONS(2505), + [sym_number_literal] = ACTIONS(2507), + [anon_sym_L_SQUOTE] = ACTIONS(2509), + [anon_sym_u_SQUOTE] = ACTIONS(2509), + [anon_sym_U_SQUOTE] = ACTIONS(2509), + [anon_sym_u8_SQUOTE] = ACTIONS(2509), + [anon_sym_SQUOTE] = ACTIONS(2509), + [anon_sym_L_DQUOTE] = ACTIONS(2511), + [anon_sym_u_DQUOTE] = ACTIONS(2511), + [anon_sym_U_DQUOTE] = ACTIONS(2511), + [anon_sym_u8_DQUOTE] = ACTIONS(2511), + [anon_sym_DQUOTE] = ACTIONS(2511), + [sym_true] = ACTIONS(2513), + [sym_false] = ACTIONS(2513), + [anon_sym_NULL] = ACTIONS(2515), + [anon_sym_nullptr] = ACTIONS(2515), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(2523), - [anon_sym_R_DQUOTE] = ACTIONS(2525), - [anon_sym_LR_DQUOTE] = ACTIONS(2525), - [anon_sym_uR_DQUOTE] = ACTIONS(2525), - [anon_sym_UR_DQUOTE] = ACTIONS(2525), - [anon_sym_u8R_DQUOTE] = ACTIONS(2525), - [anon_sym_co_await] = ACTIONS(2527), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_requires] = ACTIONS(2531), - [sym_this] = ACTIONS(2519), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(2517), + [anon_sym_R_DQUOTE] = ACTIONS(2519), + [anon_sym_LR_DQUOTE] = ACTIONS(2519), + [anon_sym_uR_DQUOTE] = ACTIONS(2519), + [anon_sym_UR_DQUOTE] = ACTIONS(2519), + [anon_sym_u8R_DQUOTE] = ACTIONS(2519), + [anon_sym_co_await] = ACTIONS(2521), + [anon_sym_new] = ACTIONS(2523), + [anon_sym_requires] = ACTIONS(2525), + [sym_this] = ACTIONS(2513), }, - [1263] = { - [sym_expression] = STATE(4310), - [sym__string] = STATE(4380), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3253), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3253), - [sym_call_expression] = STATE(3253), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3253), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3253), - [sym_char_literal] = STATE(4380), - [sym_concatenated_string] = STATE(4380), - [sym_string_literal] = STATE(3416), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3416), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3253), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3253), - [sym_identifier] = ACTIONS(3823), + [1322] = { + [sym_expression] = STATE(4344), + [sym__string] = STATE(4455), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3366), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3366), + [sym_call_expression] = STATE(3366), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3366), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3366), + [sym_char_literal] = STATE(4455), + [sym_concatenated_string] = STATE(4455), + [sym_string_literal] = STATE(3406), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3406), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3366), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3366), + [sym_identifier] = ACTIONS(3833), [anon_sym_LPAREN2] = ACTIONS(4557), - [anon_sym_BANG] = ACTIONS(3827), - [anon_sym_TILDE] = ACTIONS(3827), - [anon_sym_DASH] = ACTIONS(3825), - [anon_sym_PLUS] = ACTIONS(3825), - [anon_sym_STAR] = ACTIONS(4382), - [anon_sym_AMP] = ACTIONS(4382), - [anon_sym___extension__] = ACTIONS(3829), - [anon_sym_COLON_COLON] = ACTIONS(3831), + [anon_sym_BANG] = ACTIONS(3837), + [anon_sym_TILDE] = ACTIONS(3837), + [anon_sym_DASH] = ACTIONS(3835), + [anon_sym_PLUS] = ACTIONS(3835), + [anon_sym_STAR] = ACTIONS(4336), + [anon_sym_AMP] = ACTIONS(4336), + [anon_sym___extension__] = ACTIONS(3839), + [anon_sym_COLON_COLON] = ACTIONS(3841), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3825), - [anon_sym_compl] = ACTIONS(3825), - [anon_sym_DASH_DASH] = ACTIONS(4384), - [anon_sym_PLUS_PLUS] = ACTIONS(4384), - [anon_sym_sizeof] = ACTIONS(3833), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3835), + [anon_sym_compl] = ACTIONS(3835), + [anon_sym_DASH_DASH] = ACTIONS(4338), + [anon_sym_PLUS_PLUS] = ACTIONS(4338), + [anon_sym_sizeof] = ACTIONS(3843), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -205859,96 +212760,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(113), [anon_sym___asm__] = ACTIONS(113), [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3835), - [anon_sym_L_SQUOTE] = ACTIONS(3837), - [anon_sym_u_SQUOTE] = ACTIONS(3837), - [anon_sym_U_SQUOTE] = ACTIONS(3837), - [anon_sym_u8_SQUOTE] = ACTIONS(3837), - [anon_sym_SQUOTE] = ACTIONS(3837), - [anon_sym_L_DQUOTE] = ACTIONS(3839), - [anon_sym_u_DQUOTE] = ACTIONS(3839), - [anon_sym_U_DQUOTE] = ACTIONS(3839), - [anon_sym_u8_DQUOTE] = ACTIONS(3839), - [anon_sym_DQUOTE] = ACTIONS(3839), + [sym_number_literal] = ACTIONS(3845), + [anon_sym_L_SQUOTE] = ACTIONS(3847), + [anon_sym_u_SQUOTE] = ACTIONS(3847), + [anon_sym_U_SQUOTE] = ACTIONS(3847), + [anon_sym_u8_SQUOTE] = ACTIONS(3847), + [anon_sym_SQUOTE] = ACTIONS(3847), + [anon_sym_L_DQUOTE] = ACTIONS(3849), + [anon_sym_u_DQUOTE] = ACTIONS(3849), + [anon_sym_U_DQUOTE] = ACTIONS(3849), + [anon_sym_u8_DQUOTE] = ACTIONS(3849), + [anon_sym_DQUOTE] = ACTIONS(3849), [sym_true] = ACTIONS(229), [sym_false] = ACTIONS(229), [anon_sym_NULL] = ACTIONS(123), [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3841), - [anon_sym_R_DQUOTE] = ACTIONS(3843), - [anon_sym_LR_DQUOTE] = ACTIONS(3843), - [anon_sym_uR_DQUOTE] = ACTIONS(3843), - [anon_sym_UR_DQUOTE] = ACTIONS(3843), - [anon_sym_u8R_DQUOTE] = ACTIONS(3843), - [anon_sym_co_await] = ACTIONS(3845), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3851), + [anon_sym_R_DQUOTE] = ACTIONS(3853), + [anon_sym_LR_DQUOTE] = ACTIONS(3853), + [anon_sym_uR_DQUOTE] = ACTIONS(3853), + [anon_sym_UR_DQUOTE] = ACTIONS(3853), + [anon_sym_u8R_DQUOTE] = ACTIONS(3853), + [anon_sym_co_await] = ACTIONS(3855), [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1264] = { - [sym_expression] = STATE(4320), - [sym__string] = STATE(4380), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3253), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3253), - [sym_call_expression] = STATE(3253), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3253), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3253), - [sym_char_literal] = STATE(4380), - [sym_concatenated_string] = STATE(4380), - [sym_string_literal] = STATE(3416), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3416), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3253), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3253), - [sym_identifier] = ACTIONS(3823), + [1323] = { + [sym_expression] = STATE(4324), + [sym__string] = STATE(4455), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3366), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3366), + [sym_call_expression] = STATE(3366), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3366), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3366), + [sym_char_literal] = STATE(4455), + [sym_concatenated_string] = STATE(4455), + [sym_string_literal] = STATE(3406), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3406), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3366), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3366), + [sym_identifier] = ACTIONS(3833), [anon_sym_LPAREN2] = ACTIONS(4557), - [anon_sym_BANG] = ACTIONS(3827), - [anon_sym_TILDE] = ACTIONS(3827), - [anon_sym_DASH] = ACTIONS(3825), - [anon_sym_PLUS] = ACTIONS(3825), - [anon_sym_STAR] = ACTIONS(4382), - [anon_sym_AMP] = ACTIONS(4382), - [anon_sym___extension__] = ACTIONS(3829), - [anon_sym_COLON_COLON] = ACTIONS(3831), - [anon_sym_LBRACK] = ACTIONS(4915), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3825), - [anon_sym_compl] = ACTIONS(3825), - [anon_sym_DASH_DASH] = ACTIONS(4384), - [anon_sym_PLUS_PLUS] = ACTIONS(4384), - [anon_sym_sizeof] = ACTIONS(3833), + [anon_sym_BANG] = ACTIONS(3837), + [anon_sym_TILDE] = ACTIONS(3837), + [anon_sym_DASH] = ACTIONS(3835), + [anon_sym_PLUS] = ACTIONS(3835), + [anon_sym_STAR] = ACTIONS(4336), + [anon_sym_AMP] = ACTIONS(4336), + [anon_sym___extension__] = ACTIONS(3839), + [anon_sym_COLON_COLON] = ACTIONS(3841), + [anon_sym_LBRACK] = ACTIONS(4944), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3835), + [anon_sym_compl] = ACTIONS(3835), + [anon_sym_DASH_DASH] = ACTIONS(4338), + [anon_sym_PLUS_PLUS] = ACTIONS(4338), + [anon_sym_sizeof] = ACTIONS(3843), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -205959,96 +212860,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(113), [anon_sym___asm__] = ACTIONS(113), [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3835), - [anon_sym_L_SQUOTE] = ACTIONS(3837), - [anon_sym_u_SQUOTE] = ACTIONS(3837), - [anon_sym_U_SQUOTE] = ACTIONS(3837), - [anon_sym_u8_SQUOTE] = ACTIONS(3837), - [anon_sym_SQUOTE] = ACTIONS(3837), - [anon_sym_L_DQUOTE] = ACTIONS(3839), - [anon_sym_u_DQUOTE] = ACTIONS(3839), - [anon_sym_U_DQUOTE] = ACTIONS(3839), - [anon_sym_u8_DQUOTE] = ACTIONS(3839), - [anon_sym_DQUOTE] = ACTIONS(3839), + [sym_number_literal] = ACTIONS(3845), + [anon_sym_L_SQUOTE] = ACTIONS(3847), + [anon_sym_u_SQUOTE] = ACTIONS(3847), + [anon_sym_U_SQUOTE] = ACTIONS(3847), + [anon_sym_u8_SQUOTE] = ACTIONS(3847), + [anon_sym_SQUOTE] = ACTIONS(3847), + [anon_sym_L_DQUOTE] = ACTIONS(3849), + [anon_sym_u_DQUOTE] = ACTIONS(3849), + [anon_sym_U_DQUOTE] = ACTIONS(3849), + [anon_sym_u8_DQUOTE] = ACTIONS(3849), + [anon_sym_DQUOTE] = ACTIONS(3849), [sym_true] = ACTIONS(229), [sym_false] = ACTIONS(229), [anon_sym_NULL] = ACTIONS(123), [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3841), - [anon_sym_R_DQUOTE] = ACTIONS(3843), - [anon_sym_LR_DQUOTE] = ACTIONS(3843), - [anon_sym_uR_DQUOTE] = ACTIONS(3843), - [anon_sym_UR_DQUOTE] = ACTIONS(3843), - [anon_sym_u8R_DQUOTE] = ACTIONS(3843), - [anon_sym_co_await] = ACTIONS(3845), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3851), + [anon_sym_R_DQUOTE] = ACTIONS(3853), + [anon_sym_LR_DQUOTE] = ACTIONS(3853), + [anon_sym_uR_DQUOTE] = ACTIONS(3853), + [anon_sym_UR_DQUOTE] = ACTIONS(3853), + [anon_sym_u8R_DQUOTE] = ACTIONS(3853), + [anon_sym_co_await] = ACTIONS(3855), [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1265] = { - [sym_expression] = STATE(4321), - [sym__string] = STATE(4380), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3253), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3253), - [sym_call_expression] = STATE(3253), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3253), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3253), - [sym_char_literal] = STATE(4380), - [sym_concatenated_string] = STATE(4380), - [sym_string_literal] = STATE(3416), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3416), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3253), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3253), - [sym_identifier] = ACTIONS(3823), - [anon_sym_LPAREN2] = ACTIONS(4557), - [anon_sym_BANG] = ACTIONS(3827), - [anon_sym_TILDE] = ACTIONS(3827), - [anon_sym_DASH] = ACTIONS(3825), - [anon_sym_PLUS] = ACTIONS(3825), - [anon_sym_STAR] = ACTIONS(4382), - [anon_sym_AMP] = ACTIONS(4382), - [anon_sym___extension__] = ACTIONS(3829), - [anon_sym_COLON_COLON] = ACTIONS(3831), + [1324] = { + [sym_expression] = STATE(4644), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), + [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3825), - [anon_sym_compl] = ACTIONS(3825), - [anon_sym_DASH_DASH] = ACTIONS(4384), - [anon_sym_PLUS_PLUS] = ACTIONS(4384), - [anon_sym_sizeof] = ACTIONS(3833), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -206059,96 +212960,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(113), [anon_sym___asm__] = ACTIONS(113), [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3835), - [anon_sym_L_SQUOTE] = ACTIONS(3837), - [anon_sym_u_SQUOTE] = ACTIONS(3837), - [anon_sym_U_SQUOTE] = ACTIONS(3837), - [anon_sym_u8_SQUOTE] = ACTIONS(3837), - [anon_sym_SQUOTE] = ACTIONS(3837), - [anon_sym_L_DQUOTE] = ACTIONS(3839), - [anon_sym_u_DQUOTE] = ACTIONS(3839), - [anon_sym_U_DQUOTE] = ACTIONS(3839), - [anon_sym_u8_DQUOTE] = ACTIONS(3839), - [anon_sym_DQUOTE] = ACTIONS(3839), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(117), + [anon_sym_u_SQUOTE] = ACTIONS(117), + [anon_sym_U_SQUOTE] = ACTIONS(117), + [anon_sym_u8_SQUOTE] = ACTIONS(117), + [anon_sym_SQUOTE] = ACTIONS(117), + [anon_sym_L_DQUOTE] = ACTIONS(119), + [anon_sym_u_DQUOTE] = ACTIONS(119), + [anon_sym_U_DQUOTE] = ACTIONS(119), + [anon_sym_u8_DQUOTE] = ACTIONS(119), + [anon_sym_DQUOTE] = ACTIONS(119), [sym_true] = ACTIONS(229), [sym_false] = ACTIONS(229), [anon_sym_NULL] = ACTIONS(123), [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3841), - [anon_sym_R_DQUOTE] = ACTIONS(3843), - [anon_sym_LR_DQUOTE] = ACTIONS(3843), - [anon_sym_uR_DQUOTE] = ACTIONS(3843), - [anon_sym_UR_DQUOTE] = ACTIONS(3843), - [anon_sym_u8R_DQUOTE] = ACTIONS(3843), - [anon_sym_co_await] = ACTIONS(3845), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(145), + [anon_sym_R_DQUOTE] = ACTIONS(159), + [anon_sym_LR_DQUOTE] = ACTIONS(159), + [anon_sym_uR_DQUOTE] = ACTIONS(159), + [anon_sym_UR_DQUOTE] = ACTIONS(159), + [anon_sym_u8R_DQUOTE] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(161), [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1266] = { - [sym_expression] = STATE(3760), - [sym__string] = STATE(4380), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3253), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3253), - [sym_call_expression] = STATE(3253), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3253), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3253), - [sym_char_literal] = STATE(4380), - [sym_concatenated_string] = STATE(4380), - [sym_string_literal] = STATE(3416), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3416), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3253), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3253), - [sym_identifier] = ACTIONS(3823), + [1325] = { + [sym_expression] = STATE(4338), + [sym__string] = STATE(4455), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3366), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3366), + [sym_call_expression] = STATE(3366), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3366), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3366), + [sym_char_literal] = STATE(4455), + [sym_concatenated_string] = STATE(4455), + [sym_string_literal] = STATE(3406), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3406), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3366), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3366), + [sym_identifier] = ACTIONS(3833), [anon_sym_LPAREN2] = ACTIONS(4557), - [anon_sym_BANG] = ACTIONS(3827), - [anon_sym_TILDE] = ACTIONS(3827), - [anon_sym_DASH] = ACTIONS(3825), - [anon_sym_PLUS] = ACTIONS(3825), - [anon_sym_STAR] = ACTIONS(4382), - [anon_sym_AMP] = ACTIONS(4382), - [anon_sym___extension__] = ACTIONS(3829), - [anon_sym_COLON_COLON] = ACTIONS(3831), + [anon_sym_BANG] = ACTIONS(3837), + [anon_sym_TILDE] = ACTIONS(3837), + [anon_sym_DASH] = ACTIONS(3835), + [anon_sym_PLUS] = ACTIONS(3835), + [anon_sym_STAR] = ACTIONS(4336), + [anon_sym_AMP] = ACTIONS(4336), + [anon_sym___extension__] = ACTIONS(3839), + [anon_sym_COLON_COLON] = ACTIONS(3841), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3825), - [anon_sym_compl] = ACTIONS(3825), - [anon_sym_DASH_DASH] = ACTIONS(4384), - [anon_sym_PLUS_PLUS] = ACTIONS(4384), - [anon_sym_sizeof] = ACTIONS(3833), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3835), + [anon_sym_compl] = ACTIONS(3835), + [anon_sym_DASH_DASH] = ACTIONS(4338), + [anon_sym_PLUS_PLUS] = ACTIONS(4338), + [anon_sym_sizeof] = ACTIONS(3843), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -206159,96 +213060,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(113), [anon_sym___asm__] = ACTIONS(113), [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3835), - [anon_sym_L_SQUOTE] = ACTIONS(3837), - [anon_sym_u_SQUOTE] = ACTIONS(3837), - [anon_sym_U_SQUOTE] = ACTIONS(3837), - [anon_sym_u8_SQUOTE] = ACTIONS(3837), - [anon_sym_SQUOTE] = ACTIONS(3837), - [anon_sym_L_DQUOTE] = ACTIONS(3839), - [anon_sym_u_DQUOTE] = ACTIONS(3839), - [anon_sym_U_DQUOTE] = ACTIONS(3839), - [anon_sym_u8_DQUOTE] = ACTIONS(3839), - [anon_sym_DQUOTE] = ACTIONS(3839), + [sym_number_literal] = ACTIONS(3845), + [anon_sym_L_SQUOTE] = ACTIONS(3847), + [anon_sym_u_SQUOTE] = ACTIONS(3847), + [anon_sym_U_SQUOTE] = ACTIONS(3847), + [anon_sym_u8_SQUOTE] = ACTIONS(3847), + [anon_sym_SQUOTE] = ACTIONS(3847), + [anon_sym_L_DQUOTE] = ACTIONS(3849), + [anon_sym_u_DQUOTE] = ACTIONS(3849), + [anon_sym_U_DQUOTE] = ACTIONS(3849), + [anon_sym_u8_DQUOTE] = ACTIONS(3849), + [anon_sym_DQUOTE] = ACTIONS(3849), [sym_true] = ACTIONS(229), [sym_false] = ACTIONS(229), [anon_sym_NULL] = ACTIONS(123), [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3841), - [anon_sym_R_DQUOTE] = ACTIONS(3843), - [anon_sym_LR_DQUOTE] = ACTIONS(3843), - [anon_sym_uR_DQUOTE] = ACTIONS(3843), - [anon_sym_UR_DQUOTE] = ACTIONS(3843), - [anon_sym_u8R_DQUOTE] = ACTIONS(3843), - [anon_sym_co_await] = ACTIONS(3845), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3851), + [anon_sym_R_DQUOTE] = ACTIONS(3853), + [anon_sym_LR_DQUOTE] = ACTIONS(3853), + [anon_sym_uR_DQUOTE] = ACTIONS(3853), + [anon_sym_UR_DQUOTE] = ACTIONS(3853), + [anon_sym_u8R_DQUOTE] = ACTIONS(3853), + [anon_sym_co_await] = ACTIONS(3855), [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1267] = { - [sym_expression] = STATE(4278), - [sym__string] = STATE(4380), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3253), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3253), - [sym_call_expression] = STATE(3253), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3253), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3253), - [sym_char_literal] = STATE(4380), - [sym_concatenated_string] = STATE(4380), - [sym_string_literal] = STATE(3416), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3416), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3253), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3253), - [sym_identifier] = ACTIONS(3823), + [1326] = { + [sym_expression] = STATE(3756), + [sym__string] = STATE(4455), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3366), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3366), + [sym_call_expression] = STATE(3366), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3366), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3366), + [sym_char_literal] = STATE(4455), + [sym_concatenated_string] = STATE(4455), + [sym_string_literal] = STATE(3406), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3406), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3366), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3366), + [sym_identifier] = ACTIONS(3833), [anon_sym_LPAREN2] = ACTIONS(4557), - [anon_sym_BANG] = ACTIONS(3827), - [anon_sym_TILDE] = ACTIONS(3827), - [anon_sym_DASH] = ACTIONS(3825), - [anon_sym_PLUS] = ACTIONS(3825), - [anon_sym_STAR] = ACTIONS(4382), - [anon_sym_AMP] = ACTIONS(4382), - [anon_sym___extension__] = ACTIONS(3829), - [anon_sym_COLON_COLON] = ACTIONS(3831), + [anon_sym_BANG] = ACTIONS(3837), + [anon_sym_TILDE] = ACTIONS(3837), + [anon_sym_DASH] = ACTIONS(3835), + [anon_sym_PLUS] = ACTIONS(3835), + [anon_sym_STAR] = ACTIONS(4336), + [anon_sym_AMP] = ACTIONS(4336), + [anon_sym___extension__] = ACTIONS(3839), + [anon_sym_COLON_COLON] = ACTIONS(3841), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3825), - [anon_sym_compl] = ACTIONS(3825), - [anon_sym_DASH_DASH] = ACTIONS(4384), - [anon_sym_PLUS_PLUS] = ACTIONS(4384), - [anon_sym_sizeof] = ACTIONS(3833), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3835), + [anon_sym_compl] = ACTIONS(3835), + [anon_sym_DASH_DASH] = ACTIONS(4338), + [anon_sym_PLUS_PLUS] = ACTIONS(4338), + [anon_sym_sizeof] = ACTIONS(3843), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -206259,96 +213160,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(113), [anon_sym___asm__] = ACTIONS(113), [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3835), - [anon_sym_L_SQUOTE] = ACTIONS(3837), - [anon_sym_u_SQUOTE] = ACTIONS(3837), - [anon_sym_U_SQUOTE] = ACTIONS(3837), - [anon_sym_u8_SQUOTE] = ACTIONS(3837), - [anon_sym_SQUOTE] = ACTIONS(3837), - [anon_sym_L_DQUOTE] = ACTIONS(3839), - [anon_sym_u_DQUOTE] = ACTIONS(3839), - [anon_sym_U_DQUOTE] = ACTIONS(3839), - [anon_sym_u8_DQUOTE] = ACTIONS(3839), - [anon_sym_DQUOTE] = ACTIONS(3839), + [sym_number_literal] = ACTIONS(3845), + [anon_sym_L_SQUOTE] = ACTIONS(3847), + [anon_sym_u_SQUOTE] = ACTIONS(3847), + [anon_sym_U_SQUOTE] = ACTIONS(3847), + [anon_sym_u8_SQUOTE] = ACTIONS(3847), + [anon_sym_SQUOTE] = ACTIONS(3847), + [anon_sym_L_DQUOTE] = ACTIONS(3849), + [anon_sym_u_DQUOTE] = ACTIONS(3849), + [anon_sym_U_DQUOTE] = ACTIONS(3849), + [anon_sym_u8_DQUOTE] = ACTIONS(3849), + [anon_sym_DQUOTE] = ACTIONS(3849), [sym_true] = ACTIONS(229), [sym_false] = ACTIONS(229), [anon_sym_NULL] = ACTIONS(123), [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3841), - [anon_sym_R_DQUOTE] = ACTIONS(3843), - [anon_sym_LR_DQUOTE] = ACTIONS(3843), - [anon_sym_uR_DQUOTE] = ACTIONS(3843), - [anon_sym_UR_DQUOTE] = ACTIONS(3843), - [anon_sym_u8R_DQUOTE] = ACTIONS(3843), - [anon_sym_co_await] = ACTIONS(3845), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3851), + [anon_sym_R_DQUOTE] = ACTIONS(3853), + [anon_sym_LR_DQUOTE] = ACTIONS(3853), + [anon_sym_uR_DQUOTE] = ACTIONS(3853), + [anon_sym_UR_DQUOTE] = ACTIONS(3853), + [anon_sym_u8R_DQUOTE] = ACTIONS(3853), + [anon_sym_co_await] = ACTIONS(3855), [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1268] = { - [sym_expression] = STATE(4311), - [sym__string] = STATE(4380), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3253), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3253), - [sym_call_expression] = STATE(3253), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3253), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3253), - [sym_char_literal] = STATE(4380), - [sym_concatenated_string] = STATE(4380), - [sym_string_literal] = STATE(3416), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3416), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3253), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3253), - [sym_identifier] = ACTIONS(3823), + [1327] = { + [sym_expression] = STATE(4340), + [sym__string] = STATE(4455), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3366), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3366), + [sym_call_expression] = STATE(3366), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3366), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3366), + [sym_char_literal] = STATE(4455), + [sym_concatenated_string] = STATE(4455), + [sym_string_literal] = STATE(3406), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3406), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3366), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3366), + [sym_identifier] = ACTIONS(3833), [anon_sym_LPAREN2] = ACTIONS(4557), - [anon_sym_BANG] = ACTIONS(3827), - [anon_sym_TILDE] = ACTIONS(3827), - [anon_sym_DASH] = ACTIONS(3825), - [anon_sym_PLUS] = ACTIONS(3825), - [anon_sym_STAR] = ACTIONS(4382), - [anon_sym_AMP] = ACTIONS(4382), - [anon_sym___extension__] = ACTIONS(3829), - [anon_sym_COLON_COLON] = ACTIONS(3831), + [anon_sym_BANG] = ACTIONS(3837), + [anon_sym_TILDE] = ACTIONS(3837), + [anon_sym_DASH] = ACTIONS(3835), + [anon_sym_PLUS] = ACTIONS(3835), + [anon_sym_STAR] = ACTIONS(4336), + [anon_sym_AMP] = ACTIONS(4336), + [anon_sym___extension__] = ACTIONS(3839), + [anon_sym_COLON_COLON] = ACTIONS(3841), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3825), - [anon_sym_compl] = ACTIONS(3825), - [anon_sym_DASH_DASH] = ACTIONS(4384), - [anon_sym_PLUS_PLUS] = ACTIONS(4384), - [anon_sym_sizeof] = ACTIONS(3833), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3835), + [anon_sym_compl] = ACTIONS(3835), + [anon_sym_DASH_DASH] = ACTIONS(4338), + [anon_sym_PLUS_PLUS] = ACTIONS(4338), + [anon_sym_sizeof] = ACTIONS(3843), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -206359,96 +213260,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(113), [anon_sym___asm__] = ACTIONS(113), [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3835), - [anon_sym_L_SQUOTE] = ACTIONS(3837), - [anon_sym_u_SQUOTE] = ACTIONS(3837), - [anon_sym_U_SQUOTE] = ACTIONS(3837), - [anon_sym_u8_SQUOTE] = ACTIONS(3837), - [anon_sym_SQUOTE] = ACTIONS(3837), - [anon_sym_L_DQUOTE] = ACTIONS(3839), - [anon_sym_u_DQUOTE] = ACTIONS(3839), - [anon_sym_U_DQUOTE] = ACTIONS(3839), - [anon_sym_u8_DQUOTE] = ACTIONS(3839), - [anon_sym_DQUOTE] = ACTIONS(3839), + [sym_number_literal] = ACTIONS(3845), + [anon_sym_L_SQUOTE] = ACTIONS(3847), + [anon_sym_u_SQUOTE] = ACTIONS(3847), + [anon_sym_U_SQUOTE] = ACTIONS(3847), + [anon_sym_u8_SQUOTE] = ACTIONS(3847), + [anon_sym_SQUOTE] = ACTIONS(3847), + [anon_sym_L_DQUOTE] = ACTIONS(3849), + [anon_sym_u_DQUOTE] = ACTIONS(3849), + [anon_sym_U_DQUOTE] = ACTIONS(3849), + [anon_sym_u8_DQUOTE] = ACTIONS(3849), + [anon_sym_DQUOTE] = ACTIONS(3849), [sym_true] = ACTIONS(229), [sym_false] = ACTIONS(229), [anon_sym_NULL] = ACTIONS(123), [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3841), - [anon_sym_R_DQUOTE] = ACTIONS(3843), - [anon_sym_LR_DQUOTE] = ACTIONS(3843), - [anon_sym_uR_DQUOTE] = ACTIONS(3843), - [anon_sym_UR_DQUOTE] = ACTIONS(3843), - [anon_sym_u8R_DQUOTE] = ACTIONS(3843), - [anon_sym_co_await] = ACTIONS(3845), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3851), + [anon_sym_R_DQUOTE] = ACTIONS(3853), + [anon_sym_LR_DQUOTE] = ACTIONS(3853), + [anon_sym_uR_DQUOTE] = ACTIONS(3853), + [anon_sym_UR_DQUOTE] = ACTIONS(3853), + [anon_sym_u8R_DQUOTE] = ACTIONS(3853), + [anon_sym_co_await] = ACTIONS(3855), [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1269] = { - [sym_expression] = STATE(4305), - [sym__string] = STATE(4380), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3253), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3253), - [sym_call_expression] = STATE(3253), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3253), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3253), - [sym_char_literal] = STATE(4380), - [sym_concatenated_string] = STATE(4380), - [sym_string_literal] = STATE(3416), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3416), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3253), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3253), - [sym_identifier] = ACTIONS(3823), + [1328] = { + [sym_expression] = STATE(4341), + [sym__string] = STATE(4455), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3366), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3366), + [sym_call_expression] = STATE(3366), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3366), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3366), + [sym_char_literal] = STATE(4455), + [sym_concatenated_string] = STATE(4455), + [sym_string_literal] = STATE(3406), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3406), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3366), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3366), + [sym_identifier] = ACTIONS(3833), [anon_sym_LPAREN2] = ACTIONS(4557), - [anon_sym_BANG] = ACTIONS(3827), - [anon_sym_TILDE] = ACTIONS(3827), - [anon_sym_DASH] = ACTIONS(3825), - [anon_sym_PLUS] = ACTIONS(3825), - [anon_sym_STAR] = ACTIONS(4382), - [anon_sym_AMP] = ACTIONS(4382), - [anon_sym___extension__] = ACTIONS(3829), - [anon_sym_COLON_COLON] = ACTIONS(3831), + [anon_sym_BANG] = ACTIONS(3837), + [anon_sym_TILDE] = ACTIONS(3837), + [anon_sym_DASH] = ACTIONS(3835), + [anon_sym_PLUS] = ACTIONS(3835), + [anon_sym_STAR] = ACTIONS(4336), + [anon_sym_AMP] = ACTIONS(4336), + [anon_sym___extension__] = ACTIONS(3839), + [anon_sym_COLON_COLON] = ACTIONS(3841), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3825), - [anon_sym_compl] = ACTIONS(3825), - [anon_sym_DASH_DASH] = ACTIONS(4384), - [anon_sym_PLUS_PLUS] = ACTIONS(4384), - [anon_sym_sizeof] = ACTIONS(3833), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3835), + [anon_sym_compl] = ACTIONS(3835), + [anon_sym_DASH_DASH] = ACTIONS(4338), + [anon_sym_PLUS_PLUS] = ACTIONS(4338), + [anon_sym_sizeof] = ACTIONS(3843), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -206459,96 +213360,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(113), [anon_sym___asm__] = ACTIONS(113), [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3835), - [anon_sym_L_SQUOTE] = ACTIONS(3837), - [anon_sym_u_SQUOTE] = ACTIONS(3837), - [anon_sym_U_SQUOTE] = ACTIONS(3837), - [anon_sym_u8_SQUOTE] = ACTIONS(3837), - [anon_sym_SQUOTE] = ACTIONS(3837), - [anon_sym_L_DQUOTE] = ACTIONS(3839), - [anon_sym_u_DQUOTE] = ACTIONS(3839), - [anon_sym_U_DQUOTE] = ACTIONS(3839), - [anon_sym_u8_DQUOTE] = ACTIONS(3839), - [anon_sym_DQUOTE] = ACTIONS(3839), + [sym_number_literal] = ACTIONS(3845), + [anon_sym_L_SQUOTE] = ACTIONS(3847), + [anon_sym_u_SQUOTE] = ACTIONS(3847), + [anon_sym_U_SQUOTE] = ACTIONS(3847), + [anon_sym_u8_SQUOTE] = ACTIONS(3847), + [anon_sym_SQUOTE] = ACTIONS(3847), + [anon_sym_L_DQUOTE] = ACTIONS(3849), + [anon_sym_u_DQUOTE] = ACTIONS(3849), + [anon_sym_U_DQUOTE] = ACTIONS(3849), + [anon_sym_u8_DQUOTE] = ACTIONS(3849), + [anon_sym_DQUOTE] = ACTIONS(3849), [sym_true] = ACTIONS(229), [sym_false] = ACTIONS(229), [anon_sym_NULL] = ACTIONS(123), [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3841), - [anon_sym_R_DQUOTE] = ACTIONS(3843), - [anon_sym_LR_DQUOTE] = ACTIONS(3843), - [anon_sym_uR_DQUOTE] = ACTIONS(3843), - [anon_sym_UR_DQUOTE] = ACTIONS(3843), - [anon_sym_u8R_DQUOTE] = ACTIONS(3843), - [anon_sym_co_await] = ACTIONS(3845), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3851), + [anon_sym_R_DQUOTE] = ACTIONS(3853), + [anon_sym_LR_DQUOTE] = ACTIONS(3853), + [anon_sym_uR_DQUOTE] = ACTIONS(3853), + [anon_sym_UR_DQUOTE] = ACTIONS(3853), + [anon_sym_u8R_DQUOTE] = ACTIONS(3853), + [anon_sym_co_await] = ACTIONS(3855), [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1270] = { - [sym_expression] = STATE(4286), - [sym__string] = STATE(4380), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3253), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3253), - [sym_call_expression] = STATE(3253), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3253), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3253), - [sym_char_literal] = STATE(4380), - [sym_concatenated_string] = STATE(4380), - [sym_string_literal] = STATE(3416), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3416), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3253), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3253), - [sym_identifier] = ACTIONS(3823), + [1329] = { + [sym_expression] = STATE(4343), + [sym__string] = STATE(4455), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3366), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3366), + [sym_call_expression] = STATE(3366), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3366), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3366), + [sym_char_literal] = STATE(4455), + [sym_concatenated_string] = STATE(4455), + [sym_string_literal] = STATE(3406), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3406), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3366), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3366), + [sym_identifier] = ACTIONS(3833), [anon_sym_LPAREN2] = ACTIONS(4557), - [anon_sym_BANG] = ACTIONS(3827), - [anon_sym_TILDE] = ACTIONS(3827), - [anon_sym_DASH] = ACTIONS(3825), - [anon_sym_PLUS] = ACTIONS(3825), - [anon_sym_STAR] = ACTIONS(4382), - [anon_sym_AMP] = ACTIONS(4382), - [anon_sym___extension__] = ACTIONS(3829), - [anon_sym_COLON_COLON] = ACTIONS(3831), + [anon_sym_BANG] = ACTIONS(3837), + [anon_sym_TILDE] = ACTIONS(3837), + [anon_sym_DASH] = ACTIONS(3835), + [anon_sym_PLUS] = ACTIONS(3835), + [anon_sym_STAR] = ACTIONS(4336), + [anon_sym_AMP] = ACTIONS(4336), + [anon_sym___extension__] = ACTIONS(3839), + [anon_sym_COLON_COLON] = ACTIONS(3841), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3825), - [anon_sym_compl] = ACTIONS(3825), - [anon_sym_DASH_DASH] = ACTIONS(4384), - [anon_sym_PLUS_PLUS] = ACTIONS(4384), - [anon_sym_sizeof] = ACTIONS(3833), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3835), + [anon_sym_compl] = ACTIONS(3835), + [anon_sym_DASH_DASH] = ACTIONS(4338), + [anon_sym_PLUS_PLUS] = ACTIONS(4338), + [anon_sym_sizeof] = ACTIONS(3843), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -206559,96 +213460,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(113), [anon_sym___asm__] = ACTIONS(113), [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3835), - [anon_sym_L_SQUOTE] = ACTIONS(3837), - [anon_sym_u_SQUOTE] = ACTIONS(3837), - [anon_sym_U_SQUOTE] = ACTIONS(3837), - [anon_sym_u8_SQUOTE] = ACTIONS(3837), - [anon_sym_SQUOTE] = ACTIONS(3837), - [anon_sym_L_DQUOTE] = ACTIONS(3839), - [anon_sym_u_DQUOTE] = ACTIONS(3839), - [anon_sym_U_DQUOTE] = ACTIONS(3839), - [anon_sym_u8_DQUOTE] = ACTIONS(3839), - [anon_sym_DQUOTE] = ACTIONS(3839), + [sym_number_literal] = ACTIONS(3845), + [anon_sym_L_SQUOTE] = ACTIONS(3847), + [anon_sym_u_SQUOTE] = ACTIONS(3847), + [anon_sym_U_SQUOTE] = ACTIONS(3847), + [anon_sym_u8_SQUOTE] = ACTIONS(3847), + [anon_sym_SQUOTE] = ACTIONS(3847), + [anon_sym_L_DQUOTE] = ACTIONS(3849), + [anon_sym_u_DQUOTE] = ACTIONS(3849), + [anon_sym_U_DQUOTE] = ACTIONS(3849), + [anon_sym_u8_DQUOTE] = ACTIONS(3849), + [anon_sym_DQUOTE] = ACTIONS(3849), [sym_true] = ACTIONS(229), [sym_false] = ACTIONS(229), [anon_sym_NULL] = ACTIONS(123), [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3841), - [anon_sym_R_DQUOTE] = ACTIONS(3843), - [anon_sym_LR_DQUOTE] = ACTIONS(3843), - [anon_sym_uR_DQUOTE] = ACTIONS(3843), - [anon_sym_UR_DQUOTE] = ACTIONS(3843), - [anon_sym_u8R_DQUOTE] = ACTIONS(3843), - [anon_sym_co_await] = ACTIONS(3845), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3851), + [anon_sym_R_DQUOTE] = ACTIONS(3853), + [anon_sym_LR_DQUOTE] = ACTIONS(3853), + [anon_sym_uR_DQUOTE] = ACTIONS(3853), + [anon_sym_UR_DQUOTE] = ACTIONS(3853), + [anon_sym_u8R_DQUOTE] = ACTIONS(3853), + [anon_sym_co_await] = ACTIONS(3855), [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1271] = { - [sym_expression] = STATE(4293), - [sym__string] = STATE(4380), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3253), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3253), - [sym_call_expression] = STATE(3253), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3253), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3253), - [sym_char_literal] = STATE(4380), - [sym_concatenated_string] = STATE(4380), - [sym_string_literal] = STATE(3416), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3416), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3253), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3253), - [sym_identifier] = ACTIONS(3823), + [1330] = { + [sym_expression] = STATE(4346), + [sym__string] = STATE(4455), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3366), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3366), + [sym_call_expression] = STATE(3366), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3366), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3366), + [sym_char_literal] = STATE(4455), + [sym_concatenated_string] = STATE(4455), + [sym_string_literal] = STATE(3406), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3406), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3366), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3366), + [sym_identifier] = ACTIONS(3833), [anon_sym_LPAREN2] = ACTIONS(4557), - [anon_sym_BANG] = ACTIONS(3827), - [anon_sym_TILDE] = ACTIONS(3827), - [anon_sym_DASH] = ACTIONS(3825), - [anon_sym_PLUS] = ACTIONS(3825), - [anon_sym_STAR] = ACTIONS(4382), - [anon_sym_AMP] = ACTIONS(4382), - [anon_sym___extension__] = ACTIONS(3829), - [anon_sym_COLON_COLON] = ACTIONS(3831), + [anon_sym_BANG] = ACTIONS(3837), + [anon_sym_TILDE] = ACTIONS(3837), + [anon_sym_DASH] = ACTIONS(3835), + [anon_sym_PLUS] = ACTIONS(3835), + [anon_sym_STAR] = ACTIONS(4336), + [anon_sym_AMP] = ACTIONS(4336), + [anon_sym___extension__] = ACTIONS(3839), + [anon_sym_COLON_COLON] = ACTIONS(3841), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3825), - [anon_sym_compl] = ACTIONS(3825), - [anon_sym_DASH_DASH] = ACTIONS(4384), - [anon_sym_PLUS_PLUS] = ACTIONS(4384), - [anon_sym_sizeof] = ACTIONS(3833), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3835), + [anon_sym_compl] = ACTIONS(3835), + [anon_sym_DASH_DASH] = ACTIONS(4338), + [anon_sym_PLUS_PLUS] = ACTIONS(4338), + [anon_sym_sizeof] = ACTIONS(3843), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -206659,96 +213560,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(113), [anon_sym___asm__] = ACTIONS(113), [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3835), - [anon_sym_L_SQUOTE] = ACTIONS(3837), - [anon_sym_u_SQUOTE] = ACTIONS(3837), - [anon_sym_U_SQUOTE] = ACTIONS(3837), - [anon_sym_u8_SQUOTE] = ACTIONS(3837), - [anon_sym_SQUOTE] = ACTIONS(3837), - [anon_sym_L_DQUOTE] = ACTIONS(3839), - [anon_sym_u_DQUOTE] = ACTIONS(3839), - [anon_sym_U_DQUOTE] = ACTIONS(3839), - [anon_sym_u8_DQUOTE] = ACTIONS(3839), - [anon_sym_DQUOTE] = ACTIONS(3839), + [sym_number_literal] = ACTIONS(3845), + [anon_sym_L_SQUOTE] = ACTIONS(3847), + [anon_sym_u_SQUOTE] = ACTIONS(3847), + [anon_sym_U_SQUOTE] = ACTIONS(3847), + [anon_sym_u8_SQUOTE] = ACTIONS(3847), + [anon_sym_SQUOTE] = ACTIONS(3847), + [anon_sym_L_DQUOTE] = ACTIONS(3849), + [anon_sym_u_DQUOTE] = ACTIONS(3849), + [anon_sym_U_DQUOTE] = ACTIONS(3849), + [anon_sym_u8_DQUOTE] = ACTIONS(3849), + [anon_sym_DQUOTE] = ACTIONS(3849), [sym_true] = ACTIONS(229), [sym_false] = ACTIONS(229), [anon_sym_NULL] = ACTIONS(123), [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3841), - [anon_sym_R_DQUOTE] = ACTIONS(3843), - [anon_sym_LR_DQUOTE] = ACTIONS(3843), - [anon_sym_uR_DQUOTE] = ACTIONS(3843), - [anon_sym_UR_DQUOTE] = ACTIONS(3843), - [anon_sym_u8R_DQUOTE] = ACTIONS(3843), - [anon_sym_co_await] = ACTIONS(3845), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3851), + [anon_sym_R_DQUOTE] = ACTIONS(3853), + [anon_sym_LR_DQUOTE] = ACTIONS(3853), + [anon_sym_uR_DQUOTE] = ACTIONS(3853), + [anon_sym_UR_DQUOTE] = ACTIONS(3853), + [anon_sym_u8R_DQUOTE] = ACTIONS(3853), + [anon_sym_co_await] = ACTIONS(3855), [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1272] = { - [sym_expression] = STATE(4265), - [sym__string] = STATE(4380), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3253), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3253), - [sym_call_expression] = STATE(3253), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3253), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3253), - [sym_char_literal] = STATE(4380), - [sym_concatenated_string] = STATE(4380), - [sym_string_literal] = STATE(3416), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3416), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3253), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3253), - [sym_identifier] = ACTIONS(3823), + [1331] = { + [sym_expression] = STATE(4347), + [sym__string] = STATE(4455), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3366), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3366), + [sym_call_expression] = STATE(3366), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3366), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3366), + [sym_char_literal] = STATE(4455), + [sym_concatenated_string] = STATE(4455), + [sym_string_literal] = STATE(3406), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3406), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3366), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3366), + [sym_identifier] = ACTIONS(3833), [anon_sym_LPAREN2] = ACTIONS(4557), - [anon_sym_BANG] = ACTIONS(3827), - [anon_sym_TILDE] = ACTIONS(3827), - [anon_sym_DASH] = ACTIONS(3825), - [anon_sym_PLUS] = ACTIONS(3825), - [anon_sym_STAR] = ACTIONS(4382), - [anon_sym_AMP] = ACTIONS(4382), - [anon_sym___extension__] = ACTIONS(3829), - [anon_sym_COLON_COLON] = ACTIONS(3831), + [anon_sym_BANG] = ACTIONS(3837), + [anon_sym_TILDE] = ACTIONS(3837), + [anon_sym_DASH] = ACTIONS(3835), + [anon_sym_PLUS] = ACTIONS(3835), + [anon_sym_STAR] = ACTIONS(4336), + [anon_sym_AMP] = ACTIONS(4336), + [anon_sym___extension__] = ACTIONS(3839), + [anon_sym_COLON_COLON] = ACTIONS(3841), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3825), - [anon_sym_compl] = ACTIONS(3825), - [anon_sym_DASH_DASH] = ACTIONS(4384), - [anon_sym_PLUS_PLUS] = ACTIONS(4384), - [anon_sym_sizeof] = ACTIONS(3833), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3835), + [anon_sym_compl] = ACTIONS(3835), + [anon_sym_DASH_DASH] = ACTIONS(4338), + [anon_sym_PLUS_PLUS] = ACTIONS(4338), + [anon_sym_sizeof] = ACTIONS(3843), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -206759,96 +213660,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(113), [anon_sym___asm__] = ACTIONS(113), [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3835), - [anon_sym_L_SQUOTE] = ACTIONS(3837), - [anon_sym_u_SQUOTE] = ACTIONS(3837), - [anon_sym_U_SQUOTE] = ACTIONS(3837), - [anon_sym_u8_SQUOTE] = ACTIONS(3837), - [anon_sym_SQUOTE] = ACTIONS(3837), - [anon_sym_L_DQUOTE] = ACTIONS(3839), - [anon_sym_u_DQUOTE] = ACTIONS(3839), - [anon_sym_U_DQUOTE] = ACTIONS(3839), - [anon_sym_u8_DQUOTE] = ACTIONS(3839), - [anon_sym_DQUOTE] = ACTIONS(3839), + [sym_number_literal] = ACTIONS(3845), + [anon_sym_L_SQUOTE] = ACTIONS(3847), + [anon_sym_u_SQUOTE] = ACTIONS(3847), + [anon_sym_U_SQUOTE] = ACTIONS(3847), + [anon_sym_u8_SQUOTE] = ACTIONS(3847), + [anon_sym_SQUOTE] = ACTIONS(3847), + [anon_sym_L_DQUOTE] = ACTIONS(3849), + [anon_sym_u_DQUOTE] = ACTIONS(3849), + [anon_sym_U_DQUOTE] = ACTIONS(3849), + [anon_sym_u8_DQUOTE] = ACTIONS(3849), + [anon_sym_DQUOTE] = ACTIONS(3849), [sym_true] = ACTIONS(229), [sym_false] = ACTIONS(229), [anon_sym_NULL] = ACTIONS(123), [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3841), - [anon_sym_R_DQUOTE] = ACTIONS(3843), - [anon_sym_LR_DQUOTE] = ACTIONS(3843), - [anon_sym_uR_DQUOTE] = ACTIONS(3843), - [anon_sym_UR_DQUOTE] = ACTIONS(3843), - [anon_sym_u8R_DQUOTE] = ACTIONS(3843), - [anon_sym_co_await] = ACTIONS(3845), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3851), + [anon_sym_R_DQUOTE] = ACTIONS(3853), + [anon_sym_LR_DQUOTE] = ACTIONS(3853), + [anon_sym_uR_DQUOTE] = ACTIONS(3853), + [anon_sym_UR_DQUOTE] = ACTIONS(3853), + [anon_sym_u8R_DQUOTE] = ACTIONS(3853), + [anon_sym_co_await] = ACTIONS(3855), [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1273] = { - [sym_expression] = STATE(4314), - [sym__string] = STATE(4380), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3253), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3253), - [sym_call_expression] = STATE(3253), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3253), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3253), - [sym_char_literal] = STATE(4380), - [sym_concatenated_string] = STATE(4380), - [sym_string_literal] = STATE(3416), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3416), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3253), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3253), - [sym_identifier] = ACTIONS(3823), + [1332] = { + [sym_expression] = STATE(4348), + [sym__string] = STATE(4455), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3366), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3366), + [sym_call_expression] = STATE(3366), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3366), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3366), + [sym_char_literal] = STATE(4455), + [sym_concatenated_string] = STATE(4455), + [sym_string_literal] = STATE(3406), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3406), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3366), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3366), + [sym_identifier] = ACTIONS(3833), [anon_sym_LPAREN2] = ACTIONS(4557), - [anon_sym_BANG] = ACTIONS(3827), - [anon_sym_TILDE] = ACTIONS(3827), - [anon_sym_DASH] = ACTIONS(3825), - [anon_sym_PLUS] = ACTIONS(3825), - [anon_sym_STAR] = ACTIONS(4382), - [anon_sym_AMP] = ACTIONS(4382), - [anon_sym___extension__] = ACTIONS(3829), - [anon_sym_COLON_COLON] = ACTIONS(3831), + [anon_sym_BANG] = ACTIONS(3837), + [anon_sym_TILDE] = ACTIONS(3837), + [anon_sym_DASH] = ACTIONS(3835), + [anon_sym_PLUS] = ACTIONS(3835), + [anon_sym_STAR] = ACTIONS(4336), + [anon_sym_AMP] = ACTIONS(4336), + [anon_sym___extension__] = ACTIONS(3839), + [anon_sym_COLON_COLON] = ACTIONS(3841), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3825), - [anon_sym_compl] = ACTIONS(3825), - [anon_sym_DASH_DASH] = ACTIONS(4384), - [anon_sym_PLUS_PLUS] = ACTIONS(4384), - [anon_sym_sizeof] = ACTIONS(3833), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3835), + [anon_sym_compl] = ACTIONS(3835), + [anon_sym_DASH_DASH] = ACTIONS(4338), + [anon_sym_PLUS_PLUS] = ACTIONS(4338), + [anon_sym_sizeof] = ACTIONS(3843), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -206859,96 +213760,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(113), [anon_sym___asm__] = ACTIONS(113), [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3835), - [anon_sym_L_SQUOTE] = ACTIONS(3837), - [anon_sym_u_SQUOTE] = ACTIONS(3837), - [anon_sym_U_SQUOTE] = ACTIONS(3837), - [anon_sym_u8_SQUOTE] = ACTIONS(3837), - [anon_sym_SQUOTE] = ACTIONS(3837), - [anon_sym_L_DQUOTE] = ACTIONS(3839), - [anon_sym_u_DQUOTE] = ACTIONS(3839), - [anon_sym_U_DQUOTE] = ACTIONS(3839), - [anon_sym_u8_DQUOTE] = ACTIONS(3839), - [anon_sym_DQUOTE] = ACTIONS(3839), + [sym_number_literal] = ACTIONS(3845), + [anon_sym_L_SQUOTE] = ACTIONS(3847), + [anon_sym_u_SQUOTE] = ACTIONS(3847), + [anon_sym_U_SQUOTE] = ACTIONS(3847), + [anon_sym_u8_SQUOTE] = ACTIONS(3847), + [anon_sym_SQUOTE] = ACTIONS(3847), + [anon_sym_L_DQUOTE] = ACTIONS(3849), + [anon_sym_u_DQUOTE] = ACTIONS(3849), + [anon_sym_U_DQUOTE] = ACTIONS(3849), + [anon_sym_u8_DQUOTE] = ACTIONS(3849), + [anon_sym_DQUOTE] = ACTIONS(3849), [sym_true] = ACTIONS(229), [sym_false] = ACTIONS(229), [anon_sym_NULL] = ACTIONS(123), [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3841), - [anon_sym_R_DQUOTE] = ACTIONS(3843), - [anon_sym_LR_DQUOTE] = ACTIONS(3843), - [anon_sym_uR_DQUOTE] = ACTIONS(3843), - [anon_sym_UR_DQUOTE] = ACTIONS(3843), - [anon_sym_u8R_DQUOTE] = ACTIONS(3843), - [anon_sym_co_await] = ACTIONS(3845), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3851), + [anon_sym_R_DQUOTE] = ACTIONS(3853), + [anon_sym_LR_DQUOTE] = ACTIONS(3853), + [anon_sym_uR_DQUOTE] = ACTIONS(3853), + [anon_sym_UR_DQUOTE] = ACTIONS(3853), + [anon_sym_u8R_DQUOTE] = ACTIONS(3853), + [anon_sym_co_await] = ACTIONS(3855), [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1274] = { - [sym_expression] = STATE(4291), - [sym__string] = STATE(4380), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3253), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3253), - [sym_call_expression] = STATE(3253), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3253), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3253), - [sym_char_literal] = STATE(4380), - [sym_concatenated_string] = STATE(4380), - [sym_string_literal] = STATE(3416), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3416), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3253), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3253), - [sym_identifier] = ACTIONS(3823), + [1333] = { + [sym_expression] = STATE(4349), + [sym__string] = STATE(4455), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3366), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3366), + [sym_call_expression] = STATE(3366), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3366), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3366), + [sym_char_literal] = STATE(4455), + [sym_concatenated_string] = STATE(4455), + [sym_string_literal] = STATE(3406), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3406), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3366), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3366), + [sym_identifier] = ACTIONS(3833), [anon_sym_LPAREN2] = ACTIONS(4557), - [anon_sym_BANG] = ACTIONS(3827), - [anon_sym_TILDE] = ACTIONS(3827), - [anon_sym_DASH] = ACTIONS(3825), - [anon_sym_PLUS] = ACTIONS(3825), - [anon_sym_STAR] = ACTIONS(4382), - [anon_sym_AMP] = ACTIONS(4382), - [anon_sym___extension__] = ACTIONS(3829), - [anon_sym_COLON_COLON] = ACTIONS(3831), + [anon_sym_BANG] = ACTIONS(3837), + [anon_sym_TILDE] = ACTIONS(3837), + [anon_sym_DASH] = ACTIONS(3835), + [anon_sym_PLUS] = ACTIONS(3835), + [anon_sym_STAR] = ACTIONS(4336), + [anon_sym_AMP] = ACTIONS(4336), + [anon_sym___extension__] = ACTIONS(3839), + [anon_sym_COLON_COLON] = ACTIONS(3841), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3825), - [anon_sym_compl] = ACTIONS(3825), - [anon_sym_DASH_DASH] = ACTIONS(4384), - [anon_sym_PLUS_PLUS] = ACTIONS(4384), - [anon_sym_sizeof] = ACTIONS(3833), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3835), + [anon_sym_compl] = ACTIONS(3835), + [anon_sym_DASH_DASH] = ACTIONS(4338), + [anon_sym_PLUS_PLUS] = ACTIONS(4338), + [anon_sym_sizeof] = ACTIONS(3843), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -206959,296 +213860,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(113), [anon_sym___asm__] = ACTIONS(113), [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3835), - [anon_sym_L_SQUOTE] = ACTIONS(3837), - [anon_sym_u_SQUOTE] = ACTIONS(3837), - [anon_sym_U_SQUOTE] = ACTIONS(3837), - [anon_sym_u8_SQUOTE] = ACTIONS(3837), - [anon_sym_SQUOTE] = ACTIONS(3837), - [anon_sym_L_DQUOTE] = ACTIONS(3839), - [anon_sym_u_DQUOTE] = ACTIONS(3839), - [anon_sym_U_DQUOTE] = ACTIONS(3839), - [anon_sym_u8_DQUOTE] = ACTIONS(3839), - [anon_sym_DQUOTE] = ACTIONS(3839), + [sym_number_literal] = ACTIONS(3845), + [anon_sym_L_SQUOTE] = ACTIONS(3847), + [anon_sym_u_SQUOTE] = ACTIONS(3847), + [anon_sym_U_SQUOTE] = ACTIONS(3847), + [anon_sym_u8_SQUOTE] = ACTIONS(3847), + [anon_sym_SQUOTE] = ACTIONS(3847), + [anon_sym_L_DQUOTE] = ACTIONS(3849), + [anon_sym_u_DQUOTE] = ACTIONS(3849), + [anon_sym_U_DQUOTE] = ACTIONS(3849), + [anon_sym_u8_DQUOTE] = ACTIONS(3849), + [anon_sym_DQUOTE] = ACTIONS(3849), [sym_true] = ACTIONS(229), [sym_false] = ACTIONS(229), [anon_sym_NULL] = ACTIONS(123), [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3841), - [anon_sym_R_DQUOTE] = ACTIONS(3843), - [anon_sym_LR_DQUOTE] = ACTIONS(3843), - [anon_sym_uR_DQUOTE] = ACTIONS(3843), - [anon_sym_UR_DQUOTE] = ACTIONS(3843), - [anon_sym_u8R_DQUOTE] = ACTIONS(3843), - [anon_sym_co_await] = ACTIONS(3845), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3851), + [anon_sym_R_DQUOTE] = ACTIONS(3853), + [anon_sym_LR_DQUOTE] = ACTIONS(3853), + [anon_sym_uR_DQUOTE] = ACTIONS(3853), + [anon_sym_UR_DQUOTE] = ACTIONS(3853), + [anon_sym_u8R_DQUOTE] = ACTIONS(3853), + [anon_sym_co_await] = ACTIONS(3855), [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1275] = { - [sym_expression] = STATE(4277), - [sym__string] = STATE(4380), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3253), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3253), - [sym_call_expression] = STATE(3253), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3253), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3253), - [sym_char_literal] = STATE(4380), - [sym_concatenated_string] = STATE(4380), - [sym_string_literal] = STATE(3416), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3416), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3253), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3253), - [sym_identifier] = ACTIONS(3823), + [1334] = { + [sym_expression] = STATE(4350), + [sym__string] = STATE(4455), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3366), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3366), + [sym_call_expression] = STATE(3366), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3366), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3366), + [sym_char_literal] = STATE(4455), + [sym_concatenated_string] = STATE(4455), + [sym_string_literal] = STATE(3406), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3406), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3366), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3366), + [sym_identifier] = ACTIONS(3833), [anon_sym_LPAREN2] = ACTIONS(4557), - [anon_sym_BANG] = ACTIONS(3827), - [anon_sym_TILDE] = ACTIONS(3827), - [anon_sym_DASH] = ACTIONS(3825), - [anon_sym_PLUS] = ACTIONS(3825), - [anon_sym_STAR] = ACTIONS(4382), - [anon_sym_AMP] = ACTIONS(4382), - [anon_sym___extension__] = ACTIONS(3829), - [anon_sym_COLON_COLON] = ACTIONS(3831), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3825), - [anon_sym_compl] = ACTIONS(3825), - [anon_sym_DASH_DASH] = ACTIONS(4384), - [anon_sym_PLUS_PLUS] = ACTIONS(4384), - [anon_sym_sizeof] = ACTIONS(3833), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3835), - [anon_sym_L_SQUOTE] = ACTIONS(3837), - [anon_sym_u_SQUOTE] = ACTIONS(3837), - [anon_sym_U_SQUOTE] = ACTIONS(3837), - [anon_sym_u8_SQUOTE] = ACTIONS(3837), - [anon_sym_SQUOTE] = ACTIONS(3837), - [anon_sym_L_DQUOTE] = ACTIONS(3839), - [anon_sym_u_DQUOTE] = ACTIONS(3839), - [anon_sym_U_DQUOTE] = ACTIONS(3839), - [anon_sym_u8_DQUOTE] = ACTIONS(3839), - [anon_sym_DQUOTE] = ACTIONS(3839), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3841), - [anon_sym_R_DQUOTE] = ACTIONS(3843), - [anon_sym_LR_DQUOTE] = ACTIONS(3843), - [anon_sym_uR_DQUOTE] = ACTIONS(3843), - [anon_sym_UR_DQUOTE] = ACTIONS(3843), - [anon_sym_u8R_DQUOTE] = ACTIONS(3843), - [anon_sym_co_await] = ACTIONS(3845), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), - }, - [1276] = { - [sym_expression] = STATE(4635), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), - }, - [1277] = { - [sym_expression] = STATE(3750), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), - [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(3837), + [anon_sym_TILDE] = ACTIONS(3837), + [anon_sym_DASH] = ACTIONS(3835), + [anon_sym_PLUS] = ACTIONS(3835), + [anon_sym_STAR] = ACTIONS(4336), + [anon_sym_AMP] = ACTIONS(4336), + [anon_sym___extension__] = ACTIONS(3839), + [anon_sym_COLON_COLON] = ACTIONS(3841), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3835), + [anon_sym_compl] = ACTIONS(3835), + [anon_sym_DASH_DASH] = ACTIONS(4338), + [anon_sym_PLUS_PLUS] = ACTIONS(4338), + [anon_sym_sizeof] = ACTIONS(3843), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -207259,91 +213960,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(113), [anon_sym___asm__] = ACTIONS(113), [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), + [sym_number_literal] = ACTIONS(3845), + [anon_sym_L_SQUOTE] = ACTIONS(3847), + [anon_sym_u_SQUOTE] = ACTIONS(3847), + [anon_sym_U_SQUOTE] = ACTIONS(3847), + [anon_sym_u8_SQUOTE] = ACTIONS(3847), + [anon_sym_SQUOTE] = ACTIONS(3847), + [anon_sym_L_DQUOTE] = ACTIONS(3849), + [anon_sym_u_DQUOTE] = ACTIONS(3849), + [anon_sym_U_DQUOTE] = ACTIONS(3849), + [anon_sym_u8_DQUOTE] = ACTIONS(3849), + [anon_sym_DQUOTE] = ACTIONS(3849), [sym_true] = ACTIONS(229), [sym_false] = ACTIONS(229), [anon_sym_NULL] = ACTIONS(123), [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3851), + [anon_sym_R_DQUOTE] = ACTIONS(3853), + [anon_sym_LR_DQUOTE] = ACTIONS(3853), + [anon_sym_uR_DQUOTE] = ACTIONS(3853), + [anon_sym_UR_DQUOTE] = ACTIONS(3853), + [anon_sym_u8R_DQUOTE] = ACTIONS(3853), + [anon_sym_co_await] = ACTIONS(3855), [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1278] = { - [sym_expression] = STATE(4688), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1335] = { + [sym_expression] = STATE(4487), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -207376,7 +214077,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -207388,167 +214089,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1279] = { - [sym_expression] = STATE(4318), - [sym__string] = STATE(4380), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3253), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3253), - [sym_call_expression] = STATE(3253), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3253), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3253), - [sym_char_literal] = STATE(4380), - [sym_concatenated_string] = STATE(4380), - [sym_string_literal] = STATE(3416), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3416), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3253), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3253), - [sym_identifier] = ACTIONS(3823), + [1336] = { + [sym_expression] = STATE(4351), + [sym__string] = STATE(4455), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3366), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3366), + [sym_call_expression] = STATE(3366), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3366), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3366), + [sym_char_literal] = STATE(4455), + [sym_concatenated_string] = STATE(4455), + [sym_string_literal] = STATE(3406), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3406), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3366), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3366), + [sym_identifier] = ACTIONS(3833), [anon_sym_LPAREN2] = ACTIONS(4557), - [anon_sym_BANG] = ACTIONS(3827), - [anon_sym_TILDE] = ACTIONS(3827), - [anon_sym_DASH] = ACTIONS(3825), - [anon_sym_PLUS] = ACTIONS(3825), - [anon_sym_STAR] = ACTIONS(4382), - [anon_sym_AMP] = ACTIONS(4382), - [anon_sym___extension__] = ACTIONS(3829), - [anon_sym_COLON_COLON] = ACTIONS(3831), + [anon_sym_BANG] = ACTIONS(3837), + [anon_sym_TILDE] = ACTIONS(3837), + [anon_sym_DASH] = ACTIONS(3835), + [anon_sym_PLUS] = ACTIONS(3835), + [anon_sym_STAR] = ACTIONS(4336), + [anon_sym_AMP] = ACTIONS(4336), + [anon_sym___extension__] = ACTIONS(3839), + [anon_sym_COLON_COLON] = ACTIONS(3841), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3825), - [anon_sym_compl] = ACTIONS(3825), - [anon_sym_DASH_DASH] = ACTIONS(4384), - [anon_sym_PLUS_PLUS] = ACTIONS(4384), - [anon_sym_sizeof] = ACTIONS(3833), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3835), - [anon_sym_L_SQUOTE] = ACTIONS(3837), - [anon_sym_u_SQUOTE] = ACTIONS(3837), - [anon_sym_U_SQUOTE] = ACTIONS(3837), - [anon_sym_u8_SQUOTE] = ACTIONS(3837), - [anon_sym_SQUOTE] = ACTIONS(3837), - [anon_sym_L_DQUOTE] = ACTIONS(3839), - [anon_sym_u_DQUOTE] = ACTIONS(3839), - [anon_sym_U_DQUOTE] = ACTIONS(3839), - [anon_sym_u8_DQUOTE] = ACTIONS(3839), - [anon_sym_DQUOTE] = ACTIONS(3839), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3841), - [anon_sym_R_DQUOTE] = ACTIONS(3843), - [anon_sym_LR_DQUOTE] = ACTIONS(3843), - [anon_sym_uR_DQUOTE] = ACTIONS(3843), - [anon_sym_UR_DQUOTE] = ACTIONS(3843), - [anon_sym_u8R_DQUOTE] = ACTIONS(3843), - [anon_sym_co_await] = ACTIONS(3845), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), - }, - [1280] = { - [sym_expression] = STATE(4315), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(4917), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3835), + [anon_sym_compl] = ACTIONS(3835), + [anon_sym_DASH_DASH] = ACTIONS(4338), + [anon_sym_PLUS_PLUS] = ACTIONS(4338), + [anon_sym_sizeof] = ACTIONS(3843), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -207559,91 +214160,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(113), [anon_sym___asm__] = ACTIONS(113), [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), + [sym_number_literal] = ACTIONS(3845), + [anon_sym_L_SQUOTE] = ACTIONS(3847), + [anon_sym_u_SQUOTE] = ACTIONS(3847), + [anon_sym_U_SQUOTE] = ACTIONS(3847), + [anon_sym_u8_SQUOTE] = ACTIONS(3847), + [anon_sym_SQUOTE] = ACTIONS(3847), + [anon_sym_L_DQUOTE] = ACTIONS(3849), + [anon_sym_u_DQUOTE] = ACTIONS(3849), + [anon_sym_U_DQUOTE] = ACTIONS(3849), + [anon_sym_u8_DQUOTE] = ACTIONS(3849), + [anon_sym_DQUOTE] = ACTIONS(3849), [sym_true] = ACTIONS(229), [sym_false] = ACTIONS(229), [anon_sym_NULL] = ACTIONS(123), [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3851), + [anon_sym_R_DQUOTE] = ACTIONS(3853), + [anon_sym_LR_DQUOTE] = ACTIONS(3853), + [anon_sym_uR_DQUOTE] = ACTIONS(3853), + [anon_sym_UR_DQUOTE] = ACTIONS(3853), + [anon_sym_u8R_DQUOTE] = ACTIONS(3853), + [anon_sym_co_await] = ACTIONS(3855), [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1281] = { - [sym_expression] = STATE(4313), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1337] = { + [sym_expression] = STATE(4661), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -207676,7 +214277,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -207688,367 +214289,267 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1282] = { - [sym_expression] = STATE(2915), - [sym__string] = STATE(2950), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(2950), - [sym_concatenated_string] = STATE(2950), - [sym_string_literal] = STATE(2034), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(2034), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), - [sym_identifier] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(4555), - [anon_sym_BANG] = ACTIONS(1994), - [anon_sym_TILDE] = ACTIONS(1994), - [anon_sym_DASH] = ACTIONS(1992), - [anon_sym_PLUS] = ACTIONS(1992), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(1996), - [anon_sym_COLON_COLON] = ACTIONS(1998), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(1956), - [anon_sym_not] = ACTIONS(1992), - [anon_sym_compl] = ACTIONS(1992), - [anon_sym_DASH_DASH] = ACTIONS(3343), - [anon_sym_PLUS_PLUS] = ACTIONS(3343), - [anon_sym_sizeof] = ACTIONS(2000), - [anon_sym___alignof__] = ACTIONS(1960), - [anon_sym___alignof] = ACTIONS(1960), - [anon_sym__alignof] = ACTIONS(1960), - [anon_sym_alignof] = ACTIONS(1960), - [anon_sym__Alignof] = ACTIONS(1960), - [anon_sym_offsetof] = ACTIONS(1962), - [anon_sym__Generic] = ACTIONS(1964), - [anon_sym_asm] = ACTIONS(1966), - [anon_sym___asm__] = ACTIONS(1966), - [anon_sym___asm] = ACTIONS(1966), - [sym_number_literal] = ACTIONS(2002), - [anon_sym_L_SQUOTE] = ACTIONS(2004), - [anon_sym_u_SQUOTE] = ACTIONS(2004), - [anon_sym_U_SQUOTE] = ACTIONS(2004), - [anon_sym_u8_SQUOTE] = ACTIONS(2004), - [anon_sym_SQUOTE] = ACTIONS(2004), - [anon_sym_L_DQUOTE] = ACTIONS(2006), - [anon_sym_u_DQUOTE] = ACTIONS(2006), - [anon_sym_U_DQUOTE] = ACTIONS(2006), - [anon_sym_u8_DQUOTE] = ACTIONS(2006), - [anon_sym_DQUOTE] = ACTIONS(2006), - [sym_true] = ACTIONS(1974), - [sym_false] = ACTIONS(1974), - [anon_sym_NULL] = ACTIONS(1976), - [anon_sym_nullptr] = ACTIONS(1976), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(2008), - [anon_sym_R_DQUOTE] = ACTIONS(2010), - [anon_sym_LR_DQUOTE] = ACTIONS(2010), - [anon_sym_uR_DQUOTE] = ACTIONS(2010), - [anon_sym_UR_DQUOTE] = ACTIONS(2010), - [anon_sym_u8R_DQUOTE] = ACTIONS(2010), - [anon_sym_co_await] = ACTIONS(2012), - [anon_sym_new] = ACTIONS(2014), - [anon_sym_requires] = ACTIONS(1988), - [sym_this] = ACTIONS(1974), - }, - [1283] = { - [sym_expression] = STATE(2384), - [sym__string] = STATE(2950), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(2950), - [sym_concatenated_string] = STATE(2950), - [sym_string_literal] = STATE(2034), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(2034), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), - [sym_identifier] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(4555), - [anon_sym_BANG] = ACTIONS(1994), - [anon_sym_TILDE] = ACTIONS(1994), - [anon_sym_DASH] = ACTIONS(1992), - [anon_sym_PLUS] = ACTIONS(1992), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(1996), - [anon_sym_COLON_COLON] = ACTIONS(1998), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(1956), - [anon_sym_not] = ACTIONS(1992), - [anon_sym_compl] = ACTIONS(1992), - [anon_sym_DASH_DASH] = ACTIONS(3343), - [anon_sym_PLUS_PLUS] = ACTIONS(3343), - [anon_sym_sizeof] = ACTIONS(2000), - [anon_sym___alignof__] = ACTIONS(1960), - [anon_sym___alignof] = ACTIONS(1960), - [anon_sym__alignof] = ACTIONS(1960), - [anon_sym_alignof] = ACTIONS(1960), - [anon_sym__Alignof] = ACTIONS(1960), - [anon_sym_offsetof] = ACTIONS(1962), - [anon_sym__Generic] = ACTIONS(1964), - [anon_sym_asm] = ACTIONS(1966), - [anon_sym___asm__] = ACTIONS(1966), - [anon_sym___asm] = ACTIONS(1966), - [sym_number_literal] = ACTIONS(2002), - [anon_sym_L_SQUOTE] = ACTIONS(2004), - [anon_sym_u_SQUOTE] = ACTIONS(2004), - [anon_sym_U_SQUOTE] = ACTIONS(2004), - [anon_sym_u8_SQUOTE] = ACTIONS(2004), - [anon_sym_SQUOTE] = ACTIONS(2004), - [anon_sym_L_DQUOTE] = ACTIONS(2006), - [anon_sym_u_DQUOTE] = ACTIONS(2006), - [anon_sym_U_DQUOTE] = ACTIONS(2006), - [anon_sym_u8_DQUOTE] = ACTIONS(2006), - [anon_sym_DQUOTE] = ACTIONS(2006), - [sym_true] = ACTIONS(1974), - [sym_false] = ACTIONS(1974), - [anon_sym_NULL] = ACTIONS(1976), - [anon_sym_nullptr] = ACTIONS(1976), + [1338] = { + [sym_expression] = STATE(3219), + [sym__string] = STATE(3393), + [sym_conditional_expression] = STATE(3401), + [sym_assignment_expression] = STATE(3401), + [sym_pointer_expression] = STATE(3405), + [sym_unary_expression] = STATE(3401), + [sym_binary_expression] = STATE(3401), + [sym_update_expression] = STATE(3401), + [sym_cast_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3401), + [sym_alignof_expression] = STATE(3401), + [sym_offsetof_expression] = STATE(3401), + [sym_generic_expression] = STATE(3401), + [sym_subscript_expression] = STATE(3405), + [sym_call_expression] = STATE(3405), + [sym_gnu_asm_expression] = STATE(3401), + [sym_extension_expression] = STATE(3401), + [sym_field_expression] = STATE(3405), + [sym_compound_literal_expression] = STATE(3401), + [sym_parenthesized_expression] = STATE(3405), + [sym_char_literal] = STATE(3393), + [sym_concatenated_string] = STATE(3393), + [sym_string_literal] = STATE(2380), + [sym_null] = STATE(3401), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7745), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3401), + [sym_raw_string_literal] = STATE(2380), + [sym_co_await_expression] = STATE(3401), + [sym_new_expression] = STATE(3401), + [sym_delete_expression] = STATE(3401), + [sym_requires_clause] = STATE(3401), + [sym_requires_expression] = STATE(3401), + [sym_lambda_expression] = STATE(3401), + [sym_lambda_capture_specifier] = STATE(5494), + [sym_fold_expression] = STATE(3401), + [sym_parameter_pack_expansion] = STATE(3401), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3405), + [sym_qualified_type_identifier] = STATE(7745), + [sym_user_defined_literal] = STATE(3405), + [sym_identifier] = ACTIONS(2453), + [anon_sym_LPAREN2] = ACTIONS(2018), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(2455), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_LBRACK] = ACTIONS(4946), + [sym_primitive_type] = ACTIONS(2459), + [anon_sym_not] = ACTIONS(1796), + [anon_sym_compl] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_sizeof] = ACTIONS(1824), + [anon_sym___alignof__] = ACTIONS(1826), + [anon_sym___alignof] = ACTIONS(1826), + [anon_sym__alignof] = ACTIONS(1826), + [anon_sym_alignof] = ACTIONS(1826), + [anon_sym__Alignof] = ACTIONS(1826), + [anon_sym_offsetof] = ACTIONS(1828), + [anon_sym__Generic] = ACTIONS(1830), + [anon_sym_asm] = ACTIONS(1832), + [anon_sym___asm__] = ACTIONS(1832), + [anon_sym___asm] = ACTIONS(1832), + [sym_number_literal] = ACTIONS(1834), + [anon_sym_L_SQUOTE] = ACTIONS(1836), + [anon_sym_u_SQUOTE] = ACTIONS(1836), + [anon_sym_U_SQUOTE] = ACTIONS(1836), + [anon_sym_u8_SQUOTE] = ACTIONS(1836), + [anon_sym_SQUOTE] = ACTIONS(1836), + [anon_sym_L_DQUOTE] = ACTIONS(1838), + [anon_sym_u_DQUOTE] = ACTIONS(1838), + [anon_sym_U_DQUOTE] = ACTIONS(1838), + [anon_sym_u8_DQUOTE] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym_true] = ACTIONS(1840), + [sym_false] = ACTIONS(1840), + [anon_sym_NULL] = ACTIONS(1842), + [anon_sym_nullptr] = ACTIONS(1842), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(2008), - [anon_sym_R_DQUOTE] = ACTIONS(2010), - [anon_sym_LR_DQUOTE] = ACTIONS(2010), - [anon_sym_uR_DQUOTE] = ACTIONS(2010), - [anon_sym_UR_DQUOTE] = ACTIONS(2010), - [anon_sym_u8R_DQUOTE] = ACTIONS(2010), - [anon_sym_co_await] = ACTIONS(2012), - [anon_sym_new] = ACTIONS(2014), - [anon_sym_requires] = ACTIONS(1988), - [sym_this] = ACTIONS(1974), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1852), + [anon_sym_R_DQUOTE] = ACTIONS(1854), + [anon_sym_LR_DQUOTE] = ACTIONS(1854), + [anon_sym_uR_DQUOTE] = ACTIONS(1854), + [anon_sym_UR_DQUOTE] = ACTIONS(1854), + [anon_sym_u8R_DQUOTE] = ACTIONS(1854), + [anon_sym_co_await] = ACTIONS(1856), + [anon_sym_new] = ACTIONS(1858), + [anon_sym_requires] = ACTIONS(1860), + [sym_this] = ACTIONS(1840), }, - [1284] = { - [sym_expression] = STATE(2913), - [sym__string] = STATE(2950), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(2950), - [sym_concatenated_string] = STATE(2950), - [sym_string_literal] = STATE(2034), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(2034), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), - [sym_identifier] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(4555), - [anon_sym_BANG] = ACTIONS(1994), - [anon_sym_TILDE] = ACTIONS(1994), - [anon_sym_DASH] = ACTIONS(1992), - [anon_sym_PLUS] = ACTIONS(1992), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(1996), - [anon_sym_COLON_COLON] = ACTIONS(1998), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(1956), - [anon_sym_not] = ACTIONS(1992), - [anon_sym_compl] = ACTIONS(1992), - [anon_sym_DASH_DASH] = ACTIONS(3343), - [anon_sym_PLUS_PLUS] = ACTIONS(3343), - [anon_sym_sizeof] = ACTIONS(2000), - [anon_sym___alignof__] = ACTIONS(1960), - [anon_sym___alignof] = ACTIONS(1960), - [anon_sym__alignof] = ACTIONS(1960), - [anon_sym_alignof] = ACTIONS(1960), - [anon_sym__Alignof] = ACTIONS(1960), - [anon_sym_offsetof] = ACTIONS(1962), - [anon_sym__Generic] = ACTIONS(1964), - [anon_sym_asm] = ACTIONS(1966), - [anon_sym___asm__] = ACTIONS(1966), - [anon_sym___asm] = ACTIONS(1966), - [sym_number_literal] = ACTIONS(2002), - [anon_sym_L_SQUOTE] = ACTIONS(2004), - [anon_sym_u_SQUOTE] = ACTIONS(2004), - [anon_sym_U_SQUOTE] = ACTIONS(2004), - [anon_sym_u8_SQUOTE] = ACTIONS(2004), - [anon_sym_SQUOTE] = ACTIONS(2004), - [anon_sym_L_DQUOTE] = ACTIONS(2006), - [anon_sym_u_DQUOTE] = ACTIONS(2006), - [anon_sym_U_DQUOTE] = ACTIONS(2006), - [anon_sym_u8_DQUOTE] = ACTIONS(2006), - [anon_sym_DQUOTE] = ACTIONS(2006), - [sym_true] = ACTIONS(1974), - [sym_false] = ACTIONS(1974), - [anon_sym_NULL] = ACTIONS(1976), - [anon_sym_nullptr] = ACTIONS(1976), + [1339] = { + [sym_expression] = STATE(3243), + [sym__string] = STATE(3393), + [sym_conditional_expression] = STATE(3401), + [sym_assignment_expression] = STATE(3401), + [sym_pointer_expression] = STATE(3405), + [sym_unary_expression] = STATE(3401), + [sym_binary_expression] = STATE(3401), + [sym_update_expression] = STATE(3401), + [sym_cast_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3401), + [sym_alignof_expression] = STATE(3401), + [sym_offsetof_expression] = STATE(3401), + [sym_generic_expression] = STATE(3401), + [sym_subscript_expression] = STATE(3405), + [sym_call_expression] = STATE(3405), + [sym_gnu_asm_expression] = STATE(3401), + [sym_extension_expression] = STATE(3401), + [sym_field_expression] = STATE(3405), + [sym_compound_literal_expression] = STATE(3401), + [sym_parenthesized_expression] = STATE(3405), + [sym_char_literal] = STATE(3393), + [sym_concatenated_string] = STATE(3393), + [sym_string_literal] = STATE(2380), + [sym_null] = STATE(3401), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7745), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3401), + [sym_raw_string_literal] = STATE(2380), + [sym_co_await_expression] = STATE(3401), + [sym_new_expression] = STATE(3401), + [sym_delete_expression] = STATE(3401), + [sym_requires_clause] = STATE(3401), + [sym_requires_expression] = STATE(3401), + [sym_lambda_expression] = STATE(3401), + [sym_lambda_capture_specifier] = STATE(5494), + [sym_fold_expression] = STATE(3401), + [sym_parameter_pack_expansion] = STATE(3401), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3405), + [sym_qualified_type_identifier] = STATE(7745), + [sym_user_defined_literal] = STATE(3405), + [sym_identifier] = ACTIONS(2453), + [anon_sym_LPAREN2] = ACTIONS(2018), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(2455), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2459), + [anon_sym_not] = ACTIONS(1796), + [anon_sym_compl] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_sizeof] = ACTIONS(1824), + [anon_sym___alignof__] = ACTIONS(1826), + [anon_sym___alignof] = ACTIONS(1826), + [anon_sym__alignof] = ACTIONS(1826), + [anon_sym_alignof] = ACTIONS(1826), + [anon_sym__Alignof] = ACTIONS(1826), + [anon_sym_offsetof] = ACTIONS(1828), + [anon_sym__Generic] = ACTIONS(1830), + [anon_sym_asm] = ACTIONS(1832), + [anon_sym___asm__] = ACTIONS(1832), + [anon_sym___asm] = ACTIONS(1832), + [sym_number_literal] = ACTIONS(1834), + [anon_sym_L_SQUOTE] = ACTIONS(1836), + [anon_sym_u_SQUOTE] = ACTIONS(1836), + [anon_sym_U_SQUOTE] = ACTIONS(1836), + [anon_sym_u8_SQUOTE] = ACTIONS(1836), + [anon_sym_SQUOTE] = ACTIONS(1836), + [anon_sym_L_DQUOTE] = ACTIONS(1838), + [anon_sym_u_DQUOTE] = ACTIONS(1838), + [anon_sym_U_DQUOTE] = ACTIONS(1838), + [anon_sym_u8_DQUOTE] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym_true] = ACTIONS(1840), + [sym_false] = ACTIONS(1840), + [anon_sym_NULL] = ACTIONS(1842), + [anon_sym_nullptr] = ACTIONS(1842), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(2008), - [anon_sym_R_DQUOTE] = ACTIONS(2010), - [anon_sym_LR_DQUOTE] = ACTIONS(2010), - [anon_sym_uR_DQUOTE] = ACTIONS(2010), - [anon_sym_UR_DQUOTE] = ACTIONS(2010), - [anon_sym_u8R_DQUOTE] = ACTIONS(2010), - [anon_sym_co_await] = ACTIONS(2012), - [anon_sym_new] = ACTIONS(2014), - [anon_sym_requires] = ACTIONS(1988), - [sym_this] = ACTIONS(1974), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1852), + [anon_sym_R_DQUOTE] = ACTIONS(1854), + [anon_sym_LR_DQUOTE] = ACTIONS(1854), + [anon_sym_uR_DQUOTE] = ACTIONS(1854), + [anon_sym_UR_DQUOTE] = ACTIONS(1854), + [anon_sym_u8R_DQUOTE] = ACTIONS(1854), + [anon_sym_co_await] = ACTIONS(1856), + [anon_sym_new] = ACTIONS(1858), + [anon_sym_requires] = ACTIONS(1860), + [sym_this] = ACTIONS(1840), }, - [1285] = { - [sym_expression] = STATE(4127), - [sym__string] = STATE(4199), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(2935), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(2935), - [sym_call_expression] = STATE(2935), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(2935), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(2935), - [sym_char_literal] = STATE(4199), - [sym_concatenated_string] = STATE(4199), - [sym_string_literal] = STATE(3059), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3059), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2935), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(2935), - [sym_identifier] = ACTIONS(4334), - [anon_sym_LPAREN2] = ACTIONS(4658), - [anon_sym_BANG] = ACTIONS(3609), - [anon_sym_TILDE] = ACTIONS(3609), - [anon_sym_DASH] = ACTIONS(3607), - [anon_sym_PLUS] = ACTIONS(3607), + [1340] = { + [sym_expression] = STATE(4359), + [sym__string] = STATE(4455), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3366), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3366), + [sym_call_expression] = STATE(3366), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3366), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3366), + [sym_char_literal] = STATE(4455), + [sym_concatenated_string] = STATE(4455), + [sym_string_literal] = STATE(3406), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3406), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3366), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3366), + [sym_identifier] = ACTIONS(3833), + [anon_sym_LPAREN2] = ACTIONS(4557), + [anon_sym_BANG] = ACTIONS(3837), + [anon_sym_TILDE] = ACTIONS(3837), + [anon_sym_DASH] = ACTIONS(3835), + [anon_sym_PLUS] = ACTIONS(3835), [anon_sym_STAR] = ACTIONS(4336), [anon_sym_AMP] = ACTIONS(4336), - [anon_sym___extension__] = ACTIONS(3611), - [anon_sym_COLON_COLON] = ACTIONS(3613), + [anon_sym___extension__] = ACTIONS(3839), + [anon_sym_COLON_COLON] = ACTIONS(3841), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3607), - [anon_sym_compl] = ACTIONS(3607), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3835), + [anon_sym_compl] = ACTIONS(3835), [anon_sym_DASH_DASH] = ACTIONS(4338), [anon_sym_PLUS_PLUS] = ACTIONS(4338), - [anon_sym_sizeof] = ACTIONS(3617), + [anon_sym_sizeof] = ACTIONS(3843), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -208059,496 +214560,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(113), [anon_sym___asm__] = ACTIONS(113), [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3619), - [anon_sym_L_SQUOTE] = ACTIONS(3621), - [anon_sym_u_SQUOTE] = ACTIONS(3621), - [anon_sym_U_SQUOTE] = ACTIONS(3621), - [anon_sym_u8_SQUOTE] = ACTIONS(3621), - [anon_sym_SQUOTE] = ACTIONS(3621), - [anon_sym_L_DQUOTE] = ACTIONS(3623), - [anon_sym_u_DQUOTE] = ACTIONS(3623), - [anon_sym_U_DQUOTE] = ACTIONS(3623), - [anon_sym_u8_DQUOTE] = ACTIONS(3623), - [anon_sym_DQUOTE] = ACTIONS(3623), + [sym_number_literal] = ACTIONS(3845), + [anon_sym_L_SQUOTE] = ACTIONS(3847), + [anon_sym_u_SQUOTE] = ACTIONS(3847), + [anon_sym_U_SQUOTE] = ACTIONS(3847), + [anon_sym_u8_SQUOTE] = ACTIONS(3847), + [anon_sym_SQUOTE] = ACTIONS(3847), + [anon_sym_L_DQUOTE] = ACTIONS(3849), + [anon_sym_u_DQUOTE] = ACTIONS(3849), + [anon_sym_U_DQUOTE] = ACTIONS(3849), + [anon_sym_u8_DQUOTE] = ACTIONS(3849), + [anon_sym_DQUOTE] = ACTIONS(3849), [sym_true] = ACTIONS(229), [sym_false] = ACTIONS(229), [anon_sym_NULL] = ACTIONS(123), [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3625), - [anon_sym_R_DQUOTE] = ACTIONS(3627), - [anon_sym_LR_DQUOTE] = ACTIONS(3627), - [anon_sym_uR_DQUOTE] = ACTIONS(3627), - [anon_sym_UR_DQUOTE] = ACTIONS(3627), - [anon_sym_u8R_DQUOTE] = ACTIONS(3627), - [anon_sym_co_await] = ACTIONS(3629), - [anon_sym_new] = ACTIONS(3631), - [anon_sym_requires] = ACTIONS(3633), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3851), + [anon_sym_R_DQUOTE] = ACTIONS(3853), + [anon_sym_LR_DQUOTE] = ACTIONS(3853), + [anon_sym_uR_DQUOTE] = ACTIONS(3853), + [anon_sym_UR_DQUOTE] = ACTIONS(3853), + [anon_sym_u8R_DQUOTE] = ACTIONS(3853), + [anon_sym_co_await] = ACTIONS(3855), + [anon_sym_new] = ACTIONS(163), + [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1286] = { - [sym_expression] = STATE(2914), - [sym__string] = STATE(2950), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(2950), - [sym_concatenated_string] = STATE(2950), - [sym_string_literal] = STATE(2034), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(2034), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), - [sym_identifier] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(4555), - [anon_sym_BANG] = ACTIONS(1994), - [anon_sym_TILDE] = ACTIONS(1994), - [anon_sym_DASH] = ACTIONS(1992), - [anon_sym_PLUS] = ACTIONS(1992), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(1996), - [anon_sym_COLON_COLON] = ACTIONS(1998), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(1956), - [anon_sym_not] = ACTIONS(1992), - [anon_sym_compl] = ACTIONS(1992), - [anon_sym_DASH_DASH] = ACTIONS(3343), - [anon_sym_PLUS_PLUS] = ACTIONS(3343), - [anon_sym_sizeof] = ACTIONS(2000), - [anon_sym___alignof__] = ACTIONS(1960), - [anon_sym___alignof] = ACTIONS(1960), - [anon_sym__alignof] = ACTIONS(1960), - [anon_sym_alignof] = ACTIONS(1960), - [anon_sym__Alignof] = ACTIONS(1960), - [anon_sym_offsetof] = ACTIONS(1962), - [anon_sym__Generic] = ACTIONS(1964), - [anon_sym_asm] = ACTIONS(1966), - [anon_sym___asm__] = ACTIONS(1966), - [anon_sym___asm] = ACTIONS(1966), - [sym_number_literal] = ACTIONS(2002), - [anon_sym_L_SQUOTE] = ACTIONS(2004), - [anon_sym_u_SQUOTE] = ACTIONS(2004), - [anon_sym_U_SQUOTE] = ACTIONS(2004), - [anon_sym_u8_SQUOTE] = ACTIONS(2004), - [anon_sym_SQUOTE] = ACTIONS(2004), - [anon_sym_L_DQUOTE] = ACTIONS(2006), - [anon_sym_u_DQUOTE] = ACTIONS(2006), - [anon_sym_U_DQUOTE] = ACTIONS(2006), - [anon_sym_u8_DQUOTE] = ACTIONS(2006), - [anon_sym_DQUOTE] = ACTIONS(2006), - [sym_true] = ACTIONS(1974), - [sym_false] = ACTIONS(1974), - [anon_sym_NULL] = ACTIONS(1976), - [anon_sym_nullptr] = ACTIONS(1976), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(2008), - [anon_sym_R_DQUOTE] = ACTIONS(2010), - [anon_sym_LR_DQUOTE] = ACTIONS(2010), - [anon_sym_uR_DQUOTE] = ACTIONS(2010), - [anon_sym_UR_DQUOTE] = ACTIONS(2010), - [anon_sym_u8R_DQUOTE] = ACTIONS(2010), - [anon_sym_co_await] = ACTIONS(2012), - [anon_sym_new] = ACTIONS(2014), - [anon_sym_requires] = ACTIONS(1988), - [sym_this] = ACTIONS(1974), - }, - [1287] = { - [sym_expression] = STATE(2922), - [sym__string] = STATE(2950), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(2950), - [sym_concatenated_string] = STATE(2950), - [sym_string_literal] = STATE(2034), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(2034), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), - [sym_identifier] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(4555), - [anon_sym_BANG] = ACTIONS(1994), - [anon_sym_TILDE] = ACTIONS(1994), - [anon_sym_DASH] = ACTIONS(1992), - [anon_sym_PLUS] = ACTIONS(1992), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(1996), - [anon_sym_COLON_COLON] = ACTIONS(1998), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(1956), - [anon_sym_not] = ACTIONS(1992), - [anon_sym_compl] = ACTIONS(1992), - [anon_sym_DASH_DASH] = ACTIONS(3343), - [anon_sym_PLUS_PLUS] = ACTIONS(3343), - [anon_sym_sizeof] = ACTIONS(2000), - [anon_sym___alignof__] = ACTIONS(1960), - [anon_sym___alignof] = ACTIONS(1960), - [anon_sym__alignof] = ACTIONS(1960), - [anon_sym_alignof] = ACTIONS(1960), - [anon_sym__Alignof] = ACTIONS(1960), - [anon_sym_offsetof] = ACTIONS(1962), - [anon_sym__Generic] = ACTIONS(1964), - [anon_sym_asm] = ACTIONS(1966), - [anon_sym___asm__] = ACTIONS(1966), - [anon_sym___asm] = ACTIONS(1966), - [sym_number_literal] = ACTIONS(2002), - [anon_sym_L_SQUOTE] = ACTIONS(2004), - [anon_sym_u_SQUOTE] = ACTIONS(2004), - [anon_sym_U_SQUOTE] = ACTIONS(2004), - [anon_sym_u8_SQUOTE] = ACTIONS(2004), - [anon_sym_SQUOTE] = ACTIONS(2004), - [anon_sym_L_DQUOTE] = ACTIONS(2006), - [anon_sym_u_DQUOTE] = ACTIONS(2006), - [anon_sym_U_DQUOTE] = ACTIONS(2006), - [anon_sym_u8_DQUOTE] = ACTIONS(2006), - [anon_sym_DQUOTE] = ACTIONS(2006), - [sym_true] = ACTIONS(1974), - [sym_false] = ACTIONS(1974), - [anon_sym_NULL] = ACTIONS(1976), - [anon_sym_nullptr] = ACTIONS(1976), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(2008), - [anon_sym_R_DQUOTE] = ACTIONS(2010), - [anon_sym_LR_DQUOTE] = ACTIONS(2010), - [anon_sym_uR_DQUOTE] = ACTIONS(2010), - [anon_sym_UR_DQUOTE] = ACTIONS(2010), - [anon_sym_u8R_DQUOTE] = ACTIONS(2010), - [anon_sym_co_await] = ACTIONS(2012), - [anon_sym_new] = ACTIONS(2014), - [anon_sym_requires] = ACTIONS(1988), - [sym_this] = ACTIONS(1974), - }, - [1288] = { - [sym_expression] = STATE(2923), - [sym__string] = STATE(2950), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(2950), - [sym_concatenated_string] = STATE(2950), - [sym_string_literal] = STATE(2034), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(2034), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), - [sym_identifier] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(4555), - [anon_sym_BANG] = ACTIONS(1994), - [anon_sym_TILDE] = ACTIONS(1994), - [anon_sym_DASH] = ACTIONS(1992), - [anon_sym_PLUS] = ACTIONS(1992), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(1996), - [anon_sym_COLON_COLON] = ACTIONS(1998), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(1956), - [anon_sym_not] = ACTIONS(1992), - [anon_sym_compl] = ACTIONS(1992), - [anon_sym_DASH_DASH] = ACTIONS(3343), - [anon_sym_PLUS_PLUS] = ACTIONS(3343), - [anon_sym_sizeof] = ACTIONS(2000), - [anon_sym___alignof__] = ACTIONS(1960), - [anon_sym___alignof] = ACTIONS(1960), - [anon_sym__alignof] = ACTIONS(1960), - [anon_sym_alignof] = ACTIONS(1960), - [anon_sym__Alignof] = ACTIONS(1960), - [anon_sym_offsetof] = ACTIONS(1962), - [anon_sym__Generic] = ACTIONS(1964), - [anon_sym_asm] = ACTIONS(1966), - [anon_sym___asm__] = ACTIONS(1966), - [anon_sym___asm] = ACTIONS(1966), - [sym_number_literal] = ACTIONS(2002), - [anon_sym_L_SQUOTE] = ACTIONS(2004), - [anon_sym_u_SQUOTE] = ACTIONS(2004), - [anon_sym_U_SQUOTE] = ACTIONS(2004), - [anon_sym_u8_SQUOTE] = ACTIONS(2004), - [anon_sym_SQUOTE] = ACTIONS(2004), - [anon_sym_L_DQUOTE] = ACTIONS(2006), - [anon_sym_u_DQUOTE] = ACTIONS(2006), - [anon_sym_U_DQUOTE] = ACTIONS(2006), - [anon_sym_u8_DQUOTE] = ACTIONS(2006), - [anon_sym_DQUOTE] = ACTIONS(2006), - [sym_true] = ACTIONS(1974), - [sym_false] = ACTIONS(1974), - [anon_sym_NULL] = ACTIONS(1976), - [anon_sym_nullptr] = ACTIONS(1976), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(2008), - [anon_sym_R_DQUOTE] = ACTIONS(2010), - [anon_sym_LR_DQUOTE] = ACTIONS(2010), - [anon_sym_uR_DQUOTE] = ACTIONS(2010), - [anon_sym_UR_DQUOTE] = ACTIONS(2010), - [anon_sym_u8R_DQUOTE] = ACTIONS(2010), - [anon_sym_co_await] = ACTIONS(2012), - [anon_sym_new] = ACTIONS(2014), - [anon_sym_requires] = ACTIONS(1988), - [sym_this] = ACTIONS(1974), - }, - [1289] = { - [sym_expression] = STATE(2963), - [sym__string] = STATE(2950), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(2950), - [sym_concatenated_string] = STATE(2950), - [sym_string_literal] = STATE(2034), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(2034), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), - [sym_identifier] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(4555), - [anon_sym_BANG] = ACTIONS(1994), - [anon_sym_TILDE] = ACTIONS(1994), - [anon_sym_DASH] = ACTIONS(1992), - [anon_sym_PLUS] = ACTIONS(1992), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(1996), - [anon_sym_COLON_COLON] = ACTIONS(1998), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(1956), - [anon_sym_not] = ACTIONS(1992), - [anon_sym_compl] = ACTIONS(1992), - [anon_sym_DASH_DASH] = ACTIONS(3343), - [anon_sym_PLUS_PLUS] = ACTIONS(3343), - [anon_sym_sizeof] = ACTIONS(2000), - [anon_sym___alignof__] = ACTIONS(1960), - [anon_sym___alignof] = ACTIONS(1960), - [anon_sym__alignof] = ACTIONS(1960), - [anon_sym_alignof] = ACTIONS(1960), - [anon_sym__Alignof] = ACTIONS(1960), - [anon_sym_offsetof] = ACTIONS(1962), - [anon_sym__Generic] = ACTIONS(1964), - [anon_sym_asm] = ACTIONS(1966), - [anon_sym___asm__] = ACTIONS(1966), - [anon_sym___asm] = ACTIONS(1966), - [sym_number_literal] = ACTIONS(2002), - [anon_sym_L_SQUOTE] = ACTIONS(2004), - [anon_sym_u_SQUOTE] = ACTIONS(2004), - [anon_sym_U_SQUOTE] = ACTIONS(2004), - [anon_sym_u8_SQUOTE] = ACTIONS(2004), - [anon_sym_SQUOTE] = ACTIONS(2004), - [anon_sym_L_DQUOTE] = ACTIONS(2006), - [anon_sym_u_DQUOTE] = ACTIONS(2006), - [anon_sym_U_DQUOTE] = ACTIONS(2006), - [anon_sym_u8_DQUOTE] = ACTIONS(2006), - [anon_sym_DQUOTE] = ACTIONS(2006), - [sym_true] = ACTIONS(1974), - [sym_false] = ACTIONS(1974), - [anon_sym_NULL] = ACTIONS(1976), - [anon_sym_nullptr] = ACTIONS(1976), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(2008), - [anon_sym_R_DQUOTE] = ACTIONS(2010), - [anon_sym_LR_DQUOTE] = ACTIONS(2010), - [anon_sym_uR_DQUOTE] = ACTIONS(2010), - [anon_sym_UR_DQUOTE] = ACTIONS(2010), - [anon_sym_u8R_DQUOTE] = ACTIONS(2010), - [anon_sym_co_await] = ACTIONS(2012), - [anon_sym_new] = ACTIONS(2014), - [anon_sym_requires] = ACTIONS(1988), - [sym_this] = ACTIONS(1974), - }, - [1290] = { - [sym_expression] = STATE(4268), - [sym__string] = STATE(4380), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3253), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3253), - [sym_call_expression] = STATE(3253), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3253), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3253), - [sym_char_literal] = STATE(4380), - [sym_concatenated_string] = STATE(4380), - [sym_string_literal] = STATE(3416), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3416), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3253), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3253), - [sym_identifier] = ACTIONS(3823), - [anon_sym_LPAREN2] = ACTIONS(4557), - [anon_sym_BANG] = ACTIONS(3827), - [anon_sym_TILDE] = ACTIONS(3827), - [anon_sym_DASH] = ACTIONS(3825), - [anon_sym_PLUS] = ACTIONS(3825), - [anon_sym_STAR] = ACTIONS(4382), - [anon_sym_AMP] = ACTIONS(4382), - [anon_sym___extension__] = ACTIONS(3829), - [anon_sym_COLON_COLON] = ACTIONS(3831), + [1341] = { + [sym_expression] = STATE(4822), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), + [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3825), - [anon_sym_compl] = ACTIONS(3825), - [anon_sym_DASH_DASH] = ACTIONS(4384), - [anon_sym_PLUS_PLUS] = ACTIONS(4384), - [anon_sym_sizeof] = ACTIONS(3833), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -208559,395 +214660,295 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(113), [anon_sym___asm__] = ACTIONS(113), [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3835), - [anon_sym_L_SQUOTE] = ACTIONS(3837), - [anon_sym_u_SQUOTE] = ACTIONS(3837), - [anon_sym_U_SQUOTE] = ACTIONS(3837), - [anon_sym_u8_SQUOTE] = ACTIONS(3837), - [anon_sym_SQUOTE] = ACTIONS(3837), - [anon_sym_L_DQUOTE] = ACTIONS(3839), - [anon_sym_u_DQUOTE] = ACTIONS(3839), - [anon_sym_U_DQUOTE] = ACTIONS(3839), - [anon_sym_u8_DQUOTE] = ACTIONS(3839), - [anon_sym_DQUOTE] = ACTIONS(3839), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(117), + [anon_sym_u_SQUOTE] = ACTIONS(117), + [anon_sym_U_SQUOTE] = ACTIONS(117), + [anon_sym_u8_SQUOTE] = ACTIONS(117), + [anon_sym_SQUOTE] = ACTIONS(117), + [anon_sym_L_DQUOTE] = ACTIONS(119), + [anon_sym_u_DQUOTE] = ACTIONS(119), + [anon_sym_U_DQUOTE] = ACTIONS(119), + [anon_sym_u8_DQUOTE] = ACTIONS(119), + [anon_sym_DQUOTE] = ACTIONS(119), [sym_true] = ACTIONS(229), [sym_false] = ACTIONS(229), [anon_sym_NULL] = ACTIONS(123), [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3841), - [anon_sym_R_DQUOTE] = ACTIONS(3843), - [anon_sym_LR_DQUOTE] = ACTIONS(3843), - [anon_sym_uR_DQUOTE] = ACTIONS(3843), - [anon_sym_UR_DQUOTE] = ACTIONS(3843), - [anon_sym_u8R_DQUOTE] = ACTIONS(3843), - [anon_sym_co_await] = ACTIONS(3845), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(145), + [anon_sym_R_DQUOTE] = ACTIONS(159), + [anon_sym_LR_DQUOTE] = ACTIONS(159), + [anon_sym_uR_DQUOTE] = ACTIONS(159), + [anon_sym_UR_DQUOTE] = ACTIONS(159), + [anon_sym_u8R_DQUOTE] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(161), [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1291] = { - [sym_expression] = STATE(2964), - [sym__string] = STATE(2950), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(2950), - [sym_concatenated_string] = STATE(2950), - [sym_string_literal] = STATE(2034), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(2034), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), - [sym_identifier] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(4555), - [anon_sym_BANG] = ACTIONS(1994), - [anon_sym_TILDE] = ACTIONS(1994), - [anon_sym_DASH] = ACTIONS(1992), - [anon_sym_PLUS] = ACTIONS(1992), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(1996), - [anon_sym_COLON_COLON] = ACTIONS(1998), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(1956), - [anon_sym_not] = ACTIONS(1992), - [anon_sym_compl] = ACTIONS(1992), - [anon_sym_DASH_DASH] = ACTIONS(3343), - [anon_sym_PLUS_PLUS] = ACTIONS(3343), - [anon_sym_sizeof] = ACTIONS(2000), - [anon_sym___alignof__] = ACTIONS(1960), - [anon_sym___alignof] = ACTIONS(1960), - [anon_sym__alignof] = ACTIONS(1960), - [anon_sym_alignof] = ACTIONS(1960), - [anon_sym__Alignof] = ACTIONS(1960), - [anon_sym_offsetof] = ACTIONS(1962), - [anon_sym__Generic] = ACTIONS(1964), - [anon_sym_asm] = ACTIONS(1966), - [anon_sym___asm__] = ACTIONS(1966), - [anon_sym___asm] = ACTIONS(1966), - [sym_number_literal] = ACTIONS(2002), - [anon_sym_L_SQUOTE] = ACTIONS(2004), - [anon_sym_u_SQUOTE] = ACTIONS(2004), - [anon_sym_U_SQUOTE] = ACTIONS(2004), - [anon_sym_u8_SQUOTE] = ACTIONS(2004), - [anon_sym_SQUOTE] = ACTIONS(2004), - [anon_sym_L_DQUOTE] = ACTIONS(2006), - [anon_sym_u_DQUOTE] = ACTIONS(2006), - [anon_sym_U_DQUOTE] = ACTIONS(2006), - [anon_sym_u8_DQUOTE] = ACTIONS(2006), - [anon_sym_DQUOTE] = ACTIONS(2006), - [sym_true] = ACTIONS(1974), - [sym_false] = ACTIONS(1974), - [anon_sym_NULL] = ACTIONS(1976), - [anon_sym_nullptr] = ACTIONS(1976), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(2008), - [anon_sym_R_DQUOTE] = ACTIONS(2010), - [anon_sym_LR_DQUOTE] = ACTIONS(2010), - [anon_sym_uR_DQUOTE] = ACTIONS(2010), - [anon_sym_UR_DQUOTE] = ACTIONS(2010), - [anon_sym_u8R_DQUOTE] = ACTIONS(2010), - [anon_sym_co_await] = ACTIONS(2012), - [anon_sym_new] = ACTIONS(2014), - [anon_sym_requires] = ACTIONS(1988), - [sym_this] = ACTIONS(1974), - }, - [1292] = { - [sym_expression] = STATE(2966), - [sym__string] = STATE(2950), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(2950), - [sym_concatenated_string] = STATE(2950), - [sym_string_literal] = STATE(2034), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(2034), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), - [sym_identifier] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(4555), - [anon_sym_BANG] = ACTIONS(1994), - [anon_sym_TILDE] = ACTIONS(1994), - [anon_sym_DASH] = ACTIONS(1992), - [anon_sym_PLUS] = ACTIONS(1992), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(1996), - [anon_sym_COLON_COLON] = ACTIONS(1998), + [1342] = { + [sym_expression] = STATE(4202), + [sym__string] = STATE(4269), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(2921), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(2921), + [sym_call_expression] = STATE(2921), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(2921), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(2921), + [sym_char_literal] = STATE(4269), + [sym_concatenated_string] = STATE(4269), + [sym_string_literal] = STATE(3102), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3102), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2921), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(2921), + [sym_identifier] = ACTIONS(4356), + [anon_sym_LPAREN2] = ACTIONS(4654), + [anon_sym_BANG] = ACTIONS(3617), + [anon_sym_TILDE] = ACTIONS(3617), + [anon_sym_DASH] = ACTIONS(3615), + [anon_sym_PLUS] = ACTIONS(3615), + [anon_sym_STAR] = ACTIONS(4346), + [anon_sym_AMP] = ACTIONS(4346), + [anon_sym___extension__] = ACTIONS(3619), + [anon_sym_COLON_COLON] = ACTIONS(3621), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(1956), - [anon_sym_not] = ACTIONS(1992), - [anon_sym_compl] = ACTIONS(1992), - [anon_sym_DASH_DASH] = ACTIONS(3343), - [anon_sym_PLUS_PLUS] = ACTIONS(3343), - [anon_sym_sizeof] = ACTIONS(2000), - [anon_sym___alignof__] = ACTIONS(1960), - [anon_sym___alignof] = ACTIONS(1960), - [anon_sym__alignof] = ACTIONS(1960), - [anon_sym_alignof] = ACTIONS(1960), - [anon_sym__Alignof] = ACTIONS(1960), - [anon_sym_offsetof] = ACTIONS(1962), - [anon_sym__Generic] = ACTIONS(1964), - [anon_sym_asm] = ACTIONS(1966), - [anon_sym___asm__] = ACTIONS(1966), - [anon_sym___asm] = ACTIONS(1966), - [sym_number_literal] = ACTIONS(2002), - [anon_sym_L_SQUOTE] = ACTIONS(2004), - [anon_sym_u_SQUOTE] = ACTIONS(2004), - [anon_sym_U_SQUOTE] = ACTIONS(2004), - [anon_sym_u8_SQUOTE] = ACTIONS(2004), - [anon_sym_SQUOTE] = ACTIONS(2004), - [anon_sym_L_DQUOTE] = ACTIONS(2006), - [anon_sym_u_DQUOTE] = ACTIONS(2006), - [anon_sym_U_DQUOTE] = ACTIONS(2006), - [anon_sym_u8_DQUOTE] = ACTIONS(2006), - [anon_sym_DQUOTE] = ACTIONS(2006), - [sym_true] = ACTIONS(1974), - [sym_false] = ACTIONS(1974), - [anon_sym_NULL] = ACTIONS(1976), - [anon_sym_nullptr] = ACTIONS(1976), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3615), + [anon_sym_compl] = ACTIONS(3615), + [anon_sym_DASH_DASH] = ACTIONS(4358), + [anon_sym_PLUS_PLUS] = ACTIONS(4358), + [anon_sym_sizeof] = ACTIONS(3625), + [anon_sym___alignof__] = ACTIONS(107), + [anon_sym___alignof] = ACTIONS(107), + [anon_sym__alignof] = ACTIONS(107), + [anon_sym_alignof] = ACTIONS(107), + [anon_sym__Alignof] = ACTIONS(107), + [anon_sym_offsetof] = ACTIONS(109), + [anon_sym__Generic] = ACTIONS(111), + [anon_sym_asm] = ACTIONS(113), + [anon_sym___asm__] = ACTIONS(113), + [anon_sym___asm] = ACTIONS(113), + [sym_number_literal] = ACTIONS(3627), + [anon_sym_L_SQUOTE] = ACTIONS(3629), + [anon_sym_u_SQUOTE] = ACTIONS(3629), + [anon_sym_U_SQUOTE] = ACTIONS(3629), + [anon_sym_u8_SQUOTE] = ACTIONS(3629), + [anon_sym_SQUOTE] = ACTIONS(3629), + [anon_sym_L_DQUOTE] = ACTIONS(3631), + [anon_sym_u_DQUOTE] = ACTIONS(3631), + [anon_sym_U_DQUOTE] = ACTIONS(3631), + [anon_sym_u8_DQUOTE] = ACTIONS(3631), + [anon_sym_DQUOTE] = ACTIONS(3631), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(123), + [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(2008), - [anon_sym_R_DQUOTE] = ACTIONS(2010), - [anon_sym_LR_DQUOTE] = ACTIONS(2010), - [anon_sym_uR_DQUOTE] = ACTIONS(2010), - [anon_sym_UR_DQUOTE] = ACTIONS(2010), - [anon_sym_u8R_DQUOTE] = ACTIONS(2010), - [anon_sym_co_await] = ACTIONS(2012), - [anon_sym_new] = ACTIONS(2014), - [anon_sym_requires] = ACTIONS(1988), - [sym_this] = ACTIONS(1974), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3633), + [anon_sym_R_DQUOTE] = ACTIONS(3635), + [anon_sym_LR_DQUOTE] = ACTIONS(3635), + [anon_sym_uR_DQUOTE] = ACTIONS(3635), + [anon_sym_UR_DQUOTE] = ACTIONS(3635), + [anon_sym_u8R_DQUOTE] = ACTIONS(3635), + [anon_sym_co_await] = ACTIONS(3637), + [anon_sym_new] = ACTIONS(3639), + [anon_sym_requires] = ACTIONS(3641), + [sym_this] = ACTIONS(229), }, - [1293] = { - [sym_expression] = STATE(2934), - [sym__string] = STATE(2950), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(2950), - [sym_concatenated_string] = STATE(2950), - [sym_string_literal] = STATE(2034), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(2034), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), - [sym_identifier] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(4555), - [anon_sym_BANG] = ACTIONS(1994), - [anon_sym_TILDE] = ACTIONS(1994), - [anon_sym_DASH] = ACTIONS(1992), - [anon_sym_PLUS] = ACTIONS(1992), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(1996), - [anon_sym_COLON_COLON] = ACTIONS(1998), + [1343] = { + [sym_expression] = STATE(3226), + [sym__string] = STATE(3393), + [sym_conditional_expression] = STATE(3401), + [sym_assignment_expression] = STATE(3401), + [sym_pointer_expression] = STATE(3405), + [sym_unary_expression] = STATE(3401), + [sym_binary_expression] = STATE(3401), + [sym_update_expression] = STATE(3401), + [sym_cast_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3401), + [sym_alignof_expression] = STATE(3401), + [sym_offsetof_expression] = STATE(3401), + [sym_generic_expression] = STATE(3401), + [sym_subscript_expression] = STATE(3405), + [sym_call_expression] = STATE(3405), + [sym_gnu_asm_expression] = STATE(3401), + [sym_extension_expression] = STATE(3401), + [sym_field_expression] = STATE(3405), + [sym_compound_literal_expression] = STATE(3401), + [sym_parenthesized_expression] = STATE(3405), + [sym_char_literal] = STATE(3393), + [sym_concatenated_string] = STATE(3393), + [sym_string_literal] = STATE(2380), + [sym_null] = STATE(3401), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7745), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3401), + [sym_raw_string_literal] = STATE(2380), + [sym_co_await_expression] = STATE(3401), + [sym_new_expression] = STATE(3401), + [sym_delete_expression] = STATE(3401), + [sym_requires_clause] = STATE(3401), + [sym_requires_expression] = STATE(3401), + [sym_lambda_expression] = STATE(3401), + [sym_lambda_capture_specifier] = STATE(5494), + [sym_fold_expression] = STATE(3401), + [sym_parameter_pack_expansion] = STATE(3401), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3405), + [sym_qualified_type_identifier] = STATE(7745), + [sym_user_defined_literal] = STATE(3405), + [sym_identifier] = ACTIONS(2453), + [anon_sym_LPAREN2] = ACTIONS(2018), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(2455), + [anon_sym_COLON_COLON] = ACTIONS(1804), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(1956), - [anon_sym_not] = ACTIONS(1992), - [anon_sym_compl] = ACTIONS(1992), - [anon_sym_DASH_DASH] = ACTIONS(3343), - [anon_sym_PLUS_PLUS] = ACTIONS(3343), - [anon_sym_sizeof] = ACTIONS(2000), - [anon_sym___alignof__] = ACTIONS(1960), - [anon_sym___alignof] = ACTIONS(1960), - [anon_sym__alignof] = ACTIONS(1960), - [anon_sym_alignof] = ACTIONS(1960), - [anon_sym__Alignof] = ACTIONS(1960), - [anon_sym_offsetof] = ACTIONS(1962), - [anon_sym__Generic] = ACTIONS(1964), - [anon_sym_asm] = ACTIONS(1966), - [anon_sym___asm__] = ACTIONS(1966), - [anon_sym___asm] = ACTIONS(1966), - [sym_number_literal] = ACTIONS(2002), - [anon_sym_L_SQUOTE] = ACTIONS(2004), - [anon_sym_u_SQUOTE] = ACTIONS(2004), - [anon_sym_U_SQUOTE] = ACTIONS(2004), - [anon_sym_u8_SQUOTE] = ACTIONS(2004), - [anon_sym_SQUOTE] = ACTIONS(2004), - [anon_sym_L_DQUOTE] = ACTIONS(2006), - [anon_sym_u_DQUOTE] = ACTIONS(2006), - [anon_sym_U_DQUOTE] = ACTIONS(2006), - [anon_sym_u8_DQUOTE] = ACTIONS(2006), - [anon_sym_DQUOTE] = ACTIONS(2006), - [sym_true] = ACTIONS(1974), - [sym_false] = ACTIONS(1974), - [anon_sym_NULL] = ACTIONS(1976), - [anon_sym_nullptr] = ACTIONS(1976), + [sym_primitive_type] = ACTIONS(2459), + [anon_sym_not] = ACTIONS(1796), + [anon_sym_compl] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_sizeof] = ACTIONS(1824), + [anon_sym___alignof__] = ACTIONS(1826), + [anon_sym___alignof] = ACTIONS(1826), + [anon_sym__alignof] = ACTIONS(1826), + [anon_sym_alignof] = ACTIONS(1826), + [anon_sym__Alignof] = ACTIONS(1826), + [anon_sym_offsetof] = ACTIONS(1828), + [anon_sym__Generic] = ACTIONS(1830), + [anon_sym_asm] = ACTIONS(1832), + [anon_sym___asm__] = ACTIONS(1832), + [anon_sym___asm] = ACTIONS(1832), + [sym_number_literal] = ACTIONS(1834), + [anon_sym_L_SQUOTE] = ACTIONS(1836), + [anon_sym_u_SQUOTE] = ACTIONS(1836), + [anon_sym_U_SQUOTE] = ACTIONS(1836), + [anon_sym_u8_SQUOTE] = ACTIONS(1836), + [anon_sym_SQUOTE] = ACTIONS(1836), + [anon_sym_L_DQUOTE] = ACTIONS(1838), + [anon_sym_u_DQUOTE] = ACTIONS(1838), + [anon_sym_U_DQUOTE] = ACTIONS(1838), + [anon_sym_u8_DQUOTE] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym_true] = ACTIONS(1840), + [sym_false] = ACTIONS(1840), + [anon_sym_NULL] = ACTIONS(1842), + [anon_sym_nullptr] = ACTIONS(1842), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(2008), - [anon_sym_R_DQUOTE] = ACTIONS(2010), - [anon_sym_LR_DQUOTE] = ACTIONS(2010), - [anon_sym_uR_DQUOTE] = ACTIONS(2010), - [anon_sym_UR_DQUOTE] = ACTIONS(2010), - [anon_sym_u8R_DQUOTE] = ACTIONS(2010), - [anon_sym_co_await] = ACTIONS(2012), - [anon_sym_new] = ACTIONS(2014), - [anon_sym_requires] = ACTIONS(1988), - [sym_this] = ACTIONS(1974), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1852), + [anon_sym_R_DQUOTE] = ACTIONS(1854), + [anon_sym_LR_DQUOTE] = ACTIONS(1854), + [anon_sym_uR_DQUOTE] = ACTIONS(1854), + [anon_sym_UR_DQUOTE] = ACTIONS(1854), + [anon_sym_u8R_DQUOTE] = ACTIONS(1854), + [anon_sym_co_await] = ACTIONS(1856), + [anon_sym_new] = ACTIONS(1858), + [anon_sym_requires] = ACTIONS(1860), + [sym_this] = ACTIONS(1840), }, - [1294] = { - [sym_expression] = STATE(2968), - [sym__string] = STATE(2950), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(2950), - [sym_concatenated_string] = STATE(2950), - [sym_string_literal] = STATE(2034), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(2034), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), + [1344] = { + [sym_expression] = STATE(2932), + [sym__string] = STATE(2917), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(2917), + [sym_concatenated_string] = STATE(2917), + [sym_string_literal] = STATE(2114), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(2114), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), [sym_identifier] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(4555), + [anon_sym_LPAREN2] = ACTIONS(4565), [anon_sym_BANG] = ACTIONS(1994), [anon_sym_TILDE] = ACTIONS(1994), [anon_sym_DASH] = ACTIONS(1992), [anon_sym_PLUS] = ACTIONS(1992), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), [anon_sym___extension__] = ACTIONS(1996), [anon_sym_COLON_COLON] = ACTIONS(1998), [anon_sym_LBRACK] = ACTIONS(2020), [sym_primitive_type] = ACTIONS(1956), [anon_sym_not] = ACTIONS(1992), [anon_sym_compl] = ACTIONS(1992), - [anon_sym_DASH_DASH] = ACTIONS(3343), - [anon_sym_PLUS_PLUS] = ACTIONS(3343), + [anon_sym_DASH_DASH] = ACTIONS(3355), + [anon_sym_PLUS_PLUS] = ACTIONS(3355), [anon_sym_sizeof] = ACTIONS(2000), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), @@ -208976,7 +214977,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1976), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(2008), [anon_sym_R_DQUOTE] = ACTIONS(2010), [anon_sym_LR_DQUOTE] = ACTIONS(2010), @@ -208988,167 +214989,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [1295] = { - [sym_expression] = STATE(3166), - [sym__string] = STATE(3235), - [sym_conditional_expression] = STATE(3373), - [sym_assignment_expression] = STATE(3373), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3373), - [sym_binary_expression] = STATE(3373), - [sym_update_expression] = STATE(3373), - [sym_cast_expression] = STATE(3373), - [sym_sizeof_expression] = STATE(3373), - [sym_alignof_expression] = STATE(3373), - [sym_offsetof_expression] = STATE(3373), - [sym_generic_expression] = STATE(3373), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3373), - [sym_extension_expression] = STATE(3373), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3373), - [sym_parenthesized_expression] = STATE(3365), - [sym_char_literal] = STATE(3235), - [sym_concatenated_string] = STATE(3235), - [sym_string_literal] = STATE(2358), - [sym_null] = STATE(3373), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7814), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3373), - [sym_raw_string_literal] = STATE(2358), - [sym_co_await_expression] = STATE(3373), - [sym_new_expression] = STATE(3373), - [sym_delete_expression] = STATE(3373), - [sym_requires_clause] = STATE(3373), - [sym_requires_expression] = STATE(3373), - [sym_lambda_expression] = STATE(3373), - [sym_lambda_capture_specifier] = STATE(5414), - [sym_fold_expression] = STATE(3373), - [sym_parameter_pack_expansion] = STATE(3373), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3365), - [sym_qualified_type_identifier] = STATE(7814), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2453), - [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(2455), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), - }, - [1296] = { - [sym_expression] = STATE(4643), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), - [anon_sym_COLON_COLON] = ACTIONS(47), + [1345] = { + [sym_expression] = STATE(4366), + [sym__string] = STATE(4455), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3366), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3366), + [sym_call_expression] = STATE(3366), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3366), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3366), + [sym_char_literal] = STATE(4455), + [sym_concatenated_string] = STATE(4455), + [sym_string_literal] = STATE(3406), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3406), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3366), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3366), + [sym_identifier] = ACTIONS(3833), + [anon_sym_LPAREN2] = ACTIONS(4557), + [anon_sym_BANG] = ACTIONS(3837), + [anon_sym_TILDE] = ACTIONS(3837), + [anon_sym_DASH] = ACTIONS(3835), + [anon_sym_PLUS] = ACTIONS(3835), + [anon_sym_STAR] = ACTIONS(4336), + [anon_sym_AMP] = ACTIONS(4336), + [anon_sym___extension__] = ACTIONS(3839), + [anon_sym_COLON_COLON] = ACTIONS(3841), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3835), + [anon_sym_compl] = ACTIONS(3835), + [anon_sym_DASH_DASH] = ACTIONS(4338), + [anon_sym_PLUS_PLUS] = ACTIONS(4338), + [anon_sym_sizeof] = ACTIONS(3843), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -209159,1296 +215060,1296 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(113), [anon_sym___asm__] = ACTIONS(113), [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), + [sym_number_literal] = ACTIONS(3845), + [anon_sym_L_SQUOTE] = ACTIONS(3847), + [anon_sym_u_SQUOTE] = ACTIONS(3847), + [anon_sym_U_SQUOTE] = ACTIONS(3847), + [anon_sym_u8_SQUOTE] = ACTIONS(3847), + [anon_sym_SQUOTE] = ACTIONS(3847), + [anon_sym_L_DQUOTE] = ACTIONS(3849), + [anon_sym_u_DQUOTE] = ACTIONS(3849), + [anon_sym_U_DQUOTE] = ACTIONS(3849), + [anon_sym_u8_DQUOTE] = ACTIONS(3849), + [anon_sym_DQUOTE] = ACTIONS(3849), [sym_true] = ACTIONS(229), [sym_false] = ACTIONS(229), [anon_sym_NULL] = ACTIONS(123), [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3851), + [anon_sym_R_DQUOTE] = ACTIONS(3853), + [anon_sym_LR_DQUOTE] = ACTIONS(3853), + [anon_sym_uR_DQUOTE] = ACTIONS(3853), + [anon_sym_UR_DQUOTE] = ACTIONS(3853), + [anon_sym_u8R_DQUOTE] = ACTIONS(3853), + [anon_sym_co_await] = ACTIONS(3855), [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1297] = { - [sym_expression] = STATE(4551), - [sym__string] = STATE(4738), - [sym_conditional_expression] = STATE(4829), - [sym_assignment_expression] = STATE(4829), - [sym_pointer_expression] = STATE(3602), - [sym_unary_expression] = STATE(4829), - [sym_binary_expression] = STATE(4829), - [sym_update_expression] = STATE(4829), - [sym_cast_expression] = STATE(4829), - [sym_sizeof_expression] = STATE(4829), - [sym_alignof_expression] = STATE(4829), - [sym_offsetof_expression] = STATE(4829), - [sym_generic_expression] = STATE(4829), - [sym_subscript_expression] = STATE(3602), - [sym_call_expression] = STATE(3602), - [sym_gnu_asm_expression] = STATE(4829), - [sym_extension_expression] = STATE(4829), - [sym_field_expression] = STATE(3602), - [sym_compound_literal_expression] = STATE(4829), - [sym_parenthesized_expression] = STATE(3602), - [sym_char_literal] = STATE(4738), - [sym_concatenated_string] = STATE(4738), - [sym_string_literal] = STATE(3759), - [sym_null] = STATE(4829), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7804), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(4829), - [sym_raw_string_literal] = STATE(3759), - [sym_co_await_expression] = STATE(4829), - [sym_new_expression] = STATE(4829), - [sym_delete_expression] = STATE(4829), - [sym_requires_clause] = STATE(4829), - [sym_requires_expression] = STATE(4829), - [sym_lambda_expression] = STATE(4829), - [sym_lambda_capture_specifier] = STATE(5401), - [sym_fold_expression] = STATE(4829), - [sym_parameter_pack_expansion] = STATE(4829), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5773), - [sym_qualified_identifier] = STATE(3602), - [sym_qualified_type_identifier] = STATE(7804), - [sym_user_defined_literal] = STATE(3602), - [sym_identifier] = ACTIONS(3883), - [anon_sym_LPAREN2] = ACTIONS(3118), - [anon_sym_BANG] = ACTIONS(3120), - [anon_sym_TILDE] = ACTIONS(3120), - [anon_sym_DASH] = ACTIONS(3122), - [anon_sym_PLUS] = ACTIONS(3122), - [anon_sym_STAR] = ACTIONS(3124), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym___extension__] = ACTIONS(3885), - [anon_sym_COLON_COLON] = ACTIONS(3128), + [1346] = { + [sym_expression] = STATE(4601), + [sym__string] = STATE(4825), + [sym_conditional_expression] = STATE(4856), + [sym_assignment_expression] = STATE(4856), + [sym_pointer_expression] = STATE(3701), + [sym_unary_expression] = STATE(4856), + [sym_binary_expression] = STATE(4856), + [sym_update_expression] = STATE(4856), + [sym_cast_expression] = STATE(4856), + [sym_sizeof_expression] = STATE(4856), + [sym_alignof_expression] = STATE(4856), + [sym_offsetof_expression] = STATE(4856), + [sym_generic_expression] = STATE(4856), + [sym_subscript_expression] = STATE(3701), + [sym_call_expression] = STATE(3701), + [sym_gnu_asm_expression] = STATE(4856), + [sym_extension_expression] = STATE(4856), + [sym_field_expression] = STATE(3701), + [sym_compound_literal_expression] = STATE(4856), + [sym_parenthesized_expression] = STATE(3701), + [sym_char_literal] = STATE(4825), + [sym_concatenated_string] = STATE(4825), + [sym_string_literal] = STATE(3812), + [sym_null] = STATE(4856), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7816), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(4856), + [sym_raw_string_literal] = STATE(3812), + [sym_co_await_expression] = STATE(4856), + [sym_new_expression] = STATE(4856), + [sym_delete_expression] = STATE(4856), + [sym_requires_clause] = STATE(4856), + [sym_requires_expression] = STATE(4856), + [sym_lambda_expression] = STATE(4856), + [sym_lambda_capture_specifier] = STATE(5489), + [sym_fold_expression] = STATE(4856), + [sym_parameter_pack_expansion] = STATE(4856), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5769), + [sym_qualified_identifier] = STATE(3701), + [sym_qualified_type_identifier] = STATE(7816), + [sym_user_defined_literal] = STATE(3701), + [sym_identifier] = ACTIONS(3875), + [anon_sym_LPAREN2] = ACTIONS(3130), + [anon_sym_BANG] = ACTIONS(3132), + [anon_sym_TILDE] = ACTIONS(3132), + [anon_sym_DASH] = ACTIONS(3134), + [anon_sym_PLUS] = ACTIONS(3134), + [anon_sym_STAR] = ACTIONS(3136), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym___extension__] = ACTIONS(3877), + [anon_sym_COLON_COLON] = ACTIONS(3140), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(3889), - [anon_sym_not] = ACTIONS(3122), - [anon_sym_compl] = ACTIONS(3122), - [anon_sym_DASH_DASH] = ACTIONS(3142), - [anon_sym_PLUS_PLUS] = ACTIONS(3142), - [anon_sym_sizeof] = ACTIONS(3144), - [anon_sym___alignof__] = ACTIONS(3146), - [anon_sym___alignof] = ACTIONS(3146), - [anon_sym__alignof] = ACTIONS(3146), - [anon_sym_alignof] = ACTIONS(3146), - [anon_sym__Alignof] = ACTIONS(3146), - [anon_sym_offsetof] = ACTIONS(3148), - [anon_sym__Generic] = ACTIONS(3150), - [anon_sym_asm] = ACTIONS(3152), - [anon_sym___asm__] = ACTIONS(3152), - [anon_sym___asm] = ACTIONS(3152), - [sym_number_literal] = ACTIONS(3154), - [anon_sym_L_SQUOTE] = ACTIONS(3156), - [anon_sym_u_SQUOTE] = ACTIONS(3156), - [anon_sym_U_SQUOTE] = ACTIONS(3156), - [anon_sym_u8_SQUOTE] = ACTIONS(3156), - [anon_sym_SQUOTE] = ACTIONS(3156), - [anon_sym_L_DQUOTE] = ACTIONS(3158), - [anon_sym_u_DQUOTE] = ACTIONS(3158), - [anon_sym_U_DQUOTE] = ACTIONS(3158), - [anon_sym_u8_DQUOTE] = ACTIONS(3158), - [anon_sym_DQUOTE] = ACTIONS(3158), - [sym_true] = ACTIONS(3160), - [sym_false] = ACTIONS(3160), - [anon_sym_NULL] = ACTIONS(3162), - [anon_sym_nullptr] = ACTIONS(3162), + [sym_primitive_type] = ACTIONS(3881), + [anon_sym_not] = ACTIONS(3134), + [anon_sym_compl] = ACTIONS(3134), + [anon_sym_DASH_DASH] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_sizeof] = ACTIONS(3156), + [anon_sym___alignof__] = ACTIONS(3158), + [anon_sym___alignof] = ACTIONS(3158), + [anon_sym__alignof] = ACTIONS(3158), + [anon_sym_alignof] = ACTIONS(3158), + [anon_sym__Alignof] = ACTIONS(3158), + [anon_sym_offsetof] = ACTIONS(3160), + [anon_sym__Generic] = ACTIONS(3162), + [anon_sym_asm] = ACTIONS(3164), + [anon_sym___asm__] = ACTIONS(3164), + [anon_sym___asm] = ACTIONS(3164), + [sym_number_literal] = ACTIONS(3166), + [anon_sym_L_SQUOTE] = ACTIONS(3168), + [anon_sym_u_SQUOTE] = ACTIONS(3168), + [anon_sym_U_SQUOTE] = ACTIONS(3168), + [anon_sym_u8_SQUOTE] = ACTIONS(3168), + [anon_sym_SQUOTE] = ACTIONS(3168), + [anon_sym_L_DQUOTE] = ACTIONS(3170), + [anon_sym_u_DQUOTE] = ACTIONS(3170), + [anon_sym_U_DQUOTE] = ACTIONS(3170), + [anon_sym_u8_DQUOTE] = ACTIONS(3170), + [anon_sym_DQUOTE] = ACTIONS(3170), + [sym_true] = ACTIONS(3172), + [sym_false] = ACTIONS(3172), + [anon_sym_NULL] = ACTIONS(3174), + [anon_sym_nullptr] = ACTIONS(3174), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3172), - [anon_sym_R_DQUOTE] = ACTIONS(3174), - [anon_sym_LR_DQUOTE] = ACTIONS(3174), - [anon_sym_uR_DQUOTE] = ACTIONS(3174), - [anon_sym_UR_DQUOTE] = ACTIONS(3174), - [anon_sym_u8R_DQUOTE] = ACTIONS(3174), - [anon_sym_co_await] = ACTIONS(3176), - [anon_sym_new] = ACTIONS(3178), - [anon_sym_requires] = ACTIONS(3180), - [sym_this] = ACTIONS(3160), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3184), + [anon_sym_R_DQUOTE] = ACTIONS(3186), + [anon_sym_LR_DQUOTE] = ACTIONS(3186), + [anon_sym_uR_DQUOTE] = ACTIONS(3186), + [anon_sym_UR_DQUOTE] = ACTIONS(3186), + [anon_sym_u8R_DQUOTE] = ACTIONS(3186), + [anon_sym_co_await] = ACTIONS(3188), + [anon_sym_new] = ACTIONS(3190), + [anon_sym_requires] = ACTIONS(3192), + [sym_this] = ACTIONS(3172), }, - [1298] = { - [sym_expression] = STATE(4574), - [sym__string] = STATE(4738), - [sym_conditional_expression] = STATE(4829), - [sym_assignment_expression] = STATE(4829), - [sym_pointer_expression] = STATE(3602), - [sym_unary_expression] = STATE(4829), - [sym_binary_expression] = STATE(4829), - [sym_update_expression] = STATE(4829), - [sym_cast_expression] = STATE(4829), - [sym_sizeof_expression] = STATE(4829), - [sym_alignof_expression] = STATE(4829), - [sym_offsetof_expression] = STATE(4829), - [sym_generic_expression] = STATE(4829), - [sym_subscript_expression] = STATE(3602), - [sym_call_expression] = STATE(3602), - [sym_gnu_asm_expression] = STATE(4829), - [sym_extension_expression] = STATE(4829), - [sym_field_expression] = STATE(3602), - [sym_compound_literal_expression] = STATE(4829), - [sym_parenthesized_expression] = STATE(3602), - [sym_char_literal] = STATE(4738), - [sym_concatenated_string] = STATE(4738), - [sym_string_literal] = STATE(3759), - [sym_null] = STATE(4829), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7804), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(4829), - [sym_raw_string_literal] = STATE(3759), - [sym_co_await_expression] = STATE(4829), - [sym_new_expression] = STATE(4829), - [sym_delete_expression] = STATE(4829), - [sym_requires_clause] = STATE(4829), - [sym_requires_expression] = STATE(4829), - [sym_lambda_expression] = STATE(4829), - [sym_lambda_capture_specifier] = STATE(5401), - [sym_fold_expression] = STATE(4829), - [sym_parameter_pack_expansion] = STATE(4829), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5773), - [sym_qualified_identifier] = STATE(3602), - [sym_qualified_type_identifier] = STATE(7804), - [sym_user_defined_literal] = STATE(3602), - [sym_identifier] = ACTIONS(3883), - [anon_sym_LPAREN2] = ACTIONS(3118), - [anon_sym_BANG] = ACTIONS(3120), - [anon_sym_TILDE] = ACTIONS(3120), - [anon_sym_DASH] = ACTIONS(3122), - [anon_sym_PLUS] = ACTIONS(3122), - [anon_sym_STAR] = ACTIONS(3124), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym___extension__] = ACTIONS(3885), - [anon_sym_COLON_COLON] = ACTIONS(3128), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(3889), - [anon_sym_not] = ACTIONS(3122), - [anon_sym_compl] = ACTIONS(3122), - [anon_sym_DASH_DASH] = ACTIONS(3142), - [anon_sym_PLUS_PLUS] = ACTIONS(3142), - [anon_sym_sizeof] = ACTIONS(3144), - [anon_sym___alignof__] = ACTIONS(3146), - [anon_sym___alignof] = ACTIONS(3146), - [anon_sym__alignof] = ACTIONS(3146), - [anon_sym_alignof] = ACTIONS(3146), - [anon_sym__Alignof] = ACTIONS(3146), - [anon_sym_offsetof] = ACTIONS(3148), - [anon_sym__Generic] = ACTIONS(3150), - [anon_sym_asm] = ACTIONS(3152), - [anon_sym___asm__] = ACTIONS(3152), - [anon_sym___asm] = ACTIONS(3152), - [sym_number_literal] = ACTIONS(3154), - [anon_sym_L_SQUOTE] = ACTIONS(3156), - [anon_sym_u_SQUOTE] = ACTIONS(3156), - [anon_sym_U_SQUOTE] = ACTIONS(3156), - [anon_sym_u8_SQUOTE] = ACTIONS(3156), - [anon_sym_SQUOTE] = ACTIONS(3156), - [anon_sym_L_DQUOTE] = ACTIONS(3158), - [anon_sym_u_DQUOTE] = ACTIONS(3158), - [anon_sym_U_DQUOTE] = ACTIONS(3158), - [anon_sym_u8_DQUOTE] = ACTIONS(3158), - [anon_sym_DQUOTE] = ACTIONS(3158), - [sym_true] = ACTIONS(3160), - [sym_false] = ACTIONS(3160), - [anon_sym_NULL] = ACTIONS(3162), - [anon_sym_nullptr] = ACTIONS(3162), + [1347] = { + [sym_expression] = STATE(3163), + [sym__string] = STATE(3393), + [sym_conditional_expression] = STATE(3401), + [sym_assignment_expression] = STATE(3401), + [sym_pointer_expression] = STATE(3405), + [sym_unary_expression] = STATE(3401), + [sym_binary_expression] = STATE(3401), + [sym_update_expression] = STATE(3401), + [sym_cast_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3401), + [sym_alignof_expression] = STATE(3401), + [sym_offsetof_expression] = STATE(3401), + [sym_generic_expression] = STATE(3401), + [sym_subscript_expression] = STATE(3405), + [sym_call_expression] = STATE(3405), + [sym_gnu_asm_expression] = STATE(3401), + [sym_extension_expression] = STATE(3401), + [sym_field_expression] = STATE(3405), + [sym_compound_literal_expression] = STATE(3401), + [sym_parenthesized_expression] = STATE(3405), + [sym_char_literal] = STATE(3393), + [sym_concatenated_string] = STATE(3393), + [sym_string_literal] = STATE(2380), + [sym_null] = STATE(3401), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7745), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3401), + [sym_raw_string_literal] = STATE(2380), + [sym_co_await_expression] = STATE(3401), + [sym_new_expression] = STATE(3401), + [sym_delete_expression] = STATE(3401), + [sym_requires_clause] = STATE(3401), + [sym_requires_expression] = STATE(3401), + [sym_lambda_expression] = STATE(3401), + [sym_lambda_capture_specifier] = STATE(5494), + [sym_fold_expression] = STATE(3401), + [sym_parameter_pack_expansion] = STATE(3401), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3405), + [sym_qualified_type_identifier] = STATE(7745), + [sym_user_defined_literal] = STATE(3405), + [sym_identifier] = ACTIONS(2453), + [anon_sym_LPAREN2] = ACTIONS(2018), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(2455), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_LBRACK] = ACTIONS(4948), + [sym_primitive_type] = ACTIONS(2459), + [anon_sym_not] = ACTIONS(1796), + [anon_sym_compl] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_sizeof] = ACTIONS(1824), + [anon_sym___alignof__] = ACTIONS(1826), + [anon_sym___alignof] = ACTIONS(1826), + [anon_sym__alignof] = ACTIONS(1826), + [anon_sym_alignof] = ACTIONS(1826), + [anon_sym__Alignof] = ACTIONS(1826), + [anon_sym_offsetof] = ACTIONS(1828), + [anon_sym__Generic] = ACTIONS(1830), + [anon_sym_asm] = ACTIONS(1832), + [anon_sym___asm__] = ACTIONS(1832), + [anon_sym___asm] = ACTIONS(1832), + [sym_number_literal] = ACTIONS(1834), + [anon_sym_L_SQUOTE] = ACTIONS(1836), + [anon_sym_u_SQUOTE] = ACTIONS(1836), + [anon_sym_U_SQUOTE] = ACTIONS(1836), + [anon_sym_u8_SQUOTE] = ACTIONS(1836), + [anon_sym_SQUOTE] = ACTIONS(1836), + [anon_sym_L_DQUOTE] = ACTIONS(1838), + [anon_sym_u_DQUOTE] = ACTIONS(1838), + [anon_sym_U_DQUOTE] = ACTIONS(1838), + [anon_sym_u8_DQUOTE] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym_true] = ACTIONS(1840), + [sym_false] = ACTIONS(1840), + [anon_sym_NULL] = ACTIONS(1842), + [anon_sym_nullptr] = ACTIONS(1842), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3172), - [anon_sym_R_DQUOTE] = ACTIONS(3174), - [anon_sym_LR_DQUOTE] = ACTIONS(3174), - [anon_sym_uR_DQUOTE] = ACTIONS(3174), - [anon_sym_UR_DQUOTE] = ACTIONS(3174), - [anon_sym_u8R_DQUOTE] = ACTIONS(3174), - [anon_sym_co_await] = ACTIONS(3176), - [anon_sym_new] = ACTIONS(3178), - [anon_sym_requires] = ACTIONS(3180), - [sym_this] = ACTIONS(3160), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1852), + [anon_sym_R_DQUOTE] = ACTIONS(1854), + [anon_sym_LR_DQUOTE] = ACTIONS(1854), + [anon_sym_uR_DQUOTE] = ACTIONS(1854), + [anon_sym_UR_DQUOTE] = ACTIONS(1854), + [anon_sym_u8R_DQUOTE] = ACTIONS(1854), + [anon_sym_co_await] = ACTIONS(1856), + [anon_sym_new] = ACTIONS(1858), + [anon_sym_requires] = ACTIONS(1860), + [sym_this] = ACTIONS(1840), }, - [1299] = { - [sym_expression] = STATE(4576), - [sym__string] = STATE(4738), - [sym_conditional_expression] = STATE(4829), - [sym_assignment_expression] = STATE(4829), - [sym_pointer_expression] = STATE(3602), - [sym_unary_expression] = STATE(4829), - [sym_binary_expression] = STATE(4829), - [sym_update_expression] = STATE(4829), - [sym_cast_expression] = STATE(4829), - [sym_sizeof_expression] = STATE(4829), - [sym_alignof_expression] = STATE(4829), - [sym_offsetof_expression] = STATE(4829), - [sym_generic_expression] = STATE(4829), - [sym_subscript_expression] = STATE(3602), - [sym_call_expression] = STATE(3602), - [sym_gnu_asm_expression] = STATE(4829), - [sym_extension_expression] = STATE(4829), - [sym_field_expression] = STATE(3602), - [sym_compound_literal_expression] = STATE(4829), - [sym_parenthesized_expression] = STATE(3602), - [sym_char_literal] = STATE(4738), - [sym_concatenated_string] = STATE(4738), - [sym_string_literal] = STATE(3759), - [sym_null] = STATE(4829), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7804), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(4829), - [sym_raw_string_literal] = STATE(3759), - [sym_co_await_expression] = STATE(4829), - [sym_new_expression] = STATE(4829), - [sym_delete_expression] = STATE(4829), - [sym_requires_clause] = STATE(4829), - [sym_requires_expression] = STATE(4829), - [sym_lambda_expression] = STATE(4829), - [sym_lambda_capture_specifier] = STATE(5401), - [sym_fold_expression] = STATE(4829), - [sym_parameter_pack_expansion] = STATE(4829), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5773), - [sym_qualified_identifier] = STATE(3602), - [sym_qualified_type_identifier] = STATE(7804), - [sym_user_defined_literal] = STATE(3602), - [sym_identifier] = ACTIONS(3883), - [anon_sym_LPAREN2] = ACTIONS(3118), - [anon_sym_BANG] = ACTIONS(3120), - [anon_sym_TILDE] = ACTIONS(3120), - [anon_sym_DASH] = ACTIONS(3122), - [anon_sym_PLUS] = ACTIONS(3122), - [anon_sym_STAR] = ACTIONS(3124), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym___extension__] = ACTIONS(3885), - [anon_sym_COLON_COLON] = ACTIONS(3128), + [1348] = { + [sym_expression] = STATE(4608), + [sym__string] = STATE(4825), + [sym_conditional_expression] = STATE(4856), + [sym_assignment_expression] = STATE(4856), + [sym_pointer_expression] = STATE(3701), + [sym_unary_expression] = STATE(4856), + [sym_binary_expression] = STATE(4856), + [sym_update_expression] = STATE(4856), + [sym_cast_expression] = STATE(4856), + [sym_sizeof_expression] = STATE(4856), + [sym_alignof_expression] = STATE(4856), + [sym_offsetof_expression] = STATE(4856), + [sym_generic_expression] = STATE(4856), + [sym_subscript_expression] = STATE(3701), + [sym_call_expression] = STATE(3701), + [sym_gnu_asm_expression] = STATE(4856), + [sym_extension_expression] = STATE(4856), + [sym_field_expression] = STATE(3701), + [sym_compound_literal_expression] = STATE(4856), + [sym_parenthesized_expression] = STATE(3701), + [sym_char_literal] = STATE(4825), + [sym_concatenated_string] = STATE(4825), + [sym_string_literal] = STATE(3812), + [sym_null] = STATE(4856), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7816), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(4856), + [sym_raw_string_literal] = STATE(3812), + [sym_co_await_expression] = STATE(4856), + [sym_new_expression] = STATE(4856), + [sym_delete_expression] = STATE(4856), + [sym_requires_clause] = STATE(4856), + [sym_requires_expression] = STATE(4856), + [sym_lambda_expression] = STATE(4856), + [sym_lambda_capture_specifier] = STATE(5489), + [sym_fold_expression] = STATE(4856), + [sym_parameter_pack_expansion] = STATE(4856), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5769), + [sym_qualified_identifier] = STATE(3701), + [sym_qualified_type_identifier] = STATE(7816), + [sym_user_defined_literal] = STATE(3701), + [sym_identifier] = ACTIONS(3875), + [anon_sym_LPAREN2] = ACTIONS(3130), + [anon_sym_BANG] = ACTIONS(3132), + [anon_sym_TILDE] = ACTIONS(3132), + [anon_sym_DASH] = ACTIONS(3134), + [anon_sym_PLUS] = ACTIONS(3134), + [anon_sym_STAR] = ACTIONS(3136), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym___extension__] = ACTIONS(3877), + [anon_sym_COLON_COLON] = ACTIONS(3140), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(3889), - [anon_sym_not] = ACTIONS(3122), - [anon_sym_compl] = ACTIONS(3122), - [anon_sym_DASH_DASH] = ACTIONS(3142), - [anon_sym_PLUS_PLUS] = ACTIONS(3142), - [anon_sym_sizeof] = ACTIONS(3144), - [anon_sym___alignof__] = ACTIONS(3146), - [anon_sym___alignof] = ACTIONS(3146), - [anon_sym__alignof] = ACTIONS(3146), - [anon_sym_alignof] = ACTIONS(3146), - [anon_sym__Alignof] = ACTIONS(3146), - [anon_sym_offsetof] = ACTIONS(3148), - [anon_sym__Generic] = ACTIONS(3150), - [anon_sym_asm] = ACTIONS(3152), - [anon_sym___asm__] = ACTIONS(3152), - [anon_sym___asm] = ACTIONS(3152), - [sym_number_literal] = ACTIONS(3154), - [anon_sym_L_SQUOTE] = ACTIONS(3156), - [anon_sym_u_SQUOTE] = ACTIONS(3156), - [anon_sym_U_SQUOTE] = ACTIONS(3156), - [anon_sym_u8_SQUOTE] = ACTIONS(3156), - [anon_sym_SQUOTE] = ACTIONS(3156), - [anon_sym_L_DQUOTE] = ACTIONS(3158), - [anon_sym_u_DQUOTE] = ACTIONS(3158), - [anon_sym_U_DQUOTE] = ACTIONS(3158), - [anon_sym_u8_DQUOTE] = ACTIONS(3158), - [anon_sym_DQUOTE] = ACTIONS(3158), - [sym_true] = ACTIONS(3160), - [sym_false] = ACTIONS(3160), - [anon_sym_NULL] = ACTIONS(3162), - [anon_sym_nullptr] = ACTIONS(3162), + [sym_primitive_type] = ACTIONS(3881), + [anon_sym_not] = ACTIONS(3134), + [anon_sym_compl] = ACTIONS(3134), + [anon_sym_DASH_DASH] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_sizeof] = ACTIONS(3156), + [anon_sym___alignof__] = ACTIONS(3158), + [anon_sym___alignof] = ACTIONS(3158), + [anon_sym__alignof] = ACTIONS(3158), + [anon_sym_alignof] = ACTIONS(3158), + [anon_sym__Alignof] = ACTIONS(3158), + [anon_sym_offsetof] = ACTIONS(3160), + [anon_sym__Generic] = ACTIONS(3162), + [anon_sym_asm] = ACTIONS(3164), + [anon_sym___asm__] = ACTIONS(3164), + [anon_sym___asm] = ACTIONS(3164), + [sym_number_literal] = ACTIONS(3166), + [anon_sym_L_SQUOTE] = ACTIONS(3168), + [anon_sym_u_SQUOTE] = ACTIONS(3168), + [anon_sym_U_SQUOTE] = ACTIONS(3168), + [anon_sym_u8_SQUOTE] = ACTIONS(3168), + [anon_sym_SQUOTE] = ACTIONS(3168), + [anon_sym_L_DQUOTE] = ACTIONS(3170), + [anon_sym_u_DQUOTE] = ACTIONS(3170), + [anon_sym_U_DQUOTE] = ACTIONS(3170), + [anon_sym_u8_DQUOTE] = ACTIONS(3170), + [anon_sym_DQUOTE] = ACTIONS(3170), + [sym_true] = ACTIONS(3172), + [sym_false] = ACTIONS(3172), + [anon_sym_NULL] = ACTIONS(3174), + [anon_sym_nullptr] = ACTIONS(3174), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3172), - [anon_sym_R_DQUOTE] = ACTIONS(3174), - [anon_sym_LR_DQUOTE] = ACTIONS(3174), - [anon_sym_uR_DQUOTE] = ACTIONS(3174), - [anon_sym_UR_DQUOTE] = ACTIONS(3174), - [anon_sym_u8R_DQUOTE] = ACTIONS(3174), - [anon_sym_co_await] = ACTIONS(3176), - [anon_sym_new] = ACTIONS(3178), - [anon_sym_requires] = ACTIONS(3180), - [sym_this] = ACTIONS(3160), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3184), + [anon_sym_R_DQUOTE] = ACTIONS(3186), + [anon_sym_LR_DQUOTE] = ACTIONS(3186), + [anon_sym_uR_DQUOTE] = ACTIONS(3186), + [anon_sym_UR_DQUOTE] = ACTIONS(3186), + [anon_sym_u8R_DQUOTE] = ACTIONS(3186), + [anon_sym_co_await] = ACTIONS(3188), + [anon_sym_new] = ACTIONS(3190), + [anon_sym_requires] = ACTIONS(3192), + [sym_this] = ACTIONS(3172), }, - [1300] = { - [sym_expression] = STATE(4579), - [sym__string] = STATE(4738), - [sym_conditional_expression] = STATE(4829), - [sym_assignment_expression] = STATE(4829), - [sym_pointer_expression] = STATE(3602), - [sym_unary_expression] = STATE(4829), - [sym_binary_expression] = STATE(4829), - [sym_update_expression] = STATE(4829), - [sym_cast_expression] = STATE(4829), - [sym_sizeof_expression] = STATE(4829), - [sym_alignof_expression] = STATE(4829), - [sym_offsetof_expression] = STATE(4829), - [sym_generic_expression] = STATE(4829), - [sym_subscript_expression] = STATE(3602), - [sym_call_expression] = STATE(3602), - [sym_gnu_asm_expression] = STATE(4829), - [sym_extension_expression] = STATE(4829), - [sym_field_expression] = STATE(3602), - [sym_compound_literal_expression] = STATE(4829), - [sym_parenthesized_expression] = STATE(3602), - [sym_char_literal] = STATE(4738), - [sym_concatenated_string] = STATE(4738), - [sym_string_literal] = STATE(3759), - [sym_null] = STATE(4829), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7804), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(4829), - [sym_raw_string_literal] = STATE(3759), - [sym_co_await_expression] = STATE(4829), - [sym_new_expression] = STATE(4829), - [sym_delete_expression] = STATE(4829), - [sym_requires_clause] = STATE(4829), - [sym_requires_expression] = STATE(4829), - [sym_lambda_expression] = STATE(4829), - [sym_lambda_capture_specifier] = STATE(5401), - [sym_fold_expression] = STATE(4829), - [sym_parameter_pack_expansion] = STATE(4829), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5773), - [sym_qualified_identifier] = STATE(3602), - [sym_qualified_type_identifier] = STATE(7804), - [sym_user_defined_literal] = STATE(3602), - [sym_identifier] = ACTIONS(3883), - [anon_sym_LPAREN2] = ACTIONS(3118), - [anon_sym_BANG] = ACTIONS(3120), - [anon_sym_TILDE] = ACTIONS(3120), - [anon_sym_DASH] = ACTIONS(3122), - [anon_sym_PLUS] = ACTIONS(3122), - [anon_sym_STAR] = ACTIONS(3124), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym___extension__] = ACTIONS(3885), - [anon_sym_COLON_COLON] = ACTIONS(3128), + [1349] = { + [sym_expression] = STATE(4612), + [sym__string] = STATE(4825), + [sym_conditional_expression] = STATE(4856), + [sym_assignment_expression] = STATE(4856), + [sym_pointer_expression] = STATE(3701), + [sym_unary_expression] = STATE(4856), + [sym_binary_expression] = STATE(4856), + [sym_update_expression] = STATE(4856), + [sym_cast_expression] = STATE(4856), + [sym_sizeof_expression] = STATE(4856), + [sym_alignof_expression] = STATE(4856), + [sym_offsetof_expression] = STATE(4856), + [sym_generic_expression] = STATE(4856), + [sym_subscript_expression] = STATE(3701), + [sym_call_expression] = STATE(3701), + [sym_gnu_asm_expression] = STATE(4856), + [sym_extension_expression] = STATE(4856), + [sym_field_expression] = STATE(3701), + [sym_compound_literal_expression] = STATE(4856), + [sym_parenthesized_expression] = STATE(3701), + [sym_char_literal] = STATE(4825), + [sym_concatenated_string] = STATE(4825), + [sym_string_literal] = STATE(3812), + [sym_null] = STATE(4856), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7816), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(4856), + [sym_raw_string_literal] = STATE(3812), + [sym_co_await_expression] = STATE(4856), + [sym_new_expression] = STATE(4856), + [sym_delete_expression] = STATE(4856), + [sym_requires_clause] = STATE(4856), + [sym_requires_expression] = STATE(4856), + [sym_lambda_expression] = STATE(4856), + [sym_lambda_capture_specifier] = STATE(5489), + [sym_fold_expression] = STATE(4856), + [sym_parameter_pack_expansion] = STATE(4856), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5769), + [sym_qualified_identifier] = STATE(3701), + [sym_qualified_type_identifier] = STATE(7816), + [sym_user_defined_literal] = STATE(3701), + [sym_identifier] = ACTIONS(3875), + [anon_sym_LPAREN2] = ACTIONS(3130), + [anon_sym_BANG] = ACTIONS(3132), + [anon_sym_TILDE] = ACTIONS(3132), + [anon_sym_DASH] = ACTIONS(3134), + [anon_sym_PLUS] = ACTIONS(3134), + [anon_sym_STAR] = ACTIONS(3136), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym___extension__] = ACTIONS(3877), + [anon_sym_COLON_COLON] = ACTIONS(3140), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(3889), - [anon_sym_not] = ACTIONS(3122), - [anon_sym_compl] = ACTIONS(3122), - [anon_sym_DASH_DASH] = ACTIONS(3142), - [anon_sym_PLUS_PLUS] = ACTIONS(3142), - [anon_sym_sizeof] = ACTIONS(3144), - [anon_sym___alignof__] = ACTIONS(3146), - [anon_sym___alignof] = ACTIONS(3146), - [anon_sym__alignof] = ACTIONS(3146), - [anon_sym_alignof] = ACTIONS(3146), - [anon_sym__Alignof] = ACTIONS(3146), - [anon_sym_offsetof] = ACTIONS(3148), - [anon_sym__Generic] = ACTIONS(3150), - [anon_sym_asm] = ACTIONS(3152), - [anon_sym___asm__] = ACTIONS(3152), - [anon_sym___asm] = ACTIONS(3152), - [sym_number_literal] = ACTIONS(3154), - [anon_sym_L_SQUOTE] = ACTIONS(3156), - [anon_sym_u_SQUOTE] = ACTIONS(3156), - [anon_sym_U_SQUOTE] = ACTIONS(3156), - [anon_sym_u8_SQUOTE] = ACTIONS(3156), - [anon_sym_SQUOTE] = ACTIONS(3156), - [anon_sym_L_DQUOTE] = ACTIONS(3158), - [anon_sym_u_DQUOTE] = ACTIONS(3158), - [anon_sym_U_DQUOTE] = ACTIONS(3158), - [anon_sym_u8_DQUOTE] = ACTIONS(3158), - [anon_sym_DQUOTE] = ACTIONS(3158), - [sym_true] = ACTIONS(3160), - [sym_false] = ACTIONS(3160), - [anon_sym_NULL] = ACTIONS(3162), - [anon_sym_nullptr] = ACTIONS(3162), + [sym_primitive_type] = ACTIONS(3881), + [anon_sym_not] = ACTIONS(3134), + [anon_sym_compl] = ACTIONS(3134), + [anon_sym_DASH_DASH] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_sizeof] = ACTIONS(3156), + [anon_sym___alignof__] = ACTIONS(3158), + [anon_sym___alignof] = ACTIONS(3158), + [anon_sym__alignof] = ACTIONS(3158), + [anon_sym_alignof] = ACTIONS(3158), + [anon_sym__Alignof] = ACTIONS(3158), + [anon_sym_offsetof] = ACTIONS(3160), + [anon_sym__Generic] = ACTIONS(3162), + [anon_sym_asm] = ACTIONS(3164), + [anon_sym___asm__] = ACTIONS(3164), + [anon_sym___asm] = ACTIONS(3164), + [sym_number_literal] = ACTIONS(3166), + [anon_sym_L_SQUOTE] = ACTIONS(3168), + [anon_sym_u_SQUOTE] = ACTIONS(3168), + [anon_sym_U_SQUOTE] = ACTIONS(3168), + [anon_sym_u8_SQUOTE] = ACTIONS(3168), + [anon_sym_SQUOTE] = ACTIONS(3168), + [anon_sym_L_DQUOTE] = ACTIONS(3170), + [anon_sym_u_DQUOTE] = ACTIONS(3170), + [anon_sym_U_DQUOTE] = ACTIONS(3170), + [anon_sym_u8_DQUOTE] = ACTIONS(3170), + [anon_sym_DQUOTE] = ACTIONS(3170), + [sym_true] = ACTIONS(3172), + [sym_false] = ACTIONS(3172), + [anon_sym_NULL] = ACTIONS(3174), + [anon_sym_nullptr] = ACTIONS(3174), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3172), - [anon_sym_R_DQUOTE] = ACTIONS(3174), - [anon_sym_LR_DQUOTE] = ACTIONS(3174), - [anon_sym_uR_DQUOTE] = ACTIONS(3174), - [anon_sym_UR_DQUOTE] = ACTIONS(3174), - [anon_sym_u8R_DQUOTE] = ACTIONS(3174), - [anon_sym_co_await] = ACTIONS(3176), - [anon_sym_new] = ACTIONS(3178), - [anon_sym_requires] = ACTIONS(3180), - [sym_this] = ACTIONS(3160), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3184), + [anon_sym_R_DQUOTE] = ACTIONS(3186), + [anon_sym_LR_DQUOTE] = ACTIONS(3186), + [anon_sym_uR_DQUOTE] = ACTIONS(3186), + [anon_sym_UR_DQUOTE] = ACTIONS(3186), + [anon_sym_u8R_DQUOTE] = ACTIONS(3186), + [anon_sym_co_await] = ACTIONS(3188), + [anon_sym_new] = ACTIONS(3190), + [anon_sym_requires] = ACTIONS(3192), + [sym_this] = ACTIONS(3172), }, - [1301] = { - [sym_expression] = STATE(4580), - [sym__string] = STATE(4738), - [sym_conditional_expression] = STATE(4829), - [sym_assignment_expression] = STATE(4829), - [sym_pointer_expression] = STATE(3602), - [sym_unary_expression] = STATE(4829), - [sym_binary_expression] = STATE(4829), - [sym_update_expression] = STATE(4829), - [sym_cast_expression] = STATE(4829), - [sym_sizeof_expression] = STATE(4829), - [sym_alignof_expression] = STATE(4829), - [sym_offsetof_expression] = STATE(4829), - [sym_generic_expression] = STATE(4829), - [sym_subscript_expression] = STATE(3602), - [sym_call_expression] = STATE(3602), - [sym_gnu_asm_expression] = STATE(4829), - [sym_extension_expression] = STATE(4829), - [sym_field_expression] = STATE(3602), - [sym_compound_literal_expression] = STATE(4829), - [sym_parenthesized_expression] = STATE(3602), - [sym_char_literal] = STATE(4738), - [sym_concatenated_string] = STATE(4738), - [sym_string_literal] = STATE(3759), - [sym_null] = STATE(4829), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7804), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(4829), - [sym_raw_string_literal] = STATE(3759), - [sym_co_await_expression] = STATE(4829), - [sym_new_expression] = STATE(4829), - [sym_delete_expression] = STATE(4829), - [sym_requires_clause] = STATE(4829), - [sym_requires_expression] = STATE(4829), - [sym_lambda_expression] = STATE(4829), - [sym_lambda_capture_specifier] = STATE(5401), - [sym_fold_expression] = STATE(4829), - [sym_parameter_pack_expansion] = STATE(4829), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5773), - [sym_qualified_identifier] = STATE(3602), - [sym_qualified_type_identifier] = STATE(7804), - [sym_user_defined_literal] = STATE(3602), - [sym_identifier] = ACTIONS(3883), - [anon_sym_LPAREN2] = ACTIONS(3118), - [anon_sym_BANG] = ACTIONS(3120), - [anon_sym_TILDE] = ACTIONS(3120), - [anon_sym_DASH] = ACTIONS(3122), - [anon_sym_PLUS] = ACTIONS(3122), - [anon_sym_STAR] = ACTIONS(3124), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym___extension__] = ACTIONS(3885), - [anon_sym_COLON_COLON] = ACTIONS(3128), + [1350] = { + [sym_expression] = STATE(4615), + [sym__string] = STATE(4825), + [sym_conditional_expression] = STATE(4856), + [sym_assignment_expression] = STATE(4856), + [sym_pointer_expression] = STATE(3701), + [sym_unary_expression] = STATE(4856), + [sym_binary_expression] = STATE(4856), + [sym_update_expression] = STATE(4856), + [sym_cast_expression] = STATE(4856), + [sym_sizeof_expression] = STATE(4856), + [sym_alignof_expression] = STATE(4856), + [sym_offsetof_expression] = STATE(4856), + [sym_generic_expression] = STATE(4856), + [sym_subscript_expression] = STATE(3701), + [sym_call_expression] = STATE(3701), + [sym_gnu_asm_expression] = STATE(4856), + [sym_extension_expression] = STATE(4856), + [sym_field_expression] = STATE(3701), + [sym_compound_literal_expression] = STATE(4856), + [sym_parenthesized_expression] = STATE(3701), + [sym_char_literal] = STATE(4825), + [sym_concatenated_string] = STATE(4825), + [sym_string_literal] = STATE(3812), + [sym_null] = STATE(4856), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7816), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(4856), + [sym_raw_string_literal] = STATE(3812), + [sym_co_await_expression] = STATE(4856), + [sym_new_expression] = STATE(4856), + [sym_delete_expression] = STATE(4856), + [sym_requires_clause] = STATE(4856), + [sym_requires_expression] = STATE(4856), + [sym_lambda_expression] = STATE(4856), + [sym_lambda_capture_specifier] = STATE(5489), + [sym_fold_expression] = STATE(4856), + [sym_parameter_pack_expansion] = STATE(4856), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5769), + [sym_qualified_identifier] = STATE(3701), + [sym_qualified_type_identifier] = STATE(7816), + [sym_user_defined_literal] = STATE(3701), + [sym_identifier] = ACTIONS(3875), + [anon_sym_LPAREN2] = ACTIONS(3130), + [anon_sym_BANG] = ACTIONS(3132), + [anon_sym_TILDE] = ACTIONS(3132), + [anon_sym_DASH] = ACTIONS(3134), + [anon_sym_PLUS] = ACTIONS(3134), + [anon_sym_STAR] = ACTIONS(3136), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym___extension__] = ACTIONS(3877), + [anon_sym_COLON_COLON] = ACTIONS(3140), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(3889), - [anon_sym_not] = ACTIONS(3122), - [anon_sym_compl] = ACTIONS(3122), - [anon_sym_DASH_DASH] = ACTIONS(3142), - [anon_sym_PLUS_PLUS] = ACTIONS(3142), - [anon_sym_sizeof] = ACTIONS(3144), - [anon_sym___alignof__] = ACTIONS(3146), - [anon_sym___alignof] = ACTIONS(3146), - [anon_sym__alignof] = ACTIONS(3146), - [anon_sym_alignof] = ACTIONS(3146), - [anon_sym__Alignof] = ACTIONS(3146), - [anon_sym_offsetof] = ACTIONS(3148), - [anon_sym__Generic] = ACTIONS(3150), - [anon_sym_asm] = ACTIONS(3152), - [anon_sym___asm__] = ACTIONS(3152), - [anon_sym___asm] = ACTIONS(3152), - [sym_number_literal] = ACTIONS(3154), - [anon_sym_L_SQUOTE] = ACTIONS(3156), - [anon_sym_u_SQUOTE] = ACTIONS(3156), - [anon_sym_U_SQUOTE] = ACTIONS(3156), - [anon_sym_u8_SQUOTE] = ACTIONS(3156), - [anon_sym_SQUOTE] = ACTIONS(3156), - [anon_sym_L_DQUOTE] = ACTIONS(3158), - [anon_sym_u_DQUOTE] = ACTIONS(3158), - [anon_sym_U_DQUOTE] = ACTIONS(3158), - [anon_sym_u8_DQUOTE] = ACTIONS(3158), - [anon_sym_DQUOTE] = ACTIONS(3158), - [sym_true] = ACTIONS(3160), - [sym_false] = ACTIONS(3160), - [anon_sym_NULL] = ACTIONS(3162), - [anon_sym_nullptr] = ACTIONS(3162), + [sym_primitive_type] = ACTIONS(3881), + [anon_sym_not] = ACTIONS(3134), + [anon_sym_compl] = ACTIONS(3134), + [anon_sym_DASH_DASH] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_sizeof] = ACTIONS(3156), + [anon_sym___alignof__] = ACTIONS(3158), + [anon_sym___alignof] = ACTIONS(3158), + [anon_sym__alignof] = ACTIONS(3158), + [anon_sym_alignof] = ACTIONS(3158), + [anon_sym__Alignof] = ACTIONS(3158), + [anon_sym_offsetof] = ACTIONS(3160), + [anon_sym__Generic] = ACTIONS(3162), + [anon_sym_asm] = ACTIONS(3164), + [anon_sym___asm__] = ACTIONS(3164), + [anon_sym___asm] = ACTIONS(3164), + [sym_number_literal] = ACTIONS(3166), + [anon_sym_L_SQUOTE] = ACTIONS(3168), + [anon_sym_u_SQUOTE] = ACTIONS(3168), + [anon_sym_U_SQUOTE] = ACTIONS(3168), + [anon_sym_u8_SQUOTE] = ACTIONS(3168), + [anon_sym_SQUOTE] = ACTIONS(3168), + [anon_sym_L_DQUOTE] = ACTIONS(3170), + [anon_sym_u_DQUOTE] = ACTIONS(3170), + [anon_sym_U_DQUOTE] = ACTIONS(3170), + [anon_sym_u8_DQUOTE] = ACTIONS(3170), + [anon_sym_DQUOTE] = ACTIONS(3170), + [sym_true] = ACTIONS(3172), + [sym_false] = ACTIONS(3172), + [anon_sym_NULL] = ACTIONS(3174), + [anon_sym_nullptr] = ACTIONS(3174), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3172), - [anon_sym_R_DQUOTE] = ACTIONS(3174), - [anon_sym_LR_DQUOTE] = ACTIONS(3174), - [anon_sym_uR_DQUOTE] = ACTIONS(3174), - [anon_sym_UR_DQUOTE] = ACTIONS(3174), - [anon_sym_u8R_DQUOTE] = ACTIONS(3174), - [anon_sym_co_await] = ACTIONS(3176), - [anon_sym_new] = ACTIONS(3178), - [anon_sym_requires] = ACTIONS(3180), - [sym_this] = ACTIONS(3160), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3184), + [anon_sym_R_DQUOTE] = ACTIONS(3186), + [anon_sym_LR_DQUOTE] = ACTIONS(3186), + [anon_sym_uR_DQUOTE] = ACTIONS(3186), + [anon_sym_UR_DQUOTE] = ACTIONS(3186), + [anon_sym_u8R_DQUOTE] = ACTIONS(3186), + [anon_sym_co_await] = ACTIONS(3188), + [anon_sym_new] = ACTIONS(3190), + [anon_sym_requires] = ACTIONS(3192), + [sym_this] = ACTIONS(3172), }, - [1302] = { - [sym_expression] = STATE(4502), - [sym__string] = STATE(4738), - [sym_conditional_expression] = STATE(4829), - [sym_assignment_expression] = STATE(4829), - [sym_pointer_expression] = STATE(3602), - [sym_unary_expression] = STATE(4829), - [sym_binary_expression] = STATE(4829), - [sym_update_expression] = STATE(4829), - [sym_cast_expression] = STATE(4829), - [sym_sizeof_expression] = STATE(4829), - [sym_alignof_expression] = STATE(4829), - [sym_offsetof_expression] = STATE(4829), - [sym_generic_expression] = STATE(4829), - [sym_subscript_expression] = STATE(3602), - [sym_call_expression] = STATE(3602), - [sym_gnu_asm_expression] = STATE(4829), - [sym_extension_expression] = STATE(4829), - [sym_field_expression] = STATE(3602), - [sym_compound_literal_expression] = STATE(4829), - [sym_parenthesized_expression] = STATE(3602), - [sym_char_literal] = STATE(4738), - [sym_concatenated_string] = STATE(4738), - [sym_string_literal] = STATE(3759), - [sym_null] = STATE(4829), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7804), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(4829), - [sym_raw_string_literal] = STATE(3759), - [sym_co_await_expression] = STATE(4829), - [sym_new_expression] = STATE(4829), - [sym_delete_expression] = STATE(4829), - [sym_requires_clause] = STATE(4829), - [sym_requires_expression] = STATE(4829), - [sym_lambda_expression] = STATE(4829), - [sym_lambda_capture_specifier] = STATE(5401), - [sym_fold_expression] = STATE(4829), - [sym_parameter_pack_expansion] = STATE(4829), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5773), - [sym_qualified_identifier] = STATE(3602), - [sym_qualified_type_identifier] = STATE(7804), - [sym_user_defined_literal] = STATE(3602), - [sym_identifier] = ACTIONS(3883), - [anon_sym_LPAREN2] = ACTIONS(3118), - [anon_sym_BANG] = ACTIONS(3120), - [anon_sym_TILDE] = ACTIONS(3120), - [anon_sym_DASH] = ACTIONS(3122), - [anon_sym_PLUS] = ACTIONS(3122), - [anon_sym_STAR] = ACTIONS(3124), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym___extension__] = ACTIONS(3885), - [anon_sym_COLON_COLON] = ACTIONS(3128), + [1351] = { + [sym_expression] = STATE(4621), + [sym__string] = STATE(4825), + [sym_conditional_expression] = STATE(4856), + [sym_assignment_expression] = STATE(4856), + [sym_pointer_expression] = STATE(3701), + [sym_unary_expression] = STATE(4856), + [sym_binary_expression] = STATE(4856), + [sym_update_expression] = STATE(4856), + [sym_cast_expression] = STATE(4856), + [sym_sizeof_expression] = STATE(4856), + [sym_alignof_expression] = STATE(4856), + [sym_offsetof_expression] = STATE(4856), + [sym_generic_expression] = STATE(4856), + [sym_subscript_expression] = STATE(3701), + [sym_call_expression] = STATE(3701), + [sym_gnu_asm_expression] = STATE(4856), + [sym_extension_expression] = STATE(4856), + [sym_field_expression] = STATE(3701), + [sym_compound_literal_expression] = STATE(4856), + [sym_parenthesized_expression] = STATE(3701), + [sym_char_literal] = STATE(4825), + [sym_concatenated_string] = STATE(4825), + [sym_string_literal] = STATE(3812), + [sym_null] = STATE(4856), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7816), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(4856), + [sym_raw_string_literal] = STATE(3812), + [sym_co_await_expression] = STATE(4856), + [sym_new_expression] = STATE(4856), + [sym_delete_expression] = STATE(4856), + [sym_requires_clause] = STATE(4856), + [sym_requires_expression] = STATE(4856), + [sym_lambda_expression] = STATE(4856), + [sym_lambda_capture_specifier] = STATE(5489), + [sym_fold_expression] = STATE(4856), + [sym_parameter_pack_expansion] = STATE(4856), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5769), + [sym_qualified_identifier] = STATE(3701), + [sym_qualified_type_identifier] = STATE(7816), + [sym_user_defined_literal] = STATE(3701), + [sym_identifier] = ACTIONS(3875), + [anon_sym_LPAREN2] = ACTIONS(3130), + [anon_sym_BANG] = ACTIONS(3132), + [anon_sym_TILDE] = ACTIONS(3132), + [anon_sym_DASH] = ACTIONS(3134), + [anon_sym_PLUS] = ACTIONS(3134), + [anon_sym_STAR] = ACTIONS(3136), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym___extension__] = ACTIONS(3877), + [anon_sym_COLON_COLON] = ACTIONS(3140), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(3889), - [anon_sym_not] = ACTIONS(3122), - [anon_sym_compl] = ACTIONS(3122), - [anon_sym_DASH_DASH] = ACTIONS(3142), - [anon_sym_PLUS_PLUS] = ACTIONS(3142), - [anon_sym_sizeof] = ACTIONS(3144), - [anon_sym___alignof__] = ACTIONS(3146), - [anon_sym___alignof] = ACTIONS(3146), - [anon_sym__alignof] = ACTIONS(3146), - [anon_sym_alignof] = ACTIONS(3146), - [anon_sym__Alignof] = ACTIONS(3146), - [anon_sym_offsetof] = ACTIONS(3148), - [anon_sym__Generic] = ACTIONS(3150), - [anon_sym_asm] = ACTIONS(3152), - [anon_sym___asm__] = ACTIONS(3152), - [anon_sym___asm] = ACTIONS(3152), - [sym_number_literal] = ACTIONS(3154), - [anon_sym_L_SQUOTE] = ACTIONS(3156), - [anon_sym_u_SQUOTE] = ACTIONS(3156), - [anon_sym_U_SQUOTE] = ACTIONS(3156), - [anon_sym_u8_SQUOTE] = ACTIONS(3156), - [anon_sym_SQUOTE] = ACTIONS(3156), - [anon_sym_L_DQUOTE] = ACTIONS(3158), - [anon_sym_u_DQUOTE] = ACTIONS(3158), - [anon_sym_U_DQUOTE] = ACTIONS(3158), - [anon_sym_u8_DQUOTE] = ACTIONS(3158), - [anon_sym_DQUOTE] = ACTIONS(3158), - [sym_true] = ACTIONS(3160), - [sym_false] = ACTIONS(3160), - [anon_sym_NULL] = ACTIONS(3162), - [anon_sym_nullptr] = ACTIONS(3162), + [sym_primitive_type] = ACTIONS(3881), + [anon_sym_not] = ACTIONS(3134), + [anon_sym_compl] = ACTIONS(3134), + [anon_sym_DASH_DASH] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_sizeof] = ACTIONS(3156), + [anon_sym___alignof__] = ACTIONS(3158), + [anon_sym___alignof] = ACTIONS(3158), + [anon_sym__alignof] = ACTIONS(3158), + [anon_sym_alignof] = ACTIONS(3158), + [anon_sym__Alignof] = ACTIONS(3158), + [anon_sym_offsetof] = ACTIONS(3160), + [anon_sym__Generic] = ACTIONS(3162), + [anon_sym_asm] = ACTIONS(3164), + [anon_sym___asm__] = ACTIONS(3164), + [anon_sym___asm] = ACTIONS(3164), + [sym_number_literal] = ACTIONS(3166), + [anon_sym_L_SQUOTE] = ACTIONS(3168), + [anon_sym_u_SQUOTE] = ACTIONS(3168), + [anon_sym_U_SQUOTE] = ACTIONS(3168), + [anon_sym_u8_SQUOTE] = ACTIONS(3168), + [anon_sym_SQUOTE] = ACTIONS(3168), + [anon_sym_L_DQUOTE] = ACTIONS(3170), + [anon_sym_u_DQUOTE] = ACTIONS(3170), + [anon_sym_U_DQUOTE] = ACTIONS(3170), + [anon_sym_u8_DQUOTE] = ACTIONS(3170), + [anon_sym_DQUOTE] = ACTIONS(3170), + [sym_true] = ACTIONS(3172), + [sym_false] = ACTIONS(3172), + [anon_sym_NULL] = ACTIONS(3174), + [anon_sym_nullptr] = ACTIONS(3174), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3172), - [anon_sym_R_DQUOTE] = ACTIONS(3174), - [anon_sym_LR_DQUOTE] = ACTIONS(3174), - [anon_sym_uR_DQUOTE] = ACTIONS(3174), - [anon_sym_UR_DQUOTE] = ACTIONS(3174), - [anon_sym_u8R_DQUOTE] = ACTIONS(3174), - [anon_sym_co_await] = ACTIONS(3176), - [anon_sym_new] = ACTIONS(3178), - [anon_sym_requires] = ACTIONS(3180), - [sym_this] = ACTIONS(3160), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3184), + [anon_sym_R_DQUOTE] = ACTIONS(3186), + [anon_sym_LR_DQUOTE] = ACTIONS(3186), + [anon_sym_uR_DQUOTE] = ACTIONS(3186), + [anon_sym_UR_DQUOTE] = ACTIONS(3186), + [anon_sym_u8R_DQUOTE] = ACTIONS(3186), + [anon_sym_co_await] = ACTIONS(3188), + [anon_sym_new] = ACTIONS(3190), + [anon_sym_requires] = ACTIONS(3192), + [sym_this] = ACTIONS(3172), }, - [1303] = { - [sym_expression] = STATE(4412), - [sym__string] = STATE(4738), - [sym_conditional_expression] = STATE(4829), - [sym_assignment_expression] = STATE(4829), - [sym_pointer_expression] = STATE(3602), - [sym_unary_expression] = STATE(4829), - [sym_binary_expression] = STATE(4829), - [sym_update_expression] = STATE(4829), - [sym_cast_expression] = STATE(4829), - [sym_sizeof_expression] = STATE(4829), - [sym_alignof_expression] = STATE(4829), - [sym_offsetof_expression] = STATE(4829), - [sym_generic_expression] = STATE(4829), - [sym_subscript_expression] = STATE(3602), - [sym_call_expression] = STATE(3602), - [sym_gnu_asm_expression] = STATE(4829), - [sym_extension_expression] = STATE(4829), - [sym_field_expression] = STATE(3602), - [sym_compound_literal_expression] = STATE(4829), - [sym_parenthesized_expression] = STATE(3602), - [sym_char_literal] = STATE(4738), - [sym_concatenated_string] = STATE(4738), - [sym_string_literal] = STATE(3759), - [sym_null] = STATE(4829), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7804), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(4829), - [sym_raw_string_literal] = STATE(3759), - [sym_co_await_expression] = STATE(4829), - [sym_new_expression] = STATE(4829), - [sym_delete_expression] = STATE(4829), - [sym_requires_clause] = STATE(4829), - [sym_requires_expression] = STATE(4829), - [sym_lambda_expression] = STATE(4829), - [sym_lambda_capture_specifier] = STATE(5401), - [sym_fold_expression] = STATE(4829), - [sym_parameter_pack_expansion] = STATE(4829), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5773), - [sym_qualified_identifier] = STATE(3602), - [sym_qualified_type_identifier] = STATE(7804), - [sym_user_defined_literal] = STATE(3602), - [sym_identifier] = ACTIONS(3883), - [anon_sym_LPAREN2] = ACTIONS(3118), - [anon_sym_BANG] = ACTIONS(3120), - [anon_sym_TILDE] = ACTIONS(3120), - [anon_sym_DASH] = ACTIONS(3122), - [anon_sym_PLUS] = ACTIONS(3122), - [anon_sym_STAR] = ACTIONS(3124), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym___extension__] = ACTIONS(3885), - [anon_sym_COLON_COLON] = ACTIONS(3128), + [1352] = { + [sym_expression] = STATE(4628), + [sym__string] = STATE(4825), + [sym_conditional_expression] = STATE(4856), + [sym_assignment_expression] = STATE(4856), + [sym_pointer_expression] = STATE(3701), + [sym_unary_expression] = STATE(4856), + [sym_binary_expression] = STATE(4856), + [sym_update_expression] = STATE(4856), + [sym_cast_expression] = STATE(4856), + [sym_sizeof_expression] = STATE(4856), + [sym_alignof_expression] = STATE(4856), + [sym_offsetof_expression] = STATE(4856), + [sym_generic_expression] = STATE(4856), + [sym_subscript_expression] = STATE(3701), + [sym_call_expression] = STATE(3701), + [sym_gnu_asm_expression] = STATE(4856), + [sym_extension_expression] = STATE(4856), + [sym_field_expression] = STATE(3701), + [sym_compound_literal_expression] = STATE(4856), + [sym_parenthesized_expression] = STATE(3701), + [sym_char_literal] = STATE(4825), + [sym_concatenated_string] = STATE(4825), + [sym_string_literal] = STATE(3812), + [sym_null] = STATE(4856), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7816), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(4856), + [sym_raw_string_literal] = STATE(3812), + [sym_co_await_expression] = STATE(4856), + [sym_new_expression] = STATE(4856), + [sym_delete_expression] = STATE(4856), + [sym_requires_clause] = STATE(4856), + [sym_requires_expression] = STATE(4856), + [sym_lambda_expression] = STATE(4856), + [sym_lambda_capture_specifier] = STATE(5489), + [sym_fold_expression] = STATE(4856), + [sym_parameter_pack_expansion] = STATE(4856), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5769), + [sym_qualified_identifier] = STATE(3701), + [sym_qualified_type_identifier] = STATE(7816), + [sym_user_defined_literal] = STATE(3701), + [sym_identifier] = ACTIONS(3875), + [anon_sym_LPAREN2] = ACTIONS(3130), + [anon_sym_BANG] = ACTIONS(3132), + [anon_sym_TILDE] = ACTIONS(3132), + [anon_sym_DASH] = ACTIONS(3134), + [anon_sym_PLUS] = ACTIONS(3134), + [anon_sym_STAR] = ACTIONS(3136), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym___extension__] = ACTIONS(3877), + [anon_sym_COLON_COLON] = ACTIONS(3140), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(3889), - [anon_sym_not] = ACTIONS(3122), - [anon_sym_compl] = ACTIONS(3122), - [anon_sym_DASH_DASH] = ACTIONS(3142), - [anon_sym_PLUS_PLUS] = ACTIONS(3142), - [anon_sym_sizeof] = ACTIONS(3144), - [anon_sym___alignof__] = ACTIONS(3146), - [anon_sym___alignof] = ACTIONS(3146), - [anon_sym__alignof] = ACTIONS(3146), - [anon_sym_alignof] = ACTIONS(3146), - [anon_sym__Alignof] = ACTIONS(3146), - [anon_sym_offsetof] = ACTIONS(3148), - [anon_sym__Generic] = ACTIONS(3150), - [anon_sym_asm] = ACTIONS(3152), - [anon_sym___asm__] = ACTIONS(3152), - [anon_sym___asm] = ACTIONS(3152), - [sym_number_literal] = ACTIONS(3154), - [anon_sym_L_SQUOTE] = ACTIONS(3156), - [anon_sym_u_SQUOTE] = ACTIONS(3156), - [anon_sym_U_SQUOTE] = ACTIONS(3156), - [anon_sym_u8_SQUOTE] = ACTIONS(3156), - [anon_sym_SQUOTE] = ACTIONS(3156), - [anon_sym_L_DQUOTE] = ACTIONS(3158), - [anon_sym_u_DQUOTE] = ACTIONS(3158), - [anon_sym_U_DQUOTE] = ACTIONS(3158), - [anon_sym_u8_DQUOTE] = ACTIONS(3158), - [anon_sym_DQUOTE] = ACTIONS(3158), - [sym_true] = ACTIONS(3160), - [sym_false] = ACTIONS(3160), - [anon_sym_NULL] = ACTIONS(3162), - [anon_sym_nullptr] = ACTIONS(3162), + [sym_primitive_type] = ACTIONS(3881), + [anon_sym_not] = ACTIONS(3134), + [anon_sym_compl] = ACTIONS(3134), + [anon_sym_DASH_DASH] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_sizeof] = ACTIONS(3156), + [anon_sym___alignof__] = ACTIONS(3158), + [anon_sym___alignof] = ACTIONS(3158), + [anon_sym__alignof] = ACTIONS(3158), + [anon_sym_alignof] = ACTIONS(3158), + [anon_sym__Alignof] = ACTIONS(3158), + [anon_sym_offsetof] = ACTIONS(3160), + [anon_sym__Generic] = ACTIONS(3162), + [anon_sym_asm] = ACTIONS(3164), + [anon_sym___asm__] = ACTIONS(3164), + [anon_sym___asm] = ACTIONS(3164), + [sym_number_literal] = ACTIONS(3166), + [anon_sym_L_SQUOTE] = ACTIONS(3168), + [anon_sym_u_SQUOTE] = ACTIONS(3168), + [anon_sym_U_SQUOTE] = ACTIONS(3168), + [anon_sym_u8_SQUOTE] = ACTIONS(3168), + [anon_sym_SQUOTE] = ACTIONS(3168), + [anon_sym_L_DQUOTE] = ACTIONS(3170), + [anon_sym_u_DQUOTE] = ACTIONS(3170), + [anon_sym_U_DQUOTE] = ACTIONS(3170), + [anon_sym_u8_DQUOTE] = ACTIONS(3170), + [anon_sym_DQUOTE] = ACTIONS(3170), + [sym_true] = ACTIONS(3172), + [sym_false] = ACTIONS(3172), + [anon_sym_NULL] = ACTIONS(3174), + [anon_sym_nullptr] = ACTIONS(3174), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3172), - [anon_sym_R_DQUOTE] = ACTIONS(3174), - [anon_sym_LR_DQUOTE] = ACTIONS(3174), - [anon_sym_uR_DQUOTE] = ACTIONS(3174), - [anon_sym_UR_DQUOTE] = ACTIONS(3174), - [anon_sym_u8R_DQUOTE] = ACTIONS(3174), - [anon_sym_co_await] = ACTIONS(3176), - [anon_sym_new] = ACTIONS(3178), - [anon_sym_requires] = ACTIONS(3180), - [sym_this] = ACTIONS(3160), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3184), + [anon_sym_R_DQUOTE] = ACTIONS(3186), + [anon_sym_LR_DQUOTE] = ACTIONS(3186), + [anon_sym_uR_DQUOTE] = ACTIONS(3186), + [anon_sym_UR_DQUOTE] = ACTIONS(3186), + [anon_sym_u8R_DQUOTE] = ACTIONS(3186), + [anon_sym_co_await] = ACTIONS(3188), + [anon_sym_new] = ACTIONS(3190), + [anon_sym_requires] = ACTIONS(3192), + [sym_this] = ACTIONS(3172), }, - [1304] = { - [sym_expression] = STATE(4419), - [sym__string] = STATE(4738), - [sym_conditional_expression] = STATE(4829), - [sym_assignment_expression] = STATE(4829), - [sym_pointer_expression] = STATE(3602), - [sym_unary_expression] = STATE(4829), - [sym_binary_expression] = STATE(4829), - [sym_update_expression] = STATE(4829), - [sym_cast_expression] = STATE(4829), - [sym_sizeof_expression] = STATE(4829), - [sym_alignof_expression] = STATE(4829), - [sym_offsetof_expression] = STATE(4829), - [sym_generic_expression] = STATE(4829), - [sym_subscript_expression] = STATE(3602), - [sym_call_expression] = STATE(3602), - [sym_gnu_asm_expression] = STATE(4829), - [sym_extension_expression] = STATE(4829), - [sym_field_expression] = STATE(3602), - [sym_compound_literal_expression] = STATE(4829), - [sym_parenthesized_expression] = STATE(3602), - [sym_char_literal] = STATE(4738), - [sym_concatenated_string] = STATE(4738), - [sym_string_literal] = STATE(3759), - [sym_null] = STATE(4829), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7804), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(4829), - [sym_raw_string_literal] = STATE(3759), - [sym_co_await_expression] = STATE(4829), - [sym_new_expression] = STATE(4829), - [sym_delete_expression] = STATE(4829), - [sym_requires_clause] = STATE(4829), - [sym_requires_expression] = STATE(4829), - [sym_lambda_expression] = STATE(4829), - [sym_lambda_capture_specifier] = STATE(5401), - [sym_fold_expression] = STATE(4829), - [sym_parameter_pack_expansion] = STATE(4829), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5773), - [sym_qualified_identifier] = STATE(3602), - [sym_qualified_type_identifier] = STATE(7804), - [sym_user_defined_literal] = STATE(3602), - [sym_identifier] = ACTIONS(3883), - [anon_sym_LPAREN2] = ACTIONS(3118), - [anon_sym_BANG] = ACTIONS(3120), - [anon_sym_TILDE] = ACTIONS(3120), - [anon_sym_DASH] = ACTIONS(3122), - [anon_sym_PLUS] = ACTIONS(3122), - [anon_sym_STAR] = ACTIONS(3124), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym___extension__] = ACTIONS(3885), - [anon_sym_COLON_COLON] = ACTIONS(3128), + [1353] = { + [sym_expression] = STATE(4637), + [sym__string] = STATE(4825), + [sym_conditional_expression] = STATE(4856), + [sym_assignment_expression] = STATE(4856), + [sym_pointer_expression] = STATE(3701), + [sym_unary_expression] = STATE(4856), + [sym_binary_expression] = STATE(4856), + [sym_update_expression] = STATE(4856), + [sym_cast_expression] = STATE(4856), + [sym_sizeof_expression] = STATE(4856), + [sym_alignof_expression] = STATE(4856), + [sym_offsetof_expression] = STATE(4856), + [sym_generic_expression] = STATE(4856), + [sym_subscript_expression] = STATE(3701), + [sym_call_expression] = STATE(3701), + [sym_gnu_asm_expression] = STATE(4856), + [sym_extension_expression] = STATE(4856), + [sym_field_expression] = STATE(3701), + [sym_compound_literal_expression] = STATE(4856), + [sym_parenthesized_expression] = STATE(3701), + [sym_char_literal] = STATE(4825), + [sym_concatenated_string] = STATE(4825), + [sym_string_literal] = STATE(3812), + [sym_null] = STATE(4856), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7816), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(4856), + [sym_raw_string_literal] = STATE(3812), + [sym_co_await_expression] = STATE(4856), + [sym_new_expression] = STATE(4856), + [sym_delete_expression] = STATE(4856), + [sym_requires_clause] = STATE(4856), + [sym_requires_expression] = STATE(4856), + [sym_lambda_expression] = STATE(4856), + [sym_lambda_capture_specifier] = STATE(5489), + [sym_fold_expression] = STATE(4856), + [sym_parameter_pack_expansion] = STATE(4856), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5769), + [sym_qualified_identifier] = STATE(3701), + [sym_qualified_type_identifier] = STATE(7816), + [sym_user_defined_literal] = STATE(3701), + [sym_identifier] = ACTIONS(3875), + [anon_sym_LPAREN2] = ACTIONS(3130), + [anon_sym_BANG] = ACTIONS(3132), + [anon_sym_TILDE] = ACTIONS(3132), + [anon_sym_DASH] = ACTIONS(3134), + [anon_sym_PLUS] = ACTIONS(3134), + [anon_sym_STAR] = ACTIONS(3136), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym___extension__] = ACTIONS(3877), + [anon_sym_COLON_COLON] = ACTIONS(3140), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(3889), - [anon_sym_not] = ACTIONS(3122), - [anon_sym_compl] = ACTIONS(3122), - [anon_sym_DASH_DASH] = ACTIONS(3142), - [anon_sym_PLUS_PLUS] = ACTIONS(3142), - [anon_sym_sizeof] = ACTIONS(3144), - [anon_sym___alignof__] = ACTIONS(3146), - [anon_sym___alignof] = ACTIONS(3146), - [anon_sym__alignof] = ACTIONS(3146), - [anon_sym_alignof] = ACTIONS(3146), - [anon_sym__Alignof] = ACTIONS(3146), - [anon_sym_offsetof] = ACTIONS(3148), - [anon_sym__Generic] = ACTIONS(3150), - [anon_sym_asm] = ACTIONS(3152), - [anon_sym___asm__] = ACTIONS(3152), - [anon_sym___asm] = ACTIONS(3152), - [sym_number_literal] = ACTIONS(3154), - [anon_sym_L_SQUOTE] = ACTIONS(3156), - [anon_sym_u_SQUOTE] = ACTIONS(3156), - [anon_sym_U_SQUOTE] = ACTIONS(3156), - [anon_sym_u8_SQUOTE] = ACTIONS(3156), - [anon_sym_SQUOTE] = ACTIONS(3156), - [anon_sym_L_DQUOTE] = ACTIONS(3158), - [anon_sym_u_DQUOTE] = ACTIONS(3158), - [anon_sym_U_DQUOTE] = ACTIONS(3158), - [anon_sym_u8_DQUOTE] = ACTIONS(3158), - [anon_sym_DQUOTE] = ACTIONS(3158), - [sym_true] = ACTIONS(3160), - [sym_false] = ACTIONS(3160), - [anon_sym_NULL] = ACTIONS(3162), - [anon_sym_nullptr] = ACTIONS(3162), + [sym_primitive_type] = ACTIONS(3881), + [anon_sym_not] = ACTIONS(3134), + [anon_sym_compl] = ACTIONS(3134), + [anon_sym_DASH_DASH] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_sizeof] = ACTIONS(3156), + [anon_sym___alignof__] = ACTIONS(3158), + [anon_sym___alignof] = ACTIONS(3158), + [anon_sym__alignof] = ACTIONS(3158), + [anon_sym_alignof] = ACTIONS(3158), + [anon_sym__Alignof] = ACTIONS(3158), + [anon_sym_offsetof] = ACTIONS(3160), + [anon_sym__Generic] = ACTIONS(3162), + [anon_sym_asm] = ACTIONS(3164), + [anon_sym___asm__] = ACTIONS(3164), + [anon_sym___asm] = ACTIONS(3164), + [sym_number_literal] = ACTIONS(3166), + [anon_sym_L_SQUOTE] = ACTIONS(3168), + [anon_sym_u_SQUOTE] = ACTIONS(3168), + [anon_sym_U_SQUOTE] = ACTIONS(3168), + [anon_sym_u8_SQUOTE] = ACTIONS(3168), + [anon_sym_SQUOTE] = ACTIONS(3168), + [anon_sym_L_DQUOTE] = ACTIONS(3170), + [anon_sym_u_DQUOTE] = ACTIONS(3170), + [anon_sym_U_DQUOTE] = ACTIONS(3170), + [anon_sym_u8_DQUOTE] = ACTIONS(3170), + [anon_sym_DQUOTE] = ACTIONS(3170), + [sym_true] = ACTIONS(3172), + [sym_false] = ACTIONS(3172), + [anon_sym_NULL] = ACTIONS(3174), + [anon_sym_nullptr] = ACTIONS(3174), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3172), - [anon_sym_R_DQUOTE] = ACTIONS(3174), - [anon_sym_LR_DQUOTE] = ACTIONS(3174), - [anon_sym_uR_DQUOTE] = ACTIONS(3174), - [anon_sym_UR_DQUOTE] = ACTIONS(3174), - [anon_sym_u8R_DQUOTE] = ACTIONS(3174), - [anon_sym_co_await] = ACTIONS(3176), - [anon_sym_new] = ACTIONS(3178), - [anon_sym_requires] = ACTIONS(3180), - [sym_this] = ACTIONS(3160), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3184), + [anon_sym_R_DQUOTE] = ACTIONS(3186), + [anon_sym_LR_DQUOTE] = ACTIONS(3186), + [anon_sym_uR_DQUOTE] = ACTIONS(3186), + [anon_sym_UR_DQUOTE] = ACTIONS(3186), + [anon_sym_u8R_DQUOTE] = ACTIONS(3186), + [anon_sym_co_await] = ACTIONS(3188), + [anon_sym_new] = ACTIONS(3190), + [anon_sym_requires] = ACTIONS(3192), + [sym_this] = ACTIONS(3172), }, - [1305] = { - [sym_expression] = STATE(4422), - [sym__string] = STATE(4738), - [sym_conditional_expression] = STATE(4829), - [sym_assignment_expression] = STATE(4829), - [sym_pointer_expression] = STATE(3602), - [sym_unary_expression] = STATE(4829), - [sym_binary_expression] = STATE(4829), - [sym_update_expression] = STATE(4829), - [sym_cast_expression] = STATE(4829), - [sym_sizeof_expression] = STATE(4829), - [sym_alignof_expression] = STATE(4829), - [sym_offsetof_expression] = STATE(4829), - [sym_generic_expression] = STATE(4829), - [sym_subscript_expression] = STATE(3602), - [sym_call_expression] = STATE(3602), - [sym_gnu_asm_expression] = STATE(4829), - [sym_extension_expression] = STATE(4829), - [sym_field_expression] = STATE(3602), - [sym_compound_literal_expression] = STATE(4829), - [sym_parenthesized_expression] = STATE(3602), - [sym_char_literal] = STATE(4738), - [sym_concatenated_string] = STATE(4738), - [sym_string_literal] = STATE(3759), - [sym_null] = STATE(4829), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7804), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(4829), - [sym_raw_string_literal] = STATE(3759), - [sym_co_await_expression] = STATE(4829), - [sym_new_expression] = STATE(4829), - [sym_delete_expression] = STATE(4829), - [sym_requires_clause] = STATE(4829), - [sym_requires_expression] = STATE(4829), - [sym_lambda_expression] = STATE(4829), - [sym_lambda_capture_specifier] = STATE(5401), - [sym_fold_expression] = STATE(4829), - [sym_parameter_pack_expansion] = STATE(4829), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5773), - [sym_qualified_identifier] = STATE(3602), - [sym_qualified_type_identifier] = STATE(7804), - [sym_user_defined_literal] = STATE(3602), - [sym_identifier] = ACTIONS(3883), - [anon_sym_LPAREN2] = ACTIONS(3118), - [anon_sym_BANG] = ACTIONS(3120), - [anon_sym_TILDE] = ACTIONS(3120), - [anon_sym_DASH] = ACTIONS(3122), - [anon_sym_PLUS] = ACTIONS(3122), - [anon_sym_STAR] = ACTIONS(3124), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym___extension__] = ACTIONS(3885), - [anon_sym_COLON_COLON] = ACTIONS(3128), + [1354] = { + [sym_expression] = STATE(4473), + [sym__string] = STATE(4825), + [sym_conditional_expression] = STATE(4856), + [sym_assignment_expression] = STATE(4856), + [sym_pointer_expression] = STATE(3701), + [sym_unary_expression] = STATE(4856), + [sym_binary_expression] = STATE(4856), + [sym_update_expression] = STATE(4856), + [sym_cast_expression] = STATE(4856), + [sym_sizeof_expression] = STATE(4856), + [sym_alignof_expression] = STATE(4856), + [sym_offsetof_expression] = STATE(4856), + [sym_generic_expression] = STATE(4856), + [sym_subscript_expression] = STATE(3701), + [sym_call_expression] = STATE(3701), + [sym_gnu_asm_expression] = STATE(4856), + [sym_extension_expression] = STATE(4856), + [sym_field_expression] = STATE(3701), + [sym_compound_literal_expression] = STATE(4856), + [sym_parenthesized_expression] = STATE(3701), + [sym_char_literal] = STATE(4825), + [sym_concatenated_string] = STATE(4825), + [sym_string_literal] = STATE(3812), + [sym_null] = STATE(4856), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7816), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(4856), + [sym_raw_string_literal] = STATE(3812), + [sym_co_await_expression] = STATE(4856), + [sym_new_expression] = STATE(4856), + [sym_delete_expression] = STATE(4856), + [sym_requires_clause] = STATE(4856), + [sym_requires_expression] = STATE(4856), + [sym_lambda_expression] = STATE(4856), + [sym_lambda_capture_specifier] = STATE(5489), + [sym_fold_expression] = STATE(4856), + [sym_parameter_pack_expansion] = STATE(4856), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5769), + [sym_qualified_identifier] = STATE(3701), + [sym_qualified_type_identifier] = STATE(7816), + [sym_user_defined_literal] = STATE(3701), + [sym_identifier] = ACTIONS(3875), + [anon_sym_LPAREN2] = ACTIONS(3130), + [anon_sym_BANG] = ACTIONS(3132), + [anon_sym_TILDE] = ACTIONS(3132), + [anon_sym_DASH] = ACTIONS(3134), + [anon_sym_PLUS] = ACTIONS(3134), + [anon_sym_STAR] = ACTIONS(3136), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym___extension__] = ACTIONS(3877), + [anon_sym_COLON_COLON] = ACTIONS(3140), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(3889), - [anon_sym_not] = ACTIONS(3122), - [anon_sym_compl] = ACTIONS(3122), - [anon_sym_DASH_DASH] = ACTIONS(3142), - [anon_sym_PLUS_PLUS] = ACTIONS(3142), - [anon_sym_sizeof] = ACTIONS(3144), - [anon_sym___alignof__] = ACTIONS(3146), - [anon_sym___alignof] = ACTIONS(3146), - [anon_sym__alignof] = ACTIONS(3146), - [anon_sym_alignof] = ACTIONS(3146), - [anon_sym__Alignof] = ACTIONS(3146), - [anon_sym_offsetof] = ACTIONS(3148), - [anon_sym__Generic] = ACTIONS(3150), - [anon_sym_asm] = ACTIONS(3152), - [anon_sym___asm__] = ACTIONS(3152), - [anon_sym___asm] = ACTIONS(3152), - [sym_number_literal] = ACTIONS(3154), - [anon_sym_L_SQUOTE] = ACTIONS(3156), - [anon_sym_u_SQUOTE] = ACTIONS(3156), - [anon_sym_U_SQUOTE] = ACTIONS(3156), - [anon_sym_u8_SQUOTE] = ACTIONS(3156), - [anon_sym_SQUOTE] = ACTIONS(3156), - [anon_sym_L_DQUOTE] = ACTIONS(3158), - [anon_sym_u_DQUOTE] = ACTIONS(3158), - [anon_sym_U_DQUOTE] = ACTIONS(3158), - [anon_sym_u8_DQUOTE] = ACTIONS(3158), - [anon_sym_DQUOTE] = ACTIONS(3158), - [sym_true] = ACTIONS(3160), - [sym_false] = ACTIONS(3160), - [anon_sym_NULL] = ACTIONS(3162), - [anon_sym_nullptr] = ACTIONS(3162), + [sym_primitive_type] = ACTIONS(3881), + [anon_sym_not] = ACTIONS(3134), + [anon_sym_compl] = ACTIONS(3134), + [anon_sym_DASH_DASH] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_sizeof] = ACTIONS(3156), + [anon_sym___alignof__] = ACTIONS(3158), + [anon_sym___alignof] = ACTIONS(3158), + [anon_sym__alignof] = ACTIONS(3158), + [anon_sym_alignof] = ACTIONS(3158), + [anon_sym__Alignof] = ACTIONS(3158), + [anon_sym_offsetof] = ACTIONS(3160), + [anon_sym__Generic] = ACTIONS(3162), + [anon_sym_asm] = ACTIONS(3164), + [anon_sym___asm__] = ACTIONS(3164), + [anon_sym___asm] = ACTIONS(3164), + [sym_number_literal] = ACTIONS(3166), + [anon_sym_L_SQUOTE] = ACTIONS(3168), + [anon_sym_u_SQUOTE] = ACTIONS(3168), + [anon_sym_U_SQUOTE] = ACTIONS(3168), + [anon_sym_u8_SQUOTE] = ACTIONS(3168), + [anon_sym_SQUOTE] = ACTIONS(3168), + [anon_sym_L_DQUOTE] = ACTIONS(3170), + [anon_sym_u_DQUOTE] = ACTIONS(3170), + [anon_sym_U_DQUOTE] = ACTIONS(3170), + [anon_sym_u8_DQUOTE] = ACTIONS(3170), + [anon_sym_DQUOTE] = ACTIONS(3170), + [sym_true] = ACTIONS(3172), + [sym_false] = ACTIONS(3172), + [anon_sym_NULL] = ACTIONS(3174), + [anon_sym_nullptr] = ACTIONS(3174), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3172), - [anon_sym_R_DQUOTE] = ACTIONS(3174), - [anon_sym_LR_DQUOTE] = ACTIONS(3174), - [anon_sym_uR_DQUOTE] = ACTIONS(3174), - [anon_sym_UR_DQUOTE] = ACTIONS(3174), - [anon_sym_u8R_DQUOTE] = ACTIONS(3174), - [anon_sym_co_await] = ACTIONS(3176), - [anon_sym_new] = ACTIONS(3178), - [anon_sym_requires] = ACTIONS(3180), - [sym_this] = ACTIONS(3160), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3184), + [anon_sym_R_DQUOTE] = ACTIONS(3186), + [anon_sym_LR_DQUOTE] = ACTIONS(3186), + [anon_sym_uR_DQUOTE] = ACTIONS(3186), + [anon_sym_UR_DQUOTE] = ACTIONS(3186), + [anon_sym_u8R_DQUOTE] = ACTIONS(3186), + [anon_sym_co_await] = ACTIONS(3188), + [anon_sym_new] = ACTIONS(3190), + [anon_sym_requires] = ACTIONS(3192), + [sym_this] = ACTIONS(3172), }, - [1306] = { - [sym_expression] = STATE(4426), - [sym__string] = STATE(4738), - [sym_conditional_expression] = STATE(4829), - [sym_assignment_expression] = STATE(4829), - [sym_pointer_expression] = STATE(3602), - [sym_unary_expression] = STATE(4829), - [sym_binary_expression] = STATE(4829), - [sym_update_expression] = STATE(4829), - [sym_cast_expression] = STATE(4829), - [sym_sizeof_expression] = STATE(4829), - [sym_alignof_expression] = STATE(4829), - [sym_offsetof_expression] = STATE(4829), - [sym_generic_expression] = STATE(4829), - [sym_subscript_expression] = STATE(3602), - [sym_call_expression] = STATE(3602), - [sym_gnu_asm_expression] = STATE(4829), - [sym_extension_expression] = STATE(4829), - [sym_field_expression] = STATE(3602), - [sym_compound_literal_expression] = STATE(4829), - [sym_parenthesized_expression] = STATE(3602), - [sym_char_literal] = STATE(4738), - [sym_concatenated_string] = STATE(4738), - [sym_string_literal] = STATE(3759), - [sym_null] = STATE(4829), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7804), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(4829), - [sym_raw_string_literal] = STATE(3759), - [sym_co_await_expression] = STATE(4829), - [sym_new_expression] = STATE(4829), - [sym_delete_expression] = STATE(4829), - [sym_requires_clause] = STATE(4829), - [sym_requires_expression] = STATE(4829), - [sym_lambda_expression] = STATE(4829), - [sym_lambda_capture_specifier] = STATE(5401), - [sym_fold_expression] = STATE(4829), - [sym_parameter_pack_expansion] = STATE(4829), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5773), - [sym_qualified_identifier] = STATE(3602), - [sym_qualified_type_identifier] = STATE(7804), - [sym_user_defined_literal] = STATE(3602), - [sym_identifier] = ACTIONS(3883), - [anon_sym_LPAREN2] = ACTIONS(3118), - [anon_sym_BANG] = ACTIONS(3120), - [anon_sym_TILDE] = ACTIONS(3120), - [anon_sym_DASH] = ACTIONS(3122), - [anon_sym_PLUS] = ACTIONS(3122), - [anon_sym_STAR] = ACTIONS(3124), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym___extension__] = ACTIONS(3885), - [anon_sym_COLON_COLON] = ACTIONS(3128), + [1355] = { + [sym_expression] = STATE(4468), + [sym__string] = STATE(4825), + [sym_conditional_expression] = STATE(4856), + [sym_assignment_expression] = STATE(4856), + [sym_pointer_expression] = STATE(3701), + [sym_unary_expression] = STATE(4856), + [sym_binary_expression] = STATE(4856), + [sym_update_expression] = STATE(4856), + [sym_cast_expression] = STATE(4856), + [sym_sizeof_expression] = STATE(4856), + [sym_alignof_expression] = STATE(4856), + [sym_offsetof_expression] = STATE(4856), + [sym_generic_expression] = STATE(4856), + [sym_subscript_expression] = STATE(3701), + [sym_call_expression] = STATE(3701), + [sym_gnu_asm_expression] = STATE(4856), + [sym_extension_expression] = STATE(4856), + [sym_field_expression] = STATE(3701), + [sym_compound_literal_expression] = STATE(4856), + [sym_parenthesized_expression] = STATE(3701), + [sym_char_literal] = STATE(4825), + [sym_concatenated_string] = STATE(4825), + [sym_string_literal] = STATE(3812), + [sym_null] = STATE(4856), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7816), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(4856), + [sym_raw_string_literal] = STATE(3812), + [sym_co_await_expression] = STATE(4856), + [sym_new_expression] = STATE(4856), + [sym_delete_expression] = STATE(4856), + [sym_requires_clause] = STATE(4856), + [sym_requires_expression] = STATE(4856), + [sym_lambda_expression] = STATE(4856), + [sym_lambda_capture_specifier] = STATE(5489), + [sym_fold_expression] = STATE(4856), + [sym_parameter_pack_expansion] = STATE(4856), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5769), + [sym_qualified_identifier] = STATE(3701), + [sym_qualified_type_identifier] = STATE(7816), + [sym_user_defined_literal] = STATE(3701), + [sym_identifier] = ACTIONS(3875), + [anon_sym_LPAREN2] = ACTIONS(3130), + [anon_sym_BANG] = ACTIONS(3132), + [anon_sym_TILDE] = ACTIONS(3132), + [anon_sym_DASH] = ACTIONS(3134), + [anon_sym_PLUS] = ACTIONS(3134), + [anon_sym_STAR] = ACTIONS(3136), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym___extension__] = ACTIONS(3877), + [anon_sym_COLON_COLON] = ACTIONS(3140), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(3889), - [anon_sym_not] = ACTIONS(3122), - [anon_sym_compl] = ACTIONS(3122), - [anon_sym_DASH_DASH] = ACTIONS(3142), - [anon_sym_PLUS_PLUS] = ACTIONS(3142), - [anon_sym_sizeof] = ACTIONS(3144), - [anon_sym___alignof__] = ACTIONS(3146), - [anon_sym___alignof] = ACTIONS(3146), - [anon_sym__alignof] = ACTIONS(3146), - [anon_sym_alignof] = ACTIONS(3146), - [anon_sym__Alignof] = ACTIONS(3146), - [anon_sym_offsetof] = ACTIONS(3148), - [anon_sym__Generic] = ACTIONS(3150), - [anon_sym_asm] = ACTIONS(3152), - [anon_sym___asm__] = ACTIONS(3152), - [anon_sym___asm] = ACTIONS(3152), - [sym_number_literal] = ACTIONS(3154), - [anon_sym_L_SQUOTE] = ACTIONS(3156), - [anon_sym_u_SQUOTE] = ACTIONS(3156), - [anon_sym_U_SQUOTE] = ACTIONS(3156), - [anon_sym_u8_SQUOTE] = ACTIONS(3156), - [anon_sym_SQUOTE] = ACTIONS(3156), - [anon_sym_L_DQUOTE] = ACTIONS(3158), - [anon_sym_u_DQUOTE] = ACTIONS(3158), - [anon_sym_U_DQUOTE] = ACTIONS(3158), - [anon_sym_u8_DQUOTE] = ACTIONS(3158), - [anon_sym_DQUOTE] = ACTIONS(3158), - [sym_true] = ACTIONS(3160), - [sym_false] = ACTIONS(3160), - [anon_sym_NULL] = ACTIONS(3162), - [anon_sym_nullptr] = ACTIONS(3162), + [sym_primitive_type] = ACTIONS(3881), + [anon_sym_not] = ACTIONS(3134), + [anon_sym_compl] = ACTIONS(3134), + [anon_sym_DASH_DASH] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_sizeof] = ACTIONS(3156), + [anon_sym___alignof__] = ACTIONS(3158), + [anon_sym___alignof] = ACTIONS(3158), + [anon_sym__alignof] = ACTIONS(3158), + [anon_sym_alignof] = ACTIONS(3158), + [anon_sym__Alignof] = ACTIONS(3158), + [anon_sym_offsetof] = ACTIONS(3160), + [anon_sym__Generic] = ACTIONS(3162), + [anon_sym_asm] = ACTIONS(3164), + [anon_sym___asm__] = ACTIONS(3164), + [anon_sym___asm] = ACTIONS(3164), + [sym_number_literal] = ACTIONS(3166), + [anon_sym_L_SQUOTE] = ACTIONS(3168), + [anon_sym_u_SQUOTE] = ACTIONS(3168), + [anon_sym_U_SQUOTE] = ACTIONS(3168), + [anon_sym_u8_SQUOTE] = ACTIONS(3168), + [anon_sym_SQUOTE] = ACTIONS(3168), + [anon_sym_L_DQUOTE] = ACTIONS(3170), + [anon_sym_u_DQUOTE] = ACTIONS(3170), + [anon_sym_U_DQUOTE] = ACTIONS(3170), + [anon_sym_u8_DQUOTE] = ACTIONS(3170), + [anon_sym_DQUOTE] = ACTIONS(3170), + [sym_true] = ACTIONS(3172), + [sym_false] = ACTIONS(3172), + [anon_sym_NULL] = ACTIONS(3174), + [anon_sym_nullptr] = ACTIONS(3174), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3172), - [anon_sym_R_DQUOTE] = ACTIONS(3174), - [anon_sym_LR_DQUOTE] = ACTIONS(3174), - [anon_sym_uR_DQUOTE] = ACTIONS(3174), - [anon_sym_UR_DQUOTE] = ACTIONS(3174), - [anon_sym_u8R_DQUOTE] = ACTIONS(3174), - [anon_sym_co_await] = ACTIONS(3176), - [anon_sym_new] = ACTIONS(3178), - [anon_sym_requires] = ACTIONS(3180), - [sym_this] = ACTIONS(3160), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3184), + [anon_sym_R_DQUOTE] = ACTIONS(3186), + [anon_sym_LR_DQUOTE] = ACTIONS(3186), + [anon_sym_uR_DQUOTE] = ACTIONS(3186), + [anon_sym_UR_DQUOTE] = ACTIONS(3186), + [anon_sym_u8R_DQUOTE] = ACTIONS(3186), + [anon_sym_co_await] = ACTIONS(3188), + [anon_sym_new] = ACTIONS(3190), + [anon_sym_requires] = ACTIONS(3192), + [sym_this] = ACTIONS(3172), }, - [1307] = { - [sym_expression] = STATE(4430), - [sym__string] = STATE(4738), - [sym_conditional_expression] = STATE(4829), - [sym_assignment_expression] = STATE(4829), - [sym_pointer_expression] = STATE(3602), - [sym_unary_expression] = STATE(4829), - [sym_binary_expression] = STATE(4829), - [sym_update_expression] = STATE(4829), - [sym_cast_expression] = STATE(4829), - [sym_sizeof_expression] = STATE(4829), - [sym_alignof_expression] = STATE(4829), - [sym_offsetof_expression] = STATE(4829), - [sym_generic_expression] = STATE(4829), - [sym_subscript_expression] = STATE(3602), - [sym_call_expression] = STATE(3602), - [sym_gnu_asm_expression] = STATE(4829), - [sym_extension_expression] = STATE(4829), - [sym_field_expression] = STATE(3602), - [sym_compound_literal_expression] = STATE(4829), - [sym_parenthesized_expression] = STATE(3602), - [sym_char_literal] = STATE(4738), - [sym_concatenated_string] = STATE(4738), - [sym_string_literal] = STATE(3759), - [sym_null] = STATE(4829), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7804), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(4829), - [sym_raw_string_literal] = STATE(3759), - [sym_co_await_expression] = STATE(4829), - [sym_new_expression] = STATE(4829), - [sym_delete_expression] = STATE(4829), - [sym_requires_clause] = STATE(4829), - [sym_requires_expression] = STATE(4829), - [sym_lambda_expression] = STATE(4829), - [sym_lambda_capture_specifier] = STATE(5401), - [sym_fold_expression] = STATE(4829), - [sym_parameter_pack_expansion] = STATE(4829), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5773), - [sym_qualified_identifier] = STATE(3602), - [sym_qualified_type_identifier] = STATE(7804), - [sym_user_defined_literal] = STATE(3602), - [sym_identifier] = ACTIONS(3883), - [anon_sym_LPAREN2] = ACTIONS(3118), - [anon_sym_BANG] = ACTIONS(3120), - [anon_sym_TILDE] = ACTIONS(3120), - [anon_sym_DASH] = ACTIONS(3122), - [anon_sym_PLUS] = ACTIONS(3122), - [anon_sym_STAR] = ACTIONS(3124), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym___extension__] = ACTIONS(3885), - [anon_sym_COLON_COLON] = ACTIONS(3128), + [1356] = { + [sym_expression] = STATE(4475), + [sym__string] = STATE(4825), + [sym_conditional_expression] = STATE(4856), + [sym_assignment_expression] = STATE(4856), + [sym_pointer_expression] = STATE(3701), + [sym_unary_expression] = STATE(4856), + [sym_binary_expression] = STATE(4856), + [sym_update_expression] = STATE(4856), + [sym_cast_expression] = STATE(4856), + [sym_sizeof_expression] = STATE(4856), + [sym_alignof_expression] = STATE(4856), + [sym_offsetof_expression] = STATE(4856), + [sym_generic_expression] = STATE(4856), + [sym_subscript_expression] = STATE(3701), + [sym_call_expression] = STATE(3701), + [sym_gnu_asm_expression] = STATE(4856), + [sym_extension_expression] = STATE(4856), + [sym_field_expression] = STATE(3701), + [sym_compound_literal_expression] = STATE(4856), + [sym_parenthesized_expression] = STATE(3701), + [sym_char_literal] = STATE(4825), + [sym_concatenated_string] = STATE(4825), + [sym_string_literal] = STATE(3812), + [sym_null] = STATE(4856), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7816), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(4856), + [sym_raw_string_literal] = STATE(3812), + [sym_co_await_expression] = STATE(4856), + [sym_new_expression] = STATE(4856), + [sym_delete_expression] = STATE(4856), + [sym_requires_clause] = STATE(4856), + [sym_requires_expression] = STATE(4856), + [sym_lambda_expression] = STATE(4856), + [sym_lambda_capture_specifier] = STATE(5489), + [sym_fold_expression] = STATE(4856), + [sym_parameter_pack_expansion] = STATE(4856), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5769), + [sym_qualified_identifier] = STATE(3701), + [sym_qualified_type_identifier] = STATE(7816), + [sym_user_defined_literal] = STATE(3701), + [sym_identifier] = ACTIONS(3875), + [anon_sym_LPAREN2] = ACTIONS(3130), + [anon_sym_BANG] = ACTIONS(3132), + [anon_sym_TILDE] = ACTIONS(3132), + [anon_sym_DASH] = ACTIONS(3134), + [anon_sym_PLUS] = ACTIONS(3134), + [anon_sym_STAR] = ACTIONS(3136), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym___extension__] = ACTIONS(3877), + [anon_sym_COLON_COLON] = ACTIONS(3140), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(3889), - [anon_sym_not] = ACTIONS(3122), - [anon_sym_compl] = ACTIONS(3122), - [anon_sym_DASH_DASH] = ACTIONS(3142), - [anon_sym_PLUS_PLUS] = ACTIONS(3142), - [anon_sym_sizeof] = ACTIONS(3144), - [anon_sym___alignof__] = ACTIONS(3146), - [anon_sym___alignof] = ACTIONS(3146), - [anon_sym__alignof] = ACTIONS(3146), - [anon_sym_alignof] = ACTIONS(3146), - [anon_sym__Alignof] = ACTIONS(3146), - [anon_sym_offsetof] = ACTIONS(3148), - [anon_sym__Generic] = ACTIONS(3150), - [anon_sym_asm] = ACTIONS(3152), - [anon_sym___asm__] = ACTIONS(3152), - [anon_sym___asm] = ACTIONS(3152), - [sym_number_literal] = ACTIONS(3154), - [anon_sym_L_SQUOTE] = ACTIONS(3156), - [anon_sym_u_SQUOTE] = ACTIONS(3156), - [anon_sym_U_SQUOTE] = ACTIONS(3156), - [anon_sym_u8_SQUOTE] = ACTIONS(3156), - [anon_sym_SQUOTE] = ACTIONS(3156), - [anon_sym_L_DQUOTE] = ACTIONS(3158), - [anon_sym_u_DQUOTE] = ACTIONS(3158), - [anon_sym_U_DQUOTE] = ACTIONS(3158), - [anon_sym_u8_DQUOTE] = ACTIONS(3158), - [anon_sym_DQUOTE] = ACTIONS(3158), - [sym_true] = ACTIONS(3160), - [sym_false] = ACTIONS(3160), - [anon_sym_NULL] = ACTIONS(3162), - [anon_sym_nullptr] = ACTIONS(3162), + [sym_primitive_type] = ACTIONS(3881), + [anon_sym_not] = ACTIONS(3134), + [anon_sym_compl] = ACTIONS(3134), + [anon_sym_DASH_DASH] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_sizeof] = ACTIONS(3156), + [anon_sym___alignof__] = ACTIONS(3158), + [anon_sym___alignof] = ACTIONS(3158), + [anon_sym__alignof] = ACTIONS(3158), + [anon_sym_alignof] = ACTIONS(3158), + [anon_sym__Alignof] = ACTIONS(3158), + [anon_sym_offsetof] = ACTIONS(3160), + [anon_sym__Generic] = ACTIONS(3162), + [anon_sym_asm] = ACTIONS(3164), + [anon_sym___asm__] = ACTIONS(3164), + [anon_sym___asm] = ACTIONS(3164), + [sym_number_literal] = ACTIONS(3166), + [anon_sym_L_SQUOTE] = ACTIONS(3168), + [anon_sym_u_SQUOTE] = ACTIONS(3168), + [anon_sym_U_SQUOTE] = ACTIONS(3168), + [anon_sym_u8_SQUOTE] = ACTIONS(3168), + [anon_sym_SQUOTE] = ACTIONS(3168), + [anon_sym_L_DQUOTE] = ACTIONS(3170), + [anon_sym_u_DQUOTE] = ACTIONS(3170), + [anon_sym_U_DQUOTE] = ACTIONS(3170), + [anon_sym_u8_DQUOTE] = ACTIONS(3170), + [anon_sym_DQUOTE] = ACTIONS(3170), + [sym_true] = ACTIONS(3172), + [sym_false] = ACTIONS(3172), + [anon_sym_NULL] = ACTIONS(3174), + [anon_sym_nullptr] = ACTIONS(3174), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3172), - [anon_sym_R_DQUOTE] = ACTIONS(3174), - [anon_sym_LR_DQUOTE] = ACTIONS(3174), - [anon_sym_uR_DQUOTE] = ACTIONS(3174), - [anon_sym_UR_DQUOTE] = ACTIONS(3174), - [anon_sym_u8R_DQUOTE] = ACTIONS(3174), - [anon_sym_co_await] = ACTIONS(3176), - [anon_sym_new] = ACTIONS(3178), - [anon_sym_requires] = ACTIONS(3180), - [sym_this] = ACTIONS(3160), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3184), + [anon_sym_R_DQUOTE] = ACTIONS(3186), + [anon_sym_LR_DQUOTE] = ACTIONS(3186), + [anon_sym_uR_DQUOTE] = ACTIONS(3186), + [anon_sym_UR_DQUOTE] = ACTIONS(3186), + [anon_sym_u8R_DQUOTE] = ACTIONS(3186), + [anon_sym_co_await] = ACTIONS(3188), + [anon_sym_new] = ACTIONS(3190), + [anon_sym_requires] = ACTIONS(3192), + [sym_this] = ACTIONS(3172), }, - [1308] = { - [sym_expression] = STATE(4540), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3678), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3678), - [sym_call_expression] = STATE(3678), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3678), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3678), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3678), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3678), - [sym_identifier] = ACTIONS(3849), - [anon_sym_LPAREN2] = ACTIONS(3893), - [anon_sym_BANG] = ACTIONS(3853), - [anon_sym_TILDE] = ACTIONS(3853), - [anon_sym_DASH] = ACTIONS(3851), - [anon_sym_PLUS] = ACTIONS(3851), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(3855), - [anon_sym_COLON_COLON] = ACTIONS(3857), + [1357] = { + [sym_expression] = STATE(4486), + [sym__string] = STATE(4825), + [sym_conditional_expression] = STATE(4856), + [sym_assignment_expression] = STATE(4856), + [sym_pointer_expression] = STATE(3701), + [sym_unary_expression] = STATE(4856), + [sym_binary_expression] = STATE(4856), + [sym_update_expression] = STATE(4856), + [sym_cast_expression] = STATE(4856), + [sym_sizeof_expression] = STATE(4856), + [sym_alignof_expression] = STATE(4856), + [sym_offsetof_expression] = STATE(4856), + [sym_generic_expression] = STATE(4856), + [sym_subscript_expression] = STATE(3701), + [sym_call_expression] = STATE(3701), + [sym_gnu_asm_expression] = STATE(4856), + [sym_extension_expression] = STATE(4856), + [sym_field_expression] = STATE(3701), + [sym_compound_literal_expression] = STATE(4856), + [sym_parenthesized_expression] = STATE(3701), + [sym_char_literal] = STATE(4825), + [sym_concatenated_string] = STATE(4825), + [sym_string_literal] = STATE(3812), + [sym_null] = STATE(4856), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7816), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(4856), + [sym_raw_string_literal] = STATE(3812), + [sym_co_await_expression] = STATE(4856), + [sym_new_expression] = STATE(4856), + [sym_delete_expression] = STATE(4856), + [sym_requires_clause] = STATE(4856), + [sym_requires_expression] = STATE(4856), + [sym_lambda_expression] = STATE(4856), + [sym_lambda_capture_specifier] = STATE(5489), + [sym_fold_expression] = STATE(4856), + [sym_parameter_pack_expansion] = STATE(4856), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5769), + [sym_qualified_identifier] = STATE(3701), + [sym_qualified_type_identifier] = STATE(7816), + [sym_user_defined_literal] = STATE(3701), + [sym_identifier] = ACTIONS(3875), + [anon_sym_LPAREN2] = ACTIONS(3130), + [anon_sym_BANG] = ACTIONS(3132), + [anon_sym_TILDE] = ACTIONS(3132), + [anon_sym_DASH] = ACTIONS(3134), + [anon_sym_PLUS] = ACTIONS(3134), + [anon_sym_STAR] = ACTIONS(3136), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym___extension__] = ACTIONS(3877), + [anon_sym_COLON_COLON] = ACTIONS(3140), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3851), - [anon_sym_compl] = ACTIONS(3851), - [anon_sym_DASH_DASH] = ACTIONS(3897), - [anon_sym_PLUS_PLUS] = ACTIONS(3897), - [anon_sym_sizeof] = ACTIONS(3859), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), + [sym_primitive_type] = ACTIONS(3881), + [anon_sym_not] = ACTIONS(3134), + [anon_sym_compl] = ACTIONS(3134), + [anon_sym_DASH_DASH] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_sizeof] = ACTIONS(3156), + [anon_sym___alignof__] = ACTIONS(3158), + [anon_sym___alignof] = ACTIONS(3158), + [anon_sym__alignof] = ACTIONS(3158), + [anon_sym_alignof] = ACTIONS(3158), + [anon_sym__Alignof] = ACTIONS(3158), + [anon_sym_offsetof] = ACTIONS(3160), + [anon_sym__Generic] = ACTIONS(3162), + [anon_sym_asm] = ACTIONS(3164), + [anon_sym___asm__] = ACTIONS(3164), + [anon_sym___asm] = ACTIONS(3164), + [sym_number_literal] = ACTIONS(3166), + [anon_sym_L_SQUOTE] = ACTIONS(3168), + [anon_sym_u_SQUOTE] = ACTIONS(3168), + [anon_sym_U_SQUOTE] = ACTIONS(3168), + [anon_sym_u8_SQUOTE] = ACTIONS(3168), + [anon_sym_SQUOTE] = ACTIONS(3168), + [anon_sym_L_DQUOTE] = ACTIONS(3170), + [anon_sym_u_DQUOTE] = ACTIONS(3170), + [anon_sym_U_DQUOTE] = ACTIONS(3170), + [anon_sym_u8_DQUOTE] = ACTIONS(3170), + [anon_sym_DQUOTE] = ACTIONS(3170), + [sym_true] = ACTIONS(3172), + [sym_false] = ACTIONS(3172), + [anon_sym_NULL] = ACTIONS(3174), + [anon_sym_nullptr] = ACTIONS(3174), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3861), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3863), - [anon_sym_new] = ACTIONS(3865), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3184), + [anon_sym_R_DQUOTE] = ACTIONS(3186), + [anon_sym_LR_DQUOTE] = ACTIONS(3186), + [anon_sym_uR_DQUOTE] = ACTIONS(3186), + [anon_sym_UR_DQUOTE] = ACTIONS(3186), + [anon_sym_u8R_DQUOTE] = ACTIONS(3186), + [anon_sym_co_await] = ACTIONS(3188), + [anon_sym_new] = ACTIONS(3190), + [anon_sym_requires] = ACTIONS(3192), + [sym_this] = ACTIONS(3172), }, - [1309] = { - [sym_expression] = STATE(3036), - [sym__string] = STATE(3181), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(3181), - [sym_concatenated_string] = STATE(3181), - [sym_string_literal] = STATE(2297), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(2297), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), - [sym_identifier] = ACTIONS(2305), - [anon_sym_LPAREN2] = ACTIONS(4691), - [anon_sym_BANG] = ACTIONS(2309), - [anon_sym_TILDE] = ACTIONS(2309), - [anon_sym_DASH] = ACTIONS(2307), - [anon_sym_PLUS] = ACTIONS(2307), - [anon_sym_STAR] = ACTIONS(4382), - [anon_sym_AMP] = ACTIONS(4382), - [anon_sym___extension__] = ACTIONS(2311), - [anon_sym_COLON_COLON] = ACTIONS(2313), - [anon_sym_LBRACK] = ACTIONS(4919), + [1358] = { + [sym_expression] = STATE(3017), + [sym__string] = STATE(3178), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(3178), + [sym_concatenated_string] = STATE(3178), + [sym_string_literal] = STATE(2317), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(2317), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), + [sym_identifier] = ACTIONS(2301), + [anon_sym_LPAREN2] = ACTIONS(4652), + [anon_sym_BANG] = ACTIONS(2305), + [anon_sym_TILDE] = ACTIONS(2305), + [anon_sym_DASH] = ACTIONS(2303), + [anon_sym_PLUS] = ACTIONS(2303), + [anon_sym_STAR] = ACTIONS(4336), + [anon_sym_AMP] = ACTIONS(4336), + [anon_sym___extension__] = ACTIONS(2307), + [anon_sym_COLON_COLON] = ACTIONS(2309), + [anon_sym_LBRACK] = ACTIONS(4950), [sym_primitive_type] = ACTIONS(1956), - [anon_sym_not] = ACTIONS(2307), - [anon_sym_compl] = ACTIONS(2307), - [anon_sym_DASH_DASH] = ACTIONS(4396), - [anon_sym_PLUS_PLUS] = ACTIONS(4396), - [anon_sym_sizeof] = ACTIONS(2315), + [anon_sym_not] = ACTIONS(2303), + [anon_sym_compl] = ACTIONS(2303), + [anon_sym_DASH_DASH] = ACTIONS(4352), + [anon_sym_PLUS_PLUS] = ACTIONS(4352), + [anon_sym_sizeof] = ACTIONS(2311), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), [anon_sym__alignof] = ACTIONS(1960), @@ -210459,96 +216360,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(1966), [anon_sym___asm__] = ACTIONS(1966), [anon_sym___asm] = ACTIONS(1966), - [sym_number_literal] = ACTIONS(2317), - [anon_sym_L_SQUOTE] = ACTIONS(2319), - [anon_sym_u_SQUOTE] = ACTIONS(2319), - [anon_sym_U_SQUOTE] = ACTIONS(2319), - [anon_sym_u8_SQUOTE] = ACTIONS(2319), - [anon_sym_SQUOTE] = ACTIONS(2319), - [anon_sym_L_DQUOTE] = ACTIONS(2321), - [anon_sym_u_DQUOTE] = ACTIONS(2321), - [anon_sym_U_DQUOTE] = ACTIONS(2321), - [anon_sym_u8_DQUOTE] = ACTIONS(2321), - [anon_sym_DQUOTE] = ACTIONS(2321), + [sym_number_literal] = ACTIONS(2313), + [anon_sym_L_SQUOTE] = ACTIONS(2315), + [anon_sym_u_SQUOTE] = ACTIONS(2315), + [anon_sym_U_SQUOTE] = ACTIONS(2315), + [anon_sym_u8_SQUOTE] = ACTIONS(2315), + [anon_sym_SQUOTE] = ACTIONS(2315), + [anon_sym_L_DQUOTE] = ACTIONS(2317), + [anon_sym_u_DQUOTE] = ACTIONS(2317), + [anon_sym_U_DQUOTE] = ACTIONS(2317), + [anon_sym_u8_DQUOTE] = ACTIONS(2317), + [anon_sym_DQUOTE] = ACTIONS(2317), [sym_true] = ACTIONS(1974), [sym_false] = ACTIONS(1974), [anon_sym_NULL] = ACTIONS(1976), [anon_sym_nullptr] = ACTIONS(1976), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(2323), - [anon_sym_R_DQUOTE] = ACTIONS(2325), - [anon_sym_LR_DQUOTE] = ACTIONS(2325), - [anon_sym_uR_DQUOTE] = ACTIONS(2325), - [anon_sym_UR_DQUOTE] = ACTIONS(2325), - [anon_sym_u8R_DQUOTE] = ACTIONS(2325), - [anon_sym_co_await] = ACTIONS(2327), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(2319), + [anon_sym_R_DQUOTE] = ACTIONS(2321), + [anon_sym_LR_DQUOTE] = ACTIONS(2321), + [anon_sym_uR_DQUOTE] = ACTIONS(2321), + [anon_sym_UR_DQUOTE] = ACTIONS(2321), + [anon_sym_u8R_DQUOTE] = ACTIONS(2321), + [anon_sym_co_await] = ACTIONS(2323), [anon_sym_new] = ACTIONS(2014), [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [1310] = { - [sym_expression] = STATE(2381), - [sym__string] = STATE(3181), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(3181), - [sym_concatenated_string] = STATE(3181), - [sym_string_literal] = STATE(2297), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(2297), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), - [sym_identifier] = ACTIONS(2305), - [anon_sym_LPAREN2] = ACTIONS(4691), - [anon_sym_BANG] = ACTIONS(2309), - [anon_sym_TILDE] = ACTIONS(2309), - [anon_sym_DASH] = ACTIONS(2307), - [anon_sym_PLUS] = ACTIONS(2307), - [anon_sym_STAR] = ACTIONS(4382), - [anon_sym_AMP] = ACTIONS(4382), - [anon_sym___extension__] = ACTIONS(2311), - [anon_sym_COLON_COLON] = ACTIONS(2313), + [1359] = { + [sym_expression] = STATE(2408), + [sym__string] = STATE(3178), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(3178), + [sym_concatenated_string] = STATE(3178), + [sym_string_literal] = STATE(2317), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(2317), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), + [sym_identifier] = ACTIONS(2301), + [anon_sym_LPAREN2] = ACTIONS(4652), + [anon_sym_BANG] = ACTIONS(2305), + [anon_sym_TILDE] = ACTIONS(2305), + [anon_sym_DASH] = ACTIONS(2303), + [anon_sym_PLUS] = ACTIONS(2303), + [anon_sym_STAR] = ACTIONS(4336), + [anon_sym_AMP] = ACTIONS(4336), + [anon_sym___extension__] = ACTIONS(2307), + [anon_sym_COLON_COLON] = ACTIONS(2309), [anon_sym_LBRACK] = ACTIONS(2020), [sym_primitive_type] = ACTIONS(1956), - [anon_sym_not] = ACTIONS(2307), - [anon_sym_compl] = ACTIONS(2307), - [anon_sym_DASH_DASH] = ACTIONS(4396), - [anon_sym_PLUS_PLUS] = ACTIONS(4396), - [anon_sym_sizeof] = ACTIONS(2315), + [anon_sym_not] = ACTIONS(2303), + [anon_sym_compl] = ACTIONS(2303), + [anon_sym_DASH_DASH] = ACTIONS(4352), + [anon_sym_PLUS_PLUS] = ACTIONS(4352), + [anon_sym_sizeof] = ACTIONS(2311), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), [anon_sym__alignof] = ACTIONS(1960), @@ -210559,95 +216460,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(1966), [anon_sym___asm__] = ACTIONS(1966), [anon_sym___asm] = ACTIONS(1966), - [sym_number_literal] = ACTIONS(2317), - [anon_sym_L_SQUOTE] = ACTIONS(2319), - [anon_sym_u_SQUOTE] = ACTIONS(2319), - [anon_sym_U_SQUOTE] = ACTIONS(2319), - [anon_sym_u8_SQUOTE] = ACTIONS(2319), - [anon_sym_SQUOTE] = ACTIONS(2319), - [anon_sym_L_DQUOTE] = ACTIONS(2321), - [anon_sym_u_DQUOTE] = ACTIONS(2321), - [anon_sym_U_DQUOTE] = ACTIONS(2321), - [anon_sym_u8_DQUOTE] = ACTIONS(2321), - [anon_sym_DQUOTE] = ACTIONS(2321), + [sym_number_literal] = ACTIONS(2313), + [anon_sym_L_SQUOTE] = ACTIONS(2315), + [anon_sym_u_SQUOTE] = ACTIONS(2315), + [anon_sym_U_SQUOTE] = ACTIONS(2315), + [anon_sym_u8_SQUOTE] = ACTIONS(2315), + [anon_sym_SQUOTE] = ACTIONS(2315), + [anon_sym_L_DQUOTE] = ACTIONS(2317), + [anon_sym_u_DQUOTE] = ACTIONS(2317), + [anon_sym_U_DQUOTE] = ACTIONS(2317), + [anon_sym_u8_DQUOTE] = ACTIONS(2317), + [anon_sym_DQUOTE] = ACTIONS(2317), [sym_true] = ACTIONS(1974), [sym_false] = ACTIONS(1974), [anon_sym_NULL] = ACTIONS(1976), [anon_sym_nullptr] = ACTIONS(1976), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(2323), - [anon_sym_R_DQUOTE] = ACTIONS(2325), - [anon_sym_LR_DQUOTE] = ACTIONS(2325), - [anon_sym_uR_DQUOTE] = ACTIONS(2325), - [anon_sym_UR_DQUOTE] = ACTIONS(2325), - [anon_sym_u8R_DQUOTE] = ACTIONS(2325), - [anon_sym_co_await] = ACTIONS(2327), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(2319), + [anon_sym_R_DQUOTE] = ACTIONS(2321), + [anon_sym_LR_DQUOTE] = ACTIONS(2321), + [anon_sym_uR_DQUOTE] = ACTIONS(2321), + [anon_sym_UR_DQUOTE] = ACTIONS(2321), + [anon_sym_u8R_DQUOTE] = ACTIONS(2321), + [anon_sym_co_await] = ACTIONS(2323), [anon_sym_new] = ACTIONS(2014), [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [1311] = { - [sym_expression] = STATE(2790), - [sym__string] = STATE(2870), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(2870), - [sym_concatenated_string] = STATE(2870), - [sym_string_literal] = STATE(1942), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(1942), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), + [1360] = { + [sym_expression] = STATE(2815), + [sym__string] = STATE(2887), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(2887), + [sym_concatenated_string] = STATE(2887), + [sym_string_literal] = STATE(1947), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(1947), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), [sym_identifier] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(4668), + [anon_sym_LPAREN2] = ACTIONS(4681), [anon_sym_BANG] = ACTIONS(1948), [anon_sym_TILDE] = ACTIONS(1948), [anon_sym_DASH] = ACTIONS(1946), [anon_sym_PLUS] = ACTIONS(1946), - [anon_sym_STAR] = ACTIONS(4336), - [anon_sym_AMP] = ACTIONS(4336), + [anon_sym_STAR] = ACTIONS(4346), + [anon_sym_AMP] = ACTIONS(4346), [anon_sym___extension__] = ACTIONS(1950), [anon_sym_COLON_COLON] = ACTIONS(1952), - [anon_sym_LBRACK] = ACTIONS(4921), + [anon_sym_LBRACK] = ACTIONS(4952), [sym_primitive_type] = ACTIONS(1956), [anon_sym_not] = ACTIONS(1946), [anon_sym_compl] = ACTIONS(1946), - [anon_sym_DASH_DASH] = ACTIONS(4417), - [anon_sym_PLUS_PLUS] = ACTIONS(4417), + [anon_sym_DASH_DASH] = ACTIONS(4348), + [anon_sym_PLUS_PLUS] = ACTIONS(4348), [anon_sym_sizeof] = ACTIONS(1958), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), @@ -210676,7 +216577,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1976), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(1980), [anon_sym_R_DQUOTE] = ACTIONS(1982), [anon_sym_LR_DQUOTE] = ACTIONS(1982), @@ -210688,66 +216589,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [1312] = { - [sym_expression] = STATE(2819), - [sym__string] = STATE(2870), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(2870), - [sym_concatenated_string] = STATE(2870), - [sym_string_literal] = STATE(1942), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(1942), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), + [1361] = { + [sym_expression] = STATE(2868), + [sym__string] = STATE(2887), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(2887), + [sym_concatenated_string] = STATE(2887), + [sym_string_literal] = STATE(1947), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(1947), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), [sym_identifier] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(4668), + [anon_sym_LPAREN2] = ACTIONS(4681), [anon_sym_BANG] = ACTIONS(1948), [anon_sym_TILDE] = ACTIONS(1948), [anon_sym_DASH] = ACTIONS(1946), [anon_sym_PLUS] = ACTIONS(1946), - [anon_sym_STAR] = ACTIONS(4336), - [anon_sym_AMP] = ACTIONS(4336), + [anon_sym_STAR] = ACTIONS(4346), + [anon_sym_AMP] = ACTIONS(4346), [anon_sym___extension__] = ACTIONS(1950), [anon_sym_COLON_COLON] = ACTIONS(1952), [anon_sym_LBRACK] = ACTIONS(2020), [sym_primitive_type] = ACTIONS(1956), [anon_sym_not] = ACTIONS(1946), [anon_sym_compl] = ACTIONS(1946), - [anon_sym_DASH_DASH] = ACTIONS(4417), - [anon_sym_PLUS_PLUS] = ACTIONS(4417), + [anon_sym_DASH_DASH] = ACTIONS(4348), + [anon_sym_PLUS_PLUS] = ACTIONS(4348), [anon_sym_sizeof] = ACTIONS(1958), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), @@ -210776,7 +216677,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1976), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(1980), [anon_sym_R_DQUOTE] = ACTIONS(1982), [anon_sym_LR_DQUOTE] = ACTIONS(1982), @@ -210788,66 +216689,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [1313] = { - [sym_expression] = STATE(2812), - [sym__string] = STATE(2870), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(2870), - [sym_concatenated_string] = STATE(2870), - [sym_string_literal] = STATE(1942), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(1942), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), + [1362] = { + [sym_expression] = STATE(2825), + [sym__string] = STATE(2887), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(2887), + [sym_concatenated_string] = STATE(2887), + [sym_string_literal] = STATE(1947), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(1947), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), [sym_identifier] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(4668), + [anon_sym_LPAREN2] = ACTIONS(4681), [anon_sym_BANG] = ACTIONS(1948), [anon_sym_TILDE] = ACTIONS(1948), [anon_sym_DASH] = ACTIONS(1946), [anon_sym_PLUS] = ACTIONS(1946), - [anon_sym_STAR] = ACTIONS(4336), - [anon_sym_AMP] = ACTIONS(4336), + [anon_sym_STAR] = ACTIONS(4346), + [anon_sym_AMP] = ACTIONS(4346), [anon_sym___extension__] = ACTIONS(1950), [anon_sym_COLON_COLON] = ACTIONS(1952), [anon_sym_LBRACK] = ACTIONS(2020), [sym_primitive_type] = ACTIONS(1956), [anon_sym_not] = ACTIONS(1946), [anon_sym_compl] = ACTIONS(1946), - [anon_sym_DASH_DASH] = ACTIONS(4417), - [anon_sym_PLUS_PLUS] = ACTIONS(4417), + [anon_sym_DASH_DASH] = ACTIONS(4348), + [anon_sym_PLUS_PLUS] = ACTIONS(4348), [anon_sym_sizeof] = ACTIONS(1958), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), @@ -210876,7 +216777,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1976), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(1980), [anon_sym_R_DQUOTE] = ACTIONS(1982), [anon_sym_LR_DQUOTE] = ACTIONS(1982), @@ -210888,66 +216789,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [1314] = { - [sym_expression] = STATE(2821), - [sym__string] = STATE(2870), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(2870), - [sym_concatenated_string] = STATE(2870), - [sym_string_literal] = STATE(1942), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(1942), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), + [1363] = { + [sym_expression] = STATE(2827), + [sym__string] = STATE(2887), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(2887), + [sym_concatenated_string] = STATE(2887), + [sym_string_literal] = STATE(1947), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(1947), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), [sym_identifier] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(4668), + [anon_sym_LPAREN2] = ACTIONS(4681), [anon_sym_BANG] = ACTIONS(1948), [anon_sym_TILDE] = ACTIONS(1948), [anon_sym_DASH] = ACTIONS(1946), [anon_sym_PLUS] = ACTIONS(1946), - [anon_sym_STAR] = ACTIONS(4336), - [anon_sym_AMP] = ACTIONS(4336), + [anon_sym_STAR] = ACTIONS(4346), + [anon_sym_AMP] = ACTIONS(4346), [anon_sym___extension__] = ACTIONS(1950), [anon_sym_COLON_COLON] = ACTIONS(1952), [anon_sym_LBRACK] = ACTIONS(2020), [sym_primitive_type] = ACTIONS(1956), [anon_sym_not] = ACTIONS(1946), [anon_sym_compl] = ACTIONS(1946), - [anon_sym_DASH_DASH] = ACTIONS(4417), - [anon_sym_PLUS_PLUS] = ACTIONS(4417), + [anon_sym_DASH_DASH] = ACTIONS(4348), + [anon_sym_PLUS_PLUS] = ACTIONS(4348), [anon_sym_sizeof] = ACTIONS(1958), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), @@ -210976,7 +216877,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1976), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(1980), [anon_sym_R_DQUOTE] = ACTIONS(1982), [anon_sym_LR_DQUOTE] = ACTIONS(1982), @@ -210988,66 +216889,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [1315] = { - [sym_expression] = STATE(2377), - [sym__string] = STATE(2950), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(2950), - [sym_concatenated_string] = STATE(2950), - [sym_string_literal] = STATE(2034), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(2034), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), + [1364] = { + [sym_expression] = STATE(2434), + [sym__string] = STATE(2917), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(2917), + [sym_concatenated_string] = STATE(2917), + [sym_string_literal] = STATE(2114), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(2114), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), [sym_identifier] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(4555), + [anon_sym_LPAREN2] = ACTIONS(4565), [anon_sym_BANG] = ACTIONS(1994), [anon_sym_TILDE] = ACTIONS(1994), [anon_sym_DASH] = ACTIONS(1992), [anon_sym_PLUS] = ACTIONS(1992), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), [anon_sym___extension__] = ACTIONS(1996), [anon_sym_COLON_COLON] = ACTIONS(1998), [anon_sym_LBRACK] = ACTIONS(2020), [sym_primitive_type] = ACTIONS(1956), [anon_sym_not] = ACTIONS(1992), [anon_sym_compl] = ACTIONS(1992), - [anon_sym_DASH_DASH] = ACTIONS(3343), - [anon_sym_PLUS_PLUS] = ACTIONS(3343), + [anon_sym_DASH_DASH] = ACTIONS(3355), + [anon_sym_PLUS_PLUS] = ACTIONS(3355), [anon_sym_sizeof] = ACTIONS(2000), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), @@ -211076,7 +216977,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1976), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(2008), [anon_sym_R_DQUOTE] = ACTIONS(2010), [anon_sym_LR_DQUOTE] = ACTIONS(2010), @@ -211088,66 +216989,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [1316] = { - [sym_expression] = STATE(2377), - [sym__string] = STATE(2950), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(2950), - [sym_concatenated_string] = STATE(2950), - [sym_string_literal] = STATE(2034), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(2034), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), - [sym_identifier] = ACTIONS(4923), - [anon_sym_LPAREN2] = ACTIONS(4555), + [1365] = { + [sym_expression] = STATE(2434), + [sym__string] = STATE(2917), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(2917), + [sym_concatenated_string] = STATE(2917), + [sym_string_literal] = STATE(2114), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(2114), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), + [sym_identifier] = ACTIONS(4954), + [anon_sym_LPAREN2] = ACTIONS(4565), [anon_sym_BANG] = ACTIONS(1994), [anon_sym_TILDE] = ACTIONS(1994), [anon_sym_DASH] = ACTIONS(1992), [anon_sym_PLUS] = ACTIONS(1992), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), [anon_sym___extension__] = ACTIONS(1996), [anon_sym_COLON_COLON] = ACTIONS(1998), [anon_sym_LBRACK] = ACTIONS(2020), [sym_primitive_type] = ACTIONS(1956), [anon_sym_not] = ACTIONS(1992), [anon_sym_compl] = ACTIONS(1992), - [anon_sym_DASH_DASH] = ACTIONS(3343), - [anon_sym_PLUS_PLUS] = ACTIONS(3343), + [anon_sym_DASH_DASH] = ACTIONS(3355), + [anon_sym_PLUS_PLUS] = ACTIONS(3355), [anon_sym_sizeof] = ACTIONS(2000), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), @@ -211176,7 +217077,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1976), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(2008), [anon_sym_R_DQUOTE] = ACTIONS(2010), [anon_sym_LR_DQUOTE] = ACTIONS(2010), @@ -211188,66 +217089,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [1317] = { - [sym_expression] = STATE(2379), - [sym__string] = STATE(2950), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(2950), - [sym_concatenated_string] = STATE(2950), - [sym_string_literal] = STATE(2034), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(2034), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), + [1366] = { + [sym_expression] = STATE(2401), + [sym__string] = STATE(2917), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(2917), + [sym_concatenated_string] = STATE(2917), + [sym_string_literal] = STATE(2114), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(2114), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), [sym_identifier] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(4555), + [anon_sym_LPAREN2] = ACTIONS(4565), [anon_sym_BANG] = ACTIONS(1994), [anon_sym_TILDE] = ACTIONS(1994), [anon_sym_DASH] = ACTIONS(1992), [anon_sym_PLUS] = ACTIONS(1992), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), [anon_sym___extension__] = ACTIONS(1996), [anon_sym_COLON_COLON] = ACTIONS(1998), [anon_sym_LBRACK] = ACTIONS(2020), [sym_primitive_type] = ACTIONS(1956), [anon_sym_not] = ACTIONS(1992), [anon_sym_compl] = ACTIONS(1992), - [anon_sym_DASH_DASH] = ACTIONS(3343), - [anon_sym_PLUS_PLUS] = ACTIONS(3343), + [anon_sym_DASH_DASH] = ACTIONS(3355), + [anon_sym_PLUS_PLUS] = ACTIONS(3355), [anon_sym_sizeof] = ACTIONS(2000), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), @@ -211276,7 +217177,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1976), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(2008), [anon_sym_R_DQUOTE] = ACTIONS(2010), [anon_sym_LR_DQUOTE] = ACTIONS(2010), @@ -211288,67 +217189,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [1318] = { - [sym_expression] = STATE(4593), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3568), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3568), - [sym_call_expression] = STATE(3568), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3568), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3568), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3568), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3568), - [sym_identifier] = ACTIONS(3867), - [anon_sym_LPAREN2] = ACTIONS(4642), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_TILDE] = ACTIONS(3871), - [anon_sym_DASH] = ACTIONS(3869), - [anon_sym_PLUS] = ACTIONS(3869), - [anon_sym_STAR] = ACTIONS(4312), - [anon_sym_AMP] = ACTIONS(4312), - [anon_sym___extension__] = ACTIONS(3873), - [anon_sym_COLON_COLON] = ACTIONS(3875), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3869), - [anon_sym_compl] = ACTIONS(3869), - [anon_sym_DASH_DASH] = ACTIONS(4404), - [anon_sym_PLUS_PLUS] = ACTIONS(4404), - [anon_sym_sizeof] = ACTIONS(3877), + [1367] = { + [sym_expression] = STATE(4182), + [sym__string] = STATE(4269), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(2921), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(2921), + [sym_call_expression] = STATE(2921), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(2921), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(2921), + [sym_char_literal] = STATE(4269), + [sym_concatenated_string] = STATE(4269), + [sym_string_literal] = STATE(3102), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3102), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2921), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(2921), + [sym_identifier] = ACTIONS(4356), + [anon_sym_LPAREN2] = ACTIONS(4654), + [anon_sym_BANG] = ACTIONS(3617), + [anon_sym_TILDE] = ACTIONS(3617), + [anon_sym_DASH] = ACTIONS(3615), + [anon_sym_PLUS] = ACTIONS(3615), + [anon_sym_STAR] = ACTIONS(4346), + [anon_sym_AMP] = ACTIONS(4346), + [anon_sym___extension__] = ACTIONS(3619), + [anon_sym_COLON_COLON] = ACTIONS(3621), + [anon_sym_LBRACK] = ACTIONS(4956), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3615), + [anon_sym_compl] = ACTIONS(3615), + [anon_sym_DASH_DASH] = ACTIONS(4358), + [anon_sym_PLUS_PLUS] = ACTIONS(4358), + [anon_sym_sizeof] = ACTIONS(3625), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -211359,96 +217260,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(113), [anon_sym___asm__] = ACTIONS(113), [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), + [sym_number_literal] = ACTIONS(3627), + [anon_sym_L_SQUOTE] = ACTIONS(3629), + [anon_sym_u_SQUOTE] = ACTIONS(3629), + [anon_sym_U_SQUOTE] = ACTIONS(3629), + [anon_sym_u8_SQUOTE] = ACTIONS(3629), + [anon_sym_SQUOTE] = ACTIONS(3629), + [anon_sym_L_DQUOTE] = ACTIONS(3631), + [anon_sym_u_DQUOTE] = ACTIONS(3631), + [anon_sym_U_DQUOTE] = ACTIONS(3631), + [anon_sym_u8_DQUOTE] = ACTIONS(3631), + [anon_sym_DQUOTE] = ACTIONS(3631), [sym_true] = ACTIONS(229), [sym_false] = ACTIONS(229), [anon_sym_NULL] = ACTIONS(123), [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3879), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3881), - [anon_sym_new] = ACTIONS(3865), - [anon_sym_requires] = ACTIONS(165), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3633), + [anon_sym_R_DQUOTE] = ACTIONS(3635), + [anon_sym_LR_DQUOTE] = ACTIONS(3635), + [anon_sym_uR_DQUOTE] = ACTIONS(3635), + [anon_sym_UR_DQUOTE] = ACTIONS(3635), + [anon_sym_u8R_DQUOTE] = ACTIONS(3635), + [anon_sym_co_await] = ACTIONS(3637), + [anon_sym_new] = ACTIONS(3639), + [anon_sym_requires] = ACTIONS(3641), [sym_this] = ACTIONS(229), }, - [1319] = { - [sym_expression] = STATE(4159), - [sym__string] = STATE(4199), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(2935), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(2935), - [sym_call_expression] = STATE(2935), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(2935), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(2935), - [sym_char_literal] = STATE(4199), - [sym_concatenated_string] = STATE(4199), - [sym_string_literal] = STATE(3059), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3059), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2935), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(2935), - [sym_identifier] = ACTIONS(4334), - [anon_sym_LPAREN2] = ACTIONS(4658), - [anon_sym_BANG] = ACTIONS(3609), - [anon_sym_TILDE] = ACTIONS(3609), - [anon_sym_DASH] = ACTIONS(3607), - [anon_sym_PLUS] = ACTIONS(3607), - [anon_sym_STAR] = ACTIONS(4336), - [anon_sym_AMP] = ACTIONS(4336), - [anon_sym___extension__] = ACTIONS(3611), - [anon_sym_COLON_COLON] = ACTIONS(3613), - [anon_sym_LBRACK] = ACTIONS(4925), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3607), - [anon_sym_compl] = ACTIONS(3607), - [anon_sym_DASH_DASH] = ACTIONS(4338), - [anon_sym_PLUS_PLUS] = ACTIONS(4338), - [anon_sym_sizeof] = ACTIONS(3617), + [1368] = { + [sym_expression] = STATE(3747), + [sym__string] = STATE(4269), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(2921), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(2921), + [sym_call_expression] = STATE(2921), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(2921), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(2921), + [sym_char_literal] = STATE(4269), + [sym_concatenated_string] = STATE(4269), + [sym_string_literal] = STATE(3102), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3102), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2921), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(2921), + [sym_identifier] = ACTIONS(4356), + [anon_sym_LPAREN2] = ACTIONS(4654), + [anon_sym_BANG] = ACTIONS(3617), + [anon_sym_TILDE] = ACTIONS(3617), + [anon_sym_DASH] = ACTIONS(3615), + [anon_sym_PLUS] = ACTIONS(3615), + [anon_sym_STAR] = ACTIONS(4346), + [anon_sym_AMP] = ACTIONS(4346), + [anon_sym___extension__] = ACTIONS(3619), + [anon_sym_COLON_COLON] = ACTIONS(3621), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3615), + [anon_sym_compl] = ACTIONS(3615), + [anon_sym_DASH_DASH] = ACTIONS(4358), + [anon_sym_PLUS_PLUS] = ACTIONS(4358), + [anon_sym_sizeof] = ACTIONS(3625), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -211459,296 +217360,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(113), [anon_sym___asm__] = ACTIONS(113), [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3619), - [anon_sym_L_SQUOTE] = ACTIONS(3621), - [anon_sym_u_SQUOTE] = ACTIONS(3621), - [anon_sym_U_SQUOTE] = ACTIONS(3621), - [anon_sym_u8_SQUOTE] = ACTIONS(3621), - [anon_sym_SQUOTE] = ACTIONS(3621), - [anon_sym_L_DQUOTE] = ACTIONS(3623), - [anon_sym_u_DQUOTE] = ACTIONS(3623), - [anon_sym_U_DQUOTE] = ACTIONS(3623), - [anon_sym_u8_DQUOTE] = ACTIONS(3623), - [anon_sym_DQUOTE] = ACTIONS(3623), + [sym_number_literal] = ACTIONS(3627), + [anon_sym_L_SQUOTE] = ACTIONS(3629), + [anon_sym_u_SQUOTE] = ACTIONS(3629), + [anon_sym_U_SQUOTE] = ACTIONS(3629), + [anon_sym_u8_SQUOTE] = ACTIONS(3629), + [anon_sym_SQUOTE] = ACTIONS(3629), + [anon_sym_L_DQUOTE] = ACTIONS(3631), + [anon_sym_u_DQUOTE] = ACTIONS(3631), + [anon_sym_U_DQUOTE] = ACTIONS(3631), + [anon_sym_u8_DQUOTE] = ACTIONS(3631), + [anon_sym_DQUOTE] = ACTIONS(3631), [sym_true] = ACTIONS(229), [sym_false] = ACTIONS(229), [anon_sym_NULL] = ACTIONS(123), [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3625), - [anon_sym_R_DQUOTE] = ACTIONS(3627), - [anon_sym_LR_DQUOTE] = ACTIONS(3627), - [anon_sym_uR_DQUOTE] = ACTIONS(3627), - [anon_sym_UR_DQUOTE] = ACTIONS(3627), - [anon_sym_u8R_DQUOTE] = ACTIONS(3627), - [anon_sym_co_await] = ACTIONS(3629), - [anon_sym_new] = ACTIONS(3631), - [anon_sym_requires] = ACTIONS(3633), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3633), + [anon_sym_R_DQUOTE] = ACTIONS(3635), + [anon_sym_LR_DQUOTE] = ACTIONS(3635), + [anon_sym_uR_DQUOTE] = ACTIONS(3635), + [anon_sym_UR_DQUOTE] = ACTIONS(3635), + [anon_sym_u8R_DQUOTE] = ACTIONS(3635), + [anon_sym_co_await] = ACTIONS(3637), + [anon_sym_new] = ACTIONS(3639), + [anon_sym_requires] = ACTIONS(3641), [sym_this] = ACTIONS(229), }, - [1320] = { - [sym_expression] = STATE(3766), - [sym__string] = STATE(4199), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(2935), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(2935), - [sym_call_expression] = STATE(2935), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(2935), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(2935), - [sym_char_literal] = STATE(4199), - [sym_concatenated_string] = STATE(4199), - [sym_string_literal] = STATE(3059), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3059), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2935), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(2935), - [sym_identifier] = ACTIONS(4334), - [anon_sym_LPAREN2] = ACTIONS(4658), - [anon_sym_BANG] = ACTIONS(3609), - [anon_sym_TILDE] = ACTIONS(3609), - [anon_sym_DASH] = ACTIONS(3607), - [anon_sym_PLUS] = ACTIONS(3607), + [1369] = { + [sym_expression] = STATE(2432), + [sym__string] = STATE(3178), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(3178), + [sym_concatenated_string] = STATE(3178), + [sym_string_literal] = STATE(2317), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(2317), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), + [sym_identifier] = ACTIONS(2301), + [anon_sym_LPAREN2] = ACTIONS(4652), + [anon_sym_BANG] = ACTIONS(2305), + [anon_sym_TILDE] = ACTIONS(2305), + [anon_sym_DASH] = ACTIONS(2303), + [anon_sym_PLUS] = ACTIONS(2303), [anon_sym_STAR] = ACTIONS(4336), [anon_sym_AMP] = ACTIONS(4336), - [anon_sym___extension__] = ACTIONS(3611), - [anon_sym_COLON_COLON] = ACTIONS(3613), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3607), - [anon_sym_compl] = ACTIONS(3607), - [anon_sym_DASH_DASH] = ACTIONS(4338), - [anon_sym_PLUS_PLUS] = ACTIONS(4338), - [anon_sym_sizeof] = ACTIONS(3617), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3619), - [anon_sym_L_SQUOTE] = ACTIONS(3621), - [anon_sym_u_SQUOTE] = ACTIONS(3621), - [anon_sym_U_SQUOTE] = ACTIONS(3621), - [anon_sym_u8_SQUOTE] = ACTIONS(3621), - [anon_sym_SQUOTE] = ACTIONS(3621), - [anon_sym_L_DQUOTE] = ACTIONS(3623), - [anon_sym_u_DQUOTE] = ACTIONS(3623), - [anon_sym_U_DQUOTE] = ACTIONS(3623), - [anon_sym_u8_DQUOTE] = ACTIONS(3623), - [anon_sym_DQUOTE] = ACTIONS(3623), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3625), - [anon_sym_R_DQUOTE] = ACTIONS(3627), - [anon_sym_LR_DQUOTE] = ACTIONS(3627), - [anon_sym_uR_DQUOTE] = ACTIONS(3627), - [anon_sym_UR_DQUOTE] = ACTIONS(3627), - [anon_sym_u8R_DQUOTE] = ACTIONS(3627), - [anon_sym_co_await] = ACTIONS(3629), - [anon_sym_new] = ACTIONS(3631), - [anon_sym_requires] = ACTIONS(3633), - [sym_this] = ACTIONS(229), - }, - [1321] = { - [sym_expression] = STATE(3782), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(4927), - [anon_sym_LPAREN2] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), - }, - [1322] = { - [sym_expression] = STATE(2398), - [sym__string] = STATE(3181), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(3181), - [sym_concatenated_string] = STATE(3181), - [sym_string_literal] = STATE(2297), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(2297), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), - [sym_identifier] = ACTIONS(2305), - [anon_sym_LPAREN2] = ACTIONS(4691), - [anon_sym_BANG] = ACTIONS(2309), - [anon_sym_TILDE] = ACTIONS(2309), - [anon_sym_DASH] = ACTIONS(2307), - [anon_sym_PLUS] = ACTIONS(2307), - [anon_sym_STAR] = ACTIONS(4382), - [anon_sym_AMP] = ACTIONS(4382), - [anon_sym___extension__] = ACTIONS(2311), - [anon_sym_COLON_COLON] = ACTIONS(2313), + [anon_sym___extension__] = ACTIONS(2307), + [anon_sym_COLON_COLON] = ACTIONS(2309), [anon_sym_LBRACK] = ACTIONS(2020), [sym_primitive_type] = ACTIONS(1956), - [anon_sym_not] = ACTIONS(2307), - [anon_sym_compl] = ACTIONS(2307), - [anon_sym_DASH_DASH] = ACTIONS(4396), - [anon_sym_PLUS_PLUS] = ACTIONS(4396), - [anon_sym_sizeof] = ACTIONS(2315), + [anon_sym_not] = ACTIONS(2303), + [anon_sym_compl] = ACTIONS(2303), + [anon_sym_DASH_DASH] = ACTIONS(4352), + [anon_sym_PLUS_PLUS] = ACTIONS(4352), + [anon_sym_sizeof] = ACTIONS(2311), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), [anon_sym__alignof] = ACTIONS(1960), @@ -211759,496 +217460,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(1966), [anon_sym___asm__] = ACTIONS(1966), [anon_sym___asm] = ACTIONS(1966), - [sym_number_literal] = ACTIONS(2317), - [anon_sym_L_SQUOTE] = ACTIONS(2319), - [anon_sym_u_SQUOTE] = ACTIONS(2319), - [anon_sym_U_SQUOTE] = ACTIONS(2319), - [anon_sym_u8_SQUOTE] = ACTIONS(2319), - [anon_sym_SQUOTE] = ACTIONS(2319), - [anon_sym_L_DQUOTE] = ACTIONS(2321), - [anon_sym_u_DQUOTE] = ACTIONS(2321), - [anon_sym_U_DQUOTE] = ACTIONS(2321), - [anon_sym_u8_DQUOTE] = ACTIONS(2321), - [anon_sym_DQUOTE] = ACTIONS(2321), + [sym_number_literal] = ACTIONS(2313), + [anon_sym_L_SQUOTE] = ACTIONS(2315), + [anon_sym_u_SQUOTE] = ACTIONS(2315), + [anon_sym_U_SQUOTE] = ACTIONS(2315), + [anon_sym_u8_SQUOTE] = ACTIONS(2315), + [anon_sym_SQUOTE] = ACTIONS(2315), + [anon_sym_L_DQUOTE] = ACTIONS(2317), + [anon_sym_u_DQUOTE] = ACTIONS(2317), + [anon_sym_U_DQUOTE] = ACTIONS(2317), + [anon_sym_u8_DQUOTE] = ACTIONS(2317), + [anon_sym_DQUOTE] = ACTIONS(2317), [sym_true] = ACTIONS(1974), [sym_false] = ACTIONS(1974), [anon_sym_NULL] = ACTIONS(1976), [anon_sym_nullptr] = ACTIONS(1976), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(2323), - [anon_sym_R_DQUOTE] = ACTIONS(2325), - [anon_sym_LR_DQUOTE] = ACTIONS(2325), - [anon_sym_uR_DQUOTE] = ACTIONS(2325), - [anon_sym_UR_DQUOTE] = ACTIONS(2325), - [anon_sym_u8R_DQUOTE] = ACTIONS(2325), - [anon_sym_co_await] = ACTIONS(2327), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(2319), + [anon_sym_R_DQUOTE] = ACTIONS(2321), + [anon_sym_LR_DQUOTE] = ACTIONS(2321), + [anon_sym_uR_DQUOTE] = ACTIONS(2321), + [anon_sym_UR_DQUOTE] = ACTIONS(2321), + [anon_sym_u8R_DQUOTE] = ACTIONS(2321), + [anon_sym_co_await] = ACTIONS(2323), [anon_sym_new] = ACTIONS(2014), [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [1323] = { - [sym_expression] = STATE(4158), - [sym__string] = STATE(4199), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(2935), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(2935), - [sym_call_expression] = STATE(2935), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(2935), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(2935), - [sym_char_literal] = STATE(4199), - [sym_concatenated_string] = STATE(4199), - [sym_string_literal] = STATE(3059), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3059), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2935), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(2935), - [sym_identifier] = ACTIONS(4334), - [anon_sym_LPAREN2] = ACTIONS(4658), - [anon_sym_BANG] = ACTIONS(3609), - [anon_sym_TILDE] = ACTIONS(3609), - [anon_sym_DASH] = ACTIONS(3607), - [anon_sym_PLUS] = ACTIONS(3607), - [anon_sym_STAR] = ACTIONS(4336), - [anon_sym_AMP] = ACTIONS(4336), - [anon_sym___extension__] = ACTIONS(3611), - [anon_sym_COLON_COLON] = ACTIONS(3613), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3607), - [anon_sym_compl] = ACTIONS(3607), - [anon_sym_DASH_DASH] = ACTIONS(4338), - [anon_sym_PLUS_PLUS] = ACTIONS(4338), - [anon_sym_sizeof] = ACTIONS(3617), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3619), - [anon_sym_L_SQUOTE] = ACTIONS(3621), - [anon_sym_u_SQUOTE] = ACTIONS(3621), - [anon_sym_U_SQUOTE] = ACTIONS(3621), - [anon_sym_u8_SQUOTE] = ACTIONS(3621), - [anon_sym_SQUOTE] = ACTIONS(3621), - [anon_sym_L_DQUOTE] = ACTIONS(3623), - [anon_sym_u_DQUOTE] = ACTIONS(3623), - [anon_sym_U_DQUOTE] = ACTIONS(3623), - [anon_sym_u8_DQUOTE] = ACTIONS(3623), - [anon_sym_DQUOTE] = ACTIONS(3623), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3625), - [anon_sym_R_DQUOTE] = ACTIONS(3627), - [anon_sym_LR_DQUOTE] = ACTIONS(3627), - [anon_sym_uR_DQUOTE] = ACTIONS(3627), - [anon_sym_UR_DQUOTE] = ACTIONS(3627), - [anon_sym_u8R_DQUOTE] = ACTIONS(3627), - [anon_sym_co_await] = ACTIONS(3629), - [anon_sym_new] = ACTIONS(3631), - [anon_sym_requires] = ACTIONS(3633), - [sym_this] = ACTIONS(229), - }, - [1324] = { - [sym_expression] = STATE(4167), - [sym__string] = STATE(4199), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(2935), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(2935), - [sym_call_expression] = STATE(2935), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(2935), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(2935), - [sym_char_literal] = STATE(4199), - [sym_concatenated_string] = STATE(4199), - [sym_string_literal] = STATE(3059), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3059), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2935), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(2935), - [sym_identifier] = ACTIONS(4334), - [anon_sym_LPAREN2] = ACTIONS(4658), - [anon_sym_BANG] = ACTIONS(3609), - [anon_sym_TILDE] = ACTIONS(3609), - [anon_sym_DASH] = ACTIONS(3607), - [anon_sym_PLUS] = ACTIONS(3607), - [anon_sym_STAR] = ACTIONS(4336), - [anon_sym_AMP] = ACTIONS(4336), - [anon_sym___extension__] = ACTIONS(3611), - [anon_sym_COLON_COLON] = ACTIONS(3613), - [anon_sym_LBRACK] = ACTIONS(4929), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3607), - [anon_sym_compl] = ACTIONS(3607), - [anon_sym_DASH_DASH] = ACTIONS(4338), - [anon_sym_PLUS_PLUS] = ACTIONS(4338), - [anon_sym_sizeof] = ACTIONS(3617), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3619), - [anon_sym_L_SQUOTE] = ACTIONS(3621), - [anon_sym_u_SQUOTE] = ACTIONS(3621), - [anon_sym_U_SQUOTE] = ACTIONS(3621), - [anon_sym_u8_SQUOTE] = ACTIONS(3621), - [anon_sym_SQUOTE] = ACTIONS(3621), - [anon_sym_L_DQUOTE] = ACTIONS(3623), - [anon_sym_u_DQUOTE] = ACTIONS(3623), - [anon_sym_U_DQUOTE] = ACTIONS(3623), - [anon_sym_u8_DQUOTE] = ACTIONS(3623), - [anon_sym_DQUOTE] = ACTIONS(3623), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3625), - [anon_sym_R_DQUOTE] = ACTIONS(3627), - [anon_sym_LR_DQUOTE] = ACTIONS(3627), - [anon_sym_uR_DQUOTE] = ACTIONS(3627), - [anon_sym_UR_DQUOTE] = ACTIONS(3627), - [anon_sym_u8R_DQUOTE] = ACTIONS(3627), - [anon_sym_co_await] = ACTIONS(3629), - [anon_sym_new] = ACTIONS(3631), - [anon_sym_requires] = ACTIONS(3633), - [sym_this] = ACTIONS(229), - }, - [1325] = { - [sym_expression] = STATE(4685), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), - }, - [1326] = { - [sym_expression] = STATE(4554), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), - }, - [1327] = { - [sym_expression] = STATE(3766), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), - [anon_sym_COLON_COLON] = ACTIONS(47), + [1370] = { + [sym_expression] = STATE(4168), + [sym__string] = STATE(4269), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(2921), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(2921), + [sym_call_expression] = STATE(2921), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(2921), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(2921), + [sym_char_literal] = STATE(4269), + [sym_concatenated_string] = STATE(4269), + [sym_string_literal] = STATE(3102), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3102), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2921), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(2921), + [sym_identifier] = ACTIONS(4356), + [anon_sym_LPAREN2] = ACTIONS(4654), + [anon_sym_BANG] = ACTIONS(3617), + [anon_sym_TILDE] = ACTIONS(3617), + [anon_sym_DASH] = ACTIONS(3615), + [anon_sym_PLUS] = ACTIONS(3615), + [anon_sym_STAR] = ACTIONS(4346), + [anon_sym_AMP] = ACTIONS(4346), + [anon_sym___extension__] = ACTIONS(3619), + [anon_sym_COLON_COLON] = ACTIONS(3621), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3615), + [anon_sym_compl] = ACTIONS(3615), + [anon_sym_DASH_DASH] = ACTIONS(4358), + [anon_sym_PLUS_PLUS] = ACTIONS(4358), + [anon_sym_sizeof] = ACTIONS(3625), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -212259,96 +217560,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(113), [anon_sym___asm__] = ACTIONS(113), [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), + [sym_number_literal] = ACTIONS(3627), + [anon_sym_L_SQUOTE] = ACTIONS(3629), + [anon_sym_u_SQUOTE] = ACTIONS(3629), + [anon_sym_U_SQUOTE] = ACTIONS(3629), + [anon_sym_u8_SQUOTE] = ACTIONS(3629), + [anon_sym_SQUOTE] = ACTIONS(3629), + [anon_sym_L_DQUOTE] = ACTIONS(3631), + [anon_sym_u_DQUOTE] = ACTIONS(3631), + [anon_sym_U_DQUOTE] = ACTIONS(3631), + [anon_sym_u8_DQUOTE] = ACTIONS(3631), + [anon_sym_DQUOTE] = ACTIONS(3631), [sym_true] = ACTIONS(229), [sym_false] = ACTIONS(229), [anon_sym_NULL] = ACTIONS(123), [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3633), + [anon_sym_R_DQUOTE] = ACTIONS(3635), + [anon_sym_LR_DQUOTE] = ACTIONS(3635), + [anon_sym_uR_DQUOTE] = ACTIONS(3635), + [anon_sym_UR_DQUOTE] = ACTIONS(3635), + [anon_sym_u8R_DQUOTE] = ACTIONS(3635), + [anon_sym_co_await] = ACTIONS(3637), + [anon_sym_new] = ACTIONS(3639), + [anon_sym_requires] = ACTIONS(3641), [sym_this] = ACTIONS(229), }, - [1328] = { - [sym_expression] = STATE(4432), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3678), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3678), - [sym_call_expression] = STATE(3678), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3678), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3678), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3678), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3678), - [sym_identifier] = ACTIONS(3849), - [anon_sym_LPAREN2] = ACTIONS(3893), - [anon_sym_BANG] = ACTIONS(3853), - [anon_sym_TILDE] = ACTIONS(3853), - [anon_sym_DASH] = ACTIONS(3851), - [anon_sym_PLUS] = ACTIONS(3851), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(3855), - [anon_sym_COLON_COLON] = ACTIONS(3857), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3851), - [anon_sym_compl] = ACTIONS(3851), - [anon_sym_DASH_DASH] = ACTIONS(3897), - [anon_sym_PLUS_PLUS] = ACTIONS(3897), - [anon_sym_sizeof] = ACTIONS(3859), + [1371] = { + [sym_expression] = STATE(4188), + [sym__string] = STATE(4269), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(2921), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(2921), + [sym_call_expression] = STATE(2921), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(2921), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(2921), + [sym_char_literal] = STATE(4269), + [sym_concatenated_string] = STATE(4269), + [sym_string_literal] = STATE(3102), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3102), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2921), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(2921), + [sym_identifier] = ACTIONS(4356), + [anon_sym_LPAREN2] = ACTIONS(4654), + [anon_sym_BANG] = ACTIONS(3617), + [anon_sym_TILDE] = ACTIONS(3617), + [anon_sym_DASH] = ACTIONS(3615), + [anon_sym_PLUS] = ACTIONS(3615), + [anon_sym_STAR] = ACTIONS(4346), + [anon_sym_AMP] = ACTIONS(4346), + [anon_sym___extension__] = ACTIONS(3619), + [anon_sym_COLON_COLON] = ACTIONS(3621), + [anon_sym_LBRACK] = ACTIONS(4958), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3615), + [anon_sym_compl] = ACTIONS(3615), + [anon_sym_DASH_DASH] = ACTIONS(4358), + [anon_sym_PLUS_PLUS] = ACTIONS(4358), + [anon_sym_sizeof] = ACTIONS(3625), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -212359,96 +217660,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(113), [anon_sym___asm__] = ACTIONS(113), [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), + [sym_number_literal] = ACTIONS(3627), + [anon_sym_L_SQUOTE] = ACTIONS(3629), + [anon_sym_u_SQUOTE] = ACTIONS(3629), + [anon_sym_U_SQUOTE] = ACTIONS(3629), + [anon_sym_u8_SQUOTE] = ACTIONS(3629), + [anon_sym_SQUOTE] = ACTIONS(3629), + [anon_sym_L_DQUOTE] = ACTIONS(3631), + [anon_sym_u_DQUOTE] = ACTIONS(3631), + [anon_sym_U_DQUOTE] = ACTIONS(3631), + [anon_sym_u8_DQUOTE] = ACTIONS(3631), + [anon_sym_DQUOTE] = ACTIONS(3631), [sym_true] = ACTIONS(229), [sym_false] = ACTIONS(229), [anon_sym_NULL] = ACTIONS(123), [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3861), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3863), - [anon_sym_new] = ACTIONS(3865), - [anon_sym_requires] = ACTIONS(165), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3633), + [anon_sym_R_DQUOTE] = ACTIONS(3635), + [anon_sym_LR_DQUOTE] = ACTIONS(3635), + [anon_sym_uR_DQUOTE] = ACTIONS(3635), + [anon_sym_UR_DQUOTE] = ACTIONS(3635), + [anon_sym_u8R_DQUOTE] = ACTIONS(3635), + [anon_sym_co_await] = ACTIONS(3637), + [anon_sym_new] = ACTIONS(3639), + [anon_sym_requires] = ACTIONS(3641), [sym_this] = ACTIONS(229), }, - [1329] = { - [sym_expression] = STATE(4485), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3678), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3678), - [sym_call_expression] = STATE(3678), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3678), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3678), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3678), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3678), - [sym_identifier] = ACTIONS(3849), - [anon_sym_LPAREN2] = ACTIONS(3893), - [anon_sym_BANG] = ACTIONS(3853), - [anon_sym_TILDE] = ACTIONS(3853), - [anon_sym_DASH] = ACTIONS(3851), - [anon_sym_PLUS] = ACTIONS(3851), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(3855), - [anon_sym_COLON_COLON] = ACTIONS(3857), + [1372] = { + [sym_expression] = STATE(4194), + [sym__string] = STATE(4269), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(2921), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(2921), + [sym_call_expression] = STATE(2921), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(2921), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(2921), + [sym_char_literal] = STATE(4269), + [sym_concatenated_string] = STATE(4269), + [sym_string_literal] = STATE(3102), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3102), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2921), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(2921), + [sym_identifier] = ACTIONS(4356), + [anon_sym_LPAREN2] = ACTIONS(4654), + [anon_sym_BANG] = ACTIONS(3617), + [anon_sym_TILDE] = ACTIONS(3617), + [anon_sym_DASH] = ACTIONS(3615), + [anon_sym_PLUS] = ACTIONS(3615), + [anon_sym_STAR] = ACTIONS(4346), + [anon_sym_AMP] = ACTIONS(4346), + [anon_sym___extension__] = ACTIONS(3619), + [anon_sym_COLON_COLON] = ACTIONS(3621), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3851), - [anon_sym_compl] = ACTIONS(3851), - [anon_sym_DASH_DASH] = ACTIONS(3897), - [anon_sym_PLUS_PLUS] = ACTIONS(3897), - [anon_sym_sizeof] = ACTIONS(3859), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3615), + [anon_sym_compl] = ACTIONS(3615), + [anon_sym_DASH_DASH] = ACTIONS(4358), + [anon_sym_PLUS_PLUS] = ACTIONS(4358), + [anon_sym_sizeof] = ACTIONS(3625), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -212459,196 +217760,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(113), [anon_sym___asm__] = ACTIONS(113), [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), + [sym_number_literal] = ACTIONS(3627), + [anon_sym_L_SQUOTE] = ACTIONS(3629), + [anon_sym_u_SQUOTE] = ACTIONS(3629), + [anon_sym_U_SQUOTE] = ACTIONS(3629), + [anon_sym_u8_SQUOTE] = ACTIONS(3629), + [anon_sym_SQUOTE] = ACTIONS(3629), + [anon_sym_L_DQUOTE] = ACTIONS(3631), + [anon_sym_u_DQUOTE] = ACTIONS(3631), + [anon_sym_U_DQUOTE] = ACTIONS(3631), + [anon_sym_u8_DQUOTE] = ACTIONS(3631), + [anon_sym_DQUOTE] = ACTIONS(3631), [sym_true] = ACTIONS(229), [sym_false] = ACTIONS(229), [anon_sym_NULL] = ACTIONS(123), [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3861), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3863), - [anon_sym_new] = ACTIONS(3865), - [anon_sym_requires] = ACTIONS(165), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3633), + [anon_sym_R_DQUOTE] = ACTIONS(3635), + [anon_sym_LR_DQUOTE] = ACTIONS(3635), + [anon_sym_uR_DQUOTE] = ACTIONS(3635), + [anon_sym_UR_DQUOTE] = ACTIONS(3635), + [anon_sym_u8R_DQUOTE] = ACTIONS(3635), + [anon_sym_co_await] = ACTIONS(3637), + [anon_sym_new] = ACTIONS(3639), + [anon_sym_requires] = ACTIONS(3641), [sym_this] = ACTIONS(229), - }, - [1330] = { - [sym_expression] = STATE(2398), - [sym__string] = STATE(2950), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(2950), - [sym_concatenated_string] = STATE(2950), - [sym_string_literal] = STATE(2034), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(2034), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), - [sym_identifier] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(4555), - [anon_sym_BANG] = ACTIONS(1994), - [anon_sym_TILDE] = ACTIONS(1994), - [anon_sym_DASH] = ACTIONS(1992), - [anon_sym_PLUS] = ACTIONS(1992), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(1996), - [anon_sym_COLON_COLON] = ACTIONS(1998), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(1956), - [anon_sym_not] = ACTIONS(1992), - [anon_sym_compl] = ACTIONS(1992), - [anon_sym_DASH_DASH] = ACTIONS(3343), - [anon_sym_PLUS_PLUS] = ACTIONS(3343), - [anon_sym_sizeof] = ACTIONS(2000), - [anon_sym___alignof__] = ACTIONS(1960), - [anon_sym___alignof] = ACTIONS(1960), - [anon_sym__alignof] = ACTIONS(1960), - [anon_sym_alignof] = ACTIONS(1960), - [anon_sym__Alignof] = ACTIONS(1960), - [anon_sym_offsetof] = ACTIONS(1962), - [anon_sym__Generic] = ACTIONS(1964), - [anon_sym_asm] = ACTIONS(1966), - [anon_sym___asm__] = ACTIONS(1966), - [anon_sym___asm] = ACTIONS(1966), - [sym_number_literal] = ACTIONS(2002), - [anon_sym_L_SQUOTE] = ACTIONS(2004), - [anon_sym_u_SQUOTE] = ACTIONS(2004), - [anon_sym_U_SQUOTE] = ACTIONS(2004), - [anon_sym_u8_SQUOTE] = ACTIONS(2004), - [anon_sym_SQUOTE] = ACTIONS(2004), - [anon_sym_L_DQUOTE] = ACTIONS(2006), - [anon_sym_u_DQUOTE] = ACTIONS(2006), - [anon_sym_U_DQUOTE] = ACTIONS(2006), - [anon_sym_u8_DQUOTE] = ACTIONS(2006), - [anon_sym_DQUOTE] = ACTIONS(2006), - [sym_true] = ACTIONS(1974), - [sym_false] = ACTIONS(1974), - [anon_sym_NULL] = ACTIONS(1976), - [anon_sym_nullptr] = ACTIONS(1976), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(2008), - [anon_sym_R_DQUOTE] = ACTIONS(2010), - [anon_sym_LR_DQUOTE] = ACTIONS(2010), - [anon_sym_uR_DQUOTE] = ACTIONS(2010), - [anon_sym_UR_DQUOTE] = ACTIONS(2010), - [anon_sym_u8R_DQUOTE] = ACTIONS(2010), - [anon_sym_co_await] = ACTIONS(2012), - [anon_sym_new] = ACTIONS(2014), - [anon_sym_requires] = ACTIONS(1988), - [sym_this] = ACTIONS(1974), - }, - [1331] = { - [sym_expression] = STATE(4166), - [sym__string] = STATE(4199), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(2935), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(2935), - [sym_call_expression] = STATE(2935), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(2935), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(2935), - [sym_char_literal] = STATE(4199), - [sym_concatenated_string] = STATE(4199), - [sym_string_literal] = STATE(3059), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3059), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2935), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(2935), - [sym_identifier] = ACTIONS(4334), - [anon_sym_LPAREN2] = ACTIONS(4658), - [anon_sym_BANG] = ACTIONS(3609), - [anon_sym_TILDE] = ACTIONS(3609), - [anon_sym_DASH] = ACTIONS(3607), - [anon_sym_PLUS] = ACTIONS(3607), - [anon_sym_STAR] = ACTIONS(4336), - [anon_sym_AMP] = ACTIONS(4336), - [anon_sym___extension__] = ACTIONS(3611), - [anon_sym_COLON_COLON] = ACTIONS(3613), + }, + [1373] = { + [sym_expression] = STATE(3756), + [sym__string] = STATE(4269), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(2921), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(2921), + [sym_call_expression] = STATE(2921), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(2921), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(2921), + [sym_char_literal] = STATE(4269), + [sym_concatenated_string] = STATE(4269), + [sym_string_literal] = STATE(3102), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3102), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2921), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(2921), + [sym_identifier] = ACTIONS(4356), + [anon_sym_LPAREN2] = ACTIONS(4654), + [anon_sym_BANG] = ACTIONS(3617), + [anon_sym_TILDE] = ACTIONS(3617), + [anon_sym_DASH] = ACTIONS(3615), + [anon_sym_PLUS] = ACTIONS(3615), + [anon_sym_STAR] = ACTIONS(4346), + [anon_sym_AMP] = ACTIONS(4346), + [anon_sym___extension__] = ACTIONS(3619), + [anon_sym_COLON_COLON] = ACTIONS(3621), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3607), - [anon_sym_compl] = ACTIONS(3607), - [anon_sym_DASH_DASH] = ACTIONS(4338), - [anon_sym_PLUS_PLUS] = ACTIONS(4338), - [anon_sym_sizeof] = ACTIONS(3617), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3615), + [anon_sym_compl] = ACTIONS(3615), + [anon_sym_DASH_DASH] = ACTIONS(4358), + [anon_sym_PLUS_PLUS] = ACTIONS(4358), + [anon_sym_sizeof] = ACTIONS(3625), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -212659,96 +217860,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(113), [anon_sym___asm__] = ACTIONS(113), [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3619), - [anon_sym_L_SQUOTE] = ACTIONS(3621), - [anon_sym_u_SQUOTE] = ACTIONS(3621), - [anon_sym_U_SQUOTE] = ACTIONS(3621), - [anon_sym_u8_SQUOTE] = ACTIONS(3621), - [anon_sym_SQUOTE] = ACTIONS(3621), - [anon_sym_L_DQUOTE] = ACTIONS(3623), - [anon_sym_u_DQUOTE] = ACTIONS(3623), - [anon_sym_U_DQUOTE] = ACTIONS(3623), - [anon_sym_u8_DQUOTE] = ACTIONS(3623), - [anon_sym_DQUOTE] = ACTIONS(3623), + [sym_number_literal] = ACTIONS(3627), + [anon_sym_L_SQUOTE] = ACTIONS(3629), + [anon_sym_u_SQUOTE] = ACTIONS(3629), + [anon_sym_U_SQUOTE] = ACTIONS(3629), + [anon_sym_u8_SQUOTE] = ACTIONS(3629), + [anon_sym_SQUOTE] = ACTIONS(3629), + [anon_sym_L_DQUOTE] = ACTIONS(3631), + [anon_sym_u_DQUOTE] = ACTIONS(3631), + [anon_sym_U_DQUOTE] = ACTIONS(3631), + [anon_sym_u8_DQUOTE] = ACTIONS(3631), + [anon_sym_DQUOTE] = ACTIONS(3631), [sym_true] = ACTIONS(229), [sym_false] = ACTIONS(229), [anon_sym_NULL] = ACTIONS(123), [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3625), - [anon_sym_R_DQUOTE] = ACTIONS(3627), - [anon_sym_LR_DQUOTE] = ACTIONS(3627), - [anon_sym_uR_DQUOTE] = ACTIONS(3627), - [anon_sym_UR_DQUOTE] = ACTIONS(3627), - [anon_sym_u8R_DQUOTE] = ACTIONS(3627), - [anon_sym_co_await] = ACTIONS(3629), - [anon_sym_new] = ACTIONS(3631), - [anon_sym_requires] = ACTIONS(3633), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3633), + [anon_sym_R_DQUOTE] = ACTIONS(3635), + [anon_sym_LR_DQUOTE] = ACTIONS(3635), + [anon_sym_uR_DQUOTE] = ACTIONS(3635), + [anon_sym_UR_DQUOTE] = ACTIONS(3635), + [anon_sym_u8R_DQUOTE] = ACTIONS(3635), + [anon_sym_co_await] = ACTIONS(3637), + [anon_sym_new] = ACTIONS(3639), + [anon_sym_requires] = ACTIONS(3641), [sym_this] = ACTIONS(229), }, - [1332] = { - [sym_expression] = STATE(3760), - [sym__string] = STATE(4199), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(2935), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(2935), - [sym_call_expression] = STATE(2935), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(2935), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(2935), - [sym_char_literal] = STATE(4199), - [sym_concatenated_string] = STATE(4199), - [sym_string_literal] = STATE(3059), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3059), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2935), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(2935), - [sym_identifier] = ACTIONS(4334), - [anon_sym_LPAREN2] = ACTIONS(4658), - [anon_sym_BANG] = ACTIONS(3609), - [anon_sym_TILDE] = ACTIONS(3609), - [anon_sym_DASH] = ACTIONS(3607), - [anon_sym_PLUS] = ACTIONS(3607), - [anon_sym_STAR] = ACTIONS(4336), - [anon_sym_AMP] = ACTIONS(4336), - [anon_sym___extension__] = ACTIONS(3611), - [anon_sym_COLON_COLON] = ACTIONS(3613), + [1374] = { + [sym_expression] = STATE(4200), + [sym__string] = STATE(4269), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(2921), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(2921), + [sym_call_expression] = STATE(2921), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(2921), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(2921), + [sym_char_literal] = STATE(4269), + [sym_concatenated_string] = STATE(4269), + [sym_string_literal] = STATE(3102), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3102), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2921), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(2921), + [sym_identifier] = ACTIONS(4356), + [anon_sym_LPAREN2] = ACTIONS(4654), + [anon_sym_BANG] = ACTIONS(3617), + [anon_sym_TILDE] = ACTIONS(3617), + [anon_sym_DASH] = ACTIONS(3615), + [anon_sym_PLUS] = ACTIONS(3615), + [anon_sym_STAR] = ACTIONS(4346), + [anon_sym_AMP] = ACTIONS(4346), + [anon_sym___extension__] = ACTIONS(3619), + [anon_sym_COLON_COLON] = ACTIONS(3621), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3607), - [anon_sym_compl] = ACTIONS(3607), - [anon_sym_DASH_DASH] = ACTIONS(4338), - [anon_sym_PLUS_PLUS] = ACTIONS(4338), - [anon_sym_sizeof] = ACTIONS(3617), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3615), + [anon_sym_compl] = ACTIONS(3615), + [anon_sym_DASH_DASH] = ACTIONS(4358), + [anon_sym_PLUS_PLUS] = ACTIONS(4358), + [anon_sym_sizeof] = ACTIONS(3625), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -212759,96 +217960,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(113), [anon_sym___asm__] = ACTIONS(113), [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3619), - [anon_sym_L_SQUOTE] = ACTIONS(3621), - [anon_sym_u_SQUOTE] = ACTIONS(3621), - [anon_sym_U_SQUOTE] = ACTIONS(3621), - [anon_sym_u8_SQUOTE] = ACTIONS(3621), - [anon_sym_SQUOTE] = ACTIONS(3621), - [anon_sym_L_DQUOTE] = ACTIONS(3623), - [anon_sym_u_DQUOTE] = ACTIONS(3623), - [anon_sym_U_DQUOTE] = ACTIONS(3623), - [anon_sym_u8_DQUOTE] = ACTIONS(3623), - [anon_sym_DQUOTE] = ACTIONS(3623), + [sym_number_literal] = ACTIONS(3627), + [anon_sym_L_SQUOTE] = ACTIONS(3629), + [anon_sym_u_SQUOTE] = ACTIONS(3629), + [anon_sym_U_SQUOTE] = ACTIONS(3629), + [anon_sym_u8_SQUOTE] = ACTIONS(3629), + [anon_sym_SQUOTE] = ACTIONS(3629), + [anon_sym_L_DQUOTE] = ACTIONS(3631), + [anon_sym_u_DQUOTE] = ACTIONS(3631), + [anon_sym_U_DQUOTE] = ACTIONS(3631), + [anon_sym_u8_DQUOTE] = ACTIONS(3631), + [anon_sym_DQUOTE] = ACTIONS(3631), [sym_true] = ACTIONS(229), [sym_false] = ACTIONS(229), [anon_sym_NULL] = ACTIONS(123), [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3625), - [anon_sym_R_DQUOTE] = ACTIONS(3627), - [anon_sym_LR_DQUOTE] = ACTIONS(3627), - [anon_sym_uR_DQUOTE] = ACTIONS(3627), - [anon_sym_UR_DQUOTE] = ACTIONS(3627), - [anon_sym_u8R_DQUOTE] = ACTIONS(3627), - [anon_sym_co_await] = ACTIONS(3629), - [anon_sym_new] = ACTIONS(3631), - [anon_sym_requires] = ACTIONS(3633), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3633), + [anon_sym_R_DQUOTE] = ACTIONS(3635), + [anon_sym_LR_DQUOTE] = ACTIONS(3635), + [anon_sym_uR_DQUOTE] = ACTIONS(3635), + [anon_sym_UR_DQUOTE] = ACTIONS(3635), + [anon_sym_u8R_DQUOTE] = ACTIONS(3635), + [anon_sym_co_await] = ACTIONS(3637), + [anon_sym_new] = ACTIONS(3639), + [anon_sym_requires] = ACTIONS(3641), [sym_this] = ACTIONS(229), }, - [1333] = { - [sym_expression] = STATE(4170), - [sym__string] = STATE(4199), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(2935), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(2935), - [sym_call_expression] = STATE(2935), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(2935), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(2935), - [sym_char_literal] = STATE(4199), - [sym_concatenated_string] = STATE(4199), - [sym_string_literal] = STATE(3059), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3059), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2935), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(2935), - [sym_identifier] = ACTIONS(4334), - [anon_sym_LPAREN2] = ACTIONS(4658), - [anon_sym_BANG] = ACTIONS(3609), - [anon_sym_TILDE] = ACTIONS(3609), - [anon_sym_DASH] = ACTIONS(3607), - [anon_sym_PLUS] = ACTIONS(3607), - [anon_sym_STAR] = ACTIONS(4336), - [anon_sym_AMP] = ACTIONS(4336), - [anon_sym___extension__] = ACTIONS(3611), - [anon_sym_COLON_COLON] = ACTIONS(3613), + [1375] = { + [sym_expression] = STATE(4210), + [sym__string] = STATE(4269), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(2921), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(2921), + [sym_call_expression] = STATE(2921), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(2921), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(2921), + [sym_char_literal] = STATE(4269), + [sym_concatenated_string] = STATE(4269), + [sym_string_literal] = STATE(3102), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3102), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2921), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(2921), + [sym_identifier] = ACTIONS(4356), + [anon_sym_LPAREN2] = ACTIONS(4654), + [anon_sym_BANG] = ACTIONS(3617), + [anon_sym_TILDE] = ACTIONS(3617), + [anon_sym_DASH] = ACTIONS(3615), + [anon_sym_PLUS] = ACTIONS(3615), + [anon_sym_STAR] = ACTIONS(4346), + [anon_sym_AMP] = ACTIONS(4346), + [anon_sym___extension__] = ACTIONS(3619), + [anon_sym_COLON_COLON] = ACTIONS(3621), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3607), - [anon_sym_compl] = ACTIONS(3607), - [anon_sym_DASH_DASH] = ACTIONS(4338), - [anon_sym_PLUS_PLUS] = ACTIONS(4338), - [anon_sym_sizeof] = ACTIONS(3617), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3615), + [anon_sym_compl] = ACTIONS(3615), + [anon_sym_DASH_DASH] = ACTIONS(4358), + [anon_sym_PLUS_PLUS] = ACTIONS(4358), + [anon_sym_sizeof] = ACTIONS(3625), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -212859,96 +218060,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(113), [anon_sym___asm__] = ACTIONS(113), [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3619), - [anon_sym_L_SQUOTE] = ACTIONS(3621), - [anon_sym_u_SQUOTE] = ACTIONS(3621), - [anon_sym_U_SQUOTE] = ACTIONS(3621), - [anon_sym_u8_SQUOTE] = ACTIONS(3621), - [anon_sym_SQUOTE] = ACTIONS(3621), - [anon_sym_L_DQUOTE] = ACTIONS(3623), - [anon_sym_u_DQUOTE] = ACTIONS(3623), - [anon_sym_U_DQUOTE] = ACTIONS(3623), - [anon_sym_u8_DQUOTE] = ACTIONS(3623), - [anon_sym_DQUOTE] = ACTIONS(3623), + [sym_number_literal] = ACTIONS(3627), + [anon_sym_L_SQUOTE] = ACTIONS(3629), + [anon_sym_u_SQUOTE] = ACTIONS(3629), + [anon_sym_U_SQUOTE] = ACTIONS(3629), + [anon_sym_u8_SQUOTE] = ACTIONS(3629), + [anon_sym_SQUOTE] = ACTIONS(3629), + [anon_sym_L_DQUOTE] = ACTIONS(3631), + [anon_sym_u_DQUOTE] = ACTIONS(3631), + [anon_sym_U_DQUOTE] = ACTIONS(3631), + [anon_sym_u8_DQUOTE] = ACTIONS(3631), + [anon_sym_DQUOTE] = ACTIONS(3631), [sym_true] = ACTIONS(229), [sym_false] = ACTIONS(229), [anon_sym_NULL] = ACTIONS(123), [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3625), - [anon_sym_R_DQUOTE] = ACTIONS(3627), - [anon_sym_LR_DQUOTE] = ACTIONS(3627), - [anon_sym_uR_DQUOTE] = ACTIONS(3627), - [anon_sym_UR_DQUOTE] = ACTIONS(3627), - [anon_sym_u8R_DQUOTE] = ACTIONS(3627), - [anon_sym_co_await] = ACTIONS(3629), - [anon_sym_new] = ACTIONS(3631), - [anon_sym_requires] = ACTIONS(3633), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3633), + [anon_sym_R_DQUOTE] = ACTIONS(3635), + [anon_sym_LR_DQUOTE] = ACTIONS(3635), + [anon_sym_uR_DQUOTE] = ACTIONS(3635), + [anon_sym_UR_DQUOTE] = ACTIONS(3635), + [anon_sym_u8R_DQUOTE] = ACTIONS(3635), + [anon_sym_co_await] = ACTIONS(3637), + [anon_sym_new] = ACTIONS(3639), + [anon_sym_requires] = ACTIONS(3641), [sym_this] = ACTIONS(229), }, - [1334] = { - [sym_expression] = STATE(4108), - [sym__string] = STATE(4199), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(2935), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(2935), - [sym_call_expression] = STATE(2935), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(2935), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(2935), - [sym_char_literal] = STATE(4199), - [sym_concatenated_string] = STATE(4199), - [sym_string_literal] = STATE(3059), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3059), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2935), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(2935), - [sym_identifier] = ACTIONS(4334), - [anon_sym_LPAREN2] = ACTIONS(4658), - [anon_sym_BANG] = ACTIONS(3609), - [anon_sym_TILDE] = ACTIONS(3609), - [anon_sym_DASH] = ACTIONS(3607), - [anon_sym_PLUS] = ACTIONS(3607), - [anon_sym_STAR] = ACTIONS(4336), - [anon_sym_AMP] = ACTIONS(4336), - [anon_sym___extension__] = ACTIONS(3611), - [anon_sym_COLON_COLON] = ACTIONS(3613), + [1376] = { + [sym_expression] = STATE(4216), + [sym__string] = STATE(4269), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(2921), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(2921), + [sym_call_expression] = STATE(2921), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(2921), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(2921), + [sym_char_literal] = STATE(4269), + [sym_concatenated_string] = STATE(4269), + [sym_string_literal] = STATE(3102), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3102), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2921), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(2921), + [sym_identifier] = ACTIONS(4356), + [anon_sym_LPAREN2] = ACTIONS(4654), + [anon_sym_BANG] = ACTIONS(3617), + [anon_sym_TILDE] = ACTIONS(3617), + [anon_sym_DASH] = ACTIONS(3615), + [anon_sym_PLUS] = ACTIONS(3615), + [anon_sym_STAR] = ACTIONS(4346), + [anon_sym_AMP] = ACTIONS(4346), + [anon_sym___extension__] = ACTIONS(3619), + [anon_sym_COLON_COLON] = ACTIONS(3621), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3607), - [anon_sym_compl] = ACTIONS(3607), - [anon_sym_DASH_DASH] = ACTIONS(4338), - [anon_sym_PLUS_PLUS] = ACTIONS(4338), - [anon_sym_sizeof] = ACTIONS(3617), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3615), + [anon_sym_compl] = ACTIONS(3615), + [anon_sym_DASH_DASH] = ACTIONS(4358), + [anon_sym_PLUS_PLUS] = ACTIONS(4358), + [anon_sym_sizeof] = ACTIONS(3625), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -212959,96 +218160,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(113), [anon_sym___asm__] = ACTIONS(113), [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3619), - [anon_sym_L_SQUOTE] = ACTIONS(3621), - [anon_sym_u_SQUOTE] = ACTIONS(3621), - [anon_sym_U_SQUOTE] = ACTIONS(3621), - [anon_sym_u8_SQUOTE] = ACTIONS(3621), - [anon_sym_SQUOTE] = ACTIONS(3621), - [anon_sym_L_DQUOTE] = ACTIONS(3623), - [anon_sym_u_DQUOTE] = ACTIONS(3623), - [anon_sym_U_DQUOTE] = ACTIONS(3623), - [anon_sym_u8_DQUOTE] = ACTIONS(3623), - [anon_sym_DQUOTE] = ACTIONS(3623), + [sym_number_literal] = ACTIONS(3627), + [anon_sym_L_SQUOTE] = ACTIONS(3629), + [anon_sym_u_SQUOTE] = ACTIONS(3629), + [anon_sym_U_SQUOTE] = ACTIONS(3629), + [anon_sym_u8_SQUOTE] = ACTIONS(3629), + [anon_sym_SQUOTE] = ACTIONS(3629), + [anon_sym_L_DQUOTE] = ACTIONS(3631), + [anon_sym_u_DQUOTE] = ACTIONS(3631), + [anon_sym_U_DQUOTE] = ACTIONS(3631), + [anon_sym_u8_DQUOTE] = ACTIONS(3631), + [anon_sym_DQUOTE] = ACTIONS(3631), [sym_true] = ACTIONS(229), [sym_false] = ACTIONS(229), [anon_sym_NULL] = ACTIONS(123), [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3625), - [anon_sym_R_DQUOTE] = ACTIONS(3627), - [anon_sym_LR_DQUOTE] = ACTIONS(3627), - [anon_sym_uR_DQUOTE] = ACTIONS(3627), - [anon_sym_UR_DQUOTE] = ACTIONS(3627), - [anon_sym_u8R_DQUOTE] = ACTIONS(3627), - [anon_sym_co_await] = ACTIONS(3629), - [anon_sym_new] = ACTIONS(3631), - [anon_sym_requires] = ACTIONS(3633), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3633), + [anon_sym_R_DQUOTE] = ACTIONS(3635), + [anon_sym_LR_DQUOTE] = ACTIONS(3635), + [anon_sym_uR_DQUOTE] = ACTIONS(3635), + [anon_sym_UR_DQUOTE] = ACTIONS(3635), + [anon_sym_u8R_DQUOTE] = ACTIONS(3635), + [anon_sym_co_await] = ACTIONS(3637), + [anon_sym_new] = ACTIONS(3639), + [anon_sym_requires] = ACTIONS(3641), [sym_this] = ACTIONS(229), }, - [1335] = { - [sym_expression] = STATE(4109), - [sym__string] = STATE(4199), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(2935), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(2935), - [sym_call_expression] = STATE(2935), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(2935), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(2935), - [sym_char_literal] = STATE(4199), - [sym_concatenated_string] = STATE(4199), - [sym_string_literal] = STATE(3059), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3059), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2935), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(2935), - [sym_identifier] = ACTIONS(4334), - [anon_sym_LPAREN2] = ACTIONS(4658), - [anon_sym_BANG] = ACTIONS(3609), - [anon_sym_TILDE] = ACTIONS(3609), - [anon_sym_DASH] = ACTIONS(3607), - [anon_sym_PLUS] = ACTIONS(3607), - [anon_sym_STAR] = ACTIONS(4336), - [anon_sym_AMP] = ACTIONS(4336), - [anon_sym___extension__] = ACTIONS(3611), - [anon_sym_COLON_COLON] = ACTIONS(3613), + [1377] = { + [sym_expression] = STATE(4219), + [sym__string] = STATE(4269), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(2921), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(2921), + [sym_call_expression] = STATE(2921), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(2921), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(2921), + [sym_char_literal] = STATE(4269), + [sym_concatenated_string] = STATE(4269), + [sym_string_literal] = STATE(3102), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3102), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2921), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(2921), + [sym_identifier] = ACTIONS(4356), + [anon_sym_LPAREN2] = ACTIONS(4654), + [anon_sym_BANG] = ACTIONS(3617), + [anon_sym_TILDE] = ACTIONS(3617), + [anon_sym_DASH] = ACTIONS(3615), + [anon_sym_PLUS] = ACTIONS(3615), + [anon_sym_STAR] = ACTIONS(4346), + [anon_sym_AMP] = ACTIONS(4346), + [anon_sym___extension__] = ACTIONS(3619), + [anon_sym_COLON_COLON] = ACTIONS(3621), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3607), - [anon_sym_compl] = ACTIONS(3607), - [anon_sym_DASH_DASH] = ACTIONS(4338), - [anon_sym_PLUS_PLUS] = ACTIONS(4338), - [anon_sym_sizeof] = ACTIONS(3617), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3615), + [anon_sym_compl] = ACTIONS(3615), + [anon_sym_DASH_DASH] = ACTIONS(4358), + [anon_sym_PLUS_PLUS] = ACTIONS(4358), + [anon_sym_sizeof] = ACTIONS(3625), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -213059,96 +218260,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(113), [anon_sym___asm__] = ACTIONS(113), [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3619), - [anon_sym_L_SQUOTE] = ACTIONS(3621), - [anon_sym_u_SQUOTE] = ACTIONS(3621), - [anon_sym_U_SQUOTE] = ACTIONS(3621), - [anon_sym_u8_SQUOTE] = ACTIONS(3621), - [anon_sym_SQUOTE] = ACTIONS(3621), - [anon_sym_L_DQUOTE] = ACTIONS(3623), - [anon_sym_u_DQUOTE] = ACTIONS(3623), - [anon_sym_U_DQUOTE] = ACTIONS(3623), - [anon_sym_u8_DQUOTE] = ACTIONS(3623), - [anon_sym_DQUOTE] = ACTIONS(3623), + [sym_number_literal] = ACTIONS(3627), + [anon_sym_L_SQUOTE] = ACTIONS(3629), + [anon_sym_u_SQUOTE] = ACTIONS(3629), + [anon_sym_U_SQUOTE] = ACTIONS(3629), + [anon_sym_u8_SQUOTE] = ACTIONS(3629), + [anon_sym_SQUOTE] = ACTIONS(3629), + [anon_sym_L_DQUOTE] = ACTIONS(3631), + [anon_sym_u_DQUOTE] = ACTIONS(3631), + [anon_sym_U_DQUOTE] = ACTIONS(3631), + [anon_sym_u8_DQUOTE] = ACTIONS(3631), + [anon_sym_DQUOTE] = ACTIONS(3631), [sym_true] = ACTIONS(229), [sym_false] = ACTIONS(229), [anon_sym_NULL] = ACTIONS(123), [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3625), - [anon_sym_R_DQUOTE] = ACTIONS(3627), - [anon_sym_LR_DQUOTE] = ACTIONS(3627), - [anon_sym_uR_DQUOTE] = ACTIONS(3627), - [anon_sym_UR_DQUOTE] = ACTIONS(3627), - [anon_sym_u8R_DQUOTE] = ACTIONS(3627), - [anon_sym_co_await] = ACTIONS(3629), - [anon_sym_new] = ACTIONS(3631), - [anon_sym_requires] = ACTIONS(3633), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3633), + [anon_sym_R_DQUOTE] = ACTIONS(3635), + [anon_sym_LR_DQUOTE] = ACTIONS(3635), + [anon_sym_uR_DQUOTE] = ACTIONS(3635), + [anon_sym_UR_DQUOTE] = ACTIONS(3635), + [anon_sym_u8R_DQUOTE] = ACTIONS(3635), + [anon_sym_co_await] = ACTIONS(3637), + [anon_sym_new] = ACTIONS(3639), + [anon_sym_requires] = ACTIONS(3641), [sym_this] = ACTIONS(229), }, - [1336] = { - [sym_expression] = STATE(4110), - [sym__string] = STATE(4199), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(2935), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(2935), - [sym_call_expression] = STATE(2935), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(2935), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(2935), - [sym_char_literal] = STATE(4199), - [sym_concatenated_string] = STATE(4199), - [sym_string_literal] = STATE(3059), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3059), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2935), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(2935), - [sym_identifier] = ACTIONS(4334), - [anon_sym_LPAREN2] = ACTIONS(4658), - [anon_sym_BANG] = ACTIONS(3609), - [anon_sym_TILDE] = ACTIONS(3609), - [anon_sym_DASH] = ACTIONS(3607), - [anon_sym_PLUS] = ACTIONS(3607), - [anon_sym_STAR] = ACTIONS(4336), - [anon_sym_AMP] = ACTIONS(4336), - [anon_sym___extension__] = ACTIONS(3611), - [anon_sym_COLON_COLON] = ACTIONS(3613), + [1378] = { + [sym_expression] = STATE(4161), + [sym__string] = STATE(4269), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(2921), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(2921), + [sym_call_expression] = STATE(2921), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(2921), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(2921), + [sym_char_literal] = STATE(4269), + [sym_concatenated_string] = STATE(4269), + [sym_string_literal] = STATE(3102), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3102), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2921), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(2921), + [sym_identifier] = ACTIONS(4356), + [anon_sym_LPAREN2] = ACTIONS(4654), + [anon_sym_BANG] = ACTIONS(3617), + [anon_sym_TILDE] = ACTIONS(3617), + [anon_sym_DASH] = ACTIONS(3615), + [anon_sym_PLUS] = ACTIONS(3615), + [anon_sym_STAR] = ACTIONS(4346), + [anon_sym_AMP] = ACTIONS(4346), + [anon_sym___extension__] = ACTIONS(3619), + [anon_sym_COLON_COLON] = ACTIONS(3621), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3607), - [anon_sym_compl] = ACTIONS(3607), - [anon_sym_DASH_DASH] = ACTIONS(4338), - [anon_sym_PLUS_PLUS] = ACTIONS(4338), - [anon_sym_sizeof] = ACTIONS(3617), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3615), + [anon_sym_compl] = ACTIONS(3615), + [anon_sym_DASH_DASH] = ACTIONS(4358), + [anon_sym_PLUS_PLUS] = ACTIONS(4358), + [anon_sym_sizeof] = ACTIONS(3625), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -213159,96 +218360,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(113), [anon_sym___asm__] = ACTIONS(113), [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3619), - [anon_sym_L_SQUOTE] = ACTIONS(3621), - [anon_sym_u_SQUOTE] = ACTIONS(3621), - [anon_sym_U_SQUOTE] = ACTIONS(3621), - [anon_sym_u8_SQUOTE] = ACTIONS(3621), - [anon_sym_SQUOTE] = ACTIONS(3621), - [anon_sym_L_DQUOTE] = ACTIONS(3623), - [anon_sym_u_DQUOTE] = ACTIONS(3623), - [anon_sym_U_DQUOTE] = ACTIONS(3623), - [anon_sym_u8_DQUOTE] = ACTIONS(3623), - [anon_sym_DQUOTE] = ACTIONS(3623), + [sym_number_literal] = ACTIONS(3627), + [anon_sym_L_SQUOTE] = ACTIONS(3629), + [anon_sym_u_SQUOTE] = ACTIONS(3629), + [anon_sym_U_SQUOTE] = ACTIONS(3629), + [anon_sym_u8_SQUOTE] = ACTIONS(3629), + [anon_sym_SQUOTE] = ACTIONS(3629), + [anon_sym_L_DQUOTE] = ACTIONS(3631), + [anon_sym_u_DQUOTE] = ACTIONS(3631), + [anon_sym_U_DQUOTE] = ACTIONS(3631), + [anon_sym_u8_DQUOTE] = ACTIONS(3631), + [anon_sym_DQUOTE] = ACTIONS(3631), [sym_true] = ACTIONS(229), [sym_false] = ACTIONS(229), [anon_sym_NULL] = ACTIONS(123), [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3625), - [anon_sym_R_DQUOTE] = ACTIONS(3627), - [anon_sym_LR_DQUOTE] = ACTIONS(3627), - [anon_sym_uR_DQUOTE] = ACTIONS(3627), - [anon_sym_UR_DQUOTE] = ACTIONS(3627), - [anon_sym_u8R_DQUOTE] = ACTIONS(3627), - [anon_sym_co_await] = ACTIONS(3629), - [anon_sym_new] = ACTIONS(3631), - [anon_sym_requires] = ACTIONS(3633), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3633), + [anon_sym_R_DQUOTE] = ACTIONS(3635), + [anon_sym_LR_DQUOTE] = ACTIONS(3635), + [anon_sym_uR_DQUOTE] = ACTIONS(3635), + [anon_sym_UR_DQUOTE] = ACTIONS(3635), + [anon_sym_u8R_DQUOTE] = ACTIONS(3635), + [anon_sym_co_await] = ACTIONS(3637), + [anon_sym_new] = ACTIONS(3639), + [anon_sym_requires] = ACTIONS(3641), [sym_this] = ACTIONS(229), }, - [1337] = { - [sym_expression] = STATE(4111), - [sym__string] = STATE(4199), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(2935), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(2935), - [sym_call_expression] = STATE(2935), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(2935), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(2935), - [sym_char_literal] = STATE(4199), - [sym_concatenated_string] = STATE(4199), - [sym_string_literal] = STATE(3059), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3059), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2935), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(2935), - [sym_identifier] = ACTIONS(4334), - [anon_sym_LPAREN2] = ACTIONS(4658), - [anon_sym_BANG] = ACTIONS(3609), - [anon_sym_TILDE] = ACTIONS(3609), - [anon_sym_DASH] = ACTIONS(3607), - [anon_sym_PLUS] = ACTIONS(3607), - [anon_sym_STAR] = ACTIONS(4336), - [anon_sym_AMP] = ACTIONS(4336), - [anon_sym___extension__] = ACTIONS(3611), - [anon_sym_COLON_COLON] = ACTIONS(3613), + [1379] = { + [sym_expression] = STATE(4181), + [sym__string] = STATE(4269), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(2921), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(2921), + [sym_call_expression] = STATE(2921), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(2921), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(2921), + [sym_char_literal] = STATE(4269), + [sym_concatenated_string] = STATE(4269), + [sym_string_literal] = STATE(3102), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3102), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2921), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(2921), + [sym_identifier] = ACTIONS(4356), + [anon_sym_LPAREN2] = ACTIONS(4654), + [anon_sym_BANG] = ACTIONS(3617), + [anon_sym_TILDE] = ACTIONS(3617), + [anon_sym_DASH] = ACTIONS(3615), + [anon_sym_PLUS] = ACTIONS(3615), + [anon_sym_STAR] = ACTIONS(4346), + [anon_sym_AMP] = ACTIONS(4346), + [anon_sym___extension__] = ACTIONS(3619), + [anon_sym_COLON_COLON] = ACTIONS(3621), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3607), - [anon_sym_compl] = ACTIONS(3607), - [anon_sym_DASH_DASH] = ACTIONS(4338), - [anon_sym_PLUS_PLUS] = ACTIONS(4338), - [anon_sym_sizeof] = ACTIONS(3617), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3615), + [anon_sym_compl] = ACTIONS(3615), + [anon_sym_DASH_DASH] = ACTIONS(4358), + [anon_sym_PLUS_PLUS] = ACTIONS(4358), + [anon_sym_sizeof] = ACTIONS(3625), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -213259,96 +218460,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(113), [anon_sym___asm__] = ACTIONS(113), [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3619), - [anon_sym_L_SQUOTE] = ACTIONS(3621), - [anon_sym_u_SQUOTE] = ACTIONS(3621), - [anon_sym_U_SQUOTE] = ACTIONS(3621), - [anon_sym_u8_SQUOTE] = ACTIONS(3621), - [anon_sym_SQUOTE] = ACTIONS(3621), - [anon_sym_L_DQUOTE] = ACTIONS(3623), - [anon_sym_u_DQUOTE] = ACTIONS(3623), - [anon_sym_U_DQUOTE] = ACTIONS(3623), - [anon_sym_u8_DQUOTE] = ACTIONS(3623), - [anon_sym_DQUOTE] = ACTIONS(3623), + [sym_number_literal] = ACTIONS(3627), + [anon_sym_L_SQUOTE] = ACTIONS(3629), + [anon_sym_u_SQUOTE] = ACTIONS(3629), + [anon_sym_U_SQUOTE] = ACTIONS(3629), + [anon_sym_u8_SQUOTE] = ACTIONS(3629), + [anon_sym_SQUOTE] = ACTIONS(3629), + [anon_sym_L_DQUOTE] = ACTIONS(3631), + [anon_sym_u_DQUOTE] = ACTIONS(3631), + [anon_sym_U_DQUOTE] = ACTIONS(3631), + [anon_sym_u8_DQUOTE] = ACTIONS(3631), + [anon_sym_DQUOTE] = ACTIONS(3631), [sym_true] = ACTIONS(229), [sym_false] = ACTIONS(229), [anon_sym_NULL] = ACTIONS(123), [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3625), - [anon_sym_R_DQUOTE] = ACTIONS(3627), - [anon_sym_LR_DQUOTE] = ACTIONS(3627), - [anon_sym_uR_DQUOTE] = ACTIONS(3627), - [anon_sym_UR_DQUOTE] = ACTIONS(3627), - [anon_sym_u8R_DQUOTE] = ACTIONS(3627), - [anon_sym_co_await] = ACTIONS(3629), - [anon_sym_new] = ACTIONS(3631), - [anon_sym_requires] = ACTIONS(3633), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3633), + [anon_sym_R_DQUOTE] = ACTIONS(3635), + [anon_sym_LR_DQUOTE] = ACTIONS(3635), + [anon_sym_uR_DQUOTE] = ACTIONS(3635), + [anon_sym_UR_DQUOTE] = ACTIONS(3635), + [anon_sym_u8R_DQUOTE] = ACTIONS(3635), + [anon_sym_co_await] = ACTIONS(3637), + [anon_sym_new] = ACTIONS(3639), + [anon_sym_requires] = ACTIONS(3641), [sym_this] = ACTIONS(229), }, - [1338] = { - [sym_expression] = STATE(4112), - [sym__string] = STATE(4199), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(2935), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(2935), - [sym_call_expression] = STATE(2935), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(2935), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(2935), - [sym_char_literal] = STATE(4199), - [sym_concatenated_string] = STATE(4199), - [sym_string_literal] = STATE(3059), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3059), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2935), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(2935), - [sym_identifier] = ACTIONS(4334), - [anon_sym_LPAREN2] = ACTIONS(4658), - [anon_sym_BANG] = ACTIONS(3609), - [anon_sym_TILDE] = ACTIONS(3609), - [anon_sym_DASH] = ACTIONS(3607), - [anon_sym_PLUS] = ACTIONS(3607), - [anon_sym_STAR] = ACTIONS(4336), - [anon_sym_AMP] = ACTIONS(4336), - [anon_sym___extension__] = ACTIONS(3611), - [anon_sym_COLON_COLON] = ACTIONS(3613), + [1380] = { + [sym_expression] = STATE(4183), + [sym__string] = STATE(4269), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(2921), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(2921), + [sym_call_expression] = STATE(2921), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(2921), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(2921), + [sym_char_literal] = STATE(4269), + [sym_concatenated_string] = STATE(4269), + [sym_string_literal] = STATE(3102), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3102), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2921), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(2921), + [sym_identifier] = ACTIONS(4356), + [anon_sym_LPAREN2] = ACTIONS(4654), + [anon_sym_BANG] = ACTIONS(3617), + [anon_sym_TILDE] = ACTIONS(3617), + [anon_sym_DASH] = ACTIONS(3615), + [anon_sym_PLUS] = ACTIONS(3615), + [anon_sym_STAR] = ACTIONS(4346), + [anon_sym_AMP] = ACTIONS(4346), + [anon_sym___extension__] = ACTIONS(3619), + [anon_sym_COLON_COLON] = ACTIONS(3621), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3607), - [anon_sym_compl] = ACTIONS(3607), - [anon_sym_DASH_DASH] = ACTIONS(4338), - [anon_sym_PLUS_PLUS] = ACTIONS(4338), - [anon_sym_sizeof] = ACTIONS(3617), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3615), + [anon_sym_compl] = ACTIONS(3615), + [anon_sym_DASH_DASH] = ACTIONS(4358), + [anon_sym_PLUS_PLUS] = ACTIONS(4358), + [anon_sym_sizeof] = ACTIONS(3625), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -213359,96 +218560,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(113), [anon_sym___asm__] = ACTIONS(113), [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3619), - [anon_sym_L_SQUOTE] = ACTIONS(3621), - [anon_sym_u_SQUOTE] = ACTIONS(3621), - [anon_sym_U_SQUOTE] = ACTIONS(3621), - [anon_sym_u8_SQUOTE] = ACTIONS(3621), - [anon_sym_SQUOTE] = ACTIONS(3621), - [anon_sym_L_DQUOTE] = ACTIONS(3623), - [anon_sym_u_DQUOTE] = ACTIONS(3623), - [anon_sym_U_DQUOTE] = ACTIONS(3623), - [anon_sym_u8_DQUOTE] = ACTIONS(3623), - [anon_sym_DQUOTE] = ACTIONS(3623), + [sym_number_literal] = ACTIONS(3627), + [anon_sym_L_SQUOTE] = ACTIONS(3629), + [anon_sym_u_SQUOTE] = ACTIONS(3629), + [anon_sym_U_SQUOTE] = ACTIONS(3629), + [anon_sym_u8_SQUOTE] = ACTIONS(3629), + [anon_sym_SQUOTE] = ACTIONS(3629), + [anon_sym_L_DQUOTE] = ACTIONS(3631), + [anon_sym_u_DQUOTE] = ACTIONS(3631), + [anon_sym_U_DQUOTE] = ACTIONS(3631), + [anon_sym_u8_DQUOTE] = ACTIONS(3631), + [anon_sym_DQUOTE] = ACTIONS(3631), [sym_true] = ACTIONS(229), [sym_false] = ACTIONS(229), [anon_sym_NULL] = ACTIONS(123), [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3625), - [anon_sym_R_DQUOTE] = ACTIONS(3627), - [anon_sym_LR_DQUOTE] = ACTIONS(3627), - [anon_sym_uR_DQUOTE] = ACTIONS(3627), - [anon_sym_UR_DQUOTE] = ACTIONS(3627), - [anon_sym_u8R_DQUOTE] = ACTIONS(3627), - [anon_sym_co_await] = ACTIONS(3629), - [anon_sym_new] = ACTIONS(3631), - [anon_sym_requires] = ACTIONS(3633), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3633), + [anon_sym_R_DQUOTE] = ACTIONS(3635), + [anon_sym_LR_DQUOTE] = ACTIONS(3635), + [anon_sym_uR_DQUOTE] = ACTIONS(3635), + [anon_sym_UR_DQUOTE] = ACTIONS(3635), + [anon_sym_u8R_DQUOTE] = ACTIONS(3635), + [anon_sym_co_await] = ACTIONS(3637), + [anon_sym_new] = ACTIONS(3639), + [anon_sym_requires] = ACTIONS(3641), [sym_this] = ACTIONS(229), }, - [1339] = { - [sym_expression] = STATE(4113), - [sym__string] = STATE(4199), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(2935), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(2935), - [sym_call_expression] = STATE(2935), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(2935), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(2935), - [sym_char_literal] = STATE(4199), - [sym_concatenated_string] = STATE(4199), - [sym_string_literal] = STATE(3059), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3059), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2935), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(2935), - [sym_identifier] = ACTIONS(4334), - [anon_sym_LPAREN2] = ACTIONS(4658), - [anon_sym_BANG] = ACTIONS(3609), - [anon_sym_TILDE] = ACTIONS(3609), - [anon_sym_DASH] = ACTIONS(3607), - [anon_sym_PLUS] = ACTIONS(3607), - [anon_sym_STAR] = ACTIONS(4336), - [anon_sym_AMP] = ACTIONS(4336), - [anon_sym___extension__] = ACTIONS(3611), - [anon_sym_COLON_COLON] = ACTIONS(3613), + [1381] = { + [sym_expression] = STATE(4193), + [sym__string] = STATE(4269), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(2921), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(2921), + [sym_call_expression] = STATE(2921), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(2921), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(2921), + [sym_char_literal] = STATE(4269), + [sym_concatenated_string] = STATE(4269), + [sym_string_literal] = STATE(3102), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3102), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2921), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(2921), + [sym_identifier] = ACTIONS(4356), + [anon_sym_LPAREN2] = ACTIONS(4654), + [anon_sym_BANG] = ACTIONS(3617), + [anon_sym_TILDE] = ACTIONS(3617), + [anon_sym_DASH] = ACTIONS(3615), + [anon_sym_PLUS] = ACTIONS(3615), + [anon_sym_STAR] = ACTIONS(4346), + [anon_sym_AMP] = ACTIONS(4346), + [anon_sym___extension__] = ACTIONS(3619), + [anon_sym_COLON_COLON] = ACTIONS(3621), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3607), - [anon_sym_compl] = ACTIONS(3607), - [anon_sym_DASH_DASH] = ACTIONS(4338), - [anon_sym_PLUS_PLUS] = ACTIONS(4338), - [anon_sym_sizeof] = ACTIONS(3617), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3615), + [anon_sym_compl] = ACTIONS(3615), + [anon_sym_DASH_DASH] = ACTIONS(4358), + [anon_sym_PLUS_PLUS] = ACTIONS(4358), + [anon_sym_sizeof] = ACTIONS(3625), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -213459,96 +218660,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(113), [anon_sym___asm__] = ACTIONS(113), [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3619), - [anon_sym_L_SQUOTE] = ACTIONS(3621), - [anon_sym_u_SQUOTE] = ACTIONS(3621), - [anon_sym_U_SQUOTE] = ACTIONS(3621), - [anon_sym_u8_SQUOTE] = ACTIONS(3621), - [anon_sym_SQUOTE] = ACTIONS(3621), - [anon_sym_L_DQUOTE] = ACTIONS(3623), - [anon_sym_u_DQUOTE] = ACTIONS(3623), - [anon_sym_U_DQUOTE] = ACTIONS(3623), - [anon_sym_u8_DQUOTE] = ACTIONS(3623), - [anon_sym_DQUOTE] = ACTIONS(3623), + [sym_number_literal] = ACTIONS(3627), + [anon_sym_L_SQUOTE] = ACTIONS(3629), + [anon_sym_u_SQUOTE] = ACTIONS(3629), + [anon_sym_U_SQUOTE] = ACTIONS(3629), + [anon_sym_u8_SQUOTE] = ACTIONS(3629), + [anon_sym_SQUOTE] = ACTIONS(3629), + [anon_sym_L_DQUOTE] = ACTIONS(3631), + [anon_sym_u_DQUOTE] = ACTIONS(3631), + [anon_sym_U_DQUOTE] = ACTIONS(3631), + [anon_sym_u8_DQUOTE] = ACTIONS(3631), + [anon_sym_DQUOTE] = ACTIONS(3631), [sym_true] = ACTIONS(229), [sym_false] = ACTIONS(229), [anon_sym_NULL] = ACTIONS(123), [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3625), - [anon_sym_R_DQUOTE] = ACTIONS(3627), - [anon_sym_LR_DQUOTE] = ACTIONS(3627), - [anon_sym_uR_DQUOTE] = ACTIONS(3627), - [anon_sym_UR_DQUOTE] = ACTIONS(3627), - [anon_sym_u8R_DQUOTE] = ACTIONS(3627), - [anon_sym_co_await] = ACTIONS(3629), - [anon_sym_new] = ACTIONS(3631), - [anon_sym_requires] = ACTIONS(3633), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3633), + [anon_sym_R_DQUOTE] = ACTIONS(3635), + [anon_sym_LR_DQUOTE] = ACTIONS(3635), + [anon_sym_uR_DQUOTE] = ACTIONS(3635), + [anon_sym_UR_DQUOTE] = ACTIONS(3635), + [anon_sym_u8R_DQUOTE] = ACTIONS(3635), + [anon_sym_co_await] = ACTIONS(3637), + [anon_sym_new] = ACTIONS(3639), + [anon_sym_requires] = ACTIONS(3641), [sym_this] = ACTIONS(229), }, - [1340] = { - [sym_expression] = STATE(4114), - [sym__string] = STATE(4199), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(2935), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(2935), - [sym_call_expression] = STATE(2935), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(2935), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(2935), - [sym_char_literal] = STATE(4199), - [sym_concatenated_string] = STATE(4199), - [sym_string_literal] = STATE(3059), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3059), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2935), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(2935), - [sym_identifier] = ACTIONS(4334), - [anon_sym_LPAREN2] = ACTIONS(4658), - [anon_sym_BANG] = ACTIONS(3609), - [anon_sym_TILDE] = ACTIONS(3609), - [anon_sym_DASH] = ACTIONS(3607), - [anon_sym_PLUS] = ACTIONS(3607), - [anon_sym_STAR] = ACTIONS(4336), - [anon_sym_AMP] = ACTIONS(4336), - [anon_sym___extension__] = ACTIONS(3611), - [anon_sym_COLON_COLON] = ACTIONS(3613), + [1382] = { + [sym_expression] = STATE(4177), + [sym__string] = STATE(4269), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(2921), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(2921), + [sym_call_expression] = STATE(2921), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(2921), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(2921), + [sym_char_literal] = STATE(4269), + [sym_concatenated_string] = STATE(4269), + [sym_string_literal] = STATE(3102), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3102), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2921), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(2921), + [sym_identifier] = ACTIONS(4356), + [anon_sym_LPAREN2] = ACTIONS(4654), + [anon_sym_BANG] = ACTIONS(3617), + [anon_sym_TILDE] = ACTIONS(3617), + [anon_sym_DASH] = ACTIONS(3615), + [anon_sym_PLUS] = ACTIONS(3615), + [anon_sym_STAR] = ACTIONS(4346), + [anon_sym_AMP] = ACTIONS(4346), + [anon_sym___extension__] = ACTIONS(3619), + [anon_sym_COLON_COLON] = ACTIONS(3621), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3607), - [anon_sym_compl] = ACTIONS(3607), - [anon_sym_DASH_DASH] = ACTIONS(4338), - [anon_sym_PLUS_PLUS] = ACTIONS(4338), - [anon_sym_sizeof] = ACTIONS(3617), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3615), + [anon_sym_compl] = ACTIONS(3615), + [anon_sym_DASH_DASH] = ACTIONS(4358), + [anon_sym_PLUS_PLUS] = ACTIONS(4358), + [anon_sym_sizeof] = ACTIONS(3625), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -213559,96 +218760,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(113), [anon_sym___asm__] = ACTIONS(113), [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3619), - [anon_sym_L_SQUOTE] = ACTIONS(3621), - [anon_sym_u_SQUOTE] = ACTIONS(3621), - [anon_sym_U_SQUOTE] = ACTIONS(3621), - [anon_sym_u8_SQUOTE] = ACTIONS(3621), - [anon_sym_SQUOTE] = ACTIONS(3621), - [anon_sym_L_DQUOTE] = ACTIONS(3623), - [anon_sym_u_DQUOTE] = ACTIONS(3623), - [anon_sym_U_DQUOTE] = ACTIONS(3623), - [anon_sym_u8_DQUOTE] = ACTIONS(3623), - [anon_sym_DQUOTE] = ACTIONS(3623), + [sym_number_literal] = ACTIONS(3627), + [anon_sym_L_SQUOTE] = ACTIONS(3629), + [anon_sym_u_SQUOTE] = ACTIONS(3629), + [anon_sym_U_SQUOTE] = ACTIONS(3629), + [anon_sym_u8_SQUOTE] = ACTIONS(3629), + [anon_sym_SQUOTE] = ACTIONS(3629), + [anon_sym_L_DQUOTE] = ACTIONS(3631), + [anon_sym_u_DQUOTE] = ACTIONS(3631), + [anon_sym_U_DQUOTE] = ACTIONS(3631), + [anon_sym_u8_DQUOTE] = ACTIONS(3631), + [anon_sym_DQUOTE] = ACTIONS(3631), [sym_true] = ACTIONS(229), [sym_false] = ACTIONS(229), [anon_sym_NULL] = ACTIONS(123), [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3625), - [anon_sym_R_DQUOTE] = ACTIONS(3627), - [anon_sym_LR_DQUOTE] = ACTIONS(3627), - [anon_sym_uR_DQUOTE] = ACTIONS(3627), - [anon_sym_UR_DQUOTE] = ACTIONS(3627), - [anon_sym_u8R_DQUOTE] = ACTIONS(3627), - [anon_sym_co_await] = ACTIONS(3629), - [anon_sym_new] = ACTIONS(3631), - [anon_sym_requires] = ACTIONS(3633), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3633), + [anon_sym_R_DQUOTE] = ACTIONS(3635), + [anon_sym_LR_DQUOTE] = ACTIONS(3635), + [anon_sym_uR_DQUOTE] = ACTIONS(3635), + [anon_sym_UR_DQUOTE] = ACTIONS(3635), + [anon_sym_u8R_DQUOTE] = ACTIONS(3635), + [anon_sym_co_await] = ACTIONS(3637), + [anon_sym_new] = ACTIONS(3639), + [anon_sym_requires] = ACTIONS(3641), [sym_this] = ACTIONS(229), }, - [1341] = { - [sym_expression] = STATE(4115), - [sym__string] = STATE(4199), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(2935), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(2935), - [sym_call_expression] = STATE(2935), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(2935), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(2935), - [sym_char_literal] = STATE(4199), - [sym_concatenated_string] = STATE(4199), - [sym_string_literal] = STATE(3059), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3059), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2935), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(2935), - [sym_identifier] = ACTIONS(4334), - [anon_sym_LPAREN2] = ACTIONS(4658), - [anon_sym_BANG] = ACTIONS(3609), - [anon_sym_TILDE] = ACTIONS(3609), - [anon_sym_DASH] = ACTIONS(3607), - [anon_sym_PLUS] = ACTIONS(3607), - [anon_sym_STAR] = ACTIONS(4336), - [anon_sym_AMP] = ACTIONS(4336), - [anon_sym___extension__] = ACTIONS(3611), - [anon_sym_COLON_COLON] = ACTIONS(3613), + [1383] = { + [sym_expression] = STATE(4204), + [sym__string] = STATE(4269), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(2921), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(2921), + [sym_call_expression] = STATE(2921), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(2921), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(2921), + [sym_char_literal] = STATE(4269), + [sym_concatenated_string] = STATE(4269), + [sym_string_literal] = STATE(3102), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3102), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2921), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(2921), + [sym_identifier] = ACTIONS(4356), + [anon_sym_LPAREN2] = ACTIONS(4654), + [anon_sym_BANG] = ACTIONS(3617), + [anon_sym_TILDE] = ACTIONS(3617), + [anon_sym_DASH] = ACTIONS(3615), + [anon_sym_PLUS] = ACTIONS(3615), + [anon_sym_STAR] = ACTIONS(4346), + [anon_sym_AMP] = ACTIONS(4346), + [anon_sym___extension__] = ACTIONS(3619), + [anon_sym_COLON_COLON] = ACTIONS(3621), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3607), - [anon_sym_compl] = ACTIONS(3607), - [anon_sym_DASH_DASH] = ACTIONS(4338), - [anon_sym_PLUS_PLUS] = ACTIONS(4338), - [anon_sym_sizeof] = ACTIONS(3617), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3615), + [anon_sym_compl] = ACTIONS(3615), + [anon_sym_DASH_DASH] = ACTIONS(4358), + [anon_sym_PLUS_PLUS] = ACTIONS(4358), + [anon_sym_sizeof] = ACTIONS(3625), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -213659,95 +218860,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(113), [anon_sym___asm__] = ACTIONS(113), [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3619), - [anon_sym_L_SQUOTE] = ACTIONS(3621), - [anon_sym_u_SQUOTE] = ACTIONS(3621), - [anon_sym_U_SQUOTE] = ACTIONS(3621), - [anon_sym_u8_SQUOTE] = ACTIONS(3621), - [anon_sym_SQUOTE] = ACTIONS(3621), - [anon_sym_L_DQUOTE] = ACTIONS(3623), - [anon_sym_u_DQUOTE] = ACTIONS(3623), - [anon_sym_U_DQUOTE] = ACTIONS(3623), - [anon_sym_u8_DQUOTE] = ACTIONS(3623), - [anon_sym_DQUOTE] = ACTIONS(3623), + [sym_number_literal] = ACTIONS(3627), + [anon_sym_L_SQUOTE] = ACTIONS(3629), + [anon_sym_u_SQUOTE] = ACTIONS(3629), + [anon_sym_U_SQUOTE] = ACTIONS(3629), + [anon_sym_u8_SQUOTE] = ACTIONS(3629), + [anon_sym_SQUOTE] = ACTIONS(3629), + [anon_sym_L_DQUOTE] = ACTIONS(3631), + [anon_sym_u_DQUOTE] = ACTIONS(3631), + [anon_sym_U_DQUOTE] = ACTIONS(3631), + [anon_sym_u8_DQUOTE] = ACTIONS(3631), + [anon_sym_DQUOTE] = ACTIONS(3631), [sym_true] = ACTIONS(229), [sym_false] = ACTIONS(229), [anon_sym_NULL] = ACTIONS(123), [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3625), - [anon_sym_R_DQUOTE] = ACTIONS(3627), - [anon_sym_LR_DQUOTE] = ACTIONS(3627), - [anon_sym_uR_DQUOTE] = ACTIONS(3627), - [anon_sym_UR_DQUOTE] = ACTIONS(3627), - [anon_sym_u8R_DQUOTE] = ACTIONS(3627), - [anon_sym_co_await] = ACTIONS(3629), - [anon_sym_new] = ACTIONS(3631), - [anon_sym_requires] = ACTIONS(3633), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3633), + [anon_sym_R_DQUOTE] = ACTIONS(3635), + [anon_sym_LR_DQUOTE] = ACTIONS(3635), + [anon_sym_uR_DQUOTE] = ACTIONS(3635), + [anon_sym_UR_DQUOTE] = ACTIONS(3635), + [anon_sym_u8R_DQUOTE] = ACTIONS(3635), + [anon_sym_co_await] = ACTIONS(3637), + [anon_sym_new] = ACTIONS(3639), + [anon_sym_requires] = ACTIONS(3641), [sym_this] = ACTIONS(229), }, - [1342] = { - [sym_expression] = STATE(2398), - [sym__string] = STATE(2950), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(2950), - [sym_concatenated_string] = STATE(2950), - [sym_string_literal] = STATE(2034), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(2034), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), + [1384] = { + [sym_expression] = STATE(2969), + [sym__string] = STATE(2917), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(2917), + [sym_concatenated_string] = STATE(2917), + [sym_string_literal] = STATE(2114), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(2114), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), [sym_identifier] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(4555), + [anon_sym_LPAREN2] = ACTIONS(4565), [anon_sym_BANG] = ACTIONS(1994), [anon_sym_TILDE] = ACTIONS(1994), [anon_sym_DASH] = ACTIONS(1992), [anon_sym_PLUS] = ACTIONS(1992), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), [anon_sym___extension__] = ACTIONS(1996), [anon_sym_COLON_COLON] = ACTIONS(1998), [anon_sym_LBRACK] = ACTIONS(2020), [sym_primitive_type] = ACTIONS(1956), [anon_sym_not] = ACTIONS(1992), [anon_sym_compl] = ACTIONS(1992), - [anon_sym_DASH_DASH] = ACTIONS(3343), - [anon_sym_PLUS_PLUS] = ACTIONS(3343), + [anon_sym_DASH_DASH] = ACTIONS(3355), + [anon_sym_PLUS_PLUS] = ACTIONS(3355), [anon_sym_sizeof] = ACTIONS(2000), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), @@ -213776,7 +218977,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1976), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(2008), [anon_sym_R_DQUOTE] = ACTIONS(2010), [anon_sym_LR_DQUOTE] = ACTIONS(2010), @@ -213786,168 +218987,168 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_co_await] = ACTIONS(2012), [anon_sym_new] = ACTIONS(2014), [anon_sym_requires] = ACTIONS(1988), - [sym_this] = ACTIONS(4931), + [sym_this] = ACTIONS(1974), }, - [1343] = { - [sym_expression] = STATE(4294), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), - [anon_sym_COLON_COLON] = ACTIONS(47), + [1385] = { + [sym_expression] = STATE(2435), + [sym__string] = STATE(2917), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(2917), + [sym_concatenated_string] = STATE(2917), + [sym_string_literal] = STATE(2114), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(2114), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), + [sym_identifier] = ACTIONS(1990), + [anon_sym_LPAREN2] = ACTIONS(4565), + [anon_sym_BANG] = ACTIONS(1994), + [anon_sym_TILDE] = ACTIONS(1994), + [anon_sym_DASH] = ACTIONS(1992), + [anon_sym_PLUS] = ACTIONS(1992), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(1996), + [anon_sym_COLON_COLON] = ACTIONS(1998), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), + [sym_primitive_type] = ACTIONS(1956), + [anon_sym_not] = ACTIONS(1992), + [anon_sym_compl] = ACTIONS(1992), + [anon_sym_DASH_DASH] = ACTIONS(3355), + [anon_sym_PLUS_PLUS] = ACTIONS(3355), + [anon_sym_sizeof] = ACTIONS(2000), + [anon_sym___alignof__] = ACTIONS(1960), + [anon_sym___alignof] = ACTIONS(1960), + [anon_sym__alignof] = ACTIONS(1960), + [anon_sym_alignof] = ACTIONS(1960), + [anon_sym__Alignof] = ACTIONS(1960), + [anon_sym_offsetof] = ACTIONS(1962), + [anon_sym__Generic] = ACTIONS(1964), + [anon_sym_asm] = ACTIONS(1966), + [anon_sym___asm__] = ACTIONS(1966), + [anon_sym___asm] = ACTIONS(1966), + [sym_number_literal] = ACTIONS(2002), + [anon_sym_L_SQUOTE] = ACTIONS(2004), + [anon_sym_u_SQUOTE] = ACTIONS(2004), + [anon_sym_U_SQUOTE] = ACTIONS(2004), + [anon_sym_u8_SQUOTE] = ACTIONS(2004), + [anon_sym_SQUOTE] = ACTIONS(2004), + [anon_sym_L_DQUOTE] = ACTIONS(2006), + [anon_sym_u_DQUOTE] = ACTIONS(2006), + [anon_sym_U_DQUOTE] = ACTIONS(2006), + [anon_sym_u8_DQUOTE] = ACTIONS(2006), + [anon_sym_DQUOTE] = ACTIONS(2006), + [sym_true] = ACTIONS(1974), + [sym_false] = ACTIONS(1974), + [anon_sym_NULL] = ACTIONS(1976), + [anon_sym_nullptr] = ACTIONS(1976), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(2008), + [anon_sym_R_DQUOTE] = ACTIONS(2010), + [anon_sym_LR_DQUOTE] = ACTIONS(2010), + [anon_sym_uR_DQUOTE] = ACTIONS(2010), + [anon_sym_UR_DQUOTE] = ACTIONS(2010), + [anon_sym_u8R_DQUOTE] = ACTIONS(2010), + [anon_sym_co_await] = ACTIONS(2012), + [anon_sym_new] = ACTIONS(2014), + [anon_sym_requires] = ACTIONS(1988), + [sym_this] = ACTIONS(1974), }, - [1344] = { - [sym_expression] = STATE(2884), - [sym__string] = STATE(2950), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(2950), - [sym_concatenated_string] = STATE(2950), - [sym_string_literal] = STATE(2034), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(2034), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), + [1386] = { + [sym_expression] = STATE(2975), + [sym__string] = STATE(2917), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(2917), + [sym_concatenated_string] = STATE(2917), + [sym_string_literal] = STATE(2114), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(2114), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), [sym_identifier] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(4555), + [anon_sym_LPAREN2] = ACTIONS(4565), [anon_sym_BANG] = ACTIONS(1994), [anon_sym_TILDE] = ACTIONS(1994), [anon_sym_DASH] = ACTIONS(1992), [anon_sym_PLUS] = ACTIONS(1992), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), [anon_sym___extension__] = ACTIONS(1996), [anon_sym_COLON_COLON] = ACTIONS(1998), [anon_sym_LBRACK] = ACTIONS(2020), [sym_primitive_type] = ACTIONS(1956), [anon_sym_not] = ACTIONS(1992), [anon_sym_compl] = ACTIONS(1992), - [anon_sym_DASH_DASH] = ACTIONS(3343), - [anon_sym_PLUS_PLUS] = ACTIONS(3343), + [anon_sym_DASH_DASH] = ACTIONS(3355), + [anon_sym_PLUS_PLUS] = ACTIONS(3355), [anon_sym_sizeof] = ACTIONS(2000), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), @@ -213976,7 +219177,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1976), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(2008), [anon_sym_R_DQUOTE] = ACTIONS(2010), [anon_sym_LR_DQUOTE] = ACTIONS(2010), @@ -213988,267 +219189,567 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [1345] = { - [sym_expression] = STATE(4270), - [sym__string] = STATE(4380), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3253), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3253), - [sym_call_expression] = STATE(3253), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3253), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3253), - [sym_char_literal] = STATE(4380), - [sym_concatenated_string] = STATE(4380), - [sym_string_literal] = STATE(3416), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3416), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3253), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3253), - [sym_identifier] = ACTIONS(3823), - [anon_sym_LPAREN2] = ACTIONS(4557), - [anon_sym_BANG] = ACTIONS(3827), - [anon_sym_TILDE] = ACTIONS(3827), - [anon_sym_DASH] = ACTIONS(3825), - [anon_sym_PLUS] = ACTIONS(3825), - [anon_sym_STAR] = ACTIONS(4382), - [anon_sym_AMP] = ACTIONS(4382), - [anon_sym___extension__] = ACTIONS(3829), - [anon_sym_COLON_COLON] = ACTIONS(3831), + [1387] = { + [sym_expression] = STATE(2983), + [sym__string] = STATE(2917), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(2917), + [sym_concatenated_string] = STATE(2917), + [sym_string_literal] = STATE(2114), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(2114), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), + [sym_identifier] = ACTIONS(1990), + [anon_sym_LPAREN2] = ACTIONS(4565), + [anon_sym_BANG] = ACTIONS(1994), + [anon_sym_TILDE] = ACTIONS(1994), + [anon_sym_DASH] = ACTIONS(1992), + [anon_sym_PLUS] = ACTIONS(1992), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(1996), + [anon_sym_COLON_COLON] = ACTIONS(1998), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3825), - [anon_sym_compl] = ACTIONS(3825), - [anon_sym_DASH_DASH] = ACTIONS(4384), - [anon_sym_PLUS_PLUS] = ACTIONS(4384), - [anon_sym_sizeof] = ACTIONS(3833), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3835), - [anon_sym_L_SQUOTE] = ACTIONS(3837), - [anon_sym_u_SQUOTE] = ACTIONS(3837), - [anon_sym_U_SQUOTE] = ACTIONS(3837), - [anon_sym_u8_SQUOTE] = ACTIONS(3837), - [anon_sym_SQUOTE] = ACTIONS(3837), - [anon_sym_L_DQUOTE] = ACTIONS(3839), - [anon_sym_u_DQUOTE] = ACTIONS(3839), - [anon_sym_U_DQUOTE] = ACTIONS(3839), - [anon_sym_u8_DQUOTE] = ACTIONS(3839), - [anon_sym_DQUOTE] = ACTIONS(3839), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), + [sym_primitive_type] = ACTIONS(1956), + [anon_sym_not] = ACTIONS(1992), + [anon_sym_compl] = ACTIONS(1992), + [anon_sym_DASH_DASH] = ACTIONS(3355), + [anon_sym_PLUS_PLUS] = ACTIONS(3355), + [anon_sym_sizeof] = ACTIONS(2000), + [anon_sym___alignof__] = ACTIONS(1960), + [anon_sym___alignof] = ACTIONS(1960), + [anon_sym__alignof] = ACTIONS(1960), + [anon_sym_alignof] = ACTIONS(1960), + [anon_sym__Alignof] = ACTIONS(1960), + [anon_sym_offsetof] = ACTIONS(1962), + [anon_sym__Generic] = ACTIONS(1964), + [anon_sym_asm] = ACTIONS(1966), + [anon_sym___asm__] = ACTIONS(1966), + [anon_sym___asm] = ACTIONS(1966), + [sym_number_literal] = ACTIONS(2002), + [anon_sym_L_SQUOTE] = ACTIONS(2004), + [anon_sym_u_SQUOTE] = ACTIONS(2004), + [anon_sym_U_SQUOTE] = ACTIONS(2004), + [anon_sym_u8_SQUOTE] = ACTIONS(2004), + [anon_sym_SQUOTE] = ACTIONS(2004), + [anon_sym_L_DQUOTE] = ACTIONS(2006), + [anon_sym_u_DQUOTE] = ACTIONS(2006), + [anon_sym_U_DQUOTE] = ACTIONS(2006), + [anon_sym_u8_DQUOTE] = ACTIONS(2006), + [anon_sym_DQUOTE] = ACTIONS(2006), + [sym_true] = ACTIONS(1974), + [sym_false] = ACTIONS(1974), + [anon_sym_NULL] = ACTIONS(1976), + [anon_sym_nullptr] = ACTIONS(1976), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3841), - [anon_sym_R_DQUOTE] = ACTIONS(3843), - [anon_sym_LR_DQUOTE] = ACTIONS(3843), - [anon_sym_uR_DQUOTE] = ACTIONS(3843), - [anon_sym_UR_DQUOTE] = ACTIONS(3843), - [anon_sym_u8R_DQUOTE] = ACTIONS(3843), - [anon_sym_co_await] = ACTIONS(3845), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(2008), + [anon_sym_R_DQUOTE] = ACTIONS(2010), + [anon_sym_LR_DQUOTE] = ACTIONS(2010), + [anon_sym_uR_DQUOTE] = ACTIONS(2010), + [anon_sym_UR_DQUOTE] = ACTIONS(2010), + [anon_sym_u8R_DQUOTE] = ACTIONS(2010), + [anon_sym_co_await] = ACTIONS(2012), + [anon_sym_new] = ACTIONS(2014), + [anon_sym_requires] = ACTIONS(1988), + [sym_this] = ACTIONS(1974), }, - [1346] = { - [sym_expression] = STATE(4117), - [sym__string] = STATE(4199), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(2935), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(2935), - [sym_call_expression] = STATE(2935), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(2935), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(2935), - [sym_char_literal] = STATE(4199), - [sym_concatenated_string] = STATE(4199), - [sym_string_literal] = STATE(3059), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3059), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2935), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(2935), - [sym_identifier] = ACTIONS(4334), - [anon_sym_LPAREN2] = ACTIONS(4658), - [anon_sym_BANG] = ACTIONS(3609), - [anon_sym_TILDE] = ACTIONS(3609), - [anon_sym_DASH] = ACTIONS(3607), - [anon_sym_PLUS] = ACTIONS(3607), - [anon_sym_STAR] = ACTIONS(4336), - [anon_sym_AMP] = ACTIONS(4336), - [anon_sym___extension__] = ACTIONS(3611), - [anon_sym_COLON_COLON] = ACTIONS(3613), + [1388] = { + [sym_expression] = STATE(2984), + [sym__string] = STATE(2917), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(2917), + [sym_concatenated_string] = STATE(2917), + [sym_string_literal] = STATE(2114), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(2114), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), + [sym_identifier] = ACTIONS(1990), + [anon_sym_LPAREN2] = ACTIONS(4565), + [anon_sym_BANG] = ACTIONS(1994), + [anon_sym_TILDE] = ACTIONS(1994), + [anon_sym_DASH] = ACTIONS(1992), + [anon_sym_PLUS] = ACTIONS(1992), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(1996), + [anon_sym_COLON_COLON] = ACTIONS(1998), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3607), - [anon_sym_compl] = ACTIONS(3607), - [anon_sym_DASH_DASH] = ACTIONS(4338), - [anon_sym_PLUS_PLUS] = ACTIONS(4338), - [anon_sym_sizeof] = ACTIONS(3617), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3619), - [anon_sym_L_SQUOTE] = ACTIONS(3621), - [anon_sym_u_SQUOTE] = ACTIONS(3621), - [anon_sym_U_SQUOTE] = ACTIONS(3621), - [anon_sym_u8_SQUOTE] = ACTIONS(3621), - [anon_sym_SQUOTE] = ACTIONS(3621), - [anon_sym_L_DQUOTE] = ACTIONS(3623), - [anon_sym_u_DQUOTE] = ACTIONS(3623), - [anon_sym_U_DQUOTE] = ACTIONS(3623), - [anon_sym_u8_DQUOTE] = ACTIONS(3623), - [anon_sym_DQUOTE] = ACTIONS(3623), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), + [sym_primitive_type] = ACTIONS(1956), + [anon_sym_not] = ACTIONS(1992), + [anon_sym_compl] = ACTIONS(1992), + [anon_sym_DASH_DASH] = ACTIONS(3355), + [anon_sym_PLUS_PLUS] = ACTIONS(3355), + [anon_sym_sizeof] = ACTIONS(2000), + [anon_sym___alignof__] = ACTIONS(1960), + [anon_sym___alignof] = ACTIONS(1960), + [anon_sym__alignof] = ACTIONS(1960), + [anon_sym_alignof] = ACTIONS(1960), + [anon_sym__Alignof] = ACTIONS(1960), + [anon_sym_offsetof] = ACTIONS(1962), + [anon_sym__Generic] = ACTIONS(1964), + [anon_sym_asm] = ACTIONS(1966), + [anon_sym___asm__] = ACTIONS(1966), + [anon_sym___asm] = ACTIONS(1966), + [sym_number_literal] = ACTIONS(2002), + [anon_sym_L_SQUOTE] = ACTIONS(2004), + [anon_sym_u_SQUOTE] = ACTIONS(2004), + [anon_sym_U_SQUOTE] = ACTIONS(2004), + [anon_sym_u8_SQUOTE] = ACTIONS(2004), + [anon_sym_SQUOTE] = ACTIONS(2004), + [anon_sym_L_DQUOTE] = ACTIONS(2006), + [anon_sym_u_DQUOTE] = ACTIONS(2006), + [anon_sym_U_DQUOTE] = ACTIONS(2006), + [anon_sym_u8_DQUOTE] = ACTIONS(2006), + [anon_sym_DQUOTE] = ACTIONS(2006), + [sym_true] = ACTIONS(1974), + [sym_false] = ACTIONS(1974), + [anon_sym_NULL] = ACTIONS(1976), + [anon_sym_nullptr] = ACTIONS(1976), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3625), - [anon_sym_R_DQUOTE] = ACTIONS(3627), - [anon_sym_LR_DQUOTE] = ACTIONS(3627), - [anon_sym_uR_DQUOTE] = ACTIONS(3627), - [anon_sym_UR_DQUOTE] = ACTIONS(3627), - [anon_sym_u8R_DQUOTE] = ACTIONS(3627), - [anon_sym_co_await] = ACTIONS(3629), - [anon_sym_new] = ACTIONS(3631), - [anon_sym_requires] = ACTIONS(3633), - [sym_this] = ACTIONS(229), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(2008), + [anon_sym_R_DQUOTE] = ACTIONS(2010), + [anon_sym_LR_DQUOTE] = ACTIONS(2010), + [anon_sym_uR_DQUOTE] = ACTIONS(2010), + [anon_sym_UR_DQUOTE] = ACTIONS(2010), + [anon_sym_u8R_DQUOTE] = ACTIONS(2010), + [anon_sym_co_await] = ACTIONS(2012), + [anon_sym_new] = ACTIONS(2014), + [anon_sym_requires] = ACTIONS(1988), + [sym_this] = ACTIONS(1974), }, - [1347] = { - [sym_expression] = STATE(4120), - [sym__string] = STATE(4199), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(2935), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(2935), - [sym_call_expression] = STATE(2935), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(2935), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(2935), - [sym_char_literal] = STATE(4199), - [sym_concatenated_string] = STATE(4199), - [sym_string_literal] = STATE(3059), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3059), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2935), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(2935), - [sym_identifier] = ACTIONS(4334), - [anon_sym_LPAREN2] = ACTIONS(4658), - [anon_sym_BANG] = ACTIONS(3609), - [anon_sym_TILDE] = ACTIONS(3609), - [anon_sym_DASH] = ACTIONS(3607), - [anon_sym_PLUS] = ACTIONS(3607), - [anon_sym_STAR] = ACTIONS(4336), - [anon_sym_AMP] = ACTIONS(4336), - [anon_sym___extension__] = ACTIONS(3611), - [anon_sym_COLON_COLON] = ACTIONS(3613), + [1389] = { + [sym_expression] = STATE(2988), + [sym__string] = STATE(2917), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(2917), + [sym_concatenated_string] = STATE(2917), + [sym_string_literal] = STATE(2114), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(2114), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), + [sym_identifier] = ACTIONS(1990), + [anon_sym_LPAREN2] = ACTIONS(4565), + [anon_sym_BANG] = ACTIONS(1994), + [anon_sym_TILDE] = ACTIONS(1994), + [anon_sym_DASH] = ACTIONS(1992), + [anon_sym_PLUS] = ACTIONS(1992), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(1996), + [anon_sym_COLON_COLON] = ACTIONS(1998), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3607), - [anon_sym_compl] = ACTIONS(3607), - [anon_sym_DASH_DASH] = ACTIONS(4338), - [anon_sym_PLUS_PLUS] = ACTIONS(4338), - [anon_sym_sizeof] = ACTIONS(3617), + [sym_primitive_type] = ACTIONS(1956), + [anon_sym_not] = ACTIONS(1992), + [anon_sym_compl] = ACTIONS(1992), + [anon_sym_DASH_DASH] = ACTIONS(3355), + [anon_sym_PLUS_PLUS] = ACTIONS(3355), + [anon_sym_sizeof] = ACTIONS(2000), + [anon_sym___alignof__] = ACTIONS(1960), + [anon_sym___alignof] = ACTIONS(1960), + [anon_sym__alignof] = ACTIONS(1960), + [anon_sym_alignof] = ACTIONS(1960), + [anon_sym__Alignof] = ACTIONS(1960), + [anon_sym_offsetof] = ACTIONS(1962), + [anon_sym__Generic] = ACTIONS(1964), + [anon_sym_asm] = ACTIONS(1966), + [anon_sym___asm__] = ACTIONS(1966), + [anon_sym___asm] = ACTIONS(1966), + [sym_number_literal] = ACTIONS(2002), + [anon_sym_L_SQUOTE] = ACTIONS(2004), + [anon_sym_u_SQUOTE] = ACTIONS(2004), + [anon_sym_U_SQUOTE] = ACTIONS(2004), + [anon_sym_u8_SQUOTE] = ACTIONS(2004), + [anon_sym_SQUOTE] = ACTIONS(2004), + [anon_sym_L_DQUOTE] = ACTIONS(2006), + [anon_sym_u_DQUOTE] = ACTIONS(2006), + [anon_sym_U_DQUOTE] = ACTIONS(2006), + [anon_sym_u8_DQUOTE] = ACTIONS(2006), + [anon_sym_DQUOTE] = ACTIONS(2006), + [sym_true] = ACTIONS(1974), + [sym_false] = ACTIONS(1974), + [anon_sym_NULL] = ACTIONS(1976), + [anon_sym_nullptr] = ACTIONS(1976), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(2008), + [anon_sym_R_DQUOTE] = ACTIONS(2010), + [anon_sym_LR_DQUOTE] = ACTIONS(2010), + [anon_sym_uR_DQUOTE] = ACTIONS(2010), + [anon_sym_UR_DQUOTE] = ACTIONS(2010), + [anon_sym_u8R_DQUOTE] = ACTIONS(2010), + [anon_sym_co_await] = ACTIONS(2012), + [anon_sym_new] = ACTIONS(2014), + [anon_sym_requires] = ACTIONS(1988), + [sym_this] = ACTIONS(1974), + }, + [1390] = { + [sym_expression] = STATE(2990), + [sym__string] = STATE(2917), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(2917), + [sym_concatenated_string] = STATE(2917), + [sym_string_literal] = STATE(2114), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(2114), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), + [sym_identifier] = ACTIONS(1990), + [anon_sym_LPAREN2] = ACTIONS(4565), + [anon_sym_BANG] = ACTIONS(1994), + [anon_sym_TILDE] = ACTIONS(1994), + [anon_sym_DASH] = ACTIONS(1992), + [anon_sym_PLUS] = ACTIONS(1992), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(1996), + [anon_sym_COLON_COLON] = ACTIONS(1998), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(1956), + [anon_sym_not] = ACTIONS(1992), + [anon_sym_compl] = ACTIONS(1992), + [anon_sym_DASH_DASH] = ACTIONS(3355), + [anon_sym_PLUS_PLUS] = ACTIONS(3355), + [anon_sym_sizeof] = ACTIONS(2000), + [anon_sym___alignof__] = ACTIONS(1960), + [anon_sym___alignof] = ACTIONS(1960), + [anon_sym__alignof] = ACTIONS(1960), + [anon_sym_alignof] = ACTIONS(1960), + [anon_sym__Alignof] = ACTIONS(1960), + [anon_sym_offsetof] = ACTIONS(1962), + [anon_sym__Generic] = ACTIONS(1964), + [anon_sym_asm] = ACTIONS(1966), + [anon_sym___asm__] = ACTIONS(1966), + [anon_sym___asm] = ACTIONS(1966), + [sym_number_literal] = ACTIONS(2002), + [anon_sym_L_SQUOTE] = ACTIONS(2004), + [anon_sym_u_SQUOTE] = ACTIONS(2004), + [anon_sym_U_SQUOTE] = ACTIONS(2004), + [anon_sym_u8_SQUOTE] = ACTIONS(2004), + [anon_sym_SQUOTE] = ACTIONS(2004), + [anon_sym_L_DQUOTE] = ACTIONS(2006), + [anon_sym_u_DQUOTE] = ACTIONS(2006), + [anon_sym_U_DQUOTE] = ACTIONS(2006), + [anon_sym_u8_DQUOTE] = ACTIONS(2006), + [anon_sym_DQUOTE] = ACTIONS(2006), + [sym_true] = ACTIONS(1974), + [sym_false] = ACTIONS(1974), + [anon_sym_NULL] = ACTIONS(1976), + [anon_sym_nullptr] = ACTIONS(1976), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(2008), + [anon_sym_R_DQUOTE] = ACTIONS(2010), + [anon_sym_LR_DQUOTE] = ACTIONS(2010), + [anon_sym_uR_DQUOTE] = ACTIONS(2010), + [anon_sym_UR_DQUOTE] = ACTIONS(2010), + [anon_sym_u8R_DQUOTE] = ACTIONS(2010), + [anon_sym_co_await] = ACTIONS(2012), + [anon_sym_new] = ACTIONS(2014), + [anon_sym_requires] = ACTIONS(1988), + [sym_this] = ACTIONS(1974), + }, + [1391] = { + [sym_expression] = STATE(2992), + [sym__string] = STATE(2917), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(2917), + [sym_concatenated_string] = STATE(2917), + [sym_string_literal] = STATE(2114), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(2114), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), + [sym_identifier] = ACTIONS(1990), + [anon_sym_LPAREN2] = ACTIONS(4565), + [anon_sym_BANG] = ACTIONS(1994), + [anon_sym_TILDE] = ACTIONS(1994), + [anon_sym_DASH] = ACTIONS(1992), + [anon_sym_PLUS] = ACTIONS(1992), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(1996), + [anon_sym_COLON_COLON] = ACTIONS(1998), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(1956), + [anon_sym_not] = ACTIONS(1992), + [anon_sym_compl] = ACTIONS(1992), + [anon_sym_DASH_DASH] = ACTIONS(3355), + [anon_sym_PLUS_PLUS] = ACTIONS(3355), + [anon_sym_sizeof] = ACTIONS(2000), + [anon_sym___alignof__] = ACTIONS(1960), + [anon_sym___alignof] = ACTIONS(1960), + [anon_sym__alignof] = ACTIONS(1960), + [anon_sym_alignof] = ACTIONS(1960), + [anon_sym__Alignof] = ACTIONS(1960), + [anon_sym_offsetof] = ACTIONS(1962), + [anon_sym__Generic] = ACTIONS(1964), + [anon_sym_asm] = ACTIONS(1966), + [anon_sym___asm__] = ACTIONS(1966), + [anon_sym___asm] = ACTIONS(1966), + [sym_number_literal] = ACTIONS(2002), + [anon_sym_L_SQUOTE] = ACTIONS(2004), + [anon_sym_u_SQUOTE] = ACTIONS(2004), + [anon_sym_U_SQUOTE] = ACTIONS(2004), + [anon_sym_u8_SQUOTE] = ACTIONS(2004), + [anon_sym_SQUOTE] = ACTIONS(2004), + [anon_sym_L_DQUOTE] = ACTIONS(2006), + [anon_sym_u_DQUOTE] = ACTIONS(2006), + [anon_sym_U_DQUOTE] = ACTIONS(2006), + [anon_sym_u8_DQUOTE] = ACTIONS(2006), + [anon_sym_DQUOTE] = ACTIONS(2006), + [sym_true] = ACTIONS(1974), + [sym_false] = ACTIONS(1974), + [anon_sym_NULL] = ACTIONS(1976), + [anon_sym_nullptr] = ACTIONS(1976), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(2008), + [anon_sym_R_DQUOTE] = ACTIONS(2010), + [anon_sym_LR_DQUOTE] = ACTIONS(2010), + [anon_sym_uR_DQUOTE] = ACTIONS(2010), + [anon_sym_UR_DQUOTE] = ACTIONS(2010), + [anon_sym_u8R_DQUOTE] = ACTIONS(2010), + [anon_sym_co_await] = ACTIONS(2012), + [anon_sym_new] = ACTIONS(2014), + [anon_sym_requires] = ACTIONS(1988), + [sym_this] = ACTIONS(1974), + }, + [1392] = { + [sym_expression] = STATE(4222), + [sym__string] = STATE(4269), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(2921), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(2921), + [sym_call_expression] = STATE(2921), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(2921), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(2921), + [sym_char_literal] = STATE(4269), + [sym_concatenated_string] = STATE(4269), + [sym_string_literal] = STATE(3102), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3102), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2921), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(2921), + [sym_identifier] = ACTIONS(4356), + [anon_sym_LPAREN2] = ACTIONS(4654), + [anon_sym_BANG] = ACTIONS(3617), + [anon_sym_TILDE] = ACTIONS(3617), + [anon_sym_DASH] = ACTIONS(3615), + [anon_sym_PLUS] = ACTIONS(3615), + [anon_sym_STAR] = ACTIONS(4346), + [anon_sym_AMP] = ACTIONS(4346), + [anon_sym___extension__] = ACTIONS(3619), + [anon_sym_COLON_COLON] = ACTIONS(3621), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3615), + [anon_sym_compl] = ACTIONS(3615), + [anon_sym_DASH_DASH] = ACTIONS(4358), + [anon_sym_PLUS_PLUS] = ACTIONS(4358), + [anon_sym_sizeof] = ACTIONS(3625), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -214259,1195 +219760,1495 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(113), [anon_sym___asm__] = ACTIONS(113), [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3619), - [anon_sym_L_SQUOTE] = ACTIONS(3621), - [anon_sym_u_SQUOTE] = ACTIONS(3621), - [anon_sym_U_SQUOTE] = ACTIONS(3621), - [anon_sym_u8_SQUOTE] = ACTIONS(3621), - [anon_sym_SQUOTE] = ACTIONS(3621), - [anon_sym_L_DQUOTE] = ACTIONS(3623), - [anon_sym_u_DQUOTE] = ACTIONS(3623), - [anon_sym_U_DQUOTE] = ACTIONS(3623), - [anon_sym_u8_DQUOTE] = ACTIONS(3623), - [anon_sym_DQUOTE] = ACTIONS(3623), + [sym_number_literal] = ACTIONS(3627), + [anon_sym_L_SQUOTE] = ACTIONS(3629), + [anon_sym_u_SQUOTE] = ACTIONS(3629), + [anon_sym_U_SQUOTE] = ACTIONS(3629), + [anon_sym_u8_SQUOTE] = ACTIONS(3629), + [anon_sym_SQUOTE] = ACTIONS(3629), + [anon_sym_L_DQUOTE] = ACTIONS(3631), + [anon_sym_u_DQUOTE] = ACTIONS(3631), + [anon_sym_U_DQUOTE] = ACTIONS(3631), + [anon_sym_u8_DQUOTE] = ACTIONS(3631), + [anon_sym_DQUOTE] = ACTIONS(3631), [sym_true] = ACTIONS(229), [sym_false] = ACTIONS(229), [anon_sym_NULL] = ACTIONS(123), [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3625), - [anon_sym_R_DQUOTE] = ACTIONS(3627), - [anon_sym_LR_DQUOTE] = ACTIONS(3627), - [anon_sym_uR_DQUOTE] = ACTIONS(3627), - [anon_sym_UR_DQUOTE] = ACTIONS(3627), - [anon_sym_u8R_DQUOTE] = ACTIONS(3627), - [anon_sym_co_await] = ACTIONS(3629), - [anon_sym_new] = ACTIONS(3631), - [anon_sym_requires] = ACTIONS(3633), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3633), + [anon_sym_R_DQUOTE] = ACTIONS(3635), + [anon_sym_LR_DQUOTE] = ACTIONS(3635), + [anon_sym_uR_DQUOTE] = ACTIONS(3635), + [anon_sym_UR_DQUOTE] = ACTIONS(3635), + [anon_sym_u8R_DQUOTE] = ACTIONS(3635), + [anon_sym_co_await] = ACTIONS(3637), + [anon_sym_new] = ACTIONS(3639), + [anon_sym_requires] = ACTIONS(3641), [sym_this] = ACTIONS(229), }, - [1348] = { - [sym_expression] = STATE(3251), - [sym__string] = STATE(3360), - [sym_conditional_expression] = STATE(3651), - [sym_assignment_expression] = STATE(3651), - [sym_pointer_expression] = STATE(3547), - [sym_unary_expression] = STATE(3651), - [sym_binary_expression] = STATE(3651), - [sym_update_expression] = STATE(3651), - [sym_cast_expression] = STATE(3651), - [sym_sizeof_expression] = STATE(3651), - [sym_alignof_expression] = STATE(3651), - [sym_offsetof_expression] = STATE(3651), - [sym_generic_expression] = STATE(3651), - [sym_subscript_expression] = STATE(3547), - [sym_call_expression] = STATE(3547), - [sym_gnu_asm_expression] = STATE(3651), - [sym_extension_expression] = STATE(3651), - [sym_field_expression] = STATE(3547), - [sym_compound_literal_expression] = STATE(3651), - [sym_parenthesized_expression] = STATE(3547), - [sym_char_literal] = STATE(3360), - [sym_concatenated_string] = STATE(3360), - [sym_string_literal] = STATE(2369), - [sym_null] = STATE(3651), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7649), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3651), - [sym_raw_string_literal] = STATE(2369), - [sym_co_await_expression] = STATE(3651), - [sym_new_expression] = STATE(3651), - [sym_delete_expression] = STATE(3651), - [sym_requires_clause] = STATE(3651), - [sym_requires_expression] = STATE(3651), - [sym_lambda_expression] = STATE(3651), - [sym_lambda_capture_specifier] = STATE(5395), - [sym_fold_expression] = STATE(3651), - [sym_parameter_pack_expansion] = STATE(3651), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5773), - [sym_qualified_identifier] = STATE(3547), - [sym_qualified_type_identifier] = STATE(7649), - [sym_user_defined_literal] = STATE(3547), - [sym_identifier] = ACTIONS(2489), - [anon_sym_LPAREN2] = ACTIONS(4652), - [anon_sym_BANG] = ACTIONS(2493), - [anon_sym_TILDE] = ACTIONS(2493), - [anon_sym_DASH] = ACTIONS(2491), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_STAR] = ACTIONS(3124), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym___extension__] = ACTIONS(2495), - [anon_sym_COLON_COLON] = ACTIONS(2497), + [1393] = { + [sym_expression] = STATE(2993), + [sym__string] = STATE(2917), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(2917), + [sym_concatenated_string] = STATE(2917), + [sym_string_literal] = STATE(2114), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(2114), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), + [sym_identifier] = ACTIONS(1990), + [anon_sym_LPAREN2] = ACTIONS(4565), + [anon_sym_BANG] = ACTIONS(1994), + [anon_sym_TILDE] = ACTIONS(1994), + [anon_sym_DASH] = ACTIONS(1992), + [anon_sym_PLUS] = ACTIONS(1992), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(1996), + [anon_sym_COLON_COLON] = ACTIONS(1998), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2501), - [anon_sym_not] = ACTIONS(2491), - [anon_sym_compl] = ACTIONS(2491), - [anon_sym_DASH_DASH] = ACTIONS(4358), - [anon_sym_PLUS_PLUS] = ACTIONS(4358), - [anon_sym_sizeof] = ACTIONS(2503), - [anon_sym___alignof__] = ACTIONS(2505), - [anon_sym___alignof] = ACTIONS(2505), - [anon_sym__alignof] = ACTIONS(2505), - [anon_sym_alignof] = ACTIONS(2505), - [anon_sym__Alignof] = ACTIONS(2505), - [anon_sym_offsetof] = ACTIONS(2507), - [anon_sym__Generic] = ACTIONS(2509), - [anon_sym_asm] = ACTIONS(2511), - [anon_sym___asm__] = ACTIONS(2511), - [anon_sym___asm] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2515), - [anon_sym_u_SQUOTE] = ACTIONS(2515), - [anon_sym_U_SQUOTE] = ACTIONS(2515), - [anon_sym_u8_SQUOTE] = ACTIONS(2515), - [anon_sym_SQUOTE] = ACTIONS(2515), - [anon_sym_L_DQUOTE] = ACTIONS(2517), - [anon_sym_u_DQUOTE] = ACTIONS(2517), - [anon_sym_U_DQUOTE] = ACTIONS(2517), - [anon_sym_u8_DQUOTE] = ACTIONS(2517), - [anon_sym_DQUOTE] = ACTIONS(2517), - [sym_true] = ACTIONS(2519), - [sym_false] = ACTIONS(2519), - [anon_sym_NULL] = ACTIONS(2521), - [anon_sym_nullptr] = ACTIONS(2521), + [sym_primitive_type] = ACTIONS(1956), + [anon_sym_not] = ACTIONS(1992), + [anon_sym_compl] = ACTIONS(1992), + [anon_sym_DASH_DASH] = ACTIONS(3355), + [anon_sym_PLUS_PLUS] = ACTIONS(3355), + [anon_sym_sizeof] = ACTIONS(2000), + [anon_sym___alignof__] = ACTIONS(1960), + [anon_sym___alignof] = ACTIONS(1960), + [anon_sym__alignof] = ACTIONS(1960), + [anon_sym_alignof] = ACTIONS(1960), + [anon_sym__Alignof] = ACTIONS(1960), + [anon_sym_offsetof] = ACTIONS(1962), + [anon_sym__Generic] = ACTIONS(1964), + [anon_sym_asm] = ACTIONS(1966), + [anon_sym___asm__] = ACTIONS(1966), + [anon_sym___asm] = ACTIONS(1966), + [sym_number_literal] = ACTIONS(2002), + [anon_sym_L_SQUOTE] = ACTIONS(2004), + [anon_sym_u_SQUOTE] = ACTIONS(2004), + [anon_sym_U_SQUOTE] = ACTIONS(2004), + [anon_sym_u8_SQUOTE] = ACTIONS(2004), + [anon_sym_SQUOTE] = ACTIONS(2004), + [anon_sym_L_DQUOTE] = ACTIONS(2006), + [anon_sym_u_DQUOTE] = ACTIONS(2006), + [anon_sym_U_DQUOTE] = ACTIONS(2006), + [anon_sym_u8_DQUOTE] = ACTIONS(2006), + [anon_sym_DQUOTE] = ACTIONS(2006), + [sym_true] = ACTIONS(1974), + [sym_false] = ACTIONS(1974), + [anon_sym_NULL] = ACTIONS(1976), + [anon_sym_nullptr] = ACTIONS(1976), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(2523), - [anon_sym_R_DQUOTE] = ACTIONS(2525), - [anon_sym_LR_DQUOTE] = ACTIONS(2525), - [anon_sym_uR_DQUOTE] = ACTIONS(2525), - [anon_sym_UR_DQUOTE] = ACTIONS(2525), - [anon_sym_u8R_DQUOTE] = ACTIONS(2525), - [anon_sym_co_await] = ACTIONS(2527), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_requires] = ACTIONS(2531), - [sym_this] = ACTIONS(2519), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(2008), + [anon_sym_R_DQUOTE] = ACTIONS(2010), + [anon_sym_LR_DQUOTE] = ACTIONS(2010), + [anon_sym_uR_DQUOTE] = ACTIONS(2010), + [anon_sym_UR_DQUOTE] = ACTIONS(2010), + [anon_sym_u8R_DQUOTE] = ACTIONS(2010), + [anon_sym_co_await] = ACTIONS(2012), + [anon_sym_new] = ACTIONS(2014), + [anon_sym_requires] = ACTIONS(1988), + [sym_this] = ACTIONS(1974), }, - [1349] = { - [sym_expression] = STATE(3331), - [sym__string] = STATE(3360), - [sym_conditional_expression] = STATE(3651), - [sym_assignment_expression] = STATE(3651), - [sym_pointer_expression] = STATE(3547), - [sym_unary_expression] = STATE(3651), - [sym_binary_expression] = STATE(3651), - [sym_update_expression] = STATE(3651), - [sym_cast_expression] = STATE(3651), - [sym_sizeof_expression] = STATE(3651), - [sym_alignof_expression] = STATE(3651), - [sym_offsetof_expression] = STATE(3651), - [sym_generic_expression] = STATE(3651), - [sym_subscript_expression] = STATE(3547), - [sym_call_expression] = STATE(3547), - [sym_gnu_asm_expression] = STATE(3651), - [sym_extension_expression] = STATE(3651), - [sym_field_expression] = STATE(3547), - [sym_compound_literal_expression] = STATE(3651), - [sym_parenthesized_expression] = STATE(3547), - [sym_char_literal] = STATE(3360), - [sym_concatenated_string] = STATE(3360), - [sym_string_literal] = STATE(2369), - [sym_null] = STATE(3651), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7649), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3651), - [sym_raw_string_literal] = STATE(2369), - [sym_co_await_expression] = STATE(3651), - [sym_new_expression] = STATE(3651), - [sym_delete_expression] = STATE(3651), - [sym_requires_clause] = STATE(3651), - [sym_requires_expression] = STATE(3651), - [sym_lambda_expression] = STATE(3651), - [sym_lambda_capture_specifier] = STATE(5395), - [sym_fold_expression] = STATE(3651), - [sym_parameter_pack_expansion] = STATE(3651), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5773), - [sym_qualified_identifier] = STATE(3547), - [sym_qualified_type_identifier] = STATE(7649), - [sym_user_defined_literal] = STATE(3547), - [sym_identifier] = ACTIONS(2489), - [anon_sym_LPAREN2] = ACTIONS(4652), - [anon_sym_BANG] = ACTIONS(2493), - [anon_sym_TILDE] = ACTIONS(2493), - [anon_sym_DASH] = ACTIONS(2491), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_STAR] = ACTIONS(3124), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym___extension__] = ACTIONS(2495), - [anon_sym_COLON_COLON] = ACTIONS(2497), + [1394] = { + [sym_expression] = STATE(2994), + [sym__string] = STATE(2917), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(2917), + [sym_concatenated_string] = STATE(2917), + [sym_string_literal] = STATE(2114), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(2114), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), + [sym_identifier] = ACTIONS(1990), + [anon_sym_LPAREN2] = ACTIONS(4565), + [anon_sym_BANG] = ACTIONS(1994), + [anon_sym_TILDE] = ACTIONS(1994), + [anon_sym_DASH] = ACTIONS(1992), + [anon_sym_PLUS] = ACTIONS(1992), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(1996), + [anon_sym_COLON_COLON] = ACTIONS(1998), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2501), - [anon_sym_not] = ACTIONS(2491), - [anon_sym_compl] = ACTIONS(2491), - [anon_sym_DASH_DASH] = ACTIONS(4358), - [anon_sym_PLUS_PLUS] = ACTIONS(4358), - [anon_sym_sizeof] = ACTIONS(2503), - [anon_sym___alignof__] = ACTIONS(2505), - [anon_sym___alignof] = ACTIONS(2505), - [anon_sym__alignof] = ACTIONS(2505), - [anon_sym_alignof] = ACTIONS(2505), - [anon_sym__Alignof] = ACTIONS(2505), - [anon_sym_offsetof] = ACTIONS(2507), - [anon_sym__Generic] = ACTIONS(2509), - [anon_sym_asm] = ACTIONS(2511), - [anon_sym___asm__] = ACTIONS(2511), - [anon_sym___asm] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2515), - [anon_sym_u_SQUOTE] = ACTIONS(2515), - [anon_sym_U_SQUOTE] = ACTIONS(2515), - [anon_sym_u8_SQUOTE] = ACTIONS(2515), - [anon_sym_SQUOTE] = ACTIONS(2515), - [anon_sym_L_DQUOTE] = ACTIONS(2517), - [anon_sym_u_DQUOTE] = ACTIONS(2517), - [anon_sym_U_DQUOTE] = ACTIONS(2517), - [anon_sym_u8_DQUOTE] = ACTIONS(2517), - [anon_sym_DQUOTE] = ACTIONS(2517), - [sym_true] = ACTIONS(2519), - [sym_false] = ACTIONS(2519), - [anon_sym_NULL] = ACTIONS(2521), - [anon_sym_nullptr] = ACTIONS(2521), + [sym_primitive_type] = ACTIONS(1956), + [anon_sym_not] = ACTIONS(1992), + [anon_sym_compl] = ACTIONS(1992), + [anon_sym_DASH_DASH] = ACTIONS(3355), + [anon_sym_PLUS_PLUS] = ACTIONS(3355), + [anon_sym_sizeof] = ACTIONS(2000), + [anon_sym___alignof__] = ACTIONS(1960), + [anon_sym___alignof] = ACTIONS(1960), + [anon_sym__alignof] = ACTIONS(1960), + [anon_sym_alignof] = ACTIONS(1960), + [anon_sym__Alignof] = ACTIONS(1960), + [anon_sym_offsetof] = ACTIONS(1962), + [anon_sym__Generic] = ACTIONS(1964), + [anon_sym_asm] = ACTIONS(1966), + [anon_sym___asm__] = ACTIONS(1966), + [anon_sym___asm] = ACTIONS(1966), + [sym_number_literal] = ACTIONS(2002), + [anon_sym_L_SQUOTE] = ACTIONS(2004), + [anon_sym_u_SQUOTE] = ACTIONS(2004), + [anon_sym_U_SQUOTE] = ACTIONS(2004), + [anon_sym_u8_SQUOTE] = ACTIONS(2004), + [anon_sym_SQUOTE] = ACTIONS(2004), + [anon_sym_L_DQUOTE] = ACTIONS(2006), + [anon_sym_u_DQUOTE] = ACTIONS(2006), + [anon_sym_U_DQUOTE] = ACTIONS(2006), + [anon_sym_u8_DQUOTE] = ACTIONS(2006), + [anon_sym_DQUOTE] = ACTIONS(2006), + [sym_true] = ACTIONS(1974), + [sym_false] = ACTIONS(1974), + [anon_sym_NULL] = ACTIONS(1976), + [anon_sym_nullptr] = ACTIONS(1976), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(2523), - [anon_sym_R_DQUOTE] = ACTIONS(2525), - [anon_sym_LR_DQUOTE] = ACTIONS(2525), - [anon_sym_uR_DQUOTE] = ACTIONS(2525), - [anon_sym_UR_DQUOTE] = ACTIONS(2525), - [anon_sym_u8R_DQUOTE] = ACTIONS(2525), - [anon_sym_co_await] = ACTIONS(2527), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_requires] = ACTIONS(2531), - [sym_this] = ACTIONS(2519), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(2008), + [anon_sym_R_DQUOTE] = ACTIONS(2010), + [anon_sym_LR_DQUOTE] = ACTIONS(2010), + [anon_sym_uR_DQUOTE] = ACTIONS(2010), + [anon_sym_UR_DQUOTE] = ACTIONS(2010), + [anon_sym_u8R_DQUOTE] = ACTIONS(2010), + [anon_sym_co_await] = ACTIONS(2012), + [anon_sym_new] = ACTIONS(2014), + [anon_sym_requires] = ACTIONS(1988), + [sym_this] = ACTIONS(1974), }, - [1350] = { - [sym_expression] = STATE(3332), - [sym__string] = STATE(3360), - [sym_conditional_expression] = STATE(3651), - [sym_assignment_expression] = STATE(3651), - [sym_pointer_expression] = STATE(3547), - [sym_unary_expression] = STATE(3651), - [sym_binary_expression] = STATE(3651), - [sym_update_expression] = STATE(3651), - [sym_cast_expression] = STATE(3651), - [sym_sizeof_expression] = STATE(3651), - [sym_alignof_expression] = STATE(3651), - [sym_offsetof_expression] = STATE(3651), - [sym_generic_expression] = STATE(3651), - [sym_subscript_expression] = STATE(3547), - [sym_call_expression] = STATE(3547), - [sym_gnu_asm_expression] = STATE(3651), - [sym_extension_expression] = STATE(3651), - [sym_field_expression] = STATE(3547), - [sym_compound_literal_expression] = STATE(3651), - [sym_parenthesized_expression] = STATE(3547), - [sym_char_literal] = STATE(3360), - [sym_concatenated_string] = STATE(3360), - [sym_string_literal] = STATE(2369), - [sym_null] = STATE(3651), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7649), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3651), - [sym_raw_string_literal] = STATE(2369), - [sym_co_await_expression] = STATE(3651), - [sym_new_expression] = STATE(3651), - [sym_delete_expression] = STATE(3651), - [sym_requires_clause] = STATE(3651), - [sym_requires_expression] = STATE(3651), - [sym_lambda_expression] = STATE(3651), - [sym_lambda_capture_specifier] = STATE(5395), - [sym_fold_expression] = STATE(3651), - [sym_parameter_pack_expansion] = STATE(3651), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5773), - [sym_qualified_identifier] = STATE(3547), - [sym_qualified_type_identifier] = STATE(7649), - [sym_user_defined_literal] = STATE(3547), - [sym_identifier] = ACTIONS(2489), - [anon_sym_LPAREN2] = ACTIONS(4652), - [anon_sym_BANG] = ACTIONS(2493), - [anon_sym_TILDE] = ACTIONS(2493), - [anon_sym_DASH] = ACTIONS(2491), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_STAR] = ACTIONS(3124), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym___extension__] = ACTIONS(2495), - [anon_sym_COLON_COLON] = ACTIONS(2497), + [1395] = { + [sym_expression] = STATE(3190), + [sym__string] = STATE(3393), + [sym_conditional_expression] = STATE(3401), + [sym_assignment_expression] = STATE(3401), + [sym_pointer_expression] = STATE(3405), + [sym_unary_expression] = STATE(3401), + [sym_binary_expression] = STATE(3401), + [sym_update_expression] = STATE(3401), + [sym_cast_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3401), + [sym_alignof_expression] = STATE(3401), + [sym_offsetof_expression] = STATE(3401), + [sym_generic_expression] = STATE(3401), + [sym_subscript_expression] = STATE(3405), + [sym_call_expression] = STATE(3405), + [sym_gnu_asm_expression] = STATE(3401), + [sym_extension_expression] = STATE(3401), + [sym_field_expression] = STATE(3405), + [sym_compound_literal_expression] = STATE(3401), + [sym_parenthesized_expression] = STATE(3405), + [sym_char_literal] = STATE(3393), + [sym_concatenated_string] = STATE(3393), + [sym_string_literal] = STATE(2380), + [sym_null] = STATE(3401), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7745), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3401), + [sym_raw_string_literal] = STATE(2380), + [sym_co_await_expression] = STATE(3401), + [sym_new_expression] = STATE(3401), + [sym_delete_expression] = STATE(3401), + [sym_requires_clause] = STATE(3401), + [sym_requires_expression] = STATE(3401), + [sym_lambda_expression] = STATE(3401), + [sym_lambda_capture_specifier] = STATE(5494), + [sym_fold_expression] = STATE(3401), + [sym_parameter_pack_expansion] = STATE(3401), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3405), + [sym_qualified_type_identifier] = STATE(7745), + [sym_user_defined_literal] = STATE(3405), + [sym_identifier] = ACTIONS(2453), + [anon_sym_LPAREN2] = ACTIONS(2018), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(2455), + [anon_sym_COLON_COLON] = ACTIONS(1804), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2501), - [anon_sym_not] = ACTIONS(2491), - [anon_sym_compl] = ACTIONS(2491), - [anon_sym_DASH_DASH] = ACTIONS(4358), - [anon_sym_PLUS_PLUS] = ACTIONS(4358), - [anon_sym_sizeof] = ACTIONS(2503), - [anon_sym___alignof__] = ACTIONS(2505), - [anon_sym___alignof] = ACTIONS(2505), - [anon_sym__alignof] = ACTIONS(2505), - [anon_sym_alignof] = ACTIONS(2505), - [anon_sym__Alignof] = ACTIONS(2505), - [anon_sym_offsetof] = ACTIONS(2507), - [anon_sym__Generic] = ACTIONS(2509), - [anon_sym_asm] = ACTIONS(2511), - [anon_sym___asm__] = ACTIONS(2511), - [anon_sym___asm] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2515), - [anon_sym_u_SQUOTE] = ACTIONS(2515), - [anon_sym_U_SQUOTE] = ACTIONS(2515), - [anon_sym_u8_SQUOTE] = ACTIONS(2515), - [anon_sym_SQUOTE] = ACTIONS(2515), - [anon_sym_L_DQUOTE] = ACTIONS(2517), - [anon_sym_u_DQUOTE] = ACTIONS(2517), - [anon_sym_U_DQUOTE] = ACTIONS(2517), - [anon_sym_u8_DQUOTE] = ACTIONS(2517), - [anon_sym_DQUOTE] = ACTIONS(2517), - [sym_true] = ACTIONS(2519), - [sym_false] = ACTIONS(2519), - [anon_sym_NULL] = ACTIONS(2521), - [anon_sym_nullptr] = ACTIONS(2521), + [sym_primitive_type] = ACTIONS(2459), + [anon_sym_not] = ACTIONS(1796), + [anon_sym_compl] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_sizeof] = ACTIONS(1824), + [anon_sym___alignof__] = ACTIONS(1826), + [anon_sym___alignof] = ACTIONS(1826), + [anon_sym__alignof] = ACTIONS(1826), + [anon_sym_alignof] = ACTIONS(1826), + [anon_sym__Alignof] = ACTIONS(1826), + [anon_sym_offsetof] = ACTIONS(1828), + [anon_sym__Generic] = ACTIONS(1830), + [anon_sym_asm] = ACTIONS(1832), + [anon_sym___asm__] = ACTIONS(1832), + [anon_sym___asm] = ACTIONS(1832), + [sym_number_literal] = ACTIONS(1834), + [anon_sym_L_SQUOTE] = ACTIONS(1836), + [anon_sym_u_SQUOTE] = ACTIONS(1836), + [anon_sym_U_SQUOTE] = ACTIONS(1836), + [anon_sym_u8_SQUOTE] = ACTIONS(1836), + [anon_sym_SQUOTE] = ACTIONS(1836), + [anon_sym_L_DQUOTE] = ACTIONS(1838), + [anon_sym_u_DQUOTE] = ACTIONS(1838), + [anon_sym_U_DQUOTE] = ACTIONS(1838), + [anon_sym_u8_DQUOTE] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym_true] = ACTIONS(1840), + [sym_false] = ACTIONS(1840), + [anon_sym_NULL] = ACTIONS(1842), + [anon_sym_nullptr] = ACTIONS(1842), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(2523), - [anon_sym_R_DQUOTE] = ACTIONS(2525), - [anon_sym_LR_DQUOTE] = ACTIONS(2525), - [anon_sym_uR_DQUOTE] = ACTIONS(2525), - [anon_sym_UR_DQUOTE] = ACTIONS(2525), - [anon_sym_u8R_DQUOTE] = ACTIONS(2525), - [anon_sym_co_await] = ACTIONS(2527), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_requires] = ACTIONS(2531), - [sym_this] = ACTIONS(2519), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1852), + [anon_sym_R_DQUOTE] = ACTIONS(1854), + [anon_sym_LR_DQUOTE] = ACTIONS(1854), + [anon_sym_uR_DQUOTE] = ACTIONS(1854), + [anon_sym_UR_DQUOTE] = ACTIONS(1854), + [anon_sym_u8R_DQUOTE] = ACTIONS(1854), + [anon_sym_co_await] = ACTIONS(1856), + [anon_sym_new] = ACTIONS(1858), + [anon_sym_requires] = ACTIONS(1860), + [sym_this] = ACTIONS(1840), }, - [1351] = { - [sym_expression] = STATE(3334), - [sym__string] = STATE(3360), - [sym_conditional_expression] = STATE(3651), - [sym_assignment_expression] = STATE(3651), - [sym_pointer_expression] = STATE(3547), - [sym_unary_expression] = STATE(3651), - [sym_binary_expression] = STATE(3651), - [sym_update_expression] = STATE(3651), - [sym_cast_expression] = STATE(3651), - [sym_sizeof_expression] = STATE(3651), - [sym_alignof_expression] = STATE(3651), - [sym_offsetof_expression] = STATE(3651), - [sym_generic_expression] = STATE(3651), - [sym_subscript_expression] = STATE(3547), - [sym_call_expression] = STATE(3547), - [sym_gnu_asm_expression] = STATE(3651), - [sym_extension_expression] = STATE(3651), - [sym_field_expression] = STATE(3547), - [sym_compound_literal_expression] = STATE(3651), - [sym_parenthesized_expression] = STATE(3547), - [sym_char_literal] = STATE(3360), - [sym_concatenated_string] = STATE(3360), - [sym_string_literal] = STATE(2369), - [sym_null] = STATE(3651), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7649), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3651), - [sym_raw_string_literal] = STATE(2369), - [sym_co_await_expression] = STATE(3651), - [sym_new_expression] = STATE(3651), - [sym_delete_expression] = STATE(3651), - [sym_requires_clause] = STATE(3651), - [sym_requires_expression] = STATE(3651), - [sym_lambda_expression] = STATE(3651), - [sym_lambda_capture_specifier] = STATE(5395), - [sym_fold_expression] = STATE(3651), - [sym_parameter_pack_expansion] = STATE(3651), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5773), - [sym_qualified_identifier] = STATE(3547), - [sym_qualified_type_identifier] = STATE(7649), - [sym_user_defined_literal] = STATE(3547), - [sym_identifier] = ACTIONS(2489), - [anon_sym_LPAREN2] = ACTIONS(4652), - [anon_sym_BANG] = ACTIONS(2493), - [anon_sym_TILDE] = ACTIONS(2493), - [anon_sym_DASH] = ACTIONS(2491), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_STAR] = ACTIONS(3124), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym___extension__] = ACTIONS(2495), - [anon_sym_COLON_COLON] = ACTIONS(2497), + [1396] = { + [sym_expression] = STATE(3269), + [sym__string] = STATE(3549), + [sym_conditional_expression] = STATE(3636), + [sym_assignment_expression] = STATE(3636), + [sym_pointer_expression] = STATE(3696), + [sym_unary_expression] = STATE(3636), + [sym_binary_expression] = STATE(3636), + [sym_update_expression] = STATE(3636), + [sym_cast_expression] = STATE(3636), + [sym_sizeof_expression] = STATE(3636), + [sym_alignof_expression] = STATE(3636), + [sym_offsetof_expression] = STATE(3636), + [sym_generic_expression] = STATE(3636), + [sym_subscript_expression] = STATE(3696), + [sym_call_expression] = STATE(3696), + [sym_gnu_asm_expression] = STATE(3636), + [sym_extension_expression] = STATE(3636), + [sym_field_expression] = STATE(3696), + [sym_compound_literal_expression] = STATE(3636), + [sym_parenthesized_expression] = STATE(3696), + [sym_char_literal] = STATE(3549), + [sym_concatenated_string] = STATE(3549), + [sym_string_literal] = STATE(2433), + [sym_null] = STATE(3636), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7883), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3636), + [sym_raw_string_literal] = STATE(2433), + [sym_co_await_expression] = STATE(3636), + [sym_new_expression] = STATE(3636), + [sym_delete_expression] = STATE(3636), + [sym_requires_clause] = STATE(3636), + [sym_requires_expression] = STATE(3636), + [sym_lambda_expression] = STATE(3636), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3636), + [sym_parameter_pack_expansion] = STATE(3636), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5769), + [sym_qualified_identifier] = STATE(3696), + [sym_qualified_type_identifier] = STATE(7883), + [sym_user_defined_literal] = STATE(3696), + [sym_identifier] = ACTIONS(2483), + [anon_sym_LPAREN2] = ACTIONS(4668), + [anon_sym_BANG] = ACTIONS(2487), + [anon_sym_TILDE] = ACTIONS(2487), + [anon_sym_DASH] = ACTIONS(2485), + [anon_sym_PLUS] = ACTIONS(2485), + [anon_sym_STAR] = ACTIONS(3136), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym___extension__] = ACTIONS(2489), + [anon_sym_COLON_COLON] = ACTIONS(2491), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2501), - [anon_sym_not] = ACTIONS(2491), - [anon_sym_compl] = ACTIONS(2491), - [anon_sym_DASH_DASH] = ACTIONS(4358), - [anon_sym_PLUS_PLUS] = ACTIONS(4358), - [anon_sym_sizeof] = ACTIONS(2503), - [anon_sym___alignof__] = ACTIONS(2505), - [anon_sym___alignof] = ACTIONS(2505), - [anon_sym__alignof] = ACTIONS(2505), - [anon_sym_alignof] = ACTIONS(2505), - [anon_sym__Alignof] = ACTIONS(2505), - [anon_sym_offsetof] = ACTIONS(2507), - [anon_sym__Generic] = ACTIONS(2509), - [anon_sym_asm] = ACTIONS(2511), - [anon_sym___asm__] = ACTIONS(2511), - [anon_sym___asm] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2515), - [anon_sym_u_SQUOTE] = ACTIONS(2515), - [anon_sym_U_SQUOTE] = ACTIONS(2515), - [anon_sym_u8_SQUOTE] = ACTIONS(2515), - [anon_sym_SQUOTE] = ACTIONS(2515), - [anon_sym_L_DQUOTE] = ACTIONS(2517), - [anon_sym_u_DQUOTE] = ACTIONS(2517), - [anon_sym_U_DQUOTE] = ACTIONS(2517), - [anon_sym_u8_DQUOTE] = ACTIONS(2517), - [anon_sym_DQUOTE] = ACTIONS(2517), - [sym_true] = ACTIONS(2519), - [sym_false] = ACTIONS(2519), - [anon_sym_NULL] = ACTIONS(2521), - [anon_sym_nullptr] = ACTIONS(2521), + [sym_primitive_type] = ACTIONS(2495), + [anon_sym_not] = ACTIONS(2485), + [anon_sym_compl] = ACTIONS(2485), + [anon_sym_DASH_DASH] = ACTIONS(4513), + [anon_sym_PLUS_PLUS] = ACTIONS(4513), + [anon_sym_sizeof] = ACTIONS(2497), + [anon_sym___alignof__] = ACTIONS(2499), + [anon_sym___alignof] = ACTIONS(2499), + [anon_sym__alignof] = ACTIONS(2499), + [anon_sym_alignof] = ACTIONS(2499), + [anon_sym__Alignof] = ACTIONS(2499), + [anon_sym_offsetof] = ACTIONS(2501), + [anon_sym__Generic] = ACTIONS(2503), + [anon_sym_asm] = ACTIONS(2505), + [anon_sym___asm__] = ACTIONS(2505), + [anon_sym___asm] = ACTIONS(2505), + [sym_number_literal] = ACTIONS(2507), + [anon_sym_L_SQUOTE] = ACTIONS(2509), + [anon_sym_u_SQUOTE] = ACTIONS(2509), + [anon_sym_U_SQUOTE] = ACTIONS(2509), + [anon_sym_u8_SQUOTE] = ACTIONS(2509), + [anon_sym_SQUOTE] = ACTIONS(2509), + [anon_sym_L_DQUOTE] = ACTIONS(2511), + [anon_sym_u_DQUOTE] = ACTIONS(2511), + [anon_sym_U_DQUOTE] = ACTIONS(2511), + [anon_sym_u8_DQUOTE] = ACTIONS(2511), + [anon_sym_DQUOTE] = ACTIONS(2511), + [sym_true] = ACTIONS(2513), + [sym_false] = ACTIONS(2513), + [anon_sym_NULL] = ACTIONS(2515), + [anon_sym_nullptr] = ACTIONS(2515), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(2523), - [anon_sym_R_DQUOTE] = ACTIONS(2525), - [anon_sym_LR_DQUOTE] = ACTIONS(2525), - [anon_sym_uR_DQUOTE] = ACTIONS(2525), - [anon_sym_UR_DQUOTE] = ACTIONS(2525), - [anon_sym_u8R_DQUOTE] = ACTIONS(2525), - [anon_sym_co_await] = ACTIONS(2527), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_requires] = ACTIONS(2531), - [sym_this] = ACTIONS(2519), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(2517), + [anon_sym_R_DQUOTE] = ACTIONS(2519), + [anon_sym_LR_DQUOTE] = ACTIONS(2519), + [anon_sym_uR_DQUOTE] = ACTIONS(2519), + [anon_sym_UR_DQUOTE] = ACTIONS(2519), + [anon_sym_u8R_DQUOTE] = ACTIONS(2519), + [anon_sym_co_await] = ACTIONS(2521), + [anon_sym_new] = ACTIONS(2523), + [anon_sym_requires] = ACTIONS(2525), + [sym_this] = ACTIONS(2513), }, - [1352] = { - [sym_expression] = STATE(3337), - [sym__string] = STATE(3360), - [sym_conditional_expression] = STATE(3651), - [sym_assignment_expression] = STATE(3651), - [sym_pointer_expression] = STATE(3547), - [sym_unary_expression] = STATE(3651), - [sym_binary_expression] = STATE(3651), - [sym_update_expression] = STATE(3651), - [sym_cast_expression] = STATE(3651), - [sym_sizeof_expression] = STATE(3651), - [sym_alignof_expression] = STATE(3651), - [sym_offsetof_expression] = STATE(3651), - [sym_generic_expression] = STATE(3651), - [sym_subscript_expression] = STATE(3547), - [sym_call_expression] = STATE(3547), - [sym_gnu_asm_expression] = STATE(3651), - [sym_extension_expression] = STATE(3651), - [sym_field_expression] = STATE(3547), - [sym_compound_literal_expression] = STATE(3651), - [sym_parenthesized_expression] = STATE(3547), - [sym_char_literal] = STATE(3360), - [sym_concatenated_string] = STATE(3360), - [sym_string_literal] = STATE(2369), - [sym_null] = STATE(3651), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7649), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3651), - [sym_raw_string_literal] = STATE(2369), - [sym_co_await_expression] = STATE(3651), - [sym_new_expression] = STATE(3651), - [sym_delete_expression] = STATE(3651), - [sym_requires_clause] = STATE(3651), - [sym_requires_expression] = STATE(3651), - [sym_lambda_expression] = STATE(3651), - [sym_lambda_capture_specifier] = STATE(5395), - [sym_fold_expression] = STATE(3651), - [sym_parameter_pack_expansion] = STATE(3651), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5773), - [sym_qualified_identifier] = STATE(3547), - [sym_qualified_type_identifier] = STATE(7649), - [sym_user_defined_literal] = STATE(3547), - [sym_identifier] = ACTIONS(2489), - [anon_sym_LPAREN2] = ACTIONS(4652), - [anon_sym_BANG] = ACTIONS(2493), - [anon_sym_TILDE] = ACTIONS(2493), - [anon_sym_DASH] = ACTIONS(2491), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_STAR] = ACTIONS(3124), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym___extension__] = ACTIONS(2495), - [anon_sym_COLON_COLON] = ACTIONS(2497), + [1397] = { + [sym_expression] = STATE(3278), + [sym__string] = STATE(3549), + [sym_conditional_expression] = STATE(3636), + [sym_assignment_expression] = STATE(3636), + [sym_pointer_expression] = STATE(3696), + [sym_unary_expression] = STATE(3636), + [sym_binary_expression] = STATE(3636), + [sym_update_expression] = STATE(3636), + [sym_cast_expression] = STATE(3636), + [sym_sizeof_expression] = STATE(3636), + [sym_alignof_expression] = STATE(3636), + [sym_offsetof_expression] = STATE(3636), + [sym_generic_expression] = STATE(3636), + [sym_subscript_expression] = STATE(3696), + [sym_call_expression] = STATE(3696), + [sym_gnu_asm_expression] = STATE(3636), + [sym_extension_expression] = STATE(3636), + [sym_field_expression] = STATE(3696), + [sym_compound_literal_expression] = STATE(3636), + [sym_parenthesized_expression] = STATE(3696), + [sym_char_literal] = STATE(3549), + [sym_concatenated_string] = STATE(3549), + [sym_string_literal] = STATE(2433), + [sym_null] = STATE(3636), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7883), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3636), + [sym_raw_string_literal] = STATE(2433), + [sym_co_await_expression] = STATE(3636), + [sym_new_expression] = STATE(3636), + [sym_delete_expression] = STATE(3636), + [sym_requires_clause] = STATE(3636), + [sym_requires_expression] = STATE(3636), + [sym_lambda_expression] = STATE(3636), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3636), + [sym_parameter_pack_expansion] = STATE(3636), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5769), + [sym_qualified_identifier] = STATE(3696), + [sym_qualified_type_identifier] = STATE(7883), + [sym_user_defined_literal] = STATE(3696), + [sym_identifier] = ACTIONS(2483), + [anon_sym_LPAREN2] = ACTIONS(4668), + [anon_sym_BANG] = ACTIONS(2487), + [anon_sym_TILDE] = ACTIONS(2487), + [anon_sym_DASH] = ACTIONS(2485), + [anon_sym_PLUS] = ACTIONS(2485), + [anon_sym_STAR] = ACTIONS(3136), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym___extension__] = ACTIONS(2489), + [anon_sym_COLON_COLON] = ACTIONS(2491), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2501), - [anon_sym_not] = ACTIONS(2491), - [anon_sym_compl] = ACTIONS(2491), - [anon_sym_DASH_DASH] = ACTIONS(4358), - [anon_sym_PLUS_PLUS] = ACTIONS(4358), - [anon_sym_sizeof] = ACTIONS(2503), - [anon_sym___alignof__] = ACTIONS(2505), - [anon_sym___alignof] = ACTIONS(2505), - [anon_sym__alignof] = ACTIONS(2505), - [anon_sym_alignof] = ACTIONS(2505), - [anon_sym__Alignof] = ACTIONS(2505), - [anon_sym_offsetof] = ACTIONS(2507), - [anon_sym__Generic] = ACTIONS(2509), - [anon_sym_asm] = ACTIONS(2511), - [anon_sym___asm__] = ACTIONS(2511), - [anon_sym___asm] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2515), - [anon_sym_u_SQUOTE] = ACTIONS(2515), - [anon_sym_U_SQUOTE] = ACTIONS(2515), - [anon_sym_u8_SQUOTE] = ACTIONS(2515), - [anon_sym_SQUOTE] = ACTIONS(2515), - [anon_sym_L_DQUOTE] = ACTIONS(2517), - [anon_sym_u_DQUOTE] = ACTIONS(2517), - [anon_sym_U_DQUOTE] = ACTIONS(2517), - [anon_sym_u8_DQUOTE] = ACTIONS(2517), - [anon_sym_DQUOTE] = ACTIONS(2517), - [sym_true] = ACTIONS(2519), - [sym_false] = ACTIONS(2519), - [anon_sym_NULL] = ACTIONS(2521), - [anon_sym_nullptr] = ACTIONS(2521), + [sym_primitive_type] = ACTIONS(2495), + [anon_sym_not] = ACTIONS(2485), + [anon_sym_compl] = ACTIONS(2485), + [anon_sym_DASH_DASH] = ACTIONS(4513), + [anon_sym_PLUS_PLUS] = ACTIONS(4513), + [anon_sym_sizeof] = ACTIONS(2497), + [anon_sym___alignof__] = ACTIONS(2499), + [anon_sym___alignof] = ACTIONS(2499), + [anon_sym__alignof] = ACTIONS(2499), + [anon_sym_alignof] = ACTIONS(2499), + [anon_sym__Alignof] = ACTIONS(2499), + [anon_sym_offsetof] = ACTIONS(2501), + [anon_sym__Generic] = ACTIONS(2503), + [anon_sym_asm] = ACTIONS(2505), + [anon_sym___asm__] = ACTIONS(2505), + [anon_sym___asm] = ACTIONS(2505), + [sym_number_literal] = ACTIONS(2507), + [anon_sym_L_SQUOTE] = ACTIONS(2509), + [anon_sym_u_SQUOTE] = ACTIONS(2509), + [anon_sym_U_SQUOTE] = ACTIONS(2509), + [anon_sym_u8_SQUOTE] = ACTIONS(2509), + [anon_sym_SQUOTE] = ACTIONS(2509), + [anon_sym_L_DQUOTE] = ACTIONS(2511), + [anon_sym_u_DQUOTE] = ACTIONS(2511), + [anon_sym_U_DQUOTE] = ACTIONS(2511), + [anon_sym_u8_DQUOTE] = ACTIONS(2511), + [anon_sym_DQUOTE] = ACTIONS(2511), + [sym_true] = ACTIONS(2513), + [sym_false] = ACTIONS(2513), + [anon_sym_NULL] = ACTIONS(2515), + [anon_sym_nullptr] = ACTIONS(2515), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(2523), - [anon_sym_R_DQUOTE] = ACTIONS(2525), - [anon_sym_LR_DQUOTE] = ACTIONS(2525), - [anon_sym_uR_DQUOTE] = ACTIONS(2525), - [anon_sym_UR_DQUOTE] = ACTIONS(2525), - [anon_sym_u8R_DQUOTE] = ACTIONS(2525), - [anon_sym_co_await] = ACTIONS(2527), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_requires] = ACTIONS(2531), - [sym_this] = ACTIONS(2519), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(2517), + [anon_sym_R_DQUOTE] = ACTIONS(2519), + [anon_sym_LR_DQUOTE] = ACTIONS(2519), + [anon_sym_uR_DQUOTE] = ACTIONS(2519), + [anon_sym_UR_DQUOTE] = ACTIONS(2519), + [anon_sym_u8R_DQUOTE] = ACTIONS(2519), + [anon_sym_co_await] = ACTIONS(2521), + [anon_sym_new] = ACTIONS(2523), + [anon_sym_requires] = ACTIONS(2525), + [sym_this] = ACTIONS(2513), }, - [1353] = { - [sym_expression] = STATE(3341), - [sym__string] = STATE(3360), - [sym_conditional_expression] = STATE(3651), - [sym_assignment_expression] = STATE(3651), - [sym_pointer_expression] = STATE(3547), - [sym_unary_expression] = STATE(3651), - [sym_binary_expression] = STATE(3651), - [sym_update_expression] = STATE(3651), - [sym_cast_expression] = STATE(3651), - [sym_sizeof_expression] = STATE(3651), - [sym_alignof_expression] = STATE(3651), - [sym_offsetof_expression] = STATE(3651), - [sym_generic_expression] = STATE(3651), - [sym_subscript_expression] = STATE(3547), - [sym_call_expression] = STATE(3547), - [sym_gnu_asm_expression] = STATE(3651), - [sym_extension_expression] = STATE(3651), - [sym_field_expression] = STATE(3547), - [sym_compound_literal_expression] = STATE(3651), - [sym_parenthesized_expression] = STATE(3547), - [sym_char_literal] = STATE(3360), - [sym_concatenated_string] = STATE(3360), - [sym_string_literal] = STATE(2369), - [sym_null] = STATE(3651), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7649), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3651), - [sym_raw_string_literal] = STATE(2369), - [sym_co_await_expression] = STATE(3651), - [sym_new_expression] = STATE(3651), - [sym_delete_expression] = STATE(3651), - [sym_requires_clause] = STATE(3651), - [sym_requires_expression] = STATE(3651), - [sym_lambda_expression] = STATE(3651), - [sym_lambda_capture_specifier] = STATE(5395), - [sym_fold_expression] = STATE(3651), - [sym_parameter_pack_expansion] = STATE(3651), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5773), - [sym_qualified_identifier] = STATE(3547), - [sym_qualified_type_identifier] = STATE(7649), - [sym_user_defined_literal] = STATE(3547), - [sym_identifier] = ACTIONS(2489), - [anon_sym_LPAREN2] = ACTIONS(4652), - [anon_sym_BANG] = ACTIONS(2493), - [anon_sym_TILDE] = ACTIONS(2493), - [anon_sym_DASH] = ACTIONS(2491), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_STAR] = ACTIONS(3124), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym___extension__] = ACTIONS(2495), - [anon_sym_COLON_COLON] = ACTIONS(2497), + [1398] = { + [sym_expression] = STATE(3310), + [sym__string] = STATE(3549), + [sym_conditional_expression] = STATE(3636), + [sym_assignment_expression] = STATE(3636), + [sym_pointer_expression] = STATE(3696), + [sym_unary_expression] = STATE(3636), + [sym_binary_expression] = STATE(3636), + [sym_update_expression] = STATE(3636), + [sym_cast_expression] = STATE(3636), + [sym_sizeof_expression] = STATE(3636), + [sym_alignof_expression] = STATE(3636), + [sym_offsetof_expression] = STATE(3636), + [sym_generic_expression] = STATE(3636), + [sym_subscript_expression] = STATE(3696), + [sym_call_expression] = STATE(3696), + [sym_gnu_asm_expression] = STATE(3636), + [sym_extension_expression] = STATE(3636), + [sym_field_expression] = STATE(3696), + [sym_compound_literal_expression] = STATE(3636), + [sym_parenthesized_expression] = STATE(3696), + [sym_char_literal] = STATE(3549), + [sym_concatenated_string] = STATE(3549), + [sym_string_literal] = STATE(2433), + [sym_null] = STATE(3636), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7883), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3636), + [sym_raw_string_literal] = STATE(2433), + [sym_co_await_expression] = STATE(3636), + [sym_new_expression] = STATE(3636), + [sym_delete_expression] = STATE(3636), + [sym_requires_clause] = STATE(3636), + [sym_requires_expression] = STATE(3636), + [sym_lambda_expression] = STATE(3636), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3636), + [sym_parameter_pack_expansion] = STATE(3636), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5769), + [sym_qualified_identifier] = STATE(3696), + [sym_qualified_type_identifier] = STATE(7883), + [sym_user_defined_literal] = STATE(3696), + [sym_identifier] = ACTIONS(2483), + [anon_sym_LPAREN2] = ACTIONS(4668), + [anon_sym_BANG] = ACTIONS(2487), + [anon_sym_TILDE] = ACTIONS(2487), + [anon_sym_DASH] = ACTIONS(2485), + [anon_sym_PLUS] = ACTIONS(2485), + [anon_sym_STAR] = ACTIONS(3136), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym___extension__] = ACTIONS(2489), + [anon_sym_COLON_COLON] = ACTIONS(2491), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2501), - [anon_sym_not] = ACTIONS(2491), - [anon_sym_compl] = ACTIONS(2491), - [anon_sym_DASH_DASH] = ACTIONS(4358), - [anon_sym_PLUS_PLUS] = ACTIONS(4358), - [anon_sym_sizeof] = ACTIONS(2503), - [anon_sym___alignof__] = ACTIONS(2505), - [anon_sym___alignof] = ACTIONS(2505), - [anon_sym__alignof] = ACTIONS(2505), - [anon_sym_alignof] = ACTIONS(2505), - [anon_sym__Alignof] = ACTIONS(2505), - [anon_sym_offsetof] = ACTIONS(2507), - [anon_sym__Generic] = ACTIONS(2509), - [anon_sym_asm] = ACTIONS(2511), - [anon_sym___asm__] = ACTIONS(2511), - [anon_sym___asm] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2515), - [anon_sym_u_SQUOTE] = ACTIONS(2515), - [anon_sym_U_SQUOTE] = ACTIONS(2515), - [anon_sym_u8_SQUOTE] = ACTIONS(2515), - [anon_sym_SQUOTE] = ACTIONS(2515), - [anon_sym_L_DQUOTE] = ACTIONS(2517), - [anon_sym_u_DQUOTE] = ACTIONS(2517), - [anon_sym_U_DQUOTE] = ACTIONS(2517), - [anon_sym_u8_DQUOTE] = ACTIONS(2517), - [anon_sym_DQUOTE] = ACTIONS(2517), - [sym_true] = ACTIONS(2519), - [sym_false] = ACTIONS(2519), - [anon_sym_NULL] = ACTIONS(2521), - [anon_sym_nullptr] = ACTIONS(2521), + [sym_primitive_type] = ACTIONS(2495), + [anon_sym_not] = ACTIONS(2485), + [anon_sym_compl] = ACTIONS(2485), + [anon_sym_DASH_DASH] = ACTIONS(4513), + [anon_sym_PLUS_PLUS] = ACTIONS(4513), + [anon_sym_sizeof] = ACTIONS(2497), + [anon_sym___alignof__] = ACTIONS(2499), + [anon_sym___alignof] = ACTIONS(2499), + [anon_sym__alignof] = ACTIONS(2499), + [anon_sym_alignof] = ACTIONS(2499), + [anon_sym__Alignof] = ACTIONS(2499), + [anon_sym_offsetof] = ACTIONS(2501), + [anon_sym__Generic] = ACTIONS(2503), + [anon_sym_asm] = ACTIONS(2505), + [anon_sym___asm__] = ACTIONS(2505), + [anon_sym___asm] = ACTIONS(2505), + [sym_number_literal] = ACTIONS(2507), + [anon_sym_L_SQUOTE] = ACTIONS(2509), + [anon_sym_u_SQUOTE] = ACTIONS(2509), + [anon_sym_U_SQUOTE] = ACTIONS(2509), + [anon_sym_u8_SQUOTE] = ACTIONS(2509), + [anon_sym_SQUOTE] = ACTIONS(2509), + [anon_sym_L_DQUOTE] = ACTIONS(2511), + [anon_sym_u_DQUOTE] = ACTIONS(2511), + [anon_sym_U_DQUOTE] = ACTIONS(2511), + [anon_sym_u8_DQUOTE] = ACTIONS(2511), + [anon_sym_DQUOTE] = ACTIONS(2511), + [sym_true] = ACTIONS(2513), + [sym_false] = ACTIONS(2513), + [anon_sym_NULL] = ACTIONS(2515), + [anon_sym_nullptr] = ACTIONS(2515), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(2523), - [anon_sym_R_DQUOTE] = ACTIONS(2525), - [anon_sym_LR_DQUOTE] = ACTIONS(2525), - [anon_sym_uR_DQUOTE] = ACTIONS(2525), - [anon_sym_UR_DQUOTE] = ACTIONS(2525), - [anon_sym_u8R_DQUOTE] = ACTIONS(2525), - [anon_sym_co_await] = ACTIONS(2527), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_requires] = ACTIONS(2531), - [sym_this] = ACTIONS(2519), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(2517), + [anon_sym_R_DQUOTE] = ACTIONS(2519), + [anon_sym_LR_DQUOTE] = ACTIONS(2519), + [anon_sym_uR_DQUOTE] = ACTIONS(2519), + [anon_sym_UR_DQUOTE] = ACTIONS(2519), + [anon_sym_u8R_DQUOTE] = ACTIONS(2519), + [anon_sym_co_await] = ACTIONS(2521), + [anon_sym_new] = ACTIONS(2523), + [anon_sym_requires] = ACTIONS(2525), + [sym_this] = ACTIONS(2513), }, - [1354] = { - [sym_expression] = STATE(3342), - [sym__string] = STATE(3360), - [sym_conditional_expression] = STATE(3651), - [sym_assignment_expression] = STATE(3651), - [sym_pointer_expression] = STATE(3547), - [sym_unary_expression] = STATE(3651), - [sym_binary_expression] = STATE(3651), - [sym_update_expression] = STATE(3651), - [sym_cast_expression] = STATE(3651), - [sym_sizeof_expression] = STATE(3651), - [sym_alignof_expression] = STATE(3651), - [sym_offsetof_expression] = STATE(3651), - [sym_generic_expression] = STATE(3651), - [sym_subscript_expression] = STATE(3547), - [sym_call_expression] = STATE(3547), - [sym_gnu_asm_expression] = STATE(3651), - [sym_extension_expression] = STATE(3651), - [sym_field_expression] = STATE(3547), - [sym_compound_literal_expression] = STATE(3651), - [sym_parenthesized_expression] = STATE(3547), - [sym_char_literal] = STATE(3360), - [sym_concatenated_string] = STATE(3360), - [sym_string_literal] = STATE(2369), - [sym_null] = STATE(3651), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7649), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3651), - [sym_raw_string_literal] = STATE(2369), - [sym_co_await_expression] = STATE(3651), - [sym_new_expression] = STATE(3651), - [sym_delete_expression] = STATE(3651), - [sym_requires_clause] = STATE(3651), - [sym_requires_expression] = STATE(3651), - [sym_lambda_expression] = STATE(3651), - [sym_lambda_capture_specifier] = STATE(5395), - [sym_fold_expression] = STATE(3651), - [sym_parameter_pack_expansion] = STATE(3651), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5773), - [sym_qualified_identifier] = STATE(3547), - [sym_qualified_type_identifier] = STATE(7649), - [sym_user_defined_literal] = STATE(3547), - [sym_identifier] = ACTIONS(2489), - [anon_sym_LPAREN2] = ACTIONS(4652), - [anon_sym_BANG] = ACTIONS(2493), - [anon_sym_TILDE] = ACTIONS(2493), - [anon_sym_DASH] = ACTIONS(2491), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_STAR] = ACTIONS(3124), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym___extension__] = ACTIONS(2495), - [anon_sym_COLON_COLON] = ACTIONS(2497), + [1399] = { + [sym_expression] = STATE(3395), + [sym__string] = STATE(3549), + [sym_conditional_expression] = STATE(3636), + [sym_assignment_expression] = STATE(3636), + [sym_pointer_expression] = STATE(3696), + [sym_unary_expression] = STATE(3636), + [sym_binary_expression] = STATE(3636), + [sym_update_expression] = STATE(3636), + [sym_cast_expression] = STATE(3636), + [sym_sizeof_expression] = STATE(3636), + [sym_alignof_expression] = STATE(3636), + [sym_offsetof_expression] = STATE(3636), + [sym_generic_expression] = STATE(3636), + [sym_subscript_expression] = STATE(3696), + [sym_call_expression] = STATE(3696), + [sym_gnu_asm_expression] = STATE(3636), + [sym_extension_expression] = STATE(3636), + [sym_field_expression] = STATE(3696), + [sym_compound_literal_expression] = STATE(3636), + [sym_parenthesized_expression] = STATE(3696), + [sym_char_literal] = STATE(3549), + [sym_concatenated_string] = STATE(3549), + [sym_string_literal] = STATE(2433), + [sym_null] = STATE(3636), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7883), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3636), + [sym_raw_string_literal] = STATE(2433), + [sym_co_await_expression] = STATE(3636), + [sym_new_expression] = STATE(3636), + [sym_delete_expression] = STATE(3636), + [sym_requires_clause] = STATE(3636), + [sym_requires_expression] = STATE(3636), + [sym_lambda_expression] = STATE(3636), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3636), + [sym_parameter_pack_expansion] = STATE(3636), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5769), + [sym_qualified_identifier] = STATE(3696), + [sym_qualified_type_identifier] = STATE(7883), + [sym_user_defined_literal] = STATE(3696), + [sym_identifier] = ACTIONS(2483), + [anon_sym_LPAREN2] = ACTIONS(4668), + [anon_sym_BANG] = ACTIONS(2487), + [anon_sym_TILDE] = ACTIONS(2487), + [anon_sym_DASH] = ACTIONS(2485), + [anon_sym_PLUS] = ACTIONS(2485), + [anon_sym_STAR] = ACTIONS(3136), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym___extension__] = ACTIONS(2489), + [anon_sym_COLON_COLON] = ACTIONS(2491), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2501), - [anon_sym_not] = ACTIONS(2491), - [anon_sym_compl] = ACTIONS(2491), - [anon_sym_DASH_DASH] = ACTIONS(4358), - [anon_sym_PLUS_PLUS] = ACTIONS(4358), - [anon_sym_sizeof] = ACTIONS(2503), - [anon_sym___alignof__] = ACTIONS(2505), - [anon_sym___alignof] = ACTIONS(2505), - [anon_sym__alignof] = ACTIONS(2505), - [anon_sym_alignof] = ACTIONS(2505), - [anon_sym__Alignof] = ACTIONS(2505), - [anon_sym_offsetof] = ACTIONS(2507), - [anon_sym__Generic] = ACTIONS(2509), - [anon_sym_asm] = ACTIONS(2511), - [anon_sym___asm__] = ACTIONS(2511), - [anon_sym___asm] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2515), - [anon_sym_u_SQUOTE] = ACTIONS(2515), - [anon_sym_U_SQUOTE] = ACTIONS(2515), - [anon_sym_u8_SQUOTE] = ACTIONS(2515), - [anon_sym_SQUOTE] = ACTIONS(2515), - [anon_sym_L_DQUOTE] = ACTIONS(2517), - [anon_sym_u_DQUOTE] = ACTIONS(2517), - [anon_sym_U_DQUOTE] = ACTIONS(2517), - [anon_sym_u8_DQUOTE] = ACTIONS(2517), - [anon_sym_DQUOTE] = ACTIONS(2517), - [sym_true] = ACTIONS(2519), - [sym_false] = ACTIONS(2519), - [anon_sym_NULL] = ACTIONS(2521), - [anon_sym_nullptr] = ACTIONS(2521), + [sym_primitive_type] = ACTIONS(2495), + [anon_sym_not] = ACTIONS(2485), + [anon_sym_compl] = ACTIONS(2485), + [anon_sym_DASH_DASH] = ACTIONS(4513), + [anon_sym_PLUS_PLUS] = ACTIONS(4513), + [anon_sym_sizeof] = ACTIONS(2497), + [anon_sym___alignof__] = ACTIONS(2499), + [anon_sym___alignof] = ACTIONS(2499), + [anon_sym__alignof] = ACTIONS(2499), + [anon_sym_alignof] = ACTIONS(2499), + [anon_sym__Alignof] = ACTIONS(2499), + [anon_sym_offsetof] = ACTIONS(2501), + [anon_sym__Generic] = ACTIONS(2503), + [anon_sym_asm] = ACTIONS(2505), + [anon_sym___asm__] = ACTIONS(2505), + [anon_sym___asm] = ACTIONS(2505), + [sym_number_literal] = ACTIONS(2507), + [anon_sym_L_SQUOTE] = ACTIONS(2509), + [anon_sym_u_SQUOTE] = ACTIONS(2509), + [anon_sym_U_SQUOTE] = ACTIONS(2509), + [anon_sym_u8_SQUOTE] = ACTIONS(2509), + [anon_sym_SQUOTE] = ACTIONS(2509), + [anon_sym_L_DQUOTE] = ACTIONS(2511), + [anon_sym_u_DQUOTE] = ACTIONS(2511), + [anon_sym_U_DQUOTE] = ACTIONS(2511), + [anon_sym_u8_DQUOTE] = ACTIONS(2511), + [anon_sym_DQUOTE] = ACTIONS(2511), + [sym_true] = ACTIONS(2513), + [sym_false] = ACTIONS(2513), + [anon_sym_NULL] = ACTIONS(2515), + [anon_sym_nullptr] = ACTIONS(2515), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(2523), - [anon_sym_R_DQUOTE] = ACTIONS(2525), - [anon_sym_LR_DQUOTE] = ACTIONS(2525), - [anon_sym_uR_DQUOTE] = ACTIONS(2525), - [anon_sym_UR_DQUOTE] = ACTIONS(2525), - [anon_sym_u8R_DQUOTE] = ACTIONS(2525), - [anon_sym_co_await] = ACTIONS(2527), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_requires] = ACTIONS(2531), - [sym_this] = ACTIONS(2519), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(2517), + [anon_sym_R_DQUOTE] = ACTIONS(2519), + [anon_sym_LR_DQUOTE] = ACTIONS(2519), + [anon_sym_uR_DQUOTE] = ACTIONS(2519), + [anon_sym_UR_DQUOTE] = ACTIONS(2519), + [anon_sym_u8R_DQUOTE] = ACTIONS(2519), + [anon_sym_co_await] = ACTIONS(2521), + [anon_sym_new] = ACTIONS(2523), + [anon_sym_requires] = ACTIONS(2525), + [sym_this] = ACTIONS(2513), }, - [1355] = { - [sym_expression] = STATE(3346), - [sym__string] = STATE(3360), - [sym_conditional_expression] = STATE(3651), - [sym_assignment_expression] = STATE(3651), - [sym_pointer_expression] = STATE(3547), - [sym_unary_expression] = STATE(3651), - [sym_binary_expression] = STATE(3651), - [sym_update_expression] = STATE(3651), - [sym_cast_expression] = STATE(3651), - [sym_sizeof_expression] = STATE(3651), - [sym_alignof_expression] = STATE(3651), - [sym_offsetof_expression] = STATE(3651), - [sym_generic_expression] = STATE(3651), - [sym_subscript_expression] = STATE(3547), - [sym_call_expression] = STATE(3547), - [sym_gnu_asm_expression] = STATE(3651), - [sym_extension_expression] = STATE(3651), - [sym_field_expression] = STATE(3547), - [sym_compound_literal_expression] = STATE(3651), - [sym_parenthesized_expression] = STATE(3547), - [sym_char_literal] = STATE(3360), - [sym_concatenated_string] = STATE(3360), - [sym_string_literal] = STATE(2369), - [sym_null] = STATE(3651), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7649), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3651), - [sym_raw_string_literal] = STATE(2369), - [sym_co_await_expression] = STATE(3651), - [sym_new_expression] = STATE(3651), - [sym_delete_expression] = STATE(3651), - [sym_requires_clause] = STATE(3651), - [sym_requires_expression] = STATE(3651), - [sym_lambda_expression] = STATE(3651), - [sym_lambda_capture_specifier] = STATE(5395), - [sym_fold_expression] = STATE(3651), - [sym_parameter_pack_expansion] = STATE(3651), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5773), - [sym_qualified_identifier] = STATE(3547), - [sym_qualified_type_identifier] = STATE(7649), - [sym_user_defined_literal] = STATE(3547), - [sym_identifier] = ACTIONS(2489), - [anon_sym_LPAREN2] = ACTIONS(4652), - [anon_sym_BANG] = ACTIONS(2493), - [anon_sym_TILDE] = ACTIONS(2493), - [anon_sym_DASH] = ACTIONS(2491), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_STAR] = ACTIONS(3124), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym___extension__] = ACTIONS(2495), - [anon_sym_COLON_COLON] = ACTIONS(2497), + [1400] = { + [sym_expression] = STATE(3259), + [sym__string] = STATE(3549), + [sym_conditional_expression] = STATE(3636), + [sym_assignment_expression] = STATE(3636), + [sym_pointer_expression] = STATE(3696), + [sym_unary_expression] = STATE(3636), + [sym_binary_expression] = STATE(3636), + [sym_update_expression] = STATE(3636), + [sym_cast_expression] = STATE(3636), + [sym_sizeof_expression] = STATE(3636), + [sym_alignof_expression] = STATE(3636), + [sym_offsetof_expression] = STATE(3636), + [sym_generic_expression] = STATE(3636), + [sym_subscript_expression] = STATE(3696), + [sym_call_expression] = STATE(3696), + [sym_gnu_asm_expression] = STATE(3636), + [sym_extension_expression] = STATE(3636), + [sym_field_expression] = STATE(3696), + [sym_compound_literal_expression] = STATE(3636), + [sym_parenthesized_expression] = STATE(3696), + [sym_char_literal] = STATE(3549), + [sym_concatenated_string] = STATE(3549), + [sym_string_literal] = STATE(2433), + [sym_null] = STATE(3636), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7883), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3636), + [sym_raw_string_literal] = STATE(2433), + [sym_co_await_expression] = STATE(3636), + [sym_new_expression] = STATE(3636), + [sym_delete_expression] = STATE(3636), + [sym_requires_clause] = STATE(3636), + [sym_requires_expression] = STATE(3636), + [sym_lambda_expression] = STATE(3636), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3636), + [sym_parameter_pack_expansion] = STATE(3636), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5769), + [sym_qualified_identifier] = STATE(3696), + [sym_qualified_type_identifier] = STATE(7883), + [sym_user_defined_literal] = STATE(3696), + [sym_identifier] = ACTIONS(2483), + [anon_sym_LPAREN2] = ACTIONS(4668), + [anon_sym_BANG] = ACTIONS(2487), + [anon_sym_TILDE] = ACTIONS(2487), + [anon_sym_DASH] = ACTIONS(2485), + [anon_sym_PLUS] = ACTIONS(2485), + [anon_sym_STAR] = ACTIONS(3136), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym___extension__] = ACTIONS(2489), + [anon_sym_COLON_COLON] = ACTIONS(2491), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2501), - [anon_sym_not] = ACTIONS(2491), - [anon_sym_compl] = ACTIONS(2491), - [anon_sym_DASH_DASH] = ACTIONS(4358), - [anon_sym_PLUS_PLUS] = ACTIONS(4358), - [anon_sym_sizeof] = ACTIONS(2503), - [anon_sym___alignof__] = ACTIONS(2505), - [anon_sym___alignof] = ACTIONS(2505), - [anon_sym__alignof] = ACTIONS(2505), - [anon_sym_alignof] = ACTIONS(2505), - [anon_sym__Alignof] = ACTIONS(2505), - [anon_sym_offsetof] = ACTIONS(2507), - [anon_sym__Generic] = ACTIONS(2509), - [anon_sym_asm] = ACTIONS(2511), - [anon_sym___asm__] = ACTIONS(2511), - [anon_sym___asm] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2515), - [anon_sym_u_SQUOTE] = ACTIONS(2515), - [anon_sym_U_SQUOTE] = ACTIONS(2515), - [anon_sym_u8_SQUOTE] = ACTIONS(2515), - [anon_sym_SQUOTE] = ACTIONS(2515), - [anon_sym_L_DQUOTE] = ACTIONS(2517), - [anon_sym_u_DQUOTE] = ACTIONS(2517), - [anon_sym_U_DQUOTE] = ACTIONS(2517), - [anon_sym_u8_DQUOTE] = ACTIONS(2517), - [anon_sym_DQUOTE] = ACTIONS(2517), - [sym_true] = ACTIONS(2519), - [sym_false] = ACTIONS(2519), - [anon_sym_NULL] = ACTIONS(2521), - [anon_sym_nullptr] = ACTIONS(2521), + [sym_primitive_type] = ACTIONS(2495), + [anon_sym_not] = ACTIONS(2485), + [anon_sym_compl] = ACTIONS(2485), + [anon_sym_DASH_DASH] = ACTIONS(4513), + [anon_sym_PLUS_PLUS] = ACTIONS(4513), + [anon_sym_sizeof] = ACTIONS(2497), + [anon_sym___alignof__] = ACTIONS(2499), + [anon_sym___alignof] = ACTIONS(2499), + [anon_sym__alignof] = ACTIONS(2499), + [anon_sym_alignof] = ACTIONS(2499), + [anon_sym__Alignof] = ACTIONS(2499), + [anon_sym_offsetof] = ACTIONS(2501), + [anon_sym__Generic] = ACTIONS(2503), + [anon_sym_asm] = ACTIONS(2505), + [anon_sym___asm__] = ACTIONS(2505), + [anon_sym___asm] = ACTIONS(2505), + [sym_number_literal] = ACTIONS(2507), + [anon_sym_L_SQUOTE] = ACTIONS(2509), + [anon_sym_u_SQUOTE] = ACTIONS(2509), + [anon_sym_U_SQUOTE] = ACTIONS(2509), + [anon_sym_u8_SQUOTE] = ACTIONS(2509), + [anon_sym_SQUOTE] = ACTIONS(2509), + [anon_sym_L_DQUOTE] = ACTIONS(2511), + [anon_sym_u_DQUOTE] = ACTIONS(2511), + [anon_sym_U_DQUOTE] = ACTIONS(2511), + [anon_sym_u8_DQUOTE] = ACTIONS(2511), + [anon_sym_DQUOTE] = ACTIONS(2511), + [sym_true] = ACTIONS(2513), + [sym_false] = ACTIONS(2513), + [anon_sym_NULL] = ACTIONS(2515), + [anon_sym_nullptr] = ACTIONS(2515), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(2523), - [anon_sym_R_DQUOTE] = ACTIONS(2525), - [anon_sym_LR_DQUOTE] = ACTIONS(2525), - [anon_sym_uR_DQUOTE] = ACTIONS(2525), - [anon_sym_UR_DQUOTE] = ACTIONS(2525), - [anon_sym_u8R_DQUOTE] = ACTIONS(2525), - [anon_sym_co_await] = ACTIONS(2527), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_requires] = ACTIONS(2531), - [sym_this] = ACTIONS(2519), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(2517), + [anon_sym_R_DQUOTE] = ACTIONS(2519), + [anon_sym_LR_DQUOTE] = ACTIONS(2519), + [anon_sym_uR_DQUOTE] = ACTIONS(2519), + [anon_sym_UR_DQUOTE] = ACTIONS(2519), + [anon_sym_u8R_DQUOTE] = ACTIONS(2519), + [anon_sym_co_await] = ACTIONS(2521), + [anon_sym_new] = ACTIONS(2523), + [anon_sym_requires] = ACTIONS(2525), + [sym_this] = ACTIONS(2513), }, - [1356] = { - [sym_expression] = STATE(3348), - [sym__string] = STATE(3360), - [sym_conditional_expression] = STATE(3651), - [sym_assignment_expression] = STATE(3651), - [sym_pointer_expression] = STATE(3547), - [sym_unary_expression] = STATE(3651), - [sym_binary_expression] = STATE(3651), - [sym_update_expression] = STATE(3651), - [sym_cast_expression] = STATE(3651), - [sym_sizeof_expression] = STATE(3651), - [sym_alignof_expression] = STATE(3651), - [sym_offsetof_expression] = STATE(3651), - [sym_generic_expression] = STATE(3651), - [sym_subscript_expression] = STATE(3547), - [sym_call_expression] = STATE(3547), - [sym_gnu_asm_expression] = STATE(3651), - [sym_extension_expression] = STATE(3651), - [sym_field_expression] = STATE(3547), - [sym_compound_literal_expression] = STATE(3651), - [sym_parenthesized_expression] = STATE(3547), - [sym_char_literal] = STATE(3360), - [sym_concatenated_string] = STATE(3360), - [sym_string_literal] = STATE(2369), - [sym_null] = STATE(3651), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7649), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3651), - [sym_raw_string_literal] = STATE(2369), - [sym_co_await_expression] = STATE(3651), - [sym_new_expression] = STATE(3651), - [sym_delete_expression] = STATE(3651), - [sym_requires_clause] = STATE(3651), - [sym_requires_expression] = STATE(3651), - [sym_lambda_expression] = STATE(3651), - [sym_lambda_capture_specifier] = STATE(5395), - [sym_fold_expression] = STATE(3651), - [sym_parameter_pack_expansion] = STATE(3651), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5773), - [sym_qualified_identifier] = STATE(3547), - [sym_qualified_type_identifier] = STATE(7649), - [sym_user_defined_literal] = STATE(3547), - [sym_identifier] = ACTIONS(2489), - [anon_sym_LPAREN2] = ACTIONS(4652), - [anon_sym_BANG] = ACTIONS(2493), - [anon_sym_TILDE] = ACTIONS(2493), - [anon_sym_DASH] = ACTIONS(2491), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_STAR] = ACTIONS(3124), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym___extension__] = ACTIONS(2495), - [anon_sym_COLON_COLON] = ACTIONS(2497), + [1401] = { + [sym_expression] = STATE(3261), + [sym__string] = STATE(3549), + [sym_conditional_expression] = STATE(3636), + [sym_assignment_expression] = STATE(3636), + [sym_pointer_expression] = STATE(3696), + [sym_unary_expression] = STATE(3636), + [sym_binary_expression] = STATE(3636), + [sym_update_expression] = STATE(3636), + [sym_cast_expression] = STATE(3636), + [sym_sizeof_expression] = STATE(3636), + [sym_alignof_expression] = STATE(3636), + [sym_offsetof_expression] = STATE(3636), + [sym_generic_expression] = STATE(3636), + [sym_subscript_expression] = STATE(3696), + [sym_call_expression] = STATE(3696), + [sym_gnu_asm_expression] = STATE(3636), + [sym_extension_expression] = STATE(3636), + [sym_field_expression] = STATE(3696), + [sym_compound_literal_expression] = STATE(3636), + [sym_parenthesized_expression] = STATE(3696), + [sym_char_literal] = STATE(3549), + [sym_concatenated_string] = STATE(3549), + [sym_string_literal] = STATE(2433), + [sym_null] = STATE(3636), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7883), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3636), + [sym_raw_string_literal] = STATE(2433), + [sym_co_await_expression] = STATE(3636), + [sym_new_expression] = STATE(3636), + [sym_delete_expression] = STATE(3636), + [sym_requires_clause] = STATE(3636), + [sym_requires_expression] = STATE(3636), + [sym_lambda_expression] = STATE(3636), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3636), + [sym_parameter_pack_expansion] = STATE(3636), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5769), + [sym_qualified_identifier] = STATE(3696), + [sym_qualified_type_identifier] = STATE(7883), + [sym_user_defined_literal] = STATE(3696), + [sym_identifier] = ACTIONS(2483), + [anon_sym_LPAREN2] = ACTIONS(4668), + [anon_sym_BANG] = ACTIONS(2487), + [anon_sym_TILDE] = ACTIONS(2487), + [anon_sym_DASH] = ACTIONS(2485), + [anon_sym_PLUS] = ACTIONS(2485), + [anon_sym_STAR] = ACTIONS(3136), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym___extension__] = ACTIONS(2489), + [anon_sym_COLON_COLON] = ACTIONS(2491), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2501), - [anon_sym_not] = ACTIONS(2491), - [anon_sym_compl] = ACTIONS(2491), - [anon_sym_DASH_DASH] = ACTIONS(4358), - [anon_sym_PLUS_PLUS] = ACTIONS(4358), - [anon_sym_sizeof] = ACTIONS(2503), - [anon_sym___alignof__] = ACTIONS(2505), - [anon_sym___alignof] = ACTIONS(2505), - [anon_sym__alignof] = ACTIONS(2505), - [anon_sym_alignof] = ACTIONS(2505), - [anon_sym__Alignof] = ACTIONS(2505), - [anon_sym_offsetof] = ACTIONS(2507), - [anon_sym__Generic] = ACTIONS(2509), - [anon_sym_asm] = ACTIONS(2511), - [anon_sym___asm__] = ACTIONS(2511), - [anon_sym___asm] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2515), - [anon_sym_u_SQUOTE] = ACTIONS(2515), - [anon_sym_U_SQUOTE] = ACTIONS(2515), - [anon_sym_u8_SQUOTE] = ACTIONS(2515), - [anon_sym_SQUOTE] = ACTIONS(2515), - [anon_sym_L_DQUOTE] = ACTIONS(2517), - [anon_sym_u_DQUOTE] = ACTIONS(2517), - [anon_sym_U_DQUOTE] = ACTIONS(2517), - [anon_sym_u8_DQUOTE] = ACTIONS(2517), - [anon_sym_DQUOTE] = ACTIONS(2517), - [sym_true] = ACTIONS(2519), - [sym_false] = ACTIONS(2519), - [anon_sym_NULL] = ACTIONS(2521), - [anon_sym_nullptr] = ACTIONS(2521), + [sym_primitive_type] = ACTIONS(2495), + [anon_sym_not] = ACTIONS(2485), + [anon_sym_compl] = ACTIONS(2485), + [anon_sym_DASH_DASH] = ACTIONS(4513), + [anon_sym_PLUS_PLUS] = ACTIONS(4513), + [anon_sym_sizeof] = ACTIONS(2497), + [anon_sym___alignof__] = ACTIONS(2499), + [anon_sym___alignof] = ACTIONS(2499), + [anon_sym__alignof] = ACTIONS(2499), + [anon_sym_alignof] = ACTIONS(2499), + [anon_sym__Alignof] = ACTIONS(2499), + [anon_sym_offsetof] = ACTIONS(2501), + [anon_sym__Generic] = ACTIONS(2503), + [anon_sym_asm] = ACTIONS(2505), + [anon_sym___asm__] = ACTIONS(2505), + [anon_sym___asm] = ACTIONS(2505), + [sym_number_literal] = ACTIONS(2507), + [anon_sym_L_SQUOTE] = ACTIONS(2509), + [anon_sym_u_SQUOTE] = ACTIONS(2509), + [anon_sym_U_SQUOTE] = ACTIONS(2509), + [anon_sym_u8_SQUOTE] = ACTIONS(2509), + [anon_sym_SQUOTE] = ACTIONS(2509), + [anon_sym_L_DQUOTE] = ACTIONS(2511), + [anon_sym_u_DQUOTE] = ACTIONS(2511), + [anon_sym_U_DQUOTE] = ACTIONS(2511), + [anon_sym_u8_DQUOTE] = ACTIONS(2511), + [anon_sym_DQUOTE] = ACTIONS(2511), + [sym_true] = ACTIONS(2513), + [sym_false] = ACTIONS(2513), + [anon_sym_NULL] = ACTIONS(2515), + [anon_sym_nullptr] = ACTIONS(2515), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(2523), - [anon_sym_R_DQUOTE] = ACTIONS(2525), - [anon_sym_LR_DQUOTE] = ACTIONS(2525), - [anon_sym_uR_DQUOTE] = ACTIONS(2525), - [anon_sym_UR_DQUOTE] = ACTIONS(2525), - [anon_sym_u8R_DQUOTE] = ACTIONS(2525), - [anon_sym_co_await] = ACTIONS(2527), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_requires] = ACTIONS(2531), - [sym_this] = ACTIONS(2519), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(2517), + [anon_sym_R_DQUOTE] = ACTIONS(2519), + [anon_sym_LR_DQUOTE] = ACTIONS(2519), + [anon_sym_uR_DQUOTE] = ACTIONS(2519), + [anon_sym_UR_DQUOTE] = ACTIONS(2519), + [anon_sym_u8R_DQUOTE] = ACTIONS(2519), + [anon_sym_co_await] = ACTIONS(2521), + [anon_sym_new] = ACTIONS(2523), + [anon_sym_requires] = ACTIONS(2525), + [sym_this] = ACTIONS(2513), }, - [1357] = { - [sym_expression] = STATE(3349), - [sym__string] = STATE(3360), - [sym_conditional_expression] = STATE(3651), - [sym_assignment_expression] = STATE(3651), - [sym_pointer_expression] = STATE(3547), - [sym_unary_expression] = STATE(3651), - [sym_binary_expression] = STATE(3651), - [sym_update_expression] = STATE(3651), - [sym_cast_expression] = STATE(3651), - [sym_sizeof_expression] = STATE(3651), - [sym_alignof_expression] = STATE(3651), - [sym_offsetof_expression] = STATE(3651), - [sym_generic_expression] = STATE(3651), - [sym_subscript_expression] = STATE(3547), - [sym_call_expression] = STATE(3547), - [sym_gnu_asm_expression] = STATE(3651), - [sym_extension_expression] = STATE(3651), - [sym_field_expression] = STATE(3547), - [sym_compound_literal_expression] = STATE(3651), - [sym_parenthesized_expression] = STATE(3547), - [sym_char_literal] = STATE(3360), - [sym_concatenated_string] = STATE(3360), - [sym_string_literal] = STATE(2369), - [sym_null] = STATE(3651), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7649), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3651), - [sym_raw_string_literal] = STATE(2369), - [sym_co_await_expression] = STATE(3651), - [sym_new_expression] = STATE(3651), - [sym_delete_expression] = STATE(3651), - [sym_requires_clause] = STATE(3651), - [sym_requires_expression] = STATE(3651), - [sym_lambda_expression] = STATE(3651), - [sym_lambda_capture_specifier] = STATE(5395), - [sym_fold_expression] = STATE(3651), - [sym_parameter_pack_expansion] = STATE(3651), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5773), - [sym_qualified_identifier] = STATE(3547), - [sym_qualified_type_identifier] = STATE(7649), - [sym_user_defined_literal] = STATE(3547), - [sym_identifier] = ACTIONS(2489), - [anon_sym_LPAREN2] = ACTIONS(4652), - [anon_sym_BANG] = ACTIONS(2493), - [anon_sym_TILDE] = ACTIONS(2493), - [anon_sym_DASH] = ACTIONS(2491), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_STAR] = ACTIONS(3124), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym___extension__] = ACTIONS(2495), - [anon_sym_COLON_COLON] = ACTIONS(2497), + [1402] = { + [sym_expression] = STATE(3262), + [sym__string] = STATE(3549), + [sym_conditional_expression] = STATE(3636), + [sym_assignment_expression] = STATE(3636), + [sym_pointer_expression] = STATE(3696), + [sym_unary_expression] = STATE(3636), + [sym_binary_expression] = STATE(3636), + [sym_update_expression] = STATE(3636), + [sym_cast_expression] = STATE(3636), + [sym_sizeof_expression] = STATE(3636), + [sym_alignof_expression] = STATE(3636), + [sym_offsetof_expression] = STATE(3636), + [sym_generic_expression] = STATE(3636), + [sym_subscript_expression] = STATE(3696), + [sym_call_expression] = STATE(3696), + [sym_gnu_asm_expression] = STATE(3636), + [sym_extension_expression] = STATE(3636), + [sym_field_expression] = STATE(3696), + [sym_compound_literal_expression] = STATE(3636), + [sym_parenthesized_expression] = STATE(3696), + [sym_char_literal] = STATE(3549), + [sym_concatenated_string] = STATE(3549), + [sym_string_literal] = STATE(2433), + [sym_null] = STATE(3636), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7883), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3636), + [sym_raw_string_literal] = STATE(2433), + [sym_co_await_expression] = STATE(3636), + [sym_new_expression] = STATE(3636), + [sym_delete_expression] = STATE(3636), + [sym_requires_clause] = STATE(3636), + [sym_requires_expression] = STATE(3636), + [sym_lambda_expression] = STATE(3636), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3636), + [sym_parameter_pack_expansion] = STATE(3636), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5769), + [sym_qualified_identifier] = STATE(3696), + [sym_qualified_type_identifier] = STATE(7883), + [sym_user_defined_literal] = STATE(3696), + [sym_identifier] = ACTIONS(2483), + [anon_sym_LPAREN2] = ACTIONS(4668), + [anon_sym_BANG] = ACTIONS(2487), + [anon_sym_TILDE] = ACTIONS(2487), + [anon_sym_DASH] = ACTIONS(2485), + [anon_sym_PLUS] = ACTIONS(2485), + [anon_sym_STAR] = ACTIONS(3136), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym___extension__] = ACTIONS(2489), + [anon_sym_COLON_COLON] = ACTIONS(2491), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2501), - [anon_sym_not] = ACTIONS(2491), - [anon_sym_compl] = ACTIONS(2491), - [anon_sym_DASH_DASH] = ACTIONS(4358), - [anon_sym_PLUS_PLUS] = ACTIONS(4358), - [anon_sym_sizeof] = ACTIONS(2503), - [anon_sym___alignof__] = ACTIONS(2505), - [anon_sym___alignof] = ACTIONS(2505), - [anon_sym__alignof] = ACTIONS(2505), - [anon_sym_alignof] = ACTIONS(2505), - [anon_sym__Alignof] = ACTIONS(2505), - [anon_sym_offsetof] = ACTIONS(2507), - [anon_sym__Generic] = ACTIONS(2509), - [anon_sym_asm] = ACTIONS(2511), - [anon_sym___asm__] = ACTIONS(2511), - [anon_sym___asm] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2515), - [anon_sym_u_SQUOTE] = ACTIONS(2515), - [anon_sym_U_SQUOTE] = ACTIONS(2515), - [anon_sym_u8_SQUOTE] = ACTIONS(2515), - [anon_sym_SQUOTE] = ACTIONS(2515), - [anon_sym_L_DQUOTE] = ACTIONS(2517), - [anon_sym_u_DQUOTE] = ACTIONS(2517), - [anon_sym_U_DQUOTE] = ACTIONS(2517), - [anon_sym_u8_DQUOTE] = ACTIONS(2517), - [anon_sym_DQUOTE] = ACTIONS(2517), - [sym_true] = ACTIONS(2519), - [sym_false] = ACTIONS(2519), - [anon_sym_NULL] = ACTIONS(2521), - [anon_sym_nullptr] = ACTIONS(2521), + [sym_primitive_type] = ACTIONS(2495), + [anon_sym_not] = ACTIONS(2485), + [anon_sym_compl] = ACTIONS(2485), + [anon_sym_DASH_DASH] = ACTIONS(4513), + [anon_sym_PLUS_PLUS] = ACTIONS(4513), + [anon_sym_sizeof] = ACTIONS(2497), + [anon_sym___alignof__] = ACTIONS(2499), + [anon_sym___alignof] = ACTIONS(2499), + [anon_sym__alignof] = ACTIONS(2499), + [anon_sym_alignof] = ACTIONS(2499), + [anon_sym__Alignof] = ACTIONS(2499), + [anon_sym_offsetof] = ACTIONS(2501), + [anon_sym__Generic] = ACTIONS(2503), + [anon_sym_asm] = ACTIONS(2505), + [anon_sym___asm__] = ACTIONS(2505), + [anon_sym___asm] = ACTIONS(2505), + [sym_number_literal] = ACTIONS(2507), + [anon_sym_L_SQUOTE] = ACTIONS(2509), + [anon_sym_u_SQUOTE] = ACTIONS(2509), + [anon_sym_U_SQUOTE] = ACTIONS(2509), + [anon_sym_u8_SQUOTE] = ACTIONS(2509), + [anon_sym_SQUOTE] = ACTIONS(2509), + [anon_sym_L_DQUOTE] = ACTIONS(2511), + [anon_sym_u_DQUOTE] = ACTIONS(2511), + [anon_sym_U_DQUOTE] = ACTIONS(2511), + [anon_sym_u8_DQUOTE] = ACTIONS(2511), + [anon_sym_DQUOTE] = ACTIONS(2511), + [sym_true] = ACTIONS(2513), + [sym_false] = ACTIONS(2513), + [anon_sym_NULL] = ACTIONS(2515), + [anon_sym_nullptr] = ACTIONS(2515), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(2523), - [anon_sym_R_DQUOTE] = ACTIONS(2525), - [anon_sym_LR_DQUOTE] = ACTIONS(2525), - [anon_sym_uR_DQUOTE] = ACTIONS(2525), - [anon_sym_UR_DQUOTE] = ACTIONS(2525), - [anon_sym_u8R_DQUOTE] = ACTIONS(2525), - [anon_sym_co_await] = ACTIONS(2527), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_requires] = ACTIONS(2531), - [sym_this] = ACTIONS(2519), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(2517), + [anon_sym_R_DQUOTE] = ACTIONS(2519), + [anon_sym_LR_DQUOTE] = ACTIONS(2519), + [anon_sym_uR_DQUOTE] = ACTIONS(2519), + [anon_sym_UR_DQUOTE] = ACTIONS(2519), + [anon_sym_u8R_DQUOTE] = ACTIONS(2519), + [anon_sym_co_await] = ACTIONS(2521), + [anon_sym_new] = ACTIONS(2523), + [anon_sym_requires] = ACTIONS(2525), + [sym_this] = ACTIONS(2513), }, - [1358] = { - [sym_expression] = STATE(3350), - [sym__string] = STATE(3360), - [sym_conditional_expression] = STATE(3651), - [sym_assignment_expression] = STATE(3651), - [sym_pointer_expression] = STATE(3547), - [sym_unary_expression] = STATE(3651), - [sym_binary_expression] = STATE(3651), - [sym_update_expression] = STATE(3651), - [sym_cast_expression] = STATE(3651), - [sym_sizeof_expression] = STATE(3651), - [sym_alignof_expression] = STATE(3651), - [sym_offsetof_expression] = STATE(3651), - [sym_generic_expression] = STATE(3651), - [sym_subscript_expression] = STATE(3547), - [sym_call_expression] = STATE(3547), - [sym_gnu_asm_expression] = STATE(3651), - [sym_extension_expression] = STATE(3651), - [sym_field_expression] = STATE(3547), - [sym_compound_literal_expression] = STATE(3651), - [sym_parenthesized_expression] = STATE(3547), - [sym_char_literal] = STATE(3360), - [sym_concatenated_string] = STATE(3360), - [sym_string_literal] = STATE(2369), - [sym_null] = STATE(3651), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7649), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3651), - [sym_raw_string_literal] = STATE(2369), - [sym_co_await_expression] = STATE(3651), - [sym_new_expression] = STATE(3651), - [sym_delete_expression] = STATE(3651), - [sym_requires_clause] = STATE(3651), - [sym_requires_expression] = STATE(3651), - [sym_lambda_expression] = STATE(3651), - [sym_lambda_capture_specifier] = STATE(5395), - [sym_fold_expression] = STATE(3651), - [sym_parameter_pack_expansion] = STATE(3651), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5773), - [sym_qualified_identifier] = STATE(3547), - [sym_qualified_type_identifier] = STATE(7649), - [sym_user_defined_literal] = STATE(3547), - [sym_identifier] = ACTIONS(2489), - [anon_sym_LPAREN2] = ACTIONS(4652), - [anon_sym_BANG] = ACTIONS(2493), - [anon_sym_TILDE] = ACTIONS(2493), - [anon_sym_DASH] = ACTIONS(2491), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_STAR] = ACTIONS(3124), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym___extension__] = ACTIONS(2495), - [anon_sym_COLON_COLON] = ACTIONS(2497), + [1403] = { + [sym_expression] = STATE(3271), + [sym__string] = STATE(3549), + [sym_conditional_expression] = STATE(3636), + [sym_assignment_expression] = STATE(3636), + [sym_pointer_expression] = STATE(3696), + [sym_unary_expression] = STATE(3636), + [sym_binary_expression] = STATE(3636), + [sym_update_expression] = STATE(3636), + [sym_cast_expression] = STATE(3636), + [sym_sizeof_expression] = STATE(3636), + [sym_alignof_expression] = STATE(3636), + [sym_offsetof_expression] = STATE(3636), + [sym_generic_expression] = STATE(3636), + [sym_subscript_expression] = STATE(3696), + [sym_call_expression] = STATE(3696), + [sym_gnu_asm_expression] = STATE(3636), + [sym_extension_expression] = STATE(3636), + [sym_field_expression] = STATE(3696), + [sym_compound_literal_expression] = STATE(3636), + [sym_parenthesized_expression] = STATE(3696), + [sym_char_literal] = STATE(3549), + [sym_concatenated_string] = STATE(3549), + [sym_string_literal] = STATE(2433), + [sym_null] = STATE(3636), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7883), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3636), + [sym_raw_string_literal] = STATE(2433), + [sym_co_await_expression] = STATE(3636), + [sym_new_expression] = STATE(3636), + [sym_delete_expression] = STATE(3636), + [sym_requires_clause] = STATE(3636), + [sym_requires_expression] = STATE(3636), + [sym_lambda_expression] = STATE(3636), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3636), + [sym_parameter_pack_expansion] = STATE(3636), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5769), + [sym_qualified_identifier] = STATE(3696), + [sym_qualified_type_identifier] = STATE(7883), + [sym_user_defined_literal] = STATE(3696), + [sym_identifier] = ACTIONS(2483), + [anon_sym_LPAREN2] = ACTIONS(4668), + [anon_sym_BANG] = ACTIONS(2487), + [anon_sym_TILDE] = ACTIONS(2487), + [anon_sym_DASH] = ACTIONS(2485), + [anon_sym_PLUS] = ACTIONS(2485), + [anon_sym_STAR] = ACTIONS(3136), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym___extension__] = ACTIONS(2489), + [anon_sym_COLON_COLON] = ACTIONS(2491), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2501), - [anon_sym_not] = ACTIONS(2491), - [anon_sym_compl] = ACTIONS(2491), - [anon_sym_DASH_DASH] = ACTIONS(4358), - [anon_sym_PLUS_PLUS] = ACTIONS(4358), - [anon_sym_sizeof] = ACTIONS(2503), - [anon_sym___alignof__] = ACTIONS(2505), - [anon_sym___alignof] = ACTIONS(2505), - [anon_sym__alignof] = ACTIONS(2505), - [anon_sym_alignof] = ACTIONS(2505), - [anon_sym__Alignof] = ACTIONS(2505), - [anon_sym_offsetof] = ACTIONS(2507), - [anon_sym__Generic] = ACTIONS(2509), - [anon_sym_asm] = ACTIONS(2511), - [anon_sym___asm__] = ACTIONS(2511), - [anon_sym___asm] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2515), - [anon_sym_u_SQUOTE] = ACTIONS(2515), - [anon_sym_U_SQUOTE] = ACTIONS(2515), - [anon_sym_u8_SQUOTE] = ACTIONS(2515), - [anon_sym_SQUOTE] = ACTIONS(2515), - [anon_sym_L_DQUOTE] = ACTIONS(2517), - [anon_sym_u_DQUOTE] = ACTIONS(2517), - [anon_sym_U_DQUOTE] = ACTIONS(2517), - [anon_sym_u8_DQUOTE] = ACTIONS(2517), - [anon_sym_DQUOTE] = ACTIONS(2517), - [sym_true] = ACTIONS(2519), - [sym_false] = ACTIONS(2519), - [anon_sym_NULL] = ACTIONS(2521), - [anon_sym_nullptr] = ACTIONS(2521), + [sym_primitive_type] = ACTIONS(2495), + [anon_sym_not] = ACTIONS(2485), + [anon_sym_compl] = ACTIONS(2485), + [anon_sym_DASH_DASH] = ACTIONS(4513), + [anon_sym_PLUS_PLUS] = ACTIONS(4513), + [anon_sym_sizeof] = ACTIONS(2497), + [anon_sym___alignof__] = ACTIONS(2499), + [anon_sym___alignof] = ACTIONS(2499), + [anon_sym__alignof] = ACTIONS(2499), + [anon_sym_alignof] = ACTIONS(2499), + [anon_sym__Alignof] = ACTIONS(2499), + [anon_sym_offsetof] = ACTIONS(2501), + [anon_sym__Generic] = ACTIONS(2503), + [anon_sym_asm] = ACTIONS(2505), + [anon_sym___asm__] = ACTIONS(2505), + [anon_sym___asm] = ACTIONS(2505), + [sym_number_literal] = ACTIONS(2507), + [anon_sym_L_SQUOTE] = ACTIONS(2509), + [anon_sym_u_SQUOTE] = ACTIONS(2509), + [anon_sym_U_SQUOTE] = ACTIONS(2509), + [anon_sym_u8_SQUOTE] = ACTIONS(2509), + [anon_sym_SQUOTE] = ACTIONS(2509), + [anon_sym_L_DQUOTE] = ACTIONS(2511), + [anon_sym_u_DQUOTE] = ACTIONS(2511), + [anon_sym_U_DQUOTE] = ACTIONS(2511), + [anon_sym_u8_DQUOTE] = ACTIONS(2511), + [anon_sym_DQUOTE] = ACTIONS(2511), + [sym_true] = ACTIONS(2513), + [sym_false] = ACTIONS(2513), + [anon_sym_NULL] = ACTIONS(2515), + [anon_sym_nullptr] = ACTIONS(2515), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(2523), - [anon_sym_R_DQUOTE] = ACTIONS(2525), - [anon_sym_LR_DQUOTE] = ACTIONS(2525), - [anon_sym_uR_DQUOTE] = ACTIONS(2525), - [anon_sym_UR_DQUOTE] = ACTIONS(2525), - [anon_sym_u8R_DQUOTE] = ACTIONS(2525), - [anon_sym_co_await] = ACTIONS(2527), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_requires] = ACTIONS(2531), - [sym_this] = ACTIONS(2519), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(2517), + [anon_sym_R_DQUOTE] = ACTIONS(2519), + [anon_sym_LR_DQUOTE] = ACTIONS(2519), + [anon_sym_uR_DQUOTE] = ACTIONS(2519), + [anon_sym_UR_DQUOTE] = ACTIONS(2519), + [anon_sym_u8R_DQUOTE] = ACTIONS(2519), + [anon_sym_co_await] = ACTIONS(2521), + [anon_sym_new] = ACTIONS(2523), + [anon_sym_requires] = ACTIONS(2525), + [sym_this] = ACTIONS(2513), }, - [1359] = { - [sym_expression] = STATE(2773), - [sym__string] = STATE(2870), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(2870), - [sym_concatenated_string] = STATE(2870), - [sym_string_literal] = STATE(1942), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(1942), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), - [sym_identifier] = ACTIONS(1990), + [1404] = { + [sym_expression] = STATE(3275), + [sym__string] = STATE(3549), + [sym_conditional_expression] = STATE(3636), + [sym_assignment_expression] = STATE(3636), + [sym_pointer_expression] = STATE(3696), + [sym_unary_expression] = STATE(3636), + [sym_binary_expression] = STATE(3636), + [sym_update_expression] = STATE(3636), + [sym_cast_expression] = STATE(3636), + [sym_sizeof_expression] = STATE(3636), + [sym_alignof_expression] = STATE(3636), + [sym_offsetof_expression] = STATE(3636), + [sym_generic_expression] = STATE(3636), + [sym_subscript_expression] = STATE(3696), + [sym_call_expression] = STATE(3696), + [sym_gnu_asm_expression] = STATE(3636), + [sym_extension_expression] = STATE(3636), + [sym_field_expression] = STATE(3696), + [sym_compound_literal_expression] = STATE(3636), + [sym_parenthesized_expression] = STATE(3696), + [sym_char_literal] = STATE(3549), + [sym_concatenated_string] = STATE(3549), + [sym_string_literal] = STATE(2433), + [sym_null] = STATE(3636), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7883), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3636), + [sym_raw_string_literal] = STATE(2433), + [sym_co_await_expression] = STATE(3636), + [sym_new_expression] = STATE(3636), + [sym_delete_expression] = STATE(3636), + [sym_requires_clause] = STATE(3636), + [sym_requires_expression] = STATE(3636), + [sym_lambda_expression] = STATE(3636), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3636), + [sym_parameter_pack_expansion] = STATE(3636), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5769), + [sym_qualified_identifier] = STATE(3696), + [sym_qualified_type_identifier] = STATE(7883), + [sym_user_defined_literal] = STATE(3696), + [sym_identifier] = ACTIONS(2483), + [anon_sym_LPAREN2] = ACTIONS(4668), + [anon_sym_BANG] = ACTIONS(2487), + [anon_sym_TILDE] = ACTIONS(2487), + [anon_sym_DASH] = ACTIONS(2485), + [anon_sym_PLUS] = ACTIONS(2485), + [anon_sym_STAR] = ACTIONS(3136), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym___extension__] = ACTIONS(2489), + [anon_sym_COLON_COLON] = ACTIONS(2491), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2495), + [anon_sym_not] = ACTIONS(2485), + [anon_sym_compl] = ACTIONS(2485), + [anon_sym_DASH_DASH] = ACTIONS(4513), + [anon_sym_PLUS_PLUS] = ACTIONS(4513), + [anon_sym_sizeof] = ACTIONS(2497), + [anon_sym___alignof__] = ACTIONS(2499), + [anon_sym___alignof] = ACTIONS(2499), + [anon_sym__alignof] = ACTIONS(2499), + [anon_sym_alignof] = ACTIONS(2499), + [anon_sym__Alignof] = ACTIONS(2499), + [anon_sym_offsetof] = ACTIONS(2501), + [anon_sym__Generic] = ACTIONS(2503), + [anon_sym_asm] = ACTIONS(2505), + [anon_sym___asm__] = ACTIONS(2505), + [anon_sym___asm] = ACTIONS(2505), + [sym_number_literal] = ACTIONS(2507), + [anon_sym_L_SQUOTE] = ACTIONS(2509), + [anon_sym_u_SQUOTE] = ACTIONS(2509), + [anon_sym_U_SQUOTE] = ACTIONS(2509), + [anon_sym_u8_SQUOTE] = ACTIONS(2509), + [anon_sym_SQUOTE] = ACTIONS(2509), + [anon_sym_L_DQUOTE] = ACTIONS(2511), + [anon_sym_u_DQUOTE] = ACTIONS(2511), + [anon_sym_U_DQUOTE] = ACTIONS(2511), + [anon_sym_u8_DQUOTE] = ACTIONS(2511), + [anon_sym_DQUOTE] = ACTIONS(2511), + [sym_true] = ACTIONS(2513), + [sym_false] = ACTIONS(2513), + [anon_sym_NULL] = ACTIONS(2515), + [anon_sym_nullptr] = ACTIONS(2515), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(2517), + [anon_sym_R_DQUOTE] = ACTIONS(2519), + [anon_sym_LR_DQUOTE] = ACTIONS(2519), + [anon_sym_uR_DQUOTE] = ACTIONS(2519), + [anon_sym_UR_DQUOTE] = ACTIONS(2519), + [anon_sym_u8R_DQUOTE] = ACTIONS(2519), + [anon_sym_co_await] = ACTIONS(2521), + [anon_sym_new] = ACTIONS(2523), + [anon_sym_requires] = ACTIONS(2525), + [sym_this] = ACTIONS(2513), + }, + [1405] = { + [sym_expression] = STATE(3284), + [sym__string] = STATE(3549), + [sym_conditional_expression] = STATE(3636), + [sym_assignment_expression] = STATE(3636), + [sym_pointer_expression] = STATE(3696), + [sym_unary_expression] = STATE(3636), + [sym_binary_expression] = STATE(3636), + [sym_update_expression] = STATE(3636), + [sym_cast_expression] = STATE(3636), + [sym_sizeof_expression] = STATE(3636), + [sym_alignof_expression] = STATE(3636), + [sym_offsetof_expression] = STATE(3636), + [sym_generic_expression] = STATE(3636), + [sym_subscript_expression] = STATE(3696), + [sym_call_expression] = STATE(3696), + [sym_gnu_asm_expression] = STATE(3636), + [sym_extension_expression] = STATE(3636), + [sym_field_expression] = STATE(3696), + [sym_compound_literal_expression] = STATE(3636), + [sym_parenthesized_expression] = STATE(3696), + [sym_char_literal] = STATE(3549), + [sym_concatenated_string] = STATE(3549), + [sym_string_literal] = STATE(2433), + [sym_null] = STATE(3636), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7883), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3636), + [sym_raw_string_literal] = STATE(2433), + [sym_co_await_expression] = STATE(3636), + [sym_new_expression] = STATE(3636), + [sym_delete_expression] = STATE(3636), + [sym_requires_clause] = STATE(3636), + [sym_requires_expression] = STATE(3636), + [sym_lambda_expression] = STATE(3636), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3636), + [sym_parameter_pack_expansion] = STATE(3636), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5769), + [sym_qualified_identifier] = STATE(3696), + [sym_qualified_type_identifier] = STATE(7883), + [sym_user_defined_literal] = STATE(3696), + [sym_identifier] = ACTIONS(2483), + [anon_sym_LPAREN2] = ACTIONS(4668), + [anon_sym_BANG] = ACTIONS(2487), + [anon_sym_TILDE] = ACTIONS(2487), + [anon_sym_DASH] = ACTIONS(2485), + [anon_sym_PLUS] = ACTIONS(2485), + [anon_sym_STAR] = ACTIONS(3136), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym___extension__] = ACTIONS(2489), + [anon_sym_COLON_COLON] = ACTIONS(2491), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2495), + [anon_sym_not] = ACTIONS(2485), + [anon_sym_compl] = ACTIONS(2485), + [anon_sym_DASH_DASH] = ACTIONS(4513), + [anon_sym_PLUS_PLUS] = ACTIONS(4513), + [anon_sym_sizeof] = ACTIONS(2497), + [anon_sym___alignof__] = ACTIONS(2499), + [anon_sym___alignof] = ACTIONS(2499), + [anon_sym__alignof] = ACTIONS(2499), + [anon_sym_alignof] = ACTIONS(2499), + [anon_sym__Alignof] = ACTIONS(2499), + [anon_sym_offsetof] = ACTIONS(2501), + [anon_sym__Generic] = ACTIONS(2503), + [anon_sym_asm] = ACTIONS(2505), + [anon_sym___asm__] = ACTIONS(2505), + [anon_sym___asm] = ACTIONS(2505), + [sym_number_literal] = ACTIONS(2507), + [anon_sym_L_SQUOTE] = ACTIONS(2509), + [anon_sym_u_SQUOTE] = ACTIONS(2509), + [anon_sym_U_SQUOTE] = ACTIONS(2509), + [anon_sym_u8_SQUOTE] = ACTIONS(2509), + [anon_sym_SQUOTE] = ACTIONS(2509), + [anon_sym_L_DQUOTE] = ACTIONS(2511), + [anon_sym_u_DQUOTE] = ACTIONS(2511), + [anon_sym_U_DQUOTE] = ACTIONS(2511), + [anon_sym_u8_DQUOTE] = ACTIONS(2511), + [anon_sym_DQUOTE] = ACTIONS(2511), + [sym_true] = ACTIONS(2513), + [sym_false] = ACTIONS(2513), + [anon_sym_NULL] = ACTIONS(2515), + [anon_sym_nullptr] = ACTIONS(2515), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(2517), + [anon_sym_R_DQUOTE] = ACTIONS(2519), + [anon_sym_LR_DQUOTE] = ACTIONS(2519), + [anon_sym_uR_DQUOTE] = ACTIONS(2519), + [anon_sym_UR_DQUOTE] = ACTIONS(2519), + [anon_sym_u8R_DQUOTE] = ACTIONS(2519), + [anon_sym_co_await] = ACTIONS(2521), + [anon_sym_new] = ACTIONS(2523), + [anon_sym_requires] = ACTIONS(2525), + [sym_this] = ACTIONS(2513), + }, + [1406] = { + [sym_expression] = STATE(3289), + [sym__string] = STATE(3549), + [sym_conditional_expression] = STATE(3636), + [sym_assignment_expression] = STATE(3636), + [sym_pointer_expression] = STATE(3696), + [sym_unary_expression] = STATE(3636), + [sym_binary_expression] = STATE(3636), + [sym_update_expression] = STATE(3636), + [sym_cast_expression] = STATE(3636), + [sym_sizeof_expression] = STATE(3636), + [sym_alignof_expression] = STATE(3636), + [sym_offsetof_expression] = STATE(3636), + [sym_generic_expression] = STATE(3636), + [sym_subscript_expression] = STATE(3696), + [sym_call_expression] = STATE(3696), + [sym_gnu_asm_expression] = STATE(3636), + [sym_extension_expression] = STATE(3636), + [sym_field_expression] = STATE(3696), + [sym_compound_literal_expression] = STATE(3636), + [sym_parenthesized_expression] = STATE(3696), + [sym_char_literal] = STATE(3549), + [sym_concatenated_string] = STATE(3549), + [sym_string_literal] = STATE(2433), + [sym_null] = STATE(3636), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7883), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3636), + [sym_raw_string_literal] = STATE(2433), + [sym_co_await_expression] = STATE(3636), + [sym_new_expression] = STATE(3636), + [sym_delete_expression] = STATE(3636), + [sym_requires_clause] = STATE(3636), + [sym_requires_expression] = STATE(3636), + [sym_lambda_expression] = STATE(3636), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3636), + [sym_parameter_pack_expansion] = STATE(3636), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5769), + [sym_qualified_identifier] = STATE(3696), + [sym_qualified_type_identifier] = STATE(7883), + [sym_user_defined_literal] = STATE(3696), + [sym_identifier] = ACTIONS(2483), [anon_sym_LPAREN2] = ACTIONS(4668), + [anon_sym_BANG] = ACTIONS(2487), + [anon_sym_TILDE] = ACTIONS(2487), + [anon_sym_DASH] = ACTIONS(2485), + [anon_sym_PLUS] = ACTIONS(2485), + [anon_sym_STAR] = ACTIONS(3136), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym___extension__] = ACTIONS(2489), + [anon_sym_COLON_COLON] = ACTIONS(2491), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2495), + [anon_sym_not] = ACTIONS(2485), + [anon_sym_compl] = ACTIONS(2485), + [anon_sym_DASH_DASH] = ACTIONS(4513), + [anon_sym_PLUS_PLUS] = ACTIONS(4513), + [anon_sym_sizeof] = ACTIONS(2497), + [anon_sym___alignof__] = ACTIONS(2499), + [anon_sym___alignof] = ACTIONS(2499), + [anon_sym__alignof] = ACTIONS(2499), + [anon_sym_alignof] = ACTIONS(2499), + [anon_sym__Alignof] = ACTIONS(2499), + [anon_sym_offsetof] = ACTIONS(2501), + [anon_sym__Generic] = ACTIONS(2503), + [anon_sym_asm] = ACTIONS(2505), + [anon_sym___asm__] = ACTIONS(2505), + [anon_sym___asm] = ACTIONS(2505), + [sym_number_literal] = ACTIONS(2507), + [anon_sym_L_SQUOTE] = ACTIONS(2509), + [anon_sym_u_SQUOTE] = ACTIONS(2509), + [anon_sym_U_SQUOTE] = ACTIONS(2509), + [anon_sym_u8_SQUOTE] = ACTIONS(2509), + [anon_sym_SQUOTE] = ACTIONS(2509), + [anon_sym_L_DQUOTE] = ACTIONS(2511), + [anon_sym_u_DQUOTE] = ACTIONS(2511), + [anon_sym_U_DQUOTE] = ACTIONS(2511), + [anon_sym_u8_DQUOTE] = ACTIONS(2511), + [anon_sym_DQUOTE] = ACTIONS(2511), + [sym_true] = ACTIONS(2513), + [sym_false] = ACTIONS(2513), + [anon_sym_NULL] = ACTIONS(2515), + [anon_sym_nullptr] = ACTIONS(2515), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(2517), + [anon_sym_R_DQUOTE] = ACTIONS(2519), + [anon_sym_LR_DQUOTE] = ACTIONS(2519), + [anon_sym_uR_DQUOTE] = ACTIONS(2519), + [anon_sym_UR_DQUOTE] = ACTIONS(2519), + [anon_sym_u8R_DQUOTE] = ACTIONS(2519), + [anon_sym_co_await] = ACTIONS(2521), + [anon_sym_new] = ACTIONS(2523), + [anon_sym_requires] = ACTIONS(2525), + [sym_this] = ACTIONS(2513), + }, + [1407] = { + [sym_expression] = STATE(2839), + [sym__string] = STATE(2887), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(2887), + [sym_concatenated_string] = STATE(2887), + [sym_string_literal] = STATE(1947), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(1947), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), + [sym_identifier] = ACTIONS(1990), + [anon_sym_LPAREN2] = ACTIONS(4681), [anon_sym_BANG] = ACTIONS(1948), [anon_sym_TILDE] = ACTIONS(1948), [anon_sym_DASH] = ACTIONS(1946), [anon_sym_PLUS] = ACTIONS(1946), - [anon_sym_STAR] = ACTIONS(4336), - [anon_sym_AMP] = ACTIONS(4336), + [anon_sym_STAR] = ACTIONS(4346), + [anon_sym_AMP] = ACTIONS(4346), [anon_sym___extension__] = ACTIONS(1950), [anon_sym_COLON_COLON] = ACTIONS(1952), - [anon_sym_LBRACK] = ACTIONS(4933), + [anon_sym_LBRACK] = ACTIONS(4960), [sym_primitive_type] = ACTIONS(1956), [anon_sym_not] = ACTIONS(1946), [anon_sym_compl] = ACTIONS(1946), - [anon_sym_DASH_DASH] = ACTIONS(4417), - [anon_sym_PLUS_PLUS] = ACTIONS(4417), + [anon_sym_DASH_DASH] = ACTIONS(4348), + [anon_sym_PLUS_PLUS] = ACTIONS(4348), [anon_sym_sizeof] = ACTIONS(1958), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), @@ -215476,7 +221277,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1976), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(1980), [anon_sym_R_DQUOTE] = ACTIONS(1982), [anon_sym_LR_DQUOTE] = ACTIONS(1982), @@ -215488,66 +221289,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [1360] = { - [sym_expression] = STATE(2381), - [sym__string] = STATE(2870), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(2870), - [sym_concatenated_string] = STATE(2870), - [sym_string_literal] = STATE(1942), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(1942), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), + [1408] = { + [sym_expression] = STATE(2408), + [sym__string] = STATE(2887), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(2887), + [sym_concatenated_string] = STATE(2887), + [sym_string_literal] = STATE(1947), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(1947), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), [sym_identifier] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(4668), + [anon_sym_LPAREN2] = ACTIONS(4681), [anon_sym_BANG] = ACTIONS(1948), [anon_sym_TILDE] = ACTIONS(1948), [anon_sym_DASH] = ACTIONS(1946), [anon_sym_PLUS] = ACTIONS(1946), - [anon_sym_STAR] = ACTIONS(4336), - [anon_sym_AMP] = ACTIONS(4336), + [anon_sym_STAR] = ACTIONS(4346), + [anon_sym_AMP] = ACTIONS(4346), [anon_sym___extension__] = ACTIONS(1950), [anon_sym_COLON_COLON] = ACTIONS(1952), [anon_sym_LBRACK] = ACTIONS(2020), [sym_primitive_type] = ACTIONS(1956), [anon_sym_not] = ACTIONS(1946), [anon_sym_compl] = ACTIONS(1946), - [anon_sym_DASH_DASH] = ACTIONS(4417), - [anon_sym_PLUS_PLUS] = ACTIONS(4417), + [anon_sym_DASH_DASH] = ACTIONS(4348), + [anon_sym_PLUS_PLUS] = ACTIONS(4348), [anon_sym_sizeof] = ACTIONS(1958), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), @@ -215576,7 +221377,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1976), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(1980), [anon_sym_R_DQUOTE] = ACTIONS(1982), [anon_sym_LR_DQUOTE] = ACTIONS(1982), @@ -215588,266 +221389,266 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [1361] = { - [sym_expression] = STATE(4410), - [sym__string] = STATE(4738), - [sym_conditional_expression] = STATE(4829), - [sym_assignment_expression] = STATE(4829), - [sym_pointer_expression] = STATE(3602), - [sym_unary_expression] = STATE(4829), - [sym_binary_expression] = STATE(4829), - [sym_update_expression] = STATE(4829), - [sym_cast_expression] = STATE(4829), - [sym_sizeof_expression] = STATE(4829), - [sym_alignof_expression] = STATE(4829), - [sym_offsetof_expression] = STATE(4829), - [sym_generic_expression] = STATE(4829), - [sym_subscript_expression] = STATE(3602), - [sym_call_expression] = STATE(3602), - [sym_gnu_asm_expression] = STATE(4829), - [sym_extension_expression] = STATE(4829), - [sym_field_expression] = STATE(3602), - [sym_compound_literal_expression] = STATE(4829), - [sym_parenthesized_expression] = STATE(3602), - [sym_char_literal] = STATE(4738), - [sym_concatenated_string] = STATE(4738), - [sym_string_literal] = STATE(3759), - [sym_null] = STATE(4829), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7804), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(4829), - [sym_raw_string_literal] = STATE(3759), - [sym_co_await_expression] = STATE(4829), - [sym_new_expression] = STATE(4829), - [sym_delete_expression] = STATE(4829), - [sym_requires_clause] = STATE(4829), - [sym_requires_expression] = STATE(4829), - [sym_lambda_expression] = STATE(4829), - [sym_lambda_capture_specifier] = STATE(5401), - [sym_fold_expression] = STATE(4829), - [sym_parameter_pack_expansion] = STATE(4829), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5773), - [sym_qualified_identifier] = STATE(3602), - [sym_qualified_type_identifier] = STATE(7804), - [sym_user_defined_literal] = STATE(3602), - [sym_identifier] = ACTIONS(3883), - [anon_sym_LPAREN2] = ACTIONS(3118), - [anon_sym_BANG] = ACTIONS(3120), - [anon_sym_TILDE] = ACTIONS(3120), - [anon_sym_DASH] = ACTIONS(3122), - [anon_sym_PLUS] = ACTIONS(3122), - [anon_sym_STAR] = ACTIONS(3124), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym___extension__] = ACTIONS(3885), - [anon_sym_COLON_COLON] = ACTIONS(3128), + [1409] = { + [sym_expression] = STATE(4506), + [sym__string] = STATE(4825), + [sym_conditional_expression] = STATE(4856), + [sym_assignment_expression] = STATE(4856), + [sym_pointer_expression] = STATE(3701), + [sym_unary_expression] = STATE(4856), + [sym_binary_expression] = STATE(4856), + [sym_update_expression] = STATE(4856), + [sym_cast_expression] = STATE(4856), + [sym_sizeof_expression] = STATE(4856), + [sym_alignof_expression] = STATE(4856), + [sym_offsetof_expression] = STATE(4856), + [sym_generic_expression] = STATE(4856), + [sym_subscript_expression] = STATE(3701), + [sym_call_expression] = STATE(3701), + [sym_gnu_asm_expression] = STATE(4856), + [sym_extension_expression] = STATE(4856), + [sym_field_expression] = STATE(3701), + [sym_compound_literal_expression] = STATE(4856), + [sym_parenthesized_expression] = STATE(3701), + [sym_char_literal] = STATE(4825), + [sym_concatenated_string] = STATE(4825), + [sym_string_literal] = STATE(3812), + [sym_null] = STATE(4856), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7816), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(4856), + [sym_raw_string_literal] = STATE(3812), + [sym_co_await_expression] = STATE(4856), + [sym_new_expression] = STATE(4856), + [sym_delete_expression] = STATE(4856), + [sym_requires_clause] = STATE(4856), + [sym_requires_expression] = STATE(4856), + [sym_lambda_expression] = STATE(4856), + [sym_lambda_capture_specifier] = STATE(5489), + [sym_fold_expression] = STATE(4856), + [sym_parameter_pack_expansion] = STATE(4856), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5769), + [sym_qualified_identifier] = STATE(3701), + [sym_qualified_type_identifier] = STATE(7816), + [sym_user_defined_literal] = STATE(3701), + [sym_identifier] = ACTIONS(3875), + [anon_sym_LPAREN2] = ACTIONS(3130), + [anon_sym_BANG] = ACTIONS(3132), + [anon_sym_TILDE] = ACTIONS(3132), + [anon_sym_DASH] = ACTIONS(3134), + [anon_sym_PLUS] = ACTIONS(3134), + [anon_sym_STAR] = ACTIONS(3136), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym___extension__] = ACTIONS(3877), + [anon_sym_COLON_COLON] = ACTIONS(3140), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(3889), - [anon_sym_not] = ACTIONS(3122), - [anon_sym_compl] = ACTIONS(3122), - [anon_sym_DASH_DASH] = ACTIONS(3142), - [anon_sym_PLUS_PLUS] = ACTIONS(3142), - [anon_sym_sizeof] = ACTIONS(3144), - [anon_sym___alignof__] = ACTIONS(3146), - [anon_sym___alignof] = ACTIONS(3146), - [anon_sym__alignof] = ACTIONS(3146), - [anon_sym_alignof] = ACTIONS(3146), - [anon_sym__Alignof] = ACTIONS(3146), - [anon_sym_offsetof] = ACTIONS(3148), - [anon_sym__Generic] = ACTIONS(3150), - [anon_sym_asm] = ACTIONS(3152), - [anon_sym___asm__] = ACTIONS(3152), - [anon_sym___asm] = ACTIONS(3152), - [sym_number_literal] = ACTIONS(3154), - [anon_sym_L_SQUOTE] = ACTIONS(3156), - [anon_sym_u_SQUOTE] = ACTIONS(3156), - [anon_sym_U_SQUOTE] = ACTIONS(3156), - [anon_sym_u8_SQUOTE] = ACTIONS(3156), - [anon_sym_SQUOTE] = ACTIONS(3156), - [anon_sym_L_DQUOTE] = ACTIONS(3158), - [anon_sym_u_DQUOTE] = ACTIONS(3158), - [anon_sym_U_DQUOTE] = ACTIONS(3158), - [anon_sym_u8_DQUOTE] = ACTIONS(3158), - [anon_sym_DQUOTE] = ACTIONS(3158), - [sym_true] = ACTIONS(3160), - [sym_false] = ACTIONS(3160), - [anon_sym_NULL] = ACTIONS(3162), - [anon_sym_nullptr] = ACTIONS(3162), + [sym_primitive_type] = ACTIONS(3881), + [anon_sym_not] = ACTIONS(3134), + [anon_sym_compl] = ACTIONS(3134), + [anon_sym_DASH_DASH] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_sizeof] = ACTIONS(3156), + [anon_sym___alignof__] = ACTIONS(3158), + [anon_sym___alignof] = ACTIONS(3158), + [anon_sym__alignof] = ACTIONS(3158), + [anon_sym_alignof] = ACTIONS(3158), + [anon_sym__Alignof] = ACTIONS(3158), + [anon_sym_offsetof] = ACTIONS(3160), + [anon_sym__Generic] = ACTIONS(3162), + [anon_sym_asm] = ACTIONS(3164), + [anon_sym___asm__] = ACTIONS(3164), + [anon_sym___asm] = ACTIONS(3164), + [sym_number_literal] = ACTIONS(3166), + [anon_sym_L_SQUOTE] = ACTIONS(3168), + [anon_sym_u_SQUOTE] = ACTIONS(3168), + [anon_sym_U_SQUOTE] = ACTIONS(3168), + [anon_sym_u8_SQUOTE] = ACTIONS(3168), + [anon_sym_SQUOTE] = ACTIONS(3168), + [anon_sym_L_DQUOTE] = ACTIONS(3170), + [anon_sym_u_DQUOTE] = ACTIONS(3170), + [anon_sym_U_DQUOTE] = ACTIONS(3170), + [anon_sym_u8_DQUOTE] = ACTIONS(3170), + [anon_sym_DQUOTE] = ACTIONS(3170), + [sym_true] = ACTIONS(3172), + [sym_false] = ACTIONS(3172), + [anon_sym_NULL] = ACTIONS(3174), + [anon_sym_nullptr] = ACTIONS(3174), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3172), - [anon_sym_R_DQUOTE] = ACTIONS(3174), - [anon_sym_LR_DQUOTE] = ACTIONS(3174), - [anon_sym_uR_DQUOTE] = ACTIONS(3174), - [anon_sym_UR_DQUOTE] = ACTIONS(3174), - [anon_sym_u8R_DQUOTE] = ACTIONS(3174), - [anon_sym_co_await] = ACTIONS(3176), - [anon_sym_new] = ACTIONS(3178), - [anon_sym_requires] = ACTIONS(3180), - [sym_this] = ACTIONS(3160), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3184), + [anon_sym_R_DQUOTE] = ACTIONS(3186), + [anon_sym_LR_DQUOTE] = ACTIONS(3186), + [anon_sym_uR_DQUOTE] = ACTIONS(3186), + [anon_sym_UR_DQUOTE] = ACTIONS(3186), + [anon_sym_u8R_DQUOTE] = ACTIONS(3186), + [anon_sym_co_await] = ACTIONS(3188), + [anon_sym_new] = ACTIONS(3190), + [anon_sym_requires] = ACTIONS(3192), + [sym_this] = ACTIONS(3172), }, - [1362] = { - [sym_expression] = STATE(4478), - [sym__string] = STATE(4738), - [sym_conditional_expression] = STATE(4829), - [sym_assignment_expression] = STATE(4829), - [sym_pointer_expression] = STATE(3602), - [sym_unary_expression] = STATE(4829), - [sym_binary_expression] = STATE(4829), - [sym_update_expression] = STATE(4829), - [sym_cast_expression] = STATE(4829), - [sym_sizeof_expression] = STATE(4829), - [sym_alignof_expression] = STATE(4829), - [sym_offsetof_expression] = STATE(4829), - [sym_generic_expression] = STATE(4829), - [sym_subscript_expression] = STATE(3602), - [sym_call_expression] = STATE(3602), - [sym_gnu_asm_expression] = STATE(4829), - [sym_extension_expression] = STATE(4829), - [sym_field_expression] = STATE(3602), - [sym_compound_literal_expression] = STATE(4829), - [sym_parenthesized_expression] = STATE(3602), - [sym_char_literal] = STATE(4738), - [sym_concatenated_string] = STATE(4738), - [sym_string_literal] = STATE(3759), - [sym_null] = STATE(4829), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7804), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(4829), - [sym_raw_string_literal] = STATE(3759), - [sym_co_await_expression] = STATE(4829), - [sym_new_expression] = STATE(4829), - [sym_delete_expression] = STATE(4829), - [sym_requires_clause] = STATE(4829), - [sym_requires_expression] = STATE(4829), - [sym_lambda_expression] = STATE(4829), - [sym_lambda_capture_specifier] = STATE(5401), - [sym_fold_expression] = STATE(4829), - [sym_parameter_pack_expansion] = STATE(4829), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5773), - [sym_qualified_identifier] = STATE(3602), - [sym_qualified_type_identifier] = STATE(7804), - [sym_user_defined_literal] = STATE(3602), - [sym_identifier] = ACTIONS(3883), - [anon_sym_LPAREN2] = ACTIONS(3118), - [anon_sym_BANG] = ACTIONS(3120), - [anon_sym_TILDE] = ACTIONS(3120), - [anon_sym_DASH] = ACTIONS(3122), - [anon_sym_PLUS] = ACTIONS(3122), - [anon_sym_STAR] = ACTIONS(3124), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym___extension__] = ACTIONS(3885), - [anon_sym_COLON_COLON] = ACTIONS(3128), + [1410] = { + [sym_expression] = STATE(4505), + [sym__string] = STATE(4825), + [sym_conditional_expression] = STATE(4856), + [sym_assignment_expression] = STATE(4856), + [sym_pointer_expression] = STATE(3701), + [sym_unary_expression] = STATE(4856), + [sym_binary_expression] = STATE(4856), + [sym_update_expression] = STATE(4856), + [sym_cast_expression] = STATE(4856), + [sym_sizeof_expression] = STATE(4856), + [sym_alignof_expression] = STATE(4856), + [sym_offsetof_expression] = STATE(4856), + [sym_generic_expression] = STATE(4856), + [sym_subscript_expression] = STATE(3701), + [sym_call_expression] = STATE(3701), + [sym_gnu_asm_expression] = STATE(4856), + [sym_extension_expression] = STATE(4856), + [sym_field_expression] = STATE(3701), + [sym_compound_literal_expression] = STATE(4856), + [sym_parenthesized_expression] = STATE(3701), + [sym_char_literal] = STATE(4825), + [sym_concatenated_string] = STATE(4825), + [sym_string_literal] = STATE(3812), + [sym_null] = STATE(4856), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7816), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(4856), + [sym_raw_string_literal] = STATE(3812), + [sym_co_await_expression] = STATE(4856), + [sym_new_expression] = STATE(4856), + [sym_delete_expression] = STATE(4856), + [sym_requires_clause] = STATE(4856), + [sym_requires_expression] = STATE(4856), + [sym_lambda_expression] = STATE(4856), + [sym_lambda_capture_specifier] = STATE(5489), + [sym_fold_expression] = STATE(4856), + [sym_parameter_pack_expansion] = STATE(4856), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5769), + [sym_qualified_identifier] = STATE(3701), + [sym_qualified_type_identifier] = STATE(7816), + [sym_user_defined_literal] = STATE(3701), + [sym_identifier] = ACTIONS(3875), + [anon_sym_LPAREN2] = ACTIONS(3130), + [anon_sym_BANG] = ACTIONS(3132), + [anon_sym_TILDE] = ACTIONS(3132), + [anon_sym_DASH] = ACTIONS(3134), + [anon_sym_PLUS] = ACTIONS(3134), + [anon_sym_STAR] = ACTIONS(3136), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym___extension__] = ACTIONS(3877), + [anon_sym_COLON_COLON] = ACTIONS(3140), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(3889), - [anon_sym_not] = ACTIONS(3122), - [anon_sym_compl] = ACTIONS(3122), - [anon_sym_DASH_DASH] = ACTIONS(3142), - [anon_sym_PLUS_PLUS] = ACTIONS(3142), - [anon_sym_sizeof] = ACTIONS(3144), - [anon_sym___alignof__] = ACTIONS(3146), - [anon_sym___alignof] = ACTIONS(3146), - [anon_sym__alignof] = ACTIONS(3146), - [anon_sym_alignof] = ACTIONS(3146), - [anon_sym__Alignof] = ACTIONS(3146), - [anon_sym_offsetof] = ACTIONS(3148), - [anon_sym__Generic] = ACTIONS(3150), - [anon_sym_asm] = ACTIONS(3152), - [anon_sym___asm__] = ACTIONS(3152), - [anon_sym___asm] = ACTIONS(3152), - [sym_number_literal] = ACTIONS(3154), - [anon_sym_L_SQUOTE] = ACTIONS(3156), - [anon_sym_u_SQUOTE] = ACTIONS(3156), - [anon_sym_U_SQUOTE] = ACTIONS(3156), - [anon_sym_u8_SQUOTE] = ACTIONS(3156), - [anon_sym_SQUOTE] = ACTIONS(3156), - [anon_sym_L_DQUOTE] = ACTIONS(3158), - [anon_sym_u_DQUOTE] = ACTIONS(3158), - [anon_sym_U_DQUOTE] = ACTIONS(3158), - [anon_sym_u8_DQUOTE] = ACTIONS(3158), - [anon_sym_DQUOTE] = ACTIONS(3158), - [sym_true] = ACTIONS(3160), - [sym_false] = ACTIONS(3160), - [anon_sym_NULL] = ACTIONS(3162), - [anon_sym_nullptr] = ACTIONS(3162), + [sym_primitive_type] = ACTIONS(3881), + [anon_sym_not] = ACTIONS(3134), + [anon_sym_compl] = ACTIONS(3134), + [anon_sym_DASH_DASH] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_sizeof] = ACTIONS(3156), + [anon_sym___alignof__] = ACTIONS(3158), + [anon_sym___alignof] = ACTIONS(3158), + [anon_sym__alignof] = ACTIONS(3158), + [anon_sym_alignof] = ACTIONS(3158), + [anon_sym__Alignof] = ACTIONS(3158), + [anon_sym_offsetof] = ACTIONS(3160), + [anon_sym__Generic] = ACTIONS(3162), + [anon_sym_asm] = ACTIONS(3164), + [anon_sym___asm__] = ACTIONS(3164), + [anon_sym___asm] = ACTIONS(3164), + [sym_number_literal] = ACTIONS(3166), + [anon_sym_L_SQUOTE] = ACTIONS(3168), + [anon_sym_u_SQUOTE] = ACTIONS(3168), + [anon_sym_U_SQUOTE] = ACTIONS(3168), + [anon_sym_u8_SQUOTE] = ACTIONS(3168), + [anon_sym_SQUOTE] = ACTIONS(3168), + [anon_sym_L_DQUOTE] = ACTIONS(3170), + [anon_sym_u_DQUOTE] = ACTIONS(3170), + [anon_sym_U_DQUOTE] = ACTIONS(3170), + [anon_sym_u8_DQUOTE] = ACTIONS(3170), + [anon_sym_DQUOTE] = ACTIONS(3170), + [sym_true] = ACTIONS(3172), + [sym_false] = ACTIONS(3172), + [anon_sym_NULL] = ACTIONS(3174), + [anon_sym_nullptr] = ACTIONS(3174), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3172), - [anon_sym_R_DQUOTE] = ACTIONS(3174), - [anon_sym_LR_DQUOTE] = ACTIONS(3174), - [anon_sym_uR_DQUOTE] = ACTIONS(3174), - [anon_sym_UR_DQUOTE] = ACTIONS(3174), - [anon_sym_u8R_DQUOTE] = ACTIONS(3174), - [anon_sym_co_await] = ACTIONS(3176), - [anon_sym_new] = ACTIONS(3178), - [anon_sym_requires] = ACTIONS(3180), - [sym_this] = ACTIONS(3160), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3184), + [anon_sym_R_DQUOTE] = ACTIONS(3186), + [anon_sym_LR_DQUOTE] = ACTIONS(3186), + [anon_sym_uR_DQUOTE] = ACTIONS(3186), + [anon_sym_UR_DQUOTE] = ACTIONS(3186), + [anon_sym_u8R_DQUOTE] = ACTIONS(3186), + [anon_sym_co_await] = ACTIONS(3188), + [anon_sym_new] = ACTIONS(3190), + [anon_sym_requires] = ACTIONS(3192), + [sym_this] = ACTIONS(3172), }, - [1363] = { - [sym_expression] = STATE(2398), - [sym__string] = STATE(2870), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(2870), - [sym_concatenated_string] = STATE(2870), - [sym_string_literal] = STATE(1942), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(1942), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), + [1411] = { + [sym_expression] = STATE(2432), + [sym__string] = STATE(2887), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(2887), + [sym_concatenated_string] = STATE(2887), + [sym_string_literal] = STATE(1947), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(1947), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), [sym_identifier] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(4668), + [anon_sym_LPAREN2] = ACTIONS(4681), [anon_sym_BANG] = ACTIONS(1948), [anon_sym_TILDE] = ACTIONS(1948), [anon_sym_DASH] = ACTIONS(1946), [anon_sym_PLUS] = ACTIONS(1946), - [anon_sym_STAR] = ACTIONS(4336), - [anon_sym_AMP] = ACTIONS(4336), + [anon_sym_STAR] = ACTIONS(4346), + [anon_sym_AMP] = ACTIONS(4346), [anon_sym___extension__] = ACTIONS(1950), [anon_sym_COLON_COLON] = ACTIONS(1952), [anon_sym_LBRACK] = ACTIONS(2020), [sym_primitive_type] = ACTIONS(1956), [anon_sym_not] = ACTIONS(1946), [anon_sym_compl] = ACTIONS(1946), - [anon_sym_DASH_DASH] = ACTIONS(4417), - [anon_sym_PLUS_PLUS] = ACTIONS(4417), + [anon_sym_DASH_DASH] = ACTIONS(4348), + [anon_sym_PLUS_PLUS] = ACTIONS(4348), [anon_sym_sizeof] = ACTIONS(1958), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), @@ -215876,7 +221677,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1976), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(1980), [anon_sym_R_DQUOTE] = ACTIONS(1982), [anon_sym_LR_DQUOTE] = ACTIONS(1982), @@ -215888,162 +221689,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [1364] = { - [sym_expression] = STATE(4766), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3678), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3678), - [sym_call_expression] = STATE(3678), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3678), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3678), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3678), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3678), - [sym_identifier] = ACTIONS(3849), - [anon_sym_LPAREN2] = ACTIONS(3893), - [anon_sym_BANG] = ACTIONS(3853), - [anon_sym_TILDE] = ACTIONS(3853), - [anon_sym_DASH] = ACTIONS(3851), - [anon_sym_PLUS] = ACTIONS(3851), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(3855), - [anon_sym_COLON_COLON] = ACTIONS(3857), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3851), - [anon_sym_compl] = ACTIONS(3851), - [anon_sym_DASH_DASH] = ACTIONS(3897), - [anon_sym_PLUS_PLUS] = ACTIONS(3897), - [anon_sym_sizeof] = ACTIONS(3859), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3861), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3863), - [anon_sym_new] = ACTIONS(3865), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), - }, - [1365] = { - [sym_expression] = STATE(4558), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1412] = { + [sym_expression] = STATE(4811), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -216076,7 +221777,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -216088,62 +221789,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1366] = { - [sym_expression] = STATE(4273), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1413] = { + [sym_expression] = STATE(3745), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(4962), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -216176,7 +221877,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -216188,67 +221889,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1367] = { - [sym_expression] = STATE(3034), - [sym__string] = STATE(3181), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(3181), - [sym_concatenated_string] = STATE(3181), - [sym_string_literal] = STATE(2297), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(2297), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), - [sym_identifier] = ACTIONS(2305), - [anon_sym_LPAREN2] = ACTIONS(4691), - [anon_sym_BANG] = ACTIONS(2309), - [anon_sym_TILDE] = ACTIONS(2309), - [anon_sym_DASH] = ACTIONS(2307), - [anon_sym_PLUS] = ACTIONS(2307), - [anon_sym_STAR] = ACTIONS(4382), - [anon_sym_AMP] = ACTIONS(4382), - [anon_sym___extension__] = ACTIONS(2311), - [anon_sym_COLON_COLON] = ACTIONS(2313), + [1414] = { + [sym_expression] = STATE(3015), + [sym__string] = STATE(3178), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(3178), + [sym_concatenated_string] = STATE(3178), + [sym_string_literal] = STATE(2317), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(2317), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), + [sym_identifier] = ACTIONS(2301), + [anon_sym_LPAREN2] = ACTIONS(4652), + [anon_sym_BANG] = ACTIONS(2305), + [anon_sym_TILDE] = ACTIONS(2305), + [anon_sym_DASH] = ACTIONS(2303), + [anon_sym_PLUS] = ACTIONS(2303), + [anon_sym_STAR] = ACTIONS(4336), + [anon_sym_AMP] = ACTIONS(4336), + [anon_sym___extension__] = ACTIONS(2307), + [anon_sym_COLON_COLON] = ACTIONS(2309), [anon_sym_LBRACK] = ACTIONS(2020), [sym_primitive_type] = ACTIONS(1956), - [anon_sym_not] = ACTIONS(2307), - [anon_sym_compl] = ACTIONS(2307), - [anon_sym_DASH_DASH] = ACTIONS(4396), - [anon_sym_PLUS_PLUS] = ACTIONS(4396), - [anon_sym_sizeof] = ACTIONS(2315), + [anon_sym_not] = ACTIONS(2303), + [anon_sym_compl] = ACTIONS(2303), + [anon_sym_DASH_DASH] = ACTIONS(4352), + [anon_sym_PLUS_PLUS] = ACTIONS(4352), + [anon_sym_sizeof] = ACTIONS(2311), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), [anon_sym__alignof] = ACTIONS(1960), @@ -216259,96 +221960,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(1966), [anon_sym___asm__] = ACTIONS(1966), [anon_sym___asm] = ACTIONS(1966), - [sym_number_literal] = ACTIONS(2317), - [anon_sym_L_SQUOTE] = ACTIONS(2319), - [anon_sym_u_SQUOTE] = ACTIONS(2319), - [anon_sym_U_SQUOTE] = ACTIONS(2319), - [anon_sym_u8_SQUOTE] = ACTIONS(2319), - [anon_sym_SQUOTE] = ACTIONS(2319), - [anon_sym_L_DQUOTE] = ACTIONS(2321), - [anon_sym_u_DQUOTE] = ACTIONS(2321), - [anon_sym_U_DQUOTE] = ACTIONS(2321), - [anon_sym_u8_DQUOTE] = ACTIONS(2321), - [anon_sym_DQUOTE] = ACTIONS(2321), + [sym_number_literal] = ACTIONS(2313), + [anon_sym_L_SQUOTE] = ACTIONS(2315), + [anon_sym_u_SQUOTE] = ACTIONS(2315), + [anon_sym_U_SQUOTE] = ACTIONS(2315), + [anon_sym_u8_SQUOTE] = ACTIONS(2315), + [anon_sym_SQUOTE] = ACTIONS(2315), + [anon_sym_L_DQUOTE] = ACTIONS(2317), + [anon_sym_u_DQUOTE] = ACTIONS(2317), + [anon_sym_U_DQUOTE] = ACTIONS(2317), + [anon_sym_u8_DQUOTE] = ACTIONS(2317), + [anon_sym_DQUOTE] = ACTIONS(2317), [sym_true] = ACTIONS(1974), [sym_false] = ACTIONS(1974), [anon_sym_NULL] = ACTIONS(1976), [anon_sym_nullptr] = ACTIONS(1976), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(2323), - [anon_sym_R_DQUOTE] = ACTIONS(2325), - [anon_sym_LR_DQUOTE] = ACTIONS(2325), - [anon_sym_uR_DQUOTE] = ACTIONS(2325), - [anon_sym_UR_DQUOTE] = ACTIONS(2325), - [anon_sym_u8R_DQUOTE] = ACTIONS(2325), - [anon_sym_co_await] = ACTIONS(2327), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(2319), + [anon_sym_R_DQUOTE] = ACTIONS(2321), + [anon_sym_LR_DQUOTE] = ACTIONS(2321), + [anon_sym_uR_DQUOTE] = ACTIONS(2321), + [anon_sym_UR_DQUOTE] = ACTIONS(2321), + [anon_sym_u8R_DQUOTE] = ACTIONS(2321), + [anon_sym_co_await] = ACTIONS(2323), [anon_sym_new] = ACTIONS(2014), [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [1368] = { - [sym_expression] = STATE(3037), - [sym__string] = STATE(3181), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(3181), - [sym_concatenated_string] = STATE(3181), - [sym_string_literal] = STATE(2297), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(2297), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), - [sym_identifier] = ACTIONS(2305), - [anon_sym_LPAREN2] = ACTIONS(4691), - [anon_sym_BANG] = ACTIONS(2309), - [anon_sym_TILDE] = ACTIONS(2309), - [anon_sym_DASH] = ACTIONS(2307), - [anon_sym_PLUS] = ACTIONS(2307), - [anon_sym_STAR] = ACTIONS(4382), - [anon_sym_AMP] = ACTIONS(4382), - [anon_sym___extension__] = ACTIONS(2311), - [anon_sym_COLON_COLON] = ACTIONS(2313), + [1415] = { + [sym_expression] = STATE(3018), + [sym__string] = STATE(3178), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(3178), + [sym_concatenated_string] = STATE(3178), + [sym_string_literal] = STATE(2317), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(2317), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), + [sym_identifier] = ACTIONS(2301), + [anon_sym_LPAREN2] = ACTIONS(4652), + [anon_sym_BANG] = ACTIONS(2305), + [anon_sym_TILDE] = ACTIONS(2305), + [anon_sym_DASH] = ACTIONS(2303), + [anon_sym_PLUS] = ACTIONS(2303), + [anon_sym_STAR] = ACTIONS(4336), + [anon_sym_AMP] = ACTIONS(4336), + [anon_sym___extension__] = ACTIONS(2307), + [anon_sym_COLON_COLON] = ACTIONS(2309), [anon_sym_LBRACK] = ACTIONS(2020), [sym_primitive_type] = ACTIONS(1956), - [anon_sym_not] = ACTIONS(2307), - [anon_sym_compl] = ACTIONS(2307), - [anon_sym_DASH_DASH] = ACTIONS(4396), - [anon_sym_PLUS_PLUS] = ACTIONS(4396), - [anon_sym_sizeof] = ACTIONS(2315), + [anon_sym_not] = ACTIONS(2303), + [anon_sym_compl] = ACTIONS(2303), + [anon_sym_DASH_DASH] = ACTIONS(4352), + [anon_sym_PLUS_PLUS] = ACTIONS(4352), + [anon_sym_sizeof] = ACTIONS(2311), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), [anon_sym__alignof] = ACTIONS(1960), @@ -216359,96 +222060,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(1966), [anon_sym___asm__] = ACTIONS(1966), [anon_sym___asm] = ACTIONS(1966), - [sym_number_literal] = ACTIONS(2317), - [anon_sym_L_SQUOTE] = ACTIONS(2319), - [anon_sym_u_SQUOTE] = ACTIONS(2319), - [anon_sym_U_SQUOTE] = ACTIONS(2319), - [anon_sym_u8_SQUOTE] = ACTIONS(2319), - [anon_sym_SQUOTE] = ACTIONS(2319), - [anon_sym_L_DQUOTE] = ACTIONS(2321), - [anon_sym_u_DQUOTE] = ACTIONS(2321), - [anon_sym_U_DQUOTE] = ACTIONS(2321), - [anon_sym_u8_DQUOTE] = ACTIONS(2321), - [anon_sym_DQUOTE] = ACTIONS(2321), + [sym_number_literal] = ACTIONS(2313), + [anon_sym_L_SQUOTE] = ACTIONS(2315), + [anon_sym_u_SQUOTE] = ACTIONS(2315), + [anon_sym_U_SQUOTE] = ACTIONS(2315), + [anon_sym_u8_SQUOTE] = ACTIONS(2315), + [anon_sym_SQUOTE] = ACTIONS(2315), + [anon_sym_L_DQUOTE] = ACTIONS(2317), + [anon_sym_u_DQUOTE] = ACTIONS(2317), + [anon_sym_U_DQUOTE] = ACTIONS(2317), + [anon_sym_u8_DQUOTE] = ACTIONS(2317), + [anon_sym_DQUOTE] = ACTIONS(2317), [sym_true] = ACTIONS(1974), [sym_false] = ACTIONS(1974), [anon_sym_NULL] = ACTIONS(1976), [anon_sym_nullptr] = ACTIONS(1976), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(2323), - [anon_sym_R_DQUOTE] = ACTIONS(2325), - [anon_sym_LR_DQUOTE] = ACTIONS(2325), - [anon_sym_uR_DQUOTE] = ACTIONS(2325), - [anon_sym_UR_DQUOTE] = ACTIONS(2325), - [anon_sym_u8R_DQUOTE] = ACTIONS(2325), - [anon_sym_co_await] = ACTIONS(2327), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(2319), + [anon_sym_R_DQUOTE] = ACTIONS(2321), + [anon_sym_LR_DQUOTE] = ACTIONS(2321), + [anon_sym_uR_DQUOTE] = ACTIONS(2321), + [anon_sym_UR_DQUOTE] = ACTIONS(2321), + [anon_sym_u8R_DQUOTE] = ACTIONS(2321), + [anon_sym_co_await] = ACTIONS(2323), [anon_sym_new] = ACTIONS(2014), [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [1369] = { - [sym_expression] = STATE(2384), - [sym__string] = STATE(3181), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(3181), - [sym_concatenated_string] = STATE(3181), - [sym_string_literal] = STATE(2297), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(2297), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), - [sym_identifier] = ACTIONS(2305), - [anon_sym_LPAREN2] = ACTIONS(4691), - [anon_sym_BANG] = ACTIONS(2309), - [anon_sym_TILDE] = ACTIONS(2309), - [anon_sym_DASH] = ACTIONS(2307), - [anon_sym_PLUS] = ACTIONS(2307), - [anon_sym_STAR] = ACTIONS(4382), - [anon_sym_AMP] = ACTIONS(4382), - [anon_sym___extension__] = ACTIONS(2311), - [anon_sym_COLON_COLON] = ACTIONS(2313), + [1416] = { + [sym_expression] = STATE(2435), + [sym__string] = STATE(3178), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(3178), + [sym_concatenated_string] = STATE(3178), + [sym_string_literal] = STATE(2317), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(2317), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), + [sym_identifier] = ACTIONS(2301), + [anon_sym_LPAREN2] = ACTIONS(4652), + [anon_sym_BANG] = ACTIONS(2305), + [anon_sym_TILDE] = ACTIONS(2305), + [anon_sym_DASH] = ACTIONS(2303), + [anon_sym_PLUS] = ACTIONS(2303), + [anon_sym_STAR] = ACTIONS(4336), + [anon_sym_AMP] = ACTIONS(4336), + [anon_sym___extension__] = ACTIONS(2307), + [anon_sym_COLON_COLON] = ACTIONS(2309), [anon_sym_LBRACK] = ACTIONS(2020), [sym_primitive_type] = ACTIONS(1956), - [anon_sym_not] = ACTIONS(2307), - [anon_sym_compl] = ACTIONS(2307), - [anon_sym_DASH_DASH] = ACTIONS(4396), - [anon_sym_PLUS_PLUS] = ACTIONS(4396), - [anon_sym_sizeof] = ACTIONS(2315), + [anon_sym_not] = ACTIONS(2303), + [anon_sym_compl] = ACTIONS(2303), + [anon_sym_DASH_DASH] = ACTIONS(4352), + [anon_sym_PLUS_PLUS] = ACTIONS(4352), + [anon_sym_sizeof] = ACTIONS(2311), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), [anon_sym__alignof] = ACTIONS(1960), @@ -216459,96 +222160,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(1966), [anon_sym___asm__] = ACTIONS(1966), [anon_sym___asm] = ACTIONS(1966), - [sym_number_literal] = ACTIONS(2317), - [anon_sym_L_SQUOTE] = ACTIONS(2319), - [anon_sym_u_SQUOTE] = ACTIONS(2319), - [anon_sym_U_SQUOTE] = ACTIONS(2319), - [anon_sym_u8_SQUOTE] = ACTIONS(2319), - [anon_sym_SQUOTE] = ACTIONS(2319), - [anon_sym_L_DQUOTE] = ACTIONS(2321), - [anon_sym_u_DQUOTE] = ACTIONS(2321), - [anon_sym_U_DQUOTE] = ACTIONS(2321), - [anon_sym_u8_DQUOTE] = ACTIONS(2321), - [anon_sym_DQUOTE] = ACTIONS(2321), + [sym_number_literal] = ACTIONS(2313), + [anon_sym_L_SQUOTE] = ACTIONS(2315), + [anon_sym_u_SQUOTE] = ACTIONS(2315), + [anon_sym_U_SQUOTE] = ACTIONS(2315), + [anon_sym_u8_SQUOTE] = ACTIONS(2315), + [anon_sym_SQUOTE] = ACTIONS(2315), + [anon_sym_L_DQUOTE] = ACTIONS(2317), + [anon_sym_u_DQUOTE] = ACTIONS(2317), + [anon_sym_U_DQUOTE] = ACTIONS(2317), + [anon_sym_u8_DQUOTE] = ACTIONS(2317), + [anon_sym_DQUOTE] = ACTIONS(2317), [sym_true] = ACTIONS(1974), [sym_false] = ACTIONS(1974), [anon_sym_NULL] = ACTIONS(1976), [anon_sym_nullptr] = ACTIONS(1976), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(2323), - [anon_sym_R_DQUOTE] = ACTIONS(2325), - [anon_sym_LR_DQUOTE] = ACTIONS(2325), - [anon_sym_uR_DQUOTE] = ACTIONS(2325), - [anon_sym_UR_DQUOTE] = ACTIONS(2325), - [anon_sym_u8R_DQUOTE] = ACTIONS(2325), - [anon_sym_co_await] = ACTIONS(2327), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(2319), + [anon_sym_R_DQUOTE] = ACTIONS(2321), + [anon_sym_LR_DQUOTE] = ACTIONS(2321), + [anon_sym_uR_DQUOTE] = ACTIONS(2321), + [anon_sym_UR_DQUOTE] = ACTIONS(2321), + [anon_sym_u8R_DQUOTE] = ACTIONS(2321), + [anon_sym_co_await] = ACTIONS(2323), [anon_sym_new] = ACTIONS(2014), [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [1370] = { - [sym_expression] = STATE(3018), - [sym__string] = STATE(3181), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(3181), - [sym_concatenated_string] = STATE(3181), - [sym_string_literal] = STATE(2297), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(2297), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), - [sym_identifier] = ACTIONS(2305), - [anon_sym_LPAREN2] = ACTIONS(4691), - [anon_sym_BANG] = ACTIONS(2309), - [anon_sym_TILDE] = ACTIONS(2309), - [anon_sym_DASH] = ACTIONS(2307), - [anon_sym_PLUS] = ACTIONS(2307), - [anon_sym_STAR] = ACTIONS(4382), - [anon_sym_AMP] = ACTIONS(4382), - [anon_sym___extension__] = ACTIONS(2311), - [anon_sym_COLON_COLON] = ACTIONS(2313), + [1417] = { + [sym_expression] = STATE(3075), + [sym__string] = STATE(3178), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(3178), + [sym_concatenated_string] = STATE(3178), + [sym_string_literal] = STATE(2317), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(2317), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), + [sym_identifier] = ACTIONS(2301), + [anon_sym_LPAREN2] = ACTIONS(4652), + [anon_sym_BANG] = ACTIONS(2305), + [anon_sym_TILDE] = ACTIONS(2305), + [anon_sym_DASH] = ACTIONS(2303), + [anon_sym_PLUS] = ACTIONS(2303), + [anon_sym_STAR] = ACTIONS(4336), + [anon_sym_AMP] = ACTIONS(4336), + [anon_sym___extension__] = ACTIONS(2307), + [anon_sym_COLON_COLON] = ACTIONS(2309), [anon_sym_LBRACK] = ACTIONS(2020), [sym_primitive_type] = ACTIONS(1956), - [anon_sym_not] = ACTIONS(2307), - [anon_sym_compl] = ACTIONS(2307), - [anon_sym_DASH_DASH] = ACTIONS(4396), - [anon_sym_PLUS_PLUS] = ACTIONS(4396), - [anon_sym_sizeof] = ACTIONS(2315), + [anon_sym_not] = ACTIONS(2303), + [anon_sym_compl] = ACTIONS(2303), + [anon_sym_DASH_DASH] = ACTIONS(4352), + [anon_sym_PLUS_PLUS] = ACTIONS(4352), + [anon_sym_sizeof] = ACTIONS(2311), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), [anon_sym__alignof] = ACTIONS(1960), @@ -216559,96 +222260,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(1966), [anon_sym___asm__] = ACTIONS(1966), [anon_sym___asm] = ACTIONS(1966), - [sym_number_literal] = ACTIONS(2317), - [anon_sym_L_SQUOTE] = ACTIONS(2319), - [anon_sym_u_SQUOTE] = ACTIONS(2319), - [anon_sym_U_SQUOTE] = ACTIONS(2319), - [anon_sym_u8_SQUOTE] = ACTIONS(2319), - [anon_sym_SQUOTE] = ACTIONS(2319), - [anon_sym_L_DQUOTE] = ACTIONS(2321), - [anon_sym_u_DQUOTE] = ACTIONS(2321), - [anon_sym_U_DQUOTE] = ACTIONS(2321), - [anon_sym_u8_DQUOTE] = ACTIONS(2321), - [anon_sym_DQUOTE] = ACTIONS(2321), + [sym_number_literal] = ACTIONS(2313), + [anon_sym_L_SQUOTE] = ACTIONS(2315), + [anon_sym_u_SQUOTE] = ACTIONS(2315), + [anon_sym_U_SQUOTE] = ACTIONS(2315), + [anon_sym_u8_SQUOTE] = ACTIONS(2315), + [anon_sym_SQUOTE] = ACTIONS(2315), + [anon_sym_L_DQUOTE] = ACTIONS(2317), + [anon_sym_u_DQUOTE] = ACTIONS(2317), + [anon_sym_U_DQUOTE] = ACTIONS(2317), + [anon_sym_u8_DQUOTE] = ACTIONS(2317), + [anon_sym_DQUOTE] = ACTIONS(2317), [sym_true] = ACTIONS(1974), [sym_false] = ACTIONS(1974), [anon_sym_NULL] = ACTIONS(1976), [anon_sym_nullptr] = ACTIONS(1976), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(2323), - [anon_sym_R_DQUOTE] = ACTIONS(2325), - [anon_sym_LR_DQUOTE] = ACTIONS(2325), - [anon_sym_uR_DQUOTE] = ACTIONS(2325), - [anon_sym_UR_DQUOTE] = ACTIONS(2325), - [anon_sym_u8R_DQUOTE] = ACTIONS(2325), - [anon_sym_co_await] = ACTIONS(2327), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(2319), + [anon_sym_R_DQUOTE] = ACTIONS(2321), + [anon_sym_LR_DQUOTE] = ACTIONS(2321), + [anon_sym_uR_DQUOTE] = ACTIONS(2321), + [anon_sym_UR_DQUOTE] = ACTIONS(2321), + [anon_sym_u8R_DQUOTE] = ACTIONS(2321), + [anon_sym_co_await] = ACTIONS(2323), [anon_sym_new] = ACTIONS(2014), [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [1371] = { - [sym_expression] = STATE(3021), - [sym__string] = STATE(3181), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(3181), - [sym_concatenated_string] = STATE(3181), - [sym_string_literal] = STATE(2297), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(2297), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), - [sym_identifier] = ACTIONS(2305), - [anon_sym_LPAREN2] = ACTIONS(4691), - [anon_sym_BANG] = ACTIONS(2309), - [anon_sym_TILDE] = ACTIONS(2309), - [anon_sym_DASH] = ACTIONS(2307), - [anon_sym_PLUS] = ACTIONS(2307), - [anon_sym_STAR] = ACTIONS(4382), - [anon_sym_AMP] = ACTIONS(4382), - [anon_sym___extension__] = ACTIONS(2311), - [anon_sym_COLON_COLON] = ACTIONS(2313), + [1418] = { + [sym_expression] = STATE(3080), + [sym__string] = STATE(3178), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(3178), + [sym_concatenated_string] = STATE(3178), + [sym_string_literal] = STATE(2317), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(2317), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), + [sym_identifier] = ACTIONS(2301), + [anon_sym_LPAREN2] = ACTIONS(4652), + [anon_sym_BANG] = ACTIONS(2305), + [anon_sym_TILDE] = ACTIONS(2305), + [anon_sym_DASH] = ACTIONS(2303), + [anon_sym_PLUS] = ACTIONS(2303), + [anon_sym_STAR] = ACTIONS(4336), + [anon_sym_AMP] = ACTIONS(4336), + [anon_sym___extension__] = ACTIONS(2307), + [anon_sym_COLON_COLON] = ACTIONS(2309), [anon_sym_LBRACK] = ACTIONS(2020), [sym_primitive_type] = ACTIONS(1956), - [anon_sym_not] = ACTIONS(2307), - [anon_sym_compl] = ACTIONS(2307), - [anon_sym_DASH_DASH] = ACTIONS(4396), - [anon_sym_PLUS_PLUS] = ACTIONS(4396), - [anon_sym_sizeof] = ACTIONS(2315), + [anon_sym_not] = ACTIONS(2303), + [anon_sym_compl] = ACTIONS(2303), + [anon_sym_DASH_DASH] = ACTIONS(4352), + [anon_sym_PLUS_PLUS] = ACTIONS(4352), + [anon_sym_sizeof] = ACTIONS(2311), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), [anon_sym__alignof] = ACTIONS(1960), @@ -216659,96 +222360,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(1966), [anon_sym___asm__] = ACTIONS(1966), [anon_sym___asm] = ACTIONS(1966), - [sym_number_literal] = ACTIONS(2317), - [anon_sym_L_SQUOTE] = ACTIONS(2319), - [anon_sym_u_SQUOTE] = ACTIONS(2319), - [anon_sym_U_SQUOTE] = ACTIONS(2319), - [anon_sym_u8_SQUOTE] = ACTIONS(2319), - [anon_sym_SQUOTE] = ACTIONS(2319), - [anon_sym_L_DQUOTE] = ACTIONS(2321), - [anon_sym_u_DQUOTE] = ACTIONS(2321), - [anon_sym_U_DQUOTE] = ACTIONS(2321), - [anon_sym_u8_DQUOTE] = ACTIONS(2321), - [anon_sym_DQUOTE] = ACTIONS(2321), + [sym_number_literal] = ACTIONS(2313), + [anon_sym_L_SQUOTE] = ACTIONS(2315), + [anon_sym_u_SQUOTE] = ACTIONS(2315), + [anon_sym_U_SQUOTE] = ACTIONS(2315), + [anon_sym_u8_SQUOTE] = ACTIONS(2315), + [anon_sym_SQUOTE] = ACTIONS(2315), + [anon_sym_L_DQUOTE] = ACTIONS(2317), + [anon_sym_u_DQUOTE] = ACTIONS(2317), + [anon_sym_U_DQUOTE] = ACTIONS(2317), + [anon_sym_u8_DQUOTE] = ACTIONS(2317), + [anon_sym_DQUOTE] = ACTIONS(2317), [sym_true] = ACTIONS(1974), [sym_false] = ACTIONS(1974), [anon_sym_NULL] = ACTIONS(1976), [anon_sym_nullptr] = ACTIONS(1976), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(2323), - [anon_sym_R_DQUOTE] = ACTIONS(2325), - [anon_sym_LR_DQUOTE] = ACTIONS(2325), - [anon_sym_uR_DQUOTE] = ACTIONS(2325), - [anon_sym_UR_DQUOTE] = ACTIONS(2325), - [anon_sym_u8R_DQUOTE] = ACTIONS(2325), - [anon_sym_co_await] = ACTIONS(2327), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(2319), + [anon_sym_R_DQUOTE] = ACTIONS(2321), + [anon_sym_LR_DQUOTE] = ACTIONS(2321), + [anon_sym_uR_DQUOTE] = ACTIONS(2321), + [anon_sym_UR_DQUOTE] = ACTIONS(2321), + [anon_sym_u8R_DQUOTE] = ACTIONS(2321), + [anon_sym_co_await] = ACTIONS(2323), [anon_sym_new] = ACTIONS(2014), [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [1372] = { - [sym_expression] = STATE(3023), - [sym__string] = STATE(3181), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(3181), - [sym_concatenated_string] = STATE(3181), - [sym_string_literal] = STATE(2297), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(2297), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), - [sym_identifier] = ACTIONS(2305), - [anon_sym_LPAREN2] = ACTIONS(4691), - [anon_sym_BANG] = ACTIONS(2309), - [anon_sym_TILDE] = ACTIONS(2309), - [anon_sym_DASH] = ACTIONS(2307), - [anon_sym_PLUS] = ACTIONS(2307), - [anon_sym_STAR] = ACTIONS(4382), - [anon_sym_AMP] = ACTIONS(4382), - [anon_sym___extension__] = ACTIONS(2311), - [anon_sym_COLON_COLON] = ACTIONS(2313), + [1419] = { + [sym_expression] = STATE(3083), + [sym__string] = STATE(3178), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(3178), + [sym_concatenated_string] = STATE(3178), + [sym_string_literal] = STATE(2317), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(2317), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), + [sym_identifier] = ACTIONS(2301), + [anon_sym_LPAREN2] = ACTIONS(4652), + [anon_sym_BANG] = ACTIONS(2305), + [anon_sym_TILDE] = ACTIONS(2305), + [anon_sym_DASH] = ACTIONS(2303), + [anon_sym_PLUS] = ACTIONS(2303), + [anon_sym_STAR] = ACTIONS(4336), + [anon_sym_AMP] = ACTIONS(4336), + [anon_sym___extension__] = ACTIONS(2307), + [anon_sym_COLON_COLON] = ACTIONS(2309), [anon_sym_LBRACK] = ACTIONS(2020), [sym_primitive_type] = ACTIONS(1956), - [anon_sym_not] = ACTIONS(2307), - [anon_sym_compl] = ACTIONS(2307), - [anon_sym_DASH_DASH] = ACTIONS(4396), - [anon_sym_PLUS_PLUS] = ACTIONS(4396), - [anon_sym_sizeof] = ACTIONS(2315), + [anon_sym_not] = ACTIONS(2303), + [anon_sym_compl] = ACTIONS(2303), + [anon_sym_DASH_DASH] = ACTIONS(4352), + [anon_sym_PLUS_PLUS] = ACTIONS(4352), + [anon_sym_sizeof] = ACTIONS(2311), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), [anon_sym__alignof] = ACTIONS(1960), @@ -216759,96 +222460,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(1966), [anon_sym___asm__] = ACTIONS(1966), [anon_sym___asm] = ACTIONS(1966), - [sym_number_literal] = ACTIONS(2317), - [anon_sym_L_SQUOTE] = ACTIONS(2319), - [anon_sym_u_SQUOTE] = ACTIONS(2319), - [anon_sym_U_SQUOTE] = ACTIONS(2319), - [anon_sym_u8_SQUOTE] = ACTIONS(2319), - [anon_sym_SQUOTE] = ACTIONS(2319), - [anon_sym_L_DQUOTE] = ACTIONS(2321), - [anon_sym_u_DQUOTE] = ACTIONS(2321), - [anon_sym_U_DQUOTE] = ACTIONS(2321), - [anon_sym_u8_DQUOTE] = ACTIONS(2321), - [anon_sym_DQUOTE] = ACTIONS(2321), + [sym_number_literal] = ACTIONS(2313), + [anon_sym_L_SQUOTE] = ACTIONS(2315), + [anon_sym_u_SQUOTE] = ACTIONS(2315), + [anon_sym_U_SQUOTE] = ACTIONS(2315), + [anon_sym_u8_SQUOTE] = ACTIONS(2315), + [anon_sym_SQUOTE] = ACTIONS(2315), + [anon_sym_L_DQUOTE] = ACTIONS(2317), + [anon_sym_u_DQUOTE] = ACTIONS(2317), + [anon_sym_U_DQUOTE] = ACTIONS(2317), + [anon_sym_u8_DQUOTE] = ACTIONS(2317), + [anon_sym_DQUOTE] = ACTIONS(2317), [sym_true] = ACTIONS(1974), [sym_false] = ACTIONS(1974), [anon_sym_NULL] = ACTIONS(1976), [anon_sym_nullptr] = ACTIONS(1976), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(2323), - [anon_sym_R_DQUOTE] = ACTIONS(2325), - [anon_sym_LR_DQUOTE] = ACTIONS(2325), - [anon_sym_uR_DQUOTE] = ACTIONS(2325), - [anon_sym_UR_DQUOTE] = ACTIONS(2325), - [anon_sym_u8R_DQUOTE] = ACTIONS(2325), - [anon_sym_co_await] = ACTIONS(2327), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(2319), + [anon_sym_R_DQUOTE] = ACTIONS(2321), + [anon_sym_LR_DQUOTE] = ACTIONS(2321), + [anon_sym_uR_DQUOTE] = ACTIONS(2321), + [anon_sym_UR_DQUOTE] = ACTIONS(2321), + [anon_sym_u8R_DQUOTE] = ACTIONS(2321), + [anon_sym_co_await] = ACTIONS(2323), [anon_sym_new] = ACTIONS(2014), [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [1373] = { - [sym_expression] = STATE(3024), - [sym__string] = STATE(3181), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(3181), - [sym_concatenated_string] = STATE(3181), - [sym_string_literal] = STATE(2297), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(2297), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), - [sym_identifier] = ACTIONS(2305), - [anon_sym_LPAREN2] = ACTIONS(4691), - [anon_sym_BANG] = ACTIONS(2309), - [anon_sym_TILDE] = ACTIONS(2309), - [anon_sym_DASH] = ACTIONS(2307), - [anon_sym_PLUS] = ACTIONS(2307), - [anon_sym_STAR] = ACTIONS(4382), - [anon_sym_AMP] = ACTIONS(4382), - [anon_sym___extension__] = ACTIONS(2311), - [anon_sym_COLON_COLON] = ACTIONS(2313), + [1420] = { + [sym_expression] = STATE(3088), + [sym__string] = STATE(3178), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(3178), + [sym_concatenated_string] = STATE(3178), + [sym_string_literal] = STATE(2317), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(2317), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), + [sym_identifier] = ACTIONS(2301), + [anon_sym_LPAREN2] = ACTIONS(4652), + [anon_sym_BANG] = ACTIONS(2305), + [anon_sym_TILDE] = ACTIONS(2305), + [anon_sym_DASH] = ACTIONS(2303), + [anon_sym_PLUS] = ACTIONS(2303), + [anon_sym_STAR] = ACTIONS(4336), + [anon_sym_AMP] = ACTIONS(4336), + [anon_sym___extension__] = ACTIONS(2307), + [anon_sym_COLON_COLON] = ACTIONS(2309), [anon_sym_LBRACK] = ACTIONS(2020), [sym_primitive_type] = ACTIONS(1956), - [anon_sym_not] = ACTIONS(2307), - [anon_sym_compl] = ACTIONS(2307), - [anon_sym_DASH_DASH] = ACTIONS(4396), - [anon_sym_PLUS_PLUS] = ACTIONS(4396), - [anon_sym_sizeof] = ACTIONS(2315), + [anon_sym_not] = ACTIONS(2303), + [anon_sym_compl] = ACTIONS(2303), + [anon_sym_DASH_DASH] = ACTIONS(4352), + [anon_sym_PLUS_PLUS] = ACTIONS(4352), + [anon_sym_sizeof] = ACTIONS(2311), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), [anon_sym__alignof] = ACTIONS(1960), @@ -216859,96 +222560,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(1966), [anon_sym___asm__] = ACTIONS(1966), [anon_sym___asm] = ACTIONS(1966), - [sym_number_literal] = ACTIONS(2317), - [anon_sym_L_SQUOTE] = ACTIONS(2319), - [anon_sym_u_SQUOTE] = ACTIONS(2319), - [anon_sym_U_SQUOTE] = ACTIONS(2319), - [anon_sym_u8_SQUOTE] = ACTIONS(2319), - [anon_sym_SQUOTE] = ACTIONS(2319), - [anon_sym_L_DQUOTE] = ACTIONS(2321), - [anon_sym_u_DQUOTE] = ACTIONS(2321), - [anon_sym_U_DQUOTE] = ACTIONS(2321), - [anon_sym_u8_DQUOTE] = ACTIONS(2321), - [anon_sym_DQUOTE] = ACTIONS(2321), + [sym_number_literal] = ACTIONS(2313), + [anon_sym_L_SQUOTE] = ACTIONS(2315), + [anon_sym_u_SQUOTE] = ACTIONS(2315), + [anon_sym_U_SQUOTE] = ACTIONS(2315), + [anon_sym_u8_SQUOTE] = ACTIONS(2315), + [anon_sym_SQUOTE] = ACTIONS(2315), + [anon_sym_L_DQUOTE] = ACTIONS(2317), + [anon_sym_u_DQUOTE] = ACTIONS(2317), + [anon_sym_U_DQUOTE] = ACTIONS(2317), + [anon_sym_u8_DQUOTE] = ACTIONS(2317), + [anon_sym_DQUOTE] = ACTIONS(2317), [sym_true] = ACTIONS(1974), [sym_false] = ACTIONS(1974), [anon_sym_NULL] = ACTIONS(1976), [anon_sym_nullptr] = ACTIONS(1976), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(2323), - [anon_sym_R_DQUOTE] = ACTIONS(2325), - [anon_sym_LR_DQUOTE] = ACTIONS(2325), - [anon_sym_uR_DQUOTE] = ACTIONS(2325), - [anon_sym_UR_DQUOTE] = ACTIONS(2325), - [anon_sym_u8R_DQUOTE] = ACTIONS(2325), - [anon_sym_co_await] = ACTIONS(2327), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(2319), + [anon_sym_R_DQUOTE] = ACTIONS(2321), + [anon_sym_LR_DQUOTE] = ACTIONS(2321), + [anon_sym_uR_DQUOTE] = ACTIONS(2321), + [anon_sym_UR_DQUOTE] = ACTIONS(2321), + [anon_sym_u8R_DQUOTE] = ACTIONS(2321), + [anon_sym_co_await] = ACTIONS(2323), [anon_sym_new] = ACTIONS(2014), [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [1374] = { - [sym_expression] = STATE(3026), - [sym__string] = STATE(3181), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(3181), - [sym_concatenated_string] = STATE(3181), - [sym_string_literal] = STATE(2297), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(2297), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), - [sym_identifier] = ACTIONS(2305), - [anon_sym_LPAREN2] = ACTIONS(4691), - [anon_sym_BANG] = ACTIONS(2309), - [anon_sym_TILDE] = ACTIONS(2309), - [anon_sym_DASH] = ACTIONS(2307), - [anon_sym_PLUS] = ACTIONS(2307), - [anon_sym_STAR] = ACTIONS(4382), - [anon_sym_AMP] = ACTIONS(4382), - [anon_sym___extension__] = ACTIONS(2311), - [anon_sym_COLON_COLON] = ACTIONS(2313), + [1421] = { + [sym_expression] = STATE(3152), + [sym__string] = STATE(3178), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(3178), + [sym_concatenated_string] = STATE(3178), + [sym_string_literal] = STATE(2317), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(2317), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), + [sym_identifier] = ACTIONS(2301), + [anon_sym_LPAREN2] = ACTIONS(4652), + [anon_sym_BANG] = ACTIONS(2305), + [anon_sym_TILDE] = ACTIONS(2305), + [anon_sym_DASH] = ACTIONS(2303), + [anon_sym_PLUS] = ACTIONS(2303), + [anon_sym_STAR] = ACTIONS(4336), + [anon_sym_AMP] = ACTIONS(4336), + [anon_sym___extension__] = ACTIONS(2307), + [anon_sym_COLON_COLON] = ACTIONS(2309), [anon_sym_LBRACK] = ACTIONS(2020), [sym_primitive_type] = ACTIONS(1956), - [anon_sym_not] = ACTIONS(2307), - [anon_sym_compl] = ACTIONS(2307), - [anon_sym_DASH_DASH] = ACTIONS(4396), - [anon_sym_PLUS_PLUS] = ACTIONS(4396), - [anon_sym_sizeof] = ACTIONS(2315), + [anon_sym_not] = ACTIONS(2303), + [anon_sym_compl] = ACTIONS(2303), + [anon_sym_DASH_DASH] = ACTIONS(4352), + [anon_sym_PLUS_PLUS] = ACTIONS(4352), + [anon_sym_sizeof] = ACTIONS(2311), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), [anon_sym__alignof] = ACTIONS(1960), @@ -216959,96 +222660,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(1966), [anon_sym___asm__] = ACTIONS(1966), [anon_sym___asm] = ACTIONS(1966), - [sym_number_literal] = ACTIONS(2317), - [anon_sym_L_SQUOTE] = ACTIONS(2319), - [anon_sym_u_SQUOTE] = ACTIONS(2319), - [anon_sym_U_SQUOTE] = ACTIONS(2319), - [anon_sym_u8_SQUOTE] = ACTIONS(2319), - [anon_sym_SQUOTE] = ACTIONS(2319), - [anon_sym_L_DQUOTE] = ACTIONS(2321), - [anon_sym_u_DQUOTE] = ACTIONS(2321), - [anon_sym_U_DQUOTE] = ACTIONS(2321), - [anon_sym_u8_DQUOTE] = ACTIONS(2321), - [anon_sym_DQUOTE] = ACTIONS(2321), + [sym_number_literal] = ACTIONS(2313), + [anon_sym_L_SQUOTE] = ACTIONS(2315), + [anon_sym_u_SQUOTE] = ACTIONS(2315), + [anon_sym_U_SQUOTE] = ACTIONS(2315), + [anon_sym_u8_SQUOTE] = ACTIONS(2315), + [anon_sym_SQUOTE] = ACTIONS(2315), + [anon_sym_L_DQUOTE] = ACTIONS(2317), + [anon_sym_u_DQUOTE] = ACTIONS(2317), + [anon_sym_U_DQUOTE] = ACTIONS(2317), + [anon_sym_u8_DQUOTE] = ACTIONS(2317), + [anon_sym_DQUOTE] = ACTIONS(2317), [sym_true] = ACTIONS(1974), [sym_false] = ACTIONS(1974), [anon_sym_NULL] = ACTIONS(1976), [anon_sym_nullptr] = ACTIONS(1976), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(2323), - [anon_sym_R_DQUOTE] = ACTIONS(2325), - [anon_sym_LR_DQUOTE] = ACTIONS(2325), - [anon_sym_uR_DQUOTE] = ACTIONS(2325), - [anon_sym_UR_DQUOTE] = ACTIONS(2325), - [anon_sym_u8R_DQUOTE] = ACTIONS(2325), - [anon_sym_co_await] = ACTIONS(2327), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(2319), + [anon_sym_R_DQUOTE] = ACTIONS(2321), + [anon_sym_LR_DQUOTE] = ACTIONS(2321), + [anon_sym_uR_DQUOTE] = ACTIONS(2321), + [anon_sym_UR_DQUOTE] = ACTIONS(2321), + [anon_sym_u8R_DQUOTE] = ACTIONS(2321), + [anon_sym_co_await] = ACTIONS(2323), [anon_sym_new] = ACTIONS(2014), [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [1375] = { - [sym_expression] = STATE(3029), - [sym__string] = STATE(3181), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(3181), - [sym_concatenated_string] = STATE(3181), - [sym_string_literal] = STATE(2297), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(2297), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), - [sym_identifier] = ACTIONS(2305), - [anon_sym_LPAREN2] = ACTIONS(4691), - [anon_sym_BANG] = ACTIONS(2309), - [anon_sym_TILDE] = ACTIONS(2309), - [anon_sym_DASH] = ACTIONS(2307), - [anon_sym_PLUS] = ACTIONS(2307), - [anon_sym_STAR] = ACTIONS(4382), - [anon_sym_AMP] = ACTIONS(4382), - [anon_sym___extension__] = ACTIONS(2311), - [anon_sym_COLON_COLON] = ACTIONS(2313), + [1422] = { + [sym_expression] = STATE(3093), + [sym__string] = STATE(3178), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(3178), + [sym_concatenated_string] = STATE(3178), + [sym_string_literal] = STATE(2317), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(2317), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), + [sym_identifier] = ACTIONS(2301), + [anon_sym_LPAREN2] = ACTIONS(4652), + [anon_sym_BANG] = ACTIONS(2305), + [anon_sym_TILDE] = ACTIONS(2305), + [anon_sym_DASH] = ACTIONS(2303), + [anon_sym_PLUS] = ACTIONS(2303), + [anon_sym_STAR] = ACTIONS(4336), + [anon_sym_AMP] = ACTIONS(4336), + [anon_sym___extension__] = ACTIONS(2307), + [anon_sym_COLON_COLON] = ACTIONS(2309), [anon_sym_LBRACK] = ACTIONS(2020), [sym_primitive_type] = ACTIONS(1956), - [anon_sym_not] = ACTIONS(2307), - [anon_sym_compl] = ACTIONS(2307), - [anon_sym_DASH_DASH] = ACTIONS(4396), - [anon_sym_PLUS_PLUS] = ACTIONS(4396), - [anon_sym_sizeof] = ACTIONS(2315), + [anon_sym_not] = ACTIONS(2303), + [anon_sym_compl] = ACTIONS(2303), + [anon_sym_DASH_DASH] = ACTIONS(4352), + [anon_sym_PLUS_PLUS] = ACTIONS(4352), + [anon_sym_sizeof] = ACTIONS(2311), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), [anon_sym__alignof] = ACTIONS(1960), @@ -217059,96 +222760,196 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(1966), [anon_sym___asm__] = ACTIONS(1966), [anon_sym___asm] = ACTIONS(1966), - [sym_number_literal] = ACTIONS(2317), - [anon_sym_L_SQUOTE] = ACTIONS(2319), - [anon_sym_u_SQUOTE] = ACTIONS(2319), - [anon_sym_U_SQUOTE] = ACTIONS(2319), - [anon_sym_u8_SQUOTE] = ACTIONS(2319), - [anon_sym_SQUOTE] = ACTIONS(2319), - [anon_sym_L_DQUOTE] = ACTIONS(2321), - [anon_sym_u_DQUOTE] = ACTIONS(2321), - [anon_sym_U_DQUOTE] = ACTIONS(2321), - [anon_sym_u8_DQUOTE] = ACTIONS(2321), - [anon_sym_DQUOTE] = ACTIONS(2321), + [sym_number_literal] = ACTIONS(2313), + [anon_sym_L_SQUOTE] = ACTIONS(2315), + [anon_sym_u_SQUOTE] = ACTIONS(2315), + [anon_sym_U_SQUOTE] = ACTIONS(2315), + [anon_sym_u8_SQUOTE] = ACTIONS(2315), + [anon_sym_SQUOTE] = ACTIONS(2315), + [anon_sym_L_DQUOTE] = ACTIONS(2317), + [anon_sym_u_DQUOTE] = ACTIONS(2317), + [anon_sym_U_DQUOTE] = ACTIONS(2317), + [anon_sym_u8_DQUOTE] = ACTIONS(2317), + [anon_sym_DQUOTE] = ACTIONS(2317), [sym_true] = ACTIONS(1974), [sym_false] = ACTIONS(1974), [anon_sym_NULL] = ACTIONS(1976), [anon_sym_nullptr] = ACTIONS(1976), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(2323), - [anon_sym_R_DQUOTE] = ACTIONS(2325), - [anon_sym_LR_DQUOTE] = ACTIONS(2325), - [anon_sym_uR_DQUOTE] = ACTIONS(2325), - [anon_sym_UR_DQUOTE] = ACTIONS(2325), - [anon_sym_u8R_DQUOTE] = ACTIONS(2325), - [anon_sym_co_await] = ACTIONS(2327), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(2319), + [anon_sym_R_DQUOTE] = ACTIONS(2321), + [anon_sym_LR_DQUOTE] = ACTIONS(2321), + [anon_sym_uR_DQUOTE] = ACTIONS(2321), + [anon_sym_UR_DQUOTE] = ACTIONS(2321), + [anon_sym_u8R_DQUOTE] = ACTIONS(2321), + [anon_sym_co_await] = ACTIONS(2323), [anon_sym_new] = ACTIONS(2014), [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [1376] = { - [sym_expression] = STATE(3030), - [sym__string] = STATE(3181), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(3181), - [sym_concatenated_string] = STATE(3181), - [sym_string_literal] = STATE(2297), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(2297), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), - [sym_identifier] = ACTIONS(2305), - [anon_sym_LPAREN2] = ACTIONS(4691), - [anon_sym_BANG] = ACTIONS(2309), - [anon_sym_TILDE] = ACTIONS(2309), - [anon_sym_DASH] = ACTIONS(2307), - [anon_sym_PLUS] = ACTIONS(2307), - [anon_sym_STAR] = ACTIONS(4382), - [anon_sym_AMP] = ACTIONS(4382), - [anon_sym___extension__] = ACTIONS(2311), - [anon_sym_COLON_COLON] = ACTIONS(2313), + [1423] = { + [sym_expression] = STATE(3094), + [sym__string] = STATE(3178), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(3178), + [sym_concatenated_string] = STATE(3178), + [sym_string_literal] = STATE(2317), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(2317), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), + [sym_identifier] = ACTIONS(2301), + [anon_sym_LPAREN2] = ACTIONS(4652), + [anon_sym_BANG] = ACTIONS(2305), + [anon_sym_TILDE] = ACTIONS(2305), + [anon_sym_DASH] = ACTIONS(2303), + [anon_sym_PLUS] = ACTIONS(2303), + [anon_sym_STAR] = ACTIONS(4336), + [anon_sym_AMP] = ACTIONS(4336), + [anon_sym___extension__] = ACTIONS(2307), + [anon_sym_COLON_COLON] = ACTIONS(2309), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(1956), + [anon_sym_not] = ACTIONS(2303), + [anon_sym_compl] = ACTIONS(2303), + [anon_sym_DASH_DASH] = ACTIONS(4352), + [anon_sym_PLUS_PLUS] = ACTIONS(4352), + [anon_sym_sizeof] = ACTIONS(2311), + [anon_sym___alignof__] = ACTIONS(1960), + [anon_sym___alignof] = ACTIONS(1960), + [anon_sym__alignof] = ACTIONS(1960), + [anon_sym_alignof] = ACTIONS(1960), + [anon_sym__Alignof] = ACTIONS(1960), + [anon_sym_offsetof] = ACTIONS(1962), + [anon_sym__Generic] = ACTIONS(1964), + [anon_sym_asm] = ACTIONS(1966), + [anon_sym___asm__] = ACTIONS(1966), + [anon_sym___asm] = ACTIONS(1966), + [sym_number_literal] = ACTIONS(2313), + [anon_sym_L_SQUOTE] = ACTIONS(2315), + [anon_sym_u_SQUOTE] = ACTIONS(2315), + [anon_sym_U_SQUOTE] = ACTIONS(2315), + [anon_sym_u8_SQUOTE] = ACTIONS(2315), + [anon_sym_SQUOTE] = ACTIONS(2315), + [anon_sym_L_DQUOTE] = ACTIONS(2317), + [anon_sym_u_DQUOTE] = ACTIONS(2317), + [anon_sym_U_DQUOTE] = ACTIONS(2317), + [anon_sym_u8_DQUOTE] = ACTIONS(2317), + [anon_sym_DQUOTE] = ACTIONS(2317), + [sym_true] = ACTIONS(1974), + [sym_false] = ACTIONS(1974), + [anon_sym_NULL] = ACTIONS(1976), + [anon_sym_nullptr] = ACTIONS(1976), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(2319), + [anon_sym_R_DQUOTE] = ACTIONS(2321), + [anon_sym_LR_DQUOTE] = ACTIONS(2321), + [anon_sym_uR_DQUOTE] = ACTIONS(2321), + [anon_sym_UR_DQUOTE] = ACTIONS(2321), + [anon_sym_u8R_DQUOTE] = ACTIONS(2321), + [anon_sym_co_await] = ACTIONS(2323), + [anon_sym_new] = ACTIONS(2014), + [anon_sym_requires] = ACTIONS(1988), + [sym_this] = ACTIONS(1974), + }, + [1424] = { + [sym_expression] = STATE(3019), + [sym__string] = STATE(3178), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(3178), + [sym_concatenated_string] = STATE(3178), + [sym_string_literal] = STATE(2317), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(2317), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), + [sym_identifier] = ACTIONS(2301), + [anon_sym_LPAREN2] = ACTIONS(4652), + [anon_sym_BANG] = ACTIONS(2305), + [anon_sym_TILDE] = ACTIONS(2305), + [anon_sym_DASH] = ACTIONS(2303), + [anon_sym_PLUS] = ACTIONS(2303), + [anon_sym_STAR] = ACTIONS(4336), + [anon_sym_AMP] = ACTIONS(4336), + [anon_sym___extension__] = ACTIONS(2307), + [anon_sym_COLON_COLON] = ACTIONS(2309), [anon_sym_LBRACK] = ACTIONS(2020), [sym_primitive_type] = ACTIONS(1956), - [anon_sym_not] = ACTIONS(2307), - [anon_sym_compl] = ACTIONS(2307), - [anon_sym_DASH_DASH] = ACTIONS(4396), - [anon_sym_PLUS_PLUS] = ACTIONS(4396), - [anon_sym_sizeof] = ACTIONS(2315), + [anon_sym_not] = ACTIONS(2303), + [anon_sym_compl] = ACTIONS(2303), + [anon_sym_DASH_DASH] = ACTIONS(4352), + [anon_sym_PLUS_PLUS] = ACTIONS(4352), + [anon_sym_sizeof] = ACTIONS(2311), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), [anon_sym__alignof] = ACTIONS(1960), @@ -217159,96 +222960,696 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(1966), [anon_sym___asm__] = ACTIONS(1966), [anon_sym___asm] = ACTIONS(1966), - [sym_number_literal] = ACTIONS(2317), - [anon_sym_L_SQUOTE] = ACTIONS(2319), - [anon_sym_u_SQUOTE] = ACTIONS(2319), - [anon_sym_U_SQUOTE] = ACTIONS(2319), - [anon_sym_u8_SQUOTE] = ACTIONS(2319), - [anon_sym_SQUOTE] = ACTIONS(2319), - [anon_sym_L_DQUOTE] = ACTIONS(2321), - [anon_sym_u_DQUOTE] = ACTIONS(2321), - [anon_sym_U_DQUOTE] = ACTIONS(2321), - [anon_sym_u8_DQUOTE] = ACTIONS(2321), - [anon_sym_DQUOTE] = ACTIONS(2321), + [sym_number_literal] = ACTIONS(2313), + [anon_sym_L_SQUOTE] = ACTIONS(2315), + [anon_sym_u_SQUOTE] = ACTIONS(2315), + [anon_sym_U_SQUOTE] = ACTIONS(2315), + [anon_sym_u8_SQUOTE] = ACTIONS(2315), + [anon_sym_SQUOTE] = ACTIONS(2315), + [anon_sym_L_DQUOTE] = ACTIONS(2317), + [anon_sym_u_DQUOTE] = ACTIONS(2317), + [anon_sym_U_DQUOTE] = ACTIONS(2317), + [anon_sym_u8_DQUOTE] = ACTIONS(2317), + [anon_sym_DQUOTE] = ACTIONS(2317), [sym_true] = ACTIONS(1974), [sym_false] = ACTIONS(1974), [anon_sym_NULL] = ACTIONS(1976), [anon_sym_nullptr] = ACTIONS(1976), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(2323), - [anon_sym_R_DQUOTE] = ACTIONS(2325), - [anon_sym_LR_DQUOTE] = ACTIONS(2325), - [anon_sym_uR_DQUOTE] = ACTIONS(2325), - [anon_sym_UR_DQUOTE] = ACTIONS(2325), - [anon_sym_u8R_DQUOTE] = ACTIONS(2325), - [anon_sym_co_await] = ACTIONS(2327), - [anon_sym_new] = ACTIONS(2014), - [anon_sym_requires] = ACTIONS(1988), - [sym_this] = ACTIONS(1974), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(2319), + [anon_sym_R_DQUOTE] = ACTIONS(2321), + [anon_sym_LR_DQUOTE] = ACTIONS(2321), + [anon_sym_uR_DQUOTE] = ACTIONS(2321), + [anon_sym_UR_DQUOTE] = ACTIONS(2321), + [anon_sym_u8R_DQUOTE] = ACTIONS(2321), + [anon_sym_co_await] = ACTIONS(2323), + [anon_sym_new] = ACTIONS(2014), + [anon_sym_requires] = ACTIONS(1988), + [sym_this] = ACTIONS(1974), + }, + [1425] = { + [sym_expression] = STATE(3619), + [sym__string] = STATE(3775), + [sym_conditional_expression] = STATE(3886), + [sym_assignment_expression] = STATE(3886), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(3886), + [sym_binary_expression] = STATE(3886), + [sym_update_expression] = STATE(3886), + [sym_cast_expression] = STATE(3886), + [sym_sizeof_expression] = STATE(3886), + [sym_alignof_expression] = STATE(3886), + [sym_offsetof_expression] = STATE(3886), + [sym_generic_expression] = STATE(3886), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(3886), + [sym_extension_expression] = STATE(3886), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(3886), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(3775), + [sym_concatenated_string] = STATE(3775), + [sym_string_literal] = STATE(2596), + [sym_null] = STATE(3886), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7756), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3886), + [sym_raw_string_literal] = STATE(2596), + [sym_co_await_expression] = STATE(3886), + [sym_new_expression] = STATE(3886), + [sym_delete_expression] = STATE(3886), + [sym_requires_clause] = STATE(3886), + [sym_requires_expression] = STATE(3886), + [sym_lambda_expression] = STATE(3886), + [sym_lambda_capture_specifier] = STATE(5492), + [sym_fold_expression] = STATE(3886), + [sym_parameter_pack_expansion] = STATE(3886), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(7756), + [sym_user_defined_literal] = STATE(3522), + [sym_identifier] = ACTIONS(2619), + [anon_sym_LPAREN2] = ACTIONS(1888), + [anon_sym_BANG] = ACTIONS(1890), + [anon_sym_TILDE] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1892), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(2621), + [anon_sym_COLON_COLON] = ACTIONS(1898), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2625), + [anon_sym_not] = ACTIONS(1892), + [anon_sym_compl] = ACTIONS(1892), + [anon_sym_DASH_DASH] = ACTIONS(1902), + [anon_sym_PLUS_PLUS] = ACTIONS(1902), + [anon_sym_sizeof] = ACTIONS(1904), + [anon_sym___alignof__] = ACTIONS(1906), + [anon_sym___alignof] = ACTIONS(1906), + [anon_sym__alignof] = ACTIONS(1906), + [anon_sym_alignof] = ACTIONS(1906), + [anon_sym__Alignof] = ACTIONS(1906), + [anon_sym_offsetof] = ACTIONS(1908), + [anon_sym__Generic] = ACTIONS(1910), + [anon_sym_asm] = ACTIONS(1912), + [anon_sym___asm__] = ACTIONS(1912), + [anon_sym___asm] = ACTIONS(1912), + [sym_number_literal] = ACTIONS(1914), + [anon_sym_L_SQUOTE] = ACTIONS(1916), + [anon_sym_u_SQUOTE] = ACTIONS(1916), + [anon_sym_U_SQUOTE] = ACTIONS(1916), + [anon_sym_u8_SQUOTE] = ACTIONS(1916), + [anon_sym_SQUOTE] = ACTIONS(1916), + [anon_sym_L_DQUOTE] = ACTIONS(1918), + [anon_sym_u_DQUOTE] = ACTIONS(1918), + [anon_sym_U_DQUOTE] = ACTIONS(1918), + [anon_sym_u8_DQUOTE] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1918), + [sym_true] = ACTIONS(1920), + [sym_false] = ACTIONS(1920), + [anon_sym_NULL] = ACTIONS(1922), + [anon_sym_nullptr] = ACTIONS(1922), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1924), + [anon_sym_R_DQUOTE] = ACTIONS(1926), + [anon_sym_LR_DQUOTE] = ACTIONS(1926), + [anon_sym_uR_DQUOTE] = ACTIONS(1926), + [anon_sym_UR_DQUOTE] = ACTIONS(1926), + [anon_sym_u8R_DQUOTE] = ACTIONS(1926), + [anon_sym_co_await] = ACTIONS(1928), + [anon_sym_new] = ACTIONS(1930), + [anon_sym_requires] = ACTIONS(1932), + [sym_this] = ACTIONS(1920), + }, + [1426] = { + [sym_expression] = STATE(4523), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [anon_sym___alignof__] = ACTIONS(107), + [anon_sym___alignof] = ACTIONS(107), + [anon_sym__alignof] = ACTIONS(107), + [anon_sym_alignof] = ACTIONS(107), + [anon_sym__Alignof] = ACTIONS(107), + [anon_sym_offsetof] = ACTIONS(109), + [anon_sym__Generic] = ACTIONS(111), + [anon_sym_asm] = ACTIONS(113), + [anon_sym___asm__] = ACTIONS(113), + [anon_sym___asm] = ACTIONS(113), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(117), + [anon_sym_u_SQUOTE] = ACTIONS(117), + [anon_sym_U_SQUOTE] = ACTIONS(117), + [anon_sym_u8_SQUOTE] = ACTIONS(117), + [anon_sym_SQUOTE] = ACTIONS(117), + [anon_sym_L_DQUOTE] = ACTIONS(119), + [anon_sym_u_DQUOTE] = ACTIONS(119), + [anon_sym_U_DQUOTE] = ACTIONS(119), + [anon_sym_u8_DQUOTE] = ACTIONS(119), + [anon_sym_DQUOTE] = ACTIONS(119), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(123), + [anon_sym_nullptr] = ACTIONS(123), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(145), + [anon_sym_R_DQUOTE] = ACTIONS(159), + [anon_sym_LR_DQUOTE] = ACTIONS(159), + [anon_sym_uR_DQUOTE] = ACTIONS(159), + [anon_sym_UR_DQUOTE] = ACTIONS(159), + [anon_sym_u8R_DQUOTE] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), + }, + [1427] = { + [sym_expression] = STATE(3642), + [sym__string] = STATE(3775), + [sym_conditional_expression] = STATE(3886), + [sym_assignment_expression] = STATE(3886), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(3886), + [sym_binary_expression] = STATE(3886), + [sym_update_expression] = STATE(3886), + [sym_cast_expression] = STATE(3886), + [sym_sizeof_expression] = STATE(3886), + [sym_alignof_expression] = STATE(3886), + [sym_offsetof_expression] = STATE(3886), + [sym_generic_expression] = STATE(3886), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(3886), + [sym_extension_expression] = STATE(3886), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(3886), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(3775), + [sym_concatenated_string] = STATE(3775), + [sym_string_literal] = STATE(2596), + [sym_null] = STATE(3886), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7756), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3886), + [sym_raw_string_literal] = STATE(2596), + [sym_co_await_expression] = STATE(3886), + [sym_new_expression] = STATE(3886), + [sym_delete_expression] = STATE(3886), + [sym_requires_clause] = STATE(3886), + [sym_requires_expression] = STATE(3886), + [sym_lambda_expression] = STATE(3886), + [sym_lambda_capture_specifier] = STATE(5492), + [sym_fold_expression] = STATE(3886), + [sym_parameter_pack_expansion] = STATE(3886), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(7756), + [sym_user_defined_literal] = STATE(3522), + [sym_identifier] = ACTIONS(2619), + [anon_sym_LPAREN2] = ACTIONS(1888), + [anon_sym_BANG] = ACTIONS(1890), + [anon_sym_TILDE] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1892), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(2621), + [anon_sym_COLON_COLON] = ACTIONS(1898), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2625), + [anon_sym_not] = ACTIONS(1892), + [anon_sym_compl] = ACTIONS(1892), + [anon_sym_DASH_DASH] = ACTIONS(1902), + [anon_sym_PLUS_PLUS] = ACTIONS(1902), + [anon_sym_sizeof] = ACTIONS(1904), + [anon_sym___alignof__] = ACTIONS(1906), + [anon_sym___alignof] = ACTIONS(1906), + [anon_sym__alignof] = ACTIONS(1906), + [anon_sym_alignof] = ACTIONS(1906), + [anon_sym__Alignof] = ACTIONS(1906), + [anon_sym_offsetof] = ACTIONS(1908), + [anon_sym__Generic] = ACTIONS(1910), + [anon_sym_asm] = ACTIONS(1912), + [anon_sym___asm__] = ACTIONS(1912), + [anon_sym___asm] = ACTIONS(1912), + [sym_number_literal] = ACTIONS(1914), + [anon_sym_L_SQUOTE] = ACTIONS(1916), + [anon_sym_u_SQUOTE] = ACTIONS(1916), + [anon_sym_U_SQUOTE] = ACTIONS(1916), + [anon_sym_u8_SQUOTE] = ACTIONS(1916), + [anon_sym_SQUOTE] = ACTIONS(1916), + [anon_sym_L_DQUOTE] = ACTIONS(1918), + [anon_sym_u_DQUOTE] = ACTIONS(1918), + [anon_sym_U_DQUOTE] = ACTIONS(1918), + [anon_sym_u8_DQUOTE] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1918), + [sym_true] = ACTIONS(1920), + [sym_false] = ACTIONS(1920), + [anon_sym_NULL] = ACTIONS(1922), + [anon_sym_nullptr] = ACTIONS(1922), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1924), + [anon_sym_R_DQUOTE] = ACTIONS(1926), + [anon_sym_LR_DQUOTE] = ACTIONS(1926), + [anon_sym_uR_DQUOTE] = ACTIONS(1926), + [anon_sym_UR_DQUOTE] = ACTIONS(1926), + [anon_sym_u8R_DQUOTE] = ACTIONS(1926), + [anon_sym_co_await] = ACTIONS(1928), + [anon_sym_new] = ACTIONS(1930), + [anon_sym_requires] = ACTIONS(1932), + [sym_this] = ACTIONS(1920), + }, + [1428] = { + [sym_expression] = STATE(3832), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [anon_sym___alignof__] = ACTIONS(107), + [anon_sym___alignof] = ACTIONS(107), + [anon_sym__alignof] = ACTIONS(107), + [anon_sym_alignof] = ACTIONS(107), + [anon_sym__Alignof] = ACTIONS(107), + [anon_sym_offsetof] = ACTIONS(109), + [anon_sym__Generic] = ACTIONS(111), + [anon_sym_asm] = ACTIONS(113), + [anon_sym___asm__] = ACTIONS(113), + [anon_sym___asm] = ACTIONS(113), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(117), + [anon_sym_u_SQUOTE] = ACTIONS(117), + [anon_sym_U_SQUOTE] = ACTIONS(117), + [anon_sym_u8_SQUOTE] = ACTIONS(117), + [anon_sym_SQUOTE] = ACTIONS(117), + [anon_sym_L_DQUOTE] = ACTIONS(119), + [anon_sym_u_DQUOTE] = ACTIONS(119), + [anon_sym_U_DQUOTE] = ACTIONS(119), + [anon_sym_u8_DQUOTE] = ACTIONS(119), + [anon_sym_DQUOTE] = ACTIONS(119), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(123), + [anon_sym_nullptr] = ACTIONS(123), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(145), + [anon_sym_R_DQUOTE] = ACTIONS(159), + [anon_sym_LR_DQUOTE] = ACTIONS(159), + [anon_sym_uR_DQUOTE] = ACTIONS(159), + [anon_sym_UR_DQUOTE] = ACTIONS(159), + [anon_sym_u8R_DQUOTE] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), + }, + [1429] = { + [sym_expression] = STATE(4723), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [anon_sym___alignof__] = ACTIONS(107), + [anon_sym___alignof] = ACTIONS(107), + [anon_sym__alignof] = ACTIONS(107), + [anon_sym_alignof] = ACTIONS(107), + [anon_sym__Alignof] = ACTIONS(107), + [anon_sym_offsetof] = ACTIONS(109), + [anon_sym__Generic] = ACTIONS(111), + [anon_sym_asm] = ACTIONS(113), + [anon_sym___asm__] = ACTIONS(113), + [anon_sym___asm] = ACTIONS(113), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(117), + [anon_sym_u_SQUOTE] = ACTIONS(117), + [anon_sym_U_SQUOTE] = ACTIONS(117), + [anon_sym_u8_SQUOTE] = ACTIONS(117), + [anon_sym_SQUOTE] = ACTIONS(117), + [anon_sym_L_DQUOTE] = ACTIONS(119), + [anon_sym_u_DQUOTE] = ACTIONS(119), + [anon_sym_U_DQUOTE] = ACTIONS(119), + [anon_sym_u8_DQUOTE] = ACTIONS(119), + [anon_sym_DQUOTE] = ACTIONS(119), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(123), + [anon_sym_nullptr] = ACTIONS(123), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(145), + [anon_sym_R_DQUOTE] = ACTIONS(159), + [anon_sym_LR_DQUOTE] = ACTIONS(159), + [anon_sym_uR_DQUOTE] = ACTIONS(159), + [anon_sym_UR_DQUOTE] = ACTIONS(159), + [anon_sym_u8R_DQUOTE] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), + }, + [1430] = { + [sym_expression] = STATE(4795), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3728), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3728), + [sym_call_expression] = STATE(3728), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3728), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3728), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3728), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3728), + [sym_identifier] = ACTIONS(3883), + [anon_sym_LPAREN2] = ACTIONS(3901), + [anon_sym_BANG] = ACTIONS(3887), + [anon_sym_TILDE] = ACTIONS(3887), + [anon_sym_DASH] = ACTIONS(3885), + [anon_sym_PLUS] = ACTIONS(3885), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(3889), + [anon_sym_COLON_COLON] = ACTIONS(3891), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3885), + [anon_sym_compl] = ACTIONS(3885), + [anon_sym_DASH_DASH] = ACTIONS(3905), + [anon_sym_PLUS_PLUS] = ACTIONS(3905), + [anon_sym_sizeof] = ACTIONS(3893), + [anon_sym___alignof__] = ACTIONS(107), + [anon_sym___alignof] = ACTIONS(107), + [anon_sym__alignof] = ACTIONS(107), + [anon_sym_alignof] = ACTIONS(107), + [anon_sym__Alignof] = ACTIONS(107), + [anon_sym_offsetof] = ACTIONS(109), + [anon_sym__Generic] = ACTIONS(111), + [anon_sym_asm] = ACTIONS(113), + [anon_sym___asm__] = ACTIONS(113), + [anon_sym___asm] = ACTIONS(113), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(117), + [anon_sym_u_SQUOTE] = ACTIONS(117), + [anon_sym_U_SQUOTE] = ACTIONS(117), + [anon_sym_u8_SQUOTE] = ACTIONS(117), + [anon_sym_SQUOTE] = ACTIONS(117), + [anon_sym_L_DQUOTE] = ACTIONS(119), + [anon_sym_u_DQUOTE] = ACTIONS(119), + [anon_sym_U_DQUOTE] = ACTIONS(119), + [anon_sym_u8_DQUOTE] = ACTIONS(119), + [anon_sym_DQUOTE] = ACTIONS(119), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(123), + [anon_sym_nullptr] = ACTIONS(123), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3895), + [anon_sym_R_DQUOTE] = ACTIONS(159), + [anon_sym_LR_DQUOTE] = ACTIONS(159), + [anon_sym_uR_DQUOTE] = ACTIONS(159), + [anon_sym_UR_DQUOTE] = ACTIONS(159), + [anon_sym_u8R_DQUOTE] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(3897), + [anon_sym_new] = ACTIONS(3873), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), }, - [1377] = { - [sym_expression] = STATE(3038), - [sym__string] = STATE(3181), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(3181), - [sym_concatenated_string] = STATE(3181), - [sym_string_literal] = STATE(2297), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(2297), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), - [sym_identifier] = ACTIONS(2305), - [anon_sym_LPAREN2] = ACTIONS(4691), - [anon_sym_BANG] = ACTIONS(2309), - [anon_sym_TILDE] = ACTIONS(2309), - [anon_sym_DASH] = ACTIONS(2307), - [anon_sym_PLUS] = ACTIONS(2307), - [anon_sym_STAR] = ACTIONS(4382), - [anon_sym_AMP] = ACTIONS(4382), - [anon_sym___extension__] = ACTIONS(2311), - [anon_sym_COLON_COLON] = ACTIONS(2313), + [1431] = { + [sym_expression] = STATE(2838), + [sym__string] = STATE(2887), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(2887), + [sym_concatenated_string] = STATE(2887), + [sym_string_literal] = STATE(1947), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(1947), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), + [sym_identifier] = ACTIONS(1990), + [anon_sym_LPAREN2] = ACTIONS(4681), + [anon_sym_BANG] = ACTIONS(1948), + [anon_sym_TILDE] = ACTIONS(1948), + [anon_sym_DASH] = ACTIONS(1946), + [anon_sym_PLUS] = ACTIONS(1946), + [anon_sym_STAR] = ACTIONS(4346), + [anon_sym_AMP] = ACTIONS(4346), + [anon_sym___extension__] = ACTIONS(1950), + [anon_sym_COLON_COLON] = ACTIONS(1952), [anon_sym_LBRACK] = ACTIONS(2020), [sym_primitive_type] = ACTIONS(1956), - [anon_sym_not] = ACTIONS(2307), - [anon_sym_compl] = ACTIONS(2307), - [anon_sym_DASH_DASH] = ACTIONS(4396), - [anon_sym_PLUS_PLUS] = ACTIONS(4396), - [anon_sym_sizeof] = ACTIONS(2315), + [anon_sym_not] = ACTIONS(1946), + [anon_sym_compl] = ACTIONS(1946), + [anon_sym_DASH_DASH] = ACTIONS(4348), + [anon_sym_PLUS_PLUS] = ACTIONS(4348), + [anon_sym_sizeof] = ACTIONS(1958), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), [anon_sym__alignof] = ACTIONS(1960), @@ -217259,595 +223660,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(1966), [anon_sym___asm__] = ACTIONS(1966), [anon_sym___asm] = ACTIONS(1966), - [sym_number_literal] = ACTIONS(2317), - [anon_sym_L_SQUOTE] = ACTIONS(2319), - [anon_sym_u_SQUOTE] = ACTIONS(2319), - [anon_sym_U_SQUOTE] = ACTIONS(2319), - [anon_sym_u8_SQUOTE] = ACTIONS(2319), - [anon_sym_SQUOTE] = ACTIONS(2319), - [anon_sym_L_DQUOTE] = ACTIONS(2321), - [anon_sym_u_DQUOTE] = ACTIONS(2321), - [anon_sym_U_DQUOTE] = ACTIONS(2321), - [anon_sym_u8_DQUOTE] = ACTIONS(2321), - [anon_sym_DQUOTE] = ACTIONS(2321), + [sym_number_literal] = ACTIONS(1968), + [anon_sym_L_SQUOTE] = ACTIONS(1970), + [anon_sym_u_SQUOTE] = ACTIONS(1970), + [anon_sym_U_SQUOTE] = ACTIONS(1970), + [anon_sym_u8_SQUOTE] = ACTIONS(1970), + [anon_sym_SQUOTE] = ACTIONS(1970), + [anon_sym_L_DQUOTE] = ACTIONS(1972), + [anon_sym_u_DQUOTE] = ACTIONS(1972), + [anon_sym_U_DQUOTE] = ACTIONS(1972), + [anon_sym_u8_DQUOTE] = ACTIONS(1972), + [anon_sym_DQUOTE] = ACTIONS(1972), [sym_true] = ACTIONS(1974), [sym_false] = ACTIONS(1974), [anon_sym_NULL] = ACTIONS(1976), [anon_sym_nullptr] = ACTIONS(1976), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(2323), - [anon_sym_R_DQUOTE] = ACTIONS(2325), - [anon_sym_LR_DQUOTE] = ACTIONS(2325), - [anon_sym_uR_DQUOTE] = ACTIONS(2325), - [anon_sym_UR_DQUOTE] = ACTIONS(2325), - [anon_sym_u8R_DQUOTE] = ACTIONS(2325), - [anon_sym_co_await] = ACTIONS(2327), - [anon_sym_new] = ACTIONS(2014), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1980), + [anon_sym_R_DQUOTE] = ACTIONS(1982), + [anon_sym_LR_DQUOTE] = ACTIONS(1982), + [anon_sym_uR_DQUOTE] = ACTIONS(1982), + [anon_sym_UR_DQUOTE] = ACTIONS(1982), + [anon_sym_u8R_DQUOTE] = ACTIONS(1982), + [anon_sym_co_await] = ACTIONS(1984), + [anon_sym_new] = ACTIONS(1986), [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [1378] = { - [sym_expression] = STATE(3646), - [sym__string] = STATE(3714), - [sym_conditional_expression] = STATE(3908), - [sym_assignment_expression] = STATE(3908), - [sym_pointer_expression] = STATE(3506), - [sym_unary_expression] = STATE(3908), - [sym_binary_expression] = STATE(3908), - [sym_update_expression] = STATE(3908), - [sym_cast_expression] = STATE(3908), - [sym_sizeof_expression] = STATE(3908), - [sym_alignof_expression] = STATE(3908), - [sym_offsetof_expression] = STATE(3908), - [sym_generic_expression] = STATE(3908), - [sym_subscript_expression] = STATE(3506), - [sym_call_expression] = STATE(3506), - [sym_gnu_asm_expression] = STATE(3908), - [sym_extension_expression] = STATE(3908), - [sym_field_expression] = STATE(3506), - [sym_compound_literal_expression] = STATE(3908), - [sym_parenthesized_expression] = STATE(3506), - [sym_char_literal] = STATE(3714), - [sym_concatenated_string] = STATE(3714), - [sym_string_literal] = STATE(2566), - [sym_null] = STATE(3908), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7868), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3908), - [sym_raw_string_literal] = STATE(2566), - [sym_co_await_expression] = STATE(3908), - [sym_new_expression] = STATE(3908), - [sym_delete_expression] = STATE(3908), - [sym_requires_clause] = STATE(3908), - [sym_requires_expression] = STATE(3908), - [sym_lambda_expression] = STATE(3908), - [sym_lambda_capture_specifier] = STATE(5415), - [sym_fold_expression] = STATE(3908), - [sym_parameter_pack_expansion] = STATE(3908), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3506), - [sym_qualified_type_identifier] = STATE(7868), - [sym_user_defined_literal] = STATE(3506), - [sym_identifier] = ACTIONS(2605), - [anon_sym_LPAREN2] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1870), - [anon_sym_TILDE] = ACTIONS(1870), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_PLUS] = ACTIONS(1872), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(2607), - [anon_sym_COLON_COLON] = ACTIONS(1880), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2611), - [anon_sym_not] = ACTIONS(1872), - [anon_sym_compl] = ACTIONS(1872), - [anon_sym_DASH_DASH] = ACTIONS(1892), - [anon_sym_PLUS_PLUS] = ACTIONS(1892), - [anon_sym_sizeof] = ACTIONS(1894), - [anon_sym___alignof__] = ACTIONS(1896), - [anon_sym___alignof] = ACTIONS(1896), - [anon_sym__alignof] = ACTIONS(1896), - [anon_sym_alignof] = ACTIONS(1896), - [anon_sym__Alignof] = ACTIONS(1896), - [anon_sym_offsetof] = ACTIONS(1898), - [anon_sym__Generic] = ACTIONS(1900), - [anon_sym_asm] = ACTIONS(1902), - [anon_sym___asm__] = ACTIONS(1902), - [anon_sym___asm] = ACTIONS(1902), - [sym_number_literal] = ACTIONS(1904), - [anon_sym_L_SQUOTE] = ACTIONS(1906), - [anon_sym_u_SQUOTE] = ACTIONS(1906), - [anon_sym_U_SQUOTE] = ACTIONS(1906), - [anon_sym_u8_SQUOTE] = ACTIONS(1906), - [anon_sym_SQUOTE] = ACTIONS(1906), - [anon_sym_L_DQUOTE] = ACTIONS(1908), - [anon_sym_u_DQUOTE] = ACTIONS(1908), - [anon_sym_U_DQUOTE] = ACTIONS(1908), - [anon_sym_u8_DQUOTE] = ACTIONS(1908), - [anon_sym_DQUOTE] = ACTIONS(1908), - [sym_true] = ACTIONS(1910), - [sym_false] = ACTIONS(1910), - [anon_sym_NULL] = ACTIONS(1912), - [anon_sym_nullptr] = ACTIONS(1912), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1916), - [anon_sym_R_DQUOTE] = ACTIONS(1918), - [anon_sym_LR_DQUOTE] = ACTIONS(1918), - [anon_sym_uR_DQUOTE] = ACTIONS(1918), - [anon_sym_UR_DQUOTE] = ACTIONS(1918), - [anon_sym_u8R_DQUOTE] = ACTIONS(1918), - [anon_sym_co_await] = ACTIONS(1920), - [anon_sym_new] = ACTIONS(1922), - [anon_sym_requires] = ACTIONS(1924), - [sym_this] = ACTIONS(1910), - }, - [1379] = { - [sym_expression] = STATE(3662), - [sym__string] = STATE(3714), - [sym_conditional_expression] = STATE(3908), - [sym_assignment_expression] = STATE(3908), - [sym_pointer_expression] = STATE(3506), - [sym_unary_expression] = STATE(3908), - [sym_binary_expression] = STATE(3908), - [sym_update_expression] = STATE(3908), - [sym_cast_expression] = STATE(3908), - [sym_sizeof_expression] = STATE(3908), - [sym_alignof_expression] = STATE(3908), - [sym_offsetof_expression] = STATE(3908), - [sym_generic_expression] = STATE(3908), - [sym_subscript_expression] = STATE(3506), - [sym_call_expression] = STATE(3506), - [sym_gnu_asm_expression] = STATE(3908), - [sym_extension_expression] = STATE(3908), - [sym_field_expression] = STATE(3506), - [sym_compound_literal_expression] = STATE(3908), - [sym_parenthesized_expression] = STATE(3506), - [sym_char_literal] = STATE(3714), - [sym_concatenated_string] = STATE(3714), - [sym_string_literal] = STATE(2566), - [sym_null] = STATE(3908), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7868), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3908), - [sym_raw_string_literal] = STATE(2566), - [sym_co_await_expression] = STATE(3908), - [sym_new_expression] = STATE(3908), - [sym_delete_expression] = STATE(3908), - [sym_requires_clause] = STATE(3908), - [sym_requires_expression] = STATE(3908), - [sym_lambda_expression] = STATE(3908), - [sym_lambda_capture_specifier] = STATE(5415), - [sym_fold_expression] = STATE(3908), - [sym_parameter_pack_expansion] = STATE(3908), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3506), - [sym_qualified_type_identifier] = STATE(7868), - [sym_user_defined_literal] = STATE(3506), - [sym_identifier] = ACTIONS(2605), - [anon_sym_LPAREN2] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1870), - [anon_sym_TILDE] = ACTIONS(1870), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_PLUS] = ACTIONS(1872), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(2607), - [anon_sym_COLON_COLON] = ACTIONS(1880), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2611), - [anon_sym_not] = ACTIONS(1872), - [anon_sym_compl] = ACTIONS(1872), - [anon_sym_DASH_DASH] = ACTIONS(1892), - [anon_sym_PLUS_PLUS] = ACTIONS(1892), - [anon_sym_sizeof] = ACTIONS(1894), - [anon_sym___alignof__] = ACTIONS(1896), - [anon_sym___alignof] = ACTIONS(1896), - [anon_sym__alignof] = ACTIONS(1896), - [anon_sym_alignof] = ACTIONS(1896), - [anon_sym__Alignof] = ACTIONS(1896), - [anon_sym_offsetof] = ACTIONS(1898), - [anon_sym__Generic] = ACTIONS(1900), - [anon_sym_asm] = ACTIONS(1902), - [anon_sym___asm__] = ACTIONS(1902), - [anon_sym___asm] = ACTIONS(1902), - [sym_number_literal] = ACTIONS(1904), - [anon_sym_L_SQUOTE] = ACTIONS(1906), - [anon_sym_u_SQUOTE] = ACTIONS(1906), - [anon_sym_U_SQUOTE] = ACTIONS(1906), - [anon_sym_u8_SQUOTE] = ACTIONS(1906), - [anon_sym_SQUOTE] = ACTIONS(1906), - [anon_sym_L_DQUOTE] = ACTIONS(1908), - [anon_sym_u_DQUOTE] = ACTIONS(1908), - [anon_sym_U_DQUOTE] = ACTIONS(1908), - [anon_sym_u8_DQUOTE] = ACTIONS(1908), - [anon_sym_DQUOTE] = ACTIONS(1908), - [sym_true] = ACTIONS(1910), - [sym_false] = ACTIONS(1910), - [anon_sym_NULL] = ACTIONS(1912), - [anon_sym_nullptr] = ACTIONS(1912), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1916), - [anon_sym_R_DQUOTE] = ACTIONS(1918), - [anon_sym_LR_DQUOTE] = ACTIONS(1918), - [anon_sym_uR_DQUOTE] = ACTIONS(1918), - [anon_sym_UR_DQUOTE] = ACTIONS(1918), - [anon_sym_u8R_DQUOTE] = ACTIONS(1918), - [anon_sym_co_await] = ACTIONS(1920), - [anon_sym_new] = ACTIONS(1922), - [anon_sym_requires] = ACTIONS(1924), - [sym_this] = ACTIONS(1910), - }, - [1380] = { - [sym_expression] = STATE(4486), - [sym__string] = STATE(4738), - [sym_conditional_expression] = STATE(4829), - [sym_assignment_expression] = STATE(4829), - [sym_pointer_expression] = STATE(3602), - [sym_unary_expression] = STATE(4829), - [sym_binary_expression] = STATE(4829), - [sym_update_expression] = STATE(4829), - [sym_cast_expression] = STATE(4829), - [sym_sizeof_expression] = STATE(4829), - [sym_alignof_expression] = STATE(4829), - [sym_offsetof_expression] = STATE(4829), - [sym_generic_expression] = STATE(4829), - [sym_subscript_expression] = STATE(3602), - [sym_call_expression] = STATE(3602), - [sym_gnu_asm_expression] = STATE(4829), - [sym_extension_expression] = STATE(4829), - [sym_field_expression] = STATE(3602), - [sym_compound_literal_expression] = STATE(4829), - [sym_parenthesized_expression] = STATE(3602), - [sym_char_literal] = STATE(4738), - [sym_concatenated_string] = STATE(4738), - [sym_string_literal] = STATE(3759), - [sym_null] = STATE(4829), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7804), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(4829), - [sym_raw_string_literal] = STATE(3759), - [sym_co_await_expression] = STATE(4829), - [sym_new_expression] = STATE(4829), - [sym_delete_expression] = STATE(4829), - [sym_requires_clause] = STATE(4829), - [sym_requires_expression] = STATE(4829), - [sym_lambda_expression] = STATE(4829), - [sym_lambda_capture_specifier] = STATE(5401), - [sym_fold_expression] = STATE(4829), - [sym_parameter_pack_expansion] = STATE(4829), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5773), - [sym_qualified_identifier] = STATE(3602), - [sym_qualified_type_identifier] = STATE(7804), - [sym_user_defined_literal] = STATE(3602), - [sym_identifier] = ACTIONS(3883), - [anon_sym_LPAREN2] = ACTIONS(3118), - [anon_sym_BANG] = ACTIONS(3120), - [anon_sym_TILDE] = ACTIONS(3120), - [anon_sym_DASH] = ACTIONS(3122), - [anon_sym_PLUS] = ACTIONS(3122), - [anon_sym_STAR] = ACTIONS(3124), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym___extension__] = ACTIONS(3885), - [anon_sym_COLON_COLON] = ACTIONS(3128), - [anon_sym_LBRACK] = ACTIONS(4935), - [sym_primitive_type] = ACTIONS(3889), - [anon_sym_not] = ACTIONS(3122), - [anon_sym_compl] = ACTIONS(3122), - [anon_sym_DASH_DASH] = ACTIONS(3142), - [anon_sym_PLUS_PLUS] = ACTIONS(3142), - [anon_sym_sizeof] = ACTIONS(3144), - [anon_sym___alignof__] = ACTIONS(3146), - [anon_sym___alignof] = ACTIONS(3146), - [anon_sym__alignof] = ACTIONS(3146), - [anon_sym_alignof] = ACTIONS(3146), - [anon_sym__Alignof] = ACTIONS(3146), - [anon_sym_offsetof] = ACTIONS(3148), - [anon_sym__Generic] = ACTIONS(3150), - [anon_sym_asm] = ACTIONS(3152), - [anon_sym___asm__] = ACTIONS(3152), - [anon_sym___asm] = ACTIONS(3152), - [sym_number_literal] = ACTIONS(3154), - [anon_sym_L_SQUOTE] = ACTIONS(3156), - [anon_sym_u_SQUOTE] = ACTIONS(3156), - [anon_sym_U_SQUOTE] = ACTIONS(3156), - [anon_sym_u8_SQUOTE] = ACTIONS(3156), - [anon_sym_SQUOTE] = ACTIONS(3156), - [anon_sym_L_DQUOTE] = ACTIONS(3158), - [anon_sym_u_DQUOTE] = ACTIONS(3158), - [anon_sym_U_DQUOTE] = ACTIONS(3158), - [anon_sym_u8_DQUOTE] = ACTIONS(3158), - [anon_sym_DQUOTE] = ACTIONS(3158), - [sym_true] = ACTIONS(3160), - [sym_false] = ACTIONS(3160), - [anon_sym_NULL] = ACTIONS(3162), - [anon_sym_nullptr] = ACTIONS(3162), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3172), - [anon_sym_R_DQUOTE] = ACTIONS(3174), - [anon_sym_LR_DQUOTE] = ACTIONS(3174), - [anon_sym_uR_DQUOTE] = ACTIONS(3174), - [anon_sym_UR_DQUOTE] = ACTIONS(3174), - [anon_sym_u8R_DQUOTE] = ACTIONS(3174), - [anon_sym_co_await] = ACTIONS(3176), - [anon_sym_new] = ACTIONS(3178), - [anon_sym_requires] = ACTIONS(3180), - [sym_this] = ACTIONS(3160), - }, - [1381] = { - [sym_expression] = STATE(4420), - [sym__string] = STATE(4738), - [sym_conditional_expression] = STATE(4829), - [sym_assignment_expression] = STATE(4829), - [sym_pointer_expression] = STATE(3602), - [sym_unary_expression] = STATE(4829), - [sym_binary_expression] = STATE(4829), - [sym_update_expression] = STATE(4829), - [sym_cast_expression] = STATE(4829), - [sym_sizeof_expression] = STATE(4829), - [sym_alignof_expression] = STATE(4829), - [sym_offsetof_expression] = STATE(4829), - [sym_generic_expression] = STATE(4829), - [sym_subscript_expression] = STATE(3602), - [sym_call_expression] = STATE(3602), - [sym_gnu_asm_expression] = STATE(4829), - [sym_extension_expression] = STATE(4829), - [sym_field_expression] = STATE(3602), - [sym_compound_literal_expression] = STATE(4829), - [sym_parenthesized_expression] = STATE(3602), - [sym_char_literal] = STATE(4738), - [sym_concatenated_string] = STATE(4738), - [sym_string_literal] = STATE(3759), - [sym_null] = STATE(4829), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7804), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(4829), - [sym_raw_string_literal] = STATE(3759), - [sym_co_await_expression] = STATE(4829), - [sym_new_expression] = STATE(4829), - [sym_delete_expression] = STATE(4829), - [sym_requires_clause] = STATE(4829), - [sym_requires_expression] = STATE(4829), - [sym_lambda_expression] = STATE(4829), - [sym_lambda_capture_specifier] = STATE(5401), - [sym_fold_expression] = STATE(4829), - [sym_parameter_pack_expansion] = STATE(4829), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5773), - [sym_qualified_identifier] = STATE(3602), - [sym_qualified_type_identifier] = STATE(7804), - [sym_user_defined_literal] = STATE(3602), - [sym_identifier] = ACTIONS(3883), - [anon_sym_LPAREN2] = ACTIONS(3118), - [anon_sym_BANG] = ACTIONS(3120), - [anon_sym_TILDE] = ACTIONS(3120), - [anon_sym_DASH] = ACTIONS(3122), - [anon_sym_PLUS] = ACTIONS(3122), - [anon_sym_STAR] = ACTIONS(3124), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym___extension__] = ACTIONS(3885), - [anon_sym_COLON_COLON] = ACTIONS(3128), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(3889), - [anon_sym_not] = ACTIONS(3122), - [anon_sym_compl] = ACTIONS(3122), - [anon_sym_DASH_DASH] = ACTIONS(3142), - [anon_sym_PLUS_PLUS] = ACTIONS(3142), - [anon_sym_sizeof] = ACTIONS(3144), - [anon_sym___alignof__] = ACTIONS(3146), - [anon_sym___alignof] = ACTIONS(3146), - [anon_sym__alignof] = ACTIONS(3146), - [anon_sym_alignof] = ACTIONS(3146), - [anon_sym__Alignof] = ACTIONS(3146), - [anon_sym_offsetof] = ACTIONS(3148), - [anon_sym__Generic] = ACTIONS(3150), - [anon_sym_asm] = ACTIONS(3152), - [anon_sym___asm__] = ACTIONS(3152), - [anon_sym___asm] = ACTIONS(3152), - [sym_number_literal] = ACTIONS(3154), - [anon_sym_L_SQUOTE] = ACTIONS(3156), - [anon_sym_u_SQUOTE] = ACTIONS(3156), - [anon_sym_U_SQUOTE] = ACTIONS(3156), - [anon_sym_u8_SQUOTE] = ACTIONS(3156), - [anon_sym_SQUOTE] = ACTIONS(3156), - [anon_sym_L_DQUOTE] = ACTIONS(3158), - [anon_sym_u_DQUOTE] = ACTIONS(3158), - [anon_sym_U_DQUOTE] = ACTIONS(3158), - [anon_sym_u8_DQUOTE] = ACTIONS(3158), - [anon_sym_DQUOTE] = ACTIONS(3158), - [sym_true] = ACTIONS(3160), - [sym_false] = ACTIONS(3160), - [anon_sym_NULL] = ACTIONS(3162), - [anon_sym_nullptr] = ACTIONS(3162), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3172), - [anon_sym_R_DQUOTE] = ACTIONS(3174), - [anon_sym_LR_DQUOTE] = ACTIONS(3174), - [anon_sym_uR_DQUOTE] = ACTIONS(3174), - [anon_sym_UR_DQUOTE] = ACTIONS(3174), - [anon_sym_u8R_DQUOTE] = ACTIONS(3174), - [anon_sym_co_await] = ACTIONS(3176), - [anon_sym_new] = ACTIONS(3178), - [anon_sym_requires] = ACTIONS(3180), - [sym_this] = ACTIONS(3160), - }, - [1382] = { - [sym_expression] = STATE(3647), - [sym__string] = STATE(3714), - [sym_conditional_expression] = STATE(3908), - [sym_assignment_expression] = STATE(3908), - [sym_pointer_expression] = STATE(3506), - [sym_unary_expression] = STATE(3908), - [sym_binary_expression] = STATE(3908), - [sym_update_expression] = STATE(3908), - [sym_cast_expression] = STATE(3908), - [sym_sizeof_expression] = STATE(3908), - [sym_alignof_expression] = STATE(3908), - [sym_offsetof_expression] = STATE(3908), - [sym_generic_expression] = STATE(3908), - [sym_subscript_expression] = STATE(3506), - [sym_call_expression] = STATE(3506), - [sym_gnu_asm_expression] = STATE(3908), - [sym_extension_expression] = STATE(3908), - [sym_field_expression] = STATE(3506), - [sym_compound_literal_expression] = STATE(3908), - [sym_parenthesized_expression] = STATE(3506), - [sym_char_literal] = STATE(3714), - [sym_concatenated_string] = STATE(3714), - [sym_string_literal] = STATE(2566), - [sym_null] = STATE(3908), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7868), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3908), - [sym_raw_string_literal] = STATE(2566), - [sym_co_await_expression] = STATE(3908), - [sym_new_expression] = STATE(3908), - [sym_delete_expression] = STATE(3908), - [sym_requires_clause] = STATE(3908), - [sym_requires_expression] = STATE(3908), - [sym_lambda_expression] = STATE(3908), - [sym_lambda_capture_specifier] = STATE(5415), - [sym_fold_expression] = STATE(3908), - [sym_parameter_pack_expansion] = STATE(3908), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3506), - [sym_qualified_type_identifier] = STATE(7868), - [sym_user_defined_literal] = STATE(3506), - [sym_identifier] = ACTIONS(2605), - [anon_sym_LPAREN2] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1870), - [anon_sym_TILDE] = ACTIONS(1870), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_PLUS] = ACTIONS(1872), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(2607), - [anon_sym_COLON_COLON] = ACTIONS(1880), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2611), - [anon_sym_not] = ACTIONS(1872), - [anon_sym_compl] = ACTIONS(1872), - [anon_sym_DASH_DASH] = ACTIONS(1892), - [anon_sym_PLUS_PLUS] = ACTIONS(1892), - [anon_sym_sizeof] = ACTIONS(1894), - [anon_sym___alignof__] = ACTIONS(1896), - [anon_sym___alignof] = ACTIONS(1896), - [anon_sym__alignof] = ACTIONS(1896), - [anon_sym_alignof] = ACTIONS(1896), - [anon_sym__Alignof] = ACTIONS(1896), - [anon_sym_offsetof] = ACTIONS(1898), - [anon_sym__Generic] = ACTIONS(1900), - [anon_sym_asm] = ACTIONS(1902), - [anon_sym___asm__] = ACTIONS(1902), - [anon_sym___asm] = ACTIONS(1902), - [sym_number_literal] = ACTIONS(1904), - [anon_sym_L_SQUOTE] = ACTIONS(1906), - [anon_sym_u_SQUOTE] = ACTIONS(1906), - [anon_sym_U_SQUOTE] = ACTIONS(1906), - [anon_sym_u8_SQUOTE] = ACTIONS(1906), - [anon_sym_SQUOTE] = ACTIONS(1906), - [anon_sym_L_DQUOTE] = ACTIONS(1908), - [anon_sym_u_DQUOTE] = ACTIONS(1908), - [anon_sym_U_DQUOTE] = ACTIONS(1908), - [anon_sym_u8_DQUOTE] = ACTIONS(1908), - [anon_sym_DQUOTE] = ACTIONS(1908), - [sym_true] = ACTIONS(1910), - [sym_false] = ACTIONS(1910), - [anon_sym_NULL] = ACTIONS(1912), - [anon_sym_nullptr] = ACTIONS(1912), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1916), - [anon_sym_R_DQUOTE] = ACTIONS(1918), - [anon_sym_LR_DQUOTE] = ACTIONS(1918), - [anon_sym_uR_DQUOTE] = ACTIONS(1918), - [anon_sym_UR_DQUOTE] = ACTIONS(1918), - [anon_sym_u8R_DQUOTE] = ACTIONS(1918), - [anon_sym_co_await] = ACTIONS(1920), - [anon_sym_new] = ACTIONS(1922), - [anon_sym_requires] = ACTIONS(1924), - [sym_this] = ACTIONS(1910), - }, - [1383] = { - [sym_expression] = STATE(2772), - [sym__string] = STATE(2870), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(2870), - [sym_concatenated_string] = STATE(2870), - [sym_string_literal] = STATE(1942), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(1942), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), + [1432] = { + [sym_expression] = STATE(2866), + [sym__string] = STATE(2887), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(2887), + [sym_concatenated_string] = STATE(2887), + [sym_string_literal] = STATE(1947), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(1947), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), [sym_identifier] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(4668), + [anon_sym_LPAREN2] = ACTIONS(4681), [anon_sym_BANG] = ACTIONS(1948), [anon_sym_TILDE] = ACTIONS(1948), [anon_sym_DASH] = ACTIONS(1946), [anon_sym_PLUS] = ACTIONS(1946), - [anon_sym_STAR] = ACTIONS(4336), - [anon_sym_AMP] = ACTIONS(4336), + [anon_sym_STAR] = ACTIONS(4346), + [anon_sym_AMP] = ACTIONS(4346), [anon_sym___extension__] = ACTIONS(1950), [anon_sym_COLON_COLON] = ACTIONS(1952), [anon_sym_LBRACK] = ACTIONS(2020), [sym_primitive_type] = ACTIONS(1956), [anon_sym_not] = ACTIONS(1946), [anon_sym_compl] = ACTIONS(1946), - [anon_sym_DASH_DASH] = ACTIONS(4417), - [anon_sym_PLUS_PLUS] = ACTIONS(4417), + [anon_sym_DASH_DASH] = ACTIONS(4348), + [anon_sym_PLUS_PLUS] = ACTIONS(4348), [anon_sym_sizeof] = ACTIONS(1958), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), @@ -217876,7 +223777,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1976), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(1980), [anon_sym_R_DQUOTE] = ACTIONS(1982), [anon_sym_LR_DQUOTE] = ACTIONS(1982), @@ -217888,66 +223789,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [1384] = { - [sym_expression] = STATE(2817), - [sym__string] = STATE(2870), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(2870), - [sym_concatenated_string] = STATE(2870), - [sym_string_literal] = STATE(1942), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(1942), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), + [1433] = { + [sym_expression] = STATE(2435), + [sym__string] = STATE(2887), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(2887), + [sym_concatenated_string] = STATE(2887), + [sym_string_literal] = STATE(1947), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(1947), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), [sym_identifier] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(4668), + [anon_sym_LPAREN2] = ACTIONS(4681), [anon_sym_BANG] = ACTIONS(1948), [anon_sym_TILDE] = ACTIONS(1948), [anon_sym_DASH] = ACTIONS(1946), [anon_sym_PLUS] = ACTIONS(1946), - [anon_sym_STAR] = ACTIONS(4336), - [anon_sym_AMP] = ACTIONS(4336), + [anon_sym_STAR] = ACTIONS(4346), + [anon_sym_AMP] = ACTIONS(4346), [anon_sym___extension__] = ACTIONS(1950), [anon_sym_COLON_COLON] = ACTIONS(1952), [anon_sym_LBRACK] = ACTIONS(2020), [sym_primitive_type] = ACTIONS(1956), [anon_sym_not] = ACTIONS(1946), [anon_sym_compl] = ACTIONS(1946), - [anon_sym_DASH_DASH] = ACTIONS(4417), - [anon_sym_PLUS_PLUS] = ACTIONS(4417), + [anon_sym_DASH_DASH] = ACTIONS(4348), + [anon_sym_PLUS_PLUS] = ACTIONS(4348), [anon_sym_sizeof] = ACTIONS(1958), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), @@ -217976,7 +223877,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1976), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(1980), [anon_sym_R_DQUOTE] = ACTIONS(1982), [anon_sym_LR_DQUOTE] = ACTIONS(1982), @@ -217988,66 +223889,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [1385] = { - [sym_expression] = STATE(2384), - [sym__string] = STATE(2870), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(2870), - [sym_concatenated_string] = STATE(2870), - [sym_string_literal] = STATE(1942), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(1942), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), + [1434] = { + [sym_expression] = STATE(2817), + [sym__string] = STATE(2887), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(2887), + [sym_concatenated_string] = STATE(2887), + [sym_string_literal] = STATE(1947), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(1947), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), [sym_identifier] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(4668), + [anon_sym_LPAREN2] = ACTIONS(4681), [anon_sym_BANG] = ACTIONS(1948), [anon_sym_TILDE] = ACTIONS(1948), [anon_sym_DASH] = ACTIONS(1946), [anon_sym_PLUS] = ACTIONS(1946), - [anon_sym_STAR] = ACTIONS(4336), - [anon_sym_AMP] = ACTIONS(4336), + [anon_sym_STAR] = ACTIONS(4346), + [anon_sym_AMP] = ACTIONS(4346), [anon_sym___extension__] = ACTIONS(1950), [anon_sym_COLON_COLON] = ACTIONS(1952), [anon_sym_LBRACK] = ACTIONS(2020), [sym_primitive_type] = ACTIONS(1956), [anon_sym_not] = ACTIONS(1946), [anon_sym_compl] = ACTIONS(1946), - [anon_sym_DASH_DASH] = ACTIONS(4417), - [anon_sym_PLUS_PLUS] = ACTIONS(4417), + [anon_sym_DASH_DASH] = ACTIONS(4348), + [anon_sym_PLUS_PLUS] = ACTIONS(4348), [anon_sym_sizeof] = ACTIONS(1958), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), @@ -218076,7 +223977,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1976), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(1980), [anon_sym_R_DQUOTE] = ACTIONS(1982), [anon_sym_LR_DQUOTE] = ACTIONS(1982), @@ -218088,66 +223989,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [1386] = { - [sym_expression] = STATE(2795), - [sym__string] = STATE(2870), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(2870), - [sym_concatenated_string] = STATE(2870), - [sym_string_literal] = STATE(1942), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(1942), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), + [1435] = { + [sym_expression] = STATE(2818), + [sym__string] = STATE(2887), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(2887), + [sym_concatenated_string] = STATE(2887), + [sym_string_literal] = STATE(1947), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(1947), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), [sym_identifier] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(4668), + [anon_sym_LPAREN2] = ACTIONS(4681), [anon_sym_BANG] = ACTIONS(1948), [anon_sym_TILDE] = ACTIONS(1948), [anon_sym_DASH] = ACTIONS(1946), [anon_sym_PLUS] = ACTIONS(1946), - [anon_sym_STAR] = ACTIONS(4336), - [anon_sym_AMP] = ACTIONS(4336), + [anon_sym_STAR] = ACTIONS(4346), + [anon_sym_AMP] = ACTIONS(4346), [anon_sym___extension__] = ACTIONS(1950), [anon_sym_COLON_COLON] = ACTIONS(1952), [anon_sym_LBRACK] = ACTIONS(2020), [sym_primitive_type] = ACTIONS(1956), [anon_sym_not] = ACTIONS(1946), [anon_sym_compl] = ACTIONS(1946), - [anon_sym_DASH_DASH] = ACTIONS(4417), - [anon_sym_PLUS_PLUS] = ACTIONS(4417), + [anon_sym_DASH_DASH] = ACTIONS(4348), + [anon_sym_PLUS_PLUS] = ACTIONS(4348), [anon_sym_sizeof] = ACTIONS(1958), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), @@ -218176,7 +224077,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1976), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(1980), [anon_sym_R_DQUOTE] = ACTIONS(1982), [anon_sym_LR_DQUOTE] = ACTIONS(1982), @@ -218188,66 +224089,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [1387] = { - [sym_expression] = STATE(2796), - [sym__string] = STATE(2870), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(2870), - [sym_concatenated_string] = STATE(2870), - [sym_string_literal] = STATE(1942), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(1942), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), + [1436] = { + [sym_expression] = STATE(2819), + [sym__string] = STATE(2887), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(2887), + [sym_concatenated_string] = STATE(2887), + [sym_string_literal] = STATE(1947), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(1947), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), [sym_identifier] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(4668), + [anon_sym_LPAREN2] = ACTIONS(4681), [anon_sym_BANG] = ACTIONS(1948), [anon_sym_TILDE] = ACTIONS(1948), [anon_sym_DASH] = ACTIONS(1946), [anon_sym_PLUS] = ACTIONS(1946), - [anon_sym_STAR] = ACTIONS(4336), - [anon_sym_AMP] = ACTIONS(4336), + [anon_sym_STAR] = ACTIONS(4346), + [anon_sym_AMP] = ACTIONS(4346), [anon_sym___extension__] = ACTIONS(1950), [anon_sym_COLON_COLON] = ACTIONS(1952), [anon_sym_LBRACK] = ACTIONS(2020), [sym_primitive_type] = ACTIONS(1956), [anon_sym_not] = ACTIONS(1946), [anon_sym_compl] = ACTIONS(1946), - [anon_sym_DASH_DASH] = ACTIONS(4417), - [anon_sym_PLUS_PLUS] = ACTIONS(4417), + [anon_sym_DASH_DASH] = ACTIONS(4348), + [anon_sym_PLUS_PLUS] = ACTIONS(4348), [anon_sym_sizeof] = ACTIONS(1958), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), @@ -218276,7 +224177,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1976), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(1980), [anon_sym_R_DQUOTE] = ACTIONS(1982), [anon_sym_LR_DQUOTE] = ACTIONS(1982), @@ -218288,66 +224189,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [1388] = { - [sym_expression] = STATE(2797), - [sym__string] = STATE(2870), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(2870), - [sym_concatenated_string] = STATE(2870), - [sym_string_literal] = STATE(1942), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(1942), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), + [1437] = { + [sym_expression] = STATE(2820), + [sym__string] = STATE(2887), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(2887), + [sym_concatenated_string] = STATE(2887), + [sym_string_literal] = STATE(1947), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(1947), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), [sym_identifier] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(4668), + [anon_sym_LPAREN2] = ACTIONS(4681), [anon_sym_BANG] = ACTIONS(1948), [anon_sym_TILDE] = ACTIONS(1948), [anon_sym_DASH] = ACTIONS(1946), [anon_sym_PLUS] = ACTIONS(1946), - [anon_sym_STAR] = ACTIONS(4336), - [anon_sym_AMP] = ACTIONS(4336), + [anon_sym_STAR] = ACTIONS(4346), + [anon_sym_AMP] = ACTIONS(4346), [anon_sym___extension__] = ACTIONS(1950), [anon_sym_COLON_COLON] = ACTIONS(1952), [anon_sym_LBRACK] = ACTIONS(2020), [sym_primitive_type] = ACTIONS(1956), [anon_sym_not] = ACTIONS(1946), [anon_sym_compl] = ACTIONS(1946), - [anon_sym_DASH_DASH] = ACTIONS(4417), - [anon_sym_PLUS_PLUS] = ACTIONS(4417), + [anon_sym_DASH_DASH] = ACTIONS(4348), + [anon_sym_PLUS_PLUS] = ACTIONS(4348), [anon_sym_sizeof] = ACTIONS(1958), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), @@ -218376,7 +224277,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1976), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(1980), [anon_sym_R_DQUOTE] = ACTIONS(1982), [anon_sym_LR_DQUOTE] = ACTIONS(1982), @@ -218388,166 +224289,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [1389] = { - [sym_expression] = STATE(4774), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), - }, - [1390] = { - [sym_expression] = STATE(2799), - [sym__string] = STATE(2870), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(2870), - [sym_concatenated_string] = STATE(2870), - [sym_string_literal] = STATE(1942), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(1942), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), + [1438] = { + [sym_expression] = STATE(2821), + [sym__string] = STATE(2887), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(2887), + [sym_concatenated_string] = STATE(2887), + [sym_string_literal] = STATE(1947), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(1947), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), [sym_identifier] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(4668), + [anon_sym_LPAREN2] = ACTIONS(4681), [anon_sym_BANG] = ACTIONS(1948), [anon_sym_TILDE] = ACTIONS(1948), [anon_sym_DASH] = ACTIONS(1946), [anon_sym_PLUS] = ACTIONS(1946), - [anon_sym_STAR] = ACTIONS(4336), - [anon_sym_AMP] = ACTIONS(4336), + [anon_sym_STAR] = ACTIONS(4346), + [anon_sym_AMP] = ACTIONS(4346), [anon_sym___extension__] = ACTIONS(1950), [anon_sym_COLON_COLON] = ACTIONS(1952), [anon_sym_LBRACK] = ACTIONS(2020), [sym_primitive_type] = ACTIONS(1956), [anon_sym_not] = ACTIONS(1946), [anon_sym_compl] = ACTIONS(1946), - [anon_sym_DASH_DASH] = ACTIONS(4417), - [anon_sym_PLUS_PLUS] = ACTIONS(4417), + [anon_sym_DASH_DASH] = ACTIONS(4348), + [anon_sym_PLUS_PLUS] = ACTIONS(4348), [anon_sym_sizeof] = ACTIONS(1958), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), @@ -218576,7 +224377,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1976), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(1980), [anon_sym_R_DQUOTE] = ACTIONS(1982), [anon_sym_LR_DQUOTE] = ACTIONS(1982), @@ -218588,66 +224389,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [1391] = { - [sym_expression] = STATE(2802), - [sym__string] = STATE(2870), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(2870), - [sym_concatenated_string] = STATE(2870), - [sym_string_literal] = STATE(1942), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(1942), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), + [1439] = { + [sym_expression] = STATE(2822), + [sym__string] = STATE(2887), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(2887), + [sym_concatenated_string] = STATE(2887), + [sym_string_literal] = STATE(1947), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(1947), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), [sym_identifier] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(4668), + [anon_sym_LPAREN2] = ACTIONS(4681), [anon_sym_BANG] = ACTIONS(1948), [anon_sym_TILDE] = ACTIONS(1948), [anon_sym_DASH] = ACTIONS(1946), [anon_sym_PLUS] = ACTIONS(1946), - [anon_sym_STAR] = ACTIONS(4336), - [anon_sym_AMP] = ACTIONS(4336), + [anon_sym_STAR] = ACTIONS(4346), + [anon_sym_AMP] = ACTIONS(4346), [anon_sym___extension__] = ACTIONS(1950), [anon_sym_COLON_COLON] = ACTIONS(1952), [anon_sym_LBRACK] = ACTIONS(2020), [sym_primitive_type] = ACTIONS(1956), [anon_sym_not] = ACTIONS(1946), [anon_sym_compl] = ACTIONS(1946), - [anon_sym_DASH_DASH] = ACTIONS(4417), - [anon_sym_PLUS_PLUS] = ACTIONS(4417), + [anon_sym_DASH_DASH] = ACTIONS(4348), + [anon_sym_PLUS_PLUS] = ACTIONS(4348), [anon_sym_sizeof] = ACTIONS(1958), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), @@ -218676,7 +224477,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1976), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(1980), [anon_sym_R_DQUOTE] = ACTIONS(1982), [anon_sym_LR_DQUOTE] = ACTIONS(1982), @@ -218688,66 +224489,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [1392] = { - [sym_expression] = STATE(2807), - [sym__string] = STATE(2870), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(2870), - [sym_concatenated_string] = STATE(2870), - [sym_string_literal] = STATE(1942), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(1942), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), + [1440] = { + [sym_expression] = STATE(2823), + [sym__string] = STATE(2887), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(2887), + [sym_concatenated_string] = STATE(2887), + [sym_string_literal] = STATE(1947), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(1947), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), [sym_identifier] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(4668), + [anon_sym_LPAREN2] = ACTIONS(4681), [anon_sym_BANG] = ACTIONS(1948), [anon_sym_TILDE] = ACTIONS(1948), [anon_sym_DASH] = ACTIONS(1946), [anon_sym_PLUS] = ACTIONS(1946), - [anon_sym_STAR] = ACTIONS(4336), - [anon_sym_AMP] = ACTIONS(4336), + [anon_sym_STAR] = ACTIONS(4346), + [anon_sym_AMP] = ACTIONS(4346), [anon_sym___extension__] = ACTIONS(1950), [anon_sym_COLON_COLON] = ACTIONS(1952), [anon_sym_LBRACK] = ACTIONS(2020), [sym_primitive_type] = ACTIONS(1956), [anon_sym_not] = ACTIONS(1946), [anon_sym_compl] = ACTIONS(1946), - [anon_sym_DASH_DASH] = ACTIONS(4417), - [anon_sym_PLUS_PLUS] = ACTIONS(4417), + [anon_sym_DASH_DASH] = ACTIONS(4348), + [anon_sym_PLUS_PLUS] = ACTIONS(4348), [anon_sym_sizeof] = ACTIONS(1958), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), @@ -218776,7 +224577,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1976), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(1980), [anon_sym_R_DQUOTE] = ACTIONS(1982), [anon_sym_LR_DQUOTE] = ACTIONS(1982), @@ -218788,66 +224589,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [1393] = { - [sym_expression] = STATE(2818), - [sym__string] = STATE(2870), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(2870), - [sym_concatenated_string] = STATE(2870), - [sym_string_literal] = STATE(1942), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(1942), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), + [1441] = { + [sym_expression] = STATE(2867), + [sym__string] = STATE(2887), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(2887), + [sym_concatenated_string] = STATE(2887), + [sym_string_literal] = STATE(1947), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(1947), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), [sym_identifier] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(4668), + [anon_sym_LPAREN2] = ACTIONS(4681), [anon_sym_BANG] = ACTIONS(1948), [anon_sym_TILDE] = ACTIONS(1948), [anon_sym_DASH] = ACTIONS(1946), [anon_sym_PLUS] = ACTIONS(1946), - [anon_sym_STAR] = ACTIONS(4336), - [anon_sym_AMP] = ACTIONS(4336), + [anon_sym_STAR] = ACTIONS(4346), + [anon_sym_AMP] = ACTIONS(4346), [anon_sym___extension__] = ACTIONS(1950), [anon_sym_COLON_COLON] = ACTIONS(1952), [anon_sym_LBRACK] = ACTIONS(2020), [sym_primitive_type] = ACTIONS(1956), [anon_sym_not] = ACTIONS(1946), [anon_sym_compl] = ACTIONS(1946), - [anon_sym_DASH_DASH] = ACTIONS(4417), - [anon_sym_PLUS_PLUS] = ACTIONS(4417), + [anon_sym_DASH_DASH] = ACTIONS(4348), + [anon_sym_PLUS_PLUS] = ACTIONS(4348), [anon_sym_sizeof] = ACTIONS(1958), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), @@ -218876,7 +224677,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1976), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(1980), [anon_sym_R_DQUOTE] = ACTIONS(1982), [anon_sym_LR_DQUOTE] = ACTIONS(1982), @@ -218888,662 +224689,262 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [1394] = { - [sym_expression] = STATE(3249), - [sym__string] = STATE(3360), - [sym_conditional_expression] = STATE(3651), - [sym_assignment_expression] = STATE(3651), - [sym_pointer_expression] = STATE(3547), - [sym_unary_expression] = STATE(3651), - [sym_binary_expression] = STATE(3651), - [sym_update_expression] = STATE(3651), - [sym_cast_expression] = STATE(3651), - [sym_sizeof_expression] = STATE(3651), - [sym_alignof_expression] = STATE(3651), - [sym_offsetof_expression] = STATE(3651), - [sym_generic_expression] = STATE(3651), - [sym_subscript_expression] = STATE(3547), - [sym_call_expression] = STATE(3547), - [sym_gnu_asm_expression] = STATE(3651), - [sym_extension_expression] = STATE(3651), - [sym_field_expression] = STATE(3547), - [sym_compound_literal_expression] = STATE(3651), - [sym_parenthesized_expression] = STATE(3547), - [sym_char_literal] = STATE(3360), - [sym_concatenated_string] = STATE(3360), - [sym_string_literal] = STATE(2369), - [sym_null] = STATE(3651), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7649), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3651), - [sym_raw_string_literal] = STATE(2369), - [sym_co_await_expression] = STATE(3651), - [sym_new_expression] = STATE(3651), - [sym_delete_expression] = STATE(3651), - [sym_requires_clause] = STATE(3651), - [sym_requires_expression] = STATE(3651), - [sym_lambda_expression] = STATE(3651), - [sym_lambda_capture_specifier] = STATE(5395), - [sym_fold_expression] = STATE(3651), - [sym_parameter_pack_expansion] = STATE(3651), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5773), - [sym_qualified_identifier] = STATE(3547), - [sym_qualified_type_identifier] = STATE(7649), - [sym_user_defined_literal] = STATE(3547), - [sym_identifier] = ACTIONS(2489), - [anon_sym_LPAREN2] = ACTIONS(4652), - [anon_sym_BANG] = ACTIONS(2493), - [anon_sym_TILDE] = ACTIONS(2493), - [anon_sym_DASH] = ACTIONS(2491), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_STAR] = ACTIONS(3124), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym___extension__] = ACTIONS(2495), - [anon_sym_COLON_COLON] = ACTIONS(2497), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2501), - [anon_sym_not] = ACTIONS(2491), - [anon_sym_compl] = ACTIONS(2491), - [anon_sym_DASH_DASH] = ACTIONS(4358), - [anon_sym_PLUS_PLUS] = ACTIONS(4358), - [anon_sym_sizeof] = ACTIONS(2503), - [anon_sym___alignof__] = ACTIONS(2505), - [anon_sym___alignof] = ACTIONS(2505), - [anon_sym__alignof] = ACTIONS(2505), - [anon_sym_alignof] = ACTIONS(2505), - [anon_sym__Alignof] = ACTIONS(2505), - [anon_sym_offsetof] = ACTIONS(2507), - [anon_sym__Generic] = ACTIONS(2509), - [anon_sym_asm] = ACTIONS(2511), - [anon_sym___asm__] = ACTIONS(2511), - [anon_sym___asm] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2515), - [anon_sym_u_SQUOTE] = ACTIONS(2515), - [anon_sym_U_SQUOTE] = ACTIONS(2515), - [anon_sym_u8_SQUOTE] = ACTIONS(2515), - [anon_sym_SQUOTE] = ACTIONS(2515), - [anon_sym_L_DQUOTE] = ACTIONS(2517), - [anon_sym_u_DQUOTE] = ACTIONS(2517), - [anon_sym_U_DQUOTE] = ACTIONS(2517), - [anon_sym_u8_DQUOTE] = ACTIONS(2517), - [anon_sym_DQUOTE] = ACTIONS(2517), - [sym_true] = ACTIONS(2519), - [sym_false] = ACTIONS(2519), - [anon_sym_NULL] = ACTIONS(2521), - [anon_sym_nullptr] = ACTIONS(2521), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(2523), - [anon_sym_R_DQUOTE] = ACTIONS(2525), - [anon_sym_LR_DQUOTE] = ACTIONS(2525), - [anon_sym_uR_DQUOTE] = ACTIONS(2525), - [anon_sym_UR_DQUOTE] = ACTIONS(2525), - [anon_sym_u8R_DQUOTE] = ACTIONS(2525), - [anon_sym_co_await] = ACTIONS(2527), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_requires] = ACTIONS(2531), - [sym_this] = ACTIONS(2519), - }, - [1395] = { - [sym_expression] = STATE(3296), - [sym__string] = STATE(3360), - [sym_conditional_expression] = STATE(3651), - [sym_assignment_expression] = STATE(3651), - [sym_pointer_expression] = STATE(3547), - [sym_unary_expression] = STATE(3651), - [sym_binary_expression] = STATE(3651), - [sym_update_expression] = STATE(3651), - [sym_cast_expression] = STATE(3651), - [sym_sizeof_expression] = STATE(3651), - [sym_alignof_expression] = STATE(3651), - [sym_offsetof_expression] = STATE(3651), - [sym_generic_expression] = STATE(3651), - [sym_subscript_expression] = STATE(3547), - [sym_call_expression] = STATE(3547), - [sym_gnu_asm_expression] = STATE(3651), - [sym_extension_expression] = STATE(3651), - [sym_field_expression] = STATE(3547), - [sym_compound_literal_expression] = STATE(3651), - [sym_parenthesized_expression] = STATE(3547), - [sym_char_literal] = STATE(3360), - [sym_concatenated_string] = STATE(3360), - [sym_string_literal] = STATE(2369), - [sym_null] = STATE(3651), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7649), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3651), - [sym_raw_string_literal] = STATE(2369), - [sym_co_await_expression] = STATE(3651), - [sym_new_expression] = STATE(3651), - [sym_delete_expression] = STATE(3651), - [sym_requires_clause] = STATE(3651), - [sym_requires_expression] = STATE(3651), - [sym_lambda_expression] = STATE(3651), - [sym_lambda_capture_specifier] = STATE(5395), - [sym_fold_expression] = STATE(3651), - [sym_parameter_pack_expansion] = STATE(3651), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5773), - [sym_qualified_identifier] = STATE(3547), - [sym_qualified_type_identifier] = STATE(7649), - [sym_user_defined_literal] = STATE(3547), - [sym_identifier] = ACTIONS(2489), - [anon_sym_LPAREN2] = ACTIONS(4652), - [anon_sym_BANG] = ACTIONS(2493), - [anon_sym_TILDE] = ACTIONS(2493), - [anon_sym_DASH] = ACTIONS(2491), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_STAR] = ACTIONS(3124), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym___extension__] = ACTIONS(2495), - [anon_sym_COLON_COLON] = ACTIONS(2497), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2501), - [anon_sym_not] = ACTIONS(2491), - [anon_sym_compl] = ACTIONS(2491), - [anon_sym_DASH_DASH] = ACTIONS(4358), - [anon_sym_PLUS_PLUS] = ACTIONS(4358), - [anon_sym_sizeof] = ACTIONS(2503), - [anon_sym___alignof__] = ACTIONS(2505), - [anon_sym___alignof] = ACTIONS(2505), - [anon_sym__alignof] = ACTIONS(2505), - [anon_sym_alignof] = ACTIONS(2505), - [anon_sym__Alignof] = ACTIONS(2505), - [anon_sym_offsetof] = ACTIONS(2507), - [anon_sym__Generic] = ACTIONS(2509), - [anon_sym_asm] = ACTIONS(2511), - [anon_sym___asm__] = ACTIONS(2511), - [anon_sym___asm] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2515), - [anon_sym_u_SQUOTE] = ACTIONS(2515), - [anon_sym_U_SQUOTE] = ACTIONS(2515), - [anon_sym_u8_SQUOTE] = ACTIONS(2515), - [anon_sym_SQUOTE] = ACTIONS(2515), - [anon_sym_L_DQUOTE] = ACTIONS(2517), - [anon_sym_u_DQUOTE] = ACTIONS(2517), - [anon_sym_U_DQUOTE] = ACTIONS(2517), - [anon_sym_u8_DQUOTE] = ACTIONS(2517), - [anon_sym_DQUOTE] = ACTIONS(2517), - [sym_true] = ACTIONS(2519), - [sym_false] = ACTIONS(2519), - [anon_sym_NULL] = ACTIONS(2521), - [anon_sym_nullptr] = ACTIONS(2521), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(2523), - [anon_sym_R_DQUOTE] = ACTIONS(2525), - [anon_sym_LR_DQUOTE] = ACTIONS(2525), - [anon_sym_uR_DQUOTE] = ACTIONS(2525), - [anon_sym_UR_DQUOTE] = ACTIONS(2525), - [anon_sym_u8R_DQUOTE] = ACTIONS(2525), - [anon_sym_co_await] = ACTIONS(2527), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_requires] = ACTIONS(2531), - [sym_this] = ACTIONS(2519), - }, - [1396] = { - [sym_expression] = STATE(4421), - [sym__string] = STATE(4738), - [sym_conditional_expression] = STATE(4829), - [sym_assignment_expression] = STATE(4829), - [sym_pointer_expression] = STATE(3602), - [sym_unary_expression] = STATE(4829), - [sym_binary_expression] = STATE(4829), - [sym_update_expression] = STATE(4829), - [sym_cast_expression] = STATE(4829), - [sym_sizeof_expression] = STATE(4829), - [sym_alignof_expression] = STATE(4829), - [sym_offsetof_expression] = STATE(4829), - [sym_generic_expression] = STATE(4829), - [sym_subscript_expression] = STATE(3602), - [sym_call_expression] = STATE(3602), - [sym_gnu_asm_expression] = STATE(4829), - [sym_extension_expression] = STATE(4829), - [sym_field_expression] = STATE(3602), - [sym_compound_literal_expression] = STATE(4829), - [sym_parenthesized_expression] = STATE(3602), - [sym_char_literal] = STATE(4738), - [sym_concatenated_string] = STATE(4738), - [sym_string_literal] = STATE(3759), - [sym_null] = STATE(4829), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7804), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(4829), - [sym_raw_string_literal] = STATE(3759), - [sym_co_await_expression] = STATE(4829), - [sym_new_expression] = STATE(4829), - [sym_delete_expression] = STATE(4829), - [sym_requires_clause] = STATE(4829), - [sym_requires_expression] = STATE(4829), - [sym_lambda_expression] = STATE(4829), - [sym_lambda_capture_specifier] = STATE(5401), - [sym_fold_expression] = STATE(4829), - [sym_parameter_pack_expansion] = STATE(4829), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5773), - [sym_qualified_identifier] = STATE(3602), - [sym_qualified_type_identifier] = STATE(7804), - [sym_user_defined_literal] = STATE(3602), - [sym_identifier] = ACTIONS(3883), - [anon_sym_LPAREN2] = ACTIONS(3118), - [anon_sym_BANG] = ACTIONS(3120), - [anon_sym_TILDE] = ACTIONS(3120), - [anon_sym_DASH] = ACTIONS(3122), - [anon_sym_PLUS] = ACTIONS(3122), - [anon_sym_STAR] = ACTIONS(3124), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym___extension__] = ACTIONS(3885), - [anon_sym_COLON_COLON] = ACTIONS(3128), - [anon_sym_LBRACK] = ACTIONS(4937), - [sym_primitive_type] = ACTIONS(3889), - [anon_sym_not] = ACTIONS(3122), - [anon_sym_compl] = ACTIONS(3122), - [anon_sym_DASH_DASH] = ACTIONS(3142), - [anon_sym_PLUS_PLUS] = ACTIONS(3142), - [anon_sym_sizeof] = ACTIONS(3144), - [anon_sym___alignof__] = ACTIONS(3146), - [anon_sym___alignof] = ACTIONS(3146), - [anon_sym__alignof] = ACTIONS(3146), - [anon_sym_alignof] = ACTIONS(3146), - [anon_sym__Alignof] = ACTIONS(3146), - [anon_sym_offsetof] = ACTIONS(3148), - [anon_sym__Generic] = ACTIONS(3150), - [anon_sym_asm] = ACTIONS(3152), - [anon_sym___asm__] = ACTIONS(3152), - [anon_sym___asm] = ACTIONS(3152), - [sym_number_literal] = ACTIONS(3154), - [anon_sym_L_SQUOTE] = ACTIONS(3156), - [anon_sym_u_SQUOTE] = ACTIONS(3156), - [anon_sym_U_SQUOTE] = ACTIONS(3156), - [anon_sym_u8_SQUOTE] = ACTIONS(3156), - [anon_sym_SQUOTE] = ACTIONS(3156), - [anon_sym_L_DQUOTE] = ACTIONS(3158), - [anon_sym_u_DQUOTE] = ACTIONS(3158), - [anon_sym_U_DQUOTE] = ACTIONS(3158), - [anon_sym_u8_DQUOTE] = ACTIONS(3158), - [anon_sym_DQUOTE] = ACTIONS(3158), - [sym_true] = ACTIONS(3160), - [sym_false] = ACTIONS(3160), - [anon_sym_NULL] = ACTIONS(3162), - [anon_sym_nullptr] = ACTIONS(3162), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3172), - [anon_sym_R_DQUOTE] = ACTIONS(3174), - [anon_sym_LR_DQUOTE] = ACTIONS(3174), - [anon_sym_uR_DQUOTE] = ACTIONS(3174), - [anon_sym_UR_DQUOTE] = ACTIONS(3174), - [anon_sym_u8R_DQUOTE] = ACTIONS(3174), - [anon_sym_co_await] = ACTIONS(3176), - [anon_sym_new] = ACTIONS(3178), - [anon_sym_requires] = ACTIONS(3180), - [sym_this] = ACTIONS(3160), - }, - [1397] = { - [sym_expression] = STATE(3782), - [sym__string] = STATE(4380), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3253), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3253), - [sym_call_expression] = STATE(3253), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3253), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3253), - [sym_char_literal] = STATE(4380), - [sym_concatenated_string] = STATE(4380), - [sym_string_literal] = STATE(3416), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3416), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3253), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3253), - [sym_identifier] = ACTIONS(3823), - [anon_sym_LPAREN2] = ACTIONS(4557), - [anon_sym_BANG] = ACTIONS(3827), - [anon_sym_TILDE] = ACTIONS(3827), - [anon_sym_DASH] = ACTIONS(3825), - [anon_sym_PLUS] = ACTIONS(3825), - [anon_sym_STAR] = ACTIONS(4382), - [anon_sym_AMP] = ACTIONS(4382), - [anon_sym___extension__] = ACTIONS(3829), - [anon_sym_COLON_COLON] = ACTIONS(3831), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3825), - [anon_sym_compl] = ACTIONS(3825), - [anon_sym_DASH_DASH] = ACTIONS(4384), - [anon_sym_PLUS_PLUS] = ACTIONS(4384), - [anon_sym_sizeof] = ACTIONS(3833), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3835), - [anon_sym_L_SQUOTE] = ACTIONS(3837), - [anon_sym_u_SQUOTE] = ACTIONS(3837), - [anon_sym_U_SQUOTE] = ACTIONS(3837), - [anon_sym_u8_SQUOTE] = ACTIONS(3837), - [anon_sym_SQUOTE] = ACTIONS(3837), - [anon_sym_L_DQUOTE] = ACTIONS(3839), - [anon_sym_u_DQUOTE] = ACTIONS(3839), - [anon_sym_U_DQUOTE] = ACTIONS(3839), - [anon_sym_u8_DQUOTE] = ACTIONS(3839), - [anon_sym_DQUOTE] = ACTIONS(3839), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3841), - [anon_sym_R_DQUOTE] = ACTIONS(3843), - [anon_sym_LR_DQUOTE] = ACTIONS(3843), - [anon_sym_uR_DQUOTE] = ACTIONS(3843), - [anon_sym_UR_DQUOTE] = ACTIONS(3843), - [anon_sym_u8R_DQUOTE] = ACTIONS(3843), - [anon_sym_co_await] = ACTIONS(3845), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), - }, - [1398] = { - [sym_expression] = STATE(3750), - [sym__string] = STATE(4380), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3253), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3253), - [sym_call_expression] = STATE(3253), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3253), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3253), - [sym_char_literal] = STATE(4380), - [sym_concatenated_string] = STATE(4380), - [sym_string_literal] = STATE(3416), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3416), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3253), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3253), - [sym_identifier] = ACTIONS(3823), - [anon_sym_LPAREN2] = ACTIONS(4557), - [anon_sym_BANG] = ACTIONS(3827), - [anon_sym_TILDE] = ACTIONS(3827), - [anon_sym_DASH] = ACTIONS(3825), - [anon_sym_PLUS] = ACTIONS(3825), - [anon_sym_STAR] = ACTIONS(4382), - [anon_sym_AMP] = ACTIONS(4382), - [anon_sym___extension__] = ACTIONS(3829), - [anon_sym_COLON_COLON] = ACTIONS(3831), + [1442] = { + [sym_expression] = STATE(3390), + [sym__string] = STATE(3549), + [sym_conditional_expression] = STATE(3636), + [sym_assignment_expression] = STATE(3636), + [sym_pointer_expression] = STATE(3696), + [sym_unary_expression] = STATE(3636), + [sym_binary_expression] = STATE(3636), + [sym_update_expression] = STATE(3636), + [sym_cast_expression] = STATE(3636), + [sym_sizeof_expression] = STATE(3636), + [sym_alignof_expression] = STATE(3636), + [sym_offsetof_expression] = STATE(3636), + [sym_generic_expression] = STATE(3636), + [sym_subscript_expression] = STATE(3696), + [sym_call_expression] = STATE(3696), + [sym_gnu_asm_expression] = STATE(3636), + [sym_extension_expression] = STATE(3636), + [sym_field_expression] = STATE(3696), + [sym_compound_literal_expression] = STATE(3636), + [sym_parenthesized_expression] = STATE(3696), + [sym_char_literal] = STATE(3549), + [sym_concatenated_string] = STATE(3549), + [sym_string_literal] = STATE(2433), + [sym_null] = STATE(3636), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7883), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3636), + [sym_raw_string_literal] = STATE(2433), + [sym_co_await_expression] = STATE(3636), + [sym_new_expression] = STATE(3636), + [sym_delete_expression] = STATE(3636), + [sym_requires_clause] = STATE(3636), + [sym_requires_expression] = STATE(3636), + [sym_lambda_expression] = STATE(3636), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3636), + [sym_parameter_pack_expansion] = STATE(3636), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5769), + [sym_qualified_identifier] = STATE(3696), + [sym_qualified_type_identifier] = STATE(7883), + [sym_user_defined_literal] = STATE(3696), + [sym_identifier] = ACTIONS(2483), + [anon_sym_LPAREN2] = ACTIONS(4668), + [anon_sym_BANG] = ACTIONS(2487), + [anon_sym_TILDE] = ACTIONS(2487), + [anon_sym_DASH] = ACTIONS(2485), + [anon_sym_PLUS] = ACTIONS(2485), + [anon_sym_STAR] = ACTIONS(3136), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym___extension__] = ACTIONS(2489), + [anon_sym_COLON_COLON] = ACTIONS(2491), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3825), - [anon_sym_compl] = ACTIONS(3825), - [anon_sym_DASH_DASH] = ACTIONS(4384), - [anon_sym_PLUS_PLUS] = ACTIONS(4384), - [anon_sym_sizeof] = ACTIONS(3833), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3835), - [anon_sym_L_SQUOTE] = ACTIONS(3837), - [anon_sym_u_SQUOTE] = ACTIONS(3837), - [anon_sym_U_SQUOTE] = ACTIONS(3837), - [anon_sym_u8_SQUOTE] = ACTIONS(3837), - [anon_sym_SQUOTE] = ACTIONS(3837), - [anon_sym_L_DQUOTE] = ACTIONS(3839), - [anon_sym_u_DQUOTE] = ACTIONS(3839), - [anon_sym_U_DQUOTE] = ACTIONS(3839), - [anon_sym_u8_DQUOTE] = ACTIONS(3839), - [anon_sym_DQUOTE] = ACTIONS(3839), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), + [sym_primitive_type] = ACTIONS(2495), + [anon_sym_not] = ACTIONS(2485), + [anon_sym_compl] = ACTIONS(2485), + [anon_sym_DASH_DASH] = ACTIONS(4513), + [anon_sym_PLUS_PLUS] = ACTIONS(4513), + [anon_sym_sizeof] = ACTIONS(2497), + [anon_sym___alignof__] = ACTIONS(2499), + [anon_sym___alignof] = ACTIONS(2499), + [anon_sym__alignof] = ACTIONS(2499), + [anon_sym_alignof] = ACTIONS(2499), + [anon_sym__Alignof] = ACTIONS(2499), + [anon_sym_offsetof] = ACTIONS(2501), + [anon_sym__Generic] = ACTIONS(2503), + [anon_sym_asm] = ACTIONS(2505), + [anon_sym___asm__] = ACTIONS(2505), + [anon_sym___asm] = ACTIONS(2505), + [sym_number_literal] = ACTIONS(2507), + [anon_sym_L_SQUOTE] = ACTIONS(2509), + [anon_sym_u_SQUOTE] = ACTIONS(2509), + [anon_sym_U_SQUOTE] = ACTIONS(2509), + [anon_sym_u8_SQUOTE] = ACTIONS(2509), + [anon_sym_SQUOTE] = ACTIONS(2509), + [anon_sym_L_DQUOTE] = ACTIONS(2511), + [anon_sym_u_DQUOTE] = ACTIONS(2511), + [anon_sym_U_DQUOTE] = ACTIONS(2511), + [anon_sym_u8_DQUOTE] = ACTIONS(2511), + [anon_sym_DQUOTE] = ACTIONS(2511), + [sym_true] = ACTIONS(2513), + [sym_false] = ACTIONS(2513), + [anon_sym_NULL] = ACTIONS(2515), + [anon_sym_nullptr] = ACTIONS(2515), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3841), - [anon_sym_R_DQUOTE] = ACTIONS(3843), - [anon_sym_LR_DQUOTE] = ACTIONS(3843), - [anon_sym_uR_DQUOTE] = ACTIONS(3843), - [anon_sym_UR_DQUOTE] = ACTIONS(3843), - [anon_sym_u8R_DQUOTE] = ACTIONS(3843), - [anon_sym_co_await] = ACTIONS(3845), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(2517), + [anon_sym_R_DQUOTE] = ACTIONS(2519), + [anon_sym_LR_DQUOTE] = ACTIONS(2519), + [anon_sym_uR_DQUOTE] = ACTIONS(2519), + [anon_sym_UR_DQUOTE] = ACTIONS(2519), + [anon_sym_u8R_DQUOTE] = ACTIONS(2519), + [anon_sym_co_await] = ACTIONS(2521), + [anon_sym_new] = ACTIONS(2523), + [anon_sym_requires] = ACTIONS(2525), + [sym_this] = ACTIONS(2513), }, - [1399] = { - [sym_expression] = STATE(3760), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), - [anon_sym_COLON_COLON] = ACTIONS(47), + [1443] = { + [sym_expression] = STATE(3364), + [sym__string] = STATE(3549), + [sym_conditional_expression] = STATE(3636), + [sym_assignment_expression] = STATE(3636), + [sym_pointer_expression] = STATE(3696), + [sym_unary_expression] = STATE(3636), + [sym_binary_expression] = STATE(3636), + [sym_update_expression] = STATE(3636), + [sym_cast_expression] = STATE(3636), + [sym_sizeof_expression] = STATE(3636), + [sym_alignof_expression] = STATE(3636), + [sym_offsetof_expression] = STATE(3636), + [sym_generic_expression] = STATE(3636), + [sym_subscript_expression] = STATE(3696), + [sym_call_expression] = STATE(3696), + [sym_gnu_asm_expression] = STATE(3636), + [sym_extension_expression] = STATE(3636), + [sym_field_expression] = STATE(3696), + [sym_compound_literal_expression] = STATE(3636), + [sym_parenthesized_expression] = STATE(3696), + [sym_char_literal] = STATE(3549), + [sym_concatenated_string] = STATE(3549), + [sym_string_literal] = STATE(2433), + [sym_null] = STATE(3636), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7883), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3636), + [sym_raw_string_literal] = STATE(2433), + [sym_co_await_expression] = STATE(3636), + [sym_new_expression] = STATE(3636), + [sym_delete_expression] = STATE(3636), + [sym_requires_clause] = STATE(3636), + [sym_requires_expression] = STATE(3636), + [sym_lambda_expression] = STATE(3636), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3636), + [sym_parameter_pack_expansion] = STATE(3636), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5769), + [sym_qualified_identifier] = STATE(3696), + [sym_qualified_type_identifier] = STATE(7883), + [sym_user_defined_literal] = STATE(3696), + [sym_identifier] = ACTIONS(2483), + [anon_sym_LPAREN2] = ACTIONS(4668), + [anon_sym_BANG] = ACTIONS(2487), + [anon_sym_TILDE] = ACTIONS(2487), + [anon_sym_DASH] = ACTIONS(2485), + [anon_sym_PLUS] = ACTIONS(2485), + [anon_sym_STAR] = ACTIONS(3136), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym___extension__] = ACTIONS(2489), + [anon_sym_COLON_COLON] = ACTIONS(2491), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), + [sym_primitive_type] = ACTIONS(2495), + [anon_sym_not] = ACTIONS(2485), + [anon_sym_compl] = ACTIONS(2485), + [anon_sym_DASH_DASH] = ACTIONS(4513), + [anon_sym_PLUS_PLUS] = ACTIONS(4513), + [anon_sym_sizeof] = ACTIONS(2497), + [anon_sym___alignof__] = ACTIONS(2499), + [anon_sym___alignof] = ACTIONS(2499), + [anon_sym__alignof] = ACTIONS(2499), + [anon_sym_alignof] = ACTIONS(2499), + [anon_sym__Alignof] = ACTIONS(2499), + [anon_sym_offsetof] = ACTIONS(2501), + [anon_sym__Generic] = ACTIONS(2503), + [anon_sym_asm] = ACTIONS(2505), + [anon_sym___asm__] = ACTIONS(2505), + [anon_sym___asm] = ACTIONS(2505), + [sym_number_literal] = ACTIONS(2507), + [anon_sym_L_SQUOTE] = ACTIONS(2509), + [anon_sym_u_SQUOTE] = ACTIONS(2509), + [anon_sym_U_SQUOTE] = ACTIONS(2509), + [anon_sym_u8_SQUOTE] = ACTIONS(2509), + [anon_sym_SQUOTE] = ACTIONS(2509), + [anon_sym_L_DQUOTE] = ACTIONS(2511), + [anon_sym_u_DQUOTE] = ACTIONS(2511), + [anon_sym_U_DQUOTE] = ACTIONS(2511), + [anon_sym_u8_DQUOTE] = ACTIONS(2511), + [anon_sym_DQUOTE] = ACTIONS(2511), + [sym_true] = ACTIONS(2513), + [sym_false] = ACTIONS(2513), + [anon_sym_NULL] = ACTIONS(2515), + [anon_sym_nullptr] = ACTIONS(2515), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(2517), + [anon_sym_R_DQUOTE] = ACTIONS(2519), + [anon_sym_LR_DQUOTE] = ACTIONS(2519), + [anon_sym_uR_DQUOTE] = ACTIONS(2519), + [anon_sym_UR_DQUOTE] = ACTIONS(2519), + [anon_sym_u8R_DQUOTE] = ACTIONS(2519), + [anon_sym_co_await] = ACTIONS(2521), + [anon_sym_new] = ACTIONS(2523), + [anon_sym_requires] = ACTIONS(2525), + [sym_this] = ACTIONS(2513), }, - [1400] = { - [sym_expression] = STATE(4260), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1444] = { + [sym_expression] = STATE(4789), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -219576,7 +224977,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -219588,67 +224989,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1401] = { - [sym_expression] = STATE(4285), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), - [anon_sym_COLON_COLON] = ACTIONS(47), + [1445] = { + [sym_expression] = STATE(3745), + [sym__string] = STATE(4455), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3366), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3366), + [sym_call_expression] = STATE(3366), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3366), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3366), + [sym_char_literal] = STATE(4455), + [sym_concatenated_string] = STATE(4455), + [sym_string_literal] = STATE(3406), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3406), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3366), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3366), + [sym_identifier] = ACTIONS(3833), + [anon_sym_LPAREN2] = ACTIONS(4557), + [anon_sym_BANG] = ACTIONS(3837), + [anon_sym_TILDE] = ACTIONS(3837), + [anon_sym_DASH] = ACTIONS(3835), + [anon_sym_PLUS] = ACTIONS(3835), + [anon_sym_STAR] = ACTIONS(4336), + [anon_sym_AMP] = ACTIONS(4336), + [anon_sym___extension__] = ACTIONS(3839), + [anon_sym_COLON_COLON] = ACTIONS(3841), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3835), + [anon_sym_compl] = ACTIONS(3835), + [anon_sym_DASH_DASH] = ACTIONS(4338), + [anon_sym_PLUS_PLUS] = ACTIONS(4338), + [anon_sym_sizeof] = ACTIONS(3843), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -219659,96 +225060,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(113), [anon_sym___asm__] = ACTIONS(113), [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), + [sym_number_literal] = ACTIONS(3845), + [anon_sym_L_SQUOTE] = ACTIONS(3847), + [anon_sym_u_SQUOTE] = ACTIONS(3847), + [anon_sym_U_SQUOTE] = ACTIONS(3847), + [anon_sym_u8_SQUOTE] = ACTIONS(3847), + [anon_sym_SQUOTE] = ACTIONS(3847), + [anon_sym_L_DQUOTE] = ACTIONS(3849), + [anon_sym_u_DQUOTE] = ACTIONS(3849), + [anon_sym_U_DQUOTE] = ACTIONS(3849), + [anon_sym_u8_DQUOTE] = ACTIONS(3849), + [anon_sym_DQUOTE] = ACTIONS(3849), [sym_true] = ACTIONS(229), [sym_false] = ACTIONS(229), [anon_sym_NULL] = ACTIONS(123), [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3851), + [anon_sym_R_DQUOTE] = ACTIONS(3853), + [anon_sym_LR_DQUOTE] = ACTIONS(3853), + [anon_sym_uR_DQUOTE] = ACTIONS(3853), + [anon_sym_UR_DQUOTE] = ACTIONS(3853), + [anon_sym_u8R_DQUOTE] = ACTIONS(3853), + [anon_sym_co_await] = ACTIONS(3855), [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1402] = { - [sym_expression] = STATE(4258), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), - [anon_sym_COLON_COLON] = ACTIONS(47), + [1446] = { + [sym_expression] = STATE(3832), + [sym__string] = STATE(4455), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3366), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3366), + [sym_call_expression] = STATE(3366), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3366), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3366), + [sym_char_literal] = STATE(4455), + [sym_concatenated_string] = STATE(4455), + [sym_string_literal] = STATE(3406), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3406), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3366), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3366), + [sym_identifier] = ACTIONS(3833), + [anon_sym_LPAREN2] = ACTIONS(4557), + [anon_sym_BANG] = ACTIONS(3837), + [anon_sym_TILDE] = ACTIONS(3837), + [anon_sym_DASH] = ACTIONS(3835), + [anon_sym_PLUS] = ACTIONS(3835), + [anon_sym_STAR] = ACTIONS(4336), + [anon_sym_AMP] = ACTIONS(4336), + [anon_sym___extension__] = ACTIONS(3839), + [anon_sym_COLON_COLON] = ACTIONS(3841), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3835), + [anon_sym_compl] = ACTIONS(3835), + [anon_sym_DASH_DASH] = ACTIONS(4338), + [anon_sym_PLUS_PLUS] = ACTIONS(4338), + [anon_sym_sizeof] = ACTIONS(3843), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -219759,96 +225160,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(113), [anon_sym___asm__] = ACTIONS(113), [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), + [sym_number_literal] = ACTIONS(3845), + [anon_sym_L_SQUOTE] = ACTIONS(3847), + [anon_sym_u_SQUOTE] = ACTIONS(3847), + [anon_sym_U_SQUOTE] = ACTIONS(3847), + [anon_sym_u8_SQUOTE] = ACTIONS(3847), + [anon_sym_SQUOTE] = ACTIONS(3847), + [anon_sym_L_DQUOTE] = ACTIONS(3849), + [anon_sym_u_DQUOTE] = ACTIONS(3849), + [anon_sym_U_DQUOTE] = ACTIONS(3849), + [anon_sym_u8_DQUOTE] = ACTIONS(3849), + [anon_sym_DQUOTE] = ACTIONS(3849), [sym_true] = ACTIONS(229), [sym_false] = ACTIONS(229), [anon_sym_NULL] = ACTIONS(123), [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3851), + [anon_sym_R_DQUOTE] = ACTIONS(3853), + [anon_sym_LR_DQUOTE] = ACTIONS(3853), + [anon_sym_uR_DQUOTE] = ACTIONS(3853), + [anon_sym_UR_DQUOTE] = ACTIONS(3853), + [anon_sym_u8R_DQUOTE] = ACTIONS(3853), + [anon_sym_co_await] = ACTIONS(3855), [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1403] = { - [sym_expression] = STATE(4274), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), - [anon_sym_COLON_COLON] = ACTIONS(47), + [1447] = { + [sym_expression] = STATE(3745), + [sym__string] = STATE(4269), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(2921), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(2921), + [sym_call_expression] = STATE(2921), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(2921), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(2921), + [sym_char_literal] = STATE(4269), + [sym_concatenated_string] = STATE(4269), + [sym_string_literal] = STATE(3102), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3102), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2921), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(2921), + [sym_identifier] = ACTIONS(4356), + [anon_sym_LPAREN2] = ACTIONS(4654), + [anon_sym_BANG] = ACTIONS(3617), + [anon_sym_TILDE] = ACTIONS(3617), + [anon_sym_DASH] = ACTIONS(3615), + [anon_sym_PLUS] = ACTIONS(3615), + [anon_sym_STAR] = ACTIONS(4346), + [anon_sym_AMP] = ACTIONS(4346), + [anon_sym___extension__] = ACTIONS(3619), + [anon_sym_COLON_COLON] = ACTIONS(3621), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3615), + [anon_sym_compl] = ACTIONS(3615), + [anon_sym_DASH_DASH] = ACTIONS(4358), + [anon_sym_PLUS_PLUS] = ACTIONS(4358), + [anon_sym_sizeof] = ACTIONS(3625), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -219859,496 +225260,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(113), [anon_sym___asm__] = ACTIONS(113), [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), + [sym_number_literal] = ACTIONS(3627), + [anon_sym_L_SQUOTE] = ACTIONS(3629), + [anon_sym_u_SQUOTE] = ACTIONS(3629), + [anon_sym_U_SQUOTE] = ACTIONS(3629), + [anon_sym_u8_SQUOTE] = ACTIONS(3629), + [anon_sym_SQUOTE] = ACTIONS(3629), + [anon_sym_L_DQUOTE] = ACTIONS(3631), + [anon_sym_u_DQUOTE] = ACTIONS(3631), + [anon_sym_U_DQUOTE] = ACTIONS(3631), + [anon_sym_u8_DQUOTE] = ACTIONS(3631), + [anon_sym_DQUOTE] = ACTIONS(3631), [sym_true] = ACTIONS(229), [sym_false] = ACTIONS(229), [anon_sym_NULL] = ACTIONS(123), [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3633), + [anon_sym_R_DQUOTE] = ACTIONS(3635), + [anon_sym_LR_DQUOTE] = ACTIONS(3635), + [anon_sym_uR_DQUOTE] = ACTIONS(3635), + [anon_sym_UR_DQUOTE] = ACTIONS(3635), + [anon_sym_u8R_DQUOTE] = ACTIONS(3635), + [anon_sym_co_await] = ACTIONS(3637), + [anon_sym_new] = ACTIONS(3639), + [anon_sym_requires] = ACTIONS(3641), [sym_this] = ACTIONS(229), }, - [1404] = { - [sym_expression] = STATE(3549), - [sym__string] = STATE(3714), - [sym_conditional_expression] = STATE(3908), - [sym_assignment_expression] = STATE(3908), - [sym_pointer_expression] = STATE(3506), - [sym_unary_expression] = STATE(3908), - [sym_binary_expression] = STATE(3908), - [sym_update_expression] = STATE(3908), - [sym_cast_expression] = STATE(3908), - [sym_sizeof_expression] = STATE(3908), - [sym_alignof_expression] = STATE(3908), - [sym_offsetof_expression] = STATE(3908), - [sym_generic_expression] = STATE(3908), - [sym_subscript_expression] = STATE(3506), - [sym_call_expression] = STATE(3506), - [sym_gnu_asm_expression] = STATE(3908), - [sym_extension_expression] = STATE(3908), - [sym_field_expression] = STATE(3506), - [sym_compound_literal_expression] = STATE(3908), - [sym_parenthesized_expression] = STATE(3506), - [sym_char_literal] = STATE(3714), - [sym_concatenated_string] = STATE(3714), - [sym_string_literal] = STATE(2566), - [sym_null] = STATE(3908), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7868), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3908), - [sym_raw_string_literal] = STATE(2566), - [sym_co_await_expression] = STATE(3908), - [sym_new_expression] = STATE(3908), - [sym_delete_expression] = STATE(3908), - [sym_requires_clause] = STATE(3908), - [sym_requires_expression] = STATE(3908), - [sym_lambda_expression] = STATE(3908), - [sym_lambda_capture_specifier] = STATE(5415), - [sym_fold_expression] = STATE(3908), - [sym_parameter_pack_expansion] = STATE(3908), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3506), - [sym_qualified_type_identifier] = STATE(7868), - [sym_user_defined_literal] = STATE(3506), - [sym_identifier] = ACTIONS(2605), - [anon_sym_LPAREN2] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1870), - [anon_sym_TILDE] = ACTIONS(1870), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_PLUS] = ACTIONS(1872), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(2607), - [anon_sym_COLON_COLON] = ACTIONS(1880), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2611), - [anon_sym_not] = ACTIONS(1872), - [anon_sym_compl] = ACTIONS(1872), - [anon_sym_DASH_DASH] = ACTIONS(1892), - [anon_sym_PLUS_PLUS] = ACTIONS(1892), - [anon_sym_sizeof] = ACTIONS(1894), - [anon_sym___alignof__] = ACTIONS(1896), - [anon_sym___alignof] = ACTIONS(1896), - [anon_sym__alignof] = ACTIONS(1896), - [anon_sym_alignof] = ACTIONS(1896), - [anon_sym__Alignof] = ACTIONS(1896), - [anon_sym_offsetof] = ACTIONS(1898), - [anon_sym__Generic] = ACTIONS(1900), - [anon_sym_asm] = ACTIONS(1902), - [anon_sym___asm__] = ACTIONS(1902), - [anon_sym___asm] = ACTIONS(1902), - [sym_number_literal] = ACTIONS(1904), - [anon_sym_L_SQUOTE] = ACTIONS(1906), - [anon_sym_u_SQUOTE] = ACTIONS(1906), - [anon_sym_U_SQUOTE] = ACTIONS(1906), - [anon_sym_u8_SQUOTE] = ACTIONS(1906), - [anon_sym_SQUOTE] = ACTIONS(1906), - [anon_sym_L_DQUOTE] = ACTIONS(1908), - [anon_sym_u_DQUOTE] = ACTIONS(1908), - [anon_sym_U_DQUOTE] = ACTIONS(1908), - [anon_sym_u8_DQUOTE] = ACTIONS(1908), - [anon_sym_DQUOTE] = ACTIONS(1908), - [sym_true] = ACTIONS(1910), - [sym_false] = ACTIONS(1910), - [anon_sym_NULL] = ACTIONS(1912), - [anon_sym_nullptr] = ACTIONS(1912), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1916), - [anon_sym_R_DQUOTE] = ACTIONS(1918), - [anon_sym_LR_DQUOTE] = ACTIONS(1918), - [anon_sym_uR_DQUOTE] = ACTIONS(1918), - [anon_sym_UR_DQUOTE] = ACTIONS(1918), - [anon_sym_u8R_DQUOTE] = ACTIONS(1918), - [anon_sym_co_await] = ACTIONS(1920), - [anon_sym_new] = ACTIONS(1922), - [anon_sym_requires] = ACTIONS(1924), - [sym_this] = ACTIONS(1910), - }, - [1405] = { - [sym_expression] = STATE(3550), - [sym__string] = STATE(3714), - [sym_conditional_expression] = STATE(3908), - [sym_assignment_expression] = STATE(3908), - [sym_pointer_expression] = STATE(3506), - [sym_unary_expression] = STATE(3908), - [sym_binary_expression] = STATE(3908), - [sym_update_expression] = STATE(3908), - [sym_cast_expression] = STATE(3908), - [sym_sizeof_expression] = STATE(3908), - [sym_alignof_expression] = STATE(3908), - [sym_offsetof_expression] = STATE(3908), - [sym_generic_expression] = STATE(3908), - [sym_subscript_expression] = STATE(3506), - [sym_call_expression] = STATE(3506), - [sym_gnu_asm_expression] = STATE(3908), - [sym_extension_expression] = STATE(3908), - [sym_field_expression] = STATE(3506), - [sym_compound_literal_expression] = STATE(3908), - [sym_parenthesized_expression] = STATE(3506), - [sym_char_literal] = STATE(3714), - [sym_concatenated_string] = STATE(3714), - [sym_string_literal] = STATE(2566), - [sym_null] = STATE(3908), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7868), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3908), - [sym_raw_string_literal] = STATE(2566), - [sym_co_await_expression] = STATE(3908), - [sym_new_expression] = STATE(3908), - [sym_delete_expression] = STATE(3908), - [sym_requires_clause] = STATE(3908), - [sym_requires_expression] = STATE(3908), - [sym_lambda_expression] = STATE(3908), - [sym_lambda_capture_specifier] = STATE(5415), - [sym_fold_expression] = STATE(3908), - [sym_parameter_pack_expansion] = STATE(3908), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3506), - [sym_qualified_type_identifier] = STATE(7868), - [sym_user_defined_literal] = STATE(3506), - [sym_identifier] = ACTIONS(2605), - [anon_sym_LPAREN2] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1870), - [anon_sym_TILDE] = ACTIONS(1870), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_PLUS] = ACTIONS(1872), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(2607), - [anon_sym_COLON_COLON] = ACTIONS(1880), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2611), - [anon_sym_not] = ACTIONS(1872), - [anon_sym_compl] = ACTIONS(1872), - [anon_sym_DASH_DASH] = ACTIONS(1892), - [anon_sym_PLUS_PLUS] = ACTIONS(1892), - [anon_sym_sizeof] = ACTIONS(1894), - [anon_sym___alignof__] = ACTIONS(1896), - [anon_sym___alignof] = ACTIONS(1896), - [anon_sym__alignof] = ACTIONS(1896), - [anon_sym_alignof] = ACTIONS(1896), - [anon_sym__Alignof] = ACTIONS(1896), - [anon_sym_offsetof] = ACTIONS(1898), - [anon_sym__Generic] = ACTIONS(1900), - [anon_sym_asm] = ACTIONS(1902), - [anon_sym___asm__] = ACTIONS(1902), - [anon_sym___asm] = ACTIONS(1902), - [sym_number_literal] = ACTIONS(1904), - [anon_sym_L_SQUOTE] = ACTIONS(1906), - [anon_sym_u_SQUOTE] = ACTIONS(1906), - [anon_sym_U_SQUOTE] = ACTIONS(1906), - [anon_sym_u8_SQUOTE] = ACTIONS(1906), - [anon_sym_SQUOTE] = ACTIONS(1906), - [anon_sym_L_DQUOTE] = ACTIONS(1908), - [anon_sym_u_DQUOTE] = ACTIONS(1908), - [anon_sym_U_DQUOTE] = ACTIONS(1908), - [anon_sym_u8_DQUOTE] = ACTIONS(1908), - [anon_sym_DQUOTE] = ACTIONS(1908), - [sym_true] = ACTIONS(1910), - [sym_false] = ACTIONS(1910), - [anon_sym_NULL] = ACTIONS(1912), - [anon_sym_nullptr] = ACTIONS(1912), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1916), - [anon_sym_R_DQUOTE] = ACTIONS(1918), - [anon_sym_LR_DQUOTE] = ACTIONS(1918), - [anon_sym_uR_DQUOTE] = ACTIONS(1918), - [anon_sym_UR_DQUOTE] = ACTIONS(1918), - [anon_sym_u8R_DQUOTE] = ACTIONS(1918), - [anon_sym_co_await] = ACTIONS(1920), - [anon_sym_new] = ACTIONS(1922), - [anon_sym_requires] = ACTIONS(1924), - [sym_this] = ACTIONS(1910), - }, - [1406] = { - [sym_expression] = STATE(3553), - [sym__string] = STATE(3714), - [sym_conditional_expression] = STATE(3908), - [sym_assignment_expression] = STATE(3908), - [sym_pointer_expression] = STATE(3506), - [sym_unary_expression] = STATE(3908), - [sym_binary_expression] = STATE(3908), - [sym_update_expression] = STATE(3908), - [sym_cast_expression] = STATE(3908), - [sym_sizeof_expression] = STATE(3908), - [sym_alignof_expression] = STATE(3908), - [sym_offsetof_expression] = STATE(3908), - [sym_generic_expression] = STATE(3908), - [sym_subscript_expression] = STATE(3506), - [sym_call_expression] = STATE(3506), - [sym_gnu_asm_expression] = STATE(3908), - [sym_extension_expression] = STATE(3908), - [sym_field_expression] = STATE(3506), - [sym_compound_literal_expression] = STATE(3908), - [sym_parenthesized_expression] = STATE(3506), - [sym_char_literal] = STATE(3714), - [sym_concatenated_string] = STATE(3714), - [sym_string_literal] = STATE(2566), - [sym_null] = STATE(3908), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7868), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3908), - [sym_raw_string_literal] = STATE(2566), - [sym_co_await_expression] = STATE(3908), - [sym_new_expression] = STATE(3908), - [sym_delete_expression] = STATE(3908), - [sym_requires_clause] = STATE(3908), - [sym_requires_expression] = STATE(3908), - [sym_lambda_expression] = STATE(3908), - [sym_lambda_capture_specifier] = STATE(5415), - [sym_fold_expression] = STATE(3908), - [sym_parameter_pack_expansion] = STATE(3908), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3506), - [sym_qualified_type_identifier] = STATE(7868), - [sym_user_defined_literal] = STATE(3506), - [sym_identifier] = ACTIONS(2605), - [anon_sym_LPAREN2] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1870), - [anon_sym_TILDE] = ACTIONS(1870), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_PLUS] = ACTIONS(1872), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(2607), - [anon_sym_COLON_COLON] = ACTIONS(1880), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2611), - [anon_sym_not] = ACTIONS(1872), - [anon_sym_compl] = ACTIONS(1872), - [anon_sym_DASH_DASH] = ACTIONS(1892), - [anon_sym_PLUS_PLUS] = ACTIONS(1892), - [anon_sym_sizeof] = ACTIONS(1894), - [anon_sym___alignof__] = ACTIONS(1896), - [anon_sym___alignof] = ACTIONS(1896), - [anon_sym__alignof] = ACTIONS(1896), - [anon_sym_alignof] = ACTIONS(1896), - [anon_sym__Alignof] = ACTIONS(1896), - [anon_sym_offsetof] = ACTIONS(1898), - [anon_sym__Generic] = ACTIONS(1900), - [anon_sym_asm] = ACTIONS(1902), - [anon_sym___asm__] = ACTIONS(1902), - [anon_sym___asm] = ACTIONS(1902), - [sym_number_literal] = ACTIONS(1904), - [anon_sym_L_SQUOTE] = ACTIONS(1906), - [anon_sym_u_SQUOTE] = ACTIONS(1906), - [anon_sym_U_SQUOTE] = ACTIONS(1906), - [anon_sym_u8_SQUOTE] = ACTIONS(1906), - [anon_sym_SQUOTE] = ACTIONS(1906), - [anon_sym_L_DQUOTE] = ACTIONS(1908), - [anon_sym_u_DQUOTE] = ACTIONS(1908), - [anon_sym_U_DQUOTE] = ACTIONS(1908), - [anon_sym_u8_DQUOTE] = ACTIONS(1908), - [anon_sym_DQUOTE] = ACTIONS(1908), - [sym_true] = ACTIONS(1910), - [sym_false] = ACTIONS(1910), - [anon_sym_NULL] = ACTIONS(1912), - [anon_sym_nullptr] = ACTIONS(1912), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1916), - [anon_sym_R_DQUOTE] = ACTIONS(1918), - [anon_sym_LR_DQUOTE] = ACTIONS(1918), - [anon_sym_uR_DQUOTE] = ACTIONS(1918), - [anon_sym_UR_DQUOTE] = ACTIONS(1918), - [anon_sym_u8R_DQUOTE] = ACTIONS(1918), - [anon_sym_co_await] = ACTIONS(1920), - [anon_sym_new] = ACTIONS(1922), - [anon_sym_requires] = ACTIONS(1924), - [sym_this] = ACTIONS(1910), - }, - [1407] = { - [sym_expression] = STATE(3554), - [sym__string] = STATE(3714), - [sym_conditional_expression] = STATE(3908), - [sym_assignment_expression] = STATE(3908), - [sym_pointer_expression] = STATE(3506), - [sym_unary_expression] = STATE(3908), - [sym_binary_expression] = STATE(3908), - [sym_update_expression] = STATE(3908), - [sym_cast_expression] = STATE(3908), - [sym_sizeof_expression] = STATE(3908), - [sym_alignof_expression] = STATE(3908), - [sym_offsetof_expression] = STATE(3908), - [sym_generic_expression] = STATE(3908), - [sym_subscript_expression] = STATE(3506), - [sym_call_expression] = STATE(3506), - [sym_gnu_asm_expression] = STATE(3908), - [sym_extension_expression] = STATE(3908), - [sym_field_expression] = STATE(3506), - [sym_compound_literal_expression] = STATE(3908), - [sym_parenthesized_expression] = STATE(3506), - [sym_char_literal] = STATE(3714), - [sym_concatenated_string] = STATE(3714), - [sym_string_literal] = STATE(2566), - [sym_null] = STATE(3908), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7868), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3908), - [sym_raw_string_literal] = STATE(2566), - [sym_co_await_expression] = STATE(3908), - [sym_new_expression] = STATE(3908), - [sym_delete_expression] = STATE(3908), - [sym_requires_clause] = STATE(3908), - [sym_requires_expression] = STATE(3908), - [sym_lambda_expression] = STATE(3908), - [sym_lambda_capture_specifier] = STATE(5415), - [sym_fold_expression] = STATE(3908), - [sym_parameter_pack_expansion] = STATE(3908), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3506), - [sym_qualified_type_identifier] = STATE(7868), - [sym_user_defined_literal] = STATE(3506), - [sym_identifier] = ACTIONS(2605), - [anon_sym_LPAREN2] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1870), - [anon_sym_TILDE] = ACTIONS(1870), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_PLUS] = ACTIONS(1872), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(2607), - [anon_sym_COLON_COLON] = ACTIONS(1880), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2611), - [anon_sym_not] = ACTIONS(1872), - [anon_sym_compl] = ACTIONS(1872), - [anon_sym_DASH_DASH] = ACTIONS(1892), - [anon_sym_PLUS_PLUS] = ACTIONS(1892), - [anon_sym_sizeof] = ACTIONS(1894), - [anon_sym___alignof__] = ACTIONS(1896), - [anon_sym___alignof] = ACTIONS(1896), - [anon_sym__alignof] = ACTIONS(1896), - [anon_sym_alignof] = ACTIONS(1896), - [anon_sym__Alignof] = ACTIONS(1896), - [anon_sym_offsetof] = ACTIONS(1898), - [anon_sym__Generic] = ACTIONS(1900), - [anon_sym_asm] = ACTIONS(1902), - [anon_sym___asm__] = ACTIONS(1902), - [anon_sym___asm] = ACTIONS(1902), - [sym_number_literal] = ACTIONS(1904), - [anon_sym_L_SQUOTE] = ACTIONS(1906), - [anon_sym_u_SQUOTE] = ACTIONS(1906), - [anon_sym_U_SQUOTE] = ACTIONS(1906), - [anon_sym_u8_SQUOTE] = ACTIONS(1906), - [anon_sym_SQUOTE] = ACTIONS(1906), - [anon_sym_L_DQUOTE] = ACTIONS(1908), - [anon_sym_u_DQUOTE] = ACTIONS(1908), - [anon_sym_U_DQUOTE] = ACTIONS(1908), - [anon_sym_u8_DQUOTE] = ACTIONS(1908), - [anon_sym_DQUOTE] = ACTIONS(1908), - [sym_true] = ACTIONS(1910), - [sym_false] = ACTIONS(1910), - [anon_sym_NULL] = ACTIONS(1912), - [anon_sym_nullptr] = ACTIONS(1912), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1916), - [anon_sym_R_DQUOTE] = ACTIONS(1918), - [anon_sym_LR_DQUOTE] = ACTIONS(1918), - [anon_sym_uR_DQUOTE] = ACTIONS(1918), - [anon_sym_UR_DQUOTE] = ACTIONS(1918), - [anon_sym_u8R_DQUOTE] = ACTIONS(1918), - [anon_sym_co_await] = ACTIONS(1920), - [anon_sym_new] = ACTIONS(1922), - [anon_sym_requires] = ACTIONS(1924), - [sym_this] = ACTIONS(1910), - }, - [1408] = { - [sym_expression] = STATE(3782), - [sym__string] = STATE(4199), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(2935), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(2935), - [sym_call_expression] = STATE(2935), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(2935), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(2935), - [sym_char_literal] = STATE(4199), - [sym_concatenated_string] = STATE(4199), - [sym_string_literal] = STATE(3059), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3059), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2935), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(2935), - [sym_identifier] = ACTIONS(4334), - [anon_sym_LPAREN2] = ACTIONS(4658), - [anon_sym_BANG] = ACTIONS(3609), - [anon_sym_TILDE] = ACTIONS(3609), - [anon_sym_DASH] = ACTIONS(3607), - [anon_sym_PLUS] = ACTIONS(3607), - [anon_sym_STAR] = ACTIONS(4336), - [anon_sym_AMP] = ACTIONS(4336), - [anon_sym___extension__] = ACTIONS(3611), - [anon_sym_COLON_COLON] = ACTIONS(3613), + [1448] = { + [sym_expression] = STATE(3832), + [sym__string] = STATE(4269), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(2921), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(2921), + [sym_call_expression] = STATE(2921), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(2921), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(2921), + [sym_char_literal] = STATE(4269), + [sym_concatenated_string] = STATE(4269), + [sym_string_literal] = STATE(3102), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3102), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2921), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(2921), + [sym_identifier] = ACTIONS(4356), + [anon_sym_LPAREN2] = ACTIONS(4654), + [anon_sym_BANG] = ACTIONS(3617), + [anon_sym_TILDE] = ACTIONS(3617), + [anon_sym_DASH] = ACTIONS(3615), + [anon_sym_PLUS] = ACTIONS(3615), + [anon_sym_STAR] = ACTIONS(4346), + [anon_sym_AMP] = ACTIONS(4346), + [anon_sym___extension__] = ACTIONS(3619), + [anon_sym_COLON_COLON] = ACTIONS(3621), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3607), - [anon_sym_compl] = ACTIONS(3607), - [anon_sym_DASH_DASH] = ACTIONS(4338), - [anon_sym_PLUS_PLUS] = ACTIONS(4338), - [anon_sym_sizeof] = ACTIONS(3617), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3615), + [anon_sym_compl] = ACTIONS(3615), + [anon_sym_DASH_DASH] = ACTIONS(4358), + [anon_sym_PLUS_PLUS] = ACTIONS(4358), + [anon_sym_sizeof] = ACTIONS(3625), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -220359,896 +225360,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(113), [anon_sym___asm__] = ACTIONS(113), [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3619), - [anon_sym_L_SQUOTE] = ACTIONS(3621), - [anon_sym_u_SQUOTE] = ACTIONS(3621), - [anon_sym_U_SQUOTE] = ACTIONS(3621), - [anon_sym_u8_SQUOTE] = ACTIONS(3621), - [anon_sym_SQUOTE] = ACTIONS(3621), - [anon_sym_L_DQUOTE] = ACTIONS(3623), - [anon_sym_u_DQUOTE] = ACTIONS(3623), - [anon_sym_U_DQUOTE] = ACTIONS(3623), - [anon_sym_u8_DQUOTE] = ACTIONS(3623), - [anon_sym_DQUOTE] = ACTIONS(3623), + [sym_number_literal] = ACTIONS(3627), + [anon_sym_L_SQUOTE] = ACTIONS(3629), + [anon_sym_u_SQUOTE] = ACTIONS(3629), + [anon_sym_U_SQUOTE] = ACTIONS(3629), + [anon_sym_u8_SQUOTE] = ACTIONS(3629), + [anon_sym_SQUOTE] = ACTIONS(3629), + [anon_sym_L_DQUOTE] = ACTIONS(3631), + [anon_sym_u_DQUOTE] = ACTIONS(3631), + [anon_sym_U_DQUOTE] = ACTIONS(3631), + [anon_sym_u8_DQUOTE] = ACTIONS(3631), + [anon_sym_DQUOTE] = ACTIONS(3631), [sym_true] = ACTIONS(229), [sym_false] = ACTIONS(229), [anon_sym_NULL] = ACTIONS(123), [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3625), - [anon_sym_R_DQUOTE] = ACTIONS(3627), - [anon_sym_LR_DQUOTE] = ACTIONS(3627), - [anon_sym_uR_DQUOTE] = ACTIONS(3627), - [anon_sym_UR_DQUOTE] = ACTIONS(3627), - [anon_sym_u8R_DQUOTE] = ACTIONS(3627), - [anon_sym_co_await] = ACTIONS(3629), - [anon_sym_new] = ACTIONS(3631), - [anon_sym_requires] = ACTIONS(3633), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3633), + [anon_sym_R_DQUOTE] = ACTIONS(3635), + [anon_sym_LR_DQUOTE] = ACTIONS(3635), + [anon_sym_uR_DQUOTE] = ACTIONS(3635), + [anon_sym_UR_DQUOTE] = ACTIONS(3635), + [anon_sym_u8R_DQUOTE] = ACTIONS(3635), + [anon_sym_co_await] = ACTIONS(3637), + [anon_sym_new] = ACTIONS(3639), + [anon_sym_requires] = ACTIONS(3641), [sym_this] = ACTIONS(229), }, - [1409] = { - [sym_expression] = STATE(3556), - [sym__string] = STATE(3714), - [sym_conditional_expression] = STATE(3908), - [sym_assignment_expression] = STATE(3908), - [sym_pointer_expression] = STATE(3506), - [sym_unary_expression] = STATE(3908), - [sym_binary_expression] = STATE(3908), - [sym_update_expression] = STATE(3908), - [sym_cast_expression] = STATE(3908), - [sym_sizeof_expression] = STATE(3908), - [sym_alignof_expression] = STATE(3908), - [sym_offsetof_expression] = STATE(3908), - [sym_generic_expression] = STATE(3908), - [sym_subscript_expression] = STATE(3506), - [sym_call_expression] = STATE(3506), - [sym_gnu_asm_expression] = STATE(3908), - [sym_extension_expression] = STATE(3908), - [sym_field_expression] = STATE(3506), - [sym_compound_literal_expression] = STATE(3908), - [sym_parenthesized_expression] = STATE(3506), - [sym_char_literal] = STATE(3714), - [sym_concatenated_string] = STATE(3714), - [sym_string_literal] = STATE(2566), - [sym_null] = STATE(3908), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7868), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3908), - [sym_raw_string_literal] = STATE(2566), - [sym_co_await_expression] = STATE(3908), - [sym_new_expression] = STATE(3908), - [sym_delete_expression] = STATE(3908), - [sym_requires_clause] = STATE(3908), - [sym_requires_expression] = STATE(3908), - [sym_lambda_expression] = STATE(3908), - [sym_lambda_capture_specifier] = STATE(5415), - [sym_fold_expression] = STATE(3908), - [sym_parameter_pack_expansion] = STATE(3908), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3506), - [sym_qualified_type_identifier] = STATE(7868), - [sym_user_defined_literal] = STATE(3506), - [sym_identifier] = ACTIONS(2605), - [anon_sym_LPAREN2] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1870), - [anon_sym_TILDE] = ACTIONS(1870), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_PLUS] = ACTIONS(1872), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(2607), - [anon_sym_COLON_COLON] = ACTIONS(1880), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2611), - [anon_sym_not] = ACTIONS(1872), - [anon_sym_compl] = ACTIONS(1872), - [anon_sym_DASH_DASH] = ACTIONS(1892), - [anon_sym_PLUS_PLUS] = ACTIONS(1892), - [anon_sym_sizeof] = ACTIONS(1894), - [anon_sym___alignof__] = ACTIONS(1896), - [anon_sym___alignof] = ACTIONS(1896), - [anon_sym__alignof] = ACTIONS(1896), - [anon_sym_alignof] = ACTIONS(1896), - [anon_sym__Alignof] = ACTIONS(1896), - [anon_sym_offsetof] = ACTIONS(1898), - [anon_sym__Generic] = ACTIONS(1900), - [anon_sym_asm] = ACTIONS(1902), - [anon_sym___asm__] = ACTIONS(1902), - [anon_sym___asm] = ACTIONS(1902), - [sym_number_literal] = ACTIONS(1904), - [anon_sym_L_SQUOTE] = ACTIONS(1906), - [anon_sym_u_SQUOTE] = ACTIONS(1906), - [anon_sym_U_SQUOTE] = ACTIONS(1906), - [anon_sym_u8_SQUOTE] = ACTIONS(1906), - [anon_sym_SQUOTE] = ACTIONS(1906), - [anon_sym_L_DQUOTE] = ACTIONS(1908), - [anon_sym_u_DQUOTE] = ACTIONS(1908), - [anon_sym_U_DQUOTE] = ACTIONS(1908), - [anon_sym_u8_DQUOTE] = ACTIONS(1908), - [anon_sym_DQUOTE] = ACTIONS(1908), - [sym_true] = ACTIONS(1910), - [sym_false] = ACTIONS(1910), - [anon_sym_NULL] = ACTIONS(1912), - [anon_sym_nullptr] = ACTIONS(1912), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1916), - [anon_sym_R_DQUOTE] = ACTIONS(1918), - [anon_sym_LR_DQUOTE] = ACTIONS(1918), - [anon_sym_uR_DQUOTE] = ACTIONS(1918), - [anon_sym_UR_DQUOTE] = ACTIONS(1918), - [anon_sym_u8R_DQUOTE] = ACTIONS(1918), - [anon_sym_co_await] = ACTIONS(1920), - [anon_sym_new] = ACTIONS(1922), - [anon_sym_requires] = ACTIONS(1924), - [sym_this] = ACTIONS(1910), - }, - [1410] = { - [sym_expression] = STATE(3750), - [sym__string] = STATE(4199), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(2935), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(2935), - [sym_call_expression] = STATE(2935), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(2935), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(2935), - [sym_char_literal] = STATE(4199), - [sym_concatenated_string] = STATE(4199), - [sym_string_literal] = STATE(3059), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3059), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2935), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(2935), - [sym_identifier] = ACTIONS(4334), - [anon_sym_LPAREN2] = ACTIONS(4658), - [anon_sym_BANG] = ACTIONS(3609), - [anon_sym_TILDE] = ACTIONS(3609), - [anon_sym_DASH] = ACTIONS(3607), - [anon_sym_PLUS] = ACTIONS(3607), + [1449] = { + [sym_expression] = STATE(2434), + [sym__string] = STATE(3178), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(3178), + [sym_concatenated_string] = STATE(3178), + [sym_string_literal] = STATE(2317), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(2317), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), + [sym_identifier] = ACTIONS(2301), + [anon_sym_LPAREN2] = ACTIONS(4652), + [anon_sym_BANG] = ACTIONS(2305), + [anon_sym_TILDE] = ACTIONS(2305), + [anon_sym_DASH] = ACTIONS(2303), + [anon_sym_PLUS] = ACTIONS(2303), [anon_sym_STAR] = ACTIONS(4336), [anon_sym_AMP] = ACTIONS(4336), - [anon_sym___extension__] = ACTIONS(3611), - [anon_sym_COLON_COLON] = ACTIONS(3613), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3607), - [anon_sym_compl] = ACTIONS(3607), - [anon_sym_DASH_DASH] = ACTIONS(4338), - [anon_sym_PLUS_PLUS] = ACTIONS(4338), - [anon_sym_sizeof] = ACTIONS(3617), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3619), - [anon_sym_L_SQUOTE] = ACTIONS(3621), - [anon_sym_u_SQUOTE] = ACTIONS(3621), - [anon_sym_U_SQUOTE] = ACTIONS(3621), - [anon_sym_u8_SQUOTE] = ACTIONS(3621), - [anon_sym_SQUOTE] = ACTIONS(3621), - [anon_sym_L_DQUOTE] = ACTIONS(3623), - [anon_sym_u_DQUOTE] = ACTIONS(3623), - [anon_sym_U_DQUOTE] = ACTIONS(3623), - [anon_sym_u8_DQUOTE] = ACTIONS(3623), - [anon_sym_DQUOTE] = ACTIONS(3623), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3625), - [anon_sym_R_DQUOTE] = ACTIONS(3627), - [anon_sym_LR_DQUOTE] = ACTIONS(3627), - [anon_sym_uR_DQUOTE] = ACTIONS(3627), - [anon_sym_UR_DQUOTE] = ACTIONS(3627), - [anon_sym_u8R_DQUOTE] = ACTIONS(3627), - [anon_sym_co_await] = ACTIONS(3629), - [anon_sym_new] = ACTIONS(3631), - [anon_sym_requires] = ACTIONS(3633), - [sym_this] = ACTIONS(229), - }, - [1411] = { - [sym_expression] = STATE(3562), - [sym__string] = STATE(3714), - [sym_conditional_expression] = STATE(3908), - [sym_assignment_expression] = STATE(3908), - [sym_pointer_expression] = STATE(3506), - [sym_unary_expression] = STATE(3908), - [sym_binary_expression] = STATE(3908), - [sym_update_expression] = STATE(3908), - [sym_cast_expression] = STATE(3908), - [sym_sizeof_expression] = STATE(3908), - [sym_alignof_expression] = STATE(3908), - [sym_offsetof_expression] = STATE(3908), - [sym_generic_expression] = STATE(3908), - [sym_subscript_expression] = STATE(3506), - [sym_call_expression] = STATE(3506), - [sym_gnu_asm_expression] = STATE(3908), - [sym_extension_expression] = STATE(3908), - [sym_field_expression] = STATE(3506), - [sym_compound_literal_expression] = STATE(3908), - [sym_parenthesized_expression] = STATE(3506), - [sym_char_literal] = STATE(3714), - [sym_concatenated_string] = STATE(3714), - [sym_string_literal] = STATE(2566), - [sym_null] = STATE(3908), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7868), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3908), - [sym_raw_string_literal] = STATE(2566), - [sym_co_await_expression] = STATE(3908), - [sym_new_expression] = STATE(3908), - [sym_delete_expression] = STATE(3908), - [sym_requires_clause] = STATE(3908), - [sym_requires_expression] = STATE(3908), - [sym_lambda_expression] = STATE(3908), - [sym_lambda_capture_specifier] = STATE(5415), - [sym_fold_expression] = STATE(3908), - [sym_parameter_pack_expansion] = STATE(3908), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3506), - [sym_qualified_type_identifier] = STATE(7868), - [sym_user_defined_literal] = STATE(3506), - [sym_identifier] = ACTIONS(2605), - [anon_sym_LPAREN2] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1870), - [anon_sym_TILDE] = ACTIONS(1870), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_PLUS] = ACTIONS(1872), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(2607), - [anon_sym_COLON_COLON] = ACTIONS(1880), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2611), - [anon_sym_not] = ACTIONS(1872), - [anon_sym_compl] = ACTIONS(1872), - [anon_sym_DASH_DASH] = ACTIONS(1892), - [anon_sym_PLUS_PLUS] = ACTIONS(1892), - [anon_sym_sizeof] = ACTIONS(1894), - [anon_sym___alignof__] = ACTIONS(1896), - [anon_sym___alignof] = ACTIONS(1896), - [anon_sym__alignof] = ACTIONS(1896), - [anon_sym_alignof] = ACTIONS(1896), - [anon_sym__Alignof] = ACTIONS(1896), - [anon_sym_offsetof] = ACTIONS(1898), - [anon_sym__Generic] = ACTIONS(1900), - [anon_sym_asm] = ACTIONS(1902), - [anon_sym___asm__] = ACTIONS(1902), - [anon_sym___asm] = ACTIONS(1902), - [sym_number_literal] = ACTIONS(1904), - [anon_sym_L_SQUOTE] = ACTIONS(1906), - [anon_sym_u_SQUOTE] = ACTIONS(1906), - [anon_sym_U_SQUOTE] = ACTIONS(1906), - [anon_sym_u8_SQUOTE] = ACTIONS(1906), - [anon_sym_SQUOTE] = ACTIONS(1906), - [anon_sym_L_DQUOTE] = ACTIONS(1908), - [anon_sym_u_DQUOTE] = ACTIONS(1908), - [anon_sym_U_DQUOTE] = ACTIONS(1908), - [anon_sym_u8_DQUOTE] = ACTIONS(1908), - [anon_sym_DQUOTE] = ACTIONS(1908), - [sym_true] = ACTIONS(1910), - [sym_false] = ACTIONS(1910), - [anon_sym_NULL] = ACTIONS(1912), - [anon_sym_nullptr] = ACTIONS(1912), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1916), - [anon_sym_R_DQUOTE] = ACTIONS(1918), - [anon_sym_LR_DQUOTE] = ACTIONS(1918), - [anon_sym_uR_DQUOTE] = ACTIONS(1918), - [anon_sym_UR_DQUOTE] = ACTIONS(1918), - [anon_sym_u8R_DQUOTE] = ACTIONS(1918), - [anon_sym_co_await] = ACTIONS(1920), - [anon_sym_new] = ACTIONS(1922), - [anon_sym_requires] = ACTIONS(1924), - [sym_this] = ACTIONS(1910), - }, - [1412] = { - [sym_expression] = STATE(3563), - [sym__string] = STATE(3714), - [sym_conditional_expression] = STATE(3908), - [sym_assignment_expression] = STATE(3908), - [sym_pointer_expression] = STATE(3506), - [sym_unary_expression] = STATE(3908), - [sym_binary_expression] = STATE(3908), - [sym_update_expression] = STATE(3908), - [sym_cast_expression] = STATE(3908), - [sym_sizeof_expression] = STATE(3908), - [sym_alignof_expression] = STATE(3908), - [sym_offsetof_expression] = STATE(3908), - [sym_generic_expression] = STATE(3908), - [sym_subscript_expression] = STATE(3506), - [sym_call_expression] = STATE(3506), - [sym_gnu_asm_expression] = STATE(3908), - [sym_extension_expression] = STATE(3908), - [sym_field_expression] = STATE(3506), - [sym_compound_literal_expression] = STATE(3908), - [sym_parenthesized_expression] = STATE(3506), - [sym_char_literal] = STATE(3714), - [sym_concatenated_string] = STATE(3714), - [sym_string_literal] = STATE(2566), - [sym_null] = STATE(3908), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7868), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3908), - [sym_raw_string_literal] = STATE(2566), - [sym_co_await_expression] = STATE(3908), - [sym_new_expression] = STATE(3908), - [sym_delete_expression] = STATE(3908), - [sym_requires_clause] = STATE(3908), - [sym_requires_expression] = STATE(3908), - [sym_lambda_expression] = STATE(3908), - [sym_lambda_capture_specifier] = STATE(5415), - [sym_fold_expression] = STATE(3908), - [sym_parameter_pack_expansion] = STATE(3908), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3506), - [sym_qualified_type_identifier] = STATE(7868), - [sym_user_defined_literal] = STATE(3506), - [sym_identifier] = ACTIONS(2605), - [anon_sym_LPAREN2] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1870), - [anon_sym_TILDE] = ACTIONS(1870), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_PLUS] = ACTIONS(1872), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(2607), - [anon_sym_COLON_COLON] = ACTIONS(1880), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2611), - [anon_sym_not] = ACTIONS(1872), - [anon_sym_compl] = ACTIONS(1872), - [anon_sym_DASH_DASH] = ACTIONS(1892), - [anon_sym_PLUS_PLUS] = ACTIONS(1892), - [anon_sym_sizeof] = ACTIONS(1894), - [anon_sym___alignof__] = ACTIONS(1896), - [anon_sym___alignof] = ACTIONS(1896), - [anon_sym__alignof] = ACTIONS(1896), - [anon_sym_alignof] = ACTIONS(1896), - [anon_sym__Alignof] = ACTIONS(1896), - [anon_sym_offsetof] = ACTIONS(1898), - [anon_sym__Generic] = ACTIONS(1900), - [anon_sym_asm] = ACTIONS(1902), - [anon_sym___asm__] = ACTIONS(1902), - [anon_sym___asm] = ACTIONS(1902), - [sym_number_literal] = ACTIONS(1904), - [anon_sym_L_SQUOTE] = ACTIONS(1906), - [anon_sym_u_SQUOTE] = ACTIONS(1906), - [anon_sym_U_SQUOTE] = ACTIONS(1906), - [anon_sym_u8_SQUOTE] = ACTIONS(1906), - [anon_sym_SQUOTE] = ACTIONS(1906), - [anon_sym_L_DQUOTE] = ACTIONS(1908), - [anon_sym_u_DQUOTE] = ACTIONS(1908), - [anon_sym_U_DQUOTE] = ACTIONS(1908), - [anon_sym_u8_DQUOTE] = ACTIONS(1908), - [anon_sym_DQUOTE] = ACTIONS(1908), - [sym_true] = ACTIONS(1910), - [sym_false] = ACTIONS(1910), - [anon_sym_NULL] = ACTIONS(1912), - [anon_sym_nullptr] = ACTIONS(1912), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1916), - [anon_sym_R_DQUOTE] = ACTIONS(1918), - [anon_sym_LR_DQUOTE] = ACTIONS(1918), - [anon_sym_uR_DQUOTE] = ACTIONS(1918), - [anon_sym_UR_DQUOTE] = ACTIONS(1918), - [anon_sym_u8R_DQUOTE] = ACTIONS(1918), - [anon_sym_co_await] = ACTIONS(1920), - [anon_sym_new] = ACTIONS(1922), - [anon_sym_requires] = ACTIONS(1924), - [sym_this] = ACTIONS(1910), - }, - [1413] = { - [sym_expression] = STATE(3570), - [sym__string] = STATE(3714), - [sym_conditional_expression] = STATE(3908), - [sym_assignment_expression] = STATE(3908), - [sym_pointer_expression] = STATE(3506), - [sym_unary_expression] = STATE(3908), - [sym_binary_expression] = STATE(3908), - [sym_update_expression] = STATE(3908), - [sym_cast_expression] = STATE(3908), - [sym_sizeof_expression] = STATE(3908), - [sym_alignof_expression] = STATE(3908), - [sym_offsetof_expression] = STATE(3908), - [sym_generic_expression] = STATE(3908), - [sym_subscript_expression] = STATE(3506), - [sym_call_expression] = STATE(3506), - [sym_gnu_asm_expression] = STATE(3908), - [sym_extension_expression] = STATE(3908), - [sym_field_expression] = STATE(3506), - [sym_compound_literal_expression] = STATE(3908), - [sym_parenthesized_expression] = STATE(3506), - [sym_char_literal] = STATE(3714), - [sym_concatenated_string] = STATE(3714), - [sym_string_literal] = STATE(2566), - [sym_null] = STATE(3908), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7868), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3908), - [sym_raw_string_literal] = STATE(2566), - [sym_co_await_expression] = STATE(3908), - [sym_new_expression] = STATE(3908), - [sym_delete_expression] = STATE(3908), - [sym_requires_clause] = STATE(3908), - [sym_requires_expression] = STATE(3908), - [sym_lambda_expression] = STATE(3908), - [sym_lambda_capture_specifier] = STATE(5415), - [sym_fold_expression] = STATE(3908), - [sym_parameter_pack_expansion] = STATE(3908), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3506), - [sym_qualified_type_identifier] = STATE(7868), - [sym_user_defined_literal] = STATE(3506), - [sym_identifier] = ACTIONS(2605), - [anon_sym_LPAREN2] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1870), - [anon_sym_TILDE] = ACTIONS(1870), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_PLUS] = ACTIONS(1872), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(2607), - [anon_sym_COLON_COLON] = ACTIONS(1880), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2611), - [anon_sym_not] = ACTIONS(1872), - [anon_sym_compl] = ACTIONS(1872), - [anon_sym_DASH_DASH] = ACTIONS(1892), - [anon_sym_PLUS_PLUS] = ACTIONS(1892), - [anon_sym_sizeof] = ACTIONS(1894), - [anon_sym___alignof__] = ACTIONS(1896), - [anon_sym___alignof] = ACTIONS(1896), - [anon_sym__alignof] = ACTIONS(1896), - [anon_sym_alignof] = ACTIONS(1896), - [anon_sym__Alignof] = ACTIONS(1896), - [anon_sym_offsetof] = ACTIONS(1898), - [anon_sym__Generic] = ACTIONS(1900), - [anon_sym_asm] = ACTIONS(1902), - [anon_sym___asm__] = ACTIONS(1902), - [anon_sym___asm] = ACTIONS(1902), - [sym_number_literal] = ACTIONS(1904), - [anon_sym_L_SQUOTE] = ACTIONS(1906), - [anon_sym_u_SQUOTE] = ACTIONS(1906), - [anon_sym_U_SQUOTE] = ACTIONS(1906), - [anon_sym_u8_SQUOTE] = ACTIONS(1906), - [anon_sym_SQUOTE] = ACTIONS(1906), - [anon_sym_L_DQUOTE] = ACTIONS(1908), - [anon_sym_u_DQUOTE] = ACTIONS(1908), - [anon_sym_U_DQUOTE] = ACTIONS(1908), - [anon_sym_u8_DQUOTE] = ACTIONS(1908), - [anon_sym_DQUOTE] = ACTIONS(1908), - [sym_true] = ACTIONS(1910), - [sym_false] = ACTIONS(1910), - [anon_sym_NULL] = ACTIONS(1912), - [anon_sym_nullptr] = ACTIONS(1912), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1916), - [anon_sym_R_DQUOTE] = ACTIONS(1918), - [anon_sym_LR_DQUOTE] = ACTIONS(1918), - [anon_sym_uR_DQUOTE] = ACTIONS(1918), - [anon_sym_UR_DQUOTE] = ACTIONS(1918), - [anon_sym_u8R_DQUOTE] = ACTIONS(1918), - [anon_sym_co_await] = ACTIONS(1920), - [anon_sym_new] = ACTIONS(1922), - [anon_sym_requires] = ACTIONS(1924), - [sym_this] = ACTIONS(1910), - }, - [1414] = { - [sym_expression] = STATE(3584), - [sym__string] = STATE(3714), - [sym_conditional_expression] = STATE(3908), - [sym_assignment_expression] = STATE(3908), - [sym_pointer_expression] = STATE(3506), - [sym_unary_expression] = STATE(3908), - [sym_binary_expression] = STATE(3908), - [sym_update_expression] = STATE(3908), - [sym_cast_expression] = STATE(3908), - [sym_sizeof_expression] = STATE(3908), - [sym_alignof_expression] = STATE(3908), - [sym_offsetof_expression] = STATE(3908), - [sym_generic_expression] = STATE(3908), - [sym_subscript_expression] = STATE(3506), - [sym_call_expression] = STATE(3506), - [sym_gnu_asm_expression] = STATE(3908), - [sym_extension_expression] = STATE(3908), - [sym_field_expression] = STATE(3506), - [sym_compound_literal_expression] = STATE(3908), - [sym_parenthesized_expression] = STATE(3506), - [sym_char_literal] = STATE(3714), - [sym_concatenated_string] = STATE(3714), - [sym_string_literal] = STATE(2566), - [sym_null] = STATE(3908), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7868), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3908), - [sym_raw_string_literal] = STATE(2566), - [sym_co_await_expression] = STATE(3908), - [sym_new_expression] = STATE(3908), - [sym_delete_expression] = STATE(3908), - [sym_requires_clause] = STATE(3908), - [sym_requires_expression] = STATE(3908), - [sym_lambda_expression] = STATE(3908), - [sym_lambda_capture_specifier] = STATE(5415), - [sym_fold_expression] = STATE(3908), - [sym_parameter_pack_expansion] = STATE(3908), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3506), - [sym_qualified_type_identifier] = STATE(7868), - [sym_user_defined_literal] = STATE(3506), - [sym_identifier] = ACTIONS(2605), - [anon_sym_LPAREN2] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1870), - [anon_sym_TILDE] = ACTIONS(1870), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_PLUS] = ACTIONS(1872), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(2607), - [anon_sym_COLON_COLON] = ACTIONS(1880), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2611), - [anon_sym_not] = ACTIONS(1872), - [anon_sym_compl] = ACTIONS(1872), - [anon_sym_DASH_DASH] = ACTIONS(1892), - [anon_sym_PLUS_PLUS] = ACTIONS(1892), - [anon_sym_sizeof] = ACTIONS(1894), - [anon_sym___alignof__] = ACTIONS(1896), - [anon_sym___alignof] = ACTIONS(1896), - [anon_sym__alignof] = ACTIONS(1896), - [anon_sym_alignof] = ACTIONS(1896), - [anon_sym__Alignof] = ACTIONS(1896), - [anon_sym_offsetof] = ACTIONS(1898), - [anon_sym__Generic] = ACTIONS(1900), - [anon_sym_asm] = ACTIONS(1902), - [anon_sym___asm__] = ACTIONS(1902), - [anon_sym___asm] = ACTIONS(1902), - [sym_number_literal] = ACTIONS(1904), - [anon_sym_L_SQUOTE] = ACTIONS(1906), - [anon_sym_u_SQUOTE] = ACTIONS(1906), - [anon_sym_U_SQUOTE] = ACTIONS(1906), - [anon_sym_u8_SQUOTE] = ACTIONS(1906), - [anon_sym_SQUOTE] = ACTIONS(1906), - [anon_sym_L_DQUOTE] = ACTIONS(1908), - [anon_sym_u_DQUOTE] = ACTIONS(1908), - [anon_sym_U_DQUOTE] = ACTIONS(1908), - [anon_sym_u8_DQUOTE] = ACTIONS(1908), - [anon_sym_DQUOTE] = ACTIONS(1908), - [sym_true] = ACTIONS(1910), - [sym_false] = ACTIONS(1910), - [anon_sym_NULL] = ACTIONS(1912), - [anon_sym_nullptr] = ACTIONS(1912), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1916), - [anon_sym_R_DQUOTE] = ACTIONS(1918), - [anon_sym_LR_DQUOTE] = ACTIONS(1918), - [anon_sym_uR_DQUOTE] = ACTIONS(1918), - [anon_sym_UR_DQUOTE] = ACTIONS(1918), - [anon_sym_u8R_DQUOTE] = ACTIONS(1918), - [anon_sym_co_await] = ACTIONS(1920), - [anon_sym_new] = ACTIONS(1922), - [anon_sym_requires] = ACTIONS(1924), - [sym_this] = ACTIONS(1910), - }, - [1415] = { - [sym_expression] = STATE(3595), - [sym__string] = STATE(3714), - [sym_conditional_expression] = STATE(3908), - [sym_assignment_expression] = STATE(3908), - [sym_pointer_expression] = STATE(3506), - [sym_unary_expression] = STATE(3908), - [sym_binary_expression] = STATE(3908), - [sym_update_expression] = STATE(3908), - [sym_cast_expression] = STATE(3908), - [sym_sizeof_expression] = STATE(3908), - [sym_alignof_expression] = STATE(3908), - [sym_offsetof_expression] = STATE(3908), - [sym_generic_expression] = STATE(3908), - [sym_subscript_expression] = STATE(3506), - [sym_call_expression] = STATE(3506), - [sym_gnu_asm_expression] = STATE(3908), - [sym_extension_expression] = STATE(3908), - [sym_field_expression] = STATE(3506), - [sym_compound_literal_expression] = STATE(3908), - [sym_parenthesized_expression] = STATE(3506), - [sym_char_literal] = STATE(3714), - [sym_concatenated_string] = STATE(3714), - [sym_string_literal] = STATE(2566), - [sym_null] = STATE(3908), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7868), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3908), - [sym_raw_string_literal] = STATE(2566), - [sym_co_await_expression] = STATE(3908), - [sym_new_expression] = STATE(3908), - [sym_delete_expression] = STATE(3908), - [sym_requires_clause] = STATE(3908), - [sym_requires_expression] = STATE(3908), - [sym_lambda_expression] = STATE(3908), - [sym_lambda_capture_specifier] = STATE(5415), - [sym_fold_expression] = STATE(3908), - [sym_parameter_pack_expansion] = STATE(3908), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3506), - [sym_qualified_type_identifier] = STATE(7868), - [sym_user_defined_literal] = STATE(3506), - [sym_identifier] = ACTIONS(2605), - [anon_sym_LPAREN2] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1870), - [anon_sym_TILDE] = ACTIONS(1870), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_PLUS] = ACTIONS(1872), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(2607), - [anon_sym_COLON_COLON] = ACTIONS(1880), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2611), - [anon_sym_not] = ACTIONS(1872), - [anon_sym_compl] = ACTIONS(1872), - [anon_sym_DASH_DASH] = ACTIONS(1892), - [anon_sym_PLUS_PLUS] = ACTIONS(1892), - [anon_sym_sizeof] = ACTIONS(1894), - [anon_sym___alignof__] = ACTIONS(1896), - [anon_sym___alignof] = ACTIONS(1896), - [anon_sym__alignof] = ACTIONS(1896), - [anon_sym_alignof] = ACTIONS(1896), - [anon_sym__Alignof] = ACTIONS(1896), - [anon_sym_offsetof] = ACTIONS(1898), - [anon_sym__Generic] = ACTIONS(1900), - [anon_sym_asm] = ACTIONS(1902), - [anon_sym___asm__] = ACTIONS(1902), - [anon_sym___asm] = ACTIONS(1902), - [sym_number_literal] = ACTIONS(1904), - [anon_sym_L_SQUOTE] = ACTIONS(1906), - [anon_sym_u_SQUOTE] = ACTIONS(1906), - [anon_sym_U_SQUOTE] = ACTIONS(1906), - [anon_sym_u8_SQUOTE] = ACTIONS(1906), - [anon_sym_SQUOTE] = ACTIONS(1906), - [anon_sym_L_DQUOTE] = ACTIONS(1908), - [anon_sym_u_DQUOTE] = ACTIONS(1908), - [anon_sym_U_DQUOTE] = ACTIONS(1908), - [anon_sym_u8_DQUOTE] = ACTIONS(1908), - [anon_sym_DQUOTE] = ACTIONS(1908), - [sym_true] = ACTIONS(1910), - [sym_false] = ACTIONS(1910), - [anon_sym_NULL] = ACTIONS(1912), - [anon_sym_nullptr] = ACTIONS(1912), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1916), - [anon_sym_R_DQUOTE] = ACTIONS(1918), - [anon_sym_LR_DQUOTE] = ACTIONS(1918), - [anon_sym_uR_DQUOTE] = ACTIONS(1918), - [anon_sym_UR_DQUOTE] = ACTIONS(1918), - [anon_sym_u8R_DQUOTE] = ACTIONS(1918), - [anon_sym_co_await] = ACTIONS(1920), - [anon_sym_new] = ACTIONS(1922), - [anon_sym_requires] = ACTIONS(1924), - [sym_this] = ACTIONS(1910), - }, - [1416] = { - [sym_expression] = STATE(4441), - [sym__string] = STATE(4738), - [sym_conditional_expression] = STATE(4829), - [sym_assignment_expression] = STATE(4829), - [sym_pointer_expression] = STATE(3602), - [sym_unary_expression] = STATE(4829), - [sym_binary_expression] = STATE(4829), - [sym_update_expression] = STATE(4829), - [sym_cast_expression] = STATE(4829), - [sym_sizeof_expression] = STATE(4829), - [sym_alignof_expression] = STATE(4829), - [sym_offsetof_expression] = STATE(4829), - [sym_generic_expression] = STATE(4829), - [sym_subscript_expression] = STATE(3602), - [sym_call_expression] = STATE(3602), - [sym_gnu_asm_expression] = STATE(4829), - [sym_extension_expression] = STATE(4829), - [sym_field_expression] = STATE(3602), - [sym_compound_literal_expression] = STATE(4829), - [sym_parenthesized_expression] = STATE(3602), - [sym_char_literal] = STATE(4738), - [sym_concatenated_string] = STATE(4738), - [sym_string_literal] = STATE(3759), - [sym_null] = STATE(4829), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7804), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(4829), - [sym_raw_string_literal] = STATE(3759), - [sym_co_await_expression] = STATE(4829), - [sym_new_expression] = STATE(4829), - [sym_delete_expression] = STATE(4829), - [sym_requires_clause] = STATE(4829), - [sym_requires_expression] = STATE(4829), - [sym_lambda_expression] = STATE(4829), - [sym_lambda_capture_specifier] = STATE(5401), - [sym_fold_expression] = STATE(4829), - [sym_parameter_pack_expansion] = STATE(4829), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5773), - [sym_qualified_identifier] = STATE(3602), - [sym_qualified_type_identifier] = STATE(7804), - [sym_user_defined_literal] = STATE(3602), - [sym_identifier] = ACTIONS(3883), - [anon_sym_LPAREN2] = ACTIONS(3118), - [anon_sym_BANG] = ACTIONS(3120), - [anon_sym_TILDE] = ACTIONS(3120), - [anon_sym_DASH] = ACTIONS(3122), - [anon_sym_PLUS] = ACTIONS(3122), - [anon_sym_STAR] = ACTIONS(3124), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym___extension__] = ACTIONS(3885), - [anon_sym_COLON_COLON] = ACTIONS(3128), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(3889), - [anon_sym_not] = ACTIONS(3122), - [anon_sym_compl] = ACTIONS(3122), - [anon_sym_DASH_DASH] = ACTIONS(3142), - [anon_sym_PLUS_PLUS] = ACTIONS(3142), - [anon_sym_sizeof] = ACTIONS(3144), - [anon_sym___alignof__] = ACTIONS(3146), - [anon_sym___alignof] = ACTIONS(3146), - [anon_sym__alignof] = ACTIONS(3146), - [anon_sym_alignof] = ACTIONS(3146), - [anon_sym__Alignof] = ACTIONS(3146), - [anon_sym_offsetof] = ACTIONS(3148), - [anon_sym__Generic] = ACTIONS(3150), - [anon_sym_asm] = ACTIONS(3152), - [anon_sym___asm__] = ACTIONS(3152), - [anon_sym___asm] = ACTIONS(3152), - [sym_number_literal] = ACTIONS(3154), - [anon_sym_L_SQUOTE] = ACTIONS(3156), - [anon_sym_u_SQUOTE] = ACTIONS(3156), - [anon_sym_U_SQUOTE] = ACTIONS(3156), - [anon_sym_u8_SQUOTE] = ACTIONS(3156), - [anon_sym_SQUOTE] = ACTIONS(3156), - [anon_sym_L_DQUOTE] = ACTIONS(3158), - [anon_sym_u_DQUOTE] = ACTIONS(3158), - [anon_sym_U_DQUOTE] = ACTIONS(3158), - [anon_sym_u8_DQUOTE] = ACTIONS(3158), - [anon_sym_DQUOTE] = ACTIONS(3158), - [sym_true] = ACTIONS(3160), - [sym_false] = ACTIONS(3160), - [anon_sym_NULL] = ACTIONS(3162), - [anon_sym_nullptr] = ACTIONS(3162), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3172), - [anon_sym_R_DQUOTE] = ACTIONS(3174), - [anon_sym_LR_DQUOTE] = ACTIONS(3174), - [anon_sym_uR_DQUOTE] = ACTIONS(3174), - [anon_sym_UR_DQUOTE] = ACTIONS(3174), - [anon_sym_u8R_DQUOTE] = ACTIONS(3174), - [anon_sym_co_await] = ACTIONS(3176), - [anon_sym_new] = ACTIONS(3178), - [anon_sym_requires] = ACTIONS(3180), - [sym_this] = ACTIONS(3160), - }, - [1417] = { - [sym_expression] = STATE(2377), - [sym__string] = STATE(3181), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(3181), - [sym_concatenated_string] = STATE(3181), - [sym_string_literal] = STATE(2297), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(2297), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), - [sym_identifier] = ACTIONS(2305), - [anon_sym_LPAREN2] = ACTIONS(4691), - [anon_sym_BANG] = ACTIONS(2309), - [anon_sym_TILDE] = ACTIONS(2309), - [anon_sym_DASH] = ACTIONS(2307), - [anon_sym_PLUS] = ACTIONS(2307), - [anon_sym_STAR] = ACTIONS(4382), - [anon_sym_AMP] = ACTIONS(4382), - [anon_sym___extension__] = ACTIONS(2311), - [anon_sym_COLON_COLON] = ACTIONS(2313), + [anon_sym___extension__] = ACTIONS(2307), + [anon_sym_COLON_COLON] = ACTIONS(2309), [anon_sym_LBRACK] = ACTIONS(2020), [sym_primitive_type] = ACTIONS(1956), - [anon_sym_not] = ACTIONS(2307), - [anon_sym_compl] = ACTIONS(2307), - [anon_sym_DASH_DASH] = ACTIONS(4396), - [anon_sym_PLUS_PLUS] = ACTIONS(4396), - [anon_sym_sizeof] = ACTIONS(2315), + [anon_sym_not] = ACTIONS(2303), + [anon_sym_compl] = ACTIONS(2303), + [anon_sym_DASH_DASH] = ACTIONS(4352), + [anon_sym_PLUS_PLUS] = ACTIONS(4352), + [anon_sym_sizeof] = ACTIONS(2311), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), [anon_sym__alignof] = ACTIONS(1960), @@ -221259,96 +225460,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(1966), [anon_sym___asm__] = ACTIONS(1966), [anon_sym___asm] = ACTIONS(1966), - [sym_number_literal] = ACTIONS(2317), - [anon_sym_L_SQUOTE] = ACTIONS(2319), - [anon_sym_u_SQUOTE] = ACTIONS(2319), - [anon_sym_U_SQUOTE] = ACTIONS(2319), - [anon_sym_u8_SQUOTE] = ACTIONS(2319), - [anon_sym_SQUOTE] = ACTIONS(2319), - [anon_sym_L_DQUOTE] = ACTIONS(2321), - [anon_sym_u_DQUOTE] = ACTIONS(2321), - [anon_sym_U_DQUOTE] = ACTIONS(2321), - [anon_sym_u8_DQUOTE] = ACTIONS(2321), - [anon_sym_DQUOTE] = ACTIONS(2321), + [sym_number_literal] = ACTIONS(2313), + [anon_sym_L_SQUOTE] = ACTIONS(2315), + [anon_sym_u_SQUOTE] = ACTIONS(2315), + [anon_sym_U_SQUOTE] = ACTIONS(2315), + [anon_sym_u8_SQUOTE] = ACTIONS(2315), + [anon_sym_SQUOTE] = ACTIONS(2315), + [anon_sym_L_DQUOTE] = ACTIONS(2317), + [anon_sym_u_DQUOTE] = ACTIONS(2317), + [anon_sym_U_DQUOTE] = ACTIONS(2317), + [anon_sym_u8_DQUOTE] = ACTIONS(2317), + [anon_sym_DQUOTE] = ACTIONS(2317), [sym_true] = ACTIONS(1974), [sym_false] = ACTIONS(1974), [anon_sym_NULL] = ACTIONS(1976), [anon_sym_nullptr] = ACTIONS(1976), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(2323), - [anon_sym_R_DQUOTE] = ACTIONS(2325), - [anon_sym_LR_DQUOTE] = ACTIONS(2325), - [anon_sym_uR_DQUOTE] = ACTIONS(2325), - [anon_sym_UR_DQUOTE] = ACTIONS(2325), - [anon_sym_u8R_DQUOTE] = ACTIONS(2325), - [anon_sym_co_await] = ACTIONS(2327), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(2319), + [anon_sym_R_DQUOTE] = ACTIONS(2321), + [anon_sym_LR_DQUOTE] = ACTIONS(2321), + [anon_sym_uR_DQUOTE] = ACTIONS(2321), + [anon_sym_UR_DQUOTE] = ACTIONS(2321), + [anon_sym_u8R_DQUOTE] = ACTIONS(2321), + [anon_sym_co_await] = ACTIONS(2323), [anon_sym_new] = ACTIONS(2014), [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [1418] = { - [sym_expression] = STATE(2379), - [sym__string] = STATE(3181), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(3181), - [sym_concatenated_string] = STATE(3181), - [sym_string_literal] = STATE(2297), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(2297), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), - [sym_identifier] = ACTIONS(2305), - [anon_sym_LPAREN2] = ACTIONS(4691), - [anon_sym_BANG] = ACTIONS(2309), - [anon_sym_TILDE] = ACTIONS(2309), - [anon_sym_DASH] = ACTIONS(2307), - [anon_sym_PLUS] = ACTIONS(2307), - [anon_sym_STAR] = ACTIONS(4382), - [anon_sym_AMP] = ACTIONS(4382), - [anon_sym___extension__] = ACTIONS(2311), - [anon_sym_COLON_COLON] = ACTIONS(2313), + [1450] = { + [sym_expression] = STATE(2401), + [sym__string] = STATE(3178), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(3178), + [sym_concatenated_string] = STATE(3178), + [sym_string_literal] = STATE(2317), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(2317), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), + [sym_identifier] = ACTIONS(2301), + [anon_sym_LPAREN2] = ACTIONS(4652), + [anon_sym_BANG] = ACTIONS(2305), + [anon_sym_TILDE] = ACTIONS(2305), + [anon_sym_DASH] = ACTIONS(2303), + [anon_sym_PLUS] = ACTIONS(2303), + [anon_sym_STAR] = ACTIONS(4336), + [anon_sym_AMP] = ACTIONS(4336), + [anon_sym___extension__] = ACTIONS(2307), + [anon_sym_COLON_COLON] = ACTIONS(2309), [anon_sym_LBRACK] = ACTIONS(2020), [sym_primitive_type] = ACTIONS(1956), - [anon_sym_not] = ACTIONS(2307), - [anon_sym_compl] = ACTIONS(2307), - [anon_sym_DASH_DASH] = ACTIONS(4396), - [anon_sym_PLUS_PLUS] = ACTIONS(4396), - [anon_sym_sizeof] = ACTIONS(2315), + [anon_sym_not] = ACTIONS(2303), + [anon_sym_compl] = ACTIONS(2303), + [anon_sym_DASH_DASH] = ACTIONS(4352), + [anon_sym_PLUS_PLUS] = ACTIONS(4352), + [anon_sym_sizeof] = ACTIONS(2311), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), [anon_sym__alignof] = ACTIONS(1960), @@ -221359,195 +225560,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(1966), [anon_sym___asm__] = ACTIONS(1966), [anon_sym___asm] = ACTIONS(1966), - [sym_number_literal] = ACTIONS(2317), - [anon_sym_L_SQUOTE] = ACTIONS(2319), - [anon_sym_u_SQUOTE] = ACTIONS(2319), - [anon_sym_U_SQUOTE] = ACTIONS(2319), - [anon_sym_u8_SQUOTE] = ACTIONS(2319), - [anon_sym_SQUOTE] = ACTIONS(2319), - [anon_sym_L_DQUOTE] = ACTIONS(2321), - [anon_sym_u_DQUOTE] = ACTIONS(2321), - [anon_sym_U_DQUOTE] = ACTIONS(2321), - [anon_sym_u8_DQUOTE] = ACTIONS(2321), - [anon_sym_DQUOTE] = ACTIONS(2321), + [sym_number_literal] = ACTIONS(2313), + [anon_sym_L_SQUOTE] = ACTIONS(2315), + [anon_sym_u_SQUOTE] = ACTIONS(2315), + [anon_sym_U_SQUOTE] = ACTIONS(2315), + [anon_sym_u8_SQUOTE] = ACTIONS(2315), + [anon_sym_SQUOTE] = ACTIONS(2315), + [anon_sym_L_DQUOTE] = ACTIONS(2317), + [anon_sym_u_DQUOTE] = ACTIONS(2317), + [anon_sym_U_DQUOTE] = ACTIONS(2317), + [anon_sym_u8_DQUOTE] = ACTIONS(2317), + [anon_sym_DQUOTE] = ACTIONS(2317), [sym_true] = ACTIONS(1974), [sym_false] = ACTIONS(1974), [anon_sym_NULL] = ACTIONS(1976), [anon_sym_nullptr] = ACTIONS(1976), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(2323), - [anon_sym_R_DQUOTE] = ACTIONS(2325), - [anon_sym_LR_DQUOTE] = ACTIONS(2325), - [anon_sym_uR_DQUOTE] = ACTIONS(2325), - [anon_sym_UR_DQUOTE] = ACTIONS(2325), - [anon_sym_u8R_DQUOTE] = ACTIONS(2325), - [anon_sym_co_await] = ACTIONS(2327), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(2319), + [anon_sym_R_DQUOTE] = ACTIONS(2321), + [anon_sym_LR_DQUOTE] = ACTIONS(2321), + [anon_sym_uR_DQUOTE] = ACTIONS(2321), + [anon_sym_UR_DQUOTE] = ACTIONS(2321), + [anon_sym_u8R_DQUOTE] = ACTIONS(2321), + [anon_sym_co_await] = ACTIONS(2323), [anon_sym_new] = ACTIONS(2014), [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [1419] = { - [sym_expression] = STATE(3112), - [sym__string] = STATE(3235), - [sym_conditional_expression] = STATE(3373), - [sym_assignment_expression] = STATE(3373), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3373), - [sym_binary_expression] = STATE(3373), - [sym_update_expression] = STATE(3373), - [sym_cast_expression] = STATE(3373), - [sym_sizeof_expression] = STATE(3373), - [sym_alignof_expression] = STATE(3373), - [sym_offsetof_expression] = STATE(3373), - [sym_generic_expression] = STATE(3373), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3373), - [sym_extension_expression] = STATE(3373), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3373), - [sym_parenthesized_expression] = STATE(3365), - [sym_char_literal] = STATE(3235), - [sym_concatenated_string] = STATE(3235), - [sym_string_literal] = STATE(2358), - [sym_null] = STATE(3373), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7814), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3373), - [sym_raw_string_literal] = STATE(2358), - [sym_co_await_expression] = STATE(3373), - [sym_new_expression] = STATE(3373), - [sym_delete_expression] = STATE(3373), - [sym_requires_clause] = STATE(3373), - [sym_requires_expression] = STATE(3373), - [sym_lambda_expression] = STATE(3373), - [sym_lambda_capture_specifier] = STATE(5414), - [sym_fold_expression] = STATE(3373), - [sym_parameter_pack_expansion] = STATE(3373), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5737), - [sym_qualified_identifier] = STATE(3365), - [sym_qualified_type_identifier] = STATE(7814), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2453), - [anon_sym_LPAREN2] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(2455), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), - }, - [1420] = { - [sym_expression] = STATE(2377), - [sym__string] = STATE(2870), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(2870), - [sym_concatenated_string] = STATE(2870), - [sym_string_literal] = STATE(1942), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(1942), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), + [1451] = { + [sym_expression] = STATE(2434), + [sym__string] = STATE(2887), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(2887), + [sym_concatenated_string] = STATE(2887), + [sym_string_literal] = STATE(1947), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(1947), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), [sym_identifier] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(4668), + [anon_sym_LPAREN2] = ACTIONS(4681), [anon_sym_BANG] = ACTIONS(1948), [anon_sym_TILDE] = ACTIONS(1948), [anon_sym_DASH] = ACTIONS(1946), [anon_sym_PLUS] = ACTIONS(1946), - [anon_sym_STAR] = ACTIONS(4336), - [anon_sym_AMP] = ACTIONS(4336), + [anon_sym_STAR] = ACTIONS(4346), + [anon_sym_AMP] = ACTIONS(4346), [anon_sym___extension__] = ACTIONS(1950), [anon_sym_COLON_COLON] = ACTIONS(1952), [anon_sym_LBRACK] = ACTIONS(2020), [sym_primitive_type] = ACTIONS(1956), [anon_sym_not] = ACTIONS(1946), [anon_sym_compl] = ACTIONS(1946), - [anon_sym_DASH_DASH] = ACTIONS(4417), - [anon_sym_PLUS_PLUS] = ACTIONS(4417), + [anon_sym_DASH_DASH] = ACTIONS(4348), + [anon_sym_PLUS_PLUS] = ACTIONS(4348), [anon_sym_sizeof] = ACTIONS(1958), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), @@ -221576,7 +225677,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1976), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(1980), [anon_sym_R_DQUOTE] = ACTIONS(1982), [anon_sym_LR_DQUOTE] = ACTIONS(1982), @@ -221588,66 +225689,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [1421] = { - [sym_expression] = STATE(2379), - [sym__string] = STATE(2870), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(2870), - [sym_concatenated_string] = STATE(2870), - [sym_string_literal] = STATE(1942), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(1942), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), + [1452] = { + [sym_expression] = STATE(2401), + [sym__string] = STATE(2887), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(2887), + [sym_concatenated_string] = STATE(2887), + [sym_string_literal] = STATE(1947), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(1947), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), [sym_identifier] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(4668), + [anon_sym_LPAREN2] = ACTIONS(4681), [anon_sym_BANG] = ACTIONS(1948), [anon_sym_TILDE] = ACTIONS(1948), [anon_sym_DASH] = ACTIONS(1946), [anon_sym_PLUS] = ACTIONS(1946), - [anon_sym_STAR] = ACTIONS(4336), - [anon_sym_AMP] = ACTIONS(4336), + [anon_sym_STAR] = ACTIONS(4346), + [anon_sym_AMP] = ACTIONS(4346), [anon_sym___extension__] = ACTIONS(1950), [anon_sym_COLON_COLON] = ACTIONS(1952), [anon_sym_LBRACK] = ACTIONS(2020), [sym_primitive_type] = ACTIONS(1956), [anon_sym_not] = ACTIONS(1946), [anon_sym_compl] = ACTIONS(1946), - [anon_sym_DASH_DASH] = ACTIONS(4417), - [anon_sym_PLUS_PLUS] = ACTIONS(4417), + [anon_sym_DASH_DASH] = ACTIONS(4348), + [anon_sym_PLUS_PLUS] = ACTIONS(4348), [anon_sym_sizeof] = ACTIONS(1958), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), @@ -221676,7 +225777,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1976), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(1980), [anon_sym_R_DQUOTE] = ACTIONS(1982), [anon_sym_LR_DQUOTE] = ACTIONS(1982), @@ -221688,967 +225789,167 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [1422] = { - [sym_expression] = STATE(4474), - [sym__string] = STATE(4738), - [sym_conditional_expression] = STATE(4829), - [sym_assignment_expression] = STATE(4829), - [sym_pointer_expression] = STATE(3602), - [sym_unary_expression] = STATE(4829), - [sym_binary_expression] = STATE(4829), - [sym_update_expression] = STATE(4829), - [sym_cast_expression] = STATE(4829), - [sym_sizeof_expression] = STATE(4829), - [sym_alignof_expression] = STATE(4829), - [sym_offsetof_expression] = STATE(4829), - [sym_generic_expression] = STATE(4829), - [sym_subscript_expression] = STATE(3602), - [sym_call_expression] = STATE(3602), - [sym_gnu_asm_expression] = STATE(4829), - [sym_extension_expression] = STATE(4829), - [sym_field_expression] = STATE(3602), - [sym_compound_literal_expression] = STATE(4829), - [sym_parenthesized_expression] = STATE(3602), - [sym_char_literal] = STATE(4738), - [sym_concatenated_string] = STATE(4738), - [sym_string_literal] = STATE(3759), - [sym_null] = STATE(4829), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7804), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(4829), - [sym_raw_string_literal] = STATE(3759), - [sym_co_await_expression] = STATE(4829), - [sym_new_expression] = STATE(4829), - [sym_delete_expression] = STATE(4829), - [sym_requires_clause] = STATE(4829), - [sym_requires_expression] = STATE(4829), - [sym_lambda_expression] = STATE(4829), - [sym_lambda_capture_specifier] = STATE(5401), - [sym_fold_expression] = STATE(4829), - [sym_parameter_pack_expansion] = STATE(4829), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5773), - [sym_qualified_identifier] = STATE(3602), - [sym_qualified_type_identifier] = STATE(7804), - [sym_user_defined_literal] = STATE(3602), - [sym_identifier] = ACTIONS(3883), - [anon_sym_LPAREN2] = ACTIONS(3118), - [anon_sym_BANG] = ACTIONS(3120), - [anon_sym_TILDE] = ACTIONS(3120), - [anon_sym_DASH] = ACTIONS(3122), - [anon_sym_PLUS] = ACTIONS(3122), - [anon_sym_STAR] = ACTIONS(3124), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym___extension__] = ACTIONS(3885), - [anon_sym_COLON_COLON] = ACTIONS(3128), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(3889), - [anon_sym_not] = ACTIONS(3122), - [anon_sym_compl] = ACTIONS(3122), - [anon_sym_DASH_DASH] = ACTIONS(3142), - [anon_sym_PLUS_PLUS] = ACTIONS(3142), - [anon_sym_sizeof] = ACTIONS(3144), - [anon_sym___alignof__] = ACTIONS(3146), - [anon_sym___alignof] = ACTIONS(3146), - [anon_sym__alignof] = ACTIONS(3146), - [anon_sym_alignof] = ACTIONS(3146), - [anon_sym__Alignof] = ACTIONS(3146), - [anon_sym_offsetof] = ACTIONS(3148), - [anon_sym__Generic] = ACTIONS(3150), - [anon_sym_asm] = ACTIONS(3152), - [anon_sym___asm__] = ACTIONS(3152), - [anon_sym___asm] = ACTIONS(3152), - [sym_number_literal] = ACTIONS(3154), - [anon_sym_L_SQUOTE] = ACTIONS(3156), - [anon_sym_u_SQUOTE] = ACTIONS(3156), - [anon_sym_U_SQUOTE] = ACTIONS(3156), - [anon_sym_u8_SQUOTE] = ACTIONS(3156), - [anon_sym_SQUOTE] = ACTIONS(3156), - [anon_sym_L_DQUOTE] = ACTIONS(3158), - [anon_sym_u_DQUOTE] = ACTIONS(3158), - [anon_sym_U_DQUOTE] = ACTIONS(3158), - [anon_sym_u8_DQUOTE] = ACTIONS(3158), - [anon_sym_DQUOTE] = ACTIONS(3158), - [sym_true] = ACTIONS(3160), - [sym_false] = ACTIONS(3160), - [anon_sym_NULL] = ACTIONS(3162), - [anon_sym_nullptr] = ACTIONS(3162), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3172), - [anon_sym_R_DQUOTE] = ACTIONS(3174), - [anon_sym_LR_DQUOTE] = ACTIONS(3174), - [anon_sym_uR_DQUOTE] = ACTIONS(3174), - [anon_sym_UR_DQUOTE] = ACTIONS(3174), - [anon_sym_u8R_DQUOTE] = ACTIONS(3174), - [anon_sym_co_await] = ACTIONS(3176), - [anon_sym_new] = ACTIONS(3178), - [anon_sym_requires] = ACTIONS(3180), - [sym_this] = ACTIONS(3160), - }, - [1423] = { - [sym_expression] = STATE(4476), - [sym__string] = STATE(4738), - [sym_conditional_expression] = STATE(4829), - [sym_assignment_expression] = STATE(4829), - [sym_pointer_expression] = STATE(3602), - [sym_unary_expression] = STATE(4829), - [sym_binary_expression] = STATE(4829), - [sym_update_expression] = STATE(4829), - [sym_cast_expression] = STATE(4829), - [sym_sizeof_expression] = STATE(4829), - [sym_alignof_expression] = STATE(4829), - [sym_offsetof_expression] = STATE(4829), - [sym_generic_expression] = STATE(4829), - [sym_subscript_expression] = STATE(3602), - [sym_call_expression] = STATE(3602), - [sym_gnu_asm_expression] = STATE(4829), - [sym_extension_expression] = STATE(4829), - [sym_field_expression] = STATE(3602), - [sym_compound_literal_expression] = STATE(4829), - [sym_parenthesized_expression] = STATE(3602), - [sym_char_literal] = STATE(4738), - [sym_concatenated_string] = STATE(4738), - [sym_string_literal] = STATE(3759), - [sym_null] = STATE(4829), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7804), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(4829), - [sym_raw_string_literal] = STATE(3759), - [sym_co_await_expression] = STATE(4829), - [sym_new_expression] = STATE(4829), - [sym_delete_expression] = STATE(4829), - [sym_requires_clause] = STATE(4829), - [sym_requires_expression] = STATE(4829), - [sym_lambda_expression] = STATE(4829), - [sym_lambda_capture_specifier] = STATE(5401), - [sym_fold_expression] = STATE(4829), - [sym_parameter_pack_expansion] = STATE(4829), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5773), - [sym_qualified_identifier] = STATE(3602), - [sym_qualified_type_identifier] = STATE(7804), - [sym_user_defined_literal] = STATE(3602), - [sym_identifier] = ACTIONS(3883), - [anon_sym_LPAREN2] = ACTIONS(3118), - [anon_sym_BANG] = ACTIONS(3120), - [anon_sym_TILDE] = ACTIONS(3120), - [anon_sym_DASH] = ACTIONS(3122), - [anon_sym_PLUS] = ACTIONS(3122), - [anon_sym_STAR] = ACTIONS(3124), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym___extension__] = ACTIONS(3885), - [anon_sym_COLON_COLON] = ACTIONS(3128), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(3889), - [anon_sym_not] = ACTIONS(3122), - [anon_sym_compl] = ACTIONS(3122), - [anon_sym_DASH_DASH] = ACTIONS(3142), - [anon_sym_PLUS_PLUS] = ACTIONS(3142), - [anon_sym_sizeof] = ACTIONS(3144), - [anon_sym___alignof__] = ACTIONS(3146), - [anon_sym___alignof] = ACTIONS(3146), - [anon_sym__alignof] = ACTIONS(3146), - [anon_sym_alignof] = ACTIONS(3146), - [anon_sym__Alignof] = ACTIONS(3146), - [anon_sym_offsetof] = ACTIONS(3148), - [anon_sym__Generic] = ACTIONS(3150), - [anon_sym_asm] = ACTIONS(3152), - [anon_sym___asm__] = ACTIONS(3152), - [anon_sym___asm] = ACTIONS(3152), - [sym_number_literal] = ACTIONS(3154), - [anon_sym_L_SQUOTE] = ACTIONS(3156), - [anon_sym_u_SQUOTE] = ACTIONS(3156), - [anon_sym_U_SQUOTE] = ACTIONS(3156), - [anon_sym_u8_SQUOTE] = ACTIONS(3156), - [anon_sym_SQUOTE] = ACTIONS(3156), - [anon_sym_L_DQUOTE] = ACTIONS(3158), - [anon_sym_u_DQUOTE] = ACTIONS(3158), - [anon_sym_U_DQUOTE] = ACTIONS(3158), - [anon_sym_u8_DQUOTE] = ACTIONS(3158), - [anon_sym_DQUOTE] = ACTIONS(3158), - [sym_true] = ACTIONS(3160), - [sym_false] = ACTIONS(3160), - [anon_sym_NULL] = ACTIONS(3162), - [anon_sym_nullptr] = ACTIONS(3162), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3172), - [anon_sym_R_DQUOTE] = ACTIONS(3174), - [anon_sym_LR_DQUOTE] = ACTIONS(3174), - [anon_sym_uR_DQUOTE] = ACTIONS(3174), - [anon_sym_UR_DQUOTE] = ACTIONS(3174), - [anon_sym_u8R_DQUOTE] = ACTIONS(3174), - [anon_sym_co_await] = ACTIONS(3176), - [anon_sym_new] = ACTIONS(3178), - [anon_sym_requires] = ACTIONS(3180), - [sym_this] = ACTIONS(3160), - }, - [1424] = { - [sym_expression] = STATE(4288), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), - }, - [1425] = { - [sym_expression] = STATE(4290), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), - }, - [1426] = { - [sym_expression] = STATE(4269), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), - }, - [1427] = { - [sym_expression] = STATE(4302), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), - }, - [1428] = { - [sym_expression] = STATE(4745), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3568), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3568), - [sym_call_expression] = STATE(3568), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3568), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3568), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3568), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3568), - [sym_identifier] = ACTIONS(3867), - [anon_sym_LPAREN2] = ACTIONS(4642), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_TILDE] = ACTIONS(3871), - [anon_sym_DASH] = ACTIONS(3869), - [anon_sym_PLUS] = ACTIONS(3869), - [anon_sym_STAR] = ACTIONS(4312), - [anon_sym_AMP] = ACTIONS(4312), - [anon_sym___extension__] = ACTIONS(3873), - [anon_sym_COLON_COLON] = ACTIONS(3875), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3869), - [anon_sym_compl] = ACTIONS(3869), - [anon_sym_DASH_DASH] = ACTIONS(4404), - [anon_sym_PLUS_PLUS] = ACTIONS(4404), - [anon_sym_sizeof] = ACTIONS(3877), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3879), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3881), - [anon_sym_new] = ACTIONS(3865), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), - }, - [1429] = { - [sym_expression] = STATE(4754), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), - [anon_sym_COLON_COLON] = ACTIONS(47), + [1453] = { + [sym_expression] = STATE(3214), + [sym__string] = STATE(3393), + [sym_conditional_expression] = STATE(3401), + [sym_assignment_expression] = STATE(3401), + [sym_pointer_expression] = STATE(3405), + [sym_unary_expression] = STATE(3401), + [sym_binary_expression] = STATE(3401), + [sym_update_expression] = STATE(3401), + [sym_cast_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3401), + [sym_alignof_expression] = STATE(3401), + [sym_offsetof_expression] = STATE(3401), + [sym_generic_expression] = STATE(3401), + [sym_subscript_expression] = STATE(3405), + [sym_call_expression] = STATE(3405), + [sym_gnu_asm_expression] = STATE(3401), + [sym_extension_expression] = STATE(3401), + [sym_field_expression] = STATE(3405), + [sym_compound_literal_expression] = STATE(3401), + [sym_parenthesized_expression] = STATE(3405), + [sym_char_literal] = STATE(3393), + [sym_concatenated_string] = STATE(3393), + [sym_string_literal] = STATE(2380), + [sym_null] = STATE(3401), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7745), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3401), + [sym_raw_string_literal] = STATE(2380), + [sym_co_await_expression] = STATE(3401), + [sym_new_expression] = STATE(3401), + [sym_delete_expression] = STATE(3401), + [sym_requires_clause] = STATE(3401), + [sym_requires_expression] = STATE(3401), + [sym_lambda_expression] = STATE(3401), + [sym_lambda_capture_specifier] = STATE(5494), + [sym_fold_expression] = STATE(3401), + [sym_parameter_pack_expansion] = STATE(3401), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5833), + [sym_qualified_identifier] = STATE(3405), + [sym_qualified_type_identifier] = STATE(7745), + [sym_user_defined_literal] = STATE(3405), + [sym_identifier] = ACTIONS(2453), + [anon_sym_LPAREN2] = ACTIONS(2018), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym___extension__] = ACTIONS(2455), + [anon_sym_COLON_COLON] = ACTIONS(1804), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), + [sym_primitive_type] = ACTIONS(2459), + [anon_sym_not] = ACTIONS(1796), + [anon_sym_compl] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_sizeof] = ACTIONS(1824), + [anon_sym___alignof__] = ACTIONS(1826), + [anon_sym___alignof] = ACTIONS(1826), + [anon_sym__alignof] = ACTIONS(1826), + [anon_sym_alignof] = ACTIONS(1826), + [anon_sym__Alignof] = ACTIONS(1826), + [anon_sym_offsetof] = ACTIONS(1828), + [anon_sym__Generic] = ACTIONS(1830), + [anon_sym_asm] = ACTIONS(1832), + [anon_sym___asm__] = ACTIONS(1832), + [anon_sym___asm] = ACTIONS(1832), + [sym_number_literal] = ACTIONS(1834), + [anon_sym_L_SQUOTE] = ACTIONS(1836), + [anon_sym_u_SQUOTE] = ACTIONS(1836), + [anon_sym_U_SQUOTE] = ACTIONS(1836), + [anon_sym_u8_SQUOTE] = ACTIONS(1836), + [anon_sym_SQUOTE] = ACTIONS(1836), + [anon_sym_L_DQUOTE] = ACTIONS(1838), + [anon_sym_u_DQUOTE] = ACTIONS(1838), + [anon_sym_U_DQUOTE] = ACTIONS(1838), + [anon_sym_u8_DQUOTE] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym_true] = ACTIONS(1840), + [sym_false] = ACTIONS(1840), + [anon_sym_NULL] = ACTIONS(1842), + [anon_sym_nullptr] = ACTIONS(1842), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(1852), + [anon_sym_R_DQUOTE] = ACTIONS(1854), + [anon_sym_LR_DQUOTE] = ACTIONS(1854), + [anon_sym_uR_DQUOTE] = ACTIONS(1854), + [anon_sym_UR_DQUOTE] = ACTIONS(1854), + [anon_sym_u8R_DQUOTE] = ACTIONS(1854), + [anon_sym_co_await] = ACTIONS(1856), + [anon_sym_new] = ACTIONS(1858), + [anon_sym_requires] = ACTIONS(1860), + [sym_this] = ACTIONS(1840), }, - [1430] = { - [sym_expression] = STATE(4490), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3568), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3568), - [sym_call_expression] = STATE(3568), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3568), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3568), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3568), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3568), - [sym_identifier] = ACTIONS(3867), - [anon_sym_LPAREN2] = ACTIONS(4642), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_TILDE] = ACTIONS(3871), - [anon_sym_DASH] = ACTIONS(3869), - [anon_sym_PLUS] = ACTIONS(3869), - [anon_sym_STAR] = ACTIONS(4312), - [anon_sym_AMP] = ACTIONS(4312), - [anon_sym___extension__] = ACTIONS(3873), - [anon_sym_COLON_COLON] = ACTIONS(3875), + [1454] = { + [sym_expression] = STATE(4676), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3597), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3597), + [sym_call_expression] = STATE(3597), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3597), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3597), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3597), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3597), + [sym_identifier] = ACTIONS(3857), + [anon_sym_LPAREN2] = ACTIONS(4648), + [anon_sym_BANG] = ACTIONS(3861), + [anon_sym_TILDE] = ACTIONS(3861), + [anon_sym_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3859), + [anon_sym_STAR] = ACTIONS(4366), + [anon_sym_AMP] = ACTIONS(4366), + [anon_sym___extension__] = ACTIONS(3863), + [anon_sym_COLON_COLON] = ACTIONS(3865), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3869), - [anon_sym_compl] = ACTIONS(3869), - [anon_sym_DASH_DASH] = ACTIONS(4404), - [anon_sym_PLUS_PLUS] = ACTIONS(4404), - [anon_sym_sizeof] = ACTIONS(3877), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3879), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3881), - [anon_sym_new] = ACTIONS(3865), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), - }, - [1431] = { - [sym_expression] = STATE(4495), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3568), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3568), - [sym_call_expression] = STATE(3568), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3568), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3568), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3568), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3568), - [sym_identifier] = ACTIONS(3867), - [anon_sym_LPAREN2] = ACTIONS(4642), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_TILDE] = ACTIONS(3871), - [anon_sym_DASH] = ACTIONS(3869), - [anon_sym_PLUS] = ACTIONS(3869), - [anon_sym_STAR] = ACTIONS(4312), - [anon_sym_AMP] = ACTIONS(4312), - [anon_sym___extension__] = ACTIONS(3873), - [anon_sym_COLON_COLON] = ACTIONS(3875), - [anon_sym_LBRACK] = ACTIONS(4939), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3869), - [anon_sym_compl] = ACTIONS(3869), - [anon_sym_DASH_DASH] = ACTIONS(4404), - [anon_sym_PLUS_PLUS] = ACTIONS(4404), - [anon_sym_sizeof] = ACTIONS(3877), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3859), + [anon_sym_compl] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(4368), + [anon_sym_PLUS_PLUS] = ACTIONS(4368), + [anon_sym_sizeof] = ACTIONS(3867), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -222676,74 +225977,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3879), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3869), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3881), - [anon_sym_new] = ACTIONS(3865), + [anon_sym_co_await] = ACTIONS(3871), + [anon_sym_new] = ACTIONS(3873), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1432] = { - [sym_expression] = STATE(4272), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1455] = { + [sym_expression] = STATE(4746), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -222776,7 +226077,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -222788,167 +226089,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1433] = { - [sym_expression] = STATE(4510), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3568), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3568), - [sym_call_expression] = STATE(3568), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3568), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3568), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3568), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3568), - [sym_identifier] = ACTIONS(3867), - [anon_sym_LPAREN2] = ACTIONS(4642), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_TILDE] = ACTIONS(3871), - [anon_sym_DASH] = ACTIONS(3869), - [anon_sym_PLUS] = ACTIONS(3869), - [anon_sym_STAR] = ACTIONS(4312), - [anon_sym_AMP] = ACTIONS(4312), - [anon_sym___extension__] = ACTIONS(3873), - [anon_sym_COLON_COLON] = ACTIONS(3875), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3869), - [anon_sym_compl] = ACTIONS(3869), - [anon_sym_DASH_DASH] = ACTIONS(4404), - [anon_sym_PLUS_PLUS] = ACTIONS(4404), - [anon_sym_sizeof] = ACTIONS(3877), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3879), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3881), - [anon_sym_new] = ACTIONS(3865), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), - }, - [1434] = { - [sym_expression] = STATE(4496), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3568), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3568), - [sym_call_expression] = STATE(3568), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3568), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3568), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3568), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3568), - [sym_identifier] = ACTIONS(3867), - [anon_sym_LPAREN2] = ACTIONS(4642), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_TILDE] = ACTIONS(3871), - [anon_sym_DASH] = ACTIONS(3869), - [anon_sym_PLUS] = ACTIONS(3869), - [anon_sym_STAR] = ACTIONS(4312), - [anon_sym_AMP] = ACTIONS(4312), - [anon_sym___extension__] = ACTIONS(3873), - [anon_sym_COLON_COLON] = ACTIONS(3875), + [1456] = { + [sym_expression] = STATE(4514), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3597), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3597), + [sym_call_expression] = STATE(3597), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3597), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3597), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3597), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3597), + [sym_identifier] = ACTIONS(3857), + [anon_sym_LPAREN2] = ACTIONS(4648), + [anon_sym_BANG] = ACTIONS(3861), + [anon_sym_TILDE] = ACTIONS(3861), + [anon_sym_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3859), + [anon_sym_STAR] = ACTIONS(4366), + [anon_sym_AMP] = ACTIONS(4366), + [anon_sym___extension__] = ACTIONS(3863), + [anon_sym_COLON_COLON] = ACTIONS(3865), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3869), - [anon_sym_compl] = ACTIONS(3869), - [anon_sym_DASH_DASH] = ACTIONS(4404), - [anon_sym_PLUS_PLUS] = ACTIONS(4404), - [anon_sym_sizeof] = ACTIONS(3877), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3859), + [anon_sym_compl] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(4368), + [anon_sym_PLUS_PLUS] = ACTIONS(4368), + [anon_sym_sizeof] = ACTIONS(3867), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -222976,79 +226177,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3879), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3869), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3881), - [anon_sym_new] = ACTIONS(3865), + [anon_sym_co_await] = ACTIONS(3871), + [anon_sym_new] = ACTIONS(3873), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1435] = { - [sym_expression] = STATE(4511), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3568), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3568), - [sym_call_expression] = STATE(3568), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3568), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3568), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3568), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3568), - [sym_identifier] = ACTIONS(3867), - [anon_sym_LPAREN2] = ACTIONS(4642), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_TILDE] = ACTIONS(3871), - [anon_sym_DASH] = ACTIONS(3869), - [anon_sym_PLUS] = ACTIONS(3869), - [anon_sym_STAR] = ACTIONS(4312), - [anon_sym_AMP] = ACTIONS(4312), - [anon_sym___extension__] = ACTIONS(3873), - [anon_sym_COLON_COLON] = ACTIONS(3875), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3869), - [anon_sym_compl] = ACTIONS(3869), - [anon_sym_DASH_DASH] = ACTIONS(4404), - [anon_sym_PLUS_PLUS] = ACTIONS(4404), - [anon_sym_sizeof] = ACTIONS(3877), + [1457] = { + [sym_expression] = STATE(4539), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3597), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3597), + [sym_call_expression] = STATE(3597), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3597), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3597), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3597), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3597), + [sym_identifier] = ACTIONS(3857), + [anon_sym_LPAREN2] = ACTIONS(4648), + [anon_sym_BANG] = ACTIONS(3861), + [anon_sym_TILDE] = ACTIONS(3861), + [anon_sym_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3859), + [anon_sym_STAR] = ACTIONS(4366), + [anon_sym_AMP] = ACTIONS(4366), + [anon_sym___extension__] = ACTIONS(3863), + [anon_sym_COLON_COLON] = ACTIONS(3865), + [anon_sym_LBRACK] = ACTIONS(4964), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3859), + [anon_sym_compl] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(4368), + [anon_sym_PLUS_PLUS] = ACTIONS(4368), + [anon_sym_sizeof] = ACTIONS(3867), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -223076,79 +226277,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3879), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3869), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3881), - [anon_sym_new] = ACTIONS(3865), + [anon_sym_co_await] = ACTIONS(3871), + [anon_sym_new] = ACTIONS(3873), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1436] = { - [sym_expression] = STATE(4512), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3568), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3568), - [sym_call_expression] = STATE(3568), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3568), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3568), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3568), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3568), - [sym_identifier] = ACTIONS(3867), - [anon_sym_LPAREN2] = ACTIONS(4642), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_TILDE] = ACTIONS(3871), - [anon_sym_DASH] = ACTIONS(3869), - [anon_sym_PLUS] = ACTIONS(3869), - [anon_sym_STAR] = ACTIONS(4312), - [anon_sym_AMP] = ACTIONS(4312), - [anon_sym___extension__] = ACTIONS(3873), - [anon_sym_COLON_COLON] = ACTIONS(3875), + [1458] = { + [sym_expression] = STATE(4548), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3597), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3597), + [sym_call_expression] = STATE(3597), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3597), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3597), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3597), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3597), + [sym_identifier] = ACTIONS(3857), + [anon_sym_LPAREN2] = ACTIONS(4648), + [anon_sym_BANG] = ACTIONS(3861), + [anon_sym_TILDE] = ACTIONS(3861), + [anon_sym_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3859), + [anon_sym_STAR] = ACTIONS(4366), + [anon_sym_AMP] = ACTIONS(4366), + [anon_sym___extension__] = ACTIONS(3863), + [anon_sym_COLON_COLON] = ACTIONS(3865), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3869), - [anon_sym_compl] = ACTIONS(3869), - [anon_sym_DASH_DASH] = ACTIONS(4404), - [anon_sym_PLUS_PLUS] = ACTIONS(4404), - [anon_sym_sizeof] = ACTIONS(3877), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3859), + [anon_sym_compl] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(4368), + [anon_sym_PLUS_PLUS] = ACTIONS(4368), + [anon_sym_sizeof] = ACTIONS(3867), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -223176,79 +226377,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3879), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3869), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3881), - [anon_sym_new] = ACTIONS(3865), + [anon_sym_co_await] = ACTIONS(3871), + [anon_sym_new] = ACTIONS(3873), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1437] = { - [sym_expression] = STATE(4515), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3568), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3568), - [sym_call_expression] = STATE(3568), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3568), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3568), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3568), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3568), - [sym_identifier] = ACTIONS(3867), - [anon_sym_LPAREN2] = ACTIONS(4642), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_TILDE] = ACTIONS(3871), - [anon_sym_DASH] = ACTIONS(3869), - [anon_sym_PLUS] = ACTIONS(3869), - [anon_sym_STAR] = ACTIONS(4312), - [anon_sym_AMP] = ACTIONS(4312), - [anon_sym___extension__] = ACTIONS(3873), - [anon_sym_COLON_COLON] = ACTIONS(3875), + [1459] = { + [sym_expression] = STATE(4524), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3597), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3597), + [sym_call_expression] = STATE(3597), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3597), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3597), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3597), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3597), + [sym_identifier] = ACTIONS(3857), + [anon_sym_LPAREN2] = ACTIONS(4648), + [anon_sym_BANG] = ACTIONS(3861), + [anon_sym_TILDE] = ACTIONS(3861), + [anon_sym_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3859), + [anon_sym_STAR] = ACTIONS(4366), + [anon_sym_AMP] = ACTIONS(4366), + [anon_sym___extension__] = ACTIONS(3863), + [anon_sym_COLON_COLON] = ACTIONS(3865), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3869), - [anon_sym_compl] = ACTIONS(3869), - [anon_sym_DASH_DASH] = ACTIONS(4404), - [anon_sym_PLUS_PLUS] = ACTIONS(4404), - [anon_sym_sizeof] = ACTIONS(3877), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3859), + [anon_sym_compl] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(4368), + [anon_sym_PLUS_PLUS] = ACTIONS(4368), + [anon_sym_sizeof] = ACTIONS(3867), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -223276,79 +226477,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3879), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3869), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3881), - [anon_sym_new] = ACTIONS(3865), + [anon_sym_co_await] = ACTIONS(3871), + [anon_sym_new] = ACTIONS(3873), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1438] = { - [sym_expression] = STATE(4516), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3568), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3568), - [sym_call_expression] = STATE(3568), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3568), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3568), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3568), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3568), - [sym_identifier] = ACTIONS(3867), - [anon_sym_LPAREN2] = ACTIONS(4642), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_TILDE] = ACTIONS(3871), - [anon_sym_DASH] = ACTIONS(3869), - [anon_sym_PLUS] = ACTIONS(3869), - [anon_sym_STAR] = ACTIONS(4312), - [anon_sym_AMP] = ACTIONS(4312), - [anon_sym___extension__] = ACTIONS(3873), - [anon_sym_COLON_COLON] = ACTIONS(3875), + [1460] = { + [sym_expression] = STATE(4550), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3597), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3597), + [sym_call_expression] = STATE(3597), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3597), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3597), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3597), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3597), + [sym_identifier] = ACTIONS(3857), + [anon_sym_LPAREN2] = ACTIONS(4648), + [anon_sym_BANG] = ACTIONS(3861), + [anon_sym_TILDE] = ACTIONS(3861), + [anon_sym_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3859), + [anon_sym_STAR] = ACTIONS(4366), + [anon_sym_AMP] = ACTIONS(4366), + [anon_sym___extension__] = ACTIONS(3863), + [anon_sym_COLON_COLON] = ACTIONS(3865), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3869), - [anon_sym_compl] = ACTIONS(3869), - [anon_sym_DASH_DASH] = ACTIONS(4404), - [anon_sym_PLUS_PLUS] = ACTIONS(4404), - [anon_sym_sizeof] = ACTIONS(3877), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3859), + [anon_sym_compl] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(4368), + [anon_sym_PLUS_PLUS] = ACTIONS(4368), + [anon_sym_sizeof] = ACTIONS(3867), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -223376,79 +226577,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3879), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3869), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3881), - [anon_sym_new] = ACTIONS(3865), + [anon_sym_co_await] = ACTIONS(3871), + [anon_sym_new] = ACTIONS(3873), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1439] = { - [sym_expression] = STATE(4534), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3568), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3568), - [sym_call_expression] = STATE(3568), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3568), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3568), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3568), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3568), - [sym_identifier] = ACTIONS(3867), - [anon_sym_LPAREN2] = ACTIONS(4642), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_TILDE] = ACTIONS(3871), - [anon_sym_DASH] = ACTIONS(3869), - [anon_sym_PLUS] = ACTIONS(3869), - [anon_sym_STAR] = ACTIONS(4312), - [anon_sym_AMP] = ACTIONS(4312), - [anon_sym___extension__] = ACTIONS(3873), - [anon_sym_COLON_COLON] = ACTIONS(3875), + [1461] = { + [sym_expression] = STATE(4551), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3597), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3597), + [sym_call_expression] = STATE(3597), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3597), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3597), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3597), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3597), + [sym_identifier] = ACTIONS(3857), + [anon_sym_LPAREN2] = ACTIONS(4648), + [anon_sym_BANG] = ACTIONS(3861), + [anon_sym_TILDE] = ACTIONS(3861), + [anon_sym_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3859), + [anon_sym_STAR] = ACTIONS(4366), + [anon_sym_AMP] = ACTIONS(4366), + [anon_sym___extension__] = ACTIONS(3863), + [anon_sym_COLON_COLON] = ACTIONS(3865), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3869), - [anon_sym_compl] = ACTIONS(3869), - [anon_sym_DASH_DASH] = ACTIONS(4404), - [anon_sym_PLUS_PLUS] = ACTIONS(4404), - [anon_sym_sizeof] = ACTIONS(3877), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3859), + [anon_sym_compl] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(4368), + [anon_sym_PLUS_PLUS] = ACTIONS(4368), + [anon_sym_sizeof] = ACTIONS(3867), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -223476,79 +226677,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3879), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3869), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3881), - [anon_sym_new] = ACTIONS(3865), + [anon_sym_co_await] = ACTIONS(3871), + [anon_sym_new] = ACTIONS(3873), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1440] = { - [sym_expression] = STATE(4536), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3568), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3568), - [sym_call_expression] = STATE(3568), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3568), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3568), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3568), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3568), - [sym_identifier] = ACTIONS(3867), - [anon_sym_LPAREN2] = ACTIONS(4642), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_TILDE] = ACTIONS(3871), - [anon_sym_DASH] = ACTIONS(3869), - [anon_sym_PLUS] = ACTIONS(3869), - [anon_sym_STAR] = ACTIONS(4312), - [anon_sym_AMP] = ACTIONS(4312), - [anon_sym___extension__] = ACTIONS(3873), - [anon_sym_COLON_COLON] = ACTIONS(3875), + [1462] = { + [sym_expression] = STATE(4555), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3597), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3597), + [sym_call_expression] = STATE(3597), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3597), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3597), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3597), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3597), + [sym_identifier] = ACTIONS(3857), + [anon_sym_LPAREN2] = ACTIONS(4648), + [anon_sym_BANG] = ACTIONS(3861), + [anon_sym_TILDE] = ACTIONS(3861), + [anon_sym_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3859), + [anon_sym_STAR] = ACTIONS(4366), + [anon_sym_AMP] = ACTIONS(4366), + [anon_sym___extension__] = ACTIONS(3863), + [anon_sym_COLON_COLON] = ACTIONS(3865), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3869), - [anon_sym_compl] = ACTIONS(3869), - [anon_sym_DASH_DASH] = ACTIONS(4404), - [anon_sym_PLUS_PLUS] = ACTIONS(4404), - [anon_sym_sizeof] = ACTIONS(3877), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3859), + [anon_sym_compl] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(4368), + [anon_sym_PLUS_PLUS] = ACTIONS(4368), + [anon_sym_sizeof] = ACTIONS(3867), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -223576,79 +226777,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3879), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3869), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3881), - [anon_sym_new] = ACTIONS(3865), + [anon_sym_co_await] = ACTIONS(3871), + [anon_sym_new] = ACTIONS(3873), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1441] = { - [sym_expression] = STATE(4538), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3568), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3568), - [sym_call_expression] = STATE(3568), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3568), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3568), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3568), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3568), - [sym_identifier] = ACTIONS(3867), - [anon_sym_LPAREN2] = ACTIONS(4642), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_TILDE] = ACTIONS(3871), - [anon_sym_DASH] = ACTIONS(3869), - [anon_sym_PLUS] = ACTIONS(3869), - [anon_sym_STAR] = ACTIONS(4312), - [anon_sym_AMP] = ACTIONS(4312), - [anon_sym___extension__] = ACTIONS(3873), - [anon_sym_COLON_COLON] = ACTIONS(3875), + [1463] = { + [sym_expression] = STATE(4575), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3597), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3597), + [sym_call_expression] = STATE(3597), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3597), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3597), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3597), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3597), + [sym_identifier] = ACTIONS(3857), + [anon_sym_LPAREN2] = ACTIONS(4648), + [anon_sym_BANG] = ACTIONS(3861), + [anon_sym_TILDE] = ACTIONS(3861), + [anon_sym_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3859), + [anon_sym_STAR] = ACTIONS(4366), + [anon_sym_AMP] = ACTIONS(4366), + [anon_sym___extension__] = ACTIONS(3863), + [anon_sym_COLON_COLON] = ACTIONS(3865), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3869), - [anon_sym_compl] = ACTIONS(3869), - [anon_sym_DASH_DASH] = ACTIONS(4404), - [anon_sym_PLUS_PLUS] = ACTIONS(4404), - [anon_sym_sizeof] = ACTIONS(3877), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3859), + [anon_sym_compl] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(4368), + [anon_sym_PLUS_PLUS] = ACTIONS(4368), + [anon_sym_sizeof] = ACTIONS(3867), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -223676,79 +226877,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3879), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3869), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3881), - [anon_sym_new] = ACTIONS(3865), + [anon_sym_co_await] = ACTIONS(3871), + [anon_sym_new] = ACTIONS(3873), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1442] = { - [sym_expression] = STATE(4542), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3568), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3568), - [sym_call_expression] = STATE(3568), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3568), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3568), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3568), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3568), - [sym_identifier] = ACTIONS(3867), - [anon_sym_LPAREN2] = ACTIONS(4642), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_TILDE] = ACTIONS(3871), - [anon_sym_DASH] = ACTIONS(3869), - [anon_sym_PLUS] = ACTIONS(3869), - [anon_sym_STAR] = ACTIONS(4312), - [anon_sym_AMP] = ACTIONS(4312), - [anon_sym___extension__] = ACTIONS(3873), - [anon_sym_COLON_COLON] = ACTIONS(3875), + [1464] = { + [sym_expression] = STATE(4582), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3597), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3597), + [sym_call_expression] = STATE(3597), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3597), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3597), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3597), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3597), + [sym_identifier] = ACTIONS(3857), + [anon_sym_LPAREN2] = ACTIONS(4648), + [anon_sym_BANG] = ACTIONS(3861), + [anon_sym_TILDE] = ACTIONS(3861), + [anon_sym_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3859), + [anon_sym_STAR] = ACTIONS(4366), + [anon_sym_AMP] = ACTIONS(4366), + [anon_sym___extension__] = ACTIONS(3863), + [anon_sym_COLON_COLON] = ACTIONS(3865), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3869), - [anon_sym_compl] = ACTIONS(3869), - [anon_sym_DASH_DASH] = ACTIONS(4404), - [anon_sym_PLUS_PLUS] = ACTIONS(4404), - [anon_sym_sizeof] = ACTIONS(3877), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3859), + [anon_sym_compl] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(4368), + [anon_sym_PLUS_PLUS] = ACTIONS(4368), + [anon_sym_sizeof] = ACTIONS(3867), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -223776,79 +226977,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3879), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3869), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3881), - [anon_sym_new] = ACTIONS(3865), + [anon_sym_co_await] = ACTIONS(3871), + [anon_sym_new] = ACTIONS(3873), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1443] = { - [sym_expression] = STATE(4548), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3568), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3568), - [sym_call_expression] = STATE(3568), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3568), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3568), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3568), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3568), - [sym_identifier] = ACTIONS(3867), - [anon_sym_LPAREN2] = ACTIONS(4642), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_TILDE] = ACTIONS(3871), - [anon_sym_DASH] = ACTIONS(3869), - [anon_sym_PLUS] = ACTIONS(3869), - [anon_sym_STAR] = ACTIONS(4312), - [anon_sym_AMP] = ACTIONS(4312), - [anon_sym___extension__] = ACTIONS(3873), - [anon_sym_COLON_COLON] = ACTIONS(3875), + [1465] = { + [sym_expression] = STATE(4586), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3597), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3597), + [sym_call_expression] = STATE(3597), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3597), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3597), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3597), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3597), + [sym_identifier] = ACTIONS(3857), + [anon_sym_LPAREN2] = ACTIONS(4648), + [anon_sym_BANG] = ACTIONS(3861), + [anon_sym_TILDE] = ACTIONS(3861), + [anon_sym_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3859), + [anon_sym_STAR] = ACTIONS(4366), + [anon_sym_AMP] = ACTIONS(4366), + [anon_sym___extension__] = ACTIONS(3863), + [anon_sym_COLON_COLON] = ACTIONS(3865), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3869), - [anon_sym_compl] = ACTIONS(3869), - [anon_sym_DASH_DASH] = ACTIONS(4404), - [anon_sym_PLUS_PLUS] = ACTIONS(4404), - [anon_sym_sizeof] = ACTIONS(3877), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3859), + [anon_sym_compl] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(4368), + [anon_sym_PLUS_PLUS] = ACTIONS(4368), + [anon_sym_sizeof] = ACTIONS(3867), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -223876,79 +227077,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3879), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3869), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3881), - [anon_sym_new] = ACTIONS(3865), + [anon_sym_co_await] = ACTIONS(3871), + [anon_sym_new] = ACTIONS(3873), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1444] = { - [sym_expression] = STATE(4696), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), - [anon_sym_COLON_COLON] = ACTIONS(47), + [1466] = { + [sym_expression] = STATE(4587), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3597), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3597), + [sym_call_expression] = STATE(3597), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3597), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3597), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3597), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3597), + [sym_identifier] = ACTIONS(3857), + [anon_sym_LPAREN2] = ACTIONS(4648), + [anon_sym_BANG] = ACTIONS(3861), + [anon_sym_TILDE] = ACTIONS(3861), + [anon_sym_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3859), + [anon_sym_STAR] = ACTIONS(4366), + [anon_sym_AMP] = ACTIONS(4366), + [anon_sym___extension__] = ACTIONS(3863), + [anon_sym_COLON_COLON] = ACTIONS(3865), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3859), + [anon_sym_compl] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(4368), + [anon_sym_PLUS_PLUS] = ACTIONS(4368), + [anon_sym_sizeof] = ACTIONS(3867), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -223976,79 +227177,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(145), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3869), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), + [anon_sym_co_await] = ACTIONS(3871), + [anon_sym_new] = ACTIONS(3873), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1445] = { - [sym_expression] = STATE(4750), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), - [anon_sym_COLON_COLON] = ACTIONS(47), + [1467] = { + [sym_expression] = STATE(4588), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3597), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3597), + [sym_call_expression] = STATE(3597), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3597), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3597), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3597), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3597), + [sym_identifier] = ACTIONS(3857), + [anon_sym_LPAREN2] = ACTIONS(4648), + [anon_sym_BANG] = ACTIONS(3861), + [anon_sym_TILDE] = ACTIONS(3861), + [anon_sym_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3859), + [anon_sym_STAR] = ACTIONS(4366), + [anon_sym_AMP] = ACTIONS(4366), + [anon_sym___extension__] = ACTIONS(3863), + [anon_sym_COLON_COLON] = ACTIONS(3865), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3859), + [anon_sym_compl] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(4368), + [anon_sym_PLUS_PLUS] = ACTIONS(4368), + [anon_sym_sizeof] = ACTIONS(3867), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -224076,79 +227277,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(145), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3869), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), + [anon_sym_co_await] = ACTIONS(3871), + [anon_sym_new] = ACTIONS(3873), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1446] = { - [sym_expression] = STATE(4756), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3678), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3678), - [sym_call_expression] = STATE(3678), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3678), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3678), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3678), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3678), - [sym_identifier] = ACTIONS(3849), - [anon_sym_LPAREN2] = ACTIONS(3893), - [anon_sym_BANG] = ACTIONS(3853), - [anon_sym_TILDE] = ACTIONS(3853), - [anon_sym_DASH] = ACTIONS(3851), - [anon_sym_PLUS] = ACTIONS(3851), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(3855), - [anon_sym_COLON_COLON] = ACTIONS(3857), + [1468] = { + [sym_expression] = STATE(4590), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3597), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3597), + [sym_call_expression] = STATE(3597), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3597), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3597), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3597), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3597), + [sym_identifier] = ACTIONS(3857), + [anon_sym_LPAREN2] = ACTIONS(4648), + [anon_sym_BANG] = ACTIONS(3861), + [anon_sym_TILDE] = ACTIONS(3861), + [anon_sym_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3859), + [anon_sym_STAR] = ACTIONS(4366), + [anon_sym_AMP] = ACTIONS(4366), + [anon_sym___extension__] = ACTIONS(3863), + [anon_sym_COLON_COLON] = ACTIONS(3865), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3851), - [anon_sym_compl] = ACTIONS(3851), - [anon_sym_DASH_DASH] = ACTIONS(3897), - [anon_sym_PLUS_PLUS] = ACTIONS(3897), - [anon_sym_sizeof] = ACTIONS(3859), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3859), + [anon_sym_compl] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(4368), + [anon_sym_PLUS_PLUS] = ACTIONS(4368), + [anon_sym_sizeof] = ACTIONS(3867), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -224176,79 +227377,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3861), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3869), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3863), - [anon_sym_new] = ACTIONS(3865), + [anon_sym_co_await] = ACTIONS(3871), + [anon_sym_new] = ACTIONS(3873), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1447] = { - [sym_expression] = STATE(4566), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3568), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3568), - [sym_call_expression] = STATE(3568), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3568), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3568), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3568), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3568), - [sym_identifier] = ACTIONS(3867), - [anon_sym_LPAREN2] = ACTIONS(4642), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_TILDE] = ACTIONS(3871), - [anon_sym_DASH] = ACTIONS(3869), - [anon_sym_PLUS] = ACTIONS(3869), - [anon_sym_STAR] = ACTIONS(4312), - [anon_sym_AMP] = ACTIONS(4312), - [anon_sym___extension__] = ACTIONS(3873), - [anon_sym_COLON_COLON] = ACTIONS(3875), + [1469] = { + [sym_expression] = STATE(4769), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), + [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3869), - [anon_sym_compl] = ACTIONS(3869), - [anon_sym_DASH_DASH] = ACTIONS(4404), - [anon_sym_PLUS_PLUS] = ACTIONS(4404), - [anon_sym_sizeof] = ACTIONS(3877), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -224276,74 +227477,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3879), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3881), - [anon_sym_new] = ACTIONS(3865), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1448] = { - [sym_expression] = STATE(4775), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1470] = { + [sym_expression] = STATE(4823), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -224376,7 +227577,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -224388,67 +227589,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1449] = { - [sym_expression] = STATE(4569), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3568), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3568), - [sym_call_expression] = STATE(3568), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3568), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3568), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3568), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3568), - [sym_identifier] = ACTIONS(3867), - [anon_sym_LPAREN2] = ACTIONS(4642), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_TILDE] = ACTIONS(3871), - [anon_sym_DASH] = ACTIONS(3869), - [anon_sym_PLUS] = ACTIONS(3869), - [anon_sym_STAR] = ACTIONS(4312), - [anon_sym_AMP] = ACTIONS(4312), - [anon_sym___extension__] = ACTIONS(3873), - [anon_sym_COLON_COLON] = ACTIONS(3875), + [1471] = { + [sym_expression] = STATE(4824), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3728), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3728), + [sym_call_expression] = STATE(3728), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3728), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3728), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3728), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3728), + [sym_identifier] = ACTIONS(3883), + [anon_sym_LPAREN2] = ACTIONS(3901), + [anon_sym_BANG] = ACTIONS(3887), + [anon_sym_TILDE] = ACTIONS(3887), + [anon_sym_DASH] = ACTIONS(3885), + [anon_sym_PLUS] = ACTIONS(3885), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(3889), + [anon_sym_COLON_COLON] = ACTIONS(3891), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3869), - [anon_sym_compl] = ACTIONS(3869), - [anon_sym_DASH_DASH] = ACTIONS(4404), - [anon_sym_PLUS_PLUS] = ACTIONS(4404), - [anon_sym_sizeof] = ACTIONS(3877), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3885), + [anon_sym_compl] = ACTIONS(3885), + [anon_sym_DASH_DASH] = ACTIONS(3905), + [anon_sym_PLUS_PLUS] = ACTIONS(3905), + [anon_sym_sizeof] = ACTIONS(3893), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -224476,74 +227677,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3879), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3895), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3881), - [anon_sym_new] = ACTIONS(3865), + [anon_sym_co_await] = ACTIONS(3897), + [anon_sym_new] = ACTIONS(3873), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1450] = { - [sym_expression] = STATE(4390), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1472] = { + [sym_expression] = STATE(4611), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3597), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3597), + [sym_call_expression] = STATE(3597), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3597), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3597), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3597), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3597), + [sym_identifier] = ACTIONS(3857), + [anon_sym_LPAREN2] = ACTIONS(4648), + [anon_sym_BANG] = ACTIONS(3861), + [anon_sym_TILDE] = ACTIONS(3861), + [anon_sym_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3859), + [anon_sym_STAR] = ACTIONS(4366), + [anon_sym_AMP] = ACTIONS(4366), + [anon_sym___extension__] = ACTIONS(3863), + [anon_sym_COLON_COLON] = ACTIONS(3865), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3859), + [anon_sym_compl] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(4368), + [anon_sym_PLUS_PLUS] = ACTIONS(4368), + [anon_sym_sizeof] = ACTIONS(3867), + [anon_sym___alignof__] = ACTIONS(107), + [anon_sym___alignof] = ACTIONS(107), + [anon_sym__alignof] = ACTIONS(107), + [anon_sym_alignof] = ACTIONS(107), + [anon_sym__Alignof] = ACTIONS(107), + [anon_sym_offsetof] = ACTIONS(109), + [anon_sym__Generic] = ACTIONS(111), + [anon_sym_asm] = ACTIONS(113), + [anon_sym___asm__] = ACTIONS(113), + [anon_sym___asm] = ACTIONS(113), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(117), + [anon_sym_u_SQUOTE] = ACTIONS(117), + [anon_sym_U_SQUOTE] = ACTIONS(117), + [anon_sym_u8_SQUOTE] = ACTIONS(117), + [anon_sym_SQUOTE] = ACTIONS(117), + [anon_sym_L_DQUOTE] = ACTIONS(119), + [anon_sym_u_DQUOTE] = ACTIONS(119), + [anon_sym_U_DQUOTE] = ACTIONS(119), + [anon_sym_u8_DQUOTE] = ACTIONS(119), + [anon_sym_DQUOTE] = ACTIONS(119), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(123), + [anon_sym_nullptr] = ACTIONS(123), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3869), + [anon_sym_R_DQUOTE] = ACTIONS(159), + [anon_sym_LR_DQUOTE] = ACTIONS(159), + [anon_sym_uR_DQUOTE] = ACTIONS(159), + [anon_sym_UR_DQUOTE] = ACTIONS(159), + [anon_sym_u8R_DQUOTE] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(3871), + [anon_sym_new] = ACTIONS(3873), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), + }, + [1473] = { + [sym_expression] = STATE(4648), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -224576,7 +227877,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -224588,67 +227889,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1451] = { - [sym_expression] = STATE(4700), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3568), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3568), - [sym_call_expression] = STATE(3568), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3568), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3568), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3568), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3568), - [sym_identifier] = ACTIONS(3867), - [anon_sym_LPAREN2] = ACTIONS(4642), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_TILDE] = ACTIONS(3871), - [anon_sym_DASH] = ACTIONS(3869), - [anon_sym_PLUS] = ACTIONS(3869), - [anon_sym_STAR] = ACTIONS(4312), - [anon_sym_AMP] = ACTIONS(4312), - [anon_sym___extension__] = ACTIONS(3873), - [anon_sym_COLON_COLON] = ACTIONS(3875), + [1474] = { + [sym_expression] = STATE(4634), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3597), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3597), + [sym_call_expression] = STATE(3597), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3597), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3597), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3597), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3597), + [sym_identifier] = ACTIONS(3857), + [anon_sym_LPAREN2] = ACTIONS(4648), + [anon_sym_BANG] = ACTIONS(3861), + [anon_sym_TILDE] = ACTIONS(3861), + [anon_sym_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3859), + [anon_sym_STAR] = ACTIONS(4366), + [anon_sym_AMP] = ACTIONS(4366), + [anon_sym___extension__] = ACTIONS(3863), + [anon_sym_COLON_COLON] = ACTIONS(3865), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3869), - [anon_sym_compl] = ACTIONS(3869), - [anon_sym_DASH_DASH] = ACTIONS(4404), - [anon_sym_PLUS_PLUS] = ACTIONS(4404), - [anon_sym_sizeof] = ACTIONS(3877), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3859), + [anon_sym_compl] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(4368), + [anon_sym_PLUS_PLUS] = ACTIONS(4368), + [anon_sym_sizeof] = ACTIONS(3867), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -224676,74 +227977,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3879), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3869), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3881), - [anon_sym_new] = ACTIONS(3865), + [anon_sym_co_await] = ACTIONS(3871), + [anon_sym_new] = ACTIONS(3873), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1452] = { - [sym_expression] = STATE(4714), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1475] = { + [sym_expression] = STATE(4418), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -224776,7 +228077,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -224788,167 +228089,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1453] = { - [sym_expression] = STATE(4479), - [sym__string] = STATE(4738), - [sym_conditional_expression] = STATE(4829), - [sym_assignment_expression] = STATE(4829), - [sym_pointer_expression] = STATE(3602), - [sym_unary_expression] = STATE(4829), - [sym_binary_expression] = STATE(4829), - [sym_update_expression] = STATE(4829), - [sym_cast_expression] = STATE(4829), - [sym_sizeof_expression] = STATE(4829), - [sym_alignof_expression] = STATE(4829), - [sym_offsetof_expression] = STATE(4829), - [sym_generic_expression] = STATE(4829), - [sym_subscript_expression] = STATE(3602), - [sym_call_expression] = STATE(3602), - [sym_gnu_asm_expression] = STATE(4829), - [sym_extension_expression] = STATE(4829), - [sym_field_expression] = STATE(3602), - [sym_compound_literal_expression] = STATE(4829), - [sym_parenthesized_expression] = STATE(3602), - [sym_char_literal] = STATE(4738), - [sym_concatenated_string] = STATE(4738), - [sym_string_literal] = STATE(3759), - [sym_null] = STATE(4829), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7804), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(4829), - [sym_raw_string_literal] = STATE(3759), - [sym_co_await_expression] = STATE(4829), - [sym_new_expression] = STATE(4829), - [sym_delete_expression] = STATE(4829), - [sym_requires_clause] = STATE(4829), - [sym_requires_expression] = STATE(4829), - [sym_lambda_expression] = STATE(4829), - [sym_lambda_capture_specifier] = STATE(5401), - [sym_fold_expression] = STATE(4829), - [sym_parameter_pack_expansion] = STATE(4829), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5773), - [sym_qualified_identifier] = STATE(3602), - [sym_qualified_type_identifier] = STATE(7804), - [sym_user_defined_literal] = STATE(3602), - [sym_identifier] = ACTIONS(3883), - [anon_sym_LPAREN2] = ACTIONS(3118), - [anon_sym_BANG] = ACTIONS(3120), - [anon_sym_TILDE] = ACTIONS(3120), - [anon_sym_DASH] = ACTIONS(3122), - [anon_sym_PLUS] = ACTIONS(3122), - [anon_sym_STAR] = ACTIONS(3124), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym___extension__] = ACTIONS(3885), - [anon_sym_COLON_COLON] = ACTIONS(3128), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(3889), - [anon_sym_not] = ACTIONS(3122), - [anon_sym_compl] = ACTIONS(3122), - [anon_sym_DASH_DASH] = ACTIONS(3142), - [anon_sym_PLUS_PLUS] = ACTIONS(3142), - [anon_sym_sizeof] = ACTIONS(3144), - [anon_sym___alignof__] = ACTIONS(3146), - [anon_sym___alignof] = ACTIONS(3146), - [anon_sym__alignof] = ACTIONS(3146), - [anon_sym_alignof] = ACTIONS(3146), - [anon_sym__Alignof] = ACTIONS(3146), - [anon_sym_offsetof] = ACTIONS(3148), - [anon_sym__Generic] = ACTIONS(3150), - [anon_sym_asm] = ACTIONS(3152), - [anon_sym___asm__] = ACTIONS(3152), - [anon_sym___asm] = ACTIONS(3152), - [sym_number_literal] = ACTIONS(3154), - [anon_sym_L_SQUOTE] = ACTIONS(3156), - [anon_sym_u_SQUOTE] = ACTIONS(3156), - [anon_sym_U_SQUOTE] = ACTIONS(3156), - [anon_sym_u8_SQUOTE] = ACTIONS(3156), - [anon_sym_SQUOTE] = ACTIONS(3156), - [anon_sym_L_DQUOTE] = ACTIONS(3158), - [anon_sym_u_DQUOTE] = ACTIONS(3158), - [anon_sym_U_DQUOTE] = ACTIONS(3158), - [anon_sym_u8_DQUOTE] = ACTIONS(3158), - [anon_sym_DQUOTE] = ACTIONS(3158), - [sym_true] = ACTIONS(3160), - [sym_false] = ACTIONS(3160), - [anon_sym_NULL] = ACTIONS(3162), - [anon_sym_nullptr] = ACTIONS(3162), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3172), - [anon_sym_R_DQUOTE] = ACTIONS(3174), - [anon_sym_LR_DQUOTE] = ACTIONS(3174), - [anon_sym_uR_DQUOTE] = ACTIONS(3174), - [anon_sym_UR_DQUOTE] = ACTIONS(3174), - [anon_sym_u8R_DQUOTE] = ACTIONS(3174), - [anon_sym_co_await] = ACTIONS(3176), - [anon_sym_new] = ACTIONS(3178), - [anon_sym_requires] = ACTIONS(3180), - [sym_this] = ACTIONS(3160), - }, - [1454] = { - [sym_expression] = STATE(4649), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), - [anon_sym_COLON_COLON] = ACTIONS(47), + [1476] = { + [sym_expression] = STATE(4792), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3597), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3597), + [sym_call_expression] = STATE(3597), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3597), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3597), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3597), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3597), + [sym_identifier] = ACTIONS(3857), + [anon_sym_LPAREN2] = ACTIONS(4648), + [anon_sym_BANG] = ACTIONS(3861), + [anon_sym_TILDE] = ACTIONS(3861), + [anon_sym_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3859), + [anon_sym_STAR] = ACTIONS(4366), + [anon_sym_AMP] = ACTIONS(4366), + [anon_sym___extension__] = ACTIONS(3863), + [anon_sym_COLON_COLON] = ACTIONS(3865), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3859), + [anon_sym_compl] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(4368), + [anon_sym_PLUS_PLUS] = ACTIONS(4368), + [anon_sym_sizeof] = ACTIONS(3867), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -224976,74 +228177,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(145), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3869), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), + [anon_sym_co_await] = ACTIONS(3871), + [anon_sym_new] = ACTIONS(3873), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1455] = { - [sym_expression] = STATE(4681), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1477] = { + [sym_expression] = STATE(4750), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -225076,7 +228277,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -225088,67 +228289,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1456] = { - [sym_expression] = STATE(4687), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3678), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3678), - [sym_call_expression] = STATE(3678), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3678), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3678), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3678), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3678), - [sym_identifier] = ACTIONS(3849), - [anon_sym_LPAREN2] = ACTIONS(3893), - [anon_sym_BANG] = ACTIONS(3853), - [anon_sym_TILDE] = ACTIONS(3853), - [anon_sym_DASH] = ACTIONS(3851), - [anon_sym_PLUS] = ACTIONS(3851), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(3855), - [anon_sym_COLON_COLON] = ACTIONS(3857), + [1478] = { + [sym_expression] = STATE(4373), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), + [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3851), - [anon_sym_compl] = ACTIONS(3851), - [anon_sym_DASH_DASH] = ACTIONS(3897), - [anon_sym_PLUS_PLUS] = ACTIONS(3897), - [anon_sym_sizeof] = ACTIONS(3859), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -225176,74 +228377,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3861), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3863), - [anon_sym_new] = ACTIONS(3865), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1457] = { - [sym_expression] = STATE(4613), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1479] = { + [sym_expression] = STATE(4818), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -225276,7 +228477,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -225288,62 +228489,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1458] = { - [sym_expression] = STATE(4331), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1480] = { + [sym_expression] = STATE(4654), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -225376,7 +228577,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -225388,67 +228589,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1459] = { - [sym_expression] = STATE(4627), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3568), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3568), - [sym_call_expression] = STATE(3568), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3568), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3568), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3568), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3568), - [sym_identifier] = ACTIONS(3867), - [anon_sym_LPAREN2] = ACTIONS(4642), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_TILDE] = ACTIONS(3871), - [anon_sym_DASH] = ACTIONS(3869), - [anon_sym_PLUS] = ACTIONS(3869), - [anon_sym_STAR] = ACTIONS(4312), - [anon_sym_AMP] = ACTIONS(4312), - [anon_sym___extension__] = ACTIONS(3873), - [anon_sym_COLON_COLON] = ACTIONS(3875), + [1481] = { + [sym_expression] = STATE(4656), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3728), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3728), + [sym_call_expression] = STATE(3728), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3728), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3728), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3728), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3728), + [sym_identifier] = ACTIONS(3883), + [anon_sym_LPAREN2] = ACTIONS(3901), + [anon_sym_BANG] = ACTIONS(3887), + [anon_sym_TILDE] = ACTIONS(3887), + [anon_sym_DASH] = ACTIONS(3885), + [anon_sym_PLUS] = ACTIONS(3885), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(3889), + [anon_sym_COLON_COLON] = ACTIONS(3891), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3869), - [anon_sym_compl] = ACTIONS(3869), - [anon_sym_DASH_DASH] = ACTIONS(4404), - [anon_sym_PLUS_PLUS] = ACTIONS(4404), - [anon_sym_sizeof] = ACTIONS(3877), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3885), + [anon_sym_compl] = ACTIONS(3885), + [anon_sym_DASH_DASH] = ACTIONS(3905), + [anon_sym_PLUS_PLUS] = ACTIONS(3905), + [anon_sym_sizeof] = ACTIONS(3893), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -225476,74 +228677,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3879), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3895), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3881), - [anon_sym_new] = ACTIONS(3865), + [anon_sym_co_await] = ACTIONS(3897), + [anon_sym_new] = ACTIONS(3873), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1460] = { - [sym_expression] = STATE(4637), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1482] = { + [sym_expression] = STATE(4660), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -225576,7 +228777,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -225588,62 +228789,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1461] = { - [sym_expression] = STATE(4682), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1483] = { + [sym_expression] = STATE(4410), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -225676,7 +228877,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -225688,67 +228889,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1462] = { - [sym_expression] = STATE(4702), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), - [anon_sym_COLON_COLON] = ACTIONS(47), + [1484] = { + [sym_expression] = STATE(4788), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3597), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3597), + [sym_call_expression] = STATE(3597), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3597), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3597), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3597), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3597), + [sym_identifier] = ACTIONS(3857), + [anon_sym_LPAREN2] = ACTIONS(4648), + [anon_sym_BANG] = ACTIONS(3861), + [anon_sym_TILDE] = ACTIONS(3861), + [anon_sym_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3859), + [anon_sym_STAR] = ACTIONS(4366), + [anon_sym_AMP] = ACTIONS(4366), + [anon_sym___extension__] = ACTIONS(3863), + [anon_sym_COLON_COLON] = ACTIONS(3865), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3859), + [anon_sym_compl] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(4368), + [anon_sym_PLUS_PLUS] = ACTIONS(4368), + [anon_sym_sizeof] = ACTIONS(3867), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -225776,79 +228977,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(145), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3869), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), + [anon_sym_co_await] = ACTIONS(3871), + [anon_sym_new] = ACTIONS(3873), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1463] = { - [sym_expression] = STATE(4703), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3678), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3678), - [sym_call_expression] = STATE(3678), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3678), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3678), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3678), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3678), - [sym_identifier] = ACTIONS(3849), - [anon_sym_LPAREN2] = ACTIONS(3893), - [anon_sym_BANG] = ACTIONS(3853), - [anon_sym_TILDE] = ACTIONS(3853), - [anon_sym_DASH] = ACTIONS(3851), - [anon_sym_PLUS] = ACTIONS(3851), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(3855), - [anon_sym_COLON_COLON] = ACTIONS(3857), + [1485] = { + [sym_expression] = STATE(4807), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), + [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3851), - [anon_sym_compl] = ACTIONS(3851), - [anon_sym_DASH_DASH] = ACTIONS(3897), - [anon_sym_PLUS_PLUS] = ACTIONS(3897), - [anon_sym_sizeof] = ACTIONS(3859), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -225876,74 +229077,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3861), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3863), - [anon_sym_new] = ACTIONS(3865), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1464] = { - [sym_expression] = STATE(4705), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1486] = { + [sym_expression] = STATE(4655), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -225976,7 +229177,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -225988,62 +229189,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1465] = { - [sym_expression] = STATE(4360), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1487] = { + [sym_expression] = STATE(4666), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -226076,7 +229277,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -226088,67 +229289,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1466] = { - [sym_expression] = STATE(4595), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3568), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3568), - [sym_call_expression] = STATE(3568), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3568), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3568), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3568), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3568), - [sym_identifier] = ACTIONS(3867), - [anon_sym_LPAREN2] = ACTIONS(4642), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_TILDE] = ACTIONS(3871), - [anon_sym_DASH] = ACTIONS(3869), - [anon_sym_PLUS] = ACTIONS(3869), - [anon_sym_STAR] = ACTIONS(4312), - [anon_sym_AMP] = ACTIONS(4312), - [anon_sym___extension__] = ACTIONS(3873), - [anon_sym_COLON_COLON] = ACTIONS(3875), + [1488] = { + [sym_expression] = STATE(4667), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3728), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3728), + [sym_call_expression] = STATE(3728), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3728), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3728), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3728), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3728), + [sym_identifier] = ACTIONS(3883), + [anon_sym_LPAREN2] = ACTIONS(3901), + [anon_sym_BANG] = ACTIONS(3887), + [anon_sym_TILDE] = ACTIONS(3887), + [anon_sym_DASH] = ACTIONS(3885), + [anon_sym_PLUS] = ACTIONS(3885), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(3889), + [anon_sym_COLON_COLON] = ACTIONS(3891), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3869), - [anon_sym_compl] = ACTIONS(3869), - [anon_sym_DASH_DASH] = ACTIONS(4404), - [anon_sym_PLUS_PLUS] = ACTIONS(4404), - [anon_sym_sizeof] = ACTIONS(3877), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3885), + [anon_sym_compl] = ACTIONS(3885), + [anon_sym_DASH_DASH] = ACTIONS(3905), + [anon_sym_PLUS_PLUS] = ACTIONS(3905), + [anon_sym_sizeof] = ACTIONS(3893), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -226176,74 +229377,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3879), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3895), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3881), - [anon_sym_new] = ACTIONS(3865), + [anon_sym_co_await] = ACTIONS(3897), + [anon_sym_new] = ACTIONS(3873), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1467] = { - [sym_expression] = STATE(4603), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1489] = { + [sym_expression] = STATE(4669), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -226276,7 +229477,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -226288,62 +229489,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1468] = { - [sym_expression] = STATE(4618), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1490] = { + [sym_expression] = STATE(4407), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -226376,7 +229577,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -226388,67 +229589,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1469] = { - [sym_expression] = STATE(4620), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), - [anon_sym_COLON_COLON] = ACTIONS(47), + [1491] = { + [sym_expression] = STATE(4707), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3597), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3597), + [sym_call_expression] = STATE(3597), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3597), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3597), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3597), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3597), + [sym_identifier] = ACTIONS(3857), + [anon_sym_LPAREN2] = ACTIONS(4648), + [anon_sym_BANG] = ACTIONS(3861), + [anon_sym_TILDE] = ACTIONS(3861), + [anon_sym_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3859), + [anon_sym_STAR] = ACTIONS(4366), + [anon_sym_AMP] = ACTIONS(4366), + [anon_sym___extension__] = ACTIONS(3863), + [anon_sym_COLON_COLON] = ACTIONS(3865), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3859), + [anon_sym_compl] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(4368), + [anon_sym_PLUS_PLUS] = ACTIONS(4368), + [anon_sym_sizeof] = ACTIONS(3867), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -226476,79 +229677,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(145), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3869), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), + [anon_sym_co_await] = ACTIONS(3871), + [anon_sym_new] = ACTIONS(3873), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1470] = { - [sym_expression] = STATE(4621), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3678), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3678), - [sym_call_expression] = STATE(3678), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3678), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3678), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3678), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3678), - [sym_identifier] = ACTIONS(3849), - [anon_sym_LPAREN2] = ACTIONS(3893), - [anon_sym_BANG] = ACTIONS(3853), - [anon_sym_TILDE] = ACTIONS(3853), - [anon_sym_DASH] = ACTIONS(3851), - [anon_sym_PLUS] = ACTIONS(3851), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(3855), - [anon_sym_COLON_COLON] = ACTIONS(3857), + [1492] = { + [sym_expression] = STATE(4715), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), + [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3851), - [anon_sym_compl] = ACTIONS(3851), - [anon_sym_DASH_DASH] = ACTIONS(3897), - [anon_sym_PLUS_PLUS] = ACTIONS(3897), - [anon_sym_sizeof] = ACTIONS(3859), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -226576,74 +229777,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3861), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3863), - [anon_sym_new] = ACTIONS(3865), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1471] = { - [sym_expression] = STATE(4622), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1493] = { + [sym_expression] = STATE(4740), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -226676,7 +229877,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -226688,62 +229889,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1472] = { - [sym_expression] = STATE(4377), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1494] = { + [sym_expression] = STATE(4760), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -226776,7 +229977,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -226788,67 +229989,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1473] = { - [sym_expression] = STATE(4664), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), - [anon_sym_COLON_COLON] = ACTIONS(47), + [1495] = { + [sym_expression] = STATE(4762), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3728), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3728), + [sym_call_expression] = STATE(3728), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3728), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3728), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3728), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3728), + [sym_identifier] = ACTIONS(3883), + [anon_sym_LPAREN2] = ACTIONS(3901), + [anon_sym_BANG] = ACTIONS(3887), + [anon_sym_TILDE] = ACTIONS(3887), + [anon_sym_DASH] = ACTIONS(3885), + [anon_sym_PLUS] = ACTIONS(3885), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(3889), + [anon_sym_COLON_COLON] = ACTIONS(3891), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3885), + [anon_sym_compl] = ACTIONS(3885), + [anon_sym_DASH_DASH] = ACTIONS(3905), + [anon_sym_PLUS_PLUS] = ACTIONS(3905), + [anon_sym_sizeof] = ACTIONS(3893), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -226876,74 +230077,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(145), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3895), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), + [anon_sym_co_await] = ACTIONS(3897), + [anon_sym_new] = ACTIONS(3873), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1474] = { - [sym_expression] = STATE(4669), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1496] = { + [sym_expression] = STATE(4764), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -226976,7 +230177,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -226988,67 +230189,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1475] = { - [sym_expression] = STATE(4670), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3678), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3678), - [sym_call_expression] = STATE(3678), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3678), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3678), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3678), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3678), - [sym_identifier] = ACTIONS(3849), - [anon_sym_LPAREN2] = ACTIONS(3893), - [anon_sym_BANG] = ACTIONS(3853), - [anon_sym_TILDE] = ACTIONS(3853), - [anon_sym_DASH] = ACTIONS(3851), - [anon_sym_PLUS] = ACTIONS(3851), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(3855), - [anon_sym_COLON_COLON] = ACTIONS(3857), + [1497] = { + [sym_expression] = STATE(4437), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), + [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3851), - [anon_sym_compl] = ACTIONS(3851), - [anon_sym_DASH_DASH] = ACTIONS(3897), - [anon_sym_PLUS_PLUS] = ACTIONS(3897), - [anon_sym_sizeof] = ACTIONS(3859), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -227076,74 +230277,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3861), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3863), - [anon_sym_new] = ACTIONS(3865), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1476] = { - [sym_expression] = STATE(4672), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1498] = { + [sym_expression] = STATE(4808), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -227176,7 +230377,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -227188,62 +230389,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1477] = { - [sym_expression] = STATE(4607), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1499] = { + [sym_expression] = STATE(4812), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -227276,7 +230477,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -227288,62 +230489,162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1478] = { - [sym_expression] = STATE(4401), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1500] = { + [sym_expression] = STATE(4813), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3728), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3728), + [sym_call_expression] = STATE(3728), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3728), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3728), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3728), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3728), + [sym_identifier] = ACTIONS(3883), + [anon_sym_LPAREN2] = ACTIONS(3901), + [anon_sym_BANG] = ACTIONS(3887), + [anon_sym_TILDE] = ACTIONS(3887), + [anon_sym_DASH] = ACTIONS(3885), + [anon_sym_PLUS] = ACTIONS(3885), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(3889), + [anon_sym_COLON_COLON] = ACTIONS(3891), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3885), + [anon_sym_compl] = ACTIONS(3885), + [anon_sym_DASH_DASH] = ACTIONS(3905), + [anon_sym_PLUS_PLUS] = ACTIONS(3905), + [anon_sym_sizeof] = ACTIONS(3893), + [anon_sym___alignof__] = ACTIONS(107), + [anon_sym___alignof] = ACTIONS(107), + [anon_sym__alignof] = ACTIONS(107), + [anon_sym_alignof] = ACTIONS(107), + [anon_sym__Alignof] = ACTIONS(107), + [anon_sym_offsetof] = ACTIONS(109), + [anon_sym__Generic] = ACTIONS(111), + [anon_sym_asm] = ACTIONS(113), + [anon_sym___asm__] = ACTIONS(113), + [anon_sym___asm] = ACTIONS(113), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(117), + [anon_sym_u_SQUOTE] = ACTIONS(117), + [anon_sym_U_SQUOTE] = ACTIONS(117), + [anon_sym_u8_SQUOTE] = ACTIONS(117), + [anon_sym_SQUOTE] = ACTIONS(117), + [anon_sym_L_DQUOTE] = ACTIONS(119), + [anon_sym_u_DQUOTE] = ACTIONS(119), + [anon_sym_U_DQUOTE] = ACTIONS(119), + [anon_sym_u8_DQUOTE] = ACTIONS(119), + [anon_sym_DQUOTE] = ACTIONS(119), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(123), + [anon_sym_nullptr] = ACTIONS(123), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3895), + [anon_sym_R_DQUOTE] = ACTIONS(159), + [anon_sym_LR_DQUOTE] = ACTIONS(159), + [anon_sym_uR_DQUOTE] = ACTIONS(159), + [anon_sym_UR_DQUOTE] = ACTIONS(159), + [anon_sym_u8R_DQUOTE] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(3897), + [anon_sym_new] = ACTIONS(3873), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), + }, + [1501] = { + [sym_expression] = STATE(4815), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -227376,7 +230677,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -227388,62 +230689,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1479] = { - [sym_expression] = STATE(4712), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1502] = { + [sym_expression] = STATE(4459), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -227476,7 +230777,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -227488,62 +230789,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1480] = { - [sym_expression] = STATE(4721), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1503] = { + [sym_expression] = STATE(4819), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -227576,7 +230877,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -227588,62 +230889,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1481] = { - [sym_expression] = STATE(4724), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1504] = { + [sym_expression] = STATE(4755), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -227676,7 +230977,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -227688,67 +230989,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1482] = { - [sym_expression] = STATE(4545), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3568), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3568), - [sym_call_expression] = STATE(3568), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3568), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3568), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3568), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3568), - [sym_identifier] = ACTIONS(3867), - [anon_sym_LPAREN2] = ACTIONS(4642), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_TILDE] = ACTIONS(3871), - [anon_sym_DASH] = ACTIONS(3869), - [anon_sym_PLUS] = ACTIONS(3869), - [anon_sym_STAR] = ACTIONS(4312), - [anon_sym_AMP] = ACTIONS(4312), - [anon_sym___extension__] = ACTIONS(3873), - [anon_sym_COLON_COLON] = ACTIONS(3875), + [1505] = { + [sym_expression] = STATE(4761), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), + [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3869), - [anon_sym_compl] = ACTIONS(3869), - [anon_sym_DASH_DASH] = ACTIONS(4404), - [anon_sym_PLUS_PLUS] = ACTIONS(4404), - [anon_sym_sizeof] = ACTIONS(3877), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -227776,79 +231077,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3879), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3881), - [anon_sym_new] = ACTIONS(3865), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1483] = { - [sym_expression] = STATE(4547), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3568), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3568), - [sym_call_expression] = STATE(3568), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3568), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3568), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3568), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3568), - [sym_identifier] = ACTIONS(3867), - [anon_sym_LPAREN2] = ACTIONS(4642), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_TILDE] = ACTIONS(3871), - [anon_sym_DASH] = ACTIONS(3869), - [anon_sym_PLUS] = ACTIONS(3869), - [anon_sym_STAR] = ACTIONS(4312), - [anon_sym_AMP] = ACTIONS(4312), - [anon_sym___extension__] = ACTIONS(3873), - [anon_sym_COLON_COLON] = ACTIONS(3875), + [1506] = { + [sym_expression] = STATE(4594), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3597), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3597), + [sym_call_expression] = STATE(3597), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3597), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3597), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3597), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3597), + [sym_identifier] = ACTIONS(3857), + [anon_sym_LPAREN2] = ACTIONS(4648), + [anon_sym_BANG] = ACTIONS(3861), + [anon_sym_TILDE] = ACTIONS(3861), + [anon_sym_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3859), + [anon_sym_STAR] = ACTIONS(4366), + [anon_sym_AMP] = ACTIONS(4366), + [anon_sym___extension__] = ACTIONS(3863), + [anon_sym_COLON_COLON] = ACTIONS(3865), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3869), - [anon_sym_compl] = ACTIONS(3869), - [anon_sym_DASH_DASH] = ACTIONS(4404), - [anon_sym_PLUS_PLUS] = ACTIONS(4404), - [anon_sym_sizeof] = ACTIONS(3877), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3859), + [anon_sym_compl] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(4368), + [anon_sym_PLUS_PLUS] = ACTIONS(4368), + [anon_sym_sizeof] = ACTIONS(3867), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -227876,79 +231177,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3879), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3869), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3881), - [anon_sym_new] = ACTIONS(3865), + [anon_sym_co_await] = ACTIONS(3871), + [anon_sym_new] = ACTIONS(3873), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1484] = { - [sym_expression] = STATE(4665), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), - [anon_sym_COLON_COLON] = ACTIONS(47), + [1507] = { + [sym_expression] = STATE(4596), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3597), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3597), + [sym_call_expression] = STATE(3597), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3597), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3597), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3597), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3597), + [sym_identifier] = ACTIONS(3857), + [anon_sym_LPAREN2] = ACTIONS(4648), + [anon_sym_BANG] = ACTIONS(3861), + [anon_sym_TILDE] = ACTIONS(3861), + [anon_sym_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3859), + [anon_sym_STAR] = ACTIONS(4366), + [anon_sym_AMP] = ACTIONS(4366), + [anon_sym___extension__] = ACTIONS(3863), + [anon_sym_COLON_COLON] = ACTIONS(3865), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3859), + [anon_sym_compl] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(4368), + [anon_sym_PLUS_PLUS] = ACTIONS(4368), + [anon_sym_sizeof] = ACTIONS(3867), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -227976,79 +231277,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(145), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3869), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), + [anon_sym_co_await] = ACTIONS(3871), + [anon_sym_new] = ACTIONS(3873), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1485] = { - [sym_expression] = STATE(4492), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3568), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3568), - [sym_call_expression] = STATE(3568), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3568), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3568), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3568), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3568), - [sym_identifier] = ACTIONS(3867), - [anon_sym_LPAREN2] = ACTIONS(4642), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_TILDE] = ACTIONS(3871), - [anon_sym_DASH] = ACTIONS(3869), - [anon_sym_PLUS] = ACTIONS(3869), - [anon_sym_STAR] = ACTIONS(4312), - [anon_sym_AMP] = ACTIONS(4312), - [anon_sym___extension__] = ACTIONS(3873), - [anon_sym_COLON_COLON] = ACTIONS(3875), - [anon_sym_LBRACK] = ACTIONS(4941), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3869), - [anon_sym_compl] = ACTIONS(3869), - [anon_sym_DASH_DASH] = ACTIONS(4404), - [anon_sym_PLUS_PLUS] = ACTIONS(4404), - [anon_sym_sizeof] = ACTIONS(3877), + [1508] = { + [sym_expression] = STATE(4518), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3597), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3597), + [sym_call_expression] = STATE(3597), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3597), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3597), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3597), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3597), + [sym_identifier] = ACTIONS(3857), + [anon_sym_LPAREN2] = ACTIONS(4648), + [anon_sym_BANG] = ACTIONS(3861), + [anon_sym_TILDE] = ACTIONS(3861), + [anon_sym_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3859), + [anon_sym_STAR] = ACTIONS(4366), + [anon_sym_AMP] = ACTIONS(4366), + [anon_sym___extension__] = ACTIONS(3863), + [anon_sym_COLON_COLON] = ACTIONS(3865), + [anon_sym_LBRACK] = ACTIONS(4966), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3859), + [anon_sym_compl] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(4368), + [anon_sym_PLUS_PLUS] = ACTIONS(4368), + [anon_sym_sizeof] = ACTIONS(3867), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -228076,79 +231377,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3879), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3869), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3881), - [anon_sym_new] = ACTIONS(3865), + [anon_sym_co_await] = ACTIONS(3871), + [anon_sym_new] = ACTIONS(3873), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1486] = { - [sym_expression] = STATE(4550), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3568), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3568), - [sym_call_expression] = STATE(3568), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3568), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3568), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3568), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3568), - [sym_identifier] = ACTIONS(3867), - [anon_sym_LPAREN2] = ACTIONS(4642), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_TILDE] = ACTIONS(3871), - [anon_sym_DASH] = ACTIONS(3869), - [anon_sym_PLUS] = ACTIONS(3869), - [anon_sym_STAR] = ACTIONS(4312), - [anon_sym_AMP] = ACTIONS(4312), - [anon_sym___extension__] = ACTIONS(3873), - [anon_sym_COLON_COLON] = ACTIONS(3875), + [1509] = { + [sym_expression] = STATE(4599), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3597), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3597), + [sym_call_expression] = STATE(3597), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3597), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3597), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3597), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3597), + [sym_identifier] = ACTIONS(3857), + [anon_sym_LPAREN2] = ACTIONS(4648), + [anon_sym_BANG] = ACTIONS(3861), + [anon_sym_TILDE] = ACTIONS(3861), + [anon_sym_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3859), + [anon_sym_STAR] = ACTIONS(4366), + [anon_sym_AMP] = ACTIONS(4366), + [anon_sym___extension__] = ACTIONS(3863), + [anon_sym_COLON_COLON] = ACTIONS(3865), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3869), - [anon_sym_compl] = ACTIONS(3869), - [anon_sym_DASH_DASH] = ACTIONS(4404), - [anon_sym_PLUS_PLUS] = ACTIONS(4404), - [anon_sym_sizeof] = ACTIONS(3877), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3859), + [anon_sym_compl] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(4368), + [anon_sym_PLUS_PLUS] = ACTIONS(4368), + [anon_sym_sizeof] = ACTIONS(3867), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -228176,74 +231477,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3879), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3869), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3881), - [anon_sym_new] = ACTIONS(3865), + [anon_sym_co_await] = ACTIONS(3871), + [anon_sym_new] = ACTIONS(3873), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1487] = { - [sym_expression] = STATE(4506), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1510] = { + [sym_expression] = STATE(4542), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -228276,7 +231577,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -228288,66 +231589,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1488] = { - [sym_expression] = STATE(3304), - [sym__string] = STATE(2950), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(2950), - [sym_concatenated_string] = STATE(2950), - [sym_string_literal] = STATE(2034), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(2034), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), + [1511] = { + [sym_expression] = STATE(3327), + [sym__string] = STATE(2917), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(2917), + [sym_concatenated_string] = STATE(2917), + [sym_string_literal] = STATE(2114), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(2114), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), [sym_identifier] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(4687), [anon_sym_BANG] = ACTIONS(2535), [anon_sym_TILDE] = ACTIONS(2535), [anon_sym_DASH] = ACTIONS(2533), [anon_sym_PLUS] = ACTIONS(2533), - [anon_sym_STAR] = ACTIONS(4312), - [anon_sym_AMP] = ACTIONS(4312), + [anon_sym_STAR] = ACTIONS(4366), + [anon_sym_AMP] = ACTIONS(4366), [anon_sym___extension__] = ACTIONS(2537), [anon_sym_COLON_COLON] = ACTIONS(2539), [anon_sym_LBRACK] = ACTIONS(2020), [sym_primitive_type] = ACTIONS(1956), [anon_sym_not] = ACTIONS(2533), [anon_sym_compl] = ACTIONS(2533), - [anon_sym_DASH_DASH] = ACTIONS(4316), - [anon_sym_PLUS_PLUS] = ACTIONS(4316), + [anon_sym_DASH_DASH] = ACTIONS(4498), + [anon_sym_PLUS_PLUS] = ACTIONS(4498), [anon_sym_sizeof] = ACTIONS(2541), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), @@ -228376,7 +231677,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1976), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(2543), [anon_sym_R_DQUOTE] = ACTIONS(2010), [anon_sym_LR_DQUOTE] = ACTIONS(2010), @@ -228388,66 +231689,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [1489] = { - [sym_expression] = STATE(3306), - [sym__string] = STATE(2950), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(2950), - [sym_concatenated_string] = STATE(2950), - [sym_string_literal] = STATE(2034), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(2034), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), + [1512] = { + [sym_expression] = STATE(3329), + [sym__string] = STATE(2917), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(2917), + [sym_concatenated_string] = STATE(2917), + [sym_string_literal] = STATE(2114), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(2114), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), [sym_identifier] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(4687), [anon_sym_BANG] = ACTIONS(2535), [anon_sym_TILDE] = ACTIONS(2535), [anon_sym_DASH] = ACTIONS(2533), [anon_sym_PLUS] = ACTIONS(2533), - [anon_sym_STAR] = ACTIONS(4312), - [anon_sym_AMP] = ACTIONS(4312), + [anon_sym_STAR] = ACTIONS(4366), + [anon_sym_AMP] = ACTIONS(4366), [anon_sym___extension__] = ACTIONS(2537), [anon_sym_COLON_COLON] = ACTIONS(2539), [anon_sym_LBRACK] = ACTIONS(2020), [sym_primitive_type] = ACTIONS(1956), [anon_sym_not] = ACTIONS(2533), [anon_sym_compl] = ACTIONS(2533), - [anon_sym_DASH_DASH] = ACTIONS(4316), - [anon_sym_PLUS_PLUS] = ACTIONS(4316), + [anon_sym_DASH_DASH] = ACTIONS(4498), + [anon_sym_PLUS_PLUS] = ACTIONS(4498), [anon_sym_sizeof] = ACTIONS(2541), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), @@ -228476,7 +231777,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1976), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(2543), [anon_sym_R_DQUOTE] = ACTIONS(2010), [anon_sym_LR_DQUOTE] = ACTIONS(2010), @@ -228488,67 +231789,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [1490] = { - [sym_expression] = STATE(3760), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3678), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3678), - [sym_call_expression] = STATE(3678), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3678), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3678), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3678), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3678), - [sym_identifier] = ACTIONS(3849), - [anon_sym_LPAREN2] = ACTIONS(3893), - [anon_sym_BANG] = ACTIONS(3853), - [anon_sym_TILDE] = ACTIONS(3853), - [anon_sym_DASH] = ACTIONS(3851), - [anon_sym_PLUS] = ACTIONS(3851), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(3855), - [anon_sym_COLON_COLON] = ACTIONS(3857), + [1513] = { + [sym_expression] = STATE(3756), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3728), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3728), + [sym_call_expression] = STATE(3728), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3728), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3728), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3728), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3728), + [sym_identifier] = ACTIONS(3883), + [anon_sym_LPAREN2] = ACTIONS(3901), + [anon_sym_BANG] = ACTIONS(3887), + [anon_sym_TILDE] = ACTIONS(3887), + [anon_sym_DASH] = ACTIONS(3885), + [anon_sym_PLUS] = ACTIONS(3885), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(3889), + [anon_sym_COLON_COLON] = ACTIONS(3891), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3851), - [anon_sym_compl] = ACTIONS(3851), - [anon_sym_DASH_DASH] = ACTIONS(3897), - [anon_sym_PLUS_PLUS] = ACTIONS(3897), - [anon_sym_sizeof] = ACTIONS(3859), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3885), + [anon_sym_compl] = ACTIONS(3885), + [anon_sym_DASH_DASH] = ACTIONS(3905), + [anon_sym_PLUS_PLUS] = ACTIONS(3905), + [anon_sym_sizeof] = ACTIONS(3893), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -228576,74 +231877,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3861), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3895), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3863), - [anon_sym_new] = ACTIONS(3865), + [anon_sym_co_await] = ACTIONS(3897), + [anon_sym_new] = ACTIONS(3873), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1491] = { - [sym_expression] = STATE(4440), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1514] = { + [sym_expression] = STATE(4549), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -228676,7 +231977,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -228688,62 +231989,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1492] = { - [sym_expression] = STATE(4453), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1515] = { + [sym_expression] = STATE(4623), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -228776,7 +232077,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -228788,62 +232089,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1493] = { - [sym_expression] = STATE(4464), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1516] = { + [sym_expression] = STATE(4471), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -228876,7 +232177,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -228888,62 +232189,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1494] = { - [sym_expression] = STATE(4475), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1517] = { + [sym_expression] = STATE(4484), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -228976,7 +232277,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -228988,62 +232289,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1495] = { - [sym_expression] = STATE(4481), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1518] = { + [sym_expression] = STATE(4491), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -229076,7 +232377,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -229088,66 +232389,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1496] = { - [sym_expression] = STATE(3333), - [sym__string] = STATE(2950), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(2950), - [sym_concatenated_string] = STATE(2950), - [sym_string_literal] = STATE(2034), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(2034), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), + [1519] = { + [sym_expression] = STATE(3361), + [sym__string] = STATE(2917), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(2917), + [sym_concatenated_string] = STATE(2917), + [sym_string_literal] = STATE(2114), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(2114), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), [sym_identifier] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(4687), [anon_sym_BANG] = ACTIONS(2535), [anon_sym_TILDE] = ACTIONS(2535), [anon_sym_DASH] = ACTIONS(2533), [anon_sym_PLUS] = ACTIONS(2533), - [anon_sym_STAR] = ACTIONS(4312), - [anon_sym_AMP] = ACTIONS(4312), + [anon_sym_STAR] = ACTIONS(4366), + [anon_sym_AMP] = ACTIONS(4366), [anon_sym___extension__] = ACTIONS(2537), [anon_sym_COLON_COLON] = ACTIONS(2539), [anon_sym_LBRACK] = ACTIONS(2020), [sym_primitive_type] = ACTIONS(1956), [anon_sym_not] = ACTIONS(2533), [anon_sym_compl] = ACTIONS(2533), - [anon_sym_DASH_DASH] = ACTIONS(4316), - [anon_sym_PLUS_PLUS] = ACTIONS(4316), + [anon_sym_DASH_DASH] = ACTIONS(4498), + [anon_sym_PLUS_PLUS] = ACTIONS(4498), [anon_sym_sizeof] = ACTIONS(2541), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), @@ -229176,7 +232477,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1976), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(2543), [anon_sym_R_DQUOTE] = ACTIONS(2010), [anon_sym_LR_DQUOTE] = ACTIONS(2010), @@ -229188,66 +232489,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [1497] = { - [sym_expression] = STATE(3305), - [sym__string] = STATE(2950), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(2950), - [sym_concatenated_string] = STATE(2950), - [sym_string_literal] = STATE(2034), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(2034), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), + [1520] = { + [sym_expression] = STATE(3335), + [sym__string] = STATE(2917), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(2917), + [sym_concatenated_string] = STATE(2917), + [sym_string_literal] = STATE(2114), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(2114), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), [sym_identifier] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(4687), [anon_sym_BANG] = ACTIONS(2535), [anon_sym_TILDE] = ACTIONS(2535), [anon_sym_DASH] = ACTIONS(2533), [anon_sym_PLUS] = ACTIONS(2533), - [anon_sym_STAR] = ACTIONS(4312), - [anon_sym_AMP] = ACTIONS(4312), + [anon_sym_STAR] = ACTIONS(4366), + [anon_sym_AMP] = ACTIONS(4366), [anon_sym___extension__] = ACTIONS(2537), [anon_sym_COLON_COLON] = ACTIONS(2539), [anon_sym_LBRACK] = ACTIONS(2020), [sym_primitive_type] = ACTIONS(1956), [anon_sym_not] = ACTIONS(2533), [anon_sym_compl] = ACTIONS(2533), - [anon_sym_DASH_DASH] = ACTIONS(4316), - [anon_sym_PLUS_PLUS] = ACTIONS(4316), + [anon_sym_DASH_DASH] = ACTIONS(4498), + [anon_sym_PLUS_PLUS] = ACTIONS(4498), [anon_sym_sizeof] = ACTIONS(2541), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), @@ -229276,7 +232577,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1976), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(2543), [anon_sym_R_DQUOTE] = ACTIONS(2010), [anon_sym_LR_DQUOTE] = ACTIONS(2010), @@ -229288,66 +232589,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [1498] = { - [sym_expression] = STATE(3312), - [sym__string] = STATE(2950), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(2950), - [sym_concatenated_string] = STATE(2950), - [sym_string_literal] = STATE(2034), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(2034), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), + [1521] = { + [sym_expression] = STATE(3336), + [sym__string] = STATE(2917), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(2917), + [sym_concatenated_string] = STATE(2917), + [sym_string_literal] = STATE(2114), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(2114), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), [sym_identifier] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(4687), [anon_sym_BANG] = ACTIONS(2535), [anon_sym_TILDE] = ACTIONS(2535), [anon_sym_DASH] = ACTIONS(2533), [anon_sym_PLUS] = ACTIONS(2533), - [anon_sym_STAR] = ACTIONS(4312), - [anon_sym_AMP] = ACTIONS(4312), + [anon_sym_STAR] = ACTIONS(4366), + [anon_sym_AMP] = ACTIONS(4366), [anon_sym___extension__] = ACTIONS(2537), [anon_sym_COLON_COLON] = ACTIONS(2539), [anon_sym_LBRACK] = ACTIONS(2020), [sym_primitive_type] = ACTIONS(1956), [anon_sym_not] = ACTIONS(2533), [anon_sym_compl] = ACTIONS(2533), - [anon_sym_DASH_DASH] = ACTIONS(4316), - [anon_sym_PLUS_PLUS] = ACTIONS(4316), + [anon_sym_DASH_DASH] = ACTIONS(4498), + [anon_sym_PLUS_PLUS] = ACTIONS(4498), [anon_sym_sizeof] = ACTIONS(2541), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), @@ -229376,7 +232677,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1976), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(2543), [anon_sym_R_DQUOTE] = ACTIONS(2010), [anon_sym_LR_DQUOTE] = ACTIONS(2010), @@ -229388,66 +232689,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [1499] = { - [sym_expression] = STATE(3313), - [sym__string] = STATE(2950), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(2950), - [sym_concatenated_string] = STATE(2950), - [sym_string_literal] = STATE(2034), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(2034), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), + [1522] = { + [sym_expression] = STATE(3337), + [sym__string] = STATE(2917), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(2917), + [sym_concatenated_string] = STATE(2917), + [sym_string_literal] = STATE(2114), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(2114), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), [sym_identifier] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(4687), [anon_sym_BANG] = ACTIONS(2535), [anon_sym_TILDE] = ACTIONS(2535), [anon_sym_DASH] = ACTIONS(2533), [anon_sym_PLUS] = ACTIONS(2533), - [anon_sym_STAR] = ACTIONS(4312), - [anon_sym_AMP] = ACTIONS(4312), + [anon_sym_STAR] = ACTIONS(4366), + [anon_sym_AMP] = ACTIONS(4366), + [anon_sym___extension__] = ACTIONS(2537), + [anon_sym_COLON_COLON] = ACTIONS(2539), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(1956), + [anon_sym_not] = ACTIONS(2533), + [anon_sym_compl] = ACTIONS(2533), + [anon_sym_DASH_DASH] = ACTIONS(4498), + [anon_sym_PLUS_PLUS] = ACTIONS(4498), + [anon_sym_sizeof] = ACTIONS(2541), + [anon_sym___alignof__] = ACTIONS(1960), + [anon_sym___alignof] = ACTIONS(1960), + [anon_sym__alignof] = ACTIONS(1960), + [anon_sym_alignof] = ACTIONS(1960), + [anon_sym__Alignof] = ACTIONS(1960), + [anon_sym_offsetof] = ACTIONS(1962), + [anon_sym__Generic] = ACTIONS(1964), + [anon_sym_asm] = ACTIONS(1966), + [anon_sym___asm__] = ACTIONS(1966), + [anon_sym___asm] = ACTIONS(1966), + [sym_number_literal] = ACTIONS(2002), + [anon_sym_L_SQUOTE] = ACTIONS(2004), + [anon_sym_u_SQUOTE] = ACTIONS(2004), + [anon_sym_U_SQUOTE] = ACTIONS(2004), + [anon_sym_u8_SQUOTE] = ACTIONS(2004), + [anon_sym_SQUOTE] = ACTIONS(2004), + [anon_sym_L_DQUOTE] = ACTIONS(2006), + [anon_sym_u_DQUOTE] = ACTIONS(2006), + [anon_sym_U_DQUOTE] = ACTIONS(2006), + [anon_sym_u8_DQUOTE] = ACTIONS(2006), + [anon_sym_DQUOTE] = ACTIONS(2006), + [sym_true] = ACTIONS(1974), + [sym_false] = ACTIONS(1974), + [anon_sym_NULL] = ACTIONS(1976), + [anon_sym_nullptr] = ACTIONS(1976), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(2543), + [anon_sym_R_DQUOTE] = ACTIONS(2010), + [anon_sym_LR_DQUOTE] = ACTIONS(2010), + [anon_sym_uR_DQUOTE] = ACTIONS(2010), + [anon_sym_UR_DQUOTE] = ACTIONS(2010), + [anon_sym_u8R_DQUOTE] = ACTIONS(2010), + [anon_sym_co_await] = ACTIONS(2545), + [anon_sym_new] = ACTIONS(2014), + [anon_sym_requires] = ACTIONS(1988), + [sym_this] = ACTIONS(1974), + }, + [1523] = { + [sym_expression] = STATE(3338), + [sym__string] = STATE(2917), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(2917), + [sym_concatenated_string] = STATE(2917), + [sym_string_literal] = STATE(2114), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(2114), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), + [sym_identifier] = ACTIONS(1990), + [anon_sym_LPAREN2] = ACTIONS(4687), + [anon_sym_BANG] = ACTIONS(2535), + [anon_sym_TILDE] = ACTIONS(2535), + [anon_sym_DASH] = ACTIONS(2533), + [anon_sym_PLUS] = ACTIONS(2533), + [anon_sym_STAR] = ACTIONS(4366), + [anon_sym_AMP] = ACTIONS(4366), [anon_sym___extension__] = ACTIONS(2537), [anon_sym_COLON_COLON] = ACTIONS(2539), [anon_sym_LBRACK] = ACTIONS(2020), [sym_primitive_type] = ACTIONS(1956), [anon_sym_not] = ACTIONS(2533), [anon_sym_compl] = ACTIONS(2533), - [anon_sym_DASH_DASH] = ACTIONS(4316), - [anon_sym_PLUS_PLUS] = ACTIONS(4316), + [anon_sym_DASH_DASH] = ACTIONS(4498), + [anon_sym_PLUS_PLUS] = ACTIONS(4498), [anon_sym_sizeof] = ACTIONS(2541), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), @@ -229476,7 +232877,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1976), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(2543), [anon_sym_R_DQUOTE] = ACTIONS(2010), [anon_sym_LR_DQUOTE] = ACTIONS(2010), @@ -229488,66 +232889,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [1500] = { - [sym_expression] = STATE(3314), - [sym__string] = STATE(2950), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(2950), - [sym_concatenated_string] = STATE(2950), - [sym_string_literal] = STATE(2034), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(2034), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), + [1524] = { + [sym_expression] = STATE(3339), + [sym__string] = STATE(2917), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(2917), + [sym_concatenated_string] = STATE(2917), + [sym_string_literal] = STATE(2114), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(2114), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), [sym_identifier] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(4687), [anon_sym_BANG] = ACTIONS(2535), [anon_sym_TILDE] = ACTIONS(2535), [anon_sym_DASH] = ACTIONS(2533), [anon_sym_PLUS] = ACTIONS(2533), - [anon_sym_STAR] = ACTIONS(4312), - [anon_sym_AMP] = ACTIONS(4312), + [anon_sym_STAR] = ACTIONS(4366), + [anon_sym_AMP] = ACTIONS(4366), [anon_sym___extension__] = ACTIONS(2537), [anon_sym_COLON_COLON] = ACTIONS(2539), [anon_sym_LBRACK] = ACTIONS(2020), [sym_primitive_type] = ACTIONS(1956), [anon_sym_not] = ACTIONS(2533), [anon_sym_compl] = ACTIONS(2533), - [anon_sym_DASH_DASH] = ACTIONS(4316), - [anon_sym_PLUS_PLUS] = ACTIONS(4316), + [anon_sym_DASH_DASH] = ACTIONS(4498), + [anon_sym_PLUS_PLUS] = ACTIONS(4498), [anon_sym_sizeof] = ACTIONS(2541), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), @@ -229576,7 +232977,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1976), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(2543), [anon_sym_R_DQUOTE] = ACTIONS(2010), [anon_sym_LR_DQUOTE] = ACTIONS(2010), @@ -229588,66 +232989,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [1501] = { - [sym_expression] = STATE(3315), - [sym__string] = STATE(2950), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(2950), - [sym_concatenated_string] = STATE(2950), - [sym_string_literal] = STATE(2034), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(2034), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), + [1525] = { + [sym_expression] = STATE(3340), + [sym__string] = STATE(2917), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(2917), + [sym_concatenated_string] = STATE(2917), + [sym_string_literal] = STATE(2114), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(2114), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), [sym_identifier] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(4687), [anon_sym_BANG] = ACTIONS(2535), [anon_sym_TILDE] = ACTIONS(2535), [anon_sym_DASH] = ACTIONS(2533), [anon_sym_PLUS] = ACTIONS(2533), - [anon_sym_STAR] = ACTIONS(4312), - [anon_sym_AMP] = ACTIONS(4312), + [anon_sym_STAR] = ACTIONS(4366), + [anon_sym_AMP] = ACTIONS(4366), [anon_sym___extension__] = ACTIONS(2537), [anon_sym_COLON_COLON] = ACTIONS(2539), [anon_sym_LBRACK] = ACTIONS(2020), [sym_primitive_type] = ACTIONS(1956), [anon_sym_not] = ACTIONS(2533), [anon_sym_compl] = ACTIONS(2533), - [anon_sym_DASH_DASH] = ACTIONS(4316), - [anon_sym_PLUS_PLUS] = ACTIONS(4316), + [anon_sym_DASH_DASH] = ACTIONS(4498), + [anon_sym_PLUS_PLUS] = ACTIONS(4498), [anon_sym_sizeof] = ACTIONS(2541), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), @@ -229676,7 +233077,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1976), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(2543), [anon_sym_R_DQUOTE] = ACTIONS(2010), [anon_sym_LR_DQUOTE] = ACTIONS(2010), @@ -229688,66 +233089,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [1502] = { - [sym_expression] = STATE(3316), - [sym__string] = STATE(2950), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(2950), - [sym_concatenated_string] = STATE(2950), - [sym_string_literal] = STATE(2034), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(2034), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), + [1526] = { + [sym_expression] = STATE(3341), + [sym__string] = STATE(2917), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(2917), + [sym_concatenated_string] = STATE(2917), + [sym_string_literal] = STATE(2114), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(2114), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), [sym_identifier] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(4687), [anon_sym_BANG] = ACTIONS(2535), [anon_sym_TILDE] = ACTIONS(2535), [anon_sym_DASH] = ACTIONS(2533), [anon_sym_PLUS] = ACTIONS(2533), - [anon_sym_STAR] = ACTIONS(4312), - [anon_sym_AMP] = ACTIONS(4312), + [anon_sym_STAR] = ACTIONS(4366), + [anon_sym_AMP] = ACTIONS(4366), [anon_sym___extension__] = ACTIONS(2537), [anon_sym_COLON_COLON] = ACTIONS(2539), [anon_sym_LBRACK] = ACTIONS(2020), [sym_primitive_type] = ACTIONS(1956), [anon_sym_not] = ACTIONS(2533), [anon_sym_compl] = ACTIONS(2533), - [anon_sym_DASH_DASH] = ACTIONS(4316), - [anon_sym_PLUS_PLUS] = ACTIONS(4316), + [anon_sym_DASH_DASH] = ACTIONS(4498), + [anon_sym_PLUS_PLUS] = ACTIONS(4498), [anon_sym_sizeof] = ACTIONS(2541), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), @@ -229776,7 +233177,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1976), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(2543), [anon_sym_R_DQUOTE] = ACTIONS(2010), [anon_sym_LR_DQUOTE] = ACTIONS(2010), @@ -229788,66 +233189,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [1503] = { - [sym_expression] = STATE(3317), - [sym__string] = STATE(2950), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(2950), - [sym_concatenated_string] = STATE(2950), - [sym_string_literal] = STATE(2034), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(2034), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), + [1527] = { + [sym_expression] = STATE(3342), + [sym__string] = STATE(2917), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(2917), + [sym_concatenated_string] = STATE(2917), + [sym_string_literal] = STATE(2114), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(2114), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), [sym_identifier] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(4687), [anon_sym_BANG] = ACTIONS(2535), [anon_sym_TILDE] = ACTIONS(2535), [anon_sym_DASH] = ACTIONS(2533), [anon_sym_PLUS] = ACTIONS(2533), - [anon_sym_STAR] = ACTIONS(4312), - [anon_sym_AMP] = ACTIONS(4312), + [anon_sym_STAR] = ACTIONS(4366), + [anon_sym_AMP] = ACTIONS(4366), [anon_sym___extension__] = ACTIONS(2537), [anon_sym_COLON_COLON] = ACTIONS(2539), [anon_sym_LBRACK] = ACTIONS(2020), [sym_primitive_type] = ACTIONS(1956), [anon_sym_not] = ACTIONS(2533), [anon_sym_compl] = ACTIONS(2533), - [anon_sym_DASH_DASH] = ACTIONS(4316), - [anon_sym_PLUS_PLUS] = ACTIONS(4316), + [anon_sym_DASH_DASH] = ACTIONS(4498), + [anon_sym_PLUS_PLUS] = ACTIONS(4498), [anon_sym_sizeof] = ACTIONS(2541), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), @@ -229876,7 +233277,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1976), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(2543), [anon_sym_R_DQUOTE] = ACTIONS(2010), [anon_sym_LR_DQUOTE] = ACTIONS(2010), @@ -229888,66 +233289,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [1504] = { - [sym_expression] = STATE(3318), - [sym__string] = STATE(2950), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(2950), - [sym_concatenated_string] = STATE(2950), - [sym_string_literal] = STATE(2034), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(2034), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), + [1528] = { + [sym_expression] = STATE(3343), + [sym__string] = STATE(2917), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(2917), + [sym_concatenated_string] = STATE(2917), + [sym_string_literal] = STATE(2114), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(2114), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), [sym_identifier] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(4687), [anon_sym_BANG] = ACTIONS(2535), [anon_sym_TILDE] = ACTIONS(2535), [anon_sym_DASH] = ACTIONS(2533), [anon_sym_PLUS] = ACTIONS(2533), - [anon_sym_STAR] = ACTIONS(4312), - [anon_sym_AMP] = ACTIONS(4312), + [anon_sym_STAR] = ACTIONS(4366), + [anon_sym_AMP] = ACTIONS(4366), [anon_sym___extension__] = ACTIONS(2537), [anon_sym_COLON_COLON] = ACTIONS(2539), [anon_sym_LBRACK] = ACTIONS(2020), [sym_primitive_type] = ACTIONS(1956), [anon_sym_not] = ACTIONS(2533), [anon_sym_compl] = ACTIONS(2533), - [anon_sym_DASH_DASH] = ACTIONS(4316), - [anon_sym_PLUS_PLUS] = ACTIONS(4316), + [anon_sym_DASH_DASH] = ACTIONS(4498), + [anon_sym_PLUS_PLUS] = ACTIONS(4498), [anon_sym_sizeof] = ACTIONS(2541), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), @@ -229976,7 +233377,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1976), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(2543), [anon_sym_R_DQUOTE] = ACTIONS(2010), [anon_sym_LR_DQUOTE] = ACTIONS(2010), @@ -229988,66 +233389,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [1505] = { - [sym_expression] = STATE(3319), - [sym__string] = STATE(2950), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(2950), - [sym_concatenated_string] = STATE(2950), - [sym_string_literal] = STATE(2034), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(2034), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), + [1529] = { + [sym_expression] = STATE(3344), + [sym__string] = STATE(2917), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(2917), + [sym_concatenated_string] = STATE(2917), + [sym_string_literal] = STATE(2114), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(2114), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), [sym_identifier] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(4687), [anon_sym_BANG] = ACTIONS(2535), [anon_sym_TILDE] = ACTIONS(2535), [anon_sym_DASH] = ACTIONS(2533), [anon_sym_PLUS] = ACTIONS(2533), - [anon_sym_STAR] = ACTIONS(4312), - [anon_sym_AMP] = ACTIONS(4312), + [anon_sym_STAR] = ACTIONS(4366), + [anon_sym_AMP] = ACTIONS(4366), [anon_sym___extension__] = ACTIONS(2537), [anon_sym_COLON_COLON] = ACTIONS(2539), [anon_sym_LBRACK] = ACTIONS(2020), [sym_primitive_type] = ACTIONS(1956), [anon_sym_not] = ACTIONS(2533), [anon_sym_compl] = ACTIONS(2533), - [anon_sym_DASH_DASH] = ACTIONS(4316), - [anon_sym_PLUS_PLUS] = ACTIONS(4316), + [anon_sym_DASH_DASH] = ACTIONS(4498), + [anon_sym_PLUS_PLUS] = ACTIONS(4498), [anon_sym_sizeof] = ACTIONS(2541), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), @@ -230076,7 +233477,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1976), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(2543), [anon_sym_R_DQUOTE] = ACTIONS(2010), [anon_sym_LR_DQUOTE] = ACTIONS(2010), @@ -230088,66 +233489,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [1506] = { - [sym_expression] = STATE(3320), - [sym__string] = STATE(2950), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(2950), - [sym_concatenated_string] = STATE(2950), - [sym_string_literal] = STATE(2034), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(2034), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), + [1530] = { + [sym_expression] = STATE(3252), + [sym__string] = STATE(2917), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(2917), + [sym_concatenated_string] = STATE(2917), + [sym_string_literal] = STATE(2114), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(2114), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), [sym_identifier] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(4687), [anon_sym_BANG] = ACTIONS(2535), [anon_sym_TILDE] = ACTIONS(2535), [anon_sym_DASH] = ACTIONS(2533), [anon_sym_PLUS] = ACTIONS(2533), - [anon_sym_STAR] = ACTIONS(4312), - [anon_sym_AMP] = ACTIONS(4312), + [anon_sym_STAR] = ACTIONS(4366), + [anon_sym_AMP] = ACTIONS(4366), [anon_sym___extension__] = ACTIONS(2537), [anon_sym_COLON_COLON] = ACTIONS(2539), - [anon_sym_LBRACK] = ACTIONS(2020), + [anon_sym_LBRACK] = ACTIONS(4968), [sym_primitive_type] = ACTIONS(1956), [anon_sym_not] = ACTIONS(2533), [anon_sym_compl] = ACTIONS(2533), - [anon_sym_DASH_DASH] = ACTIONS(4316), - [anon_sym_PLUS_PLUS] = ACTIONS(4316), + [anon_sym_DASH_DASH] = ACTIONS(4498), + [anon_sym_PLUS_PLUS] = ACTIONS(4498), [anon_sym_sizeof] = ACTIONS(2541), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), @@ -230176,7 +233577,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1976), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(2543), [anon_sym_R_DQUOTE] = ACTIONS(2010), [anon_sym_LR_DQUOTE] = ACTIONS(2010), @@ -230188,66 +233589,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [1507] = { - [sym_expression] = STATE(3209), - [sym__string] = STATE(2950), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(2950), - [sym_concatenated_string] = STATE(2950), - [sym_string_literal] = STATE(2034), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(2034), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), + [1531] = { + [sym_expression] = STATE(3396), + [sym__string] = STATE(2917), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(2917), + [sym_concatenated_string] = STATE(2917), + [sym_string_literal] = STATE(2114), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(2114), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), [sym_identifier] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(4687), [anon_sym_BANG] = ACTIONS(2535), [anon_sym_TILDE] = ACTIONS(2535), [anon_sym_DASH] = ACTIONS(2533), [anon_sym_PLUS] = ACTIONS(2533), - [anon_sym_STAR] = ACTIONS(4312), - [anon_sym_AMP] = ACTIONS(4312), + [anon_sym_STAR] = ACTIONS(4366), + [anon_sym_AMP] = ACTIONS(4366), [anon_sym___extension__] = ACTIONS(2537), [anon_sym_COLON_COLON] = ACTIONS(2539), [anon_sym_LBRACK] = ACTIONS(2020), [sym_primitive_type] = ACTIONS(1956), [anon_sym_not] = ACTIONS(2533), [anon_sym_compl] = ACTIONS(2533), - [anon_sym_DASH_DASH] = ACTIONS(4316), - [anon_sym_PLUS_PLUS] = ACTIONS(4316), + [anon_sym_DASH_DASH] = ACTIONS(4498), + [anon_sym_PLUS_PLUS] = ACTIONS(4498), [anon_sym_sizeof] = ACTIONS(2541), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), @@ -230276,7 +233677,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1976), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(2543), [anon_sym_R_DQUOTE] = ACTIONS(2010), [anon_sym_LR_DQUOTE] = ACTIONS(2010), @@ -230288,66 +233689,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [1508] = { - [sym_expression] = STATE(3308), - [sym__string] = STATE(2950), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(2950), - [sym_concatenated_string] = STATE(2950), - [sym_string_literal] = STATE(2034), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(2034), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), + [1532] = { + [sym_expression] = STATE(3333), + [sym__string] = STATE(2917), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(2917), + [sym_concatenated_string] = STATE(2917), + [sym_string_literal] = STATE(2114), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(2114), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), [sym_identifier] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(4687), [anon_sym_BANG] = ACTIONS(2535), [anon_sym_TILDE] = ACTIONS(2535), [anon_sym_DASH] = ACTIONS(2533), [anon_sym_PLUS] = ACTIONS(2533), - [anon_sym_STAR] = ACTIONS(4312), - [anon_sym_AMP] = ACTIONS(4312), + [anon_sym_STAR] = ACTIONS(4366), + [anon_sym_AMP] = ACTIONS(4366), [anon_sym___extension__] = ACTIONS(2537), [anon_sym_COLON_COLON] = ACTIONS(2539), - [anon_sym_LBRACK] = ACTIONS(4943), + [anon_sym_LBRACK] = ACTIONS(4970), [sym_primitive_type] = ACTIONS(1956), [anon_sym_not] = ACTIONS(2533), [anon_sym_compl] = ACTIONS(2533), - [anon_sym_DASH_DASH] = ACTIONS(4316), - [anon_sym_PLUS_PLUS] = ACTIONS(4316), + [anon_sym_DASH_DASH] = ACTIONS(4498), + [anon_sym_PLUS_PLUS] = ACTIONS(4498), [anon_sym_sizeof] = ACTIONS(2541), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), @@ -230376,7 +233777,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1976), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(2543), [anon_sym_R_DQUOTE] = ACTIONS(2010), [anon_sym_LR_DQUOTE] = ACTIONS(2010), @@ -230388,66 +233789,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [1509] = { - [sym_expression] = STATE(3309), - [sym__string] = STATE(2950), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(2950), - [sym_concatenated_string] = STATE(2950), - [sym_string_literal] = STATE(2034), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(2034), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), + [1533] = { + [sym_expression] = STATE(3345), + [sym__string] = STATE(2917), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(2917), + [sym_concatenated_string] = STATE(2917), + [sym_string_literal] = STATE(2114), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(2114), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), [sym_identifier] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(4687), [anon_sym_BANG] = ACTIONS(2535), [anon_sym_TILDE] = ACTIONS(2535), [anon_sym_DASH] = ACTIONS(2533), [anon_sym_PLUS] = ACTIONS(2533), - [anon_sym_STAR] = ACTIONS(4312), - [anon_sym_AMP] = ACTIONS(4312), + [anon_sym_STAR] = ACTIONS(4366), + [anon_sym_AMP] = ACTIONS(4366), [anon_sym___extension__] = ACTIONS(2537), [anon_sym_COLON_COLON] = ACTIONS(2539), [anon_sym_LBRACK] = ACTIONS(2020), [sym_primitive_type] = ACTIONS(1956), [anon_sym_not] = ACTIONS(2533), [anon_sym_compl] = ACTIONS(2533), - [anon_sym_DASH_DASH] = ACTIONS(4316), - [anon_sym_PLUS_PLUS] = ACTIONS(4316), + [anon_sym_DASH_DASH] = ACTIONS(4498), + [anon_sym_PLUS_PLUS] = ACTIONS(4498), [anon_sym_sizeof] = ACTIONS(2541), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), @@ -230476,7 +233877,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1976), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(2543), [anon_sym_R_DQUOTE] = ACTIONS(2010), [anon_sym_LR_DQUOTE] = ACTIONS(2010), @@ -230488,166 +233889,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [1510] = { - [sym_expression] = STATE(3310), - [sym__string] = STATE(2950), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(2950), - [sym_concatenated_string] = STATE(2950), - [sym_string_literal] = STATE(2034), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(2034), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), - [sym_identifier] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(2535), - [anon_sym_TILDE] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2533), - [anon_sym_PLUS] = ACTIONS(2533), - [anon_sym_STAR] = ACTIONS(4312), - [anon_sym_AMP] = ACTIONS(4312), - [anon_sym___extension__] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(2539), - [anon_sym_LBRACK] = ACTIONS(4945), - [sym_primitive_type] = ACTIONS(1956), - [anon_sym_not] = ACTIONS(2533), - [anon_sym_compl] = ACTIONS(2533), - [anon_sym_DASH_DASH] = ACTIONS(4316), - [anon_sym_PLUS_PLUS] = ACTIONS(4316), - [anon_sym_sizeof] = ACTIONS(2541), - [anon_sym___alignof__] = ACTIONS(1960), - [anon_sym___alignof] = ACTIONS(1960), - [anon_sym__alignof] = ACTIONS(1960), - [anon_sym_alignof] = ACTIONS(1960), - [anon_sym__Alignof] = ACTIONS(1960), - [anon_sym_offsetof] = ACTIONS(1962), - [anon_sym__Generic] = ACTIONS(1964), - [anon_sym_asm] = ACTIONS(1966), - [anon_sym___asm__] = ACTIONS(1966), - [anon_sym___asm] = ACTIONS(1966), - [sym_number_literal] = ACTIONS(2002), - [anon_sym_L_SQUOTE] = ACTIONS(2004), - [anon_sym_u_SQUOTE] = ACTIONS(2004), - [anon_sym_U_SQUOTE] = ACTIONS(2004), - [anon_sym_u8_SQUOTE] = ACTIONS(2004), - [anon_sym_SQUOTE] = ACTIONS(2004), - [anon_sym_L_DQUOTE] = ACTIONS(2006), - [anon_sym_u_DQUOTE] = ACTIONS(2006), - [anon_sym_U_DQUOTE] = ACTIONS(2006), - [anon_sym_u8_DQUOTE] = ACTIONS(2006), - [anon_sym_DQUOTE] = ACTIONS(2006), - [sym_true] = ACTIONS(1974), - [sym_false] = ACTIONS(1974), - [anon_sym_NULL] = ACTIONS(1976), - [anon_sym_nullptr] = ACTIONS(1976), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(2543), - [anon_sym_R_DQUOTE] = ACTIONS(2010), - [anon_sym_LR_DQUOTE] = ACTIONS(2010), - [anon_sym_uR_DQUOTE] = ACTIONS(2010), - [anon_sym_UR_DQUOTE] = ACTIONS(2010), - [anon_sym_u8R_DQUOTE] = ACTIONS(2010), - [anon_sym_co_await] = ACTIONS(2545), - [anon_sym_new] = ACTIONS(2014), - [anon_sym_requires] = ACTIONS(1988), - [sym_this] = ACTIONS(1974), - }, - [1511] = { - [sym_expression] = STATE(3322), - [sym__string] = STATE(2950), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(2950), - [sym_concatenated_string] = STATE(2950), - [sym_string_literal] = STATE(2034), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(2034), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), + [1534] = { + [sym_expression] = STATE(3349), + [sym__string] = STATE(2917), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(2917), + [sym_concatenated_string] = STATE(2917), + [sym_string_literal] = STATE(2114), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(2114), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), [sym_identifier] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(4687), [anon_sym_BANG] = ACTIONS(2535), [anon_sym_TILDE] = ACTIONS(2535), [anon_sym_DASH] = ACTIONS(2533), [anon_sym_PLUS] = ACTIONS(2533), - [anon_sym_STAR] = ACTIONS(4312), - [anon_sym_AMP] = ACTIONS(4312), + [anon_sym_STAR] = ACTIONS(4366), + [anon_sym_AMP] = ACTIONS(4366), [anon_sym___extension__] = ACTIONS(2537), [anon_sym_COLON_COLON] = ACTIONS(2539), [anon_sym_LBRACK] = ACTIONS(2020), [sym_primitive_type] = ACTIONS(1956), [anon_sym_not] = ACTIONS(2533), [anon_sym_compl] = ACTIONS(2533), - [anon_sym_DASH_DASH] = ACTIONS(4316), - [anon_sym_PLUS_PLUS] = ACTIONS(4316), + [anon_sym_DASH_DASH] = ACTIONS(4498), + [anon_sym_PLUS_PLUS] = ACTIONS(4498), [anon_sym_sizeof] = ACTIONS(2541), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), @@ -230676,7 +233977,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1976), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(2543), [anon_sym_R_DQUOTE] = ACTIONS(2010), [anon_sym_LR_DQUOTE] = ACTIONS(2010), @@ -230688,66 +233989,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [1512] = { - [sym_expression] = STATE(3325), - [sym__string] = STATE(2950), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(2950), - [sym_concatenated_string] = STATE(2950), - [sym_string_literal] = STATE(2034), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(2034), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), + [1535] = { + [sym_expression] = STATE(3351), + [sym__string] = STATE(2917), + [sym_conditional_expression] = STATE(2443), + [sym_assignment_expression] = STATE(2443), + [sym_pointer_expression] = STATE(2450), + [sym_unary_expression] = STATE(2443), + [sym_binary_expression] = STATE(2443), + [sym_update_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_alignof_expression] = STATE(2443), + [sym_offsetof_expression] = STATE(2443), + [sym_generic_expression] = STATE(2443), + [sym_subscript_expression] = STATE(2450), + [sym_call_expression] = STATE(2450), + [sym_gnu_asm_expression] = STATE(2443), + [sym_extension_expression] = STATE(2443), + [sym_field_expression] = STATE(2450), + [sym_compound_literal_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2450), + [sym_char_literal] = STATE(2917), + [sym_concatenated_string] = STATE(2917), + [sym_string_literal] = STATE(2114), + [sym_null] = STATE(2443), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7728), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(2443), + [sym_raw_string_literal] = STATE(2114), + [sym_co_await_expression] = STATE(2443), + [sym_new_expression] = STATE(2443), + [sym_delete_expression] = STATE(2443), + [sym_requires_clause] = STATE(2443), + [sym_requires_expression] = STATE(2443), + [sym_lambda_expression] = STATE(2443), + [sym_lambda_capture_specifier] = STATE(5485), + [sym_fold_expression] = STATE(2443), + [sym_parameter_pack_expansion] = STATE(2443), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(2450), + [sym_qualified_type_identifier] = STATE(7728), + [sym_user_defined_literal] = STATE(2450), [sym_identifier] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(4687), [anon_sym_BANG] = ACTIONS(2535), [anon_sym_TILDE] = ACTIONS(2535), [anon_sym_DASH] = ACTIONS(2533), [anon_sym_PLUS] = ACTIONS(2533), - [anon_sym_STAR] = ACTIONS(4312), - [anon_sym_AMP] = ACTIONS(4312), + [anon_sym_STAR] = ACTIONS(4366), + [anon_sym_AMP] = ACTIONS(4366), [anon_sym___extension__] = ACTIONS(2537), [anon_sym_COLON_COLON] = ACTIONS(2539), [anon_sym_LBRACK] = ACTIONS(2020), [sym_primitive_type] = ACTIONS(1956), [anon_sym_not] = ACTIONS(2533), [anon_sym_compl] = ACTIONS(2533), - [anon_sym_DASH_DASH] = ACTIONS(4316), - [anon_sym_PLUS_PLUS] = ACTIONS(4316), + [anon_sym_DASH_DASH] = ACTIONS(4498), + [anon_sym_PLUS_PLUS] = ACTIONS(4498), [anon_sym_sizeof] = ACTIONS(2541), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), @@ -230776,7 +234077,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1976), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(2543), [anon_sym_R_DQUOTE] = ACTIONS(2010), [anon_sym_LR_DQUOTE] = ACTIONS(2010), @@ -230788,167 +234089,167 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [1513] = { - [sym_expression] = STATE(3327), - [sym__string] = STATE(2950), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(2950), - [sym_concatenated_string] = STATE(2950), - [sym_string_literal] = STATE(2034), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(2034), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), - [sym_identifier] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(2535), - [anon_sym_TILDE] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2533), - [anon_sym_PLUS] = ACTIONS(2533), - [anon_sym_STAR] = ACTIONS(4312), - [anon_sym_AMP] = ACTIONS(4312), - [anon_sym___extension__] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(2539), + [1536] = { + [sym_expression] = STATE(4576), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3728), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3728), + [sym_call_expression] = STATE(3728), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3728), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3728), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3728), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3728), + [sym_identifier] = ACTIONS(3883), + [anon_sym_LPAREN2] = ACTIONS(3901), + [anon_sym_BANG] = ACTIONS(3887), + [anon_sym_TILDE] = ACTIONS(3887), + [anon_sym_DASH] = ACTIONS(3885), + [anon_sym_PLUS] = ACTIONS(3885), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(3889), + [anon_sym_COLON_COLON] = ACTIONS(3891), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(1956), - [anon_sym_not] = ACTIONS(2533), - [anon_sym_compl] = ACTIONS(2533), - [anon_sym_DASH_DASH] = ACTIONS(4316), - [anon_sym_PLUS_PLUS] = ACTIONS(4316), - [anon_sym_sizeof] = ACTIONS(2541), - [anon_sym___alignof__] = ACTIONS(1960), - [anon_sym___alignof] = ACTIONS(1960), - [anon_sym__alignof] = ACTIONS(1960), - [anon_sym_alignof] = ACTIONS(1960), - [anon_sym__Alignof] = ACTIONS(1960), - [anon_sym_offsetof] = ACTIONS(1962), - [anon_sym__Generic] = ACTIONS(1964), - [anon_sym_asm] = ACTIONS(1966), - [anon_sym___asm__] = ACTIONS(1966), - [anon_sym___asm] = ACTIONS(1966), - [sym_number_literal] = ACTIONS(2002), - [anon_sym_L_SQUOTE] = ACTIONS(2004), - [anon_sym_u_SQUOTE] = ACTIONS(2004), - [anon_sym_U_SQUOTE] = ACTIONS(2004), - [anon_sym_u8_SQUOTE] = ACTIONS(2004), - [anon_sym_SQUOTE] = ACTIONS(2004), - [anon_sym_L_DQUOTE] = ACTIONS(2006), - [anon_sym_u_DQUOTE] = ACTIONS(2006), - [anon_sym_U_DQUOTE] = ACTIONS(2006), - [anon_sym_u8_DQUOTE] = ACTIONS(2006), - [anon_sym_DQUOTE] = ACTIONS(2006), - [sym_true] = ACTIONS(1974), - [sym_false] = ACTIONS(1974), - [anon_sym_NULL] = ACTIONS(1976), - [anon_sym_nullptr] = ACTIONS(1976), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3885), + [anon_sym_compl] = ACTIONS(3885), + [anon_sym_DASH_DASH] = ACTIONS(3905), + [anon_sym_PLUS_PLUS] = ACTIONS(3905), + [anon_sym_sizeof] = ACTIONS(3893), + [anon_sym___alignof__] = ACTIONS(107), + [anon_sym___alignof] = ACTIONS(107), + [anon_sym__alignof] = ACTIONS(107), + [anon_sym_alignof] = ACTIONS(107), + [anon_sym__Alignof] = ACTIONS(107), + [anon_sym_offsetof] = ACTIONS(109), + [anon_sym__Generic] = ACTIONS(111), + [anon_sym_asm] = ACTIONS(113), + [anon_sym___asm__] = ACTIONS(113), + [anon_sym___asm] = ACTIONS(113), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(117), + [anon_sym_u_SQUOTE] = ACTIONS(117), + [anon_sym_U_SQUOTE] = ACTIONS(117), + [anon_sym_u8_SQUOTE] = ACTIONS(117), + [anon_sym_SQUOTE] = ACTIONS(117), + [anon_sym_L_DQUOTE] = ACTIONS(119), + [anon_sym_u_DQUOTE] = ACTIONS(119), + [anon_sym_U_DQUOTE] = ACTIONS(119), + [anon_sym_u8_DQUOTE] = ACTIONS(119), + [anon_sym_DQUOTE] = ACTIONS(119), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(123), + [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(2543), - [anon_sym_R_DQUOTE] = ACTIONS(2010), - [anon_sym_LR_DQUOTE] = ACTIONS(2010), - [anon_sym_uR_DQUOTE] = ACTIONS(2010), - [anon_sym_UR_DQUOTE] = ACTIONS(2010), - [anon_sym_u8R_DQUOTE] = ACTIONS(2010), - [anon_sym_co_await] = ACTIONS(2545), - [anon_sym_new] = ACTIONS(2014), - [anon_sym_requires] = ACTIONS(1988), - [sym_this] = ACTIONS(1974), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3895), + [anon_sym_R_DQUOTE] = ACTIONS(159), + [anon_sym_LR_DQUOTE] = ACTIONS(159), + [anon_sym_uR_DQUOTE] = ACTIONS(159), + [anon_sym_UR_DQUOTE] = ACTIONS(159), + [anon_sym_u8R_DQUOTE] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(3897), + [anon_sym_new] = ACTIONS(3873), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), }, - [1514] = { - [sym_expression] = STATE(4533), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3678), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3678), - [sym_call_expression] = STATE(3678), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3678), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3678), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3678), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3678), - [sym_identifier] = ACTIONS(3849), - [anon_sym_LPAREN2] = ACTIONS(3893), - [anon_sym_BANG] = ACTIONS(3853), - [anon_sym_TILDE] = ACTIONS(3853), - [anon_sym_DASH] = ACTIONS(3851), - [anon_sym_PLUS] = ACTIONS(3851), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(3855), - [anon_sym_COLON_COLON] = ACTIONS(3857), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3851), - [anon_sym_compl] = ACTIONS(3851), - [anon_sym_DASH_DASH] = ACTIONS(3897), - [anon_sym_PLUS_PLUS] = ACTIONS(3897), - [anon_sym_sizeof] = ACTIONS(3859), + [1537] = { + [sym_expression] = STATE(4558), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3728), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3728), + [sym_call_expression] = STATE(3728), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3728), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3728), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3728), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3728), + [sym_identifier] = ACTIONS(3883), + [anon_sym_LPAREN2] = ACTIONS(3901), + [anon_sym_BANG] = ACTIONS(3887), + [anon_sym_TILDE] = ACTIONS(3887), + [anon_sym_DASH] = ACTIONS(3885), + [anon_sym_PLUS] = ACTIONS(3885), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(3889), + [anon_sym_COLON_COLON] = ACTIONS(3891), + [anon_sym_LBRACK] = ACTIONS(4972), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3885), + [anon_sym_compl] = ACTIONS(3885), + [anon_sym_DASH_DASH] = ACTIONS(3905), + [anon_sym_PLUS_PLUS] = ACTIONS(3905), + [anon_sym_sizeof] = ACTIONS(3893), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -230976,79 +234277,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3861), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3895), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3863), - [anon_sym_new] = ACTIONS(3865), + [anon_sym_co_await] = ACTIONS(3897), + [anon_sym_new] = ACTIONS(3873), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1515] = { - [sym_expression] = STATE(4517), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3678), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3678), - [sym_call_expression] = STATE(3678), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3678), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3678), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3678), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3678), - [sym_identifier] = ACTIONS(3849), - [anon_sym_LPAREN2] = ACTIONS(3893), - [anon_sym_BANG] = ACTIONS(3853), - [anon_sym_TILDE] = ACTIONS(3853), - [anon_sym_DASH] = ACTIONS(3851), - [anon_sym_PLUS] = ACTIONS(3851), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(3855), - [anon_sym_COLON_COLON] = ACTIONS(3857), - [anon_sym_LBRACK] = ACTIONS(4947), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3851), - [anon_sym_compl] = ACTIONS(3851), - [anon_sym_DASH_DASH] = ACTIONS(3897), - [anon_sym_PLUS_PLUS] = ACTIONS(3897), - [anon_sym_sizeof] = ACTIONS(3859), + [1538] = { + [sym_expression] = STATE(4640), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3728), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3728), + [sym_call_expression] = STATE(3728), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3728), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3728), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3728), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3728), + [sym_identifier] = ACTIONS(3883), + [anon_sym_LPAREN2] = ACTIONS(3901), + [anon_sym_BANG] = ACTIONS(3887), + [anon_sym_TILDE] = ACTIONS(3887), + [anon_sym_DASH] = ACTIONS(3885), + [anon_sym_PLUS] = ACTIONS(3885), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(3889), + [anon_sym_COLON_COLON] = ACTIONS(3891), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3885), + [anon_sym_compl] = ACTIONS(3885), + [anon_sym_DASH_DASH] = ACTIONS(3905), + [anon_sym_PLUS_PLUS] = ACTIONS(3905), + [anon_sym_sizeof] = ACTIONS(3893), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -231076,79 +234377,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3861), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3895), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3863), - [anon_sym_new] = ACTIONS(3865), + [anon_sym_co_await] = ACTIONS(3897), + [anon_sym_new] = ACTIONS(3873), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1516] = { - [sym_expression] = STATE(4519), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3678), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3678), - [sym_call_expression] = STATE(3678), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3678), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3678), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3678), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3678), - [sym_identifier] = ACTIONS(3849), - [anon_sym_LPAREN2] = ACTIONS(3893), - [anon_sym_BANG] = ACTIONS(3853), - [anon_sym_TILDE] = ACTIONS(3853), - [anon_sym_DASH] = ACTIONS(3851), - [anon_sym_PLUS] = ACTIONS(3851), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(3855), - [anon_sym_COLON_COLON] = ACTIONS(3857), + [1539] = { + [sym_expression] = STATE(4561), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3728), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3728), + [sym_call_expression] = STATE(3728), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3728), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3728), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3728), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3728), + [sym_identifier] = ACTIONS(3883), + [anon_sym_LPAREN2] = ACTIONS(3901), + [anon_sym_BANG] = ACTIONS(3887), + [anon_sym_TILDE] = ACTIONS(3887), + [anon_sym_DASH] = ACTIONS(3885), + [anon_sym_PLUS] = ACTIONS(3885), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(3889), + [anon_sym_COLON_COLON] = ACTIONS(3891), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3851), - [anon_sym_compl] = ACTIONS(3851), - [anon_sym_DASH_DASH] = ACTIONS(3897), - [anon_sym_PLUS_PLUS] = ACTIONS(3897), - [anon_sym_sizeof] = ACTIONS(3859), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3885), + [anon_sym_compl] = ACTIONS(3885), + [anon_sym_DASH_DASH] = ACTIONS(3905), + [anon_sym_PLUS_PLUS] = ACTIONS(3905), + [anon_sym_sizeof] = ACTIONS(3893), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -231176,79 +234477,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3861), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3895), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3863), - [anon_sym_new] = ACTIONS(3865), + [anon_sym_co_await] = ACTIONS(3897), + [anon_sym_new] = ACTIONS(3873), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1517] = { - [sym_expression] = STATE(4520), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3678), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3678), - [sym_call_expression] = STATE(3678), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3678), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3678), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3678), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3678), - [sym_identifier] = ACTIONS(3849), - [anon_sym_LPAREN2] = ACTIONS(3893), - [anon_sym_BANG] = ACTIONS(3853), - [anon_sym_TILDE] = ACTIONS(3853), - [anon_sym_DASH] = ACTIONS(3851), - [anon_sym_PLUS] = ACTIONS(3851), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(3855), - [anon_sym_COLON_COLON] = ACTIONS(3857), + [1540] = { + [sym_expression] = STATE(4562), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3728), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3728), + [sym_call_expression] = STATE(3728), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3728), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3728), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3728), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3728), + [sym_identifier] = ACTIONS(3883), + [anon_sym_LPAREN2] = ACTIONS(3901), + [anon_sym_BANG] = ACTIONS(3887), + [anon_sym_TILDE] = ACTIONS(3887), + [anon_sym_DASH] = ACTIONS(3885), + [anon_sym_PLUS] = ACTIONS(3885), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(3889), + [anon_sym_COLON_COLON] = ACTIONS(3891), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3851), - [anon_sym_compl] = ACTIONS(3851), - [anon_sym_DASH_DASH] = ACTIONS(3897), - [anon_sym_PLUS_PLUS] = ACTIONS(3897), - [anon_sym_sizeof] = ACTIONS(3859), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3885), + [anon_sym_compl] = ACTIONS(3885), + [anon_sym_DASH_DASH] = ACTIONS(3905), + [anon_sym_PLUS_PLUS] = ACTIONS(3905), + [anon_sym_sizeof] = ACTIONS(3893), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -231276,79 +234577,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3861), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3895), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3863), - [anon_sym_new] = ACTIONS(3865), + [anon_sym_co_await] = ACTIONS(3897), + [anon_sym_new] = ACTIONS(3873), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1518] = { - [sym_expression] = STATE(4521), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3678), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3678), - [sym_call_expression] = STATE(3678), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3678), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3678), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3678), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3678), - [sym_identifier] = ACTIONS(3849), - [anon_sym_LPAREN2] = ACTIONS(3893), - [anon_sym_BANG] = ACTIONS(3853), - [anon_sym_TILDE] = ACTIONS(3853), - [anon_sym_DASH] = ACTIONS(3851), - [anon_sym_PLUS] = ACTIONS(3851), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(3855), - [anon_sym_COLON_COLON] = ACTIONS(3857), + [1541] = { + [sym_expression] = STATE(4563), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3728), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3728), + [sym_call_expression] = STATE(3728), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3728), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3728), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3728), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3728), + [sym_identifier] = ACTIONS(3883), + [anon_sym_LPAREN2] = ACTIONS(3901), + [anon_sym_BANG] = ACTIONS(3887), + [anon_sym_TILDE] = ACTIONS(3887), + [anon_sym_DASH] = ACTIONS(3885), + [anon_sym_PLUS] = ACTIONS(3885), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(3889), + [anon_sym_COLON_COLON] = ACTIONS(3891), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3851), - [anon_sym_compl] = ACTIONS(3851), - [anon_sym_DASH_DASH] = ACTIONS(3897), - [anon_sym_PLUS_PLUS] = ACTIONS(3897), - [anon_sym_sizeof] = ACTIONS(3859), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3885), + [anon_sym_compl] = ACTIONS(3885), + [anon_sym_DASH_DASH] = ACTIONS(3905), + [anon_sym_PLUS_PLUS] = ACTIONS(3905), + [anon_sym_sizeof] = ACTIONS(3893), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -231376,79 +234677,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3861), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3895), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3863), - [anon_sym_new] = ACTIONS(3865), + [anon_sym_co_await] = ACTIONS(3897), + [anon_sym_new] = ACTIONS(3873), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1519] = { - [sym_expression] = STATE(4523), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3678), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3678), - [sym_call_expression] = STATE(3678), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3678), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3678), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3678), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3678), - [sym_identifier] = ACTIONS(3849), - [anon_sym_LPAREN2] = ACTIONS(3893), - [anon_sym_BANG] = ACTIONS(3853), - [anon_sym_TILDE] = ACTIONS(3853), - [anon_sym_DASH] = ACTIONS(3851), - [anon_sym_PLUS] = ACTIONS(3851), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(3855), - [anon_sym_COLON_COLON] = ACTIONS(3857), + [1542] = { + [sym_expression] = STATE(4564), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3728), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3728), + [sym_call_expression] = STATE(3728), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3728), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3728), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3728), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3728), + [sym_identifier] = ACTIONS(3883), + [anon_sym_LPAREN2] = ACTIONS(3901), + [anon_sym_BANG] = ACTIONS(3887), + [anon_sym_TILDE] = ACTIONS(3887), + [anon_sym_DASH] = ACTIONS(3885), + [anon_sym_PLUS] = ACTIONS(3885), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(3889), + [anon_sym_COLON_COLON] = ACTIONS(3891), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3851), - [anon_sym_compl] = ACTIONS(3851), - [anon_sym_DASH_DASH] = ACTIONS(3897), - [anon_sym_PLUS_PLUS] = ACTIONS(3897), - [anon_sym_sizeof] = ACTIONS(3859), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3885), + [anon_sym_compl] = ACTIONS(3885), + [anon_sym_DASH_DASH] = ACTIONS(3905), + [anon_sym_PLUS_PLUS] = ACTIONS(3905), + [anon_sym_sizeof] = ACTIONS(3893), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -231476,79 +234777,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3861), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3895), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3863), - [anon_sym_new] = ACTIONS(3865), + [anon_sym_co_await] = ACTIONS(3897), + [anon_sym_new] = ACTIONS(3873), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1520] = { - [sym_expression] = STATE(4524), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3678), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3678), - [sym_call_expression] = STATE(3678), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3678), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3678), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3678), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3678), - [sym_identifier] = ACTIONS(3849), - [anon_sym_LPAREN2] = ACTIONS(3893), - [anon_sym_BANG] = ACTIONS(3853), - [anon_sym_TILDE] = ACTIONS(3853), - [anon_sym_DASH] = ACTIONS(3851), - [anon_sym_PLUS] = ACTIONS(3851), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(3855), - [anon_sym_COLON_COLON] = ACTIONS(3857), + [1543] = { + [sym_expression] = STATE(4565), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3728), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3728), + [sym_call_expression] = STATE(3728), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3728), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3728), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3728), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3728), + [sym_identifier] = ACTIONS(3883), + [anon_sym_LPAREN2] = ACTIONS(3901), + [anon_sym_BANG] = ACTIONS(3887), + [anon_sym_TILDE] = ACTIONS(3887), + [anon_sym_DASH] = ACTIONS(3885), + [anon_sym_PLUS] = ACTIONS(3885), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(3889), + [anon_sym_COLON_COLON] = ACTIONS(3891), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3851), - [anon_sym_compl] = ACTIONS(3851), - [anon_sym_DASH_DASH] = ACTIONS(3897), - [anon_sym_PLUS_PLUS] = ACTIONS(3897), - [anon_sym_sizeof] = ACTIONS(3859), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3885), + [anon_sym_compl] = ACTIONS(3885), + [anon_sym_DASH_DASH] = ACTIONS(3905), + [anon_sym_PLUS_PLUS] = ACTIONS(3905), + [anon_sym_sizeof] = ACTIONS(3893), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -231576,79 +234877,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3861), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3895), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3863), - [anon_sym_new] = ACTIONS(3865), + [anon_sym_co_await] = ACTIONS(3897), + [anon_sym_new] = ACTIONS(3873), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1521] = { - [sym_expression] = STATE(4525), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3678), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3678), - [sym_call_expression] = STATE(3678), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3678), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3678), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3678), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3678), - [sym_identifier] = ACTIONS(3849), - [anon_sym_LPAREN2] = ACTIONS(3893), - [anon_sym_BANG] = ACTIONS(3853), - [anon_sym_TILDE] = ACTIONS(3853), - [anon_sym_DASH] = ACTIONS(3851), - [anon_sym_PLUS] = ACTIONS(3851), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(3855), - [anon_sym_COLON_COLON] = ACTIONS(3857), + [1544] = { + [sym_expression] = STATE(4566), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3728), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3728), + [sym_call_expression] = STATE(3728), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3728), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3728), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3728), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3728), + [sym_identifier] = ACTIONS(3883), + [anon_sym_LPAREN2] = ACTIONS(3901), + [anon_sym_BANG] = ACTIONS(3887), + [anon_sym_TILDE] = ACTIONS(3887), + [anon_sym_DASH] = ACTIONS(3885), + [anon_sym_PLUS] = ACTIONS(3885), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(3889), + [anon_sym_COLON_COLON] = ACTIONS(3891), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3851), - [anon_sym_compl] = ACTIONS(3851), - [anon_sym_DASH_DASH] = ACTIONS(3897), - [anon_sym_PLUS_PLUS] = ACTIONS(3897), - [anon_sym_sizeof] = ACTIONS(3859), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3885), + [anon_sym_compl] = ACTIONS(3885), + [anon_sym_DASH_DASH] = ACTIONS(3905), + [anon_sym_PLUS_PLUS] = ACTIONS(3905), + [anon_sym_sizeof] = ACTIONS(3893), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -231676,79 +234977,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3861), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3895), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3863), - [anon_sym_new] = ACTIONS(3865), + [anon_sym_co_await] = ACTIONS(3897), + [anon_sym_new] = ACTIONS(3873), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1522] = { - [sym_expression] = STATE(4526), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3678), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3678), - [sym_call_expression] = STATE(3678), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3678), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3678), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3678), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3678), - [sym_identifier] = ACTIONS(3849), - [anon_sym_LPAREN2] = ACTIONS(3893), - [anon_sym_BANG] = ACTIONS(3853), - [anon_sym_TILDE] = ACTIONS(3853), - [anon_sym_DASH] = ACTIONS(3851), - [anon_sym_PLUS] = ACTIONS(3851), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(3855), - [anon_sym_COLON_COLON] = ACTIONS(3857), + [1545] = { + [sym_expression] = STATE(4567), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3728), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3728), + [sym_call_expression] = STATE(3728), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3728), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3728), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3728), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3728), + [sym_identifier] = ACTIONS(3883), + [anon_sym_LPAREN2] = ACTIONS(3901), + [anon_sym_BANG] = ACTIONS(3887), + [anon_sym_TILDE] = ACTIONS(3887), + [anon_sym_DASH] = ACTIONS(3885), + [anon_sym_PLUS] = ACTIONS(3885), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(3889), + [anon_sym_COLON_COLON] = ACTIONS(3891), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3851), - [anon_sym_compl] = ACTIONS(3851), - [anon_sym_DASH_DASH] = ACTIONS(3897), - [anon_sym_PLUS_PLUS] = ACTIONS(3897), - [anon_sym_sizeof] = ACTIONS(3859), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3885), + [anon_sym_compl] = ACTIONS(3885), + [anon_sym_DASH_DASH] = ACTIONS(3905), + [anon_sym_PLUS_PLUS] = ACTIONS(3905), + [anon_sym_sizeof] = ACTIONS(3893), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -231776,79 +235077,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3861), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3895), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3863), - [anon_sym_new] = ACTIONS(3865), + [anon_sym_co_await] = ACTIONS(3897), + [anon_sym_new] = ACTIONS(3873), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1523] = { - [sym_expression] = STATE(4527), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3678), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3678), - [sym_call_expression] = STATE(3678), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3678), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3678), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3678), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3678), - [sym_identifier] = ACTIONS(3849), - [anon_sym_LPAREN2] = ACTIONS(3893), - [anon_sym_BANG] = ACTIONS(3853), - [anon_sym_TILDE] = ACTIONS(3853), - [anon_sym_DASH] = ACTIONS(3851), - [anon_sym_PLUS] = ACTIONS(3851), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(3855), - [anon_sym_COLON_COLON] = ACTIONS(3857), + [1546] = { + [sym_expression] = STATE(4568), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3728), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3728), + [sym_call_expression] = STATE(3728), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3728), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3728), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3728), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3728), + [sym_identifier] = ACTIONS(3883), + [anon_sym_LPAREN2] = ACTIONS(3901), + [anon_sym_BANG] = ACTIONS(3887), + [anon_sym_TILDE] = ACTIONS(3887), + [anon_sym_DASH] = ACTIONS(3885), + [anon_sym_PLUS] = ACTIONS(3885), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(3889), + [anon_sym_COLON_COLON] = ACTIONS(3891), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3851), - [anon_sym_compl] = ACTIONS(3851), - [anon_sym_DASH_DASH] = ACTIONS(3897), - [anon_sym_PLUS_PLUS] = ACTIONS(3897), - [anon_sym_sizeof] = ACTIONS(3859), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3885), + [anon_sym_compl] = ACTIONS(3885), + [anon_sym_DASH_DASH] = ACTIONS(3905), + [anon_sym_PLUS_PLUS] = ACTIONS(3905), + [anon_sym_sizeof] = ACTIONS(3893), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -231876,79 +235177,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3861), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3895), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3863), - [anon_sym_new] = ACTIONS(3865), + [anon_sym_co_await] = ACTIONS(3897), + [anon_sym_new] = ACTIONS(3873), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1524] = { - [sym_expression] = STATE(4528), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3678), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3678), - [sym_call_expression] = STATE(3678), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3678), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3678), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3678), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3678), - [sym_identifier] = ACTIONS(3849), - [anon_sym_LPAREN2] = ACTIONS(3893), - [anon_sym_BANG] = ACTIONS(3853), - [anon_sym_TILDE] = ACTIONS(3853), - [anon_sym_DASH] = ACTIONS(3851), - [anon_sym_PLUS] = ACTIONS(3851), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(3855), - [anon_sym_COLON_COLON] = ACTIONS(3857), + [1547] = { + [sym_expression] = STATE(4569), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3728), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3728), + [sym_call_expression] = STATE(3728), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3728), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3728), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3728), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3728), + [sym_identifier] = ACTIONS(3883), + [anon_sym_LPAREN2] = ACTIONS(3901), + [anon_sym_BANG] = ACTIONS(3887), + [anon_sym_TILDE] = ACTIONS(3887), + [anon_sym_DASH] = ACTIONS(3885), + [anon_sym_PLUS] = ACTIONS(3885), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(3889), + [anon_sym_COLON_COLON] = ACTIONS(3891), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3851), - [anon_sym_compl] = ACTIONS(3851), - [anon_sym_DASH_DASH] = ACTIONS(3897), - [anon_sym_PLUS_PLUS] = ACTIONS(3897), - [anon_sym_sizeof] = ACTIONS(3859), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3885), + [anon_sym_compl] = ACTIONS(3885), + [anon_sym_DASH_DASH] = ACTIONS(3905), + [anon_sym_PLUS_PLUS] = ACTIONS(3905), + [anon_sym_sizeof] = ACTIONS(3893), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -231976,79 +235277,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3861), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3895), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3863), - [anon_sym_new] = ACTIONS(3865), + [anon_sym_co_await] = ACTIONS(3897), + [anon_sym_new] = ACTIONS(3873), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1525] = { - [sym_expression] = STATE(4691), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), - [anon_sym_COLON_COLON] = ACTIONS(47), + [1548] = { + [sym_expression] = STATE(4572), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3728), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3728), + [sym_call_expression] = STATE(3728), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3728), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3728), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3728), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3728), + [sym_identifier] = ACTIONS(3883), + [anon_sym_LPAREN2] = ACTIONS(3901), + [anon_sym_BANG] = ACTIONS(3887), + [anon_sym_TILDE] = ACTIONS(3887), + [anon_sym_DASH] = ACTIONS(3885), + [anon_sym_PLUS] = ACTIONS(3885), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(3889), + [anon_sym_COLON_COLON] = ACTIONS(3891), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3885), + [anon_sym_compl] = ACTIONS(3885), + [anon_sym_DASH_DASH] = ACTIONS(3905), + [anon_sym_PLUS_PLUS] = ACTIONS(3905), + [anon_sym_sizeof] = ACTIONS(3893), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -232076,79 +235377,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(145), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3895), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), + [anon_sym_co_await] = ACTIONS(3897), + [anon_sym_new] = ACTIONS(3873), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1526] = { - [sym_expression] = STATE(4530), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3678), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3678), - [sym_call_expression] = STATE(3678), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3678), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3678), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3678), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3678), - [sym_identifier] = ACTIONS(3849), - [anon_sym_LPAREN2] = ACTIONS(3893), - [anon_sym_BANG] = ACTIONS(3853), - [anon_sym_TILDE] = ACTIONS(3853), - [anon_sym_DASH] = ACTIONS(3851), - [anon_sym_PLUS] = ACTIONS(3851), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(3855), - [anon_sym_COLON_COLON] = ACTIONS(3857), + [1549] = { + [sym_expression] = STATE(4574), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3728), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3728), + [sym_call_expression] = STATE(3728), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3728), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3728), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3728), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3728), + [sym_identifier] = ACTIONS(3883), + [anon_sym_LPAREN2] = ACTIONS(3901), + [anon_sym_BANG] = ACTIONS(3887), + [anon_sym_TILDE] = ACTIONS(3887), + [anon_sym_DASH] = ACTIONS(3885), + [anon_sym_PLUS] = ACTIONS(3885), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(3889), + [anon_sym_COLON_COLON] = ACTIONS(3891), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3851), - [anon_sym_compl] = ACTIONS(3851), - [anon_sym_DASH_DASH] = ACTIONS(3897), - [anon_sym_PLUS_PLUS] = ACTIONS(3897), - [anon_sym_sizeof] = ACTIONS(3859), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3885), + [anon_sym_compl] = ACTIONS(3885), + [anon_sym_DASH_DASH] = ACTIONS(3905), + [anon_sym_PLUS_PLUS] = ACTIONS(3905), + [anon_sym_sizeof] = ACTIONS(3893), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -232176,79 +235477,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3861), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3895), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3863), - [anon_sym_new] = ACTIONS(3865), + [anon_sym_co_await] = ACTIONS(3897), + [anon_sym_new] = ACTIONS(3873), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1527] = { - [sym_expression] = STATE(4532), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3678), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3678), - [sym_call_expression] = STATE(3678), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3678), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3678), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3678), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3678), - [sym_identifier] = ACTIONS(3849), - [anon_sym_LPAREN2] = ACTIONS(3893), - [anon_sym_BANG] = ACTIONS(3853), - [anon_sym_TILDE] = ACTIONS(3853), - [anon_sym_DASH] = ACTIONS(3851), - [anon_sym_PLUS] = ACTIONS(3851), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(3855), - [anon_sym_COLON_COLON] = ACTIONS(3857), + [1550] = { + [sym_expression] = STATE(3745), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3728), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3728), + [sym_call_expression] = STATE(3728), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3728), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3728), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3728), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3728), + [sym_identifier] = ACTIONS(3883), + [anon_sym_LPAREN2] = ACTIONS(3901), + [anon_sym_BANG] = ACTIONS(3887), + [anon_sym_TILDE] = ACTIONS(3887), + [anon_sym_DASH] = ACTIONS(3885), + [anon_sym_PLUS] = ACTIONS(3885), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(3889), + [anon_sym_COLON_COLON] = ACTIONS(3891), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3851), - [anon_sym_compl] = ACTIONS(3851), - [anon_sym_DASH_DASH] = ACTIONS(3897), - [anon_sym_PLUS_PLUS] = ACTIONS(3897), - [anon_sym_sizeof] = ACTIONS(3859), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3885), + [anon_sym_compl] = ACTIONS(3885), + [anon_sym_DASH_DASH] = ACTIONS(3905), + [anon_sym_PLUS_PLUS] = ACTIONS(3905), + [anon_sym_sizeof] = ACTIONS(3893), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -232276,79 +235577,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3861), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3895), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3863), - [anon_sym_new] = ACTIONS(3865), + [anon_sym_co_await] = ACTIONS(3897), + [anon_sym_new] = ACTIONS(3873), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1528] = { - [sym_expression] = STATE(3782), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3678), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3678), - [sym_call_expression] = STATE(3678), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3678), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3678), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3678), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3678), - [sym_identifier] = ACTIONS(3849), - [anon_sym_LPAREN2] = ACTIONS(3893), - [anon_sym_BANG] = ACTIONS(3853), - [anon_sym_TILDE] = ACTIONS(3853), - [anon_sym_DASH] = ACTIONS(3851), - [anon_sym_PLUS] = ACTIONS(3851), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(3855), - [anon_sym_COLON_COLON] = ACTIONS(3857), + [1551] = { + [sym_expression] = STATE(3832), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3728), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3728), + [sym_call_expression] = STATE(3728), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3728), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3728), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3728), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3728), + [sym_identifier] = ACTIONS(3883), + [anon_sym_LPAREN2] = ACTIONS(3901), + [anon_sym_BANG] = ACTIONS(3887), + [anon_sym_TILDE] = ACTIONS(3887), + [anon_sym_DASH] = ACTIONS(3885), + [anon_sym_PLUS] = ACTIONS(3885), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(3889), + [anon_sym_COLON_COLON] = ACTIONS(3891), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3851), - [anon_sym_compl] = ACTIONS(3851), - [anon_sym_DASH_DASH] = ACTIONS(3897), - [anon_sym_PLUS_PLUS] = ACTIONS(3897), - [anon_sym_sizeof] = ACTIONS(3859), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3885), + [anon_sym_compl] = ACTIONS(3885), + [anon_sym_DASH_DASH] = ACTIONS(3905), + [anon_sym_PLUS_PLUS] = ACTIONS(3905), + [anon_sym_sizeof] = ACTIONS(3893), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -232376,79 +235677,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3861), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3895), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3863), - [anon_sym_new] = ACTIONS(3865), + [anon_sym_co_await] = ACTIONS(3897), + [anon_sym_new] = ACTIONS(3873), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1529] = { - [sym_expression] = STATE(3750), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3678), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3678), - [sym_call_expression] = STATE(3678), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3678), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3678), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3678), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3678), - [sym_identifier] = ACTIONS(3849), - [anon_sym_LPAREN2] = ACTIONS(3893), - [anon_sym_BANG] = ACTIONS(3853), - [anon_sym_TILDE] = ACTIONS(3853), - [anon_sym_DASH] = ACTIONS(3851), - [anon_sym_PLUS] = ACTIONS(3851), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(3855), - [anon_sym_COLON_COLON] = ACTIONS(3857), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3851), - [anon_sym_compl] = ACTIONS(3851), - [anon_sym_DASH_DASH] = ACTIONS(3897), - [anon_sym_PLUS_PLUS] = ACTIONS(3897), - [anon_sym_sizeof] = ACTIONS(3859), + [1552] = { + [sym_expression] = STATE(4577), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3728), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3728), + [sym_call_expression] = STATE(3728), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3728), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3728), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3728), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3728), + [sym_identifier] = ACTIONS(3883), + [anon_sym_LPAREN2] = ACTIONS(3901), + [anon_sym_BANG] = ACTIONS(3887), + [anon_sym_TILDE] = ACTIONS(3887), + [anon_sym_DASH] = ACTIONS(3885), + [anon_sym_PLUS] = ACTIONS(3885), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(3889), + [anon_sym_COLON_COLON] = ACTIONS(3891), + [anon_sym_LBRACK] = ACTIONS(4974), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3885), + [anon_sym_compl] = ACTIONS(3885), + [anon_sym_DASH_DASH] = ACTIONS(3905), + [anon_sym_PLUS_PLUS] = ACTIONS(3905), + [anon_sym_sizeof] = ACTIONS(3893), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -232476,79 +235777,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3861), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3895), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3863), - [anon_sym_new] = ACTIONS(3865), + [anon_sym_co_await] = ACTIONS(3897), + [anon_sym_new] = ACTIONS(3873), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1530] = { - [sym_expression] = STATE(4535), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3678), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3678), - [sym_call_expression] = STATE(3678), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3678), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3678), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3678), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3678), - [sym_identifier] = ACTIONS(3849), - [anon_sym_LPAREN2] = ACTIONS(3893), - [anon_sym_BANG] = ACTIONS(3853), - [anon_sym_TILDE] = ACTIONS(3853), - [anon_sym_DASH] = ACTIONS(3851), - [anon_sym_PLUS] = ACTIONS(3851), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(3855), - [anon_sym_COLON_COLON] = ACTIONS(3857), - [anon_sym_LBRACK] = ACTIONS(4949), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3851), - [anon_sym_compl] = ACTIONS(3851), - [anon_sym_DASH_DASH] = ACTIONS(3897), - [anon_sym_PLUS_PLUS] = ACTIONS(3897), - [anon_sym_sizeof] = ACTIONS(3859), + [1553] = { + [sym_expression] = STATE(3747), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3728), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3728), + [sym_call_expression] = STATE(3728), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3728), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3728), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3728), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3728), + [sym_identifier] = ACTIONS(3883), + [anon_sym_LPAREN2] = ACTIONS(3901), + [anon_sym_BANG] = ACTIONS(3887), + [anon_sym_TILDE] = ACTIONS(3887), + [anon_sym_DASH] = ACTIONS(3885), + [anon_sym_PLUS] = ACTIONS(3885), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(3889), + [anon_sym_COLON_COLON] = ACTIONS(3891), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3885), + [anon_sym_compl] = ACTIONS(3885), + [anon_sym_DASH_DASH] = ACTIONS(3905), + [anon_sym_PLUS_PLUS] = ACTIONS(3905), + [anon_sym_sizeof] = ACTIONS(3893), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -232576,79 +235877,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3861), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3895), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3863), - [anon_sym_new] = ACTIONS(3865), + [anon_sym_co_await] = ACTIONS(3897), + [anon_sym_new] = ACTIONS(3873), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1531] = { - [sym_expression] = STATE(3766), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3678), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3678), - [sym_call_expression] = STATE(3678), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3678), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3678), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3678), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3678), - [sym_identifier] = ACTIONS(3849), - [anon_sym_LPAREN2] = ACTIONS(3893), - [anon_sym_BANG] = ACTIONS(3853), - [anon_sym_TILDE] = ACTIONS(3853), - [anon_sym_DASH] = ACTIONS(3851), - [anon_sym_PLUS] = ACTIONS(3851), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(3855), - [anon_sym_COLON_COLON] = ACTIONS(3857), + [1554] = { + [sym_expression] = STATE(4835), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), + [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), - [anon_sym_not] = ACTIONS(3851), - [anon_sym_compl] = ACTIONS(3851), - [anon_sym_DASH_DASH] = ACTIONS(3897), - [anon_sym_PLUS_PLUS] = ACTIONS(3897), - [anon_sym_sizeof] = ACTIONS(3859), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -232676,174 +235977,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3861), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), [anon_sym_UR_DQUOTE] = ACTIONS(159), [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3863), - [anon_sym_new] = ACTIONS(3865), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1532] = { - [sym_expression] = STATE(4473), - [sym__string] = STATE(4738), - [sym_conditional_expression] = STATE(4829), - [sym_assignment_expression] = STATE(4829), - [sym_pointer_expression] = STATE(3602), - [sym_unary_expression] = STATE(4829), - [sym_binary_expression] = STATE(4829), - [sym_update_expression] = STATE(4829), - [sym_cast_expression] = STATE(4829), - [sym_sizeof_expression] = STATE(4829), - [sym_alignof_expression] = STATE(4829), - [sym_offsetof_expression] = STATE(4829), - [sym_generic_expression] = STATE(4829), - [sym_subscript_expression] = STATE(3602), - [sym_call_expression] = STATE(3602), - [sym_gnu_asm_expression] = STATE(4829), - [sym_extension_expression] = STATE(4829), - [sym_field_expression] = STATE(3602), - [sym_compound_literal_expression] = STATE(4829), - [sym_parenthesized_expression] = STATE(3602), - [sym_char_literal] = STATE(4738), - [sym_concatenated_string] = STATE(4738), - [sym_string_literal] = STATE(3759), - [sym_null] = STATE(4829), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7804), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(4829), - [sym_raw_string_literal] = STATE(3759), - [sym_co_await_expression] = STATE(4829), - [sym_new_expression] = STATE(4829), - [sym_delete_expression] = STATE(4829), - [sym_requires_clause] = STATE(4829), - [sym_requires_expression] = STATE(4829), - [sym_lambda_expression] = STATE(4829), - [sym_lambda_capture_specifier] = STATE(5401), - [sym_fold_expression] = STATE(4829), - [sym_parameter_pack_expansion] = STATE(4829), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5773), - [sym_qualified_identifier] = STATE(3602), - [sym_qualified_type_identifier] = STATE(7804), - [sym_user_defined_literal] = STATE(3602), - [sym_identifier] = ACTIONS(3883), - [anon_sym_LPAREN2] = ACTIONS(3118), - [anon_sym_BANG] = ACTIONS(3120), - [anon_sym_TILDE] = ACTIONS(3120), - [anon_sym_DASH] = ACTIONS(3122), - [anon_sym_PLUS] = ACTIONS(3122), - [anon_sym_STAR] = ACTIONS(3124), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym___extension__] = ACTIONS(3885), - [anon_sym_COLON_COLON] = ACTIONS(3128), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(3889), - [anon_sym_not] = ACTIONS(3122), - [anon_sym_compl] = ACTIONS(3122), - [anon_sym_DASH_DASH] = ACTIONS(3142), - [anon_sym_PLUS_PLUS] = ACTIONS(3142), - [anon_sym_sizeof] = ACTIONS(3144), - [anon_sym___alignof__] = ACTIONS(3146), - [anon_sym___alignof] = ACTIONS(3146), - [anon_sym__alignof] = ACTIONS(3146), - [anon_sym_alignof] = ACTIONS(3146), - [anon_sym__Alignof] = ACTIONS(3146), - [anon_sym_offsetof] = ACTIONS(3148), - [anon_sym__Generic] = ACTIONS(3150), - [anon_sym_asm] = ACTIONS(3152), - [anon_sym___asm__] = ACTIONS(3152), - [anon_sym___asm] = ACTIONS(3152), - [sym_number_literal] = ACTIONS(3154), - [anon_sym_L_SQUOTE] = ACTIONS(3156), - [anon_sym_u_SQUOTE] = ACTIONS(3156), - [anon_sym_U_SQUOTE] = ACTIONS(3156), - [anon_sym_u8_SQUOTE] = ACTIONS(3156), - [anon_sym_SQUOTE] = ACTIONS(3156), - [anon_sym_L_DQUOTE] = ACTIONS(3158), - [anon_sym_u_DQUOTE] = ACTIONS(3158), - [anon_sym_U_DQUOTE] = ACTIONS(3158), - [anon_sym_u8_DQUOTE] = ACTIONS(3158), - [anon_sym_DQUOTE] = ACTIONS(3158), - [sym_true] = ACTIONS(3160), - [sym_false] = ACTIONS(3160), - [anon_sym_NULL] = ACTIONS(3162), - [anon_sym_nullptr] = ACTIONS(3162), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(3172), - [anon_sym_R_DQUOTE] = ACTIONS(3174), - [anon_sym_LR_DQUOTE] = ACTIONS(3174), - [anon_sym_uR_DQUOTE] = ACTIONS(3174), - [anon_sym_UR_DQUOTE] = ACTIONS(3174), - [anon_sym_u8R_DQUOTE] = ACTIONS(3174), - [anon_sym_co_await] = ACTIONS(3176), - [anon_sym_new] = ACTIONS(3178), - [anon_sym_requires] = ACTIONS(3180), - [sym_this] = ACTIONS(3160), - }, - [1533] = { - [sym_expression] = STATE(4770), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1555] = { + [sym_expression] = STATE(4836), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -232876,7 +236077,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -232888,62 +236089,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1534] = { - [sym_expression] = STATE(4771), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1556] = { + [sym_expression] = STATE(4837), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -232976,7 +236177,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -232988,62 +236189,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1535] = { - [sym_expression] = STATE(4772), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1557] = { + [sym_expression] = STATE(4838), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -233076,7 +236277,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -233088,62 +236289,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1536] = { - [sym_expression] = STATE(4773), - [sym__string] = STATE(4250), - [sym_conditional_expression] = STATE(3889), - [sym_assignment_expression] = STATE(3889), - [sym_pointer_expression] = STATE(3242), - [sym_unary_expression] = STATE(3889), - [sym_binary_expression] = STATE(3889), - [sym_update_expression] = STATE(3889), - [sym_cast_expression] = STATE(3889), - [sym_sizeof_expression] = STATE(3889), - [sym_alignof_expression] = STATE(3889), - [sym_offsetof_expression] = STATE(3889), - [sym_generic_expression] = STATE(3889), - [sym_subscript_expression] = STATE(3242), - [sym_call_expression] = STATE(3242), - [sym_gnu_asm_expression] = STATE(3889), - [sym_extension_expression] = STATE(3889), - [sym_field_expression] = STATE(3242), - [sym_compound_literal_expression] = STATE(3889), - [sym_parenthesized_expression] = STATE(3242), - [sym_char_literal] = STATE(4250), - [sym_concatenated_string] = STATE(4250), - [sym_string_literal] = STATE(3187), - [sym_null] = STATE(3889), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7608), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(3889), - [sym_raw_string_literal] = STATE(3187), - [sym_co_await_expression] = STATE(3889), - [sym_new_expression] = STATE(3889), - [sym_delete_expression] = STATE(3889), - [sym_requires_clause] = STATE(3889), - [sym_requires_expression] = STATE(3889), - [sym_lambda_expression] = STATE(3889), - [sym_lambda_capture_specifier] = STATE(5399), - [sym_fold_expression] = STATE(3889), - [sym_parameter_pack_expansion] = STATE(3889), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(3242), - [sym_qualified_type_identifier] = STATE(7608), - [sym_user_defined_literal] = STATE(3242), - [sym_identifier] = ACTIONS(3847), - [anon_sym_LPAREN2] = ACTIONS(1436), + [1558] = { + [sym_expression] = STATE(4316), + [sym__string] = STATE(4294), + [sym_conditional_expression] = STATE(3898), + [sym_assignment_expression] = STATE(3898), + [sym_pointer_expression] = STATE(3323), + [sym_unary_expression] = STATE(3898), + [sym_binary_expression] = STATE(3898), + [sym_update_expression] = STATE(3898), + [sym_cast_expression] = STATE(3898), + [sym_sizeof_expression] = STATE(3898), + [sym_alignof_expression] = STATE(3898), + [sym_offsetof_expression] = STATE(3898), + [sym_generic_expression] = STATE(3898), + [sym_subscript_expression] = STATE(3323), + [sym_call_expression] = STATE(3323), + [sym_gnu_asm_expression] = STATE(3898), + [sym_extension_expression] = STATE(3898), + [sym_field_expression] = STATE(3323), + [sym_compound_literal_expression] = STATE(3898), + [sym_parenthesized_expression] = STATE(3323), + [sym_char_literal] = STATE(4294), + [sym_concatenated_string] = STATE(4294), + [sym_string_literal] = STATE(3154), + [sym_null] = STATE(3898), + [sym_decltype] = STATE(8569), + [sym__class_name] = STATE(7707), + [sym_template_type] = STATE(1922), + [sym_template_function] = STATE(3898), + [sym_raw_string_literal] = STATE(3154), + [sym_co_await_expression] = STATE(3898), + [sym_new_expression] = STATE(3898), + [sym_delete_expression] = STATE(3898), + [sym_requires_clause] = STATE(3898), + [sym_requires_expression] = STATE(3898), + [sym_lambda_expression] = STATE(3898), + [sym_lambda_capture_specifier] = STATE(5479), + [sym_fold_expression] = STATE(3898), + [sym_parameter_pack_expansion] = STATE(3898), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5816), + [sym_qualified_identifier] = STATE(3323), + [sym_qualified_type_identifier] = STATE(7707), + [sym_user_defined_literal] = STATE(3323), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -233176,7 +236377,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(123), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -233188,503 +236389,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [1537] = { - [sym_expression] = STATE(2798), - [sym__string] = STATE(2870), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2480), - [sym_unary_expression] = STATE(2461), - [sym_binary_expression] = STATE(2461), - [sym_update_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_alignof_expression] = STATE(2461), - [sym_offsetof_expression] = STATE(2461), - [sym_generic_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2480), - [sym_call_expression] = STATE(2480), - [sym_gnu_asm_expression] = STATE(2461), - [sym_extension_expression] = STATE(2461), - [sym_field_expression] = STATE(2480), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2480), - [sym_char_literal] = STATE(2870), - [sym_concatenated_string] = STATE(2870), - [sym_string_literal] = STATE(1942), - [sym_null] = STATE(2461), - [sym_decltype] = STATE(8601), - [sym__class_name] = STATE(7743), - [sym_template_type] = STATE(1893), - [sym_template_function] = STATE(2461), - [sym_raw_string_literal] = STATE(1942), - [sym_co_await_expression] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_requires_clause] = STATE(2461), - [sym_requires_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(5402), - [sym_fold_expression] = STATE(2461), - [sym_parameter_pack_expansion] = STATE(2461), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5772), - [sym_qualified_identifier] = STATE(2480), - [sym_qualified_type_identifier] = STATE(7743), - [sym_user_defined_literal] = STATE(2480), - [sym_identifier] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(4668), - [anon_sym_BANG] = ACTIONS(1948), - [anon_sym_TILDE] = ACTIONS(1948), - [anon_sym_DASH] = ACTIONS(1946), - [anon_sym_PLUS] = ACTIONS(1946), - [anon_sym_STAR] = ACTIONS(4336), - [anon_sym_AMP] = ACTIONS(4336), - [anon_sym___extension__] = ACTIONS(1950), - [anon_sym_COLON_COLON] = ACTIONS(1952), - [anon_sym_LBRACK] = ACTIONS(2020), - [sym_primitive_type] = ACTIONS(1956), - [anon_sym_not] = ACTIONS(1946), - [anon_sym_compl] = ACTIONS(1946), - [anon_sym_DASH_DASH] = ACTIONS(4417), - [anon_sym_PLUS_PLUS] = ACTIONS(4417), - [anon_sym_sizeof] = ACTIONS(1958), - [anon_sym___alignof__] = ACTIONS(1960), - [anon_sym___alignof] = ACTIONS(1960), - [anon_sym__alignof] = ACTIONS(1960), - [anon_sym_alignof] = ACTIONS(1960), - [anon_sym__Alignof] = ACTIONS(1960), - [anon_sym_offsetof] = ACTIONS(1962), - [anon_sym__Generic] = ACTIONS(1964), - [anon_sym_asm] = ACTIONS(1966), - [anon_sym___asm__] = ACTIONS(1966), - [anon_sym___asm] = ACTIONS(1966), - [sym_number_literal] = ACTIONS(1968), - [anon_sym_L_SQUOTE] = ACTIONS(1970), - [anon_sym_u_SQUOTE] = ACTIONS(1970), - [anon_sym_U_SQUOTE] = ACTIONS(1970), - [anon_sym_u8_SQUOTE] = ACTIONS(1970), - [anon_sym_SQUOTE] = ACTIONS(1970), - [anon_sym_L_DQUOTE] = ACTIONS(1972), - [anon_sym_u_DQUOTE] = ACTIONS(1972), - [anon_sym_U_DQUOTE] = ACTIONS(1972), - [anon_sym_u8_DQUOTE] = ACTIONS(1972), - [anon_sym_DQUOTE] = ACTIONS(1972), - [sym_true] = ACTIONS(1974), - [sym_false] = ACTIONS(1974), - [anon_sym_NULL] = ACTIONS(1976), - [anon_sym_nullptr] = ACTIONS(1976), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_delete] = ACTIONS(1980), - [anon_sym_R_DQUOTE] = ACTIONS(1982), - [anon_sym_LR_DQUOTE] = ACTIONS(1982), - [anon_sym_uR_DQUOTE] = ACTIONS(1982), - [anon_sym_UR_DQUOTE] = ACTIONS(1982), - [anon_sym_u8R_DQUOTE] = ACTIONS(1982), - [anon_sym_co_await] = ACTIONS(1984), - [anon_sym_new] = ACTIONS(1986), - [anon_sym_requires] = ACTIONS(1988), - [sym_this] = ACTIONS(1974), - }, - [1538] = { - [sym_identifier] = ACTIONS(4951), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4953), - [anon_sym_COMMA] = ACTIONS(4953), - [anon_sym_RPAREN] = ACTIONS(4953), - [anon_sym_LPAREN2] = ACTIONS(4953), - [anon_sym_TILDE] = ACTIONS(4953), - [anon_sym_DASH] = ACTIONS(4951), - [anon_sym_PLUS] = ACTIONS(4951), - [anon_sym_STAR] = ACTIONS(4951), - [anon_sym_SLASH] = ACTIONS(4951), - [anon_sym_PERCENT] = ACTIONS(4951), - [anon_sym_PIPE_PIPE] = ACTIONS(4953), - [anon_sym_AMP_AMP] = ACTIONS(4953), - [anon_sym_PIPE] = ACTIONS(4951), - [anon_sym_CARET] = ACTIONS(4951), - [anon_sym_AMP] = ACTIONS(4951), - [anon_sym_EQ_EQ] = ACTIONS(4953), - [anon_sym_BANG_EQ] = ACTIONS(4953), - [anon_sym_GT] = ACTIONS(4951), - [anon_sym_GT_EQ] = ACTIONS(4953), - [anon_sym_LT_EQ] = ACTIONS(4951), - [anon_sym_LT] = ACTIONS(4951), - [anon_sym_LT_LT] = ACTIONS(4951), - [anon_sym_GT_GT] = ACTIONS(4951), - [anon_sym_SEMI] = ACTIONS(4953), - [anon_sym___extension__] = ACTIONS(4951), - [anon_sym_virtual] = ACTIONS(4951), - [anon_sym_extern] = ACTIONS(4951), - [anon_sym___attribute__] = ACTIONS(4951), - [anon_sym___attribute] = ACTIONS(4951), - [anon_sym_COLON_COLON] = ACTIONS(4953), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4953), - [anon_sym___declspec] = ACTIONS(4951), - [anon_sym___based] = ACTIONS(4951), - [anon_sym___cdecl] = ACTIONS(4951), - [anon_sym___clrcall] = ACTIONS(4951), - [anon_sym___stdcall] = ACTIONS(4951), - [anon_sym___fastcall] = ACTIONS(4951), - [anon_sym___thiscall] = ACTIONS(4951), - [anon_sym___vectorcall] = ACTIONS(4951), - [anon_sym_LBRACE] = ACTIONS(4953), - [anon_sym_RBRACE] = ACTIONS(4953), - [anon_sym_LBRACK] = ACTIONS(4951), - [anon_sym_static] = ACTIONS(4951), - [anon_sym_EQ] = ACTIONS(4951), - [anon_sym_register] = ACTIONS(4951), - [anon_sym_inline] = ACTIONS(4951), - [anon_sym___inline] = ACTIONS(4951), - [anon_sym___inline__] = ACTIONS(4951), - [anon_sym___forceinline] = ACTIONS(4951), - [anon_sym_thread_local] = ACTIONS(4951), - [anon_sym___thread] = ACTIONS(4951), - [anon_sym_const] = ACTIONS(4951), - [anon_sym_constexpr] = ACTIONS(4951), - [anon_sym_volatile] = ACTIONS(4951), - [anon_sym_restrict] = ACTIONS(4951), - [anon_sym___restrict__] = ACTIONS(4951), - [anon_sym__Atomic] = ACTIONS(4951), - [anon_sym__Noreturn] = ACTIONS(4951), - [anon_sym_noreturn] = ACTIONS(4951), - [anon_sym__Nonnull] = ACTIONS(4951), - [anon_sym_mutable] = ACTIONS(4951), - [anon_sym_constinit] = ACTIONS(4951), - [anon_sym_consteval] = ACTIONS(4951), - [anon_sym_alignas] = ACTIONS(4951), - [anon_sym__Alignas] = ACTIONS(4951), - [anon_sym_QMARK] = ACTIONS(4953), - [anon_sym_STAR_EQ] = ACTIONS(4953), - [anon_sym_SLASH_EQ] = ACTIONS(4953), - [anon_sym_PERCENT_EQ] = ACTIONS(4953), - [anon_sym_PLUS_EQ] = ACTIONS(4953), - [anon_sym_DASH_EQ] = ACTIONS(4953), - [anon_sym_LT_LT_EQ] = ACTIONS(4953), - [anon_sym_GT_GT_EQ] = ACTIONS(4953), - [anon_sym_AMP_EQ] = ACTIONS(4953), - [anon_sym_CARET_EQ] = ACTIONS(4953), - [anon_sym_PIPE_EQ] = ACTIONS(4953), - [anon_sym_and_eq] = ACTIONS(4951), - [anon_sym_or_eq] = ACTIONS(4951), - [anon_sym_xor_eq] = ACTIONS(4951), - [anon_sym_LT_EQ_GT] = ACTIONS(4953), - [anon_sym_or] = ACTIONS(4951), - [anon_sym_and] = ACTIONS(4951), - [anon_sym_bitor] = ACTIONS(4951), - [anon_sym_xor] = ACTIONS(4951), - [anon_sym_bitand] = ACTIONS(4951), - [anon_sym_not_eq] = ACTIONS(4951), - [anon_sym_DASH_DASH] = ACTIONS(4953), - [anon_sym_PLUS_PLUS] = ACTIONS(4953), - [anon_sym_DOT] = ACTIONS(4951), - [anon_sym_DOT_STAR] = ACTIONS(4953), - [anon_sym_DASH_GT] = ACTIONS(4953), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4951), - [anon_sym_decltype] = ACTIONS(4951), - [anon_sym_template] = ACTIONS(4951), - [anon_sym_operator] = ACTIONS(4951), - }, - [1539] = { - [sym_identifier] = ACTIONS(4955), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4957), - [anon_sym_COMMA] = ACTIONS(4957), - [anon_sym_RPAREN] = ACTIONS(4957), - [anon_sym_LPAREN2] = ACTIONS(4957), - [anon_sym_TILDE] = ACTIONS(4957), - [anon_sym_DASH] = ACTIONS(4955), - [anon_sym_PLUS] = ACTIONS(4955), - [anon_sym_STAR] = ACTIONS(4955), - [anon_sym_SLASH] = ACTIONS(4955), - [anon_sym_PERCENT] = ACTIONS(4955), - [anon_sym_PIPE_PIPE] = ACTIONS(4957), - [anon_sym_AMP_AMP] = ACTIONS(4957), - [anon_sym_PIPE] = ACTIONS(4955), - [anon_sym_CARET] = ACTIONS(4955), - [anon_sym_AMP] = ACTIONS(4955), - [anon_sym_EQ_EQ] = ACTIONS(4957), - [anon_sym_BANG_EQ] = ACTIONS(4957), - [anon_sym_GT] = ACTIONS(4955), - [anon_sym_GT_EQ] = ACTIONS(4957), - [anon_sym_LT_EQ] = ACTIONS(4955), - [anon_sym_LT] = ACTIONS(4955), - [anon_sym_LT_LT] = ACTIONS(4955), - [anon_sym_GT_GT] = ACTIONS(4955), - [anon_sym_SEMI] = ACTIONS(4957), - [anon_sym___extension__] = ACTIONS(4955), - [anon_sym_virtual] = ACTIONS(4955), - [anon_sym_extern] = ACTIONS(4955), - [anon_sym___attribute__] = ACTIONS(4955), - [anon_sym___attribute] = ACTIONS(4955), - [anon_sym_COLON_COLON] = ACTIONS(4957), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4957), - [anon_sym___declspec] = ACTIONS(4955), - [anon_sym___based] = ACTIONS(4955), - [anon_sym___cdecl] = ACTIONS(4955), - [anon_sym___clrcall] = ACTIONS(4955), - [anon_sym___stdcall] = ACTIONS(4955), - [anon_sym___fastcall] = ACTIONS(4955), - [anon_sym___thiscall] = ACTIONS(4955), - [anon_sym___vectorcall] = ACTIONS(4955), - [anon_sym_LBRACE] = ACTIONS(4957), - [anon_sym_RBRACE] = ACTIONS(4957), - [anon_sym_LBRACK] = ACTIONS(4955), - [anon_sym_static] = ACTIONS(4955), - [anon_sym_EQ] = ACTIONS(4955), - [anon_sym_register] = ACTIONS(4955), - [anon_sym_inline] = ACTIONS(4955), - [anon_sym___inline] = ACTIONS(4955), - [anon_sym___inline__] = ACTIONS(4955), - [anon_sym___forceinline] = ACTIONS(4955), - [anon_sym_thread_local] = ACTIONS(4955), - [anon_sym___thread] = ACTIONS(4955), - [anon_sym_const] = ACTIONS(4955), - [anon_sym_constexpr] = ACTIONS(4955), - [anon_sym_volatile] = ACTIONS(4955), - [anon_sym_restrict] = ACTIONS(4955), - [anon_sym___restrict__] = ACTIONS(4955), - [anon_sym__Atomic] = ACTIONS(4955), - [anon_sym__Noreturn] = ACTIONS(4955), - [anon_sym_noreturn] = ACTIONS(4955), - [anon_sym__Nonnull] = ACTIONS(4955), - [anon_sym_mutable] = ACTIONS(4955), - [anon_sym_constinit] = ACTIONS(4955), - [anon_sym_consteval] = ACTIONS(4955), - [anon_sym_alignas] = ACTIONS(4955), - [anon_sym__Alignas] = ACTIONS(4955), - [anon_sym_QMARK] = ACTIONS(4957), - [anon_sym_STAR_EQ] = ACTIONS(4957), - [anon_sym_SLASH_EQ] = ACTIONS(4957), - [anon_sym_PERCENT_EQ] = ACTIONS(4957), - [anon_sym_PLUS_EQ] = ACTIONS(4957), - [anon_sym_DASH_EQ] = ACTIONS(4957), - [anon_sym_LT_LT_EQ] = ACTIONS(4957), - [anon_sym_GT_GT_EQ] = ACTIONS(4957), - [anon_sym_AMP_EQ] = ACTIONS(4957), - [anon_sym_CARET_EQ] = ACTIONS(4957), - [anon_sym_PIPE_EQ] = ACTIONS(4957), - [anon_sym_and_eq] = ACTIONS(4955), - [anon_sym_or_eq] = ACTIONS(4955), - [anon_sym_xor_eq] = ACTIONS(4955), - [anon_sym_LT_EQ_GT] = ACTIONS(4957), - [anon_sym_or] = ACTIONS(4955), - [anon_sym_and] = ACTIONS(4955), - [anon_sym_bitor] = ACTIONS(4955), - [anon_sym_xor] = ACTIONS(4955), - [anon_sym_bitand] = ACTIONS(4955), - [anon_sym_not_eq] = ACTIONS(4955), - [anon_sym_DASH_DASH] = ACTIONS(4957), - [anon_sym_PLUS_PLUS] = ACTIONS(4957), - [anon_sym_DOT] = ACTIONS(4955), - [anon_sym_DOT_STAR] = ACTIONS(4957), - [anon_sym_DASH_GT] = ACTIONS(4957), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4955), - [anon_sym_decltype] = ACTIONS(4955), - [anon_sym_template] = ACTIONS(4955), - [anon_sym_operator] = ACTIONS(4955), - }, - [1540] = { - [sym_identifier] = ACTIONS(4959), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4961), - [anon_sym_COMMA] = ACTIONS(4961), - [anon_sym_RPAREN] = ACTIONS(4961), - [anon_sym_LPAREN2] = ACTIONS(4961), - [anon_sym_TILDE] = ACTIONS(4961), - [anon_sym_DASH] = ACTIONS(4959), - [anon_sym_PLUS] = ACTIONS(4959), - [anon_sym_STAR] = ACTIONS(4959), - [anon_sym_SLASH] = ACTIONS(4959), - [anon_sym_PERCENT] = ACTIONS(4959), - [anon_sym_PIPE_PIPE] = ACTIONS(4961), - [anon_sym_AMP_AMP] = ACTIONS(4961), - [anon_sym_PIPE] = ACTIONS(4959), - [anon_sym_CARET] = ACTIONS(4959), - [anon_sym_AMP] = ACTIONS(4959), - [anon_sym_EQ_EQ] = ACTIONS(4961), - [anon_sym_BANG_EQ] = ACTIONS(4961), - [anon_sym_GT] = ACTIONS(4959), - [anon_sym_GT_EQ] = ACTIONS(4961), - [anon_sym_LT_EQ] = ACTIONS(4959), - [anon_sym_LT] = ACTIONS(4959), - [anon_sym_LT_LT] = ACTIONS(4959), - [anon_sym_GT_GT] = ACTIONS(4959), - [anon_sym_SEMI] = ACTIONS(4961), - [anon_sym___extension__] = ACTIONS(4959), - [anon_sym_virtual] = ACTIONS(4959), - [anon_sym_extern] = ACTIONS(4959), - [anon_sym___attribute__] = ACTIONS(4959), - [anon_sym___attribute] = ACTIONS(4959), - [anon_sym_COLON_COLON] = ACTIONS(4961), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4961), - [anon_sym___declspec] = ACTIONS(4959), - [anon_sym___based] = ACTIONS(4959), - [anon_sym___cdecl] = ACTIONS(4959), - [anon_sym___clrcall] = ACTIONS(4959), - [anon_sym___stdcall] = ACTIONS(4959), - [anon_sym___fastcall] = ACTIONS(4959), - [anon_sym___thiscall] = ACTIONS(4959), - [anon_sym___vectorcall] = ACTIONS(4959), - [anon_sym_LBRACE] = ACTIONS(4961), - [anon_sym_RBRACE] = ACTIONS(4961), - [anon_sym_LBRACK] = ACTIONS(4959), - [anon_sym_static] = ACTIONS(4959), - [anon_sym_EQ] = ACTIONS(4959), - [anon_sym_register] = ACTIONS(4959), - [anon_sym_inline] = ACTIONS(4959), - [anon_sym___inline] = ACTIONS(4959), - [anon_sym___inline__] = ACTIONS(4959), - [anon_sym___forceinline] = ACTIONS(4959), - [anon_sym_thread_local] = ACTIONS(4959), - [anon_sym___thread] = ACTIONS(4959), - [anon_sym_const] = ACTIONS(4959), - [anon_sym_constexpr] = ACTIONS(4959), - [anon_sym_volatile] = ACTIONS(4959), - [anon_sym_restrict] = ACTIONS(4959), - [anon_sym___restrict__] = ACTIONS(4959), - [anon_sym__Atomic] = ACTIONS(4959), - [anon_sym__Noreturn] = ACTIONS(4959), - [anon_sym_noreturn] = ACTIONS(4959), - [anon_sym__Nonnull] = ACTIONS(4959), - [anon_sym_mutable] = ACTIONS(4959), - [anon_sym_constinit] = ACTIONS(4959), - [anon_sym_consteval] = ACTIONS(4959), - [anon_sym_alignas] = ACTIONS(4959), - [anon_sym__Alignas] = ACTIONS(4959), - [anon_sym_QMARK] = ACTIONS(4961), - [anon_sym_STAR_EQ] = ACTIONS(4961), - [anon_sym_SLASH_EQ] = ACTIONS(4961), - [anon_sym_PERCENT_EQ] = ACTIONS(4961), - [anon_sym_PLUS_EQ] = ACTIONS(4961), - [anon_sym_DASH_EQ] = ACTIONS(4961), - [anon_sym_LT_LT_EQ] = ACTIONS(4961), - [anon_sym_GT_GT_EQ] = ACTIONS(4961), - [anon_sym_AMP_EQ] = ACTIONS(4961), - [anon_sym_CARET_EQ] = ACTIONS(4961), - [anon_sym_PIPE_EQ] = ACTIONS(4961), - [anon_sym_and_eq] = ACTIONS(4959), - [anon_sym_or_eq] = ACTIONS(4959), - [anon_sym_xor_eq] = ACTIONS(4959), - [anon_sym_LT_EQ_GT] = ACTIONS(4961), - [anon_sym_or] = ACTIONS(4959), - [anon_sym_and] = ACTIONS(4959), - [anon_sym_bitor] = ACTIONS(4959), - [anon_sym_xor] = ACTIONS(4959), - [anon_sym_bitand] = ACTIONS(4959), - [anon_sym_not_eq] = ACTIONS(4959), - [anon_sym_DASH_DASH] = ACTIONS(4961), - [anon_sym_PLUS_PLUS] = ACTIONS(4961), - [anon_sym_DOT] = ACTIONS(4959), - [anon_sym_DOT_STAR] = ACTIONS(4961), - [anon_sym_DASH_GT] = ACTIONS(4961), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4959), - [anon_sym_decltype] = ACTIONS(4959), - [anon_sym_template] = ACTIONS(4959), - [anon_sym_operator] = ACTIONS(4959), - }, - [1541] = { - [sym_template_argument_list] = STATE(1546), - [sym_identifier] = ACTIONS(4963), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4965), - [anon_sym_COMMA] = ACTIONS(4965), - [anon_sym_LPAREN2] = ACTIONS(4967), - [anon_sym_TILDE] = ACTIONS(4970), - [anon_sym_DASH] = ACTIONS(4972), - [anon_sym_PLUS] = ACTIONS(4972), - [anon_sym_STAR] = ACTIONS(4974), - [anon_sym_SLASH] = ACTIONS(4972), - [anon_sym_PERCENT] = ACTIONS(4972), - [anon_sym_PIPE_PIPE] = ACTIONS(4965), - [anon_sym_AMP_AMP] = ACTIONS(4967), - [anon_sym_PIPE] = ACTIONS(4972), - [anon_sym_CARET] = ACTIONS(4972), - [anon_sym_AMP] = ACTIONS(4974), - [anon_sym_EQ_EQ] = ACTIONS(4965), - [anon_sym_BANG_EQ] = ACTIONS(4965), - [anon_sym_GT] = ACTIONS(4972), - [anon_sym_GT_EQ] = ACTIONS(4965), - [anon_sym_LT_EQ] = ACTIONS(4972), - [anon_sym_LT] = ACTIONS(4977), - [anon_sym_LT_LT] = ACTIONS(4972), - [anon_sym_GT_GT] = ACTIONS(4972), - [anon_sym_SEMI] = ACTIONS(4967), - [anon_sym___extension__] = ACTIONS(4963), - [anon_sym_virtual] = ACTIONS(4963), - [anon_sym_extern] = ACTIONS(4963), - [anon_sym___attribute__] = ACTIONS(4963), - [anon_sym___attribute] = ACTIONS(4963), - [anon_sym_COLON_COLON] = ACTIONS(4167), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4967), - [anon_sym___declspec] = ACTIONS(4963), - [anon_sym___based] = ACTIONS(4963), - [anon_sym___cdecl] = ACTIONS(4963), - [anon_sym___clrcall] = ACTIONS(4963), - [anon_sym___stdcall] = ACTIONS(4963), - [anon_sym___fastcall] = ACTIONS(4963), - [anon_sym___thiscall] = ACTIONS(4963), - [anon_sym___vectorcall] = ACTIONS(4963), - [anon_sym_LBRACE] = ACTIONS(4970), - [anon_sym_RBRACE] = ACTIONS(4965), - [anon_sym_LBRACK] = ACTIONS(4974), - [anon_sym_static] = ACTIONS(4963), - [anon_sym_EQ] = ACTIONS(4972), - [anon_sym_register] = ACTIONS(4963), - [anon_sym_inline] = ACTIONS(4963), - [anon_sym___inline] = ACTIONS(4963), - [anon_sym___inline__] = ACTIONS(4963), - [anon_sym___forceinline] = ACTIONS(4963), - [anon_sym_thread_local] = ACTIONS(4963), - [anon_sym___thread] = ACTIONS(4963), - [anon_sym_const] = ACTIONS(4963), - [anon_sym_constexpr] = ACTIONS(4963), - [anon_sym_volatile] = ACTIONS(4963), - [anon_sym_restrict] = ACTIONS(4963), - [anon_sym___restrict__] = ACTIONS(4963), - [anon_sym__Atomic] = ACTIONS(4963), - [anon_sym__Noreturn] = ACTIONS(4963), - [anon_sym_noreturn] = ACTIONS(4963), - [anon_sym__Nonnull] = ACTIONS(4963), - [anon_sym_mutable] = ACTIONS(4963), - [anon_sym_constinit] = ACTIONS(4963), - [anon_sym_consteval] = ACTIONS(4963), - [anon_sym_alignas] = ACTIONS(4963), - [anon_sym__Alignas] = ACTIONS(4963), - [anon_sym_QMARK] = ACTIONS(4965), - [anon_sym_STAR_EQ] = ACTIONS(4965), - [anon_sym_SLASH_EQ] = ACTIONS(4965), - [anon_sym_PERCENT_EQ] = ACTIONS(4965), - [anon_sym_PLUS_EQ] = ACTIONS(4965), - [anon_sym_DASH_EQ] = ACTIONS(4965), - [anon_sym_LT_LT_EQ] = ACTIONS(4965), - [anon_sym_GT_GT_EQ] = ACTIONS(4965), - [anon_sym_AMP_EQ] = ACTIONS(4965), - [anon_sym_CARET_EQ] = ACTIONS(4965), - [anon_sym_PIPE_EQ] = ACTIONS(4965), - [anon_sym_and_eq] = ACTIONS(4972), - [anon_sym_or_eq] = ACTIONS(4972), - [anon_sym_xor_eq] = ACTIONS(4972), - [anon_sym_LT_EQ_GT] = ACTIONS(4965), - [anon_sym_or] = ACTIONS(4972), - [anon_sym_and] = ACTIONS(4972), - [anon_sym_bitor] = ACTIONS(4972), - [anon_sym_xor] = ACTIONS(4972), - [anon_sym_bitand] = ACTIONS(4972), - [anon_sym_not_eq] = ACTIONS(4972), - [anon_sym_DASH_DASH] = ACTIONS(4965), - [anon_sym_PLUS_PLUS] = ACTIONS(4965), - [anon_sym_DOT] = ACTIONS(4972), - [anon_sym_DOT_STAR] = ACTIONS(4965), - [anon_sym_DASH_GT] = ACTIONS(4965), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4963), - [anon_sym_decltype] = ACTIONS(4963), - [anon_sym_template] = ACTIONS(4963), - [anon_sym_operator] = ACTIONS(4963), + [1559] = { + [sym_identifier] = ACTIONS(4976), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4978), + [anon_sym_COMMA] = ACTIONS(4978), + [anon_sym_RPAREN] = ACTIONS(4978), + [anon_sym_LPAREN2] = ACTIONS(4978), + [anon_sym_TILDE] = ACTIONS(4978), + [anon_sym_DASH] = ACTIONS(4976), + [anon_sym_PLUS] = ACTIONS(4976), + [anon_sym_STAR] = ACTIONS(4976), + [anon_sym_SLASH] = ACTIONS(4976), + [anon_sym_PERCENT] = ACTIONS(4976), + [anon_sym_PIPE_PIPE] = ACTIONS(4978), + [anon_sym_AMP_AMP] = ACTIONS(4978), + [anon_sym_PIPE] = ACTIONS(4976), + [anon_sym_CARET] = ACTIONS(4976), + [anon_sym_AMP] = ACTIONS(4976), + [anon_sym_EQ_EQ] = ACTIONS(4978), + [anon_sym_BANG_EQ] = ACTIONS(4978), + [anon_sym_GT] = ACTIONS(4976), + [anon_sym_GT_EQ] = ACTIONS(4978), + [anon_sym_LT_EQ] = ACTIONS(4976), + [anon_sym_LT] = ACTIONS(4976), + [anon_sym_LT_LT] = ACTIONS(4976), + [anon_sym_GT_GT] = ACTIONS(4976), + [anon_sym_SEMI] = ACTIONS(4978), + [anon_sym___extension__] = ACTIONS(4976), + [anon_sym_virtual] = ACTIONS(4976), + [anon_sym_extern] = ACTIONS(4976), + [anon_sym___attribute__] = ACTIONS(4976), + [anon_sym___attribute] = ACTIONS(4976), + [anon_sym_COLON_COLON] = ACTIONS(4978), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4978), + [anon_sym___declspec] = ACTIONS(4976), + [anon_sym___based] = ACTIONS(4976), + [anon_sym___cdecl] = ACTIONS(4976), + [anon_sym___clrcall] = ACTIONS(4976), + [anon_sym___stdcall] = ACTIONS(4976), + [anon_sym___fastcall] = ACTIONS(4976), + [anon_sym___thiscall] = ACTIONS(4976), + [anon_sym___vectorcall] = ACTIONS(4976), + [anon_sym_LBRACE] = ACTIONS(4978), + [anon_sym_RBRACE] = ACTIONS(4978), + [anon_sym_LBRACK] = ACTIONS(4976), + [anon_sym_static] = ACTIONS(4976), + [anon_sym_EQ] = ACTIONS(4976), + [anon_sym_register] = ACTIONS(4976), + [anon_sym_inline] = ACTIONS(4976), + [anon_sym___inline] = ACTIONS(4976), + [anon_sym___inline__] = ACTIONS(4976), + [anon_sym___forceinline] = ACTIONS(4976), + [anon_sym_thread_local] = ACTIONS(4976), + [anon_sym___thread] = ACTIONS(4976), + [anon_sym_const] = ACTIONS(4976), + [anon_sym_constexpr] = ACTIONS(4976), + [anon_sym_volatile] = ACTIONS(4976), + [anon_sym_restrict] = ACTIONS(4976), + [anon_sym___restrict__] = ACTIONS(4976), + [anon_sym__Atomic] = ACTIONS(4976), + [anon_sym__Noreturn] = ACTIONS(4976), + [anon_sym_noreturn] = ACTIONS(4976), + [anon_sym__Nonnull] = ACTIONS(4976), + [anon_sym_mutable] = ACTIONS(4976), + [anon_sym_constinit] = ACTIONS(4976), + [anon_sym_consteval] = ACTIONS(4976), + [anon_sym_alignas] = ACTIONS(4976), + [anon_sym__Alignas] = ACTIONS(4976), + [anon_sym_QMARK] = ACTIONS(4978), + [anon_sym_STAR_EQ] = ACTIONS(4978), + [anon_sym_SLASH_EQ] = ACTIONS(4978), + [anon_sym_PERCENT_EQ] = ACTIONS(4978), + [anon_sym_PLUS_EQ] = ACTIONS(4978), + [anon_sym_DASH_EQ] = ACTIONS(4978), + [anon_sym_LT_LT_EQ] = ACTIONS(4978), + [anon_sym_GT_GT_EQ] = ACTIONS(4978), + [anon_sym_AMP_EQ] = ACTIONS(4978), + [anon_sym_CARET_EQ] = ACTIONS(4978), + [anon_sym_PIPE_EQ] = ACTIONS(4978), + [anon_sym_and_eq] = ACTIONS(4976), + [anon_sym_or_eq] = ACTIONS(4976), + [anon_sym_xor_eq] = ACTIONS(4976), + [anon_sym_LT_EQ_GT] = ACTIONS(4978), + [anon_sym_or] = ACTIONS(4976), + [anon_sym_and] = ACTIONS(4976), + [anon_sym_bitor] = ACTIONS(4976), + [anon_sym_xor] = ACTIONS(4976), + [anon_sym_bitand] = ACTIONS(4976), + [anon_sym_not_eq] = ACTIONS(4976), + [anon_sym_DASH_DASH] = ACTIONS(4978), + [anon_sym_PLUS_PLUS] = ACTIONS(4978), + [anon_sym_DOT] = ACTIONS(4976), + [anon_sym_DOT_STAR] = ACTIONS(4978), + [anon_sym_DASH_GT] = ACTIONS(4978), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4976), + [anon_sym_decltype] = ACTIONS(4976), + [anon_sym_template] = ACTIONS(4976), + [anon_sym_operator] = ACTIONS(4976), }, - [1542] = { + [1560] = { [sym_identifier] = ACTIONS(4980), [anon_sym_DOT_DOT_DOT] = ACTIONS(4982), [anon_sym_COMMA] = ACTIONS(4982), @@ -233783,39 +236587,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_template] = ACTIONS(4980), [anon_sym_operator] = ACTIONS(4980), }, - [1543] = { + [1561] = { [sym_identifier] = ACTIONS(4984), [anon_sym_DOT_DOT_DOT] = ACTIONS(4986), [anon_sym_COMMA] = ACTIONS(4986), [anon_sym_RPAREN] = ACTIONS(4986), - [anon_sym_LPAREN2] = ACTIONS(4986), - [anon_sym_TILDE] = ACTIONS(4986), - [anon_sym_DASH] = ACTIONS(4984), - [anon_sym_PLUS] = ACTIONS(4984), - [anon_sym_STAR] = ACTIONS(4984), - [anon_sym_SLASH] = ACTIONS(4984), - [anon_sym_PERCENT] = ACTIONS(4984), + [anon_sym_LPAREN2] = ACTIONS(4988), + [anon_sym_TILDE] = ACTIONS(4991), + [anon_sym_DASH] = ACTIONS(4993), + [anon_sym_PLUS] = ACTIONS(4993), + [anon_sym_STAR] = ACTIONS(4995), + [anon_sym_SLASH] = ACTIONS(4993), + [anon_sym_PERCENT] = ACTIONS(4993), [anon_sym_PIPE_PIPE] = ACTIONS(4986), - [anon_sym_AMP_AMP] = ACTIONS(4986), - [anon_sym_PIPE] = ACTIONS(4984), - [anon_sym_CARET] = ACTIONS(4984), - [anon_sym_AMP] = ACTIONS(4984), + [anon_sym_AMP_AMP] = ACTIONS(4988), + [anon_sym_PIPE] = ACTIONS(4993), + [anon_sym_CARET] = ACTIONS(4993), + [anon_sym_AMP] = ACTIONS(4995), [anon_sym_EQ_EQ] = ACTIONS(4986), [anon_sym_BANG_EQ] = ACTIONS(4986), - [anon_sym_GT] = ACTIONS(4984), + [anon_sym_GT] = ACTIONS(4993), [anon_sym_GT_EQ] = ACTIONS(4986), - [anon_sym_LT_EQ] = ACTIONS(4984), - [anon_sym_LT] = ACTIONS(4984), - [anon_sym_LT_LT] = ACTIONS(4984), - [anon_sym_GT_GT] = ACTIONS(4984), + [anon_sym_LT_EQ] = ACTIONS(4993), + [anon_sym_LT] = ACTIONS(4993), + [anon_sym_LT_LT] = ACTIONS(4993), + [anon_sym_GT_GT] = ACTIONS(4993), [anon_sym_SEMI] = ACTIONS(4986), [anon_sym___extension__] = ACTIONS(4984), [anon_sym_virtual] = ACTIONS(4984), [anon_sym_extern] = ACTIONS(4984), [anon_sym___attribute__] = ACTIONS(4984), [anon_sym___attribute] = ACTIONS(4984), - [anon_sym_COLON_COLON] = ACTIONS(4986), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4986), + [anon_sym_COLON_COLON] = ACTIONS(4991), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4991), [anon_sym___declspec] = ACTIONS(4984), [anon_sym___based] = ACTIONS(4984), [anon_sym___cdecl] = ACTIONS(4984), @@ -233824,11 +236628,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(4984), [anon_sym___thiscall] = ACTIONS(4984), [anon_sym___vectorcall] = ACTIONS(4984), - [anon_sym_LBRACE] = ACTIONS(4986), + [anon_sym_LBRACE] = ACTIONS(4991), [anon_sym_RBRACE] = ACTIONS(4986), - [anon_sym_LBRACK] = ACTIONS(4984), + [anon_sym_LBRACK] = ACTIONS(4995), [anon_sym_static] = ACTIONS(4984), - [anon_sym_EQ] = ACTIONS(4984), + [anon_sym_EQ] = ACTIONS(4993), [anon_sym_register] = ACTIONS(4984), [anon_sym_inline] = ACTIONS(4984), [anon_sym___inline] = ACTIONS(4984), @@ -233861,386 +236665,1461 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_EQ] = ACTIONS(4986), [anon_sym_CARET_EQ] = ACTIONS(4986), [anon_sym_PIPE_EQ] = ACTIONS(4986), - [anon_sym_and_eq] = ACTIONS(4984), - [anon_sym_or_eq] = ACTIONS(4984), - [anon_sym_xor_eq] = ACTIONS(4984), + [anon_sym_and_eq] = ACTIONS(4993), + [anon_sym_or_eq] = ACTIONS(4993), + [anon_sym_xor_eq] = ACTIONS(4993), [anon_sym_LT_EQ_GT] = ACTIONS(4986), - [anon_sym_or] = ACTIONS(4984), - [anon_sym_and] = ACTIONS(4984), - [anon_sym_bitor] = ACTIONS(4984), - [anon_sym_xor] = ACTIONS(4984), - [anon_sym_bitand] = ACTIONS(4984), - [anon_sym_not_eq] = ACTIONS(4984), + [anon_sym_or] = ACTIONS(4993), + [anon_sym_and] = ACTIONS(4993), + [anon_sym_bitor] = ACTIONS(4993), + [anon_sym_xor] = ACTIONS(4993), + [anon_sym_bitand] = ACTIONS(4993), + [anon_sym_not_eq] = ACTIONS(4993), [anon_sym_DASH_DASH] = ACTIONS(4986), [anon_sym_PLUS_PLUS] = ACTIONS(4986), - [anon_sym_DOT] = ACTIONS(4984), + [anon_sym_DOT] = ACTIONS(4993), [anon_sym_DOT_STAR] = ACTIONS(4986), [anon_sym_DASH_GT] = ACTIONS(4986), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4984), - [anon_sym_decltype] = ACTIONS(4984), - [anon_sym_template] = ACTIONS(4984), - [anon_sym_operator] = ACTIONS(4984), - }, - [1544] = { - [sym_identifier] = ACTIONS(4988), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4990), - [anon_sym_COMMA] = ACTIONS(4990), - [anon_sym_RPAREN] = ACTIONS(4990), - [anon_sym_LPAREN2] = ACTIONS(4990), - [anon_sym_TILDE] = ACTIONS(4990), - [anon_sym_DASH] = ACTIONS(4988), - [anon_sym_PLUS] = ACTIONS(4988), - [anon_sym_STAR] = ACTIONS(4988), - [anon_sym_SLASH] = ACTIONS(4988), - [anon_sym_PERCENT] = ACTIONS(4988), - [anon_sym_PIPE_PIPE] = ACTIONS(4990), - [anon_sym_AMP_AMP] = ACTIONS(4990), - [anon_sym_PIPE] = ACTIONS(4988), - [anon_sym_CARET] = ACTIONS(4988), - [anon_sym_AMP] = ACTIONS(4988), - [anon_sym_EQ_EQ] = ACTIONS(4990), - [anon_sym_BANG_EQ] = ACTIONS(4990), - [anon_sym_GT] = ACTIONS(4988), - [anon_sym_GT_EQ] = ACTIONS(4990), - [anon_sym_LT_EQ] = ACTIONS(4988), - [anon_sym_LT] = ACTIONS(4988), - [anon_sym_LT_LT] = ACTIONS(4988), - [anon_sym_GT_GT] = ACTIONS(4988), - [anon_sym_SEMI] = ACTIONS(4990), - [anon_sym___extension__] = ACTIONS(4988), - [anon_sym_virtual] = ACTIONS(4988), - [anon_sym_extern] = ACTIONS(4988), - [anon_sym___attribute__] = ACTIONS(4988), - [anon_sym___attribute] = ACTIONS(4988), - [anon_sym_COLON_COLON] = ACTIONS(4990), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4990), - [anon_sym___declspec] = ACTIONS(4988), - [anon_sym___based] = ACTIONS(4988), - [anon_sym___cdecl] = ACTIONS(4988), - [anon_sym___clrcall] = ACTIONS(4988), - [anon_sym___stdcall] = ACTIONS(4988), - [anon_sym___fastcall] = ACTIONS(4988), - [anon_sym___thiscall] = ACTIONS(4988), - [anon_sym___vectorcall] = ACTIONS(4988), - [anon_sym_LBRACE] = ACTIONS(4990), - [anon_sym_RBRACE] = ACTIONS(4990), - [anon_sym_LBRACK] = ACTIONS(4988), - [anon_sym_static] = ACTIONS(4988), - [anon_sym_EQ] = ACTIONS(4988), - [anon_sym_register] = ACTIONS(4988), - [anon_sym_inline] = ACTIONS(4988), - [anon_sym___inline] = ACTIONS(4988), - [anon_sym___inline__] = ACTIONS(4988), - [anon_sym___forceinline] = ACTIONS(4988), - [anon_sym_thread_local] = ACTIONS(4988), - [anon_sym___thread] = ACTIONS(4988), - [anon_sym_const] = ACTIONS(4988), - [anon_sym_constexpr] = ACTIONS(4988), - [anon_sym_volatile] = ACTIONS(4988), - [anon_sym_restrict] = ACTIONS(4988), - [anon_sym___restrict__] = ACTIONS(4988), - [anon_sym__Atomic] = ACTIONS(4988), - [anon_sym__Noreturn] = ACTIONS(4988), - [anon_sym_noreturn] = ACTIONS(4988), - [anon_sym__Nonnull] = ACTIONS(4988), - [anon_sym_mutable] = ACTIONS(4988), - [anon_sym_constinit] = ACTIONS(4988), - [anon_sym_consteval] = ACTIONS(4988), - [anon_sym_alignas] = ACTIONS(4988), - [anon_sym__Alignas] = ACTIONS(4988), - [anon_sym_QMARK] = ACTIONS(4990), - [anon_sym_STAR_EQ] = ACTIONS(4990), - [anon_sym_SLASH_EQ] = ACTIONS(4990), - [anon_sym_PERCENT_EQ] = ACTIONS(4990), - [anon_sym_PLUS_EQ] = ACTIONS(4990), - [anon_sym_DASH_EQ] = ACTIONS(4990), - [anon_sym_LT_LT_EQ] = ACTIONS(4990), - [anon_sym_GT_GT_EQ] = ACTIONS(4990), - [anon_sym_AMP_EQ] = ACTIONS(4990), - [anon_sym_CARET_EQ] = ACTIONS(4990), - [anon_sym_PIPE_EQ] = ACTIONS(4990), - [anon_sym_and_eq] = ACTIONS(4988), - [anon_sym_or_eq] = ACTIONS(4988), - [anon_sym_xor_eq] = ACTIONS(4988), - [anon_sym_LT_EQ_GT] = ACTIONS(4990), - [anon_sym_or] = ACTIONS(4988), - [anon_sym_and] = ACTIONS(4988), - [anon_sym_bitor] = ACTIONS(4988), - [anon_sym_xor] = ACTIONS(4988), - [anon_sym_bitand] = ACTIONS(4988), - [anon_sym_not_eq] = ACTIONS(4988), - [anon_sym_DASH_DASH] = ACTIONS(4990), - [anon_sym_PLUS_PLUS] = ACTIONS(4990), - [anon_sym_DOT] = ACTIONS(4988), - [anon_sym_DOT_STAR] = ACTIONS(4990), - [anon_sym_DASH_GT] = ACTIONS(4990), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4988), - [anon_sym_decltype] = ACTIONS(4988), - [anon_sym_template] = ACTIONS(4988), - [anon_sym_operator] = ACTIONS(4988), + [sym_auto] = ACTIONS(4984), + [anon_sym_decltype] = ACTIONS(4984), + [anon_sym_template] = ACTIONS(4984), + [anon_sym_operator] = ACTIONS(4984), + }, + [1562] = { + [sym_identifier] = ACTIONS(4998), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5000), + [anon_sym_COMMA] = ACTIONS(5000), + [anon_sym_RPAREN] = ACTIONS(5000), + [anon_sym_LPAREN2] = ACTIONS(5000), + [anon_sym_TILDE] = ACTIONS(5000), + [anon_sym_DASH] = ACTIONS(4998), + [anon_sym_PLUS] = ACTIONS(4998), + [anon_sym_STAR] = ACTIONS(4998), + [anon_sym_SLASH] = ACTIONS(4998), + [anon_sym_PERCENT] = ACTIONS(4998), + [anon_sym_PIPE_PIPE] = ACTIONS(5000), + [anon_sym_AMP_AMP] = ACTIONS(5000), + [anon_sym_PIPE] = ACTIONS(4998), + [anon_sym_CARET] = ACTIONS(4998), + [anon_sym_AMP] = ACTIONS(4998), + [anon_sym_EQ_EQ] = ACTIONS(5000), + [anon_sym_BANG_EQ] = ACTIONS(5000), + [anon_sym_GT] = ACTIONS(4998), + [anon_sym_GT_EQ] = ACTIONS(5000), + [anon_sym_LT_EQ] = ACTIONS(4998), + [anon_sym_LT] = ACTIONS(4998), + [anon_sym_LT_LT] = ACTIONS(4998), + [anon_sym_GT_GT] = ACTIONS(4998), + [anon_sym_SEMI] = ACTIONS(5000), + [anon_sym___extension__] = ACTIONS(4998), + [anon_sym_virtual] = ACTIONS(4998), + [anon_sym_extern] = ACTIONS(4998), + [anon_sym___attribute__] = ACTIONS(4998), + [anon_sym___attribute] = ACTIONS(4998), + [anon_sym_COLON_COLON] = ACTIONS(5000), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5000), + [anon_sym___declspec] = ACTIONS(4998), + [anon_sym___based] = ACTIONS(4998), + [anon_sym___cdecl] = ACTIONS(4998), + [anon_sym___clrcall] = ACTIONS(4998), + [anon_sym___stdcall] = ACTIONS(4998), + [anon_sym___fastcall] = ACTIONS(4998), + [anon_sym___thiscall] = ACTIONS(4998), + [anon_sym___vectorcall] = ACTIONS(4998), + [anon_sym_LBRACE] = ACTIONS(5000), + [anon_sym_RBRACE] = ACTIONS(5000), + [anon_sym_LBRACK] = ACTIONS(4998), + [anon_sym_static] = ACTIONS(4998), + [anon_sym_EQ] = ACTIONS(4998), + [anon_sym_register] = ACTIONS(4998), + [anon_sym_inline] = ACTIONS(4998), + [anon_sym___inline] = ACTIONS(4998), + [anon_sym___inline__] = ACTIONS(4998), + [anon_sym___forceinline] = ACTIONS(4998), + [anon_sym_thread_local] = ACTIONS(4998), + [anon_sym___thread] = ACTIONS(4998), + [anon_sym_const] = ACTIONS(4998), + [anon_sym_constexpr] = ACTIONS(4998), + [anon_sym_volatile] = ACTIONS(4998), + [anon_sym_restrict] = ACTIONS(4998), + [anon_sym___restrict__] = ACTIONS(4998), + [anon_sym__Atomic] = ACTIONS(4998), + [anon_sym__Noreturn] = ACTIONS(4998), + [anon_sym_noreturn] = ACTIONS(4998), + [anon_sym__Nonnull] = ACTIONS(4998), + [anon_sym_mutable] = ACTIONS(4998), + [anon_sym_constinit] = ACTIONS(4998), + [anon_sym_consteval] = ACTIONS(4998), + [anon_sym_alignas] = ACTIONS(4998), + [anon_sym__Alignas] = ACTIONS(4998), + [anon_sym_QMARK] = ACTIONS(5000), + [anon_sym_STAR_EQ] = ACTIONS(5000), + [anon_sym_SLASH_EQ] = ACTIONS(5000), + [anon_sym_PERCENT_EQ] = ACTIONS(5000), + [anon_sym_PLUS_EQ] = ACTIONS(5000), + [anon_sym_DASH_EQ] = ACTIONS(5000), + [anon_sym_LT_LT_EQ] = ACTIONS(5000), + [anon_sym_GT_GT_EQ] = ACTIONS(5000), + [anon_sym_AMP_EQ] = ACTIONS(5000), + [anon_sym_CARET_EQ] = ACTIONS(5000), + [anon_sym_PIPE_EQ] = ACTIONS(5000), + [anon_sym_and_eq] = ACTIONS(4998), + [anon_sym_or_eq] = ACTIONS(4998), + [anon_sym_xor_eq] = ACTIONS(4998), + [anon_sym_LT_EQ_GT] = ACTIONS(5000), + [anon_sym_or] = ACTIONS(4998), + [anon_sym_and] = ACTIONS(4998), + [anon_sym_bitor] = ACTIONS(4998), + [anon_sym_xor] = ACTIONS(4998), + [anon_sym_bitand] = ACTIONS(4998), + [anon_sym_not_eq] = ACTIONS(4998), + [anon_sym_DASH_DASH] = ACTIONS(5000), + [anon_sym_PLUS_PLUS] = ACTIONS(5000), + [anon_sym_DOT] = ACTIONS(4998), + [anon_sym_DOT_STAR] = ACTIONS(5000), + [anon_sym_DASH_GT] = ACTIONS(5000), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4998), + [anon_sym_decltype] = ACTIONS(4998), + [anon_sym_template] = ACTIONS(4998), + [anon_sym_operator] = ACTIONS(4998), + }, + [1563] = { + [sym_identifier] = ACTIONS(5002), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5004), + [anon_sym_COMMA] = ACTIONS(5004), + [anon_sym_RPAREN] = ACTIONS(5004), + [anon_sym_LPAREN2] = ACTIONS(5004), + [anon_sym_TILDE] = ACTIONS(5004), + [anon_sym_DASH] = ACTIONS(5002), + [anon_sym_PLUS] = ACTIONS(5002), + [anon_sym_STAR] = ACTIONS(5002), + [anon_sym_SLASH] = ACTIONS(5002), + [anon_sym_PERCENT] = ACTIONS(5002), + [anon_sym_PIPE_PIPE] = ACTIONS(5004), + [anon_sym_AMP_AMP] = ACTIONS(5004), + [anon_sym_PIPE] = ACTIONS(5002), + [anon_sym_CARET] = ACTIONS(5002), + [anon_sym_AMP] = ACTIONS(5002), + [anon_sym_EQ_EQ] = ACTIONS(5004), + [anon_sym_BANG_EQ] = ACTIONS(5004), + [anon_sym_GT] = ACTIONS(5002), + [anon_sym_GT_EQ] = ACTIONS(5004), + [anon_sym_LT_EQ] = ACTIONS(5002), + [anon_sym_LT] = ACTIONS(5002), + [anon_sym_LT_LT] = ACTIONS(5002), + [anon_sym_GT_GT] = ACTIONS(5002), + [anon_sym_SEMI] = ACTIONS(5004), + [anon_sym___extension__] = ACTIONS(5002), + [anon_sym_virtual] = ACTIONS(5002), + [anon_sym_extern] = ACTIONS(5002), + [anon_sym___attribute__] = ACTIONS(5002), + [anon_sym___attribute] = ACTIONS(5002), + [anon_sym_COLON_COLON] = ACTIONS(5004), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5004), + [anon_sym___declspec] = ACTIONS(5002), + [anon_sym___based] = ACTIONS(5002), + [anon_sym___cdecl] = ACTIONS(5002), + [anon_sym___clrcall] = ACTIONS(5002), + [anon_sym___stdcall] = ACTIONS(5002), + [anon_sym___fastcall] = ACTIONS(5002), + [anon_sym___thiscall] = ACTIONS(5002), + [anon_sym___vectorcall] = ACTIONS(5002), + [anon_sym_LBRACE] = ACTIONS(5004), + [anon_sym_RBRACE] = ACTIONS(5004), + [anon_sym_LBRACK] = ACTIONS(5002), + [anon_sym_static] = ACTIONS(5002), + [anon_sym_EQ] = ACTIONS(5002), + [anon_sym_register] = ACTIONS(5002), + [anon_sym_inline] = ACTIONS(5002), + [anon_sym___inline] = ACTIONS(5002), + [anon_sym___inline__] = ACTIONS(5002), + [anon_sym___forceinline] = ACTIONS(5002), + [anon_sym_thread_local] = ACTIONS(5002), + [anon_sym___thread] = ACTIONS(5002), + [anon_sym_const] = ACTIONS(5002), + [anon_sym_constexpr] = ACTIONS(5002), + [anon_sym_volatile] = ACTIONS(5002), + [anon_sym_restrict] = ACTIONS(5002), + [anon_sym___restrict__] = ACTIONS(5002), + [anon_sym__Atomic] = ACTIONS(5002), + [anon_sym__Noreturn] = ACTIONS(5002), + [anon_sym_noreturn] = ACTIONS(5002), + [anon_sym__Nonnull] = ACTIONS(5002), + [anon_sym_mutable] = ACTIONS(5002), + [anon_sym_constinit] = ACTIONS(5002), + [anon_sym_consteval] = ACTIONS(5002), + [anon_sym_alignas] = ACTIONS(5002), + [anon_sym__Alignas] = ACTIONS(5002), + [anon_sym_QMARK] = ACTIONS(5004), + [anon_sym_STAR_EQ] = ACTIONS(5004), + [anon_sym_SLASH_EQ] = ACTIONS(5004), + [anon_sym_PERCENT_EQ] = ACTIONS(5004), + [anon_sym_PLUS_EQ] = ACTIONS(5004), + [anon_sym_DASH_EQ] = ACTIONS(5004), + [anon_sym_LT_LT_EQ] = ACTIONS(5004), + [anon_sym_GT_GT_EQ] = ACTIONS(5004), + [anon_sym_AMP_EQ] = ACTIONS(5004), + [anon_sym_CARET_EQ] = ACTIONS(5004), + [anon_sym_PIPE_EQ] = ACTIONS(5004), + [anon_sym_and_eq] = ACTIONS(5002), + [anon_sym_or_eq] = ACTIONS(5002), + [anon_sym_xor_eq] = ACTIONS(5002), + [anon_sym_LT_EQ_GT] = ACTIONS(5004), + [anon_sym_or] = ACTIONS(5002), + [anon_sym_and] = ACTIONS(5002), + [anon_sym_bitor] = ACTIONS(5002), + [anon_sym_xor] = ACTIONS(5002), + [anon_sym_bitand] = ACTIONS(5002), + [anon_sym_not_eq] = ACTIONS(5002), + [anon_sym_DASH_DASH] = ACTIONS(5004), + [anon_sym_PLUS_PLUS] = ACTIONS(5004), + [anon_sym_DOT] = ACTIONS(5002), + [anon_sym_DOT_STAR] = ACTIONS(5004), + [anon_sym_DASH_GT] = ACTIONS(5004), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5002), + [anon_sym_decltype] = ACTIONS(5002), + [anon_sym_template] = ACTIONS(5002), + [anon_sym_operator] = ACTIONS(5002), + }, + [1564] = { + [sym_identifier] = ACTIONS(5006), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5008), + [anon_sym_COMMA] = ACTIONS(5008), + [anon_sym_RPAREN] = ACTIONS(5008), + [anon_sym_LPAREN2] = ACTIONS(5008), + [anon_sym_TILDE] = ACTIONS(5008), + [anon_sym_DASH] = ACTIONS(5006), + [anon_sym_PLUS] = ACTIONS(5006), + [anon_sym_STAR] = ACTIONS(5006), + [anon_sym_SLASH] = ACTIONS(5006), + [anon_sym_PERCENT] = ACTIONS(5006), + [anon_sym_PIPE_PIPE] = ACTIONS(5008), + [anon_sym_AMP_AMP] = ACTIONS(5008), + [anon_sym_PIPE] = ACTIONS(5006), + [anon_sym_CARET] = ACTIONS(5006), + [anon_sym_AMP] = ACTIONS(5006), + [anon_sym_EQ_EQ] = ACTIONS(5008), + [anon_sym_BANG_EQ] = ACTIONS(5008), + [anon_sym_GT] = ACTIONS(5006), + [anon_sym_GT_EQ] = ACTIONS(5008), + [anon_sym_LT_EQ] = ACTIONS(5006), + [anon_sym_LT] = ACTIONS(5006), + [anon_sym_LT_LT] = ACTIONS(5006), + [anon_sym_GT_GT] = ACTIONS(5006), + [anon_sym_SEMI] = ACTIONS(5008), + [anon_sym___extension__] = ACTIONS(5006), + [anon_sym_virtual] = ACTIONS(5006), + [anon_sym_extern] = ACTIONS(5006), + [anon_sym___attribute__] = ACTIONS(5006), + [anon_sym___attribute] = ACTIONS(5006), + [anon_sym_COLON_COLON] = ACTIONS(5008), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5008), + [anon_sym___declspec] = ACTIONS(5006), + [anon_sym___based] = ACTIONS(5006), + [anon_sym___cdecl] = ACTIONS(5006), + [anon_sym___clrcall] = ACTIONS(5006), + [anon_sym___stdcall] = ACTIONS(5006), + [anon_sym___fastcall] = ACTIONS(5006), + [anon_sym___thiscall] = ACTIONS(5006), + [anon_sym___vectorcall] = ACTIONS(5006), + [anon_sym_LBRACE] = ACTIONS(5008), + [anon_sym_RBRACE] = ACTIONS(5008), + [anon_sym_LBRACK] = ACTIONS(5006), + [anon_sym_static] = ACTIONS(5006), + [anon_sym_EQ] = ACTIONS(5006), + [anon_sym_register] = ACTIONS(5006), + [anon_sym_inline] = ACTIONS(5006), + [anon_sym___inline] = ACTIONS(5006), + [anon_sym___inline__] = ACTIONS(5006), + [anon_sym___forceinline] = ACTIONS(5006), + [anon_sym_thread_local] = ACTIONS(5006), + [anon_sym___thread] = ACTIONS(5006), + [anon_sym_const] = ACTIONS(5006), + [anon_sym_constexpr] = ACTIONS(5006), + [anon_sym_volatile] = ACTIONS(5006), + [anon_sym_restrict] = ACTIONS(5006), + [anon_sym___restrict__] = ACTIONS(5006), + [anon_sym__Atomic] = ACTIONS(5006), + [anon_sym__Noreturn] = ACTIONS(5006), + [anon_sym_noreturn] = ACTIONS(5006), + [anon_sym__Nonnull] = ACTIONS(5006), + [anon_sym_mutable] = ACTIONS(5006), + [anon_sym_constinit] = ACTIONS(5006), + [anon_sym_consteval] = ACTIONS(5006), + [anon_sym_alignas] = ACTIONS(5006), + [anon_sym__Alignas] = ACTIONS(5006), + [anon_sym_QMARK] = ACTIONS(5008), + [anon_sym_STAR_EQ] = ACTIONS(5008), + [anon_sym_SLASH_EQ] = ACTIONS(5008), + [anon_sym_PERCENT_EQ] = ACTIONS(5008), + [anon_sym_PLUS_EQ] = ACTIONS(5008), + [anon_sym_DASH_EQ] = ACTIONS(5008), + [anon_sym_LT_LT_EQ] = ACTIONS(5008), + [anon_sym_GT_GT_EQ] = ACTIONS(5008), + [anon_sym_AMP_EQ] = ACTIONS(5008), + [anon_sym_CARET_EQ] = ACTIONS(5008), + [anon_sym_PIPE_EQ] = ACTIONS(5008), + [anon_sym_and_eq] = ACTIONS(5006), + [anon_sym_or_eq] = ACTIONS(5006), + [anon_sym_xor_eq] = ACTIONS(5006), + [anon_sym_LT_EQ_GT] = ACTIONS(5008), + [anon_sym_or] = ACTIONS(5006), + [anon_sym_and] = ACTIONS(5006), + [anon_sym_bitor] = ACTIONS(5006), + [anon_sym_xor] = ACTIONS(5006), + [anon_sym_bitand] = ACTIONS(5006), + [anon_sym_not_eq] = ACTIONS(5006), + [anon_sym_DASH_DASH] = ACTIONS(5008), + [anon_sym_PLUS_PLUS] = ACTIONS(5008), + [anon_sym_DOT] = ACTIONS(5006), + [anon_sym_DOT_STAR] = ACTIONS(5008), + [anon_sym_DASH_GT] = ACTIONS(5008), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5006), + [anon_sym_decltype] = ACTIONS(5006), + [anon_sym_template] = ACTIONS(5006), + [anon_sym_operator] = ACTIONS(5006), + }, + [1565] = { + [sym_identifier] = ACTIONS(5010), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5012), + [anon_sym_COMMA] = ACTIONS(5012), + [anon_sym_RPAREN] = ACTIONS(5012), + [anon_sym_LPAREN2] = ACTIONS(5012), + [anon_sym_TILDE] = ACTIONS(5012), + [anon_sym_DASH] = ACTIONS(5010), + [anon_sym_PLUS] = ACTIONS(5010), + [anon_sym_STAR] = ACTIONS(5010), + [anon_sym_SLASH] = ACTIONS(5010), + [anon_sym_PERCENT] = ACTIONS(5010), + [anon_sym_PIPE_PIPE] = ACTIONS(5012), + [anon_sym_AMP_AMP] = ACTIONS(5012), + [anon_sym_PIPE] = ACTIONS(5010), + [anon_sym_CARET] = ACTIONS(5010), + [anon_sym_AMP] = ACTIONS(5010), + [anon_sym_EQ_EQ] = ACTIONS(5012), + [anon_sym_BANG_EQ] = ACTIONS(5012), + [anon_sym_GT] = ACTIONS(5010), + [anon_sym_GT_EQ] = ACTIONS(5012), + [anon_sym_LT_EQ] = ACTIONS(5010), + [anon_sym_LT] = ACTIONS(5010), + [anon_sym_LT_LT] = ACTIONS(5010), + [anon_sym_GT_GT] = ACTIONS(5010), + [anon_sym_SEMI] = ACTIONS(5012), + [anon_sym___extension__] = ACTIONS(5010), + [anon_sym_virtual] = ACTIONS(5010), + [anon_sym_extern] = ACTIONS(5010), + [anon_sym___attribute__] = ACTIONS(5010), + [anon_sym___attribute] = ACTIONS(5010), + [anon_sym_COLON_COLON] = ACTIONS(5012), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5012), + [anon_sym___declspec] = ACTIONS(5010), + [anon_sym___based] = ACTIONS(5010), + [anon_sym___cdecl] = ACTIONS(5010), + [anon_sym___clrcall] = ACTIONS(5010), + [anon_sym___stdcall] = ACTIONS(5010), + [anon_sym___fastcall] = ACTIONS(5010), + [anon_sym___thiscall] = ACTIONS(5010), + [anon_sym___vectorcall] = ACTIONS(5010), + [anon_sym_LBRACE] = ACTIONS(5012), + [anon_sym_RBRACE] = ACTIONS(5012), + [anon_sym_LBRACK] = ACTIONS(5010), + [anon_sym_static] = ACTIONS(5010), + [anon_sym_EQ] = ACTIONS(5010), + [anon_sym_register] = ACTIONS(5010), + [anon_sym_inline] = ACTIONS(5010), + [anon_sym___inline] = ACTIONS(5010), + [anon_sym___inline__] = ACTIONS(5010), + [anon_sym___forceinline] = ACTIONS(5010), + [anon_sym_thread_local] = ACTIONS(5010), + [anon_sym___thread] = ACTIONS(5010), + [anon_sym_const] = ACTIONS(5010), + [anon_sym_constexpr] = ACTIONS(5010), + [anon_sym_volatile] = ACTIONS(5010), + [anon_sym_restrict] = ACTIONS(5010), + [anon_sym___restrict__] = ACTIONS(5010), + [anon_sym__Atomic] = ACTIONS(5010), + [anon_sym__Noreturn] = ACTIONS(5010), + [anon_sym_noreturn] = ACTIONS(5010), + [anon_sym__Nonnull] = ACTIONS(5010), + [anon_sym_mutable] = ACTIONS(5010), + [anon_sym_constinit] = ACTIONS(5010), + [anon_sym_consteval] = ACTIONS(5010), + [anon_sym_alignas] = ACTIONS(5010), + [anon_sym__Alignas] = ACTIONS(5010), + [anon_sym_QMARK] = ACTIONS(5012), + [anon_sym_STAR_EQ] = ACTIONS(5012), + [anon_sym_SLASH_EQ] = ACTIONS(5012), + [anon_sym_PERCENT_EQ] = ACTIONS(5012), + [anon_sym_PLUS_EQ] = ACTIONS(5012), + [anon_sym_DASH_EQ] = ACTIONS(5012), + [anon_sym_LT_LT_EQ] = ACTIONS(5012), + [anon_sym_GT_GT_EQ] = ACTIONS(5012), + [anon_sym_AMP_EQ] = ACTIONS(5012), + [anon_sym_CARET_EQ] = ACTIONS(5012), + [anon_sym_PIPE_EQ] = ACTIONS(5012), + [anon_sym_and_eq] = ACTIONS(5010), + [anon_sym_or_eq] = ACTIONS(5010), + [anon_sym_xor_eq] = ACTIONS(5010), + [anon_sym_LT_EQ_GT] = ACTIONS(5012), + [anon_sym_or] = ACTIONS(5010), + [anon_sym_and] = ACTIONS(5010), + [anon_sym_bitor] = ACTIONS(5010), + [anon_sym_xor] = ACTIONS(5010), + [anon_sym_bitand] = ACTIONS(5010), + [anon_sym_not_eq] = ACTIONS(5010), + [anon_sym_DASH_DASH] = ACTIONS(5012), + [anon_sym_PLUS_PLUS] = ACTIONS(5012), + [anon_sym_DOT] = ACTIONS(5010), + [anon_sym_DOT_STAR] = ACTIONS(5012), + [anon_sym_DASH_GT] = ACTIONS(5012), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5010), + [anon_sym_decltype] = ACTIONS(5010), + [anon_sym_template] = ACTIONS(5010), + [anon_sym_operator] = ACTIONS(5010), + }, + [1566] = { + [sym_template_argument_list] = STATE(1568), + [sym_identifier] = ACTIONS(4925), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4927), + [anon_sym_COMMA] = ACTIONS(4927), + [anon_sym_LPAREN2] = ACTIONS(4929), + [anon_sym_TILDE] = ACTIONS(4932), + [anon_sym_DASH] = ACTIONS(4934), + [anon_sym_PLUS] = ACTIONS(4934), + [anon_sym_STAR] = ACTIONS(4936), + [anon_sym_SLASH] = ACTIONS(4934), + [anon_sym_PERCENT] = ACTIONS(4934), + [anon_sym_PIPE_PIPE] = ACTIONS(4927), + [anon_sym_AMP_AMP] = ACTIONS(4929), + [anon_sym_PIPE] = ACTIONS(4934), + [anon_sym_CARET] = ACTIONS(4934), + [anon_sym_AMP] = ACTIONS(4936), + [anon_sym_EQ_EQ] = ACTIONS(4927), + [anon_sym_BANG_EQ] = ACTIONS(4927), + [anon_sym_GT] = ACTIONS(4934), + [anon_sym_GT_EQ] = ACTIONS(4927), + [anon_sym_LT_EQ] = ACTIONS(4934), + [anon_sym_LT] = ACTIONS(4939), + [anon_sym_LT_LT] = ACTIONS(4934), + [anon_sym_GT_GT] = ACTIONS(4934), + [anon_sym_SEMI] = ACTIONS(4929), + [anon_sym___extension__] = ACTIONS(4925), + [anon_sym_virtual] = ACTIONS(4925), + [anon_sym_extern] = ACTIONS(4925), + [anon_sym___attribute__] = ACTIONS(4925), + [anon_sym___attribute] = ACTIONS(4925), + [anon_sym_COLON_COLON] = ACTIONS(4187), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4929), + [anon_sym___declspec] = ACTIONS(4925), + [anon_sym___based] = ACTIONS(4925), + [anon_sym___cdecl] = ACTIONS(4925), + [anon_sym___clrcall] = ACTIONS(4925), + [anon_sym___stdcall] = ACTIONS(4925), + [anon_sym___fastcall] = ACTIONS(4925), + [anon_sym___thiscall] = ACTIONS(4925), + [anon_sym___vectorcall] = ACTIONS(4925), + [anon_sym_LBRACE] = ACTIONS(4932), + [anon_sym_RBRACE] = ACTIONS(4927), + [anon_sym_LBRACK] = ACTIONS(4936), + [anon_sym_static] = ACTIONS(4925), + [anon_sym_EQ] = ACTIONS(4934), + [anon_sym_register] = ACTIONS(4925), + [anon_sym_inline] = ACTIONS(4925), + [anon_sym___inline] = ACTIONS(4925), + [anon_sym___inline__] = ACTIONS(4925), + [anon_sym___forceinline] = ACTIONS(4925), + [anon_sym_thread_local] = ACTIONS(4925), + [anon_sym___thread] = ACTIONS(4925), + [anon_sym_const] = ACTIONS(4925), + [anon_sym_constexpr] = ACTIONS(4925), + [anon_sym_volatile] = ACTIONS(4925), + [anon_sym_restrict] = ACTIONS(4925), + [anon_sym___restrict__] = ACTIONS(4925), + [anon_sym__Atomic] = ACTIONS(4925), + [anon_sym__Noreturn] = ACTIONS(4925), + [anon_sym_noreturn] = ACTIONS(4925), + [anon_sym__Nonnull] = ACTIONS(4925), + [anon_sym_mutable] = ACTIONS(4925), + [anon_sym_constinit] = ACTIONS(4925), + [anon_sym_consteval] = ACTIONS(4925), + [anon_sym_alignas] = ACTIONS(4925), + [anon_sym__Alignas] = ACTIONS(4925), + [anon_sym_QMARK] = ACTIONS(4927), + [anon_sym_STAR_EQ] = ACTIONS(4927), + [anon_sym_SLASH_EQ] = ACTIONS(4927), + [anon_sym_PERCENT_EQ] = ACTIONS(4927), + [anon_sym_PLUS_EQ] = ACTIONS(4927), + [anon_sym_DASH_EQ] = ACTIONS(4927), + [anon_sym_LT_LT_EQ] = ACTIONS(4927), + [anon_sym_GT_GT_EQ] = ACTIONS(4927), + [anon_sym_AMP_EQ] = ACTIONS(4927), + [anon_sym_CARET_EQ] = ACTIONS(4927), + [anon_sym_PIPE_EQ] = ACTIONS(4927), + [anon_sym_and_eq] = ACTIONS(4934), + [anon_sym_or_eq] = ACTIONS(4934), + [anon_sym_xor_eq] = ACTIONS(4934), + [anon_sym_LT_EQ_GT] = ACTIONS(4927), + [anon_sym_or] = ACTIONS(4934), + [anon_sym_and] = ACTIONS(4934), + [anon_sym_bitor] = ACTIONS(4934), + [anon_sym_xor] = ACTIONS(4934), + [anon_sym_bitand] = ACTIONS(4934), + [anon_sym_not_eq] = ACTIONS(4934), + [anon_sym_DASH_DASH] = ACTIONS(4927), + [anon_sym_PLUS_PLUS] = ACTIONS(4927), + [anon_sym_DOT] = ACTIONS(4934), + [anon_sym_DOT_STAR] = ACTIONS(4927), + [anon_sym_DASH_GT] = ACTIONS(4927), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4925), + [anon_sym_decltype] = ACTIONS(4925), + [anon_sym_template] = ACTIONS(4925), + [anon_sym_operator] = ACTIONS(4925), + }, + [1567] = { + [sym_identifier] = ACTIONS(5014), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5016), + [anon_sym_COMMA] = ACTIONS(5016), + [anon_sym_RPAREN] = ACTIONS(5016), + [anon_sym_LPAREN2] = ACTIONS(5016), + [anon_sym_TILDE] = ACTIONS(5016), + [anon_sym_DASH] = ACTIONS(5014), + [anon_sym_PLUS] = ACTIONS(5014), + [anon_sym_STAR] = ACTIONS(5014), + [anon_sym_SLASH] = ACTIONS(5014), + [anon_sym_PERCENT] = ACTIONS(5014), + [anon_sym_PIPE_PIPE] = ACTIONS(5016), + [anon_sym_AMP_AMP] = ACTIONS(5016), + [anon_sym_PIPE] = ACTIONS(5014), + [anon_sym_CARET] = ACTIONS(5014), + [anon_sym_AMP] = ACTIONS(5014), + [anon_sym_EQ_EQ] = ACTIONS(5016), + [anon_sym_BANG_EQ] = ACTIONS(5016), + [anon_sym_GT] = ACTIONS(5014), + [anon_sym_GT_EQ] = ACTIONS(5016), + [anon_sym_LT_EQ] = ACTIONS(5014), + [anon_sym_LT] = ACTIONS(5014), + [anon_sym_LT_LT] = ACTIONS(5014), + [anon_sym_GT_GT] = ACTIONS(5014), + [anon_sym_SEMI] = ACTIONS(5016), + [anon_sym___extension__] = ACTIONS(5014), + [anon_sym_virtual] = ACTIONS(5014), + [anon_sym_extern] = ACTIONS(5014), + [anon_sym___attribute__] = ACTIONS(5014), + [anon_sym___attribute] = ACTIONS(5014), + [anon_sym_COLON_COLON] = ACTIONS(5016), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5016), + [anon_sym___declspec] = ACTIONS(5014), + [anon_sym___based] = ACTIONS(5014), + [anon_sym___cdecl] = ACTIONS(5014), + [anon_sym___clrcall] = ACTIONS(5014), + [anon_sym___stdcall] = ACTIONS(5014), + [anon_sym___fastcall] = ACTIONS(5014), + [anon_sym___thiscall] = ACTIONS(5014), + [anon_sym___vectorcall] = ACTIONS(5014), + [anon_sym_LBRACE] = ACTIONS(5016), + [anon_sym_RBRACE] = ACTIONS(5016), + [anon_sym_LBRACK] = ACTIONS(5014), + [anon_sym_static] = ACTIONS(5014), + [anon_sym_EQ] = ACTIONS(5014), + [anon_sym_register] = ACTIONS(5014), + [anon_sym_inline] = ACTIONS(5014), + [anon_sym___inline] = ACTIONS(5014), + [anon_sym___inline__] = ACTIONS(5014), + [anon_sym___forceinline] = ACTIONS(5014), + [anon_sym_thread_local] = ACTIONS(5014), + [anon_sym___thread] = ACTIONS(5014), + [anon_sym_const] = ACTIONS(5014), + [anon_sym_constexpr] = ACTIONS(5014), + [anon_sym_volatile] = ACTIONS(5014), + [anon_sym_restrict] = ACTIONS(5014), + [anon_sym___restrict__] = ACTIONS(5014), + [anon_sym__Atomic] = ACTIONS(5014), + [anon_sym__Noreturn] = ACTIONS(5014), + [anon_sym_noreturn] = ACTIONS(5014), + [anon_sym__Nonnull] = ACTIONS(5014), + [anon_sym_mutable] = ACTIONS(5014), + [anon_sym_constinit] = ACTIONS(5014), + [anon_sym_consteval] = ACTIONS(5014), + [anon_sym_alignas] = ACTIONS(5014), + [anon_sym__Alignas] = ACTIONS(5014), + [anon_sym_QMARK] = ACTIONS(5016), + [anon_sym_STAR_EQ] = ACTIONS(5016), + [anon_sym_SLASH_EQ] = ACTIONS(5016), + [anon_sym_PERCENT_EQ] = ACTIONS(5016), + [anon_sym_PLUS_EQ] = ACTIONS(5016), + [anon_sym_DASH_EQ] = ACTIONS(5016), + [anon_sym_LT_LT_EQ] = ACTIONS(5016), + [anon_sym_GT_GT_EQ] = ACTIONS(5016), + [anon_sym_AMP_EQ] = ACTIONS(5016), + [anon_sym_CARET_EQ] = ACTIONS(5016), + [anon_sym_PIPE_EQ] = ACTIONS(5016), + [anon_sym_and_eq] = ACTIONS(5014), + [anon_sym_or_eq] = ACTIONS(5014), + [anon_sym_xor_eq] = ACTIONS(5014), + [anon_sym_LT_EQ_GT] = ACTIONS(5016), + [anon_sym_or] = ACTIONS(5014), + [anon_sym_and] = ACTIONS(5014), + [anon_sym_bitor] = ACTIONS(5014), + [anon_sym_xor] = ACTIONS(5014), + [anon_sym_bitand] = ACTIONS(5014), + [anon_sym_not_eq] = ACTIONS(5014), + [anon_sym_DASH_DASH] = ACTIONS(5016), + [anon_sym_PLUS_PLUS] = ACTIONS(5016), + [anon_sym_DOT] = ACTIONS(5014), + [anon_sym_DOT_STAR] = ACTIONS(5016), + [anon_sym_DASH_GT] = ACTIONS(5016), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5014), + [anon_sym_decltype] = ACTIONS(5014), + [anon_sym_template] = ACTIONS(5014), + [anon_sym_operator] = ACTIONS(5014), + }, + [1568] = { + [sym_identifier] = ACTIONS(4984), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4986), + [anon_sym_COMMA] = ACTIONS(4986), + [anon_sym_LPAREN2] = ACTIONS(4988), + [anon_sym_TILDE] = ACTIONS(4991), + [anon_sym_DASH] = ACTIONS(4993), + [anon_sym_PLUS] = ACTIONS(4993), + [anon_sym_STAR] = ACTIONS(4995), + [anon_sym_SLASH] = ACTIONS(4993), + [anon_sym_PERCENT] = ACTIONS(4993), + [anon_sym_PIPE_PIPE] = ACTIONS(4986), + [anon_sym_AMP_AMP] = ACTIONS(4988), + [anon_sym_PIPE] = ACTIONS(4993), + [anon_sym_CARET] = ACTIONS(4993), + [anon_sym_AMP] = ACTIONS(4995), + [anon_sym_EQ_EQ] = ACTIONS(4986), + [anon_sym_BANG_EQ] = ACTIONS(4986), + [anon_sym_GT] = ACTIONS(4993), + [anon_sym_GT_EQ] = ACTIONS(4986), + [anon_sym_LT_EQ] = ACTIONS(4993), + [anon_sym_LT] = ACTIONS(4993), + [anon_sym_LT_LT] = ACTIONS(4993), + [anon_sym_GT_GT] = ACTIONS(4993), + [anon_sym_SEMI] = ACTIONS(4988), + [anon_sym___extension__] = ACTIONS(4984), + [anon_sym_virtual] = ACTIONS(4984), + [anon_sym_extern] = ACTIONS(4984), + [anon_sym___attribute__] = ACTIONS(4984), + [anon_sym___attribute] = ACTIONS(4984), + [anon_sym_COLON_COLON] = ACTIONS(4991), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4988), + [anon_sym___declspec] = ACTIONS(4984), + [anon_sym___based] = ACTIONS(4984), + [anon_sym___cdecl] = ACTIONS(4984), + [anon_sym___clrcall] = ACTIONS(4984), + [anon_sym___stdcall] = ACTIONS(4984), + [anon_sym___fastcall] = ACTIONS(4984), + [anon_sym___thiscall] = ACTIONS(4984), + [anon_sym___vectorcall] = ACTIONS(4984), + [anon_sym_LBRACE] = ACTIONS(4991), + [anon_sym_RBRACE] = ACTIONS(4986), + [anon_sym_LBRACK] = ACTIONS(4995), + [anon_sym_static] = ACTIONS(4984), + [anon_sym_EQ] = ACTIONS(4993), + [anon_sym_register] = ACTIONS(4984), + [anon_sym_inline] = ACTIONS(4984), + [anon_sym___inline] = ACTIONS(4984), + [anon_sym___inline__] = ACTIONS(4984), + [anon_sym___forceinline] = ACTIONS(4984), + [anon_sym_thread_local] = ACTIONS(4984), + [anon_sym___thread] = ACTIONS(4984), + [anon_sym_const] = ACTIONS(4984), + [anon_sym_constexpr] = ACTIONS(4984), + [anon_sym_volatile] = ACTIONS(4984), + [anon_sym_restrict] = ACTIONS(4984), + [anon_sym___restrict__] = ACTIONS(4984), + [anon_sym__Atomic] = ACTIONS(4984), + [anon_sym__Noreturn] = ACTIONS(4984), + [anon_sym_noreturn] = ACTIONS(4984), + [anon_sym__Nonnull] = ACTIONS(4984), + [anon_sym_mutable] = ACTIONS(4984), + [anon_sym_constinit] = ACTIONS(4984), + [anon_sym_consteval] = ACTIONS(4984), + [anon_sym_alignas] = ACTIONS(4984), + [anon_sym__Alignas] = ACTIONS(4984), + [anon_sym_QMARK] = ACTIONS(4986), + [anon_sym_STAR_EQ] = ACTIONS(4986), + [anon_sym_SLASH_EQ] = ACTIONS(4986), + [anon_sym_PERCENT_EQ] = ACTIONS(4986), + [anon_sym_PLUS_EQ] = ACTIONS(4986), + [anon_sym_DASH_EQ] = ACTIONS(4986), + [anon_sym_LT_LT_EQ] = ACTIONS(4986), + [anon_sym_GT_GT_EQ] = ACTIONS(4986), + [anon_sym_AMP_EQ] = ACTIONS(4986), + [anon_sym_CARET_EQ] = ACTIONS(4986), + [anon_sym_PIPE_EQ] = ACTIONS(4986), + [anon_sym_and_eq] = ACTIONS(4993), + [anon_sym_or_eq] = ACTIONS(4993), + [anon_sym_xor_eq] = ACTIONS(4993), + [anon_sym_LT_EQ_GT] = ACTIONS(4986), + [anon_sym_or] = ACTIONS(4993), + [anon_sym_and] = ACTIONS(4993), + [anon_sym_bitor] = ACTIONS(4993), + [anon_sym_xor] = ACTIONS(4993), + [anon_sym_bitand] = ACTIONS(4993), + [anon_sym_not_eq] = ACTIONS(4993), + [anon_sym_DASH_DASH] = ACTIONS(4986), + [anon_sym_PLUS_PLUS] = ACTIONS(4986), + [anon_sym_DOT] = ACTIONS(4993), + [anon_sym_DOT_STAR] = ACTIONS(4986), + [anon_sym_DASH_GT] = ACTIONS(4986), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4984), + [anon_sym_decltype] = ACTIONS(4984), + [anon_sym_template] = ACTIONS(4984), + [anon_sym_operator] = ACTIONS(4984), + }, + [1569] = { + [sym_identifier] = ACTIONS(5002), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5004), + [anon_sym_COMMA] = ACTIONS(5004), + [anon_sym_RPAREN] = ACTIONS(5004), + [anon_sym_LPAREN2] = ACTIONS(5004), + [anon_sym_TILDE] = ACTIONS(5004), + [anon_sym_DASH] = ACTIONS(5002), + [anon_sym_PLUS] = ACTIONS(5002), + [anon_sym_STAR] = ACTIONS(5004), + [anon_sym_SLASH] = ACTIONS(5002), + [anon_sym_PERCENT] = ACTIONS(5004), + [anon_sym_PIPE_PIPE] = ACTIONS(5004), + [anon_sym_AMP_AMP] = ACTIONS(5004), + [anon_sym_PIPE] = ACTIONS(5002), + [anon_sym_CARET] = ACTIONS(5004), + [anon_sym_AMP] = ACTIONS(5002), + [anon_sym_EQ_EQ] = ACTIONS(5004), + [anon_sym_BANG_EQ] = ACTIONS(5004), + [anon_sym_GT] = ACTIONS(5002), + [anon_sym_GT_EQ] = ACTIONS(5004), + [anon_sym_LT_EQ] = ACTIONS(5002), + [anon_sym_LT] = ACTIONS(5002), + [anon_sym_LT_LT] = ACTIONS(5004), + [anon_sym_GT_GT] = ACTIONS(5004), + [anon_sym_SEMI] = ACTIONS(5004), + [anon_sym___extension__] = ACTIONS(5002), + [anon_sym_virtual] = ACTIONS(5002), + [anon_sym_extern] = ACTIONS(5002), + [anon_sym___attribute__] = ACTIONS(5002), + [anon_sym___attribute] = ACTIONS(5002), + [anon_sym_COLON] = ACTIONS(5002), + [anon_sym_COLON_COLON] = ACTIONS(5004), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5004), + [anon_sym___declspec] = ACTIONS(5002), + [anon_sym___based] = ACTIONS(5002), + [anon_sym___cdecl] = ACTIONS(5002), + [anon_sym___clrcall] = ACTIONS(5002), + [anon_sym___stdcall] = ACTIONS(5002), + [anon_sym___fastcall] = ACTIONS(5002), + [anon_sym___thiscall] = ACTIONS(5002), + [anon_sym___vectorcall] = ACTIONS(5002), + [anon_sym_LBRACE] = ACTIONS(5004), + [anon_sym_RBRACE] = ACTIONS(5004), + [anon_sym_LBRACK] = ACTIONS(5002), + [anon_sym_static] = ACTIONS(5002), + [anon_sym_RBRACK] = ACTIONS(5004), + [anon_sym_EQ] = ACTIONS(5002), + [anon_sym_register] = ACTIONS(5002), + [anon_sym_inline] = ACTIONS(5002), + [anon_sym___inline] = ACTIONS(5002), + [anon_sym___inline__] = ACTIONS(5002), + [anon_sym___forceinline] = ACTIONS(5002), + [anon_sym_thread_local] = ACTIONS(5002), + [anon_sym___thread] = ACTIONS(5002), + [anon_sym_const] = ACTIONS(5002), + [anon_sym_constexpr] = ACTIONS(5002), + [anon_sym_volatile] = ACTIONS(5002), + [anon_sym_restrict] = ACTIONS(5002), + [anon_sym___restrict__] = ACTIONS(5002), + [anon_sym__Atomic] = ACTIONS(5002), + [anon_sym__Noreturn] = ACTIONS(5002), + [anon_sym_noreturn] = ACTIONS(5002), + [anon_sym__Nonnull] = ACTIONS(5002), + [anon_sym_mutable] = ACTIONS(5002), + [anon_sym_constinit] = ACTIONS(5002), + [anon_sym_consteval] = ACTIONS(5002), + [anon_sym_alignas] = ACTIONS(5002), + [anon_sym__Alignas] = ACTIONS(5002), + [anon_sym_QMARK] = ACTIONS(5004), + [anon_sym_LT_EQ_GT] = ACTIONS(5004), + [anon_sym_or] = ACTIONS(5002), + [anon_sym_and] = ACTIONS(5002), + [anon_sym_bitor] = ACTIONS(5002), + [anon_sym_xor] = ACTIONS(5002), + [anon_sym_bitand] = ACTIONS(5002), + [anon_sym_not_eq] = ACTIONS(5002), + [anon_sym_DASH_DASH] = ACTIONS(5004), + [anon_sym_PLUS_PLUS] = ACTIONS(5004), + [anon_sym_asm] = ACTIONS(5002), + [anon_sym___asm__] = ACTIONS(5002), + [anon_sym___asm] = ACTIONS(5002), + [anon_sym_DOT] = ACTIONS(5002), + [anon_sym_DOT_STAR] = ACTIONS(5004), + [anon_sym_DASH_GT] = ACTIONS(5004), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5002), + [anon_sym_decltype] = ACTIONS(5002), + [anon_sym_final] = ACTIONS(5002), + [anon_sym_override] = ACTIONS(5002), + [anon_sym_template] = ACTIONS(5002), + [anon_sym_operator] = ACTIONS(5002), + [anon_sym_try] = ACTIONS(5002), + [anon_sym_noexcept] = ACTIONS(5002), + [anon_sym_throw] = ACTIONS(5002), + [anon_sym_requires] = ACTIONS(5002), + }, + [1570] = { + [sym_identifier] = ACTIONS(5010), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5012), + [anon_sym_COMMA] = ACTIONS(5012), + [anon_sym_RPAREN] = ACTIONS(5012), + [anon_sym_LPAREN2] = ACTIONS(5012), + [anon_sym_TILDE] = ACTIONS(5012), + [anon_sym_DASH] = ACTIONS(5010), + [anon_sym_PLUS] = ACTIONS(5010), + [anon_sym_STAR] = ACTIONS(5012), + [anon_sym_SLASH] = ACTIONS(5010), + [anon_sym_PERCENT] = ACTIONS(5012), + [anon_sym_PIPE_PIPE] = ACTIONS(5012), + [anon_sym_AMP_AMP] = ACTIONS(5012), + [anon_sym_PIPE] = ACTIONS(5010), + [anon_sym_CARET] = ACTIONS(5012), + [anon_sym_AMP] = ACTIONS(5010), + [anon_sym_EQ_EQ] = ACTIONS(5012), + [anon_sym_BANG_EQ] = ACTIONS(5012), + [anon_sym_GT] = ACTIONS(5010), + [anon_sym_GT_EQ] = ACTIONS(5012), + [anon_sym_LT_EQ] = ACTIONS(5010), + [anon_sym_LT] = ACTIONS(5010), + [anon_sym_LT_LT] = ACTIONS(5012), + [anon_sym_GT_GT] = ACTIONS(5012), + [anon_sym_SEMI] = ACTIONS(5012), + [anon_sym___extension__] = ACTIONS(5010), + [anon_sym_virtual] = ACTIONS(5010), + [anon_sym_extern] = ACTIONS(5010), + [anon_sym___attribute__] = ACTIONS(5010), + [anon_sym___attribute] = ACTIONS(5010), + [anon_sym_COLON] = ACTIONS(5010), + [anon_sym_COLON_COLON] = ACTIONS(5012), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5012), + [anon_sym___declspec] = ACTIONS(5010), + [anon_sym___based] = ACTIONS(5010), + [anon_sym___cdecl] = ACTIONS(5010), + [anon_sym___clrcall] = ACTIONS(5010), + [anon_sym___stdcall] = ACTIONS(5010), + [anon_sym___fastcall] = ACTIONS(5010), + [anon_sym___thiscall] = ACTIONS(5010), + [anon_sym___vectorcall] = ACTIONS(5010), + [anon_sym_LBRACE] = ACTIONS(5012), + [anon_sym_RBRACE] = ACTIONS(5012), + [anon_sym_LBRACK] = ACTIONS(5010), + [anon_sym_static] = ACTIONS(5010), + [anon_sym_RBRACK] = ACTIONS(5012), + [anon_sym_EQ] = ACTIONS(5010), + [anon_sym_register] = ACTIONS(5010), + [anon_sym_inline] = ACTIONS(5010), + [anon_sym___inline] = ACTIONS(5010), + [anon_sym___inline__] = ACTIONS(5010), + [anon_sym___forceinline] = ACTIONS(5010), + [anon_sym_thread_local] = ACTIONS(5010), + [anon_sym___thread] = ACTIONS(5010), + [anon_sym_const] = ACTIONS(5010), + [anon_sym_constexpr] = ACTIONS(5010), + [anon_sym_volatile] = ACTIONS(5010), + [anon_sym_restrict] = ACTIONS(5010), + [anon_sym___restrict__] = ACTIONS(5010), + [anon_sym__Atomic] = ACTIONS(5010), + [anon_sym__Noreturn] = ACTIONS(5010), + [anon_sym_noreturn] = ACTIONS(5010), + [anon_sym__Nonnull] = ACTIONS(5010), + [anon_sym_mutable] = ACTIONS(5010), + [anon_sym_constinit] = ACTIONS(5010), + [anon_sym_consteval] = ACTIONS(5010), + [anon_sym_alignas] = ACTIONS(5010), + [anon_sym__Alignas] = ACTIONS(5010), + [anon_sym_QMARK] = ACTIONS(5012), + [anon_sym_LT_EQ_GT] = ACTIONS(5012), + [anon_sym_or] = ACTIONS(5010), + [anon_sym_and] = ACTIONS(5010), + [anon_sym_bitor] = ACTIONS(5010), + [anon_sym_xor] = ACTIONS(5010), + [anon_sym_bitand] = ACTIONS(5010), + [anon_sym_not_eq] = ACTIONS(5010), + [anon_sym_DASH_DASH] = ACTIONS(5012), + [anon_sym_PLUS_PLUS] = ACTIONS(5012), + [anon_sym_asm] = ACTIONS(5010), + [anon_sym___asm__] = ACTIONS(5010), + [anon_sym___asm] = ACTIONS(5010), + [anon_sym_DOT] = ACTIONS(5010), + [anon_sym_DOT_STAR] = ACTIONS(5012), + [anon_sym_DASH_GT] = ACTIONS(5012), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5010), + [anon_sym_decltype] = ACTIONS(5010), + [anon_sym_final] = ACTIONS(5010), + [anon_sym_override] = ACTIONS(5010), + [anon_sym_template] = ACTIONS(5010), + [anon_sym_operator] = ACTIONS(5010), + [anon_sym_try] = ACTIONS(5010), + [anon_sym_noexcept] = ACTIONS(5010), + [anon_sym_throw] = ACTIONS(5010), + [anon_sym_requires] = ACTIONS(5010), + }, + [1571] = { + [sym_identifier] = ACTIONS(4998), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5000), + [anon_sym_COMMA] = ACTIONS(5000), + [anon_sym_RPAREN] = ACTIONS(5000), + [anon_sym_LPAREN2] = ACTIONS(5000), + [anon_sym_TILDE] = ACTIONS(5000), + [anon_sym_DASH] = ACTIONS(4998), + [anon_sym_PLUS] = ACTIONS(4998), + [anon_sym_STAR] = ACTIONS(5000), + [anon_sym_SLASH] = ACTIONS(4998), + [anon_sym_PERCENT] = ACTIONS(5000), + [anon_sym_PIPE_PIPE] = ACTIONS(5000), + [anon_sym_AMP_AMP] = ACTIONS(5000), + [anon_sym_PIPE] = ACTIONS(4998), + [anon_sym_CARET] = ACTIONS(5000), + [anon_sym_AMP] = ACTIONS(4998), + [anon_sym_EQ_EQ] = ACTIONS(5000), + [anon_sym_BANG_EQ] = ACTIONS(5000), + [anon_sym_GT] = ACTIONS(4998), + [anon_sym_GT_EQ] = ACTIONS(5000), + [anon_sym_LT_EQ] = ACTIONS(4998), + [anon_sym_LT] = ACTIONS(4998), + [anon_sym_LT_LT] = ACTIONS(5000), + [anon_sym_GT_GT] = ACTIONS(5000), + [anon_sym_SEMI] = ACTIONS(5000), + [anon_sym___extension__] = ACTIONS(4998), + [anon_sym_virtual] = ACTIONS(4998), + [anon_sym_extern] = ACTIONS(4998), + [anon_sym___attribute__] = ACTIONS(4998), + [anon_sym___attribute] = ACTIONS(4998), + [anon_sym_COLON] = ACTIONS(4998), + [anon_sym_COLON_COLON] = ACTIONS(5000), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5000), + [anon_sym___declspec] = ACTIONS(4998), + [anon_sym___based] = ACTIONS(4998), + [anon_sym___cdecl] = ACTIONS(4998), + [anon_sym___clrcall] = ACTIONS(4998), + [anon_sym___stdcall] = ACTIONS(4998), + [anon_sym___fastcall] = ACTIONS(4998), + [anon_sym___thiscall] = ACTIONS(4998), + [anon_sym___vectorcall] = ACTIONS(4998), + [anon_sym_LBRACE] = ACTIONS(5000), + [anon_sym_RBRACE] = ACTIONS(5000), + [anon_sym_LBRACK] = ACTIONS(4998), + [anon_sym_static] = ACTIONS(4998), + [anon_sym_RBRACK] = ACTIONS(5000), + [anon_sym_EQ] = ACTIONS(4998), + [anon_sym_register] = ACTIONS(4998), + [anon_sym_inline] = ACTIONS(4998), + [anon_sym___inline] = ACTIONS(4998), + [anon_sym___inline__] = ACTIONS(4998), + [anon_sym___forceinline] = ACTIONS(4998), + [anon_sym_thread_local] = ACTIONS(4998), + [anon_sym___thread] = ACTIONS(4998), + [anon_sym_const] = ACTIONS(4998), + [anon_sym_constexpr] = ACTIONS(4998), + [anon_sym_volatile] = ACTIONS(4998), + [anon_sym_restrict] = ACTIONS(4998), + [anon_sym___restrict__] = ACTIONS(4998), + [anon_sym__Atomic] = ACTIONS(4998), + [anon_sym__Noreturn] = ACTIONS(4998), + [anon_sym_noreturn] = ACTIONS(4998), + [anon_sym__Nonnull] = ACTIONS(4998), + [anon_sym_mutable] = ACTIONS(4998), + [anon_sym_constinit] = ACTIONS(4998), + [anon_sym_consteval] = ACTIONS(4998), + [anon_sym_alignas] = ACTIONS(4998), + [anon_sym__Alignas] = ACTIONS(4998), + [anon_sym_QMARK] = ACTIONS(5000), + [anon_sym_LT_EQ_GT] = ACTIONS(5000), + [anon_sym_or] = ACTIONS(4998), + [anon_sym_and] = ACTIONS(4998), + [anon_sym_bitor] = ACTIONS(4998), + [anon_sym_xor] = ACTIONS(4998), + [anon_sym_bitand] = ACTIONS(4998), + [anon_sym_not_eq] = ACTIONS(4998), + [anon_sym_DASH_DASH] = ACTIONS(5000), + [anon_sym_PLUS_PLUS] = ACTIONS(5000), + [anon_sym_asm] = ACTIONS(4998), + [anon_sym___asm__] = ACTIONS(4998), + [anon_sym___asm] = ACTIONS(4998), + [anon_sym_DOT] = ACTIONS(4998), + [anon_sym_DOT_STAR] = ACTIONS(5000), + [anon_sym_DASH_GT] = ACTIONS(5000), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4998), + [anon_sym_decltype] = ACTIONS(4998), + [anon_sym_final] = ACTIONS(4998), + [anon_sym_override] = ACTIONS(4998), + [anon_sym_template] = ACTIONS(4998), + [anon_sym_operator] = ACTIONS(4998), + [anon_sym_try] = ACTIONS(4998), + [anon_sym_noexcept] = ACTIONS(4998), + [anon_sym_throw] = ACTIONS(4998), + [anon_sym_requires] = ACTIONS(4998), + }, + [1572] = { + [sym_identifier] = ACTIONS(4980), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4982), + [anon_sym_COMMA] = ACTIONS(4982), + [anon_sym_RPAREN] = ACTIONS(4982), + [anon_sym_LPAREN2] = ACTIONS(4982), + [anon_sym_TILDE] = ACTIONS(4982), + [anon_sym_DASH] = ACTIONS(4980), + [anon_sym_PLUS] = ACTIONS(4980), + [anon_sym_STAR] = ACTIONS(4982), + [anon_sym_SLASH] = ACTIONS(4980), + [anon_sym_PERCENT] = ACTIONS(4982), + [anon_sym_PIPE_PIPE] = ACTIONS(4982), + [anon_sym_AMP_AMP] = ACTIONS(4982), + [anon_sym_PIPE] = ACTIONS(4980), + [anon_sym_CARET] = ACTIONS(4982), + [anon_sym_AMP] = ACTIONS(4980), + [anon_sym_EQ_EQ] = ACTIONS(4982), + [anon_sym_BANG_EQ] = ACTIONS(4982), + [anon_sym_GT] = ACTIONS(4980), + [anon_sym_GT_EQ] = ACTIONS(4982), + [anon_sym_LT_EQ] = ACTIONS(4980), + [anon_sym_LT] = ACTIONS(4980), + [anon_sym_LT_LT] = ACTIONS(4982), + [anon_sym_GT_GT] = ACTIONS(4982), + [anon_sym_SEMI] = ACTIONS(4982), + [anon_sym___extension__] = ACTIONS(4980), + [anon_sym_virtual] = ACTIONS(4980), + [anon_sym_extern] = ACTIONS(4980), + [anon_sym___attribute__] = ACTIONS(4980), + [anon_sym___attribute] = ACTIONS(4980), + [anon_sym_COLON] = ACTIONS(4980), + [anon_sym_COLON_COLON] = ACTIONS(4982), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4982), + [anon_sym___declspec] = ACTIONS(4980), + [anon_sym___based] = ACTIONS(4980), + [anon_sym___cdecl] = ACTIONS(4980), + [anon_sym___clrcall] = ACTIONS(4980), + [anon_sym___stdcall] = ACTIONS(4980), + [anon_sym___fastcall] = ACTIONS(4980), + [anon_sym___thiscall] = ACTIONS(4980), + [anon_sym___vectorcall] = ACTIONS(4980), + [anon_sym_LBRACE] = ACTIONS(4982), + [anon_sym_RBRACE] = ACTIONS(4982), + [anon_sym_LBRACK] = ACTIONS(4980), + [anon_sym_static] = ACTIONS(4980), + [anon_sym_RBRACK] = ACTIONS(4982), + [anon_sym_EQ] = ACTIONS(4980), + [anon_sym_register] = ACTIONS(4980), + [anon_sym_inline] = ACTIONS(4980), + [anon_sym___inline] = ACTIONS(4980), + [anon_sym___inline__] = ACTIONS(4980), + [anon_sym___forceinline] = ACTIONS(4980), + [anon_sym_thread_local] = ACTIONS(4980), + [anon_sym___thread] = ACTIONS(4980), + [anon_sym_const] = ACTIONS(4980), + [anon_sym_constexpr] = ACTIONS(4980), + [anon_sym_volatile] = ACTIONS(4980), + [anon_sym_restrict] = ACTIONS(4980), + [anon_sym___restrict__] = ACTIONS(4980), + [anon_sym__Atomic] = ACTIONS(4980), + [anon_sym__Noreturn] = ACTIONS(4980), + [anon_sym_noreturn] = ACTIONS(4980), + [anon_sym__Nonnull] = ACTIONS(4980), + [anon_sym_mutable] = ACTIONS(4980), + [anon_sym_constinit] = ACTIONS(4980), + [anon_sym_consteval] = ACTIONS(4980), + [anon_sym_alignas] = ACTIONS(4980), + [anon_sym__Alignas] = ACTIONS(4980), + [anon_sym_QMARK] = ACTIONS(4982), + [anon_sym_LT_EQ_GT] = ACTIONS(4982), + [anon_sym_or] = ACTIONS(4980), + [anon_sym_and] = ACTIONS(4980), + [anon_sym_bitor] = ACTIONS(4980), + [anon_sym_xor] = ACTIONS(4980), + [anon_sym_bitand] = ACTIONS(4980), + [anon_sym_not_eq] = ACTIONS(4980), + [anon_sym_DASH_DASH] = ACTIONS(4982), + [anon_sym_PLUS_PLUS] = ACTIONS(4982), + [anon_sym_asm] = ACTIONS(4980), + [anon_sym___asm__] = ACTIONS(4980), + [anon_sym___asm] = ACTIONS(4980), + [anon_sym_DOT] = ACTIONS(4980), + [anon_sym_DOT_STAR] = ACTIONS(4982), + [anon_sym_DASH_GT] = ACTIONS(4982), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4980), + [anon_sym_decltype] = ACTIONS(4980), + [anon_sym_final] = ACTIONS(4980), + [anon_sym_override] = ACTIONS(4980), + [anon_sym_template] = ACTIONS(4980), + [anon_sym_operator] = ACTIONS(4980), + [anon_sym_try] = ACTIONS(4980), + [anon_sym_noexcept] = ACTIONS(4980), + [anon_sym_throw] = ACTIONS(4980), + [anon_sym_requires] = ACTIONS(4980), }, - [1545] = { - [sym_identifier] = ACTIONS(4992), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4994), - [anon_sym_COMMA] = ACTIONS(4994), - [anon_sym_RPAREN] = ACTIONS(4994), - [anon_sym_LPAREN2] = ACTIONS(4994), - [anon_sym_TILDE] = ACTIONS(4994), - [anon_sym_DASH] = ACTIONS(4992), - [anon_sym_PLUS] = ACTIONS(4992), - [anon_sym_STAR] = ACTIONS(4992), - [anon_sym_SLASH] = ACTIONS(4992), - [anon_sym_PERCENT] = ACTIONS(4992), - [anon_sym_PIPE_PIPE] = ACTIONS(4994), - [anon_sym_AMP_AMP] = ACTIONS(4994), - [anon_sym_PIPE] = ACTIONS(4992), - [anon_sym_CARET] = ACTIONS(4992), - [anon_sym_AMP] = ACTIONS(4992), - [anon_sym_EQ_EQ] = ACTIONS(4994), - [anon_sym_BANG_EQ] = ACTIONS(4994), - [anon_sym_GT] = ACTIONS(4992), - [anon_sym_GT_EQ] = ACTIONS(4994), - [anon_sym_LT_EQ] = ACTIONS(4992), - [anon_sym_LT] = ACTIONS(4992), - [anon_sym_LT_LT] = ACTIONS(4992), - [anon_sym_GT_GT] = ACTIONS(4992), - [anon_sym_SEMI] = ACTIONS(4994), - [anon_sym___extension__] = ACTIONS(4992), - [anon_sym_virtual] = ACTIONS(4992), - [anon_sym_extern] = ACTIONS(4992), - [anon_sym___attribute__] = ACTIONS(4992), - [anon_sym___attribute] = ACTIONS(4992), - [anon_sym_COLON_COLON] = ACTIONS(4994), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4994), - [anon_sym___declspec] = ACTIONS(4992), - [anon_sym___based] = ACTIONS(4992), - [anon_sym___cdecl] = ACTIONS(4992), - [anon_sym___clrcall] = ACTIONS(4992), - [anon_sym___stdcall] = ACTIONS(4992), - [anon_sym___fastcall] = ACTIONS(4992), - [anon_sym___thiscall] = ACTIONS(4992), - [anon_sym___vectorcall] = ACTIONS(4992), - [anon_sym_LBRACE] = ACTIONS(4994), - [anon_sym_RBRACE] = ACTIONS(4994), - [anon_sym_LBRACK] = ACTIONS(4992), - [anon_sym_static] = ACTIONS(4992), - [anon_sym_EQ] = ACTIONS(4992), - [anon_sym_register] = ACTIONS(4992), - [anon_sym_inline] = ACTIONS(4992), - [anon_sym___inline] = ACTIONS(4992), - [anon_sym___inline__] = ACTIONS(4992), - [anon_sym___forceinline] = ACTIONS(4992), - [anon_sym_thread_local] = ACTIONS(4992), - [anon_sym___thread] = ACTIONS(4992), - [anon_sym_const] = ACTIONS(4992), - [anon_sym_constexpr] = ACTIONS(4992), - [anon_sym_volatile] = ACTIONS(4992), - [anon_sym_restrict] = ACTIONS(4992), - [anon_sym___restrict__] = ACTIONS(4992), - [anon_sym__Atomic] = ACTIONS(4992), - [anon_sym__Noreturn] = ACTIONS(4992), - [anon_sym_noreturn] = ACTIONS(4992), - [anon_sym__Nonnull] = ACTIONS(4992), - [anon_sym_mutable] = ACTIONS(4992), - [anon_sym_constinit] = ACTIONS(4992), - [anon_sym_consteval] = ACTIONS(4992), - [anon_sym_alignas] = ACTIONS(4992), - [anon_sym__Alignas] = ACTIONS(4992), - [anon_sym_QMARK] = ACTIONS(4994), - [anon_sym_STAR_EQ] = ACTIONS(4994), - [anon_sym_SLASH_EQ] = ACTIONS(4994), - [anon_sym_PERCENT_EQ] = ACTIONS(4994), - [anon_sym_PLUS_EQ] = ACTIONS(4994), - [anon_sym_DASH_EQ] = ACTIONS(4994), - [anon_sym_LT_LT_EQ] = ACTIONS(4994), - [anon_sym_GT_GT_EQ] = ACTIONS(4994), - [anon_sym_AMP_EQ] = ACTIONS(4994), - [anon_sym_CARET_EQ] = ACTIONS(4994), - [anon_sym_PIPE_EQ] = ACTIONS(4994), - [anon_sym_and_eq] = ACTIONS(4992), - [anon_sym_or_eq] = ACTIONS(4992), - [anon_sym_xor_eq] = ACTIONS(4992), - [anon_sym_LT_EQ_GT] = ACTIONS(4994), - [anon_sym_or] = ACTIONS(4992), - [anon_sym_and] = ACTIONS(4992), - [anon_sym_bitor] = ACTIONS(4992), - [anon_sym_xor] = ACTIONS(4992), - [anon_sym_bitand] = ACTIONS(4992), - [anon_sym_not_eq] = ACTIONS(4992), - [anon_sym_DASH_DASH] = ACTIONS(4994), - [anon_sym_PLUS_PLUS] = ACTIONS(4994), - [anon_sym_DOT] = ACTIONS(4992), - [anon_sym_DOT_STAR] = ACTIONS(4994), - [anon_sym_DASH_GT] = ACTIONS(4994), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4992), - [anon_sym_decltype] = ACTIONS(4992), - [anon_sym_template] = ACTIONS(4992), - [anon_sym_operator] = ACTIONS(4992), + [1573] = { + [sym_identifier] = ACTIONS(4976), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4978), + [anon_sym_COMMA] = ACTIONS(4978), + [anon_sym_RPAREN] = ACTIONS(4978), + [anon_sym_LPAREN2] = ACTIONS(4978), + [anon_sym_TILDE] = ACTIONS(4978), + [anon_sym_DASH] = ACTIONS(4976), + [anon_sym_PLUS] = ACTIONS(4976), + [anon_sym_STAR] = ACTIONS(4978), + [anon_sym_SLASH] = ACTIONS(4976), + [anon_sym_PERCENT] = ACTIONS(4978), + [anon_sym_PIPE_PIPE] = ACTIONS(4978), + [anon_sym_AMP_AMP] = ACTIONS(4978), + [anon_sym_PIPE] = ACTIONS(4976), + [anon_sym_CARET] = ACTIONS(4978), + [anon_sym_AMP] = ACTIONS(4976), + [anon_sym_EQ_EQ] = ACTIONS(4978), + [anon_sym_BANG_EQ] = ACTIONS(4978), + [anon_sym_GT] = ACTIONS(4976), + [anon_sym_GT_EQ] = ACTIONS(4978), + [anon_sym_LT_EQ] = ACTIONS(4976), + [anon_sym_LT] = ACTIONS(4976), + [anon_sym_LT_LT] = ACTIONS(4978), + [anon_sym_GT_GT] = ACTIONS(4978), + [anon_sym_SEMI] = ACTIONS(4978), + [anon_sym___extension__] = ACTIONS(4976), + [anon_sym_virtual] = ACTIONS(4976), + [anon_sym_extern] = ACTIONS(4976), + [anon_sym___attribute__] = ACTIONS(4976), + [anon_sym___attribute] = ACTIONS(4976), + [anon_sym_COLON] = ACTIONS(4976), + [anon_sym_COLON_COLON] = ACTIONS(4978), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4978), + [anon_sym___declspec] = ACTIONS(4976), + [anon_sym___based] = ACTIONS(4976), + [anon_sym___cdecl] = ACTIONS(4976), + [anon_sym___clrcall] = ACTIONS(4976), + [anon_sym___stdcall] = ACTIONS(4976), + [anon_sym___fastcall] = ACTIONS(4976), + [anon_sym___thiscall] = ACTIONS(4976), + [anon_sym___vectorcall] = ACTIONS(4976), + [anon_sym_LBRACE] = ACTIONS(4978), + [anon_sym_RBRACE] = ACTIONS(4978), + [anon_sym_LBRACK] = ACTIONS(4976), + [anon_sym_static] = ACTIONS(4976), + [anon_sym_RBRACK] = ACTIONS(4978), + [anon_sym_EQ] = ACTIONS(4976), + [anon_sym_register] = ACTIONS(4976), + [anon_sym_inline] = ACTIONS(4976), + [anon_sym___inline] = ACTIONS(4976), + [anon_sym___inline__] = ACTIONS(4976), + [anon_sym___forceinline] = ACTIONS(4976), + [anon_sym_thread_local] = ACTIONS(4976), + [anon_sym___thread] = ACTIONS(4976), + [anon_sym_const] = ACTIONS(4976), + [anon_sym_constexpr] = ACTIONS(4976), + [anon_sym_volatile] = ACTIONS(4976), + [anon_sym_restrict] = ACTIONS(4976), + [anon_sym___restrict__] = ACTIONS(4976), + [anon_sym__Atomic] = ACTIONS(4976), + [anon_sym__Noreturn] = ACTIONS(4976), + [anon_sym_noreturn] = ACTIONS(4976), + [anon_sym__Nonnull] = ACTIONS(4976), + [anon_sym_mutable] = ACTIONS(4976), + [anon_sym_constinit] = ACTIONS(4976), + [anon_sym_consteval] = ACTIONS(4976), + [anon_sym_alignas] = ACTIONS(4976), + [anon_sym__Alignas] = ACTIONS(4976), + [anon_sym_QMARK] = ACTIONS(4978), + [anon_sym_LT_EQ_GT] = ACTIONS(4978), + [anon_sym_or] = ACTIONS(4976), + [anon_sym_and] = ACTIONS(4976), + [anon_sym_bitor] = ACTIONS(4976), + [anon_sym_xor] = ACTIONS(4976), + [anon_sym_bitand] = ACTIONS(4976), + [anon_sym_not_eq] = ACTIONS(4976), + [anon_sym_DASH_DASH] = ACTIONS(4978), + [anon_sym_PLUS_PLUS] = ACTIONS(4978), + [anon_sym_asm] = ACTIONS(4976), + [anon_sym___asm__] = ACTIONS(4976), + [anon_sym___asm] = ACTIONS(4976), + [anon_sym_DOT] = ACTIONS(4976), + [anon_sym_DOT_STAR] = ACTIONS(4978), + [anon_sym_DASH_GT] = ACTIONS(4978), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4976), + [anon_sym_decltype] = ACTIONS(4976), + [anon_sym_final] = ACTIONS(4976), + [anon_sym_override] = ACTIONS(4976), + [anon_sym_template] = ACTIONS(4976), + [anon_sym_operator] = ACTIONS(4976), + [anon_sym_try] = ACTIONS(4976), + [anon_sym_noexcept] = ACTIONS(4976), + [anon_sym_throw] = ACTIONS(4976), + [anon_sym_requires] = ACTIONS(4976), }, - [1546] = { - [sym_identifier] = ACTIONS(4996), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4998), - [anon_sym_COMMA] = ACTIONS(4998), - [anon_sym_LPAREN2] = ACTIONS(5000), - [anon_sym_TILDE] = ACTIONS(5003), - [anon_sym_DASH] = ACTIONS(5005), - [anon_sym_PLUS] = ACTIONS(5005), - [anon_sym_STAR] = ACTIONS(5007), - [anon_sym_SLASH] = ACTIONS(5005), - [anon_sym_PERCENT] = ACTIONS(5005), - [anon_sym_PIPE_PIPE] = ACTIONS(4998), - [anon_sym_AMP_AMP] = ACTIONS(5000), - [anon_sym_PIPE] = ACTIONS(5005), - [anon_sym_CARET] = ACTIONS(5005), - [anon_sym_AMP] = ACTIONS(5007), - [anon_sym_EQ_EQ] = ACTIONS(4998), - [anon_sym_BANG_EQ] = ACTIONS(4998), - [anon_sym_GT] = ACTIONS(5005), - [anon_sym_GT_EQ] = ACTIONS(4998), - [anon_sym_LT_EQ] = ACTIONS(5005), - [anon_sym_LT] = ACTIONS(5005), - [anon_sym_LT_LT] = ACTIONS(5005), - [anon_sym_GT_GT] = ACTIONS(5005), - [anon_sym_SEMI] = ACTIONS(5000), - [anon_sym___extension__] = ACTIONS(4996), - [anon_sym_virtual] = ACTIONS(4996), - [anon_sym_extern] = ACTIONS(4996), - [anon_sym___attribute__] = ACTIONS(4996), - [anon_sym___attribute] = ACTIONS(4996), - [anon_sym_COLON_COLON] = ACTIONS(5003), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5000), - [anon_sym___declspec] = ACTIONS(4996), - [anon_sym___based] = ACTIONS(4996), - [anon_sym___cdecl] = ACTIONS(4996), - [anon_sym___clrcall] = ACTIONS(4996), - [anon_sym___stdcall] = ACTIONS(4996), - [anon_sym___fastcall] = ACTIONS(4996), - [anon_sym___thiscall] = ACTIONS(4996), - [anon_sym___vectorcall] = ACTIONS(4996), - [anon_sym_LBRACE] = ACTIONS(5003), - [anon_sym_RBRACE] = ACTIONS(4998), - [anon_sym_LBRACK] = ACTIONS(5007), - [anon_sym_static] = ACTIONS(4996), - [anon_sym_EQ] = ACTIONS(5005), - [anon_sym_register] = ACTIONS(4996), - [anon_sym_inline] = ACTIONS(4996), - [anon_sym___inline] = ACTIONS(4996), - [anon_sym___inline__] = ACTIONS(4996), - [anon_sym___forceinline] = ACTIONS(4996), - [anon_sym_thread_local] = ACTIONS(4996), - [anon_sym___thread] = ACTIONS(4996), - [anon_sym_const] = ACTIONS(4996), - [anon_sym_constexpr] = ACTIONS(4996), - [anon_sym_volatile] = ACTIONS(4996), - [anon_sym_restrict] = ACTIONS(4996), - [anon_sym___restrict__] = ACTIONS(4996), - [anon_sym__Atomic] = ACTIONS(4996), - [anon_sym__Noreturn] = ACTIONS(4996), - [anon_sym_noreturn] = ACTIONS(4996), - [anon_sym__Nonnull] = ACTIONS(4996), - [anon_sym_mutable] = ACTIONS(4996), - [anon_sym_constinit] = ACTIONS(4996), - [anon_sym_consteval] = ACTIONS(4996), - [anon_sym_alignas] = ACTIONS(4996), - [anon_sym__Alignas] = ACTIONS(4996), - [anon_sym_QMARK] = ACTIONS(4998), - [anon_sym_STAR_EQ] = ACTIONS(4998), - [anon_sym_SLASH_EQ] = ACTIONS(4998), - [anon_sym_PERCENT_EQ] = ACTIONS(4998), - [anon_sym_PLUS_EQ] = ACTIONS(4998), - [anon_sym_DASH_EQ] = ACTIONS(4998), - [anon_sym_LT_LT_EQ] = ACTIONS(4998), - [anon_sym_GT_GT_EQ] = ACTIONS(4998), - [anon_sym_AMP_EQ] = ACTIONS(4998), - [anon_sym_CARET_EQ] = ACTIONS(4998), - [anon_sym_PIPE_EQ] = ACTIONS(4998), - [anon_sym_and_eq] = ACTIONS(5005), - [anon_sym_or_eq] = ACTIONS(5005), - [anon_sym_xor_eq] = ACTIONS(5005), - [anon_sym_LT_EQ_GT] = ACTIONS(4998), - [anon_sym_or] = ACTIONS(5005), - [anon_sym_and] = ACTIONS(5005), - [anon_sym_bitor] = ACTIONS(5005), - [anon_sym_xor] = ACTIONS(5005), - [anon_sym_bitand] = ACTIONS(5005), - [anon_sym_not_eq] = ACTIONS(5005), - [anon_sym_DASH_DASH] = ACTIONS(4998), - [anon_sym_PLUS_PLUS] = ACTIONS(4998), - [anon_sym_DOT] = ACTIONS(5005), - [anon_sym_DOT_STAR] = ACTIONS(4998), - [anon_sym_DASH_GT] = ACTIONS(4998), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4996), - [anon_sym_decltype] = ACTIONS(4996), - [anon_sym_template] = ACTIONS(4996), - [anon_sym_operator] = ACTIONS(4996), + [1574] = { + [sym_identifier] = ACTIONS(5006), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5008), + [anon_sym_COMMA] = ACTIONS(5008), + [anon_sym_RPAREN] = ACTIONS(5008), + [anon_sym_LPAREN2] = ACTIONS(5008), + [anon_sym_TILDE] = ACTIONS(5008), + [anon_sym_DASH] = ACTIONS(5006), + [anon_sym_PLUS] = ACTIONS(5006), + [anon_sym_STAR] = ACTIONS(5008), + [anon_sym_SLASH] = ACTIONS(5006), + [anon_sym_PERCENT] = ACTIONS(5008), + [anon_sym_PIPE_PIPE] = ACTIONS(5008), + [anon_sym_AMP_AMP] = ACTIONS(5008), + [anon_sym_PIPE] = ACTIONS(5006), + [anon_sym_CARET] = ACTIONS(5008), + [anon_sym_AMP] = ACTIONS(5006), + [anon_sym_EQ_EQ] = ACTIONS(5008), + [anon_sym_BANG_EQ] = ACTIONS(5008), + [anon_sym_GT] = ACTIONS(5006), + [anon_sym_GT_EQ] = ACTIONS(5008), + [anon_sym_LT_EQ] = ACTIONS(5006), + [anon_sym_LT] = ACTIONS(5006), + [anon_sym_LT_LT] = ACTIONS(5008), + [anon_sym_GT_GT] = ACTIONS(5008), + [anon_sym_SEMI] = ACTIONS(5008), + [anon_sym___extension__] = ACTIONS(5006), + [anon_sym_virtual] = ACTIONS(5006), + [anon_sym_extern] = ACTIONS(5006), + [anon_sym___attribute__] = ACTIONS(5006), + [anon_sym___attribute] = ACTIONS(5006), + [anon_sym_COLON] = ACTIONS(5006), + [anon_sym_COLON_COLON] = ACTIONS(5008), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5008), + [anon_sym___declspec] = ACTIONS(5006), + [anon_sym___based] = ACTIONS(5006), + [anon_sym___cdecl] = ACTIONS(5006), + [anon_sym___clrcall] = ACTIONS(5006), + [anon_sym___stdcall] = ACTIONS(5006), + [anon_sym___fastcall] = ACTIONS(5006), + [anon_sym___thiscall] = ACTIONS(5006), + [anon_sym___vectorcall] = ACTIONS(5006), + [anon_sym_LBRACE] = ACTIONS(5008), + [anon_sym_RBRACE] = ACTIONS(5008), + [anon_sym_LBRACK] = ACTIONS(5006), + [anon_sym_static] = ACTIONS(5006), + [anon_sym_RBRACK] = ACTIONS(5008), + [anon_sym_EQ] = ACTIONS(5006), + [anon_sym_register] = ACTIONS(5006), + [anon_sym_inline] = ACTIONS(5006), + [anon_sym___inline] = ACTIONS(5006), + [anon_sym___inline__] = ACTIONS(5006), + [anon_sym___forceinline] = ACTIONS(5006), + [anon_sym_thread_local] = ACTIONS(5006), + [anon_sym___thread] = ACTIONS(5006), + [anon_sym_const] = ACTIONS(5006), + [anon_sym_constexpr] = ACTIONS(5006), + [anon_sym_volatile] = ACTIONS(5006), + [anon_sym_restrict] = ACTIONS(5006), + [anon_sym___restrict__] = ACTIONS(5006), + [anon_sym__Atomic] = ACTIONS(5006), + [anon_sym__Noreturn] = ACTIONS(5006), + [anon_sym_noreturn] = ACTIONS(5006), + [anon_sym__Nonnull] = ACTIONS(5006), + [anon_sym_mutable] = ACTIONS(5006), + [anon_sym_constinit] = ACTIONS(5006), + [anon_sym_consteval] = ACTIONS(5006), + [anon_sym_alignas] = ACTIONS(5006), + [anon_sym__Alignas] = ACTIONS(5006), + [anon_sym_QMARK] = ACTIONS(5008), + [anon_sym_LT_EQ_GT] = ACTIONS(5008), + [anon_sym_or] = ACTIONS(5006), + [anon_sym_and] = ACTIONS(5006), + [anon_sym_bitor] = ACTIONS(5006), + [anon_sym_xor] = ACTIONS(5006), + [anon_sym_bitand] = ACTIONS(5006), + [anon_sym_not_eq] = ACTIONS(5006), + [anon_sym_DASH_DASH] = ACTIONS(5008), + [anon_sym_PLUS_PLUS] = ACTIONS(5008), + [anon_sym_asm] = ACTIONS(5006), + [anon_sym___asm__] = ACTIONS(5006), + [anon_sym___asm] = ACTIONS(5006), + [anon_sym_DOT] = ACTIONS(5006), + [anon_sym_DOT_STAR] = ACTIONS(5008), + [anon_sym_DASH_GT] = ACTIONS(5008), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5006), + [anon_sym_decltype] = ACTIONS(5006), + [anon_sym_final] = ACTIONS(5006), + [anon_sym_override] = ACTIONS(5006), + [anon_sym_template] = ACTIONS(5006), + [anon_sym_operator] = ACTIONS(5006), + [anon_sym_try] = ACTIONS(5006), + [anon_sym_noexcept] = ACTIONS(5006), + [anon_sym_throw] = ACTIONS(5006), + [anon_sym_requires] = ACTIONS(5006), }, - [1547] = { - [sym__declaration_modifiers] = STATE(2061), - [sym__declaration_specifiers] = STATE(3966), - [sym_attribute_specifier] = STATE(2061), - [sym_attribute_declaration] = STATE(2061), - [sym_ms_declspec_modifier] = STATE(2061), - [sym_ms_call_modifier] = STATE(6311), - [sym__abstract_declarator] = STATE(6870), - [sym_abstract_parenthesized_declarator] = STATE(6092), - [sym_abstract_pointer_declarator] = STATE(6092), - [sym_abstract_function_declarator] = STATE(6092), - [sym_abstract_array_declarator] = STATE(6092), - [sym_storage_class_specifier] = STATE(2061), - [sym_type_qualifier] = STATE(2061), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_parameter_list] = STATE(3004), - [sym_parameter_declaration] = STATE(7399), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym_dependent_type] = STATE(2523), - [sym_optional_parameter_declaration] = STATE(7399), - [sym_variadic_parameter_declaration] = STATE(7399), - [sym_abstract_reference_declarator] = STATE(6092), - [sym__function_declarator_seq] = STATE(6087), - [sym_template_type] = STATE(2406), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(6606), - [sym_qualified_type_identifier] = STATE(3015), - [aux_sym__declaration_specifiers_repeat1] = STATE(2061), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [sym_identifier] = ACTIONS(5010), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1928), - [anon_sym_RPAREN] = ACTIONS(4296), - [anon_sym_LPAREN2] = ACTIONS(5012), - [anon_sym_STAR] = ACTIONS(5014), + [1575] = { + [sym_identifier] = ACTIONS(5014), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5016), + [anon_sym_COMMA] = ACTIONS(5016), + [anon_sym_RPAREN] = ACTIONS(5016), + [anon_sym_LPAREN2] = ACTIONS(5016), + [anon_sym_TILDE] = ACTIONS(5016), + [anon_sym_DASH] = ACTIONS(5014), + [anon_sym_PLUS] = ACTIONS(5014), + [anon_sym_STAR] = ACTIONS(5016), + [anon_sym_SLASH] = ACTIONS(5014), + [anon_sym_PERCENT] = ACTIONS(5016), + [anon_sym_PIPE_PIPE] = ACTIONS(5016), [anon_sym_AMP_AMP] = ACTIONS(5016), - [anon_sym_AMP] = ACTIONS(5018), + [anon_sym_PIPE] = ACTIONS(5014), + [anon_sym_CARET] = ACTIONS(5016), + [anon_sym_AMP] = ACTIONS(5014), + [anon_sym_EQ_EQ] = ACTIONS(5016), + [anon_sym_BANG_EQ] = ACTIONS(5016), + [anon_sym_GT] = ACTIONS(5014), + [anon_sym_GT_EQ] = ACTIONS(5016), + [anon_sym_LT_EQ] = ACTIONS(5014), + [anon_sym_LT] = ACTIONS(5014), + [anon_sym_LT_LT] = ACTIONS(5016), + [anon_sym_GT_GT] = ACTIONS(5016), + [anon_sym_SEMI] = ACTIONS(5016), + [anon_sym___extension__] = ACTIONS(5014), + [anon_sym_virtual] = ACTIONS(5014), + [anon_sym_extern] = ACTIONS(5014), + [anon_sym___attribute__] = ACTIONS(5014), + [anon_sym___attribute] = ACTIONS(5014), + [anon_sym_COLON] = ACTIONS(5014), + [anon_sym_COLON_COLON] = ACTIONS(5016), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5016), + [anon_sym___declspec] = ACTIONS(5014), + [anon_sym___based] = ACTIONS(5014), + [anon_sym___cdecl] = ACTIONS(5014), + [anon_sym___clrcall] = ACTIONS(5014), + [anon_sym___stdcall] = ACTIONS(5014), + [anon_sym___fastcall] = ACTIONS(5014), + [anon_sym___thiscall] = ACTIONS(5014), + [anon_sym___vectorcall] = ACTIONS(5014), + [anon_sym_LBRACE] = ACTIONS(5016), + [anon_sym_RBRACE] = ACTIONS(5016), + [anon_sym_LBRACK] = ACTIONS(5014), + [anon_sym_static] = ACTIONS(5014), + [anon_sym_RBRACK] = ACTIONS(5016), + [anon_sym_EQ] = ACTIONS(5014), + [anon_sym_register] = ACTIONS(5014), + [anon_sym_inline] = ACTIONS(5014), + [anon_sym___inline] = ACTIONS(5014), + [anon_sym___inline__] = ACTIONS(5014), + [anon_sym___forceinline] = ACTIONS(5014), + [anon_sym_thread_local] = ACTIONS(5014), + [anon_sym___thread] = ACTIONS(5014), + [anon_sym_const] = ACTIONS(5014), + [anon_sym_constexpr] = ACTIONS(5014), + [anon_sym_volatile] = ACTIONS(5014), + [anon_sym_restrict] = ACTIONS(5014), + [anon_sym___restrict__] = ACTIONS(5014), + [anon_sym__Atomic] = ACTIONS(5014), + [anon_sym__Noreturn] = ACTIONS(5014), + [anon_sym_noreturn] = ACTIONS(5014), + [anon_sym__Nonnull] = ACTIONS(5014), + [anon_sym_mutable] = ACTIONS(5014), + [anon_sym_constinit] = ACTIONS(5014), + [anon_sym_consteval] = ACTIONS(5014), + [anon_sym_alignas] = ACTIONS(5014), + [anon_sym__Alignas] = ACTIONS(5014), + [anon_sym_QMARK] = ACTIONS(5016), + [anon_sym_LT_EQ_GT] = ACTIONS(5016), + [anon_sym_or] = ACTIONS(5014), + [anon_sym_and] = ACTIONS(5014), + [anon_sym_bitor] = ACTIONS(5014), + [anon_sym_xor] = ACTIONS(5014), + [anon_sym_bitand] = ACTIONS(5014), + [anon_sym_not_eq] = ACTIONS(5014), + [anon_sym_DASH_DASH] = ACTIONS(5016), + [anon_sym_PLUS_PLUS] = ACTIONS(5016), + [anon_sym_asm] = ACTIONS(5014), + [anon_sym___asm__] = ACTIONS(5014), + [anon_sym___asm] = ACTIONS(5014), + [anon_sym_DOT] = ACTIONS(5014), + [anon_sym_DOT_STAR] = ACTIONS(5016), + [anon_sym_DASH_GT] = ACTIONS(5016), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5014), + [anon_sym_decltype] = ACTIONS(5014), + [anon_sym_final] = ACTIONS(5014), + [anon_sym_override] = ACTIONS(5014), + [anon_sym_template] = ACTIONS(5014), + [anon_sym_operator] = ACTIONS(5014), + [anon_sym_try] = ACTIONS(5014), + [anon_sym_noexcept] = ACTIONS(5014), + [anon_sym_throw] = ACTIONS(5014), + [anon_sym_requires] = ACTIONS(5014), + }, + [1576] = { + [sym__declaration_modifiers] = STATE(2121), + [sym__declaration_specifiers] = STATE(3995), + [sym_attribute_specifier] = STATE(2121), + [sym_attribute_declaration] = STATE(2121), + [sym_ms_declspec_modifier] = STATE(2121), + [sym_ms_call_modifier] = STATE(6402), + [sym__abstract_declarator] = STATE(7022), + [sym_abstract_parenthesized_declarator] = STATE(6099), + [sym_abstract_pointer_declarator] = STATE(6099), + [sym_abstract_function_declarator] = STATE(6099), + [sym_abstract_array_declarator] = STATE(6099), + [sym_storage_class_specifier] = STATE(2121), + [sym_type_qualifier] = STATE(2121), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_parameter_list] = STATE(3113), + [sym_parameter_declaration] = STATE(7297), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym_dependent_type] = STATE(2558), + [sym_optional_parameter_declaration] = STATE(7297), + [sym_variadic_parameter_declaration] = STATE(7297), + [sym_abstract_reference_declarator] = STATE(6099), + [sym__function_declarator_seq] = STATE(6109), + [sym_template_type] = STATE(2439), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(6746), + [sym_qualified_type_identifier] = STATE(3138), + [aux_sym__declaration_specifiers_repeat1] = STATE(2121), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(5018), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1866), + [anon_sym_RPAREN] = ACTIONS(4308), + [anon_sym_LPAREN2] = ACTIONS(5020), + [anon_sym_STAR] = ACTIONS(5022), + [anon_sym_AMP_AMP] = ACTIONS(5024), + [anon_sym_AMP] = ACTIONS(5026), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1878), + [anon_sym_virtual] = ACTIONS(1870), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5020), + [anon_sym_COLON_COLON] = ACTIONS(5028), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), - [anon_sym___cdecl] = ACTIONS(1808), - [anon_sym___clrcall] = ACTIONS(1808), - [anon_sym___stdcall] = ACTIONS(1808), - [anon_sym___fastcall] = ACTIONS(1808), - [anon_sym___thiscall] = ACTIONS(1808), - [anon_sym___vectorcall] = ACTIONS(1808), + [anon_sym___cdecl] = ACTIONS(1806), + [anon_sym___clrcall] = ACTIONS(1806), + [anon_sym___stdcall] = ACTIONS(1806), + [anon_sym___fastcall] = ACTIONS(1806), + [anon_sym___thiscall] = ACTIONS(1806), + [anon_sym___vectorcall] = ACTIONS(1806), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(5022), + [anon_sym_LBRACK] = ACTIONS(5030), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -234263,80 +238142,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2999), - [anon_sym_enum] = ACTIONS(1884), - [anon_sym_class] = ACTIONS(1886), - [anon_sym_struct] = ACTIONS(1888), - [anon_sym_union] = ACTIONS(1890), + [sym_primitive_type] = ACTIONS(3019), + [anon_sym_enum] = ACTIONS(1874), + [anon_sym_class] = ACTIONS(1876), + [anon_sym_struct] = ACTIONS(1878), + [anon_sym_union] = ACTIONS(1880), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(1914), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_typename] = ACTIONS(1882), + [anon_sym_template] = ACTIONS(1268), }, - [1548] = { - [sym__declaration_modifiers] = STATE(2061), - [sym__declaration_specifiers] = STATE(3966), - [sym_attribute_specifier] = STATE(2061), - [sym_attribute_declaration] = STATE(2061), - [sym_ms_declspec_modifier] = STATE(2061), - [sym_ms_call_modifier] = STATE(6282), - [sym__abstract_declarator] = STATE(6904), - [sym_abstract_parenthesized_declarator] = STATE(6092), - [sym_abstract_pointer_declarator] = STATE(6092), - [sym_abstract_function_declarator] = STATE(6092), - [sym_abstract_array_declarator] = STATE(6092), - [sym_storage_class_specifier] = STATE(2061), - [sym_type_qualifier] = STATE(2061), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_parameter_list] = STATE(3004), - [sym_parameter_declaration] = STATE(7399), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym_dependent_type] = STATE(2523), - [sym_optional_parameter_declaration] = STATE(7399), - [sym_variadic_parameter_declaration] = STATE(7399), - [sym_abstract_reference_declarator] = STATE(6092), - [sym__function_declarator_seq] = STATE(6087), - [sym_template_type] = STATE(2406), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(6606), - [sym_qualified_type_identifier] = STATE(3015), - [aux_sym__declaration_specifiers_repeat1] = STATE(2061), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [sym_identifier] = ACTIONS(5010), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1928), - [anon_sym_RPAREN] = ACTIONS(4296), - [anon_sym_LPAREN2] = ACTIONS(5012), - [anon_sym_STAR] = ACTIONS(5014), - [anon_sym_AMP_AMP] = ACTIONS(5016), - [anon_sym_AMP] = ACTIONS(5018), + [1577] = { + [sym__declaration_modifiers] = STATE(2121), + [sym__declaration_specifiers] = STATE(3995), + [sym_attribute_specifier] = STATE(2121), + [sym_attribute_declaration] = STATE(2121), + [sym_ms_declspec_modifier] = STATE(2121), + [sym_ms_call_modifier] = STATE(6414), + [sym__abstract_declarator] = STATE(6954), + [sym_abstract_parenthesized_declarator] = STATE(6099), + [sym_abstract_pointer_declarator] = STATE(6099), + [sym_abstract_function_declarator] = STATE(6099), + [sym_abstract_array_declarator] = STATE(6099), + [sym_storage_class_specifier] = STATE(2121), + [sym_type_qualifier] = STATE(2121), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_parameter_list] = STATE(3113), + [sym_parameter_declaration] = STATE(7297), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym_dependent_type] = STATE(2558), + [sym_optional_parameter_declaration] = STATE(7297), + [sym_variadic_parameter_declaration] = STATE(7297), + [sym_abstract_reference_declarator] = STATE(6099), + [sym__function_declarator_seq] = STATE(6109), + [sym_template_type] = STATE(2439), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(6746), + [sym_qualified_type_identifier] = STATE(3138), + [aux_sym__declaration_specifiers_repeat1] = STATE(2121), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(5018), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1866), + [anon_sym_RPAREN] = ACTIONS(4308), + [anon_sym_LPAREN2] = ACTIONS(5020), + [anon_sym_STAR] = ACTIONS(5022), + [anon_sym_AMP_AMP] = ACTIONS(5024), + [anon_sym_AMP] = ACTIONS(5026), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1878), + [anon_sym_virtual] = ACTIONS(1870), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5020), + [anon_sym_COLON_COLON] = ACTIONS(5028), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), - [anon_sym___cdecl] = ACTIONS(1808), - [anon_sym___clrcall] = ACTIONS(1808), - [anon_sym___stdcall] = ACTIONS(1808), - [anon_sym___fastcall] = ACTIONS(1808), - [anon_sym___thiscall] = ACTIONS(1808), - [anon_sym___vectorcall] = ACTIONS(1808), + [anon_sym___cdecl] = ACTIONS(1806), + [anon_sym___clrcall] = ACTIONS(1806), + [anon_sym___stdcall] = ACTIONS(1806), + [anon_sym___fastcall] = ACTIONS(1806), + [anon_sym___thiscall] = ACTIONS(1806), + [anon_sym___vectorcall] = ACTIONS(1806), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(5022), + [anon_sym_LBRACK] = ACTIONS(5030), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -234359,354 +238238,354 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2999), - [anon_sym_enum] = ACTIONS(1884), - [anon_sym_class] = ACTIONS(1886), - [anon_sym_struct] = ACTIONS(1888), - [anon_sym_union] = ACTIONS(1890), + [sym_primitive_type] = ACTIONS(3019), + [anon_sym_enum] = ACTIONS(1874), + [anon_sym_class] = ACTIONS(1876), + [anon_sym_struct] = ACTIONS(1878), + [anon_sym_union] = ACTIONS(1880), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(1914), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_typename] = ACTIONS(1882), + [anon_sym_template] = ACTIONS(1268), }, - [1549] = { - [sym_identifier] = ACTIONS(3282), - [anon_sym_LPAREN2] = ACTIONS(3287), - [anon_sym_BANG] = ACTIONS(3287), - [anon_sym_TILDE] = ACTIONS(3287), - [anon_sym_DASH] = ACTIONS(3282), - [anon_sym_PLUS] = ACTIONS(3282), - [anon_sym_STAR] = ACTIONS(3287), - [anon_sym_AMP] = ACTIONS(3287), - [anon_sym___extension__] = ACTIONS(3282), - [anon_sym_virtual] = ACTIONS(3282), - [anon_sym_extern] = ACTIONS(3282), - [anon_sym___attribute__] = ACTIONS(3282), - [anon_sym___attribute] = ACTIONS(3282), - [anon_sym_COLON_COLON] = ACTIONS(3287), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3287), - [anon_sym___declspec] = ACTIONS(3282), - [anon_sym_signed] = ACTIONS(3282), - [anon_sym_unsigned] = ACTIONS(3282), - [anon_sym_long] = ACTIONS(3282), - [anon_sym_short] = ACTIONS(3282), - [anon_sym_LBRACK] = ACTIONS(3282), - [anon_sym_static] = ACTIONS(3282), - [anon_sym_register] = ACTIONS(3282), - [anon_sym_inline] = ACTIONS(3282), - [anon_sym___inline] = ACTIONS(3282), - [anon_sym___inline__] = ACTIONS(3282), - [anon_sym___forceinline] = ACTIONS(3282), - [anon_sym_thread_local] = ACTIONS(3282), - [anon_sym___thread] = ACTIONS(3282), - [anon_sym_const] = ACTIONS(3282), - [anon_sym_constexpr] = ACTIONS(3282), - [anon_sym_volatile] = ACTIONS(3282), - [anon_sym_restrict] = ACTIONS(3282), - [anon_sym___restrict__] = ACTIONS(3282), - [anon_sym__Atomic] = ACTIONS(3282), - [anon_sym__Noreturn] = ACTIONS(3282), - [anon_sym_noreturn] = ACTIONS(3282), - [anon_sym__Nonnull] = ACTIONS(3282), - [anon_sym_mutable] = ACTIONS(3282), - [anon_sym_constinit] = ACTIONS(3282), - [anon_sym_consteval] = ACTIONS(3282), - [anon_sym_alignas] = ACTIONS(3282), - [anon_sym__Alignas] = ACTIONS(3282), - [sym_primitive_type] = ACTIONS(3282), - [anon_sym_enum] = ACTIONS(3282), - [anon_sym_class] = ACTIONS(3282), - [anon_sym_struct] = ACTIONS(3282), - [anon_sym_union] = ACTIONS(3282), - [anon_sym_not] = ACTIONS(3282), - [anon_sym_compl] = ACTIONS(3282), - [anon_sym_DASH_DASH] = ACTIONS(3287), - [anon_sym_PLUS_PLUS] = ACTIONS(3287), - [anon_sym_sizeof] = ACTIONS(3282), - [anon_sym___alignof__] = ACTIONS(3282), - [anon_sym___alignof] = ACTIONS(3282), - [anon_sym__alignof] = ACTIONS(3282), - [anon_sym_alignof] = ACTIONS(3282), - [anon_sym__Alignof] = ACTIONS(3282), - [anon_sym_offsetof] = ACTIONS(3282), - [anon_sym__Generic] = ACTIONS(3282), - [anon_sym_asm] = ACTIONS(3282), - [anon_sym___asm__] = ACTIONS(3282), - [anon_sym___asm] = ACTIONS(3282), - [sym_number_literal] = ACTIONS(3287), - [anon_sym_L_SQUOTE] = ACTIONS(3287), - [anon_sym_u_SQUOTE] = ACTIONS(3287), - [anon_sym_U_SQUOTE] = ACTIONS(3287), - [anon_sym_u8_SQUOTE] = ACTIONS(3287), - [anon_sym_SQUOTE] = ACTIONS(3287), - [anon_sym_L_DQUOTE] = ACTIONS(3287), - [anon_sym_u_DQUOTE] = ACTIONS(3287), - [anon_sym_U_DQUOTE] = ACTIONS(3287), - [anon_sym_u8_DQUOTE] = ACTIONS(3287), - [anon_sym_DQUOTE] = ACTIONS(3287), - [sym_true] = ACTIONS(3282), - [sym_false] = ACTIONS(3282), - [anon_sym_NULL] = ACTIONS(3282), - [anon_sym_nullptr] = ACTIONS(3282), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3282), - [anon_sym_decltype] = ACTIONS(3282), - [anon_sym_typename] = ACTIONS(3282), - [anon_sym_template] = ACTIONS(3282), - [anon_sym_delete] = ACTIONS(3282), - [anon_sym_R_DQUOTE] = ACTIONS(3287), - [anon_sym_LR_DQUOTE] = ACTIONS(3287), - [anon_sym_uR_DQUOTE] = ACTIONS(3287), - [anon_sym_UR_DQUOTE] = ACTIONS(3287), - [anon_sym_u8R_DQUOTE] = ACTIONS(3287), - [anon_sym_co_await] = ACTIONS(3282), - [anon_sym_new] = ACTIONS(3282), - [anon_sym_requires] = ACTIONS(3282), - [sym_this] = ACTIONS(3282), + [1578] = { + [sym_identifier] = ACTIONS(3290), + [anon_sym_LPAREN2] = ACTIONS(3295), + [anon_sym_BANG] = ACTIONS(3295), + [anon_sym_TILDE] = ACTIONS(3295), + [anon_sym_DASH] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3290), + [anon_sym_STAR] = ACTIONS(3295), + [anon_sym_AMP] = ACTIONS(3295), + [anon_sym___extension__] = ACTIONS(3290), + [anon_sym_virtual] = ACTIONS(3290), + [anon_sym_extern] = ACTIONS(3290), + [anon_sym___attribute__] = ACTIONS(3290), + [anon_sym___attribute] = ACTIONS(3290), + [anon_sym_COLON_COLON] = ACTIONS(3295), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3295), + [anon_sym___declspec] = ACTIONS(3290), + [anon_sym_signed] = ACTIONS(3290), + [anon_sym_unsigned] = ACTIONS(3290), + [anon_sym_long] = ACTIONS(3290), + [anon_sym_short] = ACTIONS(3290), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_static] = ACTIONS(3290), + [anon_sym_register] = ACTIONS(3290), + [anon_sym_inline] = ACTIONS(3290), + [anon_sym___inline] = ACTIONS(3290), + [anon_sym___inline__] = ACTIONS(3290), + [anon_sym___forceinline] = ACTIONS(3290), + [anon_sym_thread_local] = ACTIONS(3290), + [anon_sym___thread] = ACTIONS(3290), + [anon_sym_const] = ACTIONS(3290), + [anon_sym_constexpr] = ACTIONS(3290), + [anon_sym_volatile] = ACTIONS(3290), + [anon_sym_restrict] = ACTIONS(3290), + [anon_sym___restrict__] = ACTIONS(3290), + [anon_sym__Atomic] = ACTIONS(3290), + [anon_sym__Noreturn] = ACTIONS(3290), + [anon_sym_noreturn] = ACTIONS(3290), + [anon_sym__Nonnull] = ACTIONS(3290), + [anon_sym_mutable] = ACTIONS(3290), + [anon_sym_constinit] = ACTIONS(3290), + [anon_sym_consteval] = ACTIONS(3290), + [anon_sym_alignas] = ACTIONS(3290), + [anon_sym__Alignas] = ACTIONS(3290), + [sym_primitive_type] = ACTIONS(3290), + [anon_sym_enum] = ACTIONS(3290), + [anon_sym_class] = ACTIONS(3290), + [anon_sym_struct] = ACTIONS(3290), + [anon_sym_union] = ACTIONS(3290), + [anon_sym_not] = ACTIONS(3290), + [anon_sym_compl] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3295), + [anon_sym_PLUS_PLUS] = ACTIONS(3295), + [anon_sym_sizeof] = ACTIONS(3290), + [anon_sym___alignof__] = ACTIONS(3290), + [anon_sym___alignof] = ACTIONS(3290), + [anon_sym__alignof] = ACTIONS(3290), + [anon_sym_alignof] = ACTIONS(3290), + [anon_sym__Alignof] = ACTIONS(3290), + [anon_sym_offsetof] = ACTIONS(3290), + [anon_sym__Generic] = ACTIONS(3290), + [anon_sym_asm] = ACTIONS(3290), + [anon_sym___asm__] = ACTIONS(3290), + [anon_sym___asm] = ACTIONS(3290), + [sym_number_literal] = ACTIONS(3295), + [anon_sym_L_SQUOTE] = ACTIONS(3295), + [anon_sym_u_SQUOTE] = ACTIONS(3295), + [anon_sym_U_SQUOTE] = ACTIONS(3295), + [anon_sym_u8_SQUOTE] = ACTIONS(3295), + [anon_sym_SQUOTE] = ACTIONS(3295), + [anon_sym_L_DQUOTE] = ACTIONS(3295), + [anon_sym_u_DQUOTE] = ACTIONS(3295), + [anon_sym_U_DQUOTE] = ACTIONS(3295), + [anon_sym_u8_DQUOTE] = ACTIONS(3295), + [anon_sym_DQUOTE] = ACTIONS(3295), + [sym_true] = ACTIONS(3290), + [sym_false] = ACTIONS(3290), + [anon_sym_NULL] = ACTIONS(3290), + [anon_sym_nullptr] = ACTIONS(3290), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3290), + [anon_sym_decltype] = ACTIONS(3290), + [anon_sym_typename] = ACTIONS(3290), + [anon_sym_template] = ACTIONS(3290), + [anon_sym_delete] = ACTIONS(3290), + [anon_sym_R_DQUOTE] = ACTIONS(3295), + [anon_sym_LR_DQUOTE] = ACTIONS(3295), + [anon_sym_uR_DQUOTE] = ACTIONS(3295), + [anon_sym_UR_DQUOTE] = ACTIONS(3295), + [anon_sym_u8R_DQUOTE] = ACTIONS(3295), + [anon_sym_co_await] = ACTIONS(3290), + [anon_sym_new] = ACTIONS(3290), + [anon_sym_requires] = ACTIONS(3290), + [sym_this] = ACTIONS(3290), }, - [1550] = { - [sym_identifier] = ACTIONS(2955), - [anon_sym_LPAREN2] = ACTIONS(2957), - [anon_sym_BANG] = ACTIONS(2957), - [anon_sym_TILDE] = ACTIONS(2957), - [anon_sym_DASH] = ACTIONS(2955), - [anon_sym_PLUS] = ACTIONS(2955), - [anon_sym_STAR] = ACTIONS(2957), - [anon_sym_AMP] = ACTIONS(2957), - [anon_sym___extension__] = ACTIONS(2955), - [anon_sym_virtual] = ACTIONS(2955), - [anon_sym_extern] = ACTIONS(2955), - [anon_sym___attribute__] = ACTIONS(2955), - [anon_sym___attribute] = ACTIONS(2955), - [anon_sym_COLON_COLON] = ACTIONS(2957), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2957), - [anon_sym___declspec] = ACTIONS(2955), - [anon_sym_signed] = ACTIONS(2955), - [anon_sym_unsigned] = ACTIONS(2955), - [anon_sym_long] = ACTIONS(2955), - [anon_sym_short] = ACTIONS(2955), - [anon_sym_LBRACK] = ACTIONS(2955), - [anon_sym_static] = ACTIONS(2955), - [anon_sym_register] = ACTIONS(2955), - [anon_sym_inline] = ACTIONS(2955), - [anon_sym___inline] = ACTIONS(2955), - [anon_sym___inline__] = ACTIONS(2955), - [anon_sym___forceinline] = ACTIONS(2955), - [anon_sym_thread_local] = ACTIONS(2955), - [anon_sym___thread] = ACTIONS(2955), - [anon_sym_const] = ACTIONS(2955), - [anon_sym_constexpr] = ACTIONS(2955), - [anon_sym_volatile] = ACTIONS(2955), - [anon_sym_restrict] = ACTIONS(2955), - [anon_sym___restrict__] = ACTIONS(2955), - [anon_sym__Atomic] = ACTIONS(2955), - [anon_sym__Noreturn] = ACTIONS(2955), - [anon_sym_noreturn] = ACTIONS(2955), - [anon_sym__Nonnull] = ACTIONS(2955), - [anon_sym_mutable] = ACTIONS(2955), - [anon_sym_constinit] = ACTIONS(2955), - [anon_sym_consteval] = ACTIONS(2955), - [anon_sym_alignas] = ACTIONS(2955), - [anon_sym__Alignas] = ACTIONS(2955), - [sym_primitive_type] = ACTIONS(2955), - [anon_sym_enum] = ACTIONS(2955), - [anon_sym_class] = ACTIONS(2955), - [anon_sym_struct] = ACTIONS(2955), - [anon_sym_union] = ACTIONS(2955), - [anon_sym_not] = ACTIONS(2955), - [anon_sym_compl] = ACTIONS(2955), - [anon_sym_DASH_DASH] = ACTIONS(2957), - [anon_sym_PLUS_PLUS] = ACTIONS(2957), - [anon_sym_sizeof] = ACTIONS(2955), - [anon_sym___alignof__] = ACTIONS(2955), - [anon_sym___alignof] = ACTIONS(2955), - [anon_sym__alignof] = ACTIONS(2955), - [anon_sym_alignof] = ACTIONS(2955), - [anon_sym__Alignof] = ACTIONS(2955), - [anon_sym_offsetof] = ACTIONS(2955), - [anon_sym__Generic] = ACTIONS(2955), - [anon_sym_asm] = ACTIONS(2955), - [anon_sym___asm__] = ACTIONS(2955), - [anon_sym___asm] = ACTIONS(2955), - [sym_number_literal] = ACTIONS(2957), - [anon_sym_L_SQUOTE] = ACTIONS(2957), - [anon_sym_u_SQUOTE] = ACTIONS(2957), - [anon_sym_U_SQUOTE] = ACTIONS(2957), - [anon_sym_u8_SQUOTE] = ACTIONS(2957), - [anon_sym_SQUOTE] = ACTIONS(2957), - [anon_sym_L_DQUOTE] = ACTIONS(2957), - [anon_sym_u_DQUOTE] = ACTIONS(2957), - [anon_sym_U_DQUOTE] = ACTIONS(2957), - [anon_sym_u8_DQUOTE] = ACTIONS(2957), - [anon_sym_DQUOTE] = ACTIONS(2957), - [sym_true] = ACTIONS(2955), - [sym_false] = ACTIONS(2955), - [anon_sym_NULL] = ACTIONS(2955), - [anon_sym_nullptr] = ACTIONS(2955), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2955), - [anon_sym_decltype] = ACTIONS(2955), - [anon_sym_typename] = ACTIONS(2955), - [anon_sym_template] = ACTIONS(2955), - [anon_sym_delete] = ACTIONS(2955), - [anon_sym_R_DQUOTE] = ACTIONS(2957), - [anon_sym_LR_DQUOTE] = ACTIONS(2957), - [anon_sym_uR_DQUOTE] = ACTIONS(2957), - [anon_sym_UR_DQUOTE] = ACTIONS(2957), - [anon_sym_u8R_DQUOTE] = ACTIONS(2957), - [anon_sym_co_await] = ACTIONS(2955), - [anon_sym_new] = ACTIONS(2955), - [anon_sym_requires] = ACTIONS(2955), - [sym_this] = ACTIONS(2955), + [1579] = { + [sym_identifier] = ACTIONS(2967), + [anon_sym_LPAREN2] = ACTIONS(2969), + [anon_sym_BANG] = ACTIONS(2969), + [anon_sym_TILDE] = ACTIONS(2969), + [anon_sym_DASH] = ACTIONS(2967), + [anon_sym_PLUS] = ACTIONS(2967), + [anon_sym_STAR] = ACTIONS(2969), + [anon_sym_AMP] = ACTIONS(2969), + [anon_sym___extension__] = ACTIONS(2967), + [anon_sym_virtual] = ACTIONS(2967), + [anon_sym_extern] = ACTIONS(2967), + [anon_sym___attribute__] = ACTIONS(2967), + [anon_sym___attribute] = ACTIONS(2967), + [anon_sym_COLON_COLON] = ACTIONS(2969), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2969), + [anon_sym___declspec] = ACTIONS(2967), + [anon_sym_signed] = ACTIONS(2967), + [anon_sym_unsigned] = ACTIONS(2967), + [anon_sym_long] = ACTIONS(2967), + [anon_sym_short] = ACTIONS(2967), + [anon_sym_LBRACK] = ACTIONS(2967), + [anon_sym_static] = ACTIONS(2967), + [anon_sym_register] = ACTIONS(2967), + [anon_sym_inline] = ACTIONS(2967), + [anon_sym___inline] = ACTIONS(2967), + [anon_sym___inline__] = ACTIONS(2967), + [anon_sym___forceinline] = ACTIONS(2967), + [anon_sym_thread_local] = ACTIONS(2967), + [anon_sym___thread] = ACTIONS(2967), + [anon_sym_const] = ACTIONS(2967), + [anon_sym_constexpr] = ACTIONS(2967), + [anon_sym_volatile] = ACTIONS(2967), + [anon_sym_restrict] = ACTIONS(2967), + [anon_sym___restrict__] = ACTIONS(2967), + [anon_sym__Atomic] = ACTIONS(2967), + [anon_sym__Noreturn] = ACTIONS(2967), + [anon_sym_noreturn] = ACTIONS(2967), + [anon_sym__Nonnull] = ACTIONS(2967), + [anon_sym_mutable] = ACTIONS(2967), + [anon_sym_constinit] = ACTIONS(2967), + [anon_sym_consteval] = ACTIONS(2967), + [anon_sym_alignas] = ACTIONS(2967), + [anon_sym__Alignas] = ACTIONS(2967), + [sym_primitive_type] = ACTIONS(2967), + [anon_sym_enum] = ACTIONS(2967), + [anon_sym_class] = ACTIONS(2967), + [anon_sym_struct] = ACTIONS(2967), + [anon_sym_union] = ACTIONS(2967), + [anon_sym_not] = ACTIONS(2967), + [anon_sym_compl] = ACTIONS(2967), + [anon_sym_DASH_DASH] = ACTIONS(2969), + [anon_sym_PLUS_PLUS] = ACTIONS(2969), + [anon_sym_sizeof] = ACTIONS(2967), + [anon_sym___alignof__] = ACTIONS(2967), + [anon_sym___alignof] = ACTIONS(2967), + [anon_sym__alignof] = ACTIONS(2967), + [anon_sym_alignof] = ACTIONS(2967), + [anon_sym__Alignof] = ACTIONS(2967), + [anon_sym_offsetof] = ACTIONS(2967), + [anon_sym__Generic] = ACTIONS(2967), + [anon_sym_asm] = ACTIONS(2967), + [anon_sym___asm__] = ACTIONS(2967), + [anon_sym___asm] = ACTIONS(2967), + [sym_number_literal] = ACTIONS(2969), + [anon_sym_L_SQUOTE] = ACTIONS(2969), + [anon_sym_u_SQUOTE] = ACTIONS(2969), + [anon_sym_U_SQUOTE] = ACTIONS(2969), + [anon_sym_u8_SQUOTE] = ACTIONS(2969), + [anon_sym_SQUOTE] = ACTIONS(2969), + [anon_sym_L_DQUOTE] = ACTIONS(2969), + [anon_sym_u_DQUOTE] = ACTIONS(2969), + [anon_sym_U_DQUOTE] = ACTIONS(2969), + [anon_sym_u8_DQUOTE] = ACTIONS(2969), + [anon_sym_DQUOTE] = ACTIONS(2969), + [sym_true] = ACTIONS(2967), + [sym_false] = ACTIONS(2967), + [anon_sym_NULL] = ACTIONS(2967), + [anon_sym_nullptr] = ACTIONS(2967), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2967), + [anon_sym_decltype] = ACTIONS(2967), + [anon_sym_typename] = ACTIONS(2967), + [anon_sym_template] = ACTIONS(2967), + [anon_sym_delete] = ACTIONS(2967), + [anon_sym_R_DQUOTE] = ACTIONS(2969), + [anon_sym_LR_DQUOTE] = ACTIONS(2969), + [anon_sym_uR_DQUOTE] = ACTIONS(2969), + [anon_sym_UR_DQUOTE] = ACTIONS(2969), + [anon_sym_u8R_DQUOTE] = ACTIONS(2969), + [anon_sym_co_await] = ACTIONS(2967), + [anon_sym_new] = ACTIONS(2967), + [anon_sym_requires] = ACTIONS(2967), + [sym_this] = ACTIONS(2967), }, - [1551] = { - [sym_identifier] = ACTIONS(3079), - [anon_sym_LPAREN2] = ACTIONS(3081), - [anon_sym_BANG] = ACTIONS(3081), - [anon_sym_TILDE] = ACTIONS(3081), - [anon_sym_DASH] = ACTIONS(3079), - [anon_sym_PLUS] = ACTIONS(3079), - [anon_sym_STAR] = ACTIONS(3081), - [anon_sym_AMP] = ACTIONS(3081), - [anon_sym___extension__] = ACTIONS(3079), - [anon_sym_virtual] = ACTIONS(3079), - [anon_sym_extern] = ACTIONS(3079), - [anon_sym___attribute__] = ACTIONS(3079), - [anon_sym___attribute] = ACTIONS(3079), - [anon_sym_COLON_COLON] = ACTIONS(3081), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3081), - [anon_sym___declspec] = ACTIONS(3079), - [anon_sym_signed] = ACTIONS(3079), - [anon_sym_unsigned] = ACTIONS(3079), - [anon_sym_long] = ACTIONS(3079), - [anon_sym_short] = ACTIONS(3079), - [anon_sym_LBRACK] = ACTIONS(3079), - [anon_sym_static] = ACTIONS(3079), - [anon_sym_register] = ACTIONS(3079), - [anon_sym_inline] = ACTIONS(3079), - [anon_sym___inline] = ACTIONS(3079), - [anon_sym___inline__] = ACTIONS(3079), - [anon_sym___forceinline] = ACTIONS(3079), - [anon_sym_thread_local] = ACTIONS(3079), - [anon_sym___thread] = ACTIONS(3079), - [anon_sym_const] = ACTIONS(3079), - [anon_sym_constexpr] = ACTIONS(3079), - [anon_sym_volatile] = ACTIONS(3079), - [anon_sym_restrict] = ACTIONS(3079), - [anon_sym___restrict__] = ACTIONS(3079), - [anon_sym__Atomic] = ACTIONS(3079), - [anon_sym__Noreturn] = ACTIONS(3079), - [anon_sym_noreturn] = ACTIONS(3079), - [anon_sym__Nonnull] = ACTIONS(3079), - [anon_sym_mutable] = ACTIONS(3079), - [anon_sym_constinit] = ACTIONS(3079), - [anon_sym_consteval] = ACTIONS(3079), - [anon_sym_alignas] = ACTIONS(3079), - [anon_sym__Alignas] = ACTIONS(3079), - [sym_primitive_type] = ACTIONS(3079), - [anon_sym_enum] = ACTIONS(3079), - [anon_sym_class] = ACTIONS(3079), - [anon_sym_struct] = ACTIONS(3079), - [anon_sym_union] = ACTIONS(3079), - [anon_sym_not] = ACTIONS(3079), - [anon_sym_compl] = ACTIONS(3079), - [anon_sym_DASH_DASH] = ACTIONS(3081), - [anon_sym_PLUS_PLUS] = ACTIONS(3081), - [anon_sym_sizeof] = ACTIONS(3079), - [anon_sym___alignof__] = ACTIONS(3079), - [anon_sym___alignof] = ACTIONS(3079), - [anon_sym__alignof] = ACTIONS(3079), - [anon_sym_alignof] = ACTIONS(3079), - [anon_sym__Alignof] = ACTIONS(3079), - [anon_sym_offsetof] = ACTIONS(3079), - [anon_sym__Generic] = ACTIONS(3079), - [anon_sym_asm] = ACTIONS(3079), - [anon_sym___asm__] = ACTIONS(3079), - [anon_sym___asm] = ACTIONS(3079), - [sym_number_literal] = ACTIONS(3081), - [anon_sym_L_SQUOTE] = ACTIONS(3081), - [anon_sym_u_SQUOTE] = ACTIONS(3081), - [anon_sym_U_SQUOTE] = ACTIONS(3081), - [anon_sym_u8_SQUOTE] = ACTIONS(3081), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_L_DQUOTE] = ACTIONS(3081), - [anon_sym_u_DQUOTE] = ACTIONS(3081), - [anon_sym_U_DQUOTE] = ACTIONS(3081), - [anon_sym_u8_DQUOTE] = ACTIONS(3081), - [anon_sym_DQUOTE] = ACTIONS(3081), - [sym_true] = ACTIONS(3079), - [sym_false] = ACTIONS(3079), - [anon_sym_NULL] = ACTIONS(3079), - [anon_sym_nullptr] = ACTIONS(3079), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3079), - [anon_sym_decltype] = ACTIONS(3079), - [anon_sym_typename] = ACTIONS(3079), - [anon_sym_template] = ACTIONS(3079), - [anon_sym_delete] = ACTIONS(3079), - [anon_sym_R_DQUOTE] = ACTIONS(3081), - [anon_sym_LR_DQUOTE] = ACTIONS(3081), - [anon_sym_uR_DQUOTE] = ACTIONS(3081), - [anon_sym_UR_DQUOTE] = ACTIONS(3081), - [anon_sym_u8R_DQUOTE] = ACTIONS(3081), - [anon_sym_co_await] = ACTIONS(3079), - [anon_sym_new] = ACTIONS(3079), - [anon_sym_requires] = ACTIONS(3079), - [sym_this] = ACTIONS(3079), + [1580] = { + [sym_identifier] = ACTIONS(3091), + [anon_sym_LPAREN2] = ACTIONS(3093), + [anon_sym_BANG] = ACTIONS(3093), + [anon_sym_TILDE] = ACTIONS(3093), + [anon_sym_DASH] = ACTIONS(3091), + [anon_sym_PLUS] = ACTIONS(3091), + [anon_sym_STAR] = ACTIONS(3093), + [anon_sym_AMP] = ACTIONS(3093), + [anon_sym___extension__] = ACTIONS(3091), + [anon_sym_virtual] = ACTIONS(3091), + [anon_sym_extern] = ACTIONS(3091), + [anon_sym___attribute__] = ACTIONS(3091), + [anon_sym___attribute] = ACTIONS(3091), + [anon_sym_COLON_COLON] = ACTIONS(3093), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3093), + [anon_sym___declspec] = ACTIONS(3091), + [anon_sym_signed] = ACTIONS(3091), + [anon_sym_unsigned] = ACTIONS(3091), + [anon_sym_long] = ACTIONS(3091), + [anon_sym_short] = ACTIONS(3091), + [anon_sym_LBRACK] = ACTIONS(3091), + [anon_sym_static] = ACTIONS(3091), + [anon_sym_register] = ACTIONS(3091), + [anon_sym_inline] = ACTIONS(3091), + [anon_sym___inline] = ACTIONS(3091), + [anon_sym___inline__] = ACTIONS(3091), + [anon_sym___forceinline] = ACTIONS(3091), + [anon_sym_thread_local] = ACTIONS(3091), + [anon_sym___thread] = ACTIONS(3091), + [anon_sym_const] = ACTIONS(3091), + [anon_sym_constexpr] = ACTIONS(3091), + [anon_sym_volatile] = ACTIONS(3091), + [anon_sym_restrict] = ACTIONS(3091), + [anon_sym___restrict__] = ACTIONS(3091), + [anon_sym__Atomic] = ACTIONS(3091), + [anon_sym__Noreturn] = ACTIONS(3091), + [anon_sym_noreturn] = ACTIONS(3091), + [anon_sym__Nonnull] = ACTIONS(3091), + [anon_sym_mutable] = ACTIONS(3091), + [anon_sym_constinit] = ACTIONS(3091), + [anon_sym_consteval] = ACTIONS(3091), + [anon_sym_alignas] = ACTIONS(3091), + [anon_sym__Alignas] = ACTIONS(3091), + [sym_primitive_type] = ACTIONS(3091), + [anon_sym_enum] = ACTIONS(3091), + [anon_sym_class] = ACTIONS(3091), + [anon_sym_struct] = ACTIONS(3091), + [anon_sym_union] = ACTIONS(3091), + [anon_sym_not] = ACTIONS(3091), + [anon_sym_compl] = ACTIONS(3091), + [anon_sym_DASH_DASH] = ACTIONS(3093), + [anon_sym_PLUS_PLUS] = ACTIONS(3093), + [anon_sym_sizeof] = ACTIONS(3091), + [anon_sym___alignof__] = ACTIONS(3091), + [anon_sym___alignof] = ACTIONS(3091), + [anon_sym__alignof] = ACTIONS(3091), + [anon_sym_alignof] = ACTIONS(3091), + [anon_sym__Alignof] = ACTIONS(3091), + [anon_sym_offsetof] = ACTIONS(3091), + [anon_sym__Generic] = ACTIONS(3091), + [anon_sym_asm] = ACTIONS(3091), + [anon_sym___asm__] = ACTIONS(3091), + [anon_sym___asm] = ACTIONS(3091), + [sym_number_literal] = ACTIONS(3093), + [anon_sym_L_SQUOTE] = ACTIONS(3093), + [anon_sym_u_SQUOTE] = ACTIONS(3093), + [anon_sym_U_SQUOTE] = ACTIONS(3093), + [anon_sym_u8_SQUOTE] = ACTIONS(3093), + [anon_sym_SQUOTE] = ACTIONS(3093), + [anon_sym_L_DQUOTE] = ACTIONS(3093), + [anon_sym_u_DQUOTE] = ACTIONS(3093), + [anon_sym_U_DQUOTE] = ACTIONS(3093), + [anon_sym_u8_DQUOTE] = ACTIONS(3093), + [anon_sym_DQUOTE] = ACTIONS(3093), + [sym_true] = ACTIONS(3091), + [sym_false] = ACTIONS(3091), + [anon_sym_NULL] = ACTIONS(3091), + [anon_sym_nullptr] = ACTIONS(3091), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3091), + [anon_sym_decltype] = ACTIONS(3091), + [anon_sym_typename] = ACTIONS(3091), + [anon_sym_template] = ACTIONS(3091), + [anon_sym_delete] = ACTIONS(3091), + [anon_sym_R_DQUOTE] = ACTIONS(3093), + [anon_sym_LR_DQUOTE] = ACTIONS(3093), + [anon_sym_uR_DQUOTE] = ACTIONS(3093), + [anon_sym_UR_DQUOTE] = ACTIONS(3093), + [anon_sym_u8R_DQUOTE] = ACTIONS(3093), + [anon_sym_co_await] = ACTIONS(3091), + [anon_sym_new] = ACTIONS(3091), + [anon_sym_requires] = ACTIONS(3091), + [sym_this] = ACTIONS(3091), }, - [1552] = { - [sym__declaration_modifiers] = STATE(2136), - [sym__declaration_specifiers] = STATE(5240), - [sym_attribute_specifier] = STATE(2136), - [sym_attribute_declaration] = STATE(2136), - [sym_ms_declspec_modifier] = STATE(2136), - [sym_ms_based_modifier] = STATE(8682), - [sym__declarator] = STATE(6713), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(5998), - [sym_array_declarator] = STATE(5998), - [sym_storage_class_specifier] = STATE(2136), - [sym_type_qualifier] = STATE(2136), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym_dependent_type] = STATE(2523), - [sym_template_parameter_list] = STATE(838), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(4191), - [sym_template_function] = STATE(5998), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5685), - [sym_qualified_identifier] = STATE(5998), - [sym_qualified_type_identifier] = STATE(3015), - [sym_operator_name] = STATE(5998), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [sym_identifier] = ACTIONS(5024), - [anon_sym_LPAREN2] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2979), - [anon_sym_STAR] = ACTIONS(2981), + [1581] = { + [sym__declaration_modifiers] = STATE(2095), + [sym__declaration_specifiers] = STATE(5315), + [sym_attribute_specifier] = STATE(2095), + [sym_attribute_declaration] = STATE(2095), + [sym_ms_declspec_modifier] = STATE(2095), + [sym_ms_based_modifier] = STATE(8864), + [sym__declarator] = STATE(6817), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6145), + [sym_array_declarator] = STATE(6145), + [sym_storage_class_specifier] = STATE(2095), + [sym_type_qualifier] = STATE(2095), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym_dependent_type] = STATE(2558), + [sym_template_parameter_list] = STATE(848), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(4258), + [sym_template_function] = STATE(6145), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5801), + [sym_qualified_identifier] = STATE(6145), + [sym_qualified_type_identifier] = STATE(3138), + [sym_operator_name] = STATE(6145), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(5032), + [anon_sym_LPAREN2] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(3001), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2983), - [anon_sym_LT] = ACTIONS(5026), + [anon_sym_AMP] = ACTIONS(3003), + [anon_sym_LT] = ACTIONS(5034), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1446), + [anon_sym_virtual] = ACTIONS(1262), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5028), + [anon_sym_COLON_COLON] = ACTIONS(5036), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), @@ -234714,7 +238593,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2995), + [anon_sym_LBRACK] = ACTIONS(3015), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -234737,7 +238616,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2999), + [sym_primitive_type] = ACTIONS(3019), [anon_sym_enum] = ACTIONS(73), [anon_sym_class] = ACTIONS(75), [anon_sym_struct] = ACTIONS(77), @@ -234746,531 +238625,155 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_operator] = ACTIONS(1852), - }, - [1553] = { - [sym_identifier] = ACTIONS(4959), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4961), - [anon_sym_COMMA] = ACTIONS(4961), - [anon_sym_RPAREN] = ACTIONS(4961), - [anon_sym_LPAREN2] = ACTIONS(4961), - [anon_sym_TILDE] = ACTIONS(4961), - [anon_sym_DASH] = ACTIONS(4959), - [anon_sym_PLUS] = ACTIONS(4959), - [anon_sym_STAR] = ACTIONS(4961), - [anon_sym_SLASH] = ACTIONS(4959), - [anon_sym_PERCENT] = ACTIONS(4961), - [anon_sym_PIPE_PIPE] = ACTIONS(4961), - [anon_sym_AMP_AMP] = ACTIONS(4961), - [anon_sym_PIPE] = ACTIONS(4959), - [anon_sym_CARET] = ACTIONS(4961), - [anon_sym_AMP] = ACTIONS(4959), - [anon_sym_EQ_EQ] = ACTIONS(4961), - [anon_sym_BANG_EQ] = ACTIONS(4961), - [anon_sym_GT] = ACTIONS(4959), - [anon_sym_GT_EQ] = ACTIONS(4961), - [anon_sym_LT_EQ] = ACTIONS(4959), - [anon_sym_LT] = ACTIONS(4959), - [anon_sym_LT_LT] = ACTIONS(4961), - [anon_sym_GT_GT] = ACTIONS(4961), - [anon_sym_SEMI] = ACTIONS(4961), - [anon_sym___extension__] = ACTIONS(4959), - [anon_sym_virtual] = ACTIONS(4959), - [anon_sym_extern] = ACTIONS(4959), - [anon_sym___attribute__] = ACTIONS(4959), - [anon_sym___attribute] = ACTIONS(4959), - [anon_sym_COLON] = ACTIONS(4959), - [anon_sym_COLON_COLON] = ACTIONS(4961), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4961), - [anon_sym___declspec] = ACTIONS(4959), - [anon_sym___based] = ACTIONS(4959), - [anon_sym___cdecl] = ACTIONS(4959), - [anon_sym___clrcall] = ACTIONS(4959), - [anon_sym___stdcall] = ACTIONS(4959), - [anon_sym___fastcall] = ACTIONS(4959), - [anon_sym___thiscall] = ACTIONS(4959), - [anon_sym___vectorcall] = ACTIONS(4959), - [anon_sym_LBRACE] = ACTIONS(4961), - [anon_sym_RBRACE] = ACTIONS(4961), - [anon_sym_LBRACK] = ACTIONS(4959), - [anon_sym_static] = ACTIONS(4959), - [anon_sym_RBRACK] = ACTIONS(4961), - [anon_sym_EQ] = ACTIONS(4959), - [anon_sym_register] = ACTIONS(4959), - [anon_sym_inline] = ACTIONS(4959), - [anon_sym___inline] = ACTIONS(4959), - [anon_sym___inline__] = ACTIONS(4959), - [anon_sym___forceinline] = ACTIONS(4959), - [anon_sym_thread_local] = ACTIONS(4959), - [anon_sym___thread] = ACTIONS(4959), - [anon_sym_const] = ACTIONS(4959), - [anon_sym_constexpr] = ACTIONS(4959), - [anon_sym_volatile] = ACTIONS(4959), - [anon_sym_restrict] = ACTIONS(4959), - [anon_sym___restrict__] = ACTIONS(4959), - [anon_sym__Atomic] = ACTIONS(4959), - [anon_sym__Noreturn] = ACTIONS(4959), - [anon_sym_noreturn] = ACTIONS(4959), - [anon_sym__Nonnull] = ACTIONS(4959), - [anon_sym_mutable] = ACTIONS(4959), - [anon_sym_constinit] = ACTIONS(4959), - [anon_sym_consteval] = ACTIONS(4959), - [anon_sym_alignas] = ACTIONS(4959), - [anon_sym__Alignas] = ACTIONS(4959), - [anon_sym_QMARK] = ACTIONS(4961), - [anon_sym_LT_EQ_GT] = ACTIONS(4961), - [anon_sym_or] = ACTIONS(4959), - [anon_sym_and] = ACTIONS(4959), - [anon_sym_bitor] = ACTIONS(4959), - [anon_sym_xor] = ACTIONS(4959), - [anon_sym_bitand] = ACTIONS(4959), - [anon_sym_not_eq] = ACTIONS(4959), - [anon_sym_DASH_DASH] = ACTIONS(4961), - [anon_sym_PLUS_PLUS] = ACTIONS(4961), - [anon_sym_DOT] = ACTIONS(4959), - [anon_sym_DOT_STAR] = ACTIONS(4961), - [anon_sym_DASH_GT] = ACTIONS(4961), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4959), - [anon_sym_decltype] = ACTIONS(4959), - [anon_sym_final] = ACTIONS(4959), - [anon_sym_override] = ACTIONS(4959), - [anon_sym_template] = ACTIONS(4959), - [anon_sym_operator] = ACTIONS(4959), - [anon_sym_try] = ACTIONS(4959), - [anon_sym_noexcept] = ACTIONS(4959), - [anon_sym_throw] = ACTIONS(4959), - [anon_sym_requires] = ACTIONS(4959), - }, - [1554] = { - [sym_identifier] = ACTIONS(4951), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4953), - [anon_sym_COMMA] = ACTIONS(4953), - [anon_sym_RPAREN] = ACTIONS(4953), - [anon_sym_LPAREN2] = ACTIONS(4953), - [anon_sym_TILDE] = ACTIONS(4953), - [anon_sym_DASH] = ACTIONS(4951), - [anon_sym_PLUS] = ACTIONS(4951), - [anon_sym_STAR] = ACTIONS(4953), - [anon_sym_SLASH] = ACTIONS(4951), - [anon_sym_PERCENT] = ACTIONS(4953), - [anon_sym_PIPE_PIPE] = ACTIONS(4953), - [anon_sym_AMP_AMP] = ACTIONS(4953), - [anon_sym_PIPE] = ACTIONS(4951), - [anon_sym_CARET] = ACTIONS(4953), - [anon_sym_AMP] = ACTIONS(4951), - [anon_sym_EQ_EQ] = ACTIONS(4953), - [anon_sym_BANG_EQ] = ACTIONS(4953), - [anon_sym_GT] = ACTIONS(4951), - [anon_sym_GT_EQ] = ACTIONS(4953), - [anon_sym_LT_EQ] = ACTIONS(4951), - [anon_sym_LT] = ACTIONS(4951), - [anon_sym_LT_LT] = ACTIONS(4953), - [anon_sym_GT_GT] = ACTIONS(4953), - [anon_sym_SEMI] = ACTIONS(4953), - [anon_sym___extension__] = ACTIONS(4951), - [anon_sym_virtual] = ACTIONS(4951), - [anon_sym_extern] = ACTIONS(4951), - [anon_sym___attribute__] = ACTIONS(4951), - [anon_sym___attribute] = ACTIONS(4951), - [anon_sym_COLON] = ACTIONS(4951), - [anon_sym_COLON_COLON] = ACTIONS(4953), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4953), - [anon_sym___declspec] = ACTIONS(4951), - [anon_sym___based] = ACTIONS(4951), - [anon_sym___cdecl] = ACTIONS(4951), - [anon_sym___clrcall] = ACTIONS(4951), - [anon_sym___stdcall] = ACTIONS(4951), - [anon_sym___fastcall] = ACTIONS(4951), - [anon_sym___thiscall] = ACTIONS(4951), - [anon_sym___vectorcall] = ACTIONS(4951), - [anon_sym_LBRACE] = ACTIONS(4953), - [anon_sym_RBRACE] = ACTIONS(4953), - [anon_sym_LBRACK] = ACTIONS(4951), - [anon_sym_static] = ACTIONS(4951), - [anon_sym_RBRACK] = ACTIONS(4953), - [anon_sym_EQ] = ACTIONS(4951), - [anon_sym_register] = ACTIONS(4951), - [anon_sym_inline] = ACTIONS(4951), - [anon_sym___inline] = ACTIONS(4951), - [anon_sym___inline__] = ACTIONS(4951), - [anon_sym___forceinline] = ACTIONS(4951), - [anon_sym_thread_local] = ACTIONS(4951), - [anon_sym___thread] = ACTIONS(4951), - [anon_sym_const] = ACTIONS(4951), - [anon_sym_constexpr] = ACTIONS(4951), - [anon_sym_volatile] = ACTIONS(4951), - [anon_sym_restrict] = ACTIONS(4951), - [anon_sym___restrict__] = ACTIONS(4951), - [anon_sym__Atomic] = ACTIONS(4951), - [anon_sym__Noreturn] = ACTIONS(4951), - [anon_sym_noreturn] = ACTIONS(4951), - [anon_sym__Nonnull] = ACTIONS(4951), - [anon_sym_mutable] = ACTIONS(4951), - [anon_sym_constinit] = ACTIONS(4951), - [anon_sym_consteval] = ACTIONS(4951), - [anon_sym_alignas] = ACTIONS(4951), - [anon_sym__Alignas] = ACTIONS(4951), - [anon_sym_QMARK] = ACTIONS(4953), - [anon_sym_LT_EQ_GT] = ACTIONS(4953), - [anon_sym_or] = ACTIONS(4951), - [anon_sym_and] = ACTIONS(4951), - [anon_sym_bitor] = ACTIONS(4951), - [anon_sym_xor] = ACTIONS(4951), - [anon_sym_bitand] = ACTIONS(4951), - [anon_sym_not_eq] = ACTIONS(4951), - [anon_sym_DASH_DASH] = ACTIONS(4953), - [anon_sym_PLUS_PLUS] = ACTIONS(4953), - [anon_sym_DOT] = ACTIONS(4951), - [anon_sym_DOT_STAR] = ACTIONS(4953), - [anon_sym_DASH_GT] = ACTIONS(4953), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4951), - [anon_sym_decltype] = ACTIONS(4951), - [anon_sym_final] = ACTIONS(4951), - [anon_sym_override] = ACTIONS(4951), - [anon_sym_template] = ACTIONS(4951), - [anon_sym_operator] = ACTIONS(4951), - [anon_sym_try] = ACTIONS(4951), - [anon_sym_noexcept] = ACTIONS(4951), - [anon_sym_throw] = ACTIONS(4951), - [anon_sym_requires] = ACTIONS(4951), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_operator] = ACTIONS(1850), }, - [1555] = { - [sym_identifier] = ACTIONS(4955), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4957), - [anon_sym_COMMA] = ACTIONS(4957), - [anon_sym_RPAREN] = ACTIONS(4957), - [anon_sym_LPAREN2] = ACTIONS(4957), - [anon_sym_TILDE] = ACTIONS(4957), - [anon_sym_DASH] = ACTIONS(4955), - [anon_sym_PLUS] = ACTIONS(4955), - [anon_sym_STAR] = ACTIONS(4957), - [anon_sym_SLASH] = ACTIONS(4955), - [anon_sym_PERCENT] = ACTIONS(4957), - [anon_sym_PIPE_PIPE] = ACTIONS(4957), - [anon_sym_AMP_AMP] = ACTIONS(4957), - [anon_sym_PIPE] = ACTIONS(4955), - [anon_sym_CARET] = ACTIONS(4957), - [anon_sym_AMP] = ACTIONS(4955), - [anon_sym_EQ_EQ] = ACTIONS(4957), - [anon_sym_BANG_EQ] = ACTIONS(4957), - [anon_sym_GT] = ACTIONS(4955), - [anon_sym_GT_EQ] = ACTIONS(4957), - [anon_sym_LT_EQ] = ACTIONS(4955), - [anon_sym_LT] = ACTIONS(4955), - [anon_sym_LT_LT] = ACTIONS(4957), - [anon_sym_GT_GT] = ACTIONS(4957), - [anon_sym_SEMI] = ACTIONS(4957), - [anon_sym___extension__] = ACTIONS(4955), - [anon_sym_virtual] = ACTIONS(4955), - [anon_sym_extern] = ACTIONS(4955), - [anon_sym___attribute__] = ACTIONS(4955), - [anon_sym___attribute] = ACTIONS(4955), - [anon_sym_COLON] = ACTIONS(4955), - [anon_sym_COLON_COLON] = ACTIONS(4957), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4957), - [anon_sym___declspec] = ACTIONS(4955), - [anon_sym___based] = ACTIONS(4955), - [anon_sym___cdecl] = ACTIONS(4955), - [anon_sym___clrcall] = ACTIONS(4955), - [anon_sym___stdcall] = ACTIONS(4955), - [anon_sym___fastcall] = ACTIONS(4955), - [anon_sym___thiscall] = ACTIONS(4955), - [anon_sym___vectorcall] = ACTIONS(4955), - [anon_sym_LBRACE] = ACTIONS(4957), - [anon_sym_RBRACE] = ACTIONS(4957), - [anon_sym_LBRACK] = ACTIONS(4955), - [anon_sym_static] = ACTIONS(4955), - [anon_sym_RBRACK] = ACTIONS(4957), - [anon_sym_EQ] = ACTIONS(4955), - [anon_sym_register] = ACTIONS(4955), - [anon_sym_inline] = ACTIONS(4955), - [anon_sym___inline] = ACTIONS(4955), - [anon_sym___inline__] = ACTIONS(4955), - [anon_sym___forceinline] = ACTIONS(4955), - [anon_sym_thread_local] = ACTIONS(4955), - [anon_sym___thread] = ACTIONS(4955), - [anon_sym_const] = ACTIONS(4955), - [anon_sym_constexpr] = ACTIONS(4955), - [anon_sym_volatile] = ACTIONS(4955), - [anon_sym_restrict] = ACTIONS(4955), - [anon_sym___restrict__] = ACTIONS(4955), - [anon_sym__Atomic] = ACTIONS(4955), - [anon_sym__Noreturn] = ACTIONS(4955), - [anon_sym_noreturn] = ACTIONS(4955), - [anon_sym__Nonnull] = ACTIONS(4955), - [anon_sym_mutable] = ACTIONS(4955), - [anon_sym_constinit] = ACTIONS(4955), - [anon_sym_consteval] = ACTIONS(4955), - [anon_sym_alignas] = ACTIONS(4955), - [anon_sym__Alignas] = ACTIONS(4955), - [anon_sym_QMARK] = ACTIONS(4957), - [anon_sym_LT_EQ_GT] = ACTIONS(4957), - [anon_sym_or] = ACTIONS(4955), - [anon_sym_and] = ACTIONS(4955), - [anon_sym_bitor] = ACTIONS(4955), - [anon_sym_xor] = ACTIONS(4955), - [anon_sym_bitand] = ACTIONS(4955), - [anon_sym_not_eq] = ACTIONS(4955), - [anon_sym_DASH_DASH] = ACTIONS(4957), - [anon_sym_PLUS_PLUS] = ACTIONS(4957), - [anon_sym_DOT] = ACTIONS(4955), - [anon_sym_DOT_STAR] = ACTIONS(4957), - [anon_sym_DASH_GT] = ACTIONS(4957), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4955), - [anon_sym_decltype] = ACTIONS(4955), - [anon_sym_final] = ACTIONS(4955), - [anon_sym_override] = ACTIONS(4955), - [anon_sym_template] = ACTIONS(4955), - [anon_sym_operator] = ACTIONS(4955), - [anon_sym_try] = ACTIONS(4955), - [anon_sym_noexcept] = ACTIONS(4955), - [anon_sym_throw] = ACTIONS(4955), - [anon_sym_requires] = ACTIONS(4955), - }, - [1556] = { - [sym_identifier] = ACTIONS(4988), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4990), - [anon_sym_COMMA] = ACTIONS(4990), - [anon_sym_RPAREN] = ACTIONS(4990), - [anon_sym_LPAREN2] = ACTIONS(4990), - [anon_sym_TILDE] = ACTIONS(4990), - [anon_sym_DASH] = ACTIONS(4988), - [anon_sym_PLUS] = ACTIONS(4988), - [anon_sym_STAR] = ACTIONS(4990), - [anon_sym_SLASH] = ACTIONS(4988), - [anon_sym_PERCENT] = ACTIONS(4990), - [anon_sym_PIPE_PIPE] = ACTIONS(4990), - [anon_sym_AMP_AMP] = ACTIONS(4990), - [anon_sym_PIPE] = ACTIONS(4988), - [anon_sym_CARET] = ACTIONS(4990), - [anon_sym_AMP] = ACTIONS(4988), - [anon_sym_EQ_EQ] = ACTIONS(4990), - [anon_sym_BANG_EQ] = ACTIONS(4990), - [anon_sym_GT] = ACTIONS(4988), - [anon_sym_GT_EQ] = ACTIONS(4990), - [anon_sym_LT_EQ] = ACTIONS(4988), - [anon_sym_LT] = ACTIONS(4988), - [anon_sym_LT_LT] = ACTIONS(4990), - [anon_sym_GT_GT] = ACTIONS(4990), - [anon_sym_SEMI] = ACTIONS(4990), - [anon_sym___extension__] = ACTIONS(4988), - [anon_sym_virtual] = ACTIONS(4988), - [anon_sym_extern] = ACTIONS(4988), - [anon_sym___attribute__] = ACTIONS(4988), - [anon_sym___attribute] = ACTIONS(4988), - [anon_sym_COLON] = ACTIONS(4988), - [anon_sym_COLON_COLON] = ACTIONS(4990), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4990), - [anon_sym___declspec] = ACTIONS(4988), - [anon_sym___based] = ACTIONS(4988), - [anon_sym___cdecl] = ACTIONS(4988), - [anon_sym___clrcall] = ACTIONS(4988), - [anon_sym___stdcall] = ACTIONS(4988), - [anon_sym___fastcall] = ACTIONS(4988), - [anon_sym___thiscall] = ACTIONS(4988), - [anon_sym___vectorcall] = ACTIONS(4988), - [anon_sym_LBRACE] = ACTIONS(4990), - [anon_sym_RBRACE] = ACTIONS(4990), - [anon_sym_LBRACK] = ACTIONS(4988), - [anon_sym_static] = ACTIONS(4988), - [anon_sym_RBRACK] = ACTIONS(4990), - [anon_sym_EQ] = ACTIONS(4988), - [anon_sym_register] = ACTIONS(4988), - [anon_sym_inline] = ACTIONS(4988), - [anon_sym___inline] = ACTIONS(4988), - [anon_sym___inline__] = ACTIONS(4988), - [anon_sym___forceinline] = ACTIONS(4988), - [anon_sym_thread_local] = ACTIONS(4988), - [anon_sym___thread] = ACTIONS(4988), - [anon_sym_const] = ACTIONS(4988), - [anon_sym_constexpr] = ACTIONS(4988), - [anon_sym_volatile] = ACTIONS(4988), - [anon_sym_restrict] = ACTIONS(4988), - [anon_sym___restrict__] = ACTIONS(4988), - [anon_sym__Atomic] = ACTIONS(4988), - [anon_sym__Noreturn] = ACTIONS(4988), - [anon_sym_noreturn] = ACTIONS(4988), - [anon_sym__Nonnull] = ACTIONS(4988), - [anon_sym_mutable] = ACTIONS(4988), - [anon_sym_constinit] = ACTIONS(4988), - [anon_sym_consteval] = ACTIONS(4988), - [anon_sym_alignas] = ACTIONS(4988), - [anon_sym__Alignas] = ACTIONS(4988), - [anon_sym_QMARK] = ACTIONS(4990), - [anon_sym_LT_EQ_GT] = ACTIONS(4990), - [anon_sym_or] = ACTIONS(4988), - [anon_sym_and] = ACTIONS(4988), - [anon_sym_bitor] = ACTIONS(4988), - [anon_sym_xor] = ACTIONS(4988), - [anon_sym_bitand] = ACTIONS(4988), - [anon_sym_not_eq] = ACTIONS(4988), - [anon_sym_DASH_DASH] = ACTIONS(4990), - [anon_sym_PLUS_PLUS] = ACTIONS(4990), - [anon_sym_DOT] = ACTIONS(4988), - [anon_sym_DOT_STAR] = ACTIONS(4990), - [anon_sym_DASH_GT] = ACTIONS(4990), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4988), - [anon_sym_decltype] = ACTIONS(4988), - [anon_sym_final] = ACTIONS(4988), - [anon_sym_override] = ACTIONS(4988), - [anon_sym_template] = ACTIONS(4988), - [anon_sym_operator] = ACTIONS(4988), - [anon_sym_try] = ACTIONS(4988), - [anon_sym_noexcept] = ACTIONS(4988), - [anon_sym_throw] = ACTIONS(4988), - [anon_sym_requires] = ACTIONS(4988), - }, - [1557] = { - [sym_template_argument_list] = STATE(1565), - [sym_identifier] = ACTIONS(4963), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4965), - [anon_sym_COMMA] = ACTIONS(4965), - [anon_sym_RPAREN] = ACTIONS(4965), - [anon_sym_LPAREN2] = ACTIONS(4967), - [anon_sym_TILDE] = ACTIONS(4970), - [anon_sym_DASH] = ACTIONS(4972), - [anon_sym_PLUS] = ACTIONS(4972), - [anon_sym_STAR] = ACTIONS(4974), - [anon_sym_SLASH] = ACTIONS(4972), - [anon_sym_PERCENT] = ACTIONS(4972), - [anon_sym_PIPE_PIPE] = ACTIONS(4965), - [anon_sym_AMP_AMP] = ACTIONS(4967), - [anon_sym_PIPE] = ACTIONS(4972), - [anon_sym_CARET] = ACTIONS(4972), - [anon_sym_AMP] = ACTIONS(4974), - [anon_sym_EQ_EQ] = ACTIONS(4965), - [anon_sym_BANG_EQ] = ACTIONS(4965), - [anon_sym_GT] = ACTIONS(4972), - [anon_sym_GT_EQ] = ACTIONS(4965), - [anon_sym_LT_EQ] = ACTIONS(4972), - [anon_sym_LT] = ACTIONS(4977), - [anon_sym_LT_LT] = ACTIONS(4972), - [anon_sym_GT_GT] = ACTIONS(4972), - [anon_sym_SEMI] = ACTIONS(4965), - [anon_sym___extension__] = ACTIONS(4963), - [anon_sym_virtual] = ACTIONS(4963), - [anon_sym_extern] = ACTIONS(4963), - [anon_sym___attribute__] = ACTIONS(4963), - [anon_sym___attribute] = ACTIONS(4963), - [anon_sym_COLON_COLON] = ACTIONS(4167), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4970), - [anon_sym___declspec] = ACTIONS(4963), - [anon_sym___based] = ACTIONS(4963), - [anon_sym_LBRACE] = ACTIONS(4970), - [anon_sym_RBRACE] = ACTIONS(4965), - [anon_sym_LBRACK] = ACTIONS(4974), - [anon_sym_static] = ACTIONS(4963), - [anon_sym_EQ] = ACTIONS(4972), - [anon_sym_register] = ACTIONS(4963), - [anon_sym_inline] = ACTIONS(4963), - [anon_sym___inline] = ACTIONS(4963), - [anon_sym___inline__] = ACTIONS(4963), - [anon_sym___forceinline] = ACTIONS(4963), - [anon_sym_thread_local] = ACTIONS(4963), - [anon_sym___thread] = ACTIONS(4963), - [anon_sym_const] = ACTIONS(4963), - [anon_sym_constexpr] = ACTIONS(4963), - [anon_sym_volatile] = ACTIONS(4963), - [anon_sym_restrict] = ACTIONS(4963), - [anon_sym___restrict__] = ACTIONS(4963), - [anon_sym__Atomic] = ACTIONS(4963), - [anon_sym__Noreturn] = ACTIONS(4963), - [anon_sym_noreturn] = ACTIONS(4963), - [anon_sym__Nonnull] = ACTIONS(4963), - [anon_sym_mutable] = ACTIONS(4963), - [anon_sym_constinit] = ACTIONS(4963), - [anon_sym_consteval] = ACTIONS(4963), - [anon_sym_alignas] = ACTIONS(4963), - [anon_sym__Alignas] = ACTIONS(4963), - [anon_sym_QMARK] = ACTIONS(4965), - [anon_sym_STAR_EQ] = ACTIONS(4965), - [anon_sym_SLASH_EQ] = ACTIONS(4965), - [anon_sym_PERCENT_EQ] = ACTIONS(4965), - [anon_sym_PLUS_EQ] = ACTIONS(4965), - [anon_sym_DASH_EQ] = ACTIONS(4965), - [anon_sym_LT_LT_EQ] = ACTIONS(4965), - [anon_sym_GT_GT_EQ] = ACTIONS(4965), - [anon_sym_AMP_EQ] = ACTIONS(4965), - [anon_sym_CARET_EQ] = ACTIONS(4965), - [anon_sym_PIPE_EQ] = ACTIONS(4965), - [anon_sym_and_eq] = ACTIONS(4972), - [anon_sym_or_eq] = ACTIONS(4972), - [anon_sym_xor_eq] = ACTIONS(4972), - [anon_sym_LT_EQ_GT] = ACTIONS(4965), - [anon_sym_or] = ACTIONS(4972), - [anon_sym_and] = ACTIONS(4972), - [anon_sym_bitor] = ACTIONS(4972), - [anon_sym_xor] = ACTIONS(4972), - [anon_sym_bitand] = ACTIONS(4972), - [anon_sym_not_eq] = ACTIONS(4972), - [anon_sym_DASH_DASH] = ACTIONS(4965), - [anon_sym_PLUS_PLUS] = ACTIONS(4965), - [anon_sym_DOT] = ACTIONS(4972), - [anon_sym_DOT_STAR] = ACTIONS(4965), - [anon_sym_DASH_GT] = ACTIONS(4965), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4963), - [anon_sym_decltype] = ACTIONS(4963), - [anon_sym_template] = ACTIONS(4963), - [anon_sym_operator] = ACTIONS(4963), + [1582] = { + [sym__declaration_modifiers] = STATE(2095), + [sym__declaration_specifiers] = STATE(5351), + [sym_attribute_specifier] = STATE(2095), + [sym_attribute_declaration] = STATE(2095), + [sym_ms_declspec_modifier] = STATE(2095), + [sym_ms_based_modifier] = STATE(8864), + [sym__declarator] = STATE(6793), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6145), + [sym_array_declarator] = STATE(6145), + [sym_storage_class_specifier] = STATE(2095), + [sym_type_qualifier] = STATE(2095), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym_dependent_type] = STATE(2558), + [sym_template_parameter_list] = STATE(849), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(4258), + [sym_template_function] = STATE(6145), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5801), + [sym_qualified_identifier] = STATE(6145), + [sym_qualified_type_identifier] = STATE(3138), + [sym_operator_name] = STATE(6145), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(5032), + [anon_sym_LPAREN2] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(3001), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3003), + [anon_sym_LT] = ACTIONS(5034), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1262), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(5036), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3015), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(69), + [anon_sym__Alignas] = ACTIONS(69), + [sym_primitive_type] = ACTIONS(3019), + [anon_sym_enum] = ACTIONS(73), + [anon_sym_class] = ACTIONS(75), + [anon_sym_struct] = ACTIONS(77), + [anon_sym_union] = ACTIONS(79), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(125), + [anon_sym_decltype] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(131), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_operator] = ACTIONS(1850), }, - [1558] = { - [sym__declaration_modifiers] = STATE(2136), - [sym__declaration_specifiers] = STATE(5250), - [sym_attribute_specifier] = STATE(2136), - [sym_attribute_declaration] = STATE(2136), - [sym_ms_declspec_modifier] = STATE(2136), - [sym_ms_based_modifier] = STATE(8682), - [sym__declarator] = STATE(6699), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(5998), - [sym_array_declarator] = STATE(5998), - [sym_storage_class_specifier] = STATE(2136), - [sym_type_qualifier] = STATE(2136), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym_dependent_type] = STATE(2523), - [sym_template_parameter_list] = STATE(837), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(4191), - [sym_template_function] = STATE(5998), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5685), - [sym_qualified_identifier] = STATE(5998), - [sym_qualified_type_identifier] = STATE(3015), - [sym_operator_name] = STATE(5998), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [sym_identifier] = ACTIONS(5024), - [anon_sym_LPAREN2] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2979), - [anon_sym_STAR] = ACTIONS(2981), + [1583] = { + [sym__declaration_modifiers] = STATE(2095), + [sym__declaration_specifiers] = STATE(5348), + [sym_attribute_specifier] = STATE(2095), + [sym_attribute_declaration] = STATE(2095), + [sym_ms_declspec_modifier] = STATE(2095), + [sym_ms_based_modifier] = STATE(8864), + [sym__declarator] = STATE(6750), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6145), + [sym_array_declarator] = STATE(6145), + [sym_storage_class_specifier] = STATE(2095), + [sym_type_qualifier] = STATE(2095), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym_dependent_type] = STATE(2558), + [sym_template_parameter_list] = STATE(850), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(4258), + [sym_template_function] = STATE(6145), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5801), + [sym_qualified_identifier] = STATE(6145), + [sym_qualified_type_identifier] = STATE(3138), + [sym_operator_name] = STATE(6145), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(5032), + [anon_sym_LPAREN2] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(3001), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2983), - [anon_sym_LT] = ACTIONS(5026), + [anon_sym_AMP] = ACTIONS(3003), + [anon_sym_LT] = ACTIONS(5034), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1446), + [anon_sym_virtual] = ACTIONS(1262), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5028), + [anon_sym_COLON_COLON] = ACTIONS(5036), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), @@ -235278,7 +238781,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2995), + [anon_sym_LBRACK] = ACTIONS(3015), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -235301,7 +238804,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2999), + [sym_primitive_type] = ACTIONS(3019), [anon_sym_enum] = ACTIONS(73), [anon_sym_class] = ACTIONS(75), [anon_sym_struct] = ACTIONS(77), @@ -235310,61 +238813,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_operator] = ACTIONS(1852), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_operator] = ACTIONS(1850), }, - [1559] = { - [sym__declaration_modifiers] = STATE(2136), - [sym__declaration_specifiers] = STATE(5259), - [sym_attribute_specifier] = STATE(2136), - [sym_attribute_declaration] = STATE(2136), - [sym_ms_declspec_modifier] = STATE(2136), - [sym_ms_based_modifier] = STATE(8682), - [sym__declarator] = STATE(6691), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(5998), - [sym_array_declarator] = STATE(5998), - [sym_storage_class_specifier] = STATE(2136), - [sym_type_qualifier] = STATE(2136), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym_dependent_type] = STATE(2523), - [sym_template_parameter_list] = STATE(835), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(4191), - [sym_template_function] = STATE(5998), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5685), - [sym_qualified_identifier] = STATE(5998), - [sym_qualified_type_identifier] = STATE(3015), - [sym_operator_name] = STATE(5998), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [sym_identifier] = ACTIONS(5024), - [anon_sym_LPAREN2] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2979), - [anon_sym_STAR] = ACTIONS(2981), + [1584] = { + [sym__declaration_modifiers] = STATE(2095), + [sym__declaration_specifiers] = STATE(5303), + [sym_attribute_specifier] = STATE(2095), + [sym_attribute_declaration] = STATE(2095), + [sym_ms_declspec_modifier] = STATE(2095), + [sym_ms_based_modifier] = STATE(8864), + [sym__declarator] = STATE(6823), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6145), + [sym_array_declarator] = STATE(6145), + [sym_storage_class_specifier] = STATE(2095), + [sym_type_qualifier] = STATE(2095), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym_dependent_type] = STATE(2558), + [sym_template_parameter_list] = STATE(852), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(4258), + [sym_template_function] = STATE(6145), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5801), + [sym_qualified_identifier] = STATE(6145), + [sym_qualified_type_identifier] = STATE(3138), + [sym_operator_name] = STATE(6145), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(5032), + [anon_sym_LPAREN2] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(3001), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2983), - [anon_sym_LT] = ACTIONS(5026), + [anon_sym_AMP] = ACTIONS(3003), + [anon_sym_LT] = ACTIONS(5034), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1446), + [anon_sym_virtual] = ACTIONS(1262), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5028), + [anon_sym_COLON_COLON] = ACTIONS(5036), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), @@ -235372,7 +238875,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2995), + [anon_sym_LBRACK] = ACTIONS(3015), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -235395,7 +238898,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2999), + [sym_primitive_type] = ACTIONS(3019), [anon_sym_enum] = ACTIONS(73), [anon_sym_class] = ACTIONS(75), [anon_sym_struct] = ACTIONS(77), @@ -235404,245 +238907,232 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_operator] = ACTIONS(1852), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_operator] = ACTIONS(1850), }, - [1560] = { - [sym_identifier] = ACTIONS(4992), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4994), - [anon_sym_COMMA] = ACTIONS(4994), - [anon_sym_RPAREN] = ACTIONS(4994), - [anon_sym_LPAREN2] = ACTIONS(4994), - [anon_sym_TILDE] = ACTIONS(4994), - [anon_sym_DASH] = ACTIONS(4992), - [anon_sym_PLUS] = ACTIONS(4992), - [anon_sym_STAR] = ACTIONS(4994), - [anon_sym_SLASH] = ACTIONS(4992), - [anon_sym_PERCENT] = ACTIONS(4994), - [anon_sym_PIPE_PIPE] = ACTIONS(4994), - [anon_sym_AMP_AMP] = ACTIONS(4994), - [anon_sym_PIPE] = ACTIONS(4992), - [anon_sym_CARET] = ACTIONS(4994), - [anon_sym_AMP] = ACTIONS(4992), - [anon_sym_EQ_EQ] = ACTIONS(4994), - [anon_sym_BANG_EQ] = ACTIONS(4994), - [anon_sym_GT] = ACTIONS(4992), - [anon_sym_GT_EQ] = ACTIONS(4994), - [anon_sym_LT_EQ] = ACTIONS(4992), - [anon_sym_LT] = ACTIONS(4992), - [anon_sym_LT_LT] = ACTIONS(4994), - [anon_sym_GT_GT] = ACTIONS(4994), - [anon_sym_SEMI] = ACTIONS(4994), - [anon_sym___extension__] = ACTIONS(4992), - [anon_sym_virtual] = ACTIONS(4992), - [anon_sym_extern] = ACTIONS(4992), - [anon_sym___attribute__] = ACTIONS(4992), - [anon_sym___attribute] = ACTIONS(4992), - [anon_sym_COLON] = ACTIONS(4992), - [anon_sym_COLON_COLON] = ACTIONS(4994), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4994), - [anon_sym___declspec] = ACTIONS(4992), - [anon_sym___based] = ACTIONS(4992), - [anon_sym___cdecl] = ACTIONS(4992), - [anon_sym___clrcall] = ACTIONS(4992), - [anon_sym___stdcall] = ACTIONS(4992), - [anon_sym___fastcall] = ACTIONS(4992), - [anon_sym___thiscall] = ACTIONS(4992), - [anon_sym___vectorcall] = ACTIONS(4992), - [anon_sym_LBRACE] = ACTIONS(4994), - [anon_sym_RBRACE] = ACTIONS(4994), - [anon_sym_LBRACK] = ACTIONS(4992), - [anon_sym_static] = ACTIONS(4992), - [anon_sym_RBRACK] = ACTIONS(4994), - [anon_sym_EQ] = ACTIONS(4992), - [anon_sym_register] = ACTIONS(4992), - [anon_sym_inline] = ACTIONS(4992), - [anon_sym___inline] = ACTIONS(4992), - [anon_sym___inline__] = ACTIONS(4992), - [anon_sym___forceinline] = ACTIONS(4992), - [anon_sym_thread_local] = ACTIONS(4992), - [anon_sym___thread] = ACTIONS(4992), - [anon_sym_const] = ACTIONS(4992), - [anon_sym_constexpr] = ACTIONS(4992), - [anon_sym_volatile] = ACTIONS(4992), - [anon_sym_restrict] = ACTIONS(4992), - [anon_sym___restrict__] = ACTIONS(4992), - [anon_sym__Atomic] = ACTIONS(4992), - [anon_sym__Noreturn] = ACTIONS(4992), - [anon_sym_noreturn] = ACTIONS(4992), - [anon_sym__Nonnull] = ACTIONS(4992), - [anon_sym_mutable] = ACTIONS(4992), - [anon_sym_constinit] = ACTIONS(4992), - [anon_sym_consteval] = ACTIONS(4992), - [anon_sym_alignas] = ACTIONS(4992), - [anon_sym__Alignas] = ACTIONS(4992), - [anon_sym_QMARK] = ACTIONS(4994), - [anon_sym_LT_EQ_GT] = ACTIONS(4994), - [anon_sym_or] = ACTIONS(4992), - [anon_sym_and] = ACTIONS(4992), - [anon_sym_bitor] = ACTIONS(4992), - [anon_sym_xor] = ACTIONS(4992), - [anon_sym_bitand] = ACTIONS(4992), - [anon_sym_not_eq] = ACTIONS(4992), - [anon_sym_DASH_DASH] = ACTIONS(4994), - [anon_sym_PLUS_PLUS] = ACTIONS(4994), - [anon_sym_DOT] = ACTIONS(4992), - [anon_sym_DOT_STAR] = ACTIONS(4994), - [anon_sym_DASH_GT] = ACTIONS(4994), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4992), - [anon_sym_decltype] = ACTIONS(4992), - [anon_sym_final] = ACTIONS(4992), - [anon_sym_override] = ACTIONS(4992), - [anon_sym_template] = ACTIONS(4992), - [anon_sym_operator] = ACTIONS(4992), - [anon_sym_try] = ACTIONS(4992), - [anon_sym_noexcept] = ACTIONS(4992), - [anon_sym_throw] = ACTIONS(4992), - [anon_sym_requires] = ACTIONS(4992), + [1585] = { + [sym_template_argument_list] = STATE(1587), + [sym_identifier] = ACTIONS(4925), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4929), + [anon_sym_COMMA] = ACTIONS(4929), + [anon_sym_RPAREN] = ACTIONS(4929), + [anon_sym_LPAREN2] = ACTIONS(4929), + [anon_sym_TILDE] = ACTIONS(4932), + [anon_sym_DASH] = ACTIONS(4934), + [anon_sym_PLUS] = ACTIONS(4934), + [anon_sym_STAR] = ACTIONS(4936), + [anon_sym_SLASH] = ACTIONS(4934), + [anon_sym_PERCENT] = ACTIONS(4934), + [anon_sym_PIPE_PIPE] = ACTIONS(4927), + [anon_sym_AMP_AMP] = ACTIONS(4929), + [anon_sym_PIPE] = ACTIONS(4934), + [anon_sym_CARET] = ACTIONS(4934), + [anon_sym_AMP] = ACTIONS(4936), + [anon_sym_EQ_EQ] = ACTIONS(4927), + [anon_sym_BANG_EQ] = ACTIONS(4927), + [anon_sym_GT] = ACTIONS(4934), + [anon_sym_GT_EQ] = ACTIONS(4927), + [anon_sym_LT_EQ] = ACTIONS(4934), + [anon_sym_LT] = ACTIONS(5038), + [anon_sym_LT_LT] = ACTIONS(4934), + [anon_sym_GT_GT] = ACTIONS(4934), + [anon_sym___extension__] = ACTIONS(4925), + [anon_sym_virtual] = ACTIONS(4925), + [anon_sym_extern] = ACTIONS(4925), + [anon_sym___attribute__] = ACTIONS(4925), + [anon_sym___attribute] = ACTIONS(4925), + [anon_sym_COLON_COLON] = ACTIONS(4187), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4932), + [anon_sym___declspec] = ACTIONS(4925), + [anon_sym___based] = ACTIONS(4925), + [anon_sym_LBRACE] = ACTIONS(4932), + [anon_sym_LBRACK] = ACTIONS(4936), + [anon_sym_static] = ACTIONS(4925), + [anon_sym_EQ] = ACTIONS(4936), + [anon_sym_register] = ACTIONS(4925), + [anon_sym_inline] = ACTIONS(4925), + [anon_sym___inline] = ACTIONS(4925), + [anon_sym___inline__] = ACTIONS(4925), + [anon_sym___forceinline] = ACTIONS(4925), + [anon_sym_thread_local] = ACTIONS(4925), + [anon_sym___thread] = ACTIONS(4925), + [anon_sym_const] = ACTIONS(4925), + [anon_sym_constexpr] = ACTIONS(4925), + [anon_sym_volatile] = ACTIONS(4925), + [anon_sym_restrict] = ACTIONS(4925), + [anon_sym___restrict__] = ACTIONS(4925), + [anon_sym__Atomic] = ACTIONS(4925), + [anon_sym__Noreturn] = ACTIONS(4925), + [anon_sym_noreturn] = ACTIONS(4925), + [anon_sym__Nonnull] = ACTIONS(4925), + [anon_sym_mutable] = ACTIONS(4925), + [anon_sym_constinit] = ACTIONS(4925), + [anon_sym_consteval] = ACTIONS(4925), + [anon_sym_alignas] = ACTIONS(4925), + [anon_sym__Alignas] = ACTIONS(4925), + [anon_sym_QMARK] = ACTIONS(4927), + [anon_sym_STAR_EQ] = ACTIONS(4927), + [anon_sym_SLASH_EQ] = ACTIONS(4927), + [anon_sym_PERCENT_EQ] = ACTIONS(4927), + [anon_sym_PLUS_EQ] = ACTIONS(4927), + [anon_sym_DASH_EQ] = ACTIONS(4927), + [anon_sym_LT_LT_EQ] = ACTIONS(4927), + [anon_sym_GT_GT_EQ] = ACTIONS(4927), + [anon_sym_AMP_EQ] = ACTIONS(4927), + [anon_sym_CARET_EQ] = ACTIONS(4927), + [anon_sym_PIPE_EQ] = ACTIONS(4927), + [anon_sym_and_eq] = ACTIONS(4934), + [anon_sym_or_eq] = ACTIONS(4934), + [anon_sym_xor_eq] = ACTIONS(4934), + [anon_sym_LT_EQ_GT] = ACTIONS(4927), + [anon_sym_or] = ACTIONS(4934), + [anon_sym_and] = ACTIONS(4934), + [anon_sym_bitor] = ACTIONS(4934), + [anon_sym_xor] = ACTIONS(4934), + [anon_sym_bitand] = ACTIONS(4934), + [anon_sym_not_eq] = ACTIONS(4934), + [anon_sym_DASH_DASH] = ACTIONS(4927), + [anon_sym_PLUS_PLUS] = ACTIONS(4927), + [anon_sym_DOT] = ACTIONS(4934), + [anon_sym_DOT_STAR] = ACTIONS(4927), + [anon_sym_DASH_GT] = ACTIONS(4934), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4925), + [anon_sym_decltype] = ACTIONS(4925), + [anon_sym_template] = ACTIONS(4925), + [anon_sym_operator] = ACTIONS(4925), + [anon_sym_DASH_GT_STAR] = ACTIONS(4927), }, - [1561] = { - [sym_identifier] = ACTIONS(4980), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4982), - [anon_sym_COMMA] = ACTIONS(4982), - [anon_sym_RPAREN] = ACTIONS(4982), - [anon_sym_LPAREN2] = ACTIONS(4982), - [anon_sym_TILDE] = ACTIONS(4982), - [anon_sym_DASH] = ACTIONS(4980), - [anon_sym_PLUS] = ACTIONS(4980), - [anon_sym_STAR] = ACTIONS(4982), - [anon_sym_SLASH] = ACTIONS(4980), - [anon_sym_PERCENT] = ACTIONS(4982), - [anon_sym_PIPE_PIPE] = ACTIONS(4982), - [anon_sym_AMP_AMP] = ACTIONS(4982), - [anon_sym_PIPE] = ACTIONS(4980), - [anon_sym_CARET] = ACTIONS(4982), - [anon_sym_AMP] = ACTIONS(4980), - [anon_sym_EQ_EQ] = ACTIONS(4982), - [anon_sym_BANG_EQ] = ACTIONS(4982), - [anon_sym_GT] = ACTIONS(4980), - [anon_sym_GT_EQ] = ACTIONS(4982), - [anon_sym_LT_EQ] = ACTIONS(4980), - [anon_sym_LT] = ACTIONS(4980), - [anon_sym_LT_LT] = ACTIONS(4982), - [anon_sym_GT_GT] = ACTIONS(4982), - [anon_sym_SEMI] = ACTIONS(4982), - [anon_sym___extension__] = ACTIONS(4980), - [anon_sym_virtual] = ACTIONS(4980), - [anon_sym_extern] = ACTIONS(4980), - [anon_sym___attribute__] = ACTIONS(4980), - [anon_sym___attribute] = ACTIONS(4980), - [anon_sym_COLON] = ACTIONS(4980), - [anon_sym_COLON_COLON] = ACTIONS(4982), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4982), - [anon_sym___declspec] = ACTIONS(4980), - [anon_sym___based] = ACTIONS(4980), - [anon_sym___cdecl] = ACTIONS(4980), - [anon_sym___clrcall] = ACTIONS(4980), - [anon_sym___stdcall] = ACTIONS(4980), - [anon_sym___fastcall] = ACTIONS(4980), - [anon_sym___thiscall] = ACTIONS(4980), - [anon_sym___vectorcall] = ACTIONS(4980), - [anon_sym_LBRACE] = ACTIONS(4982), - [anon_sym_RBRACE] = ACTIONS(4982), - [anon_sym_LBRACK] = ACTIONS(4980), - [anon_sym_static] = ACTIONS(4980), - [anon_sym_RBRACK] = ACTIONS(4982), - [anon_sym_EQ] = ACTIONS(4980), - [anon_sym_register] = ACTIONS(4980), - [anon_sym_inline] = ACTIONS(4980), - [anon_sym___inline] = ACTIONS(4980), - [anon_sym___inline__] = ACTIONS(4980), - [anon_sym___forceinline] = ACTIONS(4980), - [anon_sym_thread_local] = ACTIONS(4980), - [anon_sym___thread] = ACTIONS(4980), - [anon_sym_const] = ACTIONS(4980), - [anon_sym_constexpr] = ACTIONS(4980), - [anon_sym_volatile] = ACTIONS(4980), - [anon_sym_restrict] = ACTIONS(4980), - [anon_sym___restrict__] = ACTIONS(4980), - [anon_sym__Atomic] = ACTIONS(4980), - [anon_sym__Noreturn] = ACTIONS(4980), - [anon_sym_noreturn] = ACTIONS(4980), - [anon_sym__Nonnull] = ACTIONS(4980), - [anon_sym_mutable] = ACTIONS(4980), - [anon_sym_constinit] = ACTIONS(4980), - [anon_sym_consteval] = ACTIONS(4980), - [anon_sym_alignas] = ACTIONS(4980), - [anon_sym__Alignas] = ACTIONS(4980), - [anon_sym_QMARK] = ACTIONS(4982), - [anon_sym_LT_EQ_GT] = ACTIONS(4982), - [anon_sym_or] = ACTIONS(4980), - [anon_sym_and] = ACTIONS(4980), - [anon_sym_bitor] = ACTIONS(4980), - [anon_sym_xor] = ACTIONS(4980), - [anon_sym_bitand] = ACTIONS(4980), - [anon_sym_not_eq] = ACTIONS(4980), - [anon_sym_DASH_DASH] = ACTIONS(4982), - [anon_sym_PLUS_PLUS] = ACTIONS(4982), - [anon_sym_DOT] = ACTIONS(4980), - [anon_sym_DOT_STAR] = ACTIONS(4982), - [anon_sym_DASH_GT] = ACTIONS(4982), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4980), - [anon_sym_decltype] = ACTIONS(4980), - [anon_sym_final] = ACTIONS(4980), - [anon_sym_override] = ACTIONS(4980), - [anon_sym_template] = ACTIONS(4980), - [anon_sym_operator] = ACTIONS(4980), - [anon_sym_try] = ACTIONS(4980), - [anon_sym_noexcept] = ACTIONS(4980), - [anon_sym_throw] = ACTIONS(4980), - [anon_sym_requires] = ACTIONS(4980), + [1586] = { + [sym_identifier] = ACTIONS(5002), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5004), + [anon_sym_COMMA] = ACTIONS(5004), + [anon_sym_RPAREN] = ACTIONS(5004), + [anon_sym_LPAREN2] = ACTIONS(5004), + [anon_sym_TILDE] = ACTIONS(5004), + [anon_sym_DASH] = ACTIONS(5002), + [anon_sym_PLUS] = ACTIONS(5002), + [anon_sym_STAR] = ACTIONS(5002), + [anon_sym_SLASH] = ACTIONS(5002), + [anon_sym_PERCENT] = ACTIONS(5002), + [anon_sym_PIPE_PIPE] = ACTIONS(5004), + [anon_sym_AMP_AMP] = ACTIONS(5004), + [anon_sym_PIPE] = ACTIONS(5002), + [anon_sym_CARET] = ACTIONS(5002), + [anon_sym_AMP] = ACTIONS(5002), + [anon_sym_EQ_EQ] = ACTIONS(5004), + [anon_sym_BANG_EQ] = ACTIONS(5004), + [anon_sym_GT] = ACTIONS(5002), + [anon_sym_GT_EQ] = ACTIONS(5004), + [anon_sym_LT_EQ] = ACTIONS(5002), + [anon_sym_LT] = ACTIONS(5002), + [anon_sym_LT_LT] = ACTIONS(5002), + [anon_sym_GT_GT] = ACTIONS(5002), + [anon_sym___extension__] = ACTIONS(5002), + [anon_sym_virtual] = ACTIONS(5002), + [anon_sym_extern] = ACTIONS(5002), + [anon_sym___attribute__] = ACTIONS(5002), + [anon_sym___attribute] = ACTIONS(5002), + [anon_sym_COLON_COLON] = ACTIONS(5004), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5004), + [anon_sym___declspec] = ACTIONS(5002), + [anon_sym___based] = ACTIONS(5002), + [anon_sym_LBRACE] = ACTIONS(5004), + [anon_sym_LBRACK] = ACTIONS(5002), + [anon_sym_static] = ACTIONS(5002), + [anon_sym_EQ] = ACTIONS(5002), + [anon_sym_register] = ACTIONS(5002), + [anon_sym_inline] = ACTIONS(5002), + [anon_sym___inline] = ACTIONS(5002), + [anon_sym___inline__] = ACTIONS(5002), + [anon_sym___forceinline] = ACTIONS(5002), + [anon_sym_thread_local] = ACTIONS(5002), + [anon_sym___thread] = ACTIONS(5002), + [anon_sym_const] = ACTIONS(5002), + [anon_sym_constexpr] = ACTIONS(5002), + [anon_sym_volatile] = ACTIONS(5002), + [anon_sym_restrict] = ACTIONS(5002), + [anon_sym___restrict__] = ACTIONS(5002), + [anon_sym__Atomic] = ACTIONS(5002), + [anon_sym__Noreturn] = ACTIONS(5002), + [anon_sym_noreturn] = ACTIONS(5002), + [anon_sym__Nonnull] = ACTIONS(5002), + [anon_sym_mutable] = ACTIONS(5002), + [anon_sym_constinit] = ACTIONS(5002), + [anon_sym_consteval] = ACTIONS(5002), + [anon_sym_alignas] = ACTIONS(5002), + [anon_sym__Alignas] = ACTIONS(5002), + [anon_sym_QMARK] = ACTIONS(5004), + [anon_sym_STAR_EQ] = ACTIONS(5004), + [anon_sym_SLASH_EQ] = ACTIONS(5004), + [anon_sym_PERCENT_EQ] = ACTIONS(5004), + [anon_sym_PLUS_EQ] = ACTIONS(5004), + [anon_sym_DASH_EQ] = ACTIONS(5004), + [anon_sym_LT_LT_EQ] = ACTIONS(5004), + [anon_sym_GT_GT_EQ] = ACTIONS(5004), + [anon_sym_AMP_EQ] = ACTIONS(5004), + [anon_sym_CARET_EQ] = ACTIONS(5004), + [anon_sym_PIPE_EQ] = ACTIONS(5004), + [anon_sym_and_eq] = ACTIONS(5002), + [anon_sym_or_eq] = ACTIONS(5002), + [anon_sym_xor_eq] = ACTIONS(5002), + [anon_sym_LT_EQ_GT] = ACTIONS(5004), + [anon_sym_or] = ACTIONS(5002), + [anon_sym_and] = ACTIONS(5002), + [anon_sym_bitor] = ACTIONS(5002), + [anon_sym_xor] = ACTIONS(5002), + [anon_sym_bitand] = ACTIONS(5002), + [anon_sym_not_eq] = ACTIONS(5002), + [anon_sym_DASH_DASH] = ACTIONS(5004), + [anon_sym_PLUS_PLUS] = ACTIONS(5004), + [anon_sym_DOT] = ACTIONS(5002), + [anon_sym_DOT_STAR] = ACTIONS(5004), + [anon_sym_DASH_GT] = ACTIONS(5002), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5002), + [anon_sym_decltype] = ACTIONS(5002), + [anon_sym_template] = ACTIONS(5002), + [anon_sym_operator] = ACTIONS(5002), + [anon_sym_DASH_GT_STAR] = ACTIONS(5004), }, - [1562] = { + [1587] = { [sym_identifier] = ACTIONS(4984), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4986), - [anon_sym_COMMA] = ACTIONS(4986), - [anon_sym_RPAREN] = ACTIONS(4986), - [anon_sym_LPAREN2] = ACTIONS(4986), - [anon_sym_TILDE] = ACTIONS(4986), - [anon_sym_DASH] = ACTIONS(4984), - [anon_sym_PLUS] = ACTIONS(4984), - [anon_sym_STAR] = ACTIONS(4986), - [anon_sym_SLASH] = ACTIONS(4984), - [anon_sym_PERCENT] = ACTIONS(4986), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4988), + [anon_sym_COMMA] = ACTIONS(4988), + [anon_sym_RPAREN] = ACTIONS(4988), + [anon_sym_LPAREN2] = ACTIONS(4988), + [anon_sym_TILDE] = ACTIONS(4991), + [anon_sym_DASH] = ACTIONS(4993), + [anon_sym_PLUS] = ACTIONS(4993), + [anon_sym_STAR] = ACTIONS(4995), + [anon_sym_SLASH] = ACTIONS(4993), + [anon_sym_PERCENT] = ACTIONS(4993), [anon_sym_PIPE_PIPE] = ACTIONS(4986), - [anon_sym_AMP_AMP] = ACTIONS(4986), - [anon_sym_PIPE] = ACTIONS(4984), - [anon_sym_CARET] = ACTIONS(4986), - [anon_sym_AMP] = ACTIONS(4984), + [anon_sym_AMP_AMP] = ACTIONS(4988), + [anon_sym_PIPE] = ACTIONS(4993), + [anon_sym_CARET] = ACTIONS(4993), + [anon_sym_AMP] = ACTIONS(4995), [anon_sym_EQ_EQ] = ACTIONS(4986), [anon_sym_BANG_EQ] = ACTIONS(4986), - [anon_sym_GT] = ACTIONS(4984), + [anon_sym_GT] = ACTIONS(4993), [anon_sym_GT_EQ] = ACTIONS(4986), - [anon_sym_LT_EQ] = ACTIONS(4984), - [anon_sym_LT] = ACTIONS(4984), - [anon_sym_LT_LT] = ACTIONS(4986), - [anon_sym_GT_GT] = ACTIONS(4986), - [anon_sym_SEMI] = ACTIONS(4986), + [anon_sym_LT_EQ] = ACTIONS(4993), + [anon_sym_LT] = ACTIONS(4993), + [anon_sym_LT_LT] = ACTIONS(4993), + [anon_sym_GT_GT] = ACTIONS(4993), [anon_sym___extension__] = ACTIONS(4984), [anon_sym_virtual] = ACTIONS(4984), [anon_sym_extern] = ACTIONS(4984), [anon_sym___attribute__] = ACTIONS(4984), [anon_sym___attribute] = ACTIONS(4984), - [anon_sym_COLON] = ACTIONS(4984), - [anon_sym_COLON_COLON] = ACTIONS(4986), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4986), + [anon_sym_COLON_COLON] = ACTIONS(4991), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4991), [anon_sym___declspec] = ACTIONS(4984), [anon_sym___based] = ACTIONS(4984), - [anon_sym___cdecl] = ACTIONS(4984), - [anon_sym___clrcall] = ACTIONS(4984), - [anon_sym___stdcall] = ACTIONS(4984), - [anon_sym___fastcall] = ACTIONS(4984), - [anon_sym___thiscall] = ACTIONS(4984), - [anon_sym___vectorcall] = ACTIONS(4984), - [anon_sym_LBRACE] = ACTIONS(4986), - [anon_sym_RBRACE] = ACTIONS(4986), - [anon_sym_LBRACK] = ACTIONS(4984), + [anon_sym_LBRACE] = ACTIONS(4991), + [anon_sym_LBRACK] = ACTIONS(4995), [anon_sym_static] = ACTIONS(4984), - [anon_sym_RBRACK] = ACTIONS(4986), - [anon_sym_EQ] = ACTIONS(4984), + [anon_sym_EQ] = ACTIONS(4995), [anon_sym_register] = ACTIONS(4984), [anon_sym_inline] = ACTIONS(4984), [anon_sym___inline] = ACTIONS(4984), @@ -235665,311 +239155,315 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(4984), [anon_sym__Alignas] = ACTIONS(4984), [anon_sym_QMARK] = ACTIONS(4986), + [anon_sym_STAR_EQ] = ACTIONS(4986), + [anon_sym_SLASH_EQ] = ACTIONS(4986), + [anon_sym_PERCENT_EQ] = ACTIONS(4986), + [anon_sym_PLUS_EQ] = ACTIONS(4986), + [anon_sym_DASH_EQ] = ACTIONS(4986), + [anon_sym_LT_LT_EQ] = ACTIONS(4986), + [anon_sym_GT_GT_EQ] = ACTIONS(4986), + [anon_sym_AMP_EQ] = ACTIONS(4986), + [anon_sym_CARET_EQ] = ACTIONS(4986), + [anon_sym_PIPE_EQ] = ACTIONS(4986), + [anon_sym_and_eq] = ACTIONS(4993), + [anon_sym_or_eq] = ACTIONS(4993), + [anon_sym_xor_eq] = ACTIONS(4993), [anon_sym_LT_EQ_GT] = ACTIONS(4986), - [anon_sym_or] = ACTIONS(4984), - [anon_sym_and] = ACTIONS(4984), - [anon_sym_bitor] = ACTIONS(4984), - [anon_sym_xor] = ACTIONS(4984), - [anon_sym_bitand] = ACTIONS(4984), - [anon_sym_not_eq] = ACTIONS(4984), + [anon_sym_or] = ACTIONS(4993), + [anon_sym_and] = ACTIONS(4993), + [anon_sym_bitor] = ACTIONS(4993), + [anon_sym_xor] = ACTIONS(4993), + [anon_sym_bitand] = ACTIONS(4993), + [anon_sym_not_eq] = ACTIONS(4993), [anon_sym_DASH_DASH] = ACTIONS(4986), [anon_sym_PLUS_PLUS] = ACTIONS(4986), - [anon_sym_DOT] = ACTIONS(4984), + [anon_sym_DOT] = ACTIONS(4993), [anon_sym_DOT_STAR] = ACTIONS(4986), - [anon_sym_DASH_GT] = ACTIONS(4986), + [anon_sym_DASH_GT] = ACTIONS(4993), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(4984), [anon_sym_decltype] = ACTIONS(4984), - [anon_sym_final] = ACTIONS(4984), - [anon_sym_override] = ACTIONS(4984), [anon_sym_template] = ACTIONS(4984), [anon_sym_operator] = ACTIONS(4984), - [anon_sym_try] = ACTIONS(4984), - [anon_sym_noexcept] = ACTIONS(4984), - [anon_sym_throw] = ACTIONS(4984), - [anon_sym_requires] = ACTIONS(4984), + [anon_sym_DASH_GT_STAR] = ACTIONS(4986), }, - [1563] = { - [sym__declaration_modifiers] = STATE(2136), - [sym__declaration_specifiers] = STATE(5264), - [sym_attribute_specifier] = STATE(2136), - [sym_attribute_declaration] = STATE(2136), - [sym_ms_declspec_modifier] = STATE(2136), - [sym_ms_based_modifier] = STATE(8682), - [sym__declarator] = STATE(6711), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(5998), - [sym_array_declarator] = STATE(5998), - [sym_storage_class_specifier] = STATE(2136), - [sym_type_qualifier] = STATE(2136), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym_dependent_type] = STATE(2523), - [sym_template_parameter_list] = STATE(836), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(4191), - [sym_template_function] = STATE(5998), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5685), - [sym_qualified_identifier] = STATE(5998), - [sym_qualified_type_identifier] = STATE(3015), - [sym_operator_name] = STATE(5998), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [sym_identifier] = ACTIONS(5024), - [anon_sym_LPAREN2] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2979), - [anon_sym_STAR] = ACTIONS(2981), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2983), - [anon_sym_LT] = ACTIONS(5026), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1446), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5028), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2995), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2999), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_operator] = ACTIONS(1852), + [1588] = { + [sym_identifier] = ACTIONS(5010), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5012), + [anon_sym_COMMA] = ACTIONS(5012), + [anon_sym_RPAREN] = ACTIONS(5012), + [anon_sym_LPAREN2] = ACTIONS(5012), + [anon_sym_TILDE] = ACTIONS(5012), + [anon_sym_DASH] = ACTIONS(5010), + [anon_sym_PLUS] = ACTIONS(5010), + [anon_sym_STAR] = ACTIONS(5010), + [anon_sym_SLASH] = ACTIONS(5010), + [anon_sym_PERCENT] = ACTIONS(5010), + [anon_sym_PIPE_PIPE] = ACTIONS(5012), + [anon_sym_AMP_AMP] = ACTIONS(5012), + [anon_sym_PIPE] = ACTIONS(5010), + [anon_sym_CARET] = ACTIONS(5010), + [anon_sym_AMP] = ACTIONS(5010), + [anon_sym_EQ_EQ] = ACTIONS(5012), + [anon_sym_BANG_EQ] = ACTIONS(5012), + [anon_sym_GT] = ACTIONS(5010), + [anon_sym_GT_EQ] = ACTIONS(5012), + [anon_sym_LT_EQ] = ACTIONS(5010), + [anon_sym_LT] = ACTIONS(5010), + [anon_sym_LT_LT] = ACTIONS(5010), + [anon_sym_GT_GT] = ACTIONS(5010), + [anon_sym___extension__] = ACTIONS(5010), + [anon_sym_virtual] = ACTIONS(5010), + [anon_sym_extern] = ACTIONS(5010), + [anon_sym___attribute__] = ACTIONS(5010), + [anon_sym___attribute] = ACTIONS(5010), + [anon_sym_COLON_COLON] = ACTIONS(5012), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5012), + [anon_sym___declspec] = ACTIONS(5010), + [anon_sym___based] = ACTIONS(5010), + [anon_sym_LBRACE] = ACTIONS(5012), + [anon_sym_LBRACK] = ACTIONS(5010), + [anon_sym_static] = ACTIONS(5010), + [anon_sym_EQ] = ACTIONS(5010), + [anon_sym_register] = ACTIONS(5010), + [anon_sym_inline] = ACTIONS(5010), + [anon_sym___inline] = ACTIONS(5010), + [anon_sym___inline__] = ACTIONS(5010), + [anon_sym___forceinline] = ACTIONS(5010), + [anon_sym_thread_local] = ACTIONS(5010), + [anon_sym___thread] = ACTIONS(5010), + [anon_sym_const] = ACTIONS(5010), + [anon_sym_constexpr] = ACTIONS(5010), + [anon_sym_volatile] = ACTIONS(5010), + [anon_sym_restrict] = ACTIONS(5010), + [anon_sym___restrict__] = ACTIONS(5010), + [anon_sym__Atomic] = ACTIONS(5010), + [anon_sym__Noreturn] = ACTIONS(5010), + [anon_sym_noreturn] = ACTIONS(5010), + [anon_sym__Nonnull] = ACTIONS(5010), + [anon_sym_mutable] = ACTIONS(5010), + [anon_sym_constinit] = ACTIONS(5010), + [anon_sym_consteval] = ACTIONS(5010), + [anon_sym_alignas] = ACTIONS(5010), + [anon_sym__Alignas] = ACTIONS(5010), + [anon_sym_QMARK] = ACTIONS(5012), + [anon_sym_STAR_EQ] = ACTIONS(5012), + [anon_sym_SLASH_EQ] = ACTIONS(5012), + [anon_sym_PERCENT_EQ] = ACTIONS(5012), + [anon_sym_PLUS_EQ] = ACTIONS(5012), + [anon_sym_DASH_EQ] = ACTIONS(5012), + [anon_sym_LT_LT_EQ] = ACTIONS(5012), + [anon_sym_GT_GT_EQ] = ACTIONS(5012), + [anon_sym_AMP_EQ] = ACTIONS(5012), + [anon_sym_CARET_EQ] = ACTIONS(5012), + [anon_sym_PIPE_EQ] = ACTIONS(5012), + [anon_sym_and_eq] = ACTIONS(5010), + [anon_sym_or_eq] = ACTIONS(5010), + [anon_sym_xor_eq] = ACTIONS(5010), + [anon_sym_LT_EQ_GT] = ACTIONS(5012), + [anon_sym_or] = ACTIONS(5010), + [anon_sym_and] = ACTIONS(5010), + [anon_sym_bitor] = ACTIONS(5010), + [anon_sym_xor] = ACTIONS(5010), + [anon_sym_bitand] = ACTIONS(5010), + [anon_sym_not_eq] = ACTIONS(5010), + [anon_sym_DASH_DASH] = ACTIONS(5012), + [anon_sym_PLUS_PLUS] = ACTIONS(5012), + [anon_sym_DOT] = ACTIONS(5010), + [anon_sym_DOT_STAR] = ACTIONS(5012), + [anon_sym_DASH_GT] = ACTIONS(5010), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5010), + [anon_sym_decltype] = ACTIONS(5010), + [anon_sym_template] = ACTIONS(5010), + [anon_sym_operator] = ACTIONS(5010), + [anon_sym_DASH_GT_STAR] = ACTIONS(5012), }, - [1564] = { - [sym_template_argument_list] = STATE(1574), - [sym_identifier] = ACTIONS(4963), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4967), - [anon_sym_COMMA] = ACTIONS(4967), - [anon_sym_RPAREN] = ACTIONS(4967), - [anon_sym_LPAREN2] = ACTIONS(4967), - [anon_sym_TILDE] = ACTIONS(4970), - [anon_sym_DASH] = ACTIONS(4972), - [anon_sym_PLUS] = ACTIONS(4972), - [anon_sym_STAR] = ACTIONS(4974), - [anon_sym_SLASH] = ACTIONS(4972), - [anon_sym_PERCENT] = ACTIONS(4972), - [anon_sym_PIPE_PIPE] = ACTIONS(4965), - [anon_sym_AMP_AMP] = ACTIONS(4967), - [anon_sym_PIPE] = ACTIONS(4972), - [anon_sym_CARET] = ACTIONS(4972), - [anon_sym_AMP] = ACTIONS(4974), - [anon_sym_EQ_EQ] = ACTIONS(4965), - [anon_sym_BANG_EQ] = ACTIONS(4965), - [anon_sym_GT] = ACTIONS(4972), - [anon_sym_GT_EQ] = ACTIONS(4965), - [anon_sym_LT_EQ] = ACTIONS(4972), - [anon_sym_LT] = ACTIONS(5030), - [anon_sym_LT_LT] = ACTIONS(4972), - [anon_sym_GT_GT] = ACTIONS(4972), - [anon_sym___extension__] = ACTIONS(4963), - [anon_sym_virtual] = ACTIONS(4963), - [anon_sym_extern] = ACTIONS(4963), - [anon_sym___attribute__] = ACTIONS(4963), - [anon_sym___attribute] = ACTIONS(4963), - [anon_sym_COLON_COLON] = ACTIONS(4167), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4970), - [anon_sym___declspec] = ACTIONS(4963), - [anon_sym___based] = ACTIONS(4963), - [anon_sym_LBRACE] = ACTIONS(4970), - [anon_sym_LBRACK] = ACTIONS(4974), - [anon_sym_static] = ACTIONS(4963), - [anon_sym_EQ] = ACTIONS(4974), - [anon_sym_register] = ACTIONS(4963), - [anon_sym_inline] = ACTIONS(4963), - [anon_sym___inline] = ACTIONS(4963), - [anon_sym___inline__] = ACTIONS(4963), - [anon_sym___forceinline] = ACTIONS(4963), - [anon_sym_thread_local] = ACTIONS(4963), - [anon_sym___thread] = ACTIONS(4963), - [anon_sym_const] = ACTIONS(4963), - [anon_sym_constexpr] = ACTIONS(4963), - [anon_sym_volatile] = ACTIONS(4963), - [anon_sym_restrict] = ACTIONS(4963), - [anon_sym___restrict__] = ACTIONS(4963), - [anon_sym__Atomic] = ACTIONS(4963), - [anon_sym__Noreturn] = ACTIONS(4963), - [anon_sym_noreturn] = ACTIONS(4963), - [anon_sym__Nonnull] = ACTIONS(4963), - [anon_sym_mutable] = ACTIONS(4963), - [anon_sym_constinit] = ACTIONS(4963), - [anon_sym_consteval] = ACTIONS(4963), - [anon_sym_alignas] = ACTIONS(4963), - [anon_sym__Alignas] = ACTIONS(4963), - [anon_sym_QMARK] = ACTIONS(4965), - [anon_sym_STAR_EQ] = ACTIONS(4965), - [anon_sym_SLASH_EQ] = ACTIONS(4965), - [anon_sym_PERCENT_EQ] = ACTIONS(4965), - [anon_sym_PLUS_EQ] = ACTIONS(4965), - [anon_sym_DASH_EQ] = ACTIONS(4965), - [anon_sym_LT_LT_EQ] = ACTIONS(4965), - [anon_sym_GT_GT_EQ] = ACTIONS(4965), - [anon_sym_AMP_EQ] = ACTIONS(4965), - [anon_sym_CARET_EQ] = ACTIONS(4965), - [anon_sym_PIPE_EQ] = ACTIONS(4965), - [anon_sym_and_eq] = ACTIONS(4972), - [anon_sym_or_eq] = ACTIONS(4972), - [anon_sym_xor_eq] = ACTIONS(4972), - [anon_sym_LT_EQ_GT] = ACTIONS(4965), - [anon_sym_or] = ACTIONS(4972), - [anon_sym_and] = ACTIONS(4972), - [anon_sym_bitor] = ACTIONS(4972), - [anon_sym_xor] = ACTIONS(4972), - [anon_sym_bitand] = ACTIONS(4972), - [anon_sym_not_eq] = ACTIONS(4972), - [anon_sym_DASH_DASH] = ACTIONS(4965), - [anon_sym_PLUS_PLUS] = ACTIONS(4965), - [anon_sym_DOT] = ACTIONS(4972), - [anon_sym_DOT_STAR] = ACTIONS(4965), - [anon_sym_DASH_GT] = ACTIONS(4972), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4963), - [anon_sym_decltype] = ACTIONS(4963), - [anon_sym_template] = ACTIONS(4963), - [anon_sym_operator] = ACTIONS(4963), - [anon_sym_DASH_GT_STAR] = ACTIONS(4965), + [1589] = { + [sym_identifier] = ACTIONS(4976), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4978), + [anon_sym_COMMA] = ACTIONS(4978), + [anon_sym_RPAREN] = ACTIONS(4978), + [anon_sym_LPAREN2] = ACTIONS(4978), + [anon_sym_TILDE] = ACTIONS(4978), + [anon_sym_DASH] = ACTIONS(4976), + [anon_sym_PLUS] = ACTIONS(4976), + [anon_sym_STAR] = ACTIONS(4976), + [anon_sym_SLASH] = ACTIONS(4976), + [anon_sym_PERCENT] = ACTIONS(4976), + [anon_sym_PIPE_PIPE] = ACTIONS(4978), + [anon_sym_AMP_AMP] = ACTIONS(4978), + [anon_sym_PIPE] = ACTIONS(4976), + [anon_sym_CARET] = ACTIONS(4976), + [anon_sym_AMP] = ACTIONS(4976), + [anon_sym_EQ_EQ] = ACTIONS(4978), + [anon_sym_BANG_EQ] = ACTIONS(4978), + [anon_sym_GT] = ACTIONS(4976), + [anon_sym_GT_EQ] = ACTIONS(4978), + [anon_sym_LT_EQ] = ACTIONS(4976), + [anon_sym_LT] = ACTIONS(4976), + [anon_sym_LT_LT] = ACTIONS(4976), + [anon_sym_GT_GT] = ACTIONS(4976), + [anon_sym___extension__] = ACTIONS(4976), + [anon_sym_virtual] = ACTIONS(4976), + [anon_sym_extern] = ACTIONS(4976), + [anon_sym___attribute__] = ACTIONS(4976), + [anon_sym___attribute] = ACTIONS(4976), + [anon_sym_COLON_COLON] = ACTIONS(4978), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4978), + [anon_sym___declspec] = ACTIONS(4976), + [anon_sym___based] = ACTIONS(4976), + [anon_sym_LBRACE] = ACTIONS(4978), + [anon_sym_LBRACK] = ACTIONS(4976), + [anon_sym_static] = ACTIONS(4976), + [anon_sym_EQ] = ACTIONS(4976), + [anon_sym_register] = ACTIONS(4976), + [anon_sym_inline] = ACTIONS(4976), + [anon_sym___inline] = ACTIONS(4976), + [anon_sym___inline__] = ACTIONS(4976), + [anon_sym___forceinline] = ACTIONS(4976), + [anon_sym_thread_local] = ACTIONS(4976), + [anon_sym___thread] = ACTIONS(4976), + [anon_sym_const] = ACTIONS(4976), + [anon_sym_constexpr] = ACTIONS(4976), + [anon_sym_volatile] = ACTIONS(4976), + [anon_sym_restrict] = ACTIONS(4976), + [anon_sym___restrict__] = ACTIONS(4976), + [anon_sym__Atomic] = ACTIONS(4976), + [anon_sym__Noreturn] = ACTIONS(4976), + [anon_sym_noreturn] = ACTIONS(4976), + [anon_sym__Nonnull] = ACTIONS(4976), + [anon_sym_mutable] = ACTIONS(4976), + [anon_sym_constinit] = ACTIONS(4976), + [anon_sym_consteval] = ACTIONS(4976), + [anon_sym_alignas] = ACTIONS(4976), + [anon_sym__Alignas] = ACTIONS(4976), + [anon_sym_QMARK] = ACTIONS(4978), + [anon_sym_STAR_EQ] = ACTIONS(4978), + [anon_sym_SLASH_EQ] = ACTIONS(4978), + [anon_sym_PERCENT_EQ] = ACTIONS(4978), + [anon_sym_PLUS_EQ] = ACTIONS(4978), + [anon_sym_DASH_EQ] = ACTIONS(4978), + [anon_sym_LT_LT_EQ] = ACTIONS(4978), + [anon_sym_GT_GT_EQ] = ACTIONS(4978), + [anon_sym_AMP_EQ] = ACTIONS(4978), + [anon_sym_CARET_EQ] = ACTIONS(4978), + [anon_sym_PIPE_EQ] = ACTIONS(4978), + [anon_sym_and_eq] = ACTIONS(4976), + [anon_sym_or_eq] = ACTIONS(4976), + [anon_sym_xor_eq] = ACTIONS(4976), + [anon_sym_LT_EQ_GT] = ACTIONS(4978), + [anon_sym_or] = ACTIONS(4976), + [anon_sym_and] = ACTIONS(4976), + [anon_sym_bitor] = ACTIONS(4976), + [anon_sym_xor] = ACTIONS(4976), + [anon_sym_bitand] = ACTIONS(4976), + [anon_sym_not_eq] = ACTIONS(4976), + [anon_sym_DASH_DASH] = ACTIONS(4978), + [anon_sym_PLUS_PLUS] = ACTIONS(4978), + [anon_sym_DOT] = ACTIONS(4976), + [anon_sym_DOT_STAR] = ACTIONS(4978), + [anon_sym_DASH_GT] = ACTIONS(4976), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4976), + [anon_sym_decltype] = ACTIONS(4976), + [anon_sym_template] = ACTIONS(4976), + [anon_sym_operator] = ACTIONS(4976), + [anon_sym_DASH_GT_STAR] = ACTIONS(4978), }, - [1565] = { - [sym_identifier] = ACTIONS(4996), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4998), - [anon_sym_COMMA] = ACTIONS(4998), - [anon_sym_RPAREN] = ACTIONS(4998), + [1590] = { + [sym_identifier] = ACTIONS(4998), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5000), + [anon_sym_COMMA] = ACTIONS(5000), + [anon_sym_RPAREN] = ACTIONS(5000), [anon_sym_LPAREN2] = ACTIONS(5000), - [anon_sym_TILDE] = ACTIONS(5003), - [anon_sym_DASH] = ACTIONS(5005), - [anon_sym_PLUS] = ACTIONS(5005), - [anon_sym_STAR] = ACTIONS(5007), - [anon_sym_SLASH] = ACTIONS(5005), - [anon_sym_PERCENT] = ACTIONS(5005), - [anon_sym_PIPE_PIPE] = ACTIONS(4998), + [anon_sym_TILDE] = ACTIONS(5000), + [anon_sym_DASH] = ACTIONS(4998), + [anon_sym_PLUS] = ACTIONS(4998), + [anon_sym_STAR] = ACTIONS(4998), + [anon_sym_SLASH] = ACTIONS(4998), + [anon_sym_PERCENT] = ACTIONS(4998), + [anon_sym_PIPE_PIPE] = ACTIONS(5000), [anon_sym_AMP_AMP] = ACTIONS(5000), - [anon_sym_PIPE] = ACTIONS(5005), - [anon_sym_CARET] = ACTIONS(5005), - [anon_sym_AMP] = ACTIONS(5007), - [anon_sym_EQ_EQ] = ACTIONS(4998), - [anon_sym_BANG_EQ] = ACTIONS(4998), - [anon_sym_GT] = ACTIONS(5005), - [anon_sym_GT_EQ] = ACTIONS(4998), - [anon_sym_LT_EQ] = ACTIONS(5005), - [anon_sym_LT] = ACTIONS(5005), - [anon_sym_LT_LT] = ACTIONS(5005), - [anon_sym_GT_GT] = ACTIONS(5005), - [anon_sym_SEMI] = ACTIONS(4998), - [anon_sym___extension__] = ACTIONS(4996), - [anon_sym_virtual] = ACTIONS(4996), - [anon_sym_extern] = ACTIONS(4996), - [anon_sym___attribute__] = ACTIONS(4996), - [anon_sym___attribute] = ACTIONS(4996), - [anon_sym_COLON_COLON] = ACTIONS(5003), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5003), - [anon_sym___declspec] = ACTIONS(4996), - [anon_sym___based] = ACTIONS(4996), - [anon_sym_LBRACE] = ACTIONS(5003), - [anon_sym_RBRACE] = ACTIONS(4998), - [anon_sym_LBRACK] = ACTIONS(5007), - [anon_sym_static] = ACTIONS(4996), - [anon_sym_EQ] = ACTIONS(5005), - [anon_sym_register] = ACTIONS(4996), - [anon_sym_inline] = ACTIONS(4996), - [anon_sym___inline] = ACTIONS(4996), - [anon_sym___inline__] = ACTIONS(4996), - [anon_sym___forceinline] = ACTIONS(4996), - [anon_sym_thread_local] = ACTIONS(4996), - [anon_sym___thread] = ACTIONS(4996), - [anon_sym_const] = ACTIONS(4996), - [anon_sym_constexpr] = ACTIONS(4996), - [anon_sym_volatile] = ACTIONS(4996), - [anon_sym_restrict] = ACTIONS(4996), - [anon_sym___restrict__] = ACTIONS(4996), - [anon_sym__Atomic] = ACTIONS(4996), - [anon_sym__Noreturn] = ACTIONS(4996), - [anon_sym_noreturn] = ACTIONS(4996), - [anon_sym__Nonnull] = ACTIONS(4996), - [anon_sym_mutable] = ACTIONS(4996), - [anon_sym_constinit] = ACTIONS(4996), - [anon_sym_consteval] = ACTIONS(4996), - [anon_sym_alignas] = ACTIONS(4996), - [anon_sym__Alignas] = ACTIONS(4996), - [anon_sym_QMARK] = ACTIONS(4998), - [anon_sym_STAR_EQ] = ACTIONS(4998), - [anon_sym_SLASH_EQ] = ACTIONS(4998), - [anon_sym_PERCENT_EQ] = ACTIONS(4998), - [anon_sym_PLUS_EQ] = ACTIONS(4998), - [anon_sym_DASH_EQ] = ACTIONS(4998), - [anon_sym_LT_LT_EQ] = ACTIONS(4998), - [anon_sym_GT_GT_EQ] = ACTIONS(4998), - [anon_sym_AMP_EQ] = ACTIONS(4998), - [anon_sym_CARET_EQ] = ACTIONS(4998), - [anon_sym_PIPE_EQ] = ACTIONS(4998), - [anon_sym_and_eq] = ACTIONS(5005), - [anon_sym_or_eq] = ACTIONS(5005), - [anon_sym_xor_eq] = ACTIONS(5005), - [anon_sym_LT_EQ_GT] = ACTIONS(4998), - [anon_sym_or] = ACTIONS(5005), - [anon_sym_and] = ACTIONS(5005), - [anon_sym_bitor] = ACTIONS(5005), - [anon_sym_xor] = ACTIONS(5005), - [anon_sym_bitand] = ACTIONS(5005), - [anon_sym_not_eq] = ACTIONS(5005), - [anon_sym_DASH_DASH] = ACTIONS(4998), - [anon_sym_PLUS_PLUS] = ACTIONS(4998), - [anon_sym_DOT] = ACTIONS(5005), - [anon_sym_DOT_STAR] = ACTIONS(4998), + [anon_sym_PIPE] = ACTIONS(4998), + [anon_sym_CARET] = ACTIONS(4998), + [anon_sym_AMP] = ACTIONS(4998), + [anon_sym_EQ_EQ] = ACTIONS(5000), + [anon_sym_BANG_EQ] = ACTIONS(5000), + [anon_sym_GT] = ACTIONS(4998), + [anon_sym_GT_EQ] = ACTIONS(5000), + [anon_sym_LT_EQ] = ACTIONS(4998), + [anon_sym_LT] = ACTIONS(4998), + [anon_sym_LT_LT] = ACTIONS(4998), + [anon_sym_GT_GT] = ACTIONS(4998), + [anon_sym___extension__] = ACTIONS(4998), + [anon_sym_virtual] = ACTIONS(4998), + [anon_sym_extern] = ACTIONS(4998), + [anon_sym___attribute__] = ACTIONS(4998), + [anon_sym___attribute] = ACTIONS(4998), + [anon_sym_COLON_COLON] = ACTIONS(5000), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5000), + [anon_sym___declspec] = ACTIONS(4998), + [anon_sym___based] = ACTIONS(4998), + [anon_sym_LBRACE] = ACTIONS(5000), + [anon_sym_LBRACK] = ACTIONS(4998), + [anon_sym_static] = ACTIONS(4998), + [anon_sym_EQ] = ACTIONS(4998), + [anon_sym_register] = ACTIONS(4998), + [anon_sym_inline] = ACTIONS(4998), + [anon_sym___inline] = ACTIONS(4998), + [anon_sym___inline__] = ACTIONS(4998), + [anon_sym___forceinline] = ACTIONS(4998), + [anon_sym_thread_local] = ACTIONS(4998), + [anon_sym___thread] = ACTIONS(4998), + [anon_sym_const] = ACTIONS(4998), + [anon_sym_constexpr] = ACTIONS(4998), + [anon_sym_volatile] = ACTIONS(4998), + [anon_sym_restrict] = ACTIONS(4998), + [anon_sym___restrict__] = ACTIONS(4998), + [anon_sym__Atomic] = ACTIONS(4998), + [anon_sym__Noreturn] = ACTIONS(4998), + [anon_sym_noreturn] = ACTIONS(4998), + [anon_sym__Nonnull] = ACTIONS(4998), + [anon_sym_mutable] = ACTIONS(4998), + [anon_sym_constinit] = ACTIONS(4998), + [anon_sym_consteval] = ACTIONS(4998), + [anon_sym_alignas] = ACTIONS(4998), + [anon_sym__Alignas] = ACTIONS(4998), + [anon_sym_QMARK] = ACTIONS(5000), + [anon_sym_STAR_EQ] = ACTIONS(5000), + [anon_sym_SLASH_EQ] = ACTIONS(5000), + [anon_sym_PERCENT_EQ] = ACTIONS(5000), + [anon_sym_PLUS_EQ] = ACTIONS(5000), + [anon_sym_DASH_EQ] = ACTIONS(5000), + [anon_sym_LT_LT_EQ] = ACTIONS(5000), + [anon_sym_GT_GT_EQ] = ACTIONS(5000), + [anon_sym_AMP_EQ] = ACTIONS(5000), + [anon_sym_CARET_EQ] = ACTIONS(5000), + [anon_sym_PIPE_EQ] = ACTIONS(5000), + [anon_sym_and_eq] = ACTIONS(4998), + [anon_sym_or_eq] = ACTIONS(4998), + [anon_sym_xor_eq] = ACTIONS(4998), + [anon_sym_LT_EQ_GT] = ACTIONS(5000), + [anon_sym_or] = ACTIONS(4998), + [anon_sym_and] = ACTIONS(4998), + [anon_sym_bitor] = ACTIONS(4998), + [anon_sym_xor] = ACTIONS(4998), + [anon_sym_bitand] = ACTIONS(4998), + [anon_sym_not_eq] = ACTIONS(4998), + [anon_sym_DASH_DASH] = ACTIONS(5000), + [anon_sym_PLUS_PLUS] = ACTIONS(5000), + [anon_sym_DOT] = ACTIONS(4998), + [anon_sym_DOT_STAR] = ACTIONS(5000), [anon_sym_DASH_GT] = ACTIONS(4998), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4996), - [anon_sym_decltype] = ACTIONS(4996), - [anon_sym_template] = ACTIONS(4996), - [anon_sym_operator] = ACTIONS(4996), + [sym_auto] = ACTIONS(4998), + [anon_sym_decltype] = ACTIONS(4998), + [anon_sym_template] = ACTIONS(4998), + [anon_sym_operator] = ACTIONS(4998), + [anon_sym_DASH_GT_STAR] = ACTIONS(5000), }, - [1566] = { + [1591] = { [sym_identifier] = ACTIONS(4980), [anon_sym_DOT_DOT_DOT] = ACTIONS(4982), [anon_sym_COMMA] = ACTIONS(4982), @@ -236061,44 +239555,412 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_operator] = ACTIONS(4980), [anon_sym_DASH_GT_STAR] = ACTIONS(4982), }, - [1567] = { + [1592] = { + [sym_identifier] = ACTIONS(5014), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5016), + [anon_sym_COMMA] = ACTIONS(5016), + [anon_sym_RPAREN] = ACTIONS(5016), + [anon_sym_LPAREN2] = ACTIONS(5016), + [anon_sym_TILDE] = ACTIONS(5016), + [anon_sym_DASH] = ACTIONS(5014), + [anon_sym_PLUS] = ACTIONS(5014), + [anon_sym_STAR] = ACTIONS(5014), + [anon_sym_SLASH] = ACTIONS(5014), + [anon_sym_PERCENT] = ACTIONS(5014), + [anon_sym_PIPE_PIPE] = ACTIONS(5016), + [anon_sym_AMP_AMP] = ACTIONS(5016), + [anon_sym_PIPE] = ACTIONS(5014), + [anon_sym_CARET] = ACTIONS(5014), + [anon_sym_AMP] = ACTIONS(5014), + [anon_sym_EQ_EQ] = ACTIONS(5016), + [anon_sym_BANG_EQ] = ACTIONS(5016), + [anon_sym_GT] = ACTIONS(5014), + [anon_sym_GT_EQ] = ACTIONS(5016), + [anon_sym_LT_EQ] = ACTIONS(5014), + [anon_sym_LT] = ACTIONS(5014), + [anon_sym_LT_LT] = ACTIONS(5014), + [anon_sym_GT_GT] = ACTIONS(5014), + [anon_sym___extension__] = ACTIONS(5014), + [anon_sym_virtual] = ACTIONS(5014), + [anon_sym_extern] = ACTIONS(5014), + [anon_sym___attribute__] = ACTIONS(5014), + [anon_sym___attribute] = ACTIONS(5014), + [anon_sym_COLON_COLON] = ACTIONS(5016), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5016), + [anon_sym___declspec] = ACTIONS(5014), + [anon_sym___based] = ACTIONS(5014), + [anon_sym_LBRACE] = ACTIONS(5016), + [anon_sym_LBRACK] = ACTIONS(5014), + [anon_sym_static] = ACTIONS(5014), + [anon_sym_EQ] = ACTIONS(5014), + [anon_sym_register] = ACTIONS(5014), + [anon_sym_inline] = ACTIONS(5014), + [anon_sym___inline] = ACTIONS(5014), + [anon_sym___inline__] = ACTIONS(5014), + [anon_sym___forceinline] = ACTIONS(5014), + [anon_sym_thread_local] = ACTIONS(5014), + [anon_sym___thread] = ACTIONS(5014), + [anon_sym_const] = ACTIONS(5014), + [anon_sym_constexpr] = ACTIONS(5014), + [anon_sym_volatile] = ACTIONS(5014), + [anon_sym_restrict] = ACTIONS(5014), + [anon_sym___restrict__] = ACTIONS(5014), + [anon_sym__Atomic] = ACTIONS(5014), + [anon_sym__Noreturn] = ACTIONS(5014), + [anon_sym_noreturn] = ACTIONS(5014), + [anon_sym__Nonnull] = ACTIONS(5014), + [anon_sym_mutable] = ACTIONS(5014), + [anon_sym_constinit] = ACTIONS(5014), + [anon_sym_consteval] = ACTIONS(5014), + [anon_sym_alignas] = ACTIONS(5014), + [anon_sym__Alignas] = ACTIONS(5014), + [anon_sym_QMARK] = ACTIONS(5016), + [anon_sym_STAR_EQ] = ACTIONS(5016), + [anon_sym_SLASH_EQ] = ACTIONS(5016), + [anon_sym_PERCENT_EQ] = ACTIONS(5016), + [anon_sym_PLUS_EQ] = ACTIONS(5016), + [anon_sym_DASH_EQ] = ACTIONS(5016), + [anon_sym_LT_LT_EQ] = ACTIONS(5016), + [anon_sym_GT_GT_EQ] = ACTIONS(5016), + [anon_sym_AMP_EQ] = ACTIONS(5016), + [anon_sym_CARET_EQ] = ACTIONS(5016), + [anon_sym_PIPE_EQ] = ACTIONS(5016), + [anon_sym_and_eq] = ACTIONS(5014), + [anon_sym_or_eq] = ACTIONS(5014), + [anon_sym_xor_eq] = ACTIONS(5014), + [anon_sym_LT_EQ_GT] = ACTIONS(5016), + [anon_sym_or] = ACTIONS(5014), + [anon_sym_and] = ACTIONS(5014), + [anon_sym_bitor] = ACTIONS(5014), + [anon_sym_xor] = ACTIONS(5014), + [anon_sym_bitand] = ACTIONS(5014), + [anon_sym_not_eq] = ACTIONS(5014), + [anon_sym_DASH_DASH] = ACTIONS(5016), + [anon_sym_PLUS_PLUS] = ACTIONS(5016), + [anon_sym_DOT] = ACTIONS(5014), + [anon_sym_DOT_STAR] = ACTIONS(5016), + [anon_sym_DASH_GT] = ACTIONS(5014), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5014), + [anon_sym_decltype] = ACTIONS(5014), + [anon_sym_template] = ACTIONS(5014), + [anon_sym_operator] = ACTIONS(5014), + [anon_sym_DASH_GT_STAR] = ACTIONS(5016), + }, + [1593] = { + [sym_template_argument_list] = STATE(1596), + [sym_identifier] = ACTIONS(4925), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4929), + [anon_sym_COMMA] = ACTIONS(4929), + [anon_sym_RPAREN] = ACTIONS(4929), + [anon_sym_LPAREN2] = ACTIONS(4929), + [anon_sym_TILDE] = ACTIONS(4932), + [anon_sym_DASH] = ACTIONS(4934), + [anon_sym_PLUS] = ACTIONS(4934), + [anon_sym_STAR] = ACTIONS(4936), + [anon_sym_SLASH] = ACTIONS(4934), + [anon_sym_PERCENT] = ACTIONS(4934), + [anon_sym_PIPE_PIPE] = ACTIONS(4927), + [anon_sym_AMP_AMP] = ACTIONS(4929), + [anon_sym_PIPE] = ACTIONS(4934), + [anon_sym_CARET] = ACTIONS(4934), + [anon_sym_AMP] = ACTIONS(4936), + [anon_sym_EQ_EQ] = ACTIONS(4927), + [anon_sym_BANG_EQ] = ACTIONS(4927), + [anon_sym_GT] = ACTIONS(4934), + [anon_sym_GT_EQ] = ACTIONS(4927), + [anon_sym_LT_EQ] = ACTIONS(4934), + [anon_sym_LT] = ACTIONS(4939), + [anon_sym_LT_LT] = ACTIONS(4934), + [anon_sym_GT_GT] = ACTIONS(4934), + [anon_sym___extension__] = ACTIONS(4925), + [anon_sym_virtual] = ACTIONS(4925), + [anon_sym_extern] = ACTIONS(4925), + [anon_sym___attribute__] = ACTIONS(4925), + [anon_sym___attribute] = ACTIONS(4925), + [anon_sym_COLON_COLON] = ACTIONS(4187), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4932), + [anon_sym___declspec] = ACTIONS(4925), + [anon_sym___based] = ACTIONS(4925), + [anon_sym_LBRACE] = ACTIONS(4932), + [anon_sym_LBRACK] = ACTIONS(4936), + [anon_sym_static] = ACTIONS(4925), + [anon_sym_EQ] = ACTIONS(4936), + [anon_sym_register] = ACTIONS(4925), + [anon_sym_inline] = ACTIONS(4925), + [anon_sym___inline] = ACTIONS(4925), + [anon_sym___inline__] = ACTIONS(4925), + [anon_sym___forceinline] = ACTIONS(4925), + [anon_sym_thread_local] = ACTIONS(4925), + [anon_sym___thread] = ACTIONS(4925), + [anon_sym_const] = ACTIONS(4925), + [anon_sym_constexpr] = ACTIONS(4925), + [anon_sym_volatile] = ACTIONS(4925), + [anon_sym_restrict] = ACTIONS(4925), + [anon_sym___restrict__] = ACTIONS(4925), + [anon_sym__Atomic] = ACTIONS(4925), + [anon_sym__Noreturn] = ACTIONS(4925), + [anon_sym_noreturn] = ACTIONS(4925), + [anon_sym__Nonnull] = ACTIONS(4925), + [anon_sym_mutable] = ACTIONS(4925), + [anon_sym_constinit] = ACTIONS(4925), + [anon_sym_consteval] = ACTIONS(4925), + [anon_sym_alignas] = ACTIONS(4925), + [anon_sym__Alignas] = ACTIONS(4925), + [anon_sym_QMARK] = ACTIONS(4927), + [anon_sym_STAR_EQ] = ACTIONS(4927), + [anon_sym_SLASH_EQ] = ACTIONS(4927), + [anon_sym_PERCENT_EQ] = ACTIONS(4927), + [anon_sym_PLUS_EQ] = ACTIONS(4927), + [anon_sym_DASH_EQ] = ACTIONS(4927), + [anon_sym_LT_LT_EQ] = ACTIONS(4927), + [anon_sym_GT_GT_EQ] = ACTIONS(4927), + [anon_sym_AMP_EQ] = ACTIONS(4927), + [anon_sym_CARET_EQ] = ACTIONS(4927), + [anon_sym_PIPE_EQ] = ACTIONS(4927), + [anon_sym_and_eq] = ACTIONS(4934), + [anon_sym_or_eq] = ACTIONS(4934), + [anon_sym_xor_eq] = ACTIONS(4934), + [anon_sym_LT_EQ_GT] = ACTIONS(4927), + [anon_sym_or] = ACTIONS(4934), + [anon_sym_and] = ACTIONS(4934), + [anon_sym_bitor] = ACTIONS(4934), + [anon_sym_xor] = ACTIONS(4934), + [anon_sym_bitand] = ACTIONS(4934), + [anon_sym_not_eq] = ACTIONS(4934), + [anon_sym_DASH_DASH] = ACTIONS(4927), + [anon_sym_PLUS_PLUS] = ACTIONS(4927), + [anon_sym_DOT] = ACTIONS(4934), + [anon_sym_DOT_STAR] = ACTIONS(4927), + [anon_sym_DASH_GT] = ACTIONS(4927), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4925), + [anon_sym_decltype] = ACTIONS(4925), + [anon_sym_template] = ACTIONS(4925), + [anon_sym_operator] = ACTIONS(4925), + }, + [1594] = { + [sym_identifier] = ACTIONS(5006), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5008), + [anon_sym_COMMA] = ACTIONS(5008), + [anon_sym_RPAREN] = ACTIONS(5008), + [anon_sym_LPAREN2] = ACTIONS(5008), + [anon_sym_TILDE] = ACTIONS(5008), + [anon_sym_DASH] = ACTIONS(5006), + [anon_sym_PLUS] = ACTIONS(5006), + [anon_sym_STAR] = ACTIONS(5006), + [anon_sym_SLASH] = ACTIONS(5006), + [anon_sym_PERCENT] = ACTIONS(5006), + [anon_sym_PIPE_PIPE] = ACTIONS(5008), + [anon_sym_AMP_AMP] = ACTIONS(5008), + [anon_sym_PIPE] = ACTIONS(5006), + [anon_sym_CARET] = ACTIONS(5006), + [anon_sym_AMP] = ACTIONS(5006), + [anon_sym_EQ_EQ] = ACTIONS(5008), + [anon_sym_BANG_EQ] = ACTIONS(5008), + [anon_sym_GT] = ACTIONS(5006), + [anon_sym_GT_EQ] = ACTIONS(5008), + [anon_sym_LT_EQ] = ACTIONS(5006), + [anon_sym_LT] = ACTIONS(5006), + [anon_sym_LT_LT] = ACTIONS(5006), + [anon_sym_GT_GT] = ACTIONS(5006), + [anon_sym___extension__] = ACTIONS(5006), + [anon_sym_virtual] = ACTIONS(5006), + [anon_sym_extern] = ACTIONS(5006), + [anon_sym___attribute__] = ACTIONS(5006), + [anon_sym___attribute] = ACTIONS(5006), + [anon_sym_COLON_COLON] = ACTIONS(5008), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5008), + [anon_sym___declspec] = ACTIONS(5006), + [anon_sym___based] = ACTIONS(5006), + [anon_sym_LBRACE] = ACTIONS(5008), + [anon_sym_LBRACK] = ACTIONS(5006), + [anon_sym_static] = ACTIONS(5006), + [anon_sym_EQ] = ACTIONS(5006), + [anon_sym_register] = ACTIONS(5006), + [anon_sym_inline] = ACTIONS(5006), + [anon_sym___inline] = ACTIONS(5006), + [anon_sym___inline__] = ACTIONS(5006), + [anon_sym___forceinline] = ACTIONS(5006), + [anon_sym_thread_local] = ACTIONS(5006), + [anon_sym___thread] = ACTIONS(5006), + [anon_sym_const] = ACTIONS(5006), + [anon_sym_constexpr] = ACTIONS(5006), + [anon_sym_volatile] = ACTIONS(5006), + [anon_sym_restrict] = ACTIONS(5006), + [anon_sym___restrict__] = ACTIONS(5006), + [anon_sym__Atomic] = ACTIONS(5006), + [anon_sym__Noreturn] = ACTIONS(5006), + [anon_sym_noreturn] = ACTIONS(5006), + [anon_sym__Nonnull] = ACTIONS(5006), + [anon_sym_mutable] = ACTIONS(5006), + [anon_sym_constinit] = ACTIONS(5006), + [anon_sym_consteval] = ACTIONS(5006), + [anon_sym_alignas] = ACTIONS(5006), + [anon_sym__Alignas] = ACTIONS(5006), + [anon_sym_QMARK] = ACTIONS(5008), + [anon_sym_STAR_EQ] = ACTIONS(5008), + [anon_sym_SLASH_EQ] = ACTIONS(5008), + [anon_sym_PERCENT_EQ] = ACTIONS(5008), + [anon_sym_PLUS_EQ] = ACTIONS(5008), + [anon_sym_DASH_EQ] = ACTIONS(5008), + [anon_sym_LT_LT_EQ] = ACTIONS(5008), + [anon_sym_GT_GT_EQ] = ACTIONS(5008), + [anon_sym_AMP_EQ] = ACTIONS(5008), + [anon_sym_CARET_EQ] = ACTIONS(5008), + [anon_sym_PIPE_EQ] = ACTIONS(5008), + [anon_sym_and_eq] = ACTIONS(5006), + [anon_sym_or_eq] = ACTIONS(5006), + [anon_sym_xor_eq] = ACTIONS(5006), + [anon_sym_LT_EQ_GT] = ACTIONS(5008), + [anon_sym_or] = ACTIONS(5006), + [anon_sym_and] = ACTIONS(5006), + [anon_sym_bitor] = ACTIONS(5006), + [anon_sym_xor] = ACTIONS(5006), + [anon_sym_bitand] = ACTIONS(5006), + [anon_sym_not_eq] = ACTIONS(5006), + [anon_sym_DASH_DASH] = ACTIONS(5008), + [anon_sym_PLUS_PLUS] = ACTIONS(5008), + [anon_sym_DOT] = ACTIONS(5006), + [anon_sym_DOT_STAR] = ACTIONS(5008), + [anon_sym_DASH_GT] = ACTIONS(5006), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5006), + [anon_sym_decltype] = ACTIONS(5006), + [anon_sym_template] = ACTIONS(5006), + [anon_sym_operator] = ACTIONS(5006), + [anon_sym_DASH_GT_STAR] = ACTIONS(5008), + }, + [1595] = { + [sym_string_literal] = STATE(2234), + [sym_template_argument_list] = STATE(1724), + [sym_raw_string_literal] = STATE(2234), + [aux_sym_sized_type_specifier_repeat1] = STATE(1959), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4166), + [anon_sym_COMMA] = ACTIONS(4166), + [anon_sym_RPAREN] = ACTIONS(4168), + [anon_sym_LPAREN2] = ACTIONS(4168), + [anon_sym_DASH] = ACTIONS(4174), + [anon_sym_PLUS] = ACTIONS(4174), + [anon_sym_STAR] = ACTIONS(4176), + [anon_sym_SLASH] = ACTIONS(4174), + [anon_sym_PERCENT] = ACTIONS(4174), + [anon_sym_PIPE_PIPE] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4179), + [anon_sym_PIPE] = ACTIONS(4174), + [anon_sym_CARET] = ACTIONS(4174), + [anon_sym_AMP] = ACTIONS(4176), + [anon_sym_EQ_EQ] = ACTIONS(4166), + [anon_sym_BANG_EQ] = ACTIONS(4166), + [anon_sym_GT] = ACTIONS(4174), + [anon_sym_GT_EQ] = ACTIONS(4166), + [anon_sym_LT_EQ] = ACTIONS(4174), + [anon_sym_LT] = ACTIONS(5041), + [anon_sym_LT_LT] = ACTIONS(4174), + [anon_sym_GT_GT] = ACTIONS(4174), + [anon_sym___extension__] = ACTIONS(4172), + [anon_sym_COLON_COLON] = ACTIONS(4187), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5044), + [anon_sym_LBRACE] = ACTIONS(4192), + [anon_sym_signed] = ACTIONS(5046), + [anon_sym_unsigned] = ACTIONS(5046), + [anon_sym_long] = ACTIONS(5046), + [anon_sym_short] = ACTIONS(5046), + [anon_sym_LBRACK] = ACTIONS(4196), + [anon_sym_EQ] = ACTIONS(4174), + [anon_sym_const] = ACTIONS(4164), + [anon_sym_constexpr] = ACTIONS(4172), + [anon_sym_volatile] = ACTIONS(4172), + [anon_sym_restrict] = ACTIONS(4172), + [anon_sym___restrict__] = ACTIONS(4172), + [anon_sym__Atomic] = ACTIONS(4172), + [anon_sym__Noreturn] = ACTIONS(4172), + [anon_sym_noreturn] = ACTIONS(4172), + [anon_sym__Nonnull] = ACTIONS(4172), + [anon_sym_mutable] = ACTIONS(4172), + [anon_sym_constinit] = ACTIONS(4172), + [anon_sym_consteval] = ACTIONS(4172), + [anon_sym_alignas] = ACTIONS(4172), + [anon_sym__Alignas] = ACTIONS(4172), + [anon_sym_QMARK] = ACTIONS(4166), + [anon_sym_STAR_EQ] = ACTIONS(4166), + [anon_sym_SLASH_EQ] = ACTIONS(4166), + [anon_sym_PERCENT_EQ] = ACTIONS(4166), + [anon_sym_PLUS_EQ] = ACTIONS(4166), + [anon_sym_DASH_EQ] = ACTIONS(4166), + [anon_sym_LT_LT_EQ] = ACTIONS(4166), + [anon_sym_GT_GT_EQ] = ACTIONS(4166), + [anon_sym_AMP_EQ] = ACTIONS(4166), + [anon_sym_CARET_EQ] = ACTIONS(4166), + [anon_sym_PIPE_EQ] = ACTIONS(4166), + [anon_sym_and_eq] = ACTIONS(4166), + [anon_sym_or_eq] = ACTIONS(4166), + [anon_sym_xor_eq] = ACTIONS(4166), + [anon_sym_LT_EQ_GT] = ACTIONS(4166), + [anon_sym_or] = ACTIONS(4174), + [anon_sym_and] = ACTIONS(4174), + [anon_sym_bitor] = ACTIONS(4166), + [anon_sym_xor] = ACTIONS(4174), + [anon_sym_bitand] = ACTIONS(4166), + [anon_sym_not_eq] = ACTIONS(4166), + [anon_sym_DASH_DASH] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4174), + [anon_sym_DOT_STAR] = ACTIONS(4166), + [anon_sym_DASH_GT] = ACTIONS(4174), + [anon_sym_L_DQUOTE] = ACTIONS(5048), + [anon_sym_u_DQUOTE] = ACTIONS(5048), + [anon_sym_U_DQUOTE] = ACTIONS(5048), + [anon_sym_u8_DQUOTE] = ACTIONS(5048), + [anon_sym_DQUOTE] = ACTIONS(5048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4172), + [anon_sym_decltype] = ACTIONS(4172), + [anon_sym_R_DQUOTE] = ACTIONS(5050), + [anon_sym_LR_DQUOTE] = ACTIONS(5050), + [anon_sym_uR_DQUOTE] = ACTIONS(5050), + [anon_sym_UR_DQUOTE] = ACTIONS(5050), + [anon_sym_u8R_DQUOTE] = ACTIONS(5050), + [anon_sym_DASH_GT_STAR] = ACTIONS(4166), + }, + [1596] = { [sym_identifier] = ACTIONS(4984), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4986), - [anon_sym_COMMA] = ACTIONS(4986), - [anon_sym_RPAREN] = ACTIONS(4986), - [anon_sym_LPAREN2] = ACTIONS(4986), - [anon_sym_TILDE] = ACTIONS(4986), - [anon_sym_DASH] = ACTIONS(4984), - [anon_sym_PLUS] = ACTIONS(4984), - [anon_sym_STAR] = ACTIONS(4984), - [anon_sym_SLASH] = ACTIONS(4984), - [anon_sym_PERCENT] = ACTIONS(4984), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4988), + [anon_sym_COMMA] = ACTIONS(4988), + [anon_sym_RPAREN] = ACTIONS(4988), + [anon_sym_LPAREN2] = ACTIONS(4988), + [anon_sym_TILDE] = ACTIONS(4991), + [anon_sym_DASH] = ACTIONS(4993), + [anon_sym_PLUS] = ACTIONS(4993), + [anon_sym_STAR] = ACTIONS(4995), + [anon_sym_SLASH] = ACTIONS(4993), + [anon_sym_PERCENT] = ACTIONS(4993), [anon_sym_PIPE_PIPE] = ACTIONS(4986), - [anon_sym_AMP_AMP] = ACTIONS(4986), - [anon_sym_PIPE] = ACTIONS(4984), - [anon_sym_CARET] = ACTIONS(4984), - [anon_sym_AMP] = ACTIONS(4984), + [anon_sym_AMP_AMP] = ACTIONS(4988), + [anon_sym_PIPE] = ACTIONS(4993), + [anon_sym_CARET] = ACTIONS(4993), + [anon_sym_AMP] = ACTIONS(4995), [anon_sym_EQ_EQ] = ACTIONS(4986), [anon_sym_BANG_EQ] = ACTIONS(4986), - [anon_sym_GT] = ACTIONS(4984), + [anon_sym_GT] = ACTIONS(4993), [anon_sym_GT_EQ] = ACTIONS(4986), - [anon_sym_LT_EQ] = ACTIONS(4984), - [anon_sym_LT] = ACTIONS(4984), - [anon_sym_LT_LT] = ACTIONS(4984), - [anon_sym_GT_GT] = ACTIONS(4984), + [anon_sym_LT_EQ] = ACTIONS(4993), + [anon_sym_LT] = ACTIONS(4993), + [anon_sym_LT_LT] = ACTIONS(4993), + [anon_sym_GT_GT] = ACTIONS(4993), [anon_sym___extension__] = ACTIONS(4984), [anon_sym_virtual] = ACTIONS(4984), [anon_sym_extern] = ACTIONS(4984), [anon_sym___attribute__] = ACTIONS(4984), [anon_sym___attribute] = ACTIONS(4984), - [anon_sym_COLON_COLON] = ACTIONS(4986), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4986), + [anon_sym_COLON_COLON] = ACTIONS(4991), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4991), [anon_sym___declspec] = ACTIONS(4984), [anon_sym___based] = ACTIONS(4984), - [anon_sym_LBRACE] = ACTIONS(4986), - [anon_sym_LBRACK] = ACTIONS(4984), + [anon_sym_LBRACE] = ACTIONS(4991), + [anon_sym_LBRACK] = ACTIONS(4995), [anon_sym_static] = ACTIONS(4984), - [anon_sym_EQ] = ACTIONS(4984), + [anon_sym_EQ] = ACTIONS(4995), [anon_sym_register] = ACTIONS(4984), [anon_sym_inline] = ACTIONS(4984), [anon_sym___inline] = ACTIONS(4984), @@ -236131,1306 +239993,834 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_EQ] = ACTIONS(4986), [anon_sym_CARET_EQ] = ACTIONS(4986), [anon_sym_PIPE_EQ] = ACTIONS(4986), - [anon_sym_and_eq] = ACTIONS(4984), - [anon_sym_or_eq] = ACTIONS(4984), - [anon_sym_xor_eq] = ACTIONS(4984), + [anon_sym_and_eq] = ACTIONS(4993), + [anon_sym_or_eq] = ACTIONS(4993), + [anon_sym_xor_eq] = ACTIONS(4993), [anon_sym_LT_EQ_GT] = ACTIONS(4986), - [anon_sym_or] = ACTIONS(4984), - [anon_sym_and] = ACTIONS(4984), - [anon_sym_bitor] = ACTIONS(4984), - [anon_sym_xor] = ACTIONS(4984), - [anon_sym_bitand] = ACTIONS(4984), - [anon_sym_not_eq] = ACTIONS(4984), + [anon_sym_or] = ACTIONS(4993), + [anon_sym_and] = ACTIONS(4993), + [anon_sym_bitor] = ACTIONS(4993), + [anon_sym_xor] = ACTIONS(4993), + [anon_sym_bitand] = ACTIONS(4993), + [anon_sym_not_eq] = ACTIONS(4993), [anon_sym_DASH_DASH] = ACTIONS(4986), [anon_sym_PLUS_PLUS] = ACTIONS(4986), - [anon_sym_DOT] = ACTIONS(4984), + [anon_sym_DOT] = ACTIONS(4993), [anon_sym_DOT_STAR] = ACTIONS(4986), - [anon_sym_DASH_GT] = ACTIONS(4984), + [anon_sym_DASH_GT] = ACTIONS(4986), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(4984), [anon_sym_decltype] = ACTIONS(4984), [anon_sym_template] = ACTIONS(4984), [anon_sym_operator] = ACTIONS(4984), - [anon_sym_DASH_GT_STAR] = ACTIONS(4986), - }, - [1568] = { - [sym_identifier] = ACTIONS(4951), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4953), - [anon_sym_COMMA] = ACTIONS(4953), - [anon_sym_RPAREN] = ACTIONS(4953), - [anon_sym_LPAREN2] = ACTIONS(4953), - [anon_sym_TILDE] = ACTIONS(4953), - [anon_sym_DASH] = ACTIONS(4951), - [anon_sym_PLUS] = ACTIONS(4951), - [anon_sym_STAR] = ACTIONS(4951), - [anon_sym_SLASH] = ACTIONS(4951), - [anon_sym_PERCENT] = ACTIONS(4951), - [anon_sym_PIPE_PIPE] = ACTIONS(4953), - [anon_sym_AMP_AMP] = ACTIONS(4953), - [anon_sym_PIPE] = ACTIONS(4951), - [anon_sym_CARET] = ACTIONS(4951), - [anon_sym_AMP] = ACTIONS(4951), - [anon_sym_EQ_EQ] = ACTIONS(4953), - [anon_sym_BANG_EQ] = ACTIONS(4953), - [anon_sym_GT] = ACTIONS(4951), - [anon_sym_GT_EQ] = ACTIONS(4953), - [anon_sym_LT_EQ] = ACTIONS(4951), - [anon_sym_LT] = ACTIONS(4951), - [anon_sym_LT_LT] = ACTIONS(4951), - [anon_sym_GT_GT] = ACTIONS(4951), - [anon_sym___extension__] = ACTIONS(4951), - [anon_sym_virtual] = ACTIONS(4951), - [anon_sym_extern] = ACTIONS(4951), - [anon_sym___attribute__] = ACTIONS(4951), - [anon_sym___attribute] = ACTIONS(4951), - [anon_sym_COLON_COLON] = ACTIONS(4953), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4953), - [anon_sym___declspec] = ACTIONS(4951), - [anon_sym___based] = ACTIONS(4951), - [anon_sym_LBRACE] = ACTIONS(4953), - [anon_sym_LBRACK] = ACTIONS(4951), - [anon_sym_static] = ACTIONS(4951), - [anon_sym_EQ] = ACTIONS(4951), - [anon_sym_register] = ACTIONS(4951), - [anon_sym_inline] = ACTIONS(4951), - [anon_sym___inline] = ACTIONS(4951), - [anon_sym___inline__] = ACTIONS(4951), - [anon_sym___forceinline] = ACTIONS(4951), - [anon_sym_thread_local] = ACTIONS(4951), - [anon_sym___thread] = ACTIONS(4951), - [anon_sym_const] = ACTIONS(4951), - [anon_sym_constexpr] = ACTIONS(4951), - [anon_sym_volatile] = ACTIONS(4951), - [anon_sym_restrict] = ACTIONS(4951), - [anon_sym___restrict__] = ACTIONS(4951), - [anon_sym__Atomic] = ACTIONS(4951), - [anon_sym__Noreturn] = ACTIONS(4951), - [anon_sym_noreturn] = ACTIONS(4951), - [anon_sym__Nonnull] = ACTIONS(4951), - [anon_sym_mutable] = ACTIONS(4951), - [anon_sym_constinit] = ACTIONS(4951), - [anon_sym_consteval] = ACTIONS(4951), - [anon_sym_alignas] = ACTIONS(4951), - [anon_sym__Alignas] = ACTIONS(4951), - [anon_sym_QMARK] = ACTIONS(4953), - [anon_sym_STAR_EQ] = ACTIONS(4953), - [anon_sym_SLASH_EQ] = ACTIONS(4953), - [anon_sym_PERCENT_EQ] = ACTIONS(4953), - [anon_sym_PLUS_EQ] = ACTIONS(4953), - [anon_sym_DASH_EQ] = ACTIONS(4953), - [anon_sym_LT_LT_EQ] = ACTIONS(4953), - [anon_sym_GT_GT_EQ] = ACTIONS(4953), - [anon_sym_AMP_EQ] = ACTIONS(4953), - [anon_sym_CARET_EQ] = ACTIONS(4953), - [anon_sym_PIPE_EQ] = ACTIONS(4953), - [anon_sym_and_eq] = ACTIONS(4951), - [anon_sym_or_eq] = ACTIONS(4951), - [anon_sym_xor_eq] = ACTIONS(4951), - [anon_sym_LT_EQ_GT] = ACTIONS(4953), - [anon_sym_or] = ACTIONS(4951), - [anon_sym_and] = ACTIONS(4951), - [anon_sym_bitor] = ACTIONS(4951), - [anon_sym_xor] = ACTIONS(4951), - [anon_sym_bitand] = ACTIONS(4951), - [anon_sym_not_eq] = ACTIONS(4951), - [anon_sym_DASH_DASH] = ACTIONS(4953), - [anon_sym_PLUS_PLUS] = ACTIONS(4953), - [anon_sym_DOT] = ACTIONS(4951), - [anon_sym_DOT_STAR] = ACTIONS(4953), - [anon_sym_DASH_GT] = ACTIONS(4951), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4951), - [anon_sym_decltype] = ACTIONS(4951), - [anon_sym_template] = ACTIONS(4951), - [anon_sym_operator] = ACTIONS(4951), - [anon_sym_DASH_GT_STAR] = ACTIONS(4953), - }, - [1569] = { - [sym_identifier] = ACTIONS(4992), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4994), - [anon_sym_COMMA] = ACTIONS(4994), - [anon_sym_RPAREN] = ACTIONS(4994), - [anon_sym_LPAREN2] = ACTIONS(4994), - [anon_sym_TILDE] = ACTIONS(4994), - [anon_sym_DASH] = ACTIONS(4992), - [anon_sym_PLUS] = ACTIONS(4992), - [anon_sym_STAR] = ACTIONS(4992), - [anon_sym_SLASH] = ACTIONS(4992), - [anon_sym_PERCENT] = ACTIONS(4992), - [anon_sym_PIPE_PIPE] = ACTIONS(4994), - [anon_sym_AMP_AMP] = ACTIONS(4994), - [anon_sym_PIPE] = ACTIONS(4992), - [anon_sym_CARET] = ACTIONS(4992), - [anon_sym_AMP] = ACTIONS(4992), - [anon_sym_EQ_EQ] = ACTIONS(4994), - [anon_sym_BANG_EQ] = ACTIONS(4994), - [anon_sym_GT] = ACTIONS(4992), - [anon_sym_GT_EQ] = ACTIONS(4994), - [anon_sym_LT_EQ] = ACTIONS(4992), - [anon_sym_LT] = ACTIONS(4992), - [anon_sym_LT_LT] = ACTIONS(4992), - [anon_sym_GT_GT] = ACTIONS(4992), - [anon_sym___extension__] = ACTIONS(4992), - [anon_sym_virtual] = ACTIONS(4992), - [anon_sym_extern] = ACTIONS(4992), - [anon_sym___attribute__] = ACTIONS(4992), - [anon_sym___attribute] = ACTIONS(4992), - [anon_sym_COLON_COLON] = ACTIONS(4994), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4994), - [anon_sym___declspec] = ACTIONS(4992), - [anon_sym___based] = ACTIONS(4992), - [anon_sym_LBRACE] = ACTIONS(4994), - [anon_sym_LBRACK] = ACTIONS(4992), - [anon_sym_static] = ACTIONS(4992), - [anon_sym_EQ] = ACTIONS(4992), - [anon_sym_register] = ACTIONS(4992), - [anon_sym_inline] = ACTIONS(4992), - [anon_sym___inline] = ACTIONS(4992), - [anon_sym___inline__] = ACTIONS(4992), - [anon_sym___forceinline] = ACTIONS(4992), - [anon_sym_thread_local] = ACTIONS(4992), - [anon_sym___thread] = ACTIONS(4992), - [anon_sym_const] = ACTIONS(4992), - [anon_sym_constexpr] = ACTIONS(4992), - [anon_sym_volatile] = ACTIONS(4992), - [anon_sym_restrict] = ACTIONS(4992), - [anon_sym___restrict__] = ACTIONS(4992), - [anon_sym__Atomic] = ACTIONS(4992), - [anon_sym__Noreturn] = ACTIONS(4992), - [anon_sym_noreturn] = ACTIONS(4992), - [anon_sym__Nonnull] = ACTIONS(4992), - [anon_sym_mutable] = ACTIONS(4992), - [anon_sym_constinit] = ACTIONS(4992), - [anon_sym_consteval] = ACTIONS(4992), - [anon_sym_alignas] = ACTIONS(4992), - [anon_sym__Alignas] = ACTIONS(4992), - [anon_sym_QMARK] = ACTIONS(4994), - [anon_sym_STAR_EQ] = ACTIONS(4994), - [anon_sym_SLASH_EQ] = ACTIONS(4994), - [anon_sym_PERCENT_EQ] = ACTIONS(4994), - [anon_sym_PLUS_EQ] = ACTIONS(4994), - [anon_sym_DASH_EQ] = ACTIONS(4994), - [anon_sym_LT_LT_EQ] = ACTIONS(4994), - [anon_sym_GT_GT_EQ] = ACTIONS(4994), - [anon_sym_AMP_EQ] = ACTIONS(4994), - [anon_sym_CARET_EQ] = ACTIONS(4994), - [anon_sym_PIPE_EQ] = ACTIONS(4994), - [anon_sym_and_eq] = ACTIONS(4992), - [anon_sym_or_eq] = ACTIONS(4992), - [anon_sym_xor_eq] = ACTIONS(4992), - [anon_sym_LT_EQ_GT] = ACTIONS(4994), - [anon_sym_or] = ACTIONS(4992), - [anon_sym_and] = ACTIONS(4992), - [anon_sym_bitor] = ACTIONS(4992), - [anon_sym_xor] = ACTIONS(4992), - [anon_sym_bitand] = ACTIONS(4992), - [anon_sym_not_eq] = ACTIONS(4992), - [anon_sym_DASH_DASH] = ACTIONS(4994), - [anon_sym_PLUS_PLUS] = ACTIONS(4994), - [anon_sym_DOT] = ACTIONS(4992), - [anon_sym_DOT_STAR] = ACTIONS(4994), - [anon_sym_DASH_GT] = ACTIONS(4992), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4992), - [anon_sym_decltype] = ACTIONS(4992), - [anon_sym_template] = ACTIONS(4992), - [anon_sym_operator] = ACTIONS(4992), - [anon_sym_DASH_GT_STAR] = ACTIONS(4994), - }, - [1570] = { - [sym_identifier] = ACTIONS(4988), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4990), - [anon_sym_COMMA] = ACTIONS(4990), - [anon_sym_RPAREN] = ACTIONS(4990), - [anon_sym_LPAREN2] = ACTIONS(4990), - [anon_sym_TILDE] = ACTIONS(4990), - [anon_sym_DASH] = ACTIONS(4988), - [anon_sym_PLUS] = ACTIONS(4988), - [anon_sym_STAR] = ACTIONS(4988), - [anon_sym_SLASH] = ACTIONS(4988), - [anon_sym_PERCENT] = ACTIONS(4988), - [anon_sym_PIPE_PIPE] = ACTIONS(4990), - [anon_sym_AMP_AMP] = ACTIONS(4990), - [anon_sym_PIPE] = ACTIONS(4988), - [anon_sym_CARET] = ACTIONS(4988), - [anon_sym_AMP] = ACTIONS(4988), - [anon_sym_EQ_EQ] = ACTIONS(4990), - [anon_sym_BANG_EQ] = ACTIONS(4990), - [anon_sym_GT] = ACTIONS(4988), - [anon_sym_GT_EQ] = ACTIONS(4990), - [anon_sym_LT_EQ] = ACTIONS(4988), - [anon_sym_LT] = ACTIONS(4988), - [anon_sym_LT_LT] = ACTIONS(4988), - [anon_sym_GT_GT] = ACTIONS(4988), - [anon_sym___extension__] = ACTIONS(4988), - [anon_sym_virtual] = ACTIONS(4988), - [anon_sym_extern] = ACTIONS(4988), - [anon_sym___attribute__] = ACTIONS(4988), - [anon_sym___attribute] = ACTIONS(4988), - [anon_sym_COLON_COLON] = ACTIONS(4990), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4990), - [anon_sym___declspec] = ACTIONS(4988), - [anon_sym___based] = ACTIONS(4988), - [anon_sym_LBRACE] = ACTIONS(4990), - [anon_sym_LBRACK] = ACTIONS(4988), - [anon_sym_static] = ACTIONS(4988), - [anon_sym_EQ] = ACTIONS(4988), - [anon_sym_register] = ACTIONS(4988), - [anon_sym_inline] = ACTIONS(4988), - [anon_sym___inline] = ACTIONS(4988), - [anon_sym___inline__] = ACTIONS(4988), - [anon_sym___forceinline] = ACTIONS(4988), - [anon_sym_thread_local] = ACTIONS(4988), - [anon_sym___thread] = ACTIONS(4988), - [anon_sym_const] = ACTIONS(4988), - [anon_sym_constexpr] = ACTIONS(4988), - [anon_sym_volatile] = ACTIONS(4988), - [anon_sym_restrict] = ACTIONS(4988), - [anon_sym___restrict__] = ACTIONS(4988), - [anon_sym__Atomic] = ACTIONS(4988), - [anon_sym__Noreturn] = ACTIONS(4988), - [anon_sym_noreturn] = ACTIONS(4988), - [anon_sym__Nonnull] = ACTIONS(4988), - [anon_sym_mutable] = ACTIONS(4988), - [anon_sym_constinit] = ACTIONS(4988), - [anon_sym_consteval] = ACTIONS(4988), - [anon_sym_alignas] = ACTIONS(4988), - [anon_sym__Alignas] = ACTIONS(4988), - [anon_sym_QMARK] = ACTIONS(4990), - [anon_sym_STAR_EQ] = ACTIONS(4990), - [anon_sym_SLASH_EQ] = ACTIONS(4990), - [anon_sym_PERCENT_EQ] = ACTIONS(4990), - [anon_sym_PLUS_EQ] = ACTIONS(4990), - [anon_sym_DASH_EQ] = ACTIONS(4990), - [anon_sym_LT_LT_EQ] = ACTIONS(4990), - [anon_sym_GT_GT_EQ] = ACTIONS(4990), - [anon_sym_AMP_EQ] = ACTIONS(4990), - [anon_sym_CARET_EQ] = ACTIONS(4990), - [anon_sym_PIPE_EQ] = ACTIONS(4990), - [anon_sym_and_eq] = ACTIONS(4988), - [anon_sym_or_eq] = ACTIONS(4988), - [anon_sym_xor_eq] = ACTIONS(4988), - [anon_sym_LT_EQ_GT] = ACTIONS(4990), - [anon_sym_or] = ACTIONS(4988), - [anon_sym_and] = ACTIONS(4988), - [anon_sym_bitor] = ACTIONS(4988), - [anon_sym_xor] = ACTIONS(4988), - [anon_sym_bitand] = ACTIONS(4988), - [anon_sym_not_eq] = ACTIONS(4988), - [anon_sym_DASH_DASH] = ACTIONS(4990), - [anon_sym_PLUS_PLUS] = ACTIONS(4990), - [anon_sym_DOT] = ACTIONS(4988), - [anon_sym_DOT_STAR] = ACTIONS(4990), - [anon_sym_DASH_GT] = ACTIONS(4988), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4988), - [anon_sym_decltype] = ACTIONS(4988), - [anon_sym_template] = ACTIONS(4988), - [anon_sym_operator] = ACTIONS(4988), - [anon_sym_DASH_GT_STAR] = ACTIONS(4990), - }, - [1571] = { - [sym_identifier] = ACTIONS(4955), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4957), - [anon_sym_COMMA] = ACTIONS(4957), - [anon_sym_RPAREN] = ACTIONS(4957), - [anon_sym_LPAREN2] = ACTIONS(4957), - [anon_sym_TILDE] = ACTIONS(4957), - [anon_sym_DASH] = ACTIONS(4955), - [anon_sym_PLUS] = ACTIONS(4955), - [anon_sym_STAR] = ACTIONS(4955), - [anon_sym_SLASH] = ACTIONS(4955), - [anon_sym_PERCENT] = ACTIONS(4955), - [anon_sym_PIPE_PIPE] = ACTIONS(4957), - [anon_sym_AMP_AMP] = ACTIONS(4957), - [anon_sym_PIPE] = ACTIONS(4955), - [anon_sym_CARET] = ACTIONS(4955), - [anon_sym_AMP] = ACTIONS(4955), - [anon_sym_EQ_EQ] = ACTIONS(4957), - [anon_sym_BANG_EQ] = ACTIONS(4957), - [anon_sym_GT] = ACTIONS(4955), - [anon_sym_GT_EQ] = ACTIONS(4957), - [anon_sym_LT_EQ] = ACTIONS(4955), - [anon_sym_LT] = ACTIONS(4955), - [anon_sym_LT_LT] = ACTIONS(4955), - [anon_sym_GT_GT] = ACTIONS(4955), - [anon_sym___extension__] = ACTIONS(4955), - [anon_sym_virtual] = ACTIONS(4955), - [anon_sym_extern] = ACTIONS(4955), - [anon_sym___attribute__] = ACTIONS(4955), - [anon_sym___attribute] = ACTIONS(4955), - [anon_sym_COLON_COLON] = ACTIONS(4957), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4957), - [anon_sym___declspec] = ACTIONS(4955), - [anon_sym___based] = ACTIONS(4955), - [anon_sym_LBRACE] = ACTIONS(4957), - [anon_sym_LBRACK] = ACTIONS(4955), - [anon_sym_static] = ACTIONS(4955), - [anon_sym_EQ] = ACTIONS(4955), - [anon_sym_register] = ACTIONS(4955), - [anon_sym_inline] = ACTIONS(4955), - [anon_sym___inline] = ACTIONS(4955), - [anon_sym___inline__] = ACTIONS(4955), - [anon_sym___forceinline] = ACTIONS(4955), - [anon_sym_thread_local] = ACTIONS(4955), - [anon_sym___thread] = ACTIONS(4955), - [anon_sym_const] = ACTIONS(4955), - [anon_sym_constexpr] = ACTIONS(4955), - [anon_sym_volatile] = ACTIONS(4955), - [anon_sym_restrict] = ACTIONS(4955), - [anon_sym___restrict__] = ACTIONS(4955), - [anon_sym__Atomic] = ACTIONS(4955), - [anon_sym__Noreturn] = ACTIONS(4955), - [anon_sym_noreturn] = ACTIONS(4955), - [anon_sym__Nonnull] = ACTIONS(4955), - [anon_sym_mutable] = ACTIONS(4955), - [anon_sym_constinit] = ACTIONS(4955), - [anon_sym_consteval] = ACTIONS(4955), - [anon_sym_alignas] = ACTIONS(4955), - [anon_sym__Alignas] = ACTIONS(4955), - [anon_sym_QMARK] = ACTIONS(4957), - [anon_sym_STAR_EQ] = ACTIONS(4957), - [anon_sym_SLASH_EQ] = ACTIONS(4957), - [anon_sym_PERCENT_EQ] = ACTIONS(4957), - [anon_sym_PLUS_EQ] = ACTIONS(4957), - [anon_sym_DASH_EQ] = ACTIONS(4957), - [anon_sym_LT_LT_EQ] = ACTIONS(4957), - [anon_sym_GT_GT_EQ] = ACTIONS(4957), - [anon_sym_AMP_EQ] = ACTIONS(4957), - [anon_sym_CARET_EQ] = ACTIONS(4957), - [anon_sym_PIPE_EQ] = ACTIONS(4957), - [anon_sym_and_eq] = ACTIONS(4955), - [anon_sym_or_eq] = ACTIONS(4955), - [anon_sym_xor_eq] = ACTIONS(4955), - [anon_sym_LT_EQ_GT] = ACTIONS(4957), - [anon_sym_or] = ACTIONS(4955), - [anon_sym_and] = ACTIONS(4955), - [anon_sym_bitor] = ACTIONS(4955), - [anon_sym_xor] = ACTIONS(4955), - [anon_sym_bitand] = ACTIONS(4955), - [anon_sym_not_eq] = ACTIONS(4955), - [anon_sym_DASH_DASH] = ACTIONS(4957), - [anon_sym_PLUS_PLUS] = ACTIONS(4957), - [anon_sym_DOT] = ACTIONS(4955), - [anon_sym_DOT_STAR] = ACTIONS(4957), - [anon_sym_DASH_GT] = ACTIONS(4955), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4955), - [anon_sym_decltype] = ACTIONS(4955), - [anon_sym_template] = ACTIONS(4955), - [anon_sym_operator] = ACTIONS(4955), - [anon_sym_DASH_GT_STAR] = ACTIONS(4957), - }, - [1572] = { - [sym_identifier] = ACTIONS(4959), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4961), - [anon_sym_COMMA] = ACTIONS(4961), - [anon_sym_RPAREN] = ACTIONS(4961), - [anon_sym_LPAREN2] = ACTIONS(4961), - [anon_sym_TILDE] = ACTIONS(4961), - [anon_sym_DASH] = ACTIONS(4959), - [anon_sym_PLUS] = ACTIONS(4959), - [anon_sym_STAR] = ACTIONS(4959), - [anon_sym_SLASH] = ACTIONS(4959), - [anon_sym_PERCENT] = ACTIONS(4959), - [anon_sym_PIPE_PIPE] = ACTIONS(4961), - [anon_sym_AMP_AMP] = ACTIONS(4961), - [anon_sym_PIPE] = ACTIONS(4959), - [anon_sym_CARET] = ACTIONS(4959), - [anon_sym_AMP] = ACTIONS(4959), - [anon_sym_EQ_EQ] = ACTIONS(4961), - [anon_sym_BANG_EQ] = ACTIONS(4961), - [anon_sym_GT] = ACTIONS(4959), - [anon_sym_GT_EQ] = ACTIONS(4961), - [anon_sym_LT_EQ] = ACTIONS(4959), - [anon_sym_LT] = ACTIONS(4959), - [anon_sym_LT_LT] = ACTIONS(4959), - [anon_sym_GT_GT] = ACTIONS(4959), - [anon_sym___extension__] = ACTIONS(4959), - [anon_sym_virtual] = ACTIONS(4959), - [anon_sym_extern] = ACTIONS(4959), - [anon_sym___attribute__] = ACTIONS(4959), - [anon_sym___attribute] = ACTIONS(4959), - [anon_sym_COLON_COLON] = ACTIONS(4961), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4961), - [anon_sym___declspec] = ACTIONS(4959), - [anon_sym___based] = ACTIONS(4959), - [anon_sym_LBRACE] = ACTIONS(4961), - [anon_sym_LBRACK] = ACTIONS(4959), - [anon_sym_static] = ACTIONS(4959), - [anon_sym_EQ] = ACTIONS(4959), - [anon_sym_register] = ACTIONS(4959), - [anon_sym_inline] = ACTIONS(4959), - [anon_sym___inline] = ACTIONS(4959), - [anon_sym___inline__] = ACTIONS(4959), - [anon_sym___forceinline] = ACTIONS(4959), - [anon_sym_thread_local] = ACTIONS(4959), - [anon_sym___thread] = ACTIONS(4959), - [anon_sym_const] = ACTIONS(4959), - [anon_sym_constexpr] = ACTIONS(4959), - [anon_sym_volatile] = ACTIONS(4959), - [anon_sym_restrict] = ACTIONS(4959), - [anon_sym___restrict__] = ACTIONS(4959), - [anon_sym__Atomic] = ACTIONS(4959), - [anon_sym__Noreturn] = ACTIONS(4959), - [anon_sym_noreturn] = ACTIONS(4959), - [anon_sym__Nonnull] = ACTIONS(4959), - [anon_sym_mutable] = ACTIONS(4959), - [anon_sym_constinit] = ACTIONS(4959), - [anon_sym_consteval] = ACTIONS(4959), - [anon_sym_alignas] = ACTIONS(4959), - [anon_sym__Alignas] = ACTIONS(4959), - [anon_sym_QMARK] = ACTIONS(4961), - [anon_sym_STAR_EQ] = ACTIONS(4961), - [anon_sym_SLASH_EQ] = ACTIONS(4961), - [anon_sym_PERCENT_EQ] = ACTIONS(4961), - [anon_sym_PLUS_EQ] = ACTIONS(4961), - [anon_sym_DASH_EQ] = ACTIONS(4961), - [anon_sym_LT_LT_EQ] = ACTIONS(4961), - [anon_sym_GT_GT_EQ] = ACTIONS(4961), - [anon_sym_AMP_EQ] = ACTIONS(4961), - [anon_sym_CARET_EQ] = ACTIONS(4961), - [anon_sym_PIPE_EQ] = ACTIONS(4961), - [anon_sym_and_eq] = ACTIONS(4959), - [anon_sym_or_eq] = ACTIONS(4959), - [anon_sym_xor_eq] = ACTIONS(4959), - [anon_sym_LT_EQ_GT] = ACTIONS(4961), - [anon_sym_or] = ACTIONS(4959), - [anon_sym_and] = ACTIONS(4959), - [anon_sym_bitor] = ACTIONS(4959), - [anon_sym_xor] = ACTIONS(4959), - [anon_sym_bitand] = ACTIONS(4959), - [anon_sym_not_eq] = ACTIONS(4959), - [anon_sym_DASH_DASH] = ACTIONS(4961), - [anon_sym_PLUS_PLUS] = ACTIONS(4961), - [anon_sym_DOT] = ACTIONS(4959), - [anon_sym_DOT_STAR] = ACTIONS(4961), - [anon_sym_DASH_GT] = ACTIONS(4959), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4959), - [anon_sym_decltype] = ACTIONS(4959), - [anon_sym_template] = ACTIONS(4959), - [anon_sym_operator] = ACTIONS(4959), - [anon_sym_DASH_GT_STAR] = ACTIONS(4961), - }, - [1573] = { - [sym_string_literal] = STATE(2189), - [sym_template_argument_list] = STATE(1701), - [sym_raw_string_literal] = STATE(2189), - [aux_sym_sized_type_specifier_repeat1] = STATE(1935), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4146), - [anon_sym_COMMA] = ACTIONS(4146), - [anon_sym_RPAREN] = ACTIONS(4148), - [anon_sym_LPAREN2] = ACTIONS(4148), - [anon_sym_DASH] = ACTIONS(4154), - [anon_sym_PLUS] = ACTIONS(4154), - [anon_sym_STAR] = ACTIONS(4156), - [anon_sym_SLASH] = ACTIONS(4154), - [anon_sym_PERCENT] = ACTIONS(4154), - [anon_sym_PIPE_PIPE] = ACTIONS(4146), - [anon_sym_AMP_AMP] = ACTIONS(4159), - [anon_sym_PIPE] = ACTIONS(4154), - [anon_sym_CARET] = ACTIONS(4154), - [anon_sym_AMP] = ACTIONS(4156), - [anon_sym_EQ_EQ] = ACTIONS(4146), - [anon_sym_BANG_EQ] = ACTIONS(4146), - [anon_sym_GT] = ACTIONS(4154), - [anon_sym_GT_EQ] = ACTIONS(4146), - [anon_sym_LT_EQ] = ACTIONS(4154), - [anon_sym_LT] = ACTIONS(5033), - [anon_sym_LT_LT] = ACTIONS(4154), - [anon_sym_GT_GT] = ACTIONS(4154), - [anon_sym___extension__] = ACTIONS(4152), - [anon_sym_COLON_COLON] = ACTIONS(4167), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5036), - [anon_sym_LBRACE] = ACTIONS(4172), - [anon_sym_signed] = ACTIONS(5038), - [anon_sym_unsigned] = ACTIONS(5038), - [anon_sym_long] = ACTIONS(5038), - [anon_sym_short] = ACTIONS(5038), - [anon_sym_LBRACK] = ACTIONS(4176), - [anon_sym_EQ] = ACTIONS(4154), - [anon_sym_const] = ACTIONS(4144), - [anon_sym_constexpr] = ACTIONS(4152), - [anon_sym_volatile] = ACTIONS(4152), - [anon_sym_restrict] = ACTIONS(4152), - [anon_sym___restrict__] = ACTIONS(4152), - [anon_sym__Atomic] = ACTIONS(4152), - [anon_sym__Noreturn] = ACTIONS(4152), - [anon_sym_noreturn] = ACTIONS(4152), - [anon_sym__Nonnull] = ACTIONS(4152), - [anon_sym_mutable] = ACTIONS(4152), - [anon_sym_constinit] = ACTIONS(4152), - [anon_sym_consteval] = ACTIONS(4152), - [anon_sym_alignas] = ACTIONS(4152), - [anon_sym__Alignas] = ACTIONS(4152), - [anon_sym_QMARK] = ACTIONS(4146), - [anon_sym_STAR_EQ] = ACTIONS(4146), - [anon_sym_SLASH_EQ] = ACTIONS(4146), - [anon_sym_PERCENT_EQ] = ACTIONS(4146), - [anon_sym_PLUS_EQ] = ACTIONS(4146), - [anon_sym_DASH_EQ] = ACTIONS(4146), - [anon_sym_LT_LT_EQ] = ACTIONS(4146), - [anon_sym_GT_GT_EQ] = ACTIONS(4146), - [anon_sym_AMP_EQ] = ACTIONS(4146), - [anon_sym_CARET_EQ] = ACTIONS(4146), - [anon_sym_PIPE_EQ] = ACTIONS(4146), - [anon_sym_and_eq] = ACTIONS(4146), - [anon_sym_or_eq] = ACTIONS(4146), - [anon_sym_xor_eq] = ACTIONS(4146), - [anon_sym_LT_EQ_GT] = ACTIONS(4146), - [anon_sym_or] = ACTIONS(4154), - [anon_sym_and] = ACTIONS(4154), - [anon_sym_bitor] = ACTIONS(4146), - [anon_sym_xor] = ACTIONS(4154), - [anon_sym_bitand] = ACTIONS(4146), - [anon_sym_not_eq] = ACTIONS(4146), - [anon_sym_DASH_DASH] = ACTIONS(4146), - [anon_sym_PLUS_PLUS] = ACTIONS(4146), - [anon_sym_DOT] = ACTIONS(4154), - [anon_sym_DOT_STAR] = ACTIONS(4146), - [anon_sym_DASH_GT] = ACTIONS(4154), - [anon_sym_L_DQUOTE] = ACTIONS(5040), - [anon_sym_u_DQUOTE] = ACTIONS(5040), - [anon_sym_U_DQUOTE] = ACTIONS(5040), - [anon_sym_u8_DQUOTE] = ACTIONS(5040), - [anon_sym_DQUOTE] = ACTIONS(5040), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4152), - [anon_sym_decltype] = ACTIONS(4152), - [anon_sym_R_DQUOTE] = ACTIONS(5042), - [anon_sym_LR_DQUOTE] = ACTIONS(5042), - [anon_sym_uR_DQUOTE] = ACTIONS(5042), - [anon_sym_UR_DQUOTE] = ACTIONS(5042), - [anon_sym_u8R_DQUOTE] = ACTIONS(5042), - [anon_sym_DASH_GT_STAR] = ACTIONS(4146), }, - [1574] = { - [sym_identifier] = ACTIONS(4996), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5000), - [anon_sym_COMMA] = ACTIONS(5000), - [anon_sym_RPAREN] = ACTIONS(5000), - [anon_sym_LPAREN2] = ACTIONS(5000), - [anon_sym_TILDE] = ACTIONS(5003), - [anon_sym_DASH] = ACTIONS(5005), - [anon_sym_PLUS] = ACTIONS(5005), - [anon_sym_STAR] = ACTIONS(5007), - [anon_sym_SLASH] = ACTIONS(5005), - [anon_sym_PERCENT] = ACTIONS(5005), - [anon_sym_PIPE_PIPE] = ACTIONS(4998), - [anon_sym_AMP_AMP] = ACTIONS(5000), - [anon_sym_PIPE] = ACTIONS(5005), - [anon_sym_CARET] = ACTIONS(5005), - [anon_sym_AMP] = ACTIONS(5007), - [anon_sym_EQ_EQ] = ACTIONS(4998), - [anon_sym_BANG_EQ] = ACTIONS(4998), - [anon_sym_GT] = ACTIONS(5005), - [anon_sym_GT_EQ] = ACTIONS(4998), - [anon_sym_LT_EQ] = ACTIONS(5005), - [anon_sym_LT] = ACTIONS(5005), - [anon_sym_LT_LT] = ACTIONS(5005), - [anon_sym_GT_GT] = ACTIONS(5005), - [anon_sym___extension__] = ACTIONS(4996), - [anon_sym_virtual] = ACTIONS(4996), - [anon_sym_extern] = ACTIONS(4996), - [anon_sym___attribute__] = ACTIONS(4996), - [anon_sym___attribute] = ACTIONS(4996), - [anon_sym_COLON_COLON] = ACTIONS(5003), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5003), - [anon_sym___declspec] = ACTIONS(4996), - [anon_sym___based] = ACTIONS(4996), - [anon_sym_LBRACE] = ACTIONS(5003), - [anon_sym_LBRACK] = ACTIONS(5007), - [anon_sym_static] = ACTIONS(4996), - [anon_sym_EQ] = ACTIONS(5007), - [anon_sym_register] = ACTIONS(4996), - [anon_sym_inline] = ACTIONS(4996), - [anon_sym___inline] = ACTIONS(4996), - [anon_sym___inline__] = ACTIONS(4996), - [anon_sym___forceinline] = ACTIONS(4996), - [anon_sym_thread_local] = ACTIONS(4996), - [anon_sym___thread] = ACTIONS(4996), - [anon_sym_const] = ACTIONS(4996), - [anon_sym_constexpr] = ACTIONS(4996), - [anon_sym_volatile] = ACTIONS(4996), - [anon_sym_restrict] = ACTIONS(4996), - [anon_sym___restrict__] = ACTIONS(4996), - [anon_sym__Atomic] = ACTIONS(4996), - [anon_sym__Noreturn] = ACTIONS(4996), - [anon_sym_noreturn] = ACTIONS(4996), - [anon_sym__Nonnull] = ACTIONS(4996), - [anon_sym_mutable] = ACTIONS(4996), - [anon_sym_constinit] = ACTIONS(4996), - [anon_sym_consteval] = ACTIONS(4996), - [anon_sym_alignas] = ACTIONS(4996), - [anon_sym__Alignas] = ACTIONS(4996), - [anon_sym_QMARK] = ACTIONS(4998), - [anon_sym_STAR_EQ] = ACTIONS(4998), - [anon_sym_SLASH_EQ] = ACTIONS(4998), - [anon_sym_PERCENT_EQ] = ACTIONS(4998), - [anon_sym_PLUS_EQ] = ACTIONS(4998), - [anon_sym_DASH_EQ] = ACTIONS(4998), - [anon_sym_LT_LT_EQ] = ACTIONS(4998), - [anon_sym_GT_GT_EQ] = ACTIONS(4998), - [anon_sym_AMP_EQ] = ACTIONS(4998), - [anon_sym_CARET_EQ] = ACTIONS(4998), - [anon_sym_PIPE_EQ] = ACTIONS(4998), - [anon_sym_and_eq] = ACTIONS(5005), - [anon_sym_or_eq] = ACTIONS(5005), - [anon_sym_xor_eq] = ACTIONS(5005), - [anon_sym_LT_EQ_GT] = ACTIONS(4998), - [anon_sym_or] = ACTIONS(5005), - [anon_sym_and] = ACTIONS(5005), - [anon_sym_bitor] = ACTIONS(5005), - [anon_sym_xor] = ACTIONS(5005), - [anon_sym_bitand] = ACTIONS(5005), - [anon_sym_not_eq] = ACTIONS(5005), - [anon_sym_DASH_DASH] = ACTIONS(4998), - [anon_sym_PLUS_PLUS] = ACTIONS(4998), - [anon_sym_DOT] = ACTIONS(5005), - [anon_sym_DOT_STAR] = ACTIONS(4998), - [anon_sym_DASH_GT] = ACTIONS(5005), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4996), - [anon_sym_decltype] = ACTIONS(4996), - [anon_sym_template] = ACTIONS(4996), - [anon_sym_operator] = ACTIONS(4996), - [anon_sym_DASH_GT_STAR] = ACTIONS(4998), + [1597] = { + [sym_string_literal] = STATE(2234), + [sym_template_argument_list] = STATE(1893), + [sym_raw_string_literal] = STATE(2234), + [aux_sym_sized_type_specifier_repeat1] = STATE(1959), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4166), + [anon_sym_COMMA] = ACTIONS(4166), + [anon_sym_RPAREN] = ACTIONS(4179), + [anon_sym_LPAREN2] = ACTIONS(4179), + [anon_sym_DASH] = ACTIONS(4174), + [anon_sym_PLUS] = ACTIONS(4174), + [anon_sym_STAR] = ACTIONS(4176), + [anon_sym_SLASH] = ACTIONS(4174), + [anon_sym_PERCENT] = ACTIONS(4174), + [anon_sym_PIPE_PIPE] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4179), + [anon_sym_PIPE] = ACTIONS(4174), + [anon_sym_CARET] = ACTIONS(4174), + [anon_sym_AMP] = ACTIONS(4176), + [anon_sym_EQ_EQ] = ACTIONS(4166), + [anon_sym_BANG_EQ] = ACTIONS(4166), + [anon_sym_GT] = ACTIONS(4174), + [anon_sym_GT_EQ] = ACTIONS(4166), + [anon_sym_LT_EQ] = ACTIONS(4174), + [anon_sym_LT] = ACTIONS(5052), + [anon_sym_LT_LT] = ACTIONS(4174), + [anon_sym_GT_GT] = ACTIONS(4174), + [anon_sym___extension__] = ACTIONS(4172), + [anon_sym_COLON_COLON] = ACTIONS(4187), + [anon_sym_LBRACE] = ACTIONS(4192), + [anon_sym_signed] = ACTIONS(5046), + [anon_sym_unsigned] = ACTIONS(5046), + [anon_sym_long] = ACTIONS(5046), + [anon_sym_short] = ACTIONS(5046), + [anon_sym_LBRACK] = ACTIONS(4179), + [anon_sym_EQ] = ACTIONS(4174), + [anon_sym_const] = ACTIONS(4164), + [anon_sym_constexpr] = ACTIONS(4172), + [anon_sym_volatile] = ACTIONS(4172), + [anon_sym_restrict] = ACTIONS(4172), + [anon_sym___restrict__] = ACTIONS(4172), + [anon_sym__Atomic] = ACTIONS(4172), + [anon_sym__Noreturn] = ACTIONS(4172), + [anon_sym_noreturn] = ACTIONS(4172), + [anon_sym__Nonnull] = ACTIONS(4172), + [anon_sym_mutable] = ACTIONS(4172), + [anon_sym_constinit] = ACTIONS(4172), + [anon_sym_consteval] = ACTIONS(4172), + [anon_sym_alignas] = ACTIONS(4172), + [anon_sym__Alignas] = ACTIONS(4172), + [anon_sym_QMARK] = ACTIONS(4166), + [anon_sym_STAR_EQ] = ACTIONS(4166), + [anon_sym_SLASH_EQ] = ACTIONS(4166), + [anon_sym_PERCENT_EQ] = ACTIONS(4166), + [anon_sym_PLUS_EQ] = ACTIONS(4166), + [anon_sym_DASH_EQ] = ACTIONS(4166), + [anon_sym_LT_LT_EQ] = ACTIONS(4166), + [anon_sym_GT_GT_EQ] = ACTIONS(4166), + [anon_sym_AMP_EQ] = ACTIONS(4166), + [anon_sym_CARET_EQ] = ACTIONS(4166), + [anon_sym_PIPE_EQ] = ACTIONS(4166), + [anon_sym_and_eq] = ACTIONS(4166), + [anon_sym_or_eq] = ACTIONS(4166), + [anon_sym_xor_eq] = ACTIONS(4166), + [anon_sym_LT_EQ_GT] = ACTIONS(4166), + [anon_sym_or] = ACTIONS(4174), + [anon_sym_and] = ACTIONS(4174), + [anon_sym_bitor] = ACTIONS(4166), + [anon_sym_xor] = ACTIONS(4174), + [anon_sym_bitand] = ACTIONS(4166), + [anon_sym_not_eq] = ACTIONS(4166), + [anon_sym_DASH_DASH] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4174), + [anon_sym_DOT_STAR] = ACTIONS(4166), + [anon_sym_DASH_GT] = ACTIONS(4174), + [anon_sym_L_DQUOTE] = ACTIONS(5048), + [anon_sym_u_DQUOTE] = ACTIONS(5048), + [anon_sym_U_DQUOTE] = ACTIONS(5048), + [anon_sym_u8_DQUOTE] = ACTIONS(5048), + [anon_sym_DQUOTE] = ACTIONS(5048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4172), + [anon_sym_decltype] = ACTIONS(4172), + [anon_sym_R_DQUOTE] = ACTIONS(5050), + [anon_sym_LR_DQUOTE] = ACTIONS(5050), + [anon_sym_uR_DQUOTE] = ACTIONS(5050), + [anon_sym_UR_DQUOTE] = ACTIONS(5050), + [anon_sym_u8R_DQUOTE] = ACTIONS(5050), + [anon_sym_DASH_GT_STAR] = ACTIONS(4166), }, - [1575] = { - [sym_template_argument_list] = STATE(1577), - [sym_identifier] = ACTIONS(4963), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4967), - [anon_sym_COMMA] = ACTIONS(4967), - [anon_sym_RPAREN] = ACTIONS(4967), - [anon_sym_LPAREN2] = ACTIONS(4967), - [anon_sym_TILDE] = ACTIONS(4970), - [anon_sym_DASH] = ACTIONS(4972), - [anon_sym_PLUS] = ACTIONS(4972), - [anon_sym_STAR] = ACTIONS(4974), - [anon_sym_SLASH] = ACTIONS(4972), - [anon_sym_PERCENT] = ACTIONS(4972), - [anon_sym_PIPE_PIPE] = ACTIONS(4965), - [anon_sym_AMP_AMP] = ACTIONS(4967), - [anon_sym_PIPE] = ACTIONS(4972), - [anon_sym_CARET] = ACTIONS(4972), - [anon_sym_AMP] = ACTIONS(4974), - [anon_sym_EQ_EQ] = ACTIONS(4965), - [anon_sym_BANG_EQ] = ACTIONS(4965), - [anon_sym_GT] = ACTIONS(4972), - [anon_sym_GT_EQ] = ACTIONS(4965), - [anon_sym_LT_EQ] = ACTIONS(4972), - [anon_sym_LT] = ACTIONS(4977), - [anon_sym_LT_LT] = ACTIONS(4972), - [anon_sym_GT_GT] = ACTIONS(4972), - [anon_sym___extension__] = ACTIONS(4963), - [anon_sym_virtual] = ACTIONS(4963), - [anon_sym_extern] = ACTIONS(4963), - [anon_sym___attribute__] = ACTIONS(4963), - [anon_sym___attribute] = ACTIONS(4963), - [anon_sym_COLON_COLON] = ACTIONS(4167), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4970), - [anon_sym___declspec] = ACTIONS(4963), - [anon_sym___based] = ACTIONS(4963), - [anon_sym_LBRACE] = ACTIONS(4970), - [anon_sym_LBRACK] = ACTIONS(4974), - [anon_sym_static] = ACTIONS(4963), - [anon_sym_EQ] = ACTIONS(4974), - [anon_sym_register] = ACTIONS(4963), - [anon_sym_inline] = ACTIONS(4963), - [anon_sym___inline] = ACTIONS(4963), - [anon_sym___inline__] = ACTIONS(4963), - [anon_sym___forceinline] = ACTIONS(4963), - [anon_sym_thread_local] = ACTIONS(4963), - [anon_sym___thread] = ACTIONS(4963), - [anon_sym_const] = ACTIONS(4963), - [anon_sym_constexpr] = ACTIONS(4963), - [anon_sym_volatile] = ACTIONS(4963), - [anon_sym_restrict] = ACTIONS(4963), - [anon_sym___restrict__] = ACTIONS(4963), - [anon_sym__Atomic] = ACTIONS(4963), - [anon_sym__Noreturn] = ACTIONS(4963), - [anon_sym_noreturn] = ACTIONS(4963), - [anon_sym__Nonnull] = ACTIONS(4963), - [anon_sym_mutable] = ACTIONS(4963), - [anon_sym_constinit] = ACTIONS(4963), - [anon_sym_consteval] = ACTIONS(4963), - [anon_sym_alignas] = ACTIONS(4963), - [anon_sym__Alignas] = ACTIONS(4963), - [anon_sym_QMARK] = ACTIONS(4965), - [anon_sym_STAR_EQ] = ACTIONS(4965), - [anon_sym_SLASH_EQ] = ACTIONS(4965), - [anon_sym_PERCENT_EQ] = ACTIONS(4965), - [anon_sym_PLUS_EQ] = ACTIONS(4965), - [anon_sym_DASH_EQ] = ACTIONS(4965), - [anon_sym_LT_LT_EQ] = ACTIONS(4965), - [anon_sym_GT_GT_EQ] = ACTIONS(4965), - [anon_sym_AMP_EQ] = ACTIONS(4965), - [anon_sym_CARET_EQ] = ACTIONS(4965), - [anon_sym_PIPE_EQ] = ACTIONS(4965), - [anon_sym_and_eq] = ACTIONS(4972), - [anon_sym_or_eq] = ACTIONS(4972), - [anon_sym_xor_eq] = ACTIONS(4972), - [anon_sym_LT_EQ_GT] = ACTIONS(4965), - [anon_sym_or] = ACTIONS(4972), - [anon_sym_and] = ACTIONS(4972), - [anon_sym_bitor] = ACTIONS(4972), - [anon_sym_xor] = ACTIONS(4972), - [anon_sym_bitand] = ACTIONS(4972), - [anon_sym_not_eq] = ACTIONS(4972), - [anon_sym_DASH_DASH] = ACTIONS(4965), - [anon_sym_PLUS_PLUS] = ACTIONS(4965), - [anon_sym_DOT] = ACTIONS(4972), - [anon_sym_DOT_STAR] = ACTIONS(4965), - [anon_sym_DASH_GT] = ACTIONS(4965), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4963), - [anon_sym_decltype] = ACTIONS(4963), - [anon_sym_template] = ACTIONS(4963), - [anon_sym_operator] = ACTIONS(4963), + [1598] = { + [sym_type_qualifier] = STATE(1598), + [sym_alignas_qualifier] = STATE(1610), + [aux_sym__type_definition_type_repeat1] = STATE(1598), + [sym_identifier] = ACTIONS(5055), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5057), + [anon_sym_COMMA] = ACTIONS(5057), + [anon_sym_RPAREN] = ACTIONS(5057), + [aux_sym_preproc_if_token2] = ACTIONS(5057), + [aux_sym_preproc_else_token1] = ACTIONS(5057), + [aux_sym_preproc_elif_token1] = ACTIONS(5055), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5057), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5057), + [anon_sym_LPAREN2] = ACTIONS(5057), + [anon_sym_DASH] = ACTIONS(5055), + [anon_sym_PLUS] = ACTIONS(5055), + [anon_sym_STAR] = ACTIONS(5055), + [anon_sym_SLASH] = ACTIONS(5055), + [anon_sym_PERCENT] = ACTIONS(5055), + [anon_sym_PIPE_PIPE] = ACTIONS(5057), + [anon_sym_AMP_AMP] = ACTIONS(5057), + [anon_sym_PIPE] = ACTIONS(5055), + [anon_sym_CARET] = ACTIONS(5055), + [anon_sym_AMP] = ACTIONS(5055), + [anon_sym_EQ_EQ] = ACTIONS(5057), + [anon_sym_BANG_EQ] = ACTIONS(5057), + [anon_sym_GT] = ACTIONS(5055), + [anon_sym_GT_EQ] = ACTIONS(5057), + [anon_sym_LT_EQ] = ACTIONS(5055), + [anon_sym_LT] = ACTIONS(5055), + [anon_sym_LT_LT] = ACTIONS(5055), + [anon_sym_GT_GT] = ACTIONS(5055), + [anon_sym_SEMI] = ACTIONS(5057), + [anon_sym___extension__] = ACTIONS(5059), + [anon_sym___attribute__] = ACTIONS(5055), + [anon_sym___attribute] = ACTIONS(5055), + [anon_sym_COLON] = ACTIONS(5057), + [anon_sym_LBRACE] = ACTIONS(5057), + [anon_sym_RBRACE] = ACTIONS(5057), + [anon_sym_signed] = ACTIONS(5055), + [anon_sym_unsigned] = ACTIONS(5055), + [anon_sym_long] = ACTIONS(5055), + [anon_sym_short] = ACTIONS(5055), + [anon_sym_LBRACK] = ACTIONS(5057), + [anon_sym_RBRACK] = ACTIONS(5057), + [anon_sym_EQ] = ACTIONS(5055), + [anon_sym_const] = ACTIONS(5059), + [anon_sym_constexpr] = ACTIONS(5059), + [anon_sym_volatile] = ACTIONS(5059), + [anon_sym_restrict] = ACTIONS(5059), + [anon_sym___restrict__] = ACTIONS(5059), + [anon_sym__Atomic] = ACTIONS(5059), + [anon_sym__Noreturn] = ACTIONS(5059), + [anon_sym_noreturn] = ACTIONS(5059), + [anon_sym__Nonnull] = ACTIONS(5059), + [anon_sym_mutable] = ACTIONS(5059), + [anon_sym_constinit] = ACTIONS(5059), + [anon_sym_consteval] = ACTIONS(5059), + [anon_sym_alignas] = ACTIONS(5062), + [anon_sym__Alignas] = ACTIONS(5062), + [sym_primitive_type] = ACTIONS(5055), + [anon_sym_QMARK] = ACTIONS(5057), + [anon_sym_STAR_EQ] = ACTIONS(5057), + [anon_sym_SLASH_EQ] = ACTIONS(5057), + [anon_sym_PERCENT_EQ] = ACTIONS(5057), + [anon_sym_PLUS_EQ] = ACTIONS(5057), + [anon_sym_DASH_EQ] = ACTIONS(5057), + [anon_sym_LT_LT_EQ] = ACTIONS(5057), + [anon_sym_GT_GT_EQ] = ACTIONS(5057), + [anon_sym_AMP_EQ] = ACTIONS(5057), + [anon_sym_CARET_EQ] = ACTIONS(5057), + [anon_sym_PIPE_EQ] = ACTIONS(5057), + [anon_sym_and_eq] = ACTIONS(5055), + [anon_sym_or_eq] = ACTIONS(5055), + [anon_sym_xor_eq] = ACTIONS(5055), + [anon_sym_LT_EQ_GT] = ACTIONS(5057), + [anon_sym_or] = ACTIONS(5055), + [anon_sym_and] = ACTIONS(5055), + [anon_sym_bitor] = ACTIONS(5055), + [anon_sym_xor] = ACTIONS(5055), + [anon_sym_bitand] = ACTIONS(5055), + [anon_sym_not_eq] = ACTIONS(5055), + [anon_sym_DASH_DASH] = ACTIONS(5057), + [anon_sym_PLUS_PLUS] = ACTIONS(5057), + [anon_sym_DOT] = ACTIONS(5055), + [anon_sym_DOT_STAR] = ACTIONS(5057), + [anon_sym_DASH_GT] = ACTIONS(5057), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5055), + [anon_sym_decltype] = ACTIONS(5055), }, - [1576] = { - [sym_string_literal] = STATE(2189), - [sym_template_argument_list] = STATE(1856), - [sym_raw_string_literal] = STATE(2189), - [aux_sym_sized_type_specifier_repeat1] = STATE(1935), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4146), - [anon_sym_COMMA] = ACTIONS(4146), - [anon_sym_RPAREN] = ACTIONS(4159), - [anon_sym_LPAREN2] = ACTIONS(4159), - [anon_sym_DASH] = ACTIONS(4154), - [anon_sym_PLUS] = ACTIONS(4154), - [anon_sym_STAR] = ACTIONS(4156), - [anon_sym_SLASH] = ACTIONS(4154), - [anon_sym_PERCENT] = ACTIONS(4154), - [anon_sym_PIPE_PIPE] = ACTIONS(4146), - [anon_sym_AMP_AMP] = ACTIONS(4159), - [anon_sym_PIPE] = ACTIONS(4154), - [anon_sym_CARET] = ACTIONS(4154), - [anon_sym_AMP] = ACTIONS(4156), - [anon_sym_EQ_EQ] = ACTIONS(4146), - [anon_sym_BANG_EQ] = ACTIONS(4146), - [anon_sym_GT] = ACTIONS(4154), - [anon_sym_GT_EQ] = ACTIONS(4146), - [anon_sym_LT_EQ] = ACTIONS(4154), - [anon_sym_LT] = ACTIONS(5044), - [anon_sym_LT_LT] = ACTIONS(4154), - [anon_sym_GT_GT] = ACTIONS(4154), - [anon_sym___extension__] = ACTIONS(4152), - [anon_sym_COLON_COLON] = ACTIONS(4167), - [anon_sym_LBRACE] = ACTIONS(4172), - [anon_sym_signed] = ACTIONS(5038), - [anon_sym_unsigned] = ACTIONS(5038), - [anon_sym_long] = ACTIONS(5038), - [anon_sym_short] = ACTIONS(5038), - [anon_sym_LBRACK] = ACTIONS(4159), - [anon_sym_EQ] = ACTIONS(4154), - [anon_sym_const] = ACTIONS(4144), - [anon_sym_constexpr] = ACTIONS(4152), - [anon_sym_volatile] = ACTIONS(4152), - [anon_sym_restrict] = ACTIONS(4152), - [anon_sym___restrict__] = ACTIONS(4152), - [anon_sym__Atomic] = ACTIONS(4152), - [anon_sym__Noreturn] = ACTIONS(4152), - [anon_sym_noreturn] = ACTIONS(4152), - [anon_sym__Nonnull] = ACTIONS(4152), - [anon_sym_mutable] = ACTIONS(4152), - [anon_sym_constinit] = ACTIONS(4152), - [anon_sym_consteval] = ACTIONS(4152), - [anon_sym_alignas] = ACTIONS(4152), - [anon_sym__Alignas] = ACTIONS(4152), - [anon_sym_QMARK] = ACTIONS(4146), - [anon_sym_STAR_EQ] = ACTIONS(4146), - [anon_sym_SLASH_EQ] = ACTIONS(4146), - [anon_sym_PERCENT_EQ] = ACTIONS(4146), - [anon_sym_PLUS_EQ] = ACTIONS(4146), - [anon_sym_DASH_EQ] = ACTIONS(4146), - [anon_sym_LT_LT_EQ] = ACTIONS(4146), - [anon_sym_GT_GT_EQ] = ACTIONS(4146), - [anon_sym_AMP_EQ] = ACTIONS(4146), - [anon_sym_CARET_EQ] = ACTIONS(4146), - [anon_sym_PIPE_EQ] = ACTIONS(4146), - [anon_sym_and_eq] = ACTIONS(4146), - [anon_sym_or_eq] = ACTIONS(4146), - [anon_sym_xor_eq] = ACTIONS(4146), - [anon_sym_LT_EQ_GT] = ACTIONS(4146), - [anon_sym_or] = ACTIONS(4154), - [anon_sym_and] = ACTIONS(4154), - [anon_sym_bitor] = ACTIONS(4146), - [anon_sym_xor] = ACTIONS(4154), - [anon_sym_bitand] = ACTIONS(4146), - [anon_sym_not_eq] = ACTIONS(4146), - [anon_sym_DASH_DASH] = ACTIONS(4146), - [anon_sym_PLUS_PLUS] = ACTIONS(4146), - [anon_sym_DOT] = ACTIONS(4154), - [anon_sym_DOT_STAR] = ACTIONS(4146), - [anon_sym_DASH_GT] = ACTIONS(4154), - [anon_sym_L_DQUOTE] = ACTIONS(5040), - [anon_sym_u_DQUOTE] = ACTIONS(5040), - [anon_sym_U_DQUOTE] = ACTIONS(5040), - [anon_sym_u8_DQUOTE] = ACTIONS(5040), - [anon_sym_DQUOTE] = ACTIONS(5040), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4152), - [anon_sym_decltype] = ACTIONS(4152), - [anon_sym_R_DQUOTE] = ACTIONS(5042), - [anon_sym_LR_DQUOTE] = ACTIONS(5042), - [anon_sym_uR_DQUOTE] = ACTIONS(5042), - [anon_sym_UR_DQUOTE] = ACTIONS(5042), - [anon_sym_u8R_DQUOTE] = ACTIONS(5042), - [anon_sym_DASH_GT_STAR] = ACTIONS(4146), + [1599] = { + [sym_string_literal] = STATE(3543), + [sym_template_argument_list] = STATE(3000), + [sym_raw_string_literal] = STATE(3543), + [aux_sym_sized_type_specifier_repeat1] = STATE(2358), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4179), + [anon_sym_COMMA] = ACTIONS(4179), + [anon_sym_LPAREN2] = ACTIONS(4179), + [anon_sym_DASH] = ACTIONS(4174), + [anon_sym_PLUS] = ACTIONS(4174), + [anon_sym_STAR] = ACTIONS(4176), + [anon_sym_SLASH] = ACTIONS(4174), + [anon_sym_PERCENT] = ACTIONS(4174), + [anon_sym_PIPE_PIPE] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4179), + [anon_sym_PIPE] = ACTIONS(4174), + [anon_sym_CARET] = ACTIONS(4174), + [anon_sym_AMP] = ACTIONS(4176), + [anon_sym_EQ_EQ] = ACTIONS(4166), + [anon_sym_BANG_EQ] = ACTIONS(4166), + [anon_sym_GT] = ACTIONS(4174), + [anon_sym_GT_EQ] = ACTIONS(4174), + [anon_sym_LT_EQ] = ACTIONS(4174), + [anon_sym_LT] = ACTIONS(5065), + [anon_sym_LT_LT] = ACTIONS(4174), + [anon_sym_GT_GT] = ACTIONS(4174), + [anon_sym___extension__] = ACTIONS(4172), + [anon_sym_COLON_COLON] = ACTIONS(4187), + [anon_sym_LBRACE] = ACTIONS(4192), + [anon_sym_signed] = ACTIONS(5068), + [anon_sym_unsigned] = ACTIONS(5068), + [anon_sym_long] = ACTIONS(5068), + [anon_sym_short] = ACTIONS(5068), + [anon_sym_LBRACK] = ACTIONS(4179), + [anon_sym_EQ] = ACTIONS(5070), + [anon_sym_const] = ACTIONS(4164), + [anon_sym_constexpr] = ACTIONS(4172), + [anon_sym_volatile] = ACTIONS(4172), + [anon_sym_restrict] = ACTIONS(4172), + [anon_sym___restrict__] = ACTIONS(4172), + [anon_sym__Atomic] = ACTIONS(4172), + [anon_sym__Noreturn] = ACTIONS(4172), + [anon_sym_noreturn] = ACTIONS(4172), + [anon_sym__Nonnull] = ACTIONS(4172), + [anon_sym_mutable] = ACTIONS(4172), + [anon_sym_constinit] = ACTIONS(4172), + [anon_sym_consteval] = ACTIONS(4172), + [anon_sym_alignas] = ACTIONS(4172), + [anon_sym__Alignas] = ACTIONS(4172), + [anon_sym_QMARK] = ACTIONS(4166), + [anon_sym_STAR_EQ] = ACTIONS(5072), + [anon_sym_SLASH_EQ] = ACTIONS(5072), + [anon_sym_PERCENT_EQ] = ACTIONS(5072), + [anon_sym_PLUS_EQ] = ACTIONS(5072), + [anon_sym_DASH_EQ] = ACTIONS(5072), + [anon_sym_LT_LT_EQ] = ACTIONS(5072), + [anon_sym_GT_GT_EQ] = ACTIONS(5070), + [anon_sym_AMP_EQ] = ACTIONS(5072), + [anon_sym_CARET_EQ] = ACTIONS(5072), + [anon_sym_PIPE_EQ] = ACTIONS(5072), + [anon_sym_and_eq] = ACTIONS(5072), + [anon_sym_or_eq] = ACTIONS(5072), + [anon_sym_xor_eq] = ACTIONS(5072), + [anon_sym_LT_EQ_GT] = ACTIONS(4166), + [anon_sym_or] = ACTIONS(4174), + [anon_sym_and] = ACTIONS(4174), + [anon_sym_bitor] = ACTIONS(4166), + [anon_sym_xor] = ACTIONS(4174), + [anon_sym_bitand] = ACTIONS(4166), + [anon_sym_not_eq] = ACTIONS(4166), + [anon_sym_DASH_DASH] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4174), + [anon_sym_DOT_STAR] = ACTIONS(4166), + [anon_sym_DASH_GT] = ACTIONS(4166), + [anon_sym_L_DQUOTE] = ACTIONS(5074), + [anon_sym_u_DQUOTE] = ACTIONS(5074), + [anon_sym_U_DQUOTE] = ACTIONS(5074), + [anon_sym_u8_DQUOTE] = ACTIONS(5074), + [anon_sym_DQUOTE] = ACTIONS(5074), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4172), + [anon_sym_decltype] = ACTIONS(4172), + [anon_sym_GT2] = ACTIONS(4179), + [anon_sym_R_DQUOTE] = ACTIONS(5076), + [anon_sym_LR_DQUOTE] = ACTIONS(5076), + [anon_sym_uR_DQUOTE] = ACTIONS(5076), + [anon_sym_UR_DQUOTE] = ACTIONS(5076), + [anon_sym_u8R_DQUOTE] = ACTIONS(5076), }, - [1577] = { - [sym_identifier] = ACTIONS(4996), + [1600] = { + [sym_identifier] = ACTIONS(4998), [anon_sym_DOT_DOT_DOT] = ACTIONS(5000), [anon_sym_COMMA] = ACTIONS(5000), [anon_sym_RPAREN] = ACTIONS(5000), [anon_sym_LPAREN2] = ACTIONS(5000), - [anon_sym_TILDE] = ACTIONS(5003), - [anon_sym_DASH] = ACTIONS(5005), - [anon_sym_PLUS] = ACTIONS(5005), - [anon_sym_STAR] = ACTIONS(5007), - [anon_sym_SLASH] = ACTIONS(5005), - [anon_sym_PERCENT] = ACTIONS(5005), - [anon_sym_PIPE_PIPE] = ACTIONS(4998), + [anon_sym_TILDE] = ACTIONS(5000), + [anon_sym_DASH] = ACTIONS(4998), + [anon_sym_PLUS] = ACTIONS(4998), + [anon_sym_STAR] = ACTIONS(4998), + [anon_sym_SLASH] = ACTIONS(4998), + [anon_sym_PERCENT] = ACTIONS(4998), + [anon_sym_PIPE_PIPE] = ACTIONS(5000), [anon_sym_AMP_AMP] = ACTIONS(5000), - [anon_sym_PIPE] = ACTIONS(5005), - [anon_sym_CARET] = ACTIONS(5005), - [anon_sym_AMP] = ACTIONS(5007), - [anon_sym_EQ_EQ] = ACTIONS(4998), - [anon_sym_BANG_EQ] = ACTIONS(4998), - [anon_sym_GT] = ACTIONS(5005), - [anon_sym_GT_EQ] = ACTIONS(4998), - [anon_sym_LT_EQ] = ACTIONS(5005), - [anon_sym_LT] = ACTIONS(5005), - [anon_sym_LT_LT] = ACTIONS(5005), - [anon_sym_GT_GT] = ACTIONS(5005), - [anon_sym___extension__] = ACTIONS(4996), - [anon_sym_virtual] = ACTIONS(4996), - [anon_sym_extern] = ACTIONS(4996), - [anon_sym___attribute__] = ACTIONS(4996), - [anon_sym___attribute] = ACTIONS(4996), - [anon_sym_COLON_COLON] = ACTIONS(5003), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5003), - [anon_sym___declspec] = ACTIONS(4996), - [anon_sym___based] = ACTIONS(4996), - [anon_sym_LBRACE] = ACTIONS(5003), - [anon_sym_LBRACK] = ACTIONS(5007), - [anon_sym_static] = ACTIONS(4996), - [anon_sym_EQ] = ACTIONS(5007), - [anon_sym_register] = ACTIONS(4996), - [anon_sym_inline] = ACTIONS(4996), - [anon_sym___inline] = ACTIONS(4996), - [anon_sym___inline__] = ACTIONS(4996), - [anon_sym___forceinline] = ACTIONS(4996), - [anon_sym_thread_local] = ACTIONS(4996), - [anon_sym___thread] = ACTIONS(4996), - [anon_sym_const] = ACTIONS(4996), - [anon_sym_constexpr] = ACTIONS(4996), - [anon_sym_volatile] = ACTIONS(4996), - [anon_sym_restrict] = ACTIONS(4996), - [anon_sym___restrict__] = ACTIONS(4996), - [anon_sym__Atomic] = ACTIONS(4996), - [anon_sym__Noreturn] = ACTIONS(4996), - [anon_sym_noreturn] = ACTIONS(4996), - [anon_sym__Nonnull] = ACTIONS(4996), - [anon_sym_mutable] = ACTIONS(4996), - [anon_sym_constinit] = ACTIONS(4996), - [anon_sym_consteval] = ACTIONS(4996), - [anon_sym_alignas] = ACTIONS(4996), - [anon_sym__Alignas] = ACTIONS(4996), - [anon_sym_QMARK] = ACTIONS(4998), - [anon_sym_STAR_EQ] = ACTIONS(4998), - [anon_sym_SLASH_EQ] = ACTIONS(4998), - [anon_sym_PERCENT_EQ] = ACTIONS(4998), - [anon_sym_PLUS_EQ] = ACTIONS(4998), - [anon_sym_DASH_EQ] = ACTIONS(4998), - [anon_sym_LT_LT_EQ] = ACTIONS(4998), - [anon_sym_GT_GT_EQ] = ACTIONS(4998), - [anon_sym_AMP_EQ] = ACTIONS(4998), - [anon_sym_CARET_EQ] = ACTIONS(4998), - [anon_sym_PIPE_EQ] = ACTIONS(4998), - [anon_sym_and_eq] = ACTIONS(5005), - [anon_sym_or_eq] = ACTIONS(5005), - [anon_sym_xor_eq] = ACTIONS(5005), - [anon_sym_LT_EQ_GT] = ACTIONS(4998), - [anon_sym_or] = ACTIONS(5005), - [anon_sym_and] = ACTIONS(5005), - [anon_sym_bitor] = ACTIONS(5005), - [anon_sym_xor] = ACTIONS(5005), - [anon_sym_bitand] = ACTIONS(5005), - [anon_sym_not_eq] = ACTIONS(5005), - [anon_sym_DASH_DASH] = ACTIONS(4998), - [anon_sym_PLUS_PLUS] = ACTIONS(4998), - [anon_sym_DOT] = ACTIONS(5005), - [anon_sym_DOT_STAR] = ACTIONS(4998), + [anon_sym_PIPE] = ACTIONS(4998), + [anon_sym_CARET] = ACTIONS(4998), + [anon_sym_AMP] = ACTIONS(4998), + [anon_sym_EQ_EQ] = ACTIONS(5000), + [anon_sym_BANG_EQ] = ACTIONS(5000), + [anon_sym_GT] = ACTIONS(4998), + [anon_sym_GT_EQ] = ACTIONS(5000), + [anon_sym_LT_EQ] = ACTIONS(4998), + [anon_sym_LT] = ACTIONS(4998), + [anon_sym_LT_LT] = ACTIONS(4998), + [anon_sym_GT_GT] = ACTIONS(4998), + [anon_sym___extension__] = ACTIONS(4998), + [anon_sym_virtual] = ACTIONS(4998), + [anon_sym_extern] = ACTIONS(4998), + [anon_sym___attribute__] = ACTIONS(4998), + [anon_sym___attribute] = ACTIONS(4998), + [anon_sym_COLON_COLON] = ACTIONS(5000), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5000), + [anon_sym___declspec] = ACTIONS(4998), + [anon_sym___based] = ACTIONS(4998), + [anon_sym_LBRACE] = ACTIONS(5000), + [anon_sym_LBRACK] = ACTIONS(4998), + [anon_sym_static] = ACTIONS(4998), + [anon_sym_EQ] = ACTIONS(4998), + [anon_sym_register] = ACTIONS(4998), + [anon_sym_inline] = ACTIONS(4998), + [anon_sym___inline] = ACTIONS(4998), + [anon_sym___inline__] = ACTIONS(4998), + [anon_sym___forceinline] = ACTIONS(4998), + [anon_sym_thread_local] = ACTIONS(4998), + [anon_sym___thread] = ACTIONS(4998), + [anon_sym_const] = ACTIONS(4998), + [anon_sym_constexpr] = ACTIONS(4998), + [anon_sym_volatile] = ACTIONS(4998), + [anon_sym_restrict] = ACTIONS(4998), + [anon_sym___restrict__] = ACTIONS(4998), + [anon_sym__Atomic] = ACTIONS(4998), + [anon_sym__Noreturn] = ACTIONS(4998), + [anon_sym_noreturn] = ACTIONS(4998), + [anon_sym__Nonnull] = ACTIONS(4998), + [anon_sym_mutable] = ACTIONS(4998), + [anon_sym_constinit] = ACTIONS(4998), + [anon_sym_consteval] = ACTIONS(4998), + [anon_sym_alignas] = ACTIONS(4998), + [anon_sym__Alignas] = ACTIONS(4998), + [anon_sym_QMARK] = ACTIONS(5000), + [anon_sym_STAR_EQ] = ACTIONS(5000), + [anon_sym_SLASH_EQ] = ACTIONS(5000), + [anon_sym_PERCENT_EQ] = ACTIONS(5000), + [anon_sym_PLUS_EQ] = ACTIONS(5000), + [anon_sym_DASH_EQ] = ACTIONS(5000), + [anon_sym_LT_LT_EQ] = ACTIONS(5000), + [anon_sym_GT_GT_EQ] = ACTIONS(5000), + [anon_sym_AMP_EQ] = ACTIONS(5000), + [anon_sym_CARET_EQ] = ACTIONS(5000), + [anon_sym_PIPE_EQ] = ACTIONS(5000), + [anon_sym_LT_EQ_GT] = ACTIONS(5000), + [anon_sym_or] = ACTIONS(4998), + [anon_sym_and] = ACTIONS(4998), + [anon_sym_bitor] = ACTIONS(4998), + [anon_sym_xor] = ACTIONS(4998), + [anon_sym_bitand] = ACTIONS(4998), + [anon_sym_not_eq] = ACTIONS(4998), + [anon_sym_DASH_DASH] = ACTIONS(5000), + [anon_sym_PLUS_PLUS] = ACTIONS(5000), + [anon_sym_DOT] = ACTIONS(4998), + [anon_sym_DOT_STAR] = ACTIONS(5000), [anon_sym_DASH_GT] = ACTIONS(4998), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4996), - [anon_sym_decltype] = ACTIONS(4996), - [anon_sym_template] = ACTIONS(4996), - [anon_sym_operator] = ACTIONS(4996), + [sym_auto] = ACTIONS(4998), + [anon_sym_decltype] = ACTIONS(4998), + [anon_sym_template] = ACTIONS(4998), + [anon_sym_operator] = ACTIONS(4998), + [anon_sym_DASH_GT_STAR] = ACTIONS(5000), }, - [1578] = { - [sym_type_qualifier] = STATE(1578), - [sym_alignas_qualifier] = STATE(1590), - [aux_sym__type_definition_type_repeat1] = STATE(1578), - [sym_identifier] = ACTIONS(5047), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5049), - [anon_sym_COMMA] = ACTIONS(5049), - [anon_sym_RPAREN] = ACTIONS(5049), - [aux_sym_preproc_if_token2] = ACTIONS(5049), - [aux_sym_preproc_else_token1] = ACTIONS(5049), - [aux_sym_preproc_elif_token1] = ACTIONS(5047), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5049), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5049), - [anon_sym_LPAREN2] = ACTIONS(5049), - [anon_sym_DASH] = ACTIONS(5047), - [anon_sym_PLUS] = ACTIONS(5047), - [anon_sym_STAR] = ACTIONS(5047), - [anon_sym_SLASH] = ACTIONS(5047), - [anon_sym_PERCENT] = ACTIONS(5047), - [anon_sym_PIPE_PIPE] = ACTIONS(5049), - [anon_sym_AMP_AMP] = ACTIONS(5049), - [anon_sym_PIPE] = ACTIONS(5047), - [anon_sym_CARET] = ACTIONS(5047), - [anon_sym_AMP] = ACTIONS(5047), - [anon_sym_EQ_EQ] = ACTIONS(5049), - [anon_sym_BANG_EQ] = ACTIONS(5049), - [anon_sym_GT] = ACTIONS(5047), - [anon_sym_GT_EQ] = ACTIONS(5049), - [anon_sym_LT_EQ] = ACTIONS(5047), - [anon_sym_LT] = ACTIONS(5047), - [anon_sym_LT_LT] = ACTIONS(5047), - [anon_sym_GT_GT] = ACTIONS(5047), - [anon_sym_SEMI] = ACTIONS(5049), - [anon_sym___extension__] = ACTIONS(5051), - [anon_sym___attribute__] = ACTIONS(5047), - [anon_sym___attribute] = ACTIONS(5047), - [anon_sym_COLON] = ACTIONS(5049), - [anon_sym_LBRACE] = ACTIONS(5049), - [anon_sym_RBRACE] = ACTIONS(5049), - [anon_sym_signed] = ACTIONS(5047), - [anon_sym_unsigned] = ACTIONS(5047), - [anon_sym_long] = ACTIONS(5047), - [anon_sym_short] = ACTIONS(5047), - [anon_sym_LBRACK] = ACTIONS(5049), - [anon_sym_RBRACK] = ACTIONS(5049), - [anon_sym_EQ] = ACTIONS(5047), - [anon_sym_const] = ACTIONS(5051), - [anon_sym_constexpr] = ACTIONS(5051), - [anon_sym_volatile] = ACTIONS(5051), - [anon_sym_restrict] = ACTIONS(5051), - [anon_sym___restrict__] = ACTIONS(5051), - [anon_sym__Atomic] = ACTIONS(5051), - [anon_sym__Noreturn] = ACTIONS(5051), - [anon_sym_noreturn] = ACTIONS(5051), - [anon_sym__Nonnull] = ACTIONS(5051), - [anon_sym_mutable] = ACTIONS(5051), - [anon_sym_constinit] = ACTIONS(5051), - [anon_sym_consteval] = ACTIONS(5051), - [anon_sym_alignas] = ACTIONS(5054), - [anon_sym__Alignas] = ACTIONS(5054), - [sym_primitive_type] = ACTIONS(5047), - [anon_sym_QMARK] = ACTIONS(5049), - [anon_sym_STAR_EQ] = ACTIONS(5049), - [anon_sym_SLASH_EQ] = ACTIONS(5049), - [anon_sym_PERCENT_EQ] = ACTIONS(5049), - [anon_sym_PLUS_EQ] = ACTIONS(5049), - [anon_sym_DASH_EQ] = ACTIONS(5049), - [anon_sym_LT_LT_EQ] = ACTIONS(5049), - [anon_sym_GT_GT_EQ] = ACTIONS(5049), - [anon_sym_AMP_EQ] = ACTIONS(5049), - [anon_sym_CARET_EQ] = ACTIONS(5049), - [anon_sym_PIPE_EQ] = ACTIONS(5049), - [anon_sym_and_eq] = ACTIONS(5047), - [anon_sym_or_eq] = ACTIONS(5047), - [anon_sym_xor_eq] = ACTIONS(5047), - [anon_sym_LT_EQ_GT] = ACTIONS(5049), - [anon_sym_or] = ACTIONS(5047), - [anon_sym_and] = ACTIONS(5047), - [anon_sym_bitor] = ACTIONS(5047), - [anon_sym_xor] = ACTIONS(5047), - [anon_sym_bitand] = ACTIONS(5047), - [anon_sym_not_eq] = ACTIONS(5047), - [anon_sym_DASH_DASH] = ACTIONS(5049), - [anon_sym_PLUS_PLUS] = ACTIONS(5049), - [anon_sym_DOT] = ACTIONS(5047), - [anon_sym_DOT_STAR] = ACTIONS(5049), - [anon_sym_DASH_GT] = ACTIONS(5049), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5047), - [anon_sym_decltype] = ACTIONS(5047), + [1601] = { + [sym_identifier] = ACTIONS(5006), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5008), + [anon_sym_COMMA] = ACTIONS(5008), + [anon_sym_RPAREN] = ACTIONS(5008), + [anon_sym_LPAREN2] = ACTIONS(5008), + [anon_sym_TILDE] = ACTIONS(5008), + [anon_sym_DASH] = ACTIONS(5006), + [anon_sym_PLUS] = ACTIONS(5006), + [anon_sym_STAR] = ACTIONS(5006), + [anon_sym_SLASH] = ACTIONS(5006), + [anon_sym_PERCENT] = ACTIONS(5006), + [anon_sym_PIPE_PIPE] = ACTIONS(5008), + [anon_sym_AMP_AMP] = ACTIONS(5008), + [anon_sym_PIPE] = ACTIONS(5006), + [anon_sym_CARET] = ACTIONS(5006), + [anon_sym_AMP] = ACTIONS(5006), + [anon_sym_EQ_EQ] = ACTIONS(5008), + [anon_sym_BANG_EQ] = ACTIONS(5008), + [anon_sym_GT] = ACTIONS(5006), + [anon_sym_GT_EQ] = ACTIONS(5008), + [anon_sym_LT_EQ] = ACTIONS(5006), + [anon_sym_LT] = ACTIONS(5006), + [anon_sym_LT_LT] = ACTIONS(5006), + [anon_sym_GT_GT] = ACTIONS(5006), + [anon_sym___extension__] = ACTIONS(5006), + [anon_sym_virtual] = ACTIONS(5006), + [anon_sym_extern] = ACTIONS(5006), + [anon_sym___attribute__] = ACTIONS(5006), + [anon_sym___attribute] = ACTIONS(5006), + [anon_sym_COLON_COLON] = ACTIONS(5008), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5008), + [anon_sym___declspec] = ACTIONS(5006), + [anon_sym___based] = ACTIONS(5006), + [anon_sym_LBRACE] = ACTIONS(5008), + [anon_sym_LBRACK] = ACTIONS(5006), + [anon_sym_static] = ACTIONS(5006), + [anon_sym_EQ] = ACTIONS(5006), + [anon_sym_register] = ACTIONS(5006), + [anon_sym_inline] = ACTIONS(5006), + [anon_sym___inline] = ACTIONS(5006), + [anon_sym___inline__] = ACTIONS(5006), + [anon_sym___forceinline] = ACTIONS(5006), + [anon_sym_thread_local] = ACTIONS(5006), + [anon_sym___thread] = ACTIONS(5006), + [anon_sym_const] = ACTIONS(5006), + [anon_sym_constexpr] = ACTIONS(5006), + [anon_sym_volatile] = ACTIONS(5006), + [anon_sym_restrict] = ACTIONS(5006), + [anon_sym___restrict__] = ACTIONS(5006), + [anon_sym__Atomic] = ACTIONS(5006), + [anon_sym__Noreturn] = ACTIONS(5006), + [anon_sym_noreturn] = ACTIONS(5006), + [anon_sym__Nonnull] = ACTIONS(5006), + [anon_sym_mutable] = ACTIONS(5006), + [anon_sym_constinit] = ACTIONS(5006), + [anon_sym_consteval] = ACTIONS(5006), + [anon_sym_alignas] = ACTIONS(5006), + [anon_sym__Alignas] = ACTIONS(5006), + [anon_sym_QMARK] = ACTIONS(5008), + [anon_sym_STAR_EQ] = ACTIONS(5008), + [anon_sym_SLASH_EQ] = ACTIONS(5008), + [anon_sym_PERCENT_EQ] = ACTIONS(5008), + [anon_sym_PLUS_EQ] = ACTIONS(5008), + [anon_sym_DASH_EQ] = ACTIONS(5008), + [anon_sym_LT_LT_EQ] = ACTIONS(5008), + [anon_sym_GT_GT_EQ] = ACTIONS(5008), + [anon_sym_AMP_EQ] = ACTIONS(5008), + [anon_sym_CARET_EQ] = ACTIONS(5008), + [anon_sym_PIPE_EQ] = ACTIONS(5008), + [anon_sym_LT_EQ_GT] = ACTIONS(5008), + [anon_sym_or] = ACTIONS(5006), + [anon_sym_and] = ACTIONS(5006), + [anon_sym_bitor] = ACTIONS(5006), + [anon_sym_xor] = ACTIONS(5006), + [anon_sym_bitand] = ACTIONS(5006), + [anon_sym_not_eq] = ACTIONS(5006), + [anon_sym_DASH_DASH] = ACTIONS(5008), + [anon_sym_PLUS_PLUS] = ACTIONS(5008), + [anon_sym_DOT] = ACTIONS(5006), + [anon_sym_DOT_STAR] = ACTIONS(5008), + [anon_sym_DASH_GT] = ACTIONS(5006), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5006), + [anon_sym_decltype] = ACTIONS(5006), + [anon_sym_template] = ACTIONS(5006), + [anon_sym_operator] = ACTIONS(5006), + [anon_sym_DASH_GT_STAR] = ACTIONS(5008), }, - [1579] = { - [sym_string_literal] = STATE(3517), - [sym_template_argument_list] = STATE(2952), - [sym_raw_string_literal] = STATE(3517), - [aux_sym_sized_type_specifier_repeat1] = STATE(2355), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4159), - [anon_sym_COMMA] = ACTIONS(4159), - [anon_sym_LPAREN2] = ACTIONS(4159), - [anon_sym_DASH] = ACTIONS(4154), - [anon_sym_PLUS] = ACTIONS(4154), - [anon_sym_STAR] = ACTIONS(4156), - [anon_sym_SLASH] = ACTIONS(4154), - [anon_sym_PERCENT] = ACTIONS(4154), - [anon_sym_PIPE_PIPE] = ACTIONS(4146), - [anon_sym_AMP_AMP] = ACTIONS(4159), - [anon_sym_PIPE] = ACTIONS(4154), - [anon_sym_CARET] = ACTIONS(4154), - [anon_sym_AMP] = ACTIONS(4156), - [anon_sym_EQ_EQ] = ACTIONS(4146), - [anon_sym_BANG_EQ] = ACTIONS(4146), - [anon_sym_GT] = ACTIONS(4154), - [anon_sym_GT_EQ] = ACTIONS(4154), - [anon_sym_LT_EQ] = ACTIONS(4154), - [anon_sym_LT] = ACTIONS(5057), - [anon_sym_LT_LT] = ACTIONS(4154), - [anon_sym_GT_GT] = ACTIONS(4154), - [anon_sym___extension__] = ACTIONS(4152), - [anon_sym_COLON_COLON] = ACTIONS(4167), - [anon_sym_LBRACE] = ACTIONS(4172), - [anon_sym_signed] = ACTIONS(5060), - [anon_sym_unsigned] = ACTIONS(5060), - [anon_sym_long] = ACTIONS(5060), - [anon_sym_short] = ACTIONS(5060), - [anon_sym_LBRACK] = ACTIONS(4159), - [anon_sym_EQ] = ACTIONS(5062), - [anon_sym_const] = ACTIONS(4144), - [anon_sym_constexpr] = ACTIONS(4152), - [anon_sym_volatile] = ACTIONS(4152), - [anon_sym_restrict] = ACTIONS(4152), - [anon_sym___restrict__] = ACTIONS(4152), - [anon_sym__Atomic] = ACTIONS(4152), - [anon_sym__Noreturn] = ACTIONS(4152), - [anon_sym_noreturn] = ACTIONS(4152), - [anon_sym__Nonnull] = ACTIONS(4152), - [anon_sym_mutable] = ACTIONS(4152), - [anon_sym_constinit] = ACTIONS(4152), - [anon_sym_consteval] = ACTIONS(4152), - [anon_sym_alignas] = ACTIONS(4152), - [anon_sym__Alignas] = ACTIONS(4152), - [anon_sym_QMARK] = ACTIONS(4146), - [anon_sym_STAR_EQ] = ACTIONS(5064), - [anon_sym_SLASH_EQ] = ACTIONS(5064), - [anon_sym_PERCENT_EQ] = ACTIONS(5064), - [anon_sym_PLUS_EQ] = ACTIONS(5064), - [anon_sym_DASH_EQ] = ACTIONS(5064), - [anon_sym_LT_LT_EQ] = ACTIONS(5064), - [anon_sym_GT_GT_EQ] = ACTIONS(5062), - [anon_sym_AMP_EQ] = ACTIONS(5064), - [anon_sym_CARET_EQ] = ACTIONS(5064), - [anon_sym_PIPE_EQ] = ACTIONS(5064), - [anon_sym_and_eq] = ACTIONS(5064), - [anon_sym_or_eq] = ACTIONS(5064), - [anon_sym_xor_eq] = ACTIONS(5064), - [anon_sym_LT_EQ_GT] = ACTIONS(4146), - [anon_sym_or] = ACTIONS(4154), - [anon_sym_and] = ACTIONS(4154), - [anon_sym_bitor] = ACTIONS(4146), - [anon_sym_xor] = ACTIONS(4154), - [anon_sym_bitand] = ACTIONS(4146), - [anon_sym_not_eq] = ACTIONS(4146), - [anon_sym_DASH_DASH] = ACTIONS(4146), - [anon_sym_PLUS_PLUS] = ACTIONS(4146), - [anon_sym_DOT] = ACTIONS(4154), - [anon_sym_DOT_STAR] = ACTIONS(4146), - [anon_sym_DASH_GT] = ACTIONS(4146), - [anon_sym_L_DQUOTE] = ACTIONS(5066), - [anon_sym_u_DQUOTE] = ACTIONS(5066), - [anon_sym_U_DQUOTE] = ACTIONS(5066), - [anon_sym_u8_DQUOTE] = ACTIONS(5066), - [anon_sym_DQUOTE] = ACTIONS(5066), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4152), - [anon_sym_decltype] = ACTIONS(4152), - [anon_sym_GT2] = ACTIONS(4159), - [anon_sym_R_DQUOTE] = ACTIONS(5068), - [anon_sym_LR_DQUOTE] = ACTIONS(5068), - [anon_sym_uR_DQUOTE] = ACTIONS(5068), - [anon_sym_UR_DQUOTE] = ACTIONS(5068), - [anon_sym_u8R_DQUOTE] = ACTIONS(5068), + [1602] = { + [sym_identifier] = ACTIONS(5010), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5012), + [anon_sym_COMMA] = ACTIONS(5012), + [anon_sym_RPAREN] = ACTIONS(5012), + [anon_sym_LPAREN2] = ACTIONS(5012), + [anon_sym_TILDE] = ACTIONS(5012), + [anon_sym_DASH] = ACTIONS(5010), + [anon_sym_PLUS] = ACTIONS(5010), + [anon_sym_STAR] = ACTIONS(5010), + [anon_sym_SLASH] = ACTIONS(5010), + [anon_sym_PERCENT] = ACTIONS(5010), + [anon_sym_PIPE_PIPE] = ACTIONS(5012), + [anon_sym_AMP_AMP] = ACTIONS(5012), + [anon_sym_PIPE] = ACTIONS(5010), + [anon_sym_CARET] = ACTIONS(5010), + [anon_sym_AMP] = ACTIONS(5010), + [anon_sym_EQ_EQ] = ACTIONS(5012), + [anon_sym_BANG_EQ] = ACTIONS(5012), + [anon_sym_GT] = ACTIONS(5010), + [anon_sym_GT_EQ] = ACTIONS(5012), + [anon_sym_LT_EQ] = ACTIONS(5010), + [anon_sym_LT] = ACTIONS(5010), + [anon_sym_LT_LT] = ACTIONS(5010), + [anon_sym_GT_GT] = ACTIONS(5010), + [anon_sym___extension__] = ACTIONS(5010), + [anon_sym_virtual] = ACTIONS(5010), + [anon_sym_extern] = ACTIONS(5010), + [anon_sym___attribute__] = ACTIONS(5010), + [anon_sym___attribute] = ACTIONS(5010), + [anon_sym_COLON_COLON] = ACTIONS(5012), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5012), + [anon_sym___declspec] = ACTIONS(5010), + [anon_sym___based] = ACTIONS(5010), + [anon_sym_LBRACE] = ACTIONS(5012), + [anon_sym_LBRACK] = ACTIONS(5010), + [anon_sym_static] = ACTIONS(5010), + [anon_sym_EQ] = ACTIONS(5010), + [anon_sym_register] = ACTIONS(5010), + [anon_sym_inline] = ACTIONS(5010), + [anon_sym___inline] = ACTIONS(5010), + [anon_sym___inline__] = ACTIONS(5010), + [anon_sym___forceinline] = ACTIONS(5010), + [anon_sym_thread_local] = ACTIONS(5010), + [anon_sym___thread] = ACTIONS(5010), + [anon_sym_const] = ACTIONS(5010), + [anon_sym_constexpr] = ACTIONS(5010), + [anon_sym_volatile] = ACTIONS(5010), + [anon_sym_restrict] = ACTIONS(5010), + [anon_sym___restrict__] = ACTIONS(5010), + [anon_sym__Atomic] = ACTIONS(5010), + [anon_sym__Noreturn] = ACTIONS(5010), + [anon_sym_noreturn] = ACTIONS(5010), + [anon_sym__Nonnull] = ACTIONS(5010), + [anon_sym_mutable] = ACTIONS(5010), + [anon_sym_constinit] = ACTIONS(5010), + [anon_sym_consteval] = ACTIONS(5010), + [anon_sym_alignas] = ACTIONS(5010), + [anon_sym__Alignas] = ACTIONS(5010), + [anon_sym_QMARK] = ACTIONS(5012), + [anon_sym_STAR_EQ] = ACTIONS(5012), + [anon_sym_SLASH_EQ] = ACTIONS(5012), + [anon_sym_PERCENT_EQ] = ACTIONS(5012), + [anon_sym_PLUS_EQ] = ACTIONS(5012), + [anon_sym_DASH_EQ] = ACTIONS(5012), + [anon_sym_LT_LT_EQ] = ACTIONS(5012), + [anon_sym_GT_GT_EQ] = ACTIONS(5012), + [anon_sym_AMP_EQ] = ACTIONS(5012), + [anon_sym_CARET_EQ] = ACTIONS(5012), + [anon_sym_PIPE_EQ] = ACTIONS(5012), + [anon_sym_LT_EQ_GT] = ACTIONS(5012), + [anon_sym_or] = ACTIONS(5010), + [anon_sym_and] = ACTIONS(5010), + [anon_sym_bitor] = ACTIONS(5010), + [anon_sym_xor] = ACTIONS(5010), + [anon_sym_bitand] = ACTIONS(5010), + [anon_sym_not_eq] = ACTIONS(5010), + [anon_sym_DASH_DASH] = ACTIONS(5012), + [anon_sym_PLUS_PLUS] = ACTIONS(5012), + [anon_sym_DOT] = ACTIONS(5010), + [anon_sym_DOT_STAR] = ACTIONS(5012), + [anon_sym_DASH_GT] = ACTIONS(5010), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5010), + [anon_sym_decltype] = ACTIONS(5010), + [anon_sym_template] = ACTIONS(5010), + [anon_sym_operator] = ACTIONS(5010), + [anon_sym_DASH_GT_STAR] = ACTIONS(5012), }, - [1580] = { - [sym_identifier] = ACTIONS(4992), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4994), - [anon_sym_COMMA] = ACTIONS(4994), - [anon_sym_RPAREN] = ACTIONS(4994), - [anon_sym_LPAREN2] = ACTIONS(4994), - [anon_sym_TILDE] = ACTIONS(4994), - [anon_sym_DASH] = ACTIONS(4992), - [anon_sym_PLUS] = ACTIONS(4992), - [anon_sym_STAR] = ACTIONS(4992), - [anon_sym_SLASH] = ACTIONS(4992), - [anon_sym_PERCENT] = ACTIONS(4992), - [anon_sym_PIPE_PIPE] = ACTIONS(4994), - [anon_sym_AMP_AMP] = ACTIONS(4994), - [anon_sym_PIPE] = ACTIONS(4992), - [anon_sym_CARET] = ACTIONS(4992), - [anon_sym_AMP] = ACTIONS(4992), - [anon_sym_EQ_EQ] = ACTIONS(4994), - [anon_sym_BANG_EQ] = ACTIONS(4994), - [anon_sym_GT] = ACTIONS(4992), - [anon_sym_GT_EQ] = ACTIONS(4994), - [anon_sym_LT_EQ] = ACTIONS(4992), - [anon_sym_LT] = ACTIONS(4992), - [anon_sym_LT_LT] = ACTIONS(4992), - [anon_sym_GT_GT] = ACTIONS(4992), - [anon_sym___extension__] = ACTIONS(4992), - [anon_sym_virtual] = ACTIONS(4992), - [anon_sym_extern] = ACTIONS(4992), - [anon_sym___attribute__] = ACTIONS(4992), - [anon_sym___attribute] = ACTIONS(4992), - [anon_sym_COLON_COLON] = ACTIONS(4994), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4994), - [anon_sym___declspec] = ACTIONS(4992), - [anon_sym___based] = ACTIONS(4992), - [anon_sym_LBRACE] = ACTIONS(4994), - [anon_sym_LBRACK] = ACTIONS(4992), - [anon_sym_static] = ACTIONS(4992), - [anon_sym_EQ] = ACTIONS(4992), - [anon_sym_register] = ACTIONS(4992), - [anon_sym_inline] = ACTIONS(4992), - [anon_sym___inline] = ACTIONS(4992), - [anon_sym___inline__] = ACTIONS(4992), - [anon_sym___forceinline] = ACTIONS(4992), - [anon_sym_thread_local] = ACTIONS(4992), - [anon_sym___thread] = ACTIONS(4992), - [anon_sym_const] = ACTIONS(4992), - [anon_sym_constexpr] = ACTIONS(4992), - [anon_sym_volatile] = ACTIONS(4992), - [anon_sym_restrict] = ACTIONS(4992), - [anon_sym___restrict__] = ACTIONS(4992), - [anon_sym__Atomic] = ACTIONS(4992), - [anon_sym__Noreturn] = ACTIONS(4992), - [anon_sym_noreturn] = ACTIONS(4992), - [anon_sym__Nonnull] = ACTIONS(4992), - [anon_sym_mutable] = ACTIONS(4992), - [anon_sym_constinit] = ACTIONS(4992), - [anon_sym_consteval] = ACTIONS(4992), - [anon_sym_alignas] = ACTIONS(4992), - [anon_sym__Alignas] = ACTIONS(4992), - [anon_sym_QMARK] = ACTIONS(4994), - [anon_sym_STAR_EQ] = ACTIONS(4994), - [anon_sym_SLASH_EQ] = ACTIONS(4994), - [anon_sym_PERCENT_EQ] = ACTIONS(4994), - [anon_sym_PLUS_EQ] = ACTIONS(4994), - [anon_sym_DASH_EQ] = ACTIONS(4994), - [anon_sym_LT_LT_EQ] = ACTIONS(4994), - [anon_sym_GT_GT_EQ] = ACTIONS(4994), - [anon_sym_AMP_EQ] = ACTIONS(4994), - [anon_sym_CARET_EQ] = ACTIONS(4994), - [anon_sym_PIPE_EQ] = ACTIONS(4994), - [anon_sym_LT_EQ_GT] = ACTIONS(4994), - [anon_sym_or] = ACTIONS(4992), - [anon_sym_and] = ACTIONS(4992), - [anon_sym_bitor] = ACTIONS(4992), - [anon_sym_xor] = ACTIONS(4992), - [anon_sym_bitand] = ACTIONS(4992), - [anon_sym_not_eq] = ACTIONS(4992), - [anon_sym_DASH_DASH] = ACTIONS(4994), - [anon_sym_PLUS_PLUS] = ACTIONS(4994), - [anon_sym_DOT] = ACTIONS(4992), - [anon_sym_DOT_STAR] = ACTIONS(4994), - [anon_sym_DASH_GT] = ACTIONS(4992), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4992), - [anon_sym_decltype] = ACTIONS(4992), - [anon_sym_template] = ACTIONS(4992), - [anon_sym_operator] = ACTIONS(4992), - [anon_sym_DASH_GT_STAR] = ACTIONS(4994), + [1603] = { + [sym_identifier] = ACTIONS(5014), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5016), + [anon_sym_COMMA] = ACTIONS(5016), + [anon_sym_RPAREN] = ACTIONS(5016), + [anon_sym_LPAREN2] = ACTIONS(5016), + [anon_sym_TILDE] = ACTIONS(5016), + [anon_sym_DASH] = ACTIONS(5014), + [anon_sym_PLUS] = ACTIONS(5014), + [anon_sym_STAR] = ACTIONS(5014), + [anon_sym_SLASH] = ACTIONS(5014), + [anon_sym_PERCENT] = ACTIONS(5014), + [anon_sym_PIPE_PIPE] = ACTIONS(5016), + [anon_sym_AMP_AMP] = ACTIONS(5016), + [anon_sym_PIPE] = ACTIONS(5014), + [anon_sym_CARET] = ACTIONS(5014), + [anon_sym_AMP] = ACTIONS(5014), + [anon_sym_EQ_EQ] = ACTIONS(5016), + [anon_sym_BANG_EQ] = ACTIONS(5016), + [anon_sym_GT] = ACTIONS(5014), + [anon_sym_GT_EQ] = ACTIONS(5016), + [anon_sym_LT_EQ] = ACTIONS(5014), + [anon_sym_LT] = ACTIONS(5014), + [anon_sym_LT_LT] = ACTIONS(5014), + [anon_sym_GT_GT] = ACTIONS(5014), + [anon_sym___extension__] = ACTIONS(5014), + [anon_sym_virtual] = ACTIONS(5014), + [anon_sym_extern] = ACTIONS(5014), + [anon_sym___attribute__] = ACTIONS(5014), + [anon_sym___attribute] = ACTIONS(5014), + [anon_sym_COLON_COLON] = ACTIONS(5016), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5016), + [anon_sym___declspec] = ACTIONS(5014), + [anon_sym___based] = ACTIONS(5014), + [anon_sym_LBRACE] = ACTIONS(5016), + [anon_sym_LBRACK] = ACTIONS(5014), + [anon_sym_static] = ACTIONS(5014), + [anon_sym_EQ] = ACTIONS(5014), + [anon_sym_register] = ACTIONS(5014), + [anon_sym_inline] = ACTIONS(5014), + [anon_sym___inline] = ACTIONS(5014), + [anon_sym___inline__] = ACTIONS(5014), + [anon_sym___forceinline] = ACTIONS(5014), + [anon_sym_thread_local] = ACTIONS(5014), + [anon_sym___thread] = ACTIONS(5014), + [anon_sym_const] = ACTIONS(5014), + [anon_sym_constexpr] = ACTIONS(5014), + [anon_sym_volatile] = ACTIONS(5014), + [anon_sym_restrict] = ACTIONS(5014), + [anon_sym___restrict__] = ACTIONS(5014), + [anon_sym__Atomic] = ACTIONS(5014), + [anon_sym__Noreturn] = ACTIONS(5014), + [anon_sym_noreturn] = ACTIONS(5014), + [anon_sym__Nonnull] = ACTIONS(5014), + [anon_sym_mutable] = ACTIONS(5014), + [anon_sym_constinit] = ACTIONS(5014), + [anon_sym_consteval] = ACTIONS(5014), + [anon_sym_alignas] = ACTIONS(5014), + [anon_sym__Alignas] = ACTIONS(5014), + [anon_sym_QMARK] = ACTIONS(5016), + [anon_sym_STAR_EQ] = ACTIONS(5016), + [anon_sym_SLASH_EQ] = ACTIONS(5016), + [anon_sym_PERCENT_EQ] = ACTIONS(5016), + [anon_sym_PLUS_EQ] = ACTIONS(5016), + [anon_sym_DASH_EQ] = ACTIONS(5016), + [anon_sym_LT_LT_EQ] = ACTIONS(5016), + [anon_sym_GT_GT_EQ] = ACTIONS(5016), + [anon_sym_AMP_EQ] = ACTIONS(5016), + [anon_sym_CARET_EQ] = ACTIONS(5016), + [anon_sym_PIPE_EQ] = ACTIONS(5016), + [anon_sym_LT_EQ_GT] = ACTIONS(5016), + [anon_sym_or] = ACTIONS(5014), + [anon_sym_and] = ACTIONS(5014), + [anon_sym_bitor] = ACTIONS(5014), + [anon_sym_xor] = ACTIONS(5014), + [anon_sym_bitand] = ACTIONS(5014), + [anon_sym_not_eq] = ACTIONS(5014), + [anon_sym_DASH_DASH] = ACTIONS(5016), + [anon_sym_PLUS_PLUS] = ACTIONS(5016), + [anon_sym_DOT] = ACTIONS(5014), + [anon_sym_DOT_STAR] = ACTIONS(5016), + [anon_sym_DASH_GT] = ACTIONS(5014), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5014), + [anon_sym_decltype] = ACTIONS(5014), + [anon_sym_template] = ACTIONS(5014), + [anon_sym_operator] = ACTIONS(5014), + [anon_sym_DASH_GT_STAR] = ACTIONS(5016), }, - [1581] = { - [sym_identifier] = ACTIONS(4951), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4953), - [anon_sym_COMMA] = ACTIONS(4953), - [anon_sym_RPAREN] = ACTIONS(4953), - [anon_sym_LPAREN2] = ACTIONS(4953), - [anon_sym_TILDE] = ACTIONS(4953), - [anon_sym_DASH] = ACTIONS(4951), - [anon_sym_PLUS] = ACTIONS(4951), - [anon_sym_STAR] = ACTIONS(4951), - [anon_sym_SLASH] = ACTIONS(4951), - [anon_sym_PERCENT] = ACTIONS(4951), - [anon_sym_PIPE_PIPE] = ACTIONS(4953), - [anon_sym_AMP_AMP] = ACTIONS(4953), - [anon_sym_PIPE] = ACTIONS(4951), - [anon_sym_CARET] = ACTIONS(4951), - [anon_sym_AMP] = ACTIONS(4951), - [anon_sym_EQ_EQ] = ACTIONS(4953), - [anon_sym_BANG_EQ] = ACTIONS(4953), - [anon_sym_GT] = ACTIONS(4951), - [anon_sym_GT_EQ] = ACTIONS(4953), - [anon_sym_LT_EQ] = ACTIONS(4951), - [anon_sym_LT] = ACTIONS(4951), - [anon_sym_LT_LT] = ACTIONS(4951), - [anon_sym_GT_GT] = ACTIONS(4951), - [anon_sym___extension__] = ACTIONS(4951), - [anon_sym_virtual] = ACTIONS(4951), - [anon_sym_extern] = ACTIONS(4951), - [anon_sym___attribute__] = ACTIONS(4951), - [anon_sym___attribute] = ACTIONS(4951), - [anon_sym_COLON_COLON] = ACTIONS(4953), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4953), - [anon_sym___declspec] = ACTIONS(4951), - [anon_sym___based] = ACTIONS(4951), - [anon_sym_LBRACE] = ACTIONS(4953), - [anon_sym_LBRACK] = ACTIONS(4951), - [anon_sym_static] = ACTIONS(4951), - [anon_sym_EQ] = ACTIONS(4951), - [anon_sym_register] = ACTIONS(4951), - [anon_sym_inline] = ACTIONS(4951), - [anon_sym___inline] = ACTIONS(4951), - [anon_sym___inline__] = ACTIONS(4951), - [anon_sym___forceinline] = ACTIONS(4951), - [anon_sym_thread_local] = ACTIONS(4951), - [anon_sym___thread] = ACTIONS(4951), - [anon_sym_const] = ACTIONS(4951), - [anon_sym_constexpr] = ACTIONS(4951), - [anon_sym_volatile] = ACTIONS(4951), - [anon_sym_restrict] = ACTIONS(4951), - [anon_sym___restrict__] = ACTIONS(4951), - [anon_sym__Atomic] = ACTIONS(4951), - [anon_sym__Noreturn] = ACTIONS(4951), - [anon_sym_noreturn] = ACTIONS(4951), - [anon_sym__Nonnull] = ACTIONS(4951), - [anon_sym_mutable] = ACTIONS(4951), - [anon_sym_constinit] = ACTIONS(4951), - [anon_sym_consteval] = ACTIONS(4951), - [anon_sym_alignas] = ACTIONS(4951), - [anon_sym__Alignas] = ACTIONS(4951), - [anon_sym_QMARK] = ACTIONS(4953), - [anon_sym_STAR_EQ] = ACTIONS(4953), - [anon_sym_SLASH_EQ] = ACTIONS(4953), - [anon_sym_PERCENT_EQ] = ACTIONS(4953), - [anon_sym_PLUS_EQ] = ACTIONS(4953), - [anon_sym_DASH_EQ] = ACTIONS(4953), - [anon_sym_LT_LT_EQ] = ACTIONS(4953), - [anon_sym_GT_GT_EQ] = ACTIONS(4953), - [anon_sym_AMP_EQ] = ACTIONS(4953), - [anon_sym_CARET_EQ] = ACTIONS(4953), - [anon_sym_PIPE_EQ] = ACTIONS(4953), - [anon_sym_LT_EQ_GT] = ACTIONS(4953), - [anon_sym_or] = ACTIONS(4951), - [anon_sym_and] = ACTIONS(4951), - [anon_sym_bitor] = ACTIONS(4951), - [anon_sym_xor] = ACTIONS(4951), - [anon_sym_bitand] = ACTIONS(4951), - [anon_sym_not_eq] = ACTIONS(4951), - [anon_sym_DASH_DASH] = ACTIONS(4953), - [anon_sym_PLUS_PLUS] = ACTIONS(4953), - [anon_sym_DOT] = ACTIONS(4951), - [anon_sym_DOT_STAR] = ACTIONS(4953), - [anon_sym_DASH_GT] = ACTIONS(4951), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4951), - [anon_sym_decltype] = ACTIONS(4951), - [anon_sym_template] = ACTIONS(4951), - [anon_sym_operator] = ACTIONS(4951), - [anon_sym_DASH_GT_STAR] = ACTIONS(4953), + [1604] = { + [sym_identifier] = ACTIONS(5002), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5004), + [anon_sym_COMMA] = ACTIONS(5004), + [anon_sym_RPAREN] = ACTIONS(5004), + [anon_sym_LPAREN2] = ACTIONS(5004), + [anon_sym_TILDE] = ACTIONS(5004), + [anon_sym_DASH] = ACTIONS(5002), + [anon_sym_PLUS] = ACTIONS(5002), + [anon_sym_STAR] = ACTIONS(5002), + [anon_sym_SLASH] = ACTIONS(5002), + [anon_sym_PERCENT] = ACTIONS(5002), + [anon_sym_PIPE_PIPE] = ACTIONS(5004), + [anon_sym_AMP_AMP] = ACTIONS(5004), + [anon_sym_PIPE] = ACTIONS(5002), + [anon_sym_CARET] = ACTIONS(5002), + [anon_sym_AMP] = ACTIONS(5002), + [anon_sym_EQ_EQ] = ACTIONS(5004), + [anon_sym_BANG_EQ] = ACTIONS(5004), + [anon_sym_GT] = ACTIONS(5002), + [anon_sym_GT_EQ] = ACTIONS(5004), + [anon_sym_LT_EQ] = ACTIONS(5002), + [anon_sym_LT] = ACTIONS(5002), + [anon_sym_LT_LT] = ACTIONS(5002), + [anon_sym_GT_GT] = ACTIONS(5002), + [anon_sym___extension__] = ACTIONS(5002), + [anon_sym_virtual] = ACTIONS(5002), + [anon_sym_extern] = ACTIONS(5002), + [anon_sym___attribute__] = ACTIONS(5002), + [anon_sym___attribute] = ACTIONS(5002), + [anon_sym_COLON_COLON] = ACTIONS(5004), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5004), + [anon_sym___declspec] = ACTIONS(5002), + [anon_sym___based] = ACTIONS(5002), + [anon_sym_LBRACE] = ACTIONS(5004), + [anon_sym_LBRACK] = ACTIONS(5002), + [anon_sym_static] = ACTIONS(5002), + [anon_sym_EQ] = ACTIONS(5002), + [anon_sym_register] = ACTIONS(5002), + [anon_sym_inline] = ACTIONS(5002), + [anon_sym___inline] = ACTIONS(5002), + [anon_sym___inline__] = ACTIONS(5002), + [anon_sym___forceinline] = ACTIONS(5002), + [anon_sym_thread_local] = ACTIONS(5002), + [anon_sym___thread] = ACTIONS(5002), + [anon_sym_const] = ACTIONS(5002), + [anon_sym_constexpr] = ACTIONS(5002), + [anon_sym_volatile] = ACTIONS(5002), + [anon_sym_restrict] = ACTIONS(5002), + [anon_sym___restrict__] = ACTIONS(5002), + [anon_sym__Atomic] = ACTIONS(5002), + [anon_sym__Noreturn] = ACTIONS(5002), + [anon_sym_noreturn] = ACTIONS(5002), + [anon_sym__Nonnull] = ACTIONS(5002), + [anon_sym_mutable] = ACTIONS(5002), + [anon_sym_constinit] = ACTIONS(5002), + [anon_sym_consteval] = ACTIONS(5002), + [anon_sym_alignas] = ACTIONS(5002), + [anon_sym__Alignas] = ACTIONS(5002), + [anon_sym_QMARK] = ACTIONS(5004), + [anon_sym_STAR_EQ] = ACTIONS(5004), + [anon_sym_SLASH_EQ] = ACTIONS(5004), + [anon_sym_PERCENT_EQ] = ACTIONS(5004), + [anon_sym_PLUS_EQ] = ACTIONS(5004), + [anon_sym_DASH_EQ] = ACTIONS(5004), + [anon_sym_LT_LT_EQ] = ACTIONS(5004), + [anon_sym_GT_GT_EQ] = ACTIONS(5004), + [anon_sym_AMP_EQ] = ACTIONS(5004), + [anon_sym_CARET_EQ] = ACTIONS(5004), + [anon_sym_PIPE_EQ] = ACTIONS(5004), + [anon_sym_LT_EQ_GT] = ACTIONS(5004), + [anon_sym_or] = ACTIONS(5002), + [anon_sym_and] = ACTIONS(5002), + [anon_sym_bitor] = ACTIONS(5002), + [anon_sym_xor] = ACTIONS(5002), + [anon_sym_bitand] = ACTIONS(5002), + [anon_sym_not_eq] = ACTIONS(5002), + [anon_sym_DASH_DASH] = ACTIONS(5004), + [anon_sym_PLUS_PLUS] = ACTIONS(5004), + [anon_sym_DOT] = ACTIONS(5002), + [anon_sym_DOT_STAR] = ACTIONS(5004), + [anon_sym_DASH_GT] = ACTIONS(5002), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5002), + [anon_sym_decltype] = ACTIONS(5002), + [anon_sym_template] = ACTIONS(5002), + [anon_sym_operator] = ACTIONS(5002), + [anon_sym_DASH_GT_STAR] = ACTIONS(5004), }, - [1582] = { + [1605] = { + [sym_identifier] = ACTIONS(4976), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4978), + [anon_sym_COMMA] = ACTIONS(4978), + [anon_sym_RPAREN] = ACTIONS(4978), + [anon_sym_LPAREN2] = ACTIONS(4978), + [anon_sym_TILDE] = ACTIONS(4978), + [anon_sym_DASH] = ACTIONS(4976), + [anon_sym_PLUS] = ACTIONS(4976), + [anon_sym_STAR] = ACTIONS(4976), + [anon_sym_SLASH] = ACTIONS(4976), + [anon_sym_PERCENT] = ACTIONS(4976), + [anon_sym_PIPE_PIPE] = ACTIONS(4978), + [anon_sym_AMP_AMP] = ACTIONS(4978), + [anon_sym_PIPE] = ACTIONS(4976), + [anon_sym_CARET] = ACTIONS(4976), + [anon_sym_AMP] = ACTIONS(4976), + [anon_sym_EQ_EQ] = ACTIONS(4978), + [anon_sym_BANG_EQ] = ACTIONS(4978), + [anon_sym_GT] = ACTIONS(4976), + [anon_sym_GT_EQ] = ACTIONS(4978), + [anon_sym_LT_EQ] = ACTIONS(4976), + [anon_sym_LT] = ACTIONS(4976), + [anon_sym_LT_LT] = ACTIONS(4976), + [anon_sym_GT_GT] = ACTIONS(4976), + [anon_sym___extension__] = ACTIONS(4976), + [anon_sym_virtual] = ACTIONS(4976), + [anon_sym_extern] = ACTIONS(4976), + [anon_sym___attribute__] = ACTIONS(4976), + [anon_sym___attribute] = ACTIONS(4976), + [anon_sym_COLON_COLON] = ACTIONS(4978), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4978), + [anon_sym___declspec] = ACTIONS(4976), + [anon_sym___based] = ACTIONS(4976), + [anon_sym_LBRACE] = ACTIONS(4978), + [anon_sym_LBRACK] = ACTIONS(4976), + [anon_sym_static] = ACTIONS(4976), + [anon_sym_EQ] = ACTIONS(4976), + [anon_sym_register] = ACTIONS(4976), + [anon_sym_inline] = ACTIONS(4976), + [anon_sym___inline] = ACTIONS(4976), + [anon_sym___inline__] = ACTIONS(4976), + [anon_sym___forceinline] = ACTIONS(4976), + [anon_sym_thread_local] = ACTIONS(4976), + [anon_sym___thread] = ACTIONS(4976), + [anon_sym_const] = ACTIONS(4976), + [anon_sym_constexpr] = ACTIONS(4976), + [anon_sym_volatile] = ACTIONS(4976), + [anon_sym_restrict] = ACTIONS(4976), + [anon_sym___restrict__] = ACTIONS(4976), + [anon_sym__Atomic] = ACTIONS(4976), + [anon_sym__Noreturn] = ACTIONS(4976), + [anon_sym_noreturn] = ACTIONS(4976), + [anon_sym__Nonnull] = ACTIONS(4976), + [anon_sym_mutable] = ACTIONS(4976), + [anon_sym_constinit] = ACTIONS(4976), + [anon_sym_consteval] = ACTIONS(4976), + [anon_sym_alignas] = ACTIONS(4976), + [anon_sym__Alignas] = ACTIONS(4976), + [anon_sym_QMARK] = ACTIONS(4978), + [anon_sym_STAR_EQ] = ACTIONS(4978), + [anon_sym_SLASH_EQ] = ACTIONS(4978), + [anon_sym_PERCENT_EQ] = ACTIONS(4978), + [anon_sym_PLUS_EQ] = ACTIONS(4978), + [anon_sym_DASH_EQ] = ACTIONS(4978), + [anon_sym_LT_LT_EQ] = ACTIONS(4978), + [anon_sym_GT_GT_EQ] = ACTIONS(4978), + [anon_sym_AMP_EQ] = ACTIONS(4978), + [anon_sym_CARET_EQ] = ACTIONS(4978), + [anon_sym_PIPE_EQ] = ACTIONS(4978), + [anon_sym_LT_EQ_GT] = ACTIONS(4978), + [anon_sym_or] = ACTIONS(4976), + [anon_sym_and] = ACTIONS(4976), + [anon_sym_bitor] = ACTIONS(4976), + [anon_sym_xor] = ACTIONS(4976), + [anon_sym_bitand] = ACTIONS(4976), + [anon_sym_not_eq] = ACTIONS(4976), + [anon_sym_DASH_DASH] = ACTIONS(4978), + [anon_sym_PLUS_PLUS] = ACTIONS(4978), + [anon_sym_DOT] = ACTIONS(4976), + [anon_sym_DOT_STAR] = ACTIONS(4978), + [anon_sym_DASH_GT] = ACTIONS(4976), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4976), + [anon_sym_decltype] = ACTIONS(4976), + [anon_sym_template] = ACTIONS(4976), + [anon_sym_operator] = ACTIONS(4976), + [anon_sym_DASH_GT_STAR] = ACTIONS(4978), + }, + [1606] = { [sym_identifier] = ACTIONS(4980), [anon_sym_DOT_DOT_DOT] = ACTIONS(4982), [anon_sym_COMMA] = ACTIONS(4982), @@ -237519,489 +240909,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_operator] = ACTIONS(4980), [anon_sym_DASH_GT_STAR] = ACTIONS(4982), }, - [1583] = { - [sym_identifier] = ACTIONS(4988), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4990), - [anon_sym_COMMA] = ACTIONS(4990), - [anon_sym_RPAREN] = ACTIONS(4990), - [anon_sym_LPAREN2] = ACTIONS(4990), - [anon_sym_TILDE] = ACTIONS(4990), - [anon_sym_DASH] = ACTIONS(4988), - [anon_sym_PLUS] = ACTIONS(4988), - [anon_sym_STAR] = ACTIONS(4988), - [anon_sym_SLASH] = ACTIONS(4988), - [anon_sym_PERCENT] = ACTIONS(4988), - [anon_sym_PIPE_PIPE] = ACTIONS(4990), - [anon_sym_AMP_AMP] = ACTIONS(4990), - [anon_sym_PIPE] = ACTIONS(4988), - [anon_sym_CARET] = ACTIONS(4988), - [anon_sym_AMP] = ACTIONS(4988), - [anon_sym_EQ_EQ] = ACTIONS(4990), - [anon_sym_BANG_EQ] = ACTIONS(4990), - [anon_sym_GT] = ACTIONS(4988), - [anon_sym_GT_EQ] = ACTIONS(4990), - [anon_sym_LT_EQ] = ACTIONS(4988), - [anon_sym_LT] = ACTIONS(4988), - [anon_sym_LT_LT] = ACTIONS(4988), - [anon_sym_GT_GT] = ACTIONS(4988), - [anon_sym___extension__] = ACTIONS(4988), - [anon_sym_virtual] = ACTIONS(4988), - [anon_sym_extern] = ACTIONS(4988), - [anon_sym___attribute__] = ACTIONS(4988), - [anon_sym___attribute] = ACTIONS(4988), - [anon_sym_COLON_COLON] = ACTIONS(4990), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4990), - [anon_sym___declspec] = ACTIONS(4988), - [anon_sym___based] = ACTIONS(4988), - [anon_sym_LBRACE] = ACTIONS(4990), - [anon_sym_LBRACK] = ACTIONS(4988), - [anon_sym_static] = ACTIONS(4988), - [anon_sym_EQ] = ACTIONS(4988), - [anon_sym_register] = ACTIONS(4988), - [anon_sym_inline] = ACTIONS(4988), - [anon_sym___inline] = ACTIONS(4988), - [anon_sym___inline__] = ACTIONS(4988), - [anon_sym___forceinline] = ACTIONS(4988), - [anon_sym_thread_local] = ACTIONS(4988), - [anon_sym___thread] = ACTIONS(4988), - [anon_sym_const] = ACTIONS(4988), - [anon_sym_constexpr] = ACTIONS(4988), - [anon_sym_volatile] = ACTIONS(4988), - [anon_sym_restrict] = ACTIONS(4988), - [anon_sym___restrict__] = ACTIONS(4988), - [anon_sym__Atomic] = ACTIONS(4988), - [anon_sym__Noreturn] = ACTIONS(4988), - [anon_sym_noreturn] = ACTIONS(4988), - [anon_sym__Nonnull] = ACTIONS(4988), - [anon_sym_mutable] = ACTIONS(4988), - [anon_sym_constinit] = ACTIONS(4988), - [anon_sym_consteval] = ACTIONS(4988), - [anon_sym_alignas] = ACTIONS(4988), - [anon_sym__Alignas] = ACTIONS(4988), - [anon_sym_QMARK] = ACTIONS(4990), - [anon_sym_STAR_EQ] = ACTIONS(4990), - [anon_sym_SLASH_EQ] = ACTIONS(4990), - [anon_sym_PERCENT_EQ] = ACTIONS(4990), - [anon_sym_PLUS_EQ] = ACTIONS(4990), - [anon_sym_DASH_EQ] = ACTIONS(4990), - [anon_sym_LT_LT_EQ] = ACTIONS(4990), - [anon_sym_GT_GT_EQ] = ACTIONS(4990), - [anon_sym_AMP_EQ] = ACTIONS(4990), - [anon_sym_CARET_EQ] = ACTIONS(4990), - [anon_sym_PIPE_EQ] = ACTIONS(4990), - [anon_sym_LT_EQ_GT] = ACTIONS(4990), - [anon_sym_or] = ACTIONS(4988), - [anon_sym_and] = ACTIONS(4988), - [anon_sym_bitor] = ACTIONS(4988), - [anon_sym_xor] = ACTIONS(4988), - [anon_sym_bitand] = ACTIONS(4988), - [anon_sym_not_eq] = ACTIONS(4988), - [anon_sym_DASH_DASH] = ACTIONS(4990), - [anon_sym_PLUS_PLUS] = ACTIONS(4990), - [anon_sym_DOT] = ACTIONS(4988), - [anon_sym_DOT_STAR] = ACTIONS(4990), - [anon_sym_DASH_GT] = ACTIONS(4988), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4988), - [anon_sym_decltype] = ACTIONS(4988), - [anon_sym_template] = ACTIONS(4988), - [anon_sym_operator] = ACTIONS(4988), - [anon_sym_DASH_GT_STAR] = ACTIONS(4990), - }, - [1584] = { - [sym_identifier] = ACTIONS(4959), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4961), - [anon_sym_COMMA] = ACTIONS(4961), - [anon_sym_RPAREN] = ACTIONS(4961), - [anon_sym_LPAREN2] = ACTIONS(4961), - [anon_sym_TILDE] = ACTIONS(4961), - [anon_sym_DASH] = ACTIONS(4959), - [anon_sym_PLUS] = ACTIONS(4959), - [anon_sym_STAR] = ACTIONS(4959), - [anon_sym_SLASH] = ACTIONS(4959), - [anon_sym_PERCENT] = ACTIONS(4959), - [anon_sym_PIPE_PIPE] = ACTIONS(4961), - [anon_sym_AMP_AMP] = ACTIONS(4961), - [anon_sym_PIPE] = ACTIONS(4959), - [anon_sym_CARET] = ACTIONS(4959), - [anon_sym_AMP] = ACTIONS(4959), - [anon_sym_EQ_EQ] = ACTIONS(4961), - [anon_sym_BANG_EQ] = ACTIONS(4961), - [anon_sym_GT] = ACTIONS(4959), - [anon_sym_GT_EQ] = ACTIONS(4961), - [anon_sym_LT_EQ] = ACTIONS(4959), - [anon_sym_LT] = ACTIONS(4959), - [anon_sym_LT_LT] = ACTIONS(4959), - [anon_sym_GT_GT] = ACTIONS(4959), - [anon_sym___extension__] = ACTIONS(4959), - [anon_sym_virtual] = ACTIONS(4959), - [anon_sym_extern] = ACTIONS(4959), - [anon_sym___attribute__] = ACTIONS(4959), - [anon_sym___attribute] = ACTIONS(4959), - [anon_sym_COLON_COLON] = ACTIONS(4961), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4961), - [anon_sym___declspec] = ACTIONS(4959), - [anon_sym___based] = ACTIONS(4959), - [anon_sym_LBRACE] = ACTIONS(4961), - [anon_sym_LBRACK] = ACTIONS(4959), - [anon_sym_static] = ACTIONS(4959), - [anon_sym_EQ] = ACTIONS(4959), - [anon_sym_register] = ACTIONS(4959), - [anon_sym_inline] = ACTIONS(4959), - [anon_sym___inline] = ACTIONS(4959), - [anon_sym___inline__] = ACTIONS(4959), - [anon_sym___forceinline] = ACTIONS(4959), - [anon_sym_thread_local] = ACTIONS(4959), - [anon_sym___thread] = ACTIONS(4959), - [anon_sym_const] = ACTIONS(4959), - [anon_sym_constexpr] = ACTIONS(4959), - [anon_sym_volatile] = ACTIONS(4959), - [anon_sym_restrict] = ACTIONS(4959), - [anon_sym___restrict__] = ACTIONS(4959), - [anon_sym__Atomic] = ACTIONS(4959), - [anon_sym__Noreturn] = ACTIONS(4959), - [anon_sym_noreturn] = ACTIONS(4959), - [anon_sym__Nonnull] = ACTIONS(4959), - [anon_sym_mutable] = ACTIONS(4959), - [anon_sym_constinit] = ACTIONS(4959), - [anon_sym_consteval] = ACTIONS(4959), - [anon_sym_alignas] = ACTIONS(4959), - [anon_sym__Alignas] = ACTIONS(4959), - [anon_sym_QMARK] = ACTIONS(4961), - [anon_sym_STAR_EQ] = ACTIONS(4961), - [anon_sym_SLASH_EQ] = ACTIONS(4961), - [anon_sym_PERCENT_EQ] = ACTIONS(4961), - [anon_sym_PLUS_EQ] = ACTIONS(4961), - [anon_sym_DASH_EQ] = ACTIONS(4961), - [anon_sym_LT_LT_EQ] = ACTIONS(4961), - [anon_sym_GT_GT_EQ] = ACTIONS(4961), - [anon_sym_AMP_EQ] = ACTIONS(4961), - [anon_sym_CARET_EQ] = ACTIONS(4961), - [anon_sym_PIPE_EQ] = ACTIONS(4961), - [anon_sym_LT_EQ_GT] = ACTIONS(4961), - [anon_sym_or] = ACTIONS(4959), - [anon_sym_and] = ACTIONS(4959), - [anon_sym_bitor] = ACTIONS(4959), - [anon_sym_xor] = ACTIONS(4959), - [anon_sym_bitand] = ACTIONS(4959), - [anon_sym_not_eq] = ACTIONS(4959), - [anon_sym_DASH_DASH] = ACTIONS(4961), - [anon_sym_PLUS_PLUS] = ACTIONS(4961), - [anon_sym_DOT] = ACTIONS(4959), - [anon_sym_DOT_STAR] = ACTIONS(4961), - [anon_sym_DASH_GT] = ACTIONS(4959), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4959), - [anon_sym_decltype] = ACTIONS(4959), - [anon_sym_template] = ACTIONS(4959), - [anon_sym_operator] = ACTIONS(4959), - [anon_sym_DASH_GT_STAR] = ACTIONS(4961), - }, - [1585] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1585), - [sym_identifier] = ACTIONS(5070), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5072), - [anon_sym_COMMA] = ACTIONS(5072), - [anon_sym_RPAREN] = ACTIONS(5072), - [aux_sym_preproc_if_token2] = ACTIONS(5072), - [aux_sym_preproc_else_token1] = ACTIONS(5072), - [aux_sym_preproc_elif_token1] = ACTIONS(5070), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5072), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5072), - [anon_sym_LPAREN2] = ACTIONS(5072), - [anon_sym_DASH] = ACTIONS(5070), - [anon_sym_PLUS] = ACTIONS(5070), - [anon_sym_STAR] = ACTIONS(5070), - [anon_sym_SLASH] = ACTIONS(5070), - [anon_sym_PERCENT] = ACTIONS(5070), - [anon_sym_PIPE_PIPE] = ACTIONS(5072), - [anon_sym_AMP_AMP] = ACTIONS(5072), - [anon_sym_PIPE] = ACTIONS(5070), - [anon_sym_CARET] = ACTIONS(5070), - [anon_sym_AMP] = ACTIONS(5070), - [anon_sym_EQ_EQ] = ACTIONS(5072), - [anon_sym_BANG_EQ] = ACTIONS(5072), - [anon_sym_GT] = ACTIONS(5070), - [anon_sym_GT_EQ] = ACTIONS(5072), - [anon_sym_LT_EQ] = ACTIONS(5070), - [anon_sym_LT] = ACTIONS(5070), - [anon_sym_LT_LT] = ACTIONS(5070), - [anon_sym_GT_GT] = ACTIONS(5070), - [anon_sym_SEMI] = ACTIONS(5072), - [anon_sym___extension__] = ACTIONS(5070), - [anon_sym___attribute__] = ACTIONS(5070), - [anon_sym___attribute] = ACTIONS(5070), - [anon_sym_COLON] = ACTIONS(5072), - [anon_sym_LBRACE] = ACTIONS(5072), - [anon_sym_RBRACE] = ACTIONS(5072), - [anon_sym_signed] = ACTIONS(5074), - [anon_sym_unsigned] = ACTIONS(5074), - [anon_sym_long] = ACTIONS(5074), - [anon_sym_short] = ACTIONS(5074), - [anon_sym_LBRACK] = ACTIONS(5072), - [anon_sym_RBRACK] = ACTIONS(5072), - [anon_sym_EQ] = ACTIONS(5070), - [anon_sym_const] = ACTIONS(5070), - [anon_sym_constexpr] = ACTIONS(5070), - [anon_sym_volatile] = ACTIONS(5070), - [anon_sym_restrict] = ACTIONS(5070), - [anon_sym___restrict__] = ACTIONS(5070), - [anon_sym__Atomic] = ACTIONS(5070), - [anon_sym__Noreturn] = ACTIONS(5070), - [anon_sym_noreturn] = ACTIONS(5070), - [anon_sym__Nonnull] = ACTIONS(5070), - [anon_sym_mutable] = ACTIONS(5070), - [anon_sym_constinit] = ACTIONS(5070), - [anon_sym_consteval] = ACTIONS(5070), - [anon_sym_alignas] = ACTIONS(5070), - [anon_sym__Alignas] = ACTIONS(5070), - [sym_primitive_type] = ACTIONS(5070), - [anon_sym_QMARK] = ACTIONS(5072), - [anon_sym_STAR_EQ] = ACTIONS(5072), - [anon_sym_SLASH_EQ] = ACTIONS(5072), - [anon_sym_PERCENT_EQ] = ACTIONS(5072), - [anon_sym_PLUS_EQ] = ACTIONS(5072), - [anon_sym_DASH_EQ] = ACTIONS(5072), - [anon_sym_LT_LT_EQ] = ACTIONS(5072), - [anon_sym_GT_GT_EQ] = ACTIONS(5072), - [anon_sym_AMP_EQ] = ACTIONS(5072), - [anon_sym_CARET_EQ] = ACTIONS(5072), - [anon_sym_PIPE_EQ] = ACTIONS(5072), - [anon_sym_and_eq] = ACTIONS(5070), - [anon_sym_or_eq] = ACTIONS(5070), - [anon_sym_xor_eq] = ACTIONS(5070), - [anon_sym_LT_EQ_GT] = ACTIONS(5072), - [anon_sym_or] = ACTIONS(5070), - [anon_sym_and] = ACTIONS(5070), - [anon_sym_bitor] = ACTIONS(5070), - [anon_sym_xor] = ACTIONS(5070), - [anon_sym_bitand] = ACTIONS(5070), - [anon_sym_not_eq] = ACTIONS(5070), - [anon_sym_DASH_DASH] = ACTIONS(5072), - [anon_sym_PLUS_PLUS] = ACTIONS(5072), - [anon_sym_DOT] = ACTIONS(5070), - [anon_sym_DOT_STAR] = ACTIONS(5072), - [anon_sym_DASH_GT] = ACTIONS(5072), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5070), - [anon_sym_decltype] = ACTIONS(5070), - }, - [1586] = { - [sym_identifier] = ACTIONS(4996), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5000), - [anon_sym_COMMA] = ACTIONS(5000), - [anon_sym_RPAREN] = ACTIONS(5000), - [anon_sym_LPAREN2] = ACTIONS(5000), - [anon_sym_TILDE] = ACTIONS(5003), - [anon_sym_DASH] = ACTIONS(5005), - [anon_sym_PLUS] = ACTIONS(5005), - [anon_sym_STAR] = ACTIONS(5007), - [anon_sym_SLASH] = ACTIONS(5005), - [anon_sym_PERCENT] = ACTIONS(5005), - [anon_sym_PIPE_PIPE] = ACTIONS(4998), - [anon_sym_AMP_AMP] = ACTIONS(5000), - [anon_sym_PIPE] = ACTIONS(5005), - [anon_sym_CARET] = ACTIONS(5005), - [anon_sym_AMP] = ACTIONS(5007), - [anon_sym_EQ_EQ] = ACTIONS(4998), - [anon_sym_BANG_EQ] = ACTIONS(4998), - [anon_sym_GT] = ACTIONS(5005), - [anon_sym_GT_EQ] = ACTIONS(4998), - [anon_sym_LT_EQ] = ACTIONS(5005), - [anon_sym_LT] = ACTIONS(5005), - [anon_sym_LT_LT] = ACTIONS(5005), - [anon_sym_GT_GT] = ACTIONS(5005), - [anon_sym___extension__] = ACTIONS(4996), - [anon_sym_virtual] = ACTIONS(4996), - [anon_sym_extern] = ACTIONS(4996), - [anon_sym___attribute__] = ACTIONS(4996), - [anon_sym___attribute] = ACTIONS(4996), - [anon_sym_COLON_COLON] = ACTIONS(5003), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5003), - [anon_sym___declspec] = ACTIONS(4996), - [anon_sym___based] = ACTIONS(4996), - [anon_sym_LBRACE] = ACTIONS(5003), - [anon_sym_LBRACK] = ACTIONS(5007), - [anon_sym_static] = ACTIONS(4996), - [anon_sym_EQ] = ACTIONS(5007), - [anon_sym_register] = ACTIONS(4996), - [anon_sym_inline] = ACTIONS(4996), - [anon_sym___inline] = ACTIONS(4996), - [anon_sym___inline__] = ACTIONS(4996), - [anon_sym___forceinline] = ACTIONS(4996), - [anon_sym_thread_local] = ACTIONS(4996), - [anon_sym___thread] = ACTIONS(4996), - [anon_sym_const] = ACTIONS(4996), - [anon_sym_constexpr] = ACTIONS(4996), - [anon_sym_volatile] = ACTIONS(4996), - [anon_sym_restrict] = ACTIONS(4996), - [anon_sym___restrict__] = ACTIONS(4996), - [anon_sym__Atomic] = ACTIONS(4996), - [anon_sym__Noreturn] = ACTIONS(4996), - [anon_sym_noreturn] = ACTIONS(4996), - [anon_sym__Nonnull] = ACTIONS(4996), - [anon_sym_mutable] = ACTIONS(4996), - [anon_sym_constinit] = ACTIONS(4996), - [anon_sym_consteval] = ACTIONS(4996), - [anon_sym_alignas] = ACTIONS(4996), - [anon_sym__Alignas] = ACTIONS(4996), - [anon_sym_QMARK] = ACTIONS(4998), - [anon_sym_STAR_EQ] = ACTIONS(4998), - [anon_sym_SLASH_EQ] = ACTIONS(4998), - [anon_sym_PERCENT_EQ] = ACTIONS(4998), - [anon_sym_PLUS_EQ] = ACTIONS(4998), - [anon_sym_DASH_EQ] = ACTIONS(4998), - [anon_sym_LT_LT_EQ] = ACTIONS(4998), - [anon_sym_GT_GT_EQ] = ACTIONS(4998), - [anon_sym_AMP_EQ] = ACTIONS(4998), - [anon_sym_CARET_EQ] = ACTIONS(4998), - [anon_sym_PIPE_EQ] = ACTIONS(4998), - [anon_sym_LT_EQ_GT] = ACTIONS(4998), - [anon_sym_or] = ACTIONS(5005), - [anon_sym_and] = ACTIONS(5005), - [anon_sym_bitor] = ACTIONS(5005), - [anon_sym_xor] = ACTIONS(5005), - [anon_sym_bitand] = ACTIONS(5005), - [anon_sym_not_eq] = ACTIONS(5005), - [anon_sym_DASH_DASH] = ACTIONS(4998), - [anon_sym_PLUS_PLUS] = ACTIONS(4998), - [anon_sym_DOT] = ACTIONS(5005), - [anon_sym_DOT_STAR] = ACTIONS(4998), - [anon_sym_DASH_GT] = ACTIONS(5005), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4996), - [anon_sym_decltype] = ACTIONS(4996), - [anon_sym_template] = ACTIONS(4996), - [anon_sym_operator] = ACTIONS(4996), - [anon_sym_DASH_GT_STAR] = ACTIONS(4998), - }, - [1587] = { - [sym_identifier] = ACTIONS(4955), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4957), - [anon_sym_COMMA] = ACTIONS(4957), - [anon_sym_RPAREN] = ACTIONS(4957), - [anon_sym_LPAREN2] = ACTIONS(4957), - [anon_sym_TILDE] = ACTIONS(4957), - [anon_sym_DASH] = ACTIONS(4955), - [anon_sym_PLUS] = ACTIONS(4955), - [anon_sym_STAR] = ACTIONS(4955), - [anon_sym_SLASH] = ACTIONS(4955), - [anon_sym_PERCENT] = ACTIONS(4955), - [anon_sym_PIPE_PIPE] = ACTIONS(4957), - [anon_sym_AMP_AMP] = ACTIONS(4957), - [anon_sym_PIPE] = ACTIONS(4955), - [anon_sym_CARET] = ACTIONS(4955), - [anon_sym_AMP] = ACTIONS(4955), - [anon_sym_EQ_EQ] = ACTIONS(4957), - [anon_sym_BANG_EQ] = ACTIONS(4957), - [anon_sym_GT] = ACTIONS(4955), - [anon_sym_GT_EQ] = ACTIONS(4957), - [anon_sym_LT_EQ] = ACTIONS(4955), - [anon_sym_LT] = ACTIONS(4955), - [anon_sym_LT_LT] = ACTIONS(4955), - [anon_sym_GT_GT] = ACTIONS(4955), - [anon_sym___extension__] = ACTIONS(4955), - [anon_sym_virtual] = ACTIONS(4955), - [anon_sym_extern] = ACTIONS(4955), - [anon_sym___attribute__] = ACTIONS(4955), - [anon_sym___attribute] = ACTIONS(4955), - [anon_sym_COLON_COLON] = ACTIONS(4957), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4957), - [anon_sym___declspec] = ACTIONS(4955), - [anon_sym___based] = ACTIONS(4955), - [anon_sym_LBRACE] = ACTIONS(4957), - [anon_sym_LBRACK] = ACTIONS(4955), - [anon_sym_static] = ACTIONS(4955), - [anon_sym_EQ] = ACTIONS(4955), - [anon_sym_register] = ACTIONS(4955), - [anon_sym_inline] = ACTIONS(4955), - [anon_sym___inline] = ACTIONS(4955), - [anon_sym___inline__] = ACTIONS(4955), - [anon_sym___forceinline] = ACTIONS(4955), - [anon_sym_thread_local] = ACTIONS(4955), - [anon_sym___thread] = ACTIONS(4955), - [anon_sym_const] = ACTIONS(4955), - [anon_sym_constexpr] = ACTIONS(4955), - [anon_sym_volatile] = ACTIONS(4955), - [anon_sym_restrict] = ACTIONS(4955), - [anon_sym___restrict__] = ACTIONS(4955), - [anon_sym__Atomic] = ACTIONS(4955), - [anon_sym__Noreturn] = ACTIONS(4955), - [anon_sym_noreturn] = ACTIONS(4955), - [anon_sym__Nonnull] = ACTIONS(4955), - [anon_sym_mutable] = ACTIONS(4955), - [anon_sym_constinit] = ACTIONS(4955), - [anon_sym_consteval] = ACTIONS(4955), - [anon_sym_alignas] = ACTIONS(4955), - [anon_sym__Alignas] = ACTIONS(4955), - [anon_sym_QMARK] = ACTIONS(4957), - [anon_sym_STAR_EQ] = ACTIONS(4957), - [anon_sym_SLASH_EQ] = ACTIONS(4957), - [anon_sym_PERCENT_EQ] = ACTIONS(4957), - [anon_sym_PLUS_EQ] = ACTIONS(4957), - [anon_sym_DASH_EQ] = ACTIONS(4957), - [anon_sym_LT_LT_EQ] = ACTIONS(4957), - [anon_sym_GT_GT_EQ] = ACTIONS(4957), - [anon_sym_AMP_EQ] = ACTIONS(4957), - [anon_sym_CARET_EQ] = ACTIONS(4957), - [anon_sym_PIPE_EQ] = ACTIONS(4957), - [anon_sym_LT_EQ_GT] = ACTIONS(4957), - [anon_sym_or] = ACTIONS(4955), - [anon_sym_and] = ACTIONS(4955), - [anon_sym_bitor] = ACTIONS(4955), - [anon_sym_xor] = ACTIONS(4955), - [anon_sym_bitand] = ACTIONS(4955), - [anon_sym_not_eq] = ACTIONS(4955), - [anon_sym_DASH_DASH] = ACTIONS(4957), - [anon_sym_PLUS_PLUS] = ACTIONS(4957), - [anon_sym_DOT] = ACTIONS(4955), - [anon_sym_DOT_STAR] = ACTIONS(4957), - [anon_sym_DASH_GT] = ACTIONS(4955), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4955), - [anon_sym_decltype] = ACTIONS(4955), - [anon_sym_template] = ACTIONS(4955), - [anon_sym_operator] = ACTIONS(4955), - [anon_sym_DASH_GT_STAR] = ACTIONS(4957), - }, - [1588] = { + [1607] = { [sym_identifier] = ACTIONS(4984), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4986), - [anon_sym_COMMA] = ACTIONS(4986), - [anon_sym_RPAREN] = ACTIONS(4986), - [anon_sym_LPAREN2] = ACTIONS(4986), - [anon_sym_TILDE] = ACTIONS(4986), - [anon_sym_DASH] = ACTIONS(4984), - [anon_sym_PLUS] = ACTIONS(4984), - [anon_sym_STAR] = ACTIONS(4984), - [anon_sym_SLASH] = ACTIONS(4984), - [anon_sym_PERCENT] = ACTIONS(4984), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4988), + [anon_sym_COMMA] = ACTIONS(4988), + [anon_sym_RPAREN] = ACTIONS(4988), + [anon_sym_LPAREN2] = ACTIONS(4988), + [anon_sym_TILDE] = ACTIONS(4991), + [anon_sym_DASH] = ACTIONS(4993), + [anon_sym_PLUS] = ACTIONS(4993), + [anon_sym_STAR] = ACTIONS(4995), + [anon_sym_SLASH] = ACTIONS(4993), + [anon_sym_PERCENT] = ACTIONS(4993), [anon_sym_PIPE_PIPE] = ACTIONS(4986), - [anon_sym_AMP_AMP] = ACTIONS(4986), - [anon_sym_PIPE] = ACTIONS(4984), - [anon_sym_CARET] = ACTIONS(4984), - [anon_sym_AMP] = ACTIONS(4984), + [anon_sym_AMP_AMP] = ACTIONS(4988), + [anon_sym_PIPE] = ACTIONS(4993), + [anon_sym_CARET] = ACTIONS(4993), + [anon_sym_AMP] = ACTIONS(4995), [anon_sym_EQ_EQ] = ACTIONS(4986), [anon_sym_BANG_EQ] = ACTIONS(4986), - [anon_sym_GT] = ACTIONS(4984), + [anon_sym_GT] = ACTIONS(4993), [anon_sym_GT_EQ] = ACTIONS(4986), - [anon_sym_LT_EQ] = ACTIONS(4984), - [anon_sym_LT] = ACTIONS(4984), - [anon_sym_LT_LT] = ACTIONS(4984), - [anon_sym_GT_GT] = ACTIONS(4984), + [anon_sym_LT_EQ] = ACTIONS(4993), + [anon_sym_LT] = ACTIONS(4993), + [anon_sym_LT_LT] = ACTIONS(4993), + [anon_sym_GT_GT] = ACTIONS(4993), [anon_sym___extension__] = ACTIONS(4984), [anon_sym_virtual] = ACTIONS(4984), [anon_sym_extern] = ACTIONS(4984), [anon_sym___attribute__] = ACTIONS(4984), [anon_sym___attribute] = ACTIONS(4984), - [anon_sym_COLON_COLON] = ACTIONS(4986), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4986), + [anon_sym_COLON_COLON] = ACTIONS(4991), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4991), [anon_sym___declspec] = ACTIONS(4984), [anon_sym___based] = ACTIONS(4984), - [anon_sym_LBRACE] = ACTIONS(4986), - [anon_sym_LBRACK] = ACTIONS(4984), + [anon_sym_LBRACE] = ACTIONS(4991), + [anon_sym_LBRACK] = ACTIONS(4995), [anon_sym_static] = ACTIONS(4984), - [anon_sym_EQ] = ACTIONS(4984), + [anon_sym_EQ] = ACTIONS(4995), [anon_sym_register] = ACTIONS(4984), [anon_sym_inline] = ACTIONS(4984), [anon_sym___inline] = ACTIONS(4984), @@ -238035,17 +240980,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_EQ] = ACTIONS(4986), [anon_sym_PIPE_EQ] = ACTIONS(4986), [anon_sym_LT_EQ_GT] = ACTIONS(4986), - [anon_sym_or] = ACTIONS(4984), - [anon_sym_and] = ACTIONS(4984), - [anon_sym_bitor] = ACTIONS(4984), - [anon_sym_xor] = ACTIONS(4984), - [anon_sym_bitand] = ACTIONS(4984), - [anon_sym_not_eq] = ACTIONS(4984), + [anon_sym_or] = ACTIONS(4993), + [anon_sym_and] = ACTIONS(4993), + [anon_sym_bitor] = ACTIONS(4993), + [anon_sym_xor] = ACTIONS(4993), + [anon_sym_bitand] = ACTIONS(4993), + [anon_sym_not_eq] = ACTIONS(4993), [anon_sym_DASH_DASH] = ACTIONS(4986), [anon_sym_PLUS_PLUS] = ACTIONS(4986), - [anon_sym_DOT] = ACTIONS(4984), + [anon_sym_DOT] = ACTIONS(4993), [anon_sym_DOT_STAR] = ACTIONS(4986), - [anon_sym_DASH_GT] = ACTIONS(4984), + [anon_sym_DASH_GT] = ACTIONS(4993), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(4984), [anon_sym_decltype] = ACTIONS(4984), @@ -238053,792 +240998,881 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_operator] = ACTIONS(4984), [anon_sym_DASH_GT_STAR] = ACTIONS(4986), }, - [1589] = { - [sym_string_literal] = STATE(2624), - [sym_template_argument_list] = STATE(2985), - [sym_raw_string_literal] = STATE(2624), - [aux_sym_sized_type_specifier_repeat1] = STATE(1935), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4146), - [anon_sym_RPAREN] = ACTIONS(4159), - [anon_sym_LPAREN2] = ACTIONS(4159), - [anon_sym_DASH] = ACTIONS(4154), - [anon_sym_PLUS] = ACTIONS(4154), - [anon_sym_STAR] = ACTIONS(4156), - [anon_sym_SLASH] = ACTIONS(4154), - [anon_sym_PERCENT] = ACTIONS(4154), - [anon_sym_PIPE_PIPE] = ACTIONS(4146), - [anon_sym_AMP_AMP] = ACTIONS(4159), - [anon_sym_PIPE] = ACTIONS(4154), - [anon_sym_CARET] = ACTIONS(4154), - [anon_sym_AMP] = ACTIONS(4156), - [anon_sym_EQ_EQ] = ACTIONS(4146), - [anon_sym_BANG_EQ] = ACTIONS(4146), - [anon_sym_GT] = ACTIONS(4154), - [anon_sym_GT_EQ] = ACTIONS(4146), - [anon_sym_LT_EQ] = ACTIONS(4154), - [anon_sym_LT] = ACTIONS(5077), - [anon_sym_LT_LT] = ACTIONS(4154), - [anon_sym_GT_GT] = ACTIONS(4154), - [anon_sym___extension__] = ACTIONS(4152), - [anon_sym_COLON_COLON] = ACTIONS(4167), - [anon_sym_LBRACE] = ACTIONS(4172), - [anon_sym_signed] = ACTIONS(5038), - [anon_sym_unsigned] = ACTIONS(5038), - [anon_sym_long] = ACTIONS(5038), - [anon_sym_short] = ACTIONS(5038), - [anon_sym_LBRACK] = ACTIONS(4159), - [anon_sym_EQ] = ACTIONS(4180), - [anon_sym_const] = ACTIONS(4144), - [anon_sym_constexpr] = ACTIONS(4152), - [anon_sym_volatile] = ACTIONS(4152), - [anon_sym_restrict] = ACTIONS(4152), - [anon_sym___restrict__] = ACTIONS(4152), - [anon_sym__Atomic] = ACTIONS(4152), - [anon_sym__Noreturn] = ACTIONS(4152), - [anon_sym_noreturn] = ACTIONS(4152), - [anon_sym__Nonnull] = ACTIONS(4152), - [anon_sym_mutable] = ACTIONS(4152), - [anon_sym_constinit] = ACTIONS(4152), - [anon_sym_consteval] = ACTIONS(4152), - [anon_sym_alignas] = ACTIONS(4152), - [anon_sym__Alignas] = ACTIONS(4152), - [anon_sym_QMARK] = ACTIONS(4146), - [anon_sym_STAR_EQ] = ACTIONS(4182), - [anon_sym_SLASH_EQ] = ACTIONS(4182), - [anon_sym_PERCENT_EQ] = ACTIONS(4182), - [anon_sym_PLUS_EQ] = ACTIONS(4182), - [anon_sym_DASH_EQ] = ACTIONS(4182), - [anon_sym_LT_LT_EQ] = ACTIONS(4182), - [anon_sym_GT_GT_EQ] = ACTIONS(4182), - [anon_sym_AMP_EQ] = ACTIONS(4182), - [anon_sym_CARET_EQ] = ACTIONS(4182), - [anon_sym_PIPE_EQ] = ACTIONS(4182), - [anon_sym_and_eq] = ACTIONS(4182), - [anon_sym_or_eq] = ACTIONS(4182), - [anon_sym_xor_eq] = ACTIONS(4182), - [anon_sym_LT_EQ_GT] = ACTIONS(4146), - [anon_sym_or] = ACTIONS(4154), - [anon_sym_and] = ACTIONS(4154), - [anon_sym_bitor] = ACTIONS(4146), - [anon_sym_xor] = ACTIONS(4154), - [anon_sym_bitand] = ACTIONS(4146), - [anon_sym_not_eq] = ACTIONS(4146), - [anon_sym_DASH_DASH] = ACTIONS(4146), - [anon_sym_PLUS_PLUS] = ACTIONS(4146), - [anon_sym_DOT] = ACTIONS(4154), - [anon_sym_DOT_STAR] = ACTIONS(4146), - [anon_sym_DASH_GT] = ACTIONS(4146), - [anon_sym_L_DQUOTE] = ACTIONS(3623), - [anon_sym_u_DQUOTE] = ACTIONS(3623), - [anon_sym_U_DQUOTE] = ACTIONS(3623), - [anon_sym_u8_DQUOTE] = ACTIONS(3623), - [anon_sym_DQUOTE] = ACTIONS(3623), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4152), - [anon_sym_decltype] = ACTIONS(4152), - [anon_sym_R_DQUOTE] = ACTIONS(3627), - [anon_sym_LR_DQUOTE] = ACTIONS(3627), - [anon_sym_uR_DQUOTE] = ACTIONS(3627), - [anon_sym_UR_DQUOTE] = ACTIONS(3627), - [anon_sym_u8R_DQUOTE] = ACTIONS(3627), + [1608] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1608), + [sym_identifier] = ACTIONS(5078), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5080), + [anon_sym_COMMA] = ACTIONS(5080), + [anon_sym_RPAREN] = ACTIONS(5080), + [aux_sym_preproc_if_token2] = ACTIONS(5080), + [aux_sym_preproc_else_token1] = ACTIONS(5080), + [aux_sym_preproc_elif_token1] = ACTIONS(5078), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5080), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5080), + [anon_sym_LPAREN2] = ACTIONS(5080), + [anon_sym_DASH] = ACTIONS(5078), + [anon_sym_PLUS] = ACTIONS(5078), + [anon_sym_STAR] = ACTIONS(5078), + [anon_sym_SLASH] = ACTIONS(5078), + [anon_sym_PERCENT] = ACTIONS(5078), + [anon_sym_PIPE_PIPE] = ACTIONS(5080), + [anon_sym_AMP_AMP] = ACTIONS(5080), + [anon_sym_PIPE] = ACTIONS(5078), + [anon_sym_CARET] = ACTIONS(5078), + [anon_sym_AMP] = ACTIONS(5078), + [anon_sym_EQ_EQ] = ACTIONS(5080), + [anon_sym_BANG_EQ] = ACTIONS(5080), + [anon_sym_GT] = ACTIONS(5078), + [anon_sym_GT_EQ] = ACTIONS(5080), + [anon_sym_LT_EQ] = ACTIONS(5078), + [anon_sym_LT] = ACTIONS(5078), + [anon_sym_LT_LT] = ACTIONS(5078), + [anon_sym_GT_GT] = ACTIONS(5078), + [anon_sym_SEMI] = ACTIONS(5080), + [anon_sym___extension__] = ACTIONS(5078), + [anon_sym___attribute__] = ACTIONS(5078), + [anon_sym___attribute] = ACTIONS(5078), + [anon_sym_COLON] = ACTIONS(5080), + [anon_sym_LBRACE] = ACTIONS(5080), + [anon_sym_RBRACE] = ACTIONS(5080), + [anon_sym_signed] = ACTIONS(5082), + [anon_sym_unsigned] = ACTIONS(5082), + [anon_sym_long] = ACTIONS(5082), + [anon_sym_short] = ACTIONS(5082), + [anon_sym_LBRACK] = ACTIONS(5080), + [anon_sym_RBRACK] = ACTIONS(5080), + [anon_sym_EQ] = ACTIONS(5078), + [anon_sym_const] = ACTIONS(5078), + [anon_sym_constexpr] = ACTIONS(5078), + [anon_sym_volatile] = ACTIONS(5078), + [anon_sym_restrict] = ACTIONS(5078), + [anon_sym___restrict__] = ACTIONS(5078), + [anon_sym__Atomic] = ACTIONS(5078), + [anon_sym__Noreturn] = ACTIONS(5078), + [anon_sym_noreturn] = ACTIONS(5078), + [anon_sym__Nonnull] = ACTIONS(5078), + [anon_sym_mutable] = ACTIONS(5078), + [anon_sym_constinit] = ACTIONS(5078), + [anon_sym_consteval] = ACTIONS(5078), + [anon_sym_alignas] = ACTIONS(5078), + [anon_sym__Alignas] = ACTIONS(5078), + [sym_primitive_type] = ACTIONS(5078), + [anon_sym_QMARK] = ACTIONS(5080), + [anon_sym_STAR_EQ] = ACTIONS(5080), + [anon_sym_SLASH_EQ] = ACTIONS(5080), + [anon_sym_PERCENT_EQ] = ACTIONS(5080), + [anon_sym_PLUS_EQ] = ACTIONS(5080), + [anon_sym_DASH_EQ] = ACTIONS(5080), + [anon_sym_LT_LT_EQ] = ACTIONS(5080), + [anon_sym_GT_GT_EQ] = ACTIONS(5080), + [anon_sym_AMP_EQ] = ACTIONS(5080), + [anon_sym_CARET_EQ] = ACTIONS(5080), + [anon_sym_PIPE_EQ] = ACTIONS(5080), + [anon_sym_and_eq] = ACTIONS(5078), + [anon_sym_or_eq] = ACTIONS(5078), + [anon_sym_xor_eq] = ACTIONS(5078), + [anon_sym_LT_EQ_GT] = ACTIONS(5080), + [anon_sym_or] = ACTIONS(5078), + [anon_sym_and] = ACTIONS(5078), + [anon_sym_bitor] = ACTIONS(5078), + [anon_sym_xor] = ACTIONS(5078), + [anon_sym_bitand] = ACTIONS(5078), + [anon_sym_not_eq] = ACTIONS(5078), + [anon_sym_DASH_DASH] = ACTIONS(5080), + [anon_sym_PLUS_PLUS] = ACTIONS(5080), + [anon_sym_DOT] = ACTIONS(5078), + [anon_sym_DOT_STAR] = ACTIONS(5080), + [anon_sym_DASH_GT] = ACTIONS(5080), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5078), + [anon_sym_decltype] = ACTIONS(5078), }, - [1590] = { - [sym_identifier] = ACTIONS(2573), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2563), - [anon_sym_COMMA] = ACTIONS(2563), - [anon_sym_RPAREN] = ACTIONS(2563), - [aux_sym_preproc_if_token2] = ACTIONS(2563), - [aux_sym_preproc_else_token1] = ACTIONS(2563), - [aux_sym_preproc_elif_token1] = ACTIONS(2573), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2563), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2563), - [anon_sym_LPAREN2] = ACTIONS(2563), - [anon_sym_DASH] = ACTIONS(2573), - [anon_sym_PLUS] = ACTIONS(2573), - [anon_sym_STAR] = ACTIONS(2573), - [anon_sym_SLASH] = ACTIONS(2573), - [anon_sym_PERCENT] = ACTIONS(2573), - [anon_sym_PIPE_PIPE] = ACTIONS(2563), - [anon_sym_AMP_AMP] = ACTIONS(2563), - [anon_sym_PIPE] = ACTIONS(2573), - [anon_sym_CARET] = ACTIONS(2573), - [anon_sym_AMP] = ACTIONS(2573), - [anon_sym_EQ_EQ] = ACTIONS(2563), - [anon_sym_BANG_EQ] = ACTIONS(2563), - [anon_sym_GT] = ACTIONS(2573), - [anon_sym_GT_EQ] = ACTIONS(2563), - [anon_sym_LT_EQ] = ACTIONS(2573), - [anon_sym_LT] = ACTIONS(2573), - [anon_sym_LT_LT] = ACTIONS(2573), - [anon_sym_GT_GT] = ACTIONS(2573), - [anon_sym_SEMI] = ACTIONS(2563), - [anon_sym___extension__] = ACTIONS(2573), - [anon_sym___attribute__] = ACTIONS(2573), - [anon_sym___attribute] = ACTIONS(2573), - [anon_sym_COLON] = ACTIONS(2563), - [anon_sym_LBRACE] = ACTIONS(2563), - [anon_sym_RBRACE] = ACTIONS(2563), - [anon_sym_signed] = ACTIONS(2573), - [anon_sym_unsigned] = ACTIONS(2573), - [anon_sym_long] = ACTIONS(2573), - [anon_sym_short] = ACTIONS(2573), - [anon_sym_LBRACK] = ACTIONS(2563), - [anon_sym_RBRACK] = ACTIONS(2563), - [anon_sym_EQ] = ACTIONS(2573), - [anon_sym_const] = ACTIONS(2573), - [anon_sym_constexpr] = ACTIONS(2573), - [anon_sym_volatile] = ACTIONS(2573), - [anon_sym_restrict] = ACTIONS(2573), - [anon_sym___restrict__] = ACTIONS(2573), - [anon_sym__Atomic] = ACTIONS(2573), - [anon_sym__Noreturn] = ACTIONS(2573), - [anon_sym_noreturn] = ACTIONS(2573), - [anon_sym__Nonnull] = ACTIONS(2573), - [anon_sym_mutable] = ACTIONS(2573), - [anon_sym_constinit] = ACTIONS(2573), - [anon_sym_consteval] = ACTIONS(2573), - [anon_sym_alignas] = ACTIONS(2573), - [anon_sym__Alignas] = ACTIONS(2573), - [sym_primitive_type] = ACTIONS(2573), - [anon_sym_QMARK] = ACTIONS(2563), - [anon_sym_STAR_EQ] = ACTIONS(2563), - [anon_sym_SLASH_EQ] = ACTIONS(2563), - [anon_sym_PERCENT_EQ] = ACTIONS(2563), - [anon_sym_PLUS_EQ] = ACTIONS(2563), - [anon_sym_DASH_EQ] = ACTIONS(2563), - [anon_sym_LT_LT_EQ] = ACTIONS(2563), - [anon_sym_GT_GT_EQ] = ACTIONS(2563), - [anon_sym_AMP_EQ] = ACTIONS(2563), - [anon_sym_CARET_EQ] = ACTIONS(2563), - [anon_sym_PIPE_EQ] = ACTIONS(2563), - [anon_sym_and_eq] = ACTIONS(2573), - [anon_sym_or_eq] = ACTIONS(2573), - [anon_sym_xor_eq] = ACTIONS(2573), - [anon_sym_LT_EQ_GT] = ACTIONS(2563), - [anon_sym_or] = ACTIONS(2573), - [anon_sym_and] = ACTIONS(2573), - [anon_sym_bitor] = ACTIONS(2573), - [anon_sym_xor] = ACTIONS(2573), - [anon_sym_bitand] = ACTIONS(2573), - [anon_sym_not_eq] = ACTIONS(2573), - [anon_sym_DASH_DASH] = ACTIONS(2563), - [anon_sym_PLUS_PLUS] = ACTIONS(2563), - [anon_sym_DOT] = ACTIONS(2573), - [anon_sym_DOT_STAR] = ACTIONS(2563), - [anon_sym_DASH_GT] = ACTIONS(2563), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2573), - [anon_sym_decltype] = ACTIONS(2573), + [1609] = { + [sym_string_literal] = STATE(2657), + [sym_template_argument_list] = STATE(3053), + [sym_raw_string_literal] = STATE(2657), + [aux_sym_sized_type_specifier_repeat1] = STATE(1959), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4166), + [anon_sym_RPAREN] = ACTIONS(4179), + [anon_sym_LPAREN2] = ACTIONS(4179), + [anon_sym_DASH] = ACTIONS(4174), + [anon_sym_PLUS] = ACTIONS(4174), + [anon_sym_STAR] = ACTIONS(4176), + [anon_sym_SLASH] = ACTIONS(4174), + [anon_sym_PERCENT] = ACTIONS(4174), + [anon_sym_PIPE_PIPE] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4179), + [anon_sym_PIPE] = ACTIONS(4174), + [anon_sym_CARET] = ACTIONS(4174), + [anon_sym_AMP] = ACTIONS(4176), + [anon_sym_EQ_EQ] = ACTIONS(4166), + [anon_sym_BANG_EQ] = ACTIONS(4166), + [anon_sym_GT] = ACTIONS(4174), + [anon_sym_GT_EQ] = ACTIONS(4166), + [anon_sym_LT_EQ] = ACTIONS(4174), + [anon_sym_LT] = ACTIONS(5085), + [anon_sym_LT_LT] = ACTIONS(4174), + [anon_sym_GT_GT] = ACTIONS(4174), + [anon_sym___extension__] = ACTIONS(4172), + [anon_sym_COLON_COLON] = ACTIONS(4187), + [anon_sym_LBRACE] = ACTIONS(4192), + [anon_sym_signed] = ACTIONS(5046), + [anon_sym_unsigned] = ACTIONS(5046), + [anon_sym_long] = ACTIONS(5046), + [anon_sym_short] = ACTIONS(5046), + [anon_sym_LBRACK] = ACTIONS(4179), + [anon_sym_EQ] = ACTIONS(4200), + [anon_sym_const] = ACTIONS(4164), + [anon_sym_constexpr] = ACTIONS(4172), + [anon_sym_volatile] = ACTIONS(4172), + [anon_sym_restrict] = ACTIONS(4172), + [anon_sym___restrict__] = ACTIONS(4172), + [anon_sym__Atomic] = ACTIONS(4172), + [anon_sym__Noreturn] = ACTIONS(4172), + [anon_sym_noreturn] = ACTIONS(4172), + [anon_sym__Nonnull] = ACTIONS(4172), + [anon_sym_mutable] = ACTIONS(4172), + [anon_sym_constinit] = ACTIONS(4172), + [anon_sym_consteval] = ACTIONS(4172), + [anon_sym_alignas] = ACTIONS(4172), + [anon_sym__Alignas] = ACTIONS(4172), + [anon_sym_QMARK] = ACTIONS(4166), + [anon_sym_STAR_EQ] = ACTIONS(4202), + [anon_sym_SLASH_EQ] = ACTIONS(4202), + [anon_sym_PERCENT_EQ] = ACTIONS(4202), + [anon_sym_PLUS_EQ] = ACTIONS(4202), + [anon_sym_DASH_EQ] = ACTIONS(4202), + [anon_sym_LT_LT_EQ] = ACTIONS(4202), + [anon_sym_GT_GT_EQ] = ACTIONS(4202), + [anon_sym_AMP_EQ] = ACTIONS(4202), + [anon_sym_CARET_EQ] = ACTIONS(4202), + [anon_sym_PIPE_EQ] = ACTIONS(4202), + [anon_sym_and_eq] = ACTIONS(4202), + [anon_sym_or_eq] = ACTIONS(4202), + [anon_sym_xor_eq] = ACTIONS(4202), + [anon_sym_LT_EQ_GT] = ACTIONS(4166), + [anon_sym_or] = ACTIONS(4174), + [anon_sym_and] = ACTIONS(4174), + [anon_sym_bitor] = ACTIONS(4166), + [anon_sym_xor] = ACTIONS(4174), + [anon_sym_bitand] = ACTIONS(4166), + [anon_sym_not_eq] = ACTIONS(4166), + [anon_sym_DASH_DASH] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4174), + [anon_sym_DOT_STAR] = ACTIONS(4166), + [anon_sym_DASH_GT] = ACTIONS(4166), + [anon_sym_L_DQUOTE] = ACTIONS(3631), + [anon_sym_u_DQUOTE] = ACTIONS(3631), + [anon_sym_U_DQUOTE] = ACTIONS(3631), + [anon_sym_u8_DQUOTE] = ACTIONS(3631), + [anon_sym_DQUOTE] = ACTIONS(3631), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4172), + [anon_sym_decltype] = ACTIONS(4172), + [anon_sym_R_DQUOTE] = ACTIONS(3635), + [anon_sym_LR_DQUOTE] = ACTIONS(3635), + [anon_sym_uR_DQUOTE] = ACTIONS(3635), + [anon_sym_UR_DQUOTE] = ACTIONS(3635), + [anon_sym_u8R_DQUOTE] = ACTIONS(3635), }, - [1591] = { - [sym_identifier] = ACTIONS(5080), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5082), - [anon_sym_COMMA] = ACTIONS(5082), - [anon_sym_RPAREN] = ACTIONS(5082), - [aux_sym_preproc_if_token2] = ACTIONS(5082), - [aux_sym_preproc_else_token1] = ACTIONS(5082), - [aux_sym_preproc_elif_token1] = ACTIONS(5080), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5082), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5082), - [anon_sym_LPAREN2] = ACTIONS(5082), - [anon_sym_DASH] = ACTIONS(5080), - [anon_sym_PLUS] = ACTIONS(5080), - [anon_sym_STAR] = ACTIONS(5080), - [anon_sym_SLASH] = ACTIONS(5080), - [anon_sym_PERCENT] = ACTIONS(5080), - [anon_sym_PIPE_PIPE] = ACTIONS(5082), - [anon_sym_AMP_AMP] = ACTIONS(5082), - [anon_sym_PIPE] = ACTIONS(5080), - [anon_sym_CARET] = ACTIONS(5080), - [anon_sym_AMP] = ACTIONS(5080), - [anon_sym_EQ_EQ] = ACTIONS(5082), - [anon_sym_BANG_EQ] = ACTIONS(5082), - [anon_sym_GT] = ACTIONS(5080), - [anon_sym_GT_EQ] = ACTIONS(5082), - [anon_sym_LT_EQ] = ACTIONS(5080), - [anon_sym_LT] = ACTIONS(5080), - [anon_sym_LT_LT] = ACTIONS(5080), - [anon_sym_GT_GT] = ACTIONS(5080), - [anon_sym_SEMI] = ACTIONS(5082), - [anon_sym___extension__] = ACTIONS(5080), - [anon_sym___attribute__] = ACTIONS(5080), - [anon_sym___attribute] = ACTIONS(5080), - [anon_sym_COLON] = ACTIONS(5082), - [anon_sym_LBRACE] = ACTIONS(5082), - [anon_sym_RBRACE] = ACTIONS(5082), - [anon_sym_signed] = ACTIONS(5080), - [anon_sym_unsigned] = ACTIONS(5080), - [anon_sym_long] = ACTIONS(5080), - [anon_sym_short] = ACTIONS(5080), - [anon_sym_LBRACK] = ACTIONS(5082), - [anon_sym_RBRACK] = ACTIONS(5082), - [anon_sym_EQ] = ACTIONS(5080), - [anon_sym_const] = ACTIONS(5080), - [anon_sym_constexpr] = ACTIONS(5080), - [anon_sym_volatile] = ACTIONS(5080), - [anon_sym_restrict] = ACTIONS(5080), - [anon_sym___restrict__] = ACTIONS(5080), - [anon_sym__Atomic] = ACTIONS(5080), - [anon_sym__Noreturn] = ACTIONS(5080), - [anon_sym_noreturn] = ACTIONS(5080), - [anon_sym__Nonnull] = ACTIONS(5080), - [anon_sym_mutable] = ACTIONS(5080), - [anon_sym_constinit] = ACTIONS(5080), - [anon_sym_consteval] = ACTIONS(5080), - [anon_sym_alignas] = ACTIONS(5080), - [anon_sym__Alignas] = ACTIONS(5080), - [sym_primitive_type] = ACTIONS(5080), - [anon_sym_QMARK] = ACTIONS(5082), - [anon_sym_STAR_EQ] = ACTIONS(5082), - [anon_sym_SLASH_EQ] = ACTIONS(5082), - [anon_sym_PERCENT_EQ] = ACTIONS(5082), - [anon_sym_PLUS_EQ] = ACTIONS(5082), - [anon_sym_DASH_EQ] = ACTIONS(5082), - [anon_sym_LT_LT_EQ] = ACTIONS(5082), - [anon_sym_GT_GT_EQ] = ACTIONS(5082), - [anon_sym_AMP_EQ] = ACTIONS(5082), - [anon_sym_CARET_EQ] = ACTIONS(5082), - [anon_sym_PIPE_EQ] = ACTIONS(5082), - [anon_sym_and_eq] = ACTIONS(5080), - [anon_sym_or_eq] = ACTIONS(5080), - [anon_sym_xor_eq] = ACTIONS(5080), - [anon_sym_LT_EQ_GT] = ACTIONS(5082), - [anon_sym_or] = ACTIONS(5080), - [anon_sym_and] = ACTIONS(5080), - [anon_sym_bitor] = ACTIONS(5080), - [anon_sym_xor] = ACTIONS(5080), - [anon_sym_bitand] = ACTIONS(5080), - [anon_sym_not_eq] = ACTIONS(5080), - [anon_sym_DASH_DASH] = ACTIONS(5082), - [anon_sym_PLUS_PLUS] = ACTIONS(5082), - [anon_sym_DOT] = ACTIONS(5080), - [anon_sym_DOT_STAR] = ACTIONS(5082), - [anon_sym_DASH_GT] = ACTIONS(5082), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5080), - [anon_sym_decltype] = ACTIONS(5080), + [1610] = { + [sym_identifier] = ACTIONS(2569), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2559), + [anon_sym_COMMA] = ACTIONS(2559), + [anon_sym_RPAREN] = ACTIONS(2559), + [aux_sym_preproc_if_token2] = ACTIONS(2559), + [aux_sym_preproc_else_token1] = ACTIONS(2559), + [aux_sym_preproc_elif_token1] = ACTIONS(2569), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2559), + [anon_sym_DASH] = ACTIONS(2569), + [anon_sym_PLUS] = ACTIONS(2569), + [anon_sym_STAR] = ACTIONS(2569), + [anon_sym_SLASH] = ACTIONS(2569), + [anon_sym_PERCENT] = ACTIONS(2569), + [anon_sym_PIPE_PIPE] = ACTIONS(2559), + [anon_sym_AMP_AMP] = ACTIONS(2559), + [anon_sym_PIPE] = ACTIONS(2569), + [anon_sym_CARET] = ACTIONS(2569), + [anon_sym_AMP] = ACTIONS(2569), + [anon_sym_EQ_EQ] = ACTIONS(2559), + [anon_sym_BANG_EQ] = ACTIONS(2559), + [anon_sym_GT] = ACTIONS(2569), + [anon_sym_GT_EQ] = ACTIONS(2559), + [anon_sym_LT_EQ] = ACTIONS(2569), + [anon_sym_LT] = ACTIONS(2569), + [anon_sym_LT_LT] = ACTIONS(2569), + [anon_sym_GT_GT] = ACTIONS(2569), + [anon_sym_SEMI] = ACTIONS(2559), + [anon_sym___extension__] = ACTIONS(2569), + [anon_sym___attribute__] = ACTIONS(2569), + [anon_sym___attribute] = ACTIONS(2569), + [anon_sym_COLON] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2559), + [anon_sym_RBRACE] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2569), + [anon_sym_unsigned] = ACTIONS(2569), + [anon_sym_long] = ACTIONS(2569), + [anon_sym_short] = ACTIONS(2569), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_RBRACK] = ACTIONS(2559), + [anon_sym_EQ] = ACTIONS(2569), + [anon_sym_const] = ACTIONS(2569), + [anon_sym_constexpr] = ACTIONS(2569), + [anon_sym_volatile] = ACTIONS(2569), + [anon_sym_restrict] = ACTIONS(2569), + [anon_sym___restrict__] = ACTIONS(2569), + [anon_sym__Atomic] = ACTIONS(2569), + [anon_sym__Noreturn] = ACTIONS(2569), + [anon_sym_noreturn] = ACTIONS(2569), + [anon_sym__Nonnull] = ACTIONS(2569), + [anon_sym_mutable] = ACTIONS(2569), + [anon_sym_constinit] = ACTIONS(2569), + [anon_sym_consteval] = ACTIONS(2569), + [anon_sym_alignas] = ACTIONS(2569), + [anon_sym__Alignas] = ACTIONS(2569), + [sym_primitive_type] = ACTIONS(2569), + [anon_sym_QMARK] = ACTIONS(2559), + [anon_sym_STAR_EQ] = ACTIONS(2559), + [anon_sym_SLASH_EQ] = ACTIONS(2559), + [anon_sym_PERCENT_EQ] = ACTIONS(2559), + [anon_sym_PLUS_EQ] = ACTIONS(2559), + [anon_sym_DASH_EQ] = ACTIONS(2559), + [anon_sym_LT_LT_EQ] = ACTIONS(2559), + [anon_sym_GT_GT_EQ] = ACTIONS(2559), + [anon_sym_AMP_EQ] = ACTIONS(2559), + [anon_sym_CARET_EQ] = ACTIONS(2559), + [anon_sym_PIPE_EQ] = ACTIONS(2559), + [anon_sym_and_eq] = ACTIONS(2569), + [anon_sym_or_eq] = ACTIONS(2569), + [anon_sym_xor_eq] = ACTIONS(2569), + [anon_sym_LT_EQ_GT] = ACTIONS(2559), + [anon_sym_or] = ACTIONS(2569), + [anon_sym_and] = ACTIONS(2569), + [anon_sym_bitor] = ACTIONS(2569), + [anon_sym_xor] = ACTIONS(2569), + [anon_sym_bitand] = ACTIONS(2569), + [anon_sym_not_eq] = ACTIONS(2569), + [anon_sym_DASH_DASH] = ACTIONS(2559), + [anon_sym_PLUS_PLUS] = ACTIONS(2559), + [anon_sym_DOT] = ACTIONS(2569), + [anon_sym_DOT_STAR] = ACTIONS(2559), + [anon_sym_DASH_GT] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2569), + [anon_sym_decltype] = ACTIONS(2569), }, - [1592] = { - [sym_type_qualifier] = STATE(1593), - [sym_alignas_qualifier] = STATE(1590), - [aux_sym__type_definition_type_repeat1] = STATE(1593), - [aux_sym_sized_type_specifier_repeat1] = STATE(1614), - [sym_identifier] = ACTIONS(5084), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5086), - [anon_sym_COMMA] = ACTIONS(5086), - [anon_sym_RPAREN] = ACTIONS(5086), - [anon_sym_LPAREN2] = ACTIONS(5086), + [1611] = { + [sym_identifier] = ACTIONS(5088), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5090), + [anon_sym_COMMA] = ACTIONS(5090), + [anon_sym_RPAREN] = ACTIONS(5090), + [aux_sym_preproc_if_token2] = ACTIONS(5090), + [aux_sym_preproc_else_token1] = ACTIONS(5090), + [aux_sym_preproc_elif_token1] = ACTIONS(5088), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5090), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5090), + [anon_sym_LPAREN2] = ACTIONS(5090), [anon_sym_DASH] = ACTIONS(5088), [anon_sym_PLUS] = ACTIONS(5088), [anon_sym_STAR] = ACTIONS(5088), [anon_sym_SLASH] = ACTIONS(5088), [anon_sym_PERCENT] = ACTIONS(5088), - [anon_sym_PIPE_PIPE] = ACTIONS(5086), - [anon_sym_AMP_AMP] = ACTIONS(5086), + [anon_sym_PIPE_PIPE] = ACTIONS(5090), + [anon_sym_AMP_AMP] = ACTIONS(5090), [anon_sym_PIPE] = ACTIONS(5088), [anon_sym_CARET] = ACTIONS(5088), [anon_sym_AMP] = ACTIONS(5088), - [anon_sym_EQ_EQ] = ACTIONS(5086), - [anon_sym_BANG_EQ] = ACTIONS(5086), + [anon_sym_EQ_EQ] = ACTIONS(5090), + [anon_sym_BANG_EQ] = ACTIONS(5090), [anon_sym_GT] = ACTIONS(5088), - [anon_sym_GT_EQ] = ACTIONS(5086), + [anon_sym_GT_EQ] = ACTIONS(5090), [anon_sym_LT_EQ] = ACTIONS(5088), [anon_sym_LT] = ACTIONS(5088), [anon_sym_LT_LT] = ACTIONS(5088), [anon_sym_GT_GT] = ACTIONS(5088), - [anon_sym_SEMI] = ACTIONS(5086), - [anon_sym___extension__] = ACTIONS(5090), + [anon_sym_SEMI] = ACTIONS(5090), + [anon_sym___extension__] = ACTIONS(5088), [anon_sym___attribute__] = ACTIONS(5088), [anon_sym___attribute] = ACTIONS(5088), - [anon_sym_COLON] = ACTIONS(5086), - [anon_sym_LBRACE] = ACTIONS(5086), - [anon_sym_RBRACE] = ACTIONS(5086), - [anon_sym_signed] = ACTIONS(5092), - [anon_sym_unsigned] = ACTIONS(5092), - [anon_sym_long] = ACTIONS(5092), - [anon_sym_short] = ACTIONS(5092), - [anon_sym_LBRACK] = ACTIONS(5086), - [anon_sym_RBRACK] = ACTIONS(5086), + [anon_sym_COLON] = ACTIONS(5090), + [anon_sym_LBRACE] = ACTIONS(5090), + [anon_sym_RBRACE] = ACTIONS(5090), + [anon_sym_signed] = ACTIONS(5088), + [anon_sym_unsigned] = ACTIONS(5088), + [anon_sym_long] = ACTIONS(5088), + [anon_sym_short] = ACTIONS(5088), + [anon_sym_LBRACK] = ACTIONS(5090), + [anon_sym_RBRACK] = ACTIONS(5090), [anon_sym_EQ] = ACTIONS(5088), - [anon_sym_const] = ACTIONS(5090), - [anon_sym_constexpr] = ACTIONS(5090), - [anon_sym_volatile] = ACTIONS(5090), - [anon_sym_restrict] = ACTIONS(5090), - [anon_sym___restrict__] = ACTIONS(5090), - [anon_sym__Atomic] = ACTIONS(5090), - [anon_sym__Noreturn] = ACTIONS(5090), - [anon_sym_noreturn] = ACTIONS(5090), - [anon_sym__Nonnull] = ACTIONS(5090), - [anon_sym_mutable] = ACTIONS(5090), - [anon_sym_constinit] = ACTIONS(5090), - [anon_sym_consteval] = ACTIONS(5090), - [anon_sym_alignas] = ACTIONS(5094), - [anon_sym__Alignas] = ACTIONS(5094), - [sym_primitive_type] = ACTIONS(5096), - [anon_sym_QMARK] = ACTIONS(5086), - [anon_sym_STAR_EQ] = ACTIONS(5086), - [anon_sym_SLASH_EQ] = ACTIONS(5086), - [anon_sym_PERCENT_EQ] = ACTIONS(5086), - [anon_sym_PLUS_EQ] = ACTIONS(5086), - [anon_sym_DASH_EQ] = ACTIONS(5086), - [anon_sym_LT_LT_EQ] = ACTIONS(5086), - [anon_sym_GT_GT_EQ] = ACTIONS(5086), - [anon_sym_AMP_EQ] = ACTIONS(5086), - [anon_sym_CARET_EQ] = ACTIONS(5086), - [anon_sym_PIPE_EQ] = ACTIONS(5086), + [anon_sym_const] = ACTIONS(5088), + [anon_sym_constexpr] = ACTIONS(5088), + [anon_sym_volatile] = ACTIONS(5088), + [anon_sym_restrict] = ACTIONS(5088), + [anon_sym___restrict__] = ACTIONS(5088), + [anon_sym__Atomic] = ACTIONS(5088), + [anon_sym__Noreturn] = ACTIONS(5088), + [anon_sym_noreturn] = ACTIONS(5088), + [anon_sym__Nonnull] = ACTIONS(5088), + [anon_sym_mutable] = ACTIONS(5088), + [anon_sym_constinit] = ACTIONS(5088), + [anon_sym_consteval] = ACTIONS(5088), + [anon_sym_alignas] = ACTIONS(5088), + [anon_sym__Alignas] = ACTIONS(5088), + [sym_primitive_type] = ACTIONS(5088), + [anon_sym_QMARK] = ACTIONS(5090), + [anon_sym_STAR_EQ] = ACTIONS(5090), + [anon_sym_SLASH_EQ] = ACTIONS(5090), + [anon_sym_PERCENT_EQ] = ACTIONS(5090), + [anon_sym_PLUS_EQ] = ACTIONS(5090), + [anon_sym_DASH_EQ] = ACTIONS(5090), + [anon_sym_LT_LT_EQ] = ACTIONS(5090), + [anon_sym_GT_GT_EQ] = ACTIONS(5090), + [anon_sym_AMP_EQ] = ACTIONS(5090), + [anon_sym_CARET_EQ] = ACTIONS(5090), + [anon_sym_PIPE_EQ] = ACTIONS(5090), [anon_sym_and_eq] = ACTIONS(5088), [anon_sym_or_eq] = ACTIONS(5088), [anon_sym_xor_eq] = ACTIONS(5088), - [anon_sym_LT_EQ_GT] = ACTIONS(5086), + [anon_sym_LT_EQ_GT] = ACTIONS(5090), [anon_sym_or] = ACTIONS(5088), [anon_sym_and] = ACTIONS(5088), [anon_sym_bitor] = ACTIONS(5088), [anon_sym_xor] = ACTIONS(5088), [anon_sym_bitand] = ACTIONS(5088), [anon_sym_not_eq] = ACTIONS(5088), - [anon_sym_DASH_DASH] = ACTIONS(5086), - [anon_sym_PLUS_PLUS] = ACTIONS(5086), + [anon_sym_DASH_DASH] = ACTIONS(5090), + [anon_sym_PLUS_PLUS] = ACTIONS(5090), [anon_sym_DOT] = ACTIONS(5088), - [anon_sym_DOT_STAR] = ACTIONS(5086), - [anon_sym_DASH_GT] = ACTIONS(5086), + [anon_sym_DOT_STAR] = ACTIONS(5090), + [anon_sym_DASH_GT] = ACTIONS(5090), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(5088), [anon_sym_decltype] = ACTIONS(5088), }, - [1593] = { - [sym_type_qualifier] = STATE(1578), - [sym_alignas_qualifier] = STATE(1590), - [aux_sym__type_definition_type_repeat1] = STATE(1578), - [aux_sym_sized_type_specifier_repeat1] = STATE(2314), - [sym_identifier] = ACTIONS(5098), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5100), - [anon_sym_COMMA] = ACTIONS(5100), - [anon_sym_RPAREN] = ACTIONS(5100), - [anon_sym_LPAREN2] = ACTIONS(5100), - [anon_sym_DASH] = ACTIONS(5102), - [anon_sym_PLUS] = ACTIONS(5102), - [anon_sym_STAR] = ACTIONS(5102), - [anon_sym_SLASH] = ACTIONS(5102), - [anon_sym_PERCENT] = ACTIONS(5102), - [anon_sym_PIPE_PIPE] = ACTIONS(5100), - [anon_sym_AMP_AMP] = ACTIONS(5100), - [anon_sym_PIPE] = ACTIONS(5102), - [anon_sym_CARET] = ACTIONS(5102), - [anon_sym_AMP] = ACTIONS(5102), - [anon_sym_EQ_EQ] = ACTIONS(5100), - [anon_sym_BANG_EQ] = ACTIONS(5100), - [anon_sym_GT] = ACTIONS(5102), - [anon_sym_GT_EQ] = ACTIONS(5100), - [anon_sym_LT_EQ] = ACTIONS(5102), - [anon_sym_LT] = ACTIONS(5102), - [anon_sym_LT_LT] = ACTIONS(5102), - [anon_sym_GT_GT] = ACTIONS(5102), - [anon_sym_SEMI] = ACTIONS(5100), - [anon_sym___extension__] = ACTIONS(5090), - [anon_sym___attribute__] = ACTIONS(5102), - [anon_sym___attribute] = ACTIONS(5102), - [anon_sym_COLON] = ACTIONS(5100), - [anon_sym_LBRACE] = ACTIONS(5100), - [anon_sym_RBRACE] = ACTIONS(5100), - [anon_sym_signed] = ACTIONS(5104), - [anon_sym_unsigned] = ACTIONS(5104), - [anon_sym_long] = ACTIONS(5104), - [anon_sym_short] = ACTIONS(5104), - [anon_sym_LBRACK] = ACTIONS(5100), - [anon_sym_RBRACK] = ACTIONS(5100), - [anon_sym_EQ] = ACTIONS(5102), - [anon_sym_const] = ACTIONS(5090), - [anon_sym_constexpr] = ACTIONS(5090), - [anon_sym_volatile] = ACTIONS(5090), - [anon_sym_restrict] = ACTIONS(5090), - [anon_sym___restrict__] = ACTIONS(5090), - [anon_sym__Atomic] = ACTIONS(5090), - [anon_sym__Noreturn] = ACTIONS(5090), - [anon_sym_noreturn] = ACTIONS(5090), - [anon_sym__Nonnull] = ACTIONS(5090), - [anon_sym_mutable] = ACTIONS(5090), - [anon_sym_constinit] = ACTIONS(5090), - [anon_sym_consteval] = ACTIONS(5090), - [anon_sym_alignas] = ACTIONS(5094), - [anon_sym__Alignas] = ACTIONS(5094), - [sym_primitive_type] = ACTIONS(5106), - [anon_sym_QMARK] = ACTIONS(5100), - [anon_sym_STAR_EQ] = ACTIONS(5100), - [anon_sym_SLASH_EQ] = ACTIONS(5100), - [anon_sym_PERCENT_EQ] = ACTIONS(5100), - [anon_sym_PLUS_EQ] = ACTIONS(5100), - [anon_sym_DASH_EQ] = ACTIONS(5100), - [anon_sym_LT_LT_EQ] = ACTIONS(5100), - [anon_sym_GT_GT_EQ] = ACTIONS(5100), - [anon_sym_AMP_EQ] = ACTIONS(5100), - [anon_sym_CARET_EQ] = ACTIONS(5100), - [anon_sym_PIPE_EQ] = ACTIONS(5100), - [anon_sym_and_eq] = ACTIONS(5102), - [anon_sym_or_eq] = ACTIONS(5102), - [anon_sym_xor_eq] = ACTIONS(5102), - [anon_sym_LT_EQ_GT] = ACTIONS(5100), - [anon_sym_or] = ACTIONS(5102), - [anon_sym_and] = ACTIONS(5102), - [anon_sym_bitor] = ACTIONS(5102), - [anon_sym_xor] = ACTIONS(5102), - [anon_sym_bitand] = ACTIONS(5102), - [anon_sym_not_eq] = ACTIONS(5102), - [anon_sym_DASH_DASH] = ACTIONS(5100), - [anon_sym_PLUS_PLUS] = ACTIONS(5100), - [anon_sym_DOT] = ACTIONS(5102), - [anon_sym_DOT_STAR] = ACTIONS(5100), - [anon_sym_DASH_GT] = ACTIONS(5100), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5102), - [anon_sym_decltype] = ACTIONS(5102), + [1612] = { + [sym_type_qualifier] = STATE(1615), + [sym_alignas_qualifier] = STATE(1610), + [aux_sym__type_definition_type_repeat1] = STATE(1615), + [aux_sym_sized_type_specifier_repeat1] = STATE(1640), + [sym_identifier] = ACTIONS(5092), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5094), + [anon_sym_COMMA] = ACTIONS(5094), + [anon_sym_RPAREN] = ACTIONS(5094), + [anon_sym_LPAREN2] = ACTIONS(5094), + [anon_sym_DASH] = ACTIONS(5096), + [anon_sym_PLUS] = ACTIONS(5096), + [anon_sym_STAR] = ACTIONS(5096), + [anon_sym_SLASH] = ACTIONS(5096), + [anon_sym_PERCENT] = ACTIONS(5096), + [anon_sym_PIPE_PIPE] = ACTIONS(5094), + [anon_sym_AMP_AMP] = ACTIONS(5094), + [anon_sym_PIPE] = ACTIONS(5096), + [anon_sym_CARET] = ACTIONS(5096), + [anon_sym_AMP] = ACTIONS(5096), + [anon_sym_EQ_EQ] = ACTIONS(5094), + [anon_sym_BANG_EQ] = ACTIONS(5094), + [anon_sym_GT] = ACTIONS(5096), + [anon_sym_GT_EQ] = ACTIONS(5094), + [anon_sym_LT_EQ] = ACTIONS(5096), + [anon_sym_LT] = ACTIONS(5096), + [anon_sym_LT_LT] = ACTIONS(5096), + [anon_sym_GT_GT] = ACTIONS(5096), + [anon_sym_SEMI] = ACTIONS(5094), + [anon_sym___extension__] = ACTIONS(5098), + [anon_sym___attribute__] = ACTIONS(5096), + [anon_sym___attribute] = ACTIONS(5096), + [anon_sym_COLON] = ACTIONS(5094), + [anon_sym_LBRACE] = ACTIONS(5094), + [anon_sym_RBRACE] = ACTIONS(5094), + [anon_sym_signed] = ACTIONS(5100), + [anon_sym_unsigned] = ACTIONS(5100), + [anon_sym_long] = ACTIONS(5100), + [anon_sym_short] = ACTIONS(5100), + [anon_sym_LBRACK] = ACTIONS(5094), + [anon_sym_RBRACK] = ACTIONS(5094), + [anon_sym_EQ] = ACTIONS(5096), + [anon_sym_const] = ACTIONS(5098), + [anon_sym_constexpr] = ACTIONS(5098), + [anon_sym_volatile] = ACTIONS(5098), + [anon_sym_restrict] = ACTIONS(5098), + [anon_sym___restrict__] = ACTIONS(5098), + [anon_sym__Atomic] = ACTIONS(5098), + [anon_sym__Noreturn] = ACTIONS(5098), + [anon_sym_noreturn] = ACTIONS(5098), + [anon_sym__Nonnull] = ACTIONS(5098), + [anon_sym_mutable] = ACTIONS(5098), + [anon_sym_constinit] = ACTIONS(5098), + [anon_sym_consteval] = ACTIONS(5098), + [anon_sym_alignas] = ACTIONS(5102), + [anon_sym__Alignas] = ACTIONS(5102), + [sym_primitive_type] = ACTIONS(5104), + [anon_sym_QMARK] = ACTIONS(5094), + [anon_sym_STAR_EQ] = ACTIONS(5094), + [anon_sym_SLASH_EQ] = ACTIONS(5094), + [anon_sym_PERCENT_EQ] = ACTIONS(5094), + [anon_sym_PLUS_EQ] = ACTIONS(5094), + [anon_sym_DASH_EQ] = ACTIONS(5094), + [anon_sym_LT_LT_EQ] = ACTIONS(5094), + [anon_sym_GT_GT_EQ] = ACTIONS(5094), + [anon_sym_AMP_EQ] = ACTIONS(5094), + [anon_sym_CARET_EQ] = ACTIONS(5094), + [anon_sym_PIPE_EQ] = ACTIONS(5094), + [anon_sym_and_eq] = ACTIONS(5096), + [anon_sym_or_eq] = ACTIONS(5096), + [anon_sym_xor_eq] = ACTIONS(5096), + [anon_sym_LT_EQ_GT] = ACTIONS(5094), + [anon_sym_or] = ACTIONS(5096), + [anon_sym_and] = ACTIONS(5096), + [anon_sym_bitor] = ACTIONS(5096), + [anon_sym_xor] = ACTIONS(5096), + [anon_sym_bitand] = ACTIONS(5096), + [anon_sym_not_eq] = ACTIONS(5096), + [anon_sym_DASH_DASH] = ACTIONS(5094), + [anon_sym_PLUS_PLUS] = ACTIONS(5094), + [anon_sym_DOT] = ACTIONS(5096), + [anon_sym_DOT_STAR] = ACTIONS(5094), + [anon_sym_DASH_GT] = ACTIONS(5094), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5096), + [anon_sym_decltype] = ACTIONS(5096), }, - [1594] = { - [sym_type_qualifier] = STATE(1595), - [sym_alignas_qualifier] = STATE(1590), - [aux_sym__type_definition_type_repeat1] = STATE(1595), - [aux_sym_sized_type_specifier_repeat1] = STATE(1617), - [sym_identifier] = ACTIONS(5108), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5086), - [anon_sym_COMMA] = ACTIONS(5086), - [aux_sym_preproc_if_token2] = ACTIONS(5086), - [aux_sym_preproc_else_token1] = ACTIONS(5086), - [aux_sym_preproc_elif_token1] = ACTIONS(5088), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5086), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5086), - [anon_sym_LPAREN2] = ACTIONS(5086), - [anon_sym_DASH] = ACTIONS(5088), - [anon_sym_PLUS] = ACTIONS(5088), - [anon_sym_STAR] = ACTIONS(5088), - [anon_sym_SLASH] = ACTIONS(5088), - [anon_sym_PERCENT] = ACTIONS(5088), - [anon_sym_PIPE_PIPE] = ACTIONS(5086), - [anon_sym_AMP_AMP] = ACTIONS(5086), - [anon_sym_PIPE] = ACTIONS(5088), - [anon_sym_CARET] = ACTIONS(5088), - [anon_sym_AMP] = ACTIONS(5088), - [anon_sym_EQ_EQ] = ACTIONS(5086), - [anon_sym_BANG_EQ] = ACTIONS(5086), - [anon_sym_GT] = ACTIONS(5088), - [anon_sym_GT_EQ] = ACTIONS(5086), - [anon_sym_LT_EQ] = ACTIONS(5088), - [anon_sym_LT] = ACTIONS(5088), - [anon_sym_LT_LT] = ACTIONS(5088), - [anon_sym_GT_GT] = ACTIONS(5088), - [anon_sym___extension__] = ACTIONS(5090), - [anon_sym___attribute__] = ACTIONS(5088), - [anon_sym___attribute] = ACTIONS(5088), - [anon_sym_LBRACE] = ACTIONS(5086), - [anon_sym_signed] = ACTIONS(5111), - [anon_sym_unsigned] = ACTIONS(5111), - [anon_sym_long] = ACTIONS(5111), - [anon_sym_short] = ACTIONS(5111), - [anon_sym_LBRACK] = ACTIONS(5086), - [anon_sym_EQ] = ACTIONS(5088), - [anon_sym_const] = ACTIONS(5090), - [anon_sym_constexpr] = ACTIONS(5090), - [anon_sym_volatile] = ACTIONS(5090), - [anon_sym_restrict] = ACTIONS(5090), - [anon_sym___restrict__] = ACTIONS(5090), - [anon_sym__Atomic] = ACTIONS(5090), - [anon_sym__Noreturn] = ACTIONS(5090), - [anon_sym_noreturn] = ACTIONS(5090), - [anon_sym__Nonnull] = ACTIONS(5090), - [anon_sym_mutable] = ACTIONS(5090), - [anon_sym_constinit] = ACTIONS(5090), - [anon_sym_consteval] = ACTIONS(5090), - [anon_sym_alignas] = ACTIONS(5094), - [anon_sym__Alignas] = ACTIONS(5094), - [sym_primitive_type] = ACTIONS(5113), - [anon_sym_QMARK] = ACTIONS(5086), - [anon_sym_STAR_EQ] = ACTIONS(5086), - [anon_sym_SLASH_EQ] = ACTIONS(5086), - [anon_sym_PERCENT_EQ] = ACTIONS(5086), - [anon_sym_PLUS_EQ] = ACTIONS(5086), - [anon_sym_DASH_EQ] = ACTIONS(5086), - [anon_sym_LT_LT_EQ] = ACTIONS(5086), - [anon_sym_GT_GT_EQ] = ACTIONS(5086), - [anon_sym_AMP_EQ] = ACTIONS(5086), - [anon_sym_CARET_EQ] = ACTIONS(5086), - [anon_sym_PIPE_EQ] = ACTIONS(5086), - [anon_sym_and_eq] = ACTIONS(5088), - [anon_sym_or_eq] = ACTIONS(5088), - [anon_sym_xor_eq] = ACTIONS(5088), - [anon_sym_LT_EQ_GT] = ACTIONS(5086), - [anon_sym_or] = ACTIONS(5088), - [anon_sym_and] = ACTIONS(5088), - [anon_sym_bitor] = ACTIONS(5088), - [anon_sym_xor] = ACTIONS(5088), - [anon_sym_bitand] = ACTIONS(5088), - [anon_sym_not_eq] = ACTIONS(5088), - [anon_sym_DASH_DASH] = ACTIONS(5086), - [anon_sym_PLUS_PLUS] = ACTIONS(5086), - [anon_sym_DOT] = ACTIONS(5088), - [anon_sym_DOT_STAR] = ACTIONS(5086), - [anon_sym_DASH_GT] = ACTIONS(5086), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5088), - [anon_sym_decltype] = ACTIONS(5088), + [1613] = { + [sym_type_qualifier] = STATE(1598), + [sym_alignas_qualifier] = STATE(1610), + [aux_sym__type_definition_type_repeat1] = STATE(1598), + [aux_sym_sized_type_specifier_repeat1] = STATE(2286), + [sym_identifier] = ACTIONS(5106), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5109), + [anon_sym_COMMA] = ACTIONS(5109), + [aux_sym_preproc_if_token2] = ACTIONS(5109), + [aux_sym_preproc_else_token1] = ACTIONS(5109), + [aux_sym_preproc_elif_token1] = ACTIONS(5111), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5109), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5109), + [anon_sym_LPAREN2] = ACTIONS(5109), + [anon_sym_DASH] = ACTIONS(5111), + [anon_sym_PLUS] = ACTIONS(5111), + [anon_sym_STAR] = ACTIONS(5111), + [anon_sym_SLASH] = ACTIONS(5111), + [anon_sym_PERCENT] = ACTIONS(5111), + [anon_sym_PIPE_PIPE] = ACTIONS(5109), + [anon_sym_AMP_AMP] = ACTIONS(5109), + [anon_sym_PIPE] = ACTIONS(5111), + [anon_sym_CARET] = ACTIONS(5111), + [anon_sym_AMP] = ACTIONS(5111), + [anon_sym_EQ_EQ] = ACTIONS(5109), + [anon_sym_BANG_EQ] = ACTIONS(5109), + [anon_sym_GT] = ACTIONS(5111), + [anon_sym_GT_EQ] = ACTIONS(5109), + [anon_sym_LT_EQ] = ACTIONS(5111), + [anon_sym_LT] = ACTIONS(5111), + [anon_sym_LT_LT] = ACTIONS(5111), + [anon_sym_GT_GT] = ACTIONS(5111), + [anon_sym___extension__] = ACTIONS(5098), + [anon_sym___attribute__] = ACTIONS(5111), + [anon_sym___attribute] = ACTIONS(5111), + [anon_sym_LBRACE] = ACTIONS(5109), + [anon_sym_signed] = ACTIONS(5113), + [anon_sym_unsigned] = ACTIONS(5113), + [anon_sym_long] = ACTIONS(5113), + [anon_sym_short] = ACTIONS(5113), + [anon_sym_LBRACK] = ACTIONS(5109), + [anon_sym_EQ] = ACTIONS(5111), + [anon_sym_const] = ACTIONS(5098), + [anon_sym_constexpr] = ACTIONS(5098), + [anon_sym_volatile] = ACTIONS(5098), + [anon_sym_restrict] = ACTIONS(5098), + [anon_sym___restrict__] = ACTIONS(5098), + [anon_sym__Atomic] = ACTIONS(5098), + [anon_sym__Noreturn] = ACTIONS(5098), + [anon_sym_noreturn] = ACTIONS(5098), + [anon_sym__Nonnull] = ACTIONS(5098), + [anon_sym_mutable] = ACTIONS(5098), + [anon_sym_constinit] = ACTIONS(5098), + [anon_sym_consteval] = ACTIONS(5098), + [anon_sym_alignas] = ACTIONS(5102), + [anon_sym__Alignas] = ACTIONS(5102), + [sym_primitive_type] = ACTIONS(5115), + [anon_sym_QMARK] = ACTIONS(5109), + [anon_sym_STAR_EQ] = ACTIONS(5109), + [anon_sym_SLASH_EQ] = ACTIONS(5109), + [anon_sym_PERCENT_EQ] = ACTIONS(5109), + [anon_sym_PLUS_EQ] = ACTIONS(5109), + [anon_sym_DASH_EQ] = ACTIONS(5109), + [anon_sym_LT_LT_EQ] = ACTIONS(5109), + [anon_sym_GT_GT_EQ] = ACTIONS(5109), + [anon_sym_AMP_EQ] = ACTIONS(5109), + [anon_sym_CARET_EQ] = ACTIONS(5109), + [anon_sym_PIPE_EQ] = ACTIONS(5109), + [anon_sym_and_eq] = ACTIONS(5111), + [anon_sym_or_eq] = ACTIONS(5111), + [anon_sym_xor_eq] = ACTIONS(5111), + [anon_sym_LT_EQ_GT] = ACTIONS(5109), + [anon_sym_or] = ACTIONS(5111), + [anon_sym_and] = ACTIONS(5111), + [anon_sym_bitor] = ACTIONS(5111), + [anon_sym_xor] = ACTIONS(5111), + [anon_sym_bitand] = ACTIONS(5111), + [anon_sym_not_eq] = ACTIONS(5111), + [anon_sym_DASH_DASH] = ACTIONS(5109), + [anon_sym_PLUS_PLUS] = ACTIONS(5109), + [anon_sym_DOT] = ACTIONS(5111), + [anon_sym_DOT_STAR] = ACTIONS(5109), + [anon_sym_DASH_GT] = ACTIONS(5109), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5111), + [anon_sym_decltype] = ACTIONS(5111), }, - [1595] = { - [sym_type_qualifier] = STATE(1578), - [sym_alignas_qualifier] = STATE(1590), - [aux_sym__type_definition_type_repeat1] = STATE(1578), - [aux_sym_sized_type_specifier_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(5115), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5100), - [anon_sym_COMMA] = ACTIONS(5100), - [aux_sym_preproc_if_token2] = ACTIONS(5100), - [aux_sym_preproc_else_token1] = ACTIONS(5100), - [aux_sym_preproc_elif_token1] = ACTIONS(5102), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5100), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5100), - [anon_sym_LPAREN2] = ACTIONS(5100), - [anon_sym_DASH] = ACTIONS(5102), - [anon_sym_PLUS] = ACTIONS(5102), - [anon_sym_STAR] = ACTIONS(5102), - [anon_sym_SLASH] = ACTIONS(5102), - [anon_sym_PERCENT] = ACTIONS(5102), - [anon_sym_PIPE_PIPE] = ACTIONS(5100), - [anon_sym_AMP_AMP] = ACTIONS(5100), - [anon_sym_PIPE] = ACTIONS(5102), - [anon_sym_CARET] = ACTIONS(5102), - [anon_sym_AMP] = ACTIONS(5102), - [anon_sym_EQ_EQ] = ACTIONS(5100), - [anon_sym_BANG_EQ] = ACTIONS(5100), - [anon_sym_GT] = ACTIONS(5102), - [anon_sym_GT_EQ] = ACTIONS(5100), - [anon_sym_LT_EQ] = ACTIONS(5102), - [anon_sym_LT] = ACTIONS(5102), - [anon_sym_LT_LT] = ACTIONS(5102), - [anon_sym_GT_GT] = ACTIONS(5102), - [anon_sym___extension__] = ACTIONS(5090), - [anon_sym___attribute__] = ACTIONS(5102), - [anon_sym___attribute] = ACTIONS(5102), - [anon_sym_LBRACE] = ACTIONS(5100), - [anon_sym_signed] = ACTIONS(5118), - [anon_sym_unsigned] = ACTIONS(5118), - [anon_sym_long] = ACTIONS(5118), - [anon_sym_short] = ACTIONS(5118), - [anon_sym_LBRACK] = ACTIONS(5100), - [anon_sym_EQ] = ACTIONS(5102), - [anon_sym_const] = ACTIONS(5090), - [anon_sym_constexpr] = ACTIONS(5090), - [anon_sym_volatile] = ACTIONS(5090), - [anon_sym_restrict] = ACTIONS(5090), - [anon_sym___restrict__] = ACTIONS(5090), - [anon_sym__Atomic] = ACTIONS(5090), - [anon_sym__Noreturn] = ACTIONS(5090), - [anon_sym_noreturn] = ACTIONS(5090), - [anon_sym__Nonnull] = ACTIONS(5090), - [anon_sym_mutable] = ACTIONS(5090), - [anon_sym_constinit] = ACTIONS(5090), - [anon_sym_consteval] = ACTIONS(5090), - [anon_sym_alignas] = ACTIONS(5094), - [anon_sym__Alignas] = ACTIONS(5094), - [sym_primitive_type] = ACTIONS(5120), - [anon_sym_QMARK] = ACTIONS(5100), - [anon_sym_STAR_EQ] = ACTIONS(5100), - [anon_sym_SLASH_EQ] = ACTIONS(5100), - [anon_sym_PERCENT_EQ] = ACTIONS(5100), - [anon_sym_PLUS_EQ] = ACTIONS(5100), - [anon_sym_DASH_EQ] = ACTIONS(5100), - [anon_sym_LT_LT_EQ] = ACTIONS(5100), - [anon_sym_GT_GT_EQ] = ACTIONS(5100), - [anon_sym_AMP_EQ] = ACTIONS(5100), - [anon_sym_CARET_EQ] = ACTIONS(5100), - [anon_sym_PIPE_EQ] = ACTIONS(5100), - [anon_sym_and_eq] = ACTIONS(5102), - [anon_sym_or_eq] = ACTIONS(5102), - [anon_sym_xor_eq] = ACTIONS(5102), - [anon_sym_LT_EQ_GT] = ACTIONS(5100), - [anon_sym_or] = ACTIONS(5102), - [anon_sym_and] = ACTIONS(5102), - [anon_sym_bitor] = ACTIONS(5102), - [anon_sym_xor] = ACTIONS(5102), - [anon_sym_bitand] = ACTIONS(5102), - [anon_sym_not_eq] = ACTIONS(5102), - [anon_sym_DASH_DASH] = ACTIONS(5100), - [anon_sym_PLUS_PLUS] = ACTIONS(5100), - [anon_sym_DOT] = ACTIONS(5102), - [anon_sym_DOT_STAR] = ACTIONS(5100), - [anon_sym_DASH_GT] = ACTIONS(5100), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5102), - [anon_sym_decltype] = ACTIONS(5102), + [1614] = { + [sym_type_qualifier] = STATE(1613), + [sym_alignas_qualifier] = STATE(1610), + [aux_sym__type_definition_type_repeat1] = STATE(1613), + [aux_sym_sized_type_specifier_repeat1] = STATE(1633), + [sym_identifier] = ACTIONS(5117), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5094), + [anon_sym_COMMA] = ACTIONS(5094), + [aux_sym_preproc_if_token2] = ACTIONS(5094), + [aux_sym_preproc_else_token1] = ACTIONS(5094), + [aux_sym_preproc_elif_token1] = ACTIONS(5096), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5094), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5094), + [anon_sym_LPAREN2] = ACTIONS(5094), + [anon_sym_DASH] = ACTIONS(5096), + [anon_sym_PLUS] = ACTIONS(5096), + [anon_sym_STAR] = ACTIONS(5096), + [anon_sym_SLASH] = ACTIONS(5096), + [anon_sym_PERCENT] = ACTIONS(5096), + [anon_sym_PIPE_PIPE] = ACTIONS(5094), + [anon_sym_AMP_AMP] = ACTIONS(5094), + [anon_sym_PIPE] = ACTIONS(5096), + [anon_sym_CARET] = ACTIONS(5096), + [anon_sym_AMP] = ACTIONS(5096), + [anon_sym_EQ_EQ] = ACTIONS(5094), + [anon_sym_BANG_EQ] = ACTIONS(5094), + [anon_sym_GT] = ACTIONS(5096), + [anon_sym_GT_EQ] = ACTIONS(5094), + [anon_sym_LT_EQ] = ACTIONS(5096), + [anon_sym_LT] = ACTIONS(5096), + [anon_sym_LT_LT] = ACTIONS(5096), + [anon_sym_GT_GT] = ACTIONS(5096), + [anon_sym___extension__] = ACTIONS(5098), + [anon_sym___attribute__] = ACTIONS(5096), + [anon_sym___attribute] = ACTIONS(5096), + [anon_sym_LBRACE] = ACTIONS(5094), + [anon_sym_signed] = ACTIONS(5120), + [anon_sym_unsigned] = ACTIONS(5120), + [anon_sym_long] = ACTIONS(5120), + [anon_sym_short] = ACTIONS(5120), + [anon_sym_LBRACK] = ACTIONS(5094), + [anon_sym_EQ] = ACTIONS(5096), + [anon_sym_const] = ACTIONS(5098), + [anon_sym_constexpr] = ACTIONS(5098), + [anon_sym_volatile] = ACTIONS(5098), + [anon_sym_restrict] = ACTIONS(5098), + [anon_sym___restrict__] = ACTIONS(5098), + [anon_sym__Atomic] = ACTIONS(5098), + [anon_sym__Noreturn] = ACTIONS(5098), + [anon_sym_noreturn] = ACTIONS(5098), + [anon_sym__Nonnull] = ACTIONS(5098), + [anon_sym_mutable] = ACTIONS(5098), + [anon_sym_constinit] = ACTIONS(5098), + [anon_sym_consteval] = ACTIONS(5098), + [anon_sym_alignas] = ACTIONS(5102), + [anon_sym__Alignas] = ACTIONS(5102), + [sym_primitive_type] = ACTIONS(5122), + [anon_sym_QMARK] = ACTIONS(5094), + [anon_sym_STAR_EQ] = ACTIONS(5094), + [anon_sym_SLASH_EQ] = ACTIONS(5094), + [anon_sym_PERCENT_EQ] = ACTIONS(5094), + [anon_sym_PLUS_EQ] = ACTIONS(5094), + [anon_sym_DASH_EQ] = ACTIONS(5094), + [anon_sym_LT_LT_EQ] = ACTIONS(5094), + [anon_sym_GT_GT_EQ] = ACTIONS(5094), + [anon_sym_AMP_EQ] = ACTIONS(5094), + [anon_sym_CARET_EQ] = ACTIONS(5094), + [anon_sym_PIPE_EQ] = ACTIONS(5094), + [anon_sym_and_eq] = ACTIONS(5096), + [anon_sym_or_eq] = ACTIONS(5096), + [anon_sym_xor_eq] = ACTIONS(5096), + [anon_sym_LT_EQ_GT] = ACTIONS(5094), + [anon_sym_or] = ACTIONS(5096), + [anon_sym_and] = ACTIONS(5096), + [anon_sym_bitor] = ACTIONS(5096), + [anon_sym_xor] = ACTIONS(5096), + [anon_sym_bitand] = ACTIONS(5096), + [anon_sym_not_eq] = ACTIONS(5096), + [anon_sym_DASH_DASH] = ACTIONS(5094), + [anon_sym_PLUS_PLUS] = ACTIONS(5094), + [anon_sym_DOT] = ACTIONS(5096), + [anon_sym_DOT_STAR] = ACTIONS(5094), + [anon_sym_DASH_GT] = ACTIONS(5094), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5096), + [anon_sym_decltype] = ACTIONS(5096), }, - [1596] = { - [sym_identifier] = ACTIONS(4992), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4994), - [anon_sym_COMMA] = ACTIONS(4994), - [anon_sym_RPAREN] = ACTIONS(4994), - [aux_sym_preproc_if_token2] = ACTIONS(4994), - [aux_sym_preproc_else_token1] = ACTIONS(4994), - [aux_sym_preproc_elif_token1] = ACTIONS(4992), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4994), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4994), - [anon_sym_LPAREN2] = ACTIONS(4994), - [anon_sym_DASH] = ACTIONS(4992), - [anon_sym_PLUS] = ACTIONS(4992), - [anon_sym_STAR] = ACTIONS(4992), - [anon_sym_SLASH] = ACTIONS(4992), - [anon_sym_PERCENT] = ACTIONS(4992), - [anon_sym_PIPE_PIPE] = ACTIONS(4994), - [anon_sym_AMP_AMP] = ACTIONS(4994), - [anon_sym_PIPE] = ACTIONS(4992), - [anon_sym_CARET] = ACTIONS(4992), - [anon_sym_AMP] = ACTIONS(4992), - [anon_sym_EQ_EQ] = ACTIONS(4994), - [anon_sym_BANG_EQ] = ACTIONS(4994), - [anon_sym_GT] = ACTIONS(4992), - [anon_sym_GT_EQ] = ACTIONS(4994), - [anon_sym_LT_EQ] = ACTIONS(4992), - [anon_sym_LT] = ACTIONS(4992), - [anon_sym_LT_LT] = ACTIONS(4992), - [anon_sym_GT_GT] = ACTIONS(4992), - [anon_sym_SEMI] = ACTIONS(4994), - [anon_sym___extension__] = ACTIONS(4992), - [anon_sym___attribute__] = ACTIONS(4992), - [anon_sym___attribute] = ACTIONS(4992), - [anon_sym_COLON] = ACTIONS(4992), - [anon_sym_COLON_COLON] = ACTIONS(4994), - [anon_sym_LBRACE] = ACTIONS(4994), - [anon_sym_RBRACE] = ACTIONS(4994), - [anon_sym_LBRACK] = ACTIONS(4994), - [anon_sym_RBRACK] = ACTIONS(4994), - [anon_sym_EQ] = ACTIONS(4992), - [anon_sym_const] = ACTIONS(4992), - [anon_sym_constexpr] = ACTIONS(4992), - [anon_sym_volatile] = ACTIONS(4992), - [anon_sym_restrict] = ACTIONS(4992), - [anon_sym___restrict__] = ACTIONS(4992), - [anon_sym__Atomic] = ACTIONS(4992), - [anon_sym__Noreturn] = ACTIONS(4992), - [anon_sym_noreturn] = ACTIONS(4992), - [anon_sym__Nonnull] = ACTIONS(4992), - [anon_sym_mutable] = ACTIONS(4992), - [anon_sym_constinit] = ACTIONS(4992), - [anon_sym_consteval] = ACTIONS(4992), - [anon_sym_alignas] = ACTIONS(4992), - [anon_sym__Alignas] = ACTIONS(4992), - [anon_sym_QMARK] = ACTIONS(4994), - [anon_sym_STAR_EQ] = ACTIONS(4994), - [anon_sym_SLASH_EQ] = ACTIONS(4994), - [anon_sym_PERCENT_EQ] = ACTIONS(4994), - [anon_sym_PLUS_EQ] = ACTIONS(4994), - [anon_sym_DASH_EQ] = ACTIONS(4994), - [anon_sym_LT_LT_EQ] = ACTIONS(4994), - [anon_sym_GT_GT_EQ] = ACTIONS(4994), - [anon_sym_AMP_EQ] = ACTIONS(4994), - [anon_sym_CARET_EQ] = ACTIONS(4994), - [anon_sym_PIPE_EQ] = ACTIONS(4994), - [anon_sym_and_eq] = ACTIONS(4992), - [anon_sym_or_eq] = ACTIONS(4992), - [anon_sym_xor_eq] = ACTIONS(4992), - [anon_sym_LT_EQ_GT] = ACTIONS(4994), - [anon_sym_or] = ACTIONS(4992), - [anon_sym_and] = ACTIONS(4992), - [anon_sym_bitor] = ACTIONS(4992), - [anon_sym_xor] = ACTIONS(4992), - [anon_sym_bitand] = ACTIONS(4992), - [anon_sym_not_eq] = ACTIONS(4992), - [anon_sym_DASH_DASH] = ACTIONS(4994), - [anon_sym_PLUS_PLUS] = ACTIONS(4994), - [anon_sym_DOT] = ACTIONS(4992), - [anon_sym_DOT_STAR] = ACTIONS(4994), - [anon_sym_DASH_GT] = ACTIONS(4994), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4992), - [anon_sym_decltype] = ACTIONS(4992), - [anon_sym_final] = ACTIONS(4992), - [anon_sym_override] = ACTIONS(4992), + [1615] = { + [sym_type_qualifier] = STATE(1598), + [sym_alignas_qualifier] = STATE(1610), + [aux_sym__type_definition_type_repeat1] = STATE(1598), + [aux_sym_sized_type_specifier_repeat1] = STATE(2352), + [sym_identifier] = ACTIONS(5124), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5109), + [anon_sym_COMMA] = ACTIONS(5109), + [anon_sym_RPAREN] = ACTIONS(5109), + [anon_sym_LPAREN2] = ACTIONS(5109), + [anon_sym_DASH] = ACTIONS(5111), + [anon_sym_PLUS] = ACTIONS(5111), + [anon_sym_STAR] = ACTIONS(5111), + [anon_sym_SLASH] = ACTIONS(5111), + [anon_sym_PERCENT] = ACTIONS(5111), + [anon_sym_PIPE_PIPE] = ACTIONS(5109), + [anon_sym_AMP_AMP] = ACTIONS(5109), + [anon_sym_PIPE] = ACTIONS(5111), + [anon_sym_CARET] = ACTIONS(5111), + [anon_sym_AMP] = ACTIONS(5111), + [anon_sym_EQ_EQ] = ACTIONS(5109), + [anon_sym_BANG_EQ] = ACTIONS(5109), + [anon_sym_GT] = ACTIONS(5111), + [anon_sym_GT_EQ] = ACTIONS(5109), + [anon_sym_LT_EQ] = ACTIONS(5111), + [anon_sym_LT] = ACTIONS(5111), + [anon_sym_LT_LT] = ACTIONS(5111), + [anon_sym_GT_GT] = ACTIONS(5111), + [anon_sym_SEMI] = ACTIONS(5109), + [anon_sym___extension__] = ACTIONS(5098), + [anon_sym___attribute__] = ACTIONS(5111), + [anon_sym___attribute] = ACTIONS(5111), + [anon_sym_COLON] = ACTIONS(5109), + [anon_sym_LBRACE] = ACTIONS(5109), + [anon_sym_RBRACE] = ACTIONS(5109), + [anon_sym_signed] = ACTIONS(5126), + [anon_sym_unsigned] = ACTIONS(5126), + [anon_sym_long] = ACTIONS(5126), + [anon_sym_short] = ACTIONS(5126), + [anon_sym_LBRACK] = ACTIONS(5109), + [anon_sym_RBRACK] = ACTIONS(5109), + [anon_sym_EQ] = ACTIONS(5111), + [anon_sym_const] = ACTIONS(5098), + [anon_sym_constexpr] = ACTIONS(5098), + [anon_sym_volatile] = ACTIONS(5098), + [anon_sym_restrict] = ACTIONS(5098), + [anon_sym___restrict__] = ACTIONS(5098), + [anon_sym__Atomic] = ACTIONS(5098), + [anon_sym__Noreturn] = ACTIONS(5098), + [anon_sym_noreturn] = ACTIONS(5098), + [anon_sym__Nonnull] = ACTIONS(5098), + [anon_sym_mutable] = ACTIONS(5098), + [anon_sym_constinit] = ACTIONS(5098), + [anon_sym_consteval] = ACTIONS(5098), + [anon_sym_alignas] = ACTIONS(5102), + [anon_sym__Alignas] = ACTIONS(5102), + [sym_primitive_type] = ACTIONS(5128), + [anon_sym_QMARK] = ACTIONS(5109), + [anon_sym_STAR_EQ] = ACTIONS(5109), + [anon_sym_SLASH_EQ] = ACTIONS(5109), + [anon_sym_PERCENT_EQ] = ACTIONS(5109), + [anon_sym_PLUS_EQ] = ACTIONS(5109), + [anon_sym_DASH_EQ] = ACTIONS(5109), + [anon_sym_LT_LT_EQ] = ACTIONS(5109), + [anon_sym_GT_GT_EQ] = ACTIONS(5109), + [anon_sym_AMP_EQ] = ACTIONS(5109), + [anon_sym_CARET_EQ] = ACTIONS(5109), + [anon_sym_PIPE_EQ] = ACTIONS(5109), + [anon_sym_and_eq] = ACTIONS(5111), + [anon_sym_or_eq] = ACTIONS(5111), + [anon_sym_xor_eq] = ACTIONS(5111), + [anon_sym_LT_EQ_GT] = ACTIONS(5109), + [anon_sym_or] = ACTIONS(5111), + [anon_sym_and] = ACTIONS(5111), + [anon_sym_bitor] = ACTIONS(5111), + [anon_sym_xor] = ACTIONS(5111), + [anon_sym_bitand] = ACTIONS(5111), + [anon_sym_not_eq] = ACTIONS(5111), + [anon_sym_DASH_DASH] = ACTIONS(5109), + [anon_sym_PLUS_PLUS] = ACTIONS(5109), + [anon_sym_DOT] = ACTIONS(5111), + [anon_sym_DOT_STAR] = ACTIONS(5109), + [anon_sym_DASH_GT] = ACTIONS(5109), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5111), + [anon_sym_decltype] = ACTIONS(5111), }, - [1597] = { - [sym_identifier] = ACTIONS(4951), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4953), - [anon_sym_COMMA] = ACTIONS(4953), - [anon_sym_RPAREN] = ACTIONS(4953), - [aux_sym_preproc_if_token2] = ACTIONS(4953), - [aux_sym_preproc_else_token1] = ACTIONS(4953), - [aux_sym_preproc_elif_token1] = ACTIONS(4951), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4953), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4953), - [anon_sym_LPAREN2] = ACTIONS(4953), - [anon_sym_DASH] = ACTIONS(4951), - [anon_sym_PLUS] = ACTIONS(4951), - [anon_sym_STAR] = ACTIONS(4951), - [anon_sym_SLASH] = ACTIONS(4951), - [anon_sym_PERCENT] = ACTIONS(4951), - [anon_sym_PIPE_PIPE] = ACTIONS(4953), - [anon_sym_AMP_AMP] = ACTIONS(4953), - [anon_sym_PIPE] = ACTIONS(4951), - [anon_sym_CARET] = ACTIONS(4951), - [anon_sym_AMP] = ACTIONS(4951), - [anon_sym_EQ_EQ] = ACTIONS(4953), - [anon_sym_BANG_EQ] = ACTIONS(4953), - [anon_sym_GT] = ACTIONS(4951), - [anon_sym_GT_EQ] = ACTIONS(4953), - [anon_sym_LT_EQ] = ACTIONS(4951), - [anon_sym_LT] = ACTIONS(4951), - [anon_sym_LT_LT] = ACTIONS(4951), - [anon_sym_GT_GT] = ACTIONS(4951), - [anon_sym_SEMI] = ACTIONS(4953), - [anon_sym___extension__] = ACTIONS(4951), - [anon_sym___attribute__] = ACTIONS(4951), - [anon_sym___attribute] = ACTIONS(4951), - [anon_sym_COLON] = ACTIONS(4951), - [anon_sym_COLON_COLON] = ACTIONS(4953), - [anon_sym_LBRACE] = ACTIONS(4953), - [anon_sym_RBRACE] = ACTIONS(4953), - [anon_sym_LBRACK] = ACTIONS(4953), - [anon_sym_RBRACK] = ACTIONS(4953), - [anon_sym_EQ] = ACTIONS(4951), - [anon_sym_const] = ACTIONS(4951), - [anon_sym_constexpr] = ACTIONS(4951), - [anon_sym_volatile] = ACTIONS(4951), - [anon_sym_restrict] = ACTIONS(4951), - [anon_sym___restrict__] = ACTIONS(4951), - [anon_sym__Atomic] = ACTIONS(4951), - [anon_sym__Noreturn] = ACTIONS(4951), - [anon_sym_noreturn] = ACTIONS(4951), - [anon_sym__Nonnull] = ACTIONS(4951), - [anon_sym_mutable] = ACTIONS(4951), - [anon_sym_constinit] = ACTIONS(4951), - [anon_sym_consteval] = ACTIONS(4951), - [anon_sym_alignas] = ACTIONS(4951), - [anon_sym__Alignas] = ACTIONS(4951), - [anon_sym_QMARK] = ACTIONS(4953), - [anon_sym_STAR_EQ] = ACTIONS(4953), - [anon_sym_SLASH_EQ] = ACTIONS(4953), - [anon_sym_PERCENT_EQ] = ACTIONS(4953), - [anon_sym_PLUS_EQ] = ACTIONS(4953), - [anon_sym_DASH_EQ] = ACTIONS(4953), - [anon_sym_LT_LT_EQ] = ACTIONS(4953), - [anon_sym_GT_GT_EQ] = ACTIONS(4953), - [anon_sym_AMP_EQ] = ACTIONS(4953), - [anon_sym_CARET_EQ] = ACTIONS(4953), - [anon_sym_PIPE_EQ] = ACTIONS(4953), - [anon_sym_and_eq] = ACTIONS(4951), - [anon_sym_or_eq] = ACTIONS(4951), - [anon_sym_xor_eq] = ACTIONS(4951), - [anon_sym_LT_EQ_GT] = ACTIONS(4953), - [anon_sym_or] = ACTIONS(4951), - [anon_sym_and] = ACTIONS(4951), - [anon_sym_bitor] = ACTIONS(4951), - [anon_sym_xor] = ACTIONS(4951), - [anon_sym_bitand] = ACTIONS(4951), - [anon_sym_not_eq] = ACTIONS(4951), - [anon_sym_DASH_DASH] = ACTIONS(4953), - [anon_sym_PLUS_PLUS] = ACTIONS(4953), - [anon_sym_DOT] = ACTIONS(4951), - [anon_sym_DOT_STAR] = ACTIONS(4953), - [anon_sym_DASH_GT] = ACTIONS(4953), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4951), - [anon_sym_decltype] = ACTIONS(4951), - [anon_sym_final] = ACTIONS(4951), - [anon_sym_override] = ACTIONS(4951), + [1616] = { + [sym_identifier] = ACTIONS(5014), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5016), + [anon_sym_COMMA] = ACTIONS(5016), + [anon_sym_RPAREN] = ACTIONS(5016), + [aux_sym_preproc_if_token2] = ACTIONS(5016), + [aux_sym_preproc_else_token1] = ACTIONS(5016), + [aux_sym_preproc_elif_token1] = ACTIONS(5014), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5016), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5016), + [anon_sym_LPAREN2] = ACTIONS(5016), + [anon_sym_DASH] = ACTIONS(5014), + [anon_sym_PLUS] = ACTIONS(5014), + [anon_sym_STAR] = ACTIONS(5014), + [anon_sym_SLASH] = ACTIONS(5014), + [anon_sym_PERCENT] = ACTIONS(5014), + [anon_sym_PIPE_PIPE] = ACTIONS(5016), + [anon_sym_AMP_AMP] = ACTIONS(5016), + [anon_sym_PIPE] = ACTIONS(5014), + [anon_sym_CARET] = ACTIONS(5014), + [anon_sym_AMP] = ACTIONS(5014), + [anon_sym_EQ_EQ] = ACTIONS(5016), + [anon_sym_BANG_EQ] = ACTIONS(5016), + [anon_sym_GT] = ACTIONS(5014), + [anon_sym_GT_EQ] = ACTIONS(5016), + [anon_sym_LT_EQ] = ACTIONS(5014), + [anon_sym_LT] = ACTIONS(5014), + [anon_sym_LT_LT] = ACTIONS(5014), + [anon_sym_GT_GT] = ACTIONS(5014), + [anon_sym_SEMI] = ACTIONS(5016), + [anon_sym___extension__] = ACTIONS(5014), + [anon_sym___attribute__] = ACTIONS(5014), + [anon_sym___attribute] = ACTIONS(5014), + [anon_sym_COLON] = ACTIONS(5014), + [anon_sym_COLON_COLON] = ACTIONS(5016), + [anon_sym_LBRACE] = ACTIONS(5016), + [anon_sym_RBRACE] = ACTIONS(5016), + [anon_sym_LBRACK] = ACTIONS(5016), + [anon_sym_RBRACK] = ACTIONS(5016), + [anon_sym_EQ] = ACTIONS(5014), + [anon_sym_const] = ACTIONS(5014), + [anon_sym_constexpr] = ACTIONS(5014), + [anon_sym_volatile] = ACTIONS(5014), + [anon_sym_restrict] = ACTIONS(5014), + [anon_sym___restrict__] = ACTIONS(5014), + [anon_sym__Atomic] = ACTIONS(5014), + [anon_sym__Noreturn] = ACTIONS(5014), + [anon_sym_noreturn] = ACTIONS(5014), + [anon_sym__Nonnull] = ACTIONS(5014), + [anon_sym_mutable] = ACTIONS(5014), + [anon_sym_constinit] = ACTIONS(5014), + [anon_sym_consteval] = ACTIONS(5014), + [anon_sym_alignas] = ACTIONS(5014), + [anon_sym__Alignas] = ACTIONS(5014), + [anon_sym_QMARK] = ACTIONS(5016), + [anon_sym_STAR_EQ] = ACTIONS(5016), + [anon_sym_SLASH_EQ] = ACTIONS(5016), + [anon_sym_PERCENT_EQ] = ACTIONS(5016), + [anon_sym_PLUS_EQ] = ACTIONS(5016), + [anon_sym_DASH_EQ] = ACTIONS(5016), + [anon_sym_LT_LT_EQ] = ACTIONS(5016), + [anon_sym_GT_GT_EQ] = ACTIONS(5016), + [anon_sym_AMP_EQ] = ACTIONS(5016), + [anon_sym_CARET_EQ] = ACTIONS(5016), + [anon_sym_PIPE_EQ] = ACTIONS(5016), + [anon_sym_and_eq] = ACTIONS(5014), + [anon_sym_or_eq] = ACTIONS(5014), + [anon_sym_xor_eq] = ACTIONS(5014), + [anon_sym_LT_EQ_GT] = ACTIONS(5016), + [anon_sym_or] = ACTIONS(5014), + [anon_sym_and] = ACTIONS(5014), + [anon_sym_bitor] = ACTIONS(5014), + [anon_sym_xor] = ACTIONS(5014), + [anon_sym_bitand] = ACTIONS(5014), + [anon_sym_not_eq] = ACTIONS(5014), + [anon_sym_DASH_DASH] = ACTIONS(5016), + [anon_sym_PLUS_PLUS] = ACTIONS(5016), + [anon_sym_DOT] = ACTIONS(5014), + [anon_sym_DOT_STAR] = ACTIONS(5016), + [anon_sym_DASH_GT] = ACTIONS(5016), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5014), + [anon_sym_decltype] = ACTIONS(5014), + [anon_sym_final] = ACTIONS(5014), + [anon_sym_override] = ACTIONS(5014), }, - [1598] = { + [1617] = { + [sym_identifier] = ACTIONS(4998), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5000), + [anon_sym_COMMA] = ACTIONS(5000), + [anon_sym_RPAREN] = ACTIONS(5000), + [aux_sym_preproc_if_token2] = ACTIONS(5000), + [aux_sym_preproc_else_token1] = ACTIONS(5000), + [aux_sym_preproc_elif_token1] = ACTIONS(4998), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5000), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5000), + [anon_sym_LPAREN2] = ACTIONS(5000), + [anon_sym_DASH] = ACTIONS(4998), + [anon_sym_PLUS] = ACTIONS(4998), + [anon_sym_STAR] = ACTIONS(4998), + [anon_sym_SLASH] = ACTIONS(4998), + [anon_sym_PERCENT] = ACTIONS(4998), + [anon_sym_PIPE_PIPE] = ACTIONS(5000), + [anon_sym_AMP_AMP] = ACTIONS(5000), + [anon_sym_PIPE] = ACTIONS(4998), + [anon_sym_CARET] = ACTIONS(4998), + [anon_sym_AMP] = ACTIONS(4998), + [anon_sym_EQ_EQ] = ACTIONS(5000), + [anon_sym_BANG_EQ] = ACTIONS(5000), + [anon_sym_GT] = ACTIONS(4998), + [anon_sym_GT_EQ] = ACTIONS(5000), + [anon_sym_LT_EQ] = ACTIONS(4998), + [anon_sym_LT] = ACTIONS(4998), + [anon_sym_LT_LT] = ACTIONS(4998), + [anon_sym_GT_GT] = ACTIONS(4998), + [anon_sym_SEMI] = ACTIONS(5000), + [anon_sym___extension__] = ACTIONS(4998), + [anon_sym___attribute__] = ACTIONS(4998), + [anon_sym___attribute] = ACTIONS(4998), + [anon_sym_COLON] = ACTIONS(4998), + [anon_sym_COLON_COLON] = ACTIONS(5000), + [anon_sym_LBRACE] = ACTIONS(5000), + [anon_sym_RBRACE] = ACTIONS(5000), + [anon_sym_LBRACK] = ACTIONS(5000), + [anon_sym_RBRACK] = ACTIONS(5000), + [anon_sym_EQ] = ACTIONS(4998), + [anon_sym_const] = ACTIONS(4998), + [anon_sym_constexpr] = ACTIONS(4998), + [anon_sym_volatile] = ACTIONS(4998), + [anon_sym_restrict] = ACTIONS(4998), + [anon_sym___restrict__] = ACTIONS(4998), + [anon_sym__Atomic] = ACTIONS(4998), + [anon_sym__Noreturn] = ACTIONS(4998), + [anon_sym_noreturn] = ACTIONS(4998), + [anon_sym__Nonnull] = ACTIONS(4998), + [anon_sym_mutable] = ACTIONS(4998), + [anon_sym_constinit] = ACTIONS(4998), + [anon_sym_consteval] = ACTIONS(4998), + [anon_sym_alignas] = ACTIONS(4998), + [anon_sym__Alignas] = ACTIONS(4998), + [anon_sym_QMARK] = ACTIONS(5000), + [anon_sym_STAR_EQ] = ACTIONS(5000), + [anon_sym_SLASH_EQ] = ACTIONS(5000), + [anon_sym_PERCENT_EQ] = ACTIONS(5000), + [anon_sym_PLUS_EQ] = ACTIONS(5000), + [anon_sym_DASH_EQ] = ACTIONS(5000), + [anon_sym_LT_LT_EQ] = ACTIONS(5000), + [anon_sym_GT_GT_EQ] = ACTIONS(5000), + [anon_sym_AMP_EQ] = ACTIONS(5000), + [anon_sym_CARET_EQ] = ACTIONS(5000), + [anon_sym_PIPE_EQ] = ACTIONS(5000), + [anon_sym_and_eq] = ACTIONS(4998), + [anon_sym_or_eq] = ACTIONS(4998), + [anon_sym_xor_eq] = ACTIONS(4998), + [anon_sym_LT_EQ_GT] = ACTIONS(5000), + [anon_sym_or] = ACTIONS(4998), + [anon_sym_and] = ACTIONS(4998), + [anon_sym_bitor] = ACTIONS(4998), + [anon_sym_xor] = ACTIONS(4998), + [anon_sym_bitand] = ACTIONS(4998), + [anon_sym_not_eq] = ACTIONS(4998), + [anon_sym_DASH_DASH] = ACTIONS(5000), + [anon_sym_PLUS_PLUS] = ACTIONS(5000), + [anon_sym_DOT] = ACTIONS(4998), + [anon_sym_DOT_STAR] = ACTIONS(5000), + [anon_sym_DASH_GT] = ACTIONS(5000), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4998), + [anon_sym_decltype] = ACTIONS(4998), + [anon_sym_final] = ACTIONS(4998), + [anon_sym_override] = ACTIONS(4998), + }, + [1618] = { [sym_identifier] = ACTIONS(4980), [anon_sym_DOT_DOT_DOT] = ACTIONS(4982), [anon_sym_COMMA] = ACTIONS(4982), @@ -238924,218 +241958,573 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_final] = ACTIONS(4980), [anon_sym_override] = ACTIONS(4980), }, - [1599] = { - [sym_identifier] = ACTIONS(4959), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4961), - [anon_sym_COMMA] = ACTIONS(4961), - [anon_sym_RPAREN] = ACTIONS(4961), - [aux_sym_preproc_if_token2] = ACTIONS(4961), - [aux_sym_preproc_else_token1] = ACTIONS(4961), - [aux_sym_preproc_elif_token1] = ACTIONS(4959), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4961), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4961), - [anon_sym_LPAREN2] = ACTIONS(4961), - [anon_sym_DASH] = ACTIONS(4959), - [anon_sym_PLUS] = ACTIONS(4959), - [anon_sym_STAR] = ACTIONS(4959), - [anon_sym_SLASH] = ACTIONS(4959), - [anon_sym_PERCENT] = ACTIONS(4959), - [anon_sym_PIPE_PIPE] = ACTIONS(4961), - [anon_sym_AMP_AMP] = ACTIONS(4961), - [anon_sym_PIPE] = ACTIONS(4959), - [anon_sym_CARET] = ACTIONS(4959), - [anon_sym_AMP] = ACTIONS(4959), - [anon_sym_EQ_EQ] = ACTIONS(4961), - [anon_sym_BANG_EQ] = ACTIONS(4961), - [anon_sym_GT] = ACTIONS(4959), - [anon_sym_GT_EQ] = ACTIONS(4961), - [anon_sym_LT_EQ] = ACTIONS(4959), - [anon_sym_LT] = ACTIONS(4959), - [anon_sym_LT_LT] = ACTIONS(4959), - [anon_sym_GT_GT] = ACTIONS(4959), - [anon_sym_SEMI] = ACTIONS(4961), - [anon_sym___extension__] = ACTIONS(4959), - [anon_sym___attribute__] = ACTIONS(4959), - [anon_sym___attribute] = ACTIONS(4959), - [anon_sym_COLON] = ACTIONS(4959), - [anon_sym_COLON_COLON] = ACTIONS(4961), - [anon_sym_LBRACE] = ACTIONS(4961), - [anon_sym_RBRACE] = ACTIONS(4961), - [anon_sym_LBRACK] = ACTIONS(4961), - [anon_sym_RBRACK] = ACTIONS(4961), - [anon_sym_EQ] = ACTIONS(4959), - [anon_sym_const] = ACTIONS(4959), - [anon_sym_constexpr] = ACTIONS(4959), - [anon_sym_volatile] = ACTIONS(4959), - [anon_sym_restrict] = ACTIONS(4959), - [anon_sym___restrict__] = ACTIONS(4959), - [anon_sym__Atomic] = ACTIONS(4959), - [anon_sym__Noreturn] = ACTIONS(4959), - [anon_sym_noreturn] = ACTIONS(4959), - [anon_sym__Nonnull] = ACTIONS(4959), - [anon_sym_mutable] = ACTIONS(4959), - [anon_sym_constinit] = ACTIONS(4959), - [anon_sym_consteval] = ACTIONS(4959), - [anon_sym_alignas] = ACTIONS(4959), - [anon_sym__Alignas] = ACTIONS(4959), - [anon_sym_QMARK] = ACTIONS(4961), - [anon_sym_STAR_EQ] = ACTIONS(4961), - [anon_sym_SLASH_EQ] = ACTIONS(4961), - [anon_sym_PERCENT_EQ] = ACTIONS(4961), - [anon_sym_PLUS_EQ] = ACTIONS(4961), - [anon_sym_DASH_EQ] = ACTIONS(4961), - [anon_sym_LT_LT_EQ] = ACTIONS(4961), - [anon_sym_GT_GT_EQ] = ACTIONS(4961), - [anon_sym_AMP_EQ] = ACTIONS(4961), - [anon_sym_CARET_EQ] = ACTIONS(4961), - [anon_sym_PIPE_EQ] = ACTIONS(4961), - [anon_sym_and_eq] = ACTIONS(4959), - [anon_sym_or_eq] = ACTIONS(4959), - [anon_sym_xor_eq] = ACTIONS(4959), - [anon_sym_LT_EQ_GT] = ACTIONS(4961), - [anon_sym_or] = ACTIONS(4959), - [anon_sym_and] = ACTIONS(4959), - [anon_sym_bitor] = ACTIONS(4959), - [anon_sym_xor] = ACTIONS(4959), - [anon_sym_bitand] = ACTIONS(4959), - [anon_sym_not_eq] = ACTIONS(4959), - [anon_sym_DASH_DASH] = ACTIONS(4961), - [anon_sym_PLUS_PLUS] = ACTIONS(4961), - [anon_sym_DOT] = ACTIONS(4959), - [anon_sym_DOT_STAR] = ACTIONS(4961), - [anon_sym_DASH_GT] = ACTIONS(4961), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4959), - [anon_sym_decltype] = ACTIONS(4959), - [anon_sym_final] = ACTIONS(4959), - [anon_sym_override] = ACTIONS(4959), + [1619] = { + [sym_identifier] = ACTIONS(4976), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4978), + [anon_sym_COMMA] = ACTIONS(4978), + [anon_sym_RPAREN] = ACTIONS(4978), + [aux_sym_preproc_if_token2] = ACTIONS(4978), + [aux_sym_preproc_else_token1] = ACTIONS(4978), + [aux_sym_preproc_elif_token1] = ACTIONS(4976), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4978), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4978), + [anon_sym_LPAREN2] = ACTIONS(4978), + [anon_sym_DASH] = ACTIONS(4976), + [anon_sym_PLUS] = ACTIONS(4976), + [anon_sym_STAR] = ACTIONS(4976), + [anon_sym_SLASH] = ACTIONS(4976), + [anon_sym_PERCENT] = ACTIONS(4976), + [anon_sym_PIPE_PIPE] = ACTIONS(4978), + [anon_sym_AMP_AMP] = ACTIONS(4978), + [anon_sym_PIPE] = ACTIONS(4976), + [anon_sym_CARET] = ACTIONS(4976), + [anon_sym_AMP] = ACTIONS(4976), + [anon_sym_EQ_EQ] = ACTIONS(4978), + [anon_sym_BANG_EQ] = ACTIONS(4978), + [anon_sym_GT] = ACTIONS(4976), + [anon_sym_GT_EQ] = ACTIONS(4978), + [anon_sym_LT_EQ] = ACTIONS(4976), + [anon_sym_LT] = ACTIONS(4976), + [anon_sym_LT_LT] = ACTIONS(4976), + [anon_sym_GT_GT] = ACTIONS(4976), + [anon_sym_SEMI] = ACTIONS(4978), + [anon_sym___extension__] = ACTIONS(4976), + [anon_sym___attribute__] = ACTIONS(4976), + [anon_sym___attribute] = ACTIONS(4976), + [anon_sym_COLON] = ACTIONS(4976), + [anon_sym_COLON_COLON] = ACTIONS(4978), + [anon_sym_LBRACE] = ACTIONS(4978), + [anon_sym_RBRACE] = ACTIONS(4978), + [anon_sym_LBRACK] = ACTIONS(4978), + [anon_sym_RBRACK] = ACTIONS(4978), + [anon_sym_EQ] = ACTIONS(4976), + [anon_sym_const] = ACTIONS(4976), + [anon_sym_constexpr] = ACTIONS(4976), + [anon_sym_volatile] = ACTIONS(4976), + [anon_sym_restrict] = ACTIONS(4976), + [anon_sym___restrict__] = ACTIONS(4976), + [anon_sym__Atomic] = ACTIONS(4976), + [anon_sym__Noreturn] = ACTIONS(4976), + [anon_sym_noreturn] = ACTIONS(4976), + [anon_sym__Nonnull] = ACTIONS(4976), + [anon_sym_mutable] = ACTIONS(4976), + [anon_sym_constinit] = ACTIONS(4976), + [anon_sym_consteval] = ACTIONS(4976), + [anon_sym_alignas] = ACTIONS(4976), + [anon_sym__Alignas] = ACTIONS(4976), + [anon_sym_QMARK] = ACTIONS(4978), + [anon_sym_STAR_EQ] = ACTIONS(4978), + [anon_sym_SLASH_EQ] = ACTIONS(4978), + [anon_sym_PERCENT_EQ] = ACTIONS(4978), + [anon_sym_PLUS_EQ] = ACTIONS(4978), + [anon_sym_DASH_EQ] = ACTIONS(4978), + [anon_sym_LT_LT_EQ] = ACTIONS(4978), + [anon_sym_GT_GT_EQ] = ACTIONS(4978), + [anon_sym_AMP_EQ] = ACTIONS(4978), + [anon_sym_CARET_EQ] = ACTIONS(4978), + [anon_sym_PIPE_EQ] = ACTIONS(4978), + [anon_sym_and_eq] = ACTIONS(4976), + [anon_sym_or_eq] = ACTIONS(4976), + [anon_sym_xor_eq] = ACTIONS(4976), + [anon_sym_LT_EQ_GT] = ACTIONS(4978), + [anon_sym_or] = ACTIONS(4976), + [anon_sym_and] = ACTIONS(4976), + [anon_sym_bitor] = ACTIONS(4976), + [anon_sym_xor] = ACTIONS(4976), + [anon_sym_bitand] = ACTIONS(4976), + [anon_sym_not_eq] = ACTIONS(4976), + [anon_sym_DASH_DASH] = ACTIONS(4978), + [anon_sym_PLUS_PLUS] = ACTIONS(4978), + [anon_sym_DOT] = ACTIONS(4976), + [anon_sym_DOT_STAR] = ACTIONS(4978), + [anon_sym_DASH_GT] = ACTIONS(4978), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4976), + [anon_sym_decltype] = ACTIONS(4976), + [anon_sym_final] = ACTIONS(4976), + [anon_sym_override] = ACTIONS(4976), }, - [1600] = { - [sym_identifier] = ACTIONS(4988), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4990), - [anon_sym_COMMA] = ACTIONS(4990), - [anon_sym_RPAREN] = ACTIONS(4990), - [aux_sym_preproc_if_token2] = ACTIONS(4990), - [aux_sym_preproc_else_token1] = ACTIONS(4990), - [aux_sym_preproc_elif_token1] = ACTIONS(4988), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4990), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4990), - [anon_sym_LPAREN2] = ACTIONS(4990), - [anon_sym_DASH] = ACTIONS(4988), - [anon_sym_PLUS] = ACTIONS(4988), + [1620] = { + [sym_identifier] = ACTIONS(5010), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5012), + [anon_sym_COMMA] = ACTIONS(5012), + [anon_sym_RPAREN] = ACTIONS(5012), + [aux_sym_preproc_if_token2] = ACTIONS(5012), + [aux_sym_preproc_else_token1] = ACTIONS(5012), + [aux_sym_preproc_elif_token1] = ACTIONS(5010), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5012), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5012), + [anon_sym_LPAREN2] = ACTIONS(5012), + [anon_sym_DASH] = ACTIONS(5010), + [anon_sym_PLUS] = ACTIONS(5010), + [anon_sym_STAR] = ACTIONS(5010), + [anon_sym_SLASH] = ACTIONS(5010), + [anon_sym_PERCENT] = ACTIONS(5010), + [anon_sym_PIPE_PIPE] = ACTIONS(5012), + [anon_sym_AMP_AMP] = ACTIONS(5012), + [anon_sym_PIPE] = ACTIONS(5010), + [anon_sym_CARET] = ACTIONS(5010), + [anon_sym_AMP] = ACTIONS(5010), + [anon_sym_EQ_EQ] = ACTIONS(5012), + [anon_sym_BANG_EQ] = ACTIONS(5012), + [anon_sym_GT] = ACTIONS(5010), + [anon_sym_GT_EQ] = ACTIONS(5012), + [anon_sym_LT_EQ] = ACTIONS(5010), + [anon_sym_LT] = ACTIONS(5010), + [anon_sym_LT_LT] = ACTIONS(5010), + [anon_sym_GT_GT] = ACTIONS(5010), + [anon_sym_SEMI] = ACTIONS(5012), + [anon_sym___extension__] = ACTIONS(5010), + [anon_sym___attribute__] = ACTIONS(5010), + [anon_sym___attribute] = ACTIONS(5010), + [anon_sym_COLON] = ACTIONS(5010), + [anon_sym_COLON_COLON] = ACTIONS(5012), + [anon_sym_LBRACE] = ACTIONS(5012), + [anon_sym_RBRACE] = ACTIONS(5012), + [anon_sym_LBRACK] = ACTIONS(5012), + [anon_sym_RBRACK] = ACTIONS(5012), + [anon_sym_EQ] = ACTIONS(5010), + [anon_sym_const] = ACTIONS(5010), + [anon_sym_constexpr] = ACTIONS(5010), + [anon_sym_volatile] = ACTIONS(5010), + [anon_sym_restrict] = ACTIONS(5010), + [anon_sym___restrict__] = ACTIONS(5010), + [anon_sym__Atomic] = ACTIONS(5010), + [anon_sym__Noreturn] = ACTIONS(5010), + [anon_sym_noreturn] = ACTIONS(5010), + [anon_sym__Nonnull] = ACTIONS(5010), + [anon_sym_mutable] = ACTIONS(5010), + [anon_sym_constinit] = ACTIONS(5010), + [anon_sym_consteval] = ACTIONS(5010), + [anon_sym_alignas] = ACTIONS(5010), + [anon_sym__Alignas] = ACTIONS(5010), + [anon_sym_QMARK] = ACTIONS(5012), + [anon_sym_STAR_EQ] = ACTIONS(5012), + [anon_sym_SLASH_EQ] = ACTIONS(5012), + [anon_sym_PERCENT_EQ] = ACTIONS(5012), + [anon_sym_PLUS_EQ] = ACTIONS(5012), + [anon_sym_DASH_EQ] = ACTIONS(5012), + [anon_sym_LT_LT_EQ] = ACTIONS(5012), + [anon_sym_GT_GT_EQ] = ACTIONS(5012), + [anon_sym_AMP_EQ] = ACTIONS(5012), + [anon_sym_CARET_EQ] = ACTIONS(5012), + [anon_sym_PIPE_EQ] = ACTIONS(5012), + [anon_sym_and_eq] = ACTIONS(5010), + [anon_sym_or_eq] = ACTIONS(5010), + [anon_sym_xor_eq] = ACTIONS(5010), + [anon_sym_LT_EQ_GT] = ACTIONS(5012), + [anon_sym_or] = ACTIONS(5010), + [anon_sym_and] = ACTIONS(5010), + [anon_sym_bitor] = ACTIONS(5010), + [anon_sym_xor] = ACTIONS(5010), + [anon_sym_bitand] = ACTIONS(5010), + [anon_sym_not_eq] = ACTIONS(5010), + [anon_sym_DASH_DASH] = ACTIONS(5012), + [anon_sym_PLUS_PLUS] = ACTIONS(5012), + [anon_sym_DOT] = ACTIONS(5010), + [anon_sym_DOT_STAR] = ACTIONS(5012), + [anon_sym_DASH_GT] = ACTIONS(5012), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5010), + [anon_sym_decltype] = ACTIONS(5010), + [anon_sym_final] = ACTIONS(5010), + [anon_sym_override] = ACTIONS(5010), + }, + [1621] = { + [sym_identifier] = ACTIONS(5006), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5008), + [anon_sym_COMMA] = ACTIONS(5008), + [anon_sym_RPAREN] = ACTIONS(5008), + [aux_sym_preproc_if_token2] = ACTIONS(5008), + [aux_sym_preproc_else_token1] = ACTIONS(5008), + [aux_sym_preproc_elif_token1] = ACTIONS(5006), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5008), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5008), + [anon_sym_LPAREN2] = ACTIONS(5008), + [anon_sym_DASH] = ACTIONS(5006), + [anon_sym_PLUS] = ACTIONS(5006), + [anon_sym_STAR] = ACTIONS(5006), + [anon_sym_SLASH] = ACTIONS(5006), + [anon_sym_PERCENT] = ACTIONS(5006), + [anon_sym_PIPE_PIPE] = ACTIONS(5008), + [anon_sym_AMP_AMP] = ACTIONS(5008), + [anon_sym_PIPE] = ACTIONS(5006), + [anon_sym_CARET] = ACTIONS(5006), + [anon_sym_AMP] = ACTIONS(5006), + [anon_sym_EQ_EQ] = ACTIONS(5008), + [anon_sym_BANG_EQ] = ACTIONS(5008), + [anon_sym_GT] = ACTIONS(5006), + [anon_sym_GT_EQ] = ACTIONS(5008), + [anon_sym_LT_EQ] = ACTIONS(5006), + [anon_sym_LT] = ACTIONS(5006), + [anon_sym_LT_LT] = ACTIONS(5006), + [anon_sym_GT_GT] = ACTIONS(5006), + [anon_sym_SEMI] = ACTIONS(5008), + [anon_sym___extension__] = ACTIONS(5006), + [anon_sym___attribute__] = ACTIONS(5006), + [anon_sym___attribute] = ACTIONS(5006), + [anon_sym_COLON] = ACTIONS(5006), + [anon_sym_COLON_COLON] = ACTIONS(5008), + [anon_sym_LBRACE] = ACTIONS(5008), + [anon_sym_RBRACE] = ACTIONS(5008), + [anon_sym_LBRACK] = ACTIONS(5008), + [anon_sym_RBRACK] = ACTIONS(5008), + [anon_sym_EQ] = ACTIONS(5006), + [anon_sym_const] = ACTIONS(5006), + [anon_sym_constexpr] = ACTIONS(5006), + [anon_sym_volatile] = ACTIONS(5006), + [anon_sym_restrict] = ACTIONS(5006), + [anon_sym___restrict__] = ACTIONS(5006), + [anon_sym__Atomic] = ACTIONS(5006), + [anon_sym__Noreturn] = ACTIONS(5006), + [anon_sym_noreturn] = ACTIONS(5006), + [anon_sym__Nonnull] = ACTIONS(5006), + [anon_sym_mutable] = ACTIONS(5006), + [anon_sym_constinit] = ACTIONS(5006), + [anon_sym_consteval] = ACTIONS(5006), + [anon_sym_alignas] = ACTIONS(5006), + [anon_sym__Alignas] = ACTIONS(5006), + [anon_sym_QMARK] = ACTIONS(5008), + [anon_sym_STAR_EQ] = ACTIONS(5008), + [anon_sym_SLASH_EQ] = ACTIONS(5008), + [anon_sym_PERCENT_EQ] = ACTIONS(5008), + [anon_sym_PLUS_EQ] = ACTIONS(5008), + [anon_sym_DASH_EQ] = ACTIONS(5008), + [anon_sym_LT_LT_EQ] = ACTIONS(5008), + [anon_sym_GT_GT_EQ] = ACTIONS(5008), + [anon_sym_AMP_EQ] = ACTIONS(5008), + [anon_sym_CARET_EQ] = ACTIONS(5008), + [anon_sym_PIPE_EQ] = ACTIONS(5008), + [anon_sym_and_eq] = ACTIONS(5006), + [anon_sym_or_eq] = ACTIONS(5006), + [anon_sym_xor_eq] = ACTIONS(5006), + [anon_sym_LT_EQ_GT] = ACTIONS(5008), + [anon_sym_or] = ACTIONS(5006), + [anon_sym_and] = ACTIONS(5006), + [anon_sym_bitor] = ACTIONS(5006), + [anon_sym_xor] = ACTIONS(5006), + [anon_sym_bitand] = ACTIONS(5006), + [anon_sym_not_eq] = ACTIONS(5006), + [anon_sym_DASH_DASH] = ACTIONS(5008), + [anon_sym_PLUS_PLUS] = ACTIONS(5008), + [anon_sym_DOT] = ACTIONS(5006), + [anon_sym_DOT_STAR] = ACTIONS(5008), + [anon_sym_DASH_GT] = ACTIONS(5008), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5006), + [anon_sym_decltype] = ACTIONS(5006), + [anon_sym_final] = ACTIONS(5006), + [anon_sym_override] = ACTIONS(5006), + }, + [1622] = { + [sym_identifier] = ACTIONS(5002), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5004), + [anon_sym_COMMA] = ACTIONS(5004), + [anon_sym_RPAREN] = ACTIONS(5004), + [aux_sym_preproc_if_token2] = ACTIONS(5004), + [aux_sym_preproc_else_token1] = ACTIONS(5004), + [aux_sym_preproc_elif_token1] = ACTIONS(5002), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5004), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5004), + [anon_sym_LPAREN2] = ACTIONS(5004), + [anon_sym_DASH] = ACTIONS(5002), + [anon_sym_PLUS] = ACTIONS(5002), + [anon_sym_STAR] = ACTIONS(5002), + [anon_sym_SLASH] = ACTIONS(5002), + [anon_sym_PERCENT] = ACTIONS(5002), + [anon_sym_PIPE_PIPE] = ACTIONS(5004), + [anon_sym_AMP_AMP] = ACTIONS(5004), + [anon_sym_PIPE] = ACTIONS(5002), + [anon_sym_CARET] = ACTIONS(5002), + [anon_sym_AMP] = ACTIONS(5002), + [anon_sym_EQ_EQ] = ACTIONS(5004), + [anon_sym_BANG_EQ] = ACTIONS(5004), + [anon_sym_GT] = ACTIONS(5002), + [anon_sym_GT_EQ] = ACTIONS(5004), + [anon_sym_LT_EQ] = ACTIONS(5002), + [anon_sym_LT] = ACTIONS(5002), + [anon_sym_LT_LT] = ACTIONS(5002), + [anon_sym_GT_GT] = ACTIONS(5002), + [anon_sym_SEMI] = ACTIONS(5004), + [anon_sym___extension__] = ACTIONS(5002), + [anon_sym___attribute__] = ACTIONS(5002), + [anon_sym___attribute] = ACTIONS(5002), + [anon_sym_COLON] = ACTIONS(5002), + [anon_sym_COLON_COLON] = ACTIONS(5004), + [anon_sym_LBRACE] = ACTIONS(5004), + [anon_sym_RBRACE] = ACTIONS(5004), + [anon_sym_LBRACK] = ACTIONS(5004), + [anon_sym_RBRACK] = ACTIONS(5004), + [anon_sym_EQ] = ACTIONS(5002), + [anon_sym_const] = ACTIONS(5002), + [anon_sym_constexpr] = ACTIONS(5002), + [anon_sym_volatile] = ACTIONS(5002), + [anon_sym_restrict] = ACTIONS(5002), + [anon_sym___restrict__] = ACTIONS(5002), + [anon_sym__Atomic] = ACTIONS(5002), + [anon_sym__Noreturn] = ACTIONS(5002), + [anon_sym_noreturn] = ACTIONS(5002), + [anon_sym__Nonnull] = ACTIONS(5002), + [anon_sym_mutable] = ACTIONS(5002), + [anon_sym_constinit] = ACTIONS(5002), + [anon_sym_consteval] = ACTIONS(5002), + [anon_sym_alignas] = ACTIONS(5002), + [anon_sym__Alignas] = ACTIONS(5002), + [anon_sym_QMARK] = ACTIONS(5004), + [anon_sym_STAR_EQ] = ACTIONS(5004), + [anon_sym_SLASH_EQ] = ACTIONS(5004), + [anon_sym_PERCENT_EQ] = ACTIONS(5004), + [anon_sym_PLUS_EQ] = ACTIONS(5004), + [anon_sym_DASH_EQ] = ACTIONS(5004), + [anon_sym_LT_LT_EQ] = ACTIONS(5004), + [anon_sym_GT_GT_EQ] = ACTIONS(5004), + [anon_sym_AMP_EQ] = ACTIONS(5004), + [anon_sym_CARET_EQ] = ACTIONS(5004), + [anon_sym_PIPE_EQ] = ACTIONS(5004), + [anon_sym_and_eq] = ACTIONS(5002), + [anon_sym_or_eq] = ACTIONS(5002), + [anon_sym_xor_eq] = ACTIONS(5002), + [anon_sym_LT_EQ_GT] = ACTIONS(5004), + [anon_sym_or] = ACTIONS(5002), + [anon_sym_and] = ACTIONS(5002), + [anon_sym_bitor] = ACTIONS(5002), + [anon_sym_xor] = ACTIONS(5002), + [anon_sym_bitand] = ACTIONS(5002), + [anon_sym_not_eq] = ACTIONS(5002), + [anon_sym_DASH_DASH] = ACTIONS(5004), + [anon_sym_PLUS_PLUS] = ACTIONS(5004), + [anon_sym_DOT] = ACTIONS(5002), + [anon_sym_DOT_STAR] = ACTIONS(5004), + [anon_sym_DASH_GT] = ACTIONS(5004), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5002), + [anon_sym_decltype] = ACTIONS(5002), + [anon_sym_final] = ACTIONS(5002), + [anon_sym_override] = ACTIONS(5002), + }, + [1623] = { + [sym_identifier] = ACTIONS(4984), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4991), + [anon_sym_COMMA] = ACTIONS(4991), + [anon_sym_RPAREN] = ACTIONS(4991), + [anon_sym_LPAREN2] = ACTIONS(4991), + [anon_sym_TILDE] = ACTIONS(4991), + [anon_sym_STAR] = ACTIONS(4991), + [anon_sym_PIPE_PIPE] = ACTIONS(4991), + [anon_sym_AMP_AMP] = ACTIONS(4991), + [anon_sym_AMP] = ACTIONS(4984), + [anon_sym_SEMI] = ACTIONS(4991), + [anon_sym___extension__] = ACTIONS(4984), + [anon_sym_virtual] = ACTIONS(4984), + [anon_sym_extern] = ACTIONS(4984), + [anon_sym___attribute__] = ACTIONS(4984), + [anon_sym___attribute] = ACTIONS(4984), + [anon_sym_using] = ACTIONS(4984), + [anon_sym_COLON] = ACTIONS(4984), + [anon_sym_COLON_COLON] = ACTIONS(4991), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4991), + [anon_sym___declspec] = ACTIONS(4984), + [anon_sym___based] = ACTIONS(4984), + [anon_sym___cdecl] = ACTIONS(4984), + [anon_sym___clrcall] = ACTIONS(4984), + [anon_sym___stdcall] = ACTIONS(4984), + [anon_sym___fastcall] = ACTIONS(4984), + [anon_sym___thiscall] = ACTIONS(4984), + [anon_sym___vectorcall] = ACTIONS(4984), + [anon_sym_LBRACE] = ACTIONS(4991), + [anon_sym_signed] = ACTIONS(4984), + [anon_sym_unsigned] = ACTIONS(4984), + [anon_sym_long] = ACTIONS(4984), + [anon_sym_short] = ACTIONS(4984), + [anon_sym_LBRACK] = ACTIONS(4984), + [anon_sym_static] = ACTIONS(4984), + [anon_sym_EQ] = ACTIONS(4991), + [anon_sym_register] = ACTIONS(4984), + [anon_sym_inline] = ACTIONS(4984), + [anon_sym___inline] = ACTIONS(4984), + [anon_sym___inline__] = ACTIONS(4984), + [anon_sym___forceinline] = ACTIONS(4984), + [anon_sym_thread_local] = ACTIONS(4984), + [anon_sym___thread] = ACTIONS(4984), + [anon_sym_const] = ACTIONS(4984), + [anon_sym_constexpr] = ACTIONS(4984), + [anon_sym_volatile] = ACTIONS(4984), + [anon_sym_restrict] = ACTIONS(4984), + [anon_sym___restrict__] = ACTIONS(4984), + [anon_sym__Atomic] = ACTIONS(4984), + [anon_sym__Noreturn] = ACTIONS(4984), + [anon_sym_noreturn] = ACTIONS(4984), + [anon_sym__Nonnull] = ACTIONS(4984), + [anon_sym_mutable] = ACTIONS(4984), + [anon_sym_constinit] = ACTIONS(4984), + [anon_sym_consteval] = ACTIONS(4984), + [anon_sym_alignas] = ACTIONS(4984), + [anon_sym__Alignas] = ACTIONS(4984), + [sym_primitive_type] = ACTIONS(4984), + [anon_sym_enum] = ACTIONS(4984), + [anon_sym_class] = ACTIONS(4984), + [anon_sym_struct] = ACTIONS(4984), + [anon_sym_union] = ACTIONS(4984), + [anon_sym_or] = ACTIONS(4984), + [anon_sym_and] = ACTIONS(4984), + [anon_sym_asm] = ACTIONS(4984), + [anon_sym___asm__] = ACTIONS(4984), + [anon_sym___asm] = ACTIONS(4984), + [anon_sym_DASH_GT] = ACTIONS(4991), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4984), + [anon_sym_decltype] = ACTIONS(4984), + [anon_sym_final] = ACTIONS(4984), + [anon_sym_override] = ACTIONS(4984), + [anon_sym_explicit] = ACTIONS(4984), + [anon_sym_typename] = ACTIONS(4984), + [anon_sym_template] = ACTIONS(4984), + [anon_sym_GT2] = ACTIONS(4991), + [anon_sym_operator] = ACTIONS(4984), + [anon_sym_try] = ACTIONS(4984), + [anon_sym_friend] = ACTIONS(4984), + [anon_sym_noexcept] = ACTIONS(4984), + [anon_sym_throw] = ACTIONS(4984), + [anon_sym_concept] = ACTIONS(4984), + [anon_sym_requires] = ACTIONS(4984), + }, + [1624] = { + [sym_identifier] = ACTIONS(4984), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4986), + [anon_sym_COMMA] = ACTIONS(4986), + [anon_sym_LPAREN2] = ACTIONS(4988), + [anon_sym_TILDE] = ACTIONS(4991), + [anon_sym_DASH] = ACTIONS(4993), + [anon_sym_PLUS] = ACTIONS(4993), [anon_sym_STAR] = ACTIONS(4988), - [anon_sym_SLASH] = ACTIONS(4988), - [anon_sym_PERCENT] = ACTIONS(4988), - [anon_sym_PIPE_PIPE] = ACTIONS(4990), - [anon_sym_AMP_AMP] = ACTIONS(4990), - [anon_sym_PIPE] = ACTIONS(4988), - [anon_sym_CARET] = ACTIONS(4988), - [anon_sym_AMP] = ACTIONS(4988), - [anon_sym_EQ_EQ] = ACTIONS(4990), - [anon_sym_BANG_EQ] = ACTIONS(4990), - [anon_sym_GT] = ACTIONS(4988), - [anon_sym_GT_EQ] = ACTIONS(4990), - [anon_sym_LT_EQ] = ACTIONS(4988), - [anon_sym_LT] = ACTIONS(4988), - [anon_sym_LT_LT] = ACTIONS(4988), - [anon_sym_GT_GT] = ACTIONS(4988), - [anon_sym_SEMI] = ACTIONS(4990), - [anon_sym___extension__] = ACTIONS(4988), - [anon_sym___attribute__] = ACTIONS(4988), - [anon_sym___attribute] = ACTIONS(4988), - [anon_sym_COLON] = ACTIONS(4988), - [anon_sym_COLON_COLON] = ACTIONS(4990), - [anon_sym_LBRACE] = ACTIONS(4990), - [anon_sym_RBRACE] = ACTIONS(4990), - [anon_sym_LBRACK] = ACTIONS(4990), - [anon_sym_RBRACK] = ACTIONS(4990), - [anon_sym_EQ] = ACTIONS(4988), - [anon_sym_const] = ACTIONS(4988), - [anon_sym_constexpr] = ACTIONS(4988), - [anon_sym_volatile] = ACTIONS(4988), - [anon_sym_restrict] = ACTIONS(4988), - [anon_sym___restrict__] = ACTIONS(4988), - [anon_sym__Atomic] = ACTIONS(4988), - [anon_sym__Noreturn] = ACTIONS(4988), - [anon_sym_noreturn] = ACTIONS(4988), - [anon_sym__Nonnull] = ACTIONS(4988), - [anon_sym_mutable] = ACTIONS(4988), - [anon_sym_constinit] = ACTIONS(4988), - [anon_sym_consteval] = ACTIONS(4988), - [anon_sym_alignas] = ACTIONS(4988), - [anon_sym__Alignas] = ACTIONS(4988), - [anon_sym_QMARK] = ACTIONS(4990), - [anon_sym_STAR_EQ] = ACTIONS(4990), - [anon_sym_SLASH_EQ] = ACTIONS(4990), - [anon_sym_PERCENT_EQ] = ACTIONS(4990), - [anon_sym_PLUS_EQ] = ACTIONS(4990), - [anon_sym_DASH_EQ] = ACTIONS(4990), - [anon_sym_LT_LT_EQ] = ACTIONS(4990), - [anon_sym_GT_GT_EQ] = ACTIONS(4990), - [anon_sym_AMP_EQ] = ACTIONS(4990), - [anon_sym_CARET_EQ] = ACTIONS(4990), - [anon_sym_PIPE_EQ] = ACTIONS(4990), - [anon_sym_and_eq] = ACTIONS(4988), - [anon_sym_or_eq] = ACTIONS(4988), - [anon_sym_xor_eq] = ACTIONS(4988), - [anon_sym_LT_EQ_GT] = ACTIONS(4990), - [anon_sym_or] = ACTIONS(4988), - [anon_sym_and] = ACTIONS(4988), - [anon_sym_bitor] = ACTIONS(4988), - [anon_sym_xor] = ACTIONS(4988), - [anon_sym_bitand] = ACTIONS(4988), - [anon_sym_not_eq] = ACTIONS(4988), - [anon_sym_DASH_DASH] = ACTIONS(4990), - [anon_sym_PLUS_PLUS] = ACTIONS(4990), - [anon_sym_DOT] = ACTIONS(4988), - [anon_sym_DOT_STAR] = ACTIONS(4990), - [anon_sym_DASH_GT] = ACTIONS(4990), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4988), - [anon_sym_decltype] = ACTIONS(4988), - [anon_sym_final] = ACTIONS(4988), - [anon_sym_override] = ACTIONS(4988), + [anon_sym_SLASH] = ACTIONS(4993), + [anon_sym_PERCENT] = ACTIONS(4986), + [anon_sym_PIPE_PIPE] = ACTIONS(4986), + [anon_sym_AMP_AMP] = ACTIONS(4988), + [anon_sym_PIPE] = ACTIONS(4993), + [anon_sym_CARET] = ACTIONS(4986), + [anon_sym_AMP] = ACTIONS(4995), + [anon_sym_EQ_EQ] = ACTIONS(4986), + [anon_sym_BANG_EQ] = ACTIONS(4986), + [anon_sym_GT] = ACTIONS(4993), + [anon_sym_GT_EQ] = ACTIONS(4986), + [anon_sym_LT_EQ] = ACTIONS(4993), + [anon_sym_LT] = ACTIONS(4993), + [anon_sym_LT_LT] = ACTIONS(4986), + [anon_sym_GT_GT] = ACTIONS(4986), + [anon_sym_SEMI] = ACTIONS(4988), + [anon_sym___extension__] = ACTIONS(4984), + [anon_sym_virtual] = ACTIONS(4984), + [anon_sym_extern] = ACTIONS(4984), + [anon_sym___attribute__] = ACTIONS(4984), + [anon_sym___attribute] = ACTIONS(4984), + [anon_sym_COLON_COLON] = ACTIONS(4991), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4988), + [anon_sym___declspec] = ACTIONS(4984), + [anon_sym___based] = ACTIONS(4984), + [anon_sym___cdecl] = ACTIONS(4984), + [anon_sym___clrcall] = ACTIONS(4984), + [anon_sym___stdcall] = ACTIONS(4984), + [anon_sym___fastcall] = ACTIONS(4984), + [anon_sym___thiscall] = ACTIONS(4984), + [anon_sym___vectorcall] = ACTIONS(4984), + [anon_sym_LBRACE] = ACTIONS(4991), + [anon_sym_RBRACE] = ACTIONS(4986), + [anon_sym_LBRACK] = ACTIONS(4995), + [anon_sym_static] = ACTIONS(4984), + [anon_sym_RBRACK] = ACTIONS(4986), + [anon_sym_register] = ACTIONS(4984), + [anon_sym_inline] = ACTIONS(4984), + [anon_sym___inline] = ACTIONS(4984), + [anon_sym___inline__] = ACTIONS(4984), + [anon_sym___forceinline] = ACTIONS(4984), + [anon_sym_thread_local] = ACTIONS(4984), + [anon_sym___thread] = ACTIONS(4984), + [anon_sym_const] = ACTIONS(4984), + [anon_sym_constexpr] = ACTIONS(4984), + [anon_sym_volatile] = ACTIONS(4984), + [anon_sym_restrict] = ACTIONS(4984), + [anon_sym___restrict__] = ACTIONS(4984), + [anon_sym__Atomic] = ACTIONS(4984), + [anon_sym__Noreturn] = ACTIONS(4984), + [anon_sym_noreturn] = ACTIONS(4984), + [anon_sym__Nonnull] = ACTIONS(4984), + [anon_sym_mutable] = ACTIONS(4984), + [anon_sym_constinit] = ACTIONS(4984), + [anon_sym_consteval] = ACTIONS(4984), + [anon_sym_alignas] = ACTIONS(4984), + [anon_sym__Alignas] = ACTIONS(4984), + [anon_sym_QMARK] = ACTIONS(4986), + [anon_sym_LT_EQ_GT] = ACTIONS(4986), + [anon_sym_or] = ACTIONS(4993), + [anon_sym_and] = ACTIONS(4993), + [anon_sym_bitor] = ACTIONS(4993), + [anon_sym_xor] = ACTIONS(4993), + [anon_sym_bitand] = ACTIONS(4993), + [anon_sym_not_eq] = ACTIONS(4993), + [anon_sym_DASH_DASH] = ACTIONS(4986), + [anon_sym_PLUS_PLUS] = ACTIONS(4986), + [anon_sym_DOT] = ACTIONS(4993), + [anon_sym_DOT_STAR] = ACTIONS(4986), + [anon_sym_DASH_GT] = ACTIONS(4986), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4984), + [anon_sym_decltype] = ACTIONS(4984), + [anon_sym_template] = ACTIONS(4984), + [anon_sym_operator] = ACTIONS(4984), }, - [1601] = { + [1625] = { [sym_identifier] = ACTIONS(4984), [anon_sym_DOT_DOT_DOT] = ACTIONS(4986), [anon_sym_COMMA] = ACTIONS(4986), [anon_sym_RPAREN] = ACTIONS(4986), - [aux_sym_preproc_if_token2] = ACTIONS(4986), - [aux_sym_preproc_else_token1] = ACTIONS(4986), - [aux_sym_preproc_elif_token1] = ACTIONS(4984), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4986), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4986), - [anon_sym_LPAREN2] = ACTIONS(4986), - [anon_sym_DASH] = ACTIONS(4984), - [anon_sym_PLUS] = ACTIONS(4984), - [anon_sym_STAR] = ACTIONS(4984), - [anon_sym_SLASH] = ACTIONS(4984), - [anon_sym_PERCENT] = ACTIONS(4984), + [anon_sym_LPAREN2] = ACTIONS(4988), + [anon_sym_TILDE] = ACTIONS(4991), + [anon_sym_DASH] = ACTIONS(4993), + [anon_sym_PLUS] = ACTIONS(4993), + [anon_sym_STAR] = ACTIONS(4988), + [anon_sym_SLASH] = ACTIONS(4993), + [anon_sym_PERCENT] = ACTIONS(4986), [anon_sym_PIPE_PIPE] = ACTIONS(4986), - [anon_sym_AMP_AMP] = ACTIONS(4986), - [anon_sym_PIPE] = ACTIONS(4984), - [anon_sym_CARET] = ACTIONS(4984), - [anon_sym_AMP] = ACTIONS(4984), + [anon_sym_AMP_AMP] = ACTIONS(4988), + [anon_sym_PIPE] = ACTIONS(4993), + [anon_sym_CARET] = ACTIONS(4986), + [anon_sym_AMP] = ACTIONS(4995), [anon_sym_EQ_EQ] = ACTIONS(4986), [anon_sym_BANG_EQ] = ACTIONS(4986), - [anon_sym_GT] = ACTIONS(4984), + [anon_sym_GT] = ACTIONS(4993), [anon_sym_GT_EQ] = ACTIONS(4986), - [anon_sym_LT_EQ] = ACTIONS(4984), - [anon_sym_LT] = ACTIONS(4984), - [anon_sym_LT_LT] = ACTIONS(4984), - [anon_sym_GT_GT] = ACTIONS(4984), + [anon_sym_LT_EQ] = ACTIONS(4993), + [anon_sym_LT] = ACTIONS(4993), + [anon_sym_LT_LT] = ACTIONS(4986), + [anon_sym_GT_GT] = ACTIONS(4986), [anon_sym_SEMI] = ACTIONS(4986), [anon_sym___extension__] = ACTIONS(4984), + [anon_sym_virtual] = ACTIONS(4984), + [anon_sym_extern] = ACTIONS(4984), [anon_sym___attribute__] = ACTIONS(4984), [anon_sym___attribute] = ACTIONS(4984), - [anon_sym_COLON] = ACTIONS(4984), - [anon_sym_COLON_COLON] = ACTIONS(4986), - [anon_sym_LBRACE] = ACTIONS(4986), + [anon_sym_COLON_COLON] = ACTIONS(4991), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4991), + [anon_sym___declspec] = ACTIONS(4984), + [anon_sym___based] = ACTIONS(4984), + [anon_sym___cdecl] = ACTIONS(4984), + [anon_sym___clrcall] = ACTIONS(4984), + [anon_sym___stdcall] = ACTIONS(4984), + [anon_sym___fastcall] = ACTIONS(4984), + [anon_sym___thiscall] = ACTIONS(4984), + [anon_sym___vectorcall] = ACTIONS(4984), + [anon_sym_LBRACE] = ACTIONS(4991), [anon_sym_RBRACE] = ACTIONS(4986), - [anon_sym_LBRACK] = ACTIONS(4986), - [anon_sym_RBRACK] = ACTIONS(4986), - [anon_sym_EQ] = ACTIONS(4984), + [anon_sym_LBRACK] = ACTIONS(4995), + [anon_sym_static] = ACTIONS(4984), + [anon_sym_register] = ACTIONS(4984), + [anon_sym_inline] = ACTIONS(4984), + [anon_sym___inline] = ACTIONS(4984), + [anon_sym___inline__] = ACTIONS(4984), + [anon_sym___forceinline] = ACTIONS(4984), + [anon_sym_thread_local] = ACTIONS(4984), + [anon_sym___thread] = ACTIONS(4984), [anon_sym_const] = ACTIONS(4984), [anon_sym_constexpr] = ACTIONS(4984), [anon_sym_volatile] = ACTIONS(4984), @@ -239151,420 +242540,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(4984), [anon_sym__Alignas] = ACTIONS(4984), [anon_sym_QMARK] = ACTIONS(4986), - [anon_sym_STAR_EQ] = ACTIONS(4986), - [anon_sym_SLASH_EQ] = ACTIONS(4986), - [anon_sym_PERCENT_EQ] = ACTIONS(4986), - [anon_sym_PLUS_EQ] = ACTIONS(4986), - [anon_sym_DASH_EQ] = ACTIONS(4986), - [anon_sym_LT_LT_EQ] = ACTIONS(4986), - [anon_sym_GT_GT_EQ] = ACTIONS(4986), - [anon_sym_AMP_EQ] = ACTIONS(4986), - [anon_sym_CARET_EQ] = ACTIONS(4986), - [anon_sym_PIPE_EQ] = ACTIONS(4986), - [anon_sym_and_eq] = ACTIONS(4984), - [anon_sym_or_eq] = ACTIONS(4984), - [anon_sym_xor_eq] = ACTIONS(4984), [anon_sym_LT_EQ_GT] = ACTIONS(4986), - [anon_sym_or] = ACTIONS(4984), - [anon_sym_and] = ACTIONS(4984), - [anon_sym_bitor] = ACTIONS(4984), - [anon_sym_xor] = ACTIONS(4984), - [anon_sym_bitand] = ACTIONS(4984), - [anon_sym_not_eq] = ACTIONS(4984), + [anon_sym_or] = ACTIONS(4993), + [anon_sym_and] = ACTIONS(4993), + [anon_sym_bitor] = ACTIONS(4993), + [anon_sym_xor] = ACTIONS(4993), + [anon_sym_bitand] = ACTIONS(4993), + [anon_sym_not_eq] = ACTIONS(4993), [anon_sym_DASH_DASH] = ACTIONS(4986), [anon_sym_PLUS_PLUS] = ACTIONS(4986), - [anon_sym_DOT] = ACTIONS(4984), + [anon_sym_DOT] = ACTIONS(4993), [anon_sym_DOT_STAR] = ACTIONS(4986), [anon_sym_DASH_GT] = ACTIONS(4986), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(4984), [anon_sym_decltype] = ACTIONS(4984), - [anon_sym_final] = ACTIONS(4984), - [anon_sym_override] = ACTIONS(4984), - }, - [1602] = { - [sym_identifier] = ACTIONS(4955), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4957), - [anon_sym_COMMA] = ACTIONS(4957), - [anon_sym_RPAREN] = ACTIONS(4957), - [aux_sym_preproc_if_token2] = ACTIONS(4957), - [aux_sym_preproc_else_token1] = ACTIONS(4957), - [aux_sym_preproc_elif_token1] = ACTIONS(4955), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4957), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4957), - [anon_sym_LPAREN2] = ACTIONS(4957), - [anon_sym_DASH] = ACTIONS(4955), - [anon_sym_PLUS] = ACTIONS(4955), - [anon_sym_STAR] = ACTIONS(4955), - [anon_sym_SLASH] = ACTIONS(4955), - [anon_sym_PERCENT] = ACTIONS(4955), - [anon_sym_PIPE_PIPE] = ACTIONS(4957), - [anon_sym_AMP_AMP] = ACTIONS(4957), - [anon_sym_PIPE] = ACTIONS(4955), - [anon_sym_CARET] = ACTIONS(4955), - [anon_sym_AMP] = ACTIONS(4955), - [anon_sym_EQ_EQ] = ACTIONS(4957), - [anon_sym_BANG_EQ] = ACTIONS(4957), - [anon_sym_GT] = ACTIONS(4955), - [anon_sym_GT_EQ] = ACTIONS(4957), - [anon_sym_LT_EQ] = ACTIONS(4955), - [anon_sym_LT] = ACTIONS(4955), - [anon_sym_LT_LT] = ACTIONS(4955), - [anon_sym_GT_GT] = ACTIONS(4955), - [anon_sym_SEMI] = ACTIONS(4957), - [anon_sym___extension__] = ACTIONS(4955), - [anon_sym___attribute__] = ACTIONS(4955), - [anon_sym___attribute] = ACTIONS(4955), - [anon_sym_COLON] = ACTIONS(4955), - [anon_sym_COLON_COLON] = ACTIONS(4957), - [anon_sym_LBRACE] = ACTIONS(4957), - [anon_sym_RBRACE] = ACTIONS(4957), - [anon_sym_LBRACK] = ACTIONS(4957), - [anon_sym_RBRACK] = ACTIONS(4957), - [anon_sym_EQ] = ACTIONS(4955), - [anon_sym_const] = ACTIONS(4955), - [anon_sym_constexpr] = ACTIONS(4955), - [anon_sym_volatile] = ACTIONS(4955), - [anon_sym_restrict] = ACTIONS(4955), - [anon_sym___restrict__] = ACTIONS(4955), - [anon_sym__Atomic] = ACTIONS(4955), - [anon_sym__Noreturn] = ACTIONS(4955), - [anon_sym_noreturn] = ACTIONS(4955), - [anon_sym__Nonnull] = ACTIONS(4955), - [anon_sym_mutable] = ACTIONS(4955), - [anon_sym_constinit] = ACTIONS(4955), - [anon_sym_consteval] = ACTIONS(4955), - [anon_sym_alignas] = ACTIONS(4955), - [anon_sym__Alignas] = ACTIONS(4955), - [anon_sym_QMARK] = ACTIONS(4957), - [anon_sym_STAR_EQ] = ACTIONS(4957), - [anon_sym_SLASH_EQ] = ACTIONS(4957), - [anon_sym_PERCENT_EQ] = ACTIONS(4957), - [anon_sym_PLUS_EQ] = ACTIONS(4957), - [anon_sym_DASH_EQ] = ACTIONS(4957), - [anon_sym_LT_LT_EQ] = ACTIONS(4957), - [anon_sym_GT_GT_EQ] = ACTIONS(4957), - [anon_sym_AMP_EQ] = ACTIONS(4957), - [anon_sym_CARET_EQ] = ACTIONS(4957), - [anon_sym_PIPE_EQ] = ACTIONS(4957), - [anon_sym_and_eq] = ACTIONS(4955), - [anon_sym_or_eq] = ACTIONS(4955), - [anon_sym_xor_eq] = ACTIONS(4955), - [anon_sym_LT_EQ_GT] = ACTIONS(4957), - [anon_sym_or] = ACTIONS(4955), - [anon_sym_and] = ACTIONS(4955), - [anon_sym_bitor] = ACTIONS(4955), - [anon_sym_xor] = ACTIONS(4955), - [anon_sym_bitand] = ACTIONS(4955), - [anon_sym_not_eq] = ACTIONS(4955), - [anon_sym_DASH_DASH] = ACTIONS(4957), - [anon_sym_PLUS_PLUS] = ACTIONS(4957), - [anon_sym_DOT] = ACTIONS(4955), - [anon_sym_DOT_STAR] = ACTIONS(4957), - [anon_sym_DASH_GT] = ACTIONS(4957), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4955), - [anon_sym_decltype] = ACTIONS(4955), - [anon_sym_final] = ACTIONS(4955), - [anon_sym_override] = ACTIONS(4955), - }, - [1603] = { - [sym_identifier] = ACTIONS(4996), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5003), - [anon_sym_COMMA] = ACTIONS(5003), - [anon_sym_RPAREN] = ACTIONS(5003), - [anon_sym_LPAREN2] = ACTIONS(5003), - [anon_sym_TILDE] = ACTIONS(5003), - [anon_sym_STAR] = ACTIONS(5003), - [anon_sym_PIPE_PIPE] = ACTIONS(5003), - [anon_sym_AMP_AMP] = ACTIONS(5003), - [anon_sym_AMP] = ACTIONS(4996), - [anon_sym_SEMI] = ACTIONS(5003), - [anon_sym___extension__] = ACTIONS(4996), - [anon_sym_virtual] = ACTIONS(4996), - [anon_sym_extern] = ACTIONS(4996), - [anon_sym___attribute__] = ACTIONS(4996), - [anon_sym___attribute] = ACTIONS(4996), - [anon_sym_using] = ACTIONS(4996), - [anon_sym_COLON] = ACTIONS(4996), - [anon_sym_COLON_COLON] = ACTIONS(5003), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5003), - [anon_sym___declspec] = ACTIONS(4996), - [anon_sym___based] = ACTIONS(4996), - [anon_sym___cdecl] = ACTIONS(4996), - [anon_sym___clrcall] = ACTIONS(4996), - [anon_sym___stdcall] = ACTIONS(4996), - [anon_sym___fastcall] = ACTIONS(4996), - [anon_sym___thiscall] = ACTIONS(4996), - [anon_sym___vectorcall] = ACTIONS(4996), - [anon_sym_LBRACE] = ACTIONS(5003), - [anon_sym_signed] = ACTIONS(4996), - [anon_sym_unsigned] = ACTIONS(4996), - [anon_sym_long] = ACTIONS(4996), - [anon_sym_short] = ACTIONS(4996), - [anon_sym_LBRACK] = ACTIONS(4996), - [anon_sym_static] = ACTIONS(4996), - [anon_sym_EQ] = ACTIONS(5003), - [anon_sym_register] = ACTIONS(4996), - [anon_sym_inline] = ACTIONS(4996), - [anon_sym___inline] = ACTIONS(4996), - [anon_sym___inline__] = ACTIONS(4996), - [anon_sym___forceinline] = ACTIONS(4996), - [anon_sym_thread_local] = ACTIONS(4996), - [anon_sym___thread] = ACTIONS(4996), - [anon_sym_const] = ACTIONS(4996), - [anon_sym_constexpr] = ACTIONS(4996), - [anon_sym_volatile] = ACTIONS(4996), - [anon_sym_restrict] = ACTIONS(4996), - [anon_sym___restrict__] = ACTIONS(4996), - [anon_sym__Atomic] = ACTIONS(4996), - [anon_sym__Noreturn] = ACTIONS(4996), - [anon_sym_noreturn] = ACTIONS(4996), - [anon_sym__Nonnull] = ACTIONS(4996), - [anon_sym_mutable] = ACTIONS(4996), - [anon_sym_constinit] = ACTIONS(4996), - [anon_sym_consteval] = ACTIONS(4996), - [anon_sym_alignas] = ACTIONS(4996), - [anon_sym__Alignas] = ACTIONS(4996), - [sym_primitive_type] = ACTIONS(4996), - [anon_sym_enum] = ACTIONS(4996), - [anon_sym_class] = ACTIONS(4996), - [anon_sym_struct] = ACTIONS(4996), - [anon_sym_union] = ACTIONS(4996), - [anon_sym_or] = ACTIONS(4996), - [anon_sym_and] = ACTIONS(4996), - [anon_sym_asm] = ACTIONS(4996), - [anon_sym___asm__] = ACTIONS(4996), - [anon_sym___asm] = ACTIONS(4996), - [anon_sym_DASH_GT] = ACTIONS(5003), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4996), - [anon_sym_decltype] = ACTIONS(4996), - [anon_sym_final] = ACTIONS(4996), - [anon_sym_override] = ACTIONS(4996), - [anon_sym_explicit] = ACTIONS(4996), - [anon_sym_typename] = ACTIONS(4996), - [anon_sym_template] = ACTIONS(4996), - [anon_sym_GT2] = ACTIONS(5003), - [anon_sym_operator] = ACTIONS(4996), - [anon_sym_try] = ACTIONS(4996), - [anon_sym_friend] = ACTIONS(4996), - [anon_sym_noexcept] = ACTIONS(4996), - [anon_sym_throw] = ACTIONS(4996), - [anon_sym_concept] = ACTIONS(4996), - [anon_sym_requires] = ACTIONS(4996), - }, - [1604] = { - [sym_identifier] = ACTIONS(4996), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4998), - [anon_sym_COMMA] = ACTIONS(4998), - [anon_sym_LPAREN2] = ACTIONS(5000), - [anon_sym_TILDE] = ACTIONS(5003), - [anon_sym_DASH] = ACTIONS(5005), - [anon_sym_PLUS] = ACTIONS(5005), - [anon_sym_STAR] = ACTIONS(5000), - [anon_sym_SLASH] = ACTIONS(5005), - [anon_sym_PERCENT] = ACTIONS(4998), - [anon_sym_PIPE_PIPE] = ACTIONS(4998), - [anon_sym_AMP_AMP] = ACTIONS(5000), - [anon_sym_PIPE] = ACTIONS(5005), - [anon_sym_CARET] = ACTIONS(4998), - [anon_sym_AMP] = ACTIONS(5007), - [anon_sym_EQ_EQ] = ACTIONS(4998), - [anon_sym_BANG_EQ] = ACTIONS(4998), - [anon_sym_GT] = ACTIONS(5005), - [anon_sym_GT_EQ] = ACTIONS(4998), - [anon_sym_LT_EQ] = ACTIONS(5005), - [anon_sym_LT] = ACTIONS(5005), - [anon_sym_LT_LT] = ACTIONS(4998), - [anon_sym_GT_GT] = ACTIONS(4998), - [anon_sym_SEMI] = ACTIONS(5000), - [anon_sym___extension__] = ACTIONS(4996), - [anon_sym_virtual] = ACTIONS(4996), - [anon_sym_extern] = ACTIONS(4996), - [anon_sym___attribute__] = ACTIONS(4996), - [anon_sym___attribute] = ACTIONS(4996), - [anon_sym_COLON_COLON] = ACTIONS(5003), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5000), - [anon_sym___declspec] = ACTIONS(4996), - [anon_sym___based] = ACTIONS(4996), - [anon_sym___cdecl] = ACTIONS(4996), - [anon_sym___clrcall] = ACTIONS(4996), - [anon_sym___stdcall] = ACTIONS(4996), - [anon_sym___fastcall] = ACTIONS(4996), - [anon_sym___thiscall] = ACTIONS(4996), - [anon_sym___vectorcall] = ACTIONS(4996), - [anon_sym_LBRACE] = ACTIONS(5003), - [anon_sym_RBRACE] = ACTIONS(4998), - [anon_sym_LBRACK] = ACTIONS(5007), - [anon_sym_static] = ACTIONS(4996), - [anon_sym_RBRACK] = ACTIONS(4998), - [anon_sym_register] = ACTIONS(4996), - [anon_sym_inline] = ACTIONS(4996), - [anon_sym___inline] = ACTIONS(4996), - [anon_sym___inline__] = ACTIONS(4996), - [anon_sym___forceinline] = ACTIONS(4996), - [anon_sym_thread_local] = ACTIONS(4996), - [anon_sym___thread] = ACTIONS(4996), - [anon_sym_const] = ACTIONS(4996), - [anon_sym_constexpr] = ACTIONS(4996), - [anon_sym_volatile] = ACTIONS(4996), - [anon_sym_restrict] = ACTIONS(4996), - [anon_sym___restrict__] = ACTIONS(4996), - [anon_sym__Atomic] = ACTIONS(4996), - [anon_sym__Noreturn] = ACTIONS(4996), - [anon_sym_noreturn] = ACTIONS(4996), - [anon_sym__Nonnull] = ACTIONS(4996), - [anon_sym_mutable] = ACTIONS(4996), - [anon_sym_constinit] = ACTIONS(4996), - [anon_sym_consteval] = ACTIONS(4996), - [anon_sym_alignas] = ACTIONS(4996), - [anon_sym__Alignas] = ACTIONS(4996), - [anon_sym_QMARK] = ACTIONS(4998), - [anon_sym_LT_EQ_GT] = ACTIONS(4998), - [anon_sym_or] = ACTIONS(5005), - [anon_sym_and] = ACTIONS(5005), - [anon_sym_bitor] = ACTIONS(5005), - [anon_sym_xor] = ACTIONS(5005), - [anon_sym_bitand] = ACTIONS(5005), - [anon_sym_not_eq] = ACTIONS(5005), - [anon_sym_DASH_DASH] = ACTIONS(4998), - [anon_sym_PLUS_PLUS] = ACTIONS(4998), - [anon_sym_DOT] = ACTIONS(5005), - [anon_sym_DOT_STAR] = ACTIONS(4998), - [anon_sym_DASH_GT] = ACTIONS(4998), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4996), - [anon_sym_decltype] = ACTIONS(4996), - [anon_sym_template] = ACTIONS(4996), - [anon_sym_operator] = ACTIONS(4996), - }, - [1605] = { - [sym_type_qualifier] = STATE(1626), - [sym_alignas_qualifier] = STATE(1651), - [aux_sym__type_definition_type_repeat1] = STATE(1626), - [aux_sym_sized_type_specifier_repeat1] = STATE(2552), - [sym_identifier] = ACTIONS(5122), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5100), - [anon_sym_COMMA] = ACTIONS(5100), - [anon_sym_RPAREN] = ACTIONS(5100), - [anon_sym_LPAREN2] = ACTIONS(5100), - [anon_sym_DASH] = ACTIONS(5102), - [anon_sym_PLUS] = ACTIONS(5102), - [anon_sym_STAR] = ACTIONS(5102), - [anon_sym_SLASH] = ACTIONS(5102), - [anon_sym_PERCENT] = ACTIONS(5102), - [anon_sym_PIPE_PIPE] = ACTIONS(5100), - [anon_sym_AMP_AMP] = ACTIONS(5100), - [anon_sym_PIPE] = ACTIONS(5102), - [anon_sym_CARET] = ACTIONS(5102), - [anon_sym_AMP] = ACTIONS(5102), - [anon_sym_EQ_EQ] = ACTIONS(5100), - [anon_sym_BANG_EQ] = ACTIONS(5100), - [anon_sym_GT] = ACTIONS(5102), - [anon_sym_GT_EQ] = ACTIONS(5100), - [anon_sym_LT_EQ] = ACTIONS(5102), - [anon_sym_LT] = ACTIONS(5102), - [anon_sym_LT_LT] = ACTIONS(5102), - [anon_sym_GT_GT] = ACTIONS(5102), - [anon_sym___extension__] = ACTIONS(5124), - [anon_sym___attribute__] = ACTIONS(5102), - [anon_sym___attribute] = ACTIONS(5102), - [anon_sym_LBRACE] = ACTIONS(5100), - [anon_sym_signed] = ACTIONS(5126), - [anon_sym_unsigned] = ACTIONS(5126), - [anon_sym_long] = ACTIONS(5126), - [anon_sym_short] = ACTIONS(5126), - [anon_sym_LBRACK] = ACTIONS(5100), - [anon_sym_EQ] = ACTIONS(5102), - [anon_sym_const] = ACTIONS(5124), - [anon_sym_constexpr] = ACTIONS(5124), - [anon_sym_volatile] = ACTIONS(5124), - [anon_sym_restrict] = ACTIONS(5124), - [anon_sym___restrict__] = ACTIONS(5124), - [anon_sym__Atomic] = ACTIONS(5124), - [anon_sym__Noreturn] = ACTIONS(5124), - [anon_sym_noreturn] = ACTIONS(5124), - [anon_sym__Nonnull] = ACTIONS(5124), - [anon_sym_mutable] = ACTIONS(5124), - [anon_sym_constinit] = ACTIONS(5124), - [anon_sym_consteval] = ACTIONS(5124), - [anon_sym_alignas] = ACTIONS(5128), - [anon_sym__Alignas] = ACTIONS(5128), - [sym_primitive_type] = ACTIONS(5130), - [anon_sym_QMARK] = ACTIONS(5100), - [anon_sym_STAR_EQ] = ACTIONS(5100), - [anon_sym_SLASH_EQ] = ACTIONS(5100), - [anon_sym_PERCENT_EQ] = ACTIONS(5100), - [anon_sym_PLUS_EQ] = ACTIONS(5100), - [anon_sym_DASH_EQ] = ACTIONS(5100), - [anon_sym_LT_LT_EQ] = ACTIONS(5100), - [anon_sym_GT_GT_EQ] = ACTIONS(5100), - [anon_sym_AMP_EQ] = ACTIONS(5100), - [anon_sym_CARET_EQ] = ACTIONS(5100), - [anon_sym_PIPE_EQ] = ACTIONS(5100), - [anon_sym_and_eq] = ACTIONS(5102), - [anon_sym_or_eq] = ACTIONS(5102), - [anon_sym_xor_eq] = ACTIONS(5102), - [anon_sym_LT_EQ_GT] = ACTIONS(5100), - [anon_sym_or] = ACTIONS(5102), - [anon_sym_and] = ACTIONS(5102), - [anon_sym_bitor] = ACTIONS(5102), - [anon_sym_xor] = ACTIONS(5102), - [anon_sym_bitand] = ACTIONS(5102), - [anon_sym_not_eq] = ACTIONS(5102), - [anon_sym_DASH_DASH] = ACTIONS(5100), - [anon_sym_PLUS_PLUS] = ACTIONS(5100), - [anon_sym_DOT] = ACTIONS(5102), - [anon_sym_DOT_STAR] = ACTIONS(5100), - [anon_sym_DASH_GT] = ACTIONS(5102), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5102), - [anon_sym_decltype] = ACTIONS(5102), - [anon_sym_DASH_GT_STAR] = ACTIONS(5100), + [anon_sym_template] = ACTIONS(4984), + [anon_sym_operator] = ACTIONS(4984), }, - [1606] = { - [sym_identifier] = ACTIONS(5132), - [anon_sym_COMMA] = ACTIONS(5134), - [anon_sym_RPAREN] = ACTIONS(5134), - [anon_sym_LPAREN2] = ACTIONS(5134), - [anon_sym_TILDE] = ACTIONS(5134), - [anon_sym_STAR] = ACTIONS(5134), - [anon_sym_PIPE_PIPE] = ACTIONS(5134), - [anon_sym_AMP_AMP] = ACTIONS(5134), - [anon_sym_AMP] = ACTIONS(5132), - [anon_sym_SEMI] = ACTIONS(5134), + [1626] = { + [sym_type_qualifier] = STATE(1647), + [sym_alignas_qualifier] = STATE(1672), + [aux_sym__type_definition_type_repeat1] = STATE(1647), + [aux_sym_sized_type_specifier_repeat1] = STATE(2567), + [sym_identifier] = ACTIONS(5130), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5109), + [anon_sym_COMMA] = ACTIONS(5109), + [anon_sym_RPAREN] = ACTIONS(5109), + [anon_sym_LPAREN2] = ACTIONS(5109), + [anon_sym_DASH] = ACTIONS(5111), + [anon_sym_PLUS] = ACTIONS(5111), + [anon_sym_STAR] = ACTIONS(5111), + [anon_sym_SLASH] = ACTIONS(5111), + [anon_sym_PERCENT] = ACTIONS(5111), + [anon_sym_PIPE_PIPE] = ACTIONS(5109), + [anon_sym_AMP_AMP] = ACTIONS(5109), + [anon_sym_PIPE] = ACTIONS(5111), + [anon_sym_CARET] = ACTIONS(5111), + [anon_sym_AMP] = ACTIONS(5111), + [anon_sym_EQ_EQ] = ACTIONS(5109), + [anon_sym_BANG_EQ] = ACTIONS(5109), + [anon_sym_GT] = ACTIONS(5111), + [anon_sym_GT_EQ] = ACTIONS(5109), + [anon_sym_LT_EQ] = ACTIONS(5111), + [anon_sym_LT] = ACTIONS(5111), + [anon_sym_LT_LT] = ACTIONS(5111), + [anon_sym_GT_GT] = ACTIONS(5111), [anon_sym___extension__] = ACTIONS(5132), - [anon_sym_virtual] = ACTIONS(5132), - [anon_sym_extern] = ACTIONS(5132), - [anon_sym___attribute__] = ACTIONS(5132), - [anon_sym___attribute] = ACTIONS(5132), - [anon_sym_using] = ACTIONS(5132), - [anon_sym_COLON_COLON] = ACTIONS(5134), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5134), - [anon_sym___declspec] = ACTIONS(5132), - [anon_sym___based] = ACTIONS(5132), - [anon_sym___cdecl] = ACTIONS(5132), - [anon_sym___clrcall] = ACTIONS(5132), - [anon_sym___stdcall] = ACTIONS(5132), - [anon_sym___fastcall] = ACTIONS(5132), - [anon_sym___thiscall] = ACTIONS(5132), - [anon_sym___vectorcall] = ACTIONS(5132), - [anon_sym_LBRACE] = ACTIONS(5134), - [anon_sym_signed] = ACTIONS(5132), - [anon_sym_unsigned] = ACTIONS(5132), - [anon_sym_long] = ACTIONS(5132), - [anon_sym_short] = ACTIONS(5132), - [anon_sym_LBRACK] = ACTIONS(5132), - [anon_sym_static] = ACTIONS(5132), - [anon_sym_EQ] = ACTIONS(5134), - [anon_sym_register] = ACTIONS(5132), - [anon_sym_inline] = ACTIONS(5132), - [anon_sym___inline] = ACTIONS(5132), - [anon_sym___inline__] = ACTIONS(5132), - [anon_sym___forceinline] = ACTIONS(5132), - [anon_sym_thread_local] = ACTIONS(5132), - [anon_sym___thread] = ACTIONS(5132), + [anon_sym___attribute__] = ACTIONS(5111), + [anon_sym___attribute] = ACTIONS(5111), + [anon_sym_LBRACE] = ACTIONS(5109), + [anon_sym_signed] = ACTIONS(5134), + [anon_sym_unsigned] = ACTIONS(5134), + [anon_sym_long] = ACTIONS(5134), + [anon_sym_short] = ACTIONS(5134), + [anon_sym_LBRACK] = ACTIONS(5109), + [anon_sym_EQ] = ACTIONS(5111), [anon_sym_const] = ACTIONS(5132), [anon_sym_constexpr] = ACTIONS(5132), [anon_sym_volatile] = ACTIONS(5132), @@ -239577,121 +242608,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(5132), [anon_sym_constinit] = ACTIONS(5132), [anon_sym_consteval] = ACTIONS(5132), - [anon_sym_alignas] = ACTIONS(5132), - [anon_sym__Alignas] = ACTIONS(5132), - [sym_primitive_type] = ACTIONS(5132), - [anon_sym_enum] = ACTIONS(5132), - [anon_sym_class] = ACTIONS(5132), - [anon_sym_struct] = ACTIONS(5132), - [anon_sym_union] = ACTIONS(5132), - [anon_sym_or] = ACTIONS(5132), - [anon_sym_and] = ACTIONS(5132), - [anon_sym_asm] = ACTIONS(5132), - [anon_sym___asm__] = ACTIONS(5132), - [anon_sym___asm] = ACTIONS(5132), - [anon_sym_DASH_GT] = ACTIONS(5134), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5132), - [anon_sym_decltype] = ACTIONS(5132), - [anon_sym_final] = ACTIONS(5132), - [anon_sym_override] = ACTIONS(5132), - [anon_sym_explicit] = ACTIONS(5132), - [anon_sym_typename] = ACTIONS(5132), - [anon_sym_template] = ACTIONS(5132), - [anon_sym_GT2] = ACTIONS(5134), - [anon_sym_operator] = ACTIONS(5132), - [anon_sym_try] = ACTIONS(5132), - [anon_sym_friend] = ACTIONS(5132), - [anon_sym_noexcept] = ACTIONS(5132), - [anon_sym_throw] = ACTIONS(5132), - [anon_sym_concept] = ACTIONS(5132), - [anon_sym_requires] = ACTIONS(5132), - }, - [1607] = { - [sym_identifier] = ACTIONS(5136), - [anon_sym_COMMA] = ACTIONS(5138), - [anon_sym_RPAREN] = ACTIONS(5138), - [anon_sym_LPAREN2] = ACTIONS(5138), - [anon_sym_TILDE] = ACTIONS(5138), - [anon_sym_STAR] = ACTIONS(5138), - [anon_sym_PIPE_PIPE] = ACTIONS(5138), - [anon_sym_AMP_AMP] = ACTIONS(5138), - [anon_sym_AMP] = ACTIONS(5136), - [anon_sym_SEMI] = ACTIONS(5138), - [anon_sym___extension__] = ACTIONS(5136), - [anon_sym_virtual] = ACTIONS(5136), - [anon_sym_extern] = ACTIONS(5136), - [anon_sym___attribute__] = ACTIONS(5136), - [anon_sym___attribute] = ACTIONS(5136), - [anon_sym_using] = ACTIONS(5136), - [anon_sym_COLON_COLON] = ACTIONS(5138), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5138), - [anon_sym___declspec] = ACTIONS(5136), - [anon_sym___based] = ACTIONS(5136), - [anon_sym___cdecl] = ACTIONS(5136), - [anon_sym___clrcall] = ACTIONS(5136), - [anon_sym___stdcall] = ACTIONS(5136), - [anon_sym___fastcall] = ACTIONS(5136), - [anon_sym___thiscall] = ACTIONS(5136), - [anon_sym___vectorcall] = ACTIONS(5136), - [anon_sym_LBRACE] = ACTIONS(5138), - [anon_sym_signed] = ACTIONS(5136), - [anon_sym_unsigned] = ACTIONS(5136), - [anon_sym_long] = ACTIONS(5136), - [anon_sym_short] = ACTIONS(5136), - [anon_sym_LBRACK] = ACTIONS(5136), - [anon_sym_static] = ACTIONS(5136), - [anon_sym_EQ] = ACTIONS(5138), - [anon_sym_register] = ACTIONS(5136), - [anon_sym_inline] = ACTIONS(5136), - [anon_sym___inline] = ACTIONS(5136), - [anon_sym___inline__] = ACTIONS(5136), - [anon_sym___forceinline] = ACTIONS(5136), - [anon_sym_thread_local] = ACTIONS(5136), - [anon_sym___thread] = ACTIONS(5136), - [anon_sym_const] = ACTIONS(5136), - [anon_sym_constexpr] = ACTIONS(5136), - [anon_sym_volatile] = ACTIONS(5136), - [anon_sym_restrict] = ACTIONS(5136), - [anon_sym___restrict__] = ACTIONS(5136), - [anon_sym__Atomic] = ACTIONS(5136), - [anon_sym__Noreturn] = ACTIONS(5136), - [anon_sym_noreturn] = ACTIONS(5136), - [anon_sym__Nonnull] = ACTIONS(5136), - [anon_sym_mutable] = ACTIONS(5136), - [anon_sym_constinit] = ACTIONS(5136), - [anon_sym_consteval] = ACTIONS(5136), [anon_sym_alignas] = ACTIONS(5136), [anon_sym__Alignas] = ACTIONS(5136), - [sym_primitive_type] = ACTIONS(5136), - [anon_sym_enum] = ACTIONS(5136), - [anon_sym_class] = ACTIONS(5136), - [anon_sym_struct] = ACTIONS(5136), - [anon_sym_union] = ACTIONS(5136), - [anon_sym_or] = ACTIONS(5136), - [anon_sym_and] = ACTIONS(5136), - [anon_sym_asm] = ACTIONS(5136), - [anon_sym___asm__] = ACTIONS(5136), - [anon_sym___asm] = ACTIONS(5136), - [anon_sym_DASH_GT] = ACTIONS(5138), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5136), - [anon_sym_decltype] = ACTIONS(5136), - [anon_sym_final] = ACTIONS(5136), - [anon_sym_override] = ACTIONS(5136), - [anon_sym_explicit] = ACTIONS(5136), - [anon_sym_typename] = ACTIONS(5136), - [anon_sym_template] = ACTIONS(5136), - [anon_sym_GT2] = ACTIONS(5138), - [anon_sym_operator] = ACTIONS(5136), - [anon_sym_try] = ACTIONS(5136), - [anon_sym_friend] = ACTIONS(5136), - [anon_sym_noexcept] = ACTIONS(5136), - [anon_sym_throw] = ACTIONS(5136), - [anon_sym_concept] = ACTIONS(5136), - [anon_sym_requires] = ACTIONS(5136), + [sym_primitive_type] = ACTIONS(5138), + [anon_sym_QMARK] = ACTIONS(5109), + [anon_sym_STAR_EQ] = ACTIONS(5109), + [anon_sym_SLASH_EQ] = ACTIONS(5109), + [anon_sym_PERCENT_EQ] = ACTIONS(5109), + [anon_sym_PLUS_EQ] = ACTIONS(5109), + [anon_sym_DASH_EQ] = ACTIONS(5109), + [anon_sym_LT_LT_EQ] = ACTIONS(5109), + [anon_sym_GT_GT_EQ] = ACTIONS(5109), + [anon_sym_AMP_EQ] = ACTIONS(5109), + [anon_sym_CARET_EQ] = ACTIONS(5109), + [anon_sym_PIPE_EQ] = ACTIONS(5109), + [anon_sym_and_eq] = ACTIONS(5111), + [anon_sym_or_eq] = ACTIONS(5111), + [anon_sym_xor_eq] = ACTIONS(5111), + [anon_sym_LT_EQ_GT] = ACTIONS(5109), + [anon_sym_or] = ACTIONS(5111), + [anon_sym_and] = ACTIONS(5111), + [anon_sym_bitor] = ACTIONS(5111), + [anon_sym_xor] = ACTIONS(5111), + [anon_sym_bitand] = ACTIONS(5111), + [anon_sym_not_eq] = ACTIONS(5111), + [anon_sym_DASH_DASH] = ACTIONS(5109), + [anon_sym_PLUS_PLUS] = ACTIONS(5109), + [anon_sym_DOT] = ACTIONS(5111), + [anon_sym_DOT_STAR] = ACTIONS(5109), + [anon_sym_DASH_GT] = ACTIONS(5111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5111), + [anon_sym_decltype] = ACTIONS(5111), + [anon_sym_DASH_GT_STAR] = ACTIONS(5109), }, - [1608] = { + [1627] = { [sym_identifier] = ACTIONS(5140), [anon_sym_COMMA] = ACTIONS(5142), [anon_sym_RPAREN] = ACTIONS(5142), @@ -239775,175 +242726,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_concept] = ACTIONS(5140), [anon_sym_requires] = ACTIONS(5140), }, - [1609] = { - [sym_identifier] = ACTIONS(5136), - [anon_sym_COMMA] = ACTIONS(5138), - [anon_sym_RPAREN] = ACTIONS(5138), - [anon_sym_LPAREN2] = ACTIONS(5138), - [anon_sym_TILDE] = ACTIONS(5138), - [anon_sym_STAR] = ACTIONS(5138), - [anon_sym_PIPE_PIPE] = ACTIONS(5138), - [anon_sym_AMP_AMP] = ACTIONS(5138), - [anon_sym_AMP] = ACTIONS(5136), - [anon_sym_SEMI] = ACTIONS(5138), - [anon_sym___extension__] = ACTIONS(5136), - [anon_sym_virtual] = ACTIONS(5136), - [anon_sym_extern] = ACTIONS(5136), - [anon_sym___attribute__] = ACTIONS(5136), - [anon_sym___attribute] = ACTIONS(5136), - [anon_sym_using] = ACTIONS(5136), - [anon_sym_COLON_COLON] = ACTIONS(5138), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5138), - [anon_sym___declspec] = ACTIONS(5136), - [anon_sym___based] = ACTIONS(5136), - [anon_sym___cdecl] = ACTIONS(5136), - [anon_sym___clrcall] = ACTIONS(5136), - [anon_sym___stdcall] = ACTIONS(5136), - [anon_sym___fastcall] = ACTIONS(5136), - [anon_sym___thiscall] = ACTIONS(5136), - [anon_sym___vectorcall] = ACTIONS(5136), - [anon_sym_LBRACE] = ACTIONS(5138), - [anon_sym_signed] = ACTIONS(5136), - [anon_sym_unsigned] = ACTIONS(5136), - [anon_sym_long] = ACTIONS(5136), - [anon_sym_short] = ACTIONS(5136), - [anon_sym_LBRACK] = ACTIONS(5136), - [anon_sym_static] = ACTIONS(5136), - [anon_sym_EQ] = ACTIONS(5138), - [anon_sym_register] = ACTIONS(5136), - [anon_sym_inline] = ACTIONS(5136), - [anon_sym___inline] = ACTIONS(5136), - [anon_sym___inline__] = ACTIONS(5136), - [anon_sym___forceinline] = ACTIONS(5136), - [anon_sym_thread_local] = ACTIONS(5136), - [anon_sym___thread] = ACTIONS(5136), - [anon_sym_const] = ACTIONS(5136), - [anon_sym_constexpr] = ACTIONS(5136), - [anon_sym_volatile] = ACTIONS(5136), - [anon_sym_restrict] = ACTIONS(5136), - [anon_sym___restrict__] = ACTIONS(5136), - [anon_sym__Atomic] = ACTIONS(5136), - [anon_sym__Noreturn] = ACTIONS(5136), - [anon_sym_noreturn] = ACTIONS(5136), - [anon_sym__Nonnull] = ACTIONS(5136), - [anon_sym_mutable] = ACTIONS(5136), - [anon_sym_constinit] = ACTIONS(5136), - [anon_sym_consteval] = ACTIONS(5136), - [anon_sym_alignas] = ACTIONS(5136), - [anon_sym__Alignas] = ACTIONS(5136), - [sym_primitive_type] = ACTIONS(5136), - [anon_sym_enum] = ACTIONS(5136), - [anon_sym_class] = ACTIONS(5136), - [anon_sym_struct] = ACTIONS(5136), - [anon_sym_union] = ACTIONS(5136), - [anon_sym_or] = ACTIONS(5136), - [anon_sym_and] = ACTIONS(5136), - [anon_sym_asm] = ACTIONS(5136), - [anon_sym___asm__] = ACTIONS(5136), - [anon_sym___asm] = ACTIONS(5136), - [anon_sym_DASH_GT] = ACTIONS(5138), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5136), - [anon_sym_decltype] = ACTIONS(5136), - [anon_sym_final] = ACTIONS(5136), - [anon_sym_override] = ACTIONS(5136), - [anon_sym_explicit] = ACTIONS(5136), - [anon_sym_typename] = ACTIONS(5136), - [anon_sym_template] = ACTIONS(5136), - [anon_sym_GT2] = ACTIONS(5138), - [anon_sym_operator] = ACTIONS(5136), - [anon_sym_try] = ACTIONS(5136), - [anon_sym_friend] = ACTIONS(5136), - [anon_sym_noexcept] = ACTIONS(5136), - [anon_sym_throw] = ACTIONS(5136), - [anon_sym_concept] = ACTIONS(5136), - [anon_sym_requires] = ACTIONS(5136), - }, - [1610] = { - [sym_identifier] = ACTIONS(5136), - [anon_sym_COMMA] = ACTIONS(5138), - [anon_sym_RPAREN] = ACTIONS(5138), - [anon_sym_LPAREN2] = ACTIONS(5138), - [anon_sym_TILDE] = ACTIONS(5138), - [anon_sym_STAR] = ACTIONS(5138), - [anon_sym_PIPE_PIPE] = ACTIONS(5138), - [anon_sym_AMP_AMP] = ACTIONS(5138), - [anon_sym_AMP] = ACTIONS(5136), - [anon_sym_SEMI] = ACTIONS(5138), - [anon_sym___extension__] = ACTIONS(5136), - [anon_sym_virtual] = ACTIONS(5136), - [anon_sym_extern] = ACTIONS(5136), - [anon_sym___attribute__] = ACTIONS(5136), - [anon_sym___attribute] = ACTIONS(5136), - [anon_sym_using] = ACTIONS(5136), - [anon_sym_COLON_COLON] = ACTIONS(5138), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5138), - [anon_sym___declspec] = ACTIONS(5136), - [anon_sym___based] = ACTIONS(5136), - [anon_sym___cdecl] = ACTIONS(5136), - [anon_sym___clrcall] = ACTIONS(5136), - [anon_sym___stdcall] = ACTIONS(5136), - [anon_sym___fastcall] = ACTIONS(5136), - [anon_sym___thiscall] = ACTIONS(5136), - [anon_sym___vectorcall] = ACTIONS(5136), - [anon_sym_LBRACE] = ACTIONS(5138), - [anon_sym_signed] = ACTIONS(5136), - [anon_sym_unsigned] = ACTIONS(5136), - [anon_sym_long] = ACTIONS(5136), - [anon_sym_short] = ACTIONS(5136), - [anon_sym_LBRACK] = ACTIONS(5136), - [anon_sym_static] = ACTIONS(5136), - [anon_sym_EQ] = ACTIONS(5138), - [anon_sym_register] = ACTIONS(5136), - [anon_sym_inline] = ACTIONS(5136), - [anon_sym___inline] = ACTIONS(5136), - [anon_sym___inline__] = ACTIONS(5136), - [anon_sym___forceinline] = ACTIONS(5136), - [anon_sym_thread_local] = ACTIONS(5136), - [anon_sym___thread] = ACTIONS(5136), - [anon_sym_const] = ACTIONS(5136), - [anon_sym_constexpr] = ACTIONS(5136), - [anon_sym_volatile] = ACTIONS(5136), - [anon_sym_restrict] = ACTIONS(5136), - [anon_sym___restrict__] = ACTIONS(5136), - [anon_sym__Atomic] = ACTIONS(5136), - [anon_sym__Noreturn] = ACTIONS(5136), - [anon_sym_noreturn] = ACTIONS(5136), - [anon_sym__Nonnull] = ACTIONS(5136), - [anon_sym_mutable] = ACTIONS(5136), - [anon_sym_constinit] = ACTIONS(5136), - [anon_sym_consteval] = ACTIONS(5136), - [anon_sym_alignas] = ACTIONS(5136), - [anon_sym__Alignas] = ACTIONS(5136), - [sym_primitive_type] = ACTIONS(5136), - [anon_sym_enum] = ACTIONS(5136), - [anon_sym_class] = ACTIONS(5136), - [anon_sym_struct] = ACTIONS(5136), - [anon_sym_union] = ACTIONS(5136), - [anon_sym_or] = ACTIONS(5136), - [anon_sym_and] = ACTIONS(5136), - [anon_sym_asm] = ACTIONS(5136), - [anon_sym___asm__] = ACTIONS(5136), - [anon_sym___asm] = ACTIONS(5136), - [anon_sym_DASH_GT] = ACTIONS(5138), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5136), - [anon_sym_decltype] = ACTIONS(5136), - [anon_sym_final] = ACTIONS(5136), - [anon_sym_override] = ACTIONS(5136), - [anon_sym_explicit] = ACTIONS(5136), - [anon_sym_typename] = ACTIONS(5136), - [anon_sym_template] = ACTIONS(5136), - [anon_sym_GT2] = ACTIONS(5138), - [anon_sym_operator] = ACTIONS(5136), - [anon_sym_try] = ACTIONS(5136), - [anon_sym_friend] = ACTIONS(5136), - [anon_sym_noexcept] = ACTIONS(5136), - [anon_sym_throw] = ACTIONS(5136), - [anon_sym_concept] = ACTIONS(5136), - [anon_sym_requires] = ACTIONS(5136), - }, - [1611] = { + [1628] = { [sym_identifier] = ACTIONS(5144), [anon_sym_COMMA] = ACTIONS(5146), [anon_sym_RPAREN] = ACTIONS(5146), @@ -240027,7 +242810,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_concept] = ACTIONS(5144), [anon_sym_requires] = ACTIONS(5144), }, - [1612] = { + [1629] = { [sym_identifier] = ACTIONS(5148), [anon_sym_COMMA] = ACTIONS(5150), [anon_sym_RPAREN] = ACTIONS(5150), @@ -240111,7 +242894,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_concept] = ACTIONS(5148), [anon_sym_requires] = ACTIONS(5148), }, - [1613] = { + [1630] = { [sym_identifier] = ACTIONS(5152), [anon_sym_COMMA] = ACTIONS(5154), [anon_sym_RPAREN] = ACTIONS(5154), @@ -240195,343 +242978,259 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_concept] = ACTIONS(5152), [anon_sym_requires] = ACTIONS(5152), }, - [1614] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1585), - [sym_identifier] = ACTIONS(5070), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5156), - [anon_sym_COMMA] = ACTIONS(5156), - [anon_sym_RPAREN] = ACTIONS(5156), - [anon_sym_LPAREN2] = ACTIONS(5156), - [anon_sym_DASH] = ACTIONS(5159), - [anon_sym_PLUS] = ACTIONS(5159), - [anon_sym_STAR] = ACTIONS(5159), - [anon_sym_SLASH] = ACTIONS(5159), - [anon_sym_PERCENT] = ACTIONS(5159), - [anon_sym_PIPE_PIPE] = ACTIONS(5156), - [anon_sym_AMP_AMP] = ACTIONS(5156), - [anon_sym_PIPE] = ACTIONS(5159), - [anon_sym_CARET] = ACTIONS(5159), - [anon_sym_AMP] = ACTIONS(5159), - [anon_sym_EQ_EQ] = ACTIONS(5156), - [anon_sym_BANG_EQ] = ACTIONS(5156), - [anon_sym_GT] = ACTIONS(5159), - [anon_sym_GT_EQ] = ACTIONS(5156), - [anon_sym_LT_EQ] = ACTIONS(5159), - [anon_sym_LT] = ACTIONS(5159), - [anon_sym_LT_LT] = ACTIONS(5159), - [anon_sym_GT_GT] = ACTIONS(5159), - [anon_sym_SEMI] = ACTIONS(5156), - [anon_sym___extension__] = ACTIONS(5070), - [anon_sym___attribute__] = ACTIONS(5159), - [anon_sym___attribute] = ACTIONS(5159), - [anon_sym_COLON] = ACTIONS(5156), - [anon_sym_LBRACE] = ACTIONS(5156), - [anon_sym_RBRACE] = ACTIONS(5156), - [anon_sym_signed] = ACTIONS(5074), - [anon_sym_unsigned] = ACTIONS(5074), - [anon_sym_long] = ACTIONS(5074), - [anon_sym_short] = ACTIONS(5074), + [1631] = { + [sym_identifier] = ACTIONS(5156), + [anon_sym_COMMA] = ACTIONS(5158), + [anon_sym_RPAREN] = ACTIONS(5158), + [anon_sym_LPAREN2] = ACTIONS(5158), + [anon_sym_TILDE] = ACTIONS(5158), + [anon_sym_STAR] = ACTIONS(5158), + [anon_sym_PIPE_PIPE] = ACTIONS(5158), + [anon_sym_AMP_AMP] = ACTIONS(5158), + [anon_sym_AMP] = ACTIONS(5156), + [anon_sym_SEMI] = ACTIONS(5158), + [anon_sym___extension__] = ACTIONS(5156), + [anon_sym_virtual] = ACTIONS(5156), + [anon_sym_extern] = ACTIONS(5156), + [anon_sym___attribute__] = ACTIONS(5156), + [anon_sym___attribute] = ACTIONS(5156), + [anon_sym_using] = ACTIONS(5156), + [anon_sym_COLON_COLON] = ACTIONS(5158), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5158), + [anon_sym___declspec] = ACTIONS(5156), + [anon_sym___based] = ACTIONS(5156), + [anon_sym___cdecl] = ACTIONS(5156), + [anon_sym___clrcall] = ACTIONS(5156), + [anon_sym___stdcall] = ACTIONS(5156), + [anon_sym___fastcall] = ACTIONS(5156), + [anon_sym___thiscall] = ACTIONS(5156), + [anon_sym___vectorcall] = ACTIONS(5156), + [anon_sym_LBRACE] = ACTIONS(5158), + [anon_sym_signed] = ACTIONS(5156), + [anon_sym_unsigned] = ACTIONS(5156), + [anon_sym_long] = ACTIONS(5156), + [anon_sym_short] = ACTIONS(5156), [anon_sym_LBRACK] = ACTIONS(5156), - [anon_sym_RBRACK] = ACTIONS(5156), - [anon_sym_EQ] = ACTIONS(5159), - [anon_sym_const] = ACTIONS(5070), - [anon_sym_constexpr] = ACTIONS(5070), - [anon_sym_volatile] = ACTIONS(5070), - [anon_sym_restrict] = ACTIONS(5070), - [anon_sym___restrict__] = ACTIONS(5070), - [anon_sym__Atomic] = ACTIONS(5070), - [anon_sym__Noreturn] = ACTIONS(5070), - [anon_sym_noreturn] = ACTIONS(5070), - [anon_sym__Nonnull] = ACTIONS(5070), - [anon_sym_mutable] = ACTIONS(5070), - [anon_sym_constinit] = ACTIONS(5070), - [anon_sym_consteval] = ACTIONS(5070), - [anon_sym_alignas] = ACTIONS(5070), - [anon_sym__Alignas] = ACTIONS(5070), - [sym_primitive_type] = ACTIONS(5070), - [anon_sym_QMARK] = ACTIONS(5156), - [anon_sym_STAR_EQ] = ACTIONS(5156), - [anon_sym_SLASH_EQ] = ACTIONS(5156), - [anon_sym_PERCENT_EQ] = ACTIONS(5156), - [anon_sym_PLUS_EQ] = ACTIONS(5156), - [anon_sym_DASH_EQ] = ACTIONS(5156), - [anon_sym_LT_LT_EQ] = ACTIONS(5156), - [anon_sym_GT_GT_EQ] = ACTIONS(5156), - [anon_sym_AMP_EQ] = ACTIONS(5156), - [anon_sym_CARET_EQ] = ACTIONS(5156), - [anon_sym_PIPE_EQ] = ACTIONS(5156), - [anon_sym_and_eq] = ACTIONS(5159), - [anon_sym_or_eq] = ACTIONS(5159), - [anon_sym_xor_eq] = ACTIONS(5159), - [anon_sym_LT_EQ_GT] = ACTIONS(5156), - [anon_sym_or] = ACTIONS(5159), - [anon_sym_and] = ACTIONS(5159), - [anon_sym_bitor] = ACTIONS(5159), - [anon_sym_xor] = ACTIONS(5159), - [anon_sym_bitand] = ACTIONS(5159), - [anon_sym_not_eq] = ACTIONS(5159), - [anon_sym_DASH_DASH] = ACTIONS(5156), - [anon_sym_PLUS_PLUS] = ACTIONS(5156), - [anon_sym_DOT] = ACTIONS(5159), - [anon_sym_DOT_STAR] = ACTIONS(5156), - [anon_sym_DASH_GT] = ACTIONS(5156), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5159), - [anon_sym_decltype] = ACTIONS(5159), + [anon_sym_static] = ACTIONS(5156), + [anon_sym_EQ] = ACTIONS(5158), + [anon_sym_register] = ACTIONS(5156), + [anon_sym_inline] = ACTIONS(5156), + [anon_sym___inline] = ACTIONS(5156), + [anon_sym___inline__] = ACTIONS(5156), + [anon_sym___forceinline] = ACTIONS(5156), + [anon_sym_thread_local] = ACTIONS(5156), + [anon_sym___thread] = ACTIONS(5156), + [anon_sym_const] = ACTIONS(5156), + [anon_sym_constexpr] = ACTIONS(5156), + [anon_sym_volatile] = ACTIONS(5156), + [anon_sym_restrict] = ACTIONS(5156), + [anon_sym___restrict__] = ACTIONS(5156), + [anon_sym__Atomic] = ACTIONS(5156), + [anon_sym__Noreturn] = ACTIONS(5156), + [anon_sym_noreturn] = ACTIONS(5156), + [anon_sym__Nonnull] = ACTIONS(5156), + [anon_sym_mutable] = ACTIONS(5156), + [anon_sym_constinit] = ACTIONS(5156), + [anon_sym_consteval] = ACTIONS(5156), + [anon_sym_alignas] = ACTIONS(5156), + [anon_sym__Alignas] = ACTIONS(5156), + [sym_primitive_type] = ACTIONS(5156), + [anon_sym_enum] = ACTIONS(5156), + [anon_sym_class] = ACTIONS(5156), + [anon_sym_struct] = ACTIONS(5156), + [anon_sym_union] = ACTIONS(5156), + [anon_sym_or] = ACTIONS(5156), + [anon_sym_and] = ACTIONS(5156), + [anon_sym_asm] = ACTIONS(5156), + [anon_sym___asm__] = ACTIONS(5156), + [anon_sym___asm] = ACTIONS(5156), + [anon_sym_DASH_GT] = ACTIONS(5158), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5156), + [anon_sym_decltype] = ACTIONS(5156), + [anon_sym_final] = ACTIONS(5156), + [anon_sym_override] = ACTIONS(5156), + [anon_sym_explicit] = ACTIONS(5156), + [anon_sym_typename] = ACTIONS(5156), + [anon_sym_template] = ACTIONS(5156), + [anon_sym_GT2] = ACTIONS(5158), + [anon_sym_operator] = ACTIONS(5156), + [anon_sym_try] = ACTIONS(5156), + [anon_sym_friend] = ACTIONS(5156), + [anon_sym_noexcept] = ACTIONS(5156), + [anon_sym_throw] = ACTIONS(5156), + [anon_sym_concept] = ACTIONS(5156), + [anon_sym_requires] = ACTIONS(5156), }, - [1615] = { - [sym_identifier] = ACTIONS(5162), - [anon_sym_COMMA] = ACTIONS(5164), - [anon_sym_RPAREN] = ACTIONS(5164), - [anon_sym_LPAREN2] = ACTIONS(5164), - [anon_sym_TILDE] = ACTIONS(5164), + [1632] = { + [sym_identifier] = ACTIONS(5160), + [anon_sym_COMMA] = ACTIONS(5162), + [anon_sym_RPAREN] = ACTIONS(5162), + [anon_sym_LPAREN2] = ACTIONS(5162), + [anon_sym_TILDE] = ACTIONS(5162), + [anon_sym_STAR] = ACTIONS(5162), + [anon_sym_PIPE_PIPE] = ACTIONS(5162), + [anon_sym_AMP_AMP] = ACTIONS(5162), + [anon_sym_AMP] = ACTIONS(5160), + [anon_sym_SEMI] = ACTIONS(5162), + [anon_sym___extension__] = ACTIONS(5160), + [anon_sym_virtual] = ACTIONS(5160), + [anon_sym_extern] = ACTIONS(5160), + [anon_sym___attribute__] = ACTIONS(5160), + [anon_sym___attribute] = ACTIONS(5160), + [anon_sym_using] = ACTIONS(5160), + [anon_sym_COLON_COLON] = ACTIONS(5162), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5162), + [anon_sym___declspec] = ACTIONS(5160), + [anon_sym___based] = ACTIONS(5160), + [anon_sym___cdecl] = ACTIONS(5160), + [anon_sym___clrcall] = ACTIONS(5160), + [anon_sym___stdcall] = ACTIONS(5160), + [anon_sym___fastcall] = ACTIONS(5160), + [anon_sym___thiscall] = ACTIONS(5160), + [anon_sym___vectorcall] = ACTIONS(5160), + [anon_sym_LBRACE] = ACTIONS(5162), + [anon_sym_signed] = ACTIONS(5160), + [anon_sym_unsigned] = ACTIONS(5160), + [anon_sym_long] = ACTIONS(5160), + [anon_sym_short] = ACTIONS(5160), + [anon_sym_LBRACK] = ACTIONS(5160), + [anon_sym_static] = ACTIONS(5160), + [anon_sym_EQ] = ACTIONS(5162), + [anon_sym_register] = ACTIONS(5160), + [anon_sym_inline] = ACTIONS(5160), + [anon_sym___inline] = ACTIONS(5160), + [anon_sym___inline__] = ACTIONS(5160), + [anon_sym___forceinline] = ACTIONS(5160), + [anon_sym_thread_local] = ACTIONS(5160), + [anon_sym___thread] = ACTIONS(5160), + [anon_sym_const] = ACTIONS(5160), + [anon_sym_constexpr] = ACTIONS(5160), + [anon_sym_volatile] = ACTIONS(5160), + [anon_sym_restrict] = ACTIONS(5160), + [anon_sym___restrict__] = ACTIONS(5160), + [anon_sym__Atomic] = ACTIONS(5160), + [anon_sym__Noreturn] = ACTIONS(5160), + [anon_sym_noreturn] = ACTIONS(5160), + [anon_sym__Nonnull] = ACTIONS(5160), + [anon_sym_mutable] = ACTIONS(5160), + [anon_sym_constinit] = ACTIONS(5160), + [anon_sym_consteval] = ACTIONS(5160), + [anon_sym_alignas] = ACTIONS(5160), + [anon_sym__Alignas] = ACTIONS(5160), + [sym_primitive_type] = ACTIONS(5160), + [anon_sym_enum] = ACTIONS(5160), + [anon_sym_class] = ACTIONS(5160), + [anon_sym_struct] = ACTIONS(5160), + [anon_sym_union] = ACTIONS(5160), + [anon_sym_or] = ACTIONS(5160), + [anon_sym_and] = ACTIONS(5160), + [anon_sym_asm] = ACTIONS(5160), + [anon_sym___asm__] = ACTIONS(5160), + [anon_sym___asm] = ACTIONS(5160), + [anon_sym_DASH_GT] = ACTIONS(5162), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5160), + [anon_sym_decltype] = ACTIONS(5160), + [anon_sym_final] = ACTIONS(5160), + [anon_sym_override] = ACTIONS(5160), + [anon_sym_explicit] = ACTIONS(5160), + [anon_sym_typename] = ACTIONS(5160), + [anon_sym_template] = ACTIONS(5160), + [anon_sym_GT2] = ACTIONS(5162), + [anon_sym_operator] = ACTIONS(5160), + [anon_sym_try] = ACTIONS(5160), + [anon_sym_friend] = ACTIONS(5160), + [anon_sym_noexcept] = ACTIONS(5160), + [anon_sym_throw] = ACTIONS(5160), + [anon_sym_concept] = ACTIONS(5160), + [anon_sym_requires] = ACTIONS(5160), + }, + [1633] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1608), + [sym_identifier] = ACTIONS(5164), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5167), + [anon_sym_COMMA] = ACTIONS(5167), + [aux_sym_preproc_if_token2] = ACTIONS(5167), + [aux_sym_preproc_else_token1] = ACTIONS(5167), + [aux_sym_preproc_elif_token1] = ACTIONS(5164), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5167), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5167), + [anon_sym_LPAREN2] = ACTIONS(5167), + [anon_sym_DASH] = ACTIONS(5164), + [anon_sym_PLUS] = ACTIONS(5164), [anon_sym_STAR] = ACTIONS(5164), - [anon_sym_PIPE_PIPE] = ACTIONS(5164), - [anon_sym_AMP_AMP] = ACTIONS(5164), - [anon_sym_AMP] = ACTIONS(5162), - [anon_sym_SEMI] = ACTIONS(5164), - [anon_sym___extension__] = ACTIONS(5162), - [anon_sym_virtual] = ACTIONS(5162), - [anon_sym_extern] = ACTIONS(5162), - [anon_sym___attribute__] = ACTIONS(5162), - [anon_sym___attribute] = ACTIONS(5162), - [anon_sym_using] = ACTIONS(5162), - [anon_sym_COLON_COLON] = ACTIONS(5164), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5164), - [anon_sym___declspec] = ACTIONS(5162), - [anon_sym___based] = ACTIONS(5162), - [anon_sym___cdecl] = ACTIONS(5162), - [anon_sym___clrcall] = ACTIONS(5162), - [anon_sym___stdcall] = ACTIONS(5162), - [anon_sym___fastcall] = ACTIONS(5162), - [anon_sym___thiscall] = ACTIONS(5162), - [anon_sym___vectorcall] = ACTIONS(5162), - [anon_sym_LBRACE] = ACTIONS(5164), - [anon_sym_signed] = ACTIONS(5162), - [anon_sym_unsigned] = ACTIONS(5162), - [anon_sym_long] = ACTIONS(5162), - [anon_sym_short] = ACTIONS(5162), - [anon_sym_LBRACK] = ACTIONS(5162), - [anon_sym_static] = ACTIONS(5162), + [anon_sym_SLASH] = ACTIONS(5164), + [anon_sym_PERCENT] = ACTIONS(5164), + [anon_sym_PIPE_PIPE] = ACTIONS(5167), + [anon_sym_AMP_AMP] = ACTIONS(5167), + [anon_sym_PIPE] = ACTIONS(5164), + [anon_sym_CARET] = ACTIONS(5164), + [anon_sym_AMP] = ACTIONS(5164), + [anon_sym_EQ_EQ] = ACTIONS(5167), + [anon_sym_BANG_EQ] = ACTIONS(5167), + [anon_sym_GT] = ACTIONS(5164), + [anon_sym_GT_EQ] = ACTIONS(5167), + [anon_sym_LT_EQ] = ACTIONS(5164), + [anon_sym_LT] = ACTIONS(5164), + [anon_sym_LT_LT] = ACTIONS(5164), + [anon_sym_GT_GT] = ACTIONS(5164), + [anon_sym___extension__] = ACTIONS(5078), + [anon_sym___attribute__] = ACTIONS(5164), + [anon_sym___attribute] = ACTIONS(5164), + [anon_sym_LBRACE] = ACTIONS(5167), + [anon_sym_signed] = ACTIONS(5082), + [anon_sym_unsigned] = ACTIONS(5082), + [anon_sym_long] = ACTIONS(5082), + [anon_sym_short] = ACTIONS(5082), + [anon_sym_LBRACK] = ACTIONS(5167), [anon_sym_EQ] = ACTIONS(5164), - [anon_sym_register] = ACTIONS(5162), - [anon_sym_inline] = ACTIONS(5162), - [anon_sym___inline] = ACTIONS(5162), - [anon_sym___inline__] = ACTIONS(5162), - [anon_sym___forceinline] = ACTIONS(5162), - [anon_sym_thread_local] = ACTIONS(5162), - [anon_sym___thread] = ACTIONS(5162), - [anon_sym_const] = ACTIONS(5162), - [anon_sym_constexpr] = ACTIONS(5162), - [anon_sym_volatile] = ACTIONS(5162), - [anon_sym_restrict] = ACTIONS(5162), - [anon_sym___restrict__] = ACTIONS(5162), - [anon_sym__Atomic] = ACTIONS(5162), - [anon_sym__Noreturn] = ACTIONS(5162), - [anon_sym_noreturn] = ACTIONS(5162), - [anon_sym__Nonnull] = ACTIONS(5162), - [anon_sym_mutable] = ACTIONS(5162), - [anon_sym_constinit] = ACTIONS(5162), - [anon_sym_consteval] = ACTIONS(5162), - [anon_sym_alignas] = ACTIONS(5162), - [anon_sym__Alignas] = ACTIONS(5162), - [sym_primitive_type] = ACTIONS(5162), - [anon_sym_enum] = ACTIONS(5162), - [anon_sym_class] = ACTIONS(5162), - [anon_sym_struct] = ACTIONS(5162), - [anon_sym_union] = ACTIONS(5162), - [anon_sym_or] = ACTIONS(5162), - [anon_sym_and] = ACTIONS(5162), - [anon_sym_asm] = ACTIONS(5162), - [anon_sym___asm__] = ACTIONS(5162), - [anon_sym___asm] = ACTIONS(5162), - [anon_sym_DASH_GT] = ACTIONS(5164), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5162), - [anon_sym_decltype] = ACTIONS(5162), - [anon_sym_final] = ACTIONS(5162), - [anon_sym_override] = ACTIONS(5162), - [anon_sym_explicit] = ACTIONS(5162), - [anon_sym_typename] = ACTIONS(5162), - [anon_sym_template] = ACTIONS(5162), - [anon_sym_GT2] = ACTIONS(5164), - [anon_sym_operator] = ACTIONS(5162), - [anon_sym_try] = ACTIONS(5162), - [anon_sym_friend] = ACTIONS(5162), - [anon_sym_noexcept] = ACTIONS(5162), - [anon_sym_throw] = ACTIONS(5162), - [anon_sym_concept] = ACTIONS(5162), - [anon_sym_requires] = ACTIONS(5162), - }, - [1616] = { - [sym_identifier] = ACTIONS(5166), - [anon_sym_COMMA] = ACTIONS(5168), - [anon_sym_RPAREN] = ACTIONS(5168), - [anon_sym_LPAREN2] = ACTIONS(5168), - [anon_sym_TILDE] = ACTIONS(5168), - [anon_sym_STAR] = ACTIONS(5168), - [anon_sym_PIPE_PIPE] = ACTIONS(5168), - [anon_sym_AMP_AMP] = ACTIONS(5168), - [anon_sym_AMP] = ACTIONS(5166), - [anon_sym_SEMI] = ACTIONS(5168), - [anon_sym___extension__] = ACTIONS(5166), - [anon_sym_virtual] = ACTIONS(5166), - [anon_sym_extern] = ACTIONS(5166), - [anon_sym___attribute__] = ACTIONS(5166), - [anon_sym___attribute] = ACTIONS(5166), - [anon_sym_using] = ACTIONS(5166), - [anon_sym_COLON_COLON] = ACTIONS(5168), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5168), - [anon_sym___declspec] = ACTIONS(5166), - [anon_sym___based] = ACTIONS(5166), - [anon_sym___cdecl] = ACTIONS(5166), - [anon_sym___clrcall] = ACTIONS(5166), - [anon_sym___stdcall] = ACTIONS(5166), - [anon_sym___fastcall] = ACTIONS(5166), - [anon_sym___thiscall] = ACTIONS(5166), - [anon_sym___vectorcall] = ACTIONS(5166), - [anon_sym_LBRACE] = ACTIONS(5168), - [anon_sym_signed] = ACTIONS(5166), - [anon_sym_unsigned] = ACTIONS(5166), - [anon_sym_long] = ACTIONS(5166), - [anon_sym_short] = ACTIONS(5166), - [anon_sym_LBRACK] = ACTIONS(5166), - [anon_sym_static] = ACTIONS(5166), - [anon_sym_EQ] = ACTIONS(5168), - [anon_sym_register] = ACTIONS(5166), - [anon_sym_inline] = ACTIONS(5166), - [anon_sym___inline] = ACTIONS(5166), - [anon_sym___inline__] = ACTIONS(5166), - [anon_sym___forceinline] = ACTIONS(5166), - [anon_sym_thread_local] = ACTIONS(5166), - [anon_sym___thread] = ACTIONS(5166), - [anon_sym_const] = ACTIONS(5166), - [anon_sym_constexpr] = ACTIONS(5166), - [anon_sym_volatile] = ACTIONS(5166), - [anon_sym_restrict] = ACTIONS(5166), - [anon_sym___restrict__] = ACTIONS(5166), - [anon_sym__Atomic] = ACTIONS(5166), - [anon_sym__Noreturn] = ACTIONS(5166), - [anon_sym_noreturn] = ACTIONS(5166), - [anon_sym__Nonnull] = ACTIONS(5166), - [anon_sym_mutable] = ACTIONS(5166), - [anon_sym_constinit] = ACTIONS(5166), - [anon_sym_consteval] = ACTIONS(5166), - [anon_sym_alignas] = ACTIONS(5166), - [anon_sym__Alignas] = ACTIONS(5166), - [sym_primitive_type] = ACTIONS(5166), - [anon_sym_enum] = ACTIONS(5166), - [anon_sym_class] = ACTIONS(5166), - [anon_sym_struct] = ACTIONS(5166), - [anon_sym_union] = ACTIONS(5166), - [anon_sym_or] = ACTIONS(5166), - [anon_sym_and] = ACTIONS(5166), - [anon_sym_asm] = ACTIONS(5166), - [anon_sym___asm__] = ACTIONS(5166), - [anon_sym___asm] = ACTIONS(5166), - [anon_sym_DASH_GT] = ACTIONS(5168), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5166), - [anon_sym_decltype] = ACTIONS(5166), - [anon_sym_final] = ACTIONS(5166), - [anon_sym_override] = ACTIONS(5166), - [anon_sym_explicit] = ACTIONS(5166), - [anon_sym_typename] = ACTIONS(5166), - [anon_sym_template] = ACTIONS(5166), - [anon_sym_GT2] = ACTIONS(5168), - [anon_sym_operator] = ACTIONS(5166), - [anon_sym_try] = ACTIONS(5166), - [anon_sym_friend] = ACTIONS(5166), - [anon_sym_noexcept] = ACTIONS(5166), - [anon_sym_throw] = ACTIONS(5166), - [anon_sym_concept] = ACTIONS(5166), - [anon_sym_requires] = ACTIONS(5166), - }, - [1617] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1585), - [sym_identifier] = ACTIONS(5159), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5156), - [anon_sym_COMMA] = ACTIONS(5156), - [aux_sym_preproc_if_token2] = ACTIONS(5156), - [aux_sym_preproc_else_token1] = ACTIONS(5156), - [aux_sym_preproc_elif_token1] = ACTIONS(5159), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5156), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5156), - [anon_sym_LPAREN2] = ACTIONS(5156), - [anon_sym_DASH] = ACTIONS(5159), - [anon_sym_PLUS] = ACTIONS(5159), - [anon_sym_STAR] = ACTIONS(5159), - [anon_sym_SLASH] = ACTIONS(5159), - [anon_sym_PERCENT] = ACTIONS(5159), - [anon_sym_PIPE_PIPE] = ACTIONS(5156), - [anon_sym_AMP_AMP] = ACTIONS(5156), - [anon_sym_PIPE] = ACTIONS(5159), - [anon_sym_CARET] = ACTIONS(5159), - [anon_sym_AMP] = ACTIONS(5159), - [anon_sym_EQ_EQ] = ACTIONS(5156), - [anon_sym_BANG_EQ] = ACTIONS(5156), - [anon_sym_GT] = ACTIONS(5159), - [anon_sym_GT_EQ] = ACTIONS(5156), - [anon_sym_LT_EQ] = ACTIONS(5159), - [anon_sym_LT] = ACTIONS(5159), - [anon_sym_LT_LT] = ACTIONS(5159), - [anon_sym_GT_GT] = ACTIONS(5159), - [anon_sym___extension__] = ACTIONS(5070), - [anon_sym___attribute__] = ACTIONS(5159), - [anon_sym___attribute] = ACTIONS(5159), - [anon_sym_LBRACE] = ACTIONS(5156), - [anon_sym_signed] = ACTIONS(5074), - [anon_sym_unsigned] = ACTIONS(5074), - [anon_sym_long] = ACTIONS(5074), - [anon_sym_short] = ACTIONS(5074), - [anon_sym_LBRACK] = ACTIONS(5156), - [anon_sym_EQ] = ACTIONS(5159), - [anon_sym_const] = ACTIONS(5070), - [anon_sym_constexpr] = ACTIONS(5070), - [anon_sym_volatile] = ACTIONS(5070), - [anon_sym_restrict] = ACTIONS(5070), - [anon_sym___restrict__] = ACTIONS(5070), - [anon_sym__Atomic] = ACTIONS(5070), - [anon_sym__Noreturn] = ACTIONS(5070), - [anon_sym_noreturn] = ACTIONS(5070), - [anon_sym__Nonnull] = ACTIONS(5070), - [anon_sym_mutable] = ACTIONS(5070), - [anon_sym_constinit] = ACTIONS(5070), - [anon_sym_consteval] = ACTIONS(5070), - [anon_sym_alignas] = ACTIONS(5070), - [anon_sym__Alignas] = ACTIONS(5070), - [sym_primitive_type] = ACTIONS(5070), - [anon_sym_QMARK] = ACTIONS(5156), - [anon_sym_STAR_EQ] = ACTIONS(5156), - [anon_sym_SLASH_EQ] = ACTIONS(5156), - [anon_sym_PERCENT_EQ] = ACTIONS(5156), - [anon_sym_PLUS_EQ] = ACTIONS(5156), - [anon_sym_DASH_EQ] = ACTIONS(5156), - [anon_sym_LT_LT_EQ] = ACTIONS(5156), - [anon_sym_GT_GT_EQ] = ACTIONS(5156), - [anon_sym_AMP_EQ] = ACTIONS(5156), - [anon_sym_CARET_EQ] = ACTIONS(5156), - [anon_sym_PIPE_EQ] = ACTIONS(5156), - [anon_sym_and_eq] = ACTIONS(5159), - [anon_sym_or_eq] = ACTIONS(5159), - [anon_sym_xor_eq] = ACTIONS(5159), - [anon_sym_LT_EQ_GT] = ACTIONS(5156), - [anon_sym_or] = ACTIONS(5159), - [anon_sym_and] = ACTIONS(5159), - [anon_sym_bitor] = ACTIONS(5159), - [anon_sym_xor] = ACTIONS(5159), - [anon_sym_bitand] = ACTIONS(5159), - [anon_sym_not_eq] = ACTIONS(5159), - [anon_sym_DASH_DASH] = ACTIONS(5156), - [anon_sym_PLUS_PLUS] = ACTIONS(5156), - [anon_sym_DOT] = ACTIONS(5159), - [anon_sym_DOT_STAR] = ACTIONS(5156), - [anon_sym_DASH_GT] = ACTIONS(5156), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5159), - [anon_sym_decltype] = ACTIONS(5159), + [anon_sym_const] = ACTIONS(5078), + [anon_sym_constexpr] = ACTIONS(5078), + [anon_sym_volatile] = ACTIONS(5078), + [anon_sym_restrict] = ACTIONS(5078), + [anon_sym___restrict__] = ACTIONS(5078), + [anon_sym__Atomic] = ACTIONS(5078), + [anon_sym__Noreturn] = ACTIONS(5078), + [anon_sym_noreturn] = ACTIONS(5078), + [anon_sym__Nonnull] = ACTIONS(5078), + [anon_sym_mutable] = ACTIONS(5078), + [anon_sym_constinit] = ACTIONS(5078), + [anon_sym_consteval] = ACTIONS(5078), + [anon_sym_alignas] = ACTIONS(5078), + [anon_sym__Alignas] = ACTIONS(5078), + [sym_primitive_type] = ACTIONS(5078), + [anon_sym_QMARK] = ACTIONS(5167), + [anon_sym_STAR_EQ] = ACTIONS(5167), + [anon_sym_SLASH_EQ] = ACTIONS(5167), + [anon_sym_PERCENT_EQ] = ACTIONS(5167), + [anon_sym_PLUS_EQ] = ACTIONS(5167), + [anon_sym_DASH_EQ] = ACTIONS(5167), + [anon_sym_LT_LT_EQ] = ACTIONS(5167), + [anon_sym_GT_GT_EQ] = ACTIONS(5167), + [anon_sym_AMP_EQ] = ACTIONS(5167), + [anon_sym_CARET_EQ] = ACTIONS(5167), + [anon_sym_PIPE_EQ] = ACTIONS(5167), + [anon_sym_and_eq] = ACTIONS(5164), + [anon_sym_or_eq] = ACTIONS(5164), + [anon_sym_xor_eq] = ACTIONS(5164), + [anon_sym_LT_EQ_GT] = ACTIONS(5167), + [anon_sym_or] = ACTIONS(5164), + [anon_sym_and] = ACTIONS(5164), + [anon_sym_bitor] = ACTIONS(5164), + [anon_sym_xor] = ACTIONS(5164), + [anon_sym_bitand] = ACTIONS(5164), + [anon_sym_not_eq] = ACTIONS(5164), + [anon_sym_DASH_DASH] = ACTIONS(5167), + [anon_sym_PLUS_PLUS] = ACTIONS(5167), + [anon_sym_DOT] = ACTIONS(5164), + [anon_sym_DOT_STAR] = ACTIONS(5167), + [anon_sym_DASH_GT] = ACTIONS(5167), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5164), + [anon_sym_decltype] = ACTIONS(5164), }, - [1618] = { + [1634] = { [sym_identifier] = ACTIONS(5170), [anon_sym_COMMA] = ACTIONS(5172), [anon_sym_RPAREN] = ACTIONS(5172), @@ -240615,91 +243314,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_concept] = ACTIONS(5170), [anon_sym_requires] = ACTIONS(5170), }, - [1619] = { - [sym_type_qualifier] = STATE(1605), - [sym_alignas_qualifier] = STATE(1651), - [aux_sym__type_definition_type_repeat1] = STATE(1605), - [aux_sym_sized_type_specifier_repeat1] = STATE(1649), + [1635] = { + [sym_type_qualifier] = STATE(1626), + [sym_alignas_qualifier] = STATE(1672), + [aux_sym__type_definition_type_repeat1] = STATE(1626), + [aux_sym_sized_type_specifier_repeat1] = STATE(1653), [sym_identifier] = ACTIONS(5174), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5086), - [anon_sym_COMMA] = ACTIONS(5086), - [anon_sym_RPAREN] = ACTIONS(5086), - [anon_sym_LPAREN2] = ACTIONS(5086), - [anon_sym_DASH] = ACTIONS(5088), - [anon_sym_PLUS] = ACTIONS(5088), - [anon_sym_STAR] = ACTIONS(5088), - [anon_sym_SLASH] = ACTIONS(5088), - [anon_sym_PERCENT] = ACTIONS(5088), - [anon_sym_PIPE_PIPE] = ACTIONS(5086), - [anon_sym_AMP_AMP] = ACTIONS(5086), - [anon_sym_PIPE] = ACTIONS(5088), - [anon_sym_CARET] = ACTIONS(5088), - [anon_sym_AMP] = ACTIONS(5088), - [anon_sym_EQ_EQ] = ACTIONS(5086), - [anon_sym_BANG_EQ] = ACTIONS(5086), - [anon_sym_GT] = ACTIONS(5088), - [anon_sym_GT_EQ] = ACTIONS(5086), - [anon_sym_LT_EQ] = ACTIONS(5088), - [anon_sym_LT] = ACTIONS(5088), - [anon_sym_LT_LT] = ACTIONS(5088), - [anon_sym_GT_GT] = ACTIONS(5088), - [anon_sym___extension__] = ACTIONS(5124), - [anon_sym___attribute__] = ACTIONS(5088), - [anon_sym___attribute] = ACTIONS(5088), - [anon_sym_LBRACE] = ACTIONS(5086), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5094), + [anon_sym_COMMA] = ACTIONS(5094), + [anon_sym_RPAREN] = ACTIONS(5094), + [anon_sym_LPAREN2] = ACTIONS(5094), + [anon_sym_DASH] = ACTIONS(5096), + [anon_sym_PLUS] = ACTIONS(5096), + [anon_sym_STAR] = ACTIONS(5096), + [anon_sym_SLASH] = ACTIONS(5096), + [anon_sym_PERCENT] = ACTIONS(5096), + [anon_sym_PIPE_PIPE] = ACTIONS(5094), + [anon_sym_AMP_AMP] = ACTIONS(5094), + [anon_sym_PIPE] = ACTIONS(5096), + [anon_sym_CARET] = ACTIONS(5096), + [anon_sym_AMP] = ACTIONS(5096), + [anon_sym_EQ_EQ] = ACTIONS(5094), + [anon_sym_BANG_EQ] = ACTIONS(5094), + [anon_sym_GT] = ACTIONS(5096), + [anon_sym_GT_EQ] = ACTIONS(5094), + [anon_sym_LT_EQ] = ACTIONS(5096), + [anon_sym_LT] = ACTIONS(5096), + [anon_sym_LT_LT] = ACTIONS(5096), + [anon_sym_GT_GT] = ACTIONS(5096), + [anon_sym___extension__] = ACTIONS(5132), + [anon_sym___attribute__] = ACTIONS(5096), + [anon_sym___attribute] = ACTIONS(5096), + [anon_sym_LBRACE] = ACTIONS(5094), [anon_sym_signed] = ACTIONS(5176), [anon_sym_unsigned] = ACTIONS(5176), [anon_sym_long] = ACTIONS(5176), [anon_sym_short] = ACTIONS(5176), - [anon_sym_LBRACK] = ACTIONS(5086), - [anon_sym_EQ] = ACTIONS(5088), - [anon_sym_const] = ACTIONS(5124), - [anon_sym_constexpr] = ACTIONS(5124), - [anon_sym_volatile] = ACTIONS(5124), - [anon_sym_restrict] = ACTIONS(5124), - [anon_sym___restrict__] = ACTIONS(5124), - [anon_sym__Atomic] = ACTIONS(5124), - [anon_sym__Noreturn] = ACTIONS(5124), - [anon_sym_noreturn] = ACTIONS(5124), - [anon_sym__Nonnull] = ACTIONS(5124), - [anon_sym_mutable] = ACTIONS(5124), - [anon_sym_constinit] = ACTIONS(5124), - [anon_sym_consteval] = ACTIONS(5124), - [anon_sym_alignas] = ACTIONS(5128), - [anon_sym__Alignas] = ACTIONS(5128), + [anon_sym_LBRACK] = ACTIONS(5094), + [anon_sym_EQ] = ACTIONS(5096), + [anon_sym_const] = ACTIONS(5132), + [anon_sym_constexpr] = ACTIONS(5132), + [anon_sym_volatile] = ACTIONS(5132), + [anon_sym_restrict] = ACTIONS(5132), + [anon_sym___restrict__] = ACTIONS(5132), + [anon_sym__Atomic] = ACTIONS(5132), + [anon_sym__Noreturn] = ACTIONS(5132), + [anon_sym_noreturn] = ACTIONS(5132), + [anon_sym__Nonnull] = ACTIONS(5132), + [anon_sym_mutable] = ACTIONS(5132), + [anon_sym_constinit] = ACTIONS(5132), + [anon_sym_consteval] = ACTIONS(5132), + [anon_sym_alignas] = ACTIONS(5136), + [anon_sym__Alignas] = ACTIONS(5136), [sym_primitive_type] = ACTIONS(5178), - [anon_sym_QMARK] = ACTIONS(5086), - [anon_sym_STAR_EQ] = ACTIONS(5086), - [anon_sym_SLASH_EQ] = ACTIONS(5086), - [anon_sym_PERCENT_EQ] = ACTIONS(5086), - [anon_sym_PLUS_EQ] = ACTIONS(5086), - [anon_sym_DASH_EQ] = ACTIONS(5086), - [anon_sym_LT_LT_EQ] = ACTIONS(5086), - [anon_sym_GT_GT_EQ] = ACTIONS(5086), - [anon_sym_AMP_EQ] = ACTIONS(5086), - [anon_sym_CARET_EQ] = ACTIONS(5086), - [anon_sym_PIPE_EQ] = ACTIONS(5086), - [anon_sym_and_eq] = ACTIONS(5088), - [anon_sym_or_eq] = ACTIONS(5088), - [anon_sym_xor_eq] = ACTIONS(5088), - [anon_sym_LT_EQ_GT] = ACTIONS(5086), - [anon_sym_or] = ACTIONS(5088), - [anon_sym_and] = ACTIONS(5088), - [anon_sym_bitor] = ACTIONS(5088), - [anon_sym_xor] = ACTIONS(5088), - [anon_sym_bitand] = ACTIONS(5088), - [anon_sym_not_eq] = ACTIONS(5088), - [anon_sym_DASH_DASH] = ACTIONS(5086), - [anon_sym_PLUS_PLUS] = ACTIONS(5086), - [anon_sym_DOT] = ACTIONS(5088), - [anon_sym_DOT_STAR] = ACTIONS(5086), - [anon_sym_DASH_GT] = ACTIONS(5088), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5088), - [anon_sym_decltype] = ACTIONS(5088), - [anon_sym_DASH_GT_STAR] = ACTIONS(5086), + [anon_sym_QMARK] = ACTIONS(5094), + [anon_sym_STAR_EQ] = ACTIONS(5094), + [anon_sym_SLASH_EQ] = ACTIONS(5094), + [anon_sym_PERCENT_EQ] = ACTIONS(5094), + [anon_sym_PLUS_EQ] = ACTIONS(5094), + [anon_sym_DASH_EQ] = ACTIONS(5094), + [anon_sym_LT_LT_EQ] = ACTIONS(5094), + [anon_sym_GT_GT_EQ] = ACTIONS(5094), + [anon_sym_AMP_EQ] = ACTIONS(5094), + [anon_sym_CARET_EQ] = ACTIONS(5094), + [anon_sym_PIPE_EQ] = ACTIONS(5094), + [anon_sym_and_eq] = ACTIONS(5096), + [anon_sym_or_eq] = ACTIONS(5096), + [anon_sym_xor_eq] = ACTIONS(5096), + [anon_sym_LT_EQ_GT] = ACTIONS(5094), + [anon_sym_or] = ACTIONS(5096), + [anon_sym_and] = ACTIONS(5096), + [anon_sym_bitor] = ACTIONS(5096), + [anon_sym_xor] = ACTIONS(5096), + [anon_sym_bitand] = ACTIONS(5096), + [anon_sym_not_eq] = ACTIONS(5096), + [anon_sym_DASH_DASH] = ACTIONS(5094), + [anon_sym_PLUS_PLUS] = ACTIONS(5094), + [anon_sym_DOT] = ACTIONS(5096), + [anon_sym_DOT_STAR] = ACTIONS(5094), + [anon_sym_DASH_GT] = ACTIONS(5096), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5096), + [anon_sym_decltype] = ACTIONS(5096), + [anon_sym_DASH_GT_STAR] = ACTIONS(5094), }, - [1620] = { + [1636] = { [sym_identifier] = ACTIONS(5180), [anon_sym_COMMA] = ACTIONS(5182), [anon_sym_RPAREN] = ACTIONS(5182), @@ -240783,7 +243482,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_concept] = ACTIONS(5180), [anon_sym_requires] = ACTIONS(5180), }, - [1621] = { + [1637] = { [sym_identifier] = ACTIONS(5184), [anon_sym_COMMA] = ACTIONS(5186), [anon_sym_RPAREN] = ACTIONS(5186), @@ -240867,7 +243566,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_concept] = ACTIONS(5184), [anon_sym_requires] = ACTIONS(5184), }, - [1622] = { + [1638] = { [sym_identifier] = ACTIONS(5188), [anon_sym_COMMA] = ACTIONS(5190), [anon_sym_RPAREN] = ACTIONS(5190), @@ -240951,7 +243650,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_concept] = ACTIONS(5188), [anon_sym_requires] = ACTIONS(5188), }, - [1623] = { + [1639] = { [sym_identifier] = ACTIONS(5192), [anon_sym_COMMA] = ACTIONS(5194), [anon_sym_RPAREN] = ACTIONS(5194), @@ -241035,291 +243734,711 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_concept] = ACTIONS(5192), [anon_sym_requires] = ACTIONS(5192), }, - [1624] = { - [sym_type_qualifier] = STATE(1628), - [sym_alignas_qualifier] = STATE(1660), - [aux_sym__type_definition_type_repeat1] = STATE(1628), - [aux_sym_sized_type_specifier_repeat1] = STATE(2608), + [1640] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1608), + [sym_identifier] = ACTIONS(5078), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5167), + [anon_sym_COMMA] = ACTIONS(5167), + [anon_sym_RPAREN] = ACTIONS(5167), + [anon_sym_LPAREN2] = ACTIONS(5167), + [anon_sym_DASH] = ACTIONS(5164), + [anon_sym_PLUS] = ACTIONS(5164), + [anon_sym_STAR] = ACTIONS(5164), + [anon_sym_SLASH] = ACTIONS(5164), + [anon_sym_PERCENT] = ACTIONS(5164), + [anon_sym_PIPE_PIPE] = ACTIONS(5167), + [anon_sym_AMP_AMP] = ACTIONS(5167), + [anon_sym_PIPE] = ACTIONS(5164), + [anon_sym_CARET] = ACTIONS(5164), + [anon_sym_AMP] = ACTIONS(5164), + [anon_sym_EQ_EQ] = ACTIONS(5167), + [anon_sym_BANG_EQ] = ACTIONS(5167), + [anon_sym_GT] = ACTIONS(5164), + [anon_sym_GT_EQ] = ACTIONS(5167), + [anon_sym_LT_EQ] = ACTIONS(5164), + [anon_sym_LT] = ACTIONS(5164), + [anon_sym_LT_LT] = ACTIONS(5164), + [anon_sym_GT_GT] = ACTIONS(5164), + [anon_sym_SEMI] = ACTIONS(5167), + [anon_sym___extension__] = ACTIONS(5078), + [anon_sym___attribute__] = ACTIONS(5164), + [anon_sym___attribute] = ACTIONS(5164), + [anon_sym_COLON] = ACTIONS(5167), + [anon_sym_LBRACE] = ACTIONS(5167), + [anon_sym_RBRACE] = ACTIONS(5167), + [anon_sym_signed] = ACTIONS(5082), + [anon_sym_unsigned] = ACTIONS(5082), + [anon_sym_long] = ACTIONS(5082), + [anon_sym_short] = ACTIONS(5082), + [anon_sym_LBRACK] = ACTIONS(5167), + [anon_sym_RBRACK] = ACTIONS(5167), + [anon_sym_EQ] = ACTIONS(5164), + [anon_sym_const] = ACTIONS(5078), + [anon_sym_constexpr] = ACTIONS(5078), + [anon_sym_volatile] = ACTIONS(5078), + [anon_sym_restrict] = ACTIONS(5078), + [anon_sym___restrict__] = ACTIONS(5078), + [anon_sym__Atomic] = ACTIONS(5078), + [anon_sym__Noreturn] = ACTIONS(5078), + [anon_sym_noreturn] = ACTIONS(5078), + [anon_sym__Nonnull] = ACTIONS(5078), + [anon_sym_mutable] = ACTIONS(5078), + [anon_sym_constinit] = ACTIONS(5078), + [anon_sym_consteval] = ACTIONS(5078), + [anon_sym_alignas] = ACTIONS(5078), + [anon_sym__Alignas] = ACTIONS(5078), + [sym_primitive_type] = ACTIONS(5078), + [anon_sym_QMARK] = ACTIONS(5167), + [anon_sym_STAR_EQ] = ACTIONS(5167), + [anon_sym_SLASH_EQ] = ACTIONS(5167), + [anon_sym_PERCENT_EQ] = ACTIONS(5167), + [anon_sym_PLUS_EQ] = ACTIONS(5167), + [anon_sym_DASH_EQ] = ACTIONS(5167), + [anon_sym_LT_LT_EQ] = ACTIONS(5167), + [anon_sym_GT_GT_EQ] = ACTIONS(5167), + [anon_sym_AMP_EQ] = ACTIONS(5167), + [anon_sym_CARET_EQ] = ACTIONS(5167), + [anon_sym_PIPE_EQ] = ACTIONS(5167), + [anon_sym_and_eq] = ACTIONS(5164), + [anon_sym_or_eq] = ACTIONS(5164), + [anon_sym_xor_eq] = ACTIONS(5164), + [anon_sym_LT_EQ_GT] = ACTIONS(5167), + [anon_sym_or] = ACTIONS(5164), + [anon_sym_and] = ACTIONS(5164), + [anon_sym_bitor] = ACTIONS(5164), + [anon_sym_xor] = ACTIONS(5164), + [anon_sym_bitand] = ACTIONS(5164), + [anon_sym_not_eq] = ACTIONS(5164), + [anon_sym_DASH_DASH] = ACTIONS(5167), + [anon_sym_PLUS_PLUS] = ACTIONS(5167), + [anon_sym_DOT] = ACTIONS(5164), + [anon_sym_DOT_STAR] = ACTIONS(5167), + [anon_sym_DASH_GT] = ACTIONS(5167), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5164), + [anon_sym_decltype] = ACTIONS(5164), + }, + [1641] = { + [sym_identifier] = ACTIONS(5196), + [anon_sym_COMMA] = ACTIONS(5198), + [anon_sym_RPAREN] = ACTIONS(5198), + [anon_sym_LPAREN2] = ACTIONS(5198), + [anon_sym_TILDE] = ACTIONS(5198), + [anon_sym_STAR] = ACTIONS(5198), + [anon_sym_PIPE_PIPE] = ACTIONS(5198), + [anon_sym_AMP_AMP] = ACTIONS(5198), + [anon_sym_AMP] = ACTIONS(5196), + [anon_sym_SEMI] = ACTIONS(5198), + [anon_sym___extension__] = ACTIONS(5196), + [anon_sym_virtual] = ACTIONS(5196), + [anon_sym_extern] = ACTIONS(5196), + [anon_sym___attribute__] = ACTIONS(5196), + [anon_sym___attribute] = ACTIONS(5196), + [anon_sym_using] = ACTIONS(5196), + [anon_sym_COLON_COLON] = ACTIONS(5198), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5198), + [anon_sym___declspec] = ACTIONS(5196), + [anon_sym___based] = ACTIONS(5196), + [anon_sym___cdecl] = ACTIONS(5196), + [anon_sym___clrcall] = ACTIONS(5196), + [anon_sym___stdcall] = ACTIONS(5196), + [anon_sym___fastcall] = ACTIONS(5196), + [anon_sym___thiscall] = ACTIONS(5196), + [anon_sym___vectorcall] = ACTIONS(5196), + [anon_sym_LBRACE] = ACTIONS(5198), + [anon_sym_signed] = ACTIONS(5196), + [anon_sym_unsigned] = ACTIONS(5196), + [anon_sym_long] = ACTIONS(5196), + [anon_sym_short] = ACTIONS(5196), + [anon_sym_LBRACK] = ACTIONS(5196), + [anon_sym_static] = ACTIONS(5196), + [anon_sym_EQ] = ACTIONS(5198), + [anon_sym_register] = ACTIONS(5196), + [anon_sym_inline] = ACTIONS(5196), + [anon_sym___inline] = ACTIONS(5196), + [anon_sym___inline__] = ACTIONS(5196), + [anon_sym___forceinline] = ACTIONS(5196), + [anon_sym_thread_local] = ACTIONS(5196), + [anon_sym___thread] = ACTIONS(5196), + [anon_sym_const] = ACTIONS(5196), + [anon_sym_constexpr] = ACTIONS(5196), + [anon_sym_volatile] = ACTIONS(5196), + [anon_sym_restrict] = ACTIONS(5196), + [anon_sym___restrict__] = ACTIONS(5196), + [anon_sym__Atomic] = ACTIONS(5196), + [anon_sym__Noreturn] = ACTIONS(5196), + [anon_sym_noreturn] = ACTIONS(5196), + [anon_sym__Nonnull] = ACTIONS(5196), + [anon_sym_mutable] = ACTIONS(5196), + [anon_sym_constinit] = ACTIONS(5196), + [anon_sym_consteval] = ACTIONS(5196), + [anon_sym_alignas] = ACTIONS(5196), + [anon_sym__Alignas] = ACTIONS(5196), + [sym_primitive_type] = ACTIONS(5196), + [anon_sym_enum] = ACTIONS(5196), + [anon_sym_class] = ACTIONS(5196), + [anon_sym_struct] = ACTIONS(5196), + [anon_sym_union] = ACTIONS(5196), + [anon_sym_or] = ACTIONS(5196), + [anon_sym_and] = ACTIONS(5196), + [anon_sym_asm] = ACTIONS(5196), + [anon_sym___asm__] = ACTIONS(5196), + [anon_sym___asm] = ACTIONS(5196), + [anon_sym_DASH_GT] = ACTIONS(5198), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5196), + [anon_sym_decltype] = ACTIONS(5196), + [anon_sym_final] = ACTIONS(5196), + [anon_sym_override] = ACTIONS(5196), + [anon_sym_explicit] = ACTIONS(5196), + [anon_sym_typename] = ACTIONS(5196), + [anon_sym_template] = ACTIONS(5196), + [anon_sym_GT2] = ACTIONS(5198), + [anon_sym_operator] = ACTIONS(5196), + [anon_sym_try] = ACTIONS(5196), + [anon_sym_friend] = ACTIONS(5196), + [anon_sym_noexcept] = ACTIONS(5196), + [anon_sym_throw] = ACTIONS(5196), + [anon_sym_concept] = ACTIONS(5196), + [anon_sym_requires] = ACTIONS(5196), + }, + [1642] = { + [sym_identifier] = ACTIONS(5196), + [anon_sym_COMMA] = ACTIONS(5198), + [anon_sym_RPAREN] = ACTIONS(5198), + [anon_sym_LPAREN2] = ACTIONS(5198), + [anon_sym_TILDE] = ACTIONS(5198), + [anon_sym_STAR] = ACTIONS(5198), + [anon_sym_PIPE_PIPE] = ACTIONS(5198), + [anon_sym_AMP_AMP] = ACTIONS(5198), + [anon_sym_AMP] = ACTIONS(5196), + [anon_sym_SEMI] = ACTIONS(5198), + [anon_sym___extension__] = ACTIONS(5196), + [anon_sym_virtual] = ACTIONS(5196), + [anon_sym_extern] = ACTIONS(5196), + [anon_sym___attribute__] = ACTIONS(5196), + [anon_sym___attribute] = ACTIONS(5196), + [anon_sym_using] = ACTIONS(5196), + [anon_sym_COLON_COLON] = ACTIONS(5198), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5198), + [anon_sym___declspec] = ACTIONS(5196), + [anon_sym___based] = ACTIONS(5196), + [anon_sym___cdecl] = ACTIONS(5196), + [anon_sym___clrcall] = ACTIONS(5196), + [anon_sym___stdcall] = ACTIONS(5196), + [anon_sym___fastcall] = ACTIONS(5196), + [anon_sym___thiscall] = ACTIONS(5196), + [anon_sym___vectorcall] = ACTIONS(5196), + [anon_sym_LBRACE] = ACTIONS(5198), + [anon_sym_signed] = ACTIONS(5196), + [anon_sym_unsigned] = ACTIONS(5196), + [anon_sym_long] = ACTIONS(5196), + [anon_sym_short] = ACTIONS(5196), + [anon_sym_LBRACK] = ACTIONS(5196), + [anon_sym_static] = ACTIONS(5196), + [anon_sym_EQ] = ACTIONS(5198), + [anon_sym_register] = ACTIONS(5196), + [anon_sym_inline] = ACTIONS(5196), + [anon_sym___inline] = ACTIONS(5196), + [anon_sym___inline__] = ACTIONS(5196), + [anon_sym___forceinline] = ACTIONS(5196), + [anon_sym_thread_local] = ACTIONS(5196), + [anon_sym___thread] = ACTIONS(5196), + [anon_sym_const] = ACTIONS(5196), + [anon_sym_constexpr] = ACTIONS(5196), + [anon_sym_volatile] = ACTIONS(5196), + [anon_sym_restrict] = ACTIONS(5196), + [anon_sym___restrict__] = ACTIONS(5196), + [anon_sym__Atomic] = ACTIONS(5196), + [anon_sym__Noreturn] = ACTIONS(5196), + [anon_sym_noreturn] = ACTIONS(5196), + [anon_sym__Nonnull] = ACTIONS(5196), + [anon_sym_mutable] = ACTIONS(5196), + [anon_sym_constinit] = ACTIONS(5196), + [anon_sym_consteval] = ACTIONS(5196), + [anon_sym_alignas] = ACTIONS(5196), + [anon_sym__Alignas] = ACTIONS(5196), + [sym_primitive_type] = ACTIONS(5196), + [anon_sym_enum] = ACTIONS(5196), + [anon_sym_class] = ACTIONS(5196), + [anon_sym_struct] = ACTIONS(5196), + [anon_sym_union] = ACTIONS(5196), + [anon_sym_or] = ACTIONS(5196), + [anon_sym_and] = ACTIONS(5196), + [anon_sym_asm] = ACTIONS(5196), + [anon_sym___asm__] = ACTIONS(5196), + [anon_sym___asm] = ACTIONS(5196), + [anon_sym_DASH_GT] = ACTIONS(5198), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5196), + [anon_sym_decltype] = ACTIONS(5196), + [anon_sym_final] = ACTIONS(5196), + [anon_sym_override] = ACTIONS(5196), + [anon_sym_explicit] = ACTIONS(5196), + [anon_sym_typename] = ACTIONS(5196), + [anon_sym_template] = ACTIONS(5196), + [anon_sym_GT2] = ACTIONS(5198), + [anon_sym_operator] = ACTIONS(5196), + [anon_sym_try] = ACTIONS(5196), + [anon_sym_friend] = ACTIONS(5196), + [anon_sym_noexcept] = ACTIONS(5196), + [anon_sym_throw] = ACTIONS(5196), + [anon_sym_concept] = ACTIONS(5196), + [anon_sym_requires] = ACTIONS(5196), + }, + [1643] = { [sym_identifier] = ACTIONS(5196), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5100), - [anon_sym_COMMA] = ACTIONS(5100), - [anon_sym_LPAREN2] = ACTIONS(5100), - [anon_sym_DASH] = ACTIONS(5102), - [anon_sym_PLUS] = ACTIONS(5102), - [anon_sym_STAR] = ACTIONS(5102), - [anon_sym_SLASH] = ACTIONS(5102), - [anon_sym_PERCENT] = ACTIONS(5102), - [anon_sym_PIPE_PIPE] = ACTIONS(5100), - [anon_sym_AMP_AMP] = ACTIONS(5100), - [anon_sym_PIPE] = ACTIONS(5102), - [anon_sym_CARET] = ACTIONS(5102), - [anon_sym_AMP] = ACTIONS(5102), - [anon_sym_EQ_EQ] = ACTIONS(5100), - [anon_sym_BANG_EQ] = ACTIONS(5100), - [anon_sym_GT] = ACTIONS(5102), - [anon_sym_GT_EQ] = ACTIONS(5102), - [anon_sym_LT_EQ] = ACTIONS(5102), - [anon_sym_LT] = ACTIONS(5102), - [anon_sym_LT_LT] = ACTIONS(5102), - [anon_sym_GT_GT] = ACTIONS(5102), - [anon_sym___extension__] = ACTIONS(5198), - [anon_sym___attribute__] = ACTIONS(5102), - [anon_sym___attribute] = ACTIONS(5102), - [anon_sym_LBRACE] = ACTIONS(5100), + [anon_sym_COMMA] = ACTIONS(5198), + [anon_sym_RPAREN] = ACTIONS(5198), + [anon_sym_LPAREN2] = ACTIONS(5198), + [anon_sym_TILDE] = ACTIONS(5198), + [anon_sym_STAR] = ACTIONS(5198), + [anon_sym_PIPE_PIPE] = ACTIONS(5198), + [anon_sym_AMP_AMP] = ACTIONS(5198), + [anon_sym_AMP] = ACTIONS(5196), + [anon_sym_SEMI] = ACTIONS(5198), + [anon_sym___extension__] = ACTIONS(5196), + [anon_sym_virtual] = ACTIONS(5196), + [anon_sym_extern] = ACTIONS(5196), + [anon_sym___attribute__] = ACTIONS(5196), + [anon_sym___attribute] = ACTIONS(5196), + [anon_sym_using] = ACTIONS(5196), + [anon_sym_COLON_COLON] = ACTIONS(5198), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5198), + [anon_sym___declspec] = ACTIONS(5196), + [anon_sym___based] = ACTIONS(5196), + [anon_sym___cdecl] = ACTIONS(5196), + [anon_sym___clrcall] = ACTIONS(5196), + [anon_sym___stdcall] = ACTIONS(5196), + [anon_sym___fastcall] = ACTIONS(5196), + [anon_sym___thiscall] = ACTIONS(5196), + [anon_sym___vectorcall] = ACTIONS(5196), + [anon_sym_LBRACE] = ACTIONS(5198), + [anon_sym_signed] = ACTIONS(5196), + [anon_sym_unsigned] = ACTIONS(5196), + [anon_sym_long] = ACTIONS(5196), + [anon_sym_short] = ACTIONS(5196), + [anon_sym_LBRACK] = ACTIONS(5196), + [anon_sym_static] = ACTIONS(5196), + [anon_sym_EQ] = ACTIONS(5198), + [anon_sym_register] = ACTIONS(5196), + [anon_sym_inline] = ACTIONS(5196), + [anon_sym___inline] = ACTIONS(5196), + [anon_sym___inline__] = ACTIONS(5196), + [anon_sym___forceinline] = ACTIONS(5196), + [anon_sym_thread_local] = ACTIONS(5196), + [anon_sym___thread] = ACTIONS(5196), + [anon_sym_const] = ACTIONS(5196), + [anon_sym_constexpr] = ACTIONS(5196), + [anon_sym_volatile] = ACTIONS(5196), + [anon_sym_restrict] = ACTIONS(5196), + [anon_sym___restrict__] = ACTIONS(5196), + [anon_sym__Atomic] = ACTIONS(5196), + [anon_sym__Noreturn] = ACTIONS(5196), + [anon_sym_noreturn] = ACTIONS(5196), + [anon_sym__Nonnull] = ACTIONS(5196), + [anon_sym_mutable] = ACTIONS(5196), + [anon_sym_constinit] = ACTIONS(5196), + [anon_sym_consteval] = ACTIONS(5196), + [anon_sym_alignas] = ACTIONS(5196), + [anon_sym__Alignas] = ACTIONS(5196), + [sym_primitive_type] = ACTIONS(5196), + [anon_sym_enum] = ACTIONS(5196), + [anon_sym_class] = ACTIONS(5196), + [anon_sym_struct] = ACTIONS(5196), + [anon_sym_union] = ACTIONS(5196), + [anon_sym_or] = ACTIONS(5196), + [anon_sym_and] = ACTIONS(5196), + [anon_sym_asm] = ACTIONS(5196), + [anon_sym___asm__] = ACTIONS(5196), + [anon_sym___asm] = ACTIONS(5196), + [anon_sym_DASH_GT] = ACTIONS(5198), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5196), + [anon_sym_decltype] = ACTIONS(5196), + [anon_sym_final] = ACTIONS(5196), + [anon_sym_override] = ACTIONS(5196), + [anon_sym_explicit] = ACTIONS(5196), + [anon_sym_typename] = ACTIONS(5196), + [anon_sym_template] = ACTIONS(5196), + [anon_sym_GT2] = ACTIONS(5198), + [anon_sym_operator] = ACTIONS(5196), + [anon_sym_try] = ACTIONS(5196), + [anon_sym_friend] = ACTIONS(5196), + [anon_sym_noexcept] = ACTIONS(5196), + [anon_sym_throw] = ACTIONS(5196), + [anon_sym_concept] = ACTIONS(5196), + [anon_sym_requires] = ACTIONS(5196), + }, + [1644] = { + [sym_identifier] = ACTIONS(5200), + [anon_sym_COMMA] = ACTIONS(5202), + [anon_sym_RPAREN] = ACTIONS(5202), + [anon_sym_LPAREN2] = ACTIONS(5202), + [anon_sym_TILDE] = ACTIONS(5202), + [anon_sym_STAR] = ACTIONS(5202), + [anon_sym_PIPE_PIPE] = ACTIONS(5202), + [anon_sym_AMP_AMP] = ACTIONS(5202), + [anon_sym_AMP] = ACTIONS(5200), + [anon_sym_SEMI] = ACTIONS(5202), + [anon_sym___extension__] = ACTIONS(5200), + [anon_sym_virtual] = ACTIONS(5200), + [anon_sym_extern] = ACTIONS(5200), + [anon_sym___attribute__] = ACTIONS(5200), + [anon_sym___attribute] = ACTIONS(5200), + [anon_sym_using] = ACTIONS(5200), + [anon_sym_COLON_COLON] = ACTIONS(5202), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5202), + [anon_sym___declspec] = ACTIONS(5200), + [anon_sym___based] = ACTIONS(5200), + [anon_sym___cdecl] = ACTIONS(5200), + [anon_sym___clrcall] = ACTIONS(5200), + [anon_sym___stdcall] = ACTIONS(5200), + [anon_sym___fastcall] = ACTIONS(5200), + [anon_sym___thiscall] = ACTIONS(5200), + [anon_sym___vectorcall] = ACTIONS(5200), + [anon_sym_LBRACE] = ACTIONS(5202), [anon_sym_signed] = ACTIONS(5200), [anon_sym_unsigned] = ACTIONS(5200), [anon_sym_long] = ACTIONS(5200), [anon_sym_short] = ACTIONS(5200), - [anon_sym_LBRACK] = ACTIONS(5100), - [anon_sym_EQ] = ACTIONS(5102), - [anon_sym_const] = ACTIONS(5198), - [anon_sym_constexpr] = ACTIONS(5198), - [anon_sym_volatile] = ACTIONS(5198), - [anon_sym_restrict] = ACTIONS(5198), - [anon_sym___restrict__] = ACTIONS(5198), - [anon_sym__Atomic] = ACTIONS(5198), - [anon_sym__Noreturn] = ACTIONS(5198), - [anon_sym_noreturn] = ACTIONS(5198), - [anon_sym__Nonnull] = ACTIONS(5198), - [anon_sym_mutable] = ACTIONS(5198), - [anon_sym_constinit] = ACTIONS(5198), - [anon_sym_consteval] = ACTIONS(5198), - [anon_sym_alignas] = ACTIONS(5202), - [anon_sym__Alignas] = ACTIONS(5202), - [sym_primitive_type] = ACTIONS(5204), - [anon_sym_QMARK] = ACTIONS(5100), - [anon_sym_STAR_EQ] = ACTIONS(5100), - [anon_sym_SLASH_EQ] = ACTIONS(5100), - [anon_sym_PERCENT_EQ] = ACTIONS(5100), - [anon_sym_PLUS_EQ] = ACTIONS(5100), - [anon_sym_DASH_EQ] = ACTIONS(5100), - [anon_sym_LT_LT_EQ] = ACTIONS(5100), - [anon_sym_GT_GT_EQ] = ACTIONS(5102), - [anon_sym_AMP_EQ] = ACTIONS(5100), - [anon_sym_CARET_EQ] = ACTIONS(5100), - [anon_sym_PIPE_EQ] = ACTIONS(5100), - [anon_sym_and_eq] = ACTIONS(5102), - [anon_sym_or_eq] = ACTIONS(5102), - [anon_sym_xor_eq] = ACTIONS(5102), - [anon_sym_LT_EQ_GT] = ACTIONS(5100), - [anon_sym_or] = ACTIONS(5102), - [anon_sym_and] = ACTIONS(5102), - [anon_sym_bitor] = ACTIONS(5102), - [anon_sym_xor] = ACTIONS(5102), - [anon_sym_bitand] = ACTIONS(5102), - [anon_sym_not_eq] = ACTIONS(5102), - [anon_sym_DASH_DASH] = ACTIONS(5100), - [anon_sym_PLUS_PLUS] = ACTIONS(5100), - [anon_sym_DOT] = ACTIONS(5102), - [anon_sym_DOT_STAR] = ACTIONS(5100), - [anon_sym_DASH_GT] = ACTIONS(5100), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5102), - [anon_sym_decltype] = ACTIONS(5102), - [anon_sym_GT2] = ACTIONS(5100), + [anon_sym_LBRACK] = ACTIONS(5200), + [anon_sym_static] = ACTIONS(5200), + [anon_sym_EQ] = ACTIONS(5202), + [anon_sym_register] = ACTIONS(5200), + [anon_sym_inline] = ACTIONS(5200), + [anon_sym___inline] = ACTIONS(5200), + [anon_sym___inline__] = ACTIONS(5200), + [anon_sym___forceinline] = ACTIONS(5200), + [anon_sym_thread_local] = ACTIONS(5200), + [anon_sym___thread] = ACTIONS(5200), + [anon_sym_const] = ACTIONS(5200), + [anon_sym_constexpr] = ACTIONS(5200), + [anon_sym_volatile] = ACTIONS(5200), + [anon_sym_restrict] = ACTIONS(5200), + [anon_sym___restrict__] = ACTIONS(5200), + [anon_sym__Atomic] = ACTIONS(5200), + [anon_sym__Noreturn] = ACTIONS(5200), + [anon_sym_noreturn] = ACTIONS(5200), + [anon_sym__Nonnull] = ACTIONS(5200), + [anon_sym_mutable] = ACTIONS(5200), + [anon_sym_constinit] = ACTIONS(5200), + [anon_sym_consteval] = ACTIONS(5200), + [anon_sym_alignas] = ACTIONS(5200), + [anon_sym__Alignas] = ACTIONS(5200), + [sym_primitive_type] = ACTIONS(5200), + [anon_sym_enum] = ACTIONS(5200), + [anon_sym_class] = ACTIONS(5200), + [anon_sym_struct] = ACTIONS(5200), + [anon_sym_union] = ACTIONS(5200), + [anon_sym_or] = ACTIONS(5200), + [anon_sym_and] = ACTIONS(5200), + [anon_sym_asm] = ACTIONS(5200), + [anon_sym___asm__] = ACTIONS(5200), + [anon_sym___asm] = ACTIONS(5200), + [anon_sym_DASH_GT] = ACTIONS(5202), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5200), + [anon_sym_decltype] = ACTIONS(5200), + [anon_sym_final] = ACTIONS(5200), + [anon_sym_override] = ACTIONS(5200), + [anon_sym_explicit] = ACTIONS(5200), + [anon_sym_typename] = ACTIONS(5200), + [anon_sym_template] = ACTIONS(5200), + [anon_sym_GT2] = ACTIONS(5202), + [anon_sym_operator] = ACTIONS(5200), + [anon_sym_try] = ACTIONS(5200), + [anon_sym_friend] = ACTIONS(5200), + [anon_sym_noexcept] = ACTIONS(5200), + [anon_sym_throw] = ACTIONS(5200), + [anon_sym_concept] = ACTIONS(5200), + [anon_sym_requires] = ACTIONS(5200), }, - [1625] = { - [sym_type_qualifier] = STATE(1624), - [sym_alignas_qualifier] = STATE(1660), - [aux_sym__type_definition_type_repeat1] = STATE(1624), - [aux_sym_sized_type_specifier_repeat1] = STATE(1653), - [sym_identifier] = ACTIONS(5206), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5086), - [anon_sym_COMMA] = ACTIONS(5086), - [anon_sym_LPAREN2] = ACTIONS(5086), - [anon_sym_DASH] = ACTIONS(5088), - [anon_sym_PLUS] = ACTIONS(5088), - [anon_sym_STAR] = ACTIONS(5088), - [anon_sym_SLASH] = ACTIONS(5088), - [anon_sym_PERCENT] = ACTIONS(5088), - [anon_sym_PIPE_PIPE] = ACTIONS(5086), - [anon_sym_AMP_AMP] = ACTIONS(5086), - [anon_sym_PIPE] = ACTIONS(5088), - [anon_sym_CARET] = ACTIONS(5088), - [anon_sym_AMP] = ACTIONS(5088), - [anon_sym_EQ_EQ] = ACTIONS(5086), - [anon_sym_BANG_EQ] = ACTIONS(5086), - [anon_sym_GT] = ACTIONS(5088), - [anon_sym_GT_EQ] = ACTIONS(5088), - [anon_sym_LT_EQ] = ACTIONS(5088), - [anon_sym_LT] = ACTIONS(5088), - [anon_sym_LT_LT] = ACTIONS(5088), - [anon_sym_GT_GT] = ACTIONS(5088), - [anon_sym___extension__] = ACTIONS(5198), - [anon_sym___attribute__] = ACTIONS(5088), - [anon_sym___attribute] = ACTIONS(5088), - [anon_sym_LBRACE] = ACTIONS(5086), + [1645] = { + [sym_type_qualifier] = STATE(1646), + [sym_alignas_qualifier] = STATE(1679), + [aux_sym__type_definition_type_repeat1] = STATE(1646), + [aux_sym_sized_type_specifier_repeat1] = STATE(1673), + [sym_identifier] = ACTIONS(5204), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5094), + [anon_sym_COMMA] = ACTIONS(5094), + [anon_sym_LPAREN2] = ACTIONS(5094), + [anon_sym_DASH] = ACTIONS(5096), + [anon_sym_PLUS] = ACTIONS(5096), + [anon_sym_STAR] = ACTIONS(5096), + [anon_sym_SLASH] = ACTIONS(5096), + [anon_sym_PERCENT] = ACTIONS(5096), + [anon_sym_PIPE_PIPE] = ACTIONS(5094), + [anon_sym_AMP_AMP] = ACTIONS(5094), + [anon_sym_PIPE] = ACTIONS(5096), + [anon_sym_CARET] = ACTIONS(5096), + [anon_sym_AMP] = ACTIONS(5096), + [anon_sym_EQ_EQ] = ACTIONS(5094), + [anon_sym_BANG_EQ] = ACTIONS(5094), + [anon_sym_GT] = ACTIONS(5096), + [anon_sym_GT_EQ] = ACTIONS(5096), + [anon_sym_LT_EQ] = ACTIONS(5096), + [anon_sym_LT] = ACTIONS(5096), + [anon_sym_LT_LT] = ACTIONS(5096), + [anon_sym_GT_GT] = ACTIONS(5096), + [anon_sym___extension__] = ACTIONS(5206), + [anon_sym___attribute__] = ACTIONS(5096), + [anon_sym___attribute] = ACTIONS(5096), + [anon_sym_LBRACE] = ACTIONS(5094), [anon_sym_signed] = ACTIONS(5208), [anon_sym_unsigned] = ACTIONS(5208), [anon_sym_long] = ACTIONS(5208), [anon_sym_short] = ACTIONS(5208), - [anon_sym_LBRACK] = ACTIONS(5086), - [anon_sym_EQ] = ACTIONS(5088), - [anon_sym_const] = ACTIONS(5198), - [anon_sym_constexpr] = ACTIONS(5198), - [anon_sym_volatile] = ACTIONS(5198), - [anon_sym_restrict] = ACTIONS(5198), - [anon_sym___restrict__] = ACTIONS(5198), - [anon_sym__Atomic] = ACTIONS(5198), - [anon_sym__Noreturn] = ACTIONS(5198), - [anon_sym_noreturn] = ACTIONS(5198), - [anon_sym__Nonnull] = ACTIONS(5198), - [anon_sym_mutable] = ACTIONS(5198), - [anon_sym_constinit] = ACTIONS(5198), - [anon_sym_consteval] = ACTIONS(5198), - [anon_sym_alignas] = ACTIONS(5202), - [anon_sym__Alignas] = ACTIONS(5202), - [sym_primitive_type] = ACTIONS(5210), - [anon_sym_QMARK] = ACTIONS(5086), - [anon_sym_STAR_EQ] = ACTIONS(5086), - [anon_sym_SLASH_EQ] = ACTIONS(5086), - [anon_sym_PERCENT_EQ] = ACTIONS(5086), - [anon_sym_PLUS_EQ] = ACTIONS(5086), - [anon_sym_DASH_EQ] = ACTIONS(5086), - [anon_sym_LT_LT_EQ] = ACTIONS(5086), - [anon_sym_GT_GT_EQ] = ACTIONS(5088), - [anon_sym_AMP_EQ] = ACTIONS(5086), - [anon_sym_CARET_EQ] = ACTIONS(5086), - [anon_sym_PIPE_EQ] = ACTIONS(5086), - [anon_sym_and_eq] = ACTIONS(5088), - [anon_sym_or_eq] = ACTIONS(5088), - [anon_sym_xor_eq] = ACTIONS(5088), - [anon_sym_LT_EQ_GT] = ACTIONS(5086), - [anon_sym_or] = ACTIONS(5088), - [anon_sym_and] = ACTIONS(5088), - [anon_sym_bitor] = ACTIONS(5088), - [anon_sym_xor] = ACTIONS(5088), - [anon_sym_bitand] = ACTIONS(5088), - [anon_sym_not_eq] = ACTIONS(5088), - [anon_sym_DASH_DASH] = ACTIONS(5086), - [anon_sym_PLUS_PLUS] = ACTIONS(5086), - [anon_sym_DOT] = ACTIONS(5088), - [anon_sym_DOT_STAR] = ACTIONS(5086), - [anon_sym_DASH_GT] = ACTIONS(5086), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5088), - [anon_sym_decltype] = ACTIONS(5088), - [anon_sym_GT2] = ACTIONS(5086), + [anon_sym_LBRACK] = ACTIONS(5094), + [anon_sym_EQ] = ACTIONS(5096), + [anon_sym_const] = ACTIONS(5206), + [anon_sym_constexpr] = ACTIONS(5206), + [anon_sym_volatile] = ACTIONS(5206), + [anon_sym_restrict] = ACTIONS(5206), + [anon_sym___restrict__] = ACTIONS(5206), + [anon_sym__Atomic] = ACTIONS(5206), + [anon_sym__Noreturn] = ACTIONS(5206), + [anon_sym_noreturn] = ACTIONS(5206), + [anon_sym__Nonnull] = ACTIONS(5206), + [anon_sym_mutable] = ACTIONS(5206), + [anon_sym_constinit] = ACTIONS(5206), + [anon_sym_consteval] = ACTIONS(5206), + [anon_sym_alignas] = ACTIONS(5210), + [anon_sym__Alignas] = ACTIONS(5210), + [sym_primitive_type] = ACTIONS(5212), + [anon_sym_QMARK] = ACTIONS(5094), + [anon_sym_STAR_EQ] = ACTIONS(5094), + [anon_sym_SLASH_EQ] = ACTIONS(5094), + [anon_sym_PERCENT_EQ] = ACTIONS(5094), + [anon_sym_PLUS_EQ] = ACTIONS(5094), + [anon_sym_DASH_EQ] = ACTIONS(5094), + [anon_sym_LT_LT_EQ] = ACTIONS(5094), + [anon_sym_GT_GT_EQ] = ACTIONS(5096), + [anon_sym_AMP_EQ] = ACTIONS(5094), + [anon_sym_CARET_EQ] = ACTIONS(5094), + [anon_sym_PIPE_EQ] = ACTIONS(5094), + [anon_sym_and_eq] = ACTIONS(5096), + [anon_sym_or_eq] = ACTIONS(5096), + [anon_sym_xor_eq] = ACTIONS(5096), + [anon_sym_LT_EQ_GT] = ACTIONS(5094), + [anon_sym_or] = ACTIONS(5096), + [anon_sym_and] = ACTIONS(5096), + [anon_sym_bitor] = ACTIONS(5096), + [anon_sym_xor] = ACTIONS(5096), + [anon_sym_bitand] = ACTIONS(5096), + [anon_sym_not_eq] = ACTIONS(5096), + [anon_sym_DASH_DASH] = ACTIONS(5094), + [anon_sym_PLUS_PLUS] = ACTIONS(5094), + [anon_sym_DOT] = ACTIONS(5096), + [anon_sym_DOT_STAR] = ACTIONS(5094), + [anon_sym_DASH_GT] = ACTIONS(5094), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5096), + [anon_sym_decltype] = ACTIONS(5096), + [anon_sym_GT2] = ACTIONS(5094), }, - [1626] = { - [sym_type_qualifier] = STATE(1626), - [sym_alignas_qualifier] = STATE(1651), - [aux_sym__type_definition_type_repeat1] = STATE(1626), - [sym_identifier] = ACTIONS(5047), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5049), - [anon_sym_COMMA] = ACTIONS(5049), - [anon_sym_RPAREN] = ACTIONS(5049), - [anon_sym_LPAREN2] = ACTIONS(5049), - [anon_sym_DASH] = ACTIONS(5047), - [anon_sym_PLUS] = ACTIONS(5047), - [anon_sym_STAR] = ACTIONS(5047), - [anon_sym_SLASH] = ACTIONS(5047), - [anon_sym_PERCENT] = ACTIONS(5047), - [anon_sym_PIPE_PIPE] = ACTIONS(5049), - [anon_sym_AMP_AMP] = ACTIONS(5049), - [anon_sym_PIPE] = ACTIONS(5047), - [anon_sym_CARET] = ACTIONS(5047), - [anon_sym_AMP] = ACTIONS(5047), - [anon_sym_EQ_EQ] = ACTIONS(5049), - [anon_sym_BANG_EQ] = ACTIONS(5049), - [anon_sym_GT] = ACTIONS(5047), - [anon_sym_GT_EQ] = ACTIONS(5049), - [anon_sym_LT_EQ] = ACTIONS(5047), - [anon_sym_LT] = ACTIONS(5047), - [anon_sym_LT_LT] = ACTIONS(5047), - [anon_sym_GT_GT] = ACTIONS(5047), - [anon_sym___extension__] = ACTIONS(5212), - [anon_sym___attribute__] = ACTIONS(5047), - [anon_sym___attribute] = ACTIONS(5047), - [anon_sym_LBRACE] = ACTIONS(5049), - [anon_sym_signed] = ACTIONS(5047), - [anon_sym_unsigned] = ACTIONS(5047), - [anon_sym_long] = ACTIONS(5047), - [anon_sym_short] = ACTIONS(5047), - [anon_sym_LBRACK] = ACTIONS(5049), - [anon_sym_EQ] = ACTIONS(5047), - [anon_sym_const] = ACTIONS(5212), - [anon_sym_constexpr] = ACTIONS(5212), - [anon_sym_volatile] = ACTIONS(5212), - [anon_sym_restrict] = ACTIONS(5212), - [anon_sym___restrict__] = ACTIONS(5212), - [anon_sym__Atomic] = ACTIONS(5212), - [anon_sym__Noreturn] = ACTIONS(5212), - [anon_sym_noreturn] = ACTIONS(5212), - [anon_sym__Nonnull] = ACTIONS(5212), - [anon_sym_mutable] = ACTIONS(5212), - [anon_sym_constinit] = ACTIONS(5212), - [anon_sym_consteval] = ACTIONS(5212), - [anon_sym_alignas] = ACTIONS(5215), - [anon_sym__Alignas] = ACTIONS(5215), - [sym_primitive_type] = ACTIONS(5047), - [anon_sym_QMARK] = ACTIONS(5049), - [anon_sym_STAR_EQ] = ACTIONS(5049), - [anon_sym_SLASH_EQ] = ACTIONS(5049), - [anon_sym_PERCENT_EQ] = ACTIONS(5049), - [anon_sym_PLUS_EQ] = ACTIONS(5049), - [anon_sym_DASH_EQ] = ACTIONS(5049), - [anon_sym_LT_LT_EQ] = ACTIONS(5049), - [anon_sym_GT_GT_EQ] = ACTIONS(5049), - [anon_sym_AMP_EQ] = ACTIONS(5049), - [anon_sym_CARET_EQ] = ACTIONS(5049), - [anon_sym_PIPE_EQ] = ACTIONS(5049), - [anon_sym_and_eq] = ACTIONS(5047), - [anon_sym_or_eq] = ACTIONS(5047), - [anon_sym_xor_eq] = ACTIONS(5047), - [anon_sym_LT_EQ_GT] = ACTIONS(5049), - [anon_sym_or] = ACTIONS(5047), - [anon_sym_and] = ACTIONS(5047), - [anon_sym_bitor] = ACTIONS(5047), - [anon_sym_xor] = ACTIONS(5047), - [anon_sym_bitand] = ACTIONS(5047), - [anon_sym_not_eq] = ACTIONS(5047), - [anon_sym_DASH_DASH] = ACTIONS(5049), - [anon_sym_PLUS_PLUS] = ACTIONS(5049), - [anon_sym_DOT] = ACTIONS(5047), - [anon_sym_DOT_STAR] = ACTIONS(5049), - [anon_sym_DASH_GT] = ACTIONS(5047), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5047), - [anon_sym_decltype] = ACTIONS(5047), - [anon_sym_DASH_GT_STAR] = ACTIONS(5049), + [1646] = { + [sym_type_qualifier] = STATE(1652), + [sym_alignas_qualifier] = STATE(1679), + [aux_sym__type_definition_type_repeat1] = STATE(1652), + [aux_sym_sized_type_specifier_repeat1] = STATE(2639), + [sym_identifier] = ACTIONS(5214), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5109), + [anon_sym_COMMA] = ACTIONS(5109), + [anon_sym_LPAREN2] = ACTIONS(5109), + [anon_sym_DASH] = ACTIONS(5111), + [anon_sym_PLUS] = ACTIONS(5111), + [anon_sym_STAR] = ACTIONS(5111), + [anon_sym_SLASH] = ACTIONS(5111), + [anon_sym_PERCENT] = ACTIONS(5111), + [anon_sym_PIPE_PIPE] = ACTIONS(5109), + [anon_sym_AMP_AMP] = ACTIONS(5109), + [anon_sym_PIPE] = ACTIONS(5111), + [anon_sym_CARET] = ACTIONS(5111), + [anon_sym_AMP] = ACTIONS(5111), + [anon_sym_EQ_EQ] = ACTIONS(5109), + [anon_sym_BANG_EQ] = ACTIONS(5109), + [anon_sym_GT] = ACTIONS(5111), + [anon_sym_GT_EQ] = ACTIONS(5111), + [anon_sym_LT_EQ] = ACTIONS(5111), + [anon_sym_LT] = ACTIONS(5111), + [anon_sym_LT_LT] = ACTIONS(5111), + [anon_sym_GT_GT] = ACTIONS(5111), + [anon_sym___extension__] = ACTIONS(5206), + [anon_sym___attribute__] = ACTIONS(5111), + [anon_sym___attribute] = ACTIONS(5111), + [anon_sym_LBRACE] = ACTIONS(5109), + [anon_sym_signed] = ACTIONS(5216), + [anon_sym_unsigned] = ACTIONS(5216), + [anon_sym_long] = ACTIONS(5216), + [anon_sym_short] = ACTIONS(5216), + [anon_sym_LBRACK] = ACTIONS(5109), + [anon_sym_EQ] = ACTIONS(5111), + [anon_sym_const] = ACTIONS(5206), + [anon_sym_constexpr] = ACTIONS(5206), + [anon_sym_volatile] = ACTIONS(5206), + [anon_sym_restrict] = ACTIONS(5206), + [anon_sym___restrict__] = ACTIONS(5206), + [anon_sym__Atomic] = ACTIONS(5206), + [anon_sym__Noreturn] = ACTIONS(5206), + [anon_sym_noreturn] = ACTIONS(5206), + [anon_sym__Nonnull] = ACTIONS(5206), + [anon_sym_mutable] = ACTIONS(5206), + [anon_sym_constinit] = ACTIONS(5206), + [anon_sym_consteval] = ACTIONS(5206), + [anon_sym_alignas] = ACTIONS(5210), + [anon_sym__Alignas] = ACTIONS(5210), + [sym_primitive_type] = ACTIONS(5218), + [anon_sym_QMARK] = ACTIONS(5109), + [anon_sym_STAR_EQ] = ACTIONS(5109), + [anon_sym_SLASH_EQ] = ACTIONS(5109), + [anon_sym_PERCENT_EQ] = ACTIONS(5109), + [anon_sym_PLUS_EQ] = ACTIONS(5109), + [anon_sym_DASH_EQ] = ACTIONS(5109), + [anon_sym_LT_LT_EQ] = ACTIONS(5109), + [anon_sym_GT_GT_EQ] = ACTIONS(5111), + [anon_sym_AMP_EQ] = ACTIONS(5109), + [anon_sym_CARET_EQ] = ACTIONS(5109), + [anon_sym_PIPE_EQ] = ACTIONS(5109), + [anon_sym_and_eq] = ACTIONS(5111), + [anon_sym_or_eq] = ACTIONS(5111), + [anon_sym_xor_eq] = ACTIONS(5111), + [anon_sym_LT_EQ_GT] = ACTIONS(5109), + [anon_sym_or] = ACTIONS(5111), + [anon_sym_and] = ACTIONS(5111), + [anon_sym_bitor] = ACTIONS(5111), + [anon_sym_xor] = ACTIONS(5111), + [anon_sym_bitand] = ACTIONS(5111), + [anon_sym_not_eq] = ACTIONS(5111), + [anon_sym_DASH_DASH] = ACTIONS(5109), + [anon_sym_PLUS_PLUS] = ACTIONS(5109), + [anon_sym_DOT] = ACTIONS(5111), + [anon_sym_DOT_STAR] = ACTIONS(5109), + [anon_sym_DASH_GT] = ACTIONS(5109), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5111), + [anon_sym_decltype] = ACTIONS(5111), + [anon_sym_GT2] = ACTIONS(5109), }, - [1627] = { - [sym_function_definition] = STATE(791), - [sym_declaration] = STATE(791), - [sym__declaration_modifiers] = STATE(2136), - [sym__declaration_specifiers] = STATE(4658), - [sym_attribute_specifier] = STATE(2136), - [sym_attribute_declaration] = STATE(2136), - [sym_ms_declspec_modifier] = STATE(2136), - [sym_ms_call_modifier] = STATE(1912), - [sym_declaration_list] = STATE(791), - [sym_storage_class_specifier] = STATE(2136), - [sym_type_qualifier] = STATE(2136), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym_dependent_type] = STATE(2523), - [sym_template_type] = STATE(2406), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(6627), - [sym_qualified_type_identifier] = STATE(3015), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [sym_identifier] = ACTIONS(5218), + [1647] = { + [sym_type_qualifier] = STATE(1647), + [sym_alignas_qualifier] = STATE(1672), + [aux_sym__type_definition_type_repeat1] = STATE(1647), + [sym_identifier] = ACTIONS(5055), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5057), + [anon_sym_COMMA] = ACTIONS(5057), + [anon_sym_RPAREN] = ACTIONS(5057), + [anon_sym_LPAREN2] = ACTIONS(5057), + [anon_sym_DASH] = ACTIONS(5055), + [anon_sym_PLUS] = ACTIONS(5055), + [anon_sym_STAR] = ACTIONS(5055), + [anon_sym_SLASH] = ACTIONS(5055), + [anon_sym_PERCENT] = ACTIONS(5055), + [anon_sym_PIPE_PIPE] = ACTIONS(5057), + [anon_sym_AMP_AMP] = ACTIONS(5057), + [anon_sym_PIPE] = ACTIONS(5055), + [anon_sym_CARET] = ACTIONS(5055), + [anon_sym_AMP] = ACTIONS(5055), + [anon_sym_EQ_EQ] = ACTIONS(5057), + [anon_sym_BANG_EQ] = ACTIONS(5057), + [anon_sym_GT] = ACTIONS(5055), + [anon_sym_GT_EQ] = ACTIONS(5057), + [anon_sym_LT_EQ] = ACTIONS(5055), + [anon_sym_LT] = ACTIONS(5055), + [anon_sym_LT_LT] = ACTIONS(5055), + [anon_sym_GT_GT] = ACTIONS(5055), + [anon_sym___extension__] = ACTIONS(5220), + [anon_sym___attribute__] = ACTIONS(5055), + [anon_sym___attribute] = ACTIONS(5055), + [anon_sym_LBRACE] = ACTIONS(5057), + [anon_sym_signed] = ACTIONS(5055), + [anon_sym_unsigned] = ACTIONS(5055), + [anon_sym_long] = ACTIONS(5055), + [anon_sym_short] = ACTIONS(5055), + [anon_sym_LBRACK] = ACTIONS(5057), + [anon_sym_EQ] = ACTIONS(5055), + [anon_sym_const] = ACTIONS(5220), + [anon_sym_constexpr] = ACTIONS(5220), + [anon_sym_volatile] = ACTIONS(5220), + [anon_sym_restrict] = ACTIONS(5220), + [anon_sym___restrict__] = ACTIONS(5220), + [anon_sym__Atomic] = ACTIONS(5220), + [anon_sym__Noreturn] = ACTIONS(5220), + [anon_sym_noreturn] = ACTIONS(5220), + [anon_sym__Nonnull] = ACTIONS(5220), + [anon_sym_mutable] = ACTIONS(5220), + [anon_sym_constinit] = ACTIONS(5220), + [anon_sym_consteval] = ACTIONS(5220), + [anon_sym_alignas] = ACTIONS(5223), + [anon_sym__Alignas] = ACTIONS(5223), + [sym_primitive_type] = ACTIONS(5055), + [anon_sym_QMARK] = ACTIONS(5057), + [anon_sym_STAR_EQ] = ACTIONS(5057), + [anon_sym_SLASH_EQ] = ACTIONS(5057), + [anon_sym_PERCENT_EQ] = ACTIONS(5057), + [anon_sym_PLUS_EQ] = ACTIONS(5057), + [anon_sym_DASH_EQ] = ACTIONS(5057), + [anon_sym_LT_LT_EQ] = ACTIONS(5057), + [anon_sym_GT_GT_EQ] = ACTIONS(5057), + [anon_sym_AMP_EQ] = ACTIONS(5057), + [anon_sym_CARET_EQ] = ACTIONS(5057), + [anon_sym_PIPE_EQ] = ACTIONS(5057), + [anon_sym_and_eq] = ACTIONS(5055), + [anon_sym_or_eq] = ACTIONS(5055), + [anon_sym_xor_eq] = ACTIONS(5055), + [anon_sym_LT_EQ_GT] = ACTIONS(5057), + [anon_sym_or] = ACTIONS(5055), + [anon_sym_and] = ACTIONS(5055), + [anon_sym_bitor] = ACTIONS(5055), + [anon_sym_xor] = ACTIONS(5055), + [anon_sym_bitand] = ACTIONS(5055), + [anon_sym_not_eq] = ACTIONS(5055), + [anon_sym_DASH_DASH] = ACTIONS(5057), + [anon_sym_PLUS_PLUS] = ACTIONS(5057), + [anon_sym_DOT] = ACTIONS(5055), + [anon_sym_DOT_STAR] = ACTIONS(5057), + [anon_sym_DASH_GT] = ACTIONS(5055), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5055), + [anon_sym_decltype] = ACTIONS(5055), + [anon_sym_DASH_GT_STAR] = ACTIONS(5057), + }, + [1648] = { + [sym_function_definition] = STATE(801), + [sym_declaration] = STATE(801), + [sym__declaration_modifiers] = STATE(2095), + [sym__declaration_specifiers] = STATE(4774), + [sym_attribute_specifier] = STATE(2095), + [sym_attribute_declaration] = STATE(2095), + [sym_ms_declspec_modifier] = STATE(2095), + [sym_ms_call_modifier] = STATE(1965), + [sym_declaration_list] = STATE(801), + [sym_storage_class_specifier] = STATE(2095), + [sym_type_qualifier] = STATE(2095), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym_dependent_type] = STATE(2558), + [sym_template_type] = STATE(2439), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(6715), + [sym_qualified_type_identifier] = STATE(3138), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(5226), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1446), + [anon_sym_virtual] = ACTIONS(1262), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5220), + [anon_sym_COLON_COLON] = ACTIONS(5228), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), [anon_sym___cdecl] = ACTIONS(55), @@ -241328,7 +244447,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(5222), + [anon_sym_LBRACE] = ACTIONS(5230), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -241355,7 +244474,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2999), + [sym_primitive_type] = ACTIONS(3019), [anon_sym_enum] = ACTIONS(73), [anon_sym_class] = ACTIONS(75), [anon_sym_struct] = ACTIONS(77), @@ -241364,126 +244483,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1452), - }, - [1628] = { - [sym_type_qualifier] = STATE(1628), - [sym_alignas_qualifier] = STATE(1660), - [aux_sym__type_definition_type_repeat1] = STATE(1628), - [sym_identifier] = ACTIONS(5047), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5049), - [anon_sym_COMMA] = ACTIONS(5049), - [anon_sym_LPAREN2] = ACTIONS(5049), - [anon_sym_DASH] = ACTIONS(5047), - [anon_sym_PLUS] = ACTIONS(5047), - [anon_sym_STAR] = ACTIONS(5047), - [anon_sym_SLASH] = ACTIONS(5047), - [anon_sym_PERCENT] = ACTIONS(5047), - [anon_sym_PIPE_PIPE] = ACTIONS(5049), - [anon_sym_AMP_AMP] = ACTIONS(5049), - [anon_sym_PIPE] = ACTIONS(5047), - [anon_sym_CARET] = ACTIONS(5047), - [anon_sym_AMP] = ACTIONS(5047), - [anon_sym_EQ_EQ] = ACTIONS(5049), - [anon_sym_BANG_EQ] = ACTIONS(5049), - [anon_sym_GT] = ACTIONS(5047), - [anon_sym_GT_EQ] = ACTIONS(5047), - [anon_sym_LT_EQ] = ACTIONS(5047), - [anon_sym_LT] = ACTIONS(5047), - [anon_sym_LT_LT] = ACTIONS(5047), - [anon_sym_GT_GT] = ACTIONS(5047), - [anon_sym___extension__] = ACTIONS(5224), - [anon_sym___attribute__] = ACTIONS(5047), - [anon_sym___attribute] = ACTIONS(5047), - [anon_sym_LBRACE] = ACTIONS(5049), - [anon_sym_signed] = ACTIONS(5047), - [anon_sym_unsigned] = ACTIONS(5047), - [anon_sym_long] = ACTIONS(5047), - [anon_sym_short] = ACTIONS(5047), - [anon_sym_LBRACK] = ACTIONS(5049), - [anon_sym_EQ] = ACTIONS(5047), - [anon_sym_const] = ACTIONS(5224), - [anon_sym_constexpr] = ACTIONS(5224), - [anon_sym_volatile] = ACTIONS(5224), - [anon_sym_restrict] = ACTIONS(5224), - [anon_sym___restrict__] = ACTIONS(5224), - [anon_sym__Atomic] = ACTIONS(5224), - [anon_sym__Noreturn] = ACTIONS(5224), - [anon_sym_noreturn] = ACTIONS(5224), - [anon_sym__Nonnull] = ACTIONS(5224), - [anon_sym_mutable] = ACTIONS(5224), - [anon_sym_constinit] = ACTIONS(5224), - [anon_sym_consteval] = ACTIONS(5224), - [anon_sym_alignas] = ACTIONS(5227), - [anon_sym__Alignas] = ACTIONS(5227), - [sym_primitive_type] = ACTIONS(5047), - [anon_sym_QMARK] = ACTIONS(5049), - [anon_sym_STAR_EQ] = ACTIONS(5049), - [anon_sym_SLASH_EQ] = ACTIONS(5049), - [anon_sym_PERCENT_EQ] = ACTIONS(5049), - [anon_sym_PLUS_EQ] = ACTIONS(5049), - [anon_sym_DASH_EQ] = ACTIONS(5049), - [anon_sym_LT_LT_EQ] = ACTIONS(5049), - [anon_sym_GT_GT_EQ] = ACTIONS(5047), - [anon_sym_AMP_EQ] = ACTIONS(5049), - [anon_sym_CARET_EQ] = ACTIONS(5049), - [anon_sym_PIPE_EQ] = ACTIONS(5049), - [anon_sym_and_eq] = ACTIONS(5047), - [anon_sym_or_eq] = ACTIONS(5047), - [anon_sym_xor_eq] = ACTIONS(5047), - [anon_sym_LT_EQ_GT] = ACTIONS(5049), - [anon_sym_or] = ACTIONS(5047), - [anon_sym_and] = ACTIONS(5047), - [anon_sym_bitor] = ACTIONS(5047), - [anon_sym_xor] = ACTIONS(5047), - [anon_sym_bitand] = ACTIONS(5047), - [anon_sym_not_eq] = ACTIONS(5047), - [anon_sym_DASH_DASH] = ACTIONS(5049), - [anon_sym_PLUS_PLUS] = ACTIONS(5049), - [anon_sym_DOT] = ACTIONS(5047), - [anon_sym_DOT_STAR] = ACTIONS(5049), - [anon_sym_DASH_GT] = ACTIONS(5049), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5047), - [anon_sym_decltype] = ACTIONS(5047), - [anon_sym_GT2] = ACTIONS(5049), + [anon_sym_template] = ACTIONS(1268), }, - [1629] = { - [sym_function_definition] = STATE(777), - [sym_declaration] = STATE(777), - [sym__declaration_modifiers] = STATE(2136), - [sym__declaration_specifiers] = STATE(4599), - [sym_attribute_specifier] = STATE(2136), - [sym_attribute_declaration] = STATE(2136), - [sym_ms_declspec_modifier] = STATE(2136), - [sym_ms_call_modifier] = STATE(1924), - [sym_declaration_list] = STATE(777), - [sym_storage_class_specifier] = STATE(2136), - [sym_type_qualifier] = STATE(2136), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym_dependent_type] = STATE(2523), - [sym_template_type] = STATE(2406), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(6627), - [sym_qualified_type_identifier] = STATE(3015), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [sym_identifier] = ACTIONS(5218), + [1649] = { + [sym_function_definition] = STATE(783), + [sym_declaration] = STATE(783), + [sym__declaration_modifiers] = STATE(2095), + [sym__declaration_specifiers] = STATE(4646), + [sym_attribute_specifier] = STATE(2095), + [sym_attribute_declaration] = STATE(2095), + [sym_ms_declspec_modifier] = STATE(2095), + [sym_ms_call_modifier] = STATE(1956), + [sym_declaration_list] = STATE(783), + [sym_storage_class_specifier] = STATE(2095), + [sym_type_qualifier] = STATE(2095), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym_dependent_type] = STATE(2558), + [sym_template_type] = STATE(2439), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(6715), + [sym_qualified_type_identifier] = STATE(3138), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(5226), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1446), + [anon_sym_virtual] = ACTIONS(1262), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5220), + [anon_sym_COLON_COLON] = ACTIONS(5228), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), [anon_sym___cdecl] = ACTIONS(55), @@ -241492,7 +244529,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(5230), + [anon_sym_LBRACE] = ACTIONS(5232), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -241519,7 +244556,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2999), + [sym_primitive_type] = ACTIONS(3019), [anon_sym_enum] = ACTIONS(73), [anon_sym_class] = ACTIONS(75), [anon_sym_struct] = ACTIONS(77), @@ -241528,44 +244565,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), }, - [1630] = { - [sym_function_definition] = STATE(484), - [sym_declaration] = STATE(484), - [sym__declaration_modifiers] = STATE(2136), - [sym__declaration_specifiers] = STATE(4748), - [sym_attribute_specifier] = STATE(2136), - [sym_attribute_declaration] = STATE(2136), - [sym_ms_declspec_modifier] = STATE(2136), - [sym_ms_call_modifier] = STATE(1925), - [sym_declaration_list] = STATE(484), - [sym_storage_class_specifier] = STATE(2136), - [sym_type_qualifier] = STATE(2136), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym_dependent_type] = STATE(2523), - [sym_template_type] = STATE(2406), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(6627), - [sym_qualified_type_identifier] = STATE(3015), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [sym_identifier] = ACTIONS(5218), + [1650] = { + [sym_function_definition] = STATE(500), + [sym_declaration] = STATE(500), + [sym__declaration_modifiers] = STATE(2095), + [sym__declaration_specifiers] = STATE(4803), + [sym_attribute_specifier] = STATE(2095), + [sym_attribute_declaration] = STATE(2095), + [sym_ms_declspec_modifier] = STATE(2095), + [sym_ms_call_modifier] = STATE(1954), + [sym_declaration_list] = STATE(500), + [sym_storage_class_specifier] = STATE(2095), + [sym_type_qualifier] = STATE(2095), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym_dependent_type] = STATE(2558), + [sym_template_type] = STATE(2439), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(6715), + [sym_qualified_type_identifier] = STATE(3138), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(5226), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1446), + [anon_sym_virtual] = ACTIONS(1262), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5220), + [anon_sym_COLON_COLON] = ACTIONS(5228), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), [anon_sym___cdecl] = ACTIONS(55), @@ -241574,7 +244611,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(5232), + [anon_sym_LBRACE] = ACTIONS(5234), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -241601,7 +244638,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2999), + [sym_primitive_type] = ACTIONS(3019), [anon_sym_enum] = ACTIONS(73), [anon_sym_class] = ACTIONS(75), [anon_sym_struct] = ACTIONS(77), @@ -241610,44 +244647,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), }, - [1631] = { - [sym_function_definition] = STATE(294), - [sym_declaration] = STATE(294), - [sym__declaration_modifiers] = STATE(2136), - [sym__declaration_specifiers] = STATE(4644), - [sym_attribute_specifier] = STATE(2136), - [sym_attribute_declaration] = STATE(2136), - [sym_ms_declspec_modifier] = STATE(2136), - [sym_ms_call_modifier] = STATE(1929), - [sym_declaration_list] = STATE(294), - [sym_storage_class_specifier] = STATE(2136), - [sym_type_qualifier] = STATE(2136), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym_dependent_type] = STATE(2523), - [sym_template_type] = STATE(2406), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(6627), - [sym_qualified_type_identifier] = STATE(3015), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [sym_identifier] = ACTIONS(5218), + [1651] = { + [sym_function_definition] = STATE(298), + [sym_declaration] = STATE(298), + [sym__declaration_modifiers] = STATE(2095), + [sym__declaration_specifiers] = STATE(4710), + [sym_attribute_specifier] = STATE(2095), + [sym_attribute_declaration] = STATE(2095), + [sym_ms_declspec_modifier] = STATE(2095), + [sym_ms_call_modifier] = STATE(1963), + [sym_declaration_list] = STATE(298), + [sym_storage_class_specifier] = STATE(2095), + [sym_type_qualifier] = STATE(2095), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym_dependent_type] = STATE(2558), + [sym_template_type] = STATE(2439), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(6715), + [sym_qualified_type_identifier] = STATE(3138), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(5226), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1446), + [anon_sym_virtual] = ACTIONS(1262), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5220), + [anon_sym_COLON_COLON] = ACTIONS(5228), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), [anon_sym___cdecl] = ACTIONS(55), @@ -241656,7 +244693,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(5234), + [anon_sym_LBRACE] = ACTIONS(5236), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -241683,7 +244720,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2999), + [sym_primitive_type] = ACTIONS(3019), [anon_sym_enum] = ACTIONS(73), [anon_sym_class] = ACTIONS(75), [anon_sym_struct] = ACTIONS(77), @@ -241692,44 +244729,207 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), }, - [1632] = { - [sym_function_definition] = STATE(611), - [sym_declaration] = STATE(611), - [sym__declaration_modifiers] = STATE(2136), - [sym__declaration_specifiers] = STATE(4748), - [sym_attribute_specifier] = STATE(2136), - [sym_attribute_declaration] = STATE(2136), - [sym_ms_declspec_modifier] = STATE(2136), - [sym_ms_call_modifier] = STATE(1925), - [sym_storage_class_specifier] = STATE(2136), - [sym_type_qualifier] = STATE(2136), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(8408), - [sym_dependent_type] = STATE(2523), - [sym_template_type] = STATE(3706), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(6627), - [sym_qualified_type_identifier] = STATE(3798), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [sym_identifier] = ACTIONS(5236), + [1652] = { + [sym_type_qualifier] = STATE(1652), + [sym_alignas_qualifier] = STATE(1679), + [aux_sym__type_definition_type_repeat1] = STATE(1652), + [sym_identifier] = ACTIONS(5055), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5057), + [anon_sym_COMMA] = ACTIONS(5057), + [anon_sym_LPAREN2] = ACTIONS(5057), + [anon_sym_DASH] = ACTIONS(5055), + [anon_sym_PLUS] = ACTIONS(5055), + [anon_sym_STAR] = ACTIONS(5055), + [anon_sym_SLASH] = ACTIONS(5055), + [anon_sym_PERCENT] = ACTIONS(5055), + [anon_sym_PIPE_PIPE] = ACTIONS(5057), + [anon_sym_AMP_AMP] = ACTIONS(5057), + [anon_sym_PIPE] = ACTIONS(5055), + [anon_sym_CARET] = ACTIONS(5055), + [anon_sym_AMP] = ACTIONS(5055), + [anon_sym_EQ_EQ] = ACTIONS(5057), + [anon_sym_BANG_EQ] = ACTIONS(5057), + [anon_sym_GT] = ACTIONS(5055), + [anon_sym_GT_EQ] = ACTIONS(5055), + [anon_sym_LT_EQ] = ACTIONS(5055), + [anon_sym_LT] = ACTIONS(5055), + [anon_sym_LT_LT] = ACTIONS(5055), + [anon_sym_GT_GT] = ACTIONS(5055), + [anon_sym___extension__] = ACTIONS(5238), + [anon_sym___attribute__] = ACTIONS(5055), + [anon_sym___attribute] = ACTIONS(5055), + [anon_sym_LBRACE] = ACTIONS(5057), + [anon_sym_signed] = ACTIONS(5055), + [anon_sym_unsigned] = ACTIONS(5055), + [anon_sym_long] = ACTIONS(5055), + [anon_sym_short] = ACTIONS(5055), + [anon_sym_LBRACK] = ACTIONS(5057), + [anon_sym_EQ] = ACTIONS(5055), + [anon_sym_const] = ACTIONS(5238), + [anon_sym_constexpr] = ACTIONS(5238), + [anon_sym_volatile] = ACTIONS(5238), + [anon_sym_restrict] = ACTIONS(5238), + [anon_sym___restrict__] = ACTIONS(5238), + [anon_sym__Atomic] = ACTIONS(5238), + [anon_sym__Noreturn] = ACTIONS(5238), + [anon_sym_noreturn] = ACTIONS(5238), + [anon_sym__Nonnull] = ACTIONS(5238), + [anon_sym_mutable] = ACTIONS(5238), + [anon_sym_constinit] = ACTIONS(5238), + [anon_sym_consteval] = ACTIONS(5238), + [anon_sym_alignas] = ACTIONS(5241), + [anon_sym__Alignas] = ACTIONS(5241), + [sym_primitive_type] = ACTIONS(5055), + [anon_sym_QMARK] = ACTIONS(5057), + [anon_sym_STAR_EQ] = ACTIONS(5057), + [anon_sym_SLASH_EQ] = ACTIONS(5057), + [anon_sym_PERCENT_EQ] = ACTIONS(5057), + [anon_sym_PLUS_EQ] = ACTIONS(5057), + [anon_sym_DASH_EQ] = ACTIONS(5057), + [anon_sym_LT_LT_EQ] = ACTIONS(5057), + [anon_sym_GT_GT_EQ] = ACTIONS(5055), + [anon_sym_AMP_EQ] = ACTIONS(5057), + [anon_sym_CARET_EQ] = ACTIONS(5057), + [anon_sym_PIPE_EQ] = ACTIONS(5057), + [anon_sym_and_eq] = ACTIONS(5055), + [anon_sym_or_eq] = ACTIONS(5055), + [anon_sym_xor_eq] = ACTIONS(5055), + [anon_sym_LT_EQ_GT] = ACTIONS(5057), + [anon_sym_or] = ACTIONS(5055), + [anon_sym_and] = ACTIONS(5055), + [anon_sym_bitor] = ACTIONS(5055), + [anon_sym_xor] = ACTIONS(5055), + [anon_sym_bitand] = ACTIONS(5055), + [anon_sym_not_eq] = ACTIONS(5055), + [anon_sym_DASH_DASH] = ACTIONS(5057), + [anon_sym_PLUS_PLUS] = ACTIONS(5057), + [anon_sym_DOT] = ACTIONS(5055), + [anon_sym_DOT_STAR] = ACTIONS(5057), + [anon_sym_DASH_GT] = ACTIONS(5057), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5055), + [anon_sym_decltype] = ACTIONS(5055), + [anon_sym_GT2] = ACTIONS(5057), + }, + [1653] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1667), + [sym_identifier] = ACTIONS(5078), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5167), + [anon_sym_COMMA] = ACTIONS(5167), + [anon_sym_RPAREN] = ACTIONS(5167), + [anon_sym_LPAREN2] = ACTIONS(5167), + [anon_sym_DASH] = ACTIONS(5164), + [anon_sym_PLUS] = ACTIONS(5164), + [anon_sym_STAR] = ACTIONS(5164), + [anon_sym_SLASH] = ACTIONS(5164), + [anon_sym_PERCENT] = ACTIONS(5164), + [anon_sym_PIPE_PIPE] = ACTIONS(5167), + [anon_sym_AMP_AMP] = ACTIONS(5167), + [anon_sym_PIPE] = ACTIONS(5164), + [anon_sym_CARET] = ACTIONS(5164), + [anon_sym_AMP] = ACTIONS(5164), + [anon_sym_EQ_EQ] = ACTIONS(5167), + [anon_sym_BANG_EQ] = ACTIONS(5167), + [anon_sym_GT] = ACTIONS(5164), + [anon_sym_GT_EQ] = ACTIONS(5167), + [anon_sym_LT_EQ] = ACTIONS(5164), + [anon_sym_LT] = ACTIONS(5164), + [anon_sym_LT_LT] = ACTIONS(5164), + [anon_sym_GT_GT] = ACTIONS(5164), + [anon_sym___extension__] = ACTIONS(5078), + [anon_sym___attribute__] = ACTIONS(5164), + [anon_sym___attribute] = ACTIONS(5164), + [anon_sym_LBRACE] = ACTIONS(5167), + [anon_sym_signed] = ACTIONS(5244), + [anon_sym_unsigned] = ACTIONS(5244), + [anon_sym_long] = ACTIONS(5244), + [anon_sym_short] = ACTIONS(5244), + [anon_sym_LBRACK] = ACTIONS(5167), + [anon_sym_EQ] = ACTIONS(5164), + [anon_sym_const] = ACTIONS(5078), + [anon_sym_constexpr] = ACTIONS(5078), + [anon_sym_volatile] = ACTIONS(5078), + [anon_sym_restrict] = ACTIONS(5078), + [anon_sym___restrict__] = ACTIONS(5078), + [anon_sym__Atomic] = ACTIONS(5078), + [anon_sym__Noreturn] = ACTIONS(5078), + [anon_sym_noreturn] = ACTIONS(5078), + [anon_sym__Nonnull] = ACTIONS(5078), + [anon_sym_mutable] = ACTIONS(5078), + [anon_sym_constinit] = ACTIONS(5078), + [anon_sym_consteval] = ACTIONS(5078), + [anon_sym_alignas] = ACTIONS(5078), + [anon_sym__Alignas] = ACTIONS(5078), + [sym_primitive_type] = ACTIONS(5078), + [anon_sym_QMARK] = ACTIONS(5167), + [anon_sym_STAR_EQ] = ACTIONS(5167), + [anon_sym_SLASH_EQ] = ACTIONS(5167), + [anon_sym_PERCENT_EQ] = ACTIONS(5167), + [anon_sym_PLUS_EQ] = ACTIONS(5167), + [anon_sym_DASH_EQ] = ACTIONS(5167), + [anon_sym_LT_LT_EQ] = ACTIONS(5167), + [anon_sym_GT_GT_EQ] = ACTIONS(5167), + [anon_sym_AMP_EQ] = ACTIONS(5167), + [anon_sym_CARET_EQ] = ACTIONS(5167), + [anon_sym_PIPE_EQ] = ACTIONS(5167), + [anon_sym_and_eq] = ACTIONS(5164), + [anon_sym_or_eq] = ACTIONS(5164), + [anon_sym_xor_eq] = ACTIONS(5164), + [anon_sym_LT_EQ_GT] = ACTIONS(5167), + [anon_sym_or] = ACTIONS(5164), + [anon_sym_and] = ACTIONS(5164), + [anon_sym_bitor] = ACTIONS(5164), + [anon_sym_xor] = ACTIONS(5164), + [anon_sym_bitand] = ACTIONS(5164), + [anon_sym_not_eq] = ACTIONS(5164), + [anon_sym_DASH_DASH] = ACTIONS(5167), + [anon_sym_PLUS_PLUS] = ACTIONS(5167), + [anon_sym_DOT] = ACTIONS(5164), + [anon_sym_DOT_STAR] = ACTIONS(5167), + [anon_sym_DASH_GT] = ACTIONS(5164), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5164), + [anon_sym_decltype] = ACTIONS(5164), + [anon_sym_DASH_GT_STAR] = ACTIONS(5167), + }, + [1654] = { + [sym_function_definition] = STATE(626), + [sym_declaration] = STATE(626), + [sym__declaration_modifiers] = STATE(2095), + [sym__declaration_specifiers] = STATE(4803), + [sym_attribute_specifier] = STATE(2095), + [sym_attribute_declaration] = STATE(2095), + [sym_ms_declspec_modifier] = STATE(2095), + [sym_ms_call_modifier] = STATE(1954), + [sym_storage_class_specifier] = STATE(2095), + [sym_type_qualifier] = STATE(2095), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(8274), + [sym_dependent_type] = STATE(2558), + [sym_template_type] = STATE(3788), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(6715), + [sym_qualified_type_identifier] = STATE(3790), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(5247), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1446), + [anon_sym_virtual] = ACTIONS(1262), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5220), + [anon_sym_COLON_COLON] = ACTIONS(5228), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), [anon_sym___cdecl] = ACTIONS(55), @@ -241764,296 +244964,296 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2999), + [sym_primitive_type] = ACTIONS(3019), [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(5238), - [anon_sym_struct] = ACTIONS(5240), - [anon_sym_union] = ACTIONS(5242), + [anon_sym_class] = ACTIONS(5249), + [anon_sym_struct] = ACTIONS(5251), + [anon_sym_union] = ACTIONS(5253), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), }, - [1633] = { - [sym_type_qualifier] = STATE(1633), - [sym_alignas_qualifier] = STATE(1658), - [aux_sym__type_definition_type_repeat1] = STATE(1633), - [sym_identifier] = ACTIONS(5047), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5049), - [anon_sym_COMMA] = ACTIONS(5049), - [anon_sym_RPAREN] = ACTIONS(5049), - [anon_sym_LPAREN2] = ACTIONS(5049), - [anon_sym_TILDE] = ACTIONS(5049), - [anon_sym_STAR] = ACTIONS(5049), - [anon_sym_AMP_AMP] = ACTIONS(5049), - [anon_sym_AMP] = ACTIONS(5047), - [anon_sym_SEMI] = ACTIONS(5049), - [anon_sym___extension__] = ACTIONS(5244), - [anon_sym_virtual] = ACTIONS(5047), - [anon_sym_extern] = ACTIONS(5047), - [anon_sym___attribute__] = ACTIONS(5047), - [anon_sym___attribute] = ACTIONS(5047), - [anon_sym_COLON_COLON] = ACTIONS(5049), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5049), - [anon_sym___declspec] = ACTIONS(5047), - [anon_sym___based] = ACTIONS(5047), - [anon_sym___cdecl] = ACTIONS(5047), - [anon_sym___clrcall] = ACTIONS(5047), - [anon_sym___stdcall] = ACTIONS(5047), - [anon_sym___fastcall] = ACTIONS(5047), - [anon_sym___thiscall] = ACTIONS(5047), - [anon_sym___vectorcall] = ACTIONS(5047), - [anon_sym_LBRACE] = ACTIONS(5049), - [anon_sym_signed] = ACTIONS(5047), - [anon_sym_unsigned] = ACTIONS(5047), - [anon_sym_long] = ACTIONS(5047), - [anon_sym_short] = ACTIONS(5047), - [anon_sym_LBRACK] = ACTIONS(5047), - [anon_sym_static] = ACTIONS(5047), - [anon_sym_EQ] = ACTIONS(5049), - [anon_sym_register] = ACTIONS(5047), - [anon_sym_inline] = ACTIONS(5047), - [anon_sym___inline] = ACTIONS(5047), - [anon_sym___inline__] = ACTIONS(5047), - [anon_sym___forceinline] = ACTIONS(5047), - [anon_sym_thread_local] = ACTIONS(5047), - [anon_sym___thread] = ACTIONS(5047), - [anon_sym_const] = ACTIONS(5244), - [anon_sym_constexpr] = ACTIONS(5244), - [anon_sym_volatile] = ACTIONS(5244), - [anon_sym_restrict] = ACTIONS(5244), - [anon_sym___restrict__] = ACTIONS(5244), - [anon_sym__Atomic] = ACTIONS(5244), - [anon_sym__Noreturn] = ACTIONS(5244), - [anon_sym_noreturn] = ACTIONS(5244), - [anon_sym__Nonnull] = ACTIONS(5244), - [anon_sym_mutable] = ACTIONS(5244), - [anon_sym_constinit] = ACTIONS(5244), - [anon_sym_consteval] = ACTIONS(5244), - [anon_sym_alignas] = ACTIONS(5247), - [anon_sym__Alignas] = ACTIONS(5247), - [sym_primitive_type] = ACTIONS(5047), - [anon_sym_enum] = ACTIONS(5047), - [anon_sym_class] = ACTIONS(5047), - [anon_sym_struct] = ACTIONS(5047), - [anon_sym_union] = ACTIONS(5047), - [anon_sym_asm] = ACTIONS(5047), - [anon_sym___asm__] = ACTIONS(5047), - [anon_sym___asm] = ACTIONS(5047), - [anon_sym_DASH_GT] = ACTIONS(5049), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5047), - [anon_sym_decltype] = ACTIONS(5047), - [anon_sym_final] = ACTIONS(5047), - [anon_sym_override] = ACTIONS(5047), - [anon_sym_typename] = ACTIONS(5047), - [anon_sym_template] = ACTIONS(5047), - [anon_sym_GT2] = ACTIONS(5049), - [anon_sym_operator] = ACTIONS(5047), - [anon_sym_try] = ACTIONS(5047), - [anon_sym_noexcept] = ACTIONS(5047), - [anon_sym_throw] = ACTIONS(5047), - [anon_sym_requires] = ACTIONS(5047), + [1655] = { + [sym_function_definition] = STATE(598), + [sym_declaration] = STATE(598), + [sym__declaration_modifiers] = STATE(2095), + [sym__declaration_specifiers] = STATE(4803), + [sym_attribute_specifier] = STATE(2095), + [sym_attribute_declaration] = STATE(2095), + [sym_ms_declspec_modifier] = STATE(2095), + [sym_ms_call_modifier] = STATE(1954), + [sym_storage_class_specifier] = STATE(2095), + [sym_type_qualifier] = STATE(2095), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(8171), + [sym_dependent_type] = STATE(2558), + [sym_template_type] = STATE(3788), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(6715), + [sym_qualified_type_identifier] = STATE(3790), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(5247), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1262), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(5228), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(69), + [anon_sym__Alignas] = ACTIONS(69), + [sym_primitive_type] = ACTIONS(3019), + [anon_sym_enum] = ACTIONS(73), + [anon_sym_class] = ACTIONS(5255), + [anon_sym_struct] = ACTIONS(5257), + [anon_sym_union] = ACTIONS(5259), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(125), + [anon_sym_decltype] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(131), + [anon_sym_template] = ACTIONS(1268), }, - [1634] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1634), - [sym_identifier] = ACTIONS(5070), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5072), - [anon_sym_COMMA] = ACTIONS(5072), - [anon_sym_RPAREN] = ACTIONS(5072), - [anon_sym_LPAREN2] = ACTIONS(5072), - [anon_sym_DASH] = ACTIONS(5070), - [anon_sym_PLUS] = ACTIONS(5070), - [anon_sym_STAR] = ACTIONS(5070), - [anon_sym_SLASH] = ACTIONS(5070), - [anon_sym_PERCENT] = ACTIONS(5070), - [anon_sym_PIPE_PIPE] = ACTIONS(5072), - [anon_sym_AMP_AMP] = ACTIONS(5072), - [anon_sym_PIPE] = ACTIONS(5070), - [anon_sym_CARET] = ACTIONS(5070), - [anon_sym_AMP] = ACTIONS(5070), - [anon_sym_EQ_EQ] = ACTIONS(5072), - [anon_sym_BANG_EQ] = ACTIONS(5072), - [anon_sym_GT] = ACTIONS(5070), - [anon_sym_GT_EQ] = ACTIONS(5072), - [anon_sym_LT_EQ] = ACTIONS(5070), - [anon_sym_LT] = ACTIONS(5070), - [anon_sym_LT_LT] = ACTIONS(5070), - [anon_sym_GT_GT] = ACTIONS(5070), - [anon_sym___extension__] = ACTIONS(5070), - [anon_sym___attribute__] = ACTIONS(5070), - [anon_sym___attribute] = ACTIONS(5070), - [anon_sym_LBRACE] = ACTIONS(5072), - [anon_sym_signed] = ACTIONS(5250), - [anon_sym_unsigned] = ACTIONS(5250), - [anon_sym_long] = ACTIONS(5250), - [anon_sym_short] = ACTIONS(5250), - [anon_sym_LBRACK] = ACTIONS(5072), - [anon_sym_EQ] = ACTIONS(5070), - [anon_sym_const] = ACTIONS(5070), - [anon_sym_constexpr] = ACTIONS(5070), - [anon_sym_volatile] = ACTIONS(5070), - [anon_sym_restrict] = ACTIONS(5070), - [anon_sym___restrict__] = ACTIONS(5070), - [anon_sym__Atomic] = ACTIONS(5070), - [anon_sym__Noreturn] = ACTIONS(5070), - [anon_sym_noreturn] = ACTIONS(5070), - [anon_sym__Nonnull] = ACTIONS(5070), - [anon_sym_mutable] = ACTIONS(5070), - [anon_sym_constinit] = ACTIONS(5070), - [anon_sym_consteval] = ACTIONS(5070), - [anon_sym_alignas] = ACTIONS(5070), - [anon_sym__Alignas] = ACTIONS(5070), - [sym_primitive_type] = ACTIONS(5070), - [anon_sym_QMARK] = ACTIONS(5072), - [anon_sym_STAR_EQ] = ACTIONS(5072), - [anon_sym_SLASH_EQ] = ACTIONS(5072), - [anon_sym_PERCENT_EQ] = ACTIONS(5072), - [anon_sym_PLUS_EQ] = ACTIONS(5072), - [anon_sym_DASH_EQ] = ACTIONS(5072), - [anon_sym_LT_LT_EQ] = ACTIONS(5072), - [anon_sym_GT_GT_EQ] = ACTIONS(5072), - [anon_sym_AMP_EQ] = ACTIONS(5072), - [anon_sym_CARET_EQ] = ACTIONS(5072), - [anon_sym_PIPE_EQ] = ACTIONS(5072), - [anon_sym_and_eq] = ACTIONS(5070), - [anon_sym_or_eq] = ACTIONS(5070), - [anon_sym_xor_eq] = ACTIONS(5070), - [anon_sym_LT_EQ_GT] = ACTIONS(5072), - [anon_sym_or] = ACTIONS(5070), - [anon_sym_and] = ACTIONS(5070), - [anon_sym_bitor] = ACTIONS(5070), - [anon_sym_xor] = ACTIONS(5070), - [anon_sym_bitand] = ACTIONS(5070), - [anon_sym_not_eq] = ACTIONS(5070), - [anon_sym_DASH_DASH] = ACTIONS(5072), - [anon_sym_PLUS_PLUS] = ACTIONS(5072), - [anon_sym_DOT] = ACTIONS(5070), - [anon_sym_DOT_STAR] = ACTIONS(5072), - [anon_sym_DASH_GT] = ACTIONS(5070), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5070), - [anon_sym_decltype] = ACTIONS(5070), - [anon_sym_DASH_GT_STAR] = ACTIONS(5072), + [1656] = { + [sym_function_definition] = STATE(770), + [sym_declaration] = STATE(770), + [sym__declaration_modifiers] = STATE(2095), + [sym__declaration_specifiers] = STATE(4646), + [sym_attribute_specifier] = STATE(2095), + [sym_attribute_declaration] = STATE(2095), + [sym_ms_declspec_modifier] = STATE(2095), + [sym_ms_call_modifier] = STATE(1956), + [sym_storage_class_specifier] = STATE(2095), + [sym_type_qualifier] = STATE(2095), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(8625), + [sym_dependent_type] = STATE(2558), + [sym_template_type] = STATE(3788), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(6715), + [sym_qualified_type_identifier] = STATE(3790), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(5247), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1262), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(5228), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(69), + [anon_sym__Alignas] = ACTIONS(69), + [sym_primitive_type] = ACTIONS(3019), + [anon_sym_enum] = ACTIONS(73), + [anon_sym_class] = ACTIONS(5261), + [anon_sym_struct] = ACTIONS(5263), + [anon_sym_union] = ACTIONS(5265), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(125), + [anon_sym_decltype] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(131), + [anon_sym_template] = ACTIONS(1268), }, - [1635] = { - [sym_type_qualifier] = STATE(1654), - [sym_alignas_qualifier] = STATE(1688), - [aux_sym__type_definition_type_repeat1] = STATE(1654), - [aux_sym_sized_type_specifier_repeat1] = STATE(2713), - [sym_identifier] = ACTIONS(5253), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5100), - [anon_sym_COMMA] = ACTIONS(5100), - [anon_sym_RPAREN] = ACTIONS(5100), - [anon_sym_LPAREN2] = ACTIONS(5100), - [anon_sym_DASH] = ACTIONS(5102), - [anon_sym_PLUS] = ACTIONS(5102), - [anon_sym_STAR] = ACTIONS(5102), - [anon_sym_SLASH] = ACTIONS(5102), - [anon_sym_PERCENT] = ACTIONS(5102), - [anon_sym_PIPE_PIPE] = ACTIONS(5100), - [anon_sym_AMP_AMP] = ACTIONS(5100), - [anon_sym_PIPE] = ACTIONS(5102), - [anon_sym_CARET] = ACTIONS(5102), - [anon_sym_AMP] = ACTIONS(5102), - [anon_sym_EQ_EQ] = ACTIONS(5100), - [anon_sym_BANG_EQ] = ACTIONS(5100), - [anon_sym_GT] = ACTIONS(5102), - [anon_sym_GT_EQ] = ACTIONS(5100), - [anon_sym_LT_EQ] = ACTIONS(5102), - [anon_sym_LT] = ACTIONS(5102), - [anon_sym_LT_LT] = ACTIONS(5102), - [anon_sym_GT_GT] = ACTIONS(5102), - [anon_sym___extension__] = ACTIONS(5255), - [anon_sym___attribute__] = ACTIONS(5102), - [anon_sym___attribute] = ACTIONS(5102), - [anon_sym_LBRACE] = ACTIONS(5100), - [anon_sym_signed] = ACTIONS(5257), - [anon_sym_unsigned] = ACTIONS(5257), - [anon_sym_long] = ACTIONS(5257), - [anon_sym_short] = ACTIONS(5257), - [anon_sym_LBRACK] = ACTIONS(5100), - [anon_sym_EQ] = ACTIONS(5102), - [anon_sym_const] = ACTIONS(5255), - [anon_sym_constexpr] = ACTIONS(5255), - [anon_sym_volatile] = ACTIONS(5255), - [anon_sym_restrict] = ACTIONS(5255), - [anon_sym___restrict__] = ACTIONS(5255), - [anon_sym__Atomic] = ACTIONS(5255), - [anon_sym__Noreturn] = ACTIONS(5255), - [anon_sym_noreturn] = ACTIONS(5255), - [anon_sym__Nonnull] = ACTIONS(5255), - [anon_sym_mutable] = ACTIONS(5255), - [anon_sym_constinit] = ACTIONS(5255), - [anon_sym_consteval] = ACTIONS(5255), - [anon_sym_alignas] = ACTIONS(5259), - [anon_sym__Alignas] = ACTIONS(5259), - [sym_primitive_type] = ACTIONS(5261), - [anon_sym_QMARK] = ACTIONS(5100), - [anon_sym_STAR_EQ] = ACTIONS(5100), - [anon_sym_SLASH_EQ] = ACTIONS(5100), - [anon_sym_PERCENT_EQ] = ACTIONS(5100), - [anon_sym_PLUS_EQ] = ACTIONS(5100), - [anon_sym_DASH_EQ] = ACTIONS(5100), - [anon_sym_LT_LT_EQ] = ACTIONS(5100), - [anon_sym_GT_GT_EQ] = ACTIONS(5100), - [anon_sym_AMP_EQ] = ACTIONS(5100), - [anon_sym_CARET_EQ] = ACTIONS(5100), - [anon_sym_PIPE_EQ] = ACTIONS(5100), - [anon_sym_LT_EQ_GT] = ACTIONS(5100), - [anon_sym_or] = ACTIONS(5102), - [anon_sym_and] = ACTIONS(5102), - [anon_sym_bitor] = ACTIONS(5102), - [anon_sym_xor] = ACTIONS(5102), - [anon_sym_bitand] = ACTIONS(5102), - [anon_sym_not_eq] = ACTIONS(5102), - [anon_sym_DASH_DASH] = ACTIONS(5100), - [anon_sym_PLUS_PLUS] = ACTIONS(5100), - [anon_sym_DOT] = ACTIONS(5102), - [anon_sym_DOT_STAR] = ACTIONS(5100), - [anon_sym_DASH_GT] = ACTIONS(5102), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5102), - [anon_sym_decltype] = ACTIONS(5102), - [anon_sym_DASH_GT_STAR] = ACTIONS(5100), + [1657] = { + [sym_function_definition] = STATE(2166), + [sym_declaration] = STATE(2166), + [sym__declaration_modifiers] = STATE(2095), + [sym__declaration_specifiers] = STATE(4798), + [sym_attribute_specifier] = STATE(2095), + [sym_attribute_declaration] = STATE(2095), + [sym_ms_declspec_modifier] = STATE(2095), + [sym_ms_call_modifier] = STATE(1967), + [sym_storage_class_specifier] = STATE(2095), + [sym_type_qualifier] = STATE(2095), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(8391), + [sym_dependent_type] = STATE(2558), + [sym_template_type] = STATE(3788), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(6715), + [sym_qualified_type_identifier] = STATE(3790), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(5247), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1262), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(5228), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(69), + [anon_sym__Alignas] = ACTIONS(69), + [sym_primitive_type] = ACTIONS(3019), + [anon_sym_enum] = ACTIONS(73), + [anon_sym_class] = ACTIONS(5267), + [anon_sym_struct] = ACTIONS(5269), + [anon_sym_union] = ACTIONS(5271), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(125), + [anon_sym_decltype] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(131), + [anon_sym_template] = ACTIONS(1268), }, - [1636] = { - [sym_function_definition] = STATE(1804), - [sym_declaration] = STATE(1804), - [sym__declaration_modifiers] = STATE(2136), - [sym__declaration_specifiers] = STATE(4676), - [sym_attribute_specifier] = STATE(2136), - [sym_attribute_declaration] = STATE(2136), - [sym_ms_declspec_modifier] = STATE(2136), - [sym_ms_call_modifier] = STATE(1933), - [sym_storage_class_specifier] = STATE(2136), - [sym_type_qualifier] = STATE(2136), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(8159), - [sym_dependent_type] = STATE(2523), - [sym_template_type] = STATE(3706), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(6627), - [sym_qualified_type_identifier] = STATE(3798), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [sym_identifier] = ACTIONS(5236), + [1658] = { + [sym_function_definition] = STATE(781), + [sym_declaration] = STATE(781), + [sym__declaration_modifiers] = STATE(2095), + [sym__declaration_specifiers] = STATE(4646), + [sym_attribute_specifier] = STATE(2095), + [sym_attribute_declaration] = STATE(2095), + [sym_ms_declspec_modifier] = STATE(2095), + [sym_ms_call_modifier] = STATE(1956), + [sym_storage_class_specifier] = STATE(2095), + [sym_type_qualifier] = STATE(2095), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(8924), + [sym_dependent_type] = STATE(2558), + [sym_template_type] = STATE(3788), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(6715), + [sym_qualified_type_identifier] = STATE(3790), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(5247), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1446), + [anon_sym_virtual] = ACTIONS(1262), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5220), + [anon_sym_COLON_COLON] = ACTIONS(5228), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), [anon_sym___cdecl] = ACTIONS(55), @@ -242088,134 +245288,215 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2999), + [sym_primitive_type] = ACTIONS(3019), [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(5263), - [anon_sym_struct] = ACTIONS(5265), - [anon_sym_union] = ACTIONS(5267), + [anon_sym_class] = ACTIONS(5273), + [anon_sym_struct] = ACTIONS(5275), + [anon_sym_union] = ACTIONS(5277), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), }, - [1637] = { - [sym_type_qualifier] = STATE(1635), - [sym_alignas_qualifier] = STATE(1688), - [aux_sym__type_definition_type_repeat1] = STATE(1635), - [aux_sym_sized_type_specifier_repeat1] = STATE(1672), - [sym_identifier] = ACTIONS(5269), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5086), - [anon_sym_COMMA] = ACTIONS(5086), - [anon_sym_RPAREN] = ACTIONS(5086), - [anon_sym_LPAREN2] = ACTIONS(5086), - [anon_sym_DASH] = ACTIONS(5088), - [anon_sym_PLUS] = ACTIONS(5088), - [anon_sym_STAR] = ACTIONS(5088), - [anon_sym_SLASH] = ACTIONS(5088), - [anon_sym_PERCENT] = ACTIONS(5088), - [anon_sym_PIPE_PIPE] = ACTIONS(5086), - [anon_sym_AMP_AMP] = ACTIONS(5086), - [anon_sym_PIPE] = ACTIONS(5088), - [anon_sym_CARET] = ACTIONS(5088), - [anon_sym_AMP] = ACTIONS(5088), - [anon_sym_EQ_EQ] = ACTIONS(5086), - [anon_sym_BANG_EQ] = ACTIONS(5086), - [anon_sym_GT] = ACTIONS(5088), - [anon_sym_GT_EQ] = ACTIONS(5086), - [anon_sym_LT_EQ] = ACTIONS(5088), - [anon_sym_LT] = ACTIONS(5088), - [anon_sym_LT_LT] = ACTIONS(5088), - [anon_sym_GT_GT] = ACTIONS(5088), - [anon_sym___extension__] = ACTIONS(5255), - [anon_sym___attribute__] = ACTIONS(5088), - [anon_sym___attribute] = ACTIONS(5088), - [anon_sym_LBRACE] = ACTIONS(5086), - [anon_sym_signed] = ACTIONS(5271), - [anon_sym_unsigned] = ACTIONS(5271), - [anon_sym_long] = ACTIONS(5271), - [anon_sym_short] = ACTIONS(5271), - [anon_sym_LBRACK] = ACTIONS(5086), - [anon_sym_EQ] = ACTIONS(5088), - [anon_sym_const] = ACTIONS(5255), - [anon_sym_constexpr] = ACTIONS(5255), - [anon_sym_volatile] = ACTIONS(5255), - [anon_sym_restrict] = ACTIONS(5255), - [anon_sym___restrict__] = ACTIONS(5255), - [anon_sym__Atomic] = ACTIONS(5255), - [anon_sym__Noreturn] = ACTIONS(5255), - [anon_sym_noreturn] = ACTIONS(5255), - [anon_sym__Nonnull] = ACTIONS(5255), - [anon_sym_mutable] = ACTIONS(5255), - [anon_sym_constinit] = ACTIONS(5255), - [anon_sym_consteval] = ACTIONS(5255), - [anon_sym_alignas] = ACTIONS(5259), - [anon_sym__Alignas] = ACTIONS(5259), - [sym_primitive_type] = ACTIONS(5273), - [anon_sym_QMARK] = ACTIONS(5086), - [anon_sym_STAR_EQ] = ACTIONS(5086), - [anon_sym_SLASH_EQ] = ACTIONS(5086), - [anon_sym_PERCENT_EQ] = ACTIONS(5086), - [anon_sym_PLUS_EQ] = ACTIONS(5086), - [anon_sym_DASH_EQ] = ACTIONS(5086), - [anon_sym_LT_LT_EQ] = ACTIONS(5086), - [anon_sym_GT_GT_EQ] = ACTIONS(5086), - [anon_sym_AMP_EQ] = ACTIONS(5086), - [anon_sym_CARET_EQ] = ACTIONS(5086), - [anon_sym_PIPE_EQ] = ACTIONS(5086), - [anon_sym_LT_EQ_GT] = ACTIONS(5086), - [anon_sym_or] = ACTIONS(5088), - [anon_sym_and] = ACTIONS(5088), - [anon_sym_bitor] = ACTIONS(5088), - [anon_sym_xor] = ACTIONS(5088), - [anon_sym_bitand] = ACTIONS(5088), - [anon_sym_not_eq] = ACTIONS(5088), - [anon_sym_DASH_DASH] = ACTIONS(5086), - [anon_sym_PLUS_PLUS] = ACTIONS(5086), - [anon_sym_DOT] = ACTIONS(5088), - [anon_sym_DOT_STAR] = ACTIONS(5086), - [anon_sym_DASH_GT] = ACTIONS(5088), + [1659] = { + [sym_type_qualifier] = STATE(1674), + [sym_alignas_qualifier] = STATE(1711), + [aux_sym__type_definition_type_repeat1] = STATE(1674), + [aux_sym_sized_type_specifier_repeat1] = STATE(2778), + [sym_identifier] = ACTIONS(5279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5109), + [anon_sym_COMMA] = ACTIONS(5109), + [anon_sym_RPAREN] = ACTIONS(5109), + [anon_sym_LPAREN2] = ACTIONS(5109), + [anon_sym_DASH] = ACTIONS(5111), + [anon_sym_PLUS] = ACTIONS(5111), + [anon_sym_STAR] = ACTIONS(5111), + [anon_sym_SLASH] = ACTIONS(5111), + [anon_sym_PERCENT] = ACTIONS(5111), + [anon_sym_PIPE_PIPE] = ACTIONS(5109), + [anon_sym_AMP_AMP] = ACTIONS(5109), + [anon_sym_PIPE] = ACTIONS(5111), + [anon_sym_CARET] = ACTIONS(5111), + [anon_sym_AMP] = ACTIONS(5111), + [anon_sym_EQ_EQ] = ACTIONS(5109), + [anon_sym_BANG_EQ] = ACTIONS(5109), + [anon_sym_GT] = ACTIONS(5111), + [anon_sym_GT_EQ] = ACTIONS(5109), + [anon_sym_LT_EQ] = ACTIONS(5111), + [anon_sym_LT] = ACTIONS(5111), + [anon_sym_LT_LT] = ACTIONS(5111), + [anon_sym_GT_GT] = ACTIONS(5111), + [anon_sym___extension__] = ACTIONS(5281), + [anon_sym___attribute__] = ACTIONS(5111), + [anon_sym___attribute] = ACTIONS(5111), + [anon_sym_LBRACE] = ACTIONS(5109), + [anon_sym_signed] = ACTIONS(5283), + [anon_sym_unsigned] = ACTIONS(5283), + [anon_sym_long] = ACTIONS(5283), + [anon_sym_short] = ACTIONS(5283), + [anon_sym_LBRACK] = ACTIONS(5109), + [anon_sym_EQ] = ACTIONS(5111), + [anon_sym_const] = ACTIONS(5281), + [anon_sym_constexpr] = ACTIONS(5281), + [anon_sym_volatile] = ACTIONS(5281), + [anon_sym_restrict] = ACTIONS(5281), + [anon_sym___restrict__] = ACTIONS(5281), + [anon_sym__Atomic] = ACTIONS(5281), + [anon_sym__Noreturn] = ACTIONS(5281), + [anon_sym_noreturn] = ACTIONS(5281), + [anon_sym__Nonnull] = ACTIONS(5281), + [anon_sym_mutable] = ACTIONS(5281), + [anon_sym_constinit] = ACTIONS(5281), + [anon_sym_consteval] = ACTIONS(5281), + [anon_sym_alignas] = ACTIONS(5285), + [anon_sym__Alignas] = ACTIONS(5285), + [sym_primitive_type] = ACTIONS(5287), + [anon_sym_QMARK] = ACTIONS(5109), + [anon_sym_STAR_EQ] = ACTIONS(5109), + [anon_sym_SLASH_EQ] = ACTIONS(5109), + [anon_sym_PERCENT_EQ] = ACTIONS(5109), + [anon_sym_PLUS_EQ] = ACTIONS(5109), + [anon_sym_DASH_EQ] = ACTIONS(5109), + [anon_sym_LT_LT_EQ] = ACTIONS(5109), + [anon_sym_GT_GT_EQ] = ACTIONS(5109), + [anon_sym_AMP_EQ] = ACTIONS(5109), + [anon_sym_CARET_EQ] = ACTIONS(5109), + [anon_sym_PIPE_EQ] = ACTIONS(5109), + [anon_sym_LT_EQ_GT] = ACTIONS(5109), + [anon_sym_or] = ACTIONS(5111), + [anon_sym_and] = ACTIONS(5111), + [anon_sym_bitor] = ACTIONS(5111), + [anon_sym_xor] = ACTIONS(5111), + [anon_sym_bitand] = ACTIONS(5111), + [anon_sym_not_eq] = ACTIONS(5111), + [anon_sym_DASH_DASH] = ACTIONS(5109), + [anon_sym_PLUS_PLUS] = ACTIONS(5109), + [anon_sym_DOT] = ACTIONS(5111), + [anon_sym_DOT_STAR] = ACTIONS(5109), + [anon_sym_DASH_GT] = ACTIONS(5111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5111), + [anon_sym_decltype] = ACTIONS(5111), + [anon_sym_DASH_GT_STAR] = ACTIONS(5109), + }, + [1660] = { + [sym_function_definition] = STATE(365), + [sym_declaration] = STATE(365), + [sym__declaration_modifiers] = STATE(2095), + [sym__declaration_specifiers] = STATE(4710), + [sym_attribute_specifier] = STATE(2095), + [sym_attribute_declaration] = STATE(2095), + [sym_ms_declspec_modifier] = STATE(2095), + [sym_ms_call_modifier] = STATE(1963), + [sym_storage_class_specifier] = STATE(2095), + [sym_type_qualifier] = STATE(2095), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(8481), + [sym_dependent_type] = STATE(2558), + [sym_template_type] = STATE(3788), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(6715), + [sym_qualified_type_identifier] = STATE(3790), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(5247), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1262), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(5228), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(69), + [anon_sym__Alignas] = ACTIONS(69), + [sym_primitive_type] = ACTIONS(3019), + [anon_sym_enum] = ACTIONS(73), + [anon_sym_class] = ACTIONS(5289), + [anon_sym_struct] = ACTIONS(5291), + [anon_sym_union] = ACTIONS(5293), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5088), - [anon_sym_decltype] = ACTIONS(5088), - [anon_sym_DASH_GT_STAR] = ACTIONS(5086), + [sym_auto] = ACTIONS(125), + [anon_sym_decltype] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(131), + [anon_sym_template] = ACTIONS(1268), }, - [1638] = { - [sym_function_definition] = STATE(2098), - [sym_declaration] = STATE(2098), - [sym__declaration_modifiers] = STATE(2136), - [sym__declaration_specifiers] = STATE(4668), - [sym_attribute_specifier] = STATE(2136), - [sym_attribute_declaration] = STATE(2136), - [sym_ms_declspec_modifier] = STATE(2136), - [sym_ms_call_modifier] = STATE(1932), - [sym_storage_class_specifier] = STATE(2136), - [sym_type_qualifier] = STATE(2136), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(8305), - [sym_dependent_type] = STATE(2523), - [sym_template_type] = STATE(3706), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(6627), - [sym_qualified_type_identifier] = STATE(3798), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [sym_identifier] = ACTIONS(5236), + [1661] = { + [sym_function_definition] = STATE(368), + [sym_declaration] = STATE(368), + [sym__declaration_modifiers] = STATE(2095), + [sym__declaration_specifiers] = STATE(4710), + [sym_attribute_specifier] = STATE(2095), + [sym_attribute_declaration] = STATE(2095), + [sym_ms_declspec_modifier] = STATE(2095), + [sym_ms_call_modifier] = STATE(1963), + [sym_storage_class_specifier] = STATE(2095), + [sym_type_qualifier] = STATE(2095), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(8086), + [sym_dependent_type] = STATE(2558), + [sym_template_type] = STATE(3788), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(6715), + [sym_qualified_type_identifier] = STATE(3790), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(5247), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1446), + [anon_sym_virtual] = ACTIONS(1262), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5220), + [anon_sym_COLON_COLON] = ACTIONS(5228), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), [anon_sym___cdecl] = ACTIONS(55), @@ -242250,53 +245531,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2999), + [sym_primitive_type] = ACTIONS(3019), [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(5275), - [anon_sym_struct] = ACTIONS(5277), - [anon_sym_union] = ACTIONS(5279), + [anon_sym_class] = ACTIONS(5295), + [anon_sym_struct] = ACTIONS(5297), + [anon_sym_union] = ACTIONS(5299), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), }, - [1639] = { - [sym_function_definition] = STATE(1749), - [sym_declaration] = STATE(1749), - [sym__declaration_modifiers] = STATE(2136), - [sym__declaration_specifiers] = STATE(4676), - [sym_attribute_specifier] = STATE(2136), - [sym_attribute_declaration] = STATE(2136), - [sym_ms_declspec_modifier] = STATE(2136), - [sym_ms_call_modifier] = STATE(1933), - [sym_storage_class_specifier] = STATE(2136), - [sym_type_qualifier] = STATE(2136), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(8258), - [sym_dependent_type] = STATE(2523), - [sym_template_type] = STATE(3706), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(6627), - [sym_qualified_type_identifier] = STATE(3798), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [sym_identifier] = ACTIONS(5236), + [1662] = { + [sym_function_definition] = STATE(1757), + [sym_declaration] = STATE(1757), + [sym__declaration_modifiers] = STATE(2095), + [sym__declaration_specifiers] = STATE(4828), + [sym_attribute_specifier] = STATE(2095), + [sym_attribute_declaration] = STATE(2095), + [sym_ms_declspec_modifier] = STATE(2095), + [sym_ms_call_modifier] = STATE(1968), + [sym_storage_class_specifier] = STATE(2095), + [sym_type_qualifier] = STATE(2095), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(8179), + [sym_dependent_type] = STATE(2558), + [sym_template_type] = STATE(3788), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(6715), + [sym_qualified_type_identifier] = STATE(3790), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(5247), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1446), + [anon_sym_virtual] = ACTIONS(1262), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5220), + [anon_sym_COLON_COLON] = ACTIONS(5228), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), [anon_sym___cdecl] = ACTIONS(55), @@ -242331,53 +245612,620 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2999), + [sym_primitive_type] = ACTIONS(3019), [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(5281), - [anon_sym_struct] = ACTIONS(5283), - [anon_sym_union] = ACTIONS(5285), + [anon_sym_class] = ACTIONS(5301), + [anon_sym_struct] = ACTIONS(5303), + [anon_sym_union] = ACTIONS(5305), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), }, - [1640] = { - [sym_function_definition] = STATE(735), - [sym_declaration] = STATE(735), - [sym__declaration_modifiers] = STATE(2136), - [sym__declaration_specifiers] = STATE(4658), - [sym_attribute_specifier] = STATE(2136), - [sym_attribute_declaration] = STATE(2136), - [sym_ms_declspec_modifier] = STATE(2136), - [sym_ms_call_modifier] = STATE(1912), - [sym_storage_class_specifier] = STATE(2136), - [sym_type_qualifier] = STATE(2136), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(8074), - [sym_dependent_type] = STATE(2523), - [sym_template_type] = STATE(3706), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(6627), - [sym_qualified_type_identifier] = STATE(3798), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [sym_identifier] = ACTIONS(5236), + [1663] = { + [sym_function_definition] = STATE(747), + [sym_declaration] = STATE(747), + [sym__declaration_modifiers] = STATE(2095), + [sym__declaration_specifiers] = STATE(4774), + [sym_attribute_specifier] = STATE(2095), + [sym_attribute_declaration] = STATE(2095), + [sym_ms_declspec_modifier] = STATE(2095), + [sym_ms_call_modifier] = STATE(1965), + [sym_storage_class_specifier] = STATE(2095), + [sym_type_qualifier] = STATE(2095), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(8528), + [sym_dependent_type] = STATE(2558), + [sym_template_type] = STATE(3788), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(6715), + [sym_qualified_type_identifier] = STATE(3790), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(5247), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1262), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(5228), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(69), + [anon_sym__Alignas] = ACTIONS(69), + [sym_primitive_type] = ACTIONS(3019), + [anon_sym_enum] = ACTIONS(73), + [anon_sym_class] = ACTIONS(5307), + [anon_sym_struct] = ACTIONS(5309), + [anon_sym_union] = ACTIONS(5311), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(125), + [anon_sym_decltype] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(131), + [anon_sym_template] = ACTIONS(1268), + }, + [1664] = { + [sym_function_definition] = STATE(749), + [sym_declaration] = STATE(749), + [sym__declaration_modifiers] = STATE(2095), + [sym__declaration_specifiers] = STATE(4774), + [sym_attribute_specifier] = STATE(2095), + [sym_attribute_declaration] = STATE(2095), + [sym_ms_declspec_modifier] = STATE(2095), + [sym_ms_call_modifier] = STATE(1965), + [sym_storage_class_specifier] = STATE(2095), + [sym_type_qualifier] = STATE(2095), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(8560), + [sym_dependent_type] = STATE(2558), + [sym_template_type] = STATE(3788), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(6715), + [sym_qualified_type_identifier] = STATE(3790), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(5247), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1262), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(5228), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(69), + [anon_sym__Alignas] = ACTIONS(69), + [sym_primitive_type] = ACTIONS(3019), + [anon_sym_enum] = ACTIONS(73), + [anon_sym_class] = ACTIONS(5313), + [anon_sym_struct] = ACTIONS(5315), + [anon_sym_union] = ACTIONS(5317), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(125), + [anon_sym_decltype] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(131), + [anon_sym_template] = ACTIONS(1268), + }, + [1665] = { + [sym_function_definition] = STATE(2050), + [sym_declaration] = STATE(2050), + [sym__declaration_modifiers] = STATE(2095), + [sym__declaration_specifiers] = STATE(4649), + [sym_attribute_specifier] = STATE(2095), + [sym_attribute_declaration] = STATE(2095), + [sym_ms_declspec_modifier] = STATE(2095), + [sym_ms_call_modifier] = STATE(1969), + [sym_storage_class_specifier] = STATE(2095), + [sym_type_qualifier] = STATE(2095), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(8815), + [sym_dependent_type] = STATE(2558), + [sym_template_type] = STATE(3788), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(6715), + [sym_qualified_type_identifier] = STATE(3790), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(5247), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1262), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(5228), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(69), + [anon_sym__Alignas] = ACTIONS(69), + [sym_primitive_type] = ACTIONS(3019), + [anon_sym_enum] = ACTIONS(73), + [anon_sym_class] = ACTIONS(5319), + [anon_sym_struct] = ACTIONS(5321), + [anon_sym_union] = ACTIONS(5323), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(125), + [anon_sym_decltype] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(131), + [anon_sym_template] = ACTIONS(1268), + }, + [1666] = { + [sym_function_definition] = STATE(2161), + [sym_declaration] = STATE(2161), + [sym__declaration_modifiers] = STATE(2095), + [sym__declaration_specifiers] = STATE(4649), + [sym_attribute_specifier] = STATE(2095), + [sym_attribute_declaration] = STATE(2095), + [sym_ms_declspec_modifier] = STATE(2095), + [sym_ms_call_modifier] = STATE(1969), + [sym_storage_class_specifier] = STATE(2095), + [sym_type_qualifier] = STATE(2095), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(8240), + [sym_dependent_type] = STATE(2558), + [sym_template_type] = STATE(3788), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(6715), + [sym_qualified_type_identifier] = STATE(3790), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(5247), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1262), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(5228), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(69), + [anon_sym__Alignas] = ACTIONS(69), + [sym_primitive_type] = ACTIONS(3019), + [anon_sym_enum] = ACTIONS(73), + [anon_sym_class] = ACTIONS(5325), + [anon_sym_struct] = ACTIONS(5327), + [anon_sym_union] = ACTIONS(5329), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(125), + [anon_sym_decltype] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(131), + [anon_sym_template] = ACTIONS(1268), + }, + [1667] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1667), + [sym_identifier] = ACTIONS(5078), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5080), + [anon_sym_COMMA] = ACTIONS(5080), + [anon_sym_RPAREN] = ACTIONS(5080), + [anon_sym_LPAREN2] = ACTIONS(5080), + [anon_sym_DASH] = ACTIONS(5078), + [anon_sym_PLUS] = ACTIONS(5078), + [anon_sym_STAR] = ACTIONS(5078), + [anon_sym_SLASH] = ACTIONS(5078), + [anon_sym_PERCENT] = ACTIONS(5078), + [anon_sym_PIPE_PIPE] = ACTIONS(5080), + [anon_sym_AMP_AMP] = ACTIONS(5080), + [anon_sym_PIPE] = ACTIONS(5078), + [anon_sym_CARET] = ACTIONS(5078), + [anon_sym_AMP] = ACTIONS(5078), + [anon_sym_EQ_EQ] = ACTIONS(5080), + [anon_sym_BANG_EQ] = ACTIONS(5080), + [anon_sym_GT] = ACTIONS(5078), + [anon_sym_GT_EQ] = ACTIONS(5080), + [anon_sym_LT_EQ] = ACTIONS(5078), + [anon_sym_LT] = ACTIONS(5078), + [anon_sym_LT_LT] = ACTIONS(5078), + [anon_sym_GT_GT] = ACTIONS(5078), + [anon_sym___extension__] = ACTIONS(5078), + [anon_sym___attribute__] = ACTIONS(5078), + [anon_sym___attribute] = ACTIONS(5078), + [anon_sym_LBRACE] = ACTIONS(5080), + [anon_sym_signed] = ACTIONS(5244), + [anon_sym_unsigned] = ACTIONS(5244), + [anon_sym_long] = ACTIONS(5244), + [anon_sym_short] = ACTIONS(5244), + [anon_sym_LBRACK] = ACTIONS(5080), + [anon_sym_EQ] = ACTIONS(5078), + [anon_sym_const] = ACTIONS(5078), + [anon_sym_constexpr] = ACTIONS(5078), + [anon_sym_volatile] = ACTIONS(5078), + [anon_sym_restrict] = ACTIONS(5078), + [anon_sym___restrict__] = ACTIONS(5078), + [anon_sym__Atomic] = ACTIONS(5078), + [anon_sym__Noreturn] = ACTIONS(5078), + [anon_sym_noreturn] = ACTIONS(5078), + [anon_sym__Nonnull] = ACTIONS(5078), + [anon_sym_mutable] = ACTIONS(5078), + [anon_sym_constinit] = ACTIONS(5078), + [anon_sym_consteval] = ACTIONS(5078), + [anon_sym_alignas] = ACTIONS(5078), + [anon_sym__Alignas] = ACTIONS(5078), + [sym_primitive_type] = ACTIONS(5078), + [anon_sym_QMARK] = ACTIONS(5080), + [anon_sym_STAR_EQ] = ACTIONS(5080), + [anon_sym_SLASH_EQ] = ACTIONS(5080), + [anon_sym_PERCENT_EQ] = ACTIONS(5080), + [anon_sym_PLUS_EQ] = ACTIONS(5080), + [anon_sym_DASH_EQ] = ACTIONS(5080), + [anon_sym_LT_LT_EQ] = ACTIONS(5080), + [anon_sym_GT_GT_EQ] = ACTIONS(5080), + [anon_sym_AMP_EQ] = ACTIONS(5080), + [anon_sym_CARET_EQ] = ACTIONS(5080), + [anon_sym_PIPE_EQ] = ACTIONS(5080), + [anon_sym_and_eq] = ACTIONS(5078), + [anon_sym_or_eq] = ACTIONS(5078), + [anon_sym_xor_eq] = ACTIONS(5078), + [anon_sym_LT_EQ_GT] = ACTIONS(5080), + [anon_sym_or] = ACTIONS(5078), + [anon_sym_and] = ACTIONS(5078), + [anon_sym_bitor] = ACTIONS(5078), + [anon_sym_xor] = ACTIONS(5078), + [anon_sym_bitand] = ACTIONS(5078), + [anon_sym_not_eq] = ACTIONS(5078), + [anon_sym_DASH_DASH] = ACTIONS(5080), + [anon_sym_PLUS_PLUS] = ACTIONS(5080), + [anon_sym_DOT] = ACTIONS(5078), + [anon_sym_DOT_STAR] = ACTIONS(5080), + [anon_sym_DASH_GT] = ACTIONS(5078), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5078), + [anon_sym_decltype] = ACTIONS(5078), + [anon_sym_DASH_GT_STAR] = ACTIONS(5080), + }, + [1668] = { + [sym_function_definition] = STATE(1742), + [sym_declaration] = STATE(1742), + [sym__declaration_modifiers] = STATE(2095), + [sym__declaration_specifiers] = STATE(4828), + [sym_attribute_specifier] = STATE(2095), + [sym_attribute_declaration] = STATE(2095), + [sym_ms_declspec_modifier] = STATE(2095), + [sym_ms_call_modifier] = STATE(1968), + [sym_storage_class_specifier] = STATE(2095), + [sym_type_qualifier] = STATE(2095), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(8108), + [sym_dependent_type] = STATE(2558), + [sym_template_type] = STATE(3788), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(6715), + [sym_qualified_type_identifier] = STATE(3790), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(5247), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1262), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(5228), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(69), + [anon_sym__Alignas] = ACTIONS(69), + [sym_primitive_type] = ACTIONS(3019), + [anon_sym_enum] = ACTIONS(73), + [anon_sym_class] = ACTIONS(5331), + [anon_sym_struct] = ACTIONS(5333), + [anon_sym_union] = ACTIONS(5335), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(125), + [anon_sym_decltype] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(131), + [anon_sym_template] = ACTIONS(1268), + }, + [1669] = { + [sym_type_qualifier] = STATE(1669), + [sym_alignas_qualifier] = STATE(1680), + [aux_sym__type_definition_type_repeat1] = STATE(1669), + [sym_identifier] = ACTIONS(5055), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5057), + [anon_sym_COMMA] = ACTIONS(5057), + [anon_sym_RPAREN] = ACTIONS(5057), + [anon_sym_LPAREN2] = ACTIONS(5057), + [anon_sym_TILDE] = ACTIONS(5057), + [anon_sym_STAR] = ACTIONS(5057), + [anon_sym_AMP_AMP] = ACTIONS(5057), + [anon_sym_AMP] = ACTIONS(5055), + [anon_sym_SEMI] = ACTIONS(5057), + [anon_sym___extension__] = ACTIONS(5337), + [anon_sym_virtual] = ACTIONS(5055), + [anon_sym_extern] = ACTIONS(5055), + [anon_sym___attribute__] = ACTIONS(5055), + [anon_sym___attribute] = ACTIONS(5055), + [anon_sym_COLON_COLON] = ACTIONS(5057), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5057), + [anon_sym___declspec] = ACTIONS(5055), + [anon_sym___based] = ACTIONS(5055), + [anon_sym___cdecl] = ACTIONS(5055), + [anon_sym___clrcall] = ACTIONS(5055), + [anon_sym___stdcall] = ACTIONS(5055), + [anon_sym___fastcall] = ACTIONS(5055), + [anon_sym___thiscall] = ACTIONS(5055), + [anon_sym___vectorcall] = ACTIONS(5055), + [anon_sym_LBRACE] = ACTIONS(5057), + [anon_sym_signed] = ACTIONS(5055), + [anon_sym_unsigned] = ACTIONS(5055), + [anon_sym_long] = ACTIONS(5055), + [anon_sym_short] = ACTIONS(5055), + [anon_sym_LBRACK] = ACTIONS(5055), + [anon_sym_static] = ACTIONS(5055), + [anon_sym_EQ] = ACTIONS(5057), + [anon_sym_register] = ACTIONS(5055), + [anon_sym_inline] = ACTIONS(5055), + [anon_sym___inline] = ACTIONS(5055), + [anon_sym___inline__] = ACTIONS(5055), + [anon_sym___forceinline] = ACTIONS(5055), + [anon_sym_thread_local] = ACTIONS(5055), + [anon_sym___thread] = ACTIONS(5055), + [anon_sym_const] = ACTIONS(5337), + [anon_sym_constexpr] = ACTIONS(5337), + [anon_sym_volatile] = ACTIONS(5337), + [anon_sym_restrict] = ACTIONS(5337), + [anon_sym___restrict__] = ACTIONS(5337), + [anon_sym__Atomic] = ACTIONS(5337), + [anon_sym__Noreturn] = ACTIONS(5337), + [anon_sym_noreturn] = ACTIONS(5337), + [anon_sym__Nonnull] = ACTIONS(5337), + [anon_sym_mutable] = ACTIONS(5337), + [anon_sym_constinit] = ACTIONS(5337), + [anon_sym_consteval] = ACTIONS(5337), + [anon_sym_alignas] = ACTIONS(5340), + [anon_sym__Alignas] = ACTIONS(5340), + [sym_primitive_type] = ACTIONS(5055), + [anon_sym_enum] = ACTIONS(5055), + [anon_sym_class] = ACTIONS(5055), + [anon_sym_struct] = ACTIONS(5055), + [anon_sym_union] = ACTIONS(5055), + [anon_sym_asm] = ACTIONS(5055), + [anon_sym___asm__] = ACTIONS(5055), + [anon_sym___asm] = ACTIONS(5055), + [anon_sym_DASH_GT] = ACTIONS(5057), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5055), + [anon_sym_decltype] = ACTIONS(5055), + [anon_sym_final] = ACTIONS(5055), + [anon_sym_override] = ACTIONS(5055), + [anon_sym_typename] = ACTIONS(5055), + [anon_sym_template] = ACTIONS(5055), + [anon_sym_GT2] = ACTIONS(5057), + [anon_sym_operator] = ACTIONS(5055), + [anon_sym_try] = ACTIONS(5055), + [anon_sym_noexcept] = ACTIONS(5055), + [anon_sym_throw] = ACTIONS(5055), + [anon_sym_requires] = ACTIONS(5055), + }, + [1670] = { + [sym_function_definition] = STATE(2138), + [sym_declaration] = STATE(2138), + [sym__declaration_modifiers] = STATE(2095), + [sym__declaration_specifiers] = STATE(4798), + [sym_attribute_specifier] = STATE(2095), + [sym_attribute_declaration] = STATE(2095), + [sym_ms_declspec_modifier] = STATE(2095), + [sym_ms_call_modifier] = STATE(1967), + [sym_storage_class_specifier] = STATE(2095), + [sym_type_qualifier] = STATE(2095), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym__class_name] = STATE(8791), + [sym_dependent_type] = STATE(2558), + [sym_template_type] = STATE(3788), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(6715), + [sym_qualified_type_identifier] = STATE(3790), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(5247), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1446), + [anon_sym_virtual] = ACTIONS(1262), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5220), + [anon_sym_COLON_COLON] = ACTIONS(5228), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), [anon_sym___cdecl] = ACTIONS(55), @@ -242412,61 +246260,1950 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2999), + [sym_primitive_type] = ACTIONS(3019), [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(5287), - [anon_sym_struct] = ACTIONS(5289), - [anon_sym_union] = ACTIONS(5291), + [anon_sym_class] = ACTIONS(5343), + [anon_sym_struct] = ACTIONS(5345), + [anon_sym_union] = ACTIONS(5347), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(125), + [anon_sym_decltype] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(131), + [anon_sym_template] = ACTIONS(1268), + }, + [1671] = { + [sym_type_qualifier] = STATE(1659), + [sym_alignas_qualifier] = STATE(1711), + [aux_sym__type_definition_type_repeat1] = STATE(1659), + [aux_sym_sized_type_specifier_repeat1] = STATE(1684), + [sym_identifier] = ACTIONS(5349), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5094), + [anon_sym_COMMA] = ACTIONS(5094), + [anon_sym_RPAREN] = ACTIONS(5094), + [anon_sym_LPAREN2] = ACTIONS(5094), + [anon_sym_DASH] = ACTIONS(5096), + [anon_sym_PLUS] = ACTIONS(5096), + [anon_sym_STAR] = ACTIONS(5096), + [anon_sym_SLASH] = ACTIONS(5096), + [anon_sym_PERCENT] = ACTIONS(5096), + [anon_sym_PIPE_PIPE] = ACTIONS(5094), + [anon_sym_AMP_AMP] = ACTIONS(5094), + [anon_sym_PIPE] = ACTIONS(5096), + [anon_sym_CARET] = ACTIONS(5096), + [anon_sym_AMP] = ACTIONS(5096), + [anon_sym_EQ_EQ] = ACTIONS(5094), + [anon_sym_BANG_EQ] = ACTIONS(5094), + [anon_sym_GT] = ACTIONS(5096), + [anon_sym_GT_EQ] = ACTIONS(5094), + [anon_sym_LT_EQ] = ACTIONS(5096), + [anon_sym_LT] = ACTIONS(5096), + [anon_sym_LT_LT] = ACTIONS(5096), + [anon_sym_GT_GT] = ACTIONS(5096), + [anon_sym___extension__] = ACTIONS(5281), + [anon_sym___attribute__] = ACTIONS(5096), + [anon_sym___attribute] = ACTIONS(5096), + [anon_sym_LBRACE] = ACTIONS(5094), + [anon_sym_signed] = ACTIONS(5351), + [anon_sym_unsigned] = ACTIONS(5351), + [anon_sym_long] = ACTIONS(5351), + [anon_sym_short] = ACTIONS(5351), + [anon_sym_LBRACK] = ACTIONS(5094), + [anon_sym_EQ] = ACTIONS(5096), + [anon_sym_const] = ACTIONS(5281), + [anon_sym_constexpr] = ACTIONS(5281), + [anon_sym_volatile] = ACTIONS(5281), + [anon_sym_restrict] = ACTIONS(5281), + [anon_sym___restrict__] = ACTIONS(5281), + [anon_sym__Atomic] = ACTIONS(5281), + [anon_sym__Noreturn] = ACTIONS(5281), + [anon_sym_noreturn] = ACTIONS(5281), + [anon_sym__Nonnull] = ACTIONS(5281), + [anon_sym_mutable] = ACTIONS(5281), + [anon_sym_constinit] = ACTIONS(5281), + [anon_sym_consteval] = ACTIONS(5281), + [anon_sym_alignas] = ACTIONS(5285), + [anon_sym__Alignas] = ACTIONS(5285), + [sym_primitive_type] = ACTIONS(5353), + [anon_sym_QMARK] = ACTIONS(5094), + [anon_sym_STAR_EQ] = ACTIONS(5094), + [anon_sym_SLASH_EQ] = ACTIONS(5094), + [anon_sym_PERCENT_EQ] = ACTIONS(5094), + [anon_sym_PLUS_EQ] = ACTIONS(5094), + [anon_sym_DASH_EQ] = ACTIONS(5094), + [anon_sym_LT_LT_EQ] = ACTIONS(5094), + [anon_sym_GT_GT_EQ] = ACTIONS(5094), + [anon_sym_AMP_EQ] = ACTIONS(5094), + [anon_sym_CARET_EQ] = ACTIONS(5094), + [anon_sym_PIPE_EQ] = ACTIONS(5094), + [anon_sym_LT_EQ_GT] = ACTIONS(5094), + [anon_sym_or] = ACTIONS(5096), + [anon_sym_and] = ACTIONS(5096), + [anon_sym_bitor] = ACTIONS(5096), + [anon_sym_xor] = ACTIONS(5096), + [anon_sym_bitand] = ACTIONS(5096), + [anon_sym_not_eq] = ACTIONS(5096), + [anon_sym_DASH_DASH] = ACTIONS(5094), + [anon_sym_PLUS_PLUS] = ACTIONS(5094), + [anon_sym_DOT] = ACTIONS(5096), + [anon_sym_DOT_STAR] = ACTIONS(5094), + [anon_sym_DASH_GT] = ACTIONS(5096), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5096), + [anon_sym_decltype] = ACTIONS(5096), + [anon_sym_DASH_GT_STAR] = ACTIONS(5094), + }, + [1672] = { + [sym_identifier] = ACTIONS(2569), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2559), + [anon_sym_COMMA] = ACTIONS(2559), + [anon_sym_RPAREN] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2559), + [anon_sym_DASH] = ACTIONS(2569), + [anon_sym_PLUS] = ACTIONS(2569), + [anon_sym_STAR] = ACTIONS(2569), + [anon_sym_SLASH] = ACTIONS(2569), + [anon_sym_PERCENT] = ACTIONS(2569), + [anon_sym_PIPE_PIPE] = ACTIONS(2559), + [anon_sym_AMP_AMP] = ACTIONS(2559), + [anon_sym_PIPE] = ACTIONS(2569), + [anon_sym_CARET] = ACTIONS(2569), + [anon_sym_AMP] = ACTIONS(2569), + [anon_sym_EQ_EQ] = ACTIONS(2559), + [anon_sym_BANG_EQ] = ACTIONS(2559), + [anon_sym_GT] = ACTIONS(2569), + [anon_sym_GT_EQ] = ACTIONS(2559), + [anon_sym_LT_EQ] = ACTIONS(2569), + [anon_sym_LT] = ACTIONS(2569), + [anon_sym_LT_LT] = ACTIONS(2569), + [anon_sym_GT_GT] = ACTIONS(2569), + [anon_sym___extension__] = ACTIONS(2569), + [anon_sym___attribute__] = ACTIONS(2569), + [anon_sym___attribute] = ACTIONS(2569), + [anon_sym_LBRACE] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2569), + [anon_sym_unsigned] = ACTIONS(2569), + [anon_sym_long] = ACTIONS(2569), + [anon_sym_short] = ACTIONS(2569), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_EQ] = ACTIONS(2569), + [anon_sym_const] = ACTIONS(2569), + [anon_sym_constexpr] = ACTIONS(2569), + [anon_sym_volatile] = ACTIONS(2569), + [anon_sym_restrict] = ACTIONS(2569), + [anon_sym___restrict__] = ACTIONS(2569), + [anon_sym__Atomic] = ACTIONS(2569), + [anon_sym__Noreturn] = ACTIONS(2569), + [anon_sym_noreturn] = ACTIONS(2569), + [anon_sym__Nonnull] = ACTIONS(2569), + [anon_sym_mutable] = ACTIONS(2569), + [anon_sym_constinit] = ACTIONS(2569), + [anon_sym_consteval] = ACTIONS(2569), + [anon_sym_alignas] = ACTIONS(2569), + [anon_sym__Alignas] = ACTIONS(2569), + [sym_primitive_type] = ACTIONS(2569), + [anon_sym_QMARK] = ACTIONS(2559), + [anon_sym_STAR_EQ] = ACTIONS(2559), + [anon_sym_SLASH_EQ] = ACTIONS(2559), + [anon_sym_PERCENT_EQ] = ACTIONS(2559), + [anon_sym_PLUS_EQ] = ACTIONS(2559), + [anon_sym_DASH_EQ] = ACTIONS(2559), + [anon_sym_LT_LT_EQ] = ACTIONS(2559), + [anon_sym_GT_GT_EQ] = ACTIONS(2559), + [anon_sym_AMP_EQ] = ACTIONS(2559), + [anon_sym_CARET_EQ] = ACTIONS(2559), + [anon_sym_PIPE_EQ] = ACTIONS(2559), + [anon_sym_and_eq] = ACTIONS(2569), + [anon_sym_or_eq] = ACTIONS(2569), + [anon_sym_xor_eq] = ACTIONS(2569), + [anon_sym_LT_EQ_GT] = ACTIONS(2559), + [anon_sym_or] = ACTIONS(2569), + [anon_sym_and] = ACTIONS(2569), + [anon_sym_bitor] = ACTIONS(2569), + [anon_sym_xor] = ACTIONS(2569), + [anon_sym_bitand] = ACTIONS(2569), + [anon_sym_not_eq] = ACTIONS(2569), + [anon_sym_DASH_DASH] = ACTIONS(2559), + [anon_sym_PLUS_PLUS] = ACTIONS(2559), + [anon_sym_DOT] = ACTIONS(2569), + [anon_sym_DOT_STAR] = ACTIONS(2559), + [anon_sym_DASH_GT] = ACTIONS(2569), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2569), + [anon_sym_decltype] = ACTIONS(2569), + [anon_sym_DASH_GT_STAR] = ACTIONS(2559), + }, + [1673] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1675), + [sym_identifier] = ACTIONS(5078), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5167), + [anon_sym_COMMA] = ACTIONS(5167), + [anon_sym_LPAREN2] = ACTIONS(5167), + [anon_sym_DASH] = ACTIONS(5164), + [anon_sym_PLUS] = ACTIONS(5164), + [anon_sym_STAR] = ACTIONS(5164), + [anon_sym_SLASH] = ACTIONS(5164), + [anon_sym_PERCENT] = ACTIONS(5164), + [anon_sym_PIPE_PIPE] = ACTIONS(5167), + [anon_sym_AMP_AMP] = ACTIONS(5167), + [anon_sym_PIPE] = ACTIONS(5164), + [anon_sym_CARET] = ACTIONS(5164), + [anon_sym_AMP] = ACTIONS(5164), + [anon_sym_EQ_EQ] = ACTIONS(5167), + [anon_sym_BANG_EQ] = ACTIONS(5167), + [anon_sym_GT] = ACTIONS(5164), + [anon_sym_GT_EQ] = ACTIONS(5164), + [anon_sym_LT_EQ] = ACTIONS(5164), + [anon_sym_LT] = ACTIONS(5164), + [anon_sym_LT_LT] = ACTIONS(5164), + [anon_sym_GT_GT] = ACTIONS(5164), + [anon_sym___extension__] = ACTIONS(5078), + [anon_sym___attribute__] = ACTIONS(5164), + [anon_sym___attribute] = ACTIONS(5164), + [anon_sym_LBRACE] = ACTIONS(5167), + [anon_sym_signed] = ACTIONS(5355), + [anon_sym_unsigned] = ACTIONS(5355), + [anon_sym_long] = ACTIONS(5355), + [anon_sym_short] = ACTIONS(5355), + [anon_sym_LBRACK] = ACTIONS(5167), + [anon_sym_EQ] = ACTIONS(5164), + [anon_sym_const] = ACTIONS(5078), + [anon_sym_constexpr] = ACTIONS(5078), + [anon_sym_volatile] = ACTIONS(5078), + [anon_sym_restrict] = ACTIONS(5078), + [anon_sym___restrict__] = ACTIONS(5078), + [anon_sym__Atomic] = ACTIONS(5078), + [anon_sym__Noreturn] = ACTIONS(5078), + [anon_sym_noreturn] = ACTIONS(5078), + [anon_sym__Nonnull] = ACTIONS(5078), + [anon_sym_mutable] = ACTIONS(5078), + [anon_sym_constinit] = ACTIONS(5078), + [anon_sym_consteval] = ACTIONS(5078), + [anon_sym_alignas] = ACTIONS(5078), + [anon_sym__Alignas] = ACTIONS(5078), + [sym_primitive_type] = ACTIONS(5078), + [anon_sym_QMARK] = ACTIONS(5167), + [anon_sym_STAR_EQ] = ACTIONS(5167), + [anon_sym_SLASH_EQ] = ACTIONS(5167), + [anon_sym_PERCENT_EQ] = ACTIONS(5167), + [anon_sym_PLUS_EQ] = ACTIONS(5167), + [anon_sym_DASH_EQ] = ACTIONS(5167), + [anon_sym_LT_LT_EQ] = ACTIONS(5167), + [anon_sym_GT_GT_EQ] = ACTIONS(5164), + [anon_sym_AMP_EQ] = ACTIONS(5167), + [anon_sym_CARET_EQ] = ACTIONS(5167), + [anon_sym_PIPE_EQ] = ACTIONS(5167), + [anon_sym_and_eq] = ACTIONS(5164), + [anon_sym_or_eq] = ACTIONS(5164), + [anon_sym_xor_eq] = ACTIONS(5164), + [anon_sym_LT_EQ_GT] = ACTIONS(5167), + [anon_sym_or] = ACTIONS(5164), + [anon_sym_and] = ACTIONS(5164), + [anon_sym_bitor] = ACTIONS(5164), + [anon_sym_xor] = ACTIONS(5164), + [anon_sym_bitand] = ACTIONS(5164), + [anon_sym_not_eq] = ACTIONS(5164), + [anon_sym_DASH_DASH] = ACTIONS(5167), + [anon_sym_PLUS_PLUS] = ACTIONS(5167), + [anon_sym_DOT] = ACTIONS(5164), + [anon_sym_DOT_STAR] = ACTIONS(5167), + [anon_sym_DASH_GT] = ACTIONS(5167), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5164), + [anon_sym_decltype] = ACTIONS(5164), + [anon_sym_GT2] = ACTIONS(5167), + }, + [1674] = { + [sym_type_qualifier] = STATE(1674), + [sym_alignas_qualifier] = STATE(1711), + [aux_sym__type_definition_type_repeat1] = STATE(1674), + [sym_identifier] = ACTIONS(5055), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5057), + [anon_sym_COMMA] = ACTIONS(5057), + [anon_sym_RPAREN] = ACTIONS(5057), + [anon_sym_LPAREN2] = ACTIONS(5057), + [anon_sym_DASH] = ACTIONS(5055), + [anon_sym_PLUS] = ACTIONS(5055), + [anon_sym_STAR] = ACTIONS(5055), + [anon_sym_SLASH] = ACTIONS(5055), + [anon_sym_PERCENT] = ACTIONS(5055), + [anon_sym_PIPE_PIPE] = ACTIONS(5057), + [anon_sym_AMP_AMP] = ACTIONS(5057), + [anon_sym_PIPE] = ACTIONS(5055), + [anon_sym_CARET] = ACTIONS(5055), + [anon_sym_AMP] = ACTIONS(5055), + [anon_sym_EQ_EQ] = ACTIONS(5057), + [anon_sym_BANG_EQ] = ACTIONS(5057), + [anon_sym_GT] = ACTIONS(5055), + [anon_sym_GT_EQ] = ACTIONS(5057), + [anon_sym_LT_EQ] = ACTIONS(5055), + [anon_sym_LT] = ACTIONS(5055), + [anon_sym_LT_LT] = ACTIONS(5055), + [anon_sym_GT_GT] = ACTIONS(5055), + [anon_sym___extension__] = ACTIONS(5358), + [anon_sym___attribute__] = ACTIONS(5055), + [anon_sym___attribute] = ACTIONS(5055), + [anon_sym_LBRACE] = ACTIONS(5057), + [anon_sym_signed] = ACTIONS(5055), + [anon_sym_unsigned] = ACTIONS(5055), + [anon_sym_long] = ACTIONS(5055), + [anon_sym_short] = ACTIONS(5055), + [anon_sym_LBRACK] = ACTIONS(5057), + [anon_sym_EQ] = ACTIONS(5055), + [anon_sym_const] = ACTIONS(5358), + [anon_sym_constexpr] = ACTIONS(5358), + [anon_sym_volatile] = ACTIONS(5358), + [anon_sym_restrict] = ACTIONS(5358), + [anon_sym___restrict__] = ACTIONS(5358), + [anon_sym__Atomic] = ACTIONS(5358), + [anon_sym__Noreturn] = ACTIONS(5358), + [anon_sym_noreturn] = ACTIONS(5358), + [anon_sym__Nonnull] = ACTIONS(5358), + [anon_sym_mutable] = ACTIONS(5358), + [anon_sym_constinit] = ACTIONS(5358), + [anon_sym_consteval] = ACTIONS(5358), + [anon_sym_alignas] = ACTIONS(5361), + [anon_sym__Alignas] = ACTIONS(5361), + [sym_primitive_type] = ACTIONS(5055), + [anon_sym_QMARK] = ACTIONS(5057), + [anon_sym_STAR_EQ] = ACTIONS(5057), + [anon_sym_SLASH_EQ] = ACTIONS(5057), + [anon_sym_PERCENT_EQ] = ACTIONS(5057), + [anon_sym_PLUS_EQ] = ACTIONS(5057), + [anon_sym_DASH_EQ] = ACTIONS(5057), + [anon_sym_LT_LT_EQ] = ACTIONS(5057), + [anon_sym_GT_GT_EQ] = ACTIONS(5057), + [anon_sym_AMP_EQ] = ACTIONS(5057), + [anon_sym_CARET_EQ] = ACTIONS(5057), + [anon_sym_PIPE_EQ] = ACTIONS(5057), + [anon_sym_LT_EQ_GT] = ACTIONS(5057), + [anon_sym_or] = ACTIONS(5055), + [anon_sym_and] = ACTIONS(5055), + [anon_sym_bitor] = ACTIONS(5055), + [anon_sym_xor] = ACTIONS(5055), + [anon_sym_bitand] = ACTIONS(5055), + [anon_sym_not_eq] = ACTIONS(5055), + [anon_sym_DASH_DASH] = ACTIONS(5057), + [anon_sym_PLUS_PLUS] = ACTIONS(5057), + [anon_sym_DOT] = ACTIONS(5055), + [anon_sym_DOT_STAR] = ACTIONS(5057), + [anon_sym_DASH_GT] = ACTIONS(5055), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5055), + [anon_sym_decltype] = ACTIONS(5055), + [anon_sym_DASH_GT_STAR] = ACTIONS(5057), + }, + [1675] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1675), + [sym_identifier] = ACTIONS(5078), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5080), + [anon_sym_COMMA] = ACTIONS(5080), + [anon_sym_LPAREN2] = ACTIONS(5080), + [anon_sym_DASH] = ACTIONS(5078), + [anon_sym_PLUS] = ACTIONS(5078), + [anon_sym_STAR] = ACTIONS(5078), + [anon_sym_SLASH] = ACTIONS(5078), + [anon_sym_PERCENT] = ACTIONS(5078), + [anon_sym_PIPE_PIPE] = ACTIONS(5080), + [anon_sym_AMP_AMP] = ACTIONS(5080), + [anon_sym_PIPE] = ACTIONS(5078), + [anon_sym_CARET] = ACTIONS(5078), + [anon_sym_AMP] = ACTIONS(5078), + [anon_sym_EQ_EQ] = ACTIONS(5080), + [anon_sym_BANG_EQ] = ACTIONS(5080), + [anon_sym_GT] = ACTIONS(5078), + [anon_sym_GT_EQ] = ACTIONS(5078), + [anon_sym_LT_EQ] = ACTIONS(5078), + [anon_sym_LT] = ACTIONS(5078), + [anon_sym_LT_LT] = ACTIONS(5078), + [anon_sym_GT_GT] = ACTIONS(5078), + [anon_sym___extension__] = ACTIONS(5078), + [anon_sym___attribute__] = ACTIONS(5078), + [anon_sym___attribute] = ACTIONS(5078), + [anon_sym_LBRACE] = ACTIONS(5080), + [anon_sym_signed] = ACTIONS(5355), + [anon_sym_unsigned] = ACTIONS(5355), + [anon_sym_long] = ACTIONS(5355), + [anon_sym_short] = ACTIONS(5355), + [anon_sym_LBRACK] = ACTIONS(5080), + [anon_sym_EQ] = ACTIONS(5078), + [anon_sym_const] = ACTIONS(5078), + [anon_sym_constexpr] = ACTIONS(5078), + [anon_sym_volatile] = ACTIONS(5078), + [anon_sym_restrict] = ACTIONS(5078), + [anon_sym___restrict__] = ACTIONS(5078), + [anon_sym__Atomic] = ACTIONS(5078), + [anon_sym__Noreturn] = ACTIONS(5078), + [anon_sym_noreturn] = ACTIONS(5078), + [anon_sym__Nonnull] = ACTIONS(5078), + [anon_sym_mutable] = ACTIONS(5078), + [anon_sym_constinit] = ACTIONS(5078), + [anon_sym_consteval] = ACTIONS(5078), + [anon_sym_alignas] = ACTIONS(5078), + [anon_sym__Alignas] = ACTIONS(5078), + [sym_primitive_type] = ACTIONS(5078), + [anon_sym_QMARK] = ACTIONS(5080), + [anon_sym_STAR_EQ] = ACTIONS(5080), + [anon_sym_SLASH_EQ] = ACTIONS(5080), + [anon_sym_PERCENT_EQ] = ACTIONS(5080), + [anon_sym_PLUS_EQ] = ACTIONS(5080), + [anon_sym_DASH_EQ] = ACTIONS(5080), + [anon_sym_LT_LT_EQ] = ACTIONS(5080), + [anon_sym_GT_GT_EQ] = ACTIONS(5078), + [anon_sym_AMP_EQ] = ACTIONS(5080), + [anon_sym_CARET_EQ] = ACTIONS(5080), + [anon_sym_PIPE_EQ] = ACTIONS(5080), + [anon_sym_and_eq] = ACTIONS(5078), + [anon_sym_or_eq] = ACTIONS(5078), + [anon_sym_xor_eq] = ACTIONS(5078), + [anon_sym_LT_EQ_GT] = ACTIONS(5080), + [anon_sym_or] = ACTIONS(5078), + [anon_sym_and] = ACTIONS(5078), + [anon_sym_bitor] = ACTIONS(5078), + [anon_sym_xor] = ACTIONS(5078), + [anon_sym_bitand] = ACTIONS(5078), + [anon_sym_not_eq] = ACTIONS(5078), + [anon_sym_DASH_DASH] = ACTIONS(5080), + [anon_sym_PLUS_PLUS] = ACTIONS(5080), + [anon_sym_DOT] = ACTIONS(5078), + [anon_sym_DOT_STAR] = ACTIONS(5080), + [anon_sym_DASH_GT] = ACTIONS(5080), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5078), + [anon_sym_decltype] = ACTIONS(5078), + [anon_sym_GT2] = ACTIONS(5080), + }, + [1676] = { + [sym_type_qualifier] = STATE(1676), + [sym_alignas_qualifier] = STATE(1702), + [aux_sym__type_definition_type_repeat1] = STATE(1676), + [sym_identifier] = ACTIONS(5055), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5057), + [anon_sym_COMMA] = ACTIONS(5057), + [anon_sym_RPAREN] = ACTIONS(5057), + [aux_sym_preproc_if_token2] = ACTIONS(5057), + [aux_sym_preproc_else_token1] = ACTIONS(5057), + [aux_sym_preproc_elif_token1] = ACTIONS(5055), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5057), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5057), + [anon_sym_LPAREN2] = ACTIONS(5057), + [anon_sym_DASH] = ACTIONS(5055), + [anon_sym_PLUS] = ACTIONS(5055), + [anon_sym_STAR] = ACTIONS(5057), + [anon_sym_SLASH] = ACTIONS(5055), + [anon_sym_PERCENT] = ACTIONS(5057), + [anon_sym_PIPE_PIPE] = ACTIONS(5057), + [anon_sym_AMP_AMP] = ACTIONS(5057), + [anon_sym_PIPE] = ACTIONS(5055), + [anon_sym_CARET] = ACTIONS(5057), + [anon_sym_AMP] = ACTIONS(5055), + [anon_sym_EQ_EQ] = ACTIONS(5057), + [anon_sym_BANG_EQ] = ACTIONS(5057), + [anon_sym_GT] = ACTIONS(5055), + [anon_sym_GT_EQ] = ACTIONS(5057), + [anon_sym_LT_EQ] = ACTIONS(5055), + [anon_sym_LT] = ACTIONS(5055), + [anon_sym_LT_LT] = ACTIONS(5057), + [anon_sym_GT_GT] = ACTIONS(5057), + [anon_sym_SEMI] = ACTIONS(5057), + [anon_sym___extension__] = ACTIONS(5364), + [anon_sym___attribute__] = ACTIONS(5055), + [anon_sym___attribute] = ACTIONS(5055), + [anon_sym_COLON] = ACTIONS(5057), + [anon_sym_LBRACE] = ACTIONS(5057), + [anon_sym_RBRACE] = ACTIONS(5057), + [anon_sym_signed] = ACTIONS(5055), + [anon_sym_unsigned] = ACTIONS(5055), + [anon_sym_long] = ACTIONS(5055), + [anon_sym_short] = ACTIONS(5055), + [anon_sym_LBRACK] = ACTIONS(5057), + [anon_sym_RBRACK] = ACTIONS(5057), + [anon_sym_const] = ACTIONS(5364), + [anon_sym_constexpr] = ACTIONS(5364), + [anon_sym_volatile] = ACTIONS(5364), + [anon_sym_restrict] = ACTIONS(5364), + [anon_sym___restrict__] = ACTIONS(5364), + [anon_sym__Atomic] = ACTIONS(5364), + [anon_sym__Noreturn] = ACTIONS(5364), + [anon_sym_noreturn] = ACTIONS(5364), + [anon_sym__Nonnull] = ACTIONS(5364), + [anon_sym_mutable] = ACTIONS(5364), + [anon_sym_constinit] = ACTIONS(5364), + [anon_sym_consteval] = ACTIONS(5364), + [anon_sym_alignas] = ACTIONS(5367), + [anon_sym__Alignas] = ACTIONS(5367), + [sym_primitive_type] = ACTIONS(5055), + [anon_sym_QMARK] = ACTIONS(5057), + [anon_sym_LT_EQ_GT] = ACTIONS(5057), + [anon_sym_or] = ACTIONS(5055), + [anon_sym_and] = ACTIONS(5055), + [anon_sym_bitor] = ACTIONS(5055), + [anon_sym_xor] = ACTIONS(5055), + [anon_sym_bitand] = ACTIONS(5055), + [anon_sym_not_eq] = ACTIONS(5055), + [anon_sym_DASH_DASH] = ACTIONS(5057), + [anon_sym_PLUS_PLUS] = ACTIONS(5057), + [anon_sym_DOT] = ACTIONS(5055), + [anon_sym_DOT_STAR] = ACTIONS(5057), + [anon_sym_DASH_GT] = ACTIONS(5057), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5055), + [anon_sym_decltype] = ACTIONS(5055), + [anon_sym_final] = ACTIONS(5055), + [anon_sym_override] = ACTIONS(5055), + [anon_sym_requires] = ACTIONS(5055), + }, + [1677] = { + [sym_identifier] = ACTIONS(5088), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5090), + [anon_sym_COMMA] = ACTIONS(5090), + [anon_sym_RPAREN] = ACTIONS(5090), + [anon_sym_LPAREN2] = ACTIONS(5090), + [anon_sym_DASH] = ACTIONS(5088), + [anon_sym_PLUS] = ACTIONS(5088), + [anon_sym_STAR] = ACTIONS(5088), + [anon_sym_SLASH] = ACTIONS(5088), + [anon_sym_PERCENT] = ACTIONS(5088), + [anon_sym_PIPE_PIPE] = ACTIONS(5090), + [anon_sym_AMP_AMP] = ACTIONS(5090), + [anon_sym_PIPE] = ACTIONS(5088), + [anon_sym_CARET] = ACTIONS(5088), + [anon_sym_AMP] = ACTIONS(5088), + [anon_sym_EQ_EQ] = ACTIONS(5090), + [anon_sym_BANG_EQ] = ACTIONS(5090), + [anon_sym_GT] = ACTIONS(5088), + [anon_sym_GT_EQ] = ACTIONS(5090), + [anon_sym_LT_EQ] = ACTIONS(5088), + [anon_sym_LT] = ACTIONS(5088), + [anon_sym_LT_LT] = ACTIONS(5088), + [anon_sym_GT_GT] = ACTIONS(5088), + [anon_sym___extension__] = ACTIONS(5088), + [anon_sym___attribute__] = ACTIONS(5088), + [anon_sym___attribute] = ACTIONS(5088), + [anon_sym_LBRACE] = ACTIONS(5090), + [anon_sym_signed] = ACTIONS(5088), + [anon_sym_unsigned] = ACTIONS(5088), + [anon_sym_long] = ACTIONS(5088), + [anon_sym_short] = ACTIONS(5088), + [anon_sym_LBRACK] = ACTIONS(5090), + [anon_sym_EQ] = ACTIONS(5088), + [anon_sym_const] = ACTIONS(5088), + [anon_sym_constexpr] = ACTIONS(5088), + [anon_sym_volatile] = ACTIONS(5088), + [anon_sym_restrict] = ACTIONS(5088), + [anon_sym___restrict__] = ACTIONS(5088), + [anon_sym__Atomic] = ACTIONS(5088), + [anon_sym__Noreturn] = ACTIONS(5088), + [anon_sym_noreturn] = ACTIONS(5088), + [anon_sym__Nonnull] = ACTIONS(5088), + [anon_sym_mutable] = ACTIONS(5088), + [anon_sym_constinit] = ACTIONS(5088), + [anon_sym_consteval] = ACTIONS(5088), + [anon_sym_alignas] = ACTIONS(5088), + [anon_sym__Alignas] = ACTIONS(5088), + [sym_primitive_type] = ACTIONS(5088), + [anon_sym_QMARK] = ACTIONS(5090), + [anon_sym_STAR_EQ] = ACTIONS(5090), + [anon_sym_SLASH_EQ] = ACTIONS(5090), + [anon_sym_PERCENT_EQ] = ACTIONS(5090), + [anon_sym_PLUS_EQ] = ACTIONS(5090), + [anon_sym_DASH_EQ] = ACTIONS(5090), + [anon_sym_LT_LT_EQ] = ACTIONS(5090), + [anon_sym_GT_GT_EQ] = ACTIONS(5090), + [anon_sym_AMP_EQ] = ACTIONS(5090), + [anon_sym_CARET_EQ] = ACTIONS(5090), + [anon_sym_PIPE_EQ] = ACTIONS(5090), + [anon_sym_and_eq] = ACTIONS(5088), + [anon_sym_or_eq] = ACTIONS(5088), + [anon_sym_xor_eq] = ACTIONS(5088), + [anon_sym_LT_EQ_GT] = ACTIONS(5090), + [anon_sym_or] = ACTIONS(5088), + [anon_sym_and] = ACTIONS(5088), + [anon_sym_bitor] = ACTIONS(5088), + [anon_sym_xor] = ACTIONS(5088), + [anon_sym_bitand] = ACTIONS(5088), + [anon_sym_not_eq] = ACTIONS(5088), + [anon_sym_DASH_DASH] = ACTIONS(5090), + [anon_sym_PLUS_PLUS] = ACTIONS(5090), + [anon_sym_DOT] = ACTIONS(5088), + [anon_sym_DOT_STAR] = ACTIONS(5090), + [anon_sym_DASH_GT] = ACTIONS(5088), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5088), + [anon_sym_decltype] = ACTIONS(5088), + [anon_sym_DASH_GT_STAR] = ACTIONS(5090), + }, + [1678] = { + [sym_identifier] = ACTIONS(5088), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5090), + [anon_sym_COMMA] = ACTIONS(5090), + [anon_sym_LPAREN2] = ACTIONS(5090), + [anon_sym_DASH] = ACTIONS(5088), + [anon_sym_PLUS] = ACTIONS(5088), + [anon_sym_STAR] = ACTIONS(5088), + [anon_sym_SLASH] = ACTIONS(5088), + [anon_sym_PERCENT] = ACTIONS(5088), + [anon_sym_PIPE_PIPE] = ACTIONS(5090), + [anon_sym_AMP_AMP] = ACTIONS(5090), + [anon_sym_PIPE] = ACTIONS(5088), + [anon_sym_CARET] = ACTIONS(5088), + [anon_sym_AMP] = ACTIONS(5088), + [anon_sym_EQ_EQ] = ACTIONS(5090), + [anon_sym_BANG_EQ] = ACTIONS(5090), + [anon_sym_GT] = ACTIONS(5088), + [anon_sym_GT_EQ] = ACTIONS(5088), + [anon_sym_LT_EQ] = ACTIONS(5088), + [anon_sym_LT] = ACTIONS(5088), + [anon_sym_LT_LT] = ACTIONS(5088), + [anon_sym_GT_GT] = ACTIONS(5088), + [anon_sym___extension__] = ACTIONS(5088), + [anon_sym___attribute__] = ACTIONS(5088), + [anon_sym___attribute] = ACTIONS(5088), + [anon_sym_LBRACE] = ACTIONS(5090), + [anon_sym_signed] = ACTIONS(5088), + [anon_sym_unsigned] = ACTIONS(5088), + [anon_sym_long] = ACTIONS(5088), + [anon_sym_short] = ACTIONS(5088), + [anon_sym_LBRACK] = ACTIONS(5090), + [anon_sym_EQ] = ACTIONS(5088), + [anon_sym_const] = ACTIONS(5088), + [anon_sym_constexpr] = ACTIONS(5088), + [anon_sym_volatile] = ACTIONS(5088), + [anon_sym_restrict] = ACTIONS(5088), + [anon_sym___restrict__] = ACTIONS(5088), + [anon_sym__Atomic] = ACTIONS(5088), + [anon_sym__Noreturn] = ACTIONS(5088), + [anon_sym_noreturn] = ACTIONS(5088), + [anon_sym__Nonnull] = ACTIONS(5088), + [anon_sym_mutable] = ACTIONS(5088), + [anon_sym_constinit] = ACTIONS(5088), + [anon_sym_consteval] = ACTIONS(5088), + [anon_sym_alignas] = ACTIONS(5088), + [anon_sym__Alignas] = ACTIONS(5088), + [sym_primitive_type] = ACTIONS(5088), + [anon_sym_QMARK] = ACTIONS(5090), + [anon_sym_STAR_EQ] = ACTIONS(5090), + [anon_sym_SLASH_EQ] = ACTIONS(5090), + [anon_sym_PERCENT_EQ] = ACTIONS(5090), + [anon_sym_PLUS_EQ] = ACTIONS(5090), + [anon_sym_DASH_EQ] = ACTIONS(5090), + [anon_sym_LT_LT_EQ] = ACTIONS(5090), + [anon_sym_GT_GT_EQ] = ACTIONS(5088), + [anon_sym_AMP_EQ] = ACTIONS(5090), + [anon_sym_CARET_EQ] = ACTIONS(5090), + [anon_sym_PIPE_EQ] = ACTIONS(5090), + [anon_sym_and_eq] = ACTIONS(5088), + [anon_sym_or_eq] = ACTIONS(5088), + [anon_sym_xor_eq] = ACTIONS(5088), + [anon_sym_LT_EQ_GT] = ACTIONS(5090), + [anon_sym_or] = ACTIONS(5088), + [anon_sym_and] = ACTIONS(5088), + [anon_sym_bitor] = ACTIONS(5088), + [anon_sym_xor] = ACTIONS(5088), + [anon_sym_bitand] = ACTIONS(5088), + [anon_sym_not_eq] = ACTIONS(5088), + [anon_sym_DASH_DASH] = ACTIONS(5090), + [anon_sym_PLUS_PLUS] = ACTIONS(5090), + [anon_sym_DOT] = ACTIONS(5088), + [anon_sym_DOT_STAR] = ACTIONS(5090), + [anon_sym_DASH_GT] = ACTIONS(5090), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5088), + [anon_sym_decltype] = ACTIONS(5088), + [anon_sym_GT2] = ACTIONS(5090), + }, + [1679] = { + [sym_identifier] = ACTIONS(2569), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2559), + [anon_sym_COMMA] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2559), + [anon_sym_DASH] = ACTIONS(2569), + [anon_sym_PLUS] = ACTIONS(2569), + [anon_sym_STAR] = ACTIONS(2569), + [anon_sym_SLASH] = ACTIONS(2569), + [anon_sym_PERCENT] = ACTIONS(2569), + [anon_sym_PIPE_PIPE] = ACTIONS(2559), + [anon_sym_AMP_AMP] = ACTIONS(2559), + [anon_sym_PIPE] = ACTIONS(2569), + [anon_sym_CARET] = ACTIONS(2569), + [anon_sym_AMP] = ACTIONS(2569), + [anon_sym_EQ_EQ] = ACTIONS(2559), + [anon_sym_BANG_EQ] = ACTIONS(2559), + [anon_sym_GT] = ACTIONS(2569), + [anon_sym_GT_EQ] = ACTIONS(2569), + [anon_sym_LT_EQ] = ACTIONS(2569), + [anon_sym_LT] = ACTIONS(2569), + [anon_sym_LT_LT] = ACTIONS(2569), + [anon_sym_GT_GT] = ACTIONS(2569), + [anon_sym___extension__] = ACTIONS(2569), + [anon_sym___attribute__] = ACTIONS(2569), + [anon_sym___attribute] = ACTIONS(2569), + [anon_sym_LBRACE] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2569), + [anon_sym_unsigned] = ACTIONS(2569), + [anon_sym_long] = ACTIONS(2569), + [anon_sym_short] = ACTIONS(2569), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_EQ] = ACTIONS(2569), + [anon_sym_const] = ACTIONS(2569), + [anon_sym_constexpr] = ACTIONS(2569), + [anon_sym_volatile] = ACTIONS(2569), + [anon_sym_restrict] = ACTIONS(2569), + [anon_sym___restrict__] = ACTIONS(2569), + [anon_sym__Atomic] = ACTIONS(2569), + [anon_sym__Noreturn] = ACTIONS(2569), + [anon_sym_noreturn] = ACTIONS(2569), + [anon_sym__Nonnull] = ACTIONS(2569), + [anon_sym_mutable] = ACTIONS(2569), + [anon_sym_constinit] = ACTIONS(2569), + [anon_sym_consteval] = ACTIONS(2569), + [anon_sym_alignas] = ACTIONS(2569), + [anon_sym__Alignas] = ACTIONS(2569), + [sym_primitive_type] = ACTIONS(2569), + [anon_sym_QMARK] = ACTIONS(2559), + [anon_sym_STAR_EQ] = ACTIONS(2559), + [anon_sym_SLASH_EQ] = ACTIONS(2559), + [anon_sym_PERCENT_EQ] = ACTIONS(2559), + [anon_sym_PLUS_EQ] = ACTIONS(2559), + [anon_sym_DASH_EQ] = ACTIONS(2559), + [anon_sym_LT_LT_EQ] = ACTIONS(2559), + [anon_sym_GT_GT_EQ] = ACTIONS(2569), + [anon_sym_AMP_EQ] = ACTIONS(2559), + [anon_sym_CARET_EQ] = ACTIONS(2559), + [anon_sym_PIPE_EQ] = ACTIONS(2559), + [anon_sym_and_eq] = ACTIONS(2569), + [anon_sym_or_eq] = ACTIONS(2569), + [anon_sym_xor_eq] = ACTIONS(2569), + [anon_sym_LT_EQ_GT] = ACTIONS(2559), + [anon_sym_or] = ACTIONS(2569), + [anon_sym_and] = ACTIONS(2569), + [anon_sym_bitor] = ACTIONS(2569), + [anon_sym_xor] = ACTIONS(2569), + [anon_sym_bitand] = ACTIONS(2569), + [anon_sym_not_eq] = ACTIONS(2569), + [anon_sym_DASH_DASH] = ACTIONS(2559), + [anon_sym_PLUS_PLUS] = ACTIONS(2559), + [anon_sym_DOT] = ACTIONS(2569), + [anon_sym_DOT_STAR] = ACTIONS(2559), + [anon_sym_DASH_GT] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2569), + [anon_sym_decltype] = ACTIONS(2569), + [anon_sym_GT2] = ACTIONS(2559), + }, + [1680] = { + [sym_identifier] = ACTIONS(2569), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2559), + [anon_sym_COMMA] = ACTIONS(2559), + [anon_sym_RPAREN] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2559), + [anon_sym_TILDE] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2559), + [anon_sym_AMP_AMP] = ACTIONS(2559), + [anon_sym_AMP] = ACTIONS(2569), + [anon_sym_SEMI] = ACTIONS(2559), + [anon_sym___extension__] = ACTIONS(2569), + [anon_sym_virtual] = ACTIONS(2569), + [anon_sym_extern] = ACTIONS(2569), + [anon_sym___attribute__] = ACTIONS(2569), + [anon_sym___attribute] = ACTIONS(2569), + [anon_sym_COLON_COLON] = ACTIONS(2559), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2559), + [anon_sym___declspec] = ACTIONS(2569), + [anon_sym___based] = ACTIONS(2569), + [anon_sym___cdecl] = ACTIONS(2569), + [anon_sym___clrcall] = ACTIONS(2569), + [anon_sym___stdcall] = ACTIONS(2569), + [anon_sym___fastcall] = ACTIONS(2569), + [anon_sym___thiscall] = ACTIONS(2569), + [anon_sym___vectorcall] = ACTIONS(2569), + [anon_sym_LBRACE] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2569), + [anon_sym_unsigned] = ACTIONS(2569), + [anon_sym_long] = ACTIONS(2569), + [anon_sym_short] = ACTIONS(2569), + [anon_sym_LBRACK] = ACTIONS(2569), + [anon_sym_static] = ACTIONS(2569), + [anon_sym_EQ] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2569), + [anon_sym_inline] = ACTIONS(2569), + [anon_sym___inline] = ACTIONS(2569), + [anon_sym___inline__] = ACTIONS(2569), + [anon_sym___forceinline] = ACTIONS(2569), + [anon_sym_thread_local] = ACTIONS(2569), + [anon_sym___thread] = ACTIONS(2569), + [anon_sym_const] = ACTIONS(2569), + [anon_sym_constexpr] = ACTIONS(2569), + [anon_sym_volatile] = ACTIONS(2569), + [anon_sym_restrict] = ACTIONS(2569), + [anon_sym___restrict__] = ACTIONS(2569), + [anon_sym__Atomic] = ACTIONS(2569), + [anon_sym__Noreturn] = ACTIONS(2569), + [anon_sym_noreturn] = ACTIONS(2569), + [anon_sym__Nonnull] = ACTIONS(2569), + [anon_sym_mutable] = ACTIONS(2569), + [anon_sym_constinit] = ACTIONS(2569), + [anon_sym_consteval] = ACTIONS(2569), + [anon_sym_alignas] = ACTIONS(2569), + [anon_sym__Alignas] = ACTIONS(2569), + [sym_primitive_type] = ACTIONS(2569), + [anon_sym_enum] = ACTIONS(2569), + [anon_sym_class] = ACTIONS(2569), + [anon_sym_struct] = ACTIONS(2569), + [anon_sym_union] = ACTIONS(2569), + [anon_sym_asm] = ACTIONS(2569), + [anon_sym___asm__] = ACTIONS(2569), + [anon_sym___asm] = ACTIONS(2569), + [anon_sym_DASH_GT] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2569), + [anon_sym_decltype] = ACTIONS(2569), + [anon_sym_final] = ACTIONS(2569), + [anon_sym_override] = ACTIONS(2569), + [anon_sym_explicit] = ACTIONS(2569), + [anon_sym_typename] = ACTIONS(2569), + [anon_sym_template] = ACTIONS(2569), + [anon_sym_GT2] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2569), + [anon_sym_try] = ACTIONS(2569), + [anon_sym_noexcept] = ACTIONS(2569), + [anon_sym_throw] = ACTIONS(2569), + [anon_sym_requires] = ACTIONS(2569), + }, + [1681] = { + [sym__declaration_modifiers] = STATE(2121), + [sym__declaration_specifiers] = STATE(4017), + [sym_attribute_specifier] = STATE(2121), + [sym_attribute_declaration] = STATE(2121), + [sym_ms_declspec_modifier] = STATE(2121), + [sym_storage_class_specifier] = STATE(2121), + [sym_type_qualifier] = STATE(2121), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_parameter_declaration] = STATE(7467), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym_dependent_type] = STATE(2558), + [sym_type_parameter_declaration] = STATE(7467), + [sym_variadic_type_parameter_declaration] = STATE(7467), + [sym_optional_type_parameter_declaration] = STATE(7467), + [sym_template_template_parameter_declaration] = STATE(7467), + [sym_optional_parameter_declaration] = STATE(7467), + [sym_variadic_parameter_declaration] = STATE(7467), + [sym_template_type] = STATE(2439), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(6746), + [sym_qualified_type_identifier] = STATE(3138), + [aux_sym__declaration_specifiers_repeat1] = STATE(2121), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(5018), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1870), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(5028), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(69), + [anon_sym__Alignas] = ACTIONS(69), + [sym_primitive_type] = ACTIONS(3019), + [anon_sym_enum] = ACTIONS(1874), + [anon_sym_class] = ACTIONS(5370), + [anon_sym_struct] = ACTIONS(1878), + [anon_sym_union] = ACTIONS(1880), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(125), + [anon_sym_decltype] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(5372), + [anon_sym_template] = ACTIONS(5374), + [anon_sym_GT2] = ACTIONS(5376), + }, + [1682] = { + [sym_identifier] = ACTIONS(5088), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5090), + [anon_sym_COMMA] = ACTIONS(5090), + [anon_sym_RPAREN] = ACTIONS(5090), + [anon_sym_LPAREN2] = ACTIONS(5090), + [anon_sym_TILDE] = ACTIONS(5090), + [anon_sym_STAR] = ACTIONS(5090), + [anon_sym_AMP_AMP] = ACTIONS(5090), + [anon_sym_AMP] = ACTIONS(5088), + [anon_sym_SEMI] = ACTIONS(5090), + [anon_sym___extension__] = ACTIONS(5088), + [anon_sym_virtual] = ACTIONS(5088), + [anon_sym_extern] = ACTIONS(5088), + [anon_sym___attribute__] = ACTIONS(5088), + [anon_sym___attribute] = ACTIONS(5088), + [anon_sym_COLON_COLON] = ACTIONS(5090), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5090), + [anon_sym___declspec] = ACTIONS(5088), + [anon_sym___based] = ACTIONS(5088), + [anon_sym___cdecl] = ACTIONS(5088), + [anon_sym___clrcall] = ACTIONS(5088), + [anon_sym___stdcall] = ACTIONS(5088), + [anon_sym___fastcall] = ACTIONS(5088), + [anon_sym___thiscall] = ACTIONS(5088), + [anon_sym___vectorcall] = ACTIONS(5088), + [anon_sym_LBRACE] = ACTIONS(5090), + [anon_sym_signed] = ACTIONS(5088), + [anon_sym_unsigned] = ACTIONS(5088), + [anon_sym_long] = ACTIONS(5088), + [anon_sym_short] = ACTIONS(5088), + [anon_sym_LBRACK] = ACTIONS(5088), + [anon_sym_static] = ACTIONS(5088), + [anon_sym_EQ] = ACTIONS(5090), + [anon_sym_register] = ACTIONS(5088), + [anon_sym_inline] = ACTIONS(5088), + [anon_sym___inline] = ACTIONS(5088), + [anon_sym___inline__] = ACTIONS(5088), + [anon_sym___forceinline] = ACTIONS(5088), + [anon_sym_thread_local] = ACTIONS(5088), + [anon_sym___thread] = ACTIONS(5088), + [anon_sym_const] = ACTIONS(5088), + [anon_sym_constexpr] = ACTIONS(5088), + [anon_sym_volatile] = ACTIONS(5088), + [anon_sym_restrict] = ACTIONS(5088), + [anon_sym___restrict__] = ACTIONS(5088), + [anon_sym__Atomic] = ACTIONS(5088), + [anon_sym__Noreturn] = ACTIONS(5088), + [anon_sym_noreturn] = ACTIONS(5088), + [anon_sym__Nonnull] = ACTIONS(5088), + [anon_sym_mutable] = ACTIONS(5088), + [anon_sym_constinit] = ACTIONS(5088), + [anon_sym_consteval] = ACTIONS(5088), + [anon_sym_alignas] = ACTIONS(5088), + [anon_sym__Alignas] = ACTIONS(5088), + [sym_primitive_type] = ACTIONS(5088), + [anon_sym_enum] = ACTIONS(5088), + [anon_sym_class] = ACTIONS(5088), + [anon_sym_struct] = ACTIONS(5088), + [anon_sym_union] = ACTIONS(5088), + [anon_sym_asm] = ACTIONS(5088), + [anon_sym___asm__] = ACTIONS(5088), + [anon_sym___asm] = ACTIONS(5088), + [anon_sym_DASH_GT] = ACTIONS(5090), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5088), + [anon_sym_decltype] = ACTIONS(5088), + [anon_sym_final] = ACTIONS(5088), + [anon_sym_override] = ACTIONS(5088), + [anon_sym_explicit] = ACTIONS(5088), + [anon_sym_typename] = ACTIONS(5088), + [anon_sym_template] = ACTIONS(5088), + [anon_sym_GT2] = ACTIONS(5090), + [anon_sym_operator] = ACTIONS(5088), + [anon_sym_try] = ACTIONS(5088), + [anon_sym_noexcept] = ACTIONS(5088), + [anon_sym_throw] = ACTIONS(5088), + [anon_sym_requires] = ACTIONS(5088), + }, + [1683] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(5016), + [anon_sym_COMMA] = ACTIONS(5016), + [anon_sym_RPAREN] = ACTIONS(5016), + [anon_sym_LPAREN2] = ACTIONS(5016), + [anon_sym_DASH] = ACTIONS(5014), + [anon_sym_PLUS] = ACTIONS(5014), + [anon_sym_STAR] = ACTIONS(5014), + [anon_sym_SLASH] = ACTIONS(5014), + [anon_sym_PERCENT] = ACTIONS(5014), + [anon_sym_PIPE_PIPE] = ACTIONS(5016), + [anon_sym_AMP_AMP] = ACTIONS(5016), + [anon_sym_PIPE] = ACTIONS(5014), + [anon_sym_CARET] = ACTIONS(5014), + [anon_sym_AMP] = ACTIONS(5014), + [anon_sym_EQ_EQ] = ACTIONS(5016), + [anon_sym_BANG_EQ] = ACTIONS(5016), + [anon_sym_GT] = ACTIONS(5014), + [anon_sym_GT_EQ] = ACTIONS(5016), + [anon_sym_LT_EQ] = ACTIONS(5014), + [anon_sym_LT] = ACTIONS(5014), + [anon_sym_LT_LT] = ACTIONS(5014), + [anon_sym_GT_GT] = ACTIONS(5014), + [anon_sym___extension__] = ACTIONS(5016), + [anon_sym___attribute__] = ACTIONS(5016), + [anon_sym___attribute] = ACTIONS(5014), + [anon_sym_COLON] = ACTIONS(5014), + [anon_sym_COLON_COLON] = ACTIONS(5016), + [anon_sym_LBRACE] = ACTIONS(5016), + [anon_sym_LBRACK] = ACTIONS(5016), + [anon_sym_EQ] = ACTIONS(5014), + [anon_sym_const] = ACTIONS(5014), + [anon_sym_constexpr] = ACTIONS(5016), + [anon_sym_volatile] = ACTIONS(5016), + [anon_sym_restrict] = ACTIONS(5016), + [anon_sym___restrict__] = ACTIONS(5016), + [anon_sym__Atomic] = ACTIONS(5016), + [anon_sym__Noreturn] = ACTIONS(5016), + [anon_sym_noreturn] = ACTIONS(5016), + [anon_sym__Nonnull] = ACTIONS(5016), + [anon_sym_mutable] = ACTIONS(5016), + [anon_sym_constinit] = ACTIONS(5016), + [anon_sym_consteval] = ACTIONS(5016), + [anon_sym_alignas] = ACTIONS(5016), + [anon_sym__Alignas] = ACTIONS(5016), + [anon_sym_QMARK] = ACTIONS(5016), + [anon_sym_STAR_EQ] = ACTIONS(5016), + [anon_sym_SLASH_EQ] = ACTIONS(5016), + [anon_sym_PERCENT_EQ] = ACTIONS(5016), + [anon_sym_PLUS_EQ] = ACTIONS(5016), + [anon_sym_DASH_EQ] = ACTIONS(5016), + [anon_sym_LT_LT_EQ] = ACTIONS(5016), + [anon_sym_GT_GT_EQ] = ACTIONS(5016), + [anon_sym_AMP_EQ] = ACTIONS(5016), + [anon_sym_CARET_EQ] = ACTIONS(5016), + [anon_sym_PIPE_EQ] = ACTIONS(5016), + [anon_sym_and_eq] = ACTIONS(5016), + [anon_sym_or_eq] = ACTIONS(5016), + [anon_sym_xor_eq] = ACTIONS(5016), + [anon_sym_LT_EQ_GT] = ACTIONS(5016), + [anon_sym_or] = ACTIONS(5014), + [anon_sym_and] = ACTIONS(5014), + [anon_sym_bitor] = ACTIONS(5016), + [anon_sym_xor] = ACTIONS(5014), + [anon_sym_bitand] = ACTIONS(5016), + [anon_sym_not_eq] = ACTIONS(5016), + [anon_sym_DASH_DASH] = ACTIONS(5016), + [anon_sym_PLUS_PLUS] = ACTIONS(5016), + [anon_sym_DOT] = ACTIONS(5014), + [anon_sym_DOT_STAR] = ACTIONS(5016), + [anon_sym_DASH_GT] = ACTIONS(5014), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5016), + [anon_sym_decltype] = ACTIONS(5016), + [anon_sym_final] = ACTIONS(5016), + [anon_sym_override] = ACTIONS(5016), + [anon_sym_DASH_GT_STAR] = ACTIONS(5016), + }, + [1684] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1689), + [sym_identifier] = ACTIONS(5078), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5167), + [anon_sym_COMMA] = ACTIONS(5167), + [anon_sym_RPAREN] = ACTIONS(5167), + [anon_sym_LPAREN2] = ACTIONS(5167), + [anon_sym_DASH] = ACTIONS(5164), + [anon_sym_PLUS] = ACTIONS(5164), + [anon_sym_STAR] = ACTIONS(5164), + [anon_sym_SLASH] = ACTIONS(5164), + [anon_sym_PERCENT] = ACTIONS(5164), + [anon_sym_PIPE_PIPE] = ACTIONS(5167), + [anon_sym_AMP_AMP] = ACTIONS(5167), + [anon_sym_PIPE] = ACTIONS(5164), + [anon_sym_CARET] = ACTIONS(5164), + [anon_sym_AMP] = ACTIONS(5164), + [anon_sym_EQ_EQ] = ACTIONS(5167), + [anon_sym_BANG_EQ] = ACTIONS(5167), + [anon_sym_GT] = ACTIONS(5164), + [anon_sym_GT_EQ] = ACTIONS(5167), + [anon_sym_LT_EQ] = ACTIONS(5164), + [anon_sym_LT] = ACTIONS(5164), + [anon_sym_LT_LT] = ACTIONS(5164), + [anon_sym_GT_GT] = ACTIONS(5164), + [anon_sym___extension__] = ACTIONS(5078), + [anon_sym___attribute__] = ACTIONS(5164), + [anon_sym___attribute] = ACTIONS(5164), + [anon_sym_LBRACE] = ACTIONS(5167), + [anon_sym_signed] = ACTIONS(5378), + [anon_sym_unsigned] = ACTIONS(5378), + [anon_sym_long] = ACTIONS(5378), + [anon_sym_short] = ACTIONS(5378), + [anon_sym_LBRACK] = ACTIONS(5167), + [anon_sym_EQ] = ACTIONS(5164), + [anon_sym_const] = ACTIONS(5078), + [anon_sym_constexpr] = ACTIONS(5078), + [anon_sym_volatile] = ACTIONS(5078), + [anon_sym_restrict] = ACTIONS(5078), + [anon_sym___restrict__] = ACTIONS(5078), + [anon_sym__Atomic] = ACTIONS(5078), + [anon_sym__Noreturn] = ACTIONS(5078), + [anon_sym_noreturn] = ACTIONS(5078), + [anon_sym__Nonnull] = ACTIONS(5078), + [anon_sym_mutable] = ACTIONS(5078), + [anon_sym_constinit] = ACTIONS(5078), + [anon_sym_consteval] = ACTIONS(5078), + [anon_sym_alignas] = ACTIONS(5078), + [anon_sym__Alignas] = ACTIONS(5078), + [sym_primitive_type] = ACTIONS(5078), + [anon_sym_QMARK] = ACTIONS(5167), + [anon_sym_STAR_EQ] = ACTIONS(5167), + [anon_sym_SLASH_EQ] = ACTIONS(5167), + [anon_sym_PERCENT_EQ] = ACTIONS(5167), + [anon_sym_PLUS_EQ] = ACTIONS(5167), + [anon_sym_DASH_EQ] = ACTIONS(5167), + [anon_sym_LT_LT_EQ] = ACTIONS(5167), + [anon_sym_GT_GT_EQ] = ACTIONS(5167), + [anon_sym_AMP_EQ] = ACTIONS(5167), + [anon_sym_CARET_EQ] = ACTIONS(5167), + [anon_sym_PIPE_EQ] = ACTIONS(5167), + [anon_sym_LT_EQ_GT] = ACTIONS(5167), + [anon_sym_or] = ACTIONS(5164), + [anon_sym_and] = ACTIONS(5164), + [anon_sym_bitor] = ACTIONS(5164), + [anon_sym_xor] = ACTIONS(5164), + [anon_sym_bitand] = ACTIONS(5164), + [anon_sym_not_eq] = ACTIONS(5164), + [anon_sym_DASH_DASH] = ACTIONS(5167), + [anon_sym_PLUS_PLUS] = ACTIONS(5167), + [anon_sym_DOT] = ACTIONS(5164), + [anon_sym_DOT_STAR] = ACTIONS(5167), + [anon_sym_DASH_GT] = ACTIONS(5164), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5164), + [anon_sym_decltype] = ACTIONS(5164), + [anon_sym_DASH_GT_STAR] = ACTIONS(5167), + }, + [1685] = { + [sym_string_literal] = STATE(1708), + [sym_template_argument_list] = STATE(2375), + [sym_raw_string_literal] = STATE(1708), + [sym_identifier] = ACTIONS(4174), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4166), + [anon_sym_COMMA] = ACTIONS(4166), + [anon_sym_RPAREN] = ACTIONS(4166), + [aux_sym_preproc_if_token2] = ACTIONS(4166), + [aux_sym_preproc_else_token1] = ACTIONS(4166), + [aux_sym_preproc_elif_token1] = ACTIONS(4174), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4166), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4166), + [anon_sym_LPAREN2] = ACTIONS(4166), + [anon_sym_DASH] = ACTIONS(4174), + [anon_sym_PLUS] = ACTIONS(4174), + [anon_sym_STAR] = ACTIONS(4174), + [anon_sym_SLASH] = ACTIONS(4174), + [anon_sym_PERCENT] = ACTIONS(4174), + [anon_sym_PIPE_PIPE] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4166), + [anon_sym_PIPE] = ACTIONS(4174), + [anon_sym_CARET] = ACTIONS(4174), + [anon_sym_AMP] = ACTIONS(4174), + [anon_sym_EQ_EQ] = ACTIONS(4166), + [anon_sym_BANG_EQ] = ACTIONS(4166), + [anon_sym_GT] = ACTIONS(4174), + [anon_sym_GT_EQ] = ACTIONS(4166), + [anon_sym_LT_EQ] = ACTIONS(4174), + [anon_sym_LT] = ACTIONS(5381), + [anon_sym_LT_LT] = ACTIONS(4174), + [anon_sym_GT_GT] = ACTIONS(4174), + [anon_sym_SEMI] = ACTIONS(4166), + [anon_sym_COLON] = ACTIONS(4174), + [anon_sym_COLON_COLON] = ACTIONS(4187), + [anon_sym_LBRACE] = ACTIONS(4192), + [anon_sym_RBRACE] = ACTIONS(4166), + [anon_sym_LBRACK] = ACTIONS(4166), + [anon_sym_RBRACK] = ACTIONS(4166), + [anon_sym_EQ] = ACTIONS(4174), + [anon_sym_QMARK] = ACTIONS(4166), + [anon_sym_STAR_EQ] = ACTIONS(4166), + [anon_sym_SLASH_EQ] = ACTIONS(4166), + [anon_sym_PERCENT_EQ] = ACTIONS(4166), + [anon_sym_PLUS_EQ] = ACTIONS(4166), + [anon_sym_DASH_EQ] = ACTIONS(4166), + [anon_sym_LT_LT_EQ] = ACTIONS(4166), + [anon_sym_GT_GT_EQ] = ACTIONS(4166), + [anon_sym_AMP_EQ] = ACTIONS(4166), + [anon_sym_CARET_EQ] = ACTIONS(4166), + [anon_sym_PIPE_EQ] = ACTIONS(4166), + [anon_sym_and_eq] = ACTIONS(4174), + [anon_sym_or_eq] = ACTIONS(4174), + [anon_sym_xor_eq] = ACTIONS(4174), + [anon_sym_LT_EQ_GT] = ACTIONS(4166), + [anon_sym_or] = ACTIONS(4174), + [anon_sym_and] = ACTIONS(4174), + [anon_sym_bitor] = ACTIONS(4174), + [anon_sym_xor] = ACTIONS(4174), + [anon_sym_bitand] = ACTIONS(4174), + [anon_sym_not_eq] = ACTIONS(4174), + [anon_sym_DASH_DASH] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4174), + [anon_sym_DOT_STAR] = ACTIONS(4166), + [anon_sym_DASH_GT] = ACTIONS(4166), + [anon_sym_L_DQUOTE] = ACTIONS(1972), + [anon_sym_u_DQUOTE] = ACTIONS(1972), + [anon_sym_U_DQUOTE] = ACTIONS(1972), + [anon_sym_u8_DQUOTE] = ACTIONS(1972), + [anon_sym_DQUOTE] = ACTIONS(1972), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(1982), + [anon_sym_LR_DQUOTE] = ACTIONS(1982), + [anon_sym_uR_DQUOTE] = ACTIONS(1982), + [anon_sym_UR_DQUOTE] = ACTIONS(1982), + [anon_sym_u8R_DQUOTE] = ACTIONS(1982), + }, + [1686] = { + [sym_identifier] = ACTIONS(4984), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4988), + [anon_sym_COMMA] = ACTIONS(4988), + [anon_sym_RPAREN] = ACTIONS(4988), + [anon_sym_LPAREN2] = ACTIONS(4988), + [anon_sym_TILDE] = ACTIONS(4991), + [anon_sym_DASH] = ACTIONS(4993), + [anon_sym_PLUS] = ACTIONS(4993), + [anon_sym_STAR] = ACTIONS(4988), + [anon_sym_SLASH] = ACTIONS(4993), + [anon_sym_PERCENT] = ACTIONS(4986), + [anon_sym_PIPE_PIPE] = ACTIONS(4986), + [anon_sym_AMP_AMP] = ACTIONS(4988), + [anon_sym_PIPE] = ACTIONS(4993), + [anon_sym_CARET] = ACTIONS(4986), + [anon_sym_AMP] = ACTIONS(4995), + [anon_sym_EQ_EQ] = ACTIONS(4986), + [anon_sym_BANG_EQ] = ACTIONS(4986), + [anon_sym_GT] = ACTIONS(4993), + [anon_sym_GT_EQ] = ACTIONS(4986), + [anon_sym_LT_EQ] = ACTIONS(4993), + [anon_sym_LT] = ACTIONS(4993), + [anon_sym_LT_LT] = ACTIONS(4986), + [anon_sym_GT_GT] = ACTIONS(4986), + [anon_sym___extension__] = ACTIONS(4984), + [anon_sym_virtual] = ACTIONS(4984), + [anon_sym_extern] = ACTIONS(4984), + [anon_sym___attribute__] = ACTIONS(4984), + [anon_sym___attribute] = ACTIONS(4984), + [anon_sym_COLON_COLON] = ACTIONS(4991), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4991), + [anon_sym___declspec] = ACTIONS(4984), + [anon_sym___based] = ACTIONS(4984), + [anon_sym_LBRACE] = ACTIONS(4991), + [anon_sym_LBRACK] = ACTIONS(4995), + [anon_sym_static] = ACTIONS(4984), + [anon_sym_EQ] = ACTIONS(4984), + [anon_sym_register] = ACTIONS(4984), + [anon_sym_inline] = ACTIONS(4984), + [anon_sym___inline] = ACTIONS(4984), + [anon_sym___inline__] = ACTIONS(4984), + [anon_sym___forceinline] = ACTIONS(4984), + [anon_sym_thread_local] = ACTIONS(4984), + [anon_sym___thread] = ACTIONS(4984), + [anon_sym_const] = ACTIONS(4984), + [anon_sym_constexpr] = ACTIONS(4984), + [anon_sym_volatile] = ACTIONS(4984), + [anon_sym_restrict] = ACTIONS(4984), + [anon_sym___restrict__] = ACTIONS(4984), + [anon_sym__Atomic] = ACTIONS(4984), + [anon_sym__Noreturn] = ACTIONS(4984), + [anon_sym_noreturn] = ACTIONS(4984), + [anon_sym__Nonnull] = ACTIONS(4984), + [anon_sym_mutable] = ACTIONS(4984), + [anon_sym_constinit] = ACTIONS(4984), + [anon_sym_consteval] = ACTIONS(4984), + [anon_sym_alignas] = ACTIONS(4984), + [anon_sym__Alignas] = ACTIONS(4984), + [anon_sym_QMARK] = ACTIONS(4986), + [anon_sym_LT_EQ_GT] = ACTIONS(4986), + [anon_sym_or] = ACTIONS(4993), + [anon_sym_and] = ACTIONS(4993), + [anon_sym_bitor] = ACTIONS(4993), + [anon_sym_xor] = ACTIONS(4993), + [anon_sym_bitand] = ACTIONS(4993), + [anon_sym_not_eq] = ACTIONS(4993), + [anon_sym_DASH_DASH] = ACTIONS(4986), + [anon_sym_PLUS_PLUS] = ACTIONS(4986), + [anon_sym_DOT] = ACTIONS(4993), + [anon_sym_DOT_STAR] = ACTIONS(4986), + [anon_sym_DASH_GT] = ACTIONS(4986), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4984), + [anon_sym_decltype] = ACTIONS(4984), + [anon_sym_template] = ACTIONS(4984), + [anon_sym_operator] = ACTIONS(4984), + }, + [1687] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(5004), + [anon_sym_COMMA] = ACTIONS(5004), + [anon_sym_RPAREN] = ACTIONS(5004), + [anon_sym_LPAREN2] = ACTIONS(5004), + [anon_sym_DASH] = ACTIONS(5002), + [anon_sym_PLUS] = ACTIONS(5002), + [anon_sym_STAR] = ACTIONS(5002), + [anon_sym_SLASH] = ACTIONS(5002), + [anon_sym_PERCENT] = ACTIONS(5002), + [anon_sym_PIPE_PIPE] = ACTIONS(5004), + [anon_sym_AMP_AMP] = ACTIONS(5004), + [anon_sym_PIPE] = ACTIONS(5002), + [anon_sym_CARET] = ACTIONS(5002), + [anon_sym_AMP] = ACTIONS(5002), + [anon_sym_EQ_EQ] = ACTIONS(5004), + [anon_sym_BANG_EQ] = ACTIONS(5004), + [anon_sym_GT] = ACTIONS(5002), + [anon_sym_GT_EQ] = ACTIONS(5004), + [anon_sym_LT_EQ] = ACTIONS(5002), + [anon_sym_LT] = ACTIONS(5002), + [anon_sym_LT_LT] = ACTIONS(5002), + [anon_sym_GT_GT] = ACTIONS(5002), + [anon_sym___extension__] = ACTIONS(5004), + [anon_sym___attribute__] = ACTIONS(5004), + [anon_sym___attribute] = ACTIONS(5002), + [anon_sym_COLON] = ACTIONS(5002), + [anon_sym_COLON_COLON] = ACTIONS(5004), + [anon_sym_LBRACE] = ACTIONS(5004), + [anon_sym_LBRACK] = ACTIONS(5004), + [anon_sym_EQ] = ACTIONS(5002), + [anon_sym_const] = ACTIONS(5002), + [anon_sym_constexpr] = ACTIONS(5004), + [anon_sym_volatile] = ACTIONS(5004), + [anon_sym_restrict] = ACTIONS(5004), + [anon_sym___restrict__] = ACTIONS(5004), + [anon_sym__Atomic] = ACTIONS(5004), + [anon_sym__Noreturn] = ACTIONS(5004), + [anon_sym_noreturn] = ACTIONS(5004), + [anon_sym__Nonnull] = ACTIONS(5004), + [anon_sym_mutable] = ACTIONS(5004), + [anon_sym_constinit] = ACTIONS(5004), + [anon_sym_consteval] = ACTIONS(5004), + [anon_sym_alignas] = ACTIONS(5004), + [anon_sym__Alignas] = ACTIONS(5004), + [anon_sym_QMARK] = ACTIONS(5004), + [anon_sym_STAR_EQ] = ACTIONS(5004), + [anon_sym_SLASH_EQ] = ACTIONS(5004), + [anon_sym_PERCENT_EQ] = ACTIONS(5004), + [anon_sym_PLUS_EQ] = ACTIONS(5004), + [anon_sym_DASH_EQ] = ACTIONS(5004), + [anon_sym_LT_LT_EQ] = ACTIONS(5004), + [anon_sym_GT_GT_EQ] = ACTIONS(5004), + [anon_sym_AMP_EQ] = ACTIONS(5004), + [anon_sym_CARET_EQ] = ACTIONS(5004), + [anon_sym_PIPE_EQ] = ACTIONS(5004), + [anon_sym_and_eq] = ACTIONS(5004), + [anon_sym_or_eq] = ACTIONS(5004), + [anon_sym_xor_eq] = ACTIONS(5004), + [anon_sym_LT_EQ_GT] = ACTIONS(5004), + [anon_sym_or] = ACTIONS(5002), + [anon_sym_and] = ACTIONS(5002), + [anon_sym_bitor] = ACTIONS(5004), + [anon_sym_xor] = ACTIONS(5002), + [anon_sym_bitand] = ACTIONS(5004), + [anon_sym_not_eq] = ACTIONS(5004), + [anon_sym_DASH_DASH] = ACTIONS(5004), + [anon_sym_PLUS_PLUS] = ACTIONS(5004), + [anon_sym_DOT] = ACTIONS(5002), + [anon_sym_DOT_STAR] = ACTIONS(5004), + [anon_sym_DASH_GT] = ACTIONS(5002), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5004), + [anon_sym_decltype] = ACTIONS(5004), + [anon_sym_final] = ACTIONS(5004), + [anon_sym_override] = ACTIONS(5004), + [anon_sym_DASH_GT_STAR] = ACTIONS(5004), + }, + [1688] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1688), + [sym_identifier] = ACTIONS(5078), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5080), + [anon_sym_COMMA] = ACTIONS(5080), + [anon_sym_RPAREN] = ACTIONS(5080), + [aux_sym_preproc_if_token2] = ACTIONS(5080), + [aux_sym_preproc_else_token1] = ACTIONS(5080), + [aux_sym_preproc_elif_token1] = ACTIONS(5078), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5080), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5080), + [anon_sym_LPAREN2] = ACTIONS(5080), + [anon_sym_DASH] = ACTIONS(5078), + [anon_sym_PLUS] = ACTIONS(5078), + [anon_sym_STAR] = ACTIONS(5080), + [anon_sym_SLASH] = ACTIONS(5078), + [anon_sym_PERCENT] = ACTIONS(5080), + [anon_sym_PIPE_PIPE] = ACTIONS(5080), + [anon_sym_AMP_AMP] = ACTIONS(5080), + [anon_sym_PIPE] = ACTIONS(5078), + [anon_sym_CARET] = ACTIONS(5080), + [anon_sym_AMP] = ACTIONS(5078), + [anon_sym_EQ_EQ] = ACTIONS(5080), + [anon_sym_BANG_EQ] = ACTIONS(5080), + [anon_sym_GT] = ACTIONS(5078), + [anon_sym_GT_EQ] = ACTIONS(5080), + [anon_sym_LT_EQ] = ACTIONS(5078), + [anon_sym_LT] = ACTIONS(5078), + [anon_sym_LT_LT] = ACTIONS(5080), + [anon_sym_GT_GT] = ACTIONS(5080), + [anon_sym_SEMI] = ACTIONS(5080), + [anon_sym___extension__] = ACTIONS(5078), + [anon_sym___attribute__] = ACTIONS(5078), + [anon_sym___attribute] = ACTIONS(5078), + [anon_sym_COLON] = ACTIONS(5080), + [anon_sym_LBRACE] = ACTIONS(5080), + [anon_sym_RBRACE] = ACTIONS(5080), + [anon_sym_signed] = ACTIONS(5384), + [anon_sym_unsigned] = ACTIONS(5384), + [anon_sym_long] = ACTIONS(5384), + [anon_sym_short] = ACTIONS(5384), + [anon_sym_LBRACK] = ACTIONS(5080), + [anon_sym_RBRACK] = ACTIONS(5080), + [anon_sym_const] = ACTIONS(5078), + [anon_sym_constexpr] = ACTIONS(5078), + [anon_sym_volatile] = ACTIONS(5078), + [anon_sym_restrict] = ACTIONS(5078), + [anon_sym___restrict__] = ACTIONS(5078), + [anon_sym__Atomic] = ACTIONS(5078), + [anon_sym__Noreturn] = ACTIONS(5078), + [anon_sym_noreturn] = ACTIONS(5078), + [anon_sym__Nonnull] = ACTIONS(5078), + [anon_sym_mutable] = ACTIONS(5078), + [anon_sym_constinit] = ACTIONS(5078), + [anon_sym_consteval] = ACTIONS(5078), + [anon_sym_alignas] = ACTIONS(5078), + [anon_sym__Alignas] = ACTIONS(5078), + [sym_primitive_type] = ACTIONS(5078), + [anon_sym_QMARK] = ACTIONS(5080), + [anon_sym_LT_EQ_GT] = ACTIONS(5080), + [anon_sym_or] = ACTIONS(5078), + [anon_sym_and] = ACTIONS(5078), + [anon_sym_bitor] = ACTIONS(5078), + [anon_sym_xor] = ACTIONS(5078), + [anon_sym_bitand] = ACTIONS(5078), + [anon_sym_not_eq] = ACTIONS(5078), + [anon_sym_DASH_DASH] = ACTIONS(5080), + [anon_sym_PLUS_PLUS] = ACTIONS(5080), + [anon_sym_DOT] = ACTIONS(5078), + [anon_sym_DOT_STAR] = ACTIONS(5080), + [anon_sym_DASH_GT] = ACTIONS(5080), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5078), + [anon_sym_decltype] = ACTIONS(5078), + [anon_sym_final] = ACTIONS(5078), + [anon_sym_override] = ACTIONS(5078), + [anon_sym_requires] = ACTIONS(5078), + }, + [1689] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1689), + [sym_identifier] = ACTIONS(5078), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5080), + [anon_sym_COMMA] = ACTIONS(5080), + [anon_sym_RPAREN] = ACTIONS(5080), + [anon_sym_LPAREN2] = ACTIONS(5080), + [anon_sym_DASH] = ACTIONS(5078), + [anon_sym_PLUS] = ACTIONS(5078), + [anon_sym_STAR] = ACTIONS(5078), + [anon_sym_SLASH] = ACTIONS(5078), + [anon_sym_PERCENT] = ACTIONS(5078), + [anon_sym_PIPE_PIPE] = ACTIONS(5080), + [anon_sym_AMP_AMP] = ACTIONS(5080), + [anon_sym_PIPE] = ACTIONS(5078), + [anon_sym_CARET] = ACTIONS(5078), + [anon_sym_AMP] = ACTIONS(5078), + [anon_sym_EQ_EQ] = ACTIONS(5080), + [anon_sym_BANG_EQ] = ACTIONS(5080), + [anon_sym_GT] = ACTIONS(5078), + [anon_sym_GT_EQ] = ACTIONS(5080), + [anon_sym_LT_EQ] = ACTIONS(5078), + [anon_sym_LT] = ACTIONS(5078), + [anon_sym_LT_LT] = ACTIONS(5078), + [anon_sym_GT_GT] = ACTIONS(5078), + [anon_sym___extension__] = ACTIONS(5078), + [anon_sym___attribute__] = ACTIONS(5078), + [anon_sym___attribute] = ACTIONS(5078), + [anon_sym_LBRACE] = ACTIONS(5080), + [anon_sym_signed] = ACTIONS(5378), + [anon_sym_unsigned] = ACTIONS(5378), + [anon_sym_long] = ACTIONS(5378), + [anon_sym_short] = ACTIONS(5378), + [anon_sym_LBRACK] = ACTIONS(5080), + [anon_sym_EQ] = ACTIONS(5078), + [anon_sym_const] = ACTIONS(5078), + [anon_sym_constexpr] = ACTIONS(5078), + [anon_sym_volatile] = ACTIONS(5078), + [anon_sym_restrict] = ACTIONS(5078), + [anon_sym___restrict__] = ACTIONS(5078), + [anon_sym__Atomic] = ACTIONS(5078), + [anon_sym__Noreturn] = ACTIONS(5078), + [anon_sym_noreturn] = ACTIONS(5078), + [anon_sym__Nonnull] = ACTIONS(5078), + [anon_sym_mutable] = ACTIONS(5078), + [anon_sym_constinit] = ACTIONS(5078), + [anon_sym_consteval] = ACTIONS(5078), + [anon_sym_alignas] = ACTIONS(5078), + [anon_sym__Alignas] = ACTIONS(5078), + [sym_primitive_type] = ACTIONS(5078), + [anon_sym_QMARK] = ACTIONS(5080), + [anon_sym_STAR_EQ] = ACTIONS(5080), + [anon_sym_SLASH_EQ] = ACTIONS(5080), + [anon_sym_PERCENT_EQ] = ACTIONS(5080), + [anon_sym_PLUS_EQ] = ACTIONS(5080), + [anon_sym_DASH_EQ] = ACTIONS(5080), + [anon_sym_LT_LT_EQ] = ACTIONS(5080), + [anon_sym_GT_GT_EQ] = ACTIONS(5080), + [anon_sym_AMP_EQ] = ACTIONS(5080), + [anon_sym_CARET_EQ] = ACTIONS(5080), + [anon_sym_PIPE_EQ] = ACTIONS(5080), + [anon_sym_LT_EQ_GT] = ACTIONS(5080), + [anon_sym_or] = ACTIONS(5078), + [anon_sym_and] = ACTIONS(5078), + [anon_sym_bitor] = ACTIONS(5078), + [anon_sym_xor] = ACTIONS(5078), + [anon_sym_bitand] = ACTIONS(5078), + [anon_sym_not_eq] = ACTIONS(5078), + [anon_sym_DASH_DASH] = ACTIONS(5080), + [anon_sym_PLUS_PLUS] = ACTIONS(5080), + [anon_sym_DOT] = ACTIONS(5078), + [anon_sym_DOT_STAR] = ACTIONS(5080), + [anon_sym_DASH_GT] = ACTIONS(5078), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5078), + [anon_sym_decltype] = ACTIONS(5078), + [anon_sym_DASH_GT_STAR] = ACTIONS(5080), + }, + [1690] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(4978), + [anon_sym_COMMA] = ACTIONS(4978), + [anon_sym_RPAREN] = ACTIONS(4978), + [anon_sym_LPAREN2] = ACTIONS(4978), + [anon_sym_DASH] = ACTIONS(4976), + [anon_sym_PLUS] = ACTIONS(4976), + [anon_sym_STAR] = ACTIONS(4976), + [anon_sym_SLASH] = ACTIONS(4976), + [anon_sym_PERCENT] = ACTIONS(4976), + [anon_sym_PIPE_PIPE] = ACTIONS(4978), + [anon_sym_AMP_AMP] = ACTIONS(4978), + [anon_sym_PIPE] = ACTIONS(4976), + [anon_sym_CARET] = ACTIONS(4976), + [anon_sym_AMP] = ACTIONS(4976), + [anon_sym_EQ_EQ] = ACTIONS(4978), + [anon_sym_BANG_EQ] = ACTIONS(4978), + [anon_sym_GT] = ACTIONS(4976), + [anon_sym_GT_EQ] = ACTIONS(4978), + [anon_sym_LT_EQ] = ACTIONS(4976), + [anon_sym_LT] = ACTIONS(4976), + [anon_sym_LT_LT] = ACTIONS(4976), + [anon_sym_GT_GT] = ACTIONS(4976), + [anon_sym___extension__] = ACTIONS(4978), + [anon_sym___attribute__] = ACTIONS(4978), + [anon_sym___attribute] = ACTIONS(4976), + [anon_sym_COLON] = ACTIONS(4976), + [anon_sym_COLON_COLON] = ACTIONS(4978), + [anon_sym_LBRACE] = ACTIONS(4978), + [anon_sym_LBRACK] = ACTIONS(4978), + [anon_sym_EQ] = ACTIONS(4976), + [anon_sym_const] = ACTIONS(4976), + [anon_sym_constexpr] = ACTIONS(4978), + [anon_sym_volatile] = ACTIONS(4978), + [anon_sym_restrict] = ACTIONS(4978), + [anon_sym___restrict__] = ACTIONS(4978), + [anon_sym__Atomic] = ACTIONS(4978), + [anon_sym__Noreturn] = ACTIONS(4978), + [anon_sym_noreturn] = ACTIONS(4978), + [anon_sym__Nonnull] = ACTIONS(4978), + [anon_sym_mutable] = ACTIONS(4978), + [anon_sym_constinit] = ACTIONS(4978), + [anon_sym_consteval] = ACTIONS(4978), + [anon_sym_alignas] = ACTIONS(4978), + [anon_sym__Alignas] = ACTIONS(4978), + [anon_sym_QMARK] = ACTIONS(4978), + [anon_sym_STAR_EQ] = ACTIONS(4978), + [anon_sym_SLASH_EQ] = ACTIONS(4978), + [anon_sym_PERCENT_EQ] = ACTIONS(4978), + [anon_sym_PLUS_EQ] = ACTIONS(4978), + [anon_sym_DASH_EQ] = ACTIONS(4978), + [anon_sym_LT_LT_EQ] = ACTIONS(4978), + [anon_sym_GT_GT_EQ] = ACTIONS(4978), + [anon_sym_AMP_EQ] = ACTIONS(4978), + [anon_sym_CARET_EQ] = ACTIONS(4978), + [anon_sym_PIPE_EQ] = ACTIONS(4978), + [anon_sym_and_eq] = ACTIONS(4978), + [anon_sym_or_eq] = ACTIONS(4978), + [anon_sym_xor_eq] = ACTIONS(4978), + [anon_sym_LT_EQ_GT] = ACTIONS(4978), + [anon_sym_or] = ACTIONS(4976), + [anon_sym_and] = ACTIONS(4976), + [anon_sym_bitor] = ACTIONS(4978), + [anon_sym_xor] = ACTIONS(4976), + [anon_sym_bitand] = ACTIONS(4978), + [anon_sym_not_eq] = ACTIONS(4978), + [anon_sym_DASH_DASH] = ACTIONS(4978), + [anon_sym_PLUS_PLUS] = ACTIONS(4978), + [anon_sym_DOT] = ACTIONS(4976), + [anon_sym_DOT_STAR] = ACTIONS(4978), + [anon_sym_DASH_GT] = ACTIONS(4976), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4978), + [anon_sym_decltype] = ACTIONS(4978), + [anon_sym_final] = ACTIONS(4978), + [anon_sym_override] = ACTIONS(4978), + [anon_sym_DASH_GT_STAR] = ACTIONS(4978), + }, + [1691] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(4982), + [anon_sym_COMMA] = ACTIONS(4982), + [anon_sym_RPAREN] = ACTIONS(4982), + [anon_sym_LPAREN2] = ACTIONS(4982), + [anon_sym_DASH] = ACTIONS(4980), + [anon_sym_PLUS] = ACTIONS(4980), + [anon_sym_STAR] = ACTIONS(4980), + [anon_sym_SLASH] = ACTIONS(4980), + [anon_sym_PERCENT] = ACTIONS(4980), + [anon_sym_PIPE_PIPE] = ACTIONS(4982), + [anon_sym_AMP_AMP] = ACTIONS(4982), + [anon_sym_PIPE] = ACTIONS(4980), + [anon_sym_CARET] = ACTIONS(4980), + [anon_sym_AMP] = ACTIONS(4980), + [anon_sym_EQ_EQ] = ACTIONS(4982), + [anon_sym_BANG_EQ] = ACTIONS(4982), + [anon_sym_GT] = ACTIONS(4980), + [anon_sym_GT_EQ] = ACTIONS(4982), + [anon_sym_LT_EQ] = ACTIONS(4980), + [anon_sym_LT] = ACTIONS(4980), + [anon_sym_LT_LT] = ACTIONS(4980), + [anon_sym_GT_GT] = ACTIONS(4980), + [anon_sym___extension__] = ACTIONS(4982), + [anon_sym___attribute__] = ACTIONS(4982), + [anon_sym___attribute] = ACTIONS(4980), + [anon_sym_COLON] = ACTIONS(4980), + [anon_sym_COLON_COLON] = ACTIONS(4982), + [anon_sym_LBRACE] = ACTIONS(4982), + [anon_sym_LBRACK] = ACTIONS(4982), + [anon_sym_EQ] = ACTIONS(4980), + [anon_sym_const] = ACTIONS(4980), + [anon_sym_constexpr] = ACTIONS(4982), + [anon_sym_volatile] = ACTIONS(4982), + [anon_sym_restrict] = ACTIONS(4982), + [anon_sym___restrict__] = ACTIONS(4982), + [anon_sym__Atomic] = ACTIONS(4982), + [anon_sym__Noreturn] = ACTIONS(4982), + [anon_sym_noreturn] = ACTIONS(4982), + [anon_sym__Nonnull] = ACTIONS(4982), + [anon_sym_mutable] = ACTIONS(4982), + [anon_sym_constinit] = ACTIONS(4982), + [anon_sym_consteval] = ACTIONS(4982), + [anon_sym_alignas] = ACTIONS(4982), + [anon_sym__Alignas] = ACTIONS(4982), + [anon_sym_QMARK] = ACTIONS(4982), + [anon_sym_STAR_EQ] = ACTIONS(4982), + [anon_sym_SLASH_EQ] = ACTIONS(4982), + [anon_sym_PERCENT_EQ] = ACTIONS(4982), + [anon_sym_PLUS_EQ] = ACTIONS(4982), + [anon_sym_DASH_EQ] = ACTIONS(4982), + [anon_sym_LT_LT_EQ] = ACTIONS(4982), + [anon_sym_GT_GT_EQ] = ACTIONS(4982), + [anon_sym_AMP_EQ] = ACTIONS(4982), + [anon_sym_CARET_EQ] = ACTIONS(4982), + [anon_sym_PIPE_EQ] = ACTIONS(4982), + [anon_sym_and_eq] = ACTIONS(4982), + [anon_sym_or_eq] = ACTIONS(4982), + [anon_sym_xor_eq] = ACTIONS(4982), + [anon_sym_LT_EQ_GT] = ACTIONS(4982), + [anon_sym_or] = ACTIONS(4980), + [anon_sym_and] = ACTIONS(4980), + [anon_sym_bitor] = ACTIONS(4982), + [anon_sym_xor] = ACTIONS(4980), + [anon_sym_bitand] = ACTIONS(4982), + [anon_sym_not_eq] = ACTIONS(4982), + [anon_sym_DASH_DASH] = ACTIONS(4982), + [anon_sym_PLUS_PLUS] = ACTIONS(4982), + [anon_sym_DOT] = ACTIONS(4980), + [anon_sym_DOT_STAR] = ACTIONS(4982), + [anon_sym_DASH_GT] = ACTIONS(4980), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4982), + [anon_sym_decltype] = ACTIONS(4982), + [anon_sym_final] = ACTIONS(4982), + [anon_sym_override] = ACTIONS(4982), + [anon_sym_DASH_GT_STAR] = ACTIONS(4982), + }, + [1692] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(5008), + [anon_sym_COMMA] = ACTIONS(5008), + [anon_sym_RPAREN] = ACTIONS(5008), + [anon_sym_LPAREN2] = ACTIONS(5008), + [anon_sym_DASH] = ACTIONS(5006), + [anon_sym_PLUS] = ACTIONS(5006), + [anon_sym_STAR] = ACTIONS(5006), + [anon_sym_SLASH] = ACTIONS(5006), + [anon_sym_PERCENT] = ACTIONS(5006), + [anon_sym_PIPE_PIPE] = ACTIONS(5008), + [anon_sym_AMP_AMP] = ACTIONS(5008), + [anon_sym_PIPE] = ACTIONS(5006), + [anon_sym_CARET] = ACTIONS(5006), + [anon_sym_AMP] = ACTIONS(5006), + [anon_sym_EQ_EQ] = ACTIONS(5008), + [anon_sym_BANG_EQ] = ACTIONS(5008), + [anon_sym_GT] = ACTIONS(5006), + [anon_sym_GT_EQ] = ACTIONS(5008), + [anon_sym_LT_EQ] = ACTIONS(5006), + [anon_sym_LT] = ACTIONS(5006), + [anon_sym_LT_LT] = ACTIONS(5006), + [anon_sym_GT_GT] = ACTIONS(5006), + [anon_sym___extension__] = ACTIONS(5008), + [anon_sym___attribute__] = ACTIONS(5008), + [anon_sym___attribute] = ACTIONS(5006), + [anon_sym_COLON] = ACTIONS(5006), + [anon_sym_COLON_COLON] = ACTIONS(5008), + [anon_sym_LBRACE] = ACTIONS(5008), + [anon_sym_LBRACK] = ACTIONS(5008), + [anon_sym_EQ] = ACTIONS(5006), + [anon_sym_const] = ACTIONS(5006), + [anon_sym_constexpr] = ACTIONS(5008), + [anon_sym_volatile] = ACTIONS(5008), + [anon_sym_restrict] = ACTIONS(5008), + [anon_sym___restrict__] = ACTIONS(5008), + [anon_sym__Atomic] = ACTIONS(5008), + [anon_sym__Noreturn] = ACTIONS(5008), + [anon_sym_noreturn] = ACTIONS(5008), + [anon_sym__Nonnull] = ACTIONS(5008), + [anon_sym_mutable] = ACTIONS(5008), + [anon_sym_constinit] = ACTIONS(5008), + [anon_sym_consteval] = ACTIONS(5008), + [anon_sym_alignas] = ACTIONS(5008), + [anon_sym__Alignas] = ACTIONS(5008), + [anon_sym_QMARK] = ACTIONS(5008), + [anon_sym_STAR_EQ] = ACTIONS(5008), + [anon_sym_SLASH_EQ] = ACTIONS(5008), + [anon_sym_PERCENT_EQ] = ACTIONS(5008), + [anon_sym_PLUS_EQ] = ACTIONS(5008), + [anon_sym_DASH_EQ] = ACTIONS(5008), + [anon_sym_LT_LT_EQ] = ACTIONS(5008), + [anon_sym_GT_GT_EQ] = ACTIONS(5008), + [anon_sym_AMP_EQ] = ACTIONS(5008), + [anon_sym_CARET_EQ] = ACTIONS(5008), + [anon_sym_PIPE_EQ] = ACTIONS(5008), + [anon_sym_and_eq] = ACTIONS(5008), + [anon_sym_or_eq] = ACTIONS(5008), + [anon_sym_xor_eq] = ACTIONS(5008), + [anon_sym_LT_EQ_GT] = ACTIONS(5008), + [anon_sym_or] = ACTIONS(5006), + [anon_sym_and] = ACTIONS(5006), + [anon_sym_bitor] = ACTIONS(5008), + [anon_sym_xor] = ACTIONS(5006), + [anon_sym_bitand] = ACTIONS(5008), + [anon_sym_not_eq] = ACTIONS(5008), + [anon_sym_DASH_DASH] = ACTIONS(5008), + [anon_sym_PLUS_PLUS] = ACTIONS(5008), + [anon_sym_DOT] = ACTIONS(5006), + [anon_sym_DOT_STAR] = ACTIONS(5008), + [anon_sym_DASH_GT] = ACTIONS(5006), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5008), + [anon_sym_decltype] = ACTIONS(5008), + [anon_sym_final] = ACTIONS(5008), + [anon_sym_override] = ACTIONS(5008), + [anon_sym_DASH_GT_STAR] = ACTIONS(5008), + }, + [1693] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(5012), + [anon_sym_COMMA] = ACTIONS(5012), + [anon_sym_RPAREN] = ACTIONS(5012), + [anon_sym_LPAREN2] = ACTIONS(5012), + [anon_sym_DASH] = ACTIONS(5010), + [anon_sym_PLUS] = ACTIONS(5010), + [anon_sym_STAR] = ACTIONS(5010), + [anon_sym_SLASH] = ACTIONS(5010), + [anon_sym_PERCENT] = ACTIONS(5010), + [anon_sym_PIPE_PIPE] = ACTIONS(5012), + [anon_sym_AMP_AMP] = ACTIONS(5012), + [anon_sym_PIPE] = ACTIONS(5010), + [anon_sym_CARET] = ACTIONS(5010), + [anon_sym_AMP] = ACTIONS(5010), + [anon_sym_EQ_EQ] = ACTIONS(5012), + [anon_sym_BANG_EQ] = ACTIONS(5012), + [anon_sym_GT] = ACTIONS(5010), + [anon_sym_GT_EQ] = ACTIONS(5012), + [anon_sym_LT_EQ] = ACTIONS(5010), + [anon_sym_LT] = ACTIONS(5010), + [anon_sym_LT_LT] = ACTIONS(5010), + [anon_sym_GT_GT] = ACTIONS(5010), + [anon_sym___extension__] = ACTIONS(5012), + [anon_sym___attribute__] = ACTIONS(5012), + [anon_sym___attribute] = ACTIONS(5010), + [anon_sym_COLON] = ACTIONS(5010), + [anon_sym_COLON_COLON] = ACTIONS(5012), + [anon_sym_LBRACE] = ACTIONS(5012), + [anon_sym_LBRACK] = ACTIONS(5012), + [anon_sym_EQ] = ACTIONS(5010), + [anon_sym_const] = ACTIONS(5010), + [anon_sym_constexpr] = ACTIONS(5012), + [anon_sym_volatile] = ACTIONS(5012), + [anon_sym_restrict] = ACTIONS(5012), + [anon_sym___restrict__] = ACTIONS(5012), + [anon_sym__Atomic] = ACTIONS(5012), + [anon_sym__Noreturn] = ACTIONS(5012), + [anon_sym_noreturn] = ACTIONS(5012), + [anon_sym__Nonnull] = ACTIONS(5012), + [anon_sym_mutable] = ACTIONS(5012), + [anon_sym_constinit] = ACTIONS(5012), + [anon_sym_consteval] = ACTIONS(5012), + [anon_sym_alignas] = ACTIONS(5012), + [anon_sym__Alignas] = ACTIONS(5012), + [anon_sym_QMARK] = ACTIONS(5012), + [anon_sym_STAR_EQ] = ACTIONS(5012), + [anon_sym_SLASH_EQ] = ACTIONS(5012), + [anon_sym_PERCENT_EQ] = ACTIONS(5012), + [anon_sym_PLUS_EQ] = ACTIONS(5012), + [anon_sym_DASH_EQ] = ACTIONS(5012), + [anon_sym_LT_LT_EQ] = ACTIONS(5012), + [anon_sym_GT_GT_EQ] = ACTIONS(5012), + [anon_sym_AMP_EQ] = ACTIONS(5012), + [anon_sym_CARET_EQ] = ACTIONS(5012), + [anon_sym_PIPE_EQ] = ACTIONS(5012), + [anon_sym_and_eq] = ACTIONS(5012), + [anon_sym_or_eq] = ACTIONS(5012), + [anon_sym_xor_eq] = ACTIONS(5012), + [anon_sym_LT_EQ_GT] = ACTIONS(5012), + [anon_sym_or] = ACTIONS(5010), + [anon_sym_and] = ACTIONS(5010), + [anon_sym_bitor] = ACTIONS(5012), + [anon_sym_xor] = ACTIONS(5010), + [anon_sym_bitand] = ACTIONS(5012), + [anon_sym_not_eq] = ACTIONS(5012), + [anon_sym_DASH_DASH] = ACTIONS(5012), + [anon_sym_PLUS_PLUS] = ACTIONS(5012), + [anon_sym_DOT] = ACTIONS(5010), + [anon_sym_DOT_STAR] = ACTIONS(5012), + [anon_sym_DASH_GT] = ACTIONS(5010), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5012), + [anon_sym_decltype] = ACTIONS(5012), + [anon_sym_final] = ACTIONS(5012), + [anon_sym_override] = ACTIONS(5012), + [anon_sym_DASH_GT_STAR] = ACTIONS(5012), + }, + [1694] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(5000), + [anon_sym_COMMA] = ACTIONS(5000), + [anon_sym_RPAREN] = ACTIONS(5000), + [anon_sym_LPAREN2] = ACTIONS(5000), + [anon_sym_DASH] = ACTIONS(4998), + [anon_sym_PLUS] = ACTIONS(4998), + [anon_sym_STAR] = ACTIONS(4998), + [anon_sym_SLASH] = ACTIONS(4998), + [anon_sym_PERCENT] = ACTIONS(4998), + [anon_sym_PIPE_PIPE] = ACTIONS(5000), + [anon_sym_AMP_AMP] = ACTIONS(5000), + [anon_sym_PIPE] = ACTIONS(4998), + [anon_sym_CARET] = ACTIONS(4998), + [anon_sym_AMP] = ACTIONS(4998), + [anon_sym_EQ_EQ] = ACTIONS(5000), + [anon_sym_BANG_EQ] = ACTIONS(5000), + [anon_sym_GT] = ACTIONS(4998), + [anon_sym_GT_EQ] = ACTIONS(5000), + [anon_sym_LT_EQ] = ACTIONS(4998), + [anon_sym_LT] = ACTIONS(4998), + [anon_sym_LT_LT] = ACTIONS(4998), + [anon_sym_GT_GT] = ACTIONS(4998), + [anon_sym___extension__] = ACTIONS(5000), + [anon_sym___attribute__] = ACTIONS(5000), + [anon_sym___attribute] = ACTIONS(4998), + [anon_sym_COLON] = ACTIONS(4998), + [anon_sym_COLON_COLON] = ACTIONS(5000), + [anon_sym_LBRACE] = ACTIONS(5000), + [anon_sym_LBRACK] = ACTIONS(5000), + [anon_sym_EQ] = ACTIONS(4998), + [anon_sym_const] = ACTIONS(4998), + [anon_sym_constexpr] = ACTIONS(5000), + [anon_sym_volatile] = ACTIONS(5000), + [anon_sym_restrict] = ACTIONS(5000), + [anon_sym___restrict__] = ACTIONS(5000), + [anon_sym__Atomic] = ACTIONS(5000), + [anon_sym__Noreturn] = ACTIONS(5000), + [anon_sym_noreturn] = ACTIONS(5000), + [anon_sym__Nonnull] = ACTIONS(5000), + [anon_sym_mutable] = ACTIONS(5000), + [anon_sym_constinit] = ACTIONS(5000), + [anon_sym_consteval] = ACTIONS(5000), + [anon_sym_alignas] = ACTIONS(5000), + [anon_sym__Alignas] = ACTIONS(5000), + [anon_sym_QMARK] = ACTIONS(5000), + [anon_sym_STAR_EQ] = ACTIONS(5000), + [anon_sym_SLASH_EQ] = ACTIONS(5000), + [anon_sym_PERCENT_EQ] = ACTIONS(5000), + [anon_sym_PLUS_EQ] = ACTIONS(5000), + [anon_sym_DASH_EQ] = ACTIONS(5000), + [anon_sym_LT_LT_EQ] = ACTIONS(5000), + [anon_sym_GT_GT_EQ] = ACTIONS(5000), + [anon_sym_AMP_EQ] = ACTIONS(5000), + [anon_sym_CARET_EQ] = ACTIONS(5000), + [anon_sym_PIPE_EQ] = ACTIONS(5000), + [anon_sym_and_eq] = ACTIONS(5000), + [anon_sym_or_eq] = ACTIONS(5000), + [anon_sym_xor_eq] = ACTIONS(5000), + [anon_sym_LT_EQ_GT] = ACTIONS(5000), + [anon_sym_or] = ACTIONS(4998), + [anon_sym_and] = ACTIONS(4998), + [anon_sym_bitor] = ACTIONS(5000), + [anon_sym_xor] = ACTIONS(4998), + [anon_sym_bitand] = ACTIONS(5000), + [anon_sym_not_eq] = ACTIONS(5000), + [anon_sym_DASH_DASH] = ACTIONS(5000), + [anon_sym_PLUS_PLUS] = ACTIONS(5000), + [anon_sym_DOT] = ACTIONS(4998), + [anon_sym_DOT_STAR] = ACTIONS(5000), + [anon_sym_DASH_GT] = ACTIONS(4998), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1452), + [sym_auto] = ACTIONS(5000), + [anon_sym_decltype] = ACTIONS(5000), + [anon_sym_final] = ACTIONS(5000), + [anon_sym_override] = ACTIONS(5000), + [anon_sym_DASH_GT_STAR] = ACTIONS(5000), }, - [1641] = { - [sym_function_definition] = STATE(762), - [sym_declaration] = STATE(762), - [sym__declaration_modifiers] = STATE(2136), - [sym__declaration_specifiers] = STATE(4599), - [sym_attribute_specifier] = STATE(2136), - [sym_attribute_declaration] = STATE(2136), - [sym_ms_declspec_modifier] = STATE(2136), - [sym_ms_call_modifier] = STATE(1924), - [sym_storage_class_specifier] = STATE(2136), - [sym_type_qualifier] = STATE(2136), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(8034), - [sym_dependent_type] = STATE(2523), - [sym_template_type] = STATE(3706), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(6627), - [sym_qualified_type_identifier] = STATE(3798), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [sym_identifier] = ACTIONS(5236), + [1695] = { + [sym__declaration_modifiers] = STATE(2121), + [sym__declaration_specifiers] = STATE(4017), + [sym_attribute_specifier] = STATE(2121), + [sym_attribute_declaration] = STATE(2121), + [sym_ms_declspec_modifier] = STATE(2121), + [sym_storage_class_specifier] = STATE(2121), + [sym_type_qualifier] = STATE(2121), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_parameter_declaration] = STATE(7989), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym_dependent_type] = STATE(2558), + [sym_type_parameter_declaration] = STATE(7989), + [sym_variadic_type_parameter_declaration] = STATE(7989), + [sym_optional_type_parameter_declaration] = STATE(7989), + [sym_template_template_parameter_declaration] = STATE(7989), + [sym_optional_parameter_declaration] = STATE(7989), + [sym_variadic_parameter_declaration] = STATE(7989), + [sym_template_type] = STATE(2439), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(6746), + [sym_qualified_type_identifier] = STATE(3138), + [aux_sym__declaration_specifiers_repeat1] = STATE(2121), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(5018), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1446), + [anon_sym_virtual] = ACTIONS(1870), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5220), + [anon_sym_COLON_COLON] = ACTIONS(5028), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), - [anon_sym___cdecl] = ACTIONS(55), - [anon_sym___clrcall] = ACTIONS(55), - [anon_sym___stdcall] = ACTIONS(55), - [anon_sym___fastcall] = ACTIONS(55), - [anon_sym___thiscall] = ACTIONS(55), - [anon_sym___vectorcall] = ACTIONS(55), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -242493,385 +248230,1672 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2999), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(5293), - [anon_sym_struct] = ACTIONS(5295), - [anon_sym_union] = ACTIONS(5297), + [sym_primitive_type] = ACTIONS(3019), + [anon_sym_enum] = ACTIONS(1874), + [anon_sym_class] = ACTIONS(5370), + [anon_sym_struct] = ACTIONS(1878), + [anon_sym_union] = ACTIONS(1880), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_typename] = ACTIONS(5372), + [anon_sym_template] = ACTIONS(5374), }, - [1642] = { - [sym_function_definition] = STATE(738), - [sym_declaration] = STATE(738), - [sym__declaration_modifiers] = STATE(2136), - [sym__declaration_specifiers] = STATE(4658), - [sym_attribute_specifier] = STATE(2136), - [sym_attribute_declaration] = STATE(2136), - [sym_ms_declspec_modifier] = STATE(2136), - [sym_ms_call_modifier] = STATE(1912), - [sym_storage_class_specifier] = STATE(2136), - [sym_type_qualifier] = STATE(2136), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(8118), - [sym_dependent_type] = STATE(2523), - [sym_template_type] = STATE(3706), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(6627), - [sym_qualified_type_identifier] = STATE(3798), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [sym_identifier] = ACTIONS(5236), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1446), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5220), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___cdecl] = ACTIONS(55), - [anon_sym___clrcall] = ACTIONS(55), - [anon_sym___stdcall] = ACTIONS(55), - [anon_sym___fastcall] = ACTIONS(55), - [anon_sym___thiscall] = ACTIONS(55), - [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2999), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(5299), - [anon_sym_struct] = ACTIONS(5301), - [anon_sym_union] = ACTIONS(5303), + [1696] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(5008), + [anon_sym_COMMA] = ACTIONS(5008), + [anon_sym_LPAREN2] = ACTIONS(5008), + [anon_sym_DASH] = ACTIONS(5006), + [anon_sym_PLUS] = ACTIONS(5006), + [anon_sym_STAR] = ACTIONS(5006), + [anon_sym_SLASH] = ACTIONS(5006), + [anon_sym_PERCENT] = ACTIONS(5006), + [anon_sym_PIPE_PIPE] = ACTIONS(5008), + [anon_sym_AMP_AMP] = ACTIONS(5008), + [anon_sym_PIPE] = ACTIONS(5006), + [anon_sym_CARET] = ACTIONS(5006), + [anon_sym_AMP] = ACTIONS(5006), + [anon_sym_EQ_EQ] = ACTIONS(5008), + [anon_sym_BANG_EQ] = ACTIONS(5008), + [anon_sym_GT] = ACTIONS(5006), + [anon_sym_GT_EQ] = ACTIONS(5006), + [anon_sym_LT_EQ] = ACTIONS(5006), + [anon_sym_LT] = ACTIONS(5006), + [anon_sym_LT_LT] = ACTIONS(5006), + [anon_sym_GT_GT] = ACTIONS(5006), + [anon_sym___extension__] = ACTIONS(5008), + [anon_sym___attribute__] = ACTIONS(5008), + [anon_sym___attribute] = ACTIONS(5006), + [anon_sym_COLON] = ACTIONS(5006), + [anon_sym_COLON_COLON] = ACTIONS(5008), + [anon_sym_LBRACE] = ACTIONS(5008), + [anon_sym_LBRACK] = ACTIONS(5008), + [anon_sym_EQ] = ACTIONS(5006), + [anon_sym_const] = ACTIONS(5006), + [anon_sym_constexpr] = ACTIONS(5008), + [anon_sym_volatile] = ACTIONS(5008), + [anon_sym_restrict] = ACTIONS(5008), + [anon_sym___restrict__] = ACTIONS(5008), + [anon_sym__Atomic] = ACTIONS(5008), + [anon_sym__Noreturn] = ACTIONS(5008), + [anon_sym_noreturn] = ACTIONS(5008), + [anon_sym__Nonnull] = ACTIONS(5008), + [anon_sym_mutable] = ACTIONS(5008), + [anon_sym_constinit] = ACTIONS(5008), + [anon_sym_consteval] = ACTIONS(5008), + [anon_sym_alignas] = ACTIONS(5008), + [anon_sym__Alignas] = ACTIONS(5008), + [anon_sym_QMARK] = ACTIONS(5008), + [anon_sym_STAR_EQ] = ACTIONS(5008), + [anon_sym_SLASH_EQ] = ACTIONS(5008), + [anon_sym_PERCENT_EQ] = ACTIONS(5008), + [anon_sym_PLUS_EQ] = ACTIONS(5008), + [anon_sym_DASH_EQ] = ACTIONS(5008), + [anon_sym_LT_LT_EQ] = ACTIONS(5008), + [anon_sym_GT_GT_EQ] = ACTIONS(5006), + [anon_sym_AMP_EQ] = ACTIONS(5008), + [anon_sym_CARET_EQ] = ACTIONS(5008), + [anon_sym_PIPE_EQ] = ACTIONS(5008), + [anon_sym_and_eq] = ACTIONS(5008), + [anon_sym_or_eq] = ACTIONS(5008), + [anon_sym_xor_eq] = ACTIONS(5008), + [anon_sym_LT_EQ_GT] = ACTIONS(5008), + [anon_sym_or] = ACTIONS(5006), + [anon_sym_and] = ACTIONS(5006), + [anon_sym_bitor] = ACTIONS(5008), + [anon_sym_xor] = ACTIONS(5006), + [anon_sym_bitand] = ACTIONS(5008), + [anon_sym_not_eq] = ACTIONS(5008), + [anon_sym_DASH_DASH] = ACTIONS(5008), + [anon_sym_PLUS_PLUS] = ACTIONS(5008), + [anon_sym_DOT] = ACTIONS(5006), + [anon_sym_DOT_STAR] = ACTIONS(5008), + [anon_sym_DASH_GT] = ACTIONS(5008), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5008), + [anon_sym_decltype] = ACTIONS(5008), + [anon_sym_final] = ACTIONS(5008), + [anon_sym_override] = ACTIONS(5008), + [anon_sym_GT2] = ACTIONS(5008), + }, + [1697] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(5000), + [anon_sym_COMMA] = ACTIONS(5000), + [anon_sym_LPAREN2] = ACTIONS(5000), + [anon_sym_DASH] = ACTIONS(4998), + [anon_sym_PLUS] = ACTIONS(4998), + [anon_sym_STAR] = ACTIONS(4998), + [anon_sym_SLASH] = ACTIONS(4998), + [anon_sym_PERCENT] = ACTIONS(4998), + [anon_sym_PIPE_PIPE] = ACTIONS(5000), + [anon_sym_AMP_AMP] = ACTIONS(5000), + [anon_sym_PIPE] = ACTIONS(4998), + [anon_sym_CARET] = ACTIONS(4998), + [anon_sym_AMP] = ACTIONS(4998), + [anon_sym_EQ_EQ] = ACTIONS(5000), + [anon_sym_BANG_EQ] = ACTIONS(5000), + [anon_sym_GT] = ACTIONS(4998), + [anon_sym_GT_EQ] = ACTIONS(4998), + [anon_sym_LT_EQ] = ACTIONS(4998), + [anon_sym_LT] = ACTIONS(4998), + [anon_sym_LT_LT] = ACTIONS(4998), + [anon_sym_GT_GT] = ACTIONS(4998), + [anon_sym___extension__] = ACTIONS(5000), + [anon_sym___attribute__] = ACTIONS(5000), + [anon_sym___attribute] = ACTIONS(4998), + [anon_sym_COLON] = ACTIONS(4998), + [anon_sym_COLON_COLON] = ACTIONS(5000), + [anon_sym_LBRACE] = ACTIONS(5000), + [anon_sym_LBRACK] = ACTIONS(5000), + [anon_sym_EQ] = ACTIONS(4998), + [anon_sym_const] = ACTIONS(4998), + [anon_sym_constexpr] = ACTIONS(5000), + [anon_sym_volatile] = ACTIONS(5000), + [anon_sym_restrict] = ACTIONS(5000), + [anon_sym___restrict__] = ACTIONS(5000), + [anon_sym__Atomic] = ACTIONS(5000), + [anon_sym__Noreturn] = ACTIONS(5000), + [anon_sym_noreturn] = ACTIONS(5000), + [anon_sym__Nonnull] = ACTIONS(5000), + [anon_sym_mutable] = ACTIONS(5000), + [anon_sym_constinit] = ACTIONS(5000), + [anon_sym_consteval] = ACTIONS(5000), + [anon_sym_alignas] = ACTIONS(5000), + [anon_sym__Alignas] = ACTIONS(5000), + [anon_sym_QMARK] = ACTIONS(5000), + [anon_sym_STAR_EQ] = ACTIONS(5000), + [anon_sym_SLASH_EQ] = ACTIONS(5000), + [anon_sym_PERCENT_EQ] = ACTIONS(5000), + [anon_sym_PLUS_EQ] = ACTIONS(5000), + [anon_sym_DASH_EQ] = ACTIONS(5000), + [anon_sym_LT_LT_EQ] = ACTIONS(5000), + [anon_sym_GT_GT_EQ] = ACTIONS(4998), + [anon_sym_AMP_EQ] = ACTIONS(5000), + [anon_sym_CARET_EQ] = ACTIONS(5000), + [anon_sym_PIPE_EQ] = ACTIONS(5000), + [anon_sym_and_eq] = ACTIONS(5000), + [anon_sym_or_eq] = ACTIONS(5000), + [anon_sym_xor_eq] = ACTIONS(5000), + [anon_sym_LT_EQ_GT] = ACTIONS(5000), + [anon_sym_or] = ACTIONS(4998), + [anon_sym_and] = ACTIONS(4998), + [anon_sym_bitor] = ACTIONS(5000), + [anon_sym_xor] = ACTIONS(4998), + [anon_sym_bitand] = ACTIONS(5000), + [anon_sym_not_eq] = ACTIONS(5000), + [anon_sym_DASH_DASH] = ACTIONS(5000), + [anon_sym_PLUS_PLUS] = ACTIONS(5000), + [anon_sym_DOT] = ACTIONS(4998), + [anon_sym_DOT_STAR] = ACTIONS(5000), + [anon_sym_DASH_GT] = ACTIONS(5000), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5000), + [anon_sym_decltype] = ACTIONS(5000), + [anon_sym_final] = ACTIONS(5000), + [anon_sym_override] = ACTIONS(5000), + [anon_sym_GT2] = ACTIONS(5000), + }, + [1698] = { + [sym_catch_clause] = STATE(1713), + [aux_sym_constructor_try_statement_repeat1] = STATE(1713), + [sym_identifier] = ACTIONS(2586), + [aux_sym_preproc_def_token1] = ACTIONS(2586), + [aux_sym_preproc_if_token1] = ACTIONS(2586), + [aux_sym_preproc_if_token2] = ACTIONS(2586), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2586), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2586), + [aux_sym_preproc_else_token1] = ACTIONS(2586), + [aux_sym_preproc_elif_token1] = ACTIONS(2586), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2586), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2586), + [sym_preproc_directive] = ACTIONS(2586), + [anon_sym_LPAREN2] = ACTIONS(2588), + [anon_sym_TILDE] = ACTIONS(2588), + [anon_sym_STAR] = ACTIONS(2588), + [anon_sym_AMP_AMP] = ACTIONS(2588), + [anon_sym_AMP] = ACTIONS(2586), + [anon_sym_SEMI] = ACTIONS(2588), + [anon_sym___extension__] = ACTIONS(2586), + [anon_sym_typedef] = ACTIONS(2586), + [anon_sym_virtual] = ACTIONS(2586), + [anon_sym_extern] = ACTIONS(2586), + [anon_sym___attribute__] = ACTIONS(2586), + [anon_sym___attribute] = ACTIONS(2586), + [anon_sym_using] = ACTIONS(2586), + [anon_sym_COLON_COLON] = ACTIONS(2588), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2588), + [anon_sym___declspec] = ACTIONS(2586), + [anon_sym___based] = ACTIONS(2586), + [anon_sym_signed] = ACTIONS(2586), + [anon_sym_unsigned] = ACTIONS(2586), + [anon_sym_long] = ACTIONS(2586), + [anon_sym_short] = ACTIONS(2586), + [anon_sym_LBRACK] = ACTIONS(2586), + [anon_sym_static] = ACTIONS(2586), + [anon_sym_register] = ACTIONS(2586), + [anon_sym_inline] = ACTIONS(2586), + [anon_sym___inline] = ACTIONS(2586), + [anon_sym___inline__] = ACTIONS(2586), + [anon_sym___forceinline] = ACTIONS(2586), + [anon_sym_thread_local] = ACTIONS(2586), + [anon_sym___thread] = ACTIONS(2586), + [anon_sym_const] = ACTIONS(2586), + [anon_sym_constexpr] = ACTIONS(2586), + [anon_sym_volatile] = ACTIONS(2586), + [anon_sym_restrict] = ACTIONS(2586), + [anon_sym___restrict__] = ACTIONS(2586), + [anon_sym__Atomic] = ACTIONS(2586), + [anon_sym__Noreturn] = ACTIONS(2586), + [anon_sym_noreturn] = ACTIONS(2586), + [anon_sym__Nonnull] = ACTIONS(2586), + [anon_sym_mutable] = ACTIONS(2586), + [anon_sym_constinit] = ACTIONS(2586), + [anon_sym_consteval] = ACTIONS(2586), + [anon_sym_alignas] = ACTIONS(2586), + [anon_sym__Alignas] = ACTIONS(2586), + [sym_primitive_type] = ACTIONS(2586), + [anon_sym_enum] = ACTIONS(2586), + [anon_sym_class] = ACTIONS(2586), + [anon_sym_struct] = ACTIONS(2586), + [anon_sym_union] = ACTIONS(2586), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2586), + [anon_sym_decltype] = ACTIONS(2586), + [anon_sym_explicit] = ACTIONS(2586), + [anon_sym_typename] = ACTIONS(2586), + [anon_sym_private] = ACTIONS(2586), + [anon_sym_template] = ACTIONS(2586), + [anon_sym_operator] = ACTIONS(2586), + [anon_sym_friend] = ACTIONS(2586), + [anon_sym_public] = ACTIONS(2586), + [anon_sym_protected] = ACTIONS(2586), + [anon_sym_static_assert] = ACTIONS(2586), + [anon_sym_catch] = ACTIONS(5387), + }, + [1699] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(5012), + [anon_sym_COMMA] = ACTIONS(5012), + [anon_sym_LPAREN2] = ACTIONS(5012), + [anon_sym_DASH] = ACTIONS(5010), + [anon_sym_PLUS] = ACTIONS(5010), + [anon_sym_STAR] = ACTIONS(5010), + [anon_sym_SLASH] = ACTIONS(5010), + [anon_sym_PERCENT] = ACTIONS(5010), + [anon_sym_PIPE_PIPE] = ACTIONS(5012), + [anon_sym_AMP_AMP] = ACTIONS(5012), + [anon_sym_PIPE] = ACTIONS(5010), + [anon_sym_CARET] = ACTIONS(5010), + [anon_sym_AMP] = ACTIONS(5010), + [anon_sym_EQ_EQ] = ACTIONS(5012), + [anon_sym_BANG_EQ] = ACTIONS(5012), + [anon_sym_GT] = ACTIONS(5010), + [anon_sym_GT_EQ] = ACTIONS(5010), + [anon_sym_LT_EQ] = ACTIONS(5010), + [anon_sym_LT] = ACTIONS(5010), + [anon_sym_LT_LT] = ACTIONS(5010), + [anon_sym_GT_GT] = ACTIONS(5010), + [anon_sym___extension__] = ACTIONS(5012), + [anon_sym___attribute__] = ACTIONS(5012), + [anon_sym___attribute] = ACTIONS(5010), + [anon_sym_COLON] = ACTIONS(5010), + [anon_sym_COLON_COLON] = ACTIONS(5012), + [anon_sym_LBRACE] = ACTIONS(5012), + [anon_sym_LBRACK] = ACTIONS(5012), + [anon_sym_EQ] = ACTIONS(5010), + [anon_sym_const] = ACTIONS(5010), + [anon_sym_constexpr] = ACTIONS(5012), + [anon_sym_volatile] = ACTIONS(5012), + [anon_sym_restrict] = ACTIONS(5012), + [anon_sym___restrict__] = ACTIONS(5012), + [anon_sym__Atomic] = ACTIONS(5012), + [anon_sym__Noreturn] = ACTIONS(5012), + [anon_sym_noreturn] = ACTIONS(5012), + [anon_sym__Nonnull] = ACTIONS(5012), + [anon_sym_mutable] = ACTIONS(5012), + [anon_sym_constinit] = ACTIONS(5012), + [anon_sym_consteval] = ACTIONS(5012), + [anon_sym_alignas] = ACTIONS(5012), + [anon_sym__Alignas] = ACTIONS(5012), + [anon_sym_QMARK] = ACTIONS(5012), + [anon_sym_STAR_EQ] = ACTIONS(5012), + [anon_sym_SLASH_EQ] = ACTIONS(5012), + [anon_sym_PERCENT_EQ] = ACTIONS(5012), + [anon_sym_PLUS_EQ] = ACTIONS(5012), + [anon_sym_DASH_EQ] = ACTIONS(5012), + [anon_sym_LT_LT_EQ] = ACTIONS(5012), + [anon_sym_GT_GT_EQ] = ACTIONS(5010), + [anon_sym_AMP_EQ] = ACTIONS(5012), + [anon_sym_CARET_EQ] = ACTIONS(5012), + [anon_sym_PIPE_EQ] = ACTIONS(5012), + [anon_sym_and_eq] = ACTIONS(5012), + [anon_sym_or_eq] = ACTIONS(5012), + [anon_sym_xor_eq] = ACTIONS(5012), + [anon_sym_LT_EQ_GT] = ACTIONS(5012), + [anon_sym_or] = ACTIONS(5010), + [anon_sym_and] = ACTIONS(5010), + [anon_sym_bitor] = ACTIONS(5012), + [anon_sym_xor] = ACTIONS(5010), + [anon_sym_bitand] = ACTIONS(5012), + [anon_sym_not_eq] = ACTIONS(5012), + [anon_sym_DASH_DASH] = ACTIONS(5012), + [anon_sym_PLUS_PLUS] = ACTIONS(5012), + [anon_sym_DOT] = ACTIONS(5010), + [anon_sym_DOT_STAR] = ACTIONS(5012), + [anon_sym_DASH_GT] = ACTIONS(5012), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5012), + [anon_sym_decltype] = ACTIONS(5012), + [anon_sym_final] = ACTIONS(5012), + [anon_sym_override] = ACTIONS(5012), + [anon_sym_GT2] = ACTIONS(5012), + }, + [1700] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(5016), + [anon_sym_COMMA] = ACTIONS(5016), + [anon_sym_LPAREN2] = ACTIONS(5016), + [anon_sym_DASH] = ACTIONS(5014), + [anon_sym_PLUS] = ACTIONS(5014), + [anon_sym_STAR] = ACTIONS(5014), + [anon_sym_SLASH] = ACTIONS(5014), + [anon_sym_PERCENT] = ACTIONS(5014), + [anon_sym_PIPE_PIPE] = ACTIONS(5016), + [anon_sym_AMP_AMP] = ACTIONS(5016), + [anon_sym_PIPE] = ACTIONS(5014), + [anon_sym_CARET] = ACTIONS(5014), + [anon_sym_AMP] = ACTIONS(5014), + [anon_sym_EQ_EQ] = ACTIONS(5016), + [anon_sym_BANG_EQ] = ACTIONS(5016), + [anon_sym_GT] = ACTIONS(5014), + [anon_sym_GT_EQ] = ACTIONS(5014), + [anon_sym_LT_EQ] = ACTIONS(5014), + [anon_sym_LT] = ACTIONS(5014), + [anon_sym_LT_LT] = ACTIONS(5014), + [anon_sym_GT_GT] = ACTIONS(5014), + [anon_sym___extension__] = ACTIONS(5016), + [anon_sym___attribute__] = ACTIONS(5016), + [anon_sym___attribute] = ACTIONS(5014), + [anon_sym_COLON] = ACTIONS(5014), + [anon_sym_COLON_COLON] = ACTIONS(5016), + [anon_sym_LBRACE] = ACTIONS(5016), + [anon_sym_LBRACK] = ACTIONS(5016), + [anon_sym_EQ] = ACTIONS(5014), + [anon_sym_const] = ACTIONS(5014), + [anon_sym_constexpr] = ACTIONS(5016), + [anon_sym_volatile] = ACTIONS(5016), + [anon_sym_restrict] = ACTIONS(5016), + [anon_sym___restrict__] = ACTIONS(5016), + [anon_sym__Atomic] = ACTIONS(5016), + [anon_sym__Noreturn] = ACTIONS(5016), + [anon_sym_noreturn] = ACTIONS(5016), + [anon_sym__Nonnull] = ACTIONS(5016), + [anon_sym_mutable] = ACTIONS(5016), + [anon_sym_constinit] = ACTIONS(5016), + [anon_sym_consteval] = ACTIONS(5016), + [anon_sym_alignas] = ACTIONS(5016), + [anon_sym__Alignas] = ACTIONS(5016), + [anon_sym_QMARK] = ACTIONS(5016), + [anon_sym_STAR_EQ] = ACTIONS(5016), + [anon_sym_SLASH_EQ] = ACTIONS(5016), + [anon_sym_PERCENT_EQ] = ACTIONS(5016), + [anon_sym_PLUS_EQ] = ACTIONS(5016), + [anon_sym_DASH_EQ] = ACTIONS(5016), + [anon_sym_LT_LT_EQ] = ACTIONS(5016), + [anon_sym_GT_GT_EQ] = ACTIONS(5014), + [anon_sym_AMP_EQ] = ACTIONS(5016), + [anon_sym_CARET_EQ] = ACTIONS(5016), + [anon_sym_PIPE_EQ] = ACTIONS(5016), + [anon_sym_and_eq] = ACTIONS(5016), + [anon_sym_or_eq] = ACTIONS(5016), + [anon_sym_xor_eq] = ACTIONS(5016), + [anon_sym_LT_EQ_GT] = ACTIONS(5016), + [anon_sym_or] = ACTIONS(5014), + [anon_sym_and] = ACTIONS(5014), + [anon_sym_bitor] = ACTIONS(5016), + [anon_sym_xor] = ACTIONS(5014), + [anon_sym_bitand] = ACTIONS(5016), + [anon_sym_not_eq] = ACTIONS(5016), + [anon_sym_DASH_DASH] = ACTIONS(5016), + [anon_sym_PLUS_PLUS] = ACTIONS(5016), + [anon_sym_DOT] = ACTIONS(5014), + [anon_sym_DOT_STAR] = ACTIONS(5016), + [anon_sym_DASH_GT] = ACTIONS(5016), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5016), + [anon_sym_decltype] = ACTIONS(5016), + [anon_sym_final] = ACTIONS(5016), + [anon_sym_override] = ACTIONS(5016), + [anon_sym_GT2] = ACTIONS(5016), + }, + [1701] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(5004), + [anon_sym_COMMA] = ACTIONS(5004), + [anon_sym_LPAREN2] = ACTIONS(5004), + [anon_sym_DASH] = ACTIONS(5002), + [anon_sym_PLUS] = ACTIONS(5002), + [anon_sym_STAR] = ACTIONS(5002), + [anon_sym_SLASH] = ACTIONS(5002), + [anon_sym_PERCENT] = ACTIONS(5002), + [anon_sym_PIPE_PIPE] = ACTIONS(5004), + [anon_sym_AMP_AMP] = ACTIONS(5004), + [anon_sym_PIPE] = ACTIONS(5002), + [anon_sym_CARET] = ACTIONS(5002), + [anon_sym_AMP] = ACTIONS(5002), + [anon_sym_EQ_EQ] = ACTIONS(5004), + [anon_sym_BANG_EQ] = ACTIONS(5004), + [anon_sym_GT] = ACTIONS(5002), + [anon_sym_GT_EQ] = ACTIONS(5002), + [anon_sym_LT_EQ] = ACTIONS(5002), + [anon_sym_LT] = ACTIONS(5002), + [anon_sym_LT_LT] = ACTIONS(5002), + [anon_sym_GT_GT] = ACTIONS(5002), + [anon_sym___extension__] = ACTIONS(5004), + [anon_sym___attribute__] = ACTIONS(5004), + [anon_sym___attribute] = ACTIONS(5002), + [anon_sym_COLON] = ACTIONS(5002), + [anon_sym_COLON_COLON] = ACTIONS(5004), + [anon_sym_LBRACE] = ACTIONS(5004), + [anon_sym_LBRACK] = ACTIONS(5004), + [anon_sym_EQ] = ACTIONS(5002), + [anon_sym_const] = ACTIONS(5002), + [anon_sym_constexpr] = ACTIONS(5004), + [anon_sym_volatile] = ACTIONS(5004), + [anon_sym_restrict] = ACTIONS(5004), + [anon_sym___restrict__] = ACTIONS(5004), + [anon_sym__Atomic] = ACTIONS(5004), + [anon_sym__Noreturn] = ACTIONS(5004), + [anon_sym_noreturn] = ACTIONS(5004), + [anon_sym__Nonnull] = ACTIONS(5004), + [anon_sym_mutable] = ACTIONS(5004), + [anon_sym_constinit] = ACTIONS(5004), + [anon_sym_consteval] = ACTIONS(5004), + [anon_sym_alignas] = ACTIONS(5004), + [anon_sym__Alignas] = ACTIONS(5004), + [anon_sym_QMARK] = ACTIONS(5004), + [anon_sym_STAR_EQ] = ACTIONS(5004), + [anon_sym_SLASH_EQ] = ACTIONS(5004), + [anon_sym_PERCENT_EQ] = ACTIONS(5004), + [anon_sym_PLUS_EQ] = ACTIONS(5004), + [anon_sym_DASH_EQ] = ACTIONS(5004), + [anon_sym_LT_LT_EQ] = ACTIONS(5004), + [anon_sym_GT_GT_EQ] = ACTIONS(5002), + [anon_sym_AMP_EQ] = ACTIONS(5004), + [anon_sym_CARET_EQ] = ACTIONS(5004), + [anon_sym_PIPE_EQ] = ACTIONS(5004), + [anon_sym_and_eq] = ACTIONS(5004), + [anon_sym_or_eq] = ACTIONS(5004), + [anon_sym_xor_eq] = ACTIONS(5004), + [anon_sym_LT_EQ_GT] = ACTIONS(5004), + [anon_sym_or] = ACTIONS(5002), + [anon_sym_and] = ACTIONS(5002), + [anon_sym_bitor] = ACTIONS(5004), + [anon_sym_xor] = ACTIONS(5002), + [anon_sym_bitand] = ACTIONS(5004), + [anon_sym_not_eq] = ACTIONS(5004), + [anon_sym_DASH_DASH] = ACTIONS(5004), + [anon_sym_PLUS_PLUS] = ACTIONS(5004), + [anon_sym_DOT] = ACTIONS(5002), + [anon_sym_DOT_STAR] = ACTIONS(5004), + [anon_sym_DASH_GT] = ACTIONS(5004), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5004), + [anon_sym_decltype] = ACTIONS(5004), + [anon_sym_final] = ACTIONS(5004), + [anon_sym_override] = ACTIONS(5004), + [anon_sym_GT2] = ACTIONS(5004), + }, + [1702] = { + [sym_identifier] = ACTIONS(2569), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2559), + [anon_sym_COMMA] = ACTIONS(2559), + [anon_sym_RPAREN] = ACTIONS(2559), + [aux_sym_preproc_if_token2] = ACTIONS(2559), + [aux_sym_preproc_else_token1] = ACTIONS(2559), + [aux_sym_preproc_elif_token1] = ACTIONS(2569), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2559), + [anon_sym_DASH] = ACTIONS(2569), + [anon_sym_PLUS] = ACTIONS(2569), + [anon_sym_STAR] = ACTIONS(2559), + [anon_sym_SLASH] = ACTIONS(2569), + [anon_sym_PERCENT] = ACTIONS(2559), + [anon_sym_PIPE_PIPE] = ACTIONS(2559), + [anon_sym_AMP_AMP] = ACTIONS(2559), + [anon_sym_PIPE] = ACTIONS(2569), + [anon_sym_CARET] = ACTIONS(2559), + [anon_sym_AMP] = ACTIONS(2569), + [anon_sym_EQ_EQ] = ACTIONS(2559), + [anon_sym_BANG_EQ] = ACTIONS(2559), + [anon_sym_GT] = ACTIONS(2569), + [anon_sym_GT_EQ] = ACTIONS(2559), + [anon_sym_LT_EQ] = ACTIONS(2569), + [anon_sym_LT] = ACTIONS(2569), + [anon_sym_LT_LT] = ACTIONS(2559), + [anon_sym_GT_GT] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2559), + [anon_sym___extension__] = ACTIONS(2569), + [anon_sym___attribute__] = ACTIONS(2569), + [anon_sym___attribute] = ACTIONS(2569), + [anon_sym_COLON] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2559), + [anon_sym_RBRACE] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2569), + [anon_sym_unsigned] = ACTIONS(2569), + [anon_sym_long] = ACTIONS(2569), + [anon_sym_short] = ACTIONS(2569), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_RBRACK] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2569), + [anon_sym_constexpr] = ACTIONS(2569), + [anon_sym_volatile] = ACTIONS(2569), + [anon_sym_restrict] = ACTIONS(2569), + [anon_sym___restrict__] = ACTIONS(2569), + [anon_sym__Atomic] = ACTIONS(2569), + [anon_sym__Noreturn] = ACTIONS(2569), + [anon_sym_noreturn] = ACTIONS(2569), + [anon_sym__Nonnull] = ACTIONS(2569), + [anon_sym_mutable] = ACTIONS(2569), + [anon_sym_constinit] = ACTIONS(2569), + [anon_sym_consteval] = ACTIONS(2569), + [anon_sym_alignas] = ACTIONS(2569), + [anon_sym__Alignas] = ACTIONS(2569), + [sym_primitive_type] = ACTIONS(2569), + [anon_sym_QMARK] = ACTIONS(2559), + [anon_sym_LT_EQ_GT] = ACTIONS(2559), + [anon_sym_or] = ACTIONS(2569), + [anon_sym_and] = ACTIONS(2569), + [anon_sym_bitor] = ACTIONS(2569), + [anon_sym_xor] = ACTIONS(2569), + [anon_sym_bitand] = ACTIONS(2569), + [anon_sym_not_eq] = ACTIONS(2569), + [anon_sym_DASH_DASH] = ACTIONS(2559), + [anon_sym_PLUS_PLUS] = ACTIONS(2559), + [anon_sym_DOT] = ACTIONS(2569), + [anon_sym_DOT_STAR] = ACTIONS(2559), + [anon_sym_DASH_GT] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2569), + [anon_sym_decltype] = ACTIONS(2569), + [anon_sym_final] = ACTIONS(2569), + [anon_sym_override] = ACTIONS(2569), + [anon_sym_requires] = ACTIONS(2569), + }, + [1703] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(4978), + [anon_sym_COMMA] = ACTIONS(4978), + [anon_sym_LPAREN2] = ACTIONS(4978), + [anon_sym_DASH] = ACTIONS(4976), + [anon_sym_PLUS] = ACTIONS(4976), + [anon_sym_STAR] = ACTIONS(4976), + [anon_sym_SLASH] = ACTIONS(4976), + [anon_sym_PERCENT] = ACTIONS(4976), + [anon_sym_PIPE_PIPE] = ACTIONS(4978), + [anon_sym_AMP_AMP] = ACTIONS(4978), + [anon_sym_PIPE] = ACTIONS(4976), + [anon_sym_CARET] = ACTIONS(4976), + [anon_sym_AMP] = ACTIONS(4976), + [anon_sym_EQ_EQ] = ACTIONS(4978), + [anon_sym_BANG_EQ] = ACTIONS(4978), + [anon_sym_GT] = ACTIONS(4976), + [anon_sym_GT_EQ] = ACTIONS(4976), + [anon_sym_LT_EQ] = ACTIONS(4976), + [anon_sym_LT] = ACTIONS(4976), + [anon_sym_LT_LT] = ACTIONS(4976), + [anon_sym_GT_GT] = ACTIONS(4976), + [anon_sym___extension__] = ACTIONS(4978), + [anon_sym___attribute__] = ACTIONS(4978), + [anon_sym___attribute] = ACTIONS(4976), + [anon_sym_COLON] = ACTIONS(4976), + [anon_sym_COLON_COLON] = ACTIONS(4978), + [anon_sym_LBRACE] = ACTIONS(4978), + [anon_sym_LBRACK] = ACTIONS(4978), + [anon_sym_EQ] = ACTIONS(4976), + [anon_sym_const] = ACTIONS(4976), + [anon_sym_constexpr] = ACTIONS(4978), + [anon_sym_volatile] = ACTIONS(4978), + [anon_sym_restrict] = ACTIONS(4978), + [anon_sym___restrict__] = ACTIONS(4978), + [anon_sym__Atomic] = ACTIONS(4978), + [anon_sym__Noreturn] = ACTIONS(4978), + [anon_sym_noreturn] = ACTIONS(4978), + [anon_sym__Nonnull] = ACTIONS(4978), + [anon_sym_mutable] = ACTIONS(4978), + [anon_sym_constinit] = ACTIONS(4978), + [anon_sym_consteval] = ACTIONS(4978), + [anon_sym_alignas] = ACTIONS(4978), + [anon_sym__Alignas] = ACTIONS(4978), + [anon_sym_QMARK] = ACTIONS(4978), + [anon_sym_STAR_EQ] = ACTIONS(4978), + [anon_sym_SLASH_EQ] = ACTIONS(4978), + [anon_sym_PERCENT_EQ] = ACTIONS(4978), + [anon_sym_PLUS_EQ] = ACTIONS(4978), + [anon_sym_DASH_EQ] = ACTIONS(4978), + [anon_sym_LT_LT_EQ] = ACTIONS(4978), + [anon_sym_GT_GT_EQ] = ACTIONS(4976), + [anon_sym_AMP_EQ] = ACTIONS(4978), + [anon_sym_CARET_EQ] = ACTIONS(4978), + [anon_sym_PIPE_EQ] = ACTIONS(4978), + [anon_sym_and_eq] = ACTIONS(4978), + [anon_sym_or_eq] = ACTIONS(4978), + [anon_sym_xor_eq] = ACTIONS(4978), + [anon_sym_LT_EQ_GT] = ACTIONS(4978), + [anon_sym_or] = ACTIONS(4976), + [anon_sym_and] = ACTIONS(4976), + [anon_sym_bitor] = ACTIONS(4978), + [anon_sym_xor] = ACTIONS(4976), + [anon_sym_bitand] = ACTIONS(4978), + [anon_sym_not_eq] = ACTIONS(4978), + [anon_sym_DASH_DASH] = ACTIONS(4978), + [anon_sym_PLUS_PLUS] = ACTIONS(4978), + [anon_sym_DOT] = ACTIONS(4976), + [anon_sym_DOT_STAR] = ACTIONS(4978), + [anon_sym_DASH_GT] = ACTIONS(4978), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4978), + [anon_sym_decltype] = ACTIONS(4978), + [anon_sym_final] = ACTIONS(4978), + [anon_sym_override] = ACTIONS(4978), + [anon_sym_GT2] = ACTIONS(4978), + }, + [1704] = { + [sym_identifier] = ACTIONS(5389), + [anon_sym_LPAREN2] = ACTIONS(5391), + [anon_sym_BANG] = ACTIONS(5391), + [anon_sym_TILDE] = ACTIONS(5391), + [anon_sym_DASH] = ACTIONS(5389), + [anon_sym_PLUS] = ACTIONS(5389), + [anon_sym_STAR] = ACTIONS(5391), + [anon_sym_AMP] = ACTIONS(5391), + [anon_sym_SEMI] = ACTIONS(5391), + [anon_sym___extension__] = ACTIONS(5389), + [anon_sym_COLON_COLON] = ACTIONS(5391), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5391), + [anon_sym_LBRACE] = ACTIONS(5391), + [anon_sym_LBRACK] = ACTIONS(5389), + [sym_primitive_type] = ACTIONS(5389), + [anon_sym_if] = ACTIONS(5389), + [anon_sym_switch] = ACTIONS(5389), + [anon_sym_case] = ACTIONS(5389), + [anon_sym_default] = ACTIONS(5389), + [anon_sym_while] = ACTIONS(5389), + [anon_sym_do] = ACTIONS(5389), + [anon_sym_for] = ACTIONS(5389), + [anon_sym_return] = ACTIONS(5389), + [anon_sym_break] = ACTIONS(5389), + [anon_sym_continue] = ACTIONS(5389), + [anon_sym_goto] = ACTIONS(5389), + [anon_sym___try] = ACTIONS(5389), + [anon_sym___leave] = ACTIONS(5389), + [anon_sym_not] = ACTIONS(5389), + [anon_sym_compl] = ACTIONS(5389), + [anon_sym_DASH_DASH] = ACTIONS(5391), + [anon_sym_PLUS_PLUS] = ACTIONS(5391), + [anon_sym_sizeof] = ACTIONS(5389), + [anon_sym___alignof__] = ACTIONS(5389), + [anon_sym___alignof] = ACTIONS(5389), + [anon_sym__alignof] = ACTIONS(5389), + [anon_sym_alignof] = ACTIONS(5389), + [anon_sym__Alignof] = ACTIONS(5389), + [anon_sym_offsetof] = ACTIONS(5389), + [anon_sym__Generic] = ACTIONS(5389), + [anon_sym_asm] = ACTIONS(5389), + [anon_sym___asm__] = ACTIONS(5389), + [anon_sym___asm] = ACTIONS(5389), + [sym_number_literal] = ACTIONS(5391), + [anon_sym_L_SQUOTE] = ACTIONS(5391), + [anon_sym_u_SQUOTE] = ACTIONS(5391), + [anon_sym_U_SQUOTE] = ACTIONS(5391), + [anon_sym_u8_SQUOTE] = ACTIONS(5391), + [anon_sym_SQUOTE] = ACTIONS(5391), + [anon_sym_L_DQUOTE] = ACTIONS(5391), + [anon_sym_u_DQUOTE] = ACTIONS(5391), + [anon_sym_U_DQUOTE] = ACTIONS(5391), + [anon_sym_u8_DQUOTE] = ACTIONS(5391), + [anon_sym_DQUOTE] = ACTIONS(5391), + [sym_true] = ACTIONS(5389), + [sym_false] = ACTIONS(5389), + [anon_sym_NULL] = ACTIONS(5389), + [anon_sym_nullptr] = ACTIONS(5389), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(5389), + [anon_sym_template] = ACTIONS(5389), + [anon_sym_try] = ACTIONS(5389), + [anon_sym_delete] = ACTIONS(5389), + [anon_sym_throw] = ACTIONS(5389), + [anon_sym_co_return] = ACTIONS(5389), + [anon_sym_co_yield] = ACTIONS(5389), + [anon_sym_R_DQUOTE] = ACTIONS(5391), + [anon_sym_LR_DQUOTE] = ACTIONS(5391), + [anon_sym_uR_DQUOTE] = ACTIONS(5391), + [anon_sym_UR_DQUOTE] = ACTIONS(5391), + [anon_sym_u8R_DQUOTE] = ACTIONS(5391), + [anon_sym_co_await] = ACTIONS(5389), + [anon_sym_new] = ACTIONS(5389), + [anon_sym_requires] = ACTIONS(5389), + [sym_this] = ACTIONS(5389), + }, + [1705] = { + [sym_string_literal] = STATE(1714), + [sym_raw_string_literal] = STATE(1714), + [aux_sym_concatenated_string_repeat1] = STATE(1714), + [sym_identifier] = ACTIONS(5393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5395), + [anon_sym_COMMA] = ACTIONS(5395), + [anon_sym_RPAREN] = ACTIONS(5395), + [aux_sym_preproc_if_token2] = ACTIONS(5395), + [aux_sym_preproc_else_token1] = ACTIONS(5395), + [aux_sym_preproc_elif_token1] = ACTIONS(5397), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5395), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5395), + [anon_sym_LPAREN2] = ACTIONS(5395), + [anon_sym_DASH] = ACTIONS(5397), + [anon_sym_PLUS] = ACTIONS(5397), + [anon_sym_STAR] = ACTIONS(5397), + [anon_sym_SLASH] = ACTIONS(5397), + [anon_sym_PERCENT] = ACTIONS(5397), + [anon_sym_PIPE_PIPE] = ACTIONS(5395), + [anon_sym_AMP_AMP] = ACTIONS(5395), + [anon_sym_PIPE] = ACTIONS(5397), + [anon_sym_CARET] = ACTIONS(5397), + [anon_sym_AMP] = ACTIONS(5397), + [anon_sym_EQ_EQ] = ACTIONS(5395), + [anon_sym_BANG_EQ] = ACTIONS(5395), + [anon_sym_GT] = ACTIONS(5397), + [anon_sym_GT_EQ] = ACTIONS(5395), + [anon_sym_LT_EQ] = ACTIONS(5397), + [anon_sym_LT] = ACTIONS(5397), + [anon_sym_LT_LT] = ACTIONS(5397), + [anon_sym_GT_GT] = ACTIONS(5397), + [anon_sym_SEMI] = ACTIONS(5395), + [anon_sym_COLON] = ACTIONS(5395), + [anon_sym_RBRACE] = ACTIONS(5395), + [anon_sym_LBRACK] = ACTIONS(5395), + [anon_sym_RBRACK] = ACTIONS(5395), + [anon_sym_EQ] = ACTIONS(5397), + [anon_sym_QMARK] = ACTIONS(5395), + [anon_sym_STAR_EQ] = ACTIONS(5395), + [anon_sym_SLASH_EQ] = ACTIONS(5395), + [anon_sym_PERCENT_EQ] = ACTIONS(5395), + [anon_sym_PLUS_EQ] = ACTIONS(5395), + [anon_sym_DASH_EQ] = ACTIONS(5395), + [anon_sym_LT_LT_EQ] = ACTIONS(5395), + [anon_sym_GT_GT_EQ] = ACTIONS(5395), + [anon_sym_AMP_EQ] = ACTIONS(5395), + [anon_sym_CARET_EQ] = ACTIONS(5395), + [anon_sym_PIPE_EQ] = ACTIONS(5395), + [anon_sym_and_eq] = ACTIONS(5397), + [anon_sym_or_eq] = ACTIONS(5397), + [anon_sym_xor_eq] = ACTIONS(5397), + [anon_sym_LT_EQ_GT] = ACTIONS(5395), + [anon_sym_or] = ACTIONS(5397), + [anon_sym_and] = ACTIONS(5397), + [anon_sym_bitor] = ACTIONS(5397), + [anon_sym_xor] = ACTIONS(5397), + [anon_sym_bitand] = ACTIONS(5397), + [anon_sym_not_eq] = ACTIONS(5397), + [anon_sym_DASH_DASH] = ACTIONS(5395), + [anon_sym_PLUS_PLUS] = ACTIONS(5395), + [anon_sym_DOT] = ACTIONS(5397), + [anon_sym_DOT_STAR] = ACTIONS(5395), + [anon_sym_DASH_GT] = ACTIONS(5395), + [anon_sym_L_DQUOTE] = ACTIONS(1972), + [anon_sym_u_DQUOTE] = ACTIONS(1972), + [anon_sym_U_DQUOTE] = ACTIONS(1972), + [anon_sym_u8_DQUOTE] = ACTIONS(1972), + [anon_sym_DQUOTE] = ACTIONS(1972), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_R_DQUOTE] = ACTIONS(1982), + [anon_sym_LR_DQUOTE] = ACTIONS(1982), + [anon_sym_uR_DQUOTE] = ACTIONS(1982), + [anon_sym_UR_DQUOTE] = ACTIONS(1982), + [anon_sym_u8R_DQUOTE] = ACTIONS(1982), + [sym_literal_suffix] = ACTIONS(5397), }, - [1643] = { - [sym_function_definition] = STATE(360), - [sym_declaration] = STATE(360), - [sym__declaration_modifiers] = STATE(2136), - [sym__declaration_specifiers] = STATE(4644), - [sym_attribute_specifier] = STATE(2136), - [sym_attribute_declaration] = STATE(2136), - [sym_ms_declspec_modifier] = STATE(2136), - [sym_ms_call_modifier] = STATE(1929), - [sym_storage_class_specifier] = STATE(2136), - [sym_type_qualifier] = STATE(2136), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(8052), - [sym_dependent_type] = STATE(2523), - [sym_template_type] = STATE(3706), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(6627), - [sym_qualified_type_identifier] = STATE(3798), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [sym_identifier] = ACTIONS(5236), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1446), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5220), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___cdecl] = ACTIONS(55), - [anon_sym___clrcall] = ACTIONS(55), - [anon_sym___stdcall] = ACTIONS(55), - [anon_sym___fastcall] = ACTIONS(55), - [anon_sym___thiscall] = ACTIONS(55), - [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2999), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(5305), - [anon_sym_struct] = ACTIONS(5307), - [anon_sym_union] = ACTIONS(5309), + [1706] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(4982), + [anon_sym_COMMA] = ACTIONS(4982), + [anon_sym_LPAREN2] = ACTIONS(4982), + [anon_sym_DASH] = ACTIONS(4980), + [anon_sym_PLUS] = ACTIONS(4980), + [anon_sym_STAR] = ACTIONS(4980), + [anon_sym_SLASH] = ACTIONS(4980), + [anon_sym_PERCENT] = ACTIONS(4980), + [anon_sym_PIPE_PIPE] = ACTIONS(4982), + [anon_sym_AMP_AMP] = ACTIONS(4982), + [anon_sym_PIPE] = ACTIONS(4980), + [anon_sym_CARET] = ACTIONS(4980), + [anon_sym_AMP] = ACTIONS(4980), + [anon_sym_EQ_EQ] = ACTIONS(4982), + [anon_sym_BANG_EQ] = ACTIONS(4982), + [anon_sym_GT] = ACTIONS(4980), + [anon_sym_GT_EQ] = ACTIONS(4980), + [anon_sym_LT_EQ] = ACTIONS(4980), + [anon_sym_LT] = ACTIONS(4980), + [anon_sym_LT_LT] = ACTIONS(4980), + [anon_sym_GT_GT] = ACTIONS(4980), + [anon_sym___extension__] = ACTIONS(4982), + [anon_sym___attribute__] = ACTIONS(4982), + [anon_sym___attribute] = ACTIONS(4980), + [anon_sym_COLON] = ACTIONS(4980), + [anon_sym_COLON_COLON] = ACTIONS(4982), + [anon_sym_LBRACE] = ACTIONS(4982), + [anon_sym_LBRACK] = ACTIONS(4982), + [anon_sym_EQ] = ACTIONS(4980), + [anon_sym_const] = ACTIONS(4980), + [anon_sym_constexpr] = ACTIONS(4982), + [anon_sym_volatile] = ACTIONS(4982), + [anon_sym_restrict] = ACTIONS(4982), + [anon_sym___restrict__] = ACTIONS(4982), + [anon_sym__Atomic] = ACTIONS(4982), + [anon_sym__Noreturn] = ACTIONS(4982), + [anon_sym_noreturn] = ACTIONS(4982), + [anon_sym__Nonnull] = ACTIONS(4982), + [anon_sym_mutable] = ACTIONS(4982), + [anon_sym_constinit] = ACTIONS(4982), + [anon_sym_consteval] = ACTIONS(4982), + [anon_sym_alignas] = ACTIONS(4982), + [anon_sym__Alignas] = ACTIONS(4982), + [anon_sym_QMARK] = ACTIONS(4982), + [anon_sym_STAR_EQ] = ACTIONS(4982), + [anon_sym_SLASH_EQ] = ACTIONS(4982), + [anon_sym_PERCENT_EQ] = ACTIONS(4982), + [anon_sym_PLUS_EQ] = ACTIONS(4982), + [anon_sym_DASH_EQ] = ACTIONS(4982), + [anon_sym_LT_LT_EQ] = ACTIONS(4982), + [anon_sym_GT_GT_EQ] = ACTIONS(4980), + [anon_sym_AMP_EQ] = ACTIONS(4982), + [anon_sym_CARET_EQ] = ACTIONS(4982), + [anon_sym_PIPE_EQ] = ACTIONS(4982), + [anon_sym_and_eq] = ACTIONS(4982), + [anon_sym_or_eq] = ACTIONS(4982), + [anon_sym_xor_eq] = ACTIONS(4982), + [anon_sym_LT_EQ_GT] = ACTIONS(4982), + [anon_sym_or] = ACTIONS(4980), + [anon_sym_and] = ACTIONS(4980), + [anon_sym_bitor] = ACTIONS(4982), + [anon_sym_xor] = ACTIONS(4980), + [anon_sym_bitand] = ACTIONS(4982), + [anon_sym_not_eq] = ACTIONS(4982), + [anon_sym_DASH_DASH] = ACTIONS(4982), + [anon_sym_PLUS_PLUS] = ACTIONS(4982), + [anon_sym_DOT] = ACTIONS(4980), + [anon_sym_DOT_STAR] = ACTIONS(4982), + [anon_sym_DASH_GT] = ACTIONS(4982), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1452), + [sym_auto] = ACTIONS(4982), + [anon_sym_decltype] = ACTIONS(4982), + [anon_sym_final] = ACTIONS(4982), + [anon_sym_override] = ACTIONS(4982), + [anon_sym_GT2] = ACTIONS(4982), }, - [1644] = { - [sym_function_definition] = STATE(2168), - [sym_declaration] = STATE(2168), - [sym__declaration_modifiers] = STATE(2136), - [sym__declaration_specifiers] = STATE(4684), - [sym_attribute_specifier] = STATE(2136), - [sym_attribute_declaration] = STATE(2136), - [sym_ms_declspec_modifier] = STATE(2136), - [sym_ms_call_modifier] = STATE(1934), - [sym_storage_class_specifier] = STATE(2136), - [sym_type_qualifier] = STATE(2136), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(8474), - [sym_dependent_type] = STATE(2523), - [sym_template_type] = STATE(3706), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(6627), - [sym_qualified_type_identifier] = STATE(3798), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [sym_identifier] = ACTIONS(5236), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1446), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5220), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___cdecl] = ACTIONS(55), - [anon_sym___clrcall] = ACTIONS(55), - [anon_sym___stdcall] = ACTIONS(55), - [anon_sym___fastcall] = ACTIONS(55), - [anon_sym___thiscall] = ACTIONS(55), - [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2999), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(5311), - [anon_sym_struct] = ACTIONS(5313), - [anon_sym_union] = ACTIONS(5315), + [1707] = { + [sym_identifier] = ACTIONS(5088), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5090), + [anon_sym_COMMA] = ACTIONS(5090), + [anon_sym_RPAREN] = ACTIONS(5090), + [anon_sym_LPAREN2] = ACTIONS(5090), + [anon_sym_DASH] = ACTIONS(5088), + [anon_sym_PLUS] = ACTIONS(5088), + [anon_sym_STAR] = ACTIONS(5088), + [anon_sym_SLASH] = ACTIONS(5088), + [anon_sym_PERCENT] = ACTIONS(5088), + [anon_sym_PIPE_PIPE] = ACTIONS(5090), + [anon_sym_AMP_AMP] = ACTIONS(5090), + [anon_sym_PIPE] = ACTIONS(5088), + [anon_sym_CARET] = ACTIONS(5088), + [anon_sym_AMP] = ACTIONS(5088), + [anon_sym_EQ_EQ] = ACTIONS(5090), + [anon_sym_BANG_EQ] = ACTIONS(5090), + [anon_sym_GT] = ACTIONS(5088), + [anon_sym_GT_EQ] = ACTIONS(5090), + [anon_sym_LT_EQ] = ACTIONS(5088), + [anon_sym_LT] = ACTIONS(5088), + [anon_sym_LT_LT] = ACTIONS(5088), + [anon_sym_GT_GT] = ACTIONS(5088), + [anon_sym___extension__] = ACTIONS(5088), + [anon_sym___attribute__] = ACTIONS(5088), + [anon_sym___attribute] = ACTIONS(5088), + [anon_sym_LBRACE] = ACTIONS(5090), + [anon_sym_signed] = ACTIONS(5088), + [anon_sym_unsigned] = ACTIONS(5088), + [anon_sym_long] = ACTIONS(5088), + [anon_sym_short] = ACTIONS(5088), + [anon_sym_LBRACK] = ACTIONS(5090), + [anon_sym_EQ] = ACTIONS(5088), + [anon_sym_const] = ACTIONS(5088), + [anon_sym_constexpr] = ACTIONS(5088), + [anon_sym_volatile] = ACTIONS(5088), + [anon_sym_restrict] = ACTIONS(5088), + [anon_sym___restrict__] = ACTIONS(5088), + [anon_sym__Atomic] = ACTIONS(5088), + [anon_sym__Noreturn] = ACTIONS(5088), + [anon_sym_noreturn] = ACTIONS(5088), + [anon_sym__Nonnull] = ACTIONS(5088), + [anon_sym_mutable] = ACTIONS(5088), + [anon_sym_constinit] = ACTIONS(5088), + [anon_sym_consteval] = ACTIONS(5088), + [anon_sym_alignas] = ACTIONS(5088), + [anon_sym__Alignas] = ACTIONS(5088), + [sym_primitive_type] = ACTIONS(5088), + [anon_sym_QMARK] = ACTIONS(5090), + [anon_sym_STAR_EQ] = ACTIONS(5090), + [anon_sym_SLASH_EQ] = ACTIONS(5090), + [anon_sym_PERCENT_EQ] = ACTIONS(5090), + [anon_sym_PLUS_EQ] = ACTIONS(5090), + [anon_sym_DASH_EQ] = ACTIONS(5090), + [anon_sym_LT_LT_EQ] = ACTIONS(5090), + [anon_sym_GT_GT_EQ] = ACTIONS(5090), + [anon_sym_AMP_EQ] = ACTIONS(5090), + [anon_sym_CARET_EQ] = ACTIONS(5090), + [anon_sym_PIPE_EQ] = ACTIONS(5090), + [anon_sym_LT_EQ_GT] = ACTIONS(5090), + [anon_sym_or] = ACTIONS(5088), + [anon_sym_and] = ACTIONS(5088), + [anon_sym_bitor] = ACTIONS(5088), + [anon_sym_xor] = ACTIONS(5088), + [anon_sym_bitand] = ACTIONS(5088), + [anon_sym_not_eq] = ACTIONS(5088), + [anon_sym_DASH_DASH] = ACTIONS(5090), + [anon_sym_PLUS_PLUS] = ACTIONS(5090), + [anon_sym_DOT] = ACTIONS(5088), + [anon_sym_DOT_STAR] = ACTIONS(5090), + [anon_sym_DASH_GT] = ACTIONS(5088), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1452), + [sym_auto] = ACTIONS(5088), + [anon_sym_decltype] = ACTIONS(5088), + [anon_sym_DASH_GT_STAR] = ACTIONS(5090), }, - [1645] = { - [sym_function_definition] = STATE(433), - [sym_declaration] = STATE(433), - [sym__declaration_modifiers] = STATE(2136), - [sym__declaration_specifiers] = STATE(4644), - [sym_attribute_specifier] = STATE(2136), - [sym_attribute_declaration] = STATE(2136), - [sym_ms_declspec_modifier] = STATE(2136), - [sym_ms_call_modifier] = STATE(1929), - [sym_storage_class_specifier] = STATE(2136), - [sym_type_qualifier] = STATE(2136), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(8003), - [sym_dependent_type] = STATE(2523), - [sym_template_type] = STATE(3706), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(6627), - [sym_qualified_type_identifier] = STATE(3798), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [sym_identifier] = ACTIONS(5236), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1446), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5220), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___cdecl] = ACTIONS(55), - [anon_sym___clrcall] = ACTIONS(55), - [anon_sym___stdcall] = ACTIONS(55), - [anon_sym___fastcall] = ACTIONS(55), - [anon_sym___thiscall] = ACTIONS(55), - [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2999), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(5317), - [anon_sym_struct] = ACTIONS(5319), - [anon_sym_union] = ACTIONS(5321), + [1708] = { + [sym_string_literal] = STATE(1705), + [sym_raw_string_literal] = STATE(1705), + [aux_sym_concatenated_string_repeat1] = STATE(1705), + [sym_identifier] = ACTIONS(5399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5401), + [anon_sym_COMMA] = ACTIONS(5401), + [anon_sym_RPAREN] = ACTIONS(5401), + [aux_sym_preproc_if_token2] = ACTIONS(5401), + [aux_sym_preproc_else_token1] = ACTIONS(5401), + [aux_sym_preproc_elif_token1] = ACTIONS(5403), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5401), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5401), + [anon_sym_LPAREN2] = ACTIONS(5401), + [anon_sym_DASH] = ACTIONS(5403), + [anon_sym_PLUS] = ACTIONS(5403), + [anon_sym_STAR] = ACTIONS(5403), + [anon_sym_SLASH] = ACTIONS(5403), + [anon_sym_PERCENT] = ACTIONS(5403), + [anon_sym_PIPE_PIPE] = ACTIONS(5401), + [anon_sym_AMP_AMP] = ACTIONS(5401), + [anon_sym_PIPE] = ACTIONS(5403), + [anon_sym_CARET] = ACTIONS(5403), + [anon_sym_AMP] = ACTIONS(5403), + [anon_sym_EQ_EQ] = ACTIONS(5401), + [anon_sym_BANG_EQ] = ACTIONS(5401), + [anon_sym_GT] = ACTIONS(5403), + [anon_sym_GT_EQ] = ACTIONS(5401), + [anon_sym_LT_EQ] = ACTIONS(5403), + [anon_sym_LT] = ACTIONS(5403), + [anon_sym_LT_LT] = ACTIONS(5403), + [anon_sym_GT_GT] = ACTIONS(5403), + [anon_sym_SEMI] = ACTIONS(5401), + [anon_sym_COLON] = ACTIONS(5401), + [anon_sym_RBRACE] = ACTIONS(5401), + [anon_sym_LBRACK] = ACTIONS(5401), + [anon_sym_RBRACK] = ACTIONS(5401), + [anon_sym_EQ] = ACTIONS(5403), + [anon_sym_QMARK] = ACTIONS(5401), + [anon_sym_STAR_EQ] = ACTIONS(5401), + [anon_sym_SLASH_EQ] = ACTIONS(5401), + [anon_sym_PERCENT_EQ] = ACTIONS(5401), + [anon_sym_PLUS_EQ] = ACTIONS(5401), + [anon_sym_DASH_EQ] = ACTIONS(5401), + [anon_sym_LT_LT_EQ] = ACTIONS(5401), + [anon_sym_GT_GT_EQ] = ACTIONS(5401), + [anon_sym_AMP_EQ] = ACTIONS(5401), + [anon_sym_CARET_EQ] = ACTIONS(5401), + [anon_sym_PIPE_EQ] = ACTIONS(5401), + [anon_sym_and_eq] = ACTIONS(5403), + [anon_sym_or_eq] = ACTIONS(5403), + [anon_sym_xor_eq] = ACTIONS(5403), + [anon_sym_LT_EQ_GT] = ACTIONS(5401), + [anon_sym_or] = ACTIONS(5403), + [anon_sym_and] = ACTIONS(5403), + [anon_sym_bitor] = ACTIONS(5403), + [anon_sym_xor] = ACTIONS(5403), + [anon_sym_bitand] = ACTIONS(5403), + [anon_sym_not_eq] = ACTIONS(5403), + [anon_sym_DASH_DASH] = ACTIONS(5401), + [anon_sym_PLUS_PLUS] = ACTIONS(5401), + [anon_sym_DOT] = ACTIONS(5403), + [anon_sym_DOT_STAR] = ACTIONS(5401), + [anon_sym_DASH_GT] = ACTIONS(5401), + [anon_sym_L_DQUOTE] = ACTIONS(1972), + [anon_sym_u_DQUOTE] = ACTIONS(1972), + [anon_sym_U_DQUOTE] = ACTIONS(1972), + [anon_sym_u8_DQUOTE] = ACTIONS(1972), + [anon_sym_DQUOTE] = ACTIONS(1972), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_R_DQUOTE] = ACTIONS(1982), + [anon_sym_LR_DQUOTE] = ACTIONS(1982), + [anon_sym_uR_DQUOTE] = ACTIONS(1982), + [anon_sym_UR_DQUOTE] = ACTIONS(1982), + [anon_sym_u8R_DQUOTE] = ACTIONS(1982), + [sym_literal_suffix] = ACTIONS(5403), }, - [1646] = { - [sym_function_definition] = STATE(2157), - [sym_declaration] = STATE(2157), - [sym__declaration_modifiers] = STATE(2136), - [sym__declaration_specifiers] = STATE(4684), - [sym_attribute_specifier] = STATE(2136), - [sym_attribute_declaration] = STATE(2136), - [sym_ms_declspec_modifier] = STATE(2136), - [sym_ms_call_modifier] = STATE(1934), - [sym_storage_class_specifier] = STATE(2136), - [sym_type_qualifier] = STATE(2136), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(8440), - [sym_dependent_type] = STATE(2523), - [sym_template_type] = STATE(3706), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(6627), - [sym_qualified_type_identifier] = STATE(3798), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [sym_identifier] = ACTIONS(5236), + [1709] = { + [sym_catch_clause] = STATE(1713), + [aux_sym_constructor_try_statement_repeat1] = STATE(1713), + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token2] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [aux_sym_preproc_else_token1] = ACTIONS(2527), + [aux_sym_preproc_elif_token1] = ACTIONS(2527), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym___extension__] = ACTIONS(2527), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym___attribute] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym___inline] = ACTIONS(2527), + [anon_sym___inline__] = ACTIONS(2527), + [anon_sym___forceinline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym___thread] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym___restrict__] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym__Noreturn] = ACTIONS(2527), + [anon_sym_noreturn] = ACTIONS(2527), + [anon_sym__Nonnull] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_alignas] = ACTIONS(2527), + [anon_sym__Alignas] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_private] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_friend] = ACTIONS(2527), + [anon_sym_public] = ACTIONS(2527), + [anon_sym_protected] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_catch] = ACTIONS(5387), + }, + [1710] = { + [sym_catch_clause] = STATE(1713), + [aux_sym_constructor_try_statement_repeat1] = STATE(1713), + [sym_identifier] = ACTIONS(2590), + [aux_sym_preproc_def_token1] = ACTIONS(2590), + [aux_sym_preproc_if_token1] = ACTIONS(2590), + [aux_sym_preproc_if_token2] = ACTIONS(2590), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2590), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2590), + [aux_sym_preproc_else_token1] = ACTIONS(2590), + [aux_sym_preproc_elif_token1] = ACTIONS(2590), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2590), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2590), + [sym_preproc_directive] = ACTIONS(2590), + [anon_sym_LPAREN2] = ACTIONS(2592), + [anon_sym_TILDE] = ACTIONS(2592), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_AMP_AMP] = ACTIONS(2592), + [anon_sym_AMP] = ACTIONS(2590), + [anon_sym_SEMI] = ACTIONS(2592), + [anon_sym___extension__] = ACTIONS(2590), + [anon_sym_typedef] = ACTIONS(2590), + [anon_sym_virtual] = ACTIONS(2590), + [anon_sym_extern] = ACTIONS(2590), + [anon_sym___attribute__] = ACTIONS(2590), + [anon_sym___attribute] = ACTIONS(2590), + [anon_sym_using] = ACTIONS(2590), + [anon_sym_COLON_COLON] = ACTIONS(2592), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2592), + [anon_sym___declspec] = ACTIONS(2590), + [anon_sym___based] = ACTIONS(2590), + [anon_sym_signed] = ACTIONS(2590), + [anon_sym_unsigned] = ACTIONS(2590), + [anon_sym_long] = ACTIONS(2590), + [anon_sym_short] = ACTIONS(2590), + [anon_sym_LBRACK] = ACTIONS(2590), + [anon_sym_static] = ACTIONS(2590), + [anon_sym_register] = ACTIONS(2590), + [anon_sym_inline] = ACTIONS(2590), + [anon_sym___inline] = ACTIONS(2590), + [anon_sym___inline__] = ACTIONS(2590), + [anon_sym___forceinline] = ACTIONS(2590), + [anon_sym_thread_local] = ACTIONS(2590), + [anon_sym___thread] = ACTIONS(2590), + [anon_sym_const] = ACTIONS(2590), + [anon_sym_constexpr] = ACTIONS(2590), + [anon_sym_volatile] = ACTIONS(2590), + [anon_sym_restrict] = ACTIONS(2590), + [anon_sym___restrict__] = ACTIONS(2590), + [anon_sym__Atomic] = ACTIONS(2590), + [anon_sym__Noreturn] = ACTIONS(2590), + [anon_sym_noreturn] = ACTIONS(2590), + [anon_sym__Nonnull] = ACTIONS(2590), + [anon_sym_mutable] = ACTIONS(2590), + [anon_sym_constinit] = ACTIONS(2590), + [anon_sym_consteval] = ACTIONS(2590), + [anon_sym_alignas] = ACTIONS(2590), + [anon_sym__Alignas] = ACTIONS(2590), + [sym_primitive_type] = ACTIONS(2590), + [anon_sym_enum] = ACTIONS(2590), + [anon_sym_class] = ACTIONS(2590), + [anon_sym_struct] = ACTIONS(2590), + [anon_sym_union] = ACTIONS(2590), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2590), + [anon_sym_decltype] = ACTIONS(2590), + [anon_sym_explicit] = ACTIONS(2590), + [anon_sym_typename] = ACTIONS(2590), + [anon_sym_private] = ACTIONS(2590), + [anon_sym_template] = ACTIONS(2590), + [anon_sym_operator] = ACTIONS(2590), + [anon_sym_friend] = ACTIONS(2590), + [anon_sym_public] = ACTIONS(2590), + [anon_sym_protected] = ACTIONS(2590), + [anon_sym_static_assert] = ACTIONS(2590), + [anon_sym_catch] = ACTIONS(5387), + }, + [1711] = { + [sym_identifier] = ACTIONS(2569), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2559), + [anon_sym_COMMA] = ACTIONS(2559), + [anon_sym_RPAREN] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2559), + [anon_sym_DASH] = ACTIONS(2569), + [anon_sym_PLUS] = ACTIONS(2569), + [anon_sym_STAR] = ACTIONS(2569), + [anon_sym_SLASH] = ACTIONS(2569), + [anon_sym_PERCENT] = ACTIONS(2569), + [anon_sym_PIPE_PIPE] = ACTIONS(2559), + [anon_sym_AMP_AMP] = ACTIONS(2559), + [anon_sym_PIPE] = ACTIONS(2569), + [anon_sym_CARET] = ACTIONS(2569), + [anon_sym_AMP] = ACTIONS(2569), + [anon_sym_EQ_EQ] = ACTIONS(2559), + [anon_sym_BANG_EQ] = ACTIONS(2559), + [anon_sym_GT] = ACTIONS(2569), + [anon_sym_GT_EQ] = ACTIONS(2559), + [anon_sym_LT_EQ] = ACTIONS(2569), + [anon_sym_LT] = ACTIONS(2569), + [anon_sym_LT_LT] = ACTIONS(2569), + [anon_sym_GT_GT] = ACTIONS(2569), + [anon_sym___extension__] = ACTIONS(2569), + [anon_sym___attribute__] = ACTIONS(2569), + [anon_sym___attribute] = ACTIONS(2569), + [anon_sym_LBRACE] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2569), + [anon_sym_unsigned] = ACTIONS(2569), + [anon_sym_long] = ACTIONS(2569), + [anon_sym_short] = ACTIONS(2569), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_EQ] = ACTIONS(2569), + [anon_sym_const] = ACTIONS(2569), + [anon_sym_constexpr] = ACTIONS(2569), + [anon_sym_volatile] = ACTIONS(2569), + [anon_sym_restrict] = ACTIONS(2569), + [anon_sym___restrict__] = ACTIONS(2569), + [anon_sym__Atomic] = ACTIONS(2569), + [anon_sym__Noreturn] = ACTIONS(2569), + [anon_sym_noreturn] = ACTIONS(2569), + [anon_sym__Nonnull] = ACTIONS(2569), + [anon_sym_mutable] = ACTIONS(2569), + [anon_sym_constinit] = ACTIONS(2569), + [anon_sym_consteval] = ACTIONS(2569), + [anon_sym_alignas] = ACTIONS(2569), + [anon_sym__Alignas] = ACTIONS(2569), + [sym_primitive_type] = ACTIONS(2569), + [anon_sym_QMARK] = ACTIONS(2559), + [anon_sym_STAR_EQ] = ACTIONS(2559), + [anon_sym_SLASH_EQ] = ACTIONS(2559), + [anon_sym_PERCENT_EQ] = ACTIONS(2559), + [anon_sym_PLUS_EQ] = ACTIONS(2559), + [anon_sym_DASH_EQ] = ACTIONS(2559), + [anon_sym_LT_LT_EQ] = ACTIONS(2559), + [anon_sym_GT_GT_EQ] = ACTIONS(2559), + [anon_sym_AMP_EQ] = ACTIONS(2559), + [anon_sym_CARET_EQ] = ACTIONS(2559), + [anon_sym_PIPE_EQ] = ACTIONS(2559), + [anon_sym_LT_EQ_GT] = ACTIONS(2559), + [anon_sym_or] = ACTIONS(2569), + [anon_sym_and] = ACTIONS(2569), + [anon_sym_bitor] = ACTIONS(2569), + [anon_sym_xor] = ACTIONS(2569), + [anon_sym_bitand] = ACTIONS(2569), + [anon_sym_not_eq] = ACTIONS(2569), + [anon_sym_DASH_DASH] = ACTIONS(2559), + [anon_sym_PLUS_PLUS] = ACTIONS(2559), + [anon_sym_DOT] = ACTIONS(2569), + [anon_sym_DOT_STAR] = ACTIONS(2559), + [anon_sym_DASH_GT] = ACTIONS(2569), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2569), + [anon_sym_decltype] = ACTIONS(2569), + [anon_sym_DASH_GT_STAR] = ACTIONS(2559), + }, + [1712] = { + [sym_identifier] = ACTIONS(5088), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5090), + [anon_sym_COMMA] = ACTIONS(5090), + [anon_sym_RPAREN] = ACTIONS(5090), + [aux_sym_preproc_if_token2] = ACTIONS(5090), + [aux_sym_preproc_else_token1] = ACTIONS(5090), + [aux_sym_preproc_elif_token1] = ACTIONS(5088), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5090), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5090), + [anon_sym_LPAREN2] = ACTIONS(5090), + [anon_sym_DASH] = ACTIONS(5088), + [anon_sym_PLUS] = ACTIONS(5088), + [anon_sym_STAR] = ACTIONS(5090), + [anon_sym_SLASH] = ACTIONS(5088), + [anon_sym_PERCENT] = ACTIONS(5090), + [anon_sym_PIPE_PIPE] = ACTIONS(5090), + [anon_sym_AMP_AMP] = ACTIONS(5090), + [anon_sym_PIPE] = ACTIONS(5088), + [anon_sym_CARET] = ACTIONS(5090), + [anon_sym_AMP] = ACTIONS(5088), + [anon_sym_EQ_EQ] = ACTIONS(5090), + [anon_sym_BANG_EQ] = ACTIONS(5090), + [anon_sym_GT] = ACTIONS(5088), + [anon_sym_GT_EQ] = ACTIONS(5090), + [anon_sym_LT_EQ] = ACTIONS(5088), + [anon_sym_LT] = ACTIONS(5088), + [anon_sym_LT_LT] = ACTIONS(5090), + [anon_sym_GT_GT] = ACTIONS(5090), + [anon_sym_SEMI] = ACTIONS(5090), + [anon_sym___extension__] = ACTIONS(5088), + [anon_sym___attribute__] = ACTIONS(5088), + [anon_sym___attribute] = ACTIONS(5088), + [anon_sym_COLON] = ACTIONS(5090), + [anon_sym_LBRACE] = ACTIONS(5090), + [anon_sym_RBRACE] = ACTIONS(5090), + [anon_sym_signed] = ACTIONS(5088), + [anon_sym_unsigned] = ACTIONS(5088), + [anon_sym_long] = ACTIONS(5088), + [anon_sym_short] = ACTIONS(5088), + [anon_sym_LBRACK] = ACTIONS(5090), + [anon_sym_RBRACK] = ACTIONS(5090), + [anon_sym_const] = ACTIONS(5088), + [anon_sym_constexpr] = ACTIONS(5088), + [anon_sym_volatile] = ACTIONS(5088), + [anon_sym_restrict] = ACTIONS(5088), + [anon_sym___restrict__] = ACTIONS(5088), + [anon_sym__Atomic] = ACTIONS(5088), + [anon_sym__Noreturn] = ACTIONS(5088), + [anon_sym_noreturn] = ACTIONS(5088), + [anon_sym__Nonnull] = ACTIONS(5088), + [anon_sym_mutable] = ACTIONS(5088), + [anon_sym_constinit] = ACTIONS(5088), + [anon_sym_consteval] = ACTIONS(5088), + [anon_sym_alignas] = ACTIONS(5088), + [anon_sym__Alignas] = ACTIONS(5088), + [sym_primitive_type] = ACTIONS(5088), + [anon_sym_QMARK] = ACTIONS(5090), + [anon_sym_LT_EQ_GT] = ACTIONS(5090), + [anon_sym_or] = ACTIONS(5088), + [anon_sym_and] = ACTIONS(5088), + [anon_sym_bitor] = ACTIONS(5088), + [anon_sym_xor] = ACTIONS(5088), + [anon_sym_bitand] = ACTIONS(5088), + [anon_sym_not_eq] = ACTIONS(5088), + [anon_sym_DASH_DASH] = ACTIONS(5090), + [anon_sym_PLUS_PLUS] = ACTIONS(5090), + [anon_sym_DOT] = ACTIONS(5088), + [anon_sym_DOT_STAR] = ACTIONS(5090), + [anon_sym_DASH_GT] = ACTIONS(5090), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5088), + [anon_sym_decltype] = ACTIONS(5088), + [anon_sym_final] = ACTIONS(5088), + [anon_sym_override] = ACTIONS(5088), + [anon_sym_requires] = ACTIONS(5088), + }, + [1713] = { + [sym_catch_clause] = STATE(1713), + [aux_sym_constructor_try_statement_repeat1] = STATE(1713), + [sym_identifier] = ACTIONS(2476), + [aux_sym_preproc_def_token1] = ACTIONS(2476), + [aux_sym_preproc_if_token1] = ACTIONS(2476), + [aux_sym_preproc_if_token2] = ACTIONS(2476), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2476), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2476), + [aux_sym_preproc_else_token1] = ACTIONS(2476), + [aux_sym_preproc_elif_token1] = ACTIONS(2476), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2476), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2476), + [sym_preproc_directive] = ACTIONS(2476), + [anon_sym_LPAREN2] = ACTIONS(2478), + [anon_sym_TILDE] = ACTIONS(2478), + [anon_sym_STAR] = ACTIONS(2478), + [anon_sym_AMP_AMP] = ACTIONS(2478), + [anon_sym_AMP] = ACTIONS(2476), + [anon_sym_SEMI] = ACTIONS(2478), + [anon_sym___extension__] = ACTIONS(2476), + [anon_sym_typedef] = ACTIONS(2476), + [anon_sym_virtual] = ACTIONS(2476), + [anon_sym_extern] = ACTIONS(2476), + [anon_sym___attribute__] = ACTIONS(2476), + [anon_sym___attribute] = ACTIONS(2476), + [anon_sym_using] = ACTIONS(2476), + [anon_sym_COLON_COLON] = ACTIONS(2478), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2478), + [anon_sym___declspec] = ACTIONS(2476), + [anon_sym___based] = ACTIONS(2476), + [anon_sym_signed] = ACTIONS(2476), + [anon_sym_unsigned] = ACTIONS(2476), + [anon_sym_long] = ACTIONS(2476), + [anon_sym_short] = ACTIONS(2476), + [anon_sym_LBRACK] = ACTIONS(2476), + [anon_sym_static] = ACTIONS(2476), + [anon_sym_register] = ACTIONS(2476), + [anon_sym_inline] = ACTIONS(2476), + [anon_sym___inline] = ACTIONS(2476), + [anon_sym___inline__] = ACTIONS(2476), + [anon_sym___forceinline] = ACTIONS(2476), + [anon_sym_thread_local] = ACTIONS(2476), + [anon_sym___thread] = ACTIONS(2476), + [anon_sym_const] = ACTIONS(2476), + [anon_sym_constexpr] = ACTIONS(2476), + [anon_sym_volatile] = ACTIONS(2476), + [anon_sym_restrict] = ACTIONS(2476), + [anon_sym___restrict__] = ACTIONS(2476), + [anon_sym__Atomic] = ACTIONS(2476), + [anon_sym__Noreturn] = ACTIONS(2476), + [anon_sym_noreturn] = ACTIONS(2476), + [anon_sym__Nonnull] = ACTIONS(2476), + [anon_sym_mutable] = ACTIONS(2476), + [anon_sym_constinit] = ACTIONS(2476), + [anon_sym_consteval] = ACTIONS(2476), + [anon_sym_alignas] = ACTIONS(2476), + [anon_sym__Alignas] = ACTIONS(2476), + [sym_primitive_type] = ACTIONS(2476), + [anon_sym_enum] = ACTIONS(2476), + [anon_sym_class] = ACTIONS(2476), + [anon_sym_struct] = ACTIONS(2476), + [anon_sym_union] = ACTIONS(2476), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2476), + [anon_sym_decltype] = ACTIONS(2476), + [anon_sym_explicit] = ACTIONS(2476), + [anon_sym_typename] = ACTIONS(2476), + [anon_sym_private] = ACTIONS(2476), + [anon_sym_template] = ACTIONS(2476), + [anon_sym_operator] = ACTIONS(2476), + [anon_sym_friend] = ACTIONS(2476), + [anon_sym_public] = ACTIONS(2476), + [anon_sym_protected] = ACTIONS(2476), + [anon_sym_static_assert] = ACTIONS(2476), + [anon_sym_catch] = ACTIONS(5405), + }, + [1714] = { + [sym_string_literal] = STATE(1714), + [sym_raw_string_literal] = STATE(1714), + [aux_sym_concatenated_string_repeat1] = STATE(1714), + [sym_identifier] = ACTIONS(5408), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5411), + [anon_sym_COMMA] = ACTIONS(5411), + [anon_sym_RPAREN] = ACTIONS(5411), + [aux_sym_preproc_if_token2] = ACTIONS(5411), + [aux_sym_preproc_else_token1] = ACTIONS(5411), + [aux_sym_preproc_elif_token1] = ACTIONS(5413), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5411), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5411), + [anon_sym_LPAREN2] = ACTIONS(5411), + [anon_sym_DASH] = ACTIONS(5413), + [anon_sym_PLUS] = ACTIONS(5413), + [anon_sym_STAR] = ACTIONS(5413), + [anon_sym_SLASH] = ACTIONS(5413), + [anon_sym_PERCENT] = ACTIONS(5413), + [anon_sym_PIPE_PIPE] = ACTIONS(5411), + [anon_sym_AMP_AMP] = ACTIONS(5411), + [anon_sym_PIPE] = ACTIONS(5413), + [anon_sym_CARET] = ACTIONS(5413), + [anon_sym_AMP] = ACTIONS(5413), + [anon_sym_EQ_EQ] = ACTIONS(5411), + [anon_sym_BANG_EQ] = ACTIONS(5411), + [anon_sym_GT] = ACTIONS(5413), + [anon_sym_GT_EQ] = ACTIONS(5411), + [anon_sym_LT_EQ] = ACTIONS(5413), + [anon_sym_LT] = ACTIONS(5413), + [anon_sym_LT_LT] = ACTIONS(5413), + [anon_sym_GT_GT] = ACTIONS(5413), + [anon_sym_SEMI] = ACTIONS(5411), + [anon_sym_COLON] = ACTIONS(5411), + [anon_sym_RBRACE] = ACTIONS(5411), + [anon_sym_LBRACK] = ACTIONS(5411), + [anon_sym_RBRACK] = ACTIONS(5411), + [anon_sym_EQ] = ACTIONS(5413), + [anon_sym_QMARK] = ACTIONS(5411), + [anon_sym_STAR_EQ] = ACTIONS(5411), + [anon_sym_SLASH_EQ] = ACTIONS(5411), + [anon_sym_PERCENT_EQ] = ACTIONS(5411), + [anon_sym_PLUS_EQ] = ACTIONS(5411), + [anon_sym_DASH_EQ] = ACTIONS(5411), + [anon_sym_LT_LT_EQ] = ACTIONS(5411), + [anon_sym_GT_GT_EQ] = ACTIONS(5411), + [anon_sym_AMP_EQ] = ACTIONS(5411), + [anon_sym_CARET_EQ] = ACTIONS(5411), + [anon_sym_PIPE_EQ] = ACTIONS(5411), + [anon_sym_and_eq] = ACTIONS(5413), + [anon_sym_or_eq] = ACTIONS(5413), + [anon_sym_xor_eq] = ACTIONS(5413), + [anon_sym_LT_EQ_GT] = ACTIONS(5411), + [anon_sym_or] = ACTIONS(5413), + [anon_sym_and] = ACTIONS(5413), + [anon_sym_bitor] = ACTIONS(5413), + [anon_sym_xor] = ACTIONS(5413), + [anon_sym_bitand] = ACTIONS(5413), + [anon_sym_not_eq] = ACTIONS(5413), + [anon_sym_DASH_DASH] = ACTIONS(5411), + [anon_sym_PLUS_PLUS] = ACTIONS(5411), + [anon_sym_DOT] = ACTIONS(5413), + [anon_sym_DOT_STAR] = ACTIONS(5411), + [anon_sym_DASH_GT] = ACTIONS(5411), + [anon_sym_L_DQUOTE] = ACTIONS(5415), + [anon_sym_u_DQUOTE] = ACTIONS(5415), + [anon_sym_U_DQUOTE] = ACTIONS(5415), + [anon_sym_u8_DQUOTE] = ACTIONS(5415), + [anon_sym_DQUOTE] = ACTIONS(5415), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5418), + [anon_sym_LR_DQUOTE] = ACTIONS(5418), + [anon_sym_uR_DQUOTE] = ACTIONS(5418), + [anon_sym_UR_DQUOTE] = ACTIONS(5418), + [anon_sym_u8R_DQUOTE] = ACTIONS(5418), + [sym_literal_suffix] = ACTIONS(5413), + }, + [1715] = { + [sym_identifier] = ACTIONS(5421), + [anon_sym_LPAREN2] = ACTIONS(5423), + [anon_sym_BANG] = ACTIONS(5423), + [anon_sym_TILDE] = ACTIONS(5423), + [anon_sym_DASH] = ACTIONS(5421), + [anon_sym_PLUS] = ACTIONS(5421), + [anon_sym_STAR] = ACTIONS(5423), + [anon_sym_AMP] = ACTIONS(5423), + [anon_sym_SEMI] = ACTIONS(5423), + [anon_sym___extension__] = ACTIONS(5421), + [anon_sym_COLON_COLON] = ACTIONS(5423), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5423), + [anon_sym_LBRACE] = ACTIONS(5423), + [anon_sym_LBRACK] = ACTIONS(5421), + [sym_primitive_type] = ACTIONS(5421), + [anon_sym_if] = ACTIONS(5421), + [anon_sym_switch] = ACTIONS(5421), + [anon_sym_case] = ACTIONS(5421), + [anon_sym_default] = ACTIONS(5421), + [anon_sym_while] = ACTIONS(5421), + [anon_sym_do] = ACTIONS(5421), + [anon_sym_for] = ACTIONS(5421), + [anon_sym_return] = ACTIONS(5421), + [anon_sym_break] = ACTIONS(5421), + [anon_sym_continue] = ACTIONS(5421), + [anon_sym_goto] = ACTIONS(5421), + [anon_sym___try] = ACTIONS(5421), + [anon_sym___leave] = ACTIONS(5421), + [anon_sym_not] = ACTIONS(5421), + [anon_sym_compl] = ACTIONS(5421), + [anon_sym_DASH_DASH] = ACTIONS(5423), + [anon_sym_PLUS_PLUS] = ACTIONS(5423), + [anon_sym_sizeof] = ACTIONS(5421), + [anon_sym___alignof__] = ACTIONS(5421), + [anon_sym___alignof] = ACTIONS(5421), + [anon_sym__alignof] = ACTIONS(5421), + [anon_sym_alignof] = ACTIONS(5421), + [anon_sym__Alignof] = ACTIONS(5421), + [anon_sym_offsetof] = ACTIONS(5421), + [anon_sym__Generic] = ACTIONS(5421), + [anon_sym_asm] = ACTIONS(5421), + [anon_sym___asm__] = ACTIONS(5421), + [anon_sym___asm] = ACTIONS(5421), + [sym_number_literal] = ACTIONS(5423), + [anon_sym_L_SQUOTE] = ACTIONS(5423), + [anon_sym_u_SQUOTE] = ACTIONS(5423), + [anon_sym_U_SQUOTE] = ACTIONS(5423), + [anon_sym_u8_SQUOTE] = ACTIONS(5423), + [anon_sym_SQUOTE] = ACTIONS(5423), + [anon_sym_L_DQUOTE] = ACTIONS(5423), + [anon_sym_u_DQUOTE] = ACTIONS(5423), + [anon_sym_U_DQUOTE] = ACTIONS(5423), + [anon_sym_u8_DQUOTE] = ACTIONS(5423), + [anon_sym_DQUOTE] = ACTIONS(5423), + [sym_true] = ACTIONS(5421), + [sym_false] = ACTIONS(5421), + [anon_sym_NULL] = ACTIONS(5421), + [anon_sym_nullptr] = ACTIONS(5421), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(5421), + [anon_sym_template] = ACTIONS(5421), + [anon_sym_try] = ACTIONS(5421), + [anon_sym_delete] = ACTIONS(5421), + [anon_sym_throw] = ACTIONS(5421), + [anon_sym_co_return] = ACTIONS(5421), + [anon_sym_co_yield] = ACTIONS(5421), + [anon_sym_R_DQUOTE] = ACTIONS(5423), + [anon_sym_LR_DQUOTE] = ACTIONS(5423), + [anon_sym_uR_DQUOTE] = ACTIONS(5423), + [anon_sym_UR_DQUOTE] = ACTIONS(5423), + [anon_sym_u8R_DQUOTE] = ACTIONS(5423), + [anon_sym_co_await] = ACTIONS(5421), + [anon_sym_new] = ACTIONS(5421), + [anon_sym_requires] = ACTIONS(5421), + [sym_this] = ACTIONS(5421), + }, + [1716] = { + [sym_type_qualifier] = STATE(1716), + [sym_alignas_qualifier] = STATE(1866), + [aux_sym_array_declarator_repeat1] = STATE(1716), + [sym_identifier] = ACTIONS(5425), + [anon_sym_LPAREN2] = ACTIONS(5427), + [anon_sym_BANG] = ACTIONS(5427), + [anon_sym_TILDE] = ACTIONS(5427), + [anon_sym_DASH] = ACTIONS(5425), + [anon_sym_PLUS] = ACTIONS(5425), + [anon_sym_STAR] = ACTIONS(5427), + [anon_sym_AMP] = ACTIONS(5427), + [anon_sym___extension__] = ACTIONS(5429), + [anon_sym_COLON_COLON] = ACTIONS(5427), + [anon_sym_LBRACK] = ACTIONS(5427), + [anon_sym_static] = ACTIONS(5432), + [anon_sym_RBRACK] = ACTIONS(5427), + [anon_sym_const] = ACTIONS(5429), + [anon_sym_constexpr] = ACTIONS(5429), + [anon_sym_volatile] = ACTIONS(5429), + [anon_sym_restrict] = ACTIONS(5429), + [anon_sym___restrict__] = ACTIONS(5429), + [anon_sym__Atomic] = ACTIONS(5429), + [anon_sym__Noreturn] = ACTIONS(5429), + [anon_sym_noreturn] = ACTIONS(5429), + [anon_sym__Nonnull] = ACTIONS(5429), + [anon_sym_mutable] = ACTIONS(5429), + [anon_sym_constinit] = ACTIONS(5429), + [anon_sym_consteval] = ACTIONS(5429), + [anon_sym_alignas] = ACTIONS(5435), + [anon_sym__Alignas] = ACTIONS(5435), + [sym_primitive_type] = ACTIONS(5425), + [anon_sym_not] = ACTIONS(5425), + [anon_sym_compl] = ACTIONS(5425), + [anon_sym_DASH_DASH] = ACTIONS(5427), + [anon_sym_PLUS_PLUS] = ACTIONS(5427), + [anon_sym_sizeof] = ACTIONS(5425), + [anon_sym___alignof__] = ACTIONS(5425), + [anon_sym___alignof] = ACTIONS(5425), + [anon_sym__alignof] = ACTIONS(5425), + [anon_sym_alignof] = ACTIONS(5425), + [anon_sym__Alignof] = ACTIONS(5425), + [anon_sym_offsetof] = ACTIONS(5425), + [anon_sym__Generic] = ACTIONS(5425), + [anon_sym_asm] = ACTIONS(5425), + [anon_sym___asm__] = ACTIONS(5425), + [anon_sym___asm] = ACTIONS(5425), + [sym_number_literal] = ACTIONS(5427), + [anon_sym_L_SQUOTE] = ACTIONS(5427), + [anon_sym_u_SQUOTE] = ACTIONS(5427), + [anon_sym_U_SQUOTE] = ACTIONS(5427), + [anon_sym_u8_SQUOTE] = ACTIONS(5427), + [anon_sym_SQUOTE] = ACTIONS(5427), + [anon_sym_L_DQUOTE] = ACTIONS(5427), + [anon_sym_u_DQUOTE] = ACTIONS(5427), + [anon_sym_U_DQUOTE] = ACTIONS(5427), + [anon_sym_u8_DQUOTE] = ACTIONS(5427), + [anon_sym_DQUOTE] = ACTIONS(5427), + [sym_true] = ACTIONS(5425), + [sym_false] = ACTIONS(5425), + [anon_sym_NULL] = ACTIONS(5425), + [anon_sym_nullptr] = ACTIONS(5425), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(5425), + [anon_sym_template] = ACTIONS(5425), + [anon_sym_delete] = ACTIONS(5425), + [anon_sym_R_DQUOTE] = ACTIONS(5427), + [anon_sym_LR_DQUOTE] = ACTIONS(5427), + [anon_sym_uR_DQUOTE] = ACTIONS(5427), + [anon_sym_UR_DQUOTE] = ACTIONS(5427), + [anon_sym_u8R_DQUOTE] = ACTIONS(5427), + [anon_sym_co_await] = ACTIONS(5425), + [anon_sym_new] = ACTIONS(5425), + [anon_sym_requires] = ACTIONS(5425), + [sym_this] = ACTIONS(5425), + }, + [1717] = { + [sym__declaration_modifiers] = STATE(2121), + [sym__declaration_specifiers] = STATE(3995), + [sym_attribute_specifier] = STATE(2121), + [sym_attribute_declaration] = STATE(2121), + [sym_ms_declspec_modifier] = STATE(2121), + [sym_storage_class_specifier] = STATE(2121), + [sym_type_qualifier] = STATE(2121), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_parameter_declaration] = STATE(7550), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym_dependent_type] = STATE(2558), + [sym_optional_parameter_declaration] = STATE(7550), + [sym_variadic_parameter_declaration] = STATE(7550), + [sym_template_type] = STATE(2439), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(6746), + [sym_qualified_type_identifier] = STATE(3138), + [aux_sym__declaration_specifiers_repeat1] = STATE(2121), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(5018), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5438), + [anon_sym_RPAREN] = ACTIONS(5440), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1446), + [anon_sym_virtual] = ACTIONS(1870), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5220), + [anon_sym_COLON_COLON] = ACTIONS(5028), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), - [anon_sym___cdecl] = ACTIONS(55), - [anon_sym___clrcall] = ACTIONS(55), - [anon_sym___stdcall] = ACTIONS(55), - [anon_sym___fastcall] = ACTIONS(55), - [anon_sym___thiscall] = ACTIONS(55), - [anon_sym___vectorcall] = ACTIONS(55), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -242898,61 +249922,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2999), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(5323), - [anon_sym_struct] = ACTIONS(5325), - [anon_sym_union] = ACTIONS(5327), + [sym_primitive_type] = ACTIONS(3019), + [anon_sym_enum] = ACTIONS(1874), + [anon_sym_class] = ACTIONS(1876), + [anon_sym_struct] = ACTIONS(1878), + [anon_sym_union] = ACTIONS(1880), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_typename] = ACTIONS(1882), + [anon_sym_template] = ACTIONS(1268), }, - [1647] = { - [sym_function_definition] = STATE(584), - [sym_declaration] = STATE(584), - [sym__declaration_modifiers] = STATE(2136), - [sym__declaration_specifiers] = STATE(4748), - [sym_attribute_specifier] = STATE(2136), - [sym_attribute_declaration] = STATE(2136), - [sym_ms_declspec_modifier] = STATE(2136), - [sym_ms_call_modifier] = STATE(1925), - [sym_storage_class_specifier] = STATE(2136), - [sym_type_qualifier] = STATE(2136), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(8377), - [sym_dependent_type] = STATE(2523), - [sym_template_type] = STATE(3706), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(6627), - [sym_qualified_type_identifier] = STATE(3798), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [sym_identifier] = ACTIONS(5236), + [1718] = { + [sym__declaration_modifiers] = STATE(2121), + [sym__declaration_specifiers] = STATE(3995), + [sym_attribute_specifier] = STATE(2121), + [sym_attribute_declaration] = STATE(2121), + [sym_ms_declspec_modifier] = STATE(2121), + [sym_storage_class_specifier] = STATE(2121), + [sym_type_qualifier] = STATE(2121), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_parameter_declaration] = STATE(7297), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym_dependent_type] = STATE(2558), + [sym_optional_parameter_declaration] = STATE(7297), + [sym_variadic_parameter_declaration] = STATE(7297), + [sym_template_type] = STATE(2439), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(6746), + [sym_qualified_type_identifier] = STATE(3138), + [aux_sym__declaration_specifiers_repeat1] = STATE(2121), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(5018), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1866), + [anon_sym_RPAREN] = ACTIONS(4308), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1446), + [anon_sym_virtual] = ACTIONS(1870), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5220), + [anon_sym_COLON_COLON] = ACTIONS(5028), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), - [anon_sym___cdecl] = ACTIONS(55), - [anon_sym___clrcall] = ACTIONS(55), - [anon_sym___stdcall] = ACTIONS(55), - [anon_sym___fastcall] = ACTIONS(55), - [anon_sym___thiscall] = ACTIONS(55), - [anon_sym___vectorcall] = ACTIONS(55), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -242979,61 +249998,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2999), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(5329), - [anon_sym_struct] = ACTIONS(5331), - [anon_sym_union] = ACTIONS(5333), + [sym_primitive_type] = ACTIONS(3019), + [anon_sym_enum] = ACTIONS(1874), + [anon_sym_class] = ACTIONS(1876), + [anon_sym_struct] = ACTIONS(1878), + [anon_sym_union] = ACTIONS(1880), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_typename] = ACTIONS(1882), + [anon_sym_template] = ACTIONS(1268), }, - [1648] = { - [sym_function_definition] = STATE(775), - [sym_declaration] = STATE(775), - [sym__declaration_modifiers] = STATE(2136), - [sym__declaration_specifiers] = STATE(4599), - [sym_attribute_specifier] = STATE(2136), - [sym_attribute_declaration] = STATE(2136), - [sym_ms_declspec_modifier] = STATE(2136), - [sym_ms_call_modifier] = STATE(1924), - [sym_storage_class_specifier] = STATE(2136), - [sym_type_qualifier] = STATE(2136), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(8475), - [sym_dependent_type] = STATE(2523), - [sym_template_type] = STATE(3706), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(6627), - [sym_qualified_type_identifier] = STATE(3798), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [sym_identifier] = ACTIONS(5236), + [1719] = { + [sym__declaration_modifiers] = STATE(2121), + [sym__declaration_specifiers] = STATE(3995), + [sym_attribute_specifier] = STATE(2121), + [sym_attribute_declaration] = STATE(2121), + [sym_ms_declspec_modifier] = STATE(2121), + [sym_storage_class_specifier] = STATE(2121), + [sym_type_qualifier] = STATE(2121), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_parameter_declaration] = STATE(7306), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym_dependent_type] = STATE(2558), + [sym_optional_parameter_declaration] = STATE(7306), + [sym_variadic_parameter_declaration] = STATE(7306), + [sym_template_type] = STATE(2439), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(6746), + [sym_qualified_type_identifier] = STATE(3138), + [aux_sym__declaration_specifiers_repeat1] = STATE(2121), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(5018), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5442), + [anon_sym_RPAREN] = ACTIONS(5444), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1446), + [anon_sym_virtual] = ACTIONS(1870), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5220), + [anon_sym_COLON_COLON] = ACTIONS(5028), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), - [anon_sym___cdecl] = ACTIONS(55), - [anon_sym___clrcall] = ACTIONS(55), - [anon_sym___stdcall] = ACTIONS(55), - [anon_sym___fastcall] = ACTIONS(55), - [anon_sym___thiscall] = ACTIONS(55), - [anon_sym___vectorcall] = ACTIONS(55), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -243060,142 +250074,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2999), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(5335), - [anon_sym_struct] = ACTIONS(5337), - [anon_sym_union] = ACTIONS(5339), + [sym_primitive_type] = ACTIONS(3019), + [anon_sym_enum] = ACTIONS(1874), + [anon_sym_class] = ACTIONS(1876), + [anon_sym_struct] = ACTIONS(1878), + [anon_sym_union] = ACTIONS(1880), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1452), - }, - [1649] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1634), - [sym_identifier] = ACTIONS(5070), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5156), - [anon_sym_COMMA] = ACTIONS(5156), - [anon_sym_RPAREN] = ACTIONS(5156), - [anon_sym_LPAREN2] = ACTIONS(5156), - [anon_sym_DASH] = ACTIONS(5159), - [anon_sym_PLUS] = ACTIONS(5159), - [anon_sym_STAR] = ACTIONS(5159), - [anon_sym_SLASH] = ACTIONS(5159), - [anon_sym_PERCENT] = ACTIONS(5159), - [anon_sym_PIPE_PIPE] = ACTIONS(5156), - [anon_sym_AMP_AMP] = ACTIONS(5156), - [anon_sym_PIPE] = ACTIONS(5159), - [anon_sym_CARET] = ACTIONS(5159), - [anon_sym_AMP] = ACTIONS(5159), - [anon_sym_EQ_EQ] = ACTIONS(5156), - [anon_sym_BANG_EQ] = ACTIONS(5156), - [anon_sym_GT] = ACTIONS(5159), - [anon_sym_GT_EQ] = ACTIONS(5156), - [anon_sym_LT_EQ] = ACTIONS(5159), - [anon_sym_LT] = ACTIONS(5159), - [anon_sym_LT_LT] = ACTIONS(5159), - [anon_sym_GT_GT] = ACTIONS(5159), - [anon_sym___extension__] = ACTIONS(5070), - [anon_sym___attribute__] = ACTIONS(5159), - [anon_sym___attribute] = ACTIONS(5159), - [anon_sym_LBRACE] = ACTIONS(5156), - [anon_sym_signed] = ACTIONS(5250), - [anon_sym_unsigned] = ACTIONS(5250), - [anon_sym_long] = ACTIONS(5250), - [anon_sym_short] = ACTIONS(5250), - [anon_sym_LBRACK] = ACTIONS(5156), - [anon_sym_EQ] = ACTIONS(5159), - [anon_sym_const] = ACTIONS(5070), - [anon_sym_constexpr] = ACTIONS(5070), - [anon_sym_volatile] = ACTIONS(5070), - [anon_sym_restrict] = ACTIONS(5070), - [anon_sym___restrict__] = ACTIONS(5070), - [anon_sym__Atomic] = ACTIONS(5070), - [anon_sym__Noreturn] = ACTIONS(5070), - [anon_sym_noreturn] = ACTIONS(5070), - [anon_sym__Nonnull] = ACTIONS(5070), - [anon_sym_mutable] = ACTIONS(5070), - [anon_sym_constinit] = ACTIONS(5070), - [anon_sym_consteval] = ACTIONS(5070), - [anon_sym_alignas] = ACTIONS(5070), - [anon_sym__Alignas] = ACTIONS(5070), - [sym_primitive_type] = ACTIONS(5070), - [anon_sym_QMARK] = ACTIONS(5156), - [anon_sym_STAR_EQ] = ACTIONS(5156), - [anon_sym_SLASH_EQ] = ACTIONS(5156), - [anon_sym_PERCENT_EQ] = ACTIONS(5156), - [anon_sym_PLUS_EQ] = ACTIONS(5156), - [anon_sym_DASH_EQ] = ACTIONS(5156), - [anon_sym_LT_LT_EQ] = ACTIONS(5156), - [anon_sym_GT_GT_EQ] = ACTIONS(5156), - [anon_sym_AMP_EQ] = ACTIONS(5156), - [anon_sym_CARET_EQ] = ACTIONS(5156), - [anon_sym_PIPE_EQ] = ACTIONS(5156), - [anon_sym_and_eq] = ACTIONS(5159), - [anon_sym_or_eq] = ACTIONS(5159), - [anon_sym_xor_eq] = ACTIONS(5159), - [anon_sym_LT_EQ_GT] = ACTIONS(5156), - [anon_sym_or] = ACTIONS(5159), - [anon_sym_and] = ACTIONS(5159), - [anon_sym_bitor] = ACTIONS(5159), - [anon_sym_xor] = ACTIONS(5159), - [anon_sym_bitand] = ACTIONS(5159), - [anon_sym_not_eq] = ACTIONS(5159), - [anon_sym_DASH_DASH] = ACTIONS(5156), - [anon_sym_PLUS_PLUS] = ACTIONS(5156), - [anon_sym_DOT] = ACTIONS(5159), - [anon_sym_DOT_STAR] = ACTIONS(5156), - [anon_sym_DASH_GT] = ACTIONS(5159), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5159), - [anon_sym_decltype] = ACTIONS(5159), - [anon_sym_DASH_GT_STAR] = ACTIONS(5156), + [anon_sym_typename] = ACTIONS(1882), + [anon_sym_template] = ACTIONS(1268), }, - [1650] = { - [sym_function_definition] = STATE(2022), - [sym_declaration] = STATE(2022), - [sym__declaration_modifiers] = STATE(2136), - [sym__declaration_specifiers] = STATE(4668), - [sym_attribute_specifier] = STATE(2136), - [sym_attribute_declaration] = STATE(2136), - [sym_ms_declspec_modifier] = STATE(2136), - [sym_ms_call_modifier] = STATE(1932), - [sym_storage_class_specifier] = STATE(2136), - [sym_type_qualifier] = STATE(2136), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym__class_name] = STATE(7976), - [sym_dependent_type] = STATE(2523), - [sym_template_type] = STATE(3706), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(6627), - [sym_qualified_type_identifier] = STATE(3798), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [sym_identifier] = ACTIONS(5236), + [1720] = { + [sym__declaration_modifiers] = STATE(2121), + [sym__declaration_specifiers] = STATE(3995), + [sym_attribute_specifier] = STATE(2121), + [sym_attribute_declaration] = STATE(2121), + [sym_ms_declspec_modifier] = STATE(2121), + [sym_storage_class_specifier] = STATE(2121), + [sym_type_qualifier] = STATE(2121), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_parameter_declaration] = STATE(7442), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym_dependent_type] = STATE(2558), + [sym_optional_parameter_declaration] = STATE(7442), + [sym_variadic_parameter_declaration] = STATE(7442), + [sym_template_type] = STATE(2439), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(6746), + [sym_qualified_type_identifier] = STATE(3138), + [aux_sym__declaration_specifiers_repeat1] = STATE(2121), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(5018), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5446), + [anon_sym_RPAREN] = ACTIONS(5448), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1446), + [anon_sym_virtual] = ACTIONS(1870), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5220), + [anon_sym_COLON_COLON] = ACTIONS(5028), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), - [anon_sym___cdecl] = ACTIONS(55), - [anon_sym___clrcall] = ACTIONS(55), - [anon_sym___stdcall] = ACTIONS(55), - [anon_sym___fastcall] = ACTIONS(55), - [anon_sym___thiscall] = ACTIONS(55), - [anon_sym___vectorcall] = ACTIONS(55), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -243222,852 +250150,503 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2999), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(5341), - [anon_sym_struct] = ACTIONS(5343), - [anon_sym_union] = ACTIONS(5345), + [sym_primitive_type] = ACTIONS(3019), + [anon_sym_enum] = ACTIONS(1874), + [anon_sym_class] = ACTIONS(1876), + [anon_sym_struct] = ACTIONS(1878), + [anon_sym_union] = ACTIONS(1880), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_typename] = ACTIONS(1882), + [anon_sym_template] = ACTIONS(1268), }, - [1651] = { - [sym_identifier] = ACTIONS(2573), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2563), - [anon_sym_COMMA] = ACTIONS(2563), - [anon_sym_RPAREN] = ACTIONS(2563), - [anon_sym_LPAREN2] = ACTIONS(2563), - [anon_sym_DASH] = ACTIONS(2573), - [anon_sym_PLUS] = ACTIONS(2573), - [anon_sym_STAR] = ACTIONS(2573), - [anon_sym_SLASH] = ACTIONS(2573), - [anon_sym_PERCENT] = ACTIONS(2573), - [anon_sym_PIPE_PIPE] = ACTIONS(2563), - [anon_sym_AMP_AMP] = ACTIONS(2563), - [anon_sym_PIPE] = ACTIONS(2573), - [anon_sym_CARET] = ACTIONS(2573), - [anon_sym_AMP] = ACTIONS(2573), - [anon_sym_EQ_EQ] = ACTIONS(2563), - [anon_sym_BANG_EQ] = ACTIONS(2563), - [anon_sym_GT] = ACTIONS(2573), - [anon_sym_GT_EQ] = ACTIONS(2563), - [anon_sym_LT_EQ] = ACTIONS(2573), - [anon_sym_LT] = ACTIONS(2573), - [anon_sym_LT_LT] = ACTIONS(2573), - [anon_sym_GT_GT] = ACTIONS(2573), - [anon_sym___extension__] = ACTIONS(2573), - [anon_sym___attribute__] = ACTIONS(2573), - [anon_sym___attribute] = ACTIONS(2573), - [anon_sym_LBRACE] = ACTIONS(2563), - [anon_sym_signed] = ACTIONS(2573), - [anon_sym_unsigned] = ACTIONS(2573), - [anon_sym_long] = ACTIONS(2573), - [anon_sym_short] = ACTIONS(2573), - [anon_sym_LBRACK] = ACTIONS(2563), - [anon_sym_EQ] = ACTIONS(2573), - [anon_sym_const] = ACTIONS(2573), - [anon_sym_constexpr] = ACTIONS(2573), - [anon_sym_volatile] = ACTIONS(2573), - [anon_sym_restrict] = ACTIONS(2573), - [anon_sym___restrict__] = ACTIONS(2573), - [anon_sym__Atomic] = ACTIONS(2573), - [anon_sym__Noreturn] = ACTIONS(2573), - [anon_sym_noreturn] = ACTIONS(2573), - [anon_sym__Nonnull] = ACTIONS(2573), - [anon_sym_mutable] = ACTIONS(2573), - [anon_sym_constinit] = ACTIONS(2573), - [anon_sym_consteval] = ACTIONS(2573), - [anon_sym_alignas] = ACTIONS(2573), - [anon_sym__Alignas] = ACTIONS(2573), - [sym_primitive_type] = ACTIONS(2573), - [anon_sym_QMARK] = ACTIONS(2563), - [anon_sym_STAR_EQ] = ACTIONS(2563), - [anon_sym_SLASH_EQ] = ACTIONS(2563), - [anon_sym_PERCENT_EQ] = ACTIONS(2563), - [anon_sym_PLUS_EQ] = ACTIONS(2563), - [anon_sym_DASH_EQ] = ACTIONS(2563), - [anon_sym_LT_LT_EQ] = ACTIONS(2563), - [anon_sym_GT_GT_EQ] = ACTIONS(2563), - [anon_sym_AMP_EQ] = ACTIONS(2563), - [anon_sym_CARET_EQ] = ACTIONS(2563), - [anon_sym_PIPE_EQ] = ACTIONS(2563), - [anon_sym_and_eq] = ACTIONS(2573), - [anon_sym_or_eq] = ACTIONS(2573), - [anon_sym_xor_eq] = ACTIONS(2573), - [anon_sym_LT_EQ_GT] = ACTIONS(2563), - [anon_sym_or] = ACTIONS(2573), - [anon_sym_and] = ACTIONS(2573), - [anon_sym_bitor] = ACTIONS(2573), - [anon_sym_xor] = ACTIONS(2573), - [anon_sym_bitand] = ACTIONS(2573), - [anon_sym_not_eq] = ACTIONS(2573), - [anon_sym_DASH_DASH] = ACTIONS(2563), - [anon_sym_PLUS_PLUS] = ACTIONS(2563), - [anon_sym_DOT] = ACTIONS(2573), - [anon_sym_DOT_STAR] = ACTIONS(2563), - [anon_sym_DASH_GT] = ACTIONS(2573), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2573), - [anon_sym_decltype] = ACTIONS(2573), - [anon_sym_DASH_GT_STAR] = ACTIONS(2563), + [1721] = { + [sym_template_argument_list] = STATE(1724), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4927), + [anon_sym_COMMA] = ACTIONS(4927), + [anon_sym_RPAREN] = ACTIONS(4929), + [anon_sym_LPAREN2] = ACTIONS(4929), + [anon_sym_DASH] = ACTIONS(4934), + [anon_sym_PLUS] = ACTIONS(4934), + [anon_sym_STAR] = ACTIONS(4936), + [anon_sym_SLASH] = ACTIONS(4934), + [anon_sym_PERCENT] = ACTIONS(4934), + [anon_sym_PIPE_PIPE] = ACTIONS(4927), + [anon_sym_AMP_AMP] = ACTIONS(4929), + [anon_sym_PIPE] = ACTIONS(4934), + [anon_sym_CARET] = ACTIONS(4934), + [anon_sym_AMP] = ACTIONS(4936), + [anon_sym_EQ_EQ] = ACTIONS(4927), + [anon_sym_BANG_EQ] = ACTIONS(4927), + [anon_sym_GT] = ACTIONS(4934), + [anon_sym_GT_EQ] = ACTIONS(4927), + [anon_sym_LT_EQ] = ACTIONS(4934), + [anon_sym_LT] = ACTIONS(5038), + [anon_sym_LT_LT] = ACTIONS(4934), + [anon_sym_GT_GT] = ACTIONS(4934), + [anon_sym___extension__] = ACTIONS(4932), + [anon_sym_COLON_COLON] = ACTIONS(4187), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4927), + [anon_sym_LBRACE] = ACTIONS(4932), + [anon_sym_LBRACK] = ACTIONS(4936), + [anon_sym_EQ] = ACTIONS(4934), + [anon_sym_const] = ACTIONS(4925), + [anon_sym_constexpr] = ACTIONS(4932), + [anon_sym_volatile] = ACTIONS(4932), + [anon_sym_restrict] = ACTIONS(4932), + [anon_sym___restrict__] = ACTIONS(4932), + [anon_sym__Atomic] = ACTIONS(4932), + [anon_sym__Noreturn] = ACTIONS(4932), + [anon_sym_noreturn] = ACTIONS(4932), + [anon_sym__Nonnull] = ACTIONS(4932), + [anon_sym_mutable] = ACTIONS(4932), + [anon_sym_constinit] = ACTIONS(4932), + [anon_sym_consteval] = ACTIONS(4932), + [anon_sym_alignas] = ACTIONS(4932), + [anon_sym__Alignas] = ACTIONS(4932), + [anon_sym_QMARK] = ACTIONS(4927), + [anon_sym_STAR_EQ] = ACTIONS(4927), + [anon_sym_SLASH_EQ] = ACTIONS(4927), + [anon_sym_PERCENT_EQ] = ACTIONS(4927), + [anon_sym_PLUS_EQ] = ACTIONS(4927), + [anon_sym_DASH_EQ] = ACTIONS(4927), + [anon_sym_LT_LT_EQ] = ACTIONS(4927), + [anon_sym_GT_GT_EQ] = ACTIONS(4927), + [anon_sym_AMP_EQ] = ACTIONS(4927), + [anon_sym_CARET_EQ] = ACTIONS(4927), + [anon_sym_PIPE_EQ] = ACTIONS(4927), + [anon_sym_and_eq] = ACTIONS(4927), + [anon_sym_or_eq] = ACTIONS(4927), + [anon_sym_xor_eq] = ACTIONS(4927), + [anon_sym_LT_EQ_GT] = ACTIONS(4927), + [anon_sym_or] = ACTIONS(4934), + [anon_sym_and] = ACTIONS(4934), + [anon_sym_bitor] = ACTIONS(4927), + [anon_sym_xor] = ACTIONS(4934), + [anon_sym_bitand] = ACTIONS(4927), + [anon_sym_not_eq] = ACTIONS(4927), + [anon_sym_DASH_DASH] = ACTIONS(4927), + [anon_sym_PLUS_PLUS] = ACTIONS(4927), + [anon_sym_DOT] = ACTIONS(4934), + [anon_sym_DOT_STAR] = ACTIONS(4927), + [anon_sym_DASH_GT] = ACTIONS(4934), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4932), + [anon_sym_decltype] = ACTIONS(4932), + [anon_sym_DASH_GT_STAR] = ACTIONS(4927), }, - [1652] = { - [sym_identifier] = ACTIONS(5080), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5082), - [anon_sym_COMMA] = ACTIONS(5082), - [anon_sym_RPAREN] = ACTIONS(5082), - [anon_sym_LPAREN2] = ACTIONS(5082), - [anon_sym_DASH] = ACTIONS(5080), - [anon_sym_PLUS] = ACTIONS(5080), - [anon_sym_STAR] = ACTIONS(5080), - [anon_sym_SLASH] = ACTIONS(5080), - [anon_sym_PERCENT] = ACTIONS(5080), - [anon_sym_PIPE_PIPE] = ACTIONS(5082), - [anon_sym_AMP_AMP] = ACTIONS(5082), - [anon_sym_PIPE] = ACTIONS(5080), - [anon_sym_CARET] = ACTIONS(5080), - [anon_sym_AMP] = ACTIONS(5080), - [anon_sym_EQ_EQ] = ACTIONS(5082), - [anon_sym_BANG_EQ] = ACTIONS(5082), - [anon_sym_GT] = ACTIONS(5080), - [anon_sym_GT_EQ] = ACTIONS(5082), - [anon_sym_LT_EQ] = ACTIONS(5080), - [anon_sym_LT] = ACTIONS(5080), - [anon_sym_LT_LT] = ACTIONS(5080), - [anon_sym_GT_GT] = ACTIONS(5080), - [anon_sym___extension__] = ACTIONS(5080), - [anon_sym___attribute__] = ACTIONS(5080), - [anon_sym___attribute] = ACTIONS(5080), - [anon_sym_LBRACE] = ACTIONS(5082), - [anon_sym_signed] = ACTIONS(5080), - [anon_sym_unsigned] = ACTIONS(5080), - [anon_sym_long] = ACTIONS(5080), - [anon_sym_short] = ACTIONS(5080), - [anon_sym_LBRACK] = ACTIONS(5082), - [anon_sym_EQ] = ACTIONS(5080), - [anon_sym_const] = ACTIONS(5080), - [anon_sym_constexpr] = ACTIONS(5080), - [anon_sym_volatile] = ACTIONS(5080), - [anon_sym_restrict] = ACTIONS(5080), - [anon_sym___restrict__] = ACTIONS(5080), - [anon_sym__Atomic] = ACTIONS(5080), - [anon_sym__Noreturn] = ACTIONS(5080), - [anon_sym_noreturn] = ACTIONS(5080), - [anon_sym__Nonnull] = ACTIONS(5080), - [anon_sym_mutable] = ACTIONS(5080), - [anon_sym_constinit] = ACTIONS(5080), - [anon_sym_consteval] = ACTIONS(5080), - [anon_sym_alignas] = ACTIONS(5080), - [anon_sym__Alignas] = ACTIONS(5080), - [sym_primitive_type] = ACTIONS(5080), - [anon_sym_QMARK] = ACTIONS(5082), - [anon_sym_STAR_EQ] = ACTIONS(5082), - [anon_sym_SLASH_EQ] = ACTIONS(5082), - [anon_sym_PERCENT_EQ] = ACTIONS(5082), - [anon_sym_PLUS_EQ] = ACTIONS(5082), - [anon_sym_DASH_EQ] = ACTIONS(5082), - [anon_sym_LT_LT_EQ] = ACTIONS(5082), - [anon_sym_GT_GT_EQ] = ACTIONS(5082), - [anon_sym_AMP_EQ] = ACTIONS(5082), - [anon_sym_CARET_EQ] = ACTIONS(5082), - [anon_sym_PIPE_EQ] = ACTIONS(5082), - [anon_sym_and_eq] = ACTIONS(5080), - [anon_sym_or_eq] = ACTIONS(5080), - [anon_sym_xor_eq] = ACTIONS(5080), - [anon_sym_LT_EQ_GT] = ACTIONS(5082), - [anon_sym_or] = ACTIONS(5080), - [anon_sym_and] = ACTIONS(5080), - [anon_sym_bitor] = ACTIONS(5080), - [anon_sym_xor] = ACTIONS(5080), - [anon_sym_bitand] = ACTIONS(5080), - [anon_sym_not_eq] = ACTIONS(5080), - [anon_sym_DASH_DASH] = ACTIONS(5082), - [anon_sym_PLUS_PLUS] = ACTIONS(5082), - [anon_sym_DOT] = ACTIONS(5080), - [anon_sym_DOT_STAR] = ACTIONS(5082), - [anon_sym_DASH_GT] = ACTIONS(5080), + [1722] = { + [sym_identifier] = ACTIONS(1936), + [aux_sym_preproc_def_token1] = ACTIONS(1936), + [aux_sym_preproc_if_token1] = ACTIONS(1936), + [aux_sym_preproc_if_token2] = ACTIONS(1936), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1936), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1936), + [aux_sym_preproc_else_token1] = ACTIONS(1936), + [aux_sym_preproc_elif_token1] = ACTIONS(1936), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1936), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1936), + [sym_preproc_directive] = ACTIONS(1936), + [anon_sym_LPAREN2] = ACTIONS(1934), + [anon_sym_TILDE] = ACTIONS(1934), + [anon_sym_STAR] = ACTIONS(1934), + [anon_sym_AMP_AMP] = ACTIONS(1934), + [anon_sym_AMP] = ACTIONS(1936), + [anon_sym_SEMI] = ACTIONS(1934), + [anon_sym___extension__] = ACTIONS(1936), + [anon_sym_typedef] = ACTIONS(1936), + [anon_sym_virtual] = ACTIONS(1936), + [anon_sym_extern] = ACTIONS(1936), + [anon_sym___attribute__] = ACTIONS(1936), + [anon_sym___attribute] = ACTIONS(1936), + [anon_sym_using] = ACTIONS(1936), + [anon_sym_COLON_COLON] = ACTIONS(1934), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1934), + [anon_sym___declspec] = ACTIONS(1936), + [anon_sym___based] = ACTIONS(1936), + [anon_sym_signed] = ACTIONS(1936), + [anon_sym_unsigned] = ACTIONS(1936), + [anon_sym_long] = ACTIONS(1936), + [anon_sym_short] = ACTIONS(1936), + [anon_sym_LBRACK] = ACTIONS(1936), + [anon_sym_static] = ACTIONS(1936), + [anon_sym_register] = ACTIONS(1936), + [anon_sym_inline] = ACTIONS(1936), + [anon_sym___inline] = ACTIONS(1936), + [anon_sym___inline__] = ACTIONS(1936), + [anon_sym___forceinline] = ACTIONS(1936), + [anon_sym_thread_local] = ACTIONS(1936), + [anon_sym___thread] = ACTIONS(1936), + [anon_sym_const] = ACTIONS(1936), + [anon_sym_constexpr] = ACTIONS(1936), + [anon_sym_volatile] = ACTIONS(1936), + [anon_sym_restrict] = ACTIONS(1936), + [anon_sym___restrict__] = ACTIONS(1936), + [anon_sym__Atomic] = ACTIONS(1936), + [anon_sym__Noreturn] = ACTIONS(1936), + [anon_sym_noreturn] = ACTIONS(1936), + [anon_sym__Nonnull] = ACTIONS(1936), + [anon_sym_mutable] = ACTIONS(1936), + [anon_sym_constinit] = ACTIONS(1936), + [anon_sym_consteval] = ACTIONS(1936), + [anon_sym_alignas] = ACTIONS(1936), + [anon_sym__Alignas] = ACTIONS(1936), + [sym_primitive_type] = ACTIONS(1936), + [anon_sym_enum] = ACTIONS(1936), + [anon_sym_class] = ACTIONS(1936), + [anon_sym_struct] = ACTIONS(1936), + [anon_sym_union] = ACTIONS(1936), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5080), - [anon_sym_decltype] = ACTIONS(5080), - [anon_sym_DASH_GT_STAR] = ACTIONS(5082), - }, - [1653] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1656), - [sym_identifier] = ACTIONS(5070), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5156), - [anon_sym_COMMA] = ACTIONS(5156), - [anon_sym_LPAREN2] = ACTIONS(5156), - [anon_sym_DASH] = ACTIONS(5159), - [anon_sym_PLUS] = ACTIONS(5159), - [anon_sym_STAR] = ACTIONS(5159), - [anon_sym_SLASH] = ACTIONS(5159), - [anon_sym_PERCENT] = ACTIONS(5159), - [anon_sym_PIPE_PIPE] = ACTIONS(5156), - [anon_sym_AMP_AMP] = ACTIONS(5156), - [anon_sym_PIPE] = ACTIONS(5159), - [anon_sym_CARET] = ACTIONS(5159), - [anon_sym_AMP] = ACTIONS(5159), - [anon_sym_EQ_EQ] = ACTIONS(5156), - [anon_sym_BANG_EQ] = ACTIONS(5156), - [anon_sym_GT] = ACTIONS(5159), - [anon_sym_GT_EQ] = ACTIONS(5159), - [anon_sym_LT_EQ] = ACTIONS(5159), - [anon_sym_LT] = ACTIONS(5159), - [anon_sym_LT_LT] = ACTIONS(5159), - [anon_sym_GT_GT] = ACTIONS(5159), - [anon_sym___extension__] = ACTIONS(5070), - [anon_sym___attribute__] = ACTIONS(5159), - [anon_sym___attribute] = ACTIONS(5159), - [anon_sym_LBRACE] = ACTIONS(5156), - [anon_sym_signed] = ACTIONS(5347), - [anon_sym_unsigned] = ACTIONS(5347), - [anon_sym_long] = ACTIONS(5347), - [anon_sym_short] = ACTIONS(5347), - [anon_sym_LBRACK] = ACTIONS(5156), - [anon_sym_EQ] = ACTIONS(5159), - [anon_sym_const] = ACTIONS(5070), - [anon_sym_constexpr] = ACTIONS(5070), - [anon_sym_volatile] = ACTIONS(5070), - [anon_sym_restrict] = ACTIONS(5070), - [anon_sym___restrict__] = ACTIONS(5070), - [anon_sym__Atomic] = ACTIONS(5070), - [anon_sym__Noreturn] = ACTIONS(5070), - [anon_sym_noreturn] = ACTIONS(5070), - [anon_sym__Nonnull] = ACTIONS(5070), - [anon_sym_mutable] = ACTIONS(5070), - [anon_sym_constinit] = ACTIONS(5070), - [anon_sym_consteval] = ACTIONS(5070), - [anon_sym_alignas] = ACTIONS(5070), - [anon_sym__Alignas] = ACTIONS(5070), - [sym_primitive_type] = ACTIONS(5070), - [anon_sym_QMARK] = ACTIONS(5156), - [anon_sym_STAR_EQ] = ACTIONS(5156), - [anon_sym_SLASH_EQ] = ACTIONS(5156), - [anon_sym_PERCENT_EQ] = ACTIONS(5156), - [anon_sym_PLUS_EQ] = ACTIONS(5156), - [anon_sym_DASH_EQ] = ACTIONS(5156), - [anon_sym_LT_LT_EQ] = ACTIONS(5156), - [anon_sym_GT_GT_EQ] = ACTIONS(5159), - [anon_sym_AMP_EQ] = ACTIONS(5156), - [anon_sym_CARET_EQ] = ACTIONS(5156), - [anon_sym_PIPE_EQ] = ACTIONS(5156), - [anon_sym_and_eq] = ACTIONS(5159), - [anon_sym_or_eq] = ACTIONS(5159), - [anon_sym_xor_eq] = ACTIONS(5159), - [anon_sym_LT_EQ_GT] = ACTIONS(5156), - [anon_sym_or] = ACTIONS(5159), - [anon_sym_and] = ACTIONS(5159), - [anon_sym_bitor] = ACTIONS(5159), - [anon_sym_xor] = ACTIONS(5159), - [anon_sym_bitand] = ACTIONS(5159), - [anon_sym_not_eq] = ACTIONS(5159), - [anon_sym_DASH_DASH] = ACTIONS(5156), - [anon_sym_PLUS_PLUS] = ACTIONS(5156), - [anon_sym_DOT] = ACTIONS(5159), - [anon_sym_DOT_STAR] = ACTIONS(5156), - [anon_sym_DASH_GT] = ACTIONS(5156), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5159), - [anon_sym_decltype] = ACTIONS(5159), - [anon_sym_GT2] = ACTIONS(5156), - }, - [1654] = { - [sym_type_qualifier] = STATE(1654), - [sym_alignas_qualifier] = STATE(1688), - [aux_sym__type_definition_type_repeat1] = STATE(1654), - [sym_identifier] = ACTIONS(5047), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5049), - [anon_sym_COMMA] = ACTIONS(5049), - [anon_sym_RPAREN] = ACTIONS(5049), - [anon_sym_LPAREN2] = ACTIONS(5049), - [anon_sym_DASH] = ACTIONS(5047), - [anon_sym_PLUS] = ACTIONS(5047), - [anon_sym_STAR] = ACTIONS(5047), - [anon_sym_SLASH] = ACTIONS(5047), - [anon_sym_PERCENT] = ACTIONS(5047), - [anon_sym_PIPE_PIPE] = ACTIONS(5049), - [anon_sym_AMP_AMP] = ACTIONS(5049), - [anon_sym_PIPE] = ACTIONS(5047), - [anon_sym_CARET] = ACTIONS(5047), - [anon_sym_AMP] = ACTIONS(5047), - [anon_sym_EQ_EQ] = ACTIONS(5049), - [anon_sym_BANG_EQ] = ACTIONS(5049), - [anon_sym_GT] = ACTIONS(5047), - [anon_sym_GT_EQ] = ACTIONS(5049), - [anon_sym_LT_EQ] = ACTIONS(5047), - [anon_sym_LT] = ACTIONS(5047), - [anon_sym_LT_LT] = ACTIONS(5047), - [anon_sym_GT_GT] = ACTIONS(5047), - [anon_sym___extension__] = ACTIONS(5350), - [anon_sym___attribute__] = ACTIONS(5047), - [anon_sym___attribute] = ACTIONS(5047), - [anon_sym_LBRACE] = ACTIONS(5049), - [anon_sym_signed] = ACTIONS(5047), - [anon_sym_unsigned] = ACTIONS(5047), - [anon_sym_long] = ACTIONS(5047), - [anon_sym_short] = ACTIONS(5047), - [anon_sym_LBRACK] = ACTIONS(5049), - [anon_sym_EQ] = ACTIONS(5047), - [anon_sym_const] = ACTIONS(5350), - [anon_sym_constexpr] = ACTIONS(5350), - [anon_sym_volatile] = ACTIONS(5350), - [anon_sym_restrict] = ACTIONS(5350), - [anon_sym___restrict__] = ACTIONS(5350), - [anon_sym__Atomic] = ACTIONS(5350), - [anon_sym__Noreturn] = ACTIONS(5350), - [anon_sym_noreturn] = ACTIONS(5350), - [anon_sym__Nonnull] = ACTIONS(5350), - [anon_sym_mutable] = ACTIONS(5350), - [anon_sym_constinit] = ACTIONS(5350), - [anon_sym_consteval] = ACTIONS(5350), - [anon_sym_alignas] = ACTIONS(5353), - [anon_sym__Alignas] = ACTIONS(5353), - [sym_primitive_type] = ACTIONS(5047), - [anon_sym_QMARK] = ACTIONS(5049), - [anon_sym_STAR_EQ] = ACTIONS(5049), - [anon_sym_SLASH_EQ] = ACTIONS(5049), - [anon_sym_PERCENT_EQ] = ACTIONS(5049), - [anon_sym_PLUS_EQ] = ACTIONS(5049), - [anon_sym_DASH_EQ] = ACTIONS(5049), - [anon_sym_LT_LT_EQ] = ACTIONS(5049), - [anon_sym_GT_GT_EQ] = ACTIONS(5049), - [anon_sym_AMP_EQ] = ACTIONS(5049), - [anon_sym_CARET_EQ] = ACTIONS(5049), - [anon_sym_PIPE_EQ] = ACTIONS(5049), - [anon_sym_LT_EQ_GT] = ACTIONS(5049), - [anon_sym_or] = ACTIONS(5047), - [anon_sym_and] = ACTIONS(5047), - [anon_sym_bitor] = ACTIONS(5047), - [anon_sym_xor] = ACTIONS(5047), - [anon_sym_bitand] = ACTIONS(5047), - [anon_sym_not_eq] = ACTIONS(5047), - [anon_sym_DASH_DASH] = ACTIONS(5049), - [anon_sym_PLUS_PLUS] = ACTIONS(5049), - [anon_sym_DOT] = ACTIONS(5047), - [anon_sym_DOT_STAR] = ACTIONS(5049), - [anon_sym_DASH_GT] = ACTIONS(5047), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5047), - [anon_sym_decltype] = ACTIONS(5047), - [anon_sym_DASH_GT_STAR] = ACTIONS(5049), - }, - [1655] = { - [sym_type_qualifier] = STATE(1655), - [sym_alignas_qualifier] = STATE(1695), - [aux_sym__type_definition_type_repeat1] = STATE(1655), - [sym_identifier] = ACTIONS(5047), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5049), - [anon_sym_COMMA] = ACTIONS(5049), - [anon_sym_RPAREN] = ACTIONS(5049), - [aux_sym_preproc_if_token2] = ACTIONS(5049), - [aux_sym_preproc_else_token1] = ACTIONS(5049), - [aux_sym_preproc_elif_token1] = ACTIONS(5047), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5049), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5049), - [anon_sym_LPAREN2] = ACTIONS(5049), - [anon_sym_DASH] = ACTIONS(5047), - [anon_sym_PLUS] = ACTIONS(5047), - [anon_sym_STAR] = ACTIONS(5049), - [anon_sym_SLASH] = ACTIONS(5047), - [anon_sym_PERCENT] = ACTIONS(5049), - [anon_sym_PIPE_PIPE] = ACTIONS(5049), - [anon_sym_AMP_AMP] = ACTIONS(5049), - [anon_sym_PIPE] = ACTIONS(5047), - [anon_sym_CARET] = ACTIONS(5049), - [anon_sym_AMP] = ACTIONS(5047), - [anon_sym_EQ_EQ] = ACTIONS(5049), - [anon_sym_BANG_EQ] = ACTIONS(5049), - [anon_sym_GT] = ACTIONS(5047), - [anon_sym_GT_EQ] = ACTIONS(5049), - [anon_sym_LT_EQ] = ACTIONS(5047), - [anon_sym_LT] = ACTIONS(5047), - [anon_sym_LT_LT] = ACTIONS(5049), - [anon_sym_GT_GT] = ACTIONS(5049), - [anon_sym_SEMI] = ACTIONS(5049), - [anon_sym___extension__] = ACTIONS(5356), - [anon_sym___attribute__] = ACTIONS(5047), - [anon_sym___attribute] = ACTIONS(5047), - [anon_sym_COLON] = ACTIONS(5049), - [anon_sym_LBRACE] = ACTIONS(5049), - [anon_sym_RBRACE] = ACTIONS(5049), - [anon_sym_signed] = ACTIONS(5047), - [anon_sym_unsigned] = ACTIONS(5047), - [anon_sym_long] = ACTIONS(5047), - [anon_sym_short] = ACTIONS(5047), - [anon_sym_LBRACK] = ACTIONS(5049), - [anon_sym_RBRACK] = ACTIONS(5049), - [anon_sym_const] = ACTIONS(5356), - [anon_sym_constexpr] = ACTIONS(5356), - [anon_sym_volatile] = ACTIONS(5356), - [anon_sym_restrict] = ACTIONS(5356), - [anon_sym___restrict__] = ACTIONS(5356), - [anon_sym__Atomic] = ACTIONS(5356), - [anon_sym__Noreturn] = ACTIONS(5356), - [anon_sym_noreturn] = ACTIONS(5356), - [anon_sym__Nonnull] = ACTIONS(5356), - [anon_sym_mutable] = ACTIONS(5356), - [anon_sym_constinit] = ACTIONS(5356), - [anon_sym_consteval] = ACTIONS(5356), - [anon_sym_alignas] = ACTIONS(5359), - [anon_sym__Alignas] = ACTIONS(5359), - [sym_primitive_type] = ACTIONS(5047), - [anon_sym_QMARK] = ACTIONS(5049), - [anon_sym_LT_EQ_GT] = ACTIONS(5049), - [anon_sym_or] = ACTIONS(5047), - [anon_sym_and] = ACTIONS(5047), - [anon_sym_bitor] = ACTIONS(5047), - [anon_sym_xor] = ACTIONS(5047), - [anon_sym_bitand] = ACTIONS(5047), - [anon_sym_not_eq] = ACTIONS(5047), - [anon_sym_DASH_DASH] = ACTIONS(5049), - [anon_sym_PLUS_PLUS] = ACTIONS(5049), - [anon_sym_DOT] = ACTIONS(5047), - [anon_sym_DOT_STAR] = ACTIONS(5049), - [anon_sym_DASH_GT] = ACTIONS(5049), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5047), - [anon_sym_decltype] = ACTIONS(5047), - [anon_sym_final] = ACTIONS(5047), - [anon_sym_override] = ACTIONS(5047), - [anon_sym_requires] = ACTIONS(5047), - }, - [1656] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1656), - [sym_identifier] = ACTIONS(5070), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5072), - [anon_sym_COMMA] = ACTIONS(5072), - [anon_sym_LPAREN2] = ACTIONS(5072), - [anon_sym_DASH] = ACTIONS(5070), - [anon_sym_PLUS] = ACTIONS(5070), - [anon_sym_STAR] = ACTIONS(5070), - [anon_sym_SLASH] = ACTIONS(5070), - [anon_sym_PERCENT] = ACTIONS(5070), - [anon_sym_PIPE_PIPE] = ACTIONS(5072), - [anon_sym_AMP_AMP] = ACTIONS(5072), - [anon_sym_PIPE] = ACTIONS(5070), - [anon_sym_CARET] = ACTIONS(5070), - [anon_sym_AMP] = ACTIONS(5070), - [anon_sym_EQ_EQ] = ACTIONS(5072), - [anon_sym_BANG_EQ] = ACTIONS(5072), - [anon_sym_GT] = ACTIONS(5070), - [anon_sym_GT_EQ] = ACTIONS(5070), - [anon_sym_LT_EQ] = ACTIONS(5070), - [anon_sym_LT] = ACTIONS(5070), - [anon_sym_LT_LT] = ACTIONS(5070), - [anon_sym_GT_GT] = ACTIONS(5070), - [anon_sym___extension__] = ACTIONS(5070), - [anon_sym___attribute__] = ACTIONS(5070), - [anon_sym___attribute] = ACTIONS(5070), - [anon_sym_LBRACE] = ACTIONS(5072), - [anon_sym_signed] = ACTIONS(5347), - [anon_sym_unsigned] = ACTIONS(5347), - [anon_sym_long] = ACTIONS(5347), - [anon_sym_short] = ACTIONS(5347), - [anon_sym_LBRACK] = ACTIONS(5072), - [anon_sym_EQ] = ACTIONS(5070), - [anon_sym_const] = ACTIONS(5070), - [anon_sym_constexpr] = ACTIONS(5070), - [anon_sym_volatile] = ACTIONS(5070), - [anon_sym_restrict] = ACTIONS(5070), - [anon_sym___restrict__] = ACTIONS(5070), - [anon_sym__Atomic] = ACTIONS(5070), - [anon_sym__Noreturn] = ACTIONS(5070), - [anon_sym_noreturn] = ACTIONS(5070), - [anon_sym__Nonnull] = ACTIONS(5070), - [anon_sym_mutable] = ACTIONS(5070), - [anon_sym_constinit] = ACTIONS(5070), - [anon_sym_consteval] = ACTIONS(5070), - [anon_sym_alignas] = ACTIONS(5070), - [anon_sym__Alignas] = ACTIONS(5070), - [sym_primitive_type] = ACTIONS(5070), - [anon_sym_QMARK] = ACTIONS(5072), - [anon_sym_STAR_EQ] = ACTIONS(5072), - [anon_sym_SLASH_EQ] = ACTIONS(5072), - [anon_sym_PERCENT_EQ] = ACTIONS(5072), - [anon_sym_PLUS_EQ] = ACTIONS(5072), - [anon_sym_DASH_EQ] = ACTIONS(5072), - [anon_sym_LT_LT_EQ] = ACTIONS(5072), - [anon_sym_GT_GT_EQ] = ACTIONS(5070), - [anon_sym_AMP_EQ] = ACTIONS(5072), - [anon_sym_CARET_EQ] = ACTIONS(5072), - [anon_sym_PIPE_EQ] = ACTIONS(5072), - [anon_sym_and_eq] = ACTIONS(5070), - [anon_sym_or_eq] = ACTIONS(5070), - [anon_sym_xor_eq] = ACTIONS(5070), - [anon_sym_LT_EQ_GT] = ACTIONS(5072), - [anon_sym_or] = ACTIONS(5070), - [anon_sym_and] = ACTIONS(5070), - [anon_sym_bitor] = ACTIONS(5070), - [anon_sym_xor] = ACTIONS(5070), - [anon_sym_bitand] = ACTIONS(5070), - [anon_sym_not_eq] = ACTIONS(5070), - [anon_sym_DASH_DASH] = ACTIONS(5072), - [anon_sym_PLUS_PLUS] = ACTIONS(5072), - [anon_sym_DOT] = ACTIONS(5070), - [anon_sym_DOT_STAR] = ACTIONS(5072), - [anon_sym_DASH_GT] = ACTIONS(5072), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5070), - [anon_sym_decltype] = ACTIONS(5070), - [anon_sym_GT2] = ACTIONS(5072), + [sym_auto] = ACTIONS(1936), + [anon_sym_decltype] = ACTIONS(1936), + [anon_sym_explicit] = ACTIONS(1936), + [anon_sym_typename] = ACTIONS(1936), + [anon_sym_private] = ACTIONS(1936), + [anon_sym_template] = ACTIONS(1936), + [anon_sym_operator] = ACTIONS(1936), + [anon_sym_friend] = ACTIONS(1936), + [anon_sym_public] = ACTIONS(1936), + [anon_sym_protected] = ACTIONS(1936), + [anon_sym_static_assert] = ACTIONS(1936), + [anon_sym_catch] = ACTIONS(1936), }, - [1657] = { - [sym_identifier] = ACTIONS(5080), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5082), - [anon_sym_COMMA] = ACTIONS(5082), - [anon_sym_RPAREN] = ACTIONS(5082), - [anon_sym_LPAREN2] = ACTIONS(5082), - [anon_sym_TILDE] = ACTIONS(5082), - [anon_sym_STAR] = ACTIONS(5082), - [anon_sym_AMP_AMP] = ACTIONS(5082), - [anon_sym_AMP] = ACTIONS(5080), - [anon_sym_SEMI] = ACTIONS(5082), - [anon_sym___extension__] = ACTIONS(5080), - [anon_sym_virtual] = ACTIONS(5080), - [anon_sym_extern] = ACTIONS(5080), - [anon_sym___attribute__] = ACTIONS(5080), - [anon_sym___attribute] = ACTIONS(5080), - [anon_sym_COLON_COLON] = ACTIONS(5082), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5082), - [anon_sym___declspec] = ACTIONS(5080), - [anon_sym___based] = ACTIONS(5080), - [anon_sym___cdecl] = ACTIONS(5080), - [anon_sym___clrcall] = ACTIONS(5080), - [anon_sym___stdcall] = ACTIONS(5080), - [anon_sym___fastcall] = ACTIONS(5080), - [anon_sym___thiscall] = ACTIONS(5080), - [anon_sym___vectorcall] = ACTIONS(5080), - [anon_sym_LBRACE] = ACTIONS(5082), - [anon_sym_signed] = ACTIONS(5080), - [anon_sym_unsigned] = ACTIONS(5080), - [anon_sym_long] = ACTIONS(5080), - [anon_sym_short] = ACTIONS(5080), - [anon_sym_LBRACK] = ACTIONS(5080), - [anon_sym_static] = ACTIONS(5080), - [anon_sym_EQ] = ACTIONS(5082), - [anon_sym_register] = ACTIONS(5080), - [anon_sym_inline] = ACTIONS(5080), - [anon_sym___inline] = ACTIONS(5080), - [anon_sym___inline__] = ACTIONS(5080), - [anon_sym___forceinline] = ACTIONS(5080), - [anon_sym_thread_local] = ACTIONS(5080), - [anon_sym___thread] = ACTIONS(5080), - [anon_sym_const] = ACTIONS(5080), - [anon_sym_constexpr] = ACTIONS(5080), - [anon_sym_volatile] = ACTIONS(5080), - [anon_sym_restrict] = ACTIONS(5080), - [anon_sym___restrict__] = ACTIONS(5080), - [anon_sym__Atomic] = ACTIONS(5080), - [anon_sym__Noreturn] = ACTIONS(5080), - [anon_sym_noreturn] = ACTIONS(5080), - [anon_sym__Nonnull] = ACTIONS(5080), - [anon_sym_mutable] = ACTIONS(5080), - [anon_sym_constinit] = ACTIONS(5080), - [anon_sym_consteval] = ACTIONS(5080), - [anon_sym_alignas] = ACTIONS(5080), - [anon_sym__Alignas] = ACTIONS(5080), - [sym_primitive_type] = ACTIONS(5080), - [anon_sym_enum] = ACTIONS(5080), - [anon_sym_class] = ACTIONS(5080), - [anon_sym_struct] = ACTIONS(5080), - [anon_sym_union] = ACTIONS(5080), - [anon_sym_asm] = ACTIONS(5080), - [anon_sym___asm__] = ACTIONS(5080), - [anon_sym___asm] = ACTIONS(5080), - [anon_sym_DASH_GT] = ACTIONS(5082), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5080), - [anon_sym_decltype] = ACTIONS(5080), - [anon_sym_final] = ACTIONS(5080), - [anon_sym_override] = ACTIONS(5080), - [anon_sym_explicit] = ACTIONS(5080), - [anon_sym_typename] = ACTIONS(5080), - [anon_sym_template] = ACTIONS(5080), - [anon_sym_GT2] = ACTIONS(5082), - [anon_sym_operator] = ACTIONS(5080), - [anon_sym_try] = ACTIONS(5080), - [anon_sym_noexcept] = ACTIONS(5080), - [anon_sym_throw] = ACTIONS(5080), - [anon_sym_requires] = ACTIONS(5080), + [1723] = { + [sym_identifier] = ACTIONS(1940), + [aux_sym_preproc_def_token1] = ACTIONS(1940), + [anon_sym_COMMA] = ACTIONS(2729), + [aux_sym_preproc_if_token1] = ACTIONS(1940), + [aux_sym_preproc_if_token2] = ACTIONS(1940), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1940), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1940), + [aux_sym_preproc_else_token1] = ACTIONS(1940), + [aux_sym_preproc_elif_token1] = ACTIONS(1940), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1940), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1940), + [sym_preproc_directive] = ACTIONS(1940), + [anon_sym_LPAREN2] = ACTIONS(1938), + [anon_sym_TILDE] = ACTIONS(1938), + [anon_sym_STAR] = ACTIONS(1938), + [anon_sym_AMP_AMP] = ACTIONS(1938), + [anon_sym_AMP] = ACTIONS(1940), + [anon_sym_SEMI] = ACTIONS(2729), + [anon_sym___extension__] = ACTIONS(1940), + [anon_sym_typedef] = ACTIONS(1940), + [anon_sym_virtual] = ACTIONS(1940), + [anon_sym_extern] = ACTIONS(1940), + [anon_sym___attribute__] = ACTIONS(1940), + [anon_sym___attribute] = ACTIONS(1940), + [anon_sym_using] = ACTIONS(1940), + [anon_sym_COLON_COLON] = ACTIONS(1938), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1938), + [anon_sym___declspec] = ACTIONS(1940), + [anon_sym___based] = ACTIONS(1940), + [anon_sym_signed] = ACTIONS(1940), + [anon_sym_unsigned] = ACTIONS(1940), + [anon_sym_long] = ACTIONS(1940), + [anon_sym_short] = ACTIONS(1940), + [anon_sym_LBRACK] = ACTIONS(1940), + [anon_sym_static] = ACTIONS(1940), + [anon_sym_register] = ACTIONS(1940), + [anon_sym_inline] = ACTIONS(1940), + [anon_sym___inline] = ACTIONS(1940), + [anon_sym___inline__] = ACTIONS(1940), + [anon_sym___forceinline] = ACTIONS(1940), + [anon_sym_thread_local] = ACTIONS(1940), + [anon_sym___thread] = ACTIONS(1940), + [anon_sym_const] = ACTIONS(1940), + [anon_sym_constexpr] = ACTIONS(1940), + [anon_sym_volatile] = ACTIONS(1940), + [anon_sym_restrict] = ACTIONS(1940), + [anon_sym___restrict__] = ACTIONS(1940), + [anon_sym__Atomic] = ACTIONS(1940), + [anon_sym__Noreturn] = ACTIONS(1940), + [anon_sym_noreturn] = ACTIONS(1940), + [anon_sym__Nonnull] = ACTIONS(1940), + [anon_sym_mutable] = ACTIONS(1940), + [anon_sym_constinit] = ACTIONS(1940), + [anon_sym_consteval] = ACTIONS(1940), + [anon_sym_alignas] = ACTIONS(1940), + [anon_sym__Alignas] = ACTIONS(1940), + [sym_primitive_type] = ACTIONS(1940), + [anon_sym_enum] = ACTIONS(1940), + [anon_sym_class] = ACTIONS(1940), + [anon_sym_struct] = ACTIONS(1940), + [anon_sym_union] = ACTIONS(1940), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1940), + [anon_sym_decltype] = ACTIONS(1940), + [anon_sym_explicit] = ACTIONS(1940), + [anon_sym_typename] = ACTIONS(1940), + [anon_sym_private] = ACTIONS(1940), + [anon_sym_template] = ACTIONS(1940), + [anon_sym_operator] = ACTIONS(1940), + [anon_sym_friend] = ACTIONS(1940), + [anon_sym_public] = ACTIONS(1940), + [anon_sym_protected] = ACTIONS(1940), + [anon_sym_static_assert] = ACTIONS(1940), }, - [1658] = { - [sym_identifier] = ACTIONS(2573), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2563), - [anon_sym_COMMA] = ACTIONS(2563), - [anon_sym_RPAREN] = ACTIONS(2563), - [anon_sym_LPAREN2] = ACTIONS(2563), - [anon_sym_TILDE] = ACTIONS(2563), - [anon_sym_STAR] = ACTIONS(2563), - [anon_sym_AMP_AMP] = ACTIONS(2563), - [anon_sym_AMP] = ACTIONS(2573), - [anon_sym_SEMI] = ACTIONS(2563), - [anon_sym___extension__] = ACTIONS(2573), - [anon_sym_virtual] = ACTIONS(2573), - [anon_sym_extern] = ACTIONS(2573), - [anon_sym___attribute__] = ACTIONS(2573), - [anon_sym___attribute] = ACTIONS(2573), - [anon_sym_COLON_COLON] = ACTIONS(2563), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2563), - [anon_sym___declspec] = ACTIONS(2573), - [anon_sym___based] = ACTIONS(2573), - [anon_sym___cdecl] = ACTIONS(2573), - [anon_sym___clrcall] = ACTIONS(2573), - [anon_sym___stdcall] = ACTIONS(2573), - [anon_sym___fastcall] = ACTIONS(2573), - [anon_sym___thiscall] = ACTIONS(2573), - [anon_sym___vectorcall] = ACTIONS(2573), - [anon_sym_LBRACE] = ACTIONS(2563), - [anon_sym_signed] = ACTIONS(2573), - [anon_sym_unsigned] = ACTIONS(2573), - [anon_sym_long] = ACTIONS(2573), - [anon_sym_short] = ACTIONS(2573), - [anon_sym_LBRACK] = ACTIONS(2573), - [anon_sym_static] = ACTIONS(2573), - [anon_sym_EQ] = ACTIONS(2563), - [anon_sym_register] = ACTIONS(2573), - [anon_sym_inline] = ACTIONS(2573), - [anon_sym___inline] = ACTIONS(2573), - [anon_sym___inline__] = ACTIONS(2573), - [anon_sym___forceinline] = ACTIONS(2573), - [anon_sym_thread_local] = ACTIONS(2573), - [anon_sym___thread] = ACTIONS(2573), - [anon_sym_const] = ACTIONS(2573), - [anon_sym_constexpr] = ACTIONS(2573), - [anon_sym_volatile] = ACTIONS(2573), - [anon_sym_restrict] = ACTIONS(2573), - [anon_sym___restrict__] = ACTIONS(2573), - [anon_sym__Atomic] = ACTIONS(2573), - [anon_sym__Noreturn] = ACTIONS(2573), - [anon_sym_noreturn] = ACTIONS(2573), - [anon_sym__Nonnull] = ACTIONS(2573), - [anon_sym_mutable] = ACTIONS(2573), - [anon_sym_constinit] = ACTIONS(2573), - [anon_sym_consteval] = ACTIONS(2573), - [anon_sym_alignas] = ACTIONS(2573), - [anon_sym__Alignas] = ACTIONS(2573), - [sym_primitive_type] = ACTIONS(2573), - [anon_sym_enum] = ACTIONS(2573), - [anon_sym_class] = ACTIONS(2573), - [anon_sym_struct] = ACTIONS(2573), - [anon_sym_union] = ACTIONS(2573), - [anon_sym_asm] = ACTIONS(2573), - [anon_sym___asm__] = ACTIONS(2573), - [anon_sym___asm] = ACTIONS(2573), - [anon_sym_DASH_GT] = ACTIONS(2563), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2573), - [anon_sym_decltype] = ACTIONS(2573), - [anon_sym_final] = ACTIONS(2573), - [anon_sym_override] = ACTIONS(2573), - [anon_sym_explicit] = ACTIONS(2573), - [anon_sym_typename] = ACTIONS(2573), - [anon_sym_template] = ACTIONS(2573), - [anon_sym_GT2] = ACTIONS(2563), - [anon_sym_operator] = ACTIONS(2573), - [anon_sym_try] = ACTIONS(2573), - [anon_sym_noexcept] = ACTIONS(2573), - [anon_sym_throw] = ACTIONS(2573), - [anon_sym_requires] = ACTIONS(2573), + [1724] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(4986), + [anon_sym_COMMA] = ACTIONS(4986), + [anon_sym_RPAREN] = ACTIONS(4988), + [anon_sym_LPAREN2] = ACTIONS(4988), + [anon_sym_DASH] = ACTIONS(4993), + [anon_sym_PLUS] = ACTIONS(4993), + [anon_sym_STAR] = ACTIONS(4995), + [anon_sym_SLASH] = ACTIONS(4993), + [anon_sym_PERCENT] = ACTIONS(4993), + [anon_sym_PIPE_PIPE] = ACTIONS(4986), + [anon_sym_AMP_AMP] = ACTIONS(4988), + [anon_sym_PIPE] = ACTIONS(4993), + [anon_sym_CARET] = ACTIONS(4993), + [anon_sym_AMP] = ACTIONS(4995), + [anon_sym_EQ_EQ] = ACTIONS(4986), + [anon_sym_BANG_EQ] = ACTIONS(4986), + [anon_sym_GT] = ACTIONS(4993), + [anon_sym_GT_EQ] = ACTIONS(4986), + [anon_sym_LT_EQ] = ACTIONS(4993), + [anon_sym_LT] = ACTIONS(4993), + [anon_sym_LT_LT] = ACTIONS(4993), + [anon_sym_GT_GT] = ACTIONS(4993), + [anon_sym_SEMI] = ACTIONS(4986), + [anon_sym___extension__] = ACTIONS(4991), + [anon_sym_COLON_COLON] = ACTIONS(4991), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4986), + [anon_sym_LBRACE] = ACTIONS(4991), + [anon_sym_LBRACK] = ACTIONS(4995), + [anon_sym_EQ] = ACTIONS(4993), + [anon_sym_const] = ACTIONS(4984), + [anon_sym_constexpr] = ACTIONS(4991), + [anon_sym_volatile] = ACTIONS(4991), + [anon_sym_restrict] = ACTIONS(4991), + [anon_sym___restrict__] = ACTIONS(4991), + [anon_sym__Atomic] = ACTIONS(4991), + [anon_sym__Noreturn] = ACTIONS(4991), + [anon_sym_noreturn] = ACTIONS(4991), + [anon_sym__Nonnull] = ACTIONS(4991), + [anon_sym_mutable] = ACTIONS(4991), + [anon_sym_constinit] = ACTIONS(4991), + [anon_sym_consteval] = ACTIONS(4991), + [anon_sym_alignas] = ACTIONS(4991), + [anon_sym__Alignas] = ACTIONS(4991), + [anon_sym_QMARK] = ACTIONS(4986), + [anon_sym_STAR_EQ] = ACTIONS(4986), + [anon_sym_SLASH_EQ] = ACTIONS(4986), + [anon_sym_PERCENT_EQ] = ACTIONS(4986), + [anon_sym_PLUS_EQ] = ACTIONS(4986), + [anon_sym_DASH_EQ] = ACTIONS(4986), + [anon_sym_LT_LT_EQ] = ACTIONS(4986), + [anon_sym_GT_GT_EQ] = ACTIONS(4986), + [anon_sym_AMP_EQ] = ACTIONS(4986), + [anon_sym_CARET_EQ] = ACTIONS(4986), + [anon_sym_PIPE_EQ] = ACTIONS(4986), + [anon_sym_and_eq] = ACTIONS(4986), + [anon_sym_or_eq] = ACTIONS(4986), + [anon_sym_xor_eq] = ACTIONS(4986), + [anon_sym_LT_EQ_GT] = ACTIONS(4986), + [anon_sym_or] = ACTIONS(4993), + [anon_sym_and] = ACTIONS(4993), + [anon_sym_bitor] = ACTIONS(4986), + [anon_sym_xor] = ACTIONS(4993), + [anon_sym_bitand] = ACTIONS(4986), + [anon_sym_not_eq] = ACTIONS(4986), + [anon_sym_DASH_DASH] = ACTIONS(4986), + [anon_sym_PLUS_PLUS] = ACTIONS(4986), + [anon_sym_DOT] = ACTIONS(4993), + [anon_sym_DOT_STAR] = ACTIONS(4986), + [anon_sym_DASH_GT] = ACTIONS(4993), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4991), + [anon_sym_decltype] = ACTIONS(4991), + [anon_sym_DASH_GT_STAR] = ACTIONS(4986), }, - [1659] = { - [sym_identifier] = ACTIONS(4996), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4998), - [anon_sym_COMMA] = ACTIONS(4998), - [anon_sym_RPAREN] = ACTIONS(4998), - [anon_sym_LPAREN2] = ACTIONS(5000), - [anon_sym_TILDE] = ACTIONS(5003), - [anon_sym_DASH] = ACTIONS(5005), - [anon_sym_PLUS] = ACTIONS(5005), - [anon_sym_STAR] = ACTIONS(5000), - [anon_sym_SLASH] = ACTIONS(5005), - [anon_sym_PERCENT] = ACTIONS(4998), - [anon_sym_PIPE_PIPE] = ACTIONS(4998), - [anon_sym_AMP_AMP] = ACTIONS(5000), - [anon_sym_PIPE] = ACTIONS(5005), - [anon_sym_CARET] = ACTIONS(4998), - [anon_sym_AMP] = ACTIONS(5007), - [anon_sym_EQ_EQ] = ACTIONS(4998), - [anon_sym_BANG_EQ] = ACTIONS(4998), - [anon_sym_GT] = ACTIONS(5005), - [anon_sym_GT_EQ] = ACTIONS(4998), - [anon_sym_LT_EQ] = ACTIONS(5005), - [anon_sym_LT] = ACTIONS(5005), - [anon_sym_LT_LT] = ACTIONS(4998), - [anon_sym_GT_GT] = ACTIONS(4998), - [anon_sym_SEMI] = ACTIONS(4998), - [anon_sym___extension__] = ACTIONS(4996), - [anon_sym_virtual] = ACTIONS(4996), - [anon_sym_extern] = ACTIONS(4996), - [anon_sym___attribute__] = ACTIONS(4996), - [anon_sym___attribute] = ACTIONS(4996), - [anon_sym_COLON_COLON] = ACTIONS(5003), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5003), - [anon_sym___declspec] = ACTIONS(4996), - [anon_sym___based] = ACTIONS(4996), - [anon_sym_LBRACE] = ACTIONS(5003), - [anon_sym_RBRACE] = ACTIONS(4998), - [anon_sym_LBRACK] = ACTIONS(5007), - [anon_sym_static] = ACTIONS(4996), - [anon_sym_register] = ACTIONS(4996), - [anon_sym_inline] = ACTIONS(4996), - [anon_sym___inline] = ACTIONS(4996), - [anon_sym___inline__] = ACTIONS(4996), - [anon_sym___forceinline] = ACTIONS(4996), - [anon_sym_thread_local] = ACTIONS(4996), - [anon_sym___thread] = ACTIONS(4996), - [anon_sym_const] = ACTIONS(4996), - [anon_sym_constexpr] = ACTIONS(4996), - [anon_sym_volatile] = ACTIONS(4996), - [anon_sym_restrict] = ACTIONS(4996), - [anon_sym___restrict__] = ACTIONS(4996), - [anon_sym__Atomic] = ACTIONS(4996), - [anon_sym__Noreturn] = ACTIONS(4996), - [anon_sym_noreturn] = ACTIONS(4996), - [anon_sym__Nonnull] = ACTIONS(4996), - [anon_sym_mutable] = ACTIONS(4996), - [anon_sym_constinit] = ACTIONS(4996), - [anon_sym_consteval] = ACTIONS(4996), - [anon_sym_alignas] = ACTIONS(4996), - [anon_sym__Alignas] = ACTIONS(4996), - [anon_sym_QMARK] = ACTIONS(4998), - [anon_sym_LT_EQ_GT] = ACTIONS(4998), - [anon_sym_or] = ACTIONS(5005), - [anon_sym_and] = ACTIONS(5005), - [anon_sym_bitor] = ACTIONS(5005), - [anon_sym_xor] = ACTIONS(5005), - [anon_sym_bitand] = ACTIONS(5005), - [anon_sym_not_eq] = ACTIONS(5005), - [anon_sym_DASH_DASH] = ACTIONS(4998), - [anon_sym_PLUS_PLUS] = ACTIONS(4998), - [anon_sym_DOT] = ACTIONS(5005), - [anon_sym_DOT_STAR] = ACTIONS(4998), - [anon_sym_DASH_GT] = ACTIONS(4998), + [1725] = { + [sym_identifier] = ACTIONS(1940), + [aux_sym_preproc_def_token1] = ACTIONS(1940), + [anon_sym_COMMA] = ACTIONS(2729), + [aux_sym_preproc_if_token1] = ACTIONS(1940), + [aux_sym_preproc_if_token2] = ACTIONS(1940), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1940), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1940), + [aux_sym_preproc_else_token1] = ACTIONS(1940), + [aux_sym_preproc_elif_token1] = ACTIONS(1940), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1940), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1940), + [sym_preproc_directive] = ACTIONS(1940), + [anon_sym_LPAREN2] = ACTIONS(1938), + [anon_sym_TILDE] = ACTIONS(1938), + [anon_sym_STAR] = ACTIONS(1938), + [anon_sym_AMP_AMP] = ACTIONS(1938), + [anon_sym_AMP] = ACTIONS(1940), + [anon_sym_SEMI] = ACTIONS(2729), + [anon_sym___extension__] = ACTIONS(1940), + [anon_sym_typedef] = ACTIONS(1940), + [anon_sym_virtual] = ACTIONS(1940), + [anon_sym_extern] = ACTIONS(1940), + [anon_sym___attribute__] = ACTIONS(5450), + [anon_sym___attribute] = ACTIONS(5450), + [anon_sym_using] = ACTIONS(1940), + [anon_sym_COLON_COLON] = ACTIONS(1938), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1938), + [anon_sym___declspec] = ACTIONS(1940), + [anon_sym___based] = ACTIONS(1940), + [anon_sym_signed] = ACTIONS(1940), + [anon_sym_unsigned] = ACTIONS(1940), + [anon_sym_long] = ACTIONS(1940), + [anon_sym_short] = ACTIONS(1940), + [anon_sym_LBRACK] = ACTIONS(1940), + [anon_sym_static] = ACTIONS(1940), + [anon_sym_register] = ACTIONS(1940), + [anon_sym_inline] = ACTIONS(1940), + [anon_sym___inline] = ACTIONS(1940), + [anon_sym___inline__] = ACTIONS(1940), + [anon_sym___forceinline] = ACTIONS(1940), + [anon_sym_thread_local] = ACTIONS(1940), + [anon_sym___thread] = ACTIONS(1940), + [anon_sym_const] = ACTIONS(1940), + [anon_sym_constexpr] = ACTIONS(1940), + [anon_sym_volatile] = ACTIONS(1940), + [anon_sym_restrict] = ACTIONS(1940), + [anon_sym___restrict__] = ACTIONS(1940), + [anon_sym__Atomic] = ACTIONS(1940), + [anon_sym__Noreturn] = ACTIONS(1940), + [anon_sym_noreturn] = ACTIONS(1940), + [anon_sym__Nonnull] = ACTIONS(1940), + [anon_sym_mutable] = ACTIONS(1940), + [anon_sym_constinit] = ACTIONS(1940), + [anon_sym_consteval] = ACTIONS(1940), + [anon_sym_alignas] = ACTIONS(1940), + [anon_sym__Alignas] = ACTIONS(1940), + [sym_primitive_type] = ACTIONS(1940), + [anon_sym_enum] = ACTIONS(1940), + [anon_sym_class] = ACTIONS(1940), + [anon_sym_struct] = ACTIONS(1940), + [anon_sym_union] = ACTIONS(1940), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4996), - [anon_sym_decltype] = ACTIONS(4996), - [anon_sym_template] = ACTIONS(4996), - [anon_sym_operator] = ACTIONS(4996), + [sym_auto] = ACTIONS(1940), + [anon_sym_decltype] = ACTIONS(1940), + [anon_sym_explicit] = ACTIONS(1940), + [anon_sym_typename] = ACTIONS(1940), + [anon_sym_private] = ACTIONS(1940), + [anon_sym_template] = ACTIONS(1940), + [anon_sym_operator] = ACTIONS(1940), + [anon_sym_friend] = ACTIONS(1940), + [anon_sym_public] = ACTIONS(1940), + [anon_sym_protected] = ACTIONS(1940), + [anon_sym_static_assert] = ACTIONS(1940), }, - [1660] = { - [sym_identifier] = ACTIONS(2573), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2563), - [anon_sym_COMMA] = ACTIONS(2563), - [anon_sym_LPAREN2] = ACTIONS(2563), - [anon_sym_DASH] = ACTIONS(2573), - [anon_sym_PLUS] = ACTIONS(2573), - [anon_sym_STAR] = ACTIONS(2573), - [anon_sym_SLASH] = ACTIONS(2573), - [anon_sym_PERCENT] = ACTIONS(2573), - [anon_sym_PIPE_PIPE] = ACTIONS(2563), - [anon_sym_AMP_AMP] = ACTIONS(2563), - [anon_sym_PIPE] = ACTIONS(2573), - [anon_sym_CARET] = ACTIONS(2573), - [anon_sym_AMP] = ACTIONS(2573), - [anon_sym_EQ_EQ] = ACTIONS(2563), - [anon_sym_BANG_EQ] = ACTIONS(2563), - [anon_sym_GT] = ACTIONS(2573), - [anon_sym_GT_EQ] = ACTIONS(2573), - [anon_sym_LT_EQ] = ACTIONS(2573), - [anon_sym_LT] = ACTIONS(2573), - [anon_sym_LT_LT] = ACTIONS(2573), - [anon_sym_GT_GT] = ACTIONS(2573), - [anon_sym___extension__] = ACTIONS(2573), - [anon_sym___attribute__] = ACTIONS(2573), - [anon_sym___attribute] = ACTIONS(2573), - [anon_sym_LBRACE] = ACTIONS(2563), - [anon_sym_signed] = ACTIONS(2573), - [anon_sym_unsigned] = ACTIONS(2573), - [anon_sym_long] = ACTIONS(2573), - [anon_sym_short] = ACTIONS(2573), - [anon_sym_LBRACK] = ACTIONS(2563), - [anon_sym_EQ] = ACTIONS(2573), - [anon_sym_const] = ACTIONS(2573), - [anon_sym_constexpr] = ACTIONS(2573), - [anon_sym_volatile] = ACTIONS(2573), - [anon_sym_restrict] = ACTIONS(2573), - [anon_sym___restrict__] = ACTIONS(2573), - [anon_sym__Atomic] = ACTIONS(2573), - [anon_sym__Noreturn] = ACTIONS(2573), - [anon_sym_noreturn] = ACTIONS(2573), - [anon_sym__Nonnull] = ACTIONS(2573), - [anon_sym_mutable] = ACTIONS(2573), - [anon_sym_constinit] = ACTIONS(2573), - [anon_sym_consteval] = ACTIONS(2573), - [anon_sym_alignas] = ACTIONS(2573), - [anon_sym__Alignas] = ACTIONS(2573), - [sym_primitive_type] = ACTIONS(2573), - [anon_sym_QMARK] = ACTIONS(2563), - [anon_sym_STAR_EQ] = ACTIONS(2563), - [anon_sym_SLASH_EQ] = ACTIONS(2563), - [anon_sym_PERCENT_EQ] = ACTIONS(2563), - [anon_sym_PLUS_EQ] = ACTIONS(2563), - [anon_sym_DASH_EQ] = ACTIONS(2563), - [anon_sym_LT_LT_EQ] = ACTIONS(2563), - [anon_sym_GT_GT_EQ] = ACTIONS(2573), - [anon_sym_AMP_EQ] = ACTIONS(2563), - [anon_sym_CARET_EQ] = ACTIONS(2563), - [anon_sym_PIPE_EQ] = ACTIONS(2563), - [anon_sym_and_eq] = ACTIONS(2573), - [anon_sym_or_eq] = ACTIONS(2573), - [anon_sym_xor_eq] = ACTIONS(2573), - [anon_sym_LT_EQ_GT] = ACTIONS(2563), - [anon_sym_or] = ACTIONS(2573), - [anon_sym_and] = ACTIONS(2573), - [anon_sym_bitor] = ACTIONS(2573), - [anon_sym_xor] = ACTIONS(2573), - [anon_sym_bitand] = ACTIONS(2573), - [anon_sym_not_eq] = ACTIONS(2573), - [anon_sym_DASH_DASH] = ACTIONS(2563), - [anon_sym_PLUS_PLUS] = ACTIONS(2563), - [anon_sym_DOT] = ACTIONS(2573), - [anon_sym_DOT_STAR] = ACTIONS(2563), - [anon_sym_DASH_GT] = ACTIONS(2563), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2573), - [anon_sym_decltype] = ACTIONS(2573), - [anon_sym_GT2] = ACTIONS(2563), + [1726] = { + [sym_identifier] = ACTIONS(2611), + [aux_sym_preproc_def_token1] = ACTIONS(2611), + [aux_sym_preproc_if_token1] = ACTIONS(2611), + [aux_sym_preproc_if_token2] = ACTIONS(2611), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2611), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2611), + [aux_sym_preproc_else_token1] = ACTIONS(2611), + [aux_sym_preproc_elif_token1] = ACTIONS(2611), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2611), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2611), + [sym_preproc_directive] = ACTIONS(2611), + [anon_sym_LPAREN2] = ACTIONS(2613), + [anon_sym_TILDE] = ACTIONS(2613), + [anon_sym_STAR] = ACTIONS(2613), + [anon_sym_AMP_AMP] = ACTIONS(2613), + [anon_sym_AMP] = ACTIONS(2611), + [anon_sym_SEMI] = ACTIONS(2613), + [anon_sym___extension__] = ACTIONS(2611), + [anon_sym_typedef] = ACTIONS(2611), + [anon_sym_virtual] = ACTIONS(2611), + [anon_sym_extern] = ACTIONS(2611), + [anon_sym___attribute__] = ACTIONS(2611), + [anon_sym___attribute] = ACTIONS(2611), + [anon_sym_using] = ACTIONS(2611), + [anon_sym_COLON_COLON] = ACTIONS(2613), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2613), + [anon_sym___declspec] = ACTIONS(2611), + [anon_sym___based] = ACTIONS(2611), + [anon_sym_signed] = ACTIONS(2611), + [anon_sym_unsigned] = ACTIONS(2611), + [anon_sym_long] = ACTIONS(2611), + [anon_sym_short] = ACTIONS(2611), + [anon_sym_LBRACK] = ACTIONS(2611), + [anon_sym_static] = ACTIONS(2611), + [anon_sym_register] = ACTIONS(2611), + [anon_sym_inline] = ACTIONS(2611), + [anon_sym___inline] = ACTIONS(2611), + [anon_sym___inline__] = ACTIONS(2611), + [anon_sym___forceinline] = ACTIONS(2611), + [anon_sym_thread_local] = ACTIONS(2611), + [anon_sym___thread] = ACTIONS(2611), + [anon_sym_const] = ACTIONS(2611), + [anon_sym_constexpr] = ACTIONS(2611), + [anon_sym_volatile] = ACTIONS(2611), + [anon_sym_restrict] = ACTIONS(2611), + [anon_sym___restrict__] = ACTIONS(2611), + [anon_sym__Atomic] = ACTIONS(2611), + [anon_sym__Noreturn] = ACTIONS(2611), + [anon_sym_noreturn] = ACTIONS(2611), + [anon_sym__Nonnull] = ACTIONS(2611), + [anon_sym_mutable] = ACTIONS(2611), + [anon_sym_constinit] = ACTIONS(2611), + [anon_sym_consteval] = ACTIONS(2611), + [anon_sym_alignas] = ACTIONS(2611), + [anon_sym__Alignas] = ACTIONS(2611), + [sym_primitive_type] = ACTIONS(2611), + [anon_sym_enum] = ACTIONS(2611), + [anon_sym_class] = ACTIONS(2611), + [anon_sym_struct] = ACTIONS(2611), + [anon_sym_union] = ACTIONS(2611), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2611), + [anon_sym_decltype] = ACTIONS(2611), + [anon_sym_explicit] = ACTIONS(2611), + [anon_sym_typename] = ACTIONS(2611), + [anon_sym_private] = ACTIONS(2611), + [anon_sym_template] = ACTIONS(2611), + [anon_sym_operator] = ACTIONS(2611), + [anon_sym_friend] = ACTIONS(2611), + [anon_sym_public] = ACTIONS(2611), + [anon_sym_protected] = ACTIONS(2611), + [anon_sym_static_assert] = ACTIONS(2611), + [anon_sym_catch] = ACTIONS(2611), }, - [1661] = { - [sym__declaration_modifiers] = STATE(2061), - [sym__declaration_specifiers] = STATE(3972), - [sym_attribute_specifier] = STATE(2061), - [sym_attribute_declaration] = STATE(2061), - [sym_ms_declspec_modifier] = STATE(2061), - [sym_storage_class_specifier] = STATE(2061), - [sym_type_qualifier] = STATE(2061), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_parameter_declaration] = STATE(7283), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym_dependent_type] = STATE(2523), - [sym_type_parameter_declaration] = STATE(7283), - [sym_variadic_type_parameter_declaration] = STATE(7283), - [sym_optional_type_parameter_declaration] = STATE(7283), - [sym_template_template_parameter_declaration] = STATE(7283), - [sym_optional_parameter_declaration] = STATE(7283), - [sym_variadic_parameter_declaration] = STATE(7283), - [sym_template_type] = STATE(2406), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(6606), - [sym_qualified_type_identifier] = STATE(3015), - [aux_sym__declaration_specifiers_repeat1] = STATE(2061), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [sym_identifier] = ACTIONS(5010), + [1727] = { + [sym__declaration_modifiers] = STATE(2121), + [sym__declaration_specifiers] = STATE(3995), + [sym_attribute_specifier] = STATE(2121), + [sym_attribute_declaration] = STATE(2121), + [sym_ms_declspec_modifier] = STATE(2121), + [sym_storage_class_specifier] = STATE(2121), + [sym_type_qualifier] = STATE(2121), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_parameter_declaration] = STATE(7389), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym_dependent_type] = STATE(2558), + [sym_optional_parameter_declaration] = STATE(7389), + [sym_variadic_parameter_declaration] = STATE(7389), + [sym_template_type] = STATE(2439), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(6746), + [sym_qualified_type_identifier] = STATE(3138), + [aux_sym__declaration_specifiers_repeat1] = STATE(2121), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(5018), + [anon_sym_RPAREN] = ACTIONS(1886), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1878), + [anon_sym_virtual] = ACTIONS(1870), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5020), + [anon_sym_COLON_COLON] = ACTIONS(5028), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), [anon_sym_signed] = ACTIONS(59), @@ -244096,136 +250675,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2999), - [anon_sym_enum] = ACTIONS(1884), - [anon_sym_class] = ACTIONS(5362), - [anon_sym_struct] = ACTIONS(1888), - [anon_sym_union] = ACTIONS(1890), + [sym_primitive_type] = ACTIONS(3019), + [anon_sym_enum] = ACTIONS(1874), + [anon_sym_class] = ACTIONS(1876), + [anon_sym_struct] = ACTIONS(1878), + [anon_sym_union] = ACTIONS(1880), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(5364), - [anon_sym_template] = ACTIONS(5366), - [anon_sym_GT2] = ACTIONS(5368), + [anon_sym_typename] = ACTIONS(1882), + [anon_sym_template] = ACTIONS(1268), }, - [1662] = { - [sym_identifier] = ACTIONS(5080), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5082), - [anon_sym_COMMA] = ACTIONS(5082), - [anon_sym_LPAREN2] = ACTIONS(5082), - [anon_sym_DASH] = ACTIONS(5080), - [anon_sym_PLUS] = ACTIONS(5080), - [anon_sym_STAR] = ACTIONS(5080), - [anon_sym_SLASH] = ACTIONS(5080), - [anon_sym_PERCENT] = ACTIONS(5080), - [anon_sym_PIPE_PIPE] = ACTIONS(5082), - [anon_sym_AMP_AMP] = ACTIONS(5082), - [anon_sym_PIPE] = ACTIONS(5080), - [anon_sym_CARET] = ACTIONS(5080), - [anon_sym_AMP] = ACTIONS(5080), - [anon_sym_EQ_EQ] = ACTIONS(5082), - [anon_sym_BANG_EQ] = ACTIONS(5082), - [anon_sym_GT] = ACTIONS(5080), - [anon_sym_GT_EQ] = ACTIONS(5080), - [anon_sym_LT_EQ] = ACTIONS(5080), - [anon_sym_LT] = ACTIONS(5080), - [anon_sym_LT_LT] = ACTIONS(5080), - [anon_sym_GT_GT] = ACTIONS(5080), - [anon_sym___extension__] = ACTIONS(5080), - [anon_sym___attribute__] = ACTIONS(5080), - [anon_sym___attribute] = ACTIONS(5080), - [anon_sym_LBRACE] = ACTIONS(5082), - [anon_sym_signed] = ACTIONS(5080), - [anon_sym_unsigned] = ACTIONS(5080), - [anon_sym_long] = ACTIONS(5080), - [anon_sym_short] = ACTIONS(5080), - [anon_sym_LBRACK] = ACTIONS(5082), - [anon_sym_EQ] = ACTIONS(5080), - [anon_sym_const] = ACTIONS(5080), - [anon_sym_constexpr] = ACTIONS(5080), - [anon_sym_volatile] = ACTIONS(5080), - [anon_sym_restrict] = ACTIONS(5080), - [anon_sym___restrict__] = ACTIONS(5080), - [anon_sym__Atomic] = ACTIONS(5080), - [anon_sym__Noreturn] = ACTIONS(5080), - [anon_sym_noreturn] = ACTIONS(5080), - [anon_sym__Nonnull] = ACTIONS(5080), - [anon_sym_mutable] = ACTIONS(5080), - [anon_sym_constinit] = ACTIONS(5080), - [anon_sym_consteval] = ACTIONS(5080), - [anon_sym_alignas] = ACTIONS(5080), - [anon_sym__Alignas] = ACTIONS(5080), - [sym_primitive_type] = ACTIONS(5080), - [anon_sym_QMARK] = ACTIONS(5082), - [anon_sym_STAR_EQ] = ACTIONS(5082), - [anon_sym_SLASH_EQ] = ACTIONS(5082), - [anon_sym_PERCENT_EQ] = ACTIONS(5082), - [anon_sym_PLUS_EQ] = ACTIONS(5082), - [anon_sym_DASH_EQ] = ACTIONS(5082), - [anon_sym_LT_LT_EQ] = ACTIONS(5082), - [anon_sym_GT_GT_EQ] = ACTIONS(5080), - [anon_sym_AMP_EQ] = ACTIONS(5082), - [anon_sym_CARET_EQ] = ACTIONS(5082), - [anon_sym_PIPE_EQ] = ACTIONS(5082), - [anon_sym_and_eq] = ACTIONS(5080), - [anon_sym_or_eq] = ACTIONS(5080), - [anon_sym_xor_eq] = ACTIONS(5080), - [anon_sym_LT_EQ_GT] = ACTIONS(5082), - [anon_sym_or] = ACTIONS(5080), - [anon_sym_and] = ACTIONS(5080), - [anon_sym_bitor] = ACTIONS(5080), - [anon_sym_xor] = ACTIONS(5080), - [anon_sym_bitand] = ACTIONS(5080), - [anon_sym_not_eq] = ACTIONS(5080), - [anon_sym_DASH_DASH] = ACTIONS(5082), - [anon_sym_PLUS_PLUS] = ACTIONS(5082), - [anon_sym_DOT] = ACTIONS(5080), - [anon_sym_DOT_STAR] = ACTIONS(5082), - [anon_sym_DASH_GT] = ACTIONS(5082), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5080), - [anon_sym_decltype] = ACTIONS(5080), - [anon_sym_GT2] = ACTIONS(5082), + [1728] = { + [sym_identifier] = ACTIONS(1940), + [aux_sym_preproc_def_token1] = ACTIONS(1940), + [aux_sym_preproc_if_token1] = ACTIONS(1940), + [aux_sym_preproc_if_token2] = ACTIONS(1940), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1940), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1940), + [aux_sym_preproc_else_token1] = ACTIONS(1940), + [aux_sym_preproc_elif_token1] = ACTIONS(1940), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1940), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1940), + [sym_preproc_directive] = ACTIONS(1940), + [anon_sym_LPAREN2] = ACTIONS(1938), + [anon_sym_TILDE] = ACTIONS(1938), + [anon_sym_STAR] = ACTIONS(1938), + [anon_sym_AMP_AMP] = ACTIONS(1938), + [anon_sym_AMP] = ACTIONS(1940), + [anon_sym_SEMI] = ACTIONS(1938), + [anon_sym___extension__] = ACTIONS(1940), + [anon_sym_typedef] = ACTIONS(1940), + [anon_sym_virtual] = ACTIONS(1940), + [anon_sym_extern] = ACTIONS(1940), + [anon_sym___attribute__] = ACTIONS(1940), + [anon_sym___attribute] = ACTIONS(1940), + [anon_sym_using] = ACTIONS(1940), + [anon_sym_COLON_COLON] = ACTIONS(1938), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1938), + [anon_sym___declspec] = ACTIONS(1940), + [anon_sym___based] = ACTIONS(1940), + [anon_sym_signed] = ACTIONS(1940), + [anon_sym_unsigned] = ACTIONS(1940), + [anon_sym_long] = ACTIONS(1940), + [anon_sym_short] = ACTIONS(1940), + [anon_sym_LBRACK] = ACTIONS(1940), + [anon_sym_static] = ACTIONS(1940), + [anon_sym_register] = ACTIONS(1940), + [anon_sym_inline] = ACTIONS(1940), + [anon_sym___inline] = ACTIONS(1940), + [anon_sym___inline__] = ACTIONS(1940), + [anon_sym___forceinline] = ACTIONS(1940), + [anon_sym_thread_local] = ACTIONS(1940), + [anon_sym___thread] = ACTIONS(1940), + [anon_sym_const] = ACTIONS(1940), + [anon_sym_constexpr] = ACTIONS(1940), + [anon_sym_volatile] = ACTIONS(1940), + [anon_sym_restrict] = ACTIONS(1940), + [anon_sym___restrict__] = ACTIONS(1940), + [anon_sym__Atomic] = ACTIONS(1940), + [anon_sym__Noreturn] = ACTIONS(1940), + [anon_sym_noreturn] = ACTIONS(1940), + [anon_sym__Nonnull] = ACTIONS(1940), + [anon_sym_mutable] = ACTIONS(1940), + [anon_sym_constinit] = ACTIONS(1940), + [anon_sym_consteval] = ACTIONS(1940), + [anon_sym_alignas] = ACTIONS(1940), + [anon_sym__Alignas] = ACTIONS(1940), + [sym_primitive_type] = ACTIONS(1940), + [anon_sym_enum] = ACTIONS(1940), + [anon_sym_class] = ACTIONS(1940), + [anon_sym_struct] = ACTIONS(1940), + [anon_sym_union] = ACTIONS(1940), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1940), + [anon_sym_decltype] = ACTIONS(1940), + [anon_sym_explicit] = ACTIONS(1940), + [anon_sym_typename] = ACTIONS(1940), + [anon_sym_private] = ACTIONS(1940), + [anon_sym_template] = ACTIONS(1940), + [anon_sym_operator] = ACTIONS(1940), + [anon_sym_friend] = ACTIONS(1940), + [anon_sym_public] = ACTIONS(1940), + [anon_sym_protected] = ACTIONS(1940), + [anon_sym_static_assert] = ACTIONS(1940), + [anon_sym_catch] = ACTIONS(1940), }, - [1663] = { - [sym__declaration_modifiers] = STATE(2061), - [sym__declaration_specifiers] = STATE(3972), - [sym_attribute_specifier] = STATE(2061), - [sym_attribute_declaration] = STATE(2061), - [sym_ms_declspec_modifier] = STATE(2061), - [sym_storage_class_specifier] = STATE(2061), - [sym_type_qualifier] = STATE(2061), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_parameter_declaration] = STATE(7744), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym_dependent_type] = STATE(2523), - [sym_type_parameter_declaration] = STATE(7744), - [sym_variadic_type_parameter_declaration] = STATE(7744), - [sym_optional_type_parameter_declaration] = STATE(7744), - [sym_template_template_parameter_declaration] = STATE(7744), - [sym_optional_parameter_declaration] = STATE(7744), - [sym_variadic_parameter_declaration] = STATE(7744), - [sym_template_type] = STATE(2406), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(6606), - [sym_qualified_type_identifier] = STATE(3015), - [aux_sym__declaration_specifiers_repeat1] = STATE(2061), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [sym_identifier] = ACTIONS(5010), + [1729] = { + [sym__declaration_modifiers] = STATE(2121), + [sym__declaration_specifiers] = STATE(3995), + [sym_attribute_specifier] = STATE(2121), + [sym_attribute_declaration] = STATE(2121), + [sym_ms_declspec_modifier] = STATE(2121), + [sym_storage_class_specifier] = STATE(2121), + [sym_type_qualifier] = STATE(2121), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_parameter_declaration] = STATE(7750), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym_dependent_type] = STATE(2558), + [sym_optional_parameter_declaration] = STATE(7750), + [sym_variadic_parameter_declaration] = STATE(7750), + [sym_template_type] = STATE(2439), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(6746), + [sym_qualified_type_identifier] = STATE(3138), + [aux_sym__declaration_specifiers_repeat1] = STATE(2121), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(5018), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5452), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1878), + [anon_sym_virtual] = ACTIONS(1870), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5020), + [anon_sym_COLON_COLON] = ACTIONS(5028), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), [anon_sym_signed] = ACTIONS(59), @@ -244254,3549 +250825,3422 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2999), - [anon_sym_enum] = ACTIONS(1884), - [anon_sym_class] = ACTIONS(5362), - [anon_sym_struct] = ACTIONS(1888), - [anon_sym_union] = ACTIONS(1890), + [sym_primitive_type] = ACTIONS(3019), + [anon_sym_enum] = ACTIONS(1874), + [anon_sym_class] = ACTIONS(1876), + [anon_sym_struct] = ACTIONS(1878), + [anon_sym_union] = ACTIONS(1880), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(5364), - [anon_sym_template] = ACTIONS(5366), + [anon_sym_typename] = ACTIONS(1882), + [anon_sym_template] = ACTIONS(1268), }, - [1664] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(4953), - [anon_sym_COMMA] = ACTIONS(4953), - [anon_sym_RPAREN] = ACTIONS(4953), - [anon_sym_LPAREN2] = ACTIONS(4953), - [anon_sym_DASH] = ACTIONS(4951), - [anon_sym_PLUS] = ACTIONS(4951), - [anon_sym_STAR] = ACTIONS(4951), - [anon_sym_SLASH] = ACTIONS(4951), - [anon_sym_PERCENT] = ACTIONS(4951), - [anon_sym_PIPE_PIPE] = ACTIONS(4953), - [anon_sym_AMP_AMP] = ACTIONS(4953), - [anon_sym_PIPE] = ACTIONS(4951), - [anon_sym_CARET] = ACTIONS(4951), - [anon_sym_AMP] = ACTIONS(4951), - [anon_sym_EQ_EQ] = ACTIONS(4953), - [anon_sym_BANG_EQ] = ACTIONS(4953), - [anon_sym_GT] = ACTIONS(4951), - [anon_sym_GT_EQ] = ACTIONS(4953), - [anon_sym_LT_EQ] = ACTIONS(4951), - [anon_sym_LT] = ACTIONS(4951), - [anon_sym_LT_LT] = ACTIONS(4951), - [anon_sym_GT_GT] = ACTIONS(4951), - [anon_sym___extension__] = ACTIONS(4953), - [anon_sym___attribute__] = ACTIONS(4953), - [anon_sym___attribute] = ACTIONS(4951), - [anon_sym_COLON] = ACTIONS(4951), - [anon_sym_COLON_COLON] = ACTIONS(4953), - [anon_sym_LBRACE] = ACTIONS(4953), - [anon_sym_LBRACK] = ACTIONS(4953), - [anon_sym_EQ] = ACTIONS(4951), - [anon_sym_const] = ACTIONS(4951), - [anon_sym_constexpr] = ACTIONS(4953), - [anon_sym_volatile] = ACTIONS(4953), - [anon_sym_restrict] = ACTIONS(4953), - [anon_sym___restrict__] = ACTIONS(4953), - [anon_sym__Atomic] = ACTIONS(4953), - [anon_sym__Noreturn] = ACTIONS(4953), - [anon_sym_noreturn] = ACTIONS(4953), - [anon_sym__Nonnull] = ACTIONS(4953), - [anon_sym_mutable] = ACTIONS(4953), - [anon_sym_constinit] = ACTIONS(4953), - [anon_sym_consteval] = ACTIONS(4953), - [anon_sym_alignas] = ACTIONS(4953), - [anon_sym__Alignas] = ACTIONS(4953), - [anon_sym_QMARK] = ACTIONS(4953), - [anon_sym_STAR_EQ] = ACTIONS(4953), - [anon_sym_SLASH_EQ] = ACTIONS(4953), - [anon_sym_PERCENT_EQ] = ACTIONS(4953), - [anon_sym_PLUS_EQ] = ACTIONS(4953), - [anon_sym_DASH_EQ] = ACTIONS(4953), - [anon_sym_LT_LT_EQ] = ACTIONS(4953), - [anon_sym_GT_GT_EQ] = ACTIONS(4953), - [anon_sym_AMP_EQ] = ACTIONS(4953), - [anon_sym_CARET_EQ] = ACTIONS(4953), - [anon_sym_PIPE_EQ] = ACTIONS(4953), - [anon_sym_and_eq] = ACTIONS(4953), - [anon_sym_or_eq] = ACTIONS(4953), - [anon_sym_xor_eq] = ACTIONS(4953), - [anon_sym_LT_EQ_GT] = ACTIONS(4953), - [anon_sym_or] = ACTIONS(4951), - [anon_sym_and] = ACTIONS(4951), - [anon_sym_bitor] = ACTIONS(4953), - [anon_sym_xor] = ACTIONS(4951), - [anon_sym_bitand] = ACTIONS(4953), - [anon_sym_not_eq] = ACTIONS(4953), - [anon_sym_DASH_DASH] = ACTIONS(4953), - [anon_sym_PLUS_PLUS] = ACTIONS(4953), - [anon_sym_DOT] = ACTIONS(4951), - [anon_sym_DOT_STAR] = ACTIONS(4953), - [anon_sym_DASH_GT] = ACTIONS(4951), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4953), - [anon_sym_decltype] = ACTIONS(4953), - [anon_sym_final] = ACTIONS(4953), - [anon_sym_override] = ACTIONS(4953), - [anon_sym_DASH_GT_STAR] = ACTIONS(4953), + [1730] = { + [sym_identifier] = ACTIONS(3124), + [aux_sym_preproc_def_token1] = ACTIONS(3124), + [aux_sym_preproc_if_token1] = ACTIONS(3124), + [aux_sym_preproc_if_token2] = ACTIONS(3124), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3124), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3124), + [aux_sym_preproc_else_token1] = ACTIONS(3124), + [aux_sym_preproc_elif_token1] = ACTIONS(3124), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3124), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3124), + [sym_preproc_directive] = ACTIONS(3124), + [anon_sym_LPAREN2] = ACTIONS(3126), + [anon_sym_TILDE] = ACTIONS(3126), + [anon_sym_STAR] = ACTIONS(3126), + [anon_sym_AMP_AMP] = ACTIONS(3126), + [anon_sym_AMP] = ACTIONS(3124), + [anon_sym_SEMI] = ACTIONS(3126), + [anon_sym___extension__] = ACTIONS(3124), + [anon_sym_typedef] = ACTIONS(3124), + [anon_sym_virtual] = ACTIONS(3124), + [anon_sym_extern] = ACTIONS(3124), + [anon_sym___attribute__] = ACTIONS(3124), + [anon_sym___attribute] = ACTIONS(3124), + [anon_sym_using] = ACTIONS(3124), + [anon_sym_COLON_COLON] = ACTIONS(3126), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3126), + [anon_sym___declspec] = ACTIONS(3124), + [anon_sym___based] = ACTIONS(3124), + [anon_sym_signed] = ACTIONS(3124), + [anon_sym_unsigned] = ACTIONS(3124), + [anon_sym_long] = ACTIONS(3124), + [anon_sym_short] = ACTIONS(3124), + [anon_sym_LBRACK] = ACTIONS(3124), + [anon_sym_static] = ACTIONS(3124), + [anon_sym_register] = ACTIONS(3124), + [anon_sym_inline] = ACTIONS(3124), + [anon_sym___inline] = ACTIONS(3124), + [anon_sym___inline__] = ACTIONS(3124), + [anon_sym___forceinline] = ACTIONS(3124), + [anon_sym_thread_local] = ACTIONS(3124), + [anon_sym___thread] = ACTIONS(3124), + [anon_sym_const] = ACTIONS(3124), + [anon_sym_constexpr] = ACTIONS(3124), + [anon_sym_volatile] = ACTIONS(3124), + [anon_sym_restrict] = ACTIONS(3124), + [anon_sym___restrict__] = ACTIONS(3124), + [anon_sym__Atomic] = ACTIONS(3124), + [anon_sym__Noreturn] = ACTIONS(3124), + [anon_sym_noreturn] = ACTIONS(3124), + [anon_sym__Nonnull] = ACTIONS(3124), + [anon_sym_mutable] = ACTIONS(3124), + [anon_sym_constinit] = ACTIONS(3124), + [anon_sym_consteval] = ACTIONS(3124), + [anon_sym_alignas] = ACTIONS(3124), + [anon_sym__Alignas] = ACTIONS(3124), + [sym_primitive_type] = ACTIONS(3124), + [anon_sym_enum] = ACTIONS(3124), + [anon_sym_class] = ACTIONS(3124), + [anon_sym_struct] = ACTIONS(3124), + [anon_sym_union] = ACTIONS(3124), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3124), + [anon_sym_decltype] = ACTIONS(3124), + [anon_sym_explicit] = ACTIONS(3124), + [anon_sym_typename] = ACTIONS(3124), + [anon_sym_private] = ACTIONS(3124), + [anon_sym_template] = ACTIONS(3124), + [anon_sym_operator] = ACTIONS(3124), + [anon_sym_friend] = ACTIONS(3124), + [anon_sym_public] = ACTIONS(3124), + [anon_sym_protected] = ACTIONS(3124), + [anon_sym_static_assert] = ACTIONS(3124), }, - [1665] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(4982), - [anon_sym_COMMA] = ACTIONS(4982), - [anon_sym_RPAREN] = ACTIONS(4982), - [anon_sym_LPAREN2] = ACTIONS(4982), - [anon_sym_DASH] = ACTIONS(4980), - [anon_sym_PLUS] = ACTIONS(4980), - [anon_sym_STAR] = ACTIONS(4980), - [anon_sym_SLASH] = ACTIONS(4980), - [anon_sym_PERCENT] = ACTIONS(4980), - [anon_sym_PIPE_PIPE] = ACTIONS(4982), - [anon_sym_AMP_AMP] = ACTIONS(4982), - [anon_sym_PIPE] = ACTIONS(4980), - [anon_sym_CARET] = ACTIONS(4980), - [anon_sym_AMP] = ACTIONS(4980), - [anon_sym_EQ_EQ] = ACTIONS(4982), - [anon_sym_BANG_EQ] = ACTIONS(4982), - [anon_sym_GT] = ACTIONS(4980), - [anon_sym_GT_EQ] = ACTIONS(4982), - [anon_sym_LT_EQ] = ACTIONS(4980), - [anon_sym_LT] = ACTIONS(4980), - [anon_sym_LT_LT] = ACTIONS(4980), - [anon_sym_GT_GT] = ACTIONS(4980), - [anon_sym___extension__] = ACTIONS(4982), - [anon_sym___attribute__] = ACTIONS(4982), - [anon_sym___attribute] = ACTIONS(4980), - [anon_sym_COLON] = ACTIONS(4980), - [anon_sym_COLON_COLON] = ACTIONS(4982), - [anon_sym_LBRACE] = ACTIONS(4982), - [anon_sym_LBRACK] = ACTIONS(4982), - [anon_sym_EQ] = ACTIONS(4980), - [anon_sym_const] = ACTIONS(4980), - [anon_sym_constexpr] = ACTIONS(4982), - [anon_sym_volatile] = ACTIONS(4982), - [anon_sym_restrict] = ACTIONS(4982), - [anon_sym___restrict__] = ACTIONS(4982), - [anon_sym__Atomic] = ACTIONS(4982), - [anon_sym__Noreturn] = ACTIONS(4982), - [anon_sym_noreturn] = ACTIONS(4982), - [anon_sym__Nonnull] = ACTIONS(4982), - [anon_sym_mutable] = ACTIONS(4982), - [anon_sym_constinit] = ACTIONS(4982), - [anon_sym_consteval] = ACTIONS(4982), - [anon_sym_alignas] = ACTIONS(4982), - [anon_sym__Alignas] = ACTIONS(4982), - [anon_sym_QMARK] = ACTIONS(4982), - [anon_sym_STAR_EQ] = ACTIONS(4982), - [anon_sym_SLASH_EQ] = ACTIONS(4982), - [anon_sym_PERCENT_EQ] = ACTIONS(4982), - [anon_sym_PLUS_EQ] = ACTIONS(4982), - [anon_sym_DASH_EQ] = ACTIONS(4982), - [anon_sym_LT_LT_EQ] = ACTIONS(4982), - [anon_sym_GT_GT_EQ] = ACTIONS(4982), - [anon_sym_AMP_EQ] = ACTIONS(4982), - [anon_sym_CARET_EQ] = ACTIONS(4982), - [anon_sym_PIPE_EQ] = ACTIONS(4982), - [anon_sym_and_eq] = ACTIONS(4982), - [anon_sym_or_eq] = ACTIONS(4982), - [anon_sym_xor_eq] = ACTIONS(4982), - [anon_sym_LT_EQ_GT] = ACTIONS(4982), - [anon_sym_or] = ACTIONS(4980), - [anon_sym_and] = ACTIONS(4980), - [anon_sym_bitor] = ACTIONS(4982), - [anon_sym_xor] = ACTIONS(4980), - [anon_sym_bitand] = ACTIONS(4982), - [anon_sym_not_eq] = ACTIONS(4982), - [anon_sym_DASH_DASH] = ACTIONS(4982), - [anon_sym_PLUS_PLUS] = ACTIONS(4982), - [anon_sym_DOT] = ACTIONS(4980), - [anon_sym_DOT_STAR] = ACTIONS(4982), - [anon_sym_DASH_GT] = ACTIONS(4980), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4982), - [anon_sym_decltype] = ACTIONS(4982), - [anon_sym_final] = ACTIONS(4982), - [anon_sym_override] = ACTIONS(4982), - [anon_sym_DASH_GT_STAR] = ACTIONS(4982), + [1731] = { + [sym_identifier] = ACTIONS(5454), + [aux_sym_preproc_def_token1] = ACTIONS(5454), + [aux_sym_preproc_if_token1] = ACTIONS(5454), + [aux_sym_preproc_if_token2] = ACTIONS(5454), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5454), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5454), + [aux_sym_preproc_else_token1] = ACTIONS(5454), + [aux_sym_preproc_elif_token1] = ACTIONS(5454), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5454), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5454), + [sym_preproc_directive] = ACTIONS(5454), + [anon_sym_LPAREN2] = ACTIONS(5456), + [anon_sym_TILDE] = ACTIONS(5456), + [anon_sym_STAR] = ACTIONS(5456), + [anon_sym_AMP_AMP] = ACTIONS(5456), + [anon_sym_AMP] = ACTIONS(5454), + [anon_sym_SEMI] = ACTIONS(5456), + [anon_sym___extension__] = ACTIONS(5454), + [anon_sym_typedef] = ACTIONS(5454), + [anon_sym_virtual] = ACTIONS(5454), + [anon_sym_extern] = ACTIONS(5454), + [anon_sym___attribute__] = ACTIONS(5454), + [anon_sym___attribute] = ACTIONS(5454), + [anon_sym_using] = ACTIONS(5454), + [anon_sym_COLON_COLON] = ACTIONS(5456), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5456), + [anon_sym___declspec] = ACTIONS(5454), + [anon_sym___based] = ACTIONS(5454), + [anon_sym_signed] = ACTIONS(5454), + [anon_sym_unsigned] = ACTIONS(5454), + [anon_sym_long] = ACTIONS(5454), + [anon_sym_short] = ACTIONS(5454), + [anon_sym_LBRACK] = ACTIONS(5454), + [anon_sym_static] = ACTIONS(5454), + [anon_sym_register] = ACTIONS(5454), + [anon_sym_inline] = ACTIONS(5454), + [anon_sym___inline] = ACTIONS(5454), + [anon_sym___inline__] = ACTIONS(5454), + [anon_sym___forceinline] = ACTIONS(5454), + [anon_sym_thread_local] = ACTIONS(5454), + [anon_sym___thread] = ACTIONS(5454), + [anon_sym_const] = ACTIONS(5454), + [anon_sym_constexpr] = ACTIONS(5454), + [anon_sym_volatile] = ACTIONS(5454), + [anon_sym_restrict] = ACTIONS(5454), + [anon_sym___restrict__] = ACTIONS(5454), + [anon_sym__Atomic] = ACTIONS(5454), + [anon_sym__Noreturn] = ACTIONS(5454), + [anon_sym_noreturn] = ACTIONS(5454), + [anon_sym__Nonnull] = ACTIONS(5454), + [anon_sym_mutable] = ACTIONS(5454), + [anon_sym_constinit] = ACTIONS(5454), + [anon_sym_consteval] = ACTIONS(5454), + [anon_sym_alignas] = ACTIONS(5454), + [anon_sym__Alignas] = ACTIONS(5454), + [sym_primitive_type] = ACTIONS(5454), + [anon_sym_enum] = ACTIONS(5454), + [anon_sym_class] = ACTIONS(5454), + [anon_sym_struct] = ACTIONS(5454), + [anon_sym_union] = ACTIONS(5454), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5454), + [anon_sym_decltype] = ACTIONS(5454), + [anon_sym_explicit] = ACTIONS(5454), + [anon_sym_typename] = ACTIONS(5454), + [anon_sym_private] = ACTIONS(5454), + [anon_sym_template] = ACTIONS(5454), + [anon_sym_operator] = ACTIONS(5454), + [anon_sym_friend] = ACTIONS(5454), + [anon_sym_public] = ACTIONS(5454), + [anon_sym_protected] = ACTIONS(5454), + [anon_sym_static_assert] = ACTIONS(5454), }, - [1666] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(4986), - [anon_sym_COMMA] = ACTIONS(4986), - [anon_sym_RPAREN] = ACTIONS(4986), - [anon_sym_LPAREN2] = ACTIONS(4986), - [anon_sym_DASH] = ACTIONS(4984), - [anon_sym_PLUS] = ACTIONS(4984), - [anon_sym_STAR] = ACTIONS(4984), - [anon_sym_SLASH] = ACTIONS(4984), - [anon_sym_PERCENT] = ACTIONS(4984), - [anon_sym_PIPE_PIPE] = ACTIONS(4986), - [anon_sym_AMP_AMP] = ACTIONS(4986), - [anon_sym_PIPE] = ACTIONS(4984), - [anon_sym_CARET] = ACTIONS(4984), - [anon_sym_AMP] = ACTIONS(4984), - [anon_sym_EQ_EQ] = ACTIONS(4986), - [anon_sym_BANG_EQ] = ACTIONS(4986), - [anon_sym_GT] = ACTIONS(4984), - [anon_sym_GT_EQ] = ACTIONS(4986), - [anon_sym_LT_EQ] = ACTIONS(4984), - [anon_sym_LT] = ACTIONS(4984), - [anon_sym_LT_LT] = ACTIONS(4984), - [anon_sym_GT_GT] = ACTIONS(4984), - [anon_sym___extension__] = ACTIONS(4986), - [anon_sym___attribute__] = ACTIONS(4986), - [anon_sym___attribute] = ACTIONS(4984), - [anon_sym_COLON] = ACTIONS(4984), - [anon_sym_COLON_COLON] = ACTIONS(4986), - [anon_sym_LBRACE] = ACTIONS(4986), - [anon_sym_LBRACK] = ACTIONS(4986), - [anon_sym_EQ] = ACTIONS(4984), - [anon_sym_const] = ACTIONS(4984), - [anon_sym_constexpr] = ACTIONS(4986), - [anon_sym_volatile] = ACTIONS(4986), - [anon_sym_restrict] = ACTIONS(4986), - [anon_sym___restrict__] = ACTIONS(4986), - [anon_sym__Atomic] = ACTIONS(4986), - [anon_sym__Noreturn] = ACTIONS(4986), - [anon_sym_noreturn] = ACTIONS(4986), - [anon_sym__Nonnull] = ACTIONS(4986), - [anon_sym_mutable] = ACTIONS(4986), - [anon_sym_constinit] = ACTIONS(4986), - [anon_sym_consteval] = ACTIONS(4986), - [anon_sym_alignas] = ACTIONS(4986), - [anon_sym__Alignas] = ACTIONS(4986), - [anon_sym_QMARK] = ACTIONS(4986), - [anon_sym_STAR_EQ] = ACTIONS(4986), - [anon_sym_SLASH_EQ] = ACTIONS(4986), - [anon_sym_PERCENT_EQ] = ACTIONS(4986), - [anon_sym_PLUS_EQ] = ACTIONS(4986), - [anon_sym_DASH_EQ] = ACTIONS(4986), - [anon_sym_LT_LT_EQ] = ACTIONS(4986), - [anon_sym_GT_GT_EQ] = ACTIONS(4986), - [anon_sym_AMP_EQ] = ACTIONS(4986), - [anon_sym_CARET_EQ] = ACTIONS(4986), - [anon_sym_PIPE_EQ] = ACTIONS(4986), - [anon_sym_and_eq] = ACTIONS(4986), - [anon_sym_or_eq] = ACTIONS(4986), - [anon_sym_xor_eq] = ACTIONS(4986), - [anon_sym_LT_EQ_GT] = ACTIONS(4986), - [anon_sym_or] = ACTIONS(4984), - [anon_sym_and] = ACTIONS(4984), - [anon_sym_bitor] = ACTIONS(4986), - [anon_sym_xor] = ACTIONS(4984), - [anon_sym_bitand] = ACTIONS(4986), - [anon_sym_not_eq] = ACTIONS(4986), - [anon_sym_DASH_DASH] = ACTIONS(4986), - [anon_sym_PLUS_PLUS] = ACTIONS(4986), - [anon_sym_DOT] = ACTIONS(4984), - [anon_sym_DOT_STAR] = ACTIONS(4986), - [anon_sym_DASH_GT] = ACTIONS(4984), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4986), - [anon_sym_decltype] = ACTIONS(4986), - [anon_sym_final] = ACTIONS(4986), - [anon_sym_override] = ACTIONS(4986), - [anon_sym_DASH_GT_STAR] = ACTIONS(4986), + [1732] = { + [sym_identifier] = ACTIONS(5458), + [aux_sym_preproc_def_token1] = ACTIONS(5458), + [aux_sym_preproc_if_token1] = ACTIONS(5458), + [aux_sym_preproc_if_token2] = ACTIONS(5458), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5458), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5458), + [aux_sym_preproc_else_token1] = ACTIONS(5458), + [aux_sym_preproc_elif_token1] = ACTIONS(5458), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5458), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5458), + [sym_preproc_directive] = ACTIONS(5458), + [anon_sym_LPAREN2] = ACTIONS(5460), + [anon_sym_TILDE] = ACTIONS(5460), + [anon_sym_STAR] = ACTIONS(5460), + [anon_sym_AMP_AMP] = ACTIONS(5460), + [anon_sym_AMP] = ACTIONS(5458), + [anon_sym_SEMI] = ACTIONS(5460), + [anon_sym___extension__] = ACTIONS(5458), + [anon_sym_typedef] = ACTIONS(5458), + [anon_sym_virtual] = ACTIONS(5458), + [anon_sym_extern] = ACTIONS(5458), + [anon_sym___attribute__] = ACTIONS(5458), + [anon_sym___attribute] = ACTIONS(5458), + [anon_sym_using] = ACTIONS(5458), + [anon_sym_COLON_COLON] = ACTIONS(5460), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5460), + [anon_sym___declspec] = ACTIONS(5458), + [anon_sym___based] = ACTIONS(5458), + [anon_sym_signed] = ACTIONS(5458), + [anon_sym_unsigned] = ACTIONS(5458), + [anon_sym_long] = ACTIONS(5458), + [anon_sym_short] = ACTIONS(5458), + [anon_sym_LBRACK] = ACTIONS(5458), + [anon_sym_static] = ACTIONS(5458), + [anon_sym_register] = ACTIONS(5458), + [anon_sym_inline] = ACTIONS(5458), + [anon_sym___inline] = ACTIONS(5458), + [anon_sym___inline__] = ACTIONS(5458), + [anon_sym___forceinline] = ACTIONS(5458), + [anon_sym_thread_local] = ACTIONS(5458), + [anon_sym___thread] = ACTIONS(5458), + [anon_sym_const] = ACTIONS(5458), + [anon_sym_constexpr] = ACTIONS(5458), + [anon_sym_volatile] = ACTIONS(5458), + [anon_sym_restrict] = ACTIONS(5458), + [anon_sym___restrict__] = ACTIONS(5458), + [anon_sym__Atomic] = ACTIONS(5458), + [anon_sym__Noreturn] = ACTIONS(5458), + [anon_sym_noreturn] = ACTIONS(5458), + [anon_sym__Nonnull] = ACTIONS(5458), + [anon_sym_mutable] = ACTIONS(5458), + [anon_sym_constinit] = ACTIONS(5458), + [anon_sym_consteval] = ACTIONS(5458), + [anon_sym_alignas] = ACTIONS(5458), + [anon_sym__Alignas] = ACTIONS(5458), + [sym_primitive_type] = ACTIONS(5458), + [anon_sym_enum] = ACTIONS(5458), + [anon_sym_class] = ACTIONS(5458), + [anon_sym_struct] = ACTIONS(5458), + [anon_sym_union] = ACTIONS(5458), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5458), + [anon_sym_decltype] = ACTIONS(5458), + [anon_sym_explicit] = ACTIONS(5458), + [anon_sym_typename] = ACTIONS(5458), + [anon_sym_private] = ACTIONS(5458), + [anon_sym_template] = ACTIONS(5458), + [anon_sym_operator] = ACTIONS(5458), + [anon_sym_friend] = ACTIONS(5458), + [anon_sym_public] = ACTIONS(5458), + [anon_sym_protected] = ACTIONS(5458), + [anon_sym_static_assert] = ACTIONS(5458), }, - [1667] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(4961), - [anon_sym_COMMA] = ACTIONS(4961), - [anon_sym_RPAREN] = ACTIONS(4961), - [anon_sym_LPAREN2] = ACTIONS(4961), - [anon_sym_DASH] = ACTIONS(4959), - [anon_sym_PLUS] = ACTIONS(4959), - [anon_sym_STAR] = ACTIONS(4959), - [anon_sym_SLASH] = ACTIONS(4959), - [anon_sym_PERCENT] = ACTIONS(4959), - [anon_sym_PIPE_PIPE] = ACTIONS(4961), - [anon_sym_AMP_AMP] = ACTIONS(4961), - [anon_sym_PIPE] = ACTIONS(4959), - [anon_sym_CARET] = ACTIONS(4959), - [anon_sym_AMP] = ACTIONS(4959), - [anon_sym_EQ_EQ] = ACTIONS(4961), - [anon_sym_BANG_EQ] = ACTIONS(4961), - [anon_sym_GT] = ACTIONS(4959), - [anon_sym_GT_EQ] = ACTIONS(4961), - [anon_sym_LT_EQ] = ACTIONS(4959), - [anon_sym_LT] = ACTIONS(4959), - [anon_sym_LT_LT] = ACTIONS(4959), - [anon_sym_GT_GT] = ACTIONS(4959), - [anon_sym___extension__] = ACTIONS(4961), - [anon_sym___attribute__] = ACTIONS(4961), - [anon_sym___attribute] = ACTIONS(4959), - [anon_sym_COLON] = ACTIONS(4959), - [anon_sym_COLON_COLON] = ACTIONS(4961), - [anon_sym_LBRACE] = ACTIONS(4961), - [anon_sym_LBRACK] = ACTIONS(4961), - [anon_sym_EQ] = ACTIONS(4959), - [anon_sym_const] = ACTIONS(4959), - [anon_sym_constexpr] = ACTIONS(4961), - [anon_sym_volatile] = ACTIONS(4961), - [anon_sym_restrict] = ACTIONS(4961), - [anon_sym___restrict__] = ACTIONS(4961), - [anon_sym__Atomic] = ACTIONS(4961), - [anon_sym__Noreturn] = ACTIONS(4961), - [anon_sym_noreturn] = ACTIONS(4961), - [anon_sym__Nonnull] = ACTIONS(4961), - [anon_sym_mutable] = ACTIONS(4961), - [anon_sym_constinit] = ACTIONS(4961), - [anon_sym_consteval] = ACTIONS(4961), - [anon_sym_alignas] = ACTIONS(4961), - [anon_sym__Alignas] = ACTIONS(4961), - [anon_sym_QMARK] = ACTIONS(4961), - [anon_sym_STAR_EQ] = ACTIONS(4961), - [anon_sym_SLASH_EQ] = ACTIONS(4961), - [anon_sym_PERCENT_EQ] = ACTIONS(4961), - [anon_sym_PLUS_EQ] = ACTIONS(4961), - [anon_sym_DASH_EQ] = ACTIONS(4961), - [anon_sym_LT_LT_EQ] = ACTIONS(4961), - [anon_sym_GT_GT_EQ] = ACTIONS(4961), - [anon_sym_AMP_EQ] = ACTIONS(4961), - [anon_sym_CARET_EQ] = ACTIONS(4961), - [anon_sym_PIPE_EQ] = ACTIONS(4961), - [anon_sym_and_eq] = ACTIONS(4961), - [anon_sym_or_eq] = ACTIONS(4961), - [anon_sym_xor_eq] = ACTIONS(4961), - [anon_sym_LT_EQ_GT] = ACTIONS(4961), - [anon_sym_or] = ACTIONS(4959), - [anon_sym_and] = ACTIONS(4959), - [anon_sym_bitor] = ACTIONS(4961), - [anon_sym_xor] = ACTIONS(4959), - [anon_sym_bitand] = ACTIONS(4961), - [anon_sym_not_eq] = ACTIONS(4961), - [anon_sym_DASH_DASH] = ACTIONS(4961), - [anon_sym_PLUS_PLUS] = ACTIONS(4961), - [anon_sym_DOT] = ACTIONS(4959), - [anon_sym_DOT_STAR] = ACTIONS(4961), - [anon_sym_DASH_GT] = ACTIONS(4959), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4961), - [anon_sym_decltype] = ACTIONS(4961), - [anon_sym_final] = ACTIONS(4961), - [anon_sym_override] = ACTIONS(4961), - [anon_sym_DASH_GT_STAR] = ACTIONS(4961), + [1733] = { + [sym_identifier] = ACTIONS(5458), + [aux_sym_preproc_def_token1] = ACTIONS(5458), + [aux_sym_preproc_if_token1] = ACTIONS(5458), + [aux_sym_preproc_if_token2] = ACTIONS(5458), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5458), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5458), + [aux_sym_preproc_else_token1] = ACTIONS(5458), + [aux_sym_preproc_elif_token1] = ACTIONS(5458), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5458), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5458), + [sym_preproc_directive] = ACTIONS(5458), + [anon_sym_LPAREN2] = ACTIONS(5460), + [anon_sym_TILDE] = ACTIONS(5460), + [anon_sym_STAR] = ACTIONS(5460), + [anon_sym_AMP_AMP] = ACTIONS(5460), + [anon_sym_AMP] = ACTIONS(5458), + [anon_sym_SEMI] = ACTIONS(5460), + [anon_sym___extension__] = ACTIONS(5458), + [anon_sym_typedef] = ACTIONS(5458), + [anon_sym_virtual] = ACTIONS(5458), + [anon_sym_extern] = ACTIONS(5458), + [anon_sym___attribute__] = ACTIONS(5458), + [anon_sym___attribute] = ACTIONS(5458), + [anon_sym_using] = ACTIONS(5458), + [anon_sym_COLON_COLON] = ACTIONS(5460), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5460), + [anon_sym___declspec] = ACTIONS(5458), + [anon_sym___based] = ACTIONS(5458), + [anon_sym_signed] = ACTIONS(5458), + [anon_sym_unsigned] = ACTIONS(5458), + [anon_sym_long] = ACTIONS(5458), + [anon_sym_short] = ACTIONS(5458), + [anon_sym_LBRACK] = ACTIONS(5458), + [anon_sym_static] = ACTIONS(5458), + [anon_sym_register] = ACTIONS(5458), + [anon_sym_inline] = ACTIONS(5458), + [anon_sym___inline] = ACTIONS(5458), + [anon_sym___inline__] = ACTIONS(5458), + [anon_sym___forceinline] = ACTIONS(5458), + [anon_sym_thread_local] = ACTIONS(5458), + [anon_sym___thread] = ACTIONS(5458), + [anon_sym_const] = ACTIONS(5458), + [anon_sym_constexpr] = ACTIONS(5458), + [anon_sym_volatile] = ACTIONS(5458), + [anon_sym_restrict] = ACTIONS(5458), + [anon_sym___restrict__] = ACTIONS(5458), + [anon_sym__Atomic] = ACTIONS(5458), + [anon_sym__Noreturn] = ACTIONS(5458), + [anon_sym_noreturn] = ACTIONS(5458), + [anon_sym__Nonnull] = ACTIONS(5458), + [anon_sym_mutable] = ACTIONS(5458), + [anon_sym_constinit] = ACTIONS(5458), + [anon_sym_consteval] = ACTIONS(5458), + [anon_sym_alignas] = ACTIONS(5458), + [anon_sym__Alignas] = ACTIONS(5458), + [sym_primitive_type] = ACTIONS(5458), + [anon_sym_enum] = ACTIONS(5458), + [anon_sym_class] = ACTIONS(5458), + [anon_sym_struct] = ACTIONS(5458), + [anon_sym_union] = ACTIONS(5458), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5458), + [anon_sym_decltype] = ACTIONS(5458), + [anon_sym_explicit] = ACTIONS(5458), + [anon_sym_typename] = ACTIONS(5458), + [anon_sym_private] = ACTIONS(5458), + [anon_sym_template] = ACTIONS(5458), + [anon_sym_operator] = ACTIONS(5458), + [anon_sym_friend] = ACTIONS(5458), + [anon_sym_public] = ACTIONS(5458), + [anon_sym_protected] = ACTIONS(5458), + [anon_sym_static_assert] = ACTIONS(5458), }, - [1668] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(4990), - [anon_sym_COMMA] = ACTIONS(4990), - [anon_sym_RPAREN] = ACTIONS(4990), - [anon_sym_LPAREN2] = ACTIONS(4990), - [anon_sym_DASH] = ACTIONS(4988), - [anon_sym_PLUS] = ACTIONS(4988), - [anon_sym_STAR] = ACTIONS(4988), - [anon_sym_SLASH] = ACTIONS(4988), - [anon_sym_PERCENT] = ACTIONS(4988), - [anon_sym_PIPE_PIPE] = ACTIONS(4990), - [anon_sym_AMP_AMP] = ACTIONS(4990), - [anon_sym_PIPE] = ACTIONS(4988), - [anon_sym_CARET] = ACTIONS(4988), - [anon_sym_AMP] = ACTIONS(4988), - [anon_sym_EQ_EQ] = ACTIONS(4990), - [anon_sym_BANG_EQ] = ACTIONS(4990), - [anon_sym_GT] = ACTIONS(4988), - [anon_sym_GT_EQ] = ACTIONS(4990), - [anon_sym_LT_EQ] = ACTIONS(4988), - [anon_sym_LT] = ACTIONS(4988), - [anon_sym_LT_LT] = ACTIONS(4988), - [anon_sym_GT_GT] = ACTIONS(4988), - [anon_sym___extension__] = ACTIONS(4990), - [anon_sym___attribute__] = ACTIONS(4990), - [anon_sym___attribute] = ACTIONS(4988), - [anon_sym_COLON] = ACTIONS(4988), - [anon_sym_COLON_COLON] = ACTIONS(4990), - [anon_sym_LBRACE] = ACTIONS(4990), - [anon_sym_LBRACK] = ACTIONS(4990), - [anon_sym_EQ] = ACTIONS(4988), - [anon_sym_const] = ACTIONS(4988), - [anon_sym_constexpr] = ACTIONS(4990), - [anon_sym_volatile] = ACTIONS(4990), - [anon_sym_restrict] = ACTIONS(4990), - [anon_sym___restrict__] = ACTIONS(4990), - [anon_sym__Atomic] = ACTIONS(4990), - [anon_sym__Noreturn] = ACTIONS(4990), - [anon_sym_noreturn] = ACTIONS(4990), - [anon_sym__Nonnull] = ACTIONS(4990), - [anon_sym_mutable] = ACTIONS(4990), - [anon_sym_constinit] = ACTIONS(4990), - [anon_sym_consteval] = ACTIONS(4990), - [anon_sym_alignas] = ACTIONS(4990), - [anon_sym__Alignas] = ACTIONS(4990), - [anon_sym_QMARK] = ACTIONS(4990), - [anon_sym_STAR_EQ] = ACTIONS(4990), - [anon_sym_SLASH_EQ] = ACTIONS(4990), - [anon_sym_PERCENT_EQ] = ACTIONS(4990), - [anon_sym_PLUS_EQ] = ACTIONS(4990), - [anon_sym_DASH_EQ] = ACTIONS(4990), - [anon_sym_LT_LT_EQ] = ACTIONS(4990), - [anon_sym_GT_GT_EQ] = ACTIONS(4990), - [anon_sym_AMP_EQ] = ACTIONS(4990), - [anon_sym_CARET_EQ] = ACTIONS(4990), - [anon_sym_PIPE_EQ] = ACTIONS(4990), - [anon_sym_and_eq] = ACTIONS(4990), - [anon_sym_or_eq] = ACTIONS(4990), - [anon_sym_xor_eq] = ACTIONS(4990), - [anon_sym_LT_EQ_GT] = ACTIONS(4990), - [anon_sym_or] = ACTIONS(4988), - [anon_sym_and] = ACTIONS(4988), - [anon_sym_bitor] = ACTIONS(4990), - [anon_sym_xor] = ACTIONS(4988), - [anon_sym_bitand] = ACTIONS(4990), - [anon_sym_not_eq] = ACTIONS(4990), - [anon_sym_DASH_DASH] = ACTIONS(4990), - [anon_sym_PLUS_PLUS] = ACTIONS(4990), - [anon_sym_DOT] = ACTIONS(4988), - [anon_sym_DOT_STAR] = ACTIONS(4990), - [anon_sym_DASH_GT] = ACTIONS(4988), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4990), - [anon_sym_decltype] = ACTIONS(4990), - [anon_sym_final] = ACTIONS(4990), - [anon_sym_override] = ACTIONS(4990), - [anon_sym_DASH_GT_STAR] = ACTIONS(4990), + [1734] = { + [sym_identifier] = ACTIONS(2663), + [aux_sym_preproc_def_token1] = ACTIONS(2663), + [aux_sym_preproc_if_token1] = ACTIONS(2663), + [aux_sym_preproc_if_token2] = ACTIONS(2663), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2663), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2663), + [aux_sym_preproc_else_token1] = ACTIONS(2663), + [aux_sym_preproc_elif_token1] = ACTIONS(2663), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2663), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2663), + [sym_preproc_directive] = ACTIONS(2663), + [anon_sym_LPAREN2] = ACTIONS(2665), + [anon_sym_TILDE] = ACTIONS(2665), + [anon_sym_STAR] = ACTIONS(2665), + [anon_sym_AMP_AMP] = ACTIONS(2665), + [anon_sym_AMP] = ACTIONS(2663), + [anon_sym_SEMI] = ACTIONS(2665), + [anon_sym___extension__] = ACTIONS(2663), + [anon_sym_typedef] = ACTIONS(2663), + [anon_sym_virtual] = ACTIONS(2663), + [anon_sym_extern] = ACTIONS(2663), + [anon_sym___attribute__] = ACTIONS(2663), + [anon_sym___attribute] = ACTIONS(2663), + [anon_sym_using] = ACTIONS(2663), + [anon_sym_COLON_COLON] = ACTIONS(2665), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2665), + [anon_sym___declspec] = ACTIONS(2663), + [anon_sym___based] = ACTIONS(2663), + [anon_sym_signed] = ACTIONS(2663), + [anon_sym_unsigned] = ACTIONS(2663), + [anon_sym_long] = ACTIONS(2663), + [anon_sym_short] = ACTIONS(2663), + [anon_sym_LBRACK] = ACTIONS(2663), + [anon_sym_static] = ACTIONS(2663), + [anon_sym_register] = ACTIONS(2663), + [anon_sym_inline] = ACTIONS(2663), + [anon_sym___inline] = ACTIONS(2663), + [anon_sym___inline__] = ACTIONS(2663), + [anon_sym___forceinline] = ACTIONS(2663), + [anon_sym_thread_local] = ACTIONS(2663), + [anon_sym___thread] = ACTIONS(2663), + [anon_sym_const] = ACTIONS(2663), + [anon_sym_constexpr] = ACTIONS(2663), + [anon_sym_volatile] = ACTIONS(2663), + [anon_sym_restrict] = ACTIONS(2663), + [anon_sym___restrict__] = ACTIONS(2663), + [anon_sym__Atomic] = ACTIONS(2663), + [anon_sym__Noreturn] = ACTIONS(2663), + [anon_sym_noreturn] = ACTIONS(2663), + [anon_sym__Nonnull] = ACTIONS(2663), + [anon_sym_mutable] = ACTIONS(2663), + [anon_sym_constinit] = ACTIONS(2663), + [anon_sym_consteval] = ACTIONS(2663), + [anon_sym_alignas] = ACTIONS(2663), + [anon_sym__Alignas] = ACTIONS(2663), + [sym_primitive_type] = ACTIONS(2663), + [anon_sym_enum] = ACTIONS(2663), + [anon_sym_class] = ACTIONS(2663), + [anon_sym_struct] = ACTIONS(2663), + [anon_sym_union] = ACTIONS(2663), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2663), + [anon_sym_decltype] = ACTIONS(2663), + [anon_sym_explicit] = ACTIONS(2663), + [anon_sym_typename] = ACTIONS(2663), + [anon_sym_private] = ACTIONS(2663), + [anon_sym_template] = ACTIONS(2663), + [anon_sym_operator] = ACTIONS(2663), + [anon_sym_friend] = ACTIONS(2663), + [anon_sym_public] = ACTIONS(2663), + [anon_sym_protected] = ACTIONS(2663), + [anon_sym_static_assert] = ACTIONS(2663), }, - [1669] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1669), - [sym_identifier] = ACTIONS(5070), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5072), - [anon_sym_COMMA] = ACTIONS(5072), - [anon_sym_RPAREN] = ACTIONS(5072), - [aux_sym_preproc_if_token2] = ACTIONS(5072), - [aux_sym_preproc_else_token1] = ACTIONS(5072), - [aux_sym_preproc_elif_token1] = ACTIONS(5070), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5072), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5072), - [anon_sym_LPAREN2] = ACTIONS(5072), - [anon_sym_DASH] = ACTIONS(5070), - [anon_sym_PLUS] = ACTIONS(5070), - [anon_sym_STAR] = ACTIONS(5072), - [anon_sym_SLASH] = ACTIONS(5070), - [anon_sym_PERCENT] = ACTIONS(5072), - [anon_sym_PIPE_PIPE] = ACTIONS(5072), - [anon_sym_AMP_AMP] = ACTIONS(5072), - [anon_sym_PIPE] = ACTIONS(5070), - [anon_sym_CARET] = ACTIONS(5072), - [anon_sym_AMP] = ACTIONS(5070), - [anon_sym_EQ_EQ] = ACTIONS(5072), - [anon_sym_BANG_EQ] = ACTIONS(5072), - [anon_sym_GT] = ACTIONS(5070), - [anon_sym_GT_EQ] = ACTIONS(5072), - [anon_sym_LT_EQ] = ACTIONS(5070), - [anon_sym_LT] = ACTIONS(5070), - [anon_sym_LT_LT] = ACTIONS(5072), - [anon_sym_GT_GT] = ACTIONS(5072), - [anon_sym_SEMI] = ACTIONS(5072), - [anon_sym___extension__] = ACTIONS(5070), - [anon_sym___attribute__] = ACTIONS(5070), - [anon_sym___attribute] = ACTIONS(5070), - [anon_sym_COLON] = ACTIONS(5072), - [anon_sym_LBRACE] = ACTIONS(5072), - [anon_sym_RBRACE] = ACTIONS(5072), - [anon_sym_signed] = ACTIONS(5370), - [anon_sym_unsigned] = ACTIONS(5370), - [anon_sym_long] = ACTIONS(5370), - [anon_sym_short] = ACTIONS(5370), - [anon_sym_LBRACK] = ACTIONS(5072), - [anon_sym_RBRACK] = ACTIONS(5072), - [anon_sym_const] = ACTIONS(5070), - [anon_sym_constexpr] = ACTIONS(5070), - [anon_sym_volatile] = ACTIONS(5070), - [anon_sym_restrict] = ACTIONS(5070), - [anon_sym___restrict__] = ACTIONS(5070), - [anon_sym__Atomic] = ACTIONS(5070), - [anon_sym__Noreturn] = ACTIONS(5070), - [anon_sym_noreturn] = ACTIONS(5070), - [anon_sym__Nonnull] = ACTIONS(5070), - [anon_sym_mutable] = ACTIONS(5070), - [anon_sym_constinit] = ACTIONS(5070), - [anon_sym_consteval] = ACTIONS(5070), - [anon_sym_alignas] = ACTIONS(5070), - [anon_sym__Alignas] = ACTIONS(5070), - [sym_primitive_type] = ACTIONS(5070), - [anon_sym_QMARK] = ACTIONS(5072), - [anon_sym_LT_EQ_GT] = ACTIONS(5072), - [anon_sym_or] = ACTIONS(5070), - [anon_sym_and] = ACTIONS(5070), - [anon_sym_bitor] = ACTIONS(5070), - [anon_sym_xor] = ACTIONS(5070), - [anon_sym_bitand] = ACTIONS(5070), - [anon_sym_not_eq] = ACTIONS(5070), - [anon_sym_DASH_DASH] = ACTIONS(5072), - [anon_sym_PLUS_PLUS] = ACTIONS(5072), - [anon_sym_DOT] = ACTIONS(5070), - [anon_sym_DOT_STAR] = ACTIONS(5072), - [anon_sym_DASH_GT] = ACTIONS(5072), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5070), - [anon_sym_decltype] = ACTIONS(5070), - [anon_sym_final] = ACTIONS(5070), - [anon_sym_override] = ACTIONS(5070), - [anon_sym_requires] = ACTIONS(5070), + [1735] = { + [sym_identifier] = ACTIONS(2663), + [aux_sym_preproc_def_token1] = ACTIONS(2663), + [aux_sym_preproc_if_token1] = ACTIONS(2663), + [aux_sym_preproc_if_token2] = ACTIONS(2663), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2663), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2663), + [aux_sym_preproc_else_token1] = ACTIONS(2663), + [aux_sym_preproc_elif_token1] = ACTIONS(2663), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2663), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2663), + [sym_preproc_directive] = ACTIONS(2663), + [anon_sym_LPAREN2] = ACTIONS(2665), + [anon_sym_TILDE] = ACTIONS(2665), + [anon_sym_STAR] = ACTIONS(2665), + [anon_sym_AMP_AMP] = ACTIONS(2665), + [anon_sym_AMP] = ACTIONS(2663), + [anon_sym_SEMI] = ACTIONS(2665), + [anon_sym___extension__] = ACTIONS(2663), + [anon_sym_typedef] = ACTIONS(2663), + [anon_sym_virtual] = ACTIONS(2663), + [anon_sym_extern] = ACTIONS(2663), + [anon_sym___attribute__] = ACTIONS(2663), + [anon_sym___attribute] = ACTIONS(2663), + [anon_sym_using] = ACTIONS(2663), + [anon_sym_COLON_COLON] = ACTIONS(2665), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2665), + [anon_sym___declspec] = ACTIONS(2663), + [anon_sym___based] = ACTIONS(2663), + [anon_sym_signed] = ACTIONS(2663), + [anon_sym_unsigned] = ACTIONS(2663), + [anon_sym_long] = ACTIONS(2663), + [anon_sym_short] = ACTIONS(2663), + [anon_sym_LBRACK] = ACTIONS(2663), + [anon_sym_static] = ACTIONS(2663), + [anon_sym_register] = ACTIONS(2663), + [anon_sym_inline] = ACTIONS(2663), + [anon_sym___inline] = ACTIONS(2663), + [anon_sym___inline__] = ACTIONS(2663), + [anon_sym___forceinline] = ACTIONS(2663), + [anon_sym_thread_local] = ACTIONS(2663), + [anon_sym___thread] = ACTIONS(2663), + [anon_sym_const] = ACTIONS(2663), + [anon_sym_constexpr] = ACTIONS(2663), + [anon_sym_volatile] = ACTIONS(2663), + [anon_sym_restrict] = ACTIONS(2663), + [anon_sym___restrict__] = ACTIONS(2663), + [anon_sym__Atomic] = ACTIONS(2663), + [anon_sym__Noreturn] = ACTIONS(2663), + [anon_sym_noreturn] = ACTIONS(2663), + [anon_sym__Nonnull] = ACTIONS(2663), + [anon_sym_mutable] = ACTIONS(2663), + [anon_sym_constinit] = ACTIONS(2663), + [anon_sym_consteval] = ACTIONS(2663), + [anon_sym_alignas] = ACTIONS(2663), + [anon_sym__Alignas] = ACTIONS(2663), + [sym_primitive_type] = ACTIONS(2663), + [anon_sym_enum] = ACTIONS(2663), + [anon_sym_class] = ACTIONS(2663), + [anon_sym_struct] = ACTIONS(2663), + [anon_sym_union] = ACTIONS(2663), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2663), + [anon_sym_decltype] = ACTIONS(2663), + [anon_sym_explicit] = ACTIONS(2663), + [anon_sym_typename] = ACTIONS(2663), + [anon_sym_private] = ACTIONS(2663), + [anon_sym_template] = ACTIONS(2663), + [anon_sym_operator] = ACTIONS(2663), + [anon_sym_friend] = ACTIONS(2663), + [anon_sym_public] = ACTIONS(2663), + [anon_sym_protected] = ACTIONS(2663), + [anon_sym_static_assert] = ACTIONS(2663), }, - [1670] = { - [sym_string_literal] = STATE(1684), - [sym_template_argument_list] = STATE(2338), - [sym_raw_string_literal] = STATE(1684), - [sym_identifier] = ACTIONS(4154), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4146), - [anon_sym_COMMA] = ACTIONS(4146), - [anon_sym_RPAREN] = ACTIONS(4146), - [aux_sym_preproc_if_token2] = ACTIONS(4146), - [aux_sym_preproc_else_token1] = ACTIONS(4146), - [aux_sym_preproc_elif_token1] = ACTIONS(4154), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4146), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4146), - [anon_sym_LPAREN2] = ACTIONS(4146), - [anon_sym_DASH] = ACTIONS(4154), - [anon_sym_PLUS] = ACTIONS(4154), - [anon_sym_STAR] = ACTIONS(4154), - [anon_sym_SLASH] = ACTIONS(4154), - [anon_sym_PERCENT] = ACTIONS(4154), - [anon_sym_PIPE_PIPE] = ACTIONS(4146), - [anon_sym_AMP_AMP] = ACTIONS(4146), - [anon_sym_PIPE] = ACTIONS(4154), - [anon_sym_CARET] = ACTIONS(4154), - [anon_sym_AMP] = ACTIONS(4154), - [anon_sym_EQ_EQ] = ACTIONS(4146), - [anon_sym_BANG_EQ] = ACTIONS(4146), - [anon_sym_GT] = ACTIONS(4154), - [anon_sym_GT_EQ] = ACTIONS(4146), - [anon_sym_LT_EQ] = ACTIONS(4154), - [anon_sym_LT] = ACTIONS(5373), - [anon_sym_LT_LT] = ACTIONS(4154), - [anon_sym_GT_GT] = ACTIONS(4154), - [anon_sym_SEMI] = ACTIONS(4146), - [anon_sym_COLON] = ACTIONS(4154), - [anon_sym_COLON_COLON] = ACTIONS(4167), - [anon_sym_LBRACE] = ACTIONS(4172), - [anon_sym_RBRACE] = ACTIONS(4146), - [anon_sym_LBRACK] = ACTIONS(4146), - [anon_sym_RBRACK] = ACTIONS(4146), - [anon_sym_EQ] = ACTIONS(4154), - [anon_sym_QMARK] = ACTIONS(4146), - [anon_sym_STAR_EQ] = ACTIONS(4146), - [anon_sym_SLASH_EQ] = ACTIONS(4146), - [anon_sym_PERCENT_EQ] = ACTIONS(4146), - [anon_sym_PLUS_EQ] = ACTIONS(4146), - [anon_sym_DASH_EQ] = ACTIONS(4146), - [anon_sym_LT_LT_EQ] = ACTIONS(4146), - [anon_sym_GT_GT_EQ] = ACTIONS(4146), - [anon_sym_AMP_EQ] = ACTIONS(4146), - [anon_sym_CARET_EQ] = ACTIONS(4146), - [anon_sym_PIPE_EQ] = ACTIONS(4146), - [anon_sym_and_eq] = ACTIONS(4154), - [anon_sym_or_eq] = ACTIONS(4154), - [anon_sym_xor_eq] = ACTIONS(4154), - [anon_sym_LT_EQ_GT] = ACTIONS(4146), - [anon_sym_or] = ACTIONS(4154), - [anon_sym_and] = ACTIONS(4154), - [anon_sym_bitor] = ACTIONS(4154), - [anon_sym_xor] = ACTIONS(4154), - [anon_sym_bitand] = ACTIONS(4154), - [anon_sym_not_eq] = ACTIONS(4154), - [anon_sym_DASH_DASH] = ACTIONS(4146), - [anon_sym_PLUS_PLUS] = ACTIONS(4146), - [anon_sym_DOT] = ACTIONS(4154), - [anon_sym_DOT_STAR] = ACTIONS(4146), - [anon_sym_DASH_GT] = ACTIONS(4146), - [anon_sym_L_DQUOTE] = ACTIONS(1972), - [anon_sym_u_DQUOTE] = ACTIONS(1972), - [anon_sym_U_DQUOTE] = ACTIONS(1972), - [anon_sym_u8_DQUOTE] = ACTIONS(1972), - [anon_sym_DQUOTE] = ACTIONS(1972), + [1736] = { + [sym_identifier] = ACTIONS(5462), + [aux_sym_preproc_def_token1] = ACTIONS(5462), + [aux_sym_preproc_if_token1] = ACTIONS(5462), + [aux_sym_preproc_if_token2] = ACTIONS(5462), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5462), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5462), + [aux_sym_preproc_else_token1] = ACTIONS(5462), + [aux_sym_preproc_elif_token1] = ACTIONS(5462), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5462), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5462), + [sym_preproc_directive] = ACTIONS(5462), + [anon_sym_LPAREN2] = ACTIONS(5464), + [anon_sym_TILDE] = ACTIONS(5464), + [anon_sym_STAR] = ACTIONS(5464), + [anon_sym_AMP_AMP] = ACTIONS(5464), + [anon_sym_AMP] = ACTIONS(5462), + [anon_sym_SEMI] = ACTIONS(5464), + [anon_sym___extension__] = ACTIONS(5462), + [anon_sym_typedef] = ACTIONS(5462), + [anon_sym_virtual] = ACTIONS(5462), + [anon_sym_extern] = ACTIONS(5462), + [anon_sym___attribute__] = ACTIONS(5462), + [anon_sym___attribute] = ACTIONS(5462), + [anon_sym_using] = ACTIONS(5462), + [anon_sym_COLON_COLON] = ACTIONS(5464), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5464), + [anon_sym___declspec] = ACTIONS(5462), + [anon_sym___based] = ACTIONS(5462), + [anon_sym_signed] = ACTIONS(5462), + [anon_sym_unsigned] = ACTIONS(5462), + [anon_sym_long] = ACTIONS(5462), + [anon_sym_short] = ACTIONS(5462), + [anon_sym_LBRACK] = ACTIONS(5462), + [anon_sym_static] = ACTIONS(5462), + [anon_sym_register] = ACTIONS(5462), + [anon_sym_inline] = ACTIONS(5462), + [anon_sym___inline] = ACTIONS(5462), + [anon_sym___inline__] = ACTIONS(5462), + [anon_sym___forceinline] = ACTIONS(5462), + [anon_sym_thread_local] = ACTIONS(5462), + [anon_sym___thread] = ACTIONS(5462), + [anon_sym_const] = ACTIONS(5462), + [anon_sym_constexpr] = ACTIONS(5462), + [anon_sym_volatile] = ACTIONS(5462), + [anon_sym_restrict] = ACTIONS(5462), + [anon_sym___restrict__] = ACTIONS(5462), + [anon_sym__Atomic] = ACTIONS(5462), + [anon_sym__Noreturn] = ACTIONS(5462), + [anon_sym_noreturn] = ACTIONS(5462), + [anon_sym__Nonnull] = ACTIONS(5462), + [anon_sym_mutable] = ACTIONS(5462), + [anon_sym_constinit] = ACTIONS(5462), + [anon_sym_consteval] = ACTIONS(5462), + [anon_sym_alignas] = ACTIONS(5462), + [anon_sym__Alignas] = ACTIONS(5462), + [sym_primitive_type] = ACTIONS(5462), + [anon_sym_enum] = ACTIONS(5462), + [anon_sym_class] = ACTIONS(5462), + [anon_sym_struct] = ACTIONS(5462), + [anon_sym_union] = ACTIONS(5462), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5462), + [anon_sym_decltype] = ACTIONS(5462), + [anon_sym_explicit] = ACTIONS(5462), + [anon_sym_typename] = ACTIONS(5462), + [anon_sym_private] = ACTIONS(5462), + [anon_sym_template] = ACTIONS(5462), + [anon_sym_operator] = ACTIONS(5462), + [anon_sym_friend] = ACTIONS(5462), + [anon_sym_public] = ACTIONS(5462), + [anon_sym_protected] = ACTIONS(5462), + [anon_sym_static_assert] = ACTIONS(5462), + }, + [1737] = { + [sym_identifier] = ACTIONS(2731), + [aux_sym_preproc_def_token1] = ACTIONS(2731), + [aux_sym_preproc_if_token1] = ACTIONS(2731), + [aux_sym_preproc_if_token2] = ACTIONS(2731), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2731), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2731), + [aux_sym_preproc_else_token1] = ACTIONS(2731), + [aux_sym_preproc_elif_token1] = ACTIONS(2731), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2731), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2731), + [sym_preproc_directive] = ACTIONS(2731), + [anon_sym_LPAREN2] = ACTIONS(2733), + [anon_sym_TILDE] = ACTIONS(2733), + [anon_sym_STAR] = ACTIONS(2733), + [anon_sym_AMP_AMP] = ACTIONS(2733), + [anon_sym_AMP] = ACTIONS(2731), + [anon_sym_SEMI] = ACTIONS(2733), + [anon_sym___extension__] = ACTIONS(2731), + [anon_sym_typedef] = ACTIONS(2731), + [anon_sym_virtual] = ACTIONS(2731), + [anon_sym_extern] = ACTIONS(2731), + [anon_sym___attribute__] = ACTIONS(2731), + [anon_sym___attribute] = ACTIONS(2731), + [anon_sym_using] = ACTIONS(2731), + [anon_sym_COLON_COLON] = ACTIONS(2733), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2733), + [anon_sym___declspec] = ACTIONS(2731), + [anon_sym___based] = ACTIONS(2731), + [anon_sym_signed] = ACTIONS(2731), + [anon_sym_unsigned] = ACTIONS(2731), + [anon_sym_long] = ACTIONS(2731), + [anon_sym_short] = ACTIONS(2731), + [anon_sym_LBRACK] = ACTIONS(2731), + [anon_sym_static] = ACTIONS(2731), + [anon_sym_register] = ACTIONS(2731), + [anon_sym_inline] = ACTIONS(2731), + [anon_sym___inline] = ACTIONS(2731), + [anon_sym___inline__] = ACTIONS(2731), + [anon_sym___forceinline] = ACTIONS(2731), + [anon_sym_thread_local] = ACTIONS(2731), + [anon_sym___thread] = ACTIONS(2731), + [anon_sym_const] = ACTIONS(2731), + [anon_sym_constexpr] = ACTIONS(2731), + [anon_sym_volatile] = ACTIONS(2731), + [anon_sym_restrict] = ACTIONS(2731), + [anon_sym___restrict__] = ACTIONS(2731), + [anon_sym__Atomic] = ACTIONS(2731), + [anon_sym__Noreturn] = ACTIONS(2731), + [anon_sym_noreturn] = ACTIONS(2731), + [anon_sym__Nonnull] = ACTIONS(2731), + [anon_sym_mutable] = ACTIONS(2731), + [anon_sym_constinit] = ACTIONS(2731), + [anon_sym_consteval] = ACTIONS(2731), + [anon_sym_alignas] = ACTIONS(2731), + [anon_sym__Alignas] = ACTIONS(2731), + [sym_primitive_type] = ACTIONS(2731), + [anon_sym_enum] = ACTIONS(2731), + [anon_sym_class] = ACTIONS(2731), + [anon_sym_struct] = ACTIONS(2731), + [anon_sym_union] = ACTIONS(2731), [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(1982), - [anon_sym_LR_DQUOTE] = ACTIONS(1982), - [anon_sym_uR_DQUOTE] = ACTIONS(1982), - [anon_sym_UR_DQUOTE] = ACTIONS(1982), - [anon_sym_u8R_DQUOTE] = ACTIONS(1982), + [sym_auto] = ACTIONS(2731), + [anon_sym_decltype] = ACTIONS(2731), + [anon_sym_explicit] = ACTIONS(2731), + [anon_sym_typename] = ACTIONS(2731), + [anon_sym_private] = ACTIONS(2731), + [anon_sym_template] = ACTIONS(2731), + [anon_sym_operator] = ACTIONS(2731), + [anon_sym_friend] = ACTIONS(2731), + [anon_sym_public] = ACTIONS(2731), + [anon_sym_protected] = ACTIONS(2731), + [anon_sym_static_assert] = ACTIONS(2731), }, - [1671] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(4957), - [anon_sym_COMMA] = ACTIONS(4957), - [anon_sym_RPAREN] = ACTIONS(4957), - [anon_sym_LPAREN2] = ACTIONS(4957), - [anon_sym_DASH] = ACTIONS(4955), - [anon_sym_PLUS] = ACTIONS(4955), - [anon_sym_STAR] = ACTIONS(4955), - [anon_sym_SLASH] = ACTIONS(4955), - [anon_sym_PERCENT] = ACTIONS(4955), - [anon_sym_PIPE_PIPE] = ACTIONS(4957), - [anon_sym_AMP_AMP] = ACTIONS(4957), - [anon_sym_PIPE] = ACTIONS(4955), - [anon_sym_CARET] = ACTIONS(4955), - [anon_sym_AMP] = ACTIONS(4955), - [anon_sym_EQ_EQ] = ACTIONS(4957), - [anon_sym_BANG_EQ] = ACTIONS(4957), - [anon_sym_GT] = ACTIONS(4955), - [anon_sym_GT_EQ] = ACTIONS(4957), - [anon_sym_LT_EQ] = ACTIONS(4955), - [anon_sym_LT] = ACTIONS(4955), - [anon_sym_LT_LT] = ACTIONS(4955), - [anon_sym_GT_GT] = ACTIONS(4955), - [anon_sym___extension__] = ACTIONS(4957), - [anon_sym___attribute__] = ACTIONS(4957), - [anon_sym___attribute] = ACTIONS(4955), - [anon_sym_COLON] = ACTIONS(4955), - [anon_sym_COLON_COLON] = ACTIONS(4957), - [anon_sym_LBRACE] = ACTIONS(4957), - [anon_sym_LBRACK] = ACTIONS(4957), - [anon_sym_EQ] = ACTIONS(4955), - [anon_sym_const] = ACTIONS(4955), - [anon_sym_constexpr] = ACTIONS(4957), - [anon_sym_volatile] = ACTIONS(4957), - [anon_sym_restrict] = ACTIONS(4957), - [anon_sym___restrict__] = ACTIONS(4957), - [anon_sym__Atomic] = ACTIONS(4957), - [anon_sym__Noreturn] = ACTIONS(4957), - [anon_sym_noreturn] = ACTIONS(4957), - [anon_sym__Nonnull] = ACTIONS(4957), - [anon_sym_mutable] = ACTIONS(4957), - [anon_sym_constinit] = ACTIONS(4957), - [anon_sym_consteval] = ACTIONS(4957), - [anon_sym_alignas] = ACTIONS(4957), - [anon_sym__Alignas] = ACTIONS(4957), - [anon_sym_QMARK] = ACTIONS(4957), - [anon_sym_STAR_EQ] = ACTIONS(4957), - [anon_sym_SLASH_EQ] = ACTIONS(4957), - [anon_sym_PERCENT_EQ] = ACTIONS(4957), - [anon_sym_PLUS_EQ] = ACTIONS(4957), - [anon_sym_DASH_EQ] = ACTIONS(4957), - [anon_sym_LT_LT_EQ] = ACTIONS(4957), - [anon_sym_GT_GT_EQ] = ACTIONS(4957), - [anon_sym_AMP_EQ] = ACTIONS(4957), - [anon_sym_CARET_EQ] = ACTIONS(4957), - [anon_sym_PIPE_EQ] = ACTIONS(4957), - [anon_sym_and_eq] = ACTIONS(4957), - [anon_sym_or_eq] = ACTIONS(4957), - [anon_sym_xor_eq] = ACTIONS(4957), - [anon_sym_LT_EQ_GT] = ACTIONS(4957), - [anon_sym_or] = ACTIONS(4955), - [anon_sym_and] = ACTIONS(4955), - [anon_sym_bitor] = ACTIONS(4957), - [anon_sym_xor] = ACTIONS(4955), - [anon_sym_bitand] = ACTIONS(4957), - [anon_sym_not_eq] = ACTIONS(4957), - [anon_sym_DASH_DASH] = ACTIONS(4957), - [anon_sym_PLUS_PLUS] = ACTIONS(4957), - [anon_sym_DOT] = ACTIONS(4955), - [anon_sym_DOT_STAR] = ACTIONS(4957), - [anon_sym_DASH_GT] = ACTIONS(4955), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4957), - [anon_sym_decltype] = ACTIONS(4957), - [anon_sym_final] = ACTIONS(4957), - [anon_sym_override] = ACTIONS(4957), - [anon_sym_DASH_GT_STAR] = ACTIONS(4957), + [1738] = { + [sym_identifier] = ACTIONS(2731), + [aux_sym_preproc_def_token1] = ACTIONS(2731), + [aux_sym_preproc_if_token1] = ACTIONS(2731), + [aux_sym_preproc_if_token2] = ACTIONS(2731), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2731), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2731), + [aux_sym_preproc_else_token1] = ACTIONS(2731), + [aux_sym_preproc_elif_token1] = ACTIONS(2731), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2731), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2731), + [sym_preproc_directive] = ACTIONS(2731), + [anon_sym_LPAREN2] = ACTIONS(2733), + [anon_sym_TILDE] = ACTIONS(2733), + [anon_sym_STAR] = ACTIONS(2733), + [anon_sym_AMP_AMP] = ACTIONS(2733), + [anon_sym_AMP] = ACTIONS(2731), + [anon_sym_SEMI] = ACTIONS(2733), + [anon_sym___extension__] = ACTIONS(2731), + [anon_sym_typedef] = ACTIONS(2731), + [anon_sym_virtual] = ACTIONS(2731), + [anon_sym_extern] = ACTIONS(2731), + [anon_sym___attribute__] = ACTIONS(2731), + [anon_sym___attribute] = ACTIONS(2731), + [anon_sym_using] = ACTIONS(2731), + [anon_sym_COLON_COLON] = ACTIONS(2733), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2733), + [anon_sym___declspec] = ACTIONS(2731), + [anon_sym___based] = ACTIONS(2731), + [anon_sym_signed] = ACTIONS(2731), + [anon_sym_unsigned] = ACTIONS(2731), + [anon_sym_long] = ACTIONS(2731), + [anon_sym_short] = ACTIONS(2731), + [anon_sym_LBRACK] = ACTIONS(2731), + [anon_sym_static] = ACTIONS(2731), + [anon_sym_register] = ACTIONS(2731), + [anon_sym_inline] = ACTIONS(2731), + [anon_sym___inline] = ACTIONS(2731), + [anon_sym___inline__] = ACTIONS(2731), + [anon_sym___forceinline] = ACTIONS(2731), + [anon_sym_thread_local] = ACTIONS(2731), + [anon_sym___thread] = ACTIONS(2731), + [anon_sym_const] = ACTIONS(2731), + [anon_sym_constexpr] = ACTIONS(2731), + [anon_sym_volatile] = ACTIONS(2731), + [anon_sym_restrict] = ACTIONS(2731), + [anon_sym___restrict__] = ACTIONS(2731), + [anon_sym__Atomic] = ACTIONS(2731), + [anon_sym__Noreturn] = ACTIONS(2731), + [anon_sym_noreturn] = ACTIONS(2731), + [anon_sym__Nonnull] = ACTIONS(2731), + [anon_sym_mutable] = ACTIONS(2731), + [anon_sym_constinit] = ACTIONS(2731), + [anon_sym_consteval] = ACTIONS(2731), + [anon_sym_alignas] = ACTIONS(2731), + [anon_sym__Alignas] = ACTIONS(2731), + [sym_primitive_type] = ACTIONS(2731), + [anon_sym_enum] = ACTIONS(2731), + [anon_sym_class] = ACTIONS(2731), + [anon_sym_struct] = ACTIONS(2731), + [anon_sym_union] = ACTIONS(2731), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2731), + [anon_sym_decltype] = ACTIONS(2731), + [anon_sym_explicit] = ACTIONS(2731), + [anon_sym_typename] = ACTIONS(2731), + [anon_sym_private] = ACTIONS(2731), + [anon_sym_template] = ACTIONS(2731), + [anon_sym_operator] = ACTIONS(2731), + [anon_sym_friend] = ACTIONS(2731), + [anon_sym_public] = ACTIONS(2731), + [anon_sym_protected] = ACTIONS(2731), + [anon_sym_static_assert] = ACTIONS(2731), }, - [1672] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1674), - [sym_identifier] = ACTIONS(5070), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5156), - [anon_sym_COMMA] = ACTIONS(5156), - [anon_sym_RPAREN] = ACTIONS(5156), - [anon_sym_LPAREN2] = ACTIONS(5156), - [anon_sym_DASH] = ACTIONS(5159), - [anon_sym_PLUS] = ACTIONS(5159), - [anon_sym_STAR] = ACTIONS(5159), - [anon_sym_SLASH] = ACTIONS(5159), - [anon_sym_PERCENT] = ACTIONS(5159), - [anon_sym_PIPE_PIPE] = ACTIONS(5156), - [anon_sym_AMP_AMP] = ACTIONS(5156), - [anon_sym_PIPE] = ACTIONS(5159), - [anon_sym_CARET] = ACTIONS(5159), - [anon_sym_AMP] = ACTIONS(5159), - [anon_sym_EQ_EQ] = ACTIONS(5156), - [anon_sym_BANG_EQ] = ACTIONS(5156), - [anon_sym_GT] = ACTIONS(5159), - [anon_sym_GT_EQ] = ACTIONS(5156), - [anon_sym_LT_EQ] = ACTIONS(5159), - [anon_sym_LT] = ACTIONS(5159), - [anon_sym_LT_LT] = ACTIONS(5159), - [anon_sym_GT_GT] = ACTIONS(5159), - [anon_sym___extension__] = ACTIONS(5070), - [anon_sym___attribute__] = ACTIONS(5159), - [anon_sym___attribute] = ACTIONS(5159), - [anon_sym_LBRACE] = ACTIONS(5156), - [anon_sym_signed] = ACTIONS(5376), - [anon_sym_unsigned] = ACTIONS(5376), - [anon_sym_long] = ACTIONS(5376), - [anon_sym_short] = ACTIONS(5376), - [anon_sym_LBRACK] = ACTIONS(5156), - [anon_sym_EQ] = ACTIONS(5159), - [anon_sym_const] = ACTIONS(5070), - [anon_sym_constexpr] = ACTIONS(5070), - [anon_sym_volatile] = ACTIONS(5070), - [anon_sym_restrict] = ACTIONS(5070), - [anon_sym___restrict__] = ACTIONS(5070), - [anon_sym__Atomic] = ACTIONS(5070), - [anon_sym__Noreturn] = ACTIONS(5070), - [anon_sym_noreturn] = ACTIONS(5070), - [anon_sym__Nonnull] = ACTIONS(5070), - [anon_sym_mutable] = ACTIONS(5070), - [anon_sym_constinit] = ACTIONS(5070), - [anon_sym_consteval] = ACTIONS(5070), - [anon_sym_alignas] = ACTIONS(5070), - [anon_sym__Alignas] = ACTIONS(5070), - [sym_primitive_type] = ACTIONS(5070), - [anon_sym_QMARK] = ACTIONS(5156), - [anon_sym_STAR_EQ] = ACTIONS(5156), - [anon_sym_SLASH_EQ] = ACTIONS(5156), - [anon_sym_PERCENT_EQ] = ACTIONS(5156), - [anon_sym_PLUS_EQ] = ACTIONS(5156), - [anon_sym_DASH_EQ] = ACTIONS(5156), - [anon_sym_LT_LT_EQ] = ACTIONS(5156), - [anon_sym_GT_GT_EQ] = ACTIONS(5156), - [anon_sym_AMP_EQ] = ACTIONS(5156), - [anon_sym_CARET_EQ] = ACTIONS(5156), - [anon_sym_PIPE_EQ] = ACTIONS(5156), - [anon_sym_LT_EQ_GT] = ACTIONS(5156), - [anon_sym_or] = ACTIONS(5159), - [anon_sym_and] = ACTIONS(5159), - [anon_sym_bitor] = ACTIONS(5159), - [anon_sym_xor] = ACTIONS(5159), - [anon_sym_bitand] = ACTIONS(5159), - [anon_sym_not_eq] = ACTIONS(5159), - [anon_sym_DASH_DASH] = ACTIONS(5156), - [anon_sym_PLUS_PLUS] = ACTIONS(5156), - [anon_sym_DOT] = ACTIONS(5159), - [anon_sym_DOT_STAR] = ACTIONS(5156), - [anon_sym_DASH_GT] = ACTIONS(5159), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5159), - [anon_sym_decltype] = ACTIONS(5159), - [anon_sym_DASH_GT_STAR] = ACTIONS(5156), + [1739] = { + [sym_identifier] = ACTIONS(2743), + [aux_sym_preproc_def_token1] = ACTIONS(2743), + [aux_sym_preproc_if_token1] = ACTIONS(2743), + [aux_sym_preproc_if_token2] = ACTIONS(2743), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2743), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2743), + [aux_sym_preproc_else_token1] = ACTIONS(2743), + [aux_sym_preproc_elif_token1] = ACTIONS(2743), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2743), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2743), + [sym_preproc_directive] = ACTIONS(2743), + [anon_sym_LPAREN2] = ACTIONS(2745), + [anon_sym_TILDE] = ACTIONS(2745), + [anon_sym_STAR] = ACTIONS(2745), + [anon_sym_AMP_AMP] = ACTIONS(2745), + [anon_sym_AMP] = ACTIONS(2743), + [anon_sym_SEMI] = ACTIONS(2745), + [anon_sym___extension__] = ACTIONS(2743), + [anon_sym_typedef] = ACTIONS(2743), + [anon_sym_virtual] = ACTIONS(2743), + [anon_sym_extern] = ACTIONS(2743), + [anon_sym___attribute__] = ACTIONS(2743), + [anon_sym___attribute] = ACTIONS(2743), + [anon_sym_using] = ACTIONS(2743), + [anon_sym_COLON_COLON] = ACTIONS(2745), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2745), + [anon_sym___declspec] = ACTIONS(2743), + [anon_sym___based] = ACTIONS(2743), + [anon_sym_signed] = ACTIONS(2743), + [anon_sym_unsigned] = ACTIONS(2743), + [anon_sym_long] = ACTIONS(2743), + [anon_sym_short] = ACTIONS(2743), + [anon_sym_LBRACK] = ACTIONS(2743), + [anon_sym_static] = ACTIONS(2743), + [anon_sym_register] = ACTIONS(2743), + [anon_sym_inline] = ACTIONS(2743), + [anon_sym___inline] = ACTIONS(2743), + [anon_sym___inline__] = ACTIONS(2743), + [anon_sym___forceinline] = ACTIONS(2743), + [anon_sym_thread_local] = ACTIONS(2743), + [anon_sym___thread] = ACTIONS(2743), + [anon_sym_const] = ACTIONS(2743), + [anon_sym_constexpr] = ACTIONS(2743), + [anon_sym_volatile] = ACTIONS(2743), + [anon_sym_restrict] = ACTIONS(2743), + [anon_sym___restrict__] = ACTIONS(2743), + [anon_sym__Atomic] = ACTIONS(2743), + [anon_sym__Noreturn] = ACTIONS(2743), + [anon_sym_noreturn] = ACTIONS(2743), + [anon_sym__Nonnull] = ACTIONS(2743), + [anon_sym_mutable] = ACTIONS(2743), + [anon_sym_constinit] = ACTIONS(2743), + [anon_sym_consteval] = ACTIONS(2743), + [anon_sym_alignas] = ACTIONS(2743), + [anon_sym__Alignas] = ACTIONS(2743), + [sym_primitive_type] = ACTIONS(2743), + [anon_sym_enum] = ACTIONS(2743), + [anon_sym_class] = ACTIONS(2743), + [anon_sym_struct] = ACTIONS(2743), + [anon_sym_union] = ACTIONS(2743), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2743), + [anon_sym_decltype] = ACTIONS(2743), + [anon_sym_explicit] = ACTIONS(2743), + [anon_sym_typename] = ACTIONS(2743), + [anon_sym_private] = ACTIONS(2743), + [anon_sym_template] = ACTIONS(2743), + [anon_sym_operator] = ACTIONS(2743), + [anon_sym_friend] = ACTIONS(2743), + [anon_sym_public] = ACTIONS(2743), + [anon_sym_protected] = ACTIONS(2743), + [anon_sym_static_assert] = ACTIONS(2743), }, - [1673] = { - [sym_identifier] = ACTIONS(4996), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5000), - [anon_sym_COMMA] = ACTIONS(5000), - [anon_sym_RPAREN] = ACTIONS(5000), - [anon_sym_LPAREN2] = ACTIONS(5000), - [anon_sym_TILDE] = ACTIONS(5003), - [anon_sym_DASH] = ACTIONS(5005), - [anon_sym_PLUS] = ACTIONS(5005), - [anon_sym_STAR] = ACTIONS(5000), - [anon_sym_SLASH] = ACTIONS(5005), - [anon_sym_PERCENT] = ACTIONS(4998), - [anon_sym_PIPE_PIPE] = ACTIONS(4998), - [anon_sym_AMP_AMP] = ACTIONS(5000), - [anon_sym_PIPE] = ACTIONS(5005), - [anon_sym_CARET] = ACTIONS(4998), - [anon_sym_AMP] = ACTIONS(5007), - [anon_sym_EQ_EQ] = ACTIONS(4998), - [anon_sym_BANG_EQ] = ACTIONS(4998), - [anon_sym_GT] = ACTIONS(5005), - [anon_sym_GT_EQ] = ACTIONS(4998), - [anon_sym_LT_EQ] = ACTIONS(5005), - [anon_sym_LT] = ACTIONS(5005), - [anon_sym_LT_LT] = ACTIONS(4998), - [anon_sym_GT_GT] = ACTIONS(4998), - [anon_sym___extension__] = ACTIONS(4996), - [anon_sym_virtual] = ACTIONS(4996), - [anon_sym_extern] = ACTIONS(4996), - [anon_sym___attribute__] = ACTIONS(4996), - [anon_sym___attribute] = ACTIONS(4996), - [anon_sym_COLON_COLON] = ACTIONS(5003), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5003), - [anon_sym___declspec] = ACTIONS(4996), - [anon_sym___based] = ACTIONS(4996), - [anon_sym_LBRACE] = ACTIONS(5003), - [anon_sym_LBRACK] = ACTIONS(5007), - [anon_sym_static] = ACTIONS(4996), - [anon_sym_EQ] = ACTIONS(4996), - [anon_sym_register] = ACTIONS(4996), - [anon_sym_inline] = ACTIONS(4996), - [anon_sym___inline] = ACTIONS(4996), - [anon_sym___inline__] = ACTIONS(4996), - [anon_sym___forceinline] = ACTIONS(4996), - [anon_sym_thread_local] = ACTIONS(4996), - [anon_sym___thread] = ACTIONS(4996), - [anon_sym_const] = ACTIONS(4996), - [anon_sym_constexpr] = ACTIONS(4996), - [anon_sym_volatile] = ACTIONS(4996), - [anon_sym_restrict] = ACTIONS(4996), - [anon_sym___restrict__] = ACTIONS(4996), - [anon_sym__Atomic] = ACTIONS(4996), - [anon_sym__Noreturn] = ACTIONS(4996), - [anon_sym_noreturn] = ACTIONS(4996), - [anon_sym__Nonnull] = ACTIONS(4996), - [anon_sym_mutable] = ACTIONS(4996), - [anon_sym_constinit] = ACTIONS(4996), - [anon_sym_consteval] = ACTIONS(4996), - [anon_sym_alignas] = ACTIONS(4996), - [anon_sym__Alignas] = ACTIONS(4996), - [anon_sym_QMARK] = ACTIONS(4998), - [anon_sym_LT_EQ_GT] = ACTIONS(4998), - [anon_sym_or] = ACTIONS(5005), - [anon_sym_and] = ACTIONS(5005), - [anon_sym_bitor] = ACTIONS(5005), - [anon_sym_xor] = ACTIONS(5005), - [anon_sym_bitand] = ACTIONS(5005), - [anon_sym_not_eq] = ACTIONS(5005), - [anon_sym_DASH_DASH] = ACTIONS(4998), - [anon_sym_PLUS_PLUS] = ACTIONS(4998), - [anon_sym_DOT] = ACTIONS(5005), - [anon_sym_DOT_STAR] = ACTIONS(4998), - [anon_sym_DASH_GT] = ACTIONS(4998), + [1740] = { + [sym_identifier] = ACTIONS(2743), + [aux_sym_preproc_def_token1] = ACTIONS(2743), + [aux_sym_preproc_if_token1] = ACTIONS(2743), + [aux_sym_preproc_if_token2] = ACTIONS(2743), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2743), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2743), + [aux_sym_preproc_else_token1] = ACTIONS(2743), + [aux_sym_preproc_elif_token1] = ACTIONS(2743), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2743), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2743), + [sym_preproc_directive] = ACTIONS(2743), + [anon_sym_LPAREN2] = ACTIONS(2745), + [anon_sym_TILDE] = ACTIONS(2745), + [anon_sym_STAR] = ACTIONS(2745), + [anon_sym_AMP_AMP] = ACTIONS(2745), + [anon_sym_AMP] = ACTIONS(2743), + [anon_sym_SEMI] = ACTIONS(2745), + [anon_sym___extension__] = ACTIONS(2743), + [anon_sym_typedef] = ACTIONS(2743), + [anon_sym_virtual] = ACTIONS(2743), + [anon_sym_extern] = ACTIONS(2743), + [anon_sym___attribute__] = ACTIONS(2743), + [anon_sym___attribute] = ACTIONS(2743), + [anon_sym_using] = ACTIONS(2743), + [anon_sym_COLON_COLON] = ACTIONS(2745), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2745), + [anon_sym___declspec] = ACTIONS(2743), + [anon_sym___based] = ACTIONS(2743), + [anon_sym_signed] = ACTIONS(2743), + [anon_sym_unsigned] = ACTIONS(2743), + [anon_sym_long] = ACTIONS(2743), + [anon_sym_short] = ACTIONS(2743), + [anon_sym_LBRACK] = ACTIONS(2743), + [anon_sym_static] = ACTIONS(2743), + [anon_sym_register] = ACTIONS(2743), + [anon_sym_inline] = ACTIONS(2743), + [anon_sym___inline] = ACTIONS(2743), + [anon_sym___inline__] = ACTIONS(2743), + [anon_sym___forceinline] = ACTIONS(2743), + [anon_sym_thread_local] = ACTIONS(2743), + [anon_sym___thread] = ACTIONS(2743), + [anon_sym_const] = ACTIONS(2743), + [anon_sym_constexpr] = ACTIONS(2743), + [anon_sym_volatile] = ACTIONS(2743), + [anon_sym_restrict] = ACTIONS(2743), + [anon_sym___restrict__] = ACTIONS(2743), + [anon_sym__Atomic] = ACTIONS(2743), + [anon_sym__Noreturn] = ACTIONS(2743), + [anon_sym_noreturn] = ACTIONS(2743), + [anon_sym__Nonnull] = ACTIONS(2743), + [anon_sym_mutable] = ACTIONS(2743), + [anon_sym_constinit] = ACTIONS(2743), + [anon_sym_consteval] = ACTIONS(2743), + [anon_sym_alignas] = ACTIONS(2743), + [anon_sym__Alignas] = ACTIONS(2743), + [sym_primitive_type] = ACTIONS(2743), + [anon_sym_enum] = ACTIONS(2743), + [anon_sym_class] = ACTIONS(2743), + [anon_sym_struct] = ACTIONS(2743), + [anon_sym_union] = ACTIONS(2743), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4996), - [anon_sym_decltype] = ACTIONS(4996), - [anon_sym_template] = ACTIONS(4996), - [anon_sym_operator] = ACTIONS(4996), + [sym_auto] = ACTIONS(2743), + [anon_sym_decltype] = ACTIONS(2743), + [anon_sym_explicit] = ACTIONS(2743), + [anon_sym_typename] = ACTIONS(2743), + [anon_sym_private] = ACTIONS(2743), + [anon_sym_template] = ACTIONS(2743), + [anon_sym_operator] = ACTIONS(2743), + [anon_sym_friend] = ACTIONS(2743), + [anon_sym_public] = ACTIONS(2743), + [anon_sym_protected] = ACTIONS(2743), + [anon_sym_static_assert] = ACTIONS(2743), }, - [1674] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1674), - [sym_identifier] = ACTIONS(5070), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5072), - [anon_sym_COMMA] = ACTIONS(5072), - [anon_sym_RPAREN] = ACTIONS(5072), - [anon_sym_LPAREN2] = ACTIONS(5072), - [anon_sym_DASH] = ACTIONS(5070), - [anon_sym_PLUS] = ACTIONS(5070), - [anon_sym_STAR] = ACTIONS(5070), - [anon_sym_SLASH] = ACTIONS(5070), - [anon_sym_PERCENT] = ACTIONS(5070), - [anon_sym_PIPE_PIPE] = ACTIONS(5072), - [anon_sym_AMP_AMP] = ACTIONS(5072), - [anon_sym_PIPE] = ACTIONS(5070), - [anon_sym_CARET] = ACTIONS(5070), - [anon_sym_AMP] = ACTIONS(5070), - [anon_sym_EQ_EQ] = ACTIONS(5072), - [anon_sym_BANG_EQ] = ACTIONS(5072), - [anon_sym_GT] = ACTIONS(5070), - [anon_sym_GT_EQ] = ACTIONS(5072), - [anon_sym_LT_EQ] = ACTIONS(5070), - [anon_sym_LT] = ACTIONS(5070), - [anon_sym_LT_LT] = ACTIONS(5070), - [anon_sym_GT_GT] = ACTIONS(5070), - [anon_sym___extension__] = ACTIONS(5070), - [anon_sym___attribute__] = ACTIONS(5070), - [anon_sym___attribute] = ACTIONS(5070), - [anon_sym_LBRACE] = ACTIONS(5072), - [anon_sym_signed] = ACTIONS(5376), - [anon_sym_unsigned] = ACTIONS(5376), - [anon_sym_long] = ACTIONS(5376), - [anon_sym_short] = ACTIONS(5376), - [anon_sym_LBRACK] = ACTIONS(5072), - [anon_sym_EQ] = ACTIONS(5070), - [anon_sym_const] = ACTIONS(5070), - [anon_sym_constexpr] = ACTIONS(5070), - [anon_sym_volatile] = ACTIONS(5070), - [anon_sym_restrict] = ACTIONS(5070), - [anon_sym___restrict__] = ACTIONS(5070), - [anon_sym__Atomic] = ACTIONS(5070), - [anon_sym__Noreturn] = ACTIONS(5070), - [anon_sym_noreturn] = ACTIONS(5070), - [anon_sym__Nonnull] = ACTIONS(5070), - [anon_sym_mutable] = ACTIONS(5070), - [anon_sym_constinit] = ACTIONS(5070), - [anon_sym_consteval] = ACTIONS(5070), - [anon_sym_alignas] = ACTIONS(5070), - [anon_sym__Alignas] = ACTIONS(5070), - [sym_primitive_type] = ACTIONS(5070), - [anon_sym_QMARK] = ACTIONS(5072), - [anon_sym_STAR_EQ] = ACTIONS(5072), - [anon_sym_SLASH_EQ] = ACTIONS(5072), - [anon_sym_PERCENT_EQ] = ACTIONS(5072), - [anon_sym_PLUS_EQ] = ACTIONS(5072), - [anon_sym_DASH_EQ] = ACTIONS(5072), - [anon_sym_LT_LT_EQ] = ACTIONS(5072), - [anon_sym_GT_GT_EQ] = ACTIONS(5072), - [anon_sym_AMP_EQ] = ACTIONS(5072), - [anon_sym_CARET_EQ] = ACTIONS(5072), - [anon_sym_PIPE_EQ] = ACTIONS(5072), - [anon_sym_LT_EQ_GT] = ACTIONS(5072), - [anon_sym_or] = ACTIONS(5070), - [anon_sym_and] = ACTIONS(5070), - [anon_sym_bitor] = ACTIONS(5070), - [anon_sym_xor] = ACTIONS(5070), - [anon_sym_bitand] = ACTIONS(5070), - [anon_sym_not_eq] = ACTIONS(5070), - [anon_sym_DASH_DASH] = ACTIONS(5072), - [anon_sym_PLUS_PLUS] = ACTIONS(5072), - [anon_sym_DOT] = ACTIONS(5070), - [anon_sym_DOT_STAR] = ACTIONS(5072), - [anon_sym_DASH_GT] = ACTIONS(5070), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5070), - [anon_sym_decltype] = ACTIONS(5070), - [anon_sym_DASH_GT_STAR] = ACTIONS(5072), + [1741] = { + [sym_identifier] = ACTIONS(5466), + [aux_sym_preproc_def_token1] = ACTIONS(5466), + [aux_sym_preproc_if_token1] = ACTIONS(5466), + [aux_sym_preproc_if_token2] = ACTIONS(5466), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5466), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5466), + [aux_sym_preproc_else_token1] = ACTIONS(5466), + [aux_sym_preproc_elif_token1] = ACTIONS(5466), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5466), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5466), + [sym_preproc_directive] = ACTIONS(5466), + [anon_sym_LPAREN2] = ACTIONS(5468), + [anon_sym_TILDE] = ACTIONS(5468), + [anon_sym_STAR] = ACTIONS(5468), + [anon_sym_AMP_AMP] = ACTIONS(5468), + [anon_sym_AMP] = ACTIONS(5466), + [anon_sym_SEMI] = ACTIONS(5468), + [anon_sym___extension__] = ACTIONS(5466), + [anon_sym_typedef] = ACTIONS(5466), + [anon_sym_virtual] = ACTIONS(5466), + [anon_sym_extern] = ACTIONS(5466), + [anon_sym___attribute__] = ACTIONS(5466), + [anon_sym___attribute] = ACTIONS(5466), + [anon_sym_using] = ACTIONS(5466), + [anon_sym_COLON_COLON] = ACTIONS(5468), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5468), + [anon_sym___declspec] = ACTIONS(5466), + [anon_sym___based] = ACTIONS(5466), + [anon_sym_signed] = ACTIONS(5466), + [anon_sym_unsigned] = ACTIONS(5466), + [anon_sym_long] = ACTIONS(5466), + [anon_sym_short] = ACTIONS(5466), + [anon_sym_LBRACK] = ACTIONS(5466), + [anon_sym_static] = ACTIONS(5466), + [anon_sym_register] = ACTIONS(5466), + [anon_sym_inline] = ACTIONS(5466), + [anon_sym___inline] = ACTIONS(5466), + [anon_sym___inline__] = ACTIONS(5466), + [anon_sym___forceinline] = ACTIONS(5466), + [anon_sym_thread_local] = ACTIONS(5466), + [anon_sym___thread] = ACTIONS(5466), + [anon_sym_const] = ACTIONS(5466), + [anon_sym_constexpr] = ACTIONS(5466), + [anon_sym_volatile] = ACTIONS(5466), + [anon_sym_restrict] = ACTIONS(5466), + [anon_sym___restrict__] = ACTIONS(5466), + [anon_sym__Atomic] = ACTIONS(5466), + [anon_sym__Noreturn] = ACTIONS(5466), + [anon_sym_noreturn] = ACTIONS(5466), + [anon_sym__Nonnull] = ACTIONS(5466), + [anon_sym_mutable] = ACTIONS(5466), + [anon_sym_constinit] = ACTIONS(5466), + [anon_sym_consteval] = ACTIONS(5466), + [anon_sym_alignas] = ACTIONS(5466), + [anon_sym__Alignas] = ACTIONS(5466), + [sym_primitive_type] = ACTIONS(5466), + [anon_sym_enum] = ACTIONS(5466), + [anon_sym_class] = ACTIONS(5466), + [anon_sym_struct] = ACTIONS(5466), + [anon_sym_union] = ACTIONS(5466), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5466), + [anon_sym_decltype] = ACTIONS(5466), + [anon_sym_explicit] = ACTIONS(5466), + [anon_sym_typename] = ACTIONS(5466), + [anon_sym_private] = ACTIONS(5466), + [anon_sym_template] = ACTIONS(5466), + [anon_sym_operator] = ACTIONS(5466), + [anon_sym_friend] = ACTIONS(5466), + [anon_sym_public] = ACTIONS(5466), + [anon_sym_protected] = ACTIONS(5466), + [anon_sym_static_assert] = ACTIONS(5466), }, - [1675] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(4994), - [anon_sym_COMMA] = ACTIONS(4994), - [anon_sym_RPAREN] = ACTIONS(4994), - [anon_sym_LPAREN2] = ACTIONS(4994), - [anon_sym_DASH] = ACTIONS(4992), - [anon_sym_PLUS] = ACTIONS(4992), - [anon_sym_STAR] = ACTIONS(4992), - [anon_sym_SLASH] = ACTIONS(4992), - [anon_sym_PERCENT] = ACTIONS(4992), - [anon_sym_PIPE_PIPE] = ACTIONS(4994), - [anon_sym_AMP_AMP] = ACTIONS(4994), - [anon_sym_PIPE] = ACTIONS(4992), - [anon_sym_CARET] = ACTIONS(4992), - [anon_sym_AMP] = ACTIONS(4992), - [anon_sym_EQ_EQ] = ACTIONS(4994), - [anon_sym_BANG_EQ] = ACTIONS(4994), - [anon_sym_GT] = ACTIONS(4992), - [anon_sym_GT_EQ] = ACTIONS(4994), - [anon_sym_LT_EQ] = ACTIONS(4992), - [anon_sym_LT] = ACTIONS(4992), - [anon_sym_LT_LT] = ACTIONS(4992), - [anon_sym_GT_GT] = ACTIONS(4992), - [anon_sym___extension__] = ACTIONS(4994), - [anon_sym___attribute__] = ACTIONS(4994), - [anon_sym___attribute] = ACTIONS(4992), - [anon_sym_COLON] = ACTIONS(4992), - [anon_sym_COLON_COLON] = ACTIONS(4994), - [anon_sym_LBRACE] = ACTIONS(4994), - [anon_sym_LBRACK] = ACTIONS(4994), - [anon_sym_EQ] = ACTIONS(4992), - [anon_sym_const] = ACTIONS(4992), - [anon_sym_constexpr] = ACTIONS(4994), - [anon_sym_volatile] = ACTIONS(4994), - [anon_sym_restrict] = ACTIONS(4994), - [anon_sym___restrict__] = ACTIONS(4994), - [anon_sym__Atomic] = ACTIONS(4994), - [anon_sym__Noreturn] = ACTIONS(4994), - [anon_sym_noreturn] = ACTIONS(4994), - [anon_sym__Nonnull] = ACTIONS(4994), - [anon_sym_mutable] = ACTIONS(4994), - [anon_sym_constinit] = ACTIONS(4994), - [anon_sym_consteval] = ACTIONS(4994), - [anon_sym_alignas] = ACTIONS(4994), - [anon_sym__Alignas] = ACTIONS(4994), - [anon_sym_QMARK] = ACTIONS(4994), - [anon_sym_STAR_EQ] = ACTIONS(4994), - [anon_sym_SLASH_EQ] = ACTIONS(4994), - [anon_sym_PERCENT_EQ] = ACTIONS(4994), - [anon_sym_PLUS_EQ] = ACTIONS(4994), - [anon_sym_DASH_EQ] = ACTIONS(4994), - [anon_sym_LT_LT_EQ] = ACTIONS(4994), - [anon_sym_GT_GT_EQ] = ACTIONS(4994), - [anon_sym_AMP_EQ] = ACTIONS(4994), - [anon_sym_CARET_EQ] = ACTIONS(4994), - [anon_sym_PIPE_EQ] = ACTIONS(4994), - [anon_sym_and_eq] = ACTIONS(4994), - [anon_sym_or_eq] = ACTIONS(4994), - [anon_sym_xor_eq] = ACTIONS(4994), - [anon_sym_LT_EQ_GT] = ACTIONS(4994), - [anon_sym_or] = ACTIONS(4992), - [anon_sym_and] = ACTIONS(4992), - [anon_sym_bitor] = ACTIONS(4994), - [anon_sym_xor] = ACTIONS(4992), - [anon_sym_bitand] = ACTIONS(4994), - [anon_sym_not_eq] = ACTIONS(4994), - [anon_sym_DASH_DASH] = ACTIONS(4994), - [anon_sym_PLUS_PLUS] = ACTIONS(4994), - [anon_sym_DOT] = ACTIONS(4992), - [anon_sym_DOT_STAR] = ACTIONS(4994), - [anon_sym_DASH_GT] = ACTIONS(4992), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4994), - [anon_sym_decltype] = ACTIONS(4994), - [anon_sym_final] = ACTIONS(4994), - [anon_sym_override] = ACTIONS(4994), - [anon_sym_DASH_GT_STAR] = ACTIONS(4994), + [1742] = { + [sym_identifier] = ACTIONS(3101), + [aux_sym_preproc_def_token1] = ACTIONS(3101), + [aux_sym_preproc_if_token1] = ACTIONS(3101), + [aux_sym_preproc_if_token2] = ACTIONS(3101), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3101), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3101), + [aux_sym_preproc_else_token1] = ACTIONS(3101), + [aux_sym_preproc_elif_token1] = ACTIONS(3101), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3101), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3101), + [sym_preproc_directive] = ACTIONS(3101), + [anon_sym_LPAREN2] = ACTIONS(3103), + [anon_sym_TILDE] = ACTIONS(3103), + [anon_sym_STAR] = ACTIONS(3103), + [anon_sym_AMP_AMP] = ACTIONS(3103), + [anon_sym_AMP] = ACTIONS(3101), + [anon_sym_SEMI] = ACTIONS(3103), + [anon_sym___extension__] = ACTIONS(3101), + [anon_sym_typedef] = ACTIONS(3101), + [anon_sym_virtual] = ACTIONS(3101), + [anon_sym_extern] = ACTIONS(3101), + [anon_sym___attribute__] = ACTIONS(3101), + [anon_sym___attribute] = ACTIONS(3101), + [anon_sym_using] = ACTIONS(3101), + [anon_sym_COLON_COLON] = ACTIONS(3103), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3103), + [anon_sym___declspec] = ACTIONS(3101), + [anon_sym___based] = ACTIONS(3101), + [anon_sym_signed] = ACTIONS(3101), + [anon_sym_unsigned] = ACTIONS(3101), + [anon_sym_long] = ACTIONS(3101), + [anon_sym_short] = ACTIONS(3101), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_static] = ACTIONS(3101), + [anon_sym_register] = ACTIONS(3101), + [anon_sym_inline] = ACTIONS(3101), + [anon_sym___inline] = ACTIONS(3101), + [anon_sym___inline__] = ACTIONS(3101), + [anon_sym___forceinline] = ACTIONS(3101), + [anon_sym_thread_local] = ACTIONS(3101), + [anon_sym___thread] = ACTIONS(3101), + [anon_sym_const] = ACTIONS(3101), + [anon_sym_constexpr] = ACTIONS(3101), + [anon_sym_volatile] = ACTIONS(3101), + [anon_sym_restrict] = ACTIONS(3101), + [anon_sym___restrict__] = ACTIONS(3101), + [anon_sym__Atomic] = ACTIONS(3101), + [anon_sym__Noreturn] = ACTIONS(3101), + [anon_sym_noreturn] = ACTIONS(3101), + [anon_sym__Nonnull] = ACTIONS(3101), + [anon_sym_mutable] = ACTIONS(3101), + [anon_sym_constinit] = ACTIONS(3101), + [anon_sym_consteval] = ACTIONS(3101), + [anon_sym_alignas] = ACTIONS(3101), + [anon_sym__Alignas] = ACTIONS(3101), + [sym_primitive_type] = ACTIONS(3101), + [anon_sym_enum] = ACTIONS(3101), + [anon_sym_class] = ACTIONS(3101), + [anon_sym_struct] = ACTIONS(3101), + [anon_sym_union] = ACTIONS(3101), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3101), + [anon_sym_decltype] = ACTIONS(3101), + [anon_sym_explicit] = ACTIONS(3101), + [anon_sym_typename] = ACTIONS(3101), + [anon_sym_private] = ACTIONS(3101), + [anon_sym_template] = ACTIONS(3101), + [anon_sym_operator] = ACTIONS(3101), + [anon_sym_friend] = ACTIONS(3101), + [anon_sym_public] = ACTIONS(3101), + [anon_sym_protected] = ACTIONS(3101), + [anon_sym_static_assert] = ACTIONS(3101), }, - [1676] = { - [sym_identifier] = ACTIONS(5080), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5082), - [anon_sym_COMMA] = ACTIONS(5082), - [anon_sym_RPAREN] = ACTIONS(5082), - [anon_sym_LPAREN2] = ACTIONS(5082), - [anon_sym_DASH] = ACTIONS(5080), - [anon_sym_PLUS] = ACTIONS(5080), - [anon_sym_STAR] = ACTIONS(5080), - [anon_sym_SLASH] = ACTIONS(5080), - [anon_sym_PERCENT] = ACTIONS(5080), - [anon_sym_PIPE_PIPE] = ACTIONS(5082), - [anon_sym_AMP_AMP] = ACTIONS(5082), - [anon_sym_PIPE] = ACTIONS(5080), - [anon_sym_CARET] = ACTIONS(5080), - [anon_sym_AMP] = ACTIONS(5080), - [anon_sym_EQ_EQ] = ACTIONS(5082), - [anon_sym_BANG_EQ] = ACTIONS(5082), - [anon_sym_GT] = ACTIONS(5080), - [anon_sym_GT_EQ] = ACTIONS(5082), - [anon_sym_LT_EQ] = ACTIONS(5080), - [anon_sym_LT] = ACTIONS(5080), - [anon_sym_LT_LT] = ACTIONS(5080), - [anon_sym_GT_GT] = ACTIONS(5080), - [anon_sym___extension__] = ACTIONS(5080), - [anon_sym___attribute__] = ACTIONS(5080), - [anon_sym___attribute] = ACTIONS(5080), - [anon_sym_LBRACE] = ACTIONS(5082), - [anon_sym_signed] = ACTIONS(5080), - [anon_sym_unsigned] = ACTIONS(5080), - [anon_sym_long] = ACTIONS(5080), - [anon_sym_short] = ACTIONS(5080), - [anon_sym_LBRACK] = ACTIONS(5082), - [anon_sym_EQ] = ACTIONS(5080), - [anon_sym_const] = ACTIONS(5080), - [anon_sym_constexpr] = ACTIONS(5080), - [anon_sym_volatile] = ACTIONS(5080), - [anon_sym_restrict] = ACTIONS(5080), - [anon_sym___restrict__] = ACTIONS(5080), - [anon_sym__Atomic] = ACTIONS(5080), - [anon_sym__Noreturn] = ACTIONS(5080), - [anon_sym_noreturn] = ACTIONS(5080), - [anon_sym__Nonnull] = ACTIONS(5080), - [anon_sym_mutable] = ACTIONS(5080), - [anon_sym_constinit] = ACTIONS(5080), - [anon_sym_consteval] = ACTIONS(5080), - [anon_sym_alignas] = ACTIONS(5080), - [anon_sym__Alignas] = ACTIONS(5080), - [sym_primitive_type] = ACTIONS(5080), - [anon_sym_QMARK] = ACTIONS(5082), - [anon_sym_STAR_EQ] = ACTIONS(5082), - [anon_sym_SLASH_EQ] = ACTIONS(5082), - [anon_sym_PERCENT_EQ] = ACTIONS(5082), - [anon_sym_PLUS_EQ] = ACTIONS(5082), - [anon_sym_DASH_EQ] = ACTIONS(5082), - [anon_sym_LT_LT_EQ] = ACTIONS(5082), - [anon_sym_GT_GT_EQ] = ACTIONS(5082), - [anon_sym_AMP_EQ] = ACTIONS(5082), - [anon_sym_CARET_EQ] = ACTIONS(5082), - [anon_sym_PIPE_EQ] = ACTIONS(5082), - [anon_sym_LT_EQ_GT] = ACTIONS(5082), - [anon_sym_or] = ACTIONS(5080), - [anon_sym_and] = ACTIONS(5080), - [anon_sym_bitor] = ACTIONS(5080), - [anon_sym_xor] = ACTIONS(5080), - [anon_sym_bitand] = ACTIONS(5080), - [anon_sym_not_eq] = ACTIONS(5080), - [anon_sym_DASH_DASH] = ACTIONS(5082), - [anon_sym_PLUS_PLUS] = ACTIONS(5082), - [anon_sym_DOT] = ACTIONS(5080), - [anon_sym_DOT_STAR] = ACTIONS(5082), - [anon_sym_DASH_GT] = ACTIONS(5080), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5080), - [anon_sym_decltype] = ACTIONS(5080), - [anon_sym_DASH_GT_STAR] = ACTIONS(5082), + [1743] = { + [sym_identifier] = ACTIONS(3105), + [aux_sym_preproc_def_token1] = ACTIONS(3105), + [aux_sym_preproc_if_token1] = ACTIONS(3105), + [aux_sym_preproc_if_token2] = ACTIONS(3105), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3105), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3105), + [aux_sym_preproc_else_token1] = ACTIONS(3105), + [aux_sym_preproc_elif_token1] = ACTIONS(3105), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3105), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3105), + [sym_preproc_directive] = ACTIONS(3105), + [anon_sym_LPAREN2] = ACTIONS(3107), + [anon_sym_TILDE] = ACTIONS(3107), + [anon_sym_STAR] = ACTIONS(3107), + [anon_sym_AMP_AMP] = ACTIONS(3107), + [anon_sym_AMP] = ACTIONS(3105), + [anon_sym_SEMI] = ACTIONS(3107), + [anon_sym___extension__] = ACTIONS(3105), + [anon_sym_typedef] = ACTIONS(3105), + [anon_sym_virtual] = ACTIONS(3105), + [anon_sym_extern] = ACTIONS(3105), + [anon_sym___attribute__] = ACTIONS(3105), + [anon_sym___attribute] = ACTIONS(3105), + [anon_sym_using] = ACTIONS(3105), + [anon_sym_COLON_COLON] = ACTIONS(3107), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3107), + [anon_sym___declspec] = ACTIONS(3105), + [anon_sym___based] = ACTIONS(3105), + [anon_sym_signed] = ACTIONS(3105), + [anon_sym_unsigned] = ACTIONS(3105), + [anon_sym_long] = ACTIONS(3105), + [anon_sym_short] = ACTIONS(3105), + [anon_sym_LBRACK] = ACTIONS(3105), + [anon_sym_static] = ACTIONS(3105), + [anon_sym_register] = ACTIONS(3105), + [anon_sym_inline] = ACTIONS(3105), + [anon_sym___inline] = ACTIONS(3105), + [anon_sym___inline__] = ACTIONS(3105), + [anon_sym___forceinline] = ACTIONS(3105), + [anon_sym_thread_local] = ACTIONS(3105), + [anon_sym___thread] = ACTIONS(3105), + [anon_sym_const] = ACTIONS(3105), + [anon_sym_constexpr] = ACTIONS(3105), + [anon_sym_volatile] = ACTIONS(3105), + [anon_sym_restrict] = ACTIONS(3105), + [anon_sym___restrict__] = ACTIONS(3105), + [anon_sym__Atomic] = ACTIONS(3105), + [anon_sym__Noreturn] = ACTIONS(3105), + [anon_sym_noreturn] = ACTIONS(3105), + [anon_sym__Nonnull] = ACTIONS(3105), + [anon_sym_mutable] = ACTIONS(3105), + [anon_sym_constinit] = ACTIONS(3105), + [anon_sym_consteval] = ACTIONS(3105), + [anon_sym_alignas] = ACTIONS(3105), + [anon_sym__Alignas] = ACTIONS(3105), + [sym_primitive_type] = ACTIONS(3105), + [anon_sym_enum] = ACTIONS(3105), + [anon_sym_class] = ACTIONS(3105), + [anon_sym_struct] = ACTIONS(3105), + [anon_sym_union] = ACTIONS(3105), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3105), + [anon_sym_decltype] = ACTIONS(3105), + [anon_sym_explicit] = ACTIONS(3105), + [anon_sym_typename] = ACTIONS(3105), + [anon_sym_private] = ACTIONS(3105), + [anon_sym_template] = ACTIONS(3105), + [anon_sym_operator] = ACTIONS(3105), + [anon_sym_friend] = ACTIONS(3105), + [anon_sym_public] = ACTIONS(3105), + [anon_sym_protected] = ACTIONS(3105), + [anon_sym_static_assert] = ACTIONS(3105), }, - [1677] = { - [sym_catch_clause] = STATE(1679), - [aux_sym_constructor_try_statement_repeat1] = STATE(1679), - [sym_identifier] = ACTIONS(2547), - [aux_sym_preproc_def_token1] = ACTIONS(2547), - [aux_sym_preproc_if_token1] = ACTIONS(2547), - [aux_sym_preproc_if_token2] = ACTIONS(2547), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2547), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2547), - [aux_sym_preproc_else_token1] = ACTIONS(2547), - [aux_sym_preproc_elif_token1] = ACTIONS(2547), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2547), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2547), - [sym_preproc_directive] = ACTIONS(2547), - [anon_sym_LPAREN2] = ACTIONS(2549), - [anon_sym_TILDE] = ACTIONS(2549), - [anon_sym_STAR] = ACTIONS(2549), - [anon_sym_AMP_AMP] = ACTIONS(2549), - [anon_sym_AMP] = ACTIONS(2547), - [anon_sym_SEMI] = ACTIONS(2549), - [anon_sym___extension__] = ACTIONS(2547), - [anon_sym_typedef] = ACTIONS(2547), - [anon_sym_virtual] = ACTIONS(2547), - [anon_sym_extern] = ACTIONS(2547), - [anon_sym___attribute__] = ACTIONS(2547), - [anon_sym___attribute] = ACTIONS(2547), - [anon_sym_using] = ACTIONS(2547), - [anon_sym_COLON_COLON] = ACTIONS(2549), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2549), - [anon_sym___declspec] = ACTIONS(2547), - [anon_sym___based] = ACTIONS(2547), - [anon_sym_signed] = ACTIONS(2547), - [anon_sym_unsigned] = ACTIONS(2547), - [anon_sym_long] = ACTIONS(2547), - [anon_sym_short] = ACTIONS(2547), - [anon_sym_LBRACK] = ACTIONS(2547), - [anon_sym_static] = ACTIONS(2547), - [anon_sym_register] = ACTIONS(2547), - [anon_sym_inline] = ACTIONS(2547), - [anon_sym___inline] = ACTIONS(2547), - [anon_sym___inline__] = ACTIONS(2547), - [anon_sym___forceinline] = ACTIONS(2547), - [anon_sym_thread_local] = ACTIONS(2547), - [anon_sym___thread] = ACTIONS(2547), - [anon_sym_const] = ACTIONS(2547), - [anon_sym_constexpr] = ACTIONS(2547), - [anon_sym_volatile] = ACTIONS(2547), - [anon_sym_restrict] = ACTIONS(2547), - [anon_sym___restrict__] = ACTIONS(2547), - [anon_sym__Atomic] = ACTIONS(2547), - [anon_sym__Noreturn] = ACTIONS(2547), - [anon_sym_noreturn] = ACTIONS(2547), - [anon_sym__Nonnull] = ACTIONS(2547), - [anon_sym_mutable] = ACTIONS(2547), - [anon_sym_constinit] = ACTIONS(2547), - [anon_sym_consteval] = ACTIONS(2547), - [anon_sym_alignas] = ACTIONS(2547), - [anon_sym__Alignas] = ACTIONS(2547), - [sym_primitive_type] = ACTIONS(2547), - [anon_sym_enum] = ACTIONS(2547), - [anon_sym_class] = ACTIONS(2547), - [anon_sym_struct] = ACTIONS(2547), - [anon_sym_union] = ACTIONS(2547), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2547), - [anon_sym_decltype] = ACTIONS(2547), - [anon_sym_explicit] = ACTIONS(2547), - [anon_sym_typename] = ACTIONS(2547), - [anon_sym_private] = ACTIONS(2547), - [anon_sym_template] = ACTIONS(2547), - [anon_sym_operator] = ACTIONS(2547), - [anon_sym_friend] = ACTIONS(2547), - [anon_sym_public] = ACTIONS(2547), - [anon_sym_protected] = ACTIONS(2547), - [anon_sym_static_assert] = ACTIONS(2547), - [anon_sym_catch] = ACTIONS(5379), + [1744] = { + [sym_identifier] = ACTIONS(2659), + [aux_sym_preproc_def_token1] = ACTIONS(2659), + [aux_sym_preproc_if_token1] = ACTIONS(2659), + [aux_sym_preproc_if_token2] = ACTIONS(2659), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2659), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2659), + [aux_sym_preproc_else_token1] = ACTIONS(2659), + [aux_sym_preproc_elif_token1] = ACTIONS(2659), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2659), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2659), + [sym_preproc_directive] = ACTIONS(2659), + [anon_sym_LPAREN2] = ACTIONS(2661), + [anon_sym_TILDE] = ACTIONS(2661), + [anon_sym_STAR] = ACTIONS(2661), + [anon_sym_AMP_AMP] = ACTIONS(2661), + [anon_sym_AMP] = ACTIONS(2659), + [anon_sym_SEMI] = ACTIONS(2661), + [anon_sym___extension__] = ACTIONS(2659), + [anon_sym_typedef] = ACTIONS(2659), + [anon_sym_virtual] = ACTIONS(2659), + [anon_sym_extern] = ACTIONS(2659), + [anon_sym___attribute__] = ACTIONS(2659), + [anon_sym___attribute] = ACTIONS(2659), + [anon_sym_using] = ACTIONS(2659), + [anon_sym_COLON_COLON] = ACTIONS(2661), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2661), + [anon_sym___declspec] = ACTIONS(2659), + [anon_sym___based] = ACTIONS(2659), + [anon_sym_signed] = ACTIONS(2659), + [anon_sym_unsigned] = ACTIONS(2659), + [anon_sym_long] = ACTIONS(2659), + [anon_sym_short] = ACTIONS(2659), + [anon_sym_LBRACK] = ACTIONS(2659), + [anon_sym_static] = ACTIONS(2659), + [anon_sym_register] = ACTIONS(2659), + [anon_sym_inline] = ACTIONS(2659), + [anon_sym___inline] = ACTIONS(2659), + [anon_sym___inline__] = ACTIONS(2659), + [anon_sym___forceinline] = ACTIONS(2659), + [anon_sym_thread_local] = ACTIONS(2659), + [anon_sym___thread] = ACTIONS(2659), + [anon_sym_const] = ACTIONS(2659), + [anon_sym_constexpr] = ACTIONS(2659), + [anon_sym_volatile] = ACTIONS(2659), + [anon_sym_restrict] = ACTIONS(2659), + [anon_sym___restrict__] = ACTIONS(2659), + [anon_sym__Atomic] = ACTIONS(2659), + [anon_sym__Noreturn] = ACTIONS(2659), + [anon_sym_noreturn] = ACTIONS(2659), + [anon_sym__Nonnull] = ACTIONS(2659), + [anon_sym_mutable] = ACTIONS(2659), + [anon_sym_constinit] = ACTIONS(2659), + [anon_sym_consteval] = ACTIONS(2659), + [anon_sym_alignas] = ACTIONS(2659), + [anon_sym__Alignas] = ACTIONS(2659), + [sym_primitive_type] = ACTIONS(2659), + [anon_sym_enum] = ACTIONS(2659), + [anon_sym_class] = ACTIONS(2659), + [anon_sym_struct] = ACTIONS(2659), + [anon_sym_union] = ACTIONS(2659), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2659), + [anon_sym_decltype] = ACTIONS(2659), + [anon_sym_explicit] = ACTIONS(2659), + [anon_sym_typename] = ACTIONS(2659), + [anon_sym_private] = ACTIONS(2659), + [anon_sym_template] = ACTIONS(2659), + [anon_sym_operator] = ACTIONS(2659), + [anon_sym_friend] = ACTIONS(2659), + [anon_sym_public] = ACTIONS(2659), + [anon_sym_protected] = ACTIONS(2659), + [anon_sym_static_assert] = ACTIONS(2659), }, - [1678] = { - [sym_identifier] = ACTIONS(5381), - [anon_sym_LPAREN2] = ACTIONS(5383), - [anon_sym_BANG] = ACTIONS(5383), - [anon_sym_TILDE] = ACTIONS(5383), - [anon_sym_DASH] = ACTIONS(5381), - [anon_sym_PLUS] = ACTIONS(5381), - [anon_sym_STAR] = ACTIONS(5383), - [anon_sym_AMP] = ACTIONS(5383), - [anon_sym_SEMI] = ACTIONS(5383), - [anon_sym___extension__] = ACTIONS(5381), - [anon_sym_COLON_COLON] = ACTIONS(5383), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5383), - [anon_sym_LBRACE] = ACTIONS(5383), - [anon_sym_LBRACK] = ACTIONS(5381), - [sym_primitive_type] = ACTIONS(5381), - [anon_sym_if] = ACTIONS(5381), - [anon_sym_switch] = ACTIONS(5381), - [anon_sym_case] = ACTIONS(5381), - [anon_sym_default] = ACTIONS(5381), - [anon_sym_while] = ACTIONS(5381), - [anon_sym_do] = ACTIONS(5381), - [anon_sym_for] = ACTIONS(5381), - [anon_sym_return] = ACTIONS(5381), - [anon_sym_break] = ACTIONS(5381), - [anon_sym_continue] = ACTIONS(5381), - [anon_sym_goto] = ACTIONS(5381), - [anon_sym___try] = ACTIONS(5381), - [anon_sym___leave] = ACTIONS(5381), - [anon_sym_not] = ACTIONS(5381), - [anon_sym_compl] = ACTIONS(5381), - [anon_sym_DASH_DASH] = ACTIONS(5383), - [anon_sym_PLUS_PLUS] = ACTIONS(5383), - [anon_sym_sizeof] = ACTIONS(5381), - [anon_sym___alignof__] = ACTIONS(5381), - [anon_sym___alignof] = ACTIONS(5381), - [anon_sym__alignof] = ACTIONS(5381), - [anon_sym_alignof] = ACTIONS(5381), - [anon_sym__Alignof] = ACTIONS(5381), - [anon_sym_offsetof] = ACTIONS(5381), - [anon_sym__Generic] = ACTIONS(5381), - [anon_sym_asm] = ACTIONS(5381), - [anon_sym___asm__] = ACTIONS(5381), - [anon_sym___asm] = ACTIONS(5381), - [sym_number_literal] = ACTIONS(5383), - [anon_sym_L_SQUOTE] = ACTIONS(5383), - [anon_sym_u_SQUOTE] = ACTIONS(5383), - [anon_sym_U_SQUOTE] = ACTIONS(5383), - [anon_sym_u8_SQUOTE] = ACTIONS(5383), - [anon_sym_SQUOTE] = ACTIONS(5383), - [anon_sym_L_DQUOTE] = ACTIONS(5383), - [anon_sym_u_DQUOTE] = ACTIONS(5383), - [anon_sym_U_DQUOTE] = ACTIONS(5383), - [anon_sym_u8_DQUOTE] = ACTIONS(5383), - [anon_sym_DQUOTE] = ACTIONS(5383), - [sym_true] = ACTIONS(5381), - [sym_false] = ACTIONS(5381), - [anon_sym_NULL] = ACTIONS(5381), - [anon_sym_nullptr] = ACTIONS(5381), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(5381), - [anon_sym_template] = ACTIONS(5381), - [anon_sym_try] = ACTIONS(5381), - [anon_sym_delete] = ACTIONS(5381), - [anon_sym_throw] = ACTIONS(5381), - [anon_sym_co_return] = ACTIONS(5381), - [anon_sym_co_yield] = ACTIONS(5381), - [anon_sym_R_DQUOTE] = ACTIONS(5383), - [anon_sym_LR_DQUOTE] = ACTIONS(5383), - [anon_sym_uR_DQUOTE] = ACTIONS(5383), - [anon_sym_UR_DQUOTE] = ACTIONS(5383), - [anon_sym_u8R_DQUOTE] = ACTIONS(5383), - [anon_sym_co_await] = ACTIONS(5381), - [anon_sym_new] = ACTIONS(5381), - [anon_sym_requires] = ACTIONS(5381), - [sym_this] = ACTIONS(5381), + [1745] = { + [sym_identifier] = ACTIONS(2627), + [aux_sym_preproc_def_token1] = ACTIONS(2627), + [aux_sym_preproc_if_token1] = ACTIONS(2627), + [aux_sym_preproc_if_token2] = ACTIONS(2627), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2627), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2627), + [aux_sym_preproc_else_token1] = ACTIONS(2627), + [aux_sym_preproc_elif_token1] = ACTIONS(2627), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2627), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2627), + [sym_preproc_directive] = ACTIONS(2627), + [anon_sym_LPAREN2] = ACTIONS(2629), + [anon_sym_TILDE] = ACTIONS(2629), + [anon_sym_STAR] = ACTIONS(2629), + [anon_sym_AMP_AMP] = ACTIONS(2629), + [anon_sym_AMP] = ACTIONS(2627), + [anon_sym_SEMI] = ACTIONS(2629), + [anon_sym___extension__] = ACTIONS(2627), + [anon_sym_typedef] = ACTIONS(2627), + [anon_sym_virtual] = ACTIONS(2627), + [anon_sym_extern] = ACTIONS(2627), + [anon_sym___attribute__] = ACTIONS(2627), + [anon_sym___attribute] = ACTIONS(2627), + [anon_sym_using] = ACTIONS(2627), + [anon_sym_COLON_COLON] = ACTIONS(2629), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2629), + [anon_sym___declspec] = ACTIONS(2627), + [anon_sym___based] = ACTIONS(2627), + [anon_sym_signed] = ACTIONS(2627), + [anon_sym_unsigned] = ACTIONS(2627), + [anon_sym_long] = ACTIONS(2627), + [anon_sym_short] = ACTIONS(2627), + [anon_sym_LBRACK] = ACTIONS(2627), + [anon_sym_static] = ACTIONS(2627), + [anon_sym_register] = ACTIONS(2627), + [anon_sym_inline] = ACTIONS(2627), + [anon_sym___inline] = ACTIONS(2627), + [anon_sym___inline__] = ACTIONS(2627), + [anon_sym___forceinline] = ACTIONS(2627), + [anon_sym_thread_local] = ACTIONS(2627), + [anon_sym___thread] = ACTIONS(2627), + [anon_sym_const] = ACTIONS(2627), + [anon_sym_constexpr] = ACTIONS(2627), + [anon_sym_volatile] = ACTIONS(2627), + [anon_sym_restrict] = ACTIONS(2627), + [anon_sym___restrict__] = ACTIONS(2627), + [anon_sym__Atomic] = ACTIONS(2627), + [anon_sym__Noreturn] = ACTIONS(2627), + [anon_sym_noreturn] = ACTIONS(2627), + [anon_sym__Nonnull] = ACTIONS(2627), + [anon_sym_mutable] = ACTIONS(2627), + [anon_sym_constinit] = ACTIONS(2627), + [anon_sym_consteval] = ACTIONS(2627), + [anon_sym_alignas] = ACTIONS(2627), + [anon_sym__Alignas] = ACTIONS(2627), + [sym_primitive_type] = ACTIONS(2627), + [anon_sym_enum] = ACTIONS(2627), + [anon_sym_class] = ACTIONS(2627), + [anon_sym_struct] = ACTIONS(2627), + [anon_sym_union] = ACTIONS(2627), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2627), + [anon_sym_decltype] = ACTIONS(2627), + [anon_sym_explicit] = ACTIONS(2627), + [anon_sym_typename] = ACTIONS(2627), + [anon_sym_private] = ACTIONS(2627), + [anon_sym_template] = ACTIONS(2627), + [anon_sym_operator] = ACTIONS(2627), + [anon_sym_friend] = ACTIONS(2627), + [anon_sym_public] = ACTIONS(2627), + [anon_sym_protected] = ACTIONS(2627), + [anon_sym_static_assert] = ACTIONS(2627), }, - [1679] = { - [sym_catch_clause] = STATE(1679), - [aux_sym_constructor_try_statement_repeat1] = STATE(1679), - [sym_identifier] = ACTIONS(2476), - [aux_sym_preproc_def_token1] = ACTIONS(2476), - [aux_sym_preproc_if_token1] = ACTIONS(2476), - [aux_sym_preproc_if_token2] = ACTIONS(2476), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2476), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2476), - [aux_sym_preproc_else_token1] = ACTIONS(2476), - [aux_sym_preproc_elif_token1] = ACTIONS(2476), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2476), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2476), - [sym_preproc_directive] = ACTIONS(2476), - [anon_sym_LPAREN2] = ACTIONS(2478), - [anon_sym_TILDE] = ACTIONS(2478), - [anon_sym_STAR] = ACTIONS(2478), - [anon_sym_AMP_AMP] = ACTIONS(2478), - [anon_sym_AMP] = ACTIONS(2476), - [anon_sym_SEMI] = ACTIONS(2478), - [anon_sym___extension__] = ACTIONS(2476), - [anon_sym_typedef] = ACTIONS(2476), - [anon_sym_virtual] = ACTIONS(2476), - [anon_sym_extern] = ACTIONS(2476), - [anon_sym___attribute__] = ACTIONS(2476), - [anon_sym___attribute] = ACTIONS(2476), - [anon_sym_using] = ACTIONS(2476), - [anon_sym_COLON_COLON] = ACTIONS(2478), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2478), - [anon_sym___declspec] = ACTIONS(2476), - [anon_sym___based] = ACTIONS(2476), - [anon_sym_signed] = ACTIONS(2476), - [anon_sym_unsigned] = ACTIONS(2476), - [anon_sym_long] = ACTIONS(2476), - [anon_sym_short] = ACTIONS(2476), - [anon_sym_LBRACK] = ACTIONS(2476), - [anon_sym_static] = ACTIONS(2476), - [anon_sym_register] = ACTIONS(2476), - [anon_sym_inline] = ACTIONS(2476), - [anon_sym___inline] = ACTIONS(2476), - [anon_sym___inline__] = ACTIONS(2476), - [anon_sym___forceinline] = ACTIONS(2476), - [anon_sym_thread_local] = ACTIONS(2476), - [anon_sym___thread] = ACTIONS(2476), - [anon_sym_const] = ACTIONS(2476), - [anon_sym_constexpr] = ACTIONS(2476), - [anon_sym_volatile] = ACTIONS(2476), - [anon_sym_restrict] = ACTIONS(2476), - [anon_sym___restrict__] = ACTIONS(2476), - [anon_sym__Atomic] = ACTIONS(2476), - [anon_sym__Noreturn] = ACTIONS(2476), - [anon_sym_noreturn] = ACTIONS(2476), - [anon_sym__Nonnull] = ACTIONS(2476), - [anon_sym_mutable] = ACTIONS(2476), - [anon_sym_constinit] = ACTIONS(2476), - [anon_sym_consteval] = ACTIONS(2476), - [anon_sym_alignas] = ACTIONS(2476), - [anon_sym__Alignas] = ACTIONS(2476), - [sym_primitive_type] = ACTIONS(2476), - [anon_sym_enum] = ACTIONS(2476), - [anon_sym_class] = ACTIONS(2476), - [anon_sym_struct] = ACTIONS(2476), - [anon_sym_union] = ACTIONS(2476), + [1746] = { + [sym_identifier] = ACTIONS(2627), + [aux_sym_preproc_def_token1] = ACTIONS(2627), + [aux_sym_preproc_if_token1] = ACTIONS(2627), + [aux_sym_preproc_if_token2] = ACTIONS(2627), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2627), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2627), + [aux_sym_preproc_else_token1] = ACTIONS(2627), + [aux_sym_preproc_elif_token1] = ACTIONS(2627), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2627), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2627), + [sym_preproc_directive] = ACTIONS(2627), + [anon_sym_LPAREN2] = ACTIONS(2629), + [anon_sym_TILDE] = ACTIONS(2629), + [anon_sym_STAR] = ACTIONS(2629), + [anon_sym_AMP_AMP] = ACTIONS(2629), + [anon_sym_AMP] = ACTIONS(2627), + [anon_sym_SEMI] = ACTIONS(2629), + [anon_sym___extension__] = ACTIONS(2627), + [anon_sym_typedef] = ACTIONS(2627), + [anon_sym_virtual] = ACTIONS(2627), + [anon_sym_extern] = ACTIONS(2627), + [anon_sym___attribute__] = ACTIONS(2627), + [anon_sym___attribute] = ACTIONS(2627), + [anon_sym_using] = ACTIONS(2627), + [anon_sym_COLON_COLON] = ACTIONS(2629), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2629), + [anon_sym___declspec] = ACTIONS(2627), + [anon_sym___based] = ACTIONS(2627), + [anon_sym_signed] = ACTIONS(2627), + [anon_sym_unsigned] = ACTIONS(2627), + [anon_sym_long] = ACTIONS(2627), + [anon_sym_short] = ACTIONS(2627), + [anon_sym_LBRACK] = ACTIONS(2627), + [anon_sym_static] = ACTIONS(2627), + [anon_sym_register] = ACTIONS(2627), + [anon_sym_inline] = ACTIONS(2627), + [anon_sym___inline] = ACTIONS(2627), + [anon_sym___inline__] = ACTIONS(2627), + [anon_sym___forceinline] = ACTIONS(2627), + [anon_sym_thread_local] = ACTIONS(2627), + [anon_sym___thread] = ACTIONS(2627), + [anon_sym_const] = ACTIONS(2627), + [anon_sym_constexpr] = ACTIONS(2627), + [anon_sym_volatile] = ACTIONS(2627), + [anon_sym_restrict] = ACTIONS(2627), + [anon_sym___restrict__] = ACTIONS(2627), + [anon_sym__Atomic] = ACTIONS(2627), + [anon_sym__Noreturn] = ACTIONS(2627), + [anon_sym_noreturn] = ACTIONS(2627), + [anon_sym__Nonnull] = ACTIONS(2627), + [anon_sym_mutable] = ACTIONS(2627), + [anon_sym_constinit] = ACTIONS(2627), + [anon_sym_consteval] = ACTIONS(2627), + [anon_sym_alignas] = ACTIONS(2627), + [anon_sym__Alignas] = ACTIONS(2627), + [sym_primitive_type] = ACTIONS(2627), + [anon_sym_enum] = ACTIONS(2627), + [anon_sym_class] = ACTIONS(2627), + [anon_sym_struct] = ACTIONS(2627), + [anon_sym_union] = ACTIONS(2627), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2476), - [anon_sym_decltype] = ACTIONS(2476), - [anon_sym_explicit] = ACTIONS(2476), - [anon_sym_typename] = ACTIONS(2476), - [anon_sym_private] = ACTIONS(2476), - [anon_sym_template] = ACTIONS(2476), - [anon_sym_operator] = ACTIONS(2476), - [anon_sym_friend] = ACTIONS(2476), - [anon_sym_public] = ACTIONS(2476), - [anon_sym_protected] = ACTIONS(2476), - [anon_sym_static_assert] = ACTIONS(2476), - [anon_sym_catch] = ACTIONS(5385), + [sym_auto] = ACTIONS(2627), + [anon_sym_decltype] = ACTIONS(2627), + [anon_sym_explicit] = ACTIONS(2627), + [anon_sym_typename] = ACTIONS(2627), + [anon_sym_private] = ACTIONS(2627), + [anon_sym_template] = ACTIONS(2627), + [anon_sym_operator] = ACTIONS(2627), + [anon_sym_friend] = ACTIONS(2627), + [anon_sym_public] = ACTIONS(2627), + [anon_sym_protected] = ACTIONS(2627), + [anon_sym_static_assert] = ACTIONS(2627), }, - [1680] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(4957), - [anon_sym_COMMA] = ACTIONS(4957), - [anon_sym_LPAREN2] = ACTIONS(4957), - [anon_sym_DASH] = ACTIONS(4955), - [anon_sym_PLUS] = ACTIONS(4955), - [anon_sym_STAR] = ACTIONS(4955), - [anon_sym_SLASH] = ACTIONS(4955), - [anon_sym_PERCENT] = ACTIONS(4955), - [anon_sym_PIPE_PIPE] = ACTIONS(4957), - [anon_sym_AMP_AMP] = ACTIONS(4957), - [anon_sym_PIPE] = ACTIONS(4955), - [anon_sym_CARET] = ACTIONS(4955), - [anon_sym_AMP] = ACTIONS(4955), - [anon_sym_EQ_EQ] = ACTIONS(4957), - [anon_sym_BANG_EQ] = ACTIONS(4957), - [anon_sym_GT] = ACTIONS(4955), - [anon_sym_GT_EQ] = ACTIONS(4955), - [anon_sym_LT_EQ] = ACTIONS(4955), - [anon_sym_LT] = ACTIONS(4955), - [anon_sym_LT_LT] = ACTIONS(4955), - [anon_sym_GT_GT] = ACTIONS(4955), - [anon_sym___extension__] = ACTIONS(4957), - [anon_sym___attribute__] = ACTIONS(4957), - [anon_sym___attribute] = ACTIONS(4955), - [anon_sym_COLON] = ACTIONS(4955), - [anon_sym_COLON_COLON] = ACTIONS(4957), - [anon_sym_LBRACE] = ACTIONS(4957), - [anon_sym_LBRACK] = ACTIONS(4957), - [anon_sym_EQ] = ACTIONS(4955), - [anon_sym_const] = ACTIONS(4955), - [anon_sym_constexpr] = ACTIONS(4957), - [anon_sym_volatile] = ACTIONS(4957), - [anon_sym_restrict] = ACTIONS(4957), - [anon_sym___restrict__] = ACTIONS(4957), - [anon_sym__Atomic] = ACTIONS(4957), - [anon_sym__Noreturn] = ACTIONS(4957), - [anon_sym_noreturn] = ACTIONS(4957), - [anon_sym__Nonnull] = ACTIONS(4957), - [anon_sym_mutable] = ACTIONS(4957), - [anon_sym_constinit] = ACTIONS(4957), - [anon_sym_consteval] = ACTIONS(4957), - [anon_sym_alignas] = ACTIONS(4957), - [anon_sym__Alignas] = ACTIONS(4957), - [anon_sym_QMARK] = ACTIONS(4957), - [anon_sym_STAR_EQ] = ACTIONS(4957), - [anon_sym_SLASH_EQ] = ACTIONS(4957), - [anon_sym_PERCENT_EQ] = ACTIONS(4957), - [anon_sym_PLUS_EQ] = ACTIONS(4957), - [anon_sym_DASH_EQ] = ACTIONS(4957), - [anon_sym_LT_LT_EQ] = ACTIONS(4957), - [anon_sym_GT_GT_EQ] = ACTIONS(4955), - [anon_sym_AMP_EQ] = ACTIONS(4957), - [anon_sym_CARET_EQ] = ACTIONS(4957), - [anon_sym_PIPE_EQ] = ACTIONS(4957), - [anon_sym_and_eq] = ACTIONS(4957), - [anon_sym_or_eq] = ACTIONS(4957), - [anon_sym_xor_eq] = ACTIONS(4957), - [anon_sym_LT_EQ_GT] = ACTIONS(4957), - [anon_sym_or] = ACTIONS(4955), - [anon_sym_and] = ACTIONS(4955), - [anon_sym_bitor] = ACTIONS(4957), - [anon_sym_xor] = ACTIONS(4955), - [anon_sym_bitand] = ACTIONS(4957), - [anon_sym_not_eq] = ACTIONS(4957), - [anon_sym_DASH_DASH] = ACTIONS(4957), - [anon_sym_PLUS_PLUS] = ACTIONS(4957), - [anon_sym_DOT] = ACTIONS(4955), - [anon_sym_DOT_STAR] = ACTIONS(4957), - [anon_sym_DASH_GT] = ACTIONS(4957), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4957), - [anon_sym_decltype] = ACTIONS(4957), - [anon_sym_final] = ACTIONS(4957), - [anon_sym_override] = ACTIONS(4957), - [anon_sym_GT2] = ACTIONS(4957), + [1747] = { + [sym_identifier] = ACTIONS(2679), + [aux_sym_preproc_def_token1] = ACTIONS(2679), + [aux_sym_preproc_if_token1] = ACTIONS(2679), + [aux_sym_preproc_if_token2] = ACTIONS(2679), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2679), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2679), + [aux_sym_preproc_else_token1] = ACTIONS(2679), + [aux_sym_preproc_elif_token1] = ACTIONS(2679), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2679), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2679), + [sym_preproc_directive] = ACTIONS(2679), + [anon_sym_LPAREN2] = ACTIONS(2681), + [anon_sym_TILDE] = ACTIONS(2681), + [anon_sym_STAR] = ACTIONS(2681), + [anon_sym_AMP_AMP] = ACTIONS(2681), + [anon_sym_AMP] = ACTIONS(2679), + [anon_sym_SEMI] = ACTIONS(2681), + [anon_sym___extension__] = ACTIONS(2679), + [anon_sym_typedef] = ACTIONS(2679), + [anon_sym_virtual] = ACTIONS(2679), + [anon_sym_extern] = ACTIONS(2679), + [anon_sym___attribute__] = ACTIONS(2679), + [anon_sym___attribute] = ACTIONS(2679), + [anon_sym_using] = ACTIONS(2679), + [anon_sym_COLON_COLON] = ACTIONS(2681), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2681), + [anon_sym___declspec] = ACTIONS(2679), + [anon_sym___based] = ACTIONS(2679), + [anon_sym_signed] = ACTIONS(2679), + [anon_sym_unsigned] = ACTIONS(2679), + [anon_sym_long] = ACTIONS(2679), + [anon_sym_short] = ACTIONS(2679), + [anon_sym_LBRACK] = ACTIONS(2679), + [anon_sym_static] = ACTIONS(2679), + [anon_sym_register] = ACTIONS(2679), + [anon_sym_inline] = ACTIONS(2679), + [anon_sym___inline] = ACTIONS(2679), + [anon_sym___inline__] = ACTIONS(2679), + [anon_sym___forceinline] = ACTIONS(2679), + [anon_sym_thread_local] = ACTIONS(2679), + [anon_sym___thread] = ACTIONS(2679), + [anon_sym_const] = ACTIONS(2679), + [anon_sym_constexpr] = ACTIONS(2679), + [anon_sym_volatile] = ACTIONS(2679), + [anon_sym_restrict] = ACTIONS(2679), + [anon_sym___restrict__] = ACTIONS(2679), + [anon_sym__Atomic] = ACTIONS(2679), + [anon_sym__Noreturn] = ACTIONS(2679), + [anon_sym_noreturn] = ACTIONS(2679), + [anon_sym__Nonnull] = ACTIONS(2679), + [anon_sym_mutable] = ACTIONS(2679), + [anon_sym_constinit] = ACTIONS(2679), + [anon_sym_consteval] = ACTIONS(2679), + [anon_sym_alignas] = ACTIONS(2679), + [anon_sym__Alignas] = ACTIONS(2679), + [sym_primitive_type] = ACTIONS(2679), + [anon_sym_enum] = ACTIONS(2679), + [anon_sym_class] = ACTIONS(2679), + [anon_sym_struct] = ACTIONS(2679), + [anon_sym_union] = ACTIONS(2679), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2679), + [anon_sym_decltype] = ACTIONS(2679), + [anon_sym_explicit] = ACTIONS(2679), + [anon_sym_typename] = ACTIONS(2679), + [anon_sym_private] = ACTIONS(2679), + [anon_sym_template] = ACTIONS(2679), + [anon_sym_operator] = ACTIONS(2679), + [anon_sym_friend] = ACTIONS(2679), + [anon_sym_public] = ACTIONS(2679), + [anon_sym_protected] = ACTIONS(2679), + [anon_sym_static_assert] = ACTIONS(2679), }, - [1681] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(4986), - [anon_sym_COMMA] = ACTIONS(4986), - [anon_sym_LPAREN2] = ACTIONS(4986), - [anon_sym_DASH] = ACTIONS(4984), - [anon_sym_PLUS] = ACTIONS(4984), - [anon_sym_STAR] = ACTIONS(4984), - [anon_sym_SLASH] = ACTIONS(4984), - [anon_sym_PERCENT] = ACTIONS(4984), - [anon_sym_PIPE_PIPE] = ACTIONS(4986), - [anon_sym_AMP_AMP] = ACTIONS(4986), - [anon_sym_PIPE] = ACTIONS(4984), - [anon_sym_CARET] = ACTIONS(4984), - [anon_sym_AMP] = ACTIONS(4984), - [anon_sym_EQ_EQ] = ACTIONS(4986), - [anon_sym_BANG_EQ] = ACTIONS(4986), - [anon_sym_GT] = ACTIONS(4984), - [anon_sym_GT_EQ] = ACTIONS(4984), - [anon_sym_LT_EQ] = ACTIONS(4984), - [anon_sym_LT] = ACTIONS(4984), - [anon_sym_LT_LT] = ACTIONS(4984), - [anon_sym_GT_GT] = ACTIONS(4984), - [anon_sym___extension__] = ACTIONS(4986), - [anon_sym___attribute__] = ACTIONS(4986), - [anon_sym___attribute] = ACTIONS(4984), - [anon_sym_COLON] = ACTIONS(4984), - [anon_sym_COLON_COLON] = ACTIONS(4986), - [anon_sym_LBRACE] = ACTIONS(4986), - [anon_sym_LBRACK] = ACTIONS(4986), - [anon_sym_EQ] = ACTIONS(4984), - [anon_sym_const] = ACTIONS(4984), - [anon_sym_constexpr] = ACTIONS(4986), - [anon_sym_volatile] = ACTIONS(4986), - [anon_sym_restrict] = ACTIONS(4986), - [anon_sym___restrict__] = ACTIONS(4986), - [anon_sym__Atomic] = ACTIONS(4986), - [anon_sym__Noreturn] = ACTIONS(4986), - [anon_sym_noreturn] = ACTIONS(4986), - [anon_sym__Nonnull] = ACTIONS(4986), - [anon_sym_mutable] = ACTIONS(4986), - [anon_sym_constinit] = ACTIONS(4986), - [anon_sym_consteval] = ACTIONS(4986), - [anon_sym_alignas] = ACTIONS(4986), - [anon_sym__Alignas] = ACTIONS(4986), - [anon_sym_QMARK] = ACTIONS(4986), - [anon_sym_STAR_EQ] = ACTIONS(4986), - [anon_sym_SLASH_EQ] = ACTIONS(4986), - [anon_sym_PERCENT_EQ] = ACTIONS(4986), - [anon_sym_PLUS_EQ] = ACTIONS(4986), - [anon_sym_DASH_EQ] = ACTIONS(4986), - [anon_sym_LT_LT_EQ] = ACTIONS(4986), - [anon_sym_GT_GT_EQ] = ACTIONS(4984), - [anon_sym_AMP_EQ] = ACTIONS(4986), - [anon_sym_CARET_EQ] = ACTIONS(4986), - [anon_sym_PIPE_EQ] = ACTIONS(4986), - [anon_sym_and_eq] = ACTIONS(4986), - [anon_sym_or_eq] = ACTIONS(4986), - [anon_sym_xor_eq] = ACTIONS(4986), - [anon_sym_LT_EQ_GT] = ACTIONS(4986), - [anon_sym_or] = ACTIONS(4984), - [anon_sym_and] = ACTIONS(4984), - [anon_sym_bitor] = ACTIONS(4986), - [anon_sym_xor] = ACTIONS(4984), - [anon_sym_bitand] = ACTIONS(4986), - [anon_sym_not_eq] = ACTIONS(4986), - [anon_sym_DASH_DASH] = ACTIONS(4986), - [anon_sym_PLUS_PLUS] = ACTIONS(4986), - [anon_sym_DOT] = ACTIONS(4984), - [anon_sym_DOT_STAR] = ACTIONS(4986), - [anon_sym_DASH_GT] = ACTIONS(4986), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4986), - [anon_sym_decltype] = ACTIONS(4986), - [anon_sym_final] = ACTIONS(4986), - [anon_sym_override] = ACTIONS(4986), - [anon_sym_GT2] = ACTIONS(4986), + [1748] = { + [sym_identifier] = ACTIONS(5470), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5472), + [anon_sym_COMMA] = ACTIONS(5472), + [anon_sym_RPAREN] = ACTIONS(5472), + [aux_sym_preproc_if_token2] = ACTIONS(5472), + [aux_sym_preproc_else_token1] = ACTIONS(5472), + [aux_sym_preproc_elif_token1] = ACTIONS(5470), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5472), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5472), + [anon_sym_LPAREN2] = ACTIONS(5472), + [anon_sym_DASH] = ACTIONS(5470), + [anon_sym_PLUS] = ACTIONS(5470), + [anon_sym_STAR] = ACTIONS(5470), + [anon_sym_SLASH] = ACTIONS(5470), + [anon_sym_PERCENT] = ACTIONS(5470), + [anon_sym_PIPE_PIPE] = ACTIONS(5472), + [anon_sym_AMP_AMP] = ACTIONS(5472), + [anon_sym_PIPE] = ACTIONS(5470), + [anon_sym_CARET] = ACTIONS(5470), + [anon_sym_AMP] = ACTIONS(5470), + [anon_sym_EQ_EQ] = ACTIONS(5472), + [anon_sym_BANG_EQ] = ACTIONS(5472), + [anon_sym_GT] = ACTIONS(5470), + [anon_sym_GT_EQ] = ACTIONS(5472), + [anon_sym_LT_EQ] = ACTIONS(5470), + [anon_sym_LT] = ACTIONS(5470), + [anon_sym_LT_LT] = ACTIONS(5470), + [anon_sym_GT_GT] = ACTIONS(5470), + [anon_sym_SEMI] = ACTIONS(5472), + [anon_sym_COLON] = ACTIONS(5472), + [anon_sym_RBRACE] = ACTIONS(5472), + [anon_sym_LBRACK] = ACTIONS(5472), + [anon_sym_RBRACK] = ACTIONS(5472), + [anon_sym_EQ] = ACTIONS(5470), + [anon_sym_QMARK] = ACTIONS(5472), + [anon_sym_STAR_EQ] = ACTIONS(5472), + [anon_sym_SLASH_EQ] = ACTIONS(5472), + [anon_sym_PERCENT_EQ] = ACTIONS(5472), + [anon_sym_PLUS_EQ] = ACTIONS(5472), + [anon_sym_DASH_EQ] = ACTIONS(5472), + [anon_sym_LT_LT_EQ] = ACTIONS(5472), + [anon_sym_GT_GT_EQ] = ACTIONS(5472), + [anon_sym_AMP_EQ] = ACTIONS(5472), + [anon_sym_CARET_EQ] = ACTIONS(5472), + [anon_sym_PIPE_EQ] = ACTIONS(5472), + [anon_sym_and_eq] = ACTIONS(5470), + [anon_sym_or_eq] = ACTIONS(5470), + [anon_sym_xor_eq] = ACTIONS(5470), + [anon_sym_LT_EQ_GT] = ACTIONS(5472), + [anon_sym_or] = ACTIONS(5470), + [anon_sym_and] = ACTIONS(5470), + [anon_sym_bitor] = ACTIONS(5470), + [anon_sym_xor] = ACTIONS(5470), + [anon_sym_bitand] = ACTIONS(5470), + [anon_sym_not_eq] = ACTIONS(5470), + [anon_sym_DASH_DASH] = ACTIONS(5472), + [anon_sym_PLUS_PLUS] = ACTIONS(5472), + [anon_sym_DOT] = ACTIONS(5470), + [anon_sym_DOT_STAR] = ACTIONS(5472), + [anon_sym_DASH_GT] = ACTIONS(5472), + [anon_sym_L_DQUOTE] = ACTIONS(5472), + [anon_sym_u_DQUOTE] = ACTIONS(5472), + [anon_sym_U_DQUOTE] = ACTIONS(5472), + [anon_sym_u8_DQUOTE] = ACTIONS(5472), + [anon_sym_DQUOTE] = ACTIONS(5472), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5472), + [anon_sym_LR_DQUOTE] = ACTIONS(5472), + [anon_sym_uR_DQUOTE] = ACTIONS(5472), + [anon_sym_UR_DQUOTE] = ACTIONS(5472), + [anon_sym_u8R_DQUOTE] = ACTIONS(5472), + [sym_literal_suffix] = ACTIONS(5470), }, - [1682] = { - [sym_identifier] = ACTIONS(5080), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5082), - [anon_sym_COMMA] = ACTIONS(5082), - [anon_sym_RPAREN] = ACTIONS(5082), - [aux_sym_preproc_if_token2] = ACTIONS(5082), - [aux_sym_preproc_else_token1] = ACTIONS(5082), - [aux_sym_preproc_elif_token1] = ACTIONS(5080), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5082), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5082), - [anon_sym_LPAREN2] = ACTIONS(5082), - [anon_sym_DASH] = ACTIONS(5080), - [anon_sym_PLUS] = ACTIONS(5080), - [anon_sym_STAR] = ACTIONS(5082), - [anon_sym_SLASH] = ACTIONS(5080), - [anon_sym_PERCENT] = ACTIONS(5082), - [anon_sym_PIPE_PIPE] = ACTIONS(5082), - [anon_sym_AMP_AMP] = ACTIONS(5082), - [anon_sym_PIPE] = ACTIONS(5080), - [anon_sym_CARET] = ACTIONS(5082), - [anon_sym_AMP] = ACTIONS(5080), - [anon_sym_EQ_EQ] = ACTIONS(5082), - [anon_sym_BANG_EQ] = ACTIONS(5082), - [anon_sym_GT] = ACTIONS(5080), - [anon_sym_GT_EQ] = ACTIONS(5082), - [anon_sym_LT_EQ] = ACTIONS(5080), - [anon_sym_LT] = ACTIONS(5080), - [anon_sym_LT_LT] = ACTIONS(5082), - [anon_sym_GT_GT] = ACTIONS(5082), - [anon_sym_SEMI] = ACTIONS(5082), - [anon_sym___extension__] = ACTIONS(5080), - [anon_sym___attribute__] = ACTIONS(5080), - [anon_sym___attribute] = ACTIONS(5080), - [anon_sym_COLON] = ACTIONS(5082), - [anon_sym_LBRACE] = ACTIONS(5082), - [anon_sym_RBRACE] = ACTIONS(5082), - [anon_sym_signed] = ACTIONS(5080), - [anon_sym_unsigned] = ACTIONS(5080), - [anon_sym_long] = ACTIONS(5080), - [anon_sym_short] = ACTIONS(5080), - [anon_sym_LBRACK] = ACTIONS(5082), - [anon_sym_RBRACK] = ACTIONS(5082), - [anon_sym_const] = ACTIONS(5080), - [anon_sym_constexpr] = ACTIONS(5080), - [anon_sym_volatile] = ACTIONS(5080), - [anon_sym_restrict] = ACTIONS(5080), - [anon_sym___restrict__] = ACTIONS(5080), - [anon_sym__Atomic] = ACTIONS(5080), - [anon_sym__Noreturn] = ACTIONS(5080), - [anon_sym_noreturn] = ACTIONS(5080), - [anon_sym__Nonnull] = ACTIONS(5080), - [anon_sym_mutable] = ACTIONS(5080), - [anon_sym_constinit] = ACTIONS(5080), - [anon_sym_consteval] = ACTIONS(5080), - [anon_sym_alignas] = ACTIONS(5080), - [anon_sym__Alignas] = ACTIONS(5080), - [sym_primitive_type] = ACTIONS(5080), - [anon_sym_QMARK] = ACTIONS(5082), - [anon_sym_LT_EQ_GT] = ACTIONS(5082), - [anon_sym_or] = ACTIONS(5080), - [anon_sym_and] = ACTIONS(5080), - [anon_sym_bitor] = ACTIONS(5080), - [anon_sym_xor] = ACTIONS(5080), - [anon_sym_bitand] = ACTIONS(5080), - [anon_sym_not_eq] = ACTIONS(5080), - [anon_sym_DASH_DASH] = ACTIONS(5082), - [anon_sym_PLUS_PLUS] = ACTIONS(5082), - [anon_sym_DOT] = ACTIONS(5080), - [anon_sym_DOT_STAR] = ACTIONS(5082), - [anon_sym_DASH_GT] = ACTIONS(5082), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5080), - [anon_sym_decltype] = ACTIONS(5080), - [anon_sym_final] = ACTIONS(5080), - [anon_sym_override] = ACTIONS(5080), - [anon_sym_requires] = ACTIONS(5080), + [1749] = { + [sym_template_argument_list] = STATE(1893), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4927), + [anon_sym_COMMA] = ACTIONS(4927), + [anon_sym_RPAREN] = ACTIONS(4929), + [anon_sym_LPAREN2] = ACTIONS(4929), + [anon_sym_DASH] = ACTIONS(4934), + [anon_sym_PLUS] = ACTIONS(4934), + [anon_sym_STAR] = ACTIONS(4936), + [anon_sym_SLASH] = ACTIONS(4934), + [anon_sym_PERCENT] = ACTIONS(4934), + [anon_sym_PIPE_PIPE] = ACTIONS(4927), + [anon_sym_AMP_AMP] = ACTIONS(4929), + [anon_sym_PIPE] = ACTIONS(4934), + [anon_sym_CARET] = ACTIONS(4934), + [anon_sym_AMP] = ACTIONS(4936), + [anon_sym_EQ_EQ] = ACTIONS(4927), + [anon_sym_BANG_EQ] = ACTIONS(4927), + [anon_sym_GT] = ACTIONS(4934), + [anon_sym_GT_EQ] = ACTIONS(4927), + [anon_sym_LT_EQ] = ACTIONS(4934), + [anon_sym_LT] = ACTIONS(5474), + [anon_sym_LT_LT] = ACTIONS(4934), + [anon_sym_GT_GT] = ACTIONS(4934), + [anon_sym___extension__] = ACTIONS(4932), + [anon_sym_COLON_COLON] = ACTIONS(4187), + [anon_sym_LBRACE] = ACTIONS(4932), + [anon_sym_LBRACK] = ACTIONS(4929), + [anon_sym_EQ] = ACTIONS(4934), + [anon_sym_const] = ACTIONS(4925), + [anon_sym_constexpr] = ACTIONS(4932), + [anon_sym_volatile] = ACTIONS(4932), + [anon_sym_restrict] = ACTIONS(4932), + [anon_sym___restrict__] = ACTIONS(4932), + [anon_sym__Atomic] = ACTIONS(4932), + [anon_sym__Noreturn] = ACTIONS(4932), + [anon_sym_noreturn] = ACTIONS(4932), + [anon_sym__Nonnull] = ACTIONS(4932), + [anon_sym_mutable] = ACTIONS(4932), + [anon_sym_constinit] = ACTIONS(4932), + [anon_sym_consteval] = ACTIONS(4932), + [anon_sym_alignas] = ACTIONS(4932), + [anon_sym__Alignas] = ACTIONS(4932), + [anon_sym_QMARK] = ACTIONS(4927), + [anon_sym_STAR_EQ] = ACTIONS(4927), + [anon_sym_SLASH_EQ] = ACTIONS(4927), + [anon_sym_PERCENT_EQ] = ACTIONS(4927), + [anon_sym_PLUS_EQ] = ACTIONS(4927), + [anon_sym_DASH_EQ] = ACTIONS(4927), + [anon_sym_LT_LT_EQ] = ACTIONS(4927), + [anon_sym_GT_GT_EQ] = ACTIONS(4927), + [anon_sym_AMP_EQ] = ACTIONS(4927), + [anon_sym_CARET_EQ] = ACTIONS(4927), + [anon_sym_PIPE_EQ] = ACTIONS(4927), + [anon_sym_and_eq] = ACTIONS(4927), + [anon_sym_or_eq] = ACTIONS(4927), + [anon_sym_xor_eq] = ACTIONS(4927), + [anon_sym_LT_EQ_GT] = ACTIONS(4927), + [anon_sym_or] = ACTIONS(4934), + [anon_sym_and] = ACTIONS(4934), + [anon_sym_bitor] = ACTIONS(4927), + [anon_sym_xor] = ACTIONS(4934), + [anon_sym_bitand] = ACTIONS(4927), + [anon_sym_not_eq] = ACTIONS(4927), + [anon_sym_DASH_DASH] = ACTIONS(4927), + [anon_sym_PLUS_PLUS] = ACTIONS(4927), + [anon_sym_DOT] = ACTIONS(4934), + [anon_sym_DOT_STAR] = ACTIONS(4927), + [anon_sym_DASH_GT] = ACTIONS(4934), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4932), + [anon_sym_decltype] = ACTIONS(4932), + [anon_sym_DASH_GT_STAR] = ACTIONS(4927), }, - [1683] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(4982), - [anon_sym_COMMA] = ACTIONS(4982), - [anon_sym_LPAREN2] = ACTIONS(4982), - [anon_sym_DASH] = ACTIONS(4980), - [anon_sym_PLUS] = ACTIONS(4980), - [anon_sym_STAR] = ACTIONS(4980), - [anon_sym_SLASH] = ACTIONS(4980), - [anon_sym_PERCENT] = ACTIONS(4980), - [anon_sym_PIPE_PIPE] = ACTIONS(4982), - [anon_sym_AMP_AMP] = ACTIONS(4982), - [anon_sym_PIPE] = ACTIONS(4980), - [anon_sym_CARET] = ACTIONS(4980), - [anon_sym_AMP] = ACTIONS(4980), - [anon_sym_EQ_EQ] = ACTIONS(4982), - [anon_sym_BANG_EQ] = ACTIONS(4982), - [anon_sym_GT] = ACTIONS(4980), - [anon_sym_GT_EQ] = ACTIONS(4980), - [anon_sym_LT_EQ] = ACTIONS(4980), - [anon_sym_LT] = ACTIONS(4980), - [anon_sym_LT_LT] = ACTIONS(4980), - [anon_sym_GT_GT] = ACTIONS(4980), - [anon_sym___extension__] = ACTIONS(4982), - [anon_sym___attribute__] = ACTIONS(4982), - [anon_sym___attribute] = ACTIONS(4980), - [anon_sym_COLON] = ACTIONS(4980), - [anon_sym_COLON_COLON] = ACTIONS(4982), - [anon_sym_LBRACE] = ACTIONS(4982), - [anon_sym_LBRACK] = ACTIONS(4982), - [anon_sym_EQ] = ACTIONS(4980), - [anon_sym_const] = ACTIONS(4980), - [anon_sym_constexpr] = ACTIONS(4982), - [anon_sym_volatile] = ACTIONS(4982), - [anon_sym_restrict] = ACTIONS(4982), - [anon_sym___restrict__] = ACTIONS(4982), - [anon_sym__Atomic] = ACTIONS(4982), - [anon_sym__Noreturn] = ACTIONS(4982), - [anon_sym_noreturn] = ACTIONS(4982), - [anon_sym__Nonnull] = ACTIONS(4982), - [anon_sym_mutable] = ACTIONS(4982), - [anon_sym_constinit] = ACTIONS(4982), - [anon_sym_consteval] = ACTIONS(4982), - [anon_sym_alignas] = ACTIONS(4982), - [anon_sym__Alignas] = ACTIONS(4982), - [anon_sym_QMARK] = ACTIONS(4982), - [anon_sym_STAR_EQ] = ACTIONS(4982), - [anon_sym_SLASH_EQ] = ACTIONS(4982), - [anon_sym_PERCENT_EQ] = ACTIONS(4982), - [anon_sym_PLUS_EQ] = ACTIONS(4982), - [anon_sym_DASH_EQ] = ACTIONS(4982), - [anon_sym_LT_LT_EQ] = ACTIONS(4982), - [anon_sym_GT_GT_EQ] = ACTIONS(4980), - [anon_sym_AMP_EQ] = ACTIONS(4982), - [anon_sym_CARET_EQ] = ACTIONS(4982), - [anon_sym_PIPE_EQ] = ACTIONS(4982), - [anon_sym_and_eq] = ACTIONS(4982), - [anon_sym_or_eq] = ACTIONS(4982), - [anon_sym_xor_eq] = ACTIONS(4982), - [anon_sym_LT_EQ_GT] = ACTIONS(4982), - [anon_sym_or] = ACTIONS(4980), - [anon_sym_and] = ACTIONS(4980), - [anon_sym_bitor] = ACTIONS(4982), - [anon_sym_xor] = ACTIONS(4980), - [anon_sym_bitand] = ACTIONS(4982), - [anon_sym_not_eq] = ACTIONS(4982), - [anon_sym_DASH_DASH] = ACTIONS(4982), - [anon_sym_PLUS_PLUS] = ACTIONS(4982), - [anon_sym_DOT] = ACTIONS(4980), - [anon_sym_DOT_STAR] = ACTIONS(4982), - [anon_sym_DASH_GT] = ACTIONS(4982), + [1750] = { + [sym_identifier] = ACTIONS(5477), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5479), + [anon_sym_COMMA] = ACTIONS(5479), + [anon_sym_RPAREN] = ACTIONS(5479), + [aux_sym_preproc_if_token2] = ACTIONS(5479), + [aux_sym_preproc_else_token1] = ACTIONS(5479), + [aux_sym_preproc_elif_token1] = ACTIONS(5477), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5479), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5479), + [anon_sym_LPAREN2] = ACTIONS(5479), + [anon_sym_DASH] = ACTIONS(5477), + [anon_sym_PLUS] = ACTIONS(5477), + [anon_sym_STAR] = ACTIONS(5477), + [anon_sym_SLASH] = ACTIONS(5477), + [anon_sym_PERCENT] = ACTIONS(5477), + [anon_sym_PIPE_PIPE] = ACTIONS(5479), + [anon_sym_AMP_AMP] = ACTIONS(5479), + [anon_sym_PIPE] = ACTIONS(5477), + [anon_sym_CARET] = ACTIONS(5477), + [anon_sym_AMP] = ACTIONS(5477), + [anon_sym_EQ_EQ] = ACTIONS(5479), + [anon_sym_BANG_EQ] = ACTIONS(5479), + [anon_sym_GT] = ACTIONS(5477), + [anon_sym_GT_EQ] = ACTIONS(5479), + [anon_sym_LT_EQ] = ACTIONS(5477), + [anon_sym_LT] = ACTIONS(5477), + [anon_sym_LT_LT] = ACTIONS(5477), + [anon_sym_GT_GT] = ACTIONS(5477), + [anon_sym_SEMI] = ACTIONS(5479), + [anon_sym_COLON] = ACTIONS(5479), + [anon_sym_RBRACE] = ACTIONS(5479), + [anon_sym_LBRACK] = ACTIONS(5479), + [anon_sym_RBRACK] = ACTIONS(5479), + [anon_sym_EQ] = ACTIONS(5477), + [anon_sym_QMARK] = ACTIONS(5479), + [anon_sym_STAR_EQ] = ACTIONS(5479), + [anon_sym_SLASH_EQ] = ACTIONS(5479), + [anon_sym_PERCENT_EQ] = ACTIONS(5479), + [anon_sym_PLUS_EQ] = ACTIONS(5479), + [anon_sym_DASH_EQ] = ACTIONS(5479), + [anon_sym_LT_LT_EQ] = ACTIONS(5479), + [anon_sym_GT_GT_EQ] = ACTIONS(5479), + [anon_sym_AMP_EQ] = ACTIONS(5479), + [anon_sym_CARET_EQ] = ACTIONS(5479), + [anon_sym_PIPE_EQ] = ACTIONS(5479), + [anon_sym_and_eq] = ACTIONS(5477), + [anon_sym_or_eq] = ACTIONS(5477), + [anon_sym_xor_eq] = ACTIONS(5477), + [anon_sym_LT_EQ_GT] = ACTIONS(5479), + [anon_sym_or] = ACTIONS(5477), + [anon_sym_and] = ACTIONS(5477), + [anon_sym_bitor] = ACTIONS(5477), + [anon_sym_xor] = ACTIONS(5477), + [anon_sym_bitand] = ACTIONS(5477), + [anon_sym_not_eq] = ACTIONS(5477), + [anon_sym_DASH_DASH] = ACTIONS(5479), + [anon_sym_PLUS_PLUS] = ACTIONS(5479), + [anon_sym_DOT] = ACTIONS(5477), + [anon_sym_DOT_STAR] = ACTIONS(5479), + [anon_sym_DASH_GT] = ACTIONS(5479), + [anon_sym_L_DQUOTE] = ACTIONS(5479), + [anon_sym_u_DQUOTE] = ACTIONS(5479), + [anon_sym_U_DQUOTE] = ACTIONS(5479), + [anon_sym_u8_DQUOTE] = ACTIONS(5479), + [anon_sym_DQUOTE] = ACTIONS(5479), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5479), + [anon_sym_LR_DQUOTE] = ACTIONS(5479), + [anon_sym_uR_DQUOTE] = ACTIONS(5479), + [anon_sym_UR_DQUOTE] = ACTIONS(5479), + [anon_sym_u8R_DQUOTE] = ACTIONS(5479), + [sym_literal_suffix] = ACTIONS(5477), + }, + [1751] = { + [sym_identifier] = ACTIONS(2703), + [aux_sym_preproc_def_token1] = ACTIONS(2703), + [aux_sym_preproc_if_token1] = ACTIONS(2703), + [aux_sym_preproc_if_token2] = ACTIONS(2703), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2703), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2703), + [aux_sym_preproc_else_token1] = ACTIONS(2703), + [aux_sym_preproc_elif_token1] = ACTIONS(2703), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2703), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2703), + [sym_preproc_directive] = ACTIONS(2703), + [anon_sym_LPAREN2] = ACTIONS(2705), + [anon_sym_TILDE] = ACTIONS(2705), + [anon_sym_STAR] = ACTIONS(2705), + [anon_sym_AMP_AMP] = ACTIONS(2705), + [anon_sym_AMP] = ACTIONS(2703), + [anon_sym_SEMI] = ACTIONS(2705), + [anon_sym___extension__] = ACTIONS(2703), + [anon_sym_typedef] = ACTIONS(2703), + [anon_sym_virtual] = ACTIONS(2703), + [anon_sym_extern] = ACTIONS(2703), + [anon_sym___attribute__] = ACTIONS(2703), + [anon_sym___attribute] = ACTIONS(2703), + [anon_sym_using] = ACTIONS(2703), + [anon_sym_COLON_COLON] = ACTIONS(2705), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2705), + [anon_sym___declspec] = ACTIONS(2703), + [anon_sym___based] = ACTIONS(2703), + [anon_sym_signed] = ACTIONS(2703), + [anon_sym_unsigned] = ACTIONS(2703), + [anon_sym_long] = ACTIONS(2703), + [anon_sym_short] = ACTIONS(2703), + [anon_sym_LBRACK] = ACTIONS(2703), + [anon_sym_static] = ACTIONS(2703), + [anon_sym_register] = ACTIONS(2703), + [anon_sym_inline] = ACTIONS(2703), + [anon_sym___inline] = ACTIONS(2703), + [anon_sym___inline__] = ACTIONS(2703), + [anon_sym___forceinline] = ACTIONS(2703), + [anon_sym_thread_local] = ACTIONS(2703), + [anon_sym___thread] = ACTIONS(2703), + [anon_sym_const] = ACTIONS(2703), + [anon_sym_constexpr] = ACTIONS(2703), + [anon_sym_volatile] = ACTIONS(2703), + [anon_sym_restrict] = ACTIONS(2703), + [anon_sym___restrict__] = ACTIONS(2703), + [anon_sym__Atomic] = ACTIONS(2703), + [anon_sym__Noreturn] = ACTIONS(2703), + [anon_sym_noreturn] = ACTIONS(2703), + [anon_sym__Nonnull] = ACTIONS(2703), + [anon_sym_mutable] = ACTIONS(2703), + [anon_sym_constinit] = ACTIONS(2703), + [anon_sym_consteval] = ACTIONS(2703), + [anon_sym_alignas] = ACTIONS(2703), + [anon_sym__Alignas] = ACTIONS(2703), + [sym_primitive_type] = ACTIONS(2703), + [anon_sym_enum] = ACTIONS(2703), + [anon_sym_class] = ACTIONS(2703), + [anon_sym_struct] = ACTIONS(2703), + [anon_sym_union] = ACTIONS(2703), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2703), + [anon_sym_decltype] = ACTIONS(2703), + [anon_sym_explicit] = ACTIONS(2703), + [anon_sym_typename] = ACTIONS(2703), + [anon_sym_private] = ACTIONS(2703), + [anon_sym_template] = ACTIONS(2703), + [anon_sym_operator] = ACTIONS(2703), + [anon_sym_friend] = ACTIONS(2703), + [anon_sym_public] = ACTIONS(2703), + [anon_sym_protected] = ACTIONS(2703), + [anon_sym_static_assert] = ACTIONS(2703), + }, + [1752] = { + [sym_identifier] = ACTIONS(2759), + [aux_sym_preproc_def_token1] = ACTIONS(2759), + [aux_sym_preproc_if_token1] = ACTIONS(2759), + [aux_sym_preproc_if_token2] = ACTIONS(2759), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2759), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2759), + [aux_sym_preproc_else_token1] = ACTIONS(2759), + [aux_sym_preproc_elif_token1] = ACTIONS(2759), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2759), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2759), + [sym_preproc_directive] = ACTIONS(2759), + [anon_sym_LPAREN2] = ACTIONS(2761), + [anon_sym_TILDE] = ACTIONS(2761), + [anon_sym_STAR] = ACTIONS(2761), + [anon_sym_AMP_AMP] = ACTIONS(2761), + [anon_sym_AMP] = ACTIONS(2759), + [anon_sym_SEMI] = ACTIONS(2761), + [anon_sym___extension__] = ACTIONS(2759), + [anon_sym_typedef] = ACTIONS(2759), + [anon_sym_virtual] = ACTIONS(2759), + [anon_sym_extern] = ACTIONS(2759), + [anon_sym___attribute__] = ACTIONS(2759), + [anon_sym___attribute] = ACTIONS(2759), + [anon_sym_using] = ACTIONS(2759), + [anon_sym_COLON_COLON] = ACTIONS(2761), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2761), + [anon_sym___declspec] = ACTIONS(2759), + [anon_sym___based] = ACTIONS(2759), + [anon_sym_signed] = ACTIONS(2759), + [anon_sym_unsigned] = ACTIONS(2759), + [anon_sym_long] = ACTIONS(2759), + [anon_sym_short] = ACTIONS(2759), + [anon_sym_LBRACK] = ACTIONS(2759), + [anon_sym_static] = ACTIONS(2759), + [anon_sym_register] = ACTIONS(2759), + [anon_sym_inline] = ACTIONS(2759), + [anon_sym___inline] = ACTIONS(2759), + [anon_sym___inline__] = ACTIONS(2759), + [anon_sym___forceinline] = ACTIONS(2759), + [anon_sym_thread_local] = ACTIONS(2759), + [anon_sym___thread] = ACTIONS(2759), + [anon_sym_const] = ACTIONS(2759), + [anon_sym_constexpr] = ACTIONS(2759), + [anon_sym_volatile] = ACTIONS(2759), + [anon_sym_restrict] = ACTIONS(2759), + [anon_sym___restrict__] = ACTIONS(2759), + [anon_sym__Atomic] = ACTIONS(2759), + [anon_sym__Noreturn] = ACTIONS(2759), + [anon_sym_noreturn] = ACTIONS(2759), + [anon_sym__Nonnull] = ACTIONS(2759), + [anon_sym_mutable] = ACTIONS(2759), + [anon_sym_constinit] = ACTIONS(2759), + [anon_sym_consteval] = ACTIONS(2759), + [anon_sym_alignas] = ACTIONS(2759), + [anon_sym__Alignas] = ACTIONS(2759), + [sym_primitive_type] = ACTIONS(2759), + [anon_sym_enum] = ACTIONS(2759), + [anon_sym_class] = ACTIONS(2759), + [anon_sym_struct] = ACTIONS(2759), + [anon_sym_union] = ACTIONS(2759), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4982), - [anon_sym_decltype] = ACTIONS(4982), - [anon_sym_final] = ACTIONS(4982), - [anon_sym_override] = ACTIONS(4982), - [anon_sym_GT2] = ACTIONS(4982), + [sym_auto] = ACTIONS(2759), + [anon_sym_decltype] = ACTIONS(2759), + [anon_sym_explicit] = ACTIONS(2759), + [anon_sym_typename] = ACTIONS(2759), + [anon_sym_private] = ACTIONS(2759), + [anon_sym_template] = ACTIONS(2759), + [anon_sym_operator] = ACTIONS(2759), + [anon_sym_friend] = ACTIONS(2759), + [anon_sym_public] = ACTIONS(2759), + [anon_sym_protected] = ACTIONS(2759), + [anon_sym_static_assert] = ACTIONS(2759), }, - [1684] = { - [sym_string_literal] = STATE(1689), - [sym_raw_string_literal] = STATE(1689), - [aux_sym_concatenated_string_repeat1] = STATE(1689), - [sym_identifier] = ACTIONS(5388), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5390), - [anon_sym_COMMA] = ACTIONS(5390), - [anon_sym_RPAREN] = ACTIONS(5390), - [aux_sym_preproc_if_token2] = ACTIONS(5390), - [aux_sym_preproc_else_token1] = ACTIONS(5390), - [aux_sym_preproc_elif_token1] = ACTIONS(5392), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5390), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5390), - [anon_sym_LPAREN2] = ACTIONS(5390), - [anon_sym_DASH] = ACTIONS(5392), - [anon_sym_PLUS] = ACTIONS(5392), - [anon_sym_STAR] = ACTIONS(5392), - [anon_sym_SLASH] = ACTIONS(5392), - [anon_sym_PERCENT] = ACTIONS(5392), - [anon_sym_PIPE_PIPE] = ACTIONS(5390), - [anon_sym_AMP_AMP] = ACTIONS(5390), - [anon_sym_PIPE] = ACTIONS(5392), - [anon_sym_CARET] = ACTIONS(5392), - [anon_sym_AMP] = ACTIONS(5392), - [anon_sym_EQ_EQ] = ACTIONS(5390), - [anon_sym_BANG_EQ] = ACTIONS(5390), - [anon_sym_GT] = ACTIONS(5392), - [anon_sym_GT_EQ] = ACTIONS(5390), - [anon_sym_LT_EQ] = ACTIONS(5392), - [anon_sym_LT] = ACTIONS(5392), - [anon_sym_LT_LT] = ACTIONS(5392), - [anon_sym_GT_GT] = ACTIONS(5392), - [anon_sym_SEMI] = ACTIONS(5390), - [anon_sym_COLON] = ACTIONS(5390), - [anon_sym_RBRACE] = ACTIONS(5390), - [anon_sym_LBRACK] = ACTIONS(5390), - [anon_sym_RBRACK] = ACTIONS(5390), - [anon_sym_EQ] = ACTIONS(5392), - [anon_sym_QMARK] = ACTIONS(5390), - [anon_sym_STAR_EQ] = ACTIONS(5390), - [anon_sym_SLASH_EQ] = ACTIONS(5390), - [anon_sym_PERCENT_EQ] = ACTIONS(5390), - [anon_sym_PLUS_EQ] = ACTIONS(5390), - [anon_sym_DASH_EQ] = ACTIONS(5390), - [anon_sym_LT_LT_EQ] = ACTIONS(5390), - [anon_sym_GT_GT_EQ] = ACTIONS(5390), - [anon_sym_AMP_EQ] = ACTIONS(5390), - [anon_sym_CARET_EQ] = ACTIONS(5390), - [anon_sym_PIPE_EQ] = ACTIONS(5390), - [anon_sym_and_eq] = ACTIONS(5392), - [anon_sym_or_eq] = ACTIONS(5392), - [anon_sym_xor_eq] = ACTIONS(5392), - [anon_sym_LT_EQ_GT] = ACTIONS(5390), - [anon_sym_or] = ACTIONS(5392), - [anon_sym_and] = ACTIONS(5392), - [anon_sym_bitor] = ACTIONS(5392), - [anon_sym_xor] = ACTIONS(5392), - [anon_sym_bitand] = ACTIONS(5392), - [anon_sym_not_eq] = ACTIONS(5392), - [anon_sym_DASH_DASH] = ACTIONS(5390), - [anon_sym_PLUS_PLUS] = ACTIONS(5390), - [anon_sym_DOT] = ACTIONS(5392), - [anon_sym_DOT_STAR] = ACTIONS(5390), - [anon_sym_DASH_GT] = ACTIONS(5390), - [anon_sym_L_DQUOTE] = ACTIONS(1972), - [anon_sym_u_DQUOTE] = ACTIONS(1972), - [anon_sym_U_DQUOTE] = ACTIONS(1972), - [anon_sym_u8_DQUOTE] = ACTIONS(1972), - [anon_sym_DQUOTE] = ACTIONS(1972), + [1753] = { + [sym_identifier] = ACTIONS(2771), + [aux_sym_preproc_def_token1] = ACTIONS(2771), + [aux_sym_preproc_if_token1] = ACTIONS(2771), + [aux_sym_preproc_if_token2] = ACTIONS(2771), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2771), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2771), + [aux_sym_preproc_else_token1] = ACTIONS(2771), + [aux_sym_preproc_elif_token1] = ACTIONS(2771), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2771), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2771), + [sym_preproc_directive] = ACTIONS(2771), + [anon_sym_LPAREN2] = ACTIONS(2773), + [anon_sym_TILDE] = ACTIONS(2773), + [anon_sym_STAR] = ACTIONS(2773), + [anon_sym_AMP_AMP] = ACTIONS(2773), + [anon_sym_AMP] = ACTIONS(2771), + [anon_sym_SEMI] = ACTIONS(2773), + [anon_sym___extension__] = ACTIONS(2771), + [anon_sym_typedef] = ACTIONS(2771), + [anon_sym_virtual] = ACTIONS(2771), + [anon_sym_extern] = ACTIONS(2771), + [anon_sym___attribute__] = ACTIONS(2771), + [anon_sym___attribute] = ACTIONS(2771), + [anon_sym_using] = ACTIONS(2771), + [anon_sym_COLON_COLON] = ACTIONS(2773), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2773), + [anon_sym___declspec] = ACTIONS(2771), + [anon_sym___based] = ACTIONS(2771), + [anon_sym_signed] = ACTIONS(2771), + [anon_sym_unsigned] = ACTIONS(2771), + [anon_sym_long] = ACTIONS(2771), + [anon_sym_short] = ACTIONS(2771), + [anon_sym_LBRACK] = ACTIONS(2771), + [anon_sym_static] = ACTIONS(2771), + [anon_sym_register] = ACTIONS(2771), + [anon_sym_inline] = ACTIONS(2771), + [anon_sym___inline] = ACTIONS(2771), + [anon_sym___inline__] = ACTIONS(2771), + [anon_sym___forceinline] = ACTIONS(2771), + [anon_sym_thread_local] = ACTIONS(2771), + [anon_sym___thread] = ACTIONS(2771), + [anon_sym_const] = ACTIONS(2771), + [anon_sym_constexpr] = ACTIONS(2771), + [anon_sym_volatile] = ACTIONS(2771), + [anon_sym_restrict] = ACTIONS(2771), + [anon_sym___restrict__] = ACTIONS(2771), + [anon_sym__Atomic] = ACTIONS(2771), + [anon_sym__Noreturn] = ACTIONS(2771), + [anon_sym_noreturn] = ACTIONS(2771), + [anon_sym__Nonnull] = ACTIONS(2771), + [anon_sym_mutable] = ACTIONS(2771), + [anon_sym_constinit] = ACTIONS(2771), + [anon_sym_consteval] = ACTIONS(2771), + [anon_sym_alignas] = ACTIONS(2771), + [anon_sym__Alignas] = ACTIONS(2771), + [sym_primitive_type] = ACTIONS(2771), + [anon_sym_enum] = ACTIONS(2771), + [anon_sym_class] = ACTIONS(2771), + [anon_sym_struct] = ACTIONS(2771), + [anon_sym_union] = ACTIONS(2771), [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(1982), - [anon_sym_LR_DQUOTE] = ACTIONS(1982), - [anon_sym_uR_DQUOTE] = ACTIONS(1982), - [anon_sym_UR_DQUOTE] = ACTIONS(1982), - [anon_sym_u8R_DQUOTE] = ACTIONS(1982), - [sym_literal_suffix] = ACTIONS(5392), - }, - [1685] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(4994), - [anon_sym_COMMA] = ACTIONS(4994), - [anon_sym_LPAREN2] = ACTIONS(4994), - [anon_sym_DASH] = ACTIONS(4992), - [anon_sym_PLUS] = ACTIONS(4992), - [anon_sym_STAR] = ACTIONS(4992), - [anon_sym_SLASH] = ACTIONS(4992), - [anon_sym_PERCENT] = ACTIONS(4992), - [anon_sym_PIPE_PIPE] = ACTIONS(4994), - [anon_sym_AMP_AMP] = ACTIONS(4994), - [anon_sym_PIPE] = ACTIONS(4992), - [anon_sym_CARET] = ACTIONS(4992), - [anon_sym_AMP] = ACTIONS(4992), - [anon_sym_EQ_EQ] = ACTIONS(4994), - [anon_sym_BANG_EQ] = ACTIONS(4994), - [anon_sym_GT] = ACTIONS(4992), - [anon_sym_GT_EQ] = ACTIONS(4992), - [anon_sym_LT_EQ] = ACTIONS(4992), - [anon_sym_LT] = ACTIONS(4992), - [anon_sym_LT_LT] = ACTIONS(4992), - [anon_sym_GT_GT] = ACTIONS(4992), - [anon_sym___extension__] = ACTIONS(4994), - [anon_sym___attribute__] = ACTIONS(4994), - [anon_sym___attribute] = ACTIONS(4992), - [anon_sym_COLON] = ACTIONS(4992), - [anon_sym_COLON_COLON] = ACTIONS(4994), - [anon_sym_LBRACE] = ACTIONS(4994), - [anon_sym_LBRACK] = ACTIONS(4994), - [anon_sym_EQ] = ACTIONS(4992), - [anon_sym_const] = ACTIONS(4992), - [anon_sym_constexpr] = ACTIONS(4994), - [anon_sym_volatile] = ACTIONS(4994), - [anon_sym_restrict] = ACTIONS(4994), - [anon_sym___restrict__] = ACTIONS(4994), - [anon_sym__Atomic] = ACTIONS(4994), - [anon_sym__Noreturn] = ACTIONS(4994), - [anon_sym_noreturn] = ACTIONS(4994), - [anon_sym__Nonnull] = ACTIONS(4994), - [anon_sym_mutable] = ACTIONS(4994), - [anon_sym_constinit] = ACTIONS(4994), - [anon_sym_consteval] = ACTIONS(4994), - [anon_sym_alignas] = ACTIONS(4994), - [anon_sym__Alignas] = ACTIONS(4994), - [anon_sym_QMARK] = ACTIONS(4994), - [anon_sym_STAR_EQ] = ACTIONS(4994), - [anon_sym_SLASH_EQ] = ACTIONS(4994), - [anon_sym_PERCENT_EQ] = ACTIONS(4994), - [anon_sym_PLUS_EQ] = ACTIONS(4994), - [anon_sym_DASH_EQ] = ACTIONS(4994), - [anon_sym_LT_LT_EQ] = ACTIONS(4994), - [anon_sym_GT_GT_EQ] = ACTIONS(4992), - [anon_sym_AMP_EQ] = ACTIONS(4994), - [anon_sym_CARET_EQ] = ACTIONS(4994), - [anon_sym_PIPE_EQ] = ACTIONS(4994), - [anon_sym_and_eq] = ACTIONS(4994), - [anon_sym_or_eq] = ACTIONS(4994), - [anon_sym_xor_eq] = ACTIONS(4994), - [anon_sym_LT_EQ_GT] = ACTIONS(4994), - [anon_sym_or] = ACTIONS(4992), - [anon_sym_and] = ACTIONS(4992), - [anon_sym_bitor] = ACTIONS(4994), - [anon_sym_xor] = ACTIONS(4992), - [anon_sym_bitand] = ACTIONS(4994), - [anon_sym_not_eq] = ACTIONS(4994), - [anon_sym_DASH_DASH] = ACTIONS(4994), - [anon_sym_PLUS_PLUS] = ACTIONS(4994), - [anon_sym_DOT] = ACTIONS(4992), - [anon_sym_DOT_STAR] = ACTIONS(4994), - [anon_sym_DASH_GT] = ACTIONS(4994), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4994), - [anon_sym_decltype] = ACTIONS(4994), - [anon_sym_final] = ACTIONS(4994), - [anon_sym_override] = ACTIONS(4994), - [anon_sym_GT2] = ACTIONS(4994), + [sym_auto] = ACTIONS(2771), + [anon_sym_decltype] = ACTIONS(2771), + [anon_sym_explicit] = ACTIONS(2771), + [anon_sym_typename] = ACTIONS(2771), + [anon_sym_private] = ACTIONS(2771), + [anon_sym_template] = ACTIONS(2771), + [anon_sym_operator] = ACTIONS(2771), + [anon_sym_friend] = ACTIONS(2771), + [anon_sym_public] = ACTIONS(2771), + [anon_sym_protected] = ACTIONS(2771), + [anon_sym_static_assert] = ACTIONS(2771), }, - [1686] = { - [sym_catch_clause] = STATE(1679), - [aux_sym_constructor_try_statement_repeat1] = STATE(1679), - [sym_identifier] = ACTIONS(2590), - [aux_sym_preproc_def_token1] = ACTIONS(2590), - [aux_sym_preproc_if_token1] = ACTIONS(2590), - [aux_sym_preproc_if_token2] = ACTIONS(2590), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2590), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2590), - [aux_sym_preproc_else_token1] = ACTIONS(2590), - [aux_sym_preproc_elif_token1] = ACTIONS(2590), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2590), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2590), - [sym_preproc_directive] = ACTIONS(2590), - [anon_sym_LPAREN2] = ACTIONS(2592), - [anon_sym_TILDE] = ACTIONS(2592), - [anon_sym_STAR] = ACTIONS(2592), - [anon_sym_AMP_AMP] = ACTIONS(2592), - [anon_sym_AMP] = ACTIONS(2590), - [anon_sym_SEMI] = ACTIONS(2592), - [anon_sym___extension__] = ACTIONS(2590), - [anon_sym_typedef] = ACTIONS(2590), - [anon_sym_virtual] = ACTIONS(2590), - [anon_sym_extern] = ACTIONS(2590), - [anon_sym___attribute__] = ACTIONS(2590), - [anon_sym___attribute] = ACTIONS(2590), - [anon_sym_using] = ACTIONS(2590), - [anon_sym_COLON_COLON] = ACTIONS(2592), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2592), - [anon_sym___declspec] = ACTIONS(2590), - [anon_sym___based] = ACTIONS(2590), - [anon_sym_signed] = ACTIONS(2590), - [anon_sym_unsigned] = ACTIONS(2590), - [anon_sym_long] = ACTIONS(2590), - [anon_sym_short] = ACTIONS(2590), - [anon_sym_LBRACK] = ACTIONS(2590), - [anon_sym_static] = ACTIONS(2590), - [anon_sym_register] = ACTIONS(2590), - [anon_sym_inline] = ACTIONS(2590), - [anon_sym___inline] = ACTIONS(2590), - [anon_sym___inline__] = ACTIONS(2590), - [anon_sym___forceinline] = ACTIONS(2590), - [anon_sym_thread_local] = ACTIONS(2590), - [anon_sym___thread] = ACTIONS(2590), - [anon_sym_const] = ACTIONS(2590), - [anon_sym_constexpr] = ACTIONS(2590), - [anon_sym_volatile] = ACTIONS(2590), - [anon_sym_restrict] = ACTIONS(2590), - [anon_sym___restrict__] = ACTIONS(2590), - [anon_sym__Atomic] = ACTIONS(2590), - [anon_sym__Noreturn] = ACTIONS(2590), - [anon_sym_noreturn] = ACTIONS(2590), - [anon_sym__Nonnull] = ACTIONS(2590), - [anon_sym_mutable] = ACTIONS(2590), - [anon_sym_constinit] = ACTIONS(2590), - [anon_sym_consteval] = ACTIONS(2590), - [anon_sym_alignas] = ACTIONS(2590), - [anon_sym__Alignas] = ACTIONS(2590), - [sym_primitive_type] = ACTIONS(2590), - [anon_sym_enum] = ACTIONS(2590), - [anon_sym_class] = ACTIONS(2590), - [anon_sym_struct] = ACTIONS(2590), - [anon_sym_union] = ACTIONS(2590), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2590), - [anon_sym_decltype] = ACTIONS(2590), - [anon_sym_explicit] = ACTIONS(2590), - [anon_sym_typename] = ACTIONS(2590), - [anon_sym_private] = ACTIONS(2590), - [anon_sym_template] = ACTIONS(2590), - [anon_sym_operator] = ACTIONS(2590), - [anon_sym_friend] = ACTIONS(2590), - [anon_sym_public] = ACTIONS(2590), - [anon_sym_protected] = ACTIONS(2590), - [anon_sym_static_assert] = ACTIONS(2590), - [anon_sym_catch] = ACTIONS(5379), + [1754] = { + [sym_identifier] = ACTIONS(2967), + [aux_sym_preproc_def_token1] = ACTIONS(2967), + [aux_sym_preproc_if_token1] = ACTIONS(2967), + [aux_sym_preproc_if_token2] = ACTIONS(2967), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2967), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2967), + [aux_sym_preproc_else_token1] = ACTIONS(2967), + [aux_sym_preproc_elif_token1] = ACTIONS(2967), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2967), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2967), + [sym_preproc_directive] = ACTIONS(2967), + [anon_sym_LPAREN2] = ACTIONS(2969), + [anon_sym_TILDE] = ACTIONS(2969), + [anon_sym_STAR] = ACTIONS(2969), + [anon_sym_AMP_AMP] = ACTIONS(2969), + [anon_sym_AMP] = ACTIONS(2967), + [anon_sym_SEMI] = ACTIONS(2969), + [anon_sym___extension__] = ACTIONS(2967), + [anon_sym_typedef] = ACTIONS(2967), + [anon_sym_virtual] = ACTIONS(2967), + [anon_sym_extern] = ACTIONS(2967), + [anon_sym___attribute__] = ACTIONS(2967), + [anon_sym___attribute] = ACTIONS(2967), + [anon_sym_using] = ACTIONS(2967), + [anon_sym_COLON_COLON] = ACTIONS(2969), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2969), + [anon_sym___declspec] = ACTIONS(2967), + [anon_sym___based] = ACTIONS(2967), + [anon_sym_signed] = ACTIONS(2967), + [anon_sym_unsigned] = ACTIONS(2967), + [anon_sym_long] = ACTIONS(2967), + [anon_sym_short] = ACTIONS(2967), + [anon_sym_LBRACK] = ACTIONS(2967), + [anon_sym_static] = ACTIONS(2967), + [anon_sym_register] = ACTIONS(2967), + [anon_sym_inline] = ACTIONS(2967), + [anon_sym___inline] = ACTIONS(2967), + [anon_sym___inline__] = ACTIONS(2967), + [anon_sym___forceinline] = ACTIONS(2967), + [anon_sym_thread_local] = ACTIONS(2967), + [anon_sym___thread] = ACTIONS(2967), + [anon_sym_const] = ACTIONS(2967), + [anon_sym_constexpr] = ACTIONS(2967), + [anon_sym_volatile] = ACTIONS(2967), + [anon_sym_restrict] = ACTIONS(2967), + [anon_sym___restrict__] = ACTIONS(2967), + [anon_sym__Atomic] = ACTIONS(2967), + [anon_sym__Noreturn] = ACTIONS(2967), + [anon_sym_noreturn] = ACTIONS(2967), + [anon_sym__Nonnull] = ACTIONS(2967), + [anon_sym_mutable] = ACTIONS(2967), + [anon_sym_constinit] = ACTIONS(2967), + [anon_sym_consteval] = ACTIONS(2967), + [anon_sym_alignas] = ACTIONS(2967), + [anon_sym__Alignas] = ACTIONS(2967), + [sym_primitive_type] = ACTIONS(2967), + [anon_sym_enum] = ACTIONS(2967), + [anon_sym_class] = ACTIONS(2967), + [anon_sym_struct] = ACTIONS(2967), + [anon_sym_union] = ACTIONS(2967), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2967), + [anon_sym_decltype] = ACTIONS(2967), + [anon_sym_explicit] = ACTIONS(2967), + [anon_sym_typename] = ACTIONS(2967), + [anon_sym_private] = ACTIONS(2967), + [anon_sym_template] = ACTIONS(2967), + [anon_sym_operator] = ACTIONS(2967), + [anon_sym_friend] = ACTIONS(2967), + [anon_sym_public] = ACTIONS(2967), + [anon_sym_protected] = ACTIONS(2967), + [anon_sym_static_assert] = ACTIONS(2967), }, - [1687] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(4953), - [anon_sym_COMMA] = ACTIONS(4953), - [anon_sym_LPAREN2] = ACTIONS(4953), - [anon_sym_DASH] = ACTIONS(4951), - [anon_sym_PLUS] = ACTIONS(4951), - [anon_sym_STAR] = ACTIONS(4951), - [anon_sym_SLASH] = ACTIONS(4951), - [anon_sym_PERCENT] = ACTIONS(4951), - [anon_sym_PIPE_PIPE] = ACTIONS(4953), - [anon_sym_AMP_AMP] = ACTIONS(4953), - [anon_sym_PIPE] = ACTIONS(4951), - [anon_sym_CARET] = ACTIONS(4951), - [anon_sym_AMP] = ACTIONS(4951), - [anon_sym_EQ_EQ] = ACTIONS(4953), - [anon_sym_BANG_EQ] = ACTIONS(4953), - [anon_sym_GT] = ACTIONS(4951), - [anon_sym_GT_EQ] = ACTIONS(4951), - [anon_sym_LT_EQ] = ACTIONS(4951), - [anon_sym_LT] = ACTIONS(4951), - [anon_sym_LT_LT] = ACTIONS(4951), - [anon_sym_GT_GT] = ACTIONS(4951), - [anon_sym___extension__] = ACTIONS(4953), - [anon_sym___attribute__] = ACTIONS(4953), - [anon_sym___attribute] = ACTIONS(4951), - [anon_sym_COLON] = ACTIONS(4951), - [anon_sym_COLON_COLON] = ACTIONS(4953), - [anon_sym_LBRACE] = ACTIONS(4953), - [anon_sym_LBRACK] = ACTIONS(4953), - [anon_sym_EQ] = ACTIONS(4951), - [anon_sym_const] = ACTIONS(4951), - [anon_sym_constexpr] = ACTIONS(4953), - [anon_sym_volatile] = ACTIONS(4953), - [anon_sym_restrict] = ACTIONS(4953), - [anon_sym___restrict__] = ACTIONS(4953), - [anon_sym__Atomic] = ACTIONS(4953), - [anon_sym__Noreturn] = ACTIONS(4953), - [anon_sym_noreturn] = ACTIONS(4953), - [anon_sym__Nonnull] = ACTIONS(4953), - [anon_sym_mutable] = ACTIONS(4953), - [anon_sym_constinit] = ACTIONS(4953), - [anon_sym_consteval] = ACTIONS(4953), - [anon_sym_alignas] = ACTIONS(4953), - [anon_sym__Alignas] = ACTIONS(4953), - [anon_sym_QMARK] = ACTIONS(4953), - [anon_sym_STAR_EQ] = ACTIONS(4953), - [anon_sym_SLASH_EQ] = ACTIONS(4953), - [anon_sym_PERCENT_EQ] = ACTIONS(4953), - [anon_sym_PLUS_EQ] = ACTIONS(4953), - [anon_sym_DASH_EQ] = ACTIONS(4953), - [anon_sym_LT_LT_EQ] = ACTIONS(4953), - [anon_sym_GT_GT_EQ] = ACTIONS(4951), - [anon_sym_AMP_EQ] = ACTIONS(4953), - [anon_sym_CARET_EQ] = ACTIONS(4953), - [anon_sym_PIPE_EQ] = ACTIONS(4953), - [anon_sym_and_eq] = ACTIONS(4953), - [anon_sym_or_eq] = ACTIONS(4953), - [anon_sym_xor_eq] = ACTIONS(4953), - [anon_sym_LT_EQ_GT] = ACTIONS(4953), - [anon_sym_or] = ACTIONS(4951), - [anon_sym_and] = ACTIONS(4951), - [anon_sym_bitor] = ACTIONS(4953), - [anon_sym_xor] = ACTIONS(4951), - [anon_sym_bitand] = ACTIONS(4953), - [anon_sym_not_eq] = ACTIONS(4953), - [anon_sym_DASH_DASH] = ACTIONS(4953), - [anon_sym_PLUS_PLUS] = ACTIONS(4953), - [anon_sym_DOT] = ACTIONS(4951), - [anon_sym_DOT_STAR] = ACTIONS(4953), - [anon_sym_DASH_GT] = ACTIONS(4953), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4953), - [anon_sym_decltype] = ACTIONS(4953), - [anon_sym_final] = ACTIONS(4953), - [anon_sym_override] = ACTIONS(4953), - [anon_sym_GT2] = ACTIONS(4953), + [1755] = { + [sym_identifier] = ACTIONS(2671), + [aux_sym_preproc_def_token1] = ACTIONS(2671), + [aux_sym_preproc_if_token1] = ACTIONS(2671), + [aux_sym_preproc_if_token2] = ACTIONS(2671), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2671), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2671), + [aux_sym_preproc_else_token1] = ACTIONS(2671), + [aux_sym_preproc_elif_token1] = ACTIONS(2671), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2671), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2671), + [sym_preproc_directive] = ACTIONS(2671), + [anon_sym_LPAREN2] = ACTIONS(2673), + [anon_sym_TILDE] = ACTIONS(2673), + [anon_sym_STAR] = ACTIONS(2673), + [anon_sym_AMP_AMP] = ACTIONS(2673), + [anon_sym_AMP] = ACTIONS(2671), + [anon_sym_SEMI] = ACTIONS(2673), + [anon_sym___extension__] = ACTIONS(2671), + [anon_sym_typedef] = ACTIONS(2671), + [anon_sym_virtual] = ACTIONS(2671), + [anon_sym_extern] = ACTIONS(2671), + [anon_sym___attribute__] = ACTIONS(2671), + [anon_sym___attribute] = ACTIONS(2671), + [anon_sym_using] = ACTIONS(2671), + [anon_sym_COLON_COLON] = ACTIONS(2673), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2673), + [anon_sym___declspec] = ACTIONS(2671), + [anon_sym___based] = ACTIONS(2671), + [anon_sym_signed] = ACTIONS(2671), + [anon_sym_unsigned] = ACTIONS(2671), + [anon_sym_long] = ACTIONS(2671), + [anon_sym_short] = ACTIONS(2671), + [anon_sym_LBRACK] = ACTIONS(2671), + [anon_sym_static] = ACTIONS(2671), + [anon_sym_register] = ACTIONS(2671), + [anon_sym_inline] = ACTIONS(2671), + [anon_sym___inline] = ACTIONS(2671), + [anon_sym___inline__] = ACTIONS(2671), + [anon_sym___forceinline] = ACTIONS(2671), + [anon_sym_thread_local] = ACTIONS(2671), + [anon_sym___thread] = ACTIONS(2671), + [anon_sym_const] = ACTIONS(2671), + [anon_sym_constexpr] = ACTIONS(2671), + [anon_sym_volatile] = ACTIONS(2671), + [anon_sym_restrict] = ACTIONS(2671), + [anon_sym___restrict__] = ACTIONS(2671), + [anon_sym__Atomic] = ACTIONS(2671), + [anon_sym__Noreturn] = ACTIONS(2671), + [anon_sym_noreturn] = ACTIONS(2671), + [anon_sym__Nonnull] = ACTIONS(2671), + [anon_sym_mutable] = ACTIONS(2671), + [anon_sym_constinit] = ACTIONS(2671), + [anon_sym_consteval] = ACTIONS(2671), + [anon_sym_alignas] = ACTIONS(2671), + [anon_sym__Alignas] = ACTIONS(2671), + [sym_primitive_type] = ACTIONS(2671), + [anon_sym_enum] = ACTIONS(2671), + [anon_sym_class] = ACTIONS(2671), + [anon_sym_struct] = ACTIONS(2671), + [anon_sym_union] = ACTIONS(2671), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2671), + [anon_sym_decltype] = ACTIONS(2671), + [anon_sym_explicit] = ACTIONS(2671), + [anon_sym_typename] = ACTIONS(2671), + [anon_sym_private] = ACTIONS(2671), + [anon_sym_template] = ACTIONS(2671), + [anon_sym_operator] = ACTIONS(2671), + [anon_sym_friend] = ACTIONS(2671), + [anon_sym_public] = ACTIONS(2671), + [anon_sym_protected] = ACTIONS(2671), + [anon_sym_static_assert] = ACTIONS(2671), }, - [1688] = { - [sym_identifier] = ACTIONS(2573), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2563), - [anon_sym_COMMA] = ACTIONS(2563), - [anon_sym_RPAREN] = ACTIONS(2563), - [anon_sym_LPAREN2] = ACTIONS(2563), - [anon_sym_DASH] = ACTIONS(2573), - [anon_sym_PLUS] = ACTIONS(2573), - [anon_sym_STAR] = ACTIONS(2573), - [anon_sym_SLASH] = ACTIONS(2573), - [anon_sym_PERCENT] = ACTIONS(2573), - [anon_sym_PIPE_PIPE] = ACTIONS(2563), - [anon_sym_AMP_AMP] = ACTIONS(2563), - [anon_sym_PIPE] = ACTIONS(2573), - [anon_sym_CARET] = ACTIONS(2573), - [anon_sym_AMP] = ACTIONS(2573), - [anon_sym_EQ_EQ] = ACTIONS(2563), - [anon_sym_BANG_EQ] = ACTIONS(2563), - [anon_sym_GT] = ACTIONS(2573), - [anon_sym_GT_EQ] = ACTIONS(2563), - [anon_sym_LT_EQ] = ACTIONS(2573), - [anon_sym_LT] = ACTIONS(2573), - [anon_sym_LT_LT] = ACTIONS(2573), - [anon_sym_GT_GT] = ACTIONS(2573), - [anon_sym___extension__] = ACTIONS(2573), - [anon_sym___attribute__] = ACTIONS(2573), - [anon_sym___attribute] = ACTIONS(2573), - [anon_sym_LBRACE] = ACTIONS(2563), - [anon_sym_signed] = ACTIONS(2573), - [anon_sym_unsigned] = ACTIONS(2573), - [anon_sym_long] = ACTIONS(2573), - [anon_sym_short] = ACTIONS(2573), - [anon_sym_LBRACK] = ACTIONS(2563), - [anon_sym_EQ] = ACTIONS(2573), - [anon_sym_const] = ACTIONS(2573), - [anon_sym_constexpr] = ACTIONS(2573), - [anon_sym_volatile] = ACTIONS(2573), - [anon_sym_restrict] = ACTIONS(2573), - [anon_sym___restrict__] = ACTIONS(2573), - [anon_sym__Atomic] = ACTIONS(2573), - [anon_sym__Noreturn] = ACTIONS(2573), - [anon_sym_noreturn] = ACTIONS(2573), - [anon_sym__Nonnull] = ACTIONS(2573), - [anon_sym_mutable] = ACTIONS(2573), - [anon_sym_constinit] = ACTIONS(2573), - [anon_sym_consteval] = ACTIONS(2573), - [anon_sym_alignas] = ACTIONS(2573), - [anon_sym__Alignas] = ACTIONS(2573), - [sym_primitive_type] = ACTIONS(2573), - [anon_sym_QMARK] = ACTIONS(2563), - [anon_sym_STAR_EQ] = ACTIONS(2563), - [anon_sym_SLASH_EQ] = ACTIONS(2563), - [anon_sym_PERCENT_EQ] = ACTIONS(2563), - [anon_sym_PLUS_EQ] = ACTIONS(2563), - [anon_sym_DASH_EQ] = ACTIONS(2563), - [anon_sym_LT_LT_EQ] = ACTIONS(2563), - [anon_sym_GT_GT_EQ] = ACTIONS(2563), - [anon_sym_AMP_EQ] = ACTIONS(2563), - [anon_sym_CARET_EQ] = ACTIONS(2563), - [anon_sym_PIPE_EQ] = ACTIONS(2563), - [anon_sym_LT_EQ_GT] = ACTIONS(2563), - [anon_sym_or] = ACTIONS(2573), - [anon_sym_and] = ACTIONS(2573), - [anon_sym_bitor] = ACTIONS(2573), - [anon_sym_xor] = ACTIONS(2573), - [anon_sym_bitand] = ACTIONS(2573), - [anon_sym_not_eq] = ACTIONS(2573), - [anon_sym_DASH_DASH] = ACTIONS(2563), - [anon_sym_PLUS_PLUS] = ACTIONS(2563), - [anon_sym_DOT] = ACTIONS(2573), - [anon_sym_DOT_STAR] = ACTIONS(2563), - [anon_sym_DASH_GT] = ACTIONS(2573), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2573), - [anon_sym_decltype] = ACTIONS(2573), - [anon_sym_DASH_GT_STAR] = ACTIONS(2563), + [1756] = { + [sym_identifier] = ACTIONS(3091), + [aux_sym_preproc_def_token1] = ACTIONS(3091), + [aux_sym_preproc_if_token1] = ACTIONS(3091), + [aux_sym_preproc_if_token2] = ACTIONS(3091), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3091), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3091), + [aux_sym_preproc_else_token1] = ACTIONS(3091), + [aux_sym_preproc_elif_token1] = ACTIONS(3091), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3091), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3091), + [sym_preproc_directive] = ACTIONS(3091), + [anon_sym_LPAREN2] = ACTIONS(3093), + [anon_sym_TILDE] = ACTIONS(3093), + [anon_sym_STAR] = ACTIONS(3093), + [anon_sym_AMP_AMP] = ACTIONS(3093), + [anon_sym_AMP] = ACTIONS(3091), + [anon_sym_SEMI] = ACTIONS(3093), + [anon_sym___extension__] = ACTIONS(3091), + [anon_sym_typedef] = ACTIONS(3091), + [anon_sym_virtual] = ACTIONS(3091), + [anon_sym_extern] = ACTIONS(3091), + [anon_sym___attribute__] = ACTIONS(3091), + [anon_sym___attribute] = ACTIONS(3091), + [anon_sym_using] = ACTIONS(3091), + [anon_sym_COLON_COLON] = ACTIONS(3093), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3093), + [anon_sym___declspec] = ACTIONS(3091), + [anon_sym___based] = ACTIONS(3091), + [anon_sym_signed] = ACTIONS(3091), + [anon_sym_unsigned] = ACTIONS(3091), + [anon_sym_long] = ACTIONS(3091), + [anon_sym_short] = ACTIONS(3091), + [anon_sym_LBRACK] = ACTIONS(3091), + [anon_sym_static] = ACTIONS(3091), + [anon_sym_register] = ACTIONS(3091), + [anon_sym_inline] = ACTIONS(3091), + [anon_sym___inline] = ACTIONS(3091), + [anon_sym___inline__] = ACTIONS(3091), + [anon_sym___forceinline] = ACTIONS(3091), + [anon_sym_thread_local] = ACTIONS(3091), + [anon_sym___thread] = ACTIONS(3091), + [anon_sym_const] = ACTIONS(3091), + [anon_sym_constexpr] = ACTIONS(3091), + [anon_sym_volatile] = ACTIONS(3091), + [anon_sym_restrict] = ACTIONS(3091), + [anon_sym___restrict__] = ACTIONS(3091), + [anon_sym__Atomic] = ACTIONS(3091), + [anon_sym__Noreturn] = ACTIONS(3091), + [anon_sym_noreturn] = ACTIONS(3091), + [anon_sym__Nonnull] = ACTIONS(3091), + [anon_sym_mutable] = ACTIONS(3091), + [anon_sym_constinit] = ACTIONS(3091), + [anon_sym_consteval] = ACTIONS(3091), + [anon_sym_alignas] = ACTIONS(3091), + [anon_sym__Alignas] = ACTIONS(3091), + [sym_primitive_type] = ACTIONS(3091), + [anon_sym_enum] = ACTIONS(3091), + [anon_sym_class] = ACTIONS(3091), + [anon_sym_struct] = ACTIONS(3091), + [anon_sym_union] = ACTIONS(3091), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3091), + [anon_sym_decltype] = ACTIONS(3091), + [anon_sym_explicit] = ACTIONS(3091), + [anon_sym_typename] = ACTIONS(3091), + [anon_sym_private] = ACTIONS(3091), + [anon_sym_template] = ACTIONS(3091), + [anon_sym_operator] = ACTIONS(3091), + [anon_sym_friend] = ACTIONS(3091), + [anon_sym_public] = ACTIONS(3091), + [anon_sym_protected] = ACTIONS(3091), + [anon_sym_static_assert] = ACTIONS(3091), }, - [1689] = { - [sym_string_literal] = STATE(1692), - [sym_raw_string_literal] = STATE(1692), - [aux_sym_concatenated_string_repeat1] = STATE(1692), - [sym_identifier] = ACTIONS(5394), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5396), - [anon_sym_COMMA] = ACTIONS(5396), - [anon_sym_RPAREN] = ACTIONS(5396), - [aux_sym_preproc_if_token2] = ACTIONS(5396), - [aux_sym_preproc_else_token1] = ACTIONS(5396), - [aux_sym_preproc_elif_token1] = ACTIONS(5398), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5396), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5396), - [anon_sym_LPAREN2] = ACTIONS(5396), - [anon_sym_DASH] = ACTIONS(5398), - [anon_sym_PLUS] = ACTIONS(5398), - [anon_sym_STAR] = ACTIONS(5398), - [anon_sym_SLASH] = ACTIONS(5398), - [anon_sym_PERCENT] = ACTIONS(5398), - [anon_sym_PIPE_PIPE] = ACTIONS(5396), - [anon_sym_AMP_AMP] = ACTIONS(5396), - [anon_sym_PIPE] = ACTIONS(5398), - [anon_sym_CARET] = ACTIONS(5398), - [anon_sym_AMP] = ACTIONS(5398), - [anon_sym_EQ_EQ] = ACTIONS(5396), - [anon_sym_BANG_EQ] = ACTIONS(5396), - [anon_sym_GT] = ACTIONS(5398), - [anon_sym_GT_EQ] = ACTIONS(5396), - [anon_sym_LT_EQ] = ACTIONS(5398), - [anon_sym_LT] = ACTIONS(5398), - [anon_sym_LT_LT] = ACTIONS(5398), - [anon_sym_GT_GT] = ACTIONS(5398), - [anon_sym_SEMI] = ACTIONS(5396), - [anon_sym_COLON] = ACTIONS(5396), - [anon_sym_RBRACE] = ACTIONS(5396), - [anon_sym_LBRACK] = ACTIONS(5396), - [anon_sym_RBRACK] = ACTIONS(5396), - [anon_sym_EQ] = ACTIONS(5398), - [anon_sym_QMARK] = ACTIONS(5396), - [anon_sym_STAR_EQ] = ACTIONS(5396), - [anon_sym_SLASH_EQ] = ACTIONS(5396), - [anon_sym_PERCENT_EQ] = ACTIONS(5396), - [anon_sym_PLUS_EQ] = ACTIONS(5396), - [anon_sym_DASH_EQ] = ACTIONS(5396), - [anon_sym_LT_LT_EQ] = ACTIONS(5396), - [anon_sym_GT_GT_EQ] = ACTIONS(5396), - [anon_sym_AMP_EQ] = ACTIONS(5396), - [anon_sym_CARET_EQ] = ACTIONS(5396), - [anon_sym_PIPE_EQ] = ACTIONS(5396), - [anon_sym_and_eq] = ACTIONS(5398), - [anon_sym_or_eq] = ACTIONS(5398), - [anon_sym_xor_eq] = ACTIONS(5398), - [anon_sym_LT_EQ_GT] = ACTIONS(5396), - [anon_sym_or] = ACTIONS(5398), - [anon_sym_and] = ACTIONS(5398), - [anon_sym_bitor] = ACTIONS(5398), - [anon_sym_xor] = ACTIONS(5398), - [anon_sym_bitand] = ACTIONS(5398), - [anon_sym_not_eq] = ACTIONS(5398), - [anon_sym_DASH_DASH] = ACTIONS(5396), - [anon_sym_PLUS_PLUS] = ACTIONS(5396), - [anon_sym_DOT] = ACTIONS(5398), - [anon_sym_DOT_STAR] = ACTIONS(5396), - [anon_sym_DASH_GT] = ACTIONS(5396), - [anon_sym_L_DQUOTE] = ACTIONS(1972), - [anon_sym_u_DQUOTE] = ACTIONS(1972), - [anon_sym_U_DQUOTE] = ACTIONS(1972), - [anon_sym_u8_DQUOTE] = ACTIONS(1972), - [anon_sym_DQUOTE] = ACTIONS(1972), + [1757] = { + [sym_identifier] = ACTIONS(3112), + [aux_sym_preproc_def_token1] = ACTIONS(3112), + [aux_sym_preproc_if_token1] = ACTIONS(3112), + [aux_sym_preproc_if_token2] = ACTIONS(3112), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3112), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3112), + [aux_sym_preproc_else_token1] = ACTIONS(3112), + [aux_sym_preproc_elif_token1] = ACTIONS(3112), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3112), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3112), + [sym_preproc_directive] = ACTIONS(3112), + [anon_sym_LPAREN2] = ACTIONS(3114), + [anon_sym_TILDE] = ACTIONS(3114), + [anon_sym_STAR] = ACTIONS(3114), + [anon_sym_AMP_AMP] = ACTIONS(3114), + [anon_sym_AMP] = ACTIONS(3112), + [anon_sym_SEMI] = ACTIONS(3114), + [anon_sym___extension__] = ACTIONS(3112), + [anon_sym_typedef] = ACTIONS(3112), + [anon_sym_virtual] = ACTIONS(3112), + [anon_sym_extern] = ACTIONS(3112), + [anon_sym___attribute__] = ACTIONS(3112), + [anon_sym___attribute] = ACTIONS(3112), + [anon_sym_using] = ACTIONS(3112), + [anon_sym_COLON_COLON] = ACTIONS(3114), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3114), + [anon_sym___declspec] = ACTIONS(3112), + [anon_sym___based] = ACTIONS(3112), + [anon_sym_signed] = ACTIONS(3112), + [anon_sym_unsigned] = ACTIONS(3112), + [anon_sym_long] = ACTIONS(3112), + [anon_sym_short] = ACTIONS(3112), + [anon_sym_LBRACK] = ACTIONS(3112), + [anon_sym_static] = ACTIONS(3112), + [anon_sym_register] = ACTIONS(3112), + [anon_sym_inline] = ACTIONS(3112), + [anon_sym___inline] = ACTIONS(3112), + [anon_sym___inline__] = ACTIONS(3112), + [anon_sym___forceinline] = ACTIONS(3112), + [anon_sym_thread_local] = ACTIONS(3112), + [anon_sym___thread] = ACTIONS(3112), + [anon_sym_const] = ACTIONS(3112), + [anon_sym_constexpr] = ACTIONS(3112), + [anon_sym_volatile] = ACTIONS(3112), + [anon_sym_restrict] = ACTIONS(3112), + [anon_sym___restrict__] = ACTIONS(3112), + [anon_sym__Atomic] = ACTIONS(3112), + [anon_sym__Noreturn] = ACTIONS(3112), + [anon_sym_noreturn] = ACTIONS(3112), + [anon_sym__Nonnull] = ACTIONS(3112), + [anon_sym_mutable] = ACTIONS(3112), + [anon_sym_constinit] = ACTIONS(3112), + [anon_sym_consteval] = ACTIONS(3112), + [anon_sym_alignas] = ACTIONS(3112), + [anon_sym__Alignas] = ACTIONS(3112), + [sym_primitive_type] = ACTIONS(3112), + [anon_sym_enum] = ACTIONS(3112), + [anon_sym_class] = ACTIONS(3112), + [anon_sym_struct] = ACTIONS(3112), + [anon_sym_union] = ACTIONS(3112), [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(1982), - [anon_sym_LR_DQUOTE] = ACTIONS(1982), - [anon_sym_uR_DQUOTE] = ACTIONS(1982), - [anon_sym_UR_DQUOTE] = ACTIONS(1982), - [anon_sym_u8R_DQUOTE] = ACTIONS(1982), - [sym_literal_suffix] = ACTIONS(5398), - }, - [1690] = { - [sym_catch_clause] = STATE(1679), - [aux_sym_constructor_try_statement_repeat1] = STATE(1679), - [sym_identifier] = ACTIONS(2483), - [aux_sym_preproc_def_token1] = ACTIONS(2483), - [aux_sym_preproc_if_token1] = ACTIONS(2483), - [aux_sym_preproc_if_token2] = ACTIONS(2483), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2483), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2483), - [aux_sym_preproc_else_token1] = ACTIONS(2483), - [aux_sym_preproc_elif_token1] = ACTIONS(2483), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2483), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2483), - [sym_preproc_directive] = ACTIONS(2483), - [anon_sym_LPAREN2] = ACTIONS(2485), - [anon_sym_TILDE] = ACTIONS(2485), - [anon_sym_STAR] = ACTIONS(2485), - [anon_sym_AMP_AMP] = ACTIONS(2485), - [anon_sym_AMP] = ACTIONS(2483), - [anon_sym_SEMI] = ACTIONS(2485), - [anon_sym___extension__] = ACTIONS(2483), - [anon_sym_typedef] = ACTIONS(2483), - [anon_sym_virtual] = ACTIONS(2483), - [anon_sym_extern] = ACTIONS(2483), - [anon_sym___attribute__] = ACTIONS(2483), - [anon_sym___attribute] = ACTIONS(2483), - [anon_sym_using] = ACTIONS(2483), - [anon_sym_COLON_COLON] = ACTIONS(2485), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2485), - [anon_sym___declspec] = ACTIONS(2483), - [anon_sym___based] = ACTIONS(2483), - [anon_sym_signed] = ACTIONS(2483), - [anon_sym_unsigned] = ACTIONS(2483), - [anon_sym_long] = ACTIONS(2483), - [anon_sym_short] = ACTIONS(2483), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_static] = ACTIONS(2483), - [anon_sym_register] = ACTIONS(2483), - [anon_sym_inline] = ACTIONS(2483), - [anon_sym___inline] = ACTIONS(2483), - [anon_sym___inline__] = ACTIONS(2483), - [anon_sym___forceinline] = ACTIONS(2483), - [anon_sym_thread_local] = ACTIONS(2483), - [anon_sym___thread] = ACTIONS(2483), - [anon_sym_const] = ACTIONS(2483), - [anon_sym_constexpr] = ACTIONS(2483), - [anon_sym_volatile] = ACTIONS(2483), - [anon_sym_restrict] = ACTIONS(2483), - [anon_sym___restrict__] = ACTIONS(2483), - [anon_sym__Atomic] = ACTIONS(2483), - [anon_sym__Noreturn] = ACTIONS(2483), - [anon_sym_noreturn] = ACTIONS(2483), - [anon_sym__Nonnull] = ACTIONS(2483), - [anon_sym_mutable] = ACTIONS(2483), - [anon_sym_constinit] = ACTIONS(2483), - [anon_sym_consteval] = ACTIONS(2483), - [anon_sym_alignas] = ACTIONS(2483), - [anon_sym__Alignas] = ACTIONS(2483), - [sym_primitive_type] = ACTIONS(2483), - [anon_sym_enum] = ACTIONS(2483), - [anon_sym_class] = ACTIONS(2483), - [anon_sym_struct] = ACTIONS(2483), - [anon_sym_union] = ACTIONS(2483), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2483), - [anon_sym_decltype] = ACTIONS(2483), - [anon_sym_explicit] = ACTIONS(2483), - [anon_sym_typename] = ACTIONS(2483), - [anon_sym_private] = ACTIONS(2483), - [anon_sym_template] = ACTIONS(2483), - [anon_sym_operator] = ACTIONS(2483), - [anon_sym_friend] = ACTIONS(2483), - [anon_sym_public] = ACTIONS(2483), - [anon_sym_protected] = ACTIONS(2483), - [anon_sym_static_assert] = ACTIONS(2483), - [anon_sym_catch] = ACTIONS(5379), - }, - [1691] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(4961), - [anon_sym_COMMA] = ACTIONS(4961), - [anon_sym_LPAREN2] = ACTIONS(4961), - [anon_sym_DASH] = ACTIONS(4959), - [anon_sym_PLUS] = ACTIONS(4959), - [anon_sym_STAR] = ACTIONS(4959), - [anon_sym_SLASH] = ACTIONS(4959), - [anon_sym_PERCENT] = ACTIONS(4959), - [anon_sym_PIPE_PIPE] = ACTIONS(4961), - [anon_sym_AMP_AMP] = ACTIONS(4961), - [anon_sym_PIPE] = ACTIONS(4959), - [anon_sym_CARET] = ACTIONS(4959), - [anon_sym_AMP] = ACTIONS(4959), - [anon_sym_EQ_EQ] = ACTIONS(4961), - [anon_sym_BANG_EQ] = ACTIONS(4961), - [anon_sym_GT] = ACTIONS(4959), - [anon_sym_GT_EQ] = ACTIONS(4959), - [anon_sym_LT_EQ] = ACTIONS(4959), - [anon_sym_LT] = ACTIONS(4959), - [anon_sym_LT_LT] = ACTIONS(4959), - [anon_sym_GT_GT] = ACTIONS(4959), - [anon_sym___extension__] = ACTIONS(4961), - [anon_sym___attribute__] = ACTIONS(4961), - [anon_sym___attribute] = ACTIONS(4959), - [anon_sym_COLON] = ACTIONS(4959), - [anon_sym_COLON_COLON] = ACTIONS(4961), - [anon_sym_LBRACE] = ACTIONS(4961), - [anon_sym_LBRACK] = ACTIONS(4961), - [anon_sym_EQ] = ACTIONS(4959), - [anon_sym_const] = ACTIONS(4959), - [anon_sym_constexpr] = ACTIONS(4961), - [anon_sym_volatile] = ACTIONS(4961), - [anon_sym_restrict] = ACTIONS(4961), - [anon_sym___restrict__] = ACTIONS(4961), - [anon_sym__Atomic] = ACTIONS(4961), - [anon_sym__Noreturn] = ACTIONS(4961), - [anon_sym_noreturn] = ACTIONS(4961), - [anon_sym__Nonnull] = ACTIONS(4961), - [anon_sym_mutable] = ACTIONS(4961), - [anon_sym_constinit] = ACTIONS(4961), - [anon_sym_consteval] = ACTIONS(4961), - [anon_sym_alignas] = ACTIONS(4961), - [anon_sym__Alignas] = ACTIONS(4961), - [anon_sym_QMARK] = ACTIONS(4961), - [anon_sym_STAR_EQ] = ACTIONS(4961), - [anon_sym_SLASH_EQ] = ACTIONS(4961), - [anon_sym_PERCENT_EQ] = ACTIONS(4961), - [anon_sym_PLUS_EQ] = ACTIONS(4961), - [anon_sym_DASH_EQ] = ACTIONS(4961), - [anon_sym_LT_LT_EQ] = ACTIONS(4961), - [anon_sym_GT_GT_EQ] = ACTIONS(4959), - [anon_sym_AMP_EQ] = ACTIONS(4961), - [anon_sym_CARET_EQ] = ACTIONS(4961), - [anon_sym_PIPE_EQ] = ACTIONS(4961), - [anon_sym_and_eq] = ACTIONS(4961), - [anon_sym_or_eq] = ACTIONS(4961), - [anon_sym_xor_eq] = ACTIONS(4961), - [anon_sym_LT_EQ_GT] = ACTIONS(4961), - [anon_sym_or] = ACTIONS(4959), - [anon_sym_and] = ACTIONS(4959), - [anon_sym_bitor] = ACTIONS(4961), - [anon_sym_xor] = ACTIONS(4959), - [anon_sym_bitand] = ACTIONS(4961), - [anon_sym_not_eq] = ACTIONS(4961), - [anon_sym_DASH_DASH] = ACTIONS(4961), - [anon_sym_PLUS_PLUS] = ACTIONS(4961), - [anon_sym_DOT] = ACTIONS(4959), - [anon_sym_DOT_STAR] = ACTIONS(4961), - [anon_sym_DASH_GT] = ACTIONS(4961), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4961), - [anon_sym_decltype] = ACTIONS(4961), - [anon_sym_final] = ACTIONS(4961), - [anon_sym_override] = ACTIONS(4961), - [anon_sym_GT2] = ACTIONS(4961), - }, - [1692] = { - [sym_string_literal] = STATE(1692), - [sym_raw_string_literal] = STATE(1692), - [aux_sym_concatenated_string_repeat1] = STATE(1692), - [sym_identifier] = ACTIONS(5400), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5403), - [anon_sym_COMMA] = ACTIONS(5403), - [anon_sym_RPAREN] = ACTIONS(5403), - [aux_sym_preproc_if_token2] = ACTIONS(5403), - [aux_sym_preproc_else_token1] = ACTIONS(5403), - [aux_sym_preproc_elif_token1] = ACTIONS(5405), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5403), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5403), - [anon_sym_LPAREN2] = ACTIONS(5403), - [anon_sym_DASH] = ACTIONS(5405), - [anon_sym_PLUS] = ACTIONS(5405), - [anon_sym_STAR] = ACTIONS(5405), - [anon_sym_SLASH] = ACTIONS(5405), - [anon_sym_PERCENT] = ACTIONS(5405), - [anon_sym_PIPE_PIPE] = ACTIONS(5403), - [anon_sym_AMP_AMP] = ACTIONS(5403), - [anon_sym_PIPE] = ACTIONS(5405), - [anon_sym_CARET] = ACTIONS(5405), - [anon_sym_AMP] = ACTIONS(5405), - [anon_sym_EQ_EQ] = ACTIONS(5403), - [anon_sym_BANG_EQ] = ACTIONS(5403), - [anon_sym_GT] = ACTIONS(5405), - [anon_sym_GT_EQ] = ACTIONS(5403), - [anon_sym_LT_EQ] = ACTIONS(5405), - [anon_sym_LT] = ACTIONS(5405), - [anon_sym_LT_LT] = ACTIONS(5405), - [anon_sym_GT_GT] = ACTIONS(5405), - [anon_sym_SEMI] = ACTIONS(5403), - [anon_sym_COLON] = ACTIONS(5403), - [anon_sym_RBRACE] = ACTIONS(5403), - [anon_sym_LBRACK] = ACTIONS(5403), - [anon_sym_RBRACK] = ACTIONS(5403), - [anon_sym_EQ] = ACTIONS(5405), - [anon_sym_QMARK] = ACTIONS(5403), - [anon_sym_STAR_EQ] = ACTIONS(5403), - [anon_sym_SLASH_EQ] = ACTIONS(5403), - [anon_sym_PERCENT_EQ] = ACTIONS(5403), - [anon_sym_PLUS_EQ] = ACTIONS(5403), - [anon_sym_DASH_EQ] = ACTIONS(5403), - [anon_sym_LT_LT_EQ] = ACTIONS(5403), - [anon_sym_GT_GT_EQ] = ACTIONS(5403), - [anon_sym_AMP_EQ] = ACTIONS(5403), - [anon_sym_CARET_EQ] = ACTIONS(5403), - [anon_sym_PIPE_EQ] = ACTIONS(5403), - [anon_sym_and_eq] = ACTIONS(5405), - [anon_sym_or_eq] = ACTIONS(5405), - [anon_sym_xor_eq] = ACTIONS(5405), - [anon_sym_LT_EQ_GT] = ACTIONS(5403), - [anon_sym_or] = ACTIONS(5405), - [anon_sym_and] = ACTIONS(5405), - [anon_sym_bitor] = ACTIONS(5405), - [anon_sym_xor] = ACTIONS(5405), - [anon_sym_bitand] = ACTIONS(5405), - [anon_sym_not_eq] = ACTIONS(5405), - [anon_sym_DASH_DASH] = ACTIONS(5403), - [anon_sym_PLUS_PLUS] = ACTIONS(5403), - [anon_sym_DOT] = ACTIONS(5405), - [anon_sym_DOT_STAR] = ACTIONS(5403), - [anon_sym_DASH_GT] = ACTIONS(5403), - [anon_sym_L_DQUOTE] = ACTIONS(5407), - [anon_sym_u_DQUOTE] = ACTIONS(5407), - [anon_sym_U_DQUOTE] = ACTIONS(5407), - [anon_sym_u8_DQUOTE] = ACTIONS(5407), - [anon_sym_DQUOTE] = ACTIONS(5407), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5410), - [anon_sym_LR_DQUOTE] = ACTIONS(5410), - [anon_sym_uR_DQUOTE] = ACTIONS(5410), - [anon_sym_UR_DQUOTE] = ACTIONS(5410), - [anon_sym_u8R_DQUOTE] = ACTIONS(5410), - [sym_literal_suffix] = ACTIONS(5405), + [sym_auto] = ACTIONS(3112), + [anon_sym_decltype] = ACTIONS(3112), + [anon_sym_explicit] = ACTIONS(3112), + [anon_sym_typename] = ACTIONS(3112), + [anon_sym_private] = ACTIONS(3112), + [anon_sym_template] = ACTIONS(3112), + [anon_sym_operator] = ACTIONS(3112), + [anon_sym_friend] = ACTIONS(3112), + [anon_sym_public] = ACTIONS(3112), + [anon_sym_protected] = ACTIONS(3112), + [anon_sym_static_assert] = ACTIONS(3112), }, - [1693] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(4990), - [anon_sym_COMMA] = ACTIONS(4990), - [anon_sym_LPAREN2] = ACTIONS(4990), - [anon_sym_DASH] = ACTIONS(4988), - [anon_sym_PLUS] = ACTIONS(4988), - [anon_sym_STAR] = ACTIONS(4988), - [anon_sym_SLASH] = ACTIONS(4988), - [anon_sym_PERCENT] = ACTIONS(4988), - [anon_sym_PIPE_PIPE] = ACTIONS(4990), - [anon_sym_AMP_AMP] = ACTIONS(4990), - [anon_sym_PIPE] = ACTIONS(4988), - [anon_sym_CARET] = ACTIONS(4988), - [anon_sym_AMP] = ACTIONS(4988), - [anon_sym_EQ_EQ] = ACTIONS(4990), - [anon_sym_BANG_EQ] = ACTIONS(4990), - [anon_sym_GT] = ACTIONS(4988), - [anon_sym_GT_EQ] = ACTIONS(4988), - [anon_sym_LT_EQ] = ACTIONS(4988), - [anon_sym_LT] = ACTIONS(4988), - [anon_sym_LT_LT] = ACTIONS(4988), - [anon_sym_GT_GT] = ACTIONS(4988), - [anon_sym___extension__] = ACTIONS(4990), - [anon_sym___attribute__] = ACTIONS(4990), - [anon_sym___attribute] = ACTIONS(4988), - [anon_sym_COLON] = ACTIONS(4988), - [anon_sym_COLON_COLON] = ACTIONS(4990), - [anon_sym_LBRACE] = ACTIONS(4990), - [anon_sym_LBRACK] = ACTIONS(4990), - [anon_sym_EQ] = ACTIONS(4988), - [anon_sym_const] = ACTIONS(4988), - [anon_sym_constexpr] = ACTIONS(4990), - [anon_sym_volatile] = ACTIONS(4990), - [anon_sym_restrict] = ACTIONS(4990), - [anon_sym___restrict__] = ACTIONS(4990), - [anon_sym__Atomic] = ACTIONS(4990), - [anon_sym__Noreturn] = ACTIONS(4990), - [anon_sym_noreturn] = ACTIONS(4990), - [anon_sym__Nonnull] = ACTIONS(4990), - [anon_sym_mutable] = ACTIONS(4990), - [anon_sym_constinit] = ACTIONS(4990), - [anon_sym_consteval] = ACTIONS(4990), - [anon_sym_alignas] = ACTIONS(4990), - [anon_sym__Alignas] = ACTIONS(4990), - [anon_sym_QMARK] = ACTIONS(4990), - [anon_sym_STAR_EQ] = ACTIONS(4990), - [anon_sym_SLASH_EQ] = ACTIONS(4990), - [anon_sym_PERCENT_EQ] = ACTIONS(4990), - [anon_sym_PLUS_EQ] = ACTIONS(4990), - [anon_sym_DASH_EQ] = ACTIONS(4990), - [anon_sym_LT_LT_EQ] = ACTIONS(4990), - [anon_sym_GT_GT_EQ] = ACTIONS(4988), - [anon_sym_AMP_EQ] = ACTIONS(4990), - [anon_sym_CARET_EQ] = ACTIONS(4990), - [anon_sym_PIPE_EQ] = ACTIONS(4990), - [anon_sym_and_eq] = ACTIONS(4990), - [anon_sym_or_eq] = ACTIONS(4990), - [anon_sym_xor_eq] = ACTIONS(4990), - [anon_sym_LT_EQ_GT] = ACTIONS(4990), - [anon_sym_or] = ACTIONS(4988), - [anon_sym_and] = ACTIONS(4988), - [anon_sym_bitor] = ACTIONS(4990), - [anon_sym_xor] = ACTIONS(4988), - [anon_sym_bitand] = ACTIONS(4990), - [anon_sym_not_eq] = ACTIONS(4990), - [anon_sym_DASH_DASH] = ACTIONS(4990), - [anon_sym_PLUS_PLUS] = ACTIONS(4990), - [anon_sym_DOT] = ACTIONS(4988), - [anon_sym_DOT_STAR] = ACTIONS(4990), - [anon_sym_DASH_GT] = ACTIONS(4990), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4990), - [anon_sym_decltype] = ACTIONS(4990), - [anon_sym_final] = ACTIONS(4990), - [anon_sym_override] = ACTIONS(4990), - [anon_sym_GT2] = ACTIONS(4990), + [1758] = { + [sym_identifier] = ACTIONS(3116), + [aux_sym_preproc_def_token1] = ACTIONS(3116), + [aux_sym_preproc_if_token1] = ACTIONS(3116), + [aux_sym_preproc_if_token2] = ACTIONS(3116), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3116), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3116), + [aux_sym_preproc_else_token1] = ACTIONS(3116), + [aux_sym_preproc_elif_token1] = ACTIONS(3116), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3116), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3116), + [sym_preproc_directive] = ACTIONS(3116), + [anon_sym_LPAREN2] = ACTIONS(3118), + [anon_sym_TILDE] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(3118), + [anon_sym_AMP_AMP] = ACTIONS(3118), + [anon_sym_AMP] = ACTIONS(3116), + [anon_sym_SEMI] = ACTIONS(3118), + [anon_sym___extension__] = ACTIONS(3116), + [anon_sym_typedef] = ACTIONS(3116), + [anon_sym_virtual] = ACTIONS(3116), + [anon_sym_extern] = ACTIONS(3116), + [anon_sym___attribute__] = ACTIONS(3116), + [anon_sym___attribute] = ACTIONS(3116), + [anon_sym_using] = ACTIONS(3116), + [anon_sym_COLON_COLON] = ACTIONS(3118), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3118), + [anon_sym___declspec] = ACTIONS(3116), + [anon_sym___based] = ACTIONS(3116), + [anon_sym_signed] = ACTIONS(3116), + [anon_sym_unsigned] = ACTIONS(3116), + [anon_sym_long] = ACTIONS(3116), + [anon_sym_short] = ACTIONS(3116), + [anon_sym_LBRACK] = ACTIONS(3116), + [anon_sym_static] = ACTIONS(3116), + [anon_sym_register] = ACTIONS(3116), + [anon_sym_inline] = ACTIONS(3116), + [anon_sym___inline] = ACTIONS(3116), + [anon_sym___inline__] = ACTIONS(3116), + [anon_sym___forceinline] = ACTIONS(3116), + [anon_sym_thread_local] = ACTIONS(3116), + [anon_sym___thread] = ACTIONS(3116), + [anon_sym_const] = ACTIONS(3116), + [anon_sym_constexpr] = ACTIONS(3116), + [anon_sym_volatile] = ACTIONS(3116), + [anon_sym_restrict] = ACTIONS(3116), + [anon_sym___restrict__] = ACTIONS(3116), + [anon_sym__Atomic] = ACTIONS(3116), + [anon_sym__Noreturn] = ACTIONS(3116), + [anon_sym_noreturn] = ACTIONS(3116), + [anon_sym__Nonnull] = ACTIONS(3116), + [anon_sym_mutable] = ACTIONS(3116), + [anon_sym_constinit] = ACTIONS(3116), + [anon_sym_consteval] = ACTIONS(3116), + [anon_sym_alignas] = ACTIONS(3116), + [anon_sym__Alignas] = ACTIONS(3116), + [sym_primitive_type] = ACTIONS(3116), + [anon_sym_enum] = ACTIONS(3116), + [anon_sym_class] = ACTIONS(3116), + [anon_sym_struct] = ACTIONS(3116), + [anon_sym_union] = ACTIONS(3116), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3116), + [anon_sym_decltype] = ACTIONS(3116), + [anon_sym_explicit] = ACTIONS(3116), + [anon_sym_typename] = ACTIONS(3116), + [anon_sym_private] = ACTIONS(3116), + [anon_sym_template] = ACTIONS(3116), + [anon_sym_operator] = ACTIONS(3116), + [anon_sym_friend] = ACTIONS(3116), + [anon_sym_public] = ACTIONS(3116), + [anon_sym_protected] = ACTIONS(3116), + [anon_sym_static_assert] = ACTIONS(3116), }, - [1694] = { - [sym_identifier] = ACTIONS(5413), - [anon_sym_LPAREN2] = ACTIONS(5415), - [anon_sym_BANG] = ACTIONS(5415), - [anon_sym_TILDE] = ACTIONS(5415), - [anon_sym_DASH] = ACTIONS(5413), - [anon_sym_PLUS] = ACTIONS(5413), - [anon_sym_STAR] = ACTIONS(5415), - [anon_sym_AMP] = ACTIONS(5415), - [anon_sym_SEMI] = ACTIONS(5415), - [anon_sym___extension__] = ACTIONS(5413), - [anon_sym_COLON_COLON] = ACTIONS(5415), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5415), - [anon_sym_LBRACE] = ACTIONS(5415), - [anon_sym_LBRACK] = ACTIONS(5413), - [sym_primitive_type] = ACTIONS(5413), - [anon_sym_if] = ACTIONS(5413), - [anon_sym_switch] = ACTIONS(5413), - [anon_sym_case] = ACTIONS(5413), - [anon_sym_default] = ACTIONS(5413), - [anon_sym_while] = ACTIONS(5413), - [anon_sym_do] = ACTIONS(5413), - [anon_sym_for] = ACTIONS(5413), - [anon_sym_return] = ACTIONS(5413), - [anon_sym_break] = ACTIONS(5413), - [anon_sym_continue] = ACTIONS(5413), - [anon_sym_goto] = ACTIONS(5413), - [anon_sym___try] = ACTIONS(5413), - [anon_sym___leave] = ACTIONS(5413), - [anon_sym_not] = ACTIONS(5413), - [anon_sym_compl] = ACTIONS(5413), - [anon_sym_DASH_DASH] = ACTIONS(5415), - [anon_sym_PLUS_PLUS] = ACTIONS(5415), - [anon_sym_sizeof] = ACTIONS(5413), - [anon_sym___alignof__] = ACTIONS(5413), - [anon_sym___alignof] = ACTIONS(5413), - [anon_sym__alignof] = ACTIONS(5413), - [anon_sym_alignof] = ACTIONS(5413), - [anon_sym__Alignof] = ACTIONS(5413), - [anon_sym_offsetof] = ACTIONS(5413), - [anon_sym__Generic] = ACTIONS(5413), - [anon_sym_asm] = ACTIONS(5413), - [anon_sym___asm__] = ACTIONS(5413), - [anon_sym___asm] = ACTIONS(5413), - [sym_number_literal] = ACTIONS(5415), - [anon_sym_L_SQUOTE] = ACTIONS(5415), - [anon_sym_u_SQUOTE] = ACTIONS(5415), - [anon_sym_U_SQUOTE] = ACTIONS(5415), - [anon_sym_u8_SQUOTE] = ACTIONS(5415), - [anon_sym_SQUOTE] = ACTIONS(5415), - [anon_sym_L_DQUOTE] = ACTIONS(5415), - [anon_sym_u_DQUOTE] = ACTIONS(5415), - [anon_sym_U_DQUOTE] = ACTIONS(5415), - [anon_sym_u8_DQUOTE] = ACTIONS(5415), - [anon_sym_DQUOTE] = ACTIONS(5415), - [sym_true] = ACTIONS(5413), - [sym_false] = ACTIONS(5413), - [anon_sym_NULL] = ACTIONS(5413), - [anon_sym_nullptr] = ACTIONS(5413), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(5413), - [anon_sym_template] = ACTIONS(5413), - [anon_sym_try] = ACTIONS(5413), - [anon_sym_delete] = ACTIONS(5413), - [anon_sym_throw] = ACTIONS(5413), - [anon_sym_co_return] = ACTIONS(5413), - [anon_sym_co_yield] = ACTIONS(5413), - [anon_sym_R_DQUOTE] = ACTIONS(5415), - [anon_sym_LR_DQUOTE] = ACTIONS(5415), - [anon_sym_uR_DQUOTE] = ACTIONS(5415), - [anon_sym_UR_DQUOTE] = ACTIONS(5415), - [anon_sym_u8R_DQUOTE] = ACTIONS(5415), - [anon_sym_co_await] = ACTIONS(5413), - [anon_sym_new] = ACTIONS(5413), - [anon_sym_requires] = ACTIONS(5413), - [sym_this] = ACTIONS(5413), + [1759] = { + [sym__declaration_modifiers] = STATE(3363), + [sym_attribute_specifier] = STATE(3363), + [sym_attribute_declaration] = STATE(3363), + [sym_ms_declspec_modifier] = STATE(3363), + [sym_ms_based_modifier] = STATE(8864), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6329), + [sym_array_declarator] = STATE(6145), + [sym_storage_class_specifier] = STATE(3363), + [sym_type_qualifier] = STATE(3363), + [sym_alignas_qualifier] = STATE(3054), + [sym_decltype] = STATE(8569), + [sym_explicit_function_specifier] = STATE(3363), + [sym_operator_cast] = STATE(6903), + [sym__constructor_specifiers] = STATE(3363), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(8569), + [sym_template_function] = STATE(6145), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5569), + [sym_qualified_identifier] = STATE(6145), + [sym_qualified_operator_cast_identifier] = STATE(6903), + [sym_operator_name] = STATE(6145), + [aux_sym_operator_cast_definition_repeat1] = STATE(3363), + [sym_identifier] = ACTIONS(5481), + [anon_sym_LPAREN2] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(3001), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3003), + [anon_sym___extension__] = ACTIONS(5483), + [anon_sym_virtual] = ACTIONS(5485), + [anon_sym_extern] = ACTIONS(5487), + [anon_sym___attribute__] = ACTIONS(5489), + [anon_sym___attribute] = ACTIONS(5489), + [anon_sym_COLON_COLON] = ACTIONS(5491), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5493), + [anon_sym___declspec] = ACTIONS(5495), + [anon_sym___based] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(3015), + [anon_sym_static] = ACTIONS(5487), + [anon_sym_register] = ACTIONS(5487), + [anon_sym_inline] = ACTIONS(5487), + [anon_sym___inline] = ACTIONS(5487), + [anon_sym___inline__] = ACTIONS(5487), + [anon_sym___forceinline] = ACTIONS(5487), + [anon_sym_thread_local] = ACTIONS(5487), + [anon_sym___thread] = ACTIONS(5487), + [anon_sym_const] = ACTIONS(5483), + [anon_sym_constexpr] = ACTIONS(5483), + [anon_sym_volatile] = ACTIONS(5483), + [anon_sym_restrict] = ACTIONS(5483), + [anon_sym___restrict__] = ACTIONS(5483), + [anon_sym__Atomic] = ACTIONS(5483), + [anon_sym__Noreturn] = ACTIONS(5483), + [anon_sym_noreturn] = ACTIONS(5483), + [anon_sym__Nonnull] = ACTIONS(5483), + [anon_sym_mutable] = ACTIONS(5483), + [anon_sym_constinit] = ACTIONS(5483), + [anon_sym_consteval] = ACTIONS(5483), + [anon_sym_alignas] = ACTIONS(5497), + [anon_sym__Alignas] = ACTIONS(5497), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_explicit] = ACTIONS(129), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_operator] = ACTIONS(141), }, - [1695] = { - [sym_identifier] = ACTIONS(2573), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2563), - [anon_sym_COMMA] = ACTIONS(2563), - [anon_sym_RPAREN] = ACTIONS(2563), - [aux_sym_preproc_if_token2] = ACTIONS(2563), - [aux_sym_preproc_else_token1] = ACTIONS(2563), - [aux_sym_preproc_elif_token1] = ACTIONS(2573), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2563), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2563), - [anon_sym_LPAREN2] = ACTIONS(2563), - [anon_sym_DASH] = ACTIONS(2573), - [anon_sym_PLUS] = ACTIONS(2573), - [anon_sym_STAR] = ACTIONS(2563), - [anon_sym_SLASH] = ACTIONS(2573), - [anon_sym_PERCENT] = ACTIONS(2563), - [anon_sym_PIPE_PIPE] = ACTIONS(2563), - [anon_sym_AMP_AMP] = ACTIONS(2563), - [anon_sym_PIPE] = ACTIONS(2573), - [anon_sym_CARET] = ACTIONS(2563), - [anon_sym_AMP] = ACTIONS(2573), - [anon_sym_EQ_EQ] = ACTIONS(2563), - [anon_sym_BANG_EQ] = ACTIONS(2563), - [anon_sym_GT] = ACTIONS(2573), - [anon_sym_GT_EQ] = ACTIONS(2563), - [anon_sym_LT_EQ] = ACTIONS(2573), - [anon_sym_LT] = ACTIONS(2573), - [anon_sym_LT_LT] = ACTIONS(2563), - [anon_sym_GT_GT] = ACTIONS(2563), - [anon_sym_SEMI] = ACTIONS(2563), - [anon_sym___extension__] = ACTIONS(2573), - [anon_sym___attribute__] = ACTIONS(2573), - [anon_sym___attribute] = ACTIONS(2573), - [anon_sym_COLON] = ACTIONS(2563), - [anon_sym_LBRACE] = ACTIONS(2563), - [anon_sym_RBRACE] = ACTIONS(2563), - [anon_sym_signed] = ACTIONS(2573), - [anon_sym_unsigned] = ACTIONS(2573), - [anon_sym_long] = ACTIONS(2573), - [anon_sym_short] = ACTIONS(2573), - [anon_sym_LBRACK] = ACTIONS(2563), - [anon_sym_RBRACK] = ACTIONS(2563), - [anon_sym_const] = ACTIONS(2573), - [anon_sym_constexpr] = ACTIONS(2573), - [anon_sym_volatile] = ACTIONS(2573), - [anon_sym_restrict] = ACTIONS(2573), - [anon_sym___restrict__] = ACTIONS(2573), - [anon_sym__Atomic] = ACTIONS(2573), - [anon_sym__Noreturn] = ACTIONS(2573), - [anon_sym_noreturn] = ACTIONS(2573), - [anon_sym__Nonnull] = ACTIONS(2573), - [anon_sym_mutable] = ACTIONS(2573), - [anon_sym_constinit] = ACTIONS(2573), - [anon_sym_consteval] = ACTIONS(2573), - [anon_sym_alignas] = ACTIONS(2573), - [anon_sym__Alignas] = ACTIONS(2573), - [sym_primitive_type] = ACTIONS(2573), - [anon_sym_QMARK] = ACTIONS(2563), - [anon_sym_LT_EQ_GT] = ACTIONS(2563), - [anon_sym_or] = ACTIONS(2573), - [anon_sym_and] = ACTIONS(2573), - [anon_sym_bitor] = ACTIONS(2573), - [anon_sym_xor] = ACTIONS(2573), - [anon_sym_bitand] = ACTIONS(2573), - [anon_sym_not_eq] = ACTIONS(2573), - [anon_sym_DASH_DASH] = ACTIONS(2563), - [anon_sym_PLUS_PLUS] = ACTIONS(2563), - [anon_sym_DOT] = ACTIONS(2573), - [anon_sym_DOT_STAR] = ACTIONS(2563), - [anon_sym_DASH_GT] = ACTIONS(2563), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2573), - [anon_sym_decltype] = ACTIONS(2573), - [anon_sym_final] = ACTIONS(2573), - [anon_sym_override] = ACTIONS(2573), - [anon_sym_requires] = ACTIONS(2573), + [1760] = { + [sym_identifier] = ACTIONS(5499), + [aux_sym_preproc_def_token1] = ACTIONS(5499), + [aux_sym_preproc_if_token1] = ACTIONS(5499), + [aux_sym_preproc_if_token2] = ACTIONS(5499), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5499), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5499), + [aux_sym_preproc_else_token1] = ACTIONS(5499), + [aux_sym_preproc_elif_token1] = ACTIONS(5499), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5499), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5499), + [sym_preproc_directive] = ACTIONS(5499), + [anon_sym_LPAREN2] = ACTIONS(5501), + [anon_sym_TILDE] = ACTIONS(5501), + [anon_sym_STAR] = ACTIONS(5501), + [anon_sym_AMP_AMP] = ACTIONS(5501), + [anon_sym_AMP] = ACTIONS(5499), + [anon_sym_SEMI] = ACTIONS(5501), + [anon_sym___extension__] = ACTIONS(5499), + [anon_sym_typedef] = ACTIONS(5499), + [anon_sym_virtual] = ACTIONS(5499), + [anon_sym_extern] = ACTIONS(5499), + [anon_sym___attribute__] = ACTIONS(5499), + [anon_sym___attribute] = ACTIONS(5499), + [anon_sym_using] = ACTIONS(5499), + [anon_sym_COLON_COLON] = ACTIONS(5501), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5501), + [anon_sym___declspec] = ACTIONS(5499), + [anon_sym___based] = ACTIONS(5499), + [anon_sym_signed] = ACTIONS(5499), + [anon_sym_unsigned] = ACTIONS(5499), + [anon_sym_long] = ACTIONS(5499), + [anon_sym_short] = ACTIONS(5499), + [anon_sym_LBRACK] = ACTIONS(5499), + [anon_sym_static] = ACTIONS(5499), + [anon_sym_register] = ACTIONS(5499), + [anon_sym_inline] = ACTIONS(5499), + [anon_sym___inline] = ACTIONS(5499), + [anon_sym___inline__] = ACTIONS(5499), + [anon_sym___forceinline] = ACTIONS(5499), + [anon_sym_thread_local] = ACTIONS(5499), + [anon_sym___thread] = ACTIONS(5499), + [anon_sym_const] = ACTIONS(5499), + [anon_sym_constexpr] = ACTIONS(5499), + [anon_sym_volatile] = ACTIONS(5499), + [anon_sym_restrict] = ACTIONS(5499), + [anon_sym___restrict__] = ACTIONS(5499), + [anon_sym__Atomic] = ACTIONS(5499), + [anon_sym__Noreturn] = ACTIONS(5499), + [anon_sym_noreturn] = ACTIONS(5499), + [anon_sym__Nonnull] = ACTIONS(5499), + [anon_sym_mutable] = ACTIONS(5499), + [anon_sym_constinit] = ACTIONS(5499), + [anon_sym_consteval] = ACTIONS(5499), + [anon_sym_alignas] = ACTIONS(5499), + [anon_sym__Alignas] = ACTIONS(5499), + [sym_primitive_type] = ACTIONS(5499), + [anon_sym_enum] = ACTIONS(5499), + [anon_sym_class] = ACTIONS(5499), + [anon_sym_struct] = ACTIONS(5499), + [anon_sym_union] = ACTIONS(5499), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5499), + [anon_sym_decltype] = ACTIONS(5499), + [anon_sym_explicit] = ACTIONS(5499), + [anon_sym_typename] = ACTIONS(5499), + [anon_sym_private] = ACTIONS(5499), + [anon_sym_template] = ACTIONS(5499), + [anon_sym_operator] = ACTIONS(5499), + [anon_sym_friend] = ACTIONS(5499), + [anon_sym_public] = ACTIONS(5499), + [anon_sym_protected] = ACTIONS(5499), + [anon_sym_static_assert] = ACTIONS(5499), }, - [1696] = { - [sym__declaration_modifiers] = STATE(2061), - [sym__declaration_specifiers] = STATE(3966), - [sym_attribute_specifier] = STATE(2061), - [sym_attribute_declaration] = STATE(2061), - [sym_ms_declspec_modifier] = STATE(2061), - [sym_storage_class_specifier] = STATE(2061), - [sym_type_qualifier] = STATE(2061), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_parameter_declaration] = STATE(7267), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym_dependent_type] = STATE(2523), - [sym_optional_parameter_declaration] = STATE(7267), - [sym_variadic_parameter_declaration] = STATE(7267), - [sym_template_type] = STATE(2406), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(6606), - [sym_qualified_type_identifier] = STATE(3015), - [aux_sym__declaration_specifiers_repeat1] = STATE(2061), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [sym_identifier] = ACTIONS(5010), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5417), - [anon_sym_RPAREN] = ACTIONS(5419), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1878), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5020), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2999), - [anon_sym_enum] = ACTIONS(1884), - [anon_sym_class] = ACTIONS(1886), - [anon_sym_struct] = ACTIONS(1888), - [anon_sym_union] = ACTIONS(1890), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(1914), - [anon_sym_template] = ACTIONS(1452), + [1761] = { + [sym_identifier] = ACTIONS(3120), + [aux_sym_preproc_def_token1] = ACTIONS(3120), + [aux_sym_preproc_if_token1] = ACTIONS(3120), + [aux_sym_preproc_if_token2] = ACTIONS(3120), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3120), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3120), + [aux_sym_preproc_else_token1] = ACTIONS(3120), + [aux_sym_preproc_elif_token1] = ACTIONS(3120), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3120), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3120), + [sym_preproc_directive] = ACTIONS(3120), + [anon_sym_LPAREN2] = ACTIONS(3122), + [anon_sym_TILDE] = ACTIONS(3122), + [anon_sym_STAR] = ACTIONS(3122), + [anon_sym_AMP_AMP] = ACTIONS(3122), + [anon_sym_AMP] = ACTIONS(3120), + [anon_sym_SEMI] = ACTIONS(3122), + [anon_sym___extension__] = ACTIONS(3120), + [anon_sym_typedef] = ACTIONS(3120), + [anon_sym_virtual] = ACTIONS(3120), + [anon_sym_extern] = ACTIONS(3120), + [anon_sym___attribute__] = ACTIONS(3120), + [anon_sym___attribute] = ACTIONS(3120), + [anon_sym_using] = ACTIONS(3120), + [anon_sym_COLON_COLON] = ACTIONS(3122), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3122), + [anon_sym___declspec] = ACTIONS(3120), + [anon_sym___based] = ACTIONS(3120), + [anon_sym_signed] = ACTIONS(3120), + [anon_sym_unsigned] = ACTIONS(3120), + [anon_sym_long] = ACTIONS(3120), + [anon_sym_short] = ACTIONS(3120), + [anon_sym_LBRACK] = ACTIONS(3120), + [anon_sym_static] = ACTIONS(3120), + [anon_sym_register] = ACTIONS(3120), + [anon_sym_inline] = ACTIONS(3120), + [anon_sym___inline] = ACTIONS(3120), + [anon_sym___inline__] = ACTIONS(3120), + [anon_sym___forceinline] = ACTIONS(3120), + [anon_sym_thread_local] = ACTIONS(3120), + [anon_sym___thread] = ACTIONS(3120), + [anon_sym_const] = ACTIONS(3120), + [anon_sym_constexpr] = ACTIONS(3120), + [anon_sym_volatile] = ACTIONS(3120), + [anon_sym_restrict] = ACTIONS(3120), + [anon_sym___restrict__] = ACTIONS(3120), + [anon_sym__Atomic] = ACTIONS(3120), + [anon_sym__Noreturn] = ACTIONS(3120), + [anon_sym_noreturn] = ACTIONS(3120), + [anon_sym__Nonnull] = ACTIONS(3120), + [anon_sym_mutable] = ACTIONS(3120), + [anon_sym_constinit] = ACTIONS(3120), + [anon_sym_consteval] = ACTIONS(3120), + [anon_sym_alignas] = ACTIONS(3120), + [anon_sym__Alignas] = ACTIONS(3120), + [sym_primitive_type] = ACTIONS(3120), + [anon_sym_enum] = ACTIONS(3120), + [anon_sym_class] = ACTIONS(3120), + [anon_sym_struct] = ACTIONS(3120), + [anon_sym_union] = ACTIONS(3120), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3120), + [anon_sym_decltype] = ACTIONS(3120), + [anon_sym_explicit] = ACTIONS(3120), + [anon_sym_typename] = ACTIONS(3120), + [anon_sym_private] = ACTIONS(3120), + [anon_sym_template] = ACTIONS(3120), + [anon_sym_operator] = ACTIONS(3120), + [anon_sym_friend] = ACTIONS(3120), + [anon_sym_public] = ACTIONS(3120), + [anon_sym_protected] = ACTIONS(3120), + [anon_sym_static_assert] = ACTIONS(3120), }, - [1697] = { - [sym__declaration_modifiers] = STATE(2061), - [sym__declaration_specifiers] = STATE(3966), - [sym_attribute_specifier] = STATE(2061), - [sym_attribute_declaration] = STATE(2061), - [sym_ms_declspec_modifier] = STATE(2061), - [sym_storage_class_specifier] = STATE(2061), - [sym_type_qualifier] = STATE(2061), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_parameter_declaration] = STATE(7399), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym_dependent_type] = STATE(2523), - [sym_optional_parameter_declaration] = STATE(7399), - [sym_variadic_parameter_declaration] = STATE(7399), - [sym_template_type] = STATE(2406), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(6606), - [sym_qualified_type_identifier] = STATE(3015), - [aux_sym__declaration_specifiers_repeat1] = STATE(2061), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [sym_identifier] = ACTIONS(5010), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1928), - [anon_sym_RPAREN] = ACTIONS(4296), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1878), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5020), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2999), - [anon_sym_enum] = ACTIONS(1884), - [anon_sym_class] = ACTIONS(1886), - [anon_sym_struct] = ACTIONS(1888), - [anon_sym_union] = ACTIONS(1890), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(1914), - [anon_sym_template] = ACTIONS(1452), + [1762] = { + [sym_identifier] = ACTIONS(3317), + [aux_sym_preproc_def_token1] = ACTIONS(3317), + [aux_sym_preproc_if_token1] = ACTIONS(3317), + [aux_sym_preproc_if_token2] = ACTIONS(3317), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3317), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3317), + [aux_sym_preproc_else_token1] = ACTIONS(3317), + [aux_sym_preproc_elif_token1] = ACTIONS(3317), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3317), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3317), + [sym_preproc_directive] = ACTIONS(3317), + [anon_sym_LPAREN2] = ACTIONS(3319), + [anon_sym_TILDE] = ACTIONS(3319), + [anon_sym_STAR] = ACTIONS(3319), + [anon_sym_AMP_AMP] = ACTIONS(3319), + [anon_sym_AMP] = ACTIONS(3317), + [anon_sym_SEMI] = ACTIONS(3319), + [anon_sym___extension__] = ACTIONS(3317), + [anon_sym_typedef] = ACTIONS(3317), + [anon_sym_virtual] = ACTIONS(3317), + [anon_sym_extern] = ACTIONS(3317), + [anon_sym___attribute__] = ACTIONS(3317), + [anon_sym___attribute] = ACTIONS(3317), + [anon_sym_using] = ACTIONS(3317), + [anon_sym_COLON_COLON] = ACTIONS(3319), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3319), + [anon_sym___declspec] = ACTIONS(3317), + [anon_sym___based] = ACTIONS(3317), + [anon_sym_signed] = ACTIONS(3317), + [anon_sym_unsigned] = ACTIONS(3317), + [anon_sym_long] = ACTIONS(3317), + [anon_sym_short] = ACTIONS(3317), + [anon_sym_LBRACK] = ACTIONS(3317), + [anon_sym_static] = ACTIONS(3317), + [anon_sym_register] = ACTIONS(3317), + [anon_sym_inline] = ACTIONS(3317), + [anon_sym___inline] = ACTIONS(3317), + [anon_sym___inline__] = ACTIONS(3317), + [anon_sym___forceinline] = ACTIONS(3317), + [anon_sym_thread_local] = ACTIONS(3317), + [anon_sym___thread] = ACTIONS(3317), + [anon_sym_const] = ACTIONS(3317), + [anon_sym_constexpr] = ACTIONS(3317), + [anon_sym_volatile] = ACTIONS(3317), + [anon_sym_restrict] = ACTIONS(3317), + [anon_sym___restrict__] = ACTIONS(3317), + [anon_sym__Atomic] = ACTIONS(3317), + [anon_sym__Noreturn] = ACTIONS(3317), + [anon_sym_noreturn] = ACTIONS(3317), + [anon_sym__Nonnull] = ACTIONS(3317), + [anon_sym_mutable] = ACTIONS(3317), + [anon_sym_constinit] = ACTIONS(3317), + [anon_sym_consteval] = ACTIONS(3317), + [anon_sym_alignas] = ACTIONS(3317), + [anon_sym__Alignas] = ACTIONS(3317), + [sym_primitive_type] = ACTIONS(3317), + [anon_sym_enum] = ACTIONS(3317), + [anon_sym_class] = ACTIONS(3317), + [anon_sym_struct] = ACTIONS(3317), + [anon_sym_union] = ACTIONS(3317), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3317), + [anon_sym_decltype] = ACTIONS(3317), + [anon_sym_explicit] = ACTIONS(3317), + [anon_sym_typename] = ACTIONS(3317), + [anon_sym_private] = ACTIONS(3317), + [anon_sym_template] = ACTIONS(3317), + [anon_sym_operator] = ACTIONS(3317), + [anon_sym_friend] = ACTIONS(3317), + [anon_sym_public] = ACTIONS(3317), + [anon_sym_protected] = ACTIONS(3317), + [anon_sym_static_assert] = ACTIONS(3317), }, - [1698] = { - [sym_type_qualifier] = STATE(1698), - [sym_alignas_qualifier] = STATE(1868), - [aux_sym_array_declarator_repeat1] = STATE(1698), - [sym_identifier] = ACTIONS(5421), - [anon_sym_LPAREN2] = ACTIONS(5423), - [anon_sym_BANG] = ACTIONS(5423), - [anon_sym_TILDE] = ACTIONS(5423), - [anon_sym_DASH] = ACTIONS(5421), - [anon_sym_PLUS] = ACTIONS(5421), - [anon_sym_STAR] = ACTIONS(5423), - [anon_sym_AMP] = ACTIONS(5423), - [anon_sym___extension__] = ACTIONS(5425), - [anon_sym_COLON_COLON] = ACTIONS(5423), - [anon_sym_LBRACK] = ACTIONS(5423), - [anon_sym_static] = ACTIONS(5428), - [anon_sym_RBRACK] = ACTIONS(5423), - [anon_sym_const] = ACTIONS(5425), - [anon_sym_constexpr] = ACTIONS(5425), - [anon_sym_volatile] = ACTIONS(5425), - [anon_sym_restrict] = ACTIONS(5425), - [anon_sym___restrict__] = ACTIONS(5425), - [anon_sym__Atomic] = ACTIONS(5425), - [anon_sym__Noreturn] = ACTIONS(5425), - [anon_sym_noreturn] = ACTIONS(5425), - [anon_sym__Nonnull] = ACTIONS(5425), - [anon_sym_mutable] = ACTIONS(5425), - [anon_sym_constinit] = ACTIONS(5425), - [anon_sym_consteval] = ACTIONS(5425), - [anon_sym_alignas] = ACTIONS(5431), - [anon_sym__Alignas] = ACTIONS(5431), - [sym_primitive_type] = ACTIONS(5421), - [anon_sym_not] = ACTIONS(5421), - [anon_sym_compl] = ACTIONS(5421), - [anon_sym_DASH_DASH] = ACTIONS(5423), - [anon_sym_PLUS_PLUS] = ACTIONS(5423), - [anon_sym_sizeof] = ACTIONS(5421), - [anon_sym___alignof__] = ACTIONS(5421), - [anon_sym___alignof] = ACTIONS(5421), - [anon_sym__alignof] = ACTIONS(5421), - [anon_sym_alignof] = ACTIONS(5421), - [anon_sym__Alignof] = ACTIONS(5421), - [anon_sym_offsetof] = ACTIONS(5421), - [anon_sym__Generic] = ACTIONS(5421), - [anon_sym_asm] = ACTIONS(5421), - [anon_sym___asm__] = ACTIONS(5421), - [anon_sym___asm] = ACTIONS(5421), - [sym_number_literal] = ACTIONS(5423), - [anon_sym_L_SQUOTE] = ACTIONS(5423), - [anon_sym_u_SQUOTE] = ACTIONS(5423), - [anon_sym_U_SQUOTE] = ACTIONS(5423), - [anon_sym_u8_SQUOTE] = ACTIONS(5423), - [anon_sym_SQUOTE] = ACTIONS(5423), - [anon_sym_L_DQUOTE] = ACTIONS(5423), - [anon_sym_u_DQUOTE] = ACTIONS(5423), - [anon_sym_U_DQUOTE] = ACTIONS(5423), - [anon_sym_u8_DQUOTE] = ACTIONS(5423), - [anon_sym_DQUOTE] = ACTIONS(5423), - [sym_true] = ACTIONS(5421), - [sym_false] = ACTIONS(5421), - [anon_sym_NULL] = ACTIONS(5421), - [anon_sym_nullptr] = ACTIONS(5421), + [1763] = { + [sym_identifier] = ACTIONS(2787), + [aux_sym_preproc_def_token1] = ACTIONS(2787), + [aux_sym_preproc_if_token1] = ACTIONS(2787), + [aux_sym_preproc_if_token2] = ACTIONS(2787), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2787), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2787), + [aux_sym_preproc_else_token1] = ACTIONS(2787), + [aux_sym_preproc_elif_token1] = ACTIONS(2787), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2787), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2787), + [sym_preproc_directive] = ACTIONS(2787), + [anon_sym_LPAREN2] = ACTIONS(2789), + [anon_sym_TILDE] = ACTIONS(2789), + [anon_sym_STAR] = ACTIONS(2789), + [anon_sym_AMP_AMP] = ACTIONS(2789), + [anon_sym_AMP] = ACTIONS(2787), + [anon_sym_SEMI] = ACTIONS(2789), + [anon_sym___extension__] = ACTIONS(2787), + [anon_sym_typedef] = ACTIONS(2787), + [anon_sym_virtual] = ACTIONS(2787), + [anon_sym_extern] = ACTIONS(2787), + [anon_sym___attribute__] = ACTIONS(2787), + [anon_sym___attribute] = ACTIONS(2787), + [anon_sym_using] = ACTIONS(2787), + [anon_sym_COLON_COLON] = ACTIONS(2789), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2789), + [anon_sym___declspec] = ACTIONS(2787), + [anon_sym___based] = ACTIONS(2787), + [anon_sym_signed] = ACTIONS(2787), + [anon_sym_unsigned] = ACTIONS(2787), + [anon_sym_long] = ACTIONS(2787), + [anon_sym_short] = ACTIONS(2787), + [anon_sym_LBRACK] = ACTIONS(2787), + [anon_sym_static] = ACTIONS(2787), + [anon_sym_register] = ACTIONS(2787), + [anon_sym_inline] = ACTIONS(2787), + [anon_sym___inline] = ACTIONS(2787), + [anon_sym___inline__] = ACTIONS(2787), + [anon_sym___forceinline] = ACTIONS(2787), + [anon_sym_thread_local] = ACTIONS(2787), + [anon_sym___thread] = ACTIONS(2787), + [anon_sym_const] = ACTIONS(2787), + [anon_sym_constexpr] = ACTIONS(2787), + [anon_sym_volatile] = ACTIONS(2787), + [anon_sym_restrict] = ACTIONS(2787), + [anon_sym___restrict__] = ACTIONS(2787), + [anon_sym__Atomic] = ACTIONS(2787), + [anon_sym__Noreturn] = ACTIONS(2787), + [anon_sym_noreturn] = ACTIONS(2787), + [anon_sym__Nonnull] = ACTIONS(2787), + [anon_sym_mutable] = ACTIONS(2787), + [anon_sym_constinit] = ACTIONS(2787), + [anon_sym_consteval] = ACTIONS(2787), + [anon_sym_alignas] = ACTIONS(2787), + [anon_sym__Alignas] = ACTIONS(2787), + [sym_primitive_type] = ACTIONS(2787), + [anon_sym_enum] = ACTIONS(2787), + [anon_sym_class] = ACTIONS(2787), + [anon_sym_struct] = ACTIONS(2787), + [anon_sym_union] = ACTIONS(2787), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(5421), - [anon_sym_template] = ACTIONS(5421), - [anon_sym_delete] = ACTIONS(5421), - [anon_sym_R_DQUOTE] = ACTIONS(5423), - [anon_sym_LR_DQUOTE] = ACTIONS(5423), - [anon_sym_uR_DQUOTE] = ACTIONS(5423), - [anon_sym_UR_DQUOTE] = ACTIONS(5423), - [anon_sym_u8R_DQUOTE] = ACTIONS(5423), - [anon_sym_co_await] = ACTIONS(5421), - [anon_sym_new] = ACTIONS(5421), - [anon_sym_requires] = ACTIONS(5421), - [sym_this] = ACTIONS(5421), + [sym_auto] = ACTIONS(2787), + [anon_sym_decltype] = ACTIONS(2787), + [anon_sym_explicit] = ACTIONS(2787), + [anon_sym_typename] = ACTIONS(2787), + [anon_sym_private] = ACTIONS(2787), + [anon_sym_template] = ACTIONS(2787), + [anon_sym_operator] = ACTIONS(2787), + [anon_sym_friend] = ACTIONS(2787), + [anon_sym_public] = ACTIONS(2787), + [anon_sym_protected] = ACTIONS(2787), + [anon_sym_static_assert] = ACTIONS(2787), }, - [1699] = { - [sym__declaration_modifiers] = STATE(2061), - [sym__declaration_specifiers] = STATE(3966), - [sym_attribute_specifier] = STATE(2061), - [sym_attribute_declaration] = STATE(2061), - [sym_ms_declspec_modifier] = STATE(2061), - [sym_storage_class_specifier] = STATE(2061), - [sym_type_qualifier] = STATE(2061), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_parameter_declaration] = STATE(7166), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym_dependent_type] = STATE(2523), - [sym_optional_parameter_declaration] = STATE(7166), - [sym_variadic_parameter_declaration] = STATE(7166), - [sym_template_type] = STATE(2406), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(6606), - [sym_qualified_type_identifier] = STATE(3015), - [aux_sym__declaration_specifiers_repeat1] = STATE(2061), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [sym_identifier] = ACTIONS(5010), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5434), - [anon_sym_RPAREN] = ACTIONS(5436), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1878), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5020), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2999), - [anon_sym_enum] = ACTIONS(1884), - [anon_sym_class] = ACTIONS(1886), - [anon_sym_struct] = ACTIONS(1888), - [anon_sym_union] = ACTIONS(1890), + [1764] = { + [sym_identifier] = ACTIONS(2791), + [aux_sym_preproc_def_token1] = ACTIONS(2791), + [aux_sym_preproc_if_token1] = ACTIONS(2791), + [aux_sym_preproc_if_token2] = ACTIONS(2791), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2791), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2791), + [aux_sym_preproc_else_token1] = ACTIONS(2791), + [aux_sym_preproc_elif_token1] = ACTIONS(2791), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2791), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2791), + [sym_preproc_directive] = ACTIONS(2791), + [anon_sym_LPAREN2] = ACTIONS(2793), + [anon_sym_TILDE] = ACTIONS(2793), + [anon_sym_STAR] = ACTIONS(2793), + [anon_sym_AMP_AMP] = ACTIONS(2793), + [anon_sym_AMP] = ACTIONS(2791), + [anon_sym_SEMI] = ACTIONS(2793), + [anon_sym___extension__] = ACTIONS(2791), + [anon_sym_typedef] = ACTIONS(2791), + [anon_sym_virtual] = ACTIONS(2791), + [anon_sym_extern] = ACTIONS(2791), + [anon_sym___attribute__] = ACTIONS(2791), + [anon_sym___attribute] = ACTIONS(2791), + [anon_sym_using] = ACTIONS(2791), + [anon_sym_COLON_COLON] = ACTIONS(2793), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2793), + [anon_sym___declspec] = ACTIONS(2791), + [anon_sym___based] = ACTIONS(2791), + [anon_sym_signed] = ACTIONS(2791), + [anon_sym_unsigned] = ACTIONS(2791), + [anon_sym_long] = ACTIONS(2791), + [anon_sym_short] = ACTIONS(2791), + [anon_sym_LBRACK] = ACTIONS(2791), + [anon_sym_static] = ACTIONS(2791), + [anon_sym_register] = ACTIONS(2791), + [anon_sym_inline] = ACTIONS(2791), + [anon_sym___inline] = ACTIONS(2791), + [anon_sym___inline__] = ACTIONS(2791), + [anon_sym___forceinline] = ACTIONS(2791), + [anon_sym_thread_local] = ACTIONS(2791), + [anon_sym___thread] = ACTIONS(2791), + [anon_sym_const] = ACTIONS(2791), + [anon_sym_constexpr] = ACTIONS(2791), + [anon_sym_volatile] = ACTIONS(2791), + [anon_sym_restrict] = ACTIONS(2791), + [anon_sym___restrict__] = ACTIONS(2791), + [anon_sym__Atomic] = ACTIONS(2791), + [anon_sym__Noreturn] = ACTIONS(2791), + [anon_sym_noreturn] = ACTIONS(2791), + [anon_sym__Nonnull] = ACTIONS(2791), + [anon_sym_mutable] = ACTIONS(2791), + [anon_sym_constinit] = ACTIONS(2791), + [anon_sym_consteval] = ACTIONS(2791), + [anon_sym_alignas] = ACTIONS(2791), + [anon_sym__Alignas] = ACTIONS(2791), + [sym_primitive_type] = ACTIONS(2791), + [anon_sym_enum] = ACTIONS(2791), + [anon_sym_class] = ACTIONS(2791), + [anon_sym_struct] = ACTIONS(2791), + [anon_sym_union] = ACTIONS(2791), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(1914), - [anon_sym_template] = ACTIONS(1452), + [sym_auto] = ACTIONS(2791), + [anon_sym_decltype] = ACTIONS(2791), + [anon_sym_explicit] = ACTIONS(2791), + [anon_sym_typename] = ACTIONS(2791), + [anon_sym_private] = ACTIONS(2791), + [anon_sym_template] = ACTIONS(2791), + [anon_sym_operator] = ACTIONS(2791), + [anon_sym_friend] = ACTIONS(2791), + [anon_sym_public] = ACTIONS(2791), + [anon_sym_protected] = ACTIONS(2791), + [anon_sym_static_assert] = ACTIONS(2791), }, - [1700] = { - [sym__declaration_modifiers] = STATE(2061), - [sym__declaration_specifiers] = STATE(3966), - [sym_attribute_specifier] = STATE(2061), - [sym_attribute_declaration] = STATE(2061), - [sym_ms_declspec_modifier] = STATE(2061), - [sym_storage_class_specifier] = STATE(2061), - [sym_type_qualifier] = STATE(2061), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_parameter_declaration] = STATE(7498), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym_dependent_type] = STATE(2523), - [sym_optional_parameter_declaration] = STATE(7498), - [sym_variadic_parameter_declaration] = STATE(7498), - [sym_template_type] = STATE(2406), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(6606), - [sym_qualified_type_identifier] = STATE(3015), - [aux_sym__declaration_specifiers_repeat1] = STATE(2061), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [sym_identifier] = ACTIONS(5010), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5438), - [anon_sym_RPAREN] = ACTIONS(5440), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1878), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5020), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2999), - [anon_sym_enum] = ACTIONS(1884), - [anon_sym_class] = ACTIONS(1886), - [anon_sym_struct] = ACTIONS(1888), - [anon_sym_union] = ACTIONS(1890), + [1765] = { + [sym_identifier] = ACTIONS(2795), + [aux_sym_preproc_def_token1] = ACTIONS(2795), + [aux_sym_preproc_if_token1] = ACTIONS(2795), + [aux_sym_preproc_if_token2] = ACTIONS(2795), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2795), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2795), + [aux_sym_preproc_else_token1] = ACTIONS(2795), + [aux_sym_preproc_elif_token1] = ACTIONS(2795), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2795), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2795), + [sym_preproc_directive] = ACTIONS(2795), + [anon_sym_LPAREN2] = ACTIONS(2797), + [anon_sym_TILDE] = ACTIONS(2797), + [anon_sym_STAR] = ACTIONS(2797), + [anon_sym_AMP_AMP] = ACTIONS(2797), + [anon_sym_AMP] = ACTIONS(2795), + [anon_sym_SEMI] = ACTIONS(2797), + [anon_sym___extension__] = ACTIONS(2795), + [anon_sym_typedef] = ACTIONS(2795), + [anon_sym_virtual] = ACTIONS(2795), + [anon_sym_extern] = ACTIONS(2795), + [anon_sym___attribute__] = ACTIONS(2795), + [anon_sym___attribute] = ACTIONS(2795), + [anon_sym_using] = ACTIONS(2795), + [anon_sym_COLON_COLON] = ACTIONS(2797), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2797), + [anon_sym___declspec] = ACTIONS(2795), + [anon_sym___based] = ACTIONS(2795), + [anon_sym_signed] = ACTIONS(2795), + [anon_sym_unsigned] = ACTIONS(2795), + [anon_sym_long] = ACTIONS(2795), + [anon_sym_short] = ACTIONS(2795), + [anon_sym_LBRACK] = ACTIONS(2795), + [anon_sym_static] = ACTIONS(2795), + [anon_sym_register] = ACTIONS(2795), + [anon_sym_inline] = ACTIONS(2795), + [anon_sym___inline] = ACTIONS(2795), + [anon_sym___inline__] = ACTIONS(2795), + [anon_sym___forceinline] = ACTIONS(2795), + [anon_sym_thread_local] = ACTIONS(2795), + [anon_sym___thread] = ACTIONS(2795), + [anon_sym_const] = ACTIONS(2795), + [anon_sym_constexpr] = ACTIONS(2795), + [anon_sym_volatile] = ACTIONS(2795), + [anon_sym_restrict] = ACTIONS(2795), + [anon_sym___restrict__] = ACTIONS(2795), + [anon_sym__Atomic] = ACTIONS(2795), + [anon_sym__Noreturn] = ACTIONS(2795), + [anon_sym_noreturn] = ACTIONS(2795), + [anon_sym__Nonnull] = ACTIONS(2795), + [anon_sym_mutable] = ACTIONS(2795), + [anon_sym_constinit] = ACTIONS(2795), + [anon_sym_consteval] = ACTIONS(2795), + [anon_sym_alignas] = ACTIONS(2795), + [anon_sym__Alignas] = ACTIONS(2795), + [sym_primitive_type] = ACTIONS(2795), + [anon_sym_enum] = ACTIONS(2795), + [anon_sym_class] = ACTIONS(2795), + [anon_sym_struct] = ACTIONS(2795), + [anon_sym_union] = ACTIONS(2795), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(1914), - [anon_sym_template] = ACTIONS(1452), + [sym_auto] = ACTIONS(2795), + [anon_sym_decltype] = ACTIONS(2795), + [anon_sym_explicit] = ACTIONS(2795), + [anon_sym_typename] = ACTIONS(2795), + [anon_sym_private] = ACTIONS(2795), + [anon_sym_template] = ACTIONS(2795), + [anon_sym_operator] = ACTIONS(2795), + [anon_sym_friend] = ACTIONS(2795), + [anon_sym_public] = ACTIONS(2795), + [anon_sym_protected] = ACTIONS(2795), + [anon_sym_static_assert] = ACTIONS(2795), }, - [1701] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(4998), - [anon_sym_COMMA] = ACTIONS(4998), - [anon_sym_RPAREN] = ACTIONS(5000), - [anon_sym_LPAREN2] = ACTIONS(5000), - [anon_sym_DASH] = ACTIONS(5005), - [anon_sym_PLUS] = ACTIONS(5005), - [anon_sym_STAR] = ACTIONS(5007), - [anon_sym_SLASH] = ACTIONS(5005), - [anon_sym_PERCENT] = ACTIONS(5005), - [anon_sym_PIPE_PIPE] = ACTIONS(4998), - [anon_sym_AMP_AMP] = ACTIONS(5000), - [anon_sym_PIPE] = ACTIONS(5005), - [anon_sym_CARET] = ACTIONS(5005), - [anon_sym_AMP] = ACTIONS(5007), - [anon_sym_EQ_EQ] = ACTIONS(4998), - [anon_sym_BANG_EQ] = ACTIONS(4998), - [anon_sym_GT] = ACTIONS(5005), - [anon_sym_GT_EQ] = ACTIONS(4998), - [anon_sym_LT_EQ] = ACTIONS(5005), - [anon_sym_LT] = ACTIONS(5005), - [anon_sym_LT_LT] = ACTIONS(5005), - [anon_sym_GT_GT] = ACTIONS(5005), - [anon_sym_SEMI] = ACTIONS(4998), - [anon_sym___extension__] = ACTIONS(5003), - [anon_sym_COLON_COLON] = ACTIONS(5003), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4998), - [anon_sym_LBRACE] = ACTIONS(5003), - [anon_sym_LBRACK] = ACTIONS(5007), - [anon_sym_EQ] = ACTIONS(5005), - [anon_sym_const] = ACTIONS(4996), - [anon_sym_constexpr] = ACTIONS(5003), - [anon_sym_volatile] = ACTIONS(5003), - [anon_sym_restrict] = ACTIONS(5003), - [anon_sym___restrict__] = ACTIONS(5003), - [anon_sym__Atomic] = ACTIONS(5003), - [anon_sym__Noreturn] = ACTIONS(5003), - [anon_sym_noreturn] = ACTIONS(5003), - [anon_sym__Nonnull] = ACTIONS(5003), - [anon_sym_mutable] = ACTIONS(5003), - [anon_sym_constinit] = ACTIONS(5003), - [anon_sym_consteval] = ACTIONS(5003), - [anon_sym_alignas] = ACTIONS(5003), - [anon_sym__Alignas] = ACTIONS(5003), - [anon_sym_QMARK] = ACTIONS(4998), - [anon_sym_STAR_EQ] = ACTIONS(4998), - [anon_sym_SLASH_EQ] = ACTIONS(4998), - [anon_sym_PERCENT_EQ] = ACTIONS(4998), - [anon_sym_PLUS_EQ] = ACTIONS(4998), - [anon_sym_DASH_EQ] = ACTIONS(4998), - [anon_sym_LT_LT_EQ] = ACTIONS(4998), - [anon_sym_GT_GT_EQ] = ACTIONS(4998), - [anon_sym_AMP_EQ] = ACTIONS(4998), - [anon_sym_CARET_EQ] = ACTIONS(4998), - [anon_sym_PIPE_EQ] = ACTIONS(4998), - [anon_sym_and_eq] = ACTIONS(4998), - [anon_sym_or_eq] = ACTIONS(4998), - [anon_sym_xor_eq] = ACTIONS(4998), - [anon_sym_LT_EQ_GT] = ACTIONS(4998), - [anon_sym_or] = ACTIONS(5005), - [anon_sym_and] = ACTIONS(5005), - [anon_sym_bitor] = ACTIONS(4998), - [anon_sym_xor] = ACTIONS(5005), - [anon_sym_bitand] = ACTIONS(4998), - [anon_sym_not_eq] = ACTIONS(4998), - [anon_sym_DASH_DASH] = ACTIONS(4998), - [anon_sym_PLUS_PLUS] = ACTIONS(4998), - [anon_sym_DOT] = ACTIONS(5005), - [anon_sym_DOT_STAR] = ACTIONS(4998), - [anon_sym_DASH_GT] = ACTIONS(5005), + [1766] = { + [sym_identifier] = ACTIONS(2799), + [aux_sym_preproc_def_token1] = ACTIONS(2799), + [aux_sym_preproc_if_token1] = ACTIONS(2799), + [aux_sym_preproc_if_token2] = ACTIONS(2799), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2799), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2799), + [aux_sym_preproc_else_token1] = ACTIONS(2799), + [aux_sym_preproc_elif_token1] = ACTIONS(2799), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2799), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2799), + [sym_preproc_directive] = ACTIONS(2799), + [anon_sym_LPAREN2] = ACTIONS(2801), + [anon_sym_TILDE] = ACTIONS(2801), + [anon_sym_STAR] = ACTIONS(2801), + [anon_sym_AMP_AMP] = ACTIONS(2801), + [anon_sym_AMP] = ACTIONS(2799), + [anon_sym_SEMI] = ACTIONS(2801), + [anon_sym___extension__] = ACTIONS(2799), + [anon_sym_typedef] = ACTIONS(2799), + [anon_sym_virtual] = ACTIONS(2799), + [anon_sym_extern] = ACTIONS(2799), + [anon_sym___attribute__] = ACTIONS(2799), + [anon_sym___attribute] = ACTIONS(2799), + [anon_sym_using] = ACTIONS(2799), + [anon_sym_COLON_COLON] = ACTIONS(2801), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2801), + [anon_sym___declspec] = ACTIONS(2799), + [anon_sym___based] = ACTIONS(2799), + [anon_sym_signed] = ACTIONS(2799), + [anon_sym_unsigned] = ACTIONS(2799), + [anon_sym_long] = ACTIONS(2799), + [anon_sym_short] = ACTIONS(2799), + [anon_sym_LBRACK] = ACTIONS(2799), + [anon_sym_static] = ACTIONS(2799), + [anon_sym_register] = ACTIONS(2799), + [anon_sym_inline] = ACTIONS(2799), + [anon_sym___inline] = ACTIONS(2799), + [anon_sym___inline__] = ACTIONS(2799), + [anon_sym___forceinline] = ACTIONS(2799), + [anon_sym_thread_local] = ACTIONS(2799), + [anon_sym___thread] = ACTIONS(2799), + [anon_sym_const] = ACTIONS(2799), + [anon_sym_constexpr] = ACTIONS(2799), + [anon_sym_volatile] = ACTIONS(2799), + [anon_sym_restrict] = ACTIONS(2799), + [anon_sym___restrict__] = ACTIONS(2799), + [anon_sym__Atomic] = ACTIONS(2799), + [anon_sym__Noreturn] = ACTIONS(2799), + [anon_sym_noreturn] = ACTIONS(2799), + [anon_sym__Nonnull] = ACTIONS(2799), + [anon_sym_mutable] = ACTIONS(2799), + [anon_sym_constinit] = ACTIONS(2799), + [anon_sym_consteval] = ACTIONS(2799), + [anon_sym_alignas] = ACTIONS(2799), + [anon_sym__Alignas] = ACTIONS(2799), + [sym_primitive_type] = ACTIONS(2799), + [anon_sym_enum] = ACTIONS(2799), + [anon_sym_class] = ACTIONS(2799), + [anon_sym_struct] = ACTIONS(2799), + [anon_sym_union] = ACTIONS(2799), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5003), - [anon_sym_decltype] = ACTIONS(5003), - [anon_sym_DASH_GT_STAR] = ACTIONS(4998), + [sym_auto] = ACTIONS(2799), + [anon_sym_decltype] = ACTIONS(2799), + [anon_sym_explicit] = ACTIONS(2799), + [anon_sym_typename] = ACTIONS(2799), + [anon_sym_private] = ACTIONS(2799), + [anon_sym_template] = ACTIONS(2799), + [anon_sym_operator] = ACTIONS(2799), + [anon_sym_friend] = ACTIONS(2799), + [anon_sym_public] = ACTIONS(2799), + [anon_sym_protected] = ACTIONS(2799), + [anon_sym_static_assert] = ACTIONS(2799), }, - [1702] = { - [sym_identifier] = ACTIONS(1940), - [aux_sym_preproc_def_token1] = ACTIONS(1940), - [aux_sym_preproc_if_token1] = ACTIONS(1940), - [aux_sym_preproc_if_token2] = ACTIONS(1940), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1940), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1940), - [aux_sym_preproc_else_token1] = ACTIONS(1940), - [aux_sym_preproc_elif_token1] = ACTIONS(1940), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1940), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1940), - [sym_preproc_directive] = ACTIONS(1940), - [anon_sym_LPAREN2] = ACTIONS(1938), - [anon_sym_TILDE] = ACTIONS(1938), - [anon_sym_STAR] = ACTIONS(1938), - [anon_sym_AMP_AMP] = ACTIONS(1938), - [anon_sym_AMP] = ACTIONS(1940), - [anon_sym_SEMI] = ACTIONS(1938), - [anon_sym___extension__] = ACTIONS(1940), - [anon_sym_typedef] = ACTIONS(1940), - [anon_sym_virtual] = ACTIONS(1940), - [anon_sym_extern] = ACTIONS(1940), - [anon_sym___attribute__] = ACTIONS(1940), - [anon_sym___attribute] = ACTIONS(1940), - [anon_sym_using] = ACTIONS(1940), - [anon_sym_COLON_COLON] = ACTIONS(1938), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1938), - [anon_sym___declspec] = ACTIONS(1940), - [anon_sym___based] = ACTIONS(1940), - [anon_sym_signed] = ACTIONS(1940), - [anon_sym_unsigned] = ACTIONS(1940), - [anon_sym_long] = ACTIONS(1940), - [anon_sym_short] = ACTIONS(1940), - [anon_sym_LBRACK] = ACTIONS(1940), - [anon_sym_static] = ACTIONS(1940), - [anon_sym_register] = ACTIONS(1940), - [anon_sym_inline] = ACTIONS(1940), - [anon_sym___inline] = ACTIONS(1940), - [anon_sym___inline__] = ACTIONS(1940), - [anon_sym___forceinline] = ACTIONS(1940), - [anon_sym_thread_local] = ACTIONS(1940), - [anon_sym___thread] = ACTIONS(1940), - [anon_sym_const] = ACTIONS(1940), - [anon_sym_constexpr] = ACTIONS(1940), - [anon_sym_volatile] = ACTIONS(1940), - [anon_sym_restrict] = ACTIONS(1940), - [anon_sym___restrict__] = ACTIONS(1940), - [anon_sym__Atomic] = ACTIONS(1940), - [anon_sym__Noreturn] = ACTIONS(1940), - [anon_sym_noreturn] = ACTIONS(1940), - [anon_sym__Nonnull] = ACTIONS(1940), - [anon_sym_mutable] = ACTIONS(1940), - [anon_sym_constinit] = ACTIONS(1940), - [anon_sym_consteval] = ACTIONS(1940), - [anon_sym_alignas] = ACTIONS(1940), - [anon_sym__Alignas] = ACTIONS(1940), - [sym_primitive_type] = ACTIONS(1940), - [anon_sym_enum] = ACTIONS(1940), - [anon_sym_class] = ACTIONS(1940), - [anon_sym_struct] = ACTIONS(1940), - [anon_sym_union] = ACTIONS(1940), + [1767] = { + [sym_identifier] = ACTIONS(2803), + [aux_sym_preproc_def_token1] = ACTIONS(2803), + [aux_sym_preproc_if_token1] = ACTIONS(2803), + [aux_sym_preproc_if_token2] = ACTIONS(2803), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2803), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2803), + [aux_sym_preproc_else_token1] = ACTIONS(2803), + [aux_sym_preproc_elif_token1] = ACTIONS(2803), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2803), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2803), + [sym_preproc_directive] = ACTIONS(2803), + [anon_sym_LPAREN2] = ACTIONS(2805), + [anon_sym_TILDE] = ACTIONS(2805), + [anon_sym_STAR] = ACTIONS(2805), + [anon_sym_AMP_AMP] = ACTIONS(2805), + [anon_sym_AMP] = ACTIONS(2803), + [anon_sym_SEMI] = ACTIONS(2805), + [anon_sym___extension__] = ACTIONS(2803), + [anon_sym_typedef] = ACTIONS(2803), + [anon_sym_virtual] = ACTIONS(2803), + [anon_sym_extern] = ACTIONS(2803), + [anon_sym___attribute__] = ACTIONS(2803), + [anon_sym___attribute] = ACTIONS(2803), + [anon_sym_using] = ACTIONS(2803), + [anon_sym_COLON_COLON] = ACTIONS(2805), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2805), + [anon_sym___declspec] = ACTIONS(2803), + [anon_sym___based] = ACTIONS(2803), + [anon_sym_signed] = ACTIONS(2803), + [anon_sym_unsigned] = ACTIONS(2803), + [anon_sym_long] = ACTIONS(2803), + [anon_sym_short] = ACTIONS(2803), + [anon_sym_LBRACK] = ACTIONS(2803), + [anon_sym_static] = ACTIONS(2803), + [anon_sym_register] = ACTIONS(2803), + [anon_sym_inline] = ACTIONS(2803), + [anon_sym___inline] = ACTIONS(2803), + [anon_sym___inline__] = ACTIONS(2803), + [anon_sym___forceinline] = ACTIONS(2803), + [anon_sym_thread_local] = ACTIONS(2803), + [anon_sym___thread] = ACTIONS(2803), + [anon_sym_const] = ACTIONS(2803), + [anon_sym_constexpr] = ACTIONS(2803), + [anon_sym_volatile] = ACTIONS(2803), + [anon_sym_restrict] = ACTIONS(2803), + [anon_sym___restrict__] = ACTIONS(2803), + [anon_sym__Atomic] = ACTIONS(2803), + [anon_sym__Noreturn] = ACTIONS(2803), + [anon_sym_noreturn] = ACTIONS(2803), + [anon_sym__Nonnull] = ACTIONS(2803), + [anon_sym_mutable] = ACTIONS(2803), + [anon_sym_constinit] = ACTIONS(2803), + [anon_sym_consteval] = ACTIONS(2803), + [anon_sym_alignas] = ACTIONS(2803), + [anon_sym__Alignas] = ACTIONS(2803), + [sym_primitive_type] = ACTIONS(2803), + [anon_sym_enum] = ACTIONS(2803), + [anon_sym_class] = ACTIONS(2803), + [anon_sym_struct] = ACTIONS(2803), + [anon_sym_union] = ACTIONS(2803), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1940), - [anon_sym_decltype] = ACTIONS(1940), - [anon_sym_explicit] = ACTIONS(1940), - [anon_sym_typename] = ACTIONS(1940), - [anon_sym_private] = ACTIONS(1940), - [anon_sym_template] = ACTIONS(1940), - [anon_sym_operator] = ACTIONS(1940), - [anon_sym_friend] = ACTIONS(1940), - [anon_sym_public] = ACTIONS(1940), - [anon_sym_protected] = ACTIONS(1940), - [anon_sym_static_assert] = ACTIONS(1940), - [anon_sym_catch] = ACTIONS(1940), + [sym_auto] = ACTIONS(2803), + [anon_sym_decltype] = ACTIONS(2803), + [anon_sym_explicit] = ACTIONS(2803), + [anon_sym_typename] = ACTIONS(2803), + [anon_sym_private] = ACTIONS(2803), + [anon_sym_template] = ACTIONS(2803), + [anon_sym_operator] = ACTIONS(2803), + [anon_sym_friend] = ACTIONS(2803), + [anon_sym_public] = ACTIONS(2803), + [anon_sym_protected] = ACTIONS(2803), + [anon_sym_static_assert] = ACTIONS(2803), }, - [1703] = { - [sym__declaration_modifiers] = STATE(2061), - [sym__declaration_specifiers] = STATE(3966), - [sym_attribute_specifier] = STATE(2061), - [sym_attribute_declaration] = STATE(2061), - [sym_ms_declspec_modifier] = STATE(2061), - [sym_storage_class_specifier] = STATE(2061), - [sym_type_qualifier] = STATE(2061), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_parameter_declaration] = STATE(7359), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym_dependent_type] = STATE(2523), - [sym_optional_parameter_declaration] = STATE(7359), - [sym_variadic_parameter_declaration] = STATE(7359), - [sym_template_type] = STATE(2406), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(6606), - [sym_qualified_type_identifier] = STATE(3015), - [aux_sym__declaration_specifiers_repeat1] = STATE(2061), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [sym_identifier] = ACTIONS(5010), - [anon_sym_RPAREN] = ACTIONS(1866), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1878), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5020), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2999), - [anon_sym_enum] = ACTIONS(1884), - [anon_sym_class] = ACTIONS(1886), - [anon_sym_struct] = ACTIONS(1888), - [anon_sym_union] = ACTIONS(1890), + [1768] = { + [sym_identifier] = ACTIONS(2811), + [aux_sym_preproc_def_token1] = ACTIONS(2811), + [aux_sym_preproc_if_token1] = ACTIONS(2811), + [aux_sym_preproc_if_token2] = ACTIONS(2811), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2811), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2811), + [aux_sym_preproc_else_token1] = ACTIONS(2811), + [aux_sym_preproc_elif_token1] = ACTIONS(2811), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2811), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2811), + [sym_preproc_directive] = ACTIONS(2811), + [anon_sym_LPAREN2] = ACTIONS(2813), + [anon_sym_TILDE] = ACTIONS(2813), + [anon_sym_STAR] = ACTIONS(2813), + [anon_sym_AMP_AMP] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2811), + [anon_sym_SEMI] = ACTIONS(2813), + [anon_sym___extension__] = ACTIONS(2811), + [anon_sym_typedef] = ACTIONS(2811), + [anon_sym_virtual] = ACTIONS(2811), + [anon_sym_extern] = ACTIONS(2811), + [anon_sym___attribute__] = ACTIONS(2811), + [anon_sym___attribute] = ACTIONS(2811), + [anon_sym_using] = ACTIONS(2811), + [anon_sym_COLON_COLON] = ACTIONS(2813), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2813), + [anon_sym___declspec] = ACTIONS(2811), + [anon_sym___based] = ACTIONS(2811), + [anon_sym_signed] = ACTIONS(2811), + [anon_sym_unsigned] = ACTIONS(2811), + [anon_sym_long] = ACTIONS(2811), + [anon_sym_short] = ACTIONS(2811), + [anon_sym_LBRACK] = ACTIONS(2811), + [anon_sym_static] = ACTIONS(2811), + [anon_sym_register] = ACTIONS(2811), + [anon_sym_inline] = ACTIONS(2811), + [anon_sym___inline] = ACTIONS(2811), + [anon_sym___inline__] = ACTIONS(2811), + [anon_sym___forceinline] = ACTIONS(2811), + [anon_sym_thread_local] = ACTIONS(2811), + [anon_sym___thread] = ACTIONS(2811), + [anon_sym_const] = ACTIONS(2811), + [anon_sym_constexpr] = ACTIONS(2811), + [anon_sym_volatile] = ACTIONS(2811), + [anon_sym_restrict] = ACTIONS(2811), + [anon_sym___restrict__] = ACTIONS(2811), + [anon_sym__Atomic] = ACTIONS(2811), + [anon_sym__Noreturn] = ACTIONS(2811), + [anon_sym_noreturn] = ACTIONS(2811), + [anon_sym__Nonnull] = ACTIONS(2811), + [anon_sym_mutable] = ACTIONS(2811), + [anon_sym_constinit] = ACTIONS(2811), + [anon_sym_consteval] = ACTIONS(2811), + [anon_sym_alignas] = ACTIONS(2811), + [anon_sym__Alignas] = ACTIONS(2811), + [sym_primitive_type] = ACTIONS(2811), + [anon_sym_enum] = ACTIONS(2811), + [anon_sym_class] = ACTIONS(2811), + [anon_sym_struct] = ACTIONS(2811), + [anon_sym_union] = ACTIONS(2811), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(1914), - [anon_sym_template] = ACTIONS(1452), + [sym_auto] = ACTIONS(2811), + [anon_sym_decltype] = ACTIONS(2811), + [anon_sym_explicit] = ACTIONS(2811), + [anon_sym_typename] = ACTIONS(2811), + [anon_sym_private] = ACTIONS(2811), + [anon_sym_template] = ACTIONS(2811), + [anon_sym_operator] = ACTIONS(2811), + [anon_sym_friend] = ACTIONS(2811), + [anon_sym_public] = ACTIONS(2811), + [anon_sym_protected] = ACTIONS(2811), + [anon_sym_static_assert] = ACTIONS(2811), }, - [1704] = { - [sym_identifier] = ACTIONS(1936), - [aux_sym_preproc_def_token1] = ACTIONS(1936), - [aux_sym_preproc_if_token1] = ACTIONS(1936), - [aux_sym_preproc_if_token2] = ACTIONS(1936), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1936), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1936), - [aux_sym_preproc_else_token1] = ACTIONS(1936), - [aux_sym_preproc_elif_token1] = ACTIONS(1936), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1936), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1936), - [sym_preproc_directive] = ACTIONS(1936), - [anon_sym_LPAREN2] = ACTIONS(1934), - [anon_sym_TILDE] = ACTIONS(1934), - [anon_sym_STAR] = ACTIONS(1934), - [anon_sym_AMP_AMP] = ACTIONS(1934), - [anon_sym_AMP] = ACTIONS(1936), - [anon_sym_SEMI] = ACTIONS(1934), - [anon_sym___extension__] = ACTIONS(1936), - [anon_sym_typedef] = ACTIONS(1936), - [anon_sym_virtual] = ACTIONS(1936), - [anon_sym_extern] = ACTIONS(1936), - [anon_sym___attribute__] = ACTIONS(1936), - [anon_sym___attribute] = ACTIONS(1936), - [anon_sym_using] = ACTIONS(1936), - [anon_sym_COLON_COLON] = ACTIONS(1934), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1934), - [anon_sym___declspec] = ACTIONS(1936), - [anon_sym___based] = ACTIONS(1936), - [anon_sym_signed] = ACTIONS(1936), - [anon_sym_unsigned] = ACTIONS(1936), - [anon_sym_long] = ACTIONS(1936), - [anon_sym_short] = ACTIONS(1936), - [anon_sym_LBRACK] = ACTIONS(1936), - [anon_sym_static] = ACTIONS(1936), - [anon_sym_register] = ACTIONS(1936), - [anon_sym_inline] = ACTIONS(1936), - [anon_sym___inline] = ACTIONS(1936), - [anon_sym___inline__] = ACTIONS(1936), - [anon_sym___forceinline] = ACTIONS(1936), - [anon_sym_thread_local] = ACTIONS(1936), - [anon_sym___thread] = ACTIONS(1936), - [anon_sym_const] = ACTIONS(1936), - [anon_sym_constexpr] = ACTIONS(1936), - [anon_sym_volatile] = ACTIONS(1936), - [anon_sym_restrict] = ACTIONS(1936), - [anon_sym___restrict__] = ACTIONS(1936), - [anon_sym__Atomic] = ACTIONS(1936), - [anon_sym__Noreturn] = ACTIONS(1936), - [anon_sym_noreturn] = ACTIONS(1936), - [anon_sym__Nonnull] = ACTIONS(1936), - [anon_sym_mutable] = ACTIONS(1936), - [anon_sym_constinit] = ACTIONS(1936), - [anon_sym_consteval] = ACTIONS(1936), - [anon_sym_alignas] = ACTIONS(1936), - [anon_sym__Alignas] = ACTIONS(1936), - [sym_primitive_type] = ACTIONS(1936), - [anon_sym_enum] = ACTIONS(1936), - [anon_sym_class] = ACTIONS(1936), - [anon_sym_struct] = ACTIONS(1936), - [anon_sym_union] = ACTIONS(1936), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1936), - [anon_sym_decltype] = ACTIONS(1936), - [anon_sym_explicit] = ACTIONS(1936), - [anon_sym_typename] = ACTIONS(1936), - [anon_sym_private] = ACTIONS(1936), - [anon_sym_template] = ACTIONS(1936), - [anon_sym_operator] = ACTIONS(1936), - [anon_sym_friend] = ACTIONS(1936), - [anon_sym_public] = ACTIONS(1936), - [anon_sym_protected] = ACTIONS(1936), - [anon_sym_static_assert] = ACTIONS(1936), - [anon_sym_catch] = ACTIONS(1936), + [1769] = { + [sym_identifier] = ACTIONS(5503), + [aux_sym_preproc_def_token1] = ACTIONS(5503), + [aux_sym_preproc_if_token1] = ACTIONS(5503), + [aux_sym_preproc_if_token2] = ACTIONS(5503), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5503), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5503), + [aux_sym_preproc_else_token1] = ACTIONS(5503), + [aux_sym_preproc_elif_token1] = ACTIONS(5503), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5503), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5503), + [sym_preproc_directive] = ACTIONS(5503), + [anon_sym_LPAREN2] = ACTIONS(5505), + [anon_sym_TILDE] = ACTIONS(5505), + [anon_sym_STAR] = ACTIONS(5505), + [anon_sym_AMP_AMP] = ACTIONS(5505), + [anon_sym_AMP] = ACTIONS(5503), + [anon_sym_SEMI] = ACTIONS(5505), + [anon_sym___extension__] = ACTIONS(5503), + [anon_sym_typedef] = ACTIONS(5503), + [anon_sym_virtual] = ACTIONS(5503), + [anon_sym_extern] = ACTIONS(5503), + [anon_sym___attribute__] = ACTIONS(5503), + [anon_sym___attribute] = ACTIONS(5503), + [anon_sym_using] = ACTIONS(5503), + [anon_sym_COLON_COLON] = ACTIONS(5505), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5505), + [anon_sym___declspec] = ACTIONS(5503), + [anon_sym___based] = ACTIONS(5503), + [anon_sym_signed] = ACTIONS(5503), + [anon_sym_unsigned] = ACTIONS(5503), + [anon_sym_long] = ACTIONS(5503), + [anon_sym_short] = ACTIONS(5503), + [anon_sym_LBRACK] = ACTIONS(5503), + [anon_sym_static] = ACTIONS(5503), + [anon_sym_register] = ACTIONS(5503), + [anon_sym_inline] = ACTIONS(5503), + [anon_sym___inline] = ACTIONS(5503), + [anon_sym___inline__] = ACTIONS(5503), + [anon_sym___forceinline] = ACTIONS(5503), + [anon_sym_thread_local] = ACTIONS(5503), + [anon_sym___thread] = ACTIONS(5503), + [anon_sym_const] = ACTIONS(5503), + [anon_sym_constexpr] = ACTIONS(5503), + [anon_sym_volatile] = ACTIONS(5503), + [anon_sym_restrict] = ACTIONS(5503), + [anon_sym___restrict__] = ACTIONS(5503), + [anon_sym__Atomic] = ACTIONS(5503), + [anon_sym__Noreturn] = ACTIONS(5503), + [anon_sym_noreturn] = ACTIONS(5503), + [anon_sym__Nonnull] = ACTIONS(5503), + [anon_sym_mutable] = ACTIONS(5503), + [anon_sym_constinit] = ACTIONS(5503), + [anon_sym_consteval] = ACTIONS(5503), + [anon_sym_alignas] = ACTIONS(5503), + [anon_sym__Alignas] = ACTIONS(5503), + [sym_primitive_type] = ACTIONS(5503), + [anon_sym_enum] = ACTIONS(5503), + [anon_sym_class] = ACTIONS(5503), + [anon_sym_struct] = ACTIONS(5503), + [anon_sym_union] = ACTIONS(5503), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5503), + [anon_sym_decltype] = ACTIONS(5503), + [anon_sym_explicit] = ACTIONS(5503), + [anon_sym_typename] = ACTIONS(5503), + [anon_sym_private] = ACTIONS(5503), + [anon_sym_template] = ACTIONS(5503), + [anon_sym_operator] = ACTIONS(5503), + [anon_sym_friend] = ACTIONS(5503), + [anon_sym_public] = ACTIONS(5503), + [anon_sym_protected] = ACTIONS(5503), + [anon_sym_static_assert] = ACTIONS(5503), }, - [1705] = { - [sym_template_argument_list] = STATE(1701), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4965), - [anon_sym_COMMA] = ACTIONS(4965), - [anon_sym_RPAREN] = ACTIONS(4967), - [anon_sym_LPAREN2] = ACTIONS(4967), - [anon_sym_DASH] = ACTIONS(4972), - [anon_sym_PLUS] = ACTIONS(4972), - [anon_sym_STAR] = ACTIONS(4974), - [anon_sym_SLASH] = ACTIONS(4972), - [anon_sym_PERCENT] = ACTIONS(4972), - [anon_sym_PIPE_PIPE] = ACTIONS(4965), - [anon_sym_AMP_AMP] = ACTIONS(4967), - [anon_sym_PIPE] = ACTIONS(4972), - [anon_sym_CARET] = ACTIONS(4972), - [anon_sym_AMP] = ACTIONS(4974), - [anon_sym_EQ_EQ] = ACTIONS(4965), - [anon_sym_BANG_EQ] = ACTIONS(4965), - [anon_sym_GT] = ACTIONS(4972), - [anon_sym_GT_EQ] = ACTIONS(4965), - [anon_sym_LT_EQ] = ACTIONS(4972), - [anon_sym_LT] = ACTIONS(5030), - [anon_sym_LT_LT] = ACTIONS(4972), - [anon_sym_GT_GT] = ACTIONS(4972), - [anon_sym___extension__] = ACTIONS(4970), - [anon_sym_COLON_COLON] = ACTIONS(4167), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4965), - [anon_sym_LBRACE] = ACTIONS(4970), - [anon_sym_LBRACK] = ACTIONS(4974), - [anon_sym_EQ] = ACTIONS(4972), - [anon_sym_const] = ACTIONS(4963), - [anon_sym_constexpr] = ACTIONS(4970), - [anon_sym_volatile] = ACTIONS(4970), - [anon_sym_restrict] = ACTIONS(4970), - [anon_sym___restrict__] = ACTIONS(4970), - [anon_sym__Atomic] = ACTIONS(4970), - [anon_sym__Noreturn] = ACTIONS(4970), - [anon_sym_noreturn] = ACTIONS(4970), - [anon_sym__Nonnull] = ACTIONS(4970), - [anon_sym_mutable] = ACTIONS(4970), - [anon_sym_constinit] = ACTIONS(4970), - [anon_sym_consteval] = ACTIONS(4970), - [anon_sym_alignas] = ACTIONS(4970), - [anon_sym__Alignas] = ACTIONS(4970), - [anon_sym_QMARK] = ACTIONS(4965), - [anon_sym_STAR_EQ] = ACTIONS(4965), - [anon_sym_SLASH_EQ] = ACTIONS(4965), - [anon_sym_PERCENT_EQ] = ACTIONS(4965), - [anon_sym_PLUS_EQ] = ACTIONS(4965), - [anon_sym_DASH_EQ] = ACTIONS(4965), - [anon_sym_LT_LT_EQ] = ACTIONS(4965), - [anon_sym_GT_GT_EQ] = ACTIONS(4965), - [anon_sym_AMP_EQ] = ACTIONS(4965), - [anon_sym_CARET_EQ] = ACTIONS(4965), - [anon_sym_PIPE_EQ] = ACTIONS(4965), - [anon_sym_and_eq] = ACTIONS(4965), - [anon_sym_or_eq] = ACTIONS(4965), - [anon_sym_xor_eq] = ACTIONS(4965), - [anon_sym_LT_EQ_GT] = ACTIONS(4965), - [anon_sym_or] = ACTIONS(4972), - [anon_sym_and] = ACTIONS(4972), - [anon_sym_bitor] = ACTIONS(4965), - [anon_sym_xor] = ACTIONS(4972), - [anon_sym_bitand] = ACTIONS(4965), - [anon_sym_not_eq] = ACTIONS(4965), - [anon_sym_DASH_DASH] = ACTIONS(4965), - [anon_sym_PLUS_PLUS] = ACTIONS(4965), - [anon_sym_DOT] = ACTIONS(4972), - [anon_sym_DOT_STAR] = ACTIONS(4965), - [anon_sym_DASH_GT] = ACTIONS(4972), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4970), - [anon_sym_decltype] = ACTIONS(4970), - [anon_sym_DASH_GT_STAR] = ACTIONS(4965), + [1770] = { + [sym_identifier] = ACTIONS(5503), + [aux_sym_preproc_def_token1] = ACTIONS(5503), + [aux_sym_preproc_if_token1] = ACTIONS(5503), + [aux_sym_preproc_if_token2] = ACTIONS(5503), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5503), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5503), + [aux_sym_preproc_else_token1] = ACTIONS(5503), + [aux_sym_preproc_elif_token1] = ACTIONS(5503), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5503), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5503), + [sym_preproc_directive] = ACTIONS(5503), + [anon_sym_LPAREN2] = ACTIONS(5505), + [anon_sym_TILDE] = ACTIONS(5505), + [anon_sym_STAR] = ACTIONS(5505), + [anon_sym_AMP_AMP] = ACTIONS(5505), + [anon_sym_AMP] = ACTIONS(5503), + [anon_sym_SEMI] = ACTIONS(5505), + [anon_sym___extension__] = ACTIONS(5503), + [anon_sym_typedef] = ACTIONS(5503), + [anon_sym_virtual] = ACTIONS(5503), + [anon_sym_extern] = ACTIONS(5503), + [anon_sym___attribute__] = ACTIONS(5503), + [anon_sym___attribute] = ACTIONS(5503), + [anon_sym_using] = ACTIONS(5503), + [anon_sym_COLON_COLON] = ACTIONS(5505), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5505), + [anon_sym___declspec] = ACTIONS(5503), + [anon_sym___based] = ACTIONS(5503), + [anon_sym_signed] = ACTIONS(5503), + [anon_sym_unsigned] = ACTIONS(5503), + [anon_sym_long] = ACTIONS(5503), + [anon_sym_short] = ACTIONS(5503), + [anon_sym_LBRACK] = ACTIONS(5503), + [anon_sym_static] = ACTIONS(5503), + [anon_sym_register] = ACTIONS(5503), + [anon_sym_inline] = ACTIONS(5503), + [anon_sym___inline] = ACTIONS(5503), + [anon_sym___inline__] = ACTIONS(5503), + [anon_sym___forceinline] = ACTIONS(5503), + [anon_sym_thread_local] = ACTIONS(5503), + [anon_sym___thread] = ACTIONS(5503), + [anon_sym_const] = ACTIONS(5503), + [anon_sym_constexpr] = ACTIONS(5503), + [anon_sym_volatile] = ACTIONS(5503), + [anon_sym_restrict] = ACTIONS(5503), + [anon_sym___restrict__] = ACTIONS(5503), + [anon_sym__Atomic] = ACTIONS(5503), + [anon_sym__Noreturn] = ACTIONS(5503), + [anon_sym_noreturn] = ACTIONS(5503), + [anon_sym__Nonnull] = ACTIONS(5503), + [anon_sym_mutable] = ACTIONS(5503), + [anon_sym_constinit] = ACTIONS(5503), + [anon_sym_consteval] = ACTIONS(5503), + [anon_sym_alignas] = ACTIONS(5503), + [anon_sym__Alignas] = ACTIONS(5503), + [sym_primitive_type] = ACTIONS(5503), + [anon_sym_enum] = ACTIONS(5503), + [anon_sym_class] = ACTIONS(5503), + [anon_sym_struct] = ACTIONS(5503), + [anon_sym_union] = ACTIONS(5503), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5503), + [anon_sym_decltype] = ACTIONS(5503), + [anon_sym_explicit] = ACTIONS(5503), + [anon_sym_typename] = ACTIONS(5503), + [anon_sym_private] = ACTIONS(5503), + [anon_sym_template] = ACTIONS(5503), + [anon_sym_operator] = ACTIONS(5503), + [anon_sym_friend] = ACTIONS(5503), + [anon_sym_public] = ACTIONS(5503), + [anon_sym_protected] = ACTIONS(5503), + [anon_sym_static_assert] = ACTIONS(5503), }, - [1706] = { - [sym_identifier] = ACTIONS(2619), - [aux_sym_preproc_def_token1] = ACTIONS(2619), - [aux_sym_preproc_if_token1] = ACTIONS(2619), - [aux_sym_preproc_if_token2] = ACTIONS(2619), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2619), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2619), - [aux_sym_preproc_else_token1] = ACTIONS(2619), - [aux_sym_preproc_elif_token1] = ACTIONS(2619), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2619), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2619), - [sym_preproc_directive] = ACTIONS(2619), - [anon_sym_LPAREN2] = ACTIONS(2621), - [anon_sym_TILDE] = ACTIONS(2621), - [anon_sym_STAR] = ACTIONS(2621), - [anon_sym_AMP_AMP] = ACTIONS(2621), - [anon_sym_AMP] = ACTIONS(2619), - [anon_sym_SEMI] = ACTIONS(2621), - [anon_sym___extension__] = ACTIONS(2619), - [anon_sym_typedef] = ACTIONS(2619), - [anon_sym_virtual] = ACTIONS(2619), - [anon_sym_extern] = ACTIONS(2619), - [anon_sym___attribute__] = ACTIONS(2619), - [anon_sym___attribute] = ACTIONS(2619), - [anon_sym_using] = ACTIONS(2619), - [anon_sym_COLON_COLON] = ACTIONS(2621), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2621), - [anon_sym___declspec] = ACTIONS(2619), - [anon_sym___based] = ACTIONS(2619), - [anon_sym_signed] = ACTIONS(2619), - [anon_sym_unsigned] = ACTIONS(2619), - [anon_sym_long] = ACTIONS(2619), - [anon_sym_short] = ACTIONS(2619), - [anon_sym_LBRACK] = ACTIONS(2619), - [anon_sym_static] = ACTIONS(2619), - [anon_sym_register] = ACTIONS(2619), - [anon_sym_inline] = ACTIONS(2619), - [anon_sym___inline] = ACTIONS(2619), - [anon_sym___inline__] = ACTIONS(2619), - [anon_sym___forceinline] = ACTIONS(2619), - [anon_sym_thread_local] = ACTIONS(2619), - [anon_sym___thread] = ACTIONS(2619), - [anon_sym_const] = ACTIONS(2619), - [anon_sym_constexpr] = ACTIONS(2619), - [anon_sym_volatile] = ACTIONS(2619), - [anon_sym_restrict] = ACTIONS(2619), - [anon_sym___restrict__] = ACTIONS(2619), - [anon_sym__Atomic] = ACTIONS(2619), - [anon_sym__Noreturn] = ACTIONS(2619), - [anon_sym_noreturn] = ACTIONS(2619), - [anon_sym__Nonnull] = ACTIONS(2619), - [anon_sym_mutable] = ACTIONS(2619), - [anon_sym_constinit] = ACTIONS(2619), - [anon_sym_consteval] = ACTIONS(2619), - [anon_sym_alignas] = ACTIONS(2619), - [anon_sym__Alignas] = ACTIONS(2619), - [sym_primitive_type] = ACTIONS(2619), - [anon_sym_enum] = ACTIONS(2619), - [anon_sym_class] = ACTIONS(2619), - [anon_sym_struct] = ACTIONS(2619), - [anon_sym_union] = ACTIONS(2619), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2619), - [anon_sym_decltype] = ACTIONS(2619), - [anon_sym_explicit] = ACTIONS(2619), - [anon_sym_typename] = ACTIONS(2619), - [anon_sym_private] = ACTIONS(2619), - [anon_sym_template] = ACTIONS(2619), - [anon_sym_operator] = ACTIONS(2619), - [anon_sym_friend] = ACTIONS(2619), - [anon_sym_public] = ACTIONS(2619), - [anon_sym_protected] = ACTIONS(2619), - [anon_sym_static_assert] = ACTIONS(2619), - [anon_sym_catch] = ACTIONS(2619), + [1771] = { + [sym_identifier] = ACTIONS(5503), + [aux_sym_preproc_def_token1] = ACTIONS(5503), + [aux_sym_preproc_if_token1] = ACTIONS(5503), + [aux_sym_preproc_if_token2] = ACTIONS(5503), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5503), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5503), + [aux_sym_preproc_else_token1] = ACTIONS(5503), + [aux_sym_preproc_elif_token1] = ACTIONS(5503), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5503), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5503), + [sym_preproc_directive] = ACTIONS(5503), + [anon_sym_LPAREN2] = ACTIONS(5505), + [anon_sym_TILDE] = ACTIONS(5505), + [anon_sym_STAR] = ACTIONS(5505), + [anon_sym_AMP_AMP] = ACTIONS(5505), + [anon_sym_AMP] = ACTIONS(5503), + [anon_sym_SEMI] = ACTIONS(5505), + [anon_sym___extension__] = ACTIONS(5503), + [anon_sym_typedef] = ACTIONS(5503), + [anon_sym_virtual] = ACTIONS(5503), + [anon_sym_extern] = ACTIONS(5503), + [anon_sym___attribute__] = ACTIONS(5503), + [anon_sym___attribute] = ACTIONS(5503), + [anon_sym_using] = ACTIONS(5503), + [anon_sym_COLON_COLON] = ACTIONS(5505), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5505), + [anon_sym___declspec] = ACTIONS(5503), + [anon_sym___based] = ACTIONS(5503), + [anon_sym_signed] = ACTIONS(5503), + [anon_sym_unsigned] = ACTIONS(5503), + [anon_sym_long] = ACTIONS(5503), + [anon_sym_short] = ACTIONS(5503), + [anon_sym_LBRACK] = ACTIONS(5503), + [anon_sym_static] = ACTIONS(5503), + [anon_sym_register] = ACTIONS(5503), + [anon_sym_inline] = ACTIONS(5503), + [anon_sym___inline] = ACTIONS(5503), + [anon_sym___inline__] = ACTIONS(5503), + [anon_sym___forceinline] = ACTIONS(5503), + [anon_sym_thread_local] = ACTIONS(5503), + [anon_sym___thread] = ACTIONS(5503), + [anon_sym_const] = ACTIONS(5503), + [anon_sym_constexpr] = ACTIONS(5503), + [anon_sym_volatile] = ACTIONS(5503), + [anon_sym_restrict] = ACTIONS(5503), + [anon_sym___restrict__] = ACTIONS(5503), + [anon_sym__Atomic] = ACTIONS(5503), + [anon_sym__Noreturn] = ACTIONS(5503), + [anon_sym_noreturn] = ACTIONS(5503), + [anon_sym__Nonnull] = ACTIONS(5503), + [anon_sym_mutable] = ACTIONS(5503), + [anon_sym_constinit] = ACTIONS(5503), + [anon_sym_consteval] = ACTIONS(5503), + [anon_sym_alignas] = ACTIONS(5503), + [anon_sym__Alignas] = ACTIONS(5503), + [sym_primitive_type] = ACTIONS(5503), + [anon_sym_enum] = ACTIONS(5503), + [anon_sym_class] = ACTIONS(5503), + [anon_sym_struct] = ACTIONS(5503), + [anon_sym_union] = ACTIONS(5503), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5503), + [anon_sym_decltype] = ACTIONS(5503), + [anon_sym_explicit] = ACTIONS(5503), + [anon_sym_typename] = ACTIONS(5503), + [anon_sym_private] = ACTIONS(5503), + [anon_sym_template] = ACTIONS(5503), + [anon_sym_operator] = ACTIONS(5503), + [anon_sym_friend] = ACTIONS(5503), + [anon_sym_public] = ACTIONS(5503), + [anon_sym_protected] = ACTIONS(5503), + [anon_sym_static_assert] = ACTIONS(5503), }, - [1707] = { - [sym_identifier] = ACTIONS(1940), - [aux_sym_preproc_def_token1] = ACTIONS(1940), - [anon_sym_COMMA] = ACTIONS(2685), - [aux_sym_preproc_if_token1] = ACTIONS(1940), - [aux_sym_preproc_if_token2] = ACTIONS(1940), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1940), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1940), - [aux_sym_preproc_else_token1] = ACTIONS(1940), - [aux_sym_preproc_elif_token1] = ACTIONS(1940), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1940), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1940), - [sym_preproc_directive] = ACTIONS(1940), - [anon_sym_LPAREN2] = ACTIONS(1938), - [anon_sym_TILDE] = ACTIONS(1938), - [anon_sym_STAR] = ACTIONS(1938), - [anon_sym_AMP_AMP] = ACTIONS(1938), - [anon_sym_AMP] = ACTIONS(1940), - [anon_sym_SEMI] = ACTIONS(2685), - [anon_sym___extension__] = ACTIONS(1940), - [anon_sym_typedef] = ACTIONS(1940), - [anon_sym_virtual] = ACTIONS(1940), - [anon_sym_extern] = ACTIONS(1940), - [anon_sym___attribute__] = ACTIONS(5442), - [anon_sym___attribute] = ACTIONS(5442), - [anon_sym_using] = ACTIONS(1940), - [anon_sym_COLON_COLON] = ACTIONS(1938), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1938), - [anon_sym___declspec] = ACTIONS(1940), - [anon_sym___based] = ACTIONS(1940), - [anon_sym_signed] = ACTIONS(1940), - [anon_sym_unsigned] = ACTIONS(1940), - [anon_sym_long] = ACTIONS(1940), - [anon_sym_short] = ACTIONS(1940), - [anon_sym_LBRACK] = ACTIONS(1940), - [anon_sym_static] = ACTIONS(1940), - [anon_sym_register] = ACTIONS(1940), - [anon_sym_inline] = ACTIONS(1940), - [anon_sym___inline] = ACTIONS(1940), - [anon_sym___inline__] = ACTIONS(1940), - [anon_sym___forceinline] = ACTIONS(1940), - [anon_sym_thread_local] = ACTIONS(1940), - [anon_sym___thread] = ACTIONS(1940), - [anon_sym_const] = ACTIONS(1940), - [anon_sym_constexpr] = ACTIONS(1940), - [anon_sym_volatile] = ACTIONS(1940), - [anon_sym_restrict] = ACTIONS(1940), - [anon_sym___restrict__] = ACTIONS(1940), - [anon_sym__Atomic] = ACTIONS(1940), - [anon_sym__Noreturn] = ACTIONS(1940), - [anon_sym_noreturn] = ACTIONS(1940), - [anon_sym__Nonnull] = ACTIONS(1940), - [anon_sym_mutable] = ACTIONS(1940), - [anon_sym_constinit] = ACTIONS(1940), - [anon_sym_consteval] = ACTIONS(1940), - [anon_sym_alignas] = ACTIONS(1940), - [anon_sym__Alignas] = ACTIONS(1940), - [sym_primitive_type] = ACTIONS(1940), - [anon_sym_enum] = ACTIONS(1940), - [anon_sym_class] = ACTIONS(1940), - [anon_sym_struct] = ACTIONS(1940), - [anon_sym_union] = ACTIONS(1940), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1940), - [anon_sym_decltype] = ACTIONS(1940), - [anon_sym_explicit] = ACTIONS(1940), - [anon_sym_typename] = ACTIONS(1940), - [anon_sym_private] = ACTIONS(1940), - [anon_sym_template] = ACTIONS(1940), - [anon_sym_operator] = ACTIONS(1940), - [anon_sym_friend] = ACTIONS(1940), - [anon_sym_public] = ACTIONS(1940), - [anon_sym_protected] = ACTIONS(1940), - [anon_sym_static_assert] = ACTIONS(1940), + [1772] = { + [sym_identifier] = ACTIONS(5499), + [aux_sym_preproc_def_token1] = ACTIONS(5499), + [aux_sym_preproc_if_token1] = ACTIONS(5499), + [aux_sym_preproc_if_token2] = ACTIONS(5499), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5499), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5499), + [aux_sym_preproc_else_token1] = ACTIONS(5499), + [aux_sym_preproc_elif_token1] = ACTIONS(5499), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5499), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5499), + [sym_preproc_directive] = ACTIONS(5499), + [anon_sym_LPAREN2] = ACTIONS(5501), + [anon_sym_TILDE] = ACTIONS(5501), + [anon_sym_STAR] = ACTIONS(5501), + [anon_sym_AMP_AMP] = ACTIONS(5501), + [anon_sym_AMP] = ACTIONS(5499), + [anon_sym_SEMI] = ACTIONS(5501), + [anon_sym___extension__] = ACTIONS(5499), + [anon_sym_typedef] = ACTIONS(5499), + [anon_sym_virtual] = ACTIONS(5499), + [anon_sym_extern] = ACTIONS(5499), + [anon_sym___attribute__] = ACTIONS(5499), + [anon_sym___attribute] = ACTIONS(5499), + [anon_sym_using] = ACTIONS(5499), + [anon_sym_COLON_COLON] = ACTIONS(5501), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5501), + [anon_sym___declspec] = ACTIONS(5499), + [anon_sym___based] = ACTIONS(5499), + [anon_sym_signed] = ACTIONS(5499), + [anon_sym_unsigned] = ACTIONS(5499), + [anon_sym_long] = ACTIONS(5499), + [anon_sym_short] = ACTIONS(5499), + [anon_sym_LBRACK] = ACTIONS(5499), + [anon_sym_static] = ACTIONS(5499), + [anon_sym_register] = ACTIONS(5499), + [anon_sym_inline] = ACTIONS(5499), + [anon_sym___inline] = ACTIONS(5499), + [anon_sym___inline__] = ACTIONS(5499), + [anon_sym___forceinline] = ACTIONS(5499), + [anon_sym_thread_local] = ACTIONS(5499), + [anon_sym___thread] = ACTIONS(5499), + [anon_sym_const] = ACTIONS(5499), + [anon_sym_constexpr] = ACTIONS(5499), + [anon_sym_volatile] = ACTIONS(5499), + [anon_sym_restrict] = ACTIONS(5499), + [anon_sym___restrict__] = ACTIONS(5499), + [anon_sym__Atomic] = ACTIONS(5499), + [anon_sym__Noreturn] = ACTIONS(5499), + [anon_sym_noreturn] = ACTIONS(5499), + [anon_sym__Nonnull] = ACTIONS(5499), + [anon_sym_mutable] = ACTIONS(5499), + [anon_sym_constinit] = ACTIONS(5499), + [anon_sym_consteval] = ACTIONS(5499), + [anon_sym_alignas] = ACTIONS(5499), + [anon_sym__Alignas] = ACTIONS(5499), + [sym_primitive_type] = ACTIONS(5499), + [anon_sym_enum] = ACTIONS(5499), + [anon_sym_class] = ACTIONS(5499), + [anon_sym_struct] = ACTIONS(5499), + [anon_sym_union] = ACTIONS(5499), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5499), + [anon_sym_decltype] = ACTIONS(5499), + [anon_sym_explicit] = ACTIONS(5499), + [anon_sym_typename] = ACTIONS(5499), + [anon_sym_private] = ACTIONS(5499), + [anon_sym_template] = ACTIONS(5499), + [anon_sym_operator] = ACTIONS(5499), + [anon_sym_friend] = ACTIONS(5499), + [anon_sym_public] = ACTIONS(5499), + [anon_sym_protected] = ACTIONS(5499), + [anon_sym_static_assert] = ACTIONS(5499), }, - [1708] = { - [sym__declaration_modifiers] = STATE(2061), - [sym__declaration_specifiers] = STATE(3966), - [sym_attribute_specifier] = STATE(2061), - [sym_attribute_declaration] = STATE(2061), - [sym_ms_declspec_modifier] = STATE(2061), - [sym_storage_class_specifier] = STATE(2061), - [sym_type_qualifier] = STATE(2061), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_parameter_declaration] = STATE(7766), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym_dependent_type] = STATE(2523), - [sym_optional_parameter_declaration] = STATE(7766), - [sym_variadic_parameter_declaration] = STATE(7766), - [sym_template_type] = STATE(2406), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(6606), - [sym_qualified_type_identifier] = STATE(3015), - [aux_sym__declaration_specifiers_repeat1] = STATE(2061), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [sym_identifier] = ACTIONS(5010), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5444), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1878), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5020), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2999), - [anon_sym_enum] = ACTIONS(1884), - [anon_sym_class] = ACTIONS(1886), - [anon_sym_struct] = ACTIONS(1888), - [anon_sym_union] = ACTIONS(1890), + [1773] = { + [sym_identifier] = ACTIONS(2819), + [aux_sym_preproc_def_token1] = ACTIONS(2819), + [aux_sym_preproc_if_token1] = ACTIONS(2819), + [aux_sym_preproc_if_token2] = ACTIONS(2819), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2819), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2819), + [aux_sym_preproc_else_token1] = ACTIONS(2819), + [aux_sym_preproc_elif_token1] = ACTIONS(2819), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2819), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2819), + [sym_preproc_directive] = ACTIONS(2819), + [anon_sym_LPAREN2] = ACTIONS(2821), + [anon_sym_TILDE] = ACTIONS(2821), + [anon_sym_STAR] = ACTIONS(2821), + [anon_sym_AMP_AMP] = ACTIONS(2821), + [anon_sym_AMP] = ACTIONS(2819), + [anon_sym_SEMI] = ACTIONS(2821), + [anon_sym___extension__] = ACTIONS(2819), + [anon_sym_typedef] = ACTIONS(2819), + [anon_sym_virtual] = ACTIONS(2819), + [anon_sym_extern] = ACTIONS(2819), + [anon_sym___attribute__] = ACTIONS(2819), + [anon_sym___attribute] = ACTIONS(2819), + [anon_sym_using] = ACTIONS(2819), + [anon_sym_COLON_COLON] = ACTIONS(2821), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2821), + [anon_sym___declspec] = ACTIONS(2819), + [anon_sym___based] = ACTIONS(2819), + [anon_sym_signed] = ACTIONS(2819), + [anon_sym_unsigned] = ACTIONS(2819), + [anon_sym_long] = ACTIONS(2819), + [anon_sym_short] = ACTIONS(2819), + [anon_sym_LBRACK] = ACTIONS(2819), + [anon_sym_static] = ACTIONS(2819), + [anon_sym_register] = ACTIONS(2819), + [anon_sym_inline] = ACTIONS(2819), + [anon_sym___inline] = ACTIONS(2819), + [anon_sym___inline__] = ACTIONS(2819), + [anon_sym___forceinline] = ACTIONS(2819), + [anon_sym_thread_local] = ACTIONS(2819), + [anon_sym___thread] = ACTIONS(2819), + [anon_sym_const] = ACTIONS(2819), + [anon_sym_constexpr] = ACTIONS(2819), + [anon_sym_volatile] = ACTIONS(2819), + [anon_sym_restrict] = ACTIONS(2819), + [anon_sym___restrict__] = ACTIONS(2819), + [anon_sym__Atomic] = ACTIONS(2819), + [anon_sym__Noreturn] = ACTIONS(2819), + [anon_sym_noreturn] = ACTIONS(2819), + [anon_sym__Nonnull] = ACTIONS(2819), + [anon_sym_mutable] = ACTIONS(2819), + [anon_sym_constinit] = ACTIONS(2819), + [anon_sym_consteval] = ACTIONS(2819), + [anon_sym_alignas] = ACTIONS(2819), + [anon_sym__Alignas] = ACTIONS(2819), + [sym_primitive_type] = ACTIONS(2819), + [anon_sym_enum] = ACTIONS(2819), + [anon_sym_class] = ACTIONS(2819), + [anon_sym_struct] = ACTIONS(2819), + [anon_sym_union] = ACTIONS(2819), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(1914), - [anon_sym_template] = ACTIONS(1452), + [sym_auto] = ACTIONS(2819), + [anon_sym_decltype] = ACTIONS(2819), + [anon_sym_explicit] = ACTIONS(2819), + [anon_sym_typename] = ACTIONS(2819), + [anon_sym_private] = ACTIONS(2819), + [anon_sym_template] = ACTIONS(2819), + [anon_sym_operator] = ACTIONS(2819), + [anon_sym_friend] = ACTIONS(2819), + [anon_sym_public] = ACTIONS(2819), + [anon_sym_protected] = ACTIONS(2819), + [anon_sym_static_assert] = ACTIONS(2819), }, - [1709] = { - [sym_identifier] = ACTIONS(1940), - [aux_sym_preproc_def_token1] = ACTIONS(1940), - [anon_sym_COMMA] = ACTIONS(2685), - [aux_sym_preproc_if_token1] = ACTIONS(1940), - [aux_sym_preproc_if_token2] = ACTIONS(1940), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1940), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1940), - [aux_sym_preproc_else_token1] = ACTIONS(1940), - [aux_sym_preproc_elif_token1] = ACTIONS(1940), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1940), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1940), - [sym_preproc_directive] = ACTIONS(1940), - [anon_sym_LPAREN2] = ACTIONS(1938), - [anon_sym_TILDE] = ACTIONS(1938), - [anon_sym_STAR] = ACTIONS(1938), - [anon_sym_AMP_AMP] = ACTIONS(1938), - [anon_sym_AMP] = ACTIONS(1940), - [anon_sym_SEMI] = ACTIONS(2685), - [anon_sym___extension__] = ACTIONS(1940), - [anon_sym_typedef] = ACTIONS(1940), - [anon_sym_virtual] = ACTIONS(1940), - [anon_sym_extern] = ACTIONS(1940), - [anon_sym___attribute__] = ACTIONS(1940), - [anon_sym___attribute] = ACTIONS(1940), - [anon_sym_using] = ACTIONS(1940), - [anon_sym_COLON_COLON] = ACTIONS(1938), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1938), - [anon_sym___declspec] = ACTIONS(1940), - [anon_sym___based] = ACTIONS(1940), - [anon_sym_signed] = ACTIONS(1940), - [anon_sym_unsigned] = ACTIONS(1940), - [anon_sym_long] = ACTIONS(1940), - [anon_sym_short] = ACTIONS(1940), - [anon_sym_LBRACK] = ACTIONS(1940), - [anon_sym_static] = ACTIONS(1940), - [anon_sym_register] = ACTIONS(1940), - [anon_sym_inline] = ACTIONS(1940), - [anon_sym___inline] = ACTIONS(1940), - [anon_sym___inline__] = ACTIONS(1940), - [anon_sym___forceinline] = ACTIONS(1940), - [anon_sym_thread_local] = ACTIONS(1940), - [anon_sym___thread] = ACTIONS(1940), - [anon_sym_const] = ACTIONS(1940), - [anon_sym_constexpr] = ACTIONS(1940), - [anon_sym_volatile] = ACTIONS(1940), - [anon_sym_restrict] = ACTIONS(1940), - [anon_sym___restrict__] = ACTIONS(1940), - [anon_sym__Atomic] = ACTIONS(1940), - [anon_sym__Noreturn] = ACTIONS(1940), - [anon_sym_noreturn] = ACTIONS(1940), - [anon_sym__Nonnull] = ACTIONS(1940), - [anon_sym_mutable] = ACTIONS(1940), - [anon_sym_constinit] = ACTIONS(1940), - [anon_sym_consteval] = ACTIONS(1940), - [anon_sym_alignas] = ACTIONS(1940), - [anon_sym__Alignas] = ACTIONS(1940), - [sym_primitive_type] = ACTIONS(1940), - [anon_sym_enum] = ACTIONS(1940), - [anon_sym_class] = ACTIONS(1940), - [anon_sym_struct] = ACTIONS(1940), - [anon_sym_union] = ACTIONS(1940), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1940), - [anon_sym_decltype] = ACTIONS(1940), - [anon_sym_explicit] = ACTIONS(1940), - [anon_sym_typename] = ACTIONS(1940), - [anon_sym_private] = ACTIONS(1940), - [anon_sym_template] = ACTIONS(1940), - [anon_sym_operator] = ACTIONS(1940), - [anon_sym_friend] = ACTIONS(1940), - [anon_sym_public] = ACTIONS(1940), - [anon_sym_protected] = ACTIONS(1940), - [anon_sym_static_assert] = ACTIONS(1940), + [1774] = { + [sym_identifier] = ACTIONS(5507), + [aux_sym_preproc_def_token1] = ACTIONS(5507), + [aux_sym_preproc_if_token1] = ACTIONS(5507), + [aux_sym_preproc_if_token2] = ACTIONS(5507), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5507), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5507), + [aux_sym_preproc_else_token1] = ACTIONS(5507), + [aux_sym_preproc_elif_token1] = ACTIONS(5507), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5507), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5507), + [sym_preproc_directive] = ACTIONS(5507), + [anon_sym_LPAREN2] = ACTIONS(5509), + [anon_sym_TILDE] = ACTIONS(5509), + [anon_sym_STAR] = ACTIONS(5509), + [anon_sym_AMP_AMP] = ACTIONS(5509), + [anon_sym_AMP] = ACTIONS(5507), + [anon_sym_SEMI] = ACTIONS(5509), + [anon_sym___extension__] = ACTIONS(5507), + [anon_sym_typedef] = ACTIONS(5507), + [anon_sym_virtual] = ACTIONS(5507), + [anon_sym_extern] = ACTIONS(5507), + [anon_sym___attribute__] = ACTIONS(5507), + [anon_sym___attribute] = ACTIONS(5507), + [anon_sym_using] = ACTIONS(5507), + [anon_sym_COLON_COLON] = ACTIONS(5509), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5509), + [anon_sym___declspec] = ACTIONS(5507), + [anon_sym___based] = ACTIONS(5507), + [anon_sym_signed] = ACTIONS(5507), + [anon_sym_unsigned] = ACTIONS(5507), + [anon_sym_long] = ACTIONS(5507), + [anon_sym_short] = ACTIONS(5507), + [anon_sym_LBRACK] = ACTIONS(5507), + [anon_sym_static] = ACTIONS(5507), + [anon_sym_register] = ACTIONS(5507), + [anon_sym_inline] = ACTIONS(5507), + [anon_sym___inline] = ACTIONS(5507), + [anon_sym___inline__] = ACTIONS(5507), + [anon_sym___forceinline] = ACTIONS(5507), + [anon_sym_thread_local] = ACTIONS(5507), + [anon_sym___thread] = ACTIONS(5507), + [anon_sym_const] = ACTIONS(5507), + [anon_sym_constexpr] = ACTIONS(5507), + [anon_sym_volatile] = ACTIONS(5507), + [anon_sym_restrict] = ACTIONS(5507), + [anon_sym___restrict__] = ACTIONS(5507), + [anon_sym__Atomic] = ACTIONS(5507), + [anon_sym__Noreturn] = ACTIONS(5507), + [anon_sym_noreturn] = ACTIONS(5507), + [anon_sym__Nonnull] = ACTIONS(5507), + [anon_sym_mutable] = ACTIONS(5507), + [anon_sym_constinit] = ACTIONS(5507), + [anon_sym_consteval] = ACTIONS(5507), + [anon_sym_alignas] = ACTIONS(5507), + [anon_sym__Alignas] = ACTIONS(5507), + [sym_primitive_type] = ACTIONS(5507), + [anon_sym_enum] = ACTIONS(5507), + [anon_sym_class] = ACTIONS(5507), + [anon_sym_struct] = ACTIONS(5507), + [anon_sym_union] = ACTIONS(5507), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5507), + [anon_sym_decltype] = ACTIONS(5507), + [anon_sym_explicit] = ACTIONS(5507), + [anon_sym_typename] = ACTIONS(5507), + [anon_sym_private] = ACTIONS(5507), + [anon_sym_template] = ACTIONS(5507), + [anon_sym_operator] = ACTIONS(5507), + [anon_sym_friend] = ACTIONS(5507), + [anon_sym_public] = ACTIONS(5507), + [anon_sym_protected] = ACTIONS(5507), + [anon_sym_static_assert] = ACTIONS(5507), }, - [1710] = { + [1775] = { + [sym_identifier] = ACTIONS(5511), + [aux_sym_preproc_def_token1] = ACTIONS(5511), + [aux_sym_preproc_if_token1] = ACTIONS(5511), + [aux_sym_preproc_if_token2] = ACTIONS(5511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5511), + [aux_sym_preproc_else_token1] = ACTIONS(5511), + [aux_sym_preproc_elif_token1] = ACTIONS(5511), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5511), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5511), + [sym_preproc_directive] = ACTIONS(5511), + [anon_sym_LPAREN2] = ACTIONS(5513), + [anon_sym_TILDE] = ACTIONS(5513), + [anon_sym_STAR] = ACTIONS(5513), + [anon_sym_AMP_AMP] = ACTIONS(5513), + [anon_sym_AMP] = ACTIONS(5511), + [anon_sym_SEMI] = ACTIONS(5513), + [anon_sym___extension__] = ACTIONS(5511), + [anon_sym_typedef] = ACTIONS(5511), + [anon_sym_virtual] = ACTIONS(5511), + [anon_sym_extern] = ACTIONS(5511), + [anon_sym___attribute__] = ACTIONS(5511), + [anon_sym___attribute] = ACTIONS(5511), + [anon_sym_using] = ACTIONS(5511), + [anon_sym_COLON_COLON] = ACTIONS(5513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5513), + [anon_sym___declspec] = ACTIONS(5511), + [anon_sym___based] = ACTIONS(5511), + [anon_sym_signed] = ACTIONS(5511), + [anon_sym_unsigned] = ACTIONS(5511), + [anon_sym_long] = ACTIONS(5511), + [anon_sym_short] = ACTIONS(5511), + [anon_sym_LBRACK] = ACTIONS(5511), + [anon_sym_static] = ACTIONS(5511), + [anon_sym_register] = ACTIONS(5511), + [anon_sym_inline] = ACTIONS(5511), + [anon_sym___inline] = ACTIONS(5511), + [anon_sym___inline__] = ACTIONS(5511), + [anon_sym___forceinline] = ACTIONS(5511), + [anon_sym_thread_local] = ACTIONS(5511), + [anon_sym___thread] = ACTIONS(5511), + [anon_sym_const] = ACTIONS(5511), + [anon_sym_constexpr] = ACTIONS(5511), + [anon_sym_volatile] = ACTIONS(5511), + [anon_sym_restrict] = ACTIONS(5511), + [anon_sym___restrict__] = ACTIONS(5511), + [anon_sym__Atomic] = ACTIONS(5511), + [anon_sym__Noreturn] = ACTIONS(5511), + [anon_sym_noreturn] = ACTIONS(5511), + [anon_sym__Nonnull] = ACTIONS(5511), + [anon_sym_mutable] = ACTIONS(5511), + [anon_sym_constinit] = ACTIONS(5511), + [anon_sym_consteval] = ACTIONS(5511), + [anon_sym_alignas] = ACTIONS(5511), + [anon_sym__Alignas] = ACTIONS(5511), + [sym_primitive_type] = ACTIONS(5511), + [anon_sym_enum] = ACTIONS(5511), + [anon_sym_class] = ACTIONS(5511), + [anon_sym_struct] = ACTIONS(5511), + [anon_sym_union] = ACTIONS(5511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5511), + [anon_sym_decltype] = ACTIONS(5511), + [anon_sym_explicit] = ACTIONS(5511), + [anon_sym_typename] = ACTIONS(5511), + [anon_sym_private] = ACTIONS(5511), + [anon_sym_template] = ACTIONS(5511), + [anon_sym_operator] = ACTIONS(5511), + [anon_sym_friend] = ACTIONS(5511), + [anon_sym_public] = ACTIONS(5511), + [anon_sym_protected] = ACTIONS(5511), + [anon_sym_static_assert] = ACTIONS(5511), + }, + [1776] = { [sym_identifier] = ACTIONS(2827), [aux_sym_preproc_def_token1] = ACTIONS(2827), [aux_sym_preproc_if_token1] = ACTIONS(2827), @@ -247815,2767 +254259,1284 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(2827), [anon_sym_SEMI] = ACTIONS(2829), [anon_sym___extension__] = ACTIONS(2827), - [anon_sym_typedef] = ACTIONS(2827), - [anon_sym_virtual] = ACTIONS(2827), - [anon_sym_extern] = ACTIONS(2827), - [anon_sym___attribute__] = ACTIONS(2827), - [anon_sym___attribute] = ACTIONS(2827), - [anon_sym_using] = ACTIONS(2827), - [anon_sym_COLON_COLON] = ACTIONS(2829), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2829), - [anon_sym___declspec] = ACTIONS(2827), - [anon_sym___based] = ACTIONS(2827), - [anon_sym_signed] = ACTIONS(2827), - [anon_sym_unsigned] = ACTIONS(2827), - [anon_sym_long] = ACTIONS(2827), - [anon_sym_short] = ACTIONS(2827), - [anon_sym_LBRACK] = ACTIONS(2827), - [anon_sym_static] = ACTIONS(2827), - [anon_sym_register] = ACTIONS(2827), - [anon_sym_inline] = ACTIONS(2827), - [anon_sym___inline] = ACTIONS(2827), - [anon_sym___inline__] = ACTIONS(2827), - [anon_sym___forceinline] = ACTIONS(2827), - [anon_sym_thread_local] = ACTIONS(2827), - [anon_sym___thread] = ACTIONS(2827), - [anon_sym_const] = ACTIONS(2827), - [anon_sym_constexpr] = ACTIONS(2827), - [anon_sym_volatile] = ACTIONS(2827), - [anon_sym_restrict] = ACTIONS(2827), - [anon_sym___restrict__] = ACTIONS(2827), - [anon_sym__Atomic] = ACTIONS(2827), - [anon_sym__Noreturn] = ACTIONS(2827), - [anon_sym_noreturn] = ACTIONS(2827), - [anon_sym__Nonnull] = ACTIONS(2827), - [anon_sym_mutable] = ACTIONS(2827), - [anon_sym_constinit] = ACTIONS(2827), - [anon_sym_consteval] = ACTIONS(2827), - [anon_sym_alignas] = ACTIONS(2827), - [anon_sym__Alignas] = ACTIONS(2827), - [sym_primitive_type] = ACTIONS(2827), - [anon_sym_enum] = ACTIONS(2827), - [anon_sym_class] = ACTIONS(2827), - [anon_sym_struct] = ACTIONS(2827), - [anon_sym_union] = ACTIONS(2827), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2827), - [anon_sym_decltype] = ACTIONS(2827), - [anon_sym_explicit] = ACTIONS(2827), - [anon_sym_typename] = ACTIONS(2827), - [anon_sym_private] = ACTIONS(2827), - [anon_sym_template] = ACTIONS(2827), - [anon_sym_operator] = ACTIONS(2827), - [anon_sym_friend] = ACTIONS(2827), - [anon_sym_public] = ACTIONS(2827), - [anon_sym_protected] = ACTIONS(2827), - [anon_sym_static_assert] = ACTIONS(2827), - }, - [1711] = { - [sym_identifier] = ACTIONS(5446), - [aux_sym_preproc_def_token1] = ACTIONS(5446), - [aux_sym_preproc_if_token1] = ACTIONS(5446), - [aux_sym_preproc_if_token2] = ACTIONS(5446), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5446), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5446), - [aux_sym_preproc_else_token1] = ACTIONS(5446), - [aux_sym_preproc_elif_token1] = ACTIONS(5446), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5446), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5446), - [sym_preproc_directive] = ACTIONS(5446), - [anon_sym_LPAREN2] = ACTIONS(5448), - [anon_sym_TILDE] = ACTIONS(5448), - [anon_sym_STAR] = ACTIONS(5448), - [anon_sym_AMP_AMP] = ACTIONS(5448), - [anon_sym_AMP] = ACTIONS(5446), - [anon_sym_SEMI] = ACTIONS(5448), - [anon_sym___extension__] = ACTIONS(5446), - [anon_sym_typedef] = ACTIONS(5446), - [anon_sym_virtual] = ACTIONS(5446), - [anon_sym_extern] = ACTIONS(5446), - [anon_sym___attribute__] = ACTIONS(5446), - [anon_sym___attribute] = ACTIONS(5446), - [anon_sym_using] = ACTIONS(5446), - [anon_sym_COLON_COLON] = ACTIONS(5448), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5448), - [anon_sym___declspec] = ACTIONS(5446), - [anon_sym___based] = ACTIONS(5446), - [anon_sym_signed] = ACTIONS(5446), - [anon_sym_unsigned] = ACTIONS(5446), - [anon_sym_long] = ACTIONS(5446), - [anon_sym_short] = ACTIONS(5446), - [anon_sym_LBRACK] = ACTIONS(5446), - [anon_sym_static] = ACTIONS(5446), - [anon_sym_register] = ACTIONS(5446), - [anon_sym_inline] = ACTIONS(5446), - [anon_sym___inline] = ACTIONS(5446), - [anon_sym___inline__] = ACTIONS(5446), - [anon_sym___forceinline] = ACTIONS(5446), - [anon_sym_thread_local] = ACTIONS(5446), - [anon_sym___thread] = ACTIONS(5446), - [anon_sym_const] = ACTIONS(5446), - [anon_sym_constexpr] = ACTIONS(5446), - [anon_sym_volatile] = ACTIONS(5446), - [anon_sym_restrict] = ACTIONS(5446), - [anon_sym___restrict__] = ACTIONS(5446), - [anon_sym__Atomic] = ACTIONS(5446), - [anon_sym__Noreturn] = ACTIONS(5446), - [anon_sym_noreturn] = ACTIONS(5446), - [anon_sym__Nonnull] = ACTIONS(5446), - [anon_sym_mutable] = ACTIONS(5446), - [anon_sym_constinit] = ACTIONS(5446), - [anon_sym_consteval] = ACTIONS(5446), - [anon_sym_alignas] = ACTIONS(5446), - [anon_sym__Alignas] = ACTIONS(5446), - [sym_primitive_type] = ACTIONS(5446), - [anon_sym_enum] = ACTIONS(5446), - [anon_sym_class] = ACTIONS(5446), - [anon_sym_struct] = ACTIONS(5446), - [anon_sym_union] = ACTIONS(5446), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5446), - [anon_sym_decltype] = ACTIONS(5446), - [anon_sym_explicit] = ACTIONS(5446), - [anon_sym_typename] = ACTIONS(5446), - [anon_sym_private] = ACTIONS(5446), - [anon_sym_template] = ACTIONS(5446), - [anon_sym_operator] = ACTIONS(5446), - [anon_sym_friend] = ACTIONS(5446), - [anon_sym_public] = ACTIONS(5446), - [anon_sym_protected] = ACTIONS(5446), - [anon_sym_static_assert] = ACTIONS(5446), - }, - [1712] = { - [sym_identifier] = ACTIONS(2911), - [aux_sym_preproc_def_token1] = ACTIONS(2911), - [aux_sym_preproc_if_token1] = ACTIONS(2911), - [aux_sym_preproc_if_token2] = ACTIONS(2911), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2911), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2911), - [aux_sym_preproc_else_token1] = ACTIONS(2911), - [aux_sym_preproc_elif_token1] = ACTIONS(2911), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2911), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2911), - [sym_preproc_directive] = ACTIONS(2911), - [anon_sym_LPAREN2] = ACTIONS(2913), - [anon_sym_TILDE] = ACTIONS(2913), - [anon_sym_STAR] = ACTIONS(2913), - [anon_sym_AMP_AMP] = ACTIONS(2913), - [anon_sym_AMP] = ACTIONS(2911), - [anon_sym_SEMI] = ACTIONS(2913), - [anon_sym___extension__] = ACTIONS(2911), - [anon_sym_typedef] = ACTIONS(2911), - [anon_sym_virtual] = ACTIONS(2911), - [anon_sym_extern] = ACTIONS(2911), - [anon_sym___attribute__] = ACTIONS(2911), - [anon_sym___attribute] = ACTIONS(2911), - [anon_sym_using] = ACTIONS(2911), - [anon_sym_COLON_COLON] = ACTIONS(2913), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2913), - [anon_sym___declspec] = ACTIONS(2911), - [anon_sym___based] = ACTIONS(2911), - [anon_sym_signed] = ACTIONS(2911), - [anon_sym_unsigned] = ACTIONS(2911), - [anon_sym_long] = ACTIONS(2911), - [anon_sym_short] = ACTIONS(2911), - [anon_sym_LBRACK] = ACTIONS(2911), - [anon_sym_static] = ACTIONS(2911), - [anon_sym_register] = ACTIONS(2911), - [anon_sym_inline] = ACTIONS(2911), - [anon_sym___inline] = ACTIONS(2911), - [anon_sym___inline__] = ACTIONS(2911), - [anon_sym___forceinline] = ACTIONS(2911), - [anon_sym_thread_local] = ACTIONS(2911), - [anon_sym___thread] = ACTIONS(2911), - [anon_sym_const] = ACTIONS(2911), - [anon_sym_constexpr] = ACTIONS(2911), - [anon_sym_volatile] = ACTIONS(2911), - [anon_sym_restrict] = ACTIONS(2911), - [anon_sym___restrict__] = ACTIONS(2911), - [anon_sym__Atomic] = ACTIONS(2911), - [anon_sym__Noreturn] = ACTIONS(2911), - [anon_sym_noreturn] = ACTIONS(2911), - [anon_sym__Nonnull] = ACTIONS(2911), - [anon_sym_mutable] = ACTIONS(2911), - [anon_sym_constinit] = ACTIONS(2911), - [anon_sym_consteval] = ACTIONS(2911), - [anon_sym_alignas] = ACTIONS(2911), - [anon_sym__Alignas] = ACTIONS(2911), - [sym_primitive_type] = ACTIONS(2911), - [anon_sym_enum] = ACTIONS(2911), - [anon_sym_class] = ACTIONS(2911), - [anon_sym_struct] = ACTIONS(2911), - [anon_sym_union] = ACTIONS(2911), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2911), - [anon_sym_decltype] = ACTIONS(2911), - [anon_sym_explicit] = ACTIONS(2911), - [anon_sym_typename] = ACTIONS(2911), - [anon_sym_private] = ACTIONS(2911), - [anon_sym_template] = ACTIONS(2911), - [anon_sym_operator] = ACTIONS(2911), - [anon_sym_friend] = ACTIONS(2911), - [anon_sym_public] = ACTIONS(2911), - [anon_sym_protected] = ACTIONS(2911), - [anon_sym_static_assert] = ACTIONS(2911), - }, - [1713] = { - [sym_identifier] = ACTIONS(5450), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5452), - [anon_sym_COMMA] = ACTIONS(5452), - [anon_sym_RPAREN] = ACTIONS(5452), - [anon_sym_LPAREN2] = ACTIONS(5452), - [anon_sym_DASH] = ACTIONS(5450), - [anon_sym_PLUS] = ACTIONS(5450), - [anon_sym_STAR] = ACTIONS(5452), - [anon_sym_SLASH] = ACTIONS(5450), - [anon_sym_PERCENT] = ACTIONS(5452), - [anon_sym_PIPE_PIPE] = ACTIONS(5452), - [anon_sym_AMP_AMP] = ACTIONS(5452), - [anon_sym_PIPE] = ACTIONS(5450), - [anon_sym_CARET] = ACTIONS(5452), - [anon_sym_AMP] = ACTIONS(5450), - [anon_sym_EQ_EQ] = ACTIONS(5452), - [anon_sym_BANG_EQ] = ACTIONS(5452), - [anon_sym_GT] = ACTIONS(5450), - [anon_sym_GT_EQ] = ACTIONS(5452), - [anon_sym_LT_EQ] = ACTIONS(5450), - [anon_sym_LT] = ACTIONS(5450), - [anon_sym_LT_LT] = ACTIONS(5452), - [anon_sym_GT_GT] = ACTIONS(5452), - [anon_sym_SEMI] = ACTIONS(5452), - [anon_sym___extension__] = ACTIONS(5450), - [anon_sym___attribute__] = ACTIONS(5450), - [anon_sym___attribute] = ACTIONS(5450), - [anon_sym_COLON] = ACTIONS(5450), - [anon_sym_COLON_COLON] = ACTIONS(5454), - [anon_sym___based] = ACTIONS(5450), - [anon_sym_LBRACE] = ACTIONS(5452), - [anon_sym_RBRACE] = ACTIONS(5452), - [anon_sym_signed] = ACTIONS(5450), - [anon_sym_unsigned] = ACTIONS(5450), - [anon_sym_long] = ACTIONS(5450), - [anon_sym_short] = ACTIONS(5450), - [anon_sym_LBRACK] = ACTIONS(5452), - [anon_sym_RBRACK] = ACTIONS(5452), - [anon_sym_const] = ACTIONS(5450), - [anon_sym_constexpr] = ACTIONS(5450), - [anon_sym_volatile] = ACTIONS(5450), - [anon_sym_restrict] = ACTIONS(5450), - [anon_sym___restrict__] = ACTIONS(5450), - [anon_sym__Atomic] = ACTIONS(5450), - [anon_sym__Noreturn] = ACTIONS(5450), - [anon_sym_noreturn] = ACTIONS(5450), - [anon_sym__Nonnull] = ACTIONS(5450), - [anon_sym_mutable] = ACTIONS(5450), - [anon_sym_constinit] = ACTIONS(5450), - [anon_sym_consteval] = ACTIONS(5450), - [anon_sym_alignas] = ACTIONS(5450), - [anon_sym__Alignas] = ACTIONS(5450), - [sym_primitive_type] = ACTIONS(5450), - [anon_sym_QMARK] = ACTIONS(5452), - [anon_sym_LT_EQ_GT] = ACTIONS(5452), - [anon_sym_or] = ACTIONS(5450), - [anon_sym_and] = ACTIONS(5450), - [anon_sym_bitor] = ACTIONS(5450), - [anon_sym_xor] = ACTIONS(5450), - [anon_sym_bitand] = ACTIONS(5450), - [anon_sym_not_eq] = ACTIONS(5450), - [anon_sym_DASH_DASH] = ACTIONS(5452), - [anon_sym_PLUS_PLUS] = ACTIONS(5452), - [anon_sym_DOT] = ACTIONS(5450), - [anon_sym_DOT_STAR] = ACTIONS(5452), - [anon_sym_DASH_GT] = ACTIONS(5452), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5450), - [anon_sym_decltype] = ACTIONS(5450), - [anon_sym_final] = ACTIONS(5450), - [anon_sym_override] = ACTIONS(5450), - [anon_sym_requires] = ACTIONS(5450), - }, - [1714] = { - [sym_identifier] = ACTIONS(2911), - [aux_sym_preproc_def_token1] = ACTIONS(2911), - [aux_sym_preproc_if_token1] = ACTIONS(2911), - [aux_sym_preproc_if_token2] = ACTIONS(2911), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2911), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2911), - [aux_sym_preproc_else_token1] = ACTIONS(2911), - [aux_sym_preproc_elif_token1] = ACTIONS(2911), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2911), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2911), - [sym_preproc_directive] = ACTIONS(2911), - [anon_sym_LPAREN2] = ACTIONS(2913), - [anon_sym_TILDE] = ACTIONS(2913), - [anon_sym_STAR] = ACTIONS(2913), - [anon_sym_AMP_AMP] = ACTIONS(2913), - [anon_sym_AMP] = ACTIONS(2911), - [anon_sym_SEMI] = ACTIONS(2913), - [anon_sym___extension__] = ACTIONS(2911), - [anon_sym_typedef] = ACTIONS(2911), - [anon_sym_virtual] = ACTIONS(2911), - [anon_sym_extern] = ACTIONS(2911), - [anon_sym___attribute__] = ACTIONS(2911), - [anon_sym___attribute] = ACTIONS(2911), - [anon_sym_using] = ACTIONS(2911), - [anon_sym_COLON_COLON] = ACTIONS(2913), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2913), - [anon_sym___declspec] = ACTIONS(2911), - [anon_sym___based] = ACTIONS(2911), - [anon_sym_signed] = ACTIONS(2911), - [anon_sym_unsigned] = ACTIONS(2911), - [anon_sym_long] = ACTIONS(2911), - [anon_sym_short] = ACTIONS(2911), - [anon_sym_LBRACK] = ACTIONS(2911), - [anon_sym_static] = ACTIONS(2911), - [anon_sym_register] = ACTIONS(2911), - [anon_sym_inline] = ACTIONS(2911), - [anon_sym___inline] = ACTIONS(2911), - [anon_sym___inline__] = ACTIONS(2911), - [anon_sym___forceinline] = ACTIONS(2911), - [anon_sym_thread_local] = ACTIONS(2911), - [anon_sym___thread] = ACTIONS(2911), - [anon_sym_const] = ACTIONS(2911), - [anon_sym_constexpr] = ACTIONS(2911), - [anon_sym_volatile] = ACTIONS(2911), - [anon_sym_restrict] = ACTIONS(2911), - [anon_sym___restrict__] = ACTIONS(2911), - [anon_sym__Atomic] = ACTIONS(2911), - [anon_sym__Noreturn] = ACTIONS(2911), - [anon_sym_noreturn] = ACTIONS(2911), - [anon_sym__Nonnull] = ACTIONS(2911), - [anon_sym_mutable] = ACTIONS(2911), - [anon_sym_constinit] = ACTIONS(2911), - [anon_sym_consteval] = ACTIONS(2911), - [anon_sym_alignas] = ACTIONS(2911), - [anon_sym__Alignas] = ACTIONS(2911), - [sym_primitive_type] = ACTIONS(2911), - [anon_sym_enum] = ACTIONS(2911), - [anon_sym_class] = ACTIONS(2911), - [anon_sym_struct] = ACTIONS(2911), - [anon_sym_union] = ACTIONS(2911), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2911), - [anon_sym_decltype] = ACTIONS(2911), - [anon_sym_explicit] = ACTIONS(2911), - [anon_sym_typename] = ACTIONS(2911), - [anon_sym_private] = ACTIONS(2911), - [anon_sym_template] = ACTIONS(2911), - [anon_sym_operator] = ACTIONS(2911), - [anon_sym_friend] = ACTIONS(2911), - [anon_sym_public] = ACTIONS(2911), - [anon_sym_protected] = ACTIONS(2911), - [anon_sym_static_assert] = ACTIONS(2911), - }, - [1715] = { - [sym_identifier] = ACTIONS(2915), - [aux_sym_preproc_def_token1] = ACTIONS(2915), - [aux_sym_preproc_if_token1] = ACTIONS(2915), - [aux_sym_preproc_if_token2] = ACTIONS(2915), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2915), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2915), - [aux_sym_preproc_else_token1] = ACTIONS(2915), - [aux_sym_preproc_elif_token1] = ACTIONS(2915), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2915), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2915), - [sym_preproc_directive] = ACTIONS(2915), - [anon_sym_LPAREN2] = ACTIONS(2917), - [anon_sym_TILDE] = ACTIONS(2917), - [anon_sym_STAR] = ACTIONS(2917), - [anon_sym_AMP_AMP] = ACTIONS(2917), - [anon_sym_AMP] = ACTIONS(2915), - [anon_sym_SEMI] = ACTIONS(2917), - [anon_sym___extension__] = ACTIONS(2915), - [anon_sym_typedef] = ACTIONS(2915), - [anon_sym_virtual] = ACTIONS(2915), - [anon_sym_extern] = ACTIONS(2915), - [anon_sym___attribute__] = ACTIONS(2915), - [anon_sym___attribute] = ACTIONS(2915), - [anon_sym_using] = ACTIONS(2915), - [anon_sym_COLON_COLON] = ACTIONS(2917), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2917), - [anon_sym___declspec] = ACTIONS(2915), - [anon_sym___based] = ACTIONS(2915), - [anon_sym_signed] = ACTIONS(2915), - [anon_sym_unsigned] = ACTIONS(2915), - [anon_sym_long] = ACTIONS(2915), - [anon_sym_short] = ACTIONS(2915), - [anon_sym_LBRACK] = ACTIONS(2915), - [anon_sym_static] = ACTIONS(2915), - [anon_sym_register] = ACTIONS(2915), - [anon_sym_inline] = ACTIONS(2915), - [anon_sym___inline] = ACTIONS(2915), - [anon_sym___inline__] = ACTIONS(2915), - [anon_sym___forceinline] = ACTIONS(2915), - [anon_sym_thread_local] = ACTIONS(2915), - [anon_sym___thread] = ACTIONS(2915), - [anon_sym_const] = ACTIONS(2915), - [anon_sym_constexpr] = ACTIONS(2915), - [anon_sym_volatile] = ACTIONS(2915), - [anon_sym_restrict] = ACTIONS(2915), - [anon_sym___restrict__] = ACTIONS(2915), - [anon_sym__Atomic] = ACTIONS(2915), - [anon_sym__Noreturn] = ACTIONS(2915), - [anon_sym_noreturn] = ACTIONS(2915), - [anon_sym__Nonnull] = ACTIONS(2915), - [anon_sym_mutable] = ACTIONS(2915), - [anon_sym_constinit] = ACTIONS(2915), - [anon_sym_consteval] = ACTIONS(2915), - [anon_sym_alignas] = ACTIONS(2915), - [anon_sym__Alignas] = ACTIONS(2915), - [sym_primitive_type] = ACTIONS(2915), - [anon_sym_enum] = ACTIONS(2915), - [anon_sym_class] = ACTIONS(2915), - [anon_sym_struct] = ACTIONS(2915), - [anon_sym_union] = ACTIONS(2915), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2915), - [anon_sym_decltype] = ACTIONS(2915), - [anon_sym_explicit] = ACTIONS(2915), - [anon_sym_typename] = ACTIONS(2915), - [anon_sym_private] = ACTIONS(2915), - [anon_sym_template] = ACTIONS(2915), - [anon_sym_operator] = ACTIONS(2915), - [anon_sym_friend] = ACTIONS(2915), - [anon_sym_public] = ACTIONS(2915), - [anon_sym_protected] = ACTIONS(2915), - [anon_sym_static_assert] = ACTIONS(2915), - }, - [1716] = { - [sym_identifier] = ACTIONS(3035), - [aux_sym_preproc_def_token1] = ACTIONS(3035), - [aux_sym_preproc_if_token1] = ACTIONS(3035), - [aux_sym_preproc_if_token2] = ACTIONS(3035), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3035), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3035), - [aux_sym_preproc_else_token1] = ACTIONS(3035), - [aux_sym_preproc_elif_token1] = ACTIONS(3035), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3035), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3035), - [sym_preproc_directive] = ACTIONS(3035), - [anon_sym_LPAREN2] = ACTIONS(3037), - [anon_sym_TILDE] = ACTIONS(3037), - [anon_sym_STAR] = ACTIONS(3037), - [anon_sym_AMP_AMP] = ACTIONS(3037), - [anon_sym_AMP] = ACTIONS(3035), - [anon_sym_SEMI] = ACTIONS(3037), - [anon_sym___extension__] = ACTIONS(3035), - [anon_sym_typedef] = ACTIONS(3035), - [anon_sym_virtual] = ACTIONS(3035), - [anon_sym_extern] = ACTIONS(3035), - [anon_sym___attribute__] = ACTIONS(3035), - [anon_sym___attribute] = ACTIONS(3035), - [anon_sym_using] = ACTIONS(3035), - [anon_sym_COLON_COLON] = ACTIONS(3037), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3037), - [anon_sym___declspec] = ACTIONS(3035), - [anon_sym___based] = ACTIONS(3035), - [anon_sym_signed] = ACTIONS(3035), - [anon_sym_unsigned] = ACTIONS(3035), - [anon_sym_long] = ACTIONS(3035), - [anon_sym_short] = ACTIONS(3035), - [anon_sym_LBRACK] = ACTIONS(3035), - [anon_sym_static] = ACTIONS(3035), - [anon_sym_register] = ACTIONS(3035), - [anon_sym_inline] = ACTIONS(3035), - [anon_sym___inline] = ACTIONS(3035), - [anon_sym___inline__] = ACTIONS(3035), - [anon_sym___forceinline] = ACTIONS(3035), - [anon_sym_thread_local] = ACTIONS(3035), - [anon_sym___thread] = ACTIONS(3035), - [anon_sym_const] = ACTIONS(3035), - [anon_sym_constexpr] = ACTIONS(3035), - [anon_sym_volatile] = ACTIONS(3035), - [anon_sym_restrict] = ACTIONS(3035), - [anon_sym___restrict__] = ACTIONS(3035), - [anon_sym__Atomic] = ACTIONS(3035), - [anon_sym__Noreturn] = ACTIONS(3035), - [anon_sym_noreturn] = ACTIONS(3035), - [anon_sym__Nonnull] = ACTIONS(3035), - [anon_sym_mutable] = ACTIONS(3035), - [anon_sym_constinit] = ACTIONS(3035), - [anon_sym_consteval] = ACTIONS(3035), - [anon_sym_alignas] = ACTIONS(3035), - [anon_sym__Alignas] = ACTIONS(3035), - [sym_primitive_type] = ACTIONS(3035), - [anon_sym_enum] = ACTIONS(3035), - [anon_sym_class] = ACTIONS(3035), - [anon_sym_struct] = ACTIONS(3035), - [anon_sym_union] = ACTIONS(3035), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3035), - [anon_sym_decltype] = ACTIONS(3035), - [anon_sym_explicit] = ACTIONS(3035), - [anon_sym_typename] = ACTIONS(3035), - [anon_sym_private] = ACTIONS(3035), - [anon_sym_template] = ACTIONS(3035), - [anon_sym_operator] = ACTIONS(3035), - [anon_sym_friend] = ACTIONS(3035), - [anon_sym_public] = ACTIONS(3035), - [anon_sym_protected] = ACTIONS(3035), - [anon_sym_static_assert] = ACTIONS(3035), - }, - [1717] = { - [sym_identifier] = ACTIONS(3039), - [aux_sym_preproc_def_token1] = ACTIONS(3039), - [aux_sym_preproc_if_token1] = ACTIONS(3039), - [aux_sym_preproc_if_token2] = ACTIONS(3039), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3039), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3039), - [aux_sym_preproc_else_token1] = ACTIONS(3039), - [aux_sym_preproc_elif_token1] = ACTIONS(3039), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3039), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3039), - [sym_preproc_directive] = ACTIONS(3039), - [anon_sym_LPAREN2] = ACTIONS(3041), - [anon_sym_TILDE] = ACTIONS(3041), - [anon_sym_STAR] = ACTIONS(3041), - [anon_sym_AMP_AMP] = ACTIONS(3041), - [anon_sym_AMP] = ACTIONS(3039), - [anon_sym_SEMI] = ACTIONS(3041), - [anon_sym___extension__] = ACTIONS(3039), - [anon_sym_typedef] = ACTIONS(3039), - [anon_sym_virtual] = ACTIONS(3039), - [anon_sym_extern] = ACTIONS(3039), - [anon_sym___attribute__] = ACTIONS(3039), - [anon_sym___attribute] = ACTIONS(3039), - [anon_sym_using] = ACTIONS(3039), - [anon_sym_COLON_COLON] = ACTIONS(3041), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3041), - [anon_sym___declspec] = ACTIONS(3039), - [anon_sym___based] = ACTIONS(3039), - [anon_sym_signed] = ACTIONS(3039), - [anon_sym_unsigned] = ACTIONS(3039), - [anon_sym_long] = ACTIONS(3039), - [anon_sym_short] = ACTIONS(3039), - [anon_sym_LBRACK] = ACTIONS(3039), - [anon_sym_static] = ACTIONS(3039), - [anon_sym_register] = ACTIONS(3039), - [anon_sym_inline] = ACTIONS(3039), - [anon_sym___inline] = ACTIONS(3039), - [anon_sym___inline__] = ACTIONS(3039), - [anon_sym___forceinline] = ACTIONS(3039), - [anon_sym_thread_local] = ACTIONS(3039), - [anon_sym___thread] = ACTIONS(3039), - [anon_sym_const] = ACTIONS(3039), - [anon_sym_constexpr] = ACTIONS(3039), - [anon_sym_volatile] = ACTIONS(3039), - [anon_sym_restrict] = ACTIONS(3039), - [anon_sym___restrict__] = ACTIONS(3039), - [anon_sym__Atomic] = ACTIONS(3039), - [anon_sym__Noreturn] = ACTIONS(3039), - [anon_sym_noreturn] = ACTIONS(3039), - [anon_sym__Nonnull] = ACTIONS(3039), - [anon_sym_mutable] = ACTIONS(3039), - [anon_sym_constinit] = ACTIONS(3039), - [anon_sym_consteval] = ACTIONS(3039), - [anon_sym_alignas] = ACTIONS(3039), - [anon_sym__Alignas] = ACTIONS(3039), - [sym_primitive_type] = ACTIONS(3039), - [anon_sym_enum] = ACTIONS(3039), - [anon_sym_class] = ACTIONS(3039), - [anon_sym_struct] = ACTIONS(3039), - [anon_sym_union] = ACTIONS(3039), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3039), - [anon_sym_decltype] = ACTIONS(3039), - [anon_sym_explicit] = ACTIONS(3039), - [anon_sym_typename] = ACTIONS(3039), - [anon_sym_private] = ACTIONS(3039), - [anon_sym_template] = ACTIONS(3039), - [anon_sym_operator] = ACTIONS(3039), - [anon_sym_friend] = ACTIONS(3039), - [anon_sym_public] = ACTIONS(3039), - [anon_sym_protected] = ACTIONS(3039), - [anon_sym_static_assert] = ACTIONS(3039), - }, - [1718] = { - [sym_identifier] = ACTIONS(2643), - [aux_sym_preproc_def_token1] = ACTIONS(2643), - [aux_sym_preproc_if_token1] = ACTIONS(2643), - [aux_sym_preproc_if_token2] = ACTIONS(2643), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2643), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2643), - [aux_sym_preproc_else_token1] = ACTIONS(2643), - [aux_sym_preproc_elif_token1] = ACTIONS(2643), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2643), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2643), - [sym_preproc_directive] = ACTIONS(2643), - [anon_sym_LPAREN2] = ACTIONS(2645), - [anon_sym_TILDE] = ACTIONS(2645), - [anon_sym_STAR] = ACTIONS(2645), - [anon_sym_AMP_AMP] = ACTIONS(2645), - [anon_sym_AMP] = ACTIONS(2643), - [anon_sym_SEMI] = ACTIONS(2645), - [anon_sym___extension__] = ACTIONS(2643), - [anon_sym_typedef] = ACTIONS(2643), - [anon_sym_virtual] = ACTIONS(2643), - [anon_sym_extern] = ACTIONS(2643), - [anon_sym___attribute__] = ACTIONS(2643), - [anon_sym___attribute] = ACTIONS(2643), - [anon_sym_using] = ACTIONS(2643), - [anon_sym_COLON_COLON] = ACTIONS(2645), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2645), - [anon_sym___declspec] = ACTIONS(2643), - [anon_sym___based] = ACTIONS(2643), - [anon_sym_signed] = ACTIONS(2643), - [anon_sym_unsigned] = ACTIONS(2643), - [anon_sym_long] = ACTIONS(2643), - [anon_sym_short] = ACTIONS(2643), - [anon_sym_LBRACK] = ACTIONS(2643), - [anon_sym_static] = ACTIONS(2643), - [anon_sym_register] = ACTIONS(2643), - [anon_sym_inline] = ACTIONS(2643), - [anon_sym___inline] = ACTIONS(2643), - [anon_sym___inline__] = ACTIONS(2643), - [anon_sym___forceinline] = ACTIONS(2643), - [anon_sym_thread_local] = ACTIONS(2643), - [anon_sym___thread] = ACTIONS(2643), - [anon_sym_const] = ACTIONS(2643), - [anon_sym_constexpr] = ACTIONS(2643), - [anon_sym_volatile] = ACTIONS(2643), - [anon_sym_restrict] = ACTIONS(2643), - [anon_sym___restrict__] = ACTIONS(2643), - [anon_sym__Atomic] = ACTIONS(2643), - [anon_sym__Noreturn] = ACTIONS(2643), - [anon_sym_noreturn] = ACTIONS(2643), - [anon_sym__Nonnull] = ACTIONS(2643), - [anon_sym_mutable] = ACTIONS(2643), - [anon_sym_constinit] = ACTIONS(2643), - [anon_sym_consteval] = ACTIONS(2643), - [anon_sym_alignas] = ACTIONS(2643), - [anon_sym__Alignas] = ACTIONS(2643), - [sym_primitive_type] = ACTIONS(2643), - [anon_sym_enum] = ACTIONS(2643), - [anon_sym_class] = ACTIONS(2643), - [anon_sym_struct] = ACTIONS(2643), - [anon_sym_union] = ACTIONS(2643), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2643), - [anon_sym_decltype] = ACTIONS(2643), - [anon_sym_explicit] = ACTIONS(2643), - [anon_sym_typename] = ACTIONS(2643), - [anon_sym_private] = ACTIONS(2643), - [anon_sym_template] = ACTIONS(2643), - [anon_sym_operator] = ACTIONS(2643), - [anon_sym_friend] = ACTIONS(2643), - [anon_sym_public] = ACTIONS(2643), - [anon_sym_protected] = ACTIONS(2643), - [anon_sym_static_assert] = ACTIONS(2643), - }, - [1719] = { - [sym_identifier] = ACTIONS(5456), - [aux_sym_preproc_def_token1] = ACTIONS(5456), - [aux_sym_preproc_if_token1] = ACTIONS(5456), - [aux_sym_preproc_if_token2] = ACTIONS(5456), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5456), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5456), - [aux_sym_preproc_else_token1] = ACTIONS(5456), - [aux_sym_preproc_elif_token1] = ACTIONS(5456), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5456), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5456), - [sym_preproc_directive] = ACTIONS(5456), - [anon_sym_LPAREN2] = ACTIONS(5458), - [anon_sym_TILDE] = ACTIONS(5458), - [anon_sym_STAR] = ACTIONS(5458), - [anon_sym_AMP_AMP] = ACTIONS(5458), - [anon_sym_AMP] = ACTIONS(5456), - [anon_sym_SEMI] = ACTIONS(5458), - [anon_sym___extension__] = ACTIONS(5456), - [anon_sym_typedef] = ACTIONS(5456), - [anon_sym_virtual] = ACTIONS(5456), - [anon_sym_extern] = ACTIONS(5456), - [anon_sym___attribute__] = ACTIONS(5456), - [anon_sym___attribute] = ACTIONS(5456), - [anon_sym_using] = ACTIONS(5456), - [anon_sym_COLON_COLON] = ACTIONS(5458), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5458), - [anon_sym___declspec] = ACTIONS(5456), - [anon_sym___based] = ACTIONS(5456), - [anon_sym_signed] = ACTIONS(5456), - [anon_sym_unsigned] = ACTIONS(5456), - [anon_sym_long] = ACTIONS(5456), - [anon_sym_short] = ACTIONS(5456), - [anon_sym_LBRACK] = ACTIONS(5456), - [anon_sym_static] = ACTIONS(5456), - [anon_sym_register] = ACTIONS(5456), - [anon_sym_inline] = ACTIONS(5456), - [anon_sym___inline] = ACTIONS(5456), - [anon_sym___inline__] = ACTIONS(5456), - [anon_sym___forceinline] = ACTIONS(5456), - [anon_sym_thread_local] = ACTIONS(5456), - [anon_sym___thread] = ACTIONS(5456), - [anon_sym_const] = ACTIONS(5456), - [anon_sym_constexpr] = ACTIONS(5456), - [anon_sym_volatile] = ACTIONS(5456), - [anon_sym_restrict] = ACTIONS(5456), - [anon_sym___restrict__] = ACTIONS(5456), - [anon_sym__Atomic] = ACTIONS(5456), - [anon_sym__Noreturn] = ACTIONS(5456), - [anon_sym_noreturn] = ACTIONS(5456), - [anon_sym__Nonnull] = ACTIONS(5456), - [anon_sym_mutable] = ACTIONS(5456), - [anon_sym_constinit] = ACTIONS(5456), - [anon_sym_consteval] = ACTIONS(5456), - [anon_sym_alignas] = ACTIONS(5456), - [anon_sym__Alignas] = ACTIONS(5456), - [sym_primitive_type] = ACTIONS(5456), - [anon_sym_enum] = ACTIONS(5456), - [anon_sym_class] = ACTIONS(5456), - [anon_sym_struct] = ACTIONS(5456), - [anon_sym_union] = ACTIONS(5456), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5456), - [anon_sym_decltype] = ACTIONS(5456), - [anon_sym_explicit] = ACTIONS(5456), - [anon_sym_typename] = ACTIONS(5456), - [anon_sym_private] = ACTIONS(5456), - [anon_sym_template] = ACTIONS(5456), - [anon_sym_operator] = ACTIONS(5456), - [anon_sym_friend] = ACTIONS(5456), - [anon_sym_public] = ACTIONS(5456), - [anon_sym_protected] = ACTIONS(5456), - [anon_sym_static_assert] = ACTIONS(5456), - }, - [1720] = { - [sym__declaration_modifiers] = STATE(3282), - [sym_attribute_specifier] = STATE(3282), - [sym_attribute_declaration] = STATE(3282), - [sym_ms_declspec_modifier] = STATE(3282), - [sym_ms_based_modifier] = STATE(8682), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6232), - [sym_array_declarator] = STATE(5998), - [sym_storage_class_specifier] = STATE(3282), - [sym_type_qualifier] = STATE(3282), - [sym_alignas_qualifier] = STATE(2975), - [sym_decltype] = STATE(8601), - [sym_explicit_function_specifier] = STATE(3282), - [sym_operator_cast] = STATE(6835), - [sym__constructor_specifiers] = STATE(3282), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(8601), - [sym_template_function] = STATE(5998), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5591), - [sym_qualified_identifier] = STATE(5998), - [sym_qualified_operator_cast_identifier] = STATE(6835), - [sym_operator_name] = STATE(5998), - [aux_sym_operator_cast_definition_repeat1] = STATE(3282), - [sym_identifier] = ACTIONS(5460), - [anon_sym_LPAREN2] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2979), - [anon_sym_STAR] = ACTIONS(2981), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2983), - [anon_sym___extension__] = ACTIONS(5462), - [anon_sym_virtual] = ACTIONS(5464), - [anon_sym_extern] = ACTIONS(5466), - [anon_sym___attribute__] = ACTIONS(5468), - [anon_sym___attribute] = ACTIONS(5468), - [anon_sym_COLON_COLON] = ACTIONS(5470), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5472), - [anon_sym___declspec] = ACTIONS(5474), - [anon_sym___based] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(2995), - [anon_sym_static] = ACTIONS(5466), - [anon_sym_register] = ACTIONS(5466), - [anon_sym_inline] = ACTIONS(5466), - [anon_sym___inline] = ACTIONS(5466), - [anon_sym___inline__] = ACTIONS(5466), - [anon_sym___forceinline] = ACTIONS(5466), - [anon_sym_thread_local] = ACTIONS(5466), - [anon_sym___thread] = ACTIONS(5466), - [anon_sym_const] = ACTIONS(5462), - [anon_sym_constexpr] = ACTIONS(5462), - [anon_sym_volatile] = ACTIONS(5462), - [anon_sym_restrict] = ACTIONS(5462), - [anon_sym___restrict__] = ACTIONS(5462), - [anon_sym__Atomic] = ACTIONS(5462), - [anon_sym__Noreturn] = ACTIONS(5462), - [anon_sym_noreturn] = ACTIONS(5462), - [anon_sym__Nonnull] = ACTIONS(5462), - [anon_sym_mutable] = ACTIONS(5462), - [anon_sym_constinit] = ACTIONS(5462), - [anon_sym_consteval] = ACTIONS(5462), - [anon_sym_alignas] = ACTIONS(5476), - [anon_sym__Alignas] = ACTIONS(5476), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_operator] = ACTIONS(141), - }, - [1721] = { - [sym_identifier] = ACTIONS(5478), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5480), - [anon_sym_COMMA] = ACTIONS(5480), - [anon_sym_RPAREN] = ACTIONS(5480), - [aux_sym_preproc_if_token2] = ACTIONS(5480), - [aux_sym_preproc_else_token1] = ACTIONS(5480), - [aux_sym_preproc_elif_token1] = ACTIONS(5478), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5480), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5480), - [anon_sym_LPAREN2] = ACTIONS(5480), - [anon_sym_DASH] = ACTIONS(5478), - [anon_sym_PLUS] = ACTIONS(5478), - [anon_sym_STAR] = ACTIONS(5478), - [anon_sym_SLASH] = ACTIONS(5478), - [anon_sym_PERCENT] = ACTIONS(5478), - [anon_sym_PIPE_PIPE] = ACTIONS(5480), - [anon_sym_AMP_AMP] = ACTIONS(5480), - [anon_sym_PIPE] = ACTIONS(5478), - [anon_sym_CARET] = ACTIONS(5478), - [anon_sym_AMP] = ACTIONS(5478), - [anon_sym_EQ_EQ] = ACTIONS(5480), - [anon_sym_BANG_EQ] = ACTIONS(5480), - [anon_sym_GT] = ACTIONS(5478), - [anon_sym_GT_EQ] = ACTIONS(5480), - [anon_sym_LT_EQ] = ACTIONS(5478), - [anon_sym_LT] = ACTIONS(5478), - [anon_sym_LT_LT] = ACTIONS(5478), - [anon_sym_GT_GT] = ACTIONS(5478), - [anon_sym_SEMI] = ACTIONS(5480), - [anon_sym_COLON] = ACTIONS(5480), - [anon_sym_RBRACE] = ACTIONS(5480), - [anon_sym_LBRACK] = ACTIONS(5480), - [anon_sym_RBRACK] = ACTIONS(5480), - [anon_sym_EQ] = ACTIONS(5478), - [anon_sym_QMARK] = ACTIONS(5480), - [anon_sym_STAR_EQ] = ACTIONS(5480), - [anon_sym_SLASH_EQ] = ACTIONS(5480), - [anon_sym_PERCENT_EQ] = ACTIONS(5480), - [anon_sym_PLUS_EQ] = ACTIONS(5480), - [anon_sym_DASH_EQ] = ACTIONS(5480), - [anon_sym_LT_LT_EQ] = ACTIONS(5480), - [anon_sym_GT_GT_EQ] = ACTIONS(5480), - [anon_sym_AMP_EQ] = ACTIONS(5480), - [anon_sym_CARET_EQ] = ACTIONS(5480), - [anon_sym_PIPE_EQ] = ACTIONS(5480), - [anon_sym_and_eq] = ACTIONS(5478), - [anon_sym_or_eq] = ACTIONS(5478), - [anon_sym_xor_eq] = ACTIONS(5478), - [anon_sym_LT_EQ_GT] = ACTIONS(5480), - [anon_sym_or] = ACTIONS(5478), - [anon_sym_and] = ACTIONS(5478), - [anon_sym_bitor] = ACTIONS(5478), - [anon_sym_xor] = ACTIONS(5478), - [anon_sym_bitand] = ACTIONS(5478), - [anon_sym_not_eq] = ACTIONS(5478), - [anon_sym_DASH_DASH] = ACTIONS(5480), - [anon_sym_PLUS_PLUS] = ACTIONS(5480), - [anon_sym_DOT] = ACTIONS(5478), - [anon_sym_DOT_STAR] = ACTIONS(5480), - [anon_sym_DASH_GT] = ACTIONS(5480), - [anon_sym_L_DQUOTE] = ACTIONS(5480), - [anon_sym_u_DQUOTE] = ACTIONS(5480), - [anon_sym_U_DQUOTE] = ACTIONS(5480), - [anon_sym_u8_DQUOTE] = ACTIONS(5480), - [anon_sym_DQUOTE] = ACTIONS(5480), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5480), - [anon_sym_LR_DQUOTE] = ACTIONS(5480), - [anon_sym_uR_DQUOTE] = ACTIONS(5480), - [anon_sym_UR_DQUOTE] = ACTIONS(5480), - [anon_sym_u8R_DQUOTE] = ACTIONS(5480), - [sym_literal_suffix] = ACTIONS(5478), - }, - [1722] = { - [sym_identifier] = ACTIONS(5482), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5484), - [anon_sym_COMMA] = ACTIONS(5484), - [anon_sym_RPAREN] = ACTIONS(5484), - [aux_sym_preproc_if_token2] = ACTIONS(5484), - [aux_sym_preproc_else_token1] = ACTIONS(5484), - [aux_sym_preproc_elif_token1] = ACTIONS(5482), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5484), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5484), - [anon_sym_LPAREN2] = ACTIONS(5484), - [anon_sym_DASH] = ACTIONS(5482), - [anon_sym_PLUS] = ACTIONS(5482), - [anon_sym_STAR] = ACTIONS(5482), - [anon_sym_SLASH] = ACTIONS(5482), - [anon_sym_PERCENT] = ACTIONS(5482), - [anon_sym_PIPE_PIPE] = ACTIONS(5484), - [anon_sym_AMP_AMP] = ACTIONS(5484), - [anon_sym_PIPE] = ACTIONS(5482), - [anon_sym_CARET] = ACTIONS(5482), - [anon_sym_AMP] = ACTIONS(5482), - [anon_sym_EQ_EQ] = ACTIONS(5484), - [anon_sym_BANG_EQ] = ACTIONS(5484), - [anon_sym_GT] = ACTIONS(5482), - [anon_sym_GT_EQ] = ACTIONS(5484), - [anon_sym_LT_EQ] = ACTIONS(5482), - [anon_sym_LT] = ACTIONS(5482), - [anon_sym_LT_LT] = ACTIONS(5482), - [anon_sym_GT_GT] = ACTIONS(5482), - [anon_sym_SEMI] = ACTIONS(5484), - [anon_sym_COLON] = ACTIONS(5484), - [anon_sym_RBRACE] = ACTIONS(5484), - [anon_sym_LBRACK] = ACTIONS(5484), - [anon_sym_RBRACK] = ACTIONS(5484), - [anon_sym_EQ] = ACTIONS(5482), - [anon_sym_QMARK] = ACTIONS(5484), - [anon_sym_STAR_EQ] = ACTIONS(5484), - [anon_sym_SLASH_EQ] = ACTIONS(5484), - [anon_sym_PERCENT_EQ] = ACTIONS(5484), - [anon_sym_PLUS_EQ] = ACTIONS(5484), - [anon_sym_DASH_EQ] = ACTIONS(5484), - [anon_sym_LT_LT_EQ] = ACTIONS(5484), - [anon_sym_GT_GT_EQ] = ACTIONS(5484), - [anon_sym_AMP_EQ] = ACTIONS(5484), - [anon_sym_CARET_EQ] = ACTIONS(5484), - [anon_sym_PIPE_EQ] = ACTIONS(5484), - [anon_sym_and_eq] = ACTIONS(5482), - [anon_sym_or_eq] = ACTIONS(5482), - [anon_sym_xor_eq] = ACTIONS(5482), - [anon_sym_LT_EQ_GT] = ACTIONS(5484), - [anon_sym_or] = ACTIONS(5482), - [anon_sym_and] = ACTIONS(5482), - [anon_sym_bitor] = ACTIONS(5482), - [anon_sym_xor] = ACTIONS(5482), - [anon_sym_bitand] = ACTIONS(5482), - [anon_sym_not_eq] = ACTIONS(5482), - [anon_sym_DASH_DASH] = ACTIONS(5484), - [anon_sym_PLUS_PLUS] = ACTIONS(5484), - [anon_sym_DOT] = ACTIONS(5482), - [anon_sym_DOT_STAR] = ACTIONS(5484), - [anon_sym_DASH_GT] = ACTIONS(5484), - [anon_sym_L_DQUOTE] = ACTIONS(5484), - [anon_sym_u_DQUOTE] = ACTIONS(5484), - [anon_sym_U_DQUOTE] = ACTIONS(5484), - [anon_sym_u8_DQUOTE] = ACTIONS(5484), - [anon_sym_DQUOTE] = ACTIONS(5484), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5484), - [anon_sym_LR_DQUOTE] = ACTIONS(5484), - [anon_sym_uR_DQUOTE] = ACTIONS(5484), - [anon_sym_UR_DQUOTE] = ACTIONS(5484), - [anon_sym_u8R_DQUOTE] = ACTIONS(5484), - [sym_literal_suffix] = ACTIONS(5482), - }, - [1723] = { - [sym_template_argument_list] = STATE(1856), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4965), - [anon_sym_COMMA] = ACTIONS(4965), - [anon_sym_RPAREN] = ACTIONS(4967), - [anon_sym_LPAREN2] = ACTIONS(4967), - [anon_sym_DASH] = ACTIONS(4972), - [anon_sym_PLUS] = ACTIONS(4972), - [anon_sym_STAR] = ACTIONS(4974), - [anon_sym_SLASH] = ACTIONS(4972), - [anon_sym_PERCENT] = ACTIONS(4972), - [anon_sym_PIPE_PIPE] = ACTIONS(4965), - [anon_sym_AMP_AMP] = ACTIONS(4967), - [anon_sym_PIPE] = ACTIONS(4972), - [anon_sym_CARET] = ACTIONS(4972), - [anon_sym_AMP] = ACTIONS(4974), - [anon_sym_EQ_EQ] = ACTIONS(4965), - [anon_sym_BANG_EQ] = ACTIONS(4965), - [anon_sym_GT] = ACTIONS(4972), - [anon_sym_GT_EQ] = ACTIONS(4965), - [anon_sym_LT_EQ] = ACTIONS(4972), - [anon_sym_LT] = ACTIONS(5486), - [anon_sym_LT_LT] = ACTIONS(4972), - [anon_sym_GT_GT] = ACTIONS(4972), - [anon_sym___extension__] = ACTIONS(4970), - [anon_sym_COLON_COLON] = ACTIONS(4167), - [anon_sym_LBRACE] = ACTIONS(4970), - [anon_sym_LBRACK] = ACTIONS(4967), - [anon_sym_EQ] = ACTIONS(4972), - [anon_sym_const] = ACTIONS(4963), - [anon_sym_constexpr] = ACTIONS(4970), - [anon_sym_volatile] = ACTIONS(4970), - [anon_sym_restrict] = ACTIONS(4970), - [anon_sym___restrict__] = ACTIONS(4970), - [anon_sym__Atomic] = ACTIONS(4970), - [anon_sym__Noreturn] = ACTIONS(4970), - [anon_sym_noreturn] = ACTIONS(4970), - [anon_sym__Nonnull] = ACTIONS(4970), - [anon_sym_mutable] = ACTIONS(4970), - [anon_sym_constinit] = ACTIONS(4970), - [anon_sym_consteval] = ACTIONS(4970), - [anon_sym_alignas] = ACTIONS(4970), - [anon_sym__Alignas] = ACTIONS(4970), - [anon_sym_QMARK] = ACTIONS(4965), - [anon_sym_STAR_EQ] = ACTIONS(4965), - [anon_sym_SLASH_EQ] = ACTIONS(4965), - [anon_sym_PERCENT_EQ] = ACTIONS(4965), - [anon_sym_PLUS_EQ] = ACTIONS(4965), - [anon_sym_DASH_EQ] = ACTIONS(4965), - [anon_sym_LT_LT_EQ] = ACTIONS(4965), - [anon_sym_GT_GT_EQ] = ACTIONS(4965), - [anon_sym_AMP_EQ] = ACTIONS(4965), - [anon_sym_CARET_EQ] = ACTIONS(4965), - [anon_sym_PIPE_EQ] = ACTIONS(4965), - [anon_sym_and_eq] = ACTIONS(4965), - [anon_sym_or_eq] = ACTIONS(4965), - [anon_sym_xor_eq] = ACTIONS(4965), - [anon_sym_LT_EQ_GT] = ACTIONS(4965), - [anon_sym_or] = ACTIONS(4972), - [anon_sym_and] = ACTIONS(4972), - [anon_sym_bitor] = ACTIONS(4965), - [anon_sym_xor] = ACTIONS(4972), - [anon_sym_bitand] = ACTIONS(4965), - [anon_sym_not_eq] = ACTIONS(4965), - [anon_sym_DASH_DASH] = ACTIONS(4965), - [anon_sym_PLUS_PLUS] = ACTIONS(4965), - [anon_sym_DOT] = ACTIONS(4972), - [anon_sym_DOT_STAR] = ACTIONS(4965), - [anon_sym_DASH_GT] = ACTIONS(4972), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4970), - [anon_sym_decltype] = ACTIONS(4970), - [anon_sym_DASH_GT_STAR] = ACTIONS(4965), - }, - [1724] = { - [sym_identifier] = ACTIONS(3063), - [aux_sym_preproc_def_token1] = ACTIONS(3063), - [aux_sym_preproc_if_token1] = ACTIONS(3063), - [aux_sym_preproc_if_token2] = ACTIONS(3063), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3063), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3063), - [aux_sym_preproc_else_token1] = ACTIONS(3063), - [aux_sym_preproc_elif_token1] = ACTIONS(3063), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3063), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3063), - [sym_preproc_directive] = ACTIONS(3063), - [anon_sym_LPAREN2] = ACTIONS(3065), - [anon_sym_TILDE] = ACTIONS(3065), - [anon_sym_STAR] = ACTIONS(3065), - [anon_sym_AMP_AMP] = ACTIONS(3065), - [anon_sym_AMP] = ACTIONS(3063), - [anon_sym_SEMI] = ACTIONS(3065), - [anon_sym___extension__] = ACTIONS(3063), - [anon_sym_typedef] = ACTIONS(3063), - [anon_sym_virtual] = ACTIONS(3063), - [anon_sym_extern] = ACTIONS(3063), - [anon_sym___attribute__] = ACTIONS(3063), - [anon_sym___attribute] = ACTIONS(3063), - [anon_sym_using] = ACTIONS(3063), - [anon_sym_COLON_COLON] = ACTIONS(3065), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3065), - [anon_sym___declspec] = ACTIONS(3063), - [anon_sym___based] = ACTIONS(3063), - [anon_sym_signed] = ACTIONS(3063), - [anon_sym_unsigned] = ACTIONS(3063), - [anon_sym_long] = ACTIONS(3063), - [anon_sym_short] = ACTIONS(3063), - [anon_sym_LBRACK] = ACTIONS(3063), - [anon_sym_static] = ACTIONS(3063), - [anon_sym_register] = ACTIONS(3063), - [anon_sym_inline] = ACTIONS(3063), - [anon_sym___inline] = ACTIONS(3063), - [anon_sym___inline__] = ACTIONS(3063), - [anon_sym___forceinline] = ACTIONS(3063), - [anon_sym_thread_local] = ACTIONS(3063), - [anon_sym___thread] = ACTIONS(3063), - [anon_sym_const] = ACTIONS(3063), - [anon_sym_constexpr] = ACTIONS(3063), - [anon_sym_volatile] = ACTIONS(3063), - [anon_sym_restrict] = ACTIONS(3063), - [anon_sym___restrict__] = ACTIONS(3063), - [anon_sym__Atomic] = ACTIONS(3063), - [anon_sym__Noreturn] = ACTIONS(3063), - [anon_sym_noreturn] = ACTIONS(3063), - [anon_sym__Nonnull] = ACTIONS(3063), - [anon_sym_mutable] = ACTIONS(3063), - [anon_sym_constinit] = ACTIONS(3063), - [anon_sym_consteval] = ACTIONS(3063), - [anon_sym_alignas] = ACTIONS(3063), - [anon_sym__Alignas] = ACTIONS(3063), - [sym_primitive_type] = ACTIONS(3063), - [anon_sym_enum] = ACTIONS(3063), - [anon_sym_class] = ACTIONS(3063), - [anon_sym_struct] = ACTIONS(3063), - [anon_sym_union] = ACTIONS(3063), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3063), - [anon_sym_decltype] = ACTIONS(3063), - [anon_sym_explicit] = ACTIONS(3063), - [anon_sym_typename] = ACTIONS(3063), - [anon_sym_private] = ACTIONS(3063), - [anon_sym_template] = ACTIONS(3063), - [anon_sym_operator] = ACTIONS(3063), - [anon_sym_friend] = ACTIONS(3063), - [anon_sym_public] = ACTIONS(3063), - [anon_sym_protected] = ACTIONS(3063), - [anon_sym_static_assert] = ACTIONS(3063), - }, - [1725] = { - [sym_identifier] = ACTIONS(5489), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5491), - [anon_sym_COMMA] = ACTIONS(5491), - [anon_sym_RPAREN] = ACTIONS(5491), - [aux_sym_preproc_if_token2] = ACTIONS(5491), - [aux_sym_preproc_else_token1] = ACTIONS(5491), - [aux_sym_preproc_elif_token1] = ACTIONS(5489), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5491), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5491), - [anon_sym_LPAREN2] = ACTIONS(5491), - [anon_sym_DASH] = ACTIONS(5489), - [anon_sym_PLUS] = ACTIONS(5489), - [anon_sym_STAR] = ACTIONS(5489), - [anon_sym_SLASH] = ACTIONS(5489), - [anon_sym_PERCENT] = ACTIONS(5489), - [anon_sym_PIPE_PIPE] = ACTIONS(5491), - [anon_sym_AMP_AMP] = ACTIONS(5491), - [anon_sym_PIPE] = ACTIONS(5489), - [anon_sym_CARET] = ACTIONS(5489), - [anon_sym_AMP] = ACTIONS(5489), - [anon_sym_EQ_EQ] = ACTIONS(5491), - [anon_sym_BANG_EQ] = ACTIONS(5491), - [anon_sym_GT] = ACTIONS(5489), - [anon_sym_GT_EQ] = ACTIONS(5491), - [anon_sym_LT_EQ] = ACTIONS(5489), - [anon_sym_LT] = ACTIONS(5489), - [anon_sym_LT_LT] = ACTIONS(5489), - [anon_sym_GT_GT] = ACTIONS(5489), - [anon_sym_SEMI] = ACTIONS(5491), - [anon_sym_COLON] = ACTIONS(5491), - [anon_sym_RBRACE] = ACTIONS(5491), - [anon_sym_LBRACK] = ACTIONS(5491), - [anon_sym_RBRACK] = ACTIONS(5491), - [anon_sym_EQ] = ACTIONS(5489), - [anon_sym_QMARK] = ACTIONS(5491), - [anon_sym_STAR_EQ] = ACTIONS(5491), - [anon_sym_SLASH_EQ] = ACTIONS(5491), - [anon_sym_PERCENT_EQ] = ACTIONS(5491), - [anon_sym_PLUS_EQ] = ACTIONS(5491), - [anon_sym_DASH_EQ] = ACTIONS(5491), - [anon_sym_LT_LT_EQ] = ACTIONS(5491), - [anon_sym_GT_GT_EQ] = ACTIONS(5491), - [anon_sym_AMP_EQ] = ACTIONS(5491), - [anon_sym_CARET_EQ] = ACTIONS(5491), - [anon_sym_PIPE_EQ] = ACTIONS(5491), - [anon_sym_and_eq] = ACTIONS(5489), - [anon_sym_or_eq] = ACTIONS(5489), - [anon_sym_xor_eq] = ACTIONS(5489), - [anon_sym_LT_EQ_GT] = ACTIONS(5491), - [anon_sym_or] = ACTIONS(5489), - [anon_sym_and] = ACTIONS(5489), - [anon_sym_bitor] = ACTIONS(5489), - [anon_sym_xor] = ACTIONS(5489), - [anon_sym_bitand] = ACTIONS(5489), - [anon_sym_not_eq] = ACTIONS(5489), - [anon_sym_DASH_DASH] = ACTIONS(5491), - [anon_sym_PLUS_PLUS] = ACTIONS(5491), - [anon_sym_DOT] = ACTIONS(5489), - [anon_sym_DOT_STAR] = ACTIONS(5491), - [anon_sym_DASH_GT] = ACTIONS(5491), - [anon_sym_L_DQUOTE] = ACTIONS(5491), - [anon_sym_u_DQUOTE] = ACTIONS(5491), - [anon_sym_U_DQUOTE] = ACTIONS(5491), - [anon_sym_u8_DQUOTE] = ACTIONS(5491), - [anon_sym_DQUOTE] = ACTIONS(5491), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5491), - [anon_sym_LR_DQUOTE] = ACTIONS(5491), - [anon_sym_uR_DQUOTE] = ACTIONS(5491), - [anon_sym_UR_DQUOTE] = ACTIONS(5491), - [anon_sym_u8R_DQUOTE] = ACTIONS(5491), - [sym_literal_suffix] = ACTIONS(5489), - }, - [1726] = { - [sym_identifier] = ACTIONS(2711), - [aux_sym_preproc_def_token1] = ACTIONS(2711), - [aux_sym_preproc_if_token1] = ACTIONS(2711), - [aux_sym_preproc_if_token2] = ACTIONS(2711), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2711), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2711), - [aux_sym_preproc_else_token1] = ACTIONS(2711), - [aux_sym_preproc_elif_token1] = ACTIONS(2711), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2711), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2711), - [sym_preproc_directive] = ACTIONS(2711), - [anon_sym_LPAREN2] = ACTIONS(2713), - [anon_sym_TILDE] = ACTIONS(2713), - [anon_sym_STAR] = ACTIONS(2713), - [anon_sym_AMP_AMP] = ACTIONS(2713), - [anon_sym_AMP] = ACTIONS(2711), - [anon_sym_SEMI] = ACTIONS(2713), - [anon_sym___extension__] = ACTIONS(2711), - [anon_sym_typedef] = ACTIONS(2711), - [anon_sym_virtual] = ACTIONS(2711), - [anon_sym_extern] = ACTIONS(2711), - [anon_sym___attribute__] = ACTIONS(2711), - [anon_sym___attribute] = ACTIONS(2711), - [anon_sym_using] = ACTIONS(2711), - [anon_sym_COLON_COLON] = ACTIONS(2713), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2713), - [anon_sym___declspec] = ACTIONS(2711), - [anon_sym___based] = ACTIONS(2711), - [anon_sym_signed] = ACTIONS(2711), - [anon_sym_unsigned] = ACTIONS(2711), - [anon_sym_long] = ACTIONS(2711), - [anon_sym_short] = ACTIONS(2711), - [anon_sym_LBRACK] = ACTIONS(2711), - [anon_sym_static] = ACTIONS(2711), - [anon_sym_register] = ACTIONS(2711), - [anon_sym_inline] = ACTIONS(2711), - [anon_sym___inline] = ACTIONS(2711), - [anon_sym___inline__] = ACTIONS(2711), - [anon_sym___forceinline] = ACTIONS(2711), - [anon_sym_thread_local] = ACTIONS(2711), - [anon_sym___thread] = ACTIONS(2711), - [anon_sym_const] = ACTIONS(2711), - [anon_sym_constexpr] = ACTIONS(2711), - [anon_sym_volatile] = ACTIONS(2711), - [anon_sym_restrict] = ACTIONS(2711), - [anon_sym___restrict__] = ACTIONS(2711), - [anon_sym__Atomic] = ACTIONS(2711), - [anon_sym__Noreturn] = ACTIONS(2711), - [anon_sym_noreturn] = ACTIONS(2711), - [anon_sym__Nonnull] = ACTIONS(2711), - [anon_sym_mutable] = ACTIONS(2711), - [anon_sym_constinit] = ACTIONS(2711), - [anon_sym_consteval] = ACTIONS(2711), - [anon_sym_alignas] = ACTIONS(2711), - [anon_sym__Alignas] = ACTIONS(2711), - [sym_primitive_type] = ACTIONS(2711), - [anon_sym_enum] = ACTIONS(2711), - [anon_sym_class] = ACTIONS(2711), - [anon_sym_struct] = ACTIONS(2711), - [anon_sym_union] = ACTIONS(2711), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2711), - [anon_sym_decltype] = ACTIONS(2711), - [anon_sym_explicit] = ACTIONS(2711), - [anon_sym_typename] = ACTIONS(2711), - [anon_sym_private] = ACTIONS(2711), - [anon_sym_template] = ACTIONS(2711), - [anon_sym_operator] = ACTIONS(2711), - [anon_sym_friend] = ACTIONS(2711), - [anon_sym_public] = ACTIONS(2711), - [anon_sym_protected] = ACTIONS(2711), - [anon_sym_static_assert] = ACTIONS(2711), - }, - [1727] = { - [sym_identifier] = ACTIONS(3063), - [aux_sym_preproc_def_token1] = ACTIONS(3063), - [aux_sym_preproc_if_token1] = ACTIONS(3063), - [aux_sym_preproc_if_token2] = ACTIONS(3063), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3063), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3063), - [aux_sym_preproc_else_token1] = ACTIONS(3063), - [aux_sym_preproc_elif_token1] = ACTIONS(3063), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3063), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3063), - [sym_preproc_directive] = ACTIONS(3063), - [anon_sym_LPAREN2] = ACTIONS(3065), - [anon_sym_TILDE] = ACTIONS(3065), - [anon_sym_STAR] = ACTIONS(3065), - [anon_sym_AMP_AMP] = ACTIONS(3065), - [anon_sym_AMP] = ACTIONS(3063), - [anon_sym_SEMI] = ACTIONS(3065), - [anon_sym___extension__] = ACTIONS(3063), - [anon_sym_typedef] = ACTIONS(3063), - [anon_sym_virtual] = ACTIONS(3063), - [anon_sym_extern] = ACTIONS(3063), - [anon_sym___attribute__] = ACTIONS(3063), - [anon_sym___attribute] = ACTIONS(3063), - [anon_sym_using] = ACTIONS(3063), - [anon_sym_COLON_COLON] = ACTIONS(3065), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3065), - [anon_sym___declspec] = ACTIONS(3063), - [anon_sym___based] = ACTIONS(3063), - [anon_sym_signed] = ACTIONS(3063), - [anon_sym_unsigned] = ACTIONS(3063), - [anon_sym_long] = ACTIONS(3063), - [anon_sym_short] = ACTIONS(3063), - [anon_sym_LBRACK] = ACTIONS(3063), - [anon_sym_static] = ACTIONS(3063), - [anon_sym_register] = ACTIONS(3063), - [anon_sym_inline] = ACTIONS(3063), - [anon_sym___inline] = ACTIONS(3063), - [anon_sym___inline__] = ACTIONS(3063), - [anon_sym___forceinline] = ACTIONS(3063), - [anon_sym_thread_local] = ACTIONS(3063), - [anon_sym___thread] = ACTIONS(3063), - [anon_sym_const] = ACTIONS(3063), - [anon_sym_constexpr] = ACTIONS(3063), - [anon_sym_volatile] = ACTIONS(3063), - [anon_sym_restrict] = ACTIONS(3063), - [anon_sym___restrict__] = ACTIONS(3063), - [anon_sym__Atomic] = ACTIONS(3063), - [anon_sym__Noreturn] = ACTIONS(3063), - [anon_sym_noreturn] = ACTIONS(3063), - [anon_sym__Nonnull] = ACTIONS(3063), - [anon_sym_mutable] = ACTIONS(3063), - [anon_sym_constinit] = ACTIONS(3063), - [anon_sym_consteval] = ACTIONS(3063), - [anon_sym_alignas] = ACTIONS(3063), - [anon_sym__Alignas] = ACTIONS(3063), - [sym_primitive_type] = ACTIONS(3063), - [anon_sym_enum] = ACTIONS(3063), - [anon_sym_class] = ACTIONS(3063), - [anon_sym_struct] = ACTIONS(3063), - [anon_sym_union] = ACTIONS(3063), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3063), - [anon_sym_decltype] = ACTIONS(3063), - [anon_sym_explicit] = ACTIONS(3063), - [anon_sym_typename] = ACTIONS(3063), - [anon_sym_private] = ACTIONS(3063), - [anon_sym_template] = ACTIONS(3063), - [anon_sym_operator] = ACTIONS(3063), - [anon_sym_friend] = ACTIONS(3063), - [anon_sym_public] = ACTIONS(3063), - [anon_sym_protected] = ACTIONS(3063), - [anon_sym_static_assert] = ACTIONS(3063), - }, - [1728] = { - [sym_attribute_specifier] = STATE(2264), - [sym_field_declaration_list] = STATE(2192), - [sym_virtual_specifier] = STATE(7024), - [sym_base_class_clause] = STATE(7634), - [sym_identifier] = ACTIONS(5493), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5495), - [anon_sym_COMMA] = ACTIONS(5495), - [anon_sym_RPAREN] = ACTIONS(5495), - [aux_sym_preproc_if_token2] = ACTIONS(5495), - [aux_sym_preproc_else_token1] = ACTIONS(5495), - [aux_sym_preproc_elif_token1] = ACTIONS(5493), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5495), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5495), - [anon_sym_LPAREN2] = ACTIONS(5495), - [anon_sym_DASH] = ACTIONS(5493), - [anon_sym_PLUS] = ACTIONS(5493), - [anon_sym_STAR] = ACTIONS(5493), - [anon_sym_SLASH] = ACTIONS(5493), - [anon_sym_PERCENT] = ACTIONS(5493), - [anon_sym_PIPE_PIPE] = ACTIONS(5495), - [anon_sym_AMP_AMP] = ACTIONS(5495), - [anon_sym_PIPE] = ACTIONS(5493), - [anon_sym_CARET] = ACTIONS(5493), - [anon_sym_AMP] = ACTIONS(5493), - [anon_sym_EQ_EQ] = ACTIONS(5495), - [anon_sym_BANG_EQ] = ACTIONS(5495), - [anon_sym_GT] = ACTIONS(5493), - [anon_sym_GT_EQ] = ACTIONS(5495), - [anon_sym_LT_EQ] = ACTIONS(5493), - [anon_sym_LT] = ACTIONS(5493), - [anon_sym_LT_LT] = ACTIONS(5493), - [anon_sym_GT_GT] = ACTIONS(5493), - [anon_sym_SEMI] = ACTIONS(5495), - [anon_sym___attribute__] = ACTIONS(5497), - [anon_sym___attribute] = ACTIONS(5497), - [anon_sym_COLON] = ACTIONS(5499), - [anon_sym_LBRACE] = ACTIONS(5501), - [anon_sym_RBRACE] = ACTIONS(5495), - [anon_sym_LBRACK] = ACTIONS(5495), - [anon_sym_RBRACK] = ACTIONS(5495), - [anon_sym_EQ] = ACTIONS(5493), - [anon_sym_QMARK] = ACTIONS(5495), - [anon_sym_STAR_EQ] = ACTIONS(5495), - [anon_sym_SLASH_EQ] = ACTIONS(5495), - [anon_sym_PERCENT_EQ] = ACTIONS(5495), - [anon_sym_PLUS_EQ] = ACTIONS(5495), - [anon_sym_DASH_EQ] = ACTIONS(5495), - [anon_sym_LT_LT_EQ] = ACTIONS(5495), - [anon_sym_GT_GT_EQ] = ACTIONS(5495), - [anon_sym_AMP_EQ] = ACTIONS(5495), - [anon_sym_CARET_EQ] = ACTIONS(5495), - [anon_sym_PIPE_EQ] = ACTIONS(5495), - [anon_sym_and_eq] = ACTIONS(5493), - [anon_sym_or_eq] = ACTIONS(5493), - [anon_sym_xor_eq] = ACTIONS(5493), - [anon_sym_LT_EQ_GT] = ACTIONS(5495), - [anon_sym_or] = ACTIONS(5493), - [anon_sym_and] = ACTIONS(5493), - [anon_sym_bitor] = ACTIONS(5493), - [anon_sym_xor] = ACTIONS(5493), - [anon_sym_bitand] = ACTIONS(5493), - [anon_sym_not_eq] = ACTIONS(5493), - [anon_sym_DASH_DASH] = ACTIONS(5495), - [anon_sym_PLUS_PLUS] = ACTIONS(5495), - [anon_sym_DOT] = ACTIONS(5493), - [anon_sym_DOT_STAR] = ACTIONS(5495), - [anon_sym_DASH_GT] = ACTIONS(5495), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5493), - [anon_sym_decltype] = ACTIONS(5493), - [anon_sym_final] = ACTIONS(5503), - [anon_sym_override] = ACTIONS(5503), - }, - [1729] = { - [sym_identifier] = ACTIONS(2915), - [aux_sym_preproc_def_token1] = ACTIONS(2915), - [aux_sym_preproc_if_token1] = ACTIONS(2915), - [aux_sym_preproc_if_token2] = ACTIONS(2915), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2915), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2915), - [aux_sym_preproc_else_token1] = ACTIONS(2915), - [aux_sym_preproc_elif_token1] = ACTIONS(2915), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2915), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2915), - [sym_preproc_directive] = ACTIONS(2915), - [anon_sym_LPAREN2] = ACTIONS(2917), - [anon_sym_TILDE] = ACTIONS(2917), - [anon_sym_STAR] = ACTIONS(2917), - [anon_sym_AMP_AMP] = ACTIONS(2917), - [anon_sym_AMP] = ACTIONS(2915), - [anon_sym_SEMI] = ACTIONS(2917), - [anon_sym___extension__] = ACTIONS(2915), - [anon_sym_typedef] = ACTIONS(2915), - [anon_sym_virtual] = ACTIONS(2915), - [anon_sym_extern] = ACTIONS(2915), - [anon_sym___attribute__] = ACTIONS(2915), - [anon_sym___attribute] = ACTIONS(2915), - [anon_sym_using] = ACTIONS(2915), - [anon_sym_COLON_COLON] = ACTIONS(2917), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2917), - [anon_sym___declspec] = ACTIONS(2915), - [anon_sym___based] = ACTIONS(2915), - [anon_sym_signed] = ACTIONS(2915), - [anon_sym_unsigned] = ACTIONS(2915), - [anon_sym_long] = ACTIONS(2915), - [anon_sym_short] = ACTIONS(2915), - [anon_sym_LBRACK] = ACTIONS(2915), - [anon_sym_static] = ACTIONS(2915), - [anon_sym_register] = ACTIONS(2915), - [anon_sym_inline] = ACTIONS(2915), - [anon_sym___inline] = ACTIONS(2915), - [anon_sym___inline__] = ACTIONS(2915), - [anon_sym___forceinline] = ACTIONS(2915), - [anon_sym_thread_local] = ACTIONS(2915), - [anon_sym___thread] = ACTIONS(2915), - [anon_sym_const] = ACTIONS(2915), - [anon_sym_constexpr] = ACTIONS(2915), - [anon_sym_volatile] = ACTIONS(2915), - [anon_sym_restrict] = ACTIONS(2915), - [anon_sym___restrict__] = ACTIONS(2915), - [anon_sym__Atomic] = ACTIONS(2915), - [anon_sym__Noreturn] = ACTIONS(2915), - [anon_sym_noreturn] = ACTIONS(2915), - [anon_sym__Nonnull] = ACTIONS(2915), - [anon_sym_mutable] = ACTIONS(2915), - [anon_sym_constinit] = ACTIONS(2915), - [anon_sym_consteval] = ACTIONS(2915), - [anon_sym_alignas] = ACTIONS(2915), - [anon_sym__Alignas] = ACTIONS(2915), - [sym_primitive_type] = ACTIONS(2915), - [anon_sym_enum] = ACTIONS(2915), - [anon_sym_class] = ACTIONS(2915), - [anon_sym_struct] = ACTIONS(2915), - [anon_sym_union] = ACTIONS(2915), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2915), - [anon_sym_decltype] = ACTIONS(2915), - [anon_sym_explicit] = ACTIONS(2915), - [anon_sym_typename] = ACTIONS(2915), - [anon_sym_private] = ACTIONS(2915), - [anon_sym_template] = ACTIONS(2915), - [anon_sym_operator] = ACTIONS(2915), - [anon_sym_friend] = ACTIONS(2915), - [anon_sym_public] = ACTIONS(2915), - [anon_sym_protected] = ACTIONS(2915), - [anon_sym_static_assert] = ACTIONS(2915), - }, - [1730] = { - [sym_identifier] = ACTIONS(2699), - [aux_sym_preproc_def_token1] = ACTIONS(2699), - [aux_sym_preproc_if_token1] = ACTIONS(2699), - [aux_sym_preproc_if_token2] = ACTIONS(2699), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2699), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2699), - [aux_sym_preproc_else_token1] = ACTIONS(2699), - [aux_sym_preproc_elif_token1] = ACTIONS(2699), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2699), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2699), - [sym_preproc_directive] = ACTIONS(2699), - [anon_sym_LPAREN2] = ACTIONS(2701), - [anon_sym_TILDE] = ACTIONS(2701), - [anon_sym_STAR] = ACTIONS(2701), - [anon_sym_AMP_AMP] = ACTIONS(2701), - [anon_sym_AMP] = ACTIONS(2699), - [anon_sym_SEMI] = ACTIONS(2701), - [anon_sym___extension__] = ACTIONS(2699), - [anon_sym_typedef] = ACTIONS(2699), - [anon_sym_virtual] = ACTIONS(2699), - [anon_sym_extern] = ACTIONS(2699), - [anon_sym___attribute__] = ACTIONS(2699), - [anon_sym___attribute] = ACTIONS(2699), - [anon_sym_using] = ACTIONS(2699), - [anon_sym_COLON_COLON] = ACTIONS(2701), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2701), - [anon_sym___declspec] = ACTIONS(2699), - [anon_sym___based] = ACTIONS(2699), - [anon_sym_signed] = ACTIONS(2699), - [anon_sym_unsigned] = ACTIONS(2699), - [anon_sym_long] = ACTIONS(2699), - [anon_sym_short] = ACTIONS(2699), - [anon_sym_LBRACK] = ACTIONS(2699), - [anon_sym_static] = ACTIONS(2699), - [anon_sym_register] = ACTIONS(2699), - [anon_sym_inline] = ACTIONS(2699), - [anon_sym___inline] = ACTIONS(2699), - [anon_sym___inline__] = ACTIONS(2699), - [anon_sym___forceinline] = ACTIONS(2699), - [anon_sym_thread_local] = ACTIONS(2699), - [anon_sym___thread] = ACTIONS(2699), - [anon_sym_const] = ACTIONS(2699), - [anon_sym_constexpr] = ACTIONS(2699), - [anon_sym_volatile] = ACTIONS(2699), - [anon_sym_restrict] = ACTIONS(2699), - [anon_sym___restrict__] = ACTIONS(2699), - [anon_sym__Atomic] = ACTIONS(2699), - [anon_sym__Noreturn] = ACTIONS(2699), - [anon_sym_noreturn] = ACTIONS(2699), - [anon_sym__Nonnull] = ACTIONS(2699), - [anon_sym_mutable] = ACTIONS(2699), - [anon_sym_constinit] = ACTIONS(2699), - [anon_sym_consteval] = ACTIONS(2699), - [anon_sym_alignas] = ACTIONS(2699), - [anon_sym__Alignas] = ACTIONS(2699), - [sym_primitive_type] = ACTIONS(2699), - [anon_sym_enum] = ACTIONS(2699), - [anon_sym_class] = ACTIONS(2699), - [anon_sym_struct] = ACTIONS(2699), - [anon_sym_union] = ACTIONS(2699), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2699), - [anon_sym_decltype] = ACTIONS(2699), - [anon_sym_explicit] = ACTIONS(2699), - [anon_sym_typename] = ACTIONS(2699), - [anon_sym_private] = ACTIONS(2699), - [anon_sym_template] = ACTIONS(2699), - [anon_sym_operator] = ACTIONS(2699), - [anon_sym_friend] = ACTIONS(2699), - [anon_sym_public] = ACTIONS(2699), - [anon_sym_protected] = ACTIONS(2699), - [anon_sym_static_assert] = ACTIONS(2699), - }, - [1731] = { - [sym__declaration_modifiers] = STATE(3282), - [sym_attribute_specifier] = STATE(3282), - [sym_attribute_declaration] = STATE(3282), - [sym_ms_declspec_modifier] = STATE(3282), - [sym_ms_based_modifier] = STATE(8682), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6342), - [sym_array_declarator] = STATE(5998), - [sym_storage_class_specifier] = STATE(3282), - [sym_type_qualifier] = STATE(3282), - [sym_alignas_qualifier] = STATE(2975), - [sym_decltype] = STATE(8601), - [sym_explicit_function_specifier] = STATE(3282), - [sym_operator_cast] = STATE(6801), - [sym__constructor_specifiers] = STATE(3282), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(8601), - [sym_template_function] = STATE(5998), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5591), - [sym_qualified_identifier] = STATE(5998), - [sym_qualified_operator_cast_identifier] = STATE(6801), - [sym_operator_name] = STATE(5998), - [aux_sym_operator_cast_definition_repeat1] = STATE(3282), - [sym_identifier] = ACTIONS(5460), - [anon_sym_LPAREN2] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2979), - [anon_sym_STAR] = ACTIONS(2981), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2983), - [anon_sym___extension__] = ACTIONS(5462), - [anon_sym_virtual] = ACTIONS(5464), - [anon_sym_extern] = ACTIONS(5466), - [anon_sym___attribute__] = ACTIONS(5468), - [anon_sym___attribute] = ACTIONS(5468), - [anon_sym_COLON_COLON] = ACTIONS(5470), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5472), - [anon_sym___declspec] = ACTIONS(5474), - [anon_sym___based] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(2995), - [anon_sym_static] = ACTIONS(5466), - [anon_sym_register] = ACTIONS(5466), - [anon_sym_inline] = ACTIONS(5466), - [anon_sym___inline] = ACTIONS(5466), - [anon_sym___inline__] = ACTIONS(5466), - [anon_sym___forceinline] = ACTIONS(5466), - [anon_sym_thread_local] = ACTIONS(5466), - [anon_sym___thread] = ACTIONS(5466), - [anon_sym_const] = ACTIONS(5462), - [anon_sym_constexpr] = ACTIONS(5462), - [anon_sym_volatile] = ACTIONS(5462), - [anon_sym_restrict] = ACTIONS(5462), - [anon_sym___restrict__] = ACTIONS(5462), - [anon_sym__Atomic] = ACTIONS(5462), - [anon_sym__Noreturn] = ACTIONS(5462), - [anon_sym_noreturn] = ACTIONS(5462), - [anon_sym__Nonnull] = ACTIONS(5462), - [anon_sym_mutable] = ACTIONS(5462), - [anon_sym_constinit] = ACTIONS(5462), - [anon_sym_consteval] = ACTIONS(5462), - [anon_sym_alignas] = ACTIONS(5476), - [anon_sym__Alignas] = ACTIONS(5476), + [anon_sym_typedef] = ACTIONS(2827), + [anon_sym_virtual] = ACTIONS(2827), + [anon_sym_extern] = ACTIONS(2827), + [anon_sym___attribute__] = ACTIONS(2827), + [anon_sym___attribute] = ACTIONS(2827), + [anon_sym_using] = ACTIONS(2827), + [anon_sym_COLON_COLON] = ACTIONS(2829), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2829), + [anon_sym___declspec] = ACTIONS(2827), + [anon_sym___based] = ACTIONS(2827), + [anon_sym_signed] = ACTIONS(2827), + [anon_sym_unsigned] = ACTIONS(2827), + [anon_sym_long] = ACTIONS(2827), + [anon_sym_short] = ACTIONS(2827), + [anon_sym_LBRACK] = ACTIONS(2827), + [anon_sym_static] = ACTIONS(2827), + [anon_sym_register] = ACTIONS(2827), + [anon_sym_inline] = ACTIONS(2827), + [anon_sym___inline] = ACTIONS(2827), + [anon_sym___inline__] = ACTIONS(2827), + [anon_sym___forceinline] = ACTIONS(2827), + [anon_sym_thread_local] = ACTIONS(2827), + [anon_sym___thread] = ACTIONS(2827), + [anon_sym_const] = ACTIONS(2827), + [anon_sym_constexpr] = ACTIONS(2827), + [anon_sym_volatile] = ACTIONS(2827), + [anon_sym_restrict] = ACTIONS(2827), + [anon_sym___restrict__] = ACTIONS(2827), + [anon_sym__Atomic] = ACTIONS(2827), + [anon_sym__Noreturn] = ACTIONS(2827), + [anon_sym_noreturn] = ACTIONS(2827), + [anon_sym__Nonnull] = ACTIONS(2827), + [anon_sym_mutable] = ACTIONS(2827), + [anon_sym_constinit] = ACTIONS(2827), + [anon_sym_consteval] = ACTIONS(2827), + [anon_sym_alignas] = ACTIONS(2827), + [anon_sym__Alignas] = ACTIONS(2827), + [sym_primitive_type] = ACTIONS(2827), + [anon_sym_enum] = ACTIONS(2827), + [anon_sym_class] = ACTIONS(2827), + [anon_sym_struct] = ACTIONS(2827), + [anon_sym_union] = ACTIONS(2827), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_operator] = ACTIONS(141), + [sym_auto] = ACTIONS(2827), + [anon_sym_decltype] = ACTIONS(2827), + [anon_sym_explicit] = ACTIONS(2827), + [anon_sym_typename] = ACTIONS(2827), + [anon_sym_private] = ACTIONS(2827), + [anon_sym_template] = ACTIONS(2827), + [anon_sym_operator] = ACTIONS(2827), + [anon_sym_friend] = ACTIONS(2827), + [anon_sym_public] = ACTIONS(2827), + [anon_sym_protected] = ACTIONS(2827), + [anon_sym_static_assert] = ACTIONS(2827), }, - [1732] = { - [sym_identifier] = ACTIONS(4984), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4986), - [anon_sym_COMMA] = ACTIONS(4986), - [anon_sym_RPAREN] = ACTIONS(4986), - [anon_sym_LPAREN2] = ACTIONS(4986), - [anon_sym_DASH] = ACTIONS(4984), - [anon_sym_PLUS] = ACTIONS(4984), - [anon_sym_STAR] = ACTIONS(4986), - [anon_sym_SLASH] = ACTIONS(4984), - [anon_sym_PERCENT] = ACTIONS(4986), - [anon_sym_PIPE_PIPE] = ACTIONS(4986), - [anon_sym_AMP_AMP] = ACTIONS(4986), - [anon_sym_PIPE] = ACTIONS(4984), - [anon_sym_CARET] = ACTIONS(4986), - [anon_sym_AMP] = ACTIONS(4984), - [anon_sym_EQ_EQ] = ACTIONS(4986), - [anon_sym_BANG_EQ] = ACTIONS(4986), - [anon_sym_GT] = ACTIONS(4984), - [anon_sym_GT_EQ] = ACTIONS(4986), - [anon_sym_LT_EQ] = ACTIONS(4984), - [anon_sym_LT] = ACTIONS(4984), - [anon_sym_LT_LT] = ACTIONS(4986), - [anon_sym_GT_GT] = ACTIONS(4986), - [anon_sym_SEMI] = ACTIONS(4986), - [anon_sym___extension__] = ACTIONS(4984), - [anon_sym___attribute__] = ACTIONS(4984), - [anon_sym___attribute] = ACTIONS(4984), - [anon_sym_COLON] = ACTIONS(4984), - [anon_sym_COLON_COLON] = ACTIONS(4986), - [anon_sym___based] = ACTIONS(4984), - [anon_sym_LBRACE] = ACTIONS(4986), - [anon_sym_RBRACE] = ACTIONS(4986), - [anon_sym_signed] = ACTIONS(4984), - [anon_sym_unsigned] = ACTIONS(4984), - [anon_sym_long] = ACTIONS(4984), - [anon_sym_short] = ACTIONS(4984), - [anon_sym_LBRACK] = ACTIONS(4986), - [anon_sym_RBRACK] = ACTIONS(4986), - [anon_sym_const] = ACTIONS(4984), - [anon_sym_constexpr] = ACTIONS(4984), - [anon_sym_volatile] = ACTIONS(4984), - [anon_sym_restrict] = ACTIONS(4984), - [anon_sym___restrict__] = ACTIONS(4984), - [anon_sym__Atomic] = ACTIONS(4984), - [anon_sym__Noreturn] = ACTIONS(4984), - [anon_sym_noreturn] = ACTIONS(4984), - [anon_sym__Nonnull] = ACTIONS(4984), - [anon_sym_mutable] = ACTIONS(4984), - [anon_sym_constinit] = ACTIONS(4984), - [anon_sym_consteval] = ACTIONS(4984), - [anon_sym_alignas] = ACTIONS(4984), - [anon_sym__Alignas] = ACTIONS(4984), - [sym_primitive_type] = ACTIONS(4984), - [anon_sym_QMARK] = ACTIONS(4986), - [anon_sym_LT_EQ_GT] = ACTIONS(4986), - [anon_sym_or] = ACTIONS(4984), - [anon_sym_and] = ACTIONS(4984), - [anon_sym_bitor] = ACTIONS(4984), - [anon_sym_xor] = ACTIONS(4984), - [anon_sym_bitand] = ACTIONS(4984), - [anon_sym_not_eq] = ACTIONS(4984), - [anon_sym_DASH_DASH] = ACTIONS(4986), - [anon_sym_PLUS_PLUS] = ACTIONS(4986), - [anon_sym_DOT] = ACTIONS(4984), - [anon_sym_DOT_STAR] = ACTIONS(4986), - [anon_sym_DASH_GT] = ACTIONS(4986), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4984), - [anon_sym_decltype] = ACTIONS(4984), - [anon_sym_final] = ACTIONS(4984), - [anon_sym_override] = ACTIONS(4984), - [anon_sym_requires] = ACTIONS(4984), + [1777] = { + [sym_identifier] = ACTIONS(5006), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5008), + [anon_sym_COMMA] = ACTIONS(5008), + [anon_sym_RPAREN] = ACTIONS(5008), + [anon_sym_LPAREN2] = ACTIONS(5008), + [anon_sym_DASH] = ACTIONS(5006), + [anon_sym_PLUS] = ACTIONS(5006), + [anon_sym_STAR] = ACTIONS(5008), + [anon_sym_SLASH] = ACTIONS(5006), + [anon_sym_PERCENT] = ACTIONS(5008), + [anon_sym_PIPE_PIPE] = ACTIONS(5008), + [anon_sym_AMP_AMP] = ACTIONS(5008), + [anon_sym_PIPE] = ACTIONS(5006), + [anon_sym_CARET] = ACTIONS(5008), + [anon_sym_AMP] = ACTIONS(5006), + [anon_sym_EQ_EQ] = ACTIONS(5008), + [anon_sym_BANG_EQ] = ACTIONS(5008), + [anon_sym_GT] = ACTIONS(5006), + [anon_sym_GT_EQ] = ACTIONS(5008), + [anon_sym_LT_EQ] = ACTIONS(5006), + [anon_sym_LT] = ACTIONS(5006), + [anon_sym_LT_LT] = ACTIONS(5008), + [anon_sym_GT_GT] = ACTIONS(5008), + [anon_sym_SEMI] = ACTIONS(5008), + [anon_sym___extension__] = ACTIONS(5006), + [anon_sym___attribute__] = ACTIONS(5006), + [anon_sym___attribute] = ACTIONS(5006), + [anon_sym_COLON] = ACTIONS(5006), + [anon_sym_COLON_COLON] = ACTIONS(5008), + [anon_sym___based] = ACTIONS(5006), + [anon_sym_LBRACE] = ACTIONS(5008), + [anon_sym_RBRACE] = ACTIONS(5008), + [anon_sym_signed] = ACTIONS(5006), + [anon_sym_unsigned] = ACTIONS(5006), + [anon_sym_long] = ACTIONS(5006), + [anon_sym_short] = ACTIONS(5006), + [anon_sym_LBRACK] = ACTIONS(5008), + [anon_sym_RBRACK] = ACTIONS(5008), + [anon_sym_const] = ACTIONS(5006), + [anon_sym_constexpr] = ACTIONS(5006), + [anon_sym_volatile] = ACTIONS(5006), + [anon_sym_restrict] = ACTIONS(5006), + [anon_sym___restrict__] = ACTIONS(5006), + [anon_sym__Atomic] = ACTIONS(5006), + [anon_sym__Noreturn] = ACTIONS(5006), + [anon_sym_noreturn] = ACTIONS(5006), + [anon_sym__Nonnull] = ACTIONS(5006), + [anon_sym_mutable] = ACTIONS(5006), + [anon_sym_constinit] = ACTIONS(5006), + [anon_sym_consteval] = ACTIONS(5006), + [anon_sym_alignas] = ACTIONS(5006), + [anon_sym__Alignas] = ACTIONS(5006), + [sym_primitive_type] = ACTIONS(5006), + [anon_sym_QMARK] = ACTIONS(5008), + [anon_sym_LT_EQ_GT] = ACTIONS(5008), + [anon_sym_or] = ACTIONS(5006), + [anon_sym_and] = ACTIONS(5006), + [anon_sym_bitor] = ACTIONS(5006), + [anon_sym_xor] = ACTIONS(5006), + [anon_sym_bitand] = ACTIONS(5006), + [anon_sym_not_eq] = ACTIONS(5006), + [anon_sym_DASH_DASH] = ACTIONS(5008), + [anon_sym_PLUS_PLUS] = ACTIONS(5008), + [anon_sym_DOT] = ACTIONS(5006), + [anon_sym_DOT_STAR] = ACTIONS(5008), + [anon_sym_DASH_GT] = ACTIONS(5008), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5006), + [anon_sym_decltype] = ACTIONS(5006), + [anon_sym_final] = ACTIONS(5006), + [anon_sym_override] = ACTIONS(5006), + [anon_sym_requires] = ACTIONS(5006), }, - [1733] = { - [sym_identifier] = ACTIONS(2639), - [aux_sym_preproc_def_token1] = ACTIONS(2639), - [aux_sym_preproc_if_token1] = ACTIONS(2639), - [aux_sym_preproc_if_token2] = ACTIONS(2639), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2639), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2639), - [aux_sym_preproc_else_token1] = ACTIONS(2639), - [aux_sym_preproc_elif_token1] = ACTIONS(2639), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2639), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2639), - [sym_preproc_directive] = ACTIONS(2639), - [anon_sym_LPAREN2] = ACTIONS(2641), - [anon_sym_TILDE] = ACTIONS(2641), - [anon_sym_STAR] = ACTIONS(2641), - [anon_sym_AMP_AMP] = ACTIONS(2641), - [anon_sym_AMP] = ACTIONS(2639), - [anon_sym_SEMI] = ACTIONS(2641), - [anon_sym___extension__] = ACTIONS(2639), - [anon_sym_typedef] = ACTIONS(2639), - [anon_sym_virtual] = ACTIONS(2639), - [anon_sym_extern] = ACTIONS(2639), - [anon_sym___attribute__] = ACTIONS(2639), - [anon_sym___attribute] = ACTIONS(2639), - [anon_sym_using] = ACTIONS(2639), - [anon_sym_COLON_COLON] = ACTIONS(2641), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2641), - [anon_sym___declspec] = ACTIONS(2639), - [anon_sym___based] = ACTIONS(2639), - [anon_sym_signed] = ACTIONS(2639), - [anon_sym_unsigned] = ACTIONS(2639), - [anon_sym_long] = ACTIONS(2639), - [anon_sym_short] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(2639), - [anon_sym_static] = ACTIONS(2639), - [anon_sym_register] = ACTIONS(2639), - [anon_sym_inline] = ACTIONS(2639), - [anon_sym___inline] = ACTIONS(2639), - [anon_sym___inline__] = ACTIONS(2639), - [anon_sym___forceinline] = ACTIONS(2639), - [anon_sym_thread_local] = ACTIONS(2639), - [anon_sym___thread] = ACTIONS(2639), - [anon_sym_const] = ACTIONS(2639), - [anon_sym_constexpr] = ACTIONS(2639), - [anon_sym_volatile] = ACTIONS(2639), - [anon_sym_restrict] = ACTIONS(2639), - [anon_sym___restrict__] = ACTIONS(2639), - [anon_sym__Atomic] = ACTIONS(2639), - [anon_sym__Noreturn] = ACTIONS(2639), - [anon_sym_noreturn] = ACTIONS(2639), - [anon_sym__Nonnull] = ACTIONS(2639), - [anon_sym_mutable] = ACTIONS(2639), - [anon_sym_constinit] = ACTIONS(2639), - [anon_sym_consteval] = ACTIONS(2639), - [anon_sym_alignas] = ACTIONS(2639), - [anon_sym__Alignas] = ACTIONS(2639), - [sym_primitive_type] = ACTIONS(2639), - [anon_sym_enum] = ACTIONS(2639), - [anon_sym_class] = ACTIONS(2639), - [anon_sym_struct] = ACTIONS(2639), - [anon_sym_union] = ACTIONS(2639), + [1778] = { + [sym_identifier] = ACTIONS(2839), + [aux_sym_preproc_def_token1] = ACTIONS(2839), + [aux_sym_preproc_if_token1] = ACTIONS(2839), + [aux_sym_preproc_if_token2] = ACTIONS(2839), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2839), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2839), + [aux_sym_preproc_else_token1] = ACTIONS(2839), + [aux_sym_preproc_elif_token1] = ACTIONS(2839), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2839), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2839), + [sym_preproc_directive] = ACTIONS(2839), + [anon_sym_LPAREN2] = ACTIONS(2841), + [anon_sym_TILDE] = ACTIONS(2841), + [anon_sym_STAR] = ACTIONS(2841), + [anon_sym_AMP_AMP] = ACTIONS(2841), + [anon_sym_AMP] = ACTIONS(2839), + [anon_sym_SEMI] = ACTIONS(2841), + [anon_sym___extension__] = ACTIONS(2839), + [anon_sym_typedef] = ACTIONS(2839), + [anon_sym_virtual] = ACTIONS(2839), + [anon_sym_extern] = ACTIONS(2839), + [anon_sym___attribute__] = ACTIONS(2839), + [anon_sym___attribute] = ACTIONS(2839), + [anon_sym_using] = ACTIONS(2839), + [anon_sym_COLON_COLON] = ACTIONS(2841), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2841), + [anon_sym___declspec] = ACTIONS(2839), + [anon_sym___based] = ACTIONS(2839), + [anon_sym_signed] = ACTIONS(2839), + [anon_sym_unsigned] = ACTIONS(2839), + [anon_sym_long] = ACTIONS(2839), + [anon_sym_short] = ACTIONS(2839), + [anon_sym_LBRACK] = ACTIONS(2839), + [anon_sym_static] = ACTIONS(2839), + [anon_sym_register] = ACTIONS(2839), + [anon_sym_inline] = ACTIONS(2839), + [anon_sym___inline] = ACTIONS(2839), + [anon_sym___inline__] = ACTIONS(2839), + [anon_sym___forceinline] = ACTIONS(2839), + [anon_sym_thread_local] = ACTIONS(2839), + [anon_sym___thread] = ACTIONS(2839), + [anon_sym_const] = ACTIONS(2839), + [anon_sym_constexpr] = ACTIONS(2839), + [anon_sym_volatile] = ACTIONS(2839), + [anon_sym_restrict] = ACTIONS(2839), + [anon_sym___restrict__] = ACTIONS(2839), + [anon_sym__Atomic] = ACTIONS(2839), + [anon_sym__Noreturn] = ACTIONS(2839), + [anon_sym_noreturn] = ACTIONS(2839), + [anon_sym__Nonnull] = ACTIONS(2839), + [anon_sym_mutable] = ACTIONS(2839), + [anon_sym_constinit] = ACTIONS(2839), + [anon_sym_consteval] = ACTIONS(2839), + [anon_sym_alignas] = ACTIONS(2839), + [anon_sym__Alignas] = ACTIONS(2839), + [sym_primitive_type] = ACTIONS(2839), + [anon_sym_enum] = ACTIONS(2839), + [anon_sym_class] = ACTIONS(2839), + [anon_sym_struct] = ACTIONS(2839), + [anon_sym_union] = ACTIONS(2839), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2639), - [anon_sym_decltype] = ACTIONS(2639), - [anon_sym_explicit] = ACTIONS(2639), - [anon_sym_typename] = ACTIONS(2639), - [anon_sym_private] = ACTIONS(2639), - [anon_sym_template] = ACTIONS(2639), - [anon_sym_operator] = ACTIONS(2639), - [anon_sym_friend] = ACTIONS(2639), - [anon_sym_public] = ACTIONS(2639), - [anon_sym_protected] = ACTIONS(2639), - [anon_sym_static_assert] = ACTIONS(2639), + [sym_auto] = ACTIONS(2839), + [anon_sym_decltype] = ACTIONS(2839), + [anon_sym_explicit] = ACTIONS(2839), + [anon_sym_typename] = ACTIONS(2839), + [anon_sym_private] = ACTIONS(2839), + [anon_sym_template] = ACTIONS(2839), + [anon_sym_operator] = ACTIONS(2839), + [anon_sym_friend] = ACTIONS(2839), + [anon_sym_public] = ACTIONS(2839), + [anon_sym_protected] = ACTIONS(2839), + [anon_sym_static_assert] = ACTIONS(2839), }, - [1734] = { - [sym__declaration_modifiers] = STATE(3282), - [sym_attribute_specifier] = STATE(3282), - [sym_attribute_declaration] = STATE(3282), - [sym_ms_declspec_modifier] = STATE(3282), - [sym_ms_based_modifier] = STATE(8682), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6257), - [sym_array_declarator] = STATE(5998), - [sym_storage_class_specifier] = STATE(3282), - [sym_type_qualifier] = STATE(3282), - [sym_alignas_qualifier] = STATE(2975), - [sym_decltype] = STATE(8601), - [sym_explicit_function_specifier] = STATE(3282), - [sym_operator_cast] = STATE(6801), - [sym__constructor_specifiers] = STATE(3282), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(8601), - [sym_template_function] = STATE(5998), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5591), - [sym_qualified_identifier] = STATE(5998), - [sym_qualified_operator_cast_identifier] = STATE(6801), - [sym_operator_name] = STATE(5998), - [aux_sym_operator_cast_definition_repeat1] = STATE(3282), - [sym_identifier] = ACTIONS(5460), - [anon_sym_LPAREN2] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2979), - [anon_sym_STAR] = ACTIONS(2981), + [1779] = { + [sym__declaration_modifiers] = STATE(3363), + [sym_attribute_specifier] = STATE(3363), + [sym_attribute_declaration] = STATE(3363), + [sym_ms_declspec_modifier] = STATE(3363), + [sym_ms_based_modifier] = STATE(8864), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6365), + [sym_array_declarator] = STATE(6145), + [sym_storage_class_specifier] = STATE(3363), + [sym_type_qualifier] = STATE(3363), + [sym_alignas_qualifier] = STATE(3054), + [sym_decltype] = STATE(8569), + [sym_explicit_function_specifier] = STATE(3363), + [sym_operator_cast] = STATE(6923), + [sym__constructor_specifiers] = STATE(3363), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(8569), + [sym_template_function] = STATE(6145), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5569), + [sym_qualified_identifier] = STATE(6145), + [sym_qualified_operator_cast_identifier] = STATE(6923), + [sym_operator_name] = STATE(6145), + [aux_sym_operator_cast_definition_repeat1] = STATE(3363), + [sym_identifier] = ACTIONS(5481), + [anon_sym_LPAREN2] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(3001), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2983), - [anon_sym___extension__] = ACTIONS(5462), - [anon_sym_virtual] = ACTIONS(5464), - [anon_sym_extern] = ACTIONS(5466), - [anon_sym___attribute__] = ACTIONS(5468), - [anon_sym___attribute] = ACTIONS(5468), - [anon_sym_COLON_COLON] = ACTIONS(5470), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5472), - [anon_sym___declspec] = ACTIONS(5474), + [anon_sym_AMP] = ACTIONS(3003), + [anon_sym___extension__] = ACTIONS(5483), + [anon_sym_virtual] = ACTIONS(5485), + [anon_sym_extern] = ACTIONS(5487), + [anon_sym___attribute__] = ACTIONS(5489), + [anon_sym___attribute] = ACTIONS(5489), + [anon_sym_COLON_COLON] = ACTIONS(5491), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5493), + [anon_sym___declspec] = ACTIONS(5495), [anon_sym___based] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(2995), - [anon_sym_static] = ACTIONS(5466), - [anon_sym_register] = ACTIONS(5466), - [anon_sym_inline] = ACTIONS(5466), - [anon_sym___inline] = ACTIONS(5466), - [anon_sym___inline__] = ACTIONS(5466), - [anon_sym___forceinline] = ACTIONS(5466), - [anon_sym_thread_local] = ACTIONS(5466), - [anon_sym___thread] = ACTIONS(5466), - [anon_sym_const] = ACTIONS(5462), - [anon_sym_constexpr] = ACTIONS(5462), - [anon_sym_volatile] = ACTIONS(5462), - [anon_sym_restrict] = ACTIONS(5462), - [anon_sym___restrict__] = ACTIONS(5462), - [anon_sym__Atomic] = ACTIONS(5462), - [anon_sym__Noreturn] = ACTIONS(5462), - [anon_sym_noreturn] = ACTIONS(5462), - [anon_sym__Nonnull] = ACTIONS(5462), - [anon_sym_mutable] = ACTIONS(5462), - [anon_sym_constinit] = ACTIONS(5462), - [anon_sym_consteval] = ACTIONS(5462), - [anon_sym_alignas] = ACTIONS(5476), - [anon_sym__Alignas] = ACTIONS(5476), + [anon_sym_LBRACK] = ACTIONS(3015), + [anon_sym_static] = ACTIONS(5487), + [anon_sym_register] = ACTIONS(5487), + [anon_sym_inline] = ACTIONS(5487), + [anon_sym___inline] = ACTIONS(5487), + [anon_sym___inline__] = ACTIONS(5487), + [anon_sym___forceinline] = ACTIONS(5487), + [anon_sym_thread_local] = ACTIONS(5487), + [anon_sym___thread] = ACTIONS(5487), + [anon_sym_const] = ACTIONS(5483), + [anon_sym_constexpr] = ACTIONS(5483), + [anon_sym_volatile] = ACTIONS(5483), + [anon_sym_restrict] = ACTIONS(5483), + [anon_sym___restrict__] = ACTIONS(5483), + [anon_sym__Atomic] = ACTIONS(5483), + [anon_sym__Noreturn] = ACTIONS(5483), + [anon_sym_noreturn] = ACTIONS(5483), + [anon_sym__Nonnull] = ACTIONS(5483), + [anon_sym_mutable] = ACTIONS(5483), + [anon_sym_constinit] = ACTIONS(5483), + [anon_sym_consteval] = ACTIONS(5483), + [anon_sym_alignas] = ACTIONS(5497), + [anon_sym__Alignas] = ACTIONS(5497), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_explicit] = ACTIONS(129), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_operator] = ACTIONS(141), }, - [1735] = { - [sym_identifier] = ACTIONS(2955), - [aux_sym_preproc_def_token1] = ACTIONS(2955), - [aux_sym_preproc_if_token1] = ACTIONS(2955), - [aux_sym_preproc_if_token2] = ACTIONS(2955), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2955), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2955), - [aux_sym_preproc_else_token1] = ACTIONS(2955), - [aux_sym_preproc_elif_token1] = ACTIONS(2955), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2955), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2955), - [sym_preproc_directive] = ACTIONS(2955), - [anon_sym_LPAREN2] = ACTIONS(2957), - [anon_sym_TILDE] = ACTIONS(2957), - [anon_sym_STAR] = ACTIONS(2957), - [anon_sym_AMP_AMP] = ACTIONS(2957), - [anon_sym_AMP] = ACTIONS(2955), - [anon_sym_SEMI] = ACTIONS(2957), - [anon_sym___extension__] = ACTIONS(2955), - [anon_sym_typedef] = ACTIONS(2955), - [anon_sym_virtual] = ACTIONS(2955), - [anon_sym_extern] = ACTIONS(2955), - [anon_sym___attribute__] = ACTIONS(2955), - [anon_sym___attribute] = ACTIONS(2955), - [anon_sym_using] = ACTIONS(2955), - [anon_sym_COLON_COLON] = ACTIONS(2957), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2957), - [anon_sym___declspec] = ACTIONS(2955), - [anon_sym___based] = ACTIONS(2955), - [anon_sym_signed] = ACTIONS(2955), - [anon_sym_unsigned] = ACTIONS(2955), - [anon_sym_long] = ACTIONS(2955), - [anon_sym_short] = ACTIONS(2955), - [anon_sym_LBRACK] = ACTIONS(2955), - [anon_sym_static] = ACTIONS(2955), - [anon_sym_register] = ACTIONS(2955), - [anon_sym_inline] = ACTIONS(2955), - [anon_sym___inline] = ACTIONS(2955), - [anon_sym___inline__] = ACTIONS(2955), - [anon_sym___forceinline] = ACTIONS(2955), - [anon_sym_thread_local] = ACTIONS(2955), - [anon_sym___thread] = ACTIONS(2955), - [anon_sym_const] = ACTIONS(2955), - [anon_sym_constexpr] = ACTIONS(2955), - [anon_sym_volatile] = ACTIONS(2955), - [anon_sym_restrict] = ACTIONS(2955), - [anon_sym___restrict__] = ACTIONS(2955), - [anon_sym__Atomic] = ACTIONS(2955), - [anon_sym__Noreturn] = ACTIONS(2955), - [anon_sym_noreturn] = ACTIONS(2955), - [anon_sym__Nonnull] = ACTIONS(2955), - [anon_sym_mutable] = ACTIONS(2955), - [anon_sym_constinit] = ACTIONS(2955), - [anon_sym_consteval] = ACTIONS(2955), - [anon_sym_alignas] = ACTIONS(2955), - [anon_sym__Alignas] = ACTIONS(2955), - [sym_primitive_type] = ACTIONS(2955), - [anon_sym_enum] = ACTIONS(2955), - [anon_sym_class] = ACTIONS(2955), - [anon_sym_struct] = ACTIONS(2955), - [anon_sym_union] = ACTIONS(2955), + [1780] = { + [sym_identifier] = ACTIONS(2855), + [aux_sym_preproc_def_token1] = ACTIONS(2855), + [aux_sym_preproc_if_token1] = ACTIONS(2855), + [aux_sym_preproc_if_token2] = ACTIONS(2855), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2855), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2855), + [aux_sym_preproc_else_token1] = ACTIONS(2855), + [aux_sym_preproc_elif_token1] = ACTIONS(2855), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2855), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2855), + [sym_preproc_directive] = ACTIONS(2855), + [anon_sym_LPAREN2] = ACTIONS(2857), + [anon_sym_TILDE] = ACTIONS(2857), + [anon_sym_STAR] = ACTIONS(2857), + [anon_sym_AMP_AMP] = ACTIONS(2857), + [anon_sym_AMP] = ACTIONS(2855), + [anon_sym_SEMI] = ACTIONS(2857), + [anon_sym___extension__] = ACTIONS(2855), + [anon_sym_typedef] = ACTIONS(2855), + [anon_sym_virtual] = ACTIONS(2855), + [anon_sym_extern] = ACTIONS(2855), + [anon_sym___attribute__] = ACTIONS(2855), + [anon_sym___attribute] = ACTIONS(2855), + [anon_sym_using] = ACTIONS(2855), + [anon_sym_COLON_COLON] = ACTIONS(2857), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2857), + [anon_sym___declspec] = ACTIONS(2855), + [anon_sym___based] = ACTIONS(2855), + [anon_sym_signed] = ACTIONS(2855), + [anon_sym_unsigned] = ACTIONS(2855), + [anon_sym_long] = ACTIONS(2855), + [anon_sym_short] = ACTIONS(2855), + [anon_sym_LBRACK] = ACTIONS(2855), + [anon_sym_static] = ACTIONS(2855), + [anon_sym_register] = ACTIONS(2855), + [anon_sym_inline] = ACTIONS(2855), + [anon_sym___inline] = ACTIONS(2855), + [anon_sym___inline__] = ACTIONS(2855), + [anon_sym___forceinline] = ACTIONS(2855), + [anon_sym_thread_local] = ACTIONS(2855), + [anon_sym___thread] = ACTIONS(2855), + [anon_sym_const] = ACTIONS(2855), + [anon_sym_constexpr] = ACTIONS(2855), + [anon_sym_volatile] = ACTIONS(2855), + [anon_sym_restrict] = ACTIONS(2855), + [anon_sym___restrict__] = ACTIONS(2855), + [anon_sym__Atomic] = ACTIONS(2855), + [anon_sym__Noreturn] = ACTIONS(2855), + [anon_sym_noreturn] = ACTIONS(2855), + [anon_sym__Nonnull] = ACTIONS(2855), + [anon_sym_mutable] = ACTIONS(2855), + [anon_sym_constinit] = ACTIONS(2855), + [anon_sym_consteval] = ACTIONS(2855), + [anon_sym_alignas] = ACTIONS(2855), + [anon_sym__Alignas] = ACTIONS(2855), + [sym_primitive_type] = ACTIONS(2855), + [anon_sym_enum] = ACTIONS(2855), + [anon_sym_class] = ACTIONS(2855), + [anon_sym_struct] = ACTIONS(2855), + [anon_sym_union] = ACTIONS(2855), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2955), - [anon_sym_decltype] = ACTIONS(2955), - [anon_sym_explicit] = ACTIONS(2955), - [anon_sym_typename] = ACTIONS(2955), - [anon_sym_private] = ACTIONS(2955), - [anon_sym_template] = ACTIONS(2955), - [anon_sym_operator] = ACTIONS(2955), - [anon_sym_friend] = ACTIONS(2955), - [anon_sym_public] = ACTIONS(2955), - [anon_sym_protected] = ACTIONS(2955), - [anon_sym_static_assert] = ACTIONS(2955), - }, - [1736] = { - [sym_identifier] = ACTIONS(5505), - [aux_sym_preproc_def_token1] = ACTIONS(5505), - [aux_sym_preproc_if_token1] = ACTIONS(5505), - [aux_sym_preproc_if_token2] = ACTIONS(5505), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5505), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5505), - [aux_sym_preproc_else_token1] = ACTIONS(5505), - [aux_sym_preproc_elif_token1] = ACTIONS(5505), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5505), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5505), - [sym_preproc_directive] = ACTIONS(5505), - [anon_sym_LPAREN2] = ACTIONS(5507), - [anon_sym_TILDE] = ACTIONS(5507), - [anon_sym_STAR] = ACTIONS(5507), - [anon_sym_AMP_AMP] = ACTIONS(5507), - [anon_sym_AMP] = ACTIONS(5505), - [anon_sym_SEMI] = ACTIONS(5507), - [anon_sym___extension__] = ACTIONS(5505), - [anon_sym_typedef] = ACTIONS(5505), - [anon_sym_virtual] = ACTIONS(5505), - [anon_sym_extern] = ACTIONS(5505), - [anon_sym___attribute__] = ACTIONS(5505), - [anon_sym___attribute] = ACTIONS(5505), - [anon_sym_using] = ACTIONS(5505), - [anon_sym_COLON_COLON] = ACTIONS(5507), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5507), - [anon_sym___declspec] = ACTIONS(5505), - [anon_sym___based] = ACTIONS(5505), - [anon_sym_signed] = ACTIONS(5505), - [anon_sym_unsigned] = ACTIONS(5505), - [anon_sym_long] = ACTIONS(5505), - [anon_sym_short] = ACTIONS(5505), - [anon_sym_LBRACK] = ACTIONS(5505), - [anon_sym_static] = ACTIONS(5505), - [anon_sym_register] = ACTIONS(5505), - [anon_sym_inline] = ACTIONS(5505), - [anon_sym___inline] = ACTIONS(5505), - [anon_sym___inline__] = ACTIONS(5505), - [anon_sym___forceinline] = ACTIONS(5505), - [anon_sym_thread_local] = ACTIONS(5505), - [anon_sym___thread] = ACTIONS(5505), - [anon_sym_const] = ACTIONS(5505), - [anon_sym_constexpr] = ACTIONS(5505), - [anon_sym_volatile] = ACTIONS(5505), - [anon_sym_restrict] = ACTIONS(5505), - [anon_sym___restrict__] = ACTIONS(5505), - [anon_sym__Atomic] = ACTIONS(5505), - [anon_sym__Noreturn] = ACTIONS(5505), - [anon_sym_noreturn] = ACTIONS(5505), - [anon_sym__Nonnull] = ACTIONS(5505), - [anon_sym_mutable] = ACTIONS(5505), - [anon_sym_constinit] = ACTIONS(5505), - [anon_sym_consteval] = ACTIONS(5505), - [anon_sym_alignas] = ACTIONS(5505), - [anon_sym__Alignas] = ACTIONS(5505), - [sym_primitive_type] = ACTIONS(5505), - [anon_sym_enum] = ACTIONS(5505), - [anon_sym_class] = ACTIONS(5505), - [anon_sym_struct] = ACTIONS(5505), - [anon_sym_union] = ACTIONS(5505), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5505), - [anon_sym_decltype] = ACTIONS(5505), - [anon_sym_explicit] = ACTIONS(5505), - [anon_sym_typename] = ACTIONS(5505), - [anon_sym_private] = ACTIONS(5505), - [anon_sym_template] = ACTIONS(5505), - [anon_sym_operator] = ACTIONS(5505), - [anon_sym_friend] = ACTIONS(5505), - [anon_sym_public] = ACTIONS(5505), - [anon_sym_protected] = ACTIONS(5505), - [anon_sym_static_assert] = ACTIONS(5505), - }, - [1737] = { - [sym_identifier] = ACTIONS(5509), - [aux_sym_preproc_def_token1] = ACTIONS(5509), - [aux_sym_preproc_if_token1] = ACTIONS(5509), - [aux_sym_preproc_if_token2] = ACTIONS(5509), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5509), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5509), - [aux_sym_preproc_else_token1] = ACTIONS(5509), - [aux_sym_preproc_elif_token1] = ACTIONS(5509), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5509), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5509), - [sym_preproc_directive] = ACTIONS(5509), - [anon_sym_LPAREN2] = ACTIONS(5511), - [anon_sym_TILDE] = ACTIONS(5511), - [anon_sym_STAR] = ACTIONS(5511), - [anon_sym_AMP_AMP] = ACTIONS(5511), - [anon_sym_AMP] = ACTIONS(5509), - [anon_sym_SEMI] = ACTIONS(5511), - [anon_sym___extension__] = ACTIONS(5509), - [anon_sym_typedef] = ACTIONS(5509), - [anon_sym_virtual] = ACTIONS(5509), - [anon_sym_extern] = ACTIONS(5509), - [anon_sym___attribute__] = ACTIONS(5509), - [anon_sym___attribute] = ACTIONS(5509), - [anon_sym_using] = ACTIONS(5509), - [anon_sym_COLON_COLON] = ACTIONS(5511), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5511), - [anon_sym___declspec] = ACTIONS(5509), - [anon_sym___based] = ACTIONS(5509), - [anon_sym_signed] = ACTIONS(5509), - [anon_sym_unsigned] = ACTIONS(5509), - [anon_sym_long] = ACTIONS(5509), - [anon_sym_short] = ACTIONS(5509), - [anon_sym_LBRACK] = ACTIONS(5509), - [anon_sym_static] = ACTIONS(5509), - [anon_sym_register] = ACTIONS(5509), - [anon_sym_inline] = ACTIONS(5509), - [anon_sym___inline] = ACTIONS(5509), - [anon_sym___inline__] = ACTIONS(5509), - [anon_sym___forceinline] = ACTIONS(5509), - [anon_sym_thread_local] = ACTIONS(5509), - [anon_sym___thread] = ACTIONS(5509), - [anon_sym_const] = ACTIONS(5509), - [anon_sym_constexpr] = ACTIONS(5509), - [anon_sym_volatile] = ACTIONS(5509), - [anon_sym_restrict] = ACTIONS(5509), - [anon_sym___restrict__] = ACTIONS(5509), - [anon_sym__Atomic] = ACTIONS(5509), - [anon_sym__Noreturn] = ACTIONS(5509), - [anon_sym_noreturn] = ACTIONS(5509), - [anon_sym__Nonnull] = ACTIONS(5509), - [anon_sym_mutable] = ACTIONS(5509), - [anon_sym_constinit] = ACTIONS(5509), - [anon_sym_consteval] = ACTIONS(5509), - [anon_sym_alignas] = ACTIONS(5509), - [anon_sym__Alignas] = ACTIONS(5509), - [sym_primitive_type] = ACTIONS(5509), - [anon_sym_enum] = ACTIONS(5509), - [anon_sym_class] = ACTIONS(5509), - [anon_sym_struct] = ACTIONS(5509), - [anon_sym_union] = ACTIONS(5509), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5509), - [anon_sym_decltype] = ACTIONS(5509), - [anon_sym_explicit] = ACTIONS(5509), - [anon_sym_typename] = ACTIONS(5509), - [anon_sym_private] = ACTIONS(5509), - [anon_sym_template] = ACTIONS(5509), - [anon_sym_operator] = ACTIONS(5509), - [anon_sym_friend] = ACTIONS(5509), - [anon_sym_public] = ACTIONS(5509), - [anon_sym_protected] = ACTIONS(5509), - [anon_sym_static_assert] = ACTIONS(5509), - }, - [1738] = { - [sym_identifier] = ACTIONS(5513), - [aux_sym_preproc_def_token1] = ACTIONS(5513), - [aux_sym_preproc_if_token1] = ACTIONS(5513), - [aux_sym_preproc_if_token2] = ACTIONS(5513), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5513), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5513), - [aux_sym_preproc_else_token1] = ACTIONS(5513), - [aux_sym_preproc_elif_token1] = ACTIONS(5513), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5513), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5513), - [sym_preproc_directive] = ACTIONS(5513), - [anon_sym_LPAREN2] = ACTIONS(5515), - [anon_sym_TILDE] = ACTIONS(5515), - [anon_sym_STAR] = ACTIONS(5515), - [anon_sym_AMP_AMP] = ACTIONS(5515), - [anon_sym_AMP] = ACTIONS(5513), - [anon_sym_SEMI] = ACTIONS(5515), - [anon_sym___extension__] = ACTIONS(5513), - [anon_sym_typedef] = ACTIONS(5513), - [anon_sym_virtual] = ACTIONS(5513), - [anon_sym_extern] = ACTIONS(5513), - [anon_sym___attribute__] = ACTIONS(5513), - [anon_sym___attribute] = ACTIONS(5513), - [anon_sym_using] = ACTIONS(5513), - [anon_sym_COLON_COLON] = ACTIONS(5515), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5515), - [anon_sym___declspec] = ACTIONS(5513), - [anon_sym___based] = ACTIONS(5513), - [anon_sym_signed] = ACTIONS(5513), - [anon_sym_unsigned] = ACTIONS(5513), - [anon_sym_long] = ACTIONS(5513), - [anon_sym_short] = ACTIONS(5513), - [anon_sym_LBRACK] = ACTIONS(5513), - [anon_sym_static] = ACTIONS(5513), - [anon_sym_register] = ACTIONS(5513), - [anon_sym_inline] = ACTIONS(5513), - [anon_sym___inline] = ACTIONS(5513), - [anon_sym___inline__] = ACTIONS(5513), - [anon_sym___forceinline] = ACTIONS(5513), - [anon_sym_thread_local] = ACTIONS(5513), - [anon_sym___thread] = ACTIONS(5513), - [anon_sym_const] = ACTIONS(5513), - [anon_sym_constexpr] = ACTIONS(5513), - [anon_sym_volatile] = ACTIONS(5513), - [anon_sym_restrict] = ACTIONS(5513), - [anon_sym___restrict__] = ACTIONS(5513), - [anon_sym__Atomic] = ACTIONS(5513), - [anon_sym__Noreturn] = ACTIONS(5513), - [anon_sym_noreturn] = ACTIONS(5513), - [anon_sym__Nonnull] = ACTIONS(5513), - [anon_sym_mutable] = ACTIONS(5513), - [anon_sym_constinit] = ACTIONS(5513), - [anon_sym_consteval] = ACTIONS(5513), - [anon_sym_alignas] = ACTIONS(5513), - [anon_sym__Alignas] = ACTIONS(5513), - [sym_primitive_type] = ACTIONS(5513), - [anon_sym_enum] = ACTIONS(5513), - [anon_sym_class] = ACTIONS(5513), - [anon_sym_struct] = ACTIONS(5513), - [anon_sym_union] = ACTIONS(5513), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5513), - [anon_sym_decltype] = ACTIONS(5513), - [anon_sym_explicit] = ACTIONS(5513), - [anon_sym_typename] = ACTIONS(5513), - [anon_sym_private] = ACTIONS(5513), - [anon_sym_template] = ACTIONS(5513), - [anon_sym_operator] = ACTIONS(5513), - [anon_sym_friend] = ACTIONS(5513), - [anon_sym_public] = ACTIONS(5513), - [anon_sym_protected] = ACTIONS(5513), - [anon_sym_static_assert] = ACTIONS(5513), + [sym_auto] = ACTIONS(2855), + [anon_sym_decltype] = ACTIONS(2855), + [anon_sym_explicit] = ACTIONS(2855), + [anon_sym_typename] = ACTIONS(2855), + [anon_sym_private] = ACTIONS(2855), + [anon_sym_template] = ACTIONS(2855), + [anon_sym_operator] = ACTIONS(2855), + [anon_sym_friend] = ACTIONS(2855), + [anon_sym_public] = ACTIONS(2855), + [anon_sym_protected] = ACTIONS(2855), + [anon_sym_static_assert] = ACTIONS(2855), }, - [1739] = { - [sym_identifier] = ACTIONS(2651), - [aux_sym_preproc_def_token1] = ACTIONS(2651), - [aux_sym_preproc_if_token1] = ACTIONS(2651), - [aux_sym_preproc_if_token2] = ACTIONS(2651), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2651), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2651), - [aux_sym_preproc_else_token1] = ACTIONS(2651), - [aux_sym_preproc_elif_token1] = ACTIONS(2651), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2651), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2651), - [sym_preproc_directive] = ACTIONS(2651), - [anon_sym_LPAREN2] = ACTIONS(2653), - [anon_sym_TILDE] = ACTIONS(2653), - [anon_sym_STAR] = ACTIONS(2653), - [anon_sym_AMP_AMP] = ACTIONS(2653), - [anon_sym_AMP] = ACTIONS(2651), - [anon_sym_SEMI] = ACTIONS(2653), - [anon_sym___extension__] = ACTIONS(2651), - [anon_sym_typedef] = ACTIONS(2651), - [anon_sym_virtual] = ACTIONS(2651), - [anon_sym_extern] = ACTIONS(2651), - [anon_sym___attribute__] = ACTIONS(2651), - [anon_sym___attribute] = ACTIONS(2651), - [anon_sym_using] = ACTIONS(2651), - [anon_sym_COLON_COLON] = ACTIONS(2653), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2653), - [anon_sym___declspec] = ACTIONS(2651), - [anon_sym___based] = ACTIONS(2651), - [anon_sym_signed] = ACTIONS(2651), - [anon_sym_unsigned] = ACTIONS(2651), - [anon_sym_long] = ACTIONS(2651), - [anon_sym_short] = ACTIONS(2651), - [anon_sym_LBRACK] = ACTIONS(2651), - [anon_sym_static] = ACTIONS(2651), - [anon_sym_register] = ACTIONS(2651), - [anon_sym_inline] = ACTIONS(2651), - [anon_sym___inline] = ACTIONS(2651), - [anon_sym___inline__] = ACTIONS(2651), - [anon_sym___forceinline] = ACTIONS(2651), - [anon_sym_thread_local] = ACTIONS(2651), - [anon_sym___thread] = ACTIONS(2651), - [anon_sym_const] = ACTIONS(2651), - [anon_sym_constexpr] = ACTIONS(2651), - [anon_sym_volatile] = ACTIONS(2651), - [anon_sym_restrict] = ACTIONS(2651), - [anon_sym___restrict__] = ACTIONS(2651), - [anon_sym__Atomic] = ACTIONS(2651), - [anon_sym__Noreturn] = ACTIONS(2651), - [anon_sym_noreturn] = ACTIONS(2651), - [anon_sym__Nonnull] = ACTIONS(2651), - [anon_sym_mutable] = ACTIONS(2651), - [anon_sym_constinit] = ACTIONS(2651), - [anon_sym_consteval] = ACTIONS(2651), - [anon_sym_alignas] = ACTIONS(2651), - [anon_sym__Alignas] = ACTIONS(2651), - [sym_primitive_type] = ACTIONS(2651), - [anon_sym_enum] = ACTIONS(2651), - [anon_sym_class] = ACTIONS(2651), - [anon_sym_struct] = ACTIONS(2651), - [anon_sym_union] = ACTIONS(2651), + [1781] = { + [sym_identifier] = ACTIONS(2855), + [aux_sym_preproc_def_token1] = ACTIONS(2855), + [aux_sym_preproc_if_token1] = ACTIONS(2855), + [aux_sym_preproc_if_token2] = ACTIONS(2855), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2855), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2855), + [aux_sym_preproc_else_token1] = ACTIONS(2855), + [aux_sym_preproc_elif_token1] = ACTIONS(2855), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2855), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2855), + [sym_preproc_directive] = ACTIONS(2855), + [anon_sym_LPAREN2] = ACTIONS(2857), + [anon_sym_TILDE] = ACTIONS(2857), + [anon_sym_STAR] = ACTIONS(2857), + [anon_sym_AMP_AMP] = ACTIONS(2857), + [anon_sym_AMP] = ACTIONS(2855), + [anon_sym_SEMI] = ACTIONS(2857), + [anon_sym___extension__] = ACTIONS(2855), + [anon_sym_typedef] = ACTIONS(2855), + [anon_sym_virtual] = ACTIONS(2855), + [anon_sym_extern] = ACTIONS(2855), + [anon_sym___attribute__] = ACTIONS(2855), + [anon_sym___attribute] = ACTIONS(2855), + [anon_sym_using] = ACTIONS(2855), + [anon_sym_COLON_COLON] = ACTIONS(2857), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2857), + [anon_sym___declspec] = ACTIONS(2855), + [anon_sym___based] = ACTIONS(2855), + [anon_sym_signed] = ACTIONS(2855), + [anon_sym_unsigned] = ACTIONS(2855), + [anon_sym_long] = ACTIONS(2855), + [anon_sym_short] = ACTIONS(2855), + [anon_sym_LBRACK] = ACTIONS(2855), + [anon_sym_static] = ACTIONS(2855), + [anon_sym_register] = ACTIONS(2855), + [anon_sym_inline] = ACTIONS(2855), + [anon_sym___inline] = ACTIONS(2855), + [anon_sym___inline__] = ACTIONS(2855), + [anon_sym___forceinline] = ACTIONS(2855), + [anon_sym_thread_local] = ACTIONS(2855), + [anon_sym___thread] = ACTIONS(2855), + [anon_sym_const] = ACTIONS(2855), + [anon_sym_constexpr] = ACTIONS(2855), + [anon_sym_volatile] = ACTIONS(2855), + [anon_sym_restrict] = ACTIONS(2855), + [anon_sym___restrict__] = ACTIONS(2855), + [anon_sym__Atomic] = ACTIONS(2855), + [anon_sym__Noreturn] = ACTIONS(2855), + [anon_sym_noreturn] = ACTIONS(2855), + [anon_sym__Nonnull] = ACTIONS(2855), + [anon_sym_mutable] = ACTIONS(2855), + [anon_sym_constinit] = ACTIONS(2855), + [anon_sym_consteval] = ACTIONS(2855), + [anon_sym_alignas] = ACTIONS(2855), + [anon_sym__Alignas] = ACTIONS(2855), + [sym_primitive_type] = ACTIONS(2855), + [anon_sym_enum] = ACTIONS(2855), + [anon_sym_class] = ACTIONS(2855), + [anon_sym_struct] = ACTIONS(2855), + [anon_sym_union] = ACTIONS(2855), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2651), - [anon_sym_decltype] = ACTIONS(2651), - [anon_sym_explicit] = ACTIONS(2651), - [anon_sym_typename] = ACTIONS(2651), - [anon_sym_private] = ACTIONS(2651), - [anon_sym_template] = ACTIONS(2651), - [anon_sym_operator] = ACTIONS(2651), - [anon_sym_friend] = ACTIONS(2651), - [anon_sym_public] = ACTIONS(2651), - [anon_sym_protected] = ACTIONS(2651), - [anon_sym_static_assert] = ACTIONS(2651), + [sym_auto] = ACTIONS(2855), + [anon_sym_decltype] = ACTIONS(2855), + [anon_sym_explicit] = ACTIONS(2855), + [anon_sym_typename] = ACTIONS(2855), + [anon_sym_private] = ACTIONS(2855), + [anon_sym_template] = ACTIONS(2855), + [anon_sym_operator] = ACTIONS(2855), + [anon_sym_friend] = ACTIONS(2855), + [anon_sym_public] = ACTIONS(2855), + [anon_sym_protected] = ACTIONS(2855), + [anon_sym_static_assert] = ACTIONS(2855), }, - [1740] = { - [sym_identifier] = ACTIONS(3079), - [aux_sym_preproc_def_token1] = ACTIONS(3079), - [aux_sym_preproc_if_token1] = ACTIONS(3079), - [aux_sym_preproc_if_token2] = ACTIONS(3079), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3079), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3079), - [aux_sym_preproc_else_token1] = ACTIONS(3079), - [aux_sym_preproc_elif_token1] = ACTIONS(3079), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3079), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3079), - [sym_preproc_directive] = ACTIONS(3079), - [anon_sym_LPAREN2] = ACTIONS(3081), - [anon_sym_TILDE] = ACTIONS(3081), - [anon_sym_STAR] = ACTIONS(3081), - [anon_sym_AMP_AMP] = ACTIONS(3081), - [anon_sym_AMP] = ACTIONS(3079), - [anon_sym_SEMI] = ACTIONS(3081), - [anon_sym___extension__] = ACTIONS(3079), - [anon_sym_typedef] = ACTIONS(3079), - [anon_sym_virtual] = ACTIONS(3079), - [anon_sym_extern] = ACTIONS(3079), - [anon_sym___attribute__] = ACTIONS(3079), - [anon_sym___attribute] = ACTIONS(3079), - [anon_sym_using] = ACTIONS(3079), - [anon_sym_COLON_COLON] = ACTIONS(3081), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3081), - [anon_sym___declspec] = ACTIONS(3079), - [anon_sym___based] = ACTIONS(3079), - [anon_sym_signed] = ACTIONS(3079), - [anon_sym_unsigned] = ACTIONS(3079), - [anon_sym_long] = ACTIONS(3079), - [anon_sym_short] = ACTIONS(3079), - [anon_sym_LBRACK] = ACTIONS(3079), - [anon_sym_static] = ACTIONS(3079), - [anon_sym_register] = ACTIONS(3079), - [anon_sym_inline] = ACTIONS(3079), - [anon_sym___inline] = ACTIONS(3079), - [anon_sym___inline__] = ACTIONS(3079), - [anon_sym___forceinline] = ACTIONS(3079), - [anon_sym_thread_local] = ACTIONS(3079), - [anon_sym___thread] = ACTIONS(3079), - [anon_sym_const] = ACTIONS(3079), - [anon_sym_constexpr] = ACTIONS(3079), - [anon_sym_volatile] = ACTIONS(3079), - [anon_sym_restrict] = ACTIONS(3079), - [anon_sym___restrict__] = ACTIONS(3079), - [anon_sym__Atomic] = ACTIONS(3079), - [anon_sym__Noreturn] = ACTIONS(3079), - [anon_sym_noreturn] = ACTIONS(3079), - [anon_sym__Nonnull] = ACTIONS(3079), - [anon_sym_mutable] = ACTIONS(3079), - [anon_sym_constinit] = ACTIONS(3079), - [anon_sym_consteval] = ACTIONS(3079), - [anon_sym_alignas] = ACTIONS(3079), - [anon_sym__Alignas] = ACTIONS(3079), - [sym_primitive_type] = ACTIONS(3079), - [anon_sym_enum] = ACTIONS(3079), - [anon_sym_class] = ACTIONS(3079), - [anon_sym_struct] = ACTIONS(3079), - [anon_sym_union] = ACTIONS(3079), + [1782] = { + [sym_identifier] = ACTIONS(5515), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5517), + [anon_sym_COMMA] = ACTIONS(5517), + [anon_sym_RPAREN] = ACTIONS(5517), + [anon_sym_LPAREN2] = ACTIONS(5517), + [anon_sym_DASH] = ACTIONS(5515), + [anon_sym_PLUS] = ACTIONS(5515), + [anon_sym_STAR] = ACTIONS(5517), + [anon_sym_SLASH] = ACTIONS(5515), + [anon_sym_PERCENT] = ACTIONS(5517), + [anon_sym_PIPE_PIPE] = ACTIONS(5517), + [anon_sym_AMP_AMP] = ACTIONS(5517), + [anon_sym_PIPE] = ACTIONS(5515), + [anon_sym_CARET] = ACTIONS(5517), + [anon_sym_AMP] = ACTIONS(5515), + [anon_sym_EQ_EQ] = ACTIONS(5517), + [anon_sym_BANG_EQ] = ACTIONS(5517), + [anon_sym_GT] = ACTIONS(5515), + [anon_sym_GT_EQ] = ACTIONS(5517), + [anon_sym_LT_EQ] = ACTIONS(5515), + [anon_sym_LT] = ACTIONS(5515), + [anon_sym_LT_LT] = ACTIONS(5517), + [anon_sym_GT_GT] = ACTIONS(5517), + [anon_sym_SEMI] = ACTIONS(5517), + [anon_sym___extension__] = ACTIONS(5515), + [anon_sym___attribute__] = ACTIONS(5515), + [anon_sym___attribute] = ACTIONS(5515), + [anon_sym_COLON] = ACTIONS(5515), + [anon_sym_COLON_COLON] = ACTIONS(5519), + [anon_sym___based] = ACTIONS(5515), + [anon_sym_LBRACE] = ACTIONS(5517), + [anon_sym_RBRACE] = ACTIONS(5517), + [anon_sym_signed] = ACTIONS(5515), + [anon_sym_unsigned] = ACTIONS(5515), + [anon_sym_long] = ACTIONS(5515), + [anon_sym_short] = ACTIONS(5515), + [anon_sym_LBRACK] = ACTIONS(5517), + [anon_sym_RBRACK] = ACTIONS(5517), + [anon_sym_const] = ACTIONS(5515), + [anon_sym_constexpr] = ACTIONS(5515), + [anon_sym_volatile] = ACTIONS(5515), + [anon_sym_restrict] = ACTIONS(5515), + [anon_sym___restrict__] = ACTIONS(5515), + [anon_sym__Atomic] = ACTIONS(5515), + [anon_sym__Noreturn] = ACTIONS(5515), + [anon_sym_noreturn] = ACTIONS(5515), + [anon_sym__Nonnull] = ACTIONS(5515), + [anon_sym_mutable] = ACTIONS(5515), + [anon_sym_constinit] = ACTIONS(5515), + [anon_sym_consteval] = ACTIONS(5515), + [anon_sym_alignas] = ACTIONS(5515), + [anon_sym__Alignas] = ACTIONS(5515), + [sym_primitive_type] = ACTIONS(5515), + [anon_sym_QMARK] = ACTIONS(5517), + [anon_sym_LT_EQ_GT] = ACTIONS(5517), + [anon_sym_or] = ACTIONS(5515), + [anon_sym_and] = ACTIONS(5515), + [anon_sym_bitor] = ACTIONS(5515), + [anon_sym_xor] = ACTIONS(5515), + [anon_sym_bitand] = ACTIONS(5515), + [anon_sym_not_eq] = ACTIONS(5515), + [anon_sym_DASH_DASH] = ACTIONS(5517), + [anon_sym_PLUS_PLUS] = ACTIONS(5517), + [anon_sym_DOT] = ACTIONS(5515), + [anon_sym_DOT_STAR] = ACTIONS(5517), + [anon_sym_DASH_GT] = ACTIONS(5517), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5515), + [anon_sym_decltype] = ACTIONS(5515), + [anon_sym_final] = ACTIONS(5515), + [anon_sym_override] = ACTIONS(5515), + [anon_sym_requires] = ACTIONS(5515), + }, + [1783] = { + [sym_identifier] = ACTIONS(2859), + [aux_sym_preproc_def_token1] = ACTIONS(2859), + [aux_sym_preproc_if_token1] = ACTIONS(2859), + [aux_sym_preproc_if_token2] = ACTIONS(2859), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), + [aux_sym_preproc_else_token1] = ACTIONS(2859), + [aux_sym_preproc_elif_token1] = ACTIONS(2859), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2859), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2859), + [sym_preproc_directive] = ACTIONS(2859), + [anon_sym_LPAREN2] = ACTIONS(2861), + [anon_sym_TILDE] = ACTIONS(2861), + [anon_sym_STAR] = ACTIONS(2861), + [anon_sym_AMP_AMP] = ACTIONS(2861), + [anon_sym_AMP] = ACTIONS(2859), + [anon_sym_SEMI] = ACTIONS(2861), + [anon_sym___extension__] = ACTIONS(2859), + [anon_sym_typedef] = ACTIONS(2859), + [anon_sym_virtual] = ACTIONS(2859), + [anon_sym_extern] = ACTIONS(2859), + [anon_sym___attribute__] = ACTIONS(2859), + [anon_sym___attribute] = ACTIONS(2859), + [anon_sym_using] = ACTIONS(2859), + [anon_sym_COLON_COLON] = ACTIONS(2861), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), + [anon_sym___declspec] = ACTIONS(2859), + [anon_sym___based] = ACTIONS(2859), + [anon_sym_signed] = ACTIONS(2859), + [anon_sym_unsigned] = ACTIONS(2859), + [anon_sym_long] = ACTIONS(2859), + [anon_sym_short] = ACTIONS(2859), + [anon_sym_LBRACK] = ACTIONS(2859), + [anon_sym_static] = ACTIONS(2859), + [anon_sym_register] = ACTIONS(2859), + [anon_sym_inline] = ACTIONS(2859), + [anon_sym___inline] = ACTIONS(2859), + [anon_sym___inline__] = ACTIONS(2859), + [anon_sym___forceinline] = ACTIONS(2859), + [anon_sym_thread_local] = ACTIONS(2859), + [anon_sym___thread] = ACTIONS(2859), + [anon_sym_const] = ACTIONS(2859), + [anon_sym_constexpr] = ACTIONS(2859), + [anon_sym_volatile] = ACTIONS(2859), + [anon_sym_restrict] = ACTIONS(2859), + [anon_sym___restrict__] = ACTIONS(2859), + [anon_sym__Atomic] = ACTIONS(2859), + [anon_sym__Noreturn] = ACTIONS(2859), + [anon_sym_noreturn] = ACTIONS(2859), + [anon_sym__Nonnull] = ACTIONS(2859), + [anon_sym_mutable] = ACTIONS(2859), + [anon_sym_constinit] = ACTIONS(2859), + [anon_sym_consteval] = ACTIONS(2859), + [anon_sym_alignas] = ACTIONS(2859), + [anon_sym__Alignas] = ACTIONS(2859), + [sym_primitive_type] = ACTIONS(2859), + [anon_sym_enum] = ACTIONS(2859), + [anon_sym_class] = ACTIONS(2859), + [anon_sym_struct] = ACTIONS(2859), + [anon_sym_union] = ACTIONS(2859), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3079), - [anon_sym_decltype] = ACTIONS(3079), - [anon_sym_explicit] = ACTIONS(3079), - [anon_sym_typename] = ACTIONS(3079), - [anon_sym_private] = ACTIONS(3079), - [anon_sym_template] = ACTIONS(3079), - [anon_sym_operator] = ACTIONS(3079), - [anon_sym_friend] = ACTIONS(3079), - [anon_sym_public] = ACTIONS(3079), - [anon_sym_protected] = ACTIONS(3079), - [anon_sym_static_assert] = ACTIONS(3079), + [sym_auto] = ACTIONS(2859), + [anon_sym_decltype] = ACTIONS(2859), + [anon_sym_explicit] = ACTIONS(2859), + [anon_sym_typename] = ACTIONS(2859), + [anon_sym_private] = ACTIONS(2859), + [anon_sym_template] = ACTIONS(2859), + [anon_sym_operator] = ACTIONS(2859), + [anon_sym_friend] = ACTIONS(2859), + [anon_sym_public] = ACTIONS(2859), + [anon_sym_protected] = ACTIONS(2859), + [anon_sym_static_assert] = ACTIONS(2859), }, - [1741] = { - [sym_identifier] = ACTIONS(2703), - [aux_sym_preproc_def_token1] = ACTIONS(2703), - [aux_sym_preproc_if_token1] = ACTIONS(2703), - [aux_sym_preproc_if_token2] = ACTIONS(2703), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2703), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2703), - [aux_sym_preproc_else_token1] = ACTIONS(2703), - [aux_sym_preproc_elif_token1] = ACTIONS(2703), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2703), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2703), - [sym_preproc_directive] = ACTIONS(2703), - [anon_sym_LPAREN2] = ACTIONS(2705), - [anon_sym_TILDE] = ACTIONS(2705), - [anon_sym_STAR] = ACTIONS(2705), - [anon_sym_AMP_AMP] = ACTIONS(2705), - [anon_sym_AMP] = ACTIONS(2703), - [anon_sym_SEMI] = ACTIONS(2705), - [anon_sym___extension__] = ACTIONS(2703), - [anon_sym_typedef] = ACTIONS(2703), - [anon_sym_virtual] = ACTIONS(2703), - [anon_sym_extern] = ACTIONS(2703), - [anon_sym___attribute__] = ACTIONS(2703), - [anon_sym___attribute] = ACTIONS(2703), - [anon_sym_using] = ACTIONS(2703), - [anon_sym_COLON_COLON] = ACTIONS(2705), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2705), - [anon_sym___declspec] = ACTIONS(2703), - [anon_sym___based] = ACTIONS(2703), - [anon_sym_signed] = ACTIONS(2703), - [anon_sym_unsigned] = ACTIONS(2703), - [anon_sym_long] = ACTIONS(2703), - [anon_sym_short] = ACTIONS(2703), - [anon_sym_LBRACK] = ACTIONS(2703), - [anon_sym_static] = ACTIONS(2703), - [anon_sym_register] = ACTIONS(2703), - [anon_sym_inline] = ACTIONS(2703), - [anon_sym___inline] = ACTIONS(2703), - [anon_sym___inline__] = ACTIONS(2703), - [anon_sym___forceinline] = ACTIONS(2703), - [anon_sym_thread_local] = ACTIONS(2703), - [anon_sym___thread] = ACTIONS(2703), - [anon_sym_const] = ACTIONS(2703), - [anon_sym_constexpr] = ACTIONS(2703), - [anon_sym_volatile] = ACTIONS(2703), - [anon_sym_restrict] = ACTIONS(2703), - [anon_sym___restrict__] = ACTIONS(2703), - [anon_sym__Atomic] = ACTIONS(2703), - [anon_sym__Noreturn] = ACTIONS(2703), - [anon_sym_noreturn] = ACTIONS(2703), - [anon_sym__Nonnull] = ACTIONS(2703), - [anon_sym_mutable] = ACTIONS(2703), - [anon_sym_constinit] = ACTIONS(2703), - [anon_sym_consteval] = ACTIONS(2703), - [anon_sym_alignas] = ACTIONS(2703), - [anon_sym__Alignas] = ACTIONS(2703), - [sym_primitive_type] = ACTIONS(2703), - [anon_sym_enum] = ACTIONS(2703), - [anon_sym_class] = ACTIONS(2703), - [anon_sym_struct] = ACTIONS(2703), - [anon_sym_union] = ACTIONS(2703), + [1784] = { + [sym_identifier] = ACTIONS(5521), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5523), + [anon_sym_COMMA] = ACTIONS(5523), + [anon_sym_RPAREN] = ACTIONS(5523), + [anon_sym_LPAREN2] = ACTIONS(5523), + [anon_sym_DASH] = ACTIONS(5521), + [anon_sym_PLUS] = ACTIONS(5521), + [anon_sym_STAR] = ACTIONS(5523), + [anon_sym_SLASH] = ACTIONS(5521), + [anon_sym_PERCENT] = ACTIONS(5523), + [anon_sym_PIPE_PIPE] = ACTIONS(5523), + [anon_sym_AMP_AMP] = ACTIONS(5523), + [anon_sym_PIPE] = ACTIONS(5521), + [anon_sym_CARET] = ACTIONS(5523), + [anon_sym_AMP] = ACTIONS(5521), + [anon_sym_EQ_EQ] = ACTIONS(5523), + [anon_sym_BANG_EQ] = ACTIONS(5523), + [anon_sym_GT] = ACTIONS(5521), + [anon_sym_GT_EQ] = ACTIONS(5523), + [anon_sym_LT_EQ] = ACTIONS(5521), + [anon_sym_LT] = ACTIONS(5521), + [anon_sym_LT_LT] = ACTIONS(5523), + [anon_sym_GT_GT] = ACTIONS(5523), + [anon_sym_SEMI] = ACTIONS(5523), + [anon_sym___extension__] = ACTIONS(5521), + [anon_sym___attribute__] = ACTIONS(5521), + [anon_sym___attribute] = ACTIONS(5521), + [anon_sym_COLON] = ACTIONS(5521), + [anon_sym_COLON_COLON] = ACTIONS(5519), + [anon_sym___based] = ACTIONS(5521), + [anon_sym_LBRACE] = ACTIONS(5523), + [anon_sym_RBRACE] = ACTIONS(5523), + [anon_sym_signed] = ACTIONS(5521), + [anon_sym_unsigned] = ACTIONS(5521), + [anon_sym_long] = ACTIONS(5521), + [anon_sym_short] = ACTIONS(5521), + [anon_sym_LBRACK] = ACTIONS(5523), + [anon_sym_RBRACK] = ACTIONS(5523), + [anon_sym_const] = ACTIONS(5521), + [anon_sym_constexpr] = ACTIONS(5521), + [anon_sym_volatile] = ACTIONS(5521), + [anon_sym_restrict] = ACTIONS(5521), + [anon_sym___restrict__] = ACTIONS(5521), + [anon_sym__Atomic] = ACTIONS(5521), + [anon_sym__Noreturn] = ACTIONS(5521), + [anon_sym_noreturn] = ACTIONS(5521), + [anon_sym__Nonnull] = ACTIONS(5521), + [anon_sym_mutable] = ACTIONS(5521), + [anon_sym_constinit] = ACTIONS(5521), + [anon_sym_consteval] = ACTIONS(5521), + [anon_sym_alignas] = ACTIONS(5521), + [anon_sym__Alignas] = ACTIONS(5521), + [sym_primitive_type] = ACTIONS(5521), + [anon_sym_QMARK] = ACTIONS(5523), + [anon_sym_LT_EQ_GT] = ACTIONS(5523), + [anon_sym_or] = ACTIONS(5521), + [anon_sym_and] = ACTIONS(5521), + [anon_sym_bitor] = ACTIONS(5521), + [anon_sym_xor] = ACTIONS(5521), + [anon_sym_bitand] = ACTIONS(5521), + [anon_sym_not_eq] = ACTIONS(5521), + [anon_sym_DASH_DASH] = ACTIONS(5523), + [anon_sym_PLUS_PLUS] = ACTIONS(5523), + [anon_sym_DOT] = ACTIONS(5521), + [anon_sym_DOT_STAR] = ACTIONS(5523), + [anon_sym_DASH_GT] = ACTIONS(5523), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2703), - [anon_sym_decltype] = ACTIONS(2703), - [anon_sym_explicit] = ACTIONS(2703), - [anon_sym_typename] = ACTIONS(2703), - [anon_sym_private] = ACTIONS(2703), - [anon_sym_template] = ACTIONS(2703), - [anon_sym_operator] = ACTIONS(2703), - [anon_sym_friend] = ACTIONS(2703), - [anon_sym_public] = ACTIONS(2703), - [anon_sym_protected] = ACTIONS(2703), - [anon_sym_static_assert] = ACTIONS(2703), + [sym_auto] = ACTIONS(5521), + [anon_sym_decltype] = ACTIONS(5521), + [anon_sym_final] = ACTIONS(5521), + [anon_sym_override] = ACTIONS(5521), + [anon_sym_requires] = ACTIONS(5521), }, - [1742] = { - [sym__declaration_modifiers] = STATE(3282), - [sym_attribute_specifier] = STATE(3282), - [sym_attribute_declaration] = STATE(3282), - [sym_ms_declspec_modifier] = STATE(3282), - [sym_ms_based_modifier] = STATE(8682), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6340), - [sym_array_declarator] = STATE(5998), - [sym_storage_class_specifier] = STATE(3282), - [sym_type_qualifier] = STATE(3282), - [sym_alignas_qualifier] = STATE(2975), - [sym_decltype] = STATE(8601), - [sym_explicit_function_specifier] = STATE(3282), - [sym_operator_cast] = STATE(6827), - [sym__constructor_specifiers] = STATE(3282), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(8601), - [sym_template_function] = STATE(5998), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5591), - [sym_qualified_identifier] = STATE(5998), - [sym_qualified_operator_cast_identifier] = STATE(6827), - [sym_operator_name] = STATE(5998), - [aux_sym_operator_cast_definition_repeat1] = STATE(3282), - [sym_identifier] = ACTIONS(5460), - [anon_sym_LPAREN2] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2979), - [anon_sym_STAR] = ACTIONS(2981), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2983), - [anon_sym___extension__] = ACTIONS(5462), - [anon_sym_virtual] = ACTIONS(5464), - [anon_sym_extern] = ACTIONS(5466), - [anon_sym___attribute__] = ACTIONS(5468), - [anon_sym___attribute] = ACTIONS(5468), - [anon_sym_COLON_COLON] = ACTIONS(5470), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5472), - [anon_sym___declspec] = ACTIONS(5474), - [anon_sym___based] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(2995), - [anon_sym_static] = ACTIONS(5466), - [anon_sym_register] = ACTIONS(5466), - [anon_sym_inline] = ACTIONS(5466), - [anon_sym___inline] = ACTIONS(5466), - [anon_sym___inline__] = ACTIONS(5466), - [anon_sym___forceinline] = ACTIONS(5466), - [anon_sym_thread_local] = ACTIONS(5466), - [anon_sym___thread] = ACTIONS(5466), - [anon_sym_const] = ACTIONS(5462), - [anon_sym_constexpr] = ACTIONS(5462), - [anon_sym_volatile] = ACTIONS(5462), - [anon_sym_restrict] = ACTIONS(5462), - [anon_sym___restrict__] = ACTIONS(5462), - [anon_sym__Atomic] = ACTIONS(5462), - [anon_sym__Noreturn] = ACTIONS(5462), - [anon_sym_noreturn] = ACTIONS(5462), - [anon_sym__Nonnull] = ACTIONS(5462), - [anon_sym_mutable] = ACTIONS(5462), - [anon_sym_constinit] = ACTIONS(5462), - [anon_sym_consteval] = ACTIONS(5462), - [anon_sym_alignas] = ACTIONS(5476), - [anon_sym__Alignas] = ACTIONS(5476), + [1785] = { + [sym_identifier] = ACTIONS(2863), + [aux_sym_preproc_def_token1] = ACTIONS(2863), + [aux_sym_preproc_if_token1] = ACTIONS(2863), + [aux_sym_preproc_if_token2] = ACTIONS(2863), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2863), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2863), + [aux_sym_preproc_else_token1] = ACTIONS(2863), + [aux_sym_preproc_elif_token1] = ACTIONS(2863), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2863), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2863), + [sym_preproc_directive] = ACTIONS(2863), + [anon_sym_LPAREN2] = ACTIONS(2865), + [anon_sym_TILDE] = ACTIONS(2865), + [anon_sym_STAR] = ACTIONS(2865), + [anon_sym_AMP_AMP] = ACTIONS(2865), + [anon_sym_AMP] = ACTIONS(2863), + [anon_sym_SEMI] = ACTIONS(2865), + [anon_sym___extension__] = ACTIONS(2863), + [anon_sym_typedef] = ACTIONS(2863), + [anon_sym_virtual] = ACTIONS(2863), + [anon_sym_extern] = ACTIONS(2863), + [anon_sym___attribute__] = ACTIONS(2863), + [anon_sym___attribute] = ACTIONS(2863), + [anon_sym_using] = ACTIONS(2863), + [anon_sym_COLON_COLON] = ACTIONS(2865), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2865), + [anon_sym___declspec] = ACTIONS(2863), + [anon_sym___based] = ACTIONS(2863), + [anon_sym_signed] = ACTIONS(2863), + [anon_sym_unsigned] = ACTIONS(2863), + [anon_sym_long] = ACTIONS(2863), + [anon_sym_short] = ACTIONS(2863), + [anon_sym_LBRACK] = ACTIONS(2863), + [anon_sym_static] = ACTIONS(2863), + [anon_sym_register] = ACTIONS(2863), + [anon_sym_inline] = ACTIONS(2863), + [anon_sym___inline] = ACTIONS(2863), + [anon_sym___inline__] = ACTIONS(2863), + [anon_sym___forceinline] = ACTIONS(2863), + [anon_sym_thread_local] = ACTIONS(2863), + [anon_sym___thread] = ACTIONS(2863), + [anon_sym_const] = ACTIONS(2863), + [anon_sym_constexpr] = ACTIONS(2863), + [anon_sym_volatile] = ACTIONS(2863), + [anon_sym_restrict] = ACTIONS(2863), + [anon_sym___restrict__] = ACTIONS(2863), + [anon_sym__Atomic] = ACTIONS(2863), + [anon_sym__Noreturn] = ACTIONS(2863), + [anon_sym_noreturn] = ACTIONS(2863), + [anon_sym__Nonnull] = ACTIONS(2863), + [anon_sym_mutable] = ACTIONS(2863), + [anon_sym_constinit] = ACTIONS(2863), + [anon_sym_consteval] = ACTIONS(2863), + [anon_sym_alignas] = ACTIONS(2863), + [anon_sym__Alignas] = ACTIONS(2863), + [sym_primitive_type] = ACTIONS(2863), + [anon_sym_enum] = ACTIONS(2863), + [anon_sym_class] = ACTIONS(2863), + [anon_sym_struct] = ACTIONS(2863), + [anon_sym_union] = ACTIONS(2863), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_operator] = ACTIONS(141), + [sym_auto] = ACTIONS(2863), + [anon_sym_decltype] = ACTIONS(2863), + [anon_sym_explicit] = ACTIONS(2863), + [anon_sym_typename] = ACTIONS(2863), + [anon_sym_private] = ACTIONS(2863), + [anon_sym_template] = ACTIONS(2863), + [anon_sym_operator] = ACTIONS(2863), + [anon_sym_friend] = ACTIONS(2863), + [anon_sym_public] = ACTIONS(2863), + [anon_sym_protected] = ACTIONS(2863), + [anon_sym_static_assert] = ACTIONS(2863), }, - [1743] = { - [sym_identifier] = ACTIONS(5517), - [aux_sym_preproc_def_token1] = ACTIONS(5517), - [aux_sym_preproc_if_token1] = ACTIONS(5517), - [aux_sym_preproc_if_token2] = ACTIONS(5517), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5517), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5517), - [aux_sym_preproc_else_token1] = ACTIONS(5517), - [aux_sym_preproc_elif_token1] = ACTIONS(5517), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5517), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5517), - [sym_preproc_directive] = ACTIONS(5517), - [anon_sym_LPAREN2] = ACTIONS(5519), - [anon_sym_TILDE] = ACTIONS(5519), - [anon_sym_STAR] = ACTIONS(5519), - [anon_sym_AMP_AMP] = ACTIONS(5519), - [anon_sym_AMP] = ACTIONS(5517), - [anon_sym_SEMI] = ACTIONS(5519), - [anon_sym___extension__] = ACTIONS(5517), - [anon_sym_typedef] = ACTIONS(5517), - [anon_sym_virtual] = ACTIONS(5517), - [anon_sym_extern] = ACTIONS(5517), - [anon_sym___attribute__] = ACTIONS(5517), - [anon_sym___attribute] = ACTIONS(5517), - [anon_sym_using] = ACTIONS(5517), - [anon_sym_COLON_COLON] = ACTIONS(5519), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5519), - [anon_sym___declspec] = ACTIONS(5517), - [anon_sym___based] = ACTIONS(5517), - [anon_sym_signed] = ACTIONS(5517), - [anon_sym_unsigned] = ACTIONS(5517), - [anon_sym_long] = ACTIONS(5517), - [anon_sym_short] = ACTIONS(5517), - [anon_sym_LBRACK] = ACTIONS(5517), - [anon_sym_static] = ACTIONS(5517), - [anon_sym_register] = ACTIONS(5517), - [anon_sym_inline] = ACTIONS(5517), - [anon_sym___inline] = ACTIONS(5517), - [anon_sym___inline__] = ACTIONS(5517), - [anon_sym___forceinline] = ACTIONS(5517), - [anon_sym_thread_local] = ACTIONS(5517), - [anon_sym___thread] = ACTIONS(5517), - [anon_sym_const] = ACTIONS(5517), - [anon_sym_constexpr] = ACTIONS(5517), - [anon_sym_volatile] = ACTIONS(5517), - [anon_sym_restrict] = ACTIONS(5517), - [anon_sym___restrict__] = ACTIONS(5517), - [anon_sym__Atomic] = ACTIONS(5517), - [anon_sym__Noreturn] = ACTIONS(5517), - [anon_sym_noreturn] = ACTIONS(5517), - [anon_sym__Nonnull] = ACTIONS(5517), - [anon_sym_mutable] = ACTIONS(5517), - [anon_sym_constinit] = ACTIONS(5517), - [anon_sym_consteval] = ACTIONS(5517), - [anon_sym_alignas] = ACTIONS(5517), - [anon_sym__Alignas] = ACTIONS(5517), - [sym_primitive_type] = ACTIONS(5517), - [anon_sym_enum] = ACTIONS(5517), - [anon_sym_class] = ACTIONS(5517), - [anon_sym_struct] = ACTIONS(5517), - [anon_sym_union] = ACTIONS(5517), + [1786] = { + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token2] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [aux_sym_preproc_else_token1] = ACTIONS(2867), + [aux_sym_preproc_elif_token1] = ACTIONS(2867), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym___attribute] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym__Nonnull] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym__Alignas] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5517), - [anon_sym_decltype] = ACTIONS(5517), - [anon_sym_explicit] = ACTIONS(5517), - [anon_sym_typename] = ACTIONS(5517), - [anon_sym_private] = ACTIONS(5517), - [anon_sym_template] = ACTIONS(5517), - [anon_sym_operator] = ACTIONS(5517), - [anon_sym_friend] = ACTIONS(5517), - [anon_sym_public] = ACTIONS(5517), - [anon_sym_protected] = ACTIONS(5517), - [anon_sym_static_assert] = ACTIONS(5517), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_private] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_friend] = ACTIONS(2867), + [anon_sym_public] = ACTIONS(2867), + [anon_sym_protected] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), }, - [1744] = { - [sym__declaration_modifiers] = STATE(3282), - [sym_attribute_specifier] = STATE(3282), - [sym_attribute_declaration] = STATE(3282), - [sym_ms_declspec_modifier] = STATE(3282), - [sym_ms_based_modifier] = STATE(8682), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6224), - [sym_array_declarator] = STATE(5998), - [sym_storage_class_specifier] = STATE(3282), - [sym_type_qualifier] = STATE(3282), - [sym_alignas_qualifier] = STATE(2975), - [sym_decltype] = STATE(8601), - [sym_explicit_function_specifier] = STATE(3282), - [sym_operator_cast] = STATE(6808), - [sym__constructor_specifiers] = STATE(3282), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(8601), - [sym_template_function] = STATE(5998), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5591), - [sym_qualified_identifier] = STATE(5998), - [sym_qualified_operator_cast_identifier] = STATE(6808), - [sym_operator_name] = STATE(5998), - [aux_sym_operator_cast_definition_repeat1] = STATE(3282), - [sym_identifier] = ACTIONS(5460), - [anon_sym_LPAREN2] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2979), - [anon_sym_STAR] = ACTIONS(2981), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2983), - [anon_sym___extension__] = ACTIONS(5462), - [anon_sym_virtual] = ACTIONS(5464), - [anon_sym_extern] = ACTIONS(5466), - [anon_sym___attribute__] = ACTIONS(5468), - [anon_sym___attribute] = ACTIONS(5468), - [anon_sym_COLON_COLON] = ACTIONS(5470), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5472), - [anon_sym___declspec] = ACTIONS(5474), - [anon_sym___based] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(2995), - [anon_sym_static] = ACTIONS(5466), - [anon_sym_register] = ACTIONS(5466), - [anon_sym_inline] = ACTIONS(5466), - [anon_sym___inline] = ACTIONS(5466), - [anon_sym___inline__] = ACTIONS(5466), - [anon_sym___forceinline] = ACTIONS(5466), - [anon_sym_thread_local] = ACTIONS(5466), - [anon_sym___thread] = ACTIONS(5466), - [anon_sym_const] = ACTIONS(5462), - [anon_sym_constexpr] = ACTIONS(5462), - [anon_sym_volatile] = ACTIONS(5462), - [anon_sym_restrict] = ACTIONS(5462), - [anon_sym___restrict__] = ACTIONS(5462), - [anon_sym__Atomic] = ACTIONS(5462), - [anon_sym__Noreturn] = ACTIONS(5462), - [anon_sym_noreturn] = ACTIONS(5462), - [anon_sym__Nonnull] = ACTIONS(5462), - [anon_sym_mutable] = ACTIONS(5462), - [anon_sym_constinit] = ACTIONS(5462), - [anon_sym_consteval] = ACTIONS(5462), - [anon_sym_alignas] = ACTIONS(5476), - [anon_sym__Alignas] = ACTIONS(5476), + [1787] = { + [sym_identifier] = ACTIONS(5010), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5012), + [anon_sym_COMMA] = ACTIONS(5012), + [anon_sym_RPAREN] = ACTIONS(5012), + [anon_sym_LPAREN2] = ACTIONS(5012), + [anon_sym_DASH] = ACTIONS(5010), + [anon_sym_PLUS] = ACTIONS(5010), + [anon_sym_STAR] = ACTIONS(5012), + [anon_sym_SLASH] = ACTIONS(5010), + [anon_sym_PERCENT] = ACTIONS(5012), + [anon_sym_PIPE_PIPE] = ACTIONS(5012), + [anon_sym_AMP_AMP] = ACTIONS(5012), + [anon_sym_PIPE] = ACTIONS(5010), + [anon_sym_CARET] = ACTIONS(5012), + [anon_sym_AMP] = ACTIONS(5010), + [anon_sym_EQ_EQ] = ACTIONS(5012), + [anon_sym_BANG_EQ] = ACTIONS(5012), + [anon_sym_GT] = ACTIONS(5010), + [anon_sym_GT_EQ] = ACTIONS(5012), + [anon_sym_LT_EQ] = ACTIONS(5010), + [anon_sym_LT] = ACTIONS(5010), + [anon_sym_LT_LT] = ACTIONS(5012), + [anon_sym_GT_GT] = ACTIONS(5012), + [anon_sym_SEMI] = ACTIONS(5012), + [anon_sym___extension__] = ACTIONS(5010), + [anon_sym___attribute__] = ACTIONS(5010), + [anon_sym___attribute] = ACTIONS(5010), + [anon_sym_COLON] = ACTIONS(5010), + [anon_sym_COLON_COLON] = ACTIONS(5012), + [anon_sym___based] = ACTIONS(5010), + [anon_sym_LBRACE] = ACTIONS(5012), + [anon_sym_RBRACE] = ACTIONS(5012), + [anon_sym_signed] = ACTIONS(5010), + [anon_sym_unsigned] = ACTIONS(5010), + [anon_sym_long] = ACTIONS(5010), + [anon_sym_short] = ACTIONS(5010), + [anon_sym_LBRACK] = ACTIONS(5012), + [anon_sym_RBRACK] = ACTIONS(5012), + [anon_sym_const] = ACTIONS(5010), + [anon_sym_constexpr] = ACTIONS(5010), + [anon_sym_volatile] = ACTIONS(5010), + [anon_sym_restrict] = ACTIONS(5010), + [anon_sym___restrict__] = ACTIONS(5010), + [anon_sym__Atomic] = ACTIONS(5010), + [anon_sym__Noreturn] = ACTIONS(5010), + [anon_sym_noreturn] = ACTIONS(5010), + [anon_sym__Nonnull] = ACTIONS(5010), + [anon_sym_mutable] = ACTIONS(5010), + [anon_sym_constinit] = ACTIONS(5010), + [anon_sym_consteval] = ACTIONS(5010), + [anon_sym_alignas] = ACTIONS(5010), + [anon_sym__Alignas] = ACTIONS(5010), + [sym_primitive_type] = ACTIONS(5010), + [anon_sym_QMARK] = ACTIONS(5012), + [anon_sym_LT_EQ_GT] = ACTIONS(5012), + [anon_sym_or] = ACTIONS(5010), + [anon_sym_and] = ACTIONS(5010), + [anon_sym_bitor] = ACTIONS(5010), + [anon_sym_xor] = ACTIONS(5010), + [anon_sym_bitand] = ACTIONS(5010), + [anon_sym_not_eq] = ACTIONS(5010), + [anon_sym_DASH_DASH] = ACTIONS(5012), + [anon_sym_PLUS_PLUS] = ACTIONS(5012), + [anon_sym_DOT] = ACTIONS(5010), + [anon_sym_DOT_STAR] = ACTIONS(5012), + [anon_sym_DASH_GT] = ACTIONS(5012), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5010), + [anon_sym_decltype] = ACTIONS(5010), + [anon_sym_final] = ACTIONS(5010), + [anon_sym_override] = ACTIONS(5010), + [anon_sym_requires] = ACTIONS(5010), + }, + [1788] = { + [sym_identifier] = ACTIONS(4998), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5000), + [anon_sym_COMMA] = ACTIONS(5000), + [anon_sym_RPAREN] = ACTIONS(5000), + [anon_sym_LPAREN2] = ACTIONS(5000), + [anon_sym_DASH] = ACTIONS(4998), + [anon_sym_PLUS] = ACTIONS(4998), + [anon_sym_STAR] = ACTIONS(5000), + [anon_sym_SLASH] = ACTIONS(4998), + [anon_sym_PERCENT] = ACTIONS(5000), + [anon_sym_PIPE_PIPE] = ACTIONS(5000), + [anon_sym_AMP_AMP] = ACTIONS(5000), + [anon_sym_PIPE] = ACTIONS(4998), + [anon_sym_CARET] = ACTIONS(5000), + [anon_sym_AMP] = ACTIONS(4998), + [anon_sym_EQ_EQ] = ACTIONS(5000), + [anon_sym_BANG_EQ] = ACTIONS(5000), + [anon_sym_GT] = ACTIONS(4998), + [anon_sym_GT_EQ] = ACTIONS(5000), + [anon_sym_LT_EQ] = ACTIONS(4998), + [anon_sym_LT] = ACTIONS(4998), + [anon_sym_LT_LT] = ACTIONS(5000), + [anon_sym_GT_GT] = ACTIONS(5000), + [anon_sym_SEMI] = ACTIONS(5000), + [anon_sym___extension__] = ACTIONS(4998), + [anon_sym___attribute__] = ACTIONS(4998), + [anon_sym___attribute] = ACTIONS(4998), + [anon_sym_COLON] = ACTIONS(4998), + [anon_sym_COLON_COLON] = ACTIONS(5000), + [anon_sym___based] = ACTIONS(4998), + [anon_sym_LBRACE] = ACTIONS(5000), + [anon_sym_RBRACE] = ACTIONS(5000), + [anon_sym_signed] = ACTIONS(4998), + [anon_sym_unsigned] = ACTIONS(4998), + [anon_sym_long] = ACTIONS(4998), + [anon_sym_short] = ACTIONS(4998), + [anon_sym_LBRACK] = ACTIONS(5000), + [anon_sym_RBRACK] = ACTIONS(5000), + [anon_sym_const] = ACTIONS(4998), + [anon_sym_constexpr] = ACTIONS(4998), + [anon_sym_volatile] = ACTIONS(4998), + [anon_sym_restrict] = ACTIONS(4998), + [anon_sym___restrict__] = ACTIONS(4998), + [anon_sym__Atomic] = ACTIONS(4998), + [anon_sym__Noreturn] = ACTIONS(4998), + [anon_sym_noreturn] = ACTIONS(4998), + [anon_sym__Nonnull] = ACTIONS(4998), + [anon_sym_mutable] = ACTIONS(4998), + [anon_sym_constinit] = ACTIONS(4998), + [anon_sym_consteval] = ACTIONS(4998), + [anon_sym_alignas] = ACTIONS(4998), + [anon_sym__Alignas] = ACTIONS(4998), + [sym_primitive_type] = ACTIONS(4998), + [anon_sym_QMARK] = ACTIONS(5000), + [anon_sym_LT_EQ_GT] = ACTIONS(5000), + [anon_sym_or] = ACTIONS(4998), + [anon_sym_and] = ACTIONS(4998), + [anon_sym_bitor] = ACTIONS(4998), + [anon_sym_xor] = ACTIONS(4998), + [anon_sym_bitand] = ACTIONS(4998), + [anon_sym_not_eq] = ACTIONS(4998), + [anon_sym_DASH_DASH] = ACTIONS(5000), + [anon_sym_PLUS_PLUS] = ACTIONS(5000), + [anon_sym_DOT] = ACTIONS(4998), + [anon_sym_DOT_STAR] = ACTIONS(5000), + [anon_sym_DASH_GT] = ACTIONS(5000), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4998), + [anon_sym_decltype] = ACTIONS(4998), + [anon_sym_final] = ACTIONS(4998), + [anon_sym_override] = ACTIONS(4998), + [anon_sym_requires] = ACTIONS(4998), + }, + [1789] = { + [sym_identifier] = ACTIONS(5014), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5016), + [anon_sym_COMMA] = ACTIONS(5016), + [anon_sym_RPAREN] = ACTIONS(5016), + [anon_sym_LPAREN2] = ACTIONS(5016), + [anon_sym_DASH] = ACTIONS(5014), + [anon_sym_PLUS] = ACTIONS(5014), + [anon_sym_STAR] = ACTIONS(5016), + [anon_sym_SLASH] = ACTIONS(5014), + [anon_sym_PERCENT] = ACTIONS(5016), + [anon_sym_PIPE_PIPE] = ACTIONS(5016), + [anon_sym_AMP_AMP] = ACTIONS(5016), + [anon_sym_PIPE] = ACTIONS(5014), + [anon_sym_CARET] = ACTIONS(5016), + [anon_sym_AMP] = ACTIONS(5014), + [anon_sym_EQ_EQ] = ACTIONS(5016), + [anon_sym_BANG_EQ] = ACTIONS(5016), + [anon_sym_GT] = ACTIONS(5014), + [anon_sym_GT_EQ] = ACTIONS(5016), + [anon_sym_LT_EQ] = ACTIONS(5014), + [anon_sym_LT] = ACTIONS(5014), + [anon_sym_LT_LT] = ACTIONS(5016), + [anon_sym_GT_GT] = ACTIONS(5016), + [anon_sym_SEMI] = ACTIONS(5016), + [anon_sym___extension__] = ACTIONS(5014), + [anon_sym___attribute__] = ACTIONS(5014), + [anon_sym___attribute] = ACTIONS(5014), + [anon_sym_COLON] = ACTIONS(5014), + [anon_sym_COLON_COLON] = ACTIONS(5016), + [anon_sym___based] = ACTIONS(5014), + [anon_sym_LBRACE] = ACTIONS(5016), + [anon_sym_RBRACE] = ACTIONS(5016), + [anon_sym_signed] = ACTIONS(5014), + [anon_sym_unsigned] = ACTIONS(5014), + [anon_sym_long] = ACTIONS(5014), + [anon_sym_short] = ACTIONS(5014), + [anon_sym_LBRACK] = ACTIONS(5016), + [anon_sym_RBRACK] = ACTIONS(5016), + [anon_sym_const] = ACTIONS(5014), + [anon_sym_constexpr] = ACTIONS(5014), + [anon_sym_volatile] = ACTIONS(5014), + [anon_sym_restrict] = ACTIONS(5014), + [anon_sym___restrict__] = ACTIONS(5014), + [anon_sym__Atomic] = ACTIONS(5014), + [anon_sym__Noreturn] = ACTIONS(5014), + [anon_sym_noreturn] = ACTIONS(5014), + [anon_sym__Nonnull] = ACTIONS(5014), + [anon_sym_mutable] = ACTIONS(5014), + [anon_sym_constinit] = ACTIONS(5014), + [anon_sym_consteval] = ACTIONS(5014), + [anon_sym_alignas] = ACTIONS(5014), + [anon_sym__Alignas] = ACTIONS(5014), + [sym_primitive_type] = ACTIONS(5014), + [anon_sym_QMARK] = ACTIONS(5016), + [anon_sym_LT_EQ_GT] = ACTIONS(5016), + [anon_sym_or] = ACTIONS(5014), + [anon_sym_and] = ACTIONS(5014), + [anon_sym_bitor] = ACTIONS(5014), + [anon_sym_xor] = ACTIONS(5014), + [anon_sym_bitand] = ACTIONS(5014), + [anon_sym_not_eq] = ACTIONS(5014), + [anon_sym_DASH_DASH] = ACTIONS(5016), + [anon_sym_PLUS_PLUS] = ACTIONS(5016), + [anon_sym_DOT] = ACTIONS(5014), + [anon_sym_DOT_STAR] = ACTIONS(5016), + [anon_sym_DASH_GT] = ACTIONS(5016), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5014), + [anon_sym_decltype] = ACTIONS(5014), + [anon_sym_final] = ACTIONS(5014), + [anon_sym_override] = ACTIONS(5014), + [anon_sym_requires] = ACTIONS(5014), + }, + [1790] = { + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token2] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [aux_sym_preproc_else_token1] = ACTIONS(2871), + [aux_sym_preproc_elif_token1] = ACTIONS(2871), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym___attribute] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym__Nonnull] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym__Alignas] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_operator] = ACTIONS(141), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_private] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_friend] = ACTIONS(2871), + [anon_sym_public] = ACTIONS(2871), + [anon_sym_protected] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), }, - [1745] = { - [sym_identifier] = ACTIONS(5517), - [aux_sym_preproc_def_token1] = ACTIONS(5517), - [aux_sym_preproc_if_token1] = ACTIONS(5517), - [aux_sym_preproc_if_token2] = ACTIONS(5517), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5517), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5517), - [aux_sym_preproc_else_token1] = ACTIONS(5517), - [aux_sym_preproc_elif_token1] = ACTIONS(5517), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5517), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5517), - [sym_preproc_directive] = ACTIONS(5517), - [anon_sym_LPAREN2] = ACTIONS(5519), - [anon_sym_TILDE] = ACTIONS(5519), - [anon_sym_STAR] = ACTIONS(5519), - [anon_sym_AMP_AMP] = ACTIONS(5519), - [anon_sym_AMP] = ACTIONS(5517), - [anon_sym_SEMI] = ACTIONS(5519), - [anon_sym___extension__] = ACTIONS(5517), - [anon_sym_typedef] = ACTIONS(5517), - [anon_sym_virtual] = ACTIONS(5517), - [anon_sym_extern] = ACTIONS(5517), - [anon_sym___attribute__] = ACTIONS(5517), - [anon_sym___attribute] = ACTIONS(5517), - [anon_sym_using] = ACTIONS(5517), - [anon_sym_COLON_COLON] = ACTIONS(5519), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5519), - [anon_sym___declspec] = ACTIONS(5517), - [anon_sym___based] = ACTIONS(5517), - [anon_sym_signed] = ACTIONS(5517), - [anon_sym_unsigned] = ACTIONS(5517), - [anon_sym_long] = ACTIONS(5517), - [anon_sym_short] = ACTIONS(5517), - [anon_sym_LBRACK] = ACTIONS(5517), - [anon_sym_static] = ACTIONS(5517), - [anon_sym_register] = ACTIONS(5517), - [anon_sym_inline] = ACTIONS(5517), - [anon_sym___inline] = ACTIONS(5517), - [anon_sym___inline__] = ACTIONS(5517), - [anon_sym___forceinline] = ACTIONS(5517), - [anon_sym_thread_local] = ACTIONS(5517), - [anon_sym___thread] = ACTIONS(5517), - [anon_sym_const] = ACTIONS(5517), - [anon_sym_constexpr] = ACTIONS(5517), - [anon_sym_volatile] = ACTIONS(5517), - [anon_sym_restrict] = ACTIONS(5517), - [anon_sym___restrict__] = ACTIONS(5517), - [anon_sym__Atomic] = ACTIONS(5517), - [anon_sym__Noreturn] = ACTIONS(5517), - [anon_sym_noreturn] = ACTIONS(5517), - [anon_sym__Nonnull] = ACTIONS(5517), - [anon_sym_mutable] = ACTIONS(5517), - [anon_sym_constinit] = ACTIONS(5517), - [anon_sym_consteval] = ACTIONS(5517), - [anon_sym_alignas] = ACTIONS(5517), - [anon_sym__Alignas] = ACTIONS(5517), - [sym_primitive_type] = ACTIONS(5517), - [anon_sym_enum] = ACTIONS(5517), - [anon_sym_class] = ACTIONS(5517), - [anon_sym_struct] = ACTIONS(5517), - [anon_sym_union] = ACTIONS(5517), + [1791] = { + [sym__declaration_modifiers] = STATE(2121), + [sym__declaration_specifiers] = STATE(3995), + [sym_attribute_specifier] = STATE(2121), + [sym_attribute_declaration] = STATE(2121), + [sym_ms_declspec_modifier] = STATE(2121), + [sym_storage_class_specifier] = STATE(2121), + [sym_type_qualifier] = STATE(2121), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_parameter_declaration] = STATE(7713), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym_dependent_type] = STATE(2558), + [sym_optional_parameter_declaration] = STATE(7713), + [sym_variadic_parameter_declaration] = STATE(7713), + [sym_template_type] = STATE(2439), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(6746), + [sym_qualified_type_identifier] = STATE(3138), + [aux_sym__declaration_specifiers_repeat1] = STATE(2121), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(5018), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1870), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(5028), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(69), + [anon_sym__Alignas] = ACTIONS(69), + [sym_primitive_type] = ACTIONS(3019), + [anon_sym_enum] = ACTIONS(1874), + [anon_sym_class] = ACTIONS(1876), + [anon_sym_struct] = ACTIONS(1878), + [anon_sym_union] = ACTIONS(1880), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5517), - [anon_sym_decltype] = ACTIONS(5517), - [anon_sym_explicit] = ACTIONS(5517), - [anon_sym_typename] = ACTIONS(5517), - [anon_sym_private] = ACTIONS(5517), - [anon_sym_template] = ACTIONS(5517), - [anon_sym_operator] = ACTIONS(5517), - [anon_sym_friend] = ACTIONS(5517), - [anon_sym_public] = ACTIONS(5517), - [anon_sym_protected] = ACTIONS(5517), - [anon_sym_static_assert] = ACTIONS(5517), + [sym_auto] = ACTIONS(125), + [anon_sym_decltype] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(1882), + [anon_sym_template] = ACTIONS(1268), }, - [1746] = { - [sym_identifier] = ACTIONS(5521), - [aux_sym_preproc_def_token1] = ACTIONS(5521), - [aux_sym_preproc_if_token1] = ACTIONS(5521), - [aux_sym_preproc_if_token2] = ACTIONS(5521), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5521), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5521), - [aux_sym_preproc_else_token1] = ACTIONS(5521), - [aux_sym_preproc_elif_token1] = ACTIONS(5521), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5521), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5521), - [sym_preproc_directive] = ACTIONS(5521), - [anon_sym_LPAREN2] = ACTIONS(5523), - [anon_sym_TILDE] = ACTIONS(5523), - [anon_sym_STAR] = ACTIONS(5523), - [anon_sym_AMP_AMP] = ACTIONS(5523), - [anon_sym_AMP] = ACTIONS(5521), - [anon_sym_SEMI] = ACTIONS(5523), - [anon_sym___extension__] = ACTIONS(5521), - [anon_sym_typedef] = ACTIONS(5521), - [anon_sym_virtual] = ACTIONS(5521), - [anon_sym_extern] = ACTIONS(5521), - [anon_sym___attribute__] = ACTIONS(5521), - [anon_sym___attribute] = ACTIONS(5521), - [anon_sym_using] = ACTIONS(5521), - [anon_sym_COLON_COLON] = ACTIONS(5523), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5523), - [anon_sym___declspec] = ACTIONS(5521), - [anon_sym___based] = ACTIONS(5521), - [anon_sym_signed] = ACTIONS(5521), - [anon_sym_unsigned] = ACTIONS(5521), - [anon_sym_long] = ACTIONS(5521), - [anon_sym_short] = ACTIONS(5521), - [anon_sym_LBRACK] = ACTIONS(5521), - [anon_sym_static] = ACTIONS(5521), - [anon_sym_register] = ACTIONS(5521), - [anon_sym_inline] = ACTIONS(5521), - [anon_sym___inline] = ACTIONS(5521), - [anon_sym___inline__] = ACTIONS(5521), - [anon_sym___forceinline] = ACTIONS(5521), - [anon_sym_thread_local] = ACTIONS(5521), - [anon_sym___thread] = ACTIONS(5521), - [anon_sym_const] = ACTIONS(5521), - [anon_sym_constexpr] = ACTIONS(5521), - [anon_sym_volatile] = ACTIONS(5521), - [anon_sym_restrict] = ACTIONS(5521), - [anon_sym___restrict__] = ACTIONS(5521), - [anon_sym__Atomic] = ACTIONS(5521), - [anon_sym__Noreturn] = ACTIONS(5521), - [anon_sym_noreturn] = ACTIONS(5521), - [anon_sym__Nonnull] = ACTIONS(5521), - [anon_sym_mutable] = ACTIONS(5521), - [anon_sym_constinit] = ACTIONS(5521), - [anon_sym_consteval] = ACTIONS(5521), - [anon_sym_alignas] = ACTIONS(5521), - [anon_sym__Alignas] = ACTIONS(5521), - [sym_primitive_type] = ACTIONS(5521), - [anon_sym_enum] = ACTIONS(5521), - [anon_sym_class] = ACTIONS(5521), - [anon_sym_struct] = ACTIONS(5521), - [anon_sym_union] = ACTIONS(5521), + [1792] = { + [sym_identifier] = ACTIONS(2875), + [aux_sym_preproc_def_token1] = ACTIONS(2875), + [aux_sym_preproc_if_token1] = ACTIONS(2875), + [aux_sym_preproc_if_token2] = ACTIONS(2875), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2875), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2875), + [aux_sym_preproc_else_token1] = ACTIONS(2875), + [aux_sym_preproc_elif_token1] = ACTIONS(2875), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2875), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2875), + [sym_preproc_directive] = ACTIONS(2875), + [anon_sym_LPAREN2] = ACTIONS(2877), + [anon_sym_TILDE] = ACTIONS(2877), + [anon_sym_STAR] = ACTIONS(2877), + [anon_sym_AMP_AMP] = ACTIONS(2877), + [anon_sym_AMP] = ACTIONS(2875), + [anon_sym_SEMI] = ACTIONS(2877), + [anon_sym___extension__] = ACTIONS(2875), + [anon_sym_typedef] = ACTIONS(2875), + [anon_sym_virtual] = ACTIONS(2875), + [anon_sym_extern] = ACTIONS(2875), + [anon_sym___attribute__] = ACTIONS(2875), + [anon_sym___attribute] = ACTIONS(2875), + [anon_sym_using] = ACTIONS(2875), + [anon_sym_COLON_COLON] = ACTIONS(2877), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2877), + [anon_sym___declspec] = ACTIONS(2875), + [anon_sym___based] = ACTIONS(2875), + [anon_sym_signed] = ACTIONS(2875), + [anon_sym_unsigned] = ACTIONS(2875), + [anon_sym_long] = ACTIONS(2875), + [anon_sym_short] = ACTIONS(2875), + [anon_sym_LBRACK] = ACTIONS(2875), + [anon_sym_static] = ACTIONS(2875), + [anon_sym_register] = ACTIONS(2875), + [anon_sym_inline] = ACTIONS(2875), + [anon_sym___inline] = ACTIONS(2875), + [anon_sym___inline__] = ACTIONS(2875), + [anon_sym___forceinline] = ACTIONS(2875), + [anon_sym_thread_local] = ACTIONS(2875), + [anon_sym___thread] = ACTIONS(2875), + [anon_sym_const] = ACTIONS(2875), + [anon_sym_constexpr] = ACTIONS(2875), + [anon_sym_volatile] = ACTIONS(2875), + [anon_sym_restrict] = ACTIONS(2875), + [anon_sym___restrict__] = ACTIONS(2875), + [anon_sym__Atomic] = ACTIONS(2875), + [anon_sym__Noreturn] = ACTIONS(2875), + [anon_sym_noreturn] = ACTIONS(2875), + [anon_sym__Nonnull] = ACTIONS(2875), + [anon_sym_mutable] = ACTIONS(2875), + [anon_sym_constinit] = ACTIONS(2875), + [anon_sym_consteval] = ACTIONS(2875), + [anon_sym_alignas] = ACTIONS(2875), + [anon_sym__Alignas] = ACTIONS(2875), + [sym_primitive_type] = ACTIONS(2875), + [anon_sym_enum] = ACTIONS(2875), + [anon_sym_class] = ACTIONS(2875), + [anon_sym_struct] = ACTIONS(2875), + [anon_sym_union] = ACTIONS(2875), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5521), - [anon_sym_decltype] = ACTIONS(5521), - [anon_sym_explicit] = ACTIONS(5521), - [anon_sym_typename] = ACTIONS(5521), - [anon_sym_private] = ACTIONS(5521), - [anon_sym_template] = ACTIONS(5521), - [anon_sym_operator] = ACTIONS(5521), - [anon_sym_friend] = ACTIONS(5521), - [anon_sym_public] = ACTIONS(5521), - [anon_sym_protected] = ACTIONS(5521), - [anon_sym_static_assert] = ACTIONS(5521), + [sym_auto] = ACTIONS(2875), + [anon_sym_decltype] = ACTIONS(2875), + [anon_sym_explicit] = ACTIONS(2875), + [anon_sym_typename] = ACTIONS(2875), + [anon_sym_private] = ACTIONS(2875), + [anon_sym_template] = ACTIONS(2875), + [anon_sym_operator] = ACTIONS(2875), + [anon_sym_friend] = ACTIONS(2875), + [anon_sym_public] = ACTIONS(2875), + [anon_sym_protected] = ACTIONS(2875), + [anon_sym_static_assert] = ACTIONS(2875), }, - [1747] = { + [1793] = { [sym_identifier] = ACTIONS(5525), - [aux_sym_preproc_def_token1] = ACTIONS(5525), - [aux_sym_preproc_if_token1] = ACTIONS(5525), - [aux_sym_preproc_if_token2] = ACTIONS(5525), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5525), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5525), - [aux_sym_preproc_else_token1] = ACTIONS(5525), - [aux_sym_preproc_elif_token1] = ACTIONS(5525), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5525), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5525), - [sym_preproc_directive] = ACTIONS(5525), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5527), + [anon_sym_COMMA] = ACTIONS(5527), + [anon_sym_RPAREN] = ACTIONS(5527), [anon_sym_LPAREN2] = ACTIONS(5527), - [anon_sym_TILDE] = ACTIONS(5527), + [anon_sym_DASH] = ACTIONS(5525), + [anon_sym_PLUS] = ACTIONS(5525), [anon_sym_STAR] = ACTIONS(5527), + [anon_sym_SLASH] = ACTIONS(5525), + [anon_sym_PERCENT] = ACTIONS(5527), + [anon_sym_PIPE_PIPE] = ACTIONS(5527), [anon_sym_AMP_AMP] = ACTIONS(5527), + [anon_sym_PIPE] = ACTIONS(5525), + [anon_sym_CARET] = ACTIONS(5527), [anon_sym_AMP] = ACTIONS(5525), + [anon_sym_EQ_EQ] = ACTIONS(5527), + [anon_sym_BANG_EQ] = ACTIONS(5527), + [anon_sym_GT] = ACTIONS(5525), + [anon_sym_GT_EQ] = ACTIONS(5527), + [anon_sym_LT_EQ] = ACTIONS(5525), + [anon_sym_LT] = ACTIONS(5525), + [anon_sym_LT_LT] = ACTIONS(5527), + [anon_sym_GT_GT] = ACTIONS(5527), [anon_sym_SEMI] = ACTIONS(5527), [anon_sym___extension__] = ACTIONS(5525), - [anon_sym_typedef] = ACTIONS(5525), - [anon_sym_virtual] = ACTIONS(5525), - [anon_sym_extern] = ACTIONS(5525), [anon_sym___attribute__] = ACTIONS(5525), [anon_sym___attribute] = ACTIONS(5525), - [anon_sym_using] = ACTIONS(5525), + [anon_sym_COLON] = ACTIONS(5525), [anon_sym_COLON_COLON] = ACTIONS(5527), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5527), - [anon_sym___declspec] = ACTIONS(5525), [anon_sym___based] = ACTIONS(5525), + [anon_sym_LBRACE] = ACTIONS(5527), + [anon_sym_RBRACE] = ACTIONS(5527), [anon_sym_signed] = ACTIONS(5525), [anon_sym_unsigned] = ACTIONS(5525), [anon_sym_long] = ACTIONS(5525), [anon_sym_short] = ACTIONS(5525), - [anon_sym_LBRACK] = ACTIONS(5525), - [anon_sym_static] = ACTIONS(5525), - [anon_sym_register] = ACTIONS(5525), - [anon_sym_inline] = ACTIONS(5525), - [anon_sym___inline] = ACTIONS(5525), - [anon_sym___inline__] = ACTIONS(5525), - [anon_sym___forceinline] = ACTIONS(5525), - [anon_sym_thread_local] = ACTIONS(5525), - [anon_sym___thread] = ACTIONS(5525), + [anon_sym_LBRACK] = ACTIONS(5527), + [anon_sym_RBRACK] = ACTIONS(5527), [anon_sym_const] = ACTIONS(5525), [anon_sym_constexpr] = ACTIONS(5525), [anon_sym_volatile] = ACTIONS(5525), @@ -250591,246 +255552,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(5525), [anon_sym__Alignas] = ACTIONS(5525), [sym_primitive_type] = ACTIONS(5525), - [anon_sym_enum] = ACTIONS(5525), - [anon_sym_class] = ACTIONS(5525), - [anon_sym_struct] = ACTIONS(5525), - [anon_sym_union] = ACTIONS(5525), + [anon_sym_QMARK] = ACTIONS(5527), + [anon_sym_LT_EQ_GT] = ACTIONS(5527), + [anon_sym_or] = ACTIONS(5525), + [anon_sym_and] = ACTIONS(5525), + [anon_sym_bitor] = ACTIONS(5525), + [anon_sym_xor] = ACTIONS(5525), + [anon_sym_bitand] = ACTIONS(5525), + [anon_sym_not_eq] = ACTIONS(5525), + [anon_sym_DASH_DASH] = ACTIONS(5527), + [anon_sym_PLUS_PLUS] = ACTIONS(5527), + [anon_sym_DOT] = ACTIONS(5525), + [anon_sym_DOT_STAR] = ACTIONS(5527), + [anon_sym_DASH_GT] = ACTIONS(5527), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(5525), [anon_sym_decltype] = ACTIONS(5525), - [anon_sym_explicit] = ACTIONS(5525), - [anon_sym_typename] = ACTIONS(5525), - [anon_sym_private] = ACTIONS(5525), - [anon_sym_template] = ACTIONS(5525), - [anon_sym_operator] = ACTIONS(5525), - [anon_sym_friend] = ACTIONS(5525), - [anon_sym_public] = ACTIONS(5525), - [anon_sym_protected] = ACTIONS(5525), - [anon_sym_static_assert] = ACTIONS(5525), - }, - [1748] = { - [sym_identifier] = ACTIONS(3093), - [aux_sym_preproc_def_token1] = ACTIONS(3093), - [aux_sym_preproc_if_token1] = ACTIONS(3093), - [aux_sym_preproc_if_token2] = ACTIONS(3093), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3093), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3093), - [aux_sym_preproc_else_token1] = ACTIONS(3093), - [aux_sym_preproc_elif_token1] = ACTIONS(3093), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3093), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3093), - [sym_preproc_directive] = ACTIONS(3093), - [anon_sym_LPAREN2] = ACTIONS(3095), - [anon_sym_TILDE] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(3095), - [anon_sym_AMP_AMP] = ACTIONS(3095), - [anon_sym_AMP] = ACTIONS(3093), - [anon_sym_SEMI] = ACTIONS(3095), - [anon_sym___extension__] = ACTIONS(3093), - [anon_sym_typedef] = ACTIONS(3093), - [anon_sym_virtual] = ACTIONS(3093), - [anon_sym_extern] = ACTIONS(3093), - [anon_sym___attribute__] = ACTIONS(3093), - [anon_sym___attribute] = ACTIONS(3093), - [anon_sym_using] = ACTIONS(3093), - [anon_sym_COLON_COLON] = ACTIONS(3095), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3095), - [anon_sym___declspec] = ACTIONS(3093), - [anon_sym___based] = ACTIONS(3093), - [anon_sym_signed] = ACTIONS(3093), - [anon_sym_unsigned] = ACTIONS(3093), - [anon_sym_long] = ACTIONS(3093), - [anon_sym_short] = ACTIONS(3093), - [anon_sym_LBRACK] = ACTIONS(3093), - [anon_sym_static] = ACTIONS(3093), - [anon_sym_register] = ACTIONS(3093), - [anon_sym_inline] = ACTIONS(3093), - [anon_sym___inline] = ACTIONS(3093), - [anon_sym___inline__] = ACTIONS(3093), - [anon_sym___forceinline] = ACTIONS(3093), - [anon_sym_thread_local] = ACTIONS(3093), - [anon_sym___thread] = ACTIONS(3093), - [anon_sym_const] = ACTIONS(3093), - [anon_sym_constexpr] = ACTIONS(3093), - [anon_sym_volatile] = ACTIONS(3093), - [anon_sym_restrict] = ACTIONS(3093), - [anon_sym___restrict__] = ACTIONS(3093), - [anon_sym__Atomic] = ACTIONS(3093), - [anon_sym__Noreturn] = ACTIONS(3093), - [anon_sym_noreturn] = ACTIONS(3093), - [anon_sym__Nonnull] = ACTIONS(3093), - [anon_sym_mutable] = ACTIONS(3093), - [anon_sym_constinit] = ACTIONS(3093), - [anon_sym_consteval] = ACTIONS(3093), - [anon_sym_alignas] = ACTIONS(3093), - [anon_sym__Alignas] = ACTIONS(3093), - [sym_primitive_type] = ACTIONS(3093), - [anon_sym_enum] = ACTIONS(3093), - [anon_sym_class] = ACTIONS(3093), - [anon_sym_struct] = ACTIONS(3093), - [anon_sym_union] = ACTIONS(3093), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3093), - [anon_sym_decltype] = ACTIONS(3093), - [anon_sym_explicit] = ACTIONS(3093), - [anon_sym_typename] = ACTIONS(3093), - [anon_sym_private] = ACTIONS(3093), - [anon_sym_template] = ACTIONS(3093), - [anon_sym_operator] = ACTIONS(3093), - [anon_sym_friend] = ACTIONS(3093), - [anon_sym_public] = ACTIONS(3093), - [anon_sym_protected] = ACTIONS(3093), - [anon_sym_static_assert] = ACTIONS(3093), - }, - [1749] = { - [sym_identifier] = ACTIONS(3319), - [aux_sym_preproc_def_token1] = ACTIONS(3319), - [aux_sym_preproc_if_token1] = ACTIONS(3319), - [aux_sym_preproc_if_token2] = ACTIONS(3319), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3319), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3319), - [aux_sym_preproc_else_token1] = ACTIONS(3319), - [aux_sym_preproc_elif_token1] = ACTIONS(3319), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3319), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3319), - [sym_preproc_directive] = ACTIONS(3319), - [anon_sym_LPAREN2] = ACTIONS(3321), - [anon_sym_TILDE] = ACTIONS(3321), - [anon_sym_STAR] = ACTIONS(3321), - [anon_sym_AMP_AMP] = ACTIONS(3321), - [anon_sym_AMP] = ACTIONS(3319), - [anon_sym_SEMI] = ACTIONS(3321), - [anon_sym___extension__] = ACTIONS(3319), - [anon_sym_typedef] = ACTIONS(3319), - [anon_sym_virtual] = ACTIONS(3319), - [anon_sym_extern] = ACTIONS(3319), - [anon_sym___attribute__] = ACTIONS(3319), - [anon_sym___attribute] = ACTIONS(3319), - [anon_sym_using] = ACTIONS(3319), - [anon_sym_COLON_COLON] = ACTIONS(3321), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3321), - [anon_sym___declspec] = ACTIONS(3319), - [anon_sym___based] = ACTIONS(3319), - [anon_sym_signed] = ACTIONS(3319), - [anon_sym_unsigned] = ACTIONS(3319), - [anon_sym_long] = ACTIONS(3319), - [anon_sym_short] = ACTIONS(3319), - [anon_sym_LBRACK] = ACTIONS(3319), - [anon_sym_static] = ACTIONS(3319), - [anon_sym_register] = ACTIONS(3319), - [anon_sym_inline] = ACTIONS(3319), - [anon_sym___inline] = ACTIONS(3319), - [anon_sym___inline__] = ACTIONS(3319), - [anon_sym___forceinline] = ACTIONS(3319), - [anon_sym_thread_local] = ACTIONS(3319), - [anon_sym___thread] = ACTIONS(3319), - [anon_sym_const] = ACTIONS(3319), - [anon_sym_constexpr] = ACTIONS(3319), - [anon_sym_volatile] = ACTIONS(3319), - [anon_sym_restrict] = ACTIONS(3319), - [anon_sym___restrict__] = ACTIONS(3319), - [anon_sym__Atomic] = ACTIONS(3319), - [anon_sym__Noreturn] = ACTIONS(3319), - [anon_sym_noreturn] = ACTIONS(3319), - [anon_sym__Nonnull] = ACTIONS(3319), - [anon_sym_mutable] = ACTIONS(3319), - [anon_sym_constinit] = ACTIONS(3319), - [anon_sym_consteval] = ACTIONS(3319), - [anon_sym_alignas] = ACTIONS(3319), - [anon_sym__Alignas] = ACTIONS(3319), - [sym_primitive_type] = ACTIONS(3319), - [anon_sym_enum] = ACTIONS(3319), - [anon_sym_class] = ACTIONS(3319), - [anon_sym_struct] = ACTIONS(3319), - [anon_sym_union] = ACTIONS(3319), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3319), - [anon_sym_decltype] = ACTIONS(3319), - [anon_sym_explicit] = ACTIONS(3319), - [anon_sym_typename] = ACTIONS(3319), - [anon_sym_private] = ACTIONS(3319), - [anon_sym_template] = ACTIONS(3319), - [anon_sym_operator] = ACTIONS(3319), - [anon_sym_friend] = ACTIONS(3319), - [anon_sym_public] = ACTIONS(3319), - [anon_sym_protected] = ACTIONS(3319), - [anon_sym_static_assert] = ACTIONS(3319), + [anon_sym_final] = ACTIONS(5525), + [anon_sym_override] = ACTIONS(5525), + [anon_sym_requires] = ACTIONS(5525), }, - [1750] = { - [sym_identifier] = ACTIONS(3104), - [aux_sym_preproc_def_token1] = ACTIONS(3104), - [aux_sym_preproc_if_token1] = ACTIONS(3104), - [aux_sym_preproc_if_token2] = ACTIONS(3104), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3104), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3104), - [aux_sym_preproc_else_token1] = ACTIONS(3104), - [aux_sym_preproc_elif_token1] = ACTIONS(3104), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3104), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3104), - [sym_preproc_directive] = ACTIONS(3104), - [anon_sym_LPAREN2] = ACTIONS(3106), - [anon_sym_TILDE] = ACTIONS(3106), - [anon_sym_STAR] = ACTIONS(3106), - [anon_sym_AMP_AMP] = ACTIONS(3106), - [anon_sym_AMP] = ACTIONS(3104), - [anon_sym_SEMI] = ACTIONS(3106), - [anon_sym___extension__] = ACTIONS(3104), - [anon_sym_typedef] = ACTIONS(3104), - [anon_sym_virtual] = ACTIONS(3104), - [anon_sym_extern] = ACTIONS(3104), - [anon_sym___attribute__] = ACTIONS(3104), - [anon_sym___attribute] = ACTIONS(3104), - [anon_sym_using] = ACTIONS(3104), - [anon_sym_COLON_COLON] = ACTIONS(3106), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3106), - [anon_sym___declspec] = ACTIONS(3104), - [anon_sym___based] = ACTIONS(3104), - [anon_sym_signed] = ACTIONS(3104), - [anon_sym_unsigned] = ACTIONS(3104), - [anon_sym_long] = ACTIONS(3104), - [anon_sym_short] = ACTIONS(3104), - [anon_sym_LBRACK] = ACTIONS(3104), - [anon_sym_static] = ACTIONS(3104), - [anon_sym_register] = ACTIONS(3104), - [anon_sym_inline] = ACTIONS(3104), - [anon_sym___inline] = ACTIONS(3104), - [anon_sym___inline__] = ACTIONS(3104), - [anon_sym___forceinline] = ACTIONS(3104), - [anon_sym_thread_local] = ACTIONS(3104), - [anon_sym___thread] = ACTIONS(3104), - [anon_sym_const] = ACTIONS(3104), - [anon_sym_constexpr] = ACTIONS(3104), - [anon_sym_volatile] = ACTIONS(3104), - [anon_sym_restrict] = ACTIONS(3104), - [anon_sym___restrict__] = ACTIONS(3104), - [anon_sym__Atomic] = ACTIONS(3104), - [anon_sym__Noreturn] = ACTIONS(3104), - [anon_sym_noreturn] = ACTIONS(3104), - [anon_sym__Nonnull] = ACTIONS(3104), - [anon_sym_mutable] = ACTIONS(3104), - [anon_sym_constinit] = ACTIONS(3104), - [anon_sym_consteval] = ACTIONS(3104), - [anon_sym_alignas] = ACTIONS(3104), - [anon_sym__Alignas] = ACTIONS(3104), - [sym_primitive_type] = ACTIONS(3104), - [anon_sym_enum] = ACTIONS(3104), - [anon_sym_class] = ACTIONS(3104), - [anon_sym_struct] = ACTIONS(3104), - [anon_sym_union] = ACTIONS(3104), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3104), - [anon_sym_decltype] = ACTIONS(3104), - [anon_sym_explicit] = ACTIONS(3104), - [anon_sym_typename] = ACTIONS(3104), - [anon_sym_private] = ACTIONS(3104), - [anon_sym_template] = ACTIONS(3104), - [anon_sym_operator] = ACTIONS(3104), - [anon_sym_friend] = ACTIONS(3104), - [anon_sym_public] = ACTIONS(3104), - [anon_sym_protected] = ACTIONS(3104), - [anon_sym_static_assert] = ACTIONS(3104), - }, - [1751] = { + [1794] = { [sym_identifier] = ACTIONS(5529), [aux_sym_preproc_def_token1] = ACTIONS(5529), [aux_sym_preproc_if_token1] = ACTIONS(5529), @@ -250904,122 +255646,193 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(5529), [anon_sym_static_assert] = ACTIONS(5529), }, - [1752] = { - [sym__declaration_modifiers] = STATE(3282), - [sym_attribute_specifier] = STATE(3282), - [sym_attribute_declaration] = STATE(3282), - [sym_ms_declspec_modifier] = STATE(3282), - [sym_ms_based_modifier] = STATE(8682), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6247), - [sym_array_declarator] = STATE(5998), - [sym_storage_class_specifier] = STATE(3282), - [sym_type_qualifier] = STATE(3282), - [sym_alignas_qualifier] = STATE(2975), - [sym_decltype] = STATE(8601), - [sym_explicit_function_specifier] = STATE(3282), - [sym_operator_cast] = STATE(6827), - [sym__constructor_specifiers] = STATE(3282), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(8601), - [sym_template_function] = STATE(5998), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5591), - [sym_qualified_identifier] = STATE(5998), - [sym_qualified_operator_cast_identifier] = STATE(6827), - [sym_operator_name] = STATE(5998), - [aux_sym_operator_cast_definition_repeat1] = STATE(3282), - [sym_identifier] = ACTIONS(5460), - [anon_sym_LPAREN2] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2979), - [anon_sym_STAR] = ACTIONS(2981), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2983), - [anon_sym___extension__] = ACTIONS(5462), - [anon_sym_virtual] = ACTIONS(5464), - [anon_sym_extern] = ACTIONS(5466), - [anon_sym___attribute__] = ACTIONS(5468), - [anon_sym___attribute] = ACTIONS(5468), - [anon_sym_COLON_COLON] = ACTIONS(5470), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5472), - [anon_sym___declspec] = ACTIONS(5474), - [anon_sym___based] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(2995), - [anon_sym_static] = ACTIONS(5466), - [anon_sym_register] = ACTIONS(5466), - [anon_sym_inline] = ACTIONS(5466), - [anon_sym___inline] = ACTIONS(5466), - [anon_sym___inline__] = ACTIONS(5466), - [anon_sym___forceinline] = ACTIONS(5466), - [anon_sym_thread_local] = ACTIONS(5466), - [anon_sym___thread] = ACTIONS(5466), - [anon_sym_const] = ACTIONS(5462), - [anon_sym_constexpr] = ACTIONS(5462), - [anon_sym_volatile] = ACTIONS(5462), - [anon_sym_restrict] = ACTIONS(5462), - [anon_sym___restrict__] = ACTIONS(5462), - [anon_sym__Atomic] = ACTIONS(5462), - [anon_sym__Noreturn] = ACTIONS(5462), - [anon_sym_noreturn] = ACTIONS(5462), - [anon_sym__Nonnull] = ACTIONS(5462), - [anon_sym_mutable] = ACTIONS(5462), - [anon_sym_constinit] = ACTIONS(5462), - [anon_sym_consteval] = ACTIONS(5462), - [anon_sym_alignas] = ACTIONS(5476), - [anon_sym__Alignas] = ACTIONS(5476), + [1795] = { + [sym_identifier] = ACTIONS(2879), + [aux_sym_preproc_def_token1] = ACTIONS(2879), + [aux_sym_preproc_if_token1] = ACTIONS(2879), + [aux_sym_preproc_if_token2] = ACTIONS(2879), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2879), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2879), + [aux_sym_preproc_else_token1] = ACTIONS(2879), + [aux_sym_preproc_elif_token1] = ACTIONS(2879), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2879), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2879), + [sym_preproc_directive] = ACTIONS(2879), + [anon_sym_LPAREN2] = ACTIONS(2881), + [anon_sym_TILDE] = ACTIONS(2881), + [anon_sym_STAR] = ACTIONS(2881), + [anon_sym_AMP_AMP] = ACTIONS(2881), + [anon_sym_AMP] = ACTIONS(2879), + [anon_sym_SEMI] = ACTIONS(2881), + [anon_sym___extension__] = ACTIONS(2879), + [anon_sym_typedef] = ACTIONS(2879), + [anon_sym_virtual] = ACTIONS(2879), + [anon_sym_extern] = ACTIONS(2879), + [anon_sym___attribute__] = ACTIONS(2879), + [anon_sym___attribute] = ACTIONS(2879), + [anon_sym_using] = ACTIONS(2879), + [anon_sym_COLON_COLON] = ACTIONS(2881), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2881), + [anon_sym___declspec] = ACTIONS(2879), + [anon_sym___based] = ACTIONS(2879), + [anon_sym_signed] = ACTIONS(2879), + [anon_sym_unsigned] = ACTIONS(2879), + [anon_sym_long] = ACTIONS(2879), + [anon_sym_short] = ACTIONS(2879), + [anon_sym_LBRACK] = ACTIONS(2879), + [anon_sym_static] = ACTIONS(2879), + [anon_sym_register] = ACTIONS(2879), + [anon_sym_inline] = ACTIONS(2879), + [anon_sym___inline] = ACTIONS(2879), + [anon_sym___inline__] = ACTIONS(2879), + [anon_sym___forceinline] = ACTIONS(2879), + [anon_sym_thread_local] = ACTIONS(2879), + [anon_sym___thread] = ACTIONS(2879), + [anon_sym_const] = ACTIONS(2879), + [anon_sym_constexpr] = ACTIONS(2879), + [anon_sym_volatile] = ACTIONS(2879), + [anon_sym_restrict] = ACTIONS(2879), + [anon_sym___restrict__] = ACTIONS(2879), + [anon_sym__Atomic] = ACTIONS(2879), + [anon_sym__Noreturn] = ACTIONS(2879), + [anon_sym_noreturn] = ACTIONS(2879), + [anon_sym__Nonnull] = ACTIONS(2879), + [anon_sym_mutable] = ACTIONS(2879), + [anon_sym_constinit] = ACTIONS(2879), + [anon_sym_consteval] = ACTIONS(2879), + [anon_sym_alignas] = ACTIONS(2879), + [anon_sym__Alignas] = ACTIONS(2879), + [sym_primitive_type] = ACTIONS(2879), + [anon_sym_enum] = ACTIONS(2879), + [anon_sym_class] = ACTIONS(2879), + [anon_sym_struct] = ACTIONS(2879), + [anon_sym_union] = ACTIONS(2879), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_operator] = ACTIONS(141), + [sym_auto] = ACTIONS(2879), + [anon_sym_decltype] = ACTIONS(2879), + [anon_sym_explicit] = ACTIONS(2879), + [anon_sym_typename] = ACTIONS(2879), + [anon_sym_private] = ACTIONS(2879), + [anon_sym_template] = ACTIONS(2879), + [anon_sym_operator] = ACTIONS(2879), + [anon_sym_friend] = ACTIONS(2879), + [anon_sym_public] = ACTIONS(2879), + [anon_sym_protected] = ACTIONS(2879), + [anon_sym_static_assert] = ACTIONS(2879), }, - [1753] = { + [1796] = { + [sym_identifier] = ACTIONS(2895), + [aux_sym_preproc_def_token1] = ACTIONS(2895), + [aux_sym_preproc_if_token1] = ACTIONS(2895), + [aux_sym_preproc_if_token2] = ACTIONS(2895), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2895), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2895), + [aux_sym_preproc_else_token1] = ACTIONS(2895), + [aux_sym_preproc_elif_token1] = ACTIONS(2895), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2895), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2895), + [sym_preproc_directive] = ACTIONS(2895), + [anon_sym_LPAREN2] = ACTIONS(2897), + [anon_sym_TILDE] = ACTIONS(2897), + [anon_sym_STAR] = ACTIONS(2897), + [anon_sym_AMP_AMP] = ACTIONS(2897), + [anon_sym_AMP] = ACTIONS(2895), + [anon_sym_SEMI] = ACTIONS(2897), + [anon_sym___extension__] = ACTIONS(2895), + [anon_sym_typedef] = ACTIONS(2895), + [anon_sym_virtual] = ACTIONS(2895), + [anon_sym_extern] = ACTIONS(2895), + [anon_sym___attribute__] = ACTIONS(2895), + [anon_sym___attribute] = ACTIONS(2895), + [anon_sym_using] = ACTIONS(2895), + [anon_sym_COLON_COLON] = ACTIONS(2897), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2897), + [anon_sym___declspec] = ACTIONS(2895), + [anon_sym___based] = ACTIONS(2895), + [anon_sym_signed] = ACTIONS(2895), + [anon_sym_unsigned] = ACTIONS(2895), + [anon_sym_long] = ACTIONS(2895), + [anon_sym_short] = ACTIONS(2895), + [anon_sym_LBRACK] = ACTIONS(2895), + [anon_sym_static] = ACTIONS(2895), + [anon_sym_register] = ACTIONS(2895), + [anon_sym_inline] = ACTIONS(2895), + [anon_sym___inline] = ACTIONS(2895), + [anon_sym___inline__] = ACTIONS(2895), + [anon_sym___forceinline] = ACTIONS(2895), + [anon_sym_thread_local] = ACTIONS(2895), + [anon_sym___thread] = ACTIONS(2895), + [anon_sym_const] = ACTIONS(2895), + [anon_sym_constexpr] = ACTIONS(2895), + [anon_sym_volatile] = ACTIONS(2895), + [anon_sym_restrict] = ACTIONS(2895), + [anon_sym___restrict__] = ACTIONS(2895), + [anon_sym__Atomic] = ACTIONS(2895), + [anon_sym__Noreturn] = ACTIONS(2895), + [anon_sym_noreturn] = ACTIONS(2895), + [anon_sym__Nonnull] = ACTIONS(2895), + [anon_sym_mutable] = ACTIONS(2895), + [anon_sym_constinit] = ACTIONS(2895), + [anon_sym_consteval] = ACTIONS(2895), + [anon_sym_alignas] = ACTIONS(2895), + [anon_sym__Alignas] = ACTIONS(2895), + [sym_primitive_type] = ACTIONS(2895), + [anon_sym_enum] = ACTIONS(2895), + [anon_sym_class] = ACTIONS(2895), + [anon_sym_struct] = ACTIONS(2895), + [anon_sym_union] = ACTIONS(2895), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2895), + [anon_sym_decltype] = ACTIONS(2895), + [anon_sym_explicit] = ACTIONS(2895), + [anon_sym_typename] = ACTIONS(2895), + [anon_sym_private] = ACTIONS(2895), + [anon_sym_template] = ACTIONS(2895), + [anon_sym_operator] = ACTIONS(2895), + [anon_sym_friend] = ACTIONS(2895), + [anon_sym_public] = ACTIONS(2895), + [anon_sym_protected] = ACTIONS(2895), + [anon_sym_static_assert] = ACTIONS(2895), + }, + [1797] = { + [sym_decltype_auto] = STATE(1864), [sym_identifier] = ACTIONS(5533), - [aux_sym_preproc_def_token1] = ACTIONS(5533), - [aux_sym_preproc_if_token1] = ACTIONS(5533), - [aux_sym_preproc_if_token2] = ACTIONS(5533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5533), - [aux_sym_preproc_else_token1] = ACTIONS(5533), - [aux_sym_preproc_elif_token1] = ACTIONS(5533), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5533), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5533), - [sym_preproc_directive] = ACTIONS(5533), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5535), + [anon_sym_COMMA] = ACTIONS(5535), + [anon_sym_RPAREN] = ACTIONS(5535), [anon_sym_LPAREN2] = ACTIONS(5535), - [anon_sym_TILDE] = ACTIONS(5535), + [anon_sym_DASH] = ACTIONS(5533), + [anon_sym_PLUS] = ACTIONS(5533), [anon_sym_STAR] = ACTIONS(5535), + [anon_sym_SLASH] = ACTIONS(5533), + [anon_sym_PERCENT] = ACTIONS(5535), + [anon_sym_PIPE_PIPE] = ACTIONS(5535), [anon_sym_AMP_AMP] = ACTIONS(5535), + [anon_sym_PIPE] = ACTIONS(5533), + [anon_sym_CARET] = ACTIONS(5535), [anon_sym_AMP] = ACTIONS(5533), + [anon_sym_EQ_EQ] = ACTIONS(5535), + [anon_sym_BANG_EQ] = ACTIONS(5535), + [anon_sym_GT] = ACTIONS(5533), + [anon_sym_GT_EQ] = ACTIONS(5535), + [anon_sym_LT_EQ] = ACTIONS(5533), + [anon_sym_LT] = ACTIONS(5533), + [anon_sym_LT_LT] = ACTIONS(5535), + [anon_sym_GT_GT] = ACTIONS(5535), [anon_sym_SEMI] = ACTIONS(5535), [anon_sym___extension__] = ACTIONS(5533), - [anon_sym_typedef] = ACTIONS(5533), - [anon_sym_virtual] = ACTIONS(5533), - [anon_sym_extern] = ACTIONS(5533), [anon_sym___attribute__] = ACTIONS(5533), [anon_sym___attribute] = ACTIONS(5533), - [anon_sym_using] = ACTIONS(5533), - [anon_sym_COLON_COLON] = ACTIONS(5535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5535), - [anon_sym___declspec] = ACTIONS(5533), + [anon_sym_COLON] = ACTIONS(5535), [anon_sym___based] = ACTIONS(5533), + [anon_sym_LBRACE] = ACTIONS(5535), + [anon_sym_RBRACE] = ACTIONS(5535), [anon_sym_signed] = ACTIONS(5533), [anon_sym_unsigned] = ACTIONS(5533), [anon_sym_long] = ACTIONS(5533), [anon_sym_short] = ACTIONS(5533), - [anon_sym_LBRACK] = ACTIONS(5533), - [anon_sym_static] = ACTIONS(5533), - [anon_sym_register] = ACTIONS(5533), - [anon_sym_inline] = ACTIONS(5533), - [anon_sym___inline] = ACTIONS(5533), - [anon_sym___inline__] = ACTIONS(5533), - [anon_sym___forceinline] = ACTIONS(5533), - [anon_sym_thread_local] = ACTIONS(5533), - [anon_sym___thread] = ACTIONS(5533), + [anon_sym_LBRACK] = ACTIONS(5535), + [anon_sym_RBRACK] = ACTIONS(5535), [anon_sym_const] = ACTIONS(5533), [anon_sym_constexpr] = ACTIONS(5533), [anon_sym_volatile] = ACTIONS(5533), @@ -251035,246 +255848,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(5533), [anon_sym__Alignas] = ACTIONS(5533), [sym_primitive_type] = ACTIONS(5533), - [anon_sym_enum] = ACTIONS(5533), - [anon_sym_class] = ACTIONS(5533), - [anon_sym_struct] = ACTIONS(5533), - [anon_sym_union] = ACTIONS(5533), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5533), - [anon_sym_decltype] = ACTIONS(5533), - [anon_sym_explicit] = ACTIONS(5533), - [anon_sym_typename] = ACTIONS(5533), - [anon_sym_private] = ACTIONS(5533), - [anon_sym_template] = ACTIONS(5533), - [anon_sym_operator] = ACTIONS(5533), - [anon_sym_friend] = ACTIONS(5533), - [anon_sym_public] = ACTIONS(5533), - [anon_sym_protected] = ACTIONS(5533), - [anon_sym_static_assert] = ACTIONS(5533), - }, - [1754] = { - [sym_identifier] = ACTIONS(5537), - [aux_sym_preproc_def_token1] = ACTIONS(5537), - [aux_sym_preproc_if_token1] = ACTIONS(5537), - [aux_sym_preproc_if_token2] = ACTIONS(5537), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5537), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5537), - [aux_sym_preproc_else_token1] = ACTIONS(5537), - [aux_sym_preproc_elif_token1] = ACTIONS(5537), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5537), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5537), - [sym_preproc_directive] = ACTIONS(5537), - [anon_sym_LPAREN2] = ACTIONS(5539), - [anon_sym_TILDE] = ACTIONS(5539), - [anon_sym_STAR] = ACTIONS(5539), - [anon_sym_AMP_AMP] = ACTIONS(5539), - [anon_sym_AMP] = ACTIONS(5537), - [anon_sym_SEMI] = ACTIONS(5539), - [anon_sym___extension__] = ACTIONS(5537), - [anon_sym_typedef] = ACTIONS(5537), - [anon_sym_virtual] = ACTIONS(5537), - [anon_sym_extern] = ACTIONS(5537), - [anon_sym___attribute__] = ACTIONS(5537), - [anon_sym___attribute] = ACTIONS(5537), - [anon_sym_using] = ACTIONS(5537), - [anon_sym_COLON_COLON] = ACTIONS(5539), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5539), - [anon_sym___declspec] = ACTIONS(5537), - [anon_sym___based] = ACTIONS(5537), - [anon_sym_signed] = ACTIONS(5537), - [anon_sym_unsigned] = ACTIONS(5537), - [anon_sym_long] = ACTIONS(5537), - [anon_sym_short] = ACTIONS(5537), - [anon_sym_LBRACK] = ACTIONS(5537), - [anon_sym_static] = ACTIONS(5537), - [anon_sym_register] = ACTIONS(5537), - [anon_sym_inline] = ACTIONS(5537), - [anon_sym___inline] = ACTIONS(5537), - [anon_sym___inline__] = ACTIONS(5537), - [anon_sym___forceinline] = ACTIONS(5537), - [anon_sym_thread_local] = ACTIONS(5537), - [anon_sym___thread] = ACTIONS(5537), - [anon_sym_const] = ACTIONS(5537), - [anon_sym_constexpr] = ACTIONS(5537), - [anon_sym_volatile] = ACTIONS(5537), - [anon_sym_restrict] = ACTIONS(5537), - [anon_sym___restrict__] = ACTIONS(5537), - [anon_sym__Atomic] = ACTIONS(5537), - [anon_sym__Noreturn] = ACTIONS(5537), - [anon_sym_noreturn] = ACTIONS(5537), - [anon_sym__Nonnull] = ACTIONS(5537), - [anon_sym_mutable] = ACTIONS(5537), - [anon_sym_constinit] = ACTIONS(5537), - [anon_sym_consteval] = ACTIONS(5537), - [anon_sym_alignas] = ACTIONS(5537), - [anon_sym__Alignas] = ACTIONS(5537), - [sym_primitive_type] = ACTIONS(5537), - [anon_sym_enum] = ACTIONS(5537), - [anon_sym_class] = ACTIONS(5537), - [anon_sym_struct] = ACTIONS(5537), - [anon_sym_union] = ACTIONS(5537), + [anon_sym_QMARK] = ACTIONS(5535), + [anon_sym_LT_EQ_GT] = ACTIONS(5535), + [anon_sym_or] = ACTIONS(5533), + [anon_sym_and] = ACTIONS(5533), + [anon_sym_bitor] = ACTIONS(5533), + [anon_sym_xor] = ACTIONS(5533), + [anon_sym_bitand] = ACTIONS(5533), + [anon_sym_not_eq] = ACTIONS(5533), + [anon_sym_DASH_DASH] = ACTIONS(5535), + [anon_sym_PLUS_PLUS] = ACTIONS(5535), + [anon_sym_DOT] = ACTIONS(5533), + [anon_sym_DOT_STAR] = ACTIONS(5535), + [anon_sym_DASH_GT] = ACTIONS(5535), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(5537), - [anon_sym_decltype] = ACTIONS(5537), - [anon_sym_explicit] = ACTIONS(5537), - [anon_sym_typename] = ACTIONS(5537), - [anon_sym_private] = ACTIONS(5537), - [anon_sym_template] = ACTIONS(5537), - [anon_sym_operator] = ACTIONS(5537), - [anon_sym_friend] = ACTIONS(5537), - [anon_sym_public] = ACTIONS(5537), - [anon_sym_protected] = ACTIONS(5537), - [anon_sym_static_assert] = ACTIONS(5537), + [anon_sym_decltype] = ACTIONS(5539), + [anon_sym_final] = ACTIONS(5533), + [anon_sym_override] = ACTIONS(5533), + [anon_sym_requires] = ACTIONS(5533), }, - [1755] = { - [sym_identifier] = ACTIONS(5541), - [aux_sym_preproc_def_token1] = ACTIONS(5541), - [aux_sym_preproc_if_token1] = ACTIONS(5541), - [aux_sym_preproc_if_token2] = ACTIONS(5541), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5541), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5541), - [aux_sym_preproc_else_token1] = ACTIONS(5541), - [aux_sym_preproc_elif_token1] = ACTIONS(5541), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5541), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5541), - [sym_preproc_directive] = ACTIONS(5541), - [anon_sym_LPAREN2] = ACTIONS(5543), - [anon_sym_TILDE] = ACTIONS(5543), - [anon_sym_STAR] = ACTIONS(5543), - [anon_sym_AMP_AMP] = ACTIONS(5543), - [anon_sym_AMP] = ACTIONS(5541), - [anon_sym_SEMI] = ACTIONS(5543), - [anon_sym___extension__] = ACTIONS(5541), - [anon_sym_typedef] = ACTIONS(5541), - [anon_sym_virtual] = ACTIONS(5541), - [anon_sym_extern] = ACTIONS(5541), - [anon_sym___attribute__] = ACTIONS(5541), - [anon_sym___attribute] = ACTIONS(5541), - [anon_sym_using] = ACTIONS(5541), - [anon_sym_COLON_COLON] = ACTIONS(5543), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5543), - [anon_sym___declspec] = ACTIONS(5541), - [anon_sym___based] = ACTIONS(5541), - [anon_sym_signed] = ACTIONS(5541), - [anon_sym_unsigned] = ACTIONS(5541), - [anon_sym_long] = ACTIONS(5541), - [anon_sym_short] = ACTIONS(5541), - [anon_sym_LBRACK] = ACTIONS(5541), - [anon_sym_static] = ACTIONS(5541), - [anon_sym_register] = ACTIONS(5541), - [anon_sym_inline] = ACTIONS(5541), - [anon_sym___inline] = ACTIONS(5541), - [anon_sym___inline__] = ACTIONS(5541), - [anon_sym___forceinline] = ACTIONS(5541), - [anon_sym_thread_local] = ACTIONS(5541), - [anon_sym___thread] = ACTIONS(5541), - [anon_sym_const] = ACTIONS(5541), - [anon_sym_constexpr] = ACTIONS(5541), - [anon_sym_volatile] = ACTIONS(5541), - [anon_sym_restrict] = ACTIONS(5541), - [anon_sym___restrict__] = ACTIONS(5541), - [anon_sym__Atomic] = ACTIONS(5541), - [anon_sym__Noreturn] = ACTIONS(5541), - [anon_sym_noreturn] = ACTIONS(5541), - [anon_sym__Nonnull] = ACTIONS(5541), - [anon_sym_mutable] = ACTIONS(5541), - [anon_sym_constinit] = ACTIONS(5541), - [anon_sym_consteval] = ACTIONS(5541), - [anon_sym_alignas] = ACTIONS(5541), - [anon_sym__Alignas] = ACTIONS(5541), - [sym_primitive_type] = ACTIONS(5541), - [anon_sym_enum] = ACTIONS(5541), - [anon_sym_class] = ACTIONS(5541), - [anon_sym_struct] = ACTIONS(5541), - [anon_sym_union] = ACTIONS(5541), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5541), - [anon_sym_decltype] = ACTIONS(5541), - [anon_sym_explicit] = ACTIONS(5541), - [anon_sym_typename] = ACTIONS(5541), - [anon_sym_private] = ACTIONS(5541), - [anon_sym_template] = ACTIONS(5541), - [anon_sym_operator] = ACTIONS(5541), - [anon_sym_friend] = ACTIONS(5541), - [anon_sym_public] = ACTIONS(5541), - [anon_sym_protected] = ACTIONS(5541), - [anon_sym_static_assert] = ACTIONS(5541), + [1798] = { + [sym_identifier] = ACTIONS(5002), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5004), + [anon_sym_COMMA] = ACTIONS(5004), + [anon_sym_RPAREN] = ACTIONS(5004), + [anon_sym_LPAREN2] = ACTIONS(5004), + [anon_sym_DASH] = ACTIONS(5002), + [anon_sym_PLUS] = ACTIONS(5002), + [anon_sym_STAR] = ACTIONS(5004), + [anon_sym_SLASH] = ACTIONS(5002), + [anon_sym_PERCENT] = ACTIONS(5004), + [anon_sym_PIPE_PIPE] = ACTIONS(5004), + [anon_sym_AMP_AMP] = ACTIONS(5004), + [anon_sym_PIPE] = ACTIONS(5002), + [anon_sym_CARET] = ACTIONS(5004), + [anon_sym_AMP] = ACTIONS(5002), + [anon_sym_EQ_EQ] = ACTIONS(5004), + [anon_sym_BANG_EQ] = ACTIONS(5004), + [anon_sym_GT] = ACTIONS(5002), + [anon_sym_GT_EQ] = ACTIONS(5004), + [anon_sym_LT_EQ] = ACTIONS(5002), + [anon_sym_LT] = ACTIONS(5002), + [anon_sym_LT_LT] = ACTIONS(5004), + [anon_sym_GT_GT] = ACTIONS(5004), + [anon_sym_SEMI] = ACTIONS(5004), + [anon_sym___extension__] = ACTIONS(5002), + [anon_sym___attribute__] = ACTIONS(5002), + [anon_sym___attribute] = ACTIONS(5002), + [anon_sym_COLON] = ACTIONS(5002), + [anon_sym_COLON_COLON] = ACTIONS(5004), + [anon_sym___based] = ACTIONS(5002), + [anon_sym_LBRACE] = ACTIONS(5004), + [anon_sym_RBRACE] = ACTIONS(5004), + [anon_sym_signed] = ACTIONS(5002), + [anon_sym_unsigned] = ACTIONS(5002), + [anon_sym_long] = ACTIONS(5002), + [anon_sym_short] = ACTIONS(5002), + [anon_sym_LBRACK] = ACTIONS(5004), + [anon_sym_RBRACK] = ACTIONS(5004), + [anon_sym_const] = ACTIONS(5002), + [anon_sym_constexpr] = ACTIONS(5002), + [anon_sym_volatile] = ACTIONS(5002), + [anon_sym_restrict] = ACTIONS(5002), + [anon_sym___restrict__] = ACTIONS(5002), + [anon_sym__Atomic] = ACTIONS(5002), + [anon_sym__Noreturn] = ACTIONS(5002), + [anon_sym_noreturn] = ACTIONS(5002), + [anon_sym__Nonnull] = ACTIONS(5002), + [anon_sym_mutable] = ACTIONS(5002), + [anon_sym_constinit] = ACTIONS(5002), + [anon_sym_consteval] = ACTIONS(5002), + [anon_sym_alignas] = ACTIONS(5002), + [anon_sym__Alignas] = ACTIONS(5002), + [sym_primitive_type] = ACTIONS(5002), + [anon_sym_QMARK] = ACTIONS(5004), + [anon_sym_LT_EQ_GT] = ACTIONS(5004), + [anon_sym_or] = ACTIONS(5002), + [anon_sym_and] = ACTIONS(5002), + [anon_sym_bitor] = ACTIONS(5002), + [anon_sym_xor] = ACTIONS(5002), + [anon_sym_bitand] = ACTIONS(5002), + [anon_sym_not_eq] = ACTIONS(5002), + [anon_sym_DASH_DASH] = ACTIONS(5004), + [anon_sym_PLUS_PLUS] = ACTIONS(5004), + [anon_sym_DOT] = ACTIONS(5002), + [anon_sym_DOT_STAR] = ACTIONS(5004), + [anon_sym_DASH_GT] = ACTIONS(5004), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5002), + [anon_sym_decltype] = ACTIONS(5002), + [anon_sym_final] = ACTIONS(5002), + [anon_sym_override] = ACTIONS(5002), + [anon_sym_requires] = ACTIONS(5002), }, - [1756] = { - [sym_identifier] = ACTIONS(2703), - [aux_sym_preproc_def_token1] = ACTIONS(2703), - [aux_sym_preproc_if_token1] = ACTIONS(2703), - [aux_sym_preproc_if_token2] = ACTIONS(2703), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2703), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2703), - [aux_sym_preproc_else_token1] = ACTIONS(2703), - [aux_sym_preproc_elif_token1] = ACTIONS(2703), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2703), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2703), - [sym_preproc_directive] = ACTIONS(2703), - [anon_sym_LPAREN2] = ACTIONS(2705), - [anon_sym_TILDE] = ACTIONS(2705), - [anon_sym_STAR] = ACTIONS(2705), - [anon_sym_AMP_AMP] = ACTIONS(2705), - [anon_sym_AMP] = ACTIONS(2703), - [anon_sym_SEMI] = ACTIONS(2705), - [anon_sym___extension__] = ACTIONS(2703), - [anon_sym_typedef] = ACTIONS(2703), - [anon_sym_virtual] = ACTIONS(2703), - [anon_sym_extern] = ACTIONS(2703), - [anon_sym___attribute__] = ACTIONS(2703), - [anon_sym___attribute] = ACTIONS(2703), - [anon_sym_using] = ACTIONS(2703), - [anon_sym_COLON_COLON] = ACTIONS(2705), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2705), - [anon_sym___declspec] = ACTIONS(2703), - [anon_sym___based] = ACTIONS(2703), - [anon_sym_signed] = ACTIONS(2703), - [anon_sym_unsigned] = ACTIONS(2703), - [anon_sym_long] = ACTIONS(2703), - [anon_sym_short] = ACTIONS(2703), - [anon_sym_LBRACK] = ACTIONS(2703), - [anon_sym_static] = ACTIONS(2703), - [anon_sym_register] = ACTIONS(2703), - [anon_sym_inline] = ACTIONS(2703), - [anon_sym___inline] = ACTIONS(2703), - [anon_sym___inline__] = ACTIONS(2703), - [anon_sym___forceinline] = ACTIONS(2703), - [anon_sym_thread_local] = ACTIONS(2703), - [anon_sym___thread] = ACTIONS(2703), - [anon_sym_const] = ACTIONS(2703), - [anon_sym_constexpr] = ACTIONS(2703), - [anon_sym_volatile] = ACTIONS(2703), - [anon_sym_restrict] = ACTIONS(2703), - [anon_sym___restrict__] = ACTIONS(2703), - [anon_sym__Atomic] = ACTIONS(2703), - [anon_sym__Noreturn] = ACTIONS(2703), - [anon_sym_noreturn] = ACTIONS(2703), - [anon_sym__Nonnull] = ACTIONS(2703), - [anon_sym_mutable] = ACTIONS(2703), - [anon_sym_constinit] = ACTIONS(2703), - [anon_sym_consteval] = ACTIONS(2703), - [anon_sym_alignas] = ACTIONS(2703), - [anon_sym__Alignas] = ACTIONS(2703), - [sym_primitive_type] = ACTIONS(2703), - [anon_sym_enum] = ACTIONS(2703), - [anon_sym_class] = ACTIONS(2703), - [anon_sym_struct] = ACTIONS(2703), - [anon_sym_union] = ACTIONS(2703), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2703), - [anon_sym_decltype] = ACTIONS(2703), - [anon_sym_explicit] = ACTIONS(2703), - [anon_sym_typename] = ACTIONS(2703), - [anon_sym_private] = ACTIONS(2703), - [anon_sym_template] = ACTIONS(2703), - [anon_sym_operator] = ACTIONS(2703), - [anon_sym_friend] = ACTIONS(2703), - [anon_sym_public] = ACTIONS(2703), - [anon_sym_protected] = ACTIONS(2703), - [anon_sym_static_assert] = ACTIONS(2703), + [1799] = { + [sym_identifier] = ACTIONS(4976), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4978), + [anon_sym_COMMA] = ACTIONS(4978), + [anon_sym_RPAREN] = ACTIONS(4978), + [anon_sym_LPAREN2] = ACTIONS(4978), + [anon_sym_DASH] = ACTIONS(4976), + [anon_sym_PLUS] = ACTIONS(4976), + [anon_sym_STAR] = ACTIONS(4978), + [anon_sym_SLASH] = ACTIONS(4976), + [anon_sym_PERCENT] = ACTIONS(4978), + [anon_sym_PIPE_PIPE] = ACTIONS(4978), + [anon_sym_AMP_AMP] = ACTIONS(4978), + [anon_sym_PIPE] = ACTIONS(4976), + [anon_sym_CARET] = ACTIONS(4978), + [anon_sym_AMP] = ACTIONS(4976), + [anon_sym_EQ_EQ] = ACTIONS(4978), + [anon_sym_BANG_EQ] = ACTIONS(4978), + [anon_sym_GT] = ACTIONS(4976), + [anon_sym_GT_EQ] = ACTIONS(4978), + [anon_sym_LT_EQ] = ACTIONS(4976), + [anon_sym_LT] = ACTIONS(4976), + [anon_sym_LT_LT] = ACTIONS(4978), + [anon_sym_GT_GT] = ACTIONS(4978), + [anon_sym_SEMI] = ACTIONS(4978), + [anon_sym___extension__] = ACTIONS(4976), + [anon_sym___attribute__] = ACTIONS(4976), + [anon_sym___attribute] = ACTIONS(4976), + [anon_sym_COLON] = ACTIONS(4976), + [anon_sym_COLON_COLON] = ACTIONS(4978), + [anon_sym___based] = ACTIONS(4976), + [anon_sym_LBRACE] = ACTIONS(4978), + [anon_sym_RBRACE] = ACTIONS(4978), + [anon_sym_signed] = ACTIONS(4976), + [anon_sym_unsigned] = ACTIONS(4976), + [anon_sym_long] = ACTIONS(4976), + [anon_sym_short] = ACTIONS(4976), + [anon_sym_LBRACK] = ACTIONS(4978), + [anon_sym_RBRACK] = ACTIONS(4978), + [anon_sym_const] = ACTIONS(4976), + [anon_sym_constexpr] = ACTIONS(4976), + [anon_sym_volatile] = ACTIONS(4976), + [anon_sym_restrict] = ACTIONS(4976), + [anon_sym___restrict__] = ACTIONS(4976), + [anon_sym__Atomic] = ACTIONS(4976), + [anon_sym__Noreturn] = ACTIONS(4976), + [anon_sym_noreturn] = ACTIONS(4976), + [anon_sym__Nonnull] = ACTIONS(4976), + [anon_sym_mutable] = ACTIONS(4976), + [anon_sym_constinit] = ACTIONS(4976), + [anon_sym_consteval] = ACTIONS(4976), + [anon_sym_alignas] = ACTIONS(4976), + [anon_sym__Alignas] = ACTIONS(4976), + [sym_primitive_type] = ACTIONS(4976), + [anon_sym_QMARK] = ACTIONS(4978), + [anon_sym_LT_EQ_GT] = ACTIONS(4978), + [anon_sym_or] = ACTIONS(4976), + [anon_sym_and] = ACTIONS(4976), + [anon_sym_bitor] = ACTIONS(4976), + [anon_sym_xor] = ACTIONS(4976), + [anon_sym_bitand] = ACTIONS(4976), + [anon_sym_not_eq] = ACTIONS(4976), + [anon_sym_DASH_DASH] = ACTIONS(4978), + [anon_sym_PLUS_PLUS] = ACTIONS(4978), + [anon_sym_DOT] = ACTIONS(4976), + [anon_sym_DOT_STAR] = ACTIONS(4978), + [anon_sym_DASH_GT] = ACTIONS(4978), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4976), + [anon_sym_decltype] = ACTIONS(4976), + [anon_sym_final] = ACTIONS(4976), + [anon_sym_override] = ACTIONS(4976), + [anon_sym_requires] = ACTIONS(4976), }, - [1757] = { + [1800] = { [sym_identifier] = ACTIONS(4980), [anon_sym_DOT_DOT_DOT] = ACTIONS(4982), [anon_sym_COMMA] = ACTIONS(4982), @@ -251348,48 +256090,563 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_override] = ACTIONS(4980), [anon_sym_requires] = ACTIONS(4980), }, - [1758] = { + [1801] = { + [sym_identifier] = ACTIONS(5507), + [aux_sym_preproc_def_token1] = ACTIONS(5507), + [aux_sym_preproc_if_token1] = ACTIONS(5507), + [aux_sym_preproc_if_token2] = ACTIONS(5507), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5507), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5507), + [aux_sym_preproc_else_token1] = ACTIONS(5507), + [aux_sym_preproc_elif_token1] = ACTIONS(5507), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5507), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5507), + [sym_preproc_directive] = ACTIONS(5507), + [anon_sym_LPAREN2] = ACTIONS(5509), + [anon_sym_TILDE] = ACTIONS(5509), + [anon_sym_STAR] = ACTIONS(5509), + [anon_sym_AMP_AMP] = ACTIONS(5509), + [anon_sym_AMP] = ACTIONS(5507), + [anon_sym_SEMI] = ACTIONS(5509), + [anon_sym___extension__] = ACTIONS(5507), + [anon_sym_typedef] = ACTIONS(5507), + [anon_sym_virtual] = ACTIONS(5507), + [anon_sym_extern] = ACTIONS(5507), + [anon_sym___attribute__] = ACTIONS(5507), + [anon_sym___attribute] = ACTIONS(5507), + [anon_sym_using] = ACTIONS(5507), + [anon_sym_COLON_COLON] = ACTIONS(5509), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5509), + [anon_sym___declspec] = ACTIONS(5507), + [anon_sym___based] = ACTIONS(5507), + [anon_sym_signed] = ACTIONS(5507), + [anon_sym_unsigned] = ACTIONS(5507), + [anon_sym_long] = ACTIONS(5507), + [anon_sym_short] = ACTIONS(5507), + [anon_sym_LBRACK] = ACTIONS(5507), + [anon_sym_static] = ACTIONS(5507), + [anon_sym_register] = ACTIONS(5507), + [anon_sym_inline] = ACTIONS(5507), + [anon_sym___inline] = ACTIONS(5507), + [anon_sym___inline__] = ACTIONS(5507), + [anon_sym___forceinline] = ACTIONS(5507), + [anon_sym_thread_local] = ACTIONS(5507), + [anon_sym___thread] = ACTIONS(5507), + [anon_sym_const] = ACTIONS(5507), + [anon_sym_constexpr] = ACTIONS(5507), + [anon_sym_volatile] = ACTIONS(5507), + [anon_sym_restrict] = ACTIONS(5507), + [anon_sym___restrict__] = ACTIONS(5507), + [anon_sym__Atomic] = ACTIONS(5507), + [anon_sym__Noreturn] = ACTIONS(5507), + [anon_sym_noreturn] = ACTIONS(5507), + [anon_sym__Nonnull] = ACTIONS(5507), + [anon_sym_mutable] = ACTIONS(5507), + [anon_sym_constinit] = ACTIONS(5507), + [anon_sym_consteval] = ACTIONS(5507), + [anon_sym_alignas] = ACTIONS(5507), + [anon_sym__Alignas] = ACTIONS(5507), + [sym_primitive_type] = ACTIONS(5507), + [anon_sym_enum] = ACTIONS(5507), + [anon_sym_class] = ACTIONS(5507), + [anon_sym_struct] = ACTIONS(5507), + [anon_sym_union] = ACTIONS(5507), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5507), + [anon_sym_decltype] = ACTIONS(5507), + [anon_sym_explicit] = ACTIONS(5507), + [anon_sym_typename] = ACTIONS(5507), + [anon_sym_private] = ACTIONS(5507), + [anon_sym_template] = ACTIONS(5507), + [anon_sym_operator] = ACTIONS(5507), + [anon_sym_friend] = ACTIONS(5507), + [anon_sym_public] = ACTIONS(5507), + [anon_sym_protected] = ACTIONS(5507), + [anon_sym_static_assert] = ACTIONS(5507), + }, + [1802] = { + [sym_identifier] = ACTIONS(2915), + [aux_sym_preproc_def_token1] = ACTIONS(2915), + [aux_sym_preproc_if_token1] = ACTIONS(2915), + [aux_sym_preproc_if_token2] = ACTIONS(2915), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2915), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2915), + [aux_sym_preproc_else_token1] = ACTIONS(2915), + [aux_sym_preproc_elif_token1] = ACTIONS(2915), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2915), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2915), + [sym_preproc_directive] = ACTIONS(2915), + [anon_sym_LPAREN2] = ACTIONS(2917), + [anon_sym_TILDE] = ACTIONS(2917), + [anon_sym_STAR] = ACTIONS(2917), + [anon_sym_AMP_AMP] = ACTIONS(2917), + [anon_sym_AMP] = ACTIONS(2915), + [anon_sym_SEMI] = ACTIONS(2917), + [anon_sym___extension__] = ACTIONS(2915), + [anon_sym_typedef] = ACTIONS(2915), + [anon_sym_virtual] = ACTIONS(2915), + [anon_sym_extern] = ACTIONS(2915), + [anon_sym___attribute__] = ACTIONS(2915), + [anon_sym___attribute] = ACTIONS(2915), + [anon_sym_using] = ACTIONS(2915), + [anon_sym_COLON_COLON] = ACTIONS(2917), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2917), + [anon_sym___declspec] = ACTIONS(2915), + [anon_sym___based] = ACTIONS(2915), + [anon_sym_signed] = ACTIONS(2915), + [anon_sym_unsigned] = ACTIONS(2915), + [anon_sym_long] = ACTIONS(2915), + [anon_sym_short] = ACTIONS(2915), + [anon_sym_LBRACK] = ACTIONS(2915), + [anon_sym_static] = ACTIONS(2915), + [anon_sym_register] = ACTIONS(2915), + [anon_sym_inline] = ACTIONS(2915), + [anon_sym___inline] = ACTIONS(2915), + [anon_sym___inline__] = ACTIONS(2915), + [anon_sym___forceinline] = ACTIONS(2915), + [anon_sym_thread_local] = ACTIONS(2915), + [anon_sym___thread] = ACTIONS(2915), + [anon_sym_const] = ACTIONS(2915), + [anon_sym_constexpr] = ACTIONS(2915), + [anon_sym_volatile] = ACTIONS(2915), + [anon_sym_restrict] = ACTIONS(2915), + [anon_sym___restrict__] = ACTIONS(2915), + [anon_sym__Atomic] = ACTIONS(2915), + [anon_sym__Noreturn] = ACTIONS(2915), + [anon_sym_noreturn] = ACTIONS(2915), + [anon_sym__Nonnull] = ACTIONS(2915), + [anon_sym_mutable] = ACTIONS(2915), + [anon_sym_constinit] = ACTIONS(2915), + [anon_sym_consteval] = ACTIONS(2915), + [anon_sym_alignas] = ACTIONS(2915), + [anon_sym__Alignas] = ACTIONS(2915), + [sym_primitive_type] = ACTIONS(2915), + [anon_sym_enum] = ACTIONS(2915), + [anon_sym_class] = ACTIONS(2915), + [anon_sym_struct] = ACTIONS(2915), + [anon_sym_union] = ACTIONS(2915), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2915), + [anon_sym_decltype] = ACTIONS(2915), + [anon_sym_explicit] = ACTIONS(2915), + [anon_sym_typename] = ACTIONS(2915), + [anon_sym_private] = ACTIONS(2915), + [anon_sym_template] = ACTIONS(2915), + [anon_sym_operator] = ACTIONS(2915), + [anon_sym_friend] = ACTIONS(2915), + [anon_sym_public] = ACTIONS(2915), + [anon_sym_protected] = ACTIONS(2915), + [anon_sym_static_assert] = ACTIONS(2915), + }, + [1803] = { + [sym_identifier] = ACTIONS(2923), + [aux_sym_preproc_def_token1] = ACTIONS(2923), + [aux_sym_preproc_if_token1] = ACTIONS(2923), + [aux_sym_preproc_if_token2] = ACTIONS(2923), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2923), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2923), + [aux_sym_preproc_else_token1] = ACTIONS(2923), + [aux_sym_preproc_elif_token1] = ACTIONS(2923), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2923), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2923), + [sym_preproc_directive] = ACTIONS(2923), + [anon_sym_LPAREN2] = ACTIONS(2925), + [anon_sym_TILDE] = ACTIONS(2925), + [anon_sym_STAR] = ACTIONS(2925), + [anon_sym_AMP_AMP] = ACTIONS(2925), + [anon_sym_AMP] = ACTIONS(2923), + [anon_sym_SEMI] = ACTIONS(2925), + [anon_sym___extension__] = ACTIONS(2923), + [anon_sym_typedef] = ACTIONS(2923), + [anon_sym_virtual] = ACTIONS(2923), + [anon_sym_extern] = ACTIONS(2923), + [anon_sym___attribute__] = ACTIONS(2923), + [anon_sym___attribute] = ACTIONS(2923), + [anon_sym_using] = ACTIONS(2923), + [anon_sym_COLON_COLON] = ACTIONS(2925), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2925), + [anon_sym___declspec] = ACTIONS(2923), + [anon_sym___based] = ACTIONS(2923), + [anon_sym_signed] = ACTIONS(2923), + [anon_sym_unsigned] = ACTIONS(2923), + [anon_sym_long] = ACTIONS(2923), + [anon_sym_short] = ACTIONS(2923), + [anon_sym_LBRACK] = ACTIONS(2923), + [anon_sym_static] = ACTIONS(2923), + [anon_sym_register] = ACTIONS(2923), + [anon_sym_inline] = ACTIONS(2923), + [anon_sym___inline] = ACTIONS(2923), + [anon_sym___inline__] = ACTIONS(2923), + [anon_sym___forceinline] = ACTIONS(2923), + [anon_sym_thread_local] = ACTIONS(2923), + [anon_sym___thread] = ACTIONS(2923), + [anon_sym_const] = ACTIONS(2923), + [anon_sym_constexpr] = ACTIONS(2923), + [anon_sym_volatile] = ACTIONS(2923), + [anon_sym_restrict] = ACTIONS(2923), + [anon_sym___restrict__] = ACTIONS(2923), + [anon_sym__Atomic] = ACTIONS(2923), + [anon_sym__Noreturn] = ACTIONS(2923), + [anon_sym_noreturn] = ACTIONS(2923), + [anon_sym__Nonnull] = ACTIONS(2923), + [anon_sym_mutable] = ACTIONS(2923), + [anon_sym_constinit] = ACTIONS(2923), + [anon_sym_consteval] = ACTIONS(2923), + [anon_sym_alignas] = ACTIONS(2923), + [anon_sym__Alignas] = ACTIONS(2923), + [sym_primitive_type] = ACTIONS(2923), + [anon_sym_enum] = ACTIONS(2923), + [anon_sym_class] = ACTIONS(2923), + [anon_sym_struct] = ACTIONS(2923), + [anon_sym_union] = ACTIONS(2923), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2923), + [anon_sym_decltype] = ACTIONS(2923), + [anon_sym_explicit] = ACTIONS(2923), + [anon_sym_typename] = ACTIONS(2923), + [anon_sym_private] = ACTIONS(2923), + [anon_sym_template] = ACTIONS(2923), + [anon_sym_operator] = ACTIONS(2923), + [anon_sym_friend] = ACTIONS(2923), + [anon_sym_public] = ACTIONS(2923), + [anon_sym_protected] = ACTIONS(2923), + [anon_sym_static_assert] = ACTIONS(2923), + }, + [1804] = { + [sym_identifier] = ACTIONS(2923), + [aux_sym_preproc_def_token1] = ACTIONS(2923), + [aux_sym_preproc_if_token1] = ACTIONS(2923), + [aux_sym_preproc_if_token2] = ACTIONS(2923), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2923), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2923), + [aux_sym_preproc_else_token1] = ACTIONS(2923), + [aux_sym_preproc_elif_token1] = ACTIONS(2923), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2923), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2923), + [sym_preproc_directive] = ACTIONS(2923), + [anon_sym_LPAREN2] = ACTIONS(2925), + [anon_sym_TILDE] = ACTIONS(2925), + [anon_sym_STAR] = ACTIONS(2925), + [anon_sym_AMP_AMP] = ACTIONS(2925), + [anon_sym_AMP] = ACTIONS(2923), + [anon_sym_SEMI] = ACTIONS(2925), + [anon_sym___extension__] = ACTIONS(2923), + [anon_sym_typedef] = ACTIONS(2923), + [anon_sym_virtual] = ACTIONS(2923), + [anon_sym_extern] = ACTIONS(2923), + [anon_sym___attribute__] = ACTIONS(2923), + [anon_sym___attribute] = ACTIONS(2923), + [anon_sym_using] = ACTIONS(2923), + [anon_sym_COLON_COLON] = ACTIONS(2925), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2925), + [anon_sym___declspec] = ACTIONS(2923), + [anon_sym___based] = ACTIONS(2923), + [anon_sym_signed] = ACTIONS(2923), + [anon_sym_unsigned] = ACTIONS(2923), + [anon_sym_long] = ACTIONS(2923), + [anon_sym_short] = ACTIONS(2923), + [anon_sym_LBRACK] = ACTIONS(2923), + [anon_sym_static] = ACTIONS(2923), + [anon_sym_register] = ACTIONS(2923), + [anon_sym_inline] = ACTIONS(2923), + [anon_sym___inline] = ACTIONS(2923), + [anon_sym___inline__] = ACTIONS(2923), + [anon_sym___forceinline] = ACTIONS(2923), + [anon_sym_thread_local] = ACTIONS(2923), + [anon_sym___thread] = ACTIONS(2923), + [anon_sym_const] = ACTIONS(2923), + [anon_sym_constexpr] = ACTIONS(2923), + [anon_sym_volatile] = ACTIONS(2923), + [anon_sym_restrict] = ACTIONS(2923), + [anon_sym___restrict__] = ACTIONS(2923), + [anon_sym__Atomic] = ACTIONS(2923), + [anon_sym__Noreturn] = ACTIONS(2923), + [anon_sym_noreturn] = ACTIONS(2923), + [anon_sym__Nonnull] = ACTIONS(2923), + [anon_sym_mutable] = ACTIONS(2923), + [anon_sym_constinit] = ACTIONS(2923), + [anon_sym_consteval] = ACTIONS(2923), + [anon_sym_alignas] = ACTIONS(2923), + [anon_sym__Alignas] = ACTIONS(2923), + [sym_primitive_type] = ACTIONS(2923), + [anon_sym_enum] = ACTIONS(2923), + [anon_sym_class] = ACTIONS(2923), + [anon_sym_struct] = ACTIONS(2923), + [anon_sym_union] = ACTIONS(2923), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2923), + [anon_sym_decltype] = ACTIONS(2923), + [anon_sym_explicit] = ACTIONS(2923), + [anon_sym_typename] = ACTIONS(2923), + [anon_sym_private] = ACTIONS(2923), + [anon_sym_template] = ACTIONS(2923), + [anon_sym_operator] = ACTIONS(2923), + [anon_sym_friend] = ACTIONS(2923), + [anon_sym_public] = ACTIONS(2923), + [anon_sym_protected] = ACTIONS(2923), + [anon_sym_static_assert] = ACTIONS(2923), + }, + [1805] = { + [sym_identifier] = ACTIONS(5541), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5543), + [anon_sym_COMMA] = ACTIONS(5543), + [anon_sym_RPAREN] = ACTIONS(5543), + [anon_sym_LPAREN2] = ACTIONS(5543), + [anon_sym_DASH] = ACTIONS(5541), + [anon_sym_PLUS] = ACTIONS(5541), + [anon_sym_STAR] = ACTIONS(5543), + [anon_sym_SLASH] = ACTIONS(5541), + [anon_sym_PERCENT] = ACTIONS(5543), + [anon_sym_PIPE_PIPE] = ACTIONS(5543), + [anon_sym_AMP_AMP] = ACTIONS(5543), + [anon_sym_PIPE] = ACTIONS(5541), + [anon_sym_CARET] = ACTIONS(5543), + [anon_sym_AMP] = ACTIONS(5541), + [anon_sym_EQ_EQ] = ACTIONS(5543), + [anon_sym_BANG_EQ] = ACTIONS(5543), + [anon_sym_GT] = ACTIONS(5541), + [anon_sym_GT_EQ] = ACTIONS(5543), + [anon_sym_LT_EQ] = ACTIONS(5541), + [anon_sym_LT] = ACTIONS(5541), + [anon_sym_LT_LT] = ACTIONS(5543), + [anon_sym_GT_GT] = ACTIONS(5543), + [anon_sym_SEMI] = ACTIONS(5543), + [anon_sym___extension__] = ACTIONS(5541), + [anon_sym___attribute__] = ACTIONS(5541), + [anon_sym___attribute] = ACTIONS(5541), + [anon_sym_COLON] = ACTIONS(5541), + [anon_sym_COLON_COLON] = ACTIONS(5519), + [anon_sym___based] = ACTIONS(5541), + [anon_sym_LBRACE] = ACTIONS(5543), + [anon_sym_RBRACE] = ACTIONS(5543), + [anon_sym_signed] = ACTIONS(5541), + [anon_sym_unsigned] = ACTIONS(5541), + [anon_sym_long] = ACTIONS(5541), + [anon_sym_short] = ACTIONS(5541), + [anon_sym_LBRACK] = ACTIONS(5543), + [anon_sym_RBRACK] = ACTIONS(5543), + [anon_sym_const] = ACTIONS(5541), + [anon_sym_constexpr] = ACTIONS(5541), + [anon_sym_volatile] = ACTIONS(5541), + [anon_sym_restrict] = ACTIONS(5541), + [anon_sym___restrict__] = ACTIONS(5541), + [anon_sym__Atomic] = ACTIONS(5541), + [anon_sym__Noreturn] = ACTIONS(5541), + [anon_sym_noreturn] = ACTIONS(5541), + [anon_sym__Nonnull] = ACTIONS(5541), + [anon_sym_mutable] = ACTIONS(5541), + [anon_sym_constinit] = ACTIONS(5541), + [anon_sym_consteval] = ACTIONS(5541), + [anon_sym_alignas] = ACTIONS(5541), + [anon_sym__Alignas] = ACTIONS(5541), + [sym_primitive_type] = ACTIONS(5541), + [anon_sym_QMARK] = ACTIONS(5543), + [anon_sym_LT_EQ_GT] = ACTIONS(5543), + [anon_sym_or] = ACTIONS(5541), + [anon_sym_and] = ACTIONS(5541), + [anon_sym_bitor] = ACTIONS(5541), + [anon_sym_xor] = ACTIONS(5541), + [anon_sym_bitand] = ACTIONS(5541), + [anon_sym_not_eq] = ACTIONS(5541), + [anon_sym_DASH_DASH] = ACTIONS(5543), + [anon_sym_PLUS_PLUS] = ACTIONS(5543), + [anon_sym_DOT] = ACTIONS(5541), + [anon_sym_DOT_STAR] = ACTIONS(5543), + [anon_sym_DASH_GT] = ACTIONS(5543), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5541), + [anon_sym_decltype] = ACTIONS(5541), + [anon_sym_final] = ACTIONS(5541), + [anon_sym_override] = ACTIONS(5541), + [anon_sym_requires] = ACTIONS(5541), + }, + [1806] = { + [sym_identifier] = ACTIONS(5541), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5543), + [anon_sym_COMMA] = ACTIONS(5543), + [anon_sym_RPAREN] = ACTIONS(5543), + [anon_sym_LPAREN2] = ACTIONS(5543), + [anon_sym_DASH] = ACTIONS(5541), + [anon_sym_PLUS] = ACTIONS(5541), + [anon_sym_STAR] = ACTIONS(5543), + [anon_sym_SLASH] = ACTIONS(5541), + [anon_sym_PERCENT] = ACTIONS(5543), + [anon_sym_PIPE_PIPE] = ACTIONS(5543), + [anon_sym_AMP_AMP] = ACTIONS(5543), + [anon_sym_PIPE] = ACTIONS(5541), + [anon_sym_CARET] = ACTIONS(5543), + [anon_sym_AMP] = ACTIONS(5541), + [anon_sym_EQ_EQ] = ACTIONS(5543), + [anon_sym_BANG_EQ] = ACTIONS(5543), + [anon_sym_GT] = ACTIONS(5541), + [anon_sym_GT_EQ] = ACTIONS(5543), + [anon_sym_LT_EQ] = ACTIONS(5541), + [anon_sym_LT] = ACTIONS(5541), + [anon_sym_LT_LT] = ACTIONS(5543), + [anon_sym_GT_GT] = ACTIONS(5543), + [anon_sym_SEMI] = ACTIONS(5543), + [anon_sym___extension__] = ACTIONS(5541), + [anon_sym___attribute__] = ACTIONS(5541), + [anon_sym___attribute] = ACTIONS(5541), + [anon_sym_COLON] = ACTIONS(5541), + [anon_sym_COLON_COLON] = ACTIONS(5519), + [anon_sym___based] = ACTIONS(5541), + [anon_sym_LBRACE] = ACTIONS(5543), + [anon_sym_RBRACE] = ACTIONS(5543), + [anon_sym_signed] = ACTIONS(5541), + [anon_sym_unsigned] = ACTIONS(5541), + [anon_sym_long] = ACTIONS(5541), + [anon_sym_short] = ACTIONS(5541), + [anon_sym_LBRACK] = ACTIONS(5543), + [anon_sym_RBRACK] = ACTIONS(5543), + [anon_sym_const] = ACTIONS(5541), + [anon_sym_constexpr] = ACTIONS(5541), + [anon_sym_volatile] = ACTIONS(5541), + [anon_sym_restrict] = ACTIONS(5541), + [anon_sym___restrict__] = ACTIONS(5541), + [anon_sym__Atomic] = ACTIONS(5541), + [anon_sym__Noreturn] = ACTIONS(5541), + [anon_sym_noreturn] = ACTIONS(5541), + [anon_sym__Nonnull] = ACTIONS(5541), + [anon_sym_mutable] = ACTIONS(5541), + [anon_sym_constinit] = ACTIONS(5541), + [anon_sym_consteval] = ACTIONS(5541), + [anon_sym_alignas] = ACTIONS(5541), + [anon_sym__Alignas] = ACTIONS(5541), + [sym_primitive_type] = ACTIONS(5541), + [anon_sym_QMARK] = ACTIONS(5543), + [anon_sym_LT_EQ_GT] = ACTIONS(5543), + [anon_sym_or] = ACTIONS(5541), + [anon_sym_and] = ACTIONS(5541), + [anon_sym_bitor] = ACTIONS(5541), + [anon_sym_xor] = ACTIONS(5541), + [anon_sym_bitand] = ACTIONS(5541), + [anon_sym_not_eq] = ACTIONS(5541), + [anon_sym_DASH_DASH] = ACTIONS(5543), + [anon_sym_PLUS_PLUS] = ACTIONS(5543), + [anon_sym_DOT] = ACTIONS(5541), + [anon_sym_DOT_STAR] = ACTIONS(5543), + [anon_sym_DASH_GT] = ACTIONS(5543), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5541), + [anon_sym_decltype] = ACTIONS(5541), + [anon_sym_final] = ACTIONS(5541), + [anon_sym_override] = ACTIONS(5541), + [anon_sym_requires] = ACTIONS(5541), + }, + [1807] = { + [sym_identifier] = ACTIONS(2927), + [aux_sym_preproc_def_token1] = ACTIONS(2927), + [aux_sym_preproc_if_token1] = ACTIONS(2927), + [aux_sym_preproc_if_token2] = ACTIONS(2927), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2927), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2927), + [aux_sym_preproc_else_token1] = ACTIONS(2927), + [aux_sym_preproc_elif_token1] = ACTIONS(2927), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2927), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2927), + [sym_preproc_directive] = ACTIONS(2927), + [anon_sym_LPAREN2] = ACTIONS(2929), + [anon_sym_TILDE] = ACTIONS(2929), + [anon_sym_STAR] = ACTIONS(2929), + [anon_sym_AMP_AMP] = ACTIONS(2929), + [anon_sym_AMP] = ACTIONS(2927), + [anon_sym_SEMI] = ACTIONS(2929), + [anon_sym___extension__] = ACTIONS(2927), + [anon_sym_typedef] = ACTIONS(2927), + [anon_sym_virtual] = ACTIONS(2927), + [anon_sym_extern] = ACTIONS(2927), + [anon_sym___attribute__] = ACTIONS(2927), + [anon_sym___attribute] = ACTIONS(2927), + [anon_sym_using] = ACTIONS(2927), + [anon_sym_COLON_COLON] = ACTIONS(2929), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2929), + [anon_sym___declspec] = ACTIONS(2927), + [anon_sym___based] = ACTIONS(2927), + [anon_sym_signed] = ACTIONS(2927), + [anon_sym_unsigned] = ACTIONS(2927), + [anon_sym_long] = ACTIONS(2927), + [anon_sym_short] = ACTIONS(2927), + [anon_sym_LBRACK] = ACTIONS(2927), + [anon_sym_static] = ACTIONS(2927), + [anon_sym_register] = ACTIONS(2927), + [anon_sym_inline] = ACTIONS(2927), + [anon_sym___inline] = ACTIONS(2927), + [anon_sym___inline__] = ACTIONS(2927), + [anon_sym___forceinline] = ACTIONS(2927), + [anon_sym_thread_local] = ACTIONS(2927), + [anon_sym___thread] = ACTIONS(2927), + [anon_sym_const] = ACTIONS(2927), + [anon_sym_constexpr] = ACTIONS(2927), + [anon_sym_volatile] = ACTIONS(2927), + [anon_sym_restrict] = ACTIONS(2927), + [anon_sym___restrict__] = ACTIONS(2927), + [anon_sym__Atomic] = ACTIONS(2927), + [anon_sym__Noreturn] = ACTIONS(2927), + [anon_sym_noreturn] = ACTIONS(2927), + [anon_sym__Nonnull] = ACTIONS(2927), + [anon_sym_mutable] = ACTIONS(2927), + [anon_sym_constinit] = ACTIONS(2927), + [anon_sym_consteval] = ACTIONS(2927), + [anon_sym_alignas] = ACTIONS(2927), + [anon_sym__Alignas] = ACTIONS(2927), + [sym_primitive_type] = ACTIONS(2927), + [anon_sym_enum] = ACTIONS(2927), + [anon_sym_class] = ACTIONS(2927), + [anon_sym_struct] = ACTIONS(2927), + [anon_sym_union] = ACTIONS(2927), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2927), + [anon_sym_decltype] = ACTIONS(2927), + [anon_sym_explicit] = ACTIONS(2927), + [anon_sym_typename] = ACTIONS(2927), + [anon_sym_private] = ACTIONS(2927), + [anon_sym_template] = ACTIONS(2927), + [anon_sym_operator] = ACTIONS(2927), + [anon_sym_friend] = ACTIONS(2927), + [anon_sym_public] = ACTIONS(2927), + [anon_sym_protected] = ACTIONS(2927), + [anon_sym_static_assert] = ACTIONS(2927), + }, + [1808] = { [sym_identifier] = ACTIONS(5545), - [aux_sym_preproc_def_token1] = ACTIONS(5545), - [aux_sym_preproc_if_token1] = ACTIONS(5545), - [aux_sym_preproc_if_token2] = ACTIONS(5545), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5545), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5545), - [aux_sym_preproc_else_token1] = ACTIONS(5545), - [aux_sym_preproc_elif_token1] = ACTIONS(5545), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5545), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5545), - [sym_preproc_directive] = ACTIONS(5545), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5547), + [anon_sym_COMMA] = ACTIONS(5547), + [anon_sym_RPAREN] = ACTIONS(5547), [anon_sym_LPAREN2] = ACTIONS(5547), - [anon_sym_TILDE] = ACTIONS(5547), + [anon_sym_DASH] = ACTIONS(5545), + [anon_sym_PLUS] = ACTIONS(5545), [anon_sym_STAR] = ACTIONS(5547), + [anon_sym_SLASH] = ACTIONS(5545), + [anon_sym_PERCENT] = ACTIONS(5547), + [anon_sym_PIPE_PIPE] = ACTIONS(5547), [anon_sym_AMP_AMP] = ACTIONS(5547), + [anon_sym_PIPE] = ACTIONS(5545), + [anon_sym_CARET] = ACTIONS(5547), [anon_sym_AMP] = ACTIONS(5545), + [anon_sym_EQ_EQ] = ACTIONS(5547), + [anon_sym_BANG_EQ] = ACTIONS(5547), + [anon_sym_GT] = ACTIONS(5545), + [anon_sym_GT_EQ] = ACTIONS(5547), + [anon_sym_LT_EQ] = ACTIONS(5545), + [anon_sym_LT] = ACTIONS(5545), + [anon_sym_LT_LT] = ACTIONS(5547), + [anon_sym_GT_GT] = ACTIONS(5547), [anon_sym_SEMI] = ACTIONS(5547), [anon_sym___extension__] = ACTIONS(5545), - [anon_sym_typedef] = ACTIONS(5545), - [anon_sym_virtual] = ACTIONS(5545), - [anon_sym_extern] = ACTIONS(5545), [anon_sym___attribute__] = ACTIONS(5545), - [anon_sym___attribute] = ACTIONS(5545), - [anon_sym_using] = ACTIONS(5545), - [anon_sym_COLON_COLON] = ACTIONS(5547), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5547), - [anon_sym___declspec] = ACTIONS(5545), - [anon_sym___based] = ACTIONS(5545), - [anon_sym_signed] = ACTIONS(5545), - [anon_sym_unsigned] = ACTIONS(5545), - [anon_sym_long] = ACTIONS(5545), - [anon_sym_short] = ACTIONS(5545), - [anon_sym_LBRACK] = ACTIONS(5545), - [anon_sym_static] = ACTIONS(5545), - [anon_sym_register] = ACTIONS(5545), - [anon_sym_inline] = ACTIONS(5545), - [anon_sym___inline] = ACTIONS(5545), - [anon_sym___inline__] = ACTIONS(5545), - [anon_sym___forceinline] = ACTIONS(5545), - [anon_sym_thread_local] = ACTIONS(5545), - [anon_sym___thread] = ACTIONS(5545), + [anon_sym___attribute] = ACTIONS(5545), + [anon_sym_COLON] = ACTIONS(5545), + [anon_sym_COLON_COLON] = ACTIONS(5547), + [anon_sym___based] = ACTIONS(5545), + [anon_sym_LBRACE] = ACTIONS(5547), + [anon_sym_RBRACE] = ACTIONS(5547), + [anon_sym_signed] = ACTIONS(5545), + [anon_sym_unsigned] = ACTIONS(5545), + [anon_sym_long] = ACTIONS(5545), + [anon_sym_short] = ACTIONS(5545), + [anon_sym_LBRACK] = ACTIONS(5547), + [anon_sym_RBRACK] = ACTIONS(5547), [anon_sym_const] = ACTIONS(5545), [anon_sym_constexpr] = ACTIONS(5545), [anon_sym_volatile] = ACTIONS(5545), @@ -251405,24 +256662,323 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(5545), [anon_sym__Alignas] = ACTIONS(5545), [sym_primitive_type] = ACTIONS(5545), - [anon_sym_enum] = ACTIONS(5545), - [anon_sym_class] = ACTIONS(5545), - [anon_sym_struct] = ACTIONS(5545), - [anon_sym_union] = ACTIONS(5545), + [anon_sym_QMARK] = ACTIONS(5547), + [anon_sym_LT_EQ_GT] = ACTIONS(5547), + [anon_sym_or] = ACTIONS(5545), + [anon_sym_and] = ACTIONS(5545), + [anon_sym_bitor] = ACTIONS(5545), + [anon_sym_xor] = ACTIONS(5545), + [anon_sym_bitand] = ACTIONS(5545), + [anon_sym_not_eq] = ACTIONS(5545), + [anon_sym_DASH_DASH] = ACTIONS(5547), + [anon_sym_PLUS_PLUS] = ACTIONS(5547), + [anon_sym_DOT] = ACTIONS(5545), + [anon_sym_DOT_STAR] = ACTIONS(5547), + [anon_sym_DASH_GT] = ACTIONS(5547), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(5545), [anon_sym_decltype] = ACTIONS(5545), - [anon_sym_explicit] = ACTIONS(5545), - [anon_sym_typename] = ACTIONS(5545), - [anon_sym_private] = ACTIONS(5545), - [anon_sym_template] = ACTIONS(5545), - [anon_sym_operator] = ACTIONS(5545), - [anon_sym_friend] = ACTIONS(5545), - [anon_sym_public] = ACTIONS(5545), - [anon_sym_protected] = ACTIONS(5545), - [anon_sym_static_assert] = ACTIONS(5545), + [anon_sym_final] = ACTIONS(5545), + [anon_sym_override] = ACTIONS(5545), + [anon_sym_requires] = ACTIONS(5545), }, - [1759] = { + [1809] = { + [sym_identifier] = ACTIONS(2927), + [aux_sym_preproc_def_token1] = ACTIONS(2927), + [aux_sym_preproc_if_token1] = ACTIONS(2927), + [aux_sym_preproc_if_token2] = ACTIONS(2927), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2927), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2927), + [aux_sym_preproc_else_token1] = ACTIONS(2927), + [aux_sym_preproc_elif_token1] = ACTIONS(2927), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2927), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2927), + [sym_preproc_directive] = ACTIONS(2927), + [anon_sym_LPAREN2] = ACTIONS(2929), + [anon_sym_TILDE] = ACTIONS(2929), + [anon_sym_STAR] = ACTIONS(2929), + [anon_sym_AMP_AMP] = ACTIONS(2929), + [anon_sym_AMP] = ACTIONS(2927), + [anon_sym_SEMI] = ACTIONS(2929), + [anon_sym___extension__] = ACTIONS(2927), + [anon_sym_typedef] = ACTIONS(2927), + [anon_sym_virtual] = ACTIONS(2927), + [anon_sym_extern] = ACTIONS(2927), + [anon_sym___attribute__] = ACTIONS(2927), + [anon_sym___attribute] = ACTIONS(2927), + [anon_sym_using] = ACTIONS(2927), + [anon_sym_COLON_COLON] = ACTIONS(2929), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2929), + [anon_sym___declspec] = ACTIONS(2927), + [anon_sym___based] = ACTIONS(2927), + [anon_sym_signed] = ACTIONS(2927), + [anon_sym_unsigned] = ACTIONS(2927), + [anon_sym_long] = ACTIONS(2927), + [anon_sym_short] = ACTIONS(2927), + [anon_sym_LBRACK] = ACTIONS(2927), + [anon_sym_static] = ACTIONS(2927), + [anon_sym_register] = ACTIONS(2927), + [anon_sym_inline] = ACTIONS(2927), + [anon_sym___inline] = ACTIONS(2927), + [anon_sym___inline__] = ACTIONS(2927), + [anon_sym___forceinline] = ACTIONS(2927), + [anon_sym_thread_local] = ACTIONS(2927), + [anon_sym___thread] = ACTIONS(2927), + [anon_sym_const] = ACTIONS(2927), + [anon_sym_constexpr] = ACTIONS(2927), + [anon_sym_volatile] = ACTIONS(2927), + [anon_sym_restrict] = ACTIONS(2927), + [anon_sym___restrict__] = ACTIONS(2927), + [anon_sym__Atomic] = ACTIONS(2927), + [anon_sym__Noreturn] = ACTIONS(2927), + [anon_sym_noreturn] = ACTIONS(2927), + [anon_sym__Nonnull] = ACTIONS(2927), + [anon_sym_mutable] = ACTIONS(2927), + [anon_sym_constinit] = ACTIONS(2927), + [anon_sym_consteval] = ACTIONS(2927), + [anon_sym_alignas] = ACTIONS(2927), + [anon_sym__Alignas] = ACTIONS(2927), + [sym_primitive_type] = ACTIONS(2927), + [anon_sym_enum] = ACTIONS(2927), + [anon_sym_class] = ACTIONS(2927), + [anon_sym_struct] = ACTIONS(2927), + [anon_sym_union] = ACTIONS(2927), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2927), + [anon_sym_decltype] = ACTIONS(2927), + [anon_sym_explicit] = ACTIONS(2927), + [anon_sym_typename] = ACTIONS(2927), + [anon_sym_private] = ACTIONS(2927), + [anon_sym_template] = ACTIONS(2927), + [anon_sym_operator] = ACTIONS(2927), + [anon_sym_friend] = ACTIONS(2927), + [anon_sym_public] = ACTIONS(2927), + [anon_sym_protected] = ACTIONS(2927), + [anon_sym_static_assert] = ACTIONS(2927), + }, + [1810] = { + [sym_identifier] = ACTIONS(2931), + [aux_sym_preproc_def_token1] = ACTIONS(2931), + [aux_sym_preproc_if_token1] = ACTIONS(2931), + [aux_sym_preproc_if_token2] = ACTIONS(2931), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2931), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2931), + [aux_sym_preproc_else_token1] = ACTIONS(2931), + [aux_sym_preproc_elif_token1] = ACTIONS(2931), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2931), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2931), + [sym_preproc_directive] = ACTIONS(2931), + [anon_sym_LPAREN2] = ACTIONS(2933), + [anon_sym_TILDE] = ACTIONS(2933), + [anon_sym_STAR] = ACTIONS(2933), + [anon_sym_AMP_AMP] = ACTIONS(2933), + [anon_sym_AMP] = ACTIONS(2931), + [anon_sym_SEMI] = ACTIONS(2933), + [anon_sym___extension__] = ACTIONS(2931), + [anon_sym_typedef] = ACTIONS(2931), + [anon_sym_virtual] = ACTIONS(2931), + [anon_sym_extern] = ACTIONS(2931), + [anon_sym___attribute__] = ACTIONS(2931), + [anon_sym___attribute] = ACTIONS(2931), + [anon_sym_using] = ACTIONS(2931), + [anon_sym_COLON_COLON] = ACTIONS(2933), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2933), + [anon_sym___declspec] = ACTIONS(2931), + [anon_sym___based] = ACTIONS(2931), + [anon_sym_signed] = ACTIONS(2931), + [anon_sym_unsigned] = ACTIONS(2931), + [anon_sym_long] = ACTIONS(2931), + [anon_sym_short] = ACTIONS(2931), + [anon_sym_LBRACK] = ACTIONS(2931), + [anon_sym_static] = ACTIONS(2931), + [anon_sym_register] = ACTIONS(2931), + [anon_sym_inline] = ACTIONS(2931), + [anon_sym___inline] = ACTIONS(2931), + [anon_sym___inline__] = ACTIONS(2931), + [anon_sym___forceinline] = ACTIONS(2931), + [anon_sym_thread_local] = ACTIONS(2931), + [anon_sym___thread] = ACTIONS(2931), + [anon_sym_const] = ACTIONS(2931), + [anon_sym_constexpr] = ACTIONS(2931), + [anon_sym_volatile] = ACTIONS(2931), + [anon_sym_restrict] = ACTIONS(2931), + [anon_sym___restrict__] = ACTIONS(2931), + [anon_sym__Atomic] = ACTIONS(2931), + [anon_sym__Noreturn] = ACTIONS(2931), + [anon_sym_noreturn] = ACTIONS(2931), + [anon_sym__Nonnull] = ACTIONS(2931), + [anon_sym_mutable] = ACTIONS(2931), + [anon_sym_constinit] = ACTIONS(2931), + [anon_sym_consteval] = ACTIONS(2931), + [anon_sym_alignas] = ACTIONS(2931), + [anon_sym__Alignas] = ACTIONS(2931), + [sym_primitive_type] = ACTIONS(2931), + [anon_sym_enum] = ACTIONS(2931), + [anon_sym_class] = ACTIONS(2931), + [anon_sym_struct] = ACTIONS(2931), + [anon_sym_union] = ACTIONS(2931), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2931), + [anon_sym_decltype] = ACTIONS(2931), + [anon_sym_explicit] = ACTIONS(2931), + [anon_sym_typename] = ACTIONS(2931), + [anon_sym_private] = ACTIONS(2931), + [anon_sym_template] = ACTIONS(2931), + [anon_sym_operator] = ACTIONS(2931), + [anon_sym_friend] = ACTIONS(2931), + [anon_sym_public] = ACTIONS(2931), + [anon_sym_protected] = ACTIONS(2931), + [anon_sym_static_assert] = ACTIONS(2931), + }, + [1811] = { + [sym_identifier] = ACTIONS(2935), + [aux_sym_preproc_def_token1] = ACTIONS(2935), + [aux_sym_preproc_if_token1] = ACTIONS(2935), + [aux_sym_preproc_if_token2] = ACTIONS(2935), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2935), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2935), + [aux_sym_preproc_else_token1] = ACTIONS(2935), + [aux_sym_preproc_elif_token1] = ACTIONS(2935), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2935), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2935), + [sym_preproc_directive] = ACTIONS(2935), + [anon_sym_LPAREN2] = ACTIONS(2937), + [anon_sym_TILDE] = ACTIONS(2937), + [anon_sym_STAR] = ACTIONS(2937), + [anon_sym_AMP_AMP] = ACTIONS(2937), + [anon_sym_AMP] = ACTIONS(2935), + [anon_sym_SEMI] = ACTIONS(2937), + [anon_sym___extension__] = ACTIONS(2935), + [anon_sym_typedef] = ACTIONS(2935), + [anon_sym_virtual] = ACTIONS(2935), + [anon_sym_extern] = ACTIONS(2935), + [anon_sym___attribute__] = ACTIONS(2935), + [anon_sym___attribute] = ACTIONS(2935), + [anon_sym_using] = ACTIONS(2935), + [anon_sym_COLON_COLON] = ACTIONS(2937), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2937), + [anon_sym___declspec] = ACTIONS(2935), + [anon_sym___based] = ACTIONS(2935), + [anon_sym_signed] = ACTIONS(2935), + [anon_sym_unsigned] = ACTIONS(2935), + [anon_sym_long] = ACTIONS(2935), + [anon_sym_short] = ACTIONS(2935), + [anon_sym_LBRACK] = ACTIONS(2935), + [anon_sym_static] = ACTIONS(2935), + [anon_sym_register] = ACTIONS(2935), + [anon_sym_inline] = ACTIONS(2935), + [anon_sym___inline] = ACTIONS(2935), + [anon_sym___inline__] = ACTIONS(2935), + [anon_sym___forceinline] = ACTIONS(2935), + [anon_sym_thread_local] = ACTIONS(2935), + [anon_sym___thread] = ACTIONS(2935), + [anon_sym_const] = ACTIONS(2935), + [anon_sym_constexpr] = ACTIONS(2935), + [anon_sym_volatile] = ACTIONS(2935), + [anon_sym_restrict] = ACTIONS(2935), + [anon_sym___restrict__] = ACTIONS(2935), + [anon_sym__Atomic] = ACTIONS(2935), + [anon_sym__Noreturn] = ACTIONS(2935), + [anon_sym_noreturn] = ACTIONS(2935), + [anon_sym__Nonnull] = ACTIONS(2935), + [anon_sym_mutable] = ACTIONS(2935), + [anon_sym_constinit] = ACTIONS(2935), + [anon_sym_consteval] = ACTIONS(2935), + [anon_sym_alignas] = ACTIONS(2935), + [anon_sym__Alignas] = ACTIONS(2935), + [sym_primitive_type] = ACTIONS(2935), + [anon_sym_enum] = ACTIONS(2935), + [anon_sym_class] = ACTIONS(2935), + [anon_sym_struct] = ACTIONS(2935), + [anon_sym_union] = ACTIONS(2935), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2935), + [anon_sym_decltype] = ACTIONS(2935), + [anon_sym_explicit] = ACTIONS(2935), + [anon_sym_typename] = ACTIONS(2935), + [anon_sym_private] = ACTIONS(2935), + [anon_sym_template] = ACTIONS(2935), + [anon_sym_operator] = ACTIONS(2935), + [anon_sym_friend] = ACTIONS(2935), + [anon_sym_public] = ACTIONS(2935), + [anon_sym_protected] = ACTIONS(2935), + [anon_sym_static_assert] = ACTIONS(2935), + }, + [1812] = { + [sym_identifier] = ACTIONS(2939), + [aux_sym_preproc_def_token1] = ACTIONS(2939), + [aux_sym_preproc_if_token1] = ACTIONS(2939), + [aux_sym_preproc_if_token2] = ACTIONS(2939), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2939), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2939), + [aux_sym_preproc_else_token1] = ACTIONS(2939), + [aux_sym_preproc_elif_token1] = ACTIONS(2939), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2939), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2939), + [sym_preproc_directive] = ACTIONS(2939), + [anon_sym_LPAREN2] = ACTIONS(2941), + [anon_sym_TILDE] = ACTIONS(2941), + [anon_sym_STAR] = ACTIONS(2941), + [anon_sym_AMP_AMP] = ACTIONS(2941), + [anon_sym_AMP] = ACTIONS(2939), + [anon_sym_SEMI] = ACTIONS(2941), + [anon_sym___extension__] = ACTIONS(2939), + [anon_sym_typedef] = ACTIONS(2939), + [anon_sym_virtual] = ACTIONS(2939), + [anon_sym_extern] = ACTIONS(2939), + [anon_sym___attribute__] = ACTIONS(2939), + [anon_sym___attribute] = ACTIONS(2939), + [anon_sym_using] = ACTIONS(2939), + [anon_sym_COLON_COLON] = ACTIONS(2941), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2941), + [anon_sym___declspec] = ACTIONS(2939), + [anon_sym___based] = ACTIONS(2939), + [anon_sym_signed] = ACTIONS(2939), + [anon_sym_unsigned] = ACTIONS(2939), + [anon_sym_long] = ACTIONS(2939), + [anon_sym_short] = ACTIONS(2939), + [anon_sym_LBRACK] = ACTIONS(2939), + [anon_sym_static] = ACTIONS(2939), + [anon_sym_register] = ACTIONS(2939), + [anon_sym_inline] = ACTIONS(2939), + [anon_sym___inline] = ACTIONS(2939), + [anon_sym___inline__] = ACTIONS(2939), + [anon_sym___forceinline] = ACTIONS(2939), + [anon_sym_thread_local] = ACTIONS(2939), + [anon_sym___thread] = ACTIONS(2939), + [anon_sym_const] = ACTIONS(2939), + [anon_sym_constexpr] = ACTIONS(2939), + [anon_sym_volatile] = ACTIONS(2939), + [anon_sym_restrict] = ACTIONS(2939), + [anon_sym___restrict__] = ACTIONS(2939), + [anon_sym__Atomic] = ACTIONS(2939), + [anon_sym__Noreturn] = ACTIONS(2939), + [anon_sym_noreturn] = ACTIONS(2939), + [anon_sym__Nonnull] = ACTIONS(2939), + [anon_sym_mutable] = ACTIONS(2939), + [anon_sym_constinit] = ACTIONS(2939), + [anon_sym_consteval] = ACTIONS(2939), + [anon_sym_alignas] = ACTIONS(2939), + [anon_sym__Alignas] = ACTIONS(2939), + [sym_primitive_type] = ACTIONS(2939), + [anon_sym_enum] = ACTIONS(2939), + [anon_sym_class] = ACTIONS(2939), + [anon_sym_struct] = ACTIONS(2939), + [anon_sym_union] = ACTIONS(2939), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2939), + [anon_sym_decltype] = ACTIONS(2939), + [anon_sym_explicit] = ACTIONS(2939), + [anon_sym_typename] = ACTIONS(2939), + [anon_sym_private] = ACTIONS(2939), + [anon_sym_template] = ACTIONS(2939), + [anon_sym_operator] = ACTIONS(2939), + [anon_sym_friend] = ACTIONS(2939), + [anon_sym_public] = ACTIONS(2939), + [anon_sym_protected] = ACTIONS(2939), + [anon_sym_static_assert] = ACTIONS(2939), + }, + [1813] = { [sym_identifier] = ACTIONS(5549), [aux_sym_preproc_def_token1] = ACTIONS(5549), [aux_sym_preproc_if_token1] = ACTIONS(5549), @@ -251496,377 +257052,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(5549), [anon_sym_static_assert] = ACTIONS(5549), }, - [1760] = { - [sym__declaration_modifiers] = STATE(3282), - [sym_attribute_specifier] = STATE(3282), - [sym_attribute_declaration] = STATE(3282), - [sym_ms_declspec_modifier] = STATE(3282), - [sym_ms_based_modifier] = STATE(8682), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6231), - [sym_array_declarator] = STATE(5998), - [sym_storage_class_specifier] = STATE(3282), - [sym_type_qualifier] = STATE(3282), - [sym_alignas_qualifier] = STATE(2975), - [sym_decltype] = STATE(8601), - [sym_explicit_function_specifier] = STATE(3282), - [sym_operator_cast] = STATE(6786), - [sym__constructor_specifiers] = STATE(3282), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(8601), - [sym_template_function] = STATE(5998), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5591), - [sym_qualified_identifier] = STATE(5998), - [sym_qualified_operator_cast_identifier] = STATE(6786), - [sym_operator_name] = STATE(5998), - [aux_sym_operator_cast_definition_repeat1] = STATE(3282), - [sym_identifier] = ACTIONS(5460), - [anon_sym_LPAREN2] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2979), - [anon_sym_STAR] = ACTIONS(2981), + [1814] = { + [sym__declaration_modifiers] = STATE(3363), + [sym_attribute_specifier] = STATE(3363), + [sym_attribute_declaration] = STATE(3363), + [sym_ms_declspec_modifier] = STATE(3363), + [sym_ms_based_modifier] = STATE(8864), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6404), + [sym_array_declarator] = STATE(6145), + [sym_storage_class_specifier] = STATE(3363), + [sym_type_qualifier] = STATE(3363), + [sym_alignas_qualifier] = STATE(3054), + [sym_decltype] = STATE(8569), + [sym_explicit_function_specifier] = STATE(3363), + [sym_operator_cast] = STATE(6923), + [sym__constructor_specifiers] = STATE(3363), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(8569), + [sym_template_function] = STATE(6145), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5569), + [sym_qualified_identifier] = STATE(6145), + [sym_qualified_operator_cast_identifier] = STATE(6923), + [sym_operator_name] = STATE(6145), + [aux_sym_operator_cast_definition_repeat1] = STATE(3363), + [sym_identifier] = ACTIONS(5481), + [anon_sym_LPAREN2] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(3001), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2983), - [anon_sym___extension__] = ACTIONS(5462), - [anon_sym_virtual] = ACTIONS(5464), - [anon_sym_extern] = ACTIONS(5466), - [anon_sym___attribute__] = ACTIONS(5468), - [anon_sym___attribute] = ACTIONS(5468), - [anon_sym_COLON_COLON] = ACTIONS(5470), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5472), - [anon_sym___declspec] = ACTIONS(5474), + [anon_sym_AMP] = ACTIONS(3003), + [anon_sym___extension__] = ACTIONS(5483), + [anon_sym_virtual] = ACTIONS(5485), + [anon_sym_extern] = ACTIONS(5487), + [anon_sym___attribute__] = ACTIONS(5489), + [anon_sym___attribute] = ACTIONS(5489), + [anon_sym_COLON_COLON] = ACTIONS(5491), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5493), + [anon_sym___declspec] = ACTIONS(5495), [anon_sym___based] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(2995), - [anon_sym_static] = ACTIONS(5466), - [anon_sym_register] = ACTIONS(5466), - [anon_sym_inline] = ACTIONS(5466), - [anon_sym___inline] = ACTIONS(5466), - [anon_sym___inline__] = ACTIONS(5466), - [anon_sym___forceinline] = ACTIONS(5466), - [anon_sym_thread_local] = ACTIONS(5466), - [anon_sym___thread] = ACTIONS(5466), - [anon_sym_const] = ACTIONS(5462), - [anon_sym_constexpr] = ACTIONS(5462), - [anon_sym_volatile] = ACTIONS(5462), - [anon_sym_restrict] = ACTIONS(5462), - [anon_sym___restrict__] = ACTIONS(5462), - [anon_sym__Atomic] = ACTIONS(5462), - [anon_sym__Noreturn] = ACTIONS(5462), - [anon_sym_noreturn] = ACTIONS(5462), - [anon_sym__Nonnull] = ACTIONS(5462), - [anon_sym_mutable] = ACTIONS(5462), - [anon_sym_constinit] = ACTIONS(5462), - [anon_sym_consteval] = ACTIONS(5462), - [anon_sym_alignas] = ACTIONS(5476), - [anon_sym__Alignas] = ACTIONS(5476), + [anon_sym_LBRACK] = ACTIONS(3015), + [anon_sym_static] = ACTIONS(5487), + [anon_sym_register] = ACTIONS(5487), + [anon_sym_inline] = ACTIONS(5487), + [anon_sym___inline] = ACTIONS(5487), + [anon_sym___inline__] = ACTIONS(5487), + [anon_sym___forceinline] = ACTIONS(5487), + [anon_sym_thread_local] = ACTIONS(5487), + [anon_sym___thread] = ACTIONS(5487), + [anon_sym_const] = ACTIONS(5483), + [anon_sym_constexpr] = ACTIONS(5483), + [anon_sym_volatile] = ACTIONS(5483), + [anon_sym_restrict] = ACTIONS(5483), + [anon_sym___restrict__] = ACTIONS(5483), + [anon_sym__Atomic] = ACTIONS(5483), + [anon_sym__Noreturn] = ACTIONS(5483), + [anon_sym_noreturn] = ACTIONS(5483), + [anon_sym__Nonnull] = ACTIONS(5483), + [anon_sym_mutable] = ACTIONS(5483), + [anon_sym_constinit] = ACTIONS(5483), + [anon_sym_consteval] = ACTIONS(5483), + [anon_sym_alignas] = ACTIONS(5497), + [anon_sym__Alignas] = ACTIONS(5497), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_explicit] = ACTIONS(129), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_operator] = ACTIONS(141), }, - [1761] = { - [sym_identifier] = ACTIONS(3067), - [aux_sym_preproc_def_token1] = ACTIONS(3067), - [aux_sym_preproc_if_token1] = ACTIONS(3067), - [aux_sym_preproc_if_token2] = ACTIONS(3067), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3067), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3067), - [aux_sym_preproc_else_token1] = ACTIONS(3067), - [aux_sym_preproc_elif_token1] = ACTIONS(3067), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3067), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3067), - [sym_preproc_directive] = ACTIONS(3067), - [anon_sym_LPAREN2] = ACTIONS(3069), - [anon_sym_TILDE] = ACTIONS(3069), - [anon_sym_STAR] = ACTIONS(3069), - [anon_sym_AMP_AMP] = ACTIONS(3069), - [anon_sym_AMP] = ACTIONS(3067), - [anon_sym_SEMI] = ACTIONS(3069), - [anon_sym___extension__] = ACTIONS(3067), - [anon_sym_typedef] = ACTIONS(3067), - [anon_sym_virtual] = ACTIONS(3067), - [anon_sym_extern] = ACTIONS(3067), - [anon_sym___attribute__] = ACTIONS(3067), - [anon_sym___attribute] = ACTIONS(3067), - [anon_sym_using] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(3069), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3069), - [anon_sym___declspec] = ACTIONS(3067), - [anon_sym___based] = ACTIONS(3067), - [anon_sym_signed] = ACTIONS(3067), - [anon_sym_unsigned] = ACTIONS(3067), - [anon_sym_long] = ACTIONS(3067), - [anon_sym_short] = ACTIONS(3067), - [anon_sym_LBRACK] = ACTIONS(3067), - [anon_sym_static] = ACTIONS(3067), - [anon_sym_register] = ACTIONS(3067), - [anon_sym_inline] = ACTIONS(3067), - [anon_sym___inline] = ACTIONS(3067), - [anon_sym___inline__] = ACTIONS(3067), - [anon_sym___forceinline] = ACTIONS(3067), - [anon_sym_thread_local] = ACTIONS(3067), - [anon_sym___thread] = ACTIONS(3067), - [anon_sym_const] = ACTIONS(3067), - [anon_sym_constexpr] = ACTIONS(3067), - [anon_sym_volatile] = ACTIONS(3067), - [anon_sym_restrict] = ACTIONS(3067), - [anon_sym___restrict__] = ACTIONS(3067), - [anon_sym__Atomic] = ACTIONS(3067), - [anon_sym__Noreturn] = ACTIONS(3067), - [anon_sym_noreturn] = ACTIONS(3067), - [anon_sym__Nonnull] = ACTIONS(3067), - [anon_sym_mutable] = ACTIONS(3067), - [anon_sym_constinit] = ACTIONS(3067), - [anon_sym_consteval] = ACTIONS(3067), - [anon_sym_alignas] = ACTIONS(3067), - [anon_sym__Alignas] = ACTIONS(3067), - [sym_primitive_type] = ACTIONS(3067), - [anon_sym_enum] = ACTIONS(3067), - [anon_sym_class] = ACTIONS(3067), - [anon_sym_struct] = ACTIONS(3067), - [anon_sym_union] = ACTIONS(3067), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3067), - [anon_sym_decltype] = ACTIONS(3067), - [anon_sym_explicit] = ACTIONS(3067), - [anon_sym_typename] = ACTIONS(3067), - [anon_sym_private] = ACTIONS(3067), - [anon_sym_template] = ACTIONS(3067), - [anon_sym_operator] = ACTIONS(3067), - [anon_sym_friend] = ACTIONS(3067), - [anon_sym_public] = ACTIONS(3067), - [anon_sym_protected] = ACTIONS(3067), - [anon_sym_static_assert] = ACTIONS(3067), - }, - [1762] = { - [sym_identifier] = ACTIONS(3071), - [aux_sym_preproc_def_token1] = ACTIONS(3071), - [aux_sym_preproc_if_token1] = ACTIONS(3071), - [aux_sym_preproc_if_token2] = ACTIONS(3071), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3071), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3071), - [aux_sym_preproc_else_token1] = ACTIONS(3071), - [aux_sym_preproc_elif_token1] = ACTIONS(3071), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3071), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3071), - [sym_preproc_directive] = ACTIONS(3071), - [anon_sym_LPAREN2] = ACTIONS(3073), - [anon_sym_TILDE] = ACTIONS(3073), - [anon_sym_STAR] = ACTIONS(3073), - [anon_sym_AMP_AMP] = ACTIONS(3073), - [anon_sym_AMP] = ACTIONS(3071), - [anon_sym_SEMI] = ACTIONS(3073), - [anon_sym___extension__] = ACTIONS(3071), - [anon_sym_typedef] = ACTIONS(3071), - [anon_sym_virtual] = ACTIONS(3071), - [anon_sym_extern] = ACTIONS(3071), - [anon_sym___attribute__] = ACTIONS(3071), - [anon_sym___attribute] = ACTIONS(3071), - [anon_sym_using] = ACTIONS(3071), - [anon_sym_COLON_COLON] = ACTIONS(3073), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3073), - [anon_sym___declspec] = ACTIONS(3071), - [anon_sym___based] = ACTIONS(3071), - [anon_sym_signed] = ACTIONS(3071), - [anon_sym_unsigned] = ACTIONS(3071), - [anon_sym_long] = ACTIONS(3071), - [anon_sym_short] = ACTIONS(3071), - [anon_sym_LBRACK] = ACTIONS(3071), - [anon_sym_static] = ACTIONS(3071), - [anon_sym_register] = ACTIONS(3071), - [anon_sym_inline] = ACTIONS(3071), - [anon_sym___inline] = ACTIONS(3071), - [anon_sym___inline__] = ACTIONS(3071), - [anon_sym___forceinline] = ACTIONS(3071), - [anon_sym_thread_local] = ACTIONS(3071), - [anon_sym___thread] = ACTIONS(3071), - [anon_sym_const] = ACTIONS(3071), - [anon_sym_constexpr] = ACTIONS(3071), - [anon_sym_volatile] = ACTIONS(3071), - [anon_sym_restrict] = ACTIONS(3071), - [anon_sym___restrict__] = ACTIONS(3071), - [anon_sym__Atomic] = ACTIONS(3071), - [anon_sym__Noreturn] = ACTIONS(3071), - [anon_sym_noreturn] = ACTIONS(3071), - [anon_sym__Nonnull] = ACTIONS(3071), - [anon_sym_mutable] = ACTIONS(3071), - [anon_sym_constinit] = ACTIONS(3071), - [anon_sym_consteval] = ACTIONS(3071), - [anon_sym_alignas] = ACTIONS(3071), - [anon_sym__Alignas] = ACTIONS(3071), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(3071), - [anon_sym_class] = ACTIONS(3071), - [anon_sym_struct] = ACTIONS(3071), - [anon_sym_union] = ACTIONS(3071), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3071), - [anon_sym_decltype] = ACTIONS(3071), - [anon_sym_explicit] = ACTIONS(3071), - [anon_sym_typename] = ACTIONS(3071), - [anon_sym_private] = ACTIONS(3071), - [anon_sym_template] = ACTIONS(3071), - [anon_sym_operator] = ACTIONS(3071), - [anon_sym_friend] = ACTIONS(3071), - [anon_sym_public] = ACTIONS(3071), - [anon_sym_protected] = ACTIONS(3071), - [anon_sym_static_assert] = ACTIONS(3071), - }, - [1763] = { - [sym_identifier] = ACTIONS(4992), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4994), - [anon_sym_COMMA] = ACTIONS(4994), - [anon_sym_RPAREN] = ACTIONS(4994), - [anon_sym_LPAREN2] = ACTIONS(4994), - [anon_sym_DASH] = ACTIONS(4992), - [anon_sym_PLUS] = ACTIONS(4992), - [anon_sym_STAR] = ACTIONS(4994), - [anon_sym_SLASH] = ACTIONS(4992), - [anon_sym_PERCENT] = ACTIONS(4994), - [anon_sym_PIPE_PIPE] = ACTIONS(4994), - [anon_sym_AMP_AMP] = ACTIONS(4994), - [anon_sym_PIPE] = ACTIONS(4992), - [anon_sym_CARET] = ACTIONS(4994), - [anon_sym_AMP] = ACTIONS(4992), - [anon_sym_EQ_EQ] = ACTIONS(4994), - [anon_sym_BANG_EQ] = ACTIONS(4994), - [anon_sym_GT] = ACTIONS(4992), - [anon_sym_GT_EQ] = ACTIONS(4994), - [anon_sym_LT_EQ] = ACTIONS(4992), - [anon_sym_LT] = ACTIONS(4992), - [anon_sym_LT_LT] = ACTIONS(4994), - [anon_sym_GT_GT] = ACTIONS(4994), - [anon_sym_SEMI] = ACTIONS(4994), - [anon_sym___extension__] = ACTIONS(4992), - [anon_sym___attribute__] = ACTIONS(4992), - [anon_sym___attribute] = ACTIONS(4992), - [anon_sym_COLON] = ACTIONS(4992), - [anon_sym_COLON_COLON] = ACTIONS(4994), - [anon_sym___based] = ACTIONS(4992), - [anon_sym_LBRACE] = ACTIONS(4994), - [anon_sym_RBRACE] = ACTIONS(4994), - [anon_sym_signed] = ACTIONS(4992), - [anon_sym_unsigned] = ACTIONS(4992), - [anon_sym_long] = ACTIONS(4992), - [anon_sym_short] = ACTIONS(4992), - [anon_sym_LBRACK] = ACTIONS(4994), - [anon_sym_RBRACK] = ACTIONS(4994), - [anon_sym_const] = ACTIONS(4992), - [anon_sym_constexpr] = ACTIONS(4992), - [anon_sym_volatile] = ACTIONS(4992), - [anon_sym_restrict] = ACTIONS(4992), - [anon_sym___restrict__] = ACTIONS(4992), - [anon_sym__Atomic] = ACTIONS(4992), - [anon_sym__Noreturn] = ACTIONS(4992), - [anon_sym_noreturn] = ACTIONS(4992), - [anon_sym__Nonnull] = ACTIONS(4992), - [anon_sym_mutable] = ACTIONS(4992), - [anon_sym_constinit] = ACTIONS(4992), - [anon_sym_consteval] = ACTIONS(4992), - [anon_sym_alignas] = ACTIONS(4992), - [anon_sym__Alignas] = ACTIONS(4992), - [sym_primitive_type] = ACTIONS(4992), - [anon_sym_QMARK] = ACTIONS(4994), - [anon_sym_LT_EQ_GT] = ACTIONS(4994), - [anon_sym_or] = ACTIONS(4992), - [anon_sym_and] = ACTIONS(4992), - [anon_sym_bitor] = ACTIONS(4992), - [anon_sym_xor] = ACTIONS(4992), - [anon_sym_bitand] = ACTIONS(4992), - [anon_sym_not_eq] = ACTIONS(4992), - [anon_sym_DASH_DASH] = ACTIONS(4994), - [anon_sym_PLUS_PLUS] = ACTIONS(4994), - [anon_sym_DOT] = ACTIONS(4992), - [anon_sym_DOT_STAR] = ACTIONS(4994), - [anon_sym_DASH_GT] = ACTIONS(4994), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4992), - [anon_sym_decltype] = ACTIONS(4992), - [anon_sym_final] = ACTIONS(4992), - [anon_sym_override] = ACTIONS(4992), - [anon_sym_requires] = ACTIONS(4992), - }, - [1764] = { - [sym_identifier] = ACTIONS(5549), - [aux_sym_preproc_def_token1] = ACTIONS(5549), - [aux_sym_preproc_if_token1] = ACTIONS(5549), - [aux_sym_preproc_if_token2] = ACTIONS(5549), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5549), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5549), - [aux_sym_preproc_else_token1] = ACTIONS(5549), - [aux_sym_preproc_elif_token1] = ACTIONS(5549), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5549), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5549), - [sym_preproc_directive] = ACTIONS(5549), - [anon_sym_LPAREN2] = ACTIONS(5551), - [anon_sym_TILDE] = ACTIONS(5551), - [anon_sym_STAR] = ACTIONS(5551), - [anon_sym_AMP_AMP] = ACTIONS(5551), - [anon_sym_AMP] = ACTIONS(5549), - [anon_sym_SEMI] = ACTIONS(5551), - [anon_sym___extension__] = ACTIONS(5549), - [anon_sym_typedef] = ACTIONS(5549), - [anon_sym_virtual] = ACTIONS(5549), - [anon_sym_extern] = ACTIONS(5549), - [anon_sym___attribute__] = ACTIONS(5549), - [anon_sym___attribute] = ACTIONS(5549), - [anon_sym_using] = ACTIONS(5549), - [anon_sym_COLON_COLON] = ACTIONS(5551), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5551), - [anon_sym___declspec] = ACTIONS(5549), - [anon_sym___based] = ACTIONS(5549), - [anon_sym_signed] = ACTIONS(5549), - [anon_sym_unsigned] = ACTIONS(5549), - [anon_sym_long] = ACTIONS(5549), - [anon_sym_short] = ACTIONS(5549), - [anon_sym_LBRACK] = ACTIONS(5549), - [anon_sym_static] = ACTIONS(5549), - [anon_sym_register] = ACTIONS(5549), - [anon_sym_inline] = ACTIONS(5549), - [anon_sym___inline] = ACTIONS(5549), - [anon_sym___inline__] = ACTIONS(5549), - [anon_sym___forceinline] = ACTIONS(5549), - [anon_sym_thread_local] = ACTIONS(5549), - [anon_sym___thread] = ACTIONS(5549), - [anon_sym_const] = ACTIONS(5549), - [anon_sym_constexpr] = ACTIONS(5549), - [anon_sym_volatile] = ACTIONS(5549), - [anon_sym_restrict] = ACTIONS(5549), - [anon_sym___restrict__] = ACTIONS(5549), - [anon_sym__Atomic] = ACTIONS(5549), - [anon_sym__Noreturn] = ACTIONS(5549), - [anon_sym_noreturn] = ACTIONS(5549), - [anon_sym__Nonnull] = ACTIONS(5549), - [anon_sym_mutable] = ACTIONS(5549), - [anon_sym_constinit] = ACTIONS(5549), - [anon_sym_consteval] = ACTIONS(5549), - [anon_sym_alignas] = ACTIONS(5549), - [anon_sym__Alignas] = ACTIONS(5549), - [sym_primitive_type] = ACTIONS(5549), - [anon_sym_enum] = ACTIONS(5549), - [anon_sym_class] = ACTIONS(5549), - [anon_sym_struct] = ACTIONS(5549), - [anon_sym_union] = ACTIONS(5549), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5549), - [anon_sym_decltype] = ACTIONS(5549), - [anon_sym_explicit] = ACTIONS(5549), - [anon_sym_typename] = ACTIONS(5549), - [anon_sym_private] = ACTIONS(5549), - [anon_sym_template] = ACTIONS(5549), - [anon_sym_operator] = ACTIONS(5549), - [anon_sym_friend] = ACTIONS(5549), - [anon_sym_public] = ACTIONS(5549), - [anon_sym_protected] = ACTIONS(5549), - [anon_sym_static_assert] = ACTIONS(5549), - }, - [1765] = { + [1815] = { [sym_identifier] = ACTIONS(5553), [aux_sym_preproc_def_token1] = ACTIONS(5553), [aux_sym_preproc_if_token1] = ACTIONS(5553), @@ -251940,229 +257200,229 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(5553), [anon_sym_static_assert] = ACTIONS(5553), }, - [1766] = { + [1816] = { + [sym_attribute_specifier] = STATE(2307), + [sym_field_declaration_list] = STATE(2214), + [sym_virtual_specifier] = STATE(7121), + [sym_base_class_clause] = STATE(7692), [sym_identifier] = ACTIONS(5557), - [aux_sym_preproc_def_token1] = ACTIONS(5557), - [aux_sym_preproc_if_token1] = ACTIONS(5557), - [aux_sym_preproc_if_token2] = ACTIONS(5557), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5557), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5557), - [aux_sym_preproc_else_token1] = ACTIONS(5557), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5559), + [anon_sym_COMMA] = ACTIONS(5559), + [anon_sym_RPAREN] = ACTIONS(5559), + [aux_sym_preproc_if_token2] = ACTIONS(5559), + [aux_sym_preproc_else_token1] = ACTIONS(5559), [aux_sym_preproc_elif_token1] = ACTIONS(5557), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5557), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5557), - [sym_preproc_directive] = ACTIONS(5557), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5559), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5559), [anon_sym_LPAREN2] = ACTIONS(5559), - [anon_sym_TILDE] = ACTIONS(5559), - [anon_sym_STAR] = ACTIONS(5559), + [anon_sym_DASH] = ACTIONS(5557), + [anon_sym_PLUS] = ACTIONS(5557), + [anon_sym_STAR] = ACTIONS(5557), + [anon_sym_SLASH] = ACTIONS(5557), + [anon_sym_PERCENT] = ACTIONS(5557), + [anon_sym_PIPE_PIPE] = ACTIONS(5559), [anon_sym_AMP_AMP] = ACTIONS(5559), + [anon_sym_PIPE] = ACTIONS(5557), + [anon_sym_CARET] = ACTIONS(5557), [anon_sym_AMP] = ACTIONS(5557), + [anon_sym_EQ_EQ] = ACTIONS(5559), + [anon_sym_BANG_EQ] = ACTIONS(5559), + [anon_sym_GT] = ACTIONS(5557), + [anon_sym_GT_EQ] = ACTIONS(5559), + [anon_sym_LT_EQ] = ACTIONS(5557), + [anon_sym_LT] = ACTIONS(5557), + [anon_sym_LT_LT] = ACTIONS(5557), + [anon_sym_GT_GT] = ACTIONS(5557), [anon_sym_SEMI] = ACTIONS(5559), - [anon_sym___extension__] = ACTIONS(5557), - [anon_sym_typedef] = ACTIONS(5557), - [anon_sym_virtual] = ACTIONS(5557), - [anon_sym_extern] = ACTIONS(5557), - [anon_sym___attribute__] = ACTIONS(5557), - [anon_sym___attribute] = ACTIONS(5557), - [anon_sym_using] = ACTIONS(5557), - [anon_sym_COLON_COLON] = ACTIONS(5559), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5559), - [anon_sym___declspec] = ACTIONS(5557), - [anon_sym___based] = ACTIONS(5557), - [anon_sym_signed] = ACTIONS(5557), - [anon_sym_unsigned] = ACTIONS(5557), - [anon_sym_long] = ACTIONS(5557), - [anon_sym_short] = ACTIONS(5557), - [anon_sym_LBRACK] = ACTIONS(5557), - [anon_sym_static] = ACTIONS(5557), - [anon_sym_register] = ACTIONS(5557), - [anon_sym_inline] = ACTIONS(5557), - [anon_sym___inline] = ACTIONS(5557), - [anon_sym___inline__] = ACTIONS(5557), - [anon_sym___forceinline] = ACTIONS(5557), - [anon_sym_thread_local] = ACTIONS(5557), - [anon_sym___thread] = ACTIONS(5557), - [anon_sym_const] = ACTIONS(5557), - [anon_sym_constexpr] = ACTIONS(5557), - [anon_sym_volatile] = ACTIONS(5557), - [anon_sym_restrict] = ACTIONS(5557), - [anon_sym___restrict__] = ACTIONS(5557), - [anon_sym__Atomic] = ACTIONS(5557), - [anon_sym__Noreturn] = ACTIONS(5557), - [anon_sym_noreturn] = ACTIONS(5557), - [anon_sym__Nonnull] = ACTIONS(5557), - [anon_sym_mutable] = ACTIONS(5557), - [anon_sym_constinit] = ACTIONS(5557), - [anon_sym_consteval] = ACTIONS(5557), - [anon_sym_alignas] = ACTIONS(5557), - [anon_sym__Alignas] = ACTIONS(5557), - [sym_primitive_type] = ACTIONS(5557), - [anon_sym_enum] = ACTIONS(5557), - [anon_sym_class] = ACTIONS(5557), - [anon_sym_struct] = ACTIONS(5557), - [anon_sym_union] = ACTIONS(5557), + [anon_sym___attribute__] = ACTIONS(5561), + [anon_sym___attribute] = ACTIONS(5561), + [anon_sym_COLON] = ACTIONS(5563), + [anon_sym_LBRACE] = ACTIONS(5565), + [anon_sym_RBRACE] = ACTIONS(5559), + [anon_sym_LBRACK] = ACTIONS(5559), + [anon_sym_RBRACK] = ACTIONS(5559), + [anon_sym_EQ] = ACTIONS(5557), + [anon_sym_QMARK] = ACTIONS(5559), + [anon_sym_STAR_EQ] = ACTIONS(5559), + [anon_sym_SLASH_EQ] = ACTIONS(5559), + [anon_sym_PERCENT_EQ] = ACTIONS(5559), + [anon_sym_PLUS_EQ] = ACTIONS(5559), + [anon_sym_DASH_EQ] = ACTIONS(5559), + [anon_sym_LT_LT_EQ] = ACTIONS(5559), + [anon_sym_GT_GT_EQ] = ACTIONS(5559), + [anon_sym_AMP_EQ] = ACTIONS(5559), + [anon_sym_CARET_EQ] = ACTIONS(5559), + [anon_sym_PIPE_EQ] = ACTIONS(5559), + [anon_sym_and_eq] = ACTIONS(5557), + [anon_sym_or_eq] = ACTIONS(5557), + [anon_sym_xor_eq] = ACTIONS(5557), + [anon_sym_LT_EQ_GT] = ACTIONS(5559), + [anon_sym_or] = ACTIONS(5557), + [anon_sym_and] = ACTIONS(5557), + [anon_sym_bitor] = ACTIONS(5557), + [anon_sym_xor] = ACTIONS(5557), + [anon_sym_bitand] = ACTIONS(5557), + [anon_sym_not_eq] = ACTIONS(5557), + [anon_sym_DASH_DASH] = ACTIONS(5559), + [anon_sym_PLUS_PLUS] = ACTIONS(5559), + [anon_sym_DOT] = ACTIONS(5557), + [anon_sym_DOT_STAR] = ACTIONS(5559), + [anon_sym_DASH_GT] = ACTIONS(5559), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(5557), [anon_sym_decltype] = ACTIONS(5557), - [anon_sym_explicit] = ACTIONS(5557), - [anon_sym_typename] = ACTIONS(5557), - [anon_sym_private] = ACTIONS(5557), - [anon_sym_template] = ACTIONS(5557), - [anon_sym_operator] = ACTIONS(5557), - [anon_sym_friend] = ACTIONS(5557), - [anon_sym_public] = ACTIONS(5557), - [anon_sym_protected] = ACTIONS(5557), - [anon_sym_static_assert] = ACTIONS(5557), + [anon_sym_final] = ACTIONS(5567), + [anon_sym_override] = ACTIONS(5567), }, - [1767] = { - [sym_identifier] = ACTIONS(5561), - [aux_sym_preproc_def_token1] = ACTIONS(5561), - [aux_sym_preproc_if_token1] = ACTIONS(5561), - [aux_sym_preproc_if_token2] = ACTIONS(5561), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5561), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5561), - [aux_sym_preproc_else_token1] = ACTIONS(5561), - [aux_sym_preproc_elif_token1] = ACTIONS(5561), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5561), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5561), - [sym_preproc_directive] = ACTIONS(5561), - [anon_sym_LPAREN2] = ACTIONS(5563), - [anon_sym_TILDE] = ACTIONS(5563), - [anon_sym_STAR] = ACTIONS(5563), - [anon_sym_AMP_AMP] = ACTIONS(5563), - [anon_sym_AMP] = ACTIONS(5561), - [anon_sym_SEMI] = ACTIONS(5563), - [anon_sym___extension__] = ACTIONS(5561), - [anon_sym_typedef] = ACTIONS(5561), - [anon_sym_virtual] = ACTIONS(5561), - [anon_sym_extern] = ACTIONS(5561), - [anon_sym___attribute__] = ACTIONS(5561), - [anon_sym___attribute] = ACTIONS(5561), - [anon_sym_using] = ACTIONS(5561), - [anon_sym_COLON_COLON] = ACTIONS(5563), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5563), - [anon_sym___declspec] = ACTIONS(5561), - [anon_sym___based] = ACTIONS(5561), - [anon_sym_signed] = ACTIONS(5561), - [anon_sym_unsigned] = ACTIONS(5561), - [anon_sym_long] = ACTIONS(5561), - [anon_sym_short] = ACTIONS(5561), - [anon_sym_LBRACK] = ACTIONS(5561), - [anon_sym_static] = ACTIONS(5561), - [anon_sym_register] = ACTIONS(5561), - [anon_sym_inline] = ACTIONS(5561), - [anon_sym___inline] = ACTIONS(5561), - [anon_sym___inline__] = ACTIONS(5561), - [anon_sym___forceinline] = ACTIONS(5561), - [anon_sym_thread_local] = ACTIONS(5561), - [anon_sym___thread] = ACTIONS(5561), - [anon_sym_const] = ACTIONS(5561), - [anon_sym_constexpr] = ACTIONS(5561), - [anon_sym_volatile] = ACTIONS(5561), - [anon_sym_restrict] = ACTIONS(5561), - [anon_sym___restrict__] = ACTIONS(5561), - [anon_sym__Atomic] = ACTIONS(5561), - [anon_sym__Noreturn] = ACTIONS(5561), - [anon_sym_noreturn] = ACTIONS(5561), - [anon_sym__Nonnull] = ACTIONS(5561), - [anon_sym_mutable] = ACTIONS(5561), - [anon_sym_constinit] = ACTIONS(5561), - [anon_sym_consteval] = ACTIONS(5561), - [anon_sym_alignas] = ACTIONS(5561), - [anon_sym__Alignas] = ACTIONS(5561), - [sym_primitive_type] = ACTIONS(5561), - [anon_sym_enum] = ACTIONS(5561), - [anon_sym_class] = ACTIONS(5561), - [anon_sym_struct] = ACTIONS(5561), - [anon_sym_union] = ACTIONS(5561), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5561), - [anon_sym_decltype] = ACTIONS(5561), - [anon_sym_explicit] = ACTIONS(5561), - [anon_sym_typename] = ACTIONS(5561), - [anon_sym_private] = ACTIONS(5561), - [anon_sym_template] = ACTIONS(5561), - [anon_sym_operator] = ACTIONS(5561), - [anon_sym_friend] = ACTIONS(5561), - [anon_sym_public] = ACTIONS(5561), - [anon_sym_protected] = ACTIONS(5561), - [anon_sym_static_assert] = ACTIONS(5561), + [1817] = { + [sym_identifier] = ACTIONS(2943), + [aux_sym_preproc_def_token1] = ACTIONS(2943), + [aux_sym_preproc_if_token1] = ACTIONS(2943), + [aux_sym_preproc_if_token2] = ACTIONS(2943), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2943), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2943), + [aux_sym_preproc_else_token1] = ACTIONS(2943), + [aux_sym_preproc_elif_token1] = ACTIONS(2943), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2943), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2943), + [sym_preproc_directive] = ACTIONS(2943), + [anon_sym_LPAREN2] = ACTIONS(2945), + [anon_sym_TILDE] = ACTIONS(2945), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_AMP_AMP] = ACTIONS(2945), + [anon_sym_AMP] = ACTIONS(2943), + [anon_sym_SEMI] = ACTIONS(2945), + [anon_sym___extension__] = ACTIONS(2943), + [anon_sym_typedef] = ACTIONS(2943), + [anon_sym_virtual] = ACTIONS(2943), + [anon_sym_extern] = ACTIONS(2943), + [anon_sym___attribute__] = ACTIONS(2943), + [anon_sym___attribute] = ACTIONS(2943), + [anon_sym_using] = ACTIONS(2943), + [anon_sym_COLON_COLON] = ACTIONS(2945), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2945), + [anon_sym___declspec] = ACTIONS(2943), + [anon_sym___based] = ACTIONS(2943), + [anon_sym_signed] = ACTIONS(2943), + [anon_sym_unsigned] = ACTIONS(2943), + [anon_sym_long] = ACTIONS(2943), + [anon_sym_short] = ACTIONS(2943), + [anon_sym_LBRACK] = ACTIONS(2943), + [anon_sym_static] = ACTIONS(2943), + [anon_sym_register] = ACTIONS(2943), + [anon_sym_inline] = ACTIONS(2943), + [anon_sym___inline] = ACTIONS(2943), + [anon_sym___inline__] = ACTIONS(2943), + [anon_sym___forceinline] = ACTIONS(2943), + [anon_sym_thread_local] = ACTIONS(2943), + [anon_sym___thread] = ACTIONS(2943), + [anon_sym_const] = ACTIONS(2943), + [anon_sym_constexpr] = ACTIONS(2943), + [anon_sym_volatile] = ACTIONS(2943), + [anon_sym_restrict] = ACTIONS(2943), + [anon_sym___restrict__] = ACTIONS(2943), + [anon_sym__Atomic] = ACTIONS(2943), + [anon_sym__Noreturn] = ACTIONS(2943), + [anon_sym_noreturn] = ACTIONS(2943), + [anon_sym__Nonnull] = ACTIONS(2943), + [anon_sym_mutable] = ACTIONS(2943), + [anon_sym_constinit] = ACTIONS(2943), + [anon_sym_consteval] = ACTIONS(2943), + [anon_sym_alignas] = ACTIONS(2943), + [anon_sym__Alignas] = ACTIONS(2943), + [sym_primitive_type] = ACTIONS(2943), + [anon_sym_enum] = ACTIONS(2943), + [anon_sym_class] = ACTIONS(2943), + [anon_sym_struct] = ACTIONS(2943), + [anon_sym_union] = ACTIONS(2943), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2943), + [anon_sym_decltype] = ACTIONS(2943), + [anon_sym_explicit] = ACTIONS(2943), + [anon_sym_typename] = ACTIONS(2943), + [anon_sym_private] = ACTIONS(2943), + [anon_sym_template] = ACTIONS(2943), + [anon_sym_operator] = ACTIONS(2943), + [anon_sym_friend] = ACTIONS(2943), + [anon_sym_public] = ACTIONS(2943), + [anon_sym_protected] = ACTIONS(2943), + [anon_sym_static_assert] = ACTIONS(2943), }, - [1768] = { - [sym_identifier] = ACTIONS(5565), - [aux_sym_preproc_def_token1] = ACTIONS(5565), - [aux_sym_preproc_if_token1] = ACTIONS(5565), - [aux_sym_preproc_if_token2] = ACTIONS(5565), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5565), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5565), - [aux_sym_preproc_else_token1] = ACTIONS(5565), - [aux_sym_preproc_elif_token1] = ACTIONS(5565), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5565), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5565), - [sym_preproc_directive] = ACTIONS(5565), - [anon_sym_LPAREN2] = ACTIONS(5567), - [anon_sym_TILDE] = ACTIONS(5567), - [anon_sym_STAR] = ACTIONS(5567), - [anon_sym_AMP_AMP] = ACTIONS(5567), - [anon_sym_AMP] = ACTIONS(5565), - [anon_sym_SEMI] = ACTIONS(5567), - [anon_sym___extension__] = ACTIONS(5565), - [anon_sym_typedef] = ACTIONS(5565), - [anon_sym_virtual] = ACTIONS(5565), - [anon_sym_extern] = ACTIONS(5565), - [anon_sym___attribute__] = ACTIONS(5565), - [anon_sym___attribute] = ACTIONS(5565), - [anon_sym_using] = ACTIONS(5565), - [anon_sym_COLON_COLON] = ACTIONS(5567), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5567), - [anon_sym___declspec] = ACTIONS(5565), - [anon_sym___based] = ACTIONS(5565), - [anon_sym_signed] = ACTIONS(5565), - [anon_sym_unsigned] = ACTIONS(5565), - [anon_sym_long] = ACTIONS(5565), - [anon_sym_short] = ACTIONS(5565), - [anon_sym_LBRACK] = ACTIONS(5565), - [anon_sym_static] = ACTIONS(5565), - [anon_sym_register] = ACTIONS(5565), - [anon_sym_inline] = ACTIONS(5565), - [anon_sym___inline] = ACTIONS(5565), - [anon_sym___inline__] = ACTIONS(5565), - [anon_sym___forceinline] = ACTIONS(5565), - [anon_sym_thread_local] = ACTIONS(5565), - [anon_sym___thread] = ACTIONS(5565), - [anon_sym_const] = ACTIONS(5565), - [anon_sym_constexpr] = ACTIONS(5565), - [anon_sym_volatile] = ACTIONS(5565), - [anon_sym_restrict] = ACTIONS(5565), - [anon_sym___restrict__] = ACTIONS(5565), - [anon_sym__Atomic] = ACTIONS(5565), - [anon_sym__Noreturn] = ACTIONS(5565), - [anon_sym_noreturn] = ACTIONS(5565), - [anon_sym__Nonnull] = ACTIONS(5565), - [anon_sym_mutable] = ACTIONS(5565), - [anon_sym_constinit] = ACTIONS(5565), - [anon_sym_consteval] = ACTIONS(5565), - [anon_sym_alignas] = ACTIONS(5565), - [anon_sym__Alignas] = ACTIONS(5565), - [sym_primitive_type] = ACTIONS(5565), - [anon_sym_enum] = ACTIONS(5565), - [anon_sym_class] = ACTIONS(5565), - [anon_sym_struct] = ACTIONS(5565), - [anon_sym_union] = ACTIONS(5565), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5565), - [anon_sym_decltype] = ACTIONS(5565), - [anon_sym_explicit] = ACTIONS(5565), - [anon_sym_typename] = ACTIONS(5565), - [anon_sym_private] = ACTIONS(5565), - [anon_sym_template] = ACTIONS(5565), - [anon_sym_operator] = ACTIONS(5565), - [anon_sym_friend] = ACTIONS(5565), - [anon_sym_public] = ACTIONS(5565), - [anon_sym_protected] = ACTIONS(5565), - [anon_sym_static_assert] = ACTIONS(5565), + [1818] = { + [sym_identifier] = ACTIONS(2947), + [aux_sym_preproc_def_token1] = ACTIONS(2947), + [aux_sym_preproc_if_token1] = ACTIONS(2947), + [aux_sym_preproc_if_token2] = ACTIONS(2947), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2947), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2947), + [aux_sym_preproc_else_token1] = ACTIONS(2947), + [aux_sym_preproc_elif_token1] = ACTIONS(2947), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2947), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2947), + [sym_preproc_directive] = ACTIONS(2947), + [anon_sym_LPAREN2] = ACTIONS(2949), + [anon_sym_TILDE] = ACTIONS(2949), + [anon_sym_STAR] = ACTIONS(2949), + [anon_sym_AMP_AMP] = ACTIONS(2949), + [anon_sym_AMP] = ACTIONS(2947), + [anon_sym_SEMI] = ACTIONS(2949), + [anon_sym___extension__] = ACTIONS(2947), + [anon_sym_typedef] = ACTIONS(2947), + [anon_sym_virtual] = ACTIONS(2947), + [anon_sym_extern] = ACTIONS(2947), + [anon_sym___attribute__] = ACTIONS(2947), + [anon_sym___attribute] = ACTIONS(2947), + [anon_sym_using] = ACTIONS(2947), + [anon_sym_COLON_COLON] = ACTIONS(2949), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2949), + [anon_sym___declspec] = ACTIONS(2947), + [anon_sym___based] = ACTIONS(2947), + [anon_sym_signed] = ACTIONS(2947), + [anon_sym_unsigned] = ACTIONS(2947), + [anon_sym_long] = ACTIONS(2947), + [anon_sym_short] = ACTIONS(2947), + [anon_sym_LBRACK] = ACTIONS(2947), + [anon_sym_static] = ACTIONS(2947), + [anon_sym_register] = ACTIONS(2947), + [anon_sym_inline] = ACTIONS(2947), + [anon_sym___inline] = ACTIONS(2947), + [anon_sym___inline__] = ACTIONS(2947), + [anon_sym___forceinline] = ACTIONS(2947), + [anon_sym_thread_local] = ACTIONS(2947), + [anon_sym___thread] = ACTIONS(2947), + [anon_sym_const] = ACTIONS(2947), + [anon_sym_constexpr] = ACTIONS(2947), + [anon_sym_volatile] = ACTIONS(2947), + [anon_sym_restrict] = ACTIONS(2947), + [anon_sym___restrict__] = ACTIONS(2947), + [anon_sym__Atomic] = ACTIONS(2947), + [anon_sym__Noreturn] = ACTIONS(2947), + [anon_sym_noreturn] = ACTIONS(2947), + [anon_sym__Nonnull] = ACTIONS(2947), + [anon_sym_mutable] = ACTIONS(2947), + [anon_sym_constinit] = ACTIONS(2947), + [anon_sym_consteval] = ACTIONS(2947), + [anon_sym_alignas] = ACTIONS(2947), + [anon_sym__Alignas] = ACTIONS(2947), + [sym_primitive_type] = ACTIONS(2947), + [anon_sym_enum] = ACTIONS(2947), + [anon_sym_class] = ACTIONS(2947), + [anon_sym_struct] = ACTIONS(2947), + [anon_sym_union] = ACTIONS(2947), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2947), + [anon_sym_decltype] = ACTIONS(2947), + [anon_sym_explicit] = ACTIONS(2947), + [anon_sym_typename] = ACTIONS(2947), + [anon_sym_private] = ACTIONS(2947), + [anon_sym_template] = ACTIONS(2947), + [anon_sym_operator] = ACTIONS(2947), + [anon_sym_friend] = ACTIONS(2947), + [anon_sym_public] = ACTIONS(2947), + [anon_sym_protected] = ACTIONS(2947), + [anon_sym_static_assert] = ACTIONS(2947), }, - [1769] = { + [1819] = { [sym_identifier] = ACTIONS(5569), [aux_sym_preproc_def_token1] = ACTIONS(5569), [aux_sym_preproc_if_token1] = ACTIONS(5569), @@ -252236,81 +257496,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(5569), [anon_sym_static_assert] = ACTIONS(5569), }, - [1770] = { - [sym_identifier] = ACTIONS(5456), - [aux_sym_preproc_def_token1] = ACTIONS(5456), - [aux_sym_preproc_if_token1] = ACTIONS(5456), - [aux_sym_preproc_if_token2] = ACTIONS(5456), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5456), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5456), - [aux_sym_preproc_else_token1] = ACTIONS(5456), - [aux_sym_preproc_elif_token1] = ACTIONS(5456), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5456), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5456), - [sym_preproc_directive] = ACTIONS(5456), - [anon_sym_LPAREN2] = ACTIONS(5458), - [anon_sym_TILDE] = ACTIONS(5458), - [anon_sym_STAR] = ACTIONS(5458), - [anon_sym_AMP_AMP] = ACTIONS(5458), - [anon_sym_AMP] = ACTIONS(5456), - [anon_sym_SEMI] = ACTIONS(5458), - [anon_sym___extension__] = ACTIONS(5456), - [anon_sym_typedef] = ACTIONS(5456), - [anon_sym_virtual] = ACTIONS(5456), - [anon_sym_extern] = ACTIONS(5456), - [anon_sym___attribute__] = ACTIONS(5456), - [anon_sym___attribute] = ACTIONS(5456), - [anon_sym_using] = ACTIONS(5456), - [anon_sym_COLON_COLON] = ACTIONS(5458), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5458), - [anon_sym___declspec] = ACTIONS(5456), - [anon_sym___based] = ACTIONS(5456), - [anon_sym_signed] = ACTIONS(5456), - [anon_sym_unsigned] = ACTIONS(5456), - [anon_sym_long] = ACTIONS(5456), - [anon_sym_short] = ACTIONS(5456), - [anon_sym_LBRACK] = ACTIONS(5456), - [anon_sym_static] = ACTIONS(5456), - [anon_sym_register] = ACTIONS(5456), - [anon_sym_inline] = ACTIONS(5456), - [anon_sym___inline] = ACTIONS(5456), - [anon_sym___inline__] = ACTIONS(5456), - [anon_sym___forceinline] = ACTIONS(5456), - [anon_sym_thread_local] = ACTIONS(5456), - [anon_sym___thread] = ACTIONS(5456), - [anon_sym_const] = ACTIONS(5456), - [anon_sym_constexpr] = ACTIONS(5456), - [anon_sym_volatile] = ACTIONS(5456), - [anon_sym_restrict] = ACTIONS(5456), - [anon_sym___restrict__] = ACTIONS(5456), - [anon_sym__Atomic] = ACTIONS(5456), - [anon_sym__Noreturn] = ACTIONS(5456), - [anon_sym_noreturn] = ACTIONS(5456), - [anon_sym__Nonnull] = ACTIONS(5456), - [anon_sym_mutable] = ACTIONS(5456), - [anon_sym_constinit] = ACTIONS(5456), - [anon_sym_consteval] = ACTIONS(5456), - [anon_sym_alignas] = ACTIONS(5456), - [anon_sym__Alignas] = ACTIONS(5456), - [sym_primitive_type] = ACTIONS(5456), - [anon_sym_enum] = ACTIONS(5456), - [anon_sym_class] = ACTIONS(5456), - [anon_sym_struct] = ACTIONS(5456), - [anon_sym_union] = ACTIONS(5456), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5456), - [anon_sym_decltype] = ACTIONS(5456), - [anon_sym_explicit] = ACTIONS(5456), - [anon_sym_typename] = ACTIONS(5456), - [anon_sym_private] = ACTIONS(5456), - [anon_sym_template] = ACTIONS(5456), - [anon_sym_operator] = ACTIONS(5456), - [anon_sym_friend] = ACTIONS(5456), - [anon_sym_public] = ACTIONS(5456), - [anon_sym_protected] = ACTIONS(5456), - [anon_sym_static_assert] = ACTIONS(5456), - }, - [1771] = { + [1820] = { [sym_identifier] = ACTIONS(5573), [aux_sym_preproc_def_token1] = ACTIONS(5573), [aux_sym_preproc_if_token1] = ACTIONS(5573), @@ -252384,451 +257570,155 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(5573), [anon_sym_static_assert] = ACTIONS(5573), }, - [1772] = { - [sym_identifier] = ACTIONS(3083), - [aux_sym_preproc_def_token1] = ACTIONS(3083), - [aux_sym_preproc_if_token1] = ACTIONS(3083), - [aux_sym_preproc_if_token2] = ACTIONS(3083), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3083), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3083), - [aux_sym_preproc_else_token1] = ACTIONS(3083), - [aux_sym_preproc_elif_token1] = ACTIONS(3083), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3083), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3083), - [sym_preproc_directive] = ACTIONS(3083), - [anon_sym_LPAREN2] = ACTIONS(3085), - [anon_sym_TILDE] = ACTIONS(3085), - [anon_sym_STAR] = ACTIONS(3085), - [anon_sym_AMP_AMP] = ACTIONS(3085), - [anon_sym_AMP] = ACTIONS(3083), - [anon_sym_SEMI] = ACTIONS(3085), - [anon_sym___extension__] = ACTIONS(3083), - [anon_sym_typedef] = ACTIONS(3083), - [anon_sym_virtual] = ACTIONS(3083), - [anon_sym_extern] = ACTIONS(3083), - [anon_sym___attribute__] = ACTIONS(3083), - [anon_sym___attribute] = ACTIONS(3083), - [anon_sym_using] = ACTIONS(3083), - [anon_sym_COLON_COLON] = ACTIONS(3085), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3085), - [anon_sym___declspec] = ACTIONS(3083), - [anon_sym___based] = ACTIONS(3083), - [anon_sym_signed] = ACTIONS(3083), - [anon_sym_unsigned] = ACTIONS(3083), - [anon_sym_long] = ACTIONS(3083), - [anon_sym_short] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(3083), - [anon_sym_static] = ACTIONS(3083), - [anon_sym_register] = ACTIONS(3083), - [anon_sym_inline] = ACTIONS(3083), - [anon_sym___inline] = ACTIONS(3083), - [anon_sym___inline__] = ACTIONS(3083), - [anon_sym___forceinline] = ACTIONS(3083), - [anon_sym_thread_local] = ACTIONS(3083), - [anon_sym___thread] = ACTIONS(3083), - [anon_sym_const] = ACTIONS(3083), - [anon_sym_constexpr] = ACTIONS(3083), - [anon_sym_volatile] = ACTIONS(3083), - [anon_sym_restrict] = ACTIONS(3083), - [anon_sym___restrict__] = ACTIONS(3083), - [anon_sym__Atomic] = ACTIONS(3083), - [anon_sym__Noreturn] = ACTIONS(3083), - [anon_sym_noreturn] = ACTIONS(3083), - [anon_sym__Nonnull] = ACTIONS(3083), - [anon_sym_mutable] = ACTIONS(3083), - [anon_sym_constinit] = ACTIONS(3083), - [anon_sym_consteval] = ACTIONS(3083), - [anon_sym_alignas] = ACTIONS(3083), - [anon_sym__Alignas] = ACTIONS(3083), - [sym_primitive_type] = ACTIONS(3083), - [anon_sym_enum] = ACTIONS(3083), - [anon_sym_class] = ACTIONS(3083), - [anon_sym_struct] = ACTIONS(3083), - [anon_sym_union] = ACTIONS(3083), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3083), - [anon_sym_decltype] = ACTIONS(3083), - [anon_sym_explicit] = ACTIONS(3083), - [anon_sym_typename] = ACTIONS(3083), - [anon_sym_private] = ACTIONS(3083), - [anon_sym_template] = ACTIONS(3083), - [anon_sym_operator] = ACTIONS(3083), - [anon_sym_friend] = ACTIONS(3083), - [anon_sym_public] = ACTIONS(3083), - [anon_sym_protected] = ACTIONS(3083), - [anon_sym_static_assert] = ACTIONS(3083), - }, - [1773] = { - [sym_identifier] = ACTIONS(5577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5579), - [anon_sym_COMMA] = ACTIONS(5579), - [anon_sym_RPAREN] = ACTIONS(5579), - [aux_sym_preproc_if_token2] = ACTIONS(5579), - [aux_sym_preproc_else_token1] = ACTIONS(5579), - [aux_sym_preproc_elif_token1] = ACTIONS(5577), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5579), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5579), - [anon_sym_LPAREN2] = ACTIONS(5579), - [anon_sym_DASH] = ACTIONS(5577), - [anon_sym_PLUS] = ACTIONS(5577), - [anon_sym_STAR] = ACTIONS(5577), - [anon_sym_SLASH] = ACTIONS(5577), - [anon_sym_PERCENT] = ACTIONS(5577), - [anon_sym_PIPE_PIPE] = ACTIONS(5579), - [anon_sym_AMP_AMP] = ACTIONS(5579), - [anon_sym_PIPE] = ACTIONS(5577), - [anon_sym_CARET] = ACTIONS(5577), - [anon_sym_AMP] = ACTIONS(5577), - [anon_sym_EQ_EQ] = ACTIONS(5579), - [anon_sym_BANG_EQ] = ACTIONS(5579), - [anon_sym_GT] = ACTIONS(5577), - [anon_sym_GT_EQ] = ACTIONS(5579), - [anon_sym_LT_EQ] = ACTIONS(5577), - [anon_sym_LT] = ACTIONS(5577), - [anon_sym_LT_LT] = ACTIONS(5577), - [anon_sym_GT_GT] = ACTIONS(5577), - [anon_sym_SEMI] = ACTIONS(5579), - [anon_sym_COLON] = ACTIONS(5579), - [anon_sym_RBRACE] = ACTIONS(5579), - [anon_sym_LBRACK] = ACTIONS(5579), - [anon_sym_RBRACK] = ACTIONS(5579), - [anon_sym_EQ] = ACTIONS(5577), - [anon_sym_QMARK] = ACTIONS(5579), - [anon_sym_STAR_EQ] = ACTIONS(5579), - [anon_sym_SLASH_EQ] = ACTIONS(5579), - [anon_sym_PERCENT_EQ] = ACTIONS(5579), - [anon_sym_PLUS_EQ] = ACTIONS(5579), - [anon_sym_DASH_EQ] = ACTIONS(5579), - [anon_sym_LT_LT_EQ] = ACTIONS(5579), - [anon_sym_GT_GT_EQ] = ACTIONS(5579), - [anon_sym_AMP_EQ] = ACTIONS(5579), - [anon_sym_CARET_EQ] = ACTIONS(5579), - [anon_sym_PIPE_EQ] = ACTIONS(5579), - [anon_sym_and_eq] = ACTIONS(5577), - [anon_sym_or_eq] = ACTIONS(5577), - [anon_sym_xor_eq] = ACTIONS(5577), - [anon_sym_LT_EQ_GT] = ACTIONS(5579), - [anon_sym_or] = ACTIONS(5577), - [anon_sym_and] = ACTIONS(5577), - [anon_sym_bitor] = ACTIONS(5577), - [anon_sym_xor] = ACTIONS(5577), - [anon_sym_bitand] = ACTIONS(5577), - [anon_sym_not_eq] = ACTIONS(5577), - [anon_sym_DASH_DASH] = ACTIONS(5579), - [anon_sym_PLUS_PLUS] = ACTIONS(5579), - [anon_sym_DOT] = ACTIONS(5577), - [anon_sym_DOT_STAR] = ACTIONS(5579), - [anon_sym_DASH_GT] = ACTIONS(5579), - [anon_sym_L_DQUOTE] = ACTIONS(5579), - [anon_sym_u_DQUOTE] = ACTIONS(5579), - [anon_sym_U_DQUOTE] = ACTIONS(5579), - [anon_sym_u8_DQUOTE] = ACTIONS(5579), - [anon_sym_DQUOTE] = ACTIONS(5579), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5579), - [anon_sym_LR_DQUOTE] = ACTIONS(5579), - [anon_sym_uR_DQUOTE] = ACTIONS(5579), - [anon_sym_UR_DQUOTE] = ACTIONS(5579), - [anon_sym_u8R_DQUOTE] = ACTIONS(5579), - [sym_literal_suffix] = ACTIONS(5577), - }, - [1774] = { - [sym_identifier] = ACTIONS(2863), - [aux_sym_preproc_def_token1] = ACTIONS(2863), - [aux_sym_preproc_if_token1] = ACTIONS(2863), - [aux_sym_preproc_if_token2] = ACTIONS(2863), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2863), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2863), - [aux_sym_preproc_else_token1] = ACTIONS(2863), - [aux_sym_preproc_elif_token1] = ACTIONS(2863), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2863), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2863), - [sym_preproc_directive] = ACTIONS(2863), - [anon_sym_LPAREN2] = ACTIONS(2865), - [anon_sym_TILDE] = ACTIONS(2865), - [anon_sym_STAR] = ACTIONS(2865), - [anon_sym_AMP_AMP] = ACTIONS(2865), - [anon_sym_AMP] = ACTIONS(2863), - [anon_sym_SEMI] = ACTIONS(2865), - [anon_sym___extension__] = ACTIONS(2863), - [anon_sym_typedef] = ACTIONS(2863), - [anon_sym_virtual] = ACTIONS(2863), - [anon_sym_extern] = ACTIONS(2863), - [anon_sym___attribute__] = ACTIONS(2863), - [anon_sym___attribute] = ACTIONS(2863), - [anon_sym_using] = ACTIONS(2863), - [anon_sym_COLON_COLON] = ACTIONS(2865), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2865), - [anon_sym___declspec] = ACTIONS(2863), - [anon_sym___based] = ACTIONS(2863), - [anon_sym_signed] = ACTIONS(2863), - [anon_sym_unsigned] = ACTIONS(2863), - [anon_sym_long] = ACTIONS(2863), - [anon_sym_short] = ACTIONS(2863), - [anon_sym_LBRACK] = ACTIONS(2863), - [anon_sym_static] = ACTIONS(2863), - [anon_sym_register] = ACTIONS(2863), - [anon_sym_inline] = ACTIONS(2863), - [anon_sym___inline] = ACTIONS(2863), - [anon_sym___inline__] = ACTIONS(2863), - [anon_sym___forceinline] = ACTIONS(2863), - [anon_sym_thread_local] = ACTIONS(2863), - [anon_sym___thread] = ACTIONS(2863), - [anon_sym_const] = ACTIONS(2863), - [anon_sym_constexpr] = ACTIONS(2863), - [anon_sym_volatile] = ACTIONS(2863), - [anon_sym_restrict] = ACTIONS(2863), - [anon_sym___restrict__] = ACTIONS(2863), - [anon_sym__Atomic] = ACTIONS(2863), - [anon_sym__Noreturn] = ACTIONS(2863), - [anon_sym_noreturn] = ACTIONS(2863), - [anon_sym__Nonnull] = ACTIONS(2863), - [anon_sym_mutable] = ACTIONS(2863), - [anon_sym_constinit] = ACTIONS(2863), - [anon_sym_consteval] = ACTIONS(2863), - [anon_sym_alignas] = ACTIONS(2863), - [anon_sym__Alignas] = ACTIONS(2863), - [sym_primitive_type] = ACTIONS(2863), - [anon_sym_enum] = ACTIONS(2863), - [anon_sym_class] = ACTIONS(2863), - [anon_sym_struct] = ACTIONS(2863), - [anon_sym_union] = ACTIONS(2863), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2863), - [anon_sym_decltype] = ACTIONS(2863), - [anon_sym_explicit] = ACTIONS(2863), - [anon_sym_typename] = ACTIONS(2863), - [anon_sym_private] = ACTIONS(2863), - [anon_sym_template] = ACTIONS(2863), - [anon_sym_operator] = ACTIONS(2863), - [anon_sym_friend] = ACTIONS(2863), - [anon_sym_public] = ACTIONS(2863), - [anon_sym_protected] = ACTIONS(2863), - [anon_sym_static_assert] = ACTIONS(2863), - }, - [1775] = { - [sym_identifier] = ACTIONS(3112), - [aux_sym_preproc_def_token1] = ACTIONS(3112), - [aux_sym_preproc_if_token1] = ACTIONS(3112), - [aux_sym_preproc_if_token2] = ACTIONS(3112), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3112), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3112), - [aux_sym_preproc_else_token1] = ACTIONS(3112), - [aux_sym_preproc_elif_token1] = ACTIONS(3112), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3112), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3112), - [sym_preproc_directive] = ACTIONS(3112), - [anon_sym_LPAREN2] = ACTIONS(3114), - [anon_sym_TILDE] = ACTIONS(3114), - [anon_sym_STAR] = ACTIONS(3114), - [anon_sym_AMP_AMP] = ACTIONS(3114), - [anon_sym_AMP] = ACTIONS(3112), - [anon_sym_SEMI] = ACTIONS(3114), - [anon_sym___extension__] = ACTIONS(3112), - [anon_sym_typedef] = ACTIONS(3112), - [anon_sym_virtual] = ACTIONS(3112), - [anon_sym_extern] = ACTIONS(3112), - [anon_sym___attribute__] = ACTIONS(3112), - [anon_sym___attribute] = ACTIONS(3112), - [anon_sym_using] = ACTIONS(3112), - [anon_sym_COLON_COLON] = ACTIONS(3114), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3114), - [anon_sym___declspec] = ACTIONS(3112), - [anon_sym___based] = ACTIONS(3112), - [anon_sym_signed] = ACTIONS(3112), - [anon_sym_unsigned] = ACTIONS(3112), - [anon_sym_long] = ACTIONS(3112), - [anon_sym_short] = ACTIONS(3112), - [anon_sym_LBRACK] = ACTIONS(3112), - [anon_sym_static] = ACTIONS(3112), - [anon_sym_register] = ACTIONS(3112), - [anon_sym_inline] = ACTIONS(3112), - [anon_sym___inline] = ACTIONS(3112), - [anon_sym___inline__] = ACTIONS(3112), - [anon_sym___forceinline] = ACTIONS(3112), - [anon_sym_thread_local] = ACTIONS(3112), - [anon_sym___thread] = ACTIONS(3112), - [anon_sym_const] = ACTIONS(3112), - [anon_sym_constexpr] = ACTIONS(3112), - [anon_sym_volatile] = ACTIONS(3112), - [anon_sym_restrict] = ACTIONS(3112), - [anon_sym___restrict__] = ACTIONS(3112), - [anon_sym__Atomic] = ACTIONS(3112), - [anon_sym__Noreturn] = ACTIONS(3112), - [anon_sym_noreturn] = ACTIONS(3112), - [anon_sym__Nonnull] = ACTIONS(3112), - [anon_sym_mutable] = ACTIONS(3112), - [anon_sym_constinit] = ACTIONS(3112), - [anon_sym_consteval] = ACTIONS(3112), - [anon_sym_alignas] = ACTIONS(3112), - [anon_sym__Alignas] = ACTIONS(3112), - [sym_primitive_type] = ACTIONS(3112), - [anon_sym_enum] = ACTIONS(3112), - [anon_sym_class] = ACTIONS(3112), - [anon_sym_struct] = ACTIONS(3112), - [anon_sym_union] = ACTIONS(3112), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3112), - [anon_sym_decltype] = ACTIONS(3112), - [anon_sym_explicit] = ACTIONS(3112), - [anon_sym_typename] = ACTIONS(3112), - [anon_sym_private] = ACTIONS(3112), - [anon_sym_template] = ACTIONS(3112), - [anon_sym_operator] = ACTIONS(3112), - [anon_sym_friend] = ACTIONS(3112), - [anon_sym_public] = ACTIONS(3112), - [anon_sym_protected] = ACTIONS(3112), - [anon_sym_static_assert] = ACTIONS(3112), - }, - [1776] = { - [sym_identifier] = ACTIONS(2919), - [aux_sym_preproc_def_token1] = ACTIONS(2919), - [aux_sym_preproc_if_token1] = ACTIONS(2919), - [aux_sym_preproc_if_token2] = ACTIONS(2919), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2919), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2919), - [aux_sym_preproc_else_token1] = ACTIONS(2919), - [aux_sym_preproc_elif_token1] = ACTIONS(2919), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2919), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2919), - [sym_preproc_directive] = ACTIONS(2919), - [anon_sym_LPAREN2] = ACTIONS(2921), - [anon_sym_TILDE] = ACTIONS(2921), - [anon_sym_STAR] = ACTIONS(2921), - [anon_sym_AMP_AMP] = ACTIONS(2921), - [anon_sym_AMP] = ACTIONS(2919), - [anon_sym_SEMI] = ACTIONS(2921), - [anon_sym___extension__] = ACTIONS(2919), - [anon_sym_typedef] = ACTIONS(2919), - [anon_sym_virtual] = ACTIONS(2919), - [anon_sym_extern] = ACTIONS(2919), - [anon_sym___attribute__] = ACTIONS(2919), - [anon_sym___attribute] = ACTIONS(2919), - [anon_sym_using] = ACTIONS(2919), - [anon_sym_COLON_COLON] = ACTIONS(2921), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2921), - [anon_sym___declspec] = ACTIONS(2919), - [anon_sym___based] = ACTIONS(2919), - [anon_sym_signed] = ACTIONS(2919), - [anon_sym_unsigned] = ACTIONS(2919), - [anon_sym_long] = ACTIONS(2919), - [anon_sym_short] = ACTIONS(2919), - [anon_sym_LBRACK] = ACTIONS(2919), - [anon_sym_static] = ACTIONS(2919), - [anon_sym_register] = ACTIONS(2919), - [anon_sym_inline] = ACTIONS(2919), - [anon_sym___inline] = ACTIONS(2919), - [anon_sym___inline__] = ACTIONS(2919), - [anon_sym___forceinline] = ACTIONS(2919), - [anon_sym_thread_local] = ACTIONS(2919), - [anon_sym___thread] = ACTIONS(2919), - [anon_sym_const] = ACTIONS(2919), - [anon_sym_constexpr] = ACTIONS(2919), - [anon_sym_volatile] = ACTIONS(2919), - [anon_sym_restrict] = ACTIONS(2919), - [anon_sym___restrict__] = ACTIONS(2919), - [anon_sym__Atomic] = ACTIONS(2919), - [anon_sym__Noreturn] = ACTIONS(2919), - [anon_sym_noreturn] = ACTIONS(2919), - [anon_sym__Nonnull] = ACTIONS(2919), - [anon_sym_mutable] = ACTIONS(2919), - [anon_sym_constinit] = ACTIONS(2919), - [anon_sym_consteval] = ACTIONS(2919), - [anon_sym_alignas] = ACTIONS(2919), - [anon_sym__Alignas] = ACTIONS(2919), - [sym_primitive_type] = ACTIONS(2919), - [anon_sym_enum] = ACTIONS(2919), - [anon_sym_class] = ACTIONS(2919), - [anon_sym_struct] = ACTIONS(2919), - [anon_sym_union] = ACTIONS(2919), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2919), - [anon_sym_decltype] = ACTIONS(2919), - [anon_sym_explicit] = ACTIONS(2919), - [anon_sym_typename] = ACTIONS(2919), - [anon_sym_private] = ACTIONS(2919), - [anon_sym_template] = ACTIONS(2919), - [anon_sym_operator] = ACTIONS(2919), - [anon_sym_friend] = ACTIONS(2919), - [anon_sym_public] = ACTIONS(2919), - [anon_sym_protected] = ACTIONS(2919), - [anon_sym_static_assert] = ACTIONS(2919), - }, - [1777] = { - [sym_identifier] = ACTIONS(2923), - [aux_sym_preproc_def_token1] = ACTIONS(2923), - [aux_sym_preproc_if_token1] = ACTIONS(2923), - [aux_sym_preproc_if_token2] = ACTIONS(2923), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2923), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2923), - [aux_sym_preproc_else_token1] = ACTIONS(2923), - [aux_sym_preproc_elif_token1] = ACTIONS(2923), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2923), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2923), - [sym_preproc_directive] = ACTIONS(2923), - [anon_sym_LPAREN2] = ACTIONS(2925), - [anon_sym_TILDE] = ACTIONS(2925), - [anon_sym_STAR] = ACTIONS(2925), - [anon_sym_AMP_AMP] = ACTIONS(2925), - [anon_sym_AMP] = ACTIONS(2923), - [anon_sym_SEMI] = ACTIONS(2925), - [anon_sym___extension__] = ACTIONS(2923), - [anon_sym_typedef] = ACTIONS(2923), - [anon_sym_virtual] = ACTIONS(2923), - [anon_sym_extern] = ACTIONS(2923), - [anon_sym___attribute__] = ACTIONS(2923), - [anon_sym___attribute] = ACTIONS(2923), - [anon_sym_using] = ACTIONS(2923), - [anon_sym_COLON_COLON] = ACTIONS(2925), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2925), - [anon_sym___declspec] = ACTIONS(2923), - [anon_sym___based] = ACTIONS(2923), - [anon_sym_signed] = ACTIONS(2923), - [anon_sym_unsigned] = ACTIONS(2923), - [anon_sym_long] = ACTIONS(2923), - [anon_sym_short] = ACTIONS(2923), - [anon_sym_LBRACK] = ACTIONS(2923), - [anon_sym_static] = ACTIONS(2923), - [anon_sym_register] = ACTIONS(2923), - [anon_sym_inline] = ACTIONS(2923), - [anon_sym___inline] = ACTIONS(2923), - [anon_sym___inline__] = ACTIONS(2923), - [anon_sym___forceinline] = ACTIONS(2923), - [anon_sym_thread_local] = ACTIONS(2923), - [anon_sym___thread] = ACTIONS(2923), - [anon_sym_const] = ACTIONS(2923), - [anon_sym_constexpr] = ACTIONS(2923), - [anon_sym_volatile] = ACTIONS(2923), - [anon_sym_restrict] = ACTIONS(2923), - [anon_sym___restrict__] = ACTIONS(2923), - [anon_sym__Atomic] = ACTIONS(2923), - [anon_sym__Noreturn] = ACTIONS(2923), - [anon_sym_noreturn] = ACTIONS(2923), - [anon_sym__Nonnull] = ACTIONS(2923), - [anon_sym_mutable] = ACTIONS(2923), - [anon_sym_constinit] = ACTIONS(2923), - [anon_sym_consteval] = ACTIONS(2923), - [anon_sym_alignas] = ACTIONS(2923), - [anon_sym__Alignas] = ACTIONS(2923), - [sym_primitive_type] = ACTIONS(2923), - [anon_sym_enum] = ACTIONS(2923), - [anon_sym_class] = ACTIONS(2923), - [anon_sym_struct] = ACTIONS(2923), - [anon_sym_union] = ACTIONS(2923), + [1821] = { + [sym_identifier] = ACTIONS(5573), + [aux_sym_preproc_def_token1] = ACTIONS(5573), + [aux_sym_preproc_if_token1] = ACTIONS(5573), + [aux_sym_preproc_if_token2] = ACTIONS(5573), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5573), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5573), + [aux_sym_preproc_else_token1] = ACTIONS(5573), + [aux_sym_preproc_elif_token1] = ACTIONS(5573), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5573), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5573), + [sym_preproc_directive] = ACTIONS(5573), + [anon_sym_LPAREN2] = ACTIONS(5575), + [anon_sym_TILDE] = ACTIONS(5575), + [anon_sym_STAR] = ACTIONS(5575), + [anon_sym_AMP_AMP] = ACTIONS(5575), + [anon_sym_AMP] = ACTIONS(5573), + [anon_sym_SEMI] = ACTIONS(5575), + [anon_sym___extension__] = ACTIONS(5573), + [anon_sym_typedef] = ACTIONS(5573), + [anon_sym_virtual] = ACTIONS(5573), + [anon_sym_extern] = ACTIONS(5573), + [anon_sym___attribute__] = ACTIONS(5573), + [anon_sym___attribute] = ACTIONS(5573), + [anon_sym_using] = ACTIONS(5573), + [anon_sym_COLON_COLON] = ACTIONS(5575), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5575), + [anon_sym___declspec] = ACTIONS(5573), + [anon_sym___based] = ACTIONS(5573), + [anon_sym_signed] = ACTIONS(5573), + [anon_sym_unsigned] = ACTIONS(5573), + [anon_sym_long] = ACTIONS(5573), + [anon_sym_short] = ACTIONS(5573), + [anon_sym_LBRACK] = ACTIONS(5573), + [anon_sym_static] = ACTIONS(5573), + [anon_sym_register] = ACTIONS(5573), + [anon_sym_inline] = ACTIONS(5573), + [anon_sym___inline] = ACTIONS(5573), + [anon_sym___inline__] = ACTIONS(5573), + [anon_sym___forceinline] = ACTIONS(5573), + [anon_sym_thread_local] = ACTIONS(5573), + [anon_sym___thread] = ACTIONS(5573), + [anon_sym_const] = ACTIONS(5573), + [anon_sym_constexpr] = ACTIONS(5573), + [anon_sym_volatile] = ACTIONS(5573), + [anon_sym_restrict] = ACTIONS(5573), + [anon_sym___restrict__] = ACTIONS(5573), + [anon_sym__Atomic] = ACTIONS(5573), + [anon_sym__Noreturn] = ACTIONS(5573), + [anon_sym_noreturn] = ACTIONS(5573), + [anon_sym__Nonnull] = ACTIONS(5573), + [anon_sym_mutable] = ACTIONS(5573), + [anon_sym_constinit] = ACTIONS(5573), + [anon_sym_consteval] = ACTIONS(5573), + [anon_sym_alignas] = ACTIONS(5573), + [anon_sym__Alignas] = ACTIONS(5573), + [sym_primitive_type] = ACTIONS(5573), + [anon_sym_enum] = ACTIONS(5573), + [anon_sym_class] = ACTIONS(5573), + [anon_sym_struct] = ACTIONS(5573), + [anon_sym_union] = ACTIONS(5573), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2923), - [anon_sym_decltype] = ACTIONS(2923), - [anon_sym_explicit] = ACTIONS(2923), - [anon_sym_typename] = ACTIONS(2923), - [anon_sym_private] = ACTIONS(2923), - [anon_sym_template] = ACTIONS(2923), - [anon_sym_operator] = ACTIONS(2923), - [anon_sym_friend] = ACTIONS(2923), - [anon_sym_public] = ACTIONS(2923), - [anon_sym_protected] = ACTIONS(2923), - [anon_sym_static_assert] = ACTIONS(2923), + [sym_auto] = ACTIONS(5573), + [anon_sym_decltype] = ACTIONS(5573), + [anon_sym_explicit] = ACTIONS(5573), + [anon_sym_typename] = ACTIONS(5573), + [anon_sym_private] = ACTIONS(5573), + [anon_sym_template] = ACTIONS(5573), + [anon_sym_operator] = ACTIONS(5573), + [anon_sym_friend] = ACTIONS(5573), + [anon_sym_public] = ACTIONS(5573), + [anon_sym_protected] = ACTIONS(5573), + [anon_sym_static_assert] = ACTIONS(5573), }, - [1778] = { + [1822] = { + [sym_identifier] = ACTIONS(5577), + [aux_sym_preproc_def_token1] = ACTIONS(5577), + [aux_sym_preproc_if_token1] = ACTIONS(5577), + [aux_sym_preproc_if_token2] = ACTIONS(5577), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5577), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5577), + [aux_sym_preproc_else_token1] = ACTIONS(5577), + [aux_sym_preproc_elif_token1] = ACTIONS(5577), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5577), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5577), + [sym_preproc_directive] = ACTIONS(5577), + [anon_sym_LPAREN2] = ACTIONS(5579), + [anon_sym_TILDE] = ACTIONS(5579), + [anon_sym_STAR] = ACTIONS(5579), + [anon_sym_AMP_AMP] = ACTIONS(5579), + [anon_sym_AMP] = ACTIONS(5577), + [anon_sym_SEMI] = ACTIONS(5579), + [anon_sym___extension__] = ACTIONS(5577), + [anon_sym_typedef] = ACTIONS(5577), + [anon_sym_virtual] = ACTIONS(5577), + [anon_sym_extern] = ACTIONS(5577), + [anon_sym___attribute__] = ACTIONS(5577), + [anon_sym___attribute] = ACTIONS(5577), + [anon_sym_using] = ACTIONS(5577), + [anon_sym_COLON_COLON] = ACTIONS(5579), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5579), + [anon_sym___declspec] = ACTIONS(5577), + [anon_sym___based] = ACTIONS(5577), + [anon_sym_signed] = ACTIONS(5577), + [anon_sym_unsigned] = ACTIONS(5577), + [anon_sym_long] = ACTIONS(5577), + [anon_sym_short] = ACTIONS(5577), + [anon_sym_LBRACK] = ACTIONS(5577), + [anon_sym_static] = ACTIONS(5577), + [anon_sym_register] = ACTIONS(5577), + [anon_sym_inline] = ACTIONS(5577), + [anon_sym___inline] = ACTIONS(5577), + [anon_sym___inline__] = ACTIONS(5577), + [anon_sym___forceinline] = ACTIONS(5577), + [anon_sym_thread_local] = ACTIONS(5577), + [anon_sym___thread] = ACTIONS(5577), + [anon_sym_const] = ACTIONS(5577), + [anon_sym_constexpr] = ACTIONS(5577), + [anon_sym_volatile] = ACTIONS(5577), + [anon_sym_restrict] = ACTIONS(5577), + [anon_sym___restrict__] = ACTIONS(5577), + [anon_sym__Atomic] = ACTIONS(5577), + [anon_sym__Noreturn] = ACTIONS(5577), + [anon_sym_noreturn] = ACTIONS(5577), + [anon_sym__Nonnull] = ACTIONS(5577), + [anon_sym_mutable] = ACTIONS(5577), + [anon_sym_constinit] = ACTIONS(5577), + [anon_sym_consteval] = ACTIONS(5577), + [anon_sym_alignas] = ACTIONS(5577), + [anon_sym__Alignas] = ACTIONS(5577), + [sym_primitive_type] = ACTIONS(5577), + [anon_sym_enum] = ACTIONS(5577), + [anon_sym_class] = ACTIONS(5577), + [anon_sym_struct] = ACTIONS(5577), + [anon_sym_union] = ACTIONS(5577), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5577), + [anon_sym_decltype] = ACTIONS(5577), + [anon_sym_explicit] = ACTIONS(5577), + [anon_sym_typename] = ACTIONS(5577), + [anon_sym_private] = ACTIONS(5577), + [anon_sym_template] = ACTIONS(5577), + [anon_sym_operator] = ACTIONS(5577), + [anon_sym_friend] = ACTIONS(5577), + [anon_sym_public] = ACTIONS(5577), + [anon_sym_protected] = ACTIONS(5577), + [anon_sym_static_assert] = ACTIONS(5577), + }, + [1823] = { [sym_identifier] = ACTIONS(5581), [aux_sym_preproc_def_token1] = ACTIONS(5581), [aux_sym_preproc_if_token1] = ACTIONS(5581), @@ -252902,7 +257792,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(5581), [anon_sym_static_assert] = ACTIONS(5581), }, - [1779] = { + [1824] = { + [sym_identifier] = ACTIONS(2951), + [aux_sym_preproc_def_token1] = ACTIONS(2951), + [aux_sym_preproc_if_token1] = ACTIONS(2951), + [aux_sym_preproc_if_token2] = ACTIONS(2951), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2951), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2951), + [aux_sym_preproc_else_token1] = ACTIONS(2951), + [aux_sym_preproc_elif_token1] = ACTIONS(2951), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2951), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2951), + [sym_preproc_directive] = ACTIONS(2951), + [anon_sym_LPAREN2] = ACTIONS(2953), + [anon_sym_TILDE] = ACTIONS(2953), + [anon_sym_STAR] = ACTIONS(2953), + [anon_sym_AMP_AMP] = ACTIONS(2953), + [anon_sym_AMP] = ACTIONS(2951), + [anon_sym_SEMI] = ACTIONS(2953), + [anon_sym___extension__] = ACTIONS(2951), + [anon_sym_typedef] = ACTIONS(2951), + [anon_sym_virtual] = ACTIONS(2951), + [anon_sym_extern] = ACTIONS(2951), + [anon_sym___attribute__] = ACTIONS(2951), + [anon_sym___attribute] = ACTIONS(2951), + [anon_sym_using] = ACTIONS(2951), + [anon_sym_COLON_COLON] = ACTIONS(2953), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2953), + [anon_sym___declspec] = ACTIONS(2951), + [anon_sym___based] = ACTIONS(2951), + [anon_sym_signed] = ACTIONS(2951), + [anon_sym_unsigned] = ACTIONS(2951), + [anon_sym_long] = ACTIONS(2951), + [anon_sym_short] = ACTIONS(2951), + [anon_sym_LBRACK] = ACTIONS(2951), + [anon_sym_static] = ACTIONS(2951), + [anon_sym_register] = ACTIONS(2951), + [anon_sym_inline] = ACTIONS(2951), + [anon_sym___inline] = ACTIONS(2951), + [anon_sym___inline__] = ACTIONS(2951), + [anon_sym___forceinline] = ACTIONS(2951), + [anon_sym_thread_local] = ACTIONS(2951), + [anon_sym___thread] = ACTIONS(2951), + [anon_sym_const] = ACTIONS(2951), + [anon_sym_constexpr] = ACTIONS(2951), + [anon_sym_volatile] = ACTIONS(2951), + [anon_sym_restrict] = ACTIONS(2951), + [anon_sym___restrict__] = ACTIONS(2951), + [anon_sym__Atomic] = ACTIONS(2951), + [anon_sym__Noreturn] = ACTIONS(2951), + [anon_sym_noreturn] = ACTIONS(2951), + [anon_sym__Nonnull] = ACTIONS(2951), + [anon_sym_mutable] = ACTIONS(2951), + [anon_sym_constinit] = ACTIONS(2951), + [anon_sym_consteval] = ACTIONS(2951), + [anon_sym_alignas] = ACTIONS(2951), + [anon_sym__Alignas] = ACTIONS(2951), + [sym_primitive_type] = ACTIONS(2951), + [anon_sym_enum] = ACTIONS(2951), + [anon_sym_class] = ACTIONS(2951), + [anon_sym_struct] = ACTIONS(2951), + [anon_sym_union] = ACTIONS(2951), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2951), + [anon_sym_decltype] = ACTIONS(2951), + [anon_sym_explicit] = ACTIONS(2951), + [anon_sym_typename] = ACTIONS(2951), + [anon_sym_private] = ACTIONS(2951), + [anon_sym_template] = ACTIONS(2951), + [anon_sym_operator] = ACTIONS(2951), + [anon_sym_friend] = ACTIONS(2951), + [anon_sym_public] = ACTIONS(2951), + [anon_sym_protected] = ACTIONS(2951), + [anon_sym_static_assert] = ACTIONS(2951), + }, + [1825] = { [sym_identifier] = ACTIONS(5585), [aux_sym_preproc_def_token1] = ACTIONS(5585), [aux_sym_preproc_if_token1] = ACTIONS(5585), @@ -252976,341 +257940,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(5585), [anon_sym_static_assert] = ACTIONS(5585), }, - [1780] = { - [sym__declaration_modifiers] = STATE(2061), - [sym__declaration_specifiers] = STATE(3966), - [sym_attribute_specifier] = STATE(2061), - [sym_attribute_declaration] = STATE(2061), - [sym_ms_declspec_modifier] = STATE(2061), - [sym_storage_class_specifier] = STATE(2061), - [sym_type_qualifier] = STATE(2061), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_parameter_declaration] = STATE(7758), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym_dependent_type] = STATE(2523), - [sym_optional_parameter_declaration] = STATE(7758), - [sym_variadic_parameter_declaration] = STATE(7758), - [sym_template_type] = STATE(2406), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(6606), - [sym_qualified_type_identifier] = STATE(3015), - [aux_sym__declaration_specifiers_repeat1] = STATE(2061), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [sym_identifier] = ACTIONS(5010), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1878), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5020), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2999), - [anon_sym_enum] = ACTIONS(1884), - [anon_sym_class] = ACTIONS(1886), - [anon_sym_struct] = ACTIONS(1888), - [anon_sym_union] = ACTIONS(1890), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(1914), - [anon_sym_template] = ACTIONS(1452), - }, - [1781] = { - [sym_identifier] = ACTIONS(2927), - [aux_sym_preproc_def_token1] = ACTIONS(2927), - [aux_sym_preproc_if_token1] = ACTIONS(2927), - [aux_sym_preproc_if_token2] = ACTIONS(2927), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2927), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2927), - [aux_sym_preproc_else_token1] = ACTIONS(2927), - [aux_sym_preproc_elif_token1] = ACTIONS(2927), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2927), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2927), - [sym_preproc_directive] = ACTIONS(2927), - [anon_sym_LPAREN2] = ACTIONS(2929), - [anon_sym_TILDE] = ACTIONS(2929), - [anon_sym_STAR] = ACTIONS(2929), - [anon_sym_AMP_AMP] = ACTIONS(2929), - [anon_sym_AMP] = ACTIONS(2927), - [anon_sym_SEMI] = ACTIONS(2929), - [anon_sym___extension__] = ACTIONS(2927), - [anon_sym_typedef] = ACTIONS(2927), - [anon_sym_virtual] = ACTIONS(2927), - [anon_sym_extern] = ACTIONS(2927), - [anon_sym___attribute__] = ACTIONS(2927), - [anon_sym___attribute] = ACTIONS(2927), - [anon_sym_using] = ACTIONS(2927), - [anon_sym_COLON_COLON] = ACTIONS(2929), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2929), - [anon_sym___declspec] = ACTIONS(2927), - [anon_sym___based] = ACTIONS(2927), - [anon_sym_signed] = ACTIONS(2927), - [anon_sym_unsigned] = ACTIONS(2927), - [anon_sym_long] = ACTIONS(2927), - [anon_sym_short] = ACTIONS(2927), - [anon_sym_LBRACK] = ACTIONS(2927), - [anon_sym_static] = ACTIONS(2927), - [anon_sym_register] = ACTIONS(2927), - [anon_sym_inline] = ACTIONS(2927), - [anon_sym___inline] = ACTIONS(2927), - [anon_sym___inline__] = ACTIONS(2927), - [anon_sym___forceinline] = ACTIONS(2927), - [anon_sym_thread_local] = ACTIONS(2927), - [anon_sym___thread] = ACTIONS(2927), - [anon_sym_const] = ACTIONS(2927), - [anon_sym_constexpr] = ACTIONS(2927), - [anon_sym_volatile] = ACTIONS(2927), - [anon_sym_restrict] = ACTIONS(2927), - [anon_sym___restrict__] = ACTIONS(2927), - [anon_sym__Atomic] = ACTIONS(2927), - [anon_sym__Noreturn] = ACTIONS(2927), - [anon_sym_noreturn] = ACTIONS(2927), - [anon_sym__Nonnull] = ACTIONS(2927), - [anon_sym_mutable] = ACTIONS(2927), - [anon_sym_constinit] = ACTIONS(2927), - [anon_sym_consteval] = ACTIONS(2927), - [anon_sym_alignas] = ACTIONS(2927), - [anon_sym__Alignas] = ACTIONS(2927), - [sym_primitive_type] = ACTIONS(2927), - [anon_sym_enum] = ACTIONS(2927), - [anon_sym_class] = ACTIONS(2927), - [anon_sym_struct] = ACTIONS(2927), - [anon_sym_union] = ACTIONS(2927), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2927), - [anon_sym_decltype] = ACTIONS(2927), - [anon_sym_explicit] = ACTIONS(2927), - [anon_sym_typename] = ACTIONS(2927), - [anon_sym_private] = ACTIONS(2927), - [anon_sym_template] = ACTIONS(2927), - [anon_sym_operator] = ACTIONS(2927), - [anon_sym_friend] = ACTIONS(2927), - [anon_sym_public] = ACTIONS(2927), - [anon_sym_protected] = ACTIONS(2927), - [anon_sym_static_assert] = ACTIONS(2927), - }, - [1782] = { - [sym_identifier] = ACTIONS(2867), - [aux_sym_preproc_def_token1] = ACTIONS(2867), - [aux_sym_preproc_if_token1] = ACTIONS(2867), - [aux_sym_preproc_if_token2] = ACTIONS(2867), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), - [aux_sym_preproc_else_token1] = ACTIONS(2867), - [aux_sym_preproc_elif_token1] = ACTIONS(2867), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2867), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2867), - [sym_preproc_directive] = ACTIONS(2867), - [anon_sym_LPAREN2] = ACTIONS(2869), - [anon_sym_TILDE] = ACTIONS(2869), - [anon_sym_STAR] = ACTIONS(2869), - [anon_sym_AMP_AMP] = ACTIONS(2869), - [anon_sym_AMP] = ACTIONS(2867), - [anon_sym_SEMI] = ACTIONS(2869), - [anon_sym___extension__] = ACTIONS(2867), - [anon_sym_typedef] = ACTIONS(2867), - [anon_sym_virtual] = ACTIONS(2867), - [anon_sym_extern] = ACTIONS(2867), - [anon_sym___attribute__] = ACTIONS(2867), - [anon_sym___attribute] = ACTIONS(2867), - [anon_sym_using] = ACTIONS(2867), - [anon_sym_COLON_COLON] = ACTIONS(2869), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), - [anon_sym___declspec] = ACTIONS(2867), - [anon_sym___based] = ACTIONS(2867), - [anon_sym_signed] = ACTIONS(2867), - [anon_sym_unsigned] = ACTIONS(2867), - [anon_sym_long] = ACTIONS(2867), - [anon_sym_short] = ACTIONS(2867), - [anon_sym_LBRACK] = ACTIONS(2867), - [anon_sym_static] = ACTIONS(2867), - [anon_sym_register] = ACTIONS(2867), - [anon_sym_inline] = ACTIONS(2867), - [anon_sym___inline] = ACTIONS(2867), - [anon_sym___inline__] = ACTIONS(2867), - [anon_sym___forceinline] = ACTIONS(2867), - [anon_sym_thread_local] = ACTIONS(2867), - [anon_sym___thread] = ACTIONS(2867), - [anon_sym_const] = ACTIONS(2867), - [anon_sym_constexpr] = ACTIONS(2867), - [anon_sym_volatile] = ACTIONS(2867), - [anon_sym_restrict] = ACTIONS(2867), - [anon_sym___restrict__] = ACTIONS(2867), - [anon_sym__Atomic] = ACTIONS(2867), - [anon_sym__Noreturn] = ACTIONS(2867), - [anon_sym_noreturn] = ACTIONS(2867), - [anon_sym__Nonnull] = ACTIONS(2867), - [anon_sym_mutable] = ACTIONS(2867), - [anon_sym_constinit] = ACTIONS(2867), - [anon_sym_consteval] = ACTIONS(2867), - [anon_sym_alignas] = ACTIONS(2867), - [anon_sym__Alignas] = ACTIONS(2867), - [sym_primitive_type] = ACTIONS(2867), - [anon_sym_enum] = ACTIONS(2867), - [anon_sym_class] = ACTIONS(2867), - [anon_sym_struct] = ACTIONS(2867), - [anon_sym_union] = ACTIONS(2867), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2867), - [anon_sym_decltype] = ACTIONS(2867), - [anon_sym_explicit] = ACTIONS(2867), - [anon_sym_typename] = ACTIONS(2867), - [anon_sym_private] = ACTIONS(2867), - [anon_sym_template] = ACTIONS(2867), - [anon_sym_operator] = ACTIONS(2867), - [anon_sym_friend] = ACTIONS(2867), - [anon_sym_public] = ACTIONS(2867), - [anon_sym_protected] = ACTIONS(2867), - [anon_sym_static_assert] = ACTIONS(2867), - }, - [1783] = { - [sym__declaration_modifiers] = STATE(3282), - [sym_attribute_specifier] = STATE(3282), - [sym_attribute_declaration] = STATE(3282), - [sym_ms_declspec_modifier] = STATE(3282), - [sym_ms_based_modifier] = STATE(8682), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6271), - [sym_array_declarator] = STATE(5998), - [sym_storage_class_specifier] = STATE(3282), - [sym_type_qualifier] = STATE(3282), - [sym_alignas_qualifier] = STATE(2975), - [sym_decltype] = STATE(8601), - [sym_explicit_function_specifier] = STATE(3282), - [sym_operator_cast] = STATE(6785), - [sym__constructor_specifiers] = STATE(3282), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(8601), - [sym_template_function] = STATE(5998), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5591), - [sym_qualified_identifier] = STATE(5998), - [sym_qualified_operator_cast_identifier] = STATE(6785), - [sym_operator_name] = STATE(5998), - [aux_sym_operator_cast_definition_repeat1] = STATE(3282), - [sym_identifier] = ACTIONS(5460), - [anon_sym_LPAREN2] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2979), - [anon_sym_STAR] = ACTIONS(2981), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2983), - [anon_sym___extension__] = ACTIONS(5462), - [anon_sym_virtual] = ACTIONS(5464), - [anon_sym_extern] = ACTIONS(5466), - [anon_sym___attribute__] = ACTIONS(5468), - [anon_sym___attribute] = ACTIONS(5468), - [anon_sym_COLON_COLON] = ACTIONS(5470), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5472), - [anon_sym___declspec] = ACTIONS(5474), - [anon_sym___based] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(2995), - [anon_sym_static] = ACTIONS(5466), - [anon_sym_register] = ACTIONS(5466), - [anon_sym_inline] = ACTIONS(5466), - [anon_sym___inline] = ACTIONS(5466), - [anon_sym___inline__] = ACTIONS(5466), - [anon_sym___forceinline] = ACTIONS(5466), - [anon_sym_thread_local] = ACTIONS(5466), - [anon_sym___thread] = ACTIONS(5466), - [anon_sym_const] = ACTIONS(5462), - [anon_sym_constexpr] = ACTIONS(5462), - [anon_sym_volatile] = ACTIONS(5462), - [anon_sym_restrict] = ACTIONS(5462), - [anon_sym___restrict__] = ACTIONS(5462), - [anon_sym__Atomic] = ACTIONS(5462), - [anon_sym__Noreturn] = ACTIONS(5462), - [anon_sym_noreturn] = ACTIONS(5462), - [anon_sym__Nonnull] = ACTIONS(5462), - [anon_sym_mutable] = ACTIONS(5462), - [anon_sym_constinit] = ACTIONS(5462), - [anon_sym_consteval] = ACTIONS(5462), - [anon_sym_alignas] = ACTIONS(5476), - [anon_sym__Alignas] = ACTIONS(5476), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_operator] = ACTIONS(141), - }, - [1784] = { - [sym_decltype_auto] = STATE(1884), + [1826] = { [sym_identifier] = ACTIONS(5589), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5591), - [anon_sym_COMMA] = ACTIONS(5591), - [anon_sym_RPAREN] = ACTIONS(5591), + [aux_sym_preproc_def_token1] = ACTIONS(5589), + [aux_sym_preproc_if_token1] = ACTIONS(5589), + [aux_sym_preproc_if_token2] = ACTIONS(5589), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5589), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5589), + [aux_sym_preproc_else_token1] = ACTIONS(5589), + [aux_sym_preproc_elif_token1] = ACTIONS(5589), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5589), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5589), + [sym_preproc_directive] = ACTIONS(5589), [anon_sym_LPAREN2] = ACTIONS(5591), - [anon_sym_DASH] = ACTIONS(5589), - [anon_sym_PLUS] = ACTIONS(5589), + [anon_sym_TILDE] = ACTIONS(5591), [anon_sym_STAR] = ACTIONS(5591), - [anon_sym_SLASH] = ACTIONS(5589), - [anon_sym_PERCENT] = ACTIONS(5591), - [anon_sym_PIPE_PIPE] = ACTIONS(5591), [anon_sym_AMP_AMP] = ACTIONS(5591), - [anon_sym_PIPE] = ACTIONS(5589), - [anon_sym_CARET] = ACTIONS(5591), [anon_sym_AMP] = ACTIONS(5589), - [anon_sym_EQ_EQ] = ACTIONS(5591), - [anon_sym_BANG_EQ] = ACTIONS(5591), - [anon_sym_GT] = ACTIONS(5589), - [anon_sym_GT_EQ] = ACTIONS(5591), - [anon_sym_LT_EQ] = ACTIONS(5589), - [anon_sym_LT] = ACTIONS(5589), - [anon_sym_LT_LT] = ACTIONS(5591), - [anon_sym_GT_GT] = ACTIONS(5591), [anon_sym_SEMI] = ACTIONS(5591), [anon_sym___extension__] = ACTIONS(5589), + [anon_sym_typedef] = ACTIONS(5589), + [anon_sym_virtual] = ACTIONS(5589), + [anon_sym_extern] = ACTIONS(5589), [anon_sym___attribute__] = ACTIONS(5589), [anon_sym___attribute] = ACTIONS(5589), - [anon_sym_COLON] = ACTIONS(5591), + [anon_sym_using] = ACTIONS(5589), + [anon_sym_COLON_COLON] = ACTIONS(5591), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5591), + [anon_sym___declspec] = ACTIONS(5589), [anon_sym___based] = ACTIONS(5589), - [anon_sym_LBRACE] = ACTIONS(5591), - [anon_sym_RBRACE] = ACTIONS(5591), [anon_sym_signed] = ACTIONS(5589), [anon_sym_unsigned] = ACTIONS(5589), [anon_sym_long] = ACTIONS(5589), [anon_sym_short] = ACTIONS(5589), - [anon_sym_LBRACK] = ACTIONS(5591), - [anon_sym_RBRACK] = ACTIONS(5591), + [anon_sym_LBRACK] = ACTIONS(5589), + [anon_sym_static] = ACTIONS(5589), + [anon_sym_register] = ACTIONS(5589), + [anon_sym_inline] = ACTIONS(5589), + [anon_sym___inline] = ACTIONS(5589), + [anon_sym___inline__] = ACTIONS(5589), + [anon_sym___forceinline] = ACTIONS(5589), + [anon_sym_thread_local] = ACTIONS(5589), + [anon_sym___thread] = ACTIONS(5589), [anon_sym_const] = ACTIONS(5589), [anon_sym_constexpr] = ACTIONS(5589), [anon_sym_volatile] = ACTIONS(5589), @@ -253326,27 +257997,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(5589), [anon_sym__Alignas] = ACTIONS(5589), [sym_primitive_type] = ACTIONS(5589), - [anon_sym_QMARK] = ACTIONS(5591), - [anon_sym_LT_EQ_GT] = ACTIONS(5591), - [anon_sym_or] = ACTIONS(5589), - [anon_sym_and] = ACTIONS(5589), - [anon_sym_bitor] = ACTIONS(5589), - [anon_sym_xor] = ACTIONS(5589), - [anon_sym_bitand] = ACTIONS(5589), - [anon_sym_not_eq] = ACTIONS(5589), - [anon_sym_DASH_DASH] = ACTIONS(5591), - [anon_sym_PLUS_PLUS] = ACTIONS(5591), - [anon_sym_DOT] = ACTIONS(5589), - [anon_sym_DOT_STAR] = ACTIONS(5591), - [anon_sym_DASH_GT] = ACTIONS(5591), + [anon_sym_enum] = ACTIONS(5589), + [anon_sym_class] = ACTIONS(5589), + [anon_sym_struct] = ACTIONS(5589), + [anon_sym_union] = ACTIONS(5589), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5589), + [anon_sym_decltype] = ACTIONS(5589), + [anon_sym_explicit] = ACTIONS(5589), + [anon_sym_typename] = ACTIONS(5589), + [anon_sym_private] = ACTIONS(5589), + [anon_sym_template] = ACTIONS(5589), + [anon_sym_operator] = ACTIONS(5589), + [anon_sym_friend] = ACTIONS(5589), + [anon_sym_public] = ACTIONS(5589), + [anon_sym_protected] = ACTIONS(5589), + [anon_sym_static_assert] = ACTIONS(5589), + }, + [1827] = { + [sym_identifier] = ACTIONS(5593), + [aux_sym_preproc_def_token1] = ACTIONS(5593), + [aux_sym_preproc_if_token1] = ACTIONS(5593), + [aux_sym_preproc_if_token2] = ACTIONS(5593), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5593), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5593), + [aux_sym_preproc_else_token1] = ACTIONS(5593), + [aux_sym_preproc_elif_token1] = ACTIONS(5593), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5593), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5593), + [sym_preproc_directive] = ACTIONS(5593), + [anon_sym_LPAREN2] = ACTIONS(5595), + [anon_sym_TILDE] = ACTIONS(5595), + [anon_sym_STAR] = ACTIONS(5595), + [anon_sym_AMP_AMP] = ACTIONS(5595), + [anon_sym_AMP] = ACTIONS(5593), + [anon_sym_SEMI] = ACTIONS(5595), + [anon_sym___extension__] = ACTIONS(5593), + [anon_sym_typedef] = ACTIONS(5593), + [anon_sym_virtual] = ACTIONS(5593), + [anon_sym_extern] = ACTIONS(5593), + [anon_sym___attribute__] = ACTIONS(5593), + [anon_sym___attribute] = ACTIONS(5593), + [anon_sym_using] = ACTIONS(5593), + [anon_sym_COLON_COLON] = ACTIONS(5595), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5595), + [anon_sym___declspec] = ACTIONS(5593), + [anon_sym___based] = ACTIONS(5593), + [anon_sym_signed] = ACTIONS(5593), + [anon_sym_unsigned] = ACTIONS(5593), + [anon_sym_long] = ACTIONS(5593), + [anon_sym_short] = ACTIONS(5593), + [anon_sym_LBRACK] = ACTIONS(5593), + [anon_sym_static] = ACTIONS(5593), + [anon_sym_register] = ACTIONS(5593), + [anon_sym_inline] = ACTIONS(5593), + [anon_sym___inline] = ACTIONS(5593), + [anon_sym___inline__] = ACTIONS(5593), + [anon_sym___forceinline] = ACTIONS(5593), + [anon_sym_thread_local] = ACTIONS(5593), + [anon_sym___thread] = ACTIONS(5593), + [anon_sym_const] = ACTIONS(5593), + [anon_sym_constexpr] = ACTIONS(5593), + [anon_sym_volatile] = ACTIONS(5593), + [anon_sym_restrict] = ACTIONS(5593), + [anon_sym___restrict__] = ACTIONS(5593), + [anon_sym__Atomic] = ACTIONS(5593), + [anon_sym__Noreturn] = ACTIONS(5593), + [anon_sym_noreturn] = ACTIONS(5593), + [anon_sym__Nonnull] = ACTIONS(5593), + [anon_sym_mutable] = ACTIONS(5593), + [anon_sym_constinit] = ACTIONS(5593), + [anon_sym_consteval] = ACTIONS(5593), + [anon_sym_alignas] = ACTIONS(5593), + [anon_sym__Alignas] = ACTIONS(5593), + [sym_primitive_type] = ACTIONS(5593), + [anon_sym_enum] = ACTIONS(5593), + [anon_sym_class] = ACTIONS(5593), + [anon_sym_struct] = ACTIONS(5593), + [anon_sym_union] = ACTIONS(5593), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(5593), - [anon_sym_decltype] = ACTIONS(5595), - [anon_sym_final] = ACTIONS(5589), - [anon_sym_override] = ACTIONS(5589), - [anon_sym_requires] = ACTIONS(5589), + [anon_sym_decltype] = ACTIONS(5593), + [anon_sym_explicit] = ACTIONS(5593), + [anon_sym_typename] = ACTIONS(5593), + [anon_sym_private] = ACTIONS(5593), + [anon_sym_template] = ACTIONS(5593), + [anon_sym_operator] = ACTIONS(5593), + [anon_sym_friend] = ACTIONS(5593), + [anon_sym_public] = ACTIONS(5593), + [anon_sym_protected] = ACTIONS(5593), + [anon_sym_static_assert] = ACTIONS(5593), }, - [1785] = { + [1828] = { + [sym_identifier] = ACTIONS(5511), + [aux_sym_preproc_def_token1] = ACTIONS(5511), + [aux_sym_preproc_if_token1] = ACTIONS(5511), + [aux_sym_preproc_if_token2] = ACTIONS(5511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5511), + [aux_sym_preproc_else_token1] = ACTIONS(5511), + [aux_sym_preproc_elif_token1] = ACTIONS(5511), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5511), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5511), + [sym_preproc_directive] = ACTIONS(5511), + [anon_sym_LPAREN2] = ACTIONS(5513), + [anon_sym_TILDE] = ACTIONS(5513), + [anon_sym_STAR] = ACTIONS(5513), + [anon_sym_AMP_AMP] = ACTIONS(5513), + [anon_sym_AMP] = ACTIONS(5511), + [anon_sym_SEMI] = ACTIONS(5513), + [anon_sym___extension__] = ACTIONS(5511), + [anon_sym_typedef] = ACTIONS(5511), + [anon_sym_virtual] = ACTIONS(5511), + [anon_sym_extern] = ACTIONS(5511), + [anon_sym___attribute__] = ACTIONS(5511), + [anon_sym___attribute] = ACTIONS(5511), + [anon_sym_using] = ACTIONS(5511), + [anon_sym_COLON_COLON] = ACTIONS(5513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5513), + [anon_sym___declspec] = ACTIONS(5511), + [anon_sym___based] = ACTIONS(5511), + [anon_sym_signed] = ACTIONS(5511), + [anon_sym_unsigned] = ACTIONS(5511), + [anon_sym_long] = ACTIONS(5511), + [anon_sym_short] = ACTIONS(5511), + [anon_sym_LBRACK] = ACTIONS(5511), + [anon_sym_static] = ACTIONS(5511), + [anon_sym_register] = ACTIONS(5511), + [anon_sym_inline] = ACTIONS(5511), + [anon_sym___inline] = ACTIONS(5511), + [anon_sym___inline__] = ACTIONS(5511), + [anon_sym___forceinline] = ACTIONS(5511), + [anon_sym_thread_local] = ACTIONS(5511), + [anon_sym___thread] = ACTIONS(5511), + [anon_sym_const] = ACTIONS(5511), + [anon_sym_constexpr] = ACTIONS(5511), + [anon_sym_volatile] = ACTIONS(5511), + [anon_sym_restrict] = ACTIONS(5511), + [anon_sym___restrict__] = ACTIONS(5511), + [anon_sym__Atomic] = ACTIONS(5511), + [anon_sym__Noreturn] = ACTIONS(5511), + [anon_sym_noreturn] = ACTIONS(5511), + [anon_sym__Nonnull] = ACTIONS(5511), + [anon_sym_mutable] = ACTIONS(5511), + [anon_sym_constinit] = ACTIONS(5511), + [anon_sym_consteval] = ACTIONS(5511), + [anon_sym_alignas] = ACTIONS(5511), + [anon_sym__Alignas] = ACTIONS(5511), + [sym_primitive_type] = ACTIONS(5511), + [anon_sym_enum] = ACTIONS(5511), + [anon_sym_class] = ACTIONS(5511), + [anon_sym_struct] = ACTIONS(5511), + [anon_sym_union] = ACTIONS(5511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5511), + [anon_sym_decltype] = ACTIONS(5511), + [anon_sym_explicit] = ACTIONS(5511), + [anon_sym_typename] = ACTIONS(5511), + [anon_sym_private] = ACTIONS(5511), + [anon_sym_template] = ACTIONS(5511), + [anon_sym_operator] = ACTIONS(5511), + [anon_sym_friend] = ACTIONS(5511), + [anon_sym_public] = ACTIONS(5511), + [anon_sym_protected] = ACTIONS(5511), + [anon_sym_static_assert] = ACTIONS(5511), + }, + [1829] = { [sym_identifier] = ACTIONS(5597), [aux_sym_preproc_def_token1] = ACTIONS(5597), [aux_sym_preproc_if_token1] = ACTIONS(5597), @@ -253398,991 +258214,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_noreturn] = ACTIONS(5597), [anon_sym__Nonnull] = ACTIONS(5597), [anon_sym_mutable] = ACTIONS(5597), - [anon_sym_constinit] = ACTIONS(5597), - [anon_sym_consteval] = ACTIONS(5597), - [anon_sym_alignas] = ACTIONS(5597), - [anon_sym__Alignas] = ACTIONS(5597), - [sym_primitive_type] = ACTIONS(5597), - [anon_sym_enum] = ACTIONS(5597), - [anon_sym_class] = ACTIONS(5597), - [anon_sym_struct] = ACTIONS(5597), - [anon_sym_union] = ACTIONS(5597), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5597), - [anon_sym_decltype] = ACTIONS(5597), - [anon_sym_explicit] = ACTIONS(5597), - [anon_sym_typename] = ACTIONS(5597), - [anon_sym_private] = ACTIONS(5597), - [anon_sym_template] = ACTIONS(5597), - [anon_sym_operator] = ACTIONS(5597), - [anon_sym_friend] = ACTIONS(5597), - [anon_sym_public] = ACTIONS(5597), - [anon_sym_protected] = ACTIONS(5597), - [anon_sym_static_assert] = ACTIONS(5597), - }, - [1786] = { - [sym_identifier] = ACTIONS(4955), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4957), - [anon_sym_COMMA] = ACTIONS(4957), - [anon_sym_RPAREN] = ACTIONS(4957), - [anon_sym_LPAREN2] = ACTIONS(4957), - [anon_sym_DASH] = ACTIONS(4955), - [anon_sym_PLUS] = ACTIONS(4955), - [anon_sym_STAR] = ACTIONS(4957), - [anon_sym_SLASH] = ACTIONS(4955), - [anon_sym_PERCENT] = ACTIONS(4957), - [anon_sym_PIPE_PIPE] = ACTIONS(4957), - [anon_sym_AMP_AMP] = ACTIONS(4957), - [anon_sym_PIPE] = ACTIONS(4955), - [anon_sym_CARET] = ACTIONS(4957), - [anon_sym_AMP] = ACTIONS(4955), - [anon_sym_EQ_EQ] = ACTIONS(4957), - [anon_sym_BANG_EQ] = ACTIONS(4957), - [anon_sym_GT] = ACTIONS(4955), - [anon_sym_GT_EQ] = ACTIONS(4957), - [anon_sym_LT_EQ] = ACTIONS(4955), - [anon_sym_LT] = ACTIONS(4955), - [anon_sym_LT_LT] = ACTIONS(4957), - [anon_sym_GT_GT] = ACTIONS(4957), - [anon_sym_SEMI] = ACTIONS(4957), - [anon_sym___extension__] = ACTIONS(4955), - [anon_sym___attribute__] = ACTIONS(4955), - [anon_sym___attribute] = ACTIONS(4955), - [anon_sym_COLON] = ACTIONS(4955), - [anon_sym_COLON_COLON] = ACTIONS(4957), - [anon_sym___based] = ACTIONS(4955), - [anon_sym_LBRACE] = ACTIONS(4957), - [anon_sym_RBRACE] = ACTIONS(4957), - [anon_sym_signed] = ACTIONS(4955), - [anon_sym_unsigned] = ACTIONS(4955), - [anon_sym_long] = ACTIONS(4955), - [anon_sym_short] = ACTIONS(4955), - [anon_sym_LBRACK] = ACTIONS(4957), - [anon_sym_RBRACK] = ACTIONS(4957), - [anon_sym_const] = ACTIONS(4955), - [anon_sym_constexpr] = ACTIONS(4955), - [anon_sym_volatile] = ACTIONS(4955), - [anon_sym_restrict] = ACTIONS(4955), - [anon_sym___restrict__] = ACTIONS(4955), - [anon_sym__Atomic] = ACTIONS(4955), - [anon_sym__Noreturn] = ACTIONS(4955), - [anon_sym_noreturn] = ACTIONS(4955), - [anon_sym__Nonnull] = ACTIONS(4955), - [anon_sym_mutable] = ACTIONS(4955), - [anon_sym_constinit] = ACTIONS(4955), - [anon_sym_consteval] = ACTIONS(4955), - [anon_sym_alignas] = ACTIONS(4955), - [anon_sym__Alignas] = ACTIONS(4955), - [sym_primitive_type] = ACTIONS(4955), - [anon_sym_QMARK] = ACTIONS(4957), - [anon_sym_LT_EQ_GT] = ACTIONS(4957), - [anon_sym_or] = ACTIONS(4955), - [anon_sym_and] = ACTIONS(4955), - [anon_sym_bitor] = ACTIONS(4955), - [anon_sym_xor] = ACTIONS(4955), - [anon_sym_bitand] = ACTIONS(4955), - [anon_sym_not_eq] = ACTIONS(4955), - [anon_sym_DASH_DASH] = ACTIONS(4957), - [anon_sym_PLUS_PLUS] = ACTIONS(4957), - [anon_sym_DOT] = ACTIONS(4955), - [anon_sym_DOT_STAR] = ACTIONS(4957), - [anon_sym_DASH_GT] = ACTIONS(4957), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4955), - [anon_sym_decltype] = ACTIONS(4955), - [anon_sym_final] = ACTIONS(4955), - [anon_sym_override] = ACTIONS(4955), - [anon_sym_requires] = ACTIONS(4955), - }, - [1787] = { - [sym_identifier] = ACTIONS(2931), - [aux_sym_preproc_def_token1] = ACTIONS(2931), - [aux_sym_preproc_if_token1] = ACTIONS(2931), - [aux_sym_preproc_if_token2] = ACTIONS(2931), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2931), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2931), - [aux_sym_preproc_else_token1] = ACTIONS(2931), - [aux_sym_preproc_elif_token1] = ACTIONS(2931), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2931), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2931), - [sym_preproc_directive] = ACTIONS(2931), - [anon_sym_LPAREN2] = ACTIONS(2933), - [anon_sym_TILDE] = ACTIONS(2933), - [anon_sym_STAR] = ACTIONS(2933), - [anon_sym_AMP_AMP] = ACTIONS(2933), - [anon_sym_AMP] = ACTIONS(2931), - [anon_sym_SEMI] = ACTIONS(2933), - [anon_sym___extension__] = ACTIONS(2931), - [anon_sym_typedef] = ACTIONS(2931), - [anon_sym_virtual] = ACTIONS(2931), - [anon_sym_extern] = ACTIONS(2931), - [anon_sym___attribute__] = ACTIONS(2931), - [anon_sym___attribute] = ACTIONS(2931), - [anon_sym_using] = ACTIONS(2931), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2933), - [anon_sym___declspec] = ACTIONS(2931), - [anon_sym___based] = ACTIONS(2931), - [anon_sym_signed] = ACTIONS(2931), - [anon_sym_unsigned] = ACTIONS(2931), - [anon_sym_long] = ACTIONS(2931), - [anon_sym_short] = ACTIONS(2931), - [anon_sym_LBRACK] = ACTIONS(2931), - [anon_sym_static] = ACTIONS(2931), - [anon_sym_register] = ACTIONS(2931), - [anon_sym_inline] = ACTIONS(2931), - [anon_sym___inline] = ACTIONS(2931), - [anon_sym___inline__] = ACTIONS(2931), - [anon_sym___forceinline] = ACTIONS(2931), - [anon_sym_thread_local] = ACTIONS(2931), - [anon_sym___thread] = ACTIONS(2931), - [anon_sym_const] = ACTIONS(2931), - [anon_sym_constexpr] = ACTIONS(2931), - [anon_sym_volatile] = ACTIONS(2931), - [anon_sym_restrict] = ACTIONS(2931), - [anon_sym___restrict__] = ACTIONS(2931), - [anon_sym__Atomic] = ACTIONS(2931), - [anon_sym__Noreturn] = ACTIONS(2931), - [anon_sym_noreturn] = ACTIONS(2931), - [anon_sym__Nonnull] = ACTIONS(2931), - [anon_sym_mutable] = ACTIONS(2931), - [anon_sym_constinit] = ACTIONS(2931), - [anon_sym_consteval] = ACTIONS(2931), - [anon_sym_alignas] = ACTIONS(2931), - [anon_sym__Alignas] = ACTIONS(2931), - [sym_primitive_type] = ACTIONS(2931), - [anon_sym_enum] = ACTIONS(2931), - [anon_sym_class] = ACTIONS(2931), - [anon_sym_struct] = ACTIONS(2931), - [anon_sym_union] = ACTIONS(2931), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2931), - [anon_sym_decltype] = ACTIONS(2931), - [anon_sym_explicit] = ACTIONS(2931), - [anon_sym_typename] = ACTIONS(2931), - [anon_sym_private] = ACTIONS(2931), - [anon_sym_template] = ACTIONS(2931), - [anon_sym_operator] = ACTIONS(2931), - [anon_sym_friend] = ACTIONS(2931), - [anon_sym_public] = ACTIONS(2931), - [anon_sym_protected] = ACTIONS(2931), - [anon_sym_static_assert] = ACTIONS(2931), - }, - [1788] = { - [sym_identifier] = ACTIONS(2883), - [aux_sym_preproc_def_token1] = ACTIONS(2883), - [aux_sym_preproc_if_token1] = ACTIONS(2883), - [aux_sym_preproc_if_token2] = ACTIONS(2883), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2883), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2883), - [aux_sym_preproc_else_token1] = ACTIONS(2883), - [aux_sym_preproc_elif_token1] = ACTIONS(2883), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2883), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2883), - [sym_preproc_directive] = ACTIONS(2883), - [anon_sym_LPAREN2] = ACTIONS(2885), - [anon_sym_TILDE] = ACTIONS(2885), - [anon_sym_STAR] = ACTIONS(2885), - [anon_sym_AMP_AMP] = ACTIONS(2885), - [anon_sym_AMP] = ACTIONS(2883), - [anon_sym_SEMI] = ACTIONS(2885), - [anon_sym___extension__] = ACTIONS(2883), - [anon_sym_typedef] = ACTIONS(2883), - [anon_sym_virtual] = ACTIONS(2883), - [anon_sym_extern] = ACTIONS(2883), - [anon_sym___attribute__] = ACTIONS(2883), - [anon_sym___attribute] = ACTIONS(2883), - [anon_sym_using] = ACTIONS(2883), - [anon_sym_COLON_COLON] = ACTIONS(2885), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2885), - [anon_sym___declspec] = ACTIONS(2883), - [anon_sym___based] = ACTIONS(2883), - [anon_sym_signed] = ACTIONS(2883), - [anon_sym_unsigned] = ACTIONS(2883), - [anon_sym_long] = ACTIONS(2883), - [anon_sym_short] = ACTIONS(2883), - [anon_sym_LBRACK] = ACTIONS(2883), - [anon_sym_static] = ACTIONS(2883), - [anon_sym_register] = ACTIONS(2883), - [anon_sym_inline] = ACTIONS(2883), - [anon_sym___inline] = ACTIONS(2883), - [anon_sym___inline__] = ACTIONS(2883), - [anon_sym___forceinline] = ACTIONS(2883), - [anon_sym_thread_local] = ACTIONS(2883), - [anon_sym___thread] = ACTIONS(2883), - [anon_sym_const] = ACTIONS(2883), - [anon_sym_constexpr] = ACTIONS(2883), - [anon_sym_volatile] = ACTIONS(2883), - [anon_sym_restrict] = ACTIONS(2883), - [anon_sym___restrict__] = ACTIONS(2883), - [anon_sym__Atomic] = ACTIONS(2883), - [anon_sym__Noreturn] = ACTIONS(2883), - [anon_sym_noreturn] = ACTIONS(2883), - [anon_sym__Nonnull] = ACTIONS(2883), - [anon_sym_mutable] = ACTIONS(2883), - [anon_sym_constinit] = ACTIONS(2883), - [anon_sym_consteval] = ACTIONS(2883), - [anon_sym_alignas] = ACTIONS(2883), - [anon_sym__Alignas] = ACTIONS(2883), - [sym_primitive_type] = ACTIONS(2883), - [anon_sym_enum] = ACTIONS(2883), - [anon_sym_class] = ACTIONS(2883), - [anon_sym_struct] = ACTIONS(2883), - [anon_sym_union] = ACTIONS(2883), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2883), - [anon_sym_decltype] = ACTIONS(2883), - [anon_sym_explicit] = ACTIONS(2883), - [anon_sym_typename] = ACTIONS(2883), - [anon_sym_private] = ACTIONS(2883), - [anon_sym_template] = ACTIONS(2883), - [anon_sym_operator] = ACTIONS(2883), - [anon_sym_friend] = ACTIONS(2883), - [anon_sym_public] = ACTIONS(2883), - [anon_sym_protected] = ACTIONS(2883), - [anon_sym_static_assert] = ACTIONS(2883), - }, - [1789] = { - [sym_identifier] = ACTIONS(5601), - [aux_sym_preproc_def_token1] = ACTIONS(5601), - [aux_sym_preproc_if_token1] = ACTIONS(5601), - [aux_sym_preproc_if_token2] = ACTIONS(5601), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5601), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5601), - [aux_sym_preproc_else_token1] = ACTIONS(5601), - [aux_sym_preproc_elif_token1] = ACTIONS(5601), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5601), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5601), - [sym_preproc_directive] = ACTIONS(5601), - [anon_sym_LPAREN2] = ACTIONS(5603), - [anon_sym_TILDE] = ACTIONS(5603), - [anon_sym_STAR] = ACTIONS(5603), - [anon_sym_AMP_AMP] = ACTIONS(5603), - [anon_sym_AMP] = ACTIONS(5601), - [anon_sym_SEMI] = ACTIONS(5603), - [anon_sym___extension__] = ACTIONS(5601), - [anon_sym_typedef] = ACTIONS(5601), - [anon_sym_virtual] = ACTIONS(5601), - [anon_sym_extern] = ACTIONS(5601), - [anon_sym___attribute__] = ACTIONS(5601), - [anon_sym___attribute] = ACTIONS(5601), - [anon_sym_using] = ACTIONS(5601), - [anon_sym_COLON_COLON] = ACTIONS(5603), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5603), - [anon_sym___declspec] = ACTIONS(5601), - [anon_sym___based] = ACTIONS(5601), - [anon_sym_signed] = ACTIONS(5601), - [anon_sym_unsigned] = ACTIONS(5601), - [anon_sym_long] = ACTIONS(5601), - [anon_sym_short] = ACTIONS(5601), - [anon_sym_LBRACK] = ACTIONS(5601), - [anon_sym_static] = ACTIONS(5601), - [anon_sym_register] = ACTIONS(5601), - [anon_sym_inline] = ACTIONS(5601), - [anon_sym___inline] = ACTIONS(5601), - [anon_sym___inline__] = ACTIONS(5601), - [anon_sym___forceinline] = ACTIONS(5601), - [anon_sym_thread_local] = ACTIONS(5601), - [anon_sym___thread] = ACTIONS(5601), - [anon_sym_const] = ACTIONS(5601), - [anon_sym_constexpr] = ACTIONS(5601), - [anon_sym_volatile] = ACTIONS(5601), - [anon_sym_restrict] = ACTIONS(5601), - [anon_sym___restrict__] = ACTIONS(5601), - [anon_sym__Atomic] = ACTIONS(5601), - [anon_sym__Noreturn] = ACTIONS(5601), - [anon_sym_noreturn] = ACTIONS(5601), - [anon_sym__Nonnull] = ACTIONS(5601), - [anon_sym_mutable] = ACTIONS(5601), - [anon_sym_constinit] = ACTIONS(5601), - [anon_sym_consteval] = ACTIONS(5601), - [anon_sym_alignas] = ACTIONS(5601), - [anon_sym__Alignas] = ACTIONS(5601), - [sym_primitive_type] = ACTIONS(5601), - [anon_sym_enum] = ACTIONS(5601), - [anon_sym_class] = ACTIONS(5601), - [anon_sym_struct] = ACTIONS(5601), - [anon_sym_union] = ACTIONS(5601), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5601), - [anon_sym_decltype] = ACTIONS(5601), - [anon_sym_explicit] = ACTIONS(5601), - [anon_sym_typename] = ACTIONS(5601), - [anon_sym_private] = ACTIONS(5601), - [anon_sym_template] = ACTIONS(5601), - [anon_sym_operator] = ACTIONS(5601), - [anon_sym_friend] = ACTIONS(5601), - [anon_sym_public] = ACTIONS(5601), - [anon_sym_protected] = ACTIONS(5601), - [anon_sym_static_assert] = ACTIONS(5601), - }, - [1790] = { - [sym_identifier] = ACTIONS(5605), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5607), - [anon_sym_COMMA] = ACTIONS(5607), - [anon_sym_RPAREN] = ACTIONS(5607), - [anon_sym_LPAREN2] = ACTIONS(5607), - [anon_sym_DASH] = ACTIONS(5605), - [anon_sym_PLUS] = ACTIONS(5605), - [anon_sym_STAR] = ACTIONS(5607), - [anon_sym_SLASH] = ACTIONS(5605), - [anon_sym_PERCENT] = ACTIONS(5607), - [anon_sym_PIPE_PIPE] = ACTIONS(5607), - [anon_sym_AMP_AMP] = ACTIONS(5607), - [anon_sym_PIPE] = ACTIONS(5605), - [anon_sym_CARET] = ACTIONS(5607), - [anon_sym_AMP] = ACTIONS(5605), - [anon_sym_EQ_EQ] = ACTIONS(5607), - [anon_sym_BANG_EQ] = ACTIONS(5607), - [anon_sym_GT] = ACTIONS(5605), - [anon_sym_GT_EQ] = ACTIONS(5607), - [anon_sym_LT_EQ] = ACTIONS(5605), - [anon_sym_LT] = ACTIONS(5605), - [anon_sym_LT_LT] = ACTIONS(5607), - [anon_sym_GT_GT] = ACTIONS(5607), - [anon_sym_SEMI] = ACTIONS(5607), - [anon_sym___extension__] = ACTIONS(5605), - [anon_sym___attribute__] = ACTIONS(5605), - [anon_sym___attribute] = ACTIONS(5605), - [anon_sym_COLON] = ACTIONS(5605), - [anon_sym_COLON_COLON] = ACTIONS(5607), - [anon_sym___based] = ACTIONS(5605), - [anon_sym_LBRACE] = ACTIONS(5607), - [anon_sym_RBRACE] = ACTIONS(5607), - [anon_sym_signed] = ACTIONS(5605), - [anon_sym_unsigned] = ACTIONS(5605), - [anon_sym_long] = ACTIONS(5605), - [anon_sym_short] = ACTIONS(5605), - [anon_sym_LBRACK] = ACTIONS(5607), - [anon_sym_RBRACK] = ACTIONS(5607), - [anon_sym_const] = ACTIONS(5605), - [anon_sym_constexpr] = ACTIONS(5605), - [anon_sym_volatile] = ACTIONS(5605), - [anon_sym_restrict] = ACTIONS(5605), - [anon_sym___restrict__] = ACTIONS(5605), - [anon_sym__Atomic] = ACTIONS(5605), - [anon_sym__Noreturn] = ACTIONS(5605), - [anon_sym_noreturn] = ACTIONS(5605), - [anon_sym__Nonnull] = ACTIONS(5605), - [anon_sym_mutable] = ACTIONS(5605), - [anon_sym_constinit] = ACTIONS(5605), - [anon_sym_consteval] = ACTIONS(5605), - [anon_sym_alignas] = ACTIONS(5605), - [anon_sym__Alignas] = ACTIONS(5605), - [sym_primitive_type] = ACTIONS(5605), - [anon_sym_QMARK] = ACTIONS(5607), - [anon_sym_LT_EQ_GT] = ACTIONS(5607), - [anon_sym_or] = ACTIONS(5605), - [anon_sym_and] = ACTIONS(5605), - [anon_sym_bitor] = ACTIONS(5605), - [anon_sym_xor] = ACTIONS(5605), - [anon_sym_bitand] = ACTIONS(5605), - [anon_sym_not_eq] = ACTIONS(5605), - [anon_sym_DASH_DASH] = ACTIONS(5607), - [anon_sym_PLUS_PLUS] = ACTIONS(5607), - [anon_sym_DOT] = ACTIONS(5605), - [anon_sym_DOT_STAR] = ACTIONS(5607), - [anon_sym_DASH_GT] = ACTIONS(5607), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5605), - [anon_sym_decltype] = ACTIONS(5605), - [anon_sym_final] = ACTIONS(5605), - [anon_sym_override] = ACTIONS(5605), - [anon_sym_requires] = ACTIONS(5605), - }, - [1791] = { - [sym_identifier] = ACTIONS(2759), - [aux_sym_preproc_def_token1] = ACTIONS(2759), - [aux_sym_preproc_if_token1] = ACTIONS(2759), - [aux_sym_preproc_if_token2] = ACTIONS(2759), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2759), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2759), - [aux_sym_preproc_else_token1] = ACTIONS(2759), - [aux_sym_preproc_elif_token1] = ACTIONS(2759), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2759), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2759), - [sym_preproc_directive] = ACTIONS(2759), - [anon_sym_LPAREN2] = ACTIONS(2761), - [anon_sym_TILDE] = ACTIONS(2761), - [anon_sym_STAR] = ACTIONS(2761), - [anon_sym_AMP_AMP] = ACTIONS(2761), - [anon_sym_AMP] = ACTIONS(2759), - [anon_sym_SEMI] = ACTIONS(2761), - [anon_sym___extension__] = ACTIONS(2759), - [anon_sym_typedef] = ACTIONS(2759), - [anon_sym_virtual] = ACTIONS(2759), - [anon_sym_extern] = ACTIONS(2759), - [anon_sym___attribute__] = ACTIONS(2759), - [anon_sym___attribute] = ACTIONS(2759), - [anon_sym_using] = ACTIONS(2759), - [anon_sym_COLON_COLON] = ACTIONS(2761), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2761), - [anon_sym___declspec] = ACTIONS(2759), - [anon_sym___based] = ACTIONS(2759), - [anon_sym_signed] = ACTIONS(2759), - [anon_sym_unsigned] = ACTIONS(2759), - [anon_sym_long] = ACTIONS(2759), - [anon_sym_short] = ACTIONS(2759), - [anon_sym_LBRACK] = ACTIONS(2759), - [anon_sym_static] = ACTIONS(2759), - [anon_sym_register] = ACTIONS(2759), - [anon_sym_inline] = ACTIONS(2759), - [anon_sym___inline] = ACTIONS(2759), - [anon_sym___inline__] = ACTIONS(2759), - [anon_sym___forceinline] = ACTIONS(2759), - [anon_sym_thread_local] = ACTIONS(2759), - [anon_sym___thread] = ACTIONS(2759), - [anon_sym_const] = ACTIONS(2759), - [anon_sym_constexpr] = ACTIONS(2759), - [anon_sym_volatile] = ACTIONS(2759), - [anon_sym_restrict] = ACTIONS(2759), - [anon_sym___restrict__] = ACTIONS(2759), - [anon_sym__Atomic] = ACTIONS(2759), - [anon_sym__Noreturn] = ACTIONS(2759), - [anon_sym_noreturn] = ACTIONS(2759), - [anon_sym__Nonnull] = ACTIONS(2759), - [anon_sym_mutable] = ACTIONS(2759), - [anon_sym_constinit] = ACTIONS(2759), - [anon_sym_consteval] = ACTIONS(2759), - [anon_sym_alignas] = ACTIONS(2759), - [anon_sym__Alignas] = ACTIONS(2759), - [sym_primitive_type] = ACTIONS(2759), - [anon_sym_enum] = ACTIONS(2759), - [anon_sym_class] = ACTIONS(2759), - [anon_sym_struct] = ACTIONS(2759), - [anon_sym_union] = ACTIONS(2759), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2759), - [anon_sym_decltype] = ACTIONS(2759), - [anon_sym_explicit] = ACTIONS(2759), - [anon_sym_typename] = ACTIONS(2759), - [anon_sym_private] = ACTIONS(2759), - [anon_sym_template] = ACTIONS(2759), - [anon_sym_operator] = ACTIONS(2759), - [anon_sym_friend] = ACTIONS(2759), - [anon_sym_public] = ACTIONS(2759), - [anon_sym_protected] = ACTIONS(2759), - [anon_sym_static_assert] = ACTIONS(2759), - }, - [1792] = { - [sym_identifier] = ACTIONS(3309), - [aux_sym_preproc_def_token1] = ACTIONS(3309), - [aux_sym_preproc_if_token1] = ACTIONS(3309), - [aux_sym_preproc_if_token2] = ACTIONS(3309), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3309), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3309), - [aux_sym_preproc_else_token1] = ACTIONS(3309), - [aux_sym_preproc_elif_token1] = ACTIONS(3309), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3309), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3309), - [sym_preproc_directive] = ACTIONS(3309), - [anon_sym_LPAREN2] = ACTIONS(3311), - [anon_sym_TILDE] = ACTIONS(3311), - [anon_sym_STAR] = ACTIONS(3311), - [anon_sym_AMP_AMP] = ACTIONS(3311), - [anon_sym_AMP] = ACTIONS(3309), - [anon_sym_SEMI] = ACTIONS(3311), - [anon_sym___extension__] = ACTIONS(3309), - [anon_sym_typedef] = ACTIONS(3309), - [anon_sym_virtual] = ACTIONS(3309), - [anon_sym_extern] = ACTIONS(3309), - [anon_sym___attribute__] = ACTIONS(3309), - [anon_sym___attribute] = ACTIONS(3309), - [anon_sym_using] = ACTIONS(3309), - [anon_sym_COLON_COLON] = ACTIONS(3311), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3311), - [anon_sym___declspec] = ACTIONS(3309), - [anon_sym___based] = ACTIONS(3309), - [anon_sym_signed] = ACTIONS(3309), - [anon_sym_unsigned] = ACTIONS(3309), - [anon_sym_long] = ACTIONS(3309), - [anon_sym_short] = ACTIONS(3309), - [anon_sym_LBRACK] = ACTIONS(3309), - [anon_sym_static] = ACTIONS(3309), - [anon_sym_register] = ACTIONS(3309), - [anon_sym_inline] = ACTIONS(3309), - [anon_sym___inline] = ACTIONS(3309), - [anon_sym___inline__] = ACTIONS(3309), - [anon_sym___forceinline] = ACTIONS(3309), - [anon_sym_thread_local] = ACTIONS(3309), - [anon_sym___thread] = ACTIONS(3309), - [anon_sym_const] = ACTIONS(3309), - [anon_sym_constexpr] = ACTIONS(3309), - [anon_sym_volatile] = ACTIONS(3309), - [anon_sym_restrict] = ACTIONS(3309), - [anon_sym___restrict__] = ACTIONS(3309), - [anon_sym__Atomic] = ACTIONS(3309), - [anon_sym__Noreturn] = ACTIONS(3309), - [anon_sym_noreturn] = ACTIONS(3309), - [anon_sym__Nonnull] = ACTIONS(3309), - [anon_sym_mutable] = ACTIONS(3309), - [anon_sym_constinit] = ACTIONS(3309), - [anon_sym_consteval] = ACTIONS(3309), - [anon_sym_alignas] = ACTIONS(3309), - [anon_sym__Alignas] = ACTIONS(3309), - [sym_primitive_type] = ACTIONS(3309), - [anon_sym_enum] = ACTIONS(3309), - [anon_sym_class] = ACTIONS(3309), - [anon_sym_struct] = ACTIONS(3309), - [anon_sym_union] = ACTIONS(3309), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3309), - [anon_sym_decltype] = ACTIONS(3309), - [anon_sym_explicit] = ACTIONS(3309), - [anon_sym_typename] = ACTIONS(3309), - [anon_sym_private] = ACTIONS(3309), - [anon_sym_template] = ACTIONS(3309), - [anon_sym_operator] = ACTIONS(3309), - [anon_sym_friend] = ACTIONS(3309), - [anon_sym_public] = ACTIONS(3309), - [anon_sym_protected] = ACTIONS(3309), - [anon_sym_static_assert] = ACTIONS(3309), - }, - [1793] = { - [sym_identifier] = ACTIONS(5609), - [aux_sym_preproc_def_token1] = ACTIONS(5609), - [aux_sym_preproc_if_token1] = ACTIONS(5609), - [aux_sym_preproc_if_token2] = ACTIONS(5609), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5609), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5609), - [aux_sym_preproc_else_token1] = ACTIONS(5609), - [aux_sym_preproc_elif_token1] = ACTIONS(5609), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5609), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5609), - [sym_preproc_directive] = ACTIONS(5609), - [anon_sym_LPAREN2] = ACTIONS(5611), - [anon_sym_TILDE] = ACTIONS(5611), - [anon_sym_STAR] = ACTIONS(5611), - [anon_sym_AMP_AMP] = ACTIONS(5611), - [anon_sym_AMP] = ACTIONS(5609), - [anon_sym_SEMI] = ACTIONS(5611), - [anon_sym___extension__] = ACTIONS(5609), - [anon_sym_typedef] = ACTIONS(5609), - [anon_sym_virtual] = ACTIONS(5609), - [anon_sym_extern] = ACTIONS(5609), - [anon_sym___attribute__] = ACTIONS(5609), - [anon_sym___attribute] = ACTIONS(5609), - [anon_sym_using] = ACTIONS(5609), - [anon_sym_COLON_COLON] = ACTIONS(5611), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5611), - [anon_sym___declspec] = ACTIONS(5609), - [anon_sym___based] = ACTIONS(5609), - [anon_sym_signed] = ACTIONS(5609), - [anon_sym_unsigned] = ACTIONS(5609), - [anon_sym_long] = ACTIONS(5609), - [anon_sym_short] = ACTIONS(5609), - [anon_sym_LBRACK] = ACTIONS(5609), - [anon_sym_static] = ACTIONS(5609), - [anon_sym_register] = ACTIONS(5609), - [anon_sym_inline] = ACTIONS(5609), - [anon_sym___inline] = ACTIONS(5609), - [anon_sym___inline__] = ACTIONS(5609), - [anon_sym___forceinline] = ACTIONS(5609), - [anon_sym_thread_local] = ACTIONS(5609), - [anon_sym___thread] = ACTIONS(5609), - [anon_sym_const] = ACTIONS(5609), - [anon_sym_constexpr] = ACTIONS(5609), - [anon_sym_volatile] = ACTIONS(5609), - [anon_sym_restrict] = ACTIONS(5609), - [anon_sym___restrict__] = ACTIONS(5609), - [anon_sym__Atomic] = ACTIONS(5609), - [anon_sym__Noreturn] = ACTIONS(5609), - [anon_sym_noreturn] = ACTIONS(5609), - [anon_sym__Nonnull] = ACTIONS(5609), - [anon_sym_mutable] = ACTIONS(5609), - [anon_sym_constinit] = ACTIONS(5609), - [anon_sym_consteval] = ACTIONS(5609), - [anon_sym_alignas] = ACTIONS(5609), - [anon_sym__Alignas] = ACTIONS(5609), - [sym_primitive_type] = ACTIONS(5609), - [anon_sym_enum] = ACTIONS(5609), - [anon_sym_class] = ACTIONS(5609), - [anon_sym_struct] = ACTIONS(5609), - [anon_sym_union] = ACTIONS(5609), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5609), - [anon_sym_decltype] = ACTIONS(5609), - [anon_sym_explicit] = ACTIONS(5609), - [anon_sym_typename] = ACTIONS(5609), - [anon_sym_private] = ACTIONS(5609), - [anon_sym_template] = ACTIONS(5609), - [anon_sym_operator] = ACTIONS(5609), - [anon_sym_friend] = ACTIONS(5609), - [anon_sym_public] = ACTIONS(5609), - [anon_sym_protected] = ACTIONS(5609), - [anon_sym_static_assert] = ACTIONS(5609), - }, - [1794] = { - [sym_identifier] = ACTIONS(2767), - [aux_sym_preproc_def_token1] = ACTIONS(2767), - [aux_sym_preproc_if_token1] = ACTIONS(2767), - [aux_sym_preproc_if_token2] = ACTIONS(2767), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2767), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2767), - [aux_sym_preproc_else_token1] = ACTIONS(2767), - [aux_sym_preproc_elif_token1] = ACTIONS(2767), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2767), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2767), - [sym_preproc_directive] = ACTIONS(2767), - [anon_sym_LPAREN2] = ACTIONS(2769), - [anon_sym_TILDE] = ACTIONS(2769), - [anon_sym_STAR] = ACTIONS(2769), - [anon_sym_AMP_AMP] = ACTIONS(2769), - [anon_sym_AMP] = ACTIONS(2767), - [anon_sym_SEMI] = ACTIONS(2769), - [anon_sym___extension__] = ACTIONS(2767), - [anon_sym_typedef] = ACTIONS(2767), - [anon_sym_virtual] = ACTIONS(2767), - [anon_sym_extern] = ACTIONS(2767), - [anon_sym___attribute__] = ACTIONS(2767), - [anon_sym___attribute] = ACTIONS(2767), - [anon_sym_using] = ACTIONS(2767), - [anon_sym_COLON_COLON] = ACTIONS(2769), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2769), - [anon_sym___declspec] = ACTIONS(2767), - [anon_sym___based] = ACTIONS(2767), - [anon_sym_signed] = ACTIONS(2767), - [anon_sym_unsigned] = ACTIONS(2767), - [anon_sym_long] = ACTIONS(2767), - [anon_sym_short] = ACTIONS(2767), - [anon_sym_LBRACK] = ACTIONS(2767), - [anon_sym_static] = ACTIONS(2767), - [anon_sym_register] = ACTIONS(2767), - [anon_sym_inline] = ACTIONS(2767), - [anon_sym___inline] = ACTIONS(2767), - [anon_sym___inline__] = ACTIONS(2767), - [anon_sym___forceinline] = ACTIONS(2767), - [anon_sym_thread_local] = ACTIONS(2767), - [anon_sym___thread] = ACTIONS(2767), - [anon_sym_const] = ACTIONS(2767), - [anon_sym_constexpr] = ACTIONS(2767), - [anon_sym_volatile] = ACTIONS(2767), - [anon_sym_restrict] = ACTIONS(2767), - [anon_sym___restrict__] = ACTIONS(2767), - [anon_sym__Atomic] = ACTIONS(2767), - [anon_sym__Noreturn] = ACTIONS(2767), - [anon_sym_noreturn] = ACTIONS(2767), - [anon_sym__Nonnull] = ACTIONS(2767), - [anon_sym_mutable] = ACTIONS(2767), - [anon_sym_constinit] = ACTIONS(2767), - [anon_sym_consteval] = ACTIONS(2767), - [anon_sym_alignas] = ACTIONS(2767), - [anon_sym__Alignas] = ACTIONS(2767), - [sym_primitive_type] = ACTIONS(2767), - [anon_sym_enum] = ACTIONS(2767), - [anon_sym_class] = ACTIONS(2767), - [anon_sym_struct] = ACTIONS(2767), - [anon_sym_union] = ACTIONS(2767), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2767), - [anon_sym_decltype] = ACTIONS(2767), - [anon_sym_explicit] = ACTIONS(2767), - [anon_sym_typename] = ACTIONS(2767), - [anon_sym_private] = ACTIONS(2767), - [anon_sym_template] = ACTIONS(2767), - [anon_sym_operator] = ACTIONS(2767), - [anon_sym_friend] = ACTIONS(2767), - [anon_sym_public] = ACTIONS(2767), - [anon_sym_protected] = ACTIONS(2767), - [anon_sym_static_assert] = ACTIONS(2767), - }, - [1795] = { - [sym_identifier] = ACTIONS(5613), - [aux_sym_preproc_def_token1] = ACTIONS(5613), - [aux_sym_preproc_if_token1] = ACTIONS(5613), - [aux_sym_preproc_if_token2] = ACTIONS(5613), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5613), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5613), - [aux_sym_preproc_else_token1] = ACTIONS(5613), - [aux_sym_preproc_elif_token1] = ACTIONS(5613), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5613), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5613), - [sym_preproc_directive] = ACTIONS(5613), - [anon_sym_LPAREN2] = ACTIONS(5615), - [anon_sym_TILDE] = ACTIONS(5615), - [anon_sym_STAR] = ACTIONS(5615), - [anon_sym_AMP_AMP] = ACTIONS(5615), - [anon_sym_AMP] = ACTIONS(5613), - [anon_sym_SEMI] = ACTIONS(5615), - [anon_sym___extension__] = ACTIONS(5613), - [anon_sym_typedef] = ACTIONS(5613), - [anon_sym_virtual] = ACTIONS(5613), - [anon_sym_extern] = ACTIONS(5613), - [anon_sym___attribute__] = ACTIONS(5613), - [anon_sym___attribute] = ACTIONS(5613), - [anon_sym_using] = ACTIONS(5613), - [anon_sym_COLON_COLON] = ACTIONS(5615), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5615), - [anon_sym___declspec] = ACTIONS(5613), - [anon_sym___based] = ACTIONS(5613), - [anon_sym_signed] = ACTIONS(5613), - [anon_sym_unsigned] = ACTIONS(5613), - [anon_sym_long] = ACTIONS(5613), - [anon_sym_short] = ACTIONS(5613), - [anon_sym_LBRACK] = ACTIONS(5613), - [anon_sym_static] = ACTIONS(5613), - [anon_sym_register] = ACTIONS(5613), - [anon_sym_inline] = ACTIONS(5613), - [anon_sym___inline] = ACTIONS(5613), - [anon_sym___inline__] = ACTIONS(5613), - [anon_sym___forceinline] = ACTIONS(5613), - [anon_sym_thread_local] = ACTIONS(5613), - [anon_sym___thread] = ACTIONS(5613), - [anon_sym_const] = ACTIONS(5613), - [anon_sym_constexpr] = ACTIONS(5613), - [anon_sym_volatile] = ACTIONS(5613), - [anon_sym_restrict] = ACTIONS(5613), - [anon_sym___restrict__] = ACTIONS(5613), - [anon_sym__Atomic] = ACTIONS(5613), - [anon_sym__Noreturn] = ACTIONS(5613), - [anon_sym_noreturn] = ACTIONS(5613), - [anon_sym__Nonnull] = ACTIONS(5613), - [anon_sym_mutable] = ACTIONS(5613), - [anon_sym_constinit] = ACTIONS(5613), - [anon_sym_consteval] = ACTIONS(5613), - [anon_sym_alignas] = ACTIONS(5613), - [anon_sym__Alignas] = ACTIONS(5613), - [sym_primitive_type] = ACTIONS(5613), - [anon_sym_enum] = ACTIONS(5613), - [anon_sym_class] = ACTIONS(5613), - [anon_sym_struct] = ACTIONS(5613), - [anon_sym_union] = ACTIONS(5613), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5613), - [anon_sym_decltype] = ACTIONS(5613), - [anon_sym_explicit] = ACTIONS(5613), - [anon_sym_typename] = ACTIONS(5613), - [anon_sym_private] = ACTIONS(5613), - [anon_sym_template] = ACTIONS(5613), - [anon_sym_operator] = ACTIONS(5613), - [anon_sym_friend] = ACTIONS(5613), - [anon_sym_public] = ACTIONS(5613), - [anon_sym_protected] = ACTIONS(5613), - [anon_sym_static_assert] = ACTIONS(5613), - }, - [1796] = { - [sym_identifier] = ACTIONS(2775), - [aux_sym_preproc_def_token1] = ACTIONS(2775), - [aux_sym_preproc_if_token1] = ACTIONS(2775), - [aux_sym_preproc_if_token2] = ACTIONS(2775), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2775), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2775), - [aux_sym_preproc_else_token1] = ACTIONS(2775), - [aux_sym_preproc_elif_token1] = ACTIONS(2775), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2775), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2775), - [sym_preproc_directive] = ACTIONS(2775), - [anon_sym_LPAREN2] = ACTIONS(2777), - [anon_sym_TILDE] = ACTIONS(2777), - [anon_sym_STAR] = ACTIONS(2777), - [anon_sym_AMP_AMP] = ACTIONS(2777), - [anon_sym_AMP] = ACTIONS(2775), - [anon_sym_SEMI] = ACTIONS(2777), - [anon_sym___extension__] = ACTIONS(2775), - [anon_sym_typedef] = ACTIONS(2775), - [anon_sym_virtual] = ACTIONS(2775), - [anon_sym_extern] = ACTIONS(2775), - [anon_sym___attribute__] = ACTIONS(2775), - [anon_sym___attribute] = ACTIONS(2775), - [anon_sym_using] = ACTIONS(2775), - [anon_sym_COLON_COLON] = ACTIONS(2777), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2777), - [anon_sym___declspec] = ACTIONS(2775), - [anon_sym___based] = ACTIONS(2775), - [anon_sym_signed] = ACTIONS(2775), - [anon_sym_unsigned] = ACTIONS(2775), - [anon_sym_long] = ACTIONS(2775), - [anon_sym_short] = ACTIONS(2775), - [anon_sym_LBRACK] = ACTIONS(2775), - [anon_sym_static] = ACTIONS(2775), - [anon_sym_register] = ACTIONS(2775), - [anon_sym_inline] = ACTIONS(2775), - [anon_sym___inline] = ACTIONS(2775), - [anon_sym___inline__] = ACTIONS(2775), - [anon_sym___forceinline] = ACTIONS(2775), - [anon_sym_thread_local] = ACTIONS(2775), - [anon_sym___thread] = ACTIONS(2775), - [anon_sym_const] = ACTIONS(2775), - [anon_sym_constexpr] = ACTIONS(2775), - [anon_sym_volatile] = ACTIONS(2775), - [anon_sym_restrict] = ACTIONS(2775), - [anon_sym___restrict__] = ACTIONS(2775), - [anon_sym__Atomic] = ACTIONS(2775), - [anon_sym__Noreturn] = ACTIONS(2775), - [anon_sym_noreturn] = ACTIONS(2775), - [anon_sym__Nonnull] = ACTIONS(2775), - [anon_sym_mutable] = ACTIONS(2775), - [anon_sym_constinit] = ACTIONS(2775), - [anon_sym_consteval] = ACTIONS(2775), - [anon_sym_alignas] = ACTIONS(2775), - [anon_sym__Alignas] = ACTIONS(2775), - [sym_primitive_type] = ACTIONS(2775), - [anon_sym_enum] = ACTIONS(2775), - [anon_sym_class] = ACTIONS(2775), - [anon_sym_struct] = ACTIONS(2775), - [anon_sym_union] = ACTIONS(2775), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2775), - [anon_sym_decltype] = ACTIONS(2775), - [anon_sym_explicit] = ACTIONS(2775), - [anon_sym_typename] = ACTIONS(2775), - [anon_sym_private] = ACTIONS(2775), - [anon_sym_template] = ACTIONS(2775), - [anon_sym_operator] = ACTIONS(2775), - [anon_sym_friend] = ACTIONS(2775), - [anon_sym_public] = ACTIONS(2775), - [anon_sym_protected] = ACTIONS(2775), - [anon_sym_static_assert] = ACTIONS(2775), - }, - [1797] = { - [sym_identifier] = ACTIONS(2779), - [aux_sym_preproc_def_token1] = ACTIONS(2779), - [aux_sym_preproc_if_token1] = ACTIONS(2779), - [aux_sym_preproc_if_token2] = ACTIONS(2779), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2779), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2779), - [aux_sym_preproc_else_token1] = ACTIONS(2779), - [aux_sym_preproc_elif_token1] = ACTIONS(2779), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2779), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2779), - [sym_preproc_directive] = ACTIONS(2779), - [anon_sym_LPAREN2] = ACTIONS(2781), - [anon_sym_TILDE] = ACTIONS(2781), - [anon_sym_STAR] = ACTIONS(2781), - [anon_sym_AMP_AMP] = ACTIONS(2781), - [anon_sym_AMP] = ACTIONS(2779), - [anon_sym_SEMI] = ACTIONS(2781), - [anon_sym___extension__] = ACTIONS(2779), - [anon_sym_typedef] = ACTIONS(2779), - [anon_sym_virtual] = ACTIONS(2779), - [anon_sym_extern] = ACTIONS(2779), - [anon_sym___attribute__] = ACTIONS(2779), - [anon_sym___attribute] = ACTIONS(2779), - [anon_sym_using] = ACTIONS(2779), - [anon_sym_COLON_COLON] = ACTIONS(2781), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2781), - [anon_sym___declspec] = ACTIONS(2779), - [anon_sym___based] = ACTIONS(2779), - [anon_sym_signed] = ACTIONS(2779), - [anon_sym_unsigned] = ACTIONS(2779), - [anon_sym_long] = ACTIONS(2779), - [anon_sym_short] = ACTIONS(2779), - [anon_sym_LBRACK] = ACTIONS(2779), - [anon_sym_static] = ACTIONS(2779), - [anon_sym_register] = ACTIONS(2779), - [anon_sym_inline] = ACTIONS(2779), - [anon_sym___inline] = ACTIONS(2779), - [anon_sym___inline__] = ACTIONS(2779), - [anon_sym___forceinline] = ACTIONS(2779), - [anon_sym_thread_local] = ACTIONS(2779), - [anon_sym___thread] = ACTIONS(2779), - [anon_sym_const] = ACTIONS(2779), - [anon_sym_constexpr] = ACTIONS(2779), - [anon_sym_volatile] = ACTIONS(2779), - [anon_sym_restrict] = ACTIONS(2779), - [anon_sym___restrict__] = ACTIONS(2779), - [anon_sym__Atomic] = ACTIONS(2779), - [anon_sym__Noreturn] = ACTIONS(2779), - [anon_sym_noreturn] = ACTIONS(2779), - [anon_sym__Nonnull] = ACTIONS(2779), - [anon_sym_mutable] = ACTIONS(2779), - [anon_sym_constinit] = ACTIONS(2779), - [anon_sym_consteval] = ACTIONS(2779), - [anon_sym_alignas] = ACTIONS(2779), - [anon_sym__Alignas] = ACTIONS(2779), - [sym_primitive_type] = ACTIONS(2779), - [anon_sym_enum] = ACTIONS(2779), - [anon_sym_class] = ACTIONS(2779), - [anon_sym_struct] = ACTIONS(2779), - [anon_sym_union] = ACTIONS(2779), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2779), - [anon_sym_decltype] = ACTIONS(2779), - [anon_sym_explicit] = ACTIONS(2779), - [anon_sym_typename] = ACTIONS(2779), - [anon_sym_private] = ACTIONS(2779), - [anon_sym_template] = ACTIONS(2779), - [anon_sym_operator] = ACTIONS(2779), - [anon_sym_friend] = ACTIONS(2779), - [anon_sym_public] = ACTIONS(2779), - [anon_sym_protected] = ACTIONS(2779), - [anon_sym_static_assert] = ACTIONS(2779), - }, - [1798] = { - [sym_identifier] = ACTIONS(2783), - [aux_sym_preproc_def_token1] = ACTIONS(2783), - [aux_sym_preproc_if_token1] = ACTIONS(2783), - [aux_sym_preproc_if_token2] = ACTIONS(2783), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2783), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2783), - [aux_sym_preproc_else_token1] = ACTIONS(2783), - [aux_sym_preproc_elif_token1] = ACTIONS(2783), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2783), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2783), - [sym_preproc_directive] = ACTIONS(2783), - [anon_sym_LPAREN2] = ACTIONS(2785), - [anon_sym_TILDE] = ACTIONS(2785), - [anon_sym_STAR] = ACTIONS(2785), - [anon_sym_AMP_AMP] = ACTIONS(2785), - [anon_sym_AMP] = ACTIONS(2783), - [anon_sym_SEMI] = ACTIONS(2785), - [anon_sym___extension__] = ACTIONS(2783), - [anon_sym_typedef] = ACTIONS(2783), - [anon_sym_virtual] = ACTIONS(2783), - [anon_sym_extern] = ACTIONS(2783), - [anon_sym___attribute__] = ACTIONS(2783), - [anon_sym___attribute] = ACTIONS(2783), - [anon_sym_using] = ACTIONS(2783), - [anon_sym_COLON_COLON] = ACTIONS(2785), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2785), - [anon_sym___declspec] = ACTIONS(2783), - [anon_sym___based] = ACTIONS(2783), - [anon_sym_signed] = ACTIONS(2783), - [anon_sym_unsigned] = ACTIONS(2783), - [anon_sym_long] = ACTIONS(2783), - [anon_sym_short] = ACTIONS(2783), - [anon_sym_LBRACK] = ACTIONS(2783), - [anon_sym_static] = ACTIONS(2783), - [anon_sym_register] = ACTIONS(2783), - [anon_sym_inline] = ACTIONS(2783), - [anon_sym___inline] = ACTIONS(2783), - [anon_sym___inline__] = ACTIONS(2783), - [anon_sym___forceinline] = ACTIONS(2783), - [anon_sym_thread_local] = ACTIONS(2783), - [anon_sym___thread] = ACTIONS(2783), - [anon_sym_const] = ACTIONS(2783), - [anon_sym_constexpr] = ACTIONS(2783), - [anon_sym_volatile] = ACTIONS(2783), - [anon_sym_restrict] = ACTIONS(2783), - [anon_sym___restrict__] = ACTIONS(2783), - [anon_sym__Atomic] = ACTIONS(2783), - [anon_sym__Noreturn] = ACTIONS(2783), - [anon_sym_noreturn] = ACTIONS(2783), - [anon_sym__Nonnull] = ACTIONS(2783), - [anon_sym_mutable] = ACTIONS(2783), - [anon_sym_constinit] = ACTIONS(2783), - [anon_sym_consteval] = ACTIONS(2783), - [anon_sym_alignas] = ACTIONS(2783), - [anon_sym__Alignas] = ACTIONS(2783), - [sym_primitive_type] = ACTIONS(2783), - [anon_sym_enum] = ACTIONS(2783), - [anon_sym_class] = ACTIONS(2783), - [anon_sym_struct] = ACTIONS(2783), - [anon_sym_union] = ACTIONS(2783), + [anon_sym_constinit] = ACTIONS(5597), + [anon_sym_consteval] = ACTIONS(5597), + [anon_sym_alignas] = ACTIONS(5597), + [anon_sym__Alignas] = ACTIONS(5597), + [sym_primitive_type] = ACTIONS(5597), + [anon_sym_enum] = ACTIONS(5597), + [anon_sym_class] = ACTIONS(5597), + [anon_sym_struct] = ACTIONS(5597), + [anon_sym_union] = ACTIONS(5597), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2783), - [anon_sym_decltype] = ACTIONS(2783), - [anon_sym_explicit] = ACTIONS(2783), - [anon_sym_typename] = ACTIONS(2783), - [anon_sym_private] = ACTIONS(2783), - [anon_sym_template] = ACTIONS(2783), - [anon_sym_operator] = ACTIONS(2783), - [anon_sym_friend] = ACTIONS(2783), - [anon_sym_public] = ACTIONS(2783), - [anon_sym_protected] = ACTIONS(2783), - [anon_sym_static_assert] = ACTIONS(2783), + [sym_auto] = ACTIONS(5597), + [anon_sym_decltype] = ACTIONS(5597), + [anon_sym_explicit] = ACTIONS(5597), + [anon_sym_typename] = ACTIONS(5597), + [anon_sym_private] = ACTIONS(5597), + [anon_sym_template] = ACTIONS(5597), + [anon_sym_operator] = ACTIONS(5597), + [anon_sym_friend] = ACTIONS(5597), + [anon_sym_public] = ACTIONS(5597), + [anon_sym_protected] = ACTIONS(5597), + [anon_sym_static_assert] = ACTIONS(5597), }, - [1799] = { + [1830] = { + [sym_identifier] = ACTIONS(3047), + [aux_sym_preproc_def_token1] = ACTIONS(3047), + [aux_sym_preproc_if_token1] = ACTIONS(3047), + [aux_sym_preproc_if_token2] = ACTIONS(3047), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3047), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3047), + [aux_sym_preproc_else_token1] = ACTIONS(3047), + [aux_sym_preproc_elif_token1] = ACTIONS(3047), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3047), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3047), + [sym_preproc_directive] = ACTIONS(3047), + [anon_sym_LPAREN2] = ACTIONS(3049), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(3049), + [anon_sym_AMP_AMP] = ACTIONS(3049), + [anon_sym_AMP] = ACTIONS(3047), + [anon_sym_SEMI] = ACTIONS(3049), + [anon_sym___extension__] = ACTIONS(3047), + [anon_sym_typedef] = ACTIONS(3047), + [anon_sym_virtual] = ACTIONS(3047), + [anon_sym_extern] = ACTIONS(3047), + [anon_sym___attribute__] = ACTIONS(3047), + [anon_sym___attribute] = ACTIONS(3047), + [anon_sym_using] = ACTIONS(3047), + [anon_sym_COLON_COLON] = ACTIONS(3049), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3049), + [anon_sym___declspec] = ACTIONS(3047), + [anon_sym___based] = ACTIONS(3047), + [anon_sym_signed] = ACTIONS(3047), + [anon_sym_unsigned] = ACTIONS(3047), + [anon_sym_long] = ACTIONS(3047), + [anon_sym_short] = ACTIONS(3047), + [anon_sym_LBRACK] = ACTIONS(3047), + [anon_sym_static] = ACTIONS(3047), + [anon_sym_register] = ACTIONS(3047), + [anon_sym_inline] = ACTIONS(3047), + [anon_sym___inline] = ACTIONS(3047), + [anon_sym___inline__] = ACTIONS(3047), + [anon_sym___forceinline] = ACTIONS(3047), + [anon_sym_thread_local] = ACTIONS(3047), + [anon_sym___thread] = ACTIONS(3047), + [anon_sym_const] = ACTIONS(3047), + [anon_sym_constexpr] = ACTIONS(3047), + [anon_sym_volatile] = ACTIONS(3047), + [anon_sym_restrict] = ACTIONS(3047), + [anon_sym___restrict__] = ACTIONS(3047), + [anon_sym__Atomic] = ACTIONS(3047), + [anon_sym__Noreturn] = ACTIONS(3047), + [anon_sym_noreturn] = ACTIONS(3047), + [anon_sym__Nonnull] = ACTIONS(3047), + [anon_sym_mutable] = ACTIONS(3047), + [anon_sym_constinit] = ACTIONS(3047), + [anon_sym_consteval] = ACTIONS(3047), + [anon_sym_alignas] = ACTIONS(3047), + [anon_sym__Alignas] = ACTIONS(3047), + [sym_primitive_type] = ACTIONS(3047), + [anon_sym_enum] = ACTIONS(3047), + [anon_sym_class] = ACTIONS(3047), + [anon_sym_struct] = ACTIONS(3047), + [anon_sym_union] = ACTIONS(3047), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3047), + [anon_sym_decltype] = ACTIONS(3047), + [anon_sym_explicit] = ACTIONS(3047), + [anon_sym_typename] = ACTIONS(3047), + [anon_sym_private] = ACTIONS(3047), + [anon_sym_template] = ACTIONS(3047), + [anon_sym_operator] = ACTIONS(3047), + [anon_sym_friend] = ACTIONS(3047), + [anon_sym_public] = ACTIONS(3047), + [anon_sym_protected] = ACTIONS(3047), + [anon_sym_static_assert] = ACTIONS(3047), + }, + [1831] = { [sym_identifier] = ACTIONS(5597), [aux_sym_preproc_def_token1] = ACTIONS(5597), [aux_sym_preproc_if_token1] = ACTIONS(5597), @@ -254456,599 +258384,599 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(5597), [anon_sym_static_assert] = ACTIONS(5597), }, - [1800] = { - [sym__declaration_modifiers] = STATE(3282), - [sym_attribute_specifier] = STATE(3282), - [sym_attribute_declaration] = STATE(3282), - [sym_ms_declspec_modifier] = STATE(3282), - [sym_ms_based_modifier] = STATE(8682), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6345), - [sym_array_declarator] = STATE(5998), - [sym_storage_class_specifier] = STATE(3282), - [sym_type_qualifier] = STATE(3282), - [sym_alignas_qualifier] = STATE(2975), - [sym_decltype] = STATE(8601), - [sym_explicit_function_specifier] = STATE(3282), - [sym_operator_cast] = STATE(6835), - [sym__constructor_specifiers] = STATE(3282), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(8601), - [sym_template_function] = STATE(5998), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5591), - [sym_qualified_identifier] = STATE(5998), - [sym_qualified_operator_cast_identifier] = STATE(6835), - [sym_operator_name] = STATE(5998), - [aux_sym_operator_cast_definition_repeat1] = STATE(3282), - [sym_identifier] = ACTIONS(5460), - [anon_sym_LPAREN2] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2979), - [anon_sym_STAR] = ACTIONS(2981), + [1832] = { + [sym_identifier] = ACTIONS(3051), + [aux_sym_preproc_def_token1] = ACTIONS(3051), + [aux_sym_preproc_if_token1] = ACTIONS(3051), + [aux_sym_preproc_if_token2] = ACTIONS(3051), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3051), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3051), + [aux_sym_preproc_else_token1] = ACTIONS(3051), + [aux_sym_preproc_elif_token1] = ACTIONS(3051), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3051), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3051), + [sym_preproc_directive] = ACTIONS(3051), + [anon_sym_LPAREN2] = ACTIONS(3053), + [anon_sym_TILDE] = ACTIONS(3053), + [anon_sym_STAR] = ACTIONS(3053), + [anon_sym_AMP_AMP] = ACTIONS(3053), + [anon_sym_AMP] = ACTIONS(3051), + [anon_sym_SEMI] = ACTIONS(3053), + [anon_sym___extension__] = ACTIONS(3051), + [anon_sym_typedef] = ACTIONS(3051), + [anon_sym_virtual] = ACTIONS(3051), + [anon_sym_extern] = ACTIONS(3051), + [anon_sym___attribute__] = ACTIONS(3051), + [anon_sym___attribute] = ACTIONS(3051), + [anon_sym_using] = ACTIONS(3051), + [anon_sym_COLON_COLON] = ACTIONS(3053), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3053), + [anon_sym___declspec] = ACTIONS(3051), + [anon_sym___based] = ACTIONS(3051), + [anon_sym_signed] = ACTIONS(3051), + [anon_sym_unsigned] = ACTIONS(3051), + [anon_sym_long] = ACTIONS(3051), + [anon_sym_short] = ACTIONS(3051), + [anon_sym_LBRACK] = ACTIONS(3051), + [anon_sym_static] = ACTIONS(3051), + [anon_sym_register] = ACTIONS(3051), + [anon_sym_inline] = ACTIONS(3051), + [anon_sym___inline] = ACTIONS(3051), + [anon_sym___inline__] = ACTIONS(3051), + [anon_sym___forceinline] = ACTIONS(3051), + [anon_sym_thread_local] = ACTIONS(3051), + [anon_sym___thread] = ACTIONS(3051), + [anon_sym_const] = ACTIONS(3051), + [anon_sym_constexpr] = ACTIONS(3051), + [anon_sym_volatile] = ACTIONS(3051), + [anon_sym_restrict] = ACTIONS(3051), + [anon_sym___restrict__] = ACTIONS(3051), + [anon_sym__Atomic] = ACTIONS(3051), + [anon_sym__Noreturn] = ACTIONS(3051), + [anon_sym_noreturn] = ACTIONS(3051), + [anon_sym__Nonnull] = ACTIONS(3051), + [anon_sym_mutable] = ACTIONS(3051), + [anon_sym_constinit] = ACTIONS(3051), + [anon_sym_consteval] = ACTIONS(3051), + [anon_sym_alignas] = ACTIONS(3051), + [anon_sym__Alignas] = ACTIONS(3051), + [sym_primitive_type] = ACTIONS(3051), + [anon_sym_enum] = ACTIONS(3051), + [anon_sym_class] = ACTIONS(3051), + [anon_sym_struct] = ACTIONS(3051), + [anon_sym_union] = ACTIONS(3051), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3051), + [anon_sym_decltype] = ACTIONS(3051), + [anon_sym_explicit] = ACTIONS(3051), + [anon_sym_typename] = ACTIONS(3051), + [anon_sym_private] = ACTIONS(3051), + [anon_sym_template] = ACTIONS(3051), + [anon_sym_operator] = ACTIONS(3051), + [anon_sym_friend] = ACTIONS(3051), + [anon_sym_public] = ACTIONS(3051), + [anon_sym_protected] = ACTIONS(3051), + [anon_sym_static_assert] = ACTIONS(3051), + }, + [1833] = { + [sym__declaration_modifiers] = STATE(3363), + [sym_attribute_specifier] = STATE(3363), + [sym_attribute_declaration] = STATE(3363), + [sym_ms_declspec_modifier] = STATE(3363), + [sym_ms_based_modifier] = STATE(8864), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6459), + [sym_array_declarator] = STATE(6145), + [sym_storage_class_specifier] = STATE(3363), + [sym_type_qualifier] = STATE(3363), + [sym_alignas_qualifier] = STATE(3054), + [sym_decltype] = STATE(8569), + [sym_explicit_function_specifier] = STATE(3363), + [sym_operator_cast] = STATE(6934), + [sym__constructor_specifiers] = STATE(3363), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(8569), + [sym_template_function] = STATE(6145), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5569), + [sym_qualified_identifier] = STATE(6145), + [sym_qualified_operator_cast_identifier] = STATE(6934), + [sym_operator_name] = STATE(6145), + [aux_sym_operator_cast_definition_repeat1] = STATE(3363), + [sym_identifier] = ACTIONS(5481), + [anon_sym_LPAREN2] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(3001), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2983), - [anon_sym___extension__] = ACTIONS(5462), - [anon_sym_virtual] = ACTIONS(5464), - [anon_sym_extern] = ACTIONS(5466), - [anon_sym___attribute__] = ACTIONS(5468), - [anon_sym___attribute] = ACTIONS(5468), - [anon_sym_COLON_COLON] = ACTIONS(5470), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5472), - [anon_sym___declspec] = ACTIONS(5474), + [anon_sym_AMP] = ACTIONS(3003), + [anon_sym___extension__] = ACTIONS(5483), + [anon_sym_virtual] = ACTIONS(5485), + [anon_sym_extern] = ACTIONS(5487), + [anon_sym___attribute__] = ACTIONS(5489), + [anon_sym___attribute] = ACTIONS(5489), + [anon_sym_COLON_COLON] = ACTIONS(5491), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5493), + [anon_sym___declspec] = ACTIONS(5495), [anon_sym___based] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(2995), - [anon_sym_static] = ACTIONS(5466), - [anon_sym_register] = ACTIONS(5466), - [anon_sym_inline] = ACTIONS(5466), - [anon_sym___inline] = ACTIONS(5466), - [anon_sym___inline__] = ACTIONS(5466), - [anon_sym___forceinline] = ACTIONS(5466), - [anon_sym_thread_local] = ACTIONS(5466), - [anon_sym___thread] = ACTIONS(5466), - [anon_sym_const] = ACTIONS(5462), - [anon_sym_constexpr] = ACTIONS(5462), - [anon_sym_volatile] = ACTIONS(5462), - [anon_sym_restrict] = ACTIONS(5462), - [anon_sym___restrict__] = ACTIONS(5462), - [anon_sym__Atomic] = ACTIONS(5462), - [anon_sym__Noreturn] = ACTIONS(5462), - [anon_sym_noreturn] = ACTIONS(5462), - [anon_sym__Nonnull] = ACTIONS(5462), - [anon_sym_mutable] = ACTIONS(5462), - [anon_sym_constinit] = ACTIONS(5462), - [anon_sym_consteval] = ACTIONS(5462), - [anon_sym_alignas] = ACTIONS(5476), - [anon_sym__Alignas] = ACTIONS(5476), + [anon_sym_LBRACK] = ACTIONS(3015), + [anon_sym_static] = ACTIONS(5487), + [anon_sym_register] = ACTIONS(5487), + [anon_sym_inline] = ACTIONS(5487), + [anon_sym___inline] = ACTIONS(5487), + [anon_sym___inline__] = ACTIONS(5487), + [anon_sym___forceinline] = ACTIONS(5487), + [anon_sym_thread_local] = ACTIONS(5487), + [anon_sym___thread] = ACTIONS(5487), + [anon_sym_const] = ACTIONS(5483), + [anon_sym_constexpr] = ACTIONS(5483), + [anon_sym_volatile] = ACTIONS(5483), + [anon_sym_restrict] = ACTIONS(5483), + [anon_sym___restrict__] = ACTIONS(5483), + [anon_sym__Atomic] = ACTIONS(5483), + [anon_sym__Noreturn] = ACTIONS(5483), + [anon_sym_noreturn] = ACTIONS(5483), + [anon_sym__Nonnull] = ACTIONS(5483), + [anon_sym_mutable] = ACTIONS(5483), + [anon_sym_constinit] = ACTIONS(5483), + [anon_sym_consteval] = ACTIONS(5483), + [anon_sym_alignas] = ACTIONS(5497), + [anon_sym__Alignas] = ACTIONS(5497), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_explicit] = ACTIONS(129), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), [anon_sym_operator] = ACTIONS(141), }, - [1801] = { - [sym_identifier] = ACTIONS(2787), - [aux_sym_preproc_def_token1] = ACTIONS(2787), - [aux_sym_preproc_if_token1] = ACTIONS(2787), - [aux_sym_preproc_if_token2] = ACTIONS(2787), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2787), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2787), - [aux_sym_preproc_else_token1] = ACTIONS(2787), - [aux_sym_preproc_elif_token1] = ACTIONS(2787), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2787), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2787), - [sym_preproc_directive] = ACTIONS(2787), - [anon_sym_LPAREN2] = ACTIONS(2789), - [anon_sym_TILDE] = ACTIONS(2789), - [anon_sym_STAR] = ACTIONS(2789), - [anon_sym_AMP_AMP] = ACTIONS(2789), - [anon_sym_AMP] = ACTIONS(2787), - [anon_sym_SEMI] = ACTIONS(2789), - [anon_sym___extension__] = ACTIONS(2787), - [anon_sym_typedef] = ACTIONS(2787), - [anon_sym_virtual] = ACTIONS(2787), - [anon_sym_extern] = ACTIONS(2787), - [anon_sym___attribute__] = ACTIONS(2787), - [anon_sym___attribute] = ACTIONS(2787), - [anon_sym_using] = ACTIONS(2787), - [anon_sym_COLON_COLON] = ACTIONS(2789), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2789), - [anon_sym___declspec] = ACTIONS(2787), - [anon_sym___based] = ACTIONS(2787), - [anon_sym_signed] = ACTIONS(2787), - [anon_sym_unsigned] = ACTIONS(2787), - [anon_sym_long] = ACTIONS(2787), - [anon_sym_short] = ACTIONS(2787), - [anon_sym_LBRACK] = ACTIONS(2787), - [anon_sym_static] = ACTIONS(2787), - [anon_sym_register] = ACTIONS(2787), - [anon_sym_inline] = ACTIONS(2787), - [anon_sym___inline] = ACTIONS(2787), - [anon_sym___inline__] = ACTIONS(2787), - [anon_sym___forceinline] = ACTIONS(2787), - [anon_sym_thread_local] = ACTIONS(2787), - [anon_sym___thread] = ACTIONS(2787), - [anon_sym_const] = ACTIONS(2787), - [anon_sym_constexpr] = ACTIONS(2787), - [anon_sym_volatile] = ACTIONS(2787), - [anon_sym_restrict] = ACTIONS(2787), - [anon_sym___restrict__] = ACTIONS(2787), - [anon_sym__Atomic] = ACTIONS(2787), - [anon_sym__Noreturn] = ACTIONS(2787), - [anon_sym_noreturn] = ACTIONS(2787), - [anon_sym__Nonnull] = ACTIONS(2787), - [anon_sym_mutable] = ACTIONS(2787), - [anon_sym_constinit] = ACTIONS(2787), - [anon_sym_consteval] = ACTIONS(2787), - [anon_sym_alignas] = ACTIONS(2787), - [anon_sym__Alignas] = ACTIONS(2787), - [sym_primitive_type] = ACTIONS(2787), - [anon_sym_enum] = ACTIONS(2787), - [anon_sym_class] = ACTIONS(2787), - [anon_sym_struct] = ACTIONS(2787), - [anon_sym_union] = ACTIONS(2787), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2787), - [anon_sym_decltype] = ACTIONS(2787), - [anon_sym_explicit] = ACTIONS(2787), - [anon_sym_typename] = ACTIONS(2787), - [anon_sym_private] = ACTIONS(2787), - [anon_sym_template] = ACTIONS(2787), - [anon_sym_operator] = ACTIONS(2787), - [anon_sym_friend] = ACTIONS(2787), - [anon_sym_public] = ACTIONS(2787), - [anon_sym_protected] = ACTIONS(2787), - [anon_sym_static_assert] = ACTIONS(2787), + [1834] = { + [sym_identifier] = ACTIONS(5601), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5603), + [anon_sym_COMMA] = ACTIONS(5603), + [anon_sym_RPAREN] = ACTIONS(5603), + [aux_sym_preproc_if_token2] = ACTIONS(5603), + [aux_sym_preproc_else_token1] = ACTIONS(5603), + [aux_sym_preproc_elif_token1] = ACTIONS(5601), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5603), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5603), + [anon_sym_LPAREN2] = ACTIONS(5603), + [anon_sym_DASH] = ACTIONS(5601), + [anon_sym_PLUS] = ACTIONS(5601), + [anon_sym_STAR] = ACTIONS(5601), + [anon_sym_SLASH] = ACTIONS(5601), + [anon_sym_PERCENT] = ACTIONS(5601), + [anon_sym_PIPE_PIPE] = ACTIONS(5603), + [anon_sym_AMP_AMP] = ACTIONS(5603), + [anon_sym_PIPE] = ACTIONS(5601), + [anon_sym_CARET] = ACTIONS(5601), + [anon_sym_AMP] = ACTIONS(5601), + [anon_sym_EQ_EQ] = ACTIONS(5603), + [anon_sym_BANG_EQ] = ACTIONS(5603), + [anon_sym_GT] = ACTIONS(5601), + [anon_sym_GT_EQ] = ACTIONS(5603), + [anon_sym_LT_EQ] = ACTIONS(5601), + [anon_sym_LT] = ACTIONS(5601), + [anon_sym_LT_LT] = ACTIONS(5601), + [anon_sym_GT_GT] = ACTIONS(5601), + [anon_sym_SEMI] = ACTIONS(5603), + [anon_sym_COLON] = ACTIONS(5603), + [anon_sym_RBRACE] = ACTIONS(5603), + [anon_sym_LBRACK] = ACTIONS(5603), + [anon_sym_RBRACK] = ACTIONS(5603), + [anon_sym_EQ] = ACTIONS(5601), + [anon_sym_QMARK] = ACTIONS(5603), + [anon_sym_STAR_EQ] = ACTIONS(5603), + [anon_sym_SLASH_EQ] = ACTIONS(5603), + [anon_sym_PERCENT_EQ] = ACTIONS(5603), + [anon_sym_PLUS_EQ] = ACTIONS(5603), + [anon_sym_DASH_EQ] = ACTIONS(5603), + [anon_sym_LT_LT_EQ] = ACTIONS(5603), + [anon_sym_GT_GT_EQ] = ACTIONS(5603), + [anon_sym_AMP_EQ] = ACTIONS(5603), + [anon_sym_CARET_EQ] = ACTIONS(5603), + [anon_sym_PIPE_EQ] = ACTIONS(5603), + [anon_sym_and_eq] = ACTIONS(5601), + [anon_sym_or_eq] = ACTIONS(5601), + [anon_sym_xor_eq] = ACTIONS(5601), + [anon_sym_LT_EQ_GT] = ACTIONS(5603), + [anon_sym_or] = ACTIONS(5601), + [anon_sym_and] = ACTIONS(5601), + [anon_sym_bitor] = ACTIONS(5601), + [anon_sym_xor] = ACTIONS(5601), + [anon_sym_bitand] = ACTIONS(5601), + [anon_sym_not_eq] = ACTIONS(5601), + [anon_sym_DASH_DASH] = ACTIONS(5603), + [anon_sym_PLUS_PLUS] = ACTIONS(5603), + [anon_sym_DOT] = ACTIONS(5601), + [anon_sym_DOT_STAR] = ACTIONS(5603), + [anon_sym_DASH_GT] = ACTIONS(5603), + [anon_sym_L_DQUOTE] = ACTIONS(5603), + [anon_sym_u_DQUOTE] = ACTIONS(5603), + [anon_sym_U_DQUOTE] = ACTIONS(5603), + [anon_sym_u8_DQUOTE] = ACTIONS(5603), + [anon_sym_DQUOTE] = ACTIONS(5603), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5603), + [anon_sym_LR_DQUOTE] = ACTIONS(5603), + [anon_sym_uR_DQUOTE] = ACTIONS(5603), + [anon_sym_UR_DQUOTE] = ACTIONS(5603), + [anon_sym_u8R_DQUOTE] = ACTIONS(5603), + [sym_literal_suffix] = ACTIONS(5601), }, - [1802] = { - [sym_identifier] = ACTIONS(2791), - [aux_sym_preproc_def_token1] = ACTIONS(2791), - [aux_sym_preproc_if_token1] = ACTIONS(2791), - [aux_sym_preproc_if_token2] = ACTIONS(2791), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2791), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2791), - [aux_sym_preproc_else_token1] = ACTIONS(2791), - [aux_sym_preproc_elif_token1] = ACTIONS(2791), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2791), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2791), - [sym_preproc_directive] = ACTIONS(2791), - [anon_sym_LPAREN2] = ACTIONS(2793), - [anon_sym_TILDE] = ACTIONS(2793), - [anon_sym_STAR] = ACTIONS(2793), - [anon_sym_AMP_AMP] = ACTIONS(2793), - [anon_sym_AMP] = ACTIONS(2791), - [anon_sym_SEMI] = ACTIONS(2793), - [anon_sym___extension__] = ACTIONS(2791), - [anon_sym_typedef] = ACTIONS(2791), - [anon_sym_virtual] = ACTIONS(2791), - [anon_sym_extern] = ACTIONS(2791), - [anon_sym___attribute__] = ACTIONS(2791), - [anon_sym___attribute] = ACTIONS(2791), - [anon_sym_using] = ACTIONS(2791), - [anon_sym_COLON_COLON] = ACTIONS(2793), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2793), - [anon_sym___declspec] = ACTIONS(2791), - [anon_sym___based] = ACTIONS(2791), - [anon_sym_signed] = ACTIONS(2791), - [anon_sym_unsigned] = ACTIONS(2791), - [anon_sym_long] = ACTIONS(2791), - [anon_sym_short] = ACTIONS(2791), - [anon_sym_LBRACK] = ACTIONS(2791), - [anon_sym_static] = ACTIONS(2791), - [anon_sym_register] = ACTIONS(2791), - [anon_sym_inline] = ACTIONS(2791), - [anon_sym___inline] = ACTIONS(2791), - [anon_sym___inline__] = ACTIONS(2791), - [anon_sym___forceinline] = ACTIONS(2791), - [anon_sym_thread_local] = ACTIONS(2791), - [anon_sym___thread] = ACTIONS(2791), - [anon_sym_const] = ACTIONS(2791), - [anon_sym_constexpr] = ACTIONS(2791), - [anon_sym_volatile] = ACTIONS(2791), - [anon_sym_restrict] = ACTIONS(2791), - [anon_sym___restrict__] = ACTIONS(2791), - [anon_sym__Atomic] = ACTIONS(2791), - [anon_sym__Noreturn] = ACTIONS(2791), - [anon_sym_noreturn] = ACTIONS(2791), - [anon_sym__Nonnull] = ACTIONS(2791), - [anon_sym_mutable] = ACTIONS(2791), - [anon_sym_constinit] = ACTIONS(2791), - [anon_sym_consteval] = ACTIONS(2791), - [anon_sym_alignas] = ACTIONS(2791), - [anon_sym__Alignas] = ACTIONS(2791), - [sym_primitive_type] = ACTIONS(2791), - [anon_sym_enum] = ACTIONS(2791), - [anon_sym_class] = ACTIONS(2791), - [anon_sym_struct] = ACTIONS(2791), - [anon_sym_union] = ACTIONS(2791), + [1835] = { + [sym__declaration_modifiers] = STATE(3363), + [sym_attribute_specifier] = STATE(3363), + [sym_attribute_declaration] = STATE(3363), + [sym_ms_declspec_modifier] = STATE(3363), + [sym_ms_based_modifier] = STATE(8864), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6326), + [sym_array_declarator] = STATE(6145), + [sym_storage_class_specifier] = STATE(3363), + [sym_type_qualifier] = STATE(3363), + [sym_alignas_qualifier] = STATE(3054), + [sym_decltype] = STATE(8569), + [sym_explicit_function_specifier] = STATE(3363), + [sym_operator_cast] = STATE(6934), + [sym__constructor_specifiers] = STATE(3363), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(8569), + [sym_template_function] = STATE(6145), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5569), + [sym_qualified_identifier] = STATE(6145), + [sym_qualified_operator_cast_identifier] = STATE(6934), + [sym_operator_name] = STATE(6145), + [aux_sym_operator_cast_definition_repeat1] = STATE(3363), + [sym_identifier] = ACTIONS(5481), + [anon_sym_LPAREN2] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(3001), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3003), + [anon_sym___extension__] = ACTIONS(5483), + [anon_sym_virtual] = ACTIONS(5485), + [anon_sym_extern] = ACTIONS(5487), + [anon_sym___attribute__] = ACTIONS(5489), + [anon_sym___attribute] = ACTIONS(5489), + [anon_sym_COLON_COLON] = ACTIONS(5491), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5493), + [anon_sym___declspec] = ACTIONS(5495), + [anon_sym___based] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(3015), + [anon_sym_static] = ACTIONS(5487), + [anon_sym_register] = ACTIONS(5487), + [anon_sym_inline] = ACTIONS(5487), + [anon_sym___inline] = ACTIONS(5487), + [anon_sym___inline__] = ACTIONS(5487), + [anon_sym___forceinline] = ACTIONS(5487), + [anon_sym_thread_local] = ACTIONS(5487), + [anon_sym___thread] = ACTIONS(5487), + [anon_sym_const] = ACTIONS(5483), + [anon_sym_constexpr] = ACTIONS(5483), + [anon_sym_volatile] = ACTIONS(5483), + [anon_sym_restrict] = ACTIONS(5483), + [anon_sym___restrict__] = ACTIONS(5483), + [anon_sym__Atomic] = ACTIONS(5483), + [anon_sym__Noreturn] = ACTIONS(5483), + [anon_sym_noreturn] = ACTIONS(5483), + [anon_sym__Nonnull] = ACTIONS(5483), + [anon_sym_mutable] = ACTIONS(5483), + [anon_sym_constinit] = ACTIONS(5483), + [anon_sym_consteval] = ACTIONS(5483), + [anon_sym_alignas] = ACTIONS(5497), + [anon_sym__Alignas] = ACTIONS(5497), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2791), - [anon_sym_decltype] = ACTIONS(2791), - [anon_sym_explicit] = ACTIONS(2791), - [anon_sym_typename] = ACTIONS(2791), - [anon_sym_private] = ACTIONS(2791), - [anon_sym_template] = ACTIONS(2791), - [anon_sym_operator] = ACTIONS(2791), - [anon_sym_friend] = ACTIONS(2791), - [anon_sym_public] = ACTIONS(2791), - [anon_sym_protected] = ACTIONS(2791), - [anon_sym_static_assert] = ACTIONS(2791), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_explicit] = ACTIONS(129), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_operator] = ACTIONS(141), }, - [1803] = { - [sym_identifier] = ACTIONS(2767), - [aux_sym_preproc_def_token1] = ACTIONS(2767), - [aux_sym_preproc_if_token1] = ACTIONS(2767), - [aux_sym_preproc_if_token2] = ACTIONS(2767), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2767), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2767), - [aux_sym_preproc_else_token1] = ACTIONS(2767), - [aux_sym_preproc_elif_token1] = ACTIONS(2767), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2767), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2767), - [sym_preproc_directive] = ACTIONS(2767), - [anon_sym_LPAREN2] = ACTIONS(2769), - [anon_sym_TILDE] = ACTIONS(2769), - [anon_sym_STAR] = ACTIONS(2769), - [anon_sym_AMP_AMP] = ACTIONS(2769), - [anon_sym_AMP] = ACTIONS(2767), - [anon_sym_SEMI] = ACTIONS(2769), - [anon_sym___extension__] = ACTIONS(2767), - [anon_sym_typedef] = ACTIONS(2767), - [anon_sym_virtual] = ACTIONS(2767), - [anon_sym_extern] = ACTIONS(2767), - [anon_sym___attribute__] = ACTIONS(2767), - [anon_sym___attribute] = ACTIONS(2767), - [anon_sym_using] = ACTIONS(2767), - [anon_sym_COLON_COLON] = ACTIONS(2769), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2769), - [anon_sym___declspec] = ACTIONS(2767), - [anon_sym___based] = ACTIONS(2767), - [anon_sym_signed] = ACTIONS(2767), - [anon_sym_unsigned] = ACTIONS(2767), - [anon_sym_long] = ACTIONS(2767), - [anon_sym_short] = ACTIONS(2767), - [anon_sym_LBRACK] = ACTIONS(2767), - [anon_sym_static] = ACTIONS(2767), - [anon_sym_register] = ACTIONS(2767), - [anon_sym_inline] = ACTIONS(2767), - [anon_sym___inline] = ACTIONS(2767), - [anon_sym___inline__] = ACTIONS(2767), - [anon_sym___forceinline] = ACTIONS(2767), - [anon_sym_thread_local] = ACTIONS(2767), - [anon_sym___thread] = ACTIONS(2767), - [anon_sym_const] = ACTIONS(2767), - [anon_sym_constexpr] = ACTIONS(2767), - [anon_sym_volatile] = ACTIONS(2767), - [anon_sym_restrict] = ACTIONS(2767), - [anon_sym___restrict__] = ACTIONS(2767), - [anon_sym__Atomic] = ACTIONS(2767), - [anon_sym__Noreturn] = ACTIONS(2767), - [anon_sym_noreturn] = ACTIONS(2767), - [anon_sym__Nonnull] = ACTIONS(2767), - [anon_sym_mutable] = ACTIONS(2767), - [anon_sym_constinit] = ACTIONS(2767), - [anon_sym_consteval] = ACTIONS(2767), - [anon_sym_alignas] = ACTIONS(2767), - [anon_sym__Alignas] = ACTIONS(2767), - [sym_primitive_type] = ACTIONS(2767), - [anon_sym_enum] = ACTIONS(2767), - [anon_sym_class] = ACTIONS(2767), - [anon_sym_struct] = ACTIONS(2767), - [anon_sym_union] = ACTIONS(2767), + [1836] = { + [sym_identifier] = ACTIONS(3075), + [aux_sym_preproc_def_token1] = ACTIONS(3075), + [aux_sym_preproc_if_token1] = ACTIONS(3075), + [aux_sym_preproc_if_token2] = ACTIONS(3075), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3075), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3075), + [aux_sym_preproc_else_token1] = ACTIONS(3075), + [aux_sym_preproc_elif_token1] = ACTIONS(3075), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3075), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3075), + [sym_preproc_directive] = ACTIONS(3075), + [anon_sym_LPAREN2] = ACTIONS(3077), + [anon_sym_TILDE] = ACTIONS(3077), + [anon_sym_STAR] = ACTIONS(3077), + [anon_sym_AMP_AMP] = ACTIONS(3077), + [anon_sym_AMP] = ACTIONS(3075), + [anon_sym_SEMI] = ACTIONS(3077), + [anon_sym___extension__] = ACTIONS(3075), + [anon_sym_typedef] = ACTIONS(3075), + [anon_sym_virtual] = ACTIONS(3075), + [anon_sym_extern] = ACTIONS(3075), + [anon_sym___attribute__] = ACTIONS(3075), + [anon_sym___attribute] = ACTIONS(3075), + [anon_sym_using] = ACTIONS(3075), + [anon_sym_COLON_COLON] = ACTIONS(3077), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3077), + [anon_sym___declspec] = ACTIONS(3075), + [anon_sym___based] = ACTIONS(3075), + [anon_sym_signed] = ACTIONS(3075), + [anon_sym_unsigned] = ACTIONS(3075), + [anon_sym_long] = ACTIONS(3075), + [anon_sym_short] = ACTIONS(3075), + [anon_sym_LBRACK] = ACTIONS(3075), + [anon_sym_static] = ACTIONS(3075), + [anon_sym_register] = ACTIONS(3075), + [anon_sym_inline] = ACTIONS(3075), + [anon_sym___inline] = ACTIONS(3075), + [anon_sym___inline__] = ACTIONS(3075), + [anon_sym___forceinline] = ACTIONS(3075), + [anon_sym_thread_local] = ACTIONS(3075), + [anon_sym___thread] = ACTIONS(3075), + [anon_sym_const] = ACTIONS(3075), + [anon_sym_constexpr] = ACTIONS(3075), + [anon_sym_volatile] = ACTIONS(3075), + [anon_sym_restrict] = ACTIONS(3075), + [anon_sym___restrict__] = ACTIONS(3075), + [anon_sym__Atomic] = ACTIONS(3075), + [anon_sym__Noreturn] = ACTIONS(3075), + [anon_sym_noreturn] = ACTIONS(3075), + [anon_sym__Nonnull] = ACTIONS(3075), + [anon_sym_mutable] = ACTIONS(3075), + [anon_sym_constinit] = ACTIONS(3075), + [anon_sym_consteval] = ACTIONS(3075), + [anon_sym_alignas] = ACTIONS(3075), + [anon_sym__Alignas] = ACTIONS(3075), + [sym_primitive_type] = ACTIONS(3075), + [anon_sym_enum] = ACTIONS(3075), + [anon_sym_class] = ACTIONS(3075), + [anon_sym_struct] = ACTIONS(3075), + [anon_sym_union] = ACTIONS(3075), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2767), - [anon_sym_decltype] = ACTIONS(2767), - [anon_sym_explicit] = ACTIONS(2767), - [anon_sym_typename] = ACTIONS(2767), - [anon_sym_private] = ACTIONS(2767), - [anon_sym_template] = ACTIONS(2767), - [anon_sym_operator] = ACTIONS(2767), - [anon_sym_friend] = ACTIONS(2767), - [anon_sym_public] = ACTIONS(2767), - [anon_sym_protected] = ACTIONS(2767), - [anon_sym_static_assert] = ACTIONS(2767), - }, - [1804] = { - [sym_identifier] = ACTIONS(3089), - [aux_sym_preproc_def_token1] = ACTIONS(3089), - [aux_sym_preproc_if_token1] = ACTIONS(3089), - [aux_sym_preproc_if_token2] = ACTIONS(3089), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3089), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3089), - [aux_sym_preproc_else_token1] = ACTIONS(3089), - [aux_sym_preproc_elif_token1] = ACTIONS(3089), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3089), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3089), - [sym_preproc_directive] = ACTIONS(3089), - [anon_sym_LPAREN2] = ACTIONS(3091), - [anon_sym_TILDE] = ACTIONS(3091), - [anon_sym_STAR] = ACTIONS(3091), - [anon_sym_AMP_AMP] = ACTIONS(3091), - [anon_sym_AMP] = ACTIONS(3089), - [anon_sym_SEMI] = ACTIONS(3091), - [anon_sym___extension__] = ACTIONS(3089), - [anon_sym_typedef] = ACTIONS(3089), - [anon_sym_virtual] = ACTIONS(3089), - [anon_sym_extern] = ACTIONS(3089), - [anon_sym___attribute__] = ACTIONS(3089), - [anon_sym___attribute] = ACTIONS(3089), - [anon_sym_using] = ACTIONS(3089), - [anon_sym_COLON_COLON] = ACTIONS(3091), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3091), - [anon_sym___declspec] = ACTIONS(3089), - [anon_sym___based] = ACTIONS(3089), - [anon_sym_signed] = ACTIONS(3089), - [anon_sym_unsigned] = ACTIONS(3089), - [anon_sym_long] = ACTIONS(3089), - [anon_sym_short] = ACTIONS(3089), - [anon_sym_LBRACK] = ACTIONS(3089), - [anon_sym_static] = ACTIONS(3089), - [anon_sym_register] = ACTIONS(3089), - [anon_sym_inline] = ACTIONS(3089), - [anon_sym___inline] = ACTIONS(3089), - [anon_sym___inline__] = ACTIONS(3089), - [anon_sym___forceinline] = ACTIONS(3089), - [anon_sym_thread_local] = ACTIONS(3089), - [anon_sym___thread] = ACTIONS(3089), - [anon_sym_const] = ACTIONS(3089), - [anon_sym_constexpr] = ACTIONS(3089), - [anon_sym_volatile] = ACTIONS(3089), - [anon_sym_restrict] = ACTIONS(3089), - [anon_sym___restrict__] = ACTIONS(3089), - [anon_sym__Atomic] = ACTIONS(3089), - [anon_sym__Noreturn] = ACTIONS(3089), - [anon_sym_noreturn] = ACTIONS(3089), - [anon_sym__Nonnull] = ACTIONS(3089), - [anon_sym_mutable] = ACTIONS(3089), - [anon_sym_constinit] = ACTIONS(3089), - [anon_sym_consteval] = ACTIONS(3089), - [anon_sym_alignas] = ACTIONS(3089), - [anon_sym__Alignas] = ACTIONS(3089), - [sym_primitive_type] = ACTIONS(3089), - [anon_sym_enum] = ACTIONS(3089), - [anon_sym_class] = ACTIONS(3089), - [anon_sym_struct] = ACTIONS(3089), - [anon_sym_union] = ACTIONS(3089), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3089), - [anon_sym_decltype] = ACTIONS(3089), - [anon_sym_explicit] = ACTIONS(3089), - [anon_sym_typename] = ACTIONS(3089), - [anon_sym_private] = ACTIONS(3089), - [anon_sym_template] = ACTIONS(3089), - [anon_sym_operator] = ACTIONS(3089), - [anon_sym_friend] = ACTIONS(3089), - [anon_sym_public] = ACTIONS(3089), - [anon_sym_protected] = ACTIONS(3089), - [anon_sym_static_assert] = ACTIONS(3089), + [sym_auto] = ACTIONS(3075), + [anon_sym_decltype] = ACTIONS(3075), + [anon_sym_explicit] = ACTIONS(3075), + [anon_sym_typename] = ACTIONS(3075), + [anon_sym_private] = ACTIONS(3075), + [anon_sym_template] = ACTIONS(3075), + [anon_sym_operator] = ACTIONS(3075), + [anon_sym_friend] = ACTIONS(3075), + [anon_sym_public] = ACTIONS(3075), + [anon_sym_protected] = ACTIONS(3075), + [anon_sym_static_assert] = ACTIONS(3075), }, - [1805] = { - [sym_identifier] = ACTIONS(2935), - [aux_sym_preproc_def_token1] = ACTIONS(2935), - [aux_sym_preproc_if_token1] = ACTIONS(2935), - [aux_sym_preproc_if_token2] = ACTIONS(2935), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2935), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2935), - [aux_sym_preproc_else_token1] = ACTIONS(2935), - [aux_sym_preproc_elif_token1] = ACTIONS(2935), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2935), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2935), - [sym_preproc_directive] = ACTIONS(2935), - [anon_sym_LPAREN2] = ACTIONS(2937), - [anon_sym_TILDE] = ACTIONS(2937), - [anon_sym_STAR] = ACTIONS(2937), - [anon_sym_AMP_AMP] = ACTIONS(2937), - [anon_sym_AMP] = ACTIONS(2935), - [anon_sym_SEMI] = ACTIONS(2937), - [anon_sym___extension__] = ACTIONS(2935), - [anon_sym_typedef] = ACTIONS(2935), - [anon_sym_virtual] = ACTIONS(2935), - [anon_sym_extern] = ACTIONS(2935), - [anon_sym___attribute__] = ACTIONS(2935), - [anon_sym___attribute] = ACTIONS(2935), - [anon_sym_using] = ACTIONS(2935), - [anon_sym_COLON_COLON] = ACTIONS(2937), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2937), - [anon_sym___declspec] = ACTIONS(2935), - [anon_sym___based] = ACTIONS(2935), - [anon_sym_signed] = ACTIONS(2935), - [anon_sym_unsigned] = ACTIONS(2935), - [anon_sym_long] = ACTIONS(2935), - [anon_sym_short] = ACTIONS(2935), - [anon_sym_LBRACK] = ACTIONS(2935), - [anon_sym_static] = ACTIONS(2935), - [anon_sym_register] = ACTIONS(2935), - [anon_sym_inline] = ACTIONS(2935), - [anon_sym___inline] = ACTIONS(2935), - [anon_sym___inline__] = ACTIONS(2935), - [anon_sym___forceinline] = ACTIONS(2935), - [anon_sym_thread_local] = ACTIONS(2935), - [anon_sym___thread] = ACTIONS(2935), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_constexpr] = ACTIONS(2935), - [anon_sym_volatile] = ACTIONS(2935), - [anon_sym_restrict] = ACTIONS(2935), - [anon_sym___restrict__] = ACTIONS(2935), - [anon_sym__Atomic] = ACTIONS(2935), - [anon_sym__Noreturn] = ACTIONS(2935), - [anon_sym_noreturn] = ACTIONS(2935), - [anon_sym__Nonnull] = ACTIONS(2935), - [anon_sym_mutable] = ACTIONS(2935), - [anon_sym_constinit] = ACTIONS(2935), - [anon_sym_consteval] = ACTIONS(2935), - [anon_sym_alignas] = ACTIONS(2935), - [anon_sym__Alignas] = ACTIONS(2935), - [sym_primitive_type] = ACTIONS(2935), - [anon_sym_enum] = ACTIONS(2935), - [anon_sym_class] = ACTIONS(2935), - [anon_sym_struct] = ACTIONS(2935), - [anon_sym_union] = ACTIONS(2935), + [1837] = { + [sym__declaration_modifiers] = STATE(3363), + [sym_attribute_specifier] = STATE(3363), + [sym_attribute_declaration] = STATE(3363), + [sym_ms_declspec_modifier] = STATE(3363), + [sym_ms_based_modifier] = STATE(8864), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6450), + [sym_array_declarator] = STATE(6145), + [sym_storage_class_specifier] = STATE(3363), + [sym_type_qualifier] = STATE(3363), + [sym_alignas_qualifier] = STATE(3054), + [sym_decltype] = STATE(8569), + [sym_explicit_function_specifier] = STATE(3363), + [sym_operator_cast] = STATE(6908), + [sym__constructor_specifiers] = STATE(3363), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(8569), + [sym_template_function] = STATE(6145), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5569), + [sym_qualified_identifier] = STATE(6145), + [sym_qualified_operator_cast_identifier] = STATE(6908), + [sym_operator_name] = STATE(6145), + [aux_sym_operator_cast_definition_repeat1] = STATE(3363), + [sym_identifier] = ACTIONS(5481), + [anon_sym_LPAREN2] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(3001), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3003), + [anon_sym___extension__] = ACTIONS(5483), + [anon_sym_virtual] = ACTIONS(5485), + [anon_sym_extern] = ACTIONS(5487), + [anon_sym___attribute__] = ACTIONS(5489), + [anon_sym___attribute] = ACTIONS(5489), + [anon_sym_COLON_COLON] = ACTIONS(5491), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5493), + [anon_sym___declspec] = ACTIONS(5495), + [anon_sym___based] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(3015), + [anon_sym_static] = ACTIONS(5487), + [anon_sym_register] = ACTIONS(5487), + [anon_sym_inline] = ACTIONS(5487), + [anon_sym___inline] = ACTIONS(5487), + [anon_sym___inline__] = ACTIONS(5487), + [anon_sym___forceinline] = ACTIONS(5487), + [anon_sym_thread_local] = ACTIONS(5487), + [anon_sym___thread] = ACTIONS(5487), + [anon_sym_const] = ACTIONS(5483), + [anon_sym_constexpr] = ACTIONS(5483), + [anon_sym_volatile] = ACTIONS(5483), + [anon_sym_restrict] = ACTIONS(5483), + [anon_sym___restrict__] = ACTIONS(5483), + [anon_sym__Atomic] = ACTIONS(5483), + [anon_sym__Noreturn] = ACTIONS(5483), + [anon_sym_noreturn] = ACTIONS(5483), + [anon_sym__Nonnull] = ACTIONS(5483), + [anon_sym_mutable] = ACTIONS(5483), + [anon_sym_constinit] = ACTIONS(5483), + [anon_sym_consteval] = ACTIONS(5483), + [anon_sym_alignas] = ACTIONS(5497), + [anon_sym__Alignas] = ACTIONS(5497), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2935), - [anon_sym_decltype] = ACTIONS(2935), - [anon_sym_explicit] = ACTIONS(2935), - [anon_sym_typename] = ACTIONS(2935), - [anon_sym_private] = ACTIONS(2935), - [anon_sym_template] = ACTIONS(2935), - [anon_sym_operator] = ACTIONS(2935), - [anon_sym_friend] = ACTIONS(2935), - [anon_sym_public] = ACTIONS(2935), - [anon_sym_protected] = ACTIONS(2935), - [anon_sym_static_assert] = ACTIONS(2935), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_explicit] = ACTIONS(129), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_operator] = ACTIONS(141), }, - [1806] = { - [sym_identifier] = ACTIONS(2799), - [aux_sym_preproc_def_token1] = ACTIONS(2799), - [aux_sym_preproc_if_token1] = ACTIONS(2799), - [aux_sym_preproc_if_token2] = ACTIONS(2799), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2799), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2799), - [aux_sym_preproc_else_token1] = ACTIONS(2799), - [aux_sym_preproc_elif_token1] = ACTIONS(2799), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2799), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2799), - [sym_preproc_directive] = ACTIONS(2799), - [anon_sym_LPAREN2] = ACTIONS(2801), - [anon_sym_TILDE] = ACTIONS(2801), - [anon_sym_STAR] = ACTIONS(2801), - [anon_sym_AMP_AMP] = ACTIONS(2801), - [anon_sym_AMP] = ACTIONS(2799), - [anon_sym_SEMI] = ACTIONS(2801), - [anon_sym___extension__] = ACTIONS(2799), - [anon_sym_typedef] = ACTIONS(2799), - [anon_sym_virtual] = ACTIONS(2799), - [anon_sym_extern] = ACTIONS(2799), - [anon_sym___attribute__] = ACTIONS(2799), - [anon_sym___attribute] = ACTIONS(2799), - [anon_sym_using] = ACTIONS(2799), - [anon_sym_COLON_COLON] = ACTIONS(2801), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2801), - [anon_sym___declspec] = ACTIONS(2799), - [anon_sym___based] = ACTIONS(2799), - [anon_sym_signed] = ACTIONS(2799), - [anon_sym_unsigned] = ACTIONS(2799), - [anon_sym_long] = ACTIONS(2799), - [anon_sym_short] = ACTIONS(2799), - [anon_sym_LBRACK] = ACTIONS(2799), - [anon_sym_static] = ACTIONS(2799), - [anon_sym_register] = ACTIONS(2799), - [anon_sym_inline] = ACTIONS(2799), - [anon_sym___inline] = ACTIONS(2799), - [anon_sym___inline__] = ACTIONS(2799), - [anon_sym___forceinline] = ACTIONS(2799), - [anon_sym_thread_local] = ACTIONS(2799), - [anon_sym___thread] = ACTIONS(2799), - [anon_sym_const] = ACTIONS(2799), - [anon_sym_constexpr] = ACTIONS(2799), - [anon_sym_volatile] = ACTIONS(2799), - [anon_sym_restrict] = ACTIONS(2799), - [anon_sym___restrict__] = ACTIONS(2799), - [anon_sym__Atomic] = ACTIONS(2799), - [anon_sym__Noreturn] = ACTIONS(2799), - [anon_sym_noreturn] = ACTIONS(2799), - [anon_sym__Nonnull] = ACTIONS(2799), - [anon_sym_mutable] = ACTIONS(2799), - [anon_sym_constinit] = ACTIONS(2799), - [anon_sym_consteval] = ACTIONS(2799), - [anon_sym_alignas] = ACTIONS(2799), - [anon_sym__Alignas] = ACTIONS(2799), - [sym_primitive_type] = ACTIONS(2799), - [anon_sym_enum] = ACTIONS(2799), - [anon_sym_class] = ACTIONS(2799), - [anon_sym_struct] = ACTIONS(2799), - [anon_sym_union] = ACTIONS(2799), + [1838] = { + [sym__declaration_modifiers] = STATE(3363), + [sym_attribute_specifier] = STATE(3363), + [sym_attribute_declaration] = STATE(3363), + [sym_ms_declspec_modifier] = STATE(3363), + [sym_ms_based_modifier] = STATE(8864), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6342), + [sym_array_declarator] = STATE(6145), + [sym_storage_class_specifier] = STATE(3363), + [sym_type_qualifier] = STATE(3363), + [sym_alignas_qualifier] = STATE(3054), + [sym_decltype] = STATE(8569), + [sym_explicit_function_specifier] = STATE(3363), + [sym_operator_cast] = STATE(6908), + [sym__constructor_specifiers] = STATE(3363), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(8569), + [sym_template_function] = STATE(6145), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5569), + [sym_qualified_identifier] = STATE(6145), + [sym_qualified_operator_cast_identifier] = STATE(6908), + [sym_operator_name] = STATE(6145), + [aux_sym_operator_cast_definition_repeat1] = STATE(3363), + [sym_identifier] = ACTIONS(5481), + [anon_sym_LPAREN2] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(3001), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3003), + [anon_sym___extension__] = ACTIONS(5483), + [anon_sym_virtual] = ACTIONS(5485), + [anon_sym_extern] = ACTIONS(5487), + [anon_sym___attribute__] = ACTIONS(5489), + [anon_sym___attribute] = ACTIONS(5489), + [anon_sym_COLON_COLON] = ACTIONS(5491), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5493), + [anon_sym___declspec] = ACTIONS(5495), + [anon_sym___based] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(3015), + [anon_sym_static] = ACTIONS(5487), + [anon_sym_register] = ACTIONS(5487), + [anon_sym_inline] = ACTIONS(5487), + [anon_sym___inline] = ACTIONS(5487), + [anon_sym___inline__] = ACTIONS(5487), + [anon_sym___forceinline] = ACTIONS(5487), + [anon_sym_thread_local] = ACTIONS(5487), + [anon_sym___thread] = ACTIONS(5487), + [anon_sym_const] = ACTIONS(5483), + [anon_sym_constexpr] = ACTIONS(5483), + [anon_sym_volatile] = ACTIONS(5483), + [anon_sym_restrict] = ACTIONS(5483), + [anon_sym___restrict__] = ACTIONS(5483), + [anon_sym__Atomic] = ACTIONS(5483), + [anon_sym__Noreturn] = ACTIONS(5483), + [anon_sym_noreturn] = ACTIONS(5483), + [anon_sym__Nonnull] = ACTIONS(5483), + [anon_sym_mutable] = ACTIONS(5483), + [anon_sym_constinit] = ACTIONS(5483), + [anon_sym_consteval] = ACTIONS(5483), + [anon_sym_alignas] = ACTIONS(5497), + [anon_sym__Alignas] = ACTIONS(5497), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2799), - [anon_sym_decltype] = ACTIONS(2799), - [anon_sym_explicit] = ACTIONS(2799), - [anon_sym_typename] = ACTIONS(2799), - [anon_sym_private] = ACTIONS(2799), - [anon_sym_template] = ACTIONS(2799), - [anon_sym_operator] = ACTIONS(2799), - [anon_sym_friend] = ACTIONS(2799), - [anon_sym_public] = ACTIONS(2799), - [anon_sym_protected] = ACTIONS(2799), - [anon_sym_static_assert] = ACTIONS(2799), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_explicit] = ACTIONS(129), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_operator] = ACTIONS(141), }, - [1807] = { - [sym_identifier] = ACTIONS(2807), - [aux_sym_preproc_def_token1] = ACTIONS(2807), - [aux_sym_preproc_if_token1] = ACTIONS(2807), - [aux_sym_preproc_if_token2] = ACTIONS(2807), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2807), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2807), - [aux_sym_preproc_else_token1] = ACTIONS(2807), - [aux_sym_preproc_elif_token1] = ACTIONS(2807), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2807), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2807), - [sym_preproc_directive] = ACTIONS(2807), - [anon_sym_LPAREN2] = ACTIONS(2809), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_STAR] = ACTIONS(2809), - [anon_sym_AMP_AMP] = ACTIONS(2809), - [anon_sym_AMP] = ACTIONS(2807), - [anon_sym_SEMI] = ACTIONS(2809), - [anon_sym___extension__] = ACTIONS(2807), - [anon_sym_typedef] = ACTIONS(2807), - [anon_sym_virtual] = ACTIONS(2807), - [anon_sym_extern] = ACTIONS(2807), - [anon_sym___attribute__] = ACTIONS(2807), - [anon_sym___attribute] = ACTIONS(2807), - [anon_sym_using] = ACTIONS(2807), - [anon_sym_COLON_COLON] = ACTIONS(2809), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2809), - [anon_sym___declspec] = ACTIONS(2807), - [anon_sym___based] = ACTIONS(2807), - [anon_sym_signed] = ACTIONS(2807), - [anon_sym_unsigned] = ACTIONS(2807), - [anon_sym_long] = ACTIONS(2807), - [anon_sym_short] = ACTIONS(2807), - [anon_sym_LBRACK] = ACTIONS(2807), - [anon_sym_static] = ACTIONS(2807), - [anon_sym_register] = ACTIONS(2807), - [anon_sym_inline] = ACTIONS(2807), - [anon_sym___inline] = ACTIONS(2807), - [anon_sym___inline__] = ACTIONS(2807), - [anon_sym___forceinline] = ACTIONS(2807), - [anon_sym_thread_local] = ACTIONS(2807), - [anon_sym___thread] = ACTIONS(2807), - [anon_sym_const] = ACTIONS(2807), - [anon_sym_constexpr] = ACTIONS(2807), - [anon_sym_volatile] = ACTIONS(2807), - [anon_sym_restrict] = ACTIONS(2807), - [anon_sym___restrict__] = ACTIONS(2807), - [anon_sym__Atomic] = ACTIONS(2807), - [anon_sym__Noreturn] = ACTIONS(2807), - [anon_sym_noreturn] = ACTIONS(2807), - [anon_sym__Nonnull] = ACTIONS(2807), - [anon_sym_mutable] = ACTIONS(2807), - [anon_sym_constinit] = ACTIONS(2807), - [anon_sym_consteval] = ACTIONS(2807), - [anon_sym_alignas] = ACTIONS(2807), - [anon_sym__Alignas] = ACTIONS(2807), - [sym_primitive_type] = ACTIONS(2807), - [anon_sym_enum] = ACTIONS(2807), - [anon_sym_class] = ACTIONS(2807), - [anon_sym_struct] = ACTIONS(2807), - [anon_sym_union] = ACTIONS(2807), + [1839] = { + [sym_identifier] = ACTIONS(5605), + [aux_sym_preproc_def_token1] = ACTIONS(5605), + [aux_sym_preproc_if_token1] = ACTIONS(5605), + [aux_sym_preproc_if_token2] = ACTIONS(5605), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5605), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5605), + [aux_sym_preproc_else_token1] = ACTIONS(5605), + [aux_sym_preproc_elif_token1] = ACTIONS(5605), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5605), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5605), + [sym_preproc_directive] = ACTIONS(5605), + [anon_sym_LPAREN2] = ACTIONS(5607), + [anon_sym_TILDE] = ACTIONS(5607), + [anon_sym_STAR] = ACTIONS(5607), + [anon_sym_AMP_AMP] = ACTIONS(5607), + [anon_sym_AMP] = ACTIONS(5605), + [anon_sym_SEMI] = ACTIONS(5607), + [anon_sym___extension__] = ACTIONS(5605), + [anon_sym_typedef] = ACTIONS(5605), + [anon_sym_virtual] = ACTIONS(5605), + [anon_sym_extern] = ACTIONS(5605), + [anon_sym___attribute__] = ACTIONS(5605), + [anon_sym___attribute] = ACTIONS(5605), + [anon_sym_using] = ACTIONS(5605), + [anon_sym_COLON_COLON] = ACTIONS(5607), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5607), + [anon_sym___declspec] = ACTIONS(5605), + [anon_sym___based] = ACTIONS(5605), + [anon_sym_signed] = ACTIONS(5605), + [anon_sym_unsigned] = ACTIONS(5605), + [anon_sym_long] = ACTIONS(5605), + [anon_sym_short] = ACTIONS(5605), + [anon_sym_LBRACK] = ACTIONS(5605), + [anon_sym_static] = ACTIONS(5605), + [anon_sym_register] = ACTIONS(5605), + [anon_sym_inline] = ACTIONS(5605), + [anon_sym___inline] = ACTIONS(5605), + [anon_sym___inline__] = ACTIONS(5605), + [anon_sym___forceinline] = ACTIONS(5605), + [anon_sym_thread_local] = ACTIONS(5605), + [anon_sym___thread] = ACTIONS(5605), + [anon_sym_const] = ACTIONS(5605), + [anon_sym_constexpr] = ACTIONS(5605), + [anon_sym_volatile] = ACTIONS(5605), + [anon_sym_restrict] = ACTIONS(5605), + [anon_sym___restrict__] = ACTIONS(5605), + [anon_sym__Atomic] = ACTIONS(5605), + [anon_sym__Noreturn] = ACTIONS(5605), + [anon_sym_noreturn] = ACTIONS(5605), + [anon_sym__Nonnull] = ACTIONS(5605), + [anon_sym_mutable] = ACTIONS(5605), + [anon_sym_constinit] = ACTIONS(5605), + [anon_sym_consteval] = ACTIONS(5605), + [anon_sym_alignas] = ACTIONS(5605), + [anon_sym__Alignas] = ACTIONS(5605), + [sym_primitive_type] = ACTIONS(5605), + [anon_sym_enum] = ACTIONS(5605), + [anon_sym_class] = ACTIONS(5605), + [anon_sym_struct] = ACTIONS(5605), + [anon_sym_union] = ACTIONS(5605), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2807), - [anon_sym_decltype] = ACTIONS(2807), - [anon_sym_explicit] = ACTIONS(2807), - [anon_sym_typename] = ACTIONS(2807), - [anon_sym_private] = ACTIONS(2807), - [anon_sym_template] = ACTIONS(2807), - [anon_sym_operator] = ACTIONS(2807), - [anon_sym_friend] = ACTIONS(2807), - [anon_sym_public] = ACTIONS(2807), - [anon_sym_protected] = ACTIONS(2807), - [anon_sym_static_assert] = ACTIONS(2807), + [sym_auto] = ACTIONS(5605), + [anon_sym_decltype] = ACTIONS(5605), + [anon_sym_explicit] = ACTIONS(5605), + [anon_sym_typename] = ACTIONS(5605), + [anon_sym_private] = ACTIONS(5605), + [anon_sym_template] = ACTIONS(5605), + [anon_sym_operator] = ACTIONS(5605), + [anon_sym_friend] = ACTIONS(5605), + [anon_sym_public] = ACTIONS(5605), + [anon_sym_protected] = ACTIONS(5605), + [anon_sym_static_assert] = ACTIONS(5605), }, - [1808] = { + [1840] = { [sym_identifier] = ACTIONS(5609), [aux_sym_preproc_def_token1] = ACTIONS(5609), [aux_sym_preproc_if_token1] = ACTIONS(5609), @@ -255122,81 +259050,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(5609), [anon_sym_static_assert] = ACTIONS(5609), }, - [1809] = { - [sym_identifier] = ACTIONS(2939), - [aux_sym_preproc_def_token1] = ACTIONS(2939), - [aux_sym_preproc_if_token1] = ACTIONS(2939), - [aux_sym_preproc_if_token2] = ACTIONS(2939), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2939), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2939), - [aux_sym_preproc_else_token1] = ACTIONS(2939), - [aux_sym_preproc_elif_token1] = ACTIONS(2939), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2939), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2939), - [sym_preproc_directive] = ACTIONS(2939), - [anon_sym_LPAREN2] = ACTIONS(2941), - [anon_sym_TILDE] = ACTIONS(2941), - [anon_sym_STAR] = ACTIONS(2941), - [anon_sym_AMP_AMP] = ACTIONS(2941), - [anon_sym_AMP] = ACTIONS(2939), - [anon_sym_SEMI] = ACTIONS(2941), - [anon_sym___extension__] = ACTIONS(2939), - [anon_sym_typedef] = ACTIONS(2939), - [anon_sym_virtual] = ACTIONS(2939), - [anon_sym_extern] = ACTIONS(2939), - [anon_sym___attribute__] = ACTIONS(2939), - [anon_sym___attribute] = ACTIONS(2939), - [anon_sym_using] = ACTIONS(2939), - [anon_sym_COLON_COLON] = ACTIONS(2941), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2941), - [anon_sym___declspec] = ACTIONS(2939), - [anon_sym___based] = ACTIONS(2939), - [anon_sym_signed] = ACTIONS(2939), - [anon_sym_unsigned] = ACTIONS(2939), - [anon_sym_long] = ACTIONS(2939), - [anon_sym_short] = ACTIONS(2939), - [anon_sym_LBRACK] = ACTIONS(2939), - [anon_sym_static] = ACTIONS(2939), - [anon_sym_register] = ACTIONS(2939), - [anon_sym_inline] = ACTIONS(2939), - [anon_sym___inline] = ACTIONS(2939), - [anon_sym___inline__] = ACTIONS(2939), - [anon_sym___forceinline] = ACTIONS(2939), - [anon_sym_thread_local] = ACTIONS(2939), - [anon_sym___thread] = ACTIONS(2939), - [anon_sym_const] = ACTIONS(2939), - [anon_sym_constexpr] = ACTIONS(2939), - [anon_sym_volatile] = ACTIONS(2939), - [anon_sym_restrict] = ACTIONS(2939), - [anon_sym___restrict__] = ACTIONS(2939), - [anon_sym__Atomic] = ACTIONS(2939), - [anon_sym__Noreturn] = ACTIONS(2939), - [anon_sym_noreturn] = ACTIONS(2939), - [anon_sym__Nonnull] = ACTIONS(2939), - [anon_sym_mutable] = ACTIONS(2939), - [anon_sym_constinit] = ACTIONS(2939), - [anon_sym_consteval] = ACTIONS(2939), - [anon_sym_alignas] = ACTIONS(2939), - [anon_sym__Alignas] = ACTIONS(2939), - [sym_primitive_type] = ACTIONS(2939), - [anon_sym_enum] = ACTIONS(2939), - [anon_sym_class] = ACTIONS(2939), - [anon_sym_struct] = ACTIONS(2939), - [anon_sym_union] = ACTIONS(2939), + [1841] = { + [sym_identifier] = ACTIONS(3075), + [aux_sym_preproc_def_token1] = ACTIONS(3075), + [aux_sym_preproc_if_token1] = ACTIONS(3075), + [aux_sym_preproc_if_token2] = ACTIONS(3075), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3075), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3075), + [aux_sym_preproc_else_token1] = ACTIONS(3075), + [aux_sym_preproc_elif_token1] = ACTIONS(3075), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3075), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3075), + [sym_preproc_directive] = ACTIONS(3075), + [anon_sym_LPAREN2] = ACTIONS(3077), + [anon_sym_TILDE] = ACTIONS(3077), + [anon_sym_STAR] = ACTIONS(3077), + [anon_sym_AMP_AMP] = ACTIONS(3077), + [anon_sym_AMP] = ACTIONS(3075), + [anon_sym_SEMI] = ACTIONS(3077), + [anon_sym___extension__] = ACTIONS(3075), + [anon_sym_typedef] = ACTIONS(3075), + [anon_sym_virtual] = ACTIONS(3075), + [anon_sym_extern] = ACTIONS(3075), + [anon_sym___attribute__] = ACTIONS(3075), + [anon_sym___attribute] = ACTIONS(3075), + [anon_sym_using] = ACTIONS(3075), + [anon_sym_COLON_COLON] = ACTIONS(3077), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3077), + [anon_sym___declspec] = ACTIONS(3075), + [anon_sym___based] = ACTIONS(3075), + [anon_sym_signed] = ACTIONS(3075), + [anon_sym_unsigned] = ACTIONS(3075), + [anon_sym_long] = ACTIONS(3075), + [anon_sym_short] = ACTIONS(3075), + [anon_sym_LBRACK] = ACTIONS(3075), + [anon_sym_static] = ACTIONS(3075), + [anon_sym_register] = ACTIONS(3075), + [anon_sym_inline] = ACTIONS(3075), + [anon_sym___inline] = ACTIONS(3075), + [anon_sym___inline__] = ACTIONS(3075), + [anon_sym___forceinline] = ACTIONS(3075), + [anon_sym_thread_local] = ACTIONS(3075), + [anon_sym___thread] = ACTIONS(3075), + [anon_sym_const] = ACTIONS(3075), + [anon_sym_constexpr] = ACTIONS(3075), + [anon_sym_volatile] = ACTIONS(3075), + [anon_sym_restrict] = ACTIONS(3075), + [anon_sym___restrict__] = ACTIONS(3075), + [anon_sym__Atomic] = ACTIONS(3075), + [anon_sym__Noreturn] = ACTIONS(3075), + [anon_sym_noreturn] = ACTIONS(3075), + [anon_sym__Nonnull] = ACTIONS(3075), + [anon_sym_mutable] = ACTIONS(3075), + [anon_sym_constinit] = ACTIONS(3075), + [anon_sym_consteval] = ACTIONS(3075), + [anon_sym_alignas] = ACTIONS(3075), + [anon_sym__Alignas] = ACTIONS(3075), + [sym_primitive_type] = ACTIONS(3075), + [anon_sym_enum] = ACTIONS(3075), + [anon_sym_class] = ACTIONS(3075), + [anon_sym_struct] = ACTIONS(3075), + [anon_sym_union] = ACTIONS(3075), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2939), - [anon_sym_decltype] = ACTIONS(2939), - [anon_sym_explicit] = ACTIONS(2939), - [anon_sym_typename] = ACTIONS(2939), - [anon_sym_private] = ACTIONS(2939), - [anon_sym_template] = ACTIONS(2939), - [anon_sym_operator] = ACTIONS(2939), - [anon_sym_friend] = ACTIONS(2939), - [anon_sym_public] = ACTIONS(2939), - [anon_sym_protected] = ACTIONS(2939), - [anon_sym_static_assert] = ACTIONS(2939), + [sym_auto] = ACTIONS(3075), + [anon_sym_decltype] = ACTIONS(3075), + [anon_sym_explicit] = ACTIONS(3075), + [anon_sym_typename] = ACTIONS(3075), + [anon_sym_private] = ACTIONS(3075), + [anon_sym_template] = ACTIONS(3075), + [anon_sym_operator] = ACTIONS(3075), + [anon_sym_friend] = ACTIONS(3075), + [anon_sym_public] = ACTIONS(3075), + [anon_sym_protected] = ACTIONS(3075), + [anon_sym_static_assert] = ACTIONS(3075), }, - [1810] = { + [1842] = { [sym_identifier] = ACTIONS(5613), [aux_sym_preproc_def_token1] = ACTIONS(5613), [aux_sym_preproc_if_token1] = ACTIONS(5613), @@ -255270,193 +259198,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(5613), [anon_sym_static_assert] = ACTIONS(5613), }, - [1811] = { - [sym_identifier] = ACTIONS(2815), - [aux_sym_preproc_def_token1] = ACTIONS(2815), - [aux_sym_preproc_if_token1] = ACTIONS(2815), - [aux_sym_preproc_if_token2] = ACTIONS(2815), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2815), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2815), - [aux_sym_preproc_else_token1] = ACTIONS(2815), - [aux_sym_preproc_elif_token1] = ACTIONS(2815), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2815), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2815), - [sym_preproc_directive] = ACTIONS(2815), - [anon_sym_LPAREN2] = ACTIONS(2817), - [anon_sym_TILDE] = ACTIONS(2817), - [anon_sym_STAR] = ACTIONS(2817), - [anon_sym_AMP_AMP] = ACTIONS(2817), - [anon_sym_AMP] = ACTIONS(2815), - [anon_sym_SEMI] = ACTIONS(2817), - [anon_sym___extension__] = ACTIONS(2815), - [anon_sym_typedef] = ACTIONS(2815), - [anon_sym_virtual] = ACTIONS(2815), - [anon_sym_extern] = ACTIONS(2815), - [anon_sym___attribute__] = ACTIONS(2815), - [anon_sym___attribute] = ACTIONS(2815), - [anon_sym_using] = ACTIONS(2815), - [anon_sym_COLON_COLON] = ACTIONS(2817), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2817), - [anon_sym___declspec] = ACTIONS(2815), - [anon_sym___based] = ACTIONS(2815), - [anon_sym_signed] = ACTIONS(2815), - [anon_sym_unsigned] = ACTIONS(2815), - [anon_sym_long] = ACTIONS(2815), - [anon_sym_short] = ACTIONS(2815), - [anon_sym_LBRACK] = ACTIONS(2815), - [anon_sym_static] = ACTIONS(2815), - [anon_sym_register] = ACTIONS(2815), - [anon_sym_inline] = ACTIONS(2815), - [anon_sym___inline] = ACTIONS(2815), - [anon_sym___inline__] = ACTIONS(2815), - [anon_sym___forceinline] = ACTIONS(2815), - [anon_sym_thread_local] = ACTIONS(2815), - [anon_sym___thread] = ACTIONS(2815), - [anon_sym_const] = ACTIONS(2815), - [anon_sym_constexpr] = ACTIONS(2815), - [anon_sym_volatile] = ACTIONS(2815), - [anon_sym_restrict] = ACTIONS(2815), - [anon_sym___restrict__] = ACTIONS(2815), - [anon_sym__Atomic] = ACTIONS(2815), - [anon_sym__Noreturn] = ACTIONS(2815), - [anon_sym_noreturn] = ACTIONS(2815), - [anon_sym__Nonnull] = ACTIONS(2815), - [anon_sym_mutable] = ACTIONS(2815), - [anon_sym_constinit] = ACTIONS(2815), - [anon_sym_consteval] = ACTIONS(2815), - [anon_sym_alignas] = ACTIONS(2815), - [anon_sym__Alignas] = ACTIONS(2815), - [sym_primitive_type] = ACTIONS(2815), - [anon_sym_enum] = ACTIONS(2815), - [anon_sym_class] = ACTIONS(2815), - [anon_sym_struct] = ACTIONS(2815), - [anon_sym_union] = ACTIONS(2815), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2815), - [anon_sym_decltype] = ACTIONS(2815), - [anon_sym_explicit] = ACTIONS(2815), - [anon_sym_typename] = ACTIONS(2815), - [anon_sym_private] = ACTIONS(2815), - [anon_sym_template] = ACTIONS(2815), - [anon_sym_operator] = ACTIONS(2815), - [anon_sym_friend] = ACTIONS(2815), - [anon_sym_public] = ACTIONS(2815), - [anon_sym_protected] = ACTIONS(2815), - [anon_sym_static_assert] = ACTIONS(2815), - }, - [1812] = { - [sym__declaration_modifiers] = STATE(3282), - [sym_attribute_specifier] = STATE(3282), - [sym_attribute_declaration] = STATE(3282), - [sym_ms_declspec_modifier] = STATE(3282), - [sym_ms_based_modifier] = STATE(8682), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6275), - [sym_array_declarator] = STATE(5998), - [sym_storage_class_specifier] = STATE(3282), - [sym_type_qualifier] = STATE(3282), - [sym_alignas_qualifier] = STATE(2975), - [sym_decltype] = STATE(8601), - [sym_explicit_function_specifier] = STATE(3282), - [sym_operator_cast] = STATE(6796), - [sym__constructor_specifiers] = STATE(3282), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(8601), - [sym_template_function] = STATE(5998), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5591), - [sym_qualified_identifier] = STATE(5998), - [sym_qualified_operator_cast_identifier] = STATE(6796), - [sym_operator_name] = STATE(5998), - [aux_sym_operator_cast_definition_repeat1] = STATE(3282), - [sym_identifier] = ACTIONS(5460), - [anon_sym_LPAREN2] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2979), - [anon_sym_STAR] = ACTIONS(2981), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2983), - [anon_sym___extension__] = ACTIONS(5462), - [anon_sym_virtual] = ACTIONS(5464), - [anon_sym_extern] = ACTIONS(5466), - [anon_sym___attribute__] = ACTIONS(5468), - [anon_sym___attribute] = ACTIONS(5468), - [anon_sym_COLON_COLON] = ACTIONS(5470), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5472), - [anon_sym___declspec] = ACTIONS(5474), - [anon_sym___based] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(2995), - [anon_sym_static] = ACTIONS(5466), - [anon_sym_register] = ACTIONS(5466), - [anon_sym_inline] = ACTIONS(5466), - [anon_sym___inline] = ACTIONS(5466), - [anon_sym___inline__] = ACTIONS(5466), - [anon_sym___forceinline] = ACTIONS(5466), - [anon_sym_thread_local] = ACTIONS(5466), - [anon_sym___thread] = ACTIONS(5466), - [anon_sym_const] = ACTIONS(5462), - [anon_sym_constexpr] = ACTIONS(5462), - [anon_sym_volatile] = ACTIONS(5462), - [anon_sym_restrict] = ACTIONS(5462), - [anon_sym___restrict__] = ACTIONS(5462), - [anon_sym__Atomic] = ACTIONS(5462), - [anon_sym__Noreturn] = ACTIONS(5462), - [anon_sym_noreturn] = ACTIONS(5462), - [anon_sym__Nonnull] = ACTIONS(5462), - [anon_sym_mutable] = ACTIONS(5462), - [anon_sym_constinit] = ACTIONS(5462), - [anon_sym_consteval] = ACTIONS(5462), - [anon_sym_alignas] = ACTIONS(5476), - [anon_sym__Alignas] = ACTIONS(5476), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_operator] = ACTIONS(141), - }, - [1813] = { + [1843] = { [sym_identifier] = ACTIONS(5617), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5619), - [anon_sym_COMMA] = ACTIONS(5619), - [anon_sym_RPAREN] = ACTIONS(5619), + [aux_sym_preproc_def_token1] = ACTIONS(5617), + [aux_sym_preproc_if_token1] = ACTIONS(5617), + [aux_sym_preproc_if_token2] = ACTIONS(5617), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5617), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5617), + [aux_sym_preproc_else_token1] = ACTIONS(5617), + [aux_sym_preproc_elif_token1] = ACTIONS(5617), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5617), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5617), + [sym_preproc_directive] = ACTIONS(5617), [anon_sym_LPAREN2] = ACTIONS(5619), - [anon_sym_DASH] = ACTIONS(5617), - [anon_sym_PLUS] = ACTIONS(5617), + [anon_sym_TILDE] = ACTIONS(5619), [anon_sym_STAR] = ACTIONS(5619), - [anon_sym_SLASH] = ACTIONS(5617), - [anon_sym_PERCENT] = ACTIONS(5619), - [anon_sym_PIPE_PIPE] = ACTIONS(5619), [anon_sym_AMP_AMP] = ACTIONS(5619), - [anon_sym_PIPE] = ACTIONS(5617), - [anon_sym_CARET] = ACTIONS(5619), [anon_sym_AMP] = ACTIONS(5617), - [anon_sym_EQ_EQ] = ACTIONS(5619), - [anon_sym_BANG_EQ] = ACTIONS(5619), - [anon_sym_GT] = ACTIONS(5617), - [anon_sym_GT_EQ] = ACTIONS(5619), - [anon_sym_LT_EQ] = ACTIONS(5617), - [anon_sym_LT] = ACTIONS(5617), - [anon_sym_LT_LT] = ACTIONS(5619), - [anon_sym_GT_GT] = ACTIONS(5619), [anon_sym_SEMI] = ACTIONS(5619), [anon_sym___extension__] = ACTIONS(5617), + [anon_sym_typedef] = ACTIONS(5617), + [anon_sym_virtual] = ACTIONS(5617), + [anon_sym_extern] = ACTIONS(5617), [anon_sym___attribute__] = ACTIONS(5617), [anon_sym___attribute] = ACTIONS(5617), - [anon_sym_COLON] = ACTIONS(5617), - [anon_sym_COLON_COLON] = ACTIONS(5454), + [anon_sym_using] = ACTIONS(5617), + [anon_sym_COLON_COLON] = ACTIONS(5619), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5619), + [anon_sym___declspec] = ACTIONS(5617), [anon_sym___based] = ACTIONS(5617), - [anon_sym_LBRACE] = ACTIONS(5619), - [anon_sym_RBRACE] = ACTIONS(5619), [anon_sym_signed] = ACTIONS(5617), [anon_sym_unsigned] = ACTIONS(5617), [anon_sym_long] = ACTIONS(5617), [anon_sym_short] = ACTIONS(5617), - [anon_sym_LBRACK] = ACTIONS(5619), - [anon_sym_RBRACK] = ACTIONS(5619), + [anon_sym_LBRACK] = ACTIONS(5617), + [anon_sym_static] = ACTIONS(5617), + [anon_sym_register] = ACTIONS(5617), + [anon_sym_inline] = ACTIONS(5617), + [anon_sym___inline] = ACTIONS(5617), + [anon_sym___inline__] = ACTIONS(5617), + [anon_sym___forceinline] = ACTIONS(5617), + [anon_sym_thread_local] = ACTIONS(5617), + [anon_sym___thread] = ACTIONS(5617), [anon_sym_const] = ACTIONS(5617), [anon_sym_constexpr] = ACTIONS(5617), [anon_sym_volatile] = ACTIONS(5617), @@ -255472,101 +259255,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(5617), [anon_sym__Alignas] = ACTIONS(5617), [sym_primitive_type] = ACTIONS(5617), - [anon_sym_QMARK] = ACTIONS(5619), - [anon_sym_LT_EQ_GT] = ACTIONS(5619), - [anon_sym_or] = ACTIONS(5617), - [anon_sym_and] = ACTIONS(5617), - [anon_sym_bitor] = ACTIONS(5617), - [anon_sym_xor] = ACTIONS(5617), - [anon_sym_bitand] = ACTIONS(5617), - [anon_sym_not_eq] = ACTIONS(5617), - [anon_sym_DASH_DASH] = ACTIONS(5619), - [anon_sym_PLUS_PLUS] = ACTIONS(5619), - [anon_sym_DOT] = ACTIONS(5617), - [anon_sym_DOT_STAR] = ACTIONS(5619), - [anon_sym_DASH_GT] = ACTIONS(5619), + [anon_sym_enum] = ACTIONS(5617), + [anon_sym_class] = ACTIONS(5617), + [anon_sym_struct] = ACTIONS(5617), + [anon_sym_union] = ACTIONS(5617), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(5617), [anon_sym_decltype] = ACTIONS(5617), - [anon_sym_final] = ACTIONS(5617), - [anon_sym_override] = ACTIONS(5617), - [anon_sym_requires] = ACTIONS(5617), + [anon_sym_explicit] = ACTIONS(5617), + [anon_sym_typename] = ACTIONS(5617), + [anon_sym_private] = ACTIONS(5617), + [anon_sym_template] = ACTIONS(5617), + [anon_sym_operator] = ACTIONS(5617), + [anon_sym_friend] = ACTIONS(5617), + [anon_sym_public] = ACTIONS(5617), + [anon_sym_protected] = ACTIONS(5617), + [anon_sym_static_assert] = ACTIONS(5617), }, - [1814] = { - [sym_identifier] = ACTIONS(5617), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5619), - [anon_sym_COMMA] = ACTIONS(5619), - [anon_sym_RPAREN] = ACTIONS(5619), - [anon_sym_LPAREN2] = ACTIONS(5619), - [anon_sym_DASH] = ACTIONS(5617), - [anon_sym_PLUS] = ACTIONS(5617), - [anon_sym_STAR] = ACTIONS(5619), - [anon_sym_SLASH] = ACTIONS(5617), - [anon_sym_PERCENT] = ACTIONS(5619), - [anon_sym_PIPE_PIPE] = ACTIONS(5619), - [anon_sym_AMP_AMP] = ACTIONS(5619), - [anon_sym_PIPE] = ACTIONS(5617), - [anon_sym_CARET] = ACTIONS(5619), - [anon_sym_AMP] = ACTIONS(5617), - [anon_sym_EQ_EQ] = ACTIONS(5619), - [anon_sym_BANG_EQ] = ACTIONS(5619), - [anon_sym_GT] = ACTIONS(5617), - [anon_sym_GT_EQ] = ACTIONS(5619), - [anon_sym_LT_EQ] = ACTIONS(5617), - [anon_sym_LT] = ACTIONS(5617), - [anon_sym_LT_LT] = ACTIONS(5619), - [anon_sym_GT_GT] = ACTIONS(5619), - [anon_sym_SEMI] = ACTIONS(5619), - [anon_sym___extension__] = ACTIONS(5617), - [anon_sym___attribute__] = ACTIONS(5617), - [anon_sym___attribute] = ACTIONS(5617), - [anon_sym_COLON] = ACTIONS(5617), - [anon_sym_COLON_COLON] = ACTIONS(5454), - [anon_sym___based] = ACTIONS(5617), - [anon_sym_LBRACE] = ACTIONS(5619), - [anon_sym_RBRACE] = ACTIONS(5619), - [anon_sym_signed] = ACTIONS(5617), - [anon_sym_unsigned] = ACTIONS(5617), - [anon_sym_long] = ACTIONS(5617), - [anon_sym_short] = ACTIONS(5617), - [anon_sym_LBRACK] = ACTIONS(5619), - [anon_sym_RBRACK] = ACTIONS(5619), - [anon_sym_const] = ACTIONS(5617), - [anon_sym_constexpr] = ACTIONS(5617), - [anon_sym_volatile] = ACTIONS(5617), - [anon_sym_restrict] = ACTIONS(5617), - [anon_sym___restrict__] = ACTIONS(5617), - [anon_sym__Atomic] = ACTIONS(5617), - [anon_sym__Noreturn] = ACTIONS(5617), - [anon_sym_noreturn] = ACTIONS(5617), - [anon_sym__Nonnull] = ACTIONS(5617), - [anon_sym_mutable] = ACTIONS(5617), - [anon_sym_constinit] = ACTIONS(5617), - [anon_sym_consteval] = ACTIONS(5617), - [anon_sym_alignas] = ACTIONS(5617), - [anon_sym__Alignas] = ACTIONS(5617), - [sym_primitive_type] = ACTIONS(5617), - [anon_sym_QMARK] = ACTIONS(5619), - [anon_sym_LT_EQ_GT] = ACTIONS(5619), - [anon_sym_or] = ACTIONS(5617), - [anon_sym_and] = ACTIONS(5617), - [anon_sym_bitor] = ACTIONS(5617), - [anon_sym_xor] = ACTIONS(5617), - [anon_sym_bitand] = ACTIONS(5617), - [anon_sym_not_eq] = ACTIONS(5617), - [anon_sym_DASH_DASH] = ACTIONS(5619), - [anon_sym_PLUS_PLUS] = ACTIONS(5619), - [anon_sym_DOT] = ACTIONS(5617), - [anon_sym_DOT_STAR] = ACTIONS(5619), - [anon_sym_DASH_GT] = ACTIONS(5619), + [1844] = { + [sym__declaration_modifiers] = STATE(3363), + [sym_attribute_specifier] = STATE(3363), + [sym_attribute_declaration] = STATE(3363), + [sym_ms_declspec_modifier] = STATE(3363), + [sym_ms_based_modifier] = STATE(8864), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6449), + [sym_array_declarator] = STATE(6145), + [sym_storage_class_specifier] = STATE(3363), + [sym_type_qualifier] = STATE(3363), + [sym_alignas_qualifier] = STATE(3054), + [sym_decltype] = STATE(8569), + [sym_explicit_function_specifier] = STATE(3363), + [sym_operator_cast] = STATE(6926), + [sym__constructor_specifiers] = STATE(3363), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(8569), + [sym_template_function] = STATE(6145), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5569), + [sym_qualified_identifier] = STATE(6145), + [sym_qualified_operator_cast_identifier] = STATE(6926), + [sym_operator_name] = STATE(6145), + [aux_sym_operator_cast_definition_repeat1] = STATE(3363), + [sym_identifier] = ACTIONS(5481), + [anon_sym_LPAREN2] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(3001), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3003), + [anon_sym___extension__] = ACTIONS(5483), + [anon_sym_virtual] = ACTIONS(5485), + [anon_sym_extern] = ACTIONS(5487), + [anon_sym___attribute__] = ACTIONS(5489), + [anon_sym___attribute] = ACTIONS(5489), + [anon_sym_COLON_COLON] = ACTIONS(5491), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5493), + [anon_sym___declspec] = ACTIONS(5495), + [anon_sym___based] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(3015), + [anon_sym_static] = ACTIONS(5487), + [anon_sym_register] = ACTIONS(5487), + [anon_sym_inline] = ACTIONS(5487), + [anon_sym___inline] = ACTIONS(5487), + [anon_sym___inline__] = ACTIONS(5487), + [anon_sym___forceinline] = ACTIONS(5487), + [anon_sym_thread_local] = ACTIONS(5487), + [anon_sym___thread] = ACTIONS(5487), + [anon_sym_const] = ACTIONS(5483), + [anon_sym_constexpr] = ACTIONS(5483), + [anon_sym_volatile] = ACTIONS(5483), + [anon_sym_restrict] = ACTIONS(5483), + [anon_sym___restrict__] = ACTIONS(5483), + [anon_sym__Atomic] = ACTIONS(5483), + [anon_sym__Noreturn] = ACTIONS(5483), + [anon_sym_noreturn] = ACTIONS(5483), + [anon_sym__Nonnull] = ACTIONS(5483), + [anon_sym_mutable] = ACTIONS(5483), + [anon_sym_constinit] = ACTIONS(5483), + [anon_sym_consteval] = ACTIONS(5483), + [anon_sym_alignas] = ACTIONS(5497), + [anon_sym__Alignas] = ACTIONS(5497), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5617), - [anon_sym_decltype] = ACTIONS(5617), - [anon_sym_final] = ACTIONS(5617), - [anon_sym_override] = ACTIONS(5617), - [anon_sym_requires] = ACTIONS(5617), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_explicit] = ACTIONS(129), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_operator] = ACTIONS(141), }, - [1815] = { + [1845] = { + [sym__declaration_modifiers] = STATE(3363), + [sym_attribute_specifier] = STATE(3363), + [sym_attribute_declaration] = STATE(3363), + [sym_ms_declspec_modifier] = STATE(3363), + [sym_ms_based_modifier] = STATE(8864), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6315), + [sym_array_declarator] = STATE(6145), + [sym_storage_class_specifier] = STATE(3363), + [sym_type_qualifier] = STATE(3363), + [sym_alignas_qualifier] = STATE(3054), + [sym_decltype] = STATE(8569), + [sym_explicit_function_specifier] = STATE(3363), + [sym_operator_cast] = STATE(6891), + [sym__constructor_specifiers] = STATE(3363), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(8569), + [sym_template_function] = STATE(6145), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5569), + [sym_qualified_identifier] = STATE(6145), + [sym_qualified_operator_cast_identifier] = STATE(6891), + [sym_operator_name] = STATE(6145), + [aux_sym_operator_cast_definition_repeat1] = STATE(3363), + [sym_identifier] = ACTIONS(5481), + [anon_sym_LPAREN2] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(3001), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3003), + [anon_sym___extension__] = ACTIONS(5483), + [anon_sym_virtual] = ACTIONS(5485), + [anon_sym_extern] = ACTIONS(5487), + [anon_sym___attribute__] = ACTIONS(5489), + [anon_sym___attribute] = ACTIONS(5489), + [anon_sym_COLON_COLON] = ACTIONS(5491), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5493), + [anon_sym___declspec] = ACTIONS(5495), + [anon_sym___based] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(3015), + [anon_sym_static] = ACTIONS(5487), + [anon_sym_register] = ACTIONS(5487), + [anon_sym_inline] = ACTIONS(5487), + [anon_sym___inline] = ACTIONS(5487), + [anon_sym___inline__] = ACTIONS(5487), + [anon_sym___forceinline] = ACTIONS(5487), + [anon_sym_thread_local] = ACTIONS(5487), + [anon_sym___thread] = ACTIONS(5487), + [anon_sym_const] = ACTIONS(5483), + [anon_sym_constexpr] = ACTIONS(5483), + [anon_sym_volatile] = ACTIONS(5483), + [anon_sym_restrict] = ACTIONS(5483), + [anon_sym___restrict__] = ACTIONS(5483), + [anon_sym__Atomic] = ACTIONS(5483), + [anon_sym__Noreturn] = ACTIONS(5483), + [anon_sym_noreturn] = ACTIONS(5483), + [anon_sym__Nonnull] = ACTIONS(5483), + [anon_sym_mutable] = ACTIONS(5483), + [anon_sym_constinit] = ACTIONS(5483), + [anon_sym_consteval] = ACTIONS(5483), + [anon_sym_alignas] = ACTIONS(5497), + [anon_sym__Alignas] = ACTIONS(5497), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_explicit] = ACTIONS(129), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_operator] = ACTIONS(141), + }, + [1846] = { [sym_identifier] = ACTIONS(5621), [aux_sym_preproc_def_token1] = ACTIONS(5621), [aux_sym_preproc_if_token1] = ACTIONS(5621), @@ -255628,57 +259482,356 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(5621), [anon_sym_union] = ACTIONS(5621), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5621), - [anon_sym_decltype] = ACTIONS(5621), - [anon_sym_explicit] = ACTIONS(5621), - [anon_sym_typename] = ACTIONS(5621), - [anon_sym_private] = ACTIONS(5621), - [anon_sym_template] = ACTIONS(5621), - [anon_sym_operator] = ACTIONS(5621), - [anon_sym_friend] = ACTIONS(5621), - [anon_sym_public] = ACTIONS(5621), - [anon_sym_protected] = ACTIONS(5621), - [anon_sym_static_assert] = ACTIONS(5621), + [sym_auto] = ACTIONS(5621), + [anon_sym_decltype] = ACTIONS(5621), + [anon_sym_explicit] = ACTIONS(5621), + [anon_sym_typename] = ACTIONS(5621), + [anon_sym_private] = ACTIONS(5621), + [anon_sym_template] = ACTIONS(5621), + [anon_sym_operator] = ACTIONS(5621), + [anon_sym_friend] = ACTIONS(5621), + [anon_sym_public] = ACTIONS(5621), + [anon_sym_protected] = ACTIONS(5621), + [anon_sym_static_assert] = ACTIONS(5621), + }, + [1847] = { + [sym__declaration_modifiers] = STATE(3363), + [sym_attribute_specifier] = STATE(3363), + [sym_attribute_declaration] = STATE(3363), + [sym_ms_declspec_modifier] = STATE(3363), + [sym_ms_based_modifier] = STATE(8864), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6328), + [sym_array_declarator] = STATE(6145), + [sym_storage_class_specifier] = STATE(3363), + [sym_type_qualifier] = STATE(3363), + [sym_alignas_qualifier] = STATE(3054), + [sym_decltype] = STATE(8569), + [sym_explicit_function_specifier] = STATE(3363), + [sym_operator_cast] = STATE(6926), + [sym__constructor_specifiers] = STATE(3363), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(8569), + [sym_template_function] = STATE(6145), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5569), + [sym_qualified_identifier] = STATE(6145), + [sym_qualified_operator_cast_identifier] = STATE(6926), + [sym_operator_name] = STATE(6145), + [aux_sym_operator_cast_definition_repeat1] = STATE(3363), + [sym_identifier] = ACTIONS(5481), + [anon_sym_LPAREN2] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(3001), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3003), + [anon_sym___extension__] = ACTIONS(5483), + [anon_sym_virtual] = ACTIONS(5485), + [anon_sym_extern] = ACTIONS(5487), + [anon_sym___attribute__] = ACTIONS(5489), + [anon_sym___attribute] = ACTIONS(5489), + [anon_sym_COLON_COLON] = ACTIONS(5491), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5493), + [anon_sym___declspec] = ACTIONS(5495), + [anon_sym___based] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(3015), + [anon_sym_static] = ACTIONS(5487), + [anon_sym_register] = ACTIONS(5487), + [anon_sym_inline] = ACTIONS(5487), + [anon_sym___inline] = ACTIONS(5487), + [anon_sym___inline__] = ACTIONS(5487), + [anon_sym___forceinline] = ACTIONS(5487), + [anon_sym_thread_local] = ACTIONS(5487), + [anon_sym___thread] = ACTIONS(5487), + [anon_sym_const] = ACTIONS(5483), + [anon_sym_constexpr] = ACTIONS(5483), + [anon_sym_volatile] = ACTIONS(5483), + [anon_sym_restrict] = ACTIONS(5483), + [anon_sym___restrict__] = ACTIONS(5483), + [anon_sym__Atomic] = ACTIONS(5483), + [anon_sym__Noreturn] = ACTIONS(5483), + [anon_sym_noreturn] = ACTIONS(5483), + [anon_sym__Nonnull] = ACTIONS(5483), + [anon_sym_mutable] = ACTIONS(5483), + [anon_sym_constinit] = ACTIONS(5483), + [anon_sym_consteval] = ACTIONS(5483), + [anon_sym_alignas] = ACTIONS(5497), + [anon_sym__Alignas] = ACTIONS(5497), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_explicit] = ACTIONS(129), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_operator] = ACTIONS(141), + }, + [1848] = { + [sym__declaration_modifiers] = STATE(3363), + [sym_attribute_specifier] = STATE(3363), + [sym_attribute_declaration] = STATE(3363), + [sym_ms_declspec_modifier] = STATE(3363), + [sym_ms_based_modifier] = STATE(8864), + [sym__declarator] = STATE(6830), + [sym_parenthesized_declarator] = STATE(6145), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_function_declarator] = STATE(6352), + [sym_array_declarator] = STATE(6145), + [sym_storage_class_specifier] = STATE(3363), + [sym_type_qualifier] = STATE(3363), + [sym_alignas_qualifier] = STATE(3054), + [sym_decltype] = STATE(8569), + [sym_explicit_function_specifier] = STATE(3363), + [sym_operator_cast] = STATE(6884), + [sym__constructor_specifiers] = STATE(3363), + [sym_reference_declarator] = STATE(6145), + [sym_structured_binding_declarator] = STATE(6145), + [sym_template_type] = STATE(8569), + [sym_template_function] = STATE(6145), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5569), + [sym_qualified_identifier] = STATE(6145), + [sym_qualified_operator_cast_identifier] = STATE(6884), + [sym_operator_name] = STATE(6145), + [aux_sym_operator_cast_definition_repeat1] = STATE(3363), + [sym_identifier] = ACTIONS(5481), + [anon_sym_LPAREN2] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(3001), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3003), + [anon_sym___extension__] = ACTIONS(5483), + [anon_sym_virtual] = ACTIONS(5485), + [anon_sym_extern] = ACTIONS(5487), + [anon_sym___attribute__] = ACTIONS(5489), + [anon_sym___attribute] = ACTIONS(5489), + [anon_sym_COLON_COLON] = ACTIONS(5491), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5493), + [anon_sym___declspec] = ACTIONS(5495), + [anon_sym___based] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(3015), + [anon_sym_static] = ACTIONS(5487), + [anon_sym_register] = ACTIONS(5487), + [anon_sym_inline] = ACTIONS(5487), + [anon_sym___inline] = ACTIONS(5487), + [anon_sym___inline__] = ACTIONS(5487), + [anon_sym___forceinline] = ACTIONS(5487), + [anon_sym_thread_local] = ACTIONS(5487), + [anon_sym___thread] = ACTIONS(5487), + [anon_sym_const] = ACTIONS(5483), + [anon_sym_constexpr] = ACTIONS(5483), + [anon_sym_volatile] = ACTIONS(5483), + [anon_sym_restrict] = ACTIONS(5483), + [anon_sym___restrict__] = ACTIONS(5483), + [anon_sym__Atomic] = ACTIONS(5483), + [anon_sym__Noreturn] = ACTIONS(5483), + [anon_sym_noreturn] = ACTIONS(5483), + [anon_sym__Nonnull] = ACTIONS(5483), + [anon_sym_mutable] = ACTIONS(5483), + [anon_sym_constinit] = ACTIONS(5483), + [anon_sym_consteval] = ACTIONS(5483), + [anon_sym_alignas] = ACTIONS(5497), + [anon_sym__Alignas] = ACTIONS(5497), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_explicit] = ACTIONS(129), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_operator] = ACTIONS(141), + }, + [1849] = { + [sym_identifier] = ACTIONS(3079), + [aux_sym_preproc_def_token1] = ACTIONS(3079), + [aux_sym_preproc_if_token1] = ACTIONS(3079), + [aux_sym_preproc_if_token2] = ACTIONS(3079), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3079), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3079), + [aux_sym_preproc_else_token1] = ACTIONS(3079), + [aux_sym_preproc_elif_token1] = ACTIONS(3079), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3079), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3079), + [sym_preproc_directive] = ACTIONS(3079), + [anon_sym_LPAREN2] = ACTIONS(3081), + [anon_sym_TILDE] = ACTIONS(3081), + [anon_sym_STAR] = ACTIONS(3081), + [anon_sym_AMP_AMP] = ACTIONS(3081), + [anon_sym_AMP] = ACTIONS(3079), + [anon_sym_SEMI] = ACTIONS(3081), + [anon_sym___extension__] = ACTIONS(3079), + [anon_sym_typedef] = ACTIONS(3079), + [anon_sym_virtual] = ACTIONS(3079), + [anon_sym_extern] = ACTIONS(3079), + [anon_sym___attribute__] = ACTIONS(3079), + [anon_sym___attribute] = ACTIONS(3079), + [anon_sym_using] = ACTIONS(3079), + [anon_sym_COLON_COLON] = ACTIONS(3081), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3081), + [anon_sym___declspec] = ACTIONS(3079), + [anon_sym___based] = ACTIONS(3079), + [anon_sym_signed] = ACTIONS(3079), + [anon_sym_unsigned] = ACTIONS(3079), + [anon_sym_long] = ACTIONS(3079), + [anon_sym_short] = ACTIONS(3079), + [anon_sym_LBRACK] = ACTIONS(3079), + [anon_sym_static] = ACTIONS(3079), + [anon_sym_register] = ACTIONS(3079), + [anon_sym_inline] = ACTIONS(3079), + [anon_sym___inline] = ACTIONS(3079), + [anon_sym___inline__] = ACTIONS(3079), + [anon_sym___forceinline] = ACTIONS(3079), + [anon_sym_thread_local] = ACTIONS(3079), + [anon_sym___thread] = ACTIONS(3079), + [anon_sym_const] = ACTIONS(3079), + [anon_sym_constexpr] = ACTIONS(3079), + [anon_sym_volatile] = ACTIONS(3079), + [anon_sym_restrict] = ACTIONS(3079), + [anon_sym___restrict__] = ACTIONS(3079), + [anon_sym__Atomic] = ACTIONS(3079), + [anon_sym__Noreturn] = ACTIONS(3079), + [anon_sym_noreturn] = ACTIONS(3079), + [anon_sym__Nonnull] = ACTIONS(3079), + [anon_sym_mutable] = ACTIONS(3079), + [anon_sym_constinit] = ACTIONS(3079), + [anon_sym_consteval] = ACTIONS(3079), + [anon_sym_alignas] = ACTIONS(3079), + [anon_sym__Alignas] = ACTIONS(3079), + [sym_primitive_type] = ACTIONS(3079), + [anon_sym_enum] = ACTIONS(3079), + [anon_sym_class] = ACTIONS(3079), + [anon_sym_struct] = ACTIONS(3079), + [anon_sym_union] = ACTIONS(3079), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3079), + [anon_sym_decltype] = ACTIONS(3079), + [anon_sym_explicit] = ACTIONS(3079), + [anon_sym_typename] = ACTIONS(3079), + [anon_sym_private] = ACTIONS(3079), + [anon_sym_template] = ACTIONS(3079), + [anon_sym_operator] = ACTIONS(3079), + [anon_sym_friend] = ACTIONS(3079), + [anon_sym_public] = ACTIONS(3079), + [anon_sym_protected] = ACTIONS(3079), + [anon_sym_static_assert] = ACTIONS(3079), }, - [1816] = { + [1850] = { + [sym_identifier] = ACTIONS(3083), + [aux_sym_preproc_def_token1] = ACTIONS(3083), + [aux_sym_preproc_if_token1] = ACTIONS(3083), + [aux_sym_preproc_if_token2] = ACTIONS(3083), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3083), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3083), + [aux_sym_preproc_else_token1] = ACTIONS(3083), + [aux_sym_preproc_elif_token1] = ACTIONS(3083), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3083), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3083), + [sym_preproc_directive] = ACTIONS(3083), + [anon_sym_LPAREN2] = ACTIONS(3085), + [anon_sym_TILDE] = ACTIONS(3085), + [anon_sym_STAR] = ACTIONS(3085), + [anon_sym_AMP_AMP] = ACTIONS(3085), + [anon_sym_AMP] = ACTIONS(3083), + [anon_sym_SEMI] = ACTIONS(3085), + [anon_sym___extension__] = ACTIONS(3083), + [anon_sym_typedef] = ACTIONS(3083), + [anon_sym_virtual] = ACTIONS(3083), + [anon_sym_extern] = ACTIONS(3083), + [anon_sym___attribute__] = ACTIONS(3083), + [anon_sym___attribute] = ACTIONS(3083), + [anon_sym_using] = ACTIONS(3083), + [anon_sym_COLON_COLON] = ACTIONS(3085), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3085), + [anon_sym___declspec] = ACTIONS(3083), + [anon_sym___based] = ACTIONS(3083), + [anon_sym_signed] = ACTIONS(3083), + [anon_sym_unsigned] = ACTIONS(3083), + [anon_sym_long] = ACTIONS(3083), + [anon_sym_short] = ACTIONS(3083), + [anon_sym_LBRACK] = ACTIONS(3083), + [anon_sym_static] = ACTIONS(3083), + [anon_sym_register] = ACTIONS(3083), + [anon_sym_inline] = ACTIONS(3083), + [anon_sym___inline] = ACTIONS(3083), + [anon_sym___inline__] = ACTIONS(3083), + [anon_sym___forceinline] = ACTIONS(3083), + [anon_sym_thread_local] = ACTIONS(3083), + [anon_sym___thread] = ACTIONS(3083), + [anon_sym_const] = ACTIONS(3083), + [anon_sym_constexpr] = ACTIONS(3083), + [anon_sym_volatile] = ACTIONS(3083), + [anon_sym_restrict] = ACTIONS(3083), + [anon_sym___restrict__] = ACTIONS(3083), + [anon_sym__Atomic] = ACTIONS(3083), + [anon_sym__Noreturn] = ACTIONS(3083), + [anon_sym_noreturn] = ACTIONS(3083), + [anon_sym__Nonnull] = ACTIONS(3083), + [anon_sym_mutable] = ACTIONS(3083), + [anon_sym_constinit] = ACTIONS(3083), + [anon_sym_consteval] = ACTIONS(3083), + [anon_sym_alignas] = ACTIONS(3083), + [anon_sym__Alignas] = ACTIONS(3083), + [sym_primitive_type] = ACTIONS(3083), + [anon_sym_enum] = ACTIONS(3083), + [anon_sym_class] = ACTIONS(3083), + [anon_sym_struct] = ACTIONS(3083), + [anon_sym_union] = ACTIONS(3083), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3083), + [anon_sym_decltype] = ACTIONS(3083), + [anon_sym_explicit] = ACTIONS(3083), + [anon_sym_typename] = ACTIONS(3083), + [anon_sym_private] = ACTIONS(3083), + [anon_sym_template] = ACTIONS(3083), + [anon_sym_operator] = ACTIONS(3083), + [anon_sym_friend] = ACTIONS(3083), + [anon_sym_public] = ACTIONS(3083), + [anon_sym_protected] = ACTIONS(3083), + [anon_sym_static_assert] = ACTIONS(3083), + }, + [1851] = { [sym_identifier] = ACTIONS(5625), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5627), - [anon_sym_COMMA] = ACTIONS(5627), - [anon_sym_RPAREN] = ACTIONS(5627), + [aux_sym_preproc_def_token1] = ACTIONS(5625), + [aux_sym_preproc_if_token1] = ACTIONS(5625), + [aux_sym_preproc_if_token2] = ACTIONS(5625), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5625), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5625), + [aux_sym_preproc_else_token1] = ACTIONS(5625), + [aux_sym_preproc_elif_token1] = ACTIONS(5625), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5625), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5625), + [sym_preproc_directive] = ACTIONS(5625), [anon_sym_LPAREN2] = ACTIONS(5627), - [anon_sym_DASH] = ACTIONS(5625), - [anon_sym_PLUS] = ACTIONS(5625), + [anon_sym_TILDE] = ACTIONS(5627), [anon_sym_STAR] = ACTIONS(5627), - [anon_sym_SLASH] = ACTIONS(5625), - [anon_sym_PERCENT] = ACTIONS(5627), - [anon_sym_PIPE_PIPE] = ACTIONS(5627), [anon_sym_AMP_AMP] = ACTIONS(5627), - [anon_sym_PIPE] = ACTIONS(5625), - [anon_sym_CARET] = ACTIONS(5627), [anon_sym_AMP] = ACTIONS(5625), - [anon_sym_EQ_EQ] = ACTIONS(5627), - [anon_sym_BANG_EQ] = ACTIONS(5627), - [anon_sym_GT] = ACTIONS(5625), - [anon_sym_GT_EQ] = ACTIONS(5627), - [anon_sym_LT_EQ] = ACTIONS(5625), - [anon_sym_LT] = ACTIONS(5625), - [anon_sym_LT_LT] = ACTIONS(5627), - [anon_sym_GT_GT] = ACTIONS(5627), [anon_sym_SEMI] = ACTIONS(5627), [anon_sym___extension__] = ACTIONS(5625), + [anon_sym_typedef] = ACTIONS(5625), + [anon_sym_virtual] = ACTIONS(5625), + [anon_sym_extern] = ACTIONS(5625), [anon_sym___attribute__] = ACTIONS(5625), [anon_sym___attribute] = ACTIONS(5625), - [anon_sym_COLON] = ACTIONS(5625), - [anon_sym_COLON_COLON] = ACTIONS(5454), + [anon_sym_using] = ACTIONS(5625), + [anon_sym_COLON_COLON] = ACTIONS(5627), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5627), + [anon_sym___declspec] = ACTIONS(5625), [anon_sym___based] = ACTIONS(5625), - [anon_sym_LBRACE] = ACTIONS(5627), - [anon_sym_RBRACE] = ACTIONS(5627), [anon_sym_signed] = ACTIONS(5625), [anon_sym_unsigned] = ACTIONS(5625), [anon_sym_long] = ACTIONS(5625), [anon_sym_short] = ACTIONS(5625), - [anon_sym_LBRACK] = ACTIONS(5627), - [anon_sym_RBRACK] = ACTIONS(5627), + [anon_sym_LBRACK] = ACTIONS(5625), + [anon_sym_static] = ACTIONS(5625), + [anon_sym_register] = ACTIONS(5625), + [anon_sym_inline] = ACTIONS(5625), + [anon_sym___inline] = ACTIONS(5625), + [anon_sym___inline__] = ACTIONS(5625), + [anon_sym___forceinline] = ACTIONS(5625), + [anon_sym_thread_local] = ACTIONS(5625), + [anon_sym___thread] = ACTIONS(5625), [anon_sym_const] = ACTIONS(5625), [anon_sym_constexpr] = ACTIONS(5625), [anon_sym_volatile] = ACTIONS(5625), @@ -255694,139 +259847,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(5625), [anon_sym__Alignas] = ACTIONS(5625), [sym_primitive_type] = ACTIONS(5625), - [anon_sym_QMARK] = ACTIONS(5627), - [anon_sym_LT_EQ_GT] = ACTIONS(5627), - [anon_sym_or] = ACTIONS(5625), - [anon_sym_and] = ACTIONS(5625), - [anon_sym_bitor] = ACTIONS(5625), - [anon_sym_xor] = ACTIONS(5625), - [anon_sym_bitand] = ACTIONS(5625), - [anon_sym_not_eq] = ACTIONS(5625), - [anon_sym_DASH_DASH] = ACTIONS(5627), - [anon_sym_PLUS_PLUS] = ACTIONS(5627), - [anon_sym_DOT] = ACTIONS(5625), - [anon_sym_DOT_STAR] = ACTIONS(5627), - [anon_sym_DASH_GT] = ACTIONS(5627), + [anon_sym_enum] = ACTIONS(5625), + [anon_sym_class] = ACTIONS(5625), + [anon_sym_struct] = ACTIONS(5625), + [anon_sym_union] = ACTIONS(5625), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(5625), [anon_sym_decltype] = ACTIONS(5625), - [anon_sym_final] = ACTIONS(5625), - [anon_sym_override] = ACTIONS(5625), - [anon_sym_requires] = ACTIONS(5625), - }, - [1817] = { - [sym_identifier] = ACTIONS(2903), - [aux_sym_preproc_def_token1] = ACTIONS(2903), - [aux_sym_preproc_if_token1] = ACTIONS(2903), - [aux_sym_preproc_if_token2] = ACTIONS(2903), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2903), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2903), - [aux_sym_preproc_else_token1] = ACTIONS(2903), - [aux_sym_preproc_elif_token1] = ACTIONS(2903), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2903), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2903), - [sym_preproc_directive] = ACTIONS(2903), - [anon_sym_LPAREN2] = ACTIONS(2905), - [anon_sym_TILDE] = ACTIONS(2905), - [anon_sym_STAR] = ACTIONS(2905), - [anon_sym_AMP_AMP] = ACTIONS(2905), - [anon_sym_AMP] = ACTIONS(2903), - [anon_sym_SEMI] = ACTIONS(2905), - [anon_sym___extension__] = ACTIONS(2903), - [anon_sym_typedef] = ACTIONS(2903), - [anon_sym_virtual] = ACTIONS(2903), - [anon_sym_extern] = ACTIONS(2903), - [anon_sym___attribute__] = ACTIONS(2903), - [anon_sym___attribute] = ACTIONS(2903), - [anon_sym_using] = ACTIONS(2903), - [anon_sym_COLON_COLON] = ACTIONS(2905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2905), - [anon_sym___declspec] = ACTIONS(2903), - [anon_sym___based] = ACTIONS(2903), - [anon_sym_signed] = ACTIONS(2903), - [anon_sym_unsigned] = ACTIONS(2903), - [anon_sym_long] = ACTIONS(2903), - [anon_sym_short] = ACTIONS(2903), - [anon_sym_LBRACK] = ACTIONS(2903), - [anon_sym_static] = ACTIONS(2903), - [anon_sym_register] = ACTIONS(2903), - [anon_sym_inline] = ACTIONS(2903), - [anon_sym___inline] = ACTIONS(2903), - [anon_sym___inline__] = ACTIONS(2903), - [anon_sym___forceinline] = ACTIONS(2903), - [anon_sym_thread_local] = ACTIONS(2903), - [anon_sym___thread] = ACTIONS(2903), - [anon_sym_const] = ACTIONS(2903), - [anon_sym_constexpr] = ACTIONS(2903), - [anon_sym_volatile] = ACTIONS(2903), - [anon_sym_restrict] = ACTIONS(2903), - [anon_sym___restrict__] = ACTIONS(2903), - [anon_sym__Atomic] = ACTIONS(2903), - [anon_sym__Noreturn] = ACTIONS(2903), - [anon_sym_noreturn] = ACTIONS(2903), - [anon_sym__Nonnull] = ACTIONS(2903), - [anon_sym_mutable] = ACTIONS(2903), - [anon_sym_constinit] = ACTIONS(2903), - [anon_sym_consteval] = ACTIONS(2903), - [anon_sym_alignas] = ACTIONS(2903), - [anon_sym__Alignas] = ACTIONS(2903), - [sym_primitive_type] = ACTIONS(2903), - [anon_sym_enum] = ACTIONS(2903), - [anon_sym_class] = ACTIONS(2903), - [anon_sym_struct] = ACTIONS(2903), - [anon_sym_union] = ACTIONS(2903), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2903), - [anon_sym_decltype] = ACTIONS(2903), - [anon_sym_explicit] = ACTIONS(2903), - [anon_sym_typename] = ACTIONS(2903), - [anon_sym_private] = ACTIONS(2903), - [anon_sym_template] = ACTIONS(2903), - [anon_sym_operator] = ACTIONS(2903), - [anon_sym_friend] = ACTIONS(2903), - [anon_sym_public] = ACTIONS(2903), - [anon_sym_protected] = ACTIONS(2903), - [anon_sym_static_assert] = ACTIONS(2903), + [anon_sym_explicit] = ACTIONS(5625), + [anon_sym_typename] = ACTIONS(5625), + [anon_sym_private] = ACTIONS(5625), + [anon_sym_template] = ACTIONS(5625), + [anon_sym_operator] = ACTIONS(5625), + [anon_sym_friend] = ACTIONS(5625), + [anon_sym_public] = ACTIONS(5625), + [anon_sym_protected] = ACTIONS(5625), + [anon_sym_static_assert] = ACTIONS(5625), }, - [1818] = { + [1852] = { [sym_identifier] = ACTIONS(5629), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5631), - [anon_sym_COMMA] = ACTIONS(5631), - [anon_sym_RPAREN] = ACTIONS(5631), + [aux_sym_preproc_def_token1] = ACTIONS(5629), + [aux_sym_preproc_if_token1] = ACTIONS(5629), + [aux_sym_preproc_if_token2] = ACTIONS(5629), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5629), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5629), + [aux_sym_preproc_else_token1] = ACTIONS(5629), + [aux_sym_preproc_elif_token1] = ACTIONS(5629), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5629), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5629), + [sym_preproc_directive] = ACTIONS(5629), [anon_sym_LPAREN2] = ACTIONS(5631), - [anon_sym_DASH] = ACTIONS(5629), - [anon_sym_PLUS] = ACTIONS(5629), + [anon_sym_TILDE] = ACTIONS(5631), [anon_sym_STAR] = ACTIONS(5631), - [anon_sym_SLASH] = ACTIONS(5629), - [anon_sym_PERCENT] = ACTIONS(5631), - [anon_sym_PIPE_PIPE] = ACTIONS(5631), [anon_sym_AMP_AMP] = ACTIONS(5631), - [anon_sym_PIPE] = ACTIONS(5629), - [anon_sym_CARET] = ACTIONS(5631), [anon_sym_AMP] = ACTIONS(5629), - [anon_sym_EQ_EQ] = ACTIONS(5631), - [anon_sym_BANG_EQ] = ACTIONS(5631), - [anon_sym_GT] = ACTIONS(5629), - [anon_sym_GT_EQ] = ACTIONS(5631), - [anon_sym_LT_EQ] = ACTIONS(5629), - [anon_sym_LT] = ACTIONS(5629), - [anon_sym_LT_LT] = ACTIONS(5631), - [anon_sym_GT_GT] = ACTIONS(5631), [anon_sym_SEMI] = ACTIONS(5631), [anon_sym___extension__] = ACTIONS(5629), + [anon_sym_typedef] = ACTIONS(5629), + [anon_sym_virtual] = ACTIONS(5629), + [anon_sym_extern] = ACTIONS(5629), [anon_sym___attribute__] = ACTIONS(5629), [anon_sym___attribute] = ACTIONS(5629), - [anon_sym_COLON] = ACTIONS(5629), + [anon_sym_using] = ACTIONS(5629), [anon_sym_COLON_COLON] = ACTIONS(5631), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5631), + [anon_sym___declspec] = ACTIONS(5629), [anon_sym___based] = ACTIONS(5629), - [anon_sym_LBRACE] = ACTIONS(5631), - [anon_sym_RBRACE] = ACTIONS(5631), [anon_sym_signed] = ACTIONS(5629), [anon_sym_unsigned] = ACTIONS(5629), [anon_sym_long] = ACTIONS(5629), [anon_sym_short] = ACTIONS(5629), - [anon_sym_LBRACK] = ACTIONS(5631), - [anon_sym_RBRACK] = ACTIONS(5631), + [anon_sym_LBRACK] = ACTIONS(5629), + [anon_sym_static] = ACTIONS(5629), + [anon_sym_register] = ACTIONS(5629), + [anon_sym_inline] = ACTIONS(5629), + [anon_sym___inline] = ACTIONS(5629), + [anon_sym___inline__] = ACTIONS(5629), + [anon_sym___forceinline] = ACTIONS(5629), + [anon_sym_thread_local] = ACTIONS(5629), + [anon_sym___thread] = ACTIONS(5629), [anon_sym_const] = ACTIONS(5629), [anon_sym_constexpr] = ACTIONS(5629), [anon_sym_volatile] = ACTIONS(5629), @@ -255842,27 +259921,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(5629), [anon_sym__Alignas] = ACTIONS(5629), [sym_primitive_type] = ACTIONS(5629), - [anon_sym_QMARK] = ACTIONS(5631), - [anon_sym_LT_EQ_GT] = ACTIONS(5631), - [anon_sym_or] = ACTIONS(5629), - [anon_sym_and] = ACTIONS(5629), - [anon_sym_bitor] = ACTIONS(5629), - [anon_sym_xor] = ACTIONS(5629), - [anon_sym_bitand] = ACTIONS(5629), - [anon_sym_not_eq] = ACTIONS(5629), - [anon_sym_DASH_DASH] = ACTIONS(5631), - [anon_sym_PLUS_PLUS] = ACTIONS(5631), - [anon_sym_DOT] = ACTIONS(5629), - [anon_sym_DOT_STAR] = ACTIONS(5631), - [anon_sym_DASH_GT] = ACTIONS(5631), + [anon_sym_enum] = ACTIONS(5629), + [anon_sym_class] = ACTIONS(5629), + [anon_sym_struct] = ACTIONS(5629), + [anon_sym_union] = ACTIONS(5629), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(5629), [anon_sym_decltype] = ACTIONS(5629), - [anon_sym_final] = ACTIONS(5629), - [anon_sym_override] = ACTIONS(5629), - [anon_sym_requires] = ACTIONS(5629), + [anon_sym_explicit] = ACTIONS(5629), + [anon_sym_typename] = ACTIONS(5629), + [anon_sym_private] = ACTIONS(5629), + [anon_sym_template] = ACTIONS(5629), + [anon_sym_operator] = ACTIONS(5629), + [anon_sym_friend] = ACTIONS(5629), + [anon_sym_public] = ACTIONS(5629), + [anon_sym_protected] = ACTIONS(5629), + [anon_sym_static_assert] = ACTIONS(5629), }, - [1819] = { + [1853] = { + [sym_identifier] = ACTIONS(3095), + [aux_sym_preproc_def_token1] = ACTIONS(3095), + [aux_sym_preproc_if_token1] = ACTIONS(3095), + [aux_sym_preproc_if_token2] = ACTIONS(3095), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3095), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3095), + [aux_sym_preproc_else_token1] = ACTIONS(3095), + [aux_sym_preproc_elif_token1] = ACTIONS(3095), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3095), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3095), + [sym_preproc_directive] = ACTIONS(3095), + [anon_sym_LPAREN2] = ACTIONS(3097), + [anon_sym_TILDE] = ACTIONS(3097), + [anon_sym_STAR] = ACTIONS(3097), + [anon_sym_AMP_AMP] = ACTIONS(3097), + [anon_sym_AMP] = ACTIONS(3095), + [anon_sym_SEMI] = ACTIONS(3097), + [anon_sym___extension__] = ACTIONS(3095), + [anon_sym_typedef] = ACTIONS(3095), + [anon_sym_virtual] = ACTIONS(3095), + [anon_sym_extern] = ACTIONS(3095), + [anon_sym___attribute__] = ACTIONS(3095), + [anon_sym___attribute] = ACTIONS(3095), + [anon_sym_using] = ACTIONS(3095), + [anon_sym_COLON_COLON] = ACTIONS(3097), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3097), + [anon_sym___declspec] = ACTIONS(3095), + [anon_sym___based] = ACTIONS(3095), + [anon_sym_signed] = ACTIONS(3095), + [anon_sym_unsigned] = ACTIONS(3095), + [anon_sym_long] = ACTIONS(3095), + [anon_sym_short] = ACTIONS(3095), + [anon_sym_LBRACK] = ACTIONS(3095), + [anon_sym_static] = ACTIONS(3095), + [anon_sym_register] = ACTIONS(3095), + [anon_sym_inline] = ACTIONS(3095), + [anon_sym___inline] = ACTIONS(3095), + [anon_sym___inline__] = ACTIONS(3095), + [anon_sym___forceinline] = ACTIONS(3095), + [anon_sym_thread_local] = ACTIONS(3095), + [anon_sym___thread] = ACTIONS(3095), + [anon_sym_const] = ACTIONS(3095), + [anon_sym_constexpr] = ACTIONS(3095), + [anon_sym_volatile] = ACTIONS(3095), + [anon_sym_restrict] = ACTIONS(3095), + [anon_sym___restrict__] = ACTIONS(3095), + [anon_sym__Atomic] = ACTIONS(3095), + [anon_sym__Noreturn] = ACTIONS(3095), + [anon_sym_noreturn] = ACTIONS(3095), + [anon_sym__Nonnull] = ACTIONS(3095), + [anon_sym_mutable] = ACTIONS(3095), + [anon_sym_constinit] = ACTIONS(3095), + [anon_sym_consteval] = ACTIONS(3095), + [anon_sym_alignas] = ACTIONS(3095), + [anon_sym__Alignas] = ACTIONS(3095), + [sym_primitive_type] = ACTIONS(3095), + [anon_sym_enum] = ACTIONS(3095), + [anon_sym_class] = ACTIONS(3095), + [anon_sym_struct] = ACTIONS(3095), + [anon_sym_union] = ACTIONS(3095), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3095), + [anon_sym_decltype] = ACTIONS(3095), + [anon_sym_explicit] = ACTIONS(3095), + [anon_sym_typename] = ACTIONS(3095), + [anon_sym_private] = ACTIONS(3095), + [anon_sym_template] = ACTIONS(3095), + [anon_sym_operator] = ACTIONS(3095), + [anon_sym_friend] = ACTIONS(3095), + [anon_sym_public] = ACTIONS(3095), + [anon_sym_protected] = ACTIONS(3095), + [anon_sym_static_assert] = ACTIONS(3095), + }, + [1854] = { [sym_identifier] = ACTIONS(5633), [aux_sym_preproc_def_token1] = ACTIONS(5633), [aux_sym_preproc_if_token1] = ACTIONS(5633), @@ -255936,1080 +260086,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(5633), [anon_sym_static_assert] = ACTIONS(5633), }, - [1820] = { - [sym_identifier] = ACTIONS(5446), - [aux_sym_preproc_def_token1] = ACTIONS(5446), - [aux_sym_preproc_if_token1] = ACTIONS(5446), - [aux_sym_preproc_if_token2] = ACTIONS(5446), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5446), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5446), - [aux_sym_preproc_else_token1] = ACTIONS(5446), - [aux_sym_preproc_elif_token1] = ACTIONS(5446), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5446), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5446), - [sym_preproc_directive] = ACTIONS(5446), - [anon_sym_LPAREN2] = ACTIONS(5448), - [anon_sym_TILDE] = ACTIONS(5448), - [anon_sym_STAR] = ACTIONS(5448), - [anon_sym_AMP_AMP] = ACTIONS(5448), - [anon_sym_AMP] = ACTIONS(5446), - [anon_sym_SEMI] = ACTIONS(5448), - [anon_sym___extension__] = ACTIONS(5446), - [anon_sym_typedef] = ACTIONS(5446), - [anon_sym_virtual] = ACTIONS(5446), - [anon_sym_extern] = ACTIONS(5446), - [anon_sym___attribute__] = ACTIONS(5446), - [anon_sym___attribute] = ACTIONS(5446), - [anon_sym_using] = ACTIONS(5446), - [anon_sym_COLON_COLON] = ACTIONS(5448), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5448), - [anon_sym___declspec] = ACTIONS(5446), - [anon_sym___based] = ACTIONS(5446), - [anon_sym_signed] = ACTIONS(5446), - [anon_sym_unsigned] = ACTIONS(5446), - [anon_sym_long] = ACTIONS(5446), - [anon_sym_short] = ACTIONS(5446), - [anon_sym_LBRACK] = ACTIONS(5446), - [anon_sym_static] = ACTIONS(5446), - [anon_sym_register] = ACTIONS(5446), - [anon_sym_inline] = ACTIONS(5446), - [anon_sym___inline] = ACTIONS(5446), - [anon_sym___inline__] = ACTIONS(5446), - [anon_sym___forceinline] = ACTIONS(5446), - [anon_sym_thread_local] = ACTIONS(5446), - [anon_sym___thread] = ACTIONS(5446), - [anon_sym_const] = ACTIONS(5446), - [anon_sym_constexpr] = ACTIONS(5446), - [anon_sym_volatile] = ACTIONS(5446), - [anon_sym_restrict] = ACTIONS(5446), - [anon_sym___restrict__] = ACTIONS(5446), - [anon_sym__Atomic] = ACTIONS(5446), - [anon_sym__Noreturn] = ACTIONS(5446), - [anon_sym_noreturn] = ACTIONS(5446), - [anon_sym__Nonnull] = ACTIONS(5446), - [anon_sym_mutable] = ACTIONS(5446), - [anon_sym_constinit] = ACTIONS(5446), - [anon_sym_consteval] = ACTIONS(5446), - [anon_sym_alignas] = ACTIONS(5446), - [anon_sym__Alignas] = ACTIONS(5446), - [sym_primitive_type] = ACTIONS(5446), - [anon_sym_enum] = ACTIONS(5446), - [anon_sym_class] = ACTIONS(5446), - [anon_sym_struct] = ACTIONS(5446), - [anon_sym_union] = ACTIONS(5446), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5446), - [anon_sym_decltype] = ACTIONS(5446), - [anon_sym_explicit] = ACTIONS(5446), - [anon_sym_typename] = ACTIONS(5446), - [anon_sym_private] = ACTIONS(5446), - [anon_sym_template] = ACTIONS(5446), - [anon_sym_operator] = ACTIONS(5446), - [anon_sym_friend] = ACTIONS(5446), - [anon_sym_public] = ACTIONS(5446), - [anon_sym_protected] = ACTIONS(5446), - [anon_sym_static_assert] = ACTIONS(5446), - }, - [1821] = { - [sym_identifier] = ACTIONS(2843), - [aux_sym_preproc_def_token1] = ACTIONS(2843), - [aux_sym_preproc_if_token1] = ACTIONS(2843), - [aux_sym_preproc_if_token2] = ACTIONS(2843), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2843), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2843), - [aux_sym_preproc_else_token1] = ACTIONS(2843), - [aux_sym_preproc_elif_token1] = ACTIONS(2843), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2843), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2843), - [sym_preproc_directive] = ACTIONS(2843), - [anon_sym_LPAREN2] = ACTIONS(2845), - [anon_sym_TILDE] = ACTIONS(2845), - [anon_sym_STAR] = ACTIONS(2845), - [anon_sym_AMP_AMP] = ACTIONS(2845), - [anon_sym_AMP] = ACTIONS(2843), - [anon_sym_SEMI] = ACTIONS(2845), - [anon_sym___extension__] = ACTIONS(2843), - [anon_sym_typedef] = ACTIONS(2843), - [anon_sym_virtual] = ACTIONS(2843), - [anon_sym_extern] = ACTIONS(2843), - [anon_sym___attribute__] = ACTIONS(2843), - [anon_sym___attribute] = ACTIONS(2843), - [anon_sym_using] = ACTIONS(2843), - [anon_sym_COLON_COLON] = ACTIONS(2845), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2845), - [anon_sym___declspec] = ACTIONS(2843), - [anon_sym___based] = ACTIONS(2843), - [anon_sym_signed] = ACTIONS(2843), - [anon_sym_unsigned] = ACTIONS(2843), - [anon_sym_long] = ACTIONS(2843), - [anon_sym_short] = ACTIONS(2843), - [anon_sym_LBRACK] = ACTIONS(2843), - [anon_sym_static] = ACTIONS(2843), - [anon_sym_register] = ACTIONS(2843), - [anon_sym_inline] = ACTIONS(2843), - [anon_sym___inline] = ACTIONS(2843), - [anon_sym___inline__] = ACTIONS(2843), - [anon_sym___forceinline] = ACTIONS(2843), - [anon_sym_thread_local] = ACTIONS(2843), - [anon_sym___thread] = ACTIONS(2843), - [anon_sym_const] = ACTIONS(2843), - [anon_sym_constexpr] = ACTIONS(2843), - [anon_sym_volatile] = ACTIONS(2843), - [anon_sym_restrict] = ACTIONS(2843), - [anon_sym___restrict__] = ACTIONS(2843), - [anon_sym__Atomic] = ACTIONS(2843), - [anon_sym__Noreturn] = ACTIONS(2843), - [anon_sym_noreturn] = ACTIONS(2843), - [anon_sym__Nonnull] = ACTIONS(2843), - [anon_sym_mutable] = ACTIONS(2843), - [anon_sym_constinit] = ACTIONS(2843), - [anon_sym_consteval] = ACTIONS(2843), - [anon_sym_alignas] = ACTIONS(2843), - [anon_sym__Alignas] = ACTIONS(2843), - [sym_primitive_type] = ACTIONS(2843), - [anon_sym_enum] = ACTIONS(2843), - [anon_sym_class] = ACTIONS(2843), - [anon_sym_struct] = ACTIONS(2843), - [anon_sym_union] = ACTIONS(2843), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2843), - [anon_sym_decltype] = ACTIONS(2843), - [anon_sym_explicit] = ACTIONS(2843), - [anon_sym_typename] = ACTIONS(2843), - [anon_sym_private] = ACTIONS(2843), - [anon_sym_template] = ACTIONS(2843), - [anon_sym_operator] = ACTIONS(2843), - [anon_sym_friend] = ACTIONS(2843), - [anon_sym_public] = ACTIONS(2843), - [anon_sym_protected] = ACTIONS(2843), - [anon_sym_static_assert] = ACTIONS(2843), - }, - [1822] = { - [sym_identifier] = ACTIONS(2843), - [aux_sym_preproc_def_token1] = ACTIONS(2843), - [aux_sym_preproc_if_token1] = ACTIONS(2843), - [aux_sym_preproc_if_token2] = ACTIONS(2843), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2843), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2843), - [aux_sym_preproc_else_token1] = ACTIONS(2843), - [aux_sym_preproc_elif_token1] = ACTIONS(2843), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2843), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2843), - [sym_preproc_directive] = ACTIONS(2843), - [anon_sym_LPAREN2] = ACTIONS(2845), - [anon_sym_TILDE] = ACTIONS(2845), - [anon_sym_STAR] = ACTIONS(2845), - [anon_sym_AMP_AMP] = ACTIONS(2845), - [anon_sym_AMP] = ACTIONS(2843), - [anon_sym_SEMI] = ACTIONS(2845), - [anon_sym___extension__] = ACTIONS(2843), - [anon_sym_typedef] = ACTIONS(2843), - [anon_sym_virtual] = ACTIONS(2843), - [anon_sym_extern] = ACTIONS(2843), - [anon_sym___attribute__] = ACTIONS(2843), - [anon_sym___attribute] = ACTIONS(2843), - [anon_sym_using] = ACTIONS(2843), - [anon_sym_COLON_COLON] = ACTIONS(2845), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2845), - [anon_sym___declspec] = ACTIONS(2843), - [anon_sym___based] = ACTIONS(2843), - [anon_sym_signed] = ACTIONS(2843), - [anon_sym_unsigned] = ACTIONS(2843), - [anon_sym_long] = ACTIONS(2843), - [anon_sym_short] = ACTIONS(2843), - [anon_sym_LBRACK] = ACTIONS(2843), - [anon_sym_static] = ACTIONS(2843), - [anon_sym_register] = ACTIONS(2843), - [anon_sym_inline] = ACTIONS(2843), - [anon_sym___inline] = ACTIONS(2843), - [anon_sym___inline__] = ACTIONS(2843), - [anon_sym___forceinline] = ACTIONS(2843), - [anon_sym_thread_local] = ACTIONS(2843), - [anon_sym___thread] = ACTIONS(2843), - [anon_sym_const] = ACTIONS(2843), - [anon_sym_constexpr] = ACTIONS(2843), - [anon_sym_volatile] = ACTIONS(2843), - [anon_sym_restrict] = ACTIONS(2843), - [anon_sym___restrict__] = ACTIONS(2843), - [anon_sym__Atomic] = ACTIONS(2843), - [anon_sym__Noreturn] = ACTIONS(2843), - [anon_sym_noreturn] = ACTIONS(2843), - [anon_sym__Nonnull] = ACTIONS(2843), - [anon_sym_mutable] = ACTIONS(2843), - [anon_sym_constinit] = ACTIONS(2843), - [anon_sym_consteval] = ACTIONS(2843), - [anon_sym_alignas] = ACTIONS(2843), - [anon_sym__Alignas] = ACTIONS(2843), - [sym_primitive_type] = ACTIONS(2843), - [anon_sym_enum] = ACTIONS(2843), - [anon_sym_class] = ACTIONS(2843), - [anon_sym_struct] = ACTIONS(2843), - [anon_sym_union] = ACTIONS(2843), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2843), - [anon_sym_decltype] = ACTIONS(2843), - [anon_sym_explicit] = ACTIONS(2843), - [anon_sym_typename] = ACTIONS(2843), - [anon_sym_private] = ACTIONS(2843), - [anon_sym_template] = ACTIONS(2843), - [anon_sym_operator] = ACTIONS(2843), - [anon_sym_friend] = ACTIONS(2843), - [anon_sym_public] = ACTIONS(2843), - [anon_sym_protected] = ACTIONS(2843), - [anon_sym_static_assert] = ACTIONS(2843), - }, - [1823] = { - [sym_identifier] = ACTIONS(2847), - [aux_sym_preproc_def_token1] = ACTIONS(2847), - [aux_sym_preproc_if_token1] = ACTIONS(2847), - [aux_sym_preproc_if_token2] = ACTIONS(2847), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2847), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2847), - [aux_sym_preproc_else_token1] = ACTIONS(2847), - [aux_sym_preproc_elif_token1] = ACTIONS(2847), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2847), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2847), - [sym_preproc_directive] = ACTIONS(2847), - [anon_sym_LPAREN2] = ACTIONS(2849), - [anon_sym_TILDE] = ACTIONS(2849), - [anon_sym_STAR] = ACTIONS(2849), - [anon_sym_AMP_AMP] = ACTIONS(2849), - [anon_sym_AMP] = ACTIONS(2847), - [anon_sym_SEMI] = ACTIONS(2849), - [anon_sym___extension__] = ACTIONS(2847), - [anon_sym_typedef] = ACTIONS(2847), - [anon_sym_virtual] = ACTIONS(2847), - [anon_sym_extern] = ACTIONS(2847), - [anon_sym___attribute__] = ACTIONS(2847), - [anon_sym___attribute] = ACTIONS(2847), - [anon_sym_using] = ACTIONS(2847), - [anon_sym_COLON_COLON] = ACTIONS(2849), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2849), - [anon_sym___declspec] = ACTIONS(2847), - [anon_sym___based] = ACTIONS(2847), - [anon_sym_signed] = ACTIONS(2847), - [anon_sym_unsigned] = ACTIONS(2847), - [anon_sym_long] = ACTIONS(2847), - [anon_sym_short] = ACTIONS(2847), - [anon_sym_LBRACK] = ACTIONS(2847), - [anon_sym_static] = ACTIONS(2847), - [anon_sym_register] = ACTIONS(2847), - [anon_sym_inline] = ACTIONS(2847), - [anon_sym___inline] = ACTIONS(2847), - [anon_sym___inline__] = ACTIONS(2847), - [anon_sym___forceinline] = ACTIONS(2847), - [anon_sym_thread_local] = ACTIONS(2847), - [anon_sym___thread] = ACTIONS(2847), - [anon_sym_const] = ACTIONS(2847), - [anon_sym_constexpr] = ACTIONS(2847), - [anon_sym_volatile] = ACTIONS(2847), - [anon_sym_restrict] = ACTIONS(2847), - [anon_sym___restrict__] = ACTIONS(2847), - [anon_sym__Atomic] = ACTIONS(2847), - [anon_sym__Noreturn] = ACTIONS(2847), - [anon_sym_noreturn] = ACTIONS(2847), - [anon_sym__Nonnull] = ACTIONS(2847), - [anon_sym_mutable] = ACTIONS(2847), - [anon_sym_constinit] = ACTIONS(2847), - [anon_sym_consteval] = ACTIONS(2847), - [anon_sym_alignas] = ACTIONS(2847), - [anon_sym__Alignas] = ACTIONS(2847), - [sym_primitive_type] = ACTIONS(2847), - [anon_sym_enum] = ACTIONS(2847), - [anon_sym_class] = ACTIONS(2847), - [anon_sym_struct] = ACTIONS(2847), - [anon_sym_union] = ACTIONS(2847), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2847), - [anon_sym_decltype] = ACTIONS(2847), - [anon_sym_explicit] = ACTIONS(2847), - [anon_sym_typename] = ACTIONS(2847), - [anon_sym_private] = ACTIONS(2847), - [anon_sym_template] = ACTIONS(2847), - [anon_sym_operator] = ACTIONS(2847), - [anon_sym_friend] = ACTIONS(2847), - [anon_sym_public] = ACTIONS(2847), - [anon_sym_protected] = ACTIONS(2847), - [anon_sym_static_assert] = ACTIONS(2847), - }, - [1824] = { - [sym_identifier] = ACTIONS(5456), - [aux_sym_preproc_def_token1] = ACTIONS(5456), - [aux_sym_preproc_if_token1] = ACTIONS(5456), - [aux_sym_preproc_if_token2] = ACTIONS(5456), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5456), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5456), - [aux_sym_preproc_else_token1] = ACTIONS(5456), - [aux_sym_preproc_elif_token1] = ACTIONS(5456), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5456), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5456), - [sym_preproc_directive] = ACTIONS(5456), - [anon_sym_LPAREN2] = ACTIONS(5458), - [anon_sym_TILDE] = ACTIONS(5458), - [anon_sym_STAR] = ACTIONS(5458), - [anon_sym_AMP_AMP] = ACTIONS(5458), - [anon_sym_AMP] = ACTIONS(5456), - [anon_sym_SEMI] = ACTIONS(5458), - [anon_sym___extension__] = ACTIONS(5456), - [anon_sym_typedef] = ACTIONS(5456), - [anon_sym_virtual] = ACTIONS(5456), - [anon_sym_extern] = ACTIONS(5456), - [anon_sym___attribute__] = ACTIONS(5456), - [anon_sym___attribute] = ACTIONS(5456), - [anon_sym_using] = ACTIONS(5456), - [anon_sym_COLON_COLON] = ACTIONS(5458), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5458), - [anon_sym___declspec] = ACTIONS(5456), - [anon_sym___based] = ACTIONS(5456), - [anon_sym_signed] = ACTIONS(5456), - [anon_sym_unsigned] = ACTIONS(5456), - [anon_sym_long] = ACTIONS(5456), - [anon_sym_short] = ACTIONS(5456), - [anon_sym_LBRACK] = ACTIONS(5456), - [anon_sym_static] = ACTIONS(5456), - [anon_sym_register] = ACTIONS(5456), - [anon_sym_inline] = ACTIONS(5456), - [anon_sym___inline] = ACTIONS(5456), - [anon_sym___inline__] = ACTIONS(5456), - [anon_sym___forceinline] = ACTIONS(5456), - [anon_sym_thread_local] = ACTIONS(5456), - [anon_sym___thread] = ACTIONS(5456), - [anon_sym_const] = ACTIONS(5456), - [anon_sym_constexpr] = ACTIONS(5456), - [anon_sym_volatile] = ACTIONS(5456), - [anon_sym_restrict] = ACTIONS(5456), - [anon_sym___restrict__] = ACTIONS(5456), - [anon_sym__Atomic] = ACTIONS(5456), - [anon_sym__Noreturn] = ACTIONS(5456), - [anon_sym_noreturn] = ACTIONS(5456), - [anon_sym__Nonnull] = ACTIONS(5456), - [anon_sym_mutable] = ACTIONS(5456), - [anon_sym_constinit] = ACTIONS(5456), - [anon_sym_consteval] = ACTIONS(5456), - [anon_sym_alignas] = ACTIONS(5456), - [anon_sym__Alignas] = ACTIONS(5456), - [sym_primitive_type] = ACTIONS(5456), - [anon_sym_enum] = ACTIONS(5456), - [anon_sym_class] = ACTIONS(5456), - [anon_sym_struct] = ACTIONS(5456), - [anon_sym_union] = ACTIONS(5456), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5456), - [anon_sym_decltype] = ACTIONS(5456), - [anon_sym_explicit] = ACTIONS(5456), - [anon_sym_typename] = ACTIONS(5456), - [anon_sym_private] = ACTIONS(5456), - [anon_sym_template] = ACTIONS(5456), - [anon_sym_operator] = ACTIONS(5456), - [anon_sym_friend] = ACTIONS(5456), - [anon_sym_public] = ACTIONS(5456), - [anon_sym_protected] = ACTIONS(5456), - [anon_sym_static_assert] = ACTIONS(5456), - }, - [1825] = { - [sym_identifier] = ACTIONS(4951), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4953), - [anon_sym_COMMA] = ACTIONS(4953), - [anon_sym_RPAREN] = ACTIONS(4953), - [anon_sym_LPAREN2] = ACTIONS(4953), - [anon_sym_DASH] = ACTIONS(4951), - [anon_sym_PLUS] = ACTIONS(4951), - [anon_sym_STAR] = ACTIONS(4953), - [anon_sym_SLASH] = ACTIONS(4951), - [anon_sym_PERCENT] = ACTIONS(4953), - [anon_sym_PIPE_PIPE] = ACTIONS(4953), - [anon_sym_AMP_AMP] = ACTIONS(4953), - [anon_sym_PIPE] = ACTIONS(4951), - [anon_sym_CARET] = ACTIONS(4953), - [anon_sym_AMP] = ACTIONS(4951), - [anon_sym_EQ_EQ] = ACTIONS(4953), - [anon_sym_BANG_EQ] = ACTIONS(4953), - [anon_sym_GT] = ACTIONS(4951), - [anon_sym_GT_EQ] = ACTIONS(4953), - [anon_sym_LT_EQ] = ACTIONS(4951), - [anon_sym_LT] = ACTIONS(4951), - [anon_sym_LT_LT] = ACTIONS(4953), - [anon_sym_GT_GT] = ACTIONS(4953), - [anon_sym_SEMI] = ACTIONS(4953), - [anon_sym___extension__] = ACTIONS(4951), - [anon_sym___attribute__] = ACTIONS(4951), - [anon_sym___attribute] = ACTIONS(4951), - [anon_sym_COLON] = ACTIONS(4951), - [anon_sym_COLON_COLON] = ACTIONS(4953), - [anon_sym___based] = ACTIONS(4951), - [anon_sym_LBRACE] = ACTIONS(4953), - [anon_sym_RBRACE] = ACTIONS(4953), - [anon_sym_signed] = ACTIONS(4951), - [anon_sym_unsigned] = ACTIONS(4951), - [anon_sym_long] = ACTIONS(4951), - [anon_sym_short] = ACTIONS(4951), - [anon_sym_LBRACK] = ACTIONS(4953), - [anon_sym_RBRACK] = ACTIONS(4953), - [anon_sym_const] = ACTIONS(4951), - [anon_sym_constexpr] = ACTIONS(4951), - [anon_sym_volatile] = ACTIONS(4951), - [anon_sym_restrict] = ACTIONS(4951), - [anon_sym___restrict__] = ACTIONS(4951), - [anon_sym__Atomic] = ACTIONS(4951), - [anon_sym__Noreturn] = ACTIONS(4951), - [anon_sym_noreturn] = ACTIONS(4951), - [anon_sym__Nonnull] = ACTIONS(4951), - [anon_sym_mutable] = ACTIONS(4951), - [anon_sym_constinit] = ACTIONS(4951), - [anon_sym_consteval] = ACTIONS(4951), - [anon_sym_alignas] = ACTIONS(4951), - [anon_sym__Alignas] = ACTIONS(4951), - [sym_primitive_type] = ACTIONS(4951), - [anon_sym_QMARK] = ACTIONS(4953), - [anon_sym_LT_EQ_GT] = ACTIONS(4953), - [anon_sym_or] = ACTIONS(4951), - [anon_sym_and] = ACTIONS(4951), - [anon_sym_bitor] = ACTIONS(4951), - [anon_sym_xor] = ACTIONS(4951), - [anon_sym_bitand] = ACTIONS(4951), - [anon_sym_not_eq] = ACTIONS(4951), - [anon_sym_DASH_DASH] = ACTIONS(4953), - [anon_sym_PLUS_PLUS] = ACTIONS(4953), - [anon_sym_DOT] = ACTIONS(4951), - [anon_sym_DOT_STAR] = ACTIONS(4953), - [anon_sym_DASH_GT] = ACTIONS(4953), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4951), - [anon_sym_decltype] = ACTIONS(4951), - [anon_sym_final] = ACTIONS(4951), - [anon_sym_override] = ACTIONS(4951), - [anon_sym_requires] = ACTIONS(4951), - }, - [1826] = { - [sym_identifier] = ACTIONS(4959), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4961), - [anon_sym_COMMA] = ACTIONS(4961), - [anon_sym_RPAREN] = ACTIONS(4961), - [anon_sym_LPAREN2] = ACTIONS(4961), - [anon_sym_DASH] = ACTIONS(4959), - [anon_sym_PLUS] = ACTIONS(4959), - [anon_sym_STAR] = ACTIONS(4961), - [anon_sym_SLASH] = ACTIONS(4959), - [anon_sym_PERCENT] = ACTIONS(4961), - [anon_sym_PIPE_PIPE] = ACTIONS(4961), - [anon_sym_AMP_AMP] = ACTIONS(4961), - [anon_sym_PIPE] = ACTIONS(4959), - [anon_sym_CARET] = ACTIONS(4961), - [anon_sym_AMP] = ACTIONS(4959), - [anon_sym_EQ_EQ] = ACTIONS(4961), - [anon_sym_BANG_EQ] = ACTIONS(4961), - [anon_sym_GT] = ACTIONS(4959), - [anon_sym_GT_EQ] = ACTIONS(4961), - [anon_sym_LT_EQ] = ACTIONS(4959), - [anon_sym_LT] = ACTIONS(4959), - [anon_sym_LT_LT] = ACTIONS(4961), - [anon_sym_GT_GT] = ACTIONS(4961), - [anon_sym_SEMI] = ACTIONS(4961), - [anon_sym___extension__] = ACTIONS(4959), - [anon_sym___attribute__] = ACTIONS(4959), - [anon_sym___attribute] = ACTIONS(4959), - [anon_sym_COLON] = ACTIONS(4959), - [anon_sym_COLON_COLON] = ACTIONS(4961), - [anon_sym___based] = ACTIONS(4959), - [anon_sym_LBRACE] = ACTIONS(4961), - [anon_sym_RBRACE] = ACTIONS(4961), - [anon_sym_signed] = ACTIONS(4959), - [anon_sym_unsigned] = ACTIONS(4959), - [anon_sym_long] = ACTIONS(4959), - [anon_sym_short] = ACTIONS(4959), - [anon_sym_LBRACK] = ACTIONS(4961), - [anon_sym_RBRACK] = ACTIONS(4961), - [anon_sym_const] = ACTIONS(4959), - [anon_sym_constexpr] = ACTIONS(4959), - [anon_sym_volatile] = ACTIONS(4959), - [anon_sym_restrict] = ACTIONS(4959), - [anon_sym___restrict__] = ACTIONS(4959), - [anon_sym__Atomic] = ACTIONS(4959), - [anon_sym__Noreturn] = ACTIONS(4959), - [anon_sym_noreturn] = ACTIONS(4959), - [anon_sym__Nonnull] = ACTIONS(4959), - [anon_sym_mutable] = ACTIONS(4959), - [anon_sym_constinit] = ACTIONS(4959), - [anon_sym_consteval] = ACTIONS(4959), - [anon_sym_alignas] = ACTIONS(4959), - [anon_sym__Alignas] = ACTIONS(4959), - [sym_primitive_type] = ACTIONS(4959), - [anon_sym_QMARK] = ACTIONS(4961), - [anon_sym_LT_EQ_GT] = ACTIONS(4961), - [anon_sym_or] = ACTIONS(4959), - [anon_sym_and] = ACTIONS(4959), - [anon_sym_bitor] = ACTIONS(4959), - [anon_sym_xor] = ACTIONS(4959), - [anon_sym_bitand] = ACTIONS(4959), - [anon_sym_not_eq] = ACTIONS(4959), - [anon_sym_DASH_DASH] = ACTIONS(4961), - [anon_sym_PLUS_PLUS] = ACTIONS(4961), - [anon_sym_DOT] = ACTIONS(4959), - [anon_sym_DOT_STAR] = ACTIONS(4961), - [anon_sym_DASH_GT] = ACTIONS(4961), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4959), - [anon_sym_decltype] = ACTIONS(4959), - [anon_sym_final] = ACTIONS(4959), - [anon_sym_override] = ACTIONS(4959), - [anon_sym_requires] = ACTIONS(4959), - }, - [1827] = { - [sym_identifier] = ACTIONS(2851), - [aux_sym_preproc_def_token1] = ACTIONS(2851), - [aux_sym_preproc_if_token1] = ACTIONS(2851), - [aux_sym_preproc_if_token2] = ACTIONS(2851), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2851), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2851), - [aux_sym_preproc_else_token1] = ACTIONS(2851), - [aux_sym_preproc_elif_token1] = ACTIONS(2851), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2851), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2851), - [sym_preproc_directive] = ACTIONS(2851), - [anon_sym_LPAREN2] = ACTIONS(2853), - [anon_sym_TILDE] = ACTIONS(2853), - [anon_sym_STAR] = ACTIONS(2853), - [anon_sym_AMP_AMP] = ACTIONS(2853), - [anon_sym_AMP] = ACTIONS(2851), - [anon_sym_SEMI] = ACTIONS(2853), - [anon_sym___extension__] = ACTIONS(2851), - [anon_sym_typedef] = ACTIONS(2851), - [anon_sym_virtual] = ACTIONS(2851), - [anon_sym_extern] = ACTIONS(2851), - [anon_sym___attribute__] = ACTIONS(2851), - [anon_sym___attribute] = ACTIONS(2851), - [anon_sym_using] = ACTIONS(2851), - [anon_sym_COLON_COLON] = ACTIONS(2853), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2853), - [anon_sym___declspec] = ACTIONS(2851), - [anon_sym___based] = ACTIONS(2851), - [anon_sym_signed] = ACTIONS(2851), - [anon_sym_unsigned] = ACTIONS(2851), - [anon_sym_long] = ACTIONS(2851), - [anon_sym_short] = ACTIONS(2851), - [anon_sym_LBRACK] = ACTIONS(2851), - [anon_sym_static] = ACTIONS(2851), - [anon_sym_register] = ACTIONS(2851), - [anon_sym_inline] = ACTIONS(2851), - [anon_sym___inline] = ACTIONS(2851), - [anon_sym___inline__] = ACTIONS(2851), - [anon_sym___forceinline] = ACTIONS(2851), - [anon_sym_thread_local] = ACTIONS(2851), - [anon_sym___thread] = ACTIONS(2851), - [anon_sym_const] = ACTIONS(2851), - [anon_sym_constexpr] = ACTIONS(2851), - [anon_sym_volatile] = ACTIONS(2851), - [anon_sym_restrict] = ACTIONS(2851), - [anon_sym___restrict__] = ACTIONS(2851), - [anon_sym__Atomic] = ACTIONS(2851), - [anon_sym__Noreturn] = ACTIONS(2851), - [anon_sym_noreturn] = ACTIONS(2851), - [anon_sym__Nonnull] = ACTIONS(2851), - [anon_sym_mutable] = ACTIONS(2851), - [anon_sym_constinit] = ACTIONS(2851), - [anon_sym_consteval] = ACTIONS(2851), - [anon_sym_alignas] = ACTIONS(2851), - [anon_sym__Alignas] = ACTIONS(2851), - [sym_primitive_type] = ACTIONS(2851), - [anon_sym_enum] = ACTIONS(2851), - [anon_sym_class] = ACTIONS(2851), - [anon_sym_struct] = ACTIONS(2851), - [anon_sym_union] = ACTIONS(2851), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2851), - [anon_sym_decltype] = ACTIONS(2851), - [anon_sym_explicit] = ACTIONS(2851), - [anon_sym_typename] = ACTIONS(2851), - [anon_sym_private] = ACTIONS(2851), - [anon_sym_template] = ACTIONS(2851), - [anon_sym_operator] = ACTIONS(2851), - [anon_sym_friend] = ACTIONS(2851), - [anon_sym_public] = ACTIONS(2851), - [anon_sym_protected] = ACTIONS(2851), - [anon_sym_static_assert] = ACTIONS(2851), - }, - [1828] = { - [sym_identifier] = ACTIONS(2855), - [aux_sym_preproc_def_token1] = ACTIONS(2855), - [aux_sym_preproc_if_token1] = ACTIONS(2855), - [aux_sym_preproc_if_token2] = ACTIONS(2855), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2855), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2855), - [aux_sym_preproc_else_token1] = ACTIONS(2855), - [aux_sym_preproc_elif_token1] = ACTIONS(2855), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2855), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2855), - [sym_preproc_directive] = ACTIONS(2855), - [anon_sym_LPAREN2] = ACTIONS(2857), - [anon_sym_TILDE] = ACTIONS(2857), - [anon_sym_STAR] = ACTIONS(2857), - [anon_sym_AMP_AMP] = ACTIONS(2857), - [anon_sym_AMP] = ACTIONS(2855), - [anon_sym_SEMI] = ACTIONS(2857), - [anon_sym___extension__] = ACTIONS(2855), - [anon_sym_typedef] = ACTIONS(2855), - [anon_sym_virtual] = ACTIONS(2855), - [anon_sym_extern] = ACTIONS(2855), - [anon_sym___attribute__] = ACTIONS(2855), - [anon_sym___attribute] = ACTIONS(2855), - [anon_sym_using] = ACTIONS(2855), - [anon_sym_COLON_COLON] = ACTIONS(2857), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2857), - [anon_sym___declspec] = ACTIONS(2855), - [anon_sym___based] = ACTIONS(2855), - [anon_sym_signed] = ACTIONS(2855), - [anon_sym_unsigned] = ACTIONS(2855), - [anon_sym_long] = ACTIONS(2855), - [anon_sym_short] = ACTIONS(2855), - [anon_sym_LBRACK] = ACTIONS(2855), - [anon_sym_static] = ACTIONS(2855), - [anon_sym_register] = ACTIONS(2855), - [anon_sym_inline] = ACTIONS(2855), - [anon_sym___inline] = ACTIONS(2855), - [anon_sym___inline__] = ACTIONS(2855), - [anon_sym___forceinline] = ACTIONS(2855), - [anon_sym_thread_local] = ACTIONS(2855), - [anon_sym___thread] = ACTIONS(2855), - [anon_sym_const] = ACTIONS(2855), - [anon_sym_constexpr] = ACTIONS(2855), - [anon_sym_volatile] = ACTIONS(2855), - [anon_sym_restrict] = ACTIONS(2855), - [anon_sym___restrict__] = ACTIONS(2855), - [anon_sym__Atomic] = ACTIONS(2855), - [anon_sym__Noreturn] = ACTIONS(2855), - [anon_sym_noreturn] = ACTIONS(2855), - [anon_sym__Nonnull] = ACTIONS(2855), - [anon_sym_mutable] = ACTIONS(2855), - [anon_sym_constinit] = ACTIONS(2855), - [anon_sym_consteval] = ACTIONS(2855), - [anon_sym_alignas] = ACTIONS(2855), - [anon_sym__Alignas] = ACTIONS(2855), - [sym_primitive_type] = ACTIONS(2855), - [anon_sym_enum] = ACTIONS(2855), - [anon_sym_class] = ACTIONS(2855), - [anon_sym_struct] = ACTIONS(2855), - [anon_sym_union] = ACTIONS(2855), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2855), - [anon_sym_decltype] = ACTIONS(2855), - [anon_sym_explicit] = ACTIONS(2855), - [anon_sym_typename] = ACTIONS(2855), - [anon_sym_private] = ACTIONS(2855), - [anon_sym_template] = ACTIONS(2855), - [anon_sym_operator] = ACTIONS(2855), - [anon_sym_friend] = ACTIONS(2855), - [anon_sym_public] = ACTIONS(2855), - [anon_sym_protected] = ACTIONS(2855), - [anon_sym_static_assert] = ACTIONS(2855), - }, - [1829] = { - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token2] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [aux_sym_preproc_else_token1] = ACTIONS(2859), - [aux_sym_preproc_elif_token1] = ACTIONS(2859), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym___attribute] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym__Nonnull] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym__Alignas] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_private] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_friend] = ACTIONS(2859), - [anon_sym_public] = ACTIONS(2859), - [anon_sym_protected] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - }, - [1830] = { - [sym_identifier] = ACTIONS(4988), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4990), - [anon_sym_COMMA] = ACTIONS(4990), - [anon_sym_RPAREN] = ACTIONS(4990), - [anon_sym_LPAREN2] = ACTIONS(4990), - [anon_sym_DASH] = ACTIONS(4988), - [anon_sym_PLUS] = ACTIONS(4988), - [anon_sym_STAR] = ACTIONS(4990), - [anon_sym_SLASH] = ACTIONS(4988), - [anon_sym_PERCENT] = ACTIONS(4990), - [anon_sym_PIPE_PIPE] = ACTIONS(4990), - [anon_sym_AMP_AMP] = ACTIONS(4990), - [anon_sym_PIPE] = ACTIONS(4988), - [anon_sym_CARET] = ACTIONS(4990), - [anon_sym_AMP] = ACTIONS(4988), - [anon_sym_EQ_EQ] = ACTIONS(4990), - [anon_sym_BANG_EQ] = ACTIONS(4990), - [anon_sym_GT] = ACTIONS(4988), - [anon_sym_GT_EQ] = ACTIONS(4990), - [anon_sym_LT_EQ] = ACTIONS(4988), - [anon_sym_LT] = ACTIONS(4988), - [anon_sym_LT_LT] = ACTIONS(4990), - [anon_sym_GT_GT] = ACTIONS(4990), - [anon_sym_SEMI] = ACTIONS(4990), - [anon_sym___extension__] = ACTIONS(4988), - [anon_sym___attribute__] = ACTIONS(4988), - [anon_sym___attribute] = ACTIONS(4988), - [anon_sym_COLON] = ACTIONS(4988), - [anon_sym_COLON_COLON] = ACTIONS(4990), - [anon_sym___based] = ACTIONS(4988), - [anon_sym_LBRACE] = ACTIONS(4990), - [anon_sym_RBRACE] = ACTIONS(4990), - [anon_sym_signed] = ACTIONS(4988), - [anon_sym_unsigned] = ACTIONS(4988), - [anon_sym_long] = ACTIONS(4988), - [anon_sym_short] = ACTIONS(4988), - [anon_sym_LBRACK] = ACTIONS(4990), - [anon_sym_RBRACK] = ACTIONS(4990), - [anon_sym_const] = ACTIONS(4988), - [anon_sym_constexpr] = ACTIONS(4988), - [anon_sym_volatile] = ACTIONS(4988), - [anon_sym_restrict] = ACTIONS(4988), - [anon_sym___restrict__] = ACTIONS(4988), - [anon_sym__Atomic] = ACTIONS(4988), - [anon_sym__Noreturn] = ACTIONS(4988), - [anon_sym_noreturn] = ACTIONS(4988), - [anon_sym__Nonnull] = ACTIONS(4988), - [anon_sym_mutable] = ACTIONS(4988), - [anon_sym_constinit] = ACTIONS(4988), - [anon_sym_consteval] = ACTIONS(4988), - [anon_sym_alignas] = ACTIONS(4988), - [anon_sym__Alignas] = ACTIONS(4988), - [sym_primitive_type] = ACTIONS(4988), - [anon_sym_QMARK] = ACTIONS(4990), - [anon_sym_LT_EQ_GT] = ACTIONS(4990), - [anon_sym_or] = ACTIONS(4988), - [anon_sym_and] = ACTIONS(4988), - [anon_sym_bitor] = ACTIONS(4988), - [anon_sym_xor] = ACTIONS(4988), - [anon_sym_bitand] = ACTIONS(4988), - [anon_sym_not_eq] = ACTIONS(4988), - [anon_sym_DASH_DASH] = ACTIONS(4990), - [anon_sym_PLUS_PLUS] = ACTIONS(4990), - [anon_sym_DOT] = ACTIONS(4988), - [anon_sym_DOT_STAR] = ACTIONS(4990), - [anon_sym_DASH_GT] = ACTIONS(4990), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4988), - [anon_sym_decltype] = ACTIONS(4988), - [anon_sym_final] = ACTIONS(4988), - [anon_sym_override] = ACTIONS(4988), - [anon_sym_requires] = ACTIONS(4988), - }, - [1831] = { - [sym__declaration_modifiers] = STATE(3282), - [sym_attribute_specifier] = STATE(3282), - [sym_attribute_declaration] = STATE(3282), - [sym_ms_declspec_modifier] = STATE(3282), - [sym_ms_based_modifier] = STATE(8682), - [sym__declarator] = STATE(6744), - [sym_parenthesized_declarator] = STATE(5998), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_function_declarator] = STATE(6296), - [sym_array_declarator] = STATE(5998), - [sym_storage_class_specifier] = STATE(3282), - [sym_type_qualifier] = STATE(3282), - [sym_alignas_qualifier] = STATE(2975), - [sym_decltype] = STATE(8601), - [sym_explicit_function_specifier] = STATE(3282), - [sym_operator_cast] = STATE(6785), - [sym__constructor_specifiers] = STATE(3282), - [sym_reference_declarator] = STATE(5998), - [sym_structured_binding_declarator] = STATE(5998), - [sym_template_type] = STATE(8601), - [sym_template_function] = STATE(5998), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5591), - [sym_qualified_identifier] = STATE(5998), - [sym_qualified_operator_cast_identifier] = STATE(6785), - [sym_operator_name] = STATE(5998), - [aux_sym_operator_cast_definition_repeat1] = STATE(3282), - [sym_identifier] = ACTIONS(5460), - [anon_sym_LPAREN2] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2979), - [anon_sym_STAR] = ACTIONS(2981), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2983), - [anon_sym___extension__] = ACTIONS(5462), - [anon_sym_virtual] = ACTIONS(5464), - [anon_sym_extern] = ACTIONS(5466), - [anon_sym___attribute__] = ACTIONS(5468), - [anon_sym___attribute] = ACTIONS(5468), - [anon_sym_COLON_COLON] = ACTIONS(5470), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5472), - [anon_sym___declspec] = ACTIONS(5474), - [anon_sym___based] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(2995), - [anon_sym_static] = ACTIONS(5466), - [anon_sym_register] = ACTIONS(5466), - [anon_sym_inline] = ACTIONS(5466), - [anon_sym___inline] = ACTIONS(5466), - [anon_sym___inline__] = ACTIONS(5466), - [anon_sym___forceinline] = ACTIONS(5466), - [anon_sym_thread_local] = ACTIONS(5466), - [anon_sym___thread] = ACTIONS(5466), - [anon_sym_const] = ACTIONS(5462), - [anon_sym_constexpr] = ACTIONS(5462), - [anon_sym_volatile] = ACTIONS(5462), - [anon_sym_restrict] = ACTIONS(5462), - [anon_sym___restrict__] = ACTIONS(5462), - [anon_sym__Atomic] = ACTIONS(5462), - [anon_sym__Noreturn] = ACTIONS(5462), - [anon_sym_noreturn] = ACTIONS(5462), - [anon_sym__Nonnull] = ACTIONS(5462), - [anon_sym_mutable] = ACTIONS(5462), - [anon_sym_constinit] = ACTIONS(5462), - [anon_sym_consteval] = ACTIONS(5462), - [anon_sym_alignas] = ACTIONS(5476), - [anon_sym__Alignas] = ACTIONS(5476), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_operator] = ACTIONS(141), - }, - [1832] = { - [sym_identifier] = ACTIONS(2771), - [aux_sym_preproc_def_token1] = ACTIONS(2771), - [aux_sym_preproc_if_token1] = ACTIONS(2771), - [aux_sym_preproc_if_token2] = ACTIONS(2771), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2771), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2771), - [aux_sym_preproc_else_token1] = ACTIONS(2771), - [aux_sym_preproc_elif_token1] = ACTIONS(2771), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2771), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2771), - [sym_preproc_directive] = ACTIONS(2771), - [anon_sym_LPAREN2] = ACTIONS(2773), - [anon_sym_TILDE] = ACTIONS(2773), - [anon_sym_STAR] = ACTIONS(2773), - [anon_sym_AMP_AMP] = ACTIONS(2773), - [anon_sym_AMP] = ACTIONS(2771), - [anon_sym_SEMI] = ACTIONS(2773), - [anon_sym___extension__] = ACTIONS(2771), - [anon_sym_typedef] = ACTIONS(2771), - [anon_sym_virtual] = ACTIONS(2771), - [anon_sym_extern] = ACTIONS(2771), - [anon_sym___attribute__] = ACTIONS(2771), - [anon_sym___attribute] = ACTIONS(2771), - [anon_sym_using] = ACTIONS(2771), - [anon_sym_COLON_COLON] = ACTIONS(2773), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2773), - [anon_sym___declspec] = ACTIONS(2771), - [anon_sym___based] = ACTIONS(2771), - [anon_sym_signed] = ACTIONS(2771), - [anon_sym_unsigned] = ACTIONS(2771), - [anon_sym_long] = ACTIONS(2771), - [anon_sym_short] = ACTIONS(2771), - [anon_sym_LBRACK] = ACTIONS(2771), - [anon_sym_static] = ACTIONS(2771), - [anon_sym_register] = ACTIONS(2771), - [anon_sym_inline] = ACTIONS(2771), - [anon_sym___inline] = ACTIONS(2771), - [anon_sym___inline__] = ACTIONS(2771), - [anon_sym___forceinline] = ACTIONS(2771), - [anon_sym_thread_local] = ACTIONS(2771), - [anon_sym___thread] = ACTIONS(2771), - [anon_sym_const] = ACTIONS(2771), - [anon_sym_constexpr] = ACTIONS(2771), - [anon_sym_volatile] = ACTIONS(2771), - [anon_sym_restrict] = ACTIONS(2771), - [anon_sym___restrict__] = ACTIONS(2771), - [anon_sym__Atomic] = ACTIONS(2771), - [anon_sym__Noreturn] = ACTIONS(2771), - [anon_sym_noreturn] = ACTIONS(2771), - [anon_sym__Nonnull] = ACTIONS(2771), - [anon_sym_mutable] = ACTIONS(2771), - [anon_sym_constinit] = ACTIONS(2771), - [anon_sym_consteval] = ACTIONS(2771), - [anon_sym_alignas] = ACTIONS(2771), - [anon_sym__Alignas] = ACTIONS(2771), - [sym_primitive_type] = ACTIONS(2771), - [anon_sym_enum] = ACTIONS(2771), - [anon_sym_class] = ACTIONS(2771), - [anon_sym_struct] = ACTIONS(2771), - [anon_sym_union] = ACTIONS(2771), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2771), - [anon_sym_decltype] = ACTIONS(2771), - [anon_sym_explicit] = ACTIONS(2771), - [anon_sym_typename] = ACTIONS(2771), - [anon_sym_private] = ACTIONS(2771), - [anon_sym_template] = ACTIONS(2771), - [anon_sym_operator] = ACTIONS(2771), - [anon_sym_friend] = ACTIONS(2771), - [anon_sym_public] = ACTIONS(2771), - [anon_sym_protected] = ACTIONS(2771), - [anon_sym_static_assert] = ACTIONS(2771), - }, - [1833] = { - [sym_identifier] = ACTIONS(3108), - [aux_sym_preproc_def_token1] = ACTIONS(3108), - [aux_sym_preproc_if_token1] = ACTIONS(3108), - [aux_sym_preproc_if_token2] = ACTIONS(3108), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3108), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3108), - [aux_sym_preproc_else_token1] = ACTIONS(3108), - [aux_sym_preproc_elif_token1] = ACTIONS(3108), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3108), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3108), - [sym_preproc_directive] = ACTIONS(3108), - [anon_sym_LPAREN2] = ACTIONS(3110), - [anon_sym_TILDE] = ACTIONS(3110), - [anon_sym_STAR] = ACTIONS(3110), - [anon_sym_AMP_AMP] = ACTIONS(3110), - [anon_sym_AMP] = ACTIONS(3108), - [anon_sym_SEMI] = ACTIONS(3110), - [anon_sym___extension__] = ACTIONS(3108), - [anon_sym_typedef] = ACTIONS(3108), - [anon_sym_virtual] = ACTIONS(3108), - [anon_sym_extern] = ACTIONS(3108), - [anon_sym___attribute__] = ACTIONS(3108), - [anon_sym___attribute] = ACTIONS(3108), - [anon_sym_using] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(3110), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3110), - [anon_sym___declspec] = ACTIONS(3108), - [anon_sym___based] = ACTIONS(3108), - [anon_sym_signed] = ACTIONS(3108), - [anon_sym_unsigned] = ACTIONS(3108), - [anon_sym_long] = ACTIONS(3108), - [anon_sym_short] = ACTIONS(3108), - [anon_sym_LBRACK] = ACTIONS(3108), - [anon_sym_static] = ACTIONS(3108), - [anon_sym_register] = ACTIONS(3108), - [anon_sym_inline] = ACTIONS(3108), - [anon_sym___inline] = ACTIONS(3108), - [anon_sym___inline__] = ACTIONS(3108), - [anon_sym___forceinline] = ACTIONS(3108), - [anon_sym_thread_local] = ACTIONS(3108), - [anon_sym___thread] = ACTIONS(3108), - [anon_sym_const] = ACTIONS(3108), - [anon_sym_constexpr] = ACTIONS(3108), - [anon_sym_volatile] = ACTIONS(3108), - [anon_sym_restrict] = ACTIONS(3108), - [anon_sym___restrict__] = ACTIONS(3108), - [anon_sym__Atomic] = ACTIONS(3108), - [anon_sym__Noreturn] = ACTIONS(3108), - [anon_sym_noreturn] = ACTIONS(3108), - [anon_sym__Nonnull] = ACTIONS(3108), - [anon_sym_mutable] = ACTIONS(3108), - [anon_sym_constinit] = ACTIONS(3108), - [anon_sym_consteval] = ACTIONS(3108), - [anon_sym_alignas] = ACTIONS(3108), - [anon_sym__Alignas] = ACTIONS(3108), - [sym_primitive_type] = ACTIONS(3108), - [anon_sym_enum] = ACTIONS(3108), - [anon_sym_class] = ACTIONS(3108), - [anon_sym_struct] = ACTIONS(3108), - [anon_sym_union] = ACTIONS(3108), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3108), - [anon_sym_decltype] = ACTIONS(3108), - [anon_sym_explicit] = ACTIONS(3108), - [anon_sym_typename] = ACTIONS(3108), - [anon_sym_private] = ACTIONS(3108), - [anon_sym_template] = ACTIONS(3108), - [anon_sym_operator] = ACTIONS(3108), - [anon_sym_friend] = ACTIONS(3108), - [anon_sym_public] = ACTIONS(3108), - [anon_sym_protected] = ACTIONS(3108), - [anon_sym_static_assert] = ACTIONS(3108), - }, - [1834] = { + [1855] = { [sym_identifier] = ACTIONS(5637), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5639), - [anon_sym_COMMA] = ACTIONS(5639), - [anon_sym_RPAREN] = ACTIONS(5639), + [aux_sym_preproc_def_token1] = ACTIONS(5637), + [aux_sym_preproc_if_token1] = ACTIONS(5637), + [aux_sym_preproc_if_token2] = ACTIONS(5637), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5637), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5637), + [aux_sym_preproc_else_token1] = ACTIONS(5637), + [aux_sym_preproc_elif_token1] = ACTIONS(5637), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5637), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5637), + [sym_preproc_directive] = ACTIONS(5637), [anon_sym_LPAREN2] = ACTIONS(5639), - [anon_sym_DASH] = ACTIONS(5637), - [anon_sym_PLUS] = ACTIONS(5637), + [anon_sym_TILDE] = ACTIONS(5639), [anon_sym_STAR] = ACTIONS(5639), - [anon_sym_SLASH] = ACTIONS(5637), - [anon_sym_PERCENT] = ACTIONS(5639), - [anon_sym_PIPE_PIPE] = ACTIONS(5639), [anon_sym_AMP_AMP] = ACTIONS(5639), - [anon_sym_PIPE] = ACTIONS(5637), - [anon_sym_CARET] = ACTIONS(5639), [anon_sym_AMP] = ACTIONS(5637), - [anon_sym_EQ_EQ] = ACTIONS(5639), - [anon_sym_BANG_EQ] = ACTIONS(5639), - [anon_sym_GT] = ACTIONS(5637), - [anon_sym_GT_EQ] = ACTIONS(5639), - [anon_sym_LT_EQ] = ACTIONS(5637), - [anon_sym_LT] = ACTIONS(5637), - [anon_sym_LT_LT] = ACTIONS(5639), - [anon_sym_GT_GT] = ACTIONS(5639), [anon_sym_SEMI] = ACTIONS(5639), [anon_sym___extension__] = ACTIONS(5637), + [anon_sym_typedef] = ACTIONS(5637), + [anon_sym_virtual] = ACTIONS(5637), + [anon_sym_extern] = ACTIONS(5637), [anon_sym___attribute__] = ACTIONS(5637), [anon_sym___attribute] = ACTIONS(5637), - [anon_sym_COLON] = ACTIONS(5639), + [anon_sym_using] = ACTIONS(5637), + [anon_sym_COLON_COLON] = ACTIONS(5639), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5639), + [anon_sym___declspec] = ACTIONS(5637), [anon_sym___based] = ACTIONS(5637), - [anon_sym_LBRACE] = ACTIONS(5639), - [anon_sym_RBRACE] = ACTIONS(5639), [anon_sym_signed] = ACTIONS(5637), [anon_sym_unsigned] = ACTIONS(5637), [anon_sym_long] = ACTIONS(5637), [anon_sym_short] = ACTIONS(5637), - [anon_sym_LBRACK] = ACTIONS(5639), - [anon_sym_RBRACK] = ACTIONS(5639), + [anon_sym_LBRACK] = ACTIONS(5637), + [anon_sym_static] = ACTIONS(5637), + [anon_sym_register] = ACTIONS(5637), + [anon_sym_inline] = ACTIONS(5637), + [anon_sym___inline] = ACTIONS(5637), + [anon_sym___inline__] = ACTIONS(5637), + [anon_sym___forceinline] = ACTIONS(5637), + [anon_sym_thread_local] = ACTIONS(5637), + [anon_sym___thread] = ACTIONS(5637), [anon_sym_const] = ACTIONS(5637), [anon_sym_constexpr] = ACTIONS(5637), [anon_sym_volatile] = ACTIONS(5637), @@ -257025,252 +260143,980 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(5637), [anon_sym__Alignas] = ACTIONS(5637), [sym_primitive_type] = ACTIONS(5637), - [anon_sym_QMARK] = ACTIONS(5639), - [anon_sym_LT_EQ_GT] = ACTIONS(5639), - [anon_sym_or] = ACTIONS(5637), - [anon_sym_and] = ACTIONS(5637), - [anon_sym_bitor] = ACTIONS(5637), - [anon_sym_xor] = ACTIONS(5637), - [anon_sym_bitand] = ACTIONS(5637), - [anon_sym_not_eq] = ACTIONS(5637), - [anon_sym_DASH_DASH] = ACTIONS(5639), - [anon_sym_PLUS_PLUS] = ACTIONS(5639), - [anon_sym_DOT] = ACTIONS(5637), - [anon_sym_DOT_STAR] = ACTIONS(5639), - [anon_sym_DASH_GT] = ACTIONS(5639), + [anon_sym_enum] = ACTIONS(5637), + [anon_sym_class] = ACTIONS(5637), + [anon_sym_struct] = ACTIONS(5637), + [anon_sym_union] = ACTIONS(5637), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(5637), [anon_sym_decltype] = ACTIONS(5637), - [anon_sym_final] = ACTIONS(5637), - [anon_sym_override] = ACTIONS(5637), - [anon_sym_requires] = ACTIONS(5637), + [anon_sym_explicit] = ACTIONS(5637), + [anon_sym_typename] = ACTIONS(5637), + [anon_sym_private] = ACTIONS(5637), + [anon_sym_template] = ACTIONS(5637), + [anon_sym_operator] = ACTIONS(5637), + [anon_sym_friend] = ACTIONS(5637), + [anon_sym_public] = ACTIONS(5637), + [anon_sym_protected] = ACTIONS(5637), + [anon_sym_static_assert] = ACTIONS(5637), }, - [1835] = { + [1856] = { [sym_identifier] = ACTIONS(5641), [anon_sym_DOT_DOT_DOT] = ACTIONS(5643), [anon_sym_COMMA] = ACTIONS(5643), [anon_sym_RPAREN] = ACTIONS(5643), + [aux_sym_preproc_if_token2] = ACTIONS(5643), + [aux_sym_preproc_else_token1] = ACTIONS(5643), + [aux_sym_preproc_elif_token1] = ACTIONS(5641), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5643), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5643), [anon_sym_LPAREN2] = ACTIONS(5643), - [anon_sym_TILDE] = ACTIONS(5643), - [anon_sym_STAR] = ACTIONS(5643), + [anon_sym_DASH] = ACTIONS(5641), + [anon_sym_PLUS] = ACTIONS(5641), + [anon_sym_STAR] = ACTIONS(5641), + [anon_sym_SLASH] = ACTIONS(5641), + [anon_sym_PERCENT] = ACTIONS(5641), + [anon_sym_PIPE_PIPE] = ACTIONS(5643), [anon_sym_AMP_AMP] = ACTIONS(5643), + [anon_sym_PIPE] = ACTIONS(5641), + [anon_sym_CARET] = ACTIONS(5641), [anon_sym_AMP] = ACTIONS(5641), + [anon_sym_EQ_EQ] = ACTIONS(5643), + [anon_sym_BANG_EQ] = ACTIONS(5643), + [anon_sym_GT] = ACTIONS(5641), + [anon_sym_GT_EQ] = ACTIONS(5643), + [anon_sym_LT_EQ] = ACTIONS(5641), + [anon_sym_LT] = ACTIONS(5641), + [anon_sym_LT_LT] = ACTIONS(5641), + [anon_sym_GT_GT] = ACTIONS(5641), [anon_sym_SEMI] = ACTIONS(5643), - [anon_sym___extension__] = ACTIONS(5641), - [anon_sym_virtual] = ACTIONS(5641), - [anon_sym_extern] = ACTIONS(5641), - [anon_sym___attribute__] = ACTIONS(5641), - [anon_sym___attribute] = ACTIONS(5641), - [anon_sym_COLON_COLON] = ACTIONS(5643), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5643), - [anon_sym___declspec] = ACTIONS(5641), - [anon_sym___based] = ACTIONS(5641), - [anon_sym_LBRACE] = ACTIONS(5643), - [anon_sym_signed] = ACTIONS(5641), - [anon_sym_unsigned] = ACTIONS(5641), - [anon_sym_long] = ACTIONS(5641), - [anon_sym_short] = ACTIONS(5641), - [anon_sym_LBRACK] = ACTIONS(5641), - [anon_sym_static] = ACTIONS(5641), - [anon_sym_EQ] = ACTIONS(5643), - [anon_sym_register] = ACTIONS(5641), - [anon_sym_inline] = ACTIONS(5641), - [anon_sym___inline] = ACTIONS(5641), - [anon_sym___inline__] = ACTIONS(5641), - [anon_sym___forceinline] = ACTIONS(5641), - [anon_sym_thread_local] = ACTIONS(5641), - [anon_sym___thread] = ACTIONS(5641), - [anon_sym_const] = ACTIONS(5641), - [anon_sym_constexpr] = ACTIONS(5641), - [anon_sym_volatile] = ACTIONS(5641), - [anon_sym_restrict] = ACTIONS(5641), - [anon_sym___restrict__] = ACTIONS(5641), - [anon_sym__Atomic] = ACTIONS(5641), - [anon_sym__Noreturn] = ACTIONS(5641), - [anon_sym_noreturn] = ACTIONS(5641), - [anon_sym__Nonnull] = ACTIONS(5641), - [anon_sym_mutable] = ACTIONS(5641), - [anon_sym_constinit] = ACTIONS(5641), - [anon_sym_consteval] = ACTIONS(5641), - [anon_sym_alignas] = ACTIONS(5641), - [anon_sym__Alignas] = ACTIONS(5641), - [sym_primitive_type] = ACTIONS(5641), - [anon_sym_enum] = ACTIONS(5641), - [anon_sym_class] = ACTIONS(5641), - [anon_sym_struct] = ACTIONS(5641), - [anon_sym_union] = ACTIONS(5641), - [anon_sym_asm] = ACTIONS(5641), - [anon_sym___asm__] = ACTIONS(5641), - [anon_sym___asm] = ACTIONS(5641), + [anon_sym_COLON] = ACTIONS(5643), + [anon_sym_RBRACE] = ACTIONS(5643), + [anon_sym_LBRACK] = ACTIONS(5643), + [anon_sym_RBRACK] = ACTIONS(5643), + [anon_sym_EQ] = ACTIONS(5641), + [anon_sym_QMARK] = ACTIONS(5643), + [anon_sym_STAR_EQ] = ACTIONS(5643), + [anon_sym_SLASH_EQ] = ACTIONS(5643), + [anon_sym_PERCENT_EQ] = ACTIONS(5643), + [anon_sym_PLUS_EQ] = ACTIONS(5643), + [anon_sym_DASH_EQ] = ACTIONS(5643), + [anon_sym_LT_LT_EQ] = ACTIONS(5643), + [anon_sym_GT_GT_EQ] = ACTIONS(5643), + [anon_sym_AMP_EQ] = ACTIONS(5643), + [anon_sym_CARET_EQ] = ACTIONS(5643), + [anon_sym_PIPE_EQ] = ACTIONS(5643), + [anon_sym_and_eq] = ACTIONS(5641), + [anon_sym_or_eq] = ACTIONS(5641), + [anon_sym_xor_eq] = ACTIONS(5641), + [anon_sym_LT_EQ_GT] = ACTIONS(5643), + [anon_sym_or] = ACTIONS(5641), + [anon_sym_and] = ACTIONS(5641), + [anon_sym_bitor] = ACTIONS(5641), + [anon_sym_xor] = ACTIONS(5641), + [anon_sym_bitand] = ACTIONS(5641), + [anon_sym_not_eq] = ACTIONS(5641), + [anon_sym_DASH_DASH] = ACTIONS(5643), + [anon_sym_PLUS_PLUS] = ACTIONS(5643), + [anon_sym_DOT] = ACTIONS(5641), + [anon_sym_DOT_STAR] = ACTIONS(5643), [anon_sym_DASH_GT] = ACTIONS(5643), + [anon_sym_L_DQUOTE] = ACTIONS(5643), + [anon_sym_u_DQUOTE] = ACTIONS(5643), + [anon_sym_U_DQUOTE] = ACTIONS(5643), + [anon_sym_u8_DQUOTE] = ACTIONS(5643), + [anon_sym_DQUOTE] = ACTIONS(5643), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5643), + [anon_sym_LR_DQUOTE] = ACTIONS(5643), + [anon_sym_uR_DQUOTE] = ACTIONS(5643), + [anon_sym_UR_DQUOTE] = ACTIONS(5643), + [anon_sym_u8R_DQUOTE] = ACTIONS(5643), + [sym_literal_suffix] = ACTIONS(5641), + }, + [1857] = { + [sym_identifier] = ACTIONS(2779), + [aux_sym_preproc_def_token1] = ACTIONS(2779), + [aux_sym_preproc_if_token1] = ACTIONS(2779), + [aux_sym_preproc_if_token2] = ACTIONS(2779), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2779), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2779), + [aux_sym_preproc_else_token1] = ACTIONS(2779), + [aux_sym_preproc_elif_token1] = ACTIONS(2779), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2779), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2779), + [sym_preproc_directive] = ACTIONS(2779), + [anon_sym_LPAREN2] = ACTIONS(2781), + [anon_sym_TILDE] = ACTIONS(2781), + [anon_sym_STAR] = ACTIONS(2781), + [anon_sym_AMP_AMP] = ACTIONS(2781), + [anon_sym_AMP] = ACTIONS(2779), + [anon_sym_SEMI] = ACTIONS(2781), + [anon_sym___extension__] = ACTIONS(2779), + [anon_sym_typedef] = ACTIONS(2779), + [anon_sym_virtual] = ACTIONS(2779), + [anon_sym_extern] = ACTIONS(2779), + [anon_sym___attribute__] = ACTIONS(2779), + [anon_sym___attribute] = ACTIONS(2779), + [anon_sym_using] = ACTIONS(2779), + [anon_sym_COLON_COLON] = ACTIONS(2781), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2781), + [anon_sym___declspec] = ACTIONS(2779), + [anon_sym___based] = ACTIONS(2779), + [anon_sym_signed] = ACTIONS(2779), + [anon_sym_unsigned] = ACTIONS(2779), + [anon_sym_long] = ACTIONS(2779), + [anon_sym_short] = ACTIONS(2779), + [anon_sym_LBRACK] = ACTIONS(2779), + [anon_sym_static] = ACTIONS(2779), + [anon_sym_register] = ACTIONS(2779), + [anon_sym_inline] = ACTIONS(2779), + [anon_sym___inline] = ACTIONS(2779), + [anon_sym___inline__] = ACTIONS(2779), + [anon_sym___forceinline] = ACTIONS(2779), + [anon_sym_thread_local] = ACTIONS(2779), + [anon_sym___thread] = ACTIONS(2779), + [anon_sym_const] = ACTIONS(2779), + [anon_sym_constexpr] = ACTIONS(2779), + [anon_sym_volatile] = ACTIONS(2779), + [anon_sym_restrict] = ACTIONS(2779), + [anon_sym___restrict__] = ACTIONS(2779), + [anon_sym__Atomic] = ACTIONS(2779), + [anon_sym__Noreturn] = ACTIONS(2779), + [anon_sym_noreturn] = ACTIONS(2779), + [anon_sym__Nonnull] = ACTIONS(2779), + [anon_sym_mutable] = ACTIONS(2779), + [anon_sym_constinit] = ACTIONS(2779), + [anon_sym_consteval] = ACTIONS(2779), + [anon_sym_alignas] = ACTIONS(2779), + [anon_sym__Alignas] = ACTIONS(2779), + [sym_primitive_type] = ACTIONS(2779), + [anon_sym_enum] = ACTIONS(2779), + [anon_sym_class] = ACTIONS(2779), + [anon_sym_struct] = ACTIONS(2779), + [anon_sym_union] = ACTIONS(2779), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2779), + [anon_sym_decltype] = ACTIONS(2779), + [anon_sym_explicit] = ACTIONS(2779), + [anon_sym_typename] = ACTIONS(2779), + [anon_sym_private] = ACTIONS(2779), + [anon_sym_template] = ACTIONS(2779), + [anon_sym_operator] = ACTIONS(2779), + [anon_sym_friend] = ACTIONS(2779), + [anon_sym_public] = ACTIONS(2779), + [anon_sym_protected] = ACTIONS(2779), + [anon_sym_static_assert] = ACTIONS(2779), + }, + [1858] = { + [sym_identifier] = ACTIONS(5645), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5647), + [anon_sym_COMMA] = ACTIONS(5647), + [anon_sym_RPAREN] = ACTIONS(5647), + [anon_sym_LPAREN2] = ACTIONS(5647), + [anon_sym_DASH] = ACTIONS(5645), + [anon_sym_PLUS] = ACTIONS(5645), + [anon_sym_STAR] = ACTIONS(5647), + [anon_sym_SLASH] = ACTIONS(5645), + [anon_sym_PERCENT] = ACTIONS(5647), + [anon_sym_PIPE_PIPE] = ACTIONS(5647), + [anon_sym_AMP_AMP] = ACTIONS(5647), + [anon_sym_PIPE] = ACTIONS(5645), + [anon_sym_CARET] = ACTIONS(5647), + [anon_sym_AMP] = ACTIONS(5645), + [anon_sym_EQ_EQ] = ACTIONS(5647), + [anon_sym_BANG_EQ] = ACTIONS(5647), + [anon_sym_GT] = ACTIONS(5645), + [anon_sym_GT_EQ] = ACTIONS(5647), + [anon_sym_LT_EQ] = ACTIONS(5645), + [anon_sym_LT] = ACTIONS(5645), + [anon_sym_LT_LT] = ACTIONS(5647), + [anon_sym_GT_GT] = ACTIONS(5647), + [anon_sym_SEMI] = ACTIONS(5647), + [anon_sym___extension__] = ACTIONS(5645), + [anon_sym___attribute__] = ACTIONS(5645), + [anon_sym___attribute] = ACTIONS(5645), + [anon_sym_COLON] = ACTIONS(5647), + [anon_sym___based] = ACTIONS(5645), + [anon_sym_LBRACE] = ACTIONS(5647), + [anon_sym_RBRACE] = ACTIONS(5647), + [anon_sym_signed] = ACTIONS(5645), + [anon_sym_unsigned] = ACTIONS(5645), + [anon_sym_long] = ACTIONS(5645), + [anon_sym_short] = ACTIONS(5645), + [anon_sym_LBRACK] = ACTIONS(5647), + [anon_sym_RBRACK] = ACTIONS(5647), + [anon_sym_const] = ACTIONS(5645), + [anon_sym_constexpr] = ACTIONS(5645), + [anon_sym_volatile] = ACTIONS(5645), + [anon_sym_restrict] = ACTIONS(5645), + [anon_sym___restrict__] = ACTIONS(5645), + [anon_sym__Atomic] = ACTIONS(5645), + [anon_sym__Noreturn] = ACTIONS(5645), + [anon_sym_noreturn] = ACTIONS(5645), + [anon_sym__Nonnull] = ACTIONS(5645), + [anon_sym_mutable] = ACTIONS(5645), + [anon_sym_constinit] = ACTIONS(5645), + [anon_sym_consteval] = ACTIONS(5645), + [anon_sym_alignas] = ACTIONS(5645), + [anon_sym__Alignas] = ACTIONS(5645), + [sym_primitive_type] = ACTIONS(5645), + [anon_sym_QMARK] = ACTIONS(5647), + [anon_sym_LT_EQ_GT] = ACTIONS(5647), + [anon_sym_or] = ACTIONS(5645), + [anon_sym_and] = ACTIONS(5645), + [anon_sym_bitor] = ACTIONS(5645), + [anon_sym_xor] = ACTIONS(5645), + [anon_sym_bitand] = ACTIONS(5645), + [anon_sym_not_eq] = ACTIONS(5645), + [anon_sym_DASH_DASH] = ACTIONS(5647), + [anon_sym_PLUS_PLUS] = ACTIONS(5647), + [anon_sym_DOT] = ACTIONS(5645), + [anon_sym_DOT_STAR] = ACTIONS(5647), + [anon_sym_DASH_GT] = ACTIONS(5647), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5645), + [anon_sym_decltype] = ACTIONS(5645), + [anon_sym_final] = ACTIONS(5645), + [anon_sym_override] = ACTIONS(5645), + [anon_sym_requires] = ACTIONS(5645), + }, + [1859] = { + [sym_identifier] = ACTIONS(5088), + [anon_sym_LPAREN2] = ACTIONS(5090), + [anon_sym_BANG] = ACTIONS(5090), + [anon_sym_TILDE] = ACTIONS(5090), + [anon_sym_DASH] = ACTIONS(5088), + [anon_sym_PLUS] = ACTIONS(5088), + [anon_sym_STAR] = ACTIONS(5090), + [anon_sym_AMP] = ACTIONS(5090), + [anon_sym___extension__] = ACTIONS(5088), + [anon_sym_COLON_COLON] = ACTIONS(5090), + [anon_sym_LBRACK] = ACTIONS(5090), + [anon_sym_static] = ACTIONS(5088), + [anon_sym_RBRACK] = ACTIONS(5090), + [anon_sym_const] = ACTIONS(5088), + [anon_sym_constexpr] = ACTIONS(5088), + [anon_sym_volatile] = ACTIONS(5088), + [anon_sym_restrict] = ACTIONS(5088), + [anon_sym___restrict__] = ACTIONS(5088), + [anon_sym__Atomic] = ACTIONS(5088), + [anon_sym__Noreturn] = ACTIONS(5088), + [anon_sym_noreturn] = ACTIONS(5088), + [anon_sym__Nonnull] = ACTIONS(5088), + [anon_sym_mutable] = ACTIONS(5088), + [anon_sym_constinit] = ACTIONS(5088), + [anon_sym_consteval] = ACTIONS(5088), + [anon_sym_alignas] = ACTIONS(5088), + [anon_sym__Alignas] = ACTIONS(5088), + [sym_primitive_type] = ACTIONS(5088), + [anon_sym_not] = ACTIONS(5088), + [anon_sym_compl] = ACTIONS(5088), + [anon_sym_DASH_DASH] = ACTIONS(5090), + [anon_sym_PLUS_PLUS] = ACTIONS(5090), + [anon_sym_sizeof] = ACTIONS(5088), + [anon_sym___alignof__] = ACTIONS(5088), + [anon_sym___alignof] = ACTIONS(5088), + [anon_sym__alignof] = ACTIONS(5088), + [anon_sym_alignof] = ACTIONS(5088), + [anon_sym__Alignof] = ACTIONS(5088), + [anon_sym_offsetof] = ACTIONS(5088), + [anon_sym__Generic] = ACTIONS(5088), + [anon_sym_asm] = ACTIONS(5088), + [anon_sym___asm__] = ACTIONS(5088), + [anon_sym___asm] = ACTIONS(5088), + [sym_number_literal] = ACTIONS(5090), + [anon_sym_L_SQUOTE] = ACTIONS(5090), + [anon_sym_u_SQUOTE] = ACTIONS(5090), + [anon_sym_U_SQUOTE] = ACTIONS(5090), + [anon_sym_u8_SQUOTE] = ACTIONS(5090), + [anon_sym_SQUOTE] = ACTIONS(5090), + [anon_sym_L_DQUOTE] = ACTIONS(5090), + [anon_sym_u_DQUOTE] = ACTIONS(5090), + [anon_sym_U_DQUOTE] = ACTIONS(5090), + [anon_sym_u8_DQUOTE] = ACTIONS(5090), + [anon_sym_DQUOTE] = ACTIONS(5090), + [sym_true] = ACTIONS(5088), + [sym_false] = ACTIONS(5088), + [anon_sym_NULL] = ACTIONS(5088), + [anon_sym_nullptr] = ACTIONS(5088), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(5088), + [anon_sym_template] = ACTIONS(5088), + [anon_sym_delete] = ACTIONS(5088), + [anon_sym_R_DQUOTE] = ACTIONS(5090), + [anon_sym_LR_DQUOTE] = ACTIONS(5090), + [anon_sym_uR_DQUOTE] = ACTIONS(5090), + [anon_sym_UR_DQUOTE] = ACTIONS(5090), + [anon_sym_u8R_DQUOTE] = ACTIONS(5090), + [anon_sym_co_await] = ACTIONS(5088), + [anon_sym_new] = ACTIONS(5088), + [anon_sym_requires] = ACTIONS(5088), + [sym_this] = ACTIONS(5088), + }, + [1860] = { + [sym_type_qualifier] = STATE(1914), + [sym_alignas_qualifier] = STATE(1702), + [aux_sym__type_definition_type_repeat1] = STATE(1914), + [aux_sym_sized_type_specifier_repeat1] = STATE(2127), + [sym_identifier] = ACTIONS(5649), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5094), + [anon_sym_COMMA] = ACTIONS(5094), + [aux_sym_preproc_if_token2] = ACTIONS(5094), + [aux_sym_preproc_else_token1] = ACTIONS(5094), + [aux_sym_preproc_elif_token1] = ACTIONS(5096), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5094), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5094), + [anon_sym_LPAREN2] = ACTIONS(5094), + [anon_sym_DASH] = ACTIONS(5096), + [anon_sym_PLUS] = ACTIONS(5096), + [anon_sym_STAR] = ACTIONS(5094), + [anon_sym_SLASH] = ACTIONS(5096), + [anon_sym_PERCENT] = ACTIONS(5094), + [anon_sym_PIPE_PIPE] = ACTIONS(5094), + [anon_sym_AMP_AMP] = ACTIONS(5094), + [anon_sym_PIPE] = ACTIONS(5096), + [anon_sym_CARET] = ACTIONS(5094), + [anon_sym_AMP] = ACTIONS(5096), + [anon_sym_EQ_EQ] = ACTIONS(5094), + [anon_sym_BANG_EQ] = ACTIONS(5094), + [anon_sym_GT] = ACTIONS(5096), + [anon_sym_GT_EQ] = ACTIONS(5094), + [anon_sym_LT_EQ] = ACTIONS(5096), + [anon_sym_LT] = ACTIONS(5096), + [anon_sym_LT_LT] = ACTIONS(5094), + [anon_sym_GT_GT] = ACTIONS(5094), + [anon_sym___extension__] = ACTIONS(5652), + [anon_sym___attribute__] = ACTIONS(5096), + [anon_sym___attribute] = ACTIONS(5096), + [anon_sym_LBRACE] = ACTIONS(5094), + [anon_sym_signed] = ACTIONS(5654), + [anon_sym_unsigned] = ACTIONS(5654), + [anon_sym_long] = ACTIONS(5654), + [anon_sym_short] = ACTIONS(5654), + [anon_sym_LBRACK] = ACTIONS(5094), + [anon_sym_const] = ACTIONS(5652), + [anon_sym_constexpr] = ACTIONS(5652), + [anon_sym_volatile] = ACTIONS(5652), + [anon_sym_restrict] = ACTIONS(5652), + [anon_sym___restrict__] = ACTIONS(5652), + [anon_sym__Atomic] = ACTIONS(5652), + [anon_sym__Noreturn] = ACTIONS(5652), + [anon_sym_noreturn] = ACTIONS(5652), + [anon_sym__Nonnull] = ACTIONS(5652), + [anon_sym_mutable] = ACTIONS(5652), + [anon_sym_constinit] = ACTIONS(5652), + [anon_sym_consteval] = ACTIONS(5652), + [anon_sym_alignas] = ACTIONS(5656), + [anon_sym__Alignas] = ACTIONS(5656), + [sym_primitive_type] = ACTIONS(5658), + [anon_sym_QMARK] = ACTIONS(5094), + [anon_sym_LT_EQ_GT] = ACTIONS(5094), + [anon_sym_or] = ACTIONS(5096), + [anon_sym_and] = ACTIONS(5096), + [anon_sym_bitor] = ACTIONS(5096), + [anon_sym_xor] = ACTIONS(5096), + [anon_sym_bitand] = ACTIONS(5096), + [anon_sym_not_eq] = ACTIONS(5096), + [anon_sym_DASH_DASH] = ACTIONS(5094), + [anon_sym_PLUS_PLUS] = ACTIONS(5094), + [anon_sym_DOT] = ACTIONS(5096), + [anon_sym_DOT_STAR] = ACTIONS(5094), + [anon_sym_DASH_GT] = ACTIONS(5094), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5096), + [anon_sym_decltype] = ACTIONS(5096), + }, + [1861] = { + [sym_identifier] = ACTIONS(5660), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5662), + [anon_sym_COMMA] = ACTIONS(5662), + [anon_sym_RPAREN] = ACTIONS(5662), + [anon_sym_LPAREN2] = ACTIONS(5662), + [anon_sym_DASH] = ACTIONS(5660), + [anon_sym_PLUS] = ACTIONS(5660), + [anon_sym_STAR] = ACTIONS(5662), + [anon_sym_SLASH] = ACTIONS(5660), + [anon_sym_PERCENT] = ACTIONS(5662), + [anon_sym_PIPE_PIPE] = ACTIONS(5662), + [anon_sym_AMP_AMP] = ACTIONS(5662), + [anon_sym_PIPE] = ACTIONS(5660), + [anon_sym_CARET] = ACTIONS(5662), + [anon_sym_AMP] = ACTIONS(5660), + [anon_sym_EQ_EQ] = ACTIONS(5662), + [anon_sym_BANG_EQ] = ACTIONS(5662), + [anon_sym_GT] = ACTIONS(5660), + [anon_sym_GT_EQ] = ACTIONS(5662), + [anon_sym_LT_EQ] = ACTIONS(5660), + [anon_sym_LT] = ACTIONS(5660), + [anon_sym_LT_LT] = ACTIONS(5662), + [anon_sym_GT_GT] = ACTIONS(5662), + [anon_sym_SEMI] = ACTIONS(5662), + [anon_sym___extension__] = ACTIONS(5660), + [anon_sym___attribute__] = ACTIONS(5660), + [anon_sym___attribute] = ACTIONS(5660), + [anon_sym_COLON] = ACTIONS(5662), + [anon_sym___based] = ACTIONS(5660), + [anon_sym_LBRACE] = ACTIONS(5662), + [anon_sym_RBRACE] = ACTIONS(5662), + [anon_sym_signed] = ACTIONS(5660), + [anon_sym_unsigned] = ACTIONS(5660), + [anon_sym_long] = ACTIONS(5660), + [anon_sym_short] = ACTIONS(5660), + [anon_sym_LBRACK] = ACTIONS(5662), + [anon_sym_RBRACK] = ACTIONS(5662), + [anon_sym_const] = ACTIONS(5660), + [anon_sym_constexpr] = ACTIONS(5660), + [anon_sym_volatile] = ACTIONS(5660), + [anon_sym_restrict] = ACTIONS(5660), + [anon_sym___restrict__] = ACTIONS(5660), + [anon_sym__Atomic] = ACTIONS(5660), + [anon_sym__Noreturn] = ACTIONS(5660), + [anon_sym_noreturn] = ACTIONS(5660), + [anon_sym__Nonnull] = ACTIONS(5660), + [anon_sym_mutable] = ACTIONS(5660), + [anon_sym_constinit] = ACTIONS(5660), + [anon_sym_consteval] = ACTIONS(5660), + [anon_sym_alignas] = ACTIONS(5660), + [anon_sym__Alignas] = ACTIONS(5660), + [sym_primitive_type] = ACTIONS(5660), + [anon_sym_QMARK] = ACTIONS(5662), + [anon_sym_LT_EQ_GT] = ACTIONS(5662), + [anon_sym_or] = ACTIONS(5660), + [anon_sym_and] = ACTIONS(5660), + [anon_sym_bitor] = ACTIONS(5660), + [anon_sym_xor] = ACTIONS(5660), + [anon_sym_bitand] = ACTIONS(5660), + [anon_sym_not_eq] = ACTIONS(5660), + [anon_sym_DASH_DASH] = ACTIONS(5662), + [anon_sym_PLUS_PLUS] = ACTIONS(5662), + [anon_sym_DOT] = ACTIONS(5660), + [anon_sym_DOT_STAR] = ACTIONS(5662), + [anon_sym_DASH_GT] = ACTIONS(5662), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5660), + [anon_sym_decltype] = ACTIONS(5660), + [anon_sym_final] = ACTIONS(5660), + [anon_sym_override] = ACTIONS(5660), + [anon_sym_requires] = ACTIONS(5660), + }, + [1862] = { + [sym_catch_clause] = STATE(1879), + [aux_sym_constructor_try_statement_repeat1] = STATE(1879), + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym___extension__] = ACTIONS(2527), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym___attribute] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym_RBRACE] = ACTIONS(2529), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym___inline] = ACTIONS(2527), + [anon_sym___inline__] = ACTIONS(2527), + [anon_sym___forceinline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym___thread] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym___restrict__] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym__Noreturn] = ACTIONS(2527), + [anon_sym_noreturn] = ACTIONS(2527), + [anon_sym__Nonnull] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_alignas] = ACTIONS(2527), + [anon_sym__Alignas] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_private] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_friend] = ACTIONS(2527), + [anon_sym_public] = ACTIONS(2527), + [anon_sym_protected] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_catch] = ACTIONS(5664), + }, + [1863] = { + [sym_identifier] = ACTIONS(4984), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4991), + [anon_sym_COMMA] = ACTIONS(4991), + [anon_sym_RPAREN] = ACTIONS(4991), + [aux_sym_preproc_if_token2] = ACTIONS(4991), + [aux_sym_preproc_else_token1] = ACTIONS(4991), + [aux_sym_preproc_elif_token1] = ACTIONS(4984), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4991), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4991), + [anon_sym_LPAREN2] = ACTIONS(4991), + [anon_sym_DASH] = ACTIONS(4984), + [anon_sym_PLUS] = ACTIONS(4984), + [anon_sym_STAR] = ACTIONS(4991), + [anon_sym_SLASH] = ACTIONS(4984), + [anon_sym_PERCENT] = ACTIONS(4991), + [anon_sym_PIPE_PIPE] = ACTIONS(4991), + [anon_sym_AMP_AMP] = ACTIONS(4991), + [anon_sym_PIPE] = ACTIONS(4984), + [anon_sym_CARET] = ACTIONS(4991), + [anon_sym_AMP] = ACTIONS(4984), + [anon_sym_EQ_EQ] = ACTIONS(4991), + [anon_sym_BANG_EQ] = ACTIONS(4991), + [anon_sym_GT] = ACTIONS(4984), + [anon_sym_GT_EQ] = ACTIONS(4991), + [anon_sym_LT_EQ] = ACTIONS(4984), + [anon_sym_LT] = ACTIONS(4984), + [anon_sym_LT_LT] = ACTIONS(4991), + [anon_sym_GT_GT] = ACTIONS(4991), + [anon_sym_SEMI] = ACTIONS(4991), + [anon_sym___extension__] = ACTIONS(4984), + [anon_sym___attribute__] = ACTIONS(4984), + [anon_sym___attribute] = ACTIONS(4984), + [anon_sym_COLON] = ACTIONS(4984), + [anon_sym_COLON_COLON] = ACTIONS(4991), + [anon_sym_LBRACE] = ACTIONS(4991), + [anon_sym_RBRACE] = ACTIONS(4991), + [anon_sym_LBRACK] = ACTIONS(4991), + [anon_sym_RBRACK] = ACTIONS(4991), + [anon_sym_const] = ACTIONS(4984), + [anon_sym_constexpr] = ACTIONS(4984), + [anon_sym_volatile] = ACTIONS(4984), + [anon_sym_restrict] = ACTIONS(4984), + [anon_sym___restrict__] = ACTIONS(4984), + [anon_sym__Atomic] = ACTIONS(4984), + [anon_sym__Noreturn] = ACTIONS(4984), + [anon_sym_noreturn] = ACTIONS(4984), + [anon_sym__Nonnull] = ACTIONS(4984), + [anon_sym_mutable] = ACTIONS(4984), + [anon_sym_constinit] = ACTIONS(4984), + [anon_sym_consteval] = ACTIONS(4984), + [anon_sym_alignas] = ACTIONS(4984), + [anon_sym__Alignas] = ACTIONS(4984), + [anon_sym_QMARK] = ACTIONS(4991), + [anon_sym_LT_EQ_GT] = ACTIONS(4991), + [anon_sym_or] = ACTIONS(4984), + [anon_sym_and] = ACTIONS(4984), + [anon_sym_bitor] = ACTIONS(4984), + [anon_sym_xor] = ACTIONS(4984), + [anon_sym_bitand] = ACTIONS(4984), + [anon_sym_not_eq] = ACTIONS(4984), + [anon_sym_DASH_DASH] = ACTIONS(4991), + [anon_sym_PLUS_PLUS] = ACTIONS(4991), + [anon_sym_DOT] = ACTIONS(4984), + [anon_sym_DOT_STAR] = ACTIONS(4991), + [anon_sym_DASH_GT] = ACTIONS(4991), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4984), + [anon_sym_decltype] = ACTIONS(4984), + [anon_sym_final] = ACTIONS(4984), + [anon_sym_override] = ACTIONS(4984), + [anon_sym_requires] = ACTIONS(4984), + }, + [1864] = { + [sym_identifier] = ACTIONS(5666), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5668), + [anon_sym_COMMA] = ACTIONS(5668), + [anon_sym_RPAREN] = ACTIONS(5668), + [anon_sym_LPAREN2] = ACTIONS(5668), + [anon_sym_DASH] = ACTIONS(5666), + [anon_sym_PLUS] = ACTIONS(5666), + [anon_sym_STAR] = ACTIONS(5668), + [anon_sym_SLASH] = ACTIONS(5666), + [anon_sym_PERCENT] = ACTIONS(5668), + [anon_sym_PIPE_PIPE] = ACTIONS(5668), + [anon_sym_AMP_AMP] = ACTIONS(5668), + [anon_sym_PIPE] = ACTIONS(5666), + [anon_sym_CARET] = ACTIONS(5668), + [anon_sym_AMP] = ACTIONS(5666), + [anon_sym_EQ_EQ] = ACTIONS(5668), + [anon_sym_BANG_EQ] = ACTIONS(5668), + [anon_sym_GT] = ACTIONS(5666), + [anon_sym_GT_EQ] = ACTIONS(5668), + [anon_sym_LT_EQ] = ACTIONS(5666), + [anon_sym_LT] = ACTIONS(5666), + [anon_sym_LT_LT] = ACTIONS(5668), + [anon_sym_GT_GT] = ACTIONS(5668), + [anon_sym_SEMI] = ACTIONS(5668), + [anon_sym___extension__] = ACTIONS(5666), + [anon_sym___attribute__] = ACTIONS(5666), + [anon_sym___attribute] = ACTIONS(5666), + [anon_sym_COLON] = ACTIONS(5668), + [anon_sym___based] = ACTIONS(5666), + [anon_sym_LBRACE] = ACTIONS(5668), + [anon_sym_RBRACE] = ACTIONS(5668), + [anon_sym_signed] = ACTIONS(5666), + [anon_sym_unsigned] = ACTIONS(5666), + [anon_sym_long] = ACTIONS(5666), + [anon_sym_short] = ACTIONS(5666), + [anon_sym_LBRACK] = ACTIONS(5668), + [anon_sym_RBRACK] = ACTIONS(5668), + [anon_sym_const] = ACTIONS(5666), + [anon_sym_constexpr] = ACTIONS(5666), + [anon_sym_volatile] = ACTIONS(5666), + [anon_sym_restrict] = ACTIONS(5666), + [anon_sym___restrict__] = ACTIONS(5666), + [anon_sym__Atomic] = ACTIONS(5666), + [anon_sym__Noreturn] = ACTIONS(5666), + [anon_sym_noreturn] = ACTIONS(5666), + [anon_sym__Nonnull] = ACTIONS(5666), + [anon_sym_mutable] = ACTIONS(5666), + [anon_sym_constinit] = ACTIONS(5666), + [anon_sym_consteval] = ACTIONS(5666), + [anon_sym_alignas] = ACTIONS(5666), + [anon_sym__Alignas] = ACTIONS(5666), + [sym_primitive_type] = ACTIONS(5666), + [anon_sym_QMARK] = ACTIONS(5668), + [anon_sym_LT_EQ_GT] = ACTIONS(5668), + [anon_sym_or] = ACTIONS(5666), + [anon_sym_and] = ACTIONS(5666), + [anon_sym_bitor] = ACTIONS(5666), + [anon_sym_xor] = ACTIONS(5666), + [anon_sym_bitand] = ACTIONS(5666), + [anon_sym_not_eq] = ACTIONS(5666), + [anon_sym_DASH_DASH] = ACTIONS(5668), + [anon_sym_PLUS_PLUS] = ACTIONS(5668), + [anon_sym_DOT] = ACTIONS(5666), + [anon_sym_DOT_STAR] = ACTIONS(5668), + [anon_sym_DASH_GT] = ACTIONS(5668), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5666), + [anon_sym_decltype] = ACTIONS(5666), + [anon_sym_final] = ACTIONS(5666), + [anon_sym_override] = ACTIONS(5666), + [anon_sym_requires] = ACTIONS(5666), + }, + [1865] = { + [sym_identifier] = ACTIONS(5541), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5543), + [anon_sym_COMMA] = ACTIONS(5543), + [anon_sym_RPAREN] = ACTIONS(5543), + [anon_sym_LPAREN2] = ACTIONS(5543), + [anon_sym_DASH] = ACTIONS(5541), + [anon_sym_PLUS] = ACTIONS(5541), + [anon_sym_STAR] = ACTIONS(5543), + [anon_sym_SLASH] = ACTIONS(5541), + [anon_sym_PERCENT] = ACTIONS(5543), + [anon_sym_PIPE_PIPE] = ACTIONS(5543), + [anon_sym_AMP_AMP] = ACTIONS(5543), + [anon_sym_PIPE] = ACTIONS(5541), + [anon_sym_CARET] = ACTIONS(5543), + [anon_sym_AMP] = ACTIONS(5541), + [anon_sym_EQ_EQ] = ACTIONS(5543), + [anon_sym_BANG_EQ] = ACTIONS(5543), + [anon_sym_GT] = ACTIONS(5541), + [anon_sym_GT_EQ] = ACTIONS(5543), + [anon_sym_LT_EQ] = ACTIONS(5541), + [anon_sym_LT] = ACTIONS(5541), + [anon_sym_LT_LT] = ACTIONS(5543), + [anon_sym_GT_GT] = ACTIONS(5543), + [anon_sym_SEMI] = ACTIONS(5543), + [anon_sym___extension__] = ACTIONS(5541), + [anon_sym___attribute__] = ACTIONS(5541), + [anon_sym___attribute] = ACTIONS(5541), + [anon_sym_COLON] = ACTIONS(5543), + [anon_sym___based] = ACTIONS(5541), + [anon_sym_LBRACE] = ACTIONS(5543), + [anon_sym_RBRACE] = ACTIONS(5543), + [anon_sym_signed] = ACTIONS(5541), + [anon_sym_unsigned] = ACTIONS(5541), + [anon_sym_long] = ACTIONS(5541), + [anon_sym_short] = ACTIONS(5541), + [anon_sym_LBRACK] = ACTIONS(5543), + [anon_sym_RBRACK] = ACTIONS(5543), + [anon_sym_const] = ACTIONS(5541), + [anon_sym_constexpr] = ACTIONS(5541), + [anon_sym_volatile] = ACTIONS(5541), + [anon_sym_restrict] = ACTIONS(5541), + [anon_sym___restrict__] = ACTIONS(5541), + [anon_sym__Atomic] = ACTIONS(5541), + [anon_sym__Noreturn] = ACTIONS(5541), + [anon_sym_noreturn] = ACTIONS(5541), + [anon_sym__Nonnull] = ACTIONS(5541), + [anon_sym_mutable] = ACTIONS(5541), + [anon_sym_constinit] = ACTIONS(5541), + [anon_sym_consteval] = ACTIONS(5541), + [anon_sym_alignas] = ACTIONS(5541), + [anon_sym__Alignas] = ACTIONS(5541), + [sym_primitive_type] = ACTIONS(5541), + [anon_sym_QMARK] = ACTIONS(5543), + [anon_sym_LT_EQ_GT] = ACTIONS(5543), + [anon_sym_or] = ACTIONS(5541), + [anon_sym_and] = ACTIONS(5541), + [anon_sym_bitor] = ACTIONS(5541), + [anon_sym_xor] = ACTIONS(5541), + [anon_sym_bitand] = ACTIONS(5541), + [anon_sym_not_eq] = ACTIONS(5541), + [anon_sym_DASH_DASH] = ACTIONS(5543), + [anon_sym_PLUS_PLUS] = ACTIONS(5543), + [anon_sym_DOT] = ACTIONS(5541), + [anon_sym_DOT_STAR] = ACTIONS(5543), + [anon_sym_DASH_GT] = ACTIONS(5543), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5641), - [anon_sym_decltype] = ACTIONS(5641), - [anon_sym_final] = ACTIONS(5641), - [anon_sym_override] = ACTIONS(5641), - [anon_sym_explicit] = ACTIONS(5641), - [anon_sym_typename] = ACTIONS(5641), - [anon_sym_template] = ACTIONS(5641), - [anon_sym_GT2] = ACTIONS(5643), - [anon_sym_operator] = ACTIONS(5641), - [anon_sym_try] = ACTIONS(5641), - [anon_sym_noexcept] = ACTIONS(5641), - [anon_sym_throw] = ACTIONS(5641), - [anon_sym_requires] = ACTIONS(5641), + [sym_auto] = ACTIONS(5541), + [anon_sym_decltype] = ACTIONS(5541), + [anon_sym_final] = ACTIONS(5541), + [anon_sym_override] = ACTIONS(5541), + [anon_sym_requires] = ACTIONS(5541), }, - [1836] = { - [sym_catch_clause] = STATE(1851), - [aux_sym_constructor_try_statement_repeat1] = STATE(1851), - [sym_identifier] = ACTIONS(2547), - [aux_sym_preproc_def_token1] = ACTIONS(2547), - [aux_sym_preproc_if_token1] = ACTIONS(2547), - [aux_sym_preproc_if_token2] = ACTIONS(2547), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2547), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2547), - [sym_preproc_directive] = ACTIONS(2547), - [anon_sym_LPAREN2] = ACTIONS(2549), - [anon_sym_TILDE] = ACTIONS(2549), - [anon_sym_STAR] = ACTIONS(2549), - [anon_sym_AMP_AMP] = ACTIONS(2549), - [anon_sym_AMP] = ACTIONS(2547), - [anon_sym_SEMI] = ACTIONS(2549), - [anon_sym___extension__] = ACTIONS(2547), - [anon_sym_typedef] = ACTIONS(2547), - [anon_sym_virtual] = ACTIONS(2547), - [anon_sym_extern] = ACTIONS(2547), - [anon_sym___attribute__] = ACTIONS(2547), - [anon_sym___attribute] = ACTIONS(2547), - [anon_sym_using] = ACTIONS(2547), - [anon_sym_COLON_COLON] = ACTIONS(2549), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2549), - [anon_sym___declspec] = ACTIONS(2547), - [anon_sym___based] = ACTIONS(2547), - [anon_sym_signed] = ACTIONS(2547), - [anon_sym_unsigned] = ACTIONS(2547), - [anon_sym_long] = ACTIONS(2547), - [anon_sym_short] = ACTIONS(2547), - [anon_sym_LBRACK] = ACTIONS(2547), - [anon_sym_static] = ACTIONS(2547), - [anon_sym_register] = ACTIONS(2547), - [anon_sym_inline] = ACTIONS(2547), - [anon_sym___inline] = ACTIONS(2547), - [anon_sym___inline__] = ACTIONS(2547), - [anon_sym___forceinline] = ACTIONS(2547), - [anon_sym_thread_local] = ACTIONS(2547), - [anon_sym___thread] = ACTIONS(2547), - [anon_sym_const] = ACTIONS(2547), - [anon_sym_constexpr] = ACTIONS(2547), - [anon_sym_volatile] = ACTIONS(2547), - [anon_sym_restrict] = ACTIONS(2547), - [anon_sym___restrict__] = ACTIONS(2547), - [anon_sym__Atomic] = ACTIONS(2547), - [anon_sym__Noreturn] = ACTIONS(2547), - [anon_sym_noreturn] = ACTIONS(2547), - [anon_sym__Nonnull] = ACTIONS(2547), - [anon_sym_mutable] = ACTIONS(2547), - [anon_sym_constinit] = ACTIONS(2547), - [anon_sym_consteval] = ACTIONS(2547), - [anon_sym_alignas] = ACTIONS(2547), - [anon_sym__Alignas] = ACTIONS(2547), - [sym_primitive_type] = ACTIONS(2547), - [anon_sym_enum] = ACTIONS(2547), - [anon_sym_class] = ACTIONS(2547), - [anon_sym_struct] = ACTIONS(2547), - [anon_sym_union] = ACTIONS(2547), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2547), - [anon_sym_decltype] = ACTIONS(2547), - [anon_sym_explicit] = ACTIONS(2547), - [anon_sym_typename] = ACTIONS(2547), - [anon_sym_private] = ACTIONS(2547), - [anon_sym_template] = ACTIONS(2547), - [anon_sym_operator] = ACTIONS(2547), - [anon_sym_friend] = ACTIONS(2547), - [anon_sym_public] = ACTIONS(2547), - [anon_sym_protected] = ACTIONS(2547), - [anon_sym_static_assert] = ACTIONS(2547), - [anon_sym_catch] = ACTIONS(5645), + [1866] = { + [sym_identifier] = ACTIONS(2569), + [anon_sym_LPAREN2] = ACTIONS(2559), + [anon_sym_BANG] = ACTIONS(2559), + [anon_sym_TILDE] = ACTIONS(2559), + [anon_sym_DASH] = ACTIONS(2569), + [anon_sym_PLUS] = ACTIONS(2569), + [anon_sym_STAR] = ACTIONS(2559), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym___extension__] = ACTIONS(2569), + [anon_sym_COLON_COLON] = ACTIONS(2559), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2569), + [anon_sym_RBRACK] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2569), + [anon_sym_constexpr] = ACTIONS(2569), + [anon_sym_volatile] = ACTIONS(2569), + [anon_sym_restrict] = ACTIONS(2569), + [anon_sym___restrict__] = ACTIONS(2569), + [anon_sym__Atomic] = ACTIONS(2569), + [anon_sym__Noreturn] = ACTIONS(2569), + [anon_sym_noreturn] = ACTIONS(2569), + [anon_sym__Nonnull] = ACTIONS(2569), + [anon_sym_mutable] = ACTIONS(2569), + [anon_sym_constinit] = ACTIONS(2569), + [anon_sym_consteval] = ACTIONS(2569), + [anon_sym_alignas] = ACTIONS(2569), + [anon_sym__Alignas] = ACTIONS(2569), + [sym_primitive_type] = ACTIONS(2569), + [anon_sym_not] = ACTIONS(2569), + [anon_sym_compl] = ACTIONS(2569), + [anon_sym_DASH_DASH] = ACTIONS(2559), + [anon_sym_PLUS_PLUS] = ACTIONS(2559), + [anon_sym_sizeof] = ACTIONS(2569), + [anon_sym___alignof__] = ACTIONS(2569), + [anon_sym___alignof] = ACTIONS(2569), + [anon_sym__alignof] = ACTIONS(2569), + [anon_sym_alignof] = ACTIONS(2569), + [anon_sym__Alignof] = ACTIONS(2569), + [anon_sym_offsetof] = ACTIONS(2569), + [anon_sym__Generic] = ACTIONS(2569), + [anon_sym_asm] = ACTIONS(2569), + [anon_sym___asm__] = ACTIONS(2569), + [anon_sym___asm] = ACTIONS(2569), + [sym_number_literal] = ACTIONS(2559), + [anon_sym_L_SQUOTE] = ACTIONS(2559), + [anon_sym_u_SQUOTE] = ACTIONS(2559), + [anon_sym_U_SQUOTE] = ACTIONS(2559), + [anon_sym_u8_SQUOTE] = ACTIONS(2559), + [anon_sym_SQUOTE] = ACTIONS(2559), + [anon_sym_L_DQUOTE] = ACTIONS(2559), + [anon_sym_u_DQUOTE] = ACTIONS(2559), + [anon_sym_U_DQUOTE] = ACTIONS(2559), + [anon_sym_u8_DQUOTE] = ACTIONS(2559), + [anon_sym_DQUOTE] = ACTIONS(2559), + [sym_true] = ACTIONS(2569), + [sym_false] = ACTIONS(2569), + [anon_sym_NULL] = ACTIONS(2569), + [anon_sym_nullptr] = ACTIONS(2569), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2569), + [anon_sym_template] = ACTIONS(2569), + [anon_sym_delete] = ACTIONS(2569), + [anon_sym_R_DQUOTE] = ACTIONS(2559), + [anon_sym_LR_DQUOTE] = ACTIONS(2559), + [anon_sym_uR_DQUOTE] = ACTIONS(2559), + [anon_sym_UR_DQUOTE] = ACTIONS(2559), + [anon_sym_u8R_DQUOTE] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2569), + [anon_sym_new] = ACTIONS(2569), + [anon_sym_requires] = ACTIONS(2569), + [sym_this] = ACTIONS(2569), }, - [1837] = { - [sym_identifier] = ACTIONS(5647), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5649), - [anon_sym_COMMA] = ACTIONS(5649), - [anon_sym_RPAREN] = ACTIONS(5649), - [anon_sym_LPAREN2] = ACTIONS(5649), - [anon_sym_DASH] = ACTIONS(5647), - [anon_sym_PLUS] = ACTIONS(5647), - [anon_sym_STAR] = ACTIONS(5649), - [anon_sym_SLASH] = ACTIONS(5647), - [anon_sym_PERCENT] = ACTIONS(5649), - [anon_sym_PIPE_PIPE] = ACTIONS(5649), - [anon_sym_AMP_AMP] = ACTIONS(5649), - [anon_sym_PIPE] = ACTIONS(5647), - [anon_sym_CARET] = ACTIONS(5649), - [anon_sym_AMP] = ACTIONS(5647), - [anon_sym_EQ_EQ] = ACTIONS(5649), - [anon_sym_BANG_EQ] = ACTIONS(5649), - [anon_sym_GT] = ACTIONS(5647), - [anon_sym_GT_EQ] = ACTIONS(5649), - [anon_sym_LT_EQ] = ACTIONS(5647), - [anon_sym_LT] = ACTIONS(5647), - [anon_sym_LT_LT] = ACTIONS(5649), - [anon_sym_GT_GT] = ACTIONS(5649), - [anon_sym_SEMI] = ACTIONS(5649), - [anon_sym___extension__] = ACTIONS(5647), - [anon_sym___attribute__] = ACTIONS(5647), - [anon_sym___attribute] = ACTIONS(5647), - [anon_sym_COLON] = ACTIONS(5649), - [anon_sym___based] = ACTIONS(5647), - [anon_sym_LBRACE] = ACTIONS(5649), - [anon_sym_RBRACE] = ACTIONS(5649), - [anon_sym_signed] = ACTIONS(5647), - [anon_sym_unsigned] = ACTIONS(5647), - [anon_sym_long] = ACTIONS(5647), - [anon_sym_short] = ACTIONS(5647), - [anon_sym_LBRACK] = ACTIONS(5649), - [anon_sym_RBRACK] = ACTIONS(5649), - [anon_sym_const] = ACTIONS(5647), - [anon_sym_constexpr] = ACTIONS(5647), - [anon_sym_volatile] = ACTIONS(5647), - [anon_sym_restrict] = ACTIONS(5647), - [anon_sym___restrict__] = ACTIONS(5647), - [anon_sym__Atomic] = ACTIONS(5647), - [anon_sym__Noreturn] = ACTIONS(5647), - [anon_sym_noreturn] = ACTIONS(5647), - [anon_sym__Nonnull] = ACTIONS(5647), - [anon_sym_mutable] = ACTIONS(5647), - [anon_sym_constinit] = ACTIONS(5647), - [anon_sym_consteval] = ACTIONS(5647), - [anon_sym_alignas] = ACTIONS(5647), - [anon_sym__Alignas] = ACTIONS(5647), - [sym_primitive_type] = ACTIONS(5647), - [anon_sym_QMARK] = ACTIONS(5649), - [anon_sym_LT_EQ_GT] = ACTIONS(5649), - [anon_sym_or] = ACTIONS(5647), - [anon_sym_and] = ACTIONS(5647), - [anon_sym_bitor] = ACTIONS(5647), - [anon_sym_xor] = ACTIONS(5647), - [anon_sym_bitand] = ACTIONS(5647), - [anon_sym_not_eq] = ACTIONS(5647), - [anon_sym_DASH_DASH] = ACTIONS(5649), - [anon_sym_PLUS_PLUS] = ACTIONS(5649), - [anon_sym_DOT] = ACTIONS(5647), - [anon_sym_DOT_STAR] = ACTIONS(5649), - [anon_sym_DASH_GT] = ACTIONS(5649), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5647), - [anon_sym_decltype] = ACTIONS(5647), - [anon_sym_final] = ACTIONS(5647), - [anon_sym_override] = ACTIONS(5647), - [anon_sym_requires] = ACTIONS(5647), + [1867] = { + [sym_type_qualifier] = STATE(1676), + [sym_alignas_qualifier] = STATE(1702), + [aux_sym__type_definition_type_repeat1] = STATE(1676), + [aux_sym_sized_type_specifier_repeat1] = STATE(1938), + [sym_identifier] = ACTIONS(5670), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5109), + [anon_sym_COMMA] = ACTIONS(5109), + [anon_sym_RPAREN] = ACTIONS(5109), + [anon_sym_LPAREN2] = ACTIONS(5109), + [anon_sym_DASH] = ACTIONS(5111), + [anon_sym_PLUS] = ACTIONS(5111), + [anon_sym_STAR] = ACTIONS(5109), + [anon_sym_SLASH] = ACTIONS(5111), + [anon_sym_PERCENT] = ACTIONS(5109), + [anon_sym_PIPE_PIPE] = ACTIONS(5109), + [anon_sym_AMP_AMP] = ACTIONS(5109), + [anon_sym_PIPE] = ACTIONS(5111), + [anon_sym_CARET] = ACTIONS(5109), + [anon_sym_AMP] = ACTIONS(5111), + [anon_sym_EQ_EQ] = ACTIONS(5109), + [anon_sym_BANG_EQ] = ACTIONS(5109), + [anon_sym_GT] = ACTIONS(5111), + [anon_sym_GT_EQ] = ACTIONS(5109), + [anon_sym_LT_EQ] = ACTIONS(5111), + [anon_sym_LT] = ACTIONS(5111), + [anon_sym_LT_LT] = ACTIONS(5109), + [anon_sym_GT_GT] = ACTIONS(5109), + [anon_sym_SEMI] = ACTIONS(5109), + [anon_sym___extension__] = ACTIONS(5652), + [anon_sym___attribute__] = ACTIONS(5111), + [anon_sym___attribute] = ACTIONS(5111), + [anon_sym_COLON] = ACTIONS(5109), + [anon_sym_LBRACE] = ACTIONS(5109), + [anon_sym_RBRACE] = ACTIONS(5109), + [anon_sym_signed] = ACTIONS(5672), + [anon_sym_unsigned] = ACTIONS(5672), + [anon_sym_long] = ACTIONS(5672), + [anon_sym_short] = ACTIONS(5672), + [anon_sym_LBRACK] = ACTIONS(5109), + [anon_sym_RBRACK] = ACTIONS(5109), + [anon_sym_const] = ACTIONS(5652), + [anon_sym_constexpr] = ACTIONS(5652), + [anon_sym_volatile] = ACTIONS(5652), + [anon_sym_restrict] = ACTIONS(5652), + [anon_sym___restrict__] = ACTIONS(5652), + [anon_sym__Atomic] = ACTIONS(5652), + [anon_sym__Noreturn] = ACTIONS(5652), + [anon_sym_noreturn] = ACTIONS(5652), + [anon_sym__Nonnull] = ACTIONS(5652), + [anon_sym_mutable] = ACTIONS(5652), + [anon_sym_constinit] = ACTIONS(5652), + [anon_sym_consteval] = ACTIONS(5652), + [anon_sym_alignas] = ACTIONS(5656), + [anon_sym__Alignas] = ACTIONS(5656), + [sym_primitive_type] = ACTIONS(5674), + [anon_sym_QMARK] = ACTIONS(5109), + [anon_sym_LT_EQ_GT] = ACTIONS(5109), + [anon_sym_or] = ACTIONS(5111), + [anon_sym_and] = ACTIONS(5111), + [anon_sym_bitor] = ACTIONS(5111), + [anon_sym_xor] = ACTIONS(5111), + [anon_sym_bitand] = ACTIONS(5111), + [anon_sym_not_eq] = ACTIONS(5111), + [anon_sym_DASH_DASH] = ACTIONS(5109), + [anon_sym_PLUS_PLUS] = ACTIONS(5109), + [anon_sym_DOT] = ACTIONS(5111), + [anon_sym_DOT_STAR] = ACTIONS(5109), + [anon_sym_DASH_GT] = ACTIONS(5109), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5111), + [anon_sym_decltype] = ACTIONS(5111), }, - [1838] = { - [sym_catch_clause] = STATE(1851), - [aux_sym_constructor_try_statement_repeat1] = STATE(1851), + [1868] = { + [sym_catch_clause] = STATE(1870), + [aux_sym_constructor_try_statement_repeat1] = STATE(1870), + [sym_identifier] = ACTIONS(2527), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token2] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2527), + [sym_preproc_directive] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym___extension__] = ACTIONS(2527), + [anon_sym_typedef] = ACTIONS(2527), + [anon_sym_virtual] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym___attribute__] = ACTIONS(2527), + [anon_sym___attribute] = ACTIONS(2527), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2529), + [anon_sym___declspec] = ACTIONS(2527), + [anon_sym___based] = ACTIONS(2527), + [anon_sym_signed] = ACTIONS(2527), + [anon_sym_unsigned] = ACTIONS(2527), + [anon_sym_long] = ACTIONS(2527), + [anon_sym_short] = ACTIONS(2527), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_register] = ACTIONS(2527), + [anon_sym_inline] = ACTIONS(2527), + [anon_sym___inline] = ACTIONS(2527), + [anon_sym___inline__] = ACTIONS(2527), + [anon_sym___forceinline] = ACTIONS(2527), + [anon_sym_thread_local] = ACTIONS(2527), + [anon_sym___thread] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_constexpr] = ACTIONS(2527), + [anon_sym_volatile] = ACTIONS(2527), + [anon_sym_restrict] = ACTIONS(2527), + [anon_sym___restrict__] = ACTIONS(2527), + [anon_sym__Atomic] = ACTIONS(2527), + [anon_sym__Noreturn] = ACTIONS(2527), + [anon_sym_noreturn] = ACTIONS(2527), + [anon_sym__Nonnull] = ACTIONS(2527), + [anon_sym_mutable] = ACTIONS(2527), + [anon_sym_constinit] = ACTIONS(2527), + [anon_sym_consteval] = ACTIONS(2527), + [anon_sym_alignas] = ACTIONS(2527), + [anon_sym__Alignas] = ACTIONS(2527), + [sym_primitive_type] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_class] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2527), + [anon_sym_decltype] = ACTIONS(2527), + [anon_sym_explicit] = ACTIONS(2527), + [anon_sym_typename] = ACTIONS(2527), + [anon_sym_private] = ACTIONS(2527), + [anon_sym_template] = ACTIONS(2527), + [anon_sym_operator] = ACTIONS(2527), + [anon_sym_friend] = ACTIONS(2527), + [anon_sym_public] = ACTIONS(2527), + [anon_sym_protected] = ACTIONS(2527), + [anon_sym_static_assert] = ACTIONS(2527), + [anon_sym_catch] = ACTIONS(5676), + }, + [1869] = { + [sym_catch_clause] = STATE(1879), + [aux_sym_constructor_try_statement_repeat1] = STATE(1879), [sym_identifier] = ACTIONS(2590), [aux_sym_preproc_def_token1] = ACTIONS(2590), [aux_sym_preproc_if_token1] = ACTIONS(2590), - [aux_sym_preproc_if_token2] = ACTIONS(2590), [aux_sym_preproc_ifdef_token1] = ACTIONS(2590), [aux_sym_preproc_ifdef_token2] = ACTIONS(2590), [sym_preproc_directive] = ACTIONS(2590), @@ -257291,6 +261137,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_LBRACK] = ACTIONS(2592), [anon_sym___declspec] = ACTIONS(2590), [anon_sym___based] = ACTIONS(2590), + [anon_sym_RBRACE] = ACTIONS(2592), [anon_sym_signed] = ACTIONS(2590), [anon_sym_unsigned] = ACTIONS(2590), [anon_sym_long] = ACTIONS(2590), @@ -257335,739 +261182,155 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_public] = ACTIONS(2590), [anon_sym_protected] = ACTIONS(2590), [anon_sym_static_assert] = ACTIONS(2590), - [anon_sym_catch] = ACTIONS(5645), - }, - [1839] = { - [sym_identifier] = ACTIONS(5651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5653), - [anon_sym_COMMA] = ACTIONS(5653), - [anon_sym_RPAREN] = ACTIONS(5653), - [anon_sym_LPAREN2] = ACTIONS(5653), - [anon_sym_DASH] = ACTIONS(5651), - [anon_sym_PLUS] = ACTIONS(5651), - [anon_sym_STAR] = ACTIONS(5653), - [anon_sym_SLASH] = ACTIONS(5651), - [anon_sym_PERCENT] = ACTIONS(5653), - [anon_sym_PIPE_PIPE] = ACTIONS(5653), - [anon_sym_AMP_AMP] = ACTIONS(5653), - [anon_sym_PIPE] = ACTIONS(5651), - [anon_sym_CARET] = ACTIONS(5653), - [anon_sym_AMP] = ACTIONS(5651), - [anon_sym_EQ_EQ] = ACTIONS(5653), - [anon_sym_BANG_EQ] = ACTIONS(5653), - [anon_sym_GT] = ACTIONS(5651), - [anon_sym_GT_EQ] = ACTIONS(5653), - [anon_sym_LT_EQ] = ACTIONS(5651), - [anon_sym_LT] = ACTIONS(5651), - [anon_sym_LT_LT] = ACTIONS(5653), - [anon_sym_GT_GT] = ACTIONS(5653), - [anon_sym_SEMI] = ACTIONS(5653), - [anon_sym___extension__] = ACTIONS(5651), - [anon_sym___attribute__] = ACTIONS(5651), - [anon_sym___attribute] = ACTIONS(5651), - [anon_sym_COLON] = ACTIONS(5653), - [anon_sym___based] = ACTIONS(5651), - [anon_sym_LBRACE] = ACTIONS(5653), - [anon_sym_RBRACE] = ACTIONS(5653), - [anon_sym_signed] = ACTIONS(5651), - [anon_sym_unsigned] = ACTIONS(5651), - [anon_sym_long] = ACTIONS(5651), - [anon_sym_short] = ACTIONS(5651), - [anon_sym_LBRACK] = ACTIONS(5653), - [anon_sym_RBRACK] = ACTIONS(5653), - [anon_sym_const] = ACTIONS(5651), - [anon_sym_constexpr] = ACTIONS(5651), - [anon_sym_volatile] = ACTIONS(5651), - [anon_sym_restrict] = ACTIONS(5651), - [anon_sym___restrict__] = ACTIONS(5651), - [anon_sym__Atomic] = ACTIONS(5651), - [anon_sym__Noreturn] = ACTIONS(5651), - [anon_sym_noreturn] = ACTIONS(5651), - [anon_sym__Nonnull] = ACTIONS(5651), - [anon_sym_mutable] = ACTIONS(5651), - [anon_sym_constinit] = ACTIONS(5651), - [anon_sym_consteval] = ACTIONS(5651), - [anon_sym_alignas] = ACTIONS(5651), - [anon_sym__Alignas] = ACTIONS(5651), - [sym_primitive_type] = ACTIONS(5651), - [anon_sym_QMARK] = ACTIONS(5653), - [anon_sym_LT_EQ_GT] = ACTIONS(5653), - [anon_sym_or] = ACTIONS(5651), - [anon_sym_and] = ACTIONS(5651), - [anon_sym_bitor] = ACTIONS(5651), - [anon_sym_xor] = ACTIONS(5651), - [anon_sym_bitand] = ACTIONS(5651), - [anon_sym_not_eq] = ACTIONS(5651), - [anon_sym_DASH_DASH] = ACTIONS(5653), - [anon_sym_PLUS_PLUS] = ACTIONS(5653), - [anon_sym_DOT] = ACTIONS(5651), - [anon_sym_DOT_STAR] = ACTIONS(5653), - [anon_sym_DASH_GT] = ACTIONS(5653), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5651), - [anon_sym_decltype] = ACTIONS(5651), - [anon_sym_final] = ACTIONS(5651), - [anon_sym_override] = ACTIONS(5651), - [anon_sym_requires] = ACTIONS(5651), - }, - [1840] = { - [sym_identifier] = ACTIONS(5655), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5657), - [anon_sym_COMMA] = ACTIONS(5657), - [anon_sym_RPAREN] = ACTIONS(5657), - [anon_sym_LPAREN2] = ACTIONS(5657), - [anon_sym_DASH] = ACTIONS(5655), - [anon_sym_PLUS] = ACTIONS(5655), - [anon_sym_STAR] = ACTIONS(5657), - [anon_sym_SLASH] = ACTIONS(5655), - [anon_sym_PERCENT] = ACTIONS(5657), - [anon_sym_PIPE_PIPE] = ACTIONS(5657), - [anon_sym_AMP_AMP] = ACTIONS(5657), - [anon_sym_PIPE] = ACTIONS(5655), - [anon_sym_CARET] = ACTIONS(5657), - [anon_sym_AMP] = ACTIONS(5655), - [anon_sym_EQ_EQ] = ACTIONS(5657), - [anon_sym_BANG_EQ] = ACTIONS(5657), - [anon_sym_GT] = ACTIONS(5655), - [anon_sym_GT_EQ] = ACTIONS(5657), - [anon_sym_LT_EQ] = ACTIONS(5655), - [anon_sym_LT] = ACTIONS(5655), - [anon_sym_LT_LT] = ACTIONS(5657), - [anon_sym_GT_GT] = ACTIONS(5657), - [anon_sym_SEMI] = ACTIONS(5657), - [anon_sym___extension__] = ACTIONS(5655), - [anon_sym___attribute__] = ACTIONS(5655), - [anon_sym___attribute] = ACTIONS(5655), - [anon_sym_COLON] = ACTIONS(5657), - [anon_sym___based] = ACTIONS(5655), - [anon_sym_LBRACE] = ACTIONS(5657), - [anon_sym_RBRACE] = ACTIONS(5657), - [anon_sym_signed] = ACTIONS(5655), - [anon_sym_unsigned] = ACTIONS(5655), - [anon_sym_long] = ACTIONS(5655), - [anon_sym_short] = ACTIONS(5655), - [anon_sym_LBRACK] = ACTIONS(5657), - [anon_sym_RBRACK] = ACTIONS(5657), - [anon_sym_const] = ACTIONS(5655), - [anon_sym_constexpr] = ACTIONS(5655), - [anon_sym_volatile] = ACTIONS(5655), - [anon_sym_restrict] = ACTIONS(5655), - [anon_sym___restrict__] = ACTIONS(5655), - [anon_sym__Atomic] = ACTIONS(5655), - [anon_sym__Noreturn] = ACTIONS(5655), - [anon_sym_noreturn] = ACTIONS(5655), - [anon_sym__Nonnull] = ACTIONS(5655), - [anon_sym_mutable] = ACTIONS(5655), - [anon_sym_constinit] = ACTIONS(5655), - [anon_sym_consteval] = ACTIONS(5655), - [anon_sym_alignas] = ACTIONS(5655), - [anon_sym__Alignas] = ACTIONS(5655), - [sym_primitive_type] = ACTIONS(5655), - [anon_sym_QMARK] = ACTIONS(5657), - [anon_sym_LT_EQ_GT] = ACTIONS(5657), - [anon_sym_or] = ACTIONS(5655), - [anon_sym_and] = ACTIONS(5655), - [anon_sym_bitor] = ACTIONS(5655), - [anon_sym_xor] = ACTIONS(5655), - [anon_sym_bitand] = ACTIONS(5655), - [anon_sym_not_eq] = ACTIONS(5655), - [anon_sym_DASH_DASH] = ACTIONS(5657), - [anon_sym_PLUS_PLUS] = ACTIONS(5657), - [anon_sym_DOT] = ACTIONS(5655), - [anon_sym_DOT_STAR] = ACTIONS(5657), - [anon_sym_DASH_GT] = ACTIONS(5657), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5655), - [anon_sym_decltype] = ACTIONS(5655), - [anon_sym_final] = ACTIONS(5655), - [anon_sym_override] = ACTIONS(5655), - [anon_sym_requires] = ACTIONS(5655), - }, - [1841] = { - [sym_identifier] = ACTIONS(5659), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5661), - [anon_sym_COMMA] = ACTIONS(5661), - [anon_sym_RPAREN] = ACTIONS(5661), - [anon_sym_LPAREN2] = ACTIONS(5661), - [anon_sym_DASH] = ACTIONS(5659), - [anon_sym_PLUS] = ACTIONS(5659), - [anon_sym_STAR] = ACTIONS(5661), - [anon_sym_SLASH] = ACTIONS(5659), - [anon_sym_PERCENT] = ACTIONS(5661), - [anon_sym_PIPE_PIPE] = ACTIONS(5661), - [anon_sym_AMP_AMP] = ACTIONS(5661), - [anon_sym_PIPE] = ACTIONS(5659), - [anon_sym_CARET] = ACTIONS(5661), - [anon_sym_AMP] = ACTIONS(5659), - [anon_sym_EQ_EQ] = ACTIONS(5661), - [anon_sym_BANG_EQ] = ACTIONS(5661), - [anon_sym_GT] = ACTIONS(5659), - [anon_sym_GT_EQ] = ACTIONS(5661), - [anon_sym_LT_EQ] = ACTIONS(5659), - [anon_sym_LT] = ACTIONS(5659), - [anon_sym_LT_LT] = ACTIONS(5661), - [anon_sym_GT_GT] = ACTIONS(5661), - [anon_sym_SEMI] = ACTIONS(5661), - [anon_sym___extension__] = ACTIONS(5659), - [anon_sym___attribute__] = ACTIONS(5659), - [anon_sym___attribute] = ACTIONS(5659), - [anon_sym_COLON] = ACTIONS(5661), - [anon_sym___based] = ACTIONS(5659), - [anon_sym_LBRACE] = ACTIONS(5661), - [anon_sym_RBRACE] = ACTIONS(5661), - [anon_sym_signed] = ACTIONS(5659), - [anon_sym_unsigned] = ACTIONS(5659), - [anon_sym_long] = ACTIONS(5659), - [anon_sym_short] = ACTIONS(5659), - [anon_sym_LBRACK] = ACTIONS(5661), - [anon_sym_RBRACK] = ACTIONS(5661), - [anon_sym_const] = ACTIONS(5659), - [anon_sym_constexpr] = ACTIONS(5659), - [anon_sym_volatile] = ACTIONS(5659), - [anon_sym_restrict] = ACTIONS(5659), - [anon_sym___restrict__] = ACTIONS(5659), - [anon_sym__Atomic] = ACTIONS(5659), - [anon_sym__Noreturn] = ACTIONS(5659), - [anon_sym_noreturn] = ACTIONS(5659), - [anon_sym__Nonnull] = ACTIONS(5659), - [anon_sym_mutable] = ACTIONS(5659), - [anon_sym_constinit] = ACTIONS(5659), - [anon_sym_consteval] = ACTIONS(5659), - [anon_sym_alignas] = ACTIONS(5659), - [anon_sym__Alignas] = ACTIONS(5659), - [sym_primitive_type] = ACTIONS(5659), - [anon_sym_QMARK] = ACTIONS(5661), - [anon_sym_LT_EQ_GT] = ACTIONS(5661), - [anon_sym_or] = ACTIONS(5659), - [anon_sym_and] = ACTIONS(5659), - [anon_sym_bitor] = ACTIONS(5659), - [anon_sym_xor] = ACTIONS(5659), - [anon_sym_bitand] = ACTIONS(5659), - [anon_sym_not_eq] = ACTIONS(5659), - [anon_sym_DASH_DASH] = ACTIONS(5661), - [anon_sym_PLUS_PLUS] = ACTIONS(5661), - [anon_sym_DOT] = ACTIONS(5659), - [anon_sym_DOT_STAR] = ACTIONS(5661), - [anon_sym_DASH_GT] = ACTIONS(5661), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5659), - [anon_sym_decltype] = ACTIONS(5659), - [anon_sym_final] = ACTIONS(5659), - [anon_sym_override] = ACTIONS(5659), - [anon_sym_requires] = ACTIONS(5659), - }, - [1842] = { - [sym_identifier] = ACTIONS(5663), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5665), - [anon_sym_COMMA] = ACTIONS(5665), - [anon_sym_RPAREN] = ACTIONS(5665), - [anon_sym_LPAREN2] = ACTIONS(5665), - [anon_sym_DASH] = ACTIONS(5663), - [anon_sym_PLUS] = ACTIONS(5663), - [anon_sym_STAR] = ACTIONS(5665), - [anon_sym_SLASH] = ACTIONS(5663), - [anon_sym_PERCENT] = ACTIONS(5665), - [anon_sym_PIPE_PIPE] = ACTIONS(5665), - [anon_sym_AMP_AMP] = ACTIONS(5665), - [anon_sym_PIPE] = ACTIONS(5663), - [anon_sym_CARET] = ACTIONS(5665), - [anon_sym_AMP] = ACTIONS(5663), - [anon_sym_EQ_EQ] = ACTIONS(5665), - [anon_sym_BANG_EQ] = ACTIONS(5665), - [anon_sym_GT] = ACTIONS(5663), - [anon_sym_GT_EQ] = ACTIONS(5665), - [anon_sym_LT_EQ] = ACTIONS(5663), - [anon_sym_LT] = ACTIONS(5663), - [anon_sym_LT_LT] = ACTIONS(5665), - [anon_sym_GT_GT] = ACTIONS(5665), - [anon_sym_SEMI] = ACTIONS(5665), - [anon_sym___extension__] = ACTIONS(5663), - [anon_sym___attribute__] = ACTIONS(5663), - [anon_sym___attribute] = ACTIONS(5663), - [anon_sym_COLON] = ACTIONS(5665), - [anon_sym___based] = ACTIONS(5663), - [anon_sym_LBRACE] = ACTIONS(5665), - [anon_sym_RBRACE] = ACTIONS(5665), - [anon_sym_signed] = ACTIONS(5663), - [anon_sym_unsigned] = ACTIONS(5663), - [anon_sym_long] = ACTIONS(5663), - [anon_sym_short] = ACTIONS(5663), - [anon_sym_LBRACK] = ACTIONS(5665), - [anon_sym_RBRACK] = ACTIONS(5665), - [anon_sym_const] = ACTIONS(5663), - [anon_sym_constexpr] = ACTIONS(5663), - [anon_sym_volatile] = ACTIONS(5663), - [anon_sym_restrict] = ACTIONS(5663), - [anon_sym___restrict__] = ACTIONS(5663), - [anon_sym__Atomic] = ACTIONS(5663), - [anon_sym__Noreturn] = ACTIONS(5663), - [anon_sym_noreturn] = ACTIONS(5663), - [anon_sym__Nonnull] = ACTIONS(5663), - [anon_sym_mutable] = ACTIONS(5663), - [anon_sym_constinit] = ACTIONS(5663), - [anon_sym_consteval] = ACTIONS(5663), - [anon_sym_alignas] = ACTIONS(5663), - [anon_sym__Alignas] = ACTIONS(5663), - [sym_primitive_type] = ACTIONS(5663), - [anon_sym_QMARK] = ACTIONS(5665), - [anon_sym_LT_EQ_GT] = ACTIONS(5665), - [anon_sym_or] = ACTIONS(5663), - [anon_sym_and] = ACTIONS(5663), - [anon_sym_bitor] = ACTIONS(5663), - [anon_sym_xor] = ACTIONS(5663), - [anon_sym_bitand] = ACTIONS(5663), - [anon_sym_not_eq] = ACTIONS(5663), - [anon_sym_DASH_DASH] = ACTIONS(5665), - [anon_sym_PLUS_PLUS] = ACTIONS(5665), - [anon_sym_DOT] = ACTIONS(5663), - [anon_sym_DOT_STAR] = ACTIONS(5665), - [anon_sym_DASH_GT] = ACTIONS(5665), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5663), - [anon_sym_decltype] = ACTIONS(5663), - [anon_sym_final] = ACTIONS(5663), - [anon_sym_override] = ACTIONS(5663), - [anon_sym_requires] = ACTIONS(5663), - }, - [1843] = { - [sym_identifier] = ACTIONS(5667), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5669), - [anon_sym_COMMA] = ACTIONS(5669), - [anon_sym_RPAREN] = ACTIONS(5669), - [anon_sym_LPAREN2] = ACTIONS(5669), - [anon_sym_DASH] = ACTIONS(5667), - [anon_sym_PLUS] = ACTIONS(5667), - [anon_sym_STAR] = ACTIONS(5669), - [anon_sym_SLASH] = ACTIONS(5667), - [anon_sym_PERCENT] = ACTIONS(5669), - [anon_sym_PIPE_PIPE] = ACTIONS(5669), - [anon_sym_AMP_AMP] = ACTIONS(5669), - [anon_sym_PIPE] = ACTIONS(5667), - [anon_sym_CARET] = ACTIONS(5669), - [anon_sym_AMP] = ACTIONS(5667), - [anon_sym_EQ_EQ] = ACTIONS(5669), - [anon_sym_BANG_EQ] = ACTIONS(5669), - [anon_sym_GT] = ACTIONS(5667), - [anon_sym_GT_EQ] = ACTIONS(5669), - [anon_sym_LT_EQ] = ACTIONS(5667), - [anon_sym_LT] = ACTIONS(5667), - [anon_sym_LT_LT] = ACTIONS(5669), - [anon_sym_GT_GT] = ACTIONS(5669), - [anon_sym_SEMI] = ACTIONS(5669), - [anon_sym___extension__] = ACTIONS(5667), - [anon_sym___attribute__] = ACTIONS(5667), - [anon_sym___attribute] = ACTIONS(5667), - [anon_sym_COLON] = ACTIONS(5669), - [anon_sym___based] = ACTIONS(5667), - [anon_sym_LBRACE] = ACTIONS(5669), - [anon_sym_RBRACE] = ACTIONS(5669), - [anon_sym_signed] = ACTIONS(5667), - [anon_sym_unsigned] = ACTIONS(5667), - [anon_sym_long] = ACTIONS(5667), - [anon_sym_short] = ACTIONS(5667), - [anon_sym_LBRACK] = ACTIONS(5669), - [anon_sym_RBRACK] = ACTIONS(5669), - [anon_sym_const] = ACTIONS(5667), - [anon_sym_constexpr] = ACTIONS(5667), - [anon_sym_volatile] = ACTIONS(5667), - [anon_sym_restrict] = ACTIONS(5667), - [anon_sym___restrict__] = ACTIONS(5667), - [anon_sym__Atomic] = ACTIONS(5667), - [anon_sym__Noreturn] = ACTIONS(5667), - [anon_sym_noreturn] = ACTIONS(5667), - [anon_sym__Nonnull] = ACTIONS(5667), - [anon_sym_mutable] = ACTIONS(5667), - [anon_sym_constinit] = ACTIONS(5667), - [anon_sym_consteval] = ACTIONS(5667), - [anon_sym_alignas] = ACTIONS(5667), - [anon_sym__Alignas] = ACTIONS(5667), - [sym_primitive_type] = ACTIONS(5667), - [anon_sym_QMARK] = ACTIONS(5669), - [anon_sym_LT_EQ_GT] = ACTIONS(5669), - [anon_sym_or] = ACTIONS(5667), - [anon_sym_and] = ACTIONS(5667), - [anon_sym_bitor] = ACTIONS(5667), - [anon_sym_xor] = ACTIONS(5667), - [anon_sym_bitand] = ACTIONS(5667), - [anon_sym_not_eq] = ACTIONS(5667), - [anon_sym_DASH_DASH] = ACTIONS(5669), - [anon_sym_PLUS_PLUS] = ACTIONS(5669), - [anon_sym_DOT] = ACTIONS(5667), - [anon_sym_DOT_STAR] = ACTIONS(5669), - [anon_sym_DASH_GT] = ACTIONS(5669), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5667), - [anon_sym_decltype] = ACTIONS(5667), - [anon_sym_final] = ACTIONS(5667), - [anon_sym_override] = ACTIONS(5667), - [anon_sym_requires] = ACTIONS(5667), - }, - [1844] = { - [sym_identifier] = ACTIONS(4996), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5003), - [anon_sym_COMMA] = ACTIONS(5003), - [anon_sym_RPAREN] = ACTIONS(5003), - [aux_sym_preproc_if_token2] = ACTIONS(5003), - [aux_sym_preproc_else_token1] = ACTIONS(5003), - [aux_sym_preproc_elif_token1] = ACTIONS(4996), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5003), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5003), - [anon_sym_LPAREN2] = ACTIONS(5003), - [anon_sym_DASH] = ACTIONS(4996), - [anon_sym_PLUS] = ACTIONS(4996), - [anon_sym_STAR] = ACTIONS(5003), - [anon_sym_SLASH] = ACTIONS(4996), - [anon_sym_PERCENT] = ACTIONS(5003), - [anon_sym_PIPE_PIPE] = ACTIONS(5003), - [anon_sym_AMP_AMP] = ACTIONS(5003), - [anon_sym_PIPE] = ACTIONS(4996), - [anon_sym_CARET] = ACTIONS(5003), - [anon_sym_AMP] = ACTIONS(4996), - [anon_sym_EQ_EQ] = ACTIONS(5003), - [anon_sym_BANG_EQ] = ACTIONS(5003), - [anon_sym_GT] = ACTIONS(4996), - [anon_sym_GT_EQ] = ACTIONS(5003), - [anon_sym_LT_EQ] = ACTIONS(4996), - [anon_sym_LT] = ACTIONS(4996), - [anon_sym_LT_LT] = ACTIONS(5003), - [anon_sym_GT_GT] = ACTIONS(5003), - [anon_sym_SEMI] = ACTIONS(5003), - [anon_sym___extension__] = ACTIONS(4996), - [anon_sym___attribute__] = ACTIONS(4996), - [anon_sym___attribute] = ACTIONS(4996), - [anon_sym_COLON] = ACTIONS(4996), - [anon_sym_COLON_COLON] = ACTIONS(5003), - [anon_sym_LBRACE] = ACTIONS(5003), - [anon_sym_RBRACE] = ACTIONS(5003), - [anon_sym_LBRACK] = ACTIONS(5003), - [anon_sym_RBRACK] = ACTIONS(5003), - [anon_sym_const] = ACTIONS(4996), - [anon_sym_constexpr] = ACTIONS(4996), - [anon_sym_volatile] = ACTIONS(4996), - [anon_sym_restrict] = ACTIONS(4996), - [anon_sym___restrict__] = ACTIONS(4996), - [anon_sym__Atomic] = ACTIONS(4996), - [anon_sym__Noreturn] = ACTIONS(4996), - [anon_sym_noreturn] = ACTIONS(4996), - [anon_sym__Nonnull] = ACTIONS(4996), - [anon_sym_mutable] = ACTIONS(4996), - [anon_sym_constinit] = ACTIONS(4996), - [anon_sym_consteval] = ACTIONS(4996), - [anon_sym_alignas] = ACTIONS(4996), - [anon_sym__Alignas] = ACTIONS(4996), - [anon_sym_QMARK] = ACTIONS(5003), - [anon_sym_LT_EQ_GT] = ACTIONS(5003), - [anon_sym_or] = ACTIONS(4996), - [anon_sym_and] = ACTIONS(4996), - [anon_sym_bitor] = ACTIONS(4996), - [anon_sym_xor] = ACTIONS(4996), - [anon_sym_bitand] = ACTIONS(4996), - [anon_sym_not_eq] = ACTIONS(4996), - [anon_sym_DASH_DASH] = ACTIONS(5003), - [anon_sym_PLUS_PLUS] = ACTIONS(5003), - [anon_sym_DOT] = ACTIONS(4996), - [anon_sym_DOT_STAR] = ACTIONS(5003), - [anon_sym_DASH_GT] = ACTIONS(5003), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4996), - [anon_sym_decltype] = ACTIONS(4996), - [anon_sym_final] = ACTIONS(4996), - [anon_sym_override] = ACTIONS(4996), - [anon_sym_requires] = ACTIONS(4996), - }, - [1845] = { - [sym_catch_clause] = STATE(1890), - [aux_sym_constructor_try_statement_repeat1] = STATE(1890), - [sym_identifier] = ACTIONS(2483), - [aux_sym_preproc_def_token1] = ACTIONS(2483), - [aux_sym_preproc_if_token1] = ACTIONS(2483), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2483), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2483), - [sym_preproc_directive] = ACTIONS(2483), - [anon_sym_LPAREN2] = ACTIONS(2485), - [anon_sym_TILDE] = ACTIONS(2485), - [anon_sym_STAR] = ACTIONS(2485), - [anon_sym_AMP_AMP] = ACTIONS(2485), - [anon_sym_AMP] = ACTIONS(2483), - [anon_sym_SEMI] = ACTIONS(2485), - [anon_sym___extension__] = ACTIONS(2483), - [anon_sym_typedef] = ACTIONS(2483), - [anon_sym_virtual] = ACTIONS(2483), - [anon_sym_extern] = ACTIONS(2483), - [anon_sym___attribute__] = ACTIONS(2483), - [anon_sym___attribute] = ACTIONS(2483), - [anon_sym_using] = ACTIONS(2483), - [anon_sym_COLON_COLON] = ACTIONS(2485), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2485), - [anon_sym___declspec] = ACTIONS(2483), - [anon_sym___based] = ACTIONS(2483), - [anon_sym_RBRACE] = ACTIONS(2485), - [anon_sym_signed] = ACTIONS(2483), - [anon_sym_unsigned] = ACTIONS(2483), - [anon_sym_long] = ACTIONS(2483), - [anon_sym_short] = ACTIONS(2483), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_static] = ACTIONS(2483), - [anon_sym_register] = ACTIONS(2483), - [anon_sym_inline] = ACTIONS(2483), - [anon_sym___inline] = ACTIONS(2483), - [anon_sym___inline__] = ACTIONS(2483), - [anon_sym___forceinline] = ACTIONS(2483), - [anon_sym_thread_local] = ACTIONS(2483), - [anon_sym___thread] = ACTIONS(2483), - [anon_sym_const] = ACTIONS(2483), - [anon_sym_constexpr] = ACTIONS(2483), - [anon_sym_volatile] = ACTIONS(2483), - [anon_sym_restrict] = ACTIONS(2483), - [anon_sym___restrict__] = ACTIONS(2483), - [anon_sym__Atomic] = ACTIONS(2483), - [anon_sym__Noreturn] = ACTIONS(2483), - [anon_sym_noreturn] = ACTIONS(2483), - [anon_sym__Nonnull] = ACTIONS(2483), - [anon_sym_mutable] = ACTIONS(2483), - [anon_sym_constinit] = ACTIONS(2483), - [anon_sym_consteval] = ACTIONS(2483), - [anon_sym_alignas] = ACTIONS(2483), - [anon_sym__Alignas] = ACTIONS(2483), - [sym_primitive_type] = ACTIONS(2483), - [anon_sym_enum] = ACTIONS(2483), - [anon_sym_class] = ACTIONS(2483), - [anon_sym_struct] = ACTIONS(2483), - [anon_sym_union] = ACTIONS(2483), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2483), - [anon_sym_decltype] = ACTIONS(2483), - [anon_sym_explicit] = ACTIONS(2483), - [anon_sym_typename] = ACTIONS(2483), - [anon_sym_private] = ACTIONS(2483), - [anon_sym_template] = ACTIONS(2483), - [anon_sym_operator] = ACTIONS(2483), - [anon_sym_friend] = ACTIONS(2483), - [anon_sym_public] = ACTIONS(2483), - [anon_sym_protected] = ACTIONS(2483), - [anon_sym_static_assert] = ACTIONS(2483), - [anon_sym_catch] = ACTIONS(5671), - }, - [1846] = { - [sym_catch_clause] = STATE(1851), - [aux_sym_constructor_try_statement_repeat1] = STATE(1851), - [sym_identifier] = ACTIONS(2483), - [aux_sym_preproc_def_token1] = ACTIONS(2483), - [aux_sym_preproc_if_token1] = ACTIONS(2483), - [aux_sym_preproc_if_token2] = ACTIONS(2483), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2483), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2483), - [sym_preproc_directive] = ACTIONS(2483), - [anon_sym_LPAREN2] = ACTIONS(2485), - [anon_sym_TILDE] = ACTIONS(2485), - [anon_sym_STAR] = ACTIONS(2485), - [anon_sym_AMP_AMP] = ACTIONS(2485), - [anon_sym_AMP] = ACTIONS(2483), - [anon_sym_SEMI] = ACTIONS(2485), - [anon_sym___extension__] = ACTIONS(2483), - [anon_sym_typedef] = ACTIONS(2483), - [anon_sym_virtual] = ACTIONS(2483), - [anon_sym_extern] = ACTIONS(2483), - [anon_sym___attribute__] = ACTIONS(2483), - [anon_sym___attribute] = ACTIONS(2483), - [anon_sym_using] = ACTIONS(2483), - [anon_sym_COLON_COLON] = ACTIONS(2485), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2485), - [anon_sym___declspec] = ACTIONS(2483), - [anon_sym___based] = ACTIONS(2483), - [anon_sym_signed] = ACTIONS(2483), - [anon_sym_unsigned] = ACTIONS(2483), - [anon_sym_long] = ACTIONS(2483), - [anon_sym_short] = ACTIONS(2483), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_static] = ACTIONS(2483), - [anon_sym_register] = ACTIONS(2483), - [anon_sym_inline] = ACTIONS(2483), - [anon_sym___inline] = ACTIONS(2483), - [anon_sym___inline__] = ACTIONS(2483), - [anon_sym___forceinline] = ACTIONS(2483), - [anon_sym_thread_local] = ACTIONS(2483), - [anon_sym___thread] = ACTIONS(2483), - [anon_sym_const] = ACTIONS(2483), - [anon_sym_constexpr] = ACTIONS(2483), - [anon_sym_volatile] = ACTIONS(2483), - [anon_sym_restrict] = ACTIONS(2483), - [anon_sym___restrict__] = ACTIONS(2483), - [anon_sym__Atomic] = ACTIONS(2483), - [anon_sym__Noreturn] = ACTIONS(2483), - [anon_sym_noreturn] = ACTIONS(2483), - [anon_sym__Nonnull] = ACTIONS(2483), - [anon_sym_mutable] = ACTIONS(2483), - [anon_sym_constinit] = ACTIONS(2483), - [anon_sym_consteval] = ACTIONS(2483), - [anon_sym_alignas] = ACTIONS(2483), - [anon_sym__Alignas] = ACTIONS(2483), - [sym_primitive_type] = ACTIONS(2483), - [anon_sym_enum] = ACTIONS(2483), - [anon_sym_class] = ACTIONS(2483), - [anon_sym_struct] = ACTIONS(2483), - [anon_sym_union] = ACTIONS(2483), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2483), - [anon_sym_decltype] = ACTIONS(2483), - [anon_sym_explicit] = ACTIONS(2483), - [anon_sym_typename] = ACTIONS(2483), - [anon_sym_private] = ACTIONS(2483), - [anon_sym_template] = ACTIONS(2483), - [anon_sym_operator] = ACTIONS(2483), - [anon_sym_friend] = ACTIONS(2483), - [anon_sym_public] = ACTIONS(2483), - [anon_sym_protected] = ACTIONS(2483), - [anon_sym_static_assert] = ACTIONS(2483), - [anon_sym_catch] = ACTIONS(5645), + [anon_sym_catch] = ACTIONS(5664), }, - [1847] = { - [sym_identifier] = ACTIONS(5673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5675), - [anon_sym_COMMA] = ACTIONS(5675), - [anon_sym_RPAREN] = ACTIONS(5675), - [anon_sym_LPAREN2] = ACTIONS(5675), - [anon_sym_DASH] = ACTIONS(5673), - [anon_sym_PLUS] = ACTIONS(5673), - [anon_sym_STAR] = ACTIONS(5675), - [anon_sym_SLASH] = ACTIONS(5673), - [anon_sym_PERCENT] = ACTIONS(5675), - [anon_sym_PIPE_PIPE] = ACTIONS(5675), - [anon_sym_AMP_AMP] = ACTIONS(5675), - [anon_sym_PIPE] = ACTIONS(5673), - [anon_sym_CARET] = ACTIONS(5675), - [anon_sym_AMP] = ACTIONS(5673), - [anon_sym_EQ_EQ] = ACTIONS(5675), - [anon_sym_BANG_EQ] = ACTIONS(5675), - [anon_sym_GT] = ACTIONS(5673), - [anon_sym_GT_EQ] = ACTIONS(5675), - [anon_sym_LT_EQ] = ACTIONS(5673), - [anon_sym_LT] = ACTIONS(5673), - [anon_sym_LT_LT] = ACTIONS(5675), - [anon_sym_GT_GT] = ACTIONS(5675), - [anon_sym_SEMI] = ACTIONS(5675), - [anon_sym___extension__] = ACTIONS(5673), - [anon_sym___attribute__] = ACTIONS(5673), - [anon_sym___attribute] = ACTIONS(5673), - [anon_sym_COLON] = ACTIONS(5675), - [anon_sym___based] = ACTIONS(5673), - [anon_sym_LBRACE] = ACTIONS(5675), - [anon_sym_RBRACE] = ACTIONS(5675), - [anon_sym_signed] = ACTIONS(5673), - [anon_sym_unsigned] = ACTIONS(5673), - [anon_sym_long] = ACTIONS(5673), - [anon_sym_short] = ACTIONS(5673), - [anon_sym_LBRACK] = ACTIONS(5675), - [anon_sym_RBRACK] = ACTIONS(5675), - [anon_sym_const] = ACTIONS(5673), - [anon_sym_constexpr] = ACTIONS(5673), - [anon_sym_volatile] = ACTIONS(5673), - [anon_sym_restrict] = ACTIONS(5673), - [anon_sym___restrict__] = ACTIONS(5673), - [anon_sym__Atomic] = ACTIONS(5673), - [anon_sym__Noreturn] = ACTIONS(5673), - [anon_sym_noreturn] = ACTIONS(5673), - [anon_sym__Nonnull] = ACTIONS(5673), - [anon_sym_mutable] = ACTIONS(5673), - [anon_sym_constinit] = ACTIONS(5673), - [anon_sym_consteval] = ACTIONS(5673), - [anon_sym_alignas] = ACTIONS(5673), - [anon_sym__Alignas] = ACTIONS(5673), - [sym_primitive_type] = ACTIONS(5673), - [anon_sym_QMARK] = ACTIONS(5675), - [anon_sym_LT_EQ_GT] = ACTIONS(5675), - [anon_sym_or] = ACTIONS(5673), - [anon_sym_and] = ACTIONS(5673), - [anon_sym_bitor] = ACTIONS(5673), - [anon_sym_xor] = ACTIONS(5673), - [anon_sym_bitand] = ACTIONS(5673), - [anon_sym_not_eq] = ACTIONS(5673), - [anon_sym_DASH_DASH] = ACTIONS(5675), - [anon_sym_PLUS_PLUS] = ACTIONS(5675), - [anon_sym_DOT] = ACTIONS(5673), - [anon_sym_DOT_STAR] = ACTIONS(5675), - [anon_sym_DASH_GT] = ACTIONS(5675), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5673), - [anon_sym_decltype] = ACTIONS(5673), - [anon_sym_final] = ACTIONS(5673), - [anon_sym_override] = ACTIONS(5673), - [anon_sym_requires] = ACTIONS(5673), + [1870] = { + [sym_catch_clause] = STATE(1870), + [aux_sym_constructor_try_statement_repeat1] = STATE(1870), + [sym_identifier] = ACTIONS(2476), + [aux_sym_preproc_def_token1] = ACTIONS(2476), + [aux_sym_preproc_if_token1] = ACTIONS(2476), + [aux_sym_preproc_if_token2] = ACTIONS(2476), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2476), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2476), + [sym_preproc_directive] = ACTIONS(2476), + [anon_sym_LPAREN2] = ACTIONS(2478), + [anon_sym_TILDE] = ACTIONS(2478), + [anon_sym_STAR] = ACTIONS(2478), + [anon_sym_AMP_AMP] = ACTIONS(2478), + [anon_sym_AMP] = ACTIONS(2476), + [anon_sym_SEMI] = ACTIONS(2478), + [anon_sym___extension__] = ACTIONS(2476), + [anon_sym_typedef] = ACTIONS(2476), + [anon_sym_virtual] = ACTIONS(2476), + [anon_sym_extern] = ACTIONS(2476), + [anon_sym___attribute__] = ACTIONS(2476), + [anon_sym___attribute] = ACTIONS(2476), + [anon_sym_using] = ACTIONS(2476), + [anon_sym_COLON_COLON] = ACTIONS(2478), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2478), + [anon_sym___declspec] = ACTIONS(2476), + [anon_sym___based] = ACTIONS(2476), + [anon_sym_signed] = ACTIONS(2476), + [anon_sym_unsigned] = ACTIONS(2476), + [anon_sym_long] = ACTIONS(2476), + [anon_sym_short] = ACTIONS(2476), + [anon_sym_LBRACK] = ACTIONS(2476), + [anon_sym_static] = ACTIONS(2476), + [anon_sym_register] = ACTIONS(2476), + [anon_sym_inline] = ACTIONS(2476), + [anon_sym___inline] = ACTIONS(2476), + [anon_sym___inline__] = ACTIONS(2476), + [anon_sym___forceinline] = ACTIONS(2476), + [anon_sym_thread_local] = ACTIONS(2476), + [anon_sym___thread] = ACTIONS(2476), + [anon_sym_const] = ACTIONS(2476), + [anon_sym_constexpr] = ACTIONS(2476), + [anon_sym_volatile] = ACTIONS(2476), + [anon_sym_restrict] = ACTIONS(2476), + [anon_sym___restrict__] = ACTIONS(2476), + [anon_sym__Atomic] = ACTIONS(2476), + [anon_sym__Noreturn] = ACTIONS(2476), + [anon_sym_noreturn] = ACTIONS(2476), + [anon_sym__Nonnull] = ACTIONS(2476), + [anon_sym_mutable] = ACTIONS(2476), + [anon_sym_constinit] = ACTIONS(2476), + [anon_sym_consteval] = ACTIONS(2476), + [anon_sym_alignas] = ACTIONS(2476), + [anon_sym__Alignas] = ACTIONS(2476), + [sym_primitive_type] = ACTIONS(2476), + [anon_sym_enum] = ACTIONS(2476), + [anon_sym_class] = ACTIONS(2476), + [anon_sym_struct] = ACTIONS(2476), + [anon_sym_union] = ACTIONS(2476), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2476), + [anon_sym_decltype] = ACTIONS(2476), + [anon_sym_explicit] = ACTIONS(2476), + [anon_sym_typename] = ACTIONS(2476), + [anon_sym_private] = ACTIONS(2476), + [anon_sym_template] = ACTIONS(2476), + [anon_sym_operator] = ACTIONS(2476), + [anon_sym_friend] = ACTIONS(2476), + [anon_sym_public] = ACTIONS(2476), + [anon_sym_protected] = ACTIONS(2476), + [anon_sym_static_assert] = ACTIONS(2476), + [anon_sym_catch] = ACTIONS(5678), }, - [1848] = { - [sym_identifier] = ACTIONS(5677), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5679), - [anon_sym_COMMA] = ACTIONS(5679), - [anon_sym_RPAREN] = ACTIONS(5679), - [anon_sym_LPAREN2] = ACTIONS(5679), - [anon_sym_DASH] = ACTIONS(5677), - [anon_sym_PLUS] = ACTIONS(5677), - [anon_sym_STAR] = ACTIONS(5679), - [anon_sym_SLASH] = ACTIONS(5677), - [anon_sym_PERCENT] = ACTIONS(5679), - [anon_sym_PIPE_PIPE] = ACTIONS(5679), - [anon_sym_AMP_AMP] = ACTIONS(5679), - [anon_sym_PIPE] = ACTIONS(5677), - [anon_sym_CARET] = ACTIONS(5679), - [anon_sym_AMP] = ACTIONS(5677), - [anon_sym_EQ_EQ] = ACTIONS(5679), - [anon_sym_BANG_EQ] = ACTIONS(5679), - [anon_sym_GT] = ACTIONS(5677), - [anon_sym_GT_EQ] = ACTIONS(5679), - [anon_sym_LT_EQ] = ACTIONS(5677), - [anon_sym_LT] = ACTIONS(5677), - [anon_sym_LT_LT] = ACTIONS(5679), - [anon_sym_GT_GT] = ACTIONS(5679), - [anon_sym_SEMI] = ACTIONS(5679), - [anon_sym___extension__] = ACTIONS(5677), - [anon_sym___attribute__] = ACTIONS(5677), - [anon_sym___attribute] = ACTIONS(5677), - [anon_sym_COLON] = ACTIONS(5679), - [anon_sym___based] = ACTIONS(5677), - [anon_sym_LBRACE] = ACTIONS(5679), - [anon_sym_RBRACE] = ACTIONS(5679), - [anon_sym_signed] = ACTIONS(5677), - [anon_sym_unsigned] = ACTIONS(5677), - [anon_sym_long] = ACTIONS(5677), - [anon_sym_short] = ACTIONS(5677), - [anon_sym_LBRACK] = ACTIONS(5679), - [anon_sym_RBRACK] = ACTIONS(5679), - [anon_sym_const] = ACTIONS(5677), - [anon_sym_constexpr] = ACTIONS(5677), - [anon_sym_volatile] = ACTIONS(5677), - [anon_sym_restrict] = ACTIONS(5677), - [anon_sym___restrict__] = ACTIONS(5677), - [anon_sym__Atomic] = ACTIONS(5677), - [anon_sym__Noreturn] = ACTIONS(5677), - [anon_sym_noreturn] = ACTIONS(5677), - [anon_sym__Nonnull] = ACTIONS(5677), - [anon_sym_mutable] = ACTIONS(5677), - [anon_sym_constinit] = ACTIONS(5677), - [anon_sym_consteval] = ACTIONS(5677), - [anon_sym_alignas] = ACTIONS(5677), - [anon_sym__Alignas] = ACTIONS(5677), - [sym_primitive_type] = ACTIONS(5677), - [anon_sym_QMARK] = ACTIONS(5679), - [anon_sym_LT_EQ_GT] = ACTIONS(5679), - [anon_sym_or] = ACTIONS(5677), - [anon_sym_and] = ACTIONS(5677), - [anon_sym_bitor] = ACTIONS(5677), - [anon_sym_xor] = ACTIONS(5677), - [anon_sym_bitand] = ACTIONS(5677), - [anon_sym_not_eq] = ACTIONS(5677), - [anon_sym_DASH_DASH] = ACTIONS(5679), - [anon_sym_PLUS_PLUS] = ACTIONS(5679), - [anon_sym_DOT] = ACTIONS(5677), - [anon_sym_DOT_STAR] = ACTIONS(5679), - [anon_sym_DASH_GT] = ACTIONS(5679), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5677), - [anon_sym_decltype] = ACTIONS(5677), - [anon_sym_final] = ACTIONS(5677), - [anon_sym_override] = ACTIONS(5677), - [anon_sym_requires] = ACTIONS(5677), + [1871] = { + [sym_catch_clause] = STATE(1870), + [aux_sym_constructor_try_statement_repeat1] = STATE(1870), + [sym_identifier] = ACTIONS(2586), + [aux_sym_preproc_def_token1] = ACTIONS(2586), + [aux_sym_preproc_if_token1] = ACTIONS(2586), + [aux_sym_preproc_if_token2] = ACTIONS(2586), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2586), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2586), + [sym_preproc_directive] = ACTIONS(2586), + [anon_sym_LPAREN2] = ACTIONS(2588), + [anon_sym_TILDE] = ACTIONS(2588), + [anon_sym_STAR] = ACTIONS(2588), + [anon_sym_AMP_AMP] = ACTIONS(2588), + [anon_sym_AMP] = ACTIONS(2586), + [anon_sym_SEMI] = ACTIONS(2588), + [anon_sym___extension__] = ACTIONS(2586), + [anon_sym_typedef] = ACTIONS(2586), + [anon_sym_virtual] = ACTIONS(2586), + [anon_sym_extern] = ACTIONS(2586), + [anon_sym___attribute__] = ACTIONS(2586), + [anon_sym___attribute] = ACTIONS(2586), + [anon_sym_using] = ACTIONS(2586), + [anon_sym_COLON_COLON] = ACTIONS(2588), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2588), + [anon_sym___declspec] = ACTIONS(2586), + [anon_sym___based] = ACTIONS(2586), + [anon_sym_signed] = ACTIONS(2586), + [anon_sym_unsigned] = ACTIONS(2586), + [anon_sym_long] = ACTIONS(2586), + [anon_sym_short] = ACTIONS(2586), + [anon_sym_LBRACK] = ACTIONS(2586), + [anon_sym_static] = ACTIONS(2586), + [anon_sym_register] = ACTIONS(2586), + [anon_sym_inline] = ACTIONS(2586), + [anon_sym___inline] = ACTIONS(2586), + [anon_sym___inline__] = ACTIONS(2586), + [anon_sym___forceinline] = ACTIONS(2586), + [anon_sym_thread_local] = ACTIONS(2586), + [anon_sym___thread] = ACTIONS(2586), + [anon_sym_const] = ACTIONS(2586), + [anon_sym_constexpr] = ACTIONS(2586), + [anon_sym_volatile] = ACTIONS(2586), + [anon_sym_restrict] = ACTIONS(2586), + [anon_sym___restrict__] = ACTIONS(2586), + [anon_sym__Atomic] = ACTIONS(2586), + [anon_sym__Noreturn] = ACTIONS(2586), + [anon_sym_noreturn] = ACTIONS(2586), + [anon_sym__Nonnull] = ACTIONS(2586), + [anon_sym_mutable] = ACTIONS(2586), + [anon_sym_constinit] = ACTIONS(2586), + [anon_sym_consteval] = ACTIONS(2586), + [anon_sym_alignas] = ACTIONS(2586), + [anon_sym__Alignas] = ACTIONS(2586), + [sym_primitive_type] = ACTIONS(2586), + [anon_sym_enum] = ACTIONS(2586), + [anon_sym_class] = ACTIONS(2586), + [anon_sym_struct] = ACTIONS(2586), + [anon_sym_union] = ACTIONS(2586), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2586), + [anon_sym_decltype] = ACTIONS(2586), + [anon_sym_explicit] = ACTIONS(2586), + [anon_sym_typename] = ACTIONS(2586), + [anon_sym_private] = ACTIONS(2586), + [anon_sym_template] = ACTIONS(2586), + [anon_sym_operator] = ACTIONS(2586), + [anon_sym_friend] = ACTIONS(2586), + [anon_sym_public] = ACTIONS(2586), + [anon_sym_protected] = ACTIONS(2586), + [anon_sym_static_assert] = ACTIONS(2586), + [anon_sym_catch] = ACTIONS(5676), }, - [1849] = { + [1872] = { [sym_identifier] = ACTIONS(5681), [anon_sym_DOT_DOT_DOT] = ACTIONS(5683), [anon_sym_COMMA] = ACTIONS(5683), @@ -258140,7 +261403,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_override] = ACTIONS(5681), [anon_sym_requires] = ACTIONS(5681), }, - [1850] = { + [1873] = { [sym_identifier] = ACTIONS(5685), [anon_sym_DOT_DOT_DOT] = ACTIONS(5687), [anon_sym_COMMA] = ACTIONS(5687), @@ -258213,13 +261476,377 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_override] = ACTIONS(5685), [anon_sym_requires] = ACTIONS(5685), }, - [1851] = { - [sym_catch_clause] = STATE(1851), - [aux_sym_constructor_try_statement_repeat1] = STATE(1851), + [1874] = { + [sym_identifier] = ACTIONS(5689), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5691), + [anon_sym_COMMA] = ACTIONS(5691), + [anon_sym_RPAREN] = ACTIONS(5691), + [anon_sym_LPAREN2] = ACTIONS(5691), + [anon_sym_DASH] = ACTIONS(5689), + [anon_sym_PLUS] = ACTIONS(5689), + [anon_sym_STAR] = ACTIONS(5691), + [anon_sym_SLASH] = ACTIONS(5689), + [anon_sym_PERCENT] = ACTIONS(5691), + [anon_sym_PIPE_PIPE] = ACTIONS(5691), + [anon_sym_AMP_AMP] = ACTIONS(5691), + [anon_sym_PIPE] = ACTIONS(5689), + [anon_sym_CARET] = ACTIONS(5691), + [anon_sym_AMP] = ACTIONS(5689), + [anon_sym_EQ_EQ] = ACTIONS(5691), + [anon_sym_BANG_EQ] = ACTIONS(5691), + [anon_sym_GT] = ACTIONS(5689), + [anon_sym_GT_EQ] = ACTIONS(5691), + [anon_sym_LT_EQ] = ACTIONS(5689), + [anon_sym_LT] = ACTIONS(5689), + [anon_sym_LT_LT] = ACTIONS(5691), + [anon_sym_GT_GT] = ACTIONS(5691), + [anon_sym_SEMI] = ACTIONS(5691), + [anon_sym___extension__] = ACTIONS(5689), + [anon_sym___attribute__] = ACTIONS(5689), + [anon_sym___attribute] = ACTIONS(5689), + [anon_sym_COLON] = ACTIONS(5691), + [anon_sym___based] = ACTIONS(5689), + [anon_sym_LBRACE] = ACTIONS(5691), + [anon_sym_RBRACE] = ACTIONS(5691), + [anon_sym_signed] = ACTIONS(5689), + [anon_sym_unsigned] = ACTIONS(5689), + [anon_sym_long] = ACTIONS(5689), + [anon_sym_short] = ACTIONS(5689), + [anon_sym_LBRACK] = ACTIONS(5691), + [anon_sym_RBRACK] = ACTIONS(5691), + [anon_sym_const] = ACTIONS(5689), + [anon_sym_constexpr] = ACTIONS(5689), + [anon_sym_volatile] = ACTIONS(5689), + [anon_sym_restrict] = ACTIONS(5689), + [anon_sym___restrict__] = ACTIONS(5689), + [anon_sym__Atomic] = ACTIONS(5689), + [anon_sym__Noreturn] = ACTIONS(5689), + [anon_sym_noreturn] = ACTIONS(5689), + [anon_sym__Nonnull] = ACTIONS(5689), + [anon_sym_mutable] = ACTIONS(5689), + [anon_sym_constinit] = ACTIONS(5689), + [anon_sym_consteval] = ACTIONS(5689), + [anon_sym_alignas] = ACTIONS(5689), + [anon_sym__Alignas] = ACTIONS(5689), + [sym_primitive_type] = ACTIONS(5689), + [anon_sym_QMARK] = ACTIONS(5691), + [anon_sym_LT_EQ_GT] = ACTIONS(5691), + [anon_sym_or] = ACTIONS(5689), + [anon_sym_and] = ACTIONS(5689), + [anon_sym_bitor] = ACTIONS(5689), + [anon_sym_xor] = ACTIONS(5689), + [anon_sym_bitand] = ACTIONS(5689), + [anon_sym_not_eq] = ACTIONS(5689), + [anon_sym_DASH_DASH] = ACTIONS(5691), + [anon_sym_PLUS_PLUS] = ACTIONS(5691), + [anon_sym_DOT] = ACTIONS(5689), + [anon_sym_DOT_STAR] = ACTIONS(5691), + [anon_sym_DASH_GT] = ACTIONS(5691), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5689), + [anon_sym_decltype] = ACTIONS(5689), + [anon_sym_final] = ACTIONS(5689), + [anon_sym_override] = ACTIONS(5689), + [anon_sym_requires] = ACTIONS(5689), + }, + [1875] = { + [sym_identifier] = ACTIONS(5693), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5695), + [anon_sym_COMMA] = ACTIONS(5695), + [anon_sym_RPAREN] = ACTIONS(5695), + [anon_sym_LPAREN2] = ACTIONS(5695), + [anon_sym_DASH] = ACTIONS(5693), + [anon_sym_PLUS] = ACTIONS(5693), + [anon_sym_STAR] = ACTIONS(5695), + [anon_sym_SLASH] = ACTIONS(5693), + [anon_sym_PERCENT] = ACTIONS(5695), + [anon_sym_PIPE_PIPE] = ACTIONS(5695), + [anon_sym_AMP_AMP] = ACTIONS(5695), + [anon_sym_PIPE] = ACTIONS(5693), + [anon_sym_CARET] = ACTIONS(5695), + [anon_sym_AMP] = ACTIONS(5693), + [anon_sym_EQ_EQ] = ACTIONS(5695), + [anon_sym_BANG_EQ] = ACTIONS(5695), + [anon_sym_GT] = ACTIONS(5693), + [anon_sym_GT_EQ] = ACTIONS(5695), + [anon_sym_LT_EQ] = ACTIONS(5693), + [anon_sym_LT] = ACTIONS(5693), + [anon_sym_LT_LT] = ACTIONS(5695), + [anon_sym_GT_GT] = ACTIONS(5695), + [anon_sym_SEMI] = ACTIONS(5695), + [anon_sym___extension__] = ACTIONS(5693), + [anon_sym___attribute__] = ACTIONS(5693), + [anon_sym___attribute] = ACTIONS(5693), + [anon_sym_COLON] = ACTIONS(5695), + [anon_sym___based] = ACTIONS(5693), + [anon_sym_LBRACE] = ACTIONS(5695), + [anon_sym_RBRACE] = ACTIONS(5695), + [anon_sym_signed] = ACTIONS(5693), + [anon_sym_unsigned] = ACTIONS(5693), + [anon_sym_long] = ACTIONS(5693), + [anon_sym_short] = ACTIONS(5693), + [anon_sym_LBRACK] = ACTIONS(5695), + [anon_sym_RBRACK] = ACTIONS(5695), + [anon_sym_const] = ACTIONS(5693), + [anon_sym_constexpr] = ACTIONS(5693), + [anon_sym_volatile] = ACTIONS(5693), + [anon_sym_restrict] = ACTIONS(5693), + [anon_sym___restrict__] = ACTIONS(5693), + [anon_sym__Atomic] = ACTIONS(5693), + [anon_sym__Noreturn] = ACTIONS(5693), + [anon_sym_noreturn] = ACTIONS(5693), + [anon_sym__Nonnull] = ACTIONS(5693), + [anon_sym_mutable] = ACTIONS(5693), + [anon_sym_constinit] = ACTIONS(5693), + [anon_sym_consteval] = ACTIONS(5693), + [anon_sym_alignas] = ACTIONS(5693), + [anon_sym__Alignas] = ACTIONS(5693), + [sym_primitive_type] = ACTIONS(5693), + [anon_sym_QMARK] = ACTIONS(5695), + [anon_sym_LT_EQ_GT] = ACTIONS(5695), + [anon_sym_or] = ACTIONS(5693), + [anon_sym_and] = ACTIONS(5693), + [anon_sym_bitor] = ACTIONS(5693), + [anon_sym_xor] = ACTIONS(5693), + [anon_sym_bitand] = ACTIONS(5693), + [anon_sym_not_eq] = ACTIONS(5693), + [anon_sym_DASH_DASH] = ACTIONS(5695), + [anon_sym_PLUS_PLUS] = ACTIONS(5695), + [anon_sym_DOT] = ACTIONS(5693), + [anon_sym_DOT_STAR] = ACTIONS(5695), + [anon_sym_DASH_GT] = ACTIONS(5695), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5693), + [anon_sym_decltype] = ACTIONS(5693), + [anon_sym_final] = ACTIONS(5693), + [anon_sym_override] = ACTIONS(5693), + [anon_sym_requires] = ACTIONS(5693), + }, + [1876] = { + [sym_identifier] = ACTIONS(5697), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5699), + [anon_sym_COMMA] = ACTIONS(5699), + [anon_sym_RPAREN] = ACTIONS(5699), + [anon_sym_LPAREN2] = ACTIONS(5699), + [anon_sym_DASH] = ACTIONS(5697), + [anon_sym_PLUS] = ACTIONS(5697), + [anon_sym_STAR] = ACTIONS(5699), + [anon_sym_SLASH] = ACTIONS(5697), + [anon_sym_PERCENT] = ACTIONS(5699), + [anon_sym_PIPE_PIPE] = ACTIONS(5699), + [anon_sym_AMP_AMP] = ACTIONS(5699), + [anon_sym_PIPE] = ACTIONS(5697), + [anon_sym_CARET] = ACTIONS(5699), + [anon_sym_AMP] = ACTIONS(5697), + [anon_sym_EQ_EQ] = ACTIONS(5699), + [anon_sym_BANG_EQ] = ACTIONS(5699), + [anon_sym_GT] = ACTIONS(5697), + [anon_sym_GT_EQ] = ACTIONS(5699), + [anon_sym_LT_EQ] = ACTIONS(5697), + [anon_sym_LT] = ACTIONS(5697), + [anon_sym_LT_LT] = ACTIONS(5699), + [anon_sym_GT_GT] = ACTIONS(5699), + [anon_sym_SEMI] = ACTIONS(5699), + [anon_sym___extension__] = ACTIONS(5697), + [anon_sym___attribute__] = ACTIONS(5697), + [anon_sym___attribute] = ACTIONS(5697), + [anon_sym_COLON] = ACTIONS(5699), + [anon_sym___based] = ACTIONS(5697), + [anon_sym_LBRACE] = ACTIONS(5699), + [anon_sym_RBRACE] = ACTIONS(5699), + [anon_sym_signed] = ACTIONS(5697), + [anon_sym_unsigned] = ACTIONS(5697), + [anon_sym_long] = ACTIONS(5697), + [anon_sym_short] = ACTIONS(5697), + [anon_sym_LBRACK] = ACTIONS(5699), + [anon_sym_RBRACK] = ACTIONS(5699), + [anon_sym_const] = ACTIONS(5697), + [anon_sym_constexpr] = ACTIONS(5697), + [anon_sym_volatile] = ACTIONS(5697), + [anon_sym_restrict] = ACTIONS(5697), + [anon_sym___restrict__] = ACTIONS(5697), + [anon_sym__Atomic] = ACTIONS(5697), + [anon_sym__Noreturn] = ACTIONS(5697), + [anon_sym_noreturn] = ACTIONS(5697), + [anon_sym__Nonnull] = ACTIONS(5697), + [anon_sym_mutable] = ACTIONS(5697), + [anon_sym_constinit] = ACTIONS(5697), + [anon_sym_consteval] = ACTIONS(5697), + [anon_sym_alignas] = ACTIONS(5697), + [anon_sym__Alignas] = ACTIONS(5697), + [sym_primitive_type] = ACTIONS(5697), + [anon_sym_QMARK] = ACTIONS(5699), + [anon_sym_LT_EQ_GT] = ACTIONS(5699), + [anon_sym_or] = ACTIONS(5697), + [anon_sym_and] = ACTIONS(5697), + [anon_sym_bitor] = ACTIONS(5697), + [anon_sym_xor] = ACTIONS(5697), + [anon_sym_bitand] = ACTIONS(5697), + [anon_sym_not_eq] = ACTIONS(5697), + [anon_sym_DASH_DASH] = ACTIONS(5699), + [anon_sym_PLUS_PLUS] = ACTIONS(5699), + [anon_sym_DOT] = ACTIONS(5697), + [anon_sym_DOT_STAR] = ACTIONS(5699), + [anon_sym_DASH_GT] = ACTIONS(5699), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5697), + [anon_sym_decltype] = ACTIONS(5697), + [anon_sym_final] = ACTIONS(5697), + [anon_sym_override] = ACTIONS(5697), + [anon_sym_requires] = ACTIONS(5697), + }, + [1877] = { + [sym_identifier] = ACTIONS(5701), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5703), + [anon_sym_COMMA] = ACTIONS(5703), + [anon_sym_RPAREN] = ACTIONS(5703), + [anon_sym_LPAREN2] = ACTIONS(5703), + [anon_sym_DASH] = ACTIONS(5701), + [anon_sym_PLUS] = ACTIONS(5701), + [anon_sym_STAR] = ACTIONS(5703), + [anon_sym_SLASH] = ACTIONS(5701), + [anon_sym_PERCENT] = ACTIONS(5703), + [anon_sym_PIPE_PIPE] = ACTIONS(5703), + [anon_sym_AMP_AMP] = ACTIONS(5703), + [anon_sym_PIPE] = ACTIONS(5701), + [anon_sym_CARET] = ACTIONS(5703), + [anon_sym_AMP] = ACTIONS(5701), + [anon_sym_EQ_EQ] = ACTIONS(5703), + [anon_sym_BANG_EQ] = ACTIONS(5703), + [anon_sym_GT] = ACTIONS(5701), + [anon_sym_GT_EQ] = ACTIONS(5703), + [anon_sym_LT_EQ] = ACTIONS(5701), + [anon_sym_LT] = ACTIONS(5701), + [anon_sym_LT_LT] = ACTIONS(5703), + [anon_sym_GT_GT] = ACTIONS(5703), + [anon_sym_SEMI] = ACTIONS(5703), + [anon_sym___extension__] = ACTIONS(5701), + [anon_sym___attribute__] = ACTIONS(5701), + [anon_sym___attribute] = ACTIONS(5701), + [anon_sym_COLON] = ACTIONS(5703), + [anon_sym___based] = ACTIONS(5701), + [anon_sym_LBRACE] = ACTIONS(5703), + [anon_sym_RBRACE] = ACTIONS(5703), + [anon_sym_signed] = ACTIONS(5701), + [anon_sym_unsigned] = ACTIONS(5701), + [anon_sym_long] = ACTIONS(5701), + [anon_sym_short] = ACTIONS(5701), + [anon_sym_LBRACK] = ACTIONS(5703), + [anon_sym_RBRACK] = ACTIONS(5703), + [anon_sym_const] = ACTIONS(5701), + [anon_sym_constexpr] = ACTIONS(5701), + [anon_sym_volatile] = ACTIONS(5701), + [anon_sym_restrict] = ACTIONS(5701), + [anon_sym___restrict__] = ACTIONS(5701), + [anon_sym__Atomic] = ACTIONS(5701), + [anon_sym__Noreturn] = ACTIONS(5701), + [anon_sym_noreturn] = ACTIONS(5701), + [anon_sym__Nonnull] = ACTIONS(5701), + [anon_sym_mutable] = ACTIONS(5701), + [anon_sym_constinit] = ACTIONS(5701), + [anon_sym_consteval] = ACTIONS(5701), + [anon_sym_alignas] = ACTIONS(5701), + [anon_sym__Alignas] = ACTIONS(5701), + [sym_primitive_type] = ACTIONS(5701), + [anon_sym_QMARK] = ACTIONS(5703), + [anon_sym_LT_EQ_GT] = ACTIONS(5703), + [anon_sym_or] = ACTIONS(5701), + [anon_sym_and] = ACTIONS(5701), + [anon_sym_bitor] = ACTIONS(5701), + [anon_sym_xor] = ACTIONS(5701), + [anon_sym_bitand] = ACTIONS(5701), + [anon_sym_not_eq] = ACTIONS(5701), + [anon_sym_DASH_DASH] = ACTIONS(5703), + [anon_sym_PLUS_PLUS] = ACTIONS(5703), + [anon_sym_DOT] = ACTIONS(5701), + [anon_sym_DOT_STAR] = ACTIONS(5703), + [anon_sym_DASH_GT] = ACTIONS(5703), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5701), + [anon_sym_decltype] = ACTIONS(5701), + [anon_sym_final] = ACTIONS(5701), + [anon_sym_override] = ACTIONS(5701), + [anon_sym_requires] = ACTIONS(5701), + }, + [1878] = { + [sym_identifier] = ACTIONS(5705), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5707), + [anon_sym_COMMA] = ACTIONS(5707), + [anon_sym_RPAREN] = ACTIONS(5707), + [anon_sym_LPAREN2] = ACTIONS(5707), + [anon_sym_DASH] = ACTIONS(5705), + [anon_sym_PLUS] = ACTIONS(5705), + [anon_sym_STAR] = ACTIONS(5707), + [anon_sym_SLASH] = ACTIONS(5705), + [anon_sym_PERCENT] = ACTIONS(5707), + [anon_sym_PIPE_PIPE] = ACTIONS(5707), + [anon_sym_AMP_AMP] = ACTIONS(5707), + [anon_sym_PIPE] = ACTIONS(5705), + [anon_sym_CARET] = ACTIONS(5707), + [anon_sym_AMP] = ACTIONS(5705), + [anon_sym_EQ_EQ] = ACTIONS(5707), + [anon_sym_BANG_EQ] = ACTIONS(5707), + [anon_sym_GT] = ACTIONS(5705), + [anon_sym_GT_EQ] = ACTIONS(5707), + [anon_sym_LT_EQ] = ACTIONS(5705), + [anon_sym_LT] = ACTIONS(5705), + [anon_sym_LT_LT] = ACTIONS(5707), + [anon_sym_GT_GT] = ACTIONS(5707), + [anon_sym_SEMI] = ACTIONS(5707), + [anon_sym___extension__] = ACTIONS(5705), + [anon_sym___attribute__] = ACTIONS(5705), + [anon_sym___attribute] = ACTIONS(5705), + [anon_sym_COLON] = ACTIONS(5707), + [anon_sym___based] = ACTIONS(5705), + [anon_sym_LBRACE] = ACTIONS(5707), + [anon_sym_RBRACE] = ACTIONS(5707), + [anon_sym_signed] = ACTIONS(5705), + [anon_sym_unsigned] = ACTIONS(5705), + [anon_sym_long] = ACTIONS(5705), + [anon_sym_short] = ACTIONS(5705), + [anon_sym_LBRACK] = ACTIONS(5707), + [anon_sym_RBRACK] = ACTIONS(5707), + [anon_sym_const] = ACTIONS(5705), + [anon_sym_constexpr] = ACTIONS(5705), + [anon_sym_volatile] = ACTIONS(5705), + [anon_sym_restrict] = ACTIONS(5705), + [anon_sym___restrict__] = ACTIONS(5705), + [anon_sym__Atomic] = ACTIONS(5705), + [anon_sym__Noreturn] = ACTIONS(5705), + [anon_sym_noreturn] = ACTIONS(5705), + [anon_sym__Nonnull] = ACTIONS(5705), + [anon_sym_mutable] = ACTIONS(5705), + [anon_sym_constinit] = ACTIONS(5705), + [anon_sym_consteval] = ACTIONS(5705), + [anon_sym_alignas] = ACTIONS(5705), + [anon_sym__Alignas] = ACTIONS(5705), + [sym_primitive_type] = ACTIONS(5705), + [anon_sym_QMARK] = ACTIONS(5707), + [anon_sym_LT_EQ_GT] = ACTIONS(5707), + [anon_sym_or] = ACTIONS(5705), + [anon_sym_and] = ACTIONS(5705), + [anon_sym_bitor] = ACTIONS(5705), + [anon_sym_xor] = ACTIONS(5705), + [anon_sym_bitand] = ACTIONS(5705), + [anon_sym_not_eq] = ACTIONS(5705), + [anon_sym_DASH_DASH] = ACTIONS(5707), + [anon_sym_PLUS_PLUS] = ACTIONS(5707), + [anon_sym_DOT] = ACTIONS(5705), + [anon_sym_DOT_STAR] = ACTIONS(5707), + [anon_sym_DASH_GT] = ACTIONS(5707), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5705), + [anon_sym_decltype] = ACTIONS(5705), + [anon_sym_final] = ACTIONS(5705), + [anon_sym_override] = ACTIONS(5705), + [anon_sym_requires] = ACTIONS(5705), + }, + [1879] = { + [sym_catch_clause] = STATE(1879), + [aux_sym_constructor_try_statement_repeat1] = STATE(1879), [sym_identifier] = ACTIONS(2476), [aux_sym_preproc_def_token1] = ACTIONS(2476), [aux_sym_preproc_if_token1] = ACTIONS(2476), - [aux_sym_preproc_if_token2] = ACTIONS(2476), [aux_sym_preproc_ifdef_token1] = ACTIONS(2476), [aux_sym_preproc_ifdef_token2] = ACTIONS(2476), [sym_preproc_directive] = ACTIONS(2476), @@ -258240,6 +261867,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_LBRACK] = ACTIONS(2478), [anon_sym___declspec] = ACTIONS(2476), [anon_sym___based] = ACTIONS(2476), + [anon_sym_RBRACE] = ACTIONS(2478), [anon_sym_signed] = ACTIONS(2476), [anon_sym_unsigned] = ACTIONS(2476), [anon_sym_long] = ACTIONS(2476), @@ -258284,885 +261912,301 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_public] = ACTIONS(2476), [anon_sym_protected] = ACTIONS(2476), [anon_sym_static_assert] = ACTIONS(2476), - [anon_sym_catch] = ACTIONS(5689), - }, - [1852] = { - [sym_identifier] = ACTIONS(5692), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5694), - [anon_sym_COMMA] = ACTIONS(5694), - [anon_sym_RPAREN] = ACTIONS(5694), - [anon_sym_LPAREN2] = ACTIONS(5694), - [anon_sym_DASH] = ACTIONS(5692), - [anon_sym_PLUS] = ACTIONS(5692), - [anon_sym_STAR] = ACTIONS(5694), - [anon_sym_SLASH] = ACTIONS(5692), - [anon_sym_PERCENT] = ACTIONS(5694), - [anon_sym_PIPE_PIPE] = ACTIONS(5694), - [anon_sym_AMP_AMP] = ACTIONS(5694), - [anon_sym_PIPE] = ACTIONS(5692), - [anon_sym_CARET] = ACTIONS(5694), - [anon_sym_AMP] = ACTIONS(5692), - [anon_sym_EQ_EQ] = ACTIONS(5694), - [anon_sym_BANG_EQ] = ACTIONS(5694), - [anon_sym_GT] = ACTIONS(5692), - [anon_sym_GT_EQ] = ACTIONS(5694), - [anon_sym_LT_EQ] = ACTIONS(5692), - [anon_sym_LT] = ACTIONS(5692), - [anon_sym_LT_LT] = ACTIONS(5694), - [anon_sym_GT_GT] = ACTIONS(5694), - [anon_sym_SEMI] = ACTIONS(5694), - [anon_sym___extension__] = ACTIONS(5692), - [anon_sym___attribute__] = ACTIONS(5692), - [anon_sym___attribute] = ACTIONS(5692), - [anon_sym_COLON] = ACTIONS(5694), - [anon_sym___based] = ACTIONS(5692), - [anon_sym_LBRACE] = ACTIONS(5694), - [anon_sym_RBRACE] = ACTIONS(5694), - [anon_sym_signed] = ACTIONS(5692), - [anon_sym_unsigned] = ACTIONS(5692), - [anon_sym_long] = ACTIONS(5692), - [anon_sym_short] = ACTIONS(5692), - [anon_sym_LBRACK] = ACTIONS(5694), - [anon_sym_RBRACK] = ACTIONS(5694), - [anon_sym_const] = ACTIONS(5692), - [anon_sym_constexpr] = ACTIONS(5692), - [anon_sym_volatile] = ACTIONS(5692), - [anon_sym_restrict] = ACTIONS(5692), - [anon_sym___restrict__] = ACTIONS(5692), - [anon_sym__Atomic] = ACTIONS(5692), - [anon_sym__Noreturn] = ACTIONS(5692), - [anon_sym_noreturn] = ACTIONS(5692), - [anon_sym__Nonnull] = ACTIONS(5692), - [anon_sym_mutable] = ACTIONS(5692), - [anon_sym_constinit] = ACTIONS(5692), - [anon_sym_consteval] = ACTIONS(5692), - [anon_sym_alignas] = ACTIONS(5692), - [anon_sym__Alignas] = ACTIONS(5692), - [sym_primitive_type] = ACTIONS(5692), - [anon_sym_QMARK] = ACTIONS(5694), - [anon_sym_LT_EQ_GT] = ACTIONS(5694), - [anon_sym_or] = ACTIONS(5692), - [anon_sym_and] = ACTIONS(5692), - [anon_sym_bitor] = ACTIONS(5692), - [anon_sym_xor] = ACTIONS(5692), - [anon_sym_bitand] = ACTIONS(5692), - [anon_sym_not_eq] = ACTIONS(5692), - [anon_sym_DASH_DASH] = ACTIONS(5694), - [anon_sym_PLUS_PLUS] = ACTIONS(5694), - [anon_sym_DOT] = ACTIONS(5692), - [anon_sym_DOT_STAR] = ACTIONS(5694), - [anon_sym_DASH_GT] = ACTIONS(5694), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5692), - [anon_sym_decltype] = ACTIONS(5692), - [anon_sym_final] = ACTIONS(5692), - [anon_sym_override] = ACTIONS(5692), - [anon_sym_requires] = ACTIONS(5692), - }, - [1853] = { - [sym_identifier] = ACTIONS(5677), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5679), - [anon_sym_COMMA] = ACTIONS(5679), - [anon_sym_RPAREN] = ACTIONS(5679), - [anon_sym_LPAREN2] = ACTIONS(5679), - [anon_sym_DASH] = ACTIONS(5677), - [anon_sym_PLUS] = ACTIONS(5677), - [anon_sym_STAR] = ACTIONS(5679), - [anon_sym_SLASH] = ACTIONS(5677), - [anon_sym_PERCENT] = ACTIONS(5679), - [anon_sym_PIPE_PIPE] = ACTIONS(5679), - [anon_sym_AMP_AMP] = ACTIONS(5679), - [anon_sym_PIPE] = ACTIONS(5677), - [anon_sym_CARET] = ACTIONS(5679), - [anon_sym_AMP] = ACTIONS(5677), - [anon_sym_EQ_EQ] = ACTIONS(5679), - [anon_sym_BANG_EQ] = ACTIONS(5679), - [anon_sym_GT] = ACTIONS(5677), - [anon_sym_GT_EQ] = ACTIONS(5679), - [anon_sym_LT_EQ] = ACTIONS(5677), - [anon_sym_LT] = ACTIONS(5677), - [anon_sym_LT_LT] = ACTIONS(5679), - [anon_sym_GT_GT] = ACTIONS(5679), - [anon_sym_SEMI] = ACTIONS(5679), - [anon_sym___extension__] = ACTIONS(5677), - [anon_sym___attribute__] = ACTIONS(5677), - [anon_sym___attribute] = ACTIONS(5677), - [anon_sym_COLON] = ACTIONS(5679), - [anon_sym___based] = ACTIONS(5677), - [anon_sym_LBRACE] = ACTIONS(5679), - [anon_sym_RBRACE] = ACTIONS(5679), - [anon_sym_signed] = ACTIONS(5677), - [anon_sym_unsigned] = ACTIONS(5677), - [anon_sym_long] = ACTIONS(5677), - [anon_sym_short] = ACTIONS(5677), - [anon_sym_LBRACK] = ACTIONS(5679), - [anon_sym_RBRACK] = ACTIONS(5679), - [anon_sym_const] = ACTIONS(5677), - [anon_sym_constexpr] = ACTIONS(5677), - [anon_sym_volatile] = ACTIONS(5677), - [anon_sym_restrict] = ACTIONS(5677), - [anon_sym___restrict__] = ACTIONS(5677), - [anon_sym__Atomic] = ACTIONS(5677), - [anon_sym__Noreturn] = ACTIONS(5677), - [anon_sym_noreturn] = ACTIONS(5677), - [anon_sym__Nonnull] = ACTIONS(5677), - [anon_sym_mutable] = ACTIONS(5677), - [anon_sym_constinit] = ACTIONS(5677), - [anon_sym_consteval] = ACTIONS(5677), - [anon_sym_alignas] = ACTIONS(5677), - [anon_sym__Alignas] = ACTIONS(5677), - [sym_primitive_type] = ACTIONS(5677), - [anon_sym_QMARK] = ACTIONS(5679), - [anon_sym_LT_EQ_GT] = ACTIONS(5679), - [anon_sym_or] = ACTIONS(5677), - [anon_sym_and] = ACTIONS(5677), - [anon_sym_bitor] = ACTIONS(5677), - [anon_sym_xor] = ACTIONS(5677), - [anon_sym_bitand] = ACTIONS(5677), - [anon_sym_not_eq] = ACTIONS(5677), - [anon_sym_DASH_DASH] = ACTIONS(5679), - [anon_sym_PLUS_PLUS] = ACTIONS(5679), - [anon_sym_DOT] = ACTIONS(5677), - [anon_sym_DOT_STAR] = ACTIONS(5679), - [anon_sym_DASH_GT] = ACTIONS(5679), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5677), - [anon_sym_decltype] = ACTIONS(5677), - [anon_sym_final] = ACTIONS(5677), - [anon_sym_override] = ACTIONS(5677), - [anon_sym_requires] = ACTIONS(5677), + [anon_sym_catch] = ACTIONS(5709), }, - [1854] = { - [sym_identifier] = ACTIONS(5677), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5679), - [anon_sym_COMMA] = ACTIONS(5679), - [anon_sym_RPAREN] = ACTIONS(5679), - [anon_sym_LPAREN2] = ACTIONS(5679), - [anon_sym_DASH] = ACTIONS(5677), - [anon_sym_PLUS] = ACTIONS(5677), - [anon_sym_STAR] = ACTIONS(5679), - [anon_sym_SLASH] = ACTIONS(5677), - [anon_sym_PERCENT] = ACTIONS(5679), - [anon_sym_PIPE_PIPE] = ACTIONS(5679), - [anon_sym_AMP_AMP] = ACTIONS(5679), - [anon_sym_PIPE] = ACTIONS(5677), - [anon_sym_CARET] = ACTIONS(5679), - [anon_sym_AMP] = ACTIONS(5677), - [anon_sym_EQ_EQ] = ACTIONS(5679), - [anon_sym_BANG_EQ] = ACTIONS(5679), - [anon_sym_GT] = ACTIONS(5677), - [anon_sym_GT_EQ] = ACTIONS(5679), - [anon_sym_LT_EQ] = ACTIONS(5677), - [anon_sym_LT] = ACTIONS(5677), - [anon_sym_LT_LT] = ACTIONS(5679), - [anon_sym_GT_GT] = ACTIONS(5679), - [anon_sym_SEMI] = ACTIONS(5679), - [anon_sym___extension__] = ACTIONS(5677), - [anon_sym___attribute__] = ACTIONS(5677), - [anon_sym___attribute] = ACTIONS(5677), - [anon_sym_COLON] = ACTIONS(5679), - [anon_sym___based] = ACTIONS(5677), - [anon_sym_LBRACE] = ACTIONS(5679), - [anon_sym_RBRACE] = ACTIONS(5679), - [anon_sym_signed] = ACTIONS(5677), - [anon_sym_unsigned] = ACTIONS(5677), - [anon_sym_long] = ACTIONS(5677), - [anon_sym_short] = ACTIONS(5677), - [anon_sym_LBRACK] = ACTIONS(5679), - [anon_sym_RBRACK] = ACTIONS(5679), - [anon_sym_const] = ACTIONS(5677), - [anon_sym_constexpr] = ACTIONS(5677), - [anon_sym_volatile] = ACTIONS(5677), - [anon_sym_restrict] = ACTIONS(5677), - [anon_sym___restrict__] = ACTIONS(5677), - [anon_sym__Atomic] = ACTIONS(5677), - [anon_sym__Noreturn] = ACTIONS(5677), - [anon_sym_noreturn] = ACTIONS(5677), - [anon_sym__Nonnull] = ACTIONS(5677), - [anon_sym_mutable] = ACTIONS(5677), - [anon_sym_constinit] = ACTIONS(5677), - [anon_sym_consteval] = ACTIONS(5677), - [anon_sym_alignas] = ACTIONS(5677), - [anon_sym__Alignas] = ACTIONS(5677), - [sym_primitive_type] = ACTIONS(5677), - [anon_sym_QMARK] = ACTIONS(5679), - [anon_sym_LT_EQ_GT] = ACTIONS(5679), - [anon_sym_or] = ACTIONS(5677), - [anon_sym_and] = ACTIONS(5677), - [anon_sym_bitor] = ACTIONS(5677), - [anon_sym_xor] = ACTIONS(5677), - [anon_sym_bitand] = ACTIONS(5677), - [anon_sym_not_eq] = ACTIONS(5677), - [anon_sym_DASH_DASH] = ACTIONS(5679), - [anon_sym_PLUS_PLUS] = ACTIONS(5679), - [anon_sym_DOT] = ACTIONS(5677), - [anon_sym_DOT_STAR] = ACTIONS(5679), - [anon_sym_DASH_GT] = ACTIONS(5679), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5677), - [anon_sym_decltype] = ACTIONS(5677), - [anon_sym_final] = ACTIONS(5677), - [anon_sym_override] = ACTIONS(5677), - [anon_sym_requires] = ACTIONS(5677), - }, - [1855] = { - [sym_catch_clause] = STATE(1890), - [aux_sym_constructor_try_statement_repeat1] = STATE(1890), - [sym_identifier] = ACTIONS(2590), - [aux_sym_preproc_def_token1] = ACTIONS(2590), - [aux_sym_preproc_if_token1] = ACTIONS(2590), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2590), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2590), - [sym_preproc_directive] = ACTIONS(2590), - [anon_sym_LPAREN2] = ACTIONS(2592), - [anon_sym_TILDE] = ACTIONS(2592), - [anon_sym_STAR] = ACTIONS(2592), - [anon_sym_AMP_AMP] = ACTIONS(2592), - [anon_sym_AMP] = ACTIONS(2590), - [anon_sym_SEMI] = ACTIONS(2592), - [anon_sym___extension__] = ACTIONS(2590), - [anon_sym_typedef] = ACTIONS(2590), - [anon_sym_virtual] = ACTIONS(2590), - [anon_sym_extern] = ACTIONS(2590), - [anon_sym___attribute__] = ACTIONS(2590), - [anon_sym___attribute] = ACTIONS(2590), - [anon_sym_using] = ACTIONS(2590), - [anon_sym_COLON_COLON] = ACTIONS(2592), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2592), - [anon_sym___declspec] = ACTIONS(2590), - [anon_sym___based] = ACTIONS(2590), - [anon_sym_RBRACE] = ACTIONS(2592), - [anon_sym_signed] = ACTIONS(2590), - [anon_sym_unsigned] = ACTIONS(2590), - [anon_sym_long] = ACTIONS(2590), - [anon_sym_short] = ACTIONS(2590), - [anon_sym_LBRACK] = ACTIONS(2590), - [anon_sym_static] = ACTIONS(2590), - [anon_sym_register] = ACTIONS(2590), - [anon_sym_inline] = ACTIONS(2590), - [anon_sym___inline] = ACTIONS(2590), - [anon_sym___inline__] = ACTIONS(2590), - [anon_sym___forceinline] = ACTIONS(2590), - [anon_sym_thread_local] = ACTIONS(2590), - [anon_sym___thread] = ACTIONS(2590), - [anon_sym_const] = ACTIONS(2590), - [anon_sym_constexpr] = ACTIONS(2590), - [anon_sym_volatile] = ACTIONS(2590), - [anon_sym_restrict] = ACTIONS(2590), - [anon_sym___restrict__] = ACTIONS(2590), - [anon_sym__Atomic] = ACTIONS(2590), - [anon_sym__Noreturn] = ACTIONS(2590), - [anon_sym_noreturn] = ACTIONS(2590), - [anon_sym__Nonnull] = ACTIONS(2590), - [anon_sym_mutable] = ACTIONS(2590), - [anon_sym_constinit] = ACTIONS(2590), - [anon_sym_consteval] = ACTIONS(2590), - [anon_sym_alignas] = ACTIONS(2590), - [anon_sym__Alignas] = ACTIONS(2590), - [sym_primitive_type] = ACTIONS(2590), - [anon_sym_enum] = ACTIONS(2590), - [anon_sym_class] = ACTIONS(2590), - [anon_sym_struct] = ACTIONS(2590), - [anon_sym_union] = ACTIONS(2590), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2590), - [anon_sym_decltype] = ACTIONS(2590), - [anon_sym_explicit] = ACTIONS(2590), - [anon_sym_typename] = ACTIONS(2590), - [anon_sym_private] = ACTIONS(2590), - [anon_sym_template] = ACTIONS(2590), - [anon_sym_operator] = ACTIONS(2590), - [anon_sym_friend] = ACTIONS(2590), - [anon_sym_public] = ACTIONS(2590), - [anon_sym_protected] = ACTIONS(2590), - [anon_sym_static_assert] = ACTIONS(2590), - [anon_sym_catch] = ACTIONS(5671), - }, - [1856] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(4998), - [anon_sym_COMMA] = ACTIONS(4998), - [anon_sym_RPAREN] = ACTIONS(5000), - [anon_sym_LPAREN2] = ACTIONS(5000), - [anon_sym_DASH] = ACTIONS(5005), - [anon_sym_PLUS] = ACTIONS(5005), - [anon_sym_STAR] = ACTIONS(5007), - [anon_sym_SLASH] = ACTIONS(5005), - [anon_sym_PERCENT] = ACTIONS(5005), - [anon_sym_PIPE_PIPE] = ACTIONS(4998), - [anon_sym_AMP_AMP] = ACTIONS(5000), - [anon_sym_PIPE] = ACTIONS(5005), - [anon_sym_CARET] = ACTIONS(5005), - [anon_sym_AMP] = ACTIONS(5007), - [anon_sym_EQ_EQ] = ACTIONS(4998), - [anon_sym_BANG_EQ] = ACTIONS(4998), - [anon_sym_GT] = ACTIONS(5005), - [anon_sym_GT_EQ] = ACTIONS(4998), - [anon_sym_LT_EQ] = ACTIONS(5005), - [anon_sym_LT] = ACTIONS(5005), - [anon_sym_LT_LT] = ACTIONS(5005), - [anon_sym_GT_GT] = ACTIONS(5005), - [anon_sym___extension__] = ACTIONS(5003), - [anon_sym_COLON_COLON] = ACTIONS(5003), - [anon_sym_LBRACE] = ACTIONS(5003), - [anon_sym_LBRACK] = ACTIONS(5000), - [anon_sym_EQ] = ACTIONS(5005), - [anon_sym_const] = ACTIONS(4996), - [anon_sym_constexpr] = ACTIONS(5003), - [anon_sym_volatile] = ACTIONS(5003), - [anon_sym_restrict] = ACTIONS(5003), - [anon_sym___restrict__] = ACTIONS(5003), - [anon_sym__Atomic] = ACTIONS(5003), - [anon_sym__Noreturn] = ACTIONS(5003), - [anon_sym_noreturn] = ACTIONS(5003), - [anon_sym__Nonnull] = ACTIONS(5003), - [anon_sym_mutable] = ACTIONS(5003), - [anon_sym_constinit] = ACTIONS(5003), - [anon_sym_consteval] = ACTIONS(5003), - [anon_sym_alignas] = ACTIONS(5003), - [anon_sym__Alignas] = ACTIONS(5003), - [anon_sym_QMARK] = ACTIONS(4998), - [anon_sym_STAR_EQ] = ACTIONS(4998), - [anon_sym_SLASH_EQ] = ACTIONS(4998), - [anon_sym_PERCENT_EQ] = ACTIONS(4998), - [anon_sym_PLUS_EQ] = ACTIONS(4998), - [anon_sym_DASH_EQ] = ACTIONS(4998), - [anon_sym_LT_LT_EQ] = ACTIONS(4998), - [anon_sym_GT_GT_EQ] = ACTIONS(4998), - [anon_sym_AMP_EQ] = ACTIONS(4998), - [anon_sym_CARET_EQ] = ACTIONS(4998), - [anon_sym_PIPE_EQ] = ACTIONS(4998), - [anon_sym_and_eq] = ACTIONS(4998), - [anon_sym_or_eq] = ACTIONS(4998), - [anon_sym_xor_eq] = ACTIONS(4998), - [anon_sym_LT_EQ_GT] = ACTIONS(4998), - [anon_sym_or] = ACTIONS(5005), - [anon_sym_and] = ACTIONS(5005), - [anon_sym_bitor] = ACTIONS(4998), - [anon_sym_xor] = ACTIONS(5005), - [anon_sym_bitand] = ACTIONS(4998), - [anon_sym_not_eq] = ACTIONS(4998), - [anon_sym_DASH_DASH] = ACTIONS(4998), - [anon_sym_PLUS_PLUS] = ACTIONS(4998), - [anon_sym_DOT] = ACTIONS(5005), - [anon_sym_DOT_STAR] = ACTIONS(4998), - [anon_sym_DASH_GT] = ACTIONS(5005), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5003), - [anon_sym_decltype] = ACTIONS(5003), - [anon_sym_DASH_GT_STAR] = ACTIONS(4998), - }, - [1857] = { - [sym_template_argument_list] = STATE(1895), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4967), - [anon_sym_COMMA] = ACTIONS(4967), - [anon_sym_LPAREN2] = ACTIONS(4967), - [anon_sym_DASH] = ACTIONS(4972), - [anon_sym_PLUS] = ACTIONS(4972), - [anon_sym_STAR] = ACTIONS(4974), - [anon_sym_SLASH] = ACTIONS(4972), - [anon_sym_PERCENT] = ACTIONS(4972), - [anon_sym_PIPE_PIPE] = ACTIONS(4965), - [anon_sym_AMP_AMP] = ACTIONS(4967), - [anon_sym_PIPE] = ACTIONS(4972), - [anon_sym_CARET] = ACTIONS(4972), - [anon_sym_AMP] = ACTIONS(4974), - [anon_sym_EQ_EQ] = ACTIONS(4965), - [anon_sym_BANG_EQ] = ACTIONS(4965), - [anon_sym_GT] = ACTIONS(4972), - [anon_sym_GT_EQ] = ACTIONS(4972), - [anon_sym_LT_EQ] = ACTIONS(4972), - [anon_sym_LT] = ACTIONS(5696), - [anon_sym_LT_LT] = ACTIONS(4972), - [anon_sym_GT_GT] = ACTIONS(4972), - [anon_sym___extension__] = ACTIONS(4970), - [anon_sym_COLON_COLON] = ACTIONS(4167), - [anon_sym_LBRACE] = ACTIONS(4970), - [anon_sym_LBRACK] = ACTIONS(4967), - [anon_sym_EQ] = ACTIONS(4972), - [anon_sym_const] = ACTIONS(4963), - [anon_sym_constexpr] = ACTIONS(4970), - [anon_sym_volatile] = ACTIONS(4970), - [anon_sym_restrict] = ACTIONS(4970), - [anon_sym___restrict__] = ACTIONS(4970), - [anon_sym__Atomic] = ACTIONS(4970), - [anon_sym__Noreturn] = ACTIONS(4970), - [anon_sym_noreturn] = ACTIONS(4970), - [anon_sym__Nonnull] = ACTIONS(4970), - [anon_sym_mutable] = ACTIONS(4970), - [anon_sym_constinit] = ACTIONS(4970), - [anon_sym_consteval] = ACTIONS(4970), - [anon_sym_alignas] = ACTIONS(4970), - [anon_sym__Alignas] = ACTIONS(4970), - [anon_sym_QMARK] = ACTIONS(4965), - [anon_sym_STAR_EQ] = ACTIONS(4965), - [anon_sym_SLASH_EQ] = ACTIONS(4965), - [anon_sym_PERCENT_EQ] = ACTIONS(4965), - [anon_sym_PLUS_EQ] = ACTIONS(4965), - [anon_sym_DASH_EQ] = ACTIONS(4965), - [anon_sym_LT_LT_EQ] = ACTIONS(4965), - [anon_sym_GT_GT_EQ] = ACTIONS(4972), - [anon_sym_AMP_EQ] = ACTIONS(4965), - [anon_sym_CARET_EQ] = ACTIONS(4965), - [anon_sym_PIPE_EQ] = ACTIONS(4965), - [anon_sym_and_eq] = ACTIONS(4965), - [anon_sym_or_eq] = ACTIONS(4965), - [anon_sym_xor_eq] = ACTIONS(4965), - [anon_sym_LT_EQ_GT] = ACTIONS(4965), - [anon_sym_or] = ACTIONS(4972), - [anon_sym_and] = ACTIONS(4972), - [anon_sym_bitor] = ACTIONS(4965), - [anon_sym_xor] = ACTIONS(4972), - [anon_sym_bitand] = ACTIONS(4965), - [anon_sym_not_eq] = ACTIONS(4965), - [anon_sym_DASH_DASH] = ACTIONS(4965), - [anon_sym_PLUS_PLUS] = ACTIONS(4965), - [anon_sym_DOT] = ACTIONS(4972), - [anon_sym_DOT_STAR] = ACTIONS(4965), - [anon_sym_DASH_GT] = ACTIONS(4965), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4970), - [anon_sym_decltype] = ACTIONS(4970), - [anon_sym_GT2] = ACTIONS(4967), - }, - [1858] = { - [sym_identifier] = ACTIONS(5080), - [anon_sym_LPAREN2] = ACTIONS(5082), - [anon_sym_BANG] = ACTIONS(5082), - [anon_sym_TILDE] = ACTIONS(5082), - [anon_sym_DASH] = ACTIONS(5080), - [anon_sym_PLUS] = ACTIONS(5080), - [anon_sym_STAR] = ACTIONS(5082), - [anon_sym_AMP] = ACTIONS(5082), - [anon_sym___extension__] = ACTIONS(5080), - [anon_sym_COLON_COLON] = ACTIONS(5082), - [anon_sym_LBRACK] = ACTIONS(5082), - [anon_sym_static] = ACTIONS(5080), - [anon_sym_RBRACK] = ACTIONS(5082), - [anon_sym_const] = ACTIONS(5080), - [anon_sym_constexpr] = ACTIONS(5080), - [anon_sym_volatile] = ACTIONS(5080), - [anon_sym_restrict] = ACTIONS(5080), - [anon_sym___restrict__] = ACTIONS(5080), - [anon_sym__Atomic] = ACTIONS(5080), - [anon_sym__Noreturn] = ACTIONS(5080), - [anon_sym_noreturn] = ACTIONS(5080), - [anon_sym__Nonnull] = ACTIONS(5080), - [anon_sym_mutable] = ACTIONS(5080), - [anon_sym_constinit] = ACTIONS(5080), - [anon_sym_consteval] = ACTIONS(5080), - [anon_sym_alignas] = ACTIONS(5080), - [anon_sym__Alignas] = ACTIONS(5080), - [sym_primitive_type] = ACTIONS(5080), - [anon_sym_not] = ACTIONS(5080), - [anon_sym_compl] = ACTIONS(5080), - [anon_sym_DASH_DASH] = ACTIONS(5082), - [anon_sym_PLUS_PLUS] = ACTIONS(5082), - [anon_sym_sizeof] = ACTIONS(5080), - [anon_sym___alignof__] = ACTIONS(5080), - [anon_sym___alignof] = ACTIONS(5080), - [anon_sym__alignof] = ACTIONS(5080), - [anon_sym_alignof] = ACTIONS(5080), - [anon_sym__Alignof] = ACTIONS(5080), - [anon_sym_offsetof] = ACTIONS(5080), - [anon_sym__Generic] = ACTIONS(5080), - [anon_sym_asm] = ACTIONS(5080), - [anon_sym___asm__] = ACTIONS(5080), - [anon_sym___asm] = ACTIONS(5080), - [sym_number_literal] = ACTIONS(5082), - [anon_sym_L_SQUOTE] = ACTIONS(5082), - [anon_sym_u_SQUOTE] = ACTIONS(5082), - [anon_sym_U_SQUOTE] = ACTIONS(5082), - [anon_sym_u8_SQUOTE] = ACTIONS(5082), - [anon_sym_SQUOTE] = ACTIONS(5082), - [anon_sym_L_DQUOTE] = ACTIONS(5082), - [anon_sym_u_DQUOTE] = ACTIONS(5082), - [anon_sym_U_DQUOTE] = ACTIONS(5082), - [anon_sym_u8_DQUOTE] = ACTIONS(5082), - [anon_sym_DQUOTE] = ACTIONS(5082), - [sym_true] = ACTIONS(5080), - [sym_false] = ACTIONS(5080), - [anon_sym_NULL] = ACTIONS(5080), - [anon_sym_nullptr] = ACTIONS(5080), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(5080), - [anon_sym_template] = ACTIONS(5080), - [anon_sym_delete] = ACTIONS(5080), - [anon_sym_R_DQUOTE] = ACTIONS(5082), - [anon_sym_LR_DQUOTE] = ACTIONS(5082), - [anon_sym_uR_DQUOTE] = ACTIONS(5082), - [anon_sym_UR_DQUOTE] = ACTIONS(5082), - [anon_sym_u8R_DQUOTE] = ACTIONS(5082), - [anon_sym_co_await] = ACTIONS(5080), - [anon_sym_new] = ACTIONS(5080), - [anon_sym_requires] = ACTIONS(5080), - [sym_this] = ACTIONS(5080), - }, - [1859] = { - [sym_identifier] = ACTIONS(5699), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5701), - [anon_sym_COMMA] = ACTIONS(5701), - [anon_sym_RPAREN] = ACTIONS(5701), - [anon_sym_LPAREN2] = ACTIONS(5701), - [anon_sym_DASH] = ACTIONS(5699), - [anon_sym_PLUS] = ACTIONS(5699), - [anon_sym_STAR] = ACTIONS(5701), - [anon_sym_SLASH] = ACTIONS(5699), - [anon_sym_PERCENT] = ACTIONS(5701), - [anon_sym_PIPE_PIPE] = ACTIONS(5701), - [anon_sym_AMP_AMP] = ACTIONS(5701), - [anon_sym_PIPE] = ACTIONS(5699), - [anon_sym_CARET] = ACTIONS(5701), - [anon_sym_AMP] = ACTIONS(5699), - [anon_sym_EQ_EQ] = ACTIONS(5701), - [anon_sym_BANG_EQ] = ACTIONS(5701), - [anon_sym_GT] = ACTIONS(5699), - [anon_sym_GT_EQ] = ACTIONS(5701), - [anon_sym_LT_EQ] = ACTIONS(5699), - [anon_sym_LT] = ACTIONS(5699), - [anon_sym_LT_LT] = ACTIONS(5701), - [anon_sym_GT_GT] = ACTIONS(5701), - [anon_sym_SEMI] = ACTIONS(5701), - [anon_sym___extension__] = ACTIONS(5699), - [anon_sym___attribute__] = ACTIONS(5699), - [anon_sym___attribute] = ACTIONS(5699), - [anon_sym_COLON] = ACTIONS(5701), - [anon_sym___based] = ACTIONS(5699), - [anon_sym_LBRACE] = ACTIONS(5701), - [anon_sym_RBRACE] = ACTIONS(5701), - [anon_sym_signed] = ACTIONS(5699), - [anon_sym_unsigned] = ACTIONS(5699), - [anon_sym_long] = ACTIONS(5699), - [anon_sym_short] = ACTIONS(5699), - [anon_sym_LBRACK] = ACTIONS(5701), - [anon_sym_RBRACK] = ACTIONS(5701), - [anon_sym_const] = ACTIONS(5699), - [anon_sym_constexpr] = ACTIONS(5699), - [anon_sym_volatile] = ACTIONS(5699), - [anon_sym_restrict] = ACTIONS(5699), - [anon_sym___restrict__] = ACTIONS(5699), - [anon_sym__Atomic] = ACTIONS(5699), - [anon_sym__Noreturn] = ACTIONS(5699), - [anon_sym_noreturn] = ACTIONS(5699), - [anon_sym__Nonnull] = ACTIONS(5699), - [anon_sym_mutable] = ACTIONS(5699), - [anon_sym_constinit] = ACTIONS(5699), - [anon_sym_consteval] = ACTIONS(5699), - [anon_sym_alignas] = ACTIONS(5699), - [anon_sym__Alignas] = ACTIONS(5699), - [sym_primitive_type] = ACTIONS(5699), - [anon_sym_QMARK] = ACTIONS(5701), - [anon_sym_LT_EQ_GT] = ACTIONS(5701), - [anon_sym_or] = ACTIONS(5699), - [anon_sym_and] = ACTIONS(5699), - [anon_sym_bitor] = ACTIONS(5699), - [anon_sym_xor] = ACTIONS(5699), - [anon_sym_bitand] = ACTIONS(5699), - [anon_sym_not_eq] = ACTIONS(5699), - [anon_sym_DASH_DASH] = ACTIONS(5701), - [anon_sym_PLUS_PLUS] = ACTIONS(5701), - [anon_sym_DOT] = ACTIONS(5699), - [anon_sym_DOT_STAR] = ACTIONS(5701), - [anon_sym_DASH_GT] = ACTIONS(5701), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5699), - [anon_sym_decltype] = ACTIONS(5699), - [anon_sym_final] = ACTIONS(5699), - [anon_sym_override] = ACTIONS(5699), - [anon_sym_requires] = ACTIONS(5699), - }, - [1860] = { - [sym_type_qualifier] = STATE(1861), - [sym_alignas_qualifier] = STATE(1695), - [aux_sym__type_definition_type_repeat1] = STATE(1861), - [aux_sym_sized_type_specifier_repeat1] = STATE(2055), - [sym_identifier] = ACTIONS(5703), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5086), - [anon_sym_COMMA] = ACTIONS(5086), - [aux_sym_preproc_if_token2] = ACTIONS(5086), - [aux_sym_preproc_else_token1] = ACTIONS(5086), - [aux_sym_preproc_elif_token1] = ACTIONS(5088), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5086), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5086), - [anon_sym_LPAREN2] = ACTIONS(5086), - [anon_sym_DASH] = ACTIONS(5088), - [anon_sym_PLUS] = ACTIONS(5088), - [anon_sym_STAR] = ACTIONS(5086), - [anon_sym_SLASH] = ACTIONS(5088), - [anon_sym_PERCENT] = ACTIONS(5086), - [anon_sym_PIPE_PIPE] = ACTIONS(5086), - [anon_sym_AMP_AMP] = ACTIONS(5086), - [anon_sym_PIPE] = ACTIONS(5088), - [anon_sym_CARET] = ACTIONS(5086), - [anon_sym_AMP] = ACTIONS(5088), - [anon_sym_EQ_EQ] = ACTIONS(5086), - [anon_sym_BANG_EQ] = ACTIONS(5086), - [anon_sym_GT] = ACTIONS(5088), - [anon_sym_GT_EQ] = ACTIONS(5086), - [anon_sym_LT_EQ] = ACTIONS(5088), - [anon_sym_LT] = ACTIONS(5088), - [anon_sym_LT_LT] = ACTIONS(5086), - [anon_sym_GT_GT] = ACTIONS(5086), - [anon_sym___extension__] = ACTIONS(5706), - [anon_sym___attribute__] = ACTIONS(5088), - [anon_sym___attribute] = ACTIONS(5088), - [anon_sym_LBRACE] = ACTIONS(5086), - [anon_sym_signed] = ACTIONS(5708), - [anon_sym_unsigned] = ACTIONS(5708), - [anon_sym_long] = ACTIONS(5708), - [anon_sym_short] = ACTIONS(5708), - [anon_sym_LBRACK] = ACTIONS(5086), - [anon_sym_const] = ACTIONS(5706), - [anon_sym_constexpr] = ACTIONS(5706), - [anon_sym_volatile] = ACTIONS(5706), - [anon_sym_restrict] = ACTIONS(5706), - [anon_sym___restrict__] = ACTIONS(5706), - [anon_sym__Atomic] = ACTIONS(5706), - [anon_sym__Noreturn] = ACTIONS(5706), - [anon_sym_noreturn] = ACTIONS(5706), - [anon_sym__Nonnull] = ACTIONS(5706), - [anon_sym_mutable] = ACTIONS(5706), - [anon_sym_constinit] = ACTIONS(5706), - [anon_sym_consteval] = ACTIONS(5706), - [anon_sym_alignas] = ACTIONS(5710), - [anon_sym__Alignas] = ACTIONS(5710), + [1880] = { + [sym_identifier] = ACTIONS(5712), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5714), + [anon_sym_COMMA] = ACTIONS(5714), + [anon_sym_RPAREN] = ACTIONS(5714), + [anon_sym_LPAREN2] = ACTIONS(5714), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5712), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PIPE_PIPE] = ACTIONS(5714), + [anon_sym_AMP_AMP] = ACTIONS(5714), + [anon_sym_PIPE] = ACTIONS(5712), + [anon_sym_CARET] = ACTIONS(5714), + [anon_sym_AMP] = ACTIONS(5712), + [anon_sym_EQ_EQ] = ACTIONS(5714), + [anon_sym_BANG_EQ] = ACTIONS(5714), + [anon_sym_GT] = ACTIONS(5712), + [anon_sym_GT_EQ] = ACTIONS(5714), + [anon_sym_LT_EQ] = ACTIONS(5712), + [anon_sym_LT] = ACTIONS(5712), + [anon_sym_LT_LT] = ACTIONS(5714), + [anon_sym_GT_GT] = ACTIONS(5714), + [anon_sym_SEMI] = ACTIONS(5714), + [anon_sym___extension__] = ACTIONS(5712), + [anon_sym___attribute__] = ACTIONS(5712), + [anon_sym___attribute] = ACTIONS(5712), + [anon_sym_COLON] = ACTIONS(5714), + [anon_sym___based] = ACTIONS(5712), + [anon_sym_LBRACE] = ACTIONS(5714), + [anon_sym_RBRACE] = ACTIONS(5714), + [anon_sym_signed] = ACTIONS(5712), + [anon_sym_unsigned] = ACTIONS(5712), + [anon_sym_long] = ACTIONS(5712), + [anon_sym_short] = ACTIONS(5712), + [anon_sym_LBRACK] = ACTIONS(5714), + [anon_sym_RBRACK] = ACTIONS(5714), + [anon_sym_const] = ACTIONS(5712), + [anon_sym_constexpr] = ACTIONS(5712), + [anon_sym_volatile] = ACTIONS(5712), + [anon_sym_restrict] = ACTIONS(5712), + [anon_sym___restrict__] = ACTIONS(5712), + [anon_sym__Atomic] = ACTIONS(5712), + [anon_sym__Noreturn] = ACTIONS(5712), + [anon_sym_noreturn] = ACTIONS(5712), + [anon_sym__Nonnull] = ACTIONS(5712), + [anon_sym_mutable] = ACTIONS(5712), + [anon_sym_constinit] = ACTIONS(5712), + [anon_sym_consteval] = ACTIONS(5712), + [anon_sym_alignas] = ACTIONS(5712), + [anon_sym__Alignas] = ACTIONS(5712), [sym_primitive_type] = ACTIONS(5712), - [anon_sym_QMARK] = ACTIONS(5086), - [anon_sym_LT_EQ_GT] = ACTIONS(5086), - [anon_sym_or] = ACTIONS(5088), - [anon_sym_and] = ACTIONS(5088), - [anon_sym_bitor] = ACTIONS(5088), - [anon_sym_xor] = ACTIONS(5088), - [anon_sym_bitand] = ACTIONS(5088), - [anon_sym_not_eq] = ACTIONS(5088), - [anon_sym_DASH_DASH] = ACTIONS(5086), - [anon_sym_PLUS_PLUS] = ACTIONS(5086), - [anon_sym_DOT] = ACTIONS(5088), - [anon_sym_DOT_STAR] = ACTIONS(5086), - [anon_sym_DASH_GT] = ACTIONS(5086), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5088), - [anon_sym_decltype] = ACTIONS(5088), + [anon_sym_QMARK] = ACTIONS(5714), + [anon_sym_LT_EQ_GT] = ACTIONS(5714), + [anon_sym_or] = ACTIONS(5712), + [anon_sym_and] = ACTIONS(5712), + [anon_sym_bitor] = ACTIONS(5712), + [anon_sym_xor] = ACTIONS(5712), + [anon_sym_bitand] = ACTIONS(5712), + [anon_sym_not_eq] = ACTIONS(5712), + [anon_sym_DASH_DASH] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5714), + [anon_sym_DOT] = ACTIONS(5712), + [anon_sym_DOT_STAR] = ACTIONS(5714), + [anon_sym_DASH_GT] = ACTIONS(5714), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5712), + [anon_sym_decltype] = ACTIONS(5712), + [anon_sym_final] = ACTIONS(5712), + [anon_sym_override] = ACTIONS(5712), + [anon_sym_requires] = ACTIONS(5712), }, - [1861] = { - [sym_type_qualifier] = STATE(1655), - [sym_alignas_qualifier] = STATE(1695), - [aux_sym__type_definition_type_repeat1] = STATE(1655), - [aux_sym_sized_type_specifier_repeat1] = STATE(3379), - [sym_identifier] = ACTIONS(5714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5100), - [anon_sym_COMMA] = ACTIONS(5100), - [aux_sym_preproc_if_token2] = ACTIONS(5100), - [aux_sym_preproc_else_token1] = ACTIONS(5100), - [aux_sym_preproc_elif_token1] = ACTIONS(5102), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5100), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5100), - [anon_sym_LPAREN2] = ACTIONS(5100), - [anon_sym_DASH] = ACTIONS(5102), - [anon_sym_PLUS] = ACTIONS(5102), - [anon_sym_STAR] = ACTIONS(5100), - [anon_sym_SLASH] = ACTIONS(5102), - [anon_sym_PERCENT] = ACTIONS(5100), - [anon_sym_PIPE_PIPE] = ACTIONS(5100), - [anon_sym_AMP_AMP] = ACTIONS(5100), - [anon_sym_PIPE] = ACTIONS(5102), - [anon_sym_CARET] = ACTIONS(5100), - [anon_sym_AMP] = ACTIONS(5102), - [anon_sym_EQ_EQ] = ACTIONS(5100), - [anon_sym_BANG_EQ] = ACTIONS(5100), - [anon_sym_GT] = ACTIONS(5102), - [anon_sym_GT_EQ] = ACTIONS(5100), - [anon_sym_LT_EQ] = ACTIONS(5102), - [anon_sym_LT] = ACTIONS(5102), - [anon_sym_LT_LT] = ACTIONS(5100), - [anon_sym_GT_GT] = ACTIONS(5100), - [anon_sym___extension__] = ACTIONS(5706), - [anon_sym___attribute__] = ACTIONS(5102), - [anon_sym___attribute] = ACTIONS(5102), - [anon_sym_LBRACE] = ACTIONS(5100), - [anon_sym_signed] = ACTIONS(5717), - [anon_sym_unsigned] = ACTIONS(5717), - [anon_sym_long] = ACTIONS(5717), - [anon_sym_short] = ACTIONS(5717), - [anon_sym_LBRACK] = ACTIONS(5100), - [anon_sym_const] = ACTIONS(5706), - [anon_sym_constexpr] = ACTIONS(5706), - [anon_sym_volatile] = ACTIONS(5706), - [anon_sym_restrict] = ACTIONS(5706), - [anon_sym___restrict__] = ACTIONS(5706), - [anon_sym__Atomic] = ACTIONS(5706), - [anon_sym__Noreturn] = ACTIONS(5706), - [anon_sym_noreturn] = ACTIONS(5706), - [anon_sym__Nonnull] = ACTIONS(5706), - [anon_sym_mutable] = ACTIONS(5706), - [anon_sym_constinit] = ACTIONS(5706), - [anon_sym_consteval] = ACTIONS(5706), - [anon_sym_alignas] = ACTIONS(5710), - [anon_sym__Alignas] = ACTIONS(5710), - [sym_primitive_type] = ACTIONS(5719), - [anon_sym_QMARK] = ACTIONS(5100), - [anon_sym_LT_EQ_GT] = ACTIONS(5100), - [anon_sym_or] = ACTIONS(5102), - [anon_sym_and] = ACTIONS(5102), - [anon_sym_bitor] = ACTIONS(5102), - [anon_sym_xor] = ACTIONS(5102), - [anon_sym_bitand] = ACTIONS(5102), - [anon_sym_not_eq] = ACTIONS(5102), - [anon_sym_DASH_DASH] = ACTIONS(5100), - [anon_sym_PLUS_PLUS] = ACTIONS(5100), - [anon_sym_DOT] = ACTIONS(5102), - [anon_sym_DOT_STAR] = ACTIONS(5100), - [anon_sym_DASH_GT] = ACTIONS(5100), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5102), - [anon_sym_decltype] = ACTIONS(5102), + [1881] = { + [sym_identifier] = ACTIONS(5716), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5718), + [anon_sym_COMMA] = ACTIONS(5718), + [anon_sym_RPAREN] = ACTIONS(5718), + [anon_sym_LPAREN2] = ACTIONS(5718), + [anon_sym_DASH] = ACTIONS(5716), + [anon_sym_PLUS] = ACTIONS(5716), + [anon_sym_STAR] = ACTIONS(5718), + [anon_sym_SLASH] = ACTIONS(5716), + [anon_sym_PERCENT] = ACTIONS(5718), + [anon_sym_PIPE_PIPE] = ACTIONS(5718), + [anon_sym_AMP_AMP] = ACTIONS(5718), + [anon_sym_PIPE] = ACTIONS(5716), + [anon_sym_CARET] = ACTIONS(5718), + [anon_sym_AMP] = ACTIONS(5716), + [anon_sym_EQ_EQ] = ACTIONS(5718), + [anon_sym_BANG_EQ] = ACTIONS(5718), + [anon_sym_GT] = ACTIONS(5716), + [anon_sym_GT_EQ] = ACTIONS(5718), + [anon_sym_LT_EQ] = ACTIONS(5716), + [anon_sym_LT] = ACTIONS(5716), + [anon_sym_LT_LT] = ACTIONS(5718), + [anon_sym_GT_GT] = ACTIONS(5718), + [anon_sym_SEMI] = ACTIONS(5718), + [anon_sym___extension__] = ACTIONS(5716), + [anon_sym___attribute__] = ACTIONS(5716), + [anon_sym___attribute] = ACTIONS(5716), + [anon_sym_COLON] = ACTIONS(5718), + [anon_sym___based] = ACTIONS(5716), + [anon_sym_LBRACE] = ACTIONS(5718), + [anon_sym_RBRACE] = ACTIONS(5718), + [anon_sym_signed] = ACTIONS(5716), + [anon_sym_unsigned] = ACTIONS(5716), + [anon_sym_long] = ACTIONS(5716), + [anon_sym_short] = ACTIONS(5716), + [anon_sym_LBRACK] = ACTIONS(5718), + [anon_sym_RBRACK] = ACTIONS(5718), + [anon_sym_const] = ACTIONS(5716), + [anon_sym_constexpr] = ACTIONS(5716), + [anon_sym_volatile] = ACTIONS(5716), + [anon_sym_restrict] = ACTIONS(5716), + [anon_sym___restrict__] = ACTIONS(5716), + [anon_sym__Atomic] = ACTIONS(5716), + [anon_sym__Noreturn] = ACTIONS(5716), + [anon_sym_noreturn] = ACTIONS(5716), + [anon_sym__Nonnull] = ACTIONS(5716), + [anon_sym_mutable] = ACTIONS(5716), + [anon_sym_constinit] = ACTIONS(5716), + [anon_sym_consteval] = ACTIONS(5716), + [anon_sym_alignas] = ACTIONS(5716), + [anon_sym__Alignas] = ACTIONS(5716), + [sym_primitive_type] = ACTIONS(5716), + [anon_sym_QMARK] = ACTIONS(5718), + [anon_sym_LT_EQ_GT] = ACTIONS(5718), + [anon_sym_or] = ACTIONS(5716), + [anon_sym_and] = ACTIONS(5716), + [anon_sym_bitor] = ACTIONS(5716), + [anon_sym_xor] = ACTIONS(5716), + [anon_sym_bitand] = ACTIONS(5716), + [anon_sym_not_eq] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5718), + [anon_sym_PLUS_PLUS] = ACTIONS(5718), + [anon_sym_DOT] = ACTIONS(5716), + [anon_sym_DOT_STAR] = ACTIONS(5718), + [anon_sym_DASH_GT] = ACTIONS(5718), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5716), + [anon_sym_decltype] = ACTIONS(5716), + [anon_sym_final] = ACTIONS(5716), + [anon_sym_override] = ACTIONS(5716), + [anon_sym_requires] = ACTIONS(5716), }, - [1862] = { - [sym_catch_clause] = STATE(1890), - [aux_sym_constructor_try_statement_repeat1] = STATE(1890), - [sym_identifier] = ACTIONS(2547), - [aux_sym_preproc_def_token1] = ACTIONS(2547), - [aux_sym_preproc_if_token1] = ACTIONS(2547), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2547), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2547), - [sym_preproc_directive] = ACTIONS(2547), - [anon_sym_LPAREN2] = ACTIONS(2549), - [anon_sym_TILDE] = ACTIONS(2549), - [anon_sym_STAR] = ACTIONS(2549), - [anon_sym_AMP_AMP] = ACTIONS(2549), - [anon_sym_AMP] = ACTIONS(2547), - [anon_sym_SEMI] = ACTIONS(2549), - [anon_sym___extension__] = ACTIONS(2547), - [anon_sym_typedef] = ACTIONS(2547), - [anon_sym_virtual] = ACTIONS(2547), - [anon_sym_extern] = ACTIONS(2547), - [anon_sym___attribute__] = ACTIONS(2547), - [anon_sym___attribute] = ACTIONS(2547), - [anon_sym_using] = ACTIONS(2547), - [anon_sym_COLON_COLON] = ACTIONS(2549), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2549), - [anon_sym___declspec] = ACTIONS(2547), - [anon_sym___based] = ACTIONS(2547), - [anon_sym_RBRACE] = ACTIONS(2549), - [anon_sym_signed] = ACTIONS(2547), - [anon_sym_unsigned] = ACTIONS(2547), - [anon_sym_long] = ACTIONS(2547), - [anon_sym_short] = ACTIONS(2547), - [anon_sym_LBRACK] = ACTIONS(2547), - [anon_sym_static] = ACTIONS(2547), - [anon_sym_register] = ACTIONS(2547), - [anon_sym_inline] = ACTIONS(2547), - [anon_sym___inline] = ACTIONS(2547), - [anon_sym___inline__] = ACTIONS(2547), - [anon_sym___forceinline] = ACTIONS(2547), - [anon_sym_thread_local] = ACTIONS(2547), - [anon_sym___thread] = ACTIONS(2547), - [anon_sym_const] = ACTIONS(2547), - [anon_sym_constexpr] = ACTIONS(2547), - [anon_sym_volatile] = ACTIONS(2547), - [anon_sym_restrict] = ACTIONS(2547), - [anon_sym___restrict__] = ACTIONS(2547), - [anon_sym__Atomic] = ACTIONS(2547), - [anon_sym__Noreturn] = ACTIONS(2547), - [anon_sym_noreturn] = ACTIONS(2547), - [anon_sym__Nonnull] = ACTIONS(2547), - [anon_sym_mutable] = ACTIONS(2547), - [anon_sym_constinit] = ACTIONS(2547), - [anon_sym_consteval] = ACTIONS(2547), - [anon_sym_alignas] = ACTIONS(2547), - [anon_sym__Alignas] = ACTIONS(2547), - [sym_primitive_type] = ACTIONS(2547), - [anon_sym_enum] = ACTIONS(2547), - [anon_sym_class] = ACTIONS(2547), - [anon_sym_struct] = ACTIONS(2547), - [anon_sym_union] = ACTIONS(2547), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2547), - [anon_sym_decltype] = ACTIONS(2547), - [anon_sym_explicit] = ACTIONS(2547), - [anon_sym_typename] = ACTIONS(2547), - [anon_sym_private] = ACTIONS(2547), - [anon_sym_template] = ACTIONS(2547), - [anon_sym_operator] = ACTIONS(2547), - [anon_sym_friend] = ACTIONS(2547), - [anon_sym_public] = ACTIONS(2547), - [anon_sym_protected] = ACTIONS(2547), - [anon_sym_static_assert] = ACTIONS(2547), - [anon_sym_catch] = ACTIONS(5671), + [1882] = { + [sym_identifier] = ACTIONS(5720), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5722), + [anon_sym_COMMA] = ACTIONS(5722), + [anon_sym_RPAREN] = ACTIONS(5722), + [anon_sym_LPAREN2] = ACTIONS(5722), + [anon_sym_DASH] = ACTIONS(5720), + [anon_sym_PLUS] = ACTIONS(5720), + [anon_sym_STAR] = ACTIONS(5722), + [anon_sym_SLASH] = ACTIONS(5720), + [anon_sym_PERCENT] = ACTIONS(5722), + [anon_sym_PIPE_PIPE] = ACTIONS(5722), + [anon_sym_AMP_AMP] = ACTIONS(5722), + [anon_sym_PIPE] = ACTIONS(5720), + [anon_sym_CARET] = ACTIONS(5722), + [anon_sym_AMP] = ACTIONS(5720), + [anon_sym_EQ_EQ] = ACTIONS(5722), + [anon_sym_BANG_EQ] = ACTIONS(5722), + [anon_sym_GT] = ACTIONS(5720), + [anon_sym_GT_EQ] = ACTIONS(5722), + [anon_sym_LT_EQ] = ACTIONS(5720), + [anon_sym_LT] = ACTIONS(5720), + [anon_sym_LT_LT] = ACTIONS(5722), + [anon_sym_GT_GT] = ACTIONS(5722), + [anon_sym_SEMI] = ACTIONS(5722), + [anon_sym___extension__] = ACTIONS(5720), + [anon_sym___attribute__] = ACTIONS(5720), + [anon_sym___attribute] = ACTIONS(5720), + [anon_sym_COLON] = ACTIONS(5722), + [anon_sym___based] = ACTIONS(5720), + [anon_sym_LBRACE] = ACTIONS(5722), + [anon_sym_RBRACE] = ACTIONS(5722), + [anon_sym_signed] = ACTIONS(5720), + [anon_sym_unsigned] = ACTIONS(5720), + [anon_sym_long] = ACTIONS(5720), + [anon_sym_short] = ACTIONS(5720), + [anon_sym_LBRACK] = ACTIONS(5722), + [anon_sym_RBRACK] = ACTIONS(5722), + [anon_sym_const] = ACTIONS(5720), + [anon_sym_constexpr] = ACTIONS(5720), + [anon_sym_volatile] = ACTIONS(5720), + [anon_sym_restrict] = ACTIONS(5720), + [anon_sym___restrict__] = ACTIONS(5720), + [anon_sym__Atomic] = ACTIONS(5720), + [anon_sym__Noreturn] = ACTIONS(5720), + [anon_sym_noreturn] = ACTIONS(5720), + [anon_sym__Nonnull] = ACTIONS(5720), + [anon_sym_mutable] = ACTIONS(5720), + [anon_sym_constinit] = ACTIONS(5720), + [anon_sym_consteval] = ACTIONS(5720), + [anon_sym_alignas] = ACTIONS(5720), + [anon_sym__Alignas] = ACTIONS(5720), + [sym_primitive_type] = ACTIONS(5720), + [anon_sym_QMARK] = ACTIONS(5722), + [anon_sym_LT_EQ_GT] = ACTIONS(5722), + [anon_sym_or] = ACTIONS(5720), + [anon_sym_and] = ACTIONS(5720), + [anon_sym_bitor] = ACTIONS(5720), + [anon_sym_xor] = ACTIONS(5720), + [anon_sym_bitand] = ACTIONS(5720), + [anon_sym_not_eq] = ACTIONS(5720), + [anon_sym_DASH_DASH] = ACTIONS(5722), + [anon_sym_PLUS_PLUS] = ACTIONS(5722), + [anon_sym_DOT] = ACTIONS(5720), + [anon_sym_DOT_STAR] = ACTIONS(5722), + [anon_sym_DASH_GT] = ACTIONS(5722), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5720), + [anon_sym_decltype] = ACTIONS(5720), + [anon_sym_final] = ACTIONS(5720), + [anon_sym_override] = ACTIONS(5720), + [anon_sym_requires] = ACTIONS(5720), }, - [1863] = { - [sym_string_literal] = STATE(2624), - [sym_template_argument_list] = STATE(3588), - [sym_raw_string_literal] = STATE(2624), - [sym_identifier] = ACTIONS(4154), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4146), - [anon_sym_COMMA] = ACTIONS(4146), - [aux_sym_preproc_if_token2] = ACTIONS(4146), - [aux_sym_preproc_else_token1] = ACTIONS(4146), - [aux_sym_preproc_elif_token1] = ACTIONS(4154), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4146), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4146), - [anon_sym_LPAREN2] = ACTIONS(4146), - [anon_sym_DASH] = ACTIONS(4154), - [anon_sym_PLUS] = ACTIONS(4154), - [anon_sym_STAR] = ACTIONS(4154), - [anon_sym_SLASH] = ACTIONS(4154), - [anon_sym_PERCENT] = ACTIONS(4154), - [anon_sym_PIPE_PIPE] = ACTIONS(4146), - [anon_sym_AMP_AMP] = ACTIONS(4146), - [anon_sym_PIPE] = ACTIONS(4154), - [anon_sym_CARET] = ACTIONS(4154), - [anon_sym_AMP] = ACTIONS(4154), - [anon_sym_EQ_EQ] = ACTIONS(4146), - [anon_sym_BANG_EQ] = ACTIONS(4146), - [anon_sym_GT] = ACTIONS(4154), - [anon_sym_GT_EQ] = ACTIONS(4146), - [anon_sym_LT_EQ] = ACTIONS(4154), - [anon_sym_LT] = ACTIONS(5721), - [anon_sym_LT_LT] = ACTIONS(4154), - [anon_sym_GT_GT] = ACTIONS(4154), - [anon_sym_COLON_COLON] = ACTIONS(4167), - [anon_sym_LBRACE] = ACTIONS(4172), - [anon_sym_LBRACK] = ACTIONS(4146), - [anon_sym_EQ] = ACTIONS(5724), - [anon_sym_QMARK] = ACTIONS(4146), - [anon_sym_STAR_EQ] = ACTIONS(5726), - [anon_sym_SLASH_EQ] = ACTIONS(5726), - [anon_sym_PERCENT_EQ] = ACTIONS(5726), - [anon_sym_PLUS_EQ] = ACTIONS(5726), - [anon_sym_DASH_EQ] = ACTIONS(5726), - [anon_sym_LT_LT_EQ] = ACTIONS(5726), - [anon_sym_GT_GT_EQ] = ACTIONS(5726), - [anon_sym_AMP_EQ] = ACTIONS(5726), - [anon_sym_CARET_EQ] = ACTIONS(5726), - [anon_sym_PIPE_EQ] = ACTIONS(5726), - [anon_sym_and_eq] = ACTIONS(5724), - [anon_sym_or_eq] = ACTIONS(5724), - [anon_sym_xor_eq] = ACTIONS(5724), - [anon_sym_LT_EQ_GT] = ACTIONS(4146), - [anon_sym_or] = ACTIONS(4154), - [anon_sym_and] = ACTIONS(4154), - [anon_sym_bitor] = ACTIONS(4154), - [anon_sym_xor] = ACTIONS(4154), - [anon_sym_bitand] = ACTIONS(4154), - [anon_sym_not_eq] = ACTIONS(4154), - [anon_sym_DASH_DASH] = ACTIONS(4146), - [anon_sym_PLUS_PLUS] = ACTIONS(4146), - [anon_sym_DOT] = ACTIONS(4154), - [anon_sym_DOT_STAR] = ACTIONS(4146), - [anon_sym_DASH_GT] = ACTIONS(4146), - [anon_sym_L_DQUOTE] = ACTIONS(3623), - [anon_sym_u_DQUOTE] = ACTIONS(3623), - [anon_sym_U_DQUOTE] = ACTIONS(3623), - [anon_sym_u8_DQUOTE] = ACTIONS(3623), - [anon_sym_DQUOTE] = ACTIONS(3623), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(3627), - [anon_sym_LR_DQUOTE] = ACTIONS(3627), - [anon_sym_uR_DQUOTE] = ACTIONS(3627), - [anon_sym_UR_DQUOTE] = ACTIONS(3627), - [anon_sym_u8R_DQUOTE] = ACTIONS(3627), + [1883] = { + [sym_identifier] = ACTIONS(5724), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5726), + [anon_sym_COMMA] = ACTIONS(5726), + [anon_sym_RPAREN] = ACTIONS(5726), + [anon_sym_LPAREN2] = ACTIONS(5726), + [anon_sym_DASH] = ACTIONS(5724), + [anon_sym_PLUS] = ACTIONS(5724), + [anon_sym_STAR] = ACTIONS(5726), + [anon_sym_SLASH] = ACTIONS(5724), + [anon_sym_PERCENT] = ACTIONS(5726), + [anon_sym_PIPE_PIPE] = ACTIONS(5726), + [anon_sym_AMP_AMP] = ACTIONS(5726), + [anon_sym_PIPE] = ACTIONS(5724), + [anon_sym_CARET] = ACTIONS(5726), + [anon_sym_AMP] = ACTIONS(5724), + [anon_sym_EQ_EQ] = ACTIONS(5726), + [anon_sym_BANG_EQ] = ACTIONS(5726), + [anon_sym_GT] = ACTIONS(5724), + [anon_sym_GT_EQ] = ACTIONS(5726), + [anon_sym_LT_EQ] = ACTIONS(5724), + [anon_sym_LT] = ACTIONS(5724), + [anon_sym_LT_LT] = ACTIONS(5726), + [anon_sym_GT_GT] = ACTIONS(5726), + [anon_sym_SEMI] = ACTIONS(5726), + [anon_sym___extension__] = ACTIONS(5724), + [anon_sym___attribute__] = ACTIONS(5724), + [anon_sym___attribute] = ACTIONS(5724), + [anon_sym_COLON] = ACTIONS(5726), + [anon_sym___based] = ACTIONS(5724), + [anon_sym_LBRACE] = ACTIONS(5726), + [anon_sym_RBRACE] = ACTIONS(5726), + [anon_sym_signed] = ACTIONS(5724), + [anon_sym_unsigned] = ACTIONS(5724), + [anon_sym_long] = ACTIONS(5724), + [anon_sym_short] = ACTIONS(5724), + [anon_sym_LBRACK] = ACTIONS(5726), + [anon_sym_RBRACK] = ACTIONS(5726), + [anon_sym_const] = ACTIONS(5724), + [anon_sym_constexpr] = ACTIONS(5724), + [anon_sym_volatile] = ACTIONS(5724), + [anon_sym_restrict] = ACTIONS(5724), + [anon_sym___restrict__] = ACTIONS(5724), + [anon_sym__Atomic] = ACTIONS(5724), + [anon_sym__Noreturn] = ACTIONS(5724), + [anon_sym_noreturn] = ACTIONS(5724), + [anon_sym__Nonnull] = ACTIONS(5724), + [anon_sym_mutable] = ACTIONS(5724), + [anon_sym_constinit] = ACTIONS(5724), + [anon_sym_consteval] = ACTIONS(5724), + [anon_sym_alignas] = ACTIONS(5724), + [anon_sym__Alignas] = ACTIONS(5724), + [sym_primitive_type] = ACTIONS(5724), + [anon_sym_QMARK] = ACTIONS(5726), + [anon_sym_LT_EQ_GT] = ACTIONS(5726), + [anon_sym_or] = ACTIONS(5724), + [anon_sym_and] = ACTIONS(5724), + [anon_sym_bitor] = ACTIONS(5724), + [anon_sym_xor] = ACTIONS(5724), + [anon_sym_bitand] = ACTIONS(5724), + [anon_sym_not_eq] = ACTIONS(5724), + [anon_sym_DASH_DASH] = ACTIONS(5726), + [anon_sym_PLUS_PLUS] = ACTIONS(5726), + [anon_sym_DOT] = ACTIONS(5724), + [anon_sym_DOT_STAR] = ACTIONS(5726), + [anon_sym_DASH_GT] = ACTIONS(5726), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5724), + [anon_sym_decltype] = ACTIONS(5724), + [anon_sym_final] = ACTIONS(5724), + [anon_sym_override] = ACTIONS(5724), + [anon_sym_requires] = ACTIONS(5724), }, - [1864] = { + [1884] = { [sym_identifier] = ACTIONS(5728), [anon_sym_DOT_DOT_DOT] = ACTIONS(5730), [anon_sym_COMMA] = ACTIONS(5730), @@ -259235,1905 +262279,3637 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_override] = ACTIONS(5728), [anon_sym_requires] = ACTIONS(5728), }, - [1865] = { - [sym_identifier] = ACTIONS(5732), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5734), - [anon_sym_COMMA] = ACTIONS(5734), - [anon_sym_RPAREN] = ACTIONS(5734), - [anon_sym_LPAREN2] = ACTIONS(5734), - [anon_sym_DASH] = ACTIONS(5732), - [anon_sym_PLUS] = ACTIONS(5732), - [anon_sym_STAR] = ACTIONS(5734), - [anon_sym_SLASH] = ACTIONS(5732), - [anon_sym_PERCENT] = ACTIONS(5734), - [anon_sym_PIPE_PIPE] = ACTIONS(5734), - [anon_sym_AMP_AMP] = ACTIONS(5734), - [anon_sym_PIPE] = ACTIONS(5732), - [anon_sym_CARET] = ACTIONS(5734), - [anon_sym_AMP] = ACTIONS(5732), - [anon_sym_EQ_EQ] = ACTIONS(5734), - [anon_sym_BANG_EQ] = ACTIONS(5734), - [anon_sym_GT] = ACTIONS(5732), - [anon_sym_GT_EQ] = ACTIONS(5734), - [anon_sym_LT_EQ] = ACTIONS(5732), - [anon_sym_LT] = ACTIONS(5732), - [anon_sym_LT_LT] = ACTIONS(5734), - [anon_sym_GT_GT] = ACTIONS(5734), - [anon_sym_SEMI] = ACTIONS(5734), - [anon_sym___extension__] = ACTIONS(5732), - [anon_sym___attribute__] = ACTIONS(5732), - [anon_sym___attribute] = ACTIONS(5732), - [anon_sym_COLON] = ACTIONS(5734), - [anon_sym___based] = ACTIONS(5732), - [anon_sym_LBRACE] = ACTIONS(5734), - [anon_sym_RBRACE] = ACTIONS(5734), - [anon_sym_signed] = ACTIONS(5732), - [anon_sym_unsigned] = ACTIONS(5732), - [anon_sym_long] = ACTIONS(5732), - [anon_sym_short] = ACTIONS(5732), - [anon_sym_LBRACK] = ACTIONS(5734), - [anon_sym_RBRACK] = ACTIONS(5734), - [anon_sym_const] = ACTIONS(5732), - [anon_sym_constexpr] = ACTIONS(5732), - [anon_sym_volatile] = ACTIONS(5732), - [anon_sym_restrict] = ACTIONS(5732), - [anon_sym___restrict__] = ACTIONS(5732), - [anon_sym__Atomic] = ACTIONS(5732), - [anon_sym__Noreturn] = ACTIONS(5732), - [anon_sym_noreturn] = ACTIONS(5732), - [anon_sym__Nonnull] = ACTIONS(5732), - [anon_sym_mutable] = ACTIONS(5732), - [anon_sym_constinit] = ACTIONS(5732), - [anon_sym_consteval] = ACTIONS(5732), - [anon_sym_alignas] = ACTIONS(5732), - [anon_sym__Alignas] = ACTIONS(5732), - [sym_primitive_type] = ACTIONS(5732), - [anon_sym_QMARK] = ACTIONS(5734), - [anon_sym_LT_EQ_GT] = ACTIONS(5734), - [anon_sym_or] = ACTIONS(5732), - [anon_sym_and] = ACTIONS(5732), - [anon_sym_bitor] = ACTIONS(5732), - [anon_sym_xor] = ACTIONS(5732), - [anon_sym_bitand] = ACTIONS(5732), - [anon_sym_not_eq] = ACTIONS(5732), - [anon_sym_DASH_DASH] = ACTIONS(5734), - [anon_sym_PLUS_PLUS] = ACTIONS(5734), - [anon_sym_DOT] = ACTIONS(5732), - [anon_sym_DOT_STAR] = ACTIONS(5734), - [anon_sym_DASH_GT] = ACTIONS(5734), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5732), - [anon_sym_decltype] = ACTIONS(5732), - [anon_sym_final] = ACTIONS(5732), - [anon_sym_override] = ACTIONS(5732), - [anon_sym_requires] = ACTIONS(5732), + [1885] = { + [sym_identifier] = ACTIONS(5720), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5722), + [anon_sym_COMMA] = ACTIONS(5722), + [anon_sym_RPAREN] = ACTIONS(5722), + [anon_sym_LPAREN2] = ACTIONS(5722), + [anon_sym_DASH] = ACTIONS(5720), + [anon_sym_PLUS] = ACTIONS(5720), + [anon_sym_STAR] = ACTIONS(5722), + [anon_sym_SLASH] = ACTIONS(5720), + [anon_sym_PERCENT] = ACTIONS(5722), + [anon_sym_PIPE_PIPE] = ACTIONS(5722), + [anon_sym_AMP_AMP] = ACTIONS(5722), + [anon_sym_PIPE] = ACTIONS(5720), + [anon_sym_CARET] = ACTIONS(5722), + [anon_sym_AMP] = ACTIONS(5720), + [anon_sym_EQ_EQ] = ACTIONS(5722), + [anon_sym_BANG_EQ] = ACTIONS(5722), + [anon_sym_GT] = ACTIONS(5720), + [anon_sym_GT_EQ] = ACTIONS(5722), + [anon_sym_LT_EQ] = ACTIONS(5720), + [anon_sym_LT] = ACTIONS(5720), + [anon_sym_LT_LT] = ACTIONS(5722), + [anon_sym_GT_GT] = ACTIONS(5722), + [anon_sym_SEMI] = ACTIONS(5722), + [anon_sym___extension__] = ACTIONS(5720), + [anon_sym___attribute__] = ACTIONS(5720), + [anon_sym___attribute] = ACTIONS(5720), + [anon_sym_COLON] = ACTIONS(5722), + [anon_sym___based] = ACTIONS(5720), + [anon_sym_LBRACE] = ACTIONS(5722), + [anon_sym_RBRACE] = ACTIONS(5722), + [anon_sym_signed] = ACTIONS(5720), + [anon_sym_unsigned] = ACTIONS(5720), + [anon_sym_long] = ACTIONS(5720), + [anon_sym_short] = ACTIONS(5720), + [anon_sym_LBRACK] = ACTIONS(5722), + [anon_sym_RBRACK] = ACTIONS(5722), + [anon_sym_const] = ACTIONS(5720), + [anon_sym_constexpr] = ACTIONS(5720), + [anon_sym_volatile] = ACTIONS(5720), + [anon_sym_restrict] = ACTIONS(5720), + [anon_sym___restrict__] = ACTIONS(5720), + [anon_sym__Atomic] = ACTIONS(5720), + [anon_sym__Noreturn] = ACTIONS(5720), + [anon_sym_noreturn] = ACTIONS(5720), + [anon_sym__Nonnull] = ACTIONS(5720), + [anon_sym_mutable] = ACTIONS(5720), + [anon_sym_constinit] = ACTIONS(5720), + [anon_sym_consteval] = ACTIONS(5720), + [anon_sym_alignas] = ACTIONS(5720), + [anon_sym__Alignas] = ACTIONS(5720), + [sym_primitive_type] = ACTIONS(5720), + [anon_sym_QMARK] = ACTIONS(5722), + [anon_sym_LT_EQ_GT] = ACTIONS(5722), + [anon_sym_or] = ACTIONS(5720), + [anon_sym_and] = ACTIONS(5720), + [anon_sym_bitor] = ACTIONS(5720), + [anon_sym_xor] = ACTIONS(5720), + [anon_sym_bitand] = ACTIONS(5720), + [anon_sym_not_eq] = ACTIONS(5720), + [anon_sym_DASH_DASH] = ACTIONS(5722), + [anon_sym_PLUS_PLUS] = ACTIONS(5722), + [anon_sym_DOT] = ACTIONS(5720), + [anon_sym_DOT_STAR] = ACTIONS(5722), + [anon_sym_DASH_GT] = ACTIONS(5722), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5720), + [anon_sym_decltype] = ACTIONS(5720), + [anon_sym_final] = ACTIONS(5720), + [anon_sym_override] = ACTIONS(5720), + [anon_sym_requires] = ACTIONS(5720), }, - [1866] = { - [sym_identifier] = ACTIONS(5736), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5738), - [anon_sym_COMMA] = ACTIONS(5738), - [anon_sym_RPAREN] = ACTIONS(5738), - [anon_sym_LPAREN2] = ACTIONS(5738), - [anon_sym_DASH] = ACTIONS(5736), - [anon_sym_PLUS] = ACTIONS(5736), - [anon_sym_STAR] = ACTIONS(5738), - [anon_sym_SLASH] = ACTIONS(5736), - [anon_sym_PERCENT] = ACTIONS(5738), - [anon_sym_PIPE_PIPE] = ACTIONS(5738), - [anon_sym_AMP_AMP] = ACTIONS(5738), - [anon_sym_PIPE] = ACTIONS(5736), - [anon_sym_CARET] = ACTIONS(5738), - [anon_sym_AMP] = ACTIONS(5736), - [anon_sym_EQ_EQ] = ACTIONS(5738), - [anon_sym_BANG_EQ] = ACTIONS(5738), - [anon_sym_GT] = ACTIONS(5736), - [anon_sym_GT_EQ] = ACTIONS(5738), - [anon_sym_LT_EQ] = ACTIONS(5736), - [anon_sym_LT] = ACTIONS(5736), - [anon_sym_LT_LT] = ACTIONS(5738), - [anon_sym_GT_GT] = ACTIONS(5738), - [anon_sym_SEMI] = ACTIONS(5738), - [anon_sym___extension__] = ACTIONS(5736), - [anon_sym___attribute__] = ACTIONS(5736), - [anon_sym___attribute] = ACTIONS(5736), - [anon_sym_COLON] = ACTIONS(5738), - [anon_sym___based] = ACTIONS(5736), - [anon_sym_LBRACE] = ACTIONS(5738), - [anon_sym_RBRACE] = ACTIONS(5738), - [anon_sym_signed] = ACTIONS(5736), - [anon_sym_unsigned] = ACTIONS(5736), - [anon_sym_long] = ACTIONS(5736), - [anon_sym_short] = ACTIONS(5736), - [anon_sym_LBRACK] = ACTIONS(5738), - [anon_sym_RBRACK] = ACTIONS(5738), - [anon_sym_const] = ACTIONS(5736), - [anon_sym_constexpr] = ACTIONS(5736), - [anon_sym_volatile] = ACTIONS(5736), - [anon_sym_restrict] = ACTIONS(5736), - [anon_sym___restrict__] = ACTIONS(5736), - [anon_sym__Atomic] = ACTIONS(5736), - [anon_sym__Noreturn] = ACTIONS(5736), - [anon_sym_noreturn] = ACTIONS(5736), - [anon_sym__Nonnull] = ACTIONS(5736), - [anon_sym_mutable] = ACTIONS(5736), - [anon_sym_constinit] = ACTIONS(5736), - [anon_sym_consteval] = ACTIONS(5736), - [anon_sym_alignas] = ACTIONS(5736), - [anon_sym__Alignas] = ACTIONS(5736), + [1886] = { + [sym_identifier] = ACTIONS(5720), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5722), + [anon_sym_COMMA] = ACTIONS(5722), + [anon_sym_RPAREN] = ACTIONS(5722), + [anon_sym_LPAREN2] = ACTIONS(5722), + [anon_sym_DASH] = ACTIONS(5720), + [anon_sym_PLUS] = ACTIONS(5720), + [anon_sym_STAR] = ACTIONS(5722), + [anon_sym_SLASH] = ACTIONS(5720), + [anon_sym_PERCENT] = ACTIONS(5722), + [anon_sym_PIPE_PIPE] = ACTIONS(5722), + [anon_sym_AMP_AMP] = ACTIONS(5722), + [anon_sym_PIPE] = ACTIONS(5720), + [anon_sym_CARET] = ACTIONS(5722), + [anon_sym_AMP] = ACTIONS(5720), + [anon_sym_EQ_EQ] = ACTIONS(5722), + [anon_sym_BANG_EQ] = ACTIONS(5722), + [anon_sym_GT] = ACTIONS(5720), + [anon_sym_GT_EQ] = ACTIONS(5722), + [anon_sym_LT_EQ] = ACTIONS(5720), + [anon_sym_LT] = ACTIONS(5720), + [anon_sym_LT_LT] = ACTIONS(5722), + [anon_sym_GT_GT] = ACTIONS(5722), + [anon_sym_SEMI] = ACTIONS(5722), + [anon_sym___extension__] = ACTIONS(5720), + [anon_sym___attribute__] = ACTIONS(5720), + [anon_sym___attribute] = ACTIONS(5720), + [anon_sym_COLON] = ACTIONS(5722), + [anon_sym___based] = ACTIONS(5720), + [anon_sym_LBRACE] = ACTIONS(5722), + [anon_sym_RBRACE] = ACTIONS(5722), + [anon_sym_signed] = ACTIONS(5720), + [anon_sym_unsigned] = ACTIONS(5720), + [anon_sym_long] = ACTIONS(5720), + [anon_sym_short] = ACTIONS(5720), + [anon_sym_LBRACK] = ACTIONS(5722), + [anon_sym_RBRACK] = ACTIONS(5722), + [anon_sym_const] = ACTIONS(5720), + [anon_sym_constexpr] = ACTIONS(5720), + [anon_sym_volatile] = ACTIONS(5720), + [anon_sym_restrict] = ACTIONS(5720), + [anon_sym___restrict__] = ACTIONS(5720), + [anon_sym__Atomic] = ACTIONS(5720), + [anon_sym__Noreturn] = ACTIONS(5720), + [anon_sym_noreturn] = ACTIONS(5720), + [anon_sym__Nonnull] = ACTIONS(5720), + [anon_sym_mutable] = ACTIONS(5720), + [anon_sym_constinit] = ACTIONS(5720), + [anon_sym_consteval] = ACTIONS(5720), + [anon_sym_alignas] = ACTIONS(5720), + [anon_sym__Alignas] = ACTIONS(5720), + [sym_primitive_type] = ACTIONS(5720), + [anon_sym_QMARK] = ACTIONS(5722), + [anon_sym_LT_EQ_GT] = ACTIONS(5722), + [anon_sym_or] = ACTIONS(5720), + [anon_sym_and] = ACTIONS(5720), + [anon_sym_bitor] = ACTIONS(5720), + [anon_sym_xor] = ACTIONS(5720), + [anon_sym_bitand] = ACTIONS(5720), + [anon_sym_not_eq] = ACTIONS(5720), + [anon_sym_DASH_DASH] = ACTIONS(5722), + [anon_sym_PLUS_PLUS] = ACTIONS(5722), + [anon_sym_DOT] = ACTIONS(5720), + [anon_sym_DOT_STAR] = ACTIONS(5722), + [anon_sym_DASH_GT] = ACTIONS(5722), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5720), + [anon_sym_decltype] = ACTIONS(5720), + [anon_sym_final] = ACTIONS(5720), + [anon_sym_override] = ACTIONS(5720), + [anon_sym_requires] = ACTIONS(5720), + }, + [1887] = { + [sym_type_qualifier] = STATE(1867), + [sym_alignas_qualifier] = STATE(1702), + [aux_sym__type_definition_type_repeat1] = STATE(1867), + [aux_sym_sized_type_specifier_repeat1] = STATE(2111), + [sym_identifier] = ACTIONS(5732), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5094), + [anon_sym_COMMA] = ACTIONS(5094), + [anon_sym_RPAREN] = ACTIONS(5094), + [anon_sym_LPAREN2] = ACTIONS(5094), + [anon_sym_DASH] = ACTIONS(5096), + [anon_sym_PLUS] = ACTIONS(5096), + [anon_sym_STAR] = ACTIONS(5094), + [anon_sym_SLASH] = ACTIONS(5096), + [anon_sym_PERCENT] = ACTIONS(5094), + [anon_sym_PIPE_PIPE] = ACTIONS(5094), + [anon_sym_AMP_AMP] = ACTIONS(5094), + [anon_sym_PIPE] = ACTIONS(5096), + [anon_sym_CARET] = ACTIONS(5094), + [anon_sym_AMP] = ACTIONS(5096), + [anon_sym_EQ_EQ] = ACTIONS(5094), + [anon_sym_BANG_EQ] = ACTIONS(5094), + [anon_sym_GT] = ACTIONS(5096), + [anon_sym_GT_EQ] = ACTIONS(5094), + [anon_sym_LT_EQ] = ACTIONS(5096), + [anon_sym_LT] = ACTIONS(5096), + [anon_sym_LT_LT] = ACTIONS(5094), + [anon_sym_GT_GT] = ACTIONS(5094), + [anon_sym_SEMI] = ACTIONS(5094), + [anon_sym___extension__] = ACTIONS(5652), + [anon_sym___attribute__] = ACTIONS(5096), + [anon_sym___attribute] = ACTIONS(5096), + [anon_sym_COLON] = ACTIONS(5094), + [anon_sym_LBRACE] = ACTIONS(5094), + [anon_sym_RBRACE] = ACTIONS(5094), + [anon_sym_signed] = ACTIONS(5734), + [anon_sym_unsigned] = ACTIONS(5734), + [anon_sym_long] = ACTIONS(5734), + [anon_sym_short] = ACTIONS(5734), + [anon_sym_LBRACK] = ACTIONS(5094), + [anon_sym_RBRACK] = ACTIONS(5094), + [anon_sym_const] = ACTIONS(5652), + [anon_sym_constexpr] = ACTIONS(5652), + [anon_sym_volatile] = ACTIONS(5652), + [anon_sym_restrict] = ACTIONS(5652), + [anon_sym___restrict__] = ACTIONS(5652), + [anon_sym__Atomic] = ACTIONS(5652), + [anon_sym__Noreturn] = ACTIONS(5652), + [anon_sym_noreturn] = ACTIONS(5652), + [anon_sym__Nonnull] = ACTIONS(5652), + [anon_sym_mutable] = ACTIONS(5652), + [anon_sym_constinit] = ACTIONS(5652), + [anon_sym_consteval] = ACTIONS(5652), + [anon_sym_alignas] = ACTIONS(5656), + [anon_sym__Alignas] = ACTIONS(5656), [sym_primitive_type] = ACTIONS(5736), - [anon_sym_QMARK] = ACTIONS(5738), - [anon_sym_LT_EQ_GT] = ACTIONS(5738), - [anon_sym_or] = ACTIONS(5736), - [anon_sym_and] = ACTIONS(5736), - [anon_sym_bitor] = ACTIONS(5736), - [anon_sym_xor] = ACTIONS(5736), - [anon_sym_bitand] = ACTIONS(5736), - [anon_sym_not_eq] = ACTIONS(5736), - [anon_sym_DASH_DASH] = ACTIONS(5738), - [anon_sym_PLUS_PLUS] = ACTIONS(5738), - [anon_sym_DOT] = ACTIONS(5736), - [anon_sym_DOT_STAR] = ACTIONS(5738), - [anon_sym_DASH_GT] = ACTIONS(5738), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5736), - [anon_sym_decltype] = ACTIONS(5736), - [anon_sym_final] = ACTIONS(5736), - [anon_sym_override] = ACTIONS(5736), - [anon_sym_requires] = ACTIONS(5736), + [anon_sym_QMARK] = ACTIONS(5094), + [anon_sym_LT_EQ_GT] = ACTIONS(5094), + [anon_sym_or] = ACTIONS(5096), + [anon_sym_and] = ACTIONS(5096), + [anon_sym_bitor] = ACTIONS(5096), + [anon_sym_xor] = ACTIONS(5096), + [anon_sym_bitand] = ACTIONS(5096), + [anon_sym_not_eq] = ACTIONS(5096), + [anon_sym_DASH_DASH] = ACTIONS(5094), + [anon_sym_PLUS_PLUS] = ACTIONS(5094), + [anon_sym_DOT] = ACTIONS(5096), + [anon_sym_DOT_STAR] = ACTIONS(5094), + [anon_sym_DASH_GT] = ACTIONS(5094), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5096), + [anon_sym_decltype] = ACTIONS(5096), }, - [1867] = { - [sym_identifier] = ACTIONS(5740), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5742), - [anon_sym_COMMA] = ACTIONS(5742), - [anon_sym_RPAREN] = ACTIONS(5742), - [anon_sym_LPAREN2] = ACTIONS(5742), - [anon_sym_DASH] = ACTIONS(5740), - [anon_sym_PLUS] = ACTIONS(5740), - [anon_sym_STAR] = ACTIONS(5742), - [anon_sym_SLASH] = ACTIONS(5740), - [anon_sym_PERCENT] = ACTIONS(5742), - [anon_sym_PIPE_PIPE] = ACTIONS(5742), - [anon_sym_AMP_AMP] = ACTIONS(5742), - [anon_sym_PIPE] = ACTIONS(5740), - [anon_sym_CARET] = ACTIONS(5742), - [anon_sym_AMP] = ACTIONS(5740), - [anon_sym_EQ_EQ] = ACTIONS(5742), - [anon_sym_BANG_EQ] = ACTIONS(5742), - [anon_sym_GT] = ACTIONS(5740), - [anon_sym_GT_EQ] = ACTIONS(5742), - [anon_sym_LT_EQ] = ACTIONS(5740), - [anon_sym_LT] = ACTIONS(5740), - [anon_sym_LT_LT] = ACTIONS(5742), - [anon_sym_GT_GT] = ACTIONS(5742), - [anon_sym_SEMI] = ACTIONS(5742), - [anon_sym___extension__] = ACTIONS(5740), - [anon_sym___attribute__] = ACTIONS(5740), - [anon_sym___attribute] = ACTIONS(5740), - [anon_sym_COLON] = ACTIONS(5742), - [anon_sym___based] = ACTIONS(5740), - [anon_sym_LBRACE] = ACTIONS(5742), - [anon_sym_RBRACE] = ACTIONS(5742), - [anon_sym_signed] = ACTIONS(5740), - [anon_sym_unsigned] = ACTIONS(5740), - [anon_sym_long] = ACTIONS(5740), - [anon_sym_short] = ACTIONS(5740), - [anon_sym_LBRACK] = ACTIONS(5742), - [anon_sym_RBRACK] = ACTIONS(5742), - [anon_sym_const] = ACTIONS(5740), - [anon_sym_constexpr] = ACTIONS(5740), - [anon_sym_volatile] = ACTIONS(5740), - [anon_sym_restrict] = ACTIONS(5740), - [anon_sym___restrict__] = ACTIONS(5740), - [anon_sym__Atomic] = ACTIONS(5740), - [anon_sym__Noreturn] = ACTIONS(5740), - [anon_sym_noreturn] = ACTIONS(5740), - [anon_sym__Nonnull] = ACTIONS(5740), - [anon_sym_mutable] = ACTIONS(5740), - [anon_sym_constinit] = ACTIONS(5740), - [anon_sym_consteval] = ACTIONS(5740), - [anon_sym_alignas] = ACTIONS(5740), - [anon_sym__Alignas] = ACTIONS(5740), - [sym_primitive_type] = ACTIONS(5740), - [anon_sym_QMARK] = ACTIONS(5742), - [anon_sym_LT_EQ_GT] = ACTIONS(5742), - [anon_sym_or] = ACTIONS(5740), - [anon_sym_and] = ACTIONS(5740), - [anon_sym_bitor] = ACTIONS(5740), - [anon_sym_xor] = ACTIONS(5740), - [anon_sym_bitand] = ACTIONS(5740), - [anon_sym_not_eq] = ACTIONS(5740), - [anon_sym_DASH_DASH] = ACTIONS(5742), - [anon_sym_PLUS_PLUS] = ACTIONS(5742), - [anon_sym_DOT] = ACTIONS(5740), - [anon_sym_DOT_STAR] = ACTIONS(5742), - [anon_sym_DASH_GT] = ACTIONS(5742), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5740), - [anon_sym_decltype] = ACTIONS(5740), - [anon_sym_final] = ACTIONS(5740), - [anon_sym_override] = ACTIONS(5740), - [anon_sym_requires] = ACTIONS(5740), + [1888] = { + [sym_identifier] = ACTIONS(5738), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5740), + [anon_sym_COMMA] = ACTIONS(5740), + [anon_sym_RPAREN] = ACTIONS(5740), + [anon_sym_LPAREN2] = ACTIONS(5740), + [anon_sym_DASH] = ACTIONS(5738), + [anon_sym_PLUS] = ACTIONS(5738), + [anon_sym_STAR] = ACTIONS(5740), + [anon_sym_SLASH] = ACTIONS(5738), + [anon_sym_PERCENT] = ACTIONS(5740), + [anon_sym_PIPE_PIPE] = ACTIONS(5740), + [anon_sym_AMP_AMP] = ACTIONS(5740), + [anon_sym_PIPE] = ACTIONS(5738), + [anon_sym_CARET] = ACTIONS(5740), + [anon_sym_AMP] = ACTIONS(5738), + [anon_sym_EQ_EQ] = ACTIONS(5740), + [anon_sym_BANG_EQ] = ACTIONS(5740), + [anon_sym_GT] = ACTIONS(5738), + [anon_sym_GT_EQ] = ACTIONS(5740), + [anon_sym_LT_EQ] = ACTIONS(5738), + [anon_sym_LT] = ACTIONS(5738), + [anon_sym_LT_LT] = ACTIONS(5740), + [anon_sym_GT_GT] = ACTIONS(5740), + [anon_sym_SEMI] = ACTIONS(5740), + [anon_sym___extension__] = ACTIONS(5738), + [anon_sym___attribute__] = ACTIONS(5738), + [anon_sym___attribute] = ACTIONS(5738), + [anon_sym_COLON] = ACTIONS(5740), + [anon_sym___based] = ACTIONS(5738), + [anon_sym_LBRACE] = ACTIONS(5740), + [anon_sym_RBRACE] = ACTIONS(5740), + [anon_sym_signed] = ACTIONS(5738), + [anon_sym_unsigned] = ACTIONS(5738), + [anon_sym_long] = ACTIONS(5738), + [anon_sym_short] = ACTIONS(5738), + [anon_sym_LBRACK] = ACTIONS(5740), + [anon_sym_RBRACK] = ACTIONS(5740), + [anon_sym_const] = ACTIONS(5738), + [anon_sym_constexpr] = ACTIONS(5738), + [anon_sym_volatile] = ACTIONS(5738), + [anon_sym_restrict] = ACTIONS(5738), + [anon_sym___restrict__] = ACTIONS(5738), + [anon_sym__Atomic] = ACTIONS(5738), + [anon_sym__Noreturn] = ACTIONS(5738), + [anon_sym_noreturn] = ACTIONS(5738), + [anon_sym__Nonnull] = ACTIONS(5738), + [anon_sym_mutable] = ACTIONS(5738), + [anon_sym_constinit] = ACTIONS(5738), + [anon_sym_consteval] = ACTIONS(5738), + [anon_sym_alignas] = ACTIONS(5738), + [anon_sym__Alignas] = ACTIONS(5738), + [sym_primitive_type] = ACTIONS(5738), + [anon_sym_QMARK] = ACTIONS(5740), + [anon_sym_LT_EQ_GT] = ACTIONS(5740), + [anon_sym_or] = ACTIONS(5738), + [anon_sym_and] = ACTIONS(5738), + [anon_sym_bitor] = ACTIONS(5738), + [anon_sym_xor] = ACTIONS(5738), + [anon_sym_bitand] = ACTIONS(5738), + [anon_sym_not_eq] = ACTIONS(5738), + [anon_sym_DASH_DASH] = ACTIONS(5740), + [anon_sym_PLUS_PLUS] = ACTIONS(5740), + [anon_sym_DOT] = ACTIONS(5738), + [anon_sym_DOT_STAR] = ACTIONS(5740), + [anon_sym_DASH_GT] = ACTIONS(5740), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5738), + [anon_sym_decltype] = ACTIONS(5738), + [anon_sym_final] = ACTIONS(5738), + [anon_sym_override] = ACTIONS(5738), + [anon_sym_requires] = ACTIONS(5738), }, - [1868] = { - [sym_identifier] = ACTIONS(2573), - [anon_sym_LPAREN2] = ACTIONS(2563), - [anon_sym_BANG] = ACTIONS(2563), - [anon_sym_TILDE] = ACTIONS(2563), - [anon_sym_DASH] = ACTIONS(2573), - [anon_sym_PLUS] = ACTIONS(2573), - [anon_sym_STAR] = ACTIONS(2563), - [anon_sym_AMP] = ACTIONS(2563), - [anon_sym___extension__] = ACTIONS(2573), - [anon_sym_COLON_COLON] = ACTIONS(2563), - [anon_sym_LBRACK] = ACTIONS(2563), - [anon_sym_static] = ACTIONS(2573), - [anon_sym_RBRACK] = ACTIONS(2563), - [anon_sym_const] = ACTIONS(2573), - [anon_sym_constexpr] = ACTIONS(2573), - [anon_sym_volatile] = ACTIONS(2573), - [anon_sym_restrict] = ACTIONS(2573), - [anon_sym___restrict__] = ACTIONS(2573), - [anon_sym__Atomic] = ACTIONS(2573), - [anon_sym__Noreturn] = ACTIONS(2573), - [anon_sym_noreturn] = ACTIONS(2573), - [anon_sym__Nonnull] = ACTIONS(2573), - [anon_sym_mutable] = ACTIONS(2573), - [anon_sym_constinit] = ACTIONS(2573), - [anon_sym_consteval] = ACTIONS(2573), - [anon_sym_alignas] = ACTIONS(2573), - [anon_sym__Alignas] = ACTIONS(2573), - [sym_primitive_type] = ACTIONS(2573), - [anon_sym_not] = ACTIONS(2573), - [anon_sym_compl] = ACTIONS(2573), - [anon_sym_DASH_DASH] = ACTIONS(2563), - [anon_sym_PLUS_PLUS] = ACTIONS(2563), - [anon_sym_sizeof] = ACTIONS(2573), - [anon_sym___alignof__] = ACTIONS(2573), - [anon_sym___alignof] = ACTIONS(2573), - [anon_sym__alignof] = ACTIONS(2573), - [anon_sym_alignof] = ACTIONS(2573), - [anon_sym__Alignof] = ACTIONS(2573), - [anon_sym_offsetof] = ACTIONS(2573), - [anon_sym__Generic] = ACTIONS(2573), - [anon_sym_asm] = ACTIONS(2573), - [anon_sym___asm__] = ACTIONS(2573), - [anon_sym___asm] = ACTIONS(2573), - [sym_number_literal] = ACTIONS(2563), - [anon_sym_L_SQUOTE] = ACTIONS(2563), - [anon_sym_u_SQUOTE] = ACTIONS(2563), - [anon_sym_U_SQUOTE] = ACTIONS(2563), - [anon_sym_u8_SQUOTE] = ACTIONS(2563), - [anon_sym_SQUOTE] = ACTIONS(2563), - [anon_sym_L_DQUOTE] = ACTIONS(2563), - [anon_sym_u_DQUOTE] = ACTIONS(2563), - [anon_sym_U_DQUOTE] = ACTIONS(2563), - [anon_sym_u8_DQUOTE] = ACTIONS(2563), - [anon_sym_DQUOTE] = ACTIONS(2563), - [sym_true] = ACTIONS(2573), - [sym_false] = ACTIONS(2573), - [anon_sym_NULL] = ACTIONS(2573), - [anon_sym_nullptr] = ACTIONS(2573), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2573), - [anon_sym_template] = ACTIONS(2573), - [anon_sym_delete] = ACTIONS(2573), - [anon_sym_R_DQUOTE] = ACTIONS(2563), - [anon_sym_LR_DQUOTE] = ACTIONS(2563), - [anon_sym_uR_DQUOTE] = ACTIONS(2563), - [anon_sym_UR_DQUOTE] = ACTIONS(2563), - [anon_sym_u8R_DQUOTE] = ACTIONS(2563), - [anon_sym_co_await] = ACTIONS(2573), - [anon_sym_new] = ACTIONS(2573), - [anon_sym_requires] = ACTIONS(2573), - [sym_this] = ACTIONS(2573), + [1889] = { + [sym_identifier] = ACTIONS(5742), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5744), + [anon_sym_COMMA] = ACTIONS(5744), + [anon_sym_RPAREN] = ACTIONS(5744), + [anon_sym_LPAREN2] = ACTIONS(5744), + [anon_sym_DASH] = ACTIONS(5742), + [anon_sym_PLUS] = ACTIONS(5742), + [anon_sym_STAR] = ACTIONS(5744), + [anon_sym_SLASH] = ACTIONS(5742), + [anon_sym_PERCENT] = ACTIONS(5744), + [anon_sym_PIPE_PIPE] = ACTIONS(5744), + [anon_sym_AMP_AMP] = ACTIONS(5744), + [anon_sym_PIPE] = ACTIONS(5742), + [anon_sym_CARET] = ACTIONS(5744), + [anon_sym_AMP] = ACTIONS(5742), + [anon_sym_EQ_EQ] = ACTIONS(5744), + [anon_sym_BANG_EQ] = ACTIONS(5744), + [anon_sym_GT] = ACTIONS(5742), + [anon_sym_GT_EQ] = ACTIONS(5744), + [anon_sym_LT_EQ] = ACTIONS(5742), + [anon_sym_LT] = ACTIONS(5742), + [anon_sym_LT_LT] = ACTIONS(5744), + [anon_sym_GT_GT] = ACTIONS(5744), + [anon_sym_SEMI] = ACTIONS(5744), + [anon_sym___extension__] = ACTIONS(5742), + [anon_sym___attribute__] = ACTIONS(5742), + [anon_sym___attribute] = ACTIONS(5742), + [anon_sym_COLON] = ACTIONS(5744), + [anon_sym___based] = ACTIONS(5742), + [anon_sym_LBRACE] = ACTIONS(5744), + [anon_sym_RBRACE] = ACTIONS(5744), + [anon_sym_signed] = ACTIONS(5742), + [anon_sym_unsigned] = ACTIONS(5742), + [anon_sym_long] = ACTIONS(5742), + [anon_sym_short] = ACTIONS(5742), + [anon_sym_LBRACK] = ACTIONS(5744), + [anon_sym_RBRACK] = ACTIONS(5744), + [anon_sym_const] = ACTIONS(5742), + [anon_sym_constexpr] = ACTIONS(5742), + [anon_sym_volatile] = ACTIONS(5742), + [anon_sym_restrict] = ACTIONS(5742), + [anon_sym___restrict__] = ACTIONS(5742), + [anon_sym__Atomic] = ACTIONS(5742), + [anon_sym__Noreturn] = ACTIONS(5742), + [anon_sym_noreturn] = ACTIONS(5742), + [anon_sym__Nonnull] = ACTIONS(5742), + [anon_sym_mutable] = ACTIONS(5742), + [anon_sym_constinit] = ACTIONS(5742), + [anon_sym_consteval] = ACTIONS(5742), + [anon_sym_alignas] = ACTIONS(5742), + [anon_sym__Alignas] = ACTIONS(5742), + [sym_primitive_type] = ACTIONS(5742), + [anon_sym_QMARK] = ACTIONS(5744), + [anon_sym_LT_EQ_GT] = ACTIONS(5744), + [anon_sym_or] = ACTIONS(5742), + [anon_sym_and] = ACTIONS(5742), + [anon_sym_bitor] = ACTIONS(5742), + [anon_sym_xor] = ACTIONS(5742), + [anon_sym_bitand] = ACTIONS(5742), + [anon_sym_not_eq] = ACTIONS(5742), + [anon_sym_DASH_DASH] = ACTIONS(5744), + [anon_sym_PLUS_PLUS] = ACTIONS(5744), + [anon_sym_DOT] = ACTIONS(5742), + [anon_sym_DOT_STAR] = ACTIONS(5744), + [anon_sym_DASH_GT] = ACTIONS(5744), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5742), + [anon_sym_decltype] = ACTIONS(5742), + [anon_sym_final] = ACTIONS(5742), + [anon_sym_override] = ACTIONS(5742), + [anon_sym_requires] = ACTIONS(5742), }, - [1869] = { - [sym_type_qualifier] = STATE(1889), - [sym_alignas_qualifier] = STATE(1695), - [aux_sym__type_definition_type_repeat1] = STATE(1889), - [aux_sym_sized_type_specifier_repeat1] = STATE(2159), - [sym_identifier] = ACTIONS(5744), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5086), - [anon_sym_COMMA] = ACTIONS(5086), - [anon_sym_RPAREN] = ACTIONS(5086), - [anon_sym_LPAREN2] = ACTIONS(5086), - [anon_sym_DASH] = ACTIONS(5088), - [anon_sym_PLUS] = ACTIONS(5088), - [anon_sym_STAR] = ACTIONS(5086), - [anon_sym_SLASH] = ACTIONS(5088), - [anon_sym_PERCENT] = ACTIONS(5086), - [anon_sym_PIPE_PIPE] = ACTIONS(5086), - [anon_sym_AMP_AMP] = ACTIONS(5086), - [anon_sym_PIPE] = ACTIONS(5088), - [anon_sym_CARET] = ACTIONS(5086), - [anon_sym_AMP] = ACTIONS(5088), - [anon_sym_EQ_EQ] = ACTIONS(5086), - [anon_sym_BANG_EQ] = ACTIONS(5086), - [anon_sym_GT] = ACTIONS(5088), - [anon_sym_GT_EQ] = ACTIONS(5086), - [anon_sym_LT_EQ] = ACTIONS(5088), - [anon_sym_LT] = ACTIONS(5088), - [anon_sym_LT_LT] = ACTIONS(5086), - [anon_sym_GT_GT] = ACTIONS(5086), - [anon_sym_SEMI] = ACTIONS(5086), - [anon_sym___extension__] = ACTIONS(5706), - [anon_sym___attribute__] = ACTIONS(5088), - [anon_sym___attribute] = ACTIONS(5088), - [anon_sym_COLON] = ACTIONS(5086), - [anon_sym_LBRACE] = ACTIONS(5086), - [anon_sym_RBRACE] = ACTIONS(5086), - [anon_sym_signed] = ACTIONS(5746), - [anon_sym_unsigned] = ACTIONS(5746), - [anon_sym_long] = ACTIONS(5746), - [anon_sym_short] = ACTIONS(5746), - [anon_sym_LBRACK] = ACTIONS(5086), - [anon_sym_RBRACK] = ACTIONS(5086), - [anon_sym_const] = ACTIONS(5706), - [anon_sym_constexpr] = ACTIONS(5706), - [anon_sym_volatile] = ACTIONS(5706), - [anon_sym_restrict] = ACTIONS(5706), - [anon_sym___restrict__] = ACTIONS(5706), - [anon_sym__Atomic] = ACTIONS(5706), - [anon_sym__Noreturn] = ACTIONS(5706), - [anon_sym_noreturn] = ACTIONS(5706), - [anon_sym__Nonnull] = ACTIONS(5706), - [anon_sym_mutable] = ACTIONS(5706), - [anon_sym_constinit] = ACTIONS(5706), - [anon_sym_consteval] = ACTIONS(5706), - [anon_sym_alignas] = ACTIONS(5710), - [anon_sym__Alignas] = ACTIONS(5710), - [sym_primitive_type] = ACTIONS(5748), - [anon_sym_QMARK] = ACTIONS(5086), - [anon_sym_LT_EQ_GT] = ACTIONS(5086), - [anon_sym_or] = ACTIONS(5088), - [anon_sym_and] = ACTIONS(5088), - [anon_sym_bitor] = ACTIONS(5088), - [anon_sym_xor] = ACTIONS(5088), - [anon_sym_bitand] = ACTIONS(5088), - [anon_sym_not_eq] = ACTIONS(5088), - [anon_sym_DASH_DASH] = ACTIONS(5086), - [anon_sym_PLUS_PLUS] = ACTIONS(5086), - [anon_sym_DOT] = ACTIONS(5088), - [anon_sym_DOT_STAR] = ACTIONS(5086), - [anon_sym_DASH_GT] = ACTIONS(5086), + [1890] = { + [sym_identifier] = ACTIONS(5515), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5517), + [anon_sym_COMMA] = ACTIONS(5517), + [anon_sym_RPAREN] = ACTIONS(5517), + [anon_sym_LPAREN2] = ACTIONS(5517), + [anon_sym_DASH] = ACTIONS(5515), + [anon_sym_PLUS] = ACTIONS(5515), + [anon_sym_STAR] = ACTIONS(5517), + [anon_sym_SLASH] = ACTIONS(5515), + [anon_sym_PERCENT] = ACTIONS(5517), + [anon_sym_PIPE_PIPE] = ACTIONS(5517), + [anon_sym_AMP_AMP] = ACTIONS(5517), + [anon_sym_PIPE] = ACTIONS(5515), + [anon_sym_CARET] = ACTIONS(5517), + [anon_sym_AMP] = ACTIONS(5515), + [anon_sym_EQ_EQ] = ACTIONS(5517), + [anon_sym_BANG_EQ] = ACTIONS(5517), + [anon_sym_GT] = ACTIONS(5515), + [anon_sym_GT_EQ] = ACTIONS(5517), + [anon_sym_LT_EQ] = ACTIONS(5515), + [anon_sym_LT] = ACTIONS(5515), + [anon_sym_LT_LT] = ACTIONS(5517), + [anon_sym_GT_GT] = ACTIONS(5517), + [anon_sym_SEMI] = ACTIONS(5517), + [anon_sym___extension__] = ACTIONS(5515), + [anon_sym___attribute__] = ACTIONS(5515), + [anon_sym___attribute] = ACTIONS(5515), + [anon_sym_COLON] = ACTIONS(5517), + [anon_sym___based] = ACTIONS(5515), + [anon_sym_LBRACE] = ACTIONS(5517), + [anon_sym_RBRACE] = ACTIONS(5517), + [anon_sym_signed] = ACTIONS(5515), + [anon_sym_unsigned] = ACTIONS(5515), + [anon_sym_long] = ACTIONS(5515), + [anon_sym_short] = ACTIONS(5515), + [anon_sym_LBRACK] = ACTIONS(5517), + [anon_sym_RBRACK] = ACTIONS(5517), + [anon_sym_const] = ACTIONS(5515), + [anon_sym_constexpr] = ACTIONS(5515), + [anon_sym_volatile] = ACTIONS(5515), + [anon_sym_restrict] = ACTIONS(5515), + [anon_sym___restrict__] = ACTIONS(5515), + [anon_sym__Atomic] = ACTIONS(5515), + [anon_sym__Noreturn] = ACTIONS(5515), + [anon_sym_noreturn] = ACTIONS(5515), + [anon_sym__Nonnull] = ACTIONS(5515), + [anon_sym_mutable] = ACTIONS(5515), + [anon_sym_constinit] = ACTIONS(5515), + [anon_sym_consteval] = ACTIONS(5515), + [anon_sym_alignas] = ACTIONS(5515), + [anon_sym__Alignas] = ACTIONS(5515), + [sym_primitive_type] = ACTIONS(5515), + [anon_sym_QMARK] = ACTIONS(5517), + [anon_sym_LT_EQ_GT] = ACTIONS(5517), + [anon_sym_or] = ACTIONS(5515), + [anon_sym_and] = ACTIONS(5515), + [anon_sym_bitor] = ACTIONS(5515), + [anon_sym_xor] = ACTIONS(5515), + [anon_sym_bitand] = ACTIONS(5515), + [anon_sym_not_eq] = ACTIONS(5515), + [anon_sym_DASH_DASH] = ACTIONS(5517), + [anon_sym_PLUS_PLUS] = ACTIONS(5517), + [anon_sym_DOT] = ACTIONS(5515), + [anon_sym_DOT_STAR] = ACTIONS(5517), + [anon_sym_DASH_GT] = ACTIONS(5517), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5515), + [anon_sym_decltype] = ACTIONS(5515), + [anon_sym_final] = ACTIONS(5515), + [anon_sym_override] = ACTIONS(5515), + [anon_sym_requires] = ACTIONS(5515), + }, + [1891] = { + [sym_string_literal] = STATE(2657), + [sym_template_argument_list] = STATE(3605), + [sym_raw_string_literal] = STATE(2657), + [sym_identifier] = ACTIONS(4174), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4166), + [anon_sym_COMMA] = ACTIONS(4166), + [aux_sym_preproc_if_token2] = ACTIONS(4166), + [aux_sym_preproc_else_token1] = ACTIONS(4166), + [aux_sym_preproc_elif_token1] = ACTIONS(4174), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4166), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4166), + [anon_sym_LPAREN2] = ACTIONS(4166), + [anon_sym_DASH] = ACTIONS(4174), + [anon_sym_PLUS] = ACTIONS(4174), + [anon_sym_STAR] = ACTIONS(4174), + [anon_sym_SLASH] = ACTIONS(4174), + [anon_sym_PERCENT] = ACTIONS(4174), + [anon_sym_PIPE_PIPE] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4166), + [anon_sym_PIPE] = ACTIONS(4174), + [anon_sym_CARET] = ACTIONS(4174), + [anon_sym_AMP] = ACTIONS(4174), + [anon_sym_EQ_EQ] = ACTIONS(4166), + [anon_sym_BANG_EQ] = ACTIONS(4166), + [anon_sym_GT] = ACTIONS(4174), + [anon_sym_GT_EQ] = ACTIONS(4166), + [anon_sym_LT_EQ] = ACTIONS(4174), + [anon_sym_LT] = ACTIONS(5746), + [anon_sym_LT_LT] = ACTIONS(4174), + [anon_sym_GT_GT] = ACTIONS(4174), + [anon_sym_COLON_COLON] = ACTIONS(4187), + [anon_sym_LBRACE] = ACTIONS(4192), + [anon_sym_LBRACK] = ACTIONS(4166), + [anon_sym_EQ] = ACTIONS(5749), + [anon_sym_QMARK] = ACTIONS(4166), + [anon_sym_STAR_EQ] = ACTIONS(5751), + [anon_sym_SLASH_EQ] = ACTIONS(5751), + [anon_sym_PERCENT_EQ] = ACTIONS(5751), + [anon_sym_PLUS_EQ] = ACTIONS(5751), + [anon_sym_DASH_EQ] = ACTIONS(5751), + [anon_sym_LT_LT_EQ] = ACTIONS(5751), + [anon_sym_GT_GT_EQ] = ACTIONS(5751), + [anon_sym_AMP_EQ] = ACTIONS(5751), + [anon_sym_CARET_EQ] = ACTIONS(5751), + [anon_sym_PIPE_EQ] = ACTIONS(5751), + [anon_sym_and_eq] = ACTIONS(5749), + [anon_sym_or_eq] = ACTIONS(5749), + [anon_sym_xor_eq] = ACTIONS(5749), + [anon_sym_LT_EQ_GT] = ACTIONS(4166), + [anon_sym_or] = ACTIONS(4174), + [anon_sym_and] = ACTIONS(4174), + [anon_sym_bitor] = ACTIONS(4174), + [anon_sym_xor] = ACTIONS(4174), + [anon_sym_bitand] = ACTIONS(4174), + [anon_sym_not_eq] = ACTIONS(4174), + [anon_sym_DASH_DASH] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4174), + [anon_sym_DOT_STAR] = ACTIONS(4166), + [anon_sym_DASH_GT] = ACTIONS(4166), + [anon_sym_L_DQUOTE] = ACTIONS(3631), + [anon_sym_u_DQUOTE] = ACTIONS(3631), + [anon_sym_U_DQUOTE] = ACTIONS(3631), + [anon_sym_u8_DQUOTE] = ACTIONS(3631), + [anon_sym_DQUOTE] = ACTIONS(3631), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3635), + [anon_sym_LR_DQUOTE] = ACTIONS(3635), + [anon_sym_uR_DQUOTE] = ACTIONS(3635), + [anon_sym_UR_DQUOTE] = ACTIONS(3635), + [anon_sym_u8R_DQUOTE] = ACTIONS(3635), + }, + [1892] = { + [sym_identifier] = ACTIONS(5753), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5755), + [anon_sym_COMMA] = ACTIONS(5755), + [anon_sym_RPAREN] = ACTIONS(5755), + [anon_sym_LPAREN2] = ACTIONS(5755), + [anon_sym_DASH] = ACTIONS(5753), + [anon_sym_PLUS] = ACTIONS(5753), + [anon_sym_STAR] = ACTIONS(5755), + [anon_sym_SLASH] = ACTIONS(5753), + [anon_sym_PERCENT] = ACTIONS(5755), + [anon_sym_PIPE_PIPE] = ACTIONS(5755), + [anon_sym_AMP_AMP] = ACTIONS(5755), + [anon_sym_PIPE] = ACTIONS(5753), + [anon_sym_CARET] = ACTIONS(5755), + [anon_sym_AMP] = ACTIONS(5753), + [anon_sym_EQ_EQ] = ACTIONS(5755), + [anon_sym_BANG_EQ] = ACTIONS(5755), + [anon_sym_GT] = ACTIONS(5753), + [anon_sym_GT_EQ] = ACTIONS(5755), + [anon_sym_LT_EQ] = ACTIONS(5753), + [anon_sym_LT] = ACTIONS(5753), + [anon_sym_LT_LT] = ACTIONS(5755), + [anon_sym_GT_GT] = ACTIONS(5755), + [anon_sym_SEMI] = ACTIONS(5755), + [anon_sym___extension__] = ACTIONS(5753), + [anon_sym___attribute__] = ACTIONS(5753), + [anon_sym___attribute] = ACTIONS(5753), + [anon_sym_COLON] = ACTIONS(5755), + [anon_sym___based] = ACTIONS(5753), + [anon_sym_LBRACE] = ACTIONS(5755), + [anon_sym_RBRACE] = ACTIONS(5755), + [anon_sym_signed] = ACTIONS(5753), + [anon_sym_unsigned] = ACTIONS(5753), + [anon_sym_long] = ACTIONS(5753), + [anon_sym_short] = ACTIONS(5753), + [anon_sym_LBRACK] = ACTIONS(5755), + [anon_sym_RBRACK] = ACTIONS(5755), + [anon_sym_const] = ACTIONS(5753), + [anon_sym_constexpr] = ACTIONS(5753), + [anon_sym_volatile] = ACTIONS(5753), + [anon_sym_restrict] = ACTIONS(5753), + [anon_sym___restrict__] = ACTIONS(5753), + [anon_sym__Atomic] = ACTIONS(5753), + [anon_sym__Noreturn] = ACTIONS(5753), + [anon_sym_noreturn] = ACTIONS(5753), + [anon_sym__Nonnull] = ACTIONS(5753), + [anon_sym_mutable] = ACTIONS(5753), + [anon_sym_constinit] = ACTIONS(5753), + [anon_sym_consteval] = ACTIONS(5753), + [anon_sym_alignas] = ACTIONS(5753), + [anon_sym__Alignas] = ACTIONS(5753), + [sym_primitive_type] = ACTIONS(5753), + [anon_sym_QMARK] = ACTIONS(5755), + [anon_sym_LT_EQ_GT] = ACTIONS(5755), + [anon_sym_or] = ACTIONS(5753), + [anon_sym_and] = ACTIONS(5753), + [anon_sym_bitor] = ACTIONS(5753), + [anon_sym_xor] = ACTIONS(5753), + [anon_sym_bitand] = ACTIONS(5753), + [anon_sym_not_eq] = ACTIONS(5753), + [anon_sym_DASH_DASH] = ACTIONS(5755), + [anon_sym_PLUS_PLUS] = ACTIONS(5755), + [anon_sym_DOT] = ACTIONS(5753), + [anon_sym_DOT_STAR] = ACTIONS(5755), + [anon_sym_DASH_GT] = ACTIONS(5755), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5753), + [anon_sym_decltype] = ACTIONS(5753), + [anon_sym_final] = ACTIONS(5753), + [anon_sym_override] = ACTIONS(5753), + [anon_sym_requires] = ACTIONS(5753), + }, + [1893] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(4986), + [anon_sym_COMMA] = ACTIONS(4986), + [anon_sym_RPAREN] = ACTIONS(4988), + [anon_sym_LPAREN2] = ACTIONS(4988), + [anon_sym_DASH] = ACTIONS(4993), + [anon_sym_PLUS] = ACTIONS(4993), + [anon_sym_STAR] = ACTIONS(4995), + [anon_sym_SLASH] = ACTIONS(4993), + [anon_sym_PERCENT] = ACTIONS(4993), + [anon_sym_PIPE_PIPE] = ACTIONS(4986), + [anon_sym_AMP_AMP] = ACTIONS(4988), + [anon_sym_PIPE] = ACTIONS(4993), + [anon_sym_CARET] = ACTIONS(4993), + [anon_sym_AMP] = ACTIONS(4995), + [anon_sym_EQ_EQ] = ACTIONS(4986), + [anon_sym_BANG_EQ] = ACTIONS(4986), + [anon_sym_GT] = ACTIONS(4993), + [anon_sym_GT_EQ] = ACTIONS(4986), + [anon_sym_LT_EQ] = ACTIONS(4993), + [anon_sym_LT] = ACTIONS(4993), + [anon_sym_LT_LT] = ACTIONS(4993), + [anon_sym_GT_GT] = ACTIONS(4993), + [anon_sym___extension__] = ACTIONS(4991), + [anon_sym_COLON_COLON] = ACTIONS(4991), + [anon_sym_LBRACE] = ACTIONS(4991), + [anon_sym_LBRACK] = ACTIONS(4988), + [anon_sym_EQ] = ACTIONS(4993), + [anon_sym_const] = ACTIONS(4984), + [anon_sym_constexpr] = ACTIONS(4991), + [anon_sym_volatile] = ACTIONS(4991), + [anon_sym_restrict] = ACTIONS(4991), + [anon_sym___restrict__] = ACTIONS(4991), + [anon_sym__Atomic] = ACTIONS(4991), + [anon_sym__Noreturn] = ACTIONS(4991), + [anon_sym_noreturn] = ACTIONS(4991), + [anon_sym__Nonnull] = ACTIONS(4991), + [anon_sym_mutable] = ACTIONS(4991), + [anon_sym_constinit] = ACTIONS(4991), + [anon_sym_consteval] = ACTIONS(4991), + [anon_sym_alignas] = ACTIONS(4991), + [anon_sym__Alignas] = ACTIONS(4991), + [anon_sym_QMARK] = ACTIONS(4986), + [anon_sym_STAR_EQ] = ACTIONS(4986), + [anon_sym_SLASH_EQ] = ACTIONS(4986), + [anon_sym_PERCENT_EQ] = ACTIONS(4986), + [anon_sym_PLUS_EQ] = ACTIONS(4986), + [anon_sym_DASH_EQ] = ACTIONS(4986), + [anon_sym_LT_LT_EQ] = ACTIONS(4986), + [anon_sym_GT_GT_EQ] = ACTIONS(4986), + [anon_sym_AMP_EQ] = ACTIONS(4986), + [anon_sym_CARET_EQ] = ACTIONS(4986), + [anon_sym_PIPE_EQ] = ACTIONS(4986), + [anon_sym_and_eq] = ACTIONS(4986), + [anon_sym_or_eq] = ACTIONS(4986), + [anon_sym_xor_eq] = ACTIONS(4986), + [anon_sym_LT_EQ_GT] = ACTIONS(4986), + [anon_sym_or] = ACTIONS(4993), + [anon_sym_and] = ACTIONS(4993), + [anon_sym_bitor] = ACTIONS(4986), + [anon_sym_xor] = ACTIONS(4993), + [anon_sym_bitand] = ACTIONS(4986), + [anon_sym_not_eq] = ACTIONS(4986), + [anon_sym_DASH_DASH] = ACTIONS(4986), + [anon_sym_PLUS_PLUS] = ACTIONS(4986), + [anon_sym_DOT] = ACTIONS(4993), + [anon_sym_DOT_STAR] = ACTIONS(4986), + [anon_sym_DASH_GT] = ACTIONS(4993), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5088), - [anon_sym_decltype] = ACTIONS(5088), + [sym_auto] = ACTIONS(4991), + [anon_sym_decltype] = ACTIONS(4991), + [anon_sym_DASH_GT_STAR] = ACTIONS(4986), }, - [1870] = { - [sym_identifier] = ACTIONS(5750), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5752), - [anon_sym_COMMA] = ACTIONS(5752), - [anon_sym_RPAREN] = ACTIONS(5752), - [anon_sym_LPAREN2] = ACTIONS(5752), - [anon_sym_DASH] = ACTIONS(5750), - [anon_sym_PLUS] = ACTIONS(5750), - [anon_sym_STAR] = ACTIONS(5752), - [anon_sym_SLASH] = ACTIONS(5750), - [anon_sym_PERCENT] = ACTIONS(5752), - [anon_sym_PIPE_PIPE] = ACTIONS(5752), - [anon_sym_AMP_AMP] = ACTIONS(5752), - [anon_sym_PIPE] = ACTIONS(5750), - [anon_sym_CARET] = ACTIONS(5752), - [anon_sym_AMP] = ACTIONS(5750), - [anon_sym_EQ_EQ] = ACTIONS(5752), - [anon_sym_BANG_EQ] = ACTIONS(5752), - [anon_sym_GT] = ACTIONS(5750), - [anon_sym_GT_EQ] = ACTIONS(5752), - [anon_sym_LT_EQ] = ACTIONS(5750), - [anon_sym_LT] = ACTIONS(5750), - [anon_sym_LT_LT] = ACTIONS(5752), - [anon_sym_GT_GT] = ACTIONS(5752), - [anon_sym_SEMI] = ACTIONS(5752), - [anon_sym___extension__] = ACTIONS(5750), - [anon_sym___attribute__] = ACTIONS(5750), - [anon_sym___attribute] = ACTIONS(5750), - [anon_sym_COLON] = ACTIONS(5752), - [anon_sym___based] = ACTIONS(5750), - [anon_sym_LBRACE] = ACTIONS(5752), - [anon_sym_RBRACE] = ACTIONS(5752), - [anon_sym_signed] = ACTIONS(5750), - [anon_sym_unsigned] = ACTIONS(5750), - [anon_sym_long] = ACTIONS(5750), - [anon_sym_short] = ACTIONS(5750), - [anon_sym_LBRACK] = ACTIONS(5752), - [anon_sym_RBRACK] = ACTIONS(5752), - [anon_sym_const] = ACTIONS(5750), - [anon_sym_constexpr] = ACTIONS(5750), - [anon_sym_volatile] = ACTIONS(5750), - [anon_sym_restrict] = ACTIONS(5750), - [anon_sym___restrict__] = ACTIONS(5750), - [anon_sym__Atomic] = ACTIONS(5750), - [anon_sym__Noreturn] = ACTIONS(5750), - [anon_sym_noreturn] = ACTIONS(5750), - [anon_sym__Nonnull] = ACTIONS(5750), - [anon_sym_mutable] = ACTIONS(5750), - [anon_sym_constinit] = ACTIONS(5750), - [anon_sym_consteval] = ACTIONS(5750), - [anon_sym_alignas] = ACTIONS(5750), - [anon_sym__Alignas] = ACTIONS(5750), - [sym_primitive_type] = ACTIONS(5750), - [anon_sym_QMARK] = ACTIONS(5752), - [anon_sym_LT_EQ_GT] = ACTIONS(5752), - [anon_sym_or] = ACTIONS(5750), - [anon_sym_and] = ACTIONS(5750), - [anon_sym_bitor] = ACTIONS(5750), - [anon_sym_xor] = ACTIONS(5750), - [anon_sym_bitand] = ACTIONS(5750), - [anon_sym_not_eq] = ACTIONS(5750), - [anon_sym_DASH_DASH] = ACTIONS(5752), - [anon_sym_PLUS_PLUS] = ACTIONS(5752), - [anon_sym_DOT] = ACTIONS(5750), - [anon_sym_DOT_STAR] = ACTIONS(5752), - [anon_sym_DASH_GT] = ACTIONS(5752), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5750), - [anon_sym_decltype] = ACTIONS(5750), - [anon_sym_final] = ACTIONS(5750), - [anon_sym_override] = ACTIONS(5750), - [anon_sym_requires] = ACTIONS(5750), + [1894] = { + [sym_template_argument_list] = STATE(1934), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4929), + [anon_sym_COMMA] = ACTIONS(4929), + [anon_sym_LPAREN2] = ACTIONS(4929), + [anon_sym_DASH] = ACTIONS(4934), + [anon_sym_PLUS] = ACTIONS(4934), + [anon_sym_STAR] = ACTIONS(4936), + [anon_sym_SLASH] = ACTIONS(4934), + [anon_sym_PERCENT] = ACTIONS(4934), + [anon_sym_PIPE_PIPE] = ACTIONS(4927), + [anon_sym_AMP_AMP] = ACTIONS(4929), + [anon_sym_PIPE] = ACTIONS(4934), + [anon_sym_CARET] = ACTIONS(4934), + [anon_sym_AMP] = ACTIONS(4936), + [anon_sym_EQ_EQ] = ACTIONS(4927), + [anon_sym_BANG_EQ] = ACTIONS(4927), + [anon_sym_GT] = ACTIONS(4934), + [anon_sym_GT_EQ] = ACTIONS(4934), + [anon_sym_LT_EQ] = ACTIONS(4934), + [anon_sym_LT] = ACTIONS(5757), + [anon_sym_LT_LT] = ACTIONS(4934), + [anon_sym_GT_GT] = ACTIONS(4934), + [anon_sym___extension__] = ACTIONS(4932), + [anon_sym_COLON_COLON] = ACTIONS(4187), + [anon_sym_LBRACE] = ACTIONS(4932), + [anon_sym_LBRACK] = ACTIONS(4929), + [anon_sym_EQ] = ACTIONS(4934), + [anon_sym_const] = ACTIONS(4925), + [anon_sym_constexpr] = ACTIONS(4932), + [anon_sym_volatile] = ACTIONS(4932), + [anon_sym_restrict] = ACTIONS(4932), + [anon_sym___restrict__] = ACTIONS(4932), + [anon_sym__Atomic] = ACTIONS(4932), + [anon_sym__Noreturn] = ACTIONS(4932), + [anon_sym_noreturn] = ACTIONS(4932), + [anon_sym__Nonnull] = ACTIONS(4932), + [anon_sym_mutable] = ACTIONS(4932), + [anon_sym_constinit] = ACTIONS(4932), + [anon_sym_consteval] = ACTIONS(4932), + [anon_sym_alignas] = ACTIONS(4932), + [anon_sym__Alignas] = ACTIONS(4932), + [anon_sym_QMARK] = ACTIONS(4927), + [anon_sym_STAR_EQ] = ACTIONS(4927), + [anon_sym_SLASH_EQ] = ACTIONS(4927), + [anon_sym_PERCENT_EQ] = ACTIONS(4927), + [anon_sym_PLUS_EQ] = ACTIONS(4927), + [anon_sym_DASH_EQ] = ACTIONS(4927), + [anon_sym_LT_LT_EQ] = ACTIONS(4927), + [anon_sym_GT_GT_EQ] = ACTIONS(4934), + [anon_sym_AMP_EQ] = ACTIONS(4927), + [anon_sym_CARET_EQ] = ACTIONS(4927), + [anon_sym_PIPE_EQ] = ACTIONS(4927), + [anon_sym_and_eq] = ACTIONS(4927), + [anon_sym_or_eq] = ACTIONS(4927), + [anon_sym_xor_eq] = ACTIONS(4927), + [anon_sym_LT_EQ_GT] = ACTIONS(4927), + [anon_sym_or] = ACTIONS(4934), + [anon_sym_and] = ACTIONS(4934), + [anon_sym_bitor] = ACTIONS(4927), + [anon_sym_xor] = ACTIONS(4934), + [anon_sym_bitand] = ACTIONS(4927), + [anon_sym_not_eq] = ACTIONS(4927), + [anon_sym_DASH_DASH] = ACTIONS(4927), + [anon_sym_PLUS_PLUS] = ACTIONS(4927), + [anon_sym_DOT] = ACTIONS(4934), + [anon_sym_DOT_STAR] = ACTIONS(4927), + [anon_sym_DASH_GT] = ACTIONS(4927), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4932), + [anon_sym_decltype] = ACTIONS(4932), + [anon_sym_GT2] = ACTIONS(4929), }, - [1871] = { - [sym_identifier] = ACTIONS(5754), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5756), - [anon_sym_COMMA] = ACTIONS(5756), - [anon_sym_RPAREN] = ACTIONS(5756), - [anon_sym_LPAREN2] = ACTIONS(5756), - [anon_sym_DASH] = ACTIONS(5754), - [anon_sym_PLUS] = ACTIONS(5754), - [anon_sym_STAR] = ACTIONS(5756), - [anon_sym_SLASH] = ACTIONS(5754), - [anon_sym_PERCENT] = ACTIONS(5756), - [anon_sym_PIPE_PIPE] = ACTIONS(5756), - [anon_sym_AMP_AMP] = ACTIONS(5756), - [anon_sym_PIPE] = ACTIONS(5754), - [anon_sym_CARET] = ACTIONS(5756), - [anon_sym_AMP] = ACTIONS(5754), - [anon_sym_EQ_EQ] = ACTIONS(5756), - [anon_sym_BANG_EQ] = ACTIONS(5756), - [anon_sym_GT] = ACTIONS(5754), - [anon_sym_GT_EQ] = ACTIONS(5756), - [anon_sym_LT_EQ] = ACTIONS(5754), - [anon_sym_LT] = ACTIONS(5754), - [anon_sym_LT_LT] = ACTIONS(5756), - [anon_sym_GT_GT] = ACTIONS(5756), - [anon_sym_SEMI] = ACTIONS(5756), - [anon_sym___extension__] = ACTIONS(5754), - [anon_sym___attribute__] = ACTIONS(5754), - [anon_sym___attribute] = ACTIONS(5754), - [anon_sym_COLON] = ACTIONS(5756), - [anon_sym___based] = ACTIONS(5754), - [anon_sym_LBRACE] = ACTIONS(5756), - [anon_sym_RBRACE] = ACTIONS(5756), - [anon_sym_signed] = ACTIONS(5754), - [anon_sym_unsigned] = ACTIONS(5754), - [anon_sym_long] = ACTIONS(5754), - [anon_sym_short] = ACTIONS(5754), - [anon_sym_LBRACK] = ACTIONS(5756), - [anon_sym_RBRACK] = ACTIONS(5756), - [anon_sym_const] = ACTIONS(5754), - [anon_sym_constexpr] = ACTIONS(5754), - [anon_sym_volatile] = ACTIONS(5754), - [anon_sym_restrict] = ACTIONS(5754), - [anon_sym___restrict__] = ACTIONS(5754), - [anon_sym__Atomic] = ACTIONS(5754), - [anon_sym__Noreturn] = ACTIONS(5754), - [anon_sym_noreturn] = ACTIONS(5754), - [anon_sym__Nonnull] = ACTIONS(5754), - [anon_sym_mutable] = ACTIONS(5754), - [anon_sym_constinit] = ACTIONS(5754), - [anon_sym_consteval] = ACTIONS(5754), - [anon_sym_alignas] = ACTIONS(5754), - [anon_sym__Alignas] = ACTIONS(5754), - [sym_primitive_type] = ACTIONS(5754), - [anon_sym_QMARK] = ACTIONS(5756), - [anon_sym_LT_EQ_GT] = ACTIONS(5756), - [anon_sym_or] = ACTIONS(5754), - [anon_sym_and] = ACTIONS(5754), - [anon_sym_bitor] = ACTIONS(5754), - [anon_sym_xor] = ACTIONS(5754), - [anon_sym_bitand] = ACTIONS(5754), - [anon_sym_not_eq] = ACTIONS(5754), - [anon_sym_DASH_DASH] = ACTIONS(5756), - [anon_sym_PLUS_PLUS] = ACTIONS(5756), - [anon_sym_DOT] = ACTIONS(5754), - [anon_sym_DOT_STAR] = ACTIONS(5756), - [anon_sym_DASH_GT] = ACTIONS(5756), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5754), - [anon_sym_decltype] = ACTIONS(5754), - [anon_sym_final] = ACTIONS(5754), - [anon_sym_override] = ACTIONS(5754), - [anon_sym_requires] = ACTIONS(5754), + [1895] = { + [sym_identifier] = ACTIONS(5760), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5762), + [anon_sym_COMMA] = ACTIONS(5762), + [anon_sym_RPAREN] = ACTIONS(5762), + [anon_sym_LPAREN2] = ACTIONS(5762), + [anon_sym_DASH] = ACTIONS(5760), + [anon_sym_PLUS] = ACTIONS(5760), + [anon_sym_STAR] = ACTIONS(5762), + [anon_sym_SLASH] = ACTIONS(5760), + [anon_sym_PERCENT] = ACTIONS(5762), + [anon_sym_PIPE_PIPE] = ACTIONS(5762), + [anon_sym_AMP_AMP] = ACTIONS(5762), + [anon_sym_PIPE] = ACTIONS(5760), + [anon_sym_CARET] = ACTIONS(5762), + [anon_sym_AMP] = ACTIONS(5760), + [anon_sym_EQ_EQ] = ACTIONS(5762), + [anon_sym_BANG_EQ] = ACTIONS(5762), + [anon_sym_GT] = ACTIONS(5760), + [anon_sym_GT_EQ] = ACTIONS(5762), + [anon_sym_LT_EQ] = ACTIONS(5760), + [anon_sym_LT] = ACTIONS(5760), + [anon_sym_LT_LT] = ACTIONS(5762), + [anon_sym_GT_GT] = ACTIONS(5762), + [anon_sym_SEMI] = ACTIONS(5762), + [anon_sym___extension__] = ACTIONS(5760), + [anon_sym___attribute__] = ACTIONS(5760), + [anon_sym___attribute] = ACTIONS(5760), + [anon_sym_COLON] = ACTIONS(5762), + [anon_sym___based] = ACTIONS(5760), + [anon_sym_LBRACE] = ACTIONS(5762), + [anon_sym_RBRACE] = ACTIONS(5762), + [anon_sym_signed] = ACTIONS(5760), + [anon_sym_unsigned] = ACTIONS(5760), + [anon_sym_long] = ACTIONS(5760), + [anon_sym_short] = ACTIONS(5760), + [anon_sym_LBRACK] = ACTIONS(5762), + [anon_sym_RBRACK] = ACTIONS(5762), + [anon_sym_const] = ACTIONS(5760), + [anon_sym_constexpr] = ACTIONS(5760), + [anon_sym_volatile] = ACTIONS(5760), + [anon_sym_restrict] = ACTIONS(5760), + [anon_sym___restrict__] = ACTIONS(5760), + [anon_sym__Atomic] = ACTIONS(5760), + [anon_sym__Noreturn] = ACTIONS(5760), + [anon_sym_noreturn] = ACTIONS(5760), + [anon_sym__Nonnull] = ACTIONS(5760), + [anon_sym_mutable] = ACTIONS(5760), + [anon_sym_constinit] = ACTIONS(5760), + [anon_sym_consteval] = ACTIONS(5760), + [anon_sym_alignas] = ACTIONS(5760), + [anon_sym__Alignas] = ACTIONS(5760), + [sym_primitive_type] = ACTIONS(5760), + [anon_sym_QMARK] = ACTIONS(5762), + [anon_sym_LT_EQ_GT] = ACTIONS(5762), + [anon_sym_or] = ACTIONS(5760), + [anon_sym_and] = ACTIONS(5760), + [anon_sym_bitor] = ACTIONS(5760), + [anon_sym_xor] = ACTIONS(5760), + [anon_sym_bitand] = ACTIONS(5760), + [anon_sym_not_eq] = ACTIONS(5760), + [anon_sym_DASH_DASH] = ACTIONS(5762), + [anon_sym_PLUS_PLUS] = ACTIONS(5762), + [anon_sym_DOT] = ACTIONS(5760), + [anon_sym_DOT_STAR] = ACTIONS(5762), + [anon_sym_DASH_GT] = ACTIONS(5762), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5760), + [anon_sym_decltype] = ACTIONS(5760), + [anon_sym_final] = ACTIONS(5760), + [anon_sym_override] = ACTIONS(5760), + [anon_sym_requires] = ACTIONS(5760), }, - [1872] = { - [sym_identifier] = ACTIONS(5758), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5760), - [anon_sym_COMMA] = ACTIONS(5760), - [anon_sym_RPAREN] = ACTIONS(5760), - [anon_sym_LPAREN2] = ACTIONS(5760), - [anon_sym_DASH] = ACTIONS(5758), - [anon_sym_PLUS] = ACTIONS(5758), - [anon_sym_STAR] = ACTIONS(5760), - [anon_sym_SLASH] = ACTIONS(5758), - [anon_sym_PERCENT] = ACTIONS(5760), - [anon_sym_PIPE_PIPE] = ACTIONS(5760), - [anon_sym_AMP_AMP] = ACTIONS(5760), - [anon_sym_PIPE] = ACTIONS(5758), - [anon_sym_CARET] = ACTIONS(5760), - [anon_sym_AMP] = ACTIONS(5758), - [anon_sym_EQ_EQ] = ACTIONS(5760), - [anon_sym_BANG_EQ] = ACTIONS(5760), - [anon_sym_GT] = ACTIONS(5758), - [anon_sym_GT_EQ] = ACTIONS(5760), - [anon_sym_LT_EQ] = ACTIONS(5758), - [anon_sym_LT] = ACTIONS(5758), - [anon_sym_LT_LT] = ACTIONS(5760), - [anon_sym_GT_GT] = ACTIONS(5760), - [anon_sym_SEMI] = ACTIONS(5760), - [anon_sym___extension__] = ACTIONS(5758), - [anon_sym___attribute__] = ACTIONS(5758), - [anon_sym___attribute] = ACTIONS(5758), - [anon_sym_COLON] = ACTIONS(5760), - [anon_sym___based] = ACTIONS(5758), - [anon_sym_LBRACE] = ACTIONS(5760), - [anon_sym_RBRACE] = ACTIONS(5760), - [anon_sym_signed] = ACTIONS(5758), - [anon_sym_unsigned] = ACTIONS(5758), - [anon_sym_long] = ACTIONS(5758), - [anon_sym_short] = ACTIONS(5758), - [anon_sym_LBRACK] = ACTIONS(5760), - [anon_sym_RBRACK] = ACTIONS(5760), - [anon_sym_const] = ACTIONS(5758), - [anon_sym_constexpr] = ACTIONS(5758), - [anon_sym_volatile] = ACTIONS(5758), - [anon_sym_restrict] = ACTIONS(5758), - [anon_sym___restrict__] = ACTIONS(5758), - [anon_sym__Atomic] = ACTIONS(5758), - [anon_sym__Noreturn] = ACTIONS(5758), - [anon_sym_noreturn] = ACTIONS(5758), - [anon_sym__Nonnull] = ACTIONS(5758), - [anon_sym_mutable] = ACTIONS(5758), - [anon_sym_constinit] = ACTIONS(5758), - [anon_sym_consteval] = ACTIONS(5758), - [anon_sym_alignas] = ACTIONS(5758), - [anon_sym__Alignas] = ACTIONS(5758), - [sym_primitive_type] = ACTIONS(5758), - [anon_sym_QMARK] = ACTIONS(5760), - [anon_sym_LT_EQ_GT] = ACTIONS(5760), - [anon_sym_or] = ACTIONS(5758), - [anon_sym_and] = ACTIONS(5758), - [anon_sym_bitor] = ACTIONS(5758), - [anon_sym_xor] = ACTIONS(5758), - [anon_sym_bitand] = ACTIONS(5758), - [anon_sym_not_eq] = ACTIONS(5758), - [anon_sym_DASH_DASH] = ACTIONS(5760), - [anon_sym_PLUS_PLUS] = ACTIONS(5760), - [anon_sym_DOT] = ACTIONS(5758), - [anon_sym_DOT_STAR] = ACTIONS(5760), - [anon_sym_DASH_GT] = ACTIONS(5760), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5758), - [anon_sym_decltype] = ACTIONS(5758), - [anon_sym_final] = ACTIONS(5758), - [anon_sym_override] = ACTIONS(5758), - [anon_sym_requires] = ACTIONS(5758), + [1896] = { + [sym_identifier] = ACTIONS(5764), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5766), + [anon_sym_COMMA] = ACTIONS(5766), + [anon_sym_RPAREN] = ACTIONS(5766), + [anon_sym_LPAREN2] = ACTIONS(5766), + [anon_sym_DASH] = ACTIONS(5764), + [anon_sym_PLUS] = ACTIONS(5764), + [anon_sym_STAR] = ACTIONS(5766), + [anon_sym_SLASH] = ACTIONS(5764), + [anon_sym_PERCENT] = ACTIONS(5766), + [anon_sym_PIPE_PIPE] = ACTIONS(5766), + [anon_sym_AMP_AMP] = ACTIONS(5766), + [anon_sym_PIPE] = ACTIONS(5764), + [anon_sym_CARET] = ACTIONS(5766), + [anon_sym_AMP] = ACTIONS(5764), + [anon_sym_EQ_EQ] = ACTIONS(5766), + [anon_sym_BANG_EQ] = ACTIONS(5766), + [anon_sym_GT] = ACTIONS(5764), + [anon_sym_GT_EQ] = ACTIONS(5766), + [anon_sym_LT_EQ] = ACTIONS(5764), + [anon_sym_LT] = ACTIONS(5764), + [anon_sym_LT_LT] = ACTIONS(5766), + [anon_sym_GT_GT] = ACTIONS(5766), + [anon_sym_SEMI] = ACTIONS(5766), + [anon_sym___extension__] = ACTIONS(5764), + [anon_sym___attribute__] = ACTIONS(5764), + [anon_sym___attribute] = ACTIONS(5764), + [anon_sym_COLON] = ACTIONS(5766), + [anon_sym___based] = ACTIONS(5764), + [anon_sym_LBRACE] = ACTIONS(5766), + [anon_sym_RBRACE] = ACTIONS(5766), + [anon_sym_signed] = ACTIONS(5764), + [anon_sym_unsigned] = ACTIONS(5764), + [anon_sym_long] = ACTIONS(5764), + [anon_sym_short] = ACTIONS(5764), + [anon_sym_LBRACK] = ACTIONS(5766), + [anon_sym_RBRACK] = ACTIONS(5766), + [anon_sym_const] = ACTIONS(5764), + [anon_sym_constexpr] = ACTIONS(5764), + [anon_sym_volatile] = ACTIONS(5764), + [anon_sym_restrict] = ACTIONS(5764), + [anon_sym___restrict__] = ACTIONS(5764), + [anon_sym__Atomic] = ACTIONS(5764), + [anon_sym__Noreturn] = ACTIONS(5764), + [anon_sym_noreturn] = ACTIONS(5764), + [anon_sym__Nonnull] = ACTIONS(5764), + [anon_sym_mutable] = ACTIONS(5764), + [anon_sym_constinit] = ACTIONS(5764), + [anon_sym_consteval] = ACTIONS(5764), + [anon_sym_alignas] = ACTIONS(5764), + [anon_sym__Alignas] = ACTIONS(5764), + [sym_primitive_type] = ACTIONS(5764), + [anon_sym_QMARK] = ACTIONS(5766), + [anon_sym_LT_EQ_GT] = ACTIONS(5766), + [anon_sym_or] = ACTIONS(5764), + [anon_sym_and] = ACTIONS(5764), + [anon_sym_bitor] = ACTIONS(5764), + [anon_sym_xor] = ACTIONS(5764), + [anon_sym_bitand] = ACTIONS(5764), + [anon_sym_not_eq] = ACTIONS(5764), + [anon_sym_DASH_DASH] = ACTIONS(5766), + [anon_sym_PLUS_PLUS] = ACTIONS(5766), + [anon_sym_DOT] = ACTIONS(5764), + [anon_sym_DOT_STAR] = ACTIONS(5766), + [anon_sym_DASH_GT] = ACTIONS(5766), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5764), + [anon_sym_decltype] = ACTIONS(5764), + [anon_sym_final] = ACTIONS(5764), + [anon_sym_override] = ACTIONS(5764), + [anon_sym_requires] = ACTIONS(5764), }, - [1873] = { - [sym_identifier] = ACTIONS(5762), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5764), - [anon_sym_COMMA] = ACTIONS(5764), - [anon_sym_RPAREN] = ACTIONS(5764), - [anon_sym_LPAREN2] = ACTIONS(5764), - [anon_sym_DASH] = ACTIONS(5762), - [anon_sym_PLUS] = ACTIONS(5762), - [anon_sym_STAR] = ACTIONS(5764), - [anon_sym_SLASH] = ACTIONS(5762), - [anon_sym_PERCENT] = ACTIONS(5764), - [anon_sym_PIPE_PIPE] = ACTIONS(5764), - [anon_sym_AMP_AMP] = ACTIONS(5764), - [anon_sym_PIPE] = ACTIONS(5762), - [anon_sym_CARET] = ACTIONS(5764), - [anon_sym_AMP] = ACTIONS(5762), - [anon_sym_EQ_EQ] = ACTIONS(5764), - [anon_sym_BANG_EQ] = ACTIONS(5764), - [anon_sym_GT] = ACTIONS(5762), - [anon_sym_GT_EQ] = ACTIONS(5764), - [anon_sym_LT_EQ] = ACTIONS(5762), - [anon_sym_LT] = ACTIONS(5762), - [anon_sym_LT_LT] = ACTIONS(5764), - [anon_sym_GT_GT] = ACTIONS(5764), - [anon_sym_SEMI] = ACTIONS(5764), - [anon_sym___extension__] = ACTIONS(5762), - [anon_sym___attribute__] = ACTIONS(5762), - [anon_sym___attribute] = ACTIONS(5762), - [anon_sym_COLON] = ACTIONS(5764), - [anon_sym___based] = ACTIONS(5762), - [anon_sym_LBRACE] = ACTIONS(5764), - [anon_sym_RBRACE] = ACTIONS(5764), - [anon_sym_signed] = ACTIONS(5762), - [anon_sym_unsigned] = ACTIONS(5762), - [anon_sym_long] = ACTIONS(5762), - [anon_sym_short] = ACTIONS(5762), - [anon_sym_LBRACK] = ACTIONS(5764), - [anon_sym_RBRACK] = ACTIONS(5764), - [anon_sym_const] = ACTIONS(5762), - [anon_sym_constexpr] = ACTIONS(5762), - [anon_sym_volatile] = ACTIONS(5762), - [anon_sym_restrict] = ACTIONS(5762), - [anon_sym___restrict__] = ACTIONS(5762), - [anon_sym__Atomic] = ACTIONS(5762), - [anon_sym__Noreturn] = ACTIONS(5762), - [anon_sym_noreturn] = ACTIONS(5762), - [anon_sym__Nonnull] = ACTIONS(5762), - [anon_sym_mutable] = ACTIONS(5762), - [anon_sym_constinit] = ACTIONS(5762), - [anon_sym_consteval] = ACTIONS(5762), - [anon_sym_alignas] = ACTIONS(5762), - [anon_sym__Alignas] = ACTIONS(5762), - [sym_primitive_type] = ACTIONS(5762), - [anon_sym_QMARK] = ACTIONS(5764), - [anon_sym_LT_EQ_GT] = ACTIONS(5764), - [anon_sym_or] = ACTIONS(5762), - [anon_sym_and] = ACTIONS(5762), - [anon_sym_bitor] = ACTIONS(5762), - [anon_sym_xor] = ACTIONS(5762), - [anon_sym_bitand] = ACTIONS(5762), - [anon_sym_not_eq] = ACTIONS(5762), - [anon_sym_DASH_DASH] = ACTIONS(5764), - [anon_sym_PLUS_PLUS] = ACTIONS(5764), - [anon_sym_DOT] = ACTIONS(5762), - [anon_sym_DOT_STAR] = ACTIONS(5764), - [anon_sym_DASH_GT] = ACTIONS(5764), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5762), - [anon_sym_decltype] = ACTIONS(5762), - [anon_sym_final] = ACTIONS(5762), - [anon_sym_override] = ACTIONS(5762), - [anon_sym_requires] = ACTIONS(5762), + [1897] = { + [sym_identifier] = ACTIONS(5768), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5770), + [anon_sym_COMMA] = ACTIONS(5770), + [anon_sym_RPAREN] = ACTIONS(5770), + [anon_sym_LPAREN2] = ACTIONS(5770), + [anon_sym_DASH] = ACTIONS(5768), + [anon_sym_PLUS] = ACTIONS(5768), + [anon_sym_STAR] = ACTIONS(5770), + [anon_sym_SLASH] = ACTIONS(5768), + [anon_sym_PERCENT] = ACTIONS(5770), + [anon_sym_PIPE_PIPE] = ACTIONS(5770), + [anon_sym_AMP_AMP] = ACTIONS(5770), + [anon_sym_PIPE] = ACTIONS(5768), + [anon_sym_CARET] = ACTIONS(5770), + [anon_sym_AMP] = ACTIONS(5768), + [anon_sym_EQ_EQ] = ACTIONS(5770), + [anon_sym_BANG_EQ] = ACTIONS(5770), + [anon_sym_GT] = ACTIONS(5768), + [anon_sym_GT_EQ] = ACTIONS(5770), + [anon_sym_LT_EQ] = ACTIONS(5768), + [anon_sym_LT] = ACTIONS(5768), + [anon_sym_LT_LT] = ACTIONS(5770), + [anon_sym_GT_GT] = ACTIONS(5770), + [anon_sym_SEMI] = ACTIONS(5770), + [anon_sym___extension__] = ACTIONS(5768), + [anon_sym___attribute__] = ACTIONS(5768), + [anon_sym___attribute] = ACTIONS(5768), + [anon_sym_COLON] = ACTIONS(5770), + [anon_sym___based] = ACTIONS(5768), + [anon_sym_LBRACE] = ACTIONS(5770), + [anon_sym_RBRACE] = ACTIONS(5770), + [anon_sym_signed] = ACTIONS(5768), + [anon_sym_unsigned] = ACTIONS(5768), + [anon_sym_long] = ACTIONS(5768), + [anon_sym_short] = ACTIONS(5768), + [anon_sym_LBRACK] = ACTIONS(5770), + [anon_sym_RBRACK] = ACTIONS(5770), + [anon_sym_const] = ACTIONS(5768), + [anon_sym_constexpr] = ACTIONS(5768), + [anon_sym_volatile] = ACTIONS(5768), + [anon_sym_restrict] = ACTIONS(5768), + [anon_sym___restrict__] = ACTIONS(5768), + [anon_sym__Atomic] = ACTIONS(5768), + [anon_sym__Noreturn] = ACTIONS(5768), + [anon_sym_noreturn] = ACTIONS(5768), + [anon_sym__Nonnull] = ACTIONS(5768), + [anon_sym_mutable] = ACTIONS(5768), + [anon_sym_constinit] = ACTIONS(5768), + [anon_sym_consteval] = ACTIONS(5768), + [anon_sym_alignas] = ACTIONS(5768), + [anon_sym__Alignas] = ACTIONS(5768), + [sym_primitive_type] = ACTIONS(5768), + [anon_sym_QMARK] = ACTIONS(5770), + [anon_sym_LT_EQ_GT] = ACTIONS(5770), + [anon_sym_or] = ACTIONS(5768), + [anon_sym_and] = ACTIONS(5768), + [anon_sym_bitor] = ACTIONS(5768), + [anon_sym_xor] = ACTIONS(5768), + [anon_sym_bitand] = ACTIONS(5768), + [anon_sym_not_eq] = ACTIONS(5768), + [anon_sym_DASH_DASH] = ACTIONS(5770), + [anon_sym_PLUS_PLUS] = ACTIONS(5770), + [anon_sym_DOT] = ACTIONS(5768), + [anon_sym_DOT_STAR] = ACTIONS(5770), + [anon_sym_DASH_GT] = ACTIONS(5770), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5768), + [anon_sym_decltype] = ACTIONS(5768), + [anon_sym_final] = ACTIONS(5768), + [anon_sym_override] = ACTIONS(5768), + [anon_sym_requires] = ACTIONS(5768), }, - [1874] = { - [sym_identifier] = ACTIONS(5766), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5768), - [anon_sym_COMMA] = ACTIONS(5768), - [anon_sym_RPAREN] = ACTIONS(5768), - [anon_sym_LPAREN2] = ACTIONS(5768), - [anon_sym_DASH] = ACTIONS(5766), - [anon_sym_PLUS] = ACTIONS(5766), - [anon_sym_STAR] = ACTIONS(5768), - [anon_sym_SLASH] = ACTIONS(5766), - [anon_sym_PERCENT] = ACTIONS(5768), - [anon_sym_PIPE_PIPE] = ACTIONS(5768), - [anon_sym_AMP_AMP] = ACTIONS(5768), - [anon_sym_PIPE] = ACTIONS(5766), - [anon_sym_CARET] = ACTIONS(5768), - [anon_sym_AMP] = ACTIONS(5766), - [anon_sym_EQ_EQ] = ACTIONS(5768), - [anon_sym_BANG_EQ] = ACTIONS(5768), - [anon_sym_GT] = ACTIONS(5766), - [anon_sym_GT_EQ] = ACTIONS(5768), - [anon_sym_LT_EQ] = ACTIONS(5766), - [anon_sym_LT] = ACTIONS(5766), - [anon_sym_LT_LT] = ACTIONS(5768), - [anon_sym_GT_GT] = ACTIONS(5768), - [anon_sym_SEMI] = ACTIONS(5768), - [anon_sym___extension__] = ACTIONS(5766), - [anon_sym___attribute__] = ACTIONS(5766), - [anon_sym___attribute] = ACTIONS(5766), - [anon_sym_COLON] = ACTIONS(5768), - [anon_sym___based] = ACTIONS(5766), - [anon_sym_LBRACE] = ACTIONS(5768), - [anon_sym_RBRACE] = ACTIONS(5768), - [anon_sym_signed] = ACTIONS(5766), - [anon_sym_unsigned] = ACTIONS(5766), - [anon_sym_long] = ACTIONS(5766), - [anon_sym_short] = ACTIONS(5766), - [anon_sym_LBRACK] = ACTIONS(5768), - [anon_sym_RBRACK] = ACTIONS(5768), - [anon_sym_const] = ACTIONS(5766), - [anon_sym_constexpr] = ACTIONS(5766), - [anon_sym_volatile] = ACTIONS(5766), - [anon_sym_restrict] = ACTIONS(5766), - [anon_sym___restrict__] = ACTIONS(5766), - [anon_sym__Atomic] = ACTIONS(5766), - [anon_sym__Noreturn] = ACTIONS(5766), - [anon_sym_noreturn] = ACTIONS(5766), - [anon_sym__Nonnull] = ACTIONS(5766), - [anon_sym_mutable] = ACTIONS(5766), - [anon_sym_constinit] = ACTIONS(5766), - [anon_sym_consteval] = ACTIONS(5766), - [anon_sym_alignas] = ACTIONS(5766), - [anon_sym__Alignas] = ACTIONS(5766), - [sym_primitive_type] = ACTIONS(5766), - [anon_sym_QMARK] = ACTIONS(5768), - [anon_sym_LT_EQ_GT] = ACTIONS(5768), - [anon_sym_or] = ACTIONS(5766), - [anon_sym_and] = ACTIONS(5766), - [anon_sym_bitor] = ACTIONS(5766), - [anon_sym_xor] = ACTIONS(5766), - [anon_sym_bitand] = ACTIONS(5766), - [anon_sym_not_eq] = ACTIONS(5766), - [anon_sym_DASH_DASH] = ACTIONS(5768), - [anon_sym_PLUS_PLUS] = ACTIONS(5768), - [anon_sym_DOT] = ACTIONS(5766), - [anon_sym_DOT_STAR] = ACTIONS(5768), - [anon_sym_DASH_GT] = ACTIONS(5768), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5766), - [anon_sym_decltype] = ACTIONS(5766), - [anon_sym_final] = ACTIONS(5766), - [anon_sym_override] = ACTIONS(5766), - [anon_sym_requires] = ACTIONS(5766), + [1898] = { + [sym_identifier] = ACTIONS(5772), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5774), + [anon_sym_COMMA] = ACTIONS(5774), + [anon_sym_RPAREN] = ACTIONS(5774), + [anon_sym_LPAREN2] = ACTIONS(5774), + [anon_sym_DASH] = ACTIONS(5772), + [anon_sym_PLUS] = ACTIONS(5772), + [anon_sym_STAR] = ACTIONS(5774), + [anon_sym_SLASH] = ACTIONS(5772), + [anon_sym_PERCENT] = ACTIONS(5774), + [anon_sym_PIPE_PIPE] = ACTIONS(5774), + [anon_sym_AMP_AMP] = ACTIONS(5774), + [anon_sym_PIPE] = ACTIONS(5772), + [anon_sym_CARET] = ACTIONS(5774), + [anon_sym_AMP] = ACTIONS(5772), + [anon_sym_EQ_EQ] = ACTIONS(5774), + [anon_sym_BANG_EQ] = ACTIONS(5774), + [anon_sym_GT] = ACTIONS(5772), + [anon_sym_GT_EQ] = ACTIONS(5774), + [anon_sym_LT_EQ] = ACTIONS(5772), + [anon_sym_LT] = ACTIONS(5772), + [anon_sym_LT_LT] = ACTIONS(5774), + [anon_sym_GT_GT] = ACTIONS(5774), + [anon_sym_SEMI] = ACTIONS(5774), + [anon_sym___extension__] = ACTIONS(5772), + [anon_sym___attribute__] = ACTIONS(5772), + [anon_sym___attribute] = ACTIONS(5772), + [anon_sym_COLON] = ACTIONS(5774), + [anon_sym___based] = ACTIONS(5772), + [anon_sym_LBRACE] = ACTIONS(5774), + [anon_sym_RBRACE] = ACTIONS(5774), + [anon_sym_signed] = ACTIONS(5772), + [anon_sym_unsigned] = ACTIONS(5772), + [anon_sym_long] = ACTIONS(5772), + [anon_sym_short] = ACTIONS(5772), + [anon_sym_LBRACK] = ACTIONS(5774), + [anon_sym_RBRACK] = ACTIONS(5774), + [anon_sym_const] = ACTIONS(5772), + [anon_sym_constexpr] = ACTIONS(5772), + [anon_sym_volatile] = ACTIONS(5772), + [anon_sym_restrict] = ACTIONS(5772), + [anon_sym___restrict__] = ACTIONS(5772), + [anon_sym__Atomic] = ACTIONS(5772), + [anon_sym__Noreturn] = ACTIONS(5772), + [anon_sym_noreturn] = ACTIONS(5772), + [anon_sym__Nonnull] = ACTIONS(5772), + [anon_sym_mutable] = ACTIONS(5772), + [anon_sym_constinit] = ACTIONS(5772), + [anon_sym_consteval] = ACTIONS(5772), + [anon_sym_alignas] = ACTIONS(5772), + [anon_sym__Alignas] = ACTIONS(5772), + [sym_primitive_type] = ACTIONS(5772), + [anon_sym_QMARK] = ACTIONS(5774), + [anon_sym_LT_EQ_GT] = ACTIONS(5774), + [anon_sym_or] = ACTIONS(5772), + [anon_sym_and] = ACTIONS(5772), + [anon_sym_bitor] = ACTIONS(5772), + [anon_sym_xor] = ACTIONS(5772), + [anon_sym_bitand] = ACTIONS(5772), + [anon_sym_not_eq] = ACTIONS(5772), + [anon_sym_DASH_DASH] = ACTIONS(5774), + [anon_sym_PLUS_PLUS] = ACTIONS(5774), + [anon_sym_DOT] = ACTIONS(5772), + [anon_sym_DOT_STAR] = ACTIONS(5774), + [anon_sym_DASH_GT] = ACTIONS(5774), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5772), + [anon_sym_decltype] = ACTIONS(5772), + [anon_sym_final] = ACTIONS(5772), + [anon_sym_override] = ACTIONS(5772), + [anon_sym_requires] = ACTIONS(5772), }, - [1875] = { - [sym_identifier] = ACTIONS(5770), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5772), - [anon_sym_COMMA] = ACTIONS(5772), - [anon_sym_RPAREN] = ACTIONS(5772), - [anon_sym_LPAREN2] = ACTIONS(5772), - [anon_sym_DASH] = ACTIONS(5770), - [anon_sym_PLUS] = ACTIONS(5770), - [anon_sym_STAR] = ACTIONS(5772), - [anon_sym_SLASH] = ACTIONS(5770), - [anon_sym_PERCENT] = ACTIONS(5772), - [anon_sym_PIPE_PIPE] = ACTIONS(5772), - [anon_sym_AMP_AMP] = ACTIONS(5772), - [anon_sym_PIPE] = ACTIONS(5770), - [anon_sym_CARET] = ACTIONS(5772), - [anon_sym_AMP] = ACTIONS(5770), - [anon_sym_EQ_EQ] = ACTIONS(5772), - [anon_sym_BANG_EQ] = ACTIONS(5772), - [anon_sym_GT] = ACTIONS(5770), - [anon_sym_GT_EQ] = ACTIONS(5772), - [anon_sym_LT_EQ] = ACTIONS(5770), - [anon_sym_LT] = ACTIONS(5770), - [anon_sym_LT_LT] = ACTIONS(5772), - [anon_sym_GT_GT] = ACTIONS(5772), - [anon_sym_SEMI] = ACTIONS(5772), - [anon_sym___extension__] = ACTIONS(5770), - [anon_sym___attribute__] = ACTIONS(5770), - [anon_sym___attribute] = ACTIONS(5770), - [anon_sym_COLON] = ACTIONS(5772), - [anon_sym___based] = ACTIONS(5770), - [anon_sym_LBRACE] = ACTIONS(5772), - [anon_sym_RBRACE] = ACTIONS(5772), - [anon_sym_signed] = ACTIONS(5770), - [anon_sym_unsigned] = ACTIONS(5770), - [anon_sym_long] = ACTIONS(5770), - [anon_sym_short] = ACTIONS(5770), - [anon_sym_LBRACK] = ACTIONS(5772), - [anon_sym_RBRACK] = ACTIONS(5772), - [anon_sym_const] = ACTIONS(5770), - [anon_sym_constexpr] = ACTIONS(5770), - [anon_sym_volatile] = ACTIONS(5770), - [anon_sym_restrict] = ACTIONS(5770), - [anon_sym___restrict__] = ACTIONS(5770), - [anon_sym__Atomic] = ACTIONS(5770), - [anon_sym__Noreturn] = ACTIONS(5770), - [anon_sym_noreturn] = ACTIONS(5770), - [anon_sym__Nonnull] = ACTIONS(5770), - [anon_sym_mutable] = ACTIONS(5770), - [anon_sym_constinit] = ACTIONS(5770), - [anon_sym_consteval] = ACTIONS(5770), - [anon_sym_alignas] = ACTIONS(5770), - [anon_sym__Alignas] = ACTIONS(5770), - [sym_primitive_type] = ACTIONS(5770), - [anon_sym_QMARK] = ACTIONS(5772), - [anon_sym_LT_EQ_GT] = ACTIONS(5772), - [anon_sym_or] = ACTIONS(5770), - [anon_sym_and] = ACTIONS(5770), - [anon_sym_bitor] = ACTIONS(5770), - [anon_sym_xor] = ACTIONS(5770), - [anon_sym_bitand] = ACTIONS(5770), - [anon_sym_not_eq] = ACTIONS(5770), - [anon_sym_DASH_DASH] = ACTIONS(5772), - [anon_sym_PLUS_PLUS] = ACTIONS(5772), - [anon_sym_DOT] = ACTIONS(5770), - [anon_sym_DOT_STAR] = ACTIONS(5772), - [anon_sym_DASH_GT] = ACTIONS(5772), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5770), - [anon_sym_decltype] = ACTIONS(5770), - [anon_sym_final] = ACTIONS(5770), - [anon_sym_override] = ACTIONS(5770), - [anon_sym_requires] = ACTIONS(5770), + [1899] = { + [sym_identifier] = ACTIONS(5776), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5778), + [anon_sym_COMMA] = ACTIONS(5778), + [anon_sym_RPAREN] = ACTIONS(5778), + [anon_sym_LPAREN2] = ACTIONS(5778), + [anon_sym_DASH] = ACTIONS(5776), + [anon_sym_PLUS] = ACTIONS(5776), + [anon_sym_STAR] = ACTIONS(5778), + [anon_sym_SLASH] = ACTIONS(5776), + [anon_sym_PERCENT] = ACTIONS(5778), + [anon_sym_PIPE_PIPE] = ACTIONS(5778), + [anon_sym_AMP_AMP] = ACTIONS(5778), + [anon_sym_PIPE] = ACTIONS(5776), + [anon_sym_CARET] = ACTIONS(5778), + [anon_sym_AMP] = ACTIONS(5776), + [anon_sym_EQ_EQ] = ACTIONS(5778), + [anon_sym_BANG_EQ] = ACTIONS(5778), + [anon_sym_GT] = ACTIONS(5776), + [anon_sym_GT_EQ] = ACTIONS(5778), + [anon_sym_LT_EQ] = ACTIONS(5776), + [anon_sym_LT] = ACTIONS(5776), + [anon_sym_LT_LT] = ACTIONS(5778), + [anon_sym_GT_GT] = ACTIONS(5778), + [anon_sym_SEMI] = ACTIONS(5778), + [anon_sym___extension__] = ACTIONS(5776), + [anon_sym___attribute__] = ACTIONS(5776), + [anon_sym___attribute] = ACTIONS(5776), + [anon_sym_COLON] = ACTIONS(5778), + [anon_sym___based] = ACTIONS(5776), + [anon_sym_LBRACE] = ACTIONS(5778), + [anon_sym_RBRACE] = ACTIONS(5778), + [anon_sym_signed] = ACTIONS(5776), + [anon_sym_unsigned] = ACTIONS(5776), + [anon_sym_long] = ACTIONS(5776), + [anon_sym_short] = ACTIONS(5776), + [anon_sym_LBRACK] = ACTIONS(5778), + [anon_sym_RBRACK] = ACTIONS(5778), + [anon_sym_const] = ACTIONS(5776), + [anon_sym_constexpr] = ACTIONS(5776), + [anon_sym_volatile] = ACTIONS(5776), + [anon_sym_restrict] = ACTIONS(5776), + [anon_sym___restrict__] = ACTIONS(5776), + [anon_sym__Atomic] = ACTIONS(5776), + [anon_sym__Noreturn] = ACTIONS(5776), + [anon_sym_noreturn] = ACTIONS(5776), + [anon_sym__Nonnull] = ACTIONS(5776), + [anon_sym_mutable] = ACTIONS(5776), + [anon_sym_constinit] = ACTIONS(5776), + [anon_sym_consteval] = ACTIONS(5776), + [anon_sym_alignas] = ACTIONS(5776), + [anon_sym__Alignas] = ACTIONS(5776), + [sym_primitive_type] = ACTIONS(5776), + [anon_sym_QMARK] = ACTIONS(5778), + [anon_sym_LT_EQ_GT] = ACTIONS(5778), + [anon_sym_or] = ACTIONS(5776), + [anon_sym_and] = ACTIONS(5776), + [anon_sym_bitor] = ACTIONS(5776), + [anon_sym_xor] = ACTIONS(5776), + [anon_sym_bitand] = ACTIONS(5776), + [anon_sym_not_eq] = ACTIONS(5776), + [anon_sym_DASH_DASH] = ACTIONS(5778), + [anon_sym_PLUS_PLUS] = ACTIONS(5778), + [anon_sym_DOT] = ACTIONS(5776), + [anon_sym_DOT_STAR] = ACTIONS(5778), + [anon_sym_DASH_GT] = ACTIONS(5778), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5776), + [anon_sym_decltype] = ACTIONS(5776), + [anon_sym_final] = ACTIONS(5776), + [anon_sym_override] = ACTIONS(5776), + [anon_sym_requires] = ACTIONS(5776), }, - [1876] = { - [sym_identifier] = ACTIONS(5774), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5776), - [anon_sym_COMMA] = ACTIONS(5776), - [anon_sym_RPAREN] = ACTIONS(5776), - [anon_sym_LPAREN2] = ACTIONS(5776), - [anon_sym_DASH] = ACTIONS(5774), - [anon_sym_PLUS] = ACTIONS(5774), - [anon_sym_STAR] = ACTIONS(5776), - [anon_sym_SLASH] = ACTIONS(5774), - [anon_sym_PERCENT] = ACTIONS(5776), - [anon_sym_PIPE_PIPE] = ACTIONS(5776), - [anon_sym_AMP_AMP] = ACTIONS(5776), - [anon_sym_PIPE] = ACTIONS(5774), - [anon_sym_CARET] = ACTIONS(5776), - [anon_sym_AMP] = ACTIONS(5774), - [anon_sym_EQ_EQ] = ACTIONS(5776), - [anon_sym_BANG_EQ] = ACTIONS(5776), - [anon_sym_GT] = ACTIONS(5774), - [anon_sym_GT_EQ] = ACTIONS(5776), - [anon_sym_LT_EQ] = ACTIONS(5774), - [anon_sym_LT] = ACTIONS(5774), - [anon_sym_LT_LT] = ACTIONS(5776), - [anon_sym_GT_GT] = ACTIONS(5776), - [anon_sym_SEMI] = ACTIONS(5776), - [anon_sym___extension__] = ACTIONS(5774), - [anon_sym___attribute__] = ACTIONS(5774), - [anon_sym___attribute] = ACTIONS(5774), - [anon_sym_COLON] = ACTIONS(5776), - [anon_sym___based] = ACTIONS(5774), - [anon_sym_LBRACE] = ACTIONS(5776), - [anon_sym_RBRACE] = ACTIONS(5776), - [anon_sym_signed] = ACTIONS(5774), - [anon_sym_unsigned] = ACTIONS(5774), - [anon_sym_long] = ACTIONS(5774), - [anon_sym_short] = ACTIONS(5774), - [anon_sym_LBRACK] = ACTIONS(5776), - [anon_sym_RBRACK] = ACTIONS(5776), - [anon_sym_const] = ACTIONS(5774), - [anon_sym_constexpr] = ACTIONS(5774), - [anon_sym_volatile] = ACTIONS(5774), - [anon_sym_restrict] = ACTIONS(5774), - [anon_sym___restrict__] = ACTIONS(5774), - [anon_sym__Atomic] = ACTIONS(5774), - [anon_sym__Noreturn] = ACTIONS(5774), - [anon_sym_noreturn] = ACTIONS(5774), - [anon_sym__Nonnull] = ACTIONS(5774), - [anon_sym_mutable] = ACTIONS(5774), - [anon_sym_constinit] = ACTIONS(5774), - [anon_sym_consteval] = ACTIONS(5774), - [anon_sym_alignas] = ACTIONS(5774), - [anon_sym__Alignas] = ACTIONS(5774), - [sym_primitive_type] = ACTIONS(5774), - [anon_sym_QMARK] = ACTIONS(5776), - [anon_sym_LT_EQ_GT] = ACTIONS(5776), - [anon_sym_or] = ACTIONS(5774), - [anon_sym_and] = ACTIONS(5774), - [anon_sym_bitor] = ACTIONS(5774), - [anon_sym_xor] = ACTIONS(5774), - [anon_sym_bitand] = ACTIONS(5774), - [anon_sym_not_eq] = ACTIONS(5774), - [anon_sym_DASH_DASH] = ACTIONS(5776), - [anon_sym_PLUS_PLUS] = ACTIONS(5776), - [anon_sym_DOT] = ACTIONS(5774), - [anon_sym_DOT_STAR] = ACTIONS(5776), - [anon_sym_DASH_GT] = ACTIONS(5776), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5774), - [anon_sym_decltype] = ACTIONS(5774), - [anon_sym_final] = ACTIONS(5774), - [anon_sym_override] = ACTIONS(5774), - [anon_sym_requires] = ACTIONS(5774), + [1900] = { + [sym_identifier] = ACTIONS(5780), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5782), + [anon_sym_COMMA] = ACTIONS(5782), + [anon_sym_RPAREN] = ACTIONS(5782), + [anon_sym_LPAREN2] = ACTIONS(5782), + [anon_sym_DASH] = ACTIONS(5780), + [anon_sym_PLUS] = ACTIONS(5780), + [anon_sym_STAR] = ACTIONS(5782), + [anon_sym_SLASH] = ACTIONS(5780), + [anon_sym_PERCENT] = ACTIONS(5782), + [anon_sym_PIPE_PIPE] = ACTIONS(5782), + [anon_sym_AMP_AMP] = ACTIONS(5782), + [anon_sym_PIPE] = ACTIONS(5780), + [anon_sym_CARET] = ACTIONS(5782), + [anon_sym_AMP] = ACTIONS(5780), + [anon_sym_EQ_EQ] = ACTIONS(5782), + [anon_sym_BANG_EQ] = ACTIONS(5782), + [anon_sym_GT] = ACTIONS(5780), + [anon_sym_GT_EQ] = ACTIONS(5782), + [anon_sym_LT_EQ] = ACTIONS(5780), + [anon_sym_LT] = ACTIONS(5780), + [anon_sym_LT_LT] = ACTIONS(5782), + [anon_sym_GT_GT] = ACTIONS(5782), + [anon_sym_SEMI] = ACTIONS(5782), + [anon_sym___extension__] = ACTIONS(5780), + [anon_sym___attribute__] = ACTIONS(5780), + [anon_sym___attribute] = ACTIONS(5780), + [anon_sym_COLON] = ACTIONS(5782), + [anon_sym___based] = ACTIONS(5780), + [anon_sym_LBRACE] = ACTIONS(5782), + [anon_sym_RBRACE] = ACTIONS(5782), + [anon_sym_signed] = ACTIONS(5780), + [anon_sym_unsigned] = ACTIONS(5780), + [anon_sym_long] = ACTIONS(5780), + [anon_sym_short] = ACTIONS(5780), + [anon_sym_LBRACK] = ACTIONS(5782), + [anon_sym_RBRACK] = ACTIONS(5782), + [anon_sym_const] = ACTIONS(5780), + [anon_sym_constexpr] = ACTIONS(5780), + [anon_sym_volatile] = ACTIONS(5780), + [anon_sym_restrict] = ACTIONS(5780), + [anon_sym___restrict__] = ACTIONS(5780), + [anon_sym__Atomic] = ACTIONS(5780), + [anon_sym__Noreturn] = ACTIONS(5780), + [anon_sym_noreturn] = ACTIONS(5780), + [anon_sym__Nonnull] = ACTIONS(5780), + [anon_sym_mutable] = ACTIONS(5780), + [anon_sym_constinit] = ACTIONS(5780), + [anon_sym_consteval] = ACTIONS(5780), + [anon_sym_alignas] = ACTIONS(5780), + [anon_sym__Alignas] = ACTIONS(5780), + [sym_primitive_type] = ACTIONS(5780), + [anon_sym_QMARK] = ACTIONS(5782), + [anon_sym_LT_EQ_GT] = ACTIONS(5782), + [anon_sym_or] = ACTIONS(5780), + [anon_sym_and] = ACTIONS(5780), + [anon_sym_bitor] = ACTIONS(5780), + [anon_sym_xor] = ACTIONS(5780), + [anon_sym_bitand] = ACTIONS(5780), + [anon_sym_not_eq] = ACTIONS(5780), + [anon_sym_DASH_DASH] = ACTIONS(5782), + [anon_sym_PLUS_PLUS] = ACTIONS(5782), + [anon_sym_DOT] = ACTIONS(5780), + [anon_sym_DOT_STAR] = ACTIONS(5782), + [anon_sym_DASH_GT] = ACTIONS(5782), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5780), + [anon_sym_decltype] = ACTIONS(5780), + [anon_sym_final] = ACTIONS(5780), + [anon_sym_override] = ACTIONS(5780), + [anon_sym_requires] = ACTIONS(5780), }, - [1877] = { - [sym_identifier] = ACTIONS(5778), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5780), - [anon_sym_COMMA] = ACTIONS(5780), - [anon_sym_RPAREN] = ACTIONS(5780), - [anon_sym_LPAREN2] = ACTIONS(5780), - [anon_sym_DASH] = ACTIONS(5778), - [anon_sym_PLUS] = ACTIONS(5778), - [anon_sym_STAR] = ACTIONS(5780), - [anon_sym_SLASH] = ACTIONS(5778), - [anon_sym_PERCENT] = ACTIONS(5780), - [anon_sym_PIPE_PIPE] = ACTIONS(5780), - [anon_sym_AMP_AMP] = ACTIONS(5780), - [anon_sym_PIPE] = ACTIONS(5778), - [anon_sym_CARET] = ACTIONS(5780), - [anon_sym_AMP] = ACTIONS(5778), - [anon_sym_EQ_EQ] = ACTIONS(5780), - [anon_sym_BANG_EQ] = ACTIONS(5780), - [anon_sym_GT] = ACTIONS(5778), - [anon_sym_GT_EQ] = ACTIONS(5780), - [anon_sym_LT_EQ] = ACTIONS(5778), - [anon_sym_LT] = ACTIONS(5778), - [anon_sym_LT_LT] = ACTIONS(5780), - [anon_sym_GT_GT] = ACTIONS(5780), - [anon_sym_SEMI] = ACTIONS(5780), - [anon_sym___extension__] = ACTIONS(5778), - [anon_sym___attribute__] = ACTIONS(5778), - [anon_sym___attribute] = ACTIONS(5778), - [anon_sym_COLON] = ACTIONS(5780), - [anon_sym___based] = ACTIONS(5778), - [anon_sym_LBRACE] = ACTIONS(5780), - [anon_sym_RBRACE] = ACTIONS(5780), - [anon_sym_signed] = ACTIONS(5778), - [anon_sym_unsigned] = ACTIONS(5778), - [anon_sym_long] = ACTIONS(5778), - [anon_sym_short] = ACTIONS(5778), - [anon_sym_LBRACK] = ACTIONS(5780), - [anon_sym_RBRACK] = ACTIONS(5780), - [anon_sym_const] = ACTIONS(5778), - [anon_sym_constexpr] = ACTIONS(5778), - [anon_sym_volatile] = ACTIONS(5778), - [anon_sym_restrict] = ACTIONS(5778), - [anon_sym___restrict__] = ACTIONS(5778), - [anon_sym__Atomic] = ACTIONS(5778), - [anon_sym__Noreturn] = ACTIONS(5778), - [anon_sym_noreturn] = ACTIONS(5778), - [anon_sym__Nonnull] = ACTIONS(5778), - [anon_sym_mutable] = ACTIONS(5778), - [anon_sym_constinit] = ACTIONS(5778), - [anon_sym_consteval] = ACTIONS(5778), - [anon_sym_alignas] = ACTIONS(5778), - [anon_sym__Alignas] = ACTIONS(5778), - [sym_primitive_type] = ACTIONS(5778), - [anon_sym_QMARK] = ACTIONS(5780), - [anon_sym_LT_EQ_GT] = ACTIONS(5780), - [anon_sym_or] = ACTIONS(5778), - [anon_sym_and] = ACTIONS(5778), - [anon_sym_bitor] = ACTIONS(5778), - [anon_sym_xor] = ACTIONS(5778), - [anon_sym_bitand] = ACTIONS(5778), - [anon_sym_not_eq] = ACTIONS(5778), - [anon_sym_DASH_DASH] = ACTIONS(5780), - [anon_sym_PLUS_PLUS] = ACTIONS(5780), - [anon_sym_DOT] = ACTIONS(5778), - [anon_sym_DOT_STAR] = ACTIONS(5780), - [anon_sym_DASH_GT] = ACTIONS(5780), + [1901] = { + [sym_identifier] = ACTIONS(5784), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5786), + [anon_sym_COMMA] = ACTIONS(5786), + [anon_sym_RPAREN] = ACTIONS(5786), + [anon_sym_LPAREN2] = ACTIONS(5786), + [anon_sym_DASH] = ACTIONS(5784), + [anon_sym_PLUS] = ACTIONS(5784), + [anon_sym_STAR] = ACTIONS(5786), + [anon_sym_SLASH] = ACTIONS(5784), + [anon_sym_PERCENT] = ACTIONS(5786), + [anon_sym_PIPE_PIPE] = ACTIONS(5786), + [anon_sym_AMP_AMP] = ACTIONS(5786), + [anon_sym_PIPE] = ACTIONS(5784), + [anon_sym_CARET] = ACTIONS(5786), + [anon_sym_AMP] = ACTIONS(5784), + [anon_sym_EQ_EQ] = ACTIONS(5786), + [anon_sym_BANG_EQ] = ACTIONS(5786), + [anon_sym_GT] = ACTIONS(5784), + [anon_sym_GT_EQ] = ACTIONS(5786), + [anon_sym_LT_EQ] = ACTIONS(5784), + [anon_sym_LT] = ACTIONS(5784), + [anon_sym_LT_LT] = ACTIONS(5786), + [anon_sym_GT_GT] = ACTIONS(5786), + [anon_sym_SEMI] = ACTIONS(5786), + [anon_sym___extension__] = ACTIONS(5784), + [anon_sym___attribute__] = ACTIONS(5784), + [anon_sym___attribute] = ACTIONS(5784), + [anon_sym_COLON] = ACTIONS(5786), + [anon_sym___based] = ACTIONS(5784), + [anon_sym_LBRACE] = ACTIONS(5786), + [anon_sym_RBRACE] = ACTIONS(5786), + [anon_sym_signed] = ACTIONS(5784), + [anon_sym_unsigned] = ACTIONS(5784), + [anon_sym_long] = ACTIONS(5784), + [anon_sym_short] = ACTIONS(5784), + [anon_sym_LBRACK] = ACTIONS(5786), + [anon_sym_RBRACK] = ACTIONS(5786), + [anon_sym_const] = ACTIONS(5784), + [anon_sym_constexpr] = ACTIONS(5784), + [anon_sym_volatile] = ACTIONS(5784), + [anon_sym_restrict] = ACTIONS(5784), + [anon_sym___restrict__] = ACTIONS(5784), + [anon_sym__Atomic] = ACTIONS(5784), + [anon_sym__Noreturn] = ACTIONS(5784), + [anon_sym_noreturn] = ACTIONS(5784), + [anon_sym__Nonnull] = ACTIONS(5784), + [anon_sym_mutable] = ACTIONS(5784), + [anon_sym_constinit] = ACTIONS(5784), + [anon_sym_consteval] = ACTIONS(5784), + [anon_sym_alignas] = ACTIONS(5784), + [anon_sym__Alignas] = ACTIONS(5784), + [sym_primitive_type] = ACTIONS(5784), + [anon_sym_QMARK] = ACTIONS(5786), + [anon_sym_LT_EQ_GT] = ACTIONS(5786), + [anon_sym_or] = ACTIONS(5784), + [anon_sym_and] = ACTIONS(5784), + [anon_sym_bitor] = ACTIONS(5784), + [anon_sym_xor] = ACTIONS(5784), + [anon_sym_bitand] = ACTIONS(5784), + [anon_sym_not_eq] = ACTIONS(5784), + [anon_sym_DASH_DASH] = ACTIONS(5786), + [anon_sym_PLUS_PLUS] = ACTIONS(5786), + [anon_sym_DOT] = ACTIONS(5784), + [anon_sym_DOT_STAR] = ACTIONS(5786), + [anon_sym_DASH_GT] = ACTIONS(5786), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5784), + [anon_sym_decltype] = ACTIONS(5784), + [anon_sym_final] = ACTIONS(5784), + [anon_sym_override] = ACTIONS(5784), + [anon_sym_requires] = ACTIONS(5784), + }, + [1902] = { + [sym_identifier] = ACTIONS(5788), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5790), + [anon_sym_COMMA] = ACTIONS(5790), + [anon_sym_RPAREN] = ACTIONS(5790), + [anon_sym_LPAREN2] = ACTIONS(5790), + [anon_sym_DASH] = ACTIONS(5788), + [anon_sym_PLUS] = ACTIONS(5788), + [anon_sym_STAR] = ACTIONS(5790), + [anon_sym_SLASH] = ACTIONS(5788), + [anon_sym_PERCENT] = ACTIONS(5790), + [anon_sym_PIPE_PIPE] = ACTIONS(5790), + [anon_sym_AMP_AMP] = ACTIONS(5790), + [anon_sym_PIPE] = ACTIONS(5788), + [anon_sym_CARET] = ACTIONS(5790), + [anon_sym_AMP] = ACTIONS(5788), + [anon_sym_EQ_EQ] = ACTIONS(5790), + [anon_sym_BANG_EQ] = ACTIONS(5790), + [anon_sym_GT] = ACTIONS(5788), + [anon_sym_GT_EQ] = ACTIONS(5790), + [anon_sym_LT_EQ] = ACTIONS(5788), + [anon_sym_LT] = ACTIONS(5788), + [anon_sym_LT_LT] = ACTIONS(5790), + [anon_sym_GT_GT] = ACTIONS(5790), + [anon_sym_SEMI] = ACTIONS(5790), + [anon_sym___extension__] = ACTIONS(5788), + [anon_sym___attribute__] = ACTIONS(5788), + [anon_sym___attribute] = ACTIONS(5788), + [anon_sym_COLON] = ACTIONS(5790), + [anon_sym___based] = ACTIONS(5788), + [anon_sym_LBRACE] = ACTIONS(5790), + [anon_sym_RBRACE] = ACTIONS(5790), + [anon_sym_signed] = ACTIONS(5788), + [anon_sym_unsigned] = ACTIONS(5788), + [anon_sym_long] = ACTIONS(5788), + [anon_sym_short] = ACTIONS(5788), + [anon_sym_LBRACK] = ACTIONS(5790), + [anon_sym_RBRACK] = ACTIONS(5790), + [anon_sym_const] = ACTIONS(5788), + [anon_sym_constexpr] = ACTIONS(5788), + [anon_sym_volatile] = ACTIONS(5788), + [anon_sym_restrict] = ACTIONS(5788), + [anon_sym___restrict__] = ACTIONS(5788), + [anon_sym__Atomic] = ACTIONS(5788), + [anon_sym__Noreturn] = ACTIONS(5788), + [anon_sym_noreturn] = ACTIONS(5788), + [anon_sym__Nonnull] = ACTIONS(5788), + [anon_sym_mutable] = ACTIONS(5788), + [anon_sym_constinit] = ACTIONS(5788), + [anon_sym_consteval] = ACTIONS(5788), + [anon_sym_alignas] = ACTIONS(5788), + [anon_sym__Alignas] = ACTIONS(5788), + [sym_primitive_type] = ACTIONS(5788), + [anon_sym_QMARK] = ACTIONS(5790), + [anon_sym_LT_EQ_GT] = ACTIONS(5790), + [anon_sym_or] = ACTIONS(5788), + [anon_sym_and] = ACTIONS(5788), + [anon_sym_bitor] = ACTIONS(5788), + [anon_sym_xor] = ACTIONS(5788), + [anon_sym_bitand] = ACTIONS(5788), + [anon_sym_not_eq] = ACTIONS(5788), + [anon_sym_DASH_DASH] = ACTIONS(5790), + [anon_sym_PLUS_PLUS] = ACTIONS(5790), + [anon_sym_DOT] = ACTIONS(5788), + [anon_sym_DOT_STAR] = ACTIONS(5790), + [anon_sym_DASH_GT] = ACTIONS(5790), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5788), + [anon_sym_decltype] = ACTIONS(5788), + [anon_sym_final] = ACTIONS(5788), + [anon_sym_override] = ACTIONS(5788), + [anon_sym_requires] = ACTIONS(5788), + }, + [1903] = { + [sym_catch_clause] = STATE(1870), + [aux_sym_constructor_try_statement_repeat1] = STATE(1870), + [sym_identifier] = ACTIONS(2590), + [aux_sym_preproc_def_token1] = ACTIONS(2590), + [aux_sym_preproc_if_token1] = ACTIONS(2590), + [aux_sym_preproc_if_token2] = ACTIONS(2590), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2590), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2590), + [sym_preproc_directive] = ACTIONS(2590), + [anon_sym_LPAREN2] = ACTIONS(2592), + [anon_sym_TILDE] = ACTIONS(2592), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_AMP_AMP] = ACTIONS(2592), + [anon_sym_AMP] = ACTIONS(2590), + [anon_sym_SEMI] = ACTIONS(2592), + [anon_sym___extension__] = ACTIONS(2590), + [anon_sym_typedef] = ACTIONS(2590), + [anon_sym_virtual] = ACTIONS(2590), + [anon_sym_extern] = ACTIONS(2590), + [anon_sym___attribute__] = ACTIONS(2590), + [anon_sym___attribute] = ACTIONS(2590), + [anon_sym_using] = ACTIONS(2590), + [anon_sym_COLON_COLON] = ACTIONS(2592), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2592), + [anon_sym___declspec] = ACTIONS(2590), + [anon_sym___based] = ACTIONS(2590), + [anon_sym_signed] = ACTIONS(2590), + [anon_sym_unsigned] = ACTIONS(2590), + [anon_sym_long] = ACTIONS(2590), + [anon_sym_short] = ACTIONS(2590), + [anon_sym_LBRACK] = ACTIONS(2590), + [anon_sym_static] = ACTIONS(2590), + [anon_sym_register] = ACTIONS(2590), + [anon_sym_inline] = ACTIONS(2590), + [anon_sym___inline] = ACTIONS(2590), + [anon_sym___inline__] = ACTIONS(2590), + [anon_sym___forceinline] = ACTIONS(2590), + [anon_sym_thread_local] = ACTIONS(2590), + [anon_sym___thread] = ACTIONS(2590), + [anon_sym_const] = ACTIONS(2590), + [anon_sym_constexpr] = ACTIONS(2590), + [anon_sym_volatile] = ACTIONS(2590), + [anon_sym_restrict] = ACTIONS(2590), + [anon_sym___restrict__] = ACTIONS(2590), + [anon_sym__Atomic] = ACTIONS(2590), + [anon_sym__Noreturn] = ACTIONS(2590), + [anon_sym_noreturn] = ACTIONS(2590), + [anon_sym__Nonnull] = ACTIONS(2590), + [anon_sym_mutable] = ACTIONS(2590), + [anon_sym_constinit] = ACTIONS(2590), + [anon_sym_consteval] = ACTIONS(2590), + [anon_sym_alignas] = ACTIONS(2590), + [anon_sym__Alignas] = ACTIONS(2590), + [sym_primitive_type] = ACTIONS(2590), + [anon_sym_enum] = ACTIONS(2590), + [anon_sym_class] = ACTIONS(2590), + [anon_sym_struct] = ACTIONS(2590), + [anon_sym_union] = ACTIONS(2590), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5778), - [anon_sym_decltype] = ACTIONS(5778), - [anon_sym_final] = ACTIONS(5778), - [anon_sym_override] = ACTIONS(5778), - [anon_sym_requires] = ACTIONS(5778), + [sym_auto] = ACTIONS(2590), + [anon_sym_decltype] = ACTIONS(2590), + [anon_sym_explicit] = ACTIONS(2590), + [anon_sym_typename] = ACTIONS(2590), + [anon_sym_private] = ACTIONS(2590), + [anon_sym_template] = ACTIONS(2590), + [anon_sym_operator] = ACTIONS(2590), + [anon_sym_friend] = ACTIONS(2590), + [anon_sym_public] = ACTIONS(2590), + [anon_sym_protected] = ACTIONS(2590), + [anon_sym_static_assert] = ACTIONS(2590), + [anon_sym_catch] = ACTIONS(5676), }, - [1878] = { - [sym_identifier] = ACTIONS(5782), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5784), - [anon_sym_COMMA] = ACTIONS(5784), - [anon_sym_RPAREN] = ACTIONS(5784), - [anon_sym_LPAREN2] = ACTIONS(5784), - [anon_sym_DASH] = ACTIONS(5782), - [anon_sym_PLUS] = ACTIONS(5782), - [anon_sym_STAR] = ACTIONS(5784), - [anon_sym_SLASH] = ACTIONS(5782), - [anon_sym_PERCENT] = ACTIONS(5784), - [anon_sym_PIPE_PIPE] = ACTIONS(5784), - [anon_sym_AMP_AMP] = ACTIONS(5784), - [anon_sym_PIPE] = ACTIONS(5782), - [anon_sym_CARET] = ACTIONS(5784), - [anon_sym_AMP] = ACTIONS(5782), - [anon_sym_EQ_EQ] = ACTIONS(5784), - [anon_sym_BANG_EQ] = ACTIONS(5784), - [anon_sym_GT] = ACTIONS(5782), - [anon_sym_GT_EQ] = ACTIONS(5784), - [anon_sym_LT_EQ] = ACTIONS(5782), - [anon_sym_LT] = ACTIONS(5782), - [anon_sym_LT_LT] = ACTIONS(5784), - [anon_sym_GT_GT] = ACTIONS(5784), - [anon_sym_SEMI] = ACTIONS(5784), - [anon_sym___extension__] = ACTIONS(5782), - [anon_sym___attribute__] = ACTIONS(5782), - [anon_sym___attribute] = ACTIONS(5782), - [anon_sym_COLON] = ACTIONS(5784), - [anon_sym___based] = ACTIONS(5782), - [anon_sym_LBRACE] = ACTIONS(5784), - [anon_sym_RBRACE] = ACTIONS(5784), - [anon_sym_signed] = ACTIONS(5782), - [anon_sym_unsigned] = ACTIONS(5782), - [anon_sym_long] = ACTIONS(5782), - [anon_sym_short] = ACTIONS(5782), - [anon_sym_LBRACK] = ACTIONS(5784), - [anon_sym_RBRACK] = ACTIONS(5784), - [anon_sym_const] = ACTIONS(5782), - [anon_sym_constexpr] = ACTIONS(5782), - [anon_sym_volatile] = ACTIONS(5782), - [anon_sym_restrict] = ACTIONS(5782), - [anon_sym___restrict__] = ACTIONS(5782), - [anon_sym__Atomic] = ACTIONS(5782), - [anon_sym__Noreturn] = ACTIONS(5782), - [anon_sym_noreturn] = ACTIONS(5782), - [anon_sym__Nonnull] = ACTIONS(5782), - [anon_sym_mutable] = ACTIONS(5782), - [anon_sym_constinit] = ACTIONS(5782), - [anon_sym_consteval] = ACTIONS(5782), - [anon_sym_alignas] = ACTIONS(5782), - [anon_sym__Alignas] = ACTIONS(5782), - [sym_primitive_type] = ACTIONS(5782), - [anon_sym_QMARK] = ACTIONS(5784), - [anon_sym_LT_EQ_GT] = ACTIONS(5784), - [anon_sym_or] = ACTIONS(5782), - [anon_sym_and] = ACTIONS(5782), - [anon_sym_bitor] = ACTIONS(5782), - [anon_sym_xor] = ACTIONS(5782), - [anon_sym_bitand] = ACTIONS(5782), - [anon_sym_not_eq] = ACTIONS(5782), - [anon_sym_DASH_DASH] = ACTIONS(5784), - [anon_sym_PLUS_PLUS] = ACTIONS(5784), - [anon_sym_DOT] = ACTIONS(5782), - [anon_sym_DOT_STAR] = ACTIONS(5784), - [anon_sym_DASH_GT] = ACTIONS(5784), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5782), - [anon_sym_decltype] = ACTIONS(5782), - [anon_sym_final] = ACTIONS(5782), - [anon_sym_override] = ACTIONS(5782), - [anon_sym_requires] = ACTIONS(5782), + [1904] = { + [sym_identifier] = ACTIONS(5792), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5794), + [anon_sym_COMMA] = ACTIONS(5794), + [anon_sym_RPAREN] = ACTIONS(5794), + [anon_sym_LPAREN2] = ACTIONS(5794), + [anon_sym_TILDE] = ACTIONS(5794), + [anon_sym_STAR] = ACTIONS(5794), + [anon_sym_AMP_AMP] = ACTIONS(5794), + [anon_sym_AMP] = ACTIONS(5792), + [anon_sym_SEMI] = ACTIONS(5794), + [anon_sym___extension__] = ACTIONS(5792), + [anon_sym_virtual] = ACTIONS(5792), + [anon_sym_extern] = ACTIONS(5792), + [anon_sym___attribute__] = ACTIONS(5792), + [anon_sym___attribute] = ACTIONS(5792), + [anon_sym_COLON_COLON] = ACTIONS(5794), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5794), + [anon_sym___declspec] = ACTIONS(5792), + [anon_sym___based] = ACTIONS(5792), + [anon_sym_LBRACE] = ACTIONS(5794), + [anon_sym_signed] = ACTIONS(5792), + [anon_sym_unsigned] = ACTIONS(5792), + [anon_sym_long] = ACTIONS(5792), + [anon_sym_short] = ACTIONS(5792), + [anon_sym_LBRACK] = ACTIONS(5792), + [anon_sym_static] = ACTIONS(5792), + [anon_sym_EQ] = ACTIONS(5794), + [anon_sym_register] = ACTIONS(5792), + [anon_sym_inline] = ACTIONS(5792), + [anon_sym___inline] = ACTIONS(5792), + [anon_sym___inline__] = ACTIONS(5792), + [anon_sym___forceinline] = ACTIONS(5792), + [anon_sym_thread_local] = ACTIONS(5792), + [anon_sym___thread] = ACTIONS(5792), + [anon_sym_const] = ACTIONS(5792), + [anon_sym_constexpr] = ACTIONS(5792), + [anon_sym_volatile] = ACTIONS(5792), + [anon_sym_restrict] = ACTIONS(5792), + [anon_sym___restrict__] = ACTIONS(5792), + [anon_sym__Atomic] = ACTIONS(5792), + [anon_sym__Noreturn] = ACTIONS(5792), + [anon_sym_noreturn] = ACTIONS(5792), + [anon_sym__Nonnull] = ACTIONS(5792), + [anon_sym_mutable] = ACTIONS(5792), + [anon_sym_constinit] = ACTIONS(5792), + [anon_sym_consteval] = ACTIONS(5792), + [anon_sym_alignas] = ACTIONS(5792), + [anon_sym__Alignas] = ACTIONS(5792), + [sym_primitive_type] = ACTIONS(5792), + [anon_sym_enum] = ACTIONS(5792), + [anon_sym_class] = ACTIONS(5792), + [anon_sym_struct] = ACTIONS(5792), + [anon_sym_union] = ACTIONS(5792), + [anon_sym_asm] = ACTIONS(5792), + [anon_sym___asm__] = ACTIONS(5792), + [anon_sym___asm] = ACTIONS(5792), + [anon_sym_DASH_GT] = ACTIONS(5794), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5792), + [anon_sym_decltype] = ACTIONS(5792), + [anon_sym_final] = ACTIONS(5792), + [anon_sym_override] = ACTIONS(5792), + [anon_sym_explicit] = ACTIONS(5792), + [anon_sym_typename] = ACTIONS(5792), + [anon_sym_template] = ACTIONS(5792), + [anon_sym_GT2] = ACTIONS(5794), + [anon_sym_operator] = ACTIONS(5792), + [anon_sym_try] = ACTIONS(5792), + [anon_sym_noexcept] = ACTIONS(5792), + [anon_sym_throw] = ACTIONS(5792), + [anon_sym_requires] = ACTIONS(5792), }, - [1879] = { - [sym_identifier] = ACTIONS(5450), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5452), - [anon_sym_COMMA] = ACTIONS(5452), - [anon_sym_RPAREN] = ACTIONS(5452), - [anon_sym_LPAREN2] = ACTIONS(5452), - [anon_sym_DASH] = ACTIONS(5450), - [anon_sym_PLUS] = ACTIONS(5450), - [anon_sym_STAR] = ACTIONS(5452), - [anon_sym_SLASH] = ACTIONS(5450), - [anon_sym_PERCENT] = ACTIONS(5452), - [anon_sym_PIPE_PIPE] = ACTIONS(5452), - [anon_sym_AMP_AMP] = ACTIONS(5452), - [anon_sym_PIPE] = ACTIONS(5450), - [anon_sym_CARET] = ACTIONS(5452), - [anon_sym_AMP] = ACTIONS(5450), - [anon_sym_EQ_EQ] = ACTIONS(5452), - [anon_sym_BANG_EQ] = ACTIONS(5452), - [anon_sym_GT] = ACTIONS(5450), - [anon_sym_GT_EQ] = ACTIONS(5452), - [anon_sym_LT_EQ] = ACTIONS(5450), - [anon_sym_LT] = ACTIONS(5450), - [anon_sym_LT_LT] = ACTIONS(5452), - [anon_sym_GT_GT] = ACTIONS(5452), - [anon_sym_SEMI] = ACTIONS(5452), - [anon_sym___extension__] = ACTIONS(5450), - [anon_sym___attribute__] = ACTIONS(5450), - [anon_sym___attribute] = ACTIONS(5450), - [anon_sym_COLON] = ACTIONS(5452), - [anon_sym___based] = ACTIONS(5450), - [anon_sym_LBRACE] = ACTIONS(5452), - [anon_sym_RBRACE] = ACTIONS(5452), - [anon_sym_signed] = ACTIONS(5450), - [anon_sym_unsigned] = ACTIONS(5450), - [anon_sym_long] = ACTIONS(5450), - [anon_sym_short] = ACTIONS(5450), - [anon_sym_LBRACK] = ACTIONS(5452), - [anon_sym_RBRACK] = ACTIONS(5452), - [anon_sym_const] = ACTIONS(5450), - [anon_sym_constexpr] = ACTIONS(5450), - [anon_sym_volatile] = ACTIONS(5450), - [anon_sym_restrict] = ACTIONS(5450), - [anon_sym___restrict__] = ACTIONS(5450), - [anon_sym__Atomic] = ACTIONS(5450), - [anon_sym__Noreturn] = ACTIONS(5450), - [anon_sym_noreturn] = ACTIONS(5450), - [anon_sym__Nonnull] = ACTIONS(5450), - [anon_sym_mutable] = ACTIONS(5450), - [anon_sym_constinit] = ACTIONS(5450), - [anon_sym_consteval] = ACTIONS(5450), - [anon_sym_alignas] = ACTIONS(5450), - [anon_sym__Alignas] = ACTIONS(5450), - [sym_primitive_type] = ACTIONS(5450), - [anon_sym_QMARK] = ACTIONS(5452), - [anon_sym_LT_EQ_GT] = ACTIONS(5452), - [anon_sym_or] = ACTIONS(5450), - [anon_sym_and] = ACTIONS(5450), - [anon_sym_bitor] = ACTIONS(5450), - [anon_sym_xor] = ACTIONS(5450), - [anon_sym_bitand] = ACTIONS(5450), - [anon_sym_not_eq] = ACTIONS(5450), - [anon_sym_DASH_DASH] = ACTIONS(5452), - [anon_sym_PLUS_PLUS] = ACTIONS(5452), - [anon_sym_DOT] = ACTIONS(5450), - [anon_sym_DOT_STAR] = ACTIONS(5452), - [anon_sym_DASH_GT] = ACTIONS(5452), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5450), - [anon_sym_decltype] = ACTIONS(5450), - [anon_sym_final] = ACTIONS(5450), - [anon_sym_override] = ACTIONS(5450), - [anon_sym_requires] = ACTIONS(5450), + [1905] = { + [sym_identifier] = ACTIONS(5796), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5798), + [anon_sym_COMMA] = ACTIONS(5798), + [anon_sym_RPAREN] = ACTIONS(5798), + [anon_sym_LPAREN2] = ACTIONS(5798), + [anon_sym_DASH] = ACTIONS(5796), + [anon_sym_PLUS] = ACTIONS(5796), + [anon_sym_STAR] = ACTIONS(5798), + [anon_sym_SLASH] = ACTIONS(5796), + [anon_sym_PERCENT] = ACTIONS(5798), + [anon_sym_PIPE_PIPE] = ACTIONS(5798), + [anon_sym_AMP_AMP] = ACTIONS(5798), + [anon_sym_PIPE] = ACTIONS(5796), + [anon_sym_CARET] = ACTIONS(5798), + [anon_sym_AMP] = ACTIONS(5796), + [anon_sym_EQ_EQ] = ACTIONS(5798), + [anon_sym_BANG_EQ] = ACTIONS(5798), + [anon_sym_GT] = ACTIONS(5796), + [anon_sym_GT_EQ] = ACTIONS(5798), + [anon_sym_LT_EQ] = ACTIONS(5796), + [anon_sym_LT] = ACTIONS(5796), + [anon_sym_LT_LT] = ACTIONS(5798), + [anon_sym_GT_GT] = ACTIONS(5798), + [anon_sym_SEMI] = ACTIONS(5798), + [anon_sym___extension__] = ACTIONS(5796), + [anon_sym___attribute__] = ACTIONS(5796), + [anon_sym___attribute] = ACTIONS(5796), + [anon_sym_COLON] = ACTIONS(5798), + [anon_sym___based] = ACTIONS(5796), + [anon_sym_LBRACE] = ACTIONS(5798), + [anon_sym_RBRACE] = ACTIONS(5798), + [anon_sym_signed] = ACTIONS(5796), + [anon_sym_unsigned] = ACTIONS(5796), + [anon_sym_long] = ACTIONS(5796), + [anon_sym_short] = ACTIONS(5796), + [anon_sym_LBRACK] = ACTIONS(5798), + [anon_sym_RBRACK] = ACTIONS(5798), + [anon_sym_const] = ACTIONS(5796), + [anon_sym_constexpr] = ACTIONS(5796), + [anon_sym_volatile] = ACTIONS(5796), + [anon_sym_restrict] = ACTIONS(5796), + [anon_sym___restrict__] = ACTIONS(5796), + [anon_sym__Atomic] = ACTIONS(5796), + [anon_sym__Noreturn] = ACTIONS(5796), + [anon_sym_noreturn] = ACTIONS(5796), + [anon_sym__Nonnull] = ACTIONS(5796), + [anon_sym_mutable] = ACTIONS(5796), + [anon_sym_constinit] = ACTIONS(5796), + [anon_sym_consteval] = ACTIONS(5796), + [anon_sym_alignas] = ACTIONS(5796), + [anon_sym__Alignas] = ACTIONS(5796), + [sym_primitive_type] = ACTIONS(5796), + [anon_sym_QMARK] = ACTIONS(5798), + [anon_sym_LT_EQ_GT] = ACTIONS(5798), + [anon_sym_or] = ACTIONS(5796), + [anon_sym_and] = ACTIONS(5796), + [anon_sym_bitor] = ACTIONS(5796), + [anon_sym_xor] = ACTIONS(5796), + [anon_sym_bitand] = ACTIONS(5796), + [anon_sym_not_eq] = ACTIONS(5796), + [anon_sym_DASH_DASH] = ACTIONS(5798), + [anon_sym_PLUS_PLUS] = ACTIONS(5798), + [anon_sym_DOT] = ACTIONS(5796), + [anon_sym_DOT_STAR] = ACTIONS(5798), + [anon_sym_DASH_GT] = ACTIONS(5798), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5796), + [anon_sym_decltype] = ACTIONS(5796), + [anon_sym_final] = ACTIONS(5796), + [anon_sym_override] = ACTIONS(5796), + [anon_sym_requires] = ACTIONS(5796), }, - [1880] = { - [sym_identifier] = ACTIONS(5786), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5788), - [anon_sym_COMMA] = ACTIONS(5788), - [anon_sym_RPAREN] = ACTIONS(5788), - [anon_sym_LPAREN2] = ACTIONS(5788), - [anon_sym_DASH] = ACTIONS(5786), - [anon_sym_PLUS] = ACTIONS(5786), - [anon_sym_STAR] = ACTIONS(5788), - [anon_sym_SLASH] = ACTIONS(5786), - [anon_sym_PERCENT] = ACTIONS(5788), - [anon_sym_PIPE_PIPE] = ACTIONS(5788), - [anon_sym_AMP_AMP] = ACTIONS(5788), - [anon_sym_PIPE] = ACTIONS(5786), - [anon_sym_CARET] = ACTIONS(5788), - [anon_sym_AMP] = ACTIONS(5786), - [anon_sym_EQ_EQ] = ACTIONS(5788), - [anon_sym_BANG_EQ] = ACTIONS(5788), - [anon_sym_GT] = ACTIONS(5786), - [anon_sym_GT_EQ] = ACTIONS(5788), - [anon_sym_LT_EQ] = ACTIONS(5786), - [anon_sym_LT] = ACTIONS(5786), - [anon_sym_LT_LT] = ACTIONS(5788), - [anon_sym_GT_GT] = ACTIONS(5788), - [anon_sym_SEMI] = ACTIONS(5788), - [anon_sym___extension__] = ACTIONS(5786), - [anon_sym___attribute__] = ACTIONS(5786), - [anon_sym___attribute] = ACTIONS(5786), - [anon_sym_COLON] = ACTIONS(5788), - [anon_sym___based] = ACTIONS(5786), - [anon_sym_LBRACE] = ACTIONS(5788), - [anon_sym_RBRACE] = ACTIONS(5788), - [anon_sym_signed] = ACTIONS(5786), - [anon_sym_unsigned] = ACTIONS(5786), - [anon_sym_long] = ACTIONS(5786), - [anon_sym_short] = ACTIONS(5786), - [anon_sym_LBRACK] = ACTIONS(5788), - [anon_sym_RBRACK] = ACTIONS(5788), - [anon_sym_const] = ACTIONS(5786), - [anon_sym_constexpr] = ACTIONS(5786), - [anon_sym_volatile] = ACTIONS(5786), - [anon_sym_restrict] = ACTIONS(5786), - [anon_sym___restrict__] = ACTIONS(5786), - [anon_sym__Atomic] = ACTIONS(5786), - [anon_sym__Noreturn] = ACTIONS(5786), - [anon_sym_noreturn] = ACTIONS(5786), - [anon_sym__Nonnull] = ACTIONS(5786), - [anon_sym_mutable] = ACTIONS(5786), - [anon_sym_constinit] = ACTIONS(5786), - [anon_sym_consteval] = ACTIONS(5786), - [anon_sym_alignas] = ACTIONS(5786), - [anon_sym__Alignas] = ACTIONS(5786), - [sym_primitive_type] = ACTIONS(5786), - [anon_sym_QMARK] = ACTIONS(5788), - [anon_sym_LT_EQ_GT] = ACTIONS(5788), - [anon_sym_or] = ACTIONS(5786), - [anon_sym_and] = ACTIONS(5786), - [anon_sym_bitor] = ACTIONS(5786), - [anon_sym_xor] = ACTIONS(5786), - [anon_sym_bitand] = ACTIONS(5786), - [anon_sym_not_eq] = ACTIONS(5786), - [anon_sym_DASH_DASH] = ACTIONS(5788), - [anon_sym_PLUS_PLUS] = ACTIONS(5788), - [anon_sym_DOT] = ACTIONS(5786), - [anon_sym_DOT_STAR] = ACTIONS(5788), - [anon_sym_DASH_GT] = ACTIONS(5788), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5786), - [anon_sym_decltype] = ACTIONS(5786), - [anon_sym_final] = ACTIONS(5786), - [anon_sym_override] = ACTIONS(5786), - [anon_sym_requires] = ACTIONS(5786), + [1906] = { + [sym_identifier] = ACTIONS(5800), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5802), + [anon_sym_COMMA] = ACTIONS(5802), + [anon_sym_RPAREN] = ACTIONS(5802), + [anon_sym_LPAREN2] = ACTIONS(5802), + [anon_sym_DASH] = ACTIONS(5800), + [anon_sym_PLUS] = ACTIONS(5800), + [anon_sym_STAR] = ACTIONS(5802), + [anon_sym_SLASH] = ACTIONS(5800), + [anon_sym_PERCENT] = ACTIONS(5802), + [anon_sym_PIPE_PIPE] = ACTIONS(5802), + [anon_sym_AMP_AMP] = ACTIONS(5802), + [anon_sym_PIPE] = ACTIONS(5800), + [anon_sym_CARET] = ACTIONS(5802), + [anon_sym_AMP] = ACTIONS(5800), + [anon_sym_EQ_EQ] = ACTIONS(5802), + [anon_sym_BANG_EQ] = ACTIONS(5802), + [anon_sym_GT] = ACTIONS(5800), + [anon_sym_GT_EQ] = ACTIONS(5802), + [anon_sym_LT_EQ] = ACTIONS(5800), + [anon_sym_LT] = ACTIONS(5800), + [anon_sym_LT_LT] = ACTIONS(5802), + [anon_sym_GT_GT] = ACTIONS(5802), + [anon_sym_SEMI] = ACTIONS(5802), + [anon_sym___extension__] = ACTIONS(5800), + [anon_sym___attribute__] = ACTIONS(5800), + [anon_sym___attribute] = ACTIONS(5800), + [anon_sym_COLON] = ACTIONS(5802), + [anon_sym___based] = ACTIONS(5800), + [anon_sym_LBRACE] = ACTIONS(5802), + [anon_sym_RBRACE] = ACTIONS(5802), + [anon_sym_signed] = ACTIONS(5800), + [anon_sym_unsigned] = ACTIONS(5800), + [anon_sym_long] = ACTIONS(5800), + [anon_sym_short] = ACTIONS(5800), + [anon_sym_LBRACK] = ACTIONS(5802), + [anon_sym_RBRACK] = ACTIONS(5802), + [anon_sym_const] = ACTIONS(5800), + [anon_sym_constexpr] = ACTIONS(5800), + [anon_sym_volatile] = ACTIONS(5800), + [anon_sym_restrict] = ACTIONS(5800), + [anon_sym___restrict__] = ACTIONS(5800), + [anon_sym__Atomic] = ACTIONS(5800), + [anon_sym__Noreturn] = ACTIONS(5800), + [anon_sym_noreturn] = ACTIONS(5800), + [anon_sym__Nonnull] = ACTIONS(5800), + [anon_sym_mutable] = ACTIONS(5800), + [anon_sym_constinit] = ACTIONS(5800), + [anon_sym_consteval] = ACTIONS(5800), + [anon_sym_alignas] = ACTIONS(5800), + [anon_sym__Alignas] = ACTIONS(5800), + [sym_primitive_type] = ACTIONS(5800), + [anon_sym_QMARK] = ACTIONS(5802), + [anon_sym_LT_EQ_GT] = ACTIONS(5802), + [anon_sym_or] = ACTIONS(5800), + [anon_sym_and] = ACTIONS(5800), + [anon_sym_bitor] = ACTIONS(5800), + [anon_sym_xor] = ACTIONS(5800), + [anon_sym_bitand] = ACTIONS(5800), + [anon_sym_not_eq] = ACTIONS(5800), + [anon_sym_DASH_DASH] = ACTIONS(5802), + [anon_sym_PLUS_PLUS] = ACTIONS(5802), + [anon_sym_DOT] = ACTIONS(5800), + [anon_sym_DOT_STAR] = ACTIONS(5802), + [anon_sym_DASH_GT] = ACTIONS(5802), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5800), + [anon_sym_decltype] = ACTIONS(5800), + [anon_sym_final] = ACTIONS(5800), + [anon_sym_override] = ACTIONS(5800), + [anon_sym_requires] = ACTIONS(5800), }, - [1881] = { - [sym_identifier] = ACTIONS(5790), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5792), - [anon_sym_COMMA] = ACTIONS(5792), - [anon_sym_RPAREN] = ACTIONS(5792), - [anon_sym_LPAREN2] = ACTIONS(5792), - [anon_sym_DASH] = ACTIONS(5790), - [anon_sym_PLUS] = ACTIONS(5790), - [anon_sym_STAR] = ACTIONS(5792), - [anon_sym_SLASH] = ACTIONS(5790), - [anon_sym_PERCENT] = ACTIONS(5792), - [anon_sym_PIPE_PIPE] = ACTIONS(5792), - [anon_sym_AMP_AMP] = ACTIONS(5792), - [anon_sym_PIPE] = ACTIONS(5790), - [anon_sym_CARET] = ACTIONS(5792), - [anon_sym_AMP] = ACTIONS(5790), - [anon_sym_EQ_EQ] = ACTIONS(5792), - [anon_sym_BANG_EQ] = ACTIONS(5792), - [anon_sym_GT] = ACTIONS(5790), - [anon_sym_GT_EQ] = ACTIONS(5792), - [anon_sym_LT_EQ] = ACTIONS(5790), - [anon_sym_LT] = ACTIONS(5790), - [anon_sym_LT_LT] = ACTIONS(5792), - [anon_sym_GT_GT] = ACTIONS(5792), - [anon_sym_SEMI] = ACTIONS(5792), - [anon_sym___extension__] = ACTIONS(5790), - [anon_sym___attribute__] = ACTIONS(5790), - [anon_sym___attribute] = ACTIONS(5790), - [anon_sym_COLON] = ACTIONS(5792), - [anon_sym___based] = ACTIONS(5790), - [anon_sym_LBRACE] = ACTIONS(5792), - [anon_sym_RBRACE] = ACTIONS(5792), - [anon_sym_signed] = ACTIONS(5790), - [anon_sym_unsigned] = ACTIONS(5790), - [anon_sym_long] = ACTIONS(5790), - [anon_sym_short] = ACTIONS(5790), - [anon_sym_LBRACK] = ACTIONS(5792), - [anon_sym_RBRACK] = ACTIONS(5792), - [anon_sym_const] = ACTIONS(5790), - [anon_sym_constexpr] = ACTIONS(5790), - [anon_sym_volatile] = ACTIONS(5790), - [anon_sym_restrict] = ACTIONS(5790), - [anon_sym___restrict__] = ACTIONS(5790), - [anon_sym__Atomic] = ACTIONS(5790), - [anon_sym__Noreturn] = ACTIONS(5790), - [anon_sym_noreturn] = ACTIONS(5790), - [anon_sym__Nonnull] = ACTIONS(5790), - [anon_sym_mutable] = ACTIONS(5790), - [anon_sym_constinit] = ACTIONS(5790), - [anon_sym_consteval] = ACTIONS(5790), - [anon_sym_alignas] = ACTIONS(5790), - [anon_sym__Alignas] = ACTIONS(5790), - [sym_primitive_type] = ACTIONS(5790), - [anon_sym_QMARK] = ACTIONS(5792), - [anon_sym_LT_EQ_GT] = ACTIONS(5792), - [anon_sym_or] = ACTIONS(5790), - [anon_sym_and] = ACTIONS(5790), - [anon_sym_bitor] = ACTIONS(5790), - [anon_sym_xor] = ACTIONS(5790), - [anon_sym_bitand] = ACTIONS(5790), - [anon_sym_not_eq] = ACTIONS(5790), - [anon_sym_DASH_DASH] = ACTIONS(5792), - [anon_sym_PLUS_PLUS] = ACTIONS(5792), - [anon_sym_DOT] = ACTIONS(5790), - [anon_sym_DOT_STAR] = ACTIONS(5792), - [anon_sym_DASH_GT] = ACTIONS(5792), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5790), - [anon_sym_decltype] = ACTIONS(5790), - [anon_sym_final] = ACTIONS(5790), - [anon_sym_override] = ACTIONS(5790), - [anon_sym_requires] = ACTIONS(5790), + [1907] = { + [sym_identifier] = ACTIONS(5804), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5806), + [anon_sym_COMMA] = ACTIONS(5806), + [anon_sym_RPAREN] = ACTIONS(5806), + [anon_sym_LPAREN2] = ACTIONS(5806), + [anon_sym_DASH] = ACTIONS(5804), + [anon_sym_PLUS] = ACTIONS(5804), + [anon_sym_STAR] = ACTIONS(5806), + [anon_sym_SLASH] = ACTIONS(5804), + [anon_sym_PERCENT] = ACTIONS(5806), + [anon_sym_PIPE_PIPE] = ACTIONS(5806), + [anon_sym_AMP_AMP] = ACTIONS(5806), + [anon_sym_PIPE] = ACTIONS(5804), + [anon_sym_CARET] = ACTIONS(5806), + [anon_sym_AMP] = ACTIONS(5804), + [anon_sym_EQ_EQ] = ACTIONS(5806), + [anon_sym_BANG_EQ] = ACTIONS(5806), + [anon_sym_GT] = ACTIONS(5804), + [anon_sym_GT_EQ] = ACTIONS(5806), + [anon_sym_LT_EQ] = ACTIONS(5804), + [anon_sym_LT] = ACTIONS(5804), + [anon_sym_LT_LT] = ACTIONS(5806), + [anon_sym_GT_GT] = ACTIONS(5806), + [anon_sym_SEMI] = ACTIONS(5806), + [anon_sym___extension__] = ACTIONS(5804), + [anon_sym___attribute__] = ACTIONS(5804), + [anon_sym___attribute] = ACTIONS(5804), + [anon_sym_COLON] = ACTIONS(5806), + [anon_sym___based] = ACTIONS(5804), + [anon_sym_LBRACE] = ACTIONS(5806), + [anon_sym_RBRACE] = ACTIONS(5806), + [anon_sym_signed] = ACTIONS(5804), + [anon_sym_unsigned] = ACTIONS(5804), + [anon_sym_long] = ACTIONS(5804), + [anon_sym_short] = ACTIONS(5804), + [anon_sym_LBRACK] = ACTIONS(5806), + [anon_sym_RBRACK] = ACTIONS(5806), + [anon_sym_const] = ACTIONS(5804), + [anon_sym_constexpr] = ACTIONS(5804), + [anon_sym_volatile] = ACTIONS(5804), + [anon_sym_restrict] = ACTIONS(5804), + [anon_sym___restrict__] = ACTIONS(5804), + [anon_sym__Atomic] = ACTIONS(5804), + [anon_sym__Noreturn] = ACTIONS(5804), + [anon_sym_noreturn] = ACTIONS(5804), + [anon_sym__Nonnull] = ACTIONS(5804), + [anon_sym_mutable] = ACTIONS(5804), + [anon_sym_constinit] = ACTIONS(5804), + [anon_sym_consteval] = ACTIONS(5804), + [anon_sym_alignas] = ACTIONS(5804), + [anon_sym__Alignas] = ACTIONS(5804), + [sym_primitive_type] = ACTIONS(5804), + [anon_sym_QMARK] = ACTIONS(5806), + [anon_sym_LT_EQ_GT] = ACTIONS(5806), + [anon_sym_or] = ACTIONS(5804), + [anon_sym_and] = ACTIONS(5804), + [anon_sym_bitor] = ACTIONS(5804), + [anon_sym_xor] = ACTIONS(5804), + [anon_sym_bitand] = ACTIONS(5804), + [anon_sym_not_eq] = ACTIONS(5804), + [anon_sym_DASH_DASH] = ACTIONS(5806), + [anon_sym_PLUS_PLUS] = ACTIONS(5806), + [anon_sym_DOT] = ACTIONS(5804), + [anon_sym_DOT_STAR] = ACTIONS(5806), + [anon_sym_DASH_GT] = ACTIONS(5806), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5804), + [anon_sym_decltype] = ACTIONS(5804), + [anon_sym_final] = ACTIONS(5804), + [anon_sym_override] = ACTIONS(5804), + [anon_sym_requires] = ACTIONS(5804), }, - [1882] = { - [sym_identifier] = ACTIONS(5794), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5796), - [anon_sym_COMMA] = ACTIONS(5796), - [anon_sym_RPAREN] = ACTIONS(5796), - [anon_sym_LPAREN2] = ACTIONS(5796), - [anon_sym_DASH] = ACTIONS(5794), - [anon_sym_PLUS] = ACTIONS(5794), - [anon_sym_STAR] = ACTIONS(5796), - [anon_sym_SLASH] = ACTIONS(5794), - [anon_sym_PERCENT] = ACTIONS(5796), - [anon_sym_PIPE_PIPE] = ACTIONS(5796), - [anon_sym_AMP_AMP] = ACTIONS(5796), - [anon_sym_PIPE] = ACTIONS(5794), - [anon_sym_CARET] = ACTIONS(5796), - [anon_sym_AMP] = ACTIONS(5794), - [anon_sym_EQ_EQ] = ACTIONS(5796), - [anon_sym_BANG_EQ] = ACTIONS(5796), - [anon_sym_GT] = ACTIONS(5794), - [anon_sym_GT_EQ] = ACTIONS(5796), - [anon_sym_LT_EQ] = ACTIONS(5794), - [anon_sym_LT] = ACTIONS(5794), - [anon_sym_LT_LT] = ACTIONS(5796), - [anon_sym_GT_GT] = ACTIONS(5796), - [anon_sym_SEMI] = ACTIONS(5796), - [anon_sym___extension__] = ACTIONS(5794), - [anon_sym___attribute__] = ACTIONS(5794), - [anon_sym___attribute] = ACTIONS(5794), - [anon_sym_COLON] = ACTIONS(5796), - [anon_sym___based] = ACTIONS(5794), - [anon_sym_LBRACE] = ACTIONS(5796), - [anon_sym_RBRACE] = ACTIONS(5796), - [anon_sym_signed] = ACTIONS(5794), - [anon_sym_unsigned] = ACTIONS(5794), - [anon_sym_long] = ACTIONS(5794), - [anon_sym_short] = ACTIONS(5794), - [anon_sym_LBRACK] = ACTIONS(5796), - [anon_sym_RBRACK] = ACTIONS(5796), - [anon_sym_const] = ACTIONS(5794), - [anon_sym_constexpr] = ACTIONS(5794), - [anon_sym_volatile] = ACTIONS(5794), - [anon_sym_restrict] = ACTIONS(5794), - [anon_sym___restrict__] = ACTIONS(5794), - [anon_sym__Atomic] = ACTIONS(5794), - [anon_sym__Noreturn] = ACTIONS(5794), - [anon_sym_noreturn] = ACTIONS(5794), - [anon_sym__Nonnull] = ACTIONS(5794), - [anon_sym_mutable] = ACTIONS(5794), - [anon_sym_constinit] = ACTIONS(5794), - [anon_sym_consteval] = ACTIONS(5794), - [anon_sym_alignas] = ACTIONS(5794), - [anon_sym__Alignas] = ACTIONS(5794), - [sym_primitive_type] = ACTIONS(5794), - [anon_sym_QMARK] = ACTIONS(5796), - [anon_sym_LT_EQ_GT] = ACTIONS(5796), - [anon_sym_or] = ACTIONS(5794), - [anon_sym_and] = ACTIONS(5794), - [anon_sym_bitor] = ACTIONS(5794), - [anon_sym_xor] = ACTIONS(5794), - [anon_sym_bitand] = ACTIONS(5794), - [anon_sym_not_eq] = ACTIONS(5794), - [anon_sym_DASH_DASH] = ACTIONS(5796), - [anon_sym_PLUS_PLUS] = ACTIONS(5796), - [anon_sym_DOT] = ACTIONS(5794), - [anon_sym_DOT_STAR] = ACTIONS(5796), - [anon_sym_DASH_GT] = ACTIONS(5796), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5794), - [anon_sym_decltype] = ACTIONS(5794), - [anon_sym_final] = ACTIONS(5794), - [anon_sym_override] = ACTIONS(5794), - [anon_sym_requires] = ACTIONS(5794), + [1908] = { + [sym_identifier] = ACTIONS(5808), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5810), + [anon_sym_COMMA] = ACTIONS(5810), + [anon_sym_RPAREN] = ACTIONS(5810), + [anon_sym_LPAREN2] = ACTIONS(5810), + [anon_sym_DASH] = ACTIONS(5808), + [anon_sym_PLUS] = ACTIONS(5808), + [anon_sym_STAR] = ACTIONS(5810), + [anon_sym_SLASH] = ACTIONS(5808), + [anon_sym_PERCENT] = ACTIONS(5810), + [anon_sym_PIPE_PIPE] = ACTIONS(5810), + [anon_sym_AMP_AMP] = ACTIONS(5810), + [anon_sym_PIPE] = ACTIONS(5808), + [anon_sym_CARET] = ACTIONS(5810), + [anon_sym_AMP] = ACTIONS(5808), + [anon_sym_EQ_EQ] = ACTIONS(5810), + [anon_sym_BANG_EQ] = ACTIONS(5810), + [anon_sym_GT] = ACTIONS(5808), + [anon_sym_GT_EQ] = ACTIONS(5810), + [anon_sym_LT_EQ] = ACTIONS(5808), + [anon_sym_LT] = ACTIONS(5808), + [anon_sym_LT_LT] = ACTIONS(5810), + [anon_sym_GT_GT] = ACTIONS(5810), + [anon_sym_SEMI] = ACTIONS(5810), + [anon_sym___extension__] = ACTIONS(5808), + [anon_sym___attribute__] = ACTIONS(5808), + [anon_sym___attribute] = ACTIONS(5808), + [anon_sym_COLON] = ACTIONS(5810), + [anon_sym___based] = ACTIONS(5808), + [anon_sym_LBRACE] = ACTIONS(5810), + [anon_sym_RBRACE] = ACTIONS(5810), + [anon_sym_signed] = ACTIONS(5808), + [anon_sym_unsigned] = ACTIONS(5808), + [anon_sym_long] = ACTIONS(5808), + [anon_sym_short] = ACTIONS(5808), + [anon_sym_LBRACK] = ACTIONS(5810), + [anon_sym_RBRACK] = ACTIONS(5810), + [anon_sym_const] = ACTIONS(5808), + [anon_sym_constexpr] = ACTIONS(5808), + [anon_sym_volatile] = ACTIONS(5808), + [anon_sym_restrict] = ACTIONS(5808), + [anon_sym___restrict__] = ACTIONS(5808), + [anon_sym__Atomic] = ACTIONS(5808), + [anon_sym__Noreturn] = ACTIONS(5808), + [anon_sym_noreturn] = ACTIONS(5808), + [anon_sym__Nonnull] = ACTIONS(5808), + [anon_sym_mutable] = ACTIONS(5808), + [anon_sym_constinit] = ACTIONS(5808), + [anon_sym_consteval] = ACTIONS(5808), + [anon_sym_alignas] = ACTIONS(5808), + [anon_sym__Alignas] = ACTIONS(5808), + [sym_primitive_type] = ACTIONS(5808), + [anon_sym_QMARK] = ACTIONS(5810), + [anon_sym_LT_EQ_GT] = ACTIONS(5810), + [anon_sym_or] = ACTIONS(5808), + [anon_sym_and] = ACTIONS(5808), + [anon_sym_bitor] = ACTIONS(5808), + [anon_sym_xor] = ACTIONS(5808), + [anon_sym_bitand] = ACTIONS(5808), + [anon_sym_not_eq] = ACTIONS(5808), + [anon_sym_DASH_DASH] = ACTIONS(5810), + [anon_sym_PLUS_PLUS] = ACTIONS(5810), + [anon_sym_DOT] = ACTIONS(5808), + [anon_sym_DOT_STAR] = ACTIONS(5810), + [anon_sym_DASH_GT] = ACTIONS(5810), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5808), + [anon_sym_decltype] = ACTIONS(5808), + [anon_sym_final] = ACTIONS(5808), + [anon_sym_override] = ACTIONS(5808), + [anon_sym_requires] = ACTIONS(5808), }, - [1883] = { - [sym_identifier] = ACTIONS(5786), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5788), - [anon_sym_COMMA] = ACTIONS(5788), - [anon_sym_RPAREN] = ACTIONS(5788), - [anon_sym_LPAREN2] = ACTIONS(5788), - [anon_sym_DASH] = ACTIONS(5786), - [anon_sym_PLUS] = ACTIONS(5786), - [anon_sym_STAR] = ACTIONS(5788), - [anon_sym_SLASH] = ACTIONS(5786), - [anon_sym_PERCENT] = ACTIONS(5788), - [anon_sym_PIPE_PIPE] = ACTIONS(5788), - [anon_sym_AMP_AMP] = ACTIONS(5788), - [anon_sym_PIPE] = ACTIONS(5786), - [anon_sym_CARET] = ACTIONS(5788), - [anon_sym_AMP] = ACTIONS(5786), - [anon_sym_EQ_EQ] = ACTIONS(5788), - [anon_sym_BANG_EQ] = ACTIONS(5788), - [anon_sym_GT] = ACTIONS(5786), - [anon_sym_GT_EQ] = ACTIONS(5788), - [anon_sym_LT_EQ] = ACTIONS(5786), - [anon_sym_LT] = ACTIONS(5786), - [anon_sym_LT_LT] = ACTIONS(5788), - [anon_sym_GT_GT] = ACTIONS(5788), - [anon_sym_SEMI] = ACTIONS(5788), - [anon_sym___extension__] = ACTIONS(5786), - [anon_sym___attribute__] = ACTIONS(5786), - [anon_sym___attribute] = ACTIONS(5786), - [anon_sym_COLON] = ACTIONS(5788), - [anon_sym___based] = ACTIONS(5786), - [anon_sym_LBRACE] = ACTIONS(5788), - [anon_sym_RBRACE] = ACTIONS(5788), - [anon_sym_signed] = ACTIONS(5786), - [anon_sym_unsigned] = ACTIONS(5786), - [anon_sym_long] = ACTIONS(5786), - [anon_sym_short] = ACTIONS(5786), - [anon_sym_LBRACK] = ACTIONS(5788), - [anon_sym_RBRACK] = ACTIONS(5788), - [anon_sym_const] = ACTIONS(5786), - [anon_sym_constexpr] = ACTIONS(5786), - [anon_sym_volatile] = ACTIONS(5786), - [anon_sym_restrict] = ACTIONS(5786), - [anon_sym___restrict__] = ACTIONS(5786), - [anon_sym__Atomic] = ACTIONS(5786), - [anon_sym__Noreturn] = ACTIONS(5786), - [anon_sym_noreturn] = ACTIONS(5786), - [anon_sym__Nonnull] = ACTIONS(5786), - [anon_sym_mutable] = ACTIONS(5786), - [anon_sym_constinit] = ACTIONS(5786), - [anon_sym_consteval] = ACTIONS(5786), - [anon_sym_alignas] = ACTIONS(5786), - [anon_sym__Alignas] = ACTIONS(5786), - [sym_primitive_type] = ACTIONS(5786), - [anon_sym_QMARK] = ACTIONS(5788), - [anon_sym_LT_EQ_GT] = ACTIONS(5788), - [anon_sym_or] = ACTIONS(5786), - [anon_sym_and] = ACTIONS(5786), - [anon_sym_bitor] = ACTIONS(5786), - [anon_sym_xor] = ACTIONS(5786), - [anon_sym_bitand] = ACTIONS(5786), - [anon_sym_not_eq] = ACTIONS(5786), - [anon_sym_DASH_DASH] = ACTIONS(5788), - [anon_sym_PLUS_PLUS] = ACTIONS(5788), - [anon_sym_DOT] = ACTIONS(5786), - [anon_sym_DOT_STAR] = ACTIONS(5788), - [anon_sym_DASH_GT] = ACTIONS(5788), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5786), - [anon_sym_decltype] = ACTIONS(5786), - [anon_sym_final] = ACTIONS(5786), - [anon_sym_override] = ACTIONS(5786), - [anon_sym_requires] = ACTIONS(5786), + [1909] = { + [sym_identifier] = ACTIONS(5812), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5814), + [anon_sym_COMMA] = ACTIONS(5814), + [anon_sym_RPAREN] = ACTIONS(5814), + [anon_sym_LPAREN2] = ACTIONS(5814), + [anon_sym_DASH] = ACTIONS(5812), + [anon_sym_PLUS] = ACTIONS(5812), + [anon_sym_STAR] = ACTIONS(5814), + [anon_sym_SLASH] = ACTIONS(5812), + [anon_sym_PERCENT] = ACTIONS(5814), + [anon_sym_PIPE_PIPE] = ACTIONS(5814), + [anon_sym_AMP_AMP] = ACTIONS(5814), + [anon_sym_PIPE] = ACTIONS(5812), + [anon_sym_CARET] = ACTIONS(5814), + [anon_sym_AMP] = ACTIONS(5812), + [anon_sym_EQ_EQ] = ACTIONS(5814), + [anon_sym_BANG_EQ] = ACTIONS(5814), + [anon_sym_GT] = ACTIONS(5812), + [anon_sym_GT_EQ] = ACTIONS(5814), + [anon_sym_LT_EQ] = ACTIONS(5812), + [anon_sym_LT] = ACTIONS(5812), + [anon_sym_LT_LT] = ACTIONS(5814), + [anon_sym_GT_GT] = ACTIONS(5814), + [anon_sym_SEMI] = ACTIONS(5814), + [anon_sym___extension__] = ACTIONS(5812), + [anon_sym___attribute__] = ACTIONS(5812), + [anon_sym___attribute] = ACTIONS(5812), + [anon_sym_COLON] = ACTIONS(5814), + [anon_sym___based] = ACTIONS(5812), + [anon_sym_LBRACE] = ACTIONS(5814), + [anon_sym_RBRACE] = ACTIONS(5814), + [anon_sym_signed] = ACTIONS(5812), + [anon_sym_unsigned] = ACTIONS(5812), + [anon_sym_long] = ACTIONS(5812), + [anon_sym_short] = ACTIONS(5812), + [anon_sym_LBRACK] = ACTIONS(5814), + [anon_sym_RBRACK] = ACTIONS(5814), + [anon_sym_const] = ACTIONS(5812), + [anon_sym_constexpr] = ACTIONS(5812), + [anon_sym_volatile] = ACTIONS(5812), + [anon_sym_restrict] = ACTIONS(5812), + [anon_sym___restrict__] = ACTIONS(5812), + [anon_sym__Atomic] = ACTIONS(5812), + [anon_sym__Noreturn] = ACTIONS(5812), + [anon_sym_noreturn] = ACTIONS(5812), + [anon_sym__Nonnull] = ACTIONS(5812), + [anon_sym_mutable] = ACTIONS(5812), + [anon_sym_constinit] = ACTIONS(5812), + [anon_sym_consteval] = ACTIONS(5812), + [anon_sym_alignas] = ACTIONS(5812), + [anon_sym__Alignas] = ACTIONS(5812), + [sym_primitive_type] = ACTIONS(5812), + [anon_sym_QMARK] = ACTIONS(5814), + [anon_sym_LT_EQ_GT] = ACTIONS(5814), + [anon_sym_or] = ACTIONS(5812), + [anon_sym_and] = ACTIONS(5812), + [anon_sym_bitor] = ACTIONS(5812), + [anon_sym_xor] = ACTIONS(5812), + [anon_sym_bitand] = ACTIONS(5812), + [anon_sym_not_eq] = ACTIONS(5812), + [anon_sym_DASH_DASH] = ACTIONS(5814), + [anon_sym_PLUS_PLUS] = ACTIONS(5814), + [anon_sym_DOT] = ACTIONS(5812), + [anon_sym_DOT_STAR] = ACTIONS(5814), + [anon_sym_DASH_GT] = ACTIONS(5814), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5812), + [anon_sym_decltype] = ACTIONS(5812), + [anon_sym_final] = ACTIONS(5812), + [anon_sym_override] = ACTIONS(5812), + [anon_sym_requires] = ACTIONS(5812), }, - [1884] = { - [sym_identifier] = ACTIONS(5798), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5800), - [anon_sym_COMMA] = ACTIONS(5800), - [anon_sym_RPAREN] = ACTIONS(5800), - [anon_sym_LPAREN2] = ACTIONS(5800), - [anon_sym_DASH] = ACTIONS(5798), - [anon_sym_PLUS] = ACTIONS(5798), - [anon_sym_STAR] = ACTIONS(5800), - [anon_sym_SLASH] = ACTIONS(5798), - [anon_sym_PERCENT] = ACTIONS(5800), - [anon_sym_PIPE_PIPE] = ACTIONS(5800), - [anon_sym_AMP_AMP] = ACTIONS(5800), - [anon_sym_PIPE] = ACTIONS(5798), - [anon_sym_CARET] = ACTIONS(5800), - [anon_sym_AMP] = ACTIONS(5798), - [anon_sym_EQ_EQ] = ACTIONS(5800), - [anon_sym_BANG_EQ] = ACTIONS(5800), - [anon_sym_GT] = ACTIONS(5798), - [anon_sym_GT_EQ] = ACTIONS(5800), - [anon_sym_LT_EQ] = ACTIONS(5798), - [anon_sym_LT] = ACTIONS(5798), - [anon_sym_LT_LT] = ACTIONS(5800), - [anon_sym_GT_GT] = ACTIONS(5800), - [anon_sym_SEMI] = ACTIONS(5800), - [anon_sym___extension__] = ACTIONS(5798), - [anon_sym___attribute__] = ACTIONS(5798), - [anon_sym___attribute] = ACTIONS(5798), - [anon_sym_COLON] = ACTIONS(5800), - [anon_sym___based] = ACTIONS(5798), - [anon_sym_LBRACE] = ACTIONS(5800), - [anon_sym_RBRACE] = ACTIONS(5800), - [anon_sym_signed] = ACTIONS(5798), - [anon_sym_unsigned] = ACTIONS(5798), - [anon_sym_long] = ACTIONS(5798), - [anon_sym_short] = ACTIONS(5798), - [anon_sym_LBRACK] = ACTIONS(5800), - [anon_sym_RBRACK] = ACTIONS(5800), - [anon_sym_const] = ACTIONS(5798), - [anon_sym_constexpr] = ACTIONS(5798), - [anon_sym_volatile] = ACTIONS(5798), - [anon_sym_restrict] = ACTIONS(5798), - [anon_sym___restrict__] = ACTIONS(5798), - [anon_sym__Atomic] = ACTIONS(5798), - [anon_sym__Noreturn] = ACTIONS(5798), - [anon_sym_noreturn] = ACTIONS(5798), - [anon_sym__Nonnull] = ACTIONS(5798), - [anon_sym_mutable] = ACTIONS(5798), - [anon_sym_constinit] = ACTIONS(5798), - [anon_sym_consteval] = ACTIONS(5798), - [anon_sym_alignas] = ACTIONS(5798), - [anon_sym__Alignas] = ACTIONS(5798), - [sym_primitive_type] = ACTIONS(5798), - [anon_sym_QMARK] = ACTIONS(5800), - [anon_sym_LT_EQ_GT] = ACTIONS(5800), - [anon_sym_or] = ACTIONS(5798), - [anon_sym_and] = ACTIONS(5798), - [anon_sym_bitor] = ACTIONS(5798), - [anon_sym_xor] = ACTIONS(5798), - [anon_sym_bitand] = ACTIONS(5798), - [anon_sym_not_eq] = ACTIONS(5798), - [anon_sym_DASH_DASH] = ACTIONS(5800), - [anon_sym_PLUS_PLUS] = ACTIONS(5800), - [anon_sym_DOT] = ACTIONS(5798), - [anon_sym_DOT_STAR] = ACTIONS(5800), - [anon_sym_DASH_GT] = ACTIONS(5800), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5798), - [anon_sym_decltype] = ACTIONS(5798), - [anon_sym_final] = ACTIONS(5798), - [anon_sym_override] = ACTIONS(5798), - [anon_sym_requires] = ACTIONS(5798), + [1910] = { + [sym_catch_clause] = STATE(1879), + [aux_sym_constructor_try_statement_repeat1] = STATE(1879), + [sym_identifier] = ACTIONS(2586), + [aux_sym_preproc_def_token1] = ACTIONS(2586), + [aux_sym_preproc_if_token1] = ACTIONS(2586), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2586), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2586), + [sym_preproc_directive] = ACTIONS(2586), + [anon_sym_LPAREN2] = ACTIONS(2588), + [anon_sym_TILDE] = ACTIONS(2588), + [anon_sym_STAR] = ACTIONS(2588), + [anon_sym_AMP_AMP] = ACTIONS(2588), + [anon_sym_AMP] = ACTIONS(2586), + [anon_sym_SEMI] = ACTIONS(2588), + [anon_sym___extension__] = ACTIONS(2586), + [anon_sym_typedef] = ACTIONS(2586), + [anon_sym_virtual] = ACTIONS(2586), + [anon_sym_extern] = ACTIONS(2586), + [anon_sym___attribute__] = ACTIONS(2586), + [anon_sym___attribute] = ACTIONS(2586), + [anon_sym_using] = ACTIONS(2586), + [anon_sym_COLON_COLON] = ACTIONS(2588), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2588), + [anon_sym___declspec] = ACTIONS(2586), + [anon_sym___based] = ACTIONS(2586), + [anon_sym_RBRACE] = ACTIONS(2588), + [anon_sym_signed] = ACTIONS(2586), + [anon_sym_unsigned] = ACTIONS(2586), + [anon_sym_long] = ACTIONS(2586), + [anon_sym_short] = ACTIONS(2586), + [anon_sym_LBRACK] = ACTIONS(2586), + [anon_sym_static] = ACTIONS(2586), + [anon_sym_register] = ACTIONS(2586), + [anon_sym_inline] = ACTIONS(2586), + [anon_sym___inline] = ACTIONS(2586), + [anon_sym___inline__] = ACTIONS(2586), + [anon_sym___forceinline] = ACTIONS(2586), + [anon_sym_thread_local] = ACTIONS(2586), + [anon_sym___thread] = ACTIONS(2586), + [anon_sym_const] = ACTIONS(2586), + [anon_sym_constexpr] = ACTIONS(2586), + [anon_sym_volatile] = ACTIONS(2586), + [anon_sym_restrict] = ACTIONS(2586), + [anon_sym___restrict__] = ACTIONS(2586), + [anon_sym__Atomic] = ACTIONS(2586), + [anon_sym__Noreturn] = ACTIONS(2586), + [anon_sym_noreturn] = ACTIONS(2586), + [anon_sym__Nonnull] = ACTIONS(2586), + [anon_sym_mutable] = ACTIONS(2586), + [anon_sym_constinit] = ACTIONS(2586), + [anon_sym_consteval] = ACTIONS(2586), + [anon_sym_alignas] = ACTIONS(2586), + [anon_sym__Alignas] = ACTIONS(2586), + [sym_primitive_type] = ACTIONS(2586), + [anon_sym_enum] = ACTIONS(2586), + [anon_sym_class] = ACTIONS(2586), + [anon_sym_struct] = ACTIONS(2586), + [anon_sym_union] = ACTIONS(2586), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2586), + [anon_sym_decltype] = ACTIONS(2586), + [anon_sym_explicit] = ACTIONS(2586), + [anon_sym_typename] = ACTIONS(2586), + [anon_sym_private] = ACTIONS(2586), + [anon_sym_template] = ACTIONS(2586), + [anon_sym_operator] = ACTIONS(2586), + [anon_sym_friend] = ACTIONS(2586), + [anon_sym_public] = ACTIONS(2586), + [anon_sym_protected] = ACTIONS(2586), + [anon_sym_static_assert] = ACTIONS(2586), + [anon_sym_catch] = ACTIONS(5664), }, - [1885] = { - [sym_identifier] = ACTIONS(5802), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5804), - [anon_sym_COMMA] = ACTIONS(5804), - [anon_sym_RPAREN] = ACTIONS(5804), - [anon_sym_LPAREN2] = ACTIONS(5804), - [anon_sym_DASH] = ACTIONS(5802), - [anon_sym_PLUS] = ACTIONS(5802), - [anon_sym_STAR] = ACTIONS(5804), - [anon_sym_SLASH] = ACTIONS(5802), - [anon_sym_PERCENT] = ACTIONS(5804), - [anon_sym_PIPE_PIPE] = ACTIONS(5804), - [anon_sym_AMP_AMP] = ACTIONS(5804), - [anon_sym_PIPE] = ACTIONS(5802), - [anon_sym_CARET] = ACTIONS(5804), - [anon_sym_AMP] = ACTIONS(5802), - [anon_sym_EQ_EQ] = ACTIONS(5804), - [anon_sym_BANG_EQ] = ACTIONS(5804), - [anon_sym_GT] = ACTIONS(5802), - [anon_sym_GT_EQ] = ACTIONS(5804), - [anon_sym_LT_EQ] = ACTIONS(5802), - [anon_sym_LT] = ACTIONS(5802), - [anon_sym_LT_LT] = ACTIONS(5804), - [anon_sym_GT_GT] = ACTIONS(5804), - [anon_sym_SEMI] = ACTIONS(5804), - [anon_sym___extension__] = ACTIONS(5802), - [anon_sym___attribute__] = ACTIONS(5802), - [anon_sym___attribute] = ACTIONS(5802), - [anon_sym_COLON] = ACTIONS(5804), - [anon_sym___based] = ACTIONS(5802), - [anon_sym_LBRACE] = ACTIONS(5804), - [anon_sym_RBRACE] = ACTIONS(5804), - [anon_sym_signed] = ACTIONS(5802), - [anon_sym_unsigned] = ACTIONS(5802), - [anon_sym_long] = ACTIONS(5802), - [anon_sym_short] = ACTIONS(5802), - [anon_sym_LBRACK] = ACTIONS(5804), - [anon_sym_RBRACK] = ACTIONS(5804), - [anon_sym_const] = ACTIONS(5802), - [anon_sym_constexpr] = ACTIONS(5802), - [anon_sym_volatile] = ACTIONS(5802), - [anon_sym_restrict] = ACTIONS(5802), - [anon_sym___restrict__] = ACTIONS(5802), - [anon_sym__Atomic] = ACTIONS(5802), - [anon_sym__Noreturn] = ACTIONS(5802), - [anon_sym_noreturn] = ACTIONS(5802), - [anon_sym__Nonnull] = ACTIONS(5802), - [anon_sym_mutable] = ACTIONS(5802), - [anon_sym_constinit] = ACTIONS(5802), - [anon_sym_consteval] = ACTIONS(5802), - [anon_sym_alignas] = ACTIONS(5802), - [anon_sym__Alignas] = ACTIONS(5802), - [sym_primitive_type] = ACTIONS(5802), - [anon_sym_QMARK] = ACTIONS(5804), - [anon_sym_LT_EQ_GT] = ACTIONS(5804), - [anon_sym_or] = ACTIONS(5802), - [anon_sym_and] = ACTIONS(5802), - [anon_sym_bitor] = ACTIONS(5802), - [anon_sym_xor] = ACTIONS(5802), - [anon_sym_bitand] = ACTIONS(5802), - [anon_sym_not_eq] = ACTIONS(5802), - [anon_sym_DASH_DASH] = ACTIONS(5804), - [anon_sym_PLUS_PLUS] = ACTIONS(5804), - [anon_sym_DOT] = ACTIONS(5802), - [anon_sym_DOT_STAR] = ACTIONS(5804), - [anon_sym_DASH_GT] = ACTIONS(5804), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5802), - [anon_sym_decltype] = ACTIONS(5802), - [anon_sym_final] = ACTIONS(5802), - [anon_sym_override] = ACTIONS(5802), - [anon_sym_requires] = ACTIONS(5802), + [1911] = { + [sym_identifier] = ACTIONS(5816), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5818), + [anon_sym_COMMA] = ACTIONS(5818), + [anon_sym_RPAREN] = ACTIONS(5818), + [anon_sym_LPAREN2] = ACTIONS(5818), + [anon_sym_DASH] = ACTIONS(5816), + [anon_sym_PLUS] = ACTIONS(5816), + [anon_sym_STAR] = ACTIONS(5818), + [anon_sym_SLASH] = ACTIONS(5816), + [anon_sym_PERCENT] = ACTIONS(5818), + [anon_sym_PIPE_PIPE] = ACTIONS(5818), + [anon_sym_AMP_AMP] = ACTIONS(5818), + [anon_sym_PIPE] = ACTIONS(5816), + [anon_sym_CARET] = ACTIONS(5818), + [anon_sym_AMP] = ACTIONS(5816), + [anon_sym_EQ_EQ] = ACTIONS(5818), + [anon_sym_BANG_EQ] = ACTIONS(5818), + [anon_sym_GT] = ACTIONS(5816), + [anon_sym_GT_EQ] = ACTIONS(5818), + [anon_sym_LT_EQ] = ACTIONS(5816), + [anon_sym_LT] = ACTIONS(5816), + [anon_sym_LT_LT] = ACTIONS(5818), + [anon_sym_GT_GT] = ACTIONS(5818), + [anon_sym_SEMI] = ACTIONS(5818), + [anon_sym___extension__] = ACTIONS(5816), + [anon_sym___attribute__] = ACTIONS(5816), + [anon_sym___attribute] = ACTIONS(5816), + [anon_sym_COLON] = ACTIONS(5818), + [anon_sym___based] = ACTIONS(5816), + [anon_sym_LBRACE] = ACTIONS(5818), + [anon_sym_RBRACE] = ACTIONS(5818), + [anon_sym_signed] = ACTIONS(5816), + [anon_sym_unsigned] = ACTIONS(5816), + [anon_sym_long] = ACTIONS(5816), + [anon_sym_short] = ACTIONS(5816), + [anon_sym_LBRACK] = ACTIONS(5818), + [anon_sym_RBRACK] = ACTIONS(5818), + [anon_sym_const] = ACTIONS(5816), + [anon_sym_constexpr] = ACTIONS(5816), + [anon_sym_volatile] = ACTIONS(5816), + [anon_sym_restrict] = ACTIONS(5816), + [anon_sym___restrict__] = ACTIONS(5816), + [anon_sym__Atomic] = ACTIONS(5816), + [anon_sym__Noreturn] = ACTIONS(5816), + [anon_sym_noreturn] = ACTIONS(5816), + [anon_sym__Nonnull] = ACTIONS(5816), + [anon_sym_mutable] = ACTIONS(5816), + [anon_sym_constinit] = ACTIONS(5816), + [anon_sym_consteval] = ACTIONS(5816), + [anon_sym_alignas] = ACTIONS(5816), + [anon_sym__Alignas] = ACTIONS(5816), + [sym_primitive_type] = ACTIONS(5816), + [anon_sym_QMARK] = ACTIONS(5818), + [anon_sym_LT_EQ_GT] = ACTIONS(5818), + [anon_sym_or] = ACTIONS(5816), + [anon_sym_and] = ACTIONS(5816), + [anon_sym_bitor] = ACTIONS(5816), + [anon_sym_xor] = ACTIONS(5816), + [anon_sym_bitand] = ACTIONS(5816), + [anon_sym_not_eq] = ACTIONS(5816), + [anon_sym_DASH_DASH] = ACTIONS(5818), + [anon_sym_PLUS_PLUS] = ACTIONS(5818), + [anon_sym_DOT] = ACTIONS(5816), + [anon_sym_DOT_STAR] = ACTIONS(5818), + [anon_sym_DASH_GT] = ACTIONS(5818), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5816), + [anon_sym_decltype] = ACTIONS(5816), + [anon_sym_final] = ACTIONS(5816), + [anon_sym_override] = ACTIONS(5816), + [anon_sym_requires] = ACTIONS(5816), }, - [1886] = { - [sym_identifier] = ACTIONS(5806), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5808), - [anon_sym_COMMA] = ACTIONS(5808), - [anon_sym_RPAREN] = ACTIONS(5808), - [anon_sym_LPAREN2] = ACTIONS(5808), - [anon_sym_DASH] = ACTIONS(5806), - [anon_sym_PLUS] = ACTIONS(5806), - [anon_sym_STAR] = ACTIONS(5808), - [anon_sym_SLASH] = ACTIONS(5806), - [anon_sym_PERCENT] = ACTIONS(5808), - [anon_sym_PIPE_PIPE] = ACTIONS(5808), - [anon_sym_AMP_AMP] = ACTIONS(5808), - [anon_sym_PIPE] = ACTIONS(5806), - [anon_sym_CARET] = ACTIONS(5808), - [anon_sym_AMP] = ACTIONS(5806), - [anon_sym_EQ_EQ] = ACTIONS(5808), - [anon_sym_BANG_EQ] = ACTIONS(5808), - [anon_sym_GT] = ACTIONS(5806), - [anon_sym_GT_EQ] = ACTIONS(5808), - [anon_sym_LT_EQ] = ACTIONS(5806), - [anon_sym_LT] = ACTIONS(5806), - [anon_sym_LT_LT] = ACTIONS(5808), - [anon_sym_GT_GT] = ACTIONS(5808), - [anon_sym_SEMI] = ACTIONS(5808), - [anon_sym___extension__] = ACTIONS(5806), - [anon_sym___attribute__] = ACTIONS(5806), - [anon_sym___attribute] = ACTIONS(5806), - [anon_sym_COLON] = ACTIONS(5808), - [anon_sym___based] = ACTIONS(5806), - [anon_sym_LBRACE] = ACTIONS(5808), - [anon_sym_RBRACE] = ACTIONS(5808), - [anon_sym_signed] = ACTIONS(5806), - [anon_sym_unsigned] = ACTIONS(5806), - [anon_sym_long] = ACTIONS(5806), - [anon_sym_short] = ACTIONS(5806), - [anon_sym_LBRACK] = ACTIONS(5808), - [anon_sym_RBRACK] = ACTIONS(5808), - [anon_sym_const] = ACTIONS(5806), - [anon_sym_constexpr] = ACTIONS(5806), - [anon_sym_volatile] = ACTIONS(5806), - [anon_sym_restrict] = ACTIONS(5806), - [anon_sym___restrict__] = ACTIONS(5806), - [anon_sym__Atomic] = ACTIONS(5806), - [anon_sym__Noreturn] = ACTIONS(5806), - [anon_sym_noreturn] = ACTIONS(5806), - [anon_sym__Nonnull] = ACTIONS(5806), - [anon_sym_mutable] = ACTIONS(5806), - [anon_sym_constinit] = ACTIONS(5806), - [anon_sym_consteval] = ACTIONS(5806), - [anon_sym_alignas] = ACTIONS(5806), - [anon_sym__Alignas] = ACTIONS(5806), - [sym_primitive_type] = ACTIONS(5806), - [anon_sym_QMARK] = ACTIONS(5808), - [anon_sym_LT_EQ_GT] = ACTIONS(5808), - [anon_sym_or] = ACTIONS(5806), - [anon_sym_and] = ACTIONS(5806), - [anon_sym_bitor] = ACTIONS(5806), - [anon_sym_xor] = ACTIONS(5806), - [anon_sym_bitand] = ACTIONS(5806), - [anon_sym_not_eq] = ACTIONS(5806), - [anon_sym_DASH_DASH] = ACTIONS(5808), - [anon_sym_PLUS_PLUS] = ACTIONS(5808), - [anon_sym_DOT] = ACTIONS(5806), - [anon_sym_DOT_STAR] = ACTIONS(5808), - [anon_sym_DASH_GT] = ACTIONS(5808), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5806), - [anon_sym_decltype] = ACTIONS(5806), - [anon_sym_final] = ACTIONS(5806), - [anon_sym_override] = ACTIONS(5806), - [anon_sym_requires] = ACTIONS(5806), + [1912] = { + [sym_identifier] = ACTIONS(5820), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5822), + [anon_sym_COMMA] = ACTIONS(5822), + [anon_sym_RPAREN] = ACTIONS(5822), + [anon_sym_LPAREN2] = ACTIONS(5822), + [anon_sym_DASH] = ACTIONS(5820), + [anon_sym_PLUS] = ACTIONS(5820), + [anon_sym_STAR] = ACTIONS(5822), + [anon_sym_SLASH] = ACTIONS(5820), + [anon_sym_PERCENT] = ACTIONS(5822), + [anon_sym_PIPE_PIPE] = ACTIONS(5822), + [anon_sym_AMP_AMP] = ACTIONS(5822), + [anon_sym_PIPE] = ACTIONS(5820), + [anon_sym_CARET] = ACTIONS(5822), + [anon_sym_AMP] = ACTIONS(5820), + [anon_sym_EQ_EQ] = ACTIONS(5822), + [anon_sym_BANG_EQ] = ACTIONS(5822), + [anon_sym_GT] = ACTIONS(5820), + [anon_sym_GT_EQ] = ACTIONS(5822), + [anon_sym_LT_EQ] = ACTIONS(5820), + [anon_sym_LT] = ACTIONS(5820), + [anon_sym_LT_LT] = ACTIONS(5822), + [anon_sym_GT_GT] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(5822), + [anon_sym___extension__] = ACTIONS(5820), + [anon_sym___attribute__] = ACTIONS(5820), + [anon_sym___attribute] = ACTIONS(5820), + [anon_sym_COLON] = ACTIONS(5822), + [anon_sym___based] = ACTIONS(5820), + [anon_sym_LBRACE] = ACTIONS(5822), + [anon_sym_RBRACE] = ACTIONS(5822), + [anon_sym_signed] = ACTIONS(5820), + [anon_sym_unsigned] = ACTIONS(5820), + [anon_sym_long] = ACTIONS(5820), + [anon_sym_short] = ACTIONS(5820), + [anon_sym_LBRACK] = ACTIONS(5822), + [anon_sym_RBRACK] = ACTIONS(5822), + [anon_sym_const] = ACTIONS(5820), + [anon_sym_constexpr] = ACTIONS(5820), + [anon_sym_volatile] = ACTIONS(5820), + [anon_sym_restrict] = ACTIONS(5820), + [anon_sym___restrict__] = ACTIONS(5820), + [anon_sym__Atomic] = ACTIONS(5820), + [anon_sym__Noreturn] = ACTIONS(5820), + [anon_sym_noreturn] = ACTIONS(5820), + [anon_sym__Nonnull] = ACTIONS(5820), + [anon_sym_mutable] = ACTIONS(5820), + [anon_sym_constinit] = ACTIONS(5820), + [anon_sym_consteval] = ACTIONS(5820), + [anon_sym_alignas] = ACTIONS(5820), + [anon_sym__Alignas] = ACTIONS(5820), + [sym_primitive_type] = ACTIONS(5820), + [anon_sym_QMARK] = ACTIONS(5822), + [anon_sym_LT_EQ_GT] = ACTIONS(5822), + [anon_sym_or] = ACTIONS(5820), + [anon_sym_and] = ACTIONS(5820), + [anon_sym_bitor] = ACTIONS(5820), + [anon_sym_xor] = ACTIONS(5820), + [anon_sym_bitand] = ACTIONS(5820), + [anon_sym_not_eq] = ACTIONS(5820), + [anon_sym_DASH_DASH] = ACTIONS(5822), + [anon_sym_PLUS_PLUS] = ACTIONS(5822), + [anon_sym_DOT] = ACTIONS(5820), + [anon_sym_DOT_STAR] = ACTIONS(5822), + [anon_sym_DASH_GT] = ACTIONS(5822), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5820), + [anon_sym_decltype] = ACTIONS(5820), + [anon_sym_final] = ACTIONS(5820), + [anon_sym_override] = ACTIONS(5820), + [anon_sym_requires] = ACTIONS(5820), }, - [1887] = { - [sym_identifier] = ACTIONS(5810), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5812), - [anon_sym_COMMA] = ACTIONS(5812), - [anon_sym_RPAREN] = ACTIONS(5812), - [anon_sym_LPAREN2] = ACTIONS(5812), - [anon_sym_DASH] = ACTIONS(5810), - [anon_sym_PLUS] = ACTIONS(5810), - [anon_sym_STAR] = ACTIONS(5812), - [anon_sym_SLASH] = ACTIONS(5810), - [anon_sym_PERCENT] = ACTIONS(5812), - [anon_sym_PIPE_PIPE] = ACTIONS(5812), - [anon_sym_AMP_AMP] = ACTIONS(5812), - [anon_sym_PIPE] = ACTIONS(5810), - [anon_sym_CARET] = ACTIONS(5812), - [anon_sym_AMP] = ACTIONS(5810), - [anon_sym_EQ_EQ] = ACTIONS(5812), - [anon_sym_BANG_EQ] = ACTIONS(5812), - [anon_sym_GT] = ACTIONS(5810), - [anon_sym_GT_EQ] = ACTIONS(5812), - [anon_sym_LT_EQ] = ACTIONS(5810), - [anon_sym_LT] = ACTIONS(5810), - [anon_sym_LT_LT] = ACTIONS(5812), - [anon_sym_GT_GT] = ACTIONS(5812), - [anon_sym_SEMI] = ACTIONS(5812), - [anon_sym___extension__] = ACTIONS(5810), - [anon_sym___attribute__] = ACTIONS(5810), - [anon_sym___attribute] = ACTIONS(5810), - [anon_sym_COLON] = ACTIONS(5812), - [anon_sym___based] = ACTIONS(5810), - [anon_sym_LBRACE] = ACTIONS(5812), - [anon_sym_RBRACE] = ACTIONS(5812), - [anon_sym_signed] = ACTIONS(5810), - [anon_sym_unsigned] = ACTIONS(5810), - [anon_sym_long] = ACTIONS(5810), - [anon_sym_short] = ACTIONS(5810), - [anon_sym_LBRACK] = ACTIONS(5812), - [anon_sym_RBRACK] = ACTIONS(5812), - [anon_sym_const] = ACTIONS(5810), - [anon_sym_constexpr] = ACTIONS(5810), - [anon_sym_volatile] = ACTIONS(5810), - [anon_sym_restrict] = ACTIONS(5810), - [anon_sym___restrict__] = ACTIONS(5810), - [anon_sym__Atomic] = ACTIONS(5810), - [anon_sym__Noreturn] = ACTIONS(5810), - [anon_sym_noreturn] = ACTIONS(5810), - [anon_sym__Nonnull] = ACTIONS(5810), - [anon_sym_mutable] = ACTIONS(5810), - [anon_sym_constinit] = ACTIONS(5810), - [anon_sym_consteval] = ACTIONS(5810), - [anon_sym_alignas] = ACTIONS(5810), - [anon_sym__Alignas] = ACTIONS(5810), - [sym_primitive_type] = ACTIONS(5810), - [anon_sym_QMARK] = ACTIONS(5812), - [anon_sym_LT_EQ_GT] = ACTIONS(5812), - [anon_sym_or] = ACTIONS(5810), - [anon_sym_and] = ACTIONS(5810), - [anon_sym_bitor] = ACTIONS(5810), - [anon_sym_xor] = ACTIONS(5810), - [anon_sym_bitand] = ACTIONS(5810), - [anon_sym_not_eq] = ACTIONS(5810), - [anon_sym_DASH_DASH] = ACTIONS(5812), - [anon_sym_PLUS_PLUS] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(5810), - [anon_sym_DOT_STAR] = ACTIONS(5812), - [anon_sym_DASH_GT] = ACTIONS(5812), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5810), - [anon_sym_decltype] = ACTIONS(5810), - [anon_sym_final] = ACTIONS(5810), - [anon_sym_override] = ACTIONS(5810), - [anon_sym_requires] = ACTIONS(5810), + [1913] = { + [sym_identifier] = ACTIONS(5804), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5806), + [anon_sym_COMMA] = ACTIONS(5806), + [anon_sym_RPAREN] = ACTIONS(5806), + [anon_sym_LPAREN2] = ACTIONS(5806), + [anon_sym_DASH] = ACTIONS(5804), + [anon_sym_PLUS] = ACTIONS(5804), + [anon_sym_STAR] = ACTIONS(5806), + [anon_sym_SLASH] = ACTIONS(5804), + [anon_sym_PERCENT] = ACTIONS(5806), + [anon_sym_PIPE_PIPE] = ACTIONS(5806), + [anon_sym_AMP_AMP] = ACTIONS(5806), + [anon_sym_PIPE] = ACTIONS(5804), + [anon_sym_CARET] = ACTIONS(5806), + [anon_sym_AMP] = ACTIONS(5804), + [anon_sym_EQ_EQ] = ACTIONS(5806), + [anon_sym_BANG_EQ] = ACTIONS(5806), + [anon_sym_GT] = ACTIONS(5804), + [anon_sym_GT_EQ] = ACTIONS(5806), + [anon_sym_LT_EQ] = ACTIONS(5804), + [anon_sym_LT] = ACTIONS(5804), + [anon_sym_LT_LT] = ACTIONS(5806), + [anon_sym_GT_GT] = ACTIONS(5806), + [anon_sym_SEMI] = ACTIONS(5806), + [anon_sym___extension__] = ACTIONS(5804), + [anon_sym___attribute__] = ACTIONS(5804), + [anon_sym___attribute] = ACTIONS(5804), + [anon_sym_COLON] = ACTIONS(5806), + [anon_sym___based] = ACTIONS(5804), + [anon_sym_LBRACE] = ACTIONS(5806), + [anon_sym_RBRACE] = ACTIONS(5806), + [anon_sym_signed] = ACTIONS(5804), + [anon_sym_unsigned] = ACTIONS(5804), + [anon_sym_long] = ACTIONS(5804), + [anon_sym_short] = ACTIONS(5804), + [anon_sym_LBRACK] = ACTIONS(5806), + [anon_sym_RBRACK] = ACTIONS(5806), + [anon_sym_const] = ACTIONS(5804), + [anon_sym_constexpr] = ACTIONS(5804), + [anon_sym_volatile] = ACTIONS(5804), + [anon_sym_restrict] = ACTIONS(5804), + [anon_sym___restrict__] = ACTIONS(5804), + [anon_sym__Atomic] = ACTIONS(5804), + [anon_sym__Noreturn] = ACTIONS(5804), + [anon_sym_noreturn] = ACTIONS(5804), + [anon_sym__Nonnull] = ACTIONS(5804), + [anon_sym_mutable] = ACTIONS(5804), + [anon_sym_constinit] = ACTIONS(5804), + [anon_sym_consteval] = ACTIONS(5804), + [anon_sym_alignas] = ACTIONS(5804), + [anon_sym__Alignas] = ACTIONS(5804), + [sym_primitive_type] = ACTIONS(5804), + [anon_sym_QMARK] = ACTIONS(5806), + [anon_sym_LT_EQ_GT] = ACTIONS(5806), + [anon_sym_or] = ACTIONS(5804), + [anon_sym_and] = ACTIONS(5804), + [anon_sym_bitor] = ACTIONS(5804), + [anon_sym_xor] = ACTIONS(5804), + [anon_sym_bitand] = ACTIONS(5804), + [anon_sym_not_eq] = ACTIONS(5804), + [anon_sym_DASH_DASH] = ACTIONS(5806), + [anon_sym_PLUS_PLUS] = ACTIONS(5806), + [anon_sym_DOT] = ACTIONS(5804), + [anon_sym_DOT_STAR] = ACTIONS(5806), + [anon_sym_DASH_GT] = ACTIONS(5806), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5804), + [anon_sym_decltype] = ACTIONS(5804), + [anon_sym_final] = ACTIONS(5804), + [anon_sym_override] = ACTIONS(5804), + [anon_sym_requires] = ACTIONS(5804), }, - [1888] = { - [sym_identifier] = ACTIONS(5617), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5619), - [anon_sym_COMMA] = ACTIONS(5619), - [anon_sym_RPAREN] = ACTIONS(5619), - [anon_sym_LPAREN2] = ACTIONS(5619), - [anon_sym_DASH] = ACTIONS(5617), - [anon_sym_PLUS] = ACTIONS(5617), - [anon_sym_STAR] = ACTIONS(5619), - [anon_sym_SLASH] = ACTIONS(5617), - [anon_sym_PERCENT] = ACTIONS(5619), - [anon_sym_PIPE_PIPE] = ACTIONS(5619), - [anon_sym_AMP_AMP] = ACTIONS(5619), - [anon_sym_PIPE] = ACTIONS(5617), - [anon_sym_CARET] = ACTIONS(5619), - [anon_sym_AMP] = ACTIONS(5617), - [anon_sym_EQ_EQ] = ACTIONS(5619), - [anon_sym_BANG_EQ] = ACTIONS(5619), - [anon_sym_GT] = ACTIONS(5617), - [anon_sym_GT_EQ] = ACTIONS(5619), - [anon_sym_LT_EQ] = ACTIONS(5617), - [anon_sym_LT] = ACTIONS(5617), - [anon_sym_LT_LT] = ACTIONS(5619), - [anon_sym_GT_GT] = ACTIONS(5619), - [anon_sym_SEMI] = ACTIONS(5619), - [anon_sym___extension__] = ACTIONS(5617), - [anon_sym___attribute__] = ACTIONS(5617), - [anon_sym___attribute] = ACTIONS(5617), - [anon_sym_COLON] = ACTIONS(5619), - [anon_sym___based] = ACTIONS(5617), - [anon_sym_LBRACE] = ACTIONS(5619), - [anon_sym_RBRACE] = ACTIONS(5619), - [anon_sym_signed] = ACTIONS(5617), - [anon_sym_unsigned] = ACTIONS(5617), - [anon_sym_long] = ACTIONS(5617), - [anon_sym_short] = ACTIONS(5617), - [anon_sym_LBRACK] = ACTIONS(5619), - [anon_sym_RBRACK] = ACTIONS(5619), - [anon_sym_const] = ACTIONS(5617), - [anon_sym_constexpr] = ACTIONS(5617), - [anon_sym_volatile] = ACTIONS(5617), - [anon_sym_restrict] = ACTIONS(5617), - [anon_sym___restrict__] = ACTIONS(5617), - [anon_sym__Atomic] = ACTIONS(5617), - [anon_sym__Noreturn] = ACTIONS(5617), - [anon_sym_noreturn] = ACTIONS(5617), - [anon_sym__Nonnull] = ACTIONS(5617), - [anon_sym_mutable] = ACTIONS(5617), - [anon_sym_constinit] = ACTIONS(5617), - [anon_sym_consteval] = ACTIONS(5617), - [anon_sym_alignas] = ACTIONS(5617), - [anon_sym__Alignas] = ACTIONS(5617), - [sym_primitive_type] = ACTIONS(5617), - [anon_sym_QMARK] = ACTIONS(5619), - [anon_sym_LT_EQ_GT] = ACTIONS(5619), - [anon_sym_or] = ACTIONS(5617), - [anon_sym_and] = ACTIONS(5617), - [anon_sym_bitor] = ACTIONS(5617), - [anon_sym_xor] = ACTIONS(5617), - [anon_sym_bitand] = ACTIONS(5617), - [anon_sym_not_eq] = ACTIONS(5617), - [anon_sym_DASH_DASH] = ACTIONS(5619), - [anon_sym_PLUS_PLUS] = ACTIONS(5619), - [anon_sym_DOT] = ACTIONS(5617), - [anon_sym_DOT_STAR] = ACTIONS(5619), - [anon_sym_DASH_GT] = ACTIONS(5619), + [1914] = { + [sym_type_qualifier] = STATE(1676), + [sym_alignas_qualifier] = STATE(1702), + [aux_sym__type_definition_type_repeat1] = STATE(1676), + [aux_sym_sized_type_specifier_repeat1] = STATE(3493), + [sym_identifier] = ACTIONS(5824), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5109), + [anon_sym_COMMA] = ACTIONS(5109), + [aux_sym_preproc_if_token2] = ACTIONS(5109), + [aux_sym_preproc_else_token1] = ACTIONS(5109), + [aux_sym_preproc_elif_token1] = ACTIONS(5111), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5109), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5109), + [anon_sym_LPAREN2] = ACTIONS(5109), + [anon_sym_DASH] = ACTIONS(5111), + [anon_sym_PLUS] = ACTIONS(5111), + [anon_sym_STAR] = ACTIONS(5109), + [anon_sym_SLASH] = ACTIONS(5111), + [anon_sym_PERCENT] = ACTIONS(5109), + [anon_sym_PIPE_PIPE] = ACTIONS(5109), + [anon_sym_AMP_AMP] = ACTIONS(5109), + [anon_sym_PIPE] = ACTIONS(5111), + [anon_sym_CARET] = ACTIONS(5109), + [anon_sym_AMP] = ACTIONS(5111), + [anon_sym_EQ_EQ] = ACTIONS(5109), + [anon_sym_BANG_EQ] = ACTIONS(5109), + [anon_sym_GT] = ACTIONS(5111), + [anon_sym_GT_EQ] = ACTIONS(5109), + [anon_sym_LT_EQ] = ACTIONS(5111), + [anon_sym_LT] = ACTIONS(5111), + [anon_sym_LT_LT] = ACTIONS(5109), + [anon_sym_GT_GT] = ACTIONS(5109), + [anon_sym___extension__] = ACTIONS(5652), + [anon_sym___attribute__] = ACTIONS(5111), + [anon_sym___attribute] = ACTIONS(5111), + [anon_sym_LBRACE] = ACTIONS(5109), + [anon_sym_signed] = ACTIONS(5827), + [anon_sym_unsigned] = ACTIONS(5827), + [anon_sym_long] = ACTIONS(5827), + [anon_sym_short] = ACTIONS(5827), + [anon_sym_LBRACK] = ACTIONS(5109), + [anon_sym_const] = ACTIONS(5652), + [anon_sym_constexpr] = ACTIONS(5652), + [anon_sym_volatile] = ACTIONS(5652), + [anon_sym_restrict] = ACTIONS(5652), + [anon_sym___restrict__] = ACTIONS(5652), + [anon_sym__Atomic] = ACTIONS(5652), + [anon_sym__Noreturn] = ACTIONS(5652), + [anon_sym_noreturn] = ACTIONS(5652), + [anon_sym__Nonnull] = ACTIONS(5652), + [anon_sym_mutable] = ACTIONS(5652), + [anon_sym_constinit] = ACTIONS(5652), + [anon_sym_consteval] = ACTIONS(5652), + [anon_sym_alignas] = ACTIONS(5656), + [anon_sym__Alignas] = ACTIONS(5656), + [sym_primitive_type] = ACTIONS(5829), + [anon_sym_QMARK] = ACTIONS(5109), + [anon_sym_LT_EQ_GT] = ACTIONS(5109), + [anon_sym_or] = ACTIONS(5111), + [anon_sym_and] = ACTIONS(5111), + [anon_sym_bitor] = ACTIONS(5111), + [anon_sym_xor] = ACTIONS(5111), + [anon_sym_bitand] = ACTIONS(5111), + [anon_sym_not_eq] = ACTIONS(5111), + [anon_sym_DASH_DASH] = ACTIONS(5109), + [anon_sym_PLUS_PLUS] = ACTIONS(5109), + [anon_sym_DOT] = ACTIONS(5111), + [anon_sym_DOT_STAR] = ACTIONS(5109), + [anon_sym_DASH_GT] = ACTIONS(5109), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5111), + [anon_sym_decltype] = ACTIONS(5111), + }, + [1915] = { + [sym_template_argument_list] = STATE(1972), + [sym_identifier] = ACTIONS(4925), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4932), + [anon_sym_COMMA] = ACTIONS(4932), + [anon_sym_RPAREN] = ACTIONS(4932), + [aux_sym_preproc_if_token2] = ACTIONS(4932), + [aux_sym_preproc_else_token1] = ACTIONS(4932), + [aux_sym_preproc_elif_token1] = ACTIONS(4925), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4932), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4932), + [anon_sym_LPAREN2] = ACTIONS(4932), + [anon_sym_DASH] = ACTIONS(4925), + [anon_sym_PLUS] = ACTIONS(4925), + [anon_sym_STAR] = ACTIONS(4925), + [anon_sym_SLASH] = ACTIONS(4925), + [anon_sym_PERCENT] = ACTIONS(4925), + [anon_sym_PIPE_PIPE] = ACTIONS(4932), + [anon_sym_AMP_AMP] = ACTIONS(4932), + [anon_sym_PIPE] = ACTIONS(4925), + [anon_sym_CARET] = ACTIONS(4925), + [anon_sym_AMP] = ACTIONS(4925), + [anon_sym_EQ_EQ] = ACTIONS(4932), + [anon_sym_BANG_EQ] = ACTIONS(4932), + [anon_sym_GT] = ACTIONS(4925), + [anon_sym_GT_EQ] = ACTIONS(4932), + [anon_sym_LT_EQ] = ACTIONS(4925), + [anon_sym_LT] = ACTIONS(5831), + [anon_sym_LT_LT] = ACTIONS(4925), + [anon_sym_GT_GT] = ACTIONS(4925), + [anon_sym_SEMI] = ACTIONS(4932), + [anon_sym___attribute__] = ACTIONS(4925), + [anon_sym___attribute] = ACTIONS(4925), + [anon_sym_COLON] = ACTIONS(4925), + [anon_sym_COLON_COLON] = ACTIONS(4187), + [anon_sym_LBRACE] = ACTIONS(4932), + [anon_sym_RBRACE] = ACTIONS(4932), + [anon_sym_LBRACK] = ACTIONS(4932), + [anon_sym_RBRACK] = ACTIONS(4932), + [anon_sym_EQ] = ACTIONS(4925), + [anon_sym_QMARK] = ACTIONS(4932), + [anon_sym_STAR_EQ] = ACTIONS(4932), + [anon_sym_SLASH_EQ] = ACTIONS(4932), + [anon_sym_PERCENT_EQ] = ACTIONS(4932), + [anon_sym_PLUS_EQ] = ACTIONS(4932), + [anon_sym_DASH_EQ] = ACTIONS(4932), + [anon_sym_LT_LT_EQ] = ACTIONS(4932), + [anon_sym_GT_GT_EQ] = ACTIONS(4932), + [anon_sym_AMP_EQ] = ACTIONS(4932), + [anon_sym_CARET_EQ] = ACTIONS(4932), + [anon_sym_PIPE_EQ] = ACTIONS(4932), + [anon_sym_and_eq] = ACTIONS(4925), + [anon_sym_or_eq] = ACTIONS(4925), + [anon_sym_xor_eq] = ACTIONS(4925), + [anon_sym_LT_EQ_GT] = ACTIONS(4932), + [anon_sym_or] = ACTIONS(4925), + [anon_sym_and] = ACTIONS(4925), + [anon_sym_bitor] = ACTIONS(4925), + [anon_sym_xor] = ACTIONS(4925), + [anon_sym_bitand] = ACTIONS(4925), + [anon_sym_not_eq] = ACTIONS(4925), + [anon_sym_DASH_DASH] = ACTIONS(4932), + [anon_sym_PLUS_PLUS] = ACTIONS(4932), + [anon_sym_DOT] = ACTIONS(4925), + [anon_sym_DOT_STAR] = ACTIONS(4932), + [anon_sym_DASH_GT] = ACTIONS(4932), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4925), + [anon_sym_decltype] = ACTIONS(4925), + [anon_sym_final] = ACTIONS(4925), + [anon_sym_override] = ACTIONS(4925), + }, + [1916] = { + [sym_identifier] = ACTIONS(5515), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5517), + [anon_sym_COMMA] = ACTIONS(5517), + [anon_sym_RPAREN] = ACTIONS(5517), + [aux_sym_preproc_if_token2] = ACTIONS(5517), + [aux_sym_preproc_else_token1] = ACTIONS(5517), + [aux_sym_preproc_elif_token1] = ACTIONS(5515), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5517), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5517), + [anon_sym_LPAREN2] = ACTIONS(5517), + [anon_sym_DASH] = ACTIONS(5515), + [anon_sym_PLUS] = ACTIONS(5515), + [anon_sym_STAR] = ACTIONS(5517), + [anon_sym_SLASH] = ACTIONS(5515), + [anon_sym_PERCENT] = ACTIONS(5517), + [anon_sym_PIPE_PIPE] = ACTIONS(5517), + [anon_sym_AMP_AMP] = ACTIONS(5517), + [anon_sym_PIPE] = ACTIONS(5515), + [anon_sym_CARET] = ACTIONS(5517), + [anon_sym_AMP] = ACTIONS(5515), + [anon_sym_EQ_EQ] = ACTIONS(5517), + [anon_sym_BANG_EQ] = ACTIONS(5517), + [anon_sym_GT] = ACTIONS(5515), + [anon_sym_GT_EQ] = ACTIONS(5517), + [anon_sym_LT_EQ] = ACTIONS(5515), + [anon_sym_LT] = ACTIONS(5515), + [anon_sym_LT_LT] = ACTIONS(5517), + [anon_sym_GT_GT] = ACTIONS(5517), + [anon_sym_SEMI] = ACTIONS(5517), + [anon_sym___extension__] = ACTIONS(5515), + [anon_sym___attribute__] = ACTIONS(5515), + [anon_sym___attribute] = ACTIONS(5515), + [anon_sym_COLON] = ACTIONS(5517), + [anon_sym_LBRACE] = ACTIONS(5517), + [anon_sym_RBRACE] = ACTIONS(5517), + [anon_sym_LBRACK] = ACTIONS(5517), + [anon_sym_RBRACK] = ACTIONS(5517), + [anon_sym_const] = ACTIONS(5515), + [anon_sym_constexpr] = ACTIONS(5515), + [anon_sym_volatile] = ACTIONS(5515), + [anon_sym_restrict] = ACTIONS(5515), + [anon_sym___restrict__] = ACTIONS(5515), + [anon_sym__Atomic] = ACTIONS(5515), + [anon_sym__Noreturn] = ACTIONS(5515), + [anon_sym_noreturn] = ACTIONS(5515), + [anon_sym__Nonnull] = ACTIONS(5515), + [anon_sym_mutable] = ACTIONS(5515), + [anon_sym_constinit] = ACTIONS(5515), + [anon_sym_consteval] = ACTIONS(5515), + [anon_sym_alignas] = ACTIONS(5515), + [anon_sym__Alignas] = ACTIONS(5515), + [anon_sym_QMARK] = ACTIONS(5517), + [anon_sym_LT_EQ_GT] = ACTIONS(5517), + [anon_sym_or] = ACTIONS(5515), + [anon_sym_and] = ACTIONS(5515), + [anon_sym_bitor] = ACTIONS(5515), + [anon_sym_xor] = ACTIONS(5515), + [anon_sym_bitand] = ACTIONS(5515), + [anon_sym_not_eq] = ACTIONS(5515), + [anon_sym_DASH_DASH] = ACTIONS(5517), + [anon_sym_PLUS_PLUS] = ACTIONS(5517), + [anon_sym_DOT] = ACTIONS(5515), + [anon_sym_DOT_STAR] = ACTIONS(5517), + [anon_sym_DASH_GT] = ACTIONS(5517), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5515), + [anon_sym_decltype] = ACTIONS(5515), + [anon_sym_final] = ACTIONS(5515), + [anon_sym_override] = ACTIONS(5515), + [anon_sym_requires] = ACTIONS(5515), + }, + [1917] = { + [sym_template_argument_list] = STATE(1972), + [sym_identifier] = ACTIONS(5834), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4192), + [anon_sym_COMMA] = ACTIONS(4192), + [anon_sym_RPAREN] = ACTIONS(4192), + [aux_sym_preproc_if_token2] = ACTIONS(4192), + [aux_sym_preproc_else_token1] = ACTIONS(4192), + [aux_sym_preproc_elif_token1] = ACTIONS(5834), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4192), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4192), + [anon_sym_LPAREN2] = ACTIONS(4192), + [anon_sym_DASH] = ACTIONS(5834), + [anon_sym_PLUS] = ACTIONS(5834), + [anon_sym_STAR] = ACTIONS(5834), + [anon_sym_SLASH] = ACTIONS(5834), + [anon_sym_PERCENT] = ACTIONS(5834), + [anon_sym_PIPE_PIPE] = ACTIONS(4192), + [anon_sym_AMP_AMP] = ACTIONS(4192), + [anon_sym_PIPE] = ACTIONS(5834), + [anon_sym_CARET] = ACTIONS(5834), + [anon_sym_AMP] = ACTIONS(5834), + [anon_sym_EQ_EQ] = ACTIONS(4192), + [anon_sym_BANG_EQ] = ACTIONS(4192), + [anon_sym_GT] = ACTIONS(5834), + [anon_sym_GT_EQ] = ACTIONS(4192), + [anon_sym_LT_EQ] = ACTIONS(5834), + [anon_sym_LT] = ACTIONS(5836), + [anon_sym_LT_LT] = ACTIONS(5834), + [anon_sym_GT_GT] = ACTIONS(5834), + [anon_sym_SEMI] = ACTIONS(4192), + [anon_sym___attribute__] = ACTIONS(5834), + [anon_sym___attribute] = ACTIONS(5834), + [anon_sym_COLON] = ACTIONS(5834), + [anon_sym_COLON_COLON] = ACTIONS(4187), + [anon_sym_LBRACE] = ACTIONS(4192), + [anon_sym_RBRACE] = ACTIONS(4192), + [anon_sym_LBRACK] = ACTIONS(4192), + [anon_sym_RBRACK] = ACTIONS(4192), + [anon_sym_EQ] = ACTIONS(5834), + [anon_sym_QMARK] = ACTIONS(4192), + [anon_sym_STAR_EQ] = ACTIONS(4192), + [anon_sym_SLASH_EQ] = ACTIONS(4192), + [anon_sym_PERCENT_EQ] = ACTIONS(4192), + [anon_sym_PLUS_EQ] = ACTIONS(4192), + [anon_sym_DASH_EQ] = ACTIONS(4192), + [anon_sym_LT_LT_EQ] = ACTIONS(4192), + [anon_sym_GT_GT_EQ] = ACTIONS(4192), + [anon_sym_AMP_EQ] = ACTIONS(4192), + [anon_sym_CARET_EQ] = ACTIONS(4192), + [anon_sym_PIPE_EQ] = ACTIONS(4192), + [anon_sym_and_eq] = ACTIONS(5834), + [anon_sym_or_eq] = ACTIONS(5834), + [anon_sym_xor_eq] = ACTIONS(5834), + [anon_sym_LT_EQ_GT] = ACTIONS(4192), + [anon_sym_or] = ACTIONS(5834), + [anon_sym_and] = ACTIONS(5834), + [anon_sym_bitor] = ACTIONS(5834), + [anon_sym_xor] = ACTIONS(5834), + [anon_sym_bitand] = ACTIONS(5834), + [anon_sym_not_eq] = ACTIONS(5834), + [anon_sym_DASH_DASH] = ACTIONS(4192), + [anon_sym_PLUS_PLUS] = ACTIONS(4192), + [anon_sym_DOT] = ACTIONS(5834), + [anon_sym_DOT_STAR] = ACTIONS(4192), + [anon_sym_DASH_GT] = ACTIONS(4192), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5834), + [anon_sym_decltype] = ACTIONS(5834), + [anon_sym_final] = ACTIONS(5834), + [anon_sym_override] = ACTIONS(5834), + }, + [1918] = { + [sym_template_argument_list] = STATE(1975), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4927), + [anon_sym_RPAREN] = ACTIONS(4929), + [anon_sym_LPAREN2] = ACTIONS(4929), + [anon_sym_DASH] = ACTIONS(4934), + [anon_sym_PLUS] = ACTIONS(4934), + [anon_sym_STAR] = ACTIONS(4936), + [anon_sym_SLASH] = ACTIONS(4934), + [anon_sym_PERCENT] = ACTIONS(4934), + [anon_sym_PIPE_PIPE] = ACTIONS(4927), + [anon_sym_AMP_AMP] = ACTIONS(4929), + [anon_sym_PIPE] = ACTIONS(4934), + [anon_sym_CARET] = ACTIONS(4934), + [anon_sym_AMP] = ACTIONS(4936), + [anon_sym_EQ_EQ] = ACTIONS(4927), + [anon_sym_BANG_EQ] = ACTIONS(4927), + [anon_sym_GT] = ACTIONS(4934), + [anon_sym_GT_EQ] = ACTIONS(4927), + [anon_sym_LT_EQ] = ACTIONS(4934), + [anon_sym_LT] = ACTIONS(5838), + [anon_sym_LT_LT] = ACTIONS(4934), + [anon_sym_GT_GT] = ACTIONS(4934), + [anon_sym___extension__] = ACTIONS(4932), + [anon_sym_COLON_COLON] = ACTIONS(4187), + [anon_sym_LBRACE] = ACTIONS(4932), + [anon_sym_LBRACK] = ACTIONS(4929), + [anon_sym_EQ] = ACTIONS(4934), + [anon_sym_const] = ACTIONS(4925), + [anon_sym_constexpr] = ACTIONS(4932), + [anon_sym_volatile] = ACTIONS(4932), + [anon_sym_restrict] = ACTIONS(4932), + [anon_sym___restrict__] = ACTIONS(4932), + [anon_sym__Atomic] = ACTIONS(4932), + [anon_sym__Noreturn] = ACTIONS(4932), + [anon_sym_noreturn] = ACTIONS(4932), + [anon_sym__Nonnull] = ACTIONS(4932), + [anon_sym_mutable] = ACTIONS(4932), + [anon_sym_constinit] = ACTIONS(4932), + [anon_sym_consteval] = ACTIONS(4932), + [anon_sym_alignas] = ACTIONS(4932), + [anon_sym__Alignas] = ACTIONS(4932), + [anon_sym_QMARK] = ACTIONS(4927), + [anon_sym_STAR_EQ] = ACTIONS(4927), + [anon_sym_SLASH_EQ] = ACTIONS(4927), + [anon_sym_PERCENT_EQ] = ACTIONS(4927), + [anon_sym_PLUS_EQ] = ACTIONS(4927), + [anon_sym_DASH_EQ] = ACTIONS(4927), + [anon_sym_LT_LT_EQ] = ACTIONS(4927), + [anon_sym_GT_GT_EQ] = ACTIONS(4927), + [anon_sym_AMP_EQ] = ACTIONS(4927), + [anon_sym_CARET_EQ] = ACTIONS(4927), + [anon_sym_PIPE_EQ] = ACTIONS(4927), + [anon_sym_and_eq] = ACTIONS(4927), + [anon_sym_or_eq] = ACTIONS(4927), + [anon_sym_xor_eq] = ACTIONS(4927), + [anon_sym_LT_EQ_GT] = ACTIONS(4927), + [anon_sym_or] = ACTIONS(4934), + [anon_sym_and] = ACTIONS(4934), + [anon_sym_bitor] = ACTIONS(4927), + [anon_sym_xor] = ACTIONS(4934), + [anon_sym_bitand] = ACTIONS(4927), + [anon_sym_not_eq] = ACTIONS(4927), + [anon_sym_DASH_DASH] = ACTIONS(4927), + [anon_sym_PLUS_PLUS] = ACTIONS(4927), + [anon_sym_DOT] = ACTIONS(4934), + [anon_sym_DOT_STAR] = ACTIONS(4927), + [anon_sym_DASH_GT] = ACTIONS(4927), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4932), + [anon_sym_decltype] = ACTIONS(4932), + }, + [1919] = { + [sym_identifier] = ACTIONS(5541), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5543), + [anon_sym_COMMA] = ACTIONS(5543), + [anon_sym_RPAREN] = ACTIONS(5543), + [anon_sym_LPAREN2] = ACTIONS(5543), + [anon_sym_TILDE] = ACTIONS(5543), + [anon_sym_STAR] = ACTIONS(5543), + [anon_sym_PIPE_PIPE] = ACTIONS(5543), + [anon_sym_AMP_AMP] = ACTIONS(5543), + [anon_sym_AMP] = ACTIONS(5541), + [anon_sym_SEMI] = ACTIONS(5543), + [anon_sym___extension__] = ACTIONS(5541), + [anon_sym_virtual] = ACTIONS(5541), + [anon_sym_extern] = ACTIONS(5541), + [anon_sym___attribute__] = ACTIONS(5541), + [anon_sym___attribute] = ACTIONS(5541), + [anon_sym_COLON] = ACTIONS(5541), + [anon_sym_COLON_COLON] = ACTIONS(5519), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5543), + [anon_sym___declspec] = ACTIONS(5541), + [anon_sym___based] = ACTIONS(5541), + [anon_sym___cdecl] = ACTIONS(5541), + [anon_sym___clrcall] = ACTIONS(5541), + [anon_sym___stdcall] = ACTIONS(5541), + [anon_sym___fastcall] = ACTIONS(5541), + [anon_sym___thiscall] = ACTIONS(5541), + [anon_sym___vectorcall] = ACTIONS(5541), + [anon_sym_LBRACE] = ACTIONS(5543), + [anon_sym_LBRACK] = ACTIONS(5541), + [anon_sym_static] = ACTIONS(5541), + [anon_sym_EQ] = ACTIONS(5543), + [anon_sym_register] = ACTIONS(5541), + [anon_sym_inline] = ACTIONS(5541), + [anon_sym___inline] = ACTIONS(5541), + [anon_sym___inline__] = ACTIONS(5541), + [anon_sym___forceinline] = ACTIONS(5541), + [anon_sym_thread_local] = ACTIONS(5541), + [anon_sym___thread] = ACTIONS(5541), + [anon_sym_const] = ACTIONS(5541), + [anon_sym_constexpr] = ACTIONS(5541), + [anon_sym_volatile] = ACTIONS(5541), + [anon_sym_restrict] = ACTIONS(5541), + [anon_sym___restrict__] = ACTIONS(5541), + [anon_sym__Atomic] = ACTIONS(5541), + [anon_sym__Noreturn] = ACTIONS(5541), + [anon_sym_noreturn] = ACTIONS(5541), + [anon_sym__Nonnull] = ACTIONS(5541), + [anon_sym_mutable] = ACTIONS(5541), + [anon_sym_constinit] = ACTIONS(5541), + [anon_sym_consteval] = ACTIONS(5541), + [anon_sym_alignas] = ACTIONS(5541), + [anon_sym__Alignas] = ACTIONS(5541), + [anon_sym_or] = ACTIONS(5541), + [anon_sym_and] = ACTIONS(5541), + [anon_sym_asm] = ACTIONS(5541), + [anon_sym___asm__] = ACTIONS(5541), + [anon_sym___asm] = ACTIONS(5541), + [anon_sym_DASH_GT] = ACTIONS(5543), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5541), + [anon_sym_decltype] = ACTIONS(5541), + [anon_sym_final] = ACTIONS(5541), + [anon_sym_override] = ACTIONS(5541), + [anon_sym_template] = ACTIONS(5541), + [anon_sym_GT2] = ACTIONS(5543), + [anon_sym_operator] = ACTIONS(5541), + [anon_sym_try] = ACTIONS(5541), + [anon_sym_noexcept] = ACTIONS(5541), + [anon_sym_throw] = ACTIONS(5541), + [anon_sym_requires] = ACTIONS(5541), + }, + [1920] = { + [sym_argument_list] = STATE(2481), + [sym_initializer_list] = STATE(2481), + [sym_decltype_auto] = STATE(2321), + [sym_new_declarator] = STATE(2315), + [sym_identifier] = ACTIONS(5841), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5843), + [anon_sym_COMMA] = ACTIONS(5843), + [anon_sym_RPAREN] = ACTIONS(5843), + [aux_sym_preproc_if_token2] = ACTIONS(5843), + [aux_sym_preproc_else_token1] = ACTIONS(5843), + [aux_sym_preproc_elif_token1] = ACTIONS(5841), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5843), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5843), + [anon_sym_LPAREN2] = ACTIONS(5845), + [anon_sym_DASH] = ACTIONS(5841), + [anon_sym_PLUS] = ACTIONS(5841), + [anon_sym_STAR] = ACTIONS(5841), + [anon_sym_SLASH] = ACTIONS(5841), + [anon_sym_PERCENT] = ACTIONS(5841), + [anon_sym_PIPE_PIPE] = ACTIONS(5843), + [anon_sym_AMP_AMP] = ACTIONS(5843), + [anon_sym_PIPE] = ACTIONS(5841), + [anon_sym_CARET] = ACTIONS(5841), + [anon_sym_AMP] = ACTIONS(5841), + [anon_sym_EQ_EQ] = ACTIONS(5843), + [anon_sym_BANG_EQ] = ACTIONS(5843), + [anon_sym_GT] = ACTIONS(5841), + [anon_sym_GT_EQ] = ACTIONS(5843), + [anon_sym_LT_EQ] = ACTIONS(5841), + [anon_sym_LT] = ACTIONS(5841), + [anon_sym_LT_LT] = ACTIONS(5841), + [anon_sym_GT_GT] = ACTIONS(5841), + [anon_sym_SEMI] = ACTIONS(5843), + [anon_sym___attribute__] = ACTIONS(5841), + [anon_sym___attribute] = ACTIONS(5841), + [anon_sym_COLON] = ACTIONS(5843), + [anon_sym_LBRACE] = ACTIONS(1954), + [anon_sym_RBRACE] = ACTIONS(5843), + [anon_sym_LBRACK] = ACTIONS(5847), + [anon_sym_RBRACK] = ACTIONS(5843), + [anon_sym_EQ] = ACTIONS(5841), + [anon_sym_QMARK] = ACTIONS(5843), + [anon_sym_STAR_EQ] = ACTIONS(5843), + [anon_sym_SLASH_EQ] = ACTIONS(5843), + [anon_sym_PERCENT_EQ] = ACTIONS(5843), + [anon_sym_PLUS_EQ] = ACTIONS(5843), + [anon_sym_DASH_EQ] = ACTIONS(5843), + [anon_sym_LT_LT_EQ] = ACTIONS(5843), + [anon_sym_GT_GT_EQ] = ACTIONS(5843), + [anon_sym_AMP_EQ] = ACTIONS(5843), + [anon_sym_CARET_EQ] = ACTIONS(5843), + [anon_sym_PIPE_EQ] = ACTIONS(5843), + [anon_sym_and_eq] = ACTIONS(5841), + [anon_sym_or_eq] = ACTIONS(5841), + [anon_sym_xor_eq] = ACTIONS(5841), + [anon_sym_LT_EQ_GT] = ACTIONS(5843), + [anon_sym_or] = ACTIONS(5841), + [anon_sym_and] = ACTIONS(5841), + [anon_sym_bitor] = ACTIONS(5841), + [anon_sym_xor] = ACTIONS(5841), + [anon_sym_bitand] = ACTIONS(5841), + [anon_sym_not_eq] = ACTIONS(5841), + [anon_sym_DASH_DASH] = ACTIONS(5843), + [anon_sym_PLUS_PLUS] = ACTIONS(5843), + [anon_sym_DOT] = ACTIONS(5841), + [anon_sym_DOT_STAR] = ACTIONS(5843), + [anon_sym_DASH_GT] = ACTIONS(5843), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5849), + [anon_sym_decltype] = ACTIONS(5851), + }, + [1921] = { + [sym_argument_list] = STATE(2545), + [sym_initializer_list] = STATE(2545), + [sym_decltype_auto] = STATE(2321), + [sym_new_declarator] = STATE(2284), + [sym_identifier] = ACTIONS(5853), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5855), + [anon_sym_COMMA] = ACTIONS(5855), + [anon_sym_RPAREN] = ACTIONS(5855), + [aux_sym_preproc_if_token2] = ACTIONS(5855), + [aux_sym_preproc_else_token1] = ACTIONS(5855), + [aux_sym_preproc_elif_token1] = ACTIONS(5853), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5855), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5855), + [anon_sym_LPAREN2] = ACTIONS(5845), + [anon_sym_DASH] = ACTIONS(5853), + [anon_sym_PLUS] = ACTIONS(5853), + [anon_sym_STAR] = ACTIONS(5853), + [anon_sym_SLASH] = ACTIONS(5853), + [anon_sym_PERCENT] = ACTIONS(5853), + [anon_sym_PIPE_PIPE] = ACTIONS(5855), + [anon_sym_AMP_AMP] = ACTIONS(5855), + [anon_sym_PIPE] = ACTIONS(5853), + [anon_sym_CARET] = ACTIONS(5853), + [anon_sym_AMP] = ACTIONS(5853), + [anon_sym_EQ_EQ] = ACTIONS(5855), + [anon_sym_BANG_EQ] = ACTIONS(5855), + [anon_sym_GT] = ACTIONS(5853), + [anon_sym_GT_EQ] = ACTIONS(5855), + [anon_sym_LT_EQ] = ACTIONS(5853), + [anon_sym_LT] = ACTIONS(5853), + [anon_sym_LT_LT] = ACTIONS(5853), + [anon_sym_GT_GT] = ACTIONS(5853), + [anon_sym_SEMI] = ACTIONS(5855), + [anon_sym___attribute__] = ACTIONS(5853), + [anon_sym___attribute] = ACTIONS(5853), + [anon_sym_COLON] = ACTIONS(5855), + [anon_sym_LBRACE] = ACTIONS(1954), + [anon_sym_RBRACE] = ACTIONS(5855), + [anon_sym_LBRACK] = ACTIONS(5847), + [anon_sym_RBRACK] = ACTIONS(5855), + [anon_sym_EQ] = ACTIONS(5853), + [anon_sym_QMARK] = ACTIONS(5855), + [anon_sym_STAR_EQ] = ACTIONS(5855), + [anon_sym_SLASH_EQ] = ACTIONS(5855), + [anon_sym_PERCENT_EQ] = ACTIONS(5855), + [anon_sym_PLUS_EQ] = ACTIONS(5855), + [anon_sym_DASH_EQ] = ACTIONS(5855), + [anon_sym_LT_LT_EQ] = ACTIONS(5855), + [anon_sym_GT_GT_EQ] = ACTIONS(5855), + [anon_sym_AMP_EQ] = ACTIONS(5855), + [anon_sym_CARET_EQ] = ACTIONS(5855), + [anon_sym_PIPE_EQ] = ACTIONS(5855), + [anon_sym_and_eq] = ACTIONS(5853), + [anon_sym_or_eq] = ACTIONS(5853), + [anon_sym_xor_eq] = ACTIONS(5853), + [anon_sym_LT_EQ_GT] = ACTIONS(5855), + [anon_sym_or] = ACTIONS(5853), + [anon_sym_and] = ACTIONS(5853), + [anon_sym_bitor] = ACTIONS(5853), + [anon_sym_xor] = ACTIONS(5853), + [anon_sym_bitand] = ACTIONS(5853), + [anon_sym_not_eq] = ACTIONS(5853), + [anon_sym_DASH_DASH] = ACTIONS(5855), + [anon_sym_PLUS_PLUS] = ACTIONS(5855), + [anon_sym_DOT] = ACTIONS(5853), + [anon_sym_DOT_STAR] = ACTIONS(5855), + [anon_sym_DASH_GT] = ACTIONS(5855), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5849), + [anon_sym_decltype] = ACTIONS(5851), + }, + [1922] = { + [sym_identifier] = ACTIONS(5521), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5523), + [anon_sym_COMMA] = ACTIONS(5523), + [anon_sym_RPAREN] = ACTIONS(5523), + [anon_sym_LPAREN2] = ACTIONS(5523), + [anon_sym_TILDE] = ACTIONS(5523), + [anon_sym_STAR] = ACTIONS(5523), + [anon_sym_PIPE_PIPE] = ACTIONS(5523), + [anon_sym_AMP_AMP] = ACTIONS(5523), + [anon_sym_AMP] = ACTIONS(5521), + [anon_sym_SEMI] = ACTIONS(5523), + [anon_sym___extension__] = ACTIONS(5521), + [anon_sym_virtual] = ACTIONS(5521), + [anon_sym_extern] = ACTIONS(5521), + [anon_sym___attribute__] = ACTIONS(5521), + [anon_sym___attribute] = ACTIONS(5521), + [anon_sym_COLON] = ACTIONS(5521), + [anon_sym_COLON_COLON] = ACTIONS(5519), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5523), + [anon_sym___declspec] = ACTIONS(5521), + [anon_sym___based] = ACTIONS(5521), + [anon_sym___cdecl] = ACTIONS(5521), + [anon_sym___clrcall] = ACTIONS(5521), + [anon_sym___stdcall] = ACTIONS(5521), + [anon_sym___fastcall] = ACTIONS(5521), + [anon_sym___thiscall] = ACTIONS(5521), + [anon_sym___vectorcall] = ACTIONS(5521), + [anon_sym_LBRACE] = ACTIONS(5523), + [anon_sym_LBRACK] = ACTIONS(5521), + [anon_sym_static] = ACTIONS(5521), + [anon_sym_EQ] = ACTIONS(5523), + [anon_sym_register] = ACTIONS(5521), + [anon_sym_inline] = ACTIONS(5521), + [anon_sym___inline] = ACTIONS(5521), + [anon_sym___inline__] = ACTIONS(5521), + [anon_sym___forceinline] = ACTIONS(5521), + [anon_sym_thread_local] = ACTIONS(5521), + [anon_sym___thread] = ACTIONS(5521), + [anon_sym_const] = ACTIONS(5521), + [anon_sym_constexpr] = ACTIONS(5521), + [anon_sym_volatile] = ACTIONS(5521), + [anon_sym_restrict] = ACTIONS(5521), + [anon_sym___restrict__] = ACTIONS(5521), + [anon_sym__Atomic] = ACTIONS(5521), + [anon_sym__Noreturn] = ACTIONS(5521), + [anon_sym_noreturn] = ACTIONS(5521), + [anon_sym__Nonnull] = ACTIONS(5521), + [anon_sym_mutable] = ACTIONS(5521), + [anon_sym_constinit] = ACTIONS(5521), + [anon_sym_consteval] = ACTIONS(5521), + [anon_sym_alignas] = ACTIONS(5521), + [anon_sym__Alignas] = ACTIONS(5521), + [anon_sym_or] = ACTIONS(5521), + [anon_sym_and] = ACTIONS(5521), + [anon_sym_asm] = ACTIONS(5521), + [anon_sym___asm__] = ACTIONS(5521), + [anon_sym___asm] = ACTIONS(5521), + [anon_sym_DASH_GT] = ACTIONS(5523), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5521), + [anon_sym_decltype] = ACTIONS(5521), + [anon_sym_final] = ACTIONS(5521), + [anon_sym_override] = ACTIONS(5521), + [anon_sym_template] = ACTIONS(5521), + [anon_sym_GT2] = ACTIONS(5523), + [anon_sym_operator] = ACTIONS(5521), + [anon_sym_try] = ACTIONS(5521), + [anon_sym_noexcept] = ACTIONS(5521), + [anon_sym_throw] = ACTIONS(5521), + [anon_sym_requires] = ACTIONS(5521), + }, + [1923] = { + [sym_identifier] = ACTIONS(5545), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5547), + [anon_sym_COMMA] = ACTIONS(5547), + [anon_sym_RPAREN] = ACTIONS(5547), + [anon_sym_LPAREN2] = ACTIONS(5547), + [anon_sym_TILDE] = ACTIONS(5547), + [anon_sym_STAR] = ACTIONS(5547), + [anon_sym_PIPE_PIPE] = ACTIONS(5547), + [anon_sym_AMP_AMP] = ACTIONS(5547), + [anon_sym_AMP] = ACTIONS(5545), + [anon_sym_SEMI] = ACTIONS(5547), + [anon_sym___extension__] = ACTIONS(5545), + [anon_sym_virtual] = ACTIONS(5545), + [anon_sym_extern] = ACTIONS(5545), + [anon_sym___attribute__] = ACTIONS(5545), + [anon_sym___attribute] = ACTIONS(5545), + [anon_sym_COLON] = ACTIONS(5545), + [anon_sym_COLON_COLON] = ACTIONS(5547), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5547), + [anon_sym___declspec] = ACTIONS(5545), + [anon_sym___based] = ACTIONS(5545), + [anon_sym___cdecl] = ACTIONS(5545), + [anon_sym___clrcall] = ACTIONS(5545), + [anon_sym___stdcall] = ACTIONS(5545), + [anon_sym___fastcall] = ACTIONS(5545), + [anon_sym___thiscall] = ACTIONS(5545), + [anon_sym___vectorcall] = ACTIONS(5545), + [anon_sym_LBRACE] = ACTIONS(5547), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_static] = ACTIONS(5545), + [anon_sym_EQ] = ACTIONS(5547), + [anon_sym_register] = ACTIONS(5545), + [anon_sym_inline] = ACTIONS(5545), + [anon_sym___inline] = ACTIONS(5545), + [anon_sym___inline__] = ACTIONS(5545), + [anon_sym___forceinline] = ACTIONS(5545), + [anon_sym_thread_local] = ACTIONS(5545), + [anon_sym___thread] = ACTIONS(5545), + [anon_sym_const] = ACTIONS(5545), + [anon_sym_constexpr] = ACTIONS(5545), + [anon_sym_volatile] = ACTIONS(5545), + [anon_sym_restrict] = ACTIONS(5545), + [anon_sym___restrict__] = ACTIONS(5545), + [anon_sym__Atomic] = ACTIONS(5545), + [anon_sym__Noreturn] = ACTIONS(5545), + [anon_sym_noreturn] = ACTIONS(5545), + [anon_sym__Nonnull] = ACTIONS(5545), + [anon_sym_mutable] = ACTIONS(5545), + [anon_sym_constinit] = ACTIONS(5545), + [anon_sym_consteval] = ACTIONS(5545), + [anon_sym_alignas] = ACTIONS(5545), + [anon_sym__Alignas] = ACTIONS(5545), + [anon_sym_or] = ACTIONS(5545), + [anon_sym_and] = ACTIONS(5545), + [anon_sym_asm] = ACTIONS(5545), + [anon_sym___asm__] = ACTIONS(5545), + [anon_sym___asm] = ACTIONS(5545), + [anon_sym_DASH_GT] = ACTIONS(5547), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5545), + [anon_sym_decltype] = ACTIONS(5545), + [anon_sym_final] = ACTIONS(5545), + [anon_sym_override] = ACTIONS(5545), + [anon_sym_template] = ACTIONS(5545), + [anon_sym_GT2] = ACTIONS(5547), + [anon_sym_operator] = ACTIONS(5545), + [anon_sym_try] = ACTIONS(5545), + [anon_sym_noexcept] = ACTIONS(5545), + [anon_sym_throw] = ACTIONS(5545), + [anon_sym_requires] = ACTIONS(5545), + }, + [1924] = { + [sym_argument_list] = STATE(2451), + [sym_initializer_list] = STATE(2451), + [sym_decltype_auto] = STATE(2321), + [sym_new_declarator] = STATE(2254), + [sym_identifier] = ACTIONS(5857), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5859), + [anon_sym_COMMA] = ACTIONS(5859), + [anon_sym_RPAREN] = ACTIONS(5859), + [aux_sym_preproc_if_token2] = ACTIONS(5859), + [aux_sym_preproc_else_token1] = ACTIONS(5859), + [aux_sym_preproc_elif_token1] = ACTIONS(5857), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5859), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5859), + [anon_sym_LPAREN2] = ACTIONS(5845), + [anon_sym_DASH] = ACTIONS(5857), + [anon_sym_PLUS] = ACTIONS(5857), + [anon_sym_STAR] = ACTIONS(5857), + [anon_sym_SLASH] = ACTIONS(5857), + [anon_sym_PERCENT] = ACTIONS(5857), + [anon_sym_PIPE_PIPE] = ACTIONS(5859), + [anon_sym_AMP_AMP] = ACTIONS(5859), + [anon_sym_PIPE] = ACTIONS(5857), + [anon_sym_CARET] = ACTIONS(5857), + [anon_sym_AMP] = ACTIONS(5857), + [anon_sym_EQ_EQ] = ACTIONS(5859), + [anon_sym_BANG_EQ] = ACTIONS(5859), + [anon_sym_GT] = ACTIONS(5857), + [anon_sym_GT_EQ] = ACTIONS(5859), + [anon_sym_LT_EQ] = ACTIONS(5857), + [anon_sym_LT] = ACTIONS(5857), + [anon_sym_LT_LT] = ACTIONS(5857), + [anon_sym_GT_GT] = ACTIONS(5857), + [anon_sym_SEMI] = ACTIONS(5859), + [anon_sym___attribute__] = ACTIONS(5857), + [anon_sym___attribute] = ACTIONS(5857), + [anon_sym_COLON] = ACTIONS(5859), + [anon_sym_LBRACE] = ACTIONS(1954), + [anon_sym_RBRACE] = ACTIONS(5859), + [anon_sym_LBRACK] = ACTIONS(5847), + [anon_sym_RBRACK] = ACTIONS(5859), + [anon_sym_EQ] = ACTIONS(5857), + [anon_sym_QMARK] = ACTIONS(5859), + [anon_sym_STAR_EQ] = ACTIONS(5859), + [anon_sym_SLASH_EQ] = ACTIONS(5859), + [anon_sym_PERCENT_EQ] = ACTIONS(5859), + [anon_sym_PLUS_EQ] = ACTIONS(5859), + [anon_sym_DASH_EQ] = ACTIONS(5859), + [anon_sym_LT_LT_EQ] = ACTIONS(5859), + [anon_sym_GT_GT_EQ] = ACTIONS(5859), + [anon_sym_AMP_EQ] = ACTIONS(5859), + [anon_sym_CARET_EQ] = ACTIONS(5859), + [anon_sym_PIPE_EQ] = ACTIONS(5859), + [anon_sym_and_eq] = ACTIONS(5857), + [anon_sym_or_eq] = ACTIONS(5857), + [anon_sym_xor_eq] = ACTIONS(5857), + [anon_sym_LT_EQ_GT] = ACTIONS(5859), + [anon_sym_or] = ACTIONS(5857), + [anon_sym_and] = ACTIONS(5857), + [anon_sym_bitor] = ACTIONS(5857), + [anon_sym_xor] = ACTIONS(5857), + [anon_sym_bitand] = ACTIONS(5857), + [anon_sym_not_eq] = ACTIONS(5857), + [anon_sym_DASH_DASH] = ACTIONS(5859), + [anon_sym_PLUS_PLUS] = ACTIONS(5859), + [anon_sym_DOT] = ACTIONS(5857), + [anon_sym_DOT_STAR] = ACTIONS(5859), + [anon_sym_DASH_GT] = ACTIONS(5859), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5849), + [anon_sym_decltype] = ACTIONS(5851), + }, + [1925] = { + [sym_identifier] = ACTIONS(5792), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5794), + [anon_sym_COMMA] = ACTIONS(5794), + [anon_sym_RPAREN] = ACTIONS(5794), + [aux_sym_preproc_if_token2] = ACTIONS(5794), + [aux_sym_preproc_else_token1] = ACTIONS(5794), + [aux_sym_preproc_elif_token1] = ACTIONS(5792), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5794), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5794), + [anon_sym_LPAREN2] = ACTIONS(5794), + [anon_sym_DASH] = ACTIONS(5792), + [anon_sym_PLUS] = ACTIONS(5792), + [anon_sym_STAR] = ACTIONS(5794), + [anon_sym_SLASH] = ACTIONS(5792), + [anon_sym_PERCENT] = ACTIONS(5794), + [anon_sym_PIPE_PIPE] = ACTIONS(5794), + [anon_sym_AMP_AMP] = ACTIONS(5794), + [anon_sym_PIPE] = ACTIONS(5792), + [anon_sym_CARET] = ACTIONS(5794), + [anon_sym_AMP] = ACTIONS(5792), + [anon_sym_EQ_EQ] = ACTIONS(5794), + [anon_sym_BANG_EQ] = ACTIONS(5794), + [anon_sym_GT] = ACTIONS(5792), + [anon_sym_GT_EQ] = ACTIONS(5794), + [anon_sym_LT_EQ] = ACTIONS(5792), + [anon_sym_LT] = ACTIONS(5792), + [anon_sym_LT_LT] = ACTIONS(5794), + [anon_sym_GT_GT] = ACTIONS(5794), + [anon_sym_SEMI] = ACTIONS(5794), + [anon_sym___extension__] = ACTIONS(5792), + [anon_sym___attribute__] = ACTIONS(5792), + [anon_sym___attribute] = ACTIONS(5792), + [anon_sym_COLON] = ACTIONS(5794), + [anon_sym_LBRACE] = ACTIONS(5794), + [anon_sym_RBRACE] = ACTIONS(5794), + [anon_sym_LBRACK] = ACTIONS(5794), + [anon_sym_RBRACK] = ACTIONS(5794), + [anon_sym_const] = ACTIONS(5792), + [anon_sym_constexpr] = ACTIONS(5792), + [anon_sym_volatile] = ACTIONS(5792), + [anon_sym_restrict] = ACTIONS(5792), + [anon_sym___restrict__] = ACTIONS(5792), + [anon_sym__Atomic] = ACTIONS(5792), + [anon_sym__Noreturn] = ACTIONS(5792), + [anon_sym_noreturn] = ACTIONS(5792), + [anon_sym__Nonnull] = ACTIONS(5792), + [anon_sym_mutable] = ACTIONS(5792), + [anon_sym_constinit] = ACTIONS(5792), + [anon_sym_consteval] = ACTIONS(5792), + [anon_sym_alignas] = ACTIONS(5792), + [anon_sym__Alignas] = ACTIONS(5792), + [anon_sym_QMARK] = ACTIONS(5794), + [anon_sym_LT_EQ_GT] = ACTIONS(5794), + [anon_sym_or] = ACTIONS(5792), + [anon_sym_and] = ACTIONS(5792), + [anon_sym_bitor] = ACTIONS(5792), + [anon_sym_xor] = ACTIONS(5792), + [anon_sym_bitand] = ACTIONS(5792), + [anon_sym_not_eq] = ACTIONS(5792), + [anon_sym_DASH_DASH] = ACTIONS(5794), + [anon_sym_PLUS_PLUS] = ACTIONS(5794), + [anon_sym_DOT] = ACTIONS(5792), + [anon_sym_DOT_STAR] = ACTIONS(5794), + [anon_sym_DASH_GT] = ACTIONS(5794), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5792), + [anon_sym_decltype] = ACTIONS(5792), + [anon_sym_final] = ACTIONS(5792), + [anon_sym_override] = ACTIONS(5792), + [anon_sym_requires] = ACTIONS(5792), + }, + [1926] = { + [sym_identifier] = ACTIONS(3943), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3945), + [anon_sym_COMMA] = ACTIONS(3945), + [anon_sym_RPAREN] = ACTIONS(3945), + [anon_sym_LPAREN2] = ACTIONS(3945), + [anon_sym_TILDE] = ACTIONS(3945), + [anon_sym_STAR] = ACTIONS(3945), + [anon_sym_AMP_AMP] = ACTIONS(3945), + [anon_sym_AMP] = ACTIONS(3943), + [anon_sym_SEMI] = ACTIONS(3945), + [anon_sym___extension__] = ACTIONS(3943), + [anon_sym_virtual] = ACTIONS(3943), + [anon_sym_extern] = ACTIONS(3943), + [anon_sym___attribute__] = ACTIONS(3943), + [anon_sym___attribute] = ACTIONS(3943), + [anon_sym_COLON] = ACTIONS(3943), + [anon_sym_COLON_COLON] = ACTIONS(3945), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3945), + [anon_sym___declspec] = ACTIONS(3943), + [anon_sym___based] = ACTIONS(3943), + [anon_sym___cdecl] = ACTIONS(3943), + [anon_sym___clrcall] = ACTIONS(3943), + [anon_sym___stdcall] = ACTIONS(3943), + [anon_sym___fastcall] = ACTIONS(3943), + [anon_sym___thiscall] = ACTIONS(3943), + [anon_sym___vectorcall] = ACTIONS(3943), + [anon_sym_LBRACE] = ACTIONS(3945), + [anon_sym_LBRACK] = ACTIONS(3943), + [anon_sym_static] = ACTIONS(3943), + [anon_sym_EQ] = ACTIONS(3945), + [anon_sym_register] = ACTIONS(3943), + [anon_sym_inline] = ACTIONS(3943), + [anon_sym___inline] = ACTIONS(3943), + [anon_sym___inline__] = ACTIONS(3943), + [anon_sym___forceinline] = ACTIONS(3943), + [anon_sym_thread_local] = ACTIONS(3943), + [anon_sym___thread] = ACTIONS(3943), + [anon_sym_const] = ACTIONS(3943), + [anon_sym_constexpr] = ACTIONS(3943), + [anon_sym_volatile] = ACTIONS(3943), + [anon_sym_restrict] = ACTIONS(3943), + [anon_sym___restrict__] = ACTIONS(3943), + [anon_sym__Atomic] = ACTIONS(3943), + [anon_sym__Noreturn] = ACTIONS(3943), + [anon_sym_noreturn] = ACTIONS(3943), + [anon_sym__Nonnull] = ACTIONS(3943), + [anon_sym_mutable] = ACTIONS(3943), + [anon_sym_constinit] = ACTIONS(3943), + [anon_sym_consteval] = ACTIONS(3943), + [anon_sym_alignas] = ACTIONS(3943), + [anon_sym__Alignas] = ACTIONS(3943), + [anon_sym_asm] = ACTIONS(3943), + [anon_sym___asm__] = ACTIONS(3943), + [anon_sym___asm] = ACTIONS(3943), + [anon_sym_DASH_GT] = ACTIONS(3945), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3943), + [anon_sym_final] = ACTIONS(3943), + [anon_sym_override] = ACTIONS(3943), + [anon_sym_explicit] = ACTIONS(3943), + [anon_sym_private] = ACTIONS(3943), + [anon_sym_template] = ACTIONS(3943), + [anon_sym_GT2] = ACTIONS(3945), + [anon_sym_operator] = ACTIONS(3943), + [anon_sym_try] = ACTIONS(3943), + [anon_sym_public] = ACTIONS(3943), + [anon_sym_protected] = ACTIONS(3943), + [anon_sym_noexcept] = ACTIONS(3943), + [anon_sym_throw] = ACTIONS(3943), + [anon_sym_requires] = ACTIONS(3943), + }, + [1927] = { + [sym_ms_based_modifier] = STATE(8286), + [sym_ms_unaligned_ptr_modifier] = STATE(4069), + [sym_ms_pointer_modifier] = STATE(1928), + [sym__declarator] = STATE(6437), + [sym__abstract_declarator] = STATE(6654), + [sym_parenthesized_declarator] = STATE(6145), + [sym_abstract_parenthesized_declarator] = STATE(6099), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_abstract_pointer_declarator] = STATE(6099), + [sym_function_declarator] = STATE(6145), + [sym_abstract_function_declarator] = STATE(6099), + [sym_array_declarator] = STATE(6145), + [sym_abstract_array_declarator] = STATE(6099), + [sym_type_qualifier] = STATE(2602), + [sym_alignas_qualifier] = STATE(4325), + [sym_parameter_list] = STATE(3109), + [sym_decltype] = STATE(8569), + [sym_reference_declarator] = STATE(6145), + [sym_abstract_reference_declarator] = STATE(6099), + [sym_structured_binding_declarator] = STATE(6145), + [sym__function_declarator_seq] = STATE(6109), + [sym_template_type] = STATE(8569), + [sym_template_function] = STATE(6145), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5896), + [sym_qualified_identifier] = STATE(6145), + [sym_operator_name] = STATE(6145), + [aux_sym__type_definition_type_repeat1] = STATE(2602), + [aux_sym_pointer_declarator_repeat1] = STATE(1928), + [sym_identifier] = ACTIONS(5861), + [anon_sym_COMMA] = ACTIONS(5863), + [anon_sym_RPAREN] = ACTIONS(5863), + [anon_sym_LPAREN2] = ACTIONS(4310), + [anon_sym_TILDE] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(5865), + [anon_sym_AMP_AMP] = ACTIONS(5867), + [anon_sym_AMP] = ACTIONS(5869), + [anon_sym___extension__] = ACTIONS(3339), + [anon_sym___attribute__] = ACTIONS(5871), + [anon_sym___attribute] = ACTIONS(5871), + [anon_sym_COLON_COLON] = ACTIONS(5873), + [anon_sym___based] = ACTIONS(53), + [sym_ms_restrict_modifier] = ACTIONS(3335), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(3335), + [sym_ms_signed_ptr_modifier] = ACTIONS(3335), + [anon_sym__unaligned] = ACTIONS(3337), + [anon_sym___unaligned] = ACTIONS(3337), + [anon_sym_LBRACK] = ACTIONS(5875), + [anon_sym_EQ] = ACTIONS(5863), + [anon_sym_const] = ACTIONS(3339), + [anon_sym_constexpr] = ACTIONS(3339), + [anon_sym_volatile] = ACTIONS(3339), + [anon_sym_restrict] = ACTIONS(3339), + [anon_sym___restrict__] = ACTIONS(3339), + [anon_sym__Atomic] = ACTIONS(3339), + [anon_sym__Noreturn] = ACTIONS(3339), + [anon_sym_noreturn] = ACTIONS(3339), + [anon_sym__Nonnull] = ACTIONS(3339), + [anon_sym_mutable] = ACTIONS(3339), + [anon_sym_constinit] = ACTIONS(3339), + [anon_sym_consteval] = ACTIONS(3339), + [anon_sym_alignas] = ACTIONS(3341), + [anon_sym__Alignas] = ACTIONS(3341), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_GT2] = ACTIONS(5863), + [anon_sym_operator] = ACTIONS(1850), + }, + [1928] = { + [sym_ms_based_modifier] = STATE(8286), + [sym_ms_unaligned_ptr_modifier] = STATE(4069), + [sym_ms_pointer_modifier] = STATE(3962), + [sym__declarator] = STATE(6451), + [sym__abstract_declarator] = STATE(6655), + [sym_parenthesized_declarator] = STATE(6145), + [sym_abstract_parenthesized_declarator] = STATE(6099), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_abstract_pointer_declarator] = STATE(6099), + [sym_function_declarator] = STATE(6145), + [sym_abstract_function_declarator] = STATE(6099), + [sym_array_declarator] = STATE(6145), + [sym_abstract_array_declarator] = STATE(6099), + [sym_type_qualifier] = STATE(2603), + [sym_alignas_qualifier] = STATE(4325), + [sym_parameter_list] = STATE(3109), + [sym_decltype] = STATE(8569), + [sym_reference_declarator] = STATE(6145), + [sym_abstract_reference_declarator] = STATE(6099), + [sym_structured_binding_declarator] = STATE(6145), + [sym__function_declarator_seq] = STATE(6109), + [sym_template_type] = STATE(8569), + [sym_template_function] = STATE(6145), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5896), + [sym_qualified_identifier] = STATE(6145), + [sym_operator_name] = STATE(6145), + [aux_sym__type_definition_type_repeat1] = STATE(2603), + [aux_sym_pointer_declarator_repeat1] = STATE(3962), + [sym_identifier] = ACTIONS(5861), + [anon_sym_COMMA] = ACTIONS(5877), + [anon_sym_RPAREN] = ACTIONS(5877), + [anon_sym_LPAREN2] = ACTIONS(4310), + [anon_sym_TILDE] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(5865), + [anon_sym_AMP_AMP] = ACTIONS(5867), + [anon_sym_AMP] = ACTIONS(5869), + [anon_sym___extension__] = ACTIONS(3339), + [anon_sym___attribute__] = ACTIONS(5879), + [anon_sym___attribute] = ACTIONS(5879), + [anon_sym_COLON_COLON] = ACTIONS(5873), + [anon_sym___based] = ACTIONS(53), + [sym_ms_restrict_modifier] = ACTIONS(3335), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(3335), + [sym_ms_signed_ptr_modifier] = ACTIONS(3335), + [anon_sym__unaligned] = ACTIONS(3337), + [anon_sym___unaligned] = ACTIONS(3337), + [anon_sym_LBRACK] = ACTIONS(5875), + [anon_sym_EQ] = ACTIONS(5877), + [anon_sym_const] = ACTIONS(3339), + [anon_sym_constexpr] = ACTIONS(3339), + [anon_sym_volatile] = ACTIONS(3339), + [anon_sym_restrict] = ACTIONS(3339), + [anon_sym___restrict__] = ACTIONS(3339), + [anon_sym__Atomic] = ACTIONS(3339), + [anon_sym__Noreturn] = ACTIONS(3339), + [anon_sym_noreturn] = ACTIONS(3339), + [anon_sym__Nonnull] = ACTIONS(3339), + [anon_sym_mutable] = ACTIONS(3339), + [anon_sym_constinit] = ACTIONS(3339), + [anon_sym_consteval] = ACTIONS(3339), + [anon_sym_alignas] = ACTIONS(3341), + [anon_sym__Alignas] = ACTIONS(3341), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_GT2] = ACTIONS(5877), + [anon_sym_operator] = ACTIONS(1850), + }, + [1929] = { + [sym_argument_list] = STATE(2538), + [sym_initializer_list] = STATE(2538), + [sym_decltype_auto] = STATE(2321), + [sym_new_declarator] = STATE(2327), + [sym_identifier] = ACTIONS(5881), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5883), + [anon_sym_COMMA] = ACTIONS(5883), + [anon_sym_RPAREN] = ACTIONS(5883), + [aux_sym_preproc_if_token2] = ACTIONS(5883), + [aux_sym_preproc_else_token1] = ACTIONS(5883), + [aux_sym_preproc_elif_token1] = ACTIONS(5881), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5883), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5883), + [anon_sym_LPAREN2] = ACTIONS(5845), + [anon_sym_DASH] = ACTIONS(5881), + [anon_sym_PLUS] = ACTIONS(5881), + [anon_sym_STAR] = ACTIONS(5881), + [anon_sym_SLASH] = ACTIONS(5881), + [anon_sym_PERCENT] = ACTIONS(5881), + [anon_sym_PIPE_PIPE] = ACTIONS(5883), + [anon_sym_AMP_AMP] = ACTIONS(5883), + [anon_sym_PIPE] = ACTIONS(5881), + [anon_sym_CARET] = ACTIONS(5881), + [anon_sym_AMP] = ACTIONS(5881), + [anon_sym_EQ_EQ] = ACTIONS(5883), + [anon_sym_BANG_EQ] = ACTIONS(5883), + [anon_sym_GT] = ACTIONS(5881), + [anon_sym_GT_EQ] = ACTIONS(5883), + [anon_sym_LT_EQ] = ACTIONS(5881), + [anon_sym_LT] = ACTIONS(5881), + [anon_sym_LT_LT] = ACTIONS(5881), + [anon_sym_GT_GT] = ACTIONS(5881), + [anon_sym_SEMI] = ACTIONS(5883), + [anon_sym___attribute__] = ACTIONS(5881), + [anon_sym___attribute] = ACTIONS(5881), + [anon_sym_COLON] = ACTIONS(5883), + [anon_sym_LBRACE] = ACTIONS(1954), + [anon_sym_RBRACE] = ACTIONS(5883), + [anon_sym_LBRACK] = ACTIONS(5847), + [anon_sym_RBRACK] = ACTIONS(5883), + [anon_sym_EQ] = ACTIONS(5881), + [anon_sym_QMARK] = ACTIONS(5883), + [anon_sym_STAR_EQ] = ACTIONS(5883), + [anon_sym_SLASH_EQ] = ACTIONS(5883), + [anon_sym_PERCENT_EQ] = ACTIONS(5883), + [anon_sym_PLUS_EQ] = ACTIONS(5883), + [anon_sym_DASH_EQ] = ACTIONS(5883), + [anon_sym_LT_LT_EQ] = ACTIONS(5883), + [anon_sym_GT_GT_EQ] = ACTIONS(5883), + [anon_sym_AMP_EQ] = ACTIONS(5883), + [anon_sym_CARET_EQ] = ACTIONS(5883), + [anon_sym_PIPE_EQ] = ACTIONS(5883), + [anon_sym_and_eq] = ACTIONS(5881), + [anon_sym_or_eq] = ACTIONS(5881), + [anon_sym_xor_eq] = ACTIONS(5881), + [anon_sym_LT_EQ_GT] = ACTIONS(5883), + [anon_sym_or] = ACTIONS(5881), + [anon_sym_and] = ACTIONS(5881), + [anon_sym_bitor] = ACTIONS(5881), + [anon_sym_xor] = ACTIONS(5881), + [anon_sym_bitand] = ACTIONS(5881), + [anon_sym_not_eq] = ACTIONS(5881), + [anon_sym_DASH_DASH] = ACTIONS(5883), + [anon_sym_PLUS_PLUS] = ACTIONS(5883), + [anon_sym_DOT] = ACTIONS(5881), + [anon_sym_DOT_STAR] = ACTIONS(5883), + [anon_sym_DASH_GT] = ACTIONS(5883), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5849), + [anon_sym_decltype] = ACTIONS(5851), + }, + [1930] = { + [sym_identifier] = ACTIONS(5541), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5543), + [anon_sym_COMMA] = ACTIONS(5543), + [anon_sym_RPAREN] = ACTIONS(5543), + [anon_sym_LPAREN2] = ACTIONS(5543), + [anon_sym_TILDE] = ACTIONS(5543), + [anon_sym_STAR] = ACTIONS(5543), + [anon_sym_PIPE_PIPE] = ACTIONS(5543), + [anon_sym_AMP_AMP] = ACTIONS(5543), + [anon_sym_AMP] = ACTIONS(5541), + [anon_sym_SEMI] = ACTIONS(5543), + [anon_sym___extension__] = ACTIONS(5541), + [anon_sym_virtual] = ACTIONS(5541), + [anon_sym_extern] = ACTIONS(5541), + [anon_sym___attribute__] = ACTIONS(5541), + [anon_sym___attribute] = ACTIONS(5541), + [anon_sym_COLON] = ACTIONS(5541), + [anon_sym_COLON_COLON] = ACTIONS(5519), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5543), + [anon_sym___declspec] = ACTIONS(5541), + [anon_sym___based] = ACTIONS(5541), + [anon_sym___cdecl] = ACTIONS(5541), + [anon_sym___clrcall] = ACTIONS(5541), + [anon_sym___stdcall] = ACTIONS(5541), + [anon_sym___fastcall] = ACTIONS(5541), + [anon_sym___thiscall] = ACTIONS(5541), + [anon_sym___vectorcall] = ACTIONS(5541), + [anon_sym_LBRACE] = ACTIONS(5543), + [anon_sym_LBRACK] = ACTIONS(5541), + [anon_sym_static] = ACTIONS(5541), + [anon_sym_EQ] = ACTIONS(5543), + [anon_sym_register] = ACTIONS(5541), + [anon_sym_inline] = ACTIONS(5541), + [anon_sym___inline] = ACTIONS(5541), + [anon_sym___inline__] = ACTIONS(5541), + [anon_sym___forceinline] = ACTIONS(5541), + [anon_sym_thread_local] = ACTIONS(5541), + [anon_sym___thread] = ACTIONS(5541), + [anon_sym_const] = ACTIONS(5541), + [anon_sym_constexpr] = ACTIONS(5541), + [anon_sym_volatile] = ACTIONS(5541), + [anon_sym_restrict] = ACTIONS(5541), + [anon_sym___restrict__] = ACTIONS(5541), + [anon_sym__Atomic] = ACTIONS(5541), + [anon_sym__Noreturn] = ACTIONS(5541), + [anon_sym_noreturn] = ACTIONS(5541), + [anon_sym__Nonnull] = ACTIONS(5541), + [anon_sym_mutable] = ACTIONS(5541), + [anon_sym_constinit] = ACTIONS(5541), + [anon_sym_consteval] = ACTIONS(5541), + [anon_sym_alignas] = ACTIONS(5541), + [anon_sym__Alignas] = ACTIONS(5541), + [anon_sym_or] = ACTIONS(5541), + [anon_sym_and] = ACTIONS(5541), + [anon_sym_asm] = ACTIONS(5541), + [anon_sym___asm__] = ACTIONS(5541), + [anon_sym___asm] = ACTIONS(5541), + [anon_sym_DASH_GT] = ACTIONS(5543), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5541), + [anon_sym_decltype] = ACTIONS(5541), + [anon_sym_final] = ACTIONS(5541), + [anon_sym_override] = ACTIONS(5541), + [anon_sym_template] = ACTIONS(5541), + [anon_sym_GT2] = ACTIONS(5543), + [anon_sym_operator] = ACTIONS(5541), + [anon_sym_try] = ACTIONS(5541), + [anon_sym_noexcept] = ACTIONS(5541), + [anon_sym_throw] = ACTIONS(5541), + [anon_sym_requires] = ACTIONS(5541), + }, + [1931] = { + [sym_identifier] = ACTIONS(3959), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3961), + [anon_sym_COMMA] = ACTIONS(3961), + [anon_sym_RPAREN] = ACTIONS(3961), + [anon_sym_LPAREN2] = ACTIONS(3961), + [anon_sym_TILDE] = ACTIONS(3961), + [anon_sym_STAR] = ACTIONS(3961), + [anon_sym_AMP_AMP] = ACTIONS(3961), + [anon_sym_AMP] = ACTIONS(3959), + [anon_sym_SEMI] = ACTIONS(3961), + [anon_sym___extension__] = ACTIONS(3959), + [anon_sym_virtual] = ACTIONS(3959), + [anon_sym_extern] = ACTIONS(3959), + [anon_sym___attribute__] = ACTIONS(3959), + [anon_sym___attribute] = ACTIONS(3959), + [anon_sym_COLON] = ACTIONS(3959), + [anon_sym_COLON_COLON] = ACTIONS(3961), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3961), + [anon_sym___declspec] = ACTIONS(3959), + [anon_sym___based] = ACTIONS(3959), + [anon_sym___cdecl] = ACTIONS(3959), + [anon_sym___clrcall] = ACTIONS(3959), + [anon_sym___stdcall] = ACTIONS(3959), + [anon_sym___fastcall] = ACTIONS(3959), + [anon_sym___thiscall] = ACTIONS(3959), + [anon_sym___vectorcall] = ACTIONS(3959), + [anon_sym_LBRACE] = ACTIONS(3961), + [anon_sym_LBRACK] = ACTIONS(3959), + [anon_sym_static] = ACTIONS(3959), + [anon_sym_EQ] = ACTIONS(3961), + [anon_sym_register] = ACTIONS(3959), + [anon_sym_inline] = ACTIONS(3959), + [anon_sym___inline] = ACTIONS(3959), + [anon_sym___inline__] = ACTIONS(3959), + [anon_sym___forceinline] = ACTIONS(3959), + [anon_sym_thread_local] = ACTIONS(3959), + [anon_sym___thread] = ACTIONS(3959), + [anon_sym_const] = ACTIONS(3959), + [anon_sym_constexpr] = ACTIONS(3959), + [anon_sym_volatile] = ACTIONS(3959), + [anon_sym_restrict] = ACTIONS(3959), + [anon_sym___restrict__] = ACTIONS(3959), + [anon_sym__Atomic] = ACTIONS(3959), + [anon_sym__Noreturn] = ACTIONS(3959), + [anon_sym_noreturn] = ACTIONS(3959), + [anon_sym__Nonnull] = ACTIONS(3959), + [anon_sym_mutable] = ACTIONS(3959), + [anon_sym_constinit] = ACTIONS(3959), + [anon_sym_consteval] = ACTIONS(3959), + [anon_sym_alignas] = ACTIONS(3959), + [anon_sym__Alignas] = ACTIONS(3959), + [anon_sym_asm] = ACTIONS(3959), + [anon_sym___asm__] = ACTIONS(3959), + [anon_sym___asm] = ACTIONS(3959), + [anon_sym_DASH_GT] = ACTIONS(3961), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3959), + [anon_sym_final] = ACTIONS(3959), + [anon_sym_override] = ACTIONS(3959), + [anon_sym_explicit] = ACTIONS(3959), + [anon_sym_private] = ACTIONS(3959), + [anon_sym_template] = ACTIONS(3959), + [anon_sym_GT2] = ACTIONS(3961), + [anon_sym_operator] = ACTIONS(3959), + [anon_sym_try] = ACTIONS(3959), + [anon_sym_public] = ACTIONS(3959), + [anon_sym_protected] = ACTIONS(3959), + [anon_sym_noexcept] = ACTIONS(3959), + [anon_sym_throw] = ACTIONS(3959), + [anon_sym_requires] = ACTIONS(3959), + }, + [1932] = { + [sym_identifier] = ACTIONS(5541), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5543), + [anon_sym_COMMA] = ACTIONS(5543), + [anon_sym_RPAREN] = ACTIONS(5543), + [anon_sym_LPAREN2] = ACTIONS(5543), + [anon_sym_TILDE] = ACTIONS(5543), + [anon_sym_STAR] = ACTIONS(5543), + [anon_sym_PIPE_PIPE] = ACTIONS(5543), + [anon_sym_AMP_AMP] = ACTIONS(5543), + [anon_sym_AMP] = ACTIONS(5541), + [anon_sym_SEMI] = ACTIONS(5543), + [anon_sym___extension__] = ACTIONS(5541), + [anon_sym_virtual] = ACTIONS(5541), + [anon_sym_extern] = ACTIONS(5541), + [anon_sym___attribute__] = ACTIONS(5541), + [anon_sym___attribute] = ACTIONS(5541), + [anon_sym_COLON] = ACTIONS(5541), + [anon_sym_COLON_COLON] = ACTIONS(5543), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5543), + [anon_sym___declspec] = ACTIONS(5541), + [anon_sym___based] = ACTIONS(5541), + [anon_sym___cdecl] = ACTIONS(5541), + [anon_sym___clrcall] = ACTIONS(5541), + [anon_sym___stdcall] = ACTIONS(5541), + [anon_sym___fastcall] = ACTIONS(5541), + [anon_sym___thiscall] = ACTIONS(5541), + [anon_sym___vectorcall] = ACTIONS(5541), + [anon_sym_LBRACE] = ACTIONS(5543), + [anon_sym_LBRACK] = ACTIONS(5541), + [anon_sym_static] = ACTIONS(5541), + [anon_sym_EQ] = ACTIONS(5543), + [anon_sym_register] = ACTIONS(5541), + [anon_sym_inline] = ACTIONS(5541), + [anon_sym___inline] = ACTIONS(5541), + [anon_sym___inline__] = ACTIONS(5541), + [anon_sym___forceinline] = ACTIONS(5541), + [anon_sym_thread_local] = ACTIONS(5541), + [anon_sym___thread] = ACTIONS(5541), + [anon_sym_const] = ACTIONS(5541), + [anon_sym_constexpr] = ACTIONS(5541), + [anon_sym_volatile] = ACTIONS(5541), + [anon_sym_restrict] = ACTIONS(5541), + [anon_sym___restrict__] = ACTIONS(5541), + [anon_sym__Atomic] = ACTIONS(5541), + [anon_sym__Noreturn] = ACTIONS(5541), + [anon_sym_noreturn] = ACTIONS(5541), + [anon_sym__Nonnull] = ACTIONS(5541), + [anon_sym_mutable] = ACTIONS(5541), + [anon_sym_constinit] = ACTIONS(5541), + [anon_sym_consteval] = ACTIONS(5541), + [anon_sym_alignas] = ACTIONS(5541), + [anon_sym__Alignas] = ACTIONS(5541), + [anon_sym_or] = ACTIONS(5541), + [anon_sym_and] = ACTIONS(5541), + [anon_sym_asm] = ACTIONS(5541), + [anon_sym___asm__] = ACTIONS(5541), + [anon_sym___asm] = ACTIONS(5541), + [anon_sym_DASH_GT] = ACTIONS(5543), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5541), + [anon_sym_decltype] = ACTIONS(5541), + [anon_sym_final] = ACTIONS(5541), + [anon_sym_override] = ACTIONS(5541), + [anon_sym_template] = ACTIONS(5541), + [anon_sym_GT2] = ACTIONS(5543), + [anon_sym_operator] = ACTIONS(5541), + [anon_sym_try] = ACTIONS(5541), + [anon_sym_noexcept] = ACTIONS(5541), + [anon_sym_throw] = ACTIONS(5541), + [anon_sym_requires] = ACTIONS(5541), + }, + [1933] = { + [sym_identifier] = ACTIONS(1940), + [anon_sym_LPAREN2] = ACTIONS(1938), + [anon_sym_TILDE] = ACTIONS(1938), + [anon_sym_STAR] = ACTIONS(1938), + [anon_sym_PIPE_PIPE] = ACTIONS(1938), + [anon_sym_AMP_AMP] = ACTIONS(1938), + [anon_sym_AMP] = ACTIONS(1940), + [anon_sym___extension__] = ACTIONS(1940), + [anon_sym_virtual] = ACTIONS(1940), + [anon_sym_extern] = ACTIONS(1940), + [anon_sym___attribute__] = ACTIONS(1940), + [anon_sym___attribute] = ACTIONS(1940), + [anon_sym_using] = ACTIONS(1940), + [anon_sym_COLON_COLON] = ACTIONS(1938), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1938), + [anon_sym___declspec] = ACTIONS(1940), + [anon_sym___based] = ACTIONS(1940), + [anon_sym___cdecl] = ACTIONS(1940), + [anon_sym___clrcall] = ACTIONS(1940), + [anon_sym___stdcall] = ACTIONS(1940), + [anon_sym___fastcall] = ACTIONS(1940), + [anon_sym___thiscall] = ACTIONS(1940), + [anon_sym___vectorcall] = ACTIONS(1940), + [anon_sym_LBRACE] = ACTIONS(1938), + [anon_sym_signed] = ACTIONS(1940), + [anon_sym_unsigned] = ACTIONS(1940), + [anon_sym_long] = ACTIONS(1940), + [anon_sym_short] = ACTIONS(1940), + [anon_sym_LBRACK] = ACTIONS(1940), + [anon_sym_static] = ACTIONS(1940), + [anon_sym_register] = ACTIONS(1940), + [anon_sym_inline] = ACTIONS(1940), + [anon_sym___inline] = ACTIONS(1940), + [anon_sym___inline__] = ACTIONS(1940), + [anon_sym___forceinline] = ACTIONS(1940), + [anon_sym_thread_local] = ACTIONS(1940), + [anon_sym___thread] = ACTIONS(1940), + [anon_sym_const] = ACTIONS(1940), + [anon_sym_constexpr] = ACTIONS(1940), + [anon_sym_volatile] = ACTIONS(1940), + [anon_sym_restrict] = ACTIONS(1940), + [anon_sym___restrict__] = ACTIONS(1940), + [anon_sym__Atomic] = ACTIONS(1940), + [anon_sym__Noreturn] = ACTIONS(1940), + [anon_sym_noreturn] = ACTIONS(1940), + [anon_sym__Nonnull] = ACTIONS(1940), + [anon_sym_mutable] = ACTIONS(1940), + [anon_sym_constinit] = ACTIONS(1940), + [anon_sym_consteval] = ACTIONS(1940), + [anon_sym_alignas] = ACTIONS(1940), + [anon_sym__Alignas] = ACTIONS(1940), + [sym_primitive_type] = ACTIONS(1940), + [anon_sym_enum] = ACTIONS(1940), + [anon_sym_class] = ACTIONS(1940), + [anon_sym_struct] = ACTIONS(1940), + [anon_sym_union] = ACTIONS(1940), + [anon_sym_or] = ACTIONS(1940), + [anon_sym_and] = ACTIONS(1940), + [anon_sym_DASH_GT] = ACTIONS(1938), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5617), - [anon_sym_decltype] = ACTIONS(5617), - [anon_sym_final] = ACTIONS(5617), - [anon_sym_override] = ACTIONS(5617), - [anon_sym_requires] = ACTIONS(5617), - }, - [1889] = { - [sym_type_qualifier] = STATE(1655), - [sym_alignas_qualifier] = STATE(1695), - [aux_sym__type_definition_type_repeat1] = STATE(1655), - [aux_sym_sized_type_specifier_repeat1] = STATE(1946), - [sym_identifier] = ACTIONS(5814), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5100), - [anon_sym_COMMA] = ACTIONS(5100), - [anon_sym_RPAREN] = ACTIONS(5100), - [anon_sym_LPAREN2] = ACTIONS(5100), - [anon_sym_DASH] = ACTIONS(5102), - [anon_sym_PLUS] = ACTIONS(5102), - [anon_sym_STAR] = ACTIONS(5100), - [anon_sym_SLASH] = ACTIONS(5102), - [anon_sym_PERCENT] = ACTIONS(5100), - [anon_sym_PIPE_PIPE] = ACTIONS(5100), - [anon_sym_AMP_AMP] = ACTIONS(5100), - [anon_sym_PIPE] = ACTIONS(5102), - [anon_sym_CARET] = ACTIONS(5100), - [anon_sym_AMP] = ACTIONS(5102), - [anon_sym_EQ_EQ] = ACTIONS(5100), - [anon_sym_BANG_EQ] = ACTIONS(5100), - [anon_sym_GT] = ACTIONS(5102), - [anon_sym_GT_EQ] = ACTIONS(5100), - [anon_sym_LT_EQ] = ACTIONS(5102), - [anon_sym_LT] = ACTIONS(5102), - [anon_sym_LT_LT] = ACTIONS(5100), - [anon_sym_GT_GT] = ACTIONS(5100), - [anon_sym_SEMI] = ACTIONS(5100), - [anon_sym___extension__] = ACTIONS(5706), - [anon_sym___attribute__] = ACTIONS(5102), - [anon_sym___attribute] = ACTIONS(5102), - [anon_sym_COLON] = ACTIONS(5100), - [anon_sym_LBRACE] = ACTIONS(5100), - [anon_sym_RBRACE] = ACTIONS(5100), - [anon_sym_signed] = ACTIONS(5816), - [anon_sym_unsigned] = ACTIONS(5816), - [anon_sym_long] = ACTIONS(5816), - [anon_sym_short] = ACTIONS(5816), - [anon_sym_LBRACK] = ACTIONS(5100), - [anon_sym_RBRACK] = ACTIONS(5100), - [anon_sym_const] = ACTIONS(5706), - [anon_sym_constexpr] = ACTIONS(5706), - [anon_sym_volatile] = ACTIONS(5706), - [anon_sym_restrict] = ACTIONS(5706), - [anon_sym___restrict__] = ACTIONS(5706), - [anon_sym__Atomic] = ACTIONS(5706), - [anon_sym__Noreturn] = ACTIONS(5706), - [anon_sym_noreturn] = ACTIONS(5706), - [anon_sym__Nonnull] = ACTIONS(5706), - [anon_sym_mutable] = ACTIONS(5706), - [anon_sym_constinit] = ACTIONS(5706), - [anon_sym_consteval] = ACTIONS(5706), - [anon_sym_alignas] = ACTIONS(5710), - [anon_sym__Alignas] = ACTIONS(5710), - [sym_primitive_type] = ACTIONS(5818), - [anon_sym_QMARK] = ACTIONS(5100), - [anon_sym_LT_EQ_GT] = ACTIONS(5100), - [anon_sym_or] = ACTIONS(5102), - [anon_sym_and] = ACTIONS(5102), - [anon_sym_bitor] = ACTIONS(5102), - [anon_sym_xor] = ACTIONS(5102), - [anon_sym_bitand] = ACTIONS(5102), - [anon_sym_not_eq] = ACTIONS(5102), - [anon_sym_DASH_DASH] = ACTIONS(5100), - [anon_sym_PLUS_PLUS] = ACTIONS(5100), - [anon_sym_DOT] = ACTIONS(5102), - [anon_sym_DOT_STAR] = ACTIONS(5100), - [anon_sym_DASH_GT] = ACTIONS(5100), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5102), - [anon_sym_decltype] = ACTIONS(5102), + [sym_auto] = ACTIONS(1940), + [anon_sym_decltype] = ACTIONS(1940), + [anon_sym_explicit] = ACTIONS(1940), + [anon_sym_typename] = ACTIONS(1940), + [anon_sym_template] = ACTIONS(1940), + [anon_sym_operator] = ACTIONS(1940), + [anon_sym_friend] = ACTIONS(1940), + [anon_sym_noexcept] = ACTIONS(1940), + [anon_sym_throw] = ACTIONS(1940), + [anon_sym_concept] = ACTIONS(1940), }, - [1890] = { - [sym_catch_clause] = STATE(1890), - [aux_sym_constructor_try_statement_repeat1] = STATE(1890), - [sym_identifier] = ACTIONS(2476), - [aux_sym_preproc_def_token1] = ACTIONS(2476), - [aux_sym_preproc_if_token1] = ACTIONS(2476), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2476), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2476), - [sym_preproc_directive] = ACTIONS(2476), - [anon_sym_LPAREN2] = ACTIONS(2478), - [anon_sym_TILDE] = ACTIONS(2478), - [anon_sym_STAR] = ACTIONS(2478), - [anon_sym_AMP_AMP] = ACTIONS(2478), - [anon_sym_AMP] = ACTIONS(2476), - [anon_sym_SEMI] = ACTIONS(2478), - [anon_sym___extension__] = ACTIONS(2476), - [anon_sym_typedef] = ACTIONS(2476), - [anon_sym_virtual] = ACTIONS(2476), - [anon_sym_extern] = ACTIONS(2476), - [anon_sym___attribute__] = ACTIONS(2476), - [anon_sym___attribute] = ACTIONS(2476), - [anon_sym_using] = ACTIONS(2476), - [anon_sym_COLON_COLON] = ACTIONS(2478), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2478), - [anon_sym___declspec] = ACTIONS(2476), - [anon_sym___based] = ACTIONS(2476), - [anon_sym_RBRACE] = ACTIONS(2478), - [anon_sym_signed] = ACTIONS(2476), - [anon_sym_unsigned] = ACTIONS(2476), - [anon_sym_long] = ACTIONS(2476), - [anon_sym_short] = ACTIONS(2476), - [anon_sym_LBRACK] = ACTIONS(2476), - [anon_sym_static] = ACTIONS(2476), - [anon_sym_register] = ACTIONS(2476), - [anon_sym_inline] = ACTIONS(2476), - [anon_sym___inline] = ACTIONS(2476), - [anon_sym___inline__] = ACTIONS(2476), - [anon_sym___forceinline] = ACTIONS(2476), - [anon_sym_thread_local] = ACTIONS(2476), - [anon_sym___thread] = ACTIONS(2476), - [anon_sym_const] = ACTIONS(2476), - [anon_sym_constexpr] = ACTIONS(2476), - [anon_sym_volatile] = ACTIONS(2476), - [anon_sym_restrict] = ACTIONS(2476), - [anon_sym___restrict__] = ACTIONS(2476), - [anon_sym__Atomic] = ACTIONS(2476), - [anon_sym__Noreturn] = ACTIONS(2476), - [anon_sym_noreturn] = ACTIONS(2476), - [anon_sym__Nonnull] = ACTIONS(2476), - [anon_sym_mutable] = ACTIONS(2476), - [anon_sym_constinit] = ACTIONS(2476), - [anon_sym_consteval] = ACTIONS(2476), - [anon_sym_alignas] = ACTIONS(2476), - [anon_sym__Alignas] = ACTIONS(2476), - [sym_primitive_type] = ACTIONS(2476), - [anon_sym_enum] = ACTIONS(2476), - [anon_sym_class] = ACTIONS(2476), - [anon_sym_struct] = ACTIONS(2476), - [anon_sym_union] = ACTIONS(2476), + [1934] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(4988), + [anon_sym_COMMA] = ACTIONS(4988), + [anon_sym_LPAREN2] = ACTIONS(4988), + [anon_sym_DASH] = ACTIONS(4993), + [anon_sym_PLUS] = ACTIONS(4993), + [anon_sym_STAR] = ACTIONS(4995), + [anon_sym_SLASH] = ACTIONS(4993), + [anon_sym_PERCENT] = ACTIONS(4993), + [anon_sym_PIPE_PIPE] = ACTIONS(4986), + [anon_sym_AMP_AMP] = ACTIONS(4988), + [anon_sym_PIPE] = ACTIONS(4993), + [anon_sym_CARET] = ACTIONS(4993), + [anon_sym_AMP] = ACTIONS(4995), + [anon_sym_EQ_EQ] = ACTIONS(4986), + [anon_sym_BANG_EQ] = ACTIONS(4986), + [anon_sym_GT] = ACTIONS(4993), + [anon_sym_GT_EQ] = ACTIONS(4993), + [anon_sym_LT_EQ] = ACTIONS(4993), + [anon_sym_LT] = ACTIONS(4993), + [anon_sym_LT_LT] = ACTIONS(4993), + [anon_sym_GT_GT] = ACTIONS(4993), + [anon_sym___extension__] = ACTIONS(4991), + [anon_sym_COLON_COLON] = ACTIONS(4991), + [anon_sym_LBRACE] = ACTIONS(4991), + [anon_sym_LBRACK] = ACTIONS(4988), + [anon_sym_EQ] = ACTIONS(4993), + [anon_sym_const] = ACTIONS(4984), + [anon_sym_constexpr] = ACTIONS(4991), + [anon_sym_volatile] = ACTIONS(4991), + [anon_sym_restrict] = ACTIONS(4991), + [anon_sym___restrict__] = ACTIONS(4991), + [anon_sym__Atomic] = ACTIONS(4991), + [anon_sym__Noreturn] = ACTIONS(4991), + [anon_sym_noreturn] = ACTIONS(4991), + [anon_sym__Nonnull] = ACTIONS(4991), + [anon_sym_mutable] = ACTIONS(4991), + [anon_sym_constinit] = ACTIONS(4991), + [anon_sym_consteval] = ACTIONS(4991), + [anon_sym_alignas] = ACTIONS(4991), + [anon_sym__Alignas] = ACTIONS(4991), + [anon_sym_QMARK] = ACTIONS(4986), + [anon_sym_STAR_EQ] = ACTIONS(4986), + [anon_sym_SLASH_EQ] = ACTIONS(4986), + [anon_sym_PERCENT_EQ] = ACTIONS(4986), + [anon_sym_PLUS_EQ] = ACTIONS(4986), + [anon_sym_DASH_EQ] = ACTIONS(4986), + [anon_sym_LT_LT_EQ] = ACTIONS(4986), + [anon_sym_GT_GT_EQ] = ACTIONS(4993), + [anon_sym_AMP_EQ] = ACTIONS(4986), + [anon_sym_CARET_EQ] = ACTIONS(4986), + [anon_sym_PIPE_EQ] = ACTIONS(4986), + [anon_sym_and_eq] = ACTIONS(4986), + [anon_sym_or_eq] = ACTIONS(4986), + [anon_sym_xor_eq] = ACTIONS(4986), + [anon_sym_LT_EQ_GT] = ACTIONS(4986), + [anon_sym_or] = ACTIONS(4993), + [anon_sym_and] = ACTIONS(4993), + [anon_sym_bitor] = ACTIONS(4986), + [anon_sym_xor] = ACTIONS(4993), + [anon_sym_bitand] = ACTIONS(4986), + [anon_sym_not_eq] = ACTIONS(4986), + [anon_sym_DASH_DASH] = ACTIONS(4986), + [anon_sym_PLUS_PLUS] = ACTIONS(4986), + [anon_sym_DOT] = ACTIONS(4993), + [anon_sym_DOT_STAR] = ACTIONS(4986), + [anon_sym_DASH_GT] = ACTIONS(4986), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2476), - [anon_sym_decltype] = ACTIONS(2476), - [anon_sym_explicit] = ACTIONS(2476), - [anon_sym_typename] = ACTIONS(2476), - [anon_sym_private] = ACTIONS(2476), - [anon_sym_template] = ACTIONS(2476), - [anon_sym_operator] = ACTIONS(2476), - [anon_sym_friend] = ACTIONS(2476), - [anon_sym_public] = ACTIONS(2476), - [anon_sym_protected] = ACTIONS(2476), - [anon_sym_static_assert] = ACTIONS(2476), - [anon_sym_catch] = ACTIONS(5820), + [sym_auto] = ACTIONS(4991), + [anon_sym_decltype] = ACTIONS(4991), + [anon_sym_GT2] = ACTIONS(4988), }, - [1891] = { + [1935] = { [sym_identifier] = ACTIONS(1936), [anon_sym_LPAREN2] = ACTIONS(1934), [anon_sym_TILDE] = ACTIONS(1934), @@ -261205,1095 +265981,235 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1936), [anon_sym_concept] = ACTIONS(1936), }, - [1892] = { - [sym_argument_list] = STATE(2426), - [sym_initializer_list] = STATE(2426), - [sym_decltype_auto] = STATE(2253), - [sym_new_declarator] = STATE(2276), - [sym_identifier] = ACTIONS(5823), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5825), - [anon_sym_COMMA] = ACTIONS(5825), - [anon_sym_RPAREN] = ACTIONS(5825), - [aux_sym_preproc_if_token2] = ACTIONS(5825), - [aux_sym_preproc_else_token1] = ACTIONS(5825), - [aux_sym_preproc_elif_token1] = ACTIONS(5823), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5825), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5825), - [anon_sym_LPAREN2] = ACTIONS(5827), - [anon_sym_DASH] = ACTIONS(5823), - [anon_sym_PLUS] = ACTIONS(5823), - [anon_sym_STAR] = ACTIONS(5823), - [anon_sym_SLASH] = ACTIONS(5823), - [anon_sym_PERCENT] = ACTIONS(5823), - [anon_sym_PIPE_PIPE] = ACTIONS(5825), - [anon_sym_AMP_AMP] = ACTIONS(5825), - [anon_sym_PIPE] = ACTIONS(5823), - [anon_sym_CARET] = ACTIONS(5823), - [anon_sym_AMP] = ACTIONS(5823), - [anon_sym_EQ_EQ] = ACTIONS(5825), - [anon_sym_BANG_EQ] = ACTIONS(5825), - [anon_sym_GT] = ACTIONS(5823), - [anon_sym_GT_EQ] = ACTIONS(5825), - [anon_sym_LT_EQ] = ACTIONS(5823), - [anon_sym_LT] = ACTIONS(5823), - [anon_sym_LT_LT] = ACTIONS(5823), - [anon_sym_GT_GT] = ACTIONS(5823), - [anon_sym_SEMI] = ACTIONS(5825), - [anon_sym___attribute__] = ACTIONS(5823), - [anon_sym___attribute] = ACTIONS(5823), - [anon_sym_COLON] = ACTIONS(5825), - [anon_sym_LBRACE] = ACTIONS(1954), - [anon_sym_RBRACE] = ACTIONS(5825), - [anon_sym_LBRACK] = ACTIONS(5829), - [anon_sym_RBRACK] = ACTIONS(5825), - [anon_sym_EQ] = ACTIONS(5823), - [anon_sym_QMARK] = ACTIONS(5825), - [anon_sym_STAR_EQ] = ACTIONS(5825), - [anon_sym_SLASH_EQ] = ACTIONS(5825), - [anon_sym_PERCENT_EQ] = ACTIONS(5825), - [anon_sym_PLUS_EQ] = ACTIONS(5825), - [anon_sym_DASH_EQ] = ACTIONS(5825), - [anon_sym_LT_LT_EQ] = ACTIONS(5825), - [anon_sym_GT_GT_EQ] = ACTIONS(5825), - [anon_sym_AMP_EQ] = ACTIONS(5825), - [anon_sym_CARET_EQ] = ACTIONS(5825), - [anon_sym_PIPE_EQ] = ACTIONS(5825), - [anon_sym_and_eq] = ACTIONS(5823), - [anon_sym_or_eq] = ACTIONS(5823), - [anon_sym_xor_eq] = ACTIONS(5823), - [anon_sym_LT_EQ_GT] = ACTIONS(5825), - [anon_sym_or] = ACTIONS(5823), - [anon_sym_and] = ACTIONS(5823), - [anon_sym_bitor] = ACTIONS(5823), - [anon_sym_xor] = ACTIONS(5823), - [anon_sym_bitand] = ACTIONS(5823), - [anon_sym_not_eq] = ACTIONS(5823), - [anon_sym_DASH_DASH] = ACTIONS(5825), - [anon_sym_PLUS_PLUS] = ACTIONS(5825), - [anon_sym_DOT] = ACTIONS(5823), - [anon_sym_DOT_STAR] = ACTIONS(5825), - [anon_sym_DASH_GT] = ACTIONS(5825), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5831), - [anon_sym_decltype] = ACTIONS(5833), - }, - [1893] = { - [sym_identifier] = ACTIONS(5625), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5627), - [anon_sym_COMMA] = ACTIONS(5627), - [anon_sym_RPAREN] = ACTIONS(5627), - [anon_sym_LPAREN2] = ACTIONS(5627), - [anon_sym_TILDE] = ACTIONS(5627), - [anon_sym_STAR] = ACTIONS(5627), - [anon_sym_PIPE_PIPE] = ACTIONS(5627), - [anon_sym_AMP_AMP] = ACTIONS(5627), - [anon_sym_AMP] = ACTIONS(5625), - [anon_sym_SEMI] = ACTIONS(5627), - [anon_sym___extension__] = ACTIONS(5625), - [anon_sym_virtual] = ACTIONS(5625), - [anon_sym_extern] = ACTIONS(5625), - [anon_sym___attribute__] = ACTIONS(5625), - [anon_sym___attribute] = ACTIONS(5625), - [anon_sym_COLON] = ACTIONS(5625), - [anon_sym_COLON_COLON] = ACTIONS(5454), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5627), - [anon_sym___declspec] = ACTIONS(5625), - [anon_sym___based] = ACTIONS(5625), - [anon_sym___cdecl] = ACTIONS(5625), - [anon_sym___clrcall] = ACTIONS(5625), - [anon_sym___stdcall] = ACTIONS(5625), - [anon_sym___fastcall] = ACTIONS(5625), - [anon_sym___thiscall] = ACTIONS(5625), - [anon_sym___vectorcall] = ACTIONS(5625), - [anon_sym_LBRACE] = ACTIONS(5627), - [anon_sym_LBRACK] = ACTIONS(5625), - [anon_sym_static] = ACTIONS(5625), - [anon_sym_EQ] = ACTIONS(5627), - [anon_sym_register] = ACTIONS(5625), - [anon_sym_inline] = ACTIONS(5625), - [anon_sym___inline] = ACTIONS(5625), - [anon_sym___inline__] = ACTIONS(5625), - [anon_sym___forceinline] = ACTIONS(5625), - [anon_sym_thread_local] = ACTIONS(5625), - [anon_sym___thread] = ACTIONS(5625), - [anon_sym_const] = ACTIONS(5625), - [anon_sym_constexpr] = ACTIONS(5625), - [anon_sym_volatile] = ACTIONS(5625), - [anon_sym_restrict] = ACTIONS(5625), - [anon_sym___restrict__] = ACTIONS(5625), - [anon_sym__Atomic] = ACTIONS(5625), - [anon_sym__Noreturn] = ACTIONS(5625), - [anon_sym_noreturn] = ACTIONS(5625), - [anon_sym__Nonnull] = ACTIONS(5625), - [anon_sym_mutable] = ACTIONS(5625), - [anon_sym_constinit] = ACTIONS(5625), - [anon_sym_consteval] = ACTIONS(5625), - [anon_sym_alignas] = ACTIONS(5625), - [anon_sym__Alignas] = ACTIONS(5625), - [anon_sym_or] = ACTIONS(5625), - [anon_sym_and] = ACTIONS(5625), - [anon_sym_asm] = ACTIONS(5625), - [anon_sym___asm__] = ACTIONS(5625), - [anon_sym___asm] = ACTIONS(5625), - [anon_sym_DASH_GT] = ACTIONS(5627), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5625), - [anon_sym_decltype] = ACTIONS(5625), - [anon_sym_final] = ACTIONS(5625), - [anon_sym_override] = ACTIONS(5625), - [anon_sym_template] = ACTIONS(5625), - [anon_sym_GT2] = ACTIONS(5627), - [anon_sym_operator] = ACTIONS(5625), - [anon_sym_try] = ACTIONS(5625), - [anon_sym_noexcept] = ACTIONS(5625), - [anon_sym_throw] = ACTIONS(5625), - [anon_sym_requires] = ACTIONS(5625), - }, - [1894] = { - [sym_identifier] = ACTIONS(3951), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3953), - [anon_sym_COMMA] = ACTIONS(3953), - [anon_sym_RPAREN] = ACTIONS(3953), - [anon_sym_LPAREN2] = ACTIONS(3953), - [anon_sym_TILDE] = ACTIONS(3953), - [anon_sym_STAR] = ACTIONS(3953), - [anon_sym_AMP_AMP] = ACTIONS(3953), - [anon_sym_AMP] = ACTIONS(3951), - [anon_sym_SEMI] = ACTIONS(3953), - [anon_sym___extension__] = ACTIONS(3951), - [anon_sym_virtual] = ACTIONS(3951), - [anon_sym_extern] = ACTIONS(3951), - [anon_sym___attribute__] = ACTIONS(3951), - [anon_sym___attribute] = ACTIONS(3951), - [anon_sym_COLON] = ACTIONS(3951), - [anon_sym_COLON_COLON] = ACTIONS(3953), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3953), - [anon_sym___declspec] = ACTIONS(3951), - [anon_sym___based] = ACTIONS(3951), - [anon_sym___cdecl] = ACTIONS(3951), - [anon_sym___clrcall] = ACTIONS(3951), - [anon_sym___stdcall] = ACTIONS(3951), - [anon_sym___fastcall] = ACTIONS(3951), - [anon_sym___thiscall] = ACTIONS(3951), - [anon_sym___vectorcall] = ACTIONS(3951), - [anon_sym_LBRACE] = ACTIONS(3953), - [anon_sym_LBRACK] = ACTIONS(3951), - [anon_sym_static] = ACTIONS(3951), - [anon_sym_EQ] = ACTIONS(3953), - [anon_sym_register] = ACTIONS(3951), - [anon_sym_inline] = ACTIONS(3951), - [anon_sym___inline] = ACTIONS(3951), - [anon_sym___inline__] = ACTIONS(3951), - [anon_sym___forceinline] = ACTIONS(3951), - [anon_sym_thread_local] = ACTIONS(3951), - [anon_sym___thread] = ACTIONS(3951), - [anon_sym_const] = ACTIONS(3951), - [anon_sym_constexpr] = ACTIONS(3951), - [anon_sym_volatile] = ACTIONS(3951), - [anon_sym_restrict] = ACTIONS(3951), - [anon_sym___restrict__] = ACTIONS(3951), - [anon_sym__Atomic] = ACTIONS(3951), - [anon_sym__Noreturn] = ACTIONS(3951), - [anon_sym_noreturn] = ACTIONS(3951), - [anon_sym__Nonnull] = ACTIONS(3951), - [anon_sym_mutable] = ACTIONS(3951), - [anon_sym_constinit] = ACTIONS(3951), - [anon_sym_consteval] = ACTIONS(3951), - [anon_sym_alignas] = ACTIONS(3951), - [anon_sym__Alignas] = ACTIONS(3951), - [anon_sym_asm] = ACTIONS(3951), - [anon_sym___asm__] = ACTIONS(3951), - [anon_sym___asm] = ACTIONS(3951), - [anon_sym_DASH_GT] = ACTIONS(3953), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(3951), - [anon_sym_final] = ACTIONS(3951), - [anon_sym_override] = ACTIONS(3951), - [anon_sym_explicit] = ACTIONS(3951), - [anon_sym_private] = ACTIONS(3951), - [anon_sym_template] = ACTIONS(3951), - [anon_sym_GT2] = ACTIONS(3953), - [anon_sym_operator] = ACTIONS(3951), - [anon_sym_try] = ACTIONS(3951), - [anon_sym_public] = ACTIONS(3951), - [anon_sym_protected] = ACTIONS(3951), - [anon_sym_noexcept] = ACTIONS(3951), - [anon_sym_throw] = ACTIONS(3951), - [anon_sym_requires] = ACTIONS(3951), - }, - [1895] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(5000), - [anon_sym_COMMA] = ACTIONS(5000), - [anon_sym_LPAREN2] = ACTIONS(5000), - [anon_sym_DASH] = ACTIONS(5005), - [anon_sym_PLUS] = ACTIONS(5005), - [anon_sym_STAR] = ACTIONS(5007), - [anon_sym_SLASH] = ACTIONS(5005), - [anon_sym_PERCENT] = ACTIONS(5005), - [anon_sym_PIPE_PIPE] = ACTIONS(4998), - [anon_sym_AMP_AMP] = ACTIONS(5000), - [anon_sym_PIPE] = ACTIONS(5005), - [anon_sym_CARET] = ACTIONS(5005), - [anon_sym_AMP] = ACTIONS(5007), - [anon_sym_EQ_EQ] = ACTIONS(4998), - [anon_sym_BANG_EQ] = ACTIONS(4998), - [anon_sym_GT] = ACTIONS(5005), - [anon_sym_GT_EQ] = ACTIONS(5005), - [anon_sym_LT_EQ] = ACTIONS(5005), - [anon_sym_LT] = ACTIONS(5005), - [anon_sym_LT_LT] = ACTIONS(5005), - [anon_sym_GT_GT] = ACTIONS(5005), - [anon_sym___extension__] = ACTIONS(5003), - [anon_sym_COLON_COLON] = ACTIONS(5003), - [anon_sym_LBRACE] = ACTIONS(5003), - [anon_sym_LBRACK] = ACTIONS(5000), - [anon_sym_EQ] = ACTIONS(5005), - [anon_sym_const] = ACTIONS(4996), - [anon_sym_constexpr] = ACTIONS(5003), - [anon_sym_volatile] = ACTIONS(5003), - [anon_sym_restrict] = ACTIONS(5003), - [anon_sym___restrict__] = ACTIONS(5003), - [anon_sym__Atomic] = ACTIONS(5003), - [anon_sym__Noreturn] = ACTIONS(5003), - [anon_sym_noreturn] = ACTIONS(5003), - [anon_sym__Nonnull] = ACTIONS(5003), - [anon_sym_mutable] = ACTIONS(5003), - [anon_sym_constinit] = ACTIONS(5003), - [anon_sym_consteval] = ACTIONS(5003), - [anon_sym_alignas] = ACTIONS(5003), - [anon_sym__Alignas] = ACTIONS(5003), - [anon_sym_QMARK] = ACTIONS(4998), - [anon_sym_STAR_EQ] = ACTIONS(4998), - [anon_sym_SLASH_EQ] = ACTIONS(4998), - [anon_sym_PERCENT_EQ] = ACTIONS(4998), - [anon_sym_PLUS_EQ] = ACTIONS(4998), - [anon_sym_DASH_EQ] = ACTIONS(4998), - [anon_sym_LT_LT_EQ] = ACTIONS(4998), - [anon_sym_GT_GT_EQ] = ACTIONS(5005), - [anon_sym_AMP_EQ] = ACTIONS(4998), - [anon_sym_CARET_EQ] = ACTIONS(4998), - [anon_sym_PIPE_EQ] = ACTIONS(4998), - [anon_sym_and_eq] = ACTIONS(4998), - [anon_sym_or_eq] = ACTIONS(4998), - [anon_sym_xor_eq] = ACTIONS(4998), - [anon_sym_LT_EQ_GT] = ACTIONS(4998), - [anon_sym_or] = ACTIONS(5005), - [anon_sym_and] = ACTIONS(5005), - [anon_sym_bitor] = ACTIONS(4998), - [anon_sym_xor] = ACTIONS(5005), - [anon_sym_bitand] = ACTIONS(4998), - [anon_sym_not_eq] = ACTIONS(4998), - [anon_sym_DASH_DASH] = ACTIONS(4998), - [anon_sym_PLUS_PLUS] = ACTIONS(4998), - [anon_sym_DOT] = ACTIONS(5005), - [anon_sym_DOT_STAR] = ACTIONS(4998), - [anon_sym_DASH_GT] = ACTIONS(4998), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5003), - [anon_sym_decltype] = ACTIONS(5003), - [anon_sym_GT2] = ACTIONS(5000), - }, - [1896] = { - [sym_template_argument_list] = STATE(1916), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4965), - [anon_sym_RPAREN] = ACTIONS(4967), - [anon_sym_LPAREN2] = ACTIONS(4967), - [anon_sym_DASH] = ACTIONS(4972), - [anon_sym_PLUS] = ACTIONS(4972), - [anon_sym_STAR] = ACTIONS(4974), - [anon_sym_SLASH] = ACTIONS(4972), - [anon_sym_PERCENT] = ACTIONS(4972), - [anon_sym_PIPE_PIPE] = ACTIONS(4965), - [anon_sym_AMP_AMP] = ACTIONS(4967), - [anon_sym_PIPE] = ACTIONS(4972), - [anon_sym_CARET] = ACTIONS(4972), - [anon_sym_AMP] = ACTIONS(4974), - [anon_sym_EQ_EQ] = ACTIONS(4965), - [anon_sym_BANG_EQ] = ACTIONS(4965), - [anon_sym_GT] = ACTIONS(4972), - [anon_sym_GT_EQ] = ACTIONS(4965), - [anon_sym_LT_EQ] = ACTIONS(4972), - [anon_sym_LT] = ACTIONS(5835), - [anon_sym_LT_LT] = ACTIONS(4972), - [anon_sym_GT_GT] = ACTIONS(4972), - [anon_sym___extension__] = ACTIONS(4970), - [anon_sym_COLON_COLON] = ACTIONS(4167), - [anon_sym_LBRACE] = ACTIONS(4970), - [anon_sym_LBRACK] = ACTIONS(4967), - [anon_sym_EQ] = ACTIONS(4972), - [anon_sym_const] = ACTIONS(4963), - [anon_sym_constexpr] = ACTIONS(4970), - [anon_sym_volatile] = ACTIONS(4970), - [anon_sym_restrict] = ACTIONS(4970), - [anon_sym___restrict__] = ACTIONS(4970), - [anon_sym__Atomic] = ACTIONS(4970), - [anon_sym__Noreturn] = ACTIONS(4970), - [anon_sym_noreturn] = ACTIONS(4970), - [anon_sym__Nonnull] = ACTIONS(4970), - [anon_sym_mutable] = ACTIONS(4970), - [anon_sym_constinit] = ACTIONS(4970), - [anon_sym_consteval] = ACTIONS(4970), - [anon_sym_alignas] = ACTIONS(4970), - [anon_sym__Alignas] = ACTIONS(4970), - [anon_sym_QMARK] = ACTIONS(4965), - [anon_sym_STAR_EQ] = ACTIONS(4965), - [anon_sym_SLASH_EQ] = ACTIONS(4965), - [anon_sym_PERCENT_EQ] = ACTIONS(4965), - [anon_sym_PLUS_EQ] = ACTIONS(4965), - [anon_sym_DASH_EQ] = ACTIONS(4965), - [anon_sym_LT_LT_EQ] = ACTIONS(4965), - [anon_sym_GT_GT_EQ] = ACTIONS(4965), - [anon_sym_AMP_EQ] = ACTIONS(4965), - [anon_sym_CARET_EQ] = ACTIONS(4965), - [anon_sym_PIPE_EQ] = ACTIONS(4965), - [anon_sym_and_eq] = ACTIONS(4965), - [anon_sym_or_eq] = ACTIONS(4965), - [anon_sym_xor_eq] = ACTIONS(4965), - [anon_sym_LT_EQ_GT] = ACTIONS(4965), - [anon_sym_or] = ACTIONS(4972), - [anon_sym_and] = ACTIONS(4972), - [anon_sym_bitor] = ACTIONS(4965), - [anon_sym_xor] = ACTIONS(4972), - [anon_sym_bitand] = ACTIONS(4965), - [anon_sym_not_eq] = ACTIONS(4965), - [anon_sym_DASH_DASH] = ACTIONS(4965), - [anon_sym_PLUS_PLUS] = ACTIONS(4965), - [anon_sym_DOT] = ACTIONS(4972), - [anon_sym_DOT_STAR] = ACTIONS(4965), - [anon_sym_DASH_GT] = ACTIONS(4965), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4970), - [anon_sym_decltype] = ACTIONS(4970), - }, - [1897] = { - [sym_identifier] = ACTIONS(3947), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3949), - [anon_sym_COMMA] = ACTIONS(3949), - [anon_sym_RPAREN] = ACTIONS(3949), - [anon_sym_LPAREN2] = ACTIONS(3949), - [anon_sym_TILDE] = ACTIONS(3949), - [anon_sym_STAR] = ACTIONS(3949), - [anon_sym_AMP_AMP] = ACTIONS(3949), - [anon_sym_AMP] = ACTIONS(3947), - [anon_sym_SEMI] = ACTIONS(3949), - [anon_sym___extension__] = ACTIONS(3947), - [anon_sym_virtual] = ACTIONS(3947), - [anon_sym_extern] = ACTIONS(3947), - [anon_sym___attribute__] = ACTIONS(3947), - [anon_sym___attribute] = ACTIONS(3947), - [anon_sym_COLON] = ACTIONS(3947), - [anon_sym_COLON_COLON] = ACTIONS(3949), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3949), - [anon_sym___declspec] = ACTIONS(3947), - [anon_sym___based] = ACTIONS(3947), - [anon_sym___cdecl] = ACTIONS(3947), - [anon_sym___clrcall] = ACTIONS(3947), - [anon_sym___stdcall] = ACTIONS(3947), - [anon_sym___fastcall] = ACTIONS(3947), - [anon_sym___thiscall] = ACTIONS(3947), - [anon_sym___vectorcall] = ACTIONS(3947), - [anon_sym_LBRACE] = ACTIONS(3949), - [anon_sym_LBRACK] = ACTIONS(3947), - [anon_sym_static] = ACTIONS(3947), - [anon_sym_EQ] = ACTIONS(3949), - [anon_sym_register] = ACTIONS(3947), - [anon_sym_inline] = ACTIONS(3947), - [anon_sym___inline] = ACTIONS(3947), - [anon_sym___inline__] = ACTIONS(3947), - [anon_sym___forceinline] = ACTIONS(3947), - [anon_sym_thread_local] = ACTIONS(3947), - [anon_sym___thread] = ACTIONS(3947), - [anon_sym_const] = ACTIONS(3947), - [anon_sym_constexpr] = ACTIONS(3947), - [anon_sym_volatile] = ACTIONS(3947), - [anon_sym_restrict] = ACTIONS(3947), - [anon_sym___restrict__] = ACTIONS(3947), - [anon_sym__Atomic] = ACTIONS(3947), - [anon_sym__Noreturn] = ACTIONS(3947), - [anon_sym_noreturn] = ACTIONS(3947), - [anon_sym__Nonnull] = ACTIONS(3947), - [anon_sym_mutable] = ACTIONS(3947), - [anon_sym_constinit] = ACTIONS(3947), - [anon_sym_consteval] = ACTIONS(3947), - [anon_sym_alignas] = ACTIONS(3947), - [anon_sym__Alignas] = ACTIONS(3947), - [anon_sym_asm] = ACTIONS(3947), - [anon_sym___asm__] = ACTIONS(3947), - [anon_sym___asm] = ACTIONS(3947), - [anon_sym_DASH_GT] = ACTIONS(3949), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(3947), - [anon_sym_final] = ACTIONS(3947), - [anon_sym_override] = ACTIONS(3947), - [anon_sym_explicit] = ACTIONS(3947), - [anon_sym_private] = ACTIONS(3947), - [anon_sym_template] = ACTIONS(3947), - [anon_sym_GT2] = ACTIONS(3949), - [anon_sym_operator] = ACTIONS(3947), - [anon_sym_try] = ACTIONS(3947), - [anon_sym_public] = ACTIONS(3947), - [anon_sym_protected] = ACTIONS(3947), - [anon_sym_noexcept] = ACTIONS(3947), - [anon_sym_throw] = ACTIONS(3947), - [anon_sym_requires] = ACTIONS(3947), - }, - [1898] = { - [sym_identifier] = ACTIONS(5641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5643), - [anon_sym_COMMA] = ACTIONS(5643), - [anon_sym_RPAREN] = ACTIONS(5643), - [aux_sym_preproc_if_token2] = ACTIONS(5643), - [aux_sym_preproc_else_token1] = ACTIONS(5643), - [aux_sym_preproc_elif_token1] = ACTIONS(5641), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5643), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5643), - [anon_sym_LPAREN2] = ACTIONS(5643), - [anon_sym_DASH] = ACTIONS(5641), - [anon_sym_PLUS] = ACTIONS(5641), - [anon_sym_STAR] = ACTIONS(5643), - [anon_sym_SLASH] = ACTIONS(5641), - [anon_sym_PERCENT] = ACTIONS(5643), - [anon_sym_PIPE_PIPE] = ACTIONS(5643), - [anon_sym_AMP_AMP] = ACTIONS(5643), - [anon_sym_PIPE] = ACTIONS(5641), - [anon_sym_CARET] = ACTIONS(5643), - [anon_sym_AMP] = ACTIONS(5641), - [anon_sym_EQ_EQ] = ACTIONS(5643), - [anon_sym_BANG_EQ] = ACTIONS(5643), - [anon_sym_GT] = ACTIONS(5641), - [anon_sym_GT_EQ] = ACTIONS(5643), - [anon_sym_LT_EQ] = ACTIONS(5641), - [anon_sym_LT] = ACTIONS(5641), - [anon_sym_LT_LT] = ACTIONS(5643), - [anon_sym_GT_GT] = ACTIONS(5643), - [anon_sym_SEMI] = ACTIONS(5643), - [anon_sym___extension__] = ACTIONS(5641), - [anon_sym___attribute__] = ACTIONS(5641), - [anon_sym___attribute] = ACTIONS(5641), - [anon_sym_COLON] = ACTIONS(5643), - [anon_sym_LBRACE] = ACTIONS(5643), - [anon_sym_RBRACE] = ACTIONS(5643), - [anon_sym_LBRACK] = ACTIONS(5643), - [anon_sym_RBRACK] = ACTIONS(5643), - [anon_sym_const] = ACTIONS(5641), - [anon_sym_constexpr] = ACTIONS(5641), - [anon_sym_volatile] = ACTIONS(5641), - [anon_sym_restrict] = ACTIONS(5641), - [anon_sym___restrict__] = ACTIONS(5641), - [anon_sym__Atomic] = ACTIONS(5641), - [anon_sym__Noreturn] = ACTIONS(5641), - [anon_sym_noreturn] = ACTIONS(5641), - [anon_sym__Nonnull] = ACTIONS(5641), - [anon_sym_mutable] = ACTIONS(5641), - [anon_sym_constinit] = ACTIONS(5641), - [anon_sym_consteval] = ACTIONS(5641), - [anon_sym_alignas] = ACTIONS(5641), - [anon_sym__Alignas] = ACTIONS(5641), - [anon_sym_QMARK] = ACTIONS(5643), - [anon_sym_LT_EQ_GT] = ACTIONS(5643), - [anon_sym_or] = ACTIONS(5641), - [anon_sym_and] = ACTIONS(5641), - [anon_sym_bitor] = ACTIONS(5641), - [anon_sym_xor] = ACTIONS(5641), - [anon_sym_bitand] = ACTIONS(5641), - [anon_sym_not_eq] = ACTIONS(5641), - [anon_sym_DASH_DASH] = ACTIONS(5643), - [anon_sym_PLUS_PLUS] = ACTIONS(5643), - [anon_sym_DOT] = ACTIONS(5641), - [anon_sym_DOT_STAR] = ACTIONS(5643), - [anon_sym_DASH_GT] = ACTIONS(5643), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5641), - [anon_sym_decltype] = ACTIONS(5641), - [anon_sym_final] = ACTIONS(5641), - [anon_sym_override] = ACTIONS(5641), - [anon_sym_requires] = ACTIONS(5641), - }, - [1899] = { - [sym_template_argument_list] = STATE(1941), - [sym_identifier] = ACTIONS(5838), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4172), - [anon_sym_COMMA] = ACTIONS(4172), - [anon_sym_RPAREN] = ACTIONS(4172), - [aux_sym_preproc_if_token2] = ACTIONS(4172), - [aux_sym_preproc_else_token1] = ACTIONS(4172), - [aux_sym_preproc_elif_token1] = ACTIONS(5838), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4172), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4172), - [anon_sym_LPAREN2] = ACTIONS(4172), - [anon_sym_DASH] = ACTIONS(5838), - [anon_sym_PLUS] = ACTIONS(5838), - [anon_sym_STAR] = ACTIONS(5838), - [anon_sym_SLASH] = ACTIONS(5838), - [anon_sym_PERCENT] = ACTIONS(5838), - [anon_sym_PIPE_PIPE] = ACTIONS(4172), - [anon_sym_AMP_AMP] = ACTIONS(4172), - [anon_sym_PIPE] = ACTIONS(5838), - [anon_sym_CARET] = ACTIONS(5838), - [anon_sym_AMP] = ACTIONS(5838), - [anon_sym_EQ_EQ] = ACTIONS(4172), - [anon_sym_BANG_EQ] = ACTIONS(4172), - [anon_sym_GT] = ACTIONS(5838), - [anon_sym_GT_EQ] = ACTIONS(4172), - [anon_sym_LT_EQ] = ACTIONS(5838), - [anon_sym_LT] = ACTIONS(5840), - [anon_sym_LT_LT] = ACTIONS(5838), - [anon_sym_GT_GT] = ACTIONS(5838), - [anon_sym_SEMI] = ACTIONS(4172), - [anon_sym___attribute__] = ACTIONS(5838), - [anon_sym___attribute] = ACTIONS(5838), - [anon_sym_COLON] = ACTIONS(5838), - [anon_sym_COLON_COLON] = ACTIONS(4167), - [anon_sym_LBRACE] = ACTIONS(4172), - [anon_sym_RBRACE] = ACTIONS(4172), - [anon_sym_LBRACK] = ACTIONS(4172), - [anon_sym_RBRACK] = ACTIONS(4172), - [anon_sym_EQ] = ACTIONS(5838), - [anon_sym_QMARK] = ACTIONS(4172), - [anon_sym_STAR_EQ] = ACTIONS(4172), - [anon_sym_SLASH_EQ] = ACTIONS(4172), - [anon_sym_PERCENT_EQ] = ACTIONS(4172), - [anon_sym_PLUS_EQ] = ACTIONS(4172), - [anon_sym_DASH_EQ] = ACTIONS(4172), - [anon_sym_LT_LT_EQ] = ACTIONS(4172), - [anon_sym_GT_GT_EQ] = ACTIONS(4172), - [anon_sym_AMP_EQ] = ACTIONS(4172), - [anon_sym_CARET_EQ] = ACTIONS(4172), - [anon_sym_PIPE_EQ] = ACTIONS(4172), - [anon_sym_and_eq] = ACTIONS(5838), - [anon_sym_or_eq] = ACTIONS(5838), - [anon_sym_xor_eq] = ACTIONS(5838), - [anon_sym_LT_EQ_GT] = ACTIONS(4172), - [anon_sym_or] = ACTIONS(5838), - [anon_sym_and] = ACTIONS(5838), - [anon_sym_bitor] = ACTIONS(5838), - [anon_sym_xor] = ACTIONS(5838), - [anon_sym_bitand] = ACTIONS(5838), - [anon_sym_not_eq] = ACTIONS(5838), - [anon_sym_DASH_DASH] = ACTIONS(4172), - [anon_sym_PLUS_PLUS] = ACTIONS(4172), - [anon_sym_DOT] = ACTIONS(5838), - [anon_sym_DOT_STAR] = ACTIONS(4172), - [anon_sym_DASH_GT] = ACTIONS(4172), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5838), - [anon_sym_decltype] = ACTIONS(5838), - [anon_sym_final] = ACTIONS(5838), - [anon_sym_override] = ACTIONS(5838), - }, - [1900] = { - [sym_argument_list] = STATE(2465), - [sym_initializer_list] = STATE(2465), - [sym_decltype_auto] = STATE(2253), - [sym_new_declarator] = STATE(2217), - [sym_identifier] = ACTIONS(5842), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5844), - [anon_sym_COMMA] = ACTIONS(5844), - [anon_sym_RPAREN] = ACTIONS(5844), - [aux_sym_preproc_if_token2] = ACTIONS(5844), - [aux_sym_preproc_else_token1] = ACTIONS(5844), - [aux_sym_preproc_elif_token1] = ACTIONS(5842), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5844), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5844), - [anon_sym_LPAREN2] = ACTIONS(5827), - [anon_sym_DASH] = ACTIONS(5842), - [anon_sym_PLUS] = ACTIONS(5842), - [anon_sym_STAR] = ACTIONS(5842), - [anon_sym_SLASH] = ACTIONS(5842), - [anon_sym_PERCENT] = ACTIONS(5842), - [anon_sym_PIPE_PIPE] = ACTIONS(5844), - [anon_sym_AMP_AMP] = ACTIONS(5844), - [anon_sym_PIPE] = ACTIONS(5842), - [anon_sym_CARET] = ACTIONS(5842), - [anon_sym_AMP] = ACTIONS(5842), - [anon_sym_EQ_EQ] = ACTIONS(5844), - [anon_sym_BANG_EQ] = ACTIONS(5844), - [anon_sym_GT] = ACTIONS(5842), - [anon_sym_GT_EQ] = ACTIONS(5844), - [anon_sym_LT_EQ] = ACTIONS(5842), - [anon_sym_LT] = ACTIONS(5842), - [anon_sym_LT_LT] = ACTIONS(5842), - [anon_sym_GT_GT] = ACTIONS(5842), - [anon_sym_SEMI] = ACTIONS(5844), - [anon_sym___attribute__] = ACTIONS(5842), - [anon_sym___attribute] = ACTIONS(5842), - [anon_sym_COLON] = ACTIONS(5844), - [anon_sym_LBRACE] = ACTIONS(1954), - [anon_sym_RBRACE] = ACTIONS(5844), - [anon_sym_LBRACK] = ACTIONS(5829), - [anon_sym_RBRACK] = ACTIONS(5844), - [anon_sym_EQ] = ACTIONS(5842), - [anon_sym_QMARK] = ACTIONS(5844), - [anon_sym_STAR_EQ] = ACTIONS(5844), - [anon_sym_SLASH_EQ] = ACTIONS(5844), - [anon_sym_PERCENT_EQ] = ACTIONS(5844), - [anon_sym_PLUS_EQ] = ACTIONS(5844), - [anon_sym_DASH_EQ] = ACTIONS(5844), - [anon_sym_LT_LT_EQ] = ACTIONS(5844), - [anon_sym_GT_GT_EQ] = ACTIONS(5844), - [anon_sym_AMP_EQ] = ACTIONS(5844), - [anon_sym_CARET_EQ] = ACTIONS(5844), - [anon_sym_PIPE_EQ] = ACTIONS(5844), - [anon_sym_and_eq] = ACTIONS(5842), - [anon_sym_or_eq] = ACTIONS(5842), - [anon_sym_xor_eq] = ACTIONS(5842), - [anon_sym_LT_EQ_GT] = ACTIONS(5844), - [anon_sym_or] = ACTIONS(5842), - [anon_sym_and] = ACTIONS(5842), - [anon_sym_bitor] = ACTIONS(5842), - [anon_sym_xor] = ACTIONS(5842), - [anon_sym_bitand] = ACTIONS(5842), - [anon_sym_not_eq] = ACTIONS(5842), - [anon_sym_DASH_DASH] = ACTIONS(5844), - [anon_sym_PLUS_PLUS] = ACTIONS(5844), - [anon_sym_DOT] = ACTIONS(5842), - [anon_sym_DOT_STAR] = ACTIONS(5844), - [anon_sym_DASH_GT] = ACTIONS(5844), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5831), - [anon_sym_decltype] = ACTIONS(5833), - }, - [1901] = { - [sym_template_argument_list] = STATE(1941), - [sym_identifier] = ACTIONS(4963), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4970), - [anon_sym_COMMA] = ACTIONS(4970), - [anon_sym_RPAREN] = ACTIONS(4970), - [aux_sym_preproc_if_token2] = ACTIONS(4970), - [aux_sym_preproc_else_token1] = ACTIONS(4970), - [aux_sym_preproc_elif_token1] = ACTIONS(4963), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4970), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4970), - [anon_sym_LPAREN2] = ACTIONS(4970), - [anon_sym_DASH] = ACTIONS(4963), - [anon_sym_PLUS] = ACTIONS(4963), - [anon_sym_STAR] = ACTIONS(4963), - [anon_sym_SLASH] = ACTIONS(4963), - [anon_sym_PERCENT] = ACTIONS(4963), - [anon_sym_PIPE_PIPE] = ACTIONS(4970), - [anon_sym_AMP_AMP] = ACTIONS(4970), - [anon_sym_PIPE] = ACTIONS(4963), - [anon_sym_CARET] = ACTIONS(4963), - [anon_sym_AMP] = ACTIONS(4963), - [anon_sym_EQ_EQ] = ACTIONS(4970), - [anon_sym_BANG_EQ] = ACTIONS(4970), - [anon_sym_GT] = ACTIONS(4963), - [anon_sym_GT_EQ] = ACTIONS(4970), - [anon_sym_LT_EQ] = ACTIONS(4963), - [anon_sym_LT] = ACTIONS(5846), - [anon_sym_LT_LT] = ACTIONS(4963), - [anon_sym_GT_GT] = ACTIONS(4963), - [anon_sym_SEMI] = ACTIONS(4970), - [anon_sym___attribute__] = ACTIONS(4963), - [anon_sym___attribute] = ACTIONS(4963), - [anon_sym_COLON] = ACTIONS(4963), - [anon_sym_COLON_COLON] = ACTIONS(4167), - [anon_sym_LBRACE] = ACTIONS(4970), - [anon_sym_RBRACE] = ACTIONS(4970), - [anon_sym_LBRACK] = ACTIONS(4970), - [anon_sym_RBRACK] = ACTIONS(4970), - [anon_sym_EQ] = ACTIONS(4963), - [anon_sym_QMARK] = ACTIONS(4970), - [anon_sym_STAR_EQ] = ACTIONS(4970), - [anon_sym_SLASH_EQ] = ACTIONS(4970), - [anon_sym_PERCENT_EQ] = ACTIONS(4970), - [anon_sym_PLUS_EQ] = ACTIONS(4970), - [anon_sym_DASH_EQ] = ACTIONS(4970), - [anon_sym_LT_LT_EQ] = ACTIONS(4970), - [anon_sym_GT_GT_EQ] = ACTIONS(4970), - [anon_sym_AMP_EQ] = ACTIONS(4970), - [anon_sym_CARET_EQ] = ACTIONS(4970), - [anon_sym_PIPE_EQ] = ACTIONS(4970), - [anon_sym_and_eq] = ACTIONS(4963), - [anon_sym_or_eq] = ACTIONS(4963), - [anon_sym_xor_eq] = ACTIONS(4963), - [anon_sym_LT_EQ_GT] = ACTIONS(4970), - [anon_sym_or] = ACTIONS(4963), - [anon_sym_and] = ACTIONS(4963), - [anon_sym_bitor] = ACTIONS(4963), - [anon_sym_xor] = ACTIONS(4963), - [anon_sym_bitand] = ACTIONS(4963), - [anon_sym_not_eq] = ACTIONS(4963), - [anon_sym_DASH_DASH] = ACTIONS(4970), - [anon_sym_PLUS_PLUS] = ACTIONS(4970), - [anon_sym_DOT] = ACTIONS(4963), - [anon_sym_DOT_STAR] = ACTIONS(4970), - [anon_sym_DASH_GT] = ACTIONS(4970), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4963), - [anon_sym_decltype] = ACTIONS(4963), - [anon_sym_final] = ACTIONS(4963), - [anon_sym_override] = ACTIONS(4963), - }, - [1902] = { - [sym_identifier] = ACTIONS(5450), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5452), - [anon_sym_COMMA] = ACTIONS(5452), - [anon_sym_RPAREN] = ACTIONS(5452), - [aux_sym_preproc_if_token2] = ACTIONS(5452), - [aux_sym_preproc_else_token1] = ACTIONS(5452), - [aux_sym_preproc_elif_token1] = ACTIONS(5450), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5452), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5452), - [anon_sym_LPAREN2] = ACTIONS(5452), - [anon_sym_DASH] = ACTIONS(5450), - [anon_sym_PLUS] = ACTIONS(5450), - [anon_sym_STAR] = ACTIONS(5452), - [anon_sym_SLASH] = ACTIONS(5450), - [anon_sym_PERCENT] = ACTIONS(5452), - [anon_sym_PIPE_PIPE] = ACTIONS(5452), - [anon_sym_AMP_AMP] = ACTIONS(5452), - [anon_sym_PIPE] = ACTIONS(5450), - [anon_sym_CARET] = ACTIONS(5452), - [anon_sym_AMP] = ACTIONS(5450), - [anon_sym_EQ_EQ] = ACTIONS(5452), - [anon_sym_BANG_EQ] = ACTIONS(5452), - [anon_sym_GT] = ACTIONS(5450), - [anon_sym_GT_EQ] = ACTIONS(5452), - [anon_sym_LT_EQ] = ACTIONS(5450), - [anon_sym_LT] = ACTIONS(5450), - [anon_sym_LT_LT] = ACTIONS(5452), - [anon_sym_GT_GT] = ACTIONS(5452), - [anon_sym_SEMI] = ACTIONS(5452), - [anon_sym___extension__] = ACTIONS(5450), - [anon_sym___attribute__] = ACTIONS(5450), - [anon_sym___attribute] = ACTIONS(5450), - [anon_sym_COLON] = ACTIONS(5452), - [anon_sym_LBRACE] = ACTIONS(5452), - [anon_sym_RBRACE] = ACTIONS(5452), - [anon_sym_LBRACK] = ACTIONS(5452), - [anon_sym_RBRACK] = ACTIONS(5452), - [anon_sym_const] = ACTIONS(5450), - [anon_sym_constexpr] = ACTIONS(5450), - [anon_sym_volatile] = ACTIONS(5450), - [anon_sym_restrict] = ACTIONS(5450), - [anon_sym___restrict__] = ACTIONS(5450), - [anon_sym__Atomic] = ACTIONS(5450), - [anon_sym__Noreturn] = ACTIONS(5450), - [anon_sym_noreturn] = ACTIONS(5450), - [anon_sym__Nonnull] = ACTIONS(5450), - [anon_sym_mutable] = ACTIONS(5450), - [anon_sym_constinit] = ACTIONS(5450), - [anon_sym_consteval] = ACTIONS(5450), - [anon_sym_alignas] = ACTIONS(5450), - [anon_sym__Alignas] = ACTIONS(5450), - [anon_sym_QMARK] = ACTIONS(5452), - [anon_sym_LT_EQ_GT] = ACTIONS(5452), - [anon_sym_or] = ACTIONS(5450), - [anon_sym_and] = ACTIONS(5450), - [anon_sym_bitor] = ACTIONS(5450), - [anon_sym_xor] = ACTIONS(5450), - [anon_sym_bitand] = ACTIONS(5450), - [anon_sym_not_eq] = ACTIONS(5450), - [anon_sym_DASH_DASH] = ACTIONS(5452), - [anon_sym_PLUS_PLUS] = ACTIONS(5452), - [anon_sym_DOT] = ACTIONS(5450), - [anon_sym_DOT_STAR] = ACTIONS(5452), - [anon_sym_DASH_GT] = ACTIONS(5452), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5450), - [anon_sym_decltype] = ACTIONS(5450), - [anon_sym_final] = ACTIONS(5450), - [anon_sym_override] = ACTIONS(5450), - [anon_sym_requires] = ACTIONS(5450), - }, - [1903] = { - [sym_ms_based_modifier] = STATE(8106), - [sym_ms_unaligned_ptr_modifier] = STATE(4043), - [sym_ms_pointer_modifier] = STATE(1904), - [sym__declarator] = STATE(6313), - [sym__abstract_declarator] = STATE(6537), - [sym_parenthesized_declarator] = STATE(5998), - [sym_abstract_parenthesized_declarator] = STATE(6092), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_abstract_pointer_declarator] = STATE(6092), - [sym_function_declarator] = STATE(5998), - [sym_abstract_function_declarator] = STATE(6092), - [sym_array_declarator] = STATE(5998), - [sym_abstract_array_declarator] = STATE(6092), - [sym_type_qualifier] = STATE(2564), - [sym_alignas_qualifier] = STATE(4289), - [sym_parameter_list] = STATE(3087), - [sym_decltype] = STATE(8601), - [sym_reference_declarator] = STATE(5998), - [sym_abstract_reference_declarator] = STATE(6092), - [sym_structured_binding_declarator] = STATE(5998), - [sym__function_declarator_seq] = STATE(6087), - [sym_template_type] = STATE(8601), - [sym_template_function] = STATE(5998), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5860), - [sym_qualified_identifier] = STATE(5998), - [sym_operator_name] = STATE(5998), - [aux_sym__type_definition_type_repeat1] = STATE(2564), - [aux_sym_pointer_declarator_repeat1] = STATE(1904), - [sym_identifier] = ACTIONS(5849), - [anon_sym_COMMA] = ACTIONS(5851), - [anon_sym_RPAREN] = ACTIONS(5851), - [anon_sym_LPAREN2] = ACTIONS(4298), - [anon_sym_TILDE] = ACTIONS(2979), - [anon_sym_STAR] = ACTIONS(5853), - [anon_sym_AMP_AMP] = ACTIONS(5855), - [anon_sym_AMP] = ACTIONS(5857), - [anon_sym___extension__] = ACTIONS(3331), - [anon_sym___attribute__] = ACTIONS(5859), - [anon_sym___attribute] = ACTIONS(5859), - [anon_sym_COLON_COLON] = ACTIONS(5861), - [anon_sym___based] = ACTIONS(53), - [sym_ms_restrict_modifier] = ACTIONS(3327), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(3327), - [sym_ms_signed_ptr_modifier] = ACTIONS(3327), - [anon_sym__unaligned] = ACTIONS(3329), - [anon_sym___unaligned] = ACTIONS(3329), - [anon_sym_LBRACK] = ACTIONS(5863), - [anon_sym_EQ] = ACTIONS(5851), - [anon_sym_const] = ACTIONS(3331), - [anon_sym_constexpr] = ACTIONS(3331), - [anon_sym_volatile] = ACTIONS(3331), - [anon_sym_restrict] = ACTIONS(3331), - [anon_sym___restrict__] = ACTIONS(3331), - [anon_sym__Atomic] = ACTIONS(3331), - [anon_sym__Noreturn] = ACTIONS(3331), - [anon_sym_noreturn] = ACTIONS(3331), - [anon_sym__Nonnull] = ACTIONS(3331), - [anon_sym_mutable] = ACTIONS(3331), - [anon_sym_constinit] = ACTIONS(3331), - [anon_sym_consteval] = ACTIONS(3331), - [anon_sym_alignas] = ACTIONS(3333), - [anon_sym__Alignas] = ACTIONS(3333), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_GT2] = ACTIONS(5851), - [anon_sym_operator] = ACTIONS(1852), - }, - [1904] = { - [sym_ms_based_modifier] = STATE(8106), - [sym_ms_unaligned_ptr_modifier] = STATE(4043), - [sym_ms_pointer_modifier] = STATE(3820), - [sym__declarator] = STATE(6349), - [sym__abstract_declarator] = STATE(6538), - [sym_parenthesized_declarator] = STATE(5998), - [sym_abstract_parenthesized_declarator] = STATE(6092), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_abstract_pointer_declarator] = STATE(6092), - [sym_function_declarator] = STATE(5998), - [sym_abstract_function_declarator] = STATE(6092), - [sym_array_declarator] = STATE(5998), - [sym_abstract_array_declarator] = STATE(6092), - [sym_type_qualifier] = STATE(2565), - [sym_alignas_qualifier] = STATE(4289), - [sym_parameter_list] = STATE(3087), - [sym_decltype] = STATE(8601), - [sym_reference_declarator] = STATE(5998), - [sym_abstract_reference_declarator] = STATE(6092), - [sym_structured_binding_declarator] = STATE(5998), - [sym__function_declarator_seq] = STATE(6087), - [sym_template_type] = STATE(8601), - [sym_template_function] = STATE(5998), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5860), - [sym_qualified_identifier] = STATE(5998), - [sym_operator_name] = STATE(5998), - [aux_sym__type_definition_type_repeat1] = STATE(2565), - [aux_sym_pointer_declarator_repeat1] = STATE(3820), - [sym_identifier] = ACTIONS(5849), - [anon_sym_COMMA] = ACTIONS(5865), - [anon_sym_RPAREN] = ACTIONS(5865), - [anon_sym_LPAREN2] = ACTIONS(4298), - [anon_sym_TILDE] = ACTIONS(2979), - [anon_sym_STAR] = ACTIONS(5853), - [anon_sym_AMP_AMP] = ACTIONS(5855), - [anon_sym_AMP] = ACTIONS(5857), - [anon_sym___extension__] = ACTIONS(3331), - [anon_sym___attribute__] = ACTIONS(5867), - [anon_sym___attribute] = ACTIONS(5867), - [anon_sym_COLON_COLON] = ACTIONS(5861), - [anon_sym___based] = ACTIONS(53), - [sym_ms_restrict_modifier] = ACTIONS(3327), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(3327), - [sym_ms_signed_ptr_modifier] = ACTIONS(3327), - [anon_sym__unaligned] = ACTIONS(3329), - [anon_sym___unaligned] = ACTIONS(3329), - [anon_sym_LBRACK] = ACTIONS(5863), - [anon_sym_EQ] = ACTIONS(5865), - [anon_sym_const] = ACTIONS(3331), - [anon_sym_constexpr] = ACTIONS(3331), - [anon_sym_volatile] = ACTIONS(3331), - [anon_sym_restrict] = ACTIONS(3331), - [anon_sym___restrict__] = ACTIONS(3331), - [anon_sym__Atomic] = ACTIONS(3331), - [anon_sym__Noreturn] = ACTIONS(3331), - [anon_sym_noreturn] = ACTIONS(3331), - [anon_sym__Nonnull] = ACTIONS(3331), - [anon_sym_mutable] = ACTIONS(3331), - [anon_sym_constinit] = ACTIONS(3331), - [anon_sym_consteval] = ACTIONS(3331), - [anon_sym_alignas] = ACTIONS(3333), - [anon_sym__Alignas] = ACTIONS(3333), + [1936] = { + [sym_identifier] = ACTIONS(1936), + [aux_sym_preproc_def_token1] = ACTIONS(1936), + [aux_sym_preproc_if_token1] = ACTIONS(1936), + [aux_sym_preproc_if_token2] = ACTIONS(1936), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1936), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1936), + [sym_preproc_directive] = ACTIONS(1936), + [anon_sym_LPAREN2] = ACTIONS(1934), + [anon_sym_TILDE] = ACTIONS(1934), + [anon_sym_STAR] = ACTIONS(1934), + [anon_sym_AMP_AMP] = ACTIONS(1934), + [anon_sym_AMP] = ACTIONS(1936), + [anon_sym_SEMI] = ACTIONS(1934), + [anon_sym___extension__] = ACTIONS(1936), + [anon_sym_typedef] = ACTIONS(1936), + [anon_sym_virtual] = ACTIONS(1936), + [anon_sym_extern] = ACTIONS(1936), + [anon_sym___attribute__] = ACTIONS(1936), + [anon_sym___attribute] = ACTIONS(1936), + [anon_sym_using] = ACTIONS(1936), + [anon_sym_COLON_COLON] = ACTIONS(1934), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1934), + [anon_sym___declspec] = ACTIONS(1936), + [anon_sym___based] = ACTIONS(1936), + [anon_sym_signed] = ACTIONS(1936), + [anon_sym_unsigned] = ACTIONS(1936), + [anon_sym_long] = ACTIONS(1936), + [anon_sym_short] = ACTIONS(1936), + [anon_sym_LBRACK] = ACTIONS(1936), + [anon_sym_static] = ACTIONS(1936), + [anon_sym_register] = ACTIONS(1936), + [anon_sym_inline] = ACTIONS(1936), + [anon_sym___inline] = ACTIONS(1936), + [anon_sym___inline__] = ACTIONS(1936), + [anon_sym___forceinline] = ACTIONS(1936), + [anon_sym_thread_local] = ACTIONS(1936), + [anon_sym___thread] = ACTIONS(1936), + [anon_sym_const] = ACTIONS(1936), + [anon_sym_constexpr] = ACTIONS(1936), + [anon_sym_volatile] = ACTIONS(1936), + [anon_sym_restrict] = ACTIONS(1936), + [anon_sym___restrict__] = ACTIONS(1936), + [anon_sym__Atomic] = ACTIONS(1936), + [anon_sym__Noreturn] = ACTIONS(1936), + [anon_sym_noreturn] = ACTIONS(1936), + [anon_sym__Nonnull] = ACTIONS(1936), + [anon_sym_mutable] = ACTIONS(1936), + [anon_sym_constinit] = ACTIONS(1936), + [anon_sym_consteval] = ACTIONS(1936), + [anon_sym_alignas] = ACTIONS(1936), + [anon_sym__Alignas] = ACTIONS(1936), + [sym_primitive_type] = ACTIONS(1936), + [anon_sym_enum] = ACTIONS(1936), + [anon_sym_class] = ACTIONS(1936), + [anon_sym_struct] = ACTIONS(1936), + [anon_sym_union] = ACTIONS(1936), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_GT2] = ACTIONS(5865), - [anon_sym_operator] = ACTIONS(1852), + [sym_auto] = ACTIONS(1936), + [anon_sym_decltype] = ACTIONS(1936), + [anon_sym_explicit] = ACTIONS(1936), + [anon_sym_typename] = ACTIONS(1936), + [anon_sym_private] = ACTIONS(1936), + [anon_sym_template] = ACTIONS(1936), + [anon_sym_operator] = ACTIONS(1936), + [anon_sym_friend] = ACTIONS(1936), + [anon_sym_public] = ACTIONS(1936), + [anon_sym_protected] = ACTIONS(1936), + [anon_sym_static_assert] = ACTIONS(1936), + [anon_sym_catch] = ACTIONS(1936), }, - [1905] = { - [sym_argument_list] = STATE(2456), - [sym_initializer_list] = STATE(2456), - [sym_decltype_auto] = STATE(2253), - [sym_new_declarator] = STATE(2222), - [sym_identifier] = ACTIONS(5869), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5871), - [anon_sym_COMMA] = ACTIONS(5871), - [anon_sym_RPAREN] = ACTIONS(5871), - [aux_sym_preproc_if_token2] = ACTIONS(5871), - [aux_sym_preproc_else_token1] = ACTIONS(5871), - [aux_sym_preproc_elif_token1] = ACTIONS(5869), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5871), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5871), - [anon_sym_LPAREN2] = ACTIONS(5827), - [anon_sym_DASH] = ACTIONS(5869), - [anon_sym_PLUS] = ACTIONS(5869), - [anon_sym_STAR] = ACTIONS(5869), - [anon_sym_SLASH] = ACTIONS(5869), - [anon_sym_PERCENT] = ACTIONS(5869), - [anon_sym_PIPE_PIPE] = ACTIONS(5871), - [anon_sym_AMP_AMP] = ACTIONS(5871), - [anon_sym_PIPE] = ACTIONS(5869), - [anon_sym_CARET] = ACTIONS(5869), - [anon_sym_AMP] = ACTIONS(5869), - [anon_sym_EQ_EQ] = ACTIONS(5871), - [anon_sym_BANG_EQ] = ACTIONS(5871), - [anon_sym_GT] = ACTIONS(5869), - [anon_sym_GT_EQ] = ACTIONS(5871), - [anon_sym_LT_EQ] = ACTIONS(5869), - [anon_sym_LT] = ACTIONS(5869), - [anon_sym_LT_LT] = ACTIONS(5869), - [anon_sym_GT_GT] = ACTIONS(5869), - [anon_sym_SEMI] = ACTIONS(5871), - [anon_sym___attribute__] = ACTIONS(5869), - [anon_sym___attribute] = ACTIONS(5869), - [anon_sym_COLON] = ACTIONS(5871), - [anon_sym_LBRACE] = ACTIONS(1954), - [anon_sym_RBRACE] = ACTIONS(5871), - [anon_sym_LBRACK] = ACTIONS(5829), - [anon_sym_RBRACK] = ACTIONS(5871), - [anon_sym_EQ] = ACTIONS(5869), - [anon_sym_QMARK] = ACTIONS(5871), - [anon_sym_STAR_EQ] = ACTIONS(5871), - [anon_sym_SLASH_EQ] = ACTIONS(5871), - [anon_sym_PERCENT_EQ] = ACTIONS(5871), - [anon_sym_PLUS_EQ] = ACTIONS(5871), - [anon_sym_DASH_EQ] = ACTIONS(5871), - [anon_sym_LT_LT_EQ] = ACTIONS(5871), - [anon_sym_GT_GT_EQ] = ACTIONS(5871), - [anon_sym_AMP_EQ] = ACTIONS(5871), - [anon_sym_CARET_EQ] = ACTIONS(5871), - [anon_sym_PIPE_EQ] = ACTIONS(5871), - [anon_sym_and_eq] = ACTIONS(5869), - [anon_sym_or_eq] = ACTIONS(5869), - [anon_sym_xor_eq] = ACTIONS(5869), - [anon_sym_LT_EQ_GT] = ACTIONS(5871), - [anon_sym_or] = ACTIONS(5869), - [anon_sym_and] = ACTIONS(5869), - [anon_sym_bitor] = ACTIONS(5869), - [anon_sym_xor] = ACTIONS(5869), - [anon_sym_bitand] = ACTIONS(5869), - [anon_sym_not_eq] = ACTIONS(5869), - [anon_sym_DASH_DASH] = ACTIONS(5871), - [anon_sym_PLUS_PLUS] = ACTIONS(5871), - [anon_sym_DOT] = ACTIONS(5869), - [anon_sym_DOT_STAR] = ACTIONS(5871), - [anon_sym_DASH_GT] = ACTIONS(5871), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5831), - [anon_sym_decltype] = ACTIONS(5833), + [1937] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1973), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5885), + [anon_sym_COMMA] = ACTIONS(5885), + [anon_sym_RPAREN] = ACTIONS(5885), + [anon_sym_LPAREN2] = ACTIONS(5885), + [anon_sym_DASH] = ACTIONS(5887), + [anon_sym_PLUS] = ACTIONS(5887), + [anon_sym_STAR] = ACTIONS(5885), + [anon_sym_SLASH] = ACTIONS(5887), + [anon_sym_PERCENT] = ACTIONS(5885), + [anon_sym_PIPE_PIPE] = ACTIONS(5885), + [anon_sym_AMP_AMP] = ACTIONS(5885), + [anon_sym_PIPE] = ACTIONS(5887), + [anon_sym_CARET] = ACTIONS(5885), + [anon_sym_AMP] = ACTIONS(5887), + [anon_sym_EQ_EQ] = ACTIONS(5885), + [anon_sym_BANG_EQ] = ACTIONS(5885), + [anon_sym_GT] = ACTIONS(5887), + [anon_sym_GT_EQ] = ACTIONS(5885), + [anon_sym_LT_EQ] = ACTIONS(5887), + [anon_sym_LT] = ACTIONS(5887), + [anon_sym_LT_LT] = ACTIONS(5885), + [anon_sym_GT_GT] = ACTIONS(5885), + [anon_sym_SEMI] = ACTIONS(5885), + [anon_sym___extension__] = ACTIONS(5885), + [anon_sym___attribute__] = ACTIONS(5885), + [anon_sym___attribute] = ACTIONS(5887), + [anon_sym_COLON] = ACTIONS(5885), + [anon_sym_LBRACE] = ACTIONS(5885), + [anon_sym_RBRACE] = ACTIONS(5885), + [anon_sym_signed] = ACTIONS(5889), + [anon_sym_unsigned] = ACTIONS(5889), + [anon_sym_long] = ACTIONS(5889), + [anon_sym_short] = ACTIONS(5889), + [anon_sym_LBRACK] = ACTIONS(5885), + [anon_sym_RBRACK] = ACTIONS(5885), + [anon_sym_const] = ACTIONS(5887), + [anon_sym_constexpr] = ACTIONS(5885), + [anon_sym_volatile] = ACTIONS(5885), + [anon_sym_restrict] = ACTIONS(5885), + [anon_sym___restrict__] = ACTIONS(5885), + [anon_sym__Atomic] = ACTIONS(5885), + [anon_sym__Noreturn] = ACTIONS(5885), + [anon_sym_noreturn] = ACTIONS(5885), + [anon_sym__Nonnull] = ACTIONS(5885), + [anon_sym_mutable] = ACTIONS(5885), + [anon_sym_constinit] = ACTIONS(5885), + [anon_sym_consteval] = ACTIONS(5885), + [anon_sym_alignas] = ACTIONS(5885), + [anon_sym__Alignas] = ACTIONS(5885), + [anon_sym_QMARK] = ACTIONS(5885), + [anon_sym_LT_EQ_GT] = ACTIONS(5885), + [anon_sym_or] = ACTIONS(5885), + [anon_sym_and] = ACTIONS(5885), + [anon_sym_bitor] = ACTIONS(5885), + [anon_sym_xor] = ACTIONS(5885), + [anon_sym_bitand] = ACTIONS(5885), + [anon_sym_not_eq] = ACTIONS(5885), + [anon_sym_DASH_DASH] = ACTIONS(5885), + [anon_sym_PLUS_PLUS] = ACTIONS(5885), + [anon_sym_DOT] = ACTIONS(5887), + [anon_sym_DOT_STAR] = ACTIONS(5885), + [anon_sym_DASH_GT] = ACTIONS(5885), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5885), + [anon_sym_decltype] = ACTIONS(5885), + [anon_sym_final] = ACTIONS(5885), + [anon_sym_override] = ACTIONS(5885), + [anon_sym_requires] = ACTIONS(5885), }, - [1906] = { - [sym_identifier] = ACTIONS(5617), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5619), - [anon_sym_COMMA] = ACTIONS(5619), - [anon_sym_RPAREN] = ACTIONS(5619), - [anon_sym_LPAREN2] = ACTIONS(5619), - [anon_sym_TILDE] = ACTIONS(5619), - [anon_sym_STAR] = ACTIONS(5619), - [anon_sym_PIPE_PIPE] = ACTIONS(5619), - [anon_sym_AMP_AMP] = ACTIONS(5619), - [anon_sym_AMP] = ACTIONS(5617), - [anon_sym_SEMI] = ACTIONS(5619), - [anon_sym___extension__] = ACTIONS(5617), - [anon_sym_virtual] = ACTIONS(5617), - [anon_sym_extern] = ACTIONS(5617), - [anon_sym___attribute__] = ACTIONS(5617), - [anon_sym___attribute] = ACTIONS(5617), - [anon_sym_COLON] = ACTIONS(5617), - [anon_sym_COLON_COLON] = ACTIONS(5454), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5619), - [anon_sym___declspec] = ACTIONS(5617), - [anon_sym___based] = ACTIONS(5617), - [anon_sym___cdecl] = ACTIONS(5617), - [anon_sym___clrcall] = ACTIONS(5617), - [anon_sym___stdcall] = ACTIONS(5617), - [anon_sym___fastcall] = ACTIONS(5617), - [anon_sym___thiscall] = ACTIONS(5617), - [anon_sym___vectorcall] = ACTIONS(5617), - [anon_sym_LBRACE] = ACTIONS(5619), - [anon_sym_LBRACK] = ACTIONS(5617), - [anon_sym_static] = ACTIONS(5617), - [anon_sym_EQ] = ACTIONS(5619), - [anon_sym_register] = ACTIONS(5617), - [anon_sym_inline] = ACTIONS(5617), - [anon_sym___inline] = ACTIONS(5617), - [anon_sym___inline__] = ACTIONS(5617), - [anon_sym___forceinline] = ACTIONS(5617), - [anon_sym_thread_local] = ACTIONS(5617), - [anon_sym___thread] = ACTIONS(5617), - [anon_sym_const] = ACTIONS(5617), - [anon_sym_constexpr] = ACTIONS(5617), - [anon_sym_volatile] = ACTIONS(5617), - [anon_sym_restrict] = ACTIONS(5617), - [anon_sym___restrict__] = ACTIONS(5617), - [anon_sym__Atomic] = ACTIONS(5617), - [anon_sym__Noreturn] = ACTIONS(5617), - [anon_sym_noreturn] = ACTIONS(5617), - [anon_sym__Nonnull] = ACTIONS(5617), - [anon_sym_mutable] = ACTIONS(5617), - [anon_sym_constinit] = ACTIONS(5617), - [anon_sym_consteval] = ACTIONS(5617), - [anon_sym_alignas] = ACTIONS(5617), - [anon_sym__Alignas] = ACTIONS(5617), - [anon_sym_or] = ACTIONS(5617), - [anon_sym_and] = ACTIONS(5617), - [anon_sym_asm] = ACTIONS(5617), - [anon_sym___asm__] = ACTIONS(5617), - [anon_sym___asm] = ACTIONS(5617), - [anon_sym_DASH_GT] = ACTIONS(5619), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5617), - [anon_sym_decltype] = ACTIONS(5617), - [anon_sym_final] = ACTIONS(5617), - [anon_sym_override] = ACTIONS(5617), - [anon_sym_template] = ACTIONS(5617), - [anon_sym_GT2] = ACTIONS(5619), - [anon_sym_operator] = ACTIONS(5617), - [anon_sym_try] = ACTIONS(5617), - [anon_sym_noexcept] = ACTIONS(5617), - [anon_sym_throw] = ACTIONS(5617), - [anon_sym_requires] = ACTIONS(5617), + [1938] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1688), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5891), + [anon_sym_COMMA] = ACTIONS(5891), + [anon_sym_RPAREN] = ACTIONS(5891), + [anon_sym_LPAREN2] = ACTIONS(5891), + [anon_sym_DASH] = ACTIONS(5893), + [anon_sym_PLUS] = ACTIONS(5893), + [anon_sym_STAR] = ACTIONS(5891), + [anon_sym_SLASH] = ACTIONS(5893), + [anon_sym_PERCENT] = ACTIONS(5891), + [anon_sym_PIPE_PIPE] = ACTIONS(5891), + [anon_sym_AMP_AMP] = ACTIONS(5891), + [anon_sym_PIPE] = ACTIONS(5893), + [anon_sym_CARET] = ACTIONS(5891), + [anon_sym_AMP] = ACTIONS(5893), + [anon_sym_EQ_EQ] = ACTIONS(5891), + [anon_sym_BANG_EQ] = ACTIONS(5891), + [anon_sym_GT] = ACTIONS(5893), + [anon_sym_GT_EQ] = ACTIONS(5891), + [anon_sym_LT_EQ] = ACTIONS(5893), + [anon_sym_LT] = ACTIONS(5893), + [anon_sym_LT_LT] = ACTIONS(5891), + [anon_sym_GT_GT] = ACTIONS(5891), + [anon_sym_SEMI] = ACTIONS(5891), + [anon_sym___extension__] = ACTIONS(5891), + [anon_sym___attribute__] = ACTIONS(5891), + [anon_sym___attribute] = ACTIONS(5893), + [anon_sym_COLON] = ACTIONS(5891), + [anon_sym_LBRACE] = ACTIONS(5891), + [anon_sym_RBRACE] = ACTIONS(5891), + [anon_sym_signed] = ACTIONS(5895), + [anon_sym_unsigned] = ACTIONS(5895), + [anon_sym_long] = ACTIONS(5895), + [anon_sym_short] = ACTIONS(5895), + [anon_sym_LBRACK] = ACTIONS(5891), + [anon_sym_RBRACK] = ACTIONS(5891), + [anon_sym_const] = ACTIONS(5893), + [anon_sym_constexpr] = ACTIONS(5891), + [anon_sym_volatile] = ACTIONS(5891), + [anon_sym_restrict] = ACTIONS(5891), + [anon_sym___restrict__] = ACTIONS(5891), + [anon_sym__Atomic] = ACTIONS(5891), + [anon_sym__Noreturn] = ACTIONS(5891), + [anon_sym_noreturn] = ACTIONS(5891), + [anon_sym__Nonnull] = ACTIONS(5891), + [anon_sym_mutable] = ACTIONS(5891), + [anon_sym_constinit] = ACTIONS(5891), + [anon_sym_consteval] = ACTIONS(5891), + [anon_sym_alignas] = ACTIONS(5891), + [anon_sym__Alignas] = ACTIONS(5891), + [anon_sym_QMARK] = ACTIONS(5891), + [anon_sym_LT_EQ_GT] = ACTIONS(5891), + [anon_sym_or] = ACTIONS(5891), + [anon_sym_and] = ACTIONS(5891), + [anon_sym_bitor] = ACTIONS(5891), + [anon_sym_xor] = ACTIONS(5891), + [anon_sym_bitand] = ACTIONS(5891), + [anon_sym_not_eq] = ACTIONS(5891), + [anon_sym_DASH_DASH] = ACTIONS(5891), + [anon_sym_PLUS_PLUS] = ACTIONS(5891), + [anon_sym_DOT] = ACTIONS(5893), + [anon_sym_DOT_STAR] = ACTIONS(5891), + [anon_sym_DASH_GT] = ACTIONS(5891), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5891), + [anon_sym_decltype] = ACTIONS(5891), + [anon_sym_final] = ACTIONS(5891), + [anon_sym_override] = ACTIONS(5891), + [anon_sym_requires] = ACTIONS(5891), }, - [1907] = { + [1939] = { [sym_identifier] = ACTIONS(1940), + [aux_sym_preproc_def_token1] = ACTIONS(1940), + [aux_sym_preproc_if_token1] = ACTIONS(1940), + [aux_sym_preproc_if_token2] = ACTIONS(1940), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1940), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1940), + [sym_preproc_directive] = ACTIONS(1940), [anon_sym_LPAREN2] = ACTIONS(1938), [anon_sym_TILDE] = ACTIONS(1938), [anon_sym_STAR] = ACTIONS(1938), - [anon_sym_PIPE_PIPE] = ACTIONS(1938), [anon_sym_AMP_AMP] = ACTIONS(1938), [anon_sym_AMP] = ACTIONS(1940), + [anon_sym_SEMI] = ACTIONS(1938), [anon_sym___extension__] = ACTIONS(1940), + [anon_sym_typedef] = ACTIONS(1940), [anon_sym_virtual] = ACTIONS(1940), [anon_sym_extern] = ACTIONS(1940), [anon_sym___attribute__] = ACTIONS(1940), @@ -262303,13 +266219,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_LBRACK] = ACTIONS(1938), [anon_sym___declspec] = ACTIONS(1940), [anon_sym___based] = ACTIONS(1940), - [anon_sym___cdecl] = ACTIONS(1940), - [anon_sym___clrcall] = ACTIONS(1940), - [anon_sym___stdcall] = ACTIONS(1940), - [anon_sym___fastcall] = ACTIONS(1940), - [anon_sym___thiscall] = ACTIONS(1940), - [anon_sym___vectorcall] = ACTIONS(1940), - [anon_sym_LBRACE] = ACTIONS(1938), [anon_sym_signed] = ACTIONS(1940), [anon_sym_unsigned] = ACTIONS(1940), [anon_sym_long] = ACTIONS(1940), @@ -262342,385 +266251,663 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(1940), [anon_sym_struct] = ACTIONS(1940), [anon_sym_union] = ACTIONS(1940), - [anon_sym_or] = ACTIONS(1940), - [anon_sym_and] = ACTIONS(1940), - [anon_sym_DASH_GT] = ACTIONS(1938), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(1940), [anon_sym_decltype] = ACTIONS(1940), [anon_sym_explicit] = ACTIONS(1940), [anon_sym_typename] = ACTIONS(1940), + [anon_sym_private] = ACTIONS(1940), [anon_sym_template] = ACTIONS(1940), [anon_sym_operator] = ACTIONS(1940), [anon_sym_friend] = ACTIONS(1940), - [anon_sym_noexcept] = ACTIONS(1940), - [anon_sym_throw] = ACTIONS(1940), - [anon_sym_concept] = ACTIONS(1940), + [anon_sym_public] = ACTIONS(1940), + [anon_sym_protected] = ACTIONS(1940), + [anon_sym_static_assert] = ACTIONS(1940), + [anon_sym_catch] = ACTIONS(1940), }, - [1908] = { - [sym_identifier] = ACTIONS(5617), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5619), - [anon_sym_COMMA] = ACTIONS(5619), - [anon_sym_RPAREN] = ACTIONS(5619), - [anon_sym_LPAREN2] = ACTIONS(5619), - [anon_sym_TILDE] = ACTIONS(5619), - [anon_sym_STAR] = ACTIONS(5619), - [anon_sym_PIPE_PIPE] = ACTIONS(5619), - [anon_sym_AMP_AMP] = ACTIONS(5619), - [anon_sym_AMP] = ACTIONS(5617), - [anon_sym_SEMI] = ACTIONS(5619), - [anon_sym___extension__] = ACTIONS(5617), - [anon_sym_virtual] = ACTIONS(5617), - [anon_sym_extern] = ACTIONS(5617), - [anon_sym___attribute__] = ACTIONS(5617), - [anon_sym___attribute] = ACTIONS(5617), - [anon_sym_COLON] = ACTIONS(5617), - [anon_sym_COLON_COLON] = ACTIONS(5454), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5619), - [anon_sym___declspec] = ACTIONS(5617), - [anon_sym___based] = ACTIONS(5617), - [anon_sym___cdecl] = ACTIONS(5617), - [anon_sym___clrcall] = ACTIONS(5617), - [anon_sym___stdcall] = ACTIONS(5617), - [anon_sym___fastcall] = ACTIONS(5617), - [anon_sym___thiscall] = ACTIONS(5617), - [anon_sym___vectorcall] = ACTIONS(5617), - [anon_sym_LBRACE] = ACTIONS(5619), - [anon_sym_LBRACK] = ACTIONS(5617), - [anon_sym_static] = ACTIONS(5617), - [anon_sym_EQ] = ACTIONS(5619), - [anon_sym_register] = ACTIONS(5617), - [anon_sym_inline] = ACTIONS(5617), - [anon_sym___inline] = ACTIONS(5617), - [anon_sym___inline__] = ACTIONS(5617), - [anon_sym___forceinline] = ACTIONS(5617), - [anon_sym_thread_local] = ACTIONS(5617), - [anon_sym___thread] = ACTIONS(5617), - [anon_sym_const] = ACTIONS(5617), - [anon_sym_constexpr] = ACTIONS(5617), - [anon_sym_volatile] = ACTIONS(5617), - [anon_sym_restrict] = ACTIONS(5617), - [anon_sym___restrict__] = ACTIONS(5617), - [anon_sym__Atomic] = ACTIONS(5617), - [anon_sym__Noreturn] = ACTIONS(5617), - [anon_sym_noreturn] = ACTIONS(5617), - [anon_sym__Nonnull] = ACTIONS(5617), - [anon_sym_mutable] = ACTIONS(5617), - [anon_sym_constinit] = ACTIONS(5617), - [anon_sym_consteval] = ACTIONS(5617), - [anon_sym_alignas] = ACTIONS(5617), - [anon_sym__Alignas] = ACTIONS(5617), - [anon_sym_or] = ACTIONS(5617), - [anon_sym_and] = ACTIONS(5617), - [anon_sym_asm] = ACTIONS(5617), - [anon_sym___asm__] = ACTIONS(5617), - [anon_sym___asm] = ACTIONS(5617), - [anon_sym_DASH_GT] = ACTIONS(5619), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5617), - [anon_sym_decltype] = ACTIONS(5617), - [anon_sym_final] = ACTIONS(5617), - [anon_sym_override] = ACTIONS(5617), - [anon_sym_template] = ACTIONS(5617), - [anon_sym_GT2] = ACTIONS(5619), - [anon_sym_operator] = ACTIONS(5617), - [anon_sym_try] = ACTIONS(5617), - [anon_sym_noexcept] = ACTIONS(5617), - [anon_sym_throw] = ACTIONS(5617), - [anon_sym_requires] = ACTIONS(5617), + [1940] = { + [sym_type_qualifier] = STATE(1940), + [sym_alignas_qualifier] = STATE(2313), + [aux_sym__type_definition_type_repeat1] = STATE(1940), + [sym_identifier] = ACTIONS(5055), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5057), + [anon_sym_COMMA] = ACTIONS(5057), + [anon_sym_LPAREN2] = ACTIONS(5057), + [anon_sym_DASH] = ACTIONS(5055), + [anon_sym_PLUS] = ACTIONS(5055), + [anon_sym_STAR] = ACTIONS(5057), + [anon_sym_SLASH] = ACTIONS(5055), + [anon_sym_PERCENT] = ACTIONS(5057), + [anon_sym_PIPE_PIPE] = ACTIONS(5057), + [anon_sym_AMP_AMP] = ACTIONS(5057), + [anon_sym_PIPE] = ACTIONS(5055), + [anon_sym_CARET] = ACTIONS(5057), + [anon_sym_AMP] = ACTIONS(5055), + [anon_sym_EQ_EQ] = ACTIONS(5057), + [anon_sym_BANG_EQ] = ACTIONS(5057), + [anon_sym_GT] = ACTIONS(5055), + [anon_sym_GT_EQ] = ACTIONS(5055), + [anon_sym_LT_EQ] = ACTIONS(5055), + [anon_sym_LT] = ACTIONS(5055), + [anon_sym_LT_LT] = ACTIONS(5057), + [anon_sym_GT_GT] = ACTIONS(5055), + [anon_sym___extension__] = ACTIONS(5897), + [anon_sym___attribute__] = ACTIONS(5055), + [anon_sym___attribute] = ACTIONS(5055), + [anon_sym_LBRACE] = ACTIONS(5057), + [anon_sym_signed] = ACTIONS(5055), + [anon_sym_unsigned] = ACTIONS(5055), + [anon_sym_long] = ACTIONS(5055), + [anon_sym_short] = ACTIONS(5055), + [anon_sym_LBRACK] = ACTIONS(5057), + [anon_sym_const] = ACTIONS(5897), + [anon_sym_constexpr] = ACTIONS(5897), + [anon_sym_volatile] = ACTIONS(5897), + [anon_sym_restrict] = ACTIONS(5897), + [anon_sym___restrict__] = ACTIONS(5897), + [anon_sym__Atomic] = ACTIONS(5897), + [anon_sym__Noreturn] = ACTIONS(5897), + [anon_sym_noreturn] = ACTIONS(5897), + [anon_sym__Nonnull] = ACTIONS(5897), + [anon_sym_mutable] = ACTIONS(5897), + [anon_sym_constinit] = ACTIONS(5897), + [anon_sym_consteval] = ACTIONS(5897), + [anon_sym_alignas] = ACTIONS(5900), + [anon_sym__Alignas] = ACTIONS(5900), + [sym_primitive_type] = ACTIONS(5055), + [anon_sym_QMARK] = ACTIONS(5057), + [anon_sym_LT_EQ_GT] = ACTIONS(5057), + [anon_sym_or] = ACTIONS(5055), + [anon_sym_and] = ACTIONS(5055), + [anon_sym_bitor] = ACTIONS(5055), + [anon_sym_xor] = ACTIONS(5055), + [anon_sym_bitand] = ACTIONS(5055), + [anon_sym_not_eq] = ACTIONS(5055), + [anon_sym_DASH_DASH] = ACTIONS(5057), + [anon_sym_PLUS_PLUS] = ACTIONS(5057), + [anon_sym_DOT] = ACTIONS(5055), + [anon_sym_DOT_STAR] = ACTIONS(5057), + [anon_sym_DASH_GT] = ACTIONS(5057), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5055), + [anon_sym_decltype] = ACTIONS(5055), + [anon_sym_final] = ACTIONS(5055), + [anon_sym_override] = ACTIONS(5055), + [anon_sym_GT2] = ACTIONS(5057), + [anon_sym_requires] = ACTIONS(5055), }, - [1909] = { - [sym_identifier] = ACTIONS(5617), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5619), - [anon_sym_COMMA] = ACTIONS(5619), - [anon_sym_RPAREN] = ACTIONS(5619), - [anon_sym_LPAREN2] = ACTIONS(5619), - [anon_sym_TILDE] = ACTIONS(5619), - [anon_sym_STAR] = ACTIONS(5619), - [anon_sym_PIPE_PIPE] = ACTIONS(5619), - [anon_sym_AMP_AMP] = ACTIONS(5619), - [anon_sym_AMP] = ACTIONS(5617), - [anon_sym_SEMI] = ACTIONS(5619), - [anon_sym___extension__] = ACTIONS(5617), - [anon_sym_virtual] = ACTIONS(5617), - [anon_sym_extern] = ACTIONS(5617), - [anon_sym___attribute__] = ACTIONS(5617), - [anon_sym___attribute] = ACTIONS(5617), - [anon_sym_COLON] = ACTIONS(5617), - [anon_sym_COLON_COLON] = ACTIONS(5619), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5619), - [anon_sym___declspec] = ACTIONS(5617), - [anon_sym___based] = ACTIONS(5617), - [anon_sym___cdecl] = ACTIONS(5617), - [anon_sym___clrcall] = ACTIONS(5617), - [anon_sym___stdcall] = ACTIONS(5617), - [anon_sym___fastcall] = ACTIONS(5617), - [anon_sym___thiscall] = ACTIONS(5617), - [anon_sym___vectorcall] = ACTIONS(5617), - [anon_sym_LBRACE] = ACTIONS(5619), - [anon_sym_LBRACK] = ACTIONS(5617), - [anon_sym_static] = ACTIONS(5617), - [anon_sym_EQ] = ACTIONS(5619), - [anon_sym_register] = ACTIONS(5617), - [anon_sym_inline] = ACTIONS(5617), - [anon_sym___inline] = ACTIONS(5617), - [anon_sym___inline__] = ACTIONS(5617), - [anon_sym___forceinline] = ACTIONS(5617), - [anon_sym_thread_local] = ACTIONS(5617), - [anon_sym___thread] = ACTIONS(5617), - [anon_sym_const] = ACTIONS(5617), - [anon_sym_constexpr] = ACTIONS(5617), - [anon_sym_volatile] = ACTIONS(5617), - [anon_sym_restrict] = ACTIONS(5617), - [anon_sym___restrict__] = ACTIONS(5617), - [anon_sym__Atomic] = ACTIONS(5617), - [anon_sym__Noreturn] = ACTIONS(5617), - [anon_sym_noreturn] = ACTIONS(5617), - [anon_sym__Nonnull] = ACTIONS(5617), - [anon_sym_mutable] = ACTIONS(5617), - [anon_sym_constinit] = ACTIONS(5617), - [anon_sym_consteval] = ACTIONS(5617), - [anon_sym_alignas] = ACTIONS(5617), - [anon_sym__Alignas] = ACTIONS(5617), - [anon_sym_or] = ACTIONS(5617), - [anon_sym_and] = ACTIONS(5617), - [anon_sym_asm] = ACTIONS(5617), - [anon_sym___asm__] = ACTIONS(5617), - [anon_sym___asm] = ACTIONS(5617), - [anon_sym_DASH_GT] = ACTIONS(5619), + [1941] = { + [sym_identifier] = ACTIONS(5903), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5905), + [anon_sym_COMMA] = ACTIONS(5905), + [anon_sym_RPAREN] = ACTIONS(5905), + [aux_sym_preproc_if_token2] = ACTIONS(5905), + [aux_sym_preproc_else_token1] = ACTIONS(5905), + [aux_sym_preproc_elif_token1] = ACTIONS(5903), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5905), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5905), + [anon_sym_LPAREN2] = ACTIONS(5905), + [anon_sym_DASH] = ACTIONS(5903), + [anon_sym_PLUS] = ACTIONS(5903), + [anon_sym_STAR] = ACTIONS(5903), + [anon_sym_SLASH] = ACTIONS(5903), + [anon_sym_PERCENT] = ACTIONS(5903), + [anon_sym_PIPE_PIPE] = ACTIONS(5905), + [anon_sym_AMP_AMP] = ACTIONS(5905), + [anon_sym_PIPE] = ACTIONS(5903), + [anon_sym_CARET] = ACTIONS(5903), + [anon_sym_AMP] = ACTIONS(5903), + [anon_sym_EQ_EQ] = ACTIONS(5905), + [anon_sym_BANG_EQ] = ACTIONS(5905), + [anon_sym_GT] = ACTIONS(5903), + [anon_sym_GT_EQ] = ACTIONS(5905), + [anon_sym_LT_EQ] = ACTIONS(5903), + [anon_sym_LT] = ACTIONS(5903), + [anon_sym_LT_LT] = ACTIONS(5903), + [anon_sym_GT_GT] = ACTIONS(5903), + [anon_sym_SEMI] = ACTIONS(5905), + [anon_sym___attribute__] = ACTIONS(5903), + [anon_sym___attribute] = ACTIONS(5903), + [anon_sym_COLON] = ACTIONS(5905), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5905), + [anon_sym_LBRACE] = ACTIONS(5905), + [anon_sym_RBRACE] = ACTIONS(5905), + [anon_sym_LBRACK] = ACTIONS(5903), + [anon_sym_RBRACK] = ACTIONS(5905), + [anon_sym_EQ] = ACTIONS(5903), + [anon_sym_QMARK] = ACTIONS(5905), + [anon_sym_STAR_EQ] = ACTIONS(5905), + [anon_sym_SLASH_EQ] = ACTIONS(5905), + [anon_sym_PERCENT_EQ] = ACTIONS(5905), + [anon_sym_PLUS_EQ] = ACTIONS(5905), + [anon_sym_DASH_EQ] = ACTIONS(5905), + [anon_sym_LT_LT_EQ] = ACTIONS(5905), + [anon_sym_GT_GT_EQ] = ACTIONS(5905), + [anon_sym_AMP_EQ] = ACTIONS(5905), + [anon_sym_CARET_EQ] = ACTIONS(5905), + [anon_sym_PIPE_EQ] = ACTIONS(5905), + [anon_sym_and_eq] = ACTIONS(5903), + [anon_sym_or_eq] = ACTIONS(5903), + [anon_sym_xor_eq] = ACTIONS(5903), + [anon_sym_LT_EQ_GT] = ACTIONS(5905), + [anon_sym_or] = ACTIONS(5903), + [anon_sym_and] = ACTIONS(5903), + [anon_sym_bitor] = ACTIONS(5903), + [anon_sym_xor] = ACTIONS(5903), + [anon_sym_bitand] = ACTIONS(5903), + [anon_sym_not_eq] = ACTIONS(5903), + [anon_sym_DASH_DASH] = ACTIONS(5905), + [anon_sym_PLUS_PLUS] = ACTIONS(5905), + [anon_sym_asm] = ACTIONS(5903), + [anon_sym___asm__] = ACTIONS(5903), + [anon_sym___asm] = ACTIONS(5903), + [anon_sym_DOT] = ACTIONS(5903), + [anon_sym_DOT_STAR] = ACTIONS(5905), + [anon_sym_DASH_GT] = ACTIONS(5905), + [sym_comment] = ACTIONS(3), + [anon_sym_try] = ACTIONS(5903), + }, + [1942] = { + [sym_identifier] = ACTIONS(5907), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5909), + [anon_sym_COMMA] = ACTIONS(5909), + [anon_sym_RPAREN] = ACTIONS(5909), + [aux_sym_preproc_if_token2] = ACTIONS(5909), + [aux_sym_preproc_else_token1] = ACTIONS(5909), + [aux_sym_preproc_elif_token1] = ACTIONS(5907), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5909), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5909), + [anon_sym_LPAREN2] = ACTIONS(5909), + [anon_sym_DASH] = ACTIONS(5907), + [anon_sym_PLUS] = ACTIONS(5907), + [anon_sym_STAR] = ACTIONS(5907), + [anon_sym_SLASH] = ACTIONS(5907), + [anon_sym_PERCENT] = ACTIONS(5907), + [anon_sym_PIPE_PIPE] = ACTIONS(5909), + [anon_sym_AMP_AMP] = ACTIONS(5909), + [anon_sym_PIPE] = ACTIONS(5907), + [anon_sym_CARET] = ACTIONS(5907), + [anon_sym_AMP] = ACTIONS(5907), + [anon_sym_EQ_EQ] = ACTIONS(5909), + [anon_sym_BANG_EQ] = ACTIONS(5909), + [anon_sym_GT] = ACTIONS(5907), + [anon_sym_GT_EQ] = ACTIONS(5909), + [anon_sym_LT_EQ] = ACTIONS(5907), + [anon_sym_LT] = ACTIONS(5907), + [anon_sym_LT_LT] = ACTIONS(5907), + [anon_sym_GT_GT] = ACTIONS(5907), + [anon_sym_SEMI] = ACTIONS(5909), + [anon_sym___attribute__] = ACTIONS(5907), + [anon_sym___attribute] = ACTIONS(5907), + [anon_sym_COLON] = ACTIONS(5909), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5909), + [anon_sym_LBRACE] = ACTIONS(5909), + [anon_sym_RBRACE] = ACTIONS(5909), + [anon_sym_LBRACK] = ACTIONS(5907), + [anon_sym_RBRACK] = ACTIONS(5909), + [anon_sym_EQ] = ACTIONS(5907), + [anon_sym_QMARK] = ACTIONS(5909), + [anon_sym_STAR_EQ] = ACTIONS(5909), + [anon_sym_SLASH_EQ] = ACTIONS(5909), + [anon_sym_PERCENT_EQ] = ACTIONS(5909), + [anon_sym_PLUS_EQ] = ACTIONS(5909), + [anon_sym_DASH_EQ] = ACTIONS(5909), + [anon_sym_LT_LT_EQ] = ACTIONS(5909), + [anon_sym_GT_GT_EQ] = ACTIONS(5909), + [anon_sym_AMP_EQ] = ACTIONS(5909), + [anon_sym_CARET_EQ] = ACTIONS(5909), + [anon_sym_PIPE_EQ] = ACTIONS(5909), + [anon_sym_and_eq] = ACTIONS(5907), + [anon_sym_or_eq] = ACTIONS(5907), + [anon_sym_xor_eq] = ACTIONS(5907), + [anon_sym_LT_EQ_GT] = ACTIONS(5909), + [anon_sym_or] = ACTIONS(5907), + [anon_sym_and] = ACTIONS(5907), + [anon_sym_bitor] = ACTIONS(5907), + [anon_sym_xor] = ACTIONS(5907), + [anon_sym_bitand] = ACTIONS(5907), + [anon_sym_not_eq] = ACTIONS(5907), + [anon_sym_DASH_DASH] = ACTIONS(5909), + [anon_sym_PLUS_PLUS] = ACTIONS(5909), + [anon_sym_asm] = ACTIONS(5907), + [anon_sym___asm__] = ACTIONS(5907), + [anon_sym___asm] = ACTIONS(5907), + [anon_sym_DOT] = ACTIONS(5907), + [anon_sym_DOT_STAR] = ACTIONS(5909), + [anon_sym_DASH_GT] = ACTIONS(5909), + [sym_comment] = ACTIONS(3), + [anon_sym_try] = ACTIONS(5907), + }, + [1943] = { + [sym_identifier] = ACTIONS(5521), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5523), + [anon_sym_COMMA] = ACTIONS(5523), + [anon_sym_RPAREN] = ACTIONS(5523), + [aux_sym_preproc_if_token2] = ACTIONS(5523), + [aux_sym_preproc_else_token1] = ACTIONS(5523), + [aux_sym_preproc_elif_token1] = ACTIONS(5521), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5523), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5523), + [anon_sym_LPAREN2] = ACTIONS(5523), + [anon_sym_DASH] = ACTIONS(5521), + [anon_sym_PLUS] = ACTIONS(5521), + [anon_sym_STAR] = ACTIONS(5521), + [anon_sym_SLASH] = ACTIONS(5521), + [anon_sym_PERCENT] = ACTIONS(5521), + [anon_sym_PIPE_PIPE] = ACTIONS(5523), + [anon_sym_AMP_AMP] = ACTIONS(5523), + [anon_sym_PIPE] = ACTIONS(5521), + [anon_sym_CARET] = ACTIONS(5521), + [anon_sym_AMP] = ACTIONS(5521), + [anon_sym_EQ_EQ] = ACTIONS(5523), + [anon_sym_BANG_EQ] = ACTIONS(5523), + [anon_sym_GT] = ACTIONS(5521), + [anon_sym_GT_EQ] = ACTIONS(5523), + [anon_sym_LT_EQ] = ACTIONS(5521), + [anon_sym_LT] = ACTIONS(5521), + [anon_sym_LT_LT] = ACTIONS(5521), + [anon_sym_GT_GT] = ACTIONS(5521), + [anon_sym_SEMI] = ACTIONS(5523), + [anon_sym___attribute__] = ACTIONS(5521), + [anon_sym___attribute] = ACTIONS(5521), + [anon_sym_COLON] = ACTIONS(5521), + [anon_sym_COLON_COLON] = ACTIONS(5519), + [anon_sym_LBRACE] = ACTIONS(5523), + [anon_sym_RBRACE] = ACTIONS(5523), + [anon_sym_LBRACK] = ACTIONS(5523), + [anon_sym_RBRACK] = ACTIONS(5523), + [anon_sym_EQ] = ACTIONS(5521), + [anon_sym_QMARK] = ACTIONS(5523), + [anon_sym_STAR_EQ] = ACTIONS(5523), + [anon_sym_SLASH_EQ] = ACTIONS(5523), + [anon_sym_PERCENT_EQ] = ACTIONS(5523), + [anon_sym_PLUS_EQ] = ACTIONS(5523), + [anon_sym_DASH_EQ] = ACTIONS(5523), + [anon_sym_LT_LT_EQ] = ACTIONS(5523), + [anon_sym_GT_GT_EQ] = ACTIONS(5523), + [anon_sym_AMP_EQ] = ACTIONS(5523), + [anon_sym_CARET_EQ] = ACTIONS(5523), + [anon_sym_PIPE_EQ] = ACTIONS(5523), + [anon_sym_and_eq] = ACTIONS(5521), + [anon_sym_or_eq] = ACTIONS(5521), + [anon_sym_xor_eq] = ACTIONS(5521), + [anon_sym_LT_EQ_GT] = ACTIONS(5523), + [anon_sym_or] = ACTIONS(5521), + [anon_sym_and] = ACTIONS(5521), + [anon_sym_bitor] = ACTIONS(5521), + [anon_sym_xor] = ACTIONS(5521), + [anon_sym_bitand] = ACTIONS(5521), + [anon_sym_not_eq] = ACTIONS(5521), + [anon_sym_DASH_DASH] = ACTIONS(5523), + [anon_sym_PLUS_PLUS] = ACTIONS(5523), + [anon_sym_DOT] = ACTIONS(5521), + [anon_sym_DOT_STAR] = ACTIONS(5523), + [anon_sym_DASH_GT] = ACTIONS(5523), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5617), - [anon_sym_decltype] = ACTIONS(5617), - [anon_sym_final] = ACTIONS(5617), - [anon_sym_override] = ACTIONS(5617), - [anon_sym_template] = ACTIONS(5617), - [anon_sym_GT2] = ACTIONS(5619), - [anon_sym_operator] = ACTIONS(5617), - [anon_sym_try] = ACTIONS(5617), - [anon_sym_noexcept] = ACTIONS(5617), - [anon_sym_throw] = ACTIONS(5617), - [anon_sym_requires] = ACTIONS(5617), + [sym_auto] = ACTIONS(5521), + [anon_sym_decltype] = ACTIONS(5521), + [anon_sym_final] = ACTIONS(5521), + [anon_sym_override] = ACTIONS(5521), }, - [1910] = { - [sym_identifier] = ACTIONS(5605), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5607), - [anon_sym_COMMA] = ACTIONS(5607), - [anon_sym_RPAREN] = ACTIONS(5607), - [anon_sym_LPAREN2] = ACTIONS(5607), - [anon_sym_TILDE] = ACTIONS(5607), - [anon_sym_STAR] = ACTIONS(5607), - [anon_sym_PIPE_PIPE] = ACTIONS(5607), - [anon_sym_AMP_AMP] = ACTIONS(5607), - [anon_sym_AMP] = ACTIONS(5605), - [anon_sym_SEMI] = ACTIONS(5607), - [anon_sym___extension__] = ACTIONS(5605), - [anon_sym_virtual] = ACTIONS(5605), - [anon_sym_extern] = ACTIONS(5605), - [anon_sym___attribute__] = ACTIONS(5605), - [anon_sym___attribute] = ACTIONS(5605), - [anon_sym_COLON] = ACTIONS(5605), - [anon_sym_COLON_COLON] = ACTIONS(5607), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5607), - [anon_sym___declspec] = ACTIONS(5605), - [anon_sym___based] = ACTIONS(5605), - [anon_sym___cdecl] = ACTIONS(5605), - [anon_sym___clrcall] = ACTIONS(5605), - [anon_sym___stdcall] = ACTIONS(5605), - [anon_sym___fastcall] = ACTIONS(5605), - [anon_sym___thiscall] = ACTIONS(5605), - [anon_sym___vectorcall] = ACTIONS(5605), - [anon_sym_LBRACE] = ACTIONS(5607), - [anon_sym_LBRACK] = ACTIONS(5605), - [anon_sym_static] = ACTIONS(5605), - [anon_sym_EQ] = ACTIONS(5607), - [anon_sym_register] = ACTIONS(5605), - [anon_sym_inline] = ACTIONS(5605), - [anon_sym___inline] = ACTIONS(5605), - [anon_sym___inline__] = ACTIONS(5605), - [anon_sym___forceinline] = ACTIONS(5605), - [anon_sym_thread_local] = ACTIONS(5605), - [anon_sym___thread] = ACTIONS(5605), - [anon_sym_const] = ACTIONS(5605), - [anon_sym_constexpr] = ACTIONS(5605), - [anon_sym_volatile] = ACTIONS(5605), - [anon_sym_restrict] = ACTIONS(5605), - [anon_sym___restrict__] = ACTIONS(5605), - [anon_sym__Atomic] = ACTIONS(5605), - [anon_sym__Noreturn] = ACTIONS(5605), - [anon_sym_noreturn] = ACTIONS(5605), - [anon_sym__Nonnull] = ACTIONS(5605), - [anon_sym_mutable] = ACTIONS(5605), - [anon_sym_constinit] = ACTIONS(5605), - [anon_sym_consteval] = ACTIONS(5605), - [anon_sym_alignas] = ACTIONS(5605), - [anon_sym__Alignas] = ACTIONS(5605), - [anon_sym_or] = ACTIONS(5605), - [anon_sym_and] = ACTIONS(5605), - [anon_sym_asm] = ACTIONS(5605), - [anon_sym___asm__] = ACTIONS(5605), - [anon_sym___asm] = ACTIONS(5605), - [anon_sym_DASH_GT] = ACTIONS(5607), + [1944] = { + [sym_identifier] = ACTIONS(5541), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5543), + [anon_sym_COMMA] = ACTIONS(5543), + [anon_sym_RPAREN] = ACTIONS(5543), + [aux_sym_preproc_if_token2] = ACTIONS(5543), + [aux_sym_preproc_else_token1] = ACTIONS(5543), + [aux_sym_preproc_elif_token1] = ACTIONS(5541), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5543), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5543), + [anon_sym_LPAREN2] = ACTIONS(5543), + [anon_sym_DASH] = ACTIONS(5541), + [anon_sym_PLUS] = ACTIONS(5541), + [anon_sym_STAR] = ACTIONS(5541), + [anon_sym_SLASH] = ACTIONS(5541), + [anon_sym_PERCENT] = ACTIONS(5541), + [anon_sym_PIPE_PIPE] = ACTIONS(5543), + [anon_sym_AMP_AMP] = ACTIONS(5543), + [anon_sym_PIPE] = ACTIONS(5541), + [anon_sym_CARET] = ACTIONS(5541), + [anon_sym_AMP] = ACTIONS(5541), + [anon_sym_EQ_EQ] = ACTIONS(5543), + [anon_sym_BANG_EQ] = ACTIONS(5543), + [anon_sym_GT] = ACTIONS(5541), + [anon_sym_GT_EQ] = ACTIONS(5543), + [anon_sym_LT_EQ] = ACTIONS(5541), + [anon_sym_LT] = ACTIONS(5541), + [anon_sym_LT_LT] = ACTIONS(5541), + [anon_sym_GT_GT] = ACTIONS(5541), + [anon_sym_SEMI] = ACTIONS(5543), + [anon_sym___attribute__] = ACTIONS(5541), + [anon_sym___attribute] = ACTIONS(5541), + [anon_sym_COLON] = ACTIONS(5541), + [anon_sym_COLON_COLON] = ACTIONS(5519), + [anon_sym_LBRACE] = ACTIONS(5543), + [anon_sym_RBRACE] = ACTIONS(5543), + [anon_sym_LBRACK] = ACTIONS(5543), + [anon_sym_RBRACK] = ACTIONS(5543), + [anon_sym_EQ] = ACTIONS(5541), + [anon_sym_QMARK] = ACTIONS(5543), + [anon_sym_STAR_EQ] = ACTIONS(5543), + [anon_sym_SLASH_EQ] = ACTIONS(5543), + [anon_sym_PERCENT_EQ] = ACTIONS(5543), + [anon_sym_PLUS_EQ] = ACTIONS(5543), + [anon_sym_DASH_EQ] = ACTIONS(5543), + [anon_sym_LT_LT_EQ] = ACTIONS(5543), + [anon_sym_GT_GT_EQ] = ACTIONS(5543), + [anon_sym_AMP_EQ] = ACTIONS(5543), + [anon_sym_CARET_EQ] = ACTIONS(5543), + [anon_sym_PIPE_EQ] = ACTIONS(5543), + [anon_sym_and_eq] = ACTIONS(5541), + [anon_sym_or_eq] = ACTIONS(5541), + [anon_sym_xor_eq] = ACTIONS(5541), + [anon_sym_LT_EQ_GT] = ACTIONS(5543), + [anon_sym_or] = ACTIONS(5541), + [anon_sym_and] = ACTIONS(5541), + [anon_sym_bitor] = ACTIONS(5541), + [anon_sym_xor] = ACTIONS(5541), + [anon_sym_bitand] = ACTIONS(5541), + [anon_sym_not_eq] = ACTIONS(5541), + [anon_sym_DASH_DASH] = ACTIONS(5543), + [anon_sym_PLUS_PLUS] = ACTIONS(5543), + [anon_sym_DOT] = ACTIONS(5541), + [anon_sym_DOT_STAR] = ACTIONS(5543), + [anon_sym_DASH_GT] = ACTIONS(5543), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5605), - [anon_sym_decltype] = ACTIONS(5605), - [anon_sym_final] = ACTIONS(5605), - [anon_sym_override] = ACTIONS(5605), - [anon_sym_template] = ACTIONS(5605), - [anon_sym_GT2] = ACTIONS(5607), - [anon_sym_operator] = ACTIONS(5605), - [anon_sym_try] = ACTIONS(5605), - [anon_sym_noexcept] = ACTIONS(5605), - [anon_sym_throw] = ACTIONS(5605), - [anon_sym_requires] = ACTIONS(5605), + [sym_auto] = ACTIONS(5541), + [anon_sym_decltype] = ACTIONS(5541), + [anon_sym_final] = ACTIONS(5541), + [anon_sym_override] = ACTIONS(5541), }, - [1911] = { - [sym_argument_list] = STATE(2442), - [sym_initializer_list] = STATE(2442), - [sym_decltype_auto] = STATE(2253), - [sym_new_declarator] = STATE(2210), - [sym_identifier] = ACTIONS(5873), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5875), - [anon_sym_COMMA] = ACTIONS(5875), - [anon_sym_RPAREN] = ACTIONS(5875), - [aux_sym_preproc_if_token2] = ACTIONS(5875), - [aux_sym_preproc_else_token1] = ACTIONS(5875), - [aux_sym_preproc_elif_token1] = ACTIONS(5873), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5875), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5875), - [anon_sym_LPAREN2] = ACTIONS(5827), - [anon_sym_DASH] = ACTIONS(5873), - [anon_sym_PLUS] = ACTIONS(5873), - [anon_sym_STAR] = ACTIONS(5873), - [anon_sym_SLASH] = ACTIONS(5873), - [anon_sym_PERCENT] = ACTIONS(5873), - [anon_sym_PIPE_PIPE] = ACTIONS(5875), - [anon_sym_AMP_AMP] = ACTIONS(5875), - [anon_sym_PIPE] = ACTIONS(5873), - [anon_sym_CARET] = ACTIONS(5873), - [anon_sym_AMP] = ACTIONS(5873), - [anon_sym_EQ_EQ] = ACTIONS(5875), - [anon_sym_BANG_EQ] = ACTIONS(5875), - [anon_sym_GT] = ACTIONS(5873), - [anon_sym_GT_EQ] = ACTIONS(5875), - [anon_sym_LT_EQ] = ACTIONS(5873), - [anon_sym_LT] = ACTIONS(5873), - [anon_sym_LT_LT] = ACTIONS(5873), - [anon_sym_GT_GT] = ACTIONS(5873), - [anon_sym_SEMI] = ACTIONS(5875), - [anon_sym___attribute__] = ACTIONS(5873), - [anon_sym___attribute] = ACTIONS(5873), - [anon_sym_COLON] = ACTIONS(5875), - [anon_sym_LBRACE] = ACTIONS(1954), - [anon_sym_RBRACE] = ACTIONS(5875), - [anon_sym_LBRACK] = ACTIONS(5829), - [anon_sym_RBRACK] = ACTIONS(5875), - [anon_sym_EQ] = ACTIONS(5873), - [anon_sym_QMARK] = ACTIONS(5875), - [anon_sym_STAR_EQ] = ACTIONS(5875), - [anon_sym_SLASH_EQ] = ACTIONS(5875), - [anon_sym_PERCENT_EQ] = ACTIONS(5875), - [anon_sym_PLUS_EQ] = ACTIONS(5875), - [anon_sym_DASH_EQ] = ACTIONS(5875), - [anon_sym_LT_LT_EQ] = ACTIONS(5875), - [anon_sym_GT_GT_EQ] = ACTIONS(5875), - [anon_sym_AMP_EQ] = ACTIONS(5875), - [anon_sym_CARET_EQ] = ACTIONS(5875), - [anon_sym_PIPE_EQ] = ACTIONS(5875), - [anon_sym_and_eq] = ACTIONS(5873), - [anon_sym_or_eq] = ACTIONS(5873), - [anon_sym_xor_eq] = ACTIONS(5873), - [anon_sym_LT_EQ_GT] = ACTIONS(5875), - [anon_sym_or] = ACTIONS(5873), - [anon_sym_and] = ACTIONS(5873), - [anon_sym_bitor] = ACTIONS(5873), - [anon_sym_xor] = ACTIONS(5873), - [anon_sym_bitand] = ACTIONS(5873), - [anon_sym_not_eq] = ACTIONS(5873), - [anon_sym_DASH_DASH] = ACTIONS(5875), - [anon_sym_PLUS_PLUS] = ACTIONS(5875), - [anon_sym_DOT] = ACTIONS(5873), - [anon_sym_DOT_STAR] = ACTIONS(5875), - [anon_sym_DASH_GT] = ACTIONS(5875), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5831), - [anon_sym_decltype] = ACTIONS(5833), + [1945] = { + [sym_identifier] = ACTIONS(2611), + [aux_sym_preproc_def_token1] = ACTIONS(2611), + [aux_sym_preproc_if_token1] = ACTIONS(2611), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2611), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2611), + [sym_preproc_directive] = ACTIONS(2611), + [anon_sym_LPAREN2] = ACTIONS(2613), + [anon_sym_TILDE] = ACTIONS(2613), + [anon_sym_STAR] = ACTIONS(2613), + [anon_sym_AMP_AMP] = ACTIONS(2613), + [anon_sym_AMP] = ACTIONS(2611), + [anon_sym_SEMI] = ACTIONS(2613), + [anon_sym___extension__] = ACTIONS(2611), + [anon_sym_typedef] = ACTIONS(2611), + [anon_sym_virtual] = ACTIONS(2611), + [anon_sym_extern] = ACTIONS(2611), + [anon_sym___attribute__] = ACTIONS(2611), + [anon_sym___attribute] = ACTIONS(2611), + [anon_sym_using] = ACTIONS(2611), + [anon_sym_COLON_COLON] = ACTIONS(2613), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2613), + [anon_sym___declspec] = ACTIONS(2611), + [anon_sym___based] = ACTIONS(2611), + [anon_sym_RBRACE] = ACTIONS(2613), + [anon_sym_signed] = ACTIONS(2611), + [anon_sym_unsigned] = ACTIONS(2611), + [anon_sym_long] = ACTIONS(2611), + [anon_sym_short] = ACTIONS(2611), + [anon_sym_LBRACK] = ACTIONS(2611), + [anon_sym_static] = ACTIONS(2611), + [anon_sym_register] = ACTIONS(2611), + [anon_sym_inline] = ACTIONS(2611), + [anon_sym___inline] = ACTIONS(2611), + [anon_sym___inline__] = ACTIONS(2611), + [anon_sym___forceinline] = ACTIONS(2611), + [anon_sym_thread_local] = ACTIONS(2611), + [anon_sym___thread] = ACTIONS(2611), + [anon_sym_const] = ACTIONS(2611), + [anon_sym_constexpr] = ACTIONS(2611), + [anon_sym_volatile] = ACTIONS(2611), + [anon_sym_restrict] = ACTIONS(2611), + [anon_sym___restrict__] = ACTIONS(2611), + [anon_sym__Atomic] = ACTIONS(2611), + [anon_sym__Noreturn] = ACTIONS(2611), + [anon_sym_noreturn] = ACTIONS(2611), + [anon_sym__Nonnull] = ACTIONS(2611), + [anon_sym_mutable] = ACTIONS(2611), + [anon_sym_constinit] = ACTIONS(2611), + [anon_sym_consteval] = ACTIONS(2611), + [anon_sym_alignas] = ACTIONS(2611), + [anon_sym__Alignas] = ACTIONS(2611), + [sym_primitive_type] = ACTIONS(2611), + [anon_sym_enum] = ACTIONS(2611), + [anon_sym_class] = ACTIONS(2611), + [anon_sym_struct] = ACTIONS(2611), + [anon_sym_union] = ACTIONS(2611), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2611), + [anon_sym_decltype] = ACTIONS(2611), + [anon_sym_explicit] = ACTIONS(2611), + [anon_sym_typename] = ACTIONS(2611), + [anon_sym_private] = ACTIONS(2611), + [anon_sym_template] = ACTIONS(2611), + [anon_sym_operator] = ACTIONS(2611), + [anon_sym_friend] = ACTIONS(2611), + [anon_sym_public] = ACTIONS(2611), + [anon_sym_protected] = ACTIONS(2611), + [anon_sym_static_assert] = ACTIONS(2611), + [anon_sym_catch] = ACTIONS(2611), }, - [1912] = { - [sym__declaration_modifiers] = STATE(2136), - [sym__declaration_specifiers] = STATE(4791), - [sym_attribute_specifier] = STATE(2136), - [sym_attribute_declaration] = STATE(2136), - [sym_ms_declspec_modifier] = STATE(2136), - [sym_storage_class_specifier] = STATE(2136), - [sym_type_qualifier] = STATE(2136), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym_dependent_type] = STATE(2523), - [sym_template_type] = STATE(2406), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(6627), - [sym_qualified_type_identifier] = STATE(3015), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [sym_identifier] = ACTIONS(5218), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1446), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5220), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2999), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), + [1946] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1688), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5911), + [anon_sym_COMMA] = ACTIONS(5911), + [anon_sym_RPAREN] = ACTIONS(5911), + [anon_sym_LPAREN2] = ACTIONS(5911), + [anon_sym_DASH] = ACTIONS(5913), + [anon_sym_PLUS] = ACTIONS(5913), + [anon_sym_STAR] = ACTIONS(5911), + [anon_sym_SLASH] = ACTIONS(5913), + [anon_sym_PERCENT] = ACTIONS(5911), + [anon_sym_PIPE_PIPE] = ACTIONS(5911), + [anon_sym_AMP_AMP] = ACTIONS(5911), + [anon_sym_PIPE] = ACTIONS(5913), + [anon_sym_CARET] = ACTIONS(5911), + [anon_sym_AMP] = ACTIONS(5913), + [anon_sym_EQ_EQ] = ACTIONS(5911), + [anon_sym_BANG_EQ] = ACTIONS(5911), + [anon_sym_GT] = ACTIONS(5913), + [anon_sym_GT_EQ] = ACTIONS(5911), + [anon_sym_LT_EQ] = ACTIONS(5913), + [anon_sym_LT] = ACTIONS(5913), + [anon_sym_LT_LT] = ACTIONS(5911), + [anon_sym_GT_GT] = ACTIONS(5911), + [anon_sym_SEMI] = ACTIONS(5911), + [anon_sym___extension__] = ACTIONS(5911), + [anon_sym___attribute__] = ACTIONS(5911), + [anon_sym___attribute] = ACTIONS(5913), + [anon_sym_COLON] = ACTIONS(5911), + [anon_sym_LBRACE] = ACTIONS(5911), + [anon_sym_RBRACE] = ACTIONS(5911), + [anon_sym_signed] = ACTIONS(5895), + [anon_sym_unsigned] = ACTIONS(5895), + [anon_sym_long] = ACTIONS(5895), + [anon_sym_short] = ACTIONS(5895), + [anon_sym_LBRACK] = ACTIONS(5911), + [anon_sym_RBRACK] = ACTIONS(5911), + [anon_sym_const] = ACTIONS(5913), + [anon_sym_constexpr] = ACTIONS(5911), + [anon_sym_volatile] = ACTIONS(5911), + [anon_sym_restrict] = ACTIONS(5911), + [anon_sym___restrict__] = ACTIONS(5911), + [anon_sym__Atomic] = ACTIONS(5911), + [anon_sym__Noreturn] = ACTIONS(5911), + [anon_sym_noreturn] = ACTIONS(5911), + [anon_sym__Nonnull] = ACTIONS(5911), + [anon_sym_mutable] = ACTIONS(5911), + [anon_sym_constinit] = ACTIONS(5911), + [anon_sym_consteval] = ACTIONS(5911), + [anon_sym_alignas] = ACTIONS(5911), + [anon_sym__Alignas] = ACTIONS(5911), + [anon_sym_QMARK] = ACTIONS(5911), + [anon_sym_LT_EQ_GT] = ACTIONS(5911), + [anon_sym_or] = ACTIONS(5911), + [anon_sym_and] = ACTIONS(5911), + [anon_sym_bitor] = ACTIONS(5911), + [anon_sym_xor] = ACTIONS(5911), + [anon_sym_bitand] = ACTIONS(5911), + [anon_sym_not_eq] = ACTIONS(5911), + [anon_sym_DASH_DASH] = ACTIONS(5911), + [anon_sym_PLUS_PLUS] = ACTIONS(5911), + [anon_sym_DOT] = ACTIONS(5913), + [anon_sym_DOT_STAR] = ACTIONS(5911), + [anon_sym_DASH_GT] = ACTIONS(5911), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5911), + [anon_sym_decltype] = ACTIONS(5911), + [anon_sym_final] = ACTIONS(5911), + [anon_sym_override] = ACTIONS(5911), + [anon_sym_requires] = ACTIONS(5911), + }, + [1947] = { + [sym_string_literal] = STATE(1708), + [sym_raw_string_literal] = STATE(1708), + [sym_identifier] = ACTIONS(5915), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5917), + [anon_sym_COMMA] = ACTIONS(5917), + [aux_sym_preproc_if_token2] = ACTIONS(5917), + [aux_sym_preproc_else_token1] = ACTIONS(5917), + [aux_sym_preproc_elif_token1] = ACTIONS(5915), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5917), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5917), + [anon_sym_LPAREN2] = ACTIONS(5917), + [anon_sym_DASH] = ACTIONS(5915), + [anon_sym_PLUS] = ACTIONS(5915), + [anon_sym_STAR] = ACTIONS(5915), + [anon_sym_SLASH] = ACTIONS(5915), + [anon_sym_PERCENT] = ACTIONS(5915), + [anon_sym_PIPE_PIPE] = ACTIONS(5917), + [anon_sym_AMP_AMP] = ACTIONS(5917), + [anon_sym_PIPE] = ACTIONS(5915), + [anon_sym_CARET] = ACTIONS(5915), + [anon_sym_AMP] = ACTIONS(5915), + [anon_sym_EQ_EQ] = ACTIONS(5917), + [anon_sym_BANG_EQ] = ACTIONS(5917), + [anon_sym_GT] = ACTIONS(5915), + [anon_sym_GT_EQ] = ACTIONS(5917), + [anon_sym_LT_EQ] = ACTIONS(5915), + [anon_sym_LT] = ACTIONS(5915), + [anon_sym_LT_LT] = ACTIONS(5915), + [anon_sym_GT_GT] = ACTIONS(5915), + [anon_sym_LBRACK] = ACTIONS(5917), + [anon_sym_EQ] = ACTIONS(5915), + [anon_sym_QMARK] = ACTIONS(5917), + [anon_sym_STAR_EQ] = ACTIONS(5917), + [anon_sym_SLASH_EQ] = ACTIONS(5917), + [anon_sym_PERCENT_EQ] = ACTIONS(5917), + [anon_sym_PLUS_EQ] = ACTIONS(5917), + [anon_sym_DASH_EQ] = ACTIONS(5917), + [anon_sym_LT_LT_EQ] = ACTIONS(5917), + [anon_sym_GT_GT_EQ] = ACTIONS(5917), + [anon_sym_AMP_EQ] = ACTIONS(5917), + [anon_sym_CARET_EQ] = ACTIONS(5917), + [anon_sym_PIPE_EQ] = ACTIONS(5917), + [anon_sym_and_eq] = ACTIONS(5915), + [anon_sym_or_eq] = ACTIONS(5915), + [anon_sym_xor_eq] = ACTIONS(5915), + [anon_sym_LT_EQ_GT] = ACTIONS(5917), + [anon_sym_or] = ACTIONS(5915), + [anon_sym_and] = ACTIONS(5915), + [anon_sym_bitor] = ACTIONS(5915), + [anon_sym_xor] = ACTIONS(5915), + [anon_sym_bitand] = ACTIONS(5915), + [anon_sym_not_eq] = ACTIONS(5915), + [anon_sym_DASH_DASH] = ACTIONS(5917), + [anon_sym_PLUS_PLUS] = ACTIONS(5917), + [anon_sym_DOT] = ACTIONS(5915), + [anon_sym_DOT_STAR] = ACTIONS(5917), + [anon_sym_DASH_GT] = ACTIONS(5917), + [anon_sym_L_DQUOTE] = ACTIONS(1972), + [anon_sym_u_DQUOTE] = ACTIONS(1972), + [anon_sym_U_DQUOTE] = ACTIONS(1972), + [anon_sym_u8_DQUOTE] = ACTIONS(1972), + [anon_sym_DQUOTE] = ACTIONS(1972), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_R_DQUOTE] = ACTIONS(1982), + [anon_sym_LR_DQUOTE] = ACTIONS(1982), + [anon_sym_uR_DQUOTE] = ACTIONS(1982), + [anon_sym_UR_DQUOTE] = ACTIONS(1982), + [anon_sym_u8R_DQUOTE] = ACTIONS(1982), + [sym_literal_suffix] = ACTIONS(5915), }, - [1913] = { + [1948] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1688), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5919), + [anon_sym_COMMA] = ACTIONS(5919), + [anon_sym_RPAREN] = ACTIONS(5919), + [anon_sym_LPAREN2] = ACTIONS(5919), + [anon_sym_DASH] = ACTIONS(5921), + [anon_sym_PLUS] = ACTIONS(5921), + [anon_sym_STAR] = ACTIONS(5919), + [anon_sym_SLASH] = ACTIONS(5921), + [anon_sym_PERCENT] = ACTIONS(5919), + [anon_sym_PIPE_PIPE] = ACTIONS(5919), + [anon_sym_AMP_AMP] = ACTIONS(5919), + [anon_sym_PIPE] = ACTIONS(5921), + [anon_sym_CARET] = ACTIONS(5919), + [anon_sym_AMP] = ACTIONS(5921), + [anon_sym_EQ_EQ] = ACTIONS(5919), + [anon_sym_BANG_EQ] = ACTIONS(5919), + [anon_sym_GT] = ACTIONS(5921), + [anon_sym_GT_EQ] = ACTIONS(5919), + [anon_sym_LT_EQ] = ACTIONS(5921), + [anon_sym_LT] = ACTIONS(5921), + [anon_sym_LT_LT] = ACTIONS(5919), + [anon_sym_GT_GT] = ACTIONS(5919), + [anon_sym_SEMI] = ACTIONS(5919), + [anon_sym___extension__] = ACTIONS(5919), + [anon_sym___attribute__] = ACTIONS(5919), + [anon_sym___attribute] = ACTIONS(5921), + [anon_sym_COLON] = ACTIONS(5919), + [anon_sym_LBRACE] = ACTIONS(5919), + [anon_sym_RBRACE] = ACTIONS(5919), + [anon_sym_signed] = ACTIONS(5895), + [anon_sym_unsigned] = ACTIONS(5895), + [anon_sym_long] = ACTIONS(5895), + [anon_sym_short] = ACTIONS(5895), + [anon_sym_LBRACK] = ACTIONS(5919), + [anon_sym_RBRACK] = ACTIONS(5919), + [anon_sym_const] = ACTIONS(5921), + [anon_sym_constexpr] = ACTIONS(5919), + [anon_sym_volatile] = ACTIONS(5919), + [anon_sym_restrict] = ACTIONS(5919), + [anon_sym___restrict__] = ACTIONS(5919), + [anon_sym__Atomic] = ACTIONS(5919), + [anon_sym__Noreturn] = ACTIONS(5919), + [anon_sym_noreturn] = ACTIONS(5919), + [anon_sym__Nonnull] = ACTIONS(5919), + [anon_sym_mutable] = ACTIONS(5919), + [anon_sym_constinit] = ACTIONS(5919), + [anon_sym_consteval] = ACTIONS(5919), + [anon_sym_alignas] = ACTIONS(5919), + [anon_sym__Alignas] = ACTIONS(5919), + [anon_sym_QMARK] = ACTIONS(5919), + [anon_sym_LT_EQ_GT] = ACTIONS(5919), + [anon_sym_or] = ACTIONS(5919), + [anon_sym_and] = ACTIONS(5919), + [anon_sym_bitor] = ACTIONS(5919), + [anon_sym_xor] = ACTIONS(5919), + [anon_sym_bitand] = ACTIONS(5919), + [anon_sym_not_eq] = ACTIONS(5919), + [anon_sym_DASH_DASH] = ACTIONS(5919), + [anon_sym_PLUS_PLUS] = ACTIONS(5919), + [anon_sym_DOT] = ACTIONS(5921), + [anon_sym_DOT_STAR] = ACTIONS(5919), + [anon_sym_DASH_GT] = ACTIONS(5919), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5919), + [anon_sym_decltype] = ACTIONS(5919), + [anon_sym_final] = ACTIONS(5919), + [anon_sym_override] = ACTIONS(5919), + [anon_sym_requires] = ACTIONS(5919), + }, + [1949] = { [sym_identifier] = ACTIONS(1936), [aux_sym_preproc_def_token1] = ACTIONS(1936), [aux_sym_preproc_if_token1] = ACTIONS(1936), - [aux_sym_preproc_if_token2] = ACTIONS(1936), [aux_sym_preproc_ifdef_token1] = ACTIONS(1936), [aux_sym_preproc_ifdef_token2] = ACTIONS(1936), [sym_preproc_directive] = ACTIONS(1936), @@ -262741,6 +266928,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_LBRACK] = ACTIONS(1934), [anon_sym___declspec] = ACTIONS(1936), [anon_sym___based] = ACTIONS(1936), + [anon_sym_RBRACE] = ACTIONS(1934), [anon_sym_signed] = ACTIONS(1936), [anon_sym_unsigned] = ACTIONS(1936), [anon_sym_long] = ACTIONS(1936), @@ -262787,12 +266975,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static_assert] = ACTIONS(1936), [anon_sym_catch] = ACTIONS(1936), }, - [1914] = { + [1950] = { [sym_identifier] = ACTIONS(1940), [aux_sym_preproc_def_token1] = ACTIONS(1940), - [anon_sym_COMMA] = ACTIONS(2685), + [anon_sym_COMMA] = ACTIONS(2729), [aux_sym_preproc_if_token1] = ACTIONS(1940), - [aux_sym_preproc_if_token2] = ACTIONS(1940), [aux_sym_preproc_ifdef_token1] = ACTIONS(1940), [aux_sym_preproc_ifdef_token2] = ACTIONS(1940), [sym_preproc_directive] = ACTIONS(1940), @@ -262801,18 +266988,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1938), [anon_sym_AMP_AMP] = ACTIONS(1938), [anon_sym_AMP] = ACTIONS(1940), - [anon_sym_SEMI] = ACTIONS(2685), + [anon_sym_SEMI] = ACTIONS(2729), [anon_sym___extension__] = ACTIONS(1940), [anon_sym_typedef] = ACTIONS(1940), [anon_sym_virtual] = ACTIONS(1940), [anon_sym_extern] = ACTIONS(1940), - [anon_sym___attribute__] = ACTIONS(1940), - [anon_sym___attribute] = ACTIONS(1940), + [anon_sym___attribute__] = ACTIONS(5450), + [anon_sym___attribute] = ACTIONS(5450), [anon_sym_using] = ACTIONS(1940), [anon_sym_COLON_COLON] = ACTIONS(1938), [anon_sym_LBRACK_LBRACK] = ACTIONS(1938), [anon_sym___declspec] = ACTIONS(1940), [anon_sym___based] = ACTIONS(1940), + [anon_sym_RBRACE] = ACTIONS(1938), [anon_sym_signed] = ACTIONS(1940), [anon_sym_unsigned] = ACTIONS(1940), [anon_sym_long] = ACTIONS(1940), @@ -262858,153 +267046,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(1940), [anon_sym_static_assert] = ACTIONS(1940), }, - [1915] = { - [sym__declaration_modifiers] = STATE(2136), - [sym__declaration_specifiers] = STATE(5234), - [sym_attribute_specifier] = STATE(2136), - [sym_attribute_declaration] = STATE(2136), - [sym_ms_declspec_modifier] = STATE(2136), - [sym_storage_class_specifier] = STATE(2136), - [sym_type_qualifier] = STATE(2136), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym_dependent_type] = STATE(2523), - [sym_template_type] = STATE(2406), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(6627), - [sym_qualified_type_identifier] = STATE(3015), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [sym_identifier] = ACTIONS(5218), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1446), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5220), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2999), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1452), - }, - [1916] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(4998), - [anon_sym_RPAREN] = ACTIONS(5000), - [anon_sym_LPAREN2] = ACTIONS(5000), - [anon_sym_DASH] = ACTIONS(5005), - [anon_sym_PLUS] = ACTIONS(5005), - [anon_sym_STAR] = ACTIONS(5007), - [anon_sym_SLASH] = ACTIONS(5005), - [anon_sym_PERCENT] = ACTIONS(5005), - [anon_sym_PIPE_PIPE] = ACTIONS(4998), - [anon_sym_AMP_AMP] = ACTIONS(5000), - [anon_sym_PIPE] = ACTIONS(5005), - [anon_sym_CARET] = ACTIONS(5005), - [anon_sym_AMP] = ACTIONS(5007), - [anon_sym_EQ_EQ] = ACTIONS(4998), - [anon_sym_BANG_EQ] = ACTIONS(4998), - [anon_sym_GT] = ACTIONS(5005), - [anon_sym_GT_EQ] = ACTIONS(4998), - [anon_sym_LT_EQ] = ACTIONS(5005), - [anon_sym_LT] = ACTIONS(5005), - [anon_sym_LT_LT] = ACTIONS(5005), - [anon_sym_GT_GT] = ACTIONS(5005), - [anon_sym___extension__] = ACTIONS(5003), - [anon_sym_COLON_COLON] = ACTIONS(5003), - [anon_sym_LBRACE] = ACTIONS(5003), - [anon_sym_LBRACK] = ACTIONS(5000), - [anon_sym_EQ] = ACTIONS(5005), - [anon_sym_const] = ACTIONS(4996), - [anon_sym_constexpr] = ACTIONS(5003), - [anon_sym_volatile] = ACTIONS(5003), - [anon_sym_restrict] = ACTIONS(5003), - [anon_sym___restrict__] = ACTIONS(5003), - [anon_sym__Atomic] = ACTIONS(5003), - [anon_sym__Noreturn] = ACTIONS(5003), - [anon_sym_noreturn] = ACTIONS(5003), - [anon_sym__Nonnull] = ACTIONS(5003), - [anon_sym_mutable] = ACTIONS(5003), - [anon_sym_constinit] = ACTIONS(5003), - [anon_sym_consteval] = ACTIONS(5003), - [anon_sym_alignas] = ACTIONS(5003), - [anon_sym__Alignas] = ACTIONS(5003), - [anon_sym_QMARK] = ACTIONS(4998), - [anon_sym_STAR_EQ] = ACTIONS(4998), - [anon_sym_SLASH_EQ] = ACTIONS(4998), - [anon_sym_PERCENT_EQ] = ACTIONS(4998), - [anon_sym_PLUS_EQ] = ACTIONS(4998), - [anon_sym_DASH_EQ] = ACTIONS(4998), - [anon_sym_LT_LT_EQ] = ACTIONS(4998), - [anon_sym_GT_GT_EQ] = ACTIONS(4998), - [anon_sym_AMP_EQ] = ACTIONS(4998), - [anon_sym_CARET_EQ] = ACTIONS(4998), - [anon_sym_PIPE_EQ] = ACTIONS(4998), - [anon_sym_and_eq] = ACTIONS(4998), - [anon_sym_or_eq] = ACTIONS(4998), - [anon_sym_xor_eq] = ACTIONS(4998), - [anon_sym_LT_EQ_GT] = ACTIONS(4998), - [anon_sym_or] = ACTIONS(5005), - [anon_sym_and] = ACTIONS(5005), - [anon_sym_bitor] = ACTIONS(4998), - [anon_sym_xor] = ACTIONS(5005), - [anon_sym_bitand] = ACTIONS(4998), - [anon_sym_not_eq] = ACTIONS(4998), - [anon_sym_DASH_DASH] = ACTIONS(4998), - [anon_sym_PLUS_PLUS] = ACTIONS(4998), - [anon_sym_DOT] = ACTIONS(5005), - [anon_sym_DOT_STAR] = ACTIONS(4998), - [anon_sym_DASH_GT] = ACTIONS(4998), + [1951] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1948), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5517), + [anon_sym_COMMA] = ACTIONS(5517), + [anon_sym_RPAREN] = ACTIONS(5517), + [anon_sym_LPAREN2] = ACTIONS(5517), + [anon_sym_DASH] = ACTIONS(5515), + [anon_sym_PLUS] = ACTIONS(5515), + [anon_sym_STAR] = ACTIONS(5517), + [anon_sym_SLASH] = ACTIONS(5515), + [anon_sym_PERCENT] = ACTIONS(5517), + [anon_sym_PIPE_PIPE] = ACTIONS(5517), + [anon_sym_AMP_AMP] = ACTIONS(5517), + [anon_sym_PIPE] = ACTIONS(5515), + [anon_sym_CARET] = ACTIONS(5517), + [anon_sym_AMP] = ACTIONS(5515), + [anon_sym_EQ_EQ] = ACTIONS(5517), + [anon_sym_BANG_EQ] = ACTIONS(5517), + [anon_sym_GT] = ACTIONS(5515), + [anon_sym_GT_EQ] = ACTIONS(5517), + [anon_sym_LT_EQ] = ACTIONS(5515), + [anon_sym_LT] = ACTIONS(5515), + [anon_sym_LT_LT] = ACTIONS(5517), + [anon_sym_GT_GT] = ACTIONS(5517), + [anon_sym_SEMI] = ACTIONS(5517), + [anon_sym___extension__] = ACTIONS(5517), + [anon_sym___attribute__] = ACTIONS(5517), + [anon_sym___attribute] = ACTIONS(5515), + [anon_sym_COLON] = ACTIONS(5517), + [anon_sym_LBRACE] = ACTIONS(5517), + [anon_sym_RBRACE] = ACTIONS(5517), + [anon_sym_signed] = ACTIONS(5923), + [anon_sym_unsigned] = ACTIONS(5923), + [anon_sym_long] = ACTIONS(5923), + [anon_sym_short] = ACTIONS(5923), + [anon_sym_LBRACK] = ACTIONS(5517), + [anon_sym_RBRACK] = ACTIONS(5517), + [anon_sym_const] = ACTIONS(5515), + [anon_sym_constexpr] = ACTIONS(5517), + [anon_sym_volatile] = ACTIONS(5517), + [anon_sym_restrict] = ACTIONS(5517), + [anon_sym___restrict__] = ACTIONS(5517), + [anon_sym__Atomic] = ACTIONS(5517), + [anon_sym__Noreturn] = ACTIONS(5517), + [anon_sym_noreturn] = ACTIONS(5517), + [anon_sym__Nonnull] = ACTIONS(5517), + [anon_sym_mutable] = ACTIONS(5517), + [anon_sym_constinit] = ACTIONS(5517), + [anon_sym_consteval] = ACTIONS(5517), + [anon_sym_alignas] = ACTIONS(5517), + [anon_sym__Alignas] = ACTIONS(5517), + [anon_sym_QMARK] = ACTIONS(5517), + [anon_sym_LT_EQ_GT] = ACTIONS(5517), + [anon_sym_or] = ACTIONS(5517), + [anon_sym_and] = ACTIONS(5517), + [anon_sym_bitor] = ACTIONS(5517), + [anon_sym_xor] = ACTIONS(5517), + [anon_sym_bitand] = ACTIONS(5517), + [anon_sym_not_eq] = ACTIONS(5517), + [anon_sym_DASH_DASH] = ACTIONS(5517), + [anon_sym_PLUS_PLUS] = ACTIONS(5517), + [anon_sym_DOT] = ACTIONS(5515), + [anon_sym_DOT_STAR] = ACTIONS(5517), + [anon_sym_DASH_GT] = ACTIONS(5517), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5003), - [anon_sym_decltype] = ACTIONS(5003), + [sym_auto] = ACTIONS(5517), + [anon_sym_decltype] = ACTIONS(5517), + [anon_sym_final] = ACTIONS(5517), + [anon_sym_override] = ACTIONS(5517), + [anon_sym_requires] = ACTIONS(5517), }, - [1917] = { + [1952] = { [sym_identifier] = ACTIONS(1940), [aux_sym_preproc_def_token1] = ACTIONS(1940), - [anon_sym_COMMA] = ACTIONS(2685), + [anon_sym_COMMA] = ACTIONS(2729), [aux_sym_preproc_if_token1] = ACTIONS(1940), + [aux_sym_preproc_if_token2] = ACTIONS(1940), [aux_sym_preproc_ifdef_token1] = ACTIONS(1940), [aux_sym_preproc_ifdef_token2] = ACTIONS(1940), [sym_preproc_directive] = ACTIONS(1940), @@ -263013,19 +267131,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1938), [anon_sym_AMP_AMP] = ACTIONS(1938), [anon_sym_AMP] = ACTIONS(1940), - [anon_sym_SEMI] = ACTIONS(2685), + [anon_sym_SEMI] = ACTIONS(2729), [anon_sym___extension__] = ACTIONS(1940), [anon_sym_typedef] = ACTIONS(1940), [anon_sym_virtual] = ACTIONS(1940), [anon_sym_extern] = ACTIONS(1940), - [anon_sym___attribute__] = ACTIONS(5442), - [anon_sym___attribute] = ACTIONS(5442), + [anon_sym___attribute__] = ACTIONS(1940), + [anon_sym___attribute] = ACTIONS(1940), [anon_sym_using] = ACTIONS(1940), [anon_sym_COLON_COLON] = ACTIONS(1938), [anon_sym_LBRACK_LBRACK] = ACTIONS(1938), [anon_sym___declspec] = ACTIONS(1940), [anon_sym___based] = ACTIONS(1940), - [anon_sym_RBRACE] = ACTIONS(1938), [anon_sym_signed] = ACTIONS(1940), [anon_sym_unsigned] = ACTIONS(1940), [anon_sym_long] = ACTIONS(1940), @@ -263071,82 +267188,295 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(1940), [anon_sym_static_assert] = ACTIONS(1940), }, - [1918] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1918), - [sym_identifier] = ACTIONS(5070), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5072), - [anon_sym_COMMA] = ACTIONS(5072), - [anon_sym_RPAREN] = ACTIONS(5072), - [anon_sym_LPAREN2] = ACTIONS(5072), - [anon_sym_TILDE] = ACTIONS(5072), - [anon_sym_STAR] = ACTIONS(5072), - [anon_sym_AMP_AMP] = ACTIONS(5072), - [anon_sym_AMP] = ACTIONS(5070), - [anon_sym_SEMI] = ACTIONS(5072), - [anon_sym___extension__] = ACTIONS(5070), - [anon_sym_virtual] = ACTIONS(5070), - [anon_sym_extern] = ACTIONS(5070), - [anon_sym___attribute__] = ACTIONS(5070), - [anon_sym___attribute] = ACTIONS(5070), - [anon_sym_COLON_COLON] = ACTIONS(5072), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5072), - [anon_sym___declspec] = ACTIONS(5070), - [anon_sym___based] = ACTIONS(5070), - [anon_sym___cdecl] = ACTIONS(5070), - [anon_sym___clrcall] = ACTIONS(5070), - [anon_sym___stdcall] = ACTIONS(5070), - [anon_sym___fastcall] = ACTIONS(5070), - [anon_sym___thiscall] = ACTIONS(5070), - [anon_sym___vectorcall] = ACTIONS(5070), - [anon_sym_LBRACE] = ACTIONS(5072), - [anon_sym_signed] = ACTIONS(5877), - [anon_sym_unsigned] = ACTIONS(5877), - [anon_sym_long] = ACTIONS(5877), - [anon_sym_short] = ACTIONS(5877), - [anon_sym_LBRACK] = ACTIONS(5070), - [anon_sym_static] = ACTIONS(5070), - [anon_sym_EQ] = ACTIONS(5072), - [anon_sym_register] = ACTIONS(5070), - [anon_sym_inline] = ACTIONS(5070), - [anon_sym___inline] = ACTIONS(5070), - [anon_sym___inline__] = ACTIONS(5070), - [anon_sym___forceinline] = ACTIONS(5070), - [anon_sym_thread_local] = ACTIONS(5070), - [anon_sym___thread] = ACTIONS(5070), - [anon_sym_const] = ACTIONS(5070), - [anon_sym_constexpr] = ACTIONS(5070), - [anon_sym_volatile] = ACTIONS(5070), - [anon_sym_restrict] = ACTIONS(5070), - [anon_sym___restrict__] = ACTIONS(5070), - [anon_sym__Atomic] = ACTIONS(5070), - [anon_sym__Noreturn] = ACTIONS(5070), - [anon_sym_noreturn] = ACTIONS(5070), - [anon_sym__Nonnull] = ACTIONS(5070), - [anon_sym_mutable] = ACTIONS(5070), - [anon_sym_constinit] = ACTIONS(5070), - [anon_sym_consteval] = ACTIONS(5070), - [anon_sym_alignas] = ACTIONS(5070), - [anon_sym__Alignas] = ACTIONS(5070), - [sym_primitive_type] = ACTIONS(5070), - [anon_sym_asm] = ACTIONS(5070), - [anon_sym___asm__] = ACTIONS(5070), - [anon_sym___asm] = ACTIONS(5070), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5070), - [anon_sym_decltype] = ACTIONS(5070), - [anon_sym_final] = ACTIONS(5070), - [anon_sym_override] = ACTIONS(5070), - [anon_sym_template] = ACTIONS(5070), - [anon_sym_GT2] = ACTIONS(5072), - [anon_sym_operator] = ACTIONS(5070), - [anon_sym_try] = ACTIONS(5070), - [anon_sym_requires] = ACTIONS(5070), + [1953] = { + [sym_identifier] = ACTIONS(5925), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5927), + [anon_sym_COMMA] = ACTIONS(5927), + [anon_sym_RPAREN] = ACTIONS(5927), + [aux_sym_preproc_if_token2] = ACTIONS(5927), + [aux_sym_preproc_else_token1] = ACTIONS(5927), + [aux_sym_preproc_elif_token1] = ACTIONS(5925), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5927), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5927), + [anon_sym_LPAREN2] = ACTIONS(5927), + [anon_sym_DASH] = ACTIONS(5925), + [anon_sym_PLUS] = ACTIONS(5925), + [anon_sym_STAR] = ACTIONS(5925), + [anon_sym_SLASH] = ACTIONS(5925), + [anon_sym_PERCENT] = ACTIONS(5925), + [anon_sym_PIPE_PIPE] = ACTIONS(5927), + [anon_sym_AMP_AMP] = ACTIONS(5927), + [anon_sym_PIPE] = ACTIONS(5925), + [anon_sym_CARET] = ACTIONS(5925), + [anon_sym_AMP] = ACTIONS(5925), + [anon_sym_EQ_EQ] = ACTIONS(5927), + [anon_sym_BANG_EQ] = ACTIONS(5927), + [anon_sym_GT] = ACTIONS(5925), + [anon_sym_GT_EQ] = ACTIONS(5927), + [anon_sym_LT_EQ] = ACTIONS(5925), + [anon_sym_LT] = ACTIONS(5925), + [anon_sym_LT_LT] = ACTIONS(5925), + [anon_sym_GT_GT] = ACTIONS(5925), + [anon_sym_SEMI] = ACTIONS(5927), + [anon_sym___attribute__] = ACTIONS(5925), + [anon_sym___attribute] = ACTIONS(5925), + [anon_sym_COLON] = ACTIONS(5927), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5927), + [anon_sym_LBRACE] = ACTIONS(5927), + [anon_sym_RBRACE] = ACTIONS(5927), + [anon_sym_LBRACK] = ACTIONS(5925), + [anon_sym_RBRACK] = ACTIONS(5927), + [anon_sym_EQ] = ACTIONS(5925), + [anon_sym_QMARK] = ACTIONS(5927), + [anon_sym_STAR_EQ] = ACTIONS(5927), + [anon_sym_SLASH_EQ] = ACTIONS(5927), + [anon_sym_PERCENT_EQ] = ACTIONS(5927), + [anon_sym_PLUS_EQ] = ACTIONS(5927), + [anon_sym_DASH_EQ] = ACTIONS(5927), + [anon_sym_LT_LT_EQ] = ACTIONS(5927), + [anon_sym_GT_GT_EQ] = ACTIONS(5927), + [anon_sym_AMP_EQ] = ACTIONS(5927), + [anon_sym_CARET_EQ] = ACTIONS(5927), + [anon_sym_PIPE_EQ] = ACTIONS(5927), + [anon_sym_and_eq] = ACTIONS(5925), + [anon_sym_or_eq] = ACTIONS(5925), + [anon_sym_xor_eq] = ACTIONS(5925), + [anon_sym_LT_EQ_GT] = ACTIONS(5927), + [anon_sym_or] = ACTIONS(5925), + [anon_sym_and] = ACTIONS(5925), + [anon_sym_bitor] = ACTIONS(5925), + [anon_sym_xor] = ACTIONS(5925), + [anon_sym_bitand] = ACTIONS(5925), + [anon_sym_not_eq] = ACTIONS(5925), + [anon_sym_DASH_DASH] = ACTIONS(5927), + [anon_sym_PLUS_PLUS] = ACTIONS(5927), + [anon_sym_asm] = ACTIONS(5925), + [anon_sym___asm__] = ACTIONS(5925), + [anon_sym___asm] = ACTIONS(5925), + [anon_sym_DOT] = ACTIONS(5925), + [anon_sym_DOT_STAR] = ACTIONS(5927), + [anon_sym_DASH_GT] = ACTIONS(5927), + [sym_comment] = ACTIONS(3), + [anon_sym_try] = ACTIONS(5925), }, - [1919] = { + [1954] = { + [sym__declaration_modifiers] = STATE(2095), + [sym__declaration_specifiers] = STATE(4881), + [sym_attribute_specifier] = STATE(2095), + [sym_attribute_declaration] = STATE(2095), + [sym_ms_declspec_modifier] = STATE(2095), + [sym_storage_class_specifier] = STATE(2095), + [sym_type_qualifier] = STATE(2095), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym_dependent_type] = STATE(2558), + [sym_template_type] = STATE(2439), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(6715), + [sym_qualified_type_identifier] = STATE(3138), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(5226), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1262), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(5228), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(69), + [anon_sym__Alignas] = ACTIONS(69), + [sym_primitive_type] = ACTIONS(3019), + [anon_sym_enum] = ACTIONS(73), + [anon_sym_class] = ACTIONS(75), + [anon_sym_struct] = ACTIONS(77), + [anon_sym_union] = ACTIONS(79), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(125), + [anon_sym_decltype] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(131), + [anon_sym_template] = ACTIONS(1268), + }, + [1955] = { + [sym_identifier] = ACTIONS(5541), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5543), + [anon_sym_COMMA] = ACTIONS(5543), + [anon_sym_RPAREN] = ACTIONS(5543), + [aux_sym_preproc_if_token2] = ACTIONS(5543), + [aux_sym_preproc_else_token1] = ACTIONS(5543), + [aux_sym_preproc_elif_token1] = ACTIONS(5541), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5543), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5543), + [anon_sym_LPAREN2] = ACTIONS(5543), + [anon_sym_DASH] = ACTIONS(5541), + [anon_sym_PLUS] = ACTIONS(5541), + [anon_sym_STAR] = ACTIONS(5541), + [anon_sym_SLASH] = ACTIONS(5541), + [anon_sym_PERCENT] = ACTIONS(5541), + [anon_sym_PIPE_PIPE] = ACTIONS(5543), + [anon_sym_AMP_AMP] = ACTIONS(5543), + [anon_sym_PIPE] = ACTIONS(5541), + [anon_sym_CARET] = ACTIONS(5541), + [anon_sym_AMP] = ACTIONS(5541), + [anon_sym_EQ_EQ] = ACTIONS(5543), + [anon_sym_BANG_EQ] = ACTIONS(5543), + [anon_sym_GT] = ACTIONS(5541), + [anon_sym_GT_EQ] = ACTIONS(5543), + [anon_sym_LT_EQ] = ACTIONS(5541), + [anon_sym_LT] = ACTIONS(5541), + [anon_sym_LT_LT] = ACTIONS(5541), + [anon_sym_GT_GT] = ACTIONS(5541), + [anon_sym_SEMI] = ACTIONS(5543), + [anon_sym___attribute__] = ACTIONS(5541), + [anon_sym___attribute] = ACTIONS(5541), + [anon_sym_COLON] = ACTIONS(5541), + [anon_sym_COLON_COLON] = ACTIONS(5519), + [anon_sym_LBRACE] = ACTIONS(5543), + [anon_sym_RBRACE] = ACTIONS(5543), + [anon_sym_LBRACK] = ACTIONS(5543), + [anon_sym_RBRACK] = ACTIONS(5543), + [anon_sym_EQ] = ACTIONS(5541), + [anon_sym_QMARK] = ACTIONS(5543), + [anon_sym_STAR_EQ] = ACTIONS(5543), + [anon_sym_SLASH_EQ] = ACTIONS(5543), + [anon_sym_PERCENT_EQ] = ACTIONS(5543), + [anon_sym_PLUS_EQ] = ACTIONS(5543), + [anon_sym_DASH_EQ] = ACTIONS(5543), + [anon_sym_LT_LT_EQ] = ACTIONS(5543), + [anon_sym_GT_GT_EQ] = ACTIONS(5543), + [anon_sym_AMP_EQ] = ACTIONS(5543), + [anon_sym_CARET_EQ] = ACTIONS(5543), + [anon_sym_PIPE_EQ] = ACTIONS(5543), + [anon_sym_and_eq] = ACTIONS(5541), + [anon_sym_or_eq] = ACTIONS(5541), + [anon_sym_xor_eq] = ACTIONS(5541), + [anon_sym_LT_EQ_GT] = ACTIONS(5543), + [anon_sym_or] = ACTIONS(5541), + [anon_sym_and] = ACTIONS(5541), + [anon_sym_bitor] = ACTIONS(5541), + [anon_sym_xor] = ACTIONS(5541), + [anon_sym_bitand] = ACTIONS(5541), + [anon_sym_not_eq] = ACTIONS(5541), + [anon_sym_DASH_DASH] = ACTIONS(5543), + [anon_sym_PLUS_PLUS] = ACTIONS(5543), + [anon_sym_DOT] = ACTIONS(5541), + [anon_sym_DOT_STAR] = ACTIONS(5543), + [anon_sym_DASH_GT] = ACTIONS(5543), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5541), + [anon_sym_decltype] = ACTIONS(5541), + [anon_sym_final] = ACTIONS(5541), + [anon_sym_override] = ACTIONS(5541), + }, + [1956] = { + [sym__declaration_modifiers] = STATE(2095), + [sym__declaration_specifiers] = STATE(4907), + [sym_attribute_specifier] = STATE(2095), + [sym_attribute_declaration] = STATE(2095), + [sym_ms_declspec_modifier] = STATE(2095), + [sym_storage_class_specifier] = STATE(2095), + [sym_type_qualifier] = STATE(2095), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym_dependent_type] = STATE(2558), + [sym_template_type] = STATE(2439), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(6715), + [sym_qualified_type_identifier] = STATE(3138), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(5226), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1262), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(5228), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(69), + [anon_sym__Alignas] = ACTIONS(69), + [sym_primitive_type] = ACTIONS(3019), + [anon_sym_enum] = ACTIONS(73), + [anon_sym_class] = ACTIONS(75), + [anon_sym_struct] = ACTIONS(77), + [anon_sym_union] = ACTIONS(79), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(125), + [anon_sym_decltype] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(131), + [anon_sym_template] = ACTIONS(1268), + }, + [1957] = { [sym_identifier] = ACTIONS(1940), [aux_sym_preproc_def_token1] = ACTIONS(1940), + [anon_sym_COMMA] = ACTIONS(2729), [aux_sym_preproc_if_token1] = ACTIONS(1940), - [aux_sym_preproc_if_token2] = ACTIONS(1940), [aux_sym_preproc_ifdef_token1] = ACTIONS(1940), [aux_sym_preproc_ifdef_token2] = ACTIONS(1940), [sym_preproc_directive] = ACTIONS(1940), @@ -263155,7 +267485,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1938), [anon_sym_AMP_AMP] = ACTIONS(1938), [anon_sym_AMP] = ACTIONS(1940), - [anon_sym_SEMI] = ACTIONS(1938), + [anon_sym_SEMI] = ACTIONS(2729), [anon_sym___extension__] = ACTIONS(1940), [anon_sym_typedef] = ACTIONS(1940), [anon_sym_virtual] = ACTIONS(1940), @@ -263167,6 +267497,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_LBRACK] = ACTIONS(1938), [anon_sym___declspec] = ACTIONS(1940), [anon_sym___based] = ACTIONS(1940), + [anon_sym_RBRACE] = ACTIONS(1938), [anon_sym_signed] = ACTIONS(1940), [anon_sym_unsigned] = ACTIONS(1940), [anon_sym_long] = ACTIONS(1940), @@ -263211,155 +267542,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_public] = ACTIONS(1940), [anon_sym_protected] = ACTIONS(1940), [anon_sym_static_assert] = ACTIONS(1940), - [anon_sym_catch] = ACTIONS(1940), - }, - [1920] = { - [sym_identifier] = ACTIONS(2619), - [aux_sym_preproc_def_token1] = ACTIONS(2619), - [aux_sym_preproc_if_token1] = ACTIONS(2619), - [aux_sym_preproc_if_token2] = ACTIONS(2619), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2619), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2619), - [sym_preproc_directive] = ACTIONS(2619), - [anon_sym_LPAREN2] = ACTIONS(2621), - [anon_sym_TILDE] = ACTIONS(2621), - [anon_sym_STAR] = ACTIONS(2621), - [anon_sym_AMP_AMP] = ACTIONS(2621), - [anon_sym_AMP] = ACTIONS(2619), - [anon_sym_SEMI] = ACTIONS(2621), - [anon_sym___extension__] = ACTIONS(2619), - [anon_sym_typedef] = ACTIONS(2619), - [anon_sym_virtual] = ACTIONS(2619), - [anon_sym_extern] = ACTIONS(2619), - [anon_sym___attribute__] = ACTIONS(2619), - [anon_sym___attribute] = ACTIONS(2619), - [anon_sym_using] = ACTIONS(2619), - [anon_sym_COLON_COLON] = ACTIONS(2621), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2621), - [anon_sym___declspec] = ACTIONS(2619), - [anon_sym___based] = ACTIONS(2619), - [anon_sym_signed] = ACTIONS(2619), - [anon_sym_unsigned] = ACTIONS(2619), - [anon_sym_long] = ACTIONS(2619), - [anon_sym_short] = ACTIONS(2619), - [anon_sym_LBRACK] = ACTIONS(2619), - [anon_sym_static] = ACTIONS(2619), - [anon_sym_register] = ACTIONS(2619), - [anon_sym_inline] = ACTIONS(2619), - [anon_sym___inline] = ACTIONS(2619), - [anon_sym___inline__] = ACTIONS(2619), - [anon_sym___forceinline] = ACTIONS(2619), - [anon_sym_thread_local] = ACTIONS(2619), - [anon_sym___thread] = ACTIONS(2619), - [anon_sym_const] = ACTIONS(2619), - [anon_sym_constexpr] = ACTIONS(2619), - [anon_sym_volatile] = ACTIONS(2619), - [anon_sym_restrict] = ACTIONS(2619), - [anon_sym___restrict__] = ACTIONS(2619), - [anon_sym__Atomic] = ACTIONS(2619), - [anon_sym__Noreturn] = ACTIONS(2619), - [anon_sym_noreturn] = ACTIONS(2619), - [anon_sym__Nonnull] = ACTIONS(2619), - [anon_sym_mutable] = ACTIONS(2619), - [anon_sym_constinit] = ACTIONS(2619), - [anon_sym_consteval] = ACTIONS(2619), - [anon_sym_alignas] = ACTIONS(2619), - [anon_sym__Alignas] = ACTIONS(2619), - [sym_primitive_type] = ACTIONS(2619), - [anon_sym_enum] = ACTIONS(2619), - [anon_sym_class] = ACTIONS(2619), - [anon_sym_struct] = ACTIONS(2619), - [anon_sym_union] = ACTIONS(2619), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2619), - [anon_sym_decltype] = ACTIONS(2619), - [anon_sym_explicit] = ACTIONS(2619), - [anon_sym_typename] = ACTIONS(2619), - [anon_sym_private] = ACTIONS(2619), - [anon_sym_template] = ACTIONS(2619), - [anon_sym_operator] = ACTIONS(2619), - [anon_sym_friend] = ACTIONS(2619), - [anon_sym_public] = ACTIONS(2619), - [anon_sym_protected] = ACTIONS(2619), - [anon_sym_static_assert] = ACTIONS(2619), - [anon_sym_catch] = ACTIONS(2619), - }, - [1921] = { - [sym_identifier] = ACTIONS(5617), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5619), - [anon_sym_COMMA] = ACTIONS(5619), - [anon_sym_RPAREN] = ACTIONS(5619), - [aux_sym_preproc_if_token2] = ACTIONS(5619), - [aux_sym_preproc_else_token1] = ACTIONS(5619), - [aux_sym_preproc_elif_token1] = ACTIONS(5617), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5619), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5619), - [anon_sym_LPAREN2] = ACTIONS(5619), - [anon_sym_DASH] = ACTIONS(5617), - [anon_sym_PLUS] = ACTIONS(5617), - [anon_sym_STAR] = ACTIONS(5617), - [anon_sym_SLASH] = ACTIONS(5617), - [anon_sym_PERCENT] = ACTIONS(5617), - [anon_sym_PIPE_PIPE] = ACTIONS(5619), - [anon_sym_AMP_AMP] = ACTIONS(5619), - [anon_sym_PIPE] = ACTIONS(5617), - [anon_sym_CARET] = ACTIONS(5617), - [anon_sym_AMP] = ACTIONS(5617), - [anon_sym_EQ_EQ] = ACTIONS(5619), - [anon_sym_BANG_EQ] = ACTIONS(5619), - [anon_sym_GT] = ACTIONS(5617), - [anon_sym_GT_EQ] = ACTIONS(5619), - [anon_sym_LT_EQ] = ACTIONS(5617), - [anon_sym_LT] = ACTIONS(5617), - [anon_sym_LT_LT] = ACTIONS(5617), - [anon_sym_GT_GT] = ACTIONS(5617), - [anon_sym_SEMI] = ACTIONS(5619), - [anon_sym___attribute__] = ACTIONS(5617), - [anon_sym___attribute] = ACTIONS(5617), - [anon_sym_COLON] = ACTIONS(5617), - [anon_sym_COLON_COLON] = ACTIONS(5454), - [anon_sym_LBRACE] = ACTIONS(5619), - [anon_sym_RBRACE] = ACTIONS(5619), - [anon_sym_LBRACK] = ACTIONS(5619), - [anon_sym_RBRACK] = ACTIONS(5619), - [anon_sym_EQ] = ACTIONS(5617), - [anon_sym_QMARK] = ACTIONS(5619), - [anon_sym_STAR_EQ] = ACTIONS(5619), - [anon_sym_SLASH_EQ] = ACTIONS(5619), - [anon_sym_PERCENT_EQ] = ACTIONS(5619), - [anon_sym_PLUS_EQ] = ACTIONS(5619), - [anon_sym_DASH_EQ] = ACTIONS(5619), - [anon_sym_LT_LT_EQ] = ACTIONS(5619), - [anon_sym_GT_GT_EQ] = ACTIONS(5619), - [anon_sym_AMP_EQ] = ACTIONS(5619), - [anon_sym_CARET_EQ] = ACTIONS(5619), - [anon_sym_PIPE_EQ] = ACTIONS(5619), - [anon_sym_and_eq] = ACTIONS(5617), - [anon_sym_or_eq] = ACTIONS(5617), - [anon_sym_xor_eq] = ACTIONS(5617), - [anon_sym_LT_EQ_GT] = ACTIONS(5619), - [anon_sym_or] = ACTIONS(5617), - [anon_sym_and] = ACTIONS(5617), - [anon_sym_bitor] = ACTIONS(5617), - [anon_sym_xor] = ACTIONS(5617), - [anon_sym_bitand] = ACTIONS(5617), - [anon_sym_not_eq] = ACTIONS(5617), - [anon_sym_DASH_DASH] = ACTIONS(5619), - [anon_sym_PLUS_PLUS] = ACTIONS(5619), - [anon_sym_DOT] = ACTIONS(5617), - [anon_sym_DOT_STAR] = ACTIONS(5619), - [anon_sym_DASH_GT] = ACTIONS(5619), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5617), - [anon_sym_decltype] = ACTIONS(5617), - [anon_sym_final] = ACTIONS(5617), - [anon_sym_override] = ACTIONS(5617), }, - [1922] = { + [1958] = { [sym_identifier] = ACTIONS(1940), [aux_sym_preproc_def_token1] = ACTIONS(1940), - [anon_sym_COMMA] = ACTIONS(2685), + [anon_sym_COMMA] = ACTIONS(2729), [aux_sym_preproc_if_token1] = ACTIONS(1940), + [aux_sym_preproc_if_token2] = ACTIONS(1940), [aux_sym_preproc_ifdef_token1] = ACTIONS(1940), [aux_sym_preproc_ifdef_token2] = ACTIONS(1940), [sym_preproc_directive] = ACTIONS(1940), @@ -263368,19 +267557,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1938), [anon_sym_AMP_AMP] = ACTIONS(1938), [anon_sym_AMP] = ACTIONS(1940), - [anon_sym_SEMI] = ACTIONS(2685), + [anon_sym_SEMI] = ACTIONS(2729), [anon_sym___extension__] = ACTIONS(1940), [anon_sym_typedef] = ACTIONS(1940), [anon_sym_virtual] = ACTIONS(1940), [anon_sym_extern] = ACTIONS(1940), - [anon_sym___attribute__] = ACTIONS(1940), - [anon_sym___attribute] = ACTIONS(1940), + [anon_sym___attribute__] = ACTIONS(5450), + [anon_sym___attribute] = ACTIONS(5450), [anon_sym_using] = ACTIONS(1940), [anon_sym_COLON_COLON] = ACTIONS(1938), [anon_sym_LBRACK_LBRACK] = ACTIONS(1938), [anon_sym___declspec] = ACTIONS(1940), [anon_sym___based] = ACTIONS(1940), - [anon_sym_RBRACE] = ACTIONS(1938), [anon_sym_signed] = ACTIONS(1940), [anon_sym_unsigned] = ACTIONS(1940), [anon_sym_long] = ACTIONS(1940), @@ -263414,121 +267602,618 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(1940), [anon_sym_union] = ACTIONS(1940), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1940), - [anon_sym_decltype] = ACTIONS(1940), - [anon_sym_explicit] = ACTIONS(1940), - [anon_sym_typename] = ACTIONS(1940), - [anon_sym_private] = ACTIONS(1940), - [anon_sym_template] = ACTIONS(1940), - [anon_sym_operator] = ACTIONS(1940), - [anon_sym_friend] = ACTIONS(1940), - [anon_sym_public] = ACTIONS(1940), - [anon_sym_protected] = ACTIONS(1940), - [anon_sym_static_assert] = ACTIONS(1940), + [sym_auto] = ACTIONS(1940), + [anon_sym_decltype] = ACTIONS(1940), + [anon_sym_explicit] = ACTIONS(1940), + [anon_sym_typename] = ACTIONS(1940), + [anon_sym_private] = ACTIONS(1940), + [anon_sym_template] = ACTIONS(1940), + [anon_sym_operator] = ACTIONS(1940), + [anon_sym_friend] = ACTIONS(1940), + [anon_sym_public] = ACTIONS(1940), + [anon_sym_protected] = ACTIONS(1940), + [anon_sym_static_assert] = ACTIONS(1940), + }, + [1959] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1688), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5929), + [anon_sym_COMMA] = ACTIONS(5929), + [anon_sym_RPAREN] = ACTIONS(5929), + [anon_sym_LPAREN2] = ACTIONS(5929), + [anon_sym_DASH] = ACTIONS(5931), + [anon_sym_PLUS] = ACTIONS(5931), + [anon_sym_STAR] = ACTIONS(5929), + [anon_sym_SLASH] = ACTIONS(5931), + [anon_sym_PERCENT] = ACTIONS(5929), + [anon_sym_PIPE_PIPE] = ACTIONS(5929), + [anon_sym_AMP_AMP] = ACTIONS(5929), + [anon_sym_PIPE] = ACTIONS(5931), + [anon_sym_CARET] = ACTIONS(5929), + [anon_sym_AMP] = ACTIONS(5931), + [anon_sym_EQ_EQ] = ACTIONS(5929), + [anon_sym_BANG_EQ] = ACTIONS(5929), + [anon_sym_GT] = ACTIONS(5931), + [anon_sym_GT_EQ] = ACTIONS(5929), + [anon_sym_LT_EQ] = ACTIONS(5931), + [anon_sym_LT] = ACTIONS(5931), + [anon_sym_LT_LT] = ACTIONS(5929), + [anon_sym_GT_GT] = ACTIONS(5929), + [anon_sym_SEMI] = ACTIONS(5929), + [anon_sym___extension__] = ACTIONS(5929), + [anon_sym___attribute__] = ACTIONS(5929), + [anon_sym___attribute] = ACTIONS(5931), + [anon_sym_COLON] = ACTIONS(5929), + [anon_sym_LBRACE] = ACTIONS(5929), + [anon_sym_RBRACE] = ACTIONS(5929), + [anon_sym_signed] = ACTIONS(5895), + [anon_sym_unsigned] = ACTIONS(5895), + [anon_sym_long] = ACTIONS(5895), + [anon_sym_short] = ACTIONS(5895), + [anon_sym_LBRACK] = ACTIONS(5929), + [anon_sym_RBRACK] = ACTIONS(5929), + [anon_sym_const] = ACTIONS(5931), + [anon_sym_constexpr] = ACTIONS(5929), + [anon_sym_volatile] = ACTIONS(5929), + [anon_sym_restrict] = ACTIONS(5929), + [anon_sym___restrict__] = ACTIONS(5929), + [anon_sym__Atomic] = ACTIONS(5929), + [anon_sym__Noreturn] = ACTIONS(5929), + [anon_sym_noreturn] = ACTIONS(5929), + [anon_sym__Nonnull] = ACTIONS(5929), + [anon_sym_mutable] = ACTIONS(5929), + [anon_sym_constinit] = ACTIONS(5929), + [anon_sym_consteval] = ACTIONS(5929), + [anon_sym_alignas] = ACTIONS(5929), + [anon_sym__Alignas] = ACTIONS(5929), + [anon_sym_QMARK] = ACTIONS(5929), + [anon_sym_LT_EQ_GT] = ACTIONS(5929), + [anon_sym_or] = ACTIONS(5929), + [anon_sym_and] = ACTIONS(5929), + [anon_sym_bitor] = ACTIONS(5929), + [anon_sym_xor] = ACTIONS(5929), + [anon_sym_bitand] = ACTIONS(5929), + [anon_sym_not_eq] = ACTIONS(5929), + [anon_sym_DASH_DASH] = ACTIONS(5929), + [anon_sym_PLUS_PLUS] = ACTIONS(5929), + [anon_sym_DOT] = ACTIONS(5931), + [anon_sym_DOT_STAR] = ACTIONS(5929), + [anon_sym_DASH_GT] = ACTIONS(5929), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5929), + [anon_sym_decltype] = ACTIONS(5929), + [anon_sym_final] = ACTIONS(5929), + [anon_sym_override] = ACTIONS(5929), + [anon_sym_requires] = ACTIONS(5929), + }, + [1960] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1946), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5933), + [anon_sym_COMMA] = ACTIONS(5933), + [anon_sym_RPAREN] = ACTIONS(5933), + [anon_sym_LPAREN2] = ACTIONS(5933), + [anon_sym_DASH] = ACTIONS(5935), + [anon_sym_PLUS] = ACTIONS(5935), + [anon_sym_STAR] = ACTIONS(5933), + [anon_sym_SLASH] = ACTIONS(5935), + [anon_sym_PERCENT] = ACTIONS(5933), + [anon_sym_PIPE_PIPE] = ACTIONS(5933), + [anon_sym_AMP_AMP] = ACTIONS(5933), + [anon_sym_PIPE] = ACTIONS(5935), + [anon_sym_CARET] = ACTIONS(5933), + [anon_sym_AMP] = ACTIONS(5935), + [anon_sym_EQ_EQ] = ACTIONS(5933), + [anon_sym_BANG_EQ] = ACTIONS(5933), + [anon_sym_GT] = ACTIONS(5935), + [anon_sym_GT_EQ] = ACTIONS(5933), + [anon_sym_LT_EQ] = ACTIONS(5935), + [anon_sym_LT] = ACTIONS(5935), + [anon_sym_LT_LT] = ACTIONS(5933), + [anon_sym_GT_GT] = ACTIONS(5933), + [anon_sym_SEMI] = ACTIONS(5933), + [anon_sym___extension__] = ACTIONS(5933), + [anon_sym___attribute__] = ACTIONS(5933), + [anon_sym___attribute] = ACTIONS(5935), + [anon_sym_COLON] = ACTIONS(5933), + [anon_sym_LBRACE] = ACTIONS(5933), + [anon_sym_RBRACE] = ACTIONS(5933), + [anon_sym_signed] = ACTIONS(5937), + [anon_sym_unsigned] = ACTIONS(5937), + [anon_sym_long] = ACTIONS(5937), + [anon_sym_short] = ACTIONS(5937), + [anon_sym_LBRACK] = ACTIONS(5933), + [anon_sym_RBRACK] = ACTIONS(5933), + [anon_sym_const] = ACTIONS(5935), + [anon_sym_constexpr] = ACTIONS(5933), + [anon_sym_volatile] = ACTIONS(5933), + [anon_sym_restrict] = ACTIONS(5933), + [anon_sym___restrict__] = ACTIONS(5933), + [anon_sym__Atomic] = ACTIONS(5933), + [anon_sym__Noreturn] = ACTIONS(5933), + [anon_sym_noreturn] = ACTIONS(5933), + [anon_sym__Nonnull] = ACTIONS(5933), + [anon_sym_mutable] = ACTIONS(5933), + [anon_sym_constinit] = ACTIONS(5933), + [anon_sym_consteval] = ACTIONS(5933), + [anon_sym_alignas] = ACTIONS(5933), + [anon_sym__Alignas] = ACTIONS(5933), + [anon_sym_QMARK] = ACTIONS(5933), + [anon_sym_LT_EQ_GT] = ACTIONS(5933), + [anon_sym_or] = ACTIONS(5933), + [anon_sym_and] = ACTIONS(5933), + [anon_sym_bitor] = ACTIONS(5933), + [anon_sym_xor] = ACTIONS(5933), + [anon_sym_bitand] = ACTIONS(5933), + [anon_sym_not_eq] = ACTIONS(5933), + [anon_sym_DASH_DASH] = ACTIONS(5933), + [anon_sym_PLUS_PLUS] = ACTIONS(5933), + [anon_sym_DOT] = ACTIONS(5935), + [anon_sym_DOT_STAR] = ACTIONS(5933), + [anon_sym_DASH_GT] = ACTIONS(5933), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5933), + [anon_sym_decltype] = ACTIONS(5933), + [anon_sym_final] = ACTIONS(5933), + [anon_sym_override] = ACTIONS(5933), + [anon_sym_requires] = ACTIONS(5933), + }, + [1961] = { + [sym_identifier] = ACTIONS(5939), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5941), + [anon_sym_COMMA] = ACTIONS(5941), + [anon_sym_RPAREN] = ACTIONS(5941), + [aux_sym_preproc_if_token2] = ACTIONS(5941), + [aux_sym_preproc_else_token1] = ACTIONS(5941), + [aux_sym_preproc_elif_token1] = ACTIONS(5939), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5941), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5941), + [anon_sym_LPAREN2] = ACTIONS(5941), + [anon_sym_DASH] = ACTIONS(5939), + [anon_sym_PLUS] = ACTIONS(5939), + [anon_sym_STAR] = ACTIONS(5939), + [anon_sym_SLASH] = ACTIONS(5939), + [anon_sym_PERCENT] = ACTIONS(5939), + [anon_sym_PIPE_PIPE] = ACTIONS(5941), + [anon_sym_AMP_AMP] = ACTIONS(5941), + [anon_sym_PIPE] = ACTIONS(5939), + [anon_sym_CARET] = ACTIONS(5939), + [anon_sym_AMP] = ACTIONS(5939), + [anon_sym_EQ_EQ] = ACTIONS(5941), + [anon_sym_BANG_EQ] = ACTIONS(5941), + [anon_sym_GT] = ACTIONS(5939), + [anon_sym_GT_EQ] = ACTIONS(5941), + [anon_sym_LT_EQ] = ACTIONS(5939), + [anon_sym_LT] = ACTIONS(5939), + [anon_sym_LT_LT] = ACTIONS(5939), + [anon_sym_GT_GT] = ACTIONS(5939), + [anon_sym_SEMI] = ACTIONS(5941), + [anon_sym___attribute__] = ACTIONS(5939), + [anon_sym___attribute] = ACTIONS(5939), + [anon_sym_COLON] = ACTIONS(5941), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5941), + [anon_sym_LBRACE] = ACTIONS(5941), + [anon_sym_RBRACE] = ACTIONS(5941), + [anon_sym_LBRACK] = ACTIONS(5939), + [anon_sym_RBRACK] = ACTIONS(5941), + [anon_sym_EQ] = ACTIONS(5939), + [anon_sym_QMARK] = ACTIONS(5941), + [anon_sym_STAR_EQ] = ACTIONS(5941), + [anon_sym_SLASH_EQ] = ACTIONS(5941), + [anon_sym_PERCENT_EQ] = ACTIONS(5941), + [anon_sym_PLUS_EQ] = ACTIONS(5941), + [anon_sym_DASH_EQ] = ACTIONS(5941), + [anon_sym_LT_LT_EQ] = ACTIONS(5941), + [anon_sym_GT_GT_EQ] = ACTIONS(5941), + [anon_sym_AMP_EQ] = ACTIONS(5941), + [anon_sym_CARET_EQ] = ACTIONS(5941), + [anon_sym_PIPE_EQ] = ACTIONS(5941), + [anon_sym_and_eq] = ACTIONS(5939), + [anon_sym_or_eq] = ACTIONS(5939), + [anon_sym_xor_eq] = ACTIONS(5939), + [anon_sym_LT_EQ_GT] = ACTIONS(5941), + [anon_sym_or] = ACTIONS(5939), + [anon_sym_and] = ACTIONS(5939), + [anon_sym_bitor] = ACTIONS(5939), + [anon_sym_xor] = ACTIONS(5939), + [anon_sym_bitand] = ACTIONS(5939), + [anon_sym_not_eq] = ACTIONS(5939), + [anon_sym_DASH_DASH] = ACTIONS(5941), + [anon_sym_PLUS_PLUS] = ACTIONS(5941), + [anon_sym_asm] = ACTIONS(5939), + [anon_sym___asm__] = ACTIONS(5939), + [anon_sym___asm] = ACTIONS(5939), + [anon_sym_DOT] = ACTIONS(5939), + [anon_sym_DOT_STAR] = ACTIONS(5941), + [anon_sym_DASH_GT] = ACTIONS(5941), + [sym_comment] = ACTIONS(3), + [anon_sym_try] = ACTIONS(5939), + }, + [1962] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1948), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5778), + [anon_sym_COMMA] = ACTIONS(5778), + [anon_sym_RPAREN] = ACTIONS(5778), + [anon_sym_LPAREN2] = ACTIONS(5778), + [anon_sym_DASH] = ACTIONS(5776), + [anon_sym_PLUS] = ACTIONS(5776), + [anon_sym_STAR] = ACTIONS(5778), + [anon_sym_SLASH] = ACTIONS(5776), + [anon_sym_PERCENT] = ACTIONS(5778), + [anon_sym_PIPE_PIPE] = ACTIONS(5778), + [anon_sym_AMP_AMP] = ACTIONS(5778), + [anon_sym_PIPE] = ACTIONS(5776), + [anon_sym_CARET] = ACTIONS(5778), + [anon_sym_AMP] = ACTIONS(5776), + [anon_sym_EQ_EQ] = ACTIONS(5778), + [anon_sym_BANG_EQ] = ACTIONS(5778), + [anon_sym_GT] = ACTIONS(5776), + [anon_sym_GT_EQ] = ACTIONS(5778), + [anon_sym_LT_EQ] = ACTIONS(5776), + [anon_sym_LT] = ACTIONS(5776), + [anon_sym_LT_LT] = ACTIONS(5778), + [anon_sym_GT_GT] = ACTIONS(5778), + [anon_sym_SEMI] = ACTIONS(5778), + [anon_sym___extension__] = ACTIONS(5778), + [anon_sym___attribute__] = ACTIONS(5778), + [anon_sym___attribute] = ACTIONS(5776), + [anon_sym_COLON] = ACTIONS(5778), + [anon_sym_LBRACE] = ACTIONS(5778), + [anon_sym_RBRACE] = ACTIONS(5778), + [anon_sym_signed] = ACTIONS(5923), + [anon_sym_unsigned] = ACTIONS(5923), + [anon_sym_long] = ACTIONS(5923), + [anon_sym_short] = ACTIONS(5923), + [anon_sym_LBRACK] = ACTIONS(5778), + [anon_sym_RBRACK] = ACTIONS(5778), + [anon_sym_const] = ACTIONS(5776), + [anon_sym_constexpr] = ACTIONS(5778), + [anon_sym_volatile] = ACTIONS(5778), + [anon_sym_restrict] = ACTIONS(5778), + [anon_sym___restrict__] = ACTIONS(5778), + [anon_sym__Atomic] = ACTIONS(5778), + [anon_sym__Noreturn] = ACTIONS(5778), + [anon_sym_noreturn] = ACTIONS(5778), + [anon_sym__Nonnull] = ACTIONS(5778), + [anon_sym_mutable] = ACTIONS(5778), + [anon_sym_constinit] = ACTIONS(5778), + [anon_sym_consteval] = ACTIONS(5778), + [anon_sym_alignas] = ACTIONS(5778), + [anon_sym__Alignas] = ACTIONS(5778), + [anon_sym_QMARK] = ACTIONS(5778), + [anon_sym_LT_EQ_GT] = ACTIONS(5778), + [anon_sym_or] = ACTIONS(5778), + [anon_sym_and] = ACTIONS(5778), + [anon_sym_bitor] = ACTIONS(5778), + [anon_sym_xor] = ACTIONS(5778), + [anon_sym_bitand] = ACTIONS(5778), + [anon_sym_not_eq] = ACTIONS(5778), + [anon_sym_DASH_DASH] = ACTIONS(5778), + [anon_sym_PLUS_PLUS] = ACTIONS(5778), + [anon_sym_DOT] = ACTIONS(5776), + [anon_sym_DOT_STAR] = ACTIONS(5778), + [anon_sym_DASH_GT] = ACTIONS(5778), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5778), + [anon_sym_decltype] = ACTIONS(5778), + [anon_sym_final] = ACTIONS(5778), + [anon_sym_override] = ACTIONS(5778), + [anon_sym_requires] = ACTIONS(5778), + }, + [1963] = { + [sym__declaration_modifiers] = STATE(2095), + [sym__declaration_specifiers] = STATE(4891), + [sym_attribute_specifier] = STATE(2095), + [sym_attribute_declaration] = STATE(2095), + [sym_ms_declspec_modifier] = STATE(2095), + [sym_storage_class_specifier] = STATE(2095), + [sym_type_qualifier] = STATE(2095), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym_dependent_type] = STATE(2558), + [sym_template_type] = STATE(2439), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(6715), + [sym_qualified_type_identifier] = STATE(3138), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(5226), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1262), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(5228), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(69), + [anon_sym__Alignas] = ACTIONS(69), + [sym_primitive_type] = ACTIONS(3019), + [anon_sym_enum] = ACTIONS(73), + [anon_sym_class] = ACTIONS(75), + [anon_sym_struct] = ACTIONS(77), + [anon_sym_union] = ACTIONS(79), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(125), + [anon_sym_decltype] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(131), + [anon_sym_template] = ACTIONS(1268), + }, + [1964] = { + [sym_identifier] = ACTIONS(2611), + [aux_sym_preproc_def_token1] = ACTIONS(2611), + [aux_sym_preproc_if_token1] = ACTIONS(2611), + [aux_sym_preproc_if_token2] = ACTIONS(2611), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2611), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2611), + [sym_preproc_directive] = ACTIONS(2611), + [anon_sym_LPAREN2] = ACTIONS(2613), + [anon_sym_TILDE] = ACTIONS(2613), + [anon_sym_STAR] = ACTIONS(2613), + [anon_sym_AMP_AMP] = ACTIONS(2613), + [anon_sym_AMP] = ACTIONS(2611), + [anon_sym_SEMI] = ACTIONS(2613), + [anon_sym___extension__] = ACTIONS(2611), + [anon_sym_typedef] = ACTIONS(2611), + [anon_sym_virtual] = ACTIONS(2611), + [anon_sym_extern] = ACTIONS(2611), + [anon_sym___attribute__] = ACTIONS(2611), + [anon_sym___attribute] = ACTIONS(2611), + [anon_sym_using] = ACTIONS(2611), + [anon_sym_COLON_COLON] = ACTIONS(2613), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2613), + [anon_sym___declspec] = ACTIONS(2611), + [anon_sym___based] = ACTIONS(2611), + [anon_sym_signed] = ACTIONS(2611), + [anon_sym_unsigned] = ACTIONS(2611), + [anon_sym_long] = ACTIONS(2611), + [anon_sym_short] = ACTIONS(2611), + [anon_sym_LBRACK] = ACTIONS(2611), + [anon_sym_static] = ACTIONS(2611), + [anon_sym_register] = ACTIONS(2611), + [anon_sym_inline] = ACTIONS(2611), + [anon_sym___inline] = ACTIONS(2611), + [anon_sym___inline__] = ACTIONS(2611), + [anon_sym___forceinline] = ACTIONS(2611), + [anon_sym_thread_local] = ACTIONS(2611), + [anon_sym___thread] = ACTIONS(2611), + [anon_sym_const] = ACTIONS(2611), + [anon_sym_constexpr] = ACTIONS(2611), + [anon_sym_volatile] = ACTIONS(2611), + [anon_sym_restrict] = ACTIONS(2611), + [anon_sym___restrict__] = ACTIONS(2611), + [anon_sym__Atomic] = ACTIONS(2611), + [anon_sym__Noreturn] = ACTIONS(2611), + [anon_sym_noreturn] = ACTIONS(2611), + [anon_sym__Nonnull] = ACTIONS(2611), + [anon_sym_mutable] = ACTIONS(2611), + [anon_sym_constinit] = ACTIONS(2611), + [anon_sym_consteval] = ACTIONS(2611), + [anon_sym_alignas] = ACTIONS(2611), + [anon_sym__Alignas] = ACTIONS(2611), + [sym_primitive_type] = ACTIONS(2611), + [anon_sym_enum] = ACTIONS(2611), + [anon_sym_class] = ACTIONS(2611), + [anon_sym_struct] = ACTIONS(2611), + [anon_sym_union] = ACTIONS(2611), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2611), + [anon_sym_decltype] = ACTIONS(2611), + [anon_sym_explicit] = ACTIONS(2611), + [anon_sym_typename] = ACTIONS(2611), + [anon_sym_private] = ACTIONS(2611), + [anon_sym_template] = ACTIONS(2611), + [anon_sym_operator] = ACTIONS(2611), + [anon_sym_friend] = ACTIONS(2611), + [anon_sym_public] = ACTIONS(2611), + [anon_sym_protected] = ACTIONS(2611), + [anon_sym_static_assert] = ACTIONS(2611), + [anon_sym_catch] = ACTIONS(2611), + }, + [1965] = { + [sym__declaration_modifiers] = STATE(2095), + [sym__declaration_specifiers] = STATE(4874), + [sym_attribute_specifier] = STATE(2095), + [sym_attribute_declaration] = STATE(2095), + [sym_ms_declspec_modifier] = STATE(2095), + [sym_storage_class_specifier] = STATE(2095), + [sym_type_qualifier] = STATE(2095), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym_dependent_type] = STATE(2558), + [sym_template_type] = STATE(2439), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(6715), + [sym_qualified_type_identifier] = STATE(3138), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(5226), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1262), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(5228), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(69), + [anon_sym__Alignas] = ACTIONS(69), + [sym_primitive_type] = ACTIONS(3019), + [anon_sym_enum] = ACTIONS(73), + [anon_sym_class] = ACTIONS(75), + [anon_sym_struct] = ACTIONS(77), + [anon_sym_union] = ACTIONS(79), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(125), + [anon_sym_decltype] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(131), + [anon_sym_template] = ACTIONS(1268), }, - [1923] = { - [sym_identifier] = ACTIONS(5617), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5619), - [anon_sym_COMMA] = ACTIONS(5619), - [anon_sym_RPAREN] = ACTIONS(5619), - [aux_sym_preproc_if_token2] = ACTIONS(5619), - [aux_sym_preproc_else_token1] = ACTIONS(5619), - [aux_sym_preproc_elif_token1] = ACTIONS(5617), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5619), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5619), - [anon_sym_LPAREN2] = ACTIONS(5619), - [anon_sym_DASH] = ACTIONS(5617), - [anon_sym_PLUS] = ACTIONS(5617), - [anon_sym_STAR] = ACTIONS(5617), - [anon_sym_SLASH] = ACTIONS(5617), - [anon_sym_PERCENT] = ACTIONS(5617), - [anon_sym_PIPE_PIPE] = ACTIONS(5619), - [anon_sym_AMP_AMP] = ACTIONS(5619), - [anon_sym_PIPE] = ACTIONS(5617), - [anon_sym_CARET] = ACTIONS(5617), - [anon_sym_AMP] = ACTIONS(5617), - [anon_sym_EQ_EQ] = ACTIONS(5619), - [anon_sym_BANG_EQ] = ACTIONS(5619), - [anon_sym_GT] = ACTIONS(5617), - [anon_sym_GT_EQ] = ACTIONS(5619), - [anon_sym_LT_EQ] = ACTIONS(5617), - [anon_sym_LT] = ACTIONS(5617), - [anon_sym_LT_LT] = ACTIONS(5617), - [anon_sym_GT_GT] = ACTIONS(5617), - [anon_sym_SEMI] = ACTIONS(5619), - [anon_sym___attribute__] = ACTIONS(5617), - [anon_sym___attribute] = ACTIONS(5617), - [anon_sym_COLON] = ACTIONS(5617), - [anon_sym_COLON_COLON] = ACTIONS(5454), - [anon_sym_LBRACE] = ACTIONS(5619), - [anon_sym_RBRACE] = ACTIONS(5619), - [anon_sym_LBRACK] = ACTIONS(5619), - [anon_sym_RBRACK] = ACTIONS(5619), - [anon_sym_EQ] = ACTIONS(5617), - [anon_sym_QMARK] = ACTIONS(5619), - [anon_sym_STAR_EQ] = ACTIONS(5619), - [anon_sym_SLASH_EQ] = ACTIONS(5619), - [anon_sym_PERCENT_EQ] = ACTIONS(5619), - [anon_sym_PLUS_EQ] = ACTIONS(5619), - [anon_sym_DASH_EQ] = ACTIONS(5619), - [anon_sym_LT_LT_EQ] = ACTIONS(5619), - [anon_sym_GT_GT_EQ] = ACTIONS(5619), - [anon_sym_AMP_EQ] = ACTIONS(5619), - [anon_sym_CARET_EQ] = ACTIONS(5619), - [anon_sym_PIPE_EQ] = ACTIONS(5619), - [anon_sym_and_eq] = ACTIONS(5617), - [anon_sym_or_eq] = ACTIONS(5617), - [anon_sym_xor_eq] = ACTIONS(5617), - [anon_sym_LT_EQ_GT] = ACTIONS(5619), - [anon_sym_or] = ACTIONS(5617), - [anon_sym_and] = ACTIONS(5617), - [anon_sym_bitor] = ACTIONS(5617), - [anon_sym_xor] = ACTIONS(5617), - [anon_sym_bitand] = ACTIONS(5617), - [anon_sym_not_eq] = ACTIONS(5617), - [anon_sym_DASH_DASH] = ACTIONS(5619), - [anon_sym_PLUS_PLUS] = ACTIONS(5619), - [anon_sym_DOT] = ACTIONS(5617), - [anon_sym_DOT_STAR] = ACTIONS(5619), - [anon_sym_DASH_GT] = ACTIONS(5619), + [1966] = { + [sym_identifier] = ACTIONS(5545), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5547), + [anon_sym_COMMA] = ACTIONS(5547), + [anon_sym_RPAREN] = ACTIONS(5547), + [aux_sym_preproc_if_token2] = ACTIONS(5547), + [aux_sym_preproc_else_token1] = ACTIONS(5547), + [aux_sym_preproc_elif_token1] = ACTIONS(5545), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5547), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5547), + [anon_sym_LPAREN2] = ACTIONS(5547), + [anon_sym_DASH] = ACTIONS(5545), + [anon_sym_PLUS] = ACTIONS(5545), + [anon_sym_STAR] = ACTIONS(5545), + [anon_sym_SLASH] = ACTIONS(5545), + [anon_sym_PERCENT] = ACTIONS(5545), + [anon_sym_PIPE_PIPE] = ACTIONS(5547), + [anon_sym_AMP_AMP] = ACTIONS(5547), + [anon_sym_PIPE] = ACTIONS(5545), + [anon_sym_CARET] = ACTIONS(5545), + [anon_sym_AMP] = ACTIONS(5545), + [anon_sym_EQ_EQ] = ACTIONS(5547), + [anon_sym_BANG_EQ] = ACTIONS(5547), + [anon_sym_GT] = ACTIONS(5545), + [anon_sym_GT_EQ] = ACTIONS(5547), + [anon_sym_LT_EQ] = ACTIONS(5545), + [anon_sym_LT] = ACTIONS(5545), + [anon_sym_LT_LT] = ACTIONS(5545), + [anon_sym_GT_GT] = ACTIONS(5545), + [anon_sym_SEMI] = ACTIONS(5547), + [anon_sym___attribute__] = ACTIONS(5545), + [anon_sym___attribute] = ACTIONS(5545), + [anon_sym_COLON] = ACTIONS(5545), + [anon_sym_COLON_COLON] = ACTIONS(5547), + [anon_sym_LBRACE] = ACTIONS(5547), + [anon_sym_RBRACE] = ACTIONS(5547), + [anon_sym_LBRACK] = ACTIONS(5547), + [anon_sym_RBRACK] = ACTIONS(5547), + [anon_sym_EQ] = ACTIONS(5545), + [anon_sym_QMARK] = ACTIONS(5547), + [anon_sym_STAR_EQ] = ACTIONS(5547), + [anon_sym_SLASH_EQ] = ACTIONS(5547), + [anon_sym_PERCENT_EQ] = ACTIONS(5547), + [anon_sym_PLUS_EQ] = ACTIONS(5547), + [anon_sym_DASH_EQ] = ACTIONS(5547), + [anon_sym_LT_LT_EQ] = ACTIONS(5547), + [anon_sym_GT_GT_EQ] = ACTIONS(5547), + [anon_sym_AMP_EQ] = ACTIONS(5547), + [anon_sym_CARET_EQ] = ACTIONS(5547), + [anon_sym_PIPE_EQ] = ACTIONS(5547), + [anon_sym_and_eq] = ACTIONS(5545), + [anon_sym_or_eq] = ACTIONS(5545), + [anon_sym_xor_eq] = ACTIONS(5545), + [anon_sym_LT_EQ_GT] = ACTIONS(5547), + [anon_sym_or] = ACTIONS(5545), + [anon_sym_and] = ACTIONS(5545), + [anon_sym_bitor] = ACTIONS(5545), + [anon_sym_xor] = ACTIONS(5545), + [anon_sym_bitand] = ACTIONS(5545), + [anon_sym_not_eq] = ACTIONS(5545), + [anon_sym_DASH_DASH] = ACTIONS(5547), + [anon_sym_PLUS_PLUS] = ACTIONS(5547), + [anon_sym_DOT] = ACTIONS(5545), + [anon_sym_DOT_STAR] = ACTIONS(5547), + [anon_sym_DASH_GT] = ACTIONS(5547), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5617), - [anon_sym_decltype] = ACTIONS(5617), - [anon_sym_final] = ACTIONS(5617), - [anon_sym_override] = ACTIONS(5617), + [sym_auto] = ACTIONS(5545), + [anon_sym_decltype] = ACTIONS(5545), + [anon_sym_final] = ACTIONS(5545), + [anon_sym_override] = ACTIONS(5545), }, - [1924] = { - [sym__declaration_modifiers] = STATE(2136), - [sym__declaration_specifiers] = STATE(4798), - [sym_attribute_specifier] = STATE(2136), - [sym_attribute_declaration] = STATE(2136), - [sym_ms_declspec_modifier] = STATE(2136), - [sym_storage_class_specifier] = STATE(2136), - [sym_type_qualifier] = STATE(2136), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym_dependent_type] = STATE(2523), - [sym_template_type] = STATE(2406), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(6627), - [sym_qualified_type_identifier] = STATE(3015), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [sym_identifier] = ACTIONS(5218), + [1967] = { + [sym__declaration_modifiers] = STATE(2095), + [sym__declaration_specifiers] = STATE(4859), + [sym_attribute_specifier] = STATE(2095), + [sym_attribute_declaration] = STATE(2095), + [sym_ms_declspec_modifier] = STATE(2095), + [sym_storage_class_specifier] = STATE(2095), + [sym_type_qualifier] = STATE(2095), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym_dependent_type] = STATE(2558), + [sym_template_type] = STATE(2439), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(6715), + [sym_qualified_type_identifier] = STATE(3138), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(5226), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1446), + [anon_sym_virtual] = ACTIONS(1262), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5220), + [anon_sym_COLON_COLON] = ACTIONS(5228), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), [anon_sym_signed] = ACTIONS(59), @@ -263557,7 +268242,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2999), + [sym_primitive_type] = ACTIONS(3019), [anon_sym_enum] = ACTIONS(73), [anon_sym_class] = ACTIONS(75), [anon_sym_struct] = ACTIONS(77), @@ -263566,40 +268251,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), }, - [1925] = { - [sym__declaration_modifiers] = STATE(2136), - [sym__declaration_specifiers] = STATE(4780), - [sym_attribute_specifier] = STATE(2136), - [sym_attribute_declaration] = STATE(2136), - [sym_ms_declspec_modifier] = STATE(2136), - [sym_storage_class_specifier] = STATE(2136), - [sym_type_qualifier] = STATE(2136), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym_dependent_type] = STATE(2523), - [sym_template_type] = STATE(2406), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(6627), - [sym_qualified_type_identifier] = STATE(3015), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [sym_identifier] = ACTIONS(5218), + [1968] = { + [sym__declaration_modifiers] = STATE(2095), + [sym__declaration_specifiers] = STATE(4902), + [sym_attribute_specifier] = STATE(2095), + [sym_attribute_declaration] = STATE(2095), + [sym_ms_declspec_modifier] = STATE(2095), + [sym_storage_class_specifier] = STATE(2095), + [sym_type_qualifier] = STATE(2095), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym_dependent_type] = STATE(2558), + [sym_template_type] = STATE(2439), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(6715), + [sym_qualified_type_identifier] = STATE(3138), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(5226), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1446), + [anon_sym_virtual] = ACTIONS(1262), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5220), + [anon_sym_COLON_COLON] = ACTIONS(5228), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), [anon_sym_signed] = ACTIONS(59), @@ -263628,7 +268313,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2999), + [sym_primitive_type] = ACTIONS(3019), [anon_sym_enum] = ACTIONS(73), [anon_sym_class] = ACTIONS(75), [anon_sym_struct] = ACTIONS(77), @@ -263637,253 +268322,892 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_template] = ACTIONS(1268), }, - [1926] = { - [sym_type_qualifier] = STATE(1926), - [sym_alignas_qualifier] = STATE(2229), - [aux_sym__type_definition_type_repeat1] = STATE(1926), - [sym_identifier] = ACTIONS(5047), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5049), - [anon_sym_COMMA] = ACTIONS(5049), - [anon_sym_LPAREN2] = ACTIONS(5049), - [anon_sym_DASH] = ACTIONS(5047), - [anon_sym_PLUS] = ACTIONS(5047), - [anon_sym_STAR] = ACTIONS(5049), - [anon_sym_SLASH] = ACTIONS(5047), - [anon_sym_PERCENT] = ACTIONS(5049), - [anon_sym_PIPE_PIPE] = ACTIONS(5049), - [anon_sym_AMP_AMP] = ACTIONS(5049), - [anon_sym_PIPE] = ACTIONS(5047), - [anon_sym_CARET] = ACTIONS(5049), - [anon_sym_AMP] = ACTIONS(5047), - [anon_sym_EQ_EQ] = ACTIONS(5049), - [anon_sym_BANG_EQ] = ACTIONS(5049), - [anon_sym_GT] = ACTIONS(5047), - [anon_sym_GT_EQ] = ACTIONS(5047), - [anon_sym_LT_EQ] = ACTIONS(5047), - [anon_sym_LT] = ACTIONS(5047), - [anon_sym_LT_LT] = ACTIONS(5049), - [anon_sym_GT_GT] = ACTIONS(5047), - [anon_sym___extension__] = ACTIONS(5880), - [anon_sym___attribute__] = ACTIONS(5047), - [anon_sym___attribute] = ACTIONS(5047), - [anon_sym_LBRACE] = ACTIONS(5049), - [anon_sym_signed] = ACTIONS(5047), - [anon_sym_unsigned] = ACTIONS(5047), - [anon_sym_long] = ACTIONS(5047), - [anon_sym_short] = ACTIONS(5047), - [anon_sym_LBRACK] = ACTIONS(5049), - [anon_sym_const] = ACTIONS(5880), - [anon_sym_constexpr] = ACTIONS(5880), - [anon_sym_volatile] = ACTIONS(5880), - [anon_sym_restrict] = ACTIONS(5880), - [anon_sym___restrict__] = ACTIONS(5880), - [anon_sym__Atomic] = ACTIONS(5880), - [anon_sym__Noreturn] = ACTIONS(5880), - [anon_sym_noreturn] = ACTIONS(5880), - [anon_sym__Nonnull] = ACTIONS(5880), - [anon_sym_mutable] = ACTIONS(5880), - [anon_sym_constinit] = ACTIONS(5880), - [anon_sym_consteval] = ACTIONS(5880), - [anon_sym_alignas] = ACTIONS(5883), - [anon_sym__Alignas] = ACTIONS(5883), - [sym_primitive_type] = ACTIONS(5047), - [anon_sym_QMARK] = ACTIONS(5049), - [anon_sym_LT_EQ_GT] = ACTIONS(5049), - [anon_sym_or] = ACTIONS(5047), - [anon_sym_and] = ACTIONS(5047), - [anon_sym_bitor] = ACTIONS(5047), - [anon_sym_xor] = ACTIONS(5047), - [anon_sym_bitand] = ACTIONS(5047), - [anon_sym_not_eq] = ACTIONS(5047), - [anon_sym_DASH_DASH] = ACTIONS(5049), - [anon_sym_PLUS_PLUS] = ACTIONS(5049), - [anon_sym_DOT] = ACTIONS(5047), - [anon_sym_DOT_STAR] = ACTIONS(5049), - [anon_sym_DASH_GT] = ACTIONS(5049), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5047), - [anon_sym_decltype] = ACTIONS(5047), - [anon_sym_final] = ACTIONS(5047), - [anon_sym_override] = ACTIONS(5047), - [anon_sym_GT2] = ACTIONS(5049), - [anon_sym_requires] = ACTIONS(5047), + [1969] = { + [sym__declaration_modifiers] = STATE(2095), + [sym__declaration_specifiers] = STATE(4855), + [sym_attribute_specifier] = STATE(2095), + [sym_attribute_declaration] = STATE(2095), + [sym_ms_declspec_modifier] = STATE(2095), + [sym_storage_class_specifier] = STATE(2095), + [sym_type_qualifier] = STATE(2095), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym_dependent_type] = STATE(2558), + [sym_template_type] = STATE(2439), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(6715), + [sym_qualified_type_identifier] = STATE(3138), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(5226), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1262), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(5228), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(69), + [anon_sym__Alignas] = ACTIONS(69), + [sym_primitive_type] = ACTIONS(3019), + [anon_sym_enum] = ACTIONS(73), + [anon_sym_class] = ACTIONS(75), + [anon_sym_struct] = ACTIONS(77), + [anon_sym_union] = ACTIONS(79), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(125), + [anon_sym_decltype] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(131), + [anon_sym_template] = ACTIONS(1268), }, - [1927] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1928), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5752), - [anon_sym_COMMA] = ACTIONS(5752), - [anon_sym_RPAREN] = ACTIONS(5752), - [anon_sym_LPAREN2] = ACTIONS(5752), - [anon_sym_DASH] = ACTIONS(5750), - [anon_sym_PLUS] = ACTIONS(5750), - [anon_sym_STAR] = ACTIONS(5752), - [anon_sym_SLASH] = ACTIONS(5750), - [anon_sym_PERCENT] = ACTIONS(5752), - [anon_sym_PIPE_PIPE] = ACTIONS(5752), - [anon_sym_AMP_AMP] = ACTIONS(5752), - [anon_sym_PIPE] = ACTIONS(5750), - [anon_sym_CARET] = ACTIONS(5752), - [anon_sym_AMP] = ACTIONS(5750), - [anon_sym_EQ_EQ] = ACTIONS(5752), - [anon_sym_BANG_EQ] = ACTIONS(5752), - [anon_sym_GT] = ACTIONS(5750), - [anon_sym_GT_EQ] = ACTIONS(5752), - [anon_sym_LT_EQ] = ACTIONS(5750), - [anon_sym_LT] = ACTIONS(5750), - [anon_sym_LT_LT] = ACTIONS(5752), - [anon_sym_GT_GT] = ACTIONS(5752), - [anon_sym_SEMI] = ACTIONS(5752), - [anon_sym___extension__] = ACTIONS(5752), - [anon_sym___attribute__] = ACTIONS(5752), - [anon_sym___attribute] = ACTIONS(5750), - [anon_sym_COLON] = ACTIONS(5752), - [anon_sym_LBRACE] = ACTIONS(5752), - [anon_sym_RBRACE] = ACTIONS(5752), - [anon_sym_signed] = ACTIONS(5886), - [anon_sym_unsigned] = ACTIONS(5886), - [anon_sym_long] = ACTIONS(5886), - [anon_sym_short] = ACTIONS(5886), - [anon_sym_LBRACK] = ACTIONS(5752), - [anon_sym_RBRACK] = ACTIONS(5752), - [anon_sym_const] = ACTIONS(5750), - [anon_sym_constexpr] = ACTIONS(5752), - [anon_sym_volatile] = ACTIONS(5752), - [anon_sym_restrict] = ACTIONS(5752), - [anon_sym___restrict__] = ACTIONS(5752), - [anon_sym__Atomic] = ACTIONS(5752), - [anon_sym__Noreturn] = ACTIONS(5752), - [anon_sym_noreturn] = ACTIONS(5752), - [anon_sym__Nonnull] = ACTIONS(5752), - [anon_sym_mutable] = ACTIONS(5752), - [anon_sym_constinit] = ACTIONS(5752), - [anon_sym_consteval] = ACTIONS(5752), - [anon_sym_alignas] = ACTIONS(5752), - [anon_sym__Alignas] = ACTIONS(5752), - [anon_sym_QMARK] = ACTIONS(5752), - [anon_sym_LT_EQ_GT] = ACTIONS(5752), - [anon_sym_or] = ACTIONS(5752), - [anon_sym_and] = ACTIONS(5752), - [anon_sym_bitor] = ACTIONS(5752), - [anon_sym_xor] = ACTIONS(5752), - [anon_sym_bitand] = ACTIONS(5752), - [anon_sym_not_eq] = ACTIONS(5752), - [anon_sym_DASH_DASH] = ACTIONS(5752), - [anon_sym_PLUS_PLUS] = ACTIONS(5752), - [anon_sym_DOT] = ACTIONS(5750), - [anon_sym_DOT_STAR] = ACTIONS(5752), - [anon_sym_DASH_GT] = ACTIONS(5752), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5752), - [anon_sym_decltype] = ACTIONS(5752), - [anon_sym_final] = ACTIONS(5752), - [anon_sym_override] = ACTIONS(5752), - [anon_sym_requires] = ACTIONS(5752), + [1970] = { + [sym_identifier] = ACTIONS(5943), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5945), + [anon_sym_COMMA] = ACTIONS(5945), + [anon_sym_RPAREN] = ACTIONS(5945), + [aux_sym_preproc_if_token2] = ACTIONS(5945), + [aux_sym_preproc_else_token1] = ACTIONS(5945), + [aux_sym_preproc_elif_token1] = ACTIONS(5943), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5945), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5945), + [anon_sym_LPAREN2] = ACTIONS(5945), + [anon_sym_DASH] = ACTIONS(5943), + [anon_sym_PLUS] = ACTIONS(5943), + [anon_sym_STAR] = ACTIONS(5943), + [anon_sym_SLASH] = ACTIONS(5943), + [anon_sym_PERCENT] = ACTIONS(5943), + [anon_sym_PIPE_PIPE] = ACTIONS(5945), + [anon_sym_AMP_AMP] = ACTIONS(5945), + [anon_sym_PIPE] = ACTIONS(5943), + [anon_sym_CARET] = ACTIONS(5943), + [anon_sym_AMP] = ACTIONS(5943), + [anon_sym_EQ_EQ] = ACTIONS(5945), + [anon_sym_BANG_EQ] = ACTIONS(5945), + [anon_sym_GT] = ACTIONS(5943), + [anon_sym_GT_EQ] = ACTIONS(5945), + [anon_sym_LT_EQ] = ACTIONS(5943), + [anon_sym_LT] = ACTIONS(5943), + [anon_sym_LT_LT] = ACTIONS(5943), + [anon_sym_GT_GT] = ACTIONS(5943), + [anon_sym_SEMI] = ACTIONS(5945), + [anon_sym___attribute__] = ACTIONS(5943), + [anon_sym___attribute] = ACTIONS(5943), + [anon_sym_COLON] = ACTIONS(5945), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5945), + [anon_sym_LBRACE] = ACTIONS(5945), + [anon_sym_RBRACE] = ACTIONS(5945), + [anon_sym_LBRACK] = ACTIONS(5943), + [anon_sym_RBRACK] = ACTIONS(5945), + [anon_sym_EQ] = ACTIONS(5943), + [anon_sym_QMARK] = ACTIONS(5945), + [anon_sym_STAR_EQ] = ACTIONS(5945), + [anon_sym_SLASH_EQ] = ACTIONS(5945), + [anon_sym_PERCENT_EQ] = ACTIONS(5945), + [anon_sym_PLUS_EQ] = ACTIONS(5945), + [anon_sym_DASH_EQ] = ACTIONS(5945), + [anon_sym_LT_LT_EQ] = ACTIONS(5945), + [anon_sym_GT_GT_EQ] = ACTIONS(5945), + [anon_sym_AMP_EQ] = ACTIONS(5945), + [anon_sym_CARET_EQ] = ACTIONS(5945), + [anon_sym_PIPE_EQ] = ACTIONS(5945), + [anon_sym_and_eq] = ACTIONS(5943), + [anon_sym_or_eq] = ACTIONS(5943), + [anon_sym_xor_eq] = ACTIONS(5943), + [anon_sym_LT_EQ_GT] = ACTIONS(5945), + [anon_sym_or] = ACTIONS(5943), + [anon_sym_and] = ACTIONS(5943), + [anon_sym_bitor] = ACTIONS(5943), + [anon_sym_xor] = ACTIONS(5943), + [anon_sym_bitand] = ACTIONS(5943), + [anon_sym_not_eq] = ACTIONS(5943), + [anon_sym_DASH_DASH] = ACTIONS(5945), + [anon_sym_PLUS_PLUS] = ACTIONS(5945), + [anon_sym_asm] = ACTIONS(5943), + [anon_sym___asm__] = ACTIONS(5943), + [anon_sym___asm] = ACTIONS(5943), + [anon_sym_DOT] = ACTIONS(5943), + [anon_sym_DOT_STAR] = ACTIONS(5945), + [anon_sym_DASH_GT] = ACTIONS(5945), + [sym_comment] = ACTIONS(3), + [anon_sym_try] = ACTIONS(5943), }, - [1928] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1669), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5888), - [anon_sym_COMMA] = ACTIONS(5888), - [anon_sym_RPAREN] = ACTIONS(5888), - [anon_sym_LPAREN2] = ACTIONS(5888), - [anon_sym_DASH] = ACTIONS(5890), - [anon_sym_PLUS] = ACTIONS(5890), - [anon_sym_STAR] = ACTIONS(5888), - [anon_sym_SLASH] = ACTIONS(5890), - [anon_sym_PERCENT] = ACTIONS(5888), - [anon_sym_PIPE_PIPE] = ACTIONS(5888), - [anon_sym_AMP_AMP] = ACTIONS(5888), - [anon_sym_PIPE] = ACTIONS(5890), - [anon_sym_CARET] = ACTIONS(5888), - [anon_sym_AMP] = ACTIONS(5890), - [anon_sym_EQ_EQ] = ACTIONS(5888), - [anon_sym_BANG_EQ] = ACTIONS(5888), - [anon_sym_GT] = ACTIONS(5890), - [anon_sym_GT_EQ] = ACTIONS(5888), - [anon_sym_LT_EQ] = ACTIONS(5890), - [anon_sym_LT] = ACTIONS(5890), - [anon_sym_LT_LT] = ACTIONS(5888), - [anon_sym_GT_GT] = ACTIONS(5888), - [anon_sym_SEMI] = ACTIONS(5888), - [anon_sym___extension__] = ACTIONS(5888), - [anon_sym___attribute__] = ACTIONS(5888), - [anon_sym___attribute] = ACTIONS(5890), - [anon_sym_COLON] = ACTIONS(5888), - [anon_sym_LBRACE] = ACTIONS(5888), - [anon_sym_RBRACE] = ACTIONS(5888), - [anon_sym_signed] = ACTIONS(5892), - [anon_sym_unsigned] = ACTIONS(5892), - [anon_sym_long] = ACTIONS(5892), - [anon_sym_short] = ACTIONS(5892), - [anon_sym_LBRACK] = ACTIONS(5888), - [anon_sym_RBRACK] = ACTIONS(5888), - [anon_sym_const] = ACTIONS(5890), - [anon_sym_constexpr] = ACTIONS(5888), - [anon_sym_volatile] = ACTIONS(5888), - [anon_sym_restrict] = ACTIONS(5888), - [anon_sym___restrict__] = ACTIONS(5888), - [anon_sym__Atomic] = ACTIONS(5888), - [anon_sym__Noreturn] = ACTIONS(5888), - [anon_sym_noreturn] = ACTIONS(5888), - [anon_sym__Nonnull] = ACTIONS(5888), - [anon_sym_mutable] = ACTIONS(5888), - [anon_sym_constinit] = ACTIONS(5888), - [anon_sym_consteval] = ACTIONS(5888), - [anon_sym_alignas] = ACTIONS(5888), - [anon_sym__Alignas] = ACTIONS(5888), - [anon_sym_QMARK] = ACTIONS(5888), - [anon_sym_LT_EQ_GT] = ACTIONS(5888), - [anon_sym_or] = ACTIONS(5888), - [anon_sym_and] = ACTIONS(5888), - [anon_sym_bitor] = ACTIONS(5888), - [anon_sym_xor] = ACTIONS(5888), - [anon_sym_bitand] = ACTIONS(5888), - [anon_sym_not_eq] = ACTIONS(5888), - [anon_sym_DASH_DASH] = ACTIONS(5888), - [anon_sym_PLUS_PLUS] = ACTIONS(5888), - [anon_sym_DOT] = ACTIONS(5890), - [anon_sym_DOT_STAR] = ACTIONS(5888), - [anon_sym_DASH_GT] = ACTIONS(5888), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5888), - [anon_sym_decltype] = ACTIONS(5888), - [anon_sym_final] = ACTIONS(5888), - [anon_sym_override] = ACTIONS(5888), - [anon_sym_requires] = ACTIONS(5888), + [1971] = { + [sym_identifier] = ACTIONS(5947), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5949), + [anon_sym_COMMA] = ACTIONS(5949), + [anon_sym_RPAREN] = ACTIONS(5949), + [aux_sym_preproc_if_token2] = ACTIONS(5949), + [aux_sym_preproc_else_token1] = ACTIONS(5949), + [aux_sym_preproc_elif_token1] = ACTIONS(5947), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5949), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5949), + [anon_sym_LPAREN2] = ACTIONS(5949), + [anon_sym_DASH] = ACTIONS(5947), + [anon_sym_PLUS] = ACTIONS(5947), + [anon_sym_STAR] = ACTIONS(5947), + [anon_sym_SLASH] = ACTIONS(5947), + [anon_sym_PERCENT] = ACTIONS(5947), + [anon_sym_PIPE_PIPE] = ACTIONS(5949), + [anon_sym_AMP_AMP] = ACTIONS(5949), + [anon_sym_PIPE] = ACTIONS(5947), + [anon_sym_CARET] = ACTIONS(5947), + [anon_sym_AMP] = ACTIONS(5947), + [anon_sym_EQ_EQ] = ACTIONS(5949), + [anon_sym_BANG_EQ] = ACTIONS(5949), + [anon_sym_GT] = ACTIONS(5947), + [anon_sym_GT_EQ] = ACTIONS(5949), + [anon_sym_LT_EQ] = ACTIONS(5947), + [anon_sym_LT] = ACTIONS(5947), + [anon_sym_LT_LT] = ACTIONS(5947), + [anon_sym_GT_GT] = ACTIONS(5947), + [anon_sym_SEMI] = ACTIONS(5949), + [anon_sym___attribute__] = ACTIONS(5947), + [anon_sym___attribute] = ACTIONS(5947), + [anon_sym_COLON] = ACTIONS(5949), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5949), + [anon_sym_LBRACE] = ACTIONS(5949), + [anon_sym_RBRACE] = ACTIONS(5949), + [anon_sym_LBRACK] = ACTIONS(5947), + [anon_sym_RBRACK] = ACTIONS(5949), + [anon_sym_EQ] = ACTIONS(5947), + [anon_sym_QMARK] = ACTIONS(5949), + [anon_sym_STAR_EQ] = ACTIONS(5949), + [anon_sym_SLASH_EQ] = ACTIONS(5949), + [anon_sym_PERCENT_EQ] = ACTIONS(5949), + [anon_sym_PLUS_EQ] = ACTIONS(5949), + [anon_sym_DASH_EQ] = ACTIONS(5949), + [anon_sym_LT_LT_EQ] = ACTIONS(5949), + [anon_sym_GT_GT_EQ] = ACTIONS(5949), + [anon_sym_AMP_EQ] = ACTIONS(5949), + [anon_sym_CARET_EQ] = ACTIONS(5949), + [anon_sym_PIPE_EQ] = ACTIONS(5949), + [anon_sym_and_eq] = ACTIONS(5947), + [anon_sym_or_eq] = ACTIONS(5947), + [anon_sym_xor_eq] = ACTIONS(5947), + [anon_sym_LT_EQ_GT] = ACTIONS(5949), + [anon_sym_or] = ACTIONS(5947), + [anon_sym_and] = ACTIONS(5947), + [anon_sym_bitor] = ACTIONS(5947), + [anon_sym_xor] = ACTIONS(5947), + [anon_sym_bitand] = ACTIONS(5947), + [anon_sym_not_eq] = ACTIONS(5947), + [anon_sym_DASH_DASH] = ACTIONS(5949), + [anon_sym_PLUS_PLUS] = ACTIONS(5949), + [anon_sym_asm] = ACTIONS(5947), + [anon_sym___asm__] = ACTIONS(5947), + [anon_sym___asm] = ACTIONS(5947), + [anon_sym_DOT] = ACTIONS(5947), + [anon_sym_DOT_STAR] = ACTIONS(5949), + [anon_sym_DASH_GT] = ACTIONS(5949), + [sym_comment] = ACTIONS(3), + [anon_sym_try] = ACTIONS(5947), }, - [1929] = { - [sym__declaration_modifiers] = STATE(2136), - [sym__declaration_specifiers] = STATE(4785), - [sym_attribute_specifier] = STATE(2136), - [sym_attribute_declaration] = STATE(2136), - [sym_ms_declspec_modifier] = STATE(2136), - [sym_storage_class_specifier] = STATE(2136), - [sym_type_qualifier] = STATE(2136), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym_dependent_type] = STATE(2523), - [sym_template_type] = STATE(2406), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(6627), - [sym_qualified_type_identifier] = STATE(3015), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [sym_identifier] = ACTIONS(5218), + [1972] = { + [sym_identifier] = ACTIONS(4984), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4991), + [anon_sym_COMMA] = ACTIONS(4991), + [anon_sym_RPAREN] = ACTIONS(4991), + [aux_sym_preproc_if_token2] = ACTIONS(4991), + [aux_sym_preproc_else_token1] = ACTIONS(4991), + [aux_sym_preproc_elif_token1] = ACTIONS(4984), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4991), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4991), + [anon_sym_LPAREN2] = ACTIONS(4991), + [anon_sym_DASH] = ACTIONS(4984), + [anon_sym_PLUS] = ACTIONS(4984), + [anon_sym_STAR] = ACTIONS(4984), + [anon_sym_SLASH] = ACTIONS(4984), + [anon_sym_PERCENT] = ACTIONS(4984), + [anon_sym_PIPE_PIPE] = ACTIONS(4991), + [anon_sym_AMP_AMP] = ACTIONS(4991), + [anon_sym_PIPE] = ACTIONS(4984), + [anon_sym_CARET] = ACTIONS(4984), + [anon_sym_AMP] = ACTIONS(4984), + [anon_sym_EQ_EQ] = ACTIONS(4991), + [anon_sym_BANG_EQ] = ACTIONS(4991), + [anon_sym_GT] = ACTIONS(4984), + [anon_sym_GT_EQ] = ACTIONS(4991), + [anon_sym_LT_EQ] = ACTIONS(4984), + [anon_sym_LT] = ACTIONS(4984), + [anon_sym_LT_LT] = ACTIONS(4984), + [anon_sym_GT_GT] = ACTIONS(4984), + [anon_sym_SEMI] = ACTIONS(4991), + [anon_sym___attribute__] = ACTIONS(4984), + [anon_sym___attribute] = ACTIONS(4984), + [anon_sym_COLON] = ACTIONS(4984), + [anon_sym_COLON_COLON] = ACTIONS(4991), + [anon_sym_LBRACE] = ACTIONS(4991), + [anon_sym_RBRACE] = ACTIONS(4991), + [anon_sym_LBRACK] = ACTIONS(4991), + [anon_sym_RBRACK] = ACTIONS(4991), + [anon_sym_EQ] = ACTIONS(4984), + [anon_sym_QMARK] = ACTIONS(4991), + [anon_sym_STAR_EQ] = ACTIONS(4991), + [anon_sym_SLASH_EQ] = ACTIONS(4991), + [anon_sym_PERCENT_EQ] = ACTIONS(4991), + [anon_sym_PLUS_EQ] = ACTIONS(4991), + [anon_sym_DASH_EQ] = ACTIONS(4991), + [anon_sym_LT_LT_EQ] = ACTIONS(4991), + [anon_sym_GT_GT_EQ] = ACTIONS(4991), + [anon_sym_AMP_EQ] = ACTIONS(4991), + [anon_sym_CARET_EQ] = ACTIONS(4991), + [anon_sym_PIPE_EQ] = ACTIONS(4991), + [anon_sym_and_eq] = ACTIONS(4984), + [anon_sym_or_eq] = ACTIONS(4984), + [anon_sym_xor_eq] = ACTIONS(4984), + [anon_sym_LT_EQ_GT] = ACTIONS(4991), + [anon_sym_or] = ACTIONS(4984), + [anon_sym_and] = ACTIONS(4984), + [anon_sym_bitor] = ACTIONS(4984), + [anon_sym_xor] = ACTIONS(4984), + [anon_sym_bitand] = ACTIONS(4984), + [anon_sym_not_eq] = ACTIONS(4984), + [anon_sym_DASH_DASH] = ACTIONS(4991), + [anon_sym_PLUS_PLUS] = ACTIONS(4991), + [anon_sym_DOT] = ACTIONS(4984), + [anon_sym_DOT_STAR] = ACTIONS(4991), + [anon_sym_DASH_GT] = ACTIONS(4991), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4984), + [anon_sym_decltype] = ACTIONS(4984), + [anon_sym_final] = ACTIONS(4984), + [anon_sym_override] = ACTIONS(4984), + }, + [1973] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1688), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5951), + [anon_sym_COMMA] = ACTIONS(5951), + [anon_sym_RPAREN] = ACTIONS(5951), + [anon_sym_LPAREN2] = ACTIONS(5951), + [anon_sym_DASH] = ACTIONS(5953), + [anon_sym_PLUS] = ACTIONS(5953), + [anon_sym_STAR] = ACTIONS(5951), + [anon_sym_SLASH] = ACTIONS(5953), + [anon_sym_PERCENT] = ACTIONS(5951), + [anon_sym_PIPE_PIPE] = ACTIONS(5951), + [anon_sym_AMP_AMP] = ACTIONS(5951), + [anon_sym_PIPE] = ACTIONS(5953), + [anon_sym_CARET] = ACTIONS(5951), + [anon_sym_AMP] = ACTIONS(5953), + [anon_sym_EQ_EQ] = ACTIONS(5951), + [anon_sym_BANG_EQ] = ACTIONS(5951), + [anon_sym_GT] = ACTIONS(5953), + [anon_sym_GT_EQ] = ACTIONS(5951), + [anon_sym_LT_EQ] = ACTIONS(5953), + [anon_sym_LT] = ACTIONS(5953), + [anon_sym_LT_LT] = ACTIONS(5951), + [anon_sym_GT_GT] = ACTIONS(5951), + [anon_sym_SEMI] = ACTIONS(5951), + [anon_sym___extension__] = ACTIONS(5951), + [anon_sym___attribute__] = ACTIONS(5951), + [anon_sym___attribute] = ACTIONS(5953), + [anon_sym_COLON] = ACTIONS(5951), + [anon_sym_LBRACE] = ACTIONS(5951), + [anon_sym_RBRACE] = ACTIONS(5951), + [anon_sym_signed] = ACTIONS(5895), + [anon_sym_unsigned] = ACTIONS(5895), + [anon_sym_long] = ACTIONS(5895), + [anon_sym_short] = ACTIONS(5895), + [anon_sym_LBRACK] = ACTIONS(5951), + [anon_sym_RBRACK] = ACTIONS(5951), + [anon_sym_const] = ACTIONS(5953), + [anon_sym_constexpr] = ACTIONS(5951), + [anon_sym_volatile] = ACTIONS(5951), + [anon_sym_restrict] = ACTIONS(5951), + [anon_sym___restrict__] = ACTIONS(5951), + [anon_sym__Atomic] = ACTIONS(5951), + [anon_sym__Noreturn] = ACTIONS(5951), + [anon_sym_noreturn] = ACTIONS(5951), + [anon_sym__Nonnull] = ACTIONS(5951), + [anon_sym_mutable] = ACTIONS(5951), + [anon_sym_constinit] = ACTIONS(5951), + [anon_sym_consteval] = ACTIONS(5951), + [anon_sym_alignas] = ACTIONS(5951), + [anon_sym__Alignas] = ACTIONS(5951), + [anon_sym_QMARK] = ACTIONS(5951), + [anon_sym_LT_EQ_GT] = ACTIONS(5951), + [anon_sym_or] = ACTIONS(5951), + [anon_sym_and] = ACTIONS(5951), + [anon_sym_bitor] = ACTIONS(5951), + [anon_sym_xor] = ACTIONS(5951), + [anon_sym_bitand] = ACTIONS(5951), + [anon_sym_not_eq] = ACTIONS(5951), + [anon_sym_DASH_DASH] = ACTIONS(5951), + [anon_sym_PLUS_PLUS] = ACTIONS(5951), + [anon_sym_DOT] = ACTIONS(5953), + [anon_sym_DOT_STAR] = ACTIONS(5951), + [anon_sym_DASH_GT] = ACTIONS(5951), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5951), + [anon_sym_decltype] = ACTIONS(5951), + [anon_sym_final] = ACTIONS(5951), + [anon_sym_override] = ACTIONS(5951), + [anon_sym_requires] = ACTIONS(5951), + }, + [1974] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1974), + [sym_identifier] = ACTIONS(5078), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5080), + [anon_sym_COMMA] = ACTIONS(5080), + [anon_sym_RPAREN] = ACTIONS(5080), + [anon_sym_LPAREN2] = ACTIONS(5080), + [anon_sym_TILDE] = ACTIONS(5080), + [anon_sym_STAR] = ACTIONS(5080), + [anon_sym_AMP_AMP] = ACTIONS(5080), + [anon_sym_AMP] = ACTIONS(5078), + [anon_sym_SEMI] = ACTIONS(5080), + [anon_sym___extension__] = ACTIONS(5078), + [anon_sym_virtual] = ACTIONS(5078), + [anon_sym_extern] = ACTIONS(5078), + [anon_sym___attribute__] = ACTIONS(5078), + [anon_sym___attribute] = ACTIONS(5078), + [anon_sym_COLON_COLON] = ACTIONS(5080), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5080), + [anon_sym___declspec] = ACTIONS(5078), + [anon_sym___based] = ACTIONS(5078), + [anon_sym___cdecl] = ACTIONS(5078), + [anon_sym___clrcall] = ACTIONS(5078), + [anon_sym___stdcall] = ACTIONS(5078), + [anon_sym___fastcall] = ACTIONS(5078), + [anon_sym___thiscall] = ACTIONS(5078), + [anon_sym___vectorcall] = ACTIONS(5078), + [anon_sym_LBRACE] = ACTIONS(5080), + [anon_sym_signed] = ACTIONS(5955), + [anon_sym_unsigned] = ACTIONS(5955), + [anon_sym_long] = ACTIONS(5955), + [anon_sym_short] = ACTIONS(5955), + [anon_sym_LBRACK] = ACTIONS(5078), + [anon_sym_static] = ACTIONS(5078), + [anon_sym_EQ] = ACTIONS(5080), + [anon_sym_register] = ACTIONS(5078), + [anon_sym_inline] = ACTIONS(5078), + [anon_sym___inline] = ACTIONS(5078), + [anon_sym___inline__] = ACTIONS(5078), + [anon_sym___forceinline] = ACTIONS(5078), + [anon_sym_thread_local] = ACTIONS(5078), + [anon_sym___thread] = ACTIONS(5078), + [anon_sym_const] = ACTIONS(5078), + [anon_sym_constexpr] = ACTIONS(5078), + [anon_sym_volatile] = ACTIONS(5078), + [anon_sym_restrict] = ACTIONS(5078), + [anon_sym___restrict__] = ACTIONS(5078), + [anon_sym__Atomic] = ACTIONS(5078), + [anon_sym__Noreturn] = ACTIONS(5078), + [anon_sym_noreturn] = ACTIONS(5078), + [anon_sym__Nonnull] = ACTIONS(5078), + [anon_sym_mutable] = ACTIONS(5078), + [anon_sym_constinit] = ACTIONS(5078), + [anon_sym_consteval] = ACTIONS(5078), + [anon_sym_alignas] = ACTIONS(5078), + [anon_sym__Alignas] = ACTIONS(5078), + [sym_primitive_type] = ACTIONS(5078), + [anon_sym_asm] = ACTIONS(5078), + [anon_sym___asm__] = ACTIONS(5078), + [anon_sym___asm] = ACTIONS(5078), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5078), + [anon_sym_decltype] = ACTIONS(5078), + [anon_sym_final] = ACTIONS(5078), + [anon_sym_override] = ACTIONS(5078), + [anon_sym_template] = ACTIONS(5078), + [anon_sym_GT2] = ACTIONS(5080), + [anon_sym_operator] = ACTIONS(5078), + [anon_sym_try] = ACTIONS(5078), + [anon_sym_requires] = ACTIONS(5078), + }, + [1975] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(4986), + [anon_sym_RPAREN] = ACTIONS(4988), + [anon_sym_LPAREN2] = ACTIONS(4988), + [anon_sym_DASH] = ACTIONS(4993), + [anon_sym_PLUS] = ACTIONS(4993), + [anon_sym_STAR] = ACTIONS(4995), + [anon_sym_SLASH] = ACTIONS(4993), + [anon_sym_PERCENT] = ACTIONS(4993), + [anon_sym_PIPE_PIPE] = ACTIONS(4986), + [anon_sym_AMP_AMP] = ACTIONS(4988), + [anon_sym_PIPE] = ACTIONS(4993), + [anon_sym_CARET] = ACTIONS(4993), + [anon_sym_AMP] = ACTIONS(4995), + [anon_sym_EQ_EQ] = ACTIONS(4986), + [anon_sym_BANG_EQ] = ACTIONS(4986), + [anon_sym_GT] = ACTIONS(4993), + [anon_sym_GT_EQ] = ACTIONS(4986), + [anon_sym_LT_EQ] = ACTIONS(4993), + [anon_sym_LT] = ACTIONS(4993), + [anon_sym_LT_LT] = ACTIONS(4993), + [anon_sym_GT_GT] = ACTIONS(4993), + [anon_sym___extension__] = ACTIONS(4991), + [anon_sym_COLON_COLON] = ACTIONS(4991), + [anon_sym_LBRACE] = ACTIONS(4991), + [anon_sym_LBRACK] = ACTIONS(4988), + [anon_sym_EQ] = ACTIONS(4993), + [anon_sym_const] = ACTIONS(4984), + [anon_sym_constexpr] = ACTIONS(4991), + [anon_sym_volatile] = ACTIONS(4991), + [anon_sym_restrict] = ACTIONS(4991), + [anon_sym___restrict__] = ACTIONS(4991), + [anon_sym__Atomic] = ACTIONS(4991), + [anon_sym__Noreturn] = ACTIONS(4991), + [anon_sym_noreturn] = ACTIONS(4991), + [anon_sym__Nonnull] = ACTIONS(4991), + [anon_sym_mutable] = ACTIONS(4991), + [anon_sym_constinit] = ACTIONS(4991), + [anon_sym_consteval] = ACTIONS(4991), + [anon_sym_alignas] = ACTIONS(4991), + [anon_sym__Alignas] = ACTIONS(4991), + [anon_sym_QMARK] = ACTIONS(4986), + [anon_sym_STAR_EQ] = ACTIONS(4986), + [anon_sym_SLASH_EQ] = ACTIONS(4986), + [anon_sym_PERCENT_EQ] = ACTIONS(4986), + [anon_sym_PLUS_EQ] = ACTIONS(4986), + [anon_sym_DASH_EQ] = ACTIONS(4986), + [anon_sym_LT_LT_EQ] = ACTIONS(4986), + [anon_sym_GT_GT_EQ] = ACTIONS(4986), + [anon_sym_AMP_EQ] = ACTIONS(4986), + [anon_sym_CARET_EQ] = ACTIONS(4986), + [anon_sym_PIPE_EQ] = ACTIONS(4986), + [anon_sym_and_eq] = ACTIONS(4986), + [anon_sym_or_eq] = ACTIONS(4986), + [anon_sym_xor_eq] = ACTIONS(4986), + [anon_sym_LT_EQ_GT] = ACTIONS(4986), + [anon_sym_or] = ACTIONS(4993), + [anon_sym_and] = ACTIONS(4993), + [anon_sym_bitor] = ACTIONS(4986), + [anon_sym_xor] = ACTIONS(4993), + [anon_sym_bitand] = ACTIONS(4986), + [anon_sym_not_eq] = ACTIONS(4986), + [anon_sym_DASH_DASH] = ACTIONS(4986), + [anon_sym_PLUS_PLUS] = ACTIONS(4986), + [anon_sym_DOT] = ACTIONS(4993), + [anon_sym_DOT_STAR] = ACTIONS(4986), + [anon_sym_DASH_GT] = ACTIONS(4986), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4991), + [anon_sym_decltype] = ACTIONS(4991), + }, + [1976] = { + [sym_identifier] = ACTIONS(5958), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5960), + [anon_sym_COMMA] = ACTIONS(5960), + [anon_sym_RPAREN] = ACTIONS(5960), + [aux_sym_preproc_if_token2] = ACTIONS(5960), + [aux_sym_preproc_else_token1] = ACTIONS(5960), + [aux_sym_preproc_elif_token1] = ACTIONS(5958), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5960), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5960), + [anon_sym_LPAREN2] = ACTIONS(5960), + [anon_sym_DASH] = ACTIONS(5958), + [anon_sym_PLUS] = ACTIONS(5958), + [anon_sym_STAR] = ACTIONS(5958), + [anon_sym_SLASH] = ACTIONS(5958), + [anon_sym_PERCENT] = ACTIONS(5958), + [anon_sym_PIPE_PIPE] = ACTIONS(5960), + [anon_sym_AMP_AMP] = ACTIONS(5960), + [anon_sym_PIPE] = ACTIONS(5958), + [anon_sym_CARET] = ACTIONS(5958), + [anon_sym_AMP] = ACTIONS(5958), + [anon_sym_EQ_EQ] = ACTIONS(5960), + [anon_sym_BANG_EQ] = ACTIONS(5960), + [anon_sym_GT] = ACTIONS(5958), + [anon_sym_GT_EQ] = ACTIONS(5960), + [anon_sym_LT_EQ] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5958), + [anon_sym_LT_LT] = ACTIONS(5958), + [anon_sym_GT_GT] = ACTIONS(5958), + [anon_sym_SEMI] = ACTIONS(5960), + [anon_sym___attribute__] = ACTIONS(5958), + [anon_sym___attribute] = ACTIONS(5958), + [anon_sym_COLON] = ACTIONS(5960), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5960), + [anon_sym_LBRACE] = ACTIONS(5960), + [anon_sym_RBRACE] = ACTIONS(5960), + [anon_sym_LBRACK] = ACTIONS(5958), + [anon_sym_RBRACK] = ACTIONS(5960), + [anon_sym_EQ] = ACTIONS(5958), + [anon_sym_QMARK] = ACTIONS(5960), + [anon_sym_STAR_EQ] = ACTIONS(5960), + [anon_sym_SLASH_EQ] = ACTIONS(5960), + [anon_sym_PERCENT_EQ] = ACTIONS(5960), + [anon_sym_PLUS_EQ] = ACTIONS(5960), + [anon_sym_DASH_EQ] = ACTIONS(5960), + [anon_sym_LT_LT_EQ] = ACTIONS(5960), + [anon_sym_GT_GT_EQ] = ACTIONS(5960), + [anon_sym_AMP_EQ] = ACTIONS(5960), + [anon_sym_CARET_EQ] = ACTIONS(5960), + [anon_sym_PIPE_EQ] = ACTIONS(5960), + [anon_sym_and_eq] = ACTIONS(5958), + [anon_sym_or_eq] = ACTIONS(5958), + [anon_sym_xor_eq] = ACTIONS(5958), + [anon_sym_LT_EQ_GT] = ACTIONS(5960), + [anon_sym_or] = ACTIONS(5958), + [anon_sym_and] = ACTIONS(5958), + [anon_sym_bitor] = ACTIONS(5958), + [anon_sym_xor] = ACTIONS(5958), + [anon_sym_bitand] = ACTIONS(5958), + [anon_sym_not_eq] = ACTIONS(5958), + [anon_sym_DASH_DASH] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5960), + [anon_sym_asm] = ACTIONS(5958), + [anon_sym___asm__] = ACTIONS(5958), + [anon_sym___asm] = ACTIONS(5958), + [anon_sym_DOT] = ACTIONS(5958), + [anon_sym_DOT_STAR] = ACTIONS(5960), + [anon_sym_DASH_GT] = ACTIONS(5960), + [sym_comment] = ACTIONS(3), + [anon_sym_try] = ACTIONS(5958), + }, + [1977] = { + [sym_identifier] = ACTIONS(5962), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5964), + [anon_sym_COMMA] = ACTIONS(5964), + [anon_sym_RPAREN] = ACTIONS(5964), + [aux_sym_preproc_if_token2] = ACTIONS(5964), + [aux_sym_preproc_else_token1] = ACTIONS(5964), + [aux_sym_preproc_elif_token1] = ACTIONS(5962), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5964), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5964), + [anon_sym_LPAREN2] = ACTIONS(5964), + [anon_sym_DASH] = ACTIONS(5962), + [anon_sym_PLUS] = ACTIONS(5962), + [anon_sym_STAR] = ACTIONS(5962), + [anon_sym_SLASH] = ACTIONS(5962), + [anon_sym_PERCENT] = ACTIONS(5962), + [anon_sym_PIPE_PIPE] = ACTIONS(5964), + [anon_sym_AMP_AMP] = ACTIONS(5964), + [anon_sym_PIPE] = ACTIONS(5962), + [anon_sym_CARET] = ACTIONS(5962), + [anon_sym_AMP] = ACTIONS(5962), + [anon_sym_EQ_EQ] = ACTIONS(5964), + [anon_sym_BANG_EQ] = ACTIONS(5964), + [anon_sym_GT] = ACTIONS(5962), + [anon_sym_GT_EQ] = ACTIONS(5964), + [anon_sym_LT_EQ] = ACTIONS(5962), + [anon_sym_LT] = ACTIONS(5962), + [anon_sym_LT_LT] = ACTIONS(5962), + [anon_sym_GT_GT] = ACTIONS(5962), + [anon_sym_SEMI] = ACTIONS(5964), + [anon_sym___attribute__] = ACTIONS(5962), + [anon_sym___attribute] = ACTIONS(5962), + [anon_sym_COLON] = ACTIONS(5964), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5964), + [anon_sym_LBRACE] = ACTIONS(5964), + [anon_sym_RBRACE] = ACTIONS(5964), + [anon_sym_LBRACK] = ACTIONS(5962), + [anon_sym_RBRACK] = ACTIONS(5964), + [anon_sym_EQ] = ACTIONS(5962), + [anon_sym_QMARK] = ACTIONS(5964), + [anon_sym_STAR_EQ] = ACTIONS(5964), + [anon_sym_SLASH_EQ] = ACTIONS(5964), + [anon_sym_PERCENT_EQ] = ACTIONS(5964), + [anon_sym_PLUS_EQ] = ACTIONS(5964), + [anon_sym_DASH_EQ] = ACTIONS(5964), + [anon_sym_LT_LT_EQ] = ACTIONS(5964), + [anon_sym_GT_GT_EQ] = ACTIONS(5964), + [anon_sym_AMP_EQ] = ACTIONS(5964), + [anon_sym_CARET_EQ] = ACTIONS(5964), + [anon_sym_PIPE_EQ] = ACTIONS(5964), + [anon_sym_and_eq] = ACTIONS(5962), + [anon_sym_or_eq] = ACTIONS(5962), + [anon_sym_xor_eq] = ACTIONS(5962), + [anon_sym_LT_EQ_GT] = ACTIONS(5964), + [anon_sym_or] = ACTIONS(5962), + [anon_sym_and] = ACTIONS(5962), + [anon_sym_bitor] = ACTIONS(5962), + [anon_sym_xor] = ACTIONS(5962), + [anon_sym_bitand] = ACTIONS(5962), + [anon_sym_not_eq] = ACTIONS(5962), + [anon_sym_DASH_DASH] = ACTIONS(5964), + [anon_sym_PLUS_PLUS] = ACTIONS(5964), + [anon_sym_asm] = ACTIONS(5962), + [anon_sym___asm__] = ACTIONS(5962), + [anon_sym___asm] = ACTIONS(5962), + [anon_sym_DOT] = ACTIONS(5962), + [anon_sym_DOT_STAR] = ACTIONS(5964), + [anon_sym_DASH_GT] = ACTIONS(5964), + [sym_comment] = ACTIONS(3), + [anon_sym_try] = ACTIONS(5962), + }, + [1978] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1980), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5966), + [anon_sym_COMMA] = ACTIONS(5966), + [anon_sym_RPAREN] = ACTIONS(5966), + [anon_sym_LPAREN2] = ACTIONS(5966), + [anon_sym_DASH] = ACTIONS(5968), + [anon_sym_PLUS] = ACTIONS(5968), + [anon_sym_STAR] = ACTIONS(5966), + [anon_sym_SLASH] = ACTIONS(5968), + [anon_sym_PERCENT] = ACTIONS(5966), + [anon_sym_PIPE_PIPE] = ACTIONS(5966), + [anon_sym_AMP_AMP] = ACTIONS(5966), + [anon_sym_PIPE] = ACTIONS(5968), + [anon_sym_CARET] = ACTIONS(5966), + [anon_sym_AMP] = ACTIONS(5968), + [anon_sym_EQ_EQ] = ACTIONS(5966), + [anon_sym_BANG_EQ] = ACTIONS(5966), + [anon_sym_GT] = ACTIONS(5968), + [anon_sym_GT_EQ] = ACTIONS(5966), + [anon_sym_LT_EQ] = ACTIONS(5968), + [anon_sym_LT] = ACTIONS(5968), + [anon_sym_LT_LT] = ACTIONS(5966), + [anon_sym_GT_GT] = ACTIONS(5966), + [anon_sym_SEMI] = ACTIONS(5966), + [anon_sym___extension__] = ACTIONS(5966), + [anon_sym___attribute__] = ACTIONS(5966), + [anon_sym___attribute] = ACTIONS(5968), + [anon_sym_COLON] = ACTIONS(5966), + [anon_sym_LBRACE] = ACTIONS(5966), + [anon_sym_RBRACE] = ACTIONS(5966), + [anon_sym_signed] = ACTIONS(5970), + [anon_sym_unsigned] = ACTIONS(5970), + [anon_sym_long] = ACTIONS(5970), + [anon_sym_short] = ACTIONS(5970), + [anon_sym_LBRACK] = ACTIONS(5966), + [anon_sym_RBRACK] = ACTIONS(5966), + [anon_sym_const] = ACTIONS(5968), + [anon_sym_constexpr] = ACTIONS(5966), + [anon_sym_volatile] = ACTIONS(5966), + [anon_sym_restrict] = ACTIONS(5966), + [anon_sym___restrict__] = ACTIONS(5966), + [anon_sym__Atomic] = ACTIONS(5966), + [anon_sym__Noreturn] = ACTIONS(5966), + [anon_sym_noreturn] = ACTIONS(5966), + [anon_sym__Nonnull] = ACTIONS(5966), + [anon_sym_mutable] = ACTIONS(5966), + [anon_sym_constinit] = ACTIONS(5966), + [anon_sym_consteval] = ACTIONS(5966), + [anon_sym_alignas] = ACTIONS(5966), + [anon_sym__Alignas] = ACTIONS(5966), + [anon_sym_QMARK] = ACTIONS(5966), + [anon_sym_LT_EQ_GT] = ACTIONS(5966), + [anon_sym_or] = ACTIONS(5966), + [anon_sym_and] = ACTIONS(5966), + [anon_sym_bitor] = ACTIONS(5966), + [anon_sym_xor] = ACTIONS(5966), + [anon_sym_bitand] = ACTIONS(5966), + [anon_sym_not_eq] = ACTIONS(5966), + [anon_sym_DASH_DASH] = ACTIONS(5966), + [anon_sym_PLUS_PLUS] = ACTIONS(5966), + [anon_sym_DOT] = ACTIONS(5968), + [anon_sym_DOT_STAR] = ACTIONS(5966), + [anon_sym_DASH_GT] = ACTIONS(5966), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5966), + [anon_sym_decltype] = ACTIONS(5966), + [anon_sym_final] = ACTIONS(5966), + [anon_sym_override] = ACTIONS(5966), + [anon_sym_requires] = ACTIONS(5966), + }, + [1979] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1984), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5972), + [anon_sym_COMMA] = ACTIONS(5972), + [anon_sym_RPAREN] = ACTIONS(5972), + [anon_sym_LPAREN2] = ACTIONS(5972), + [anon_sym_DASH] = ACTIONS(5974), + [anon_sym_PLUS] = ACTIONS(5974), + [anon_sym_STAR] = ACTIONS(5972), + [anon_sym_SLASH] = ACTIONS(5974), + [anon_sym_PERCENT] = ACTIONS(5972), + [anon_sym_PIPE_PIPE] = ACTIONS(5972), + [anon_sym_AMP_AMP] = ACTIONS(5972), + [anon_sym_PIPE] = ACTIONS(5974), + [anon_sym_CARET] = ACTIONS(5972), + [anon_sym_AMP] = ACTIONS(5974), + [anon_sym_EQ_EQ] = ACTIONS(5972), + [anon_sym_BANG_EQ] = ACTIONS(5972), + [anon_sym_GT] = ACTIONS(5974), + [anon_sym_GT_EQ] = ACTIONS(5972), + [anon_sym_LT_EQ] = ACTIONS(5974), + [anon_sym_LT] = ACTIONS(5974), + [anon_sym_LT_LT] = ACTIONS(5972), + [anon_sym_GT_GT] = ACTIONS(5972), + [anon_sym_SEMI] = ACTIONS(5972), + [anon_sym___extension__] = ACTIONS(5972), + [anon_sym___attribute__] = ACTIONS(5972), + [anon_sym___attribute] = ACTIONS(5974), + [anon_sym_COLON] = ACTIONS(5972), + [anon_sym_LBRACE] = ACTIONS(5972), + [anon_sym_RBRACE] = ACTIONS(5972), + [anon_sym_signed] = ACTIONS(5976), + [anon_sym_unsigned] = ACTIONS(5976), + [anon_sym_long] = ACTIONS(5976), + [anon_sym_short] = ACTIONS(5976), + [anon_sym_LBRACK] = ACTIONS(5972), + [anon_sym_RBRACK] = ACTIONS(5972), + [anon_sym_const] = ACTIONS(5974), + [anon_sym_constexpr] = ACTIONS(5972), + [anon_sym_volatile] = ACTIONS(5972), + [anon_sym_restrict] = ACTIONS(5972), + [anon_sym___restrict__] = ACTIONS(5972), + [anon_sym__Atomic] = ACTIONS(5972), + [anon_sym__Noreturn] = ACTIONS(5972), + [anon_sym_noreturn] = ACTIONS(5972), + [anon_sym__Nonnull] = ACTIONS(5972), + [anon_sym_mutable] = ACTIONS(5972), + [anon_sym_constinit] = ACTIONS(5972), + [anon_sym_consteval] = ACTIONS(5972), + [anon_sym_alignas] = ACTIONS(5972), + [anon_sym__Alignas] = ACTIONS(5972), + [anon_sym_QMARK] = ACTIONS(5972), + [anon_sym_LT_EQ_GT] = ACTIONS(5972), + [anon_sym_or] = ACTIONS(5972), + [anon_sym_and] = ACTIONS(5972), + [anon_sym_bitor] = ACTIONS(5972), + [anon_sym_xor] = ACTIONS(5972), + [anon_sym_bitand] = ACTIONS(5972), + [anon_sym_not_eq] = ACTIONS(5972), + [anon_sym_DASH_DASH] = ACTIONS(5972), + [anon_sym_PLUS_PLUS] = ACTIONS(5972), + [anon_sym_DOT] = ACTIONS(5974), + [anon_sym_DOT_STAR] = ACTIONS(5972), + [anon_sym_DASH_GT] = ACTIONS(5972), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5972), + [anon_sym_decltype] = ACTIONS(5972), + [anon_sym_final] = ACTIONS(5972), + [anon_sym_override] = ACTIONS(5972), + [anon_sym_requires] = ACTIONS(5972), + }, + [1980] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1688), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5978), + [anon_sym_COMMA] = ACTIONS(5978), + [anon_sym_RPAREN] = ACTIONS(5978), + [anon_sym_LPAREN2] = ACTIONS(5978), + [anon_sym_DASH] = ACTIONS(5980), + [anon_sym_PLUS] = ACTIONS(5980), + [anon_sym_STAR] = ACTIONS(5978), + [anon_sym_SLASH] = ACTIONS(5980), + [anon_sym_PERCENT] = ACTIONS(5978), + [anon_sym_PIPE_PIPE] = ACTIONS(5978), + [anon_sym_AMP_AMP] = ACTIONS(5978), + [anon_sym_PIPE] = ACTIONS(5980), + [anon_sym_CARET] = ACTIONS(5978), + [anon_sym_AMP] = ACTIONS(5980), + [anon_sym_EQ_EQ] = ACTIONS(5978), + [anon_sym_BANG_EQ] = ACTIONS(5978), + [anon_sym_GT] = ACTIONS(5980), + [anon_sym_GT_EQ] = ACTIONS(5978), + [anon_sym_LT_EQ] = ACTIONS(5980), + [anon_sym_LT] = ACTIONS(5980), + [anon_sym_LT_LT] = ACTIONS(5978), + [anon_sym_GT_GT] = ACTIONS(5978), + [anon_sym_SEMI] = ACTIONS(5978), + [anon_sym___extension__] = ACTIONS(5978), + [anon_sym___attribute__] = ACTIONS(5978), + [anon_sym___attribute] = ACTIONS(5980), + [anon_sym_COLON] = ACTIONS(5978), + [anon_sym_LBRACE] = ACTIONS(5978), + [anon_sym_RBRACE] = ACTIONS(5978), + [anon_sym_signed] = ACTIONS(5895), + [anon_sym_unsigned] = ACTIONS(5895), + [anon_sym_long] = ACTIONS(5895), + [anon_sym_short] = ACTIONS(5895), + [anon_sym_LBRACK] = ACTIONS(5978), + [anon_sym_RBRACK] = ACTIONS(5978), + [anon_sym_const] = ACTIONS(5980), + [anon_sym_constexpr] = ACTIONS(5978), + [anon_sym_volatile] = ACTIONS(5978), + [anon_sym_restrict] = ACTIONS(5978), + [anon_sym___restrict__] = ACTIONS(5978), + [anon_sym__Atomic] = ACTIONS(5978), + [anon_sym__Noreturn] = ACTIONS(5978), + [anon_sym_noreturn] = ACTIONS(5978), + [anon_sym__Nonnull] = ACTIONS(5978), + [anon_sym_mutable] = ACTIONS(5978), + [anon_sym_constinit] = ACTIONS(5978), + [anon_sym_consteval] = ACTIONS(5978), + [anon_sym_alignas] = ACTIONS(5978), + [anon_sym__Alignas] = ACTIONS(5978), + [anon_sym_QMARK] = ACTIONS(5978), + [anon_sym_LT_EQ_GT] = ACTIONS(5978), + [anon_sym_or] = ACTIONS(5978), + [anon_sym_and] = ACTIONS(5978), + [anon_sym_bitor] = ACTIONS(5978), + [anon_sym_xor] = ACTIONS(5978), + [anon_sym_bitand] = ACTIONS(5978), + [anon_sym_not_eq] = ACTIONS(5978), + [anon_sym_DASH_DASH] = ACTIONS(5978), + [anon_sym_PLUS_PLUS] = ACTIONS(5978), + [anon_sym_DOT] = ACTIONS(5980), + [anon_sym_DOT_STAR] = ACTIONS(5978), + [anon_sym_DASH_GT] = ACTIONS(5978), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5978), + [anon_sym_decltype] = ACTIONS(5978), + [anon_sym_final] = ACTIONS(5978), + [anon_sym_override] = ACTIONS(5978), + [anon_sym_requires] = ACTIONS(5978), + }, + [1981] = { + [sym__declaration_modifiers] = STATE(2095), + [sym__declaration_specifiers] = STATE(5318), + [sym_attribute_specifier] = STATE(2095), + [sym_attribute_declaration] = STATE(2095), + [sym_ms_declspec_modifier] = STATE(2095), + [sym_storage_class_specifier] = STATE(2095), + [sym_type_qualifier] = STATE(2095), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2422), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym_dependent_type] = STATE(2558), + [sym_template_type] = STATE(2439), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(6715), + [sym_qualified_type_identifier] = STATE(3138), + [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(5226), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1446), + [anon_sym_virtual] = ACTIONS(1262), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5220), + [anon_sym_COLON_COLON] = ACTIONS(5228), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), [anon_sym_signed] = ACTIONS(59), @@ -263912,7 +269236,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2999), + [sym_primitive_type] = ACTIONS(3019), [anon_sym_enum] = ACTIONS(73), [anon_sym_class] = ACTIONS(75), [anon_sym_struct] = ACTIONS(77), @@ -263921,80 +269245,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1452), - }, - [1930] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1669), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5894), - [anon_sym_COMMA] = ACTIONS(5894), - [anon_sym_RPAREN] = ACTIONS(5894), - [anon_sym_LPAREN2] = ACTIONS(5894), - [anon_sym_DASH] = ACTIONS(5896), - [anon_sym_PLUS] = ACTIONS(5896), - [anon_sym_STAR] = ACTIONS(5894), - [anon_sym_SLASH] = ACTIONS(5896), - [anon_sym_PERCENT] = ACTIONS(5894), - [anon_sym_PIPE_PIPE] = ACTIONS(5894), - [anon_sym_AMP_AMP] = ACTIONS(5894), - [anon_sym_PIPE] = ACTIONS(5896), - [anon_sym_CARET] = ACTIONS(5894), - [anon_sym_AMP] = ACTIONS(5896), - [anon_sym_EQ_EQ] = ACTIONS(5894), - [anon_sym_BANG_EQ] = ACTIONS(5894), - [anon_sym_GT] = ACTIONS(5896), - [anon_sym_GT_EQ] = ACTIONS(5894), - [anon_sym_LT_EQ] = ACTIONS(5896), - [anon_sym_LT] = ACTIONS(5896), - [anon_sym_LT_LT] = ACTIONS(5894), - [anon_sym_GT_GT] = ACTIONS(5894), - [anon_sym_SEMI] = ACTIONS(5894), - [anon_sym___extension__] = ACTIONS(5894), - [anon_sym___attribute__] = ACTIONS(5894), - [anon_sym___attribute] = ACTIONS(5896), - [anon_sym_COLON] = ACTIONS(5894), - [anon_sym_LBRACE] = ACTIONS(5894), - [anon_sym_RBRACE] = ACTIONS(5894), - [anon_sym_signed] = ACTIONS(5892), - [anon_sym_unsigned] = ACTIONS(5892), - [anon_sym_long] = ACTIONS(5892), - [anon_sym_short] = ACTIONS(5892), - [anon_sym_LBRACK] = ACTIONS(5894), - [anon_sym_RBRACK] = ACTIONS(5894), - [anon_sym_const] = ACTIONS(5896), - [anon_sym_constexpr] = ACTIONS(5894), - [anon_sym_volatile] = ACTIONS(5894), - [anon_sym_restrict] = ACTIONS(5894), - [anon_sym___restrict__] = ACTIONS(5894), - [anon_sym__Atomic] = ACTIONS(5894), - [anon_sym__Noreturn] = ACTIONS(5894), - [anon_sym_noreturn] = ACTIONS(5894), - [anon_sym__Nonnull] = ACTIONS(5894), - [anon_sym_mutable] = ACTIONS(5894), - [anon_sym_constinit] = ACTIONS(5894), - [anon_sym_consteval] = ACTIONS(5894), - [anon_sym_alignas] = ACTIONS(5894), - [anon_sym__Alignas] = ACTIONS(5894), - [anon_sym_QMARK] = ACTIONS(5894), - [anon_sym_LT_EQ_GT] = ACTIONS(5894), - [anon_sym_or] = ACTIONS(5894), - [anon_sym_and] = ACTIONS(5894), - [anon_sym_bitor] = ACTIONS(5894), - [anon_sym_xor] = ACTIONS(5894), - [anon_sym_bitand] = ACTIONS(5894), - [anon_sym_not_eq] = ACTIONS(5894), - [anon_sym_DASH_DASH] = ACTIONS(5894), - [anon_sym_PLUS_PLUS] = ACTIONS(5894), - [anon_sym_DOT] = ACTIONS(5896), - [anon_sym_DOT_STAR] = ACTIONS(5894), - [anon_sym_DASH_GT] = ACTIONS(5894), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5894), - [anon_sym_decltype] = ACTIONS(5894), - [anon_sym_final] = ACTIONS(5894), - [anon_sym_override] = ACTIONS(5894), - [anon_sym_requires] = ACTIONS(5894), + [anon_sym_template] = ACTIONS(1268), }, - [1931] = { + [1982] = { [sym_identifier] = ACTIONS(1940), [aux_sym_preproc_def_token1] = ACTIONS(1940), [aux_sym_preproc_if_token1] = ACTIONS(1940), @@ -264052,787 +269305,2601 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(1940), [anon_sym_union] = ACTIONS(1940), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1940), - [anon_sym_decltype] = ACTIONS(1940), - [anon_sym_explicit] = ACTIONS(1940), - [anon_sym_typename] = ACTIONS(1940), - [anon_sym_private] = ACTIONS(1940), - [anon_sym_template] = ACTIONS(1940), - [anon_sym_operator] = ACTIONS(1940), - [anon_sym_friend] = ACTIONS(1940), - [anon_sym_public] = ACTIONS(1940), - [anon_sym_protected] = ACTIONS(1940), - [anon_sym_static_assert] = ACTIONS(1940), - [anon_sym_catch] = ACTIONS(1940), + [sym_auto] = ACTIONS(1940), + [anon_sym_decltype] = ACTIONS(1940), + [anon_sym_explicit] = ACTIONS(1940), + [anon_sym_typename] = ACTIONS(1940), + [anon_sym_private] = ACTIONS(1940), + [anon_sym_template] = ACTIONS(1940), + [anon_sym_operator] = ACTIONS(1940), + [anon_sym_friend] = ACTIONS(1940), + [anon_sym_public] = ACTIONS(1940), + [anon_sym_protected] = ACTIONS(1940), + [anon_sym_static_assert] = ACTIONS(1940), + [anon_sym_catch] = ACTIONS(1940), + }, + [1983] = { + [sym_identifier] = ACTIONS(5982), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5984), + [anon_sym_COMMA] = ACTIONS(5984), + [anon_sym_RPAREN] = ACTIONS(5984), + [aux_sym_preproc_if_token2] = ACTIONS(5984), + [aux_sym_preproc_else_token1] = ACTIONS(5984), + [aux_sym_preproc_elif_token1] = ACTIONS(5982), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5984), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5984), + [anon_sym_LPAREN2] = ACTIONS(5984), + [anon_sym_DASH] = ACTIONS(5982), + [anon_sym_PLUS] = ACTIONS(5982), + [anon_sym_STAR] = ACTIONS(5982), + [anon_sym_SLASH] = ACTIONS(5982), + [anon_sym_PERCENT] = ACTIONS(5982), + [anon_sym_PIPE_PIPE] = ACTIONS(5984), + [anon_sym_AMP_AMP] = ACTIONS(5984), + [anon_sym_PIPE] = ACTIONS(5982), + [anon_sym_CARET] = ACTIONS(5982), + [anon_sym_AMP] = ACTIONS(5982), + [anon_sym_EQ_EQ] = ACTIONS(5984), + [anon_sym_BANG_EQ] = ACTIONS(5984), + [anon_sym_GT] = ACTIONS(5982), + [anon_sym_GT_EQ] = ACTIONS(5984), + [anon_sym_LT_EQ] = ACTIONS(5982), + [anon_sym_LT] = ACTIONS(5982), + [anon_sym_LT_LT] = ACTIONS(5982), + [anon_sym_GT_GT] = ACTIONS(5982), + [anon_sym_SEMI] = ACTIONS(5984), + [anon_sym___attribute__] = ACTIONS(5982), + [anon_sym___attribute] = ACTIONS(5982), + [anon_sym_COLON] = ACTIONS(5984), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5984), + [anon_sym_LBRACE] = ACTIONS(5984), + [anon_sym_RBRACE] = ACTIONS(5984), + [anon_sym_LBRACK] = ACTIONS(5982), + [anon_sym_RBRACK] = ACTIONS(5984), + [anon_sym_EQ] = ACTIONS(5982), + [anon_sym_QMARK] = ACTIONS(5984), + [anon_sym_STAR_EQ] = ACTIONS(5984), + [anon_sym_SLASH_EQ] = ACTIONS(5984), + [anon_sym_PERCENT_EQ] = ACTIONS(5984), + [anon_sym_PLUS_EQ] = ACTIONS(5984), + [anon_sym_DASH_EQ] = ACTIONS(5984), + [anon_sym_LT_LT_EQ] = ACTIONS(5984), + [anon_sym_GT_GT_EQ] = ACTIONS(5984), + [anon_sym_AMP_EQ] = ACTIONS(5984), + [anon_sym_CARET_EQ] = ACTIONS(5984), + [anon_sym_PIPE_EQ] = ACTIONS(5984), + [anon_sym_and_eq] = ACTIONS(5982), + [anon_sym_or_eq] = ACTIONS(5982), + [anon_sym_xor_eq] = ACTIONS(5982), + [anon_sym_LT_EQ_GT] = ACTIONS(5984), + [anon_sym_or] = ACTIONS(5982), + [anon_sym_and] = ACTIONS(5982), + [anon_sym_bitor] = ACTIONS(5982), + [anon_sym_xor] = ACTIONS(5982), + [anon_sym_bitand] = ACTIONS(5982), + [anon_sym_not_eq] = ACTIONS(5982), + [anon_sym_DASH_DASH] = ACTIONS(5984), + [anon_sym_PLUS_PLUS] = ACTIONS(5984), + [anon_sym_asm] = ACTIONS(5982), + [anon_sym___asm__] = ACTIONS(5982), + [anon_sym___asm] = ACTIONS(5982), + [anon_sym_DOT] = ACTIONS(5982), + [anon_sym_DOT_STAR] = ACTIONS(5984), + [anon_sym_DASH_GT] = ACTIONS(5984), + [sym_comment] = ACTIONS(3), + [anon_sym_try] = ACTIONS(5982), + }, + [1984] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1688), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5986), + [anon_sym_COMMA] = ACTIONS(5986), + [anon_sym_RPAREN] = ACTIONS(5986), + [anon_sym_LPAREN2] = ACTIONS(5986), + [anon_sym_DASH] = ACTIONS(5988), + [anon_sym_PLUS] = ACTIONS(5988), + [anon_sym_STAR] = ACTIONS(5986), + [anon_sym_SLASH] = ACTIONS(5988), + [anon_sym_PERCENT] = ACTIONS(5986), + [anon_sym_PIPE_PIPE] = ACTIONS(5986), + [anon_sym_AMP_AMP] = ACTIONS(5986), + [anon_sym_PIPE] = ACTIONS(5988), + [anon_sym_CARET] = ACTIONS(5986), + [anon_sym_AMP] = ACTIONS(5988), + [anon_sym_EQ_EQ] = ACTIONS(5986), + [anon_sym_BANG_EQ] = ACTIONS(5986), + [anon_sym_GT] = ACTIONS(5988), + [anon_sym_GT_EQ] = ACTIONS(5986), + [anon_sym_LT_EQ] = ACTIONS(5988), + [anon_sym_LT] = ACTIONS(5988), + [anon_sym_LT_LT] = ACTIONS(5986), + [anon_sym_GT_GT] = ACTIONS(5986), + [anon_sym_SEMI] = ACTIONS(5986), + [anon_sym___extension__] = ACTIONS(5986), + [anon_sym___attribute__] = ACTIONS(5986), + [anon_sym___attribute] = ACTIONS(5988), + [anon_sym_COLON] = ACTIONS(5986), + [anon_sym_LBRACE] = ACTIONS(5986), + [anon_sym_RBRACE] = ACTIONS(5986), + [anon_sym_signed] = ACTIONS(5895), + [anon_sym_unsigned] = ACTIONS(5895), + [anon_sym_long] = ACTIONS(5895), + [anon_sym_short] = ACTIONS(5895), + [anon_sym_LBRACK] = ACTIONS(5986), + [anon_sym_RBRACK] = ACTIONS(5986), + [anon_sym_const] = ACTIONS(5988), + [anon_sym_constexpr] = ACTIONS(5986), + [anon_sym_volatile] = ACTIONS(5986), + [anon_sym_restrict] = ACTIONS(5986), + [anon_sym___restrict__] = ACTIONS(5986), + [anon_sym__Atomic] = ACTIONS(5986), + [anon_sym__Noreturn] = ACTIONS(5986), + [anon_sym_noreturn] = ACTIONS(5986), + [anon_sym__Nonnull] = ACTIONS(5986), + [anon_sym_mutable] = ACTIONS(5986), + [anon_sym_constinit] = ACTIONS(5986), + [anon_sym_consteval] = ACTIONS(5986), + [anon_sym_alignas] = ACTIONS(5986), + [anon_sym__Alignas] = ACTIONS(5986), + [anon_sym_QMARK] = ACTIONS(5986), + [anon_sym_LT_EQ_GT] = ACTIONS(5986), + [anon_sym_or] = ACTIONS(5986), + [anon_sym_and] = ACTIONS(5986), + [anon_sym_bitor] = ACTIONS(5986), + [anon_sym_xor] = ACTIONS(5986), + [anon_sym_bitand] = ACTIONS(5986), + [anon_sym_not_eq] = ACTIONS(5986), + [anon_sym_DASH_DASH] = ACTIONS(5986), + [anon_sym_PLUS_PLUS] = ACTIONS(5986), + [anon_sym_DOT] = ACTIONS(5988), + [anon_sym_DOT_STAR] = ACTIONS(5986), + [anon_sym_DASH_GT] = ACTIONS(5986), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5986), + [anon_sym_decltype] = ACTIONS(5986), + [anon_sym_final] = ACTIONS(5986), + [anon_sym_override] = ACTIONS(5986), + [anon_sym_requires] = ACTIONS(5986), + }, + [1985] = { + [sym_identifier] = ACTIONS(5990), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5992), + [anon_sym_COMMA] = ACTIONS(5992), + [anon_sym_RPAREN] = ACTIONS(5992), + [aux_sym_preproc_if_token2] = ACTIONS(5992), + [aux_sym_preproc_else_token1] = ACTIONS(5992), + [aux_sym_preproc_elif_token1] = ACTIONS(5990), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5992), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5992), + [anon_sym_LPAREN2] = ACTIONS(5992), + [anon_sym_DASH] = ACTIONS(5990), + [anon_sym_PLUS] = ACTIONS(5990), + [anon_sym_STAR] = ACTIONS(5990), + [anon_sym_SLASH] = ACTIONS(5990), + [anon_sym_PERCENT] = ACTIONS(5990), + [anon_sym_PIPE_PIPE] = ACTIONS(5992), + [anon_sym_AMP_AMP] = ACTIONS(5992), + [anon_sym_PIPE] = ACTIONS(5990), + [anon_sym_CARET] = ACTIONS(5990), + [anon_sym_AMP] = ACTIONS(5990), + [anon_sym_EQ_EQ] = ACTIONS(5992), + [anon_sym_BANG_EQ] = ACTIONS(5992), + [anon_sym_GT] = ACTIONS(5990), + [anon_sym_GT_EQ] = ACTIONS(5992), + [anon_sym_LT_EQ] = ACTIONS(5990), + [anon_sym_LT] = ACTIONS(5990), + [anon_sym_LT_LT] = ACTIONS(5990), + [anon_sym_GT_GT] = ACTIONS(5990), + [anon_sym_SEMI] = ACTIONS(5992), + [anon_sym___attribute__] = ACTIONS(5990), + [anon_sym___attribute] = ACTIONS(5990), + [anon_sym_COLON] = ACTIONS(5992), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5992), + [anon_sym_LBRACE] = ACTIONS(5992), + [anon_sym_RBRACE] = ACTIONS(5992), + [anon_sym_LBRACK] = ACTIONS(5990), + [anon_sym_RBRACK] = ACTIONS(5992), + [anon_sym_EQ] = ACTIONS(5990), + [anon_sym_QMARK] = ACTIONS(5992), + [anon_sym_STAR_EQ] = ACTIONS(5992), + [anon_sym_SLASH_EQ] = ACTIONS(5992), + [anon_sym_PERCENT_EQ] = ACTIONS(5992), + [anon_sym_PLUS_EQ] = ACTIONS(5992), + [anon_sym_DASH_EQ] = ACTIONS(5992), + [anon_sym_LT_LT_EQ] = ACTIONS(5992), + [anon_sym_GT_GT_EQ] = ACTIONS(5992), + [anon_sym_AMP_EQ] = ACTIONS(5992), + [anon_sym_CARET_EQ] = ACTIONS(5992), + [anon_sym_PIPE_EQ] = ACTIONS(5992), + [anon_sym_and_eq] = ACTIONS(5990), + [anon_sym_or_eq] = ACTIONS(5990), + [anon_sym_xor_eq] = ACTIONS(5990), + [anon_sym_LT_EQ_GT] = ACTIONS(5992), + [anon_sym_or] = ACTIONS(5990), + [anon_sym_and] = ACTIONS(5990), + [anon_sym_bitor] = ACTIONS(5990), + [anon_sym_xor] = ACTIONS(5990), + [anon_sym_bitand] = ACTIONS(5990), + [anon_sym_not_eq] = ACTIONS(5990), + [anon_sym_DASH_DASH] = ACTIONS(5992), + [anon_sym_PLUS_PLUS] = ACTIONS(5992), + [anon_sym_asm] = ACTIONS(5990), + [anon_sym___asm__] = ACTIONS(5990), + [anon_sym___asm] = ACTIONS(5990), + [anon_sym_DOT] = ACTIONS(5990), + [anon_sym_DOT_STAR] = ACTIONS(5992), + [anon_sym_DASH_GT] = ACTIONS(5992), + [sym_comment] = ACTIONS(3), + [anon_sym_try] = ACTIONS(5990), + }, + [1986] = { + [sym_identifier] = ACTIONS(5994), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5996), + [anon_sym_COMMA] = ACTIONS(5996), + [anon_sym_RPAREN] = ACTIONS(5996), + [aux_sym_preproc_if_token2] = ACTIONS(5996), + [aux_sym_preproc_else_token1] = ACTIONS(5996), + [aux_sym_preproc_elif_token1] = ACTIONS(5994), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5996), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5996), + [anon_sym_LPAREN2] = ACTIONS(5996), + [anon_sym_DASH] = ACTIONS(5994), + [anon_sym_PLUS] = ACTIONS(5994), + [anon_sym_STAR] = ACTIONS(5994), + [anon_sym_SLASH] = ACTIONS(5994), + [anon_sym_PERCENT] = ACTIONS(5994), + [anon_sym_PIPE_PIPE] = ACTIONS(5996), + [anon_sym_AMP_AMP] = ACTIONS(5996), + [anon_sym_PIPE] = ACTIONS(5994), + [anon_sym_CARET] = ACTIONS(5994), + [anon_sym_AMP] = ACTIONS(5994), + [anon_sym_EQ_EQ] = ACTIONS(5996), + [anon_sym_BANG_EQ] = ACTIONS(5996), + [anon_sym_GT] = ACTIONS(5994), + [anon_sym_GT_EQ] = ACTIONS(5996), + [anon_sym_LT_EQ] = ACTIONS(5994), + [anon_sym_LT] = ACTIONS(5994), + [anon_sym_LT_LT] = ACTIONS(5994), + [anon_sym_GT_GT] = ACTIONS(5994), + [anon_sym_SEMI] = ACTIONS(5996), + [anon_sym___attribute__] = ACTIONS(5994), + [anon_sym___attribute] = ACTIONS(5994), + [anon_sym_COLON] = ACTIONS(5996), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5996), + [anon_sym_LBRACE] = ACTIONS(5996), + [anon_sym_RBRACE] = ACTIONS(5996), + [anon_sym_LBRACK] = ACTIONS(5994), + [anon_sym_RBRACK] = ACTIONS(5996), + [anon_sym_EQ] = ACTIONS(5994), + [anon_sym_QMARK] = ACTIONS(5996), + [anon_sym_STAR_EQ] = ACTIONS(5996), + [anon_sym_SLASH_EQ] = ACTIONS(5996), + [anon_sym_PERCENT_EQ] = ACTIONS(5996), + [anon_sym_PLUS_EQ] = ACTIONS(5996), + [anon_sym_DASH_EQ] = ACTIONS(5996), + [anon_sym_LT_LT_EQ] = ACTIONS(5996), + [anon_sym_GT_GT_EQ] = ACTIONS(5996), + [anon_sym_AMP_EQ] = ACTIONS(5996), + [anon_sym_CARET_EQ] = ACTIONS(5996), + [anon_sym_PIPE_EQ] = ACTIONS(5996), + [anon_sym_and_eq] = ACTIONS(5994), + [anon_sym_or_eq] = ACTIONS(5994), + [anon_sym_xor_eq] = ACTIONS(5994), + [anon_sym_LT_EQ_GT] = ACTIONS(5996), + [anon_sym_or] = ACTIONS(5994), + [anon_sym_and] = ACTIONS(5994), + [anon_sym_bitor] = ACTIONS(5994), + [anon_sym_xor] = ACTIONS(5994), + [anon_sym_bitand] = ACTIONS(5994), + [anon_sym_not_eq] = ACTIONS(5994), + [anon_sym_DASH_DASH] = ACTIONS(5996), + [anon_sym_PLUS_PLUS] = ACTIONS(5996), + [anon_sym_asm] = ACTIONS(5994), + [anon_sym___asm__] = ACTIONS(5994), + [anon_sym___asm] = ACTIONS(5994), + [anon_sym_DOT] = ACTIONS(5994), + [anon_sym_DOT_STAR] = ACTIONS(5996), + [anon_sym_DASH_GT] = ACTIONS(5996), + [sym_comment] = ACTIONS(3), + [anon_sym_try] = ACTIONS(5994), + }, + [1987] = { + [sym_identifier] = ACTIONS(2863), + [aux_sym_preproc_def_token1] = ACTIONS(2863), + [aux_sym_preproc_if_token1] = ACTIONS(2863), + [aux_sym_preproc_if_token2] = ACTIONS(2863), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2863), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2863), + [sym_preproc_directive] = ACTIONS(2863), + [anon_sym_LPAREN2] = ACTIONS(2865), + [anon_sym_TILDE] = ACTIONS(2865), + [anon_sym_STAR] = ACTIONS(2865), + [anon_sym_AMP_AMP] = ACTIONS(2865), + [anon_sym_AMP] = ACTIONS(2863), + [anon_sym_SEMI] = ACTIONS(2865), + [anon_sym___extension__] = ACTIONS(2863), + [anon_sym_typedef] = ACTIONS(2863), + [anon_sym_virtual] = ACTIONS(2863), + [anon_sym_extern] = ACTIONS(2863), + [anon_sym___attribute__] = ACTIONS(2863), + [anon_sym___attribute] = ACTIONS(2863), + [anon_sym_using] = ACTIONS(2863), + [anon_sym_COLON_COLON] = ACTIONS(2865), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2865), + [anon_sym___declspec] = ACTIONS(2863), + [anon_sym___based] = ACTIONS(2863), + [anon_sym_signed] = ACTIONS(2863), + [anon_sym_unsigned] = ACTIONS(2863), + [anon_sym_long] = ACTIONS(2863), + [anon_sym_short] = ACTIONS(2863), + [anon_sym_LBRACK] = ACTIONS(2863), + [anon_sym_static] = ACTIONS(2863), + [anon_sym_register] = ACTIONS(2863), + [anon_sym_inline] = ACTIONS(2863), + [anon_sym___inline] = ACTIONS(2863), + [anon_sym___inline__] = ACTIONS(2863), + [anon_sym___forceinline] = ACTIONS(2863), + [anon_sym_thread_local] = ACTIONS(2863), + [anon_sym___thread] = ACTIONS(2863), + [anon_sym_const] = ACTIONS(2863), + [anon_sym_constexpr] = ACTIONS(2863), + [anon_sym_volatile] = ACTIONS(2863), + [anon_sym_restrict] = ACTIONS(2863), + [anon_sym___restrict__] = ACTIONS(2863), + [anon_sym__Atomic] = ACTIONS(2863), + [anon_sym__Noreturn] = ACTIONS(2863), + [anon_sym_noreturn] = ACTIONS(2863), + [anon_sym__Nonnull] = ACTIONS(2863), + [anon_sym_mutable] = ACTIONS(2863), + [anon_sym_constinit] = ACTIONS(2863), + [anon_sym_consteval] = ACTIONS(2863), + [anon_sym_alignas] = ACTIONS(2863), + [anon_sym__Alignas] = ACTIONS(2863), + [sym_primitive_type] = ACTIONS(2863), + [anon_sym_enum] = ACTIONS(2863), + [anon_sym_class] = ACTIONS(2863), + [anon_sym_struct] = ACTIONS(2863), + [anon_sym_union] = ACTIONS(2863), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2863), + [anon_sym_decltype] = ACTIONS(2863), + [anon_sym_explicit] = ACTIONS(2863), + [anon_sym_typename] = ACTIONS(2863), + [anon_sym_private] = ACTIONS(2863), + [anon_sym_template] = ACTIONS(2863), + [anon_sym_operator] = ACTIONS(2863), + [anon_sym_friend] = ACTIONS(2863), + [anon_sym_public] = ACTIONS(2863), + [anon_sym_protected] = ACTIONS(2863), + [anon_sym_static_assert] = ACTIONS(2863), + }, + [1988] = { + [sym_identifier] = ACTIONS(2923), + [aux_sym_preproc_def_token1] = ACTIONS(2923), + [aux_sym_preproc_if_token1] = ACTIONS(2923), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2923), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2923), + [sym_preproc_directive] = ACTIONS(2923), + [anon_sym_LPAREN2] = ACTIONS(2925), + [anon_sym_TILDE] = ACTIONS(2925), + [anon_sym_STAR] = ACTIONS(2925), + [anon_sym_AMP_AMP] = ACTIONS(2925), + [anon_sym_AMP] = ACTIONS(2923), + [anon_sym_SEMI] = ACTIONS(2925), + [anon_sym___extension__] = ACTIONS(2923), + [anon_sym_typedef] = ACTIONS(2923), + [anon_sym_virtual] = ACTIONS(2923), + [anon_sym_extern] = ACTIONS(2923), + [anon_sym___attribute__] = ACTIONS(2923), + [anon_sym___attribute] = ACTIONS(2923), + [anon_sym_using] = ACTIONS(2923), + [anon_sym_COLON_COLON] = ACTIONS(2925), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2925), + [anon_sym___declspec] = ACTIONS(2923), + [anon_sym___based] = ACTIONS(2923), + [anon_sym_RBRACE] = ACTIONS(2925), + [anon_sym_signed] = ACTIONS(2923), + [anon_sym_unsigned] = ACTIONS(2923), + [anon_sym_long] = ACTIONS(2923), + [anon_sym_short] = ACTIONS(2923), + [anon_sym_LBRACK] = ACTIONS(2923), + [anon_sym_static] = ACTIONS(2923), + [anon_sym_register] = ACTIONS(2923), + [anon_sym_inline] = ACTIONS(2923), + [anon_sym___inline] = ACTIONS(2923), + [anon_sym___inline__] = ACTIONS(2923), + [anon_sym___forceinline] = ACTIONS(2923), + [anon_sym_thread_local] = ACTIONS(2923), + [anon_sym___thread] = ACTIONS(2923), + [anon_sym_const] = ACTIONS(2923), + [anon_sym_constexpr] = ACTIONS(2923), + [anon_sym_volatile] = ACTIONS(2923), + [anon_sym_restrict] = ACTIONS(2923), + [anon_sym___restrict__] = ACTIONS(2923), + [anon_sym__Atomic] = ACTIONS(2923), + [anon_sym__Noreturn] = ACTIONS(2923), + [anon_sym_noreturn] = ACTIONS(2923), + [anon_sym__Nonnull] = ACTIONS(2923), + [anon_sym_mutable] = ACTIONS(2923), + [anon_sym_constinit] = ACTIONS(2923), + [anon_sym_consteval] = ACTIONS(2923), + [anon_sym_alignas] = ACTIONS(2923), + [anon_sym__Alignas] = ACTIONS(2923), + [sym_primitive_type] = ACTIONS(2923), + [anon_sym_enum] = ACTIONS(2923), + [anon_sym_class] = ACTIONS(2923), + [anon_sym_struct] = ACTIONS(2923), + [anon_sym_union] = ACTIONS(2923), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2923), + [anon_sym_decltype] = ACTIONS(2923), + [anon_sym_explicit] = ACTIONS(2923), + [anon_sym_typename] = ACTIONS(2923), + [anon_sym_private] = ACTIONS(2923), + [anon_sym_template] = ACTIONS(2923), + [anon_sym_operator] = ACTIONS(2923), + [anon_sym_friend] = ACTIONS(2923), + [anon_sym_public] = ACTIONS(2923), + [anon_sym_protected] = ACTIONS(2923), + [anon_sym_static_assert] = ACTIONS(2923), + }, + [1989] = { + [sym_identifier] = ACTIONS(3079), + [aux_sym_preproc_def_token1] = ACTIONS(3079), + [aux_sym_preproc_if_token1] = ACTIONS(3079), + [aux_sym_preproc_if_token2] = ACTIONS(3079), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3079), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3079), + [sym_preproc_directive] = ACTIONS(3079), + [anon_sym_LPAREN2] = ACTIONS(3081), + [anon_sym_TILDE] = ACTIONS(3081), + [anon_sym_STAR] = ACTIONS(3081), + [anon_sym_AMP_AMP] = ACTIONS(3081), + [anon_sym_AMP] = ACTIONS(3079), + [anon_sym_SEMI] = ACTIONS(3081), + [anon_sym___extension__] = ACTIONS(3079), + [anon_sym_typedef] = ACTIONS(3079), + [anon_sym_virtual] = ACTIONS(3079), + [anon_sym_extern] = ACTIONS(3079), + [anon_sym___attribute__] = ACTIONS(3079), + [anon_sym___attribute] = ACTIONS(3079), + [anon_sym_using] = ACTIONS(3079), + [anon_sym_COLON_COLON] = ACTIONS(3081), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3081), + [anon_sym___declspec] = ACTIONS(3079), + [anon_sym___based] = ACTIONS(3079), + [anon_sym_signed] = ACTIONS(3079), + [anon_sym_unsigned] = ACTIONS(3079), + [anon_sym_long] = ACTIONS(3079), + [anon_sym_short] = ACTIONS(3079), + [anon_sym_LBRACK] = ACTIONS(3079), + [anon_sym_static] = ACTIONS(3079), + [anon_sym_register] = ACTIONS(3079), + [anon_sym_inline] = ACTIONS(3079), + [anon_sym___inline] = ACTIONS(3079), + [anon_sym___inline__] = ACTIONS(3079), + [anon_sym___forceinline] = ACTIONS(3079), + [anon_sym_thread_local] = ACTIONS(3079), + [anon_sym___thread] = ACTIONS(3079), + [anon_sym_const] = ACTIONS(3079), + [anon_sym_constexpr] = ACTIONS(3079), + [anon_sym_volatile] = ACTIONS(3079), + [anon_sym_restrict] = ACTIONS(3079), + [anon_sym___restrict__] = ACTIONS(3079), + [anon_sym__Atomic] = ACTIONS(3079), + [anon_sym__Noreturn] = ACTIONS(3079), + [anon_sym_noreturn] = ACTIONS(3079), + [anon_sym__Nonnull] = ACTIONS(3079), + [anon_sym_mutable] = ACTIONS(3079), + [anon_sym_constinit] = ACTIONS(3079), + [anon_sym_consteval] = ACTIONS(3079), + [anon_sym_alignas] = ACTIONS(3079), + [anon_sym__Alignas] = ACTIONS(3079), + [sym_primitive_type] = ACTIONS(3079), + [anon_sym_enum] = ACTIONS(3079), + [anon_sym_class] = ACTIONS(3079), + [anon_sym_struct] = ACTIONS(3079), + [anon_sym_union] = ACTIONS(3079), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3079), + [anon_sym_decltype] = ACTIONS(3079), + [anon_sym_explicit] = ACTIONS(3079), + [anon_sym_typename] = ACTIONS(3079), + [anon_sym_private] = ACTIONS(3079), + [anon_sym_template] = ACTIONS(3079), + [anon_sym_operator] = ACTIONS(3079), + [anon_sym_friend] = ACTIONS(3079), + [anon_sym_public] = ACTIONS(3079), + [anon_sym_protected] = ACTIONS(3079), + [anon_sym_static_assert] = ACTIONS(3079), + }, + [1990] = { + [sym_identifier] = ACTIONS(3083), + [aux_sym_preproc_def_token1] = ACTIONS(3083), + [aux_sym_preproc_if_token1] = ACTIONS(3083), + [aux_sym_preproc_if_token2] = ACTIONS(3083), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3083), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3083), + [sym_preproc_directive] = ACTIONS(3083), + [anon_sym_LPAREN2] = ACTIONS(3085), + [anon_sym_TILDE] = ACTIONS(3085), + [anon_sym_STAR] = ACTIONS(3085), + [anon_sym_AMP_AMP] = ACTIONS(3085), + [anon_sym_AMP] = ACTIONS(3083), + [anon_sym_SEMI] = ACTIONS(3085), + [anon_sym___extension__] = ACTIONS(3083), + [anon_sym_typedef] = ACTIONS(3083), + [anon_sym_virtual] = ACTIONS(3083), + [anon_sym_extern] = ACTIONS(3083), + [anon_sym___attribute__] = ACTIONS(3083), + [anon_sym___attribute] = ACTIONS(3083), + [anon_sym_using] = ACTIONS(3083), + [anon_sym_COLON_COLON] = ACTIONS(3085), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3085), + [anon_sym___declspec] = ACTIONS(3083), + [anon_sym___based] = ACTIONS(3083), + [anon_sym_signed] = ACTIONS(3083), + [anon_sym_unsigned] = ACTIONS(3083), + [anon_sym_long] = ACTIONS(3083), + [anon_sym_short] = ACTIONS(3083), + [anon_sym_LBRACK] = ACTIONS(3083), + [anon_sym_static] = ACTIONS(3083), + [anon_sym_register] = ACTIONS(3083), + [anon_sym_inline] = ACTIONS(3083), + [anon_sym___inline] = ACTIONS(3083), + [anon_sym___inline__] = ACTIONS(3083), + [anon_sym___forceinline] = ACTIONS(3083), + [anon_sym_thread_local] = ACTIONS(3083), + [anon_sym___thread] = ACTIONS(3083), + [anon_sym_const] = ACTIONS(3083), + [anon_sym_constexpr] = ACTIONS(3083), + [anon_sym_volatile] = ACTIONS(3083), + [anon_sym_restrict] = ACTIONS(3083), + [anon_sym___restrict__] = ACTIONS(3083), + [anon_sym__Atomic] = ACTIONS(3083), + [anon_sym__Noreturn] = ACTIONS(3083), + [anon_sym_noreturn] = ACTIONS(3083), + [anon_sym__Nonnull] = ACTIONS(3083), + [anon_sym_mutable] = ACTIONS(3083), + [anon_sym_constinit] = ACTIONS(3083), + [anon_sym_consteval] = ACTIONS(3083), + [anon_sym_alignas] = ACTIONS(3083), + [anon_sym__Alignas] = ACTIONS(3083), + [sym_primitive_type] = ACTIONS(3083), + [anon_sym_enum] = ACTIONS(3083), + [anon_sym_class] = ACTIONS(3083), + [anon_sym_struct] = ACTIONS(3083), + [anon_sym_union] = ACTIONS(3083), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3083), + [anon_sym_decltype] = ACTIONS(3083), + [anon_sym_explicit] = ACTIONS(3083), + [anon_sym_typename] = ACTIONS(3083), + [anon_sym_private] = ACTIONS(3083), + [anon_sym_template] = ACTIONS(3083), + [anon_sym_operator] = ACTIONS(3083), + [anon_sym_friend] = ACTIONS(3083), + [anon_sym_public] = ACTIONS(3083), + [anon_sym_protected] = ACTIONS(3083), + [anon_sym_static_assert] = ACTIONS(3083), + }, + [1991] = { + [sym_identifier] = ACTIONS(5613), + [aux_sym_preproc_def_token1] = ACTIONS(5613), + [aux_sym_preproc_if_token1] = ACTIONS(5613), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5613), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5613), + [sym_preproc_directive] = ACTIONS(5613), + [anon_sym_LPAREN2] = ACTIONS(5615), + [anon_sym_TILDE] = ACTIONS(5615), + [anon_sym_STAR] = ACTIONS(5615), + [anon_sym_AMP_AMP] = ACTIONS(5615), + [anon_sym_AMP] = ACTIONS(5613), + [anon_sym_SEMI] = ACTIONS(5615), + [anon_sym___extension__] = ACTIONS(5613), + [anon_sym_typedef] = ACTIONS(5613), + [anon_sym_virtual] = ACTIONS(5613), + [anon_sym_extern] = ACTIONS(5613), + [anon_sym___attribute__] = ACTIONS(5613), + [anon_sym___attribute] = ACTIONS(5613), + [anon_sym_using] = ACTIONS(5613), + [anon_sym_COLON_COLON] = ACTIONS(5615), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5615), + [anon_sym___declspec] = ACTIONS(5613), + [anon_sym___based] = ACTIONS(5613), + [anon_sym_RBRACE] = ACTIONS(5615), + [anon_sym_signed] = ACTIONS(5613), + [anon_sym_unsigned] = ACTIONS(5613), + [anon_sym_long] = ACTIONS(5613), + [anon_sym_short] = ACTIONS(5613), + [anon_sym_LBRACK] = ACTIONS(5613), + [anon_sym_static] = ACTIONS(5613), + [anon_sym_register] = ACTIONS(5613), + [anon_sym_inline] = ACTIONS(5613), + [anon_sym___inline] = ACTIONS(5613), + [anon_sym___inline__] = ACTIONS(5613), + [anon_sym___forceinline] = ACTIONS(5613), + [anon_sym_thread_local] = ACTIONS(5613), + [anon_sym___thread] = ACTIONS(5613), + [anon_sym_const] = ACTIONS(5613), + [anon_sym_constexpr] = ACTIONS(5613), + [anon_sym_volatile] = ACTIONS(5613), + [anon_sym_restrict] = ACTIONS(5613), + [anon_sym___restrict__] = ACTIONS(5613), + [anon_sym__Atomic] = ACTIONS(5613), + [anon_sym__Noreturn] = ACTIONS(5613), + [anon_sym_noreturn] = ACTIONS(5613), + [anon_sym__Nonnull] = ACTIONS(5613), + [anon_sym_mutable] = ACTIONS(5613), + [anon_sym_constinit] = ACTIONS(5613), + [anon_sym_consteval] = ACTIONS(5613), + [anon_sym_alignas] = ACTIONS(5613), + [anon_sym__Alignas] = ACTIONS(5613), + [sym_primitive_type] = ACTIONS(5613), + [anon_sym_enum] = ACTIONS(5613), + [anon_sym_class] = ACTIONS(5613), + [anon_sym_struct] = ACTIONS(5613), + [anon_sym_union] = ACTIONS(5613), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5613), + [anon_sym_decltype] = ACTIONS(5613), + [anon_sym_explicit] = ACTIONS(5613), + [anon_sym_typename] = ACTIONS(5613), + [anon_sym_private] = ACTIONS(5613), + [anon_sym_template] = ACTIONS(5613), + [anon_sym_operator] = ACTIONS(5613), + [anon_sym_friend] = ACTIONS(5613), + [anon_sym_public] = ACTIONS(5613), + [anon_sym_protected] = ACTIONS(5613), + [anon_sym_static_assert] = ACTIONS(5613), + }, + [1992] = { + [sym_identifier] = ACTIONS(2663), + [aux_sym_preproc_def_token1] = ACTIONS(2663), + [aux_sym_preproc_if_token1] = ACTIONS(2663), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2663), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2663), + [sym_preproc_directive] = ACTIONS(2663), + [anon_sym_LPAREN2] = ACTIONS(2665), + [anon_sym_TILDE] = ACTIONS(2665), + [anon_sym_STAR] = ACTIONS(2665), + [anon_sym_AMP_AMP] = ACTIONS(2665), + [anon_sym_AMP] = ACTIONS(2663), + [anon_sym_SEMI] = ACTIONS(2665), + [anon_sym___extension__] = ACTIONS(2663), + [anon_sym_typedef] = ACTIONS(2663), + [anon_sym_virtual] = ACTIONS(2663), + [anon_sym_extern] = ACTIONS(2663), + [anon_sym___attribute__] = ACTIONS(2663), + [anon_sym___attribute] = ACTIONS(2663), + [anon_sym_using] = ACTIONS(2663), + [anon_sym_COLON_COLON] = ACTIONS(2665), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2665), + [anon_sym___declspec] = ACTIONS(2663), + [anon_sym___based] = ACTIONS(2663), + [anon_sym_RBRACE] = ACTIONS(2665), + [anon_sym_signed] = ACTIONS(2663), + [anon_sym_unsigned] = ACTIONS(2663), + [anon_sym_long] = ACTIONS(2663), + [anon_sym_short] = ACTIONS(2663), + [anon_sym_LBRACK] = ACTIONS(2663), + [anon_sym_static] = ACTIONS(2663), + [anon_sym_register] = ACTIONS(2663), + [anon_sym_inline] = ACTIONS(2663), + [anon_sym___inline] = ACTIONS(2663), + [anon_sym___inline__] = ACTIONS(2663), + [anon_sym___forceinline] = ACTIONS(2663), + [anon_sym_thread_local] = ACTIONS(2663), + [anon_sym___thread] = ACTIONS(2663), + [anon_sym_const] = ACTIONS(2663), + [anon_sym_constexpr] = ACTIONS(2663), + [anon_sym_volatile] = ACTIONS(2663), + [anon_sym_restrict] = ACTIONS(2663), + [anon_sym___restrict__] = ACTIONS(2663), + [anon_sym__Atomic] = ACTIONS(2663), + [anon_sym__Noreturn] = ACTIONS(2663), + [anon_sym_noreturn] = ACTIONS(2663), + [anon_sym__Nonnull] = ACTIONS(2663), + [anon_sym_mutable] = ACTIONS(2663), + [anon_sym_constinit] = ACTIONS(2663), + [anon_sym_consteval] = ACTIONS(2663), + [anon_sym_alignas] = ACTIONS(2663), + [anon_sym__Alignas] = ACTIONS(2663), + [sym_primitive_type] = ACTIONS(2663), + [anon_sym_enum] = ACTIONS(2663), + [anon_sym_class] = ACTIONS(2663), + [anon_sym_struct] = ACTIONS(2663), + [anon_sym_union] = ACTIONS(2663), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2663), + [anon_sym_decltype] = ACTIONS(2663), + [anon_sym_explicit] = ACTIONS(2663), + [anon_sym_typename] = ACTIONS(2663), + [anon_sym_private] = ACTIONS(2663), + [anon_sym_template] = ACTIONS(2663), + [anon_sym_operator] = ACTIONS(2663), + [anon_sym_friend] = ACTIONS(2663), + [anon_sym_public] = ACTIONS(2663), + [anon_sym_protected] = ACTIONS(2663), + [anon_sym_static_assert] = ACTIONS(2663), + }, + [1993] = { + [sym_identifier] = ACTIONS(5621), + [aux_sym_preproc_def_token1] = ACTIONS(5621), + [aux_sym_preproc_if_token1] = ACTIONS(5621), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5621), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5621), + [sym_preproc_directive] = ACTIONS(5621), + [anon_sym_LPAREN2] = ACTIONS(5623), + [anon_sym_TILDE] = ACTIONS(5623), + [anon_sym_STAR] = ACTIONS(5623), + [anon_sym_AMP_AMP] = ACTIONS(5623), + [anon_sym_AMP] = ACTIONS(5621), + [anon_sym_SEMI] = ACTIONS(5623), + [anon_sym___extension__] = ACTIONS(5621), + [anon_sym_typedef] = ACTIONS(5621), + [anon_sym_virtual] = ACTIONS(5621), + [anon_sym_extern] = ACTIONS(5621), + [anon_sym___attribute__] = ACTIONS(5621), + [anon_sym___attribute] = ACTIONS(5621), + [anon_sym_using] = ACTIONS(5621), + [anon_sym_COLON_COLON] = ACTIONS(5623), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5623), + [anon_sym___declspec] = ACTIONS(5621), + [anon_sym___based] = ACTIONS(5621), + [anon_sym_RBRACE] = ACTIONS(5623), + [anon_sym_signed] = ACTIONS(5621), + [anon_sym_unsigned] = ACTIONS(5621), + [anon_sym_long] = ACTIONS(5621), + [anon_sym_short] = ACTIONS(5621), + [anon_sym_LBRACK] = ACTIONS(5621), + [anon_sym_static] = ACTIONS(5621), + [anon_sym_register] = ACTIONS(5621), + [anon_sym_inline] = ACTIONS(5621), + [anon_sym___inline] = ACTIONS(5621), + [anon_sym___inline__] = ACTIONS(5621), + [anon_sym___forceinline] = ACTIONS(5621), + [anon_sym_thread_local] = ACTIONS(5621), + [anon_sym___thread] = ACTIONS(5621), + [anon_sym_const] = ACTIONS(5621), + [anon_sym_constexpr] = ACTIONS(5621), + [anon_sym_volatile] = ACTIONS(5621), + [anon_sym_restrict] = ACTIONS(5621), + [anon_sym___restrict__] = ACTIONS(5621), + [anon_sym__Atomic] = ACTIONS(5621), + [anon_sym__Noreturn] = ACTIONS(5621), + [anon_sym_noreturn] = ACTIONS(5621), + [anon_sym__Nonnull] = ACTIONS(5621), + [anon_sym_mutable] = ACTIONS(5621), + [anon_sym_constinit] = ACTIONS(5621), + [anon_sym_consteval] = ACTIONS(5621), + [anon_sym_alignas] = ACTIONS(5621), + [anon_sym__Alignas] = ACTIONS(5621), + [sym_primitive_type] = ACTIONS(5621), + [anon_sym_enum] = ACTIONS(5621), + [anon_sym_class] = ACTIONS(5621), + [anon_sym_struct] = ACTIONS(5621), + [anon_sym_union] = ACTIONS(5621), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5621), + [anon_sym_decltype] = ACTIONS(5621), + [anon_sym_explicit] = ACTIONS(5621), + [anon_sym_typename] = ACTIONS(5621), + [anon_sym_private] = ACTIONS(5621), + [anon_sym_template] = ACTIONS(5621), + [anon_sym_operator] = ACTIONS(5621), + [anon_sym_friend] = ACTIONS(5621), + [anon_sym_public] = ACTIONS(5621), + [anon_sym_protected] = ACTIONS(5621), + [anon_sym_static_assert] = ACTIONS(5621), + }, + [1994] = { + [sym_identifier] = ACTIONS(3120), + [aux_sym_preproc_def_token1] = ACTIONS(3120), + [aux_sym_preproc_if_token1] = ACTIONS(3120), + [aux_sym_preproc_if_token2] = ACTIONS(3120), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3120), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3120), + [sym_preproc_directive] = ACTIONS(3120), + [anon_sym_LPAREN2] = ACTIONS(3122), + [anon_sym_TILDE] = ACTIONS(3122), + [anon_sym_STAR] = ACTIONS(3122), + [anon_sym_AMP_AMP] = ACTIONS(3122), + [anon_sym_AMP] = ACTIONS(3120), + [anon_sym_SEMI] = ACTIONS(3122), + [anon_sym___extension__] = ACTIONS(3120), + [anon_sym_typedef] = ACTIONS(3120), + [anon_sym_virtual] = ACTIONS(3120), + [anon_sym_extern] = ACTIONS(3120), + [anon_sym___attribute__] = ACTIONS(3120), + [anon_sym___attribute] = ACTIONS(3120), + [anon_sym_using] = ACTIONS(3120), + [anon_sym_COLON_COLON] = ACTIONS(3122), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3122), + [anon_sym___declspec] = ACTIONS(3120), + [anon_sym___based] = ACTIONS(3120), + [anon_sym_signed] = ACTIONS(3120), + [anon_sym_unsigned] = ACTIONS(3120), + [anon_sym_long] = ACTIONS(3120), + [anon_sym_short] = ACTIONS(3120), + [anon_sym_LBRACK] = ACTIONS(3120), + [anon_sym_static] = ACTIONS(3120), + [anon_sym_register] = ACTIONS(3120), + [anon_sym_inline] = ACTIONS(3120), + [anon_sym___inline] = ACTIONS(3120), + [anon_sym___inline__] = ACTIONS(3120), + [anon_sym___forceinline] = ACTIONS(3120), + [anon_sym_thread_local] = ACTIONS(3120), + [anon_sym___thread] = ACTIONS(3120), + [anon_sym_const] = ACTIONS(3120), + [anon_sym_constexpr] = ACTIONS(3120), + [anon_sym_volatile] = ACTIONS(3120), + [anon_sym_restrict] = ACTIONS(3120), + [anon_sym___restrict__] = ACTIONS(3120), + [anon_sym__Atomic] = ACTIONS(3120), + [anon_sym__Noreturn] = ACTIONS(3120), + [anon_sym_noreturn] = ACTIONS(3120), + [anon_sym__Nonnull] = ACTIONS(3120), + [anon_sym_mutable] = ACTIONS(3120), + [anon_sym_constinit] = ACTIONS(3120), + [anon_sym_consteval] = ACTIONS(3120), + [anon_sym_alignas] = ACTIONS(3120), + [anon_sym__Alignas] = ACTIONS(3120), + [sym_primitive_type] = ACTIONS(3120), + [anon_sym_enum] = ACTIONS(3120), + [anon_sym_class] = ACTIONS(3120), + [anon_sym_struct] = ACTIONS(3120), + [anon_sym_union] = ACTIONS(3120), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3120), + [anon_sym_decltype] = ACTIONS(3120), + [anon_sym_explicit] = ACTIONS(3120), + [anon_sym_typename] = ACTIONS(3120), + [anon_sym_private] = ACTIONS(3120), + [anon_sym_template] = ACTIONS(3120), + [anon_sym_operator] = ACTIONS(3120), + [anon_sym_friend] = ACTIONS(3120), + [anon_sym_public] = ACTIONS(3120), + [anon_sym_protected] = ACTIONS(3120), + [anon_sym_static_assert] = ACTIONS(3120), + }, + [1995] = { + [sym_identifier] = ACTIONS(2855), + [aux_sym_preproc_def_token1] = ACTIONS(2855), + [aux_sym_preproc_if_token1] = ACTIONS(2855), + [aux_sym_preproc_if_token2] = ACTIONS(2855), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2855), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2855), + [sym_preproc_directive] = ACTIONS(2855), + [anon_sym_LPAREN2] = ACTIONS(2857), + [anon_sym_TILDE] = ACTIONS(2857), + [anon_sym_STAR] = ACTIONS(2857), + [anon_sym_AMP_AMP] = ACTIONS(2857), + [anon_sym_AMP] = ACTIONS(2855), + [anon_sym_SEMI] = ACTIONS(2857), + [anon_sym___extension__] = ACTIONS(2855), + [anon_sym_typedef] = ACTIONS(2855), + [anon_sym_virtual] = ACTIONS(2855), + [anon_sym_extern] = ACTIONS(2855), + [anon_sym___attribute__] = ACTIONS(2855), + [anon_sym___attribute] = ACTIONS(2855), + [anon_sym_using] = ACTIONS(2855), + [anon_sym_COLON_COLON] = ACTIONS(2857), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2857), + [anon_sym___declspec] = ACTIONS(2855), + [anon_sym___based] = ACTIONS(2855), + [anon_sym_signed] = ACTIONS(2855), + [anon_sym_unsigned] = ACTIONS(2855), + [anon_sym_long] = ACTIONS(2855), + [anon_sym_short] = ACTIONS(2855), + [anon_sym_LBRACK] = ACTIONS(2855), + [anon_sym_static] = ACTIONS(2855), + [anon_sym_register] = ACTIONS(2855), + [anon_sym_inline] = ACTIONS(2855), + [anon_sym___inline] = ACTIONS(2855), + [anon_sym___inline__] = ACTIONS(2855), + [anon_sym___forceinline] = ACTIONS(2855), + [anon_sym_thread_local] = ACTIONS(2855), + [anon_sym___thread] = ACTIONS(2855), + [anon_sym_const] = ACTIONS(2855), + [anon_sym_constexpr] = ACTIONS(2855), + [anon_sym_volatile] = ACTIONS(2855), + [anon_sym_restrict] = ACTIONS(2855), + [anon_sym___restrict__] = ACTIONS(2855), + [anon_sym__Atomic] = ACTIONS(2855), + [anon_sym__Noreturn] = ACTIONS(2855), + [anon_sym_noreturn] = ACTIONS(2855), + [anon_sym__Nonnull] = ACTIONS(2855), + [anon_sym_mutable] = ACTIONS(2855), + [anon_sym_constinit] = ACTIONS(2855), + [anon_sym_consteval] = ACTIONS(2855), + [anon_sym_alignas] = ACTIONS(2855), + [anon_sym__Alignas] = ACTIONS(2855), + [sym_primitive_type] = ACTIONS(2855), + [anon_sym_enum] = ACTIONS(2855), + [anon_sym_class] = ACTIONS(2855), + [anon_sym_struct] = ACTIONS(2855), + [anon_sym_union] = ACTIONS(2855), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2855), + [anon_sym_decltype] = ACTIONS(2855), + [anon_sym_explicit] = ACTIONS(2855), + [anon_sym_typename] = ACTIONS(2855), + [anon_sym_private] = ACTIONS(2855), + [anon_sym_template] = ACTIONS(2855), + [anon_sym_operator] = ACTIONS(2855), + [anon_sym_friend] = ACTIONS(2855), + [anon_sym_public] = ACTIONS(2855), + [anon_sym_protected] = ACTIONS(2855), + [anon_sym_static_assert] = ACTIONS(2855), + }, + [1996] = { + [sym_identifier] = ACTIONS(3124), + [aux_sym_preproc_def_token1] = ACTIONS(3124), + [aux_sym_preproc_if_token1] = ACTIONS(3124), + [aux_sym_preproc_if_token2] = ACTIONS(3124), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3124), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3124), + [sym_preproc_directive] = ACTIONS(3124), + [anon_sym_LPAREN2] = ACTIONS(3126), + [anon_sym_TILDE] = ACTIONS(3126), + [anon_sym_STAR] = ACTIONS(3126), + [anon_sym_AMP_AMP] = ACTIONS(3126), + [anon_sym_AMP] = ACTIONS(3124), + [anon_sym_SEMI] = ACTIONS(3126), + [anon_sym___extension__] = ACTIONS(3124), + [anon_sym_typedef] = ACTIONS(3124), + [anon_sym_virtual] = ACTIONS(3124), + [anon_sym_extern] = ACTIONS(3124), + [anon_sym___attribute__] = ACTIONS(3124), + [anon_sym___attribute] = ACTIONS(3124), + [anon_sym_using] = ACTIONS(3124), + [anon_sym_COLON_COLON] = ACTIONS(3126), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3126), + [anon_sym___declspec] = ACTIONS(3124), + [anon_sym___based] = ACTIONS(3124), + [anon_sym_signed] = ACTIONS(3124), + [anon_sym_unsigned] = ACTIONS(3124), + [anon_sym_long] = ACTIONS(3124), + [anon_sym_short] = ACTIONS(3124), + [anon_sym_LBRACK] = ACTIONS(3124), + [anon_sym_static] = ACTIONS(3124), + [anon_sym_register] = ACTIONS(3124), + [anon_sym_inline] = ACTIONS(3124), + [anon_sym___inline] = ACTIONS(3124), + [anon_sym___inline__] = ACTIONS(3124), + [anon_sym___forceinline] = ACTIONS(3124), + [anon_sym_thread_local] = ACTIONS(3124), + [anon_sym___thread] = ACTIONS(3124), + [anon_sym_const] = ACTIONS(3124), + [anon_sym_constexpr] = ACTIONS(3124), + [anon_sym_volatile] = ACTIONS(3124), + [anon_sym_restrict] = ACTIONS(3124), + [anon_sym___restrict__] = ACTIONS(3124), + [anon_sym__Atomic] = ACTIONS(3124), + [anon_sym__Noreturn] = ACTIONS(3124), + [anon_sym_noreturn] = ACTIONS(3124), + [anon_sym__Nonnull] = ACTIONS(3124), + [anon_sym_mutable] = ACTIONS(3124), + [anon_sym_constinit] = ACTIONS(3124), + [anon_sym_consteval] = ACTIONS(3124), + [anon_sym_alignas] = ACTIONS(3124), + [anon_sym__Alignas] = ACTIONS(3124), + [sym_primitive_type] = ACTIONS(3124), + [anon_sym_enum] = ACTIONS(3124), + [anon_sym_class] = ACTIONS(3124), + [anon_sym_struct] = ACTIONS(3124), + [anon_sym_union] = ACTIONS(3124), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3124), + [anon_sym_decltype] = ACTIONS(3124), + [anon_sym_explicit] = ACTIONS(3124), + [anon_sym_typename] = ACTIONS(3124), + [anon_sym_private] = ACTIONS(3124), + [anon_sym_template] = ACTIONS(3124), + [anon_sym_operator] = ACTIONS(3124), + [anon_sym_friend] = ACTIONS(3124), + [anon_sym_public] = ACTIONS(3124), + [anon_sym_protected] = ACTIONS(3124), + [anon_sym_static_assert] = ACTIONS(3124), + }, + [1997] = { + [sym_identifier] = ACTIONS(3095), + [aux_sym_preproc_def_token1] = ACTIONS(3095), + [aux_sym_preproc_if_token1] = ACTIONS(3095), + [aux_sym_preproc_if_token2] = ACTIONS(3095), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3095), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3095), + [sym_preproc_directive] = ACTIONS(3095), + [anon_sym_LPAREN2] = ACTIONS(3097), + [anon_sym_TILDE] = ACTIONS(3097), + [anon_sym_STAR] = ACTIONS(3097), + [anon_sym_AMP_AMP] = ACTIONS(3097), + [anon_sym_AMP] = ACTIONS(3095), + [anon_sym_SEMI] = ACTIONS(3097), + [anon_sym___extension__] = ACTIONS(3095), + [anon_sym_typedef] = ACTIONS(3095), + [anon_sym_virtual] = ACTIONS(3095), + [anon_sym_extern] = ACTIONS(3095), + [anon_sym___attribute__] = ACTIONS(3095), + [anon_sym___attribute] = ACTIONS(3095), + [anon_sym_using] = ACTIONS(3095), + [anon_sym_COLON_COLON] = ACTIONS(3097), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3097), + [anon_sym___declspec] = ACTIONS(3095), + [anon_sym___based] = ACTIONS(3095), + [anon_sym_signed] = ACTIONS(3095), + [anon_sym_unsigned] = ACTIONS(3095), + [anon_sym_long] = ACTIONS(3095), + [anon_sym_short] = ACTIONS(3095), + [anon_sym_LBRACK] = ACTIONS(3095), + [anon_sym_static] = ACTIONS(3095), + [anon_sym_register] = ACTIONS(3095), + [anon_sym_inline] = ACTIONS(3095), + [anon_sym___inline] = ACTIONS(3095), + [anon_sym___inline__] = ACTIONS(3095), + [anon_sym___forceinline] = ACTIONS(3095), + [anon_sym_thread_local] = ACTIONS(3095), + [anon_sym___thread] = ACTIONS(3095), + [anon_sym_const] = ACTIONS(3095), + [anon_sym_constexpr] = ACTIONS(3095), + [anon_sym_volatile] = ACTIONS(3095), + [anon_sym_restrict] = ACTIONS(3095), + [anon_sym___restrict__] = ACTIONS(3095), + [anon_sym__Atomic] = ACTIONS(3095), + [anon_sym__Noreturn] = ACTIONS(3095), + [anon_sym_noreturn] = ACTIONS(3095), + [anon_sym__Nonnull] = ACTIONS(3095), + [anon_sym_mutable] = ACTIONS(3095), + [anon_sym_constinit] = ACTIONS(3095), + [anon_sym_consteval] = ACTIONS(3095), + [anon_sym_alignas] = ACTIONS(3095), + [anon_sym__Alignas] = ACTIONS(3095), + [sym_primitive_type] = ACTIONS(3095), + [anon_sym_enum] = ACTIONS(3095), + [anon_sym_class] = ACTIONS(3095), + [anon_sym_struct] = ACTIONS(3095), + [anon_sym_union] = ACTIONS(3095), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3095), + [anon_sym_decltype] = ACTIONS(3095), + [anon_sym_explicit] = ACTIONS(3095), + [anon_sym_typename] = ACTIONS(3095), + [anon_sym_private] = ACTIONS(3095), + [anon_sym_template] = ACTIONS(3095), + [anon_sym_operator] = ACTIONS(3095), + [anon_sym_friend] = ACTIONS(3095), + [anon_sym_public] = ACTIONS(3095), + [anon_sym_protected] = ACTIONS(3095), + [anon_sym_static_assert] = ACTIONS(3095), + }, + [1998] = { + [sym_identifier] = ACTIONS(2923), + [aux_sym_preproc_def_token1] = ACTIONS(2923), + [aux_sym_preproc_if_token1] = ACTIONS(2923), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2923), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2923), + [sym_preproc_directive] = ACTIONS(2923), + [anon_sym_LPAREN2] = ACTIONS(2925), + [anon_sym_TILDE] = ACTIONS(2925), + [anon_sym_STAR] = ACTIONS(2925), + [anon_sym_AMP_AMP] = ACTIONS(2925), + [anon_sym_AMP] = ACTIONS(2923), + [anon_sym_SEMI] = ACTIONS(2925), + [anon_sym___extension__] = ACTIONS(2923), + [anon_sym_typedef] = ACTIONS(2923), + [anon_sym_virtual] = ACTIONS(2923), + [anon_sym_extern] = ACTIONS(2923), + [anon_sym___attribute__] = ACTIONS(2923), + [anon_sym___attribute] = ACTIONS(2923), + [anon_sym_using] = ACTIONS(2923), + [anon_sym_COLON_COLON] = ACTIONS(2925), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2925), + [anon_sym___declspec] = ACTIONS(2923), + [anon_sym___based] = ACTIONS(2923), + [anon_sym_RBRACE] = ACTIONS(2925), + [anon_sym_signed] = ACTIONS(2923), + [anon_sym_unsigned] = ACTIONS(2923), + [anon_sym_long] = ACTIONS(2923), + [anon_sym_short] = ACTIONS(2923), + [anon_sym_LBRACK] = ACTIONS(2923), + [anon_sym_static] = ACTIONS(2923), + [anon_sym_register] = ACTIONS(2923), + [anon_sym_inline] = ACTIONS(2923), + [anon_sym___inline] = ACTIONS(2923), + [anon_sym___inline__] = ACTIONS(2923), + [anon_sym___forceinline] = ACTIONS(2923), + [anon_sym_thread_local] = ACTIONS(2923), + [anon_sym___thread] = ACTIONS(2923), + [anon_sym_const] = ACTIONS(2923), + [anon_sym_constexpr] = ACTIONS(2923), + [anon_sym_volatile] = ACTIONS(2923), + [anon_sym_restrict] = ACTIONS(2923), + [anon_sym___restrict__] = ACTIONS(2923), + [anon_sym__Atomic] = ACTIONS(2923), + [anon_sym__Noreturn] = ACTIONS(2923), + [anon_sym_noreturn] = ACTIONS(2923), + [anon_sym__Nonnull] = ACTIONS(2923), + [anon_sym_mutable] = ACTIONS(2923), + [anon_sym_constinit] = ACTIONS(2923), + [anon_sym_consteval] = ACTIONS(2923), + [anon_sym_alignas] = ACTIONS(2923), + [anon_sym__Alignas] = ACTIONS(2923), + [sym_primitive_type] = ACTIONS(2923), + [anon_sym_enum] = ACTIONS(2923), + [anon_sym_class] = ACTIONS(2923), + [anon_sym_struct] = ACTIONS(2923), + [anon_sym_union] = ACTIONS(2923), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2923), + [anon_sym_decltype] = ACTIONS(2923), + [anon_sym_explicit] = ACTIONS(2923), + [anon_sym_typename] = ACTIONS(2923), + [anon_sym_private] = ACTIONS(2923), + [anon_sym_template] = ACTIONS(2923), + [anon_sym_operator] = ACTIONS(2923), + [anon_sym_friend] = ACTIONS(2923), + [anon_sym_public] = ACTIONS(2923), + [anon_sym_protected] = ACTIONS(2923), + [anon_sym_static_assert] = ACTIONS(2923), + }, + [1999] = { + [sym_identifier] = ACTIONS(2799), + [aux_sym_preproc_def_token1] = ACTIONS(2799), + [aux_sym_preproc_if_token1] = ACTIONS(2799), + [aux_sym_preproc_if_token2] = ACTIONS(2799), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2799), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2799), + [sym_preproc_directive] = ACTIONS(2799), + [anon_sym_LPAREN2] = ACTIONS(2801), + [anon_sym_TILDE] = ACTIONS(2801), + [anon_sym_STAR] = ACTIONS(2801), + [anon_sym_AMP_AMP] = ACTIONS(2801), + [anon_sym_AMP] = ACTIONS(2799), + [anon_sym_SEMI] = ACTIONS(2801), + [anon_sym___extension__] = ACTIONS(2799), + [anon_sym_typedef] = ACTIONS(2799), + [anon_sym_virtual] = ACTIONS(2799), + [anon_sym_extern] = ACTIONS(2799), + [anon_sym___attribute__] = ACTIONS(2799), + [anon_sym___attribute] = ACTIONS(2799), + [anon_sym_using] = ACTIONS(2799), + [anon_sym_COLON_COLON] = ACTIONS(2801), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2801), + [anon_sym___declspec] = ACTIONS(2799), + [anon_sym___based] = ACTIONS(2799), + [anon_sym_signed] = ACTIONS(2799), + [anon_sym_unsigned] = ACTIONS(2799), + [anon_sym_long] = ACTIONS(2799), + [anon_sym_short] = ACTIONS(2799), + [anon_sym_LBRACK] = ACTIONS(2799), + [anon_sym_static] = ACTIONS(2799), + [anon_sym_register] = ACTIONS(2799), + [anon_sym_inline] = ACTIONS(2799), + [anon_sym___inline] = ACTIONS(2799), + [anon_sym___inline__] = ACTIONS(2799), + [anon_sym___forceinline] = ACTIONS(2799), + [anon_sym_thread_local] = ACTIONS(2799), + [anon_sym___thread] = ACTIONS(2799), + [anon_sym_const] = ACTIONS(2799), + [anon_sym_constexpr] = ACTIONS(2799), + [anon_sym_volatile] = ACTIONS(2799), + [anon_sym_restrict] = ACTIONS(2799), + [anon_sym___restrict__] = ACTIONS(2799), + [anon_sym__Atomic] = ACTIONS(2799), + [anon_sym__Noreturn] = ACTIONS(2799), + [anon_sym_noreturn] = ACTIONS(2799), + [anon_sym__Nonnull] = ACTIONS(2799), + [anon_sym_mutable] = ACTIONS(2799), + [anon_sym_constinit] = ACTIONS(2799), + [anon_sym_consteval] = ACTIONS(2799), + [anon_sym_alignas] = ACTIONS(2799), + [anon_sym__Alignas] = ACTIONS(2799), + [sym_primitive_type] = ACTIONS(2799), + [anon_sym_enum] = ACTIONS(2799), + [anon_sym_class] = ACTIONS(2799), + [anon_sym_struct] = ACTIONS(2799), + [anon_sym_union] = ACTIONS(2799), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2799), + [anon_sym_decltype] = ACTIONS(2799), + [anon_sym_explicit] = ACTIONS(2799), + [anon_sym_typename] = ACTIONS(2799), + [anon_sym_private] = ACTIONS(2799), + [anon_sym_template] = ACTIONS(2799), + [anon_sym_operator] = ACTIONS(2799), + [anon_sym_friend] = ACTIONS(2799), + [anon_sym_public] = ACTIONS(2799), + [anon_sym_protected] = ACTIONS(2799), + [anon_sym_static_assert] = ACTIONS(2799), + }, + [2000] = { + [sym_identifier] = ACTIONS(2663), + [aux_sym_preproc_def_token1] = ACTIONS(2663), + [aux_sym_preproc_if_token1] = ACTIONS(2663), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2663), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2663), + [sym_preproc_directive] = ACTIONS(2663), + [anon_sym_LPAREN2] = ACTIONS(2665), + [anon_sym_TILDE] = ACTIONS(2665), + [anon_sym_STAR] = ACTIONS(2665), + [anon_sym_AMP_AMP] = ACTIONS(2665), + [anon_sym_AMP] = ACTIONS(2663), + [anon_sym_SEMI] = ACTIONS(2665), + [anon_sym___extension__] = ACTIONS(2663), + [anon_sym_typedef] = ACTIONS(2663), + [anon_sym_virtual] = ACTIONS(2663), + [anon_sym_extern] = ACTIONS(2663), + [anon_sym___attribute__] = ACTIONS(2663), + [anon_sym___attribute] = ACTIONS(2663), + [anon_sym_using] = ACTIONS(2663), + [anon_sym_COLON_COLON] = ACTIONS(2665), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2665), + [anon_sym___declspec] = ACTIONS(2663), + [anon_sym___based] = ACTIONS(2663), + [anon_sym_RBRACE] = ACTIONS(2665), + [anon_sym_signed] = ACTIONS(2663), + [anon_sym_unsigned] = ACTIONS(2663), + [anon_sym_long] = ACTIONS(2663), + [anon_sym_short] = ACTIONS(2663), + [anon_sym_LBRACK] = ACTIONS(2663), + [anon_sym_static] = ACTIONS(2663), + [anon_sym_register] = ACTIONS(2663), + [anon_sym_inline] = ACTIONS(2663), + [anon_sym___inline] = ACTIONS(2663), + [anon_sym___inline__] = ACTIONS(2663), + [anon_sym___forceinline] = ACTIONS(2663), + [anon_sym_thread_local] = ACTIONS(2663), + [anon_sym___thread] = ACTIONS(2663), + [anon_sym_const] = ACTIONS(2663), + [anon_sym_constexpr] = ACTIONS(2663), + [anon_sym_volatile] = ACTIONS(2663), + [anon_sym_restrict] = ACTIONS(2663), + [anon_sym___restrict__] = ACTIONS(2663), + [anon_sym__Atomic] = ACTIONS(2663), + [anon_sym__Noreturn] = ACTIONS(2663), + [anon_sym_noreturn] = ACTIONS(2663), + [anon_sym__Nonnull] = ACTIONS(2663), + [anon_sym_mutable] = ACTIONS(2663), + [anon_sym_constinit] = ACTIONS(2663), + [anon_sym_consteval] = ACTIONS(2663), + [anon_sym_alignas] = ACTIONS(2663), + [anon_sym__Alignas] = ACTIONS(2663), + [sym_primitive_type] = ACTIONS(2663), + [anon_sym_enum] = ACTIONS(2663), + [anon_sym_class] = ACTIONS(2663), + [anon_sym_struct] = ACTIONS(2663), + [anon_sym_union] = ACTIONS(2663), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2663), + [anon_sym_decltype] = ACTIONS(2663), + [anon_sym_explicit] = ACTIONS(2663), + [anon_sym_typename] = ACTIONS(2663), + [anon_sym_private] = ACTIONS(2663), + [anon_sym_template] = ACTIONS(2663), + [anon_sym_operator] = ACTIONS(2663), + [anon_sym_friend] = ACTIONS(2663), + [anon_sym_public] = ACTIONS(2663), + [anon_sym_protected] = ACTIONS(2663), + [anon_sym_static_assert] = ACTIONS(2663), + }, + [2001] = { + [sym_identifier] = ACTIONS(2859), + [aux_sym_preproc_def_token1] = ACTIONS(2859), + [aux_sym_preproc_if_token1] = ACTIONS(2859), + [aux_sym_preproc_if_token2] = ACTIONS(2859), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), + [sym_preproc_directive] = ACTIONS(2859), + [anon_sym_LPAREN2] = ACTIONS(2861), + [anon_sym_TILDE] = ACTIONS(2861), + [anon_sym_STAR] = ACTIONS(2861), + [anon_sym_AMP_AMP] = ACTIONS(2861), + [anon_sym_AMP] = ACTIONS(2859), + [anon_sym_SEMI] = ACTIONS(2861), + [anon_sym___extension__] = ACTIONS(2859), + [anon_sym_typedef] = ACTIONS(2859), + [anon_sym_virtual] = ACTIONS(2859), + [anon_sym_extern] = ACTIONS(2859), + [anon_sym___attribute__] = ACTIONS(2859), + [anon_sym___attribute] = ACTIONS(2859), + [anon_sym_using] = ACTIONS(2859), + [anon_sym_COLON_COLON] = ACTIONS(2861), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), + [anon_sym___declspec] = ACTIONS(2859), + [anon_sym___based] = ACTIONS(2859), + [anon_sym_signed] = ACTIONS(2859), + [anon_sym_unsigned] = ACTIONS(2859), + [anon_sym_long] = ACTIONS(2859), + [anon_sym_short] = ACTIONS(2859), + [anon_sym_LBRACK] = ACTIONS(2859), + [anon_sym_static] = ACTIONS(2859), + [anon_sym_register] = ACTIONS(2859), + [anon_sym_inline] = ACTIONS(2859), + [anon_sym___inline] = ACTIONS(2859), + [anon_sym___inline__] = ACTIONS(2859), + [anon_sym___forceinline] = ACTIONS(2859), + [anon_sym_thread_local] = ACTIONS(2859), + [anon_sym___thread] = ACTIONS(2859), + [anon_sym_const] = ACTIONS(2859), + [anon_sym_constexpr] = ACTIONS(2859), + [anon_sym_volatile] = ACTIONS(2859), + [anon_sym_restrict] = ACTIONS(2859), + [anon_sym___restrict__] = ACTIONS(2859), + [anon_sym__Atomic] = ACTIONS(2859), + [anon_sym__Noreturn] = ACTIONS(2859), + [anon_sym_noreturn] = ACTIONS(2859), + [anon_sym__Nonnull] = ACTIONS(2859), + [anon_sym_mutable] = ACTIONS(2859), + [anon_sym_constinit] = ACTIONS(2859), + [anon_sym_consteval] = ACTIONS(2859), + [anon_sym_alignas] = ACTIONS(2859), + [anon_sym__Alignas] = ACTIONS(2859), + [sym_primitive_type] = ACTIONS(2859), + [anon_sym_enum] = ACTIONS(2859), + [anon_sym_class] = ACTIONS(2859), + [anon_sym_struct] = ACTIONS(2859), + [anon_sym_union] = ACTIONS(2859), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2859), + [anon_sym_decltype] = ACTIONS(2859), + [anon_sym_explicit] = ACTIONS(2859), + [anon_sym_typename] = ACTIONS(2859), + [anon_sym_private] = ACTIONS(2859), + [anon_sym_template] = ACTIONS(2859), + [anon_sym_operator] = ACTIONS(2859), + [anon_sym_friend] = ACTIONS(2859), + [anon_sym_public] = ACTIONS(2859), + [anon_sym_protected] = ACTIONS(2859), + [anon_sym_static_assert] = ACTIONS(2859), + }, + [2002] = { + [sym_identifier] = ACTIONS(2803), + [aux_sym_preproc_def_token1] = ACTIONS(2803), + [aux_sym_preproc_if_token1] = ACTIONS(2803), + [aux_sym_preproc_if_token2] = ACTIONS(2803), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2803), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2803), + [sym_preproc_directive] = ACTIONS(2803), + [anon_sym_LPAREN2] = ACTIONS(2805), + [anon_sym_TILDE] = ACTIONS(2805), + [anon_sym_STAR] = ACTIONS(2805), + [anon_sym_AMP_AMP] = ACTIONS(2805), + [anon_sym_AMP] = ACTIONS(2803), + [anon_sym_SEMI] = ACTIONS(2805), + [anon_sym___extension__] = ACTIONS(2803), + [anon_sym_typedef] = ACTIONS(2803), + [anon_sym_virtual] = ACTIONS(2803), + [anon_sym_extern] = ACTIONS(2803), + [anon_sym___attribute__] = ACTIONS(2803), + [anon_sym___attribute] = ACTIONS(2803), + [anon_sym_using] = ACTIONS(2803), + [anon_sym_COLON_COLON] = ACTIONS(2805), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2805), + [anon_sym___declspec] = ACTIONS(2803), + [anon_sym___based] = ACTIONS(2803), + [anon_sym_signed] = ACTIONS(2803), + [anon_sym_unsigned] = ACTIONS(2803), + [anon_sym_long] = ACTIONS(2803), + [anon_sym_short] = ACTIONS(2803), + [anon_sym_LBRACK] = ACTIONS(2803), + [anon_sym_static] = ACTIONS(2803), + [anon_sym_register] = ACTIONS(2803), + [anon_sym_inline] = ACTIONS(2803), + [anon_sym___inline] = ACTIONS(2803), + [anon_sym___inline__] = ACTIONS(2803), + [anon_sym___forceinline] = ACTIONS(2803), + [anon_sym_thread_local] = ACTIONS(2803), + [anon_sym___thread] = ACTIONS(2803), + [anon_sym_const] = ACTIONS(2803), + [anon_sym_constexpr] = ACTIONS(2803), + [anon_sym_volatile] = ACTIONS(2803), + [anon_sym_restrict] = ACTIONS(2803), + [anon_sym___restrict__] = ACTIONS(2803), + [anon_sym__Atomic] = ACTIONS(2803), + [anon_sym__Noreturn] = ACTIONS(2803), + [anon_sym_noreturn] = ACTIONS(2803), + [anon_sym__Nonnull] = ACTIONS(2803), + [anon_sym_mutable] = ACTIONS(2803), + [anon_sym_constinit] = ACTIONS(2803), + [anon_sym_consteval] = ACTIONS(2803), + [anon_sym_alignas] = ACTIONS(2803), + [anon_sym__Alignas] = ACTIONS(2803), + [sym_primitive_type] = ACTIONS(2803), + [anon_sym_enum] = ACTIONS(2803), + [anon_sym_class] = ACTIONS(2803), + [anon_sym_struct] = ACTIONS(2803), + [anon_sym_union] = ACTIONS(2803), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2803), + [anon_sym_decltype] = ACTIONS(2803), + [anon_sym_explicit] = ACTIONS(2803), + [anon_sym_typename] = ACTIONS(2803), + [anon_sym_private] = ACTIONS(2803), + [anon_sym_template] = ACTIONS(2803), + [anon_sym_operator] = ACTIONS(2803), + [anon_sym_friend] = ACTIONS(2803), + [anon_sym_public] = ACTIONS(2803), + [anon_sym_protected] = ACTIONS(2803), + [anon_sym_static_assert] = ACTIONS(2803), + }, + [2003] = { + [sym_string_literal] = STATE(2657), + [sym_template_argument_list] = STATE(3605), + [sym_raw_string_literal] = STATE(2657), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4166), + [anon_sym_COMMA] = ACTIONS(4166), + [anon_sym_RPAREN] = ACTIONS(4166), + [anon_sym_LPAREN2] = ACTIONS(4166), + [anon_sym_DASH] = ACTIONS(4174), + [anon_sym_PLUS] = ACTIONS(4174), + [anon_sym_STAR] = ACTIONS(4174), + [anon_sym_SLASH] = ACTIONS(4174), + [anon_sym_PERCENT] = ACTIONS(4174), + [anon_sym_PIPE_PIPE] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4166), + [anon_sym_PIPE] = ACTIONS(4174), + [anon_sym_CARET] = ACTIONS(4174), + [anon_sym_AMP] = ACTIONS(4174), + [anon_sym_EQ_EQ] = ACTIONS(4166), + [anon_sym_BANG_EQ] = ACTIONS(4166), + [anon_sym_GT] = ACTIONS(4174), + [anon_sym_GT_EQ] = ACTIONS(4166), + [anon_sym_LT_EQ] = ACTIONS(4174), + [anon_sym_LT] = ACTIONS(5085), + [anon_sym_LT_LT] = ACTIONS(4174), + [anon_sym_GT_GT] = ACTIONS(4174), + [anon_sym_SEMI] = ACTIONS(4166), + [anon_sym_COLON_COLON] = ACTIONS(4187), + [anon_sym_LBRACE] = ACTIONS(4192), + [anon_sym_RBRACE] = ACTIONS(4166), + [anon_sym_LBRACK] = ACTIONS(4166), + [anon_sym_EQ] = ACTIONS(4200), + [anon_sym_QMARK] = ACTIONS(4166), + [anon_sym_STAR_EQ] = ACTIONS(4202), + [anon_sym_SLASH_EQ] = ACTIONS(4202), + [anon_sym_PERCENT_EQ] = ACTIONS(4202), + [anon_sym_PLUS_EQ] = ACTIONS(4202), + [anon_sym_DASH_EQ] = ACTIONS(4202), + [anon_sym_LT_LT_EQ] = ACTIONS(4202), + [anon_sym_GT_GT_EQ] = ACTIONS(4202), + [anon_sym_AMP_EQ] = ACTIONS(4202), + [anon_sym_CARET_EQ] = ACTIONS(4202), + [anon_sym_PIPE_EQ] = ACTIONS(4202), + [anon_sym_and_eq] = ACTIONS(4202), + [anon_sym_or_eq] = ACTIONS(4202), + [anon_sym_xor_eq] = ACTIONS(4202), + [anon_sym_LT_EQ_GT] = ACTIONS(4166), + [anon_sym_or] = ACTIONS(4174), + [anon_sym_and] = ACTIONS(4174), + [anon_sym_bitor] = ACTIONS(4166), + [anon_sym_xor] = ACTIONS(4174), + [anon_sym_bitand] = ACTIONS(4166), + [anon_sym_not_eq] = ACTIONS(4166), + [anon_sym_DASH_DASH] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4174), + [anon_sym_DOT_STAR] = ACTIONS(4166), + [anon_sym_DASH_GT] = ACTIONS(4166), + [anon_sym_L_DQUOTE] = ACTIONS(3631), + [anon_sym_u_DQUOTE] = ACTIONS(3631), + [anon_sym_U_DQUOTE] = ACTIONS(3631), + [anon_sym_u8_DQUOTE] = ACTIONS(3631), + [anon_sym_DQUOTE] = ACTIONS(3631), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3635), + [anon_sym_LR_DQUOTE] = ACTIONS(3635), + [anon_sym_uR_DQUOTE] = ACTIONS(3635), + [anon_sym_UR_DQUOTE] = ACTIONS(3635), + [anon_sym_u8R_DQUOTE] = ACTIONS(3635), + }, + [2004] = { + [sym_ms_based_modifier] = STATE(8286), + [sym_ms_unaligned_ptr_modifier] = STATE(4069), + [sym_ms_pointer_modifier] = STATE(2009), + [sym__declarator] = STATE(6437), + [sym__abstract_declarator] = STATE(6822), + [sym_parenthesized_declarator] = STATE(6145), + [sym_abstract_parenthesized_declarator] = STATE(6099), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_abstract_pointer_declarator] = STATE(6099), + [sym_function_declarator] = STATE(6145), + [sym_abstract_function_declarator] = STATE(6099), + [sym_array_declarator] = STATE(6145), + [sym_abstract_array_declarator] = STATE(6099), + [sym_type_qualifier] = STATE(2710), + [sym_alignas_qualifier] = STATE(4325), + [sym_parameter_list] = STATE(3357), + [sym_decltype] = STATE(8569), + [sym_reference_declarator] = STATE(6145), + [sym_abstract_reference_declarator] = STATE(6099), + [sym_structured_binding_declarator] = STATE(6145), + [sym__function_declarator_seq] = STATE(6109), + [sym_template_type] = STATE(8569), + [sym_template_function] = STATE(6145), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5896), + [sym_qualified_identifier] = STATE(6145), + [sym_operator_name] = STATE(6145), + [aux_sym__type_definition_type_repeat1] = STATE(2710), + [aux_sym_pointer_declarator_repeat1] = STATE(2009), + [sym_identifier] = ACTIONS(5861), + [anon_sym_COMMA] = ACTIONS(5863), + [anon_sym_RPAREN] = ACTIONS(5863), + [anon_sym_LPAREN2] = ACTIONS(4310), + [anon_sym_TILDE] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(5998), + [anon_sym_AMP_AMP] = ACTIONS(6000), + [anon_sym_AMP] = ACTIONS(6002), + [anon_sym___extension__] = ACTIONS(3339), + [anon_sym___attribute__] = ACTIONS(5871), + [anon_sym___attribute] = ACTIONS(5871), + [anon_sym_COLON_COLON] = ACTIONS(5873), + [anon_sym___based] = ACTIONS(53), + [sym_ms_restrict_modifier] = ACTIONS(3335), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(3335), + [sym_ms_signed_ptr_modifier] = ACTIONS(3335), + [anon_sym__unaligned] = ACTIONS(3337), + [anon_sym___unaligned] = ACTIONS(3337), + [anon_sym_LBRACK] = ACTIONS(5875), + [anon_sym_const] = ACTIONS(3339), + [anon_sym_constexpr] = ACTIONS(3339), + [anon_sym_volatile] = ACTIONS(3339), + [anon_sym_restrict] = ACTIONS(3339), + [anon_sym___restrict__] = ACTIONS(3339), + [anon_sym__Atomic] = ACTIONS(3339), + [anon_sym__Noreturn] = ACTIONS(3339), + [anon_sym_noreturn] = ACTIONS(3339), + [anon_sym__Nonnull] = ACTIONS(3339), + [anon_sym_mutable] = ACTIONS(3339), + [anon_sym_constinit] = ACTIONS(3339), + [anon_sym_consteval] = ACTIONS(3339), + [anon_sym_alignas] = ACTIONS(3341), + [anon_sym__Alignas] = ACTIONS(3341), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_operator] = ACTIONS(1850), + }, + [2005] = { + [sym_identifier] = ACTIONS(5549), + [aux_sym_preproc_def_token1] = ACTIONS(5549), + [aux_sym_preproc_if_token1] = ACTIONS(5549), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5549), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5549), + [sym_preproc_directive] = ACTIONS(5549), + [anon_sym_LPAREN2] = ACTIONS(5551), + [anon_sym_TILDE] = ACTIONS(5551), + [anon_sym_STAR] = ACTIONS(5551), + [anon_sym_AMP_AMP] = ACTIONS(5551), + [anon_sym_AMP] = ACTIONS(5549), + [anon_sym_SEMI] = ACTIONS(5551), + [anon_sym___extension__] = ACTIONS(5549), + [anon_sym_typedef] = ACTIONS(5549), + [anon_sym_virtual] = ACTIONS(5549), + [anon_sym_extern] = ACTIONS(5549), + [anon_sym___attribute__] = ACTIONS(5549), + [anon_sym___attribute] = ACTIONS(5549), + [anon_sym_using] = ACTIONS(5549), + [anon_sym_COLON_COLON] = ACTIONS(5551), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5551), + [anon_sym___declspec] = ACTIONS(5549), + [anon_sym___based] = ACTIONS(5549), + [anon_sym_RBRACE] = ACTIONS(5551), + [anon_sym_signed] = ACTIONS(5549), + [anon_sym_unsigned] = ACTIONS(5549), + [anon_sym_long] = ACTIONS(5549), + [anon_sym_short] = ACTIONS(5549), + [anon_sym_LBRACK] = ACTIONS(5549), + [anon_sym_static] = ACTIONS(5549), + [anon_sym_register] = ACTIONS(5549), + [anon_sym_inline] = ACTIONS(5549), + [anon_sym___inline] = ACTIONS(5549), + [anon_sym___inline__] = ACTIONS(5549), + [anon_sym___forceinline] = ACTIONS(5549), + [anon_sym_thread_local] = ACTIONS(5549), + [anon_sym___thread] = ACTIONS(5549), + [anon_sym_const] = ACTIONS(5549), + [anon_sym_constexpr] = ACTIONS(5549), + [anon_sym_volatile] = ACTIONS(5549), + [anon_sym_restrict] = ACTIONS(5549), + [anon_sym___restrict__] = ACTIONS(5549), + [anon_sym__Atomic] = ACTIONS(5549), + [anon_sym__Noreturn] = ACTIONS(5549), + [anon_sym_noreturn] = ACTIONS(5549), + [anon_sym__Nonnull] = ACTIONS(5549), + [anon_sym_mutable] = ACTIONS(5549), + [anon_sym_constinit] = ACTIONS(5549), + [anon_sym_consteval] = ACTIONS(5549), + [anon_sym_alignas] = ACTIONS(5549), + [anon_sym__Alignas] = ACTIONS(5549), + [sym_primitive_type] = ACTIONS(5549), + [anon_sym_enum] = ACTIONS(5549), + [anon_sym_class] = ACTIONS(5549), + [anon_sym_struct] = ACTIONS(5549), + [anon_sym_union] = ACTIONS(5549), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5549), + [anon_sym_decltype] = ACTIONS(5549), + [anon_sym_explicit] = ACTIONS(5549), + [anon_sym_typename] = ACTIONS(5549), + [anon_sym_private] = ACTIONS(5549), + [anon_sym_template] = ACTIONS(5549), + [anon_sym_operator] = ACTIONS(5549), + [anon_sym_friend] = ACTIONS(5549), + [anon_sym_public] = ACTIONS(5549), + [anon_sym_protected] = ACTIONS(5549), + [anon_sym_static_assert] = ACTIONS(5549), }, - [1932] = { - [sym__declaration_modifiers] = STATE(2136), - [sym__declaration_specifiers] = STATE(4796), - [sym_attribute_specifier] = STATE(2136), - [sym_attribute_declaration] = STATE(2136), - [sym_ms_declspec_modifier] = STATE(2136), - [sym_storage_class_specifier] = STATE(2136), - [sym_type_qualifier] = STATE(2136), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym_dependent_type] = STATE(2523), - [sym_template_type] = STATE(2406), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(6627), - [sym_qualified_type_identifier] = STATE(3015), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [sym_identifier] = ACTIONS(5218), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1446), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5220), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2999), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), + [2006] = { + [sym_string_literal] = STATE(2657), + [sym_template_argument_list] = STATE(3605), + [sym_raw_string_literal] = STATE(2657), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4166), + [anon_sym_COMMA] = ACTIONS(4166), + [anon_sym_LPAREN2] = ACTIONS(6004), + [anon_sym_DASH] = ACTIONS(4174), + [anon_sym_PLUS] = ACTIONS(4174), + [anon_sym_STAR] = ACTIONS(4174), + [anon_sym_SLASH] = ACTIONS(4174), + [anon_sym_PERCENT] = ACTIONS(4174), + [anon_sym_PIPE_PIPE] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4166), + [anon_sym_PIPE] = ACTIONS(4174), + [anon_sym_CARET] = ACTIONS(4174), + [anon_sym_AMP] = ACTIONS(4174), + [anon_sym_EQ_EQ] = ACTIONS(4166), + [anon_sym_BANG_EQ] = ACTIONS(4166), + [anon_sym_GT] = ACTIONS(4174), + [anon_sym_GT_EQ] = ACTIONS(4166), + [anon_sym_LT_EQ] = ACTIONS(4174), + [anon_sym_LT] = ACTIONS(5085), + [anon_sym_LT_LT] = ACTIONS(4174), + [anon_sym_GT_GT] = ACTIONS(4174), + [anon_sym_SEMI] = ACTIONS(4166), + [anon_sym_COLON_COLON] = ACTIONS(4187), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6004), + [anon_sym_LBRACE] = ACTIONS(4192), + [anon_sym_RBRACE] = ACTIONS(4166), + [anon_sym_LBRACK] = ACTIONS(6006), + [anon_sym_EQ] = ACTIONS(4200), + [anon_sym_QMARK] = ACTIONS(4166), + [anon_sym_STAR_EQ] = ACTIONS(4202), + [anon_sym_SLASH_EQ] = ACTIONS(4202), + [anon_sym_PERCENT_EQ] = ACTIONS(4202), + [anon_sym_PLUS_EQ] = ACTIONS(4202), + [anon_sym_DASH_EQ] = ACTIONS(4202), + [anon_sym_LT_LT_EQ] = ACTIONS(4202), + [anon_sym_GT_GT_EQ] = ACTIONS(4202), + [anon_sym_AMP_EQ] = ACTIONS(4202), + [anon_sym_CARET_EQ] = ACTIONS(4202), + [anon_sym_PIPE_EQ] = ACTIONS(4202), + [anon_sym_and_eq] = ACTIONS(4202), + [anon_sym_or_eq] = ACTIONS(4202), + [anon_sym_xor_eq] = ACTIONS(4202), + [anon_sym_LT_EQ_GT] = ACTIONS(4166), + [anon_sym_or] = ACTIONS(4174), + [anon_sym_and] = ACTIONS(4174), + [anon_sym_bitor] = ACTIONS(4166), + [anon_sym_xor] = ACTIONS(4174), + [anon_sym_bitand] = ACTIONS(4166), + [anon_sym_not_eq] = ACTIONS(4166), + [anon_sym_DASH_DASH] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4174), + [anon_sym_DOT_STAR] = ACTIONS(4166), + [anon_sym_DASH_GT] = ACTIONS(4166), + [anon_sym_L_DQUOTE] = ACTIONS(3631), + [anon_sym_u_DQUOTE] = ACTIONS(3631), + [anon_sym_U_DQUOTE] = ACTIONS(3631), + [anon_sym_u8_DQUOTE] = ACTIONS(3631), + [anon_sym_DQUOTE] = ACTIONS(3631), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3635), + [anon_sym_LR_DQUOTE] = ACTIONS(3635), + [anon_sym_uR_DQUOTE] = ACTIONS(3635), + [anon_sym_UR_DQUOTE] = ACTIONS(3635), + [anon_sym_u8R_DQUOTE] = ACTIONS(3635), + }, + [2007] = { + [sym_string_literal] = STATE(2234), + [sym_template_argument_list] = STATE(3213), + [sym_raw_string_literal] = STATE(2234), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4166), + [anon_sym_COMMA] = ACTIONS(4166), + [anon_sym_RPAREN] = ACTIONS(6004), + [anon_sym_LPAREN2] = ACTIONS(6004), + [anon_sym_DASH] = ACTIONS(4174), + [anon_sym_PLUS] = ACTIONS(4174), + [anon_sym_STAR] = ACTIONS(4174), + [anon_sym_SLASH] = ACTIONS(4174), + [anon_sym_PERCENT] = ACTIONS(4174), + [anon_sym_PIPE_PIPE] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4166), + [anon_sym_PIPE] = ACTIONS(4174), + [anon_sym_CARET] = ACTIONS(4174), + [anon_sym_AMP] = ACTIONS(4174), + [anon_sym_EQ_EQ] = ACTIONS(4166), + [anon_sym_BANG_EQ] = ACTIONS(4166), + [anon_sym_GT] = ACTIONS(4174), + [anon_sym_GT_EQ] = ACTIONS(4166), + [anon_sym_LT_EQ] = ACTIONS(4174), + [anon_sym_LT] = ACTIONS(5052), + [anon_sym_LT_LT] = ACTIONS(4174), + [anon_sym_GT_GT] = ACTIONS(4174), + [anon_sym_COLON_COLON] = ACTIONS(4187), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6004), + [anon_sym_LBRACE] = ACTIONS(4192), + [anon_sym_LBRACK] = ACTIONS(6006), + [anon_sym_EQ] = ACTIONS(4174), + [anon_sym_QMARK] = ACTIONS(4166), + [anon_sym_STAR_EQ] = ACTIONS(4166), + [anon_sym_SLASH_EQ] = ACTIONS(4166), + [anon_sym_PERCENT_EQ] = ACTIONS(4166), + [anon_sym_PLUS_EQ] = ACTIONS(4166), + [anon_sym_DASH_EQ] = ACTIONS(4166), + [anon_sym_LT_LT_EQ] = ACTIONS(4166), + [anon_sym_GT_GT_EQ] = ACTIONS(4166), + [anon_sym_AMP_EQ] = ACTIONS(4166), + [anon_sym_CARET_EQ] = ACTIONS(4166), + [anon_sym_PIPE_EQ] = ACTIONS(4166), + [anon_sym_and_eq] = ACTIONS(4166), + [anon_sym_or_eq] = ACTIONS(4166), + [anon_sym_xor_eq] = ACTIONS(4166), + [anon_sym_LT_EQ_GT] = ACTIONS(4166), + [anon_sym_or] = ACTIONS(4174), + [anon_sym_and] = ACTIONS(4174), + [anon_sym_bitor] = ACTIONS(4166), + [anon_sym_xor] = ACTIONS(4174), + [anon_sym_bitand] = ACTIONS(4166), + [anon_sym_not_eq] = ACTIONS(4166), + [anon_sym_DASH_DASH] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4174), + [anon_sym_DOT_STAR] = ACTIONS(4166), + [anon_sym_DASH_GT] = ACTIONS(4174), + [anon_sym_L_DQUOTE] = ACTIONS(5048), + [anon_sym_u_DQUOTE] = ACTIONS(5048), + [anon_sym_U_DQUOTE] = ACTIONS(5048), + [anon_sym_u8_DQUOTE] = ACTIONS(5048), + [anon_sym_DQUOTE] = ACTIONS(5048), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5050), + [anon_sym_LR_DQUOTE] = ACTIONS(5050), + [anon_sym_uR_DQUOTE] = ACTIONS(5050), + [anon_sym_UR_DQUOTE] = ACTIONS(5050), + [anon_sym_u8R_DQUOTE] = ACTIONS(5050), + [anon_sym_DASH_GT_STAR] = ACTIONS(4166), + }, + [2008] = { + [sym_string_literal] = STATE(2234), + [sym_template_argument_list] = STATE(3073), + [sym_raw_string_literal] = STATE(2234), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4166), + [anon_sym_COMMA] = ACTIONS(4166), + [anon_sym_RPAREN] = ACTIONS(6008), + [anon_sym_LPAREN2] = ACTIONS(6008), + [anon_sym_DASH] = ACTIONS(4174), + [anon_sym_PLUS] = ACTIONS(4174), + [anon_sym_STAR] = ACTIONS(4174), + [anon_sym_SLASH] = ACTIONS(4174), + [anon_sym_PERCENT] = ACTIONS(4174), + [anon_sym_PIPE_PIPE] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4166), + [anon_sym_PIPE] = ACTIONS(4174), + [anon_sym_CARET] = ACTIONS(4174), + [anon_sym_AMP] = ACTIONS(4174), + [anon_sym_EQ_EQ] = ACTIONS(4166), + [anon_sym_BANG_EQ] = ACTIONS(4166), + [anon_sym_GT] = ACTIONS(4174), + [anon_sym_GT_EQ] = ACTIONS(4166), + [anon_sym_LT_EQ] = ACTIONS(4174), + [anon_sym_LT] = ACTIONS(5041), + [anon_sym_LT_LT] = ACTIONS(4174), + [anon_sym_GT_GT] = ACTIONS(4174), + [anon_sym_COLON_COLON] = ACTIONS(4187), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5044), + [anon_sym_LBRACE] = ACTIONS(4192), + [anon_sym_LBRACK] = ACTIONS(6011), + [anon_sym_EQ] = ACTIONS(4174), + [anon_sym_QMARK] = ACTIONS(4166), + [anon_sym_STAR_EQ] = ACTIONS(4166), + [anon_sym_SLASH_EQ] = ACTIONS(4166), + [anon_sym_PERCENT_EQ] = ACTIONS(4166), + [anon_sym_PLUS_EQ] = ACTIONS(4166), + [anon_sym_DASH_EQ] = ACTIONS(4166), + [anon_sym_LT_LT_EQ] = ACTIONS(4166), + [anon_sym_GT_GT_EQ] = ACTIONS(4166), + [anon_sym_AMP_EQ] = ACTIONS(4166), + [anon_sym_CARET_EQ] = ACTIONS(4166), + [anon_sym_PIPE_EQ] = ACTIONS(4166), + [anon_sym_and_eq] = ACTIONS(4166), + [anon_sym_or_eq] = ACTIONS(4166), + [anon_sym_xor_eq] = ACTIONS(4166), + [anon_sym_LT_EQ_GT] = ACTIONS(4166), + [anon_sym_or] = ACTIONS(4174), + [anon_sym_and] = ACTIONS(4174), + [anon_sym_bitor] = ACTIONS(4166), + [anon_sym_xor] = ACTIONS(4174), + [anon_sym_bitand] = ACTIONS(4166), + [anon_sym_not_eq] = ACTIONS(4166), + [anon_sym_DASH_DASH] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4174), + [anon_sym_DOT_STAR] = ACTIONS(4166), + [anon_sym_DASH_GT] = ACTIONS(4174), + [anon_sym_L_DQUOTE] = ACTIONS(5048), + [anon_sym_u_DQUOTE] = ACTIONS(5048), + [anon_sym_U_DQUOTE] = ACTIONS(5048), + [anon_sym_u8_DQUOTE] = ACTIONS(5048), + [anon_sym_DQUOTE] = ACTIONS(5048), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5050), + [anon_sym_LR_DQUOTE] = ACTIONS(5050), + [anon_sym_uR_DQUOTE] = ACTIONS(5050), + [anon_sym_UR_DQUOTE] = ACTIONS(5050), + [anon_sym_u8R_DQUOTE] = ACTIONS(5050), + [anon_sym_DASH_GT_STAR] = ACTIONS(4166), + }, + [2009] = { + [sym_ms_based_modifier] = STATE(8286), + [sym_ms_unaligned_ptr_modifier] = STATE(4069), + [sym_ms_pointer_modifier] = STATE(3962), + [sym__declarator] = STATE(6451), + [sym__abstract_declarator] = STATE(6762), + [sym_parenthesized_declarator] = STATE(6145), + [sym_abstract_parenthesized_declarator] = STATE(6099), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_abstract_pointer_declarator] = STATE(6099), + [sym_function_declarator] = STATE(6145), + [sym_abstract_function_declarator] = STATE(6099), + [sym_array_declarator] = STATE(6145), + [sym_abstract_array_declarator] = STATE(6099), + [sym_type_qualifier] = STATE(2712), + [sym_alignas_qualifier] = STATE(4325), + [sym_parameter_list] = STATE(3357), + [sym_decltype] = STATE(8569), + [sym_reference_declarator] = STATE(6145), + [sym_abstract_reference_declarator] = STATE(6099), + [sym_structured_binding_declarator] = STATE(6145), + [sym__function_declarator_seq] = STATE(6109), + [sym_template_type] = STATE(8569), + [sym_template_function] = STATE(6145), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5896), + [sym_qualified_identifier] = STATE(6145), + [sym_operator_name] = STATE(6145), + [aux_sym__type_definition_type_repeat1] = STATE(2712), + [aux_sym_pointer_declarator_repeat1] = STATE(3962), + [sym_identifier] = ACTIONS(5861), + [anon_sym_COMMA] = ACTIONS(5877), + [anon_sym_RPAREN] = ACTIONS(5877), + [anon_sym_LPAREN2] = ACTIONS(4310), + [anon_sym_TILDE] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(5998), + [anon_sym_AMP_AMP] = ACTIONS(6000), + [anon_sym_AMP] = ACTIONS(6002), + [anon_sym___extension__] = ACTIONS(3339), + [anon_sym___attribute__] = ACTIONS(5879), + [anon_sym___attribute] = ACTIONS(5879), + [anon_sym_COLON_COLON] = ACTIONS(5873), + [anon_sym___based] = ACTIONS(53), + [sym_ms_restrict_modifier] = ACTIONS(3335), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(3335), + [sym_ms_signed_ptr_modifier] = ACTIONS(3335), + [anon_sym__unaligned] = ACTIONS(3337), + [anon_sym___unaligned] = ACTIONS(3337), + [anon_sym_LBRACK] = ACTIONS(5875), + [anon_sym_const] = ACTIONS(3339), + [anon_sym_constexpr] = ACTIONS(3339), + [anon_sym_volatile] = ACTIONS(3339), + [anon_sym_restrict] = ACTIONS(3339), + [anon_sym___restrict__] = ACTIONS(3339), + [anon_sym__Atomic] = ACTIONS(3339), + [anon_sym__Noreturn] = ACTIONS(3339), + [anon_sym_noreturn] = ACTIONS(3339), + [anon_sym__Nonnull] = ACTIONS(3339), + [anon_sym_mutable] = ACTIONS(3339), + [anon_sym_constinit] = ACTIONS(3339), + [anon_sym_consteval] = ACTIONS(3339), + [anon_sym_alignas] = ACTIONS(3341), + [anon_sym__Alignas] = ACTIONS(3341), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_operator] = ACTIONS(1850), }, - [1933] = { - [sym__declaration_modifiers] = STATE(2136), - [sym__declaration_specifiers] = STATE(4800), - [sym_attribute_specifier] = STATE(2136), - [sym_attribute_declaration] = STATE(2136), - [sym_ms_declspec_modifier] = STATE(2136), - [sym_storage_class_specifier] = STATE(2136), - [sym_type_qualifier] = STATE(2136), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym_dependent_type] = STATE(2523), - [sym_template_type] = STATE(2406), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(6627), - [sym_qualified_type_identifier] = STATE(3015), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [sym_identifier] = ACTIONS(5218), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1446), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5220), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2999), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), + [2010] = { + [sym_identifier] = ACTIONS(2855), + [aux_sym_preproc_def_token1] = ACTIONS(2855), + [aux_sym_preproc_if_token1] = ACTIONS(2855), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2855), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2855), + [sym_preproc_directive] = ACTIONS(2855), + [anon_sym_LPAREN2] = ACTIONS(2857), + [anon_sym_TILDE] = ACTIONS(2857), + [anon_sym_STAR] = ACTIONS(2857), + [anon_sym_AMP_AMP] = ACTIONS(2857), + [anon_sym_AMP] = ACTIONS(2855), + [anon_sym_SEMI] = ACTIONS(2857), + [anon_sym___extension__] = ACTIONS(2855), + [anon_sym_typedef] = ACTIONS(2855), + [anon_sym_virtual] = ACTIONS(2855), + [anon_sym_extern] = ACTIONS(2855), + [anon_sym___attribute__] = ACTIONS(2855), + [anon_sym___attribute] = ACTIONS(2855), + [anon_sym_using] = ACTIONS(2855), + [anon_sym_COLON_COLON] = ACTIONS(2857), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2857), + [anon_sym___declspec] = ACTIONS(2855), + [anon_sym___based] = ACTIONS(2855), + [anon_sym_RBRACE] = ACTIONS(2857), + [anon_sym_signed] = ACTIONS(2855), + [anon_sym_unsigned] = ACTIONS(2855), + [anon_sym_long] = ACTIONS(2855), + [anon_sym_short] = ACTIONS(2855), + [anon_sym_LBRACK] = ACTIONS(2855), + [anon_sym_static] = ACTIONS(2855), + [anon_sym_register] = ACTIONS(2855), + [anon_sym_inline] = ACTIONS(2855), + [anon_sym___inline] = ACTIONS(2855), + [anon_sym___inline__] = ACTIONS(2855), + [anon_sym___forceinline] = ACTIONS(2855), + [anon_sym_thread_local] = ACTIONS(2855), + [anon_sym___thread] = ACTIONS(2855), + [anon_sym_const] = ACTIONS(2855), + [anon_sym_constexpr] = ACTIONS(2855), + [anon_sym_volatile] = ACTIONS(2855), + [anon_sym_restrict] = ACTIONS(2855), + [anon_sym___restrict__] = ACTIONS(2855), + [anon_sym__Atomic] = ACTIONS(2855), + [anon_sym__Noreturn] = ACTIONS(2855), + [anon_sym_noreturn] = ACTIONS(2855), + [anon_sym__Nonnull] = ACTIONS(2855), + [anon_sym_mutable] = ACTIONS(2855), + [anon_sym_constinit] = ACTIONS(2855), + [anon_sym_consteval] = ACTIONS(2855), + [anon_sym_alignas] = ACTIONS(2855), + [anon_sym__Alignas] = ACTIONS(2855), + [sym_primitive_type] = ACTIONS(2855), + [anon_sym_enum] = ACTIONS(2855), + [anon_sym_class] = ACTIONS(2855), + [anon_sym_struct] = ACTIONS(2855), + [anon_sym_union] = ACTIONS(2855), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1452), + [sym_auto] = ACTIONS(2855), + [anon_sym_decltype] = ACTIONS(2855), + [anon_sym_explicit] = ACTIONS(2855), + [anon_sym_typename] = ACTIONS(2855), + [anon_sym_private] = ACTIONS(2855), + [anon_sym_template] = ACTIONS(2855), + [anon_sym_operator] = ACTIONS(2855), + [anon_sym_friend] = ACTIONS(2855), + [anon_sym_public] = ACTIONS(2855), + [anon_sym_protected] = ACTIONS(2855), + [anon_sym_static_assert] = ACTIONS(2855), }, - [1934] = { - [sym__declaration_modifiers] = STATE(2136), - [sym__declaration_specifiers] = STATE(4801), - [sym_attribute_specifier] = STATE(2136), - [sym_attribute_declaration] = STATE(2136), - [sym_ms_declspec_modifier] = STATE(2136), - [sym_storage_class_specifier] = STATE(2136), - [sym_type_qualifier] = STATE(2136), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2394), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym_dependent_type] = STATE(2523), - [sym_template_type] = STATE(2406), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(6627), - [sym_qualified_type_identifier] = STATE(3015), - [aux_sym__declaration_specifiers_repeat1] = STATE(2136), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [sym_identifier] = ACTIONS(5218), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1446), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5220), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2999), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), + [2011] = { + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token2] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym___attribute] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym__Nonnull] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym__Alignas] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1452), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_private] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_friend] = ACTIONS(2867), + [anon_sym_public] = ACTIONS(2867), + [anon_sym_protected] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), }, - [1935] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1669), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5898), - [anon_sym_COMMA] = ACTIONS(5898), - [anon_sym_RPAREN] = ACTIONS(5898), - [anon_sym_LPAREN2] = ACTIONS(5898), - [anon_sym_DASH] = ACTIONS(5900), - [anon_sym_PLUS] = ACTIONS(5900), - [anon_sym_STAR] = ACTIONS(5898), - [anon_sym_SLASH] = ACTIONS(5900), - [anon_sym_PERCENT] = ACTIONS(5898), - [anon_sym_PIPE_PIPE] = ACTIONS(5898), - [anon_sym_AMP_AMP] = ACTIONS(5898), - [anon_sym_PIPE] = ACTIONS(5900), - [anon_sym_CARET] = ACTIONS(5898), - [anon_sym_AMP] = ACTIONS(5900), - [anon_sym_EQ_EQ] = ACTIONS(5898), - [anon_sym_BANG_EQ] = ACTIONS(5898), - [anon_sym_GT] = ACTIONS(5900), - [anon_sym_GT_EQ] = ACTIONS(5898), - [anon_sym_LT_EQ] = ACTIONS(5900), - [anon_sym_LT] = ACTIONS(5900), - [anon_sym_LT_LT] = ACTIONS(5898), - [anon_sym_GT_GT] = ACTIONS(5898), - [anon_sym_SEMI] = ACTIONS(5898), - [anon_sym___extension__] = ACTIONS(5898), - [anon_sym___attribute__] = ACTIONS(5898), - [anon_sym___attribute] = ACTIONS(5900), - [anon_sym_COLON] = ACTIONS(5898), - [anon_sym_LBRACE] = ACTIONS(5898), - [anon_sym_RBRACE] = ACTIONS(5898), - [anon_sym_signed] = ACTIONS(5892), - [anon_sym_unsigned] = ACTIONS(5892), - [anon_sym_long] = ACTIONS(5892), - [anon_sym_short] = ACTIONS(5892), - [anon_sym_LBRACK] = ACTIONS(5898), - [anon_sym_RBRACK] = ACTIONS(5898), - [anon_sym_const] = ACTIONS(5900), - [anon_sym_constexpr] = ACTIONS(5898), - [anon_sym_volatile] = ACTIONS(5898), - [anon_sym_restrict] = ACTIONS(5898), - [anon_sym___restrict__] = ACTIONS(5898), - [anon_sym__Atomic] = ACTIONS(5898), - [anon_sym__Noreturn] = ACTIONS(5898), - [anon_sym_noreturn] = ACTIONS(5898), - [anon_sym__Nonnull] = ACTIONS(5898), - [anon_sym_mutable] = ACTIONS(5898), - [anon_sym_constinit] = ACTIONS(5898), - [anon_sym_consteval] = ACTIONS(5898), - [anon_sym_alignas] = ACTIONS(5898), - [anon_sym__Alignas] = ACTIONS(5898), - [anon_sym_QMARK] = ACTIONS(5898), - [anon_sym_LT_EQ_GT] = ACTIONS(5898), - [anon_sym_or] = ACTIONS(5898), - [anon_sym_and] = ACTIONS(5898), - [anon_sym_bitor] = ACTIONS(5898), - [anon_sym_xor] = ACTIONS(5898), - [anon_sym_bitand] = ACTIONS(5898), - [anon_sym_not_eq] = ACTIONS(5898), - [anon_sym_DASH_DASH] = ACTIONS(5898), - [anon_sym_PLUS_PLUS] = ACTIONS(5898), - [anon_sym_DOT] = ACTIONS(5900), - [anon_sym_DOT_STAR] = ACTIONS(5898), - [anon_sym_DASH_GT] = ACTIONS(5898), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5898), - [anon_sym_decltype] = ACTIONS(5898), - [anon_sym_final] = ACTIONS(5898), - [anon_sym_override] = ACTIONS(5898), - [anon_sym_requires] = ACTIONS(5898), + [2012] = { + [sym_identifier] = ACTIONS(2663), + [aux_sym_preproc_def_token1] = ACTIONS(2663), + [aux_sym_preproc_if_token1] = ACTIONS(2663), + [aux_sym_preproc_if_token2] = ACTIONS(2663), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2663), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2663), + [sym_preproc_directive] = ACTIONS(2663), + [anon_sym_LPAREN2] = ACTIONS(2665), + [anon_sym_TILDE] = ACTIONS(2665), + [anon_sym_STAR] = ACTIONS(2665), + [anon_sym_AMP_AMP] = ACTIONS(2665), + [anon_sym_AMP] = ACTIONS(2663), + [anon_sym_SEMI] = ACTIONS(2665), + [anon_sym___extension__] = ACTIONS(2663), + [anon_sym_typedef] = ACTIONS(2663), + [anon_sym_virtual] = ACTIONS(2663), + [anon_sym_extern] = ACTIONS(2663), + [anon_sym___attribute__] = ACTIONS(2663), + [anon_sym___attribute] = ACTIONS(2663), + [anon_sym_using] = ACTIONS(2663), + [anon_sym_COLON_COLON] = ACTIONS(2665), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2665), + [anon_sym___declspec] = ACTIONS(2663), + [anon_sym___based] = ACTIONS(2663), + [anon_sym_signed] = ACTIONS(2663), + [anon_sym_unsigned] = ACTIONS(2663), + [anon_sym_long] = ACTIONS(2663), + [anon_sym_short] = ACTIONS(2663), + [anon_sym_LBRACK] = ACTIONS(2663), + [anon_sym_static] = ACTIONS(2663), + [anon_sym_register] = ACTIONS(2663), + [anon_sym_inline] = ACTIONS(2663), + [anon_sym___inline] = ACTIONS(2663), + [anon_sym___inline__] = ACTIONS(2663), + [anon_sym___forceinline] = ACTIONS(2663), + [anon_sym_thread_local] = ACTIONS(2663), + [anon_sym___thread] = ACTIONS(2663), + [anon_sym_const] = ACTIONS(2663), + [anon_sym_constexpr] = ACTIONS(2663), + [anon_sym_volatile] = ACTIONS(2663), + [anon_sym_restrict] = ACTIONS(2663), + [anon_sym___restrict__] = ACTIONS(2663), + [anon_sym__Atomic] = ACTIONS(2663), + [anon_sym__Noreturn] = ACTIONS(2663), + [anon_sym_noreturn] = ACTIONS(2663), + [anon_sym__Nonnull] = ACTIONS(2663), + [anon_sym_mutable] = ACTIONS(2663), + [anon_sym_constinit] = ACTIONS(2663), + [anon_sym_consteval] = ACTIONS(2663), + [anon_sym_alignas] = ACTIONS(2663), + [anon_sym__Alignas] = ACTIONS(2663), + [sym_primitive_type] = ACTIONS(2663), + [anon_sym_enum] = ACTIONS(2663), + [anon_sym_class] = ACTIONS(2663), + [anon_sym_struct] = ACTIONS(2663), + [anon_sym_union] = ACTIONS(2663), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2663), + [anon_sym_decltype] = ACTIONS(2663), + [anon_sym_explicit] = ACTIONS(2663), + [anon_sym_typename] = ACTIONS(2663), + [anon_sym_private] = ACTIONS(2663), + [anon_sym_template] = ACTIONS(2663), + [anon_sym_operator] = ACTIONS(2663), + [anon_sym_friend] = ACTIONS(2663), + [anon_sym_public] = ACTIONS(2663), + [anon_sym_protected] = ACTIONS(2663), + [anon_sym_static_assert] = ACTIONS(2663), }, - [1936] = { - [sym_identifier] = ACTIONS(5605), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5607), - [anon_sym_COMMA] = ACTIONS(5607), - [anon_sym_RPAREN] = ACTIONS(5607), - [aux_sym_preproc_if_token2] = ACTIONS(5607), - [aux_sym_preproc_else_token1] = ACTIONS(5607), - [aux_sym_preproc_elif_token1] = ACTIONS(5605), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5607), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5607), - [anon_sym_LPAREN2] = ACTIONS(5607), - [anon_sym_DASH] = ACTIONS(5605), - [anon_sym_PLUS] = ACTIONS(5605), - [anon_sym_STAR] = ACTIONS(5605), - [anon_sym_SLASH] = ACTIONS(5605), - [anon_sym_PERCENT] = ACTIONS(5605), - [anon_sym_PIPE_PIPE] = ACTIONS(5607), - [anon_sym_AMP_AMP] = ACTIONS(5607), - [anon_sym_PIPE] = ACTIONS(5605), - [anon_sym_CARET] = ACTIONS(5605), - [anon_sym_AMP] = ACTIONS(5605), - [anon_sym_EQ_EQ] = ACTIONS(5607), - [anon_sym_BANG_EQ] = ACTIONS(5607), - [anon_sym_GT] = ACTIONS(5605), - [anon_sym_GT_EQ] = ACTIONS(5607), - [anon_sym_LT_EQ] = ACTIONS(5605), - [anon_sym_LT] = ACTIONS(5605), - [anon_sym_LT_LT] = ACTIONS(5605), - [anon_sym_GT_GT] = ACTIONS(5605), - [anon_sym_SEMI] = ACTIONS(5607), - [anon_sym___attribute__] = ACTIONS(5605), - [anon_sym___attribute] = ACTIONS(5605), - [anon_sym_COLON] = ACTIONS(5605), - [anon_sym_COLON_COLON] = ACTIONS(5607), - [anon_sym_LBRACE] = ACTIONS(5607), - [anon_sym_RBRACE] = ACTIONS(5607), - [anon_sym_LBRACK] = ACTIONS(5607), - [anon_sym_RBRACK] = ACTIONS(5607), - [anon_sym_EQ] = ACTIONS(5605), - [anon_sym_QMARK] = ACTIONS(5607), - [anon_sym_STAR_EQ] = ACTIONS(5607), - [anon_sym_SLASH_EQ] = ACTIONS(5607), - [anon_sym_PERCENT_EQ] = ACTIONS(5607), - [anon_sym_PLUS_EQ] = ACTIONS(5607), - [anon_sym_DASH_EQ] = ACTIONS(5607), - [anon_sym_LT_LT_EQ] = ACTIONS(5607), - [anon_sym_GT_GT_EQ] = ACTIONS(5607), - [anon_sym_AMP_EQ] = ACTIONS(5607), - [anon_sym_CARET_EQ] = ACTIONS(5607), - [anon_sym_PIPE_EQ] = ACTIONS(5607), - [anon_sym_and_eq] = ACTIONS(5605), - [anon_sym_or_eq] = ACTIONS(5605), - [anon_sym_xor_eq] = ACTIONS(5605), - [anon_sym_LT_EQ_GT] = ACTIONS(5607), - [anon_sym_or] = ACTIONS(5605), - [anon_sym_and] = ACTIONS(5605), - [anon_sym_bitor] = ACTIONS(5605), - [anon_sym_xor] = ACTIONS(5605), - [anon_sym_bitand] = ACTIONS(5605), - [anon_sym_not_eq] = ACTIONS(5605), - [anon_sym_DASH_DASH] = ACTIONS(5607), - [anon_sym_PLUS_PLUS] = ACTIONS(5607), - [anon_sym_DOT] = ACTIONS(5605), - [anon_sym_DOT_STAR] = ACTIONS(5607), - [anon_sym_DASH_GT] = ACTIONS(5607), + [2013] = { + [sym_ms_based_modifier] = STATE(8286), + [sym_ms_unaligned_ptr_modifier] = STATE(4069), + [sym_ms_pointer_modifier] = STATE(2116), + [sym__declarator] = STATE(6437), + [sym__abstract_declarator] = STATE(6783), + [sym_parenthesized_declarator] = STATE(6145), + [sym_abstract_parenthesized_declarator] = STATE(6099), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_abstract_pointer_declarator] = STATE(6099), + [sym_function_declarator] = STATE(6145), + [sym_abstract_function_declarator] = STATE(6099), + [sym_array_declarator] = STATE(6145), + [sym_abstract_array_declarator] = STATE(6099), + [sym_type_qualifier] = STATE(2738), + [sym_alignas_qualifier] = STATE(4325), + [sym_parameter_list] = STATE(3276), + [sym_decltype] = STATE(8569), + [sym_reference_declarator] = STATE(6145), + [sym_abstract_reference_declarator] = STATE(6099), + [sym_structured_binding_declarator] = STATE(6145), + [sym__function_declarator_seq] = STATE(6109), + [sym_template_type] = STATE(8569), + [sym_template_function] = STATE(6145), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5896), + [sym_qualified_identifier] = STATE(6145), + [sym_operator_name] = STATE(6145), + [aux_sym__type_definition_type_repeat1] = STATE(2738), + [aux_sym_pointer_declarator_repeat1] = STATE(2116), + [sym_identifier] = ACTIONS(5861), + [anon_sym_COMMA] = ACTIONS(5863), + [anon_sym_LPAREN2] = ACTIONS(4310), + [anon_sym_TILDE] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(6014), + [anon_sym_AMP_AMP] = ACTIONS(6016), + [anon_sym_AMP] = ACTIONS(6018), + [anon_sym___extension__] = ACTIONS(3339), + [anon_sym___attribute__] = ACTIONS(5871), + [anon_sym___attribute] = ACTIONS(5871), + [anon_sym_COLON_COLON] = ACTIONS(5873), + [anon_sym___based] = ACTIONS(53), + [sym_ms_restrict_modifier] = ACTIONS(3335), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(3335), + [sym_ms_signed_ptr_modifier] = ACTIONS(3335), + [anon_sym__unaligned] = ACTIONS(3337), + [anon_sym___unaligned] = ACTIONS(3337), + [anon_sym_LBRACK] = ACTIONS(5875), + [anon_sym_const] = ACTIONS(3339), + [anon_sym_constexpr] = ACTIONS(3339), + [anon_sym_volatile] = ACTIONS(3339), + [anon_sym_restrict] = ACTIONS(3339), + [anon_sym___restrict__] = ACTIONS(3339), + [anon_sym__Atomic] = ACTIONS(3339), + [anon_sym__Noreturn] = ACTIONS(3339), + [anon_sym_noreturn] = ACTIONS(3339), + [anon_sym__Nonnull] = ACTIONS(3339), + [anon_sym_mutable] = ACTIONS(3339), + [anon_sym_constinit] = ACTIONS(3339), + [anon_sym_consteval] = ACTIONS(3339), + [anon_sym_alignas] = ACTIONS(3341), + [anon_sym__Alignas] = ACTIONS(3341), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5605), - [anon_sym_decltype] = ACTIONS(5605), - [anon_sym_final] = ACTIONS(5605), - [anon_sym_override] = ACTIONS(5605), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_GT2] = ACTIONS(5863), + [anon_sym_operator] = ACTIONS(1850), }, - [1937] = { - [sym_identifier] = ACTIONS(2619), - [aux_sym_preproc_def_token1] = ACTIONS(2619), - [aux_sym_preproc_if_token1] = ACTIONS(2619), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2619), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2619), - [sym_preproc_directive] = ACTIONS(2619), - [anon_sym_LPAREN2] = ACTIONS(2621), - [anon_sym_TILDE] = ACTIONS(2621), - [anon_sym_STAR] = ACTIONS(2621), - [anon_sym_AMP_AMP] = ACTIONS(2621), - [anon_sym_AMP] = ACTIONS(2619), - [anon_sym_SEMI] = ACTIONS(2621), - [anon_sym___extension__] = ACTIONS(2619), - [anon_sym_typedef] = ACTIONS(2619), - [anon_sym_virtual] = ACTIONS(2619), - [anon_sym_extern] = ACTIONS(2619), - [anon_sym___attribute__] = ACTIONS(2619), - [anon_sym___attribute] = ACTIONS(2619), - [anon_sym_using] = ACTIONS(2619), - [anon_sym_COLON_COLON] = ACTIONS(2621), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2621), - [anon_sym___declspec] = ACTIONS(2619), - [anon_sym___based] = ACTIONS(2619), - [anon_sym_RBRACE] = ACTIONS(2621), - [anon_sym_signed] = ACTIONS(2619), - [anon_sym_unsigned] = ACTIONS(2619), - [anon_sym_long] = ACTIONS(2619), - [anon_sym_short] = ACTIONS(2619), - [anon_sym_LBRACK] = ACTIONS(2619), - [anon_sym_static] = ACTIONS(2619), - [anon_sym_register] = ACTIONS(2619), - [anon_sym_inline] = ACTIONS(2619), - [anon_sym___inline] = ACTIONS(2619), - [anon_sym___inline__] = ACTIONS(2619), - [anon_sym___forceinline] = ACTIONS(2619), - [anon_sym_thread_local] = ACTIONS(2619), - [anon_sym___thread] = ACTIONS(2619), - [anon_sym_const] = ACTIONS(2619), - [anon_sym_constexpr] = ACTIONS(2619), - [anon_sym_volatile] = ACTIONS(2619), - [anon_sym_restrict] = ACTIONS(2619), - [anon_sym___restrict__] = ACTIONS(2619), - [anon_sym__Atomic] = ACTIONS(2619), - [anon_sym__Noreturn] = ACTIONS(2619), - [anon_sym_noreturn] = ACTIONS(2619), - [anon_sym__Nonnull] = ACTIONS(2619), - [anon_sym_mutable] = ACTIONS(2619), - [anon_sym_constinit] = ACTIONS(2619), - [anon_sym_consteval] = ACTIONS(2619), - [anon_sym_alignas] = ACTIONS(2619), - [anon_sym__Alignas] = ACTIONS(2619), - [sym_primitive_type] = ACTIONS(2619), - [anon_sym_enum] = ACTIONS(2619), - [anon_sym_class] = ACTIONS(2619), - [anon_sym_struct] = ACTIONS(2619), - [anon_sym_union] = ACTIONS(2619), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2619), - [anon_sym_decltype] = ACTIONS(2619), - [anon_sym_explicit] = ACTIONS(2619), - [anon_sym_typename] = ACTIONS(2619), - [anon_sym_private] = ACTIONS(2619), - [anon_sym_template] = ACTIONS(2619), - [anon_sym_operator] = ACTIONS(2619), - [anon_sym_friend] = ACTIONS(2619), - [anon_sym_public] = ACTIONS(2619), - [anon_sym_protected] = ACTIONS(2619), - [anon_sym_static_assert] = ACTIONS(2619), - [anon_sym_catch] = ACTIONS(2619), + [2014] = { + [sym_identifier] = ACTIONS(2663), + [aux_sym_preproc_def_token1] = ACTIONS(2663), + [aux_sym_preproc_if_token1] = ACTIONS(2663), + [aux_sym_preproc_if_token2] = ACTIONS(2663), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2663), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2663), + [sym_preproc_directive] = ACTIONS(2663), + [anon_sym_LPAREN2] = ACTIONS(2665), + [anon_sym_TILDE] = ACTIONS(2665), + [anon_sym_STAR] = ACTIONS(2665), + [anon_sym_AMP_AMP] = ACTIONS(2665), + [anon_sym_AMP] = ACTIONS(2663), + [anon_sym_SEMI] = ACTIONS(2665), + [anon_sym___extension__] = ACTIONS(2663), + [anon_sym_typedef] = ACTIONS(2663), + [anon_sym_virtual] = ACTIONS(2663), + [anon_sym_extern] = ACTIONS(2663), + [anon_sym___attribute__] = ACTIONS(2663), + [anon_sym___attribute] = ACTIONS(2663), + [anon_sym_using] = ACTIONS(2663), + [anon_sym_COLON_COLON] = ACTIONS(2665), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2665), + [anon_sym___declspec] = ACTIONS(2663), + [anon_sym___based] = ACTIONS(2663), + [anon_sym_signed] = ACTIONS(2663), + [anon_sym_unsigned] = ACTIONS(2663), + [anon_sym_long] = ACTIONS(2663), + [anon_sym_short] = ACTIONS(2663), + [anon_sym_LBRACK] = ACTIONS(2663), + [anon_sym_static] = ACTIONS(2663), + [anon_sym_register] = ACTIONS(2663), + [anon_sym_inline] = ACTIONS(2663), + [anon_sym___inline] = ACTIONS(2663), + [anon_sym___inline__] = ACTIONS(2663), + [anon_sym___forceinline] = ACTIONS(2663), + [anon_sym_thread_local] = ACTIONS(2663), + [anon_sym___thread] = ACTIONS(2663), + [anon_sym_const] = ACTIONS(2663), + [anon_sym_constexpr] = ACTIONS(2663), + [anon_sym_volatile] = ACTIONS(2663), + [anon_sym_restrict] = ACTIONS(2663), + [anon_sym___restrict__] = ACTIONS(2663), + [anon_sym__Atomic] = ACTIONS(2663), + [anon_sym__Noreturn] = ACTIONS(2663), + [anon_sym_noreturn] = ACTIONS(2663), + [anon_sym__Nonnull] = ACTIONS(2663), + [anon_sym_mutable] = ACTIONS(2663), + [anon_sym_constinit] = ACTIONS(2663), + [anon_sym_consteval] = ACTIONS(2663), + [anon_sym_alignas] = ACTIONS(2663), + [anon_sym__Alignas] = ACTIONS(2663), + [sym_primitive_type] = ACTIONS(2663), + [anon_sym_enum] = ACTIONS(2663), + [anon_sym_class] = ACTIONS(2663), + [anon_sym_struct] = ACTIONS(2663), + [anon_sym_union] = ACTIONS(2663), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2663), + [anon_sym_decltype] = ACTIONS(2663), + [anon_sym_explicit] = ACTIONS(2663), + [anon_sym_typename] = ACTIONS(2663), + [anon_sym_private] = ACTIONS(2663), + [anon_sym_template] = ACTIONS(2663), + [anon_sym_operator] = ACTIONS(2663), + [anon_sym_friend] = ACTIONS(2663), + [anon_sym_public] = ACTIONS(2663), + [anon_sym_protected] = ACTIONS(2663), + [anon_sym_static_assert] = ACTIONS(2663), }, - [1938] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1940), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5902), - [anon_sym_COMMA] = ACTIONS(5902), - [anon_sym_RPAREN] = ACTIONS(5902), - [anon_sym_LPAREN2] = ACTIONS(5902), - [anon_sym_DASH] = ACTIONS(5904), - [anon_sym_PLUS] = ACTIONS(5904), - [anon_sym_STAR] = ACTIONS(5902), - [anon_sym_SLASH] = ACTIONS(5904), - [anon_sym_PERCENT] = ACTIONS(5902), - [anon_sym_PIPE_PIPE] = ACTIONS(5902), - [anon_sym_AMP_AMP] = ACTIONS(5902), - [anon_sym_PIPE] = ACTIONS(5904), - [anon_sym_CARET] = ACTIONS(5902), - [anon_sym_AMP] = ACTIONS(5904), - [anon_sym_EQ_EQ] = ACTIONS(5902), - [anon_sym_BANG_EQ] = ACTIONS(5902), - [anon_sym_GT] = ACTIONS(5904), - [anon_sym_GT_EQ] = ACTIONS(5902), - [anon_sym_LT_EQ] = ACTIONS(5904), - [anon_sym_LT] = ACTIONS(5904), - [anon_sym_LT_LT] = ACTIONS(5902), - [anon_sym_GT_GT] = ACTIONS(5902), - [anon_sym_SEMI] = ACTIONS(5902), - [anon_sym___extension__] = ACTIONS(5902), - [anon_sym___attribute__] = ACTIONS(5902), - [anon_sym___attribute] = ACTIONS(5904), - [anon_sym_COLON] = ACTIONS(5902), - [anon_sym_LBRACE] = ACTIONS(5902), - [anon_sym_RBRACE] = ACTIONS(5902), - [anon_sym_signed] = ACTIONS(5906), - [anon_sym_unsigned] = ACTIONS(5906), - [anon_sym_long] = ACTIONS(5906), - [anon_sym_short] = ACTIONS(5906), - [anon_sym_LBRACK] = ACTIONS(5902), - [anon_sym_RBRACK] = ACTIONS(5902), - [anon_sym_const] = ACTIONS(5904), - [anon_sym_constexpr] = ACTIONS(5902), - [anon_sym_volatile] = ACTIONS(5902), - [anon_sym_restrict] = ACTIONS(5902), - [anon_sym___restrict__] = ACTIONS(5902), - [anon_sym__Atomic] = ACTIONS(5902), - [anon_sym__Noreturn] = ACTIONS(5902), - [anon_sym_noreturn] = ACTIONS(5902), - [anon_sym__Nonnull] = ACTIONS(5902), - [anon_sym_mutable] = ACTIONS(5902), - [anon_sym_constinit] = ACTIONS(5902), - [anon_sym_consteval] = ACTIONS(5902), - [anon_sym_alignas] = ACTIONS(5902), - [anon_sym__Alignas] = ACTIONS(5902), - [anon_sym_QMARK] = ACTIONS(5902), - [anon_sym_LT_EQ_GT] = ACTIONS(5902), - [anon_sym_or] = ACTIONS(5902), - [anon_sym_and] = ACTIONS(5902), - [anon_sym_bitor] = ACTIONS(5902), - [anon_sym_xor] = ACTIONS(5902), - [anon_sym_bitand] = ACTIONS(5902), - [anon_sym_not_eq] = ACTIONS(5902), - [anon_sym_DASH_DASH] = ACTIONS(5902), - [anon_sym_PLUS_PLUS] = ACTIONS(5902), - [anon_sym_DOT] = ACTIONS(5904), - [anon_sym_DOT_STAR] = ACTIONS(5902), - [anon_sym_DASH_GT] = ACTIONS(5902), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5902), - [anon_sym_decltype] = ACTIONS(5902), - [anon_sym_final] = ACTIONS(5902), - [anon_sym_override] = ACTIONS(5902), - [anon_sym_requires] = ACTIONS(5902), + [2015] = { + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token2] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym___attribute] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym__Nonnull] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym__Alignas] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_private] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_friend] = ACTIONS(2871), + [anon_sym_public] = ACTIONS(2871), + [anon_sym_protected] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), }, - [1939] = { - [sym_identifier] = ACTIONS(1940), - [aux_sym_preproc_def_token1] = ACTIONS(1940), - [anon_sym_COMMA] = ACTIONS(2685), - [aux_sym_preproc_if_token1] = ACTIONS(1940), - [aux_sym_preproc_if_token2] = ACTIONS(1940), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1940), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1940), - [sym_preproc_directive] = ACTIONS(1940), - [anon_sym_LPAREN2] = ACTIONS(1938), - [anon_sym_TILDE] = ACTIONS(1938), - [anon_sym_STAR] = ACTIONS(1938), - [anon_sym_AMP_AMP] = ACTIONS(1938), - [anon_sym_AMP] = ACTIONS(1940), - [anon_sym_SEMI] = ACTIONS(2685), - [anon_sym___extension__] = ACTIONS(1940), - [anon_sym_typedef] = ACTIONS(1940), - [anon_sym_virtual] = ACTIONS(1940), - [anon_sym_extern] = ACTIONS(1940), - [anon_sym___attribute__] = ACTIONS(5442), - [anon_sym___attribute] = ACTIONS(5442), - [anon_sym_using] = ACTIONS(1940), - [anon_sym_COLON_COLON] = ACTIONS(1938), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1938), - [anon_sym___declspec] = ACTIONS(1940), - [anon_sym___based] = ACTIONS(1940), - [anon_sym_signed] = ACTIONS(1940), - [anon_sym_unsigned] = ACTIONS(1940), - [anon_sym_long] = ACTIONS(1940), - [anon_sym_short] = ACTIONS(1940), - [anon_sym_LBRACK] = ACTIONS(1940), - [anon_sym_static] = ACTIONS(1940), - [anon_sym_register] = ACTIONS(1940), - [anon_sym_inline] = ACTIONS(1940), - [anon_sym___inline] = ACTIONS(1940), - [anon_sym___inline__] = ACTIONS(1940), - [anon_sym___forceinline] = ACTIONS(1940), - [anon_sym_thread_local] = ACTIONS(1940), - [anon_sym___thread] = ACTIONS(1940), - [anon_sym_const] = ACTIONS(1940), - [anon_sym_constexpr] = ACTIONS(1940), - [anon_sym_volatile] = ACTIONS(1940), - [anon_sym_restrict] = ACTIONS(1940), - [anon_sym___restrict__] = ACTIONS(1940), - [anon_sym__Atomic] = ACTIONS(1940), - [anon_sym__Noreturn] = ACTIONS(1940), - [anon_sym_noreturn] = ACTIONS(1940), - [anon_sym__Nonnull] = ACTIONS(1940), - [anon_sym_mutable] = ACTIONS(1940), - [anon_sym_constinit] = ACTIONS(1940), - [anon_sym_consteval] = ACTIONS(1940), - [anon_sym_alignas] = ACTIONS(1940), - [anon_sym__Alignas] = ACTIONS(1940), - [sym_primitive_type] = ACTIONS(1940), - [anon_sym_enum] = ACTIONS(1940), - [anon_sym_class] = ACTIONS(1940), - [anon_sym_struct] = ACTIONS(1940), - [anon_sym_union] = ACTIONS(1940), + [2016] = { + [sym_identifier] = ACTIONS(5625), + [aux_sym_preproc_def_token1] = ACTIONS(5625), + [aux_sym_preproc_if_token1] = ACTIONS(5625), + [aux_sym_preproc_if_token2] = ACTIONS(5625), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5625), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5625), + [sym_preproc_directive] = ACTIONS(5625), + [anon_sym_LPAREN2] = ACTIONS(5627), + [anon_sym_TILDE] = ACTIONS(5627), + [anon_sym_STAR] = ACTIONS(5627), + [anon_sym_AMP_AMP] = ACTIONS(5627), + [anon_sym_AMP] = ACTIONS(5625), + [anon_sym_SEMI] = ACTIONS(5627), + [anon_sym___extension__] = ACTIONS(5625), + [anon_sym_typedef] = ACTIONS(5625), + [anon_sym_virtual] = ACTIONS(5625), + [anon_sym_extern] = ACTIONS(5625), + [anon_sym___attribute__] = ACTIONS(5625), + [anon_sym___attribute] = ACTIONS(5625), + [anon_sym_using] = ACTIONS(5625), + [anon_sym_COLON_COLON] = ACTIONS(5627), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5627), + [anon_sym___declspec] = ACTIONS(5625), + [anon_sym___based] = ACTIONS(5625), + [anon_sym_signed] = ACTIONS(5625), + [anon_sym_unsigned] = ACTIONS(5625), + [anon_sym_long] = ACTIONS(5625), + [anon_sym_short] = ACTIONS(5625), + [anon_sym_LBRACK] = ACTIONS(5625), + [anon_sym_static] = ACTIONS(5625), + [anon_sym_register] = ACTIONS(5625), + [anon_sym_inline] = ACTIONS(5625), + [anon_sym___inline] = ACTIONS(5625), + [anon_sym___inline__] = ACTIONS(5625), + [anon_sym___forceinline] = ACTIONS(5625), + [anon_sym_thread_local] = ACTIONS(5625), + [anon_sym___thread] = ACTIONS(5625), + [anon_sym_const] = ACTIONS(5625), + [anon_sym_constexpr] = ACTIONS(5625), + [anon_sym_volatile] = ACTIONS(5625), + [anon_sym_restrict] = ACTIONS(5625), + [anon_sym___restrict__] = ACTIONS(5625), + [anon_sym__Atomic] = ACTIONS(5625), + [anon_sym__Noreturn] = ACTIONS(5625), + [anon_sym_noreturn] = ACTIONS(5625), + [anon_sym__Nonnull] = ACTIONS(5625), + [anon_sym_mutable] = ACTIONS(5625), + [anon_sym_constinit] = ACTIONS(5625), + [anon_sym_consteval] = ACTIONS(5625), + [anon_sym_alignas] = ACTIONS(5625), + [anon_sym__Alignas] = ACTIONS(5625), + [sym_primitive_type] = ACTIONS(5625), + [anon_sym_enum] = ACTIONS(5625), + [anon_sym_class] = ACTIONS(5625), + [anon_sym_struct] = ACTIONS(5625), + [anon_sym_union] = ACTIONS(5625), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1940), - [anon_sym_decltype] = ACTIONS(1940), - [anon_sym_explicit] = ACTIONS(1940), - [anon_sym_typename] = ACTIONS(1940), - [anon_sym_private] = ACTIONS(1940), - [anon_sym_template] = ACTIONS(1940), - [anon_sym_operator] = ACTIONS(1940), - [anon_sym_friend] = ACTIONS(1940), - [anon_sym_public] = ACTIONS(1940), - [anon_sym_protected] = ACTIONS(1940), - [anon_sym_static_assert] = ACTIONS(1940), + [sym_auto] = ACTIONS(5625), + [anon_sym_decltype] = ACTIONS(5625), + [anon_sym_explicit] = ACTIONS(5625), + [anon_sym_typename] = ACTIONS(5625), + [anon_sym_private] = ACTIONS(5625), + [anon_sym_template] = ACTIONS(5625), + [anon_sym_operator] = ACTIONS(5625), + [anon_sym_friend] = ACTIONS(5625), + [anon_sym_public] = ACTIONS(5625), + [anon_sym_protected] = ACTIONS(5625), + [anon_sym_static_assert] = ACTIONS(5625), }, - [1940] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1669), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5908), - [anon_sym_COMMA] = ACTIONS(5908), - [anon_sym_RPAREN] = ACTIONS(5908), - [anon_sym_LPAREN2] = ACTIONS(5908), - [anon_sym_DASH] = ACTIONS(5910), - [anon_sym_PLUS] = ACTIONS(5910), - [anon_sym_STAR] = ACTIONS(5908), - [anon_sym_SLASH] = ACTIONS(5910), - [anon_sym_PERCENT] = ACTIONS(5908), - [anon_sym_PIPE_PIPE] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(5908), - [anon_sym_PIPE] = ACTIONS(5910), - [anon_sym_CARET] = ACTIONS(5908), - [anon_sym_AMP] = ACTIONS(5910), - [anon_sym_EQ_EQ] = ACTIONS(5908), - [anon_sym_BANG_EQ] = ACTIONS(5908), - [anon_sym_GT] = ACTIONS(5910), - [anon_sym_GT_EQ] = ACTIONS(5908), - [anon_sym_LT_EQ] = ACTIONS(5910), - [anon_sym_LT] = ACTIONS(5910), - [anon_sym_LT_LT] = ACTIONS(5908), - [anon_sym_GT_GT] = ACTIONS(5908), - [anon_sym_SEMI] = ACTIONS(5908), - [anon_sym___extension__] = ACTIONS(5908), - [anon_sym___attribute__] = ACTIONS(5908), - [anon_sym___attribute] = ACTIONS(5910), - [anon_sym_COLON] = ACTIONS(5908), - [anon_sym_LBRACE] = ACTIONS(5908), - [anon_sym_RBRACE] = ACTIONS(5908), - [anon_sym_signed] = ACTIONS(5892), - [anon_sym_unsigned] = ACTIONS(5892), - [anon_sym_long] = ACTIONS(5892), - [anon_sym_short] = ACTIONS(5892), - [anon_sym_LBRACK] = ACTIONS(5908), - [anon_sym_RBRACK] = ACTIONS(5908), - [anon_sym_const] = ACTIONS(5910), - [anon_sym_constexpr] = ACTIONS(5908), - [anon_sym_volatile] = ACTIONS(5908), - [anon_sym_restrict] = ACTIONS(5908), - [anon_sym___restrict__] = ACTIONS(5908), - [anon_sym__Atomic] = ACTIONS(5908), - [anon_sym__Noreturn] = ACTIONS(5908), - [anon_sym_noreturn] = ACTIONS(5908), - [anon_sym__Nonnull] = ACTIONS(5908), - [anon_sym_mutable] = ACTIONS(5908), - [anon_sym_constinit] = ACTIONS(5908), - [anon_sym_consteval] = ACTIONS(5908), - [anon_sym_alignas] = ACTIONS(5908), - [anon_sym__Alignas] = ACTIONS(5908), - [anon_sym_QMARK] = ACTIONS(5908), - [anon_sym_LT_EQ_GT] = ACTIONS(5908), - [anon_sym_or] = ACTIONS(5908), - [anon_sym_and] = ACTIONS(5908), - [anon_sym_bitor] = ACTIONS(5908), - [anon_sym_xor] = ACTIONS(5908), - [anon_sym_bitand] = ACTIONS(5908), - [anon_sym_not_eq] = ACTIONS(5908), - [anon_sym_DASH_DASH] = ACTIONS(5908), - [anon_sym_PLUS_PLUS] = ACTIONS(5908), - [anon_sym_DOT] = ACTIONS(5910), - [anon_sym_DOT_STAR] = ACTIONS(5908), - [anon_sym_DASH_GT] = ACTIONS(5908), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5908), - [anon_sym_decltype] = ACTIONS(5908), - [anon_sym_final] = ACTIONS(5908), - [anon_sym_override] = ACTIONS(5908), - [anon_sym_requires] = ACTIONS(5908), + [2017] = { + [sym_identifier] = ACTIONS(6020), + [anon_sym_LPAREN2] = ACTIONS(6022), + [anon_sym_TILDE] = ACTIONS(6022), + [anon_sym_STAR] = ACTIONS(6022), + [anon_sym_AMP_AMP] = ACTIONS(6022), + [anon_sym_AMP] = ACTIONS(6020), + [anon_sym___extension__] = ACTIONS(6020), + [anon_sym_virtual] = ACTIONS(6020), + [anon_sym_extern] = ACTIONS(6020), + [anon_sym___attribute__] = ACTIONS(6020), + [anon_sym___attribute] = ACTIONS(6020), + [anon_sym_using] = ACTIONS(6020), + [anon_sym_COLON_COLON] = ACTIONS(6022), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6022), + [anon_sym___declspec] = ACTIONS(6020), + [anon_sym___based] = ACTIONS(6020), + [anon_sym___cdecl] = ACTIONS(6020), + [anon_sym___clrcall] = ACTIONS(6020), + [anon_sym___stdcall] = ACTIONS(6020), + [anon_sym___fastcall] = ACTIONS(6020), + [anon_sym___thiscall] = ACTIONS(6020), + [anon_sym___vectorcall] = ACTIONS(6020), + [anon_sym_LBRACE] = ACTIONS(6022), + [anon_sym_signed] = ACTIONS(6020), + [anon_sym_unsigned] = ACTIONS(6020), + [anon_sym_long] = ACTIONS(6020), + [anon_sym_short] = ACTIONS(6020), + [anon_sym_LBRACK] = ACTIONS(6020), + [anon_sym_static] = ACTIONS(6020), + [anon_sym_register] = ACTIONS(6020), + [anon_sym_inline] = ACTIONS(6020), + [anon_sym___inline] = ACTIONS(6020), + [anon_sym___inline__] = ACTIONS(6020), + [anon_sym___forceinline] = ACTIONS(6020), + [anon_sym_thread_local] = ACTIONS(6020), + [anon_sym___thread] = ACTIONS(6020), + [anon_sym_const] = ACTIONS(6020), + [anon_sym_constexpr] = ACTIONS(6020), + [anon_sym_volatile] = ACTIONS(6020), + [anon_sym_restrict] = ACTIONS(6020), + [anon_sym___restrict__] = ACTIONS(6020), + [anon_sym__Atomic] = ACTIONS(6020), + [anon_sym__Noreturn] = ACTIONS(6020), + [anon_sym_noreturn] = ACTIONS(6020), + [anon_sym__Nonnull] = ACTIONS(6020), + [anon_sym_mutable] = ACTIONS(6020), + [anon_sym_constinit] = ACTIONS(6020), + [anon_sym_consteval] = ACTIONS(6020), + [anon_sym_alignas] = ACTIONS(6020), + [anon_sym__Alignas] = ACTIONS(6020), + [sym_primitive_type] = ACTIONS(6020), + [anon_sym_enum] = ACTIONS(6020), + [anon_sym_class] = ACTIONS(6020), + [anon_sym_struct] = ACTIONS(6020), + [anon_sym_union] = ACTIONS(6020), + [anon_sym_DASH_GT] = ACTIONS(6022), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6020), + [anon_sym_decltype] = ACTIONS(6020), + [anon_sym_explicit] = ACTIONS(6020), + [anon_sym_typename] = ACTIONS(6020), + [anon_sym_template] = ACTIONS(6020), + [anon_sym_operator] = ACTIONS(6020), + [anon_sym_friend] = ACTIONS(6020), + [anon_sym_noexcept] = ACTIONS(6020), + [anon_sym_throw] = ACTIONS(6020), + [anon_sym_concept] = ACTIONS(6020), + [anon_sym_requires] = ACTIONS(6020), }, - [1941] = { - [sym_identifier] = ACTIONS(4996), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5003), - [anon_sym_COMMA] = ACTIONS(5003), - [anon_sym_RPAREN] = ACTIONS(5003), - [aux_sym_preproc_if_token2] = ACTIONS(5003), - [aux_sym_preproc_else_token1] = ACTIONS(5003), - [aux_sym_preproc_elif_token1] = ACTIONS(4996), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5003), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5003), - [anon_sym_LPAREN2] = ACTIONS(5003), - [anon_sym_DASH] = ACTIONS(4996), - [anon_sym_PLUS] = ACTIONS(4996), - [anon_sym_STAR] = ACTIONS(4996), - [anon_sym_SLASH] = ACTIONS(4996), - [anon_sym_PERCENT] = ACTIONS(4996), - [anon_sym_PIPE_PIPE] = ACTIONS(5003), - [anon_sym_AMP_AMP] = ACTIONS(5003), - [anon_sym_PIPE] = ACTIONS(4996), - [anon_sym_CARET] = ACTIONS(4996), - [anon_sym_AMP] = ACTIONS(4996), - [anon_sym_EQ_EQ] = ACTIONS(5003), - [anon_sym_BANG_EQ] = ACTIONS(5003), - [anon_sym_GT] = ACTIONS(4996), - [anon_sym_GT_EQ] = ACTIONS(5003), - [anon_sym_LT_EQ] = ACTIONS(4996), - [anon_sym_LT] = ACTIONS(4996), - [anon_sym_LT_LT] = ACTIONS(4996), - [anon_sym_GT_GT] = ACTIONS(4996), - [anon_sym_SEMI] = ACTIONS(5003), - [anon_sym___attribute__] = ACTIONS(4996), - [anon_sym___attribute] = ACTIONS(4996), - [anon_sym_COLON] = ACTIONS(4996), - [anon_sym_COLON_COLON] = ACTIONS(5003), - [anon_sym_LBRACE] = ACTIONS(5003), - [anon_sym_RBRACE] = ACTIONS(5003), - [anon_sym_LBRACK] = ACTIONS(5003), - [anon_sym_RBRACK] = ACTIONS(5003), - [anon_sym_EQ] = ACTIONS(4996), - [anon_sym_QMARK] = ACTIONS(5003), - [anon_sym_STAR_EQ] = ACTIONS(5003), - [anon_sym_SLASH_EQ] = ACTIONS(5003), - [anon_sym_PERCENT_EQ] = ACTIONS(5003), - [anon_sym_PLUS_EQ] = ACTIONS(5003), - [anon_sym_DASH_EQ] = ACTIONS(5003), - [anon_sym_LT_LT_EQ] = ACTIONS(5003), - [anon_sym_GT_GT_EQ] = ACTIONS(5003), - [anon_sym_AMP_EQ] = ACTIONS(5003), - [anon_sym_CARET_EQ] = ACTIONS(5003), - [anon_sym_PIPE_EQ] = ACTIONS(5003), - [anon_sym_and_eq] = ACTIONS(4996), - [anon_sym_or_eq] = ACTIONS(4996), - [anon_sym_xor_eq] = ACTIONS(4996), - [anon_sym_LT_EQ_GT] = ACTIONS(5003), - [anon_sym_or] = ACTIONS(4996), - [anon_sym_and] = ACTIONS(4996), - [anon_sym_bitor] = ACTIONS(4996), - [anon_sym_xor] = ACTIONS(4996), - [anon_sym_bitand] = ACTIONS(4996), - [anon_sym_not_eq] = ACTIONS(4996), - [anon_sym_DASH_DASH] = ACTIONS(5003), - [anon_sym_PLUS_PLUS] = ACTIONS(5003), - [anon_sym_DOT] = ACTIONS(4996), - [anon_sym_DOT_STAR] = ACTIONS(5003), - [anon_sym_DASH_GT] = ACTIONS(5003), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4996), - [anon_sym_decltype] = ACTIONS(4996), - [anon_sym_final] = ACTIONS(4996), - [anon_sym_override] = ACTIONS(4996), + [2018] = { + [sym_identifier] = ACTIONS(5633), + [aux_sym_preproc_def_token1] = ACTIONS(5633), + [aux_sym_preproc_if_token1] = ACTIONS(5633), + [aux_sym_preproc_if_token2] = ACTIONS(5633), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5633), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5633), + [sym_preproc_directive] = ACTIONS(5633), + [anon_sym_LPAREN2] = ACTIONS(5635), + [anon_sym_TILDE] = ACTIONS(5635), + [anon_sym_STAR] = ACTIONS(5635), + [anon_sym_AMP_AMP] = ACTIONS(5635), + [anon_sym_AMP] = ACTIONS(5633), + [anon_sym_SEMI] = ACTIONS(5635), + [anon_sym___extension__] = ACTIONS(5633), + [anon_sym_typedef] = ACTIONS(5633), + [anon_sym_virtual] = ACTIONS(5633), + [anon_sym_extern] = ACTIONS(5633), + [anon_sym___attribute__] = ACTIONS(5633), + [anon_sym___attribute] = ACTIONS(5633), + [anon_sym_using] = ACTIONS(5633), + [anon_sym_COLON_COLON] = ACTIONS(5635), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5635), + [anon_sym___declspec] = ACTIONS(5633), + [anon_sym___based] = ACTIONS(5633), + [anon_sym_signed] = ACTIONS(5633), + [anon_sym_unsigned] = ACTIONS(5633), + [anon_sym_long] = ACTIONS(5633), + [anon_sym_short] = ACTIONS(5633), + [anon_sym_LBRACK] = ACTIONS(5633), + [anon_sym_static] = ACTIONS(5633), + [anon_sym_register] = ACTIONS(5633), + [anon_sym_inline] = ACTIONS(5633), + [anon_sym___inline] = ACTIONS(5633), + [anon_sym___inline__] = ACTIONS(5633), + [anon_sym___forceinline] = ACTIONS(5633), + [anon_sym_thread_local] = ACTIONS(5633), + [anon_sym___thread] = ACTIONS(5633), + [anon_sym_const] = ACTIONS(5633), + [anon_sym_constexpr] = ACTIONS(5633), + [anon_sym_volatile] = ACTIONS(5633), + [anon_sym_restrict] = ACTIONS(5633), + [anon_sym___restrict__] = ACTIONS(5633), + [anon_sym__Atomic] = ACTIONS(5633), + [anon_sym__Noreturn] = ACTIONS(5633), + [anon_sym_noreturn] = ACTIONS(5633), + [anon_sym__Nonnull] = ACTIONS(5633), + [anon_sym_mutable] = ACTIONS(5633), + [anon_sym_constinit] = ACTIONS(5633), + [anon_sym_consteval] = ACTIONS(5633), + [anon_sym_alignas] = ACTIONS(5633), + [anon_sym__Alignas] = ACTIONS(5633), + [sym_primitive_type] = ACTIONS(5633), + [anon_sym_enum] = ACTIONS(5633), + [anon_sym_class] = ACTIONS(5633), + [anon_sym_struct] = ACTIONS(5633), + [anon_sym_union] = ACTIONS(5633), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5633), + [anon_sym_decltype] = ACTIONS(5633), + [anon_sym_explicit] = ACTIONS(5633), + [anon_sym_typename] = ACTIONS(5633), + [anon_sym_private] = ACTIONS(5633), + [anon_sym_template] = ACTIONS(5633), + [anon_sym_operator] = ACTIONS(5633), + [anon_sym_friend] = ACTIONS(5633), + [anon_sym_public] = ACTIONS(5633), + [anon_sym_protected] = ACTIONS(5633), + [anon_sym_static_assert] = ACTIONS(5633), }, - [1942] = { - [sym_string_literal] = STATE(1684), - [sym_raw_string_literal] = STATE(1684), - [sym_identifier] = ACTIONS(5912), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5914), - [anon_sym_COMMA] = ACTIONS(5914), - [aux_sym_preproc_if_token2] = ACTIONS(5914), - [aux_sym_preproc_else_token1] = ACTIONS(5914), - [aux_sym_preproc_elif_token1] = ACTIONS(5912), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5914), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5914), - [anon_sym_LPAREN2] = ACTIONS(5914), - [anon_sym_DASH] = ACTIONS(5912), - [anon_sym_PLUS] = ACTIONS(5912), - [anon_sym_STAR] = ACTIONS(5912), - [anon_sym_SLASH] = ACTIONS(5912), - [anon_sym_PERCENT] = ACTIONS(5912), - [anon_sym_PIPE_PIPE] = ACTIONS(5914), - [anon_sym_AMP_AMP] = ACTIONS(5914), - [anon_sym_PIPE] = ACTIONS(5912), - [anon_sym_CARET] = ACTIONS(5912), - [anon_sym_AMP] = ACTIONS(5912), - [anon_sym_EQ_EQ] = ACTIONS(5914), - [anon_sym_BANG_EQ] = ACTIONS(5914), - [anon_sym_GT] = ACTIONS(5912), - [anon_sym_GT_EQ] = ACTIONS(5914), - [anon_sym_LT_EQ] = ACTIONS(5912), - [anon_sym_LT] = ACTIONS(5912), - [anon_sym_LT_LT] = ACTIONS(5912), - [anon_sym_GT_GT] = ACTIONS(5912), - [anon_sym_LBRACK] = ACTIONS(5914), - [anon_sym_EQ] = ACTIONS(5912), - [anon_sym_QMARK] = ACTIONS(5914), - [anon_sym_STAR_EQ] = ACTIONS(5914), - [anon_sym_SLASH_EQ] = ACTIONS(5914), - [anon_sym_PERCENT_EQ] = ACTIONS(5914), - [anon_sym_PLUS_EQ] = ACTIONS(5914), - [anon_sym_DASH_EQ] = ACTIONS(5914), - [anon_sym_LT_LT_EQ] = ACTIONS(5914), - [anon_sym_GT_GT_EQ] = ACTIONS(5914), - [anon_sym_AMP_EQ] = ACTIONS(5914), - [anon_sym_CARET_EQ] = ACTIONS(5914), - [anon_sym_PIPE_EQ] = ACTIONS(5914), - [anon_sym_and_eq] = ACTIONS(5912), - [anon_sym_or_eq] = ACTIONS(5912), - [anon_sym_xor_eq] = ACTIONS(5912), - [anon_sym_LT_EQ_GT] = ACTIONS(5914), - [anon_sym_or] = ACTIONS(5912), - [anon_sym_and] = ACTIONS(5912), - [anon_sym_bitor] = ACTIONS(5912), - [anon_sym_xor] = ACTIONS(5912), - [anon_sym_bitand] = ACTIONS(5912), - [anon_sym_not_eq] = ACTIONS(5912), - [anon_sym_DASH_DASH] = ACTIONS(5914), - [anon_sym_PLUS_PLUS] = ACTIONS(5914), - [anon_sym_DOT] = ACTIONS(5912), - [anon_sym_DOT_STAR] = ACTIONS(5914), - [anon_sym_DASH_GT] = ACTIONS(5914), + [2019] = { + [sym_string_literal] = STATE(1708), + [sym_template_argument_list] = STATE(2705), + [sym_raw_string_literal] = STATE(1708), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4166), + [anon_sym_COMMA] = ACTIONS(4166), + [anon_sym_LPAREN2] = ACTIONS(6008), + [anon_sym_DASH] = ACTIONS(4174), + [anon_sym_PLUS] = ACTIONS(4174), + [anon_sym_STAR] = ACTIONS(4174), + [anon_sym_SLASH] = ACTIONS(4174), + [anon_sym_PERCENT] = ACTIONS(4174), + [anon_sym_PIPE_PIPE] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4166), + [anon_sym_PIPE] = ACTIONS(4174), + [anon_sym_CARET] = ACTIONS(4174), + [anon_sym_AMP] = ACTIONS(4174), + [anon_sym_EQ_EQ] = ACTIONS(4166), + [anon_sym_BANG_EQ] = ACTIONS(4166), + [anon_sym_GT] = ACTIONS(4174), + [anon_sym_GT_EQ] = ACTIONS(4166), + [anon_sym_LT_EQ] = ACTIONS(4174), + [anon_sym_LT] = ACTIONS(6024), + [anon_sym_LT_LT] = ACTIONS(4174), + [anon_sym_GT_GT] = ACTIONS(4174), + [anon_sym_SEMI] = ACTIONS(4166), + [anon_sym_COLON_COLON] = ACTIONS(4187), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5044), + [anon_sym_LBRACE] = ACTIONS(4192), + [anon_sym_RBRACE] = ACTIONS(4166), + [anon_sym_LBRACK] = ACTIONS(6011), + [anon_sym_EQ] = ACTIONS(4174), + [anon_sym_QMARK] = ACTIONS(4166), + [anon_sym_STAR_EQ] = ACTIONS(4166), + [anon_sym_SLASH_EQ] = ACTIONS(4166), + [anon_sym_PERCENT_EQ] = ACTIONS(4166), + [anon_sym_PLUS_EQ] = ACTIONS(4166), + [anon_sym_DASH_EQ] = ACTIONS(4166), + [anon_sym_LT_LT_EQ] = ACTIONS(4166), + [anon_sym_GT_GT_EQ] = ACTIONS(4166), + [anon_sym_AMP_EQ] = ACTIONS(4166), + [anon_sym_CARET_EQ] = ACTIONS(4166), + [anon_sym_PIPE_EQ] = ACTIONS(4166), + [anon_sym_and_eq] = ACTIONS(4166), + [anon_sym_or_eq] = ACTIONS(4166), + [anon_sym_xor_eq] = ACTIONS(4166), + [anon_sym_LT_EQ_GT] = ACTIONS(4166), + [anon_sym_or] = ACTIONS(4174), + [anon_sym_and] = ACTIONS(4174), + [anon_sym_bitor] = ACTIONS(4166), + [anon_sym_xor] = ACTIONS(4174), + [anon_sym_bitand] = ACTIONS(4166), + [anon_sym_not_eq] = ACTIONS(4166), + [anon_sym_DASH_DASH] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4174), + [anon_sym_DOT_STAR] = ACTIONS(4166), + [anon_sym_DASH_GT] = ACTIONS(4166), [anon_sym_L_DQUOTE] = ACTIONS(1972), [anon_sym_u_DQUOTE] = ACTIONS(1972), [anon_sym_U_DQUOTE] = ACTIONS(1972), @@ -264844,2748 +271911,2248 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_uR_DQUOTE] = ACTIONS(1982), [anon_sym_UR_DQUOTE] = ACTIONS(1982), [anon_sym_u8R_DQUOTE] = ACTIONS(1982), - [sym_literal_suffix] = ACTIONS(5912), }, - [1943] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1669), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5916), - [anon_sym_COMMA] = ACTIONS(5916), - [anon_sym_RPAREN] = ACTIONS(5916), - [anon_sym_LPAREN2] = ACTIONS(5916), - [anon_sym_DASH] = ACTIONS(5918), - [anon_sym_PLUS] = ACTIONS(5918), - [anon_sym_STAR] = ACTIONS(5916), - [anon_sym_SLASH] = ACTIONS(5918), - [anon_sym_PERCENT] = ACTIONS(5916), - [anon_sym_PIPE_PIPE] = ACTIONS(5916), - [anon_sym_AMP_AMP] = ACTIONS(5916), - [anon_sym_PIPE] = ACTIONS(5918), - [anon_sym_CARET] = ACTIONS(5916), - [anon_sym_AMP] = ACTIONS(5918), - [anon_sym_EQ_EQ] = ACTIONS(5916), - [anon_sym_BANG_EQ] = ACTIONS(5916), - [anon_sym_GT] = ACTIONS(5918), - [anon_sym_GT_EQ] = ACTIONS(5916), - [anon_sym_LT_EQ] = ACTIONS(5918), - [anon_sym_LT] = ACTIONS(5918), - [anon_sym_LT_LT] = ACTIONS(5916), - [anon_sym_GT_GT] = ACTIONS(5916), - [anon_sym_SEMI] = ACTIONS(5916), - [anon_sym___extension__] = ACTIONS(5916), - [anon_sym___attribute__] = ACTIONS(5916), - [anon_sym___attribute] = ACTIONS(5918), - [anon_sym_COLON] = ACTIONS(5916), - [anon_sym_LBRACE] = ACTIONS(5916), - [anon_sym_RBRACE] = ACTIONS(5916), - [anon_sym_signed] = ACTIONS(5892), - [anon_sym_unsigned] = ACTIONS(5892), - [anon_sym_long] = ACTIONS(5892), - [anon_sym_short] = ACTIONS(5892), - [anon_sym_LBRACK] = ACTIONS(5916), - [anon_sym_RBRACK] = ACTIONS(5916), - [anon_sym_const] = ACTIONS(5918), - [anon_sym_constexpr] = ACTIONS(5916), - [anon_sym_volatile] = ACTIONS(5916), - [anon_sym_restrict] = ACTIONS(5916), - [anon_sym___restrict__] = ACTIONS(5916), - [anon_sym__Atomic] = ACTIONS(5916), - [anon_sym__Noreturn] = ACTIONS(5916), - [anon_sym_noreturn] = ACTIONS(5916), - [anon_sym__Nonnull] = ACTIONS(5916), - [anon_sym_mutable] = ACTIONS(5916), - [anon_sym_constinit] = ACTIONS(5916), - [anon_sym_consteval] = ACTIONS(5916), - [anon_sym_alignas] = ACTIONS(5916), - [anon_sym__Alignas] = ACTIONS(5916), - [anon_sym_QMARK] = ACTIONS(5916), - [anon_sym_LT_EQ_GT] = ACTIONS(5916), - [anon_sym_or] = ACTIONS(5916), - [anon_sym_and] = ACTIONS(5916), - [anon_sym_bitor] = ACTIONS(5916), - [anon_sym_xor] = ACTIONS(5916), - [anon_sym_bitand] = ACTIONS(5916), - [anon_sym_not_eq] = ACTIONS(5916), - [anon_sym_DASH_DASH] = ACTIONS(5916), - [anon_sym_PLUS_PLUS] = ACTIONS(5916), - [anon_sym_DOT] = ACTIONS(5918), - [anon_sym_DOT_STAR] = ACTIONS(5916), - [anon_sym_DASH_GT] = ACTIONS(5916), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5916), - [anon_sym_decltype] = ACTIONS(5916), - [anon_sym_final] = ACTIONS(5916), - [anon_sym_override] = ACTIONS(5916), - [anon_sym_requires] = ACTIONS(5916), + [2020] = { + [sym_identifier] = ACTIONS(2927), + [aux_sym_preproc_def_token1] = ACTIONS(2927), + [aux_sym_preproc_if_token1] = ACTIONS(2927), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2927), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2927), + [sym_preproc_directive] = ACTIONS(2927), + [anon_sym_LPAREN2] = ACTIONS(2929), + [anon_sym_TILDE] = ACTIONS(2929), + [anon_sym_STAR] = ACTIONS(2929), + [anon_sym_AMP_AMP] = ACTIONS(2929), + [anon_sym_AMP] = ACTIONS(2927), + [anon_sym_SEMI] = ACTIONS(2929), + [anon_sym___extension__] = ACTIONS(2927), + [anon_sym_typedef] = ACTIONS(2927), + [anon_sym_virtual] = ACTIONS(2927), + [anon_sym_extern] = ACTIONS(2927), + [anon_sym___attribute__] = ACTIONS(2927), + [anon_sym___attribute] = ACTIONS(2927), + [anon_sym_using] = ACTIONS(2927), + [anon_sym_COLON_COLON] = ACTIONS(2929), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2929), + [anon_sym___declspec] = ACTIONS(2927), + [anon_sym___based] = ACTIONS(2927), + [anon_sym_RBRACE] = ACTIONS(2929), + [anon_sym_signed] = ACTIONS(2927), + [anon_sym_unsigned] = ACTIONS(2927), + [anon_sym_long] = ACTIONS(2927), + [anon_sym_short] = ACTIONS(2927), + [anon_sym_LBRACK] = ACTIONS(2927), + [anon_sym_static] = ACTIONS(2927), + [anon_sym_register] = ACTIONS(2927), + [anon_sym_inline] = ACTIONS(2927), + [anon_sym___inline] = ACTIONS(2927), + [anon_sym___inline__] = ACTIONS(2927), + [anon_sym___forceinline] = ACTIONS(2927), + [anon_sym_thread_local] = ACTIONS(2927), + [anon_sym___thread] = ACTIONS(2927), + [anon_sym_const] = ACTIONS(2927), + [anon_sym_constexpr] = ACTIONS(2927), + [anon_sym_volatile] = ACTIONS(2927), + [anon_sym_restrict] = ACTIONS(2927), + [anon_sym___restrict__] = ACTIONS(2927), + [anon_sym__Atomic] = ACTIONS(2927), + [anon_sym__Noreturn] = ACTIONS(2927), + [anon_sym_noreturn] = ACTIONS(2927), + [anon_sym__Nonnull] = ACTIONS(2927), + [anon_sym_mutable] = ACTIONS(2927), + [anon_sym_constinit] = ACTIONS(2927), + [anon_sym_consteval] = ACTIONS(2927), + [anon_sym_alignas] = ACTIONS(2927), + [anon_sym__Alignas] = ACTIONS(2927), + [sym_primitive_type] = ACTIONS(2927), + [anon_sym_enum] = ACTIONS(2927), + [anon_sym_class] = ACTIONS(2927), + [anon_sym_struct] = ACTIONS(2927), + [anon_sym_union] = ACTIONS(2927), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2927), + [anon_sym_decltype] = ACTIONS(2927), + [anon_sym_explicit] = ACTIONS(2927), + [anon_sym_typename] = ACTIONS(2927), + [anon_sym_private] = ACTIONS(2927), + [anon_sym_template] = ACTIONS(2927), + [anon_sym_operator] = ACTIONS(2927), + [anon_sym_friend] = ACTIONS(2927), + [anon_sym_public] = ACTIONS(2927), + [anon_sym_protected] = ACTIONS(2927), + [anon_sym_static_assert] = ACTIONS(2927), }, - [1944] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1943), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5920), - [anon_sym_COMMA] = ACTIONS(5920), - [anon_sym_RPAREN] = ACTIONS(5920), - [anon_sym_LPAREN2] = ACTIONS(5920), - [anon_sym_DASH] = ACTIONS(5922), - [anon_sym_PLUS] = ACTIONS(5922), - [anon_sym_STAR] = ACTIONS(5920), - [anon_sym_SLASH] = ACTIONS(5922), - [anon_sym_PERCENT] = ACTIONS(5920), - [anon_sym_PIPE_PIPE] = ACTIONS(5920), - [anon_sym_AMP_AMP] = ACTIONS(5920), - [anon_sym_PIPE] = ACTIONS(5922), - [anon_sym_CARET] = ACTIONS(5920), - [anon_sym_AMP] = ACTIONS(5922), - [anon_sym_EQ_EQ] = ACTIONS(5920), - [anon_sym_BANG_EQ] = ACTIONS(5920), - [anon_sym_GT] = ACTIONS(5922), - [anon_sym_GT_EQ] = ACTIONS(5920), - [anon_sym_LT_EQ] = ACTIONS(5922), - [anon_sym_LT] = ACTIONS(5922), - [anon_sym_LT_LT] = ACTIONS(5920), - [anon_sym_GT_GT] = ACTIONS(5920), - [anon_sym_SEMI] = ACTIONS(5920), - [anon_sym___extension__] = ACTIONS(5920), - [anon_sym___attribute__] = ACTIONS(5920), - [anon_sym___attribute] = ACTIONS(5922), - [anon_sym_COLON] = ACTIONS(5920), - [anon_sym_LBRACE] = ACTIONS(5920), - [anon_sym_RBRACE] = ACTIONS(5920), - [anon_sym_signed] = ACTIONS(5924), - [anon_sym_unsigned] = ACTIONS(5924), - [anon_sym_long] = ACTIONS(5924), - [anon_sym_short] = ACTIONS(5924), - [anon_sym_LBRACK] = ACTIONS(5920), - [anon_sym_RBRACK] = ACTIONS(5920), - [anon_sym_const] = ACTIONS(5922), - [anon_sym_constexpr] = ACTIONS(5920), - [anon_sym_volatile] = ACTIONS(5920), - [anon_sym_restrict] = ACTIONS(5920), - [anon_sym___restrict__] = ACTIONS(5920), - [anon_sym__Atomic] = ACTIONS(5920), - [anon_sym__Noreturn] = ACTIONS(5920), - [anon_sym_noreturn] = ACTIONS(5920), - [anon_sym__Nonnull] = ACTIONS(5920), - [anon_sym_mutable] = ACTIONS(5920), - [anon_sym_constinit] = ACTIONS(5920), - [anon_sym_consteval] = ACTIONS(5920), - [anon_sym_alignas] = ACTIONS(5920), - [anon_sym__Alignas] = ACTIONS(5920), - [anon_sym_QMARK] = ACTIONS(5920), - [anon_sym_LT_EQ_GT] = ACTIONS(5920), - [anon_sym_or] = ACTIONS(5920), - [anon_sym_and] = ACTIONS(5920), - [anon_sym_bitor] = ACTIONS(5920), - [anon_sym_xor] = ACTIONS(5920), - [anon_sym_bitand] = ACTIONS(5920), - [anon_sym_not_eq] = ACTIONS(5920), - [anon_sym_DASH_DASH] = ACTIONS(5920), - [anon_sym_PLUS_PLUS] = ACTIONS(5920), - [anon_sym_DOT] = ACTIONS(5922), - [anon_sym_DOT_STAR] = ACTIONS(5920), - [anon_sym_DASH_GT] = ACTIONS(5920), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5920), - [anon_sym_decltype] = ACTIONS(5920), - [anon_sym_final] = ACTIONS(5920), - [anon_sym_override] = ACTIONS(5920), - [anon_sym_requires] = ACTIONS(5920), + [2021] = { + [sym_identifier] = ACTIONS(2927), + [aux_sym_preproc_def_token1] = ACTIONS(2927), + [aux_sym_preproc_if_token1] = ACTIONS(2927), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2927), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2927), + [sym_preproc_directive] = ACTIONS(2927), + [anon_sym_LPAREN2] = ACTIONS(2929), + [anon_sym_TILDE] = ACTIONS(2929), + [anon_sym_STAR] = ACTIONS(2929), + [anon_sym_AMP_AMP] = ACTIONS(2929), + [anon_sym_AMP] = ACTIONS(2927), + [anon_sym_SEMI] = ACTIONS(2929), + [anon_sym___extension__] = ACTIONS(2927), + [anon_sym_typedef] = ACTIONS(2927), + [anon_sym_virtual] = ACTIONS(2927), + [anon_sym_extern] = ACTIONS(2927), + [anon_sym___attribute__] = ACTIONS(2927), + [anon_sym___attribute] = ACTIONS(2927), + [anon_sym_using] = ACTIONS(2927), + [anon_sym_COLON_COLON] = ACTIONS(2929), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2929), + [anon_sym___declspec] = ACTIONS(2927), + [anon_sym___based] = ACTIONS(2927), + [anon_sym_RBRACE] = ACTIONS(2929), + [anon_sym_signed] = ACTIONS(2927), + [anon_sym_unsigned] = ACTIONS(2927), + [anon_sym_long] = ACTIONS(2927), + [anon_sym_short] = ACTIONS(2927), + [anon_sym_LBRACK] = ACTIONS(2927), + [anon_sym_static] = ACTIONS(2927), + [anon_sym_register] = ACTIONS(2927), + [anon_sym_inline] = ACTIONS(2927), + [anon_sym___inline] = ACTIONS(2927), + [anon_sym___inline__] = ACTIONS(2927), + [anon_sym___forceinline] = ACTIONS(2927), + [anon_sym_thread_local] = ACTIONS(2927), + [anon_sym___thread] = ACTIONS(2927), + [anon_sym_const] = ACTIONS(2927), + [anon_sym_constexpr] = ACTIONS(2927), + [anon_sym_volatile] = ACTIONS(2927), + [anon_sym_restrict] = ACTIONS(2927), + [anon_sym___restrict__] = ACTIONS(2927), + [anon_sym__Atomic] = ACTIONS(2927), + [anon_sym__Noreturn] = ACTIONS(2927), + [anon_sym_noreturn] = ACTIONS(2927), + [anon_sym__Nonnull] = ACTIONS(2927), + [anon_sym_mutable] = ACTIONS(2927), + [anon_sym_constinit] = ACTIONS(2927), + [anon_sym_consteval] = ACTIONS(2927), + [anon_sym_alignas] = ACTIONS(2927), + [anon_sym__Alignas] = ACTIONS(2927), + [sym_primitive_type] = ACTIONS(2927), + [anon_sym_enum] = ACTIONS(2927), + [anon_sym_class] = ACTIONS(2927), + [anon_sym_struct] = ACTIONS(2927), + [anon_sym_union] = ACTIONS(2927), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2927), + [anon_sym_decltype] = ACTIONS(2927), + [anon_sym_explicit] = ACTIONS(2927), + [anon_sym_typename] = ACTIONS(2927), + [anon_sym_private] = ACTIONS(2927), + [anon_sym_template] = ACTIONS(2927), + [anon_sym_operator] = ACTIONS(2927), + [anon_sym_friend] = ACTIONS(2927), + [anon_sym_public] = ACTIONS(2927), + [anon_sym_protected] = ACTIONS(2927), + [anon_sym_static_assert] = ACTIONS(2927), }, - [1945] = { - [sym_identifier] = ACTIONS(5625), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5627), - [anon_sym_COMMA] = ACTIONS(5627), - [anon_sym_RPAREN] = ACTIONS(5627), - [aux_sym_preproc_if_token2] = ACTIONS(5627), - [aux_sym_preproc_else_token1] = ACTIONS(5627), - [aux_sym_preproc_elif_token1] = ACTIONS(5625), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5627), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5627), - [anon_sym_LPAREN2] = ACTIONS(5627), - [anon_sym_DASH] = ACTIONS(5625), - [anon_sym_PLUS] = ACTIONS(5625), - [anon_sym_STAR] = ACTIONS(5625), - [anon_sym_SLASH] = ACTIONS(5625), - [anon_sym_PERCENT] = ACTIONS(5625), - [anon_sym_PIPE_PIPE] = ACTIONS(5627), - [anon_sym_AMP_AMP] = ACTIONS(5627), - [anon_sym_PIPE] = ACTIONS(5625), - [anon_sym_CARET] = ACTIONS(5625), - [anon_sym_AMP] = ACTIONS(5625), - [anon_sym_EQ_EQ] = ACTIONS(5627), - [anon_sym_BANG_EQ] = ACTIONS(5627), - [anon_sym_GT] = ACTIONS(5625), - [anon_sym_GT_EQ] = ACTIONS(5627), - [anon_sym_LT_EQ] = ACTIONS(5625), - [anon_sym_LT] = ACTIONS(5625), - [anon_sym_LT_LT] = ACTIONS(5625), - [anon_sym_GT_GT] = ACTIONS(5625), - [anon_sym_SEMI] = ACTIONS(5627), - [anon_sym___attribute__] = ACTIONS(5625), - [anon_sym___attribute] = ACTIONS(5625), - [anon_sym_COLON] = ACTIONS(5625), - [anon_sym_COLON_COLON] = ACTIONS(5454), - [anon_sym_LBRACE] = ACTIONS(5627), - [anon_sym_RBRACE] = ACTIONS(5627), - [anon_sym_LBRACK] = ACTIONS(5627), - [anon_sym_RBRACK] = ACTIONS(5627), - [anon_sym_EQ] = ACTIONS(5625), - [anon_sym_QMARK] = ACTIONS(5627), - [anon_sym_STAR_EQ] = ACTIONS(5627), - [anon_sym_SLASH_EQ] = ACTIONS(5627), - [anon_sym_PERCENT_EQ] = ACTIONS(5627), - [anon_sym_PLUS_EQ] = ACTIONS(5627), - [anon_sym_DASH_EQ] = ACTIONS(5627), - [anon_sym_LT_LT_EQ] = ACTIONS(5627), - [anon_sym_GT_GT_EQ] = ACTIONS(5627), - [anon_sym_AMP_EQ] = ACTIONS(5627), - [anon_sym_CARET_EQ] = ACTIONS(5627), - [anon_sym_PIPE_EQ] = ACTIONS(5627), - [anon_sym_and_eq] = ACTIONS(5625), - [anon_sym_or_eq] = ACTIONS(5625), - [anon_sym_xor_eq] = ACTIONS(5625), - [anon_sym_LT_EQ_GT] = ACTIONS(5627), - [anon_sym_or] = ACTIONS(5625), - [anon_sym_and] = ACTIONS(5625), - [anon_sym_bitor] = ACTIONS(5625), - [anon_sym_xor] = ACTIONS(5625), - [anon_sym_bitand] = ACTIONS(5625), - [anon_sym_not_eq] = ACTIONS(5625), - [anon_sym_DASH_DASH] = ACTIONS(5627), - [anon_sym_PLUS_PLUS] = ACTIONS(5627), - [anon_sym_DOT] = ACTIONS(5625), - [anon_sym_DOT_STAR] = ACTIONS(5627), - [anon_sym_DASH_GT] = ACTIONS(5627), + [2022] = { + [sym_identifier] = ACTIONS(5629), + [aux_sym_preproc_def_token1] = ACTIONS(5629), + [aux_sym_preproc_if_token1] = ACTIONS(5629), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5629), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5629), + [sym_preproc_directive] = ACTIONS(5629), + [anon_sym_LPAREN2] = ACTIONS(5631), + [anon_sym_TILDE] = ACTIONS(5631), + [anon_sym_STAR] = ACTIONS(5631), + [anon_sym_AMP_AMP] = ACTIONS(5631), + [anon_sym_AMP] = ACTIONS(5629), + [anon_sym_SEMI] = ACTIONS(5631), + [anon_sym___extension__] = ACTIONS(5629), + [anon_sym_typedef] = ACTIONS(5629), + [anon_sym_virtual] = ACTIONS(5629), + [anon_sym_extern] = ACTIONS(5629), + [anon_sym___attribute__] = ACTIONS(5629), + [anon_sym___attribute] = ACTIONS(5629), + [anon_sym_using] = ACTIONS(5629), + [anon_sym_COLON_COLON] = ACTIONS(5631), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5631), + [anon_sym___declspec] = ACTIONS(5629), + [anon_sym___based] = ACTIONS(5629), + [anon_sym_RBRACE] = ACTIONS(5631), + [anon_sym_signed] = ACTIONS(5629), + [anon_sym_unsigned] = ACTIONS(5629), + [anon_sym_long] = ACTIONS(5629), + [anon_sym_short] = ACTIONS(5629), + [anon_sym_LBRACK] = ACTIONS(5629), + [anon_sym_static] = ACTIONS(5629), + [anon_sym_register] = ACTIONS(5629), + [anon_sym_inline] = ACTIONS(5629), + [anon_sym___inline] = ACTIONS(5629), + [anon_sym___inline__] = ACTIONS(5629), + [anon_sym___forceinline] = ACTIONS(5629), + [anon_sym_thread_local] = ACTIONS(5629), + [anon_sym___thread] = ACTIONS(5629), + [anon_sym_const] = ACTIONS(5629), + [anon_sym_constexpr] = ACTIONS(5629), + [anon_sym_volatile] = ACTIONS(5629), + [anon_sym_restrict] = ACTIONS(5629), + [anon_sym___restrict__] = ACTIONS(5629), + [anon_sym__Atomic] = ACTIONS(5629), + [anon_sym__Noreturn] = ACTIONS(5629), + [anon_sym_noreturn] = ACTIONS(5629), + [anon_sym__Nonnull] = ACTIONS(5629), + [anon_sym_mutable] = ACTIONS(5629), + [anon_sym_constinit] = ACTIONS(5629), + [anon_sym_consteval] = ACTIONS(5629), + [anon_sym_alignas] = ACTIONS(5629), + [anon_sym__Alignas] = ACTIONS(5629), + [sym_primitive_type] = ACTIONS(5629), + [anon_sym_enum] = ACTIONS(5629), + [anon_sym_class] = ACTIONS(5629), + [anon_sym_struct] = ACTIONS(5629), + [anon_sym_union] = ACTIONS(5629), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5625), - [anon_sym_decltype] = ACTIONS(5625), - [anon_sym_final] = ACTIONS(5625), - [anon_sym_override] = ACTIONS(5625), + [sym_auto] = ACTIONS(5629), + [anon_sym_decltype] = ACTIONS(5629), + [anon_sym_explicit] = ACTIONS(5629), + [anon_sym_typename] = ACTIONS(5629), + [anon_sym_private] = ACTIONS(5629), + [anon_sym_template] = ACTIONS(5629), + [anon_sym_operator] = ACTIONS(5629), + [anon_sym_friend] = ACTIONS(5629), + [anon_sym_public] = ACTIONS(5629), + [anon_sym_protected] = ACTIONS(5629), + [anon_sym_static_assert] = ACTIONS(5629), }, - [1946] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1669), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5926), - [anon_sym_COMMA] = ACTIONS(5926), - [anon_sym_RPAREN] = ACTIONS(5926), - [anon_sym_LPAREN2] = ACTIONS(5926), - [anon_sym_DASH] = ACTIONS(5928), - [anon_sym_PLUS] = ACTIONS(5928), - [anon_sym_STAR] = ACTIONS(5926), - [anon_sym_SLASH] = ACTIONS(5928), - [anon_sym_PERCENT] = ACTIONS(5926), - [anon_sym_PIPE_PIPE] = ACTIONS(5926), - [anon_sym_AMP_AMP] = ACTIONS(5926), - [anon_sym_PIPE] = ACTIONS(5928), - [anon_sym_CARET] = ACTIONS(5926), - [anon_sym_AMP] = ACTIONS(5928), - [anon_sym_EQ_EQ] = ACTIONS(5926), - [anon_sym_BANG_EQ] = ACTIONS(5926), - [anon_sym_GT] = ACTIONS(5928), - [anon_sym_GT_EQ] = ACTIONS(5926), - [anon_sym_LT_EQ] = ACTIONS(5928), - [anon_sym_LT] = ACTIONS(5928), - [anon_sym_LT_LT] = ACTIONS(5926), - [anon_sym_GT_GT] = ACTIONS(5926), - [anon_sym_SEMI] = ACTIONS(5926), - [anon_sym___extension__] = ACTIONS(5926), - [anon_sym___attribute__] = ACTIONS(5926), - [anon_sym___attribute] = ACTIONS(5928), - [anon_sym_COLON] = ACTIONS(5926), - [anon_sym_LBRACE] = ACTIONS(5926), - [anon_sym_RBRACE] = ACTIONS(5926), - [anon_sym_signed] = ACTIONS(5892), - [anon_sym_unsigned] = ACTIONS(5892), - [anon_sym_long] = ACTIONS(5892), - [anon_sym_short] = ACTIONS(5892), - [anon_sym_LBRACK] = ACTIONS(5926), - [anon_sym_RBRACK] = ACTIONS(5926), - [anon_sym_const] = ACTIONS(5928), - [anon_sym_constexpr] = ACTIONS(5926), - [anon_sym_volatile] = ACTIONS(5926), - [anon_sym_restrict] = ACTIONS(5926), - [anon_sym___restrict__] = ACTIONS(5926), - [anon_sym__Atomic] = ACTIONS(5926), - [anon_sym__Noreturn] = ACTIONS(5926), - [anon_sym_noreturn] = ACTIONS(5926), - [anon_sym__Nonnull] = ACTIONS(5926), - [anon_sym_mutable] = ACTIONS(5926), - [anon_sym_constinit] = ACTIONS(5926), - [anon_sym_consteval] = ACTIONS(5926), - [anon_sym_alignas] = ACTIONS(5926), - [anon_sym__Alignas] = ACTIONS(5926), - [anon_sym_QMARK] = ACTIONS(5926), - [anon_sym_LT_EQ_GT] = ACTIONS(5926), - [anon_sym_or] = ACTIONS(5926), - [anon_sym_and] = ACTIONS(5926), - [anon_sym_bitor] = ACTIONS(5926), - [anon_sym_xor] = ACTIONS(5926), - [anon_sym_bitand] = ACTIONS(5926), - [anon_sym_not_eq] = ACTIONS(5926), - [anon_sym_DASH_DASH] = ACTIONS(5926), - [anon_sym_PLUS_PLUS] = ACTIONS(5926), - [anon_sym_DOT] = ACTIONS(5928), - [anon_sym_DOT_STAR] = ACTIONS(5926), - [anon_sym_DASH_GT] = ACTIONS(5926), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5926), - [anon_sym_decltype] = ACTIONS(5926), - [anon_sym_final] = ACTIONS(5926), - [anon_sym_override] = ACTIONS(5926), - [anon_sym_requires] = ACTIONS(5926), + [2023] = { + [sym_string_literal] = STATE(2049), + [sym_template_argument_list] = STATE(2375), + [sym_raw_string_literal] = STATE(2049), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4166), + [anon_sym_COMMA] = ACTIONS(4166), + [anon_sym_LPAREN2] = ACTIONS(4166), + [anon_sym_DASH] = ACTIONS(4174), + [anon_sym_PLUS] = ACTIONS(4174), + [anon_sym_STAR] = ACTIONS(4174), + [anon_sym_SLASH] = ACTIONS(4174), + [anon_sym_PERCENT] = ACTIONS(4174), + [anon_sym_PIPE_PIPE] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4166), + [anon_sym_PIPE] = ACTIONS(4174), + [anon_sym_CARET] = ACTIONS(4174), + [anon_sym_AMP] = ACTIONS(4174), + [anon_sym_EQ_EQ] = ACTIONS(4166), + [anon_sym_BANG_EQ] = ACTIONS(4166), + [anon_sym_GT] = ACTIONS(4174), + [anon_sym_GT_EQ] = ACTIONS(4166), + [anon_sym_LT_EQ] = ACTIONS(4174), + [anon_sym_LT] = ACTIONS(5381), + [anon_sym_LT_LT] = ACTIONS(4174), + [anon_sym_GT_GT] = ACTIONS(4174), + [anon_sym_SEMI] = ACTIONS(4166), + [anon_sym___attribute__] = ACTIONS(4166), + [anon_sym___attribute] = ACTIONS(4174), + [anon_sym_COLON_COLON] = ACTIONS(4187), + [anon_sym_LBRACE] = ACTIONS(4192), + [anon_sym_LBRACK] = ACTIONS(4166), + [anon_sym_EQ] = ACTIONS(4174), + [anon_sym_QMARK] = ACTIONS(4166), + [anon_sym_STAR_EQ] = ACTIONS(4166), + [anon_sym_SLASH_EQ] = ACTIONS(4166), + [anon_sym_PERCENT_EQ] = ACTIONS(4166), + [anon_sym_PLUS_EQ] = ACTIONS(4166), + [anon_sym_DASH_EQ] = ACTIONS(4166), + [anon_sym_LT_LT_EQ] = ACTIONS(4166), + [anon_sym_GT_GT_EQ] = ACTIONS(4166), + [anon_sym_AMP_EQ] = ACTIONS(4166), + [anon_sym_CARET_EQ] = ACTIONS(4166), + [anon_sym_PIPE_EQ] = ACTIONS(4166), + [anon_sym_and_eq] = ACTIONS(4166), + [anon_sym_or_eq] = ACTIONS(4166), + [anon_sym_xor_eq] = ACTIONS(4166), + [anon_sym_LT_EQ_GT] = ACTIONS(4166), + [anon_sym_or] = ACTIONS(4174), + [anon_sym_and] = ACTIONS(4174), + [anon_sym_bitor] = ACTIONS(4166), + [anon_sym_xor] = ACTIONS(4174), + [anon_sym_bitand] = ACTIONS(4166), + [anon_sym_not_eq] = ACTIONS(4166), + [anon_sym_DASH_DASH] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4174), + [anon_sym_DOT_STAR] = ACTIONS(4166), + [anon_sym_DASH_GT] = ACTIONS(4166), + [anon_sym_L_DQUOTE] = ACTIONS(6027), + [anon_sym_u_DQUOTE] = ACTIONS(6027), + [anon_sym_U_DQUOTE] = ACTIONS(6027), + [anon_sym_u8_DQUOTE] = ACTIONS(6027), + [anon_sym_DQUOTE] = ACTIONS(6027), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(6029), + [anon_sym_LR_DQUOTE] = ACTIONS(6029), + [anon_sym_uR_DQUOTE] = ACTIONS(6029), + [anon_sym_UR_DQUOTE] = ACTIONS(6029), + [anon_sym_u8R_DQUOTE] = ACTIONS(6029), }, - [1947] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1928), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5452), - [anon_sym_COMMA] = ACTIONS(5452), - [anon_sym_RPAREN] = ACTIONS(5452), - [anon_sym_LPAREN2] = ACTIONS(5452), - [anon_sym_DASH] = ACTIONS(5450), - [anon_sym_PLUS] = ACTIONS(5450), - [anon_sym_STAR] = ACTIONS(5452), - [anon_sym_SLASH] = ACTIONS(5450), - [anon_sym_PERCENT] = ACTIONS(5452), - [anon_sym_PIPE_PIPE] = ACTIONS(5452), - [anon_sym_AMP_AMP] = ACTIONS(5452), - [anon_sym_PIPE] = ACTIONS(5450), - [anon_sym_CARET] = ACTIONS(5452), - [anon_sym_AMP] = ACTIONS(5450), - [anon_sym_EQ_EQ] = ACTIONS(5452), - [anon_sym_BANG_EQ] = ACTIONS(5452), - [anon_sym_GT] = ACTIONS(5450), - [anon_sym_GT_EQ] = ACTIONS(5452), - [anon_sym_LT_EQ] = ACTIONS(5450), - [anon_sym_LT] = ACTIONS(5450), - [anon_sym_LT_LT] = ACTIONS(5452), - [anon_sym_GT_GT] = ACTIONS(5452), - [anon_sym_SEMI] = ACTIONS(5452), - [anon_sym___extension__] = ACTIONS(5452), - [anon_sym___attribute__] = ACTIONS(5452), - [anon_sym___attribute] = ACTIONS(5450), - [anon_sym_COLON] = ACTIONS(5452), - [anon_sym_LBRACE] = ACTIONS(5452), - [anon_sym_RBRACE] = ACTIONS(5452), - [anon_sym_signed] = ACTIONS(5886), - [anon_sym_unsigned] = ACTIONS(5886), - [anon_sym_long] = ACTIONS(5886), - [anon_sym_short] = ACTIONS(5886), - [anon_sym_LBRACK] = ACTIONS(5452), - [anon_sym_RBRACK] = ACTIONS(5452), - [anon_sym_const] = ACTIONS(5450), - [anon_sym_constexpr] = ACTIONS(5452), - [anon_sym_volatile] = ACTIONS(5452), - [anon_sym_restrict] = ACTIONS(5452), - [anon_sym___restrict__] = ACTIONS(5452), - [anon_sym__Atomic] = ACTIONS(5452), - [anon_sym__Noreturn] = ACTIONS(5452), - [anon_sym_noreturn] = ACTIONS(5452), - [anon_sym__Nonnull] = ACTIONS(5452), - [anon_sym_mutable] = ACTIONS(5452), - [anon_sym_constinit] = ACTIONS(5452), - [anon_sym_consteval] = ACTIONS(5452), - [anon_sym_alignas] = ACTIONS(5452), - [anon_sym__Alignas] = ACTIONS(5452), - [anon_sym_QMARK] = ACTIONS(5452), - [anon_sym_LT_EQ_GT] = ACTIONS(5452), - [anon_sym_or] = ACTIONS(5452), - [anon_sym_and] = ACTIONS(5452), - [anon_sym_bitor] = ACTIONS(5452), - [anon_sym_xor] = ACTIONS(5452), - [anon_sym_bitand] = ACTIONS(5452), - [anon_sym_not_eq] = ACTIONS(5452), - [anon_sym_DASH_DASH] = ACTIONS(5452), - [anon_sym_PLUS_PLUS] = ACTIONS(5452), - [anon_sym_DOT] = ACTIONS(5450), - [anon_sym_DOT_STAR] = ACTIONS(5452), - [anon_sym_DASH_GT] = ACTIONS(5452), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5452), - [anon_sym_decltype] = ACTIONS(5452), - [anon_sym_final] = ACTIONS(5452), - [anon_sym_override] = ACTIONS(5452), - [anon_sym_requires] = ACTIONS(5452), + [2024] = { + [sym_identifier] = ACTIONS(2875), + [aux_sym_preproc_def_token1] = ACTIONS(2875), + [aux_sym_preproc_if_token1] = ACTIONS(2875), + [aux_sym_preproc_if_token2] = ACTIONS(2875), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2875), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2875), + [sym_preproc_directive] = ACTIONS(2875), + [anon_sym_LPAREN2] = ACTIONS(2877), + [anon_sym_TILDE] = ACTIONS(2877), + [anon_sym_STAR] = ACTIONS(2877), + [anon_sym_AMP_AMP] = ACTIONS(2877), + [anon_sym_AMP] = ACTIONS(2875), + [anon_sym_SEMI] = ACTIONS(2877), + [anon_sym___extension__] = ACTIONS(2875), + [anon_sym_typedef] = ACTIONS(2875), + [anon_sym_virtual] = ACTIONS(2875), + [anon_sym_extern] = ACTIONS(2875), + [anon_sym___attribute__] = ACTIONS(2875), + [anon_sym___attribute] = ACTIONS(2875), + [anon_sym_using] = ACTIONS(2875), + [anon_sym_COLON_COLON] = ACTIONS(2877), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2877), + [anon_sym___declspec] = ACTIONS(2875), + [anon_sym___based] = ACTIONS(2875), + [anon_sym_signed] = ACTIONS(2875), + [anon_sym_unsigned] = ACTIONS(2875), + [anon_sym_long] = ACTIONS(2875), + [anon_sym_short] = ACTIONS(2875), + [anon_sym_LBRACK] = ACTIONS(2875), + [anon_sym_static] = ACTIONS(2875), + [anon_sym_register] = ACTIONS(2875), + [anon_sym_inline] = ACTIONS(2875), + [anon_sym___inline] = ACTIONS(2875), + [anon_sym___inline__] = ACTIONS(2875), + [anon_sym___forceinline] = ACTIONS(2875), + [anon_sym_thread_local] = ACTIONS(2875), + [anon_sym___thread] = ACTIONS(2875), + [anon_sym_const] = ACTIONS(2875), + [anon_sym_constexpr] = ACTIONS(2875), + [anon_sym_volatile] = ACTIONS(2875), + [anon_sym_restrict] = ACTIONS(2875), + [anon_sym___restrict__] = ACTIONS(2875), + [anon_sym__Atomic] = ACTIONS(2875), + [anon_sym__Noreturn] = ACTIONS(2875), + [anon_sym_noreturn] = ACTIONS(2875), + [anon_sym__Nonnull] = ACTIONS(2875), + [anon_sym_mutable] = ACTIONS(2875), + [anon_sym_constinit] = ACTIONS(2875), + [anon_sym_consteval] = ACTIONS(2875), + [anon_sym_alignas] = ACTIONS(2875), + [anon_sym__Alignas] = ACTIONS(2875), + [sym_primitive_type] = ACTIONS(2875), + [anon_sym_enum] = ACTIONS(2875), + [anon_sym_class] = ACTIONS(2875), + [anon_sym_struct] = ACTIONS(2875), + [anon_sym_union] = ACTIONS(2875), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2875), + [anon_sym_decltype] = ACTIONS(2875), + [anon_sym_explicit] = ACTIONS(2875), + [anon_sym_typename] = ACTIONS(2875), + [anon_sym_private] = ACTIONS(2875), + [anon_sym_template] = ACTIONS(2875), + [anon_sym_operator] = ACTIONS(2875), + [anon_sym_friend] = ACTIONS(2875), + [anon_sym_public] = ACTIONS(2875), + [anon_sym_protected] = ACTIONS(2875), + [anon_sym_static_assert] = ACTIONS(2875), }, - [1948] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1930), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5930), - [anon_sym_COMMA] = ACTIONS(5930), - [anon_sym_RPAREN] = ACTIONS(5930), - [anon_sym_LPAREN2] = ACTIONS(5930), - [anon_sym_DASH] = ACTIONS(5932), - [anon_sym_PLUS] = ACTIONS(5932), - [anon_sym_STAR] = ACTIONS(5930), - [anon_sym_SLASH] = ACTIONS(5932), - [anon_sym_PERCENT] = ACTIONS(5930), - [anon_sym_PIPE_PIPE] = ACTIONS(5930), - [anon_sym_AMP_AMP] = ACTIONS(5930), - [anon_sym_PIPE] = ACTIONS(5932), - [anon_sym_CARET] = ACTIONS(5930), - [anon_sym_AMP] = ACTIONS(5932), - [anon_sym_EQ_EQ] = ACTIONS(5930), - [anon_sym_BANG_EQ] = ACTIONS(5930), - [anon_sym_GT] = ACTIONS(5932), - [anon_sym_GT_EQ] = ACTIONS(5930), - [anon_sym_LT_EQ] = ACTIONS(5932), - [anon_sym_LT] = ACTIONS(5932), - [anon_sym_LT_LT] = ACTIONS(5930), - [anon_sym_GT_GT] = ACTIONS(5930), - [anon_sym_SEMI] = ACTIONS(5930), - [anon_sym___extension__] = ACTIONS(5930), - [anon_sym___attribute__] = ACTIONS(5930), - [anon_sym___attribute] = ACTIONS(5932), - [anon_sym_COLON] = ACTIONS(5930), - [anon_sym_LBRACE] = ACTIONS(5930), - [anon_sym_RBRACE] = ACTIONS(5930), - [anon_sym_signed] = ACTIONS(5934), - [anon_sym_unsigned] = ACTIONS(5934), - [anon_sym_long] = ACTIONS(5934), - [anon_sym_short] = ACTIONS(5934), - [anon_sym_LBRACK] = ACTIONS(5930), - [anon_sym_RBRACK] = ACTIONS(5930), - [anon_sym_const] = ACTIONS(5932), - [anon_sym_constexpr] = ACTIONS(5930), - [anon_sym_volatile] = ACTIONS(5930), - [anon_sym_restrict] = ACTIONS(5930), - [anon_sym___restrict__] = ACTIONS(5930), - [anon_sym__Atomic] = ACTIONS(5930), - [anon_sym__Noreturn] = ACTIONS(5930), - [anon_sym_noreturn] = ACTIONS(5930), - [anon_sym__Nonnull] = ACTIONS(5930), - [anon_sym_mutable] = ACTIONS(5930), - [anon_sym_constinit] = ACTIONS(5930), - [anon_sym_consteval] = ACTIONS(5930), - [anon_sym_alignas] = ACTIONS(5930), - [anon_sym__Alignas] = ACTIONS(5930), - [anon_sym_QMARK] = ACTIONS(5930), - [anon_sym_LT_EQ_GT] = ACTIONS(5930), - [anon_sym_or] = ACTIONS(5930), - [anon_sym_and] = ACTIONS(5930), - [anon_sym_bitor] = ACTIONS(5930), - [anon_sym_xor] = ACTIONS(5930), - [anon_sym_bitand] = ACTIONS(5930), - [anon_sym_not_eq] = ACTIONS(5930), - [anon_sym_DASH_DASH] = ACTIONS(5930), - [anon_sym_PLUS_PLUS] = ACTIONS(5930), - [anon_sym_DOT] = ACTIONS(5932), - [anon_sym_DOT_STAR] = ACTIONS(5930), - [anon_sym_DASH_GT] = ACTIONS(5930), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5930), - [anon_sym_decltype] = ACTIONS(5930), - [anon_sym_final] = ACTIONS(5930), - [anon_sym_override] = ACTIONS(5930), - [anon_sym_requires] = ACTIONS(5930), + [2025] = { + [sym_identifier] = ACTIONS(2731), + [aux_sym_preproc_def_token1] = ACTIONS(2731), + [aux_sym_preproc_if_token1] = ACTIONS(2731), + [aux_sym_preproc_if_token2] = ACTIONS(2731), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2731), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2731), + [sym_preproc_directive] = ACTIONS(2731), + [anon_sym_LPAREN2] = ACTIONS(2733), + [anon_sym_TILDE] = ACTIONS(2733), + [anon_sym_STAR] = ACTIONS(2733), + [anon_sym_AMP_AMP] = ACTIONS(2733), + [anon_sym_AMP] = ACTIONS(2731), + [anon_sym_SEMI] = ACTIONS(2733), + [anon_sym___extension__] = ACTIONS(2731), + [anon_sym_typedef] = ACTIONS(2731), + [anon_sym_virtual] = ACTIONS(2731), + [anon_sym_extern] = ACTIONS(2731), + [anon_sym___attribute__] = ACTIONS(2731), + [anon_sym___attribute] = ACTIONS(2731), + [anon_sym_using] = ACTIONS(2731), + [anon_sym_COLON_COLON] = ACTIONS(2733), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2733), + [anon_sym___declspec] = ACTIONS(2731), + [anon_sym___based] = ACTIONS(2731), + [anon_sym_signed] = ACTIONS(2731), + [anon_sym_unsigned] = ACTIONS(2731), + [anon_sym_long] = ACTIONS(2731), + [anon_sym_short] = ACTIONS(2731), + [anon_sym_LBRACK] = ACTIONS(2731), + [anon_sym_static] = ACTIONS(2731), + [anon_sym_register] = ACTIONS(2731), + [anon_sym_inline] = ACTIONS(2731), + [anon_sym___inline] = ACTIONS(2731), + [anon_sym___inline__] = ACTIONS(2731), + [anon_sym___forceinline] = ACTIONS(2731), + [anon_sym_thread_local] = ACTIONS(2731), + [anon_sym___thread] = ACTIONS(2731), + [anon_sym_const] = ACTIONS(2731), + [anon_sym_constexpr] = ACTIONS(2731), + [anon_sym_volatile] = ACTIONS(2731), + [anon_sym_restrict] = ACTIONS(2731), + [anon_sym___restrict__] = ACTIONS(2731), + [anon_sym__Atomic] = ACTIONS(2731), + [anon_sym__Noreturn] = ACTIONS(2731), + [anon_sym_noreturn] = ACTIONS(2731), + [anon_sym__Nonnull] = ACTIONS(2731), + [anon_sym_mutable] = ACTIONS(2731), + [anon_sym_constinit] = ACTIONS(2731), + [anon_sym_consteval] = ACTIONS(2731), + [anon_sym_alignas] = ACTIONS(2731), + [anon_sym__Alignas] = ACTIONS(2731), + [sym_primitive_type] = ACTIONS(2731), + [anon_sym_enum] = ACTIONS(2731), + [anon_sym_class] = ACTIONS(2731), + [anon_sym_struct] = ACTIONS(2731), + [anon_sym_union] = ACTIONS(2731), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2731), + [anon_sym_decltype] = ACTIONS(2731), + [anon_sym_explicit] = ACTIONS(2731), + [anon_sym_typename] = ACTIONS(2731), + [anon_sym_private] = ACTIONS(2731), + [anon_sym_template] = ACTIONS(2731), + [anon_sym_operator] = ACTIONS(2731), + [anon_sym_friend] = ACTIONS(2731), + [anon_sym_public] = ACTIONS(2731), + [anon_sym_protected] = ACTIONS(2731), + [anon_sym_static_assert] = ACTIONS(2731), }, - [1949] = { - [sym_identifier] = ACTIONS(1936), - [aux_sym_preproc_def_token1] = ACTIONS(1936), - [aux_sym_preproc_if_token1] = ACTIONS(1936), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1936), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1936), - [sym_preproc_directive] = ACTIONS(1936), - [anon_sym_LPAREN2] = ACTIONS(1934), - [anon_sym_TILDE] = ACTIONS(1934), - [anon_sym_STAR] = ACTIONS(1934), - [anon_sym_AMP_AMP] = ACTIONS(1934), - [anon_sym_AMP] = ACTIONS(1936), - [anon_sym_SEMI] = ACTIONS(1934), - [anon_sym___extension__] = ACTIONS(1936), - [anon_sym_typedef] = ACTIONS(1936), - [anon_sym_virtual] = ACTIONS(1936), - [anon_sym_extern] = ACTIONS(1936), - [anon_sym___attribute__] = ACTIONS(1936), - [anon_sym___attribute] = ACTIONS(1936), - [anon_sym_using] = ACTIONS(1936), - [anon_sym_COLON_COLON] = ACTIONS(1934), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1934), - [anon_sym___declspec] = ACTIONS(1936), - [anon_sym___based] = ACTIONS(1936), - [anon_sym_RBRACE] = ACTIONS(1934), - [anon_sym_signed] = ACTIONS(1936), - [anon_sym_unsigned] = ACTIONS(1936), - [anon_sym_long] = ACTIONS(1936), - [anon_sym_short] = ACTIONS(1936), - [anon_sym_LBRACK] = ACTIONS(1936), - [anon_sym_static] = ACTIONS(1936), - [anon_sym_register] = ACTIONS(1936), - [anon_sym_inline] = ACTIONS(1936), - [anon_sym___inline] = ACTIONS(1936), - [anon_sym___inline__] = ACTIONS(1936), - [anon_sym___forceinline] = ACTIONS(1936), - [anon_sym_thread_local] = ACTIONS(1936), - [anon_sym___thread] = ACTIONS(1936), - [anon_sym_const] = ACTIONS(1936), - [anon_sym_constexpr] = ACTIONS(1936), - [anon_sym_volatile] = ACTIONS(1936), - [anon_sym_restrict] = ACTIONS(1936), - [anon_sym___restrict__] = ACTIONS(1936), - [anon_sym__Atomic] = ACTIONS(1936), - [anon_sym__Noreturn] = ACTIONS(1936), - [anon_sym_noreturn] = ACTIONS(1936), - [anon_sym__Nonnull] = ACTIONS(1936), - [anon_sym_mutable] = ACTIONS(1936), - [anon_sym_constinit] = ACTIONS(1936), - [anon_sym_consteval] = ACTIONS(1936), - [anon_sym_alignas] = ACTIONS(1936), - [anon_sym__Alignas] = ACTIONS(1936), - [sym_primitive_type] = ACTIONS(1936), - [anon_sym_enum] = ACTIONS(1936), - [anon_sym_class] = ACTIONS(1936), - [anon_sym_struct] = ACTIONS(1936), - [anon_sym_union] = ACTIONS(1936), + [2026] = { + [sym_identifier] = ACTIONS(2731), + [aux_sym_preproc_def_token1] = ACTIONS(2731), + [aux_sym_preproc_if_token1] = ACTIONS(2731), + [aux_sym_preproc_if_token2] = ACTIONS(2731), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2731), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2731), + [sym_preproc_directive] = ACTIONS(2731), + [anon_sym_LPAREN2] = ACTIONS(2733), + [anon_sym_TILDE] = ACTIONS(2733), + [anon_sym_STAR] = ACTIONS(2733), + [anon_sym_AMP_AMP] = ACTIONS(2733), + [anon_sym_AMP] = ACTIONS(2731), + [anon_sym_SEMI] = ACTIONS(2733), + [anon_sym___extension__] = ACTIONS(2731), + [anon_sym_typedef] = ACTIONS(2731), + [anon_sym_virtual] = ACTIONS(2731), + [anon_sym_extern] = ACTIONS(2731), + [anon_sym___attribute__] = ACTIONS(2731), + [anon_sym___attribute] = ACTIONS(2731), + [anon_sym_using] = ACTIONS(2731), + [anon_sym_COLON_COLON] = ACTIONS(2733), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2733), + [anon_sym___declspec] = ACTIONS(2731), + [anon_sym___based] = ACTIONS(2731), + [anon_sym_signed] = ACTIONS(2731), + [anon_sym_unsigned] = ACTIONS(2731), + [anon_sym_long] = ACTIONS(2731), + [anon_sym_short] = ACTIONS(2731), + [anon_sym_LBRACK] = ACTIONS(2731), + [anon_sym_static] = ACTIONS(2731), + [anon_sym_register] = ACTIONS(2731), + [anon_sym_inline] = ACTIONS(2731), + [anon_sym___inline] = ACTIONS(2731), + [anon_sym___inline__] = ACTIONS(2731), + [anon_sym___forceinline] = ACTIONS(2731), + [anon_sym_thread_local] = ACTIONS(2731), + [anon_sym___thread] = ACTIONS(2731), + [anon_sym_const] = ACTIONS(2731), + [anon_sym_constexpr] = ACTIONS(2731), + [anon_sym_volatile] = ACTIONS(2731), + [anon_sym_restrict] = ACTIONS(2731), + [anon_sym___restrict__] = ACTIONS(2731), + [anon_sym__Atomic] = ACTIONS(2731), + [anon_sym__Noreturn] = ACTIONS(2731), + [anon_sym_noreturn] = ACTIONS(2731), + [anon_sym__Nonnull] = ACTIONS(2731), + [anon_sym_mutable] = ACTIONS(2731), + [anon_sym_constinit] = ACTIONS(2731), + [anon_sym_consteval] = ACTIONS(2731), + [anon_sym_alignas] = ACTIONS(2731), + [anon_sym__Alignas] = ACTIONS(2731), + [sym_primitive_type] = ACTIONS(2731), + [anon_sym_enum] = ACTIONS(2731), + [anon_sym_class] = ACTIONS(2731), + [anon_sym_struct] = ACTIONS(2731), + [anon_sym_union] = ACTIONS(2731), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1936), - [anon_sym_decltype] = ACTIONS(1936), - [anon_sym_explicit] = ACTIONS(1936), - [anon_sym_typename] = ACTIONS(1936), - [anon_sym_private] = ACTIONS(1936), - [anon_sym_template] = ACTIONS(1936), - [anon_sym_operator] = ACTIONS(1936), - [anon_sym_friend] = ACTIONS(1936), - [anon_sym_public] = ACTIONS(1936), - [anon_sym_protected] = ACTIONS(1936), - [anon_sym_static_assert] = ACTIONS(1936), - [anon_sym_catch] = ACTIONS(1936), - }, - [1950] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1951), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5936), - [anon_sym_COMMA] = ACTIONS(5936), - [anon_sym_RPAREN] = ACTIONS(5936), - [anon_sym_LPAREN2] = ACTIONS(5936), - [anon_sym_DASH] = ACTIONS(5938), - [anon_sym_PLUS] = ACTIONS(5938), - [anon_sym_STAR] = ACTIONS(5936), - [anon_sym_SLASH] = ACTIONS(5938), - [anon_sym_PERCENT] = ACTIONS(5936), - [anon_sym_PIPE_PIPE] = ACTIONS(5936), - [anon_sym_AMP_AMP] = ACTIONS(5936), - [anon_sym_PIPE] = ACTIONS(5938), - [anon_sym_CARET] = ACTIONS(5936), - [anon_sym_AMP] = ACTIONS(5938), - [anon_sym_EQ_EQ] = ACTIONS(5936), - [anon_sym_BANG_EQ] = ACTIONS(5936), - [anon_sym_GT] = ACTIONS(5938), - [anon_sym_GT_EQ] = ACTIONS(5936), - [anon_sym_LT_EQ] = ACTIONS(5938), - [anon_sym_LT] = ACTIONS(5938), - [anon_sym_LT_LT] = ACTIONS(5936), - [anon_sym_GT_GT] = ACTIONS(5936), - [anon_sym_SEMI] = ACTIONS(5936), - [anon_sym___extension__] = ACTIONS(5936), - [anon_sym___attribute__] = ACTIONS(5936), - [anon_sym___attribute] = ACTIONS(5938), - [anon_sym_COLON] = ACTIONS(5936), - [anon_sym_LBRACE] = ACTIONS(5936), - [anon_sym_RBRACE] = ACTIONS(5936), - [anon_sym_signed] = ACTIONS(5940), - [anon_sym_unsigned] = ACTIONS(5940), - [anon_sym_long] = ACTIONS(5940), - [anon_sym_short] = ACTIONS(5940), - [anon_sym_LBRACK] = ACTIONS(5936), - [anon_sym_RBRACK] = ACTIONS(5936), - [anon_sym_const] = ACTIONS(5938), - [anon_sym_constexpr] = ACTIONS(5936), - [anon_sym_volatile] = ACTIONS(5936), - [anon_sym_restrict] = ACTIONS(5936), - [anon_sym___restrict__] = ACTIONS(5936), - [anon_sym__Atomic] = ACTIONS(5936), - [anon_sym__Noreturn] = ACTIONS(5936), - [anon_sym_noreturn] = ACTIONS(5936), - [anon_sym__Nonnull] = ACTIONS(5936), - [anon_sym_mutable] = ACTIONS(5936), - [anon_sym_constinit] = ACTIONS(5936), - [anon_sym_consteval] = ACTIONS(5936), - [anon_sym_alignas] = ACTIONS(5936), - [anon_sym__Alignas] = ACTIONS(5936), - [anon_sym_QMARK] = ACTIONS(5936), - [anon_sym_LT_EQ_GT] = ACTIONS(5936), - [anon_sym_or] = ACTIONS(5936), - [anon_sym_and] = ACTIONS(5936), - [anon_sym_bitor] = ACTIONS(5936), - [anon_sym_xor] = ACTIONS(5936), - [anon_sym_bitand] = ACTIONS(5936), - [anon_sym_not_eq] = ACTIONS(5936), - [anon_sym_DASH_DASH] = ACTIONS(5936), - [anon_sym_PLUS_PLUS] = ACTIONS(5936), - [anon_sym_DOT] = ACTIONS(5938), - [anon_sym_DOT_STAR] = ACTIONS(5936), - [anon_sym_DASH_GT] = ACTIONS(5936), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5936), - [anon_sym_decltype] = ACTIONS(5936), - [anon_sym_final] = ACTIONS(5936), - [anon_sym_override] = ACTIONS(5936), - [anon_sym_requires] = ACTIONS(5936), - }, - [1951] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1669), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5942), - [anon_sym_COMMA] = ACTIONS(5942), - [anon_sym_RPAREN] = ACTIONS(5942), - [anon_sym_LPAREN2] = ACTIONS(5942), - [anon_sym_DASH] = ACTIONS(5944), - [anon_sym_PLUS] = ACTIONS(5944), - [anon_sym_STAR] = ACTIONS(5942), - [anon_sym_SLASH] = ACTIONS(5944), - [anon_sym_PERCENT] = ACTIONS(5942), - [anon_sym_PIPE_PIPE] = ACTIONS(5942), - [anon_sym_AMP_AMP] = ACTIONS(5942), - [anon_sym_PIPE] = ACTIONS(5944), - [anon_sym_CARET] = ACTIONS(5942), - [anon_sym_AMP] = ACTIONS(5944), - [anon_sym_EQ_EQ] = ACTIONS(5942), - [anon_sym_BANG_EQ] = ACTIONS(5942), - [anon_sym_GT] = ACTIONS(5944), - [anon_sym_GT_EQ] = ACTIONS(5942), - [anon_sym_LT_EQ] = ACTIONS(5944), - [anon_sym_LT] = ACTIONS(5944), - [anon_sym_LT_LT] = ACTIONS(5942), - [anon_sym_GT_GT] = ACTIONS(5942), - [anon_sym_SEMI] = ACTIONS(5942), - [anon_sym___extension__] = ACTIONS(5942), - [anon_sym___attribute__] = ACTIONS(5942), - [anon_sym___attribute] = ACTIONS(5944), - [anon_sym_COLON] = ACTIONS(5942), - [anon_sym_LBRACE] = ACTIONS(5942), - [anon_sym_RBRACE] = ACTIONS(5942), - [anon_sym_signed] = ACTIONS(5892), - [anon_sym_unsigned] = ACTIONS(5892), - [anon_sym_long] = ACTIONS(5892), - [anon_sym_short] = ACTIONS(5892), - [anon_sym_LBRACK] = ACTIONS(5942), - [anon_sym_RBRACK] = ACTIONS(5942), - [anon_sym_const] = ACTIONS(5944), - [anon_sym_constexpr] = ACTIONS(5942), - [anon_sym_volatile] = ACTIONS(5942), - [anon_sym_restrict] = ACTIONS(5942), - [anon_sym___restrict__] = ACTIONS(5942), - [anon_sym__Atomic] = ACTIONS(5942), - [anon_sym__Noreturn] = ACTIONS(5942), - [anon_sym_noreturn] = ACTIONS(5942), - [anon_sym__Nonnull] = ACTIONS(5942), - [anon_sym_mutable] = ACTIONS(5942), - [anon_sym_constinit] = ACTIONS(5942), - [anon_sym_consteval] = ACTIONS(5942), - [anon_sym_alignas] = ACTIONS(5942), - [anon_sym__Alignas] = ACTIONS(5942), - [anon_sym_QMARK] = ACTIONS(5942), - [anon_sym_LT_EQ_GT] = ACTIONS(5942), - [anon_sym_or] = ACTIONS(5942), - [anon_sym_and] = ACTIONS(5942), - [anon_sym_bitor] = ACTIONS(5942), - [anon_sym_xor] = ACTIONS(5942), - [anon_sym_bitand] = ACTIONS(5942), - [anon_sym_not_eq] = ACTIONS(5942), - [anon_sym_DASH_DASH] = ACTIONS(5942), - [anon_sym_PLUS_PLUS] = ACTIONS(5942), - [anon_sym_DOT] = ACTIONS(5944), - [anon_sym_DOT_STAR] = ACTIONS(5942), - [anon_sym_DASH_GT] = ACTIONS(5942), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5942), - [anon_sym_decltype] = ACTIONS(5942), - [anon_sym_final] = ACTIONS(5942), - [anon_sym_override] = ACTIONS(5942), - [anon_sym_requires] = ACTIONS(5942), + [sym_auto] = ACTIONS(2731), + [anon_sym_decltype] = ACTIONS(2731), + [anon_sym_explicit] = ACTIONS(2731), + [anon_sym_typename] = ACTIONS(2731), + [anon_sym_private] = ACTIONS(2731), + [anon_sym_template] = ACTIONS(2731), + [anon_sym_operator] = ACTIONS(2731), + [anon_sym_friend] = ACTIONS(2731), + [anon_sym_public] = ACTIONS(2731), + [anon_sym_protected] = ACTIONS(2731), + [anon_sym_static_assert] = ACTIONS(2731), }, - [1952] = { - [sym_identifier] = ACTIONS(2791), - [aux_sym_preproc_def_token1] = ACTIONS(2791), - [aux_sym_preproc_if_token1] = ACTIONS(2791), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2791), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2791), - [sym_preproc_directive] = ACTIONS(2791), - [anon_sym_LPAREN2] = ACTIONS(2793), - [anon_sym_TILDE] = ACTIONS(2793), - [anon_sym_STAR] = ACTIONS(2793), - [anon_sym_AMP_AMP] = ACTIONS(2793), - [anon_sym_AMP] = ACTIONS(2791), - [anon_sym_SEMI] = ACTIONS(2793), - [anon_sym___extension__] = ACTIONS(2791), - [anon_sym_typedef] = ACTIONS(2791), - [anon_sym_virtual] = ACTIONS(2791), - [anon_sym_extern] = ACTIONS(2791), - [anon_sym___attribute__] = ACTIONS(2791), - [anon_sym___attribute] = ACTIONS(2791), - [anon_sym_using] = ACTIONS(2791), - [anon_sym_COLON_COLON] = ACTIONS(2793), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2793), - [anon_sym___declspec] = ACTIONS(2791), - [anon_sym___based] = ACTIONS(2791), - [anon_sym_RBRACE] = ACTIONS(2793), - [anon_sym_signed] = ACTIONS(2791), - [anon_sym_unsigned] = ACTIONS(2791), - [anon_sym_long] = ACTIONS(2791), - [anon_sym_short] = ACTIONS(2791), - [anon_sym_LBRACK] = ACTIONS(2791), - [anon_sym_static] = ACTIONS(2791), - [anon_sym_register] = ACTIONS(2791), - [anon_sym_inline] = ACTIONS(2791), - [anon_sym___inline] = ACTIONS(2791), - [anon_sym___inline__] = ACTIONS(2791), - [anon_sym___forceinline] = ACTIONS(2791), - [anon_sym_thread_local] = ACTIONS(2791), - [anon_sym___thread] = ACTIONS(2791), - [anon_sym_const] = ACTIONS(2791), - [anon_sym_constexpr] = ACTIONS(2791), - [anon_sym_volatile] = ACTIONS(2791), - [anon_sym_restrict] = ACTIONS(2791), - [anon_sym___restrict__] = ACTIONS(2791), - [anon_sym__Atomic] = ACTIONS(2791), - [anon_sym__Noreturn] = ACTIONS(2791), - [anon_sym_noreturn] = ACTIONS(2791), - [anon_sym__Nonnull] = ACTIONS(2791), - [anon_sym_mutable] = ACTIONS(2791), - [anon_sym_constinit] = ACTIONS(2791), - [anon_sym_consteval] = ACTIONS(2791), - [anon_sym_alignas] = ACTIONS(2791), - [anon_sym__Alignas] = ACTIONS(2791), - [sym_primitive_type] = ACTIONS(2791), - [anon_sym_enum] = ACTIONS(2791), - [anon_sym_class] = ACTIONS(2791), - [anon_sym_struct] = ACTIONS(2791), - [anon_sym_union] = ACTIONS(2791), + [2027] = { + [sym_identifier] = ACTIONS(2743), + [aux_sym_preproc_def_token1] = ACTIONS(2743), + [aux_sym_preproc_if_token1] = ACTIONS(2743), + [aux_sym_preproc_if_token2] = ACTIONS(2743), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2743), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2743), + [sym_preproc_directive] = ACTIONS(2743), + [anon_sym_LPAREN2] = ACTIONS(2745), + [anon_sym_TILDE] = ACTIONS(2745), + [anon_sym_STAR] = ACTIONS(2745), + [anon_sym_AMP_AMP] = ACTIONS(2745), + [anon_sym_AMP] = ACTIONS(2743), + [anon_sym_SEMI] = ACTIONS(2745), + [anon_sym___extension__] = ACTIONS(2743), + [anon_sym_typedef] = ACTIONS(2743), + [anon_sym_virtual] = ACTIONS(2743), + [anon_sym_extern] = ACTIONS(2743), + [anon_sym___attribute__] = ACTIONS(2743), + [anon_sym___attribute] = ACTIONS(2743), + [anon_sym_using] = ACTIONS(2743), + [anon_sym_COLON_COLON] = ACTIONS(2745), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2745), + [anon_sym___declspec] = ACTIONS(2743), + [anon_sym___based] = ACTIONS(2743), + [anon_sym_signed] = ACTIONS(2743), + [anon_sym_unsigned] = ACTIONS(2743), + [anon_sym_long] = ACTIONS(2743), + [anon_sym_short] = ACTIONS(2743), + [anon_sym_LBRACK] = ACTIONS(2743), + [anon_sym_static] = ACTIONS(2743), + [anon_sym_register] = ACTIONS(2743), + [anon_sym_inline] = ACTIONS(2743), + [anon_sym___inline] = ACTIONS(2743), + [anon_sym___inline__] = ACTIONS(2743), + [anon_sym___forceinline] = ACTIONS(2743), + [anon_sym_thread_local] = ACTIONS(2743), + [anon_sym___thread] = ACTIONS(2743), + [anon_sym_const] = ACTIONS(2743), + [anon_sym_constexpr] = ACTIONS(2743), + [anon_sym_volatile] = ACTIONS(2743), + [anon_sym_restrict] = ACTIONS(2743), + [anon_sym___restrict__] = ACTIONS(2743), + [anon_sym__Atomic] = ACTIONS(2743), + [anon_sym__Noreturn] = ACTIONS(2743), + [anon_sym_noreturn] = ACTIONS(2743), + [anon_sym__Nonnull] = ACTIONS(2743), + [anon_sym_mutable] = ACTIONS(2743), + [anon_sym_constinit] = ACTIONS(2743), + [anon_sym_consteval] = ACTIONS(2743), + [anon_sym_alignas] = ACTIONS(2743), + [anon_sym__Alignas] = ACTIONS(2743), + [sym_primitive_type] = ACTIONS(2743), + [anon_sym_enum] = ACTIONS(2743), + [anon_sym_class] = ACTIONS(2743), + [anon_sym_struct] = ACTIONS(2743), + [anon_sym_union] = ACTIONS(2743), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2791), - [anon_sym_decltype] = ACTIONS(2791), - [anon_sym_explicit] = ACTIONS(2791), - [anon_sym_typename] = ACTIONS(2791), - [anon_sym_private] = ACTIONS(2791), - [anon_sym_template] = ACTIONS(2791), - [anon_sym_operator] = ACTIONS(2791), - [anon_sym_friend] = ACTIONS(2791), - [anon_sym_public] = ACTIONS(2791), - [anon_sym_protected] = ACTIONS(2791), - [anon_sym_static_assert] = ACTIONS(2791), + [sym_auto] = ACTIONS(2743), + [anon_sym_decltype] = ACTIONS(2743), + [anon_sym_explicit] = ACTIONS(2743), + [anon_sym_typename] = ACTIONS(2743), + [anon_sym_private] = ACTIONS(2743), + [anon_sym_template] = ACTIONS(2743), + [anon_sym_operator] = ACTIONS(2743), + [anon_sym_friend] = ACTIONS(2743), + [anon_sym_public] = ACTIONS(2743), + [anon_sym_protected] = ACTIONS(2743), + [anon_sym_static_assert] = ACTIONS(2743), }, - [1953] = { - [sym_identifier] = ACTIONS(2703), - [aux_sym_preproc_def_token1] = ACTIONS(2703), - [aux_sym_preproc_if_token1] = ACTIONS(2703), - [aux_sym_preproc_if_token2] = ACTIONS(2703), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2703), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2703), - [sym_preproc_directive] = ACTIONS(2703), - [anon_sym_LPAREN2] = ACTIONS(2705), - [anon_sym_TILDE] = ACTIONS(2705), - [anon_sym_STAR] = ACTIONS(2705), - [anon_sym_AMP_AMP] = ACTIONS(2705), - [anon_sym_AMP] = ACTIONS(2703), - [anon_sym_SEMI] = ACTIONS(2705), - [anon_sym___extension__] = ACTIONS(2703), - [anon_sym_typedef] = ACTIONS(2703), - [anon_sym_virtual] = ACTIONS(2703), - [anon_sym_extern] = ACTIONS(2703), - [anon_sym___attribute__] = ACTIONS(2703), - [anon_sym___attribute] = ACTIONS(2703), - [anon_sym_using] = ACTIONS(2703), - [anon_sym_COLON_COLON] = ACTIONS(2705), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2705), - [anon_sym___declspec] = ACTIONS(2703), - [anon_sym___based] = ACTIONS(2703), - [anon_sym_signed] = ACTIONS(2703), - [anon_sym_unsigned] = ACTIONS(2703), - [anon_sym_long] = ACTIONS(2703), - [anon_sym_short] = ACTIONS(2703), - [anon_sym_LBRACK] = ACTIONS(2703), - [anon_sym_static] = ACTIONS(2703), - [anon_sym_register] = ACTIONS(2703), - [anon_sym_inline] = ACTIONS(2703), - [anon_sym___inline] = ACTIONS(2703), - [anon_sym___inline__] = ACTIONS(2703), - [anon_sym___forceinline] = ACTIONS(2703), - [anon_sym_thread_local] = ACTIONS(2703), - [anon_sym___thread] = ACTIONS(2703), - [anon_sym_const] = ACTIONS(2703), - [anon_sym_constexpr] = ACTIONS(2703), - [anon_sym_volatile] = ACTIONS(2703), - [anon_sym_restrict] = ACTIONS(2703), - [anon_sym___restrict__] = ACTIONS(2703), - [anon_sym__Atomic] = ACTIONS(2703), - [anon_sym__Noreturn] = ACTIONS(2703), - [anon_sym_noreturn] = ACTIONS(2703), - [anon_sym__Nonnull] = ACTIONS(2703), - [anon_sym_mutable] = ACTIONS(2703), - [anon_sym_constinit] = ACTIONS(2703), - [anon_sym_consteval] = ACTIONS(2703), - [anon_sym_alignas] = ACTIONS(2703), - [anon_sym__Alignas] = ACTIONS(2703), - [sym_primitive_type] = ACTIONS(2703), - [anon_sym_enum] = ACTIONS(2703), - [anon_sym_class] = ACTIONS(2703), - [anon_sym_struct] = ACTIONS(2703), - [anon_sym_union] = ACTIONS(2703), + [2028] = { + [sym_identifier] = ACTIONS(2743), + [aux_sym_preproc_def_token1] = ACTIONS(2743), + [aux_sym_preproc_if_token1] = ACTIONS(2743), + [aux_sym_preproc_if_token2] = ACTIONS(2743), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2743), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2743), + [sym_preproc_directive] = ACTIONS(2743), + [anon_sym_LPAREN2] = ACTIONS(2745), + [anon_sym_TILDE] = ACTIONS(2745), + [anon_sym_STAR] = ACTIONS(2745), + [anon_sym_AMP_AMP] = ACTIONS(2745), + [anon_sym_AMP] = ACTIONS(2743), + [anon_sym_SEMI] = ACTIONS(2745), + [anon_sym___extension__] = ACTIONS(2743), + [anon_sym_typedef] = ACTIONS(2743), + [anon_sym_virtual] = ACTIONS(2743), + [anon_sym_extern] = ACTIONS(2743), + [anon_sym___attribute__] = ACTIONS(2743), + [anon_sym___attribute] = ACTIONS(2743), + [anon_sym_using] = ACTIONS(2743), + [anon_sym_COLON_COLON] = ACTIONS(2745), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2745), + [anon_sym___declspec] = ACTIONS(2743), + [anon_sym___based] = ACTIONS(2743), + [anon_sym_signed] = ACTIONS(2743), + [anon_sym_unsigned] = ACTIONS(2743), + [anon_sym_long] = ACTIONS(2743), + [anon_sym_short] = ACTIONS(2743), + [anon_sym_LBRACK] = ACTIONS(2743), + [anon_sym_static] = ACTIONS(2743), + [anon_sym_register] = ACTIONS(2743), + [anon_sym_inline] = ACTIONS(2743), + [anon_sym___inline] = ACTIONS(2743), + [anon_sym___inline__] = ACTIONS(2743), + [anon_sym___forceinline] = ACTIONS(2743), + [anon_sym_thread_local] = ACTIONS(2743), + [anon_sym___thread] = ACTIONS(2743), + [anon_sym_const] = ACTIONS(2743), + [anon_sym_constexpr] = ACTIONS(2743), + [anon_sym_volatile] = ACTIONS(2743), + [anon_sym_restrict] = ACTIONS(2743), + [anon_sym___restrict__] = ACTIONS(2743), + [anon_sym__Atomic] = ACTIONS(2743), + [anon_sym__Noreturn] = ACTIONS(2743), + [anon_sym_noreturn] = ACTIONS(2743), + [anon_sym__Nonnull] = ACTIONS(2743), + [anon_sym_mutable] = ACTIONS(2743), + [anon_sym_constinit] = ACTIONS(2743), + [anon_sym_consteval] = ACTIONS(2743), + [anon_sym_alignas] = ACTIONS(2743), + [anon_sym__Alignas] = ACTIONS(2743), + [sym_primitive_type] = ACTIONS(2743), + [anon_sym_enum] = ACTIONS(2743), + [anon_sym_class] = ACTIONS(2743), + [anon_sym_struct] = ACTIONS(2743), + [anon_sym_union] = ACTIONS(2743), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2703), - [anon_sym_decltype] = ACTIONS(2703), - [anon_sym_explicit] = ACTIONS(2703), - [anon_sym_typename] = ACTIONS(2703), - [anon_sym_private] = ACTIONS(2703), - [anon_sym_template] = ACTIONS(2703), - [anon_sym_operator] = ACTIONS(2703), - [anon_sym_friend] = ACTIONS(2703), - [anon_sym_public] = ACTIONS(2703), - [anon_sym_protected] = ACTIONS(2703), - [anon_sym_static_assert] = ACTIONS(2703), + [sym_auto] = ACTIONS(2743), + [anon_sym_decltype] = ACTIONS(2743), + [anon_sym_explicit] = ACTIONS(2743), + [anon_sym_typename] = ACTIONS(2743), + [anon_sym_private] = ACTIONS(2743), + [anon_sym_template] = ACTIONS(2743), + [anon_sym_operator] = ACTIONS(2743), + [anon_sym_friend] = ACTIONS(2743), + [anon_sym_public] = ACTIONS(2743), + [anon_sym_protected] = ACTIONS(2743), + [anon_sym_static_assert] = ACTIONS(2743), }, - [1954] = { - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token2] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym___attribute] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym__Nonnull] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym__Alignas] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), + [2029] = { + [sym_identifier] = ACTIONS(2779), + [aux_sym_preproc_def_token1] = ACTIONS(2779), + [aux_sym_preproc_if_token1] = ACTIONS(2779), + [aux_sym_preproc_if_token2] = ACTIONS(2779), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2779), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2779), + [sym_preproc_directive] = ACTIONS(2779), + [anon_sym_LPAREN2] = ACTIONS(2781), + [anon_sym_TILDE] = ACTIONS(2781), + [anon_sym_STAR] = ACTIONS(2781), + [anon_sym_AMP_AMP] = ACTIONS(2781), + [anon_sym_AMP] = ACTIONS(2779), + [anon_sym_SEMI] = ACTIONS(2781), + [anon_sym___extension__] = ACTIONS(2779), + [anon_sym_typedef] = ACTIONS(2779), + [anon_sym_virtual] = ACTIONS(2779), + [anon_sym_extern] = ACTIONS(2779), + [anon_sym___attribute__] = ACTIONS(2779), + [anon_sym___attribute] = ACTIONS(2779), + [anon_sym_using] = ACTIONS(2779), + [anon_sym_COLON_COLON] = ACTIONS(2781), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2781), + [anon_sym___declspec] = ACTIONS(2779), + [anon_sym___based] = ACTIONS(2779), + [anon_sym_signed] = ACTIONS(2779), + [anon_sym_unsigned] = ACTIONS(2779), + [anon_sym_long] = ACTIONS(2779), + [anon_sym_short] = ACTIONS(2779), + [anon_sym_LBRACK] = ACTIONS(2779), + [anon_sym_static] = ACTIONS(2779), + [anon_sym_register] = ACTIONS(2779), + [anon_sym_inline] = ACTIONS(2779), + [anon_sym___inline] = ACTIONS(2779), + [anon_sym___inline__] = ACTIONS(2779), + [anon_sym___forceinline] = ACTIONS(2779), + [anon_sym_thread_local] = ACTIONS(2779), + [anon_sym___thread] = ACTIONS(2779), + [anon_sym_const] = ACTIONS(2779), + [anon_sym_constexpr] = ACTIONS(2779), + [anon_sym_volatile] = ACTIONS(2779), + [anon_sym_restrict] = ACTIONS(2779), + [anon_sym___restrict__] = ACTIONS(2779), + [anon_sym__Atomic] = ACTIONS(2779), + [anon_sym__Noreturn] = ACTIONS(2779), + [anon_sym_noreturn] = ACTIONS(2779), + [anon_sym__Nonnull] = ACTIONS(2779), + [anon_sym_mutable] = ACTIONS(2779), + [anon_sym_constinit] = ACTIONS(2779), + [anon_sym_consteval] = ACTIONS(2779), + [anon_sym_alignas] = ACTIONS(2779), + [anon_sym__Alignas] = ACTIONS(2779), + [sym_primitive_type] = ACTIONS(2779), + [anon_sym_enum] = ACTIONS(2779), + [anon_sym_class] = ACTIONS(2779), + [anon_sym_struct] = ACTIONS(2779), + [anon_sym_union] = ACTIONS(2779), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_private] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_friend] = ACTIONS(2859), - [anon_sym_public] = ACTIONS(2859), - [anon_sym_protected] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), + [sym_auto] = ACTIONS(2779), + [anon_sym_decltype] = ACTIONS(2779), + [anon_sym_explicit] = ACTIONS(2779), + [anon_sym_typename] = ACTIONS(2779), + [anon_sym_private] = ACTIONS(2779), + [anon_sym_template] = ACTIONS(2779), + [anon_sym_operator] = ACTIONS(2779), + [anon_sym_friend] = ACTIONS(2779), + [anon_sym_public] = ACTIONS(2779), + [anon_sym_protected] = ACTIONS(2779), + [anon_sym_static_assert] = ACTIONS(2779), }, - [1955] = { - [sym_identifier] = ACTIONS(5521), - [aux_sym_preproc_def_token1] = ACTIONS(5521), - [aux_sym_preproc_if_token1] = ACTIONS(5521), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5521), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5521), - [sym_preproc_directive] = ACTIONS(5521), - [anon_sym_LPAREN2] = ACTIONS(5523), - [anon_sym_TILDE] = ACTIONS(5523), - [anon_sym_STAR] = ACTIONS(5523), - [anon_sym_AMP_AMP] = ACTIONS(5523), - [anon_sym_AMP] = ACTIONS(5521), - [anon_sym_SEMI] = ACTIONS(5523), - [anon_sym___extension__] = ACTIONS(5521), - [anon_sym_typedef] = ACTIONS(5521), - [anon_sym_virtual] = ACTIONS(5521), - [anon_sym_extern] = ACTIONS(5521), - [anon_sym___attribute__] = ACTIONS(5521), - [anon_sym___attribute] = ACTIONS(5521), - [anon_sym_using] = ACTIONS(5521), - [anon_sym_COLON_COLON] = ACTIONS(5523), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5523), - [anon_sym___declspec] = ACTIONS(5521), - [anon_sym___based] = ACTIONS(5521), - [anon_sym_RBRACE] = ACTIONS(5523), - [anon_sym_signed] = ACTIONS(5521), - [anon_sym_unsigned] = ACTIONS(5521), - [anon_sym_long] = ACTIONS(5521), - [anon_sym_short] = ACTIONS(5521), - [anon_sym_LBRACK] = ACTIONS(5521), - [anon_sym_static] = ACTIONS(5521), - [anon_sym_register] = ACTIONS(5521), - [anon_sym_inline] = ACTIONS(5521), - [anon_sym___inline] = ACTIONS(5521), - [anon_sym___inline__] = ACTIONS(5521), - [anon_sym___forceinline] = ACTIONS(5521), - [anon_sym_thread_local] = ACTIONS(5521), - [anon_sym___thread] = ACTIONS(5521), - [anon_sym_const] = ACTIONS(5521), - [anon_sym_constexpr] = ACTIONS(5521), - [anon_sym_volatile] = ACTIONS(5521), - [anon_sym_restrict] = ACTIONS(5521), - [anon_sym___restrict__] = ACTIONS(5521), - [anon_sym__Atomic] = ACTIONS(5521), - [anon_sym__Noreturn] = ACTIONS(5521), - [anon_sym_noreturn] = ACTIONS(5521), - [anon_sym__Nonnull] = ACTIONS(5521), - [anon_sym_mutable] = ACTIONS(5521), - [anon_sym_constinit] = ACTIONS(5521), - [anon_sym_consteval] = ACTIONS(5521), - [anon_sym_alignas] = ACTIONS(5521), - [anon_sym__Alignas] = ACTIONS(5521), - [sym_primitive_type] = ACTIONS(5521), - [anon_sym_enum] = ACTIONS(5521), - [anon_sym_class] = ACTIONS(5521), - [anon_sym_struct] = ACTIONS(5521), - [anon_sym_union] = ACTIONS(5521), + [2030] = { + [sym_identifier] = ACTIONS(2879), + [aux_sym_preproc_def_token1] = ACTIONS(2879), + [aux_sym_preproc_if_token1] = ACTIONS(2879), + [aux_sym_preproc_if_token2] = ACTIONS(2879), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2879), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2879), + [sym_preproc_directive] = ACTIONS(2879), + [anon_sym_LPAREN2] = ACTIONS(2881), + [anon_sym_TILDE] = ACTIONS(2881), + [anon_sym_STAR] = ACTIONS(2881), + [anon_sym_AMP_AMP] = ACTIONS(2881), + [anon_sym_AMP] = ACTIONS(2879), + [anon_sym_SEMI] = ACTIONS(2881), + [anon_sym___extension__] = ACTIONS(2879), + [anon_sym_typedef] = ACTIONS(2879), + [anon_sym_virtual] = ACTIONS(2879), + [anon_sym_extern] = ACTIONS(2879), + [anon_sym___attribute__] = ACTIONS(2879), + [anon_sym___attribute] = ACTIONS(2879), + [anon_sym_using] = ACTIONS(2879), + [anon_sym_COLON_COLON] = ACTIONS(2881), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2881), + [anon_sym___declspec] = ACTIONS(2879), + [anon_sym___based] = ACTIONS(2879), + [anon_sym_signed] = ACTIONS(2879), + [anon_sym_unsigned] = ACTIONS(2879), + [anon_sym_long] = ACTIONS(2879), + [anon_sym_short] = ACTIONS(2879), + [anon_sym_LBRACK] = ACTIONS(2879), + [anon_sym_static] = ACTIONS(2879), + [anon_sym_register] = ACTIONS(2879), + [anon_sym_inline] = ACTIONS(2879), + [anon_sym___inline] = ACTIONS(2879), + [anon_sym___inline__] = ACTIONS(2879), + [anon_sym___forceinline] = ACTIONS(2879), + [anon_sym_thread_local] = ACTIONS(2879), + [anon_sym___thread] = ACTIONS(2879), + [anon_sym_const] = ACTIONS(2879), + [anon_sym_constexpr] = ACTIONS(2879), + [anon_sym_volatile] = ACTIONS(2879), + [anon_sym_restrict] = ACTIONS(2879), + [anon_sym___restrict__] = ACTIONS(2879), + [anon_sym__Atomic] = ACTIONS(2879), + [anon_sym__Noreturn] = ACTIONS(2879), + [anon_sym_noreturn] = ACTIONS(2879), + [anon_sym__Nonnull] = ACTIONS(2879), + [anon_sym_mutable] = ACTIONS(2879), + [anon_sym_constinit] = ACTIONS(2879), + [anon_sym_consteval] = ACTIONS(2879), + [anon_sym_alignas] = ACTIONS(2879), + [anon_sym__Alignas] = ACTIONS(2879), + [sym_primitive_type] = ACTIONS(2879), + [anon_sym_enum] = ACTIONS(2879), + [anon_sym_class] = ACTIONS(2879), + [anon_sym_struct] = ACTIONS(2879), + [anon_sym_union] = ACTIONS(2879), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5521), - [anon_sym_decltype] = ACTIONS(5521), - [anon_sym_explicit] = ACTIONS(5521), - [anon_sym_typename] = ACTIONS(5521), - [anon_sym_private] = ACTIONS(5521), - [anon_sym_template] = ACTIONS(5521), - [anon_sym_operator] = ACTIONS(5521), - [anon_sym_friend] = ACTIONS(5521), - [anon_sym_public] = ACTIONS(5521), - [anon_sym_protected] = ACTIONS(5521), - [anon_sym_static_assert] = ACTIONS(5521), - }, - [1956] = { - [sym_string_literal] = STATE(2189), - [sym_template_argument_list] = STATE(3094), - [sym_raw_string_literal] = STATE(2189), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4146), - [anon_sym_COMMA] = ACTIONS(4146), - [anon_sym_RPAREN] = ACTIONS(5946), - [anon_sym_LPAREN2] = ACTIONS(5946), - [anon_sym_DASH] = ACTIONS(4154), - [anon_sym_PLUS] = ACTIONS(4154), - [anon_sym_STAR] = ACTIONS(4154), - [anon_sym_SLASH] = ACTIONS(4154), - [anon_sym_PERCENT] = ACTIONS(4154), - [anon_sym_PIPE_PIPE] = ACTIONS(4146), - [anon_sym_AMP_AMP] = ACTIONS(4146), - [anon_sym_PIPE] = ACTIONS(4154), - [anon_sym_CARET] = ACTIONS(4154), - [anon_sym_AMP] = ACTIONS(4154), - [anon_sym_EQ_EQ] = ACTIONS(4146), - [anon_sym_BANG_EQ] = ACTIONS(4146), - [anon_sym_GT] = ACTIONS(4154), - [anon_sym_GT_EQ] = ACTIONS(4146), - [anon_sym_LT_EQ] = ACTIONS(4154), - [anon_sym_LT] = ACTIONS(5033), - [anon_sym_LT_LT] = ACTIONS(4154), - [anon_sym_GT_GT] = ACTIONS(4154), - [anon_sym_COLON_COLON] = ACTIONS(4167), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5036), - [anon_sym_LBRACE] = ACTIONS(4172), - [anon_sym_LBRACK] = ACTIONS(5949), - [anon_sym_EQ] = ACTIONS(4154), - [anon_sym_QMARK] = ACTIONS(4146), - [anon_sym_STAR_EQ] = ACTIONS(4146), - [anon_sym_SLASH_EQ] = ACTIONS(4146), - [anon_sym_PERCENT_EQ] = ACTIONS(4146), - [anon_sym_PLUS_EQ] = ACTIONS(4146), - [anon_sym_DASH_EQ] = ACTIONS(4146), - [anon_sym_LT_LT_EQ] = ACTIONS(4146), - [anon_sym_GT_GT_EQ] = ACTIONS(4146), - [anon_sym_AMP_EQ] = ACTIONS(4146), - [anon_sym_CARET_EQ] = ACTIONS(4146), - [anon_sym_PIPE_EQ] = ACTIONS(4146), - [anon_sym_and_eq] = ACTIONS(4146), - [anon_sym_or_eq] = ACTIONS(4146), - [anon_sym_xor_eq] = ACTIONS(4146), - [anon_sym_LT_EQ_GT] = ACTIONS(4146), - [anon_sym_or] = ACTIONS(4154), - [anon_sym_and] = ACTIONS(4154), - [anon_sym_bitor] = ACTIONS(4146), - [anon_sym_xor] = ACTIONS(4154), - [anon_sym_bitand] = ACTIONS(4146), - [anon_sym_not_eq] = ACTIONS(4146), - [anon_sym_DASH_DASH] = ACTIONS(4146), - [anon_sym_PLUS_PLUS] = ACTIONS(4146), - [anon_sym_DOT] = ACTIONS(4154), - [anon_sym_DOT_STAR] = ACTIONS(4146), - [anon_sym_DASH_GT] = ACTIONS(4154), - [anon_sym_L_DQUOTE] = ACTIONS(5040), - [anon_sym_u_DQUOTE] = ACTIONS(5040), - [anon_sym_U_DQUOTE] = ACTIONS(5040), - [anon_sym_u8_DQUOTE] = ACTIONS(5040), - [anon_sym_DQUOTE] = ACTIONS(5040), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5042), - [anon_sym_LR_DQUOTE] = ACTIONS(5042), - [anon_sym_uR_DQUOTE] = ACTIONS(5042), - [anon_sym_UR_DQUOTE] = ACTIONS(5042), - [anon_sym_u8R_DQUOTE] = ACTIONS(5042), - [anon_sym_DASH_GT_STAR] = ACTIONS(4146), + [sym_auto] = ACTIONS(2879), + [anon_sym_decltype] = ACTIONS(2879), + [anon_sym_explicit] = ACTIONS(2879), + [anon_sym_typename] = ACTIONS(2879), + [anon_sym_private] = ACTIONS(2879), + [anon_sym_template] = ACTIONS(2879), + [anon_sym_operator] = ACTIONS(2879), + [anon_sym_friend] = ACTIONS(2879), + [anon_sym_public] = ACTIONS(2879), + [anon_sym_protected] = ACTIONS(2879), + [anon_sym_static_assert] = ACTIONS(2879), }, - [1957] = { - [sym_identifier] = ACTIONS(5557), - [aux_sym_preproc_def_token1] = ACTIONS(5557), - [aux_sym_preproc_if_token1] = ACTIONS(5557), - [aux_sym_preproc_if_token2] = ACTIONS(5557), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5557), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5557), - [sym_preproc_directive] = ACTIONS(5557), + [2031] = { + [sym_attribute_specifier] = STATE(1884), + [sym_field_declaration_list] = STATE(2388), + [sym_virtual_specifier] = STATE(7049), + [sym_base_class_clause] = STATE(7899), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5559), + [anon_sym_COMMA] = ACTIONS(5559), + [anon_sym_RPAREN] = ACTIONS(5559), [anon_sym_LPAREN2] = ACTIONS(5559), - [anon_sym_TILDE] = ACTIONS(5559), + [anon_sym_DASH] = ACTIONS(5557), + [anon_sym_PLUS] = ACTIONS(5557), [anon_sym_STAR] = ACTIONS(5559), + [anon_sym_SLASH] = ACTIONS(5557), + [anon_sym_PERCENT] = ACTIONS(5559), + [anon_sym_PIPE_PIPE] = ACTIONS(5559), [anon_sym_AMP_AMP] = ACTIONS(5559), + [anon_sym_PIPE] = ACTIONS(5557), + [anon_sym_CARET] = ACTIONS(5559), [anon_sym_AMP] = ACTIONS(5557), + [anon_sym_EQ_EQ] = ACTIONS(5559), + [anon_sym_BANG_EQ] = ACTIONS(5559), + [anon_sym_GT] = ACTIONS(5557), + [anon_sym_GT_EQ] = ACTIONS(5559), + [anon_sym_LT_EQ] = ACTIONS(5557), + [anon_sym_LT] = ACTIONS(5557), + [anon_sym_LT_LT] = ACTIONS(5559), + [anon_sym_GT_GT] = ACTIONS(5559), [anon_sym_SEMI] = ACTIONS(5559), - [anon_sym___extension__] = ACTIONS(5557), - [anon_sym_typedef] = ACTIONS(5557), - [anon_sym_virtual] = ACTIONS(5557), - [anon_sym_extern] = ACTIONS(5557), - [anon_sym___attribute__] = ACTIONS(5557), - [anon_sym___attribute] = ACTIONS(5557), - [anon_sym_using] = ACTIONS(5557), - [anon_sym_COLON_COLON] = ACTIONS(5559), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5559), - [anon_sym___declspec] = ACTIONS(5557), - [anon_sym___based] = ACTIONS(5557), - [anon_sym_signed] = ACTIONS(5557), - [anon_sym_unsigned] = ACTIONS(5557), - [anon_sym_long] = ACTIONS(5557), - [anon_sym_short] = ACTIONS(5557), - [anon_sym_LBRACK] = ACTIONS(5557), - [anon_sym_static] = ACTIONS(5557), - [anon_sym_register] = ACTIONS(5557), - [anon_sym_inline] = ACTIONS(5557), - [anon_sym___inline] = ACTIONS(5557), - [anon_sym___inline__] = ACTIONS(5557), - [anon_sym___forceinline] = ACTIONS(5557), - [anon_sym_thread_local] = ACTIONS(5557), - [anon_sym___thread] = ACTIONS(5557), + [anon_sym___extension__] = ACTIONS(5559), + [anon_sym___attribute__] = ACTIONS(6031), + [anon_sym___attribute] = ACTIONS(6033), + [anon_sym_COLON] = ACTIONS(5563), + [anon_sym_LBRACE] = ACTIONS(6035), + [anon_sym_RBRACE] = ACTIONS(5559), + [anon_sym_LBRACK] = ACTIONS(5559), + [anon_sym_RBRACK] = ACTIONS(5559), [anon_sym_const] = ACTIONS(5557), - [anon_sym_constexpr] = ACTIONS(5557), - [anon_sym_volatile] = ACTIONS(5557), - [anon_sym_restrict] = ACTIONS(5557), - [anon_sym___restrict__] = ACTIONS(5557), - [anon_sym__Atomic] = ACTIONS(5557), - [anon_sym__Noreturn] = ACTIONS(5557), - [anon_sym_noreturn] = ACTIONS(5557), - [anon_sym__Nonnull] = ACTIONS(5557), - [anon_sym_mutable] = ACTIONS(5557), - [anon_sym_constinit] = ACTIONS(5557), - [anon_sym_consteval] = ACTIONS(5557), - [anon_sym_alignas] = ACTIONS(5557), - [anon_sym__Alignas] = ACTIONS(5557), - [sym_primitive_type] = ACTIONS(5557), - [anon_sym_enum] = ACTIONS(5557), - [anon_sym_class] = ACTIONS(5557), - [anon_sym_struct] = ACTIONS(5557), - [anon_sym_union] = ACTIONS(5557), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5557), - [anon_sym_decltype] = ACTIONS(5557), - [anon_sym_explicit] = ACTIONS(5557), - [anon_sym_typename] = ACTIONS(5557), - [anon_sym_private] = ACTIONS(5557), - [anon_sym_template] = ACTIONS(5557), - [anon_sym_operator] = ACTIONS(5557), - [anon_sym_friend] = ACTIONS(5557), - [anon_sym_public] = ACTIONS(5557), - [anon_sym_protected] = ACTIONS(5557), - [anon_sym_static_assert] = ACTIONS(5557), - }, - [1958] = { - [sym_identifier] = ACTIONS(2759), - [aux_sym_preproc_def_token1] = ACTIONS(2759), - [aux_sym_preproc_if_token1] = ACTIONS(2759), - [aux_sym_preproc_if_token2] = ACTIONS(2759), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2759), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2759), - [sym_preproc_directive] = ACTIONS(2759), - [anon_sym_LPAREN2] = ACTIONS(2761), - [anon_sym_TILDE] = ACTIONS(2761), - [anon_sym_STAR] = ACTIONS(2761), - [anon_sym_AMP_AMP] = ACTIONS(2761), - [anon_sym_AMP] = ACTIONS(2759), - [anon_sym_SEMI] = ACTIONS(2761), - [anon_sym___extension__] = ACTIONS(2759), - [anon_sym_typedef] = ACTIONS(2759), - [anon_sym_virtual] = ACTIONS(2759), - [anon_sym_extern] = ACTIONS(2759), - [anon_sym___attribute__] = ACTIONS(2759), - [anon_sym___attribute] = ACTIONS(2759), - [anon_sym_using] = ACTIONS(2759), - [anon_sym_COLON_COLON] = ACTIONS(2761), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2761), - [anon_sym___declspec] = ACTIONS(2759), - [anon_sym___based] = ACTIONS(2759), - [anon_sym_signed] = ACTIONS(2759), - [anon_sym_unsigned] = ACTIONS(2759), - [anon_sym_long] = ACTIONS(2759), - [anon_sym_short] = ACTIONS(2759), - [anon_sym_LBRACK] = ACTIONS(2759), - [anon_sym_static] = ACTIONS(2759), - [anon_sym_register] = ACTIONS(2759), - [anon_sym_inline] = ACTIONS(2759), - [anon_sym___inline] = ACTIONS(2759), - [anon_sym___inline__] = ACTIONS(2759), - [anon_sym___forceinline] = ACTIONS(2759), - [anon_sym_thread_local] = ACTIONS(2759), - [anon_sym___thread] = ACTIONS(2759), - [anon_sym_const] = ACTIONS(2759), - [anon_sym_constexpr] = ACTIONS(2759), - [anon_sym_volatile] = ACTIONS(2759), - [anon_sym_restrict] = ACTIONS(2759), - [anon_sym___restrict__] = ACTIONS(2759), - [anon_sym__Atomic] = ACTIONS(2759), - [anon_sym__Noreturn] = ACTIONS(2759), - [anon_sym_noreturn] = ACTIONS(2759), - [anon_sym__Nonnull] = ACTIONS(2759), - [anon_sym_mutable] = ACTIONS(2759), - [anon_sym_constinit] = ACTIONS(2759), - [anon_sym_consteval] = ACTIONS(2759), - [anon_sym_alignas] = ACTIONS(2759), - [anon_sym__Alignas] = ACTIONS(2759), - [sym_primitive_type] = ACTIONS(2759), - [anon_sym_enum] = ACTIONS(2759), - [anon_sym_class] = ACTIONS(2759), - [anon_sym_struct] = ACTIONS(2759), - [anon_sym_union] = ACTIONS(2759), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2759), - [anon_sym_decltype] = ACTIONS(2759), - [anon_sym_explicit] = ACTIONS(2759), - [anon_sym_typename] = ACTIONS(2759), - [anon_sym_private] = ACTIONS(2759), - [anon_sym_template] = ACTIONS(2759), - [anon_sym_operator] = ACTIONS(2759), - [anon_sym_friend] = ACTIONS(2759), - [anon_sym_public] = ACTIONS(2759), - [anon_sym_protected] = ACTIONS(2759), - [anon_sym_static_assert] = ACTIONS(2759), - }, - [1959] = { - [sym_identifier] = ACTIONS(3108), - [aux_sym_preproc_def_token1] = ACTIONS(3108), - [aux_sym_preproc_if_token1] = ACTIONS(3108), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3108), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3108), - [sym_preproc_directive] = ACTIONS(3108), - [anon_sym_LPAREN2] = ACTIONS(3110), - [anon_sym_TILDE] = ACTIONS(3110), - [anon_sym_STAR] = ACTIONS(3110), - [anon_sym_AMP_AMP] = ACTIONS(3110), - [anon_sym_AMP] = ACTIONS(3108), - [anon_sym_SEMI] = ACTIONS(3110), - [anon_sym___extension__] = ACTIONS(3108), - [anon_sym_typedef] = ACTIONS(3108), - [anon_sym_virtual] = ACTIONS(3108), - [anon_sym_extern] = ACTIONS(3108), - [anon_sym___attribute__] = ACTIONS(3108), - [anon_sym___attribute] = ACTIONS(3108), - [anon_sym_using] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(3110), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3110), - [anon_sym___declspec] = ACTIONS(3108), - [anon_sym___based] = ACTIONS(3108), - [anon_sym_RBRACE] = ACTIONS(3110), - [anon_sym_signed] = ACTIONS(3108), - [anon_sym_unsigned] = ACTIONS(3108), - [anon_sym_long] = ACTIONS(3108), - [anon_sym_short] = ACTIONS(3108), - [anon_sym_LBRACK] = ACTIONS(3108), - [anon_sym_static] = ACTIONS(3108), - [anon_sym_register] = ACTIONS(3108), - [anon_sym_inline] = ACTIONS(3108), - [anon_sym___inline] = ACTIONS(3108), - [anon_sym___inline__] = ACTIONS(3108), - [anon_sym___forceinline] = ACTIONS(3108), - [anon_sym_thread_local] = ACTIONS(3108), - [anon_sym___thread] = ACTIONS(3108), - [anon_sym_const] = ACTIONS(3108), - [anon_sym_constexpr] = ACTIONS(3108), - [anon_sym_volatile] = ACTIONS(3108), - [anon_sym_restrict] = ACTIONS(3108), - [anon_sym___restrict__] = ACTIONS(3108), - [anon_sym__Atomic] = ACTIONS(3108), - [anon_sym__Noreturn] = ACTIONS(3108), - [anon_sym_noreturn] = ACTIONS(3108), - [anon_sym__Nonnull] = ACTIONS(3108), - [anon_sym_mutable] = ACTIONS(3108), - [anon_sym_constinit] = ACTIONS(3108), - [anon_sym_consteval] = ACTIONS(3108), - [anon_sym_alignas] = ACTIONS(3108), - [anon_sym__Alignas] = ACTIONS(3108), - [sym_primitive_type] = ACTIONS(3108), - [anon_sym_enum] = ACTIONS(3108), - [anon_sym_class] = ACTIONS(3108), - [anon_sym_struct] = ACTIONS(3108), - [anon_sym_union] = ACTIONS(3108), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3108), - [anon_sym_decltype] = ACTIONS(3108), - [anon_sym_explicit] = ACTIONS(3108), - [anon_sym_typename] = ACTIONS(3108), - [anon_sym_private] = ACTIONS(3108), - [anon_sym_template] = ACTIONS(3108), - [anon_sym_operator] = ACTIONS(3108), - [anon_sym_friend] = ACTIONS(3108), - [anon_sym_public] = ACTIONS(3108), - [anon_sym_protected] = ACTIONS(3108), - [anon_sym_static_assert] = ACTIONS(3108), - }, - [1960] = { - [sym_identifier] = ACTIONS(5456), - [aux_sym_preproc_def_token1] = ACTIONS(5456), - [aux_sym_preproc_if_token1] = ACTIONS(5456), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5456), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5456), - [sym_preproc_directive] = ACTIONS(5456), - [anon_sym_LPAREN2] = ACTIONS(5458), - [anon_sym_TILDE] = ACTIONS(5458), - [anon_sym_STAR] = ACTIONS(5458), - [anon_sym_AMP_AMP] = ACTIONS(5458), - [anon_sym_AMP] = ACTIONS(5456), - [anon_sym_SEMI] = ACTIONS(5458), - [anon_sym___extension__] = ACTIONS(5456), - [anon_sym_typedef] = ACTIONS(5456), - [anon_sym_virtual] = ACTIONS(5456), - [anon_sym_extern] = ACTIONS(5456), - [anon_sym___attribute__] = ACTIONS(5456), - [anon_sym___attribute] = ACTIONS(5456), - [anon_sym_using] = ACTIONS(5456), - [anon_sym_COLON_COLON] = ACTIONS(5458), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5458), - [anon_sym___declspec] = ACTIONS(5456), - [anon_sym___based] = ACTIONS(5456), - [anon_sym_RBRACE] = ACTIONS(5458), - [anon_sym_signed] = ACTIONS(5456), - [anon_sym_unsigned] = ACTIONS(5456), - [anon_sym_long] = ACTIONS(5456), - [anon_sym_short] = ACTIONS(5456), - [anon_sym_LBRACK] = ACTIONS(5456), - [anon_sym_static] = ACTIONS(5456), - [anon_sym_register] = ACTIONS(5456), - [anon_sym_inline] = ACTIONS(5456), - [anon_sym___inline] = ACTIONS(5456), - [anon_sym___inline__] = ACTIONS(5456), - [anon_sym___forceinline] = ACTIONS(5456), - [anon_sym_thread_local] = ACTIONS(5456), - [anon_sym___thread] = ACTIONS(5456), - [anon_sym_const] = ACTIONS(5456), - [anon_sym_constexpr] = ACTIONS(5456), - [anon_sym_volatile] = ACTIONS(5456), - [anon_sym_restrict] = ACTIONS(5456), - [anon_sym___restrict__] = ACTIONS(5456), - [anon_sym__Atomic] = ACTIONS(5456), - [anon_sym__Noreturn] = ACTIONS(5456), - [anon_sym_noreturn] = ACTIONS(5456), - [anon_sym__Nonnull] = ACTIONS(5456), - [anon_sym_mutable] = ACTIONS(5456), - [anon_sym_constinit] = ACTIONS(5456), - [anon_sym_consteval] = ACTIONS(5456), - [anon_sym_alignas] = ACTIONS(5456), - [anon_sym__Alignas] = ACTIONS(5456), - [sym_primitive_type] = ACTIONS(5456), - [anon_sym_enum] = ACTIONS(5456), - [anon_sym_class] = ACTIONS(5456), - [anon_sym_struct] = ACTIONS(5456), - [anon_sym_union] = ACTIONS(5456), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5456), - [anon_sym_decltype] = ACTIONS(5456), - [anon_sym_explicit] = ACTIONS(5456), - [anon_sym_typename] = ACTIONS(5456), - [anon_sym_private] = ACTIONS(5456), - [anon_sym_template] = ACTIONS(5456), - [anon_sym_operator] = ACTIONS(5456), - [anon_sym_friend] = ACTIONS(5456), - [anon_sym_public] = ACTIONS(5456), - [anon_sym_protected] = ACTIONS(5456), - [anon_sym_static_assert] = ACTIONS(5456), + [anon_sym_constexpr] = ACTIONS(5559), + [anon_sym_volatile] = ACTIONS(5559), + [anon_sym_restrict] = ACTIONS(5559), + [anon_sym___restrict__] = ACTIONS(5559), + [anon_sym__Atomic] = ACTIONS(5559), + [anon_sym__Noreturn] = ACTIONS(5559), + [anon_sym_noreturn] = ACTIONS(5559), + [anon_sym__Nonnull] = ACTIONS(5559), + [anon_sym_mutable] = ACTIONS(5559), + [anon_sym_constinit] = ACTIONS(5559), + [anon_sym_consteval] = ACTIONS(5559), + [anon_sym_alignas] = ACTIONS(5559), + [anon_sym__Alignas] = ACTIONS(5559), + [anon_sym_QMARK] = ACTIONS(5559), + [anon_sym_LT_EQ_GT] = ACTIONS(5559), + [anon_sym_or] = ACTIONS(5559), + [anon_sym_and] = ACTIONS(5559), + [anon_sym_bitor] = ACTIONS(5559), + [anon_sym_xor] = ACTIONS(5559), + [anon_sym_bitand] = ACTIONS(5559), + [anon_sym_not_eq] = ACTIONS(5559), + [anon_sym_DASH_DASH] = ACTIONS(5559), + [anon_sym_PLUS_PLUS] = ACTIONS(5559), + [anon_sym_DOT] = ACTIONS(5557), + [anon_sym_DOT_STAR] = ACTIONS(5559), + [anon_sym_DASH_GT] = ACTIONS(5559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5559), + [anon_sym_decltype] = ACTIONS(5559), + [anon_sym_final] = ACTIONS(6037), + [anon_sym_override] = ACTIONS(6037), + [anon_sym_requires] = ACTIONS(5559), }, - [1961] = { - [sym_identifier] = ACTIONS(5456), - [aux_sym_preproc_def_token1] = ACTIONS(5456), - [aux_sym_preproc_if_token1] = ACTIONS(5456), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5456), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5456), - [sym_preproc_directive] = ACTIONS(5456), - [anon_sym_LPAREN2] = ACTIONS(5458), - [anon_sym_TILDE] = ACTIONS(5458), - [anon_sym_STAR] = ACTIONS(5458), - [anon_sym_AMP_AMP] = ACTIONS(5458), - [anon_sym_AMP] = ACTIONS(5456), - [anon_sym_SEMI] = ACTIONS(5458), - [anon_sym___extension__] = ACTIONS(5456), - [anon_sym_typedef] = ACTIONS(5456), - [anon_sym_virtual] = ACTIONS(5456), - [anon_sym_extern] = ACTIONS(5456), - [anon_sym___attribute__] = ACTIONS(5456), - [anon_sym___attribute] = ACTIONS(5456), - [anon_sym_using] = ACTIONS(5456), - [anon_sym_COLON_COLON] = ACTIONS(5458), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5458), - [anon_sym___declspec] = ACTIONS(5456), - [anon_sym___based] = ACTIONS(5456), - [anon_sym_RBRACE] = ACTIONS(5458), - [anon_sym_signed] = ACTIONS(5456), - [anon_sym_unsigned] = ACTIONS(5456), - [anon_sym_long] = ACTIONS(5456), - [anon_sym_short] = ACTIONS(5456), - [anon_sym_LBRACK] = ACTIONS(5456), - [anon_sym_static] = ACTIONS(5456), - [anon_sym_register] = ACTIONS(5456), - [anon_sym_inline] = ACTIONS(5456), - [anon_sym___inline] = ACTIONS(5456), - [anon_sym___inline__] = ACTIONS(5456), - [anon_sym___forceinline] = ACTIONS(5456), - [anon_sym_thread_local] = ACTIONS(5456), - [anon_sym___thread] = ACTIONS(5456), - [anon_sym_const] = ACTIONS(5456), - [anon_sym_constexpr] = ACTIONS(5456), - [anon_sym_volatile] = ACTIONS(5456), - [anon_sym_restrict] = ACTIONS(5456), - [anon_sym___restrict__] = ACTIONS(5456), - [anon_sym__Atomic] = ACTIONS(5456), - [anon_sym__Noreturn] = ACTIONS(5456), - [anon_sym_noreturn] = ACTIONS(5456), - [anon_sym__Nonnull] = ACTIONS(5456), - [anon_sym_mutable] = ACTIONS(5456), - [anon_sym_constinit] = ACTIONS(5456), - [anon_sym_consteval] = ACTIONS(5456), - [anon_sym_alignas] = ACTIONS(5456), - [anon_sym__Alignas] = ACTIONS(5456), - [sym_primitive_type] = ACTIONS(5456), - [anon_sym_enum] = ACTIONS(5456), - [anon_sym_class] = ACTIONS(5456), - [anon_sym_struct] = ACTIONS(5456), - [anon_sym_union] = ACTIONS(5456), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5456), - [anon_sym_decltype] = ACTIONS(5456), - [anon_sym_explicit] = ACTIONS(5456), - [anon_sym_typename] = ACTIONS(5456), - [anon_sym_private] = ACTIONS(5456), - [anon_sym_template] = ACTIONS(5456), - [anon_sym_operator] = ACTIONS(5456), - [anon_sym_friend] = ACTIONS(5456), - [anon_sym_public] = ACTIONS(5456), - [anon_sym_protected] = ACTIONS(5456), - [anon_sym_static_assert] = ACTIONS(5456), - }, - [1962] = { - [sym_identifier] = ACTIONS(5456), - [aux_sym_preproc_def_token1] = ACTIONS(5456), - [aux_sym_preproc_if_token1] = ACTIONS(5456), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5456), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5456), - [sym_preproc_directive] = ACTIONS(5456), - [anon_sym_LPAREN2] = ACTIONS(5458), - [anon_sym_TILDE] = ACTIONS(5458), - [anon_sym_STAR] = ACTIONS(5458), - [anon_sym_AMP_AMP] = ACTIONS(5458), - [anon_sym_AMP] = ACTIONS(5456), - [anon_sym_SEMI] = ACTIONS(5458), - [anon_sym___extension__] = ACTIONS(5456), - [anon_sym_typedef] = ACTIONS(5456), - [anon_sym_virtual] = ACTIONS(5456), - [anon_sym_extern] = ACTIONS(5456), - [anon_sym___attribute__] = ACTIONS(5456), - [anon_sym___attribute] = ACTIONS(5456), - [anon_sym_using] = ACTIONS(5456), - [anon_sym_COLON_COLON] = ACTIONS(5458), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5458), - [anon_sym___declspec] = ACTIONS(5456), - [anon_sym___based] = ACTIONS(5456), - [anon_sym_RBRACE] = ACTIONS(5458), - [anon_sym_signed] = ACTIONS(5456), - [anon_sym_unsigned] = ACTIONS(5456), - [anon_sym_long] = ACTIONS(5456), - [anon_sym_short] = ACTIONS(5456), - [anon_sym_LBRACK] = ACTIONS(5456), - [anon_sym_static] = ACTIONS(5456), - [anon_sym_register] = ACTIONS(5456), - [anon_sym_inline] = ACTIONS(5456), - [anon_sym___inline] = ACTIONS(5456), - [anon_sym___inline__] = ACTIONS(5456), - [anon_sym___forceinline] = ACTIONS(5456), - [anon_sym_thread_local] = ACTIONS(5456), - [anon_sym___thread] = ACTIONS(5456), - [anon_sym_const] = ACTIONS(5456), - [anon_sym_constexpr] = ACTIONS(5456), - [anon_sym_volatile] = ACTIONS(5456), - [anon_sym_restrict] = ACTIONS(5456), - [anon_sym___restrict__] = ACTIONS(5456), - [anon_sym__Atomic] = ACTIONS(5456), - [anon_sym__Noreturn] = ACTIONS(5456), - [anon_sym_noreturn] = ACTIONS(5456), - [anon_sym__Nonnull] = ACTIONS(5456), - [anon_sym_mutable] = ACTIONS(5456), - [anon_sym_constinit] = ACTIONS(5456), - [anon_sym_consteval] = ACTIONS(5456), - [anon_sym_alignas] = ACTIONS(5456), - [anon_sym__Alignas] = ACTIONS(5456), - [sym_primitive_type] = ACTIONS(5456), - [anon_sym_enum] = ACTIONS(5456), - [anon_sym_class] = ACTIONS(5456), - [anon_sym_struct] = ACTIONS(5456), - [anon_sym_union] = ACTIONS(5456), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5456), - [anon_sym_decltype] = ACTIONS(5456), - [anon_sym_explicit] = ACTIONS(5456), - [anon_sym_typename] = ACTIONS(5456), - [anon_sym_private] = ACTIONS(5456), - [anon_sym_template] = ACTIONS(5456), - [anon_sym_operator] = ACTIONS(5456), - [anon_sym_friend] = ACTIONS(5456), - [anon_sym_public] = ACTIONS(5456), - [anon_sym_protected] = ACTIONS(5456), - [anon_sym_static_assert] = ACTIONS(5456), - }, - [1963] = { - [sym_identifier] = ACTIONS(5597), - [aux_sym_preproc_def_token1] = ACTIONS(5597), - [aux_sym_preproc_if_token1] = ACTIONS(5597), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5597), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5597), - [sym_preproc_directive] = ACTIONS(5597), - [anon_sym_LPAREN2] = ACTIONS(5599), - [anon_sym_TILDE] = ACTIONS(5599), - [anon_sym_STAR] = ACTIONS(5599), - [anon_sym_AMP_AMP] = ACTIONS(5599), - [anon_sym_AMP] = ACTIONS(5597), - [anon_sym_SEMI] = ACTIONS(5599), - [anon_sym___extension__] = ACTIONS(5597), - [anon_sym_typedef] = ACTIONS(5597), - [anon_sym_virtual] = ACTIONS(5597), - [anon_sym_extern] = ACTIONS(5597), - [anon_sym___attribute__] = ACTIONS(5597), - [anon_sym___attribute] = ACTIONS(5597), - [anon_sym_using] = ACTIONS(5597), - [anon_sym_COLON_COLON] = ACTIONS(5599), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5599), - [anon_sym___declspec] = ACTIONS(5597), - [anon_sym___based] = ACTIONS(5597), - [anon_sym_RBRACE] = ACTIONS(5599), - [anon_sym_signed] = ACTIONS(5597), - [anon_sym_unsigned] = ACTIONS(5597), - [anon_sym_long] = ACTIONS(5597), - [anon_sym_short] = ACTIONS(5597), - [anon_sym_LBRACK] = ACTIONS(5597), - [anon_sym_static] = ACTIONS(5597), - [anon_sym_register] = ACTIONS(5597), - [anon_sym_inline] = ACTIONS(5597), - [anon_sym___inline] = ACTIONS(5597), - [anon_sym___inline__] = ACTIONS(5597), - [anon_sym___forceinline] = ACTIONS(5597), - [anon_sym_thread_local] = ACTIONS(5597), - [anon_sym___thread] = ACTIONS(5597), - [anon_sym_const] = ACTIONS(5597), - [anon_sym_constexpr] = ACTIONS(5597), - [anon_sym_volatile] = ACTIONS(5597), - [anon_sym_restrict] = ACTIONS(5597), - [anon_sym___restrict__] = ACTIONS(5597), - [anon_sym__Atomic] = ACTIONS(5597), - [anon_sym__Noreturn] = ACTIONS(5597), - [anon_sym_noreturn] = ACTIONS(5597), - [anon_sym__Nonnull] = ACTIONS(5597), - [anon_sym_mutable] = ACTIONS(5597), - [anon_sym_constinit] = ACTIONS(5597), - [anon_sym_consteval] = ACTIONS(5597), - [anon_sym_alignas] = ACTIONS(5597), - [anon_sym__Alignas] = ACTIONS(5597), - [sym_primitive_type] = ACTIONS(5597), - [anon_sym_enum] = ACTIONS(5597), - [anon_sym_class] = ACTIONS(5597), - [anon_sym_struct] = ACTIONS(5597), - [anon_sym_union] = ACTIONS(5597), + [2032] = { + [sym_identifier] = ACTIONS(2855), + [aux_sym_preproc_def_token1] = ACTIONS(2855), + [aux_sym_preproc_if_token1] = ACTIONS(2855), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2855), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2855), + [sym_preproc_directive] = ACTIONS(2855), + [anon_sym_LPAREN2] = ACTIONS(2857), + [anon_sym_TILDE] = ACTIONS(2857), + [anon_sym_STAR] = ACTIONS(2857), + [anon_sym_AMP_AMP] = ACTIONS(2857), + [anon_sym_AMP] = ACTIONS(2855), + [anon_sym_SEMI] = ACTIONS(2857), + [anon_sym___extension__] = ACTIONS(2855), + [anon_sym_typedef] = ACTIONS(2855), + [anon_sym_virtual] = ACTIONS(2855), + [anon_sym_extern] = ACTIONS(2855), + [anon_sym___attribute__] = ACTIONS(2855), + [anon_sym___attribute] = ACTIONS(2855), + [anon_sym_using] = ACTIONS(2855), + [anon_sym_COLON_COLON] = ACTIONS(2857), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2857), + [anon_sym___declspec] = ACTIONS(2855), + [anon_sym___based] = ACTIONS(2855), + [anon_sym_RBRACE] = ACTIONS(2857), + [anon_sym_signed] = ACTIONS(2855), + [anon_sym_unsigned] = ACTIONS(2855), + [anon_sym_long] = ACTIONS(2855), + [anon_sym_short] = ACTIONS(2855), + [anon_sym_LBRACK] = ACTIONS(2855), + [anon_sym_static] = ACTIONS(2855), + [anon_sym_register] = ACTIONS(2855), + [anon_sym_inline] = ACTIONS(2855), + [anon_sym___inline] = ACTIONS(2855), + [anon_sym___inline__] = ACTIONS(2855), + [anon_sym___forceinline] = ACTIONS(2855), + [anon_sym_thread_local] = ACTIONS(2855), + [anon_sym___thread] = ACTIONS(2855), + [anon_sym_const] = ACTIONS(2855), + [anon_sym_constexpr] = ACTIONS(2855), + [anon_sym_volatile] = ACTIONS(2855), + [anon_sym_restrict] = ACTIONS(2855), + [anon_sym___restrict__] = ACTIONS(2855), + [anon_sym__Atomic] = ACTIONS(2855), + [anon_sym__Noreturn] = ACTIONS(2855), + [anon_sym_noreturn] = ACTIONS(2855), + [anon_sym__Nonnull] = ACTIONS(2855), + [anon_sym_mutable] = ACTIONS(2855), + [anon_sym_constinit] = ACTIONS(2855), + [anon_sym_consteval] = ACTIONS(2855), + [anon_sym_alignas] = ACTIONS(2855), + [anon_sym__Alignas] = ACTIONS(2855), + [sym_primitive_type] = ACTIONS(2855), + [anon_sym_enum] = ACTIONS(2855), + [anon_sym_class] = ACTIONS(2855), + [anon_sym_struct] = ACTIONS(2855), + [anon_sym_union] = ACTIONS(2855), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5597), - [anon_sym_decltype] = ACTIONS(5597), - [anon_sym_explicit] = ACTIONS(5597), - [anon_sym_typename] = ACTIONS(5597), - [anon_sym_private] = ACTIONS(5597), - [anon_sym_template] = ACTIONS(5597), - [anon_sym_operator] = ACTIONS(5597), - [anon_sym_friend] = ACTIONS(5597), - [anon_sym_public] = ACTIONS(5597), - [anon_sym_protected] = ACTIONS(5597), - [anon_sym_static_assert] = ACTIONS(5597), - }, - [1964] = { - [sym_identifier] = ACTIONS(3104), - [aux_sym_preproc_def_token1] = ACTIONS(3104), - [aux_sym_preproc_if_token1] = ACTIONS(3104), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3104), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3104), - [sym_preproc_directive] = ACTIONS(3104), - [anon_sym_LPAREN2] = ACTIONS(3106), - [anon_sym_TILDE] = ACTIONS(3106), - [anon_sym_STAR] = ACTIONS(3106), - [anon_sym_AMP_AMP] = ACTIONS(3106), - [anon_sym_AMP] = ACTIONS(3104), - [anon_sym_SEMI] = ACTIONS(3106), - [anon_sym___extension__] = ACTIONS(3104), - [anon_sym_typedef] = ACTIONS(3104), - [anon_sym_virtual] = ACTIONS(3104), - [anon_sym_extern] = ACTIONS(3104), - [anon_sym___attribute__] = ACTIONS(3104), - [anon_sym___attribute] = ACTIONS(3104), - [anon_sym_using] = ACTIONS(3104), - [anon_sym_COLON_COLON] = ACTIONS(3106), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3106), - [anon_sym___declspec] = ACTIONS(3104), - [anon_sym___based] = ACTIONS(3104), - [anon_sym_RBRACE] = ACTIONS(3106), - [anon_sym_signed] = ACTIONS(3104), - [anon_sym_unsigned] = ACTIONS(3104), - [anon_sym_long] = ACTIONS(3104), - [anon_sym_short] = ACTIONS(3104), - [anon_sym_LBRACK] = ACTIONS(3104), - [anon_sym_static] = ACTIONS(3104), - [anon_sym_register] = ACTIONS(3104), - [anon_sym_inline] = ACTIONS(3104), - [anon_sym___inline] = ACTIONS(3104), - [anon_sym___inline__] = ACTIONS(3104), - [anon_sym___forceinline] = ACTIONS(3104), - [anon_sym_thread_local] = ACTIONS(3104), - [anon_sym___thread] = ACTIONS(3104), - [anon_sym_const] = ACTIONS(3104), - [anon_sym_constexpr] = ACTIONS(3104), - [anon_sym_volatile] = ACTIONS(3104), - [anon_sym_restrict] = ACTIONS(3104), - [anon_sym___restrict__] = ACTIONS(3104), - [anon_sym__Atomic] = ACTIONS(3104), - [anon_sym__Noreturn] = ACTIONS(3104), - [anon_sym_noreturn] = ACTIONS(3104), - [anon_sym__Nonnull] = ACTIONS(3104), - [anon_sym_mutable] = ACTIONS(3104), - [anon_sym_constinit] = ACTIONS(3104), - [anon_sym_consteval] = ACTIONS(3104), - [anon_sym_alignas] = ACTIONS(3104), - [anon_sym__Alignas] = ACTIONS(3104), - [sym_primitive_type] = ACTIONS(3104), - [anon_sym_enum] = ACTIONS(3104), - [anon_sym_class] = ACTIONS(3104), - [anon_sym_struct] = ACTIONS(3104), - [anon_sym_union] = ACTIONS(3104), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3104), - [anon_sym_decltype] = ACTIONS(3104), - [anon_sym_explicit] = ACTIONS(3104), - [anon_sym_typename] = ACTIONS(3104), - [anon_sym_private] = ACTIONS(3104), - [anon_sym_template] = ACTIONS(3104), - [anon_sym_operator] = ACTIONS(3104), - [anon_sym_friend] = ACTIONS(3104), - [anon_sym_public] = ACTIONS(3104), - [anon_sym_protected] = ACTIONS(3104), - [anon_sym_static_assert] = ACTIONS(3104), + [sym_auto] = ACTIONS(2855), + [anon_sym_decltype] = ACTIONS(2855), + [anon_sym_explicit] = ACTIONS(2855), + [anon_sym_typename] = ACTIONS(2855), + [anon_sym_private] = ACTIONS(2855), + [anon_sym_template] = ACTIONS(2855), + [anon_sym_operator] = ACTIONS(2855), + [anon_sym_friend] = ACTIONS(2855), + [anon_sym_public] = ACTIONS(2855), + [anon_sym_protected] = ACTIONS(2855), + [anon_sym_static_assert] = ACTIONS(2855), }, - [1965] = { - [sym_identifier] = ACTIONS(2767), - [aux_sym_preproc_def_token1] = ACTIONS(2767), - [aux_sym_preproc_if_token1] = ACTIONS(2767), - [aux_sym_preproc_if_token2] = ACTIONS(2767), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2767), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2767), - [sym_preproc_directive] = ACTIONS(2767), - [anon_sym_LPAREN2] = ACTIONS(2769), - [anon_sym_TILDE] = ACTIONS(2769), - [anon_sym_STAR] = ACTIONS(2769), - [anon_sym_AMP_AMP] = ACTIONS(2769), - [anon_sym_AMP] = ACTIONS(2767), - [anon_sym_SEMI] = ACTIONS(2769), - [anon_sym___extension__] = ACTIONS(2767), - [anon_sym_typedef] = ACTIONS(2767), - [anon_sym_virtual] = ACTIONS(2767), - [anon_sym_extern] = ACTIONS(2767), - [anon_sym___attribute__] = ACTIONS(2767), - [anon_sym___attribute] = ACTIONS(2767), - [anon_sym_using] = ACTIONS(2767), - [anon_sym_COLON_COLON] = ACTIONS(2769), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2769), - [anon_sym___declspec] = ACTIONS(2767), - [anon_sym___based] = ACTIONS(2767), - [anon_sym_signed] = ACTIONS(2767), - [anon_sym_unsigned] = ACTIONS(2767), - [anon_sym_long] = ACTIONS(2767), - [anon_sym_short] = ACTIONS(2767), - [anon_sym_LBRACK] = ACTIONS(2767), - [anon_sym_static] = ACTIONS(2767), - [anon_sym_register] = ACTIONS(2767), - [anon_sym_inline] = ACTIONS(2767), - [anon_sym___inline] = ACTIONS(2767), - [anon_sym___inline__] = ACTIONS(2767), - [anon_sym___forceinline] = ACTIONS(2767), - [anon_sym_thread_local] = ACTIONS(2767), - [anon_sym___thread] = ACTIONS(2767), - [anon_sym_const] = ACTIONS(2767), - [anon_sym_constexpr] = ACTIONS(2767), - [anon_sym_volatile] = ACTIONS(2767), - [anon_sym_restrict] = ACTIONS(2767), - [anon_sym___restrict__] = ACTIONS(2767), - [anon_sym__Atomic] = ACTIONS(2767), - [anon_sym__Noreturn] = ACTIONS(2767), - [anon_sym_noreturn] = ACTIONS(2767), - [anon_sym__Nonnull] = ACTIONS(2767), - [anon_sym_mutable] = ACTIONS(2767), - [anon_sym_constinit] = ACTIONS(2767), - [anon_sym_consteval] = ACTIONS(2767), - [anon_sym_alignas] = ACTIONS(2767), - [anon_sym__Alignas] = ACTIONS(2767), - [sym_primitive_type] = ACTIONS(2767), - [anon_sym_enum] = ACTIONS(2767), - [anon_sym_class] = ACTIONS(2767), - [anon_sym_struct] = ACTIONS(2767), - [anon_sym_union] = ACTIONS(2767), + [2033] = { + [sym_identifier] = ACTIONS(2895), + [aux_sym_preproc_def_token1] = ACTIONS(2895), + [aux_sym_preproc_if_token1] = ACTIONS(2895), + [aux_sym_preproc_if_token2] = ACTIONS(2895), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2895), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2895), + [sym_preproc_directive] = ACTIONS(2895), + [anon_sym_LPAREN2] = ACTIONS(2897), + [anon_sym_TILDE] = ACTIONS(2897), + [anon_sym_STAR] = ACTIONS(2897), + [anon_sym_AMP_AMP] = ACTIONS(2897), + [anon_sym_AMP] = ACTIONS(2895), + [anon_sym_SEMI] = ACTIONS(2897), + [anon_sym___extension__] = ACTIONS(2895), + [anon_sym_typedef] = ACTIONS(2895), + [anon_sym_virtual] = ACTIONS(2895), + [anon_sym_extern] = ACTIONS(2895), + [anon_sym___attribute__] = ACTIONS(2895), + [anon_sym___attribute] = ACTIONS(2895), + [anon_sym_using] = ACTIONS(2895), + [anon_sym_COLON_COLON] = ACTIONS(2897), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2897), + [anon_sym___declspec] = ACTIONS(2895), + [anon_sym___based] = ACTIONS(2895), + [anon_sym_signed] = ACTIONS(2895), + [anon_sym_unsigned] = ACTIONS(2895), + [anon_sym_long] = ACTIONS(2895), + [anon_sym_short] = ACTIONS(2895), + [anon_sym_LBRACK] = ACTIONS(2895), + [anon_sym_static] = ACTIONS(2895), + [anon_sym_register] = ACTIONS(2895), + [anon_sym_inline] = ACTIONS(2895), + [anon_sym___inline] = ACTIONS(2895), + [anon_sym___inline__] = ACTIONS(2895), + [anon_sym___forceinline] = ACTIONS(2895), + [anon_sym_thread_local] = ACTIONS(2895), + [anon_sym___thread] = ACTIONS(2895), + [anon_sym_const] = ACTIONS(2895), + [anon_sym_constexpr] = ACTIONS(2895), + [anon_sym_volatile] = ACTIONS(2895), + [anon_sym_restrict] = ACTIONS(2895), + [anon_sym___restrict__] = ACTIONS(2895), + [anon_sym__Atomic] = ACTIONS(2895), + [anon_sym__Noreturn] = ACTIONS(2895), + [anon_sym_noreturn] = ACTIONS(2895), + [anon_sym__Nonnull] = ACTIONS(2895), + [anon_sym_mutable] = ACTIONS(2895), + [anon_sym_constinit] = ACTIONS(2895), + [anon_sym_consteval] = ACTIONS(2895), + [anon_sym_alignas] = ACTIONS(2895), + [anon_sym__Alignas] = ACTIONS(2895), + [sym_primitive_type] = ACTIONS(2895), + [anon_sym_enum] = ACTIONS(2895), + [anon_sym_class] = ACTIONS(2895), + [anon_sym_struct] = ACTIONS(2895), + [anon_sym_union] = ACTIONS(2895), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2767), - [anon_sym_decltype] = ACTIONS(2767), - [anon_sym_explicit] = ACTIONS(2767), - [anon_sym_typename] = ACTIONS(2767), - [anon_sym_private] = ACTIONS(2767), - [anon_sym_template] = ACTIONS(2767), - [anon_sym_operator] = ACTIONS(2767), - [anon_sym_friend] = ACTIONS(2767), - [anon_sym_public] = ACTIONS(2767), - [anon_sym_protected] = ACTIONS(2767), - [anon_sym_static_assert] = ACTIONS(2767), + [sym_auto] = ACTIONS(2895), + [anon_sym_decltype] = ACTIONS(2895), + [anon_sym_explicit] = ACTIONS(2895), + [anon_sym_typename] = ACTIONS(2895), + [anon_sym_private] = ACTIONS(2895), + [anon_sym_template] = ACTIONS(2895), + [anon_sym_operator] = ACTIONS(2895), + [anon_sym_friend] = ACTIONS(2895), + [anon_sym_public] = ACTIONS(2895), + [anon_sym_protected] = ACTIONS(2895), + [anon_sym_static_assert] = ACTIONS(2895), }, - [1966] = { - [sym_identifier] = ACTIONS(2767), - [aux_sym_preproc_def_token1] = ACTIONS(2767), - [aux_sym_preproc_if_token1] = ACTIONS(2767), - [aux_sym_preproc_if_token2] = ACTIONS(2767), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2767), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2767), - [sym_preproc_directive] = ACTIONS(2767), - [anon_sym_LPAREN2] = ACTIONS(2769), - [anon_sym_TILDE] = ACTIONS(2769), - [anon_sym_STAR] = ACTIONS(2769), - [anon_sym_AMP_AMP] = ACTIONS(2769), - [anon_sym_AMP] = ACTIONS(2767), - [anon_sym_SEMI] = ACTIONS(2769), - [anon_sym___extension__] = ACTIONS(2767), - [anon_sym_typedef] = ACTIONS(2767), - [anon_sym_virtual] = ACTIONS(2767), - [anon_sym_extern] = ACTIONS(2767), - [anon_sym___attribute__] = ACTIONS(2767), - [anon_sym___attribute] = ACTIONS(2767), - [anon_sym_using] = ACTIONS(2767), - [anon_sym_COLON_COLON] = ACTIONS(2769), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2769), - [anon_sym___declspec] = ACTIONS(2767), - [anon_sym___based] = ACTIONS(2767), - [anon_sym_signed] = ACTIONS(2767), - [anon_sym_unsigned] = ACTIONS(2767), - [anon_sym_long] = ACTIONS(2767), - [anon_sym_short] = ACTIONS(2767), - [anon_sym_LBRACK] = ACTIONS(2767), - [anon_sym_static] = ACTIONS(2767), - [anon_sym_register] = ACTIONS(2767), - [anon_sym_inline] = ACTIONS(2767), - [anon_sym___inline] = ACTIONS(2767), - [anon_sym___inline__] = ACTIONS(2767), - [anon_sym___forceinline] = ACTIONS(2767), - [anon_sym_thread_local] = ACTIONS(2767), - [anon_sym___thread] = ACTIONS(2767), - [anon_sym_const] = ACTIONS(2767), - [anon_sym_constexpr] = ACTIONS(2767), - [anon_sym_volatile] = ACTIONS(2767), - [anon_sym_restrict] = ACTIONS(2767), - [anon_sym___restrict__] = ACTIONS(2767), - [anon_sym__Atomic] = ACTIONS(2767), - [anon_sym__Noreturn] = ACTIONS(2767), - [anon_sym_noreturn] = ACTIONS(2767), - [anon_sym__Nonnull] = ACTIONS(2767), - [anon_sym_mutable] = ACTIONS(2767), - [anon_sym_constinit] = ACTIONS(2767), - [anon_sym_consteval] = ACTIONS(2767), - [anon_sym_alignas] = ACTIONS(2767), - [anon_sym__Alignas] = ACTIONS(2767), - [sym_primitive_type] = ACTIONS(2767), - [anon_sym_enum] = ACTIONS(2767), - [anon_sym_class] = ACTIONS(2767), - [anon_sym_struct] = ACTIONS(2767), - [anon_sym_union] = ACTIONS(2767), + [2034] = { + [sym_identifier] = ACTIONS(2659), + [aux_sym_preproc_def_token1] = ACTIONS(2659), + [aux_sym_preproc_if_token1] = ACTIONS(2659), + [aux_sym_preproc_if_token2] = ACTIONS(2659), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2659), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2659), + [sym_preproc_directive] = ACTIONS(2659), + [anon_sym_LPAREN2] = ACTIONS(2661), + [anon_sym_TILDE] = ACTIONS(2661), + [anon_sym_STAR] = ACTIONS(2661), + [anon_sym_AMP_AMP] = ACTIONS(2661), + [anon_sym_AMP] = ACTIONS(2659), + [anon_sym_SEMI] = ACTIONS(2661), + [anon_sym___extension__] = ACTIONS(2659), + [anon_sym_typedef] = ACTIONS(2659), + [anon_sym_virtual] = ACTIONS(2659), + [anon_sym_extern] = ACTIONS(2659), + [anon_sym___attribute__] = ACTIONS(2659), + [anon_sym___attribute] = ACTIONS(2659), + [anon_sym_using] = ACTIONS(2659), + [anon_sym_COLON_COLON] = ACTIONS(2661), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2661), + [anon_sym___declspec] = ACTIONS(2659), + [anon_sym___based] = ACTIONS(2659), + [anon_sym_signed] = ACTIONS(2659), + [anon_sym_unsigned] = ACTIONS(2659), + [anon_sym_long] = ACTIONS(2659), + [anon_sym_short] = ACTIONS(2659), + [anon_sym_LBRACK] = ACTIONS(2659), + [anon_sym_static] = ACTIONS(2659), + [anon_sym_register] = ACTIONS(2659), + [anon_sym_inline] = ACTIONS(2659), + [anon_sym___inline] = ACTIONS(2659), + [anon_sym___inline__] = ACTIONS(2659), + [anon_sym___forceinline] = ACTIONS(2659), + [anon_sym_thread_local] = ACTIONS(2659), + [anon_sym___thread] = ACTIONS(2659), + [anon_sym_const] = ACTIONS(2659), + [anon_sym_constexpr] = ACTIONS(2659), + [anon_sym_volatile] = ACTIONS(2659), + [anon_sym_restrict] = ACTIONS(2659), + [anon_sym___restrict__] = ACTIONS(2659), + [anon_sym__Atomic] = ACTIONS(2659), + [anon_sym__Noreturn] = ACTIONS(2659), + [anon_sym_noreturn] = ACTIONS(2659), + [anon_sym__Nonnull] = ACTIONS(2659), + [anon_sym_mutable] = ACTIONS(2659), + [anon_sym_constinit] = ACTIONS(2659), + [anon_sym_consteval] = ACTIONS(2659), + [anon_sym_alignas] = ACTIONS(2659), + [anon_sym__Alignas] = ACTIONS(2659), + [sym_primitive_type] = ACTIONS(2659), + [anon_sym_enum] = ACTIONS(2659), + [anon_sym_class] = ACTIONS(2659), + [anon_sym_struct] = ACTIONS(2659), + [anon_sym_union] = ACTIONS(2659), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2767), - [anon_sym_decltype] = ACTIONS(2767), - [anon_sym_explicit] = ACTIONS(2767), - [anon_sym_typename] = ACTIONS(2767), - [anon_sym_private] = ACTIONS(2767), - [anon_sym_template] = ACTIONS(2767), - [anon_sym_operator] = ACTIONS(2767), - [anon_sym_friend] = ACTIONS(2767), - [anon_sym_public] = ACTIONS(2767), - [anon_sym_protected] = ACTIONS(2767), - [anon_sym_static_assert] = ACTIONS(2767), + [sym_auto] = ACTIONS(2659), + [anon_sym_decltype] = ACTIONS(2659), + [anon_sym_explicit] = ACTIONS(2659), + [anon_sym_typename] = ACTIONS(2659), + [anon_sym_private] = ACTIONS(2659), + [anon_sym_template] = ACTIONS(2659), + [anon_sym_operator] = ACTIONS(2659), + [anon_sym_friend] = ACTIONS(2659), + [anon_sym_public] = ACTIONS(2659), + [anon_sym_protected] = ACTIONS(2659), + [anon_sym_static_assert] = ACTIONS(2659), }, - [1967] = { - [sym_identifier] = ACTIONS(5549), - [aux_sym_preproc_def_token1] = ACTIONS(5549), - [aux_sym_preproc_if_token1] = ACTIONS(5549), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5549), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5549), - [sym_preproc_directive] = ACTIONS(5549), - [anon_sym_LPAREN2] = ACTIONS(5551), - [anon_sym_TILDE] = ACTIONS(5551), - [anon_sym_STAR] = ACTIONS(5551), - [anon_sym_AMP_AMP] = ACTIONS(5551), - [anon_sym_AMP] = ACTIONS(5549), - [anon_sym_SEMI] = ACTIONS(5551), - [anon_sym___extension__] = ACTIONS(5549), - [anon_sym_typedef] = ACTIONS(5549), - [anon_sym_virtual] = ACTIONS(5549), - [anon_sym_extern] = ACTIONS(5549), - [anon_sym___attribute__] = ACTIONS(5549), - [anon_sym___attribute] = ACTIONS(5549), - [anon_sym_using] = ACTIONS(5549), - [anon_sym_COLON_COLON] = ACTIONS(5551), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5551), - [anon_sym___declspec] = ACTIONS(5549), - [anon_sym___based] = ACTIONS(5549), - [anon_sym_RBRACE] = ACTIONS(5551), - [anon_sym_signed] = ACTIONS(5549), - [anon_sym_unsigned] = ACTIONS(5549), - [anon_sym_long] = ACTIONS(5549), - [anon_sym_short] = ACTIONS(5549), - [anon_sym_LBRACK] = ACTIONS(5549), - [anon_sym_static] = ACTIONS(5549), - [anon_sym_register] = ACTIONS(5549), - [anon_sym_inline] = ACTIONS(5549), - [anon_sym___inline] = ACTIONS(5549), - [anon_sym___inline__] = ACTIONS(5549), - [anon_sym___forceinline] = ACTIONS(5549), - [anon_sym_thread_local] = ACTIONS(5549), - [anon_sym___thread] = ACTIONS(5549), - [anon_sym_const] = ACTIONS(5549), - [anon_sym_constexpr] = ACTIONS(5549), - [anon_sym_volatile] = ACTIONS(5549), - [anon_sym_restrict] = ACTIONS(5549), - [anon_sym___restrict__] = ACTIONS(5549), - [anon_sym__Atomic] = ACTIONS(5549), - [anon_sym__Noreturn] = ACTIONS(5549), - [anon_sym_noreturn] = ACTIONS(5549), - [anon_sym__Nonnull] = ACTIONS(5549), - [anon_sym_mutable] = ACTIONS(5549), - [anon_sym_constinit] = ACTIONS(5549), - [anon_sym_consteval] = ACTIONS(5549), - [anon_sym_alignas] = ACTIONS(5549), - [anon_sym__Alignas] = ACTIONS(5549), - [sym_primitive_type] = ACTIONS(5549), - [anon_sym_enum] = ACTIONS(5549), - [anon_sym_class] = ACTIONS(5549), - [anon_sym_struct] = ACTIONS(5549), - [anon_sym_union] = ACTIONS(5549), + [2035] = { + [sym_identifier] = ACTIONS(2627), + [aux_sym_preproc_def_token1] = ACTIONS(2627), + [aux_sym_preproc_if_token1] = ACTIONS(2627), + [aux_sym_preproc_if_token2] = ACTIONS(2627), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2627), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2627), + [sym_preproc_directive] = ACTIONS(2627), + [anon_sym_LPAREN2] = ACTIONS(2629), + [anon_sym_TILDE] = ACTIONS(2629), + [anon_sym_STAR] = ACTIONS(2629), + [anon_sym_AMP_AMP] = ACTIONS(2629), + [anon_sym_AMP] = ACTIONS(2627), + [anon_sym_SEMI] = ACTIONS(2629), + [anon_sym___extension__] = ACTIONS(2627), + [anon_sym_typedef] = ACTIONS(2627), + [anon_sym_virtual] = ACTIONS(2627), + [anon_sym_extern] = ACTIONS(2627), + [anon_sym___attribute__] = ACTIONS(2627), + [anon_sym___attribute] = ACTIONS(2627), + [anon_sym_using] = ACTIONS(2627), + [anon_sym_COLON_COLON] = ACTIONS(2629), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2629), + [anon_sym___declspec] = ACTIONS(2627), + [anon_sym___based] = ACTIONS(2627), + [anon_sym_signed] = ACTIONS(2627), + [anon_sym_unsigned] = ACTIONS(2627), + [anon_sym_long] = ACTIONS(2627), + [anon_sym_short] = ACTIONS(2627), + [anon_sym_LBRACK] = ACTIONS(2627), + [anon_sym_static] = ACTIONS(2627), + [anon_sym_register] = ACTIONS(2627), + [anon_sym_inline] = ACTIONS(2627), + [anon_sym___inline] = ACTIONS(2627), + [anon_sym___inline__] = ACTIONS(2627), + [anon_sym___forceinline] = ACTIONS(2627), + [anon_sym_thread_local] = ACTIONS(2627), + [anon_sym___thread] = ACTIONS(2627), + [anon_sym_const] = ACTIONS(2627), + [anon_sym_constexpr] = ACTIONS(2627), + [anon_sym_volatile] = ACTIONS(2627), + [anon_sym_restrict] = ACTIONS(2627), + [anon_sym___restrict__] = ACTIONS(2627), + [anon_sym__Atomic] = ACTIONS(2627), + [anon_sym__Noreturn] = ACTIONS(2627), + [anon_sym_noreturn] = ACTIONS(2627), + [anon_sym__Nonnull] = ACTIONS(2627), + [anon_sym_mutable] = ACTIONS(2627), + [anon_sym_constinit] = ACTIONS(2627), + [anon_sym_consteval] = ACTIONS(2627), + [anon_sym_alignas] = ACTIONS(2627), + [anon_sym__Alignas] = ACTIONS(2627), + [sym_primitive_type] = ACTIONS(2627), + [anon_sym_enum] = ACTIONS(2627), + [anon_sym_class] = ACTIONS(2627), + [anon_sym_struct] = ACTIONS(2627), + [anon_sym_union] = ACTIONS(2627), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5549), - [anon_sym_decltype] = ACTIONS(5549), - [anon_sym_explicit] = ACTIONS(5549), - [anon_sym_typename] = ACTIONS(5549), - [anon_sym_private] = ACTIONS(5549), - [anon_sym_template] = ACTIONS(5549), - [anon_sym_operator] = ACTIONS(5549), - [anon_sym_friend] = ACTIONS(5549), - [anon_sym_public] = ACTIONS(5549), - [anon_sym_protected] = ACTIONS(5549), - [anon_sym_static_assert] = ACTIONS(5549), + [sym_auto] = ACTIONS(2627), + [anon_sym_decltype] = ACTIONS(2627), + [anon_sym_explicit] = ACTIONS(2627), + [anon_sym_typename] = ACTIONS(2627), + [anon_sym_private] = ACTIONS(2627), + [anon_sym_template] = ACTIONS(2627), + [anon_sym_operator] = ACTIONS(2627), + [anon_sym_friend] = ACTIONS(2627), + [anon_sym_public] = ACTIONS(2627), + [anon_sym_protected] = ACTIONS(2627), + [anon_sym_static_assert] = ACTIONS(2627), }, - [1968] = { - [sym_identifier] = ACTIONS(2903), - [aux_sym_preproc_def_token1] = ACTIONS(2903), - [aux_sym_preproc_if_token1] = ACTIONS(2903), - [aux_sym_preproc_if_token2] = ACTIONS(2903), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2903), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2903), - [sym_preproc_directive] = ACTIONS(2903), - [anon_sym_LPAREN2] = ACTIONS(2905), - [anon_sym_TILDE] = ACTIONS(2905), - [anon_sym_STAR] = ACTIONS(2905), - [anon_sym_AMP_AMP] = ACTIONS(2905), - [anon_sym_AMP] = ACTIONS(2903), - [anon_sym_SEMI] = ACTIONS(2905), - [anon_sym___extension__] = ACTIONS(2903), - [anon_sym_typedef] = ACTIONS(2903), - [anon_sym_virtual] = ACTIONS(2903), - [anon_sym_extern] = ACTIONS(2903), - [anon_sym___attribute__] = ACTIONS(2903), - [anon_sym___attribute] = ACTIONS(2903), - [anon_sym_using] = ACTIONS(2903), - [anon_sym_COLON_COLON] = ACTIONS(2905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2905), - [anon_sym___declspec] = ACTIONS(2903), - [anon_sym___based] = ACTIONS(2903), - [anon_sym_signed] = ACTIONS(2903), - [anon_sym_unsigned] = ACTIONS(2903), - [anon_sym_long] = ACTIONS(2903), - [anon_sym_short] = ACTIONS(2903), - [anon_sym_LBRACK] = ACTIONS(2903), - [anon_sym_static] = ACTIONS(2903), - [anon_sym_register] = ACTIONS(2903), - [anon_sym_inline] = ACTIONS(2903), - [anon_sym___inline] = ACTIONS(2903), - [anon_sym___inline__] = ACTIONS(2903), - [anon_sym___forceinline] = ACTIONS(2903), - [anon_sym_thread_local] = ACTIONS(2903), - [anon_sym___thread] = ACTIONS(2903), - [anon_sym_const] = ACTIONS(2903), - [anon_sym_constexpr] = ACTIONS(2903), - [anon_sym_volatile] = ACTIONS(2903), - [anon_sym_restrict] = ACTIONS(2903), - [anon_sym___restrict__] = ACTIONS(2903), - [anon_sym__Atomic] = ACTIONS(2903), - [anon_sym__Noreturn] = ACTIONS(2903), - [anon_sym_noreturn] = ACTIONS(2903), - [anon_sym__Nonnull] = ACTIONS(2903), - [anon_sym_mutable] = ACTIONS(2903), - [anon_sym_constinit] = ACTIONS(2903), - [anon_sym_consteval] = ACTIONS(2903), - [anon_sym_alignas] = ACTIONS(2903), - [anon_sym__Alignas] = ACTIONS(2903), - [sym_primitive_type] = ACTIONS(2903), - [anon_sym_enum] = ACTIONS(2903), - [anon_sym_class] = ACTIONS(2903), - [anon_sym_struct] = ACTIONS(2903), - [anon_sym_union] = ACTIONS(2903), + [2036] = { + [sym__declaration_modifiers] = STATE(3258), + [sym_attribute_specifier] = STATE(3258), + [sym_attribute_declaration] = STATE(3258), + [sym_ms_declspec_modifier] = STATE(3258), + [sym_storage_class_specifier] = STATE(3258), + [sym_type_qualifier] = STATE(3258), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2424), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym_dependent_type] = STATE(2558), + [sym_template_type] = STATE(2439), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(6715), + [sym_qualified_type_identifier] = STATE(3138), + [aux_sym__declaration_specifiers_repeat1] = STATE(3258), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(5226), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(6039), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(5228), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(69), + [anon_sym__Alignas] = ACTIONS(69), + [sym_primitive_type] = ACTIONS(3019), + [anon_sym_enum] = ACTIONS(3021), + [anon_sym_class] = ACTIONS(3023), + [anon_sym_struct] = ACTIONS(3025), + [anon_sym_union] = ACTIONS(3027), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2903), - [anon_sym_decltype] = ACTIONS(2903), - [anon_sym_explicit] = ACTIONS(2903), - [anon_sym_typename] = ACTIONS(2903), - [anon_sym_private] = ACTIONS(2903), - [anon_sym_template] = ACTIONS(2903), - [anon_sym_operator] = ACTIONS(2903), - [anon_sym_friend] = ACTIONS(2903), - [anon_sym_public] = ACTIONS(2903), - [anon_sym_protected] = ACTIONS(2903), - [anon_sym_static_assert] = ACTIONS(2903), + [sym_auto] = ACTIONS(125), + [anon_sym_decltype] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(3029), + [anon_sym_template] = ACTIONS(1268), }, - [1969] = { - [sym_identifier] = ACTIONS(5549), - [aux_sym_preproc_def_token1] = ACTIONS(5549), - [aux_sym_preproc_if_token1] = ACTIONS(5549), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5549), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5549), - [sym_preproc_directive] = ACTIONS(5549), - [anon_sym_LPAREN2] = ACTIONS(5551), - [anon_sym_TILDE] = ACTIONS(5551), - [anon_sym_STAR] = ACTIONS(5551), - [anon_sym_AMP_AMP] = ACTIONS(5551), - [anon_sym_AMP] = ACTIONS(5549), - [anon_sym_SEMI] = ACTIONS(5551), - [anon_sym___extension__] = ACTIONS(5549), - [anon_sym_typedef] = ACTIONS(5549), - [anon_sym_virtual] = ACTIONS(5549), - [anon_sym_extern] = ACTIONS(5549), - [anon_sym___attribute__] = ACTIONS(5549), - [anon_sym___attribute] = ACTIONS(5549), - [anon_sym_using] = ACTIONS(5549), - [anon_sym_COLON_COLON] = ACTIONS(5551), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5551), - [anon_sym___declspec] = ACTIONS(5549), - [anon_sym___based] = ACTIONS(5549), - [anon_sym_RBRACE] = ACTIONS(5551), - [anon_sym_signed] = ACTIONS(5549), - [anon_sym_unsigned] = ACTIONS(5549), - [anon_sym_long] = ACTIONS(5549), - [anon_sym_short] = ACTIONS(5549), - [anon_sym_LBRACK] = ACTIONS(5549), - [anon_sym_static] = ACTIONS(5549), - [anon_sym_register] = ACTIONS(5549), - [anon_sym_inline] = ACTIONS(5549), - [anon_sym___inline] = ACTIONS(5549), - [anon_sym___inline__] = ACTIONS(5549), - [anon_sym___forceinline] = ACTIONS(5549), - [anon_sym_thread_local] = ACTIONS(5549), - [anon_sym___thread] = ACTIONS(5549), - [anon_sym_const] = ACTIONS(5549), - [anon_sym_constexpr] = ACTIONS(5549), - [anon_sym_volatile] = ACTIONS(5549), - [anon_sym_restrict] = ACTIONS(5549), - [anon_sym___restrict__] = ACTIONS(5549), - [anon_sym__Atomic] = ACTIONS(5549), - [anon_sym__Noreturn] = ACTIONS(5549), - [anon_sym_noreturn] = ACTIONS(5549), - [anon_sym__Nonnull] = ACTIONS(5549), - [anon_sym_mutable] = ACTIONS(5549), - [anon_sym_constinit] = ACTIONS(5549), - [anon_sym_consteval] = ACTIONS(5549), - [anon_sym_alignas] = ACTIONS(5549), - [anon_sym__Alignas] = ACTIONS(5549), - [sym_primitive_type] = ACTIONS(5549), - [anon_sym_enum] = ACTIONS(5549), - [anon_sym_class] = ACTIONS(5549), - [anon_sym_struct] = ACTIONS(5549), - [anon_sym_union] = ACTIONS(5549), + [2037] = { + [sym_identifier] = ACTIONS(5454), + [aux_sym_preproc_def_token1] = ACTIONS(5454), + [aux_sym_preproc_if_token1] = ACTIONS(5454), + [aux_sym_preproc_if_token2] = ACTIONS(5454), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5454), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5454), + [sym_preproc_directive] = ACTIONS(5454), + [anon_sym_LPAREN2] = ACTIONS(5456), + [anon_sym_TILDE] = ACTIONS(5456), + [anon_sym_STAR] = ACTIONS(5456), + [anon_sym_AMP_AMP] = ACTIONS(5456), + [anon_sym_AMP] = ACTIONS(5454), + [anon_sym_SEMI] = ACTIONS(5456), + [anon_sym___extension__] = ACTIONS(5454), + [anon_sym_typedef] = ACTIONS(5454), + [anon_sym_virtual] = ACTIONS(5454), + [anon_sym_extern] = ACTIONS(5454), + [anon_sym___attribute__] = ACTIONS(5454), + [anon_sym___attribute] = ACTIONS(5454), + [anon_sym_using] = ACTIONS(5454), + [anon_sym_COLON_COLON] = ACTIONS(5456), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5456), + [anon_sym___declspec] = ACTIONS(5454), + [anon_sym___based] = ACTIONS(5454), + [anon_sym_signed] = ACTIONS(5454), + [anon_sym_unsigned] = ACTIONS(5454), + [anon_sym_long] = ACTIONS(5454), + [anon_sym_short] = ACTIONS(5454), + [anon_sym_LBRACK] = ACTIONS(5454), + [anon_sym_static] = ACTIONS(5454), + [anon_sym_register] = ACTIONS(5454), + [anon_sym_inline] = ACTIONS(5454), + [anon_sym___inline] = ACTIONS(5454), + [anon_sym___inline__] = ACTIONS(5454), + [anon_sym___forceinline] = ACTIONS(5454), + [anon_sym_thread_local] = ACTIONS(5454), + [anon_sym___thread] = ACTIONS(5454), + [anon_sym_const] = ACTIONS(5454), + [anon_sym_constexpr] = ACTIONS(5454), + [anon_sym_volatile] = ACTIONS(5454), + [anon_sym_restrict] = ACTIONS(5454), + [anon_sym___restrict__] = ACTIONS(5454), + [anon_sym__Atomic] = ACTIONS(5454), + [anon_sym__Noreturn] = ACTIONS(5454), + [anon_sym_noreturn] = ACTIONS(5454), + [anon_sym__Nonnull] = ACTIONS(5454), + [anon_sym_mutable] = ACTIONS(5454), + [anon_sym_constinit] = ACTIONS(5454), + [anon_sym_consteval] = ACTIONS(5454), + [anon_sym_alignas] = ACTIONS(5454), + [anon_sym__Alignas] = ACTIONS(5454), + [sym_primitive_type] = ACTIONS(5454), + [anon_sym_enum] = ACTIONS(5454), + [anon_sym_class] = ACTIONS(5454), + [anon_sym_struct] = ACTIONS(5454), + [anon_sym_union] = ACTIONS(5454), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5454), + [anon_sym_decltype] = ACTIONS(5454), + [anon_sym_explicit] = ACTIONS(5454), + [anon_sym_typename] = ACTIONS(5454), + [anon_sym_private] = ACTIONS(5454), + [anon_sym_template] = ACTIONS(5454), + [anon_sym_operator] = ACTIONS(5454), + [anon_sym_friend] = ACTIONS(5454), + [anon_sym_public] = ACTIONS(5454), + [anon_sym_protected] = ACTIONS(5454), + [anon_sym_static_assert] = ACTIONS(5454), + }, + [2038] = { + [sym_identifier] = ACTIONS(2627), + [aux_sym_preproc_def_token1] = ACTIONS(2627), + [aux_sym_preproc_if_token1] = ACTIONS(2627), + [aux_sym_preproc_if_token2] = ACTIONS(2627), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2627), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2627), + [sym_preproc_directive] = ACTIONS(2627), + [anon_sym_LPAREN2] = ACTIONS(2629), + [anon_sym_TILDE] = ACTIONS(2629), + [anon_sym_STAR] = ACTIONS(2629), + [anon_sym_AMP_AMP] = ACTIONS(2629), + [anon_sym_AMP] = ACTIONS(2627), + [anon_sym_SEMI] = ACTIONS(2629), + [anon_sym___extension__] = ACTIONS(2627), + [anon_sym_typedef] = ACTIONS(2627), + [anon_sym_virtual] = ACTIONS(2627), + [anon_sym_extern] = ACTIONS(2627), + [anon_sym___attribute__] = ACTIONS(2627), + [anon_sym___attribute] = ACTIONS(2627), + [anon_sym_using] = ACTIONS(2627), + [anon_sym_COLON_COLON] = ACTIONS(2629), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2629), + [anon_sym___declspec] = ACTIONS(2627), + [anon_sym___based] = ACTIONS(2627), + [anon_sym_signed] = ACTIONS(2627), + [anon_sym_unsigned] = ACTIONS(2627), + [anon_sym_long] = ACTIONS(2627), + [anon_sym_short] = ACTIONS(2627), + [anon_sym_LBRACK] = ACTIONS(2627), + [anon_sym_static] = ACTIONS(2627), + [anon_sym_register] = ACTIONS(2627), + [anon_sym_inline] = ACTIONS(2627), + [anon_sym___inline] = ACTIONS(2627), + [anon_sym___inline__] = ACTIONS(2627), + [anon_sym___forceinline] = ACTIONS(2627), + [anon_sym_thread_local] = ACTIONS(2627), + [anon_sym___thread] = ACTIONS(2627), + [anon_sym_const] = ACTIONS(2627), + [anon_sym_constexpr] = ACTIONS(2627), + [anon_sym_volatile] = ACTIONS(2627), + [anon_sym_restrict] = ACTIONS(2627), + [anon_sym___restrict__] = ACTIONS(2627), + [anon_sym__Atomic] = ACTIONS(2627), + [anon_sym__Noreturn] = ACTIONS(2627), + [anon_sym_noreturn] = ACTIONS(2627), + [anon_sym__Nonnull] = ACTIONS(2627), + [anon_sym_mutable] = ACTIONS(2627), + [anon_sym_constinit] = ACTIONS(2627), + [anon_sym_consteval] = ACTIONS(2627), + [anon_sym_alignas] = ACTIONS(2627), + [anon_sym__Alignas] = ACTIONS(2627), + [sym_primitive_type] = ACTIONS(2627), + [anon_sym_enum] = ACTIONS(2627), + [anon_sym_class] = ACTIONS(2627), + [anon_sym_struct] = ACTIONS(2627), + [anon_sym_union] = ACTIONS(2627), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5549), - [anon_sym_decltype] = ACTIONS(5549), - [anon_sym_explicit] = ACTIONS(5549), - [anon_sym_typename] = ACTIONS(5549), - [anon_sym_private] = ACTIONS(5549), - [anon_sym_template] = ACTIONS(5549), - [anon_sym_operator] = ACTIONS(5549), - [anon_sym_friend] = ACTIONS(5549), - [anon_sym_public] = ACTIONS(5549), - [anon_sym_protected] = ACTIONS(5549), - [anon_sym_static_assert] = ACTIONS(5549), + [sym_auto] = ACTIONS(2627), + [anon_sym_decltype] = ACTIONS(2627), + [anon_sym_explicit] = ACTIONS(2627), + [anon_sym_typename] = ACTIONS(2627), + [anon_sym_private] = ACTIONS(2627), + [anon_sym_template] = ACTIONS(2627), + [anon_sym_operator] = ACTIONS(2627), + [anon_sym_friend] = ACTIONS(2627), + [anon_sym_public] = ACTIONS(2627), + [anon_sym_protected] = ACTIONS(2627), + [anon_sym_static_assert] = ACTIONS(2627), }, - [1970] = { - [sym_identifier] = ACTIONS(5505), - [aux_sym_preproc_def_token1] = ACTIONS(5505), - [aux_sym_preproc_if_token1] = ACTIONS(5505), - [aux_sym_preproc_if_token2] = ACTIONS(5505), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5505), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5505), - [sym_preproc_directive] = ACTIONS(5505), - [anon_sym_LPAREN2] = ACTIONS(5507), - [anon_sym_TILDE] = ACTIONS(5507), - [anon_sym_STAR] = ACTIONS(5507), - [anon_sym_AMP_AMP] = ACTIONS(5507), - [anon_sym_AMP] = ACTIONS(5505), - [anon_sym_SEMI] = ACTIONS(5507), - [anon_sym___extension__] = ACTIONS(5505), - [anon_sym_typedef] = ACTIONS(5505), - [anon_sym_virtual] = ACTIONS(5505), - [anon_sym_extern] = ACTIONS(5505), - [anon_sym___attribute__] = ACTIONS(5505), - [anon_sym___attribute] = ACTIONS(5505), - [anon_sym_using] = ACTIONS(5505), - [anon_sym_COLON_COLON] = ACTIONS(5507), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5507), - [anon_sym___declspec] = ACTIONS(5505), - [anon_sym___based] = ACTIONS(5505), - [anon_sym_signed] = ACTIONS(5505), - [anon_sym_unsigned] = ACTIONS(5505), - [anon_sym_long] = ACTIONS(5505), - [anon_sym_short] = ACTIONS(5505), - [anon_sym_LBRACK] = ACTIONS(5505), - [anon_sym_static] = ACTIONS(5505), - [anon_sym_register] = ACTIONS(5505), - [anon_sym_inline] = ACTIONS(5505), - [anon_sym___inline] = ACTIONS(5505), - [anon_sym___inline__] = ACTIONS(5505), - [anon_sym___forceinline] = ACTIONS(5505), - [anon_sym_thread_local] = ACTIONS(5505), - [anon_sym___thread] = ACTIONS(5505), - [anon_sym_const] = ACTIONS(5505), - [anon_sym_constexpr] = ACTIONS(5505), - [anon_sym_volatile] = ACTIONS(5505), - [anon_sym_restrict] = ACTIONS(5505), - [anon_sym___restrict__] = ACTIONS(5505), - [anon_sym__Atomic] = ACTIONS(5505), - [anon_sym__Noreturn] = ACTIONS(5505), - [anon_sym_noreturn] = ACTIONS(5505), - [anon_sym__Nonnull] = ACTIONS(5505), - [anon_sym_mutable] = ACTIONS(5505), - [anon_sym_constinit] = ACTIONS(5505), - [anon_sym_consteval] = ACTIONS(5505), - [anon_sym_alignas] = ACTIONS(5505), - [anon_sym__Alignas] = ACTIONS(5505), - [sym_primitive_type] = ACTIONS(5505), - [anon_sym_enum] = ACTIONS(5505), - [anon_sym_class] = ACTIONS(5505), - [anon_sym_struct] = ACTIONS(5505), - [anon_sym_union] = ACTIONS(5505), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5505), - [anon_sym_decltype] = ACTIONS(5505), - [anon_sym_explicit] = ACTIONS(5505), - [anon_sym_typename] = ACTIONS(5505), - [anon_sym_private] = ACTIONS(5505), - [anon_sym_template] = ACTIONS(5505), - [anon_sym_operator] = ACTIONS(5505), - [anon_sym_friend] = ACTIONS(5505), - [anon_sym_public] = ACTIONS(5505), - [anon_sym_protected] = ACTIONS(5505), - [anon_sym_static_assert] = ACTIONS(5505), + [2039] = { + [sym_identifier] = ACTIONS(5462), + [aux_sym_preproc_def_token1] = ACTIONS(5462), + [aux_sym_preproc_if_token1] = ACTIONS(5462), + [aux_sym_preproc_if_token2] = ACTIONS(5462), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5462), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5462), + [sym_preproc_directive] = ACTIONS(5462), + [anon_sym_LPAREN2] = ACTIONS(5464), + [anon_sym_TILDE] = ACTIONS(5464), + [anon_sym_STAR] = ACTIONS(5464), + [anon_sym_AMP_AMP] = ACTIONS(5464), + [anon_sym_AMP] = ACTIONS(5462), + [anon_sym_SEMI] = ACTIONS(5464), + [anon_sym___extension__] = ACTIONS(5462), + [anon_sym_typedef] = ACTIONS(5462), + [anon_sym_virtual] = ACTIONS(5462), + [anon_sym_extern] = ACTIONS(5462), + [anon_sym___attribute__] = ACTIONS(5462), + [anon_sym___attribute] = ACTIONS(5462), + [anon_sym_using] = ACTIONS(5462), + [anon_sym_COLON_COLON] = ACTIONS(5464), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5464), + [anon_sym___declspec] = ACTIONS(5462), + [anon_sym___based] = ACTIONS(5462), + [anon_sym_signed] = ACTIONS(5462), + [anon_sym_unsigned] = ACTIONS(5462), + [anon_sym_long] = ACTIONS(5462), + [anon_sym_short] = ACTIONS(5462), + [anon_sym_LBRACK] = ACTIONS(5462), + [anon_sym_static] = ACTIONS(5462), + [anon_sym_register] = ACTIONS(5462), + [anon_sym_inline] = ACTIONS(5462), + [anon_sym___inline] = ACTIONS(5462), + [anon_sym___inline__] = ACTIONS(5462), + [anon_sym___forceinline] = ACTIONS(5462), + [anon_sym_thread_local] = ACTIONS(5462), + [anon_sym___thread] = ACTIONS(5462), + [anon_sym_const] = ACTIONS(5462), + [anon_sym_constexpr] = ACTIONS(5462), + [anon_sym_volatile] = ACTIONS(5462), + [anon_sym_restrict] = ACTIONS(5462), + [anon_sym___restrict__] = ACTIONS(5462), + [anon_sym__Atomic] = ACTIONS(5462), + [anon_sym__Noreturn] = ACTIONS(5462), + [anon_sym_noreturn] = ACTIONS(5462), + [anon_sym__Nonnull] = ACTIONS(5462), + [anon_sym_mutable] = ACTIONS(5462), + [anon_sym_constinit] = ACTIONS(5462), + [anon_sym_consteval] = ACTIONS(5462), + [anon_sym_alignas] = ACTIONS(5462), + [anon_sym__Alignas] = ACTIONS(5462), + [sym_primitive_type] = ACTIONS(5462), + [anon_sym_enum] = ACTIONS(5462), + [anon_sym_class] = ACTIONS(5462), + [anon_sym_struct] = ACTIONS(5462), + [anon_sym_union] = ACTIONS(5462), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5462), + [anon_sym_decltype] = ACTIONS(5462), + [anon_sym_explicit] = ACTIONS(5462), + [anon_sym_typename] = ACTIONS(5462), + [anon_sym_private] = ACTIONS(5462), + [anon_sym_template] = ACTIONS(5462), + [anon_sym_operator] = ACTIONS(5462), + [anon_sym_friend] = ACTIONS(5462), + [anon_sym_public] = ACTIONS(5462), + [anon_sym_protected] = ACTIONS(5462), + [anon_sym_static_assert] = ACTIONS(5462), }, - [1971] = { - [sym_identifier] = ACTIONS(5509), - [aux_sym_preproc_def_token1] = ACTIONS(5509), - [aux_sym_preproc_if_token1] = ACTIONS(5509), - [aux_sym_preproc_if_token2] = ACTIONS(5509), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5509), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5509), - [sym_preproc_directive] = ACTIONS(5509), - [anon_sym_LPAREN2] = ACTIONS(5511), - [anon_sym_TILDE] = ACTIONS(5511), - [anon_sym_STAR] = ACTIONS(5511), - [anon_sym_AMP_AMP] = ACTIONS(5511), - [anon_sym_AMP] = ACTIONS(5509), - [anon_sym_SEMI] = ACTIONS(5511), - [anon_sym___extension__] = ACTIONS(5509), - [anon_sym_typedef] = ACTIONS(5509), - [anon_sym_virtual] = ACTIONS(5509), - [anon_sym_extern] = ACTIONS(5509), - [anon_sym___attribute__] = ACTIONS(5509), - [anon_sym___attribute] = ACTIONS(5509), - [anon_sym_using] = ACTIONS(5509), - [anon_sym_COLON_COLON] = ACTIONS(5511), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5511), - [anon_sym___declspec] = ACTIONS(5509), - [anon_sym___based] = ACTIONS(5509), - [anon_sym_signed] = ACTIONS(5509), - [anon_sym_unsigned] = ACTIONS(5509), - [anon_sym_long] = ACTIONS(5509), - [anon_sym_short] = ACTIONS(5509), - [anon_sym_LBRACK] = ACTIONS(5509), - [anon_sym_static] = ACTIONS(5509), - [anon_sym_register] = ACTIONS(5509), - [anon_sym_inline] = ACTIONS(5509), - [anon_sym___inline] = ACTIONS(5509), - [anon_sym___inline__] = ACTIONS(5509), - [anon_sym___forceinline] = ACTIONS(5509), - [anon_sym_thread_local] = ACTIONS(5509), - [anon_sym___thread] = ACTIONS(5509), - [anon_sym_const] = ACTIONS(5509), - [anon_sym_constexpr] = ACTIONS(5509), - [anon_sym_volatile] = ACTIONS(5509), - [anon_sym_restrict] = ACTIONS(5509), - [anon_sym___restrict__] = ACTIONS(5509), - [anon_sym__Atomic] = ACTIONS(5509), - [anon_sym__Noreturn] = ACTIONS(5509), - [anon_sym_noreturn] = ACTIONS(5509), - [anon_sym__Nonnull] = ACTIONS(5509), - [anon_sym_mutable] = ACTIONS(5509), - [anon_sym_constinit] = ACTIONS(5509), - [anon_sym_consteval] = ACTIONS(5509), - [anon_sym_alignas] = ACTIONS(5509), - [anon_sym__Alignas] = ACTIONS(5509), - [sym_primitive_type] = ACTIONS(5509), - [anon_sym_enum] = ACTIONS(5509), - [anon_sym_class] = ACTIONS(5509), - [anon_sym_struct] = ACTIONS(5509), - [anon_sym_union] = ACTIONS(5509), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5509), - [anon_sym_decltype] = ACTIONS(5509), - [anon_sym_explicit] = ACTIONS(5509), - [anon_sym_typename] = ACTIONS(5509), - [anon_sym_private] = ACTIONS(5509), - [anon_sym_template] = ACTIONS(5509), - [anon_sym_operator] = ACTIONS(5509), - [anon_sym_friend] = ACTIONS(5509), - [anon_sym_public] = ACTIONS(5509), - [anon_sym_protected] = ACTIONS(5509), - [anon_sym_static_assert] = ACTIONS(5509), + [2040] = { + [sym_identifier] = ACTIONS(3079), + [aux_sym_preproc_def_token1] = ACTIONS(3079), + [aux_sym_preproc_if_token1] = ACTIONS(3079), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3079), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3079), + [sym_preproc_directive] = ACTIONS(3079), + [anon_sym_LPAREN2] = ACTIONS(3081), + [anon_sym_TILDE] = ACTIONS(3081), + [anon_sym_STAR] = ACTIONS(3081), + [anon_sym_AMP_AMP] = ACTIONS(3081), + [anon_sym_AMP] = ACTIONS(3079), + [anon_sym_SEMI] = ACTIONS(3081), + [anon_sym___extension__] = ACTIONS(3079), + [anon_sym_typedef] = ACTIONS(3079), + [anon_sym_virtual] = ACTIONS(3079), + [anon_sym_extern] = ACTIONS(3079), + [anon_sym___attribute__] = ACTIONS(3079), + [anon_sym___attribute] = ACTIONS(3079), + [anon_sym_using] = ACTIONS(3079), + [anon_sym_COLON_COLON] = ACTIONS(3081), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3081), + [anon_sym___declspec] = ACTIONS(3079), + [anon_sym___based] = ACTIONS(3079), + [anon_sym_RBRACE] = ACTIONS(3081), + [anon_sym_signed] = ACTIONS(3079), + [anon_sym_unsigned] = ACTIONS(3079), + [anon_sym_long] = ACTIONS(3079), + [anon_sym_short] = ACTIONS(3079), + [anon_sym_LBRACK] = ACTIONS(3079), + [anon_sym_static] = ACTIONS(3079), + [anon_sym_register] = ACTIONS(3079), + [anon_sym_inline] = ACTIONS(3079), + [anon_sym___inline] = ACTIONS(3079), + [anon_sym___inline__] = ACTIONS(3079), + [anon_sym___forceinline] = ACTIONS(3079), + [anon_sym_thread_local] = ACTIONS(3079), + [anon_sym___thread] = ACTIONS(3079), + [anon_sym_const] = ACTIONS(3079), + [anon_sym_constexpr] = ACTIONS(3079), + [anon_sym_volatile] = ACTIONS(3079), + [anon_sym_restrict] = ACTIONS(3079), + [anon_sym___restrict__] = ACTIONS(3079), + [anon_sym__Atomic] = ACTIONS(3079), + [anon_sym__Noreturn] = ACTIONS(3079), + [anon_sym_noreturn] = ACTIONS(3079), + [anon_sym__Nonnull] = ACTIONS(3079), + [anon_sym_mutable] = ACTIONS(3079), + [anon_sym_constinit] = ACTIONS(3079), + [anon_sym_consteval] = ACTIONS(3079), + [anon_sym_alignas] = ACTIONS(3079), + [anon_sym__Alignas] = ACTIONS(3079), + [sym_primitive_type] = ACTIONS(3079), + [anon_sym_enum] = ACTIONS(3079), + [anon_sym_class] = ACTIONS(3079), + [anon_sym_struct] = ACTIONS(3079), + [anon_sym_union] = ACTIONS(3079), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3079), + [anon_sym_decltype] = ACTIONS(3079), + [anon_sym_explicit] = ACTIONS(3079), + [anon_sym_typename] = ACTIONS(3079), + [anon_sym_private] = ACTIONS(3079), + [anon_sym_template] = ACTIONS(3079), + [anon_sym_operator] = ACTIONS(3079), + [anon_sym_friend] = ACTIONS(3079), + [anon_sym_public] = ACTIONS(3079), + [anon_sym_protected] = ACTIONS(3079), + [anon_sym_static_assert] = ACTIONS(3079), }, - [1972] = { - [sym_identifier] = ACTIONS(5513), - [aux_sym_preproc_def_token1] = ACTIONS(5513), - [aux_sym_preproc_if_token1] = ACTIONS(5513), - [aux_sym_preproc_if_token2] = ACTIONS(5513), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5513), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5513), - [sym_preproc_directive] = ACTIONS(5513), - [anon_sym_LPAREN2] = ACTIONS(5515), - [anon_sym_TILDE] = ACTIONS(5515), - [anon_sym_STAR] = ACTIONS(5515), - [anon_sym_AMP_AMP] = ACTIONS(5515), - [anon_sym_AMP] = ACTIONS(5513), - [anon_sym_SEMI] = ACTIONS(5515), - [anon_sym___extension__] = ACTIONS(5513), - [anon_sym_typedef] = ACTIONS(5513), - [anon_sym_virtual] = ACTIONS(5513), - [anon_sym_extern] = ACTIONS(5513), - [anon_sym___attribute__] = ACTIONS(5513), - [anon_sym___attribute] = ACTIONS(5513), - [anon_sym_using] = ACTIONS(5513), - [anon_sym_COLON_COLON] = ACTIONS(5515), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5515), - [anon_sym___declspec] = ACTIONS(5513), - [anon_sym___based] = ACTIONS(5513), - [anon_sym_signed] = ACTIONS(5513), - [anon_sym_unsigned] = ACTIONS(5513), - [anon_sym_long] = ACTIONS(5513), - [anon_sym_short] = ACTIONS(5513), - [anon_sym_LBRACK] = ACTIONS(5513), - [anon_sym_static] = ACTIONS(5513), - [anon_sym_register] = ACTIONS(5513), - [anon_sym_inline] = ACTIONS(5513), - [anon_sym___inline] = ACTIONS(5513), - [anon_sym___inline__] = ACTIONS(5513), - [anon_sym___forceinline] = ACTIONS(5513), - [anon_sym_thread_local] = ACTIONS(5513), - [anon_sym___thread] = ACTIONS(5513), - [anon_sym_const] = ACTIONS(5513), - [anon_sym_constexpr] = ACTIONS(5513), - [anon_sym_volatile] = ACTIONS(5513), - [anon_sym_restrict] = ACTIONS(5513), - [anon_sym___restrict__] = ACTIONS(5513), - [anon_sym__Atomic] = ACTIONS(5513), - [anon_sym__Noreturn] = ACTIONS(5513), - [anon_sym_noreturn] = ACTIONS(5513), - [anon_sym__Nonnull] = ACTIONS(5513), - [anon_sym_mutable] = ACTIONS(5513), - [anon_sym_constinit] = ACTIONS(5513), - [anon_sym_consteval] = ACTIONS(5513), - [anon_sym_alignas] = ACTIONS(5513), - [anon_sym__Alignas] = ACTIONS(5513), - [sym_primitive_type] = ACTIONS(5513), - [anon_sym_enum] = ACTIONS(5513), - [anon_sym_class] = ACTIONS(5513), - [anon_sym_struct] = ACTIONS(5513), - [anon_sym_union] = ACTIONS(5513), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5513), - [anon_sym_decltype] = ACTIONS(5513), - [anon_sym_explicit] = ACTIONS(5513), - [anon_sym_typename] = ACTIONS(5513), - [anon_sym_private] = ACTIONS(5513), - [anon_sym_template] = ACTIONS(5513), - [anon_sym_operator] = ACTIONS(5513), - [anon_sym_friend] = ACTIONS(5513), - [anon_sym_public] = ACTIONS(5513), - [anon_sym_protected] = ACTIONS(5513), - [anon_sym_static_assert] = ACTIONS(5513), + [2041] = { + [sym_identifier] = ACTIONS(2679), + [aux_sym_preproc_def_token1] = ACTIONS(2679), + [aux_sym_preproc_if_token1] = ACTIONS(2679), + [aux_sym_preproc_if_token2] = ACTIONS(2679), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2679), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2679), + [sym_preproc_directive] = ACTIONS(2679), + [anon_sym_LPAREN2] = ACTIONS(2681), + [anon_sym_TILDE] = ACTIONS(2681), + [anon_sym_STAR] = ACTIONS(2681), + [anon_sym_AMP_AMP] = ACTIONS(2681), + [anon_sym_AMP] = ACTIONS(2679), + [anon_sym_SEMI] = ACTIONS(2681), + [anon_sym___extension__] = ACTIONS(2679), + [anon_sym_typedef] = ACTIONS(2679), + [anon_sym_virtual] = ACTIONS(2679), + [anon_sym_extern] = ACTIONS(2679), + [anon_sym___attribute__] = ACTIONS(2679), + [anon_sym___attribute] = ACTIONS(2679), + [anon_sym_using] = ACTIONS(2679), + [anon_sym_COLON_COLON] = ACTIONS(2681), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2681), + [anon_sym___declspec] = ACTIONS(2679), + [anon_sym___based] = ACTIONS(2679), + [anon_sym_signed] = ACTIONS(2679), + [anon_sym_unsigned] = ACTIONS(2679), + [anon_sym_long] = ACTIONS(2679), + [anon_sym_short] = ACTIONS(2679), + [anon_sym_LBRACK] = ACTIONS(2679), + [anon_sym_static] = ACTIONS(2679), + [anon_sym_register] = ACTIONS(2679), + [anon_sym_inline] = ACTIONS(2679), + [anon_sym___inline] = ACTIONS(2679), + [anon_sym___inline__] = ACTIONS(2679), + [anon_sym___forceinline] = ACTIONS(2679), + [anon_sym_thread_local] = ACTIONS(2679), + [anon_sym___thread] = ACTIONS(2679), + [anon_sym_const] = ACTIONS(2679), + [anon_sym_constexpr] = ACTIONS(2679), + [anon_sym_volatile] = ACTIONS(2679), + [anon_sym_restrict] = ACTIONS(2679), + [anon_sym___restrict__] = ACTIONS(2679), + [anon_sym__Atomic] = ACTIONS(2679), + [anon_sym__Noreturn] = ACTIONS(2679), + [anon_sym_noreturn] = ACTIONS(2679), + [anon_sym__Nonnull] = ACTIONS(2679), + [anon_sym_mutable] = ACTIONS(2679), + [anon_sym_constinit] = ACTIONS(2679), + [anon_sym_consteval] = ACTIONS(2679), + [anon_sym_alignas] = ACTIONS(2679), + [anon_sym__Alignas] = ACTIONS(2679), + [sym_primitive_type] = ACTIONS(2679), + [anon_sym_enum] = ACTIONS(2679), + [anon_sym_class] = ACTIONS(2679), + [anon_sym_struct] = ACTIONS(2679), + [anon_sym_union] = ACTIONS(2679), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2679), + [anon_sym_decltype] = ACTIONS(2679), + [anon_sym_explicit] = ACTIONS(2679), + [anon_sym_typename] = ACTIONS(2679), + [anon_sym_private] = ACTIONS(2679), + [anon_sym_template] = ACTIONS(2679), + [anon_sym_operator] = ACTIONS(2679), + [anon_sym_friend] = ACTIONS(2679), + [anon_sym_public] = ACTIONS(2679), + [anon_sym_protected] = ACTIONS(2679), + [anon_sym_static_assert] = ACTIONS(2679), }, - [1973] = { - [sym_identifier] = ACTIONS(2703), - [aux_sym_preproc_def_token1] = ACTIONS(2703), - [aux_sym_preproc_if_token1] = ACTIONS(2703), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2703), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2703), - [sym_preproc_directive] = ACTIONS(2703), - [anon_sym_LPAREN2] = ACTIONS(2705), - [anon_sym_TILDE] = ACTIONS(2705), - [anon_sym_STAR] = ACTIONS(2705), - [anon_sym_AMP_AMP] = ACTIONS(2705), - [anon_sym_AMP] = ACTIONS(2703), - [anon_sym_SEMI] = ACTIONS(2705), - [anon_sym___extension__] = ACTIONS(2703), - [anon_sym_typedef] = ACTIONS(2703), - [anon_sym_virtual] = ACTIONS(2703), - [anon_sym_extern] = ACTIONS(2703), - [anon_sym___attribute__] = ACTIONS(2703), - [anon_sym___attribute] = ACTIONS(2703), - [anon_sym_using] = ACTIONS(2703), - [anon_sym_COLON_COLON] = ACTIONS(2705), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2705), - [anon_sym___declspec] = ACTIONS(2703), - [anon_sym___based] = ACTIONS(2703), - [anon_sym_RBRACE] = ACTIONS(2705), - [anon_sym_signed] = ACTIONS(2703), - [anon_sym_unsigned] = ACTIONS(2703), - [anon_sym_long] = ACTIONS(2703), - [anon_sym_short] = ACTIONS(2703), - [anon_sym_LBRACK] = ACTIONS(2703), - [anon_sym_static] = ACTIONS(2703), - [anon_sym_register] = ACTIONS(2703), - [anon_sym_inline] = ACTIONS(2703), - [anon_sym___inline] = ACTIONS(2703), - [anon_sym___inline__] = ACTIONS(2703), - [anon_sym___forceinline] = ACTIONS(2703), - [anon_sym_thread_local] = ACTIONS(2703), - [anon_sym___thread] = ACTIONS(2703), - [anon_sym_const] = ACTIONS(2703), - [anon_sym_constexpr] = ACTIONS(2703), - [anon_sym_volatile] = ACTIONS(2703), - [anon_sym_restrict] = ACTIONS(2703), - [anon_sym___restrict__] = ACTIONS(2703), - [anon_sym__Atomic] = ACTIONS(2703), - [anon_sym__Noreturn] = ACTIONS(2703), - [anon_sym_noreturn] = ACTIONS(2703), - [anon_sym__Nonnull] = ACTIONS(2703), - [anon_sym_mutable] = ACTIONS(2703), - [anon_sym_constinit] = ACTIONS(2703), - [anon_sym_consteval] = ACTIONS(2703), - [anon_sym_alignas] = ACTIONS(2703), - [anon_sym__Alignas] = ACTIONS(2703), - [sym_primitive_type] = ACTIONS(2703), - [anon_sym_enum] = ACTIONS(2703), - [anon_sym_class] = ACTIONS(2703), - [anon_sym_struct] = ACTIONS(2703), - [anon_sym_union] = ACTIONS(2703), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2703), - [anon_sym_decltype] = ACTIONS(2703), - [anon_sym_explicit] = ACTIONS(2703), - [anon_sym_typename] = ACTIONS(2703), - [anon_sym_private] = ACTIONS(2703), - [anon_sym_template] = ACTIONS(2703), - [anon_sym_operator] = ACTIONS(2703), - [anon_sym_friend] = ACTIONS(2703), - [anon_sym_public] = ACTIONS(2703), - [anon_sym_protected] = ACTIONS(2703), - [anon_sym_static_assert] = ACTIONS(2703), + [2042] = { + [sym_identifier] = ACTIONS(2671), + [aux_sym_preproc_def_token1] = ACTIONS(2671), + [aux_sym_preproc_if_token1] = ACTIONS(2671), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2671), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2671), + [sym_preproc_directive] = ACTIONS(2671), + [anon_sym_LPAREN2] = ACTIONS(2673), + [anon_sym_TILDE] = ACTIONS(2673), + [anon_sym_STAR] = ACTIONS(2673), + [anon_sym_AMP_AMP] = ACTIONS(2673), + [anon_sym_AMP] = ACTIONS(2671), + [anon_sym_SEMI] = ACTIONS(2673), + [anon_sym___extension__] = ACTIONS(2671), + [anon_sym_typedef] = ACTIONS(2671), + [anon_sym_virtual] = ACTIONS(2671), + [anon_sym_extern] = ACTIONS(2671), + [anon_sym___attribute__] = ACTIONS(2671), + [anon_sym___attribute] = ACTIONS(2671), + [anon_sym_using] = ACTIONS(2671), + [anon_sym_COLON_COLON] = ACTIONS(2673), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2673), + [anon_sym___declspec] = ACTIONS(2671), + [anon_sym___based] = ACTIONS(2671), + [anon_sym_RBRACE] = ACTIONS(2673), + [anon_sym_signed] = ACTIONS(2671), + [anon_sym_unsigned] = ACTIONS(2671), + [anon_sym_long] = ACTIONS(2671), + [anon_sym_short] = ACTIONS(2671), + [anon_sym_LBRACK] = ACTIONS(2671), + [anon_sym_static] = ACTIONS(2671), + [anon_sym_register] = ACTIONS(2671), + [anon_sym_inline] = ACTIONS(2671), + [anon_sym___inline] = ACTIONS(2671), + [anon_sym___inline__] = ACTIONS(2671), + [anon_sym___forceinline] = ACTIONS(2671), + [anon_sym_thread_local] = ACTIONS(2671), + [anon_sym___thread] = ACTIONS(2671), + [anon_sym_const] = ACTIONS(2671), + [anon_sym_constexpr] = ACTIONS(2671), + [anon_sym_volatile] = ACTIONS(2671), + [anon_sym_restrict] = ACTIONS(2671), + [anon_sym___restrict__] = ACTIONS(2671), + [anon_sym__Atomic] = ACTIONS(2671), + [anon_sym__Noreturn] = ACTIONS(2671), + [anon_sym_noreturn] = ACTIONS(2671), + [anon_sym__Nonnull] = ACTIONS(2671), + [anon_sym_mutable] = ACTIONS(2671), + [anon_sym_constinit] = ACTIONS(2671), + [anon_sym_consteval] = ACTIONS(2671), + [anon_sym_alignas] = ACTIONS(2671), + [anon_sym__Alignas] = ACTIONS(2671), + [sym_primitive_type] = ACTIONS(2671), + [anon_sym_enum] = ACTIONS(2671), + [anon_sym_class] = ACTIONS(2671), + [anon_sym_struct] = ACTIONS(2671), + [anon_sym_union] = ACTIONS(2671), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2671), + [anon_sym_decltype] = ACTIONS(2671), + [anon_sym_explicit] = ACTIONS(2671), + [anon_sym_typename] = ACTIONS(2671), + [anon_sym_private] = ACTIONS(2671), + [anon_sym_template] = ACTIONS(2671), + [anon_sym_operator] = ACTIONS(2671), + [anon_sym_friend] = ACTIONS(2671), + [anon_sym_public] = ACTIONS(2671), + [anon_sym_protected] = ACTIONS(2671), + [anon_sym_static_assert] = ACTIONS(2671), }, - [1974] = { - [sym_identifier] = ACTIONS(5517), - [aux_sym_preproc_def_token1] = ACTIONS(5517), - [aux_sym_preproc_if_token1] = ACTIONS(5517), - [aux_sym_preproc_if_token2] = ACTIONS(5517), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5517), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5517), - [sym_preproc_directive] = ACTIONS(5517), - [anon_sym_LPAREN2] = ACTIONS(5519), - [anon_sym_TILDE] = ACTIONS(5519), - [anon_sym_STAR] = ACTIONS(5519), - [anon_sym_AMP_AMP] = ACTIONS(5519), - [anon_sym_AMP] = ACTIONS(5517), - [anon_sym_SEMI] = ACTIONS(5519), - [anon_sym___extension__] = ACTIONS(5517), - [anon_sym_typedef] = ACTIONS(5517), - [anon_sym_virtual] = ACTIONS(5517), - [anon_sym_extern] = ACTIONS(5517), - [anon_sym___attribute__] = ACTIONS(5517), - [anon_sym___attribute] = ACTIONS(5517), - [anon_sym_using] = ACTIONS(5517), - [anon_sym_COLON_COLON] = ACTIONS(5519), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5519), - [anon_sym___declspec] = ACTIONS(5517), - [anon_sym___based] = ACTIONS(5517), - [anon_sym_signed] = ACTIONS(5517), - [anon_sym_unsigned] = ACTIONS(5517), - [anon_sym_long] = ACTIONS(5517), - [anon_sym_short] = ACTIONS(5517), - [anon_sym_LBRACK] = ACTIONS(5517), - [anon_sym_static] = ACTIONS(5517), - [anon_sym_register] = ACTIONS(5517), - [anon_sym_inline] = ACTIONS(5517), - [anon_sym___inline] = ACTIONS(5517), - [anon_sym___inline__] = ACTIONS(5517), - [anon_sym___forceinline] = ACTIONS(5517), - [anon_sym_thread_local] = ACTIONS(5517), - [anon_sym___thread] = ACTIONS(5517), - [anon_sym_const] = ACTIONS(5517), - [anon_sym_constexpr] = ACTIONS(5517), - [anon_sym_volatile] = ACTIONS(5517), - [anon_sym_restrict] = ACTIONS(5517), - [anon_sym___restrict__] = ACTIONS(5517), - [anon_sym__Atomic] = ACTIONS(5517), - [anon_sym__Noreturn] = ACTIONS(5517), - [anon_sym_noreturn] = ACTIONS(5517), - [anon_sym__Nonnull] = ACTIONS(5517), - [anon_sym_mutable] = ACTIONS(5517), - [anon_sym_constinit] = ACTIONS(5517), - [anon_sym_consteval] = ACTIONS(5517), - [anon_sym_alignas] = ACTIONS(5517), - [anon_sym__Alignas] = ACTIONS(5517), - [sym_primitive_type] = ACTIONS(5517), - [anon_sym_enum] = ACTIONS(5517), - [anon_sym_class] = ACTIONS(5517), - [anon_sym_struct] = ACTIONS(5517), - [anon_sym_union] = ACTIONS(5517), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5517), - [anon_sym_decltype] = ACTIONS(5517), - [anon_sym_explicit] = ACTIONS(5517), - [anon_sym_typename] = ACTIONS(5517), - [anon_sym_private] = ACTIONS(5517), - [anon_sym_template] = ACTIONS(5517), - [anon_sym_operator] = ACTIONS(5517), - [anon_sym_friend] = ACTIONS(5517), - [anon_sym_public] = ACTIONS(5517), - [anon_sym_protected] = ACTIONS(5517), - [anon_sym_static_assert] = ACTIONS(5517), + [2043] = { + [sym_identifier] = ACTIONS(5466), + [aux_sym_preproc_def_token1] = ACTIONS(5466), + [aux_sym_preproc_if_token1] = ACTIONS(5466), + [aux_sym_preproc_if_token2] = ACTIONS(5466), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5466), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5466), + [sym_preproc_directive] = ACTIONS(5466), + [anon_sym_LPAREN2] = ACTIONS(5468), + [anon_sym_TILDE] = ACTIONS(5468), + [anon_sym_STAR] = ACTIONS(5468), + [anon_sym_AMP_AMP] = ACTIONS(5468), + [anon_sym_AMP] = ACTIONS(5466), + [anon_sym_SEMI] = ACTIONS(5468), + [anon_sym___extension__] = ACTIONS(5466), + [anon_sym_typedef] = ACTIONS(5466), + [anon_sym_virtual] = ACTIONS(5466), + [anon_sym_extern] = ACTIONS(5466), + [anon_sym___attribute__] = ACTIONS(5466), + [anon_sym___attribute] = ACTIONS(5466), + [anon_sym_using] = ACTIONS(5466), + [anon_sym_COLON_COLON] = ACTIONS(5468), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5468), + [anon_sym___declspec] = ACTIONS(5466), + [anon_sym___based] = ACTIONS(5466), + [anon_sym_signed] = ACTIONS(5466), + [anon_sym_unsigned] = ACTIONS(5466), + [anon_sym_long] = ACTIONS(5466), + [anon_sym_short] = ACTIONS(5466), + [anon_sym_LBRACK] = ACTIONS(5466), + [anon_sym_static] = ACTIONS(5466), + [anon_sym_register] = ACTIONS(5466), + [anon_sym_inline] = ACTIONS(5466), + [anon_sym___inline] = ACTIONS(5466), + [anon_sym___inline__] = ACTIONS(5466), + [anon_sym___forceinline] = ACTIONS(5466), + [anon_sym_thread_local] = ACTIONS(5466), + [anon_sym___thread] = ACTIONS(5466), + [anon_sym_const] = ACTIONS(5466), + [anon_sym_constexpr] = ACTIONS(5466), + [anon_sym_volatile] = ACTIONS(5466), + [anon_sym_restrict] = ACTIONS(5466), + [anon_sym___restrict__] = ACTIONS(5466), + [anon_sym__Atomic] = ACTIONS(5466), + [anon_sym__Noreturn] = ACTIONS(5466), + [anon_sym_noreturn] = ACTIONS(5466), + [anon_sym__Nonnull] = ACTIONS(5466), + [anon_sym_mutable] = ACTIONS(5466), + [anon_sym_constinit] = ACTIONS(5466), + [anon_sym_consteval] = ACTIONS(5466), + [anon_sym_alignas] = ACTIONS(5466), + [anon_sym__Alignas] = ACTIONS(5466), + [sym_primitive_type] = ACTIONS(5466), + [anon_sym_enum] = ACTIONS(5466), + [anon_sym_class] = ACTIONS(5466), + [anon_sym_struct] = ACTIONS(5466), + [anon_sym_union] = ACTIONS(5466), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5466), + [anon_sym_decltype] = ACTIONS(5466), + [anon_sym_explicit] = ACTIONS(5466), + [anon_sym_typename] = ACTIONS(5466), + [anon_sym_private] = ACTIONS(5466), + [anon_sym_template] = ACTIONS(5466), + [anon_sym_operator] = ACTIONS(5466), + [anon_sym_friend] = ACTIONS(5466), + [anon_sym_public] = ACTIONS(5466), + [anon_sym_protected] = ACTIONS(5466), + [anon_sym_static_assert] = ACTIONS(5466), }, - [1975] = { - [sym_identifier] = ACTIONS(5517), - [aux_sym_preproc_def_token1] = ACTIONS(5517), - [aux_sym_preproc_if_token1] = ACTIONS(5517), - [aux_sym_preproc_if_token2] = ACTIONS(5517), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5517), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5517), - [sym_preproc_directive] = ACTIONS(5517), - [anon_sym_LPAREN2] = ACTIONS(5519), - [anon_sym_TILDE] = ACTIONS(5519), - [anon_sym_STAR] = ACTIONS(5519), - [anon_sym_AMP_AMP] = ACTIONS(5519), - [anon_sym_AMP] = ACTIONS(5517), - [anon_sym_SEMI] = ACTIONS(5519), - [anon_sym___extension__] = ACTIONS(5517), - [anon_sym_typedef] = ACTIONS(5517), - [anon_sym_virtual] = ACTIONS(5517), - [anon_sym_extern] = ACTIONS(5517), - [anon_sym___attribute__] = ACTIONS(5517), - [anon_sym___attribute] = ACTIONS(5517), - [anon_sym_using] = ACTIONS(5517), - [anon_sym_COLON_COLON] = ACTIONS(5519), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5519), - [anon_sym___declspec] = ACTIONS(5517), - [anon_sym___based] = ACTIONS(5517), - [anon_sym_signed] = ACTIONS(5517), - [anon_sym_unsigned] = ACTIONS(5517), - [anon_sym_long] = ACTIONS(5517), - [anon_sym_short] = ACTIONS(5517), - [anon_sym_LBRACK] = ACTIONS(5517), - [anon_sym_static] = ACTIONS(5517), - [anon_sym_register] = ACTIONS(5517), - [anon_sym_inline] = ACTIONS(5517), - [anon_sym___inline] = ACTIONS(5517), - [anon_sym___inline__] = ACTIONS(5517), - [anon_sym___forceinline] = ACTIONS(5517), - [anon_sym_thread_local] = ACTIONS(5517), - [anon_sym___thread] = ACTIONS(5517), - [anon_sym_const] = ACTIONS(5517), - [anon_sym_constexpr] = ACTIONS(5517), - [anon_sym_volatile] = ACTIONS(5517), - [anon_sym_restrict] = ACTIONS(5517), - [anon_sym___restrict__] = ACTIONS(5517), - [anon_sym__Atomic] = ACTIONS(5517), - [anon_sym__Noreturn] = ACTIONS(5517), - [anon_sym_noreturn] = ACTIONS(5517), - [anon_sym__Nonnull] = ACTIONS(5517), - [anon_sym_mutable] = ACTIONS(5517), - [anon_sym_constinit] = ACTIONS(5517), - [anon_sym_consteval] = ACTIONS(5517), - [anon_sym_alignas] = ACTIONS(5517), - [anon_sym__Alignas] = ACTIONS(5517), - [sym_primitive_type] = ACTIONS(5517), - [anon_sym_enum] = ACTIONS(5517), - [anon_sym_class] = ACTIONS(5517), - [anon_sym_struct] = ACTIONS(5517), - [anon_sym_union] = ACTIONS(5517), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5517), - [anon_sym_decltype] = ACTIONS(5517), - [anon_sym_explicit] = ACTIONS(5517), - [anon_sym_typename] = ACTIONS(5517), - [anon_sym_private] = ACTIONS(5517), - [anon_sym_template] = ACTIONS(5517), - [anon_sym_operator] = ACTIONS(5517), - [anon_sym_friend] = ACTIONS(5517), - [anon_sym_public] = ACTIONS(5517), - [anon_sym_protected] = ACTIONS(5517), - [anon_sym_static_assert] = ACTIONS(5517), + [2044] = { + [sym_identifier] = ACTIONS(5499), + [aux_sym_preproc_def_token1] = ACTIONS(5499), + [aux_sym_preproc_if_token1] = ACTIONS(5499), + [aux_sym_preproc_if_token2] = ACTIONS(5499), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5499), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5499), + [sym_preproc_directive] = ACTIONS(5499), + [anon_sym_LPAREN2] = ACTIONS(5501), + [anon_sym_TILDE] = ACTIONS(5501), + [anon_sym_STAR] = ACTIONS(5501), + [anon_sym_AMP_AMP] = ACTIONS(5501), + [anon_sym_AMP] = ACTIONS(5499), + [anon_sym_SEMI] = ACTIONS(5501), + [anon_sym___extension__] = ACTIONS(5499), + [anon_sym_typedef] = ACTIONS(5499), + [anon_sym_virtual] = ACTIONS(5499), + [anon_sym_extern] = ACTIONS(5499), + [anon_sym___attribute__] = ACTIONS(5499), + [anon_sym___attribute] = ACTIONS(5499), + [anon_sym_using] = ACTIONS(5499), + [anon_sym_COLON_COLON] = ACTIONS(5501), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5501), + [anon_sym___declspec] = ACTIONS(5499), + [anon_sym___based] = ACTIONS(5499), + [anon_sym_signed] = ACTIONS(5499), + [anon_sym_unsigned] = ACTIONS(5499), + [anon_sym_long] = ACTIONS(5499), + [anon_sym_short] = ACTIONS(5499), + [anon_sym_LBRACK] = ACTIONS(5499), + [anon_sym_static] = ACTIONS(5499), + [anon_sym_register] = ACTIONS(5499), + [anon_sym_inline] = ACTIONS(5499), + [anon_sym___inline] = ACTIONS(5499), + [anon_sym___inline__] = ACTIONS(5499), + [anon_sym___forceinline] = ACTIONS(5499), + [anon_sym_thread_local] = ACTIONS(5499), + [anon_sym___thread] = ACTIONS(5499), + [anon_sym_const] = ACTIONS(5499), + [anon_sym_constexpr] = ACTIONS(5499), + [anon_sym_volatile] = ACTIONS(5499), + [anon_sym_restrict] = ACTIONS(5499), + [anon_sym___restrict__] = ACTIONS(5499), + [anon_sym__Atomic] = ACTIONS(5499), + [anon_sym__Noreturn] = ACTIONS(5499), + [anon_sym_noreturn] = ACTIONS(5499), + [anon_sym__Nonnull] = ACTIONS(5499), + [anon_sym_mutable] = ACTIONS(5499), + [anon_sym_constinit] = ACTIONS(5499), + [anon_sym_consteval] = ACTIONS(5499), + [anon_sym_alignas] = ACTIONS(5499), + [anon_sym__Alignas] = ACTIONS(5499), + [sym_primitive_type] = ACTIONS(5499), + [anon_sym_enum] = ACTIONS(5499), + [anon_sym_class] = ACTIONS(5499), + [anon_sym_struct] = ACTIONS(5499), + [anon_sym_union] = ACTIONS(5499), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5499), + [anon_sym_decltype] = ACTIONS(5499), + [anon_sym_explicit] = ACTIONS(5499), + [anon_sym_typename] = ACTIONS(5499), + [anon_sym_private] = ACTIONS(5499), + [anon_sym_template] = ACTIONS(5499), + [anon_sym_operator] = ACTIONS(5499), + [anon_sym_friend] = ACTIONS(5499), + [anon_sym_public] = ACTIONS(5499), + [anon_sym_protected] = ACTIONS(5499), + [anon_sym_static_assert] = ACTIONS(5499), }, - [1976] = { - [sym_identifier] = ACTIONS(5521), - [aux_sym_preproc_def_token1] = ACTIONS(5521), - [aux_sym_preproc_if_token1] = ACTIONS(5521), - [aux_sym_preproc_if_token2] = ACTIONS(5521), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5521), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5521), - [sym_preproc_directive] = ACTIONS(5521), - [anon_sym_LPAREN2] = ACTIONS(5523), - [anon_sym_TILDE] = ACTIONS(5523), - [anon_sym_STAR] = ACTIONS(5523), - [anon_sym_AMP_AMP] = ACTIONS(5523), - [anon_sym_AMP] = ACTIONS(5521), - [anon_sym_SEMI] = ACTIONS(5523), - [anon_sym___extension__] = ACTIONS(5521), - [anon_sym_typedef] = ACTIONS(5521), - [anon_sym_virtual] = ACTIONS(5521), - [anon_sym_extern] = ACTIONS(5521), - [anon_sym___attribute__] = ACTIONS(5521), - [anon_sym___attribute] = ACTIONS(5521), - [anon_sym_using] = ACTIONS(5521), - [anon_sym_COLON_COLON] = ACTIONS(5523), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5523), - [anon_sym___declspec] = ACTIONS(5521), - [anon_sym___based] = ACTIONS(5521), - [anon_sym_signed] = ACTIONS(5521), - [anon_sym_unsigned] = ACTIONS(5521), - [anon_sym_long] = ACTIONS(5521), - [anon_sym_short] = ACTIONS(5521), - [anon_sym_LBRACK] = ACTIONS(5521), - [anon_sym_static] = ACTIONS(5521), - [anon_sym_register] = ACTIONS(5521), - [anon_sym_inline] = ACTIONS(5521), - [anon_sym___inline] = ACTIONS(5521), - [anon_sym___inline__] = ACTIONS(5521), - [anon_sym___forceinline] = ACTIONS(5521), - [anon_sym_thread_local] = ACTIONS(5521), - [anon_sym___thread] = ACTIONS(5521), - [anon_sym_const] = ACTIONS(5521), - [anon_sym_constexpr] = ACTIONS(5521), - [anon_sym_volatile] = ACTIONS(5521), - [anon_sym_restrict] = ACTIONS(5521), - [anon_sym___restrict__] = ACTIONS(5521), - [anon_sym__Atomic] = ACTIONS(5521), - [anon_sym__Noreturn] = ACTIONS(5521), - [anon_sym_noreturn] = ACTIONS(5521), - [anon_sym__Nonnull] = ACTIONS(5521), - [anon_sym_mutable] = ACTIONS(5521), - [anon_sym_constinit] = ACTIONS(5521), - [anon_sym_consteval] = ACTIONS(5521), - [anon_sym_alignas] = ACTIONS(5521), - [anon_sym__Alignas] = ACTIONS(5521), - [sym_primitive_type] = ACTIONS(5521), - [anon_sym_enum] = ACTIONS(5521), - [anon_sym_class] = ACTIONS(5521), - [anon_sym_struct] = ACTIONS(5521), - [anon_sym_union] = ACTIONS(5521), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5521), - [anon_sym_decltype] = ACTIONS(5521), - [anon_sym_explicit] = ACTIONS(5521), - [anon_sym_typename] = ACTIONS(5521), - [anon_sym_private] = ACTIONS(5521), - [anon_sym_template] = ACTIONS(5521), - [anon_sym_operator] = ACTIONS(5521), - [anon_sym_friend] = ACTIONS(5521), - [anon_sym_public] = ACTIONS(5521), - [anon_sym_protected] = ACTIONS(5521), - [anon_sym_static_assert] = ACTIONS(5521), + [2045] = { + [sym_identifier] = ACTIONS(5503), + [aux_sym_preproc_def_token1] = ACTIONS(5503), + [aux_sym_preproc_if_token1] = ACTIONS(5503), + [aux_sym_preproc_if_token2] = ACTIONS(5503), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5503), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5503), + [sym_preproc_directive] = ACTIONS(5503), + [anon_sym_LPAREN2] = ACTIONS(5505), + [anon_sym_TILDE] = ACTIONS(5505), + [anon_sym_STAR] = ACTIONS(5505), + [anon_sym_AMP_AMP] = ACTIONS(5505), + [anon_sym_AMP] = ACTIONS(5503), + [anon_sym_SEMI] = ACTIONS(5505), + [anon_sym___extension__] = ACTIONS(5503), + [anon_sym_typedef] = ACTIONS(5503), + [anon_sym_virtual] = ACTIONS(5503), + [anon_sym_extern] = ACTIONS(5503), + [anon_sym___attribute__] = ACTIONS(5503), + [anon_sym___attribute] = ACTIONS(5503), + [anon_sym_using] = ACTIONS(5503), + [anon_sym_COLON_COLON] = ACTIONS(5505), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5505), + [anon_sym___declspec] = ACTIONS(5503), + [anon_sym___based] = ACTIONS(5503), + [anon_sym_signed] = ACTIONS(5503), + [anon_sym_unsigned] = ACTIONS(5503), + [anon_sym_long] = ACTIONS(5503), + [anon_sym_short] = ACTIONS(5503), + [anon_sym_LBRACK] = ACTIONS(5503), + [anon_sym_static] = ACTIONS(5503), + [anon_sym_register] = ACTIONS(5503), + [anon_sym_inline] = ACTIONS(5503), + [anon_sym___inline] = ACTIONS(5503), + [anon_sym___inline__] = ACTIONS(5503), + [anon_sym___forceinline] = ACTIONS(5503), + [anon_sym_thread_local] = ACTIONS(5503), + [anon_sym___thread] = ACTIONS(5503), + [anon_sym_const] = ACTIONS(5503), + [anon_sym_constexpr] = ACTIONS(5503), + [anon_sym_volatile] = ACTIONS(5503), + [anon_sym_restrict] = ACTIONS(5503), + [anon_sym___restrict__] = ACTIONS(5503), + [anon_sym__Atomic] = ACTIONS(5503), + [anon_sym__Noreturn] = ACTIONS(5503), + [anon_sym_noreturn] = ACTIONS(5503), + [anon_sym__Nonnull] = ACTIONS(5503), + [anon_sym_mutable] = ACTIONS(5503), + [anon_sym_constinit] = ACTIONS(5503), + [anon_sym_consteval] = ACTIONS(5503), + [anon_sym_alignas] = ACTIONS(5503), + [anon_sym__Alignas] = ACTIONS(5503), + [sym_primitive_type] = ACTIONS(5503), + [anon_sym_enum] = ACTIONS(5503), + [anon_sym_class] = ACTIONS(5503), + [anon_sym_struct] = ACTIONS(5503), + [anon_sym_union] = ACTIONS(5503), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5503), + [anon_sym_decltype] = ACTIONS(5503), + [anon_sym_explicit] = ACTIONS(5503), + [anon_sym_typename] = ACTIONS(5503), + [anon_sym_private] = ACTIONS(5503), + [anon_sym_template] = ACTIONS(5503), + [anon_sym_operator] = ACTIONS(5503), + [anon_sym_friend] = ACTIONS(5503), + [anon_sym_public] = ACTIONS(5503), + [anon_sym_protected] = ACTIONS(5503), + [anon_sym_static_assert] = ACTIONS(5503), }, - [1977] = { - [sym_identifier] = ACTIONS(5525), - [aux_sym_preproc_def_token1] = ACTIONS(5525), - [aux_sym_preproc_if_token1] = ACTIONS(5525), - [aux_sym_preproc_if_token2] = ACTIONS(5525), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5525), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5525), - [sym_preproc_directive] = ACTIONS(5525), - [anon_sym_LPAREN2] = ACTIONS(5527), - [anon_sym_TILDE] = ACTIONS(5527), - [anon_sym_STAR] = ACTIONS(5527), - [anon_sym_AMP_AMP] = ACTIONS(5527), - [anon_sym_AMP] = ACTIONS(5525), - [anon_sym_SEMI] = ACTIONS(5527), - [anon_sym___extension__] = ACTIONS(5525), - [anon_sym_typedef] = ACTIONS(5525), - [anon_sym_virtual] = ACTIONS(5525), - [anon_sym_extern] = ACTIONS(5525), - [anon_sym___attribute__] = ACTIONS(5525), - [anon_sym___attribute] = ACTIONS(5525), - [anon_sym_using] = ACTIONS(5525), - [anon_sym_COLON_COLON] = ACTIONS(5527), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5527), - [anon_sym___declspec] = ACTIONS(5525), - [anon_sym___based] = ACTIONS(5525), - [anon_sym_signed] = ACTIONS(5525), - [anon_sym_unsigned] = ACTIONS(5525), - [anon_sym_long] = ACTIONS(5525), - [anon_sym_short] = ACTIONS(5525), - [anon_sym_LBRACK] = ACTIONS(5525), - [anon_sym_static] = ACTIONS(5525), - [anon_sym_register] = ACTIONS(5525), - [anon_sym_inline] = ACTIONS(5525), - [anon_sym___inline] = ACTIONS(5525), - [anon_sym___inline__] = ACTIONS(5525), - [anon_sym___forceinline] = ACTIONS(5525), - [anon_sym_thread_local] = ACTIONS(5525), - [anon_sym___thread] = ACTIONS(5525), - [anon_sym_const] = ACTIONS(5525), - [anon_sym_constexpr] = ACTIONS(5525), - [anon_sym_volatile] = ACTIONS(5525), - [anon_sym_restrict] = ACTIONS(5525), - [anon_sym___restrict__] = ACTIONS(5525), - [anon_sym__Atomic] = ACTIONS(5525), - [anon_sym__Noreturn] = ACTIONS(5525), - [anon_sym_noreturn] = ACTIONS(5525), - [anon_sym__Nonnull] = ACTIONS(5525), - [anon_sym_mutable] = ACTIONS(5525), - [anon_sym_constinit] = ACTIONS(5525), - [anon_sym_consteval] = ACTIONS(5525), - [anon_sym_alignas] = ACTIONS(5525), - [anon_sym__Alignas] = ACTIONS(5525), - [sym_primitive_type] = ACTIONS(5525), - [anon_sym_enum] = ACTIONS(5525), - [anon_sym_class] = ACTIONS(5525), - [anon_sym_struct] = ACTIONS(5525), - [anon_sym_union] = ACTIONS(5525), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5525), - [anon_sym_decltype] = ACTIONS(5525), - [anon_sym_explicit] = ACTIONS(5525), - [anon_sym_typename] = ACTIONS(5525), - [anon_sym_private] = ACTIONS(5525), - [anon_sym_template] = ACTIONS(5525), - [anon_sym_operator] = ACTIONS(5525), - [anon_sym_friend] = ACTIONS(5525), - [anon_sym_public] = ACTIONS(5525), - [anon_sym_protected] = ACTIONS(5525), - [anon_sym_static_assert] = ACTIONS(5525), + [2046] = { + [sym_identifier] = ACTIONS(5503), + [aux_sym_preproc_def_token1] = ACTIONS(5503), + [aux_sym_preproc_if_token1] = ACTIONS(5503), + [aux_sym_preproc_if_token2] = ACTIONS(5503), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5503), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5503), + [sym_preproc_directive] = ACTIONS(5503), + [anon_sym_LPAREN2] = ACTIONS(5505), + [anon_sym_TILDE] = ACTIONS(5505), + [anon_sym_STAR] = ACTIONS(5505), + [anon_sym_AMP_AMP] = ACTIONS(5505), + [anon_sym_AMP] = ACTIONS(5503), + [anon_sym_SEMI] = ACTIONS(5505), + [anon_sym___extension__] = ACTIONS(5503), + [anon_sym_typedef] = ACTIONS(5503), + [anon_sym_virtual] = ACTIONS(5503), + [anon_sym_extern] = ACTIONS(5503), + [anon_sym___attribute__] = ACTIONS(5503), + [anon_sym___attribute] = ACTIONS(5503), + [anon_sym_using] = ACTIONS(5503), + [anon_sym_COLON_COLON] = ACTIONS(5505), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5505), + [anon_sym___declspec] = ACTIONS(5503), + [anon_sym___based] = ACTIONS(5503), + [anon_sym_signed] = ACTIONS(5503), + [anon_sym_unsigned] = ACTIONS(5503), + [anon_sym_long] = ACTIONS(5503), + [anon_sym_short] = ACTIONS(5503), + [anon_sym_LBRACK] = ACTIONS(5503), + [anon_sym_static] = ACTIONS(5503), + [anon_sym_register] = ACTIONS(5503), + [anon_sym_inline] = ACTIONS(5503), + [anon_sym___inline] = ACTIONS(5503), + [anon_sym___inline__] = ACTIONS(5503), + [anon_sym___forceinline] = ACTIONS(5503), + [anon_sym_thread_local] = ACTIONS(5503), + [anon_sym___thread] = ACTIONS(5503), + [anon_sym_const] = ACTIONS(5503), + [anon_sym_constexpr] = ACTIONS(5503), + [anon_sym_volatile] = ACTIONS(5503), + [anon_sym_restrict] = ACTIONS(5503), + [anon_sym___restrict__] = ACTIONS(5503), + [anon_sym__Atomic] = ACTIONS(5503), + [anon_sym__Noreturn] = ACTIONS(5503), + [anon_sym_noreturn] = ACTIONS(5503), + [anon_sym__Nonnull] = ACTIONS(5503), + [anon_sym_mutable] = ACTIONS(5503), + [anon_sym_constinit] = ACTIONS(5503), + [anon_sym_consteval] = ACTIONS(5503), + [anon_sym_alignas] = ACTIONS(5503), + [anon_sym__Alignas] = ACTIONS(5503), + [sym_primitive_type] = ACTIONS(5503), + [anon_sym_enum] = ACTIONS(5503), + [anon_sym_class] = ACTIONS(5503), + [anon_sym_struct] = ACTIONS(5503), + [anon_sym_union] = ACTIONS(5503), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5503), + [anon_sym_decltype] = ACTIONS(5503), + [anon_sym_explicit] = ACTIONS(5503), + [anon_sym_typename] = ACTIONS(5503), + [anon_sym_private] = ACTIONS(5503), + [anon_sym_template] = ACTIONS(5503), + [anon_sym_operator] = ACTIONS(5503), + [anon_sym_friend] = ACTIONS(5503), + [anon_sym_public] = ACTIONS(5503), + [anon_sym_protected] = ACTIONS(5503), + [anon_sym_static_assert] = ACTIONS(5503), }, - [1978] = { - [sym_identifier] = ACTIONS(5529), - [aux_sym_preproc_def_token1] = ACTIONS(5529), - [aux_sym_preproc_if_token1] = ACTIONS(5529), - [aux_sym_preproc_if_token2] = ACTIONS(5529), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5529), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5529), - [sym_preproc_directive] = ACTIONS(5529), - [anon_sym_LPAREN2] = ACTIONS(5531), - [anon_sym_TILDE] = ACTIONS(5531), - [anon_sym_STAR] = ACTIONS(5531), - [anon_sym_AMP_AMP] = ACTIONS(5531), - [anon_sym_AMP] = ACTIONS(5529), - [anon_sym_SEMI] = ACTIONS(5531), - [anon_sym___extension__] = ACTIONS(5529), - [anon_sym_typedef] = ACTIONS(5529), - [anon_sym_virtual] = ACTIONS(5529), - [anon_sym_extern] = ACTIONS(5529), - [anon_sym___attribute__] = ACTIONS(5529), - [anon_sym___attribute] = ACTIONS(5529), - [anon_sym_using] = ACTIONS(5529), - [anon_sym_COLON_COLON] = ACTIONS(5531), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5531), - [anon_sym___declspec] = ACTIONS(5529), - [anon_sym___based] = ACTIONS(5529), - [anon_sym_signed] = ACTIONS(5529), - [anon_sym_unsigned] = ACTIONS(5529), - [anon_sym_long] = ACTIONS(5529), - [anon_sym_short] = ACTIONS(5529), - [anon_sym_LBRACK] = ACTIONS(5529), - [anon_sym_static] = ACTIONS(5529), - [anon_sym_register] = ACTIONS(5529), - [anon_sym_inline] = ACTIONS(5529), - [anon_sym___inline] = ACTIONS(5529), - [anon_sym___inline__] = ACTIONS(5529), - [anon_sym___forceinline] = ACTIONS(5529), - [anon_sym_thread_local] = ACTIONS(5529), - [anon_sym___thread] = ACTIONS(5529), - [anon_sym_const] = ACTIONS(5529), - [anon_sym_constexpr] = ACTIONS(5529), - [anon_sym_volatile] = ACTIONS(5529), - [anon_sym_restrict] = ACTIONS(5529), - [anon_sym___restrict__] = ACTIONS(5529), - [anon_sym__Atomic] = ACTIONS(5529), - [anon_sym__Noreturn] = ACTIONS(5529), - [anon_sym_noreturn] = ACTIONS(5529), - [anon_sym__Nonnull] = ACTIONS(5529), - [anon_sym_mutable] = ACTIONS(5529), - [anon_sym_constinit] = ACTIONS(5529), - [anon_sym_consteval] = ACTIONS(5529), - [anon_sym_alignas] = ACTIONS(5529), - [anon_sym__Alignas] = ACTIONS(5529), - [sym_primitive_type] = ACTIONS(5529), - [anon_sym_enum] = ACTIONS(5529), - [anon_sym_class] = ACTIONS(5529), - [anon_sym_struct] = ACTIONS(5529), - [anon_sym_union] = ACTIONS(5529), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5529), - [anon_sym_decltype] = ACTIONS(5529), - [anon_sym_explicit] = ACTIONS(5529), - [anon_sym_typename] = ACTIONS(5529), - [anon_sym_private] = ACTIONS(5529), - [anon_sym_template] = ACTIONS(5529), - [anon_sym_operator] = ACTIONS(5529), - [anon_sym_friend] = ACTIONS(5529), - [anon_sym_public] = ACTIONS(5529), - [anon_sym_protected] = ACTIONS(5529), - [anon_sym_static_assert] = ACTIONS(5529), + [2047] = { + [sym_identifier] = ACTIONS(5503), + [aux_sym_preproc_def_token1] = ACTIONS(5503), + [aux_sym_preproc_if_token1] = ACTIONS(5503), + [aux_sym_preproc_if_token2] = ACTIONS(5503), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5503), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5503), + [sym_preproc_directive] = ACTIONS(5503), + [anon_sym_LPAREN2] = ACTIONS(5505), + [anon_sym_TILDE] = ACTIONS(5505), + [anon_sym_STAR] = ACTIONS(5505), + [anon_sym_AMP_AMP] = ACTIONS(5505), + [anon_sym_AMP] = ACTIONS(5503), + [anon_sym_SEMI] = ACTIONS(5505), + [anon_sym___extension__] = ACTIONS(5503), + [anon_sym_typedef] = ACTIONS(5503), + [anon_sym_virtual] = ACTIONS(5503), + [anon_sym_extern] = ACTIONS(5503), + [anon_sym___attribute__] = ACTIONS(5503), + [anon_sym___attribute] = ACTIONS(5503), + [anon_sym_using] = ACTIONS(5503), + [anon_sym_COLON_COLON] = ACTIONS(5505), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5505), + [anon_sym___declspec] = ACTIONS(5503), + [anon_sym___based] = ACTIONS(5503), + [anon_sym_signed] = ACTIONS(5503), + [anon_sym_unsigned] = ACTIONS(5503), + [anon_sym_long] = ACTIONS(5503), + [anon_sym_short] = ACTIONS(5503), + [anon_sym_LBRACK] = ACTIONS(5503), + [anon_sym_static] = ACTIONS(5503), + [anon_sym_register] = ACTIONS(5503), + [anon_sym_inline] = ACTIONS(5503), + [anon_sym___inline] = ACTIONS(5503), + [anon_sym___inline__] = ACTIONS(5503), + [anon_sym___forceinline] = ACTIONS(5503), + [anon_sym_thread_local] = ACTIONS(5503), + [anon_sym___thread] = ACTIONS(5503), + [anon_sym_const] = ACTIONS(5503), + [anon_sym_constexpr] = ACTIONS(5503), + [anon_sym_volatile] = ACTIONS(5503), + [anon_sym_restrict] = ACTIONS(5503), + [anon_sym___restrict__] = ACTIONS(5503), + [anon_sym__Atomic] = ACTIONS(5503), + [anon_sym__Noreturn] = ACTIONS(5503), + [anon_sym_noreturn] = ACTIONS(5503), + [anon_sym__Nonnull] = ACTIONS(5503), + [anon_sym_mutable] = ACTIONS(5503), + [anon_sym_constinit] = ACTIONS(5503), + [anon_sym_consteval] = ACTIONS(5503), + [anon_sym_alignas] = ACTIONS(5503), + [anon_sym__Alignas] = ACTIONS(5503), + [sym_primitive_type] = ACTIONS(5503), + [anon_sym_enum] = ACTIONS(5503), + [anon_sym_class] = ACTIONS(5503), + [anon_sym_struct] = ACTIONS(5503), + [anon_sym_union] = ACTIONS(5503), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5503), + [anon_sym_decltype] = ACTIONS(5503), + [anon_sym_explicit] = ACTIONS(5503), + [anon_sym_typename] = ACTIONS(5503), + [anon_sym_private] = ACTIONS(5503), + [anon_sym_template] = ACTIONS(5503), + [anon_sym_operator] = ACTIONS(5503), + [anon_sym_friend] = ACTIONS(5503), + [anon_sym_public] = ACTIONS(5503), + [anon_sym_protected] = ACTIONS(5503), + [anon_sym_static_assert] = ACTIONS(5503), }, - [1979] = { - [sym_identifier] = ACTIONS(5533), - [aux_sym_preproc_def_token1] = ACTIONS(5533), - [aux_sym_preproc_if_token1] = ACTIONS(5533), - [aux_sym_preproc_if_token2] = ACTIONS(5533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5533), - [sym_preproc_directive] = ACTIONS(5533), - [anon_sym_LPAREN2] = ACTIONS(5535), - [anon_sym_TILDE] = ACTIONS(5535), - [anon_sym_STAR] = ACTIONS(5535), - [anon_sym_AMP_AMP] = ACTIONS(5535), - [anon_sym_AMP] = ACTIONS(5533), - [anon_sym_SEMI] = ACTIONS(5535), - [anon_sym___extension__] = ACTIONS(5533), - [anon_sym_typedef] = ACTIONS(5533), - [anon_sym_virtual] = ACTIONS(5533), - [anon_sym_extern] = ACTIONS(5533), - [anon_sym___attribute__] = ACTIONS(5533), - [anon_sym___attribute] = ACTIONS(5533), - [anon_sym_using] = ACTIONS(5533), - [anon_sym_COLON_COLON] = ACTIONS(5535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5535), - [anon_sym___declspec] = ACTIONS(5533), - [anon_sym___based] = ACTIONS(5533), - [anon_sym_signed] = ACTIONS(5533), - [anon_sym_unsigned] = ACTIONS(5533), - [anon_sym_long] = ACTIONS(5533), - [anon_sym_short] = ACTIONS(5533), - [anon_sym_LBRACK] = ACTIONS(5533), - [anon_sym_static] = ACTIONS(5533), - [anon_sym_register] = ACTIONS(5533), - [anon_sym_inline] = ACTIONS(5533), - [anon_sym___inline] = ACTIONS(5533), - [anon_sym___inline__] = ACTIONS(5533), - [anon_sym___forceinline] = ACTIONS(5533), - [anon_sym_thread_local] = ACTIONS(5533), - [anon_sym___thread] = ACTIONS(5533), - [anon_sym_const] = ACTIONS(5533), - [anon_sym_constexpr] = ACTIONS(5533), - [anon_sym_volatile] = ACTIONS(5533), - [anon_sym_restrict] = ACTIONS(5533), - [anon_sym___restrict__] = ACTIONS(5533), - [anon_sym__Atomic] = ACTIONS(5533), - [anon_sym__Noreturn] = ACTIONS(5533), - [anon_sym_noreturn] = ACTIONS(5533), - [anon_sym__Nonnull] = ACTIONS(5533), - [anon_sym_mutable] = ACTIONS(5533), - [anon_sym_constinit] = ACTIONS(5533), - [anon_sym_consteval] = ACTIONS(5533), - [anon_sym_alignas] = ACTIONS(5533), - [anon_sym__Alignas] = ACTIONS(5533), - [sym_primitive_type] = ACTIONS(5533), - [anon_sym_enum] = ACTIONS(5533), - [anon_sym_class] = ACTIONS(5533), - [anon_sym_struct] = ACTIONS(5533), - [anon_sym_union] = ACTIONS(5533), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5533), - [anon_sym_decltype] = ACTIONS(5533), - [anon_sym_explicit] = ACTIONS(5533), - [anon_sym_typename] = ACTIONS(5533), - [anon_sym_private] = ACTIONS(5533), - [anon_sym_template] = ACTIONS(5533), - [anon_sym_operator] = ACTIONS(5533), - [anon_sym_friend] = ACTIONS(5533), - [anon_sym_public] = ACTIONS(5533), - [anon_sym_protected] = ACTIONS(5533), - [anon_sym_static_assert] = ACTIONS(5533), + [2048] = { + [sym_identifier] = ACTIONS(5499), + [aux_sym_preproc_def_token1] = ACTIONS(5499), + [aux_sym_preproc_if_token1] = ACTIONS(5499), + [aux_sym_preproc_if_token2] = ACTIONS(5499), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5499), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5499), + [sym_preproc_directive] = ACTIONS(5499), + [anon_sym_LPAREN2] = ACTIONS(5501), + [anon_sym_TILDE] = ACTIONS(5501), + [anon_sym_STAR] = ACTIONS(5501), + [anon_sym_AMP_AMP] = ACTIONS(5501), + [anon_sym_AMP] = ACTIONS(5499), + [anon_sym_SEMI] = ACTIONS(5501), + [anon_sym___extension__] = ACTIONS(5499), + [anon_sym_typedef] = ACTIONS(5499), + [anon_sym_virtual] = ACTIONS(5499), + [anon_sym_extern] = ACTIONS(5499), + [anon_sym___attribute__] = ACTIONS(5499), + [anon_sym___attribute] = ACTIONS(5499), + [anon_sym_using] = ACTIONS(5499), + [anon_sym_COLON_COLON] = ACTIONS(5501), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5501), + [anon_sym___declspec] = ACTIONS(5499), + [anon_sym___based] = ACTIONS(5499), + [anon_sym_signed] = ACTIONS(5499), + [anon_sym_unsigned] = ACTIONS(5499), + [anon_sym_long] = ACTIONS(5499), + [anon_sym_short] = ACTIONS(5499), + [anon_sym_LBRACK] = ACTIONS(5499), + [anon_sym_static] = ACTIONS(5499), + [anon_sym_register] = ACTIONS(5499), + [anon_sym_inline] = ACTIONS(5499), + [anon_sym___inline] = ACTIONS(5499), + [anon_sym___inline__] = ACTIONS(5499), + [anon_sym___forceinline] = ACTIONS(5499), + [anon_sym_thread_local] = ACTIONS(5499), + [anon_sym___thread] = ACTIONS(5499), + [anon_sym_const] = ACTIONS(5499), + [anon_sym_constexpr] = ACTIONS(5499), + [anon_sym_volatile] = ACTIONS(5499), + [anon_sym_restrict] = ACTIONS(5499), + [anon_sym___restrict__] = ACTIONS(5499), + [anon_sym__Atomic] = ACTIONS(5499), + [anon_sym__Noreturn] = ACTIONS(5499), + [anon_sym_noreturn] = ACTIONS(5499), + [anon_sym__Nonnull] = ACTIONS(5499), + [anon_sym_mutable] = ACTIONS(5499), + [anon_sym_constinit] = ACTIONS(5499), + [anon_sym_consteval] = ACTIONS(5499), + [anon_sym_alignas] = ACTIONS(5499), + [anon_sym__Alignas] = ACTIONS(5499), + [sym_primitive_type] = ACTIONS(5499), + [anon_sym_enum] = ACTIONS(5499), + [anon_sym_class] = ACTIONS(5499), + [anon_sym_struct] = ACTIONS(5499), + [anon_sym_union] = ACTIONS(5499), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5499), + [anon_sym_decltype] = ACTIONS(5499), + [anon_sym_explicit] = ACTIONS(5499), + [anon_sym_typename] = ACTIONS(5499), + [anon_sym_private] = ACTIONS(5499), + [anon_sym_template] = ACTIONS(5499), + [anon_sym_operator] = ACTIONS(5499), + [anon_sym_friend] = ACTIONS(5499), + [anon_sym_public] = ACTIONS(5499), + [anon_sym_protected] = ACTIONS(5499), + [anon_sym_static_assert] = ACTIONS(5499), }, - [1980] = { - [sym_identifier] = ACTIONS(5537), - [aux_sym_preproc_def_token1] = ACTIONS(5537), - [aux_sym_preproc_if_token1] = ACTIONS(5537), - [aux_sym_preproc_if_token2] = ACTIONS(5537), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5537), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5537), - [sym_preproc_directive] = ACTIONS(5537), - [anon_sym_LPAREN2] = ACTIONS(5539), - [anon_sym_TILDE] = ACTIONS(5539), - [anon_sym_STAR] = ACTIONS(5539), - [anon_sym_AMP_AMP] = ACTIONS(5539), - [anon_sym_AMP] = ACTIONS(5537), - [anon_sym_SEMI] = ACTIONS(5539), - [anon_sym___extension__] = ACTIONS(5537), - [anon_sym_typedef] = ACTIONS(5537), - [anon_sym_virtual] = ACTIONS(5537), - [anon_sym_extern] = ACTIONS(5537), - [anon_sym___attribute__] = ACTIONS(5537), - [anon_sym___attribute] = ACTIONS(5537), - [anon_sym_using] = ACTIONS(5537), - [anon_sym_COLON_COLON] = ACTIONS(5539), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5539), - [anon_sym___declspec] = ACTIONS(5537), - [anon_sym___based] = ACTIONS(5537), - [anon_sym_signed] = ACTIONS(5537), - [anon_sym_unsigned] = ACTIONS(5537), - [anon_sym_long] = ACTIONS(5537), - [anon_sym_short] = ACTIONS(5537), - [anon_sym_LBRACK] = ACTIONS(5537), - [anon_sym_static] = ACTIONS(5537), - [anon_sym_register] = ACTIONS(5537), - [anon_sym_inline] = ACTIONS(5537), - [anon_sym___inline] = ACTIONS(5537), - [anon_sym___inline__] = ACTIONS(5537), - [anon_sym___forceinline] = ACTIONS(5537), - [anon_sym_thread_local] = ACTIONS(5537), - [anon_sym___thread] = ACTIONS(5537), - [anon_sym_const] = ACTIONS(5537), - [anon_sym_constexpr] = ACTIONS(5537), - [anon_sym_volatile] = ACTIONS(5537), - [anon_sym_restrict] = ACTIONS(5537), - [anon_sym___restrict__] = ACTIONS(5537), - [anon_sym__Atomic] = ACTIONS(5537), - [anon_sym__Noreturn] = ACTIONS(5537), - [anon_sym_noreturn] = ACTIONS(5537), - [anon_sym__Nonnull] = ACTIONS(5537), - [anon_sym_mutable] = ACTIONS(5537), - [anon_sym_constinit] = ACTIONS(5537), - [anon_sym_consteval] = ACTIONS(5537), - [anon_sym_alignas] = ACTIONS(5537), - [anon_sym__Alignas] = ACTIONS(5537), - [sym_primitive_type] = ACTIONS(5537), - [anon_sym_enum] = ACTIONS(5537), - [anon_sym_class] = ACTIONS(5537), - [anon_sym_struct] = ACTIONS(5537), - [anon_sym_union] = ACTIONS(5537), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5537), - [anon_sym_decltype] = ACTIONS(5537), - [anon_sym_explicit] = ACTIONS(5537), - [anon_sym_typename] = ACTIONS(5537), - [anon_sym_private] = ACTIONS(5537), - [anon_sym_template] = ACTIONS(5537), - [anon_sym_operator] = ACTIONS(5537), - [anon_sym_friend] = ACTIONS(5537), - [anon_sym_public] = ACTIONS(5537), - [anon_sym_protected] = ACTIONS(5537), - [anon_sym_static_assert] = ACTIONS(5537), + [2049] = { + [sym_string_literal] = STATE(2054), + [sym_raw_string_literal] = STATE(2054), + [aux_sym_concatenated_string_repeat1] = STATE(2054), + [sym_identifier] = ACTIONS(6041), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5401), + [anon_sym_COMMA] = ACTIONS(5401), + [anon_sym_LPAREN2] = ACTIONS(5401), + [anon_sym_DASH] = ACTIONS(5403), + [anon_sym_PLUS] = ACTIONS(5403), + [anon_sym_STAR] = ACTIONS(5403), + [anon_sym_SLASH] = ACTIONS(5403), + [anon_sym_PERCENT] = ACTIONS(5403), + [anon_sym_PIPE_PIPE] = ACTIONS(5401), + [anon_sym_AMP_AMP] = ACTIONS(5401), + [anon_sym_PIPE] = ACTIONS(5403), + [anon_sym_CARET] = ACTIONS(5403), + [anon_sym_AMP] = ACTIONS(5403), + [anon_sym_EQ_EQ] = ACTIONS(5401), + [anon_sym_BANG_EQ] = ACTIONS(5401), + [anon_sym_GT] = ACTIONS(5403), + [anon_sym_GT_EQ] = ACTIONS(5401), + [anon_sym_LT_EQ] = ACTIONS(5403), + [anon_sym_LT] = ACTIONS(5403), + [anon_sym_LT_LT] = ACTIONS(5403), + [anon_sym_GT_GT] = ACTIONS(5403), + [anon_sym_SEMI] = ACTIONS(5401), + [anon_sym___attribute__] = ACTIONS(5403), + [anon_sym___attribute] = ACTIONS(5403), + [anon_sym_LBRACK] = ACTIONS(5401), + [anon_sym_EQ] = ACTIONS(5403), + [anon_sym_QMARK] = ACTIONS(5401), + [anon_sym_STAR_EQ] = ACTIONS(5401), + [anon_sym_SLASH_EQ] = ACTIONS(5401), + [anon_sym_PERCENT_EQ] = ACTIONS(5401), + [anon_sym_PLUS_EQ] = ACTIONS(5401), + [anon_sym_DASH_EQ] = ACTIONS(5401), + [anon_sym_LT_LT_EQ] = ACTIONS(5401), + [anon_sym_GT_GT_EQ] = ACTIONS(5401), + [anon_sym_AMP_EQ] = ACTIONS(5401), + [anon_sym_CARET_EQ] = ACTIONS(5401), + [anon_sym_PIPE_EQ] = ACTIONS(5401), + [anon_sym_and_eq] = ACTIONS(5403), + [anon_sym_or_eq] = ACTIONS(5403), + [anon_sym_xor_eq] = ACTIONS(5403), + [anon_sym_LT_EQ_GT] = ACTIONS(5401), + [anon_sym_or] = ACTIONS(5403), + [anon_sym_and] = ACTIONS(5403), + [anon_sym_bitor] = ACTIONS(5403), + [anon_sym_xor] = ACTIONS(5403), + [anon_sym_bitand] = ACTIONS(5403), + [anon_sym_not_eq] = ACTIONS(5403), + [anon_sym_DASH_DASH] = ACTIONS(5401), + [anon_sym_PLUS_PLUS] = ACTIONS(5401), + [anon_sym_DOT] = ACTIONS(5403), + [anon_sym_DOT_STAR] = ACTIONS(5401), + [anon_sym_DASH_GT] = ACTIONS(5401), + [anon_sym_L_DQUOTE] = ACTIONS(6027), + [anon_sym_u_DQUOTE] = ACTIONS(6027), + [anon_sym_U_DQUOTE] = ACTIONS(6027), + [anon_sym_u8_DQUOTE] = ACTIONS(6027), + [anon_sym_DQUOTE] = ACTIONS(6027), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(6029), + [anon_sym_LR_DQUOTE] = ACTIONS(6029), + [anon_sym_uR_DQUOTE] = ACTIONS(6029), + [anon_sym_UR_DQUOTE] = ACTIONS(6029), + [anon_sym_u8R_DQUOTE] = ACTIONS(6029), + [sym_literal_suffix] = ACTIONS(5403), }, - [1981] = { - [sym_identifier] = ACTIONS(2643), - [aux_sym_preproc_def_token1] = ACTIONS(2643), - [aux_sym_preproc_if_token1] = ACTIONS(2643), - [aux_sym_preproc_if_token2] = ACTIONS(2643), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2643), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2643), - [sym_preproc_directive] = ACTIONS(2643), - [anon_sym_LPAREN2] = ACTIONS(2645), - [anon_sym_TILDE] = ACTIONS(2645), - [anon_sym_STAR] = ACTIONS(2645), - [anon_sym_AMP_AMP] = ACTIONS(2645), - [anon_sym_AMP] = ACTIONS(2643), - [anon_sym_SEMI] = ACTIONS(2645), - [anon_sym___extension__] = ACTIONS(2643), - [anon_sym_typedef] = ACTIONS(2643), - [anon_sym_virtual] = ACTIONS(2643), - [anon_sym_extern] = ACTIONS(2643), - [anon_sym___attribute__] = ACTIONS(2643), - [anon_sym___attribute] = ACTIONS(2643), - [anon_sym_using] = ACTIONS(2643), - [anon_sym_COLON_COLON] = ACTIONS(2645), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2645), - [anon_sym___declspec] = ACTIONS(2643), - [anon_sym___based] = ACTIONS(2643), - [anon_sym_signed] = ACTIONS(2643), - [anon_sym_unsigned] = ACTIONS(2643), - [anon_sym_long] = ACTIONS(2643), - [anon_sym_short] = ACTIONS(2643), - [anon_sym_LBRACK] = ACTIONS(2643), - [anon_sym_static] = ACTIONS(2643), - [anon_sym_register] = ACTIONS(2643), - [anon_sym_inline] = ACTIONS(2643), - [anon_sym___inline] = ACTIONS(2643), - [anon_sym___inline__] = ACTIONS(2643), - [anon_sym___forceinline] = ACTIONS(2643), - [anon_sym_thread_local] = ACTIONS(2643), - [anon_sym___thread] = ACTIONS(2643), - [anon_sym_const] = ACTIONS(2643), - [anon_sym_constexpr] = ACTIONS(2643), - [anon_sym_volatile] = ACTIONS(2643), - [anon_sym_restrict] = ACTIONS(2643), - [anon_sym___restrict__] = ACTIONS(2643), - [anon_sym__Atomic] = ACTIONS(2643), - [anon_sym__Noreturn] = ACTIONS(2643), - [anon_sym_noreturn] = ACTIONS(2643), - [anon_sym__Nonnull] = ACTIONS(2643), - [anon_sym_mutable] = ACTIONS(2643), - [anon_sym_constinit] = ACTIONS(2643), - [anon_sym_consteval] = ACTIONS(2643), - [anon_sym_alignas] = ACTIONS(2643), - [anon_sym__Alignas] = ACTIONS(2643), - [sym_primitive_type] = ACTIONS(2643), - [anon_sym_enum] = ACTIONS(2643), - [anon_sym_class] = ACTIONS(2643), - [anon_sym_struct] = ACTIONS(2643), - [anon_sym_union] = ACTIONS(2643), + [2050] = { + [sym_identifier] = ACTIONS(3101), + [aux_sym_preproc_def_token1] = ACTIONS(3101), + [aux_sym_preproc_if_token1] = ACTIONS(3101), + [aux_sym_preproc_if_token2] = ACTIONS(3101), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3101), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3101), + [sym_preproc_directive] = ACTIONS(3101), + [anon_sym_LPAREN2] = ACTIONS(3103), + [anon_sym_TILDE] = ACTIONS(3103), + [anon_sym_STAR] = ACTIONS(3103), + [anon_sym_AMP_AMP] = ACTIONS(3103), + [anon_sym_AMP] = ACTIONS(3101), + [anon_sym_SEMI] = ACTIONS(3103), + [anon_sym___extension__] = ACTIONS(3101), + [anon_sym_typedef] = ACTIONS(3101), + [anon_sym_virtual] = ACTIONS(3101), + [anon_sym_extern] = ACTIONS(3101), + [anon_sym___attribute__] = ACTIONS(3101), + [anon_sym___attribute] = ACTIONS(3101), + [anon_sym_using] = ACTIONS(3101), + [anon_sym_COLON_COLON] = ACTIONS(3103), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3103), + [anon_sym___declspec] = ACTIONS(3101), + [anon_sym___based] = ACTIONS(3101), + [anon_sym_signed] = ACTIONS(3101), + [anon_sym_unsigned] = ACTIONS(3101), + [anon_sym_long] = ACTIONS(3101), + [anon_sym_short] = ACTIONS(3101), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_static] = ACTIONS(3101), + [anon_sym_register] = ACTIONS(3101), + [anon_sym_inline] = ACTIONS(3101), + [anon_sym___inline] = ACTIONS(3101), + [anon_sym___inline__] = ACTIONS(3101), + [anon_sym___forceinline] = ACTIONS(3101), + [anon_sym_thread_local] = ACTIONS(3101), + [anon_sym___thread] = ACTIONS(3101), + [anon_sym_const] = ACTIONS(3101), + [anon_sym_constexpr] = ACTIONS(3101), + [anon_sym_volatile] = ACTIONS(3101), + [anon_sym_restrict] = ACTIONS(3101), + [anon_sym___restrict__] = ACTIONS(3101), + [anon_sym__Atomic] = ACTIONS(3101), + [anon_sym__Noreturn] = ACTIONS(3101), + [anon_sym_noreturn] = ACTIONS(3101), + [anon_sym__Nonnull] = ACTIONS(3101), + [anon_sym_mutable] = ACTIONS(3101), + [anon_sym_constinit] = ACTIONS(3101), + [anon_sym_consteval] = ACTIONS(3101), + [anon_sym_alignas] = ACTIONS(3101), + [anon_sym__Alignas] = ACTIONS(3101), + [sym_primitive_type] = ACTIONS(3101), + [anon_sym_enum] = ACTIONS(3101), + [anon_sym_class] = ACTIONS(3101), + [anon_sym_struct] = ACTIONS(3101), + [anon_sym_union] = ACTIONS(3101), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3101), + [anon_sym_decltype] = ACTIONS(3101), + [anon_sym_explicit] = ACTIONS(3101), + [anon_sym_typename] = ACTIONS(3101), + [anon_sym_private] = ACTIONS(3101), + [anon_sym_template] = ACTIONS(3101), + [anon_sym_operator] = ACTIONS(3101), + [anon_sym_friend] = ACTIONS(3101), + [anon_sym_public] = ACTIONS(3101), + [anon_sym_protected] = ACTIONS(3101), + [anon_sym_static_assert] = ACTIONS(3101), + }, + [2051] = { + [sym_identifier] = ACTIONS(2731), + [aux_sym_preproc_def_token1] = ACTIONS(2731), + [aux_sym_preproc_if_token1] = ACTIONS(2731), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2731), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2731), + [sym_preproc_directive] = ACTIONS(2731), + [anon_sym_LPAREN2] = ACTIONS(2733), + [anon_sym_TILDE] = ACTIONS(2733), + [anon_sym_STAR] = ACTIONS(2733), + [anon_sym_AMP_AMP] = ACTIONS(2733), + [anon_sym_AMP] = ACTIONS(2731), + [anon_sym_SEMI] = ACTIONS(2733), + [anon_sym___extension__] = ACTIONS(2731), + [anon_sym_typedef] = ACTIONS(2731), + [anon_sym_virtual] = ACTIONS(2731), + [anon_sym_extern] = ACTIONS(2731), + [anon_sym___attribute__] = ACTIONS(2731), + [anon_sym___attribute] = ACTIONS(2731), + [anon_sym_using] = ACTIONS(2731), + [anon_sym_COLON_COLON] = ACTIONS(2733), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2733), + [anon_sym___declspec] = ACTIONS(2731), + [anon_sym___based] = ACTIONS(2731), + [anon_sym_RBRACE] = ACTIONS(2733), + [anon_sym_signed] = ACTIONS(2731), + [anon_sym_unsigned] = ACTIONS(2731), + [anon_sym_long] = ACTIONS(2731), + [anon_sym_short] = ACTIONS(2731), + [anon_sym_LBRACK] = ACTIONS(2731), + [anon_sym_static] = ACTIONS(2731), + [anon_sym_register] = ACTIONS(2731), + [anon_sym_inline] = ACTIONS(2731), + [anon_sym___inline] = ACTIONS(2731), + [anon_sym___inline__] = ACTIONS(2731), + [anon_sym___forceinline] = ACTIONS(2731), + [anon_sym_thread_local] = ACTIONS(2731), + [anon_sym___thread] = ACTIONS(2731), + [anon_sym_const] = ACTIONS(2731), + [anon_sym_constexpr] = ACTIONS(2731), + [anon_sym_volatile] = ACTIONS(2731), + [anon_sym_restrict] = ACTIONS(2731), + [anon_sym___restrict__] = ACTIONS(2731), + [anon_sym__Atomic] = ACTIONS(2731), + [anon_sym__Noreturn] = ACTIONS(2731), + [anon_sym_noreturn] = ACTIONS(2731), + [anon_sym__Nonnull] = ACTIONS(2731), + [anon_sym_mutable] = ACTIONS(2731), + [anon_sym_constinit] = ACTIONS(2731), + [anon_sym_consteval] = ACTIONS(2731), + [anon_sym_alignas] = ACTIONS(2731), + [anon_sym__Alignas] = ACTIONS(2731), + [sym_primitive_type] = ACTIONS(2731), + [anon_sym_enum] = ACTIONS(2731), + [anon_sym_class] = ACTIONS(2731), + [anon_sym_struct] = ACTIONS(2731), + [anon_sym_union] = ACTIONS(2731), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2643), - [anon_sym_decltype] = ACTIONS(2643), - [anon_sym_explicit] = ACTIONS(2643), - [anon_sym_typename] = ACTIONS(2643), - [anon_sym_private] = ACTIONS(2643), - [anon_sym_template] = ACTIONS(2643), - [anon_sym_operator] = ACTIONS(2643), - [anon_sym_friend] = ACTIONS(2643), - [anon_sym_public] = ACTIONS(2643), - [anon_sym_protected] = ACTIONS(2643), - [anon_sym_static_assert] = ACTIONS(2643), + [sym_auto] = ACTIONS(2731), + [anon_sym_decltype] = ACTIONS(2731), + [anon_sym_explicit] = ACTIONS(2731), + [anon_sym_typename] = ACTIONS(2731), + [anon_sym_private] = ACTIONS(2731), + [anon_sym_template] = ACTIONS(2731), + [anon_sym_operator] = ACTIONS(2731), + [anon_sym_friend] = ACTIONS(2731), + [anon_sym_public] = ACTIONS(2731), + [anon_sym_protected] = ACTIONS(2731), + [anon_sym_static_assert] = ACTIONS(2731), }, - [1982] = { + [2052] = { [sym_identifier] = ACTIONS(5553), [aux_sym_preproc_def_token1] = ACTIONS(5553), [aux_sym_preproc_if_token1] = ACTIONS(5553), @@ -267631,101 +274198,241 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(5553), [anon_sym__Noreturn] = ACTIONS(5553), [anon_sym_noreturn] = ACTIONS(5553), - [anon_sym__Nonnull] = ACTIONS(5553), - [anon_sym_mutable] = ACTIONS(5553), - [anon_sym_constinit] = ACTIONS(5553), - [anon_sym_consteval] = ACTIONS(5553), - [anon_sym_alignas] = ACTIONS(5553), - [anon_sym__Alignas] = ACTIONS(5553), - [sym_primitive_type] = ACTIONS(5553), - [anon_sym_enum] = ACTIONS(5553), - [anon_sym_class] = ACTIONS(5553), - [anon_sym_struct] = ACTIONS(5553), - [anon_sym_union] = ACTIONS(5553), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5553), - [anon_sym_decltype] = ACTIONS(5553), - [anon_sym_explicit] = ACTIONS(5553), - [anon_sym_typename] = ACTIONS(5553), - [anon_sym_private] = ACTIONS(5553), - [anon_sym_template] = ACTIONS(5553), - [anon_sym_operator] = ACTIONS(5553), - [anon_sym_friend] = ACTIONS(5553), - [anon_sym_public] = ACTIONS(5553), - [anon_sym_protected] = ACTIONS(5553), - [anon_sym_static_assert] = ACTIONS(5553), - }, - [1983] = { - [sym_identifier] = ACTIONS(5549), - [aux_sym_preproc_def_token1] = ACTIONS(5549), - [aux_sym_preproc_if_token1] = ACTIONS(5549), - [aux_sym_preproc_if_token2] = ACTIONS(5549), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5549), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5549), - [sym_preproc_directive] = ACTIONS(5549), - [anon_sym_LPAREN2] = ACTIONS(5551), - [anon_sym_TILDE] = ACTIONS(5551), - [anon_sym_STAR] = ACTIONS(5551), - [anon_sym_AMP_AMP] = ACTIONS(5551), - [anon_sym_AMP] = ACTIONS(5549), - [anon_sym_SEMI] = ACTIONS(5551), - [anon_sym___extension__] = ACTIONS(5549), - [anon_sym_typedef] = ACTIONS(5549), - [anon_sym_virtual] = ACTIONS(5549), - [anon_sym_extern] = ACTIONS(5549), - [anon_sym___attribute__] = ACTIONS(5549), - [anon_sym___attribute] = ACTIONS(5549), - [anon_sym_using] = ACTIONS(5549), - [anon_sym_COLON_COLON] = ACTIONS(5551), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5551), - [anon_sym___declspec] = ACTIONS(5549), - [anon_sym___based] = ACTIONS(5549), - [anon_sym_signed] = ACTIONS(5549), - [anon_sym_unsigned] = ACTIONS(5549), - [anon_sym_long] = ACTIONS(5549), - [anon_sym_short] = ACTIONS(5549), - [anon_sym_LBRACK] = ACTIONS(5549), - [anon_sym_static] = ACTIONS(5549), - [anon_sym_register] = ACTIONS(5549), - [anon_sym_inline] = ACTIONS(5549), - [anon_sym___inline] = ACTIONS(5549), - [anon_sym___inline__] = ACTIONS(5549), - [anon_sym___forceinline] = ACTIONS(5549), - [anon_sym_thread_local] = ACTIONS(5549), - [anon_sym___thread] = ACTIONS(5549), - [anon_sym_const] = ACTIONS(5549), - [anon_sym_constexpr] = ACTIONS(5549), - [anon_sym_volatile] = ACTIONS(5549), - [anon_sym_restrict] = ACTIONS(5549), - [anon_sym___restrict__] = ACTIONS(5549), - [anon_sym__Atomic] = ACTIONS(5549), - [anon_sym__Noreturn] = ACTIONS(5549), - [anon_sym_noreturn] = ACTIONS(5549), - [anon_sym__Nonnull] = ACTIONS(5549), - [anon_sym_mutable] = ACTIONS(5549), - [anon_sym_constinit] = ACTIONS(5549), - [anon_sym_consteval] = ACTIONS(5549), - [anon_sym_alignas] = ACTIONS(5549), - [anon_sym__Alignas] = ACTIONS(5549), - [sym_primitive_type] = ACTIONS(5549), - [anon_sym_enum] = ACTIONS(5549), - [anon_sym_class] = ACTIONS(5549), - [anon_sym_struct] = ACTIONS(5549), - [anon_sym_union] = ACTIONS(5549), + [anon_sym__Nonnull] = ACTIONS(5553), + [anon_sym_mutable] = ACTIONS(5553), + [anon_sym_constinit] = ACTIONS(5553), + [anon_sym_consteval] = ACTIONS(5553), + [anon_sym_alignas] = ACTIONS(5553), + [anon_sym__Alignas] = ACTIONS(5553), + [sym_primitive_type] = ACTIONS(5553), + [anon_sym_enum] = ACTIONS(5553), + [anon_sym_class] = ACTIONS(5553), + [anon_sym_struct] = ACTIONS(5553), + [anon_sym_union] = ACTIONS(5553), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5549), - [anon_sym_decltype] = ACTIONS(5549), - [anon_sym_explicit] = ACTIONS(5549), - [anon_sym_typename] = ACTIONS(5549), - [anon_sym_private] = ACTIONS(5549), - [anon_sym_template] = ACTIONS(5549), - [anon_sym_operator] = ACTIONS(5549), - [anon_sym_friend] = ACTIONS(5549), - [anon_sym_public] = ACTIONS(5549), - [anon_sym_protected] = ACTIONS(5549), - [anon_sym_static_assert] = ACTIONS(5549), + [sym_auto] = ACTIONS(5553), + [anon_sym_decltype] = ACTIONS(5553), + [anon_sym_explicit] = ACTIONS(5553), + [anon_sym_typename] = ACTIONS(5553), + [anon_sym_private] = ACTIONS(5553), + [anon_sym_template] = ACTIONS(5553), + [anon_sym_operator] = ACTIONS(5553), + [anon_sym_friend] = ACTIONS(5553), + [anon_sym_public] = ACTIONS(5553), + [anon_sym_protected] = ACTIONS(5553), + [anon_sym_static_assert] = ACTIONS(5553), }, - [1984] = { + [2053] = { + [sym_identifier] = ACTIONS(3105), + [aux_sym_preproc_def_token1] = ACTIONS(3105), + [aux_sym_preproc_if_token1] = ACTIONS(3105), + [aux_sym_preproc_if_token2] = ACTIONS(3105), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3105), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3105), + [sym_preproc_directive] = ACTIONS(3105), + [anon_sym_LPAREN2] = ACTIONS(3107), + [anon_sym_TILDE] = ACTIONS(3107), + [anon_sym_STAR] = ACTIONS(3107), + [anon_sym_AMP_AMP] = ACTIONS(3107), + [anon_sym_AMP] = ACTIONS(3105), + [anon_sym_SEMI] = ACTIONS(3107), + [anon_sym___extension__] = ACTIONS(3105), + [anon_sym_typedef] = ACTIONS(3105), + [anon_sym_virtual] = ACTIONS(3105), + [anon_sym_extern] = ACTIONS(3105), + [anon_sym___attribute__] = ACTIONS(3105), + [anon_sym___attribute] = ACTIONS(3105), + [anon_sym_using] = ACTIONS(3105), + [anon_sym_COLON_COLON] = ACTIONS(3107), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3107), + [anon_sym___declspec] = ACTIONS(3105), + [anon_sym___based] = ACTIONS(3105), + [anon_sym_signed] = ACTIONS(3105), + [anon_sym_unsigned] = ACTIONS(3105), + [anon_sym_long] = ACTIONS(3105), + [anon_sym_short] = ACTIONS(3105), + [anon_sym_LBRACK] = ACTIONS(3105), + [anon_sym_static] = ACTIONS(3105), + [anon_sym_register] = ACTIONS(3105), + [anon_sym_inline] = ACTIONS(3105), + [anon_sym___inline] = ACTIONS(3105), + [anon_sym___inline__] = ACTIONS(3105), + [anon_sym___forceinline] = ACTIONS(3105), + [anon_sym_thread_local] = ACTIONS(3105), + [anon_sym___thread] = ACTIONS(3105), + [anon_sym_const] = ACTIONS(3105), + [anon_sym_constexpr] = ACTIONS(3105), + [anon_sym_volatile] = ACTIONS(3105), + [anon_sym_restrict] = ACTIONS(3105), + [anon_sym___restrict__] = ACTIONS(3105), + [anon_sym__Atomic] = ACTIONS(3105), + [anon_sym__Noreturn] = ACTIONS(3105), + [anon_sym_noreturn] = ACTIONS(3105), + [anon_sym__Nonnull] = ACTIONS(3105), + [anon_sym_mutable] = ACTIONS(3105), + [anon_sym_constinit] = ACTIONS(3105), + [anon_sym_consteval] = ACTIONS(3105), + [anon_sym_alignas] = ACTIONS(3105), + [anon_sym__Alignas] = ACTIONS(3105), + [sym_primitive_type] = ACTIONS(3105), + [anon_sym_enum] = ACTIONS(3105), + [anon_sym_class] = ACTIONS(3105), + [anon_sym_struct] = ACTIONS(3105), + [anon_sym_union] = ACTIONS(3105), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3105), + [anon_sym_decltype] = ACTIONS(3105), + [anon_sym_explicit] = ACTIONS(3105), + [anon_sym_typename] = ACTIONS(3105), + [anon_sym_private] = ACTIONS(3105), + [anon_sym_template] = ACTIONS(3105), + [anon_sym_operator] = ACTIONS(3105), + [anon_sym_friend] = ACTIONS(3105), + [anon_sym_public] = ACTIONS(3105), + [anon_sym_protected] = ACTIONS(3105), + [anon_sym_static_assert] = ACTIONS(3105), + }, + [2054] = { + [sym_string_literal] = STATE(2087), + [sym_raw_string_literal] = STATE(2087), + [aux_sym_concatenated_string_repeat1] = STATE(2087), + [sym_identifier] = ACTIONS(6043), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5395), + [anon_sym_COMMA] = ACTIONS(5395), + [anon_sym_LPAREN2] = ACTIONS(5395), + [anon_sym_DASH] = ACTIONS(5397), + [anon_sym_PLUS] = ACTIONS(5397), + [anon_sym_STAR] = ACTIONS(5397), + [anon_sym_SLASH] = ACTIONS(5397), + [anon_sym_PERCENT] = ACTIONS(5397), + [anon_sym_PIPE_PIPE] = ACTIONS(5395), + [anon_sym_AMP_AMP] = ACTIONS(5395), + [anon_sym_PIPE] = ACTIONS(5397), + [anon_sym_CARET] = ACTIONS(5397), + [anon_sym_AMP] = ACTIONS(5397), + [anon_sym_EQ_EQ] = ACTIONS(5395), + [anon_sym_BANG_EQ] = ACTIONS(5395), + [anon_sym_GT] = ACTIONS(5397), + [anon_sym_GT_EQ] = ACTIONS(5395), + [anon_sym_LT_EQ] = ACTIONS(5397), + [anon_sym_LT] = ACTIONS(5397), + [anon_sym_LT_LT] = ACTIONS(5397), + [anon_sym_GT_GT] = ACTIONS(5397), + [anon_sym_SEMI] = ACTIONS(5395), + [anon_sym___attribute__] = ACTIONS(5397), + [anon_sym___attribute] = ACTIONS(5397), + [anon_sym_LBRACK] = ACTIONS(5395), + [anon_sym_EQ] = ACTIONS(5397), + [anon_sym_QMARK] = ACTIONS(5395), + [anon_sym_STAR_EQ] = ACTIONS(5395), + [anon_sym_SLASH_EQ] = ACTIONS(5395), + [anon_sym_PERCENT_EQ] = ACTIONS(5395), + [anon_sym_PLUS_EQ] = ACTIONS(5395), + [anon_sym_DASH_EQ] = ACTIONS(5395), + [anon_sym_LT_LT_EQ] = ACTIONS(5395), + [anon_sym_GT_GT_EQ] = ACTIONS(5395), + [anon_sym_AMP_EQ] = ACTIONS(5395), + [anon_sym_CARET_EQ] = ACTIONS(5395), + [anon_sym_PIPE_EQ] = ACTIONS(5395), + [anon_sym_and_eq] = ACTIONS(5397), + [anon_sym_or_eq] = ACTIONS(5397), + [anon_sym_xor_eq] = ACTIONS(5397), + [anon_sym_LT_EQ_GT] = ACTIONS(5395), + [anon_sym_or] = ACTIONS(5397), + [anon_sym_and] = ACTIONS(5397), + [anon_sym_bitor] = ACTIONS(5397), + [anon_sym_xor] = ACTIONS(5397), + [anon_sym_bitand] = ACTIONS(5397), + [anon_sym_not_eq] = ACTIONS(5397), + [anon_sym_DASH_DASH] = ACTIONS(5395), + [anon_sym_PLUS_PLUS] = ACTIONS(5395), + [anon_sym_DOT] = ACTIONS(5397), + [anon_sym_DOT_STAR] = ACTIONS(5395), + [anon_sym_DASH_GT] = ACTIONS(5395), + [anon_sym_L_DQUOTE] = ACTIONS(6027), + [anon_sym_u_DQUOTE] = ACTIONS(6027), + [anon_sym_U_DQUOTE] = ACTIONS(6027), + [anon_sym_u8_DQUOTE] = ACTIONS(6027), + [anon_sym_DQUOTE] = ACTIONS(6027), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(6029), + [anon_sym_LR_DQUOTE] = ACTIONS(6029), + [anon_sym_uR_DQUOTE] = ACTIONS(6029), + [anon_sym_UR_DQUOTE] = ACTIONS(6029), + [anon_sym_u8R_DQUOTE] = ACTIONS(6029), + [sym_literal_suffix] = ACTIONS(5397), + }, + [2055] = { + [sym_identifier] = ACTIONS(2703), + [aux_sym_preproc_def_token1] = ACTIONS(2703), + [aux_sym_preproc_if_token1] = ACTIONS(2703), + [aux_sym_preproc_if_token2] = ACTIONS(2703), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2703), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2703), + [sym_preproc_directive] = ACTIONS(2703), + [anon_sym_LPAREN2] = ACTIONS(2705), + [anon_sym_TILDE] = ACTIONS(2705), + [anon_sym_STAR] = ACTIONS(2705), + [anon_sym_AMP_AMP] = ACTIONS(2705), + [anon_sym_AMP] = ACTIONS(2703), + [anon_sym_SEMI] = ACTIONS(2705), + [anon_sym___extension__] = ACTIONS(2703), + [anon_sym_typedef] = ACTIONS(2703), + [anon_sym_virtual] = ACTIONS(2703), + [anon_sym_extern] = ACTIONS(2703), + [anon_sym___attribute__] = ACTIONS(2703), + [anon_sym___attribute] = ACTIONS(2703), + [anon_sym_using] = ACTIONS(2703), + [anon_sym_COLON_COLON] = ACTIONS(2705), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2705), + [anon_sym___declspec] = ACTIONS(2703), + [anon_sym___based] = ACTIONS(2703), + [anon_sym_signed] = ACTIONS(2703), + [anon_sym_unsigned] = ACTIONS(2703), + [anon_sym_long] = ACTIONS(2703), + [anon_sym_short] = ACTIONS(2703), + [anon_sym_LBRACK] = ACTIONS(2703), + [anon_sym_static] = ACTIONS(2703), + [anon_sym_register] = ACTIONS(2703), + [anon_sym_inline] = ACTIONS(2703), + [anon_sym___inline] = ACTIONS(2703), + [anon_sym___inline__] = ACTIONS(2703), + [anon_sym___forceinline] = ACTIONS(2703), + [anon_sym_thread_local] = ACTIONS(2703), + [anon_sym___thread] = ACTIONS(2703), + [anon_sym_const] = ACTIONS(2703), + [anon_sym_constexpr] = ACTIONS(2703), + [anon_sym_volatile] = ACTIONS(2703), + [anon_sym_restrict] = ACTIONS(2703), + [anon_sym___restrict__] = ACTIONS(2703), + [anon_sym__Atomic] = ACTIONS(2703), + [anon_sym__Noreturn] = ACTIONS(2703), + [anon_sym_noreturn] = ACTIONS(2703), + [anon_sym__Nonnull] = ACTIONS(2703), + [anon_sym_mutable] = ACTIONS(2703), + [anon_sym_constinit] = ACTIONS(2703), + [anon_sym_consteval] = ACTIONS(2703), + [anon_sym_alignas] = ACTIONS(2703), + [anon_sym__Alignas] = ACTIONS(2703), + [sym_primitive_type] = ACTIONS(2703), + [anon_sym_enum] = ACTIONS(2703), + [anon_sym_class] = ACTIONS(2703), + [anon_sym_struct] = ACTIONS(2703), + [anon_sym_union] = ACTIONS(2703), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2703), + [anon_sym_decltype] = ACTIONS(2703), + [anon_sym_explicit] = ACTIONS(2703), + [anon_sym_typename] = ACTIONS(2703), + [anon_sym_private] = ACTIONS(2703), + [anon_sym_template] = ACTIONS(2703), + [anon_sym_operator] = ACTIONS(2703), + [anon_sym_friend] = ACTIONS(2703), + [anon_sym_public] = ACTIONS(2703), + [anon_sym_protected] = ACTIONS(2703), + [anon_sym_static_assert] = ACTIONS(2703), + }, + [2056] = { [sym_identifier] = ACTIONS(5549), [aux_sym_preproc_def_token1] = ACTIONS(5549), [aux_sym_preproc_if_token1] = ACTIONS(5549), @@ -267795,7 +274502,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(5549), [anon_sym_static_assert] = ACTIONS(5549), }, - [1985] = { + [2057] = { [sym_identifier] = ACTIONS(5553), [aux_sym_preproc_def_token1] = ACTIONS(5553), [aux_sym_preproc_if_token1] = ACTIONS(5553), @@ -267865,147 +274572,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(5553), [anon_sym_static_assert] = ACTIONS(5553), }, - [1986] = { - [sym_identifier] = ACTIONS(5561), - [aux_sym_preproc_def_token1] = ACTIONS(5561), - [aux_sym_preproc_if_token1] = ACTIONS(5561), - [aux_sym_preproc_if_token2] = ACTIONS(5561), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5561), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5561), - [sym_preproc_directive] = ACTIONS(5561), - [anon_sym_LPAREN2] = ACTIONS(5563), - [anon_sym_TILDE] = ACTIONS(5563), - [anon_sym_STAR] = ACTIONS(5563), - [anon_sym_AMP_AMP] = ACTIONS(5563), - [anon_sym_AMP] = ACTIONS(5561), - [anon_sym_SEMI] = ACTIONS(5563), - [anon_sym___extension__] = ACTIONS(5561), - [anon_sym_typedef] = ACTIONS(5561), - [anon_sym_virtual] = ACTIONS(5561), - [anon_sym_extern] = ACTIONS(5561), - [anon_sym___attribute__] = ACTIONS(5561), - [anon_sym___attribute] = ACTIONS(5561), - [anon_sym_using] = ACTIONS(5561), - [anon_sym_COLON_COLON] = ACTIONS(5563), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5563), - [anon_sym___declspec] = ACTIONS(5561), - [anon_sym___based] = ACTIONS(5561), - [anon_sym_signed] = ACTIONS(5561), - [anon_sym_unsigned] = ACTIONS(5561), - [anon_sym_long] = ACTIONS(5561), - [anon_sym_short] = ACTIONS(5561), - [anon_sym_LBRACK] = ACTIONS(5561), - [anon_sym_static] = ACTIONS(5561), - [anon_sym_register] = ACTIONS(5561), - [anon_sym_inline] = ACTIONS(5561), - [anon_sym___inline] = ACTIONS(5561), - [anon_sym___inline__] = ACTIONS(5561), - [anon_sym___forceinline] = ACTIONS(5561), - [anon_sym_thread_local] = ACTIONS(5561), - [anon_sym___thread] = ACTIONS(5561), - [anon_sym_const] = ACTIONS(5561), - [anon_sym_constexpr] = ACTIONS(5561), - [anon_sym_volatile] = ACTIONS(5561), - [anon_sym_restrict] = ACTIONS(5561), - [anon_sym___restrict__] = ACTIONS(5561), - [anon_sym__Atomic] = ACTIONS(5561), - [anon_sym__Noreturn] = ACTIONS(5561), - [anon_sym_noreturn] = ACTIONS(5561), - [anon_sym__Nonnull] = ACTIONS(5561), - [anon_sym_mutable] = ACTIONS(5561), - [anon_sym_constinit] = ACTIONS(5561), - [anon_sym_consteval] = ACTIONS(5561), - [anon_sym_alignas] = ACTIONS(5561), - [anon_sym__Alignas] = ACTIONS(5561), - [sym_primitive_type] = ACTIONS(5561), - [anon_sym_enum] = ACTIONS(5561), - [anon_sym_class] = ACTIONS(5561), - [anon_sym_struct] = ACTIONS(5561), - [anon_sym_union] = ACTIONS(5561), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5561), - [anon_sym_decltype] = ACTIONS(5561), - [anon_sym_explicit] = ACTIONS(5561), - [anon_sym_typename] = ACTIONS(5561), - [anon_sym_private] = ACTIONS(5561), - [anon_sym_template] = ACTIONS(5561), - [anon_sym_operator] = ACTIONS(5561), - [anon_sym_friend] = ACTIONS(5561), - [anon_sym_public] = ACTIONS(5561), - [anon_sym_protected] = ACTIONS(5561), - [anon_sym_static_assert] = ACTIONS(5561), - }, - [1987] = { - [sym_identifier] = ACTIONS(5565), - [aux_sym_preproc_def_token1] = ACTIONS(5565), - [aux_sym_preproc_if_token1] = ACTIONS(5565), - [aux_sym_preproc_if_token2] = ACTIONS(5565), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5565), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5565), - [sym_preproc_directive] = ACTIONS(5565), - [anon_sym_LPAREN2] = ACTIONS(5567), - [anon_sym_TILDE] = ACTIONS(5567), - [anon_sym_STAR] = ACTIONS(5567), - [anon_sym_AMP_AMP] = ACTIONS(5567), - [anon_sym_AMP] = ACTIONS(5565), - [anon_sym_SEMI] = ACTIONS(5567), - [anon_sym___extension__] = ACTIONS(5565), - [anon_sym_typedef] = ACTIONS(5565), - [anon_sym_virtual] = ACTIONS(5565), - [anon_sym_extern] = ACTIONS(5565), - [anon_sym___attribute__] = ACTIONS(5565), - [anon_sym___attribute] = ACTIONS(5565), - [anon_sym_using] = ACTIONS(5565), - [anon_sym_COLON_COLON] = ACTIONS(5567), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5567), - [anon_sym___declspec] = ACTIONS(5565), - [anon_sym___based] = ACTIONS(5565), - [anon_sym_signed] = ACTIONS(5565), - [anon_sym_unsigned] = ACTIONS(5565), - [anon_sym_long] = ACTIONS(5565), - [anon_sym_short] = ACTIONS(5565), - [anon_sym_LBRACK] = ACTIONS(5565), - [anon_sym_static] = ACTIONS(5565), - [anon_sym_register] = ACTIONS(5565), - [anon_sym_inline] = ACTIONS(5565), - [anon_sym___inline] = ACTIONS(5565), - [anon_sym___inline__] = ACTIONS(5565), - [anon_sym___forceinline] = ACTIONS(5565), - [anon_sym_thread_local] = ACTIONS(5565), - [anon_sym___thread] = ACTIONS(5565), - [anon_sym_const] = ACTIONS(5565), - [anon_sym_constexpr] = ACTIONS(5565), - [anon_sym_volatile] = ACTIONS(5565), - [anon_sym_restrict] = ACTIONS(5565), - [anon_sym___restrict__] = ACTIONS(5565), - [anon_sym__Atomic] = ACTIONS(5565), - [anon_sym__Noreturn] = ACTIONS(5565), - [anon_sym_noreturn] = ACTIONS(5565), - [anon_sym__Nonnull] = ACTIONS(5565), - [anon_sym_mutable] = ACTIONS(5565), - [anon_sym_constinit] = ACTIONS(5565), - [anon_sym_consteval] = ACTIONS(5565), - [anon_sym_alignas] = ACTIONS(5565), - [anon_sym__Alignas] = ACTIONS(5565), - [sym_primitive_type] = ACTIONS(5565), - [anon_sym_enum] = ACTIONS(5565), - [anon_sym_class] = ACTIONS(5565), - [anon_sym_struct] = ACTIONS(5565), - [anon_sym_union] = ACTIONS(5565), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5565), - [anon_sym_decltype] = ACTIONS(5565), - [anon_sym_explicit] = ACTIONS(5565), - [anon_sym_typename] = ACTIONS(5565), - [anon_sym_private] = ACTIONS(5565), - [anon_sym_template] = ACTIONS(5565), - [anon_sym_operator] = ACTIONS(5565), - [anon_sym_friend] = ACTIONS(5565), - [anon_sym_public] = ACTIONS(5565), - [anon_sym_protected] = ACTIONS(5565), - [anon_sym_static_assert] = ACTIONS(5565), + [2058] = { + [sym_identifier] = ACTIONS(2731), + [aux_sym_preproc_def_token1] = ACTIONS(2731), + [aux_sym_preproc_if_token1] = ACTIONS(2731), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2731), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2731), + [sym_preproc_directive] = ACTIONS(2731), + [anon_sym_LPAREN2] = ACTIONS(2733), + [anon_sym_TILDE] = ACTIONS(2733), + [anon_sym_STAR] = ACTIONS(2733), + [anon_sym_AMP_AMP] = ACTIONS(2733), + [anon_sym_AMP] = ACTIONS(2731), + [anon_sym_SEMI] = ACTIONS(2733), + [anon_sym___extension__] = ACTIONS(2731), + [anon_sym_typedef] = ACTIONS(2731), + [anon_sym_virtual] = ACTIONS(2731), + [anon_sym_extern] = ACTIONS(2731), + [anon_sym___attribute__] = ACTIONS(2731), + [anon_sym___attribute] = ACTIONS(2731), + [anon_sym_using] = ACTIONS(2731), + [anon_sym_COLON_COLON] = ACTIONS(2733), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2733), + [anon_sym___declspec] = ACTIONS(2731), + [anon_sym___based] = ACTIONS(2731), + [anon_sym_RBRACE] = ACTIONS(2733), + [anon_sym_signed] = ACTIONS(2731), + [anon_sym_unsigned] = ACTIONS(2731), + [anon_sym_long] = ACTIONS(2731), + [anon_sym_short] = ACTIONS(2731), + [anon_sym_LBRACK] = ACTIONS(2731), + [anon_sym_static] = ACTIONS(2731), + [anon_sym_register] = ACTIONS(2731), + [anon_sym_inline] = ACTIONS(2731), + [anon_sym___inline] = ACTIONS(2731), + [anon_sym___inline__] = ACTIONS(2731), + [anon_sym___forceinline] = ACTIONS(2731), + [anon_sym_thread_local] = ACTIONS(2731), + [anon_sym___thread] = ACTIONS(2731), + [anon_sym_const] = ACTIONS(2731), + [anon_sym_constexpr] = ACTIONS(2731), + [anon_sym_volatile] = ACTIONS(2731), + [anon_sym_restrict] = ACTIONS(2731), + [anon_sym___restrict__] = ACTIONS(2731), + [anon_sym__Atomic] = ACTIONS(2731), + [anon_sym__Noreturn] = ACTIONS(2731), + [anon_sym_noreturn] = ACTIONS(2731), + [anon_sym__Nonnull] = ACTIONS(2731), + [anon_sym_mutable] = ACTIONS(2731), + [anon_sym_constinit] = ACTIONS(2731), + [anon_sym_consteval] = ACTIONS(2731), + [anon_sym_alignas] = ACTIONS(2731), + [anon_sym__Alignas] = ACTIONS(2731), + [sym_primitive_type] = ACTIONS(2731), + [anon_sym_enum] = ACTIONS(2731), + [anon_sym_class] = ACTIONS(2731), + [anon_sym_struct] = ACTIONS(2731), + [anon_sym_union] = ACTIONS(2731), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2731), + [anon_sym_decltype] = ACTIONS(2731), + [anon_sym_explicit] = ACTIONS(2731), + [anon_sym_typename] = ACTIONS(2731), + [anon_sym_private] = ACTIONS(2731), + [anon_sym_template] = ACTIONS(2731), + [anon_sym_operator] = ACTIONS(2731), + [anon_sym_friend] = ACTIONS(2731), + [anon_sym_public] = ACTIONS(2731), + [anon_sym_protected] = ACTIONS(2731), + [anon_sym_static_assert] = ACTIONS(2731), }, - [1988] = { + [2059] = { [sym_identifier] = ACTIONS(5569), [aux_sym_preproc_def_token1] = ACTIONS(5569), [aux_sym_preproc_if_token1] = ACTIONS(5569), @@ -268075,427 +274712,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(5569), [anon_sym_static_assert] = ACTIONS(5569), }, - [1989] = { - [sym_identifier] = ACTIONS(2843), - [aux_sym_preproc_def_token1] = ACTIONS(2843), - [aux_sym_preproc_if_token1] = ACTIONS(2843), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2843), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2843), - [sym_preproc_directive] = ACTIONS(2843), - [anon_sym_LPAREN2] = ACTIONS(2845), - [anon_sym_TILDE] = ACTIONS(2845), - [anon_sym_STAR] = ACTIONS(2845), - [anon_sym_AMP_AMP] = ACTIONS(2845), - [anon_sym_AMP] = ACTIONS(2843), - [anon_sym_SEMI] = ACTIONS(2845), - [anon_sym___extension__] = ACTIONS(2843), - [anon_sym_typedef] = ACTIONS(2843), - [anon_sym_virtual] = ACTIONS(2843), - [anon_sym_extern] = ACTIONS(2843), - [anon_sym___attribute__] = ACTIONS(2843), - [anon_sym___attribute] = ACTIONS(2843), - [anon_sym_using] = ACTIONS(2843), - [anon_sym_COLON_COLON] = ACTIONS(2845), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2845), - [anon_sym___declspec] = ACTIONS(2843), - [anon_sym___based] = ACTIONS(2843), - [anon_sym_RBRACE] = ACTIONS(2845), - [anon_sym_signed] = ACTIONS(2843), - [anon_sym_unsigned] = ACTIONS(2843), - [anon_sym_long] = ACTIONS(2843), - [anon_sym_short] = ACTIONS(2843), - [anon_sym_LBRACK] = ACTIONS(2843), - [anon_sym_static] = ACTIONS(2843), - [anon_sym_register] = ACTIONS(2843), - [anon_sym_inline] = ACTIONS(2843), - [anon_sym___inline] = ACTIONS(2843), - [anon_sym___inline__] = ACTIONS(2843), - [anon_sym___forceinline] = ACTIONS(2843), - [anon_sym_thread_local] = ACTIONS(2843), - [anon_sym___thread] = ACTIONS(2843), - [anon_sym_const] = ACTIONS(2843), - [anon_sym_constexpr] = ACTIONS(2843), - [anon_sym_volatile] = ACTIONS(2843), - [anon_sym_restrict] = ACTIONS(2843), - [anon_sym___restrict__] = ACTIONS(2843), - [anon_sym__Atomic] = ACTIONS(2843), - [anon_sym__Noreturn] = ACTIONS(2843), - [anon_sym_noreturn] = ACTIONS(2843), - [anon_sym__Nonnull] = ACTIONS(2843), - [anon_sym_mutable] = ACTIONS(2843), - [anon_sym_constinit] = ACTIONS(2843), - [anon_sym_consteval] = ACTIONS(2843), - [anon_sym_alignas] = ACTIONS(2843), - [anon_sym__Alignas] = ACTIONS(2843), - [sym_primitive_type] = ACTIONS(2843), - [anon_sym_enum] = ACTIONS(2843), - [anon_sym_class] = ACTIONS(2843), - [anon_sym_struct] = ACTIONS(2843), - [anon_sym_union] = ACTIONS(2843), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2843), - [anon_sym_decltype] = ACTIONS(2843), - [anon_sym_explicit] = ACTIONS(2843), - [anon_sym_typename] = ACTIONS(2843), - [anon_sym_private] = ACTIONS(2843), - [anon_sym_template] = ACTIONS(2843), - [anon_sym_operator] = ACTIONS(2843), - [anon_sym_friend] = ACTIONS(2843), - [anon_sym_public] = ACTIONS(2843), - [anon_sym_protected] = ACTIONS(2843), - [anon_sym_static_assert] = ACTIONS(2843), - }, - [1990] = { - [sym_identifier] = ACTIONS(2703), - [aux_sym_preproc_def_token1] = ACTIONS(2703), - [aux_sym_preproc_if_token1] = ACTIONS(2703), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2703), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2703), - [sym_preproc_directive] = ACTIONS(2703), - [anon_sym_LPAREN2] = ACTIONS(2705), - [anon_sym_TILDE] = ACTIONS(2705), - [anon_sym_STAR] = ACTIONS(2705), - [anon_sym_AMP_AMP] = ACTIONS(2705), - [anon_sym_AMP] = ACTIONS(2703), - [anon_sym_SEMI] = ACTIONS(2705), - [anon_sym___extension__] = ACTIONS(2703), - [anon_sym_typedef] = ACTIONS(2703), - [anon_sym_virtual] = ACTIONS(2703), - [anon_sym_extern] = ACTIONS(2703), - [anon_sym___attribute__] = ACTIONS(2703), - [anon_sym___attribute] = ACTIONS(2703), - [anon_sym_using] = ACTIONS(2703), - [anon_sym_COLON_COLON] = ACTIONS(2705), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2705), - [anon_sym___declspec] = ACTIONS(2703), - [anon_sym___based] = ACTIONS(2703), - [anon_sym_RBRACE] = ACTIONS(2705), - [anon_sym_signed] = ACTIONS(2703), - [anon_sym_unsigned] = ACTIONS(2703), - [anon_sym_long] = ACTIONS(2703), - [anon_sym_short] = ACTIONS(2703), - [anon_sym_LBRACK] = ACTIONS(2703), - [anon_sym_static] = ACTIONS(2703), - [anon_sym_register] = ACTIONS(2703), - [anon_sym_inline] = ACTIONS(2703), - [anon_sym___inline] = ACTIONS(2703), - [anon_sym___inline__] = ACTIONS(2703), - [anon_sym___forceinline] = ACTIONS(2703), - [anon_sym_thread_local] = ACTIONS(2703), - [anon_sym___thread] = ACTIONS(2703), - [anon_sym_const] = ACTIONS(2703), - [anon_sym_constexpr] = ACTIONS(2703), - [anon_sym_volatile] = ACTIONS(2703), - [anon_sym_restrict] = ACTIONS(2703), - [anon_sym___restrict__] = ACTIONS(2703), - [anon_sym__Atomic] = ACTIONS(2703), - [anon_sym__Noreturn] = ACTIONS(2703), - [anon_sym_noreturn] = ACTIONS(2703), - [anon_sym__Nonnull] = ACTIONS(2703), - [anon_sym_mutable] = ACTIONS(2703), - [anon_sym_constinit] = ACTIONS(2703), - [anon_sym_consteval] = ACTIONS(2703), - [anon_sym_alignas] = ACTIONS(2703), - [anon_sym__Alignas] = ACTIONS(2703), - [sym_primitive_type] = ACTIONS(2703), - [anon_sym_enum] = ACTIONS(2703), - [anon_sym_class] = ACTIONS(2703), - [anon_sym_struct] = ACTIONS(2703), - [anon_sym_union] = ACTIONS(2703), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2703), - [anon_sym_decltype] = ACTIONS(2703), - [anon_sym_explicit] = ACTIONS(2703), - [anon_sym_typename] = ACTIONS(2703), - [anon_sym_private] = ACTIONS(2703), - [anon_sym_template] = ACTIONS(2703), - [anon_sym_operator] = ACTIONS(2703), - [anon_sym_friend] = ACTIONS(2703), - [anon_sym_public] = ACTIONS(2703), - [anon_sym_protected] = ACTIONS(2703), - [anon_sym_static_assert] = ACTIONS(2703), - }, - [1991] = { - [sym_identifier] = ACTIONS(2843), - [aux_sym_preproc_def_token1] = ACTIONS(2843), - [aux_sym_preproc_if_token1] = ACTIONS(2843), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2843), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2843), - [sym_preproc_directive] = ACTIONS(2843), - [anon_sym_LPAREN2] = ACTIONS(2845), - [anon_sym_TILDE] = ACTIONS(2845), - [anon_sym_STAR] = ACTIONS(2845), - [anon_sym_AMP_AMP] = ACTIONS(2845), - [anon_sym_AMP] = ACTIONS(2843), - [anon_sym_SEMI] = ACTIONS(2845), - [anon_sym___extension__] = ACTIONS(2843), - [anon_sym_typedef] = ACTIONS(2843), - [anon_sym_virtual] = ACTIONS(2843), - [anon_sym_extern] = ACTIONS(2843), - [anon_sym___attribute__] = ACTIONS(2843), - [anon_sym___attribute] = ACTIONS(2843), - [anon_sym_using] = ACTIONS(2843), - [anon_sym_COLON_COLON] = ACTIONS(2845), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2845), - [anon_sym___declspec] = ACTIONS(2843), - [anon_sym___based] = ACTIONS(2843), - [anon_sym_RBRACE] = ACTIONS(2845), - [anon_sym_signed] = ACTIONS(2843), - [anon_sym_unsigned] = ACTIONS(2843), - [anon_sym_long] = ACTIONS(2843), - [anon_sym_short] = ACTIONS(2843), - [anon_sym_LBRACK] = ACTIONS(2843), - [anon_sym_static] = ACTIONS(2843), - [anon_sym_register] = ACTIONS(2843), - [anon_sym_inline] = ACTIONS(2843), - [anon_sym___inline] = ACTIONS(2843), - [anon_sym___inline__] = ACTIONS(2843), - [anon_sym___forceinline] = ACTIONS(2843), - [anon_sym_thread_local] = ACTIONS(2843), - [anon_sym___thread] = ACTIONS(2843), - [anon_sym_const] = ACTIONS(2843), - [anon_sym_constexpr] = ACTIONS(2843), - [anon_sym_volatile] = ACTIONS(2843), - [anon_sym_restrict] = ACTIONS(2843), - [anon_sym___restrict__] = ACTIONS(2843), - [anon_sym__Atomic] = ACTIONS(2843), - [anon_sym__Noreturn] = ACTIONS(2843), - [anon_sym_noreturn] = ACTIONS(2843), - [anon_sym__Nonnull] = ACTIONS(2843), - [anon_sym_mutable] = ACTIONS(2843), - [anon_sym_constinit] = ACTIONS(2843), - [anon_sym_consteval] = ACTIONS(2843), - [anon_sym_alignas] = ACTIONS(2843), - [anon_sym__Alignas] = ACTIONS(2843), - [sym_primitive_type] = ACTIONS(2843), - [anon_sym_enum] = ACTIONS(2843), - [anon_sym_class] = ACTIONS(2843), - [anon_sym_struct] = ACTIONS(2843), - [anon_sym_union] = ACTIONS(2843), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2843), - [anon_sym_decltype] = ACTIONS(2843), - [anon_sym_explicit] = ACTIONS(2843), - [anon_sym_typename] = ACTIONS(2843), - [anon_sym_private] = ACTIONS(2843), - [anon_sym_template] = ACTIONS(2843), - [anon_sym_operator] = ACTIONS(2843), - [anon_sym_friend] = ACTIONS(2843), - [anon_sym_public] = ACTIONS(2843), - [anon_sym_protected] = ACTIONS(2843), - [anon_sym_static_assert] = ACTIONS(2843), - }, - [1992] = { - [sym_string_literal] = STATE(2005), - [sym_raw_string_literal] = STATE(2005), - [aux_sym_concatenated_string_repeat1] = STATE(2005), - [sym_identifier] = ACTIONS(5952), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5390), - [anon_sym_COMMA] = ACTIONS(5390), - [anon_sym_LPAREN2] = ACTIONS(5390), - [anon_sym_DASH] = ACTIONS(5392), - [anon_sym_PLUS] = ACTIONS(5392), - [anon_sym_STAR] = ACTIONS(5392), - [anon_sym_SLASH] = ACTIONS(5392), - [anon_sym_PERCENT] = ACTIONS(5392), - [anon_sym_PIPE_PIPE] = ACTIONS(5390), - [anon_sym_AMP_AMP] = ACTIONS(5390), - [anon_sym_PIPE] = ACTIONS(5392), - [anon_sym_CARET] = ACTIONS(5392), - [anon_sym_AMP] = ACTIONS(5392), - [anon_sym_EQ_EQ] = ACTIONS(5390), - [anon_sym_BANG_EQ] = ACTIONS(5390), - [anon_sym_GT] = ACTIONS(5392), - [anon_sym_GT_EQ] = ACTIONS(5390), - [anon_sym_LT_EQ] = ACTIONS(5392), - [anon_sym_LT] = ACTIONS(5392), - [anon_sym_LT_LT] = ACTIONS(5392), - [anon_sym_GT_GT] = ACTIONS(5392), - [anon_sym_SEMI] = ACTIONS(5390), - [anon_sym___attribute__] = ACTIONS(5392), - [anon_sym___attribute] = ACTIONS(5392), - [anon_sym_LBRACK] = ACTIONS(5390), - [anon_sym_EQ] = ACTIONS(5392), - [anon_sym_QMARK] = ACTIONS(5390), - [anon_sym_STAR_EQ] = ACTIONS(5390), - [anon_sym_SLASH_EQ] = ACTIONS(5390), - [anon_sym_PERCENT_EQ] = ACTIONS(5390), - [anon_sym_PLUS_EQ] = ACTIONS(5390), - [anon_sym_DASH_EQ] = ACTIONS(5390), - [anon_sym_LT_LT_EQ] = ACTIONS(5390), - [anon_sym_GT_GT_EQ] = ACTIONS(5390), - [anon_sym_AMP_EQ] = ACTIONS(5390), - [anon_sym_CARET_EQ] = ACTIONS(5390), - [anon_sym_PIPE_EQ] = ACTIONS(5390), - [anon_sym_and_eq] = ACTIONS(5392), - [anon_sym_or_eq] = ACTIONS(5392), - [anon_sym_xor_eq] = ACTIONS(5392), - [anon_sym_LT_EQ_GT] = ACTIONS(5390), - [anon_sym_or] = ACTIONS(5392), - [anon_sym_and] = ACTIONS(5392), - [anon_sym_bitor] = ACTIONS(5392), - [anon_sym_xor] = ACTIONS(5392), - [anon_sym_bitand] = ACTIONS(5392), - [anon_sym_not_eq] = ACTIONS(5392), - [anon_sym_DASH_DASH] = ACTIONS(5390), - [anon_sym_PLUS_PLUS] = ACTIONS(5390), - [anon_sym_DOT] = ACTIONS(5392), - [anon_sym_DOT_STAR] = ACTIONS(5390), - [anon_sym_DASH_GT] = ACTIONS(5390), - [anon_sym_L_DQUOTE] = ACTIONS(5954), - [anon_sym_u_DQUOTE] = ACTIONS(5954), - [anon_sym_U_DQUOTE] = ACTIONS(5954), - [anon_sym_u8_DQUOTE] = ACTIONS(5954), - [anon_sym_DQUOTE] = ACTIONS(5954), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5956), - [anon_sym_LR_DQUOTE] = ACTIONS(5956), - [anon_sym_uR_DQUOTE] = ACTIONS(5956), - [anon_sym_UR_DQUOTE] = ACTIONS(5956), - [anon_sym_u8R_DQUOTE] = ACTIONS(5956), - [sym_literal_suffix] = ACTIONS(5392), - }, - [1993] = { - [sym__declaration_modifiers] = STATE(3269), - [sym_attribute_specifier] = STATE(3269), - [sym_attribute_declaration] = STATE(3269), - [sym_ms_declspec_modifier] = STATE(3269), - [sym_storage_class_specifier] = STATE(3269), - [sym_type_qualifier] = STATE(3269), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2385), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym_dependent_type] = STATE(2523), - [sym_template_type] = STATE(2406), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(6627), - [sym_qualified_type_identifier] = STATE(3015), - [aux_sym__declaration_specifiers_repeat1] = STATE(3269), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [sym_identifier] = ACTIONS(5218), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(5958), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5220), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2999), - [anon_sym_enum] = ACTIONS(3001), - [anon_sym_class] = ACTIONS(3003), - [anon_sym_struct] = ACTIONS(3005), - [anon_sym_union] = ACTIONS(3007), + [2060] = { + [sym_identifier] = ACTIONS(5573), + [aux_sym_preproc_def_token1] = ACTIONS(5573), + [aux_sym_preproc_if_token1] = ACTIONS(5573), + [aux_sym_preproc_if_token2] = ACTIONS(5573), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5573), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5573), + [sym_preproc_directive] = ACTIONS(5573), + [anon_sym_LPAREN2] = ACTIONS(5575), + [anon_sym_TILDE] = ACTIONS(5575), + [anon_sym_STAR] = ACTIONS(5575), + [anon_sym_AMP_AMP] = ACTIONS(5575), + [anon_sym_AMP] = ACTIONS(5573), + [anon_sym_SEMI] = ACTIONS(5575), + [anon_sym___extension__] = ACTIONS(5573), + [anon_sym_typedef] = ACTIONS(5573), + [anon_sym_virtual] = ACTIONS(5573), + [anon_sym_extern] = ACTIONS(5573), + [anon_sym___attribute__] = ACTIONS(5573), + [anon_sym___attribute] = ACTIONS(5573), + [anon_sym_using] = ACTIONS(5573), + [anon_sym_COLON_COLON] = ACTIONS(5575), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5575), + [anon_sym___declspec] = ACTIONS(5573), + [anon_sym___based] = ACTIONS(5573), + [anon_sym_signed] = ACTIONS(5573), + [anon_sym_unsigned] = ACTIONS(5573), + [anon_sym_long] = ACTIONS(5573), + [anon_sym_short] = ACTIONS(5573), + [anon_sym_LBRACK] = ACTIONS(5573), + [anon_sym_static] = ACTIONS(5573), + [anon_sym_register] = ACTIONS(5573), + [anon_sym_inline] = ACTIONS(5573), + [anon_sym___inline] = ACTIONS(5573), + [anon_sym___inline__] = ACTIONS(5573), + [anon_sym___forceinline] = ACTIONS(5573), + [anon_sym_thread_local] = ACTIONS(5573), + [anon_sym___thread] = ACTIONS(5573), + [anon_sym_const] = ACTIONS(5573), + [anon_sym_constexpr] = ACTIONS(5573), + [anon_sym_volatile] = ACTIONS(5573), + [anon_sym_restrict] = ACTIONS(5573), + [anon_sym___restrict__] = ACTIONS(5573), + [anon_sym__Atomic] = ACTIONS(5573), + [anon_sym__Noreturn] = ACTIONS(5573), + [anon_sym_noreturn] = ACTIONS(5573), + [anon_sym__Nonnull] = ACTIONS(5573), + [anon_sym_mutable] = ACTIONS(5573), + [anon_sym_constinit] = ACTIONS(5573), + [anon_sym_consteval] = ACTIONS(5573), + [anon_sym_alignas] = ACTIONS(5573), + [anon_sym__Alignas] = ACTIONS(5573), + [sym_primitive_type] = ACTIONS(5573), + [anon_sym_enum] = ACTIONS(5573), + [anon_sym_class] = ACTIONS(5573), + [anon_sym_struct] = ACTIONS(5573), + [anon_sym_union] = ACTIONS(5573), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(3009), - [anon_sym_template] = ACTIONS(1452), - }, - [1994] = { - [sym_identifier] = ACTIONS(5561), - [aux_sym_preproc_def_token1] = ACTIONS(5561), - [aux_sym_preproc_if_token1] = ACTIONS(5561), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5561), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5561), - [sym_preproc_directive] = ACTIONS(5561), - [anon_sym_LPAREN2] = ACTIONS(5563), - [anon_sym_TILDE] = ACTIONS(5563), - [anon_sym_STAR] = ACTIONS(5563), - [anon_sym_AMP_AMP] = ACTIONS(5563), - [anon_sym_AMP] = ACTIONS(5561), - [anon_sym_SEMI] = ACTIONS(5563), - [anon_sym___extension__] = ACTIONS(5561), - [anon_sym_typedef] = ACTIONS(5561), - [anon_sym_virtual] = ACTIONS(5561), - [anon_sym_extern] = ACTIONS(5561), - [anon_sym___attribute__] = ACTIONS(5561), - [anon_sym___attribute] = ACTIONS(5561), - [anon_sym_using] = ACTIONS(5561), - [anon_sym_COLON_COLON] = ACTIONS(5563), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5563), - [anon_sym___declspec] = ACTIONS(5561), - [anon_sym___based] = ACTIONS(5561), - [anon_sym_RBRACE] = ACTIONS(5563), - [anon_sym_signed] = ACTIONS(5561), - [anon_sym_unsigned] = ACTIONS(5561), - [anon_sym_long] = ACTIONS(5561), - [anon_sym_short] = ACTIONS(5561), - [anon_sym_LBRACK] = ACTIONS(5561), - [anon_sym_static] = ACTIONS(5561), - [anon_sym_register] = ACTIONS(5561), - [anon_sym_inline] = ACTIONS(5561), - [anon_sym___inline] = ACTIONS(5561), - [anon_sym___inline__] = ACTIONS(5561), - [anon_sym___forceinline] = ACTIONS(5561), - [anon_sym_thread_local] = ACTIONS(5561), - [anon_sym___thread] = ACTIONS(5561), - [anon_sym_const] = ACTIONS(5561), - [anon_sym_constexpr] = ACTIONS(5561), - [anon_sym_volatile] = ACTIONS(5561), - [anon_sym_restrict] = ACTIONS(5561), - [anon_sym___restrict__] = ACTIONS(5561), - [anon_sym__Atomic] = ACTIONS(5561), - [anon_sym__Noreturn] = ACTIONS(5561), - [anon_sym_noreturn] = ACTIONS(5561), - [anon_sym__Nonnull] = ACTIONS(5561), - [anon_sym_mutable] = ACTIONS(5561), - [anon_sym_constinit] = ACTIONS(5561), - [anon_sym_consteval] = ACTIONS(5561), - [anon_sym_alignas] = ACTIONS(5561), - [anon_sym__Alignas] = ACTIONS(5561), - [sym_primitive_type] = ACTIONS(5561), - [anon_sym_enum] = ACTIONS(5561), - [anon_sym_class] = ACTIONS(5561), - [anon_sym_struct] = ACTIONS(5561), - [anon_sym_union] = ACTIONS(5561), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5561), - [anon_sym_decltype] = ACTIONS(5561), - [anon_sym_explicit] = ACTIONS(5561), - [anon_sym_typename] = ACTIONS(5561), - [anon_sym_private] = ACTIONS(5561), - [anon_sym_template] = ACTIONS(5561), - [anon_sym_operator] = ACTIONS(5561), - [anon_sym_friend] = ACTIONS(5561), - [anon_sym_public] = ACTIONS(5561), - [anon_sym_protected] = ACTIONS(5561), - [anon_sym_static_assert] = ACTIONS(5561), + [sym_auto] = ACTIONS(5573), + [anon_sym_decltype] = ACTIONS(5573), + [anon_sym_explicit] = ACTIONS(5573), + [anon_sym_typename] = ACTIONS(5573), + [anon_sym_private] = ACTIONS(5573), + [anon_sym_template] = ACTIONS(5573), + [anon_sym_operator] = ACTIONS(5573), + [anon_sym_friend] = ACTIONS(5573), + [anon_sym_public] = ACTIONS(5573), + [anon_sym_protected] = ACTIONS(5573), + [anon_sym_static_assert] = ACTIONS(5573), }, - [1995] = { + [2061] = { [sym_identifier] = ACTIONS(5573), [aux_sym_preproc_def_token1] = ACTIONS(5573), [aux_sym_preproc_if_token1] = ACTIONS(5573), @@ -268565,7 +274852,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(5573), [anon_sym_static_assert] = ACTIONS(5573), }, - [1996] = { + [2062] = { + [sym_identifier] = ACTIONS(5577), + [aux_sym_preproc_def_token1] = ACTIONS(5577), + [aux_sym_preproc_if_token1] = ACTIONS(5577), + [aux_sym_preproc_if_token2] = ACTIONS(5577), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5577), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5577), + [sym_preproc_directive] = ACTIONS(5577), + [anon_sym_LPAREN2] = ACTIONS(5579), + [anon_sym_TILDE] = ACTIONS(5579), + [anon_sym_STAR] = ACTIONS(5579), + [anon_sym_AMP_AMP] = ACTIONS(5579), + [anon_sym_AMP] = ACTIONS(5577), + [anon_sym_SEMI] = ACTIONS(5579), + [anon_sym___extension__] = ACTIONS(5577), + [anon_sym_typedef] = ACTIONS(5577), + [anon_sym_virtual] = ACTIONS(5577), + [anon_sym_extern] = ACTIONS(5577), + [anon_sym___attribute__] = ACTIONS(5577), + [anon_sym___attribute] = ACTIONS(5577), + [anon_sym_using] = ACTIONS(5577), + [anon_sym_COLON_COLON] = ACTIONS(5579), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5579), + [anon_sym___declspec] = ACTIONS(5577), + [anon_sym___based] = ACTIONS(5577), + [anon_sym_signed] = ACTIONS(5577), + [anon_sym_unsigned] = ACTIONS(5577), + [anon_sym_long] = ACTIONS(5577), + [anon_sym_short] = ACTIONS(5577), + [anon_sym_LBRACK] = ACTIONS(5577), + [anon_sym_static] = ACTIONS(5577), + [anon_sym_register] = ACTIONS(5577), + [anon_sym_inline] = ACTIONS(5577), + [anon_sym___inline] = ACTIONS(5577), + [anon_sym___inline__] = ACTIONS(5577), + [anon_sym___forceinline] = ACTIONS(5577), + [anon_sym_thread_local] = ACTIONS(5577), + [anon_sym___thread] = ACTIONS(5577), + [anon_sym_const] = ACTIONS(5577), + [anon_sym_constexpr] = ACTIONS(5577), + [anon_sym_volatile] = ACTIONS(5577), + [anon_sym_restrict] = ACTIONS(5577), + [anon_sym___restrict__] = ACTIONS(5577), + [anon_sym__Atomic] = ACTIONS(5577), + [anon_sym__Noreturn] = ACTIONS(5577), + [anon_sym_noreturn] = ACTIONS(5577), + [anon_sym__Nonnull] = ACTIONS(5577), + [anon_sym_mutable] = ACTIONS(5577), + [anon_sym_constinit] = ACTIONS(5577), + [anon_sym_consteval] = ACTIONS(5577), + [anon_sym_alignas] = ACTIONS(5577), + [anon_sym__Alignas] = ACTIONS(5577), + [sym_primitive_type] = ACTIONS(5577), + [anon_sym_enum] = ACTIONS(5577), + [anon_sym_class] = ACTIONS(5577), + [anon_sym_struct] = ACTIONS(5577), + [anon_sym_union] = ACTIONS(5577), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5577), + [anon_sym_decltype] = ACTIONS(5577), + [anon_sym_explicit] = ACTIONS(5577), + [anon_sym_typename] = ACTIONS(5577), + [anon_sym_private] = ACTIONS(5577), + [anon_sym_template] = ACTIONS(5577), + [anon_sym_operator] = ACTIONS(5577), + [anon_sym_friend] = ACTIONS(5577), + [anon_sym_public] = ACTIONS(5577), + [anon_sym_protected] = ACTIONS(5577), + [anon_sym_static_assert] = ACTIONS(5577), + }, + [2063] = { [sym_identifier] = ACTIONS(5581), [aux_sym_preproc_def_token1] = ACTIONS(5581), [aux_sym_preproc_if_token1] = ACTIONS(5581), @@ -268635,147 +274992,427 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(5581), [anon_sym_static_assert] = ACTIONS(5581), }, - [1997] = { - [sym_identifier] = ACTIONS(5609), - [aux_sym_preproc_def_token1] = ACTIONS(5609), - [aux_sym_preproc_if_token1] = ACTIONS(5609), - [aux_sym_preproc_if_token2] = ACTIONS(5609), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5609), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5609), - [sym_preproc_directive] = ACTIONS(5609), - [anon_sym_LPAREN2] = ACTIONS(5611), - [anon_sym_TILDE] = ACTIONS(5611), - [anon_sym_STAR] = ACTIONS(5611), - [anon_sym_AMP_AMP] = ACTIONS(5611), - [anon_sym_AMP] = ACTIONS(5609), - [anon_sym_SEMI] = ACTIONS(5611), - [anon_sym___extension__] = ACTIONS(5609), - [anon_sym_typedef] = ACTIONS(5609), - [anon_sym_virtual] = ACTIONS(5609), - [anon_sym_extern] = ACTIONS(5609), - [anon_sym___attribute__] = ACTIONS(5609), - [anon_sym___attribute] = ACTIONS(5609), - [anon_sym_using] = ACTIONS(5609), - [anon_sym_COLON_COLON] = ACTIONS(5611), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5611), - [anon_sym___declspec] = ACTIONS(5609), - [anon_sym___based] = ACTIONS(5609), - [anon_sym_signed] = ACTIONS(5609), - [anon_sym_unsigned] = ACTIONS(5609), - [anon_sym_long] = ACTIONS(5609), - [anon_sym_short] = ACTIONS(5609), - [anon_sym_LBRACK] = ACTIONS(5609), - [anon_sym_static] = ACTIONS(5609), - [anon_sym_register] = ACTIONS(5609), - [anon_sym_inline] = ACTIONS(5609), - [anon_sym___inline] = ACTIONS(5609), - [anon_sym___inline__] = ACTIONS(5609), - [anon_sym___forceinline] = ACTIONS(5609), - [anon_sym_thread_local] = ACTIONS(5609), - [anon_sym___thread] = ACTIONS(5609), - [anon_sym_const] = ACTIONS(5609), - [anon_sym_constexpr] = ACTIONS(5609), - [anon_sym_volatile] = ACTIONS(5609), - [anon_sym_restrict] = ACTIONS(5609), - [anon_sym___restrict__] = ACTIONS(5609), - [anon_sym__Atomic] = ACTIONS(5609), - [anon_sym__Noreturn] = ACTIONS(5609), - [anon_sym_noreturn] = ACTIONS(5609), - [anon_sym__Nonnull] = ACTIONS(5609), - [anon_sym_mutable] = ACTIONS(5609), - [anon_sym_constinit] = ACTIONS(5609), - [anon_sym_consteval] = ACTIONS(5609), - [anon_sym_alignas] = ACTIONS(5609), - [anon_sym__Alignas] = ACTIONS(5609), - [sym_primitive_type] = ACTIONS(5609), - [anon_sym_enum] = ACTIONS(5609), - [anon_sym_class] = ACTIONS(5609), - [anon_sym_struct] = ACTIONS(5609), - [anon_sym_union] = ACTIONS(5609), + [2064] = { + [sym_identifier] = ACTIONS(5585), + [aux_sym_preproc_def_token1] = ACTIONS(5585), + [aux_sym_preproc_if_token1] = ACTIONS(5585), + [aux_sym_preproc_if_token2] = ACTIONS(5585), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5585), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5585), + [sym_preproc_directive] = ACTIONS(5585), + [anon_sym_LPAREN2] = ACTIONS(5587), + [anon_sym_TILDE] = ACTIONS(5587), + [anon_sym_STAR] = ACTIONS(5587), + [anon_sym_AMP_AMP] = ACTIONS(5587), + [anon_sym_AMP] = ACTIONS(5585), + [anon_sym_SEMI] = ACTIONS(5587), + [anon_sym___extension__] = ACTIONS(5585), + [anon_sym_typedef] = ACTIONS(5585), + [anon_sym_virtual] = ACTIONS(5585), + [anon_sym_extern] = ACTIONS(5585), + [anon_sym___attribute__] = ACTIONS(5585), + [anon_sym___attribute] = ACTIONS(5585), + [anon_sym_using] = ACTIONS(5585), + [anon_sym_COLON_COLON] = ACTIONS(5587), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5587), + [anon_sym___declspec] = ACTIONS(5585), + [anon_sym___based] = ACTIONS(5585), + [anon_sym_signed] = ACTIONS(5585), + [anon_sym_unsigned] = ACTIONS(5585), + [anon_sym_long] = ACTIONS(5585), + [anon_sym_short] = ACTIONS(5585), + [anon_sym_LBRACK] = ACTIONS(5585), + [anon_sym_static] = ACTIONS(5585), + [anon_sym_register] = ACTIONS(5585), + [anon_sym_inline] = ACTIONS(5585), + [anon_sym___inline] = ACTIONS(5585), + [anon_sym___inline__] = ACTIONS(5585), + [anon_sym___forceinline] = ACTIONS(5585), + [anon_sym_thread_local] = ACTIONS(5585), + [anon_sym___thread] = ACTIONS(5585), + [anon_sym_const] = ACTIONS(5585), + [anon_sym_constexpr] = ACTIONS(5585), + [anon_sym_volatile] = ACTIONS(5585), + [anon_sym_restrict] = ACTIONS(5585), + [anon_sym___restrict__] = ACTIONS(5585), + [anon_sym__Atomic] = ACTIONS(5585), + [anon_sym__Noreturn] = ACTIONS(5585), + [anon_sym_noreturn] = ACTIONS(5585), + [anon_sym__Nonnull] = ACTIONS(5585), + [anon_sym_mutable] = ACTIONS(5585), + [anon_sym_constinit] = ACTIONS(5585), + [anon_sym_consteval] = ACTIONS(5585), + [anon_sym_alignas] = ACTIONS(5585), + [anon_sym__Alignas] = ACTIONS(5585), + [sym_primitive_type] = ACTIONS(5585), + [anon_sym_enum] = ACTIONS(5585), + [anon_sym_class] = ACTIONS(5585), + [anon_sym_struct] = ACTIONS(5585), + [anon_sym_union] = ACTIONS(5585), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5609), - [anon_sym_decltype] = ACTIONS(5609), - [anon_sym_explicit] = ACTIONS(5609), - [anon_sym_typename] = ACTIONS(5609), - [anon_sym_private] = ACTIONS(5609), - [anon_sym_template] = ACTIONS(5609), - [anon_sym_operator] = ACTIONS(5609), - [anon_sym_friend] = ACTIONS(5609), - [anon_sym_public] = ACTIONS(5609), - [anon_sym_protected] = ACTIONS(5609), - [anon_sym_static_assert] = ACTIONS(5609), + [sym_auto] = ACTIONS(5585), + [anon_sym_decltype] = ACTIONS(5585), + [anon_sym_explicit] = ACTIONS(5585), + [anon_sym_typename] = ACTIONS(5585), + [anon_sym_private] = ACTIONS(5585), + [anon_sym_template] = ACTIONS(5585), + [anon_sym_operator] = ACTIONS(5585), + [anon_sym_friend] = ACTIONS(5585), + [anon_sym_public] = ACTIONS(5585), + [anon_sym_protected] = ACTIONS(5585), + [anon_sym_static_assert] = ACTIONS(5585), }, - [1998] = { - [sym_identifier] = ACTIONS(5613), - [aux_sym_preproc_def_token1] = ACTIONS(5613), - [aux_sym_preproc_if_token1] = ACTIONS(5613), - [aux_sym_preproc_if_token2] = ACTIONS(5613), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5613), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5613), - [sym_preproc_directive] = ACTIONS(5613), - [anon_sym_LPAREN2] = ACTIONS(5615), - [anon_sym_TILDE] = ACTIONS(5615), - [anon_sym_STAR] = ACTIONS(5615), - [anon_sym_AMP_AMP] = ACTIONS(5615), - [anon_sym_AMP] = ACTIONS(5613), - [anon_sym_SEMI] = ACTIONS(5615), - [anon_sym___extension__] = ACTIONS(5613), - [anon_sym_typedef] = ACTIONS(5613), - [anon_sym_virtual] = ACTIONS(5613), - [anon_sym_extern] = ACTIONS(5613), - [anon_sym___attribute__] = ACTIONS(5613), - [anon_sym___attribute] = ACTIONS(5613), - [anon_sym_using] = ACTIONS(5613), - [anon_sym_COLON_COLON] = ACTIONS(5615), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5615), - [anon_sym___declspec] = ACTIONS(5613), - [anon_sym___based] = ACTIONS(5613), - [anon_sym_signed] = ACTIONS(5613), - [anon_sym_unsigned] = ACTIONS(5613), - [anon_sym_long] = ACTIONS(5613), - [anon_sym_short] = ACTIONS(5613), - [anon_sym_LBRACK] = ACTIONS(5613), - [anon_sym_static] = ACTIONS(5613), - [anon_sym_register] = ACTIONS(5613), - [anon_sym_inline] = ACTIONS(5613), - [anon_sym___inline] = ACTIONS(5613), - [anon_sym___inline__] = ACTIONS(5613), - [anon_sym___forceinline] = ACTIONS(5613), - [anon_sym_thread_local] = ACTIONS(5613), - [anon_sym___thread] = ACTIONS(5613), - [anon_sym_const] = ACTIONS(5613), - [anon_sym_constexpr] = ACTIONS(5613), - [anon_sym_volatile] = ACTIONS(5613), - [anon_sym_restrict] = ACTIONS(5613), - [anon_sym___restrict__] = ACTIONS(5613), - [anon_sym__Atomic] = ACTIONS(5613), - [anon_sym__Noreturn] = ACTIONS(5613), - [anon_sym_noreturn] = ACTIONS(5613), - [anon_sym__Nonnull] = ACTIONS(5613), - [anon_sym_mutable] = ACTIONS(5613), - [anon_sym_constinit] = ACTIONS(5613), - [anon_sym_consteval] = ACTIONS(5613), - [anon_sym_alignas] = ACTIONS(5613), - [anon_sym__Alignas] = ACTIONS(5613), - [sym_primitive_type] = ACTIONS(5613), - [anon_sym_enum] = ACTIONS(5613), - [anon_sym_class] = ACTIONS(5613), - [anon_sym_struct] = ACTIONS(5613), - [anon_sym_union] = ACTIONS(5613), + [2065] = { + [sym_identifier] = ACTIONS(5589), + [aux_sym_preproc_def_token1] = ACTIONS(5589), + [aux_sym_preproc_if_token1] = ACTIONS(5589), + [aux_sym_preproc_if_token2] = ACTIONS(5589), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5589), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5589), + [sym_preproc_directive] = ACTIONS(5589), + [anon_sym_LPAREN2] = ACTIONS(5591), + [anon_sym_TILDE] = ACTIONS(5591), + [anon_sym_STAR] = ACTIONS(5591), + [anon_sym_AMP_AMP] = ACTIONS(5591), + [anon_sym_AMP] = ACTIONS(5589), + [anon_sym_SEMI] = ACTIONS(5591), + [anon_sym___extension__] = ACTIONS(5589), + [anon_sym_typedef] = ACTIONS(5589), + [anon_sym_virtual] = ACTIONS(5589), + [anon_sym_extern] = ACTIONS(5589), + [anon_sym___attribute__] = ACTIONS(5589), + [anon_sym___attribute] = ACTIONS(5589), + [anon_sym_using] = ACTIONS(5589), + [anon_sym_COLON_COLON] = ACTIONS(5591), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5591), + [anon_sym___declspec] = ACTIONS(5589), + [anon_sym___based] = ACTIONS(5589), + [anon_sym_signed] = ACTIONS(5589), + [anon_sym_unsigned] = ACTIONS(5589), + [anon_sym_long] = ACTIONS(5589), + [anon_sym_short] = ACTIONS(5589), + [anon_sym_LBRACK] = ACTIONS(5589), + [anon_sym_static] = ACTIONS(5589), + [anon_sym_register] = ACTIONS(5589), + [anon_sym_inline] = ACTIONS(5589), + [anon_sym___inline] = ACTIONS(5589), + [anon_sym___inline__] = ACTIONS(5589), + [anon_sym___forceinline] = ACTIONS(5589), + [anon_sym_thread_local] = ACTIONS(5589), + [anon_sym___thread] = ACTIONS(5589), + [anon_sym_const] = ACTIONS(5589), + [anon_sym_constexpr] = ACTIONS(5589), + [anon_sym_volatile] = ACTIONS(5589), + [anon_sym_restrict] = ACTIONS(5589), + [anon_sym___restrict__] = ACTIONS(5589), + [anon_sym__Atomic] = ACTIONS(5589), + [anon_sym__Noreturn] = ACTIONS(5589), + [anon_sym_noreturn] = ACTIONS(5589), + [anon_sym__Nonnull] = ACTIONS(5589), + [anon_sym_mutable] = ACTIONS(5589), + [anon_sym_constinit] = ACTIONS(5589), + [anon_sym_consteval] = ACTIONS(5589), + [anon_sym_alignas] = ACTIONS(5589), + [anon_sym__Alignas] = ACTIONS(5589), + [sym_primitive_type] = ACTIONS(5589), + [anon_sym_enum] = ACTIONS(5589), + [anon_sym_class] = ACTIONS(5589), + [anon_sym_struct] = ACTIONS(5589), + [anon_sym_union] = ACTIONS(5589), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5589), + [anon_sym_decltype] = ACTIONS(5589), + [anon_sym_explicit] = ACTIONS(5589), + [anon_sym_typename] = ACTIONS(5589), + [anon_sym_private] = ACTIONS(5589), + [anon_sym_template] = ACTIONS(5589), + [anon_sym_operator] = ACTIONS(5589), + [anon_sym_friend] = ACTIONS(5589), + [anon_sym_public] = ACTIONS(5589), + [anon_sym_protected] = ACTIONS(5589), + [anon_sym_static_assert] = ACTIONS(5589), + }, + [2066] = { + [sym_identifier] = ACTIONS(5593), + [aux_sym_preproc_def_token1] = ACTIONS(5593), + [aux_sym_preproc_if_token1] = ACTIONS(5593), + [aux_sym_preproc_if_token2] = ACTIONS(5593), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5593), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5593), + [sym_preproc_directive] = ACTIONS(5593), + [anon_sym_LPAREN2] = ACTIONS(5595), + [anon_sym_TILDE] = ACTIONS(5595), + [anon_sym_STAR] = ACTIONS(5595), + [anon_sym_AMP_AMP] = ACTIONS(5595), + [anon_sym_AMP] = ACTIONS(5593), + [anon_sym_SEMI] = ACTIONS(5595), + [anon_sym___extension__] = ACTIONS(5593), + [anon_sym_typedef] = ACTIONS(5593), + [anon_sym_virtual] = ACTIONS(5593), + [anon_sym_extern] = ACTIONS(5593), + [anon_sym___attribute__] = ACTIONS(5593), + [anon_sym___attribute] = ACTIONS(5593), + [anon_sym_using] = ACTIONS(5593), + [anon_sym_COLON_COLON] = ACTIONS(5595), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5595), + [anon_sym___declspec] = ACTIONS(5593), + [anon_sym___based] = ACTIONS(5593), + [anon_sym_signed] = ACTIONS(5593), + [anon_sym_unsigned] = ACTIONS(5593), + [anon_sym_long] = ACTIONS(5593), + [anon_sym_short] = ACTIONS(5593), + [anon_sym_LBRACK] = ACTIONS(5593), + [anon_sym_static] = ACTIONS(5593), + [anon_sym_register] = ACTIONS(5593), + [anon_sym_inline] = ACTIONS(5593), + [anon_sym___inline] = ACTIONS(5593), + [anon_sym___inline__] = ACTIONS(5593), + [anon_sym___forceinline] = ACTIONS(5593), + [anon_sym_thread_local] = ACTIONS(5593), + [anon_sym___thread] = ACTIONS(5593), + [anon_sym_const] = ACTIONS(5593), + [anon_sym_constexpr] = ACTIONS(5593), + [anon_sym_volatile] = ACTIONS(5593), + [anon_sym_restrict] = ACTIONS(5593), + [anon_sym___restrict__] = ACTIONS(5593), + [anon_sym__Atomic] = ACTIONS(5593), + [anon_sym__Noreturn] = ACTIONS(5593), + [anon_sym_noreturn] = ACTIONS(5593), + [anon_sym__Nonnull] = ACTIONS(5593), + [anon_sym_mutable] = ACTIONS(5593), + [anon_sym_constinit] = ACTIONS(5593), + [anon_sym_consteval] = ACTIONS(5593), + [anon_sym_alignas] = ACTIONS(5593), + [anon_sym__Alignas] = ACTIONS(5593), + [sym_primitive_type] = ACTIONS(5593), + [anon_sym_enum] = ACTIONS(5593), + [anon_sym_class] = ACTIONS(5593), + [anon_sym_struct] = ACTIONS(5593), + [anon_sym_union] = ACTIONS(5593), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5613), - [anon_sym_decltype] = ACTIONS(5613), - [anon_sym_explicit] = ACTIONS(5613), - [anon_sym_typename] = ACTIONS(5613), - [anon_sym_private] = ACTIONS(5613), - [anon_sym_template] = ACTIONS(5613), - [anon_sym_operator] = ACTIONS(5613), - [anon_sym_friend] = ACTIONS(5613), - [anon_sym_public] = ACTIONS(5613), - [anon_sym_protected] = ACTIONS(5613), - [anon_sym_static_assert] = ACTIONS(5613), + [sym_auto] = ACTIONS(5593), + [anon_sym_decltype] = ACTIONS(5593), + [anon_sym_explicit] = ACTIONS(5593), + [anon_sym_typename] = ACTIONS(5593), + [anon_sym_private] = ACTIONS(5593), + [anon_sym_template] = ACTIONS(5593), + [anon_sym_operator] = ACTIONS(5593), + [anon_sym_friend] = ACTIONS(5593), + [anon_sym_public] = ACTIONS(5593), + [anon_sym_protected] = ACTIONS(5593), + [anon_sym_static_assert] = ACTIONS(5593), }, - [1999] = { + [2067] = { + [sym_identifier] = ACTIONS(5597), + [aux_sym_preproc_def_token1] = ACTIONS(5597), + [aux_sym_preproc_if_token1] = ACTIONS(5597), + [aux_sym_preproc_if_token2] = ACTIONS(5597), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5597), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5597), + [sym_preproc_directive] = ACTIONS(5597), + [anon_sym_LPAREN2] = ACTIONS(5599), + [anon_sym_TILDE] = ACTIONS(5599), + [anon_sym_STAR] = ACTIONS(5599), + [anon_sym_AMP_AMP] = ACTIONS(5599), + [anon_sym_AMP] = ACTIONS(5597), + [anon_sym_SEMI] = ACTIONS(5599), + [anon_sym___extension__] = ACTIONS(5597), + [anon_sym_typedef] = ACTIONS(5597), + [anon_sym_virtual] = ACTIONS(5597), + [anon_sym_extern] = ACTIONS(5597), + [anon_sym___attribute__] = ACTIONS(5597), + [anon_sym___attribute] = ACTIONS(5597), + [anon_sym_using] = ACTIONS(5597), + [anon_sym_COLON_COLON] = ACTIONS(5599), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5599), + [anon_sym___declspec] = ACTIONS(5597), + [anon_sym___based] = ACTIONS(5597), + [anon_sym_signed] = ACTIONS(5597), + [anon_sym_unsigned] = ACTIONS(5597), + [anon_sym_long] = ACTIONS(5597), + [anon_sym_short] = ACTIONS(5597), + [anon_sym_LBRACK] = ACTIONS(5597), + [anon_sym_static] = ACTIONS(5597), + [anon_sym_register] = ACTIONS(5597), + [anon_sym_inline] = ACTIONS(5597), + [anon_sym___inline] = ACTIONS(5597), + [anon_sym___inline__] = ACTIONS(5597), + [anon_sym___forceinline] = ACTIONS(5597), + [anon_sym_thread_local] = ACTIONS(5597), + [anon_sym___thread] = ACTIONS(5597), + [anon_sym_const] = ACTIONS(5597), + [anon_sym_constexpr] = ACTIONS(5597), + [anon_sym_volatile] = ACTIONS(5597), + [anon_sym_restrict] = ACTIONS(5597), + [anon_sym___restrict__] = ACTIONS(5597), + [anon_sym__Atomic] = ACTIONS(5597), + [anon_sym__Noreturn] = ACTIONS(5597), + [anon_sym_noreturn] = ACTIONS(5597), + [anon_sym__Nonnull] = ACTIONS(5597), + [anon_sym_mutable] = ACTIONS(5597), + [anon_sym_constinit] = ACTIONS(5597), + [anon_sym_consteval] = ACTIONS(5597), + [anon_sym_alignas] = ACTIONS(5597), + [anon_sym__Alignas] = ACTIONS(5597), + [sym_primitive_type] = ACTIONS(5597), + [anon_sym_enum] = ACTIONS(5597), + [anon_sym_class] = ACTIONS(5597), + [anon_sym_struct] = ACTIONS(5597), + [anon_sym_union] = ACTIONS(5597), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5597), + [anon_sym_decltype] = ACTIONS(5597), + [anon_sym_explicit] = ACTIONS(5597), + [anon_sym_typename] = ACTIONS(5597), + [anon_sym_private] = ACTIONS(5597), + [anon_sym_template] = ACTIONS(5597), + [anon_sym_operator] = ACTIONS(5597), + [anon_sym_friend] = ACTIONS(5597), + [anon_sym_public] = ACTIONS(5597), + [anon_sym_protected] = ACTIONS(5597), + [anon_sym_static_assert] = ACTIONS(5597), + }, + [2068] = { + [sym_identifier] = ACTIONS(5597), + [aux_sym_preproc_def_token1] = ACTIONS(5597), + [aux_sym_preproc_if_token1] = ACTIONS(5597), + [aux_sym_preproc_if_token2] = ACTIONS(5597), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5597), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5597), + [sym_preproc_directive] = ACTIONS(5597), + [anon_sym_LPAREN2] = ACTIONS(5599), + [anon_sym_TILDE] = ACTIONS(5599), + [anon_sym_STAR] = ACTIONS(5599), + [anon_sym_AMP_AMP] = ACTIONS(5599), + [anon_sym_AMP] = ACTIONS(5597), + [anon_sym_SEMI] = ACTIONS(5599), + [anon_sym___extension__] = ACTIONS(5597), + [anon_sym_typedef] = ACTIONS(5597), + [anon_sym_virtual] = ACTIONS(5597), + [anon_sym_extern] = ACTIONS(5597), + [anon_sym___attribute__] = ACTIONS(5597), + [anon_sym___attribute] = ACTIONS(5597), + [anon_sym_using] = ACTIONS(5597), + [anon_sym_COLON_COLON] = ACTIONS(5599), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5599), + [anon_sym___declspec] = ACTIONS(5597), + [anon_sym___based] = ACTIONS(5597), + [anon_sym_signed] = ACTIONS(5597), + [anon_sym_unsigned] = ACTIONS(5597), + [anon_sym_long] = ACTIONS(5597), + [anon_sym_short] = ACTIONS(5597), + [anon_sym_LBRACK] = ACTIONS(5597), + [anon_sym_static] = ACTIONS(5597), + [anon_sym_register] = ACTIONS(5597), + [anon_sym_inline] = ACTIONS(5597), + [anon_sym___inline] = ACTIONS(5597), + [anon_sym___inline__] = ACTIONS(5597), + [anon_sym___forceinline] = ACTIONS(5597), + [anon_sym_thread_local] = ACTIONS(5597), + [anon_sym___thread] = ACTIONS(5597), + [anon_sym_const] = ACTIONS(5597), + [anon_sym_constexpr] = ACTIONS(5597), + [anon_sym_volatile] = ACTIONS(5597), + [anon_sym_restrict] = ACTIONS(5597), + [anon_sym___restrict__] = ACTIONS(5597), + [anon_sym__Atomic] = ACTIONS(5597), + [anon_sym__Noreturn] = ACTIONS(5597), + [anon_sym_noreturn] = ACTIONS(5597), + [anon_sym__Nonnull] = ACTIONS(5597), + [anon_sym_mutable] = ACTIONS(5597), + [anon_sym_constinit] = ACTIONS(5597), + [anon_sym_consteval] = ACTIONS(5597), + [anon_sym_alignas] = ACTIONS(5597), + [anon_sym__Alignas] = ACTIONS(5597), + [sym_primitive_type] = ACTIONS(5597), + [anon_sym_enum] = ACTIONS(5597), + [anon_sym_class] = ACTIONS(5597), + [anon_sym_struct] = ACTIONS(5597), + [anon_sym_union] = ACTIONS(5597), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5597), + [anon_sym_decltype] = ACTIONS(5597), + [anon_sym_explicit] = ACTIONS(5597), + [anon_sym_typename] = ACTIONS(5597), + [anon_sym_private] = ACTIONS(5597), + [anon_sym_template] = ACTIONS(5597), + [anon_sym_operator] = ACTIONS(5597), + [anon_sym_friend] = ACTIONS(5597), + [anon_sym_public] = ACTIONS(5597), + [anon_sym_protected] = ACTIONS(5597), + [anon_sym_static_assert] = ACTIONS(5597), + }, + [2069] = { + [sym_identifier] = ACTIONS(5605), + [aux_sym_preproc_def_token1] = ACTIONS(5605), + [aux_sym_preproc_if_token1] = ACTIONS(5605), + [aux_sym_preproc_if_token2] = ACTIONS(5605), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5605), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5605), + [sym_preproc_directive] = ACTIONS(5605), + [anon_sym_LPAREN2] = ACTIONS(5607), + [anon_sym_TILDE] = ACTIONS(5607), + [anon_sym_STAR] = ACTIONS(5607), + [anon_sym_AMP_AMP] = ACTIONS(5607), + [anon_sym_AMP] = ACTIONS(5605), + [anon_sym_SEMI] = ACTIONS(5607), + [anon_sym___extension__] = ACTIONS(5605), + [anon_sym_typedef] = ACTIONS(5605), + [anon_sym_virtual] = ACTIONS(5605), + [anon_sym_extern] = ACTIONS(5605), + [anon_sym___attribute__] = ACTIONS(5605), + [anon_sym___attribute] = ACTIONS(5605), + [anon_sym_using] = ACTIONS(5605), + [anon_sym_COLON_COLON] = ACTIONS(5607), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5607), + [anon_sym___declspec] = ACTIONS(5605), + [anon_sym___based] = ACTIONS(5605), + [anon_sym_signed] = ACTIONS(5605), + [anon_sym_unsigned] = ACTIONS(5605), + [anon_sym_long] = ACTIONS(5605), + [anon_sym_short] = ACTIONS(5605), + [anon_sym_LBRACK] = ACTIONS(5605), + [anon_sym_static] = ACTIONS(5605), + [anon_sym_register] = ACTIONS(5605), + [anon_sym_inline] = ACTIONS(5605), + [anon_sym___inline] = ACTIONS(5605), + [anon_sym___inline__] = ACTIONS(5605), + [anon_sym___forceinline] = ACTIONS(5605), + [anon_sym_thread_local] = ACTIONS(5605), + [anon_sym___thread] = ACTIONS(5605), + [anon_sym_const] = ACTIONS(5605), + [anon_sym_constexpr] = ACTIONS(5605), + [anon_sym_volatile] = ACTIONS(5605), + [anon_sym_restrict] = ACTIONS(5605), + [anon_sym___restrict__] = ACTIONS(5605), + [anon_sym__Atomic] = ACTIONS(5605), + [anon_sym__Noreturn] = ACTIONS(5605), + [anon_sym_noreturn] = ACTIONS(5605), + [anon_sym__Nonnull] = ACTIONS(5605), + [anon_sym_mutable] = ACTIONS(5605), + [anon_sym_constinit] = ACTIONS(5605), + [anon_sym_consteval] = ACTIONS(5605), + [anon_sym_alignas] = ACTIONS(5605), + [anon_sym__Alignas] = ACTIONS(5605), + [sym_primitive_type] = ACTIONS(5605), + [anon_sym_enum] = ACTIONS(5605), + [anon_sym_class] = ACTIONS(5605), + [anon_sym_struct] = ACTIONS(5605), + [anon_sym_union] = ACTIONS(5605), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5605), + [anon_sym_decltype] = ACTIONS(5605), + [anon_sym_explicit] = ACTIONS(5605), + [anon_sym_typename] = ACTIONS(5605), + [anon_sym_private] = ACTIONS(5605), + [anon_sym_template] = ACTIONS(5605), + [anon_sym_operator] = ACTIONS(5605), + [anon_sym_friend] = ACTIONS(5605), + [anon_sym_public] = ACTIONS(5605), + [anon_sym_protected] = ACTIONS(5605), + [anon_sym_static_assert] = ACTIONS(5605), + }, + [2070] = { [sym_identifier] = ACTIONS(5609), [aux_sym_preproc_def_token1] = ACTIONS(5609), [aux_sym_preproc_if_token1] = ACTIONS(5609), @@ -268845,7 +275482,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(5609), [anon_sym_static_assert] = ACTIONS(5609), }, - [2000] = { + [2071] = { [sym_identifier] = ACTIONS(5613), [aux_sym_preproc_def_token1] = ACTIONS(5613), [aux_sym_preproc_if_token1] = ACTIONS(5613), @@ -268915,7 +275552,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(5613), [anon_sym_static_assert] = ACTIONS(5613), }, - [2001] = { + [2072] = { [sym_identifier] = ACTIONS(5621), [aux_sym_preproc_def_token1] = ACTIONS(5621), [aux_sym_preproc_if_token1] = ACTIONS(5621), @@ -268967,1355 +275604,1215 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(5621), [anon_sym_alignas] = ACTIONS(5621), [anon_sym__Alignas] = ACTIONS(5621), - [sym_primitive_type] = ACTIONS(5621), - [anon_sym_enum] = ACTIONS(5621), - [anon_sym_class] = ACTIONS(5621), - [anon_sym_struct] = ACTIONS(5621), - [anon_sym_union] = ACTIONS(5621), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5621), - [anon_sym_decltype] = ACTIONS(5621), - [anon_sym_explicit] = ACTIONS(5621), - [anon_sym_typename] = ACTIONS(5621), - [anon_sym_private] = ACTIONS(5621), - [anon_sym_template] = ACTIONS(5621), - [anon_sym_operator] = ACTIONS(5621), - [anon_sym_friend] = ACTIONS(5621), - [anon_sym_public] = ACTIONS(5621), - [anon_sym_protected] = ACTIONS(5621), - [anon_sym_static_assert] = ACTIONS(5621), - }, - [2002] = { - [sym_identifier] = ACTIONS(5633), - [aux_sym_preproc_def_token1] = ACTIONS(5633), - [aux_sym_preproc_if_token1] = ACTIONS(5633), - [aux_sym_preproc_if_token2] = ACTIONS(5633), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5633), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5633), - [sym_preproc_directive] = ACTIONS(5633), - [anon_sym_LPAREN2] = ACTIONS(5635), - [anon_sym_TILDE] = ACTIONS(5635), - [anon_sym_STAR] = ACTIONS(5635), - [anon_sym_AMP_AMP] = ACTIONS(5635), - [anon_sym_AMP] = ACTIONS(5633), - [anon_sym_SEMI] = ACTIONS(5635), - [anon_sym___extension__] = ACTIONS(5633), - [anon_sym_typedef] = ACTIONS(5633), - [anon_sym_virtual] = ACTIONS(5633), - [anon_sym_extern] = ACTIONS(5633), - [anon_sym___attribute__] = ACTIONS(5633), - [anon_sym___attribute] = ACTIONS(5633), - [anon_sym_using] = ACTIONS(5633), - [anon_sym_COLON_COLON] = ACTIONS(5635), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5635), - [anon_sym___declspec] = ACTIONS(5633), - [anon_sym___based] = ACTIONS(5633), - [anon_sym_signed] = ACTIONS(5633), - [anon_sym_unsigned] = ACTIONS(5633), - [anon_sym_long] = ACTIONS(5633), - [anon_sym_short] = ACTIONS(5633), - [anon_sym_LBRACK] = ACTIONS(5633), - [anon_sym_static] = ACTIONS(5633), - [anon_sym_register] = ACTIONS(5633), - [anon_sym_inline] = ACTIONS(5633), - [anon_sym___inline] = ACTIONS(5633), - [anon_sym___inline__] = ACTIONS(5633), - [anon_sym___forceinline] = ACTIONS(5633), - [anon_sym_thread_local] = ACTIONS(5633), - [anon_sym___thread] = ACTIONS(5633), - [anon_sym_const] = ACTIONS(5633), - [anon_sym_constexpr] = ACTIONS(5633), - [anon_sym_volatile] = ACTIONS(5633), - [anon_sym_restrict] = ACTIONS(5633), - [anon_sym___restrict__] = ACTIONS(5633), - [anon_sym__Atomic] = ACTIONS(5633), - [anon_sym__Noreturn] = ACTIONS(5633), - [anon_sym_noreturn] = ACTIONS(5633), - [anon_sym__Nonnull] = ACTIONS(5633), - [anon_sym_mutable] = ACTIONS(5633), - [anon_sym_constinit] = ACTIONS(5633), - [anon_sym_consteval] = ACTIONS(5633), - [anon_sym_alignas] = ACTIONS(5633), - [anon_sym__Alignas] = ACTIONS(5633), - [sym_primitive_type] = ACTIONS(5633), - [anon_sym_enum] = ACTIONS(5633), - [anon_sym_class] = ACTIONS(5633), - [anon_sym_struct] = ACTIONS(5633), - [anon_sym_union] = ACTIONS(5633), + [sym_primitive_type] = ACTIONS(5621), + [anon_sym_enum] = ACTIONS(5621), + [anon_sym_class] = ACTIONS(5621), + [anon_sym_struct] = ACTIONS(5621), + [anon_sym_union] = ACTIONS(5621), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5633), - [anon_sym_decltype] = ACTIONS(5633), - [anon_sym_explicit] = ACTIONS(5633), - [anon_sym_typename] = ACTIONS(5633), - [anon_sym_private] = ACTIONS(5633), - [anon_sym_template] = ACTIONS(5633), - [anon_sym_operator] = ACTIONS(5633), - [anon_sym_friend] = ACTIONS(5633), - [anon_sym_public] = ACTIONS(5633), - [anon_sym_protected] = ACTIONS(5633), - [anon_sym_static_assert] = ACTIONS(5633), - }, - [2003] = { - [sym_identifier] = ACTIONS(5446), - [aux_sym_preproc_def_token1] = ACTIONS(5446), - [aux_sym_preproc_if_token1] = ACTIONS(5446), - [aux_sym_preproc_if_token2] = ACTIONS(5446), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5446), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5446), - [sym_preproc_directive] = ACTIONS(5446), - [anon_sym_LPAREN2] = ACTIONS(5448), - [anon_sym_TILDE] = ACTIONS(5448), - [anon_sym_STAR] = ACTIONS(5448), - [anon_sym_AMP_AMP] = ACTIONS(5448), - [anon_sym_AMP] = ACTIONS(5446), - [anon_sym_SEMI] = ACTIONS(5448), - [anon_sym___extension__] = ACTIONS(5446), - [anon_sym_typedef] = ACTIONS(5446), - [anon_sym_virtual] = ACTIONS(5446), - [anon_sym_extern] = ACTIONS(5446), - [anon_sym___attribute__] = ACTIONS(5446), - [anon_sym___attribute] = ACTIONS(5446), - [anon_sym_using] = ACTIONS(5446), - [anon_sym_COLON_COLON] = ACTIONS(5448), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5448), - [anon_sym___declspec] = ACTIONS(5446), - [anon_sym___based] = ACTIONS(5446), - [anon_sym_signed] = ACTIONS(5446), - [anon_sym_unsigned] = ACTIONS(5446), - [anon_sym_long] = ACTIONS(5446), - [anon_sym_short] = ACTIONS(5446), - [anon_sym_LBRACK] = ACTIONS(5446), - [anon_sym_static] = ACTIONS(5446), - [anon_sym_register] = ACTIONS(5446), - [anon_sym_inline] = ACTIONS(5446), - [anon_sym___inline] = ACTIONS(5446), - [anon_sym___inline__] = ACTIONS(5446), - [anon_sym___forceinline] = ACTIONS(5446), - [anon_sym_thread_local] = ACTIONS(5446), - [anon_sym___thread] = ACTIONS(5446), - [anon_sym_const] = ACTIONS(5446), - [anon_sym_constexpr] = ACTIONS(5446), - [anon_sym_volatile] = ACTIONS(5446), - [anon_sym_restrict] = ACTIONS(5446), - [anon_sym___restrict__] = ACTIONS(5446), - [anon_sym__Atomic] = ACTIONS(5446), - [anon_sym__Noreturn] = ACTIONS(5446), - [anon_sym_noreturn] = ACTIONS(5446), - [anon_sym__Nonnull] = ACTIONS(5446), - [anon_sym_mutable] = ACTIONS(5446), - [anon_sym_constinit] = ACTIONS(5446), - [anon_sym_consteval] = ACTIONS(5446), - [anon_sym_alignas] = ACTIONS(5446), - [anon_sym__Alignas] = ACTIONS(5446), - [sym_primitive_type] = ACTIONS(5446), - [anon_sym_enum] = ACTIONS(5446), - [anon_sym_class] = ACTIONS(5446), - [anon_sym_struct] = ACTIONS(5446), - [anon_sym_union] = ACTIONS(5446), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5446), - [anon_sym_decltype] = ACTIONS(5446), - [anon_sym_explicit] = ACTIONS(5446), - [anon_sym_typename] = ACTIONS(5446), - [anon_sym_private] = ACTIONS(5446), - [anon_sym_template] = ACTIONS(5446), - [anon_sym_operator] = ACTIONS(5446), - [anon_sym_friend] = ACTIONS(5446), - [anon_sym_public] = ACTIONS(5446), - [anon_sym_protected] = ACTIONS(5446), - [anon_sym_static_assert] = ACTIONS(5446), - }, - [2004] = { - [sym_identifier] = ACTIONS(5446), - [aux_sym_preproc_def_token1] = ACTIONS(5446), - [aux_sym_preproc_if_token1] = ACTIONS(5446), - [aux_sym_preproc_if_token2] = ACTIONS(5446), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5446), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5446), - [sym_preproc_directive] = ACTIONS(5446), - [anon_sym_LPAREN2] = ACTIONS(5448), - [anon_sym_TILDE] = ACTIONS(5448), - [anon_sym_STAR] = ACTIONS(5448), - [anon_sym_AMP_AMP] = ACTIONS(5448), - [anon_sym_AMP] = ACTIONS(5446), - [anon_sym_SEMI] = ACTIONS(5448), - [anon_sym___extension__] = ACTIONS(5446), - [anon_sym_typedef] = ACTIONS(5446), - [anon_sym_virtual] = ACTIONS(5446), - [anon_sym_extern] = ACTIONS(5446), - [anon_sym___attribute__] = ACTIONS(5446), - [anon_sym___attribute] = ACTIONS(5446), - [anon_sym_using] = ACTIONS(5446), - [anon_sym_COLON_COLON] = ACTIONS(5448), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5448), - [anon_sym___declspec] = ACTIONS(5446), - [anon_sym___based] = ACTIONS(5446), - [anon_sym_signed] = ACTIONS(5446), - [anon_sym_unsigned] = ACTIONS(5446), - [anon_sym_long] = ACTIONS(5446), - [anon_sym_short] = ACTIONS(5446), - [anon_sym_LBRACK] = ACTIONS(5446), - [anon_sym_static] = ACTIONS(5446), - [anon_sym_register] = ACTIONS(5446), - [anon_sym_inline] = ACTIONS(5446), - [anon_sym___inline] = ACTIONS(5446), - [anon_sym___inline__] = ACTIONS(5446), - [anon_sym___forceinline] = ACTIONS(5446), - [anon_sym_thread_local] = ACTIONS(5446), - [anon_sym___thread] = ACTIONS(5446), - [anon_sym_const] = ACTIONS(5446), - [anon_sym_constexpr] = ACTIONS(5446), - [anon_sym_volatile] = ACTIONS(5446), - [anon_sym_restrict] = ACTIONS(5446), - [anon_sym___restrict__] = ACTIONS(5446), - [anon_sym__Atomic] = ACTIONS(5446), - [anon_sym__Noreturn] = ACTIONS(5446), - [anon_sym_noreturn] = ACTIONS(5446), - [anon_sym__Nonnull] = ACTIONS(5446), - [anon_sym_mutable] = ACTIONS(5446), - [anon_sym_constinit] = ACTIONS(5446), - [anon_sym_consteval] = ACTIONS(5446), - [anon_sym_alignas] = ACTIONS(5446), - [anon_sym__Alignas] = ACTIONS(5446), - [sym_primitive_type] = ACTIONS(5446), - [anon_sym_enum] = ACTIONS(5446), - [anon_sym_class] = ACTIONS(5446), - [anon_sym_struct] = ACTIONS(5446), - [anon_sym_union] = ACTIONS(5446), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5446), - [anon_sym_decltype] = ACTIONS(5446), - [anon_sym_explicit] = ACTIONS(5446), - [anon_sym_typename] = ACTIONS(5446), - [anon_sym_private] = ACTIONS(5446), - [anon_sym_template] = ACTIONS(5446), - [anon_sym_operator] = ACTIONS(5446), - [anon_sym_friend] = ACTIONS(5446), - [anon_sym_public] = ACTIONS(5446), - [anon_sym_protected] = ACTIONS(5446), - [anon_sym_static_assert] = ACTIONS(5446), - }, - [2005] = { - [sym_string_literal] = STATE(2010), - [sym_raw_string_literal] = STATE(2010), - [aux_sym_concatenated_string_repeat1] = STATE(2010), - [sym_identifier] = ACTIONS(5960), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5396), - [anon_sym_COMMA] = ACTIONS(5396), - [anon_sym_LPAREN2] = ACTIONS(5396), - [anon_sym_DASH] = ACTIONS(5398), - [anon_sym_PLUS] = ACTIONS(5398), - [anon_sym_STAR] = ACTIONS(5398), - [anon_sym_SLASH] = ACTIONS(5398), - [anon_sym_PERCENT] = ACTIONS(5398), - [anon_sym_PIPE_PIPE] = ACTIONS(5396), - [anon_sym_AMP_AMP] = ACTIONS(5396), - [anon_sym_PIPE] = ACTIONS(5398), - [anon_sym_CARET] = ACTIONS(5398), - [anon_sym_AMP] = ACTIONS(5398), - [anon_sym_EQ_EQ] = ACTIONS(5396), - [anon_sym_BANG_EQ] = ACTIONS(5396), - [anon_sym_GT] = ACTIONS(5398), - [anon_sym_GT_EQ] = ACTIONS(5396), - [anon_sym_LT_EQ] = ACTIONS(5398), - [anon_sym_LT] = ACTIONS(5398), - [anon_sym_LT_LT] = ACTIONS(5398), - [anon_sym_GT_GT] = ACTIONS(5398), - [anon_sym_SEMI] = ACTIONS(5396), - [anon_sym___attribute__] = ACTIONS(5398), - [anon_sym___attribute] = ACTIONS(5398), - [anon_sym_LBRACK] = ACTIONS(5396), - [anon_sym_EQ] = ACTIONS(5398), - [anon_sym_QMARK] = ACTIONS(5396), - [anon_sym_STAR_EQ] = ACTIONS(5396), - [anon_sym_SLASH_EQ] = ACTIONS(5396), - [anon_sym_PERCENT_EQ] = ACTIONS(5396), - [anon_sym_PLUS_EQ] = ACTIONS(5396), - [anon_sym_DASH_EQ] = ACTIONS(5396), - [anon_sym_LT_LT_EQ] = ACTIONS(5396), - [anon_sym_GT_GT_EQ] = ACTIONS(5396), - [anon_sym_AMP_EQ] = ACTIONS(5396), - [anon_sym_CARET_EQ] = ACTIONS(5396), - [anon_sym_PIPE_EQ] = ACTIONS(5396), - [anon_sym_and_eq] = ACTIONS(5398), - [anon_sym_or_eq] = ACTIONS(5398), - [anon_sym_xor_eq] = ACTIONS(5398), - [anon_sym_LT_EQ_GT] = ACTIONS(5396), - [anon_sym_or] = ACTIONS(5398), - [anon_sym_and] = ACTIONS(5398), - [anon_sym_bitor] = ACTIONS(5398), - [anon_sym_xor] = ACTIONS(5398), - [anon_sym_bitand] = ACTIONS(5398), - [anon_sym_not_eq] = ACTIONS(5398), - [anon_sym_DASH_DASH] = ACTIONS(5396), - [anon_sym_PLUS_PLUS] = ACTIONS(5396), - [anon_sym_DOT] = ACTIONS(5398), - [anon_sym_DOT_STAR] = ACTIONS(5396), - [anon_sym_DASH_GT] = ACTIONS(5396), - [anon_sym_L_DQUOTE] = ACTIONS(5954), - [anon_sym_u_DQUOTE] = ACTIONS(5954), - [anon_sym_U_DQUOTE] = ACTIONS(5954), - [anon_sym_u8_DQUOTE] = ACTIONS(5954), - [anon_sym_DQUOTE] = ACTIONS(5954), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5956), - [anon_sym_LR_DQUOTE] = ACTIONS(5956), - [anon_sym_uR_DQUOTE] = ACTIONS(5956), - [anon_sym_UR_DQUOTE] = ACTIONS(5956), - [anon_sym_u8R_DQUOTE] = ACTIONS(5956), - [sym_literal_suffix] = ACTIONS(5398), - }, - [2006] = { - [sym_identifier] = ACTIONS(2711), - [aux_sym_preproc_def_token1] = ACTIONS(2711), - [aux_sym_preproc_if_token1] = ACTIONS(2711), - [aux_sym_preproc_if_token2] = ACTIONS(2711), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2711), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2711), - [sym_preproc_directive] = ACTIONS(2711), - [anon_sym_LPAREN2] = ACTIONS(2713), - [anon_sym_TILDE] = ACTIONS(2713), - [anon_sym_STAR] = ACTIONS(2713), - [anon_sym_AMP_AMP] = ACTIONS(2713), - [anon_sym_AMP] = ACTIONS(2711), - [anon_sym_SEMI] = ACTIONS(2713), - [anon_sym___extension__] = ACTIONS(2711), - [anon_sym_typedef] = ACTIONS(2711), - [anon_sym_virtual] = ACTIONS(2711), - [anon_sym_extern] = ACTIONS(2711), - [anon_sym___attribute__] = ACTIONS(2711), - [anon_sym___attribute] = ACTIONS(2711), - [anon_sym_using] = ACTIONS(2711), - [anon_sym_COLON_COLON] = ACTIONS(2713), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2713), - [anon_sym___declspec] = ACTIONS(2711), - [anon_sym___based] = ACTIONS(2711), - [anon_sym_signed] = ACTIONS(2711), - [anon_sym_unsigned] = ACTIONS(2711), - [anon_sym_long] = ACTIONS(2711), - [anon_sym_short] = ACTIONS(2711), - [anon_sym_LBRACK] = ACTIONS(2711), - [anon_sym_static] = ACTIONS(2711), - [anon_sym_register] = ACTIONS(2711), - [anon_sym_inline] = ACTIONS(2711), - [anon_sym___inline] = ACTIONS(2711), - [anon_sym___inline__] = ACTIONS(2711), - [anon_sym___forceinline] = ACTIONS(2711), - [anon_sym_thread_local] = ACTIONS(2711), - [anon_sym___thread] = ACTIONS(2711), - [anon_sym_const] = ACTIONS(2711), - [anon_sym_constexpr] = ACTIONS(2711), - [anon_sym_volatile] = ACTIONS(2711), - [anon_sym_restrict] = ACTIONS(2711), - [anon_sym___restrict__] = ACTIONS(2711), - [anon_sym__Atomic] = ACTIONS(2711), - [anon_sym__Noreturn] = ACTIONS(2711), - [anon_sym_noreturn] = ACTIONS(2711), - [anon_sym__Nonnull] = ACTIONS(2711), - [anon_sym_mutable] = ACTIONS(2711), - [anon_sym_constinit] = ACTIONS(2711), - [anon_sym_consteval] = ACTIONS(2711), - [anon_sym_alignas] = ACTIONS(2711), - [anon_sym__Alignas] = ACTIONS(2711), - [sym_primitive_type] = ACTIONS(2711), - [anon_sym_enum] = ACTIONS(2711), - [anon_sym_class] = ACTIONS(2711), - [anon_sym_struct] = ACTIONS(2711), - [anon_sym_union] = ACTIONS(2711), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2711), - [anon_sym_decltype] = ACTIONS(2711), - [anon_sym_explicit] = ACTIONS(2711), - [anon_sym_typename] = ACTIONS(2711), - [anon_sym_private] = ACTIONS(2711), - [anon_sym_template] = ACTIONS(2711), - [anon_sym_operator] = ACTIONS(2711), - [anon_sym_friend] = ACTIONS(2711), - [anon_sym_public] = ACTIONS(2711), - [anon_sym_protected] = ACTIONS(2711), - [anon_sym_static_assert] = ACTIONS(2711), - }, - [2007] = { - [sym_identifier] = ACTIONS(3309), - [aux_sym_preproc_def_token1] = ACTIONS(3309), - [aux_sym_preproc_if_token1] = ACTIONS(3309), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3309), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3309), - [sym_preproc_directive] = ACTIONS(3309), - [anon_sym_LPAREN2] = ACTIONS(3311), - [anon_sym_TILDE] = ACTIONS(3311), - [anon_sym_STAR] = ACTIONS(3311), - [anon_sym_AMP_AMP] = ACTIONS(3311), - [anon_sym_AMP] = ACTIONS(3309), - [anon_sym_SEMI] = ACTIONS(3311), - [anon_sym___extension__] = ACTIONS(3309), - [anon_sym_typedef] = ACTIONS(3309), - [anon_sym_virtual] = ACTIONS(3309), - [anon_sym_extern] = ACTIONS(3309), - [anon_sym___attribute__] = ACTIONS(3309), - [anon_sym___attribute] = ACTIONS(3309), - [anon_sym_using] = ACTIONS(3309), - [anon_sym_COLON_COLON] = ACTIONS(3311), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3311), - [anon_sym___declspec] = ACTIONS(3309), - [anon_sym___based] = ACTIONS(3309), - [anon_sym_RBRACE] = ACTIONS(3311), - [anon_sym_signed] = ACTIONS(3309), - [anon_sym_unsigned] = ACTIONS(3309), - [anon_sym_long] = ACTIONS(3309), - [anon_sym_short] = ACTIONS(3309), - [anon_sym_LBRACK] = ACTIONS(3309), - [anon_sym_static] = ACTIONS(3309), - [anon_sym_register] = ACTIONS(3309), - [anon_sym_inline] = ACTIONS(3309), - [anon_sym___inline] = ACTIONS(3309), - [anon_sym___inline__] = ACTIONS(3309), - [anon_sym___forceinline] = ACTIONS(3309), - [anon_sym_thread_local] = ACTIONS(3309), - [anon_sym___thread] = ACTIONS(3309), - [anon_sym_const] = ACTIONS(3309), - [anon_sym_constexpr] = ACTIONS(3309), - [anon_sym_volatile] = ACTIONS(3309), - [anon_sym_restrict] = ACTIONS(3309), - [anon_sym___restrict__] = ACTIONS(3309), - [anon_sym__Atomic] = ACTIONS(3309), - [anon_sym__Noreturn] = ACTIONS(3309), - [anon_sym_noreturn] = ACTIONS(3309), - [anon_sym__Nonnull] = ACTIONS(3309), - [anon_sym_mutable] = ACTIONS(3309), - [anon_sym_constinit] = ACTIONS(3309), - [anon_sym_consteval] = ACTIONS(3309), - [anon_sym_alignas] = ACTIONS(3309), - [anon_sym__Alignas] = ACTIONS(3309), - [sym_primitive_type] = ACTIONS(3309), - [anon_sym_enum] = ACTIONS(3309), - [anon_sym_class] = ACTIONS(3309), - [anon_sym_struct] = ACTIONS(3309), - [anon_sym_union] = ACTIONS(3309), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3309), - [anon_sym_decltype] = ACTIONS(3309), - [anon_sym_explicit] = ACTIONS(3309), - [anon_sym_typename] = ACTIONS(3309), - [anon_sym_private] = ACTIONS(3309), - [anon_sym_template] = ACTIONS(3309), - [anon_sym_operator] = ACTIONS(3309), - [anon_sym_friend] = ACTIONS(3309), - [anon_sym_public] = ACTIONS(3309), - [anon_sym_protected] = ACTIONS(3309), - [anon_sym_static_assert] = ACTIONS(3309), + [sym_auto] = ACTIONS(5621), + [anon_sym_decltype] = ACTIONS(5621), + [anon_sym_explicit] = ACTIONS(5621), + [anon_sym_typename] = ACTIONS(5621), + [anon_sym_private] = ACTIONS(5621), + [anon_sym_template] = ACTIONS(5621), + [anon_sym_operator] = ACTIONS(5621), + [anon_sym_friend] = ACTIONS(5621), + [anon_sym_public] = ACTIONS(5621), + [anon_sym_protected] = ACTIONS(5621), + [anon_sym_static_assert] = ACTIONS(5621), }, - [2008] = { - [sym_identifier] = ACTIONS(5525), - [aux_sym_preproc_def_token1] = ACTIONS(5525), - [aux_sym_preproc_if_token1] = ACTIONS(5525), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5525), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5525), - [sym_preproc_directive] = ACTIONS(5525), - [anon_sym_LPAREN2] = ACTIONS(5527), - [anon_sym_TILDE] = ACTIONS(5527), - [anon_sym_STAR] = ACTIONS(5527), - [anon_sym_AMP_AMP] = ACTIONS(5527), - [anon_sym_AMP] = ACTIONS(5525), - [anon_sym_SEMI] = ACTIONS(5527), - [anon_sym___extension__] = ACTIONS(5525), - [anon_sym_typedef] = ACTIONS(5525), - [anon_sym_virtual] = ACTIONS(5525), - [anon_sym_extern] = ACTIONS(5525), - [anon_sym___attribute__] = ACTIONS(5525), - [anon_sym___attribute] = ACTIONS(5525), - [anon_sym_using] = ACTIONS(5525), - [anon_sym_COLON_COLON] = ACTIONS(5527), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5527), - [anon_sym___declspec] = ACTIONS(5525), - [anon_sym___based] = ACTIONS(5525), - [anon_sym_RBRACE] = ACTIONS(5527), - [anon_sym_signed] = ACTIONS(5525), - [anon_sym_unsigned] = ACTIONS(5525), - [anon_sym_long] = ACTIONS(5525), - [anon_sym_short] = ACTIONS(5525), - [anon_sym_LBRACK] = ACTIONS(5525), - [anon_sym_static] = ACTIONS(5525), - [anon_sym_register] = ACTIONS(5525), - [anon_sym_inline] = ACTIONS(5525), - [anon_sym___inline] = ACTIONS(5525), - [anon_sym___inline__] = ACTIONS(5525), - [anon_sym___forceinline] = ACTIONS(5525), - [anon_sym_thread_local] = ACTIONS(5525), - [anon_sym___thread] = ACTIONS(5525), - [anon_sym_const] = ACTIONS(5525), - [anon_sym_constexpr] = ACTIONS(5525), - [anon_sym_volatile] = ACTIONS(5525), - [anon_sym_restrict] = ACTIONS(5525), - [anon_sym___restrict__] = ACTIONS(5525), - [anon_sym__Atomic] = ACTIONS(5525), - [anon_sym__Noreturn] = ACTIONS(5525), - [anon_sym_noreturn] = ACTIONS(5525), - [anon_sym__Nonnull] = ACTIONS(5525), - [anon_sym_mutable] = ACTIONS(5525), - [anon_sym_constinit] = ACTIONS(5525), - [anon_sym_consteval] = ACTIONS(5525), - [anon_sym_alignas] = ACTIONS(5525), - [anon_sym__Alignas] = ACTIONS(5525), - [sym_primitive_type] = ACTIONS(5525), - [anon_sym_enum] = ACTIONS(5525), - [anon_sym_class] = ACTIONS(5525), - [anon_sym_struct] = ACTIONS(5525), - [anon_sym_union] = ACTIONS(5525), + [2073] = { + [sym_identifier] = ACTIONS(5629), + [aux_sym_preproc_def_token1] = ACTIONS(5629), + [aux_sym_preproc_if_token1] = ACTIONS(5629), + [aux_sym_preproc_if_token2] = ACTIONS(5629), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5629), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5629), + [sym_preproc_directive] = ACTIONS(5629), + [anon_sym_LPAREN2] = ACTIONS(5631), + [anon_sym_TILDE] = ACTIONS(5631), + [anon_sym_STAR] = ACTIONS(5631), + [anon_sym_AMP_AMP] = ACTIONS(5631), + [anon_sym_AMP] = ACTIONS(5629), + [anon_sym_SEMI] = ACTIONS(5631), + [anon_sym___extension__] = ACTIONS(5629), + [anon_sym_typedef] = ACTIONS(5629), + [anon_sym_virtual] = ACTIONS(5629), + [anon_sym_extern] = ACTIONS(5629), + [anon_sym___attribute__] = ACTIONS(5629), + [anon_sym___attribute] = ACTIONS(5629), + [anon_sym_using] = ACTIONS(5629), + [anon_sym_COLON_COLON] = ACTIONS(5631), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5631), + [anon_sym___declspec] = ACTIONS(5629), + [anon_sym___based] = ACTIONS(5629), + [anon_sym_signed] = ACTIONS(5629), + [anon_sym_unsigned] = ACTIONS(5629), + [anon_sym_long] = ACTIONS(5629), + [anon_sym_short] = ACTIONS(5629), + [anon_sym_LBRACK] = ACTIONS(5629), + [anon_sym_static] = ACTIONS(5629), + [anon_sym_register] = ACTIONS(5629), + [anon_sym_inline] = ACTIONS(5629), + [anon_sym___inline] = ACTIONS(5629), + [anon_sym___inline__] = ACTIONS(5629), + [anon_sym___forceinline] = ACTIONS(5629), + [anon_sym_thread_local] = ACTIONS(5629), + [anon_sym___thread] = ACTIONS(5629), + [anon_sym_const] = ACTIONS(5629), + [anon_sym_constexpr] = ACTIONS(5629), + [anon_sym_volatile] = ACTIONS(5629), + [anon_sym_restrict] = ACTIONS(5629), + [anon_sym___restrict__] = ACTIONS(5629), + [anon_sym__Atomic] = ACTIONS(5629), + [anon_sym__Noreturn] = ACTIONS(5629), + [anon_sym_noreturn] = ACTIONS(5629), + [anon_sym__Nonnull] = ACTIONS(5629), + [anon_sym_mutable] = ACTIONS(5629), + [anon_sym_constinit] = ACTIONS(5629), + [anon_sym_consteval] = ACTIONS(5629), + [anon_sym_alignas] = ACTIONS(5629), + [anon_sym__Alignas] = ACTIONS(5629), + [sym_primitive_type] = ACTIONS(5629), + [anon_sym_enum] = ACTIONS(5629), + [anon_sym_class] = ACTIONS(5629), + [anon_sym_struct] = ACTIONS(5629), + [anon_sym_union] = ACTIONS(5629), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5525), - [anon_sym_decltype] = ACTIONS(5525), - [anon_sym_explicit] = ACTIONS(5525), - [anon_sym_typename] = ACTIONS(5525), - [anon_sym_private] = ACTIONS(5525), - [anon_sym_template] = ACTIONS(5525), - [anon_sym_operator] = ACTIONS(5525), - [anon_sym_friend] = ACTIONS(5525), - [anon_sym_public] = ACTIONS(5525), - [anon_sym_protected] = ACTIONS(5525), - [anon_sym_static_assert] = ACTIONS(5525), + [sym_auto] = ACTIONS(5629), + [anon_sym_decltype] = ACTIONS(5629), + [anon_sym_explicit] = ACTIONS(5629), + [anon_sym_typename] = ACTIONS(5629), + [anon_sym_private] = ACTIONS(5629), + [anon_sym_template] = ACTIONS(5629), + [anon_sym_operator] = ACTIONS(5629), + [anon_sym_friend] = ACTIONS(5629), + [anon_sym_public] = ACTIONS(5629), + [anon_sym_protected] = ACTIONS(5629), + [anon_sym_static_assert] = ACTIONS(5629), }, - [2009] = { - [sym_identifier] = ACTIONS(2911), - [aux_sym_preproc_def_token1] = ACTIONS(2911), - [aux_sym_preproc_if_token1] = ACTIONS(2911), - [aux_sym_preproc_if_token2] = ACTIONS(2911), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2911), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2911), - [sym_preproc_directive] = ACTIONS(2911), - [anon_sym_LPAREN2] = ACTIONS(2913), - [anon_sym_TILDE] = ACTIONS(2913), - [anon_sym_STAR] = ACTIONS(2913), - [anon_sym_AMP_AMP] = ACTIONS(2913), - [anon_sym_AMP] = ACTIONS(2911), - [anon_sym_SEMI] = ACTIONS(2913), - [anon_sym___extension__] = ACTIONS(2911), - [anon_sym_typedef] = ACTIONS(2911), - [anon_sym_virtual] = ACTIONS(2911), - [anon_sym_extern] = ACTIONS(2911), - [anon_sym___attribute__] = ACTIONS(2911), - [anon_sym___attribute] = ACTIONS(2911), - [anon_sym_using] = ACTIONS(2911), - [anon_sym_COLON_COLON] = ACTIONS(2913), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2913), - [anon_sym___declspec] = ACTIONS(2911), - [anon_sym___based] = ACTIONS(2911), - [anon_sym_signed] = ACTIONS(2911), - [anon_sym_unsigned] = ACTIONS(2911), - [anon_sym_long] = ACTIONS(2911), - [anon_sym_short] = ACTIONS(2911), - [anon_sym_LBRACK] = ACTIONS(2911), - [anon_sym_static] = ACTIONS(2911), - [anon_sym_register] = ACTIONS(2911), - [anon_sym_inline] = ACTIONS(2911), - [anon_sym___inline] = ACTIONS(2911), - [anon_sym___inline__] = ACTIONS(2911), - [anon_sym___forceinline] = ACTIONS(2911), - [anon_sym_thread_local] = ACTIONS(2911), - [anon_sym___thread] = ACTIONS(2911), - [anon_sym_const] = ACTIONS(2911), - [anon_sym_constexpr] = ACTIONS(2911), - [anon_sym_volatile] = ACTIONS(2911), - [anon_sym_restrict] = ACTIONS(2911), - [anon_sym___restrict__] = ACTIONS(2911), - [anon_sym__Atomic] = ACTIONS(2911), - [anon_sym__Noreturn] = ACTIONS(2911), - [anon_sym_noreturn] = ACTIONS(2911), - [anon_sym__Nonnull] = ACTIONS(2911), - [anon_sym_mutable] = ACTIONS(2911), - [anon_sym_constinit] = ACTIONS(2911), - [anon_sym_consteval] = ACTIONS(2911), - [anon_sym_alignas] = ACTIONS(2911), - [anon_sym__Alignas] = ACTIONS(2911), - [sym_primitive_type] = ACTIONS(2911), - [anon_sym_enum] = ACTIONS(2911), - [anon_sym_class] = ACTIONS(2911), - [anon_sym_struct] = ACTIONS(2911), - [anon_sym_union] = ACTIONS(2911), + [2074] = { + [sym_identifier] = ACTIONS(5637), + [aux_sym_preproc_def_token1] = ACTIONS(5637), + [aux_sym_preproc_if_token1] = ACTIONS(5637), + [aux_sym_preproc_if_token2] = ACTIONS(5637), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5637), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5637), + [sym_preproc_directive] = ACTIONS(5637), + [anon_sym_LPAREN2] = ACTIONS(5639), + [anon_sym_TILDE] = ACTIONS(5639), + [anon_sym_STAR] = ACTIONS(5639), + [anon_sym_AMP_AMP] = ACTIONS(5639), + [anon_sym_AMP] = ACTIONS(5637), + [anon_sym_SEMI] = ACTIONS(5639), + [anon_sym___extension__] = ACTIONS(5637), + [anon_sym_typedef] = ACTIONS(5637), + [anon_sym_virtual] = ACTIONS(5637), + [anon_sym_extern] = ACTIONS(5637), + [anon_sym___attribute__] = ACTIONS(5637), + [anon_sym___attribute] = ACTIONS(5637), + [anon_sym_using] = ACTIONS(5637), + [anon_sym_COLON_COLON] = ACTIONS(5639), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5639), + [anon_sym___declspec] = ACTIONS(5637), + [anon_sym___based] = ACTIONS(5637), + [anon_sym_signed] = ACTIONS(5637), + [anon_sym_unsigned] = ACTIONS(5637), + [anon_sym_long] = ACTIONS(5637), + [anon_sym_short] = ACTIONS(5637), + [anon_sym_LBRACK] = ACTIONS(5637), + [anon_sym_static] = ACTIONS(5637), + [anon_sym_register] = ACTIONS(5637), + [anon_sym_inline] = ACTIONS(5637), + [anon_sym___inline] = ACTIONS(5637), + [anon_sym___inline__] = ACTIONS(5637), + [anon_sym___forceinline] = ACTIONS(5637), + [anon_sym_thread_local] = ACTIONS(5637), + [anon_sym___thread] = ACTIONS(5637), + [anon_sym_const] = ACTIONS(5637), + [anon_sym_constexpr] = ACTIONS(5637), + [anon_sym_volatile] = ACTIONS(5637), + [anon_sym_restrict] = ACTIONS(5637), + [anon_sym___restrict__] = ACTIONS(5637), + [anon_sym__Atomic] = ACTIONS(5637), + [anon_sym__Noreturn] = ACTIONS(5637), + [anon_sym_noreturn] = ACTIONS(5637), + [anon_sym__Nonnull] = ACTIONS(5637), + [anon_sym_mutable] = ACTIONS(5637), + [anon_sym_constinit] = ACTIONS(5637), + [anon_sym_consteval] = ACTIONS(5637), + [anon_sym_alignas] = ACTIONS(5637), + [anon_sym__Alignas] = ACTIONS(5637), + [sym_primitive_type] = ACTIONS(5637), + [anon_sym_enum] = ACTIONS(5637), + [anon_sym_class] = ACTIONS(5637), + [anon_sym_struct] = ACTIONS(5637), + [anon_sym_union] = ACTIONS(5637), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2911), - [anon_sym_decltype] = ACTIONS(2911), - [anon_sym_explicit] = ACTIONS(2911), - [anon_sym_typename] = ACTIONS(2911), - [anon_sym_private] = ACTIONS(2911), - [anon_sym_template] = ACTIONS(2911), - [anon_sym_operator] = ACTIONS(2911), - [anon_sym_friend] = ACTIONS(2911), - [anon_sym_public] = ACTIONS(2911), - [anon_sym_protected] = ACTIONS(2911), - [anon_sym_static_assert] = ACTIONS(2911), + [sym_auto] = ACTIONS(5637), + [anon_sym_decltype] = ACTIONS(5637), + [anon_sym_explicit] = ACTIONS(5637), + [anon_sym_typename] = ACTIONS(5637), + [anon_sym_private] = ACTIONS(5637), + [anon_sym_template] = ACTIONS(5637), + [anon_sym_operator] = ACTIONS(5637), + [anon_sym_friend] = ACTIONS(5637), + [anon_sym_public] = ACTIONS(5637), + [anon_sym_protected] = ACTIONS(5637), + [anon_sym_static_assert] = ACTIONS(5637), }, - [2010] = { - [sym_string_literal] = STATE(2010), - [sym_raw_string_literal] = STATE(2010), - [aux_sym_concatenated_string_repeat1] = STATE(2010), - [sym_identifier] = ACTIONS(5962), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5403), - [anon_sym_COMMA] = ACTIONS(5403), - [anon_sym_LPAREN2] = ACTIONS(5403), - [anon_sym_DASH] = ACTIONS(5405), - [anon_sym_PLUS] = ACTIONS(5405), - [anon_sym_STAR] = ACTIONS(5405), - [anon_sym_SLASH] = ACTIONS(5405), - [anon_sym_PERCENT] = ACTIONS(5405), - [anon_sym_PIPE_PIPE] = ACTIONS(5403), - [anon_sym_AMP_AMP] = ACTIONS(5403), - [anon_sym_PIPE] = ACTIONS(5405), - [anon_sym_CARET] = ACTIONS(5405), - [anon_sym_AMP] = ACTIONS(5405), - [anon_sym_EQ_EQ] = ACTIONS(5403), - [anon_sym_BANG_EQ] = ACTIONS(5403), - [anon_sym_GT] = ACTIONS(5405), - [anon_sym_GT_EQ] = ACTIONS(5403), - [anon_sym_LT_EQ] = ACTIONS(5405), - [anon_sym_LT] = ACTIONS(5405), - [anon_sym_LT_LT] = ACTIONS(5405), - [anon_sym_GT_GT] = ACTIONS(5405), - [anon_sym_SEMI] = ACTIONS(5403), - [anon_sym___attribute__] = ACTIONS(5405), - [anon_sym___attribute] = ACTIONS(5405), - [anon_sym_LBRACK] = ACTIONS(5403), - [anon_sym_EQ] = ACTIONS(5405), - [anon_sym_QMARK] = ACTIONS(5403), - [anon_sym_STAR_EQ] = ACTIONS(5403), - [anon_sym_SLASH_EQ] = ACTIONS(5403), - [anon_sym_PERCENT_EQ] = ACTIONS(5403), - [anon_sym_PLUS_EQ] = ACTIONS(5403), - [anon_sym_DASH_EQ] = ACTIONS(5403), - [anon_sym_LT_LT_EQ] = ACTIONS(5403), - [anon_sym_GT_GT_EQ] = ACTIONS(5403), - [anon_sym_AMP_EQ] = ACTIONS(5403), - [anon_sym_CARET_EQ] = ACTIONS(5403), - [anon_sym_PIPE_EQ] = ACTIONS(5403), - [anon_sym_and_eq] = ACTIONS(5405), - [anon_sym_or_eq] = ACTIONS(5405), - [anon_sym_xor_eq] = ACTIONS(5405), - [anon_sym_LT_EQ_GT] = ACTIONS(5403), - [anon_sym_or] = ACTIONS(5405), - [anon_sym_and] = ACTIONS(5405), - [anon_sym_bitor] = ACTIONS(5405), - [anon_sym_xor] = ACTIONS(5405), - [anon_sym_bitand] = ACTIONS(5405), - [anon_sym_not_eq] = ACTIONS(5405), - [anon_sym_DASH_DASH] = ACTIONS(5403), - [anon_sym_PLUS_PLUS] = ACTIONS(5403), - [anon_sym_DOT] = ACTIONS(5405), - [anon_sym_DOT_STAR] = ACTIONS(5403), - [anon_sym_DASH_GT] = ACTIONS(5403), - [anon_sym_L_DQUOTE] = ACTIONS(5965), - [anon_sym_u_DQUOTE] = ACTIONS(5965), - [anon_sym_U_DQUOTE] = ACTIONS(5965), - [anon_sym_u8_DQUOTE] = ACTIONS(5965), - [anon_sym_DQUOTE] = ACTIONS(5965), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5968), - [anon_sym_LR_DQUOTE] = ACTIONS(5968), - [anon_sym_uR_DQUOTE] = ACTIONS(5968), - [anon_sym_UR_DQUOTE] = ACTIONS(5968), - [anon_sym_u8R_DQUOTE] = ACTIONS(5968), - [sym_literal_suffix] = ACTIONS(5405), + [2075] = { + [sym_identifier] = ACTIONS(5507), + [aux_sym_preproc_def_token1] = ACTIONS(5507), + [aux_sym_preproc_if_token1] = ACTIONS(5507), + [aux_sym_preproc_if_token2] = ACTIONS(5507), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5507), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5507), + [sym_preproc_directive] = ACTIONS(5507), + [anon_sym_LPAREN2] = ACTIONS(5509), + [anon_sym_TILDE] = ACTIONS(5509), + [anon_sym_STAR] = ACTIONS(5509), + [anon_sym_AMP_AMP] = ACTIONS(5509), + [anon_sym_AMP] = ACTIONS(5507), + [anon_sym_SEMI] = ACTIONS(5509), + [anon_sym___extension__] = ACTIONS(5507), + [anon_sym_typedef] = ACTIONS(5507), + [anon_sym_virtual] = ACTIONS(5507), + [anon_sym_extern] = ACTIONS(5507), + [anon_sym___attribute__] = ACTIONS(5507), + [anon_sym___attribute] = ACTIONS(5507), + [anon_sym_using] = ACTIONS(5507), + [anon_sym_COLON_COLON] = ACTIONS(5509), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5509), + [anon_sym___declspec] = ACTIONS(5507), + [anon_sym___based] = ACTIONS(5507), + [anon_sym_signed] = ACTIONS(5507), + [anon_sym_unsigned] = ACTIONS(5507), + [anon_sym_long] = ACTIONS(5507), + [anon_sym_short] = ACTIONS(5507), + [anon_sym_LBRACK] = ACTIONS(5507), + [anon_sym_static] = ACTIONS(5507), + [anon_sym_register] = ACTIONS(5507), + [anon_sym_inline] = ACTIONS(5507), + [anon_sym___inline] = ACTIONS(5507), + [anon_sym___inline__] = ACTIONS(5507), + [anon_sym___forceinline] = ACTIONS(5507), + [anon_sym_thread_local] = ACTIONS(5507), + [anon_sym___thread] = ACTIONS(5507), + [anon_sym_const] = ACTIONS(5507), + [anon_sym_constexpr] = ACTIONS(5507), + [anon_sym_volatile] = ACTIONS(5507), + [anon_sym_restrict] = ACTIONS(5507), + [anon_sym___restrict__] = ACTIONS(5507), + [anon_sym__Atomic] = ACTIONS(5507), + [anon_sym__Noreturn] = ACTIONS(5507), + [anon_sym_noreturn] = ACTIONS(5507), + [anon_sym__Nonnull] = ACTIONS(5507), + [anon_sym_mutable] = ACTIONS(5507), + [anon_sym_constinit] = ACTIONS(5507), + [anon_sym_consteval] = ACTIONS(5507), + [anon_sym_alignas] = ACTIONS(5507), + [anon_sym__Alignas] = ACTIONS(5507), + [sym_primitive_type] = ACTIONS(5507), + [anon_sym_enum] = ACTIONS(5507), + [anon_sym_class] = ACTIONS(5507), + [anon_sym_struct] = ACTIONS(5507), + [anon_sym_union] = ACTIONS(5507), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5507), + [anon_sym_decltype] = ACTIONS(5507), + [anon_sym_explicit] = ACTIONS(5507), + [anon_sym_typename] = ACTIONS(5507), + [anon_sym_private] = ACTIONS(5507), + [anon_sym_template] = ACTIONS(5507), + [anon_sym_operator] = ACTIONS(5507), + [anon_sym_friend] = ACTIONS(5507), + [anon_sym_public] = ACTIONS(5507), + [anon_sym_protected] = ACTIONS(5507), + [anon_sym_static_assert] = ACTIONS(5507), }, - [2011] = { - [sym_identifier] = ACTIONS(2699), - [aux_sym_preproc_def_token1] = ACTIONS(2699), - [aux_sym_preproc_if_token1] = ACTIONS(2699), - [aux_sym_preproc_if_token2] = ACTIONS(2699), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2699), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2699), - [sym_preproc_directive] = ACTIONS(2699), - [anon_sym_LPAREN2] = ACTIONS(2701), - [anon_sym_TILDE] = ACTIONS(2701), - [anon_sym_STAR] = ACTIONS(2701), - [anon_sym_AMP_AMP] = ACTIONS(2701), - [anon_sym_AMP] = ACTIONS(2699), - [anon_sym_SEMI] = ACTIONS(2701), - [anon_sym___extension__] = ACTIONS(2699), - [anon_sym_typedef] = ACTIONS(2699), - [anon_sym_virtual] = ACTIONS(2699), - [anon_sym_extern] = ACTIONS(2699), - [anon_sym___attribute__] = ACTIONS(2699), - [anon_sym___attribute] = ACTIONS(2699), - [anon_sym_using] = ACTIONS(2699), - [anon_sym_COLON_COLON] = ACTIONS(2701), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2701), - [anon_sym___declspec] = ACTIONS(2699), - [anon_sym___based] = ACTIONS(2699), - [anon_sym_signed] = ACTIONS(2699), - [anon_sym_unsigned] = ACTIONS(2699), - [anon_sym_long] = ACTIONS(2699), - [anon_sym_short] = ACTIONS(2699), - [anon_sym_LBRACK] = ACTIONS(2699), - [anon_sym_static] = ACTIONS(2699), - [anon_sym_register] = ACTIONS(2699), - [anon_sym_inline] = ACTIONS(2699), - [anon_sym___inline] = ACTIONS(2699), - [anon_sym___inline__] = ACTIONS(2699), - [anon_sym___forceinline] = ACTIONS(2699), - [anon_sym_thread_local] = ACTIONS(2699), - [anon_sym___thread] = ACTIONS(2699), - [anon_sym_const] = ACTIONS(2699), - [anon_sym_constexpr] = ACTIONS(2699), - [anon_sym_volatile] = ACTIONS(2699), - [anon_sym_restrict] = ACTIONS(2699), - [anon_sym___restrict__] = ACTIONS(2699), - [anon_sym__Atomic] = ACTIONS(2699), - [anon_sym__Noreturn] = ACTIONS(2699), - [anon_sym_noreturn] = ACTIONS(2699), - [anon_sym__Nonnull] = ACTIONS(2699), - [anon_sym_mutable] = ACTIONS(2699), - [anon_sym_constinit] = ACTIONS(2699), - [anon_sym_consteval] = ACTIONS(2699), - [anon_sym_alignas] = ACTIONS(2699), - [anon_sym__Alignas] = ACTIONS(2699), - [sym_primitive_type] = ACTIONS(2699), - [anon_sym_enum] = ACTIONS(2699), - [anon_sym_class] = ACTIONS(2699), - [anon_sym_struct] = ACTIONS(2699), - [anon_sym_union] = ACTIONS(2699), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2699), - [anon_sym_decltype] = ACTIONS(2699), - [anon_sym_explicit] = ACTIONS(2699), - [anon_sym_typename] = ACTIONS(2699), - [anon_sym_private] = ACTIONS(2699), - [anon_sym_template] = ACTIONS(2699), - [anon_sym_operator] = ACTIONS(2699), - [anon_sym_friend] = ACTIONS(2699), - [anon_sym_public] = ACTIONS(2699), - [anon_sym_protected] = ACTIONS(2699), - [anon_sym_static_assert] = ACTIONS(2699), + [2076] = { + [sym_identifier] = ACTIONS(5511), + [aux_sym_preproc_def_token1] = ACTIONS(5511), + [aux_sym_preproc_if_token1] = ACTIONS(5511), + [aux_sym_preproc_if_token2] = ACTIONS(5511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5511), + [sym_preproc_directive] = ACTIONS(5511), + [anon_sym_LPAREN2] = ACTIONS(5513), + [anon_sym_TILDE] = ACTIONS(5513), + [anon_sym_STAR] = ACTIONS(5513), + [anon_sym_AMP_AMP] = ACTIONS(5513), + [anon_sym_AMP] = ACTIONS(5511), + [anon_sym_SEMI] = ACTIONS(5513), + [anon_sym___extension__] = ACTIONS(5511), + [anon_sym_typedef] = ACTIONS(5511), + [anon_sym_virtual] = ACTIONS(5511), + [anon_sym_extern] = ACTIONS(5511), + [anon_sym___attribute__] = ACTIONS(5511), + [anon_sym___attribute] = ACTIONS(5511), + [anon_sym_using] = ACTIONS(5511), + [anon_sym_COLON_COLON] = ACTIONS(5513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5513), + [anon_sym___declspec] = ACTIONS(5511), + [anon_sym___based] = ACTIONS(5511), + [anon_sym_signed] = ACTIONS(5511), + [anon_sym_unsigned] = ACTIONS(5511), + [anon_sym_long] = ACTIONS(5511), + [anon_sym_short] = ACTIONS(5511), + [anon_sym_LBRACK] = ACTIONS(5511), + [anon_sym_static] = ACTIONS(5511), + [anon_sym_register] = ACTIONS(5511), + [anon_sym_inline] = ACTIONS(5511), + [anon_sym___inline] = ACTIONS(5511), + [anon_sym___inline__] = ACTIONS(5511), + [anon_sym___forceinline] = ACTIONS(5511), + [anon_sym_thread_local] = ACTIONS(5511), + [anon_sym___thread] = ACTIONS(5511), + [anon_sym_const] = ACTIONS(5511), + [anon_sym_constexpr] = ACTIONS(5511), + [anon_sym_volatile] = ACTIONS(5511), + [anon_sym_restrict] = ACTIONS(5511), + [anon_sym___restrict__] = ACTIONS(5511), + [anon_sym__Atomic] = ACTIONS(5511), + [anon_sym__Noreturn] = ACTIONS(5511), + [anon_sym_noreturn] = ACTIONS(5511), + [anon_sym__Nonnull] = ACTIONS(5511), + [anon_sym_mutable] = ACTIONS(5511), + [anon_sym_constinit] = ACTIONS(5511), + [anon_sym_consteval] = ACTIONS(5511), + [anon_sym_alignas] = ACTIONS(5511), + [anon_sym__Alignas] = ACTIONS(5511), + [sym_primitive_type] = ACTIONS(5511), + [anon_sym_enum] = ACTIONS(5511), + [anon_sym_class] = ACTIONS(5511), + [anon_sym_struct] = ACTIONS(5511), + [anon_sym_union] = ACTIONS(5511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5511), + [anon_sym_decltype] = ACTIONS(5511), + [anon_sym_explicit] = ACTIONS(5511), + [anon_sym_typename] = ACTIONS(5511), + [anon_sym_private] = ACTIONS(5511), + [anon_sym_template] = ACTIONS(5511), + [anon_sym_operator] = ACTIONS(5511), + [anon_sym_friend] = ACTIONS(5511), + [anon_sym_public] = ACTIONS(5511), + [anon_sym_protected] = ACTIONS(5511), + [anon_sym_static_assert] = ACTIONS(5511), }, - [2012] = { - [sym_identifier] = ACTIONS(2639), - [aux_sym_preproc_def_token1] = ACTIONS(2639), - [aux_sym_preproc_if_token1] = ACTIONS(2639), - [aux_sym_preproc_if_token2] = ACTIONS(2639), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2639), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2639), - [sym_preproc_directive] = ACTIONS(2639), - [anon_sym_LPAREN2] = ACTIONS(2641), - [anon_sym_TILDE] = ACTIONS(2641), - [anon_sym_STAR] = ACTIONS(2641), - [anon_sym_AMP_AMP] = ACTIONS(2641), - [anon_sym_AMP] = ACTIONS(2639), - [anon_sym_SEMI] = ACTIONS(2641), - [anon_sym___extension__] = ACTIONS(2639), - [anon_sym_typedef] = ACTIONS(2639), - [anon_sym_virtual] = ACTIONS(2639), - [anon_sym_extern] = ACTIONS(2639), - [anon_sym___attribute__] = ACTIONS(2639), - [anon_sym___attribute] = ACTIONS(2639), - [anon_sym_using] = ACTIONS(2639), - [anon_sym_COLON_COLON] = ACTIONS(2641), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2641), - [anon_sym___declspec] = ACTIONS(2639), - [anon_sym___based] = ACTIONS(2639), - [anon_sym_signed] = ACTIONS(2639), - [anon_sym_unsigned] = ACTIONS(2639), - [anon_sym_long] = ACTIONS(2639), - [anon_sym_short] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(2639), - [anon_sym_static] = ACTIONS(2639), - [anon_sym_register] = ACTIONS(2639), - [anon_sym_inline] = ACTIONS(2639), - [anon_sym___inline] = ACTIONS(2639), - [anon_sym___inline__] = ACTIONS(2639), - [anon_sym___forceinline] = ACTIONS(2639), - [anon_sym_thread_local] = ACTIONS(2639), - [anon_sym___thread] = ACTIONS(2639), - [anon_sym_const] = ACTIONS(2639), - [anon_sym_constexpr] = ACTIONS(2639), - [anon_sym_volatile] = ACTIONS(2639), - [anon_sym_restrict] = ACTIONS(2639), - [anon_sym___restrict__] = ACTIONS(2639), - [anon_sym__Atomic] = ACTIONS(2639), - [anon_sym__Noreturn] = ACTIONS(2639), - [anon_sym_noreturn] = ACTIONS(2639), - [anon_sym__Nonnull] = ACTIONS(2639), - [anon_sym_mutable] = ACTIONS(2639), - [anon_sym_constinit] = ACTIONS(2639), - [anon_sym_consteval] = ACTIONS(2639), - [anon_sym_alignas] = ACTIONS(2639), - [anon_sym__Alignas] = ACTIONS(2639), - [sym_primitive_type] = ACTIONS(2639), - [anon_sym_enum] = ACTIONS(2639), - [anon_sym_class] = ACTIONS(2639), - [anon_sym_struct] = ACTIONS(2639), - [anon_sym_union] = ACTIONS(2639), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2639), - [anon_sym_decltype] = ACTIONS(2639), - [anon_sym_explicit] = ACTIONS(2639), - [anon_sym_typename] = ACTIONS(2639), - [anon_sym_private] = ACTIONS(2639), - [anon_sym_template] = ACTIONS(2639), - [anon_sym_operator] = ACTIONS(2639), - [anon_sym_friend] = ACTIONS(2639), - [anon_sym_public] = ACTIONS(2639), - [anon_sym_protected] = ACTIONS(2639), - [anon_sym_static_assert] = ACTIONS(2639), + [2077] = { + [sym_identifier] = ACTIONS(5507), + [aux_sym_preproc_def_token1] = ACTIONS(5507), + [aux_sym_preproc_if_token1] = ACTIONS(5507), + [aux_sym_preproc_if_token2] = ACTIONS(5507), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5507), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5507), + [sym_preproc_directive] = ACTIONS(5507), + [anon_sym_LPAREN2] = ACTIONS(5509), + [anon_sym_TILDE] = ACTIONS(5509), + [anon_sym_STAR] = ACTIONS(5509), + [anon_sym_AMP_AMP] = ACTIONS(5509), + [anon_sym_AMP] = ACTIONS(5507), + [anon_sym_SEMI] = ACTIONS(5509), + [anon_sym___extension__] = ACTIONS(5507), + [anon_sym_typedef] = ACTIONS(5507), + [anon_sym_virtual] = ACTIONS(5507), + [anon_sym_extern] = ACTIONS(5507), + [anon_sym___attribute__] = ACTIONS(5507), + [anon_sym___attribute] = ACTIONS(5507), + [anon_sym_using] = ACTIONS(5507), + [anon_sym_COLON_COLON] = ACTIONS(5509), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5509), + [anon_sym___declspec] = ACTIONS(5507), + [anon_sym___based] = ACTIONS(5507), + [anon_sym_signed] = ACTIONS(5507), + [anon_sym_unsigned] = ACTIONS(5507), + [anon_sym_long] = ACTIONS(5507), + [anon_sym_short] = ACTIONS(5507), + [anon_sym_LBRACK] = ACTIONS(5507), + [anon_sym_static] = ACTIONS(5507), + [anon_sym_register] = ACTIONS(5507), + [anon_sym_inline] = ACTIONS(5507), + [anon_sym___inline] = ACTIONS(5507), + [anon_sym___inline__] = ACTIONS(5507), + [anon_sym___forceinline] = ACTIONS(5507), + [anon_sym_thread_local] = ACTIONS(5507), + [anon_sym___thread] = ACTIONS(5507), + [anon_sym_const] = ACTIONS(5507), + [anon_sym_constexpr] = ACTIONS(5507), + [anon_sym_volatile] = ACTIONS(5507), + [anon_sym_restrict] = ACTIONS(5507), + [anon_sym___restrict__] = ACTIONS(5507), + [anon_sym__Atomic] = ACTIONS(5507), + [anon_sym__Noreturn] = ACTIONS(5507), + [anon_sym_noreturn] = ACTIONS(5507), + [anon_sym__Nonnull] = ACTIONS(5507), + [anon_sym_mutable] = ACTIONS(5507), + [anon_sym_constinit] = ACTIONS(5507), + [anon_sym_consteval] = ACTIONS(5507), + [anon_sym_alignas] = ACTIONS(5507), + [anon_sym__Alignas] = ACTIONS(5507), + [sym_primitive_type] = ACTIONS(5507), + [anon_sym_enum] = ACTIONS(5507), + [anon_sym_class] = ACTIONS(5507), + [anon_sym_struct] = ACTIONS(5507), + [anon_sym_union] = ACTIONS(5507), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5507), + [anon_sym_decltype] = ACTIONS(5507), + [anon_sym_explicit] = ACTIONS(5507), + [anon_sym_typename] = ACTIONS(5507), + [anon_sym_private] = ACTIONS(5507), + [anon_sym_template] = ACTIONS(5507), + [anon_sym_operator] = ACTIONS(5507), + [anon_sym_friend] = ACTIONS(5507), + [anon_sym_public] = ACTIONS(5507), + [anon_sym_protected] = ACTIONS(5507), + [anon_sym_static_assert] = ACTIONS(5507), }, - [2013] = { - [sym_identifier] = ACTIONS(2955), - [aux_sym_preproc_def_token1] = ACTIONS(2955), - [aux_sym_preproc_if_token1] = ACTIONS(2955), - [aux_sym_preproc_if_token2] = ACTIONS(2955), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2955), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2955), - [sym_preproc_directive] = ACTIONS(2955), - [anon_sym_LPAREN2] = ACTIONS(2957), - [anon_sym_TILDE] = ACTIONS(2957), - [anon_sym_STAR] = ACTIONS(2957), - [anon_sym_AMP_AMP] = ACTIONS(2957), - [anon_sym_AMP] = ACTIONS(2955), - [anon_sym_SEMI] = ACTIONS(2957), - [anon_sym___extension__] = ACTIONS(2955), - [anon_sym_typedef] = ACTIONS(2955), - [anon_sym_virtual] = ACTIONS(2955), - [anon_sym_extern] = ACTIONS(2955), - [anon_sym___attribute__] = ACTIONS(2955), - [anon_sym___attribute] = ACTIONS(2955), - [anon_sym_using] = ACTIONS(2955), - [anon_sym_COLON_COLON] = ACTIONS(2957), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2957), - [anon_sym___declspec] = ACTIONS(2955), - [anon_sym___based] = ACTIONS(2955), - [anon_sym_signed] = ACTIONS(2955), - [anon_sym_unsigned] = ACTIONS(2955), - [anon_sym_long] = ACTIONS(2955), - [anon_sym_short] = ACTIONS(2955), - [anon_sym_LBRACK] = ACTIONS(2955), - [anon_sym_static] = ACTIONS(2955), - [anon_sym_register] = ACTIONS(2955), - [anon_sym_inline] = ACTIONS(2955), - [anon_sym___inline] = ACTIONS(2955), - [anon_sym___inline__] = ACTIONS(2955), - [anon_sym___forceinline] = ACTIONS(2955), - [anon_sym_thread_local] = ACTIONS(2955), - [anon_sym___thread] = ACTIONS(2955), - [anon_sym_const] = ACTIONS(2955), - [anon_sym_constexpr] = ACTIONS(2955), - [anon_sym_volatile] = ACTIONS(2955), - [anon_sym_restrict] = ACTIONS(2955), - [anon_sym___restrict__] = ACTIONS(2955), - [anon_sym__Atomic] = ACTIONS(2955), - [anon_sym__Noreturn] = ACTIONS(2955), - [anon_sym_noreturn] = ACTIONS(2955), - [anon_sym__Nonnull] = ACTIONS(2955), - [anon_sym_mutable] = ACTIONS(2955), - [anon_sym_constinit] = ACTIONS(2955), - [anon_sym_consteval] = ACTIONS(2955), - [anon_sym_alignas] = ACTIONS(2955), - [anon_sym__Alignas] = ACTIONS(2955), - [sym_primitive_type] = ACTIONS(2955), - [anon_sym_enum] = ACTIONS(2955), - [anon_sym_class] = ACTIONS(2955), - [anon_sym_struct] = ACTIONS(2955), - [anon_sym_union] = ACTIONS(2955), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2955), - [anon_sym_decltype] = ACTIONS(2955), - [anon_sym_explicit] = ACTIONS(2955), - [anon_sym_typename] = ACTIONS(2955), - [anon_sym_private] = ACTIONS(2955), - [anon_sym_template] = ACTIONS(2955), - [anon_sym_operator] = ACTIONS(2955), - [anon_sym_friend] = ACTIONS(2955), - [anon_sym_public] = ACTIONS(2955), - [anon_sym_protected] = ACTIONS(2955), - [anon_sym_static_assert] = ACTIONS(2955), + [2078] = { + [sym_identifier] = ACTIONS(5511), + [aux_sym_preproc_def_token1] = ACTIONS(5511), + [aux_sym_preproc_if_token1] = ACTIONS(5511), + [aux_sym_preproc_if_token2] = ACTIONS(5511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5511), + [sym_preproc_directive] = ACTIONS(5511), + [anon_sym_LPAREN2] = ACTIONS(5513), + [anon_sym_TILDE] = ACTIONS(5513), + [anon_sym_STAR] = ACTIONS(5513), + [anon_sym_AMP_AMP] = ACTIONS(5513), + [anon_sym_AMP] = ACTIONS(5511), + [anon_sym_SEMI] = ACTIONS(5513), + [anon_sym___extension__] = ACTIONS(5511), + [anon_sym_typedef] = ACTIONS(5511), + [anon_sym_virtual] = ACTIONS(5511), + [anon_sym_extern] = ACTIONS(5511), + [anon_sym___attribute__] = ACTIONS(5511), + [anon_sym___attribute] = ACTIONS(5511), + [anon_sym_using] = ACTIONS(5511), + [anon_sym_COLON_COLON] = ACTIONS(5513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5513), + [anon_sym___declspec] = ACTIONS(5511), + [anon_sym___based] = ACTIONS(5511), + [anon_sym_signed] = ACTIONS(5511), + [anon_sym_unsigned] = ACTIONS(5511), + [anon_sym_long] = ACTIONS(5511), + [anon_sym_short] = ACTIONS(5511), + [anon_sym_LBRACK] = ACTIONS(5511), + [anon_sym_static] = ACTIONS(5511), + [anon_sym_register] = ACTIONS(5511), + [anon_sym_inline] = ACTIONS(5511), + [anon_sym___inline] = ACTIONS(5511), + [anon_sym___inline__] = ACTIONS(5511), + [anon_sym___forceinline] = ACTIONS(5511), + [anon_sym_thread_local] = ACTIONS(5511), + [anon_sym___thread] = ACTIONS(5511), + [anon_sym_const] = ACTIONS(5511), + [anon_sym_constexpr] = ACTIONS(5511), + [anon_sym_volatile] = ACTIONS(5511), + [anon_sym_restrict] = ACTIONS(5511), + [anon_sym___restrict__] = ACTIONS(5511), + [anon_sym__Atomic] = ACTIONS(5511), + [anon_sym__Noreturn] = ACTIONS(5511), + [anon_sym_noreturn] = ACTIONS(5511), + [anon_sym__Nonnull] = ACTIONS(5511), + [anon_sym_mutable] = ACTIONS(5511), + [anon_sym_constinit] = ACTIONS(5511), + [anon_sym_consteval] = ACTIONS(5511), + [anon_sym_alignas] = ACTIONS(5511), + [anon_sym__Alignas] = ACTIONS(5511), + [sym_primitive_type] = ACTIONS(5511), + [anon_sym_enum] = ACTIONS(5511), + [anon_sym_class] = ACTIONS(5511), + [anon_sym_struct] = ACTIONS(5511), + [anon_sym_union] = ACTIONS(5511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5511), + [anon_sym_decltype] = ACTIONS(5511), + [anon_sym_explicit] = ACTIONS(5511), + [anon_sym_typename] = ACTIONS(5511), + [anon_sym_private] = ACTIONS(5511), + [anon_sym_template] = ACTIONS(5511), + [anon_sym_operator] = ACTIONS(5511), + [anon_sym_friend] = ACTIONS(5511), + [anon_sym_public] = ACTIONS(5511), + [anon_sym_protected] = ACTIONS(5511), + [anon_sym_static_assert] = ACTIONS(5511), }, - [2014] = { - [sym_identifier] = ACTIONS(3067), - [aux_sym_preproc_def_token1] = ACTIONS(3067), - [aux_sym_preproc_if_token1] = ACTIONS(3067), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3067), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3067), - [sym_preproc_directive] = ACTIONS(3067), - [anon_sym_LPAREN2] = ACTIONS(3069), - [anon_sym_TILDE] = ACTIONS(3069), - [anon_sym_STAR] = ACTIONS(3069), - [anon_sym_AMP_AMP] = ACTIONS(3069), - [anon_sym_AMP] = ACTIONS(3067), - [anon_sym_SEMI] = ACTIONS(3069), - [anon_sym___extension__] = ACTIONS(3067), - [anon_sym_typedef] = ACTIONS(3067), - [anon_sym_virtual] = ACTIONS(3067), - [anon_sym_extern] = ACTIONS(3067), - [anon_sym___attribute__] = ACTIONS(3067), - [anon_sym___attribute] = ACTIONS(3067), - [anon_sym_using] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(3069), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3069), - [anon_sym___declspec] = ACTIONS(3067), - [anon_sym___based] = ACTIONS(3067), - [anon_sym_RBRACE] = ACTIONS(3069), - [anon_sym_signed] = ACTIONS(3067), - [anon_sym_unsigned] = ACTIONS(3067), - [anon_sym_long] = ACTIONS(3067), - [anon_sym_short] = ACTIONS(3067), - [anon_sym_LBRACK] = ACTIONS(3067), - [anon_sym_static] = ACTIONS(3067), - [anon_sym_register] = ACTIONS(3067), - [anon_sym_inline] = ACTIONS(3067), - [anon_sym___inline] = ACTIONS(3067), - [anon_sym___inline__] = ACTIONS(3067), - [anon_sym___forceinline] = ACTIONS(3067), - [anon_sym_thread_local] = ACTIONS(3067), - [anon_sym___thread] = ACTIONS(3067), - [anon_sym_const] = ACTIONS(3067), - [anon_sym_constexpr] = ACTIONS(3067), - [anon_sym_volatile] = ACTIONS(3067), - [anon_sym_restrict] = ACTIONS(3067), - [anon_sym___restrict__] = ACTIONS(3067), - [anon_sym__Atomic] = ACTIONS(3067), - [anon_sym__Noreturn] = ACTIONS(3067), - [anon_sym_noreturn] = ACTIONS(3067), - [anon_sym__Nonnull] = ACTIONS(3067), - [anon_sym_mutable] = ACTIONS(3067), - [anon_sym_constinit] = ACTIONS(3067), - [anon_sym_consteval] = ACTIONS(3067), - [anon_sym_alignas] = ACTIONS(3067), - [anon_sym__Alignas] = ACTIONS(3067), - [sym_primitive_type] = ACTIONS(3067), - [anon_sym_enum] = ACTIONS(3067), - [anon_sym_class] = ACTIONS(3067), - [anon_sym_struct] = ACTIONS(3067), - [anon_sym_union] = ACTIONS(3067), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3067), - [anon_sym_decltype] = ACTIONS(3067), - [anon_sym_explicit] = ACTIONS(3067), - [anon_sym_typename] = ACTIONS(3067), - [anon_sym_private] = ACTIONS(3067), - [anon_sym_template] = ACTIONS(3067), - [anon_sym_operator] = ACTIONS(3067), - [anon_sym_friend] = ACTIONS(3067), - [anon_sym_public] = ACTIONS(3067), - [anon_sym_protected] = ACTIONS(3067), - [anon_sym_static_assert] = ACTIONS(3067), + [2079] = { + [sym_identifier] = ACTIONS(5617), + [aux_sym_preproc_def_token1] = ACTIONS(5617), + [aux_sym_preproc_if_token1] = ACTIONS(5617), + [aux_sym_preproc_if_token2] = ACTIONS(5617), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5617), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5617), + [sym_preproc_directive] = ACTIONS(5617), + [anon_sym_LPAREN2] = ACTIONS(5619), + [anon_sym_TILDE] = ACTIONS(5619), + [anon_sym_STAR] = ACTIONS(5619), + [anon_sym_AMP_AMP] = ACTIONS(5619), + [anon_sym_AMP] = ACTIONS(5617), + [anon_sym_SEMI] = ACTIONS(5619), + [anon_sym___extension__] = ACTIONS(5617), + [anon_sym_typedef] = ACTIONS(5617), + [anon_sym_virtual] = ACTIONS(5617), + [anon_sym_extern] = ACTIONS(5617), + [anon_sym___attribute__] = ACTIONS(5617), + [anon_sym___attribute] = ACTIONS(5617), + [anon_sym_using] = ACTIONS(5617), + [anon_sym_COLON_COLON] = ACTIONS(5619), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5619), + [anon_sym___declspec] = ACTIONS(5617), + [anon_sym___based] = ACTIONS(5617), + [anon_sym_signed] = ACTIONS(5617), + [anon_sym_unsigned] = ACTIONS(5617), + [anon_sym_long] = ACTIONS(5617), + [anon_sym_short] = ACTIONS(5617), + [anon_sym_LBRACK] = ACTIONS(5617), + [anon_sym_static] = ACTIONS(5617), + [anon_sym_register] = ACTIONS(5617), + [anon_sym_inline] = ACTIONS(5617), + [anon_sym___inline] = ACTIONS(5617), + [anon_sym___inline__] = ACTIONS(5617), + [anon_sym___forceinline] = ACTIONS(5617), + [anon_sym_thread_local] = ACTIONS(5617), + [anon_sym___thread] = ACTIONS(5617), + [anon_sym_const] = ACTIONS(5617), + [anon_sym_constexpr] = ACTIONS(5617), + [anon_sym_volatile] = ACTIONS(5617), + [anon_sym_restrict] = ACTIONS(5617), + [anon_sym___restrict__] = ACTIONS(5617), + [anon_sym__Atomic] = ACTIONS(5617), + [anon_sym__Noreturn] = ACTIONS(5617), + [anon_sym_noreturn] = ACTIONS(5617), + [anon_sym__Nonnull] = ACTIONS(5617), + [anon_sym_mutable] = ACTIONS(5617), + [anon_sym_constinit] = ACTIONS(5617), + [anon_sym_consteval] = ACTIONS(5617), + [anon_sym_alignas] = ACTIONS(5617), + [anon_sym__Alignas] = ACTIONS(5617), + [sym_primitive_type] = ACTIONS(5617), + [anon_sym_enum] = ACTIONS(5617), + [anon_sym_class] = ACTIONS(5617), + [anon_sym_struct] = ACTIONS(5617), + [anon_sym_union] = ACTIONS(5617), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5617), + [anon_sym_decltype] = ACTIONS(5617), + [anon_sym_explicit] = ACTIONS(5617), + [anon_sym_typename] = ACTIONS(5617), + [anon_sym_private] = ACTIONS(5617), + [anon_sym_template] = ACTIONS(5617), + [anon_sym_operator] = ACTIONS(5617), + [anon_sym_friend] = ACTIONS(5617), + [anon_sym_public] = ACTIONS(5617), + [anon_sym_protected] = ACTIONS(5617), + [anon_sym_static_assert] = ACTIONS(5617), }, - [2015] = { - [sym_identifier] = ACTIONS(3071), - [aux_sym_preproc_def_token1] = ACTIONS(3071), - [aux_sym_preproc_if_token1] = ACTIONS(3071), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3071), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3071), - [sym_preproc_directive] = ACTIONS(3071), - [anon_sym_LPAREN2] = ACTIONS(3073), - [anon_sym_TILDE] = ACTIONS(3073), - [anon_sym_STAR] = ACTIONS(3073), - [anon_sym_AMP_AMP] = ACTIONS(3073), - [anon_sym_AMP] = ACTIONS(3071), - [anon_sym_SEMI] = ACTIONS(3073), - [anon_sym___extension__] = ACTIONS(3071), - [anon_sym_typedef] = ACTIONS(3071), - [anon_sym_virtual] = ACTIONS(3071), - [anon_sym_extern] = ACTIONS(3071), - [anon_sym___attribute__] = ACTIONS(3071), - [anon_sym___attribute] = ACTIONS(3071), - [anon_sym_using] = ACTIONS(3071), - [anon_sym_COLON_COLON] = ACTIONS(3073), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3073), - [anon_sym___declspec] = ACTIONS(3071), - [anon_sym___based] = ACTIONS(3071), - [anon_sym_RBRACE] = ACTIONS(3073), - [anon_sym_signed] = ACTIONS(3071), - [anon_sym_unsigned] = ACTIONS(3071), - [anon_sym_long] = ACTIONS(3071), - [anon_sym_short] = ACTIONS(3071), - [anon_sym_LBRACK] = ACTIONS(3071), - [anon_sym_static] = ACTIONS(3071), - [anon_sym_register] = ACTIONS(3071), - [anon_sym_inline] = ACTIONS(3071), - [anon_sym___inline] = ACTIONS(3071), - [anon_sym___inline__] = ACTIONS(3071), - [anon_sym___forceinline] = ACTIONS(3071), - [anon_sym_thread_local] = ACTIONS(3071), - [anon_sym___thread] = ACTIONS(3071), - [anon_sym_const] = ACTIONS(3071), - [anon_sym_constexpr] = ACTIONS(3071), - [anon_sym_volatile] = ACTIONS(3071), - [anon_sym_restrict] = ACTIONS(3071), - [anon_sym___restrict__] = ACTIONS(3071), - [anon_sym__Atomic] = ACTIONS(3071), - [anon_sym__Noreturn] = ACTIONS(3071), - [anon_sym_noreturn] = ACTIONS(3071), - [anon_sym__Nonnull] = ACTIONS(3071), - [anon_sym_mutable] = ACTIONS(3071), - [anon_sym_constinit] = ACTIONS(3071), - [anon_sym_consteval] = ACTIONS(3071), - [anon_sym_alignas] = ACTIONS(3071), - [anon_sym__Alignas] = ACTIONS(3071), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(3071), - [anon_sym_class] = ACTIONS(3071), - [anon_sym_struct] = ACTIONS(3071), - [anon_sym_union] = ACTIONS(3071), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3071), - [anon_sym_decltype] = ACTIONS(3071), - [anon_sym_explicit] = ACTIONS(3071), - [anon_sym_typename] = ACTIONS(3071), - [anon_sym_private] = ACTIONS(3071), - [anon_sym_template] = ACTIONS(3071), - [anon_sym_operator] = ACTIONS(3071), - [anon_sym_friend] = ACTIONS(3071), - [anon_sym_public] = ACTIONS(3071), - [anon_sym_protected] = ACTIONS(3071), - [anon_sym_static_assert] = ACTIONS(3071), + [2080] = { + [sym_identifier] = ACTIONS(2743), + [aux_sym_preproc_def_token1] = ACTIONS(2743), + [aux_sym_preproc_if_token1] = ACTIONS(2743), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2743), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2743), + [sym_preproc_directive] = ACTIONS(2743), + [anon_sym_LPAREN2] = ACTIONS(2745), + [anon_sym_TILDE] = ACTIONS(2745), + [anon_sym_STAR] = ACTIONS(2745), + [anon_sym_AMP_AMP] = ACTIONS(2745), + [anon_sym_AMP] = ACTIONS(2743), + [anon_sym_SEMI] = ACTIONS(2745), + [anon_sym___extension__] = ACTIONS(2743), + [anon_sym_typedef] = ACTIONS(2743), + [anon_sym_virtual] = ACTIONS(2743), + [anon_sym_extern] = ACTIONS(2743), + [anon_sym___attribute__] = ACTIONS(2743), + [anon_sym___attribute] = ACTIONS(2743), + [anon_sym_using] = ACTIONS(2743), + [anon_sym_COLON_COLON] = ACTIONS(2745), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2745), + [anon_sym___declspec] = ACTIONS(2743), + [anon_sym___based] = ACTIONS(2743), + [anon_sym_RBRACE] = ACTIONS(2745), + [anon_sym_signed] = ACTIONS(2743), + [anon_sym_unsigned] = ACTIONS(2743), + [anon_sym_long] = ACTIONS(2743), + [anon_sym_short] = ACTIONS(2743), + [anon_sym_LBRACK] = ACTIONS(2743), + [anon_sym_static] = ACTIONS(2743), + [anon_sym_register] = ACTIONS(2743), + [anon_sym_inline] = ACTIONS(2743), + [anon_sym___inline] = ACTIONS(2743), + [anon_sym___inline__] = ACTIONS(2743), + [anon_sym___forceinline] = ACTIONS(2743), + [anon_sym_thread_local] = ACTIONS(2743), + [anon_sym___thread] = ACTIONS(2743), + [anon_sym_const] = ACTIONS(2743), + [anon_sym_constexpr] = ACTIONS(2743), + [anon_sym_volatile] = ACTIONS(2743), + [anon_sym_restrict] = ACTIONS(2743), + [anon_sym___restrict__] = ACTIONS(2743), + [anon_sym__Atomic] = ACTIONS(2743), + [anon_sym__Noreturn] = ACTIONS(2743), + [anon_sym_noreturn] = ACTIONS(2743), + [anon_sym__Nonnull] = ACTIONS(2743), + [anon_sym_mutable] = ACTIONS(2743), + [anon_sym_constinit] = ACTIONS(2743), + [anon_sym_consteval] = ACTIONS(2743), + [anon_sym_alignas] = ACTIONS(2743), + [anon_sym__Alignas] = ACTIONS(2743), + [sym_primitive_type] = ACTIONS(2743), + [anon_sym_enum] = ACTIONS(2743), + [anon_sym_class] = ACTIONS(2743), + [anon_sym_struct] = ACTIONS(2743), + [anon_sym_union] = ACTIONS(2743), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2743), + [anon_sym_decltype] = ACTIONS(2743), + [anon_sym_explicit] = ACTIONS(2743), + [anon_sym_typename] = ACTIONS(2743), + [anon_sym_private] = ACTIONS(2743), + [anon_sym_template] = ACTIONS(2743), + [anon_sym_operator] = ACTIONS(2743), + [anon_sym_friend] = ACTIONS(2743), + [anon_sym_public] = ACTIONS(2743), + [anon_sym_protected] = ACTIONS(2743), + [anon_sym_static_assert] = ACTIONS(2743), }, - [2016] = { - [sym_identifier] = ACTIONS(2651), - [aux_sym_preproc_def_token1] = ACTIONS(2651), - [aux_sym_preproc_if_token1] = ACTIONS(2651), - [aux_sym_preproc_if_token2] = ACTIONS(2651), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2651), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2651), - [sym_preproc_directive] = ACTIONS(2651), - [anon_sym_LPAREN2] = ACTIONS(2653), - [anon_sym_TILDE] = ACTIONS(2653), - [anon_sym_STAR] = ACTIONS(2653), - [anon_sym_AMP_AMP] = ACTIONS(2653), - [anon_sym_AMP] = ACTIONS(2651), - [anon_sym_SEMI] = ACTIONS(2653), - [anon_sym___extension__] = ACTIONS(2651), - [anon_sym_typedef] = ACTIONS(2651), - [anon_sym_virtual] = ACTIONS(2651), - [anon_sym_extern] = ACTIONS(2651), - [anon_sym___attribute__] = ACTIONS(2651), - [anon_sym___attribute] = ACTIONS(2651), - [anon_sym_using] = ACTIONS(2651), - [anon_sym_COLON_COLON] = ACTIONS(2653), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2653), - [anon_sym___declspec] = ACTIONS(2651), - [anon_sym___based] = ACTIONS(2651), - [anon_sym_signed] = ACTIONS(2651), - [anon_sym_unsigned] = ACTIONS(2651), - [anon_sym_long] = ACTIONS(2651), - [anon_sym_short] = ACTIONS(2651), - [anon_sym_LBRACK] = ACTIONS(2651), - [anon_sym_static] = ACTIONS(2651), - [anon_sym_register] = ACTIONS(2651), - [anon_sym_inline] = ACTIONS(2651), - [anon_sym___inline] = ACTIONS(2651), - [anon_sym___inline__] = ACTIONS(2651), - [anon_sym___forceinline] = ACTIONS(2651), - [anon_sym_thread_local] = ACTIONS(2651), - [anon_sym___thread] = ACTIONS(2651), - [anon_sym_const] = ACTIONS(2651), - [anon_sym_constexpr] = ACTIONS(2651), - [anon_sym_volatile] = ACTIONS(2651), - [anon_sym_restrict] = ACTIONS(2651), - [anon_sym___restrict__] = ACTIONS(2651), - [anon_sym__Atomic] = ACTIONS(2651), - [anon_sym__Noreturn] = ACTIONS(2651), - [anon_sym_noreturn] = ACTIONS(2651), - [anon_sym__Nonnull] = ACTIONS(2651), - [anon_sym_mutable] = ACTIONS(2651), - [anon_sym_constinit] = ACTIONS(2651), - [anon_sym_consteval] = ACTIONS(2651), - [anon_sym_alignas] = ACTIONS(2651), - [anon_sym__Alignas] = ACTIONS(2651), - [sym_primitive_type] = ACTIONS(2651), - [anon_sym_enum] = ACTIONS(2651), - [anon_sym_class] = ACTIONS(2651), - [anon_sym_struct] = ACTIONS(2651), - [anon_sym_union] = ACTIONS(2651), + [2081] = { + [sym_identifier] = ACTIONS(5597), + [aux_sym_preproc_def_token1] = ACTIONS(5597), + [aux_sym_preproc_if_token1] = ACTIONS(5597), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5597), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5597), + [sym_preproc_directive] = ACTIONS(5597), + [anon_sym_LPAREN2] = ACTIONS(5599), + [anon_sym_TILDE] = ACTIONS(5599), + [anon_sym_STAR] = ACTIONS(5599), + [anon_sym_AMP_AMP] = ACTIONS(5599), + [anon_sym_AMP] = ACTIONS(5597), + [anon_sym_SEMI] = ACTIONS(5599), + [anon_sym___extension__] = ACTIONS(5597), + [anon_sym_typedef] = ACTIONS(5597), + [anon_sym_virtual] = ACTIONS(5597), + [anon_sym_extern] = ACTIONS(5597), + [anon_sym___attribute__] = ACTIONS(5597), + [anon_sym___attribute] = ACTIONS(5597), + [anon_sym_using] = ACTIONS(5597), + [anon_sym_COLON_COLON] = ACTIONS(5599), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5599), + [anon_sym___declspec] = ACTIONS(5597), + [anon_sym___based] = ACTIONS(5597), + [anon_sym_RBRACE] = ACTIONS(5599), + [anon_sym_signed] = ACTIONS(5597), + [anon_sym_unsigned] = ACTIONS(5597), + [anon_sym_long] = ACTIONS(5597), + [anon_sym_short] = ACTIONS(5597), + [anon_sym_LBRACK] = ACTIONS(5597), + [anon_sym_static] = ACTIONS(5597), + [anon_sym_register] = ACTIONS(5597), + [anon_sym_inline] = ACTIONS(5597), + [anon_sym___inline] = ACTIONS(5597), + [anon_sym___inline__] = ACTIONS(5597), + [anon_sym___forceinline] = ACTIONS(5597), + [anon_sym_thread_local] = ACTIONS(5597), + [anon_sym___thread] = ACTIONS(5597), + [anon_sym_const] = ACTIONS(5597), + [anon_sym_constexpr] = ACTIONS(5597), + [anon_sym_volatile] = ACTIONS(5597), + [anon_sym_restrict] = ACTIONS(5597), + [anon_sym___restrict__] = ACTIONS(5597), + [anon_sym__Atomic] = ACTIONS(5597), + [anon_sym__Noreturn] = ACTIONS(5597), + [anon_sym_noreturn] = ACTIONS(5597), + [anon_sym__Nonnull] = ACTIONS(5597), + [anon_sym_mutable] = ACTIONS(5597), + [anon_sym_constinit] = ACTIONS(5597), + [anon_sym_consteval] = ACTIONS(5597), + [anon_sym_alignas] = ACTIONS(5597), + [anon_sym__Alignas] = ACTIONS(5597), + [sym_primitive_type] = ACTIONS(5597), + [anon_sym_enum] = ACTIONS(5597), + [anon_sym_class] = ACTIONS(5597), + [anon_sym_struct] = ACTIONS(5597), + [anon_sym_union] = ACTIONS(5597), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2651), - [anon_sym_decltype] = ACTIONS(2651), - [anon_sym_explicit] = ACTIONS(2651), - [anon_sym_typename] = ACTIONS(2651), - [anon_sym_private] = ACTIONS(2651), - [anon_sym_template] = ACTIONS(2651), - [anon_sym_operator] = ACTIONS(2651), - [anon_sym_friend] = ACTIONS(2651), - [anon_sym_public] = ACTIONS(2651), - [anon_sym_protected] = ACTIONS(2651), - [anon_sym_static_assert] = ACTIONS(2651), + [sym_auto] = ACTIONS(5597), + [anon_sym_decltype] = ACTIONS(5597), + [anon_sym_explicit] = ACTIONS(5597), + [anon_sym_typename] = ACTIONS(5597), + [anon_sym_private] = ACTIONS(5597), + [anon_sym_template] = ACTIONS(5597), + [anon_sym_operator] = ACTIONS(5597), + [anon_sym_friend] = ACTIONS(5597), + [anon_sym_public] = ACTIONS(5597), + [anon_sym_protected] = ACTIONS(5597), + [anon_sym_static_assert] = ACTIONS(5597), }, - [2017] = { - [sym_identifier] = ACTIONS(3079), - [aux_sym_preproc_def_token1] = ACTIONS(3079), - [aux_sym_preproc_if_token1] = ACTIONS(3079), - [aux_sym_preproc_if_token2] = ACTIONS(3079), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3079), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3079), - [sym_preproc_directive] = ACTIONS(3079), - [anon_sym_LPAREN2] = ACTIONS(3081), - [anon_sym_TILDE] = ACTIONS(3081), - [anon_sym_STAR] = ACTIONS(3081), - [anon_sym_AMP_AMP] = ACTIONS(3081), - [anon_sym_AMP] = ACTIONS(3079), - [anon_sym_SEMI] = ACTIONS(3081), - [anon_sym___extension__] = ACTIONS(3079), - [anon_sym_typedef] = ACTIONS(3079), - [anon_sym_virtual] = ACTIONS(3079), - [anon_sym_extern] = ACTIONS(3079), - [anon_sym___attribute__] = ACTIONS(3079), - [anon_sym___attribute] = ACTIONS(3079), - [anon_sym_using] = ACTIONS(3079), - [anon_sym_COLON_COLON] = ACTIONS(3081), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3081), - [anon_sym___declspec] = ACTIONS(3079), - [anon_sym___based] = ACTIONS(3079), - [anon_sym_signed] = ACTIONS(3079), - [anon_sym_unsigned] = ACTIONS(3079), - [anon_sym_long] = ACTIONS(3079), - [anon_sym_short] = ACTIONS(3079), - [anon_sym_LBRACK] = ACTIONS(3079), - [anon_sym_static] = ACTIONS(3079), - [anon_sym_register] = ACTIONS(3079), - [anon_sym_inline] = ACTIONS(3079), - [anon_sym___inline] = ACTIONS(3079), - [anon_sym___inline__] = ACTIONS(3079), - [anon_sym___forceinline] = ACTIONS(3079), - [anon_sym_thread_local] = ACTIONS(3079), - [anon_sym___thread] = ACTIONS(3079), - [anon_sym_const] = ACTIONS(3079), - [anon_sym_constexpr] = ACTIONS(3079), - [anon_sym_volatile] = ACTIONS(3079), - [anon_sym_restrict] = ACTIONS(3079), - [anon_sym___restrict__] = ACTIONS(3079), - [anon_sym__Atomic] = ACTIONS(3079), - [anon_sym__Noreturn] = ACTIONS(3079), - [anon_sym_noreturn] = ACTIONS(3079), - [anon_sym__Nonnull] = ACTIONS(3079), - [anon_sym_mutable] = ACTIONS(3079), - [anon_sym_constinit] = ACTIONS(3079), - [anon_sym_consteval] = ACTIONS(3079), - [anon_sym_alignas] = ACTIONS(3079), - [anon_sym__Alignas] = ACTIONS(3079), - [sym_primitive_type] = ACTIONS(3079), - [anon_sym_enum] = ACTIONS(3079), - [anon_sym_class] = ACTIONS(3079), - [anon_sym_struct] = ACTIONS(3079), - [anon_sym_union] = ACTIONS(3079), + [2082] = { + [sym_identifier] = ACTIONS(5529), + [aux_sym_preproc_def_token1] = ACTIONS(5529), + [aux_sym_preproc_if_token1] = ACTIONS(5529), + [aux_sym_preproc_if_token2] = ACTIONS(5529), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5529), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5529), + [sym_preproc_directive] = ACTIONS(5529), + [anon_sym_LPAREN2] = ACTIONS(5531), + [anon_sym_TILDE] = ACTIONS(5531), + [anon_sym_STAR] = ACTIONS(5531), + [anon_sym_AMP_AMP] = ACTIONS(5531), + [anon_sym_AMP] = ACTIONS(5529), + [anon_sym_SEMI] = ACTIONS(5531), + [anon_sym___extension__] = ACTIONS(5529), + [anon_sym_typedef] = ACTIONS(5529), + [anon_sym_virtual] = ACTIONS(5529), + [anon_sym_extern] = ACTIONS(5529), + [anon_sym___attribute__] = ACTIONS(5529), + [anon_sym___attribute] = ACTIONS(5529), + [anon_sym_using] = ACTIONS(5529), + [anon_sym_COLON_COLON] = ACTIONS(5531), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5531), + [anon_sym___declspec] = ACTIONS(5529), + [anon_sym___based] = ACTIONS(5529), + [anon_sym_signed] = ACTIONS(5529), + [anon_sym_unsigned] = ACTIONS(5529), + [anon_sym_long] = ACTIONS(5529), + [anon_sym_short] = ACTIONS(5529), + [anon_sym_LBRACK] = ACTIONS(5529), + [anon_sym_static] = ACTIONS(5529), + [anon_sym_register] = ACTIONS(5529), + [anon_sym_inline] = ACTIONS(5529), + [anon_sym___inline] = ACTIONS(5529), + [anon_sym___inline__] = ACTIONS(5529), + [anon_sym___forceinline] = ACTIONS(5529), + [anon_sym_thread_local] = ACTIONS(5529), + [anon_sym___thread] = ACTIONS(5529), + [anon_sym_const] = ACTIONS(5529), + [anon_sym_constexpr] = ACTIONS(5529), + [anon_sym_volatile] = ACTIONS(5529), + [anon_sym_restrict] = ACTIONS(5529), + [anon_sym___restrict__] = ACTIONS(5529), + [anon_sym__Atomic] = ACTIONS(5529), + [anon_sym__Noreturn] = ACTIONS(5529), + [anon_sym_noreturn] = ACTIONS(5529), + [anon_sym__Nonnull] = ACTIONS(5529), + [anon_sym_mutable] = ACTIONS(5529), + [anon_sym_constinit] = ACTIONS(5529), + [anon_sym_consteval] = ACTIONS(5529), + [anon_sym_alignas] = ACTIONS(5529), + [anon_sym__Alignas] = ACTIONS(5529), + [sym_primitive_type] = ACTIONS(5529), + [anon_sym_enum] = ACTIONS(5529), + [anon_sym_class] = ACTIONS(5529), + [anon_sym_struct] = ACTIONS(5529), + [anon_sym_union] = ACTIONS(5529), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3079), - [anon_sym_decltype] = ACTIONS(3079), - [anon_sym_explicit] = ACTIONS(3079), - [anon_sym_typename] = ACTIONS(3079), - [anon_sym_private] = ACTIONS(3079), - [anon_sym_template] = ACTIONS(3079), - [anon_sym_operator] = ACTIONS(3079), - [anon_sym_friend] = ACTIONS(3079), - [anon_sym_public] = ACTIONS(3079), - [anon_sym_protected] = ACTIONS(3079), - [anon_sym_static_assert] = ACTIONS(3079), + [sym_auto] = ACTIONS(5529), + [anon_sym_decltype] = ACTIONS(5529), + [anon_sym_explicit] = ACTIONS(5529), + [anon_sym_typename] = ACTIONS(5529), + [anon_sym_private] = ACTIONS(5529), + [anon_sym_template] = ACTIONS(5529), + [anon_sym_operator] = ACTIONS(5529), + [anon_sym_friend] = ACTIONS(5529), + [anon_sym_public] = ACTIONS(5529), + [anon_sym_protected] = ACTIONS(5529), + [anon_sym_static_assert] = ACTIONS(5529), }, - [2018] = { - [sym_identifier] = ACTIONS(2651), - [aux_sym_preproc_def_token1] = ACTIONS(2651), - [aux_sym_preproc_if_token1] = ACTIONS(2651), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2651), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2651), - [sym_preproc_directive] = ACTIONS(2651), - [anon_sym_LPAREN2] = ACTIONS(2653), - [anon_sym_TILDE] = ACTIONS(2653), - [anon_sym_STAR] = ACTIONS(2653), - [anon_sym_AMP_AMP] = ACTIONS(2653), - [anon_sym_AMP] = ACTIONS(2651), - [anon_sym_SEMI] = ACTIONS(2653), - [anon_sym___extension__] = ACTIONS(2651), - [anon_sym_typedef] = ACTIONS(2651), - [anon_sym_virtual] = ACTIONS(2651), - [anon_sym_extern] = ACTIONS(2651), - [anon_sym___attribute__] = ACTIONS(2651), - [anon_sym___attribute] = ACTIONS(2651), - [anon_sym_using] = ACTIONS(2651), - [anon_sym_COLON_COLON] = ACTIONS(2653), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2653), - [anon_sym___declspec] = ACTIONS(2651), - [anon_sym___based] = ACTIONS(2651), - [anon_sym_RBRACE] = ACTIONS(2653), - [anon_sym_signed] = ACTIONS(2651), - [anon_sym_unsigned] = ACTIONS(2651), - [anon_sym_long] = ACTIONS(2651), - [anon_sym_short] = ACTIONS(2651), - [anon_sym_LBRACK] = ACTIONS(2651), - [anon_sym_static] = ACTIONS(2651), - [anon_sym_register] = ACTIONS(2651), - [anon_sym_inline] = ACTIONS(2651), - [anon_sym___inline] = ACTIONS(2651), - [anon_sym___inline__] = ACTIONS(2651), - [anon_sym___forceinline] = ACTIONS(2651), - [anon_sym_thread_local] = ACTIONS(2651), - [anon_sym___thread] = ACTIONS(2651), - [anon_sym_const] = ACTIONS(2651), - [anon_sym_constexpr] = ACTIONS(2651), - [anon_sym_volatile] = ACTIONS(2651), - [anon_sym_restrict] = ACTIONS(2651), - [anon_sym___restrict__] = ACTIONS(2651), - [anon_sym__Atomic] = ACTIONS(2651), - [anon_sym__Noreturn] = ACTIONS(2651), - [anon_sym_noreturn] = ACTIONS(2651), - [anon_sym__Nonnull] = ACTIONS(2651), - [anon_sym_mutable] = ACTIONS(2651), - [anon_sym_constinit] = ACTIONS(2651), - [anon_sym_consteval] = ACTIONS(2651), - [anon_sym_alignas] = ACTIONS(2651), - [anon_sym__Alignas] = ACTIONS(2651), - [sym_primitive_type] = ACTIONS(2651), - [anon_sym_enum] = ACTIONS(2651), - [anon_sym_class] = ACTIONS(2651), - [anon_sym_struct] = ACTIONS(2651), - [anon_sym_union] = ACTIONS(2651), + [2083] = { + [sym_identifier] = ACTIONS(2743), + [aux_sym_preproc_def_token1] = ACTIONS(2743), + [aux_sym_preproc_if_token1] = ACTIONS(2743), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2743), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2743), + [sym_preproc_directive] = ACTIONS(2743), + [anon_sym_LPAREN2] = ACTIONS(2745), + [anon_sym_TILDE] = ACTIONS(2745), + [anon_sym_STAR] = ACTIONS(2745), + [anon_sym_AMP_AMP] = ACTIONS(2745), + [anon_sym_AMP] = ACTIONS(2743), + [anon_sym_SEMI] = ACTIONS(2745), + [anon_sym___extension__] = ACTIONS(2743), + [anon_sym_typedef] = ACTIONS(2743), + [anon_sym_virtual] = ACTIONS(2743), + [anon_sym_extern] = ACTIONS(2743), + [anon_sym___attribute__] = ACTIONS(2743), + [anon_sym___attribute] = ACTIONS(2743), + [anon_sym_using] = ACTIONS(2743), + [anon_sym_COLON_COLON] = ACTIONS(2745), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2745), + [anon_sym___declspec] = ACTIONS(2743), + [anon_sym___based] = ACTIONS(2743), + [anon_sym_RBRACE] = ACTIONS(2745), + [anon_sym_signed] = ACTIONS(2743), + [anon_sym_unsigned] = ACTIONS(2743), + [anon_sym_long] = ACTIONS(2743), + [anon_sym_short] = ACTIONS(2743), + [anon_sym_LBRACK] = ACTIONS(2743), + [anon_sym_static] = ACTIONS(2743), + [anon_sym_register] = ACTIONS(2743), + [anon_sym_inline] = ACTIONS(2743), + [anon_sym___inline] = ACTIONS(2743), + [anon_sym___inline__] = ACTIONS(2743), + [anon_sym___forceinline] = ACTIONS(2743), + [anon_sym_thread_local] = ACTIONS(2743), + [anon_sym___thread] = ACTIONS(2743), + [anon_sym_const] = ACTIONS(2743), + [anon_sym_constexpr] = ACTIONS(2743), + [anon_sym_volatile] = ACTIONS(2743), + [anon_sym_restrict] = ACTIONS(2743), + [anon_sym___restrict__] = ACTIONS(2743), + [anon_sym__Atomic] = ACTIONS(2743), + [anon_sym__Noreturn] = ACTIONS(2743), + [anon_sym_noreturn] = ACTIONS(2743), + [anon_sym__Nonnull] = ACTIONS(2743), + [anon_sym_mutable] = ACTIONS(2743), + [anon_sym_constinit] = ACTIONS(2743), + [anon_sym_consteval] = ACTIONS(2743), + [anon_sym_alignas] = ACTIONS(2743), + [anon_sym__Alignas] = ACTIONS(2743), + [sym_primitive_type] = ACTIONS(2743), + [anon_sym_enum] = ACTIONS(2743), + [anon_sym_class] = ACTIONS(2743), + [anon_sym_struct] = ACTIONS(2743), + [anon_sym_union] = ACTIONS(2743), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2651), - [anon_sym_decltype] = ACTIONS(2651), - [anon_sym_explicit] = ACTIONS(2651), - [anon_sym_typename] = ACTIONS(2651), - [anon_sym_private] = ACTIONS(2651), - [anon_sym_template] = ACTIONS(2651), - [anon_sym_operator] = ACTIONS(2651), - [anon_sym_friend] = ACTIONS(2651), - [anon_sym_public] = ACTIONS(2651), - [anon_sym_protected] = ACTIONS(2651), - [anon_sym_static_assert] = ACTIONS(2651), + [sym_auto] = ACTIONS(2743), + [anon_sym_decltype] = ACTIONS(2743), + [anon_sym_explicit] = ACTIONS(2743), + [anon_sym_typename] = ACTIONS(2743), + [anon_sym_private] = ACTIONS(2743), + [anon_sym_template] = ACTIONS(2743), + [anon_sym_operator] = ACTIONS(2743), + [anon_sym_friend] = ACTIONS(2743), + [anon_sym_public] = ACTIONS(2743), + [anon_sym_protected] = ACTIONS(2743), + [anon_sym_static_assert] = ACTIONS(2743), }, - [2019] = { - [sym_identifier] = ACTIONS(2911), - [aux_sym_preproc_def_token1] = ACTIONS(2911), - [aux_sym_preproc_if_token1] = ACTIONS(2911), - [aux_sym_preproc_if_token2] = ACTIONS(2911), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2911), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2911), - [sym_preproc_directive] = ACTIONS(2911), - [anon_sym_LPAREN2] = ACTIONS(2913), - [anon_sym_TILDE] = ACTIONS(2913), - [anon_sym_STAR] = ACTIONS(2913), - [anon_sym_AMP_AMP] = ACTIONS(2913), - [anon_sym_AMP] = ACTIONS(2911), - [anon_sym_SEMI] = ACTIONS(2913), - [anon_sym___extension__] = ACTIONS(2911), - [anon_sym_typedef] = ACTIONS(2911), - [anon_sym_virtual] = ACTIONS(2911), - [anon_sym_extern] = ACTIONS(2911), - [anon_sym___attribute__] = ACTIONS(2911), - [anon_sym___attribute] = ACTIONS(2911), - [anon_sym_using] = ACTIONS(2911), - [anon_sym_COLON_COLON] = ACTIONS(2913), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2913), - [anon_sym___declspec] = ACTIONS(2911), - [anon_sym___based] = ACTIONS(2911), - [anon_sym_signed] = ACTIONS(2911), - [anon_sym_unsigned] = ACTIONS(2911), - [anon_sym_long] = ACTIONS(2911), - [anon_sym_short] = ACTIONS(2911), - [anon_sym_LBRACK] = ACTIONS(2911), - [anon_sym_static] = ACTIONS(2911), - [anon_sym_register] = ACTIONS(2911), - [anon_sym_inline] = ACTIONS(2911), - [anon_sym___inline] = ACTIONS(2911), - [anon_sym___inline__] = ACTIONS(2911), - [anon_sym___forceinline] = ACTIONS(2911), - [anon_sym_thread_local] = ACTIONS(2911), - [anon_sym___thread] = ACTIONS(2911), - [anon_sym_const] = ACTIONS(2911), - [anon_sym_constexpr] = ACTIONS(2911), - [anon_sym_volatile] = ACTIONS(2911), - [anon_sym_restrict] = ACTIONS(2911), - [anon_sym___restrict__] = ACTIONS(2911), - [anon_sym__Atomic] = ACTIONS(2911), - [anon_sym__Noreturn] = ACTIONS(2911), - [anon_sym_noreturn] = ACTIONS(2911), - [anon_sym__Nonnull] = ACTIONS(2911), - [anon_sym_mutable] = ACTIONS(2911), - [anon_sym_constinit] = ACTIONS(2911), - [anon_sym_consteval] = ACTIONS(2911), - [anon_sym_alignas] = ACTIONS(2911), - [anon_sym__Alignas] = ACTIONS(2911), - [sym_primitive_type] = ACTIONS(2911), - [anon_sym_enum] = ACTIONS(2911), - [anon_sym_class] = ACTIONS(2911), - [anon_sym_struct] = ACTIONS(2911), - [anon_sym_union] = ACTIONS(2911), + [2084] = { + [sym_identifier] = ACTIONS(5569), + [aux_sym_preproc_def_token1] = ACTIONS(5569), + [aux_sym_preproc_if_token1] = ACTIONS(5569), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5569), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5569), + [sym_preproc_directive] = ACTIONS(5569), + [anon_sym_LPAREN2] = ACTIONS(5571), + [anon_sym_TILDE] = ACTIONS(5571), + [anon_sym_STAR] = ACTIONS(5571), + [anon_sym_AMP_AMP] = ACTIONS(5571), + [anon_sym_AMP] = ACTIONS(5569), + [anon_sym_SEMI] = ACTIONS(5571), + [anon_sym___extension__] = ACTIONS(5569), + [anon_sym_typedef] = ACTIONS(5569), + [anon_sym_virtual] = ACTIONS(5569), + [anon_sym_extern] = ACTIONS(5569), + [anon_sym___attribute__] = ACTIONS(5569), + [anon_sym___attribute] = ACTIONS(5569), + [anon_sym_using] = ACTIONS(5569), + [anon_sym_COLON_COLON] = ACTIONS(5571), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5571), + [anon_sym___declspec] = ACTIONS(5569), + [anon_sym___based] = ACTIONS(5569), + [anon_sym_RBRACE] = ACTIONS(5571), + [anon_sym_signed] = ACTIONS(5569), + [anon_sym_unsigned] = ACTIONS(5569), + [anon_sym_long] = ACTIONS(5569), + [anon_sym_short] = ACTIONS(5569), + [anon_sym_LBRACK] = ACTIONS(5569), + [anon_sym_static] = ACTIONS(5569), + [anon_sym_register] = ACTIONS(5569), + [anon_sym_inline] = ACTIONS(5569), + [anon_sym___inline] = ACTIONS(5569), + [anon_sym___inline__] = ACTIONS(5569), + [anon_sym___forceinline] = ACTIONS(5569), + [anon_sym_thread_local] = ACTIONS(5569), + [anon_sym___thread] = ACTIONS(5569), + [anon_sym_const] = ACTIONS(5569), + [anon_sym_constexpr] = ACTIONS(5569), + [anon_sym_volatile] = ACTIONS(5569), + [anon_sym_restrict] = ACTIONS(5569), + [anon_sym___restrict__] = ACTIONS(5569), + [anon_sym__Atomic] = ACTIONS(5569), + [anon_sym__Noreturn] = ACTIONS(5569), + [anon_sym_noreturn] = ACTIONS(5569), + [anon_sym__Nonnull] = ACTIONS(5569), + [anon_sym_mutable] = ACTIONS(5569), + [anon_sym_constinit] = ACTIONS(5569), + [anon_sym_consteval] = ACTIONS(5569), + [anon_sym_alignas] = ACTIONS(5569), + [anon_sym__Alignas] = ACTIONS(5569), + [sym_primitive_type] = ACTIONS(5569), + [anon_sym_enum] = ACTIONS(5569), + [anon_sym_class] = ACTIONS(5569), + [anon_sym_struct] = ACTIONS(5569), + [anon_sym_union] = ACTIONS(5569), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2911), - [anon_sym_decltype] = ACTIONS(2911), - [anon_sym_explicit] = ACTIONS(2911), - [anon_sym_typename] = ACTIONS(2911), - [anon_sym_private] = ACTIONS(2911), - [anon_sym_template] = ACTIONS(2911), - [anon_sym_operator] = ACTIONS(2911), - [anon_sym_friend] = ACTIONS(2911), - [anon_sym_public] = ACTIONS(2911), - [anon_sym_protected] = ACTIONS(2911), - [anon_sym_static_assert] = ACTIONS(2911), + [sym_auto] = ACTIONS(5569), + [anon_sym_decltype] = ACTIONS(5569), + [anon_sym_explicit] = ACTIONS(5569), + [anon_sym_typename] = ACTIONS(5569), + [anon_sym_private] = ACTIONS(5569), + [anon_sym_template] = ACTIONS(5569), + [anon_sym_operator] = ACTIONS(5569), + [anon_sym_friend] = ACTIONS(5569), + [anon_sym_public] = ACTIONS(5569), + [anon_sym_protected] = ACTIONS(5569), + [anon_sym_static_assert] = ACTIONS(5569), }, - [2020] = { - [sym_identifier] = ACTIONS(3112), - [aux_sym_preproc_def_token1] = ACTIONS(3112), - [aux_sym_preproc_if_token1] = ACTIONS(3112), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3112), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3112), - [sym_preproc_directive] = ACTIONS(3112), - [anon_sym_LPAREN2] = ACTIONS(3114), - [anon_sym_TILDE] = ACTIONS(3114), - [anon_sym_STAR] = ACTIONS(3114), - [anon_sym_AMP_AMP] = ACTIONS(3114), - [anon_sym_AMP] = ACTIONS(3112), - [anon_sym_SEMI] = ACTIONS(3114), - [anon_sym___extension__] = ACTIONS(3112), - [anon_sym_typedef] = ACTIONS(3112), - [anon_sym_virtual] = ACTIONS(3112), - [anon_sym_extern] = ACTIONS(3112), - [anon_sym___attribute__] = ACTIONS(3112), - [anon_sym___attribute] = ACTIONS(3112), - [anon_sym_using] = ACTIONS(3112), - [anon_sym_COLON_COLON] = ACTIONS(3114), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3114), - [anon_sym___declspec] = ACTIONS(3112), - [anon_sym___based] = ACTIONS(3112), - [anon_sym_RBRACE] = ACTIONS(3114), - [anon_sym_signed] = ACTIONS(3112), - [anon_sym_unsigned] = ACTIONS(3112), - [anon_sym_long] = ACTIONS(3112), - [anon_sym_short] = ACTIONS(3112), - [anon_sym_LBRACK] = ACTIONS(3112), - [anon_sym_static] = ACTIONS(3112), - [anon_sym_register] = ACTIONS(3112), - [anon_sym_inline] = ACTIONS(3112), - [anon_sym___inline] = ACTIONS(3112), - [anon_sym___inline__] = ACTIONS(3112), - [anon_sym___forceinline] = ACTIONS(3112), - [anon_sym_thread_local] = ACTIONS(3112), - [anon_sym___thread] = ACTIONS(3112), - [anon_sym_const] = ACTIONS(3112), - [anon_sym_constexpr] = ACTIONS(3112), - [anon_sym_volatile] = ACTIONS(3112), - [anon_sym_restrict] = ACTIONS(3112), - [anon_sym___restrict__] = ACTIONS(3112), - [anon_sym__Atomic] = ACTIONS(3112), - [anon_sym__Noreturn] = ACTIONS(3112), - [anon_sym_noreturn] = ACTIONS(3112), - [anon_sym__Nonnull] = ACTIONS(3112), - [anon_sym_mutable] = ACTIONS(3112), - [anon_sym_constinit] = ACTIONS(3112), - [anon_sym_consteval] = ACTIONS(3112), - [anon_sym_alignas] = ACTIONS(3112), - [anon_sym__Alignas] = ACTIONS(3112), - [sym_primitive_type] = ACTIONS(3112), - [anon_sym_enum] = ACTIONS(3112), - [anon_sym_class] = ACTIONS(3112), - [anon_sym_struct] = ACTIONS(3112), - [anon_sym_union] = ACTIONS(3112), + [2085] = { + [sym_identifier] = ACTIONS(3120), + [aux_sym_preproc_def_token1] = ACTIONS(3120), + [aux_sym_preproc_if_token1] = ACTIONS(3120), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3120), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3120), + [sym_preproc_directive] = ACTIONS(3120), + [anon_sym_LPAREN2] = ACTIONS(3122), + [anon_sym_TILDE] = ACTIONS(3122), + [anon_sym_STAR] = ACTIONS(3122), + [anon_sym_AMP_AMP] = ACTIONS(3122), + [anon_sym_AMP] = ACTIONS(3120), + [anon_sym_SEMI] = ACTIONS(3122), + [anon_sym___extension__] = ACTIONS(3120), + [anon_sym_typedef] = ACTIONS(3120), + [anon_sym_virtual] = ACTIONS(3120), + [anon_sym_extern] = ACTIONS(3120), + [anon_sym___attribute__] = ACTIONS(3120), + [anon_sym___attribute] = ACTIONS(3120), + [anon_sym_using] = ACTIONS(3120), + [anon_sym_COLON_COLON] = ACTIONS(3122), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3122), + [anon_sym___declspec] = ACTIONS(3120), + [anon_sym___based] = ACTIONS(3120), + [anon_sym_RBRACE] = ACTIONS(3122), + [anon_sym_signed] = ACTIONS(3120), + [anon_sym_unsigned] = ACTIONS(3120), + [anon_sym_long] = ACTIONS(3120), + [anon_sym_short] = ACTIONS(3120), + [anon_sym_LBRACK] = ACTIONS(3120), + [anon_sym_static] = ACTIONS(3120), + [anon_sym_register] = ACTIONS(3120), + [anon_sym_inline] = ACTIONS(3120), + [anon_sym___inline] = ACTIONS(3120), + [anon_sym___inline__] = ACTIONS(3120), + [anon_sym___forceinline] = ACTIONS(3120), + [anon_sym_thread_local] = ACTIONS(3120), + [anon_sym___thread] = ACTIONS(3120), + [anon_sym_const] = ACTIONS(3120), + [anon_sym_constexpr] = ACTIONS(3120), + [anon_sym_volatile] = ACTIONS(3120), + [anon_sym_restrict] = ACTIONS(3120), + [anon_sym___restrict__] = ACTIONS(3120), + [anon_sym__Atomic] = ACTIONS(3120), + [anon_sym__Noreturn] = ACTIONS(3120), + [anon_sym_noreturn] = ACTIONS(3120), + [anon_sym__Nonnull] = ACTIONS(3120), + [anon_sym_mutable] = ACTIONS(3120), + [anon_sym_constinit] = ACTIONS(3120), + [anon_sym_consteval] = ACTIONS(3120), + [anon_sym_alignas] = ACTIONS(3120), + [anon_sym__Alignas] = ACTIONS(3120), + [sym_primitive_type] = ACTIONS(3120), + [anon_sym_enum] = ACTIONS(3120), + [anon_sym_class] = ACTIONS(3120), + [anon_sym_struct] = ACTIONS(3120), + [anon_sym_union] = ACTIONS(3120), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3120), + [anon_sym_decltype] = ACTIONS(3120), + [anon_sym_explicit] = ACTIONS(3120), + [anon_sym_typename] = ACTIONS(3120), + [anon_sym_private] = ACTIONS(3120), + [anon_sym_template] = ACTIONS(3120), + [anon_sym_operator] = ACTIONS(3120), + [anon_sym_friend] = ACTIONS(3120), + [anon_sym_public] = ACTIONS(3120), + [anon_sym_protected] = ACTIONS(3120), + [anon_sym_static_assert] = ACTIONS(3120), + }, + [2086] = { + [sym_identifier] = ACTIONS(3091), + [aux_sym_preproc_def_token1] = ACTIONS(3091), + [aux_sym_preproc_if_token1] = ACTIONS(3091), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3091), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3091), + [sym_preproc_directive] = ACTIONS(3091), + [anon_sym_LPAREN2] = ACTIONS(3093), + [anon_sym_TILDE] = ACTIONS(3093), + [anon_sym_STAR] = ACTIONS(3093), + [anon_sym_AMP_AMP] = ACTIONS(3093), + [anon_sym_AMP] = ACTIONS(3091), + [anon_sym_SEMI] = ACTIONS(3093), + [anon_sym___extension__] = ACTIONS(3091), + [anon_sym_typedef] = ACTIONS(3091), + [anon_sym_virtual] = ACTIONS(3091), + [anon_sym_extern] = ACTIONS(3091), + [anon_sym___attribute__] = ACTIONS(3091), + [anon_sym___attribute] = ACTIONS(3091), + [anon_sym_using] = ACTIONS(3091), + [anon_sym_COLON_COLON] = ACTIONS(3093), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3093), + [anon_sym___declspec] = ACTIONS(3091), + [anon_sym___based] = ACTIONS(3091), + [anon_sym_RBRACE] = ACTIONS(3093), + [anon_sym_signed] = ACTIONS(3091), + [anon_sym_unsigned] = ACTIONS(3091), + [anon_sym_long] = ACTIONS(3091), + [anon_sym_short] = ACTIONS(3091), + [anon_sym_LBRACK] = ACTIONS(3091), + [anon_sym_static] = ACTIONS(3091), + [anon_sym_register] = ACTIONS(3091), + [anon_sym_inline] = ACTIONS(3091), + [anon_sym___inline] = ACTIONS(3091), + [anon_sym___inline__] = ACTIONS(3091), + [anon_sym___forceinline] = ACTIONS(3091), + [anon_sym_thread_local] = ACTIONS(3091), + [anon_sym___thread] = ACTIONS(3091), + [anon_sym_const] = ACTIONS(3091), + [anon_sym_constexpr] = ACTIONS(3091), + [anon_sym_volatile] = ACTIONS(3091), + [anon_sym_restrict] = ACTIONS(3091), + [anon_sym___restrict__] = ACTIONS(3091), + [anon_sym__Atomic] = ACTIONS(3091), + [anon_sym__Noreturn] = ACTIONS(3091), + [anon_sym_noreturn] = ACTIONS(3091), + [anon_sym__Nonnull] = ACTIONS(3091), + [anon_sym_mutable] = ACTIONS(3091), + [anon_sym_constinit] = ACTIONS(3091), + [anon_sym_consteval] = ACTIONS(3091), + [anon_sym_alignas] = ACTIONS(3091), + [anon_sym__Alignas] = ACTIONS(3091), + [sym_primitive_type] = ACTIONS(3091), + [anon_sym_enum] = ACTIONS(3091), + [anon_sym_class] = ACTIONS(3091), + [anon_sym_struct] = ACTIONS(3091), + [anon_sym_union] = ACTIONS(3091), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3091), + [anon_sym_decltype] = ACTIONS(3091), + [anon_sym_explicit] = ACTIONS(3091), + [anon_sym_typename] = ACTIONS(3091), + [anon_sym_private] = ACTIONS(3091), + [anon_sym_template] = ACTIONS(3091), + [anon_sym_operator] = ACTIONS(3091), + [anon_sym_friend] = ACTIONS(3091), + [anon_sym_public] = ACTIONS(3091), + [anon_sym_protected] = ACTIONS(3091), + [anon_sym_static_assert] = ACTIONS(3091), + }, + [2087] = { + [sym_string_literal] = STATE(2087), + [sym_raw_string_literal] = STATE(2087), + [aux_sym_concatenated_string_repeat1] = STATE(2087), + [sym_identifier] = ACTIONS(6045), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5411), + [anon_sym_COMMA] = ACTIONS(5411), + [anon_sym_LPAREN2] = ACTIONS(5411), + [anon_sym_DASH] = ACTIONS(5413), + [anon_sym_PLUS] = ACTIONS(5413), + [anon_sym_STAR] = ACTIONS(5413), + [anon_sym_SLASH] = ACTIONS(5413), + [anon_sym_PERCENT] = ACTIONS(5413), + [anon_sym_PIPE_PIPE] = ACTIONS(5411), + [anon_sym_AMP_AMP] = ACTIONS(5411), + [anon_sym_PIPE] = ACTIONS(5413), + [anon_sym_CARET] = ACTIONS(5413), + [anon_sym_AMP] = ACTIONS(5413), + [anon_sym_EQ_EQ] = ACTIONS(5411), + [anon_sym_BANG_EQ] = ACTIONS(5411), + [anon_sym_GT] = ACTIONS(5413), + [anon_sym_GT_EQ] = ACTIONS(5411), + [anon_sym_LT_EQ] = ACTIONS(5413), + [anon_sym_LT] = ACTIONS(5413), + [anon_sym_LT_LT] = ACTIONS(5413), + [anon_sym_GT_GT] = ACTIONS(5413), + [anon_sym_SEMI] = ACTIONS(5411), + [anon_sym___attribute__] = ACTIONS(5413), + [anon_sym___attribute] = ACTIONS(5413), + [anon_sym_LBRACK] = ACTIONS(5411), + [anon_sym_EQ] = ACTIONS(5413), + [anon_sym_QMARK] = ACTIONS(5411), + [anon_sym_STAR_EQ] = ACTIONS(5411), + [anon_sym_SLASH_EQ] = ACTIONS(5411), + [anon_sym_PERCENT_EQ] = ACTIONS(5411), + [anon_sym_PLUS_EQ] = ACTIONS(5411), + [anon_sym_DASH_EQ] = ACTIONS(5411), + [anon_sym_LT_LT_EQ] = ACTIONS(5411), + [anon_sym_GT_GT_EQ] = ACTIONS(5411), + [anon_sym_AMP_EQ] = ACTIONS(5411), + [anon_sym_CARET_EQ] = ACTIONS(5411), + [anon_sym_PIPE_EQ] = ACTIONS(5411), + [anon_sym_and_eq] = ACTIONS(5413), + [anon_sym_or_eq] = ACTIONS(5413), + [anon_sym_xor_eq] = ACTIONS(5413), + [anon_sym_LT_EQ_GT] = ACTIONS(5411), + [anon_sym_or] = ACTIONS(5413), + [anon_sym_and] = ACTIONS(5413), + [anon_sym_bitor] = ACTIONS(5413), + [anon_sym_xor] = ACTIONS(5413), + [anon_sym_bitand] = ACTIONS(5413), + [anon_sym_not_eq] = ACTIONS(5413), + [anon_sym_DASH_DASH] = ACTIONS(5411), + [anon_sym_PLUS_PLUS] = ACTIONS(5411), + [anon_sym_DOT] = ACTIONS(5413), + [anon_sym_DOT_STAR] = ACTIONS(5411), + [anon_sym_DASH_GT] = ACTIONS(5411), + [anon_sym_L_DQUOTE] = ACTIONS(6048), + [anon_sym_u_DQUOTE] = ACTIONS(6048), + [anon_sym_U_DQUOTE] = ACTIONS(6048), + [anon_sym_u8_DQUOTE] = ACTIONS(6048), + [anon_sym_DQUOTE] = ACTIONS(6048), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(6051), + [anon_sym_LR_DQUOTE] = ACTIONS(6051), + [anon_sym_uR_DQUOTE] = ACTIONS(6051), + [anon_sym_UR_DQUOTE] = ACTIONS(6051), + [anon_sym_u8R_DQUOTE] = ACTIONS(6051), + [sym_literal_suffix] = ACTIONS(5413), + }, + [2088] = { + [sym_identifier] = ACTIONS(5458), + [aux_sym_preproc_def_token1] = ACTIONS(5458), + [aux_sym_preproc_if_token1] = ACTIONS(5458), + [aux_sym_preproc_if_token2] = ACTIONS(5458), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5458), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5458), + [sym_preproc_directive] = ACTIONS(5458), + [anon_sym_LPAREN2] = ACTIONS(5460), + [anon_sym_TILDE] = ACTIONS(5460), + [anon_sym_STAR] = ACTIONS(5460), + [anon_sym_AMP_AMP] = ACTIONS(5460), + [anon_sym_AMP] = ACTIONS(5458), + [anon_sym_SEMI] = ACTIONS(5460), + [anon_sym___extension__] = ACTIONS(5458), + [anon_sym_typedef] = ACTIONS(5458), + [anon_sym_virtual] = ACTIONS(5458), + [anon_sym_extern] = ACTIONS(5458), + [anon_sym___attribute__] = ACTIONS(5458), + [anon_sym___attribute] = ACTIONS(5458), + [anon_sym_using] = ACTIONS(5458), + [anon_sym_COLON_COLON] = ACTIONS(5460), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5460), + [anon_sym___declspec] = ACTIONS(5458), + [anon_sym___based] = ACTIONS(5458), + [anon_sym_signed] = ACTIONS(5458), + [anon_sym_unsigned] = ACTIONS(5458), + [anon_sym_long] = ACTIONS(5458), + [anon_sym_short] = ACTIONS(5458), + [anon_sym_LBRACK] = ACTIONS(5458), + [anon_sym_static] = ACTIONS(5458), + [anon_sym_register] = ACTIONS(5458), + [anon_sym_inline] = ACTIONS(5458), + [anon_sym___inline] = ACTIONS(5458), + [anon_sym___inline__] = ACTIONS(5458), + [anon_sym___forceinline] = ACTIONS(5458), + [anon_sym_thread_local] = ACTIONS(5458), + [anon_sym___thread] = ACTIONS(5458), + [anon_sym_const] = ACTIONS(5458), + [anon_sym_constexpr] = ACTIONS(5458), + [anon_sym_volatile] = ACTIONS(5458), + [anon_sym_restrict] = ACTIONS(5458), + [anon_sym___restrict__] = ACTIONS(5458), + [anon_sym__Atomic] = ACTIONS(5458), + [anon_sym__Noreturn] = ACTIONS(5458), + [anon_sym_noreturn] = ACTIONS(5458), + [anon_sym__Nonnull] = ACTIONS(5458), + [anon_sym_mutable] = ACTIONS(5458), + [anon_sym_constinit] = ACTIONS(5458), + [anon_sym_consteval] = ACTIONS(5458), + [anon_sym_alignas] = ACTIONS(5458), + [anon_sym__Alignas] = ACTIONS(5458), + [sym_primitive_type] = ACTIONS(5458), + [anon_sym_enum] = ACTIONS(5458), + [anon_sym_class] = ACTIONS(5458), + [anon_sym_struct] = ACTIONS(5458), + [anon_sym_union] = ACTIONS(5458), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5458), + [anon_sym_decltype] = ACTIONS(5458), + [anon_sym_explicit] = ACTIONS(5458), + [anon_sym_typename] = ACTIONS(5458), + [anon_sym_private] = ACTIONS(5458), + [anon_sym_template] = ACTIONS(5458), + [anon_sym_operator] = ACTIONS(5458), + [anon_sym_friend] = ACTIONS(5458), + [anon_sym_public] = ACTIONS(5458), + [anon_sym_protected] = ACTIONS(5458), + [anon_sym_static_assert] = ACTIONS(5458), + }, + [2089] = { + [sym_identifier] = ACTIONS(2759), + [aux_sym_preproc_def_token1] = ACTIONS(2759), + [aux_sym_preproc_if_token1] = ACTIONS(2759), + [aux_sym_preproc_if_token2] = ACTIONS(2759), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2759), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2759), + [sym_preproc_directive] = ACTIONS(2759), + [anon_sym_LPAREN2] = ACTIONS(2761), + [anon_sym_TILDE] = ACTIONS(2761), + [anon_sym_STAR] = ACTIONS(2761), + [anon_sym_AMP_AMP] = ACTIONS(2761), + [anon_sym_AMP] = ACTIONS(2759), + [anon_sym_SEMI] = ACTIONS(2761), + [anon_sym___extension__] = ACTIONS(2759), + [anon_sym_typedef] = ACTIONS(2759), + [anon_sym_virtual] = ACTIONS(2759), + [anon_sym_extern] = ACTIONS(2759), + [anon_sym___attribute__] = ACTIONS(2759), + [anon_sym___attribute] = ACTIONS(2759), + [anon_sym_using] = ACTIONS(2759), + [anon_sym_COLON_COLON] = ACTIONS(2761), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2761), + [anon_sym___declspec] = ACTIONS(2759), + [anon_sym___based] = ACTIONS(2759), + [anon_sym_signed] = ACTIONS(2759), + [anon_sym_unsigned] = ACTIONS(2759), + [anon_sym_long] = ACTIONS(2759), + [anon_sym_short] = ACTIONS(2759), + [anon_sym_LBRACK] = ACTIONS(2759), + [anon_sym_static] = ACTIONS(2759), + [anon_sym_register] = ACTIONS(2759), + [anon_sym_inline] = ACTIONS(2759), + [anon_sym___inline] = ACTIONS(2759), + [anon_sym___inline__] = ACTIONS(2759), + [anon_sym___forceinline] = ACTIONS(2759), + [anon_sym_thread_local] = ACTIONS(2759), + [anon_sym___thread] = ACTIONS(2759), + [anon_sym_const] = ACTIONS(2759), + [anon_sym_constexpr] = ACTIONS(2759), + [anon_sym_volatile] = ACTIONS(2759), + [anon_sym_restrict] = ACTIONS(2759), + [anon_sym___restrict__] = ACTIONS(2759), + [anon_sym__Atomic] = ACTIONS(2759), + [anon_sym__Noreturn] = ACTIONS(2759), + [anon_sym_noreturn] = ACTIONS(2759), + [anon_sym__Nonnull] = ACTIONS(2759), + [anon_sym_mutable] = ACTIONS(2759), + [anon_sym_constinit] = ACTIONS(2759), + [anon_sym_consteval] = ACTIONS(2759), + [anon_sym_alignas] = ACTIONS(2759), + [anon_sym__Alignas] = ACTIONS(2759), + [sym_primitive_type] = ACTIONS(2759), + [anon_sym_enum] = ACTIONS(2759), + [anon_sym_class] = ACTIONS(2759), + [anon_sym_struct] = ACTIONS(2759), + [anon_sym_union] = ACTIONS(2759), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3112), - [anon_sym_decltype] = ACTIONS(3112), - [anon_sym_explicit] = ACTIONS(3112), - [anon_sym_typename] = ACTIONS(3112), - [anon_sym_private] = ACTIONS(3112), - [anon_sym_template] = ACTIONS(3112), - [anon_sym_operator] = ACTIONS(3112), - [anon_sym_friend] = ACTIONS(3112), - [anon_sym_public] = ACTIONS(3112), - [anon_sym_protected] = ACTIONS(3112), - [anon_sym_static_assert] = ACTIONS(3112), + [sym_auto] = ACTIONS(2759), + [anon_sym_decltype] = ACTIONS(2759), + [anon_sym_explicit] = ACTIONS(2759), + [anon_sym_typename] = ACTIONS(2759), + [anon_sym_private] = ACTIONS(2759), + [anon_sym_template] = ACTIONS(2759), + [anon_sym_operator] = ACTIONS(2759), + [anon_sym_friend] = ACTIONS(2759), + [anon_sym_public] = ACTIONS(2759), + [anon_sym_protected] = ACTIONS(2759), + [anon_sym_static_assert] = ACTIONS(2759), }, - [2021] = { + [2090] = { [sym_identifier] = ACTIONS(2771), [aux_sym_preproc_def_token1] = ACTIONS(2771), [aux_sym_preproc_if_token1] = ACTIONS(2771), @@ -270385,427 +276882,427 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(2771), [anon_sym_static_assert] = ACTIONS(2771), }, - [2022] = { - [sym_identifier] = ACTIONS(3089), - [aux_sym_preproc_def_token1] = ACTIONS(3089), - [aux_sym_preproc_if_token1] = ACTIONS(3089), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3089), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3089), - [sym_preproc_directive] = ACTIONS(3089), - [anon_sym_LPAREN2] = ACTIONS(3091), - [anon_sym_TILDE] = ACTIONS(3091), - [anon_sym_STAR] = ACTIONS(3091), - [anon_sym_AMP_AMP] = ACTIONS(3091), - [anon_sym_AMP] = ACTIONS(3089), - [anon_sym_SEMI] = ACTIONS(3091), - [anon_sym___extension__] = ACTIONS(3089), - [anon_sym_typedef] = ACTIONS(3089), - [anon_sym_virtual] = ACTIONS(3089), - [anon_sym_extern] = ACTIONS(3089), - [anon_sym___attribute__] = ACTIONS(3089), - [anon_sym___attribute] = ACTIONS(3089), - [anon_sym_using] = ACTIONS(3089), - [anon_sym_COLON_COLON] = ACTIONS(3091), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3091), - [anon_sym___declspec] = ACTIONS(3089), - [anon_sym___based] = ACTIONS(3089), - [anon_sym_RBRACE] = ACTIONS(3091), - [anon_sym_signed] = ACTIONS(3089), - [anon_sym_unsigned] = ACTIONS(3089), - [anon_sym_long] = ACTIONS(3089), - [anon_sym_short] = ACTIONS(3089), - [anon_sym_LBRACK] = ACTIONS(3089), - [anon_sym_static] = ACTIONS(3089), - [anon_sym_register] = ACTIONS(3089), - [anon_sym_inline] = ACTIONS(3089), - [anon_sym___inline] = ACTIONS(3089), - [anon_sym___inline__] = ACTIONS(3089), - [anon_sym___forceinline] = ACTIONS(3089), - [anon_sym_thread_local] = ACTIONS(3089), - [anon_sym___thread] = ACTIONS(3089), - [anon_sym_const] = ACTIONS(3089), - [anon_sym_constexpr] = ACTIONS(3089), - [anon_sym_volatile] = ACTIONS(3089), - [anon_sym_restrict] = ACTIONS(3089), - [anon_sym___restrict__] = ACTIONS(3089), - [anon_sym__Atomic] = ACTIONS(3089), - [anon_sym__Noreturn] = ACTIONS(3089), - [anon_sym_noreturn] = ACTIONS(3089), - [anon_sym__Nonnull] = ACTIONS(3089), - [anon_sym_mutable] = ACTIONS(3089), - [anon_sym_constinit] = ACTIONS(3089), - [anon_sym_consteval] = ACTIONS(3089), - [anon_sym_alignas] = ACTIONS(3089), - [anon_sym__Alignas] = ACTIONS(3089), - [sym_primitive_type] = ACTIONS(3089), - [anon_sym_enum] = ACTIONS(3089), - [anon_sym_class] = ACTIONS(3089), - [anon_sym_struct] = ACTIONS(3089), - [anon_sym_union] = ACTIONS(3089), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3089), - [anon_sym_decltype] = ACTIONS(3089), - [anon_sym_explicit] = ACTIONS(3089), - [anon_sym_typename] = ACTIONS(3089), - [anon_sym_private] = ACTIONS(3089), - [anon_sym_template] = ACTIONS(3089), - [anon_sym_operator] = ACTIONS(3089), - [anon_sym_friend] = ACTIONS(3089), - [anon_sym_public] = ACTIONS(3089), - [anon_sym_protected] = ACTIONS(3089), - [anon_sym_static_assert] = ACTIONS(3089), + [2091] = { + [sym_identifier] = ACTIONS(5458), + [aux_sym_preproc_def_token1] = ACTIONS(5458), + [aux_sym_preproc_if_token1] = ACTIONS(5458), + [aux_sym_preproc_if_token2] = ACTIONS(5458), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5458), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5458), + [sym_preproc_directive] = ACTIONS(5458), + [anon_sym_LPAREN2] = ACTIONS(5460), + [anon_sym_TILDE] = ACTIONS(5460), + [anon_sym_STAR] = ACTIONS(5460), + [anon_sym_AMP_AMP] = ACTIONS(5460), + [anon_sym_AMP] = ACTIONS(5458), + [anon_sym_SEMI] = ACTIONS(5460), + [anon_sym___extension__] = ACTIONS(5458), + [anon_sym_typedef] = ACTIONS(5458), + [anon_sym_virtual] = ACTIONS(5458), + [anon_sym_extern] = ACTIONS(5458), + [anon_sym___attribute__] = ACTIONS(5458), + [anon_sym___attribute] = ACTIONS(5458), + [anon_sym_using] = ACTIONS(5458), + [anon_sym_COLON_COLON] = ACTIONS(5460), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5460), + [anon_sym___declspec] = ACTIONS(5458), + [anon_sym___based] = ACTIONS(5458), + [anon_sym_signed] = ACTIONS(5458), + [anon_sym_unsigned] = ACTIONS(5458), + [anon_sym_long] = ACTIONS(5458), + [anon_sym_short] = ACTIONS(5458), + [anon_sym_LBRACK] = ACTIONS(5458), + [anon_sym_static] = ACTIONS(5458), + [anon_sym_register] = ACTIONS(5458), + [anon_sym_inline] = ACTIONS(5458), + [anon_sym___inline] = ACTIONS(5458), + [anon_sym___inline__] = ACTIONS(5458), + [anon_sym___forceinline] = ACTIONS(5458), + [anon_sym_thread_local] = ACTIONS(5458), + [anon_sym___thread] = ACTIONS(5458), + [anon_sym_const] = ACTIONS(5458), + [anon_sym_constexpr] = ACTIONS(5458), + [anon_sym_volatile] = ACTIONS(5458), + [anon_sym_restrict] = ACTIONS(5458), + [anon_sym___restrict__] = ACTIONS(5458), + [anon_sym__Atomic] = ACTIONS(5458), + [anon_sym__Noreturn] = ACTIONS(5458), + [anon_sym_noreturn] = ACTIONS(5458), + [anon_sym__Nonnull] = ACTIONS(5458), + [anon_sym_mutable] = ACTIONS(5458), + [anon_sym_constinit] = ACTIONS(5458), + [anon_sym_consteval] = ACTIONS(5458), + [anon_sym_alignas] = ACTIONS(5458), + [anon_sym__Alignas] = ACTIONS(5458), + [sym_primitive_type] = ACTIONS(5458), + [anon_sym_enum] = ACTIONS(5458), + [anon_sym_class] = ACTIONS(5458), + [anon_sym_struct] = ACTIONS(5458), + [anon_sym_union] = ACTIONS(5458), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5458), + [anon_sym_decltype] = ACTIONS(5458), + [anon_sym_explicit] = ACTIONS(5458), + [anon_sym_typename] = ACTIONS(5458), + [anon_sym_private] = ACTIONS(5458), + [anon_sym_template] = ACTIONS(5458), + [anon_sym_operator] = ACTIONS(5458), + [anon_sym_friend] = ACTIONS(5458), + [anon_sym_public] = ACTIONS(5458), + [anon_sym_protected] = ACTIONS(5458), + [anon_sym_static_assert] = ACTIONS(5458), }, - [2023] = { - [sym_identifier] = ACTIONS(5545), - [aux_sym_preproc_def_token1] = ACTIONS(5545), - [aux_sym_preproc_if_token1] = ACTIONS(5545), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5545), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5545), - [sym_preproc_directive] = ACTIONS(5545), - [anon_sym_LPAREN2] = ACTIONS(5547), - [anon_sym_TILDE] = ACTIONS(5547), - [anon_sym_STAR] = ACTIONS(5547), - [anon_sym_AMP_AMP] = ACTIONS(5547), - [anon_sym_AMP] = ACTIONS(5545), - [anon_sym_SEMI] = ACTIONS(5547), - [anon_sym___extension__] = ACTIONS(5545), - [anon_sym_typedef] = ACTIONS(5545), - [anon_sym_virtual] = ACTIONS(5545), - [anon_sym_extern] = ACTIONS(5545), - [anon_sym___attribute__] = ACTIONS(5545), - [anon_sym___attribute] = ACTIONS(5545), - [anon_sym_using] = ACTIONS(5545), - [anon_sym_COLON_COLON] = ACTIONS(5547), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5547), - [anon_sym___declspec] = ACTIONS(5545), - [anon_sym___based] = ACTIONS(5545), - [anon_sym_RBRACE] = ACTIONS(5547), - [anon_sym_signed] = ACTIONS(5545), - [anon_sym_unsigned] = ACTIONS(5545), - [anon_sym_long] = ACTIONS(5545), - [anon_sym_short] = ACTIONS(5545), - [anon_sym_LBRACK] = ACTIONS(5545), - [anon_sym_static] = ACTIONS(5545), - [anon_sym_register] = ACTIONS(5545), - [anon_sym_inline] = ACTIONS(5545), - [anon_sym___inline] = ACTIONS(5545), - [anon_sym___inline__] = ACTIONS(5545), - [anon_sym___forceinline] = ACTIONS(5545), - [anon_sym_thread_local] = ACTIONS(5545), - [anon_sym___thread] = ACTIONS(5545), - [anon_sym_const] = ACTIONS(5545), - [anon_sym_constexpr] = ACTIONS(5545), - [anon_sym_volatile] = ACTIONS(5545), - [anon_sym_restrict] = ACTIONS(5545), - [anon_sym___restrict__] = ACTIONS(5545), - [anon_sym__Atomic] = ACTIONS(5545), - [anon_sym__Noreturn] = ACTIONS(5545), - [anon_sym_noreturn] = ACTIONS(5545), - [anon_sym__Nonnull] = ACTIONS(5545), - [anon_sym_mutable] = ACTIONS(5545), - [anon_sym_constinit] = ACTIONS(5545), - [anon_sym_consteval] = ACTIONS(5545), - [anon_sym_alignas] = ACTIONS(5545), - [anon_sym__Alignas] = ACTIONS(5545), - [sym_primitive_type] = ACTIONS(5545), - [anon_sym_enum] = ACTIONS(5545), - [anon_sym_class] = ACTIONS(5545), - [anon_sym_struct] = ACTIONS(5545), - [anon_sym_union] = ACTIONS(5545), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5545), - [anon_sym_decltype] = ACTIONS(5545), - [anon_sym_explicit] = ACTIONS(5545), - [anon_sym_typename] = ACTIONS(5545), - [anon_sym_private] = ACTIONS(5545), - [anon_sym_template] = ACTIONS(5545), - [anon_sym_operator] = ACTIONS(5545), - [anon_sym_friend] = ACTIONS(5545), - [anon_sym_public] = ACTIONS(5545), - [anon_sym_protected] = ACTIONS(5545), - [anon_sym_static_assert] = ACTIONS(5545), + [2092] = { + [sym_identifier] = ACTIONS(2967), + [aux_sym_preproc_def_token1] = ACTIONS(2967), + [aux_sym_preproc_if_token1] = ACTIONS(2967), + [aux_sym_preproc_if_token2] = ACTIONS(2967), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2967), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2967), + [sym_preproc_directive] = ACTIONS(2967), + [anon_sym_LPAREN2] = ACTIONS(2969), + [anon_sym_TILDE] = ACTIONS(2969), + [anon_sym_STAR] = ACTIONS(2969), + [anon_sym_AMP_AMP] = ACTIONS(2969), + [anon_sym_AMP] = ACTIONS(2967), + [anon_sym_SEMI] = ACTIONS(2969), + [anon_sym___extension__] = ACTIONS(2967), + [anon_sym_typedef] = ACTIONS(2967), + [anon_sym_virtual] = ACTIONS(2967), + [anon_sym_extern] = ACTIONS(2967), + [anon_sym___attribute__] = ACTIONS(2967), + [anon_sym___attribute] = ACTIONS(2967), + [anon_sym_using] = ACTIONS(2967), + [anon_sym_COLON_COLON] = ACTIONS(2969), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2969), + [anon_sym___declspec] = ACTIONS(2967), + [anon_sym___based] = ACTIONS(2967), + [anon_sym_signed] = ACTIONS(2967), + [anon_sym_unsigned] = ACTIONS(2967), + [anon_sym_long] = ACTIONS(2967), + [anon_sym_short] = ACTIONS(2967), + [anon_sym_LBRACK] = ACTIONS(2967), + [anon_sym_static] = ACTIONS(2967), + [anon_sym_register] = ACTIONS(2967), + [anon_sym_inline] = ACTIONS(2967), + [anon_sym___inline] = ACTIONS(2967), + [anon_sym___inline__] = ACTIONS(2967), + [anon_sym___forceinline] = ACTIONS(2967), + [anon_sym_thread_local] = ACTIONS(2967), + [anon_sym___thread] = ACTIONS(2967), + [anon_sym_const] = ACTIONS(2967), + [anon_sym_constexpr] = ACTIONS(2967), + [anon_sym_volatile] = ACTIONS(2967), + [anon_sym_restrict] = ACTIONS(2967), + [anon_sym___restrict__] = ACTIONS(2967), + [anon_sym__Atomic] = ACTIONS(2967), + [anon_sym__Noreturn] = ACTIONS(2967), + [anon_sym_noreturn] = ACTIONS(2967), + [anon_sym__Nonnull] = ACTIONS(2967), + [anon_sym_mutable] = ACTIONS(2967), + [anon_sym_constinit] = ACTIONS(2967), + [anon_sym_consteval] = ACTIONS(2967), + [anon_sym_alignas] = ACTIONS(2967), + [anon_sym__Alignas] = ACTIONS(2967), + [sym_primitive_type] = ACTIONS(2967), + [anon_sym_enum] = ACTIONS(2967), + [anon_sym_class] = ACTIONS(2967), + [anon_sym_struct] = ACTIONS(2967), + [anon_sym_union] = ACTIONS(2967), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2967), + [anon_sym_decltype] = ACTIONS(2967), + [anon_sym_explicit] = ACTIONS(2967), + [anon_sym_typename] = ACTIONS(2967), + [anon_sym_private] = ACTIONS(2967), + [anon_sym_template] = ACTIONS(2967), + [anon_sym_operator] = ACTIONS(2967), + [anon_sym_friend] = ACTIONS(2967), + [anon_sym_public] = ACTIONS(2967), + [anon_sym_protected] = ACTIONS(2967), + [anon_sym_static_assert] = ACTIONS(2967), }, - [2024] = { - [sym_identifier] = ACTIONS(3093), - [aux_sym_preproc_def_token1] = ACTIONS(3093), - [aux_sym_preproc_if_token1] = ACTIONS(3093), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3093), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3093), - [sym_preproc_directive] = ACTIONS(3093), - [anon_sym_LPAREN2] = ACTIONS(3095), - [anon_sym_TILDE] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(3095), - [anon_sym_AMP_AMP] = ACTIONS(3095), - [anon_sym_AMP] = ACTIONS(3093), - [anon_sym_SEMI] = ACTIONS(3095), - [anon_sym___extension__] = ACTIONS(3093), - [anon_sym_typedef] = ACTIONS(3093), - [anon_sym_virtual] = ACTIONS(3093), - [anon_sym_extern] = ACTIONS(3093), - [anon_sym___attribute__] = ACTIONS(3093), - [anon_sym___attribute] = ACTIONS(3093), - [anon_sym_using] = ACTIONS(3093), - [anon_sym_COLON_COLON] = ACTIONS(3095), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3095), - [anon_sym___declspec] = ACTIONS(3093), - [anon_sym___based] = ACTIONS(3093), - [anon_sym_RBRACE] = ACTIONS(3095), - [anon_sym_signed] = ACTIONS(3093), - [anon_sym_unsigned] = ACTIONS(3093), - [anon_sym_long] = ACTIONS(3093), - [anon_sym_short] = ACTIONS(3093), - [anon_sym_LBRACK] = ACTIONS(3093), - [anon_sym_static] = ACTIONS(3093), - [anon_sym_register] = ACTIONS(3093), - [anon_sym_inline] = ACTIONS(3093), - [anon_sym___inline] = ACTIONS(3093), - [anon_sym___inline__] = ACTIONS(3093), - [anon_sym___forceinline] = ACTIONS(3093), - [anon_sym_thread_local] = ACTIONS(3093), - [anon_sym___thread] = ACTIONS(3093), - [anon_sym_const] = ACTIONS(3093), - [anon_sym_constexpr] = ACTIONS(3093), - [anon_sym_volatile] = ACTIONS(3093), - [anon_sym_restrict] = ACTIONS(3093), - [anon_sym___restrict__] = ACTIONS(3093), - [anon_sym__Atomic] = ACTIONS(3093), - [anon_sym__Noreturn] = ACTIONS(3093), - [anon_sym_noreturn] = ACTIONS(3093), - [anon_sym__Nonnull] = ACTIONS(3093), - [anon_sym_mutable] = ACTIONS(3093), - [anon_sym_constinit] = ACTIONS(3093), - [anon_sym_consteval] = ACTIONS(3093), - [anon_sym_alignas] = ACTIONS(3093), - [anon_sym__Alignas] = ACTIONS(3093), - [sym_primitive_type] = ACTIONS(3093), - [anon_sym_enum] = ACTIONS(3093), - [anon_sym_class] = ACTIONS(3093), - [anon_sym_struct] = ACTIONS(3093), - [anon_sym_union] = ACTIONS(3093), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3093), - [anon_sym_decltype] = ACTIONS(3093), - [anon_sym_explicit] = ACTIONS(3093), - [anon_sym_typename] = ACTIONS(3093), - [anon_sym_private] = ACTIONS(3093), - [anon_sym_template] = ACTIONS(3093), - [anon_sym_operator] = ACTIONS(3093), - [anon_sym_friend] = ACTIONS(3093), - [anon_sym_public] = ACTIONS(3093), - [anon_sym_protected] = ACTIONS(3093), - [anon_sym_static_assert] = ACTIONS(3093), + [2093] = { + [sym_identifier] = ACTIONS(6054), + [anon_sym_LPAREN2] = ACTIONS(6056), + [anon_sym_TILDE] = ACTIONS(6056), + [anon_sym_STAR] = ACTIONS(6056), + [anon_sym_AMP_AMP] = ACTIONS(6056), + [anon_sym_AMP] = ACTIONS(6054), + [anon_sym___extension__] = ACTIONS(6054), + [anon_sym_virtual] = ACTIONS(6054), + [anon_sym_extern] = ACTIONS(6054), + [anon_sym___attribute__] = ACTIONS(6054), + [anon_sym___attribute] = ACTIONS(6054), + [anon_sym_using] = ACTIONS(6054), + [anon_sym_COLON_COLON] = ACTIONS(6056), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6056), + [anon_sym___declspec] = ACTIONS(6054), + [anon_sym___based] = ACTIONS(6054), + [anon_sym___cdecl] = ACTIONS(6054), + [anon_sym___clrcall] = ACTIONS(6054), + [anon_sym___stdcall] = ACTIONS(6054), + [anon_sym___fastcall] = ACTIONS(6054), + [anon_sym___thiscall] = ACTIONS(6054), + [anon_sym___vectorcall] = ACTIONS(6054), + [anon_sym_LBRACE] = ACTIONS(6056), + [anon_sym_signed] = ACTIONS(6054), + [anon_sym_unsigned] = ACTIONS(6054), + [anon_sym_long] = ACTIONS(6054), + [anon_sym_short] = ACTIONS(6054), + [anon_sym_LBRACK] = ACTIONS(6054), + [anon_sym_static] = ACTIONS(6054), + [anon_sym_register] = ACTIONS(6054), + [anon_sym_inline] = ACTIONS(6054), + [anon_sym___inline] = ACTIONS(6054), + [anon_sym___inline__] = ACTIONS(6054), + [anon_sym___forceinline] = ACTIONS(6054), + [anon_sym_thread_local] = ACTIONS(6054), + [anon_sym___thread] = ACTIONS(6054), + [anon_sym_const] = ACTIONS(6054), + [anon_sym_constexpr] = ACTIONS(6054), + [anon_sym_volatile] = ACTIONS(6054), + [anon_sym_restrict] = ACTIONS(6054), + [anon_sym___restrict__] = ACTIONS(6054), + [anon_sym__Atomic] = ACTIONS(6054), + [anon_sym__Noreturn] = ACTIONS(6054), + [anon_sym_noreturn] = ACTIONS(6054), + [anon_sym__Nonnull] = ACTIONS(6054), + [anon_sym_mutable] = ACTIONS(6054), + [anon_sym_constinit] = ACTIONS(6054), + [anon_sym_consteval] = ACTIONS(6054), + [anon_sym_alignas] = ACTIONS(6054), + [anon_sym__Alignas] = ACTIONS(6054), + [sym_primitive_type] = ACTIONS(6054), + [anon_sym_enum] = ACTIONS(6054), + [anon_sym_class] = ACTIONS(6054), + [anon_sym_struct] = ACTIONS(6054), + [anon_sym_union] = ACTIONS(6054), + [anon_sym_DASH_GT] = ACTIONS(6056), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6054), + [anon_sym_decltype] = ACTIONS(6054), + [anon_sym_explicit] = ACTIONS(6054), + [anon_sym_typename] = ACTIONS(6054), + [anon_sym_template] = ACTIONS(6054), + [anon_sym_operator] = ACTIONS(6054), + [anon_sym_friend] = ACTIONS(6054), + [anon_sym_noexcept] = ACTIONS(6054), + [anon_sym_throw] = ACTIONS(6054), + [anon_sym_concept] = ACTIONS(6054), + [anon_sym_requires] = ACTIONS(6054), }, - [2025] = { - [sym_identifier] = ACTIONS(5557), - [aux_sym_preproc_def_token1] = ACTIONS(5557), - [aux_sym_preproc_if_token1] = ACTIONS(5557), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5557), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5557), - [sym_preproc_directive] = ACTIONS(5557), - [anon_sym_LPAREN2] = ACTIONS(5559), - [anon_sym_TILDE] = ACTIONS(5559), - [anon_sym_STAR] = ACTIONS(5559), - [anon_sym_AMP_AMP] = ACTIONS(5559), - [anon_sym_AMP] = ACTIONS(5557), - [anon_sym_SEMI] = ACTIONS(5559), - [anon_sym___extension__] = ACTIONS(5557), - [anon_sym_typedef] = ACTIONS(5557), - [anon_sym_virtual] = ACTIONS(5557), - [anon_sym_extern] = ACTIONS(5557), - [anon_sym___attribute__] = ACTIONS(5557), - [anon_sym___attribute] = ACTIONS(5557), - [anon_sym_using] = ACTIONS(5557), - [anon_sym_COLON_COLON] = ACTIONS(5559), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5559), - [anon_sym___declspec] = ACTIONS(5557), - [anon_sym___based] = ACTIONS(5557), - [anon_sym_RBRACE] = ACTIONS(5559), - [anon_sym_signed] = ACTIONS(5557), - [anon_sym_unsigned] = ACTIONS(5557), - [anon_sym_long] = ACTIONS(5557), - [anon_sym_short] = ACTIONS(5557), - [anon_sym_LBRACK] = ACTIONS(5557), - [anon_sym_static] = ACTIONS(5557), - [anon_sym_register] = ACTIONS(5557), - [anon_sym_inline] = ACTIONS(5557), - [anon_sym___inline] = ACTIONS(5557), - [anon_sym___inline__] = ACTIONS(5557), - [anon_sym___forceinline] = ACTIONS(5557), - [anon_sym_thread_local] = ACTIONS(5557), - [anon_sym___thread] = ACTIONS(5557), - [anon_sym_const] = ACTIONS(5557), - [anon_sym_constexpr] = ACTIONS(5557), - [anon_sym_volatile] = ACTIONS(5557), - [anon_sym_restrict] = ACTIONS(5557), - [anon_sym___restrict__] = ACTIONS(5557), - [anon_sym__Atomic] = ACTIONS(5557), - [anon_sym__Noreturn] = ACTIONS(5557), - [anon_sym_noreturn] = ACTIONS(5557), - [anon_sym__Nonnull] = ACTIONS(5557), - [anon_sym_mutable] = ACTIONS(5557), - [anon_sym_constinit] = ACTIONS(5557), - [anon_sym_consteval] = ACTIONS(5557), - [anon_sym_alignas] = ACTIONS(5557), - [anon_sym__Alignas] = ACTIONS(5557), - [sym_primitive_type] = ACTIONS(5557), - [anon_sym_enum] = ACTIONS(5557), - [anon_sym_class] = ACTIONS(5557), - [anon_sym_struct] = ACTIONS(5557), - [anon_sym_union] = ACTIONS(5557), + [2094] = { + [sym_identifier] = ACTIONS(2811), + [aux_sym_preproc_def_token1] = ACTIONS(2811), + [aux_sym_preproc_if_token1] = ACTIONS(2811), + [aux_sym_preproc_if_token2] = ACTIONS(2811), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2811), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2811), + [sym_preproc_directive] = ACTIONS(2811), + [anon_sym_LPAREN2] = ACTIONS(2813), + [anon_sym_TILDE] = ACTIONS(2813), + [anon_sym_STAR] = ACTIONS(2813), + [anon_sym_AMP_AMP] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2811), + [anon_sym_SEMI] = ACTIONS(2813), + [anon_sym___extension__] = ACTIONS(2811), + [anon_sym_typedef] = ACTIONS(2811), + [anon_sym_virtual] = ACTIONS(2811), + [anon_sym_extern] = ACTIONS(2811), + [anon_sym___attribute__] = ACTIONS(2811), + [anon_sym___attribute] = ACTIONS(2811), + [anon_sym_using] = ACTIONS(2811), + [anon_sym_COLON_COLON] = ACTIONS(2813), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2813), + [anon_sym___declspec] = ACTIONS(2811), + [anon_sym___based] = ACTIONS(2811), + [anon_sym_signed] = ACTIONS(2811), + [anon_sym_unsigned] = ACTIONS(2811), + [anon_sym_long] = ACTIONS(2811), + [anon_sym_short] = ACTIONS(2811), + [anon_sym_LBRACK] = ACTIONS(2811), + [anon_sym_static] = ACTIONS(2811), + [anon_sym_register] = ACTIONS(2811), + [anon_sym_inline] = ACTIONS(2811), + [anon_sym___inline] = ACTIONS(2811), + [anon_sym___inline__] = ACTIONS(2811), + [anon_sym___forceinline] = ACTIONS(2811), + [anon_sym_thread_local] = ACTIONS(2811), + [anon_sym___thread] = ACTIONS(2811), + [anon_sym_const] = ACTIONS(2811), + [anon_sym_constexpr] = ACTIONS(2811), + [anon_sym_volatile] = ACTIONS(2811), + [anon_sym_restrict] = ACTIONS(2811), + [anon_sym___restrict__] = ACTIONS(2811), + [anon_sym__Atomic] = ACTIONS(2811), + [anon_sym__Noreturn] = ACTIONS(2811), + [anon_sym_noreturn] = ACTIONS(2811), + [anon_sym__Nonnull] = ACTIONS(2811), + [anon_sym_mutable] = ACTIONS(2811), + [anon_sym_constinit] = ACTIONS(2811), + [anon_sym_consteval] = ACTIONS(2811), + [anon_sym_alignas] = ACTIONS(2811), + [anon_sym__Alignas] = ACTIONS(2811), + [sym_primitive_type] = ACTIONS(2811), + [anon_sym_enum] = ACTIONS(2811), + [anon_sym_class] = ACTIONS(2811), + [anon_sym_struct] = ACTIONS(2811), + [anon_sym_union] = ACTIONS(2811), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5557), - [anon_sym_decltype] = ACTIONS(5557), - [anon_sym_explicit] = ACTIONS(5557), - [anon_sym_typename] = ACTIONS(5557), - [anon_sym_private] = ACTIONS(5557), - [anon_sym_template] = ACTIONS(5557), - [anon_sym_operator] = ACTIONS(5557), - [anon_sym_friend] = ACTIONS(5557), - [anon_sym_public] = ACTIONS(5557), - [anon_sym_protected] = ACTIONS(5557), - [anon_sym_static_assert] = ACTIONS(5557), + [sym_auto] = ACTIONS(2811), + [anon_sym_decltype] = ACTIONS(2811), + [anon_sym_explicit] = ACTIONS(2811), + [anon_sym_typename] = ACTIONS(2811), + [anon_sym_private] = ACTIONS(2811), + [anon_sym_template] = ACTIONS(2811), + [anon_sym_operator] = ACTIONS(2811), + [anon_sym_friend] = ACTIONS(2811), + [anon_sym_public] = ACTIONS(2811), + [anon_sym_protected] = ACTIONS(2811), + [anon_sym_static_assert] = ACTIONS(2811), }, - [2026] = { - [sym_identifier] = ACTIONS(5565), - [aux_sym_preproc_def_token1] = ACTIONS(5565), - [aux_sym_preproc_if_token1] = ACTIONS(5565), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5565), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5565), - [sym_preproc_directive] = ACTIONS(5565), - [anon_sym_LPAREN2] = ACTIONS(5567), - [anon_sym_TILDE] = ACTIONS(5567), - [anon_sym_STAR] = ACTIONS(5567), - [anon_sym_AMP_AMP] = ACTIONS(5567), - [anon_sym_AMP] = ACTIONS(5565), - [anon_sym_SEMI] = ACTIONS(5567), - [anon_sym___extension__] = ACTIONS(5565), - [anon_sym_typedef] = ACTIONS(5565), - [anon_sym_virtual] = ACTIONS(5565), - [anon_sym_extern] = ACTIONS(5565), - [anon_sym___attribute__] = ACTIONS(5565), - [anon_sym___attribute] = ACTIONS(5565), - [anon_sym_using] = ACTIONS(5565), - [anon_sym_COLON_COLON] = ACTIONS(5567), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5567), - [anon_sym___declspec] = ACTIONS(5565), - [anon_sym___based] = ACTIONS(5565), - [anon_sym_RBRACE] = ACTIONS(5567), - [anon_sym_signed] = ACTIONS(5565), - [anon_sym_unsigned] = ACTIONS(5565), - [anon_sym_long] = ACTIONS(5565), - [anon_sym_short] = ACTIONS(5565), - [anon_sym_LBRACK] = ACTIONS(5565), - [anon_sym_static] = ACTIONS(5565), - [anon_sym_register] = ACTIONS(5565), - [anon_sym_inline] = ACTIONS(5565), - [anon_sym___inline] = ACTIONS(5565), - [anon_sym___inline__] = ACTIONS(5565), - [anon_sym___forceinline] = ACTIONS(5565), - [anon_sym_thread_local] = ACTIONS(5565), - [anon_sym___thread] = ACTIONS(5565), - [anon_sym_const] = ACTIONS(5565), - [anon_sym_constexpr] = ACTIONS(5565), - [anon_sym_volatile] = ACTIONS(5565), - [anon_sym_restrict] = ACTIONS(5565), - [anon_sym___restrict__] = ACTIONS(5565), - [anon_sym__Atomic] = ACTIONS(5565), - [anon_sym__Noreturn] = ACTIONS(5565), - [anon_sym_noreturn] = ACTIONS(5565), - [anon_sym__Nonnull] = ACTIONS(5565), - [anon_sym_mutable] = ACTIONS(5565), - [anon_sym_constinit] = ACTIONS(5565), - [anon_sym_consteval] = ACTIONS(5565), - [anon_sym_alignas] = ACTIONS(5565), - [anon_sym__Alignas] = ACTIONS(5565), - [sym_primitive_type] = ACTIONS(5565), - [anon_sym_enum] = ACTIONS(5565), - [anon_sym_class] = ACTIONS(5565), - [anon_sym_struct] = ACTIONS(5565), - [anon_sym_union] = ACTIONS(5565), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5565), - [anon_sym_decltype] = ACTIONS(5565), - [anon_sym_explicit] = ACTIONS(5565), - [anon_sym_typename] = ACTIONS(5565), - [anon_sym_private] = ACTIONS(5565), - [anon_sym_template] = ACTIONS(5565), - [anon_sym_operator] = ACTIONS(5565), - [anon_sym_friend] = ACTIONS(5565), - [anon_sym_public] = ACTIONS(5565), - [anon_sym_protected] = ACTIONS(5565), - [anon_sym_static_assert] = ACTIONS(5565), + [2095] = { + [sym__declaration_modifiers] = STATE(3258), + [sym_attribute_specifier] = STATE(3258), + [sym_attribute_declaration] = STATE(3258), + [sym_ms_declspec_modifier] = STATE(3258), + [sym_storage_class_specifier] = STATE(3258), + [sym_type_qualifier] = STATE(3258), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2424), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym_dependent_type] = STATE(2558), + [sym_template_type] = STATE(2439), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(6715), + [sym_qualified_type_identifier] = STATE(3138), + [aux_sym__declaration_specifiers_repeat1] = STATE(3258), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(5226), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(6039), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(5228), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(69), + [anon_sym__Alignas] = ACTIONS(69), + [sym_primitive_type] = ACTIONS(3019), + [anon_sym_enum] = ACTIONS(73), + [anon_sym_class] = ACTIONS(75), + [anon_sym_struct] = ACTIONS(77), + [anon_sym_union] = ACTIONS(79), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(125), + [anon_sym_decltype] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(131), + [anon_sym_template] = ACTIONS(1268), }, - [2027] = { - [sym_identifier] = ACTIONS(5569), - [aux_sym_preproc_def_token1] = ACTIONS(5569), - [aux_sym_preproc_if_token1] = ACTIONS(5569), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5569), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5569), - [sym_preproc_directive] = ACTIONS(5569), - [anon_sym_LPAREN2] = ACTIONS(5571), - [anon_sym_TILDE] = ACTIONS(5571), - [anon_sym_STAR] = ACTIONS(5571), - [anon_sym_AMP_AMP] = ACTIONS(5571), - [anon_sym_AMP] = ACTIONS(5569), - [anon_sym_SEMI] = ACTIONS(5571), - [anon_sym___extension__] = ACTIONS(5569), - [anon_sym_typedef] = ACTIONS(5569), - [anon_sym_virtual] = ACTIONS(5569), - [anon_sym_extern] = ACTIONS(5569), - [anon_sym___attribute__] = ACTIONS(5569), - [anon_sym___attribute] = ACTIONS(5569), - [anon_sym_using] = ACTIONS(5569), - [anon_sym_COLON_COLON] = ACTIONS(5571), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5571), - [anon_sym___declspec] = ACTIONS(5569), - [anon_sym___based] = ACTIONS(5569), - [anon_sym_RBRACE] = ACTIONS(5571), - [anon_sym_signed] = ACTIONS(5569), - [anon_sym_unsigned] = ACTIONS(5569), - [anon_sym_long] = ACTIONS(5569), - [anon_sym_short] = ACTIONS(5569), - [anon_sym_LBRACK] = ACTIONS(5569), - [anon_sym_static] = ACTIONS(5569), - [anon_sym_register] = ACTIONS(5569), - [anon_sym_inline] = ACTIONS(5569), - [anon_sym___inline] = ACTIONS(5569), - [anon_sym___inline__] = ACTIONS(5569), - [anon_sym___forceinline] = ACTIONS(5569), - [anon_sym_thread_local] = ACTIONS(5569), - [anon_sym___thread] = ACTIONS(5569), - [anon_sym_const] = ACTIONS(5569), - [anon_sym_constexpr] = ACTIONS(5569), - [anon_sym_volatile] = ACTIONS(5569), - [anon_sym_restrict] = ACTIONS(5569), - [anon_sym___restrict__] = ACTIONS(5569), - [anon_sym__Atomic] = ACTIONS(5569), - [anon_sym__Noreturn] = ACTIONS(5569), - [anon_sym_noreturn] = ACTIONS(5569), - [anon_sym__Nonnull] = ACTIONS(5569), - [anon_sym_mutable] = ACTIONS(5569), - [anon_sym_constinit] = ACTIONS(5569), - [anon_sym_consteval] = ACTIONS(5569), - [anon_sym_alignas] = ACTIONS(5569), - [anon_sym__Alignas] = ACTIONS(5569), - [sym_primitive_type] = ACTIONS(5569), - [anon_sym_enum] = ACTIONS(5569), - [anon_sym_class] = ACTIONS(5569), - [anon_sym_struct] = ACTIONS(5569), - [anon_sym_union] = ACTIONS(5569), + [2096] = { + [sym_identifier] = ACTIONS(2819), + [aux_sym_preproc_def_token1] = ACTIONS(2819), + [aux_sym_preproc_if_token1] = ACTIONS(2819), + [aux_sym_preproc_if_token2] = ACTIONS(2819), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2819), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2819), + [sym_preproc_directive] = ACTIONS(2819), + [anon_sym_LPAREN2] = ACTIONS(2821), + [anon_sym_TILDE] = ACTIONS(2821), + [anon_sym_STAR] = ACTIONS(2821), + [anon_sym_AMP_AMP] = ACTIONS(2821), + [anon_sym_AMP] = ACTIONS(2819), + [anon_sym_SEMI] = ACTIONS(2821), + [anon_sym___extension__] = ACTIONS(2819), + [anon_sym_typedef] = ACTIONS(2819), + [anon_sym_virtual] = ACTIONS(2819), + [anon_sym_extern] = ACTIONS(2819), + [anon_sym___attribute__] = ACTIONS(2819), + [anon_sym___attribute] = ACTIONS(2819), + [anon_sym_using] = ACTIONS(2819), + [anon_sym_COLON_COLON] = ACTIONS(2821), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2821), + [anon_sym___declspec] = ACTIONS(2819), + [anon_sym___based] = ACTIONS(2819), + [anon_sym_signed] = ACTIONS(2819), + [anon_sym_unsigned] = ACTIONS(2819), + [anon_sym_long] = ACTIONS(2819), + [anon_sym_short] = ACTIONS(2819), + [anon_sym_LBRACK] = ACTIONS(2819), + [anon_sym_static] = ACTIONS(2819), + [anon_sym_register] = ACTIONS(2819), + [anon_sym_inline] = ACTIONS(2819), + [anon_sym___inline] = ACTIONS(2819), + [anon_sym___inline__] = ACTIONS(2819), + [anon_sym___forceinline] = ACTIONS(2819), + [anon_sym_thread_local] = ACTIONS(2819), + [anon_sym___thread] = ACTIONS(2819), + [anon_sym_const] = ACTIONS(2819), + [anon_sym_constexpr] = ACTIONS(2819), + [anon_sym_volatile] = ACTIONS(2819), + [anon_sym_restrict] = ACTIONS(2819), + [anon_sym___restrict__] = ACTIONS(2819), + [anon_sym__Atomic] = ACTIONS(2819), + [anon_sym__Noreturn] = ACTIONS(2819), + [anon_sym_noreturn] = ACTIONS(2819), + [anon_sym__Nonnull] = ACTIONS(2819), + [anon_sym_mutable] = ACTIONS(2819), + [anon_sym_constinit] = ACTIONS(2819), + [anon_sym_consteval] = ACTIONS(2819), + [anon_sym_alignas] = ACTIONS(2819), + [anon_sym__Alignas] = ACTIONS(2819), + [sym_primitive_type] = ACTIONS(2819), + [anon_sym_enum] = ACTIONS(2819), + [anon_sym_class] = ACTIONS(2819), + [anon_sym_struct] = ACTIONS(2819), + [anon_sym_union] = ACTIONS(2819), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5569), - [anon_sym_decltype] = ACTIONS(5569), - [anon_sym_explicit] = ACTIONS(5569), - [anon_sym_typename] = ACTIONS(5569), - [anon_sym_private] = ACTIONS(5569), - [anon_sym_template] = ACTIONS(5569), - [anon_sym_operator] = ACTIONS(5569), - [anon_sym_friend] = ACTIONS(5569), - [anon_sym_public] = ACTIONS(5569), - [anon_sym_protected] = ACTIONS(5569), - [anon_sym_static_assert] = ACTIONS(5569), + [sym_auto] = ACTIONS(2819), + [anon_sym_decltype] = ACTIONS(2819), + [anon_sym_explicit] = ACTIONS(2819), + [anon_sym_typename] = ACTIONS(2819), + [anon_sym_private] = ACTIONS(2819), + [anon_sym_template] = ACTIONS(2819), + [anon_sym_operator] = ACTIONS(2819), + [anon_sym_friend] = ACTIONS(2819), + [anon_sym_public] = ACTIONS(2819), + [anon_sym_protected] = ACTIONS(2819), + [anon_sym_static_assert] = ACTIONS(2819), }, - [2028] = { + [2097] = { [sym_identifier] = ACTIONS(5573), [aux_sym_preproc_def_token1] = ACTIONS(5573), [aux_sym_preproc_if_token1] = ACTIONS(5573), @@ -270875,287 +277372,217 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(5573), [anon_sym_static_assert] = ACTIONS(5573), }, - [2029] = { - [sym_identifier] = ACTIONS(3079), - [aux_sym_preproc_def_token1] = ACTIONS(3079), - [aux_sym_preproc_if_token1] = ACTIONS(3079), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3079), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3079), - [sym_preproc_directive] = ACTIONS(3079), - [anon_sym_LPAREN2] = ACTIONS(3081), - [anon_sym_TILDE] = ACTIONS(3081), - [anon_sym_STAR] = ACTIONS(3081), - [anon_sym_AMP_AMP] = ACTIONS(3081), - [anon_sym_AMP] = ACTIONS(3079), - [anon_sym_SEMI] = ACTIONS(3081), - [anon_sym___extension__] = ACTIONS(3079), - [anon_sym_typedef] = ACTIONS(3079), - [anon_sym_virtual] = ACTIONS(3079), - [anon_sym_extern] = ACTIONS(3079), - [anon_sym___attribute__] = ACTIONS(3079), - [anon_sym___attribute] = ACTIONS(3079), - [anon_sym_using] = ACTIONS(3079), - [anon_sym_COLON_COLON] = ACTIONS(3081), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3081), - [anon_sym___declspec] = ACTIONS(3079), - [anon_sym___based] = ACTIONS(3079), - [anon_sym_RBRACE] = ACTIONS(3081), - [anon_sym_signed] = ACTIONS(3079), - [anon_sym_unsigned] = ACTIONS(3079), - [anon_sym_long] = ACTIONS(3079), - [anon_sym_short] = ACTIONS(3079), - [anon_sym_LBRACK] = ACTIONS(3079), - [anon_sym_static] = ACTIONS(3079), - [anon_sym_register] = ACTIONS(3079), - [anon_sym_inline] = ACTIONS(3079), - [anon_sym___inline] = ACTIONS(3079), - [anon_sym___inline__] = ACTIONS(3079), - [anon_sym___forceinline] = ACTIONS(3079), - [anon_sym_thread_local] = ACTIONS(3079), - [anon_sym___thread] = ACTIONS(3079), - [anon_sym_const] = ACTIONS(3079), - [anon_sym_constexpr] = ACTIONS(3079), - [anon_sym_volatile] = ACTIONS(3079), - [anon_sym_restrict] = ACTIONS(3079), - [anon_sym___restrict__] = ACTIONS(3079), - [anon_sym__Atomic] = ACTIONS(3079), - [anon_sym__Noreturn] = ACTIONS(3079), - [anon_sym_noreturn] = ACTIONS(3079), - [anon_sym__Nonnull] = ACTIONS(3079), - [anon_sym_mutable] = ACTIONS(3079), - [anon_sym_constinit] = ACTIONS(3079), - [anon_sym_consteval] = ACTIONS(3079), - [anon_sym_alignas] = ACTIONS(3079), - [anon_sym__Alignas] = ACTIONS(3079), - [sym_primitive_type] = ACTIONS(3079), - [anon_sym_enum] = ACTIONS(3079), - [anon_sym_class] = ACTIONS(3079), - [anon_sym_struct] = ACTIONS(3079), - [anon_sym_union] = ACTIONS(3079), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3079), - [anon_sym_decltype] = ACTIONS(3079), - [anon_sym_explicit] = ACTIONS(3079), - [anon_sym_typename] = ACTIONS(3079), - [anon_sym_private] = ACTIONS(3079), - [anon_sym_template] = ACTIONS(3079), - [anon_sym_operator] = ACTIONS(3079), - [anon_sym_friend] = ACTIONS(3079), - [anon_sym_public] = ACTIONS(3079), - [anon_sym_protected] = ACTIONS(3079), - [anon_sym_static_assert] = ACTIONS(3079), - }, - [2030] = { - [sym_identifier] = ACTIONS(2915), - [aux_sym_preproc_def_token1] = ACTIONS(2915), - [aux_sym_preproc_if_token1] = ACTIONS(2915), - [aux_sym_preproc_if_token2] = ACTIONS(2915), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2915), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2915), - [sym_preproc_directive] = ACTIONS(2915), - [anon_sym_LPAREN2] = ACTIONS(2917), - [anon_sym_TILDE] = ACTIONS(2917), - [anon_sym_STAR] = ACTIONS(2917), - [anon_sym_AMP_AMP] = ACTIONS(2917), - [anon_sym_AMP] = ACTIONS(2915), - [anon_sym_SEMI] = ACTIONS(2917), - [anon_sym___extension__] = ACTIONS(2915), - [anon_sym_typedef] = ACTIONS(2915), - [anon_sym_virtual] = ACTIONS(2915), - [anon_sym_extern] = ACTIONS(2915), - [anon_sym___attribute__] = ACTIONS(2915), - [anon_sym___attribute] = ACTIONS(2915), - [anon_sym_using] = ACTIONS(2915), - [anon_sym_COLON_COLON] = ACTIONS(2917), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2917), - [anon_sym___declspec] = ACTIONS(2915), - [anon_sym___based] = ACTIONS(2915), - [anon_sym_signed] = ACTIONS(2915), - [anon_sym_unsigned] = ACTIONS(2915), - [anon_sym_long] = ACTIONS(2915), - [anon_sym_short] = ACTIONS(2915), - [anon_sym_LBRACK] = ACTIONS(2915), - [anon_sym_static] = ACTIONS(2915), - [anon_sym_register] = ACTIONS(2915), - [anon_sym_inline] = ACTIONS(2915), - [anon_sym___inline] = ACTIONS(2915), - [anon_sym___inline__] = ACTIONS(2915), - [anon_sym___forceinline] = ACTIONS(2915), - [anon_sym_thread_local] = ACTIONS(2915), - [anon_sym___thread] = ACTIONS(2915), - [anon_sym_const] = ACTIONS(2915), - [anon_sym_constexpr] = ACTIONS(2915), - [anon_sym_volatile] = ACTIONS(2915), - [anon_sym_restrict] = ACTIONS(2915), - [anon_sym___restrict__] = ACTIONS(2915), - [anon_sym__Atomic] = ACTIONS(2915), - [anon_sym__Noreturn] = ACTIONS(2915), - [anon_sym_noreturn] = ACTIONS(2915), - [anon_sym__Nonnull] = ACTIONS(2915), - [anon_sym_mutable] = ACTIONS(2915), - [anon_sym_constinit] = ACTIONS(2915), - [anon_sym_consteval] = ACTIONS(2915), - [anon_sym_alignas] = ACTIONS(2915), - [anon_sym__Alignas] = ACTIONS(2915), - [sym_primitive_type] = ACTIONS(2915), - [anon_sym_enum] = ACTIONS(2915), - [anon_sym_class] = ACTIONS(2915), - [anon_sym_struct] = ACTIONS(2915), - [anon_sym_union] = ACTIONS(2915), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2915), - [anon_sym_decltype] = ACTIONS(2915), - [anon_sym_explicit] = ACTIONS(2915), - [anon_sym_typename] = ACTIONS(2915), - [anon_sym_private] = ACTIONS(2915), - [anon_sym_template] = ACTIONS(2915), - [anon_sym_operator] = ACTIONS(2915), - [anon_sym_friend] = ACTIONS(2915), - [anon_sym_public] = ACTIONS(2915), - [anon_sym_protected] = ACTIONS(2915), - [anon_sym_static_assert] = ACTIONS(2915), + [2098] = { + [sym_identifier] = ACTIONS(3317), + [aux_sym_preproc_def_token1] = ACTIONS(3317), + [aux_sym_preproc_if_token1] = ACTIONS(3317), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3317), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3317), + [sym_preproc_directive] = ACTIONS(3317), + [anon_sym_LPAREN2] = ACTIONS(3319), + [anon_sym_TILDE] = ACTIONS(3319), + [anon_sym_STAR] = ACTIONS(3319), + [anon_sym_AMP_AMP] = ACTIONS(3319), + [anon_sym_AMP] = ACTIONS(3317), + [anon_sym_SEMI] = ACTIONS(3319), + [anon_sym___extension__] = ACTIONS(3317), + [anon_sym_typedef] = ACTIONS(3317), + [anon_sym_virtual] = ACTIONS(3317), + [anon_sym_extern] = ACTIONS(3317), + [anon_sym___attribute__] = ACTIONS(3317), + [anon_sym___attribute] = ACTIONS(3317), + [anon_sym_using] = ACTIONS(3317), + [anon_sym_COLON_COLON] = ACTIONS(3319), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3319), + [anon_sym___declspec] = ACTIONS(3317), + [anon_sym___based] = ACTIONS(3317), + [anon_sym_RBRACE] = ACTIONS(3319), + [anon_sym_signed] = ACTIONS(3317), + [anon_sym_unsigned] = ACTIONS(3317), + [anon_sym_long] = ACTIONS(3317), + [anon_sym_short] = ACTIONS(3317), + [anon_sym_LBRACK] = ACTIONS(3317), + [anon_sym_static] = ACTIONS(3317), + [anon_sym_register] = ACTIONS(3317), + [anon_sym_inline] = ACTIONS(3317), + [anon_sym___inline] = ACTIONS(3317), + [anon_sym___inline__] = ACTIONS(3317), + [anon_sym___forceinline] = ACTIONS(3317), + [anon_sym_thread_local] = ACTIONS(3317), + [anon_sym___thread] = ACTIONS(3317), + [anon_sym_const] = ACTIONS(3317), + [anon_sym_constexpr] = ACTIONS(3317), + [anon_sym_volatile] = ACTIONS(3317), + [anon_sym_restrict] = ACTIONS(3317), + [anon_sym___restrict__] = ACTIONS(3317), + [anon_sym__Atomic] = ACTIONS(3317), + [anon_sym__Noreturn] = ACTIONS(3317), + [anon_sym_noreturn] = ACTIONS(3317), + [anon_sym__Nonnull] = ACTIONS(3317), + [anon_sym_mutable] = ACTIONS(3317), + [anon_sym_constinit] = ACTIONS(3317), + [anon_sym_consteval] = ACTIONS(3317), + [anon_sym_alignas] = ACTIONS(3317), + [anon_sym__Alignas] = ACTIONS(3317), + [sym_primitive_type] = ACTIONS(3317), + [anon_sym_enum] = ACTIONS(3317), + [anon_sym_class] = ACTIONS(3317), + [anon_sym_struct] = ACTIONS(3317), + [anon_sym_union] = ACTIONS(3317), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3317), + [anon_sym_decltype] = ACTIONS(3317), + [anon_sym_explicit] = ACTIONS(3317), + [anon_sym_typename] = ACTIONS(3317), + [anon_sym_private] = ACTIONS(3317), + [anon_sym_template] = ACTIONS(3317), + [anon_sym_operator] = ACTIONS(3317), + [anon_sym_friend] = ACTIONS(3317), + [anon_sym_public] = ACTIONS(3317), + [anon_sym_protected] = ACTIONS(3317), + [anon_sym_static_assert] = ACTIONS(3317), }, - [2031] = { - [sym_identifier] = ACTIONS(2775), - [aux_sym_preproc_def_token1] = ACTIONS(2775), - [aux_sym_preproc_if_token1] = ACTIONS(2775), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2775), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2775), - [sym_preproc_directive] = ACTIONS(2775), - [anon_sym_LPAREN2] = ACTIONS(2777), - [anon_sym_TILDE] = ACTIONS(2777), - [anon_sym_STAR] = ACTIONS(2777), - [anon_sym_AMP_AMP] = ACTIONS(2777), - [anon_sym_AMP] = ACTIONS(2775), - [anon_sym_SEMI] = ACTIONS(2777), - [anon_sym___extension__] = ACTIONS(2775), - [anon_sym_typedef] = ACTIONS(2775), - [anon_sym_virtual] = ACTIONS(2775), - [anon_sym_extern] = ACTIONS(2775), - [anon_sym___attribute__] = ACTIONS(2775), - [anon_sym___attribute] = ACTIONS(2775), - [anon_sym_using] = ACTIONS(2775), - [anon_sym_COLON_COLON] = ACTIONS(2777), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2777), - [anon_sym___declspec] = ACTIONS(2775), - [anon_sym___based] = ACTIONS(2775), - [anon_sym_RBRACE] = ACTIONS(2777), - [anon_sym_signed] = ACTIONS(2775), - [anon_sym_unsigned] = ACTIONS(2775), - [anon_sym_long] = ACTIONS(2775), - [anon_sym_short] = ACTIONS(2775), - [anon_sym_LBRACK] = ACTIONS(2775), - [anon_sym_static] = ACTIONS(2775), - [anon_sym_register] = ACTIONS(2775), - [anon_sym_inline] = ACTIONS(2775), - [anon_sym___inline] = ACTIONS(2775), - [anon_sym___inline__] = ACTIONS(2775), - [anon_sym___forceinline] = ACTIONS(2775), - [anon_sym_thread_local] = ACTIONS(2775), - [anon_sym___thread] = ACTIONS(2775), - [anon_sym_const] = ACTIONS(2775), - [anon_sym_constexpr] = ACTIONS(2775), - [anon_sym_volatile] = ACTIONS(2775), - [anon_sym_restrict] = ACTIONS(2775), - [anon_sym___restrict__] = ACTIONS(2775), - [anon_sym__Atomic] = ACTIONS(2775), - [anon_sym__Noreturn] = ACTIONS(2775), - [anon_sym_noreturn] = ACTIONS(2775), - [anon_sym__Nonnull] = ACTIONS(2775), - [anon_sym_mutable] = ACTIONS(2775), - [anon_sym_constinit] = ACTIONS(2775), - [anon_sym_consteval] = ACTIONS(2775), - [anon_sym_alignas] = ACTIONS(2775), - [anon_sym__Alignas] = ACTIONS(2775), - [sym_primitive_type] = ACTIONS(2775), - [anon_sym_enum] = ACTIONS(2775), - [anon_sym_class] = ACTIONS(2775), - [anon_sym_struct] = ACTIONS(2775), - [anon_sym_union] = ACTIONS(2775), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2775), - [anon_sym_decltype] = ACTIONS(2775), - [anon_sym_explicit] = ACTIONS(2775), - [anon_sym_typename] = ACTIONS(2775), - [anon_sym_private] = ACTIONS(2775), - [anon_sym_template] = ACTIONS(2775), - [anon_sym_operator] = ACTIONS(2775), - [anon_sym_friend] = ACTIONS(2775), - [anon_sym_public] = ACTIONS(2775), - [anon_sym_protected] = ACTIONS(2775), - [anon_sym_static_assert] = ACTIONS(2775), + [2099] = { + [sym_identifier] = ACTIONS(2671), + [aux_sym_preproc_def_token1] = ACTIONS(2671), + [aux_sym_preproc_if_token1] = ACTIONS(2671), + [aux_sym_preproc_if_token2] = ACTIONS(2671), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2671), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2671), + [sym_preproc_directive] = ACTIONS(2671), + [anon_sym_LPAREN2] = ACTIONS(2673), + [anon_sym_TILDE] = ACTIONS(2673), + [anon_sym_STAR] = ACTIONS(2673), + [anon_sym_AMP_AMP] = ACTIONS(2673), + [anon_sym_AMP] = ACTIONS(2671), + [anon_sym_SEMI] = ACTIONS(2673), + [anon_sym___extension__] = ACTIONS(2671), + [anon_sym_typedef] = ACTIONS(2671), + [anon_sym_virtual] = ACTIONS(2671), + [anon_sym_extern] = ACTIONS(2671), + [anon_sym___attribute__] = ACTIONS(2671), + [anon_sym___attribute] = ACTIONS(2671), + [anon_sym_using] = ACTIONS(2671), + [anon_sym_COLON_COLON] = ACTIONS(2673), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2673), + [anon_sym___declspec] = ACTIONS(2671), + [anon_sym___based] = ACTIONS(2671), + [anon_sym_signed] = ACTIONS(2671), + [anon_sym_unsigned] = ACTIONS(2671), + [anon_sym_long] = ACTIONS(2671), + [anon_sym_short] = ACTIONS(2671), + [anon_sym_LBRACK] = ACTIONS(2671), + [anon_sym_static] = ACTIONS(2671), + [anon_sym_register] = ACTIONS(2671), + [anon_sym_inline] = ACTIONS(2671), + [anon_sym___inline] = ACTIONS(2671), + [anon_sym___inline__] = ACTIONS(2671), + [anon_sym___forceinline] = ACTIONS(2671), + [anon_sym_thread_local] = ACTIONS(2671), + [anon_sym___thread] = ACTIONS(2671), + [anon_sym_const] = ACTIONS(2671), + [anon_sym_constexpr] = ACTIONS(2671), + [anon_sym_volatile] = ACTIONS(2671), + [anon_sym_restrict] = ACTIONS(2671), + [anon_sym___restrict__] = ACTIONS(2671), + [anon_sym__Atomic] = ACTIONS(2671), + [anon_sym__Noreturn] = ACTIONS(2671), + [anon_sym_noreturn] = ACTIONS(2671), + [anon_sym__Nonnull] = ACTIONS(2671), + [anon_sym_mutable] = ACTIONS(2671), + [anon_sym_constinit] = ACTIONS(2671), + [anon_sym_consteval] = ACTIONS(2671), + [anon_sym_alignas] = ACTIONS(2671), + [anon_sym__Alignas] = ACTIONS(2671), + [sym_primitive_type] = ACTIONS(2671), + [anon_sym_enum] = ACTIONS(2671), + [anon_sym_class] = ACTIONS(2671), + [anon_sym_struct] = ACTIONS(2671), + [anon_sym_union] = ACTIONS(2671), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2671), + [anon_sym_decltype] = ACTIONS(2671), + [anon_sym_explicit] = ACTIONS(2671), + [anon_sym_typename] = ACTIONS(2671), + [anon_sym_private] = ACTIONS(2671), + [anon_sym_template] = ACTIONS(2671), + [anon_sym_operator] = ACTIONS(2671), + [anon_sym_friend] = ACTIONS(2671), + [anon_sym_public] = ACTIONS(2671), + [anon_sym_protected] = ACTIONS(2671), + [anon_sym_static_assert] = ACTIONS(2671), }, - [2032] = { - [sym_identifier] = ACTIONS(2779), - [aux_sym_preproc_def_token1] = ACTIONS(2779), - [aux_sym_preproc_if_token1] = ACTIONS(2779), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2779), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2779), - [sym_preproc_directive] = ACTIONS(2779), - [anon_sym_LPAREN2] = ACTIONS(2781), - [anon_sym_TILDE] = ACTIONS(2781), - [anon_sym_STAR] = ACTIONS(2781), - [anon_sym_AMP_AMP] = ACTIONS(2781), - [anon_sym_AMP] = ACTIONS(2779), - [anon_sym_SEMI] = ACTIONS(2781), - [anon_sym___extension__] = ACTIONS(2779), - [anon_sym_typedef] = ACTIONS(2779), - [anon_sym_virtual] = ACTIONS(2779), - [anon_sym_extern] = ACTIONS(2779), - [anon_sym___attribute__] = ACTIONS(2779), - [anon_sym___attribute] = ACTIONS(2779), - [anon_sym_using] = ACTIONS(2779), - [anon_sym_COLON_COLON] = ACTIONS(2781), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2781), - [anon_sym___declspec] = ACTIONS(2779), - [anon_sym___based] = ACTIONS(2779), - [anon_sym_RBRACE] = ACTIONS(2781), - [anon_sym_signed] = ACTIONS(2779), - [anon_sym_unsigned] = ACTIONS(2779), - [anon_sym_long] = ACTIONS(2779), - [anon_sym_short] = ACTIONS(2779), - [anon_sym_LBRACK] = ACTIONS(2779), - [anon_sym_static] = ACTIONS(2779), - [anon_sym_register] = ACTIONS(2779), - [anon_sym_inline] = ACTIONS(2779), - [anon_sym___inline] = ACTIONS(2779), - [anon_sym___inline__] = ACTIONS(2779), - [anon_sym___forceinline] = ACTIONS(2779), - [anon_sym_thread_local] = ACTIONS(2779), - [anon_sym___thread] = ACTIONS(2779), - [anon_sym_const] = ACTIONS(2779), - [anon_sym_constexpr] = ACTIONS(2779), - [anon_sym_volatile] = ACTIONS(2779), - [anon_sym_restrict] = ACTIONS(2779), - [anon_sym___restrict__] = ACTIONS(2779), - [anon_sym__Atomic] = ACTIONS(2779), - [anon_sym__Noreturn] = ACTIONS(2779), - [anon_sym_noreturn] = ACTIONS(2779), - [anon_sym__Nonnull] = ACTIONS(2779), - [anon_sym_mutable] = ACTIONS(2779), - [anon_sym_constinit] = ACTIONS(2779), - [anon_sym_consteval] = ACTIONS(2779), - [anon_sym_alignas] = ACTIONS(2779), - [anon_sym__Alignas] = ACTIONS(2779), - [sym_primitive_type] = ACTIONS(2779), - [anon_sym_enum] = ACTIONS(2779), - [anon_sym_class] = ACTIONS(2779), - [anon_sym_struct] = ACTIONS(2779), - [anon_sym_union] = ACTIONS(2779), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2779), - [anon_sym_decltype] = ACTIONS(2779), - [anon_sym_explicit] = ACTIONS(2779), - [anon_sym_typename] = ACTIONS(2779), - [anon_sym_private] = ACTIONS(2779), - [anon_sym_template] = ACTIONS(2779), - [anon_sym_operator] = ACTIONS(2779), - [anon_sym_friend] = ACTIONS(2779), - [anon_sym_public] = ACTIONS(2779), - [anon_sym_protected] = ACTIONS(2779), - [anon_sym_static_assert] = ACTIONS(2779), + [2100] = { + [sym_identifier] = ACTIONS(3091), + [aux_sym_preproc_def_token1] = ACTIONS(3091), + [aux_sym_preproc_if_token1] = ACTIONS(3091), + [aux_sym_preproc_if_token2] = ACTIONS(3091), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3091), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3091), + [sym_preproc_directive] = ACTIONS(3091), + [anon_sym_LPAREN2] = ACTIONS(3093), + [anon_sym_TILDE] = ACTIONS(3093), + [anon_sym_STAR] = ACTIONS(3093), + [anon_sym_AMP_AMP] = ACTIONS(3093), + [anon_sym_AMP] = ACTIONS(3091), + [anon_sym_SEMI] = ACTIONS(3093), + [anon_sym___extension__] = ACTIONS(3091), + [anon_sym_typedef] = ACTIONS(3091), + [anon_sym_virtual] = ACTIONS(3091), + [anon_sym_extern] = ACTIONS(3091), + [anon_sym___attribute__] = ACTIONS(3091), + [anon_sym___attribute] = ACTIONS(3091), + [anon_sym_using] = ACTIONS(3091), + [anon_sym_COLON_COLON] = ACTIONS(3093), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3093), + [anon_sym___declspec] = ACTIONS(3091), + [anon_sym___based] = ACTIONS(3091), + [anon_sym_signed] = ACTIONS(3091), + [anon_sym_unsigned] = ACTIONS(3091), + [anon_sym_long] = ACTIONS(3091), + [anon_sym_short] = ACTIONS(3091), + [anon_sym_LBRACK] = ACTIONS(3091), + [anon_sym_static] = ACTIONS(3091), + [anon_sym_register] = ACTIONS(3091), + [anon_sym_inline] = ACTIONS(3091), + [anon_sym___inline] = ACTIONS(3091), + [anon_sym___inline__] = ACTIONS(3091), + [anon_sym___forceinline] = ACTIONS(3091), + [anon_sym_thread_local] = ACTIONS(3091), + [anon_sym___thread] = ACTIONS(3091), + [anon_sym_const] = ACTIONS(3091), + [anon_sym_constexpr] = ACTIONS(3091), + [anon_sym_volatile] = ACTIONS(3091), + [anon_sym_restrict] = ACTIONS(3091), + [anon_sym___restrict__] = ACTIONS(3091), + [anon_sym__Atomic] = ACTIONS(3091), + [anon_sym__Noreturn] = ACTIONS(3091), + [anon_sym_noreturn] = ACTIONS(3091), + [anon_sym__Nonnull] = ACTIONS(3091), + [anon_sym_mutable] = ACTIONS(3091), + [anon_sym_constinit] = ACTIONS(3091), + [anon_sym_consteval] = ACTIONS(3091), + [anon_sym_alignas] = ACTIONS(3091), + [anon_sym__Alignas] = ACTIONS(3091), + [sym_primitive_type] = ACTIONS(3091), + [anon_sym_enum] = ACTIONS(3091), + [anon_sym_class] = ACTIONS(3091), + [anon_sym_struct] = ACTIONS(3091), + [anon_sym_union] = ACTIONS(3091), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3091), + [anon_sym_decltype] = ACTIONS(3091), + [anon_sym_explicit] = ACTIONS(3091), + [anon_sym_typename] = ACTIONS(3091), + [anon_sym_private] = ACTIONS(3091), + [anon_sym_template] = ACTIONS(3091), + [anon_sym_operator] = ACTIONS(3091), + [anon_sym_friend] = ACTIONS(3091), + [anon_sym_public] = ACTIONS(3091), + [anon_sym_protected] = ACTIONS(3091), + [anon_sym_static_assert] = ACTIONS(3091), }, - [2033] = { + [2101] = { [sym_identifier] = ACTIONS(2915), [aux_sym_preproc_def_token1] = ACTIONS(2915), [aux_sym_preproc_if_token1] = ACTIONS(2915), @@ -271225,147 +277652,287 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(2915), [anon_sym_static_assert] = ACTIONS(2915), }, - [2034] = { - [sym_string_literal] = STATE(1684), - [sym_raw_string_literal] = STATE(1684), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5914), - [anon_sym_COMMA] = ACTIONS(5914), - [anon_sym_RPAREN] = ACTIONS(5914), - [anon_sym_LPAREN2] = ACTIONS(5914), - [anon_sym_DASH] = ACTIONS(5912), - [anon_sym_PLUS] = ACTIONS(5912), - [anon_sym_STAR] = ACTIONS(5912), - [anon_sym_SLASH] = ACTIONS(5912), - [anon_sym_PERCENT] = ACTIONS(5912), - [anon_sym_PIPE_PIPE] = ACTIONS(5914), - [anon_sym_AMP_AMP] = ACTIONS(5914), - [anon_sym_PIPE] = ACTIONS(5912), - [anon_sym_CARET] = ACTIONS(5912), - [anon_sym_AMP] = ACTIONS(5912), - [anon_sym_EQ_EQ] = ACTIONS(5914), - [anon_sym_BANG_EQ] = ACTIONS(5914), - [anon_sym_GT] = ACTIONS(5912), - [anon_sym_GT_EQ] = ACTIONS(5914), - [anon_sym_LT_EQ] = ACTIONS(5912), - [anon_sym_LT] = ACTIONS(5912), - [anon_sym_LT_LT] = ACTIONS(5912), - [anon_sym_GT_GT] = ACTIONS(5912), - [anon_sym_SEMI] = ACTIONS(5914), - [anon_sym_COLON] = ACTIONS(5914), - [anon_sym_RBRACE] = ACTIONS(5914), - [anon_sym_LBRACK] = ACTIONS(5914), - [anon_sym_RBRACK] = ACTIONS(5914), - [anon_sym_EQ] = ACTIONS(5912), - [anon_sym_QMARK] = ACTIONS(5914), - [anon_sym_STAR_EQ] = ACTIONS(5914), - [anon_sym_SLASH_EQ] = ACTIONS(5914), - [anon_sym_PERCENT_EQ] = ACTIONS(5914), - [anon_sym_PLUS_EQ] = ACTIONS(5914), - [anon_sym_DASH_EQ] = ACTIONS(5914), - [anon_sym_LT_LT_EQ] = ACTIONS(5914), - [anon_sym_GT_GT_EQ] = ACTIONS(5914), - [anon_sym_AMP_EQ] = ACTIONS(5914), - [anon_sym_CARET_EQ] = ACTIONS(5914), - [anon_sym_PIPE_EQ] = ACTIONS(5914), - [anon_sym_and_eq] = ACTIONS(5912), - [anon_sym_or_eq] = ACTIONS(5912), - [anon_sym_xor_eq] = ACTIONS(5912), - [anon_sym_LT_EQ_GT] = ACTIONS(5914), - [anon_sym_or] = ACTIONS(5912), - [anon_sym_and] = ACTIONS(5912), - [anon_sym_bitor] = ACTIONS(5912), - [anon_sym_xor] = ACTIONS(5912), - [anon_sym_bitand] = ACTIONS(5912), - [anon_sym_not_eq] = ACTIONS(5912), - [anon_sym_DASH_DASH] = ACTIONS(5914), - [anon_sym_PLUS_PLUS] = ACTIONS(5914), - [anon_sym_DOT] = ACTIONS(5912), - [anon_sym_DOT_STAR] = ACTIONS(5914), - [anon_sym_DASH_GT] = ACTIONS(5914), - [anon_sym_L_DQUOTE] = ACTIONS(1972), - [anon_sym_u_DQUOTE] = ACTIONS(1972), - [anon_sym_U_DQUOTE] = ACTIONS(1972), - [anon_sym_u8_DQUOTE] = ACTIONS(1972), - [anon_sym_DQUOTE] = ACTIONS(1972), + [2102] = { + [sym_identifier] = ACTIONS(5573), + [aux_sym_preproc_def_token1] = ACTIONS(5573), + [aux_sym_preproc_if_token1] = ACTIONS(5573), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5573), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5573), + [sym_preproc_directive] = ACTIONS(5573), + [anon_sym_LPAREN2] = ACTIONS(5575), + [anon_sym_TILDE] = ACTIONS(5575), + [anon_sym_STAR] = ACTIONS(5575), + [anon_sym_AMP_AMP] = ACTIONS(5575), + [anon_sym_AMP] = ACTIONS(5573), + [anon_sym_SEMI] = ACTIONS(5575), + [anon_sym___extension__] = ACTIONS(5573), + [anon_sym_typedef] = ACTIONS(5573), + [anon_sym_virtual] = ACTIONS(5573), + [anon_sym_extern] = ACTIONS(5573), + [anon_sym___attribute__] = ACTIONS(5573), + [anon_sym___attribute] = ACTIONS(5573), + [anon_sym_using] = ACTIONS(5573), + [anon_sym_COLON_COLON] = ACTIONS(5575), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5575), + [anon_sym___declspec] = ACTIONS(5573), + [anon_sym___based] = ACTIONS(5573), + [anon_sym_RBRACE] = ACTIONS(5575), + [anon_sym_signed] = ACTIONS(5573), + [anon_sym_unsigned] = ACTIONS(5573), + [anon_sym_long] = ACTIONS(5573), + [anon_sym_short] = ACTIONS(5573), + [anon_sym_LBRACK] = ACTIONS(5573), + [anon_sym_static] = ACTIONS(5573), + [anon_sym_register] = ACTIONS(5573), + [anon_sym_inline] = ACTIONS(5573), + [anon_sym___inline] = ACTIONS(5573), + [anon_sym___inline__] = ACTIONS(5573), + [anon_sym___forceinline] = ACTIONS(5573), + [anon_sym_thread_local] = ACTIONS(5573), + [anon_sym___thread] = ACTIONS(5573), + [anon_sym_const] = ACTIONS(5573), + [anon_sym_constexpr] = ACTIONS(5573), + [anon_sym_volatile] = ACTIONS(5573), + [anon_sym_restrict] = ACTIONS(5573), + [anon_sym___restrict__] = ACTIONS(5573), + [anon_sym__Atomic] = ACTIONS(5573), + [anon_sym__Noreturn] = ACTIONS(5573), + [anon_sym_noreturn] = ACTIONS(5573), + [anon_sym__Nonnull] = ACTIONS(5573), + [anon_sym_mutable] = ACTIONS(5573), + [anon_sym_constinit] = ACTIONS(5573), + [anon_sym_consteval] = ACTIONS(5573), + [anon_sym_alignas] = ACTIONS(5573), + [anon_sym__Alignas] = ACTIONS(5573), + [sym_primitive_type] = ACTIONS(5573), + [anon_sym_enum] = ACTIONS(5573), + [anon_sym_class] = ACTIONS(5573), + [anon_sym_struct] = ACTIONS(5573), + [anon_sym_union] = ACTIONS(5573), [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(1982), - [anon_sym_LR_DQUOTE] = ACTIONS(1982), - [anon_sym_uR_DQUOTE] = ACTIONS(1982), - [anon_sym_UR_DQUOTE] = ACTIONS(1982), - [anon_sym_u8R_DQUOTE] = ACTIONS(1982), - [sym_literal_suffix] = ACTIONS(5912), + [sym_auto] = ACTIONS(5573), + [anon_sym_decltype] = ACTIONS(5573), + [anon_sym_explicit] = ACTIONS(5573), + [anon_sym_typename] = ACTIONS(5573), + [anon_sym_private] = ACTIONS(5573), + [anon_sym_template] = ACTIONS(5573), + [anon_sym_operator] = ACTIONS(5573), + [anon_sym_friend] = ACTIONS(5573), + [anon_sym_public] = ACTIONS(5573), + [anon_sym_protected] = ACTIONS(5573), + [anon_sym_static_assert] = ACTIONS(5573), }, - [2035] = { - [sym_identifier] = ACTIONS(2919), - [aux_sym_preproc_def_token1] = ACTIONS(2919), - [aux_sym_preproc_if_token1] = ACTIONS(2919), - [aux_sym_preproc_if_token2] = ACTIONS(2919), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2919), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2919), - [sym_preproc_directive] = ACTIONS(2919), - [anon_sym_LPAREN2] = ACTIONS(2921), - [anon_sym_TILDE] = ACTIONS(2921), - [anon_sym_STAR] = ACTIONS(2921), - [anon_sym_AMP_AMP] = ACTIONS(2921), - [anon_sym_AMP] = ACTIONS(2919), - [anon_sym_SEMI] = ACTIONS(2921), - [anon_sym___extension__] = ACTIONS(2919), - [anon_sym_typedef] = ACTIONS(2919), - [anon_sym_virtual] = ACTIONS(2919), - [anon_sym_extern] = ACTIONS(2919), - [anon_sym___attribute__] = ACTIONS(2919), - [anon_sym___attribute] = ACTIONS(2919), - [anon_sym_using] = ACTIONS(2919), - [anon_sym_COLON_COLON] = ACTIONS(2921), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2921), - [anon_sym___declspec] = ACTIONS(2919), - [anon_sym___based] = ACTIONS(2919), - [anon_sym_signed] = ACTIONS(2919), - [anon_sym_unsigned] = ACTIONS(2919), - [anon_sym_long] = ACTIONS(2919), - [anon_sym_short] = ACTIONS(2919), - [anon_sym_LBRACK] = ACTIONS(2919), - [anon_sym_static] = ACTIONS(2919), - [anon_sym_register] = ACTIONS(2919), - [anon_sym_inline] = ACTIONS(2919), - [anon_sym___inline] = ACTIONS(2919), - [anon_sym___inline__] = ACTIONS(2919), - [anon_sym___forceinline] = ACTIONS(2919), - [anon_sym_thread_local] = ACTIONS(2919), - [anon_sym___thread] = ACTIONS(2919), - [anon_sym_const] = ACTIONS(2919), - [anon_sym_constexpr] = ACTIONS(2919), - [anon_sym_volatile] = ACTIONS(2919), - [anon_sym_restrict] = ACTIONS(2919), - [anon_sym___restrict__] = ACTIONS(2919), - [anon_sym__Atomic] = ACTIONS(2919), - [anon_sym__Noreturn] = ACTIONS(2919), - [anon_sym_noreturn] = ACTIONS(2919), - [anon_sym__Nonnull] = ACTIONS(2919), - [anon_sym_mutable] = ACTIONS(2919), - [anon_sym_constinit] = ACTIONS(2919), - [anon_sym_consteval] = ACTIONS(2919), - [anon_sym_alignas] = ACTIONS(2919), - [anon_sym__Alignas] = ACTIONS(2919), - [sym_primitive_type] = ACTIONS(2919), - [anon_sym_enum] = ACTIONS(2919), - [anon_sym_class] = ACTIONS(2919), - [anon_sym_struct] = ACTIONS(2919), - [anon_sym_union] = ACTIONS(2919), + [2103] = { + [sym_identifier] = ACTIONS(5593), + [aux_sym_preproc_def_token1] = ACTIONS(5593), + [aux_sym_preproc_if_token1] = ACTIONS(5593), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5593), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5593), + [sym_preproc_directive] = ACTIONS(5593), + [anon_sym_LPAREN2] = ACTIONS(5595), + [anon_sym_TILDE] = ACTIONS(5595), + [anon_sym_STAR] = ACTIONS(5595), + [anon_sym_AMP_AMP] = ACTIONS(5595), + [anon_sym_AMP] = ACTIONS(5593), + [anon_sym_SEMI] = ACTIONS(5595), + [anon_sym___extension__] = ACTIONS(5593), + [anon_sym_typedef] = ACTIONS(5593), + [anon_sym_virtual] = ACTIONS(5593), + [anon_sym_extern] = ACTIONS(5593), + [anon_sym___attribute__] = ACTIONS(5593), + [anon_sym___attribute] = ACTIONS(5593), + [anon_sym_using] = ACTIONS(5593), + [anon_sym_COLON_COLON] = ACTIONS(5595), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5595), + [anon_sym___declspec] = ACTIONS(5593), + [anon_sym___based] = ACTIONS(5593), + [anon_sym_RBRACE] = ACTIONS(5595), + [anon_sym_signed] = ACTIONS(5593), + [anon_sym_unsigned] = ACTIONS(5593), + [anon_sym_long] = ACTIONS(5593), + [anon_sym_short] = ACTIONS(5593), + [anon_sym_LBRACK] = ACTIONS(5593), + [anon_sym_static] = ACTIONS(5593), + [anon_sym_register] = ACTIONS(5593), + [anon_sym_inline] = ACTIONS(5593), + [anon_sym___inline] = ACTIONS(5593), + [anon_sym___inline__] = ACTIONS(5593), + [anon_sym___forceinline] = ACTIONS(5593), + [anon_sym_thread_local] = ACTIONS(5593), + [anon_sym___thread] = ACTIONS(5593), + [anon_sym_const] = ACTIONS(5593), + [anon_sym_constexpr] = ACTIONS(5593), + [anon_sym_volatile] = ACTIONS(5593), + [anon_sym_restrict] = ACTIONS(5593), + [anon_sym___restrict__] = ACTIONS(5593), + [anon_sym__Atomic] = ACTIONS(5593), + [anon_sym__Noreturn] = ACTIONS(5593), + [anon_sym_noreturn] = ACTIONS(5593), + [anon_sym__Nonnull] = ACTIONS(5593), + [anon_sym_mutable] = ACTIONS(5593), + [anon_sym_constinit] = ACTIONS(5593), + [anon_sym_consteval] = ACTIONS(5593), + [anon_sym_alignas] = ACTIONS(5593), + [anon_sym__Alignas] = ACTIONS(5593), + [sym_primitive_type] = ACTIONS(5593), + [anon_sym_enum] = ACTIONS(5593), + [anon_sym_class] = ACTIONS(5593), + [anon_sym_struct] = ACTIONS(5593), + [anon_sym_union] = ACTIONS(5593), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2919), - [anon_sym_decltype] = ACTIONS(2919), - [anon_sym_explicit] = ACTIONS(2919), - [anon_sym_typename] = ACTIONS(2919), - [anon_sym_private] = ACTIONS(2919), - [anon_sym_template] = ACTIONS(2919), - [anon_sym_operator] = ACTIONS(2919), - [anon_sym_friend] = ACTIONS(2919), - [anon_sym_public] = ACTIONS(2919), - [anon_sym_protected] = ACTIONS(2919), - [anon_sym_static_assert] = ACTIONS(2919), + [sym_auto] = ACTIONS(5593), + [anon_sym_decltype] = ACTIONS(5593), + [anon_sym_explicit] = ACTIONS(5593), + [anon_sym_typename] = ACTIONS(5593), + [anon_sym_private] = ACTIONS(5593), + [anon_sym_template] = ACTIONS(5593), + [anon_sym_operator] = ACTIONS(5593), + [anon_sym_friend] = ACTIONS(5593), + [anon_sym_public] = ACTIONS(5593), + [anon_sym_protected] = ACTIONS(5593), + [anon_sym_static_assert] = ACTIONS(5593), }, - [2036] = { + [2104] = { + [sym_identifier] = ACTIONS(3051), + [aux_sym_preproc_def_token1] = ACTIONS(3051), + [aux_sym_preproc_if_token1] = ACTIONS(3051), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3051), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3051), + [sym_preproc_directive] = ACTIONS(3051), + [anon_sym_LPAREN2] = ACTIONS(3053), + [anon_sym_TILDE] = ACTIONS(3053), + [anon_sym_STAR] = ACTIONS(3053), + [anon_sym_AMP_AMP] = ACTIONS(3053), + [anon_sym_AMP] = ACTIONS(3051), + [anon_sym_SEMI] = ACTIONS(3053), + [anon_sym___extension__] = ACTIONS(3051), + [anon_sym_typedef] = ACTIONS(3051), + [anon_sym_virtual] = ACTIONS(3051), + [anon_sym_extern] = ACTIONS(3051), + [anon_sym___attribute__] = ACTIONS(3051), + [anon_sym___attribute] = ACTIONS(3051), + [anon_sym_using] = ACTIONS(3051), + [anon_sym_COLON_COLON] = ACTIONS(3053), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3053), + [anon_sym___declspec] = ACTIONS(3051), + [anon_sym___based] = ACTIONS(3051), + [anon_sym_RBRACE] = ACTIONS(3053), + [anon_sym_signed] = ACTIONS(3051), + [anon_sym_unsigned] = ACTIONS(3051), + [anon_sym_long] = ACTIONS(3051), + [anon_sym_short] = ACTIONS(3051), + [anon_sym_LBRACK] = ACTIONS(3051), + [anon_sym_static] = ACTIONS(3051), + [anon_sym_register] = ACTIONS(3051), + [anon_sym_inline] = ACTIONS(3051), + [anon_sym___inline] = ACTIONS(3051), + [anon_sym___inline__] = ACTIONS(3051), + [anon_sym___forceinline] = ACTIONS(3051), + [anon_sym_thread_local] = ACTIONS(3051), + [anon_sym___thread] = ACTIONS(3051), + [anon_sym_const] = ACTIONS(3051), + [anon_sym_constexpr] = ACTIONS(3051), + [anon_sym_volatile] = ACTIONS(3051), + [anon_sym_restrict] = ACTIONS(3051), + [anon_sym___restrict__] = ACTIONS(3051), + [anon_sym__Atomic] = ACTIONS(3051), + [anon_sym__Noreturn] = ACTIONS(3051), + [anon_sym_noreturn] = ACTIONS(3051), + [anon_sym__Nonnull] = ACTIONS(3051), + [anon_sym_mutable] = ACTIONS(3051), + [anon_sym_constinit] = ACTIONS(3051), + [anon_sym_consteval] = ACTIONS(3051), + [anon_sym_alignas] = ACTIONS(3051), + [anon_sym__Alignas] = ACTIONS(3051), + [sym_primitive_type] = ACTIONS(3051), + [anon_sym_enum] = ACTIONS(3051), + [anon_sym_class] = ACTIONS(3051), + [anon_sym_struct] = ACTIONS(3051), + [anon_sym_union] = ACTIONS(3051), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3051), + [anon_sym_decltype] = ACTIONS(3051), + [anon_sym_explicit] = ACTIONS(3051), + [anon_sym_typename] = ACTIONS(3051), + [anon_sym_private] = ACTIONS(3051), + [anon_sym_template] = ACTIONS(3051), + [anon_sym_operator] = ACTIONS(3051), + [anon_sym_friend] = ACTIONS(3051), + [anon_sym_public] = ACTIONS(3051), + [anon_sym_protected] = ACTIONS(3051), + [anon_sym_static_assert] = ACTIONS(3051), + }, + [2105] = { + [sym_identifier] = ACTIONS(5577), + [aux_sym_preproc_def_token1] = ACTIONS(5577), + [aux_sym_preproc_if_token1] = ACTIONS(5577), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5577), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5577), + [sym_preproc_directive] = ACTIONS(5577), + [anon_sym_LPAREN2] = ACTIONS(5579), + [anon_sym_TILDE] = ACTIONS(5579), + [anon_sym_STAR] = ACTIONS(5579), + [anon_sym_AMP_AMP] = ACTIONS(5579), + [anon_sym_AMP] = ACTIONS(5577), + [anon_sym_SEMI] = ACTIONS(5579), + [anon_sym___extension__] = ACTIONS(5577), + [anon_sym_typedef] = ACTIONS(5577), + [anon_sym_virtual] = ACTIONS(5577), + [anon_sym_extern] = ACTIONS(5577), + [anon_sym___attribute__] = ACTIONS(5577), + [anon_sym___attribute] = ACTIONS(5577), + [anon_sym_using] = ACTIONS(5577), + [anon_sym_COLON_COLON] = ACTIONS(5579), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5579), + [anon_sym___declspec] = ACTIONS(5577), + [anon_sym___based] = ACTIONS(5577), + [anon_sym_RBRACE] = ACTIONS(5579), + [anon_sym_signed] = ACTIONS(5577), + [anon_sym_unsigned] = ACTIONS(5577), + [anon_sym_long] = ACTIONS(5577), + [anon_sym_short] = ACTIONS(5577), + [anon_sym_LBRACK] = ACTIONS(5577), + [anon_sym_static] = ACTIONS(5577), + [anon_sym_register] = ACTIONS(5577), + [anon_sym_inline] = ACTIONS(5577), + [anon_sym___inline] = ACTIONS(5577), + [anon_sym___inline__] = ACTIONS(5577), + [anon_sym___forceinline] = ACTIONS(5577), + [anon_sym_thread_local] = ACTIONS(5577), + [anon_sym___thread] = ACTIONS(5577), + [anon_sym_const] = ACTIONS(5577), + [anon_sym_constexpr] = ACTIONS(5577), + [anon_sym_volatile] = ACTIONS(5577), + [anon_sym_restrict] = ACTIONS(5577), + [anon_sym___restrict__] = ACTIONS(5577), + [anon_sym__Atomic] = ACTIONS(5577), + [anon_sym__Noreturn] = ACTIONS(5577), + [anon_sym_noreturn] = ACTIONS(5577), + [anon_sym__Nonnull] = ACTIONS(5577), + [anon_sym_mutable] = ACTIONS(5577), + [anon_sym_constinit] = ACTIONS(5577), + [anon_sym_consteval] = ACTIONS(5577), + [anon_sym_alignas] = ACTIONS(5577), + [anon_sym__Alignas] = ACTIONS(5577), + [sym_primitive_type] = ACTIONS(5577), + [anon_sym_enum] = ACTIONS(5577), + [anon_sym_class] = ACTIONS(5577), + [anon_sym_struct] = ACTIONS(5577), + [anon_sym_union] = ACTIONS(5577), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5577), + [anon_sym_decltype] = ACTIONS(5577), + [anon_sym_explicit] = ACTIONS(5577), + [anon_sym_typename] = ACTIONS(5577), + [anon_sym_private] = ACTIONS(5577), + [anon_sym_template] = ACTIONS(5577), + [anon_sym_operator] = ACTIONS(5577), + [anon_sym_friend] = ACTIONS(5577), + [anon_sym_public] = ACTIONS(5577), + [anon_sym_protected] = ACTIONS(5577), + [anon_sym_static_assert] = ACTIONS(5577), + }, + [2106] = { [sym_identifier] = ACTIONS(5581), [aux_sym_preproc_def_token1] = ACTIONS(5581), [aux_sym_preproc_if_token1] = ACTIONS(5581), @@ -271408,174 +277975,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_volatile] = ACTIONS(5581), [anon_sym_restrict] = ACTIONS(5581), [anon_sym___restrict__] = ACTIONS(5581), - [anon_sym__Atomic] = ACTIONS(5581), - [anon_sym__Noreturn] = ACTIONS(5581), - [anon_sym_noreturn] = ACTIONS(5581), - [anon_sym__Nonnull] = ACTIONS(5581), - [anon_sym_mutable] = ACTIONS(5581), - [anon_sym_constinit] = ACTIONS(5581), - [anon_sym_consteval] = ACTIONS(5581), - [anon_sym_alignas] = ACTIONS(5581), - [anon_sym__Alignas] = ACTIONS(5581), - [sym_primitive_type] = ACTIONS(5581), - [anon_sym_enum] = ACTIONS(5581), - [anon_sym_class] = ACTIONS(5581), - [anon_sym_struct] = ACTIONS(5581), - [anon_sym_union] = ACTIONS(5581), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5581), - [anon_sym_decltype] = ACTIONS(5581), - [anon_sym_explicit] = ACTIONS(5581), - [anon_sym_typename] = ACTIONS(5581), - [anon_sym_private] = ACTIONS(5581), - [anon_sym_template] = ACTIONS(5581), - [anon_sym_operator] = ACTIONS(5581), - [anon_sym_friend] = ACTIONS(5581), - [anon_sym_public] = ACTIONS(5581), - [anon_sym_protected] = ACTIONS(5581), - [anon_sym_static_assert] = ACTIONS(5581), - }, - [2037] = { - [sym_identifier] = ACTIONS(2923), - [aux_sym_preproc_def_token1] = ACTIONS(2923), - [aux_sym_preproc_if_token1] = ACTIONS(2923), - [aux_sym_preproc_if_token2] = ACTIONS(2923), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2923), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2923), - [sym_preproc_directive] = ACTIONS(2923), - [anon_sym_LPAREN2] = ACTIONS(2925), - [anon_sym_TILDE] = ACTIONS(2925), - [anon_sym_STAR] = ACTIONS(2925), - [anon_sym_AMP_AMP] = ACTIONS(2925), - [anon_sym_AMP] = ACTIONS(2923), - [anon_sym_SEMI] = ACTIONS(2925), - [anon_sym___extension__] = ACTIONS(2923), - [anon_sym_typedef] = ACTIONS(2923), - [anon_sym_virtual] = ACTIONS(2923), - [anon_sym_extern] = ACTIONS(2923), - [anon_sym___attribute__] = ACTIONS(2923), - [anon_sym___attribute] = ACTIONS(2923), - [anon_sym_using] = ACTIONS(2923), - [anon_sym_COLON_COLON] = ACTIONS(2925), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2925), - [anon_sym___declspec] = ACTIONS(2923), - [anon_sym___based] = ACTIONS(2923), - [anon_sym_signed] = ACTIONS(2923), - [anon_sym_unsigned] = ACTIONS(2923), - [anon_sym_long] = ACTIONS(2923), - [anon_sym_short] = ACTIONS(2923), - [anon_sym_LBRACK] = ACTIONS(2923), - [anon_sym_static] = ACTIONS(2923), - [anon_sym_register] = ACTIONS(2923), - [anon_sym_inline] = ACTIONS(2923), - [anon_sym___inline] = ACTIONS(2923), - [anon_sym___inline__] = ACTIONS(2923), - [anon_sym___forceinline] = ACTIONS(2923), - [anon_sym_thread_local] = ACTIONS(2923), - [anon_sym___thread] = ACTIONS(2923), - [anon_sym_const] = ACTIONS(2923), - [anon_sym_constexpr] = ACTIONS(2923), - [anon_sym_volatile] = ACTIONS(2923), - [anon_sym_restrict] = ACTIONS(2923), - [anon_sym___restrict__] = ACTIONS(2923), - [anon_sym__Atomic] = ACTIONS(2923), - [anon_sym__Noreturn] = ACTIONS(2923), - [anon_sym_noreturn] = ACTIONS(2923), - [anon_sym__Nonnull] = ACTIONS(2923), - [anon_sym_mutable] = ACTIONS(2923), - [anon_sym_constinit] = ACTIONS(2923), - [anon_sym_consteval] = ACTIONS(2923), - [anon_sym_alignas] = ACTIONS(2923), - [anon_sym__Alignas] = ACTIONS(2923), - [sym_primitive_type] = ACTIONS(2923), - [anon_sym_enum] = ACTIONS(2923), - [anon_sym_class] = ACTIONS(2923), - [anon_sym_struct] = ACTIONS(2923), - [anon_sym_union] = ACTIONS(2923), + [anon_sym__Atomic] = ACTIONS(5581), + [anon_sym__Noreturn] = ACTIONS(5581), + [anon_sym_noreturn] = ACTIONS(5581), + [anon_sym__Nonnull] = ACTIONS(5581), + [anon_sym_mutable] = ACTIONS(5581), + [anon_sym_constinit] = ACTIONS(5581), + [anon_sym_consteval] = ACTIONS(5581), + [anon_sym_alignas] = ACTIONS(5581), + [anon_sym__Alignas] = ACTIONS(5581), + [sym_primitive_type] = ACTIONS(5581), + [anon_sym_enum] = ACTIONS(5581), + [anon_sym_class] = ACTIONS(5581), + [anon_sym_struct] = ACTIONS(5581), + [anon_sym_union] = ACTIONS(5581), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2923), - [anon_sym_decltype] = ACTIONS(2923), - [anon_sym_explicit] = ACTIONS(2923), - [anon_sym_typename] = ACTIONS(2923), - [anon_sym_private] = ACTIONS(2923), - [anon_sym_template] = ACTIONS(2923), - [anon_sym_operator] = ACTIONS(2923), - [anon_sym_friend] = ACTIONS(2923), - [anon_sym_public] = ACTIONS(2923), - [anon_sym_protected] = ACTIONS(2923), - [anon_sym_static_assert] = ACTIONS(2923), + [sym_auto] = ACTIONS(5581), + [anon_sym_decltype] = ACTIONS(5581), + [anon_sym_explicit] = ACTIONS(5581), + [anon_sym_typename] = ACTIONS(5581), + [anon_sym_private] = ACTIONS(5581), + [anon_sym_template] = ACTIONS(5581), + [anon_sym_operator] = ACTIONS(5581), + [anon_sym_friend] = ACTIONS(5581), + [anon_sym_public] = ACTIONS(5581), + [anon_sym_protected] = ACTIONS(5581), + [anon_sym_static_assert] = ACTIONS(5581), }, - [2038] = { - [sym_identifier] = ACTIONS(2927), - [aux_sym_preproc_def_token1] = ACTIONS(2927), - [aux_sym_preproc_if_token1] = ACTIONS(2927), - [aux_sym_preproc_if_token2] = ACTIONS(2927), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2927), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2927), - [sym_preproc_directive] = ACTIONS(2927), - [anon_sym_LPAREN2] = ACTIONS(2929), - [anon_sym_TILDE] = ACTIONS(2929), - [anon_sym_STAR] = ACTIONS(2929), - [anon_sym_AMP_AMP] = ACTIONS(2929), - [anon_sym_AMP] = ACTIONS(2927), - [anon_sym_SEMI] = ACTIONS(2929), - [anon_sym___extension__] = ACTIONS(2927), - [anon_sym_typedef] = ACTIONS(2927), - [anon_sym_virtual] = ACTIONS(2927), - [anon_sym_extern] = ACTIONS(2927), - [anon_sym___attribute__] = ACTIONS(2927), - [anon_sym___attribute] = ACTIONS(2927), - [anon_sym_using] = ACTIONS(2927), - [anon_sym_COLON_COLON] = ACTIONS(2929), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2929), - [anon_sym___declspec] = ACTIONS(2927), - [anon_sym___based] = ACTIONS(2927), - [anon_sym_signed] = ACTIONS(2927), - [anon_sym_unsigned] = ACTIONS(2927), - [anon_sym_long] = ACTIONS(2927), - [anon_sym_short] = ACTIONS(2927), - [anon_sym_LBRACK] = ACTIONS(2927), - [anon_sym_static] = ACTIONS(2927), - [anon_sym_register] = ACTIONS(2927), - [anon_sym_inline] = ACTIONS(2927), - [anon_sym___inline] = ACTIONS(2927), - [anon_sym___inline__] = ACTIONS(2927), - [anon_sym___forceinline] = ACTIONS(2927), - [anon_sym_thread_local] = ACTIONS(2927), - [anon_sym___thread] = ACTIONS(2927), - [anon_sym_const] = ACTIONS(2927), - [anon_sym_constexpr] = ACTIONS(2927), - [anon_sym_volatile] = ACTIONS(2927), - [anon_sym_restrict] = ACTIONS(2927), - [anon_sym___restrict__] = ACTIONS(2927), - [anon_sym__Atomic] = ACTIONS(2927), - [anon_sym__Noreturn] = ACTIONS(2927), - [anon_sym_noreturn] = ACTIONS(2927), - [anon_sym__Nonnull] = ACTIONS(2927), - [anon_sym_mutable] = ACTIONS(2927), - [anon_sym_constinit] = ACTIONS(2927), - [anon_sym_consteval] = ACTIONS(2927), - [anon_sym_alignas] = ACTIONS(2927), - [anon_sym__Alignas] = ACTIONS(2927), - [sym_primitive_type] = ACTIONS(2927), - [anon_sym_enum] = ACTIONS(2927), - [anon_sym_class] = ACTIONS(2927), - [anon_sym_struct] = ACTIONS(2927), - [anon_sym_union] = ACTIONS(2927), + [2107] = { + [sym_identifier] = ACTIONS(3075), + [aux_sym_preproc_def_token1] = ACTIONS(3075), + [aux_sym_preproc_if_token1] = ACTIONS(3075), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3075), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3075), + [sym_preproc_directive] = ACTIONS(3075), + [anon_sym_LPAREN2] = ACTIONS(3077), + [anon_sym_TILDE] = ACTIONS(3077), + [anon_sym_STAR] = ACTIONS(3077), + [anon_sym_AMP_AMP] = ACTIONS(3077), + [anon_sym_AMP] = ACTIONS(3075), + [anon_sym_SEMI] = ACTIONS(3077), + [anon_sym___extension__] = ACTIONS(3075), + [anon_sym_typedef] = ACTIONS(3075), + [anon_sym_virtual] = ACTIONS(3075), + [anon_sym_extern] = ACTIONS(3075), + [anon_sym___attribute__] = ACTIONS(3075), + [anon_sym___attribute] = ACTIONS(3075), + [anon_sym_using] = ACTIONS(3075), + [anon_sym_COLON_COLON] = ACTIONS(3077), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3077), + [anon_sym___declspec] = ACTIONS(3075), + [anon_sym___based] = ACTIONS(3075), + [anon_sym_RBRACE] = ACTIONS(3077), + [anon_sym_signed] = ACTIONS(3075), + [anon_sym_unsigned] = ACTIONS(3075), + [anon_sym_long] = ACTIONS(3075), + [anon_sym_short] = ACTIONS(3075), + [anon_sym_LBRACK] = ACTIONS(3075), + [anon_sym_static] = ACTIONS(3075), + [anon_sym_register] = ACTIONS(3075), + [anon_sym_inline] = ACTIONS(3075), + [anon_sym___inline] = ACTIONS(3075), + [anon_sym___inline__] = ACTIONS(3075), + [anon_sym___forceinline] = ACTIONS(3075), + [anon_sym_thread_local] = ACTIONS(3075), + [anon_sym___thread] = ACTIONS(3075), + [anon_sym_const] = ACTIONS(3075), + [anon_sym_constexpr] = ACTIONS(3075), + [anon_sym_volatile] = ACTIONS(3075), + [anon_sym_restrict] = ACTIONS(3075), + [anon_sym___restrict__] = ACTIONS(3075), + [anon_sym__Atomic] = ACTIONS(3075), + [anon_sym__Noreturn] = ACTIONS(3075), + [anon_sym_noreturn] = ACTIONS(3075), + [anon_sym__Nonnull] = ACTIONS(3075), + [anon_sym_mutable] = ACTIONS(3075), + [anon_sym_constinit] = ACTIONS(3075), + [anon_sym_consteval] = ACTIONS(3075), + [anon_sym_alignas] = ACTIONS(3075), + [anon_sym__Alignas] = ACTIONS(3075), + [sym_primitive_type] = ACTIONS(3075), + [anon_sym_enum] = ACTIONS(3075), + [anon_sym_class] = ACTIONS(3075), + [anon_sym_struct] = ACTIONS(3075), + [anon_sym_union] = ACTIONS(3075), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2927), - [anon_sym_decltype] = ACTIONS(2927), - [anon_sym_explicit] = ACTIONS(2927), - [anon_sym_typename] = ACTIONS(2927), - [anon_sym_private] = ACTIONS(2927), - [anon_sym_template] = ACTIONS(2927), - [anon_sym_operator] = ACTIONS(2927), - [anon_sym_friend] = ACTIONS(2927), - [anon_sym_public] = ACTIONS(2927), - [anon_sym_protected] = ACTIONS(2927), - [anon_sym_static_assert] = ACTIONS(2927), + [sym_auto] = ACTIONS(3075), + [anon_sym_decltype] = ACTIONS(3075), + [anon_sym_explicit] = ACTIONS(3075), + [anon_sym_typename] = ACTIONS(3075), + [anon_sym_private] = ACTIONS(3075), + [anon_sym_template] = ACTIONS(3075), + [anon_sym_operator] = ACTIONS(3075), + [anon_sym_friend] = ACTIONS(3075), + [anon_sym_public] = ACTIONS(3075), + [anon_sym_protected] = ACTIONS(3075), + [anon_sym_static_assert] = ACTIONS(3075), }, - [2039] = { + [2108] = { [sym_identifier] = ACTIONS(2787), [aux_sym_preproc_def_token1] = ACTIONS(2787), [aux_sym_preproc_if_token1] = ACTIONS(2787), @@ -271645,1507 +278142,877 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(2787), [anon_sym_static_assert] = ACTIONS(2787), }, - [2040] = { - [sym_identifier] = ACTIONS(5617), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5619), - [anon_sym_COMMA] = ACTIONS(5619), - [anon_sym_RPAREN] = ACTIONS(5619), - [aux_sym_preproc_if_token2] = ACTIONS(5619), - [aux_sym_preproc_else_token1] = ACTIONS(5619), - [aux_sym_preproc_elif_token1] = ACTIONS(5617), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5619), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5619), - [anon_sym_LPAREN2] = ACTIONS(5619), - [anon_sym_DASH] = ACTIONS(5617), - [anon_sym_PLUS] = ACTIONS(5617), - [anon_sym_STAR] = ACTIONS(5617), - [anon_sym_SLASH] = ACTIONS(5617), - [anon_sym_PERCENT] = ACTIONS(5617), - [anon_sym_PIPE_PIPE] = ACTIONS(5619), - [anon_sym_AMP_AMP] = ACTIONS(5619), - [anon_sym_PIPE] = ACTIONS(5617), - [anon_sym_CARET] = ACTIONS(5617), - [anon_sym_AMP] = ACTIONS(5617), - [anon_sym_EQ_EQ] = ACTIONS(5619), - [anon_sym_BANG_EQ] = ACTIONS(5619), - [anon_sym_GT] = ACTIONS(5617), - [anon_sym_GT_EQ] = ACTIONS(5619), - [anon_sym_LT_EQ] = ACTIONS(5617), - [anon_sym_LT] = ACTIONS(5617), - [anon_sym_LT_LT] = ACTIONS(5617), - [anon_sym_GT_GT] = ACTIONS(5617), - [anon_sym_SEMI] = ACTIONS(5619), - [anon_sym___attribute__] = ACTIONS(5617), - [anon_sym___attribute] = ACTIONS(5617), - [anon_sym_COLON] = ACTIONS(5619), - [anon_sym_LBRACE] = ACTIONS(5619), - [anon_sym_RBRACE] = ACTIONS(5619), - [anon_sym_LBRACK] = ACTIONS(5619), - [anon_sym_RBRACK] = ACTIONS(5619), - [anon_sym_EQ] = ACTIONS(5617), - [anon_sym_QMARK] = ACTIONS(5619), - [anon_sym_STAR_EQ] = ACTIONS(5619), - [anon_sym_SLASH_EQ] = ACTIONS(5619), - [anon_sym_PERCENT_EQ] = ACTIONS(5619), - [anon_sym_PLUS_EQ] = ACTIONS(5619), - [anon_sym_DASH_EQ] = ACTIONS(5619), - [anon_sym_LT_LT_EQ] = ACTIONS(5619), - [anon_sym_GT_GT_EQ] = ACTIONS(5619), - [anon_sym_AMP_EQ] = ACTIONS(5619), - [anon_sym_CARET_EQ] = ACTIONS(5619), - [anon_sym_PIPE_EQ] = ACTIONS(5619), - [anon_sym_and_eq] = ACTIONS(5617), - [anon_sym_or_eq] = ACTIONS(5617), - [anon_sym_xor_eq] = ACTIONS(5617), - [anon_sym_LT_EQ_GT] = ACTIONS(5619), - [anon_sym_or] = ACTIONS(5617), - [anon_sym_and] = ACTIONS(5617), - [anon_sym_bitor] = ACTIONS(5617), - [anon_sym_xor] = ACTIONS(5617), - [anon_sym_bitand] = ACTIONS(5617), - [anon_sym_not_eq] = ACTIONS(5617), - [anon_sym_DASH_DASH] = ACTIONS(5619), - [anon_sym_PLUS_PLUS] = ACTIONS(5619), - [anon_sym_DOT] = ACTIONS(5617), - [anon_sym_DOT_STAR] = ACTIONS(5619), - [anon_sym_DASH_GT] = ACTIONS(5619), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5617), - [anon_sym_decltype] = ACTIONS(5617), - [anon_sym_final] = ACTIONS(5617), - [anon_sym_override] = ACTIONS(5617), - }, - [2041] = { - [sym_identifier] = ACTIONS(2851), - [aux_sym_preproc_def_token1] = ACTIONS(2851), - [aux_sym_preproc_if_token1] = ACTIONS(2851), - [aux_sym_preproc_if_token2] = ACTIONS(2851), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2851), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2851), - [sym_preproc_directive] = ACTIONS(2851), - [anon_sym_LPAREN2] = ACTIONS(2853), - [anon_sym_TILDE] = ACTIONS(2853), - [anon_sym_STAR] = ACTIONS(2853), - [anon_sym_AMP_AMP] = ACTIONS(2853), - [anon_sym_AMP] = ACTIONS(2851), - [anon_sym_SEMI] = ACTIONS(2853), - [anon_sym___extension__] = ACTIONS(2851), - [anon_sym_typedef] = ACTIONS(2851), - [anon_sym_virtual] = ACTIONS(2851), - [anon_sym_extern] = ACTIONS(2851), - [anon_sym___attribute__] = ACTIONS(2851), - [anon_sym___attribute] = ACTIONS(2851), - [anon_sym_using] = ACTIONS(2851), - [anon_sym_COLON_COLON] = ACTIONS(2853), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2853), - [anon_sym___declspec] = ACTIONS(2851), - [anon_sym___based] = ACTIONS(2851), - [anon_sym_signed] = ACTIONS(2851), - [anon_sym_unsigned] = ACTIONS(2851), - [anon_sym_long] = ACTIONS(2851), - [anon_sym_short] = ACTIONS(2851), - [anon_sym_LBRACK] = ACTIONS(2851), - [anon_sym_static] = ACTIONS(2851), - [anon_sym_register] = ACTIONS(2851), - [anon_sym_inline] = ACTIONS(2851), - [anon_sym___inline] = ACTIONS(2851), - [anon_sym___inline__] = ACTIONS(2851), - [anon_sym___forceinline] = ACTIONS(2851), - [anon_sym_thread_local] = ACTIONS(2851), - [anon_sym___thread] = ACTIONS(2851), - [anon_sym_const] = ACTIONS(2851), - [anon_sym_constexpr] = ACTIONS(2851), - [anon_sym_volatile] = ACTIONS(2851), - [anon_sym_restrict] = ACTIONS(2851), - [anon_sym___restrict__] = ACTIONS(2851), - [anon_sym__Atomic] = ACTIONS(2851), - [anon_sym__Noreturn] = ACTIONS(2851), - [anon_sym_noreturn] = ACTIONS(2851), - [anon_sym__Nonnull] = ACTIONS(2851), - [anon_sym_mutable] = ACTIONS(2851), - [anon_sym_constinit] = ACTIONS(2851), - [anon_sym_consteval] = ACTIONS(2851), - [anon_sym_alignas] = ACTIONS(2851), - [anon_sym__Alignas] = ACTIONS(2851), - [sym_primitive_type] = ACTIONS(2851), - [anon_sym_enum] = ACTIONS(2851), - [anon_sym_class] = ACTIONS(2851), - [anon_sym_struct] = ACTIONS(2851), - [anon_sym_union] = ACTIONS(2851), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2851), - [anon_sym_decltype] = ACTIONS(2851), - [anon_sym_explicit] = ACTIONS(2851), - [anon_sym_typename] = ACTIONS(2851), - [anon_sym_private] = ACTIONS(2851), - [anon_sym_template] = ACTIONS(2851), - [anon_sym_operator] = ACTIONS(2851), - [anon_sym_friend] = ACTIONS(2851), - [anon_sym_public] = ACTIONS(2851), - [anon_sym_protected] = ACTIONS(2851), - [anon_sym_static_assert] = ACTIONS(2851), - }, - [2042] = { - [sym_identifier] = ACTIONS(2799), - [aux_sym_preproc_def_token1] = ACTIONS(2799), - [aux_sym_preproc_if_token1] = ACTIONS(2799), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2799), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2799), - [sym_preproc_directive] = ACTIONS(2799), - [anon_sym_LPAREN2] = ACTIONS(2801), - [anon_sym_TILDE] = ACTIONS(2801), - [anon_sym_STAR] = ACTIONS(2801), - [anon_sym_AMP_AMP] = ACTIONS(2801), - [anon_sym_AMP] = ACTIONS(2799), - [anon_sym_SEMI] = ACTIONS(2801), - [anon_sym___extension__] = ACTIONS(2799), - [anon_sym_typedef] = ACTIONS(2799), - [anon_sym_virtual] = ACTIONS(2799), - [anon_sym_extern] = ACTIONS(2799), - [anon_sym___attribute__] = ACTIONS(2799), - [anon_sym___attribute] = ACTIONS(2799), - [anon_sym_using] = ACTIONS(2799), - [anon_sym_COLON_COLON] = ACTIONS(2801), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2801), - [anon_sym___declspec] = ACTIONS(2799), - [anon_sym___based] = ACTIONS(2799), - [anon_sym_RBRACE] = ACTIONS(2801), - [anon_sym_signed] = ACTIONS(2799), - [anon_sym_unsigned] = ACTIONS(2799), - [anon_sym_long] = ACTIONS(2799), - [anon_sym_short] = ACTIONS(2799), - [anon_sym_LBRACK] = ACTIONS(2799), - [anon_sym_static] = ACTIONS(2799), - [anon_sym_register] = ACTIONS(2799), - [anon_sym_inline] = ACTIONS(2799), - [anon_sym___inline] = ACTIONS(2799), - [anon_sym___inline__] = ACTIONS(2799), - [anon_sym___forceinline] = ACTIONS(2799), - [anon_sym_thread_local] = ACTIONS(2799), - [anon_sym___thread] = ACTIONS(2799), - [anon_sym_const] = ACTIONS(2799), - [anon_sym_constexpr] = ACTIONS(2799), - [anon_sym_volatile] = ACTIONS(2799), - [anon_sym_restrict] = ACTIONS(2799), - [anon_sym___restrict__] = ACTIONS(2799), - [anon_sym__Atomic] = ACTIONS(2799), - [anon_sym__Noreturn] = ACTIONS(2799), - [anon_sym_noreturn] = ACTIONS(2799), - [anon_sym__Nonnull] = ACTIONS(2799), - [anon_sym_mutable] = ACTIONS(2799), - [anon_sym_constinit] = ACTIONS(2799), - [anon_sym_consteval] = ACTIONS(2799), - [anon_sym_alignas] = ACTIONS(2799), - [anon_sym__Alignas] = ACTIONS(2799), - [sym_primitive_type] = ACTIONS(2799), - [anon_sym_enum] = ACTIONS(2799), - [anon_sym_class] = ACTIONS(2799), - [anon_sym_struct] = ACTIONS(2799), - [anon_sym_union] = ACTIONS(2799), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2799), - [anon_sym_decltype] = ACTIONS(2799), - [anon_sym_explicit] = ACTIONS(2799), - [anon_sym_typename] = ACTIONS(2799), - [anon_sym_private] = ACTIONS(2799), - [anon_sym_template] = ACTIONS(2799), - [anon_sym_operator] = ACTIONS(2799), - [anon_sym_friend] = ACTIONS(2799), - [anon_sym_public] = ACTIONS(2799), - [anon_sym_protected] = ACTIONS(2799), - [anon_sym_static_assert] = ACTIONS(2799), - }, - [2043] = { - [sym_identifier] = ACTIONS(2807), - [aux_sym_preproc_def_token1] = ACTIONS(2807), - [aux_sym_preproc_if_token1] = ACTIONS(2807), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2807), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2807), - [sym_preproc_directive] = ACTIONS(2807), - [anon_sym_LPAREN2] = ACTIONS(2809), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_STAR] = ACTIONS(2809), - [anon_sym_AMP_AMP] = ACTIONS(2809), - [anon_sym_AMP] = ACTIONS(2807), - [anon_sym_SEMI] = ACTIONS(2809), - [anon_sym___extension__] = ACTIONS(2807), - [anon_sym_typedef] = ACTIONS(2807), - [anon_sym_virtual] = ACTIONS(2807), - [anon_sym_extern] = ACTIONS(2807), - [anon_sym___attribute__] = ACTIONS(2807), - [anon_sym___attribute] = ACTIONS(2807), - [anon_sym_using] = ACTIONS(2807), - [anon_sym_COLON_COLON] = ACTIONS(2809), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2809), - [anon_sym___declspec] = ACTIONS(2807), - [anon_sym___based] = ACTIONS(2807), - [anon_sym_RBRACE] = ACTIONS(2809), - [anon_sym_signed] = ACTIONS(2807), - [anon_sym_unsigned] = ACTIONS(2807), - [anon_sym_long] = ACTIONS(2807), - [anon_sym_short] = ACTIONS(2807), - [anon_sym_LBRACK] = ACTIONS(2807), - [anon_sym_static] = ACTIONS(2807), - [anon_sym_register] = ACTIONS(2807), - [anon_sym_inline] = ACTIONS(2807), - [anon_sym___inline] = ACTIONS(2807), - [anon_sym___inline__] = ACTIONS(2807), - [anon_sym___forceinline] = ACTIONS(2807), - [anon_sym_thread_local] = ACTIONS(2807), - [anon_sym___thread] = ACTIONS(2807), - [anon_sym_const] = ACTIONS(2807), - [anon_sym_constexpr] = ACTIONS(2807), - [anon_sym_volatile] = ACTIONS(2807), - [anon_sym_restrict] = ACTIONS(2807), - [anon_sym___restrict__] = ACTIONS(2807), - [anon_sym__Atomic] = ACTIONS(2807), - [anon_sym__Noreturn] = ACTIONS(2807), - [anon_sym_noreturn] = ACTIONS(2807), - [anon_sym__Nonnull] = ACTIONS(2807), - [anon_sym_mutable] = ACTIONS(2807), - [anon_sym_constinit] = ACTIONS(2807), - [anon_sym_consteval] = ACTIONS(2807), - [anon_sym_alignas] = ACTIONS(2807), - [anon_sym__Alignas] = ACTIONS(2807), - [sym_primitive_type] = ACTIONS(2807), - [anon_sym_enum] = ACTIONS(2807), - [anon_sym_class] = ACTIONS(2807), - [anon_sym_struct] = ACTIONS(2807), - [anon_sym_union] = ACTIONS(2807), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2807), - [anon_sym_decltype] = ACTIONS(2807), - [anon_sym_explicit] = ACTIONS(2807), - [anon_sym_typename] = ACTIONS(2807), - [anon_sym_private] = ACTIONS(2807), - [anon_sym_template] = ACTIONS(2807), - [anon_sym_operator] = ACTIONS(2807), - [anon_sym_friend] = ACTIONS(2807), - [anon_sym_public] = ACTIONS(2807), - [anon_sym_protected] = ACTIONS(2807), - [anon_sym_static_assert] = ACTIONS(2807), - }, - [2044] = { - [sym_identifier] = ACTIONS(2931), - [aux_sym_preproc_def_token1] = ACTIONS(2931), - [aux_sym_preproc_if_token1] = ACTIONS(2931), - [aux_sym_preproc_if_token2] = ACTIONS(2931), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2931), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2931), - [sym_preproc_directive] = ACTIONS(2931), - [anon_sym_LPAREN2] = ACTIONS(2933), - [anon_sym_TILDE] = ACTIONS(2933), - [anon_sym_STAR] = ACTIONS(2933), - [anon_sym_AMP_AMP] = ACTIONS(2933), - [anon_sym_AMP] = ACTIONS(2931), - [anon_sym_SEMI] = ACTIONS(2933), - [anon_sym___extension__] = ACTIONS(2931), - [anon_sym_typedef] = ACTIONS(2931), - [anon_sym_virtual] = ACTIONS(2931), - [anon_sym_extern] = ACTIONS(2931), - [anon_sym___attribute__] = ACTIONS(2931), - [anon_sym___attribute] = ACTIONS(2931), - [anon_sym_using] = ACTIONS(2931), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2933), - [anon_sym___declspec] = ACTIONS(2931), - [anon_sym___based] = ACTIONS(2931), - [anon_sym_signed] = ACTIONS(2931), - [anon_sym_unsigned] = ACTIONS(2931), - [anon_sym_long] = ACTIONS(2931), - [anon_sym_short] = ACTIONS(2931), - [anon_sym_LBRACK] = ACTIONS(2931), - [anon_sym_static] = ACTIONS(2931), - [anon_sym_register] = ACTIONS(2931), - [anon_sym_inline] = ACTIONS(2931), - [anon_sym___inline] = ACTIONS(2931), - [anon_sym___inline__] = ACTIONS(2931), - [anon_sym___forceinline] = ACTIONS(2931), - [anon_sym_thread_local] = ACTIONS(2931), - [anon_sym___thread] = ACTIONS(2931), - [anon_sym_const] = ACTIONS(2931), - [anon_sym_constexpr] = ACTIONS(2931), - [anon_sym_volatile] = ACTIONS(2931), - [anon_sym_restrict] = ACTIONS(2931), - [anon_sym___restrict__] = ACTIONS(2931), - [anon_sym__Atomic] = ACTIONS(2931), - [anon_sym__Noreturn] = ACTIONS(2931), - [anon_sym_noreturn] = ACTIONS(2931), - [anon_sym__Nonnull] = ACTIONS(2931), - [anon_sym_mutable] = ACTIONS(2931), - [anon_sym_constinit] = ACTIONS(2931), - [anon_sym_consteval] = ACTIONS(2931), - [anon_sym_alignas] = ACTIONS(2931), - [anon_sym__Alignas] = ACTIONS(2931), - [sym_primitive_type] = ACTIONS(2931), - [anon_sym_enum] = ACTIONS(2931), - [anon_sym_class] = ACTIONS(2931), - [anon_sym_struct] = ACTIONS(2931), - [anon_sym_union] = ACTIONS(2931), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2931), - [anon_sym_decltype] = ACTIONS(2931), - [anon_sym_explicit] = ACTIONS(2931), - [anon_sym_typename] = ACTIONS(2931), - [anon_sym_private] = ACTIONS(2931), - [anon_sym_template] = ACTIONS(2931), - [anon_sym_operator] = ACTIONS(2931), - [anon_sym_friend] = ACTIONS(2931), - [anon_sym_public] = ACTIONS(2931), - [anon_sym_protected] = ACTIONS(2931), - [anon_sym_static_assert] = ACTIONS(2931), - }, - [2045] = { - [sym_identifier] = ACTIONS(5505), - [aux_sym_preproc_def_token1] = ACTIONS(5505), - [aux_sym_preproc_if_token1] = ACTIONS(5505), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5505), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5505), - [sym_preproc_directive] = ACTIONS(5505), - [anon_sym_LPAREN2] = ACTIONS(5507), - [anon_sym_TILDE] = ACTIONS(5507), - [anon_sym_STAR] = ACTIONS(5507), - [anon_sym_AMP_AMP] = ACTIONS(5507), - [anon_sym_AMP] = ACTIONS(5505), - [anon_sym_SEMI] = ACTIONS(5507), - [anon_sym___extension__] = ACTIONS(5505), - [anon_sym_typedef] = ACTIONS(5505), - [anon_sym_virtual] = ACTIONS(5505), - [anon_sym_extern] = ACTIONS(5505), - [anon_sym___attribute__] = ACTIONS(5505), - [anon_sym___attribute] = ACTIONS(5505), - [anon_sym_using] = ACTIONS(5505), - [anon_sym_COLON_COLON] = ACTIONS(5507), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5507), - [anon_sym___declspec] = ACTIONS(5505), - [anon_sym___based] = ACTIONS(5505), - [anon_sym_RBRACE] = ACTIONS(5507), - [anon_sym_signed] = ACTIONS(5505), - [anon_sym_unsigned] = ACTIONS(5505), - [anon_sym_long] = ACTIONS(5505), - [anon_sym_short] = ACTIONS(5505), - [anon_sym_LBRACK] = ACTIONS(5505), - [anon_sym_static] = ACTIONS(5505), - [anon_sym_register] = ACTIONS(5505), - [anon_sym_inline] = ACTIONS(5505), - [anon_sym___inline] = ACTIONS(5505), - [anon_sym___inline__] = ACTIONS(5505), - [anon_sym___forceinline] = ACTIONS(5505), - [anon_sym_thread_local] = ACTIONS(5505), - [anon_sym___thread] = ACTIONS(5505), - [anon_sym_const] = ACTIONS(5505), - [anon_sym_constexpr] = ACTIONS(5505), - [anon_sym_volatile] = ACTIONS(5505), - [anon_sym_restrict] = ACTIONS(5505), - [anon_sym___restrict__] = ACTIONS(5505), - [anon_sym__Atomic] = ACTIONS(5505), - [anon_sym__Noreturn] = ACTIONS(5505), - [anon_sym_noreturn] = ACTIONS(5505), - [anon_sym__Nonnull] = ACTIONS(5505), - [anon_sym_mutable] = ACTIONS(5505), - [anon_sym_constinit] = ACTIONS(5505), - [anon_sym_consteval] = ACTIONS(5505), - [anon_sym_alignas] = ACTIONS(5505), - [anon_sym__Alignas] = ACTIONS(5505), - [sym_primitive_type] = ACTIONS(5505), - [anon_sym_enum] = ACTIONS(5505), - [anon_sym_class] = ACTIONS(5505), - [anon_sym_struct] = ACTIONS(5505), - [anon_sym_union] = ACTIONS(5505), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5505), - [anon_sym_decltype] = ACTIONS(5505), - [anon_sym_explicit] = ACTIONS(5505), - [anon_sym_typename] = ACTIONS(5505), - [anon_sym_private] = ACTIONS(5505), - [anon_sym_template] = ACTIONS(5505), - [anon_sym_operator] = ACTIONS(5505), - [anon_sym_friend] = ACTIONS(5505), - [anon_sym_public] = ACTIONS(5505), - [anon_sym_protected] = ACTIONS(5505), - [anon_sym_static_assert] = ACTIONS(5505), - }, - [2046] = { - [sym_identifier] = ACTIONS(2759), - [aux_sym_preproc_def_token1] = ACTIONS(2759), - [aux_sym_preproc_if_token1] = ACTIONS(2759), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2759), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2759), - [sym_preproc_directive] = ACTIONS(2759), - [anon_sym_LPAREN2] = ACTIONS(2761), - [anon_sym_TILDE] = ACTIONS(2761), - [anon_sym_STAR] = ACTIONS(2761), - [anon_sym_AMP_AMP] = ACTIONS(2761), - [anon_sym_AMP] = ACTIONS(2759), - [anon_sym_SEMI] = ACTIONS(2761), - [anon_sym___extension__] = ACTIONS(2759), - [anon_sym_typedef] = ACTIONS(2759), - [anon_sym_virtual] = ACTIONS(2759), - [anon_sym_extern] = ACTIONS(2759), - [anon_sym___attribute__] = ACTIONS(2759), - [anon_sym___attribute] = ACTIONS(2759), - [anon_sym_using] = ACTIONS(2759), - [anon_sym_COLON_COLON] = ACTIONS(2761), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2761), - [anon_sym___declspec] = ACTIONS(2759), - [anon_sym___based] = ACTIONS(2759), - [anon_sym_RBRACE] = ACTIONS(2761), - [anon_sym_signed] = ACTIONS(2759), - [anon_sym_unsigned] = ACTIONS(2759), - [anon_sym_long] = ACTIONS(2759), - [anon_sym_short] = ACTIONS(2759), - [anon_sym_LBRACK] = ACTIONS(2759), - [anon_sym_static] = ACTIONS(2759), - [anon_sym_register] = ACTIONS(2759), - [anon_sym_inline] = ACTIONS(2759), - [anon_sym___inline] = ACTIONS(2759), - [anon_sym___inline__] = ACTIONS(2759), - [anon_sym___forceinline] = ACTIONS(2759), - [anon_sym_thread_local] = ACTIONS(2759), - [anon_sym___thread] = ACTIONS(2759), - [anon_sym_const] = ACTIONS(2759), - [anon_sym_constexpr] = ACTIONS(2759), - [anon_sym_volatile] = ACTIONS(2759), - [anon_sym_restrict] = ACTIONS(2759), - [anon_sym___restrict__] = ACTIONS(2759), - [anon_sym__Atomic] = ACTIONS(2759), - [anon_sym__Noreturn] = ACTIONS(2759), - [anon_sym_noreturn] = ACTIONS(2759), - [anon_sym__Nonnull] = ACTIONS(2759), - [anon_sym_mutable] = ACTIONS(2759), - [anon_sym_constinit] = ACTIONS(2759), - [anon_sym_consteval] = ACTIONS(2759), - [anon_sym_alignas] = ACTIONS(2759), - [anon_sym__Alignas] = ACTIONS(2759), - [sym_primitive_type] = ACTIONS(2759), - [anon_sym_enum] = ACTIONS(2759), - [anon_sym_class] = ACTIONS(2759), - [anon_sym_struct] = ACTIONS(2759), - [anon_sym_union] = ACTIONS(2759), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2759), - [anon_sym_decltype] = ACTIONS(2759), - [anon_sym_explicit] = ACTIONS(2759), - [anon_sym_typename] = ACTIONS(2759), - [anon_sym_private] = ACTIONS(2759), - [anon_sym_template] = ACTIONS(2759), - [anon_sym_operator] = ACTIONS(2759), - [anon_sym_friend] = ACTIONS(2759), - [anon_sym_public] = ACTIONS(2759), - [anon_sym_protected] = ACTIONS(2759), - [anon_sym_static_assert] = ACTIONS(2759), - }, - [2047] = { - [sym_identifier] = ACTIONS(2815), - [aux_sym_preproc_def_token1] = ACTIONS(2815), - [aux_sym_preproc_if_token1] = ACTIONS(2815), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2815), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2815), - [sym_preproc_directive] = ACTIONS(2815), - [anon_sym_LPAREN2] = ACTIONS(2817), - [anon_sym_TILDE] = ACTIONS(2817), - [anon_sym_STAR] = ACTIONS(2817), - [anon_sym_AMP_AMP] = ACTIONS(2817), - [anon_sym_AMP] = ACTIONS(2815), - [anon_sym_SEMI] = ACTIONS(2817), - [anon_sym___extension__] = ACTIONS(2815), - [anon_sym_typedef] = ACTIONS(2815), - [anon_sym_virtual] = ACTIONS(2815), - [anon_sym_extern] = ACTIONS(2815), - [anon_sym___attribute__] = ACTIONS(2815), - [anon_sym___attribute] = ACTIONS(2815), - [anon_sym_using] = ACTIONS(2815), - [anon_sym_COLON_COLON] = ACTIONS(2817), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2817), - [anon_sym___declspec] = ACTIONS(2815), - [anon_sym___based] = ACTIONS(2815), - [anon_sym_RBRACE] = ACTIONS(2817), - [anon_sym_signed] = ACTIONS(2815), - [anon_sym_unsigned] = ACTIONS(2815), - [anon_sym_long] = ACTIONS(2815), - [anon_sym_short] = ACTIONS(2815), - [anon_sym_LBRACK] = ACTIONS(2815), - [anon_sym_static] = ACTIONS(2815), - [anon_sym_register] = ACTIONS(2815), - [anon_sym_inline] = ACTIONS(2815), - [anon_sym___inline] = ACTIONS(2815), - [anon_sym___inline__] = ACTIONS(2815), - [anon_sym___forceinline] = ACTIONS(2815), - [anon_sym_thread_local] = ACTIONS(2815), - [anon_sym___thread] = ACTIONS(2815), - [anon_sym_const] = ACTIONS(2815), - [anon_sym_constexpr] = ACTIONS(2815), - [anon_sym_volatile] = ACTIONS(2815), - [anon_sym_restrict] = ACTIONS(2815), - [anon_sym___restrict__] = ACTIONS(2815), - [anon_sym__Atomic] = ACTIONS(2815), - [anon_sym__Noreturn] = ACTIONS(2815), - [anon_sym_noreturn] = ACTIONS(2815), - [anon_sym__Nonnull] = ACTIONS(2815), - [anon_sym_mutable] = ACTIONS(2815), - [anon_sym_constinit] = ACTIONS(2815), - [anon_sym_consteval] = ACTIONS(2815), - [anon_sym_alignas] = ACTIONS(2815), - [anon_sym__Alignas] = ACTIONS(2815), - [sym_primitive_type] = ACTIONS(2815), - [anon_sym_enum] = ACTIONS(2815), - [anon_sym_class] = ACTIONS(2815), - [anon_sym_struct] = ACTIONS(2815), - [anon_sym_union] = ACTIONS(2815), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2815), - [anon_sym_decltype] = ACTIONS(2815), - [anon_sym_explicit] = ACTIONS(2815), - [anon_sym_typename] = ACTIONS(2815), - [anon_sym_private] = ACTIONS(2815), - [anon_sym_template] = ACTIONS(2815), - [anon_sym_operator] = ACTIONS(2815), - [anon_sym_friend] = ACTIONS(2815), - [anon_sym_public] = ACTIONS(2815), - [anon_sym_protected] = ACTIONS(2815), - [anon_sym_static_assert] = ACTIONS(2815), - }, - [2048] = { - [sym_ms_based_modifier] = STATE(8106), - [sym_ms_unaligned_ptr_modifier] = STATE(4043), - [sym_ms_pointer_modifier] = STATE(3820), - [sym__declarator] = STATE(6349), - [sym__abstract_declarator] = STATE(6655), - [sym_parenthesized_declarator] = STATE(5998), - [sym_abstract_parenthesized_declarator] = STATE(6092), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_abstract_pointer_declarator] = STATE(6092), - [sym_function_declarator] = STATE(5998), - [sym_abstract_function_declarator] = STATE(6092), - [sym_array_declarator] = STATE(5998), - [sym_abstract_array_declarator] = STATE(6092), - [sym_type_qualifier] = STATE(2656), - [sym_alignas_qualifier] = STATE(4289), - [sym_parameter_list] = STATE(3216), - [sym_decltype] = STATE(8601), - [sym_reference_declarator] = STATE(5998), - [sym_abstract_reference_declarator] = STATE(6092), - [sym_structured_binding_declarator] = STATE(5998), - [sym__function_declarator_seq] = STATE(6087), - [sym_template_type] = STATE(8601), - [sym_template_function] = STATE(5998), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5860), - [sym_qualified_identifier] = STATE(5998), - [sym_operator_name] = STATE(5998), - [aux_sym__type_definition_type_repeat1] = STATE(2656), - [aux_sym_pointer_declarator_repeat1] = STATE(3820), - [sym_identifier] = ACTIONS(5849), - [anon_sym_COMMA] = ACTIONS(5865), - [anon_sym_LPAREN2] = ACTIONS(4298), - [anon_sym_TILDE] = ACTIONS(2979), - [anon_sym_STAR] = ACTIONS(5971), - [anon_sym_AMP_AMP] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym___extension__] = ACTIONS(3331), - [anon_sym___attribute__] = ACTIONS(5867), - [anon_sym___attribute] = ACTIONS(5867), - [anon_sym_COLON_COLON] = ACTIONS(5861), - [anon_sym___based] = ACTIONS(53), - [sym_ms_restrict_modifier] = ACTIONS(3327), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(3327), - [sym_ms_signed_ptr_modifier] = ACTIONS(3327), - [anon_sym__unaligned] = ACTIONS(3329), - [anon_sym___unaligned] = ACTIONS(3329), - [anon_sym_LBRACK] = ACTIONS(5863), - [anon_sym_const] = ACTIONS(3331), - [anon_sym_constexpr] = ACTIONS(3331), - [anon_sym_volatile] = ACTIONS(3331), - [anon_sym_restrict] = ACTIONS(3331), - [anon_sym___restrict__] = ACTIONS(3331), - [anon_sym__Atomic] = ACTIONS(3331), - [anon_sym__Noreturn] = ACTIONS(3331), - [anon_sym_noreturn] = ACTIONS(3331), - [anon_sym__Nonnull] = ACTIONS(3331), - [anon_sym_mutable] = ACTIONS(3331), - [anon_sym_constinit] = ACTIONS(3331), - [anon_sym_consteval] = ACTIONS(3331), - [anon_sym_alignas] = ACTIONS(3333), - [anon_sym__Alignas] = ACTIONS(3333), + [2109] = { + [sym_identifier] = ACTIONS(2791), + [aux_sym_preproc_def_token1] = ACTIONS(2791), + [aux_sym_preproc_if_token1] = ACTIONS(2791), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2791), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2791), + [sym_preproc_directive] = ACTIONS(2791), + [anon_sym_LPAREN2] = ACTIONS(2793), + [anon_sym_TILDE] = ACTIONS(2793), + [anon_sym_STAR] = ACTIONS(2793), + [anon_sym_AMP_AMP] = ACTIONS(2793), + [anon_sym_AMP] = ACTIONS(2791), + [anon_sym_SEMI] = ACTIONS(2793), + [anon_sym___extension__] = ACTIONS(2791), + [anon_sym_typedef] = ACTIONS(2791), + [anon_sym_virtual] = ACTIONS(2791), + [anon_sym_extern] = ACTIONS(2791), + [anon_sym___attribute__] = ACTIONS(2791), + [anon_sym___attribute] = ACTIONS(2791), + [anon_sym_using] = ACTIONS(2791), + [anon_sym_COLON_COLON] = ACTIONS(2793), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2793), + [anon_sym___declspec] = ACTIONS(2791), + [anon_sym___based] = ACTIONS(2791), + [anon_sym_RBRACE] = ACTIONS(2793), + [anon_sym_signed] = ACTIONS(2791), + [anon_sym_unsigned] = ACTIONS(2791), + [anon_sym_long] = ACTIONS(2791), + [anon_sym_short] = ACTIONS(2791), + [anon_sym_LBRACK] = ACTIONS(2791), + [anon_sym_static] = ACTIONS(2791), + [anon_sym_register] = ACTIONS(2791), + [anon_sym_inline] = ACTIONS(2791), + [anon_sym___inline] = ACTIONS(2791), + [anon_sym___inline__] = ACTIONS(2791), + [anon_sym___forceinline] = ACTIONS(2791), + [anon_sym_thread_local] = ACTIONS(2791), + [anon_sym___thread] = ACTIONS(2791), + [anon_sym_const] = ACTIONS(2791), + [anon_sym_constexpr] = ACTIONS(2791), + [anon_sym_volatile] = ACTIONS(2791), + [anon_sym_restrict] = ACTIONS(2791), + [anon_sym___restrict__] = ACTIONS(2791), + [anon_sym__Atomic] = ACTIONS(2791), + [anon_sym__Noreturn] = ACTIONS(2791), + [anon_sym_noreturn] = ACTIONS(2791), + [anon_sym__Nonnull] = ACTIONS(2791), + [anon_sym_mutable] = ACTIONS(2791), + [anon_sym_constinit] = ACTIONS(2791), + [anon_sym_consteval] = ACTIONS(2791), + [anon_sym_alignas] = ACTIONS(2791), + [anon_sym__Alignas] = ACTIONS(2791), + [sym_primitive_type] = ACTIONS(2791), + [anon_sym_enum] = ACTIONS(2791), + [anon_sym_class] = ACTIONS(2791), + [anon_sym_struct] = ACTIONS(2791), + [anon_sym_union] = ACTIONS(2791), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_GT2] = ACTIONS(5865), - [anon_sym_operator] = ACTIONS(1852), + [sym_auto] = ACTIONS(2791), + [anon_sym_decltype] = ACTIONS(2791), + [anon_sym_explicit] = ACTIONS(2791), + [anon_sym_typename] = ACTIONS(2791), + [anon_sym_private] = ACTIONS(2791), + [anon_sym_template] = ACTIONS(2791), + [anon_sym_operator] = ACTIONS(2791), + [anon_sym_friend] = ACTIONS(2791), + [anon_sym_public] = ACTIONS(2791), + [anon_sym_protected] = ACTIONS(2791), + [anon_sym_static_assert] = ACTIONS(2791), }, - [2049] = { - [sym_identifier] = ACTIONS(2935), - [aux_sym_preproc_def_token1] = ACTIONS(2935), - [aux_sym_preproc_if_token1] = ACTIONS(2935), - [aux_sym_preproc_if_token2] = ACTIONS(2935), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2935), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2935), - [sym_preproc_directive] = ACTIONS(2935), - [anon_sym_LPAREN2] = ACTIONS(2937), - [anon_sym_TILDE] = ACTIONS(2937), - [anon_sym_STAR] = ACTIONS(2937), - [anon_sym_AMP_AMP] = ACTIONS(2937), - [anon_sym_AMP] = ACTIONS(2935), - [anon_sym_SEMI] = ACTIONS(2937), - [anon_sym___extension__] = ACTIONS(2935), - [anon_sym_typedef] = ACTIONS(2935), - [anon_sym_virtual] = ACTIONS(2935), - [anon_sym_extern] = ACTIONS(2935), - [anon_sym___attribute__] = ACTIONS(2935), - [anon_sym___attribute] = ACTIONS(2935), - [anon_sym_using] = ACTIONS(2935), - [anon_sym_COLON_COLON] = ACTIONS(2937), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2937), - [anon_sym___declspec] = ACTIONS(2935), - [anon_sym___based] = ACTIONS(2935), - [anon_sym_signed] = ACTIONS(2935), - [anon_sym_unsigned] = ACTIONS(2935), - [anon_sym_long] = ACTIONS(2935), - [anon_sym_short] = ACTIONS(2935), - [anon_sym_LBRACK] = ACTIONS(2935), - [anon_sym_static] = ACTIONS(2935), - [anon_sym_register] = ACTIONS(2935), - [anon_sym_inline] = ACTIONS(2935), - [anon_sym___inline] = ACTIONS(2935), - [anon_sym___inline__] = ACTIONS(2935), - [anon_sym___forceinline] = ACTIONS(2935), - [anon_sym_thread_local] = ACTIONS(2935), - [anon_sym___thread] = ACTIONS(2935), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_constexpr] = ACTIONS(2935), - [anon_sym_volatile] = ACTIONS(2935), - [anon_sym_restrict] = ACTIONS(2935), - [anon_sym___restrict__] = ACTIONS(2935), - [anon_sym__Atomic] = ACTIONS(2935), - [anon_sym__Noreturn] = ACTIONS(2935), - [anon_sym_noreturn] = ACTIONS(2935), - [anon_sym__Nonnull] = ACTIONS(2935), - [anon_sym_mutable] = ACTIONS(2935), - [anon_sym_constinit] = ACTIONS(2935), - [anon_sym_consteval] = ACTIONS(2935), - [anon_sym_alignas] = ACTIONS(2935), - [anon_sym__Alignas] = ACTIONS(2935), - [sym_primitive_type] = ACTIONS(2935), - [anon_sym_enum] = ACTIONS(2935), - [anon_sym_class] = ACTIONS(2935), - [anon_sym_struct] = ACTIONS(2935), - [anon_sym_union] = ACTIONS(2935), + [2110] = { + [sym_identifier] = ACTIONS(2795), + [aux_sym_preproc_def_token1] = ACTIONS(2795), + [aux_sym_preproc_if_token1] = ACTIONS(2795), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2795), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2795), + [sym_preproc_directive] = ACTIONS(2795), + [anon_sym_LPAREN2] = ACTIONS(2797), + [anon_sym_TILDE] = ACTIONS(2797), + [anon_sym_STAR] = ACTIONS(2797), + [anon_sym_AMP_AMP] = ACTIONS(2797), + [anon_sym_AMP] = ACTIONS(2795), + [anon_sym_SEMI] = ACTIONS(2797), + [anon_sym___extension__] = ACTIONS(2795), + [anon_sym_typedef] = ACTIONS(2795), + [anon_sym_virtual] = ACTIONS(2795), + [anon_sym_extern] = ACTIONS(2795), + [anon_sym___attribute__] = ACTIONS(2795), + [anon_sym___attribute] = ACTIONS(2795), + [anon_sym_using] = ACTIONS(2795), + [anon_sym_COLON_COLON] = ACTIONS(2797), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2797), + [anon_sym___declspec] = ACTIONS(2795), + [anon_sym___based] = ACTIONS(2795), + [anon_sym_RBRACE] = ACTIONS(2797), + [anon_sym_signed] = ACTIONS(2795), + [anon_sym_unsigned] = ACTIONS(2795), + [anon_sym_long] = ACTIONS(2795), + [anon_sym_short] = ACTIONS(2795), + [anon_sym_LBRACK] = ACTIONS(2795), + [anon_sym_static] = ACTIONS(2795), + [anon_sym_register] = ACTIONS(2795), + [anon_sym_inline] = ACTIONS(2795), + [anon_sym___inline] = ACTIONS(2795), + [anon_sym___inline__] = ACTIONS(2795), + [anon_sym___forceinline] = ACTIONS(2795), + [anon_sym_thread_local] = ACTIONS(2795), + [anon_sym___thread] = ACTIONS(2795), + [anon_sym_const] = ACTIONS(2795), + [anon_sym_constexpr] = ACTIONS(2795), + [anon_sym_volatile] = ACTIONS(2795), + [anon_sym_restrict] = ACTIONS(2795), + [anon_sym___restrict__] = ACTIONS(2795), + [anon_sym__Atomic] = ACTIONS(2795), + [anon_sym__Noreturn] = ACTIONS(2795), + [anon_sym_noreturn] = ACTIONS(2795), + [anon_sym__Nonnull] = ACTIONS(2795), + [anon_sym_mutable] = ACTIONS(2795), + [anon_sym_constinit] = ACTIONS(2795), + [anon_sym_consteval] = ACTIONS(2795), + [anon_sym_alignas] = ACTIONS(2795), + [anon_sym__Alignas] = ACTIONS(2795), + [sym_primitive_type] = ACTIONS(2795), + [anon_sym_enum] = ACTIONS(2795), + [anon_sym_class] = ACTIONS(2795), + [anon_sym_struct] = ACTIONS(2795), + [anon_sym_union] = ACTIONS(2795), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2935), - [anon_sym_decltype] = ACTIONS(2935), - [anon_sym_explicit] = ACTIONS(2935), - [anon_sym_typename] = ACTIONS(2935), - [anon_sym_private] = ACTIONS(2935), - [anon_sym_template] = ACTIONS(2935), - [anon_sym_operator] = ACTIONS(2935), - [anon_sym_friend] = ACTIONS(2935), - [anon_sym_public] = ACTIONS(2935), - [anon_sym_protected] = ACTIONS(2935), - [anon_sym_static_assert] = ACTIONS(2935), - }, - [2050] = { - [sym_template_argument_list] = STATE(1603), - [aux_sym_sized_type_specifier_repeat1] = STATE(2248), - [sym_identifier] = ACTIONS(5977), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5979), - [anon_sym_COMMA] = ACTIONS(5979), - [aux_sym_preproc_if_token2] = ACTIONS(5979), - [aux_sym_preproc_else_token1] = ACTIONS(5979), - [aux_sym_preproc_elif_token1] = ACTIONS(5977), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5979), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5979), - [anon_sym_LPAREN2] = ACTIONS(5979), - [anon_sym_DASH] = ACTIONS(5977), - [anon_sym_PLUS] = ACTIONS(5977), - [anon_sym_STAR] = ACTIONS(5977), - [anon_sym_SLASH] = ACTIONS(5977), - [anon_sym_PERCENT] = ACTIONS(5977), - [anon_sym_PIPE_PIPE] = ACTIONS(5979), - [anon_sym_AMP_AMP] = ACTIONS(5979), - [anon_sym_PIPE] = ACTIONS(5977), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_AMP] = ACTIONS(5977), - [anon_sym_EQ_EQ] = ACTIONS(5979), - [anon_sym_BANG_EQ] = ACTIONS(5979), - [anon_sym_GT] = ACTIONS(5977), - [anon_sym_GT_EQ] = ACTIONS(5979), - [anon_sym_LT_EQ] = ACTIONS(5977), - [anon_sym_LT] = ACTIONS(5977), - [anon_sym_LT_LT] = ACTIONS(5977), - [anon_sym_GT_GT] = ACTIONS(5977), - [anon_sym___attribute__] = ACTIONS(5977), - [anon_sym___attribute] = ACTIONS(5977), - [anon_sym_COLON_COLON] = ACTIONS(4167), - [anon_sym_LBRACE] = ACTIONS(5979), - [anon_sym_signed] = ACTIONS(5981), - [anon_sym_unsigned] = ACTIONS(5981), - [anon_sym_long] = ACTIONS(5981), - [anon_sym_short] = ACTIONS(5981), - [anon_sym_LBRACK] = ACTIONS(5979), - [anon_sym_EQ] = ACTIONS(5977), - [anon_sym_QMARK] = ACTIONS(5979), - [anon_sym_STAR_EQ] = ACTIONS(5979), - [anon_sym_SLASH_EQ] = ACTIONS(5979), - [anon_sym_PERCENT_EQ] = ACTIONS(5979), - [anon_sym_PLUS_EQ] = ACTIONS(5979), - [anon_sym_DASH_EQ] = ACTIONS(5979), - [anon_sym_LT_LT_EQ] = ACTIONS(5979), - [anon_sym_GT_GT_EQ] = ACTIONS(5979), - [anon_sym_AMP_EQ] = ACTIONS(5979), - [anon_sym_CARET_EQ] = ACTIONS(5979), - [anon_sym_PIPE_EQ] = ACTIONS(5979), - [anon_sym_and_eq] = ACTIONS(5977), - [anon_sym_or_eq] = ACTIONS(5977), - [anon_sym_xor_eq] = ACTIONS(5977), - [anon_sym_LT_EQ_GT] = ACTIONS(5979), - [anon_sym_or] = ACTIONS(5977), - [anon_sym_and] = ACTIONS(5977), - [anon_sym_bitor] = ACTIONS(5977), - [anon_sym_xor] = ACTIONS(5977), - [anon_sym_bitand] = ACTIONS(5977), - [anon_sym_not_eq] = ACTIONS(5977), - [anon_sym_DASH_DASH] = ACTIONS(5979), - [anon_sym_PLUS_PLUS] = ACTIONS(5979), - [anon_sym_DOT] = ACTIONS(5977), - [anon_sym_DOT_STAR] = ACTIONS(5979), - [anon_sym_DASH_GT] = ACTIONS(5979), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5977), - [anon_sym_decltype] = ACTIONS(5977), + [sym_auto] = ACTIONS(2795), + [anon_sym_decltype] = ACTIONS(2795), + [anon_sym_explicit] = ACTIONS(2795), + [anon_sym_typename] = ACTIONS(2795), + [anon_sym_private] = ACTIONS(2795), + [anon_sym_template] = ACTIONS(2795), + [anon_sym_operator] = ACTIONS(2795), + [anon_sym_friend] = ACTIONS(2795), + [anon_sym_public] = ACTIONS(2795), + [anon_sym_protected] = ACTIONS(2795), + [anon_sym_static_assert] = ACTIONS(2795), }, - [2051] = { - [sym_attribute_specifier] = STATE(2233), - [sym_enumerator_list] = STATE(2183), - [sym_identifier] = ACTIONS(5983), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5985), - [anon_sym_COMMA] = ACTIONS(5985), - [anon_sym_RPAREN] = ACTIONS(5985), - [aux_sym_preproc_if_token2] = ACTIONS(5985), - [aux_sym_preproc_else_token1] = ACTIONS(5985), - [aux_sym_preproc_elif_token1] = ACTIONS(5983), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5985), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5985), - [anon_sym_LPAREN2] = ACTIONS(5985), - [anon_sym_DASH] = ACTIONS(5983), - [anon_sym_PLUS] = ACTIONS(5983), - [anon_sym_STAR] = ACTIONS(5983), - [anon_sym_SLASH] = ACTIONS(5983), - [anon_sym_PERCENT] = ACTIONS(5983), - [anon_sym_PIPE_PIPE] = ACTIONS(5985), - [anon_sym_AMP_AMP] = ACTIONS(5985), - [anon_sym_PIPE] = ACTIONS(5983), - [anon_sym_CARET] = ACTIONS(5983), - [anon_sym_AMP] = ACTIONS(5983), - [anon_sym_EQ_EQ] = ACTIONS(5985), - [anon_sym_BANG_EQ] = ACTIONS(5985), - [anon_sym_GT] = ACTIONS(5983), - [anon_sym_GT_EQ] = ACTIONS(5985), - [anon_sym_LT_EQ] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5983), - [anon_sym_LT_LT] = ACTIONS(5983), - [anon_sym_GT_GT] = ACTIONS(5983), - [anon_sym_SEMI] = ACTIONS(5985), - [anon_sym___attribute__] = ACTIONS(5497), - [anon_sym___attribute] = ACTIONS(5497), - [anon_sym_COLON] = ACTIONS(5985), - [anon_sym_LBRACE] = ACTIONS(5987), - [anon_sym_RBRACE] = ACTIONS(5985), - [anon_sym_LBRACK] = ACTIONS(5985), - [anon_sym_RBRACK] = ACTIONS(5985), - [anon_sym_EQ] = ACTIONS(5983), - [anon_sym_QMARK] = ACTIONS(5985), - [anon_sym_STAR_EQ] = ACTIONS(5985), - [anon_sym_SLASH_EQ] = ACTIONS(5985), - [anon_sym_PERCENT_EQ] = ACTIONS(5985), - [anon_sym_PLUS_EQ] = ACTIONS(5985), - [anon_sym_DASH_EQ] = ACTIONS(5985), - [anon_sym_LT_LT_EQ] = ACTIONS(5985), - [anon_sym_GT_GT_EQ] = ACTIONS(5985), - [anon_sym_AMP_EQ] = ACTIONS(5985), - [anon_sym_CARET_EQ] = ACTIONS(5985), - [anon_sym_PIPE_EQ] = ACTIONS(5985), - [anon_sym_and_eq] = ACTIONS(5983), - [anon_sym_or_eq] = ACTIONS(5983), - [anon_sym_xor_eq] = ACTIONS(5983), - [anon_sym_LT_EQ_GT] = ACTIONS(5985), - [anon_sym_or] = ACTIONS(5983), - [anon_sym_and] = ACTIONS(5983), - [anon_sym_bitor] = ACTIONS(5983), - [anon_sym_xor] = ACTIONS(5983), - [anon_sym_bitand] = ACTIONS(5983), - [anon_sym_not_eq] = ACTIONS(5983), - [anon_sym_DASH_DASH] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5985), - [anon_sym_DOT] = ACTIONS(5983), - [anon_sym_DOT_STAR] = ACTIONS(5985), - [anon_sym_DASH_GT] = ACTIONS(5985), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5983), - [anon_sym_decltype] = ACTIONS(5983), + [2111] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1688), + [sym_identifier] = ACTIONS(5078), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5167), + [anon_sym_COMMA] = ACTIONS(5167), + [anon_sym_RPAREN] = ACTIONS(5167), + [anon_sym_LPAREN2] = ACTIONS(5167), + [anon_sym_DASH] = ACTIONS(5164), + [anon_sym_PLUS] = ACTIONS(5164), + [anon_sym_STAR] = ACTIONS(5167), + [anon_sym_SLASH] = ACTIONS(5164), + [anon_sym_PERCENT] = ACTIONS(5167), + [anon_sym_PIPE_PIPE] = ACTIONS(5167), + [anon_sym_AMP_AMP] = ACTIONS(5167), + [anon_sym_PIPE] = ACTIONS(5164), + [anon_sym_CARET] = ACTIONS(5167), + [anon_sym_AMP] = ACTIONS(5164), + [anon_sym_EQ_EQ] = ACTIONS(5167), + [anon_sym_BANG_EQ] = ACTIONS(5167), + [anon_sym_GT] = ACTIONS(5164), + [anon_sym_GT_EQ] = ACTIONS(5167), + [anon_sym_LT_EQ] = ACTIONS(5164), + [anon_sym_LT] = ACTIONS(5164), + [anon_sym_LT_LT] = ACTIONS(5167), + [anon_sym_GT_GT] = ACTIONS(5167), + [anon_sym_SEMI] = ACTIONS(5167), + [anon_sym___extension__] = ACTIONS(5078), + [anon_sym___attribute__] = ACTIONS(5164), + [anon_sym___attribute] = ACTIONS(5164), + [anon_sym_COLON] = ACTIONS(5167), + [anon_sym_LBRACE] = ACTIONS(5167), + [anon_sym_RBRACE] = ACTIONS(5167), + [anon_sym_signed] = ACTIONS(5384), + [anon_sym_unsigned] = ACTIONS(5384), + [anon_sym_long] = ACTIONS(5384), + [anon_sym_short] = ACTIONS(5384), + [anon_sym_LBRACK] = ACTIONS(5167), + [anon_sym_RBRACK] = ACTIONS(5167), + [anon_sym_const] = ACTIONS(5078), + [anon_sym_constexpr] = ACTIONS(5078), + [anon_sym_volatile] = ACTIONS(5078), + [anon_sym_restrict] = ACTIONS(5078), + [anon_sym___restrict__] = ACTIONS(5078), + [anon_sym__Atomic] = ACTIONS(5078), + [anon_sym__Noreturn] = ACTIONS(5078), + [anon_sym_noreturn] = ACTIONS(5078), + [anon_sym__Nonnull] = ACTIONS(5078), + [anon_sym_mutable] = ACTIONS(5078), + [anon_sym_constinit] = ACTIONS(5078), + [anon_sym_consteval] = ACTIONS(5078), + [anon_sym_alignas] = ACTIONS(5078), + [anon_sym__Alignas] = ACTIONS(5078), + [sym_primitive_type] = ACTIONS(5078), + [anon_sym_QMARK] = ACTIONS(5167), + [anon_sym_LT_EQ_GT] = ACTIONS(5167), + [anon_sym_or] = ACTIONS(5164), + [anon_sym_and] = ACTIONS(5164), + [anon_sym_bitor] = ACTIONS(5164), + [anon_sym_xor] = ACTIONS(5164), + [anon_sym_bitand] = ACTIONS(5164), + [anon_sym_not_eq] = ACTIONS(5164), + [anon_sym_DASH_DASH] = ACTIONS(5167), + [anon_sym_PLUS_PLUS] = ACTIONS(5167), + [anon_sym_DOT] = ACTIONS(5164), + [anon_sym_DOT_STAR] = ACTIONS(5167), + [anon_sym_DASH_GT] = ACTIONS(5167), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5164), + [anon_sym_decltype] = ACTIONS(5164), }, - [2052] = { - [sym_identifier] = ACTIONS(2767), - [aux_sym_preproc_def_token1] = ACTIONS(2767), - [aux_sym_preproc_if_token1] = ACTIONS(2767), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2767), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2767), - [sym_preproc_directive] = ACTIONS(2767), - [anon_sym_LPAREN2] = ACTIONS(2769), - [anon_sym_TILDE] = ACTIONS(2769), - [anon_sym_STAR] = ACTIONS(2769), - [anon_sym_AMP_AMP] = ACTIONS(2769), - [anon_sym_AMP] = ACTIONS(2767), - [anon_sym_SEMI] = ACTIONS(2769), - [anon_sym___extension__] = ACTIONS(2767), - [anon_sym_typedef] = ACTIONS(2767), - [anon_sym_virtual] = ACTIONS(2767), - [anon_sym_extern] = ACTIONS(2767), - [anon_sym___attribute__] = ACTIONS(2767), - [anon_sym___attribute] = ACTIONS(2767), - [anon_sym_using] = ACTIONS(2767), - [anon_sym_COLON_COLON] = ACTIONS(2769), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2769), - [anon_sym___declspec] = ACTIONS(2767), - [anon_sym___based] = ACTIONS(2767), - [anon_sym_RBRACE] = ACTIONS(2769), - [anon_sym_signed] = ACTIONS(2767), - [anon_sym_unsigned] = ACTIONS(2767), - [anon_sym_long] = ACTIONS(2767), - [anon_sym_short] = ACTIONS(2767), - [anon_sym_LBRACK] = ACTIONS(2767), - [anon_sym_static] = ACTIONS(2767), - [anon_sym_register] = ACTIONS(2767), - [anon_sym_inline] = ACTIONS(2767), - [anon_sym___inline] = ACTIONS(2767), - [anon_sym___inline__] = ACTIONS(2767), - [anon_sym___forceinline] = ACTIONS(2767), - [anon_sym_thread_local] = ACTIONS(2767), - [anon_sym___thread] = ACTIONS(2767), - [anon_sym_const] = ACTIONS(2767), - [anon_sym_constexpr] = ACTIONS(2767), - [anon_sym_volatile] = ACTIONS(2767), - [anon_sym_restrict] = ACTIONS(2767), - [anon_sym___restrict__] = ACTIONS(2767), - [anon_sym__Atomic] = ACTIONS(2767), - [anon_sym__Noreturn] = ACTIONS(2767), - [anon_sym_noreturn] = ACTIONS(2767), - [anon_sym__Nonnull] = ACTIONS(2767), - [anon_sym_mutable] = ACTIONS(2767), - [anon_sym_constinit] = ACTIONS(2767), - [anon_sym_consteval] = ACTIONS(2767), - [anon_sym_alignas] = ACTIONS(2767), - [anon_sym__Alignas] = ACTIONS(2767), - [sym_primitive_type] = ACTIONS(2767), - [anon_sym_enum] = ACTIONS(2767), - [anon_sym_class] = ACTIONS(2767), - [anon_sym_struct] = ACTIONS(2767), - [anon_sym_union] = ACTIONS(2767), + [2112] = { + [sym_identifier] = ACTIONS(3075), + [aux_sym_preproc_def_token1] = ACTIONS(3075), + [aux_sym_preproc_if_token1] = ACTIONS(3075), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3075), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3075), + [sym_preproc_directive] = ACTIONS(3075), + [anon_sym_LPAREN2] = ACTIONS(3077), + [anon_sym_TILDE] = ACTIONS(3077), + [anon_sym_STAR] = ACTIONS(3077), + [anon_sym_AMP_AMP] = ACTIONS(3077), + [anon_sym_AMP] = ACTIONS(3075), + [anon_sym_SEMI] = ACTIONS(3077), + [anon_sym___extension__] = ACTIONS(3075), + [anon_sym_typedef] = ACTIONS(3075), + [anon_sym_virtual] = ACTIONS(3075), + [anon_sym_extern] = ACTIONS(3075), + [anon_sym___attribute__] = ACTIONS(3075), + [anon_sym___attribute] = ACTIONS(3075), + [anon_sym_using] = ACTIONS(3075), + [anon_sym_COLON_COLON] = ACTIONS(3077), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3077), + [anon_sym___declspec] = ACTIONS(3075), + [anon_sym___based] = ACTIONS(3075), + [anon_sym_RBRACE] = ACTIONS(3077), + [anon_sym_signed] = ACTIONS(3075), + [anon_sym_unsigned] = ACTIONS(3075), + [anon_sym_long] = ACTIONS(3075), + [anon_sym_short] = ACTIONS(3075), + [anon_sym_LBRACK] = ACTIONS(3075), + [anon_sym_static] = ACTIONS(3075), + [anon_sym_register] = ACTIONS(3075), + [anon_sym_inline] = ACTIONS(3075), + [anon_sym___inline] = ACTIONS(3075), + [anon_sym___inline__] = ACTIONS(3075), + [anon_sym___forceinline] = ACTIONS(3075), + [anon_sym_thread_local] = ACTIONS(3075), + [anon_sym___thread] = ACTIONS(3075), + [anon_sym_const] = ACTIONS(3075), + [anon_sym_constexpr] = ACTIONS(3075), + [anon_sym_volatile] = ACTIONS(3075), + [anon_sym_restrict] = ACTIONS(3075), + [anon_sym___restrict__] = ACTIONS(3075), + [anon_sym__Atomic] = ACTIONS(3075), + [anon_sym__Noreturn] = ACTIONS(3075), + [anon_sym_noreturn] = ACTIONS(3075), + [anon_sym__Nonnull] = ACTIONS(3075), + [anon_sym_mutable] = ACTIONS(3075), + [anon_sym_constinit] = ACTIONS(3075), + [anon_sym_consteval] = ACTIONS(3075), + [anon_sym_alignas] = ACTIONS(3075), + [anon_sym__Alignas] = ACTIONS(3075), + [sym_primitive_type] = ACTIONS(3075), + [anon_sym_enum] = ACTIONS(3075), + [anon_sym_class] = ACTIONS(3075), + [anon_sym_struct] = ACTIONS(3075), + [anon_sym_union] = ACTIONS(3075), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2767), - [anon_sym_decltype] = ACTIONS(2767), - [anon_sym_explicit] = ACTIONS(2767), - [anon_sym_typename] = ACTIONS(2767), - [anon_sym_private] = ACTIONS(2767), - [anon_sym_template] = ACTIONS(2767), - [anon_sym_operator] = ACTIONS(2767), - [anon_sym_friend] = ACTIONS(2767), - [anon_sym_public] = ACTIONS(2767), - [anon_sym_protected] = ACTIONS(2767), - [anon_sym_static_assert] = ACTIONS(2767), - }, - [2053] = { - [sym_identifier] = ACTIONS(5989), - [anon_sym_LPAREN2] = ACTIONS(5991), - [anon_sym_TILDE] = ACTIONS(5991), - [anon_sym_STAR] = ACTIONS(5991), - [anon_sym_AMP_AMP] = ACTIONS(5991), - [anon_sym_AMP] = ACTIONS(5989), - [anon_sym___extension__] = ACTIONS(5989), - [anon_sym_virtual] = ACTIONS(5989), - [anon_sym_extern] = ACTIONS(5989), - [anon_sym___attribute__] = ACTIONS(5989), - [anon_sym___attribute] = ACTIONS(5989), - [anon_sym_using] = ACTIONS(5989), - [anon_sym_COLON_COLON] = ACTIONS(5991), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5991), - [anon_sym___declspec] = ACTIONS(5989), - [anon_sym___based] = ACTIONS(5989), - [anon_sym___cdecl] = ACTIONS(5989), - [anon_sym___clrcall] = ACTIONS(5989), - [anon_sym___stdcall] = ACTIONS(5989), - [anon_sym___fastcall] = ACTIONS(5989), - [anon_sym___thiscall] = ACTIONS(5989), - [anon_sym___vectorcall] = ACTIONS(5989), - [anon_sym_LBRACE] = ACTIONS(5991), - [anon_sym_signed] = ACTIONS(5989), - [anon_sym_unsigned] = ACTIONS(5989), - [anon_sym_long] = ACTIONS(5989), - [anon_sym_short] = ACTIONS(5989), - [anon_sym_LBRACK] = ACTIONS(5989), - [anon_sym_static] = ACTIONS(5989), - [anon_sym_register] = ACTIONS(5989), - [anon_sym_inline] = ACTIONS(5989), - [anon_sym___inline] = ACTIONS(5989), - [anon_sym___inline__] = ACTIONS(5989), - [anon_sym___forceinline] = ACTIONS(5989), - [anon_sym_thread_local] = ACTIONS(5989), - [anon_sym___thread] = ACTIONS(5989), - [anon_sym_const] = ACTIONS(5989), - [anon_sym_constexpr] = ACTIONS(5989), - [anon_sym_volatile] = ACTIONS(5989), - [anon_sym_restrict] = ACTIONS(5989), - [anon_sym___restrict__] = ACTIONS(5989), - [anon_sym__Atomic] = ACTIONS(5989), - [anon_sym__Noreturn] = ACTIONS(5989), - [anon_sym_noreturn] = ACTIONS(5989), - [anon_sym__Nonnull] = ACTIONS(5989), - [anon_sym_mutable] = ACTIONS(5989), - [anon_sym_constinit] = ACTIONS(5989), - [anon_sym_consteval] = ACTIONS(5989), - [anon_sym_alignas] = ACTIONS(5989), - [anon_sym__Alignas] = ACTIONS(5989), - [sym_primitive_type] = ACTIONS(5989), - [anon_sym_enum] = ACTIONS(5989), - [anon_sym_class] = ACTIONS(5989), - [anon_sym_struct] = ACTIONS(5989), - [anon_sym_union] = ACTIONS(5989), - [anon_sym_DASH_GT] = ACTIONS(5991), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5989), - [anon_sym_decltype] = ACTIONS(5989), - [anon_sym_explicit] = ACTIONS(5989), - [anon_sym_typename] = ACTIONS(5989), - [anon_sym_template] = ACTIONS(5989), - [anon_sym_operator] = ACTIONS(5989), - [anon_sym_friend] = ACTIONS(5989), - [anon_sym_noexcept] = ACTIONS(5989), - [anon_sym_throw] = ACTIONS(5989), - [anon_sym_concept] = ACTIONS(5989), - [anon_sym_requires] = ACTIONS(5989), + [sym_auto] = ACTIONS(3075), + [anon_sym_decltype] = ACTIONS(3075), + [anon_sym_explicit] = ACTIONS(3075), + [anon_sym_typename] = ACTIONS(3075), + [anon_sym_private] = ACTIONS(3075), + [anon_sym_template] = ACTIONS(3075), + [anon_sym_operator] = ACTIONS(3075), + [anon_sym_friend] = ACTIONS(3075), + [anon_sym_public] = ACTIONS(3075), + [anon_sym_protected] = ACTIONS(3075), + [anon_sym_static_assert] = ACTIONS(3075), }, - [2054] = { - [sym_identifier] = ACTIONS(2767), - [aux_sym_preproc_def_token1] = ACTIONS(2767), - [aux_sym_preproc_if_token1] = ACTIONS(2767), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2767), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2767), - [sym_preproc_directive] = ACTIONS(2767), - [anon_sym_LPAREN2] = ACTIONS(2769), - [anon_sym_TILDE] = ACTIONS(2769), - [anon_sym_STAR] = ACTIONS(2769), - [anon_sym_AMP_AMP] = ACTIONS(2769), - [anon_sym_AMP] = ACTIONS(2767), - [anon_sym_SEMI] = ACTIONS(2769), - [anon_sym___extension__] = ACTIONS(2767), - [anon_sym_typedef] = ACTIONS(2767), - [anon_sym_virtual] = ACTIONS(2767), - [anon_sym_extern] = ACTIONS(2767), - [anon_sym___attribute__] = ACTIONS(2767), - [anon_sym___attribute] = ACTIONS(2767), - [anon_sym_using] = ACTIONS(2767), - [anon_sym_COLON_COLON] = ACTIONS(2769), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2769), - [anon_sym___declspec] = ACTIONS(2767), - [anon_sym___based] = ACTIONS(2767), - [anon_sym_RBRACE] = ACTIONS(2769), - [anon_sym_signed] = ACTIONS(2767), - [anon_sym_unsigned] = ACTIONS(2767), - [anon_sym_long] = ACTIONS(2767), - [anon_sym_short] = ACTIONS(2767), - [anon_sym_LBRACK] = ACTIONS(2767), - [anon_sym_static] = ACTIONS(2767), - [anon_sym_register] = ACTIONS(2767), - [anon_sym_inline] = ACTIONS(2767), - [anon_sym___inline] = ACTIONS(2767), - [anon_sym___inline__] = ACTIONS(2767), - [anon_sym___forceinline] = ACTIONS(2767), - [anon_sym_thread_local] = ACTIONS(2767), - [anon_sym___thread] = ACTIONS(2767), - [anon_sym_const] = ACTIONS(2767), - [anon_sym_constexpr] = ACTIONS(2767), - [anon_sym_volatile] = ACTIONS(2767), - [anon_sym_restrict] = ACTIONS(2767), - [anon_sym___restrict__] = ACTIONS(2767), - [anon_sym__Atomic] = ACTIONS(2767), - [anon_sym__Noreturn] = ACTIONS(2767), - [anon_sym_noreturn] = ACTIONS(2767), - [anon_sym__Nonnull] = ACTIONS(2767), - [anon_sym_mutable] = ACTIONS(2767), - [anon_sym_constinit] = ACTIONS(2767), - [anon_sym_consteval] = ACTIONS(2767), - [anon_sym_alignas] = ACTIONS(2767), - [anon_sym__Alignas] = ACTIONS(2767), - [sym_primitive_type] = ACTIONS(2767), - [anon_sym_enum] = ACTIONS(2767), - [anon_sym_class] = ACTIONS(2767), - [anon_sym_struct] = ACTIONS(2767), - [anon_sym_union] = ACTIONS(2767), + [2113] = { + [sym_identifier] = ACTIONS(2923), + [aux_sym_preproc_def_token1] = ACTIONS(2923), + [aux_sym_preproc_if_token1] = ACTIONS(2923), + [aux_sym_preproc_if_token2] = ACTIONS(2923), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2923), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2923), + [sym_preproc_directive] = ACTIONS(2923), + [anon_sym_LPAREN2] = ACTIONS(2925), + [anon_sym_TILDE] = ACTIONS(2925), + [anon_sym_STAR] = ACTIONS(2925), + [anon_sym_AMP_AMP] = ACTIONS(2925), + [anon_sym_AMP] = ACTIONS(2923), + [anon_sym_SEMI] = ACTIONS(2925), + [anon_sym___extension__] = ACTIONS(2923), + [anon_sym_typedef] = ACTIONS(2923), + [anon_sym_virtual] = ACTIONS(2923), + [anon_sym_extern] = ACTIONS(2923), + [anon_sym___attribute__] = ACTIONS(2923), + [anon_sym___attribute] = ACTIONS(2923), + [anon_sym_using] = ACTIONS(2923), + [anon_sym_COLON_COLON] = ACTIONS(2925), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2925), + [anon_sym___declspec] = ACTIONS(2923), + [anon_sym___based] = ACTIONS(2923), + [anon_sym_signed] = ACTIONS(2923), + [anon_sym_unsigned] = ACTIONS(2923), + [anon_sym_long] = ACTIONS(2923), + [anon_sym_short] = ACTIONS(2923), + [anon_sym_LBRACK] = ACTIONS(2923), + [anon_sym_static] = ACTIONS(2923), + [anon_sym_register] = ACTIONS(2923), + [anon_sym_inline] = ACTIONS(2923), + [anon_sym___inline] = ACTIONS(2923), + [anon_sym___inline__] = ACTIONS(2923), + [anon_sym___forceinline] = ACTIONS(2923), + [anon_sym_thread_local] = ACTIONS(2923), + [anon_sym___thread] = ACTIONS(2923), + [anon_sym_const] = ACTIONS(2923), + [anon_sym_constexpr] = ACTIONS(2923), + [anon_sym_volatile] = ACTIONS(2923), + [anon_sym_restrict] = ACTIONS(2923), + [anon_sym___restrict__] = ACTIONS(2923), + [anon_sym__Atomic] = ACTIONS(2923), + [anon_sym__Noreturn] = ACTIONS(2923), + [anon_sym_noreturn] = ACTIONS(2923), + [anon_sym__Nonnull] = ACTIONS(2923), + [anon_sym_mutable] = ACTIONS(2923), + [anon_sym_constinit] = ACTIONS(2923), + [anon_sym_consteval] = ACTIONS(2923), + [anon_sym_alignas] = ACTIONS(2923), + [anon_sym__Alignas] = ACTIONS(2923), + [sym_primitive_type] = ACTIONS(2923), + [anon_sym_enum] = ACTIONS(2923), + [anon_sym_class] = ACTIONS(2923), + [anon_sym_struct] = ACTIONS(2923), + [anon_sym_union] = ACTIONS(2923), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2767), - [anon_sym_decltype] = ACTIONS(2767), - [anon_sym_explicit] = ACTIONS(2767), - [anon_sym_typename] = ACTIONS(2767), - [anon_sym_private] = ACTIONS(2767), - [anon_sym_template] = ACTIONS(2767), - [anon_sym_operator] = ACTIONS(2767), - [anon_sym_friend] = ACTIONS(2767), - [anon_sym_public] = ACTIONS(2767), - [anon_sym_protected] = ACTIONS(2767), - [anon_sym_static_assert] = ACTIONS(2767), + [sym_auto] = ACTIONS(2923), + [anon_sym_decltype] = ACTIONS(2923), + [anon_sym_explicit] = ACTIONS(2923), + [anon_sym_typename] = ACTIONS(2923), + [anon_sym_private] = ACTIONS(2923), + [anon_sym_template] = ACTIONS(2923), + [anon_sym_operator] = ACTIONS(2923), + [anon_sym_friend] = ACTIONS(2923), + [anon_sym_public] = ACTIONS(2923), + [anon_sym_protected] = ACTIONS(2923), + [anon_sym_static_assert] = ACTIONS(2923), }, - [2055] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1669), - [sym_identifier] = ACTIONS(5159), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5156), - [anon_sym_COMMA] = ACTIONS(5156), - [aux_sym_preproc_if_token2] = ACTIONS(5156), - [aux_sym_preproc_else_token1] = ACTIONS(5156), - [aux_sym_preproc_elif_token1] = ACTIONS(5159), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5156), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5156), - [anon_sym_LPAREN2] = ACTIONS(5156), - [anon_sym_DASH] = ACTIONS(5159), - [anon_sym_PLUS] = ACTIONS(5159), - [anon_sym_STAR] = ACTIONS(5156), - [anon_sym_SLASH] = ACTIONS(5159), - [anon_sym_PERCENT] = ACTIONS(5156), - [anon_sym_PIPE_PIPE] = ACTIONS(5156), - [anon_sym_AMP_AMP] = ACTIONS(5156), - [anon_sym_PIPE] = ACTIONS(5159), - [anon_sym_CARET] = ACTIONS(5156), - [anon_sym_AMP] = ACTIONS(5159), - [anon_sym_EQ_EQ] = ACTIONS(5156), - [anon_sym_BANG_EQ] = ACTIONS(5156), - [anon_sym_GT] = ACTIONS(5159), - [anon_sym_GT_EQ] = ACTIONS(5156), - [anon_sym_LT_EQ] = ACTIONS(5159), - [anon_sym_LT] = ACTIONS(5159), - [anon_sym_LT_LT] = ACTIONS(5156), - [anon_sym_GT_GT] = ACTIONS(5156), - [anon_sym___extension__] = ACTIONS(5070), - [anon_sym___attribute__] = ACTIONS(5159), - [anon_sym___attribute] = ACTIONS(5159), - [anon_sym_LBRACE] = ACTIONS(5156), - [anon_sym_signed] = ACTIONS(5370), - [anon_sym_unsigned] = ACTIONS(5370), - [anon_sym_long] = ACTIONS(5370), - [anon_sym_short] = ACTIONS(5370), - [anon_sym_LBRACK] = ACTIONS(5156), - [anon_sym_const] = ACTIONS(5070), - [anon_sym_constexpr] = ACTIONS(5070), - [anon_sym_volatile] = ACTIONS(5070), - [anon_sym_restrict] = ACTIONS(5070), - [anon_sym___restrict__] = ACTIONS(5070), - [anon_sym__Atomic] = ACTIONS(5070), - [anon_sym__Noreturn] = ACTIONS(5070), - [anon_sym_noreturn] = ACTIONS(5070), - [anon_sym__Nonnull] = ACTIONS(5070), - [anon_sym_mutable] = ACTIONS(5070), - [anon_sym_constinit] = ACTIONS(5070), - [anon_sym_consteval] = ACTIONS(5070), - [anon_sym_alignas] = ACTIONS(5070), - [anon_sym__Alignas] = ACTIONS(5070), - [sym_primitive_type] = ACTIONS(5070), - [anon_sym_QMARK] = ACTIONS(5156), - [anon_sym_LT_EQ_GT] = ACTIONS(5156), - [anon_sym_or] = ACTIONS(5159), - [anon_sym_and] = ACTIONS(5159), - [anon_sym_bitor] = ACTIONS(5159), - [anon_sym_xor] = ACTIONS(5159), - [anon_sym_bitand] = ACTIONS(5159), - [anon_sym_not_eq] = ACTIONS(5159), - [anon_sym_DASH_DASH] = ACTIONS(5156), - [anon_sym_PLUS_PLUS] = ACTIONS(5156), - [anon_sym_DOT] = ACTIONS(5159), - [anon_sym_DOT_STAR] = ACTIONS(5156), - [anon_sym_DASH_GT] = ACTIONS(5156), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5159), - [anon_sym_decltype] = ACTIONS(5159), + [2114] = { + [sym_string_literal] = STATE(1708), + [sym_raw_string_literal] = STATE(1708), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5917), + [anon_sym_COMMA] = ACTIONS(5917), + [anon_sym_RPAREN] = ACTIONS(5917), + [anon_sym_LPAREN2] = ACTIONS(5917), + [anon_sym_DASH] = ACTIONS(5915), + [anon_sym_PLUS] = ACTIONS(5915), + [anon_sym_STAR] = ACTIONS(5915), + [anon_sym_SLASH] = ACTIONS(5915), + [anon_sym_PERCENT] = ACTIONS(5915), + [anon_sym_PIPE_PIPE] = ACTIONS(5917), + [anon_sym_AMP_AMP] = ACTIONS(5917), + [anon_sym_PIPE] = ACTIONS(5915), + [anon_sym_CARET] = ACTIONS(5915), + [anon_sym_AMP] = ACTIONS(5915), + [anon_sym_EQ_EQ] = ACTIONS(5917), + [anon_sym_BANG_EQ] = ACTIONS(5917), + [anon_sym_GT] = ACTIONS(5915), + [anon_sym_GT_EQ] = ACTIONS(5917), + [anon_sym_LT_EQ] = ACTIONS(5915), + [anon_sym_LT] = ACTIONS(5915), + [anon_sym_LT_LT] = ACTIONS(5915), + [anon_sym_GT_GT] = ACTIONS(5915), + [anon_sym_SEMI] = ACTIONS(5917), + [anon_sym_COLON] = ACTIONS(5917), + [anon_sym_RBRACE] = ACTIONS(5917), + [anon_sym_LBRACK] = ACTIONS(5917), + [anon_sym_RBRACK] = ACTIONS(5917), + [anon_sym_EQ] = ACTIONS(5915), + [anon_sym_QMARK] = ACTIONS(5917), + [anon_sym_STAR_EQ] = ACTIONS(5917), + [anon_sym_SLASH_EQ] = ACTIONS(5917), + [anon_sym_PERCENT_EQ] = ACTIONS(5917), + [anon_sym_PLUS_EQ] = ACTIONS(5917), + [anon_sym_DASH_EQ] = ACTIONS(5917), + [anon_sym_LT_LT_EQ] = ACTIONS(5917), + [anon_sym_GT_GT_EQ] = ACTIONS(5917), + [anon_sym_AMP_EQ] = ACTIONS(5917), + [anon_sym_CARET_EQ] = ACTIONS(5917), + [anon_sym_PIPE_EQ] = ACTIONS(5917), + [anon_sym_and_eq] = ACTIONS(5915), + [anon_sym_or_eq] = ACTIONS(5915), + [anon_sym_xor_eq] = ACTIONS(5915), + [anon_sym_LT_EQ_GT] = ACTIONS(5917), + [anon_sym_or] = ACTIONS(5915), + [anon_sym_and] = ACTIONS(5915), + [anon_sym_bitor] = ACTIONS(5915), + [anon_sym_xor] = ACTIONS(5915), + [anon_sym_bitand] = ACTIONS(5915), + [anon_sym_not_eq] = ACTIONS(5915), + [anon_sym_DASH_DASH] = ACTIONS(5917), + [anon_sym_PLUS_PLUS] = ACTIONS(5917), + [anon_sym_DOT] = ACTIONS(5915), + [anon_sym_DOT_STAR] = ACTIONS(5917), + [anon_sym_DASH_GT] = ACTIONS(5917), + [anon_sym_L_DQUOTE] = ACTIONS(1972), + [anon_sym_u_DQUOTE] = ACTIONS(1972), + [anon_sym_U_DQUOTE] = ACTIONS(1972), + [anon_sym_u8_DQUOTE] = ACTIONS(1972), + [anon_sym_DQUOTE] = ACTIONS(1972), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(1982), + [anon_sym_LR_DQUOTE] = ACTIONS(1982), + [anon_sym_uR_DQUOTE] = ACTIONS(1982), + [anon_sym_UR_DQUOTE] = ACTIONS(1982), + [anon_sym_u8R_DQUOTE] = ACTIONS(1982), + [sym_literal_suffix] = ACTIONS(5915), }, - [2056] = { - [sym_identifier] = ACTIONS(5993), - [anon_sym_LPAREN2] = ACTIONS(5995), - [anon_sym_TILDE] = ACTIONS(5995), - [anon_sym_STAR] = ACTIONS(5995), - [anon_sym_AMP_AMP] = ACTIONS(5995), - [anon_sym_AMP] = ACTIONS(5993), - [anon_sym___extension__] = ACTIONS(5993), - [anon_sym_virtual] = ACTIONS(5993), - [anon_sym_extern] = ACTIONS(5993), - [anon_sym___attribute__] = ACTIONS(5993), - [anon_sym___attribute] = ACTIONS(5993), - [anon_sym_using] = ACTIONS(5993), - [anon_sym_COLON_COLON] = ACTIONS(5995), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5995), - [anon_sym___declspec] = ACTIONS(5993), - [anon_sym___based] = ACTIONS(5993), - [anon_sym___cdecl] = ACTIONS(5993), - [anon_sym___clrcall] = ACTIONS(5993), - [anon_sym___stdcall] = ACTIONS(5993), - [anon_sym___fastcall] = ACTIONS(5993), - [anon_sym___thiscall] = ACTIONS(5993), - [anon_sym___vectorcall] = ACTIONS(5993), - [anon_sym_LBRACE] = ACTIONS(5995), - [anon_sym_signed] = ACTIONS(5993), - [anon_sym_unsigned] = ACTIONS(5993), - [anon_sym_long] = ACTIONS(5993), - [anon_sym_short] = ACTIONS(5993), - [anon_sym_LBRACK] = ACTIONS(5993), - [anon_sym_static] = ACTIONS(5993), - [anon_sym_register] = ACTIONS(5993), - [anon_sym_inline] = ACTIONS(5993), - [anon_sym___inline] = ACTIONS(5993), - [anon_sym___inline__] = ACTIONS(5993), - [anon_sym___forceinline] = ACTIONS(5993), - [anon_sym_thread_local] = ACTIONS(5993), - [anon_sym___thread] = ACTIONS(5993), - [anon_sym_const] = ACTIONS(5993), - [anon_sym_constexpr] = ACTIONS(5993), - [anon_sym_volatile] = ACTIONS(5993), - [anon_sym_restrict] = ACTIONS(5993), - [anon_sym___restrict__] = ACTIONS(5993), - [anon_sym__Atomic] = ACTIONS(5993), - [anon_sym__Noreturn] = ACTIONS(5993), - [anon_sym_noreturn] = ACTIONS(5993), - [anon_sym__Nonnull] = ACTIONS(5993), - [anon_sym_mutable] = ACTIONS(5993), - [anon_sym_constinit] = ACTIONS(5993), - [anon_sym_consteval] = ACTIONS(5993), - [anon_sym_alignas] = ACTIONS(5993), - [anon_sym__Alignas] = ACTIONS(5993), - [sym_primitive_type] = ACTIONS(5993), - [anon_sym_enum] = ACTIONS(5993), - [anon_sym_class] = ACTIONS(5993), - [anon_sym_struct] = ACTIONS(5993), - [anon_sym_union] = ACTIONS(5993), - [anon_sym_DASH_GT] = ACTIONS(5995), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5993), - [anon_sym_decltype] = ACTIONS(5993), - [anon_sym_explicit] = ACTIONS(5993), - [anon_sym_typename] = ACTIONS(5993), - [anon_sym_template] = ACTIONS(5993), - [anon_sym_operator] = ACTIONS(5993), - [anon_sym_friend] = ACTIONS(5993), - [anon_sym_noexcept] = ACTIONS(5993), - [anon_sym_throw] = ACTIONS(5993), - [anon_sym_concept] = ACTIONS(5993), - [anon_sym_requires] = ACTIONS(5993), + [2115] = { + [sym_identifier] = ACTIONS(2923), + [aux_sym_preproc_def_token1] = ACTIONS(2923), + [aux_sym_preproc_if_token1] = ACTIONS(2923), + [aux_sym_preproc_if_token2] = ACTIONS(2923), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2923), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2923), + [sym_preproc_directive] = ACTIONS(2923), + [anon_sym_LPAREN2] = ACTIONS(2925), + [anon_sym_TILDE] = ACTIONS(2925), + [anon_sym_STAR] = ACTIONS(2925), + [anon_sym_AMP_AMP] = ACTIONS(2925), + [anon_sym_AMP] = ACTIONS(2923), + [anon_sym_SEMI] = ACTIONS(2925), + [anon_sym___extension__] = ACTIONS(2923), + [anon_sym_typedef] = ACTIONS(2923), + [anon_sym_virtual] = ACTIONS(2923), + [anon_sym_extern] = ACTIONS(2923), + [anon_sym___attribute__] = ACTIONS(2923), + [anon_sym___attribute] = ACTIONS(2923), + [anon_sym_using] = ACTIONS(2923), + [anon_sym_COLON_COLON] = ACTIONS(2925), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2925), + [anon_sym___declspec] = ACTIONS(2923), + [anon_sym___based] = ACTIONS(2923), + [anon_sym_signed] = ACTIONS(2923), + [anon_sym_unsigned] = ACTIONS(2923), + [anon_sym_long] = ACTIONS(2923), + [anon_sym_short] = ACTIONS(2923), + [anon_sym_LBRACK] = ACTIONS(2923), + [anon_sym_static] = ACTIONS(2923), + [anon_sym_register] = ACTIONS(2923), + [anon_sym_inline] = ACTIONS(2923), + [anon_sym___inline] = ACTIONS(2923), + [anon_sym___inline__] = ACTIONS(2923), + [anon_sym___forceinline] = ACTIONS(2923), + [anon_sym_thread_local] = ACTIONS(2923), + [anon_sym___thread] = ACTIONS(2923), + [anon_sym_const] = ACTIONS(2923), + [anon_sym_constexpr] = ACTIONS(2923), + [anon_sym_volatile] = ACTIONS(2923), + [anon_sym_restrict] = ACTIONS(2923), + [anon_sym___restrict__] = ACTIONS(2923), + [anon_sym__Atomic] = ACTIONS(2923), + [anon_sym__Noreturn] = ACTIONS(2923), + [anon_sym_noreturn] = ACTIONS(2923), + [anon_sym__Nonnull] = ACTIONS(2923), + [anon_sym_mutable] = ACTIONS(2923), + [anon_sym_constinit] = ACTIONS(2923), + [anon_sym_consteval] = ACTIONS(2923), + [anon_sym_alignas] = ACTIONS(2923), + [anon_sym__Alignas] = ACTIONS(2923), + [sym_primitive_type] = ACTIONS(2923), + [anon_sym_enum] = ACTIONS(2923), + [anon_sym_class] = ACTIONS(2923), + [anon_sym_struct] = ACTIONS(2923), + [anon_sym_union] = ACTIONS(2923), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2923), + [anon_sym_decltype] = ACTIONS(2923), + [anon_sym_explicit] = ACTIONS(2923), + [anon_sym_typename] = ACTIONS(2923), + [anon_sym_private] = ACTIONS(2923), + [anon_sym_template] = ACTIONS(2923), + [anon_sym_operator] = ACTIONS(2923), + [anon_sym_friend] = ACTIONS(2923), + [anon_sym_public] = ACTIONS(2923), + [anon_sym_protected] = ACTIONS(2923), + [anon_sym_static_assert] = ACTIONS(2923), }, - [2057] = { - [sym_identifier] = ACTIONS(2939), - [aux_sym_preproc_def_token1] = ACTIONS(2939), - [aux_sym_preproc_if_token1] = ACTIONS(2939), - [aux_sym_preproc_if_token2] = ACTIONS(2939), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2939), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2939), - [sym_preproc_directive] = ACTIONS(2939), - [anon_sym_LPAREN2] = ACTIONS(2941), - [anon_sym_TILDE] = ACTIONS(2941), - [anon_sym_STAR] = ACTIONS(2941), - [anon_sym_AMP_AMP] = ACTIONS(2941), - [anon_sym_AMP] = ACTIONS(2939), - [anon_sym_SEMI] = ACTIONS(2941), - [anon_sym___extension__] = ACTIONS(2939), - [anon_sym_typedef] = ACTIONS(2939), - [anon_sym_virtual] = ACTIONS(2939), - [anon_sym_extern] = ACTIONS(2939), - [anon_sym___attribute__] = ACTIONS(2939), - [anon_sym___attribute] = ACTIONS(2939), - [anon_sym_using] = ACTIONS(2939), - [anon_sym_COLON_COLON] = ACTIONS(2941), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2941), - [anon_sym___declspec] = ACTIONS(2939), - [anon_sym___based] = ACTIONS(2939), - [anon_sym_signed] = ACTIONS(2939), - [anon_sym_unsigned] = ACTIONS(2939), - [anon_sym_long] = ACTIONS(2939), - [anon_sym_short] = ACTIONS(2939), - [anon_sym_LBRACK] = ACTIONS(2939), - [anon_sym_static] = ACTIONS(2939), - [anon_sym_register] = ACTIONS(2939), - [anon_sym_inline] = ACTIONS(2939), - [anon_sym___inline] = ACTIONS(2939), - [anon_sym___inline__] = ACTIONS(2939), - [anon_sym___forceinline] = ACTIONS(2939), - [anon_sym_thread_local] = ACTIONS(2939), - [anon_sym___thread] = ACTIONS(2939), - [anon_sym_const] = ACTIONS(2939), - [anon_sym_constexpr] = ACTIONS(2939), - [anon_sym_volatile] = ACTIONS(2939), - [anon_sym_restrict] = ACTIONS(2939), - [anon_sym___restrict__] = ACTIONS(2939), - [anon_sym__Atomic] = ACTIONS(2939), - [anon_sym__Noreturn] = ACTIONS(2939), - [anon_sym_noreturn] = ACTIONS(2939), - [anon_sym__Nonnull] = ACTIONS(2939), - [anon_sym_mutable] = ACTIONS(2939), - [anon_sym_constinit] = ACTIONS(2939), - [anon_sym_consteval] = ACTIONS(2939), - [anon_sym_alignas] = ACTIONS(2939), - [anon_sym__Alignas] = ACTIONS(2939), - [sym_primitive_type] = ACTIONS(2939), - [anon_sym_enum] = ACTIONS(2939), - [anon_sym_class] = ACTIONS(2939), - [anon_sym_struct] = ACTIONS(2939), - [anon_sym_union] = ACTIONS(2939), + [2116] = { + [sym_ms_based_modifier] = STATE(8286), + [sym_ms_unaligned_ptr_modifier] = STATE(4069), + [sym_ms_pointer_modifier] = STATE(3962), + [sym__declarator] = STATE(6451), + [sym__abstract_declarator] = STATE(6748), + [sym_parenthesized_declarator] = STATE(6145), + [sym_abstract_parenthesized_declarator] = STATE(6099), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_abstract_pointer_declarator] = STATE(6099), + [sym_function_declarator] = STATE(6145), + [sym_abstract_function_declarator] = STATE(6099), + [sym_array_declarator] = STATE(6145), + [sym_abstract_array_declarator] = STATE(6099), + [sym_type_qualifier] = STATE(2713), + [sym_alignas_qualifier] = STATE(4325), + [sym_parameter_list] = STATE(3276), + [sym_decltype] = STATE(8569), + [sym_reference_declarator] = STATE(6145), + [sym_abstract_reference_declarator] = STATE(6099), + [sym_structured_binding_declarator] = STATE(6145), + [sym__function_declarator_seq] = STATE(6109), + [sym_template_type] = STATE(8569), + [sym_template_function] = STATE(6145), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5896), + [sym_qualified_identifier] = STATE(6145), + [sym_operator_name] = STATE(6145), + [aux_sym__type_definition_type_repeat1] = STATE(2713), + [aux_sym_pointer_declarator_repeat1] = STATE(3962), + [sym_identifier] = ACTIONS(5861), + [anon_sym_COMMA] = ACTIONS(5877), + [anon_sym_LPAREN2] = ACTIONS(4310), + [anon_sym_TILDE] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(6014), + [anon_sym_AMP_AMP] = ACTIONS(6016), + [anon_sym_AMP] = ACTIONS(6018), + [anon_sym___extension__] = ACTIONS(3339), + [anon_sym___attribute__] = ACTIONS(5879), + [anon_sym___attribute] = ACTIONS(5879), + [anon_sym_COLON_COLON] = ACTIONS(5873), + [anon_sym___based] = ACTIONS(53), + [sym_ms_restrict_modifier] = ACTIONS(3335), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(3335), + [sym_ms_signed_ptr_modifier] = ACTIONS(3335), + [anon_sym__unaligned] = ACTIONS(3337), + [anon_sym___unaligned] = ACTIONS(3337), + [anon_sym_LBRACK] = ACTIONS(5875), + [anon_sym_const] = ACTIONS(3339), + [anon_sym_constexpr] = ACTIONS(3339), + [anon_sym_volatile] = ACTIONS(3339), + [anon_sym_restrict] = ACTIONS(3339), + [anon_sym___restrict__] = ACTIONS(3339), + [anon_sym__Atomic] = ACTIONS(3339), + [anon_sym__Noreturn] = ACTIONS(3339), + [anon_sym_noreturn] = ACTIONS(3339), + [anon_sym__Nonnull] = ACTIONS(3339), + [anon_sym_mutable] = ACTIONS(3339), + [anon_sym_constinit] = ACTIONS(3339), + [anon_sym_consteval] = ACTIONS(3339), + [anon_sym_alignas] = ACTIONS(3341), + [anon_sym__Alignas] = ACTIONS(3341), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2939), - [anon_sym_decltype] = ACTIONS(2939), - [anon_sym_explicit] = ACTIONS(2939), - [anon_sym_typename] = ACTIONS(2939), - [anon_sym_private] = ACTIONS(2939), - [anon_sym_template] = ACTIONS(2939), - [anon_sym_operator] = ACTIONS(2939), - [anon_sym_friend] = ACTIONS(2939), - [anon_sym_public] = ACTIONS(2939), - [anon_sym_protected] = ACTIONS(2939), - [anon_sym_static_assert] = ACTIONS(2939), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_GT2] = ACTIONS(5877), + [anon_sym_operator] = ACTIONS(1850), }, - [2058] = { - [sym_identifier] = ACTIONS(5609), - [aux_sym_preproc_def_token1] = ACTIONS(5609), - [aux_sym_preproc_if_token1] = ACTIONS(5609), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5609), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5609), - [sym_preproc_directive] = ACTIONS(5609), - [anon_sym_LPAREN2] = ACTIONS(5611), - [anon_sym_TILDE] = ACTIONS(5611), - [anon_sym_STAR] = ACTIONS(5611), - [anon_sym_AMP_AMP] = ACTIONS(5611), - [anon_sym_AMP] = ACTIONS(5609), - [anon_sym_SEMI] = ACTIONS(5611), - [anon_sym___extension__] = ACTIONS(5609), - [anon_sym_typedef] = ACTIONS(5609), - [anon_sym_virtual] = ACTIONS(5609), - [anon_sym_extern] = ACTIONS(5609), - [anon_sym___attribute__] = ACTIONS(5609), - [anon_sym___attribute] = ACTIONS(5609), - [anon_sym_using] = ACTIONS(5609), - [anon_sym_COLON_COLON] = ACTIONS(5611), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5611), - [anon_sym___declspec] = ACTIONS(5609), - [anon_sym___based] = ACTIONS(5609), - [anon_sym_RBRACE] = ACTIONS(5611), - [anon_sym_signed] = ACTIONS(5609), - [anon_sym_unsigned] = ACTIONS(5609), - [anon_sym_long] = ACTIONS(5609), - [anon_sym_short] = ACTIONS(5609), - [anon_sym_LBRACK] = ACTIONS(5609), - [anon_sym_static] = ACTIONS(5609), - [anon_sym_register] = ACTIONS(5609), - [anon_sym_inline] = ACTIONS(5609), - [anon_sym___inline] = ACTIONS(5609), - [anon_sym___inline__] = ACTIONS(5609), - [anon_sym___forceinline] = ACTIONS(5609), - [anon_sym_thread_local] = ACTIONS(5609), - [anon_sym___thread] = ACTIONS(5609), - [anon_sym_const] = ACTIONS(5609), - [anon_sym_constexpr] = ACTIONS(5609), - [anon_sym_volatile] = ACTIONS(5609), - [anon_sym_restrict] = ACTIONS(5609), - [anon_sym___restrict__] = ACTIONS(5609), - [anon_sym__Atomic] = ACTIONS(5609), - [anon_sym__Noreturn] = ACTIONS(5609), - [anon_sym_noreturn] = ACTIONS(5609), - [anon_sym__Nonnull] = ACTIONS(5609), - [anon_sym_mutable] = ACTIONS(5609), - [anon_sym_constinit] = ACTIONS(5609), - [anon_sym_consteval] = ACTIONS(5609), - [anon_sym_alignas] = ACTIONS(5609), - [anon_sym__Alignas] = ACTIONS(5609), - [sym_primitive_type] = ACTIONS(5609), - [anon_sym_enum] = ACTIONS(5609), - [anon_sym_class] = ACTIONS(5609), - [anon_sym_struct] = ACTIONS(5609), - [anon_sym_union] = ACTIONS(5609), + [2117] = { + [sym_identifier] = ACTIONS(3047), + [aux_sym_preproc_def_token1] = ACTIONS(3047), + [aux_sym_preproc_if_token1] = ACTIONS(3047), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3047), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3047), + [sym_preproc_directive] = ACTIONS(3047), + [anon_sym_LPAREN2] = ACTIONS(3049), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(3049), + [anon_sym_AMP_AMP] = ACTIONS(3049), + [anon_sym_AMP] = ACTIONS(3047), + [anon_sym_SEMI] = ACTIONS(3049), + [anon_sym___extension__] = ACTIONS(3047), + [anon_sym_typedef] = ACTIONS(3047), + [anon_sym_virtual] = ACTIONS(3047), + [anon_sym_extern] = ACTIONS(3047), + [anon_sym___attribute__] = ACTIONS(3047), + [anon_sym___attribute] = ACTIONS(3047), + [anon_sym_using] = ACTIONS(3047), + [anon_sym_COLON_COLON] = ACTIONS(3049), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3049), + [anon_sym___declspec] = ACTIONS(3047), + [anon_sym___based] = ACTIONS(3047), + [anon_sym_RBRACE] = ACTIONS(3049), + [anon_sym_signed] = ACTIONS(3047), + [anon_sym_unsigned] = ACTIONS(3047), + [anon_sym_long] = ACTIONS(3047), + [anon_sym_short] = ACTIONS(3047), + [anon_sym_LBRACK] = ACTIONS(3047), + [anon_sym_static] = ACTIONS(3047), + [anon_sym_register] = ACTIONS(3047), + [anon_sym_inline] = ACTIONS(3047), + [anon_sym___inline] = ACTIONS(3047), + [anon_sym___inline__] = ACTIONS(3047), + [anon_sym___forceinline] = ACTIONS(3047), + [anon_sym_thread_local] = ACTIONS(3047), + [anon_sym___thread] = ACTIONS(3047), + [anon_sym_const] = ACTIONS(3047), + [anon_sym_constexpr] = ACTIONS(3047), + [anon_sym_volatile] = ACTIONS(3047), + [anon_sym_restrict] = ACTIONS(3047), + [anon_sym___restrict__] = ACTIONS(3047), + [anon_sym__Atomic] = ACTIONS(3047), + [anon_sym__Noreturn] = ACTIONS(3047), + [anon_sym_noreturn] = ACTIONS(3047), + [anon_sym__Nonnull] = ACTIONS(3047), + [anon_sym_mutable] = ACTIONS(3047), + [anon_sym_constinit] = ACTIONS(3047), + [anon_sym_consteval] = ACTIONS(3047), + [anon_sym_alignas] = ACTIONS(3047), + [anon_sym__Alignas] = ACTIONS(3047), + [sym_primitive_type] = ACTIONS(3047), + [anon_sym_enum] = ACTIONS(3047), + [anon_sym_class] = ACTIONS(3047), + [anon_sym_struct] = ACTIONS(3047), + [anon_sym_union] = ACTIONS(3047), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3047), + [anon_sym_decltype] = ACTIONS(3047), + [anon_sym_explicit] = ACTIONS(3047), + [anon_sym_typename] = ACTIONS(3047), + [anon_sym_private] = ACTIONS(3047), + [anon_sym_template] = ACTIONS(3047), + [anon_sym_operator] = ACTIONS(3047), + [anon_sym_friend] = ACTIONS(3047), + [anon_sym_public] = ACTIONS(3047), + [anon_sym_protected] = ACTIONS(3047), + [anon_sym_static_assert] = ACTIONS(3047), + }, + [2118] = { + [sym_identifier] = ACTIONS(2803), + [aux_sym_preproc_def_token1] = ACTIONS(2803), + [aux_sym_preproc_if_token1] = ACTIONS(2803), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2803), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2803), + [sym_preproc_directive] = ACTIONS(2803), + [anon_sym_LPAREN2] = ACTIONS(2805), + [anon_sym_TILDE] = ACTIONS(2805), + [anon_sym_STAR] = ACTIONS(2805), + [anon_sym_AMP_AMP] = ACTIONS(2805), + [anon_sym_AMP] = ACTIONS(2803), + [anon_sym_SEMI] = ACTIONS(2805), + [anon_sym___extension__] = ACTIONS(2803), + [anon_sym_typedef] = ACTIONS(2803), + [anon_sym_virtual] = ACTIONS(2803), + [anon_sym_extern] = ACTIONS(2803), + [anon_sym___attribute__] = ACTIONS(2803), + [anon_sym___attribute] = ACTIONS(2803), + [anon_sym_using] = ACTIONS(2803), + [anon_sym_COLON_COLON] = ACTIONS(2805), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2805), + [anon_sym___declspec] = ACTIONS(2803), + [anon_sym___based] = ACTIONS(2803), + [anon_sym_RBRACE] = ACTIONS(2805), + [anon_sym_signed] = ACTIONS(2803), + [anon_sym_unsigned] = ACTIONS(2803), + [anon_sym_long] = ACTIONS(2803), + [anon_sym_short] = ACTIONS(2803), + [anon_sym_LBRACK] = ACTIONS(2803), + [anon_sym_static] = ACTIONS(2803), + [anon_sym_register] = ACTIONS(2803), + [anon_sym_inline] = ACTIONS(2803), + [anon_sym___inline] = ACTIONS(2803), + [anon_sym___inline__] = ACTIONS(2803), + [anon_sym___forceinline] = ACTIONS(2803), + [anon_sym_thread_local] = ACTIONS(2803), + [anon_sym___thread] = ACTIONS(2803), + [anon_sym_const] = ACTIONS(2803), + [anon_sym_constexpr] = ACTIONS(2803), + [anon_sym_volatile] = ACTIONS(2803), + [anon_sym_restrict] = ACTIONS(2803), + [anon_sym___restrict__] = ACTIONS(2803), + [anon_sym__Atomic] = ACTIONS(2803), + [anon_sym__Noreturn] = ACTIONS(2803), + [anon_sym_noreturn] = ACTIONS(2803), + [anon_sym__Nonnull] = ACTIONS(2803), + [anon_sym_mutable] = ACTIONS(2803), + [anon_sym_constinit] = ACTIONS(2803), + [anon_sym_consteval] = ACTIONS(2803), + [anon_sym_alignas] = ACTIONS(2803), + [anon_sym__Alignas] = ACTIONS(2803), + [sym_primitive_type] = ACTIONS(2803), + [anon_sym_enum] = ACTIONS(2803), + [anon_sym_class] = ACTIONS(2803), + [anon_sym_struct] = ACTIONS(2803), + [anon_sym_union] = ACTIONS(2803), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5609), - [anon_sym_decltype] = ACTIONS(5609), - [anon_sym_explicit] = ACTIONS(5609), - [anon_sym_typename] = ACTIONS(5609), - [anon_sym_private] = ACTIONS(5609), - [anon_sym_template] = ACTIONS(5609), - [anon_sym_operator] = ACTIONS(5609), - [anon_sym_friend] = ACTIONS(5609), - [anon_sym_public] = ACTIONS(5609), - [anon_sym_protected] = ACTIONS(5609), - [anon_sym_static_assert] = ACTIONS(5609), + [sym_auto] = ACTIONS(2803), + [anon_sym_decltype] = ACTIONS(2803), + [anon_sym_explicit] = ACTIONS(2803), + [anon_sym_typename] = ACTIONS(2803), + [anon_sym_private] = ACTIONS(2803), + [anon_sym_template] = ACTIONS(2803), + [anon_sym_operator] = ACTIONS(2803), + [anon_sym_friend] = ACTIONS(2803), + [anon_sym_public] = ACTIONS(2803), + [anon_sym_protected] = ACTIONS(2803), + [anon_sym_static_assert] = ACTIONS(2803), }, - [2059] = { - [sym_identifier] = ACTIONS(5613), - [aux_sym_preproc_def_token1] = ACTIONS(5613), - [aux_sym_preproc_if_token1] = ACTIONS(5613), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5613), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5613), - [sym_preproc_directive] = ACTIONS(5613), - [anon_sym_LPAREN2] = ACTIONS(5615), - [anon_sym_TILDE] = ACTIONS(5615), - [anon_sym_STAR] = ACTIONS(5615), - [anon_sym_AMP_AMP] = ACTIONS(5615), - [anon_sym_AMP] = ACTIONS(5613), - [anon_sym_SEMI] = ACTIONS(5615), - [anon_sym___extension__] = ACTIONS(5613), - [anon_sym_typedef] = ACTIONS(5613), - [anon_sym_virtual] = ACTIONS(5613), - [anon_sym_extern] = ACTIONS(5613), - [anon_sym___attribute__] = ACTIONS(5613), - [anon_sym___attribute] = ACTIONS(5613), - [anon_sym_using] = ACTIONS(5613), - [anon_sym_COLON_COLON] = ACTIONS(5615), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5615), - [anon_sym___declspec] = ACTIONS(5613), - [anon_sym___based] = ACTIONS(5613), - [anon_sym_RBRACE] = ACTIONS(5615), - [anon_sym_signed] = ACTIONS(5613), - [anon_sym_unsigned] = ACTIONS(5613), - [anon_sym_long] = ACTIONS(5613), - [anon_sym_short] = ACTIONS(5613), - [anon_sym_LBRACK] = ACTIONS(5613), - [anon_sym_static] = ACTIONS(5613), - [anon_sym_register] = ACTIONS(5613), - [anon_sym_inline] = ACTIONS(5613), - [anon_sym___inline] = ACTIONS(5613), - [anon_sym___inline__] = ACTIONS(5613), - [anon_sym___forceinline] = ACTIONS(5613), - [anon_sym_thread_local] = ACTIONS(5613), - [anon_sym___thread] = ACTIONS(5613), - [anon_sym_const] = ACTIONS(5613), - [anon_sym_constexpr] = ACTIONS(5613), - [anon_sym_volatile] = ACTIONS(5613), - [anon_sym_restrict] = ACTIONS(5613), - [anon_sym___restrict__] = ACTIONS(5613), - [anon_sym__Atomic] = ACTIONS(5613), - [anon_sym__Noreturn] = ACTIONS(5613), - [anon_sym_noreturn] = ACTIONS(5613), - [anon_sym__Nonnull] = ACTIONS(5613), - [anon_sym_mutable] = ACTIONS(5613), - [anon_sym_constinit] = ACTIONS(5613), - [anon_sym_consteval] = ACTIONS(5613), - [anon_sym_alignas] = ACTIONS(5613), - [anon_sym__Alignas] = ACTIONS(5613), - [sym_primitive_type] = ACTIONS(5613), - [anon_sym_enum] = ACTIONS(5613), - [anon_sym_class] = ACTIONS(5613), - [anon_sym_struct] = ACTIONS(5613), - [anon_sym_union] = ACTIONS(5613), + [2119] = { + [sym_identifier] = ACTIONS(2827), + [aux_sym_preproc_def_token1] = ACTIONS(2827), + [aux_sym_preproc_if_token1] = ACTIONS(2827), + [aux_sym_preproc_if_token2] = ACTIONS(2827), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2827), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2827), + [sym_preproc_directive] = ACTIONS(2827), + [anon_sym_LPAREN2] = ACTIONS(2829), + [anon_sym_TILDE] = ACTIONS(2829), + [anon_sym_STAR] = ACTIONS(2829), + [anon_sym_AMP_AMP] = ACTIONS(2829), + [anon_sym_AMP] = ACTIONS(2827), + [anon_sym_SEMI] = ACTIONS(2829), + [anon_sym___extension__] = ACTIONS(2827), + [anon_sym_typedef] = ACTIONS(2827), + [anon_sym_virtual] = ACTIONS(2827), + [anon_sym_extern] = ACTIONS(2827), + [anon_sym___attribute__] = ACTIONS(2827), + [anon_sym___attribute] = ACTIONS(2827), + [anon_sym_using] = ACTIONS(2827), + [anon_sym_COLON_COLON] = ACTIONS(2829), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2829), + [anon_sym___declspec] = ACTIONS(2827), + [anon_sym___based] = ACTIONS(2827), + [anon_sym_signed] = ACTIONS(2827), + [anon_sym_unsigned] = ACTIONS(2827), + [anon_sym_long] = ACTIONS(2827), + [anon_sym_short] = ACTIONS(2827), + [anon_sym_LBRACK] = ACTIONS(2827), + [anon_sym_static] = ACTIONS(2827), + [anon_sym_register] = ACTIONS(2827), + [anon_sym_inline] = ACTIONS(2827), + [anon_sym___inline] = ACTIONS(2827), + [anon_sym___inline__] = ACTIONS(2827), + [anon_sym___forceinline] = ACTIONS(2827), + [anon_sym_thread_local] = ACTIONS(2827), + [anon_sym___thread] = ACTIONS(2827), + [anon_sym_const] = ACTIONS(2827), + [anon_sym_constexpr] = ACTIONS(2827), + [anon_sym_volatile] = ACTIONS(2827), + [anon_sym_restrict] = ACTIONS(2827), + [anon_sym___restrict__] = ACTIONS(2827), + [anon_sym__Atomic] = ACTIONS(2827), + [anon_sym__Noreturn] = ACTIONS(2827), + [anon_sym_noreturn] = ACTIONS(2827), + [anon_sym__Nonnull] = ACTIONS(2827), + [anon_sym_mutable] = ACTIONS(2827), + [anon_sym_constinit] = ACTIONS(2827), + [anon_sym_consteval] = ACTIONS(2827), + [anon_sym_alignas] = ACTIONS(2827), + [anon_sym__Alignas] = ACTIONS(2827), + [sym_primitive_type] = ACTIONS(2827), + [anon_sym_enum] = ACTIONS(2827), + [anon_sym_class] = ACTIONS(2827), + [anon_sym_struct] = ACTIONS(2827), + [anon_sym_union] = ACTIONS(2827), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5613), - [anon_sym_decltype] = ACTIONS(5613), - [anon_sym_explicit] = ACTIONS(5613), - [anon_sym_typename] = ACTIONS(5613), - [anon_sym_private] = ACTIONS(5613), - [anon_sym_template] = ACTIONS(5613), - [anon_sym_operator] = ACTIONS(5613), - [anon_sym_friend] = ACTIONS(5613), - [anon_sym_public] = ACTIONS(5613), - [anon_sym_protected] = ACTIONS(5613), - [anon_sym_static_assert] = ACTIONS(5613), + [sym_auto] = ACTIONS(2827), + [anon_sym_decltype] = ACTIONS(2827), + [anon_sym_explicit] = ACTIONS(2827), + [anon_sym_typename] = ACTIONS(2827), + [anon_sym_private] = ACTIONS(2827), + [anon_sym_template] = ACTIONS(2827), + [anon_sym_operator] = ACTIONS(2827), + [anon_sym_friend] = ACTIONS(2827), + [anon_sym_public] = ACTIONS(2827), + [anon_sym_protected] = ACTIONS(2827), + [anon_sym_static_assert] = ACTIONS(2827), }, - [2060] = { - [sym_identifier] = ACTIONS(5609), - [aux_sym_preproc_def_token1] = ACTIONS(5609), - [aux_sym_preproc_if_token1] = ACTIONS(5609), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5609), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5609), - [sym_preproc_directive] = ACTIONS(5609), - [anon_sym_LPAREN2] = ACTIONS(5611), - [anon_sym_TILDE] = ACTIONS(5611), - [anon_sym_STAR] = ACTIONS(5611), - [anon_sym_AMP_AMP] = ACTIONS(5611), - [anon_sym_AMP] = ACTIONS(5609), - [anon_sym_SEMI] = ACTIONS(5611), - [anon_sym___extension__] = ACTIONS(5609), - [anon_sym_typedef] = ACTIONS(5609), - [anon_sym_virtual] = ACTIONS(5609), - [anon_sym_extern] = ACTIONS(5609), - [anon_sym___attribute__] = ACTIONS(5609), - [anon_sym___attribute] = ACTIONS(5609), - [anon_sym_using] = ACTIONS(5609), - [anon_sym_COLON_COLON] = ACTIONS(5611), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5611), - [anon_sym___declspec] = ACTIONS(5609), - [anon_sym___based] = ACTIONS(5609), - [anon_sym_RBRACE] = ACTIONS(5611), - [anon_sym_signed] = ACTIONS(5609), - [anon_sym_unsigned] = ACTIONS(5609), - [anon_sym_long] = ACTIONS(5609), - [anon_sym_short] = ACTIONS(5609), - [anon_sym_LBRACK] = ACTIONS(5609), - [anon_sym_static] = ACTIONS(5609), - [anon_sym_register] = ACTIONS(5609), - [anon_sym_inline] = ACTIONS(5609), - [anon_sym___inline] = ACTIONS(5609), - [anon_sym___inline__] = ACTIONS(5609), - [anon_sym___forceinline] = ACTIONS(5609), - [anon_sym_thread_local] = ACTIONS(5609), - [anon_sym___thread] = ACTIONS(5609), - [anon_sym_const] = ACTIONS(5609), - [anon_sym_constexpr] = ACTIONS(5609), - [anon_sym_volatile] = ACTIONS(5609), - [anon_sym_restrict] = ACTIONS(5609), - [anon_sym___restrict__] = ACTIONS(5609), - [anon_sym__Atomic] = ACTIONS(5609), - [anon_sym__Noreturn] = ACTIONS(5609), - [anon_sym_noreturn] = ACTIONS(5609), - [anon_sym__Nonnull] = ACTIONS(5609), - [anon_sym_mutable] = ACTIONS(5609), - [anon_sym_constinit] = ACTIONS(5609), - [anon_sym_consteval] = ACTIONS(5609), - [anon_sym_alignas] = ACTIONS(5609), - [anon_sym__Alignas] = ACTIONS(5609), - [sym_primitive_type] = ACTIONS(5609), - [anon_sym_enum] = ACTIONS(5609), - [anon_sym_class] = ACTIONS(5609), - [anon_sym_struct] = ACTIONS(5609), - [anon_sym_union] = ACTIONS(5609), + [2120] = { + [sym_identifier] = ACTIONS(2927), + [aux_sym_preproc_def_token1] = ACTIONS(2927), + [aux_sym_preproc_if_token1] = ACTIONS(2927), + [aux_sym_preproc_if_token2] = ACTIONS(2927), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2927), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2927), + [sym_preproc_directive] = ACTIONS(2927), + [anon_sym_LPAREN2] = ACTIONS(2929), + [anon_sym_TILDE] = ACTIONS(2929), + [anon_sym_STAR] = ACTIONS(2929), + [anon_sym_AMP_AMP] = ACTIONS(2929), + [anon_sym_AMP] = ACTIONS(2927), + [anon_sym_SEMI] = ACTIONS(2929), + [anon_sym___extension__] = ACTIONS(2927), + [anon_sym_typedef] = ACTIONS(2927), + [anon_sym_virtual] = ACTIONS(2927), + [anon_sym_extern] = ACTIONS(2927), + [anon_sym___attribute__] = ACTIONS(2927), + [anon_sym___attribute] = ACTIONS(2927), + [anon_sym_using] = ACTIONS(2927), + [anon_sym_COLON_COLON] = ACTIONS(2929), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2929), + [anon_sym___declspec] = ACTIONS(2927), + [anon_sym___based] = ACTIONS(2927), + [anon_sym_signed] = ACTIONS(2927), + [anon_sym_unsigned] = ACTIONS(2927), + [anon_sym_long] = ACTIONS(2927), + [anon_sym_short] = ACTIONS(2927), + [anon_sym_LBRACK] = ACTIONS(2927), + [anon_sym_static] = ACTIONS(2927), + [anon_sym_register] = ACTIONS(2927), + [anon_sym_inline] = ACTIONS(2927), + [anon_sym___inline] = ACTIONS(2927), + [anon_sym___inline__] = ACTIONS(2927), + [anon_sym___forceinline] = ACTIONS(2927), + [anon_sym_thread_local] = ACTIONS(2927), + [anon_sym___thread] = ACTIONS(2927), + [anon_sym_const] = ACTIONS(2927), + [anon_sym_constexpr] = ACTIONS(2927), + [anon_sym_volatile] = ACTIONS(2927), + [anon_sym_restrict] = ACTIONS(2927), + [anon_sym___restrict__] = ACTIONS(2927), + [anon_sym__Atomic] = ACTIONS(2927), + [anon_sym__Noreturn] = ACTIONS(2927), + [anon_sym_noreturn] = ACTIONS(2927), + [anon_sym__Nonnull] = ACTIONS(2927), + [anon_sym_mutable] = ACTIONS(2927), + [anon_sym_constinit] = ACTIONS(2927), + [anon_sym_consteval] = ACTIONS(2927), + [anon_sym_alignas] = ACTIONS(2927), + [anon_sym__Alignas] = ACTIONS(2927), + [sym_primitive_type] = ACTIONS(2927), + [anon_sym_enum] = ACTIONS(2927), + [anon_sym_class] = ACTIONS(2927), + [anon_sym_struct] = ACTIONS(2927), + [anon_sym_union] = ACTIONS(2927), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5609), - [anon_sym_decltype] = ACTIONS(5609), - [anon_sym_explicit] = ACTIONS(5609), - [anon_sym_typename] = ACTIONS(5609), - [anon_sym_private] = ACTIONS(5609), - [anon_sym_template] = ACTIONS(5609), - [anon_sym_operator] = ACTIONS(5609), - [anon_sym_friend] = ACTIONS(5609), - [anon_sym_public] = ACTIONS(5609), - [anon_sym_protected] = ACTIONS(5609), - [anon_sym_static_assert] = ACTIONS(5609), + [sym_auto] = ACTIONS(2927), + [anon_sym_decltype] = ACTIONS(2927), + [anon_sym_explicit] = ACTIONS(2927), + [anon_sym_typename] = ACTIONS(2927), + [anon_sym_private] = ACTIONS(2927), + [anon_sym_template] = ACTIONS(2927), + [anon_sym_operator] = ACTIONS(2927), + [anon_sym_friend] = ACTIONS(2927), + [anon_sym_public] = ACTIONS(2927), + [anon_sym_protected] = ACTIONS(2927), + [anon_sym_static_assert] = ACTIONS(2927), }, - [2061] = { - [sym__declaration_modifiers] = STATE(3269), - [sym_attribute_specifier] = STATE(3269), - [sym_attribute_declaration] = STATE(3269), - [sym_ms_declspec_modifier] = STATE(3269), - [sym_storage_class_specifier] = STATE(3269), - [sym_type_qualifier] = STATE(3269), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2385), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym_dependent_type] = STATE(2523), - [sym_template_type] = STATE(2406), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(6606), - [sym_qualified_type_identifier] = STATE(3015), - [aux_sym__declaration_specifiers_repeat1] = STATE(3269), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [sym_identifier] = ACTIONS(5010), + [2121] = { + [sym__declaration_modifiers] = STATE(3258), + [sym_attribute_specifier] = STATE(3258), + [sym_attribute_declaration] = STATE(3258), + [sym_ms_declspec_modifier] = STATE(3258), + [sym_storage_class_specifier] = STATE(3258), + [sym_type_qualifier] = STATE(3258), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(2424), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym_dependent_type] = STATE(2558), + [sym_template_type] = STATE(2439), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(6746), + [sym_qualified_type_identifier] = STATE(3138), + [aux_sym__declaration_specifiers_repeat1] = STATE(3258), + [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(5018), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(5958), + [anon_sym_virtual] = ACTIONS(6039), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5020), + [anon_sym_COLON_COLON] = ACTIONS(5028), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), [anon_sym_signed] = ACTIONS(59), @@ -273174,298 +279041,508 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(69), [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2999), - [anon_sym_enum] = ACTIONS(1884), - [anon_sym_class] = ACTIONS(1886), - [anon_sym_struct] = ACTIONS(1888), - [anon_sym_union] = ACTIONS(1890), + [sym_primitive_type] = ACTIONS(3019), + [anon_sym_enum] = ACTIONS(1874), + [anon_sym_class] = ACTIONS(1876), + [anon_sym_struct] = ACTIONS(1878), + [anon_sym_union] = ACTIONS(1880), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(1914), - [anon_sym_template] = ACTIONS(1452), + [anon_sym_typename] = ACTIONS(1882), + [anon_sym_template] = ACTIONS(1268), }, - [2062] = { - [sym_identifier] = ACTIONS(5613), - [aux_sym_preproc_def_token1] = ACTIONS(5613), - [aux_sym_preproc_if_token1] = ACTIONS(5613), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5613), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5613), - [sym_preproc_directive] = ACTIONS(5613), - [anon_sym_LPAREN2] = ACTIONS(5615), - [anon_sym_TILDE] = ACTIONS(5615), - [anon_sym_STAR] = ACTIONS(5615), - [anon_sym_AMP_AMP] = ACTIONS(5615), - [anon_sym_AMP] = ACTIONS(5613), - [anon_sym_SEMI] = ACTIONS(5615), - [anon_sym___extension__] = ACTIONS(5613), - [anon_sym_typedef] = ACTIONS(5613), - [anon_sym_virtual] = ACTIONS(5613), - [anon_sym_extern] = ACTIONS(5613), - [anon_sym___attribute__] = ACTIONS(5613), - [anon_sym___attribute] = ACTIONS(5613), - [anon_sym_using] = ACTIONS(5613), - [anon_sym_COLON_COLON] = ACTIONS(5615), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5615), - [anon_sym___declspec] = ACTIONS(5613), - [anon_sym___based] = ACTIONS(5613), - [anon_sym_RBRACE] = ACTIONS(5615), - [anon_sym_signed] = ACTIONS(5613), - [anon_sym_unsigned] = ACTIONS(5613), - [anon_sym_long] = ACTIONS(5613), - [anon_sym_short] = ACTIONS(5613), - [anon_sym_LBRACK] = ACTIONS(5613), - [anon_sym_static] = ACTIONS(5613), - [anon_sym_register] = ACTIONS(5613), - [anon_sym_inline] = ACTIONS(5613), - [anon_sym___inline] = ACTIONS(5613), - [anon_sym___inline__] = ACTIONS(5613), - [anon_sym___forceinline] = ACTIONS(5613), - [anon_sym_thread_local] = ACTIONS(5613), - [anon_sym___thread] = ACTIONS(5613), - [anon_sym_const] = ACTIONS(5613), - [anon_sym_constexpr] = ACTIONS(5613), - [anon_sym_volatile] = ACTIONS(5613), - [anon_sym_restrict] = ACTIONS(5613), - [anon_sym___restrict__] = ACTIONS(5613), - [anon_sym__Atomic] = ACTIONS(5613), - [anon_sym__Noreturn] = ACTIONS(5613), - [anon_sym_noreturn] = ACTIONS(5613), - [anon_sym__Nonnull] = ACTIONS(5613), - [anon_sym_mutable] = ACTIONS(5613), - [anon_sym_constinit] = ACTIONS(5613), - [anon_sym_consteval] = ACTIONS(5613), - [anon_sym_alignas] = ACTIONS(5613), - [anon_sym__Alignas] = ACTIONS(5613), - [sym_primitive_type] = ACTIONS(5613), - [anon_sym_enum] = ACTIONS(5613), - [anon_sym_class] = ACTIONS(5613), - [anon_sym_struct] = ACTIONS(5613), - [anon_sym_union] = ACTIONS(5613), + [2122] = { + [sym_identifier] = ACTIONS(2927), + [aux_sym_preproc_def_token1] = ACTIONS(2927), + [aux_sym_preproc_if_token1] = ACTIONS(2927), + [aux_sym_preproc_if_token2] = ACTIONS(2927), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2927), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2927), + [sym_preproc_directive] = ACTIONS(2927), + [anon_sym_LPAREN2] = ACTIONS(2929), + [anon_sym_TILDE] = ACTIONS(2929), + [anon_sym_STAR] = ACTIONS(2929), + [anon_sym_AMP_AMP] = ACTIONS(2929), + [anon_sym_AMP] = ACTIONS(2927), + [anon_sym_SEMI] = ACTIONS(2929), + [anon_sym___extension__] = ACTIONS(2927), + [anon_sym_typedef] = ACTIONS(2927), + [anon_sym_virtual] = ACTIONS(2927), + [anon_sym_extern] = ACTIONS(2927), + [anon_sym___attribute__] = ACTIONS(2927), + [anon_sym___attribute] = ACTIONS(2927), + [anon_sym_using] = ACTIONS(2927), + [anon_sym_COLON_COLON] = ACTIONS(2929), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2929), + [anon_sym___declspec] = ACTIONS(2927), + [anon_sym___based] = ACTIONS(2927), + [anon_sym_signed] = ACTIONS(2927), + [anon_sym_unsigned] = ACTIONS(2927), + [anon_sym_long] = ACTIONS(2927), + [anon_sym_short] = ACTIONS(2927), + [anon_sym_LBRACK] = ACTIONS(2927), + [anon_sym_static] = ACTIONS(2927), + [anon_sym_register] = ACTIONS(2927), + [anon_sym_inline] = ACTIONS(2927), + [anon_sym___inline] = ACTIONS(2927), + [anon_sym___inline__] = ACTIONS(2927), + [anon_sym___forceinline] = ACTIONS(2927), + [anon_sym_thread_local] = ACTIONS(2927), + [anon_sym___thread] = ACTIONS(2927), + [anon_sym_const] = ACTIONS(2927), + [anon_sym_constexpr] = ACTIONS(2927), + [anon_sym_volatile] = ACTIONS(2927), + [anon_sym_restrict] = ACTIONS(2927), + [anon_sym___restrict__] = ACTIONS(2927), + [anon_sym__Atomic] = ACTIONS(2927), + [anon_sym__Noreturn] = ACTIONS(2927), + [anon_sym_noreturn] = ACTIONS(2927), + [anon_sym__Nonnull] = ACTIONS(2927), + [anon_sym_mutable] = ACTIONS(2927), + [anon_sym_constinit] = ACTIONS(2927), + [anon_sym_consteval] = ACTIONS(2927), + [anon_sym_alignas] = ACTIONS(2927), + [anon_sym__Alignas] = ACTIONS(2927), + [sym_primitive_type] = ACTIONS(2927), + [anon_sym_enum] = ACTIONS(2927), + [anon_sym_class] = ACTIONS(2927), + [anon_sym_struct] = ACTIONS(2927), + [anon_sym_union] = ACTIONS(2927), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5613), - [anon_sym_decltype] = ACTIONS(5613), - [anon_sym_explicit] = ACTIONS(5613), - [anon_sym_typename] = ACTIONS(5613), - [anon_sym_private] = ACTIONS(5613), - [anon_sym_template] = ACTIONS(5613), - [anon_sym_operator] = ACTIONS(5613), - [anon_sym_friend] = ACTIONS(5613), - [anon_sym_public] = ACTIONS(5613), - [anon_sym_protected] = ACTIONS(5613), - [anon_sym_static_assert] = ACTIONS(5613), + [sym_auto] = ACTIONS(2927), + [anon_sym_decltype] = ACTIONS(2927), + [anon_sym_explicit] = ACTIONS(2927), + [anon_sym_typename] = ACTIONS(2927), + [anon_sym_private] = ACTIONS(2927), + [anon_sym_template] = ACTIONS(2927), + [anon_sym_operator] = ACTIONS(2927), + [anon_sym_friend] = ACTIONS(2927), + [anon_sym_public] = ACTIONS(2927), + [anon_sym_protected] = ACTIONS(2927), + [anon_sym_static_assert] = ACTIONS(2927), }, - [2063] = { - [sym_identifier] = ACTIONS(5621), - [aux_sym_preproc_def_token1] = ACTIONS(5621), - [aux_sym_preproc_if_token1] = ACTIONS(5621), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5621), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5621), - [sym_preproc_directive] = ACTIONS(5621), - [anon_sym_LPAREN2] = ACTIONS(5623), - [anon_sym_TILDE] = ACTIONS(5623), - [anon_sym_STAR] = ACTIONS(5623), - [anon_sym_AMP_AMP] = ACTIONS(5623), - [anon_sym_AMP] = ACTIONS(5621), - [anon_sym_SEMI] = ACTIONS(5623), - [anon_sym___extension__] = ACTIONS(5621), - [anon_sym_typedef] = ACTIONS(5621), - [anon_sym_virtual] = ACTIONS(5621), - [anon_sym_extern] = ACTIONS(5621), - [anon_sym___attribute__] = ACTIONS(5621), - [anon_sym___attribute] = ACTIONS(5621), - [anon_sym_using] = ACTIONS(5621), - [anon_sym_COLON_COLON] = ACTIONS(5623), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5623), - [anon_sym___declspec] = ACTIONS(5621), - [anon_sym___based] = ACTIONS(5621), - [anon_sym_RBRACE] = ACTIONS(5623), - [anon_sym_signed] = ACTIONS(5621), - [anon_sym_unsigned] = ACTIONS(5621), - [anon_sym_long] = ACTIONS(5621), - [anon_sym_short] = ACTIONS(5621), - [anon_sym_LBRACK] = ACTIONS(5621), - [anon_sym_static] = ACTIONS(5621), - [anon_sym_register] = ACTIONS(5621), - [anon_sym_inline] = ACTIONS(5621), - [anon_sym___inline] = ACTIONS(5621), - [anon_sym___inline__] = ACTIONS(5621), - [anon_sym___forceinline] = ACTIONS(5621), - [anon_sym_thread_local] = ACTIONS(5621), - [anon_sym___thread] = ACTIONS(5621), - [anon_sym_const] = ACTIONS(5621), - [anon_sym_constexpr] = ACTIONS(5621), - [anon_sym_volatile] = ACTIONS(5621), - [anon_sym_restrict] = ACTIONS(5621), - [anon_sym___restrict__] = ACTIONS(5621), - [anon_sym__Atomic] = ACTIONS(5621), - [anon_sym__Noreturn] = ACTIONS(5621), - [anon_sym_noreturn] = ACTIONS(5621), - [anon_sym__Nonnull] = ACTIONS(5621), - [anon_sym_mutable] = ACTIONS(5621), - [anon_sym_constinit] = ACTIONS(5621), - [anon_sym_consteval] = ACTIONS(5621), - [anon_sym_alignas] = ACTIONS(5621), - [anon_sym__Alignas] = ACTIONS(5621), - [sym_primitive_type] = ACTIONS(5621), - [anon_sym_enum] = ACTIONS(5621), - [anon_sym_class] = ACTIONS(5621), - [anon_sym_struct] = ACTIONS(5621), - [anon_sym_union] = ACTIONS(5621), + [2123] = { + [sym_identifier] = ACTIONS(5541), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5543), + [anon_sym_COMMA] = ACTIONS(5543), + [anon_sym_RPAREN] = ACTIONS(5543), + [aux_sym_preproc_if_token2] = ACTIONS(5543), + [aux_sym_preproc_else_token1] = ACTIONS(5543), + [aux_sym_preproc_elif_token1] = ACTIONS(5541), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5543), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5543), + [anon_sym_LPAREN2] = ACTIONS(5543), + [anon_sym_DASH] = ACTIONS(5541), + [anon_sym_PLUS] = ACTIONS(5541), + [anon_sym_STAR] = ACTIONS(5541), + [anon_sym_SLASH] = ACTIONS(5541), + [anon_sym_PERCENT] = ACTIONS(5541), + [anon_sym_PIPE_PIPE] = ACTIONS(5543), + [anon_sym_AMP_AMP] = ACTIONS(5543), + [anon_sym_PIPE] = ACTIONS(5541), + [anon_sym_CARET] = ACTIONS(5541), + [anon_sym_AMP] = ACTIONS(5541), + [anon_sym_EQ_EQ] = ACTIONS(5543), + [anon_sym_BANG_EQ] = ACTIONS(5543), + [anon_sym_GT] = ACTIONS(5541), + [anon_sym_GT_EQ] = ACTIONS(5543), + [anon_sym_LT_EQ] = ACTIONS(5541), + [anon_sym_LT] = ACTIONS(5541), + [anon_sym_LT_LT] = ACTIONS(5541), + [anon_sym_GT_GT] = ACTIONS(5541), + [anon_sym_SEMI] = ACTIONS(5543), + [anon_sym___attribute__] = ACTIONS(5541), + [anon_sym___attribute] = ACTIONS(5541), + [anon_sym_COLON] = ACTIONS(5543), + [anon_sym_LBRACE] = ACTIONS(5543), + [anon_sym_RBRACE] = ACTIONS(5543), + [anon_sym_LBRACK] = ACTIONS(5543), + [anon_sym_RBRACK] = ACTIONS(5543), + [anon_sym_EQ] = ACTIONS(5541), + [anon_sym_QMARK] = ACTIONS(5543), + [anon_sym_STAR_EQ] = ACTIONS(5543), + [anon_sym_SLASH_EQ] = ACTIONS(5543), + [anon_sym_PERCENT_EQ] = ACTIONS(5543), + [anon_sym_PLUS_EQ] = ACTIONS(5543), + [anon_sym_DASH_EQ] = ACTIONS(5543), + [anon_sym_LT_LT_EQ] = ACTIONS(5543), + [anon_sym_GT_GT_EQ] = ACTIONS(5543), + [anon_sym_AMP_EQ] = ACTIONS(5543), + [anon_sym_CARET_EQ] = ACTIONS(5543), + [anon_sym_PIPE_EQ] = ACTIONS(5543), + [anon_sym_and_eq] = ACTIONS(5541), + [anon_sym_or_eq] = ACTIONS(5541), + [anon_sym_xor_eq] = ACTIONS(5541), + [anon_sym_LT_EQ_GT] = ACTIONS(5543), + [anon_sym_or] = ACTIONS(5541), + [anon_sym_and] = ACTIONS(5541), + [anon_sym_bitor] = ACTIONS(5541), + [anon_sym_xor] = ACTIONS(5541), + [anon_sym_bitand] = ACTIONS(5541), + [anon_sym_not_eq] = ACTIONS(5541), + [anon_sym_DASH_DASH] = ACTIONS(5543), + [anon_sym_PLUS_PLUS] = ACTIONS(5543), + [anon_sym_DOT] = ACTIONS(5541), + [anon_sym_DOT_STAR] = ACTIONS(5543), + [anon_sym_DASH_GT] = ACTIONS(5543), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5621), - [anon_sym_decltype] = ACTIONS(5621), - [anon_sym_explicit] = ACTIONS(5621), - [anon_sym_typename] = ACTIONS(5621), - [anon_sym_private] = ACTIONS(5621), - [anon_sym_template] = ACTIONS(5621), - [anon_sym_operator] = ACTIONS(5621), - [anon_sym_friend] = ACTIONS(5621), - [anon_sym_public] = ACTIONS(5621), - [anon_sym_protected] = ACTIONS(5621), - [anon_sym_static_assert] = ACTIONS(5621), + [sym_auto] = ACTIONS(5541), + [anon_sym_decltype] = ACTIONS(5541), + [anon_sym_final] = ACTIONS(5541), + [anon_sym_override] = ACTIONS(5541), }, - [2064] = { - [sym_string_literal] = STATE(2624), - [sym_template_argument_list] = STATE(3588), - [sym_raw_string_literal] = STATE(2624), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4146), - [anon_sym_COMMA] = ACTIONS(4146), - [anon_sym_LPAREN2] = ACTIONS(5997), - [anon_sym_DASH] = ACTIONS(4154), - [anon_sym_PLUS] = ACTIONS(4154), - [anon_sym_STAR] = ACTIONS(4154), - [anon_sym_SLASH] = ACTIONS(4154), - [anon_sym_PERCENT] = ACTIONS(4154), - [anon_sym_PIPE_PIPE] = ACTIONS(4146), - [anon_sym_AMP_AMP] = ACTIONS(4146), - [anon_sym_PIPE] = ACTIONS(4154), - [anon_sym_CARET] = ACTIONS(4154), - [anon_sym_AMP] = ACTIONS(4154), - [anon_sym_EQ_EQ] = ACTIONS(4146), - [anon_sym_BANG_EQ] = ACTIONS(4146), - [anon_sym_GT] = ACTIONS(4154), - [anon_sym_GT_EQ] = ACTIONS(4146), - [anon_sym_LT_EQ] = ACTIONS(4154), - [anon_sym_LT] = ACTIONS(5077), - [anon_sym_LT_LT] = ACTIONS(4154), - [anon_sym_GT_GT] = ACTIONS(4154), - [anon_sym_SEMI] = ACTIONS(4146), - [anon_sym_COLON_COLON] = ACTIONS(4167), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5997), - [anon_sym_LBRACE] = ACTIONS(4172), - [anon_sym_RBRACE] = ACTIONS(4146), - [anon_sym_LBRACK] = ACTIONS(5999), - [anon_sym_EQ] = ACTIONS(4180), - [anon_sym_QMARK] = ACTIONS(4146), - [anon_sym_STAR_EQ] = ACTIONS(4182), - [anon_sym_SLASH_EQ] = ACTIONS(4182), - [anon_sym_PERCENT_EQ] = ACTIONS(4182), - [anon_sym_PLUS_EQ] = ACTIONS(4182), - [anon_sym_DASH_EQ] = ACTIONS(4182), - [anon_sym_LT_LT_EQ] = ACTIONS(4182), - [anon_sym_GT_GT_EQ] = ACTIONS(4182), - [anon_sym_AMP_EQ] = ACTIONS(4182), - [anon_sym_CARET_EQ] = ACTIONS(4182), - [anon_sym_PIPE_EQ] = ACTIONS(4182), - [anon_sym_and_eq] = ACTIONS(4182), - [anon_sym_or_eq] = ACTIONS(4182), - [anon_sym_xor_eq] = ACTIONS(4182), - [anon_sym_LT_EQ_GT] = ACTIONS(4146), - [anon_sym_or] = ACTIONS(4154), - [anon_sym_and] = ACTIONS(4154), - [anon_sym_bitor] = ACTIONS(4146), - [anon_sym_xor] = ACTIONS(4154), - [anon_sym_bitand] = ACTIONS(4146), - [anon_sym_not_eq] = ACTIONS(4146), - [anon_sym_DASH_DASH] = ACTIONS(4146), - [anon_sym_PLUS_PLUS] = ACTIONS(4146), - [anon_sym_DOT] = ACTIONS(4154), - [anon_sym_DOT_STAR] = ACTIONS(4146), - [anon_sym_DASH_GT] = ACTIONS(4146), - [anon_sym_L_DQUOTE] = ACTIONS(3623), - [anon_sym_u_DQUOTE] = ACTIONS(3623), - [anon_sym_U_DQUOTE] = ACTIONS(3623), - [anon_sym_u8_DQUOTE] = ACTIONS(3623), - [anon_sym_DQUOTE] = ACTIONS(3623), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(3627), - [anon_sym_LR_DQUOTE] = ACTIONS(3627), - [anon_sym_uR_DQUOTE] = ACTIONS(3627), - [anon_sym_UR_DQUOTE] = ACTIONS(3627), - [anon_sym_u8R_DQUOTE] = ACTIONS(3627), + [2124] = { + [sym_template_argument_list] = STATE(1623), + [aux_sym_sized_type_specifier_repeat1] = STATE(2261), + [sym_identifier] = ACTIONS(6058), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6060), + [anon_sym_COMMA] = ACTIONS(6060), + [aux_sym_preproc_if_token2] = ACTIONS(6060), + [aux_sym_preproc_else_token1] = ACTIONS(6060), + [aux_sym_preproc_elif_token1] = ACTIONS(6058), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6060), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6060), + [anon_sym_LPAREN2] = ACTIONS(6060), + [anon_sym_DASH] = ACTIONS(6058), + [anon_sym_PLUS] = ACTIONS(6058), + [anon_sym_STAR] = ACTIONS(6058), + [anon_sym_SLASH] = ACTIONS(6058), + [anon_sym_PERCENT] = ACTIONS(6058), + [anon_sym_PIPE_PIPE] = ACTIONS(6060), + [anon_sym_AMP_AMP] = ACTIONS(6060), + [anon_sym_PIPE] = ACTIONS(6058), + [anon_sym_CARET] = ACTIONS(6058), + [anon_sym_AMP] = ACTIONS(6058), + [anon_sym_EQ_EQ] = ACTIONS(6060), + [anon_sym_BANG_EQ] = ACTIONS(6060), + [anon_sym_GT] = ACTIONS(6058), + [anon_sym_GT_EQ] = ACTIONS(6060), + [anon_sym_LT_EQ] = ACTIONS(6058), + [anon_sym_LT] = ACTIONS(6058), + [anon_sym_LT_LT] = ACTIONS(6058), + [anon_sym_GT_GT] = ACTIONS(6058), + [anon_sym___attribute__] = ACTIONS(6058), + [anon_sym___attribute] = ACTIONS(6058), + [anon_sym_COLON_COLON] = ACTIONS(4187), + [anon_sym_LBRACE] = ACTIONS(6060), + [anon_sym_signed] = ACTIONS(6062), + [anon_sym_unsigned] = ACTIONS(6062), + [anon_sym_long] = ACTIONS(6062), + [anon_sym_short] = ACTIONS(6062), + [anon_sym_LBRACK] = ACTIONS(6060), + [anon_sym_EQ] = ACTIONS(6058), + [anon_sym_QMARK] = ACTIONS(6060), + [anon_sym_STAR_EQ] = ACTIONS(6060), + [anon_sym_SLASH_EQ] = ACTIONS(6060), + [anon_sym_PERCENT_EQ] = ACTIONS(6060), + [anon_sym_PLUS_EQ] = ACTIONS(6060), + [anon_sym_DASH_EQ] = ACTIONS(6060), + [anon_sym_LT_LT_EQ] = ACTIONS(6060), + [anon_sym_GT_GT_EQ] = ACTIONS(6060), + [anon_sym_AMP_EQ] = ACTIONS(6060), + [anon_sym_CARET_EQ] = ACTIONS(6060), + [anon_sym_PIPE_EQ] = ACTIONS(6060), + [anon_sym_and_eq] = ACTIONS(6058), + [anon_sym_or_eq] = ACTIONS(6058), + [anon_sym_xor_eq] = ACTIONS(6058), + [anon_sym_LT_EQ_GT] = ACTIONS(6060), + [anon_sym_or] = ACTIONS(6058), + [anon_sym_and] = ACTIONS(6058), + [anon_sym_bitor] = ACTIONS(6058), + [anon_sym_xor] = ACTIONS(6058), + [anon_sym_bitand] = ACTIONS(6058), + [anon_sym_not_eq] = ACTIONS(6058), + [anon_sym_DASH_DASH] = ACTIONS(6060), + [anon_sym_PLUS_PLUS] = ACTIONS(6060), + [anon_sym_DOT] = ACTIONS(6058), + [anon_sym_DOT_STAR] = ACTIONS(6060), + [anon_sym_DASH_GT] = ACTIONS(6060), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6058), + [anon_sym_decltype] = ACTIONS(6058), }, - [2065] = { - [sym_string_literal] = STATE(1684), - [sym_template_argument_list] = STATE(2864), - [sym_raw_string_literal] = STATE(1684), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4146), - [anon_sym_COMMA] = ACTIONS(4146), - [anon_sym_LPAREN2] = ACTIONS(5946), - [anon_sym_DASH] = ACTIONS(4154), - [anon_sym_PLUS] = ACTIONS(4154), - [anon_sym_STAR] = ACTIONS(4154), - [anon_sym_SLASH] = ACTIONS(4154), - [anon_sym_PERCENT] = ACTIONS(4154), - [anon_sym_PIPE_PIPE] = ACTIONS(4146), - [anon_sym_AMP_AMP] = ACTIONS(4146), - [anon_sym_PIPE] = ACTIONS(4154), - [anon_sym_CARET] = ACTIONS(4154), - [anon_sym_AMP] = ACTIONS(4154), - [anon_sym_EQ_EQ] = ACTIONS(4146), - [anon_sym_BANG_EQ] = ACTIONS(4146), - [anon_sym_GT] = ACTIONS(4154), - [anon_sym_GT_EQ] = ACTIONS(4146), - [anon_sym_LT_EQ] = ACTIONS(4154), - [anon_sym_LT] = ACTIONS(6001), - [anon_sym_LT_LT] = ACTIONS(4154), - [anon_sym_GT_GT] = ACTIONS(4154), - [anon_sym_SEMI] = ACTIONS(4146), - [anon_sym_COLON_COLON] = ACTIONS(4167), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5036), - [anon_sym_LBRACE] = ACTIONS(4172), - [anon_sym_RBRACE] = ACTIONS(4146), - [anon_sym_LBRACK] = ACTIONS(5949), - [anon_sym_EQ] = ACTIONS(4154), - [anon_sym_QMARK] = ACTIONS(4146), - [anon_sym_STAR_EQ] = ACTIONS(4146), - [anon_sym_SLASH_EQ] = ACTIONS(4146), - [anon_sym_PERCENT_EQ] = ACTIONS(4146), - [anon_sym_PLUS_EQ] = ACTIONS(4146), - [anon_sym_DASH_EQ] = ACTIONS(4146), - [anon_sym_LT_LT_EQ] = ACTIONS(4146), - [anon_sym_GT_GT_EQ] = ACTIONS(4146), - [anon_sym_AMP_EQ] = ACTIONS(4146), - [anon_sym_CARET_EQ] = ACTIONS(4146), - [anon_sym_PIPE_EQ] = ACTIONS(4146), - [anon_sym_and_eq] = ACTIONS(4146), - [anon_sym_or_eq] = ACTIONS(4146), - [anon_sym_xor_eq] = ACTIONS(4146), - [anon_sym_LT_EQ_GT] = ACTIONS(4146), - [anon_sym_or] = ACTIONS(4154), - [anon_sym_and] = ACTIONS(4154), - [anon_sym_bitor] = ACTIONS(4146), - [anon_sym_xor] = ACTIONS(4154), - [anon_sym_bitand] = ACTIONS(4146), - [anon_sym_not_eq] = ACTIONS(4146), - [anon_sym_DASH_DASH] = ACTIONS(4146), - [anon_sym_PLUS_PLUS] = ACTIONS(4146), - [anon_sym_DOT] = ACTIONS(4154), - [anon_sym_DOT_STAR] = ACTIONS(4146), - [anon_sym_DASH_GT] = ACTIONS(4146), - [anon_sym_L_DQUOTE] = ACTIONS(1972), - [anon_sym_u_DQUOTE] = ACTIONS(1972), - [anon_sym_U_DQUOTE] = ACTIONS(1972), - [anon_sym_u8_DQUOTE] = ACTIONS(1972), - [anon_sym_DQUOTE] = ACTIONS(1972), + [2125] = { + [sym_identifier] = ACTIONS(2811), + [aux_sym_preproc_def_token1] = ACTIONS(2811), + [aux_sym_preproc_if_token1] = ACTIONS(2811), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2811), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2811), + [sym_preproc_directive] = ACTIONS(2811), + [anon_sym_LPAREN2] = ACTIONS(2813), + [anon_sym_TILDE] = ACTIONS(2813), + [anon_sym_STAR] = ACTIONS(2813), + [anon_sym_AMP_AMP] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2811), + [anon_sym_SEMI] = ACTIONS(2813), + [anon_sym___extension__] = ACTIONS(2811), + [anon_sym_typedef] = ACTIONS(2811), + [anon_sym_virtual] = ACTIONS(2811), + [anon_sym_extern] = ACTIONS(2811), + [anon_sym___attribute__] = ACTIONS(2811), + [anon_sym___attribute] = ACTIONS(2811), + [anon_sym_using] = ACTIONS(2811), + [anon_sym_COLON_COLON] = ACTIONS(2813), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2813), + [anon_sym___declspec] = ACTIONS(2811), + [anon_sym___based] = ACTIONS(2811), + [anon_sym_RBRACE] = ACTIONS(2813), + [anon_sym_signed] = ACTIONS(2811), + [anon_sym_unsigned] = ACTIONS(2811), + [anon_sym_long] = ACTIONS(2811), + [anon_sym_short] = ACTIONS(2811), + [anon_sym_LBRACK] = ACTIONS(2811), + [anon_sym_static] = ACTIONS(2811), + [anon_sym_register] = ACTIONS(2811), + [anon_sym_inline] = ACTIONS(2811), + [anon_sym___inline] = ACTIONS(2811), + [anon_sym___inline__] = ACTIONS(2811), + [anon_sym___forceinline] = ACTIONS(2811), + [anon_sym_thread_local] = ACTIONS(2811), + [anon_sym___thread] = ACTIONS(2811), + [anon_sym_const] = ACTIONS(2811), + [anon_sym_constexpr] = ACTIONS(2811), + [anon_sym_volatile] = ACTIONS(2811), + [anon_sym_restrict] = ACTIONS(2811), + [anon_sym___restrict__] = ACTIONS(2811), + [anon_sym__Atomic] = ACTIONS(2811), + [anon_sym__Noreturn] = ACTIONS(2811), + [anon_sym_noreturn] = ACTIONS(2811), + [anon_sym__Nonnull] = ACTIONS(2811), + [anon_sym_mutable] = ACTIONS(2811), + [anon_sym_constinit] = ACTIONS(2811), + [anon_sym_consteval] = ACTIONS(2811), + [anon_sym_alignas] = ACTIONS(2811), + [anon_sym__Alignas] = ACTIONS(2811), + [sym_primitive_type] = ACTIONS(2811), + [anon_sym_enum] = ACTIONS(2811), + [anon_sym_class] = ACTIONS(2811), + [anon_sym_struct] = ACTIONS(2811), + [anon_sym_union] = ACTIONS(2811), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2811), + [anon_sym_decltype] = ACTIONS(2811), + [anon_sym_explicit] = ACTIONS(2811), + [anon_sym_typename] = ACTIONS(2811), + [anon_sym_private] = ACTIONS(2811), + [anon_sym_template] = ACTIONS(2811), + [anon_sym_operator] = ACTIONS(2811), + [anon_sym_friend] = ACTIONS(2811), + [anon_sym_public] = ACTIONS(2811), + [anon_sym_protected] = ACTIONS(2811), + [anon_sym_static_assert] = ACTIONS(2811), + }, + [2126] = { + [sym_identifier] = ACTIONS(2819), + [aux_sym_preproc_def_token1] = ACTIONS(2819), + [aux_sym_preproc_if_token1] = ACTIONS(2819), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2819), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2819), + [sym_preproc_directive] = ACTIONS(2819), + [anon_sym_LPAREN2] = ACTIONS(2821), + [anon_sym_TILDE] = ACTIONS(2821), + [anon_sym_STAR] = ACTIONS(2821), + [anon_sym_AMP_AMP] = ACTIONS(2821), + [anon_sym_AMP] = ACTIONS(2819), + [anon_sym_SEMI] = ACTIONS(2821), + [anon_sym___extension__] = ACTIONS(2819), + [anon_sym_typedef] = ACTIONS(2819), + [anon_sym_virtual] = ACTIONS(2819), + [anon_sym_extern] = ACTIONS(2819), + [anon_sym___attribute__] = ACTIONS(2819), + [anon_sym___attribute] = ACTIONS(2819), + [anon_sym_using] = ACTIONS(2819), + [anon_sym_COLON_COLON] = ACTIONS(2821), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2821), + [anon_sym___declspec] = ACTIONS(2819), + [anon_sym___based] = ACTIONS(2819), + [anon_sym_RBRACE] = ACTIONS(2821), + [anon_sym_signed] = ACTIONS(2819), + [anon_sym_unsigned] = ACTIONS(2819), + [anon_sym_long] = ACTIONS(2819), + [anon_sym_short] = ACTIONS(2819), + [anon_sym_LBRACK] = ACTIONS(2819), + [anon_sym_static] = ACTIONS(2819), + [anon_sym_register] = ACTIONS(2819), + [anon_sym_inline] = ACTIONS(2819), + [anon_sym___inline] = ACTIONS(2819), + [anon_sym___inline__] = ACTIONS(2819), + [anon_sym___forceinline] = ACTIONS(2819), + [anon_sym_thread_local] = ACTIONS(2819), + [anon_sym___thread] = ACTIONS(2819), + [anon_sym_const] = ACTIONS(2819), + [anon_sym_constexpr] = ACTIONS(2819), + [anon_sym_volatile] = ACTIONS(2819), + [anon_sym_restrict] = ACTIONS(2819), + [anon_sym___restrict__] = ACTIONS(2819), + [anon_sym__Atomic] = ACTIONS(2819), + [anon_sym__Noreturn] = ACTIONS(2819), + [anon_sym_noreturn] = ACTIONS(2819), + [anon_sym__Nonnull] = ACTIONS(2819), + [anon_sym_mutable] = ACTIONS(2819), + [anon_sym_constinit] = ACTIONS(2819), + [anon_sym_consteval] = ACTIONS(2819), + [anon_sym_alignas] = ACTIONS(2819), + [anon_sym__Alignas] = ACTIONS(2819), + [sym_primitive_type] = ACTIONS(2819), + [anon_sym_enum] = ACTIONS(2819), + [anon_sym_class] = ACTIONS(2819), + [anon_sym_struct] = ACTIONS(2819), + [anon_sym_union] = ACTIONS(2819), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2819), + [anon_sym_decltype] = ACTIONS(2819), + [anon_sym_explicit] = ACTIONS(2819), + [anon_sym_typename] = ACTIONS(2819), + [anon_sym_private] = ACTIONS(2819), + [anon_sym_template] = ACTIONS(2819), + [anon_sym_operator] = ACTIONS(2819), + [anon_sym_friend] = ACTIONS(2819), + [anon_sym_public] = ACTIONS(2819), + [anon_sym_protected] = ACTIONS(2819), + [anon_sym_static_assert] = ACTIONS(2819), + }, + [2127] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1688), + [sym_identifier] = ACTIONS(5164), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5167), + [anon_sym_COMMA] = ACTIONS(5167), + [aux_sym_preproc_if_token2] = ACTIONS(5167), + [aux_sym_preproc_else_token1] = ACTIONS(5167), + [aux_sym_preproc_elif_token1] = ACTIONS(5164), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5167), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5167), + [anon_sym_LPAREN2] = ACTIONS(5167), + [anon_sym_DASH] = ACTIONS(5164), + [anon_sym_PLUS] = ACTIONS(5164), + [anon_sym_STAR] = ACTIONS(5167), + [anon_sym_SLASH] = ACTIONS(5164), + [anon_sym_PERCENT] = ACTIONS(5167), + [anon_sym_PIPE_PIPE] = ACTIONS(5167), + [anon_sym_AMP_AMP] = ACTIONS(5167), + [anon_sym_PIPE] = ACTIONS(5164), + [anon_sym_CARET] = ACTIONS(5167), + [anon_sym_AMP] = ACTIONS(5164), + [anon_sym_EQ_EQ] = ACTIONS(5167), + [anon_sym_BANG_EQ] = ACTIONS(5167), + [anon_sym_GT] = ACTIONS(5164), + [anon_sym_GT_EQ] = ACTIONS(5167), + [anon_sym_LT_EQ] = ACTIONS(5164), + [anon_sym_LT] = ACTIONS(5164), + [anon_sym_LT_LT] = ACTIONS(5167), + [anon_sym_GT_GT] = ACTIONS(5167), + [anon_sym___extension__] = ACTIONS(5078), + [anon_sym___attribute__] = ACTIONS(5164), + [anon_sym___attribute] = ACTIONS(5164), + [anon_sym_LBRACE] = ACTIONS(5167), + [anon_sym_signed] = ACTIONS(5384), + [anon_sym_unsigned] = ACTIONS(5384), + [anon_sym_long] = ACTIONS(5384), + [anon_sym_short] = ACTIONS(5384), + [anon_sym_LBRACK] = ACTIONS(5167), + [anon_sym_const] = ACTIONS(5078), + [anon_sym_constexpr] = ACTIONS(5078), + [anon_sym_volatile] = ACTIONS(5078), + [anon_sym_restrict] = ACTIONS(5078), + [anon_sym___restrict__] = ACTIONS(5078), + [anon_sym__Atomic] = ACTIONS(5078), + [anon_sym__Noreturn] = ACTIONS(5078), + [anon_sym_noreturn] = ACTIONS(5078), + [anon_sym__Nonnull] = ACTIONS(5078), + [anon_sym_mutable] = ACTIONS(5078), + [anon_sym_constinit] = ACTIONS(5078), + [anon_sym_consteval] = ACTIONS(5078), + [anon_sym_alignas] = ACTIONS(5078), + [anon_sym__Alignas] = ACTIONS(5078), + [sym_primitive_type] = ACTIONS(5078), + [anon_sym_QMARK] = ACTIONS(5167), + [anon_sym_LT_EQ_GT] = ACTIONS(5167), + [anon_sym_or] = ACTIONS(5164), + [anon_sym_and] = ACTIONS(5164), + [anon_sym_bitor] = ACTIONS(5164), + [anon_sym_xor] = ACTIONS(5164), + [anon_sym_bitand] = ACTIONS(5164), + [anon_sym_not_eq] = ACTIONS(5164), + [anon_sym_DASH_DASH] = ACTIONS(5167), + [anon_sym_PLUS_PLUS] = ACTIONS(5167), + [anon_sym_DOT] = ACTIONS(5164), + [anon_sym_DOT_STAR] = ACTIONS(5167), + [anon_sym_DASH_GT] = ACTIONS(5167), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5164), + [anon_sym_decltype] = ACTIONS(5164), + }, + [2128] = { + [sym_identifier] = ACTIONS(2931), + [aux_sym_preproc_def_token1] = ACTIONS(2931), + [aux_sym_preproc_if_token1] = ACTIONS(2931), + [aux_sym_preproc_if_token2] = ACTIONS(2931), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2931), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2931), + [sym_preproc_directive] = ACTIONS(2931), + [anon_sym_LPAREN2] = ACTIONS(2933), + [anon_sym_TILDE] = ACTIONS(2933), + [anon_sym_STAR] = ACTIONS(2933), + [anon_sym_AMP_AMP] = ACTIONS(2933), + [anon_sym_AMP] = ACTIONS(2931), + [anon_sym_SEMI] = ACTIONS(2933), + [anon_sym___extension__] = ACTIONS(2931), + [anon_sym_typedef] = ACTIONS(2931), + [anon_sym_virtual] = ACTIONS(2931), + [anon_sym_extern] = ACTIONS(2931), + [anon_sym___attribute__] = ACTIONS(2931), + [anon_sym___attribute] = ACTIONS(2931), + [anon_sym_using] = ACTIONS(2931), + [anon_sym_COLON_COLON] = ACTIONS(2933), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2933), + [anon_sym___declspec] = ACTIONS(2931), + [anon_sym___based] = ACTIONS(2931), + [anon_sym_signed] = ACTIONS(2931), + [anon_sym_unsigned] = ACTIONS(2931), + [anon_sym_long] = ACTIONS(2931), + [anon_sym_short] = ACTIONS(2931), + [anon_sym_LBRACK] = ACTIONS(2931), + [anon_sym_static] = ACTIONS(2931), + [anon_sym_register] = ACTIONS(2931), + [anon_sym_inline] = ACTIONS(2931), + [anon_sym___inline] = ACTIONS(2931), + [anon_sym___inline__] = ACTIONS(2931), + [anon_sym___forceinline] = ACTIONS(2931), + [anon_sym_thread_local] = ACTIONS(2931), + [anon_sym___thread] = ACTIONS(2931), + [anon_sym_const] = ACTIONS(2931), + [anon_sym_constexpr] = ACTIONS(2931), + [anon_sym_volatile] = ACTIONS(2931), + [anon_sym_restrict] = ACTIONS(2931), + [anon_sym___restrict__] = ACTIONS(2931), + [anon_sym__Atomic] = ACTIONS(2931), + [anon_sym__Noreturn] = ACTIONS(2931), + [anon_sym_noreturn] = ACTIONS(2931), + [anon_sym__Nonnull] = ACTIONS(2931), + [anon_sym_mutable] = ACTIONS(2931), + [anon_sym_constinit] = ACTIONS(2931), + [anon_sym_consteval] = ACTIONS(2931), + [anon_sym_alignas] = ACTIONS(2931), + [anon_sym__Alignas] = ACTIONS(2931), + [sym_primitive_type] = ACTIONS(2931), + [anon_sym_enum] = ACTIONS(2931), + [anon_sym_class] = ACTIONS(2931), + [anon_sym_struct] = ACTIONS(2931), + [anon_sym_union] = ACTIONS(2931), [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(1982), - [anon_sym_LR_DQUOTE] = ACTIONS(1982), - [anon_sym_uR_DQUOTE] = ACTIONS(1982), - [anon_sym_UR_DQUOTE] = ACTIONS(1982), - [anon_sym_u8R_DQUOTE] = ACTIONS(1982), + [sym_auto] = ACTIONS(2931), + [anon_sym_decltype] = ACTIONS(2931), + [anon_sym_explicit] = ACTIONS(2931), + [anon_sym_typename] = ACTIONS(2931), + [anon_sym_private] = ACTIONS(2931), + [anon_sym_template] = ACTIONS(2931), + [anon_sym_operator] = ACTIONS(2931), + [anon_sym_friend] = ACTIONS(2931), + [anon_sym_public] = ACTIONS(2931), + [anon_sym_protected] = ACTIONS(2931), + [anon_sym_static_assert] = ACTIONS(2931), }, - [2066] = { + [2129] = { [sym_identifier] = ACTIONS(2827), [aux_sym_preproc_def_token1] = ACTIONS(2827), [aux_sym_preproc_if_token1] = ACTIONS(2827), @@ -273535,1407 +279612,987 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(2827), [anon_sym_static_assert] = ACTIONS(2827), }, - [2067] = { - [sym_identifier] = ACTIONS(3104), - [aux_sym_preproc_def_token1] = ACTIONS(3104), - [aux_sym_preproc_if_token1] = ACTIONS(3104), - [aux_sym_preproc_if_token2] = ACTIONS(3104), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3104), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3104), - [sym_preproc_directive] = ACTIONS(3104), - [anon_sym_LPAREN2] = ACTIONS(3106), - [anon_sym_TILDE] = ACTIONS(3106), - [anon_sym_STAR] = ACTIONS(3106), - [anon_sym_AMP_AMP] = ACTIONS(3106), - [anon_sym_AMP] = ACTIONS(3104), - [anon_sym_SEMI] = ACTIONS(3106), - [anon_sym___extension__] = ACTIONS(3104), - [anon_sym_typedef] = ACTIONS(3104), - [anon_sym_virtual] = ACTIONS(3104), - [anon_sym_extern] = ACTIONS(3104), - [anon_sym___attribute__] = ACTIONS(3104), - [anon_sym___attribute] = ACTIONS(3104), - [anon_sym_using] = ACTIONS(3104), - [anon_sym_COLON_COLON] = ACTIONS(3106), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3106), - [anon_sym___declspec] = ACTIONS(3104), - [anon_sym___based] = ACTIONS(3104), - [anon_sym_signed] = ACTIONS(3104), - [anon_sym_unsigned] = ACTIONS(3104), - [anon_sym_long] = ACTIONS(3104), - [anon_sym_short] = ACTIONS(3104), - [anon_sym_LBRACK] = ACTIONS(3104), - [anon_sym_static] = ACTIONS(3104), - [anon_sym_register] = ACTIONS(3104), - [anon_sym_inline] = ACTIONS(3104), - [anon_sym___inline] = ACTIONS(3104), - [anon_sym___inline__] = ACTIONS(3104), - [anon_sym___forceinline] = ACTIONS(3104), - [anon_sym_thread_local] = ACTIONS(3104), - [anon_sym___thread] = ACTIONS(3104), - [anon_sym_const] = ACTIONS(3104), - [anon_sym_constexpr] = ACTIONS(3104), - [anon_sym_volatile] = ACTIONS(3104), - [anon_sym_restrict] = ACTIONS(3104), - [anon_sym___restrict__] = ACTIONS(3104), - [anon_sym__Atomic] = ACTIONS(3104), - [anon_sym__Noreturn] = ACTIONS(3104), - [anon_sym_noreturn] = ACTIONS(3104), - [anon_sym__Nonnull] = ACTIONS(3104), - [anon_sym_mutable] = ACTIONS(3104), - [anon_sym_constinit] = ACTIONS(3104), - [anon_sym_consteval] = ACTIONS(3104), - [anon_sym_alignas] = ACTIONS(3104), - [anon_sym__Alignas] = ACTIONS(3104), - [sym_primitive_type] = ACTIONS(3104), - [anon_sym_enum] = ACTIONS(3104), - [anon_sym_class] = ACTIONS(3104), - [anon_sym_struct] = ACTIONS(3104), - [anon_sym_union] = ACTIONS(3104), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3104), - [anon_sym_decltype] = ACTIONS(3104), - [anon_sym_explicit] = ACTIONS(3104), - [anon_sym_typename] = ACTIONS(3104), - [anon_sym_private] = ACTIONS(3104), - [anon_sym_template] = ACTIONS(3104), - [anon_sym_operator] = ACTIONS(3104), - [anon_sym_friend] = ACTIONS(3104), - [anon_sym_public] = ACTIONS(3104), - [anon_sym_protected] = ACTIONS(3104), - [anon_sym_static_assert] = ACTIONS(3104), - }, - [2068] = { - [sym_ms_based_modifier] = STATE(8106), - [sym_ms_unaligned_ptr_modifier] = STATE(4043), - [sym_ms_pointer_modifier] = STATE(2048), - [sym__declarator] = STATE(6313), - [sym__abstract_declarator] = STATE(6712), - [sym_parenthesized_declarator] = STATE(5998), - [sym_abstract_parenthesized_declarator] = STATE(6092), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_abstract_pointer_declarator] = STATE(6092), - [sym_function_declarator] = STATE(5998), - [sym_abstract_function_declarator] = STATE(6092), - [sym_array_declarator] = STATE(5998), - [sym_abstract_array_declarator] = STATE(6092), - [sym_type_qualifier] = STATE(2654), - [sym_alignas_qualifier] = STATE(4289), - [sym_parameter_list] = STATE(3216), - [sym_decltype] = STATE(8601), - [sym_reference_declarator] = STATE(5998), - [sym_abstract_reference_declarator] = STATE(6092), - [sym_structured_binding_declarator] = STATE(5998), - [sym__function_declarator_seq] = STATE(6087), - [sym_template_type] = STATE(8601), - [sym_template_function] = STATE(5998), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5860), - [sym_qualified_identifier] = STATE(5998), - [sym_operator_name] = STATE(5998), - [aux_sym__type_definition_type_repeat1] = STATE(2654), - [aux_sym_pointer_declarator_repeat1] = STATE(2048), - [sym_identifier] = ACTIONS(5849), - [anon_sym_COMMA] = ACTIONS(5851), - [anon_sym_LPAREN2] = ACTIONS(4298), - [anon_sym_TILDE] = ACTIONS(2979), - [anon_sym_STAR] = ACTIONS(5971), - [anon_sym_AMP_AMP] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym___extension__] = ACTIONS(3331), - [anon_sym___attribute__] = ACTIONS(5859), - [anon_sym___attribute] = ACTIONS(5859), - [anon_sym_COLON_COLON] = ACTIONS(5861), - [anon_sym___based] = ACTIONS(53), - [sym_ms_restrict_modifier] = ACTIONS(3327), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(3327), - [sym_ms_signed_ptr_modifier] = ACTIONS(3327), - [anon_sym__unaligned] = ACTIONS(3329), - [anon_sym___unaligned] = ACTIONS(3329), - [anon_sym_LBRACK] = ACTIONS(5863), - [anon_sym_const] = ACTIONS(3331), - [anon_sym_constexpr] = ACTIONS(3331), - [anon_sym_volatile] = ACTIONS(3331), - [anon_sym_restrict] = ACTIONS(3331), - [anon_sym___restrict__] = ACTIONS(3331), - [anon_sym__Atomic] = ACTIONS(3331), - [anon_sym__Noreturn] = ACTIONS(3331), - [anon_sym_noreturn] = ACTIONS(3331), - [anon_sym__Nonnull] = ACTIONS(3331), - [anon_sym_mutable] = ACTIONS(3331), - [anon_sym_constinit] = ACTIONS(3331), - [anon_sym_consteval] = ACTIONS(3331), - [anon_sym_alignas] = ACTIONS(3333), - [anon_sym__Alignas] = ACTIONS(3333), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_GT2] = ACTIONS(5851), - [anon_sym_operator] = ACTIONS(1852), - }, - [2069] = { - [sym_template_argument_list] = STATE(1603), - [sym_identifier] = ACTIONS(4963), - [anon_sym_LPAREN2] = ACTIONS(4970), - [anon_sym_TILDE] = ACTIONS(4970), - [anon_sym_STAR] = ACTIONS(4970), - [anon_sym_PIPE_PIPE] = ACTIONS(4970), - [anon_sym_AMP_AMP] = ACTIONS(4970), - [anon_sym_AMP] = ACTIONS(4963), - [anon_sym_LT] = ACTIONS(6004), - [anon_sym___extension__] = ACTIONS(4963), - [anon_sym_virtual] = ACTIONS(4963), - [anon_sym_extern] = ACTIONS(4963), - [anon_sym___attribute__] = ACTIONS(4963), - [anon_sym___attribute] = ACTIONS(4963), - [anon_sym_using] = ACTIONS(4963), - [anon_sym_COLON_COLON] = ACTIONS(4167), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4970), - [anon_sym___declspec] = ACTIONS(4963), - [anon_sym___based] = ACTIONS(4963), - [anon_sym___cdecl] = ACTIONS(4963), - [anon_sym___clrcall] = ACTIONS(4963), - [anon_sym___stdcall] = ACTIONS(4963), - [anon_sym___fastcall] = ACTIONS(4963), - [anon_sym___thiscall] = ACTIONS(4963), - [anon_sym___vectorcall] = ACTIONS(4963), - [anon_sym_signed] = ACTIONS(4963), - [anon_sym_unsigned] = ACTIONS(4963), - [anon_sym_long] = ACTIONS(4963), - [anon_sym_short] = ACTIONS(4963), - [anon_sym_LBRACK] = ACTIONS(4963), - [anon_sym_static] = ACTIONS(4963), - [anon_sym_register] = ACTIONS(4963), - [anon_sym_inline] = ACTIONS(4963), - [anon_sym___inline] = ACTIONS(4963), - [anon_sym___inline__] = ACTIONS(4963), - [anon_sym___forceinline] = ACTIONS(4963), - [anon_sym_thread_local] = ACTIONS(4963), - [anon_sym___thread] = ACTIONS(4963), - [anon_sym_const] = ACTIONS(4963), - [anon_sym_constexpr] = ACTIONS(4963), - [anon_sym_volatile] = ACTIONS(4963), - [anon_sym_restrict] = ACTIONS(4963), - [anon_sym___restrict__] = ACTIONS(4963), - [anon_sym__Atomic] = ACTIONS(4963), - [anon_sym__Noreturn] = ACTIONS(4963), - [anon_sym_noreturn] = ACTIONS(4963), - [anon_sym__Nonnull] = ACTIONS(4963), - [anon_sym_mutable] = ACTIONS(4963), - [anon_sym_constinit] = ACTIONS(4963), - [anon_sym_consteval] = ACTIONS(4963), - [anon_sym_alignas] = ACTIONS(4963), - [anon_sym__Alignas] = ACTIONS(4963), - [sym_primitive_type] = ACTIONS(4963), - [anon_sym_enum] = ACTIONS(4963), - [anon_sym_class] = ACTIONS(4963), - [anon_sym_struct] = ACTIONS(4963), - [anon_sym_union] = ACTIONS(4963), - [anon_sym_or] = ACTIONS(4963), - [anon_sym_and] = ACTIONS(4963), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4963), - [anon_sym_decltype] = ACTIONS(4963), - [anon_sym_explicit] = ACTIONS(4963), - [anon_sym_typename] = ACTIONS(4963), - [anon_sym_template] = ACTIONS(4963), - [anon_sym_operator] = ACTIONS(4963), - [anon_sym_friend] = ACTIONS(4963), - [anon_sym_concept] = ACTIONS(4963), - }, - [2070] = { - [sym_identifier] = ACTIONS(5517), - [aux_sym_preproc_def_token1] = ACTIONS(5517), - [aux_sym_preproc_if_token1] = ACTIONS(5517), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5517), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5517), - [sym_preproc_directive] = ACTIONS(5517), - [anon_sym_LPAREN2] = ACTIONS(5519), - [anon_sym_TILDE] = ACTIONS(5519), - [anon_sym_STAR] = ACTIONS(5519), - [anon_sym_AMP_AMP] = ACTIONS(5519), - [anon_sym_AMP] = ACTIONS(5517), - [anon_sym_SEMI] = ACTIONS(5519), - [anon_sym___extension__] = ACTIONS(5517), - [anon_sym_typedef] = ACTIONS(5517), - [anon_sym_virtual] = ACTIONS(5517), - [anon_sym_extern] = ACTIONS(5517), - [anon_sym___attribute__] = ACTIONS(5517), - [anon_sym___attribute] = ACTIONS(5517), - [anon_sym_using] = ACTIONS(5517), - [anon_sym_COLON_COLON] = ACTIONS(5519), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5519), - [anon_sym___declspec] = ACTIONS(5517), - [anon_sym___based] = ACTIONS(5517), - [anon_sym_RBRACE] = ACTIONS(5519), - [anon_sym_signed] = ACTIONS(5517), - [anon_sym_unsigned] = ACTIONS(5517), - [anon_sym_long] = ACTIONS(5517), - [anon_sym_short] = ACTIONS(5517), - [anon_sym_LBRACK] = ACTIONS(5517), - [anon_sym_static] = ACTIONS(5517), - [anon_sym_register] = ACTIONS(5517), - [anon_sym_inline] = ACTIONS(5517), - [anon_sym___inline] = ACTIONS(5517), - [anon_sym___inline__] = ACTIONS(5517), - [anon_sym___forceinline] = ACTIONS(5517), - [anon_sym_thread_local] = ACTIONS(5517), - [anon_sym___thread] = ACTIONS(5517), - [anon_sym_const] = ACTIONS(5517), - [anon_sym_constexpr] = ACTIONS(5517), - [anon_sym_volatile] = ACTIONS(5517), - [anon_sym_restrict] = ACTIONS(5517), - [anon_sym___restrict__] = ACTIONS(5517), - [anon_sym__Atomic] = ACTIONS(5517), - [anon_sym__Noreturn] = ACTIONS(5517), - [anon_sym_noreturn] = ACTIONS(5517), - [anon_sym__Nonnull] = ACTIONS(5517), - [anon_sym_mutable] = ACTIONS(5517), - [anon_sym_constinit] = ACTIONS(5517), - [anon_sym_consteval] = ACTIONS(5517), - [anon_sym_alignas] = ACTIONS(5517), - [anon_sym__Alignas] = ACTIONS(5517), - [sym_primitive_type] = ACTIONS(5517), - [anon_sym_enum] = ACTIONS(5517), - [anon_sym_class] = ACTIONS(5517), - [anon_sym_struct] = ACTIONS(5517), - [anon_sym_union] = ACTIONS(5517), + [2130] = { + [sym_identifier] = ACTIONS(2659), + [aux_sym_preproc_def_token1] = ACTIONS(2659), + [aux_sym_preproc_if_token1] = ACTIONS(2659), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2659), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2659), + [sym_preproc_directive] = ACTIONS(2659), + [anon_sym_LPAREN2] = ACTIONS(2661), + [anon_sym_TILDE] = ACTIONS(2661), + [anon_sym_STAR] = ACTIONS(2661), + [anon_sym_AMP_AMP] = ACTIONS(2661), + [anon_sym_AMP] = ACTIONS(2659), + [anon_sym_SEMI] = ACTIONS(2661), + [anon_sym___extension__] = ACTIONS(2659), + [anon_sym_typedef] = ACTIONS(2659), + [anon_sym_virtual] = ACTIONS(2659), + [anon_sym_extern] = ACTIONS(2659), + [anon_sym___attribute__] = ACTIONS(2659), + [anon_sym___attribute] = ACTIONS(2659), + [anon_sym_using] = ACTIONS(2659), + [anon_sym_COLON_COLON] = ACTIONS(2661), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2661), + [anon_sym___declspec] = ACTIONS(2659), + [anon_sym___based] = ACTIONS(2659), + [anon_sym_RBRACE] = ACTIONS(2661), + [anon_sym_signed] = ACTIONS(2659), + [anon_sym_unsigned] = ACTIONS(2659), + [anon_sym_long] = ACTIONS(2659), + [anon_sym_short] = ACTIONS(2659), + [anon_sym_LBRACK] = ACTIONS(2659), + [anon_sym_static] = ACTIONS(2659), + [anon_sym_register] = ACTIONS(2659), + [anon_sym_inline] = ACTIONS(2659), + [anon_sym___inline] = ACTIONS(2659), + [anon_sym___inline__] = ACTIONS(2659), + [anon_sym___forceinline] = ACTIONS(2659), + [anon_sym_thread_local] = ACTIONS(2659), + [anon_sym___thread] = ACTIONS(2659), + [anon_sym_const] = ACTIONS(2659), + [anon_sym_constexpr] = ACTIONS(2659), + [anon_sym_volatile] = ACTIONS(2659), + [anon_sym_restrict] = ACTIONS(2659), + [anon_sym___restrict__] = ACTIONS(2659), + [anon_sym__Atomic] = ACTIONS(2659), + [anon_sym__Noreturn] = ACTIONS(2659), + [anon_sym_noreturn] = ACTIONS(2659), + [anon_sym__Nonnull] = ACTIONS(2659), + [anon_sym_mutable] = ACTIONS(2659), + [anon_sym_constinit] = ACTIONS(2659), + [anon_sym_consteval] = ACTIONS(2659), + [anon_sym_alignas] = ACTIONS(2659), + [anon_sym__Alignas] = ACTIONS(2659), + [sym_primitive_type] = ACTIONS(2659), + [anon_sym_enum] = ACTIONS(2659), + [anon_sym_class] = ACTIONS(2659), + [anon_sym_struct] = ACTIONS(2659), + [anon_sym_union] = ACTIONS(2659), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5517), - [anon_sym_decltype] = ACTIONS(5517), - [anon_sym_explicit] = ACTIONS(5517), - [anon_sym_typename] = ACTIONS(5517), - [anon_sym_private] = ACTIONS(5517), - [anon_sym_template] = ACTIONS(5517), - [anon_sym_operator] = ACTIONS(5517), - [anon_sym_friend] = ACTIONS(5517), - [anon_sym_public] = ACTIONS(5517), - [anon_sym_protected] = ACTIONS(5517), - [anon_sym_static_assert] = ACTIONS(5517), + [sym_auto] = ACTIONS(2659), + [anon_sym_decltype] = ACTIONS(2659), + [anon_sym_explicit] = ACTIONS(2659), + [anon_sym_typename] = ACTIONS(2659), + [anon_sym_private] = ACTIONS(2659), + [anon_sym_template] = ACTIONS(2659), + [anon_sym_operator] = ACTIONS(2659), + [anon_sym_friend] = ACTIONS(2659), + [anon_sym_public] = ACTIONS(2659), + [anon_sym_protected] = ACTIONS(2659), + [anon_sym_static_assert] = ACTIONS(2659), }, - [2071] = { - [sym_identifier] = ACTIONS(3083), - [aux_sym_preproc_def_token1] = ACTIONS(3083), - [aux_sym_preproc_if_token1] = ACTIONS(3083), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3083), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3083), - [sym_preproc_directive] = ACTIONS(3083), - [anon_sym_LPAREN2] = ACTIONS(3085), - [anon_sym_TILDE] = ACTIONS(3085), - [anon_sym_STAR] = ACTIONS(3085), - [anon_sym_AMP_AMP] = ACTIONS(3085), - [anon_sym_AMP] = ACTIONS(3083), - [anon_sym_SEMI] = ACTIONS(3085), - [anon_sym___extension__] = ACTIONS(3083), - [anon_sym_typedef] = ACTIONS(3083), - [anon_sym_virtual] = ACTIONS(3083), - [anon_sym_extern] = ACTIONS(3083), - [anon_sym___attribute__] = ACTIONS(3083), - [anon_sym___attribute] = ACTIONS(3083), - [anon_sym_using] = ACTIONS(3083), - [anon_sym_COLON_COLON] = ACTIONS(3085), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3085), - [anon_sym___declspec] = ACTIONS(3083), - [anon_sym___based] = ACTIONS(3083), - [anon_sym_RBRACE] = ACTIONS(3085), - [anon_sym_signed] = ACTIONS(3083), - [anon_sym_unsigned] = ACTIONS(3083), - [anon_sym_long] = ACTIONS(3083), - [anon_sym_short] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(3083), - [anon_sym_static] = ACTIONS(3083), - [anon_sym_register] = ACTIONS(3083), - [anon_sym_inline] = ACTIONS(3083), - [anon_sym___inline] = ACTIONS(3083), - [anon_sym___inline__] = ACTIONS(3083), - [anon_sym___forceinline] = ACTIONS(3083), - [anon_sym_thread_local] = ACTIONS(3083), - [anon_sym___thread] = ACTIONS(3083), - [anon_sym_const] = ACTIONS(3083), - [anon_sym_constexpr] = ACTIONS(3083), - [anon_sym_volatile] = ACTIONS(3083), - [anon_sym_restrict] = ACTIONS(3083), - [anon_sym___restrict__] = ACTIONS(3083), - [anon_sym__Atomic] = ACTIONS(3083), - [anon_sym__Noreturn] = ACTIONS(3083), - [anon_sym_noreturn] = ACTIONS(3083), - [anon_sym__Nonnull] = ACTIONS(3083), - [anon_sym_mutable] = ACTIONS(3083), - [anon_sym_constinit] = ACTIONS(3083), - [anon_sym_consteval] = ACTIONS(3083), - [anon_sym_alignas] = ACTIONS(3083), - [anon_sym__Alignas] = ACTIONS(3083), - [sym_primitive_type] = ACTIONS(3083), - [anon_sym_enum] = ACTIONS(3083), - [anon_sym_class] = ACTIONS(3083), - [anon_sym_struct] = ACTIONS(3083), - [anon_sym_union] = ACTIONS(3083), + [2131] = { + [sym_identifier] = ACTIONS(2627), + [aux_sym_preproc_def_token1] = ACTIONS(2627), + [aux_sym_preproc_if_token1] = ACTIONS(2627), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2627), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2627), + [sym_preproc_directive] = ACTIONS(2627), + [anon_sym_LPAREN2] = ACTIONS(2629), + [anon_sym_TILDE] = ACTIONS(2629), + [anon_sym_STAR] = ACTIONS(2629), + [anon_sym_AMP_AMP] = ACTIONS(2629), + [anon_sym_AMP] = ACTIONS(2627), + [anon_sym_SEMI] = ACTIONS(2629), + [anon_sym___extension__] = ACTIONS(2627), + [anon_sym_typedef] = ACTIONS(2627), + [anon_sym_virtual] = ACTIONS(2627), + [anon_sym_extern] = ACTIONS(2627), + [anon_sym___attribute__] = ACTIONS(2627), + [anon_sym___attribute] = ACTIONS(2627), + [anon_sym_using] = ACTIONS(2627), + [anon_sym_COLON_COLON] = ACTIONS(2629), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2629), + [anon_sym___declspec] = ACTIONS(2627), + [anon_sym___based] = ACTIONS(2627), + [anon_sym_RBRACE] = ACTIONS(2629), + [anon_sym_signed] = ACTIONS(2627), + [anon_sym_unsigned] = ACTIONS(2627), + [anon_sym_long] = ACTIONS(2627), + [anon_sym_short] = ACTIONS(2627), + [anon_sym_LBRACK] = ACTIONS(2627), + [anon_sym_static] = ACTIONS(2627), + [anon_sym_register] = ACTIONS(2627), + [anon_sym_inline] = ACTIONS(2627), + [anon_sym___inline] = ACTIONS(2627), + [anon_sym___inline__] = ACTIONS(2627), + [anon_sym___forceinline] = ACTIONS(2627), + [anon_sym_thread_local] = ACTIONS(2627), + [anon_sym___thread] = ACTIONS(2627), + [anon_sym_const] = ACTIONS(2627), + [anon_sym_constexpr] = ACTIONS(2627), + [anon_sym_volatile] = ACTIONS(2627), + [anon_sym_restrict] = ACTIONS(2627), + [anon_sym___restrict__] = ACTIONS(2627), + [anon_sym__Atomic] = ACTIONS(2627), + [anon_sym__Noreturn] = ACTIONS(2627), + [anon_sym_noreturn] = ACTIONS(2627), + [anon_sym__Nonnull] = ACTIONS(2627), + [anon_sym_mutable] = ACTIONS(2627), + [anon_sym_constinit] = ACTIONS(2627), + [anon_sym_consteval] = ACTIONS(2627), + [anon_sym_alignas] = ACTIONS(2627), + [anon_sym__Alignas] = ACTIONS(2627), + [sym_primitive_type] = ACTIONS(2627), + [anon_sym_enum] = ACTIONS(2627), + [anon_sym_class] = ACTIONS(2627), + [anon_sym_struct] = ACTIONS(2627), + [anon_sym_union] = ACTIONS(2627), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3083), - [anon_sym_decltype] = ACTIONS(3083), - [anon_sym_explicit] = ACTIONS(3083), - [anon_sym_typename] = ACTIONS(3083), - [anon_sym_private] = ACTIONS(3083), - [anon_sym_template] = ACTIONS(3083), - [anon_sym_operator] = ACTIONS(3083), - [anon_sym_friend] = ACTIONS(3083), - [anon_sym_public] = ACTIONS(3083), - [anon_sym_protected] = ACTIONS(3083), - [anon_sym_static_assert] = ACTIONS(3083), + [sym_auto] = ACTIONS(2627), + [anon_sym_decltype] = ACTIONS(2627), + [anon_sym_explicit] = ACTIONS(2627), + [anon_sym_typename] = ACTIONS(2627), + [anon_sym_private] = ACTIONS(2627), + [anon_sym_template] = ACTIONS(2627), + [anon_sym_operator] = ACTIONS(2627), + [anon_sym_friend] = ACTIONS(2627), + [anon_sym_public] = ACTIONS(2627), + [anon_sym_protected] = ACTIONS(2627), + [anon_sym_static_assert] = ACTIONS(2627), }, - [2072] = { - [sym_identifier] = ACTIONS(2911), - [aux_sym_preproc_def_token1] = ACTIONS(2911), - [aux_sym_preproc_if_token1] = ACTIONS(2911), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2911), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2911), - [sym_preproc_directive] = ACTIONS(2911), - [anon_sym_LPAREN2] = ACTIONS(2913), - [anon_sym_TILDE] = ACTIONS(2913), - [anon_sym_STAR] = ACTIONS(2913), - [anon_sym_AMP_AMP] = ACTIONS(2913), - [anon_sym_AMP] = ACTIONS(2911), - [anon_sym_SEMI] = ACTIONS(2913), - [anon_sym___extension__] = ACTIONS(2911), - [anon_sym_typedef] = ACTIONS(2911), - [anon_sym_virtual] = ACTIONS(2911), - [anon_sym_extern] = ACTIONS(2911), - [anon_sym___attribute__] = ACTIONS(2911), - [anon_sym___attribute] = ACTIONS(2911), - [anon_sym_using] = ACTIONS(2911), - [anon_sym_COLON_COLON] = ACTIONS(2913), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2913), - [anon_sym___declspec] = ACTIONS(2911), - [anon_sym___based] = ACTIONS(2911), - [anon_sym_RBRACE] = ACTIONS(2913), - [anon_sym_signed] = ACTIONS(2911), - [anon_sym_unsigned] = ACTIONS(2911), - [anon_sym_long] = ACTIONS(2911), - [anon_sym_short] = ACTIONS(2911), - [anon_sym_LBRACK] = ACTIONS(2911), - [anon_sym_static] = ACTIONS(2911), - [anon_sym_register] = ACTIONS(2911), - [anon_sym_inline] = ACTIONS(2911), - [anon_sym___inline] = ACTIONS(2911), - [anon_sym___inline__] = ACTIONS(2911), - [anon_sym___forceinline] = ACTIONS(2911), - [anon_sym_thread_local] = ACTIONS(2911), - [anon_sym___thread] = ACTIONS(2911), - [anon_sym_const] = ACTIONS(2911), - [anon_sym_constexpr] = ACTIONS(2911), - [anon_sym_volatile] = ACTIONS(2911), - [anon_sym_restrict] = ACTIONS(2911), - [anon_sym___restrict__] = ACTIONS(2911), - [anon_sym__Atomic] = ACTIONS(2911), - [anon_sym__Noreturn] = ACTIONS(2911), - [anon_sym_noreturn] = ACTIONS(2911), - [anon_sym__Nonnull] = ACTIONS(2911), - [anon_sym_mutable] = ACTIONS(2911), - [anon_sym_constinit] = ACTIONS(2911), - [anon_sym_consteval] = ACTIONS(2911), - [anon_sym_alignas] = ACTIONS(2911), - [anon_sym__Alignas] = ACTIONS(2911), - [sym_primitive_type] = ACTIONS(2911), - [anon_sym_enum] = ACTIONS(2911), - [anon_sym_class] = ACTIONS(2911), - [anon_sym_struct] = ACTIONS(2911), - [anon_sym_union] = ACTIONS(2911), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2911), - [anon_sym_decltype] = ACTIONS(2911), - [anon_sym_explicit] = ACTIONS(2911), - [anon_sym_typename] = ACTIONS(2911), - [anon_sym_private] = ACTIONS(2911), - [anon_sym_template] = ACTIONS(2911), - [anon_sym_operator] = ACTIONS(2911), - [anon_sym_friend] = ACTIONS(2911), - [anon_sym_public] = ACTIONS(2911), - [anon_sym_protected] = ACTIONS(2911), - [anon_sym_static_assert] = ACTIONS(2911), + [2132] = { + [sym_template_argument_list] = STATE(1623), + [sym_identifier] = ACTIONS(4925), + [anon_sym_LPAREN2] = ACTIONS(4932), + [anon_sym_TILDE] = ACTIONS(4932), + [anon_sym_STAR] = ACTIONS(4932), + [anon_sym_PIPE_PIPE] = ACTIONS(4932), + [anon_sym_AMP_AMP] = ACTIONS(4932), + [anon_sym_AMP] = ACTIONS(4925), + [anon_sym_LT] = ACTIONS(6064), + [anon_sym___extension__] = ACTIONS(4925), + [anon_sym_virtual] = ACTIONS(4925), + [anon_sym_extern] = ACTIONS(4925), + [anon_sym___attribute__] = ACTIONS(4925), + [anon_sym___attribute] = ACTIONS(4925), + [anon_sym_using] = ACTIONS(4925), + [anon_sym_COLON_COLON] = ACTIONS(4187), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4932), + [anon_sym___declspec] = ACTIONS(4925), + [anon_sym___based] = ACTIONS(4925), + [anon_sym___cdecl] = ACTIONS(4925), + [anon_sym___clrcall] = ACTIONS(4925), + [anon_sym___stdcall] = ACTIONS(4925), + [anon_sym___fastcall] = ACTIONS(4925), + [anon_sym___thiscall] = ACTIONS(4925), + [anon_sym___vectorcall] = ACTIONS(4925), + [anon_sym_signed] = ACTIONS(4925), + [anon_sym_unsigned] = ACTIONS(4925), + [anon_sym_long] = ACTIONS(4925), + [anon_sym_short] = ACTIONS(4925), + [anon_sym_LBRACK] = ACTIONS(4925), + [anon_sym_static] = ACTIONS(4925), + [anon_sym_register] = ACTIONS(4925), + [anon_sym_inline] = ACTIONS(4925), + [anon_sym___inline] = ACTIONS(4925), + [anon_sym___inline__] = ACTIONS(4925), + [anon_sym___forceinline] = ACTIONS(4925), + [anon_sym_thread_local] = ACTIONS(4925), + [anon_sym___thread] = ACTIONS(4925), + [anon_sym_const] = ACTIONS(4925), + [anon_sym_constexpr] = ACTIONS(4925), + [anon_sym_volatile] = ACTIONS(4925), + [anon_sym_restrict] = ACTIONS(4925), + [anon_sym___restrict__] = ACTIONS(4925), + [anon_sym__Atomic] = ACTIONS(4925), + [anon_sym__Noreturn] = ACTIONS(4925), + [anon_sym_noreturn] = ACTIONS(4925), + [anon_sym__Nonnull] = ACTIONS(4925), + [anon_sym_mutable] = ACTIONS(4925), + [anon_sym_constinit] = ACTIONS(4925), + [anon_sym_consteval] = ACTIONS(4925), + [anon_sym_alignas] = ACTIONS(4925), + [anon_sym__Alignas] = ACTIONS(4925), + [sym_primitive_type] = ACTIONS(4925), + [anon_sym_enum] = ACTIONS(4925), + [anon_sym_class] = ACTIONS(4925), + [anon_sym_struct] = ACTIONS(4925), + [anon_sym_union] = ACTIONS(4925), + [anon_sym_or] = ACTIONS(4925), + [anon_sym_and] = ACTIONS(4925), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4925), + [anon_sym_decltype] = ACTIONS(4925), + [anon_sym_explicit] = ACTIONS(4925), + [anon_sym_typename] = ACTIONS(4925), + [anon_sym_template] = ACTIONS(4925), + [anon_sym_operator] = ACTIONS(4925), + [anon_sym_friend] = ACTIONS(4925), + [anon_sym_concept] = ACTIONS(4925), }, - [2073] = { - [sym_identifier] = ACTIONS(2911), - [aux_sym_preproc_def_token1] = ACTIONS(2911), - [aux_sym_preproc_if_token1] = ACTIONS(2911), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2911), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2911), - [sym_preproc_directive] = ACTIONS(2911), - [anon_sym_LPAREN2] = ACTIONS(2913), - [anon_sym_TILDE] = ACTIONS(2913), - [anon_sym_STAR] = ACTIONS(2913), - [anon_sym_AMP_AMP] = ACTIONS(2913), - [anon_sym_AMP] = ACTIONS(2911), - [anon_sym_SEMI] = ACTIONS(2913), - [anon_sym___extension__] = ACTIONS(2911), - [anon_sym_typedef] = ACTIONS(2911), - [anon_sym_virtual] = ACTIONS(2911), - [anon_sym_extern] = ACTIONS(2911), - [anon_sym___attribute__] = ACTIONS(2911), - [anon_sym___attribute] = ACTIONS(2911), - [anon_sym_using] = ACTIONS(2911), - [anon_sym_COLON_COLON] = ACTIONS(2913), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2913), - [anon_sym___declspec] = ACTIONS(2911), - [anon_sym___based] = ACTIONS(2911), - [anon_sym_RBRACE] = ACTIONS(2913), - [anon_sym_signed] = ACTIONS(2911), - [anon_sym_unsigned] = ACTIONS(2911), - [anon_sym_long] = ACTIONS(2911), - [anon_sym_short] = ACTIONS(2911), - [anon_sym_LBRACK] = ACTIONS(2911), - [anon_sym_static] = ACTIONS(2911), - [anon_sym_register] = ACTIONS(2911), - [anon_sym_inline] = ACTIONS(2911), - [anon_sym___inline] = ACTIONS(2911), - [anon_sym___inline__] = ACTIONS(2911), - [anon_sym___forceinline] = ACTIONS(2911), - [anon_sym_thread_local] = ACTIONS(2911), - [anon_sym___thread] = ACTIONS(2911), - [anon_sym_const] = ACTIONS(2911), - [anon_sym_constexpr] = ACTIONS(2911), - [anon_sym_volatile] = ACTIONS(2911), - [anon_sym_restrict] = ACTIONS(2911), - [anon_sym___restrict__] = ACTIONS(2911), - [anon_sym__Atomic] = ACTIONS(2911), - [anon_sym__Noreturn] = ACTIONS(2911), - [anon_sym_noreturn] = ACTIONS(2911), - [anon_sym__Nonnull] = ACTIONS(2911), - [anon_sym_mutable] = ACTIONS(2911), - [anon_sym_constinit] = ACTIONS(2911), - [anon_sym_consteval] = ACTIONS(2911), - [anon_sym_alignas] = ACTIONS(2911), - [anon_sym__Alignas] = ACTIONS(2911), - [sym_primitive_type] = ACTIONS(2911), - [anon_sym_enum] = ACTIONS(2911), - [anon_sym_class] = ACTIONS(2911), - [anon_sym_struct] = ACTIONS(2911), - [anon_sym_union] = ACTIONS(2911), + [2133] = { + [sym_attribute_specifier] = STATE(2264), + [sym_enumerator_list] = STATE(2229), + [sym_identifier] = ACTIONS(6066), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6068), + [anon_sym_COMMA] = ACTIONS(6068), + [anon_sym_RPAREN] = ACTIONS(6068), + [aux_sym_preproc_if_token2] = ACTIONS(6068), + [aux_sym_preproc_else_token1] = ACTIONS(6068), + [aux_sym_preproc_elif_token1] = ACTIONS(6066), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6068), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6068), + [anon_sym_LPAREN2] = ACTIONS(6068), + [anon_sym_DASH] = ACTIONS(6066), + [anon_sym_PLUS] = ACTIONS(6066), + [anon_sym_STAR] = ACTIONS(6066), + [anon_sym_SLASH] = ACTIONS(6066), + [anon_sym_PERCENT] = ACTIONS(6066), + [anon_sym_PIPE_PIPE] = ACTIONS(6068), + [anon_sym_AMP_AMP] = ACTIONS(6068), + [anon_sym_PIPE] = ACTIONS(6066), + [anon_sym_CARET] = ACTIONS(6066), + [anon_sym_AMP] = ACTIONS(6066), + [anon_sym_EQ_EQ] = ACTIONS(6068), + [anon_sym_BANG_EQ] = ACTIONS(6068), + [anon_sym_GT] = ACTIONS(6066), + [anon_sym_GT_EQ] = ACTIONS(6068), + [anon_sym_LT_EQ] = ACTIONS(6066), + [anon_sym_LT] = ACTIONS(6066), + [anon_sym_LT_LT] = ACTIONS(6066), + [anon_sym_GT_GT] = ACTIONS(6066), + [anon_sym_SEMI] = ACTIONS(6068), + [anon_sym___attribute__] = ACTIONS(5561), + [anon_sym___attribute] = ACTIONS(5561), + [anon_sym_COLON] = ACTIONS(6068), + [anon_sym_LBRACE] = ACTIONS(6070), + [anon_sym_RBRACE] = ACTIONS(6068), + [anon_sym_LBRACK] = ACTIONS(6068), + [anon_sym_RBRACK] = ACTIONS(6068), + [anon_sym_EQ] = ACTIONS(6066), + [anon_sym_QMARK] = ACTIONS(6068), + [anon_sym_STAR_EQ] = ACTIONS(6068), + [anon_sym_SLASH_EQ] = ACTIONS(6068), + [anon_sym_PERCENT_EQ] = ACTIONS(6068), + [anon_sym_PLUS_EQ] = ACTIONS(6068), + [anon_sym_DASH_EQ] = ACTIONS(6068), + [anon_sym_LT_LT_EQ] = ACTIONS(6068), + [anon_sym_GT_GT_EQ] = ACTIONS(6068), + [anon_sym_AMP_EQ] = ACTIONS(6068), + [anon_sym_CARET_EQ] = ACTIONS(6068), + [anon_sym_PIPE_EQ] = ACTIONS(6068), + [anon_sym_and_eq] = ACTIONS(6066), + [anon_sym_or_eq] = ACTIONS(6066), + [anon_sym_xor_eq] = ACTIONS(6066), + [anon_sym_LT_EQ_GT] = ACTIONS(6068), + [anon_sym_or] = ACTIONS(6066), + [anon_sym_and] = ACTIONS(6066), + [anon_sym_bitor] = ACTIONS(6066), + [anon_sym_xor] = ACTIONS(6066), + [anon_sym_bitand] = ACTIONS(6066), + [anon_sym_not_eq] = ACTIONS(6066), + [anon_sym_DASH_DASH] = ACTIONS(6068), + [anon_sym_PLUS_PLUS] = ACTIONS(6068), + [anon_sym_DOT] = ACTIONS(6066), + [anon_sym_DOT_STAR] = ACTIONS(6068), + [anon_sym_DASH_GT] = ACTIONS(6068), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2911), - [anon_sym_decltype] = ACTIONS(2911), - [anon_sym_explicit] = ACTIONS(2911), - [anon_sym_typename] = ACTIONS(2911), - [anon_sym_private] = ACTIONS(2911), - [anon_sym_template] = ACTIONS(2911), - [anon_sym_operator] = ACTIONS(2911), - [anon_sym_friend] = ACTIONS(2911), - [anon_sym_public] = ACTIONS(2911), - [anon_sym_protected] = ACTIONS(2911), - [anon_sym_static_assert] = ACTIONS(2911), + [sym_auto] = ACTIONS(6066), + [anon_sym_decltype] = ACTIONS(6066), }, - [2074] = { - [sym_identifier] = ACTIONS(5633), - [aux_sym_preproc_def_token1] = ACTIONS(5633), - [aux_sym_preproc_if_token1] = ACTIONS(5633), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5633), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5633), - [sym_preproc_directive] = ACTIONS(5633), - [anon_sym_LPAREN2] = ACTIONS(5635), - [anon_sym_TILDE] = ACTIONS(5635), - [anon_sym_STAR] = ACTIONS(5635), - [anon_sym_AMP_AMP] = ACTIONS(5635), - [anon_sym_AMP] = ACTIONS(5633), - [anon_sym_SEMI] = ACTIONS(5635), - [anon_sym___extension__] = ACTIONS(5633), - [anon_sym_typedef] = ACTIONS(5633), - [anon_sym_virtual] = ACTIONS(5633), - [anon_sym_extern] = ACTIONS(5633), - [anon_sym___attribute__] = ACTIONS(5633), - [anon_sym___attribute] = ACTIONS(5633), - [anon_sym_using] = ACTIONS(5633), - [anon_sym_COLON_COLON] = ACTIONS(5635), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5635), - [anon_sym___declspec] = ACTIONS(5633), - [anon_sym___based] = ACTIONS(5633), - [anon_sym_RBRACE] = ACTIONS(5635), - [anon_sym_signed] = ACTIONS(5633), - [anon_sym_unsigned] = ACTIONS(5633), - [anon_sym_long] = ACTIONS(5633), - [anon_sym_short] = ACTIONS(5633), - [anon_sym_LBRACK] = ACTIONS(5633), - [anon_sym_static] = ACTIONS(5633), - [anon_sym_register] = ACTIONS(5633), - [anon_sym_inline] = ACTIONS(5633), - [anon_sym___inline] = ACTIONS(5633), - [anon_sym___inline__] = ACTIONS(5633), - [anon_sym___forceinline] = ACTIONS(5633), - [anon_sym_thread_local] = ACTIONS(5633), - [anon_sym___thread] = ACTIONS(5633), - [anon_sym_const] = ACTIONS(5633), - [anon_sym_constexpr] = ACTIONS(5633), - [anon_sym_volatile] = ACTIONS(5633), - [anon_sym_restrict] = ACTIONS(5633), - [anon_sym___restrict__] = ACTIONS(5633), - [anon_sym__Atomic] = ACTIONS(5633), - [anon_sym__Noreturn] = ACTIONS(5633), - [anon_sym_noreturn] = ACTIONS(5633), - [anon_sym__Nonnull] = ACTIONS(5633), - [anon_sym_mutable] = ACTIONS(5633), - [anon_sym_constinit] = ACTIONS(5633), - [anon_sym_consteval] = ACTIONS(5633), - [anon_sym_alignas] = ACTIONS(5633), - [anon_sym__Alignas] = ACTIONS(5633), - [sym_primitive_type] = ACTIONS(5633), - [anon_sym_enum] = ACTIONS(5633), - [anon_sym_class] = ACTIONS(5633), - [anon_sym_struct] = ACTIONS(5633), - [anon_sym_union] = ACTIONS(5633), + [2134] = { + [sym_identifier] = ACTIONS(2935), + [aux_sym_preproc_def_token1] = ACTIONS(2935), + [aux_sym_preproc_if_token1] = ACTIONS(2935), + [aux_sym_preproc_if_token2] = ACTIONS(2935), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2935), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2935), + [sym_preproc_directive] = ACTIONS(2935), + [anon_sym_LPAREN2] = ACTIONS(2937), + [anon_sym_TILDE] = ACTIONS(2937), + [anon_sym_STAR] = ACTIONS(2937), + [anon_sym_AMP_AMP] = ACTIONS(2937), + [anon_sym_AMP] = ACTIONS(2935), + [anon_sym_SEMI] = ACTIONS(2937), + [anon_sym___extension__] = ACTIONS(2935), + [anon_sym_typedef] = ACTIONS(2935), + [anon_sym_virtual] = ACTIONS(2935), + [anon_sym_extern] = ACTIONS(2935), + [anon_sym___attribute__] = ACTIONS(2935), + [anon_sym___attribute] = ACTIONS(2935), + [anon_sym_using] = ACTIONS(2935), + [anon_sym_COLON_COLON] = ACTIONS(2937), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2937), + [anon_sym___declspec] = ACTIONS(2935), + [anon_sym___based] = ACTIONS(2935), + [anon_sym_signed] = ACTIONS(2935), + [anon_sym_unsigned] = ACTIONS(2935), + [anon_sym_long] = ACTIONS(2935), + [anon_sym_short] = ACTIONS(2935), + [anon_sym_LBRACK] = ACTIONS(2935), + [anon_sym_static] = ACTIONS(2935), + [anon_sym_register] = ACTIONS(2935), + [anon_sym_inline] = ACTIONS(2935), + [anon_sym___inline] = ACTIONS(2935), + [anon_sym___inline__] = ACTIONS(2935), + [anon_sym___forceinline] = ACTIONS(2935), + [anon_sym_thread_local] = ACTIONS(2935), + [anon_sym___thread] = ACTIONS(2935), + [anon_sym_const] = ACTIONS(2935), + [anon_sym_constexpr] = ACTIONS(2935), + [anon_sym_volatile] = ACTIONS(2935), + [anon_sym_restrict] = ACTIONS(2935), + [anon_sym___restrict__] = ACTIONS(2935), + [anon_sym__Atomic] = ACTIONS(2935), + [anon_sym__Noreturn] = ACTIONS(2935), + [anon_sym_noreturn] = ACTIONS(2935), + [anon_sym__Nonnull] = ACTIONS(2935), + [anon_sym_mutable] = ACTIONS(2935), + [anon_sym_constinit] = ACTIONS(2935), + [anon_sym_consteval] = ACTIONS(2935), + [anon_sym_alignas] = ACTIONS(2935), + [anon_sym__Alignas] = ACTIONS(2935), + [sym_primitive_type] = ACTIONS(2935), + [anon_sym_enum] = ACTIONS(2935), + [anon_sym_class] = ACTIONS(2935), + [anon_sym_struct] = ACTIONS(2935), + [anon_sym_union] = ACTIONS(2935), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5633), - [anon_sym_decltype] = ACTIONS(5633), - [anon_sym_explicit] = ACTIONS(5633), - [anon_sym_typename] = ACTIONS(5633), - [anon_sym_private] = ACTIONS(5633), - [anon_sym_template] = ACTIONS(5633), - [anon_sym_operator] = ACTIONS(5633), - [anon_sym_friend] = ACTIONS(5633), - [anon_sym_public] = ACTIONS(5633), - [anon_sym_protected] = ACTIONS(5633), - [anon_sym_static_assert] = ACTIONS(5633), - }, - [2075] = { - [sym_identifier] = ACTIONS(3035), - [aux_sym_preproc_def_token1] = ACTIONS(3035), - [aux_sym_preproc_if_token1] = ACTIONS(3035), - [aux_sym_preproc_if_token2] = ACTIONS(3035), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3035), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3035), - [sym_preproc_directive] = ACTIONS(3035), - [anon_sym_LPAREN2] = ACTIONS(3037), - [anon_sym_TILDE] = ACTIONS(3037), - [anon_sym_STAR] = ACTIONS(3037), - [anon_sym_AMP_AMP] = ACTIONS(3037), - [anon_sym_AMP] = ACTIONS(3035), - [anon_sym_SEMI] = ACTIONS(3037), - [anon_sym___extension__] = ACTIONS(3035), - [anon_sym_typedef] = ACTIONS(3035), - [anon_sym_virtual] = ACTIONS(3035), - [anon_sym_extern] = ACTIONS(3035), - [anon_sym___attribute__] = ACTIONS(3035), - [anon_sym___attribute] = ACTIONS(3035), - [anon_sym_using] = ACTIONS(3035), - [anon_sym_COLON_COLON] = ACTIONS(3037), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3037), - [anon_sym___declspec] = ACTIONS(3035), - [anon_sym___based] = ACTIONS(3035), - [anon_sym_signed] = ACTIONS(3035), - [anon_sym_unsigned] = ACTIONS(3035), - [anon_sym_long] = ACTIONS(3035), - [anon_sym_short] = ACTIONS(3035), - [anon_sym_LBRACK] = ACTIONS(3035), - [anon_sym_static] = ACTIONS(3035), - [anon_sym_register] = ACTIONS(3035), - [anon_sym_inline] = ACTIONS(3035), - [anon_sym___inline] = ACTIONS(3035), - [anon_sym___inline__] = ACTIONS(3035), - [anon_sym___forceinline] = ACTIONS(3035), - [anon_sym_thread_local] = ACTIONS(3035), - [anon_sym___thread] = ACTIONS(3035), - [anon_sym_const] = ACTIONS(3035), - [anon_sym_constexpr] = ACTIONS(3035), - [anon_sym_volatile] = ACTIONS(3035), - [anon_sym_restrict] = ACTIONS(3035), - [anon_sym___restrict__] = ACTIONS(3035), - [anon_sym__Atomic] = ACTIONS(3035), - [anon_sym__Noreturn] = ACTIONS(3035), - [anon_sym_noreturn] = ACTIONS(3035), - [anon_sym__Nonnull] = ACTIONS(3035), - [anon_sym_mutable] = ACTIONS(3035), - [anon_sym_constinit] = ACTIONS(3035), - [anon_sym_consteval] = ACTIONS(3035), - [anon_sym_alignas] = ACTIONS(3035), - [anon_sym__Alignas] = ACTIONS(3035), - [sym_primitive_type] = ACTIONS(3035), - [anon_sym_enum] = ACTIONS(3035), - [anon_sym_class] = ACTIONS(3035), - [anon_sym_struct] = ACTIONS(3035), - [anon_sym_union] = ACTIONS(3035), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3035), - [anon_sym_decltype] = ACTIONS(3035), - [anon_sym_explicit] = ACTIONS(3035), - [anon_sym_typename] = ACTIONS(3035), - [anon_sym_private] = ACTIONS(3035), - [anon_sym_template] = ACTIONS(3035), - [anon_sym_operator] = ACTIONS(3035), - [anon_sym_friend] = ACTIONS(3035), - [anon_sym_public] = ACTIONS(3035), - [anon_sym_protected] = ACTIONS(3035), - [anon_sym_static_assert] = ACTIONS(3035), + [sym_auto] = ACTIONS(2935), + [anon_sym_decltype] = ACTIONS(2935), + [anon_sym_explicit] = ACTIONS(2935), + [anon_sym_typename] = ACTIONS(2935), + [anon_sym_private] = ACTIONS(2935), + [anon_sym_template] = ACTIONS(2935), + [anon_sym_operator] = ACTIONS(2935), + [anon_sym_friend] = ACTIONS(2935), + [anon_sym_public] = ACTIONS(2935), + [anon_sym_protected] = ACTIONS(2935), + [anon_sym_static_assert] = ACTIONS(2935), }, - [2076] = { - [sym_identifier] = ACTIONS(3039), - [aux_sym_preproc_def_token1] = ACTIONS(3039), - [aux_sym_preproc_if_token1] = ACTIONS(3039), - [aux_sym_preproc_if_token2] = ACTIONS(3039), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3039), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3039), - [sym_preproc_directive] = ACTIONS(3039), - [anon_sym_LPAREN2] = ACTIONS(3041), - [anon_sym_TILDE] = ACTIONS(3041), - [anon_sym_STAR] = ACTIONS(3041), - [anon_sym_AMP_AMP] = ACTIONS(3041), - [anon_sym_AMP] = ACTIONS(3039), - [anon_sym_SEMI] = ACTIONS(3041), - [anon_sym___extension__] = ACTIONS(3039), - [anon_sym_typedef] = ACTIONS(3039), - [anon_sym_virtual] = ACTIONS(3039), - [anon_sym_extern] = ACTIONS(3039), - [anon_sym___attribute__] = ACTIONS(3039), - [anon_sym___attribute] = ACTIONS(3039), - [anon_sym_using] = ACTIONS(3039), - [anon_sym_COLON_COLON] = ACTIONS(3041), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3041), - [anon_sym___declspec] = ACTIONS(3039), - [anon_sym___based] = ACTIONS(3039), - [anon_sym_signed] = ACTIONS(3039), - [anon_sym_unsigned] = ACTIONS(3039), - [anon_sym_long] = ACTIONS(3039), - [anon_sym_short] = ACTIONS(3039), - [anon_sym_LBRACK] = ACTIONS(3039), - [anon_sym_static] = ACTIONS(3039), - [anon_sym_register] = ACTIONS(3039), - [anon_sym_inline] = ACTIONS(3039), - [anon_sym___inline] = ACTIONS(3039), - [anon_sym___inline__] = ACTIONS(3039), - [anon_sym___forceinline] = ACTIONS(3039), - [anon_sym_thread_local] = ACTIONS(3039), - [anon_sym___thread] = ACTIONS(3039), - [anon_sym_const] = ACTIONS(3039), - [anon_sym_constexpr] = ACTIONS(3039), - [anon_sym_volatile] = ACTIONS(3039), - [anon_sym_restrict] = ACTIONS(3039), - [anon_sym___restrict__] = ACTIONS(3039), - [anon_sym__Atomic] = ACTIONS(3039), - [anon_sym__Noreturn] = ACTIONS(3039), - [anon_sym_noreturn] = ACTIONS(3039), - [anon_sym__Nonnull] = ACTIONS(3039), - [anon_sym_mutable] = ACTIONS(3039), - [anon_sym_constinit] = ACTIONS(3039), - [anon_sym_consteval] = ACTIONS(3039), - [anon_sym_alignas] = ACTIONS(3039), - [anon_sym__Alignas] = ACTIONS(3039), - [sym_primitive_type] = ACTIONS(3039), - [anon_sym_enum] = ACTIONS(3039), - [anon_sym_class] = ACTIONS(3039), - [anon_sym_struct] = ACTIONS(3039), - [anon_sym_union] = ACTIONS(3039), + [2135] = { + [sym_identifier] = ACTIONS(2939), + [aux_sym_preproc_def_token1] = ACTIONS(2939), + [aux_sym_preproc_if_token1] = ACTIONS(2939), + [aux_sym_preproc_if_token2] = ACTIONS(2939), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2939), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2939), + [sym_preproc_directive] = ACTIONS(2939), + [anon_sym_LPAREN2] = ACTIONS(2941), + [anon_sym_TILDE] = ACTIONS(2941), + [anon_sym_STAR] = ACTIONS(2941), + [anon_sym_AMP_AMP] = ACTIONS(2941), + [anon_sym_AMP] = ACTIONS(2939), + [anon_sym_SEMI] = ACTIONS(2941), + [anon_sym___extension__] = ACTIONS(2939), + [anon_sym_typedef] = ACTIONS(2939), + [anon_sym_virtual] = ACTIONS(2939), + [anon_sym_extern] = ACTIONS(2939), + [anon_sym___attribute__] = ACTIONS(2939), + [anon_sym___attribute] = ACTIONS(2939), + [anon_sym_using] = ACTIONS(2939), + [anon_sym_COLON_COLON] = ACTIONS(2941), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2941), + [anon_sym___declspec] = ACTIONS(2939), + [anon_sym___based] = ACTIONS(2939), + [anon_sym_signed] = ACTIONS(2939), + [anon_sym_unsigned] = ACTIONS(2939), + [anon_sym_long] = ACTIONS(2939), + [anon_sym_short] = ACTIONS(2939), + [anon_sym_LBRACK] = ACTIONS(2939), + [anon_sym_static] = ACTIONS(2939), + [anon_sym_register] = ACTIONS(2939), + [anon_sym_inline] = ACTIONS(2939), + [anon_sym___inline] = ACTIONS(2939), + [anon_sym___inline__] = ACTIONS(2939), + [anon_sym___forceinline] = ACTIONS(2939), + [anon_sym_thread_local] = ACTIONS(2939), + [anon_sym___thread] = ACTIONS(2939), + [anon_sym_const] = ACTIONS(2939), + [anon_sym_constexpr] = ACTIONS(2939), + [anon_sym_volatile] = ACTIONS(2939), + [anon_sym_restrict] = ACTIONS(2939), + [anon_sym___restrict__] = ACTIONS(2939), + [anon_sym__Atomic] = ACTIONS(2939), + [anon_sym__Noreturn] = ACTIONS(2939), + [anon_sym_noreturn] = ACTIONS(2939), + [anon_sym__Nonnull] = ACTIONS(2939), + [anon_sym_mutable] = ACTIONS(2939), + [anon_sym_constinit] = ACTIONS(2939), + [anon_sym_consteval] = ACTIONS(2939), + [anon_sym_alignas] = ACTIONS(2939), + [anon_sym__Alignas] = ACTIONS(2939), + [sym_primitive_type] = ACTIONS(2939), + [anon_sym_enum] = ACTIONS(2939), + [anon_sym_class] = ACTIONS(2939), + [anon_sym_struct] = ACTIONS(2939), + [anon_sym_union] = ACTIONS(2939), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3039), - [anon_sym_decltype] = ACTIONS(3039), - [anon_sym_explicit] = ACTIONS(3039), - [anon_sym_typename] = ACTIONS(3039), - [anon_sym_private] = ACTIONS(3039), - [anon_sym_template] = ACTIONS(3039), - [anon_sym_operator] = ACTIONS(3039), - [anon_sym_friend] = ACTIONS(3039), - [anon_sym_public] = ACTIONS(3039), - [anon_sym_protected] = ACTIONS(3039), - [anon_sym_static_assert] = ACTIONS(3039), - }, - [2077] = { - [sym_identifier] = ACTIONS(5446), - [aux_sym_preproc_def_token1] = ACTIONS(5446), - [aux_sym_preproc_if_token1] = ACTIONS(5446), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5446), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5446), - [sym_preproc_directive] = ACTIONS(5446), - [anon_sym_LPAREN2] = ACTIONS(5448), - [anon_sym_TILDE] = ACTIONS(5448), - [anon_sym_STAR] = ACTIONS(5448), - [anon_sym_AMP_AMP] = ACTIONS(5448), - [anon_sym_AMP] = ACTIONS(5446), - [anon_sym_SEMI] = ACTIONS(5448), - [anon_sym___extension__] = ACTIONS(5446), - [anon_sym_typedef] = ACTIONS(5446), - [anon_sym_virtual] = ACTIONS(5446), - [anon_sym_extern] = ACTIONS(5446), - [anon_sym___attribute__] = ACTIONS(5446), - [anon_sym___attribute] = ACTIONS(5446), - [anon_sym_using] = ACTIONS(5446), - [anon_sym_COLON_COLON] = ACTIONS(5448), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5448), - [anon_sym___declspec] = ACTIONS(5446), - [anon_sym___based] = ACTIONS(5446), - [anon_sym_RBRACE] = ACTIONS(5448), - [anon_sym_signed] = ACTIONS(5446), - [anon_sym_unsigned] = ACTIONS(5446), - [anon_sym_long] = ACTIONS(5446), - [anon_sym_short] = ACTIONS(5446), - [anon_sym_LBRACK] = ACTIONS(5446), - [anon_sym_static] = ACTIONS(5446), - [anon_sym_register] = ACTIONS(5446), - [anon_sym_inline] = ACTIONS(5446), - [anon_sym___inline] = ACTIONS(5446), - [anon_sym___inline__] = ACTIONS(5446), - [anon_sym___forceinline] = ACTIONS(5446), - [anon_sym_thread_local] = ACTIONS(5446), - [anon_sym___thread] = ACTIONS(5446), - [anon_sym_const] = ACTIONS(5446), - [anon_sym_constexpr] = ACTIONS(5446), - [anon_sym_volatile] = ACTIONS(5446), - [anon_sym_restrict] = ACTIONS(5446), - [anon_sym___restrict__] = ACTIONS(5446), - [anon_sym__Atomic] = ACTIONS(5446), - [anon_sym__Noreturn] = ACTIONS(5446), - [anon_sym_noreturn] = ACTIONS(5446), - [anon_sym__Nonnull] = ACTIONS(5446), - [anon_sym_mutable] = ACTIONS(5446), - [anon_sym_constinit] = ACTIONS(5446), - [anon_sym_consteval] = ACTIONS(5446), - [anon_sym_alignas] = ACTIONS(5446), - [anon_sym__Alignas] = ACTIONS(5446), - [sym_primitive_type] = ACTIONS(5446), - [anon_sym_enum] = ACTIONS(5446), - [anon_sym_class] = ACTIONS(5446), - [anon_sym_struct] = ACTIONS(5446), - [anon_sym_union] = ACTIONS(5446), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5446), - [anon_sym_decltype] = ACTIONS(5446), - [anon_sym_explicit] = ACTIONS(5446), - [anon_sym_typename] = ACTIONS(5446), - [anon_sym_private] = ACTIONS(5446), - [anon_sym_template] = ACTIONS(5446), - [anon_sym_operator] = ACTIONS(5446), - [anon_sym_friend] = ACTIONS(5446), - [anon_sym_public] = ACTIONS(5446), - [anon_sym_protected] = ACTIONS(5446), - [anon_sym_static_assert] = ACTIONS(5446), - }, - [2078] = { - [sym_identifier] = ACTIONS(5446), - [aux_sym_preproc_def_token1] = ACTIONS(5446), - [aux_sym_preproc_if_token1] = ACTIONS(5446), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5446), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5446), - [sym_preproc_directive] = ACTIONS(5446), - [anon_sym_LPAREN2] = ACTIONS(5448), - [anon_sym_TILDE] = ACTIONS(5448), - [anon_sym_STAR] = ACTIONS(5448), - [anon_sym_AMP_AMP] = ACTIONS(5448), - [anon_sym_AMP] = ACTIONS(5446), - [anon_sym_SEMI] = ACTIONS(5448), - [anon_sym___extension__] = ACTIONS(5446), - [anon_sym_typedef] = ACTIONS(5446), - [anon_sym_virtual] = ACTIONS(5446), - [anon_sym_extern] = ACTIONS(5446), - [anon_sym___attribute__] = ACTIONS(5446), - [anon_sym___attribute] = ACTIONS(5446), - [anon_sym_using] = ACTIONS(5446), - [anon_sym_COLON_COLON] = ACTIONS(5448), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5448), - [anon_sym___declspec] = ACTIONS(5446), - [anon_sym___based] = ACTIONS(5446), - [anon_sym_RBRACE] = ACTIONS(5448), - [anon_sym_signed] = ACTIONS(5446), - [anon_sym_unsigned] = ACTIONS(5446), - [anon_sym_long] = ACTIONS(5446), - [anon_sym_short] = ACTIONS(5446), - [anon_sym_LBRACK] = ACTIONS(5446), - [anon_sym_static] = ACTIONS(5446), - [anon_sym_register] = ACTIONS(5446), - [anon_sym_inline] = ACTIONS(5446), - [anon_sym___inline] = ACTIONS(5446), - [anon_sym___inline__] = ACTIONS(5446), - [anon_sym___forceinline] = ACTIONS(5446), - [anon_sym_thread_local] = ACTIONS(5446), - [anon_sym___thread] = ACTIONS(5446), - [anon_sym_const] = ACTIONS(5446), - [anon_sym_constexpr] = ACTIONS(5446), - [anon_sym_volatile] = ACTIONS(5446), - [anon_sym_restrict] = ACTIONS(5446), - [anon_sym___restrict__] = ACTIONS(5446), - [anon_sym__Atomic] = ACTIONS(5446), - [anon_sym__Noreturn] = ACTIONS(5446), - [anon_sym_noreturn] = ACTIONS(5446), - [anon_sym__Nonnull] = ACTIONS(5446), - [anon_sym_mutable] = ACTIONS(5446), - [anon_sym_constinit] = ACTIONS(5446), - [anon_sym_consteval] = ACTIONS(5446), - [anon_sym_alignas] = ACTIONS(5446), - [anon_sym__Alignas] = ACTIONS(5446), - [sym_primitive_type] = ACTIONS(5446), - [anon_sym_enum] = ACTIONS(5446), - [anon_sym_class] = ACTIONS(5446), - [anon_sym_struct] = ACTIONS(5446), - [anon_sym_union] = ACTIONS(5446), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5446), - [anon_sym_decltype] = ACTIONS(5446), - [anon_sym_explicit] = ACTIONS(5446), - [anon_sym_typename] = ACTIONS(5446), - [anon_sym_private] = ACTIONS(5446), - [anon_sym_template] = ACTIONS(5446), - [anon_sym_operator] = ACTIONS(5446), - [anon_sym_friend] = ACTIONS(5446), - [anon_sym_public] = ACTIONS(5446), - [anon_sym_protected] = ACTIONS(5446), - [anon_sym_static_assert] = ACTIONS(5446), - }, - [2079] = { - [sym_identifier] = ACTIONS(3035), - [aux_sym_preproc_def_token1] = ACTIONS(3035), - [aux_sym_preproc_if_token1] = ACTIONS(3035), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3035), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3035), - [sym_preproc_directive] = ACTIONS(3035), - [anon_sym_LPAREN2] = ACTIONS(3037), - [anon_sym_TILDE] = ACTIONS(3037), - [anon_sym_STAR] = ACTIONS(3037), - [anon_sym_AMP_AMP] = ACTIONS(3037), - [anon_sym_AMP] = ACTIONS(3035), - [anon_sym_SEMI] = ACTIONS(3037), - [anon_sym___extension__] = ACTIONS(3035), - [anon_sym_typedef] = ACTIONS(3035), - [anon_sym_virtual] = ACTIONS(3035), - [anon_sym_extern] = ACTIONS(3035), - [anon_sym___attribute__] = ACTIONS(3035), - [anon_sym___attribute] = ACTIONS(3035), - [anon_sym_using] = ACTIONS(3035), - [anon_sym_COLON_COLON] = ACTIONS(3037), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3037), - [anon_sym___declspec] = ACTIONS(3035), - [anon_sym___based] = ACTIONS(3035), - [anon_sym_RBRACE] = ACTIONS(3037), - [anon_sym_signed] = ACTIONS(3035), - [anon_sym_unsigned] = ACTIONS(3035), - [anon_sym_long] = ACTIONS(3035), - [anon_sym_short] = ACTIONS(3035), - [anon_sym_LBRACK] = ACTIONS(3035), - [anon_sym_static] = ACTIONS(3035), - [anon_sym_register] = ACTIONS(3035), - [anon_sym_inline] = ACTIONS(3035), - [anon_sym___inline] = ACTIONS(3035), - [anon_sym___inline__] = ACTIONS(3035), - [anon_sym___forceinline] = ACTIONS(3035), - [anon_sym_thread_local] = ACTIONS(3035), - [anon_sym___thread] = ACTIONS(3035), - [anon_sym_const] = ACTIONS(3035), - [anon_sym_constexpr] = ACTIONS(3035), - [anon_sym_volatile] = ACTIONS(3035), - [anon_sym_restrict] = ACTIONS(3035), - [anon_sym___restrict__] = ACTIONS(3035), - [anon_sym__Atomic] = ACTIONS(3035), - [anon_sym__Noreturn] = ACTIONS(3035), - [anon_sym_noreturn] = ACTIONS(3035), - [anon_sym__Nonnull] = ACTIONS(3035), - [anon_sym_mutable] = ACTIONS(3035), - [anon_sym_constinit] = ACTIONS(3035), - [anon_sym_consteval] = ACTIONS(3035), - [anon_sym_alignas] = ACTIONS(3035), - [anon_sym__Alignas] = ACTIONS(3035), - [sym_primitive_type] = ACTIONS(3035), - [anon_sym_enum] = ACTIONS(3035), - [anon_sym_class] = ACTIONS(3035), - [anon_sym_struct] = ACTIONS(3035), - [anon_sym_union] = ACTIONS(3035), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3035), - [anon_sym_decltype] = ACTIONS(3035), - [anon_sym_explicit] = ACTIONS(3035), - [anon_sym_typename] = ACTIONS(3035), - [anon_sym_private] = ACTIONS(3035), - [anon_sym_template] = ACTIONS(3035), - [anon_sym_operator] = ACTIONS(3035), - [anon_sym_friend] = ACTIONS(3035), - [anon_sym_public] = ACTIONS(3035), - [anon_sym_protected] = ACTIONS(3035), - [anon_sym_static_assert] = ACTIONS(3035), + [sym_auto] = ACTIONS(2939), + [anon_sym_decltype] = ACTIONS(2939), + [anon_sym_explicit] = ACTIONS(2939), + [anon_sym_typename] = ACTIONS(2939), + [anon_sym_private] = ACTIONS(2939), + [anon_sym_template] = ACTIONS(2939), + [anon_sym_operator] = ACTIONS(2939), + [anon_sym_friend] = ACTIONS(2939), + [anon_sym_public] = ACTIONS(2939), + [anon_sym_protected] = ACTIONS(2939), + [anon_sym_static_assert] = ACTIONS(2939), }, - [2080] = { - [sym_identifier] = ACTIONS(2847), - [aux_sym_preproc_def_token1] = ACTIONS(2847), - [aux_sym_preproc_if_token1] = ACTIONS(2847), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2847), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2847), - [sym_preproc_directive] = ACTIONS(2847), - [anon_sym_LPAREN2] = ACTIONS(2849), - [anon_sym_TILDE] = ACTIONS(2849), - [anon_sym_STAR] = ACTIONS(2849), - [anon_sym_AMP_AMP] = ACTIONS(2849), - [anon_sym_AMP] = ACTIONS(2847), - [anon_sym_SEMI] = ACTIONS(2849), - [anon_sym___extension__] = ACTIONS(2847), - [anon_sym_typedef] = ACTIONS(2847), - [anon_sym_virtual] = ACTIONS(2847), - [anon_sym_extern] = ACTIONS(2847), - [anon_sym___attribute__] = ACTIONS(2847), - [anon_sym___attribute] = ACTIONS(2847), - [anon_sym_using] = ACTIONS(2847), - [anon_sym_COLON_COLON] = ACTIONS(2849), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2849), - [anon_sym___declspec] = ACTIONS(2847), - [anon_sym___based] = ACTIONS(2847), - [anon_sym_RBRACE] = ACTIONS(2849), - [anon_sym_signed] = ACTIONS(2847), - [anon_sym_unsigned] = ACTIONS(2847), - [anon_sym_long] = ACTIONS(2847), - [anon_sym_short] = ACTIONS(2847), - [anon_sym_LBRACK] = ACTIONS(2847), - [anon_sym_static] = ACTIONS(2847), - [anon_sym_register] = ACTIONS(2847), - [anon_sym_inline] = ACTIONS(2847), - [anon_sym___inline] = ACTIONS(2847), - [anon_sym___inline__] = ACTIONS(2847), - [anon_sym___forceinline] = ACTIONS(2847), - [anon_sym_thread_local] = ACTIONS(2847), - [anon_sym___thread] = ACTIONS(2847), - [anon_sym_const] = ACTIONS(2847), - [anon_sym_constexpr] = ACTIONS(2847), - [anon_sym_volatile] = ACTIONS(2847), - [anon_sym_restrict] = ACTIONS(2847), - [anon_sym___restrict__] = ACTIONS(2847), - [anon_sym__Atomic] = ACTIONS(2847), - [anon_sym__Noreturn] = ACTIONS(2847), - [anon_sym_noreturn] = ACTIONS(2847), - [anon_sym__Nonnull] = ACTIONS(2847), - [anon_sym_mutable] = ACTIONS(2847), - [anon_sym_constinit] = ACTIONS(2847), - [anon_sym_consteval] = ACTIONS(2847), - [anon_sym_alignas] = ACTIONS(2847), - [anon_sym__Alignas] = ACTIONS(2847), - [sym_primitive_type] = ACTIONS(2847), - [anon_sym_enum] = ACTIONS(2847), - [anon_sym_class] = ACTIONS(2847), - [anon_sym_struct] = ACTIONS(2847), - [anon_sym_union] = ACTIONS(2847), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2847), - [anon_sym_decltype] = ACTIONS(2847), - [anon_sym_explicit] = ACTIONS(2847), - [anon_sym_typename] = ACTIONS(2847), - [anon_sym_private] = ACTIONS(2847), - [anon_sym_template] = ACTIONS(2847), - [anon_sym_operator] = ACTIONS(2847), - [anon_sym_friend] = ACTIONS(2847), - [anon_sym_public] = ACTIONS(2847), - [anon_sym_protected] = ACTIONS(2847), - [anon_sym_static_assert] = ACTIONS(2847), + [2136] = { + [sym_identifier] = ACTIONS(3124), + [aux_sym_preproc_def_token1] = ACTIONS(3124), + [aux_sym_preproc_if_token1] = ACTIONS(3124), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3124), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3124), + [sym_preproc_directive] = ACTIONS(3124), + [anon_sym_LPAREN2] = ACTIONS(3126), + [anon_sym_TILDE] = ACTIONS(3126), + [anon_sym_STAR] = ACTIONS(3126), + [anon_sym_AMP_AMP] = ACTIONS(3126), + [anon_sym_AMP] = ACTIONS(3124), + [anon_sym_SEMI] = ACTIONS(3126), + [anon_sym___extension__] = ACTIONS(3124), + [anon_sym_typedef] = ACTIONS(3124), + [anon_sym_virtual] = ACTIONS(3124), + [anon_sym_extern] = ACTIONS(3124), + [anon_sym___attribute__] = ACTIONS(3124), + [anon_sym___attribute] = ACTIONS(3124), + [anon_sym_using] = ACTIONS(3124), + [anon_sym_COLON_COLON] = ACTIONS(3126), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3126), + [anon_sym___declspec] = ACTIONS(3124), + [anon_sym___based] = ACTIONS(3124), + [anon_sym_RBRACE] = ACTIONS(3126), + [anon_sym_signed] = ACTIONS(3124), + [anon_sym_unsigned] = ACTIONS(3124), + [anon_sym_long] = ACTIONS(3124), + [anon_sym_short] = ACTIONS(3124), + [anon_sym_LBRACK] = ACTIONS(3124), + [anon_sym_static] = ACTIONS(3124), + [anon_sym_register] = ACTIONS(3124), + [anon_sym_inline] = ACTIONS(3124), + [anon_sym___inline] = ACTIONS(3124), + [anon_sym___inline__] = ACTIONS(3124), + [anon_sym___forceinline] = ACTIONS(3124), + [anon_sym_thread_local] = ACTIONS(3124), + [anon_sym___thread] = ACTIONS(3124), + [anon_sym_const] = ACTIONS(3124), + [anon_sym_constexpr] = ACTIONS(3124), + [anon_sym_volatile] = ACTIONS(3124), + [anon_sym_restrict] = ACTIONS(3124), + [anon_sym___restrict__] = ACTIONS(3124), + [anon_sym__Atomic] = ACTIONS(3124), + [anon_sym__Noreturn] = ACTIONS(3124), + [anon_sym_noreturn] = ACTIONS(3124), + [anon_sym__Nonnull] = ACTIONS(3124), + [anon_sym_mutable] = ACTIONS(3124), + [anon_sym_constinit] = ACTIONS(3124), + [anon_sym_consteval] = ACTIONS(3124), + [anon_sym_alignas] = ACTIONS(3124), + [anon_sym__Alignas] = ACTIONS(3124), + [sym_primitive_type] = ACTIONS(3124), + [anon_sym_enum] = ACTIONS(3124), + [anon_sym_class] = ACTIONS(3124), + [anon_sym_struct] = ACTIONS(3124), + [anon_sym_union] = ACTIONS(3124), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3124), + [anon_sym_decltype] = ACTIONS(3124), + [anon_sym_explicit] = ACTIONS(3124), + [anon_sym_typename] = ACTIONS(3124), + [anon_sym_private] = ACTIONS(3124), + [anon_sym_template] = ACTIONS(3124), + [anon_sym_operator] = ACTIONS(3124), + [anon_sym_friend] = ACTIONS(3124), + [anon_sym_public] = ACTIONS(3124), + [anon_sym_protected] = ACTIONS(3124), + [anon_sym_static_assert] = ACTIONS(3124), }, - [2081] = { - [sym_identifier] = ACTIONS(2915), - [aux_sym_preproc_def_token1] = ACTIONS(2915), - [aux_sym_preproc_if_token1] = ACTIONS(2915), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2915), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2915), - [sym_preproc_directive] = ACTIONS(2915), - [anon_sym_LPAREN2] = ACTIONS(2917), - [anon_sym_TILDE] = ACTIONS(2917), - [anon_sym_STAR] = ACTIONS(2917), - [anon_sym_AMP_AMP] = ACTIONS(2917), - [anon_sym_AMP] = ACTIONS(2915), - [anon_sym_SEMI] = ACTIONS(2917), - [anon_sym___extension__] = ACTIONS(2915), - [anon_sym_typedef] = ACTIONS(2915), - [anon_sym_virtual] = ACTIONS(2915), - [anon_sym_extern] = ACTIONS(2915), - [anon_sym___attribute__] = ACTIONS(2915), - [anon_sym___attribute] = ACTIONS(2915), - [anon_sym_using] = ACTIONS(2915), - [anon_sym_COLON_COLON] = ACTIONS(2917), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2917), - [anon_sym___declspec] = ACTIONS(2915), - [anon_sym___based] = ACTIONS(2915), - [anon_sym_RBRACE] = ACTIONS(2917), - [anon_sym_signed] = ACTIONS(2915), - [anon_sym_unsigned] = ACTIONS(2915), - [anon_sym_long] = ACTIONS(2915), - [anon_sym_short] = ACTIONS(2915), - [anon_sym_LBRACK] = ACTIONS(2915), - [anon_sym_static] = ACTIONS(2915), - [anon_sym_register] = ACTIONS(2915), - [anon_sym_inline] = ACTIONS(2915), - [anon_sym___inline] = ACTIONS(2915), - [anon_sym___inline__] = ACTIONS(2915), - [anon_sym___forceinline] = ACTIONS(2915), - [anon_sym_thread_local] = ACTIONS(2915), - [anon_sym___thread] = ACTIONS(2915), - [anon_sym_const] = ACTIONS(2915), - [anon_sym_constexpr] = ACTIONS(2915), - [anon_sym_volatile] = ACTIONS(2915), - [anon_sym_restrict] = ACTIONS(2915), - [anon_sym___restrict__] = ACTIONS(2915), - [anon_sym__Atomic] = ACTIONS(2915), - [anon_sym__Noreturn] = ACTIONS(2915), - [anon_sym_noreturn] = ACTIONS(2915), - [anon_sym__Nonnull] = ACTIONS(2915), - [anon_sym_mutable] = ACTIONS(2915), - [anon_sym_constinit] = ACTIONS(2915), - [anon_sym_consteval] = ACTIONS(2915), - [anon_sym_alignas] = ACTIONS(2915), - [anon_sym__Alignas] = ACTIONS(2915), - [sym_primitive_type] = ACTIONS(2915), - [anon_sym_enum] = ACTIONS(2915), - [anon_sym_class] = ACTIONS(2915), - [anon_sym_struct] = ACTIONS(2915), - [anon_sym_union] = ACTIONS(2915), + [2137] = { + [sym_identifier] = ACTIONS(2627), + [aux_sym_preproc_def_token1] = ACTIONS(2627), + [aux_sym_preproc_if_token1] = ACTIONS(2627), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2627), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2627), + [sym_preproc_directive] = ACTIONS(2627), + [anon_sym_LPAREN2] = ACTIONS(2629), + [anon_sym_TILDE] = ACTIONS(2629), + [anon_sym_STAR] = ACTIONS(2629), + [anon_sym_AMP_AMP] = ACTIONS(2629), + [anon_sym_AMP] = ACTIONS(2627), + [anon_sym_SEMI] = ACTIONS(2629), + [anon_sym___extension__] = ACTIONS(2627), + [anon_sym_typedef] = ACTIONS(2627), + [anon_sym_virtual] = ACTIONS(2627), + [anon_sym_extern] = ACTIONS(2627), + [anon_sym___attribute__] = ACTIONS(2627), + [anon_sym___attribute] = ACTIONS(2627), + [anon_sym_using] = ACTIONS(2627), + [anon_sym_COLON_COLON] = ACTIONS(2629), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2629), + [anon_sym___declspec] = ACTIONS(2627), + [anon_sym___based] = ACTIONS(2627), + [anon_sym_RBRACE] = ACTIONS(2629), + [anon_sym_signed] = ACTIONS(2627), + [anon_sym_unsigned] = ACTIONS(2627), + [anon_sym_long] = ACTIONS(2627), + [anon_sym_short] = ACTIONS(2627), + [anon_sym_LBRACK] = ACTIONS(2627), + [anon_sym_static] = ACTIONS(2627), + [anon_sym_register] = ACTIONS(2627), + [anon_sym_inline] = ACTIONS(2627), + [anon_sym___inline] = ACTIONS(2627), + [anon_sym___inline__] = ACTIONS(2627), + [anon_sym___forceinline] = ACTIONS(2627), + [anon_sym_thread_local] = ACTIONS(2627), + [anon_sym___thread] = ACTIONS(2627), + [anon_sym_const] = ACTIONS(2627), + [anon_sym_constexpr] = ACTIONS(2627), + [anon_sym_volatile] = ACTIONS(2627), + [anon_sym_restrict] = ACTIONS(2627), + [anon_sym___restrict__] = ACTIONS(2627), + [anon_sym__Atomic] = ACTIONS(2627), + [anon_sym__Noreturn] = ACTIONS(2627), + [anon_sym_noreturn] = ACTIONS(2627), + [anon_sym__Nonnull] = ACTIONS(2627), + [anon_sym_mutable] = ACTIONS(2627), + [anon_sym_constinit] = ACTIONS(2627), + [anon_sym_consteval] = ACTIONS(2627), + [anon_sym_alignas] = ACTIONS(2627), + [anon_sym__Alignas] = ACTIONS(2627), + [sym_primitive_type] = ACTIONS(2627), + [anon_sym_enum] = ACTIONS(2627), + [anon_sym_class] = ACTIONS(2627), + [anon_sym_struct] = ACTIONS(2627), + [anon_sym_union] = ACTIONS(2627), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2915), - [anon_sym_decltype] = ACTIONS(2915), - [anon_sym_explicit] = ACTIONS(2915), - [anon_sym_typename] = ACTIONS(2915), - [anon_sym_private] = ACTIONS(2915), - [anon_sym_template] = ACTIONS(2915), - [anon_sym_operator] = ACTIONS(2915), - [anon_sym_friend] = ACTIONS(2915), - [anon_sym_public] = ACTIONS(2915), - [anon_sym_protected] = ACTIONS(2915), - [anon_sym_static_assert] = ACTIONS(2915), - }, - [2082] = { - [sym_identifier] = ACTIONS(2915), - [aux_sym_preproc_def_token1] = ACTIONS(2915), - [aux_sym_preproc_if_token1] = ACTIONS(2915), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2915), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2915), - [sym_preproc_directive] = ACTIONS(2915), - [anon_sym_LPAREN2] = ACTIONS(2917), - [anon_sym_TILDE] = ACTIONS(2917), - [anon_sym_STAR] = ACTIONS(2917), - [anon_sym_AMP_AMP] = ACTIONS(2917), - [anon_sym_AMP] = ACTIONS(2915), - [anon_sym_SEMI] = ACTIONS(2917), - [anon_sym___extension__] = ACTIONS(2915), - [anon_sym_typedef] = ACTIONS(2915), - [anon_sym_virtual] = ACTIONS(2915), - [anon_sym_extern] = ACTIONS(2915), - [anon_sym___attribute__] = ACTIONS(2915), - [anon_sym___attribute] = ACTIONS(2915), - [anon_sym_using] = ACTIONS(2915), - [anon_sym_COLON_COLON] = ACTIONS(2917), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2917), - [anon_sym___declspec] = ACTIONS(2915), - [anon_sym___based] = ACTIONS(2915), - [anon_sym_RBRACE] = ACTIONS(2917), - [anon_sym_signed] = ACTIONS(2915), - [anon_sym_unsigned] = ACTIONS(2915), - [anon_sym_long] = ACTIONS(2915), - [anon_sym_short] = ACTIONS(2915), - [anon_sym_LBRACK] = ACTIONS(2915), - [anon_sym_static] = ACTIONS(2915), - [anon_sym_register] = ACTIONS(2915), - [anon_sym_inline] = ACTIONS(2915), - [anon_sym___inline] = ACTIONS(2915), - [anon_sym___inline__] = ACTIONS(2915), - [anon_sym___forceinline] = ACTIONS(2915), - [anon_sym_thread_local] = ACTIONS(2915), - [anon_sym___thread] = ACTIONS(2915), - [anon_sym_const] = ACTIONS(2915), - [anon_sym_constexpr] = ACTIONS(2915), - [anon_sym_volatile] = ACTIONS(2915), - [anon_sym_restrict] = ACTIONS(2915), - [anon_sym___restrict__] = ACTIONS(2915), - [anon_sym__Atomic] = ACTIONS(2915), - [anon_sym__Noreturn] = ACTIONS(2915), - [anon_sym_noreturn] = ACTIONS(2915), - [anon_sym__Nonnull] = ACTIONS(2915), - [anon_sym_mutable] = ACTIONS(2915), - [anon_sym_constinit] = ACTIONS(2915), - [anon_sym_consteval] = ACTIONS(2915), - [anon_sym_alignas] = ACTIONS(2915), - [anon_sym__Alignas] = ACTIONS(2915), - [sym_primitive_type] = ACTIONS(2915), - [anon_sym_enum] = ACTIONS(2915), - [anon_sym_class] = ACTIONS(2915), - [anon_sym_struct] = ACTIONS(2915), - [anon_sym_union] = ACTIONS(2915), + [sym_auto] = ACTIONS(2627), + [anon_sym_decltype] = ACTIONS(2627), + [anon_sym_explicit] = ACTIONS(2627), + [anon_sym_typename] = ACTIONS(2627), + [anon_sym_private] = ACTIONS(2627), + [anon_sym_template] = ACTIONS(2627), + [anon_sym_operator] = ACTIONS(2627), + [anon_sym_friend] = ACTIONS(2627), + [anon_sym_public] = ACTIONS(2627), + [anon_sym_protected] = ACTIONS(2627), + [anon_sym_static_assert] = ACTIONS(2627), + }, + [2138] = { + [sym_identifier] = ACTIONS(3101), + [aux_sym_preproc_def_token1] = ACTIONS(3101), + [aux_sym_preproc_if_token1] = ACTIONS(3101), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3101), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3101), + [sym_preproc_directive] = ACTIONS(3101), + [anon_sym_LPAREN2] = ACTIONS(3103), + [anon_sym_TILDE] = ACTIONS(3103), + [anon_sym_STAR] = ACTIONS(3103), + [anon_sym_AMP_AMP] = ACTIONS(3103), + [anon_sym_AMP] = ACTIONS(3101), + [anon_sym_SEMI] = ACTIONS(3103), + [anon_sym___extension__] = ACTIONS(3101), + [anon_sym_typedef] = ACTIONS(3101), + [anon_sym_virtual] = ACTIONS(3101), + [anon_sym_extern] = ACTIONS(3101), + [anon_sym___attribute__] = ACTIONS(3101), + [anon_sym___attribute] = ACTIONS(3101), + [anon_sym_using] = ACTIONS(3101), + [anon_sym_COLON_COLON] = ACTIONS(3103), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3103), + [anon_sym___declspec] = ACTIONS(3101), + [anon_sym___based] = ACTIONS(3101), + [anon_sym_RBRACE] = ACTIONS(3103), + [anon_sym_signed] = ACTIONS(3101), + [anon_sym_unsigned] = ACTIONS(3101), + [anon_sym_long] = ACTIONS(3101), + [anon_sym_short] = ACTIONS(3101), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_static] = ACTIONS(3101), + [anon_sym_register] = ACTIONS(3101), + [anon_sym_inline] = ACTIONS(3101), + [anon_sym___inline] = ACTIONS(3101), + [anon_sym___inline__] = ACTIONS(3101), + [anon_sym___forceinline] = ACTIONS(3101), + [anon_sym_thread_local] = ACTIONS(3101), + [anon_sym___thread] = ACTIONS(3101), + [anon_sym_const] = ACTIONS(3101), + [anon_sym_constexpr] = ACTIONS(3101), + [anon_sym_volatile] = ACTIONS(3101), + [anon_sym_restrict] = ACTIONS(3101), + [anon_sym___restrict__] = ACTIONS(3101), + [anon_sym__Atomic] = ACTIONS(3101), + [anon_sym__Noreturn] = ACTIONS(3101), + [anon_sym_noreturn] = ACTIONS(3101), + [anon_sym__Nonnull] = ACTIONS(3101), + [anon_sym_mutable] = ACTIONS(3101), + [anon_sym_constinit] = ACTIONS(3101), + [anon_sym_consteval] = ACTIONS(3101), + [anon_sym_alignas] = ACTIONS(3101), + [anon_sym__Alignas] = ACTIONS(3101), + [sym_primitive_type] = ACTIONS(3101), + [anon_sym_enum] = ACTIONS(3101), + [anon_sym_class] = ACTIONS(3101), + [anon_sym_struct] = ACTIONS(3101), + [anon_sym_union] = ACTIONS(3101), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3101), + [anon_sym_decltype] = ACTIONS(3101), + [anon_sym_explicit] = ACTIONS(3101), + [anon_sym_typename] = ACTIONS(3101), + [anon_sym_private] = ACTIONS(3101), + [anon_sym_template] = ACTIONS(3101), + [anon_sym_operator] = ACTIONS(3101), + [anon_sym_friend] = ACTIONS(3101), + [anon_sym_public] = ACTIONS(3101), + [anon_sym_protected] = ACTIONS(3101), + [anon_sym_static_assert] = ACTIONS(3101), + }, + [2139] = { + [sym_string_literal] = STATE(1708), + [sym_template_argument_list] = STATE(2375), + [sym_raw_string_literal] = STATE(1708), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4166), + [anon_sym_COMMA] = ACTIONS(4166), + [anon_sym_LPAREN2] = ACTIONS(6004), + [anon_sym_DASH] = ACTIONS(4174), + [anon_sym_PLUS] = ACTIONS(4174), + [anon_sym_STAR] = ACTIONS(4174), + [anon_sym_SLASH] = ACTIONS(4174), + [anon_sym_PERCENT] = ACTIONS(4174), + [anon_sym_PIPE_PIPE] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4166), + [anon_sym_PIPE] = ACTIONS(4174), + [anon_sym_CARET] = ACTIONS(4174), + [anon_sym_AMP] = ACTIONS(4174), + [anon_sym_EQ_EQ] = ACTIONS(4166), + [anon_sym_BANG_EQ] = ACTIONS(4166), + [anon_sym_GT] = ACTIONS(4174), + [anon_sym_GT_EQ] = ACTIONS(4166), + [anon_sym_LT_EQ] = ACTIONS(4174), + [anon_sym_LT] = ACTIONS(5381), + [anon_sym_LT_LT] = ACTIONS(4174), + [anon_sym_GT_GT] = ACTIONS(4174), + [anon_sym_SEMI] = ACTIONS(4166), + [anon_sym_COLON_COLON] = ACTIONS(4187), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6004), + [anon_sym_LBRACE] = ACTIONS(4192), + [anon_sym_RBRACE] = ACTIONS(4166), + [anon_sym_LBRACK] = ACTIONS(6006), + [anon_sym_EQ] = ACTIONS(4174), + [anon_sym_QMARK] = ACTIONS(4166), + [anon_sym_STAR_EQ] = ACTIONS(4166), + [anon_sym_SLASH_EQ] = ACTIONS(4166), + [anon_sym_PERCENT_EQ] = ACTIONS(4166), + [anon_sym_PLUS_EQ] = ACTIONS(4166), + [anon_sym_DASH_EQ] = ACTIONS(4166), + [anon_sym_LT_LT_EQ] = ACTIONS(4166), + [anon_sym_GT_GT_EQ] = ACTIONS(4166), + [anon_sym_AMP_EQ] = ACTIONS(4166), + [anon_sym_CARET_EQ] = ACTIONS(4166), + [anon_sym_PIPE_EQ] = ACTIONS(4166), + [anon_sym_and_eq] = ACTIONS(4166), + [anon_sym_or_eq] = ACTIONS(4166), + [anon_sym_xor_eq] = ACTIONS(4166), + [anon_sym_LT_EQ_GT] = ACTIONS(4166), + [anon_sym_or] = ACTIONS(4174), + [anon_sym_and] = ACTIONS(4174), + [anon_sym_bitor] = ACTIONS(4166), + [anon_sym_xor] = ACTIONS(4174), + [anon_sym_bitand] = ACTIONS(4166), + [anon_sym_not_eq] = ACTIONS(4166), + [anon_sym_DASH_DASH] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4174), + [anon_sym_DOT_STAR] = ACTIONS(4166), + [anon_sym_DASH_GT] = ACTIONS(4166), + [anon_sym_L_DQUOTE] = ACTIONS(1972), + [anon_sym_u_DQUOTE] = ACTIONS(1972), + [anon_sym_U_DQUOTE] = ACTIONS(1972), + [anon_sym_u8_DQUOTE] = ACTIONS(1972), + [anon_sym_DQUOTE] = ACTIONS(1972), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2915), - [anon_sym_decltype] = ACTIONS(2915), - [anon_sym_explicit] = ACTIONS(2915), - [anon_sym_typename] = ACTIONS(2915), - [anon_sym_private] = ACTIONS(2915), - [anon_sym_template] = ACTIONS(2915), - [anon_sym_operator] = ACTIONS(2915), - [anon_sym_friend] = ACTIONS(2915), - [anon_sym_public] = ACTIONS(2915), - [anon_sym_protected] = ACTIONS(2915), - [anon_sym_static_assert] = ACTIONS(2915), + [anon_sym_R_DQUOTE] = ACTIONS(1982), + [anon_sym_LR_DQUOTE] = ACTIONS(1982), + [anon_sym_uR_DQUOTE] = ACTIONS(1982), + [anon_sym_UR_DQUOTE] = ACTIONS(1982), + [anon_sym_u8R_DQUOTE] = ACTIONS(1982), }, - [2083] = { - [sym_identifier] = ACTIONS(5541), - [aux_sym_preproc_def_token1] = ACTIONS(5541), - [aux_sym_preproc_if_token1] = ACTIONS(5541), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5541), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5541), - [sym_preproc_directive] = ACTIONS(5541), - [anon_sym_LPAREN2] = ACTIONS(5543), - [anon_sym_TILDE] = ACTIONS(5543), - [anon_sym_STAR] = ACTIONS(5543), - [anon_sym_AMP_AMP] = ACTIONS(5543), - [anon_sym_AMP] = ACTIONS(5541), - [anon_sym_SEMI] = ACTIONS(5543), - [anon_sym___extension__] = ACTIONS(5541), - [anon_sym_typedef] = ACTIONS(5541), - [anon_sym_virtual] = ACTIONS(5541), - [anon_sym_extern] = ACTIONS(5541), - [anon_sym___attribute__] = ACTIONS(5541), - [anon_sym___attribute] = ACTIONS(5541), - [anon_sym_using] = ACTIONS(5541), - [anon_sym_COLON_COLON] = ACTIONS(5543), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5543), - [anon_sym___declspec] = ACTIONS(5541), - [anon_sym___based] = ACTIONS(5541), - [anon_sym_RBRACE] = ACTIONS(5543), - [anon_sym_signed] = ACTIONS(5541), - [anon_sym_unsigned] = ACTIONS(5541), - [anon_sym_long] = ACTIONS(5541), - [anon_sym_short] = ACTIONS(5541), - [anon_sym_LBRACK] = ACTIONS(5541), - [anon_sym_static] = ACTIONS(5541), - [anon_sym_register] = ACTIONS(5541), - [anon_sym_inline] = ACTIONS(5541), - [anon_sym___inline] = ACTIONS(5541), - [anon_sym___inline__] = ACTIONS(5541), - [anon_sym___forceinline] = ACTIONS(5541), - [anon_sym_thread_local] = ACTIONS(5541), - [anon_sym___thread] = ACTIONS(5541), - [anon_sym_const] = ACTIONS(5541), - [anon_sym_constexpr] = ACTIONS(5541), - [anon_sym_volatile] = ACTIONS(5541), - [anon_sym_restrict] = ACTIONS(5541), - [anon_sym___restrict__] = ACTIONS(5541), - [anon_sym__Atomic] = ACTIONS(5541), - [anon_sym__Noreturn] = ACTIONS(5541), - [anon_sym_noreturn] = ACTIONS(5541), - [anon_sym__Nonnull] = ACTIONS(5541), - [anon_sym_mutable] = ACTIONS(5541), - [anon_sym_constinit] = ACTIONS(5541), - [anon_sym_consteval] = ACTIONS(5541), - [anon_sym_alignas] = ACTIONS(5541), - [anon_sym__Alignas] = ACTIONS(5541), - [sym_primitive_type] = ACTIONS(5541), - [anon_sym_enum] = ACTIONS(5541), - [anon_sym_class] = ACTIONS(5541), - [anon_sym_struct] = ACTIONS(5541), - [anon_sym_union] = ACTIONS(5541), + [2140] = { + [sym_identifier] = ACTIONS(2943), + [aux_sym_preproc_def_token1] = ACTIONS(2943), + [aux_sym_preproc_if_token1] = ACTIONS(2943), + [aux_sym_preproc_if_token2] = ACTIONS(2943), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2943), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2943), + [sym_preproc_directive] = ACTIONS(2943), + [anon_sym_LPAREN2] = ACTIONS(2945), + [anon_sym_TILDE] = ACTIONS(2945), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_AMP_AMP] = ACTIONS(2945), + [anon_sym_AMP] = ACTIONS(2943), + [anon_sym_SEMI] = ACTIONS(2945), + [anon_sym___extension__] = ACTIONS(2943), + [anon_sym_typedef] = ACTIONS(2943), + [anon_sym_virtual] = ACTIONS(2943), + [anon_sym_extern] = ACTIONS(2943), + [anon_sym___attribute__] = ACTIONS(2943), + [anon_sym___attribute] = ACTIONS(2943), + [anon_sym_using] = ACTIONS(2943), + [anon_sym_COLON_COLON] = ACTIONS(2945), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2945), + [anon_sym___declspec] = ACTIONS(2943), + [anon_sym___based] = ACTIONS(2943), + [anon_sym_signed] = ACTIONS(2943), + [anon_sym_unsigned] = ACTIONS(2943), + [anon_sym_long] = ACTIONS(2943), + [anon_sym_short] = ACTIONS(2943), + [anon_sym_LBRACK] = ACTIONS(2943), + [anon_sym_static] = ACTIONS(2943), + [anon_sym_register] = ACTIONS(2943), + [anon_sym_inline] = ACTIONS(2943), + [anon_sym___inline] = ACTIONS(2943), + [anon_sym___inline__] = ACTIONS(2943), + [anon_sym___forceinline] = ACTIONS(2943), + [anon_sym_thread_local] = ACTIONS(2943), + [anon_sym___thread] = ACTIONS(2943), + [anon_sym_const] = ACTIONS(2943), + [anon_sym_constexpr] = ACTIONS(2943), + [anon_sym_volatile] = ACTIONS(2943), + [anon_sym_restrict] = ACTIONS(2943), + [anon_sym___restrict__] = ACTIONS(2943), + [anon_sym__Atomic] = ACTIONS(2943), + [anon_sym__Noreturn] = ACTIONS(2943), + [anon_sym_noreturn] = ACTIONS(2943), + [anon_sym__Nonnull] = ACTIONS(2943), + [anon_sym_mutable] = ACTIONS(2943), + [anon_sym_constinit] = ACTIONS(2943), + [anon_sym_consteval] = ACTIONS(2943), + [anon_sym_alignas] = ACTIONS(2943), + [anon_sym__Alignas] = ACTIONS(2943), + [sym_primitive_type] = ACTIONS(2943), + [anon_sym_enum] = ACTIONS(2943), + [anon_sym_class] = ACTIONS(2943), + [anon_sym_struct] = ACTIONS(2943), + [anon_sym_union] = ACTIONS(2943), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5541), - [anon_sym_decltype] = ACTIONS(5541), - [anon_sym_explicit] = ACTIONS(5541), - [anon_sym_typename] = ACTIONS(5541), - [anon_sym_private] = ACTIONS(5541), - [anon_sym_template] = ACTIONS(5541), - [anon_sym_operator] = ACTIONS(5541), - [anon_sym_friend] = ACTIONS(5541), - [anon_sym_public] = ACTIONS(5541), - [anon_sym_protected] = ACTIONS(5541), - [anon_sym_static_assert] = ACTIONS(5541), + [sym_auto] = ACTIONS(2943), + [anon_sym_decltype] = ACTIONS(2943), + [anon_sym_explicit] = ACTIONS(2943), + [anon_sym_typename] = ACTIONS(2943), + [anon_sym_private] = ACTIONS(2943), + [anon_sym_template] = ACTIONS(2943), + [anon_sym_operator] = ACTIONS(2943), + [anon_sym_friend] = ACTIONS(2943), + [anon_sym_public] = ACTIONS(2943), + [anon_sym_protected] = ACTIONS(2943), + [anon_sym_static_assert] = ACTIONS(2943), }, - [2084] = { - [sym_identifier] = ACTIONS(3063), - [aux_sym_preproc_def_token1] = ACTIONS(3063), - [aux_sym_preproc_if_token1] = ACTIONS(3063), - [aux_sym_preproc_if_token2] = ACTIONS(3063), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3063), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3063), - [sym_preproc_directive] = ACTIONS(3063), - [anon_sym_LPAREN2] = ACTIONS(3065), - [anon_sym_TILDE] = ACTIONS(3065), - [anon_sym_STAR] = ACTIONS(3065), - [anon_sym_AMP_AMP] = ACTIONS(3065), - [anon_sym_AMP] = ACTIONS(3063), - [anon_sym_SEMI] = ACTIONS(3065), - [anon_sym___extension__] = ACTIONS(3063), - [anon_sym_typedef] = ACTIONS(3063), - [anon_sym_virtual] = ACTIONS(3063), - [anon_sym_extern] = ACTIONS(3063), - [anon_sym___attribute__] = ACTIONS(3063), - [anon_sym___attribute] = ACTIONS(3063), - [anon_sym_using] = ACTIONS(3063), - [anon_sym_COLON_COLON] = ACTIONS(3065), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3065), - [anon_sym___declspec] = ACTIONS(3063), - [anon_sym___based] = ACTIONS(3063), - [anon_sym_signed] = ACTIONS(3063), - [anon_sym_unsigned] = ACTIONS(3063), - [anon_sym_long] = ACTIONS(3063), - [anon_sym_short] = ACTIONS(3063), - [anon_sym_LBRACK] = ACTIONS(3063), - [anon_sym_static] = ACTIONS(3063), - [anon_sym_register] = ACTIONS(3063), - [anon_sym_inline] = ACTIONS(3063), - [anon_sym___inline] = ACTIONS(3063), - [anon_sym___inline__] = ACTIONS(3063), - [anon_sym___forceinline] = ACTIONS(3063), - [anon_sym_thread_local] = ACTIONS(3063), - [anon_sym___thread] = ACTIONS(3063), - [anon_sym_const] = ACTIONS(3063), - [anon_sym_constexpr] = ACTIONS(3063), - [anon_sym_volatile] = ACTIONS(3063), - [anon_sym_restrict] = ACTIONS(3063), - [anon_sym___restrict__] = ACTIONS(3063), - [anon_sym__Atomic] = ACTIONS(3063), - [anon_sym__Noreturn] = ACTIONS(3063), - [anon_sym_noreturn] = ACTIONS(3063), - [anon_sym__Nonnull] = ACTIONS(3063), - [anon_sym_mutable] = ACTIONS(3063), - [anon_sym_constinit] = ACTIONS(3063), - [anon_sym_consteval] = ACTIONS(3063), - [anon_sym_alignas] = ACTIONS(3063), - [anon_sym__Alignas] = ACTIONS(3063), - [sym_primitive_type] = ACTIONS(3063), - [anon_sym_enum] = ACTIONS(3063), - [anon_sym_class] = ACTIONS(3063), - [anon_sym_struct] = ACTIONS(3063), - [anon_sym_union] = ACTIONS(3063), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3063), - [anon_sym_decltype] = ACTIONS(3063), - [anon_sym_explicit] = ACTIONS(3063), - [anon_sym_typename] = ACTIONS(3063), - [anon_sym_private] = ACTIONS(3063), - [anon_sym_template] = ACTIONS(3063), - [anon_sym_operator] = ACTIONS(3063), - [anon_sym_friend] = ACTIONS(3063), - [anon_sym_public] = ACTIONS(3063), - [anon_sym_protected] = ACTIONS(3063), - [anon_sym_static_assert] = ACTIONS(3063), + [2141] = { + [sym_identifier] = ACTIONS(2787), + [aux_sym_preproc_def_token1] = ACTIONS(2787), + [aux_sym_preproc_if_token1] = ACTIONS(2787), + [aux_sym_preproc_if_token2] = ACTIONS(2787), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2787), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2787), + [sym_preproc_directive] = ACTIONS(2787), + [anon_sym_LPAREN2] = ACTIONS(2789), + [anon_sym_TILDE] = ACTIONS(2789), + [anon_sym_STAR] = ACTIONS(2789), + [anon_sym_AMP_AMP] = ACTIONS(2789), + [anon_sym_AMP] = ACTIONS(2787), + [anon_sym_SEMI] = ACTIONS(2789), + [anon_sym___extension__] = ACTIONS(2787), + [anon_sym_typedef] = ACTIONS(2787), + [anon_sym_virtual] = ACTIONS(2787), + [anon_sym_extern] = ACTIONS(2787), + [anon_sym___attribute__] = ACTIONS(2787), + [anon_sym___attribute] = ACTIONS(2787), + [anon_sym_using] = ACTIONS(2787), + [anon_sym_COLON_COLON] = ACTIONS(2789), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2789), + [anon_sym___declspec] = ACTIONS(2787), + [anon_sym___based] = ACTIONS(2787), + [anon_sym_signed] = ACTIONS(2787), + [anon_sym_unsigned] = ACTIONS(2787), + [anon_sym_long] = ACTIONS(2787), + [anon_sym_short] = ACTIONS(2787), + [anon_sym_LBRACK] = ACTIONS(2787), + [anon_sym_static] = ACTIONS(2787), + [anon_sym_register] = ACTIONS(2787), + [anon_sym_inline] = ACTIONS(2787), + [anon_sym___inline] = ACTIONS(2787), + [anon_sym___inline__] = ACTIONS(2787), + [anon_sym___forceinline] = ACTIONS(2787), + [anon_sym_thread_local] = ACTIONS(2787), + [anon_sym___thread] = ACTIONS(2787), + [anon_sym_const] = ACTIONS(2787), + [anon_sym_constexpr] = ACTIONS(2787), + [anon_sym_volatile] = ACTIONS(2787), + [anon_sym_restrict] = ACTIONS(2787), + [anon_sym___restrict__] = ACTIONS(2787), + [anon_sym__Atomic] = ACTIONS(2787), + [anon_sym__Noreturn] = ACTIONS(2787), + [anon_sym_noreturn] = ACTIONS(2787), + [anon_sym__Nonnull] = ACTIONS(2787), + [anon_sym_mutable] = ACTIONS(2787), + [anon_sym_constinit] = ACTIONS(2787), + [anon_sym_consteval] = ACTIONS(2787), + [anon_sym_alignas] = ACTIONS(2787), + [anon_sym__Alignas] = ACTIONS(2787), + [sym_primitive_type] = ACTIONS(2787), + [anon_sym_enum] = ACTIONS(2787), + [anon_sym_class] = ACTIONS(2787), + [anon_sym_struct] = ACTIONS(2787), + [anon_sym_union] = ACTIONS(2787), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2787), + [anon_sym_decltype] = ACTIONS(2787), + [anon_sym_explicit] = ACTIONS(2787), + [anon_sym_typename] = ACTIONS(2787), + [anon_sym_private] = ACTIONS(2787), + [anon_sym_template] = ACTIONS(2787), + [anon_sym_operator] = ACTIONS(2787), + [anon_sym_friend] = ACTIONS(2787), + [anon_sym_public] = ACTIONS(2787), + [anon_sym_protected] = ACTIONS(2787), + [anon_sym_static_assert] = ACTIONS(2787), }, - [2085] = { - [sym_identifier] = ACTIONS(2851), - [aux_sym_preproc_def_token1] = ACTIONS(2851), - [aux_sym_preproc_if_token1] = ACTIONS(2851), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2851), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2851), - [sym_preproc_directive] = ACTIONS(2851), - [anon_sym_LPAREN2] = ACTIONS(2853), - [anon_sym_TILDE] = ACTIONS(2853), - [anon_sym_STAR] = ACTIONS(2853), - [anon_sym_AMP_AMP] = ACTIONS(2853), - [anon_sym_AMP] = ACTIONS(2851), - [anon_sym_SEMI] = ACTIONS(2853), - [anon_sym___extension__] = ACTIONS(2851), - [anon_sym_typedef] = ACTIONS(2851), - [anon_sym_virtual] = ACTIONS(2851), - [anon_sym_extern] = ACTIONS(2851), - [anon_sym___attribute__] = ACTIONS(2851), - [anon_sym___attribute] = ACTIONS(2851), - [anon_sym_using] = ACTIONS(2851), - [anon_sym_COLON_COLON] = ACTIONS(2853), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2853), - [anon_sym___declspec] = ACTIONS(2851), - [anon_sym___based] = ACTIONS(2851), - [anon_sym_RBRACE] = ACTIONS(2853), - [anon_sym_signed] = ACTIONS(2851), - [anon_sym_unsigned] = ACTIONS(2851), - [anon_sym_long] = ACTIONS(2851), - [anon_sym_short] = ACTIONS(2851), - [anon_sym_LBRACK] = ACTIONS(2851), - [anon_sym_static] = ACTIONS(2851), - [anon_sym_register] = ACTIONS(2851), - [anon_sym_inline] = ACTIONS(2851), - [anon_sym___inline] = ACTIONS(2851), - [anon_sym___inline__] = ACTIONS(2851), - [anon_sym___forceinline] = ACTIONS(2851), - [anon_sym_thread_local] = ACTIONS(2851), - [anon_sym___thread] = ACTIONS(2851), - [anon_sym_const] = ACTIONS(2851), - [anon_sym_constexpr] = ACTIONS(2851), - [anon_sym_volatile] = ACTIONS(2851), - [anon_sym_restrict] = ACTIONS(2851), - [anon_sym___restrict__] = ACTIONS(2851), - [anon_sym__Atomic] = ACTIONS(2851), - [anon_sym__Noreturn] = ACTIONS(2851), - [anon_sym_noreturn] = ACTIONS(2851), - [anon_sym__Nonnull] = ACTIONS(2851), - [anon_sym_mutable] = ACTIONS(2851), - [anon_sym_constinit] = ACTIONS(2851), - [anon_sym_consteval] = ACTIONS(2851), - [anon_sym_alignas] = ACTIONS(2851), - [anon_sym__Alignas] = ACTIONS(2851), - [sym_primitive_type] = ACTIONS(2851), - [anon_sym_enum] = ACTIONS(2851), - [anon_sym_class] = ACTIONS(2851), - [anon_sym_struct] = ACTIONS(2851), - [anon_sym_union] = ACTIONS(2851), + [2142] = { + [sym_identifier] = ACTIONS(2947), + [aux_sym_preproc_def_token1] = ACTIONS(2947), + [aux_sym_preproc_if_token1] = ACTIONS(2947), + [aux_sym_preproc_if_token2] = ACTIONS(2947), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2947), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2947), + [sym_preproc_directive] = ACTIONS(2947), + [anon_sym_LPAREN2] = ACTIONS(2949), + [anon_sym_TILDE] = ACTIONS(2949), + [anon_sym_STAR] = ACTIONS(2949), + [anon_sym_AMP_AMP] = ACTIONS(2949), + [anon_sym_AMP] = ACTIONS(2947), + [anon_sym_SEMI] = ACTIONS(2949), + [anon_sym___extension__] = ACTIONS(2947), + [anon_sym_typedef] = ACTIONS(2947), + [anon_sym_virtual] = ACTIONS(2947), + [anon_sym_extern] = ACTIONS(2947), + [anon_sym___attribute__] = ACTIONS(2947), + [anon_sym___attribute] = ACTIONS(2947), + [anon_sym_using] = ACTIONS(2947), + [anon_sym_COLON_COLON] = ACTIONS(2949), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2949), + [anon_sym___declspec] = ACTIONS(2947), + [anon_sym___based] = ACTIONS(2947), + [anon_sym_signed] = ACTIONS(2947), + [anon_sym_unsigned] = ACTIONS(2947), + [anon_sym_long] = ACTIONS(2947), + [anon_sym_short] = ACTIONS(2947), + [anon_sym_LBRACK] = ACTIONS(2947), + [anon_sym_static] = ACTIONS(2947), + [anon_sym_register] = ACTIONS(2947), + [anon_sym_inline] = ACTIONS(2947), + [anon_sym___inline] = ACTIONS(2947), + [anon_sym___inline__] = ACTIONS(2947), + [anon_sym___forceinline] = ACTIONS(2947), + [anon_sym_thread_local] = ACTIONS(2947), + [anon_sym___thread] = ACTIONS(2947), + [anon_sym_const] = ACTIONS(2947), + [anon_sym_constexpr] = ACTIONS(2947), + [anon_sym_volatile] = ACTIONS(2947), + [anon_sym_restrict] = ACTIONS(2947), + [anon_sym___restrict__] = ACTIONS(2947), + [anon_sym__Atomic] = ACTIONS(2947), + [anon_sym__Noreturn] = ACTIONS(2947), + [anon_sym_noreturn] = ACTIONS(2947), + [anon_sym__Nonnull] = ACTIONS(2947), + [anon_sym_mutable] = ACTIONS(2947), + [anon_sym_constinit] = ACTIONS(2947), + [anon_sym_consteval] = ACTIONS(2947), + [anon_sym_alignas] = ACTIONS(2947), + [anon_sym__Alignas] = ACTIONS(2947), + [sym_primitive_type] = ACTIONS(2947), + [anon_sym_enum] = ACTIONS(2947), + [anon_sym_class] = ACTIONS(2947), + [anon_sym_struct] = ACTIONS(2947), + [anon_sym_union] = ACTIONS(2947), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2851), - [anon_sym_decltype] = ACTIONS(2851), - [anon_sym_explicit] = ACTIONS(2851), - [anon_sym_typename] = ACTIONS(2851), - [anon_sym_private] = ACTIONS(2851), - [anon_sym_template] = ACTIONS(2851), - [anon_sym_operator] = ACTIONS(2851), - [anon_sym_friend] = ACTIONS(2851), - [anon_sym_public] = ACTIONS(2851), - [anon_sym_protected] = ACTIONS(2851), - [anon_sym_static_assert] = ACTIONS(2851), + [sym_auto] = ACTIONS(2947), + [anon_sym_decltype] = ACTIONS(2947), + [anon_sym_explicit] = ACTIONS(2947), + [anon_sym_typename] = ACTIONS(2947), + [anon_sym_private] = ACTIONS(2947), + [anon_sym_template] = ACTIONS(2947), + [anon_sym_operator] = ACTIONS(2947), + [anon_sym_friend] = ACTIONS(2947), + [anon_sym_public] = ACTIONS(2947), + [anon_sym_protected] = ACTIONS(2947), + [anon_sym_static_assert] = ACTIONS(2947), }, - [2086] = { - [sym_identifier] = ACTIONS(2855), - [aux_sym_preproc_def_token1] = ACTIONS(2855), - [aux_sym_preproc_if_token1] = ACTIONS(2855), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2855), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2855), - [sym_preproc_directive] = ACTIONS(2855), - [anon_sym_LPAREN2] = ACTIONS(2857), - [anon_sym_TILDE] = ACTIONS(2857), - [anon_sym_STAR] = ACTIONS(2857), - [anon_sym_AMP_AMP] = ACTIONS(2857), - [anon_sym_AMP] = ACTIONS(2855), - [anon_sym_SEMI] = ACTIONS(2857), - [anon_sym___extension__] = ACTIONS(2855), - [anon_sym_typedef] = ACTIONS(2855), - [anon_sym_virtual] = ACTIONS(2855), - [anon_sym_extern] = ACTIONS(2855), - [anon_sym___attribute__] = ACTIONS(2855), - [anon_sym___attribute] = ACTIONS(2855), - [anon_sym_using] = ACTIONS(2855), - [anon_sym_COLON_COLON] = ACTIONS(2857), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2857), - [anon_sym___declspec] = ACTIONS(2855), - [anon_sym___based] = ACTIONS(2855), - [anon_sym_RBRACE] = ACTIONS(2857), - [anon_sym_signed] = ACTIONS(2855), - [anon_sym_unsigned] = ACTIONS(2855), - [anon_sym_long] = ACTIONS(2855), - [anon_sym_short] = ACTIONS(2855), - [anon_sym_LBRACK] = ACTIONS(2855), - [anon_sym_static] = ACTIONS(2855), - [anon_sym_register] = ACTIONS(2855), - [anon_sym_inline] = ACTIONS(2855), - [anon_sym___inline] = ACTIONS(2855), - [anon_sym___inline__] = ACTIONS(2855), - [anon_sym___forceinline] = ACTIONS(2855), - [anon_sym_thread_local] = ACTIONS(2855), - [anon_sym___thread] = ACTIONS(2855), - [anon_sym_const] = ACTIONS(2855), - [anon_sym_constexpr] = ACTIONS(2855), - [anon_sym_volatile] = ACTIONS(2855), - [anon_sym_restrict] = ACTIONS(2855), - [anon_sym___restrict__] = ACTIONS(2855), - [anon_sym__Atomic] = ACTIONS(2855), - [anon_sym__Noreturn] = ACTIONS(2855), - [anon_sym_noreturn] = ACTIONS(2855), - [anon_sym__Nonnull] = ACTIONS(2855), - [anon_sym_mutable] = ACTIONS(2855), - [anon_sym_constinit] = ACTIONS(2855), - [anon_sym_consteval] = ACTIONS(2855), - [anon_sym_alignas] = ACTIONS(2855), - [anon_sym__Alignas] = ACTIONS(2855), - [sym_primitive_type] = ACTIONS(2855), - [anon_sym_enum] = ACTIONS(2855), - [anon_sym_class] = ACTIONS(2855), - [anon_sym_struct] = ACTIONS(2855), - [anon_sym_union] = ACTIONS(2855), + [2143] = { + [sym_identifier] = ACTIONS(2839), + [aux_sym_preproc_def_token1] = ACTIONS(2839), + [aux_sym_preproc_if_token1] = ACTIONS(2839), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2839), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2839), + [sym_preproc_directive] = ACTIONS(2839), + [anon_sym_LPAREN2] = ACTIONS(2841), + [anon_sym_TILDE] = ACTIONS(2841), + [anon_sym_STAR] = ACTIONS(2841), + [anon_sym_AMP_AMP] = ACTIONS(2841), + [anon_sym_AMP] = ACTIONS(2839), + [anon_sym_SEMI] = ACTIONS(2841), + [anon_sym___extension__] = ACTIONS(2839), + [anon_sym_typedef] = ACTIONS(2839), + [anon_sym_virtual] = ACTIONS(2839), + [anon_sym_extern] = ACTIONS(2839), + [anon_sym___attribute__] = ACTIONS(2839), + [anon_sym___attribute] = ACTIONS(2839), + [anon_sym_using] = ACTIONS(2839), + [anon_sym_COLON_COLON] = ACTIONS(2841), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2841), + [anon_sym___declspec] = ACTIONS(2839), + [anon_sym___based] = ACTIONS(2839), + [anon_sym_RBRACE] = ACTIONS(2841), + [anon_sym_signed] = ACTIONS(2839), + [anon_sym_unsigned] = ACTIONS(2839), + [anon_sym_long] = ACTIONS(2839), + [anon_sym_short] = ACTIONS(2839), + [anon_sym_LBRACK] = ACTIONS(2839), + [anon_sym_static] = ACTIONS(2839), + [anon_sym_register] = ACTIONS(2839), + [anon_sym_inline] = ACTIONS(2839), + [anon_sym___inline] = ACTIONS(2839), + [anon_sym___inline__] = ACTIONS(2839), + [anon_sym___forceinline] = ACTIONS(2839), + [anon_sym_thread_local] = ACTIONS(2839), + [anon_sym___thread] = ACTIONS(2839), + [anon_sym_const] = ACTIONS(2839), + [anon_sym_constexpr] = ACTIONS(2839), + [anon_sym_volatile] = ACTIONS(2839), + [anon_sym_restrict] = ACTIONS(2839), + [anon_sym___restrict__] = ACTIONS(2839), + [anon_sym__Atomic] = ACTIONS(2839), + [anon_sym__Noreturn] = ACTIONS(2839), + [anon_sym_noreturn] = ACTIONS(2839), + [anon_sym__Nonnull] = ACTIONS(2839), + [anon_sym_mutable] = ACTIONS(2839), + [anon_sym_constinit] = ACTIONS(2839), + [anon_sym_consteval] = ACTIONS(2839), + [anon_sym_alignas] = ACTIONS(2839), + [anon_sym__Alignas] = ACTIONS(2839), + [sym_primitive_type] = ACTIONS(2839), + [anon_sym_enum] = ACTIONS(2839), + [anon_sym_class] = ACTIONS(2839), + [anon_sym_struct] = ACTIONS(2839), + [anon_sym_union] = ACTIONS(2839), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2855), - [anon_sym_decltype] = ACTIONS(2855), - [anon_sym_explicit] = ACTIONS(2855), - [anon_sym_typename] = ACTIONS(2855), - [anon_sym_private] = ACTIONS(2855), - [anon_sym_template] = ACTIONS(2855), - [anon_sym_operator] = ACTIONS(2855), - [anon_sym_friend] = ACTIONS(2855), - [anon_sym_public] = ACTIONS(2855), - [anon_sym_protected] = ACTIONS(2855), - [anon_sym_static_assert] = ACTIONS(2855), + [sym_auto] = ACTIONS(2839), + [anon_sym_decltype] = ACTIONS(2839), + [anon_sym_explicit] = ACTIONS(2839), + [anon_sym_typename] = ACTIONS(2839), + [anon_sym_private] = ACTIONS(2839), + [anon_sym_template] = ACTIONS(2839), + [anon_sym_operator] = ACTIONS(2839), + [anon_sym_friend] = ACTIONS(2839), + [anon_sym_public] = ACTIONS(2839), + [anon_sym_protected] = ACTIONS(2839), + [anon_sym_static_assert] = ACTIONS(2839), }, - [2087] = { + [2144] = { [sym_identifier] = ACTIONS(2859), [aux_sym_preproc_def_token1] = ACTIONS(2859), [aux_sym_preproc_if_token1] = ACTIONS(2859), @@ -275005,357 +280662,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(2859), [anon_sym_static_assert] = ACTIONS(2859), }, - [2088] = { - [sym_identifier] = ACTIONS(2771), - [aux_sym_preproc_def_token1] = ACTIONS(2771), - [aux_sym_preproc_if_token1] = ACTIONS(2771), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2771), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2771), - [sym_preproc_directive] = ACTIONS(2771), - [anon_sym_LPAREN2] = ACTIONS(2773), - [anon_sym_TILDE] = ACTIONS(2773), - [anon_sym_STAR] = ACTIONS(2773), - [anon_sym_AMP_AMP] = ACTIONS(2773), - [anon_sym_AMP] = ACTIONS(2771), - [anon_sym_SEMI] = ACTIONS(2773), - [anon_sym___extension__] = ACTIONS(2771), - [anon_sym_typedef] = ACTIONS(2771), - [anon_sym_virtual] = ACTIONS(2771), - [anon_sym_extern] = ACTIONS(2771), - [anon_sym___attribute__] = ACTIONS(2771), - [anon_sym___attribute] = ACTIONS(2771), - [anon_sym_using] = ACTIONS(2771), - [anon_sym_COLON_COLON] = ACTIONS(2773), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2773), - [anon_sym___declspec] = ACTIONS(2771), - [anon_sym___based] = ACTIONS(2771), - [anon_sym_RBRACE] = ACTIONS(2773), - [anon_sym_signed] = ACTIONS(2771), - [anon_sym_unsigned] = ACTIONS(2771), - [anon_sym_long] = ACTIONS(2771), - [anon_sym_short] = ACTIONS(2771), - [anon_sym_LBRACK] = ACTIONS(2771), - [anon_sym_static] = ACTIONS(2771), - [anon_sym_register] = ACTIONS(2771), - [anon_sym_inline] = ACTIONS(2771), - [anon_sym___inline] = ACTIONS(2771), - [anon_sym___inline__] = ACTIONS(2771), - [anon_sym___forceinline] = ACTIONS(2771), - [anon_sym_thread_local] = ACTIONS(2771), - [anon_sym___thread] = ACTIONS(2771), - [anon_sym_const] = ACTIONS(2771), - [anon_sym_constexpr] = ACTIONS(2771), - [anon_sym_volatile] = ACTIONS(2771), - [anon_sym_restrict] = ACTIONS(2771), - [anon_sym___restrict__] = ACTIONS(2771), - [anon_sym__Atomic] = ACTIONS(2771), - [anon_sym__Noreturn] = ACTIONS(2771), - [anon_sym_noreturn] = ACTIONS(2771), - [anon_sym__Nonnull] = ACTIONS(2771), - [anon_sym_mutable] = ACTIONS(2771), - [anon_sym_constinit] = ACTIONS(2771), - [anon_sym_consteval] = ACTIONS(2771), - [anon_sym_alignas] = ACTIONS(2771), - [anon_sym__Alignas] = ACTIONS(2771), - [sym_primitive_type] = ACTIONS(2771), - [anon_sym_enum] = ACTIONS(2771), - [anon_sym_class] = ACTIONS(2771), - [anon_sym_struct] = ACTIONS(2771), - [anon_sym_union] = ACTIONS(2771), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2771), - [anon_sym_decltype] = ACTIONS(2771), - [anon_sym_explicit] = ACTIONS(2771), - [anon_sym_typename] = ACTIONS(2771), - [anon_sym_private] = ACTIONS(2771), - [anon_sym_template] = ACTIONS(2771), - [anon_sym_operator] = ACTIONS(2771), - [anon_sym_friend] = ACTIONS(2771), - [anon_sym_public] = ACTIONS(2771), - [anon_sym_protected] = ACTIONS(2771), - [anon_sym_static_assert] = ACTIONS(2771), - }, - [2089] = { - [sym_identifier] = ACTIONS(2643), - [aux_sym_preproc_def_token1] = ACTIONS(2643), - [aux_sym_preproc_if_token1] = ACTIONS(2643), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2643), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2643), - [sym_preproc_directive] = ACTIONS(2643), - [anon_sym_LPAREN2] = ACTIONS(2645), - [anon_sym_TILDE] = ACTIONS(2645), - [anon_sym_STAR] = ACTIONS(2645), - [anon_sym_AMP_AMP] = ACTIONS(2645), - [anon_sym_AMP] = ACTIONS(2643), - [anon_sym_SEMI] = ACTIONS(2645), - [anon_sym___extension__] = ACTIONS(2643), - [anon_sym_typedef] = ACTIONS(2643), - [anon_sym_virtual] = ACTIONS(2643), - [anon_sym_extern] = ACTIONS(2643), - [anon_sym___attribute__] = ACTIONS(2643), - [anon_sym___attribute] = ACTIONS(2643), - [anon_sym_using] = ACTIONS(2643), - [anon_sym_COLON_COLON] = ACTIONS(2645), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2645), - [anon_sym___declspec] = ACTIONS(2643), - [anon_sym___based] = ACTIONS(2643), - [anon_sym_RBRACE] = ACTIONS(2645), - [anon_sym_signed] = ACTIONS(2643), - [anon_sym_unsigned] = ACTIONS(2643), - [anon_sym_long] = ACTIONS(2643), - [anon_sym_short] = ACTIONS(2643), - [anon_sym_LBRACK] = ACTIONS(2643), - [anon_sym_static] = ACTIONS(2643), - [anon_sym_register] = ACTIONS(2643), - [anon_sym_inline] = ACTIONS(2643), - [anon_sym___inline] = ACTIONS(2643), - [anon_sym___inline__] = ACTIONS(2643), - [anon_sym___forceinline] = ACTIONS(2643), - [anon_sym_thread_local] = ACTIONS(2643), - [anon_sym___thread] = ACTIONS(2643), - [anon_sym_const] = ACTIONS(2643), - [anon_sym_constexpr] = ACTIONS(2643), - [anon_sym_volatile] = ACTIONS(2643), - [anon_sym_restrict] = ACTIONS(2643), - [anon_sym___restrict__] = ACTIONS(2643), - [anon_sym__Atomic] = ACTIONS(2643), - [anon_sym__Noreturn] = ACTIONS(2643), - [anon_sym_noreturn] = ACTIONS(2643), - [anon_sym__Nonnull] = ACTIONS(2643), - [anon_sym_mutable] = ACTIONS(2643), - [anon_sym_constinit] = ACTIONS(2643), - [anon_sym_consteval] = ACTIONS(2643), - [anon_sym_alignas] = ACTIONS(2643), - [anon_sym__Alignas] = ACTIONS(2643), - [sym_primitive_type] = ACTIONS(2643), - [anon_sym_enum] = ACTIONS(2643), - [anon_sym_class] = ACTIONS(2643), - [anon_sym_struct] = ACTIONS(2643), - [anon_sym_union] = ACTIONS(2643), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2643), - [anon_sym_decltype] = ACTIONS(2643), - [anon_sym_explicit] = ACTIONS(2643), - [anon_sym_typename] = ACTIONS(2643), - [anon_sym_private] = ACTIONS(2643), - [anon_sym_template] = ACTIONS(2643), - [anon_sym_operator] = ACTIONS(2643), - [anon_sym_friend] = ACTIONS(2643), - [anon_sym_public] = ACTIONS(2643), - [anon_sym_protected] = ACTIONS(2643), - [anon_sym_static_assert] = ACTIONS(2643), - }, - [2090] = { - [sym_identifier] = ACTIONS(2699), - [aux_sym_preproc_def_token1] = ACTIONS(2699), - [aux_sym_preproc_if_token1] = ACTIONS(2699), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2699), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2699), - [sym_preproc_directive] = ACTIONS(2699), - [anon_sym_LPAREN2] = ACTIONS(2701), - [anon_sym_TILDE] = ACTIONS(2701), - [anon_sym_STAR] = ACTIONS(2701), - [anon_sym_AMP_AMP] = ACTIONS(2701), - [anon_sym_AMP] = ACTIONS(2699), - [anon_sym_SEMI] = ACTIONS(2701), - [anon_sym___extension__] = ACTIONS(2699), - [anon_sym_typedef] = ACTIONS(2699), - [anon_sym_virtual] = ACTIONS(2699), - [anon_sym_extern] = ACTIONS(2699), - [anon_sym___attribute__] = ACTIONS(2699), - [anon_sym___attribute] = ACTIONS(2699), - [anon_sym_using] = ACTIONS(2699), - [anon_sym_COLON_COLON] = ACTIONS(2701), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2701), - [anon_sym___declspec] = ACTIONS(2699), - [anon_sym___based] = ACTIONS(2699), - [anon_sym_RBRACE] = ACTIONS(2701), - [anon_sym_signed] = ACTIONS(2699), - [anon_sym_unsigned] = ACTIONS(2699), - [anon_sym_long] = ACTIONS(2699), - [anon_sym_short] = ACTIONS(2699), - [anon_sym_LBRACK] = ACTIONS(2699), - [anon_sym_static] = ACTIONS(2699), - [anon_sym_register] = ACTIONS(2699), - [anon_sym_inline] = ACTIONS(2699), - [anon_sym___inline] = ACTIONS(2699), - [anon_sym___inline__] = ACTIONS(2699), - [anon_sym___forceinline] = ACTIONS(2699), - [anon_sym_thread_local] = ACTIONS(2699), - [anon_sym___thread] = ACTIONS(2699), - [anon_sym_const] = ACTIONS(2699), - [anon_sym_constexpr] = ACTIONS(2699), - [anon_sym_volatile] = ACTIONS(2699), - [anon_sym_restrict] = ACTIONS(2699), - [anon_sym___restrict__] = ACTIONS(2699), - [anon_sym__Atomic] = ACTIONS(2699), - [anon_sym__Noreturn] = ACTIONS(2699), - [anon_sym_noreturn] = ACTIONS(2699), - [anon_sym__Nonnull] = ACTIONS(2699), - [anon_sym_mutable] = ACTIONS(2699), - [anon_sym_constinit] = ACTIONS(2699), - [anon_sym_consteval] = ACTIONS(2699), - [anon_sym_alignas] = ACTIONS(2699), - [anon_sym__Alignas] = ACTIONS(2699), - [sym_primitive_type] = ACTIONS(2699), - [anon_sym_enum] = ACTIONS(2699), - [anon_sym_class] = ACTIONS(2699), - [anon_sym_struct] = ACTIONS(2699), - [anon_sym_union] = ACTIONS(2699), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2699), - [anon_sym_decltype] = ACTIONS(2699), - [anon_sym_explicit] = ACTIONS(2699), - [anon_sym_typename] = ACTIONS(2699), - [anon_sym_private] = ACTIONS(2699), - [anon_sym_template] = ACTIONS(2699), - [anon_sym_operator] = ACTIONS(2699), - [anon_sym_friend] = ACTIONS(2699), - [anon_sym_public] = ACTIONS(2699), - [anon_sym_protected] = ACTIONS(2699), - [anon_sym_static_assert] = ACTIONS(2699), - }, - [2091] = { - [sym_identifier] = ACTIONS(3063), - [aux_sym_preproc_def_token1] = ACTIONS(3063), - [aux_sym_preproc_if_token1] = ACTIONS(3063), - [aux_sym_preproc_if_token2] = ACTIONS(3063), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3063), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3063), - [sym_preproc_directive] = ACTIONS(3063), - [anon_sym_LPAREN2] = ACTIONS(3065), - [anon_sym_TILDE] = ACTIONS(3065), - [anon_sym_STAR] = ACTIONS(3065), - [anon_sym_AMP_AMP] = ACTIONS(3065), - [anon_sym_AMP] = ACTIONS(3063), - [anon_sym_SEMI] = ACTIONS(3065), - [anon_sym___extension__] = ACTIONS(3063), - [anon_sym_typedef] = ACTIONS(3063), - [anon_sym_virtual] = ACTIONS(3063), - [anon_sym_extern] = ACTIONS(3063), - [anon_sym___attribute__] = ACTIONS(3063), - [anon_sym___attribute] = ACTIONS(3063), - [anon_sym_using] = ACTIONS(3063), - [anon_sym_COLON_COLON] = ACTIONS(3065), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3065), - [anon_sym___declspec] = ACTIONS(3063), - [anon_sym___based] = ACTIONS(3063), - [anon_sym_signed] = ACTIONS(3063), - [anon_sym_unsigned] = ACTIONS(3063), - [anon_sym_long] = ACTIONS(3063), - [anon_sym_short] = ACTIONS(3063), - [anon_sym_LBRACK] = ACTIONS(3063), - [anon_sym_static] = ACTIONS(3063), - [anon_sym_register] = ACTIONS(3063), - [anon_sym_inline] = ACTIONS(3063), - [anon_sym___inline] = ACTIONS(3063), - [anon_sym___inline__] = ACTIONS(3063), - [anon_sym___forceinline] = ACTIONS(3063), - [anon_sym_thread_local] = ACTIONS(3063), - [anon_sym___thread] = ACTIONS(3063), - [anon_sym_const] = ACTIONS(3063), - [anon_sym_constexpr] = ACTIONS(3063), - [anon_sym_volatile] = ACTIONS(3063), - [anon_sym_restrict] = ACTIONS(3063), - [anon_sym___restrict__] = ACTIONS(3063), - [anon_sym__Atomic] = ACTIONS(3063), - [anon_sym__Noreturn] = ACTIONS(3063), - [anon_sym_noreturn] = ACTIONS(3063), - [anon_sym__Nonnull] = ACTIONS(3063), - [anon_sym_mutable] = ACTIONS(3063), - [anon_sym_constinit] = ACTIONS(3063), - [anon_sym_consteval] = ACTIONS(3063), - [anon_sym_alignas] = ACTIONS(3063), - [anon_sym__Alignas] = ACTIONS(3063), - [sym_primitive_type] = ACTIONS(3063), - [anon_sym_enum] = ACTIONS(3063), - [anon_sym_class] = ACTIONS(3063), - [anon_sym_struct] = ACTIONS(3063), - [anon_sym_union] = ACTIONS(3063), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3063), - [anon_sym_decltype] = ACTIONS(3063), - [anon_sym_explicit] = ACTIONS(3063), - [anon_sym_typename] = ACTIONS(3063), - [anon_sym_private] = ACTIONS(3063), - [anon_sym_template] = ACTIONS(3063), - [anon_sym_operator] = ACTIONS(3063), - [anon_sym_friend] = ACTIONS(3063), - [anon_sym_public] = ACTIONS(3063), - [anon_sym_protected] = ACTIONS(3063), - [anon_sym_static_assert] = ACTIONS(3063), - }, - [2092] = { - [sym__declaration_modifiers] = STATE(3269), - [sym_attribute_specifier] = STATE(3269), - [sym_attribute_declaration] = STATE(3269), - [sym_ms_declspec_modifier] = STATE(3269), - [sym_storage_class_specifier] = STATE(3269), - [sym_type_qualifier] = STATE(3269), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(4048), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym_dependent_type] = STATE(2523), - [sym_template_type] = STATE(2406), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(6599), - [sym_qualified_type_identifier] = STATE(2809), - [aux_sym__declaration_specifiers_repeat1] = STATE(3269), - [aux_sym_sized_type_specifier_repeat1] = STATE(2674), - [sym_identifier] = ACTIONS(3899), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(5958), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3907), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym_signed] = ACTIONS(3909), - [anon_sym_unsigned] = ACTIONS(3909), - [anon_sym_long] = ACTIONS(3909), - [anon_sym_short] = ACTIONS(3909), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(3911), - [anon_sym_enum] = ACTIONS(3913), - [anon_sym_class] = ACTIONS(3915), - [anon_sym_struct] = ACTIONS(3917), - [anon_sym_union] = ACTIONS(3919), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(3921), - [anon_sym_template] = ACTIONS(1452), - }, - [2093] = { + [2145] = { [sym_identifier] = ACTIONS(2863), [aux_sym_preproc_def_token1] = ACTIONS(2863), [aux_sym_preproc_if_token1] = ACTIONS(2863), @@ -275425,7 +280732,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(2863), [anon_sym_static_assert] = ACTIONS(2863), }, - [2094] = { + [2146] = { [sym_identifier] = ACTIONS(2867), [aux_sym_preproc_def_token1] = ACTIONS(2867), [aux_sym_preproc_if_token1] = ACTIONS(2867), @@ -275495,1831 +280802,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(2867), [anon_sym_static_assert] = ACTIONS(2867), }, - [2095] = { - [sym_identifier] = ACTIONS(2639), - [aux_sym_preproc_def_token1] = ACTIONS(2639), - [aux_sym_preproc_if_token1] = ACTIONS(2639), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2639), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2639), - [sym_preproc_directive] = ACTIONS(2639), - [anon_sym_LPAREN2] = ACTIONS(2641), - [anon_sym_TILDE] = ACTIONS(2641), - [anon_sym_STAR] = ACTIONS(2641), - [anon_sym_AMP_AMP] = ACTIONS(2641), - [anon_sym_AMP] = ACTIONS(2639), - [anon_sym_SEMI] = ACTIONS(2641), - [anon_sym___extension__] = ACTIONS(2639), - [anon_sym_typedef] = ACTIONS(2639), - [anon_sym_virtual] = ACTIONS(2639), - [anon_sym_extern] = ACTIONS(2639), - [anon_sym___attribute__] = ACTIONS(2639), - [anon_sym___attribute] = ACTIONS(2639), - [anon_sym_using] = ACTIONS(2639), - [anon_sym_COLON_COLON] = ACTIONS(2641), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2641), - [anon_sym___declspec] = ACTIONS(2639), - [anon_sym___based] = ACTIONS(2639), - [anon_sym_RBRACE] = ACTIONS(2641), - [anon_sym_signed] = ACTIONS(2639), - [anon_sym_unsigned] = ACTIONS(2639), - [anon_sym_long] = ACTIONS(2639), - [anon_sym_short] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(2639), - [anon_sym_static] = ACTIONS(2639), - [anon_sym_register] = ACTIONS(2639), - [anon_sym_inline] = ACTIONS(2639), - [anon_sym___inline] = ACTIONS(2639), - [anon_sym___inline__] = ACTIONS(2639), - [anon_sym___forceinline] = ACTIONS(2639), - [anon_sym_thread_local] = ACTIONS(2639), - [anon_sym___thread] = ACTIONS(2639), - [anon_sym_const] = ACTIONS(2639), - [anon_sym_constexpr] = ACTIONS(2639), - [anon_sym_volatile] = ACTIONS(2639), - [anon_sym_restrict] = ACTIONS(2639), - [anon_sym___restrict__] = ACTIONS(2639), - [anon_sym__Atomic] = ACTIONS(2639), - [anon_sym__Noreturn] = ACTIONS(2639), - [anon_sym_noreturn] = ACTIONS(2639), - [anon_sym__Nonnull] = ACTIONS(2639), - [anon_sym_mutable] = ACTIONS(2639), - [anon_sym_constinit] = ACTIONS(2639), - [anon_sym_consteval] = ACTIONS(2639), - [anon_sym_alignas] = ACTIONS(2639), - [anon_sym__Alignas] = ACTIONS(2639), - [sym_primitive_type] = ACTIONS(2639), - [anon_sym_enum] = ACTIONS(2639), - [anon_sym_class] = ACTIONS(2639), - [anon_sym_struct] = ACTIONS(2639), - [anon_sym_union] = ACTIONS(2639), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2639), - [anon_sym_decltype] = ACTIONS(2639), - [anon_sym_explicit] = ACTIONS(2639), - [anon_sym_typename] = ACTIONS(2639), - [anon_sym_private] = ACTIONS(2639), - [anon_sym_template] = ACTIONS(2639), - [anon_sym_operator] = ACTIONS(2639), - [anon_sym_friend] = ACTIONS(2639), - [anon_sym_public] = ACTIONS(2639), - [anon_sym_protected] = ACTIONS(2639), - [anon_sym_static_assert] = ACTIONS(2639), - }, - [2096] = { - [sym_identifier] = ACTIONS(2863), - [aux_sym_preproc_def_token1] = ACTIONS(2863), - [aux_sym_preproc_if_token1] = ACTIONS(2863), - [aux_sym_preproc_if_token2] = ACTIONS(2863), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2863), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2863), - [sym_preproc_directive] = ACTIONS(2863), - [anon_sym_LPAREN2] = ACTIONS(2865), - [anon_sym_TILDE] = ACTIONS(2865), - [anon_sym_STAR] = ACTIONS(2865), - [anon_sym_AMP_AMP] = ACTIONS(2865), - [anon_sym_AMP] = ACTIONS(2863), - [anon_sym_SEMI] = ACTIONS(2865), - [anon_sym___extension__] = ACTIONS(2863), - [anon_sym_typedef] = ACTIONS(2863), - [anon_sym_virtual] = ACTIONS(2863), - [anon_sym_extern] = ACTIONS(2863), - [anon_sym___attribute__] = ACTIONS(2863), - [anon_sym___attribute] = ACTIONS(2863), - [anon_sym_using] = ACTIONS(2863), - [anon_sym_COLON_COLON] = ACTIONS(2865), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2865), - [anon_sym___declspec] = ACTIONS(2863), - [anon_sym___based] = ACTIONS(2863), - [anon_sym_signed] = ACTIONS(2863), - [anon_sym_unsigned] = ACTIONS(2863), - [anon_sym_long] = ACTIONS(2863), - [anon_sym_short] = ACTIONS(2863), - [anon_sym_LBRACK] = ACTIONS(2863), - [anon_sym_static] = ACTIONS(2863), - [anon_sym_register] = ACTIONS(2863), - [anon_sym_inline] = ACTIONS(2863), - [anon_sym___inline] = ACTIONS(2863), - [anon_sym___inline__] = ACTIONS(2863), - [anon_sym___forceinline] = ACTIONS(2863), - [anon_sym_thread_local] = ACTIONS(2863), - [anon_sym___thread] = ACTIONS(2863), - [anon_sym_const] = ACTIONS(2863), - [anon_sym_constexpr] = ACTIONS(2863), - [anon_sym_volatile] = ACTIONS(2863), - [anon_sym_restrict] = ACTIONS(2863), - [anon_sym___restrict__] = ACTIONS(2863), - [anon_sym__Atomic] = ACTIONS(2863), - [anon_sym__Noreturn] = ACTIONS(2863), - [anon_sym_noreturn] = ACTIONS(2863), - [anon_sym__Nonnull] = ACTIONS(2863), - [anon_sym_mutable] = ACTIONS(2863), - [anon_sym_constinit] = ACTIONS(2863), - [anon_sym_consteval] = ACTIONS(2863), - [anon_sym_alignas] = ACTIONS(2863), - [anon_sym__Alignas] = ACTIONS(2863), - [sym_primitive_type] = ACTIONS(2863), - [anon_sym_enum] = ACTIONS(2863), - [anon_sym_class] = ACTIONS(2863), - [anon_sym_struct] = ACTIONS(2863), - [anon_sym_union] = ACTIONS(2863), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2863), - [anon_sym_decltype] = ACTIONS(2863), - [anon_sym_explicit] = ACTIONS(2863), - [anon_sym_typename] = ACTIONS(2863), - [anon_sym_private] = ACTIONS(2863), - [anon_sym_template] = ACTIONS(2863), - [anon_sym_operator] = ACTIONS(2863), - [anon_sym_friend] = ACTIONS(2863), - [anon_sym_public] = ACTIONS(2863), - [anon_sym_protected] = ACTIONS(2863), - [anon_sym_static_assert] = ACTIONS(2863), - }, - [2097] = { - [sym_string_literal] = STATE(1684), - [sym_template_argument_list] = STATE(2338), - [sym_raw_string_literal] = STATE(1684), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4146), - [anon_sym_COMMA] = ACTIONS(4146), - [anon_sym_LPAREN2] = ACTIONS(5997), - [anon_sym_DASH] = ACTIONS(4154), - [anon_sym_PLUS] = ACTIONS(4154), - [anon_sym_STAR] = ACTIONS(4154), - [anon_sym_SLASH] = ACTIONS(4154), - [anon_sym_PERCENT] = ACTIONS(4154), - [anon_sym_PIPE_PIPE] = ACTIONS(4146), - [anon_sym_AMP_AMP] = ACTIONS(4146), - [anon_sym_PIPE] = ACTIONS(4154), - [anon_sym_CARET] = ACTIONS(4154), - [anon_sym_AMP] = ACTIONS(4154), - [anon_sym_EQ_EQ] = ACTIONS(4146), - [anon_sym_BANG_EQ] = ACTIONS(4146), - [anon_sym_GT] = ACTIONS(4154), - [anon_sym_GT_EQ] = ACTIONS(4146), - [anon_sym_LT_EQ] = ACTIONS(4154), - [anon_sym_LT] = ACTIONS(5373), - [anon_sym_LT_LT] = ACTIONS(4154), - [anon_sym_GT_GT] = ACTIONS(4154), - [anon_sym_SEMI] = ACTIONS(4146), - [anon_sym_COLON_COLON] = ACTIONS(4167), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5997), - [anon_sym_LBRACE] = ACTIONS(4172), - [anon_sym_RBRACE] = ACTIONS(4146), - [anon_sym_LBRACK] = ACTIONS(5999), - [anon_sym_EQ] = ACTIONS(4154), - [anon_sym_QMARK] = ACTIONS(4146), - [anon_sym_STAR_EQ] = ACTIONS(4146), - [anon_sym_SLASH_EQ] = ACTIONS(4146), - [anon_sym_PERCENT_EQ] = ACTIONS(4146), - [anon_sym_PLUS_EQ] = ACTIONS(4146), - [anon_sym_DASH_EQ] = ACTIONS(4146), - [anon_sym_LT_LT_EQ] = ACTIONS(4146), - [anon_sym_GT_GT_EQ] = ACTIONS(4146), - [anon_sym_AMP_EQ] = ACTIONS(4146), - [anon_sym_CARET_EQ] = ACTIONS(4146), - [anon_sym_PIPE_EQ] = ACTIONS(4146), - [anon_sym_and_eq] = ACTIONS(4146), - [anon_sym_or_eq] = ACTIONS(4146), - [anon_sym_xor_eq] = ACTIONS(4146), - [anon_sym_LT_EQ_GT] = ACTIONS(4146), - [anon_sym_or] = ACTIONS(4154), - [anon_sym_and] = ACTIONS(4154), - [anon_sym_bitor] = ACTIONS(4146), - [anon_sym_xor] = ACTIONS(4154), - [anon_sym_bitand] = ACTIONS(4146), - [anon_sym_not_eq] = ACTIONS(4146), - [anon_sym_DASH_DASH] = ACTIONS(4146), - [anon_sym_PLUS_PLUS] = ACTIONS(4146), - [anon_sym_DOT] = ACTIONS(4154), - [anon_sym_DOT_STAR] = ACTIONS(4146), - [anon_sym_DASH_GT] = ACTIONS(4146), - [anon_sym_L_DQUOTE] = ACTIONS(1972), - [anon_sym_u_DQUOTE] = ACTIONS(1972), - [anon_sym_U_DQUOTE] = ACTIONS(1972), - [anon_sym_u8_DQUOTE] = ACTIONS(1972), - [anon_sym_DQUOTE] = ACTIONS(1972), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(1982), - [anon_sym_LR_DQUOTE] = ACTIONS(1982), - [anon_sym_uR_DQUOTE] = ACTIONS(1982), - [anon_sym_UR_DQUOTE] = ACTIONS(1982), - [anon_sym_u8R_DQUOTE] = ACTIONS(1982), - }, - [2098] = { - [sym_identifier] = ACTIONS(3319), - [aux_sym_preproc_def_token1] = ACTIONS(3319), - [aux_sym_preproc_if_token1] = ACTIONS(3319), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3319), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3319), - [sym_preproc_directive] = ACTIONS(3319), - [anon_sym_LPAREN2] = ACTIONS(3321), - [anon_sym_TILDE] = ACTIONS(3321), - [anon_sym_STAR] = ACTIONS(3321), - [anon_sym_AMP_AMP] = ACTIONS(3321), - [anon_sym_AMP] = ACTIONS(3319), - [anon_sym_SEMI] = ACTIONS(3321), - [anon_sym___extension__] = ACTIONS(3319), - [anon_sym_typedef] = ACTIONS(3319), - [anon_sym_virtual] = ACTIONS(3319), - [anon_sym_extern] = ACTIONS(3319), - [anon_sym___attribute__] = ACTIONS(3319), - [anon_sym___attribute] = ACTIONS(3319), - [anon_sym_using] = ACTIONS(3319), - [anon_sym_COLON_COLON] = ACTIONS(3321), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3321), - [anon_sym___declspec] = ACTIONS(3319), - [anon_sym___based] = ACTIONS(3319), - [anon_sym_RBRACE] = ACTIONS(3321), - [anon_sym_signed] = ACTIONS(3319), - [anon_sym_unsigned] = ACTIONS(3319), - [anon_sym_long] = ACTIONS(3319), - [anon_sym_short] = ACTIONS(3319), - [anon_sym_LBRACK] = ACTIONS(3319), - [anon_sym_static] = ACTIONS(3319), - [anon_sym_register] = ACTIONS(3319), - [anon_sym_inline] = ACTIONS(3319), - [anon_sym___inline] = ACTIONS(3319), - [anon_sym___inline__] = ACTIONS(3319), - [anon_sym___forceinline] = ACTIONS(3319), - [anon_sym_thread_local] = ACTIONS(3319), - [anon_sym___thread] = ACTIONS(3319), - [anon_sym_const] = ACTIONS(3319), - [anon_sym_constexpr] = ACTIONS(3319), - [anon_sym_volatile] = ACTIONS(3319), - [anon_sym_restrict] = ACTIONS(3319), - [anon_sym___restrict__] = ACTIONS(3319), - [anon_sym__Atomic] = ACTIONS(3319), - [anon_sym__Noreturn] = ACTIONS(3319), - [anon_sym_noreturn] = ACTIONS(3319), - [anon_sym__Nonnull] = ACTIONS(3319), - [anon_sym_mutable] = ACTIONS(3319), - [anon_sym_constinit] = ACTIONS(3319), - [anon_sym_consteval] = ACTIONS(3319), - [anon_sym_alignas] = ACTIONS(3319), - [anon_sym__Alignas] = ACTIONS(3319), - [sym_primitive_type] = ACTIONS(3319), - [anon_sym_enum] = ACTIONS(3319), - [anon_sym_class] = ACTIONS(3319), - [anon_sym_struct] = ACTIONS(3319), - [anon_sym_union] = ACTIONS(3319), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3319), - [anon_sym_decltype] = ACTIONS(3319), - [anon_sym_explicit] = ACTIONS(3319), - [anon_sym_typename] = ACTIONS(3319), - [anon_sym_private] = ACTIONS(3319), - [anon_sym_template] = ACTIONS(3319), - [anon_sym_operator] = ACTIONS(3319), - [anon_sym_friend] = ACTIONS(3319), - [anon_sym_public] = ACTIONS(3319), - [anon_sym_protected] = ACTIONS(3319), - [anon_sym_static_assert] = ACTIONS(3319), - }, - [2099] = { - [sym_string_literal] = STATE(3128), - [sym_template_argument_list] = STATE(3588), - [sym_raw_string_literal] = STATE(3128), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4146), - [anon_sym_COMMA] = ACTIONS(4146), - [anon_sym_LPAREN2] = ACTIONS(4146), - [anon_sym_DASH] = ACTIONS(4154), - [anon_sym_PLUS] = ACTIONS(4154), - [anon_sym_STAR] = ACTIONS(4154), - [anon_sym_SLASH] = ACTIONS(4154), - [anon_sym_PERCENT] = ACTIONS(4154), - [anon_sym_PIPE_PIPE] = ACTIONS(4146), - [anon_sym_AMP_AMP] = ACTIONS(4146), - [anon_sym_PIPE] = ACTIONS(4154), - [anon_sym_CARET] = ACTIONS(4154), - [anon_sym_AMP] = ACTIONS(4154), - [anon_sym_EQ_EQ] = ACTIONS(4146), - [anon_sym_BANG_EQ] = ACTIONS(4146), - [anon_sym_GT] = ACTIONS(4154), - [anon_sym_GT_EQ] = ACTIONS(4146), - [anon_sym_LT_EQ] = ACTIONS(4154), - [anon_sym_LT] = ACTIONS(5077), - [anon_sym_LT_LT] = ACTIONS(4154), - [anon_sym_GT_GT] = ACTIONS(4154), - [anon_sym_SEMI] = ACTIONS(4146), - [anon_sym___attribute__] = ACTIONS(4146), - [anon_sym___attribute] = ACTIONS(4154), - [anon_sym_COLON_COLON] = ACTIONS(4167), - [anon_sym_LBRACE] = ACTIONS(4172), - [anon_sym_LBRACK] = ACTIONS(4146), - [anon_sym_EQ] = ACTIONS(6006), - [anon_sym_QMARK] = ACTIONS(4146), - [anon_sym_STAR_EQ] = ACTIONS(6008), - [anon_sym_SLASH_EQ] = ACTIONS(6008), - [anon_sym_PERCENT_EQ] = ACTIONS(6008), - [anon_sym_PLUS_EQ] = ACTIONS(6008), - [anon_sym_DASH_EQ] = ACTIONS(6008), - [anon_sym_LT_LT_EQ] = ACTIONS(6008), - [anon_sym_GT_GT_EQ] = ACTIONS(6008), - [anon_sym_AMP_EQ] = ACTIONS(6008), - [anon_sym_CARET_EQ] = ACTIONS(6008), - [anon_sym_PIPE_EQ] = ACTIONS(6008), - [anon_sym_and_eq] = ACTIONS(6008), - [anon_sym_or_eq] = ACTIONS(6008), - [anon_sym_xor_eq] = ACTIONS(6008), - [anon_sym_LT_EQ_GT] = ACTIONS(4146), - [anon_sym_or] = ACTIONS(4154), - [anon_sym_and] = ACTIONS(4154), - [anon_sym_bitor] = ACTIONS(4146), - [anon_sym_xor] = ACTIONS(4154), - [anon_sym_bitand] = ACTIONS(4146), - [anon_sym_not_eq] = ACTIONS(4146), - [anon_sym_DASH_DASH] = ACTIONS(4146), - [anon_sym_PLUS_PLUS] = ACTIONS(4146), - [anon_sym_DOT] = ACTIONS(4154), - [anon_sym_DOT_STAR] = ACTIONS(4146), - [anon_sym_DASH_GT] = ACTIONS(4146), - [anon_sym_L_DQUOTE] = ACTIONS(6010), - [anon_sym_u_DQUOTE] = ACTIONS(6010), - [anon_sym_U_DQUOTE] = ACTIONS(6010), - [anon_sym_u8_DQUOTE] = ACTIONS(6010), - [anon_sym_DQUOTE] = ACTIONS(6010), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(6012), - [anon_sym_LR_DQUOTE] = ACTIONS(6012), - [anon_sym_uR_DQUOTE] = ACTIONS(6012), - [anon_sym_UR_DQUOTE] = ACTIONS(6012), - [anon_sym_u8R_DQUOTE] = ACTIONS(6012), - }, - [2100] = { - [sym_identifier] = ACTIONS(2711), - [aux_sym_preproc_def_token1] = ACTIONS(2711), - [aux_sym_preproc_if_token1] = ACTIONS(2711), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2711), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2711), - [sym_preproc_directive] = ACTIONS(2711), - [anon_sym_LPAREN2] = ACTIONS(2713), - [anon_sym_TILDE] = ACTIONS(2713), - [anon_sym_STAR] = ACTIONS(2713), - [anon_sym_AMP_AMP] = ACTIONS(2713), - [anon_sym_AMP] = ACTIONS(2711), - [anon_sym_SEMI] = ACTIONS(2713), - [anon_sym___extension__] = ACTIONS(2711), - [anon_sym_typedef] = ACTIONS(2711), - [anon_sym_virtual] = ACTIONS(2711), - [anon_sym_extern] = ACTIONS(2711), - [anon_sym___attribute__] = ACTIONS(2711), - [anon_sym___attribute] = ACTIONS(2711), - [anon_sym_using] = ACTIONS(2711), - [anon_sym_COLON_COLON] = ACTIONS(2713), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2713), - [anon_sym___declspec] = ACTIONS(2711), - [anon_sym___based] = ACTIONS(2711), - [anon_sym_RBRACE] = ACTIONS(2713), - [anon_sym_signed] = ACTIONS(2711), - [anon_sym_unsigned] = ACTIONS(2711), - [anon_sym_long] = ACTIONS(2711), - [anon_sym_short] = ACTIONS(2711), - [anon_sym_LBRACK] = ACTIONS(2711), - [anon_sym_static] = ACTIONS(2711), - [anon_sym_register] = ACTIONS(2711), - [anon_sym_inline] = ACTIONS(2711), - [anon_sym___inline] = ACTIONS(2711), - [anon_sym___inline__] = ACTIONS(2711), - [anon_sym___forceinline] = ACTIONS(2711), - [anon_sym_thread_local] = ACTIONS(2711), - [anon_sym___thread] = ACTIONS(2711), - [anon_sym_const] = ACTIONS(2711), - [anon_sym_constexpr] = ACTIONS(2711), - [anon_sym_volatile] = ACTIONS(2711), - [anon_sym_restrict] = ACTIONS(2711), - [anon_sym___restrict__] = ACTIONS(2711), - [anon_sym__Atomic] = ACTIONS(2711), - [anon_sym__Noreturn] = ACTIONS(2711), - [anon_sym_noreturn] = ACTIONS(2711), - [anon_sym__Nonnull] = ACTIONS(2711), - [anon_sym_mutable] = ACTIONS(2711), - [anon_sym_constinit] = ACTIONS(2711), - [anon_sym_consteval] = ACTIONS(2711), - [anon_sym_alignas] = ACTIONS(2711), - [anon_sym__Alignas] = ACTIONS(2711), - [sym_primitive_type] = ACTIONS(2711), - [anon_sym_enum] = ACTIONS(2711), - [anon_sym_class] = ACTIONS(2711), - [anon_sym_struct] = ACTIONS(2711), - [anon_sym_union] = ACTIONS(2711), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2711), - [anon_sym_decltype] = ACTIONS(2711), - [anon_sym_explicit] = ACTIONS(2711), - [anon_sym_typename] = ACTIONS(2711), - [anon_sym_private] = ACTIONS(2711), - [anon_sym_template] = ACTIONS(2711), - [anon_sym_operator] = ACTIONS(2711), - [anon_sym_friend] = ACTIONS(2711), - [anon_sym_public] = ACTIONS(2711), - [anon_sym_protected] = ACTIONS(2711), - [anon_sym_static_assert] = ACTIONS(2711), - }, - [2101] = { - [sym_identifier] = ACTIONS(5585), - [aux_sym_preproc_def_token1] = ACTIONS(5585), - [aux_sym_preproc_if_token1] = ACTIONS(5585), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5585), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5585), - [sym_preproc_directive] = ACTIONS(5585), - [anon_sym_LPAREN2] = ACTIONS(5587), - [anon_sym_TILDE] = ACTIONS(5587), - [anon_sym_STAR] = ACTIONS(5587), - [anon_sym_AMP_AMP] = ACTIONS(5587), - [anon_sym_AMP] = ACTIONS(5585), - [anon_sym_SEMI] = ACTIONS(5587), - [anon_sym___extension__] = ACTIONS(5585), - [anon_sym_typedef] = ACTIONS(5585), - [anon_sym_virtual] = ACTIONS(5585), - [anon_sym_extern] = ACTIONS(5585), - [anon_sym___attribute__] = ACTIONS(5585), - [anon_sym___attribute] = ACTIONS(5585), - [anon_sym_using] = ACTIONS(5585), - [anon_sym_COLON_COLON] = ACTIONS(5587), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5587), - [anon_sym___declspec] = ACTIONS(5585), - [anon_sym___based] = ACTIONS(5585), - [anon_sym_RBRACE] = ACTIONS(5587), - [anon_sym_signed] = ACTIONS(5585), - [anon_sym_unsigned] = ACTIONS(5585), - [anon_sym_long] = ACTIONS(5585), - [anon_sym_short] = ACTIONS(5585), - [anon_sym_LBRACK] = ACTIONS(5585), - [anon_sym_static] = ACTIONS(5585), - [anon_sym_register] = ACTIONS(5585), - [anon_sym_inline] = ACTIONS(5585), - [anon_sym___inline] = ACTIONS(5585), - [anon_sym___inline__] = ACTIONS(5585), - [anon_sym___forceinline] = ACTIONS(5585), - [anon_sym_thread_local] = ACTIONS(5585), - [anon_sym___thread] = ACTIONS(5585), - [anon_sym_const] = ACTIONS(5585), - [anon_sym_constexpr] = ACTIONS(5585), - [anon_sym_volatile] = ACTIONS(5585), - [anon_sym_restrict] = ACTIONS(5585), - [anon_sym___restrict__] = ACTIONS(5585), - [anon_sym__Atomic] = ACTIONS(5585), - [anon_sym__Noreturn] = ACTIONS(5585), - [anon_sym_noreturn] = ACTIONS(5585), - [anon_sym__Nonnull] = ACTIONS(5585), - [anon_sym_mutable] = ACTIONS(5585), - [anon_sym_constinit] = ACTIONS(5585), - [anon_sym_consteval] = ACTIONS(5585), - [anon_sym_alignas] = ACTIONS(5585), - [anon_sym__Alignas] = ACTIONS(5585), - [sym_primitive_type] = ACTIONS(5585), - [anon_sym_enum] = ACTIONS(5585), - [anon_sym_class] = ACTIONS(5585), - [anon_sym_struct] = ACTIONS(5585), - [anon_sym_union] = ACTIONS(5585), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5585), - [anon_sym_decltype] = ACTIONS(5585), - [anon_sym_explicit] = ACTIONS(5585), - [anon_sym_typename] = ACTIONS(5585), - [anon_sym_private] = ACTIONS(5585), - [anon_sym_template] = ACTIONS(5585), - [anon_sym_operator] = ACTIONS(5585), - [anon_sym_friend] = ACTIONS(5585), - [anon_sym_public] = ACTIONS(5585), - [anon_sym_protected] = ACTIONS(5585), - [anon_sym_static_assert] = ACTIONS(5585), - }, - [2102] = { - [sym_identifier] = ACTIONS(2867), - [aux_sym_preproc_def_token1] = ACTIONS(2867), - [aux_sym_preproc_if_token1] = ACTIONS(2867), - [aux_sym_preproc_if_token2] = ACTIONS(2867), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), - [sym_preproc_directive] = ACTIONS(2867), - [anon_sym_LPAREN2] = ACTIONS(2869), - [anon_sym_TILDE] = ACTIONS(2869), - [anon_sym_STAR] = ACTIONS(2869), - [anon_sym_AMP_AMP] = ACTIONS(2869), - [anon_sym_AMP] = ACTIONS(2867), - [anon_sym_SEMI] = ACTIONS(2869), - [anon_sym___extension__] = ACTIONS(2867), - [anon_sym_typedef] = ACTIONS(2867), - [anon_sym_virtual] = ACTIONS(2867), - [anon_sym_extern] = ACTIONS(2867), - [anon_sym___attribute__] = ACTIONS(2867), - [anon_sym___attribute] = ACTIONS(2867), - [anon_sym_using] = ACTIONS(2867), - [anon_sym_COLON_COLON] = ACTIONS(2869), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), - [anon_sym___declspec] = ACTIONS(2867), - [anon_sym___based] = ACTIONS(2867), - [anon_sym_signed] = ACTIONS(2867), - [anon_sym_unsigned] = ACTIONS(2867), - [anon_sym_long] = ACTIONS(2867), - [anon_sym_short] = ACTIONS(2867), - [anon_sym_LBRACK] = ACTIONS(2867), - [anon_sym_static] = ACTIONS(2867), - [anon_sym_register] = ACTIONS(2867), - [anon_sym_inline] = ACTIONS(2867), - [anon_sym___inline] = ACTIONS(2867), - [anon_sym___inline__] = ACTIONS(2867), - [anon_sym___forceinline] = ACTIONS(2867), - [anon_sym_thread_local] = ACTIONS(2867), - [anon_sym___thread] = ACTIONS(2867), - [anon_sym_const] = ACTIONS(2867), - [anon_sym_constexpr] = ACTIONS(2867), - [anon_sym_volatile] = ACTIONS(2867), - [anon_sym_restrict] = ACTIONS(2867), - [anon_sym___restrict__] = ACTIONS(2867), - [anon_sym__Atomic] = ACTIONS(2867), - [anon_sym__Noreturn] = ACTIONS(2867), - [anon_sym_noreturn] = ACTIONS(2867), - [anon_sym__Nonnull] = ACTIONS(2867), - [anon_sym_mutable] = ACTIONS(2867), - [anon_sym_constinit] = ACTIONS(2867), - [anon_sym_consteval] = ACTIONS(2867), - [anon_sym_alignas] = ACTIONS(2867), - [anon_sym__Alignas] = ACTIONS(2867), - [sym_primitive_type] = ACTIONS(2867), - [anon_sym_enum] = ACTIONS(2867), - [anon_sym_class] = ACTIONS(2867), - [anon_sym_struct] = ACTIONS(2867), - [anon_sym_union] = ACTIONS(2867), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2867), - [anon_sym_decltype] = ACTIONS(2867), - [anon_sym_explicit] = ACTIONS(2867), - [anon_sym_typename] = ACTIONS(2867), - [anon_sym_private] = ACTIONS(2867), - [anon_sym_template] = ACTIONS(2867), - [anon_sym_operator] = ACTIONS(2867), - [anon_sym_friend] = ACTIONS(2867), - [anon_sym_public] = ACTIONS(2867), - [anon_sym_protected] = ACTIONS(2867), - [anon_sym_static_assert] = ACTIONS(2867), - }, - [2103] = { - [sym_identifier] = ACTIONS(2883), - [aux_sym_preproc_def_token1] = ACTIONS(2883), - [aux_sym_preproc_if_token1] = ACTIONS(2883), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2883), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2883), - [sym_preproc_directive] = ACTIONS(2883), - [anon_sym_LPAREN2] = ACTIONS(2885), - [anon_sym_TILDE] = ACTIONS(2885), - [anon_sym_STAR] = ACTIONS(2885), - [anon_sym_AMP_AMP] = ACTIONS(2885), - [anon_sym_AMP] = ACTIONS(2883), - [anon_sym_SEMI] = ACTIONS(2885), - [anon_sym___extension__] = ACTIONS(2883), - [anon_sym_typedef] = ACTIONS(2883), - [anon_sym_virtual] = ACTIONS(2883), - [anon_sym_extern] = ACTIONS(2883), - [anon_sym___attribute__] = ACTIONS(2883), - [anon_sym___attribute] = ACTIONS(2883), - [anon_sym_using] = ACTIONS(2883), - [anon_sym_COLON_COLON] = ACTIONS(2885), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2885), - [anon_sym___declspec] = ACTIONS(2883), - [anon_sym___based] = ACTIONS(2883), - [anon_sym_RBRACE] = ACTIONS(2885), - [anon_sym_signed] = ACTIONS(2883), - [anon_sym_unsigned] = ACTIONS(2883), - [anon_sym_long] = ACTIONS(2883), - [anon_sym_short] = ACTIONS(2883), - [anon_sym_LBRACK] = ACTIONS(2883), - [anon_sym_static] = ACTIONS(2883), - [anon_sym_register] = ACTIONS(2883), - [anon_sym_inline] = ACTIONS(2883), - [anon_sym___inline] = ACTIONS(2883), - [anon_sym___inline__] = ACTIONS(2883), - [anon_sym___forceinline] = ACTIONS(2883), - [anon_sym_thread_local] = ACTIONS(2883), - [anon_sym___thread] = ACTIONS(2883), - [anon_sym_const] = ACTIONS(2883), - [anon_sym_constexpr] = ACTIONS(2883), - [anon_sym_volatile] = ACTIONS(2883), - [anon_sym_restrict] = ACTIONS(2883), - [anon_sym___restrict__] = ACTIONS(2883), - [anon_sym__Atomic] = ACTIONS(2883), - [anon_sym__Noreturn] = ACTIONS(2883), - [anon_sym_noreturn] = ACTIONS(2883), - [anon_sym__Nonnull] = ACTIONS(2883), - [anon_sym_mutable] = ACTIONS(2883), - [anon_sym_constinit] = ACTIONS(2883), - [anon_sym_consteval] = ACTIONS(2883), - [anon_sym_alignas] = ACTIONS(2883), - [anon_sym__Alignas] = ACTIONS(2883), - [sym_primitive_type] = ACTIONS(2883), - [anon_sym_enum] = ACTIONS(2883), - [anon_sym_class] = ACTIONS(2883), - [anon_sym_struct] = ACTIONS(2883), - [anon_sym_union] = ACTIONS(2883), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2883), - [anon_sym_decltype] = ACTIONS(2883), - [anon_sym_explicit] = ACTIONS(2883), - [anon_sym_typename] = ACTIONS(2883), - [anon_sym_private] = ACTIONS(2883), - [anon_sym_template] = ACTIONS(2883), - [anon_sym_operator] = ACTIONS(2883), - [anon_sym_friend] = ACTIONS(2883), - [anon_sym_public] = ACTIONS(2883), - [anon_sym_protected] = ACTIONS(2883), - [anon_sym_static_assert] = ACTIONS(2883), - }, - [2104] = { - [sym_identifier] = ACTIONS(5601), - [aux_sym_preproc_def_token1] = ACTIONS(5601), - [aux_sym_preproc_if_token1] = ACTIONS(5601), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5601), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5601), - [sym_preproc_directive] = ACTIONS(5601), - [anon_sym_LPAREN2] = ACTIONS(5603), - [anon_sym_TILDE] = ACTIONS(5603), - [anon_sym_STAR] = ACTIONS(5603), - [anon_sym_AMP_AMP] = ACTIONS(5603), - [anon_sym_AMP] = ACTIONS(5601), - [anon_sym_SEMI] = ACTIONS(5603), - [anon_sym___extension__] = ACTIONS(5601), - [anon_sym_typedef] = ACTIONS(5601), - [anon_sym_virtual] = ACTIONS(5601), - [anon_sym_extern] = ACTIONS(5601), - [anon_sym___attribute__] = ACTIONS(5601), - [anon_sym___attribute] = ACTIONS(5601), - [anon_sym_using] = ACTIONS(5601), - [anon_sym_COLON_COLON] = ACTIONS(5603), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5603), - [anon_sym___declspec] = ACTIONS(5601), - [anon_sym___based] = ACTIONS(5601), - [anon_sym_RBRACE] = ACTIONS(5603), - [anon_sym_signed] = ACTIONS(5601), - [anon_sym_unsigned] = ACTIONS(5601), - [anon_sym_long] = ACTIONS(5601), - [anon_sym_short] = ACTIONS(5601), - [anon_sym_LBRACK] = ACTIONS(5601), - [anon_sym_static] = ACTIONS(5601), - [anon_sym_register] = ACTIONS(5601), - [anon_sym_inline] = ACTIONS(5601), - [anon_sym___inline] = ACTIONS(5601), - [anon_sym___inline__] = ACTIONS(5601), - [anon_sym___forceinline] = ACTIONS(5601), - [anon_sym_thread_local] = ACTIONS(5601), - [anon_sym___thread] = ACTIONS(5601), - [anon_sym_const] = ACTIONS(5601), - [anon_sym_constexpr] = ACTIONS(5601), - [anon_sym_volatile] = ACTIONS(5601), - [anon_sym_restrict] = ACTIONS(5601), - [anon_sym___restrict__] = ACTIONS(5601), - [anon_sym__Atomic] = ACTIONS(5601), - [anon_sym__Noreturn] = ACTIONS(5601), - [anon_sym_noreturn] = ACTIONS(5601), - [anon_sym__Nonnull] = ACTIONS(5601), - [anon_sym_mutable] = ACTIONS(5601), - [anon_sym_constinit] = ACTIONS(5601), - [anon_sym_consteval] = ACTIONS(5601), - [anon_sym_alignas] = ACTIONS(5601), - [anon_sym__Alignas] = ACTIONS(5601), - [sym_primitive_type] = ACTIONS(5601), - [anon_sym_enum] = ACTIONS(5601), - [anon_sym_class] = ACTIONS(5601), - [anon_sym_struct] = ACTIONS(5601), - [anon_sym_union] = ACTIONS(5601), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5601), - [anon_sym_decltype] = ACTIONS(5601), - [anon_sym_explicit] = ACTIONS(5601), - [anon_sym_typename] = ACTIONS(5601), - [anon_sym_private] = ACTIONS(5601), - [anon_sym_template] = ACTIONS(5601), - [anon_sym_operator] = ACTIONS(5601), - [anon_sym_friend] = ACTIONS(5601), - [anon_sym_public] = ACTIONS(5601), - [anon_sym_protected] = ACTIONS(5601), - [anon_sym_static_assert] = ACTIONS(5601), - }, - [2105] = { - [sym_identifier] = ACTIONS(3067), - [aux_sym_preproc_def_token1] = ACTIONS(3067), - [aux_sym_preproc_if_token1] = ACTIONS(3067), - [aux_sym_preproc_if_token2] = ACTIONS(3067), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3067), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3067), - [sym_preproc_directive] = ACTIONS(3067), - [anon_sym_LPAREN2] = ACTIONS(3069), - [anon_sym_TILDE] = ACTIONS(3069), - [anon_sym_STAR] = ACTIONS(3069), - [anon_sym_AMP_AMP] = ACTIONS(3069), - [anon_sym_AMP] = ACTIONS(3067), - [anon_sym_SEMI] = ACTIONS(3069), - [anon_sym___extension__] = ACTIONS(3067), - [anon_sym_typedef] = ACTIONS(3067), - [anon_sym_virtual] = ACTIONS(3067), - [anon_sym_extern] = ACTIONS(3067), - [anon_sym___attribute__] = ACTIONS(3067), - [anon_sym___attribute] = ACTIONS(3067), - [anon_sym_using] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(3069), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3069), - [anon_sym___declspec] = ACTIONS(3067), - [anon_sym___based] = ACTIONS(3067), - [anon_sym_signed] = ACTIONS(3067), - [anon_sym_unsigned] = ACTIONS(3067), - [anon_sym_long] = ACTIONS(3067), - [anon_sym_short] = ACTIONS(3067), - [anon_sym_LBRACK] = ACTIONS(3067), - [anon_sym_static] = ACTIONS(3067), - [anon_sym_register] = ACTIONS(3067), - [anon_sym_inline] = ACTIONS(3067), - [anon_sym___inline] = ACTIONS(3067), - [anon_sym___inline__] = ACTIONS(3067), - [anon_sym___forceinline] = ACTIONS(3067), - [anon_sym_thread_local] = ACTIONS(3067), - [anon_sym___thread] = ACTIONS(3067), - [anon_sym_const] = ACTIONS(3067), - [anon_sym_constexpr] = ACTIONS(3067), - [anon_sym_volatile] = ACTIONS(3067), - [anon_sym_restrict] = ACTIONS(3067), - [anon_sym___restrict__] = ACTIONS(3067), - [anon_sym__Atomic] = ACTIONS(3067), - [anon_sym__Noreturn] = ACTIONS(3067), - [anon_sym_noreturn] = ACTIONS(3067), - [anon_sym__Nonnull] = ACTIONS(3067), - [anon_sym_mutable] = ACTIONS(3067), - [anon_sym_constinit] = ACTIONS(3067), - [anon_sym_consteval] = ACTIONS(3067), - [anon_sym_alignas] = ACTIONS(3067), - [anon_sym__Alignas] = ACTIONS(3067), - [sym_primitive_type] = ACTIONS(3067), - [anon_sym_enum] = ACTIONS(3067), - [anon_sym_class] = ACTIONS(3067), - [anon_sym_struct] = ACTIONS(3067), - [anon_sym_union] = ACTIONS(3067), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3067), - [anon_sym_decltype] = ACTIONS(3067), - [anon_sym_explicit] = ACTIONS(3067), - [anon_sym_typename] = ACTIONS(3067), - [anon_sym_private] = ACTIONS(3067), - [anon_sym_template] = ACTIONS(3067), - [anon_sym_operator] = ACTIONS(3067), - [anon_sym_friend] = ACTIONS(3067), - [anon_sym_public] = ACTIONS(3067), - [anon_sym_protected] = ACTIONS(3067), - [anon_sym_static_assert] = ACTIONS(3067), - }, - [2106] = { - [sym_string_literal] = STATE(2624), - [sym_template_argument_list] = STATE(3588), - [sym_raw_string_literal] = STATE(2624), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4146), - [anon_sym_COMMA] = ACTIONS(4146), - [anon_sym_RPAREN] = ACTIONS(4146), - [anon_sym_LPAREN2] = ACTIONS(4146), - [anon_sym_DASH] = ACTIONS(4154), - [anon_sym_PLUS] = ACTIONS(4154), - [anon_sym_STAR] = ACTIONS(4154), - [anon_sym_SLASH] = ACTIONS(4154), - [anon_sym_PERCENT] = ACTIONS(4154), - [anon_sym_PIPE_PIPE] = ACTIONS(4146), - [anon_sym_AMP_AMP] = ACTIONS(4146), - [anon_sym_PIPE] = ACTIONS(4154), - [anon_sym_CARET] = ACTIONS(4154), - [anon_sym_AMP] = ACTIONS(4154), - [anon_sym_EQ_EQ] = ACTIONS(4146), - [anon_sym_BANG_EQ] = ACTIONS(4146), - [anon_sym_GT] = ACTIONS(4154), - [anon_sym_GT_EQ] = ACTIONS(4146), - [anon_sym_LT_EQ] = ACTIONS(4154), - [anon_sym_LT] = ACTIONS(5077), - [anon_sym_LT_LT] = ACTIONS(4154), - [anon_sym_GT_GT] = ACTIONS(4154), - [anon_sym_SEMI] = ACTIONS(4146), - [anon_sym_COLON_COLON] = ACTIONS(4167), - [anon_sym_LBRACE] = ACTIONS(4172), - [anon_sym_RBRACE] = ACTIONS(4146), - [anon_sym_LBRACK] = ACTIONS(4146), - [anon_sym_EQ] = ACTIONS(4180), - [anon_sym_QMARK] = ACTIONS(4146), - [anon_sym_STAR_EQ] = ACTIONS(4182), - [anon_sym_SLASH_EQ] = ACTIONS(4182), - [anon_sym_PERCENT_EQ] = ACTIONS(4182), - [anon_sym_PLUS_EQ] = ACTIONS(4182), - [anon_sym_DASH_EQ] = ACTIONS(4182), - [anon_sym_LT_LT_EQ] = ACTIONS(4182), - [anon_sym_GT_GT_EQ] = ACTIONS(4182), - [anon_sym_AMP_EQ] = ACTIONS(4182), - [anon_sym_CARET_EQ] = ACTIONS(4182), - [anon_sym_PIPE_EQ] = ACTIONS(4182), - [anon_sym_and_eq] = ACTIONS(4182), - [anon_sym_or_eq] = ACTIONS(4182), - [anon_sym_xor_eq] = ACTIONS(4182), - [anon_sym_LT_EQ_GT] = ACTIONS(4146), - [anon_sym_or] = ACTIONS(4154), - [anon_sym_and] = ACTIONS(4154), - [anon_sym_bitor] = ACTIONS(4146), - [anon_sym_xor] = ACTIONS(4154), - [anon_sym_bitand] = ACTIONS(4146), - [anon_sym_not_eq] = ACTIONS(4146), - [anon_sym_DASH_DASH] = ACTIONS(4146), - [anon_sym_PLUS_PLUS] = ACTIONS(4146), - [anon_sym_DOT] = ACTIONS(4154), - [anon_sym_DOT_STAR] = ACTIONS(4146), - [anon_sym_DASH_GT] = ACTIONS(4146), - [anon_sym_L_DQUOTE] = ACTIONS(3623), - [anon_sym_u_DQUOTE] = ACTIONS(3623), - [anon_sym_U_DQUOTE] = ACTIONS(3623), - [anon_sym_u8_DQUOTE] = ACTIONS(3623), - [anon_sym_DQUOTE] = ACTIONS(3623), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(3627), - [anon_sym_LR_DQUOTE] = ACTIONS(3627), - [anon_sym_uR_DQUOTE] = ACTIONS(3627), - [anon_sym_UR_DQUOTE] = ACTIONS(3627), - [anon_sym_u8R_DQUOTE] = ACTIONS(3627), - }, - [2107] = { - [sym_attribute_specifier] = STATE(1852), - [sym_field_declaration_list] = STATE(2352), - [sym_virtual_specifier] = STATE(6930), - [sym_base_class_clause] = STATE(7902), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5495), - [anon_sym_COMMA] = ACTIONS(5495), - [anon_sym_RPAREN] = ACTIONS(5495), - [anon_sym_LPAREN2] = ACTIONS(5495), - [anon_sym_DASH] = ACTIONS(5493), - [anon_sym_PLUS] = ACTIONS(5493), - [anon_sym_STAR] = ACTIONS(5495), - [anon_sym_SLASH] = ACTIONS(5493), - [anon_sym_PERCENT] = ACTIONS(5495), - [anon_sym_PIPE_PIPE] = ACTIONS(5495), - [anon_sym_AMP_AMP] = ACTIONS(5495), - [anon_sym_PIPE] = ACTIONS(5493), - [anon_sym_CARET] = ACTIONS(5495), - [anon_sym_AMP] = ACTIONS(5493), - [anon_sym_EQ_EQ] = ACTIONS(5495), - [anon_sym_BANG_EQ] = ACTIONS(5495), - [anon_sym_GT] = ACTIONS(5493), - [anon_sym_GT_EQ] = ACTIONS(5495), - [anon_sym_LT_EQ] = ACTIONS(5493), - [anon_sym_LT] = ACTIONS(5493), - [anon_sym_LT_LT] = ACTIONS(5495), - [anon_sym_GT_GT] = ACTIONS(5495), - [anon_sym_SEMI] = ACTIONS(5495), - [anon_sym___extension__] = ACTIONS(5495), - [anon_sym___attribute__] = ACTIONS(6014), - [anon_sym___attribute] = ACTIONS(6016), - [anon_sym_COLON] = ACTIONS(5499), - [anon_sym_LBRACE] = ACTIONS(6018), - [anon_sym_RBRACE] = ACTIONS(5495), - [anon_sym_LBRACK] = ACTIONS(5495), - [anon_sym_RBRACK] = ACTIONS(5495), - [anon_sym_const] = ACTIONS(5493), - [anon_sym_constexpr] = ACTIONS(5495), - [anon_sym_volatile] = ACTIONS(5495), - [anon_sym_restrict] = ACTIONS(5495), - [anon_sym___restrict__] = ACTIONS(5495), - [anon_sym__Atomic] = ACTIONS(5495), - [anon_sym__Noreturn] = ACTIONS(5495), - [anon_sym_noreturn] = ACTIONS(5495), - [anon_sym__Nonnull] = ACTIONS(5495), - [anon_sym_mutable] = ACTIONS(5495), - [anon_sym_constinit] = ACTIONS(5495), - [anon_sym_consteval] = ACTIONS(5495), - [anon_sym_alignas] = ACTIONS(5495), - [anon_sym__Alignas] = ACTIONS(5495), - [anon_sym_QMARK] = ACTIONS(5495), - [anon_sym_LT_EQ_GT] = ACTIONS(5495), - [anon_sym_or] = ACTIONS(5495), - [anon_sym_and] = ACTIONS(5495), - [anon_sym_bitor] = ACTIONS(5495), - [anon_sym_xor] = ACTIONS(5495), - [anon_sym_bitand] = ACTIONS(5495), - [anon_sym_not_eq] = ACTIONS(5495), - [anon_sym_DASH_DASH] = ACTIONS(5495), - [anon_sym_PLUS_PLUS] = ACTIONS(5495), - [anon_sym_DOT] = ACTIONS(5493), - [anon_sym_DOT_STAR] = ACTIONS(5495), - [anon_sym_DASH_GT] = ACTIONS(5495), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5495), - [anon_sym_decltype] = ACTIONS(5495), - [anon_sym_final] = ACTIONS(6020), - [anon_sym_override] = ACTIONS(6020), - [anon_sym_requires] = ACTIONS(5495), - }, - [2108] = { - [sym_identifier] = ACTIONS(3071), - [aux_sym_preproc_def_token1] = ACTIONS(3071), - [aux_sym_preproc_if_token1] = ACTIONS(3071), - [aux_sym_preproc_if_token2] = ACTIONS(3071), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3071), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3071), - [sym_preproc_directive] = ACTIONS(3071), - [anon_sym_LPAREN2] = ACTIONS(3073), - [anon_sym_TILDE] = ACTIONS(3073), - [anon_sym_STAR] = ACTIONS(3073), - [anon_sym_AMP_AMP] = ACTIONS(3073), - [anon_sym_AMP] = ACTIONS(3071), - [anon_sym_SEMI] = ACTIONS(3073), - [anon_sym___extension__] = ACTIONS(3071), - [anon_sym_typedef] = ACTIONS(3071), - [anon_sym_virtual] = ACTIONS(3071), - [anon_sym_extern] = ACTIONS(3071), - [anon_sym___attribute__] = ACTIONS(3071), - [anon_sym___attribute] = ACTIONS(3071), - [anon_sym_using] = ACTIONS(3071), - [anon_sym_COLON_COLON] = ACTIONS(3073), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3073), - [anon_sym___declspec] = ACTIONS(3071), - [anon_sym___based] = ACTIONS(3071), - [anon_sym_signed] = ACTIONS(3071), - [anon_sym_unsigned] = ACTIONS(3071), - [anon_sym_long] = ACTIONS(3071), - [anon_sym_short] = ACTIONS(3071), - [anon_sym_LBRACK] = ACTIONS(3071), - [anon_sym_static] = ACTIONS(3071), - [anon_sym_register] = ACTIONS(3071), - [anon_sym_inline] = ACTIONS(3071), - [anon_sym___inline] = ACTIONS(3071), - [anon_sym___inline__] = ACTIONS(3071), - [anon_sym___forceinline] = ACTIONS(3071), - [anon_sym_thread_local] = ACTIONS(3071), - [anon_sym___thread] = ACTIONS(3071), - [anon_sym_const] = ACTIONS(3071), - [anon_sym_constexpr] = ACTIONS(3071), - [anon_sym_volatile] = ACTIONS(3071), - [anon_sym_restrict] = ACTIONS(3071), - [anon_sym___restrict__] = ACTIONS(3071), - [anon_sym__Atomic] = ACTIONS(3071), - [anon_sym__Noreturn] = ACTIONS(3071), - [anon_sym_noreturn] = ACTIONS(3071), - [anon_sym__Nonnull] = ACTIONS(3071), - [anon_sym_mutable] = ACTIONS(3071), - [anon_sym_constinit] = ACTIONS(3071), - [anon_sym_consteval] = ACTIONS(3071), - [anon_sym_alignas] = ACTIONS(3071), - [anon_sym__Alignas] = ACTIONS(3071), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(3071), - [anon_sym_class] = ACTIONS(3071), - [anon_sym_struct] = ACTIONS(3071), - [anon_sym_union] = ACTIONS(3071), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3071), - [anon_sym_decltype] = ACTIONS(3071), - [anon_sym_explicit] = ACTIONS(3071), - [anon_sym_typename] = ACTIONS(3071), - [anon_sym_private] = ACTIONS(3071), - [anon_sym_template] = ACTIONS(3071), - [anon_sym_operator] = ACTIONS(3071), - [anon_sym_friend] = ACTIONS(3071), - [anon_sym_public] = ACTIONS(3071), - [anon_sym_protected] = ACTIONS(3071), - [anon_sym_static_assert] = ACTIONS(3071), - }, - [2109] = { - [sym_identifier] = ACTIONS(5513), - [aux_sym_preproc_def_token1] = ACTIONS(5513), - [aux_sym_preproc_if_token1] = ACTIONS(5513), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5513), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5513), - [sym_preproc_directive] = ACTIONS(5513), - [anon_sym_LPAREN2] = ACTIONS(5515), - [anon_sym_TILDE] = ACTIONS(5515), - [anon_sym_STAR] = ACTIONS(5515), - [anon_sym_AMP_AMP] = ACTIONS(5515), - [anon_sym_AMP] = ACTIONS(5513), - [anon_sym_SEMI] = ACTIONS(5515), - [anon_sym___extension__] = ACTIONS(5513), - [anon_sym_typedef] = ACTIONS(5513), - [anon_sym_virtual] = ACTIONS(5513), - [anon_sym_extern] = ACTIONS(5513), - [anon_sym___attribute__] = ACTIONS(5513), - [anon_sym___attribute] = ACTIONS(5513), - [anon_sym_using] = ACTIONS(5513), - [anon_sym_COLON_COLON] = ACTIONS(5515), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5515), - [anon_sym___declspec] = ACTIONS(5513), - [anon_sym___based] = ACTIONS(5513), - [anon_sym_RBRACE] = ACTIONS(5515), - [anon_sym_signed] = ACTIONS(5513), - [anon_sym_unsigned] = ACTIONS(5513), - [anon_sym_long] = ACTIONS(5513), - [anon_sym_short] = ACTIONS(5513), - [anon_sym_LBRACK] = ACTIONS(5513), - [anon_sym_static] = ACTIONS(5513), - [anon_sym_register] = ACTIONS(5513), - [anon_sym_inline] = ACTIONS(5513), - [anon_sym___inline] = ACTIONS(5513), - [anon_sym___inline__] = ACTIONS(5513), - [anon_sym___forceinline] = ACTIONS(5513), - [anon_sym_thread_local] = ACTIONS(5513), - [anon_sym___thread] = ACTIONS(5513), - [anon_sym_const] = ACTIONS(5513), - [anon_sym_constexpr] = ACTIONS(5513), - [anon_sym_volatile] = ACTIONS(5513), - [anon_sym_restrict] = ACTIONS(5513), - [anon_sym___restrict__] = ACTIONS(5513), - [anon_sym__Atomic] = ACTIONS(5513), - [anon_sym__Noreturn] = ACTIONS(5513), - [anon_sym_noreturn] = ACTIONS(5513), - [anon_sym__Nonnull] = ACTIONS(5513), - [anon_sym_mutable] = ACTIONS(5513), - [anon_sym_constinit] = ACTIONS(5513), - [anon_sym_consteval] = ACTIONS(5513), - [anon_sym_alignas] = ACTIONS(5513), - [anon_sym__Alignas] = ACTIONS(5513), - [sym_primitive_type] = ACTIONS(5513), - [anon_sym_enum] = ACTIONS(5513), - [anon_sym_class] = ACTIONS(5513), - [anon_sym_struct] = ACTIONS(5513), - [anon_sym_union] = ACTIONS(5513), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5513), - [anon_sym_decltype] = ACTIONS(5513), - [anon_sym_explicit] = ACTIONS(5513), - [anon_sym_typename] = ACTIONS(5513), - [anon_sym_private] = ACTIONS(5513), - [anon_sym_template] = ACTIONS(5513), - [anon_sym_operator] = ACTIONS(5513), - [anon_sym_friend] = ACTIONS(5513), - [anon_sym_public] = ACTIONS(5513), - [anon_sym_protected] = ACTIONS(5513), - [anon_sym_static_assert] = ACTIONS(5513), - }, - [2110] = { - [sym_identifier] = ACTIONS(5597), - [aux_sym_preproc_def_token1] = ACTIONS(5597), - [aux_sym_preproc_if_token1] = ACTIONS(5597), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5597), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5597), - [sym_preproc_directive] = ACTIONS(5597), - [anon_sym_LPAREN2] = ACTIONS(5599), - [anon_sym_TILDE] = ACTIONS(5599), - [anon_sym_STAR] = ACTIONS(5599), - [anon_sym_AMP_AMP] = ACTIONS(5599), - [anon_sym_AMP] = ACTIONS(5597), - [anon_sym_SEMI] = ACTIONS(5599), - [anon_sym___extension__] = ACTIONS(5597), - [anon_sym_typedef] = ACTIONS(5597), - [anon_sym_virtual] = ACTIONS(5597), - [anon_sym_extern] = ACTIONS(5597), - [anon_sym___attribute__] = ACTIONS(5597), - [anon_sym___attribute] = ACTIONS(5597), - [anon_sym_using] = ACTIONS(5597), - [anon_sym_COLON_COLON] = ACTIONS(5599), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5599), - [anon_sym___declspec] = ACTIONS(5597), - [anon_sym___based] = ACTIONS(5597), - [anon_sym_RBRACE] = ACTIONS(5599), - [anon_sym_signed] = ACTIONS(5597), - [anon_sym_unsigned] = ACTIONS(5597), - [anon_sym_long] = ACTIONS(5597), - [anon_sym_short] = ACTIONS(5597), - [anon_sym_LBRACK] = ACTIONS(5597), - [anon_sym_static] = ACTIONS(5597), - [anon_sym_register] = ACTIONS(5597), - [anon_sym_inline] = ACTIONS(5597), - [anon_sym___inline] = ACTIONS(5597), - [anon_sym___inline__] = ACTIONS(5597), - [anon_sym___forceinline] = ACTIONS(5597), - [anon_sym_thread_local] = ACTIONS(5597), - [anon_sym___thread] = ACTIONS(5597), - [anon_sym_const] = ACTIONS(5597), - [anon_sym_constexpr] = ACTIONS(5597), - [anon_sym_volatile] = ACTIONS(5597), - [anon_sym_restrict] = ACTIONS(5597), - [anon_sym___restrict__] = ACTIONS(5597), - [anon_sym__Atomic] = ACTIONS(5597), - [anon_sym__Noreturn] = ACTIONS(5597), - [anon_sym_noreturn] = ACTIONS(5597), - [anon_sym__Nonnull] = ACTIONS(5597), - [anon_sym_mutable] = ACTIONS(5597), - [anon_sym_constinit] = ACTIONS(5597), - [anon_sym_consteval] = ACTIONS(5597), - [anon_sym_alignas] = ACTIONS(5597), - [anon_sym__Alignas] = ACTIONS(5597), - [sym_primitive_type] = ACTIONS(5597), - [anon_sym_enum] = ACTIONS(5597), - [anon_sym_class] = ACTIONS(5597), - [anon_sym_struct] = ACTIONS(5597), - [anon_sym_union] = ACTIONS(5597), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5597), - [anon_sym_decltype] = ACTIONS(5597), - [anon_sym_explicit] = ACTIONS(5597), - [anon_sym_typename] = ACTIONS(5597), - [anon_sym_private] = ACTIONS(5597), - [anon_sym_template] = ACTIONS(5597), - [anon_sym_operator] = ACTIONS(5597), - [anon_sym_friend] = ACTIONS(5597), - [anon_sym_public] = ACTIONS(5597), - [anon_sym_protected] = ACTIONS(5597), - [anon_sym_static_assert] = ACTIONS(5597), - }, - [2111] = { - [sym_identifier] = ACTIONS(3309), - [aux_sym_preproc_def_token1] = ACTIONS(3309), - [aux_sym_preproc_if_token1] = ACTIONS(3309), - [aux_sym_preproc_if_token2] = ACTIONS(3309), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3309), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3309), - [sym_preproc_directive] = ACTIONS(3309), - [anon_sym_LPAREN2] = ACTIONS(3311), - [anon_sym_TILDE] = ACTIONS(3311), - [anon_sym_STAR] = ACTIONS(3311), - [anon_sym_AMP_AMP] = ACTIONS(3311), - [anon_sym_AMP] = ACTIONS(3309), - [anon_sym_SEMI] = ACTIONS(3311), - [anon_sym___extension__] = ACTIONS(3309), - [anon_sym_typedef] = ACTIONS(3309), - [anon_sym_virtual] = ACTIONS(3309), - [anon_sym_extern] = ACTIONS(3309), - [anon_sym___attribute__] = ACTIONS(3309), - [anon_sym___attribute] = ACTIONS(3309), - [anon_sym_using] = ACTIONS(3309), - [anon_sym_COLON_COLON] = ACTIONS(3311), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3311), - [anon_sym___declspec] = ACTIONS(3309), - [anon_sym___based] = ACTIONS(3309), - [anon_sym_signed] = ACTIONS(3309), - [anon_sym_unsigned] = ACTIONS(3309), - [anon_sym_long] = ACTIONS(3309), - [anon_sym_short] = ACTIONS(3309), - [anon_sym_LBRACK] = ACTIONS(3309), - [anon_sym_static] = ACTIONS(3309), - [anon_sym_register] = ACTIONS(3309), - [anon_sym_inline] = ACTIONS(3309), - [anon_sym___inline] = ACTIONS(3309), - [anon_sym___inline__] = ACTIONS(3309), - [anon_sym___forceinline] = ACTIONS(3309), - [anon_sym_thread_local] = ACTIONS(3309), - [anon_sym___thread] = ACTIONS(3309), - [anon_sym_const] = ACTIONS(3309), - [anon_sym_constexpr] = ACTIONS(3309), - [anon_sym_volatile] = ACTIONS(3309), - [anon_sym_restrict] = ACTIONS(3309), - [anon_sym___restrict__] = ACTIONS(3309), - [anon_sym__Atomic] = ACTIONS(3309), - [anon_sym__Noreturn] = ACTIONS(3309), - [anon_sym_noreturn] = ACTIONS(3309), - [anon_sym__Nonnull] = ACTIONS(3309), - [anon_sym_mutable] = ACTIONS(3309), - [anon_sym_constinit] = ACTIONS(3309), - [anon_sym_consteval] = ACTIONS(3309), - [anon_sym_alignas] = ACTIONS(3309), - [anon_sym__Alignas] = ACTIONS(3309), - [sym_primitive_type] = ACTIONS(3309), - [anon_sym_enum] = ACTIONS(3309), - [anon_sym_class] = ACTIONS(3309), - [anon_sym_struct] = ACTIONS(3309), - [anon_sym_union] = ACTIONS(3309), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3309), - [anon_sym_decltype] = ACTIONS(3309), - [anon_sym_explicit] = ACTIONS(3309), - [anon_sym_typename] = ACTIONS(3309), - [anon_sym_private] = ACTIONS(3309), - [anon_sym_template] = ACTIONS(3309), - [anon_sym_operator] = ACTIONS(3309), - [anon_sym_friend] = ACTIONS(3309), - [anon_sym_public] = ACTIONS(3309), - [anon_sym_protected] = ACTIONS(3309), - [anon_sym_static_assert] = ACTIONS(3309), - }, - [2112] = { - [sym_string_literal] = STATE(2624), - [sym_template_argument_list] = STATE(3588), - [sym_raw_string_literal] = STATE(2624), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4146), - [anon_sym_COMMA] = ACTIONS(4146), - [anon_sym_LPAREN2] = ACTIONS(4146), - [anon_sym_DASH] = ACTIONS(4154), - [anon_sym_PLUS] = ACTIONS(4154), - [anon_sym_STAR] = ACTIONS(4154), - [anon_sym_SLASH] = ACTIONS(4154), - [anon_sym_PERCENT] = ACTIONS(4154), - [anon_sym_PIPE_PIPE] = ACTIONS(4146), - [anon_sym_AMP_AMP] = ACTIONS(4146), - [anon_sym_PIPE] = ACTIONS(4154), - [anon_sym_CARET] = ACTIONS(4154), - [anon_sym_AMP] = ACTIONS(4154), - [anon_sym_EQ_EQ] = ACTIONS(4146), - [anon_sym_BANG_EQ] = ACTIONS(4146), - [anon_sym_GT] = ACTIONS(4154), - [anon_sym_GT_EQ] = ACTIONS(4146), - [anon_sym_LT_EQ] = ACTIONS(4154), - [anon_sym_LT] = ACTIONS(5077), - [anon_sym_LT_LT] = ACTIONS(4154), - [anon_sym_GT_GT] = ACTIONS(4154), - [anon_sym_SEMI] = ACTIONS(4146), - [anon_sym_COLON] = ACTIONS(6022), - [anon_sym_COLON_COLON] = ACTIONS(4167), - [anon_sym_LBRACE] = ACTIONS(4172), - [anon_sym_RBRACE] = ACTIONS(4146), - [anon_sym_LBRACK] = ACTIONS(4146), - [anon_sym_EQ] = ACTIONS(4180), - [anon_sym_QMARK] = ACTIONS(4146), - [anon_sym_STAR_EQ] = ACTIONS(4182), - [anon_sym_SLASH_EQ] = ACTIONS(4182), - [anon_sym_PERCENT_EQ] = ACTIONS(4182), - [anon_sym_PLUS_EQ] = ACTIONS(4182), - [anon_sym_DASH_EQ] = ACTIONS(4182), - [anon_sym_LT_LT_EQ] = ACTIONS(4182), - [anon_sym_GT_GT_EQ] = ACTIONS(4182), - [anon_sym_AMP_EQ] = ACTIONS(4182), - [anon_sym_CARET_EQ] = ACTIONS(4182), - [anon_sym_PIPE_EQ] = ACTIONS(4182), - [anon_sym_and_eq] = ACTIONS(4182), - [anon_sym_or_eq] = ACTIONS(4182), - [anon_sym_xor_eq] = ACTIONS(4182), - [anon_sym_LT_EQ_GT] = ACTIONS(4146), - [anon_sym_or] = ACTIONS(4154), - [anon_sym_and] = ACTIONS(4154), - [anon_sym_bitor] = ACTIONS(4146), - [anon_sym_xor] = ACTIONS(4154), - [anon_sym_bitand] = ACTIONS(4146), - [anon_sym_not_eq] = ACTIONS(4146), - [anon_sym_DASH_DASH] = ACTIONS(4146), - [anon_sym_PLUS_PLUS] = ACTIONS(4146), - [anon_sym_DOT] = ACTIONS(4154), - [anon_sym_DOT_STAR] = ACTIONS(4146), - [anon_sym_DASH_GT] = ACTIONS(4146), - [anon_sym_L_DQUOTE] = ACTIONS(3623), - [anon_sym_u_DQUOTE] = ACTIONS(3623), - [anon_sym_U_DQUOTE] = ACTIONS(3623), - [anon_sym_u8_DQUOTE] = ACTIONS(3623), - [anon_sym_DQUOTE] = ACTIONS(3623), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(3627), - [anon_sym_LR_DQUOTE] = ACTIONS(3627), - [anon_sym_uR_DQUOTE] = ACTIONS(3627), - [anon_sym_UR_DQUOTE] = ACTIONS(3627), - [anon_sym_u8R_DQUOTE] = ACTIONS(3627), - }, - [2113] = { - [sym_identifier] = ACTIONS(2883), - [aux_sym_preproc_def_token1] = ACTIONS(2883), - [aux_sym_preproc_if_token1] = ACTIONS(2883), - [aux_sym_preproc_if_token2] = ACTIONS(2883), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2883), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2883), - [sym_preproc_directive] = ACTIONS(2883), - [anon_sym_LPAREN2] = ACTIONS(2885), - [anon_sym_TILDE] = ACTIONS(2885), - [anon_sym_STAR] = ACTIONS(2885), - [anon_sym_AMP_AMP] = ACTIONS(2885), - [anon_sym_AMP] = ACTIONS(2883), - [anon_sym_SEMI] = ACTIONS(2885), - [anon_sym___extension__] = ACTIONS(2883), - [anon_sym_typedef] = ACTIONS(2883), - [anon_sym_virtual] = ACTIONS(2883), - [anon_sym_extern] = ACTIONS(2883), - [anon_sym___attribute__] = ACTIONS(2883), - [anon_sym___attribute] = ACTIONS(2883), - [anon_sym_using] = ACTIONS(2883), - [anon_sym_COLON_COLON] = ACTIONS(2885), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2885), - [anon_sym___declspec] = ACTIONS(2883), - [anon_sym___based] = ACTIONS(2883), - [anon_sym_signed] = ACTIONS(2883), - [anon_sym_unsigned] = ACTIONS(2883), - [anon_sym_long] = ACTIONS(2883), - [anon_sym_short] = ACTIONS(2883), - [anon_sym_LBRACK] = ACTIONS(2883), - [anon_sym_static] = ACTIONS(2883), - [anon_sym_register] = ACTIONS(2883), - [anon_sym_inline] = ACTIONS(2883), - [anon_sym___inline] = ACTIONS(2883), - [anon_sym___inline__] = ACTIONS(2883), - [anon_sym___forceinline] = ACTIONS(2883), - [anon_sym_thread_local] = ACTIONS(2883), - [anon_sym___thread] = ACTIONS(2883), - [anon_sym_const] = ACTIONS(2883), - [anon_sym_constexpr] = ACTIONS(2883), - [anon_sym_volatile] = ACTIONS(2883), - [anon_sym_restrict] = ACTIONS(2883), - [anon_sym___restrict__] = ACTIONS(2883), - [anon_sym__Atomic] = ACTIONS(2883), - [anon_sym__Noreturn] = ACTIONS(2883), - [anon_sym_noreturn] = ACTIONS(2883), - [anon_sym__Nonnull] = ACTIONS(2883), - [anon_sym_mutable] = ACTIONS(2883), - [anon_sym_constinit] = ACTIONS(2883), - [anon_sym_consteval] = ACTIONS(2883), - [anon_sym_alignas] = ACTIONS(2883), - [anon_sym__Alignas] = ACTIONS(2883), - [sym_primitive_type] = ACTIONS(2883), - [anon_sym_enum] = ACTIONS(2883), - [anon_sym_class] = ACTIONS(2883), - [anon_sym_struct] = ACTIONS(2883), - [anon_sym_union] = ACTIONS(2883), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2883), - [anon_sym_decltype] = ACTIONS(2883), - [anon_sym_explicit] = ACTIONS(2883), - [anon_sym_typename] = ACTIONS(2883), - [anon_sym_private] = ACTIONS(2883), - [anon_sym_template] = ACTIONS(2883), - [anon_sym_operator] = ACTIONS(2883), - [anon_sym_friend] = ACTIONS(2883), - [anon_sym_public] = ACTIONS(2883), - [anon_sym_protected] = ACTIONS(2883), - [anon_sym_static_assert] = ACTIONS(2883), - }, - [2114] = { - [sym_identifier] = ACTIONS(2955), - [aux_sym_preproc_def_token1] = ACTIONS(2955), - [aux_sym_preproc_if_token1] = ACTIONS(2955), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2955), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2955), - [sym_preproc_directive] = ACTIONS(2955), - [anon_sym_LPAREN2] = ACTIONS(2957), - [anon_sym_TILDE] = ACTIONS(2957), - [anon_sym_STAR] = ACTIONS(2957), - [anon_sym_AMP_AMP] = ACTIONS(2957), - [anon_sym_AMP] = ACTIONS(2955), - [anon_sym_SEMI] = ACTIONS(2957), - [anon_sym___extension__] = ACTIONS(2955), - [anon_sym_typedef] = ACTIONS(2955), - [anon_sym_virtual] = ACTIONS(2955), - [anon_sym_extern] = ACTIONS(2955), - [anon_sym___attribute__] = ACTIONS(2955), - [anon_sym___attribute] = ACTIONS(2955), - [anon_sym_using] = ACTIONS(2955), - [anon_sym_COLON_COLON] = ACTIONS(2957), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2957), - [anon_sym___declspec] = ACTIONS(2955), - [anon_sym___based] = ACTIONS(2955), - [anon_sym_RBRACE] = ACTIONS(2957), - [anon_sym_signed] = ACTIONS(2955), - [anon_sym_unsigned] = ACTIONS(2955), - [anon_sym_long] = ACTIONS(2955), - [anon_sym_short] = ACTIONS(2955), - [anon_sym_LBRACK] = ACTIONS(2955), - [anon_sym_static] = ACTIONS(2955), - [anon_sym_register] = ACTIONS(2955), - [anon_sym_inline] = ACTIONS(2955), - [anon_sym___inline] = ACTIONS(2955), - [anon_sym___inline__] = ACTIONS(2955), - [anon_sym___forceinline] = ACTIONS(2955), - [anon_sym_thread_local] = ACTIONS(2955), - [anon_sym___thread] = ACTIONS(2955), - [anon_sym_const] = ACTIONS(2955), - [anon_sym_constexpr] = ACTIONS(2955), - [anon_sym_volatile] = ACTIONS(2955), - [anon_sym_restrict] = ACTIONS(2955), - [anon_sym___restrict__] = ACTIONS(2955), - [anon_sym__Atomic] = ACTIONS(2955), - [anon_sym__Noreturn] = ACTIONS(2955), - [anon_sym_noreturn] = ACTIONS(2955), - [anon_sym__Nonnull] = ACTIONS(2955), - [anon_sym_mutable] = ACTIONS(2955), - [anon_sym_constinit] = ACTIONS(2955), - [anon_sym_consteval] = ACTIONS(2955), - [anon_sym_alignas] = ACTIONS(2955), - [anon_sym__Alignas] = ACTIONS(2955), - [sym_primitive_type] = ACTIONS(2955), - [anon_sym_enum] = ACTIONS(2955), - [anon_sym_class] = ACTIONS(2955), - [anon_sym_struct] = ACTIONS(2955), - [anon_sym_union] = ACTIONS(2955), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2955), - [anon_sym_decltype] = ACTIONS(2955), - [anon_sym_explicit] = ACTIONS(2955), - [anon_sym_typename] = ACTIONS(2955), - [anon_sym_private] = ACTIONS(2955), - [anon_sym_template] = ACTIONS(2955), - [anon_sym_operator] = ACTIONS(2955), - [anon_sym_friend] = ACTIONS(2955), - [anon_sym_public] = ACTIONS(2955), - [anon_sym_protected] = ACTIONS(2955), - [anon_sym_static_assert] = ACTIONS(2955), - }, - [2115] = { - [sym_string_literal] = STATE(2189), - [sym_template_argument_list] = STATE(3129), - [sym_raw_string_literal] = STATE(2189), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4146), - [anon_sym_COMMA] = ACTIONS(4146), - [anon_sym_RPAREN] = ACTIONS(5997), - [anon_sym_LPAREN2] = ACTIONS(5997), - [anon_sym_DASH] = ACTIONS(4154), - [anon_sym_PLUS] = ACTIONS(4154), - [anon_sym_STAR] = ACTIONS(4154), - [anon_sym_SLASH] = ACTIONS(4154), - [anon_sym_PERCENT] = ACTIONS(4154), - [anon_sym_PIPE_PIPE] = ACTIONS(4146), - [anon_sym_AMP_AMP] = ACTIONS(4146), - [anon_sym_PIPE] = ACTIONS(4154), - [anon_sym_CARET] = ACTIONS(4154), - [anon_sym_AMP] = ACTIONS(4154), - [anon_sym_EQ_EQ] = ACTIONS(4146), - [anon_sym_BANG_EQ] = ACTIONS(4146), - [anon_sym_GT] = ACTIONS(4154), - [anon_sym_GT_EQ] = ACTIONS(4146), - [anon_sym_LT_EQ] = ACTIONS(4154), - [anon_sym_LT] = ACTIONS(5044), - [anon_sym_LT_LT] = ACTIONS(4154), - [anon_sym_GT_GT] = ACTIONS(4154), - [anon_sym_COLON_COLON] = ACTIONS(4167), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5997), - [anon_sym_LBRACE] = ACTIONS(4172), - [anon_sym_LBRACK] = ACTIONS(5999), - [anon_sym_EQ] = ACTIONS(4154), - [anon_sym_QMARK] = ACTIONS(4146), - [anon_sym_STAR_EQ] = ACTIONS(4146), - [anon_sym_SLASH_EQ] = ACTIONS(4146), - [anon_sym_PERCENT_EQ] = ACTIONS(4146), - [anon_sym_PLUS_EQ] = ACTIONS(4146), - [anon_sym_DASH_EQ] = ACTIONS(4146), - [anon_sym_LT_LT_EQ] = ACTIONS(4146), - [anon_sym_GT_GT_EQ] = ACTIONS(4146), - [anon_sym_AMP_EQ] = ACTIONS(4146), - [anon_sym_CARET_EQ] = ACTIONS(4146), - [anon_sym_PIPE_EQ] = ACTIONS(4146), - [anon_sym_and_eq] = ACTIONS(4146), - [anon_sym_or_eq] = ACTIONS(4146), - [anon_sym_xor_eq] = ACTIONS(4146), - [anon_sym_LT_EQ_GT] = ACTIONS(4146), - [anon_sym_or] = ACTIONS(4154), - [anon_sym_and] = ACTIONS(4154), - [anon_sym_bitor] = ACTIONS(4146), - [anon_sym_xor] = ACTIONS(4154), - [anon_sym_bitand] = ACTIONS(4146), - [anon_sym_not_eq] = ACTIONS(4146), - [anon_sym_DASH_DASH] = ACTIONS(4146), - [anon_sym_PLUS_PLUS] = ACTIONS(4146), - [anon_sym_DOT] = ACTIONS(4154), - [anon_sym_DOT_STAR] = ACTIONS(4146), - [anon_sym_DASH_GT] = ACTIONS(4154), - [anon_sym_L_DQUOTE] = ACTIONS(5040), - [anon_sym_u_DQUOTE] = ACTIONS(5040), - [anon_sym_U_DQUOTE] = ACTIONS(5040), - [anon_sym_u8_DQUOTE] = ACTIONS(5040), - [anon_sym_DQUOTE] = ACTIONS(5040), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5042), - [anon_sym_LR_DQUOTE] = ACTIONS(5042), - [anon_sym_uR_DQUOTE] = ACTIONS(5042), - [anon_sym_UR_DQUOTE] = ACTIONS(5042), - [anon_sym_u8R_DQUOTE] = ACTIONS(5042), - [anon_sym_DASH_GT_STAR] = ACTIONS(4146), - }, - [2116] = { - [sym_attribute_specifier] = STATE(2207), - [sym_enumerator_list] = STATE(2173), - [sym_identifier] = ACTIONS(6024), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6026), - [anon_sym_COMMA] = ACTIONS(6026), - [anon_sym_RPAREN] = ACTIONS(6026), - [aux_sym_preproc_if_token2] = ACTIONS(6026), - [aux_sym_preproc_else_token1] = ACTIONS(6026), - [aux_sym_preproc_elif_token1] = ACTIONS(6024), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6026), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6026), - [anon_sym_LPAREN2] = ACTIONS(6026), - [anon_sym_DASH] = ACTIONS(6024), - [anon_sym_PLUS] = ACTIONS(6024), - [anon_sym_STAR] = ACTIONS(6024), - [anon_sym_SLASH] = ACTIONS(6024), - [anon_sym_PERCENT] = ACTIONS(6024), - [anon_sym_PIPE_PIPE] = ACTIONS(6026), - [anon_sym_AMP_AMP] = ACTIONS(6026), - [anon_sym_PIPE] = ACTIONS(6024), - [anon_sym_CARET] = ACTIONS(6024), - [anon_sym_AMP] = ACTIONS(6024), - [anon_sym_EQ_EQ] = ACTIONS(6026), - [anon_sym_BANG_EQ] = ACTIONS(6026), - [anon_sym_GT] = ACTIONS(6024), - [anon_sym_GT_EQ] = ACTIONS(6026), - [anon_sym_LT_EQ] = ACTIONS(6024), - [anon_sym_LT] = ACTIONS(6024), - [anon_sym_LT_LT] = ACTIONS(6024), - [anon_sym_GT_GT] = ACTIONS(6024), - [anon_sym_SEMI] = ACTIONS(6026), - [anon_sym___attribute__] = ACTIONS(5497), - [anon_sym___attribute] = ACTIONS(5497), - [anon_sym_COLON] = ACTIONS(6026), - [anon_sym_LBRACE] = ACTIONS(5987), - [anon_sym_RBRACE] = ACTIONS(6026), - [anon_sym_LBRACK] = ACTIONS(6026), - [anon_sym_RBRACK] = ACTIONS(6026), - [anon_sym_EQ] = ACTIONS(6024), - [anon_sym_QMARK] = ACTIONS(6026), - [anon_sym_STAR_EQ] = ACTIONS(6026), - [anon_sym_SLASH_EQ] = ACTIONS(6026), - [anon_sym_PERCENT_EQ] = ACTIONS(6026), - [anon_sym_PLUS_EQ] = ACTIONS(6026), - [anon_sym_DASH_EQ] = ACTIONS(6026), - [anon_sym_LT_LT_EQ] = ACTIONS(6026), - [anon_sym_GT_GT_EQ] = ACTIONS(6026), - [anon_sym_AMP_EQ] = ACTIONS(6026), - [anon_sym_CARET_EQ] = ACTIONS(6026), - [anon_sym_PIPE_EQ] = ACTIONS(6026), - [anon_sym_and_eq] = ACTIONS(6024), - [anon_sym_or_eq] = ACTIONS(6024), - [anon_sym_xor_eq] = ACTIONS(6024), - [anon_sym_LT_EQ_GT] = ACTIONS(6026), - [anon_sym_or] = ACTIONS(6024), - [anon_sym_and] = ACTIONS(6024), - [anon_sym_bitor] = ACTIONS(6024), - [anon_sym_xor] = ACTIONS(6024), - [anon_sym_bitand] = ACTIONS(6024), - [anon_sym_not_eq] = ACTIONS(6024), - [anon_sym_DASH_DASH] = ACTIONS(6026), - [anon_sym_PLUS_PLUS] = ACTIONS(6026), - [anon_sym_DOT] = ACTIONS(6024), - [anon_sym_DOT_STAR] = ACTIONS(6026), - [anon_sym_DASH_GT] = ACTIONS(6026), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6024), - [anon_sym_decltype] = ACTIONS(6024), - }, - [2117] = { - [sym_template_argument_list] = STATE(1603), - [sym_identifier] = ACTIONS(5838), - [anon_sym_LPAREN2] = ACTIONS(4172), - [anon_sym_TILDE] = ACTIONS(4172), - [anon_sym_STAR] = ACTIONS(4172), - [anon_sym_PIPE_PIPE] = ACTIONS(4172), - [anon_sym_AMP_AMP] = ACTIONS(4172), - [anon_sym_AMP] = ACTIONS(5838), - [anon_sym_LT] = ACTIONS(6004), - [anon_sym___extension__] = ACTIONS(5838), - [anon_sym_virtual] = ACTIONS(5838), - [anon_sym_extern] = ACTIONS(5838), - [anon_sym___attribute__] = ACTIONS(5838), - [anon_sym___attribute] = ACTIONS(5838), - [anon_sym_using] = ACTIONS(5838), - [anon_sym_COLON_COLON] = ACTIONS(4167), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4172), - [anon_sym___declspec] = ACTIONS(5838), - [anon_sym___based] = ACTIONS(5838), - [anon_sym___cdecl] = ACTIONS(5838), - [anon_sym___clrcall] = ACTIONS(5838), - [anon_sym___stdcall] = ACTIONS(5838), - [anon_sym___fastcall] = ACTIONS(5838), - [anon_sym___thiscall] = ACTIONS(5838), - [anon_sym___vectorcall] = ACTIONS(5838), - [anon_sym_signed] = ACTIONS(5838), - [anon_sym_unsigned] = ACTIONS(5838), - [anon_sym_long] = ACTIONS(5838), - [anon_sym_short] = ACTIONS(5838), - [anon_sym_LBRACK] = ACTIONS(5838), - [anon_sym_static] = ACTIONS(5838), - [anon_sym_register] = ACTIONS(5838), - [anon_sym_inline] = ACTIONS(5838), - [anon_sym___inline] = ACTIONS(5838), - [anon_sym___inline__] = ACTIONS(5838), - [anon_sym___forceinline] = ACTIONS(5838), - [anon_sym_thread_local] = ACTIONS(5838), - [anon_sym___thread] = ACTIONS(5838), - [anon_sym_const] = ACTIONS(5838), - [anon_sym_constexpr] = ACTIONS(5838), - [anon_sym_volatile] = ACTIONS(5838), - [anon_sym_restrict] = ACTIONS(5838), - [anon_sym___restrict__] = ACTIONS(5838), - [anon_sym__Atomic] = ACTIONS(5838), - [anon_sym__Noreturn] = ACTIONS(5838), - [anon_sym_noreturn] = ACTIONS(5838), - [anon_sym__Nonnull] = ACTIONS(5838), - [anon_sym_mutable] = ACTIONS(5838), - [anon_sym_constinit] = ACTIONS(5838), - [anon_sym_consteval] = ACTIONS(5838), - [anon_sym_alignas] = ACTIONS(5838), - [anon_sym__Alignas] = ACTIONS(5838), - [sym_primitive_type] = ACTIONS(5838), - [anon_sym_enum] = ACTIONS(5838), - [anon_sym_class] = ACTIONS(5838), - [anon_sym_struct] = ACTIONS(5838), - [anon_sym_union] = ACTIONS(5838), - [anon_sym_or] = ACTIONS(5838), - [anon_sym_and] = ACTIONS(5838), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5838), - [anon_sym_decltype] = ACTIONS(5838), - [anon_sym_explicit] = ACTIONS(5838), - [anon_sym_typename] = ACTIONS(5838), - [anon_sym_template] = ACTIONS(5838), - [anon_sym_operator] = ACTIONS(5838), - [anon_sym_friend] = ACTIONS(5838), - [anon_sym_concept] = ACTIONS(5838), - }, - [2118] = { - [sym_identifier] = ACTIONS(5541), - [aux_sym_preproc_def_token1] = ACTIONS(5541), - [aux_sym_preproc_if_token1] = ACTIONS(5541), - [aux_sym_preproc_if_token2] = ACTIONS(5541), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5541), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5541), - [sym_preproc_directive] = ACTIONS(5541), - [anon_sym_LPAREN2] = ACTIONS(5543), - [anon_sym_TILDE] = ACTIONS(5543), - [anon_sym_STAR] = ACTIONS(5543), - [anon_sym_AMP_AMP] = ACTIONS(5543), - [anon_sym_AMP] = ACTIONS(5541), - [anon_sym_SEMI] = ACTIONS(5543), - [anon_sym___extension__] = ACTIONS(5541), - [anon_sym_typedef] = ACTIONS(5541), - [anon_sym_virtual] = ACTIONS(5541), - [anon_sym_extern] = ACTIONS(5541), - [anon_sym___attribute__] = ACTIONS(5541), - [anon_sym___attribute] = ACTIONS(5541), - [anon_sym_using] = ACTIONS(5541), - [anon_sym_COLON_COLON] = ACTIONS(5543), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5543), - [anon_sym___declspec] = ACTIONS(5541), - [anon_sym___based] = ACTIONS(5541), - [anon_sym_signed] = ACTIONS(5541), - [anon_sym_unsigned] = ACTIONS(5541), - [anon_sym_long] = ACTIONS(5541), - [anon_sym_short] = ACTIONS(5541), - [anon_sym_LBRACK] = ACTIONS(5541), - [anon_sym_static] = ACTIONS(5541), - [anon_sym_register] = ACTIONS(5541), - [anon_sym_inline] = ACTIONS(5541), - [anon_sym___inline] = ACTIONS(5541), - [anon_sym___inline__] = ACTIONS(5541), - [anon_sym___forceinline] = ACTIONS(5541), - [anon_sym_thread_local] = ACTIONS(5541), - [anon_sym___thread] = ACTIONS(5541), - [anon_sym_const] = ACTIONS(5541), - [anon_sym_constexpr] = ACTIONS(5541), - [anon_sym_volatile] = ACTIONS(5541), - [anon_sym_restrict] = ACTIONS(5541), - [anon_sym___restrict__] = ACTIONS(5541), - [anon_sym__Atomic] = ACTIONS(5541), - [anon_sym__Noreturn] = ACTIONS(5541), - [anon_sym_noreturn] = ACTIONS(5541), - [anon_sym__Nonnull] = ACTIONS(5541), - [anon_sym_mutable] = ACTIONS(5541), - [anon_sym_constinit] = ACTIONS(5541), - [anon_sym_consteval] = ACTIONS(5541), - [anon_sym_alignas] = ACTIONS(5541), - [anon_sym__Alignas] = ACTIONS(5541), - [sym_primitive_type] = ACTIONS(5541), - [anon_sym_enum] = ACTIONS(5541), - [anon_sym_class] = ACTIONS(5541), - [anon_sym_struct] = ACTIONS(5541), - [anon_sym_union] = ACTIONS(5541), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5541), - [anon_sym_decltype] = ACTIONS(5541), - [anon_sym_explicit] = ACTIONS(5541), - [anon_sym_typename] = ACTIONS(5541), - [anon_sym_private] = ACTIONS(5541), - [anon_sym_template] = ACTIONS(5541), - [anon_sym_operator] = ACTIONS(5541), - [anon_sym_friend] = ACTIONS(5541), - [anon_sym_public] = ACTIONS(5541), - [anon_sym_protected] = ACTIONS(5541), - [anon_sym_static_assert] = ACTIONS(5541), - }, - [2119] = { - [sym_identifier] = ACTIONS(2775), - [aux_sym_preproc_def_token1] = ACTIONS(2775), - [aux_sym_preproc_if_token1] = ACTIONS(2775), - [aux_sym_preproc_if_token2] = ACTIONS(2775), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2775), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2775), - [sym_preproc_directive] = ACTIONS(2775), - [anon_sym_LPAREN2] = ACTIONS(2777), - [anon_sym_TILDE] = ACTIONS(2777), - [anon_sym_STAR] = ACTIONS(2777), - [anon_sym_AMP_AMP] = ACTIONS(2777), - [anon_sym_AMP] = ACTIONS(2775), - [anon_sym_SEMI] = ACTIONS(2777), - [anon_sym___extension__] = ACTIONS(2775), - [anon_sym_typedef] = ACTIONS(2775), - [anon_sym_virtual] = ACTIONS(2775), - [anon_sym_extern] = ACTIONS(2775), - [anon_sym___attribute__] = ACTIONS(2775), - [anon_sym___attribute] = ACTIONS(2775), - [anon_sym_using] = ACTIONS(2775), - [anon_sym_COLON_COLON] = ACTIONS(2777), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2777), - [anon_sym___declspec] = ACTIONS(2775), - [anon_sym___based] = ACTIONS(2775), - [anon_sym_signed] = ACTIONS(2775), - [anon_sym_unsigned] = ACTIONS(2775), - [anon_sym_long] = ACTIONS(2775), - [anon_sym_short] = ACTIONS(2775), - [anon_sym_LBRACK] = ACTIONS(2775), - [anon_sym_static] = ACTIONS(2775), - [anon_sym_register] = ACTIONS(2775), - [anon_sym_inline] = ACTIONS(2775), - [anon_sym___inline] = ACTIONS(2775), - [anon_sym___inline__] = ACTIONS(2775), - [anon_sym___forceinline] = ACTIONS(2775), - [anon_sym_thread_local] = ACTIONS(2775), - [anon_sym___thread] = ACTIONS(2775), - [anon_sym_const] = ACTIONS(2775), - [anon_sym_constexpr] = ACTIONS(2775), - [anon_sym_volatile] = ACTIONS(2775), - [anon_sym_restrict] = ACTIONS(2775), - [anon_sym___restrict__] = ACTIONS(2775), - [anon_sym__Atomic] = ACTIONS(2775), - [anon_sym__Noreturn] = ACTIONS(2775), - [anon_sym_noreturn] = ACTIONS(2775), - [anon_sym__Nonnull] = ACTIONS(2775), - [anon_sym_mutable] = ACTIONS(2775), - [anon_sym_constinit] = ACTIONS(2775), - [anon_sym_consteval] = ACTIONS(2775), - [anon_sym_alignas] = ACTIONS(2775), - [anon_sym__Alignas] = ACTIONS(2775), - [sym_primitive_type] = ACTIONS(2775), - [anon_sym_enum] = ACTIONS(2775), - [anon_sym_class] = ACTIONS(2775), - [anon_sym_struct] = ACTIONS(2775), - [anon_sym_union] = ACTIONS(2775), + [2147] = { + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym___attribute] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym_RBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym__Nonnull] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym__Alignas] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2775), - [anon_sym_decltype] = ACTIONS(2775), - [anon_sym_explicit] = ACTIONS(2775), - [anon_sym_typename] = ACTIONS(2775), - [anon_sym_private] = ACTIONS(2775), - [anon_sym_template] = ACTIONS(2775), - [anon_sym_operator] = ACTIONS(2775), - [anon_sym_friend] = ACTIONS(2775), - [anon_sym_public] = ACTIONS(2775), - [anon_sym_protected] = ACTIONS(2775), - [anon_sym_static_assert] = ACTIONS(2775), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_private] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_friend] = ACTIONS(2871), + [anon_sym_public] = ACTIONS(2871), + [anon_sym_protected] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), }, - [2120] = { - [sym_identifier] = ACTIONS(5585), - [aux_sym_preproc_def_token1] = ACTIONS(5585), - [aux_sym_preproc_if_token1] = ACTIONS(5585), - [aux_sym_preproc_if_token2] = ACTIONS(5585), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5585), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5585), - [sym_preproc_directive] = ACTIONS(5585), - [anon_sym_LPAREN2] = ACTIONS(5587), - [anon_sym_TILDE] = ACTIONS(5587), - [anon_sym_STAR] = ACTIONS(5587), - [anon_sym_AMP_AMP] = ACTIONS(5587), - [anon_sym_AMP] = ACTIONS(5585), - [anon_sym_SEMI] = ACTIONS(5587), - [anon_sym___extension__] = ACTIONS(5585), - [anon_sym_typedef] = ACTIONS(5585), - [anon_sym_virtual] = ACTIONS(5585), - [anon_sym_extern] = ACTIONS(5585), - [anon_sym___attribute__] = ACTIONS(5585), - [anon_sym___attribute] = ACTIONS(5585), - [anon_sym_using] = ACTIONS(5585), - [anon_sym_COLON_COLON] = ACTIONS(5587), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5587), - [anon_sym___declspec] = ACTIONS(5585), - [anon_sym___based] = ACTIONS(5585), - [anon_sym_signed] = ACTIONS(5585), - [anon_sym_unsigned] = ACTIONS(5585), - [anon_sym_long] = ACTIONS(5585), - [anon_sym_short] = ACTIONS(5585), - [anon_sym_LBRACK] = ACTIONS(5585), - [anon_sym_static] = ACTIONS(5585), - [anon_sym_register] = ACTIONS(5585), - [anon_sym_inline] = ACTIONS(5585), - [anon_sym___inline] = ACTIONS(5585), - [anon_sym___inline__] = ACTIONS(5585), - [anon_sym___forceinline] = ACTIONS(5585), - [anon_sym_thread_local] = ACTIONS(5585), - [anon_sym___thread] = ACTIONS(5585), - [anon_sym_const] = ACTIONS(5585), - [anon_sym_constexpr] = ACTIONS(5585), - [anon_sym_volatile] = ACTIONS(5585), - [anon_sym_restrict] = ACTIONS(5585), - [anon_sym___restrict__] = ACTIONS(5585), - [anon_sym__Atomic] = ACTIONS(5585), - [anon_sym__Noreturn] = ACTIONS(5585), - [anon_sym_noreturn] = ACTIONS(5585), - [anon_sym__Nonnull] = ACTIONS(5585), - [anon_sym_mutable] = ACTIONS(5585), - [anon_sym_constinit] = ACTIONS(5585), - [anon_sym_consteval] = ACTIONS(5585), - [anon_sym_alignas] = ACTIONS(5585), - [anon_sym__Alignas] = ACTIONS(5585), - [sym_primitive_type] = ACTIONS(5585), - [anon_sym_enum] = ACTIONS(5585), - [anon_sym_class] = ACTIONS(5585), - [anon_sym_struct] = ACTIONS(5585), - [anon_sym_union] = ACTIONS(5585), + [2148] = { + [sym_identifier] = ACTIONS(2875), + [aux_sym_preproc_def_token1] = ACTIONS(2875), + [aux_sym_preproc_if_token1] = ACTIONS(2875), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2875), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2875), + [sym_preproc_directive] = ACTIONS(2875), + [anon_sym_LPAREN2] = ACTIONS(2877), + [anon_sym_TILDE] = ACTIONS(2877), + [anon_sym_STAR] = ACTIONS(2877), + [anon_sym_AMP_AMP] = ACTIONS(2877), + [anon_sym_AMP] = ACTIONS(2875), + [anon_sym_SEMI] = ACTIONS(2877), + [anon_sym___extension__] = ACTIONS(2875), + [anon_sym_typedef] = ACTIONS(2875), + [anon_sym_virtual] = ACTIONS(2875), + [anon_sym_extern] = ACTIONS(2875), + [anon_sym___attribute__] = ACTIONS(2875), + [anon_sym___attribute] = ACTIONS(2875), + [anon_sym_using] = ACTIONS(2875), + [anon_sym_COLON_COLON] = ACTIONS(2877), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2877), + [anon_sym___declspec] = ACTIONS(2875), + [anon_sym___based] = ACTIONS(2875), + [anon_sym_RBRACE] = ACTIONS(2877), + [anon_sym_signed] = ACTIONS(2875), + [anon_sym_unsigned] = ACTIONS(2875), + [anon_sym_long] = ACTIONS(2875), + [anon_sym_short] = ACTIONS(2875), + [anon_sym_LBRACK] = ACTIONS(2875), + [anon_sym_static] = ACTIONS(2875), + [anon_sym_register] = ACTIONS(2875), + [anon_sym_inline] = ACTIONS(2875), + [anon_sym___inline] = ACTIONS(2875), + [anon_sym___inline__] = ACTIONS(2875), + [anon_sym___forceinline] = ACTIONS(2875), + [anon_sym_thread_local] = ACTIONS(2875), + [anon_sym___thread] = ACTIONS(2875), + [anon_sym_const] = ACTIONS(2875), + [anon_sym_constexpr] = ACTIONS(2875), + [anon_sym_volatile] = ACTIONS(2875), + [anon_sym_restrict] = ACTIONS(2875), + [anon_sym___restrict__] = ACTIONS(2875), + [anon_sym__Atomic] = ACTIONS(2875), + [anon_sym__Noreturn] = ACTIONS(2875), + [anon_sym_noreturn] = ACTIONS(2875), + [anon_sym__Nonnull] = ACTIONS(2875), + [anon_sym_mutable] = ACTIONS(2875), + [anon_sym_constinit] = ACTIONS(2875), + [anon_sym_consteval] = ACTIONS(2875), + [anon_sym_alignas] = ACTIONS(2875), + [anon_sym__Alignas] = ACTIONS(2875), + [sym_primitive_type] = ACTIONS(2875), + [anon_sym_enum] = ACTIONS(2875), + [anon_sym_class] = ACTIONS(2875), + [anon_sym_struct] = ACTIONS(2875), + [anon_sym_union] = ACTIONS(2875), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5585), - [anon_sym_decltype] = ACTIONS(5585), - [anon_sym_explicit] = ACTIONS(5585), - [anon_sym_typename] = ACTIONS(5585), - [anon_sym_private] = ACTIONS(5585), - [anon_sym_template] = ACTIONS(5585), - [anon_sym_operator] = ACTIONS(5585), - [anon_sym_friend] = ACTIONS(5585), - [anon_sym_public] = ACTIONS(5585), - [anon_sym_protected] = ACTIONS(5585), - [anon_sym_static_assert] = ACTIONS(5585), + [sym_auto] = ACTIONS(2875), + [anon_sym_decltype] = ACTIONS(2875), + [anon_sym_explicit] = ACTIONS(2875), + [anon_sym_typename] = ACTIONS(2875), + [anon_sym_private] = ACTIONS(2875), + [anon_sym_template] = ACTIONS(2875), + [anon_sym_operator] = ACTIONS(2875), + [anon_sym_friend] = ACTIONS(2875), + [anon_sym_public] = ACTIONS(2875), + [anon_sym_protected] = ACTIONS(2875), + [anon_sym_static_assert] = ACTIONS(2875), }, - [2121] = { + [2149] = { [sym_identifier] = ACTIONS(2779), [aux_sym_preproc_def_token1] = ACTIONS(2779), [aux_sym_preproc_if_token1] = ACTIONS(2779), - [aux_sym_preproc_if_token2] = ACTIONS(2779), [aux_sym_preproc_ifdef_token1] = ACTIONS(2779), [aux_sym_preproc_ifdef_token2] = ACTIONS(2779), [sym_preproc_directive] = ACTIONS(2779), @@ -277340,6 +280966,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_LBRACK] = ACTIONS(2781), [anon_sym___declspec] = ACTIONS(2779), [anon_sym___based] = ACTIONS(2779), + [anon_sym_RBRACE] = ACTIONS(2781), [anon_sym_signed] = ACTIONS(2779), [anon_sym_unsigned] = ACTIONS(2779), [anon_sym_long] = ACTIONS(2779), @@ -277385,571 +281012,360 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(2779), [anon_sym_static_assert] = ACTIONS(2779), }, - [2122] = { - [sym_identifier] = ACTIONS(5601), - [aux_sym_preproc_def_token1] = ACTIONS(5601), - [aux_sym_preproc_if_token1] = ACTIONS(5601), - [aux_sym_preproc_if_token2] = ACTIONS(5601), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5601), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5601), - [sym_preproc_directive] = ACTIONS(5601), - [anon_sym_LPAREN2] = ACTIONS(5603), - [anon_sym_TILDE] = ACTIONS(5603), - [anon_sym_STAR] = ACTIONS(5603), - [anon_sym_AMP_AMP] = ACTIONS(5603), - [anon_sym_AMP] = ACTIONS(5601), - [anon_sym_SEMI] = ACTIONS(5603), - [anon_sym___extension__] = ACTIONS(5601), - [anon_sym_typedef] = ACTIONS(5601), - [anon_sym_virtual] = ACTIONS(5601), - [anon_sym_extern] = ACTIONS(5601), - [anon_sym___attribute__] = ACTIONS(5601), - [anon_sym___attribute] = ACTIONS(5601), - [anon_sym_using] = ACTIONS(5601), - [anon_sym_COLON_COLON] = ACTIONS(5603), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5603), - [anon_sym___declspec] = ACTIONS(5601), - [anon_sym___based] = ACTIONS(5601), - [anon_sym_signed] = ACTIONS(5601), - [anon_sym_unsigned] = ACTIONS(5601), - [anon_sym_long] = ACTIONS(5601), - [anon_sym_short] = ACTIONS(5601), - [anon_sym_LBRACK] = ACTIONS(5601), - [anon_sym_static] = ACTIONS(5601), - [anon_sym_register] = ACTIONS(5601), - [anon_sym_inline] = ACTIONS(5601), - [anon_sym___inline] = ACTIONS(5601), - [anon_sym___inline__] = ACTIONS(5601), - [anon_sym___forceinline] = ACTIONS(5601), - [anon_sym_thread_local] = ACTIONS(5601), - [anon_sym___thread] = ACTIONS(5601), - [anon_sym_const] = ACTIONS(5601), - [anon_sym_constexpr] = ACTIONS(5601), - [anon_sym_volatile] = ACTIONS(5601), - [anon_sym_restrict] = ACTIONS(5601), - [anon_sym___restrict__] = ACTIONS(5601), - [anon_sym__Atomic] = ACTIONS(5601), - [anon_sym__Noreturn] = ACTIONS(5601), - [anon_sym_noreturn] = ACTIONS(5601), - [anon_sym__Nonnull] = ACTIONS(5601), - [anon_sym_mutable] = ACTIONS(5601), - [anon_sym_constinit] = ACTIONS(5601), - [anon_sym_consteval] = ACTIONS(5601), - [anon_sym_alignas] = ACTIONS(5601), - [anon_sym__Alignas] = ACTIONS(5601), - [sym_primitive_type] = ACTIONS(5601), - [anon_sym_enum] = ACTIONS(5601), - [anon_sym_class] = ACTIONS(5601), - [anon_sym_struct] = ACTIONS(5601), - [anon_sym_union] = ACTIONS(5601), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5601), - [anon_sym_decltype] = ACTIONS(5601), - [anon_sym_explicit] = ACTIONS(5601), - [anon_sym_typename] = ACTIONS(5601), - [anon_sym_private] = ACTIONS(5601), - [anon_sym_template] = ACTIONS(5601), - [anon_sym_operator] = ACTIONS(5601), - [anon_sym_friend] = ACTIONS(5601), - [anon_sym_public] = ACTIONS(5601), - [anon_sym_protected] = ACTIONS(5601), - [anon_sym_static_assert] = ACTIONS(5601), - }, - [2123] = { - [sym_identifier] = ACTIONS(5597), - [aux_sym_preproc_def_token1] = ACTIONS(5597), - [aux_sym_preproc_if_token1] = ACTIONS(5597), - [aux_sym_preproc_if_token2] = ACTIONS(5597), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5597), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5597), - [sym_preproc_directive] = ACTIONS(5597), - [anon_sym_LPAREN2] = ACTIONS(5599), - [anon_sym_TILDE] = ACTIONS(5599), - [anon_sym_STAR] = ACTIONS(5599), - [anon_sym_AMP_AMP] = ACTIONS(5599), - [anon_sym_AMP] = ACTIONS(5597), - [anon_sym_SEMI] = ACTIONS(5599), - [anon_sym___extension__] = ACTIONS(5597), - [anon_sym_typedef] = ACTIONS(5597), - [anon_sym_virtual] = ACTIONS(5597), - [anon_sym_extern] = ACTIONS(5597), - [anon_sym___attribute__] = ACTIONS(5597), - [anon_sym___attribute] = ACTIONS(5597), - [anon_sym_using] = ACTIONS(5597), - [anon_sym_COLON_COLON] = ACTIONS(5599), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5599), - [anon_sym___declspec] = ACTIONS(5597), - [anon_sym___based] = ACTIONS(5597), - [anon_sym_signed] = ACTIONS(5597), - [anon_sym_unsigned] = ACTIONS(5597), - [anon_sym_long] = ACTIONS(5597), - [anon_sym_short] = ACTIONS(5597), - [anon_sym_LBRACK] = ACTIONS(5597), - [anon_sym_static] = ACTIONS(5597), - [anon_sym_register] = ACTIONS(5597), - [anon_sym_inline] = ACTIONS(5597), - [anon_sym___inline] = ACTIONS(5597), - [anon_sym___inline__] = ACTIONS(5597), - [anon_sym___forceinline] = ACTIONS(5597), - [anon_sym_thread_local] = ACTIONS(5597), - [anon_sym___thread] = ACTIONS(5597), - [anon_sym_const] = ACTIONS(5597), - [anon_sym_constexpr] = ACTIONS(5597), - [anon_sym_volatile] = ACTIONS(5597), - [anon_sym_restrict] = ACTIONS(5597), - [anon_sym___restrict__] = ACTIONS(5597), - [anon_sym__Atomic] = ACTIONS(5597), - [anon_sym__Noreturn] = ACTIONS(5597), - [anon_sym_noreturn] = ACTIONS(5597), - [anon_sym__Nonnull] = ACTIONS(5597), - [anon_sym_mutable] = ACTIONS(5597), - [anon_sym_constinit] = ACTIONS(5597), - [anon_sym_consteval] = ACTIONS(5597), - [anon_sym_alignas] = ACTIONS(5597), - [anon_sym__Alignas] = ACTIONS(5597), - [sym_primitive_type] = ACTIONS(5597), - [anon_sym_enum] = ACTIONS(5597), - [anon_sym_class] = ACTIONS(5597), - [anon_sym_struct] = ACTIONS(5597), - [anon_sym_union] = ACTIONS(5597), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5597), - [anon_sym_decltype] = ACTIONS(5597), - [anon_sym_explicit] = ACTIONS(5597), - [anon_sym_typename] = ACTIONS(5597), - [anon_sym_private] = ACTIONS(5597), - [anon_sym_template] = ACTIONS(5597), - [anon_sym_operator] = ACTIONS(5597), - [anon_sym_friend] = ACTIONS(5597), - [anon_sym_public] = ACTIONS(5597), - [anon_sym_protected] = ACTIONS(5597), - [anon_sym_static_assert] = ACTIONS(5597), - }, - [2124] = { - [sym_identifier] = ACTIONS(2783), - [aux_sym_preproc_def_token1] = ACTIONS(2783), - [aux_sym_preproc_if_token1] = ACTIONS(2783), - [aux_sym_preproc_if_token2] = ACTIONS(2783), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2783), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2783), - [sym_preproc_directive] = ACTIONS(2783), - [anon_sym_LPAREN2] = ACTIONS(2785), - [anon_sym_TILDE] = ACTIONS(2785), - [anon_sym_STAR] = ACTIONS(2785), - [anon_sym_AMP_AMP] = ACTIONS(2785), - [anon_sym_AMP] = ACTIONS(2783), - [anon_sym_SEMI] = ACTIONS(2785), - [anon_sym___extension__] = ACTIONS(2783), - [anon_sym_typedef] = ACTIONS(2783), - [anon_sym_virtual] = ACTIONS(2783), - [anon_sym_extern] = ACTIONS(2783), - [anon_sym___attribute__] = ACTIONS(2783), - [anon_sym___attribute] = ACTIONS(2783), - [anon_sym_using] = ACTIONS(2783), - [anon_sym_COLON_COLON] = ACTIONS(2785), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2785), - [anon_sym___declspec] = ACTIONS(2783), - [anon_sym___based] = ACTIONS(2783), - [anon_sym_signed] = ACTIONS(2783), - [anon_sym_unsigned] = ACTIONS(2783), - [anon_sym_long] = ACTIONS(2783), - [anon_sym_short] = ACTIONS(2783), - [anon_sym_LBRACK] = ACTIONS(2783), - [anon_sym_static] = ACTIONS(2783), - [anon_sym_register] = ACTIONS(2783), - [anon_sym_inline] = ACTIONS(2783), - [anon_sym___inline] = ACTIONS(2783), - [anon_sym___inline__] = ACTIONS(2783), - [anon_sym___forceinline] = ACTIONS(2783), - [anon_sym_thread_local] = ACTIONS(2783), - [anon_sym___thread] = ACTIONS(2783), - [anon_sym_const] = ACTIONS(2783), - [anon_sym_constexpr] = ACTIONS(2783), - [anon_sym_volatile] = ACTIONS(2783), - [anon_sym_restrict] = ACTIONS(2783), - [anon_sym___restrict__] = ACTIONS(2783), - [anon_sym__Atomic] = ACTIONS(2783), - [anon_sym__Noreturn] = ACTIONS(2783), - [anon_sym_noreturn] = ACTIONS(2783), - [anon_sym__Nonnull] = ACTIONS(2783), - [anon_sym_mutable] = ACTIONS(2783), - [anon_sym_constinit] = ACTIONS(2783), - [anon_sym_consteval] = ACTIONS(2783), - [anon_sym_alignas] = ACTIONS(2783), - [anon_sym__Alignas] = ACTIONS(2783), - [sym_primitive_type] = ACTIONS(2783), - [anon_sym_enum] = ACTIONS(2783), - [anon_sym_class] = ACTIONS(2783), - [anon_sym_struct] = ACTIONS(2783), - [anon_sym_union] = ACTIONS(2783), + [2150] = { + [sym_identifier] = ACTIONS(2951), + [aux_sym_preproc_def_token1] = ACTIONS(2951), + [aux_sym_preproc_if_token1] = ACTIONS(2951), + [aux_sym_preproc_if_token2] = ACTIONS(2951), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2951), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2951), + [sym_preproc_directive] = ACTIONS(2951), + [anon_sym_LPAREN2] = ACTIONS(2953), + [anon_sym_TILDE] = ACTIONS(2953), + [anon_sym_STAR] = ACTIONS(2953), + [anon_sym_AMP_AMP] = ACTIONS(2953), + [anon_sym_AMP] = ACTIONS(2951), + [anon_sym_SEMI] = ACTIONS(2953), + [anon_sym___extension__] = ACTIONS(2951), + [anon_sym_typedef] = ACTIONS(2951), + [anon_sym_virtual] = ACTIONS(2951), + [anon_sym_extern] = ACTIONS(2951), + [anon_sym___attribute__] = ACTIONS(2951), + [anon_sym___attribute] = ACTIONS(2951), + [anon_sym_using] = ACTIONS(2951), + [anon_sym_COLON_COLON] = ACTIONS(2953), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2953), + [anon_sym___declspec] = ACTIONS(2951), + [anon_sym___based] = ACTIONS(2951), + [anon_sym_signed] = ACTIONS(2951), + [anon_sym_unsigned] = ACTIONS(2951), + [anon_sym_long] = ACTIONS(2951), + [anon_sym_short] = ACTIONS(2951), + [anon_sym_LBRACK] = ACTIONS(2951), + [anon_sym_static] = ACTIONS(2951), + [anon_sym_register] = ACTIONS(2951), + [anon_sym_inline] = ACTIONS(2951), + [anon_sym___inline] = ACTIONS(2951), + [anon_sym___inline__] = ACTIONS(2951), + [anon_sym___forceinline] = ACTIONS(2951), + [anon_sym_thread_local] = ACTIONS(2951), + [anon_sym___thread] = ACTIONS(2951), + [anon_sym_const] = ACTIONS(2951), + [anon_sym_constexpr] = ACTIONS(2951), + [anon_sym_volatile] = ACTIONS(2951), + [anon_sym_restrict] = ACTIONS(2951), + [anon_sym___restrict__] = ACTIONS(2951), + [anon_sym__Atomic] = ACTIONS(2951), + [anon_sym__Noreturn] = ACTIONS(2951), + [anon_sym_noreturn] = ACTIONS(2951), + [anon_sym__Nonnull] = ACTIONS(2951), + [anon_sym_mutable] = ACTIONS(2951), + [anon_sym_constinit] = ACTIONS(2951), + [anon_sym_consteval] = ACTIONS(2951), + [anon_sym_alignas] = ACTIONS(2951), + [anon_sym__Alignas] = ACTIONS(2951), + [sym_primitive_type] = ACTIONS(2951), + [anon_sym_enum] = ACTIONS(2951), + [anon_sym_class] = ACTIONS(2951), + [anon_sym_struct] = ACTIONS(2951), + [anon_sym_union] = ACTIONS(2951), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2783), - [anon_sym_decltype] = ACTIONS(2783), - [anon_sym_explicit] = ACTIONS(2783), - [anon_sym_typename] = ACTIONS(2783), - [anon_sym_private] = ACTIONS(2783), - [anon_sym_template] = ACTIONS(2783), - [anon_sym_operator] = ACTIONS(2783), - [anon_sym_friend] = ACTIONS(2783), - [anon_sym_public] = ACTIONS(2783), - [anon_sym_protected] = ACTIONS(2783), - [anon_sym_static_assert] = ACTIONS(2783), - }, - [2125] = { - [sym_identifier] = ACTIONS(5456), - [aux_sym_preproc_def_token1] = ACTIONS(5456), - [aux_sym_preproc_if_token1] = ACTIONS(5456), - [aux_sym_preproc_if_token2] = ACTIONS(5456), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5456), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5456), - [sym_preproc_directive] = ACTIONS(5456), - [anon_sym_LPAREN2] = ACTIONS(5458), - [anon_sym_TILDE] = ACTIONS(5458), - [anon_sym_STAR] = ACTIONS(5458), - [anon_sym_AMP_AMP] = ACTIONS(5458), - [anon_sym_AMP] = ACTIONS(5456), - [anon_sym_SEMI] = ACTIONS(5458), - [anon_sym___extension__] = ACTIONS(5456), - [anon_sym_typedef] = ACTIONS(5456), - [anon_sym_virtual] = ACTIONS(5456), - [anon_sym_extern] = ACTIONS(5456), - [anon_sym___attribute__] = ACTIONS(5456), - [anon_sym___attribute] = ACTIONS(5456), - [anon_sym_using] = ACTIONS(5456), - [anon_sym_COLON_COLON] = ACTIONS(5458), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5458), - [anon_sym___declspec] = ACTIONS(5456), - [anon_sym___based] = ACTIONS(5456), - [anon_sym_signed] = ACTIONS(5456), - [anon_sym_unsigned] = ACTIONS(5456), - [anon_sym_long] = ACTIONS(5456), - [anon_sym_short] = ACTIONS(5456), - [anon_sym_LBRACK] = ACTIONS(5456), - [anon_sym_static] = ACTIONS(5456), - [anon_sym_register] = ACTIONS(5456), - [anon_sym_inline] = ACTIONS(5456), - [anon_sym___inline] = ACTIONS(5456), - [anon_sym___inline__] = ACTIONS(5456), - [anon_sym___forceinline] = ACTIONS(5456), - [anon_sym_thread_local] = ACTIONS(5456), - [anon_sym___thread] = ACTIONS(5456), - [anon_sym_const] = ACTIONS(5456), - [anon_sym_constexpr] = ACTIONS(5456), - [anon_sym_volatile] = ACTIONS(5456), - [anon_sym_restrict] = ACTIONS(5456), - [anon_sym___restrict__] = ACTIONS(5456), - [anon_sym__Atomic] = ACTIONS(5456), - [anon_sym__Noreturn] = ACTIONS(5456), - [anon_sym_noreturn] = ACTIONS(5456), - [anon_sym__Nonnull] = ACTIONS(5456), - [anon_sym_mutable] = ACTIONS(5456), - [anon_sym_constinit] = ACTIONS(5456), - [anon_sym_consteval] = ACTIONS(5456), - [anon_sym_alignas] = ACTIONS(5456), - [anon_sym__Alignas] = ACTIONS(5456), - [sym_primitive_type] = ACTIONS(5456), - [anon_sym_enum] = ACTIONS(5456), - [anon_sym_class] = ACTIONS(5456), - [anon_sym_struct] = ACTIONS(5456), - [anon_sym_union] = ACTIONS(5456), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5456), - [anon_sym_decltype] = ACTIONS(5456), - [anon_sym_explicit] = ACTIONS(5456), - [anon_sym_typename] = ACTIONS(5456), - [anon_sym_private] = ACTIONS(5456), - [anon_sym_template] = ACTIONS(5456), - [anon_sym_operator] = ACTIONS(5456), - [anon_sym_friend] = ACTIONS(5456), - [anon_sym_public] = ACTIONS(5456), - [anon_sym_protected] = ACTIONS(5456), - [anon_sym_static_assert] = ACTIONS(5456), - }, - [2126] = { - [sym_identifier] = ACTIONS(5456), - [aux_sym_preproc_def_token1] = ACTIONS(5456), - [aux_sym_preproc_if_token1] = ACTIONS(5456), - [aux_sym_preproc_if_token2] = ACTIONS(5456), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5456), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5456), - [sym_preproc_directive] = ACTIONS(5456), - [anon_sym_LPAREN2] = ACTIONS(5458), - [anon_sym_TILDE] = ACTIONS(5458), - [anon_sym_STAR] = ACTIONS(5458), - [anon_sym_AMP_AMP] = ACTIONS(5458), - [anon_sym_AMP] = ACTIONS(5456), - [anon_sym_SEMI] = ACTIONS(5458), - [anon_sym___extension__] = ACTIONS(5456), - [anon_sym_typedef] = ACTIONS(5456), - [anon_sym_virtual] = ACTIONS(5456), - [anon_sym_extern] = ACTIONS(5456), - [anon_sym___attribute__] = ACTIONS(5456), - [anon_sym___attribute] = ACTIONS(5456), - [anon_sym_using] = ACTIONS(5456), - [anon_sym_COLON_COLON] = ACTIONS(5458), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5458), - [anon_sym___declspec] = ACTIONS(5456), - [anon_sym___based] = ACTIONS(5456), - [anon_sym_signed] = ACTIONS(5456), - [anon_sym_unsigned] = ACTIONS(5456), - [anon_sym_long] = ACTIONS(5456), - [anon_sym_short] = ACTIONS(5456), - [anon_sym_LBRACK] = ACTIONS(5456), - [anon_sym_static] = ACTIONS(5456), - [anon_sym_register] = ACTIONS(5456), - [anon_sym_inline] = ACTIONS(5456), - [anon_sym___inline] = ACTIONS(5456), - [anon_sym___inline__] = ACTIONS(5456), - [anon_sym___forceinline] = ACTIONS(5456), - [anon_sym_thread_local] = ACTIONS(5456), - [anon_sym___thread] = ACTIONS(5456), - [anon_sym_const] = ACTIONS(5456), - [anon_sym_constexpr] = ACTIONS(5456), - [anon_sym_volatile] = ACTIONS(5456), - [anon_sym_restrict] = ACTIONS(5456), - [anon_sym___restrict__] = ACTIONS(5456), - [anon_sym__Atomic] = ACTIONS(5456), - [anon_sym__Noreturn] = ACTIONS(5456), - [anon_sym_noreturn] = ACTIONS(5456), - [anon_sym__Nonnull] = ACTIONS(5456), - [anon_sym_mutable] = ACTIONS(5456), - [anon_sym_constinit] = ACTIONS(5456), - [anon_sym_consteval] = ACTIONS(5456), - [anon_sym_alignas] = ACTIONS(5456), - [anon_sym__Alignas] = ACTIONS(5456), - [sym_primitive_type] = ACTIONS(5456), - [anon_sym_enum] = ACTIONS(5456), - [anon_sym_class] = ACTIONS(5456), - [anon_sym_struct] = ACTIONS(5456), - [anon_sym_union] = ACTIONS(5456), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5456), - [anon_sym_decltype] = ACTIONS(5456), - [anon_sym_explicit] = ACTIONS(5456), - [anon_sym_typename] = ACTIONS(5456), - [anon_sym_private] = ACTIONS(5456), - [anon_sym_template] = ACTIONS(5456), - [anon_sym_operator] = ACTIONS(5456), - [anon_sym_friend] = ACTIONS(5456), - [anon_sym_public] = ACTIONS(5456), - [anon_sym_protected] = ACTIONS(5456), - [anon_sym_static_assert] = ACTIONS(5456), + [sym_auto] = ACTIONS(2951), + [anon_sym_decltype] = ACTIONS(2951), + [anon_sym_explicit] = ACTIONS(2951), + [anon_sym_typename] = ACTIONS(2951), + [anon_sym_private] = ACTIONS(2951), + [anon_sym_template] = ACTIONS(2951), + [anon_sym_operator] = ACTIONS(2951), + [anon_sym_friend] = ACTIONS(2951), + [anon_sym_public] = ACTIONS(2951), + [anon_sym_protected] = ACTIONS(2951), + [anon_sym_static_assert] = ACTIONS(2951), }, - [2127] = { - [sym_identifier] = ACTIONS(5529), - [aux_sym_preproc_def_token1] = ACTIONS(5529), - [aux_sym_preproc_if_token1] = ACTIONS(5529), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5529), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5529), - [sym_preproc_directive] = ACTIONS(5529), - [anon_sym_LPAREN2] = ACTIONS(5531), - [anon_sym_TILDE] = ACTIONS(5531), - [anon_sym_STAR] = ACTIONS(5531), - [anon_sym_AMP_AMP] = ACTIONS(5531), - [anon_sym_AMP] = ACTIONS(5529), - [anon_sym_SEMI] = ACTIONS(5531), - [anon_sym___extension__] = ACTIONS(5529), - [anon_sym_typedef] = ACTIONS(5529), - [anon_sym_virtual] = ACTIONS(5529), - [anon_sym_extern] = ACTIONS(5529), - [anon_sym___attribute__] = ACTIONS(5529), - [anon_sym___attribute] = ACTIONS(5529), - [anon_sym_using] = ACTIONS(5529), - [anon_sym_COLON_COLON] = ACTIONS(5531), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5531), - [anon_sym___declspec] = ACTIONS(5529), - [anon_sym___based] = ACTIONS(5529), - [anon_sym_RBRACE] = ACTIONS(5531), - [anon_sym_signed] = ACTIONS(5529), - [anon_sym_unsigned] = ACTIONS(5529), - [anon_sym_long] = ACTIONS(5529), - [anon_sym_short] = ACTIONS(5529), - [anon_sym_LBRACK] = ACTIONS(5529), - [anon_sym_static] = ACTIONS(5529), - [anon_sym_register] = ACTIONS(5529), - [anon_sym_inline] = ACTIONS(5529), - [anon_sym___inline] = ACTIONS(5529), - [anon_sym___inline__] = ACTIONS(5529), - [anon_sym___forceinline] = ACTIONS(5529), - [anon_sym_thread_local] = ACTIONS(5529), - [anon_sym___thread] = ACTIONS(5529), - [anon_sym_const] = ACTIONS(5529), - [anon_sym_constexpr] = ACTIONS(5529), - [anon_sym_volatile] = ACTIONS(5529), - [anon_sym_restrict] = ACTIONS(5529), - [anon_sym___restrict__] = ACTIONS(5529), - [anon_sym__Atomic] = ACTIONS(5529), - [anon_sym__Noreturn] = ACTIONS(5529), - [anon_sym_noreturn] = ACTIONS(5529), - [anon_sym__Nonnull] = ACTIONS(5529), - [anon_sym_mutable] = ACTIONS(5529), - [anon_sym_constinit] = ACTIONS(5529), - [anon_sym_consteval] = ACTIONS(5529), - [anon_sym_alignas] = ACTIONS(5529), - [anon_sym__Alignas] = ACTIONS(5529), - [sym_primitive_type] = ACTIONS(5529), - [anon_sym_enum] = ACTIONS(5529), - [anon_sym_class] = ACTIONS(5529), - [anon_sym_struct] = ACTIONS(5529), - [anon_sym_union] = ACTIONS(5529), + [2151] = { + [sym_identifier] = ACTIONS(2879), + [aux_sym_preproc_def_token1] = ACTIONS(2879), + [aux_sym_preproc_if_token1] = ACTIONS(2879), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2879), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2879), + [sym_preproc_directive] = ACTIONS(2879), + [anon_sym_LPAREN2] = ACTIONS(2881), + [anon_sym_TILDE] = ACTIONS(2881), + [anon_sym_STAR] = ACTIONS(2881), + [anon_sym_AMP_AMP] = ACTIONS(2881), + [anon_sym_AMP] = ACTIONS(2879), + [anon_sym_SEMI] = ACTIONS(2881), + [anon_sym___extension__] = ACTIONS(2879), + [anon_sym_typedef] = ACTIONS(2879), + [anon_sym_virtual] = ACTIONS(2879), + [anon_sym_extern] = ACTIONS(2879), + [anon_sym___attribute__] = ACTIONS(2879), + [anon_sym___attribute] = ACTIONS(2879), + [anon_sym_using] = ACTIONS(2879), + [anon_sym_COLON_COLON] = ACTIONS(2881), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2881), + [anon_sym___declspec] = ACTIONS(2879), + [anon_sym___based] = ACTIONS(2879), + [anon_sym_RBRACE] = ACTIONS(2881), + [anon_sym_signed] = ACTIONS(2879), + [anon_sym_unsigned] = ACTIONS(2879), + [anon_sym_long] = ACTIONS(2879), + [anon_sym_short] = ACTIONS(2879), + [anon_sym_LBRACK] = ACTIONS(2879), + [anon_sym_static] = ACTIONS(2879), + [anon_sym_register] = ACTIONS(2879), + [anon_sym_inline] = ACTIONS(2879), + [anon_sym___inline] = ACTIONS(2879), + [anon_sym___inline__] = ACTIONS(2879), + [anon_sym___forceinline] = ACTIONS(2879), + [anon_sym_thread_local] = ACTIONS(2879), + [anon_sym___thread] = ACTIONS(2879), + [anon_sym_const] = ACTIONS(2879), + [anon_sym_constexpr] = ACTIONS(2879), + [anon_sym_volatile] = ACTIONS(2879), + [anon_sym_restrict] = ACTIONS(2879), + [anon_sym___restrict__] = ACTIONS(2879), + [anon_sym__Atomic] = ACTIONS(2879), + [anon_sym__Noreturn] = ACTIONS(2879), + [anon_sym_noreturn] = ACTIONS(2879), + [anon_sym__Nonnull] = ACTIONS(2879), + [anon_sym_mutable] = ACTIONS(2879), + [anon_sym_constinit] = ACTIONS(2879), + [anon_sym_consteval] = ACTIONS(2879), + [anon_sym_alignas] = ACTIONS(2879), + [anon_sym__Alignas] = ACTIONS(2879), + [sym_primitive_type] = ACTIONS(2879), + [anon_sym_enum] = ACTIONS(2879), + [anon_sym_class] = ACTIONS(2879), + [anon_sym_struct] = ACTIONS(2879), + [anon_sym_union] = ACTIONS(2879), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5529), - [anon_sym_decltype] = ACTIONS(5529), - [anon_sym_explicit] = ACTIONS(5529), - [anon_sym_typename] = ACTIONS(5529), - [anon_sym_private] = ACTIONS(5529), - [anon_sym_template] = ACTIONS(5529), - [anon_sym_operator] = ACTIONS(5529), - [anon_sym_friend] = ACTIONS(5529), - [anon_sym_public] = ACTIONS(5529), - [anon_sym_protected] = ACTIONS(5529), - [anon_sym_static_assert] = ACTIONS(5529), + [sym_auto] = ACTIONS(2879), + [anon_sym_decltype] = ACTIONS(2879), + [anon_sym_explicit] = ACTIONS(2879), + [anon_sym_typename] = ACTIONS(2879), + [anon_sym_private] = ACTIONS(2879), + [anon_sym_template] = ACTIONS(2879), + [anon_sym_operator] = ACTIONS(2879), + [anon_sym_friend] = ACTIONS(2879), + [anon_sym_public] = ACTIONS(2879), + [anon_sym_protected] = ACTIONS(2879), + [anon_sym_static_assert] = ACTIONS(2879), }, - [2128] = { - [sym_identifier] = ACTIONS(5456), - [aux_sym_preproc_def_token1] = ACTIONS(5456), - [aux_sym_preproc_if_token1] = ACTIONS(5456), - [aux_sym_preproc_if_token2] = ACTIONS(5456), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5456), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5456), - [sym_preproc_directive] = ACTIONS(5456), - [anon_sym_LPAREN2] = ACTIONS(5458), - [anon_sym_TILDE] = ACTIONS(5458), - [anon_sym_STAR] = ACTIONS(5458), - [anon_sym_AMP_AMP] = ACTIONS(5458), - [anon_sym_AMP] = ACTIONS(5456), - [anon_sym_SEMI] = ACTIONS(5458), - [anon_sym___extension__] = ACTIONS(5456), - [anon_sym_typedef] = ACTIONS(5456), - [anon_sym_virtual] = ACTIONS(5456), - [anon_sym_extern] = ACTIONS(5456), - [anon_sym___attribute__] = ACTIONS(5456), - [anon_sym___attribute] = ACTIONS(5456), - [anon_sym_using] = ACTIONS(5456), - [anon_sym_COLON_COLON] = ACTIONS(5458), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5458), - [anon_sym___declspec] = ACTIONS(5456), - [anon_sym___based] = ACTIONS(5456), - [anon_sym_signed] = ACTIONS(5456), - [anon_sym_unsigned] = ACTIONS(5456), - [anon_sym_long] = ACTIONS(5456), - [anon_sym_short] = ACTIONS(5456), - [anon_sym_LBRACK] = ACTIONS(5456), - [anon_sym_static] = ACTIONS(5456), - [anon_sym_register] = ACTIONS(5456), - [anon_sym_inline] = ACTIONS(5456), - [anon_sym___inline] = ACTIONS(5456), - [anon_sym___inline__] = ACTIONS(5456), - [anon_sym___forceinline] = ACTIONS(5456), - [anon_sym_thread_local] = ACTIONS(5456), - [anon_sym___thread] = ACTIONS(5456), - [anon_sym_const] = ACTIONS(5456), - [anon_sym_constexpr] = ACTIONS(5456), - [anon_sym_volatile] = ACTIONS(5456), - [anon_sym_restrict] = ACTIONS(5456), - [anon_sym___restrict__] = ACTIONS(5456), - [anon_sym__Atomic] = ACTIONS(5456), - [anon_sym__Noreturn] = ACTIONS(5456), - [anon_sym_noreturn] = ACTIONS(5456), - [anon_sym__Nonnull] = ACTIONS(5456), - [anon_sym_mutable] = ACTIONS(5456), - [anon_sym_constinit] = ACTIONS(5456), - [anon_sym_consteval] = ACTIONS(5456), - [anon_sym_alignas] = ACTIONS(5456), - [anon_sym__Alignas] = ACTIONS(5456), - [sym_primitive_type] = ACTIONS(5456), - [anon_sym_enum] = ACTIONS(5456), - [anon_sym_class] = ACTIONS(5456), - [anon_sym_struct] = ACTIONS(5456), - [anon_sym_union] = ACTIONS(5456), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5456), - [anon_sym_decltype] = ACTIONS(5456), - [anon_sym_explicit] = ACTIONS(5456), - [anon_sym_typename] = ACTIONS(5456), - [anon_sym_private] = ACTIONS(5456), - [anon_sym_template] = ACTIONS(5456), - [anon_sym_operator] = ACTIONS(5456), - [anon_sym_friend] = ACTIONS(5456), - [anon_sym_public] = ACTIONS(5456), - [anon_sym_protected] = ACTIONS(5456), - [anon_sym_static_assert] = ACTIONS(5456), + [2152] = { + [sym_identifier] = ACTIONS(2703), + [aux_sym_preproc_def_token1] = ACTIONS(2703), + [aux_sym_preproc_if_token1] = ACTIONS(2703), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2703), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2703), + [sym_preproc_directive] = ACTIONS(2703), + [anon_sym_LPAREN2] = ACTIONS(2705), + [anon_sym_TILDE] = ACTIONS(2705), + [anon_sym_STAR] = ACTIONS(2705), + [anon_sym_AMP_AMP] = ACTIONS(2705), + [anon_sym_AMP] = ACTIONS(2703), + [anon_sym_SEMI] = ACTIONS(2705), + [anon_sym___extension__] = ACTIONS(2703), + [anon_sym_typedef] = ACTIONS(2703), + [anon_sym_virtual] = ACTIONS(2703), + [anon_sym_extern] = ACTIONS(2703), + [anon_sym___attribute__] = ACTIONS(2703), + [anon_sym___attribute] = ACTIONS(2703), + [anon_sym_using] = ACTIONS(2703), + [anon_sym_COLON_COLON] = ACTIONS(2705), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2705), + [anon_sym___declspec] = ACTIONS(2703), + [anon_sym___based] = ACTIONS(2703), + [anon_sym_RBRACE] = ACTIONS(2705), + [anon_sym_signed] = ACTIONS(2703), + [anon_sym_unsigned] = ACTIONS(2703), + [anon_sym_long] = ACTIONS(2703), + [anon_sym_short] = ACTIONS(2703), + [anon_sym_LBRACK] = ACTIONS(2703), + [anon_sym_static] = ACTIONS(2703), + [anon_sym_register] = ACTIONS(2703), + [anon_sym_inline] = ACTIONS(2703), + [anon_sym___inline] = ACTIONS(2703), + [anon_sym___inline__] = ACTIONS(2703), + [anon_sym___forceinline] = ACTIONS(2703), + [anon_sym_thread_local] = ACTIONS(2703), + [anon_sym___thread] = ACTIONS(2703), + [anon_sym_const] = ACTIONS(2703), + [anon_sym_constexpr] = ACTIONS(2703), + [anon_sym_volatile] = ACTIONS(2703), + [anon_sym_restrict] = ACTIONS(2703), + [anon_sym___restrict__] = ACTIONS(2703), + [anon_sym__Atomic] = ACTIONS(2703), + [anon_sym__Noreturn] = ACTIONS(2703), + [anon_sym_noreturn] = ACTIONS(2703), + [anon_sym__Nonnull] = ACTIONS(2703), + [anon_sym_mutable] = ACTIONS(2703), + [anon_sym_constinit] = ACTIONS(2703), + [anon_sym_consteval] = ACTIONS(2703), + [anon_sym_alignas] = ACTIONS(2703), + [anon_sym__Alignas] = ACTIONS(2703), + [sym_primitive_type] = ACTIONS(2703), + [anon_sym_enum] = ACTIONS(2703), + [anon_sym_class] = ACTIONS(2703), + [anon_sym_struct] = ACTIONS(2703), + [anon_sym_union] = ACTIONS(2703), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2703), + [anon_sym_decltype] = ACTIONS(2703), + [anon_sym_explicit] = ACTIONS(2703), + [anon_sym_typename] = ACTIONS(2703), + [anon_sym_private] = ACTIONS(2703), + [anon_sym_template] = ACTIONS(2703), + [anon_sym_operator] = ACTIONS(2703), + [anon_sym_friend] = ACTIONS(2703), + [anon_sym_public] = ACTIONS(2703), + [anon_sym_protected] = ACTIONS(2703), + [anon_sym_static_assert] = ACTIONS(2703), }, - [2129] = { - [sym_identifier] = ACTIONS(2787), - [aux_sym_preproc_def_token1] = ACTIONS(2787), - [aux_sym_preproc_if_token1] = ACTIONS(2787), - [aux_sym_preproc_if_token2] = ACTIONS(2787), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2787), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2787), - [sym_preproc_directive] = ACTIONS(2787), - [anon_sym_LPAREN2] = ACTIONS(2789), - [anon_sym_TILDE] = ACTIONS(2789), - [anon_sym_STAR] = ACTIONS(2789), - [anon_sym_AMP_AMP] = ACTIONS(2789), - [anon_sym_AMP] = ACTIONS(2787), - [anon_sym_SEMI] = ACTIONS(2789), - [anon_sym___extension__] = ACTIONS(2787), - [anon_sym_typedef] = ACTIONS(2787), - [anon_sym_virtual] = ACTIONS(2787), - [anon_sym_extern] = ACTIONS(2787), - [anon_sym___attribute__] = ACTIONS(2787), - [anon_sym___attribute] = ACTIONS(2787), - [anon_sym_using] = ACTIONS(2787), - [anon_sym_COLON_COLON] = ACTIONS(2789), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2789), - [anon_sym___declspec] = ACTIONS(2787), - [anon_sym___based] = ACTIONS(2787), - [anon_sym_signed] = ACTIONS(2787), - [anon_sym_unsigned] = ACTIONS(2787), - [anon_sym_long] = ACTIONS(2787), - [anon_sym_short] = ACTIONS(2787), - [anon_sym_LBRACK] = ACTIONS(2787), - [anon_sym_static] = ACTIONS(2787), - [anon_sym_register] = ACTIONS(2787), - [anon_sym_inline] = ACTIONS(2787), - [anon_sym___inline] = ACTIONS(2787), - [anon_sym___inline__] = ACTIONS(2787), - [anon_sym___forceinline] = ACTIONS(2787), - [anon_sym_thread_local] = ACTIONS(2787), - [anon_sym___thread] = ACTIONS(2787), - [anon_sym_const] = ACTIONS(2787), - [anon_sym_constexpr] = ACTIONS(2787), - [anon_sym_volatile] = ACTIONS(2787), - [anon_sym_restrict] = ACTIONS(2787), - [anon_sym___restrict__] = ACTIONS(2787), - [anon_sym__Atomic] = ACTIONS(2787), - [anon_sym__Noreturn] = ACTIONS(2787), - [anon_sym_noreturn] = ACTIONS(2787), - [anon_sym__Nonnull] = ACTIONS(2787), - [anon_sym_mutable] = ACTIONS(2787), - [anon_sym_constinit] = ACTIONS(2787), - [anon_sym_consteval] = ACTIONS(2787), - [anon_sym_alignas] = ACTIONS(2787), - [anon_sym__Alignas] = ACTIONS(2787), - [sym_primitive_type] = ACTIONS(2787), - [anon_sym_enum] = ACTIONS(2787), - [anon_sym_class] = ACTIONS(2787), - [anon_sym_struct] = ACTIONS(2787), - [anon_sym_union] = ACTIONS(2787), + [2153] = { + [sym_identifier] = ACTIONS(2895), + [aux_sym_preproc_def_token1] = ACTIONS(2895), + [aux_sym_preproc_if_token1] = ACTIONS(2895), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2895), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2895), + [sym_preproc_directive] = ACTIONS(2895), + [anon_sym_LPAREN2] = ACTIONS(2897), + [anon_sym_TILDE] = ACTIONS(2897), + [anon_sym_STAR] = ACTIONS(2897), + [anon_sym_AMP_AMP] = ACTIONS(2897), + [anon_sym_AMP] = ACTIONS(2895), + [anon_sym_SEMI] = ACTIONS(2897), + [anon_sym___extension__] = ACTIONS(2895), + [anon_sym_typedef] = ACTIONS(2895), + [anon_sym_virtual] = ACTIONS(2895), + [anon_sym_extern] = ACTIONS(2895), + [anon_sym___attribute__] = ACTIONS(2895), + [anon_sym___attribute] = ACTIONS(2895), + [anon_sym_using] = ACTIONS(2895), + [anon_sym_COLON_COLON] = ACTIONS(2897), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2897), + [anon_sym___declspec] = ACTIONS(2895), + [anon_sym___based] = ACTIONS(2895), + [anon_sym_RBRACE] = ACTIONS(2897), + [anon_sym_signed] = ACTIONS(2895), + [anon_sym_unsigned] = ACTIONS(2895), + [anon_sym_long] = ACTIONS(2895), + [anon_sym_short] = ACTIONS(2895), + [anon_sym_LBRACK] = ACTIONS(2895), + [anon_sym_static] = ACTIONS(2895), + [anon_sym_register] = ACTIONS(2895), + [anon_sym_inline] = ACTIONS(2895), + [anon_sym___inline] = ACTIONS(2895), + [anon_sym___inline__] = ACTIONS(2895), + [anon_sym___forceinline] = ACTIONS(2895), + [anon_sym_thread_local] = ACTIONS(2895), + [anon_sym___thread] = ACTIONS(2895), + [anon_sym_const] = ACTIONS(2895), + [anon_sym_constexpr] = ACTIONS(2895), + [anon_sym_volatile] = ACTIONS(2895), + [anon_sym_restrict] = ACTIONS(2895), + [anon_sym___restrict__] = ACTIONS(2895), + [anon_sym__Atomic] = ACTIONS(2895), + [anon_sym__Noreturn] = ACTIONS(2895), + [anon_sym_noreturn] = ACTIONS(2895), + [anon_sym__Nonnull] = ACTIONS(2895), + [anon_sym_mutable] = ACTIONS(2895), + [anon_sym_constinit] = ACTIONS(2895), + [anon_sym_consteval] = ACTIONS(2895), + [anon_sym_alignas] = ACTIONS(2895), + [anon_sym__Alignas] = ACTIONS(2895), + [sym_primitive_type] = ACTIONS(2895), + [anon_sym_enum] = ACTIONS(2895), + [anon_sym_class] = ACTIONS(2895), + [anon_sym_struct] = ACTIONS(2895), + [anon_sym_union] = ACTIONS(2895), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2787), - [anon_sym_decltype] = ACTIONS(2787), - [anon_sym_explicit] = ACTIONS(2787), - [anon_sym_typename] = ACTIONS(2787), - [anon_sym_private] = ACTIONS(2787), - [anon_sym_template] = ACTIONS(2787), - [anon_sym_operator] = ACTIONS(2787), - [anon_sym_friend] = ACTIONS(2787), - [anon_sym_public] = ACTIONS(2787), - [anon_sym_protected] = ACTIONS(2787), - [anon_sym_static_assert] = ACTIONS(2787), + [sym_auto] = ACTIONS(2895), + [anon_sym_decltype] = ACTIONS(2895), + [anon_sym_explicit] = ACTIONS(2895), + [anon_sym_typename] = ACTIONS(2895), + [anon_sym_private] = ACTIONS(2895), + [anon_sym_template] = ACTIONS(2895), + [anon_sym_operator] = ACTIONS(2895), + [anon_sym_friend] = ACTIONS(2895), + [anon_sym_public] = ACTIONS(2895), + [anon_sym_protected] = ACTIONS(2895), + [anon_sym_static_assert] = ACTIONS(2895), }, - [2130] = { + [2154] = { + [sym_identifier] = ACTIONS(5454), + [aux_sym_preproc_def_token1] = ACTIONS(5454), + [aux_sym_preproc_if_token1] = ACTIONS(5454), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5454), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5454), + [sym_preproc_directive] = ACTIONS(5454), + [anon_sym_LPAREN2] = ACTIONS(5456), + [anon_sym_TILDE] = ACTIONS(5456), + [anon_sym_STAR] = ACTIONS(5456), + [anon_sym_AMP_AMP] = ACTIONS(5456), + [anon_sym_AMP] = ACTIONS(5454), + [anon_sym_SEMI] = ACTIONS(5456), + [anon_sym___extension__] = ACTIONS(5454), + [anon_sym_typedef] = ACTIONS(5454), + [anon_sym_virtual] = ACTIONS(5454), + [anon_sym_extern] = ACTIONS(5454), + [anon_sym___attribute__] = ACTIONS(5454), + [anon_sym___attribute] = ACTIONS(5454), + [anon_sym_using] = ACTIONS(5454), + [anon_sym_COLON_COLON] = ACTIONS(5456), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5456), + [anon_sym___declspec] = ACTIONS(5454), + [anon_sym___based] = ACTIONS(5454), + [anon_sym_RBRACE] = ACTIONS(5456), + [anon_sym_signed] = ACTIONS(5454), + [anon_sym_unsigned] = ACTIONS(5454), + [anon_sym_long] = ACTIONS(5454), + [anon_sym_short] = ACTIONS(5454), + [anon_sym_LBRACK] = ACTIONS(5454), + [anon_sym_static] = ACTIONS(5454), + [anon_sym_register] = ACTIONS(5454), + [anon_sym_inline] = ACTIONS(5454), + [anon_sym___inline] = ACTIONS(5454), + [anon_sym___inline__] = ACTIONS(5454), + [anon_sym___forceinline] = ACTIONS(5454), + [anon_sym_thread_local] = ACTIONS(5454), + [anon_sym___thread] = ACTIONS(5454), + [anon_sym_const] = ACTIONS(5454), + [anon_sym_constexpr] = ACTIONS(5454), + [anon_sym_volatile] = ACTIONS(5454), + [anon_sym_restrict] = ACTIONS(5454), + [anon_sym___restrict__] = ACTIONS(5454), + [anon_sym__Atomic] = ACTIONS(5454), + [anon_sym__Noreturn] = ACTIONS(5454), + [anon_sym_noreturn] = ACTIONS(5454), + [anon_sym__Nonnull] = ACTIONS(5454), + [anon_sym_mutable] = ACTIONS(5454), + [anon_sym_constinit] = ACTIONS(5454), + [anon_sym_consteval] = ACTIONS(5454), + [anon_sym_alignas] = ACTIONS(5454), + [anon_sym__Alignas] = ACTIONS(5454), + [sym_primitive_type] = ACTIONS(5454), + [anon_sym_enum] = ACTIONS(5454), + [anon_sym_class] = ACTIONS(5454), + [anon_sym_struct] = ACTIONS(5454), + [anon_sym_union] = ACTIONS(5454), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5454), + [anon_sym_decltype] = ACTIONS(5454), + [anon_sym_explicit] = ACTIONS(5454), + [anon_sym_typename] = ACTIONS(5454), + [anon_sym_private] = ACTIONS(5454), + [anon_sym_template] = ACTIONS(5454), + [anon_sym_operator] = ACTIONS(5454), + [anon_sym_friend] = ACTIONS(5454), + [anon_sym_public] = ACTIONS(5454), + [anon_sym_protected] = ACTIONS(5454), + [anon_sym_static_assert] = ACTIONS(5454), + }, + [2155] = { [sym_identifier] = ACTIONS(5597), [aux_sym_preproc_def_token1] = ACTIONS(5597), [aux_sym_preproc_if_token1] = ACTIONS(5597), - [aux_sym_preproc_if_token2] = ACTIONS(5597), [aux_sym_preproc_ifdef_token1] = ACTIONS(5597), [aux_sym_preproc_ifdef_token2] = ACTIONS(5597), [sym_preproc_directive] = ACTIONS(5597), @@ -277970,6 +281386,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_LBRACK] = ACTIONS(5599), [anon_sym___declspec] = ACTIONS(5597), [anon_sym___based] = ACTIONS(5597), + [anon_sym_RBRACE] = ACTIONS(5599), [anon_sym_signed] = ACTIONS(5597), [anon_sym_unsigned] = ACTIONS(5597), [anon_sym_long] = ACTIONS(5597), @@ -278015,77 +281432,637 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(5597), [anon_sym_static_assert] = ACTIONS(5597), }, - [2131] = { - [sym_string_literal] = STATE(1992), - [sym_template_argument_list] = STATE(2338), - [sym_raw_string_literal] = STATE(1992), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4146), - [anon_sym_COMMA] = ACTIONS(4146), - [anon_sym_LPAREN2] = ACTIONS(4146), - [anon_sym_DASH] = ACTIONS(4154), - [anon_sym_PLUS] = ACTIONS(4154), - [anon_sym_STAR] = ACTIONS(4154), - [anon_sym_SLASH] = ACTIONS(4154), - [anon_sym_PERCENT] = ACTIONS(4154), - [anon_sym_PIPE_PIPE] = ACTIONS(4146), - [anon_sym_AMP_AMP] = ACTIONS(4146), - [anon_sym_PIPE] = ACTIONS(4154), - [anon_sym_CARET] = ACTIONS(4154), - [anon_sym_AMP] = ACTIONS(4154), - [anon_sym_EQ_EQ] = ACTIONS(4146), - [anon_sym_BANG_EQ] = ACTIONS(4146), - [anon_sym_GT] = ACTIONS(4154), - [anon_sym_GT_EQ] = ACTIONS(4146), - [anon_sym_LT_EQ] = ACTIONS(4154), - [anon_sym_LT] = ACTIONS(5373), - [anon_sym_LT_LT] = ACTIONS(4154), - [anon_sym_GT_GT] = ACTIONS(4154), - [anon_sym_SEMI] = ACTIONS(4146), - [anon_sym___attribute__] = ACTIONS(4146), - [anon_sym___attribute] = ACTIONS(4154), - [anon_sym_COLON_COLON] = ACTIONS(4167), - [anon_sym_LBRACE] = ACTIONS(4172), - [anon_sym_LBRACK] = ACTIONS(4146), - [anon_sym_EQ] = ACTIONS(4154), - [anon_sym_QMARK] = ACTIONS(4146), - [anon_sym_STAR_EQ] = ACTIONS(4146), - [anon_sym_SLASH_EQ] = ACTIONS(4146), - [anon_sym_PERCENT_EQ] = ACTIONS(4146), - [anon_sym_PLUS_EQ] = ACTIONS(4146), - [anon_sym_DASH_EQ] = ACTIONS(4146), - [anon_sym_LT_LT_EQ] = ACTIONS(4146), - [anon_sym_GT_GT_EQ] = ACTIONS(4146), - [anon_sym_AMP_EQ] = ACTIONS(4146), - [anon_sym_CARET_EQ] = ACTIONS(4146), - [anon_sym_PIPE_EQ] = ACTIONS(4146), - [anon_sym_and_eq] = ACTIONS(4146), - [anon_sym_or_eq] = ACTIONS(4146), - [anon_sym_xor_eq] = ACTIONS(4146), - [anon_sym_LT_EQ_GT] = ACTIONS(4146), - [anon_sym_or] = ACTIONS(4154), - [anon_sym_and] = ACTIONS(4154), - [anon_sym_bitor] = ACTIONS(4146), - [anon_sym_xor] = ACTIONS(4154), - [anon_sym_bitand] = ACTIONS(4146), - [anon_sym_not_eq] = ACTIONS(4146), - [anon_sym_DASH_DASH] = ACTIONS(4146), - [anon_sym_PLUS_PLUS] = ACTIONS(4146), - [anon_sym_DOT] = ACTIONS(4154), - [anon_sym_DOT_STAR] = ACTIONS(4146), - [anon_sym_DASH_GT] = ACTIONS(4146), - [anon_sym_L_DQUOTE] = ACTIONS(5954), - [anon_sym_u_DQUOTE] = ACTIONS(5954), - [anon_sym_U_DQUOTE] = ACTIONS(5954), - [anon_sym_u8_DQUOTE] = ACTIONS(5954), - [anon_sym_DQUOTE] = ACTIONS(5954), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5956), - [anon_sym_LR_DQUOTE] = ACTIONS(5956), - [anon_sym_uR_DQUOTE] = ACTIONS(5956), - [anon_sym_UR_DQUOTE] = ACTIONS(5956), - [anon_sym_u8R_DQUOTE] = ACTIONS(5956), + [2156] = { + [sym_identifier] = ACTIONS(3095), + [aux_sym_preproc_def_token1] = ACTIONS(3095), + [aux_sym_preproc_if_token1] = ACTIONS(3095), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3095), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3095), + [sym_preproc_directive] = ACTIONS(3095), + [anon_sym_LPAREN2] = ACTIONS(3097), + [anon_sym_TILDE] = ACTIONS(3097), + [anon_sym_STAR] = ACTIONS(3097), + [anon_sym_AMP_AMP] = ACTIONS(3097), + [anon_sym_AMP] = ACTIONS(3095), + [anon_sym_SEMI] = ACTIONS(3097), + [anon_sym___extension__] = ACTIONS(3095), + [anon_sym_typedef] = ACTIONS(3095), + [anon_sym_virtual] = ACTIONS(3095), + [anon_sym_extern] = ACTIONS(3095), + [anon_sym___attribute__] = ACTIONS(3095), + [anon_sym___attribute] = ACTIONS(3095), + [anon_sym_using] = ACTIONS(3095), + [anon_sym_COLON_COLON] = ACTIONS(3097), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3097), + [anon_sym___declspec] = ACTIONS(3095), + [anon_sym___based] = ACTIONS(3095), + [anon_sym_RBRACE] = ACTIONS(3097), + [anon_sym_signed] = ACTIONS(3095), + [anon_sym_unsigned] = ACTIONS(3095), + [anon_sym_long] = ACTIONS(3095), + [anon_sym_short] = ACTIONS(3095), + [anon_sym_LBRACK] = ACTIONS(3095), + [anon_sym_static] = ACTIONS(3095), + [anon_sym_register] = ACTIONS(3095), + [anon_sym_inline] = ACTIONS(3095), + [anon_sym___inline] = ACTIONS(3095), + [anon_sym___inline__] = ACTIONS(3095), + [anon_sym___forceinline] = ACTIONS(3095), + [anon_sym_thread_local] = ACTIONS(3095), + [anon_sym___thread] = ACTIONS(3095), + [anon_sym_const] = ACTIONS(3095), + [anon_sym_constexpr] = ACTIONS(3095), + [anon_sym_volatile] = ACTIONS(3095), + [anon_sym_restrict] = ACTIONS(3095), + [anon_sym___restrict__] = ACTIONS(3095), + [anon_sym__Atomic] = ACTIONS(3095), + [anon_sym__Noreturn] = ACTIONS(3095), + [anon_sym_noreturn] = ACTIONS(3095), + [anon_sym__Nonnull] = ACTIONS(3095), + [anon_sym_mutable] = ACTIONS(3095), + [anon_sym_constinit] = ACTIONS(3095), + [anon_sym_consteval] = ACTIONS(3095), + [anon_sym_alignas] = ACTIONS(3095), + [anon_sym__Alignas] = ACTIONS(3095), + [sym_primitive_type] = ACTIONS(3095), + [anon_sym_enum] = ACTIONS(3095), + [anon_sym_class] = ACTIONS(3095), + [anon_sym_struct] = ACTIONS(3095), + [anon_sym_union] = ACTIONS(3095), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3095), + [anon_sym_decltype] = ACTIONS(3095), + [anon_sym_explicit] = ACTIONS(3095), + [anon_sym_typename] = ACTIONS(3095), + [anon_sym_private] = ACTIONS(3095), + [anon_sym_template] = ACTIONS(3095), + [anon_sym_operator] = ACTIONS(3095), + [anon_sym_friend] = ACTIONS(3095), + [anon_sym_public] = ACTIONS(3095), + [anon_sym_protected] = ACTIONS(3095), + [anon_sym_static_assert] = ACTIONS(3095), }, - [2132] = { + [2157] = { + [sym_identifier] = ACTIONS(5605), + [aux_sym_preproc_def_token1] = ACTIONS(5605), + [aux_sym_preproc_if_token1] = ACTIONS(5605), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5605), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5605), + [sym_preproc_directive] = ACTIONS(5605), + [anon_sym_LPAREN2] = ACTIONS(5607), + [anon_sym_TILDE] = ACTIONS(5607), + [anon_sym_STAR] = ACTIONS(5607), + [anon_sym_AMP_AMP] = ACTIONS(5607), + [anon_sym_AMP] = ACTIONS(5605), + [anon_sym_SEMI] = ACTIONS(5607), + [anon_sym___extension__] = ACTIONS(5605), + [anon_sym_typedef] = ACTIONS(5605), + [anon_sym_virtual] = ACTIONS(5605), + [anon_sym_extern] = ACTIONS(5605), + [anon_sym___attribute__] = ACTIONS(5605), + [anon_sym___attribute] = ACTIONS(5605), + [anon_sym_using] = ACTIONS(5605), + [anon_sym_COLON_COLON] = ACTIONS(5607), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5607), + [anon_sym___declspec] = ACTIONS(5605), + [anon_sym___based] = ACTIONS(5605), + [anon_sym_RBRACE] = ACTIONS(5607), + [anon_sym_signed] = ACTIONS(5605), + [anon_sym_unsigned] = ACTIONS(5605), + [anon_sym_long] = ACTIONS(5605), + [anon_sym_short] = ACTIONS(5605), + [anon_sym_LBRACK] = ACTIONS(5605), + [anon_sym_static] = ACTIONS(5605), + [anon_sym_register] = ACTIONS(5605), + [anon_sym_inline] = ACTIONS(5605), + [anon_sym___inline] = ACTIONS(5605), + [anon_sym___inline__] = ACTIONS(5605), + [anon_sym___forceinline] = ACTIONS(5605), + [anon_sym_thread_local] = ACTIONS(5605), + [anon_sym___thread] = ACTIONS(5605), + [anon_sym_const] = ACTIONS(5605), + [anon_sym_constexpr] = ACTIONS(5605), + [anon_sym_volatile] = ACTIONS(5605), + [anon_sym_restrict] = ACTIONS(5605), + [anon_sym___restrict__] = ACTIONS(5605), + [anon_sym__Atomic] = ACTIONS(5605), + [anon_sym__Noreturn] = ACTIONS(5605), + [anon_sym_noreturn] = ACTIONS(5605), + [anon_sym__Nonnull] = ACTIONS(5605), + [anon_sym_mutable] = ACTIONS(5605), + [anon_sym_constinit] = ACTIONS(5605), + [anon_sym_consteval] = ACTIONS(5605), + [anon_sym_alignas] = ACTIONS(5605), + [anon_sym__Alignas] = ACTIONS(5605), + [sym_primitive_type] = ACTIONS(5605), + [anon_sym_enum] = ACTIONS(5605), + [anon_sym_class] = ACTIONS(5605), + [anon_sym_struct] = ACTIONS(5605), + [anon_sym_union] = ACTIONS(5605), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5605), + [anon_sym_decltype] = ACTIONS(5605), + [anon_sym_explicit] = ACTIONS(5605), + [anon_sym_typename] = ACTIONS(5605), + [anon_sym_private] = ACTIONS(5605), + [anon_sym_template] = ACTIONS(5605), + [anon_sym_operator] = ACTIONS(5605), + [anon_sym_friend] = ACTIONS(5605), + [anon_sym_public] = ACTIONS(5605), + [anon_sym_protected] = ACTIONS(5605), + [anon_sym_static_assert] = ACTIONS(5605), + }, + [2158] = { + [sym_identifier] = ACTIONS(5585), + [aux_sym_preproc_def_token1] = ACTIONS(5585), + [aux_sym_preproc_if_token1] = ACTIONS(5585), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5585), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5585), + [sym_preproc_directive] = ACTIONS(5585), + [anon_sym_LPAREN2] = ACTIONS(5587), + [anon_sym_TILDE] = ACTIONS(5587), + [anon_sym_STAR] = ACTIONS(5587), + [anon_sym_AMP_AMP] = ACTIONS(5587), + [anon_sym_AMP] = ACTIONS(5585), + [anon_sym_SEMI] = ACTIONS(5587), + [anon_sym___extension__] = ACTIONS(5585), + [anon_sym_typedef] = ACTIONS(5585), + [anon_sym_virtual] = ACTIONS(5585), + [anon_sym_extern] = ACTIONS(5585), + [anon_sym___attribute__] = ACTIONS(5585), + [anon_sym___attribute] = ACTIONS(5585), + [anon_sym_using] = ACTIONS(5585), + [anon_sym_COLON_COLON] = ACTIONS(5587), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5587), + [anon_sym___declspec] = ACTIONS(5585), + [anon_sym___based] = ACTIONS(5585), + [anon_sym_RBRACE] = ACTIONS(5587), + [anon_sym_signed] = ACTIONS(5585), + [anon_sym_unsigned] = ACTIONS(5585), + [anon_sym_long] = ACTIONS(5585), + [anon_sym_short] = ACTIONS(5585), + [anon_sym_LBRACK] = ACTIONS(5585), + [anon_sym_static] = ACTIONS(5585), + [anon_sym_register] = ACTIONS(5585), + [anon_sym_inline] = ACTIONS(5585), + [anon_sym___inline] = ACTIONS(5585), + [anon_sym___inline__] = ACTIONS(5585), + [anon_sym___forceinline] = ACTIONS(5585), + [anon_sym_thread_local] = ACTIONS(5585), + [anon_sym___thread] = ACTIONS(5585), + [anon_sym_const] = ACTIONS(5585), + [anon_sym_constexpr] = ACTIONS(5585), + [anon_sym_volatile] = ACTIONS(5585), + [anon_sym_restrict] = ACTIONS(5585), + [anon_sym___restrict__] = ACTIONS(5585), + [anon_sym__Atomic] = ACTIONS(5585), + [anon_sym__Noreturn] = ACTIONS(5585), + [anon_sym_noreturn] = ACTIONS(5585), + [anon_sym__Nonnull] = ACTIONS(5585), + [anon_sym_mutable] = ACTIONS(5585), + [anon_sym_constinit] = ACTIONS(5585), + [anon_sym_consteval] = ACTIONS(5585), + [anon_sym_alignas] = ACTIONS(5585), + [anon_sym__Alignas] = ACTIONS(5585), + [sym_primitive_type] = ACTIONS(5585), + [anon_sym_enum] = ACTIONS(5585), + [anon_sym_class] = ACTIONS(5585), + [anon_sym_struct] = ACTIONS(5585), + [anon_sym_union] = ACTIONS(5585), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5585), + [anon_sym_decltype] = ACTIONS(5585), + [anon_sym_explicit] = ACTIONS(5585), + [anon_sym_typename] = ACTIONS(5585), + [anon_sym_private] = ACTIONS(5585), + [anon_sym_template] = ACTIONS(5585), + [anon_sym_operator] = ACTIONS(5585), + [anon_sym_friend] = ACTIONS(5585), + [anon_sym_public] = ACTIONS(5585), + [anon_sym_protected] = ACTIONS(5585), + [anon_sym_static_assert] = ACTIONS(5585), + }, + [2159] = { + [sym_identifier] = ACTIONS(5609), + [aux_sym_preproc_def_token1] = ACTIONS(5609), + [aux_sym_preproc_if_token1] = ACTIONS(5609), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5609), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5609), + [sym_preproc_directive] = ACTIONS(5609), + [anon_sym_LPAREN2] = ACTIONS(5611), + [anon_sym_TILDE] = ACTIONS(5611), + [anon_sym_STAR] = ACTIONS(5611), + [anon_sym_AMP_AMP] = ACTIONS(5611), + [anon_sym_AMP] = ACTIONS(5609), + [anon_sym_SEMI] = ACTIONS(5611), + [anon_sym___extension__] = ACTIONS(5609), + [anon_sym_typedef] = ACTIONS(5609), + [anon_sym_virtual] = ACTIONS(5609), + [anon_sym_extern] = ACTIONS(5609), + [anon_sym___attribute__] = ACTIONS(5609), + [anon_sym___attribute] = ACTIONS(5609), + [anon_sym_using] = ACTIONS(5609), + [anon_sym_COLON_COLON] = ACTIONS(5611), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5611), + [anon_sym___declspec] = ACTIONS(5609), + [anon_sym___based] = ACTIONS(5609), + [anon_sym_RBRACE] = ACTIONS(5611), + [anon_sym_signed] = ACTIONS(5609), + [anon_sym_unsigned] = ACTIONS(5609), + [anon_sym_long] = ACTIONS(5609), + [anon_sym_short] = ACTIONS(5609), + [anon_sym_LBRACK] = ACTIONS(5609), + [anon_sym_static] = ACTIONS(5609), + [anon_sym_register] = ACTIONS(5609), + [anon_sym_inline] = ACTIONS(5609), + [anon_sym___inline] = ACTIONS(5609), + [anon_sym___inline__] = ACTIONS(5609), + [anon_sym___forceinline] = ACTIONS(5609), + [anon_sym_thread_local] = ACTIONS(5609), + [anon_sym___thread] = ACTIONS(5609), + [anon_sym_const] = ACTIONS(5609), + [anon_sym_constexpr] = ACTIONS(5609), + [anon_sym_volatile] = ACTIONS(5609), + [anon_sym_restrict] = ACTIONS(5609), + [anon_sym___restrict__] = ACTIONS(5609), + [anon_sym__Atomic] = ACTIONS(5609), + [anon_sym__Noreturn] = ACTIONS(5609), + [anon_sym_noreturn] = ACTIONS(5609), + [anon_sym__Nonnull] = ACTIONS(5609), + [anon_sym_mutable] = ACTIONS(5609), + [anon_sym_constinit] = ACTIONS(5609), + [anon_sym_consteval] = ACTIONS(5609), + [anon_sym_alignas] = ACTIONS(5609), + [anon_sym__Alignas] = ACTIONS(5609), + [sym_primitive_type] = ACTIONS(5609), + [anon_sym_enum] = ACTIONS(5609), + [anon_sym_class] = ACTIONS(5609), + [anon_sym_struct] = ACTIONS(5609), + [anon_sym_union] = ACTIONS(5609), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5609), + [anon_sym_decltype] = ACTIONS(5609), + [anon_sym_explicit] = ACTIONS(5609), + [anon_sym_typename] = ACTIONS(5609), + [anon_sym_private] = ACTIONS(5609), + [anon_sym_template] = ACTIONS(5609), + [anon_sym_operator] = ACTIONS(5609), + [anon_sym_friend] = ACTIONS(5609), + [anon_sym_public] = ACTIONS(5609), + [anon_sym_protected] = ACTIONS(5609), + [anon_sym_static_assert] = ACTIONS(5609), + }, + [2160] = { + [sym_attribute_specifier] = STATE(2330), + [sym_enumerator_list] = STATE(2247), + [sym_identifier] = ACTIONS(6072), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6074), + [anon_sym_COMMA] = ACTIONS(6074), + [anon_sym_RPAREN] = ACTIONS(6074), + [aux_sym_preproc_if_token2] = ACTIONS(6074), + [aux_sym_preproc_else_token1] = ACTIONS(6074), + [aux_sym_preproc_elif_token1] = ACTIONS(6072), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6074), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6074), + [anon_sym_LPAREN2] = ACTIONS(6074), + [anon_sym_DASH] = ACTIONS(6072), + [anon_sym_PLUS] = ACTIONS(6072), + [anon_sym_STAR] = ACTIONS(6072), + [anon_sym_SLASH] = ACTIONS(6072), + [anon_sym_PERCENT] = ACTIONS(6072), + [anon_sym_PIPE_PIPE] = ACTIONS(6074), + [anon_sym_AMP_AMP] = ACTIONS(6074), + [anon_sym_PIPE] = ACTIONS(6072), + [anon_sym_CARET] = ACTIONS(6072), + [anon_sym_AMP] = ACTIONS(6072), + [anon_sym_EQ_EQ] = ACTIONS(6074), + [anon_sym_BANG_EQ] = ACTIONS(6074), + [anon_sym_GT] = ACTIONS(6072), + [anon_sym_GT_EQ] = ACTIONS(6074), + [anon_sym_LT_EQ] = ACTIONS(6072), + [anon_sym_LT] = ACTIONS(6072), + [anon_sym_LT_LT] = ACTIONS(6072), + [anon_sym_GT_GT] = ACTIONS(6072), + [anon_sym_SEMI] = ACTIONS(6074), + [anon_sym___attribute__] = ACTIONS(5561), + [anon_sym___attribute] = ACTIONS(5561), + [anon_sym_COLON] = ACTIONS(6074), + [anon_sym_LBRACE] = ACTIONS(6070), + [anon_sym_RBRACE] = ACTIONS(6074), + [anon_sym_LBRACK] = ACTIONS(6074), + [anon_sym_RBRACK] = ACTIONS(6074), + [anon_sym_EQ] = ACTIONS(6072), + [anon_sym_QMARK] = ACTIONS(6074), + [anon_sym_STAR_EQ] = ACTIONS(6074), + [anon_sym_SLASH_EQ] = ACTIONS(6074), + [anon_sym_PERCENT_EQ] = ACTIONS(6074), + [anon_sym_PLUS_EQ] = ACTIONS(6074), + [anon_sym_DASH_EQ] = ACTIONS(6074), + [anon_sym_LT_LT_EQ] = ACTIONS(6074), + [anon_sym_GT_GT_EQ] = ACTIONS(6074), + [anon_sym_AMP_EQ] = ACTIONS(6074), + [anon_sym_CARET_EQ] = ACTIONS(6074), + [anon_sym_PIPE_EQ] = ACTIONS(6074), + [anon_sym_and_eq] = ACTIONS(6072), + [anon_sym_or_eq] = ACTIONS(6072), + [anon_sym_xor_eq] = ACTIONS(6072), + [anon_sym_LT_EQ_GT] = ACTIONS(6074), + [anon_sym_or] = ACTIONS(6072), + [anon_sym_and] = ACTIONS(6072), + [anon_sym_bitor] = ACTIONS(6072), + [anon_sym_xor] = ACTIONS(6072), + [anon_sym_bitand] = ACTIONS(6072), + [anon_sym_not_eq] = ACTIONS(6072), + [anon_sym_DASH_DASH] = ACTIONS(6074), + [anon_sym_PLUS_PLUS] = ACTIONS(6074), + [anon_sym_DOT] = ACTIONS(6072), + [anon_sym_DOT_STAR] = ACTIONS(6074), + [anon_sym_DASH_GT] = ACTIONS(6074), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6072), + [anon_sym_decltype] = ACTIONS(6072), + }, + [2161] = { + [sym_identifier] = ACTIONS(3112), + [aux_sym_preproc_def_token1] = ACTIONS(3112), + [aux_sym_preproc_if_token1] = ACTIONS(3112), + [aux_sym_preproc_if_token2] = ACTIONS(3112), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3112), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3112), + [sym_preproc_directive] = ACTIONS(3112), + [anon_sym_LPAREN2] = ACTIONS(3114), + [anon_sym_TILDE] = ACTIONS(3114), + [anon_sym_STAR] = ACTIONS(3114), + [anon_sym_AMP_AMP] = ACTIONS(3114), + [anon_sym_AMP] = ACTIONS(3112), + [anon_sym_SEMI] = ACTIONS(3114), + [anon_sym___extension__] = ACTIONS(3112), + [anon_sym_typedef] = ACTIONS(3112), + [anon_sym_virtual] = ACTIONS(3112), + [anon_sym_extern] = ACTIONS(3112), + [anon_sym___attribute__] = ACTIONS(3112), + [anon_sym___attribute] = ACTIONS(3112), + [anon_sym_using] = ACTIONS(3112), + [anon_sym_COLON_COLON] = ACTIONS(3114), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3114), + [anon_sym___declspec] = ACTIONS(3112), + [anon_sym___based] = ACTIONS(3112), + [anon_sym_signed] = ACTIONS(3112), + [anon_sym_unsigned] = ACTIONS(3112), + [anon_sym_long] = ACTIONS(3112), + [anon_sym_short] = ACTIONS(3112), + [anon_sym_LBRACK] = ACTIONS(3112), + [anon_sym_static] = ACTIONS(3112), + [anon_sym_register] = ACTIONS(3112), + [anon_sym_inline] = ACTIONS(3112), + [anon_sym___inline] = ACTIONS(3112), + [anon_sym___inline__] = ACTIONS(3112), + [anon_sym___forceinline] = ACTIONS(3112), + [anon_sym_thread_local] = ACTIONS(3112), + [anon_sym___thread] = ACTIONS(3112), + [anon_sym_const] = ACTIONS(3112), + [anon_sym_constexpr] = ACTIONS(3112), + [anon_sym_volatile] = ACTIONS(3112), + [anon_sym_restrict] = ACTIONS(3112), + [anon_sym___restrict__] = ACTIONS(3112), + [anon_sym__Atomic] = ACTIONS(3112), + [anon_sym__Noreturn] = ACTIONS(3112), + [anon_sym_noreturn] = ACTIONS(3112), + [anon_sym__Nonnull] = ACTIONS(3112), + [anon_sym_mutable] = ACTIONS(3112), + [anon_sym_constinit] = ACTIONS(3112), + [anon_sym_consteval] = ACTIONS(3112), + [anon_sym_alignas] = ACTIONS(3112), + [anon_sym__Alignas] = ACTIONS(3112), + [sym_primitive_type] = ACTIONS(3112), + [anon_sym_enum] = ACTIONS(3112), + [anon_sym_class] = ACTIONS(3112), + [anon_sym_struct] = ACTIONS(3112), + [anon_sym_union] = ACTIONS(3112), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3112), + [anon_sym_decltype] = ACTIONS(3112), + [anon_sym_explicit] = ACTIONS(3112), + [anon_sym_typename] = ACTIONS(3112), + [anon_sym_private] = ACTIONS(3112), + [anon_sym_template] = ACTIONS(3112), + [anon_sym_operator] = ACTIONS(3112), + [anon_sym_friend] = ACTIONS(3112), + [anon_sym_public] = ACTIONS(3112), + [anon_sym_protected] = ACTIONS(3112), + [anon_sym_static_assert] = ACTIONS(3112), + }, + [2162] = { + [sym_identifier] = ACTIONS(3116), + [aux_sym_preproc_def_token1] = ACTIONS(3116), + [aux_sym_preproc_if_token1] = ACTIONS(3116), + [aux_sym_preproc_if_token2] = ACTIONS(3116), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3116), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3116), + [sym_preproc_directive] = ACTIONS(3116), + [anon_sym_LPAREN2] = ACTIONS(3118), + [anon_sym_TILDE] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(3118), + [anon_sym_AMP_AMP] = ACTIONS(3118), + [anon_sym_AMP] = ACTIONS(3116), + [anon_sym_SEMI] = ACTIONS(3118), + [anon_sym___extension__] = ACTIONS(3116), + [anon_sym_typedef] = ACTIONS(3116), + [anon_sym_virtual] = ACTIONS(3116), + [anon_sym_extern] = ACTIONS(3116), + [anon_sym___attribute__] = ACTIONS(3116), + [anon_sym___attribute] = ACTIONS(3116), + [anon_sym_using] = ACTIONS(3116), + [anon_sym_COLON_COLON] = ACTIONS(3118), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3118), + [anon_sym___declspec] = ACTIONS(3116), + [anon_sym___based] = ACTIONS(3116), + [anon_sym_signed] = ACTIONS(3116), + [anon_sym_unsigned] = ACTIONS(3116), + [anon_sym_long] = ACTIONS(3116), + [anon_sym_short] = ACTIONS(3116), + [anon_sym_LBRACK] = ACTIONS(3116), + [anon_sym_static] = ACTIONS(3116), + [anon_sym_register] = ACTIONS(3116), + [anon_sym_inline] = ACTIONS(3116), + [anon_sym___inline] = ACTIONS(3116), + [anon_sym___inline__] = ACTIONS(3116), + [anon_sym___forceinline] = ACTIONS(3116), + [anon_sym_thread_local] = ACTIONS(3116), + [anon_sym___thread] = ACTIONS(3116), + [anon_sym_const] = ACTIONS(3116), + [anon_sym_constexpr] = ACTIONS(3116), + [anon_sym_volatile] = ACTIONS(3116), + [anon_sym_restrict] = ACTIONS(3116), + [anon_sym___restrict__] = ACTIONS(3116), + [anon_sym__Atomic] = ACTIONS(3116), + [anon_sym__Noreturn] = ACTIONS(3116), + [anon_sym_noreturn] = ACTIONS(3116), + [anon_sym__Nonnull] = ACTIONS(3116), + [anon_sym_mutable] = ACTIONS(3116), + [anon_sym_constinit] = ACTIONS(3116), + [anon_sym_consteval] = ACTIONS(3116), + [anon_sym_alignas] = ACTIONS(3116), + [anon_sym__Alignas] = ACTIONS(3116), + [sym_primitive_type] = ACTIONS(3116), + [anon_sym_enum] = ACTIONS(3116), + [anon_sym_class] = ACTIONS(3116), + [anon_sym_struct] = ACTIONS(3116), + [anon_sym_union] = ACTIONS(3116), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3116), + [anon_sym_decltype] = ACTIONS(3116), + [anon_sym_explicit] = ACTIONS(3116), + [anon_sym_typename] = ACTIONS(3116), + [anon_sym_private] = ACTIONS(3116), + [anon_sym_template] = ACTIONS(3116), + [anon_sym_operator] = ACTIONS(3116), + [anon_sym_friend] = ACTIONS(3116), + [anon_sym_public] = ACTIONS(3116), + [anon_sym_protected] = ACTIONS(3116), + [anon_sym_static_assert] = ACTIONS(3116), + }, + [2163] = { + [sym_identifier] = ACTIONS(2839), + [aux_sym_preproc_def_token1] = ACTIONS(2839), + [aux_sym_preproc_if_token1] = ACTIONS(2839), + [aux_sym_preproc_if_token2] = ACTIONS(2839), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2839), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2839), + [sym_preproc_directive] = ACTIONS(2839), + [anon_sym_LPAREN2] = ACTIONS(2841), + [anon_sym_TILDE] = ACTIONS(2841), + [anon_sym_STAR] = ACTIONS(2841), + [anon_sym_AMP_AMP] = ACTIONS(2841), + [anon_sym_AMP] = ACTIONS(2839), + [anon_sym_SEMI] = ACTIONS(2841), + [anon_sym___extension__] = ACTIONS(2839), + [anon_sym_typedef] = ACTIONS(2839), + [anon_sym_virtual] = ACTIONS(2839), + [anon_sym_extern] = ACTIONS(2839), + [anon_sym___attribute__] = ACTIONS(2839), + [anon_sym___attribute] = ACTIONS(2839), + [anon_sym_using] = ACTIONS(2839), + [anon_sym_COLON_COLON] = ACTIONS(2841), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2841), + [anon_sym___declspec] = ACTIONS(2839), + [anon_sym___based] = ACTIONS(2839), + [anon_sym_signed] = ACTIONS(2839), + [anon_sym_unsigned] = ACTIONS(2839), + [anon_sym_long] = ACTIONS(2839), + [anon_sym_short] = ACTIONS(2839), + [anon_sym_LBRACK] = ACTIONS(2839), + [anon_sym_static] = ACTIONS(2839), + [anon_sym_register] = ACTIONS(2839), + [anon_sym_inline] = ACTIONS(2839), + [anon_sym___inline] = ACTIONS(2839), + [anon_sym___inline__] = ACTIONS(2839), + [anon_sym___forceinline] = ACTIONS(2839), + [anon_sym_thread_local] = ACTIONS(2839), + [anon_sym___thread] = ACTIONS(2839), + [anon_sym_const] = ACTIONS(2839), + [anon_sym_constexpr] = ACTIONS(2839), + [anon_sym_volatile] = ACTIONS(2839), + [anon_sym_restrict] = ACTIONS(2839), + [anon_sym___restrict__] = ACTIONS(2839), + [anon_sym__Atomic] = ACTIONS(2839), + [anon_sym__Noreturn] = ACTIONS(2839), + [anon_sym_noreturn] = ACTIONS(2839), + [anon_sym__Nonnull] = ACTIONS(2839), + [anon_sym_mutable] = ACTIONS(2839), + [anon_sym_constinit] = ACTIONS(2839), + [anon_sym_consteval] = ACTIONS(2839), + [anon_sym_alignas] = ACTIONS(2839), + [anon_sym__Alignas] = ACTIONS(2839), + [sym_primitive_type] = ACTIONS(2839), + [anon_sym_enum] = ACTIONS(2839), + [anon_sym_class] = ACTIONS(2839), + [anon_sym_struct] = ACTIONS(2839), + [anon_sym_union] = ACTIONS(2839), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2839), + [anon_sym_decltype] = ACTIONS(2839), + [anon_sym_explicit] = ACTIONS(2839), + [anon_sym_typename] = ACTIONS(2839), + [anon_sym_private] = ACTIONS(2839), + [anon_sym_template] = ACTIONS(2839), + [anon_sym_operator] = ACTIONS(2839), + [anon_sym_friend] = ACTIONS(2839), + [anon_sym_public] = ACTIONS(2839), + [anon_sym_protected] = ACTIONS(2839), + [anon_sym_static_assert] = ACTIONS(2839), + }, + [2164] = { + [sym_identifier] = ACTIONS(3083), + [aux_sym_preproc_def_token1] = ACTIONS(3083), + [aux_sym_preproc_if_token1] = ACTIONS(3083), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3083), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3083), + [sym_preproc_directive] = ACTIONS(3083), + [anon_sym_LPAREN2] = ACTIONS(3085), + [anon_sym_TILDE] = ACTIONS(3085), + [anon_sym_STAR] = ACTIONS(3085), + [anon_sym_AMP_AMP] = ACTIONS(3085), + [anon_sym_AMP] = ACTIONS(3083), + [anon_sym_SEMI] = ACTIONS(3085), + [anon_sym___extension__] = ACTIONS(3083), + [anon_sym_typedef] = ACTIONS(3083), + [anon_sym_virtual] = ACTIONS(3083), + [anon_sym_extern] = ACTIONS(3083), + [anon_sym___attribute__] = ACTIONS(3083), + [anon_sym___attribute] = ACTIONS(3083), + [anon_sym_using] = ACTIONS(3083), + [anon_sym_COLON_COLON] = ACTIONS(3085), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3085), + [anon_sym___declspec] = ACTIONS(3083), + [anon_sym___based] = ACTIONS(3083), + [anon_sym_RBRACE] = ACTIONS(3085), + [anon_sym_signed] = ACTIONS(3083), + [anon_sym_unsigned] = ACTIONS(3083), + [anon_sym_long] = ACTIONS(3083), + [anon_sym_short] = ACTIONS(3083), + [anon_sym_LBRACK] = ACTIONS(3083), + [anon_sym_static] = ACTIONS(3083), + [anon_sym_register] = ACTIONS(3083), + [anon_sym_inline] = ACTIONS(3083), + [anon_sym___inline] = ACTIONS(3083), + [anon_sym___inline__] = ACTIONS(3083), + [anon_sym___forceinline] = ACTIONS(3083), + [anon_sym_thread_local] = ACTIONS(3083), + [anon_sym___thread] = ACTIONS(3083), + [anon_sym_const] = ACTIONS(3083), + [anon_sym_constexpr] = ACTIONS(3083), + [anon_sym_volatile] = ACTIONS(3083), + [anon_sym_restrict] = ACTIONS(3083), + [anon_sym___restrict__] = ACTIONS(3083), + [anon_sym__Atomic] = ACTIONS(3083), + [anon_sym__Noreturn] = ACTIONS(3083), + [anon_sym_noreturn] = ACTIONS(3083), + [anon_sym__Nonnull] = ACTIONS(3083), + [anon_sym_mutable] = ACTIONS(3083), + [anon_sym_constinit] = ACTIONS(3083), + [anon_sym_consteval] = ACTIONS(3083), + [anon_sym_alignas] = ACTIONS(3083), + [anon_sym__Alignas] = ACTIONS(3083), + [sym_primitive_type] = ACTIONS(3083), + [anon_sym_enum] = ACTIONS(3083), + [anon_sym_class] = ACTIONS(3083), + [anon_sym_struct] = ACTIONS(3083), + [anon_sym_union] = ACTIONS(3083), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3083), + [anon_sym_decltype] = ACTIONS(3083), + [anon_sym_explicit] = ACTIONS(3083), + [anon_sym_typename] = ACTIONS(3083), + [anon_sym_private] = ACTIONS(3083), + [anon_sym_template] = ACTIONS(3083), + [anon_sym_operator] = ACTIONS(3083), + [anon_sym_friend] = ACTIONS(3083), + [anon_sym_public] = ACTIONS(3083), + [anon_sym_protected] = ACTIONS(3083), + [anon_sym_static_assert] = ACTIONS(3083), + }, + [2165] = { [sym_identifier] = ACTIONS(2791), [aux_sym_preproc_def_token1] = ACTIONS(2791), [aux_sym_preproc_if_token1] = ACTIONS(2791), @@ -278119,817 +282096,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_register] = ACTIONS(2791), [anon_sym_inline] = ACTIONS(2791), [anon_sym___inline] = ACTIONS(2791), - [anon_sym___inline__] = ACTIONS(2791), - [anon_sym___forceinline] = ACTIONS(2791), - [anon_sym_thread_local] = ACTIONS(2791), - [anon_sym___thread] = ACTIONS(2791), - [anon_sym_const] = ACTIONS(2791), - [anon_sym_constexpr] = ACTIONS(2791), - [anon_sym_volatile] = ACTIONS(2791), - [anon_sym_restrict] = ACTIONS(2791), - [anon_sym___restrict__] = ACTIONS(2791), - [anon_sym__Atomic] = ACTIONS(2791), - [anon_sym__Noreturn] = ACTIONS(2791), - [anon_sym_noreturn] = ACTIONS(2791), - [anon_sym__Nonnull] = ACTIONS(2791), - [anon_sym_mutable] = ACTIONS(2791), - [anon_sym_constinit] = ACTIONS(2791), - [anon_sym_consteval] = ACTIONS(2791), - [anon_sym_alignas] = ACTIONS(2791), - [anon_sym__Alignas] = ACTIONS(2791), - [sym_primitive_type] = ACTIONS(2791), - [anon_sym_enum] = ACTIONS(2791), - [anon_sym_class] = ACTIONS(2791), - [anon_sym_struct] = ACTIONS(2791), - [anon_sym_union] = ACTIONS(2791), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2791), - [anon_sym_decltype] = ACTIONS(2791), - [anon_sym_explicit] = ACTIONS(2791), - [anon_sym_typename] = ACTIONS(2791), - [anon_sym_private] = ACTIONS(2791), - [anon_sym_template] = ACTIONS(2791), - [anon_sym_operator] = ACTIONS(2791), - [anon_sym_friend] = ACTIONS(2791), - [anon_sym_public] = ACTIONS(2791), - [anon_sym_protected] = ACTIONS(2791), - [anon_sym_static_assert] = ACTIONS(2791), - }, - [2133] = { - [sym_identifier] = ACTIONS(5533), - [aux_sym_preproc_def_token1] = ACTIONS(5533), - [aux_sym_preproc_if_token1] = ACTIONS(5533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5533), - [sym_preproc_directive] = ACTIONS(5533), - [anon_sym_LPAREN2] = ACTIONS(5535), - [anon_sym_TILDE] = ACTIONS(5535), - [anon_sym_STAR] = ACTIONS(5535), - [anon_sym_AMP_AMP] = ACTIONS(5535), - [anon_sym_AMP] = ACTIONS(5533), - [anon_sym_SEMI] = ACTIONS(5535), - [anon_sym___extension__] = ACTIONS(5533), - [anon_sym_typedef] = ACTIONS(5533), - [anon_sym_virtual] = ACTIONS(5533), - [anon_sym_extern] = ACTIONS(5533), - [anon_sym___attribute__] = ACTIONS(5533), - [anon_sym___attribute] = ACTIONS(5533), - [anon_sym_using] = ACTIONS(5533), - [anon_sym_COLON_COLON] = ACTIONS(5535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5535), - [anon_sym___declspec] = ACTIONS(5533), - [anon_sym___based] = ACTIONS(5533), - [anon_sym_RBRACE] = ACTIONS(5535), - [anon_sym_signed] = ACTIONS(5533), - [anon_sym_unsigned] = ACTIONS(5533), - [anon_sym_long] = ACTIONS(5533), - [anon_sym_short] = ACTIONS(5533), - [anon_sym_LBRACK] = ACTIONS(5533), - [anon_sym_static] = ACTIONS(5533), - [anon_sym_register] = ACTIONS(5533), - [anon_sym_inline] = ACTIONS(5533), - [anon_sym___inline] = ACTIONS(5533), - [anon_sym___inline__] = ACTIONS(5533), - [anon_sym___forceinline] = ACTIONS(5533), - [anon_sym_thread_local] = ACTIONS(5533), - [anon_sym___thread] = ACTIONS(5533), - [anon_sym_const] = ACTIONS(5533), - [anon_sym_constexpr] = ACTIONS(5533), - [anon_sym_volatile] = ACTIONS(5533), - [anon_sym_restrict] = ACTIONS(5533), - [anon_sym___restrict__] = ACTIONS(5533), - [anon_sym__Atomic] = ACTIONS(5533), - [anon_sym__Noreturn] = ACTIONS(5533), - [anon_sym_noreturn] = ACTIONS(5533), - [anon_sym__Nonnull] = ACTIONS(5533), - [anon_sym_mutable] = ACTIONS(5533), - [anon_sym_constinit] = ACTIONS(5533), - [anon_sym_consteval] = ACTIONS(5533), - [anon_sym_alignas] = ACTIONS(5533), - [anon_sym__Alignas] = ACTIONS(5533), - [sym_primitive_type] = ACTIONS(5533), - [anon_sym_enum] = ACTIONS(5533), - [anon_sym_class] = ACTIONS(5533), - [anon_sym_struct] = ACTIONS(5533), - [anon_sym_union] = ACTIONS(5533), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5533), - [anon_sym_decltype] = ACTIONS(5533), - [anon_sym_explicit] = ACTIONS(5533), - [anon_sym_typename] = ACTIONS(5533), - [anon_sym_private] = ACTIONS(5533), - [anon_sym_template] = ACTIONS(5533), - [anon_sym_operator] = ACTIONS(5533), - [anon_sym_friend] = ACTIONS(5533), - [anon_sym_public] = ACTIONS(5533), - [anon_sym_protected] = ACTIONS(5533), - [anon_sym_static_assert] = ACTIONS(5533), - }, - [2134] = { - [sym_identifier] = ACTIONS(2855), - [aux_sym_preproc_def_token1] = ACTIONS(2855), - [aux_sym_preproc_if_token1] = ACTIONS(2855), - [aux_sym_preproc_if_token2] = ACTIONS(2855), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2855), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2855), - [sym_preproc_directive] = ACTIONS(2855), - [anon_sym_LPAREN2] = ACTIONS(2857), - [anon_sym_TILDE] = ACTIONS(2857), - [anon_sym_STAR] = ACTIONS(2857), - [anon_sym_AMP_AMP] = ACTIONS(2857), - [anon_sym_AMP] = ACTIONS(2855), - [anon_sym_SEMI] = ACTIONS(2857), - [anon_sym___extension__] = ACTIONS(2855), - [anon_sym_typedef] = ACTIONS(2855), - [anon_sym_virtual] = ACTIONS(2855), - [anon_sym_extern] = ACTIONS(2855), - [anon_sym___attribute__] = ACTIONS(2855), - [anon_sym___attribute] = ACTIONS(2855), - [anon_sym_using] = ACTIONS(2855), - [anon_sym_COLON_COLON] = ACTIONS(2857), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2857), - [anon_sym___declspec] = ACTIONS(2855), - [anon_sym___based] = ACTIONS(2855), - [anon_sym_signed] = ACTIONS(2855), - [anon_sym_unsigned] = ACTIONS(2855), - [anon_sym_long] = ACTIONS(2855), - [anon_sym_short] = ACTIONS(2855), - [anon_sym_LBRACK] = ACTIONS(2855), - [anon_sym_static] = ACTIONS(2855), - [anon_sym_register] = ACTIONS(2855), - [anon_sym_inline] = ACTIONS(2855), - [anon_sym___inline] = ACTIONS(2855), - [anon_sym___inline__] = ACTIONS(2855), - [anon_sym___forceinline] = ACTIONS(2855), - [anon_sym_thread_local] = ACTIONS(2855), - [anon_sym___thread] = ACTIONS(2855), - [anon_sym_const] = ACTIONS(2855), - [anon_sym_constexpr] = ACTIONS(2855), - [anon_sym_volatile] = ACTIONS(2855), - [anon_sym_restrict] = ACTIONS(2855), - [anon_sym___restrict__] = ACTIONS(2855), - [anon_sym__Atomic] = ACTIONS(2855), - [anon_sym__Noreturn] = ACTIONS(2855), - [anon_sym_noreturn] = ACTIONS(2855), - [anon_sym__Nonnull] = ACTIONS(2855), - [anon_sym_mutable] = ACTIONS(2855), - [anon_sym_constinit] = ACTIONS(2855), - [anon_sym_consteval] = ACTIONS(2855), - [anon_sym_alignas] = ACTIONS(2855), - [anon_sym__Alignas] = ACTIONS(2855), - [sym_primitive_type] = ACTIONS(2855), - [anon_sym_enum] = ACTIONS(2855), - [anon_sym_class] = ACTIONS(2855), - [anon_sym_struct] = ACTIONS(2855), - [anon_sym_union] = ACTIONS(2855), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2855), - [anon_sym_decltype] = ACTIONS(2855), - [anon_sym_explicit] = ACTIONS(2855), - [anon_sym_typename] = ACTIONS(2855), - [anon_sym_private] = ACTIONS(2855), - [anon_sym_template] = ACTIONS(2855), - [anon_sym_operator] = ACTIONS(2855), - [anon_sym_friend] = ACTIONS(2855), - [anon_sym_public] = ACTIONS(2855), - [anon_sym_protected] = ACTIONS(2855), - [anon_sym_static_assert] = ACTIONS(2855), - }, - [2135] = { - [sym_identifier] = ACTIONS(6028), - [anon_sym_LPAREN2] = ACTIONS(6030), - [anon_sym_TILDE] = ACTIONS(6030), - [anon_sym_STAR] = ACTIONS(6030), - [anon_sym_AMP_AMP] = ACTIONS(6030), - [anon_sym_AMP] = ACTIONS(6028), - [anon_sym___extension__] = ACTIONS(6028), - [anon_sym_virtual] = ACTIONS(6028), - [anon_sym_extern] = ACTIONS(6028), - [anon_sym___attribute__] = ACTIONS(6028), - [anon_sym___attribute] = ACTIONS(6028), - [anon_sym_using] = ACTIONS(6028), - [anon_sym_COLON_COLON] = ACTIONS(6030), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6030), - [anon_sym___declspec] = ACTIONS(6028), - [anon_sym___based] = ACTIONS(6028), - [anon_sym___cdecl] = ACTIONS(6028), - [anon_sym___clrcall] = ACTIONS(6028), - [anon_sym___stdcall] = ACTIONS(6028), - [anon_sym___fastcall] = ACTIONS(6028), - [anon_sym___thiscall] = ACTIONS(6028), - [anon_sym___vectorcall] = ACTIONS(6028), - [anon_sym_LBRACE] = ACTIONS(6030), - [anon_sym_signed] = ACTIONS(6028), - [anon_sym_unsigned] = ACTIONS(6028), - [anon_sym_long] = ACTIONS(6028), - [anon_sym_short] = ACTIONS(6028), - [anon_sym_LBRACK] = ACTIONS(6028), - [anon_sym_static] = ACTIONS(6028), - [anon_sym_register] = ACTIONS(6028), - [anon_sym_inline] = ACTIONS(6028), - [anon_sym___inline] = ACTIONS(6028), - [anon_sym___inline__] = ACTIONS(6028), - [anon_sym___forceinline] = ACTIONS(6028), - [anon_sym_thread_local] = ACTIONS(6028), - [anon_sym___thread] = ACTIONS(6028), - [anon_sym_const] = ACTIONS(6028), - [anon_sym_constexpr] = ACTIONS(6028), - [anon_sym_volatile] = ACTIONS(6028), - [anon_sym_restrict] = ACTIONS(6028), - [anon_sym___restrict__] = ACTIONS(6028), - [anon_sym__Atomic] = ACTIONS(6028), - [anon_sym__Noreturn] = ACTIONS(6028), - [anon_sym_noreturn] = ACTIONS(6028), - [anon_sym__Nonnull] = ACTIONS(6028), - [anon_sym_mutable] = ACTIONS(6028), - [anon_sym_constinit] = ACTIONS(6028), - [anon_sym_consteval] = ACTIONS(6028), - [anon_sym_alignas] = ACTIONS(6028), - [anon_sym__Alignas] = ACTIONS(6028), - [sym_primitive_type] = ACTIONS(6028), - [anon_sym_enum] = ACTIONS(6028), - [anon_sym_class] = ACTIONS(6028), - [anon_sym_struct] = ACTIONS(6028), - [anon_sym_union] = ACTIONS(6028), - [anon_sym_DASH_GT] = ACTIONS(6030), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6028), - [anon_sym_decltype] = ACTIONS(6028), - [anon_sym_explicit] = ACTIONS(6028), - [anon_sym_typename] = ACTIONS(6028), - [anon_sym_template] = ACTIONS(6028), - [anon_sym_operator] = ACTIONS(6028), - [anon_sym_friend] = ACTIONS(6028), - [anon_sym_noexcept] = ACTIONS(6028), - [anon_sym_throw] = ACTIONS(6028), - [anon_sym_concept] = ACTIONS(6028), - [anon_sym_requires] = ACTIONS(6028), - }, - [2136] = { - [sym__declaration_modifiers] = STATE(3269), - [sym_attribute_specifier] = STATE(3269), - [sym_attribute_declaration] = STATE(3269), - [sym_ms_declspec_modifier] = STATE(3269), - [sym_storage_class_specifier] = STATE(3269), - [sym_type_qualifier] = STATE(3269), - [sym_alignas_qualifier] = STATE(1658), - [sym_type_specifier] = STATE(2385), - [sym_sized_type_specifier] = STATE(2523), - [sym_enum_specifier] = STATE(2523), - [sym_struct_specifier] = STATE(2523), - [sym_union_specifier] = STATE(2523), - [sym_placeholder_type_specifier] = STATE(2523), - [sym_decltype_auto] = STATE(2501), - [sym_decltype] = STATE(2406), - [sym_class_specifier] = STATE(2523), - [sym_dependent_type] = STATE(2523), - [sym_template_type] = STATE(2406), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(6627), - [sym_qualified_type_identifier] = STATE(3015), - [aux_sym__declaration_specifiers_repeat1] = STATE(3269), - [aux_sym_sized_type_specifier_repeat1] = STATE(2359), - [sym_identifier] = ACTIONS(5218), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(5958), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5220), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2999), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1452), - }, - [2137] = { - [sym_identifier] = ACTIONS(2799), - [aux_sym_preproc_def_token1] = ACTIONS(2799), - [aux_sym_preproc_if_token1] = ACTIONS(2799), - [aux_sym_preproc_if_token2] = ACTIONS(2799), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2799), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2799), - [sym_preproc_directive] = ACTIONS(2799), - [anon_sym_LPAREN2] = ACTIONS(2801), - [anon_sym_TILDE] = ACTIONS(2801), - [anon_sym_STAR] = ACTIONS(2801), - [anon_sym_AMP_AMP] = ACTIONS(2801), - [anon_sym_AMP] = ACTIONS(2799), - [anon_sym_SEMI] = ACTIONS(2801), - [anon_sym___extension__] = ACTIONS(2799), - [anon_sym_typedef] = ACTIONS(2799), - [anon_sym_virtual] = ACTIONS(2799), - [anon_sym_extern] = ACTIONS(2799), - [anon_sym___attribute__] = ACTIONS(2799), - [anon_sym___attribute] = ACTIONS(2799), - [anon_sym_using] = ACTIONS(2799), - [anon_sym_COLON_COLON] = ACTIONS(2801), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2801), - [anon_sym___declspec] = ACTIONS(2799), - [anon_sym___based] = ACTIONS(2799), - [anon_sym_signed] = ACTIONS(2799), - [anon_sym_unsigned] = ACTIONS(2799), - [anon_sym_long] = ACTIONS(2799), - [anon_sym_short] = ACTIONS(2799), - [anon_sym_LBRACK] = ACTIONS(2799), - [anon_sym_static] = ACTIONS(2799), - [anon_sym_register] = ACTIONS(2799), - [anon_sym_inline] = ACTIONS(2799), - [anon_sym___inline] = ACTIONS(2799), - [anon_sym___inline__] = ACTIONS(2799), - [anon_sym___forceinline] = ACTIONS(2799), - [anon_sym_thread_local] = ACTIONS(2799), - [anon_sym___thread] = ACTIONS(2799), - [anon_sym_const] = ACTIONS(2799), - [anon_sym_constexpr] = ACTIONS(2799), - [anon_sym_volatile] = ACTIONS(2799), - [anon_sym_restrict] = ACTIONS(2799), - [anon_sym___restrict__] = ACTIONS(2799), - [anon_sym__Atomic] = ACTIONS(2799), - [anon_sym__Noreturn] = ACTIONS(2799), - [anon_sym_noreturn] = ACTIONS(2799), - [anon_sym__Nonnull] = ACTIONS(2799), - [anon_sym_mutable] = ACTIONS(2799), - [anon_sym_constinit] = ACTIONS(2799), - [anon_sym_consteval] = ACTIONS(2799), - [anon_sym_alignas] = ACTIONS(2799), - [anon_sym__Alignas] = ACTIONS(2799), - [sym_primitive_type] = ACTIONS(2799), - [anon_sym_enum] = ACTIONS(2799), - [anon_sym_class] = ACTIONS(2799), - [anon_sym_struct] = ACTIONS(2799), - [anon_sym_union] = ACTIONS(2799), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2799), - [anon_sym_decltype] = ACTIONS(2799), - [anon_sym_explicit] = ACTIONS(2799), - [anon_sym_typename] = ACTIONS(2799), - [anon_sym_private] = ACTIONS(2799), - [anon_sym_template] = ACTIONS(2799), - [anon_sym_operator] = ACTIONS(2799), - [anon_sym_friend] = ACTIONS(2799), - [anon_sym_public] = ACTIONS(2799), - [anon_sym_protected] = ACTIONS(2799), - [anon_sym_static_assert] = ACTIONS(2799), - }, - [2138] = { - [sym_identifier] = ACTIONS(2807), - [aux_sym_preproc_def_token1] = ACTIONS(2807), - [aux_sym_preproc_if_token1] = ACTIONS(2807), - [aux_sym_preproc_if_token2] = ACTIONS(2807), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2807), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2807), - [sym_preproc_directive] = ACTIONS(2807), - [anon_sym_LPAREN2] = ACTIONS(2809), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_STAR] = ACTIONS(2809), - [anon_sym_AMP_AMP] = ACTIONS(2809), - [anon_sym_AMP] = ACTIONS(2807), - [anon_sym_SEMI] = ACTIONS(2809), - [anon_sym___extension__] = ACTIONS(2807), - [anon_sym_typedef] = ACTIONS(2807), - [anon_sym_virtual] = ACTIONS(2807), - [anon_sym_extern] = ACTIONS(2807), - [anon_sym___attribute__] = ACTIONS(2807), - [anon_sym___attribute] = ACTIONS(2807), - [anon_sym_using] = ACTIONS(2807), - [anon_sym_COLON_COLON] = ACTIONS(2809), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2809), - [anon_sym___declspec] = ACTIONS(2807), - [anon_sym___based] = ACTIONS(2807), - [anon_sym_signed] = ACTIONS(2807), - [anon_sym_unsigned] = ACTIONS(2807), - [anon_sym_long] = ACTIONS(2807), - [anon_sym_short] = ACTIONS(2807), - [anon_sym_LBRACK] = ACTIONS(2807), - [anon_sym_static] = ACTIONS(2807), - [anon_sym_register] = ACTIONS(2807), - [anon_sym_inline] = ACTIONS(2807), - [anon_sym___inline] = ACTIONS(2807), - [anon_sym___inline__] = ACTIONS(2807), - [anon_sym___forceinline] = ACTIONS(2807), - [anon_sym_thread_local] = ACTIONS(2807), - [anon_sym___thread] = ACTIONS(2807), - [anon_sym_const] = ACTIONS(2807), - [anon_sym_constexpr] = ACTIONS(2807), - [anon_sym_volatile] = ACTIONS(2807), - [anon_sym_restrict] = ACTIONS(2807), - [anon_sym___restrict__] = ACTIONS(2807), - [anon_sym__Atomic] = ACTIONS(2807), - [anon_sym__Noreturn] = ACTIONS(2807), - [anon_sym_noreturn] = ACTIONS(2807), - [anon_sym__Nonnull] = ACTIONS(2807), - [anon_sym_mutable] = ACTIONS(2807), - [anon_sym_constinit] = ACTIONS(2807), - [anon_sym_consteval] = ACTIONS(2807), - [anon_sym_alignas] = ACTIONS(2807), - [anon_sym__Alignas] = ACTIONS(2807), - [sym_primitive_type] = ACTIONS(2807), - [anon_sym_enum] = ACTIONS(2807), - [anon_sym_class] = ACTIONS(2807), - [anon_sym_struct] = ACTIONS(2807), - [anon_sym_union] = ACTIONS(2807), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2807), - [anon_sym_decltype] = ACTIONS(2807), - [anon_sym_explicit] = ACTIONS(2807), - [anon_sym_typename] = ACTIONS(2807), - [anon_sym_private] = ACTIONS(2807), - [anon_sym_template] = ACTIONS(2807), - [anon_sym_operator] = ACTIONS(2807), - [anon_sym_friend] = ACTIONS(2807), - [anon_sym_public] = ACTIONS(2807), - [anon_sym_protected] = ACTIONS(2807), - [anon_sym_static_assert] = ACTIONS(2807), - }, - [2139] = { - [sym_identifier] = ACTIONS(3108), - [aux_sym_preproc_def_token1] = ACTIONS(3108), - [aux_sym_preproc_if_token1] = ACTIONS(3108), - [aux_sym_preproc_if_token2] = ACTIONS(3108), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3108), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3108), - [sym_preproc_directive] = ACTIONS(3108), - [anon_sym_LPAREN2] = ACTIONS(3110), - [anon_sym_TILDE] = ACTIONS(3110), - [anon_sym_STAR] = ACTIONS(3110), - [anon_sym_AMP_AMP] = ACTIONS(3110), - [anon_sym_AMP] = ACTIONS(3108), - [anon_sym_SEMI] = ACTIONS(3110), - [anon_sym___extension__] = ACTIONS(3108), - [anon_sym_typedef] = ACTIONS(3108), - [anon_sym_virtual] = ACTIONS(3108), - [anon_sym_extern] = ACTIONS(3108), - [anon_sym___attribute__] = ACTIONS(3108), - [anon_sym___attribute] = ACTIONS(3108), - [anon_sym_using] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(3110), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3110), - [anon_sym___declspec] = ACTIONS(3108), - [anon_sym___based] = ACTIONS(3108), - [anon_sym_signed] = ACTIONS(3108), - [anon_sym_unsigned] = ACTIONS(3108), - [anon_sym_long] = ACTIONS(3108), - [anon_sym_short] = ACTIONS(3108), - [anon_sym_LBRACK] = ACTIONS(3108), - [anon_sym_static] = ACTIONS(3108), - [anon_sym_register] = ACTIONS(3108), - [anon_sym_inline] = ACTIONS(3108), - [anon_sym___inline] = ACTIONS(3108), - [anon_sym___inline__] = ACTIONS(3108), - [anon_sym___forceinline] = ACTIONS(3108), - [anon_sym_thread_local] = ACTIONS(3108), - [anon_sym___thread] = ACTIONS(3108), - [anon_sym_const] = ACTIONS(3108), - [anon_sym_constexpr] = ACTIONS(3108), - [anon_sym_volatile] = ACTIONS(3108), - [anon_sym_restrict] = ACTIONS(3108), - [anon_sym___restrict__] = ACTIONS(3108), - [anon_sym__Atomic] = ACTIONS(3108), - [anon_sym__Noreturn] = ACTIONS(3108), - [anon_sym_noreturn] = ACTIONS(3108), - [anon_sym__Nonnull] = ACTIONS(3108), - [anon_sym_mutable] = ACTIONS(3108), - [anon_sym_constinit] = ACTIONS(3108), - [anon_sym_consteval] = ACTIONS(3108), - [anon_sym_alignas] = ACTIONS(3108), - [anon_sym__Alignas] = ACTIONS(3108), - [sym_primitive_type] = ACTIONS(3108), - [anon_sym_enum] = ACTIONS(3108), - [anon_sym_class] = ACTIONS(3108), - [anon_sym_struct] = ACTIONS(3108), - [anon_sym_union] = ACTIONS(3108), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3108), - [anon_sym_decltype] = ACTIONS(3108), - [anon_sym_explicit] = ACTIONS(3108), - [anon_sym_typename] = ACTIONS(3108), - [anon_sym_private] = ACTIONS(3108), - [anon_sym_template] = ACTIONS(3108), - [anon_sym_operator] = ACTIONS(3108), - [anon_sym_friend] = ACTIONS(3108), - [anon_sym_public] = ACTIONS(3108), - [anon_sym_protected] = ACTIONS(3108), - [anon_sym_static_assert] = ACTIONS(3108), - }, - [2140] = { - [sym_identifier] = ACTIONS(3039), - [aux_sym_preproc_def_token1] = ACTIONS(3039), - [aux_sym_preproc_if_token1] = ACTIONS(3039), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3039), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3039), - [sym_preproc_directive] = ACTIONS(3039), - [anon_sym_LPAREN2] = ACTIONS(3041), - [anon_sym_TILDE] = ACTIONS(3041), - [anon_sym_STAR] = ACTIONS(3041), - [anon_sym_AMP_AMP] = ACTIONS(3041), - [anon_sym_AMP] = ACTIONS(3039), - [anon_sym_SEMI] = ACTIONS(3041), - [anon_sym___extension__] = ACTIONS(3039), - [anon_sym_typedef] = ACTIONS(3039), - [anon_sym_virtual] = ACTIONS(3039), - [anon_sym_extern] = ACTIONS(3039), - [anon_sym___attribute__] = ACTIONS(3039), - [anon_sym___attribute] = ACTIONS(3039), - [anon_sym_using] = ACTIONS(3039), - [anon_sym_COLON_COLON] = ACTIONS(3041), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3041), - [anon_sym___declspec] = ACTIONS(3039), - [anon_sym___based] = ACTIONS(3039), - [anon_sym_RBRACE] = ACTIONS(3041), - [anon_sym_signed] = ACTIONS(3039), - [anon_sym_unsigned] = ACTIONS(3039), - [anon_sym_long] = ACTIONS(3039), - [anon_sym_short] = ACTIONS(3039), - [anon_sym_LBRACK] = ACTIONS(3039), - [anon_sym_static] = ACTIONS(3039), - [anon_sym_register] = ACTIONS(3039), - [anon_sym_inline] = ACTIONS(3039), - [anon_sym___inline] = ACTIONS(3039), - [anon_sym___inline__] = ACTIONS(3039), - [anon_sym___forceinline] = ACTIONS(3039), - [anon_sym_thread_local] = ACTIONS(3039), - [anon_sym___thread] = ACTIONS(3039), - [anon_sym_const] = ACTIONS(3039), - [anon_sym_constexpr] = ACTIONS(3039), - [anon_sym_volatile] = ACTIONS(3039), - [anon_sym_restrict] = ACTIONS(3039), - [anon_sym___restrict__] = ACTIONS(3039), - [anon_sym__Atomic] = ACTIONS(3039), - [anon_sym__Noreturn] = ACTIONS(3039), - [anon_sym_noreturn] = ACTIONS(3039), - [anon_sym__Nonnull] = ACTIONS(3039), - [anon_sym_mutable] = ACTIONS(3039), - [anon_sym_constinit] = ACTIONS(3039), - [anon_sym_consteval] = ACTIONS(3039), - [anon_sym_alignas] = ACTIONS(3039), - [anon_sym__Alignas] = ACTIONS(3039), - [sym_primitive_type] = ACTIONS(3039), - [anon_sym_enum] = ACTIONS(3039), - [anon_sym_class] = ACTIONS(3039), - [anon_sym_struct] = ACTIONS(3039), - [anon_sym_union] = ACTIONS(3039), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3039), - [anon_sym_decltype] = ACTIONS(3039), - [anon_sym_explicit] = ACTIONS(3039), - [anon_sym_typename] = ACTIONS(3039), - [anon_sym_private] = ACTIONS(3039), - [anon_sym_template] = ACTIONS(3039), - [anon_sym_operator] = ACTIONS(3039), - [anon_sym_friend] = ACTIONS(3039), - [anon_sym_public] = ACTIONS(3039), - [anon_sym_protected] = ACTIONS(3039), - [anon_sym_static_assert] = ACTIONS(3039), - }, - [2141] = { - [sym_identifier] = ACTIONS(3063), - [aux_sym_preproc_def_token1] = ACTIONS(3063), - [aux_sym_preproc_if_token1] = ACTIONS(3063), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3063), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3063), - [sym_preproc_directive] = ACTIONS(3063), - [anon_sym_LPAREN2] = ACTIONS(3065), - [anon_sym_TILDE] = ACTIONS(3065), - [anon_sym_STAR] = ACTIONS(3065), - [anon_sym_AMP_AMP] = ACTIONS(3065), - [anon_sym_AMP] = ACTIONS(3063), - [anon_sym_SEMI] = ACTIONS(3065), - [anon_sym___extension__] = ACTIONS(3063), - [anon_sym_typedef] = ACTIONS(3063), - [anon_sym_virtual] = ACTIONS(3063), - [anon_sym_extern] = ACTIONS(3063), - [anon_sym___attribute__] = ACTIONS(3063), - [anon_sym___attribute] = ACTIONS(3063), - [anon_sym_using] = ACTIONS(3063), - [anon_sym_COLON_COLON] = ACTIONS(3065), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3065), - [anon_sym___declspec] = ACTIONS(3063), - [anon_sym___based] = ACTIONS(3063), - [anon_sym_RBRACE] = ACTIONS(3065), - [anon_sym_signed] = ACTIONS(3063), - [anon_sym_unsigned] = ACTIONS(3063), - [anon_sym_long] = ACTIONS(3063), - [anon_sym_short] = ACTIONS(3063), - [anon_sym_LBRACK] = ACTIONS(3063), - [anon_sym_static] = ACTIONS(3063), - [anon_sym_register] = ACTIONS(3063), - [anon_sym_inline] = ACTIONS(3063), - [anon_sym___inline] = ACTIONS(3063), - [anon_sym___inline__] = ACTIONS(3063), - [anon_sym___forceinline] = ACTIONS(3063), - [anon_sym_thread_local] = ACTIONS(3063), - [anon_sym___thread] = ACTIONS(3063), - [anon_sym_const] = ACTIONS(3063), - [anon_sym_constexpr] = ACTIONS(3063), - [anon_sym_volatile] = ACTIONS(3063), - [anon_sym_restrict] = ACTIONS(3063), - [anon_sym___restrict__] = ACTIONS(3063), - [anon_sym__Atomic] = ACTIONS(3063), - [anon_sym__Noreturn] = ACTIONS(3063), - [anon_sym_noreturn] = ACTIONS(3063), - [anon_sym__Nonnull] = ACTIONS(3063), - [anon_sym_mutable] = ACTIONS(3063), - [anon_sym_constinit] = ACTIONS(3063), - [anon_sym_consteval] = ACTIONS(3063), - [anon_sym_alignas] = ACTIONS(3063), - [anon_sym__Alignas] = ACTIONS(3063), - [sym_primitive_type] = ACTIONS(3063), - [anon_sym_enum] = ACTIONS(3063), - [anon_sym_class] = ACTIONS(3063), - [anon_sym_struct] = ACTIONS(3063), - [anon_sym_union] = ACTIONS(3063), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3063), - [anon_sym_decltype] = ACTIONS(3063), - [anon_sym_explicit] = ACTIONS(3063), - [anon_sym_typename] = ACTIONS(3063), - [anon_sym_private] = ACTIONS(3063), - [anon_sym_template] = ACTIONS(3063), - [anon_sym_operator] = ACTIONS(3063), - [anon_sym_friend] = ACTIONS(3063), - [anon_sym_public] = ACTIONS(3063), - [anon_sym_protected] = ACTIONS(3063), - [anon_sym_static_assert] = ACTIONS(3063), - }, - [2142] = { - [sym_identifier] = ACTIONS(3063), - [aux_sym_preproc_def_token1] = ACTIONS(3063), - [aux_sym_preproc_if_token1] = ACTIONS(3063), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3063), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3063), - [sym_preproc_directive] = ACTIONS(3063), - [anon_sym_LPAREN2] = ACTIONS(3065), - [anon_sym_TILDE] = ACTIONS(3065), - [anon_sym_STAR] = ACTIONS(3065), - [anon_sym_AMP_AMP] = ACTIONS(3065), - [anon_sym_AMP] = ACTIONS(3063), - [anon_sym_SEMI] = ACTIONS(3065), - [anon_sym___extension__] = ACTIONS(3063), - [anon_sym_typedef] = ACTIONS(3063), - [anon_sym_virtual] = ACTIONS(3063), - [anon_sym_extern] = ACTIONS(3063), - [anon_sym___attribute__] = ACTIONS(3063), - [anon_sym___attribute] = ACTIONS(3063), - [anon_sym_using] = ACTIONS(3063), - [anon_sym_COLON_COLON] = ACTIONS(3065), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3065), - [anon_sym___declspec] = ACTIONS(3063), - [anon_sym___based] = ACTIONS(3063), - [anon_sym_RBRACE] = ACTIONS(3065), - [anon_sym_signed] = ACTIONS(3063), - [anon_sym_unsigned] = ACTIONS(3063), - [anon_sym_long] = ACTIONS(3063), - [anon_sym_short] = ACTIONS(3063), - [anon_sym_LBRACK] = ACTIONS(3063), - [anon_sym_static] = ACTIONS(3063), - [anon_sym_register] = ACTIONS(3063), - [anon_sym_inline] = ACTIONS(3063), - [anon_sym___inline] = ACTIONS(3063), - [anon_sym___inline__] = ACTIONS(3063), - [anon_sym___forceinline] = ACTIONS(3063), - [anon_sym_thread_local] = ACTIONS(3063), - [anon_sym___thread] = ACTIONS(3063), - [anon_sym_const] = ACTIONS(3063), - [anon_sym_constexpr] = ACTIONS(3063), - [anon_sym_volatile] = ACTIONS(3063), - [anon_sym_restrict] = ACTIONS(3063), - [anon_sym___restrict__] = ACTIONS(3063), - [anon_sym__Atomic] = ACTIONS(3063), - [anon_sym__Noreturn] = ACTIONS(3063), - [anon_sym_noreturn] = ACTIONS(3063), - [anon_sym__Nonnull] = ACTIONS(3063), - [anon_sym_mutable] = ACTIONS(3063), - [anon_sym_constinit] = ACTIONS(3063), - [anon_sym_consteval] = ACTIONS(3063), - [anon_sym_alignas] = ACTIONS(3063), - [anon_sym__Alignas] = ACTIONS(3063), - [sym_primitive_type] = ACTIONS(3063), - [anon_sym_enum] = ACTIONS(3063), - [anon_sym_class] = ACTIONS(3063), - [anon_sym_struct] = ACTIONS(3063), - [anon_sym_union] = ACTIONS(3063), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3063), - [anon_sym_decltype] = ACTIONS(3063), - [anon_sym_explicit] = ACTIONS(3063), - [anon_sym_typename] = ACTIONS(3063), - [anon_sym_private] = ACTIONS(3063), - [anon_sym_template] = ACTIONS(3063), - [anon_sym_operator] = ACTIONS(3063), - [anon_sym_friend] = ACTIONS(3063), - [anon_sym_public] = ACTIONS(3063), - [anon_sym_protected] = ACTIONS(3063), - [anon_sym_static_assert] = ACTIONS(3063), - }, - [2143] = { - [sym_identifier] = ACTIONS(2815), - [aux_sym_preproc_def_token1] = ACTIONS(2815), - [aux_sym_preproc_if_token1] = ACTIONS(2815), - [aux_sym_preproc_if_token2] = ACTIONS(2815), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2815), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2815), - [sym_preproc_directive] = ACTIONS(2815), - [anon_sym_LPAREN2] = ACTIONS(2817), - [anon_sym_TILDE] = ACTIONS(2817), - [anon_sym_STAR] = ACTIONS(2817), - [anon_sym_AMP_AMP] = ACTIONS(2817), - [anon_sym_AMP] = ACTIONS(2815), - [anon_sym_SEMI] = ACTIONS(2817), - [anon_sym___extension__] = ACTIONS(2815), - [anon_sym_typedef] = ACTIONS(2815), - [anon_sym_virtual] = ACTIONS(2815), - [anon_sym_extern] = ACTIONS(2815), - [anon_sym___attribute__] = ACTIONS(2815), - [anon_sym___attribute] = ACTIONS(2815), - [anon_sym_using] = ACTIONS(2815), - [anon_sym_COLON_COLON] = ACTIONS(2817), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2817), - [anon_sym___declspec] = ACTIONS(2815), - [anon_sym___based] = ACTIONS(2815), - [anon_sym_signed] = ACTIONS(2815), - [anon_sym_unsigned] = ACTIONS(2815), - [anon_sym_long] = ACTIONS(2815), - [anon_sym_short] = ACTIONS(2815), - [anon_sym_LBRACK] = ACTIONS(2815), - [anon_sym_static] = ACTIONS(2815), - [anon_sym_register] = ACTIONS(2815), - [anon_sym_inline] = ACTIONS(2815), - [anon_sym___inline] = ACTIONS(2815), - [anon_sym___inline__] = ACTIONS(2815), - [anon_sym___forceinline] = ACTIONS(2815), - [anon_sym_thread_local] = ACTIONS(2815), - [anon_sym___thread] = ACTIONS(2815), - [anon_sym_const] = ACTIONS(2815), - [anon_sym_constexpr] = ACTIONS(2815), - [anon_sym_volatile] = ACTIONS(2815), - [anon_sym_restrict] = ACTIONS(2815), - [anon_sym___restrict__] = ACTIONS(2815), - [anon_sym__Atomic] = ACTIONS(2815), - [anon_sym__Noreturn] = ACTIONS(2815), - [anon_sym_noreturn] = ACTIONS(2815), - [anon_sym__Nonnull] = ACTIONS(2815), - [anon_sym_mutable] = ACTIONS(2815), - [anon_sym_constinit] = ACTIONS(2815), - [anon_sym_consteval] = ACTIONS(2815), - [anon_sym_alignas] = ACTIONS(2815), - [anon_sym__Alignas] = ACTIONS(2815), - [sym_primitive_type] = ACTIONS(2815), - [anon_sym_enum] = ACTIONS(2815), - [anon_sym_class] = ACTIONS(2815), - [anon_sym_struct] = ACTIONS(2815), - [anon_sym_union] = ACTIONS(2815), + [anon_sym___inline__] = ACTIONS(2791), + [anon_sym___forceinline] = ACTIONS(2791), + [anon_sym_thread_local] = ACTIONS(2791), + [anon_sym___thread] = ACTIONS(2791), + [anon_sym_const] = ACTIONS(2791), + [anon_sym_constexpr] = ACTIONS(2791), + [anon_sym_volatile] = ACTIONS(2791), + [anon_sym_restrict] = ACTIONS(2791), + [anon_sym___restrict__] = ACTIONS(2791), + [anon_sym__Atomic] = ACTIONS(2791), + [anon_sym__Noreturn] = ACTIONS(2791), + [anon_sym_noreturn] = ACTIONS(2791), + [anon_sym__Nonnull] = ACTIONS(2791), + [anon_sym_mutable] = ACTIONS(2791), + [anon_sym_constinit] = ACTIONS(2791), + [anon_sym_consteval] = ACTIONS(2791), + [anon_sym_alignas] = ACTIONS(2791), + [anon_sym__Alignas] = ACTIONS(2791), + [sym_primitive_type] = ACTIONS(2791), + [anon_sym_enum] = ACTIONS(2791), + [anon_sym_class] = ACTIONS(2791), + [anon_sym_struct] = ACTIONS(2791), + [anon_sym_union] = ACTIONS(2791), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2815), - [anon_sym_decltype] = ACTIONS(2815), - [anon_sym_explicit] = ACTIONS(2815), - [anon_sym_typename] = ACTIONS(2815), - [anon_sym_private] = ACTIONS(2815), - [anon_sym_template] = ACTIONS(2815), - [anon_sym_operator] = ACTIONS(2815), - [anon_sym_friend] = ACTIONS(2815), - [anon_sym_public] = ACTIONS(2815), - [anon_sym_protected] = ACTIONS(2815), - [anon_sym_static_assert] = ACTIONS(2815), + [sym_auto] = ACTIONS(2791), + [anon_sym_decltype] = ACTIONS(2791), + [anon_sym_explicit] = ACTIONS(2791), + [anon_sym_typename] = ACTIONS(2791), + [anon_sym_private] = ACTIONS(2791), + [anon_sym_template] = ACTIONS(2791), + [anon_sym_operator] = ACTIONS(2791), + [anon_sym_friend] = ACTIONS(2791), + [anon_sym_public] = ACTIONS(2791), + [anon_sym_protected] = ACTIONS(2791), + [anon_sym_static_assert] = ACTIONS(2791), }, - [2144] = { + [2166] = { [sym_identifier] = ACTIONS(3112), [aux_sym_preproc_def_token1] = ACTIONS(3112), [aux_sym_preproc_if_token1] = ACTIONS(3112), - [aux_sym_preproc_if_token2] = ACTIONS(3112), [aux_sym_preproc_ifdef_token1] = ACTIONS(3112), [aux_sym_preproc_ifdef_token2] = ACTIONS(3112), [sym_preproc_directive] = ACTIONS(3112), @@ -278950,6 +282156,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_LBRACK] = ACTIONS(3114), [anon_sym___declspec] = ACTIONS(3112), [anon_sym___based] = ACTIONS(3112), + [anon_sym_RBRACE] = ACTIONS(3114), [anon_sym_signed] = ACTIONS(3112), [anon_sym_unsigned] = ACTIONS(3112), [anon_sym_long] = ACTIONS(3112), @@ -278995,1407 +282202,1687 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(3112), [anon_sym_static_assert] = ACTIONS(3112), }, - [2145] = { - [sym_identifier] = ACTIONS(2903), - [aux_sym_preproc_def_token1] = ACTIONS(2903), - [aux_sym_preproc_if_token1] = ACTIONS(2903), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2903), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2903), - [sym_preproc_directive] = ACTIONS(2903), - [anon_sym_LPAREN2] = ACTIONS(2905), - [anon_sym_TILDE] = ACTIONS(2905), - [anon_sym_STAR] = ACTIONS(2905), - [anon_sym_AMP_AMP] = ACTIONS(2905), - [anon_sym_AMP] = ACTIONS(2903), - [anon_sym_SEMI] = ACTIONS(2905), - [anon_sym___extension__] = ACTIONS(2903), - [anon_sym_typedef] = ACTIONS(2903), - [anon_sym_virtual] = ACTIONS(2903), - [anon_sym_extern] = ACTIONS(2903), - [anon_sym___attribute__] = ACTIONS(2903), - [anon_sym___attribute] = ACTIONS(2903), - [anon_sym_using] = ACTIONS(2903), - [anon_sym_COLON_COLON] = ACTIONS(2905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2905), - [anon_sym___declspec] = ACTIONS(2903), - [anon_sym___based] = ACTIONS(2903), - [anon_sym_RBRACE] = ACTIONS(2905), - [anon_sym_signed] = ACTIONS(2903), - [anon_sym_unsigned] = ACTIONS(2903), - [anon_sym_long] = ACTIONS(2903), - [anon_sym_short] = ACTIONS(2903), - [anon_sym_LBRACK] = ACTIONS(2903), - [anon_sym_static] = ACTIONS(2903), - [anon_sym_register] = ACTIONS(2903), - [anon_sym_inline] = ACTIONS(2903), - [anon_sym___inline] = ACTIONS(2903), - [anon_sym___inline__] = ACTIONS(2903), - [anon_sym___forceinline] = ACTIONS(2903), - [anon_sym_thread_local] = ACTIONS(2903), - [anon_sym___thread] = ACTIONS(2903), - [anon_sym_const] = ACTIONS(2903), - [anon_sym_constexpr] = ACTIONS(2903), - [anon_sym_volatile] = ACTIONS(2903), - [anon_sym_restrict] = ACTIONS(2903), - [anon_sym___restrict__] = ACTIONS(2903), - [anon_sym__Atomic] = ACTIONS(2903), - [anon_sym__Noreturn] = ACTIONS(2903), - [anon_sym_noreturn] = ACTIONS(2903), - [anon_sym__Nonnull] = ACTIONS(2903), - [anon_sym_mutable] = ACTIONS(2903), - [anon_sym_constinit] = ACTIONS(2903), - [anon_sym_consteval] = ACTIONS(2903), - [anon_sym_alignas] = ACTIONS(2903), - [anon_sym__Alignas] = ACTIONS(2903), - [sym_primitive_type] = ACTIONS(2903), - [anon_sym_enum] = ACTIONS(2903), - [anon_sym_class] = ACTIONS(2903), - [anon_sym_struct] = ACTIONS(2903), - [anon_sym_union] = ACTIONS(2903), + [2167] = { + [sym__declaration_modifiers] = STATE(3258), + [sym_attribute_specifier] = STATE(3258), + [sym_attribute_declaration] = STATE(3258), + [sym_ms_declspec_modifier] = STATE(3258), + [sym_storage_class_specifier] = STATE(3258), + [sym_type_qualifier] = STATE(3258), + [sym_alignas_qualifier] = STATE(1680), + [sym_type_specifier] = STATE(4079), + [sym_sized_type_specifier] = STATE(2558), + [sym_enum_specifier] = STATE(2558), + [sym_struct_specifier] = STATE(2558), + [sym_union_specifier] = STATE(2558), + [sym_placeholder_type_specifier] = STATE(2558), + [sym_decltype_auto] = STATE(2453), + [sym_decltype] = STATE(2439), + [sym_class_specifier] = STATE(2558), + [sym_dependent_type] = STATE(2558), + [sym_template_type] = STATE(2439), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(6697), + [sym_qualified_type_identifier] = STATE(2836), + [aux_sym__declaration_specifiers_repeat1] = STATE(3258), + [aux_sym_sized_type_specifier_repeat1] = STATE(2695), + [sym_identifier] = ACTIONS(3907), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(6039), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(3915), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(3917), + [anon_sym_unsigned] = ACTIONS(3917), + [anon_sym_long] = ACTIONS(3917), + [anon_sym_short] = ACTIONS(3917), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(69), + [anon_sym__Alignas] = ACTIONS(69), + [sym_primitive_type] = ACTIONS(3919), + [anon_sym_enum] = ACTIONS(3921), + [anon_sym_class] = ACTIONS(3923), + [anon_sym_struct] = ACTIONS(3925), + [anon_sym_union] = ACTIONS(3927), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2903), - [anon_sym_decltype] = ACTIONS(2903), - [anon_sym_explicit] = ACTIONS(2903), - [anon_sym_typename] = ACTIONS(2903), - [anon_sym_private] = ACTIONS(2903), - [anon_sym_template] = ACTIONS(2903), - [anon_sym_operator] = ACTIONS(2903), - [anon_sym_friend] = ACTIONS(2903), - [anon_sym_public] = ACTIONS(2903), - [anon_sym_protected] = ACTIONS(2903), - [anon_sym_static_assert] = ACTIONS(2903), + [sym_auto] = ACTIONS(125), + [anon_sym_decltype] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(3929), + [anon_sym_template] = ACTIONS(1268), }, - [2146] = { - [sym_identifier] = ACTIONS(5537), - [aux_sym_preproc_def_token1] = ACTIONS(5537), - [aux_sym_preproc_if_token1] = ACTIONS(5537), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5537), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5537), - [sym_preproc_directive] = ACTIONS(5537), - [anon_sym_LPAREN2] = ACTIONS(5539), - [anon_sym_TILDE] = ACTIONS(5539), - [anon_sym_STAR] = ACTIONS(5539), - [anon_sym_AMP_AMP] = ACTIONS(5539), - [anon_sym_AMP] = ACTIONS(5537), - [anon_sym_SEMI] = ACTIONS(5539), - [anon_sym___extension__] = ACTIONS(5537), - [anon_sym_typedef] = ACTIONS(5537), - [anon_sym_virtual] = ACTIONS(5537), - [anon_sym_extern] = ACTIONS(5537), - [anon_sym___attribute__] = ACTIONS(5537), - [anon_sym___attribute] = ACTIONS(5537), - [anon_sym_using] = ACTIONS(5537), - [anon_sym_COLON_COLON] = ACTIONS(5539), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5539), - [anon_sym___declspec] = ACTIONS(5537), - [anon_sym___based] = ACTIONS(5537), - [anon_sym_RBRACE] = ACTIONS(5539), - [anon_sym_signed] = ACTIONS(5537), - [anon_sym_unsigned] = ACTIONS(5537), - [anon_sym_long] = ACTIONS(5537), - [anon_sym_short] = ACTIONS(5537), - [anon_sym_LBRACK] = ACTIONS(5537), - [anon_sym_static] = ACTIONS(5537), - [anon_sym_register] = ACTIONS(5537), - [anon_sym_inline] = ACTIONS(5537), - [anon_sym___inline] = ACTIONS(5537), - [anon_sym___inline__] = ACTIONS(5537), - [anon_sym___forceinline] = ACTIONS(5537), - [anon_sym_thread_local] = ACTIONS(5537), - [anon_sym___thread] = ACTIONS(5537), - [anon_sym_const] = ACTIONS(5537), - [anon_sym_constexpr] = ACTIONS(5537), - [anon_sym_volatile] = ACTIONS(5537), - [anon_sym_restrict] = ACTIONS(5537), - [anon_sym___restrict__] = ACTIONS(5537), - [anon_sym__Atomic] = ACTIONS(5537), - [anon_sym__Noreturn] = ACTIONS(5537), - [anon_sym_noreturn] = ACTIONS(5537), - [anon_sym__Nonnull] = ACTIONS(5537), - [anon_sym_mutable] = ACTIONS(5537), - [anon_sym_constinit] = ACTIONS(5537), - [anon_sym_consteval] = ACTIONS(5537), - [anon_sym_alignas] = ACTIONS(5537), - [anon_sym__Alignas] = ACTIONS(5537), - [sym_primitive_type] = ACTIONS(5537), - [anon_sym_enum] = ACTIONS(5537), - [anon_sym_class] = ACTIONS(5537), - [anon_sym_struct] = ACTIONS(5537), - [anon_sym_union] = ACTIONS(5537), + [2168] = { + [sym_identifier] = ACTIONS(5637), + [aux_sym_preproc_def_token1] = ACTIONS(5637), + [aux_sym_preproc_if_token1] = ACTIONS(5637), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5637), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5637), + [sym_preproc_directive] = ACTIONS(5637), + [anon_sym_LPAREN2] = ACTIONS(5639), + [anon_sym_TILDE] = ACTIONS(5639), + [anon_sym_STAR] = ACTIONS(5639), + [anon_sym_AMP_AMP] = ACTIONS(5639), + [anon_sym_AMP] = ACTIONS(5637), + [anon_sym_SEMI] = ACTIONS(5639), + [anon_sym___extension__] = ACTIONS(5637), + [anon_sym_typedef] = ACTIONS(5637), + [anon_sym_virtual] = ACTIONS(5637), + [anon_sym_extern] = ACTIONS(5637), + [anon_sym___attribute__] = ACTIONS(5637), + [anon_sym___attribute] = ACTIONS(5637), + [anon_sym_using] = ACTIONS(5637), + [anon_sym_COLON_COLON] = ACTIONS(5639), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5639), + [anon_sym___declspec] = ACTIONS(5637), + [anon_sym___based] = ACTIONS(5637), + [anon_sym_RBRACE] = ACTIONS(5639), + [anon_sym_signed] = ACTIONS(5637), + [anon_sym_unsigned] = ACTIONS(5637), + [anon_sym_long] = ACTIONS(5637), + [anon_sym_short] = ACTIONS(5637), + [anon_sym_LBRACK] = ACTIONS(5637), + [anon_sym_static] = ACTIONS(5637), + [anon_sym_register] = ACTIONS(5637), + [anon_sym_inline] = ACTIONS(5637), + [anon_sym___inline] = ACTIONS(5637), + [anon_sym___inline__] = ACTIONS(5637), + [anon_sym___forceinline] = ACTIONS(5637), + [anon_sym_thread_local] = ACTIONS(5637), + [anon_sym___thread] = ACTIONS(5637), + [anon_sym_const] = ACTIONS(5637), + [anon_sym_constexpr] = ACTIONS(5637), + [anon_sym_volatile] = ACTIONS(5637), + [anon_sym_restrict] = ACTIONS(5637), + [anon_sym___restrict__] = ACTIONS(5637), + [anon_sym__Atomic] = ACTIONS(5637), + [anon_sym__Noreturn] = ACTIONS(5637), + [anon_sym_noreturn] = ACTIONS(5637), + [anon_sym__Nonnull] = ACTIONS(5637), + [anon_sym_mutable] = ACTIONS(5637), + [anon_sym_constinit] = ACTIONS(5637), + [anon_sym_consteval] = ACTIONS(5637), + [anon_sym_alignas] = ACTIONS(5637), + [anon_sym__Alignas] = ACTIONS(5637), + [sym_primitive_type] = ACTIONS(5637), + [anon_sym_enum] = ACTIONS(5637), + [anon_sym_class] = ACTIONS(5637), + [anon_sym_struct] = ACTIONS(5637), + [anon_sym_union] = ACTIONS(5637), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5537), - [anon_sym_decltype] = ACTIONS(5537), - [anon_sym_explicit] = ACTIONS(5537), - [anon_sym_typename] = ACTIONS(5537), - [anon_sym_private] = ACTIONS(5537), - [anon_sym_template] = ACTIONS(5537), - [anon_sym_operator] = ACTIONS(5537), - [anon_sym_friend] = ACTIONS(5537), - [anon_sym_public] = ACTIONS(5537), - [anon_sym_protected] = ACTIONS(5537), - [anon_sym_static_assert] = ACTIONS(5537), + [sym_auto] = ACTIONS(5637), + [anon_sym_decltype] = ACTIONS(5637), + [anon_sym_explicit] = ACTIONS(5637), + [anon_sym_typename] = ACTIONS(5637), + [anon_sym_private] = ACTIONS(5637), + [anon_sym_template] = ACTIONS(5637), + [anon_sym_operator] = ACTIONS(5637), + [anon_sym_friend] = ACTIONS(5637), + [anon_sym_public] = ACTIONS(5637), + [anon_sym_protected] = ACTIONS(5637), + [anon_sym_static_assert] = ACTIONS(5637), }, - [2147] = { - [sym_identifier] = ACTIONS(2783), - [aux_sym_preproc_def_token1] = ACTIONS(2783), - [aux_sym_preproc_if_token1] = ACTIONS(2783), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2783), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2783), - [sym_preproc_directive] = ACTIONS(2783), - [anon_sym_LPAREN2] = ACTIONS(2785), - [anon_sym_TILDE] = ACTIONS(2785), - [anon_sym_STAR] = ACTIONS(2785), - [anon_sym_AMP_AMP] = ACTIONS(2785), - [anon_sym_AMP] = ACTIONS(2783), - [anon_sym_SEMI] = ACTIONS(2785), - [anon_sym___extension__] = ACTIONS(2783), - [anon_sym_typedef] = ACTIONS(2783), - [anon_sym_virtual] = ACTIONS(2783), - [anon_sym_extern] = ACTIONS(2783), - [anon_sym___attribute__] = ACTIONS(2783), - [anon_sym___attribute] = ACTIONS(2783), - [anon_sym_using] = ACTIONS(2783), - [anon_sym_COLON_COLON] = ACTIONS(2785), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2785), - [anon_sym___declspec] = ACTIONS(2783), - [anon_sym___based] = ACTIONS(2783), - [anon_sym_RBRACE] = ACTIONS(2785), - [anon_sym_signed] = ACTIONS(2783), - [anon_sym_unsigned] = ACTIONS(2783), - [anon_sym_long] = ACTIONS(2783), - [anon_sym_short] = ACTIONS(2783), - [anon_sym_LBRACK] = ACTIONS(2783), - [anon_sym_static] = ACTIONS(2783), - [anon_sym_register] = ACTIONS(2783), - [anon_sym_inline] = ACTIONS(2783), - [anon_sym___inline] = ACTIONS(2783), - [anon_sym___inline__] = ACTIONS(2783), - [anon_sym___forceinline] = ACTIONS(2783), - [anon_sym_thread_local] = ACTIONS(2783), - [anon_sym___thread] = ACTIONS(2783), - [anon_sym_const] = ACTIONS(2783), - [anon_sym_constexpr] = ACTIONS(2783), - [anon_sym_volatile] = ACTIONS(2783), - [anon_sym_restrict] = ACTIONS(2783), - [anon_sym___restrict__] = ACTIONS(2783), - [anon_sym__Atomic] = ACTIONS(2783), - [anon_sym__Noreturn] = ACTIONS(2783), - [anon_sym_noreturn] = ACTIONS(2783), - [anon_sym__Nonnull] = ACTIONS(2783), - [anon_sym_mutable] = ACTIONS(2783), - [anon_sym_constinit] = ACTIONS(2783), - [anon_sym_consteval] = ACTIONS(2783), - [anon_sym_alignas] = ACTIONS(2783), - [anon_sym__Alignas] = ACTIONS(2783), - [sym_primitive_type] = ACTIONS(2783), - [anon_sym_enum] = ACTIONS(2783), - [anon_sym_class] = ACTIONS(2783), - [anon_sym_struct] = ACTIONS(2783), - [anon_sym_union] = ACTIONS(2783), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2783), - [anon_sym_decltype] = ACTIONS(2783), - [anon_sym_explicit] = ACTIONS(2783), - [anon_sym_typename] = ACTIONS(2783), - [anon_sym_private] = ACTIONS(2783), - [anon_sym_template] = ACTIONS(2783), - [anon_sym_operator] = ACTIONS(2783), - [anon_sym_friend] = ACTIONS(2783), - [anon_sym_public] = ACTIONS(2783), - [anon_sym_protected] = ACTIONS(2783), - [anon_sym_static_assert] = ACTIONS(2783), + [2169] = { + [sym_identifier] = ACTIONS(5507), + [aux_sym_preproc_def_token1] = ACTIONS(5507), + [aux_sym_preproc_if_token1] = ACTIONS(5507), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5507), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5507), + [sym_preproc_directive] = ACTIONS(5507), + [anon_sym_LPAREN2] = ACTIONS(5509), + [anon_sym_TILDE] = ACTIONS(5509), + [anon_sym_STAR] = ACTIONS(5509), + [anon_sym_AMP_AMP] = ACTIONS(5509), + [anon_sym_AMP] = ACTIONS(5507), + [anon_sym_SEMI] = ACTIONS(5509), + [anon_sym___extension__] = ACTIONS(5507), + [anon_sym_typedef] = ACTIONS(5507), + [anon_sym_virtual] = ACTIONS(5507), + [anon_sym_extern] = ACTIONS(5507), + [anon_sym___attribute__] = ACTIONS(5507), + [anon_sym___attribute] = ACTIONS(5507), + [anon_sym_using] = ACTIONS(5507), + [anon_sym_COLON_COLON] = ACTIONS(5509), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5509), + [anon_sym___declspec] = ACTIONS(5507), + [anon_sym___based] = ACTIONS(5507), + [anon_sym_RBRACE] = ACTIONS(5509), + [anon_sym_signed] = ACTIONS(5507), + [anon_sym_unsigned] = ACTIONS(5507), + [anon_sym_long] = ACTIONS(5507), + [anon_sym_short] = ACTIONS(5507), + [anon_sym_LBRACK] = ACTIONS(5507), + [anon_sym_static] = ACTIONS(5507), + [anon_sym_register] = ACTIONS(5507), + [anon_sym_inline] = ACTIONS(5507), + [anon_sym___inline] = ACTIONS(5507), + [anon_sym___inline__] = ACTIONS(5507), + [anon_sym___forceinline] = ACTIONS(5507), + [anon_sym_thread_local] = ACTIONS(5507), + [anon_sym___thread] = ACTIONS(5507), + [anon_sym_const] = ACTIONS(5507), + [anon_sym_constexpr] = ACTIONS(5507), + [anon_sym_volatile] = ACTIONS(5507), + [anon_sym_restrict] = ACTIONS(5507), + [anon_sym___restrict__] = ACTIONS(5507), + [anon_sym__Atomic] = ACTIONS(5507), + [anon_sym__Noreturn] = ACTIONS(5507), + [anon_sym_noreturn] = ACTIONS(5507), + [anon_sym__Nonnull] = ACTIONS(5507), + [anon_sym_mutable] = ACTIONS(5507), + [anon_sym_constinit] = ACTIONS(5507), + [anon_sym_consteval] = ACTIONS(5507), + [anon_sym_alignas] = ACTIONS(5507), + [anon_sym__Alignas] = ACTIONS(5507), + [sym_primitive_type] = ACTIONS(5507), + [anon_sym_enum] = ACTIONS(5507), + [anon_sym_class] = ACTIONS(5507), + [anon_sym_struct] = ACTIONS(5507), + [anon_sym_union] = ACTIONS(5507), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5507), + [anon_sym_decltype] = ACTIONS(5507), + [anon_sym_explicit] = ACTIONS(5507), + [anon_sym_typename] = ACTIONS(5507), + [anon_sym_private] = ACTIONS(5507), + [anon_sym_template] = ACTIONS(5507), + [anon_sym_operator] = ACTIONS(5507), + [anon_sym_friend] = ACTIONS(5507), + [anon_sym_public] = ACTIONS(5507), + [anon_sym_protected] = ACTIONS(5507), + [anon_sym_static_assert] = ACTIONS(5507), }, - [2148] = { - [sym_identifier] = ACTIONS(3083), - [aux_sym_preproc_def_token1] = ACTIONS(3083), - [aux_sym_preproc_if_token1] = ACTIONS(3083), - [aux_sym_preproc_if_token2] = ACTIONS(3083), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3083), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3083), - [sym_preproc_directive] = ACTIONS(3083), - [anon_sym_LPAREN2] = ACTIONS(3085), - [anon_sym_TILDE] = ACTIONS(3085), - [anon_sym_STAR] = ACTIONS(3085), - [anon_sym_AMP_AMP] = ACTIONS(3085), - [anon_sym_AMP] = ACTIONS(3083), - [anon_sym_SEMI] = ACTIONS(3085), - [anon_sym___extension__] = ACTIONS(3083), - [anon_sym_typedef] = ACTIONS(3083), - [anon_sym_virtual] = ACTIONS(3083), - [anon_sym_extern] = ACTIONS(3083), - [anon_sym___attribute__] = ACTIONS(3083), - [anon_sym___attribute] = ACTIONS(3083), - [anon_sym_using] = ACTIONS(3083), - [anon_sym_COLON_COLON] = ACTIONS(3085), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3085), - [anon_sym___declspec] = ACTIONS(3083), - [anon_sym___based] = ACTIONS(3083), - [anon_sym_signed] = ACTIONS(3083), - [anon_sym_unsigned] = ACTIONS(3083), - [anon_sym_long] = ACTIONS(3083), - [anon_sym_short] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(3083), - [anon_sym_static] = ACTIONS(3083), - [anon_sym_register] = ACTIONS(3083), - [anon_sym_inline] = ACTIONS(3083), - [anon_sym___inline] = ACTIONS(3083), - [anon_sym___inline__] = ACTIONS(3083), - [anon_sym___forceinline] = ACTIONS(3083), - [anon_sym_thread_local] = ACTIONS(3083), - [anon_sym___thread] = ACTIONS(3083), - [anon_sym_const] = ACTIONS(3083), - [anon_sym_constexpr] = ACTIONS(3083), - [anon_sym_volatile] = ACTIONS(3083), - [anon_sym_restrict] = ACTIONS(3083), - [anon_sym___restrict__] = ACTIONS(3083), - [anon_sym__Atomic] = ACTIONS(3083), - [anon_sym__Noreturn] = ACTIONS(3083), - [anon_sym_noreturn] = ACTIONS(3083), - [anon_sym__Nonnull] = ACTIONS(3083), - [anon_sym_mutable] = ACTIONS(3083), - [anon_sym_constinit] = ACTIONS(3083), - [anon_sym_consteval] = ACTIONS(3083), - [anon_sym_alignas] = ACTIONS(3083), - [anon_sym__Alignas] = ACTIONS(3083), - [sym_primitive_type] = ACTIONS(3083), - [anon_sym_enum] = ACTIONS(3083), - [anon_sym_class] = ACTIONS(3083), - [anon_sym_struct] = ACTIONS(3083), - [anon_sym_union] = ACTIONS(3083), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3083), - [anon_sym_decltype] = ACTIONS(3083), - [anon_sym_explicit] = ACTIONS(3083), - [anon_sym_typename] = ACTIONS(3083), - [anon_sym_private] = ACTIONS(3083), - [anon_sym_template] = ACTIONS(3083), - [anon_sym_operator] = ACTIONS(3083), - [anon_sym_friend] = ACTIONS(3083), - [anon_sym_public] = ACTIONS(3083), - [anon_sym_protected] = ACTIONS(3083), - [anon_sym_static_assert] = ACTIONS(3083), + [2170] = { + [sym_identifier] = ACTIONS(3047), + [aux_sym_preproc_def_token1] = ACTIONS(3047), + [aux_sym_preproc_if_token1] = ACTIONS(3047), + [aux_sym_preproc_if_token2] = ACTIONS(3047), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3047), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3047), + [sym_preproc_directive] = ACTIONS(3047), + [anon_sym_LPAREN2] = ACTIONS(3049), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(3049), + [anon_sym_AMP_AMP] = ACTIONS(3049), + [anon_sym_AMP] = ACTIONS(3047), + [anon_sym_SEMI] = ACTIONS(3049), + [anon_sym___extension__] = ACTIONS(3047), + [anon_sym_typedef] = ACTIONS(3047), + [anon_sym_virtual] = ACTIONS(3047), + [anon_sym_extern] = ACTIONS(3047), + [anon_sym___attribute__] = ACTIONS(3047), + [anon_sym___attribute] = ACTIONS(3047), + [anon_sym_using] = ACTIONS(3047), + [anon_sym_COLON_COLON] = ACTIONS(3049), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3049), + [anon_sym___declspec] = ACTIONS(3047), + [anon_sym___based] = ACTIONS(3047), + [anon_sym_signed] = ACTIONS(3047), + [anon_sym_unsigned] = ACTIONS(3047), + [anon_sym_long] = ACTIONS(3047), + [anon_sym_short] = ACTIONS(3047), + [anon_sym_LBRACK] = ACTIONS(3047), + [anon_sym_static] = ACTIONS(3047), + [anon_sym_register] = ACTIONS(3047), + [anon_sym_inline] = ACTIONS(3047), + [anon_sym___inline] = ACTIONS(3047), + [anon_sym___inline__] = ACTIONS(3047), + [anon_sym___forceinline] = ACTIONS(3047), + [anon_sym_thread_local] = ACTIONS(3047), + [anon_sym___thread] = ACTIONS(3047), + [anon_sym_const] = ACTIONS(3047), + [anon_sym_constexpr] = ACTIONS(3047), + [anon_sym_volatile] = ACTIONS(3047), + [anon_sym_restrict] = ACTIONS(3047), + [anon_sym___restrict__] = ACTIONS(3047), + [anon_sym__Atomic] = ACTIONS(3047), + [anon_sym__Noreturn] = ACTIONS(3047), + [anon_sym_noreturn] = ACTIONS(3047), + [anon_sym__Nonnull] = ACTIONS(3047), + [anon_sym_mutable] = ACTIONS(3047), + [anon_sym_constinit] = ACTIONS(3047), + [anon_sym_consteval] = ACTIONS(3047), + [anon_sym_alignas] = ACTIONS(3047), + [anon_sym__Alignas] = ACTIONS(3047), + [sym_primitive_type] = ACTIONS(3047), + [anon_sym_enum] = ACTIONS(3047), + [anon_sym_class] = ACTIONS(3047), + [anon_sym_struct] = ACTIONS(3047), + [anon_sym_union] = ACTIONS(3047), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3047), + [anon_sym_decltype] = ACTIONS(3047), + [anon_sym_explicit] = ACTIONS(3047), + [anon_sym_typename] = ACTIONS(3047), + [anon_sym_private] = ACTIONS(3047), + [anon_sym_template] = ACTIONS(3047), + [anon_sym_operator] = ACTIONS(3047), + [anon_sym_friend] = ACTIONS(3047), + [anon_sym_public] = ACTIONS(3047), + [anon_sym_protected] = ACTIONS(3047), + [anon_sym_static_assert] = ACTIONS(3047), }, - [2149] = { - [sym_ms_based_modifier] = STATE(8106), - [sym_ms_unaligned_ptr_modifier] = STATE(4043), - [sym_ms_pointer_modifier] = STATE(2155), - [sym__declarator] = STATE(6313), - [sym__abstract_declarator] = STATE(6648), - [sym_parenthesized_declarator] = STATE(5998), - [sym_abstract_parenthesized_declarator] = STATE(6092), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_abstract_pointer_declarator] = STATE(6092), - [sym_function_declarator] = STATE(5998), - [sym_abstract_function_declarator] = STATE(6092), - [sym_array_declarator] = STATE(5998), - [sym_abstract_array_declarator] = STATE(6092), - [sym_type_qualifier] = STATE(2663), - [sym_alignas_qualifier] = STATE(4289), - [sym_parameter_list] = STATE(3223), - [sym_decltype] = STATE(8601), - [sym_reference_declarator] = STATE(5998), - [sym_abstract_reference_declarator] = STATE(6092), - [sym_structured_binding_declarator] = STATE(5998), - [sym__function_declarator_seq] = STATE(6087), - [sym_template_type] = STATE(8601), - [sym_template_function] = STATE(5998), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5860), - [sym_qualified_identifier] = STATE(5998), - [sym_operator_name] = STATE(5998), - [aux_sym__type_definition_type_repeat1] = STATE(2663), - [aux_sym_pointer_declarator_repeat1] = STATE(2155), - [sym_identifier] = ACTIONS(5849), - [anon_sym_COMMA] = ACTIONS(5851), - [anon_sym_RPAREN] = ACTIONS(5851), - [anon_sym_LPAREN2] = ACTIONS(4298), - [anon_sym_TILDE] = ACTIONS(2979), - [anon_sym_STAR] = ACTIONS(6032), - [anon_sym_AMP_AMP] = ACTIONS(6034), - [anon_sym_AMP] = ACTIONS(6036), - [anon_sym___extension__] = ACTIONS(3331), - [anon_sym___attribute__] = ACTIONS(5859), - [anon_sym___attribute] = ACTIONS(5859), - [anon_sym_COLON_COLON] = ACTIONS(5861), - [anon_sym___based] = ACTIONS(53), - [sym_ms_restrict_modifier] = ACTIONS(3327), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(3327), - [sym_ms_signed_ptr_modifier] = ACTIONS(3327), - [anon_sym__unaligned] = ACTIONS(3329), - [anon_sym___unaligned] = ACTIONS(3329), - [anon_sym_LBRACK] = ACTIONS(5863), - [anon_sym_const] = ACTIONS(3331), - [anon_sym_constexpr] = ACTIONS(3331), - [anon_sym_volatile] = ACTIONS(3331), - [anon_sym_restrict] = ACTIONS(3331), - [anon_sym___restrict__] = ACTIONS(3331), - [anon_sym__Atomic] = ACTIONS(3331), - [anon_sym__Noreturn] = ACTIONS(3331), - [anon_sym_noreturn] = ACTIONS(3331), - [anon_sym__Nonnull] = ACTIONS(3331), - [anon_sym_mutable] = ACTIONS(3331), - [anon_sym_constinit] = ACTIONS(3331), - [anon_sym_consteval] = ACTIONS(3331), - [anon_sym_alignas] = ACTIONS(3333), - [anon_sym__Alignas] = ACTIONS(3333), + [2171] = { + [sym_identifier] = ACTIONS(5625), + [aux_sym_preproc_def_token1] = ACTIONS(5625), + [aux_sym_preproc_if_token1] = ACTIONS(5625), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5625), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5625), + [sym_preproc_directive] = ACTIONS(5625), + [anon_sym_LPAREN2] = ACTIONS(5627), + [anon_sym_TILDE] = ACTIONS(5627), + [anon_sym_STAR] = ACTIONS(5627), + [anon_sym_AMP_AMP] = ACTIONS(5627), + [anon_sym_AMP] = ACTIONS(5625), + [anon_sym_SEMI] = ACTIONS(5627), + [anon_sym___extension__] = ACTIONS(5625), + [anon_sym_typedef] = ACTIONS(5625), + [anon_sym_virtual] = ACTIONS(5625), + [anon_sym_extern] = ACTIONS(5625), + [anon_sym___attribute__] = ACTIONS(5625), + [anon_sym___attribute] = ACTIONS(5625), + [anon_sym_using] = ACTIONS(5625), + [anon_sym_COLON_COLON] = ACTIONS(5627), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5627), + [anon_sym___declspec] = ACTIONS(5625), + [anon_sym___based] = ACTIONS(5625), + [anon_sym_RBRACE] = ACTIONS(5627), + [anon_sym_signed] = ACTIONS(5625), + [anon_sym_unsigned] = ACTIONS(5625), + [anon_sym_long] = ACTIONS(5625), + [anon_sym_short] = ACTIONS(5625), + [anon_sym_LBRACK] = ACTIONS(5625), + [anon_sym_static] = ACTIONS(5625), + [anon_sym_register] = ACTIONS(5625), + [anon_sym_inline] = ACTIONS(5625), + [anon_sym___inline] = ACTIONS(5625), + [anon_sym___inline__] = ACTIONS(5625), + [anon_sym___forceinline] = ACTIONS(5625), + [anon_sym_thread_local] = ACTIONS(5625), + [anon_sym___thread] = ACTIONS(5625), + [anon_sym_const] = ACTIONS(5625), + [anon_sym_constexpr] = ACTIONS(5625), + [anon_sym_volatile] = ACTIONS(5625), + [anon_sym_restrict] = ACTIONS(5625), + [anon_sym___restrict__] = ACTIONS(5625), + [anon_sym__Atomic] = ACTIONS(5625), + [anon_sym__Noreturn] = ACTIONS(5625), + [anon_sym_noreturn] = ACTIONS(5625), + [anon_sym__Nonnull] = ACTIONS(5625), + [anon_sym_mutable] = ACTIONS(5625), + [anon_sym_constinit] = ACTIONS(5625), + [anon_sym_consteval] = ACTIONS(5625), + [anon_sym_alignas] = ACTIONS(5625), + [anon_sym__Alignas] = ACTIONS(5625), + [sym_primitive_type] = ACTIONS(5625), + [anon_sym_enum] = ACTIONS(5625), + [anon_sym_class] = ACTIONS(5625), + [anon_sym_struct] = ACTIONS(5625), + [anon_sym_union] = ACTIONS(5625), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_operator] = ACTIONS(1852), + [sym_auto] = ACTIONS(5625), + [anon_sym_decltype] = ACTIONS(5625), + [anon_sym_explicit] = ACTIONS(5625), + [anon_sym_typename] = ACTIONS(5625), + [anon_sym_private] = ACTIONS(5625), + [anon_sym_template] = ACTIONS(5625), + [anon_sym_operator] = ACTIONS(5625), + [anon_sym_friend] = ACTIONS(5625), + [anon_sym_public] = ACTIONS(5625), + [anon_sym_protected] = ACTIONS(5625), + [anon_sym_static_assert] = ACTIONS(5625), }, - [2150] = { - [sym_identifier] = ACTIONS(2827), - [aux_sym_preproc_def_token1] = ACTIONS(2827), - [aux_sym_preproc_if_token1] = ACTIONS(2827), - [aux_sym_preproc_if_token2] = ACTIONS(2827), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2827), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2827), - [sym_preproc_directive] = ACTIONS(2827), - [anon_sym_LPAREN2] = ACTIONS(2829), - [anon_sym_TILDE] = ACTIONS(2829), - [anon_sym_STAR] = ACTIONS(2829), - [anon_sym_AMP_AMP] = ACTIONS(2829), - [anon_sym_AMP] = ACTIONS(2827), - [anon_sym_SEMI] = ACTIONS(2829), - [anon_sym___extension__] = ACTIONS(2827), - [anon_sym_typedef] = ACTIONS(2827), - [anon_sym_virtual] = ACTIONS(2827), - [anon_sym_extern] = ACTIONS(2827), - [anon_sym___attribute__] = ACTIONS(2827), - [anon_sym___attribute] = ACTIONS(2827), - [anon_sym_using] = ACTIONS(2827), - [anon_sym_COLON_COLON] = ACTIONS(2829), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2829), - [anon_sym___declspec] = ACTIONS(2827), - [anon_sym___based] = ACTIONS(2827), - [anon_sym_signed] = ACTIONS(2827), - [anon_sym_unsigned] = ACTIONS(2827), - [anon_sym_long] = ACTIONS(2827), - [anon_sym_short] = ACTIONS(2827), - [anon_sym_LBRACK] = ACTIONS(2827), - [anon_sym_static] = ACTIONS(2827), - [anon_sym_register] = ACTIONS(2827), - [anon_sym_inline] = ACTIONS(2827), - [anon_sym___inline] = ACTIONS(2827), - [anon_sym___inline__] = ACTIONS(2827), - [anon_sym___forceinline] = ACTIONS(2827), - [anon_sym_thread_local] = ACTIONS(2827), - [anon_sym___thread] = ACTIONS(2827), - [anon_sym_const] = ACTIONS(2827), - [anon_sym_constexpr] = ACTIONS(2827), - [anon_sym_volatile] = ACTIONS(2827), - [anon_sym_restrict] = ACTIONS(2827), - [anon_sym___restrict__] = ACTIONS(2827), - [anon_sym__Atomic] = ACTIONS(2827), - [anon_sym__Noreturn] = ACTIONS(2827), - [anon_sym_noreturn] = ACTIONS(2827), - [anon_sym__Nonnull] = ACTIONS(2827), - [anon_sym_mutable] = ACTIONS(2827), - [anon_sym_constinit] = ACTIONS(2827), - [anon_sym_consteval] = ACTIONS(2827), - [anon_sym_alignas] = ACTIONS(2827), - [anon_sym__Alignas] = ACTIONS(2827), - [sym_primitive_type] = ACTIONS(2827), - [anon_sym_enum] = ACTIONS(2827), - [anon_sym_class] = ACTIONS(2827), - [anon_sym_struct] = ACTIONS(2827), - [anon_sym_union] = ACTIONS(2827), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2827), - [anon_sym_decltype] = ACTIONS(2827), - [anon_sym_explicit] = ACTIONS(2827), - [anon_sym_typename] = ACTIONS(2827), - [anon_sym_private] = ACTIONS(2827), - [anon_sym_template] = ACTIONS(2827), - [anon_sym_operator] = ACTIONS(2827), - [anon_sym_friend] = ACTIONS(2827), - [anon_sym_public] = ACTIONS(2827), - [anon_sym_protected] = ACTIONS(2827), - [anon_sym_static_assert] = ACTIONS(2827), + [2172] = { + [sym_string_literal] = STATE(3212), + [sym_template_argument_list] = STATE(3605), + [sym_raw_string_literal] = STATE(3212), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4166), + [anon_sym_COMMA] = ACTIONS(4166), + [anon_sym_LPAREN2] = ACTIONS(4166), + [anon_sym_DASH] = ACTIONS(4174), + [anon_sym_PLUS] = ACTIONS(4174), + [anon_sym_STAR] = ACTIONS(4174), + [anon_sym_SLASH] = ACTIONS(4174), + [anon_sym_PERCENT] = ACTIONS(4174), + [anon_sym_PIPE_PIPE] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4166), + [anon_sym_PIPE] = ACTIONS(4174), + [anon_sym_CARET] = ACTIONS(4174), + [anon_sym_AMP] = ACTIONS(4174), + [anon_sym_EQ_EQ] = ACTIONS(4166), + [anon_sym_BANG_EQ] = ACTIONS(4166), + [anon_sym_GT] = ACTIONS(4174), + [anon_sym_GT_EQ] = ACTIONS(4166), + [anon_sym_LT_EQ] = ACTIONS(4174), + [anon_sym_LT] = ACTIONS(5085), + [anon_sym_LT_LT] = ACTIONS(4174), + [anon_sym_GT_GT] = ACTIONS(4174), + [anon_sym_SEMI] = ACTIONS(4166), + [anon_sym___attribute__] = ACTIONS(4166), + [anon_sym___attribute] = ACTIONS(4174), + [anon_sym_COLON_COLON] = ACTIONS(4187), + [anon_sym_LBRACE] = ACTIONS(4192), + [anon_sym_LBRACK] = ACTIONS(4166), + [anon_sym_EQ] = ACTIONS(6076), + [anon_sym_QMARK] = ACTIONS(4166), + [anon_sym_STAR_EQ] = ACTIONS(6078), + [anon_sym_SLASH_EQ] = ACTIONS(6078), + [anon_sym_PERCENT_EQ] = ACTIONS(6078), + [anon_sym_PLUS_EQ] = ACTIONS(6078), + [anon_sym_DASH_EQ] = ACTIONS(6078), + [anon_sym_LT_LT_EQ] = ACTIONS(6078), + [anon_sym_GT_GT_EQ] = ACTIONS(6078), + [anon_sym_AMP_EQ] = ACTIONS(6078), + [anon_sym_CARET_EQ] = ACTIONS(6078), + [anon_sym_PIPE_EQ] = ACTIONS(6078), + [anon_sym_and_eq] = ACTIONS(6078), + [anon_sym_or_eq] = ACTIONS(6078), + [anon_sym_xor_eq] = ACTIONS(6078), + [anon_sym_LT_EQ_GT] = ACTIONS(4166), + [anon_sym_or] = ACTIONS(4174), + [anon_sym_and] = ACTIONS(4174), + [anon_sym_bitor] = ACTIONS(4166), + [anon_sym_xor] = ACTIONS(4174), + [anon_sym_bitand] = ACTIONS(4166), + [anon_sym_not_eq] = ACTIONS(4166), + [anon_sym_DASH_DASH] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4174), + [anon_sym_DOT_STAR] = ACTIONS(4166), + [anon_sym_DASH_GT] = ACTIONS(4166), + [anon_sym_L_DQUOTE] = ACTIONS(6080), + [anon_sym_u_DQUOTE] = ACTIONS(6080), + [anon_sym_U_DQUOTE] = ACTIONS(6080), + [anon_sym_u8_DQUOTE] = ACTIONS(6080), + [anon_sym_DQUOTE] = ACTIONS(6080), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(6082), + [anon_sym_LR_DQUOTE] = ACTIONS(6082), + [anon_sym_uR_DQUOTE] = ACTIONS(6082), + [anon_sym_UR_DQUOTE] = ACTIONS(6082), + [anon_sym_u8R_DQUOTE] = ACTIONS(6082), }, - [2151] = { - [sym_identifier] = ACTIONS(5509), - [aux_sym_preproc_def_token1] = ACTIONS(5509), - [aux_sym_preproc_if_token1] = ACTIONS(5509), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5509), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5509), - [sym_preproc_directive] = ACTIONS(5509), - [anon_sym_LPAREN2] = ACTIONS(5511), - [anon_sym_TILDE] = ACTIONS(5511), - [anon_sym_STAR] = ACTIONS(5511), - [anon_sym_AMP_AMP] = ACTIONS(5511), - [anon_sym_AMP] = ACTIONS(5509), - [anon_sym_SEMI] = ACTIONS(5511), - [anon_sym___extension__] = ACTIONS(5509), - [anon_sym_typedef] = ACTIONS(5509), - [anon_sym_virtual] = ACTIONS(5509), - [anon_sym_extern] = ACTIONS(5509), - [anon_sym___attribute__] = ACTIONS(5509), - [anon_sym___attribute] = ACTIONS(5509), - [anon_sym_using] = ACTIONS(5509), - [anon_sym_COLON_COLON] = ACTIONS(5511), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5511), - [anon_sym___declspec] = ACTIONS(5509), - [anon_sym___based] = ACTIONS(5509), - [anon_sym_RBRACE] = ACTIONS(5511), - [anon_sym_signed] = ACTIONS(5509), - [anon_sym_unsigned] = ACTIONS(5509), - [anon_sym_long] = ACTIONS(5509), - [anon_sym_short] = ACTIONS(5509), - [anon_sym_LBRACK] = ACTIONS(5509), - [anon_sym_static] = ACTIONS(5509), - [anon_sym_register] = ACTIONS(5509), - [anon_sym_inline] = ACTIONS(5509), - [anon_sym___inline] = ACTIONS(5509), - [anon_sym___inline__] = ACTIONS(5509), - [anon_sym___forceinline] = ACTIONS(5509), - [anon_sym_thread_local] = ACTIONS(5509), - [anon_sym___thread] = ACTIONS(5509), - [anon_sym_const] = ACTIONS(5509), - [anon_sym_constexpr] = ACTIONS(5509), - [anon_sym_volatile] = ACTIONS(5509), - [anon_sym_restrict] = ACTIONS(5509), - [anon_sym___restrict__] = ACTIONS(5509), - [anon_sym__Atomic] = ACTIONS(5509), - [anon_sym__Noreturn] = ACTIONS(5509), - [anon_sym_noreturn] = ACTIONS(5509), - [anon_sym__Nonnull] = ACTIONS(5509), - [anon_sym_mutable] = ACTIONS(5509), - [anon_sym_constinit] = ACTIONS(5509), - [anon_sym_consteval] = ACTIONS(5509), - [anon_sym_alignas] = ACTIONS(5509), - [anon_sym__Alignas] = ACTIONS(5509), - [sym_primitive_type] = ACTIONS(5509), - [anon_sym_enum] = ACTIONS(5509), - [anon_sym_class] = ACTIONS(5509), - [anon_sym_struct] = ACTIONS(5509), - [anon_sym_union] = ACTIONS(5509), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5509), - [anon_sym_decltype] = ACTIONS(5509), - [anon_sym_explicit] = ACTIONS(5509), - [anon_sym_typename] = ACTIONS(5509), - [anon_sym_private] = ACTIONS(5509), - [anon_sym_template] = ACTIONS(5509), - [anon_sym_operator] = ACTIONS(5509), - [anon_sym_friend] = ACTIONS(5509), - [anon_sym_public] = ACTIONS(5509), - [anon_sym_protected] = ACTIONS(5509), - [anon_sym_static_assert] = ACTIONS(5509), + [2173] = { + [sym_identifier] = ACTIONS(3051), + [aux_sym_preproc_def_token1] = ACTIONS(3051), + [aux_sym_preproc_if_token1] = ACTIONS(3051), + [aux_sym_preproc_if_token2] = ACTIONS(3051), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3051), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3051), + [sym_preproc_directive] = ACTIONS(3051), + [anon_sym_LPAREN2] = ACTIONS(3053), + [anon_sym_TILDE] = ACTIONS(3053), + [anon_sym_STAR] = ACTIONS(3053), + [anon_sym_AMP_AMP] = ACTIONS(3053), + [anon_sym_AMP] = ACTIONS(3051), + [anon_sym_SEMI] = ACTIONS(3053), + [anon_sym___extension__] = ACTIONS(3051), + [anon_sym_typedef] = ACTIONS(3051), + [anon_sym_virtual] = ACTIONS(3051), + [anon_sym_extern] = ACTIONS(3051), + [anon_sym___attribute__] = ACTIONS(3051), + [anon_sym___attribute] = ACTIONS(3051), + [anon_sym_using] = ACTIONS(3051), + [anon_sym_COLON_COLON] = ACTIONS(3053), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3053), + [anon_sym___declspec] = ACTIONS(3051), + [anon_sym___based] = ACTIONS(3051), + [anon_sym_signed] = ACTIONS(3051), + [anon_sym_unsigned] = ACTIONS(3051), + [anon_sym_long] = ACTIONS(3051), + [anon_sym_short] = ACTIONS(3051), + [anon_sym_LBRACK] = ACTIONS(3051), + [anon_sym_static] = ACTIONS(3051), + [anon_sym_register] = ACTIONS(3051), + [anon_sym_inline] = ACTIONS(3051), + [anon_sym___inline] = ACTIONS(3051), + [anon_sym___inline__] = ACTIONS(3051), + [anon_sym___forceinline] = ACTIONS(3051), + [anon_sym_thread_local] = ACTIONS(3051), + [anon_sym___thread] = ACTIONS(3051), + [anon_sym_const] = ACTIONS(3051), + [anon_sym_constexpr] = ACTIONS(3051), + [anon_sym_volatile] = ACTIONS(3051), + [anon_sym_restrict] = ACTIONS(3051), + [anon_sym___restrict__] = ACTIONS(3051), + [anon_sym__Atomic] = ACTIONS(3051), + [anon_sym__Noreturn] = ACTIONS(3051), + [anon_sym_noreturn] = ACTIONS(3051), + [anon_sym__Nonnull] = ACTIONS(3051), + [anon_sym_mutable] = ACTIONS(3051), + [anon_sym_constinit] = ACTIONS(3051), + [anon_sym_consteval] = ACTIONS(3051), + [anon_sym_alignas] = ACTIONS(3051), + [anon_sym__Alignas] = ACTIONS(3051), + [sym_primitive_type] = ACTIONS(3051), + [anon_sym_enum] = ACTIONS(3051), + [anon_sym_class] = ACTIONS(3051), + [anon_sym_struct] = ACTIONS(3051), + [anon_sym_union] = ACTIONS(3051), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3051), + [anon_sym_decltype] = ACTIONS(3051), + [anon_sym_explicit] = ACTIONS(3051), + [anon_sym_typename] = ACTIONS(3051), + [anon_sym_private] = ACTIONS(3051), + [anon_sym_template] = ACTIONS(3051), + [anon_sym_operator] = ACTIONS(3051), + [anon_sym_friend] = ACTIONS(3051), + [anon_sym_public] = ACTIONS(3051), + [anon_sym_protected] = ACTIONS(3051), + [anon_sym_static_assert] = ACTIONS(3051), }, - [2152] = { - [sym_identifier] = ACTIONS(5517), - [aux_sym_preproc_def_token1] = ACTIONS(5517), - [aux_sym_preproc_if_token1] = ACTIONS(5517), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5517), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5517), - [sym_preproc_directive] = ACTIONS(5517), - [anon_sym_LPAREN2] = ACTIONS(5519), - [anon_sym_TILDE] = ACTIONS(5519), - [anon_sym_STAR] = ACTIONS(5519), - [anon_sym_AMP_AMP] = ACTIONS(5519), - [anon_sym_AMP] = ACTIONS(5517), - [anon_sym_SEMI] = ACTIONS(5519), - [anon_sym___extension__] = ACTIONS(5517), - [anon_sym_typedef] = ACTIONS(5517), - [anon_sym_virtual] = ACTIONS(5517), - [anon_sym_extern] = ACTIONS(5517), - [anon_sym___attribute__] = ACTIONS(5517), - [anon_sym___attribute] = ACTIONS(5517), - [anon_sym_using] = ACTIONS(5517), - [anon_sym_COLON_COLON] = ACTIONS(5519), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5519), - [anon_sym___declspec] = ACTIONS(5517), - [anon_sym___based] = ACTIONS(5517), - [anon_sym_RBRACE] = ACTIONS(5519), - [anon_sym_signed] = ACTIONS(5517), - [anon_sym_unsigned] = ACTIONS(5517), - [anon_sym_long] = ACTIONS(5517), - [anon_sym_short] = ACTIONS(5517), - [anon_sym_LBRACK] = ACTIONS(5517), - [anon_sym_static] = ACTIONS(5517), - [anon_sym_register] = ACTIONS(5517), - [anon_sym_inline] = ACTIONS(5517), - [anon_sym___inline] = ACTIONS(5517), - [anon_sym___inline__] = ACTIONS(5517), - [anon_sym___forceinline] = ACTIONS(5517), - [anon_sym_thread_local] = ACTIONS(5517), - [anon_sym___thread] = ACTIONS(5517), - [anon_sym_const] = ACTIONS(5517), - [anon_sym_constexpr] = ACTIONS(5517), - [anon_sym_volatile] = ACTIONS(5517), - [anon_sym_restrict] = ACTIONS(5517), - [anon_sym___restrict__] = ACTIONS(5517), - [anon_sym__Atomic] = ACTIONS(5517), - [anon_sym__Noreturn] = ACTIONS(5517), - [anon_sym_noreturn] = ACTIONS(5517), - [anon_sym__Nonnull] = ACTIONS(5517), - [anon_sym_mutable] = ACTIONS(5517), - [anon_sym_constinit] = ACTIONS(5517), - [anon_sym_consteval] = ACTIONS(5517), - [anon_sym_alignas] = ACTIONS(5517), - [anon_sym__Alignas] = ACTIONS(5517), - [sym_primitive_type] = ACTIONS(5517), - [anon_sym_enum] = ACTIONS(5517), - [anon_sym_class] = ACTIONS(5517), - [anon_sym_struct] = ACTIONS(5517), - [anon_sym_union] = ACTIONS(5517), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5517), - [anon_sym_decltype] = ACTIONS(5517), - [anon_sym_explicit] = ACTIONS(5517), - [anon_sym_typename] = ACTIONS(5517), - [anon_sym_private] = ACTIONS(5517), - [anon_sym_template] = ACTIONS(5517), - [anon_sym_operator] = ACTIONS(5517), - [anon_sym_friend] = ACTIONS(5517), - [anon_sym_public] = ACTIONS(5517), - [anon_sym_protected] = ACTIONS(5517), - [anon_sym_static_assert] = ACTIONS(5517), + [2174] = { + [sym_identifier] = ACTIONS(5511), + [aux_sym_preproc_def_token1] = ACTIONS(5511), + [aux_sym_preproc_if_token1] = ACTIONS(5511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5511), + [sym_preproc_directive] = ACTIONS(5511), + [anon_sym_LPAREN2] = ACTIONS(5513), + [anon_sym_TILDE] = ACTIONS(5513), + [anon_sym_STAR] = ACTIONS(5513), + [anon_sym_AMP_AMP] = ACTIONS(5513), + [anon_sym_AMP] = ACTIONS(5511), + [anon_sym_SEMI] = ACTIONS(5513), + [anon_sym___extension__] = ACTIONS(5511), + [anon_sym_typedef] = ACTIONS(5511), + [anon_sym_virtual] = ACTIONS(5511), + [anon_sym_extern] = ACTIONS(5511), + [anon_sym___attribute__] = ACTIONS(5511), + [anon_sym___attribute] = ACTIONS(5511), + [anon_sym_using] = ACTIONS(5511), + [anon_sym_COLON_COLON] = ACTIONS(5513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5513), + [anon_sym___declspec] = ACTIONS(5511), + [anon_sym___based] = ACTIONS(5511), + [anon_sym_RBRACE] = ACTIONS(5513), + [anon_sym_signed] = ACTIONS(5511), + [anon_sym_unsigned] = ACTIONS(5511), + [anon_sym_long] = ACTIONS(5511), + [anon_sym_short] = ACTIONS(5511), + [anon_sym_LBRACK] = ACTIONS(5511), + [anon_sym_static] = ACTIONS(5511), + [anon_sym_register] = ACTIONS(5511), + [anon_sym_inline] = ACTIONS(5511), + [anon_sym___inline] = ACTIONS(5511), + [anon_sym___inline__] = ACTIONS(5511), + [anon_sym___forceinline] = ACTIONS(5511), + [anon_sym_thread_local] = ACTIONS(5511), + [anon_sym___thread] = ACTIONS(5511), + [anon_sym_const] = ACTIONS(5511), + [anon_sym_constexpr] = ACTIONS(5511), + [anon_sym_volatile] = ACTIONS(5511), + [anon_sym_restrict] = ACTIONS(5511), + [anon_sym___restrict__] = ACTIONS(5511), + [anon_sym__Atomic] = ACTIONS(5511), + [anon_sym__Noreturn] = ACTIONS(5511), + [anon_sym_noreturn] = ACTIONS(5511), + [anon_sym__Nonnull] = ACTIONS(5511), + [anon_sym_mutable] = ACTIONS(5511), + [anon_sym_constinit] = ACTIONS(5511), + [anon_sym_consteval] = ACTIONS(5511), + [anon_sym_alignas] = ACTIONS(5511), + [anon_sym__Alignas] = ACTIONS(5511), + [sym_primitive_type] = ACTIONS(5511), + [anon_sym_enum] = ACTIONS(5511), + [anon_sym_class] = ACTIONS(5511), + [anon_sym_struct] = ACTIONS(5511), + [anon_sym_union] = ACTIONS(5511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5511), + [anon_sym_decltype] = ACTIONS(5511), + [anon_sym_explicit] = ACTIONS(5511), + [anon_sym_typename] = ACTIONS(5511), + [anon_sym_private] = ACTIONS(5511), + [anon_sym_template] = ACTIONS(5511), + [anon_sym_operator] = ACTIONS(5511), + [anon_sym_friend] = ACTIONS(5511), + [anon_sym_public] = ACTIONS(5511), + [anon_sym_protected] = ACTIONS(5511), + [anon_sym_static_assert] = ACTIONS(5511), }, - [2153] = { - [sym_identifier] = ACTIONS(2843), - [aux_sym_preproc_def_token1] = ACTIONS(2843), - [aux_sym_preproc_if_token1] = ACTIONS(2843), - [aux_sym_preproc_if_token2] = ACTIONS(2843), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2843), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2843), - [sym_preproc_directive] = ACTIONS(2843), - [anon_sym_LPAREN2] = ACTIONS(2845), - [anon_sym_TILDE] = ACTIONS(2845), - [anon_sym_STAR] = ACTIONS(2845), - [anon_sym_AMP_AMP] = ACTIONS(2845), - [anon_sym_AMP] = ACTIONS(2843), - [anon_sym_SEMI] = ACTIONS(2845), - [anon_sym___extension__] = ACTIONS(2843), - [anon_sym_typedef] = ACTIONS(2843), - [anon_sym_virtual] = ACTIONS(2843), - [anon_sym_extern] = ACTIONS(2843), - [anon_sym___attribute__] = ACTIONS(2843), - [anon_sym___attribute] = ACTIONS(2843), - [anon_sym_using] = ACTIONS(2843), - [anon_sym_COLON_COLON] = ACTIONS(2845), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2845), - [anon_sym___declspec] = ACTIONS(2843), - [anon_sym___based] = ACTIONS(2843), - [anon_sym_signed] = ACTIONS(2843), - [anon_sym_unsigned] = ACTIONS(2843), - [anon_sym_long] = ACTIONS(2843), - [anon_sym_short] = ACTIONS(2843), - [anon_sym_LBRACK] = ACTIONS(2843), - [anon_sym_static] = ACTIONS(2843), - [anon_sym_register] = ACTIONS(2843), - [anon_sym_inline] = ACTIONS(2843), - [anon_sym___inline] = ACTIONS(2843), - [anon_sym___inline__] = ACTIONS(2843), - [anon_sym___forceinline] = ACTIONS(2843), - [anon_sym_thread_local] = ACTIONS(2843), - [anon_sym___thread] = ACTIONS(2843), - [anon_sym_const] = ACTIONS(2843), - [anon_sym_constexpr] = ACTIONS(2843), - [anon_sym_volatile] = ACTIONS(2843), - [anon_sym_restrict] = ACTIONS(2843), - [anon_sym___restrict__] = ACTIONS(2843), - [anon_sym__Atomic] = ACTIONS(2843), - [anon_sym__Noreturn] = ACTIONS(2843), - [anon_sym_noreturn] = ACTIONS(2843), - [anon_sym__Nonnull] = ACTIONS(2843), - [anon_sym_mutable] = ACTIONS(2843), - [anon_sym_constinit] = ACTIONS(2843), - [anon_sym_consteval] = ACTIONS(2843), - [anon_sym_alignas] = ACTIONS(2843), - [anon_sym__Alignas] = ACTIONS(2843), - [sym_primitive_type] = ACTIONS(2843), - [anon_sym_enum] = ACTIONS(2843), - [anon_sym_class] = ACTIONS(2843), - [anon_sym_struct] = ACTIONS(2843), - [anon_sym_union] = ACTIONS(2843), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2843), - [anon_sym_decltype] = ACTIONS(2843), - [anon_sym_explicit] = ACTIONS(2843), - [anon_sym_typename] = ACTIONS(2843), - [anon_sym_private] = ACTIONS(2843), - [anon_sym_template] = ACTIONS(2843), - [anon_sym_operator] = ACTIONS(2843), - [anon_sym_friend] = ACTIONS(2843), - [anon_sym_public] = ACTIONS(2843), - [anon_sym_protected] = ACTIONS(2843), - [anon_sym_static_assert] = ACTIONS(2843), + [2175] = { + [sym_identifier] = ACTIONS(5462), + [aux_sym_preproc_def_token1] = ACTIONS(5462), + [aux_sym_preproc_if_token1] = ACTIONS(5462), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5462), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5462), + [sym_preproc_directive] = ACTIONS(5462), + [anon_sym_LPAREN2] = ACTIONS(5464), + [anon_sym_TILDE] = ACTIONS(5464), + [anon_sym_STAR] = ACTIONS(5464), + [anon_sym_AMP_AMP] = ACTIONS(5464), + [anon_sym_AMP] = ACTIONS(5462), + [anon_sym_SEMI] = ACTIONS(5464), + [anon_sym___extension__] = ACTIONS(5462), + [anon_sym_typedef] = ACTIONS(5462), + [anon_sym_virtual] = ACTIONS(5462), + [anon_sym_extern] = ACTIONS(5462), + [anon_sym___attribute__] = ACTIONS(5462), + [anon_sym___attribute] = ACTIONS(5462), + [anon_sym_using] = ACTIONS(5462), + [anon_sym_COLON_COLON] = ACTIONS(5464), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5464), + [anon_sym___declspec] = ACTIONS(5462), + [anon_sym___based] = ACTIONS(5462), + [anon_sym_RBRACE] = ACTIONS(5464), + [anon_sym_signed] = ACTIONS(5462), + [anon_sym_unsigned] = ACTIONS(5462), + [anon_sym_long] = ACTIONS(5462), + [anon_sym_short] = ACTIONS(5462), + [anon_sym_LBRACK] = ACTIONS(5462), + [anon_sym_static] = ACTIONS(5462), + [anon_sym_register] = ACTIONS(5462), + [anon_sym_inline] = ACTIONS(5462), + [anon_sym___inline] = ACTIONS(5462), + [anon_sym___inline__] = ACTIONS(5462), + [anon_sym___forceinline] = ACTIONS(5462), + [anon_sym_thread_local] = ACTIONS(5462), + [anon_sym___thread] = ACTIONS(5462), + [anon_sym_const] = ACTIONS(5462), + [anon_sym_constexpr] = ACTIONS(5462), + [anon_sym_volatile] = ACTIONS(5462), + [anon_sym_restrict] = ACTIONS(5462), + [anon_sym___restrict__] = ACTIONS(5462), + [anon_sym__Atomic] = ACTIONS(5462), + [anon_sym__Noreturn] = ACTIONS(5462), + [anon_sym_noreturn] = ACTIONS(5462), + [anon_sym__Nonnull] = ACTIONS(5462), + [anon_sym_mutable] = ACTIONS(5462), + [anon_sym_constinit] = ACTIONS(5462), + [anon_sym_consteval] = ACTIONS(5462), + [anon_sym_alignas] = ACTIONS(5462), + [anon_sym__Alignas] = ACTIONS(5462), + [sym_primitive_type] = ACTIONS(5462), + [anon_sym_enum] = ACTIONS(5462), + [anon_sym_class] = ACTIONS(5462), + [anon_sym_struct] = ACTIONS(5462), + [anon_sym_union] = ACTIONS(5462), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5462), + [anon_sym_decltype] = ACTIONS(5462), + [anon_sym_explicit] = ACTIONS(5462), + [anon_sym_typename] = ACTIONS(5462), + [anon_sym_private] = ACTIONS(5462), + [anon_sym_template] = ACTIONS(5462), + [anon_sym_operator] = ACTIONS(5462), + [anon_sym_friend] = ACTIONS(5462), + [anon_sym_public] = ACTIONS(5462), + [anon_sym_protected] = ACTIONS(5462), + [anon_sym_static_assert] = ACTIONS(5462), }, - [2154] = { - [sym_identifier] = ACTIONS(2843), - [aux_sym_preproc_def_token1] = ACTIONS(2843), - [aux_sym_preproc_if_token1] = ACTIONS(2843), - [aux_sym_preproc_if_token2] = ACTIONS(2843), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2843), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2843), - [sym_preproc_directive] = ACTIONS(2843), - [anon_sym_LPAREN2] = ACTIONS(2845), - [anon_sym_TILDE] = ACTIONS(2845), - [anon_sym_STAR] = ACTIONS(2845), - [anon_sym_AMP_AMP] = ACTIONS(2845), - [anon_sym_AMP] = ACTIONS(2843), - [anon_sym_SEMI] = ACTIONS(2845), - [anon_sym___extension__] = ACTIONS(2843), - [anon_sym_typedef] = ACTIONS(2843), - [anon_sym_virtual] = ACTIONS(2843), - [anon_sym_extern] = ACTIONS(2843), - [anon_sym___attribute__] = ACTIONS(2843), - [anon_sym___attribute] = ACTIONS(2843), - [anon_sym_using] = ACTIONS(2843), - [anon_sym_COLON_COLON] = ACTIONS(2845), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2845), - [anon_sym___declspec] = ACTIONS(2843), - [anon_sym___based] = ACTIONS(2843), - [anon_sym_signed] = ACTIONS(2843), - [anon_sym_unsigned] = ACTIONS(2843), - [anon_sym_long] = ACTIONS(2843), - [anon_sym_short] = ACTIONS(2843), - [anon_sym_LBRACK] = ACTIONS(2843), - [anon_sym_static] = ACTIONS(2843), - [anon_sym_register] = ACTIONS(2843), - [anon_sym_inline] = ACTIONS(2843), - [anon_sym___inline] = ACTIONS(2843), - [anon_sym___inline__] = ACTIONS(2843), - [anon_sym___forceinline] = ACTIONS(2843), - [anon_sym_thread_local] = ACTIONS(2843), - [anon_sym___thread] = ACTIONS(2843), - [anon_sym_const] = ACTIONS(2843), - [anon_sym_constexpr] = ACTIONS(2843), - [anon_sym_volatile] = ACTIONS(2843), - [anon_sym_restrict] = ACTIONS(2843), - [anon_sym___restrict__] = ACTIONS(2843), - [anon_sym__Atomic] = ACTIONS(2843), - [anon_sym__Noreturn] = ACTIONS(2843), - [anon_sym_noreturn] = ACTIONS(2843), - [anon_sym__Nonnull] = ACTIONS(2843), - [anon_sym_mutable] = ACTIONS(2843), - [anon_sym_constinit] = ACTIONS(2843), - [anon_sym_consteval] = ACTIONS(2843), - [anon_sym_alignas] = ACTIONS(2843), - [anon_sym__Alignas] = ACTIONS(2843), - [sym_primitive_type] = ACTIONS(2843), - [anon_sym_enum] = ACTIONS(2843), - [anon_sym_class] = ACTIONS(2843), - [anon_sym_struct] = ACTIONS(2843), - [anon_sym_union] = ACTIONS(2843), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2843), - [anon_sym_decltype] = ACTIONS(2843), - [anon_sym_explicit] = ACTIONS(2843), - [anon_sym_typename] = ACTIONS(2843), - [anon_sym_private] = ACTIONS(2843), - [anon_sym_template] = ACTIONS(2843), - [anon_sym_operator] = ACTIONS(2843), - [anon_sym_friend] = ACTIONS(2843), - [anon_sym_public] = ACTIONS(2843), - [anon_sym_protected] = ACTIONS(2843), - [anon_sym_static_assert] = ACTIONS(2843), + [2176] = { + [sym_identifier] = ACTIONS(5507), + [aux_sym_preproc_def_token1] = ACTIONS(5507), + [aux_sym_preproc_if_token1] = ACTIONS(5507), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5507), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5507), + [sym_preproc_directive] = ACTIONS(5507), + [anon_sym_LPAREN2] = ACTIONS(5509), + [anon_sym_TILDE] = ACTIONS(5509), + [anon_sym_STAR] = ACTIONS(5509), + [anon_sym_AMP_AMP] = ACTIONS(5509), + [anon_sym_AMP] = ACTIONS(5507), + [anon_sym_SEMI] = ACTIONS(5509), + [anon_sym___extension__] = ACTIONS(5507), + [anon_sym_typedef] = ACTIONS(5507), + [anon_sym_virtual] = ACTIONS(5507), + [anon_sym_extern] = ACTIONS(5507), + [anon_sym___attribute__] = ACTIONS(5507), + [anon_sym___attribute] = ACTIONS(5507), + [anon_sym_using] = ACTIONS(5507), + [anon_sym_COLON_COLON] = ACTIONS(5509), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5509), + [anon_sym___declspec] = ACTIONS(5507), + [anon_sym___based] = ACTIONS(5507), + [anon_sym_RBRACE] = ACTIONS(5509), + [anon_sym_signed] = ACTIONS(5507), + [anon_sym_unsigned] = ACTIONS(5507), + [anon_sym_long] = ACTIONS(5507), + [anon_sym_short] = ACTIONS(5507), + [anon_sym_LBRACK] = ACTIONS(5507), + [anon_sym_static] = ACTIONS(5507), + [anon_sym_register] = ACTIONS(5507), + [anon_sym_inline] = ACTIONS(5507), + [anon_sym___inline] = ACTIONS(5507), + [anon_sym___inline__] = ACTIONS(5507), + [anon_sym___forceinline] = ACTIONS(5507), + [anon_sym_thread_local] = ACTIONS(5507), + [anon_sym___thread] = ACTIONS(5507), + [anon_sym_const] = ACTIONS(5507), + [anon_sym_constexpr] = ACTIONS(5507), + [anon_sym_volatile] = ACTIONS(5507), + [anon_sym_restrict] = ACTIONS(5507), + [anon_sym___restrict__] = ACTIONS(5507), + [anon_sym__Atomic] = ACTIONS(5507), + [anon_sym__Noreturn] = ACTIONS(5507), + [anon_sym_noreturn] = ACTIONS(5507), + [anon_sym__Nonnull] = ACTIONS(5507), + [anon_sym_mutable] = ACTIONS(5507), + [anon_sym_constinit] = ACTIONS(5507), + [anon_sym_consteval] = ACTIONS(5507), + [anon_sym_alignas] = ACTIONS(5507), + [anon_sym__Alignas] = ACTIONS(5507), + [sym_primitive_type] = ACTIONS(5507), + [anon_sym_enum] = ACTIONS(5507), + [anon_sym_class] = ACTIONS(5507), + [anon_sym_struct] = ACTIONS(5507), + [anon_sym_union] = ACTIONS(5507), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5507), + [anon_sym_decltype] = ACTIONS(5507), + [anon_sym_explicit] = ACTIONS(5507), + [anon_sym_typename] = ACTIONS(5507), + [anon_sym_private] = ACTIONS(5507), + [anon_sym_template] = ACTIONS(5507), + [anon_sym_operator] = ACTIONS(5507), + [anon_sym_friend] = ACTIONS(5507), + [anon_sym_public] = ACTIONS(5507), + [anon_sym_protected] = ACTIONS(5507), + [anon_sym_static_assert] = ACTIONS(5507), }, - [2155] = { - [sym_ms_based_modifier] = STATE(8106), - [sym_ms_unaligned_ptr_modifier] = STATE(4043), - [sym_ms_pointer_modifier] = STATE(3820), - [sym__declarator] = STATE(6349), - [sym__abstract_declarator] = STATE(6654), - [sym_parenthesized_declarator] = STATE(5998), - [sym_abstract_parenthesized_declarator] = STATE(6092), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_abstract_pointer_declarator] = STATE(6092), - [sym_function_declarator] = STATE(5998), - [sym_abstract_function_declarator] = STATE(6092), - [sym_array_declarator] = STATE(5998), - [sym_abstract_array_declarator] = STATE(6092), - [sym_type_qualifier] = STATE(2664), - [sym_alignas_qualifier] = STATE(4289), - [sym_parameter_list] = STATE(3223), - [sym_decltype] = STATE(8601), - [sym_reference_declarator] = STATE(5998), - [sym_abstract_reference_declarator] = STATE(6092), - [sym_structured_binding_declarator] = STATE(5998), - [sym__function_declarator_seq] = STATE(6087), - [sym_template_type] = STATE(8601), - [sym_template_function] = STATE(5998), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5860), - [sym_qualified_identifier] = STATE(5998), - [sym_operator_name] = STATE(5998), - [aux_sym__type_definition_type_repeat1] = STATE(2664), - [aux_sym_pointer_declarator_repeat1] = STATE(3820), - [sym_identifier] = ACTIONS(5849), - [anon_sym_COMMA] = ACTIONS(5865), - [anon_sym_RPAREN] = ACTIONS(5865), - [anon_sym_LPAREN2] = ACTIONS(4298), - [anon_sym_TILDE] = ACTIONS(2979), - [anon_sym_STAR] = ACTIONS(6032), - [anon_sym_AMP_AMP] = ACTIONS(6034), - [anon_sym_AMP] = ACTIONS(6036), - [anon_sym___extension__] = ACTIONS(3331), - [anon_sym___attribute__] = ACTIONS(5867), - [anon_sym___attribute] = ACTIONS(5867), - [anon_sym_COLON_COLON] = ACTIONS(5861), - [anon_sym___based] = ACTIONS(53), - [sym_ms_restrict_modifier] = ACTIONS(3327), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(3327), - [sym_ms_signed_ptr_modifier] = ACTIONS(3327), - [anon_sym__unaligned] = ACTIONS(3329), - [anon_sym___unaligned] = ACTIONS(3329), - [anon_sym_LBRACK] = ACTIONS(5863), - [anon_sym_const] = ACTIONS(3331), - [anon_sym_constexpr] = ACTIONS(3331), - [anon_sym_volatile] = ACTIONS(3331), - [anon_sym_restrict] = ACTIONS(3331), - [anon_sym___restrict__] = ACTIONS(3331), - [anon_sym__Atomic] = ACTIONS(3331), - [anon_sym__Noreturn] = ACTIONS(3331), - [anon_sym_noreturn] = ACTIONS(3331), - [anon_sym__Nonnull] = ACTIONS(3331), - [anon_sym_mutable] = ACTIONS(3331), - [anon_sym_constinit] = ACTIONS(3331), - [anon_sym_consteval] = ACTIONS(3331), - [anon_sym_alignas] = ACTIONS(3333), - [anon_sym__Alignas] = ACTIONS(3333), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_operator] = ACTIONS(1852), + [2177] = { + [sym_identifier] = ACTIONS(5466), + [aux_sym_preproc_def_token1] = ACTIONS(5466), + [aux_sym_preproc_if_token1] = ACTIONS(5466), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5466), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5466), + [sym_preproc_directive] = ACTIONS(5466), + [anon_sym_LPAREN2] = ACTIONS(5468), + [anon_sym_TILDE] = ACTIONS(5468), + [anon_sym_STAR] = ACTIONS(5468), + [anon_sym_AMP_AMP] = ACTIONS(5468), + [anon_sym_AMP] = ACTIONS(5466), + [anon_sym_SEMI] = ACTIONS(5468), + [anon_sym___extension__] = ACTIONS(5466), + [anon_sym_typedef] = ACTIONS(5466), + [anon_sym_virtual] = ACTIONS(5466), + [anon_sym_extern] = ACTIONS(5466), + [anon_sym___attribute__] = ACTIONS(5466), + [anon_sym___attribute] = ACTIONS(5466), + [anon_sym_using] = ACTIONS(5466), + [anon_sym_COLON_COLON] = ACTIONS(5468), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5468), + [anon_sym___declspec] = ACTIONS(5466), + [anon_sym___based] = ACTIONS(5466), + [anon_sym_RBRACE] = ACTIONS(5468), + [anon_sym_signed] = ACTIONS(5466), + [anon_sym_unsigned] = ACTIONS(5466), + [anon_sym_long] = ACTIONS(5466), + [anon_sym_short] = ACTIONS(5466), + [anon_sym_LBRACK] = ACTIONS(5466), + [anon_sym_static] = ACTIONS(5466), + [anon_sym_register] = ACTIONS(5466), + [anon_sym_inline] = ACTIONS(5466), + [anon_sym___inline] = ACTIONS(5466), + [anon_sym___inline__] = ACTIONS(5466), + [anon_sym___forceinline] = ACTIONS(5466), + [anon_sym_thread_local] = ACTIONS(5466), + [anon_sym___thread] = ACTIONS(5466), + [anon_sym_const] = ACTIONS(5466), + [anon_sym_constexpr] = ACTIONS(5466), + [anon_sym_volatile] = ACTIONS(5466), + [anon_sym_restrict] = ACTIONS(5466), + [anon_sym___restrict__] = ACTIONS(5466), + [anon_sym__Atomic] = ACTIONS(5466), + [anon_sym__Noreturn] = ACTIONS(5466), + [anon_sym_noreturn] = ACTIONS(5466), + [anon_sym__Nonnull] = ACTIONS(5466), + [anon_sym_mutable] = ACTIONS(5466), + [anon_sym_constinit] = ACTIONS(5466), + [anon_sym_consteval] = ACTIONS(5466), + [anon_sym_alignas] = ACTIONS(5466), + [anon_sym__Alignas] = ACTIONS(5466), + [sym_primitive_type] = ACTIONS(5466), + [anon_sym_enum] = ACTIONS(5466), + [anon_sym_class] = ACTIONS(5466), + [anon_sym_struct] = ACTIONS(5466), + [anon_sym_union] = ACTIONS(5466), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5466), + [anon_sym_decltype] = ACTIONS(5466), + [anon_sym_explicit] = ACTIONS(5466), + [anon_sym_typename] = ACTIONS(5466), + [anon_sym_private] = ACTIONS(5466), + [anon_sym_template] = ACTIONS(5466), + [anon_sym_operator] = ACTIONS(5466), + [anon_sym_friend] = ACTIONS(5466), + [anon_sym_public] = ACTIONS(5466), + [anon_sym_protected] = ACTIONS(5466), + [anon_sym_static_assert] = ACTIONS(5466), }, - [2156] = { - [sym_identifier] = ACTIONS(2847), - [aux_sym_preproc_def_token1] = ACTIONS(2847), - [aux_sym_preproc_if_token1] = ACTIONS(2847), - [aux_sym_preproc_if_token2] = ACTIONS(2847), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2847), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2847), - [sym_preproc_directive] = ACTIONS(2847), - [anon_sym_LPAREN2] = ACTIONS(2849), - [anon_sym_TILDE] = ACTIONS(2849), - [anon_sym_STAR] = ACTIONS(2849), - [anon_sym_AMP_AMP] = ACTIONS(2849), - [anon_sym_AMP] = ACTIONS(2847), - [anon_sym_SEMI] = ACTIONS(2849), - [anon_sym___extension__] = ACTIONS(2847), - [anon_sym_typedef] = ACTIONS(2847), - [anon_sym_virtual] = ACTIONS(2847), - [anon_sym_extern] = ACTIONS(2847), - [anon_sym___attribute__] = ACTIONS(2847), - [anon_sym___attribute] = ACTIONS(2847), - [anon_sym_using] = ACTIONS(2847), - [anon_sym_COLON_COLON] = ACTIONS(2849), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2849), - [anon_sym___declspec] = ACTIONS(2847), - [anon_sym___based] = ACTIONS(2847), - [anon_sym_signed] = ACTIONS(2847), - [anon_sym_unsigned] = ACTIONS(2847), - [anon_sym_long] = ACTIONS(2847), - [anon_sym_short] = ACTIONS(2847), - [anon_sym_LBRACK] = ACTIONS(2847), - [anon_sym_static] = ACTIONS(2847), - [anon_sym_register] = ACTIONS(2847), - [anon_sym_inline] = ACTIONS(2847), - [anon_sym___inline] = ACTIONS(2847), - [anon_sym___inline__] = ACTIONS(2847), - [anon_sym___forceinline] = ACTIONS(2847), - [anon_sym_thread_local] = ACTIONS(2847), - [anon_sym___thread] = ACTIONS(2847), - [anon_sym_const] = ACTIONS(2847), - [anon_sym_constexpr] = ACTIONS(2847), - [anon_sym_volatile] = ACTIONS(2847), - [anon_sym_restrict] = ACTIONS(2847), - [anon_sym___restrict__] = ACTIONS(2847), - [anon_sym__Atomic] = ACTIONS(2847), - [anon_sym__Noreturn] = ACTIONS(2847), - [anon_sym_noreturn] = ACTIONS(2847), - [anon_sym__Nonnull] = ACTIONS(2847), - [anon_sym_mutable] = ACTIONS(2847), - [anon_sym_constinit] = ACTIONS(2847), - [anon_sym_consteval] = ACTIONS(2847), - [anon_sym_alignas] = ACTIONS(2847), - [anon_sym__Alignas] = ACTIONS(2847), - [sym_primitive_type] = ACTIONS(2847), - [anon_sym_enum] = ACTIONS(2847), - [anon_sym_class] = ACTIONS(2847), - [anon_sym_struct] = ACTIONS(2847), - [anon_sym_union] = ACTIONS(2847), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2847), - [anon_sym_decltype] = ACTIONS(2847), - [anon_sym_explicit] = ACTIONS(2847), - [anon_sym_typename] = ACTIONS(2847), - [anon_sym_private] = ACTIONS(2847), - [anon_sym_template] = ACTIONS(2847), - [anon_sym_operator] = ACTIONS(2847), - [anon_sym_friend] = ACTIONS(2847), - [anon_sym_public] = ACTIONS(2847), - [anon_sym_protected] = ACTIONS(2847), - [anon_sym_static_assert] = ACTIONS(2847), + [2178] = { + [sym_identifier] = ACTIONS(5511), + [aux_sym_preproc_def_token1] = ACTIONS(5511), + [aux_sym_preproc_if_token1] = ACTIONS(5511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5511), + [sym_preproc_directive] = ACTIONS(5511), + [anon_sym_LPAREN2] = ACTIONS(5513), + [anon_sym_TILDE] = ACTIONS(5513), + [anon_sym_STAR] = ACTIONS(5513), + [anon_sym_AMP_AMP] = ACTIONS(5513), + [anon_sym_AMP] = ACTIONS(5511), + [anon_sym_SEMI] = ACTIONS(5513), + [anon_sym___extension__] = ACTIONS(5511), + [anon_sym_typedef] = ACTIONS(5511), + [anon_sym_virtual] = ACTIONS(5511), + [anon_sym_extern] = ACTIONS(5511), + [anon_sym___attribute__] = ACTIONS(5511), + [anon_sym___attribute] = ACTIONS(5511), + [anon_sym_using] = ACTIONS(5511), + [anon_sym_COLON_COLON] = ACTIONS(5513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5513), + [anon_sym___declspec] = ACTIONS(5511), + [anon_sym___based] = ACTIONS(5511), + [anon_sym_RBRACE] = ACTIONS(5513), + [anon_sym_signed] = ACTIONS(5511), + [anon_sym_unsigned] = ACTIONS(5511), + [anon_sym_long] = ACTIONS(5511), + [anon_sym_short] = ACTIONS(5511), + [anon_sym_LBRACK] = ACTIONS(5511), + [anon_sym_static] = ACTIONS(5511), + [anon_sym_register] = ACTIONS(5511), + [anon_sym_inline] = ACTIONS(5511), + [anon_sym___inline] = ACTIONS(5511), + [anon_sym___inline__] = ACTIONS(5511), + [anon_sym___forceinline] = ACTIONS(5511), + [anon_sym_thread_local] = ACTIONS(5511), + [anon_sym___thread] = ACTIONS(5511), + [anon_sym_const] = ACTIONS(5511), + [anon_sym_constexpr] = ACTIONS(5511), + [anon_sym_volatile] = ACTIONS(5511), + [anon_sym_restrict] = ACTIONS(5511), + [anon_sym___restrict__] = ACTIONS(5511), + [anon_sym__Atomic] = ACTIONS(5511), + [anon_sym__Noreturn] = ACTIONS(5511), + [anon_sym_noreturn] = ACTIONS(5511), + [anon_sym__Nonnull] = ACTIONS(5511), + [anon_sym_mutable] = ACTIONS(5511), + [anon_sym_constinit] = ACTIONS(5511), + [anon_sym_consteval] = ACTIONS(5511), + [anon_sym_alignas] = ACTIONS(5511), + [anon_sym__Alignas] = ACTIONS(5511), + [sym_primitive_type] = ACTIONS(5511), + [anon_sym_enum] = ACTIONS(5511), + [anon_sym_class] = ACTIONS(5511), + [anon_sym_struct] = ACTIONS(5511), + [anon_sym_union] = ACTIONS(5511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5511), + [anon_sym_decltype] = ACTIONS(5511), + [anon_sym_explicit] = ACTIONS(5511), + [anon_sym_typename] = ACTIONS(5511), + [anon_sym_private] = ACTIONS(5511), + [anon_sym_template] = ACTIONS(5511), + [anon_sym_operator] = ACTIONS(5511), + [anon_sym_friend] = ACTIONS(5511), + [anon_sym_public] = ACTIONS(5511), + [anon_sym_protected] = ACTIONS(5511), + [anon_sym_static_assert] = ACTIONS(5511), }, - [2157] = { - [sym_identifier] = ACTIONS(3089), - [aux_sym_preproc_def_token1] = ACTIONS(3089), - [aux_sym_preproc_if_token1] = ACTIONS(3089), - [aux_sym_preproc_if_token2] = ACTIONS(3089), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3089), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3089), - [sym_preproc_directive] = ACTIONS(3089), - [anon_sym_LPAREN2] = ACTIONS(3091), - [anon_sym_TILDE] = ACTIONS(3091), - [anon_sym_STAR] = ACTIONS(3091), - [anon_sym_AMP_AMP] = ACTIONS(3091), - [anon_sym_AMP] = ACTIONS(3089), - [anon_sym_SEMI] = ACTIONS(3091), - [anon_sym___extension__] = ACTIONS(3089), - [anon_sym_typedef] = ACTIONS(3089), - [anon_sym_virtual] = ACTIONS(3089), - [anon_sym_extern] = ACTIONS(3089), - [anon_sym___attribute__] = ACTIONS(3089), - [anon_sym___attribute] = ACTIONS(3089), - [anon_sym_using] = ACTIONS(3089), - [anon_sym_COLON_COLON] = ACTIONS(3091), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3091), - [anon_sym___declspec] = ACTIONS(3089), - [anon_sym___based] = ACTIONS(3089), - [anon_sym_signed] = ACTIONS(3089), - [anon_sym_unsigned] = ACTIONS(3089), - [anon_sym_long] = ACTIONS(3089), - [anon_sym_short] = ACTIONS(3089), - [anon_sym_LBRACK] = ACTIONS(3089), - [anon_sym_static] = ACTIONS(3089), - [anon_sym_register] = ACTIONS(3089), - [anon_sym_inline] = ACTIONS(3089), - [anon_sym___inline] = ACTIONS(3089), - [anon_sym___inline__] = ACTIONS(3089), - [anon_sym___forceinline] = ACTIONS(3089), - [anon_sym_thread_local] = ACTIONS(3089), - [anon_sym___thread] = ACTIONS(3089), - [anon_sym_const] = ACTIONS(3089), - [anon_sym_constexpr] = ACTIONS(3089), - [anon_sym_volatile] = ACTIONS(3089), - [anon_sym_restrict] = ACTIONS(3089), - [anon_sym___restrict__] = ACTIONS(3089), - [anon_sym__Atomic] = ACTIONS(3089), - [anon_sym__Noreturn] = ACTIONS(3089), - [anon_sym_noreturn] = ACTIONS(3089), - [anon_sym__Nonnull] = ACTIONS(3089), - [anon_sym_mutable] = ACTIONS(3089), - [anon_sym_constinit] = ACTIONS(3089), - [anon_sym_consteval] = ACTIONS(3089), - [anon_sym_alignas] = ACTIONS(3089), - [anon_sym__Alignas] = ACTIONS(3089), - [sym_primitive_type] = ACTIONS(3089), - [anon_sym_enum] = ACTIONS(3089), - [anon_sym_class] = ACTIONS(3089), - [anon_sym_struct] = ACTIONS(3089), - [anon_sym_union] = ACTIONS(3089), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3089), - [anon_sym_decltype] = ACTIONS(3089), - [anon_sym_explicit] = ACTIONS(3089), - [anon_sym_typename] = ACTIONS(3089), - [anon_sym_private] = ACTIONS(3089), - [anon_sym_template] = ACTIONS(3089), - [anon_sym_operator] = ACTIONS(3089), - [anon_sym_friend] = ACTIONS(3089), - [anon_sym_public] = ACTIONS(3089), - [anon_sym_protected] = ACTIONS(3089), - [anon_sym_static_assert] = ACTIONS(3089), + [2179] = { + [sym_identifier] = ACTIONS(2679), + [aux_sym_preproc_def_token1] = ACTIONS(2679), + [aux_sym_preproc_if_token1] = ACTIONS(2679), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2679), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2679), + [sym_preproc_directive] = ACTIONS(2679), + [anon_sym_LPAREN2] = ACTIONS(2681), + [anon_sym_TILDE] = ACTIONS(2681), + [anon_sym_STAR] = ACTIONS(2681), + [anon_sym_AMP_AMP] = ACTIONS(2681), + [anon_sym_AMP] = ACTIONS(2679), + [anon_sym_SEMI] = ACTIONS(2681), + [anon_sym___extension__] = ACTIONS(2679), + [anon_sym_typedef] = ACTIONS(2679), + [anon_sym_virtual] = ACTIONS(2679), + [anon_sym_extern] = ACTIONS(2679), + [anon_sym___attribute__] = ACTIONS(2679), + [anon_sym___attribute] = ACTIONS(2679), + [anon_sym_using] = ACTIONS(2679), + [anon_sym_COLON_COLON] = ACTIONS(2681), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2681), + [anon_sym___declspec] = ACTIONS(2679), + [anon_sym___based] = ACTIONS(2679), + [anon_sym_RBRACE] = ACTIONS(2681), + [anon_sym_signed] = ACTIONS(2679), + [anon_sym_unsigned] = ACTIONS(2679), + [anon_sym_long] = ACTIONS(2679), + [anon_sym_short] = ACTIONS(2679), + [anon_sym_LBRACK] = ACTIONS(2679), + [anon_sym_static] = ACTIONS(2679), + [anon_sym_register] = ACTIONS(2679), + [anon_sym_inline] = ACTIONS(2679), + [anon_sym___inline] = ACTIONS(2679), + [anon_sym___inline__] = ACTIONS(2679), + [anon_sym___forceinline] = ACTIONS(2679), + [anon_sym_thread_local] = ACTIONS(2679), + [anon_sym___thread] = ACTIONS(2679), + [anon_sym_const] = ACTIONS(2679), + [anon_sym_constexpr] = ACTIONS(2679), + [anon_sym_volatile] = ACTIONS(2679), + [anon_sym_restrict] = ACTIONS(2679), + [anon_sym___restrict__] = ACTIONS(2679), + [anon_sym__Atomic] = ACTIONS(2679), + [anon_sym__Noreturn] = ACTIONS(2679), + [anon_sym_noreturn] = ACTIONS(2679), + [anon_sym__Nonnull] = ACTIONS(2679), + [anon_sym_mutable] = ACTIONS(2679), + [anon_sym_constinit] = ACTIONS(2679), + [anon_sym_consteval] = ACTIONS(2679), + [anon_sym_alignas] = ACTIONS(2679), + [anon_sym__Alignas] = ACTIONS(2679), + [sym_primitive_type] = ACTIONS(2679), + [anon_sym_enum] = ACTIONS(2679), + [anon_sym_class] = ACTIONS(2679), + [anon_sym_struct] = ACTIONS(2679), + [anon_sym_union] = ACTIONS(2679), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2679), + [anon_sym_decltype] = ACTIONS(2679), + [anon_sym_explicit] = ACTIONS(2679), + [anon_sym_typename] = ACTIONS(2679), + [anon_sym_private] = ACTIONS(2679), + [anon_sym_template] = ACTIONS(2679), + [anon_sym_operator] = ACTIONS(2679), + [anon_sym_friend] = ACTIONS(2679), + [anon_sym_public] = ACTIONS(2679), + [anon_sym_protected] = ACTIONS(2679), + [anon_sym_static_assert] = ACTIONS(2679), }, - [2158] = { - [sym_identifier] = ACTIONS(5545), - [aux_sym_preproc_def_token1] = ACTIONS(5545), - [aux_sym_preproc_if_token1] = ACTIONS(5545), - [aux_sym_preproc_if_token2] = ACTIONS(5545), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5545), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5545), - [sym_preproc_directive] = ACTIONS(5545), - [anon_sym_LPAREN2] = ACTIONS(5547), - [anon_sym_TILDE] = ACTIONS(5547), - [anon_sym_STAR] = ACTIONS(5547), - [anon_sym_AMP_AMP] = ACTIONS(5547), - [anon_sym_AMP] = ACTIONS(5545), - [anon_sym_SEMI] = ACTIONS(5547), - [anon_sym___extension__] = ACTIONS(5545), - [anon_sym_typedef] = ACTIONS(5545), - [anon_sym_virtual] = ACTIONS(5545), - [anon_sym_extern] = ACTIONS(5545), - [anon_sym___attribute__] = ACTIONS(5545), - [anon_sym___attribute] = ACTIONS(5545), - [anon_sym_using] = ACTIONS(5545), - [anon_sym_COLON_COLON] = ACTIONS(5547), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5547), - [anon_sym___declspec] = ACTIONS(5545), - [anon_sym___based] = ACTIONS(5545), - [anon_sym_signed] = ACTIONS(5545), - [anon_sym_unsigned] = ACTIONS(5545), - [anon_sym_long] = ACTIONS(5545), - [anon_sym_short] = ACTIONS(5545), - [anon_sym_LBRACK] = ACTIONS(5545), - [anon_sym_static] = ACTIONS(5545), - [anon_sym_register] = ACTIONS(5545), - [anon_sym_inline] = ACTIONS(5545), - [anon_sym___inline] = ACTIONS(5545), - [anon_sym___inline__] = ACTIONS(5545), - [anon_sym___forceinline] = ACTIONS(5545), - [anon_sym_thread_local] = ACTIONS(5545), - [anon_sym___thread] = ACTIONS(5545), - [anon_sym_const] = ACTIONS(5545), - [anon_sym_constexpr] = ACTIONS(5545), - [anon_sym_volatile] = ACTIONS(5545), - [anon_sym_restrict] = ACTIONS(5545), - [anon_sym___restrict__] = ACTIONS(5545), - [anon_sym__Atomic] = ACTIONS(5545), - [anon_sym__Noreturn] = ACTIONS(5545), - [anon_sym_noreturn] = ACTIONS(5545), - [anon_sym__Nonnull] = ACTIONS(5545), - [anon_sym_mutable] = ACTIONS(5545), - [anon_sym_constinit] = ACTIONS(5545), - [anon_sym_consteval] = ACTIONS(5545), - [anon_sym_alignas] = ACTIONS(5545), - [anon_sym__Alignas] = ACTIONS(5545), - [sym_primitive_type] = ACTIONS(5545), - [anon_sym_enum] = ACTIONS(5545), - [anon_sym_class] = ACTIONS(5545), - [anon_sym_struct] = ACTIONS(5545), - [anon_sym_union] = ACTIONS(5545), + [2180] = { + [sym_identifier] = ACTIONS(5589), + [aux_sym_preproc_def_token1] = ACTIONS(5589), + [aux_sym_preproc_if_token1] = ACTIONS(5589), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5589), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5589), + [sym_preproc_directive] = ACTIONS(5589), + [anon_sym_LPAREN2] = ACTIONS(5591), + [anon_sym_TILDE] = ACTIONS(5591), + [anon_sym_STAR] = ACTIONS(5591), + [anon_sym_AMP_AMP] = ACTIONS(5591), + [anon_sym_AMP] = ACTIONS(5589), + [anon_sym_SEMI] = ACTIONS(5591), + [anon_sym___extension__] = ACTIONS(5589), + [anon_sym_typedef] = ACTIONS(5589), + [anon_sym_virtual] = ACTIONS(5589), + [anon_sym_extern] = ACTIONS(5589), + [anon_sym___attribute__] = ACTIONS(5589), + [anon_sym___attribute] = ACTIONS(5589), + [anon_sym_using] = ACTIONS(5589), + [anon_sym_COLON_COLON] = ACTIONS(5591), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5591), + [anon_sym___declspec] = ACTIONS(5589), + [anon_sym___based] = ACTIONS(5589), + [anon_sym_RBRACE] = ACTIONS(5591), + [anon_sym_signed] = ACTIONS(5589), + [anon_sym_unsigned] = ACTIONS(5589), + [anon_sym_long] = ACTIONS(5589), + [anon_sym_short] = ACTIONS(5589), + [anon_sym_LBRACK] = ACTIONS(5589), + [anon_sym_static] = ACTIONS(5589), + [anon_sym_register] = ACTIONS(5589), + [anon_sym_inline] = ACTIONS(5589), + [anon_sym___inline] = ACTIONS(5589), + [anon_sym___inline__] = ACTIONS(5589), + [anon_sym___forceinline] = ACTIONS(5589), + [anon_sym_thread_local] = ACTIONS(5589), + [anon_sym___thread] = ACTIONS(5589), + [anon_sym_const] = ACTIONS(5589), + [anon_sym_constexpr] = ACTIONS(5589), + [anon_sym_volatile] = ACTIONS(5589), + [anon_sym_restrict] = ACTIONS(5589), + [anon_sym___restrict__] = ACTIONS(5589), + [anon_sym__Atomic] = ACTIONS(5589), + [anon_sym__Noreturn] = ACTIONS(5589), + [anon_sym_noreturn] = ACTIONS(5589), + [anon_sym__Nonnull] = ACTIONS(5589), + [anon_sym_mutable] = ACTIONS(5589), + [anon_sym_constinit] = ACTIONS(5589), + [anon_sym_consteval] = ACTIONS(5589), + [anon_sym_alignas] = ACTIONS(5589), + [anon_sym__Alignas] = ACTIONS(5589), + [sym_primitive_type] = ACTIONS(5589), + [anon_sym_enum] = ACTIONS(5589), + [anon_sym_class] = ACTIONS(5589), + [anon_sym_struct] = ACTIONS(5589), + [anon_sym_union] = ACTIONS(5589), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5589), + [anon_sym_decltype] = ACTIONS(5589), + [anon_sym_explicit] = ACTIONS(5589), + [anon_sym_typename] = ACTIONS(5589), + [anon_sym_private] = ACTIONS(5589), + [anon_sym_template] = ACTIONS(5589), + [anon_sym_operator] = ACTIONS(5589), + [anon_sym_friend] = ACTIONS(5589), + [anon_sym_public] = ACTIONS(5589), + [anon_sym_protected] = ACTIONS(5589), + [anon_sym_static_assert] = ACTIONS(5589), + }, + [2181] = { + [sym_identifier] = ACTIONS(5617), + [aux_sym_preproc_def_token1] = ACTIONS(5617), + [aux_sym_preproc_if_token1] = ACTIONS(5617), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5617), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5617), + [sym_preproc_directive] = ACTIONS(5617), + [anon_sym_LPAREN2] = ACTIONS(5619), + [anon_sym_TILDE] = ACTIONS(5619), + [anon_sym_STAR] = ACTIONS(5619), + [anon_sym_AMP_AMP] = ACTIONS(5619), + [anon_sym_AMP] = ACTIONS(5617), + [anon_sym_SEMI] = ACTIONS(5619), + [anon_sym___extension__] = ACTIONS(5617), + [anon_sym_typedef] = ACTIONS(5617), + [anon_sym_virtual] = ACTIONS(5617), + [anon_sym_extern] = ACTIONS(5617), + [anon_sym___attribute__] = ACTIONS(5617), + [anon_sym___attribute] = ACTIONS(5617), + [anon_sym_using] = ACTIONS(5617), + [anon_sym_COLON_COLON] = ACTIONS(5619), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5619), + [anon_sym___declspec] = ACTIONS(5617), + [anon_sym___based] = ACTIONS(5617), + [anon_sym_RBRACE] = ACTIONS(5619), + [anon_sym_signed] = ACTIONS(5617), + [anon_sym_unsigned] = ACTIONS(5617), + [anon_sym_long] = ACTIONS(5617), + [anon_sym_short] = ACTIONS(5617), + [anon_sym_LBRACK] = ACTIONS(5617), + [anon_sym_static] = ACTIONS(5617), + [anon_sym_register] = ACTIONS(5617), + [anon_sym_inline] = ACTIONS(5617), + [anon_sym___inline] = ACTIONS(5617), + [anon_sym___inline__] = ACTIONS(5617), + [anon_sym___forceinline] = ACTIONS(5617), + [anon_sym_thread_local] = ACTIONS(5617), + [anon_sym___thread] = ACTIONS(5617), + [anon_sym_const] = ACTIONS(5617), + [anon_sym_constexpr] = ACTIONS(5617), + [anon_sym_volatile] = ACTIONS(5617), + [anon_sym_restrict] = ACTIONS(5617), + [anon_sym___restrict__] = ACTIONS(5617), + [anon_sym__Atomic] = ACTIONS(5617), + [anon_sym__Noreturn] = ACTIONS(5617), + [anon_sym_noreturn] = ACTIONS(5617), + [anon_sym__Nonnull] = ACTIONS(5617), + [anon_sym_mutable] = ACTIONS(5617), + [anon_sym_constinit] = ACTIONS(5617), + [anon_sym_consteval] = ACTIONS(5617), + [anon_sym_alignas] = ACTIONS(5617), + [anon_sym__Alignas] = ACTIONS(5617), + [sym_primitive_type] = ACTIONS(5617), + [anon_sym_enum] = ACTIONS(5617), + [anon_sym_class] = ACTIONS(5617), + [anon_sym_struct] = ACTIONS(5617), + [anon_sym_union] = ACTIONS(5617), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5545), - [anon_sym_decltype] = ACTIONS(5545), - [anon_sym_explicit] = ACTIONS(5545), - [anon_sym_typename] = ACTIONS(5545), - [anon_sym_private] = ACTIONS(5545), - [anon_sym_template] = ACTIONS(5545), - [anon_sym_operator] = ACTIONS(5545), - [anon_sym_friend] = ACTIONS(5545), - [anon_sym_public] = ACTIONS(5545), - [anon_sym_protected] = ACTIONS(5545), - [anon_sym_static_assert] = ACTIONS(5545), + [sym_auto] = ACTIONS(5617), + [anon_sym_decltype] = ACTIONS(5617), + [anon_sym_explicit] = ACTIONS(5617), + [anon_sym_typename] = ACTIONS(5617), + [anon_sym_private] = ACTIONS(5617), + [anon_sym_template] = ACTIONS(5617), + [anon_sym_operator] = ACTIONS(5617), + [anon_sym_friend] = ACTIONS(5617), + [anon_sym_public] = ACTIONS(5617), + [anon_sym_protected] = ACTIONS(5617), + [anon_sym_static_assert] = ACTIONS(5617), }, - [2159] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1669), - [sym_identifier] = ACTIONS(5070), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5156), - [anon_sym_COMMA] = ACTIONS(5156), - [anon_sym_RPAREN] = ACTIONS(5156), - [anon_sym_LPAREN2] = ACTIONS(5156), - [anon_sym_DASH] = ACTIONS(5159), - [anon_sym_PLUS] = ACTIONS(5159), - [anon_sym_STAR] = ACTIONS(5156), - [anon_sym_SLASH] = ACTIONS(5159), - [anon_sym_PERCENT] = ACTIONS(5156), - [anon_sym_PIPE_PIPE] = ACTIONS(5156), - [anon_sym_AMP_AMP] = ACTIONS(5156), - [anon_sym_PIPE] = ACTIONS(5159), - [anon_sym_CARET] = ACTIONS(5156), - [anon_sym_AMP] = ACTIONS(5159), - [anon_sym_EQ_EQ] = ACTIONS(5156), - [anon_sym_BANG_EQ] = ACTIONS(5156), - [anon_sym_GT] = ACTIONS(5159), - [anon_sym_GT_EQ] = ACTIONS(5156), - [anon_sym_LT_EQ] = ACTIONS(5159), - [anon_sym_LT] = ACTIONS(5159), - [anon_sym_LT_LT] = ACTIONS(5156), - [anon_sym_GT_GT] = ACTIONS(5156), - [anon_sym_SEMI] = ACTIONS(5156), - [anon_sym___extension__] = ACTIONS(5070), - [anon_sym___attribute__] = ACTIONS(5159), - [anon_sym___attribute] = ACTIONS(5159), - [anon_sym_COLON] = ACTIONS(5156), - [anon_sym_LBRACE] = ACTIONS(5156), - [anon_sym_RBRACE] = ACTIONS(5156), - [anon_sym_signed] = ACTIONS(5370), - [anon_sym_unsigned] = ACTIONS(5370), - [anon_sym_long] = ACTIONS(5370), - [anon_sym_short] = ACTIONS(5370), - [anon_sym_LBRACK] = ACTIONS(5156), - [anon_sym_RBRACK] = ACTIONS(5156), - [anon_sym_const] = ACTIONS(5070), - [anon_sym_constexpr] = ACTIONS(5070), - [anon_sym_volatile] = ACTIONS(5070), - [anon_sym_restrict] = ACTIONS(5070), - [anon_sym___restrict__] = ACTIONS(5070), - [anon_sym__Atomic] = ACTIONS(5070), - [anon_sym__Noreturn] = ACTIONS(5070), - [anon_sym_noreturn] = ACTIONS(5070), - [anon_sym__Nonnull] = ACTIONS(5070), - [anon_sym_mutable] = ACTIONS(5070), - [anon_sym_constinit] = ACTIONS(5070), - [anon_sym_consteval] = ACTIONS(5070), - [anon_sym_alignas] = ACTIONS(5070), - [anon_sym__Alignas] = ACTIONS(5070), - [sym_primitive_type] = ACTIONS(5070), - [anon_sym_QMARK] = ACTIONS(5156), - [anon_sym_LT_EQ_GT] = ACTIONS(5156), - [anon_sym_or] = ACTIONS(5159), - [anon_sym_and] = ACTIONS(5159), - [anon_sym_bitor] = ACTIONS(5159), - [anon_sym_xor] = ACTIONS(5159), - [anon_sym_bitand] = ACTIONS(5159), - [anon_sym_not_eq] = ACTIONS(5159), - [anon_sym_DASH_DASH] = ACTIONS(5156), - [anon_sym_PLUS_PLUS] = ACTIONS(5156), - [anon_sym_DOT] = ACTIONS(5159), - [anon_sym_DOT_STAR] = ACTIONS(5156), - [anon_sym_DASH_GT] = ACTIONS(5156), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5159), - [anon_sym_decltype] = ACTIONS(5159), + [2182] = { + [sym_identifier] = ACTIONS(5529), + [aux_sym_preproc_def_token1] = ACTIONS(5529), + [aux_sym_preproc_if_token1] = ACTIONS(5529), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5529), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5529), + [sym_preproc_directive] = ACTIONS(5529), + [anon_sym_LPAREN2] = ACTIONS(5531), + [anon_sym_TILDE] = ACTIONS(5531), + [anon_sym_STAR] = ACTIONS(5531), + [anon_sym_AMP_AMP] = ACTIONS(5531), + [anon_sym_AMP] = ACTIONS(5529), + [anon_sym_SEMI] = ACTIONS(5531), + [anon_sym___extension__] = ACTIONS(5529), + [anon_sym_typedef] = ACTIONS(5529), + [anon_sym_virtual] = ACTIONS(5529), + [anon_sym_extern] = ACTIONS(5529), + [anon_sym___attribute__] = ACTIONS(5529), + [anon_sym___attribute] = ACTIONS(5529), + [anon_sym_using] = ACTIONS(5529), + [anon_sym_COLON_COLON] = ACTIONS(5531), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5531), + [anon_sym___declspec] = ACTIONS(5529), + [anon_sym___based] = ACTIONS(5529), + [anon_sym_RBRACE] = ACTIONS(5531), + [anon_sym_signed] = ACTIONS(5529), + [anon_sym_unsigned] = ACTIONS(5529), + [anon_sym_long] = ACTIONS(5529), + [anon_sym_short] = ACTIONS(5529), + [anon_sym_LBRACK] = ACTIONS(5529), + [anon_sym_static] = ACTIONS(5529), + [anon_sym_register] = ACTIONS(5529), + [anon_sym_inline] = ACTIONS(5529), + [anon_sym___inline] = ACTIONS(5529), + [anon_sym___inline__] = ACTIONS(5529), + [anon_sym___forceinline] = ACTIONS(5529), + [anon_sym_thread_local] = ACTIONS(5529), + [anon_sym___thread] = ACTIONS(5529), + [anon_sym_const] = ACTIONS(5529), + [anon_sym_constexpr] = ACTIONS(5529), + [anon_sym_volatile] = ACTIONS(5529), + [anon_sym_restrict] = ACTIONS(5529), + [anon_sym___restrict__] = ACTIONS(5529), + [anon_sym__Atomic] = ACTIONS(5529), + [anon_sym__Noreturn] = ACTIONS(5529), + [anon_sym_noreturn] = ACTIONS(5529), + [anon_sym__Nonnull] = ACTIONS(5529), + [anon_sym_mutable] = ACTIONS(5529), + [anon_sym_constinit] = ACTIONS(5529), + [anon_sym_consteval] = ACTIONS(5529), + [anon_sym_alignas] = ACTIONS(5529), + [anon_sym__Alignas] = ACTIONS(5529), + [sym_primitive_type] = ACTIONS(5529), + [anon_sym_enum] = ACTIONS(5529), + [anon_sym_class] = ACTIONS(5529), + [anon_sym_struct] = ACTIONS(5529), + [anon_sym_union] = ACTIONS(5529), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5529), + [anon_sym_decltype] = ACTIONS(5529), + [anon_sym_explicit] = ACTIONS(5529), + [anon_sym_typename] = ACTIONS(5529), + [anon_sym_private] = ACTIONS(5529), + [anon_sym_template] = ACTIONS(5529), + [anon_sym_operator] = ACTIONS(5529), + [anon_sym_friend] = ACTIONS(5529), + [anon_sym_public] = ACTIONS(5529), + [anon_sym_protected] = ACTIONS(5529), + [anon_sym_static_assert] = ACTIONS(5529), }, - [2160] = { - [sym_identifier] = ACTIONS(2919), - [aux_sym_preproc_def_token1] = ACTIONS(2919), - [aux_sym_preproc_if_token1] = ACTIONS(2919), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2919), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2919), - [sym_preproc_directive] = ACTIONS(2919), - [anon_sym_LPAREN2] = ACTIONS(2921), - [anon_sym_TILDE] = ACTIONS(2921), - [anon_sym_STAR] = ACTIONS(2921), - [anon_sym_AMP_AMP] = ACTIONS(2921), - [anon_sym_AMP] = ACTIONS(2919), - [anon_sym_SEMI] = ACTIONS(2921), - [anon_sym___extension__] = ACTIONS(2919), - [anon_sym_typedef] = ACTIONS(2919), - [anon_sym_virtual] = ACTIONS(2919), - [anon_sym_extern] = ACTIONS(2919), - [anon_sym___attribute__] = ACTIONS(2919), - [anon_sym___attribute] = ACTIONS(2919), - [anon_sym_using] = ACTIONS(2919), - [anon_sym_COLON_COLON] = ACTIONS(2921), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2921), - [anon_sym___declspec] = ACTIONS(2919), - [anon_sym___based] = ACTIONS(2919), - [anon_sym_RBRACE] = ACTIONS(2921), - [anon_sym_signed] = ACTIONS(2919), - [anon_sym_unsigned] = ACTIONS(2919), - [anon_sym_long] = ACTIONS(2919), - [anon_sym_short] = ACTIONS(2919), - [anon_sym_LBRACK] = ACTIONS(2919), - [anon_sym_static] = ACTIONS(2919), - [anon_sym_register] = ACTIONS(2919), - [anon_sym_inline] = ACTIONS(2919), - [anon_sym___inline] = ACTIONS(2919), - [anon_sym___inline__] = ACTIONS(2919), - [anon_sym___forceinline] = ACTIONS(2919), - [anon_sym_thread_local] = ACTIONS(2919), - [anon_sym___thread] = ACTIONS(2919), - [anon_sym_const] = ACTIONS(2919), - [anon_sym_constexpr] = ACTIONS(2919), - [anon_sym_volatile] = ACTIONS(2919), - [anon_sym_restrict] = ACTIONS(2919), - [anon_sym___restrict__] = ACTIONS(2919), - [anon_sym__Atomic] = ACTIONS(2919), - [anon_sym__Noreturn] = ACTIONS(2919), - [anon_sym_noreturn] = ACTIONS(2919), - [anon_sym__Nonnull] = ACTIONS(2919), - [anon_sym_mutable] = ACTIONS(2919), - [anon_sym_constinit] = ACTIONS(2919), - [anon_sym_consteval] = ACTIONS(2919), - [anon_sym_alignas] = ACTIONS(2919), - [anon_sym__Alignas] = ACTIONS(2919), - [sym_primitive_type] = ACTIONS(2919), - [anon_sym_enum] = ACTIONS(2919), - [anon_sym_class] = ACTIONS(2919), - [anon_sym_struct] = ACTIONS(2919), - [anon_sym_union] = ACTIONS(2919), + [2183] = { + [sym_identifier] = ACTIONS(2915), + [aux_sym_preproc_def_token1] = ACTIONS(2915), + [aux_sym_preproc_if_token1] = ACTIONS(2915), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2915), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2915), + [sym_preproc_directive] = ACTIONS(2915), + [anon_sym_LPAREN2] = ACTIONS(2917), + [anon_sym_TILDE] = ACTIONS(2917), + [anon_sym_STAR] = ACTIONS(2917), + [anon_sym_AMP_AMP] = ACTIONS(2917), + [anon_sym_AMP] = ACTIONS(2915), + [anon_sym_SEMI] = ACTIONS(2917), + [anon_sym___extension__] = ACTIONS(2915), + [anon_sym_typedef] = ACTIONS(2915), + [anon_sym_virtual] = ACTIONS(2915), + [anon_sym_extern] = ACTIONS(2915), + [anon_sym___attribute__] = ACTIONS(2915), + [anon_sym___attribute] = ACTIONS(2915), + [anon_sym_using] = ACTIONS(2915), + [anon_sym_COLON_COLON] = ACTIONS(2917), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2917), + [anon_sym___declspec] = ACTIONS(2915), + [anon_sym___based] = ACTIONS(2915), + [anon_sym_RBRACE] = ACTIONS(2917), + [anon_sym_signed] = ACTIONS(2915), + [anon_sym_unsigned] = ACTIONS(2915), + [anon_sym_long] = ACTIONS(2915), + [anon_sym_short] = ACTIONS(2915), + [anon_sym_LBRACK] = ACTIONS(2915), + [anon_sym_static] = ACTIONS(2915), + [anon_sym_register] = ACTIONS(2915), + [anon_sym_inline] = ACTIONS(2915), + [anon_sym___inline] = ACTIONS(2915), + [anon_sym___inline__] = ACTIONS(2915), + [anon_sym___forceinline] = ACTIONS(2915), + [anon_sym_thread_local] = ACTIONS(2915), + [anon_sym___thread] = ACTIONS(2915), + [anon_sym_const] = ACTIONS(2915), + [anon_sym_constexpr] = ACTIONS(2915), + [anon_sym_volatile] = ACTIONS(2915), + [anon_sym_restrict] = ACTIONS(2915), + [anon_sym___restrict__] = ACTIONS(2915), + [anon_sym__Atomic] = ACTIONS(2915), + [anon_sym__Noreturn] = ACTIONS(2915), + [anon_sym_noreturn] = ACTIONS(2915), + [anon_sym__Nonnull] = ACTIONS(2915), + [anon_sym_mutable] = ACTIONS(2915), + [anon_sym_constinit] = ACTIONS(2915), + [anon_sym_consteval] = ACTIONS(2915), + [anon_sym_alignas] = ACTIONS(2915), + [anon_sym__Alignas] = ACTIONS(2915), + [sym_primitive_type] = ACTIONS(2915), + [anon_sym_enum] = ACTIONS(2915), + [anon_sym_class] = ACTIONS(2915), + [anon_sym_struct] = ACTIONS(2915), + [anon_sym_union] = ACTIONS(2915), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2919), - [anon_sym_decltype] = ACTIONS(2919), - [anon_sym_explicit] = ACTIONS(2919), - [anon_sym_typename] = ACTIONS(2919), - [anon_sym_private] = ACTIONS(2919), - [anon_sym_template] = ACTIONS(2919), - [anon_sym_operator] = ACTIONS(2919), - [anon_sym_friend] = ACTIONS(2919), - [anon_sym_public] = ACTIONS(2919), - [anon_sym_protected] = ACTIONS(2919), - [anon_sym_static_assert] = ACTIONS(2919), + [sym_auto] = ACTIONS(2915), + [anon_sym_decltype] = ACTIONS(2915), + [anon_sym_explicit] = ACTIONS(2915), + [anon_sym_typename] = ACTIONS(2915), + [anon_sym_private] = ACTIONS(2915), + [anon_sym_template] = ACTIONS(2915), + [anon_sym_operator] = ACTIONS(2915), + [anon_sym_friend] = ACTIONS(2915), + [anon_sym_public] = ACTIONS(2915), + [anon_sym_protected] = ACTIONS(2915), + [anon_sym_static_assert] = ACTIONS(2915), }, - [2161] = { - [sym_identifier] = ACTIONS(2923), - [aux_sym_preproc_def_token1] = ACTIONS(2923), - [aux_sym_preproc_if_token1] = ACTIONS(2923), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2923), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2923), - [sym_preproc_directive] = ACTIONS(2923), - [anon_sym_LPAREN2] = ACTIONS(2925), - [anon_sym_TILDE] = ACTIONS(2925), - [anon_sym_STAR] = ACTIONS(2925), - [anon_sym_AMP_AMP] = ACTIONS(2925), - [anon_sym_AMP] = ACTIONS(2923), - [anon_sym_SEMI] = ACTIONS(2925), - [anon_sym___extension__] = ACTIONS(2923), - [anon_sym_typedef] = ACTIONS(2923), - [anon_sym_virtual] = ACTIONS(2923), - [anon_sym_extern] = ACTIONS(2923), - [anon_sym___attribute__] = ACTIONS(2923), - [anon_sym___attribute] = ACTIONS(2923), - [anon_sym_using] = ACTIONS(2923), - [anon_sym_COLON_COLON] = ACTIONS(2925), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2925), - [anon_sym___declspec] = ACTIONS(2923), - [anon_sym___based] = ACTIONS(2923), - [anon_sym_RBRACE] = ACTIONS(2925), - [anon_sym_signed] = ACTIONS(2923), - [anon_sym_unsigned] = ACTIONS(2923), - [anon_sym_long] = ACTIONS(2923), - [anon_sym_short] = ACTIONS(2923), - [anon_sym_LBRACK] = ACTIONS(2923), - [anon_sym_static] = ACTIONS(2923), - [anon_sym_register] = ACTIONS(2923), - [anon_sym_inline] = ACTIONS(2923), - [anon_sym___inline] = ACTIONS(2923), - [anon_sym___inline__] = ACTIONS(2923), - [anon_sym___forceinline] = ACTIONS(2923), - [anon_sym_thread_local] = ACTIONS(2923), - [anon_sym___thread] = ACTIONS(2923), - [anon_sym_const] = ACTIONS(2923), - [anon_sym_constexpr] = ACTIONS(2923), - [anon_sym_volatile] = ACTIONS(2923), - [anon_sym_restrict] = ACTIONS(2923), - [anon_sym___restrict__] = ACTIONS(2923), - [anon_sym__Atomic] = ACTIONS(2923), - [anon_sym__Noreturn] = ACTIONS(2923), - [anon_sym_noreturn] = ACTIONS(2923), - [anon_sym__Nonnull] = ACTIONS(2923), - [anon_sym_mutable] = ACTIONS(2923), - [anon_sym_constinit] = ACTIONS(2923), - [anon_sym_consteval] = ACTIONS(2923), - [anon_sym_alignas] = ACTIONS(2923), - [anon_sym__Alignas] = ACTIONS(2923), - [sym_primitive_type] = ACTIONS(2923), - [anon_sym_enum] = ACTIONS(2923), - [anon_sym_class] = ACTIONS(2923), - [anon_sym_struct] = ACTIONS(2923), - [anon_sym_union] = ACTIONS(2923), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2923), - [anon_sym_decltype] = ACTIONS(2923), - [anon_sym_explicit] = ACTIONS(2923), - [anon_sym_typename] = ACTIONS(2923), - [anon_sym_private] = ACTIONS(2923), - [anon_sym_template] = ACTIONS(2923), - [anon_sym_operator] = ACTIONS(2923), - [anon_sym_friend] = ACTIONS(2923), - [anon_sym_public] = ACTIONS(2923), - [anon_sym_protected] = ACTIONS(2923), - [anon_sym_static_assert] = ACTIONS(2923), + [2184] = { + [sym_identifier] = ACTIONS(5499), + [aux_sym_preproc_def_token1] = ACTIONS(5499), + [aux_sym_preproc_if_token1] = ACTIONS(5499), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5499), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5499), + [sym_preproc_directive] = ACTIONS(5499), + [anon_sym_LPAREN2] = ACTIONS(5501), + [anon_sym_TILDE] = ACTIONS(5501), + [anon_sym_STAR] = ACTIONS(5501), + [anon_sym_AMP_AMP] = ACTIONS(5501), + [anon_sym_AMP] = ACTIONS(5499), + [anon_sym_SEMI] = ACTIONS(5501), + [anon_sym___extension__] = ACTIONS(5499), + [anon_sym_typedef] = ACTIONS(5499), + [anon_sym_virtual] = ACTIONS(5499), + [anon_sym_extern] = ACTIONS(5499), + [anon_sym___attribute__] = ACTIONS(5499), + [anon_sym___attribute] = ACTIONS(5499), + [anon_sym_using] = ACTIONS(5499), + [anon_sym_COLON_COLON] = ACTIONS(5501), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5501), + [anon_sym___declspec] = ACTIONS(5499), + [anon_sym___based] = ACTIONS(5499), + [anon_sym_RBRACE] = ACTIONS(5501), + [anon_sym_signed] = ACTIONS(5499), + [anon_sym_unsigned] = ACTIONS(5499), + [anon_sym_long] = ACTIONS(5499), + [anon_sym_short] = ACTIONS(5499), + [anon_sym_LBRACK] = ACTIONS(5499), + [anon_sym_static] = ACTIONS(5499), + [anon_sym_register] = ACTIONS(5499), + [anon_sym_inline] = ACTIONS(5499), + [anon_sym___inline] = ACTIONS(5499), + [anon_sym___inline__] = ACTIONS(5499), + [anon_sym___forceinline] = ACTIONS(5499), + [anon_sym_thread_local] = ACTIONS(5499), + [anon_sym___thread] = ACTIONS(5499), + [anon_sym_const] = ACTIONS(5499), + [anon_sym_constexpr] = ACTIONS(5499), + [anon_sym_volatile] = ACTIONS(5499), + [anon_sym_restrict] = ACTIONS(5499), + [anon_sym___restrict__] = ACTIONS(5499), + [anon_sym__Atomic] = ACTIONS(5499), + [anon_sym__Noreturn] = ACTIONS(5499), + [anon_sym_noreturn] = ACTIONS(5499), + [anon_sym__Nonnull] = ACTIONS(5499), + [anon_sym_mutable] = ACTIONS(5499), + [anon_sym_constinit] = ACTIONS(5499), + [anon_sym_consteval] = ACTIONS(5499), + [anon_sym_alignas] = ACTIONS(5499), + [anon_sym__Alignas] = ACTIONS(5499), + [sym_primitive_type] = ACTIONS(5499), + [anon_sym_enum] = ACTIONS(5499), + [anon_sym_class] = ACTIONS(5499), + [anon_sym_struct] = ACTIONS(5499), + [anon_sym_union] = ACTIONS(5499), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5499), + [anon_sym_decltype] = ACTIONS(5499), + [anon_sym_explicit] = ACTIONS(5499), + [anon_sym_typename] = ACTIONS(5499), + [anon_sym_private] = ACTIONS(5499), + [anon_sym_template] = ACTIONS(5499), + [anon_sym_operator] = ACTIONS(5499), + [anon_sym_friend] = ACTIONS(5499), + [anon_sym_public] = ACTIONS(5499), + [anon_sym_protected] = ACTIONS(5499), + [anon_sym_static_assert] = ACTIONS(5499), }, - [2162] = { - [sym_identifier] = ACTIONS(2927), - [aux_sym_preproc_def_token1] = ACTIONS(2927), - [aux_sym_preproc_if_token1] = ACTIONS(2927), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2927), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2927), - [sym_preproc_directive] = ACTIONS(2927), - [anon_sym_LPAREN2] = ACTIONS(2929), - [anon_sym_TILDE] = ACTIONS(2929), - [anon_sym_STAR] = ACTIONS(2929), - [anon_sym_AMP_AMP] = ACTIONS(2929), - [anon_sym_AMP] = ACTIONS(2927), - [anon_sym_SEMI] = ACTIONS(2929), - [anon_sym___extension__] = ACTIONS(2927), - [anon_sym_typedef] = ACTIONS(2927), - [anon_sym_virtual] = ACTIONS(2927), - [anon_sym_extern] = ACTIONS(2927), - [anon_sym___attribute__] = ACTIONS(2927), - [anon_sym___attribute] = ACTIONS(2927), - [anon_sym_using] = ACTIONS(2927), - [anon_sym_COLON_COLON] = ACTIONS(2929), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2929), - [anon_sym___declspec] = ACTIONS(2927), - [anon_sym___based] = ACTIONS(2927), - [anon_sym_RBRACE] = ACTIONS(2929), - [anon_sym_signed] = ACTIONS(2927), - [anon_sym_unsigned] = ACTIONS(2927), - [anon_sym_long] = ACTIONS(2927), - [anon_sym_short] = ACTIONS(2927), - [anon_sym_LBRACK] = ACTIONS(2927), - [anon_sym_static] = ACTIONS(2927), - [anon_sym_register] = ACTIONS(2927), - [anon_sym_inline] = ACTIONS(2927), - [anon_sym___inline] = ACTIONS(2927), - [anon_sym___inline__] = ACTIONS(2927), - [anon_sym___forceinline] = ACTIONS(2927), - [anon_sym_thread_local] = ACTIONS(2927), - [anon_sym___thread] = ACTIONS(2927), - [anon_sym_const] = ACTIONS(2927), - [anon_sym_constexpr] = ACTIONS(2927), - [anon_sym_volatile] = ACTIONS(2927), - [anon_sym_restrict] = ACTIONS(2927), - [anon_sym___restrict__] = ACTIONS(2927), - [anon_sym__Atomic] = ACTIONS(2927), - [anon_sym__Noreturn] = ACTIONS(2927), - [anon_sym_noreturn] = ACTIONS(2927), - [anon_sym__Nonnull] = ACTIONS(2927), - [anon_sym_mutable] = ACTIONS(2927), - [anon_sym_constinit] = ACTIONS(2927), - [anon_sym_consteval] = ACTIONS(2927), - [anon_sym_alignas] = ACTIONS(2927), - [anon_sym__Alignas] = ACTIONS(2927), - [sym_primitive_type] = ACTIONS(2927), - [anon_sym_enum] = ACTIONS(2927), - [anon_sym_class] = ACTIONS(2927), - [anon_sym_struct] = ACTIONS(2927), - [anon_sym_union] = ACTIONS(2927), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2927), - [anon_sym_decltype] = ACTIONS(2927), - [anon_sym_explicit] = ACTIONS(2927), - [anon_sym_typename] = ACTIONS(2927), - [anon_sym_private] = ACTIONS(2927), - [anon_sym_template] = ACTIONS(2927), - [anon_sym_operator] = ACTIONS(2927), - [anon_sym_friend] = ACTIONS(2927), - [anon_sym_public] = ACTIONS(2927), - [anon_sym_protected] = ACTIONS(2927), - [anon_sym_static_assert] = ACTIONS(2927), + [2185] = { + [sym_identifier] = ACTIONS(5503), + [aux_sym_preproc_def_token1] = ACTIONS(5503), + [aux_sym_preproc_if_token1] = ACTIONS(5503), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5503), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5503), + [sym_preproc_directive] = ACTIONS(5503), + [anon_sym_LPAREN2] = ACTIONS(5505), + [anon_sym_TILDE] = ACTIONS(5505), + [anon_sym_STAR] = ACTIONS(5505), + [anon_sym_AMP_AMP] = ACTIONS(5505), + [anon_sym_AMP] = ACTIONS(5503), + [anon_sym_SEMI] = ACTIONS(5505), + [anon_sym___extension__] = ACTIONS(5503), + [anon_sym_typedef] = ACTIONS(5503), + [anon_sym_virtual] = ACTIONS(5503), + [anon_sym_extern] = ACTIONS(5503), + [anon_sym___attribute__] = ACTIONS(5503), + [anon_sym___attribute] = ACTIONS(5503), + [anon_sym_using] = ACTIONS(5503), + [anon_sym_COLON_COLON] = ACTIONS(5505), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5505), + [anon_sym___declspec] = ACTIONS(5503), + [anon_sym___based] = ACTIONS(5503), + [anon_sym_RBRACE] = ACTIONS(5505), + [anon_sym_signed] = ACTIONS(5503), + [anon_sym_unsigned] = ACTIONS(5503), + [anon_sym_long] = ACTIONS(5503), + [anon_sym_short] = ACTIONS(5503), + [anon_sym_LBRACK] = ACTIONS(5503), + [anon_sym_static] = ACTIONS(5503), + [anon_sym_register] = ACTIONS(5503), + [anon_sym_inline] = ACTIONS(5503), + [anon_sym___inline] = ACTIONS(5503), + [anon_sym___inline__] = ACTIONS(5503), + [anon_sym___forceinline] = ACTIONS(5503), + [anon_sym_thread_local] = ACTIONS(5503), + [anon_sym___thread] = ACTIONS(5503), + [anon_sym_const] = ACTIONS(5503), + [anon_sym_constexpr] = ACTIONS(5503), + [anon_sym_volatile] = ACTIONS(5503), + [anon_sym_restrict] = ACTIONS(5503), + [anon_sym___restrict__] = ACTIONS(5503), + [anon_sym__Atomic] = ACTIONS(5503), + [anon_sym__Noreturn] = ACTIONS(5503), + [anon_sym_noreturn] = ACTIONS(5503), + [anon_sym__Nonnull] = ACTIONS(5503), + [anon_sym_mutable] = ACTIONS(5503), + [anon_sym_constinit] = ACTIONS(5503), + [anon_sym_consteval] = ACTIONS(5503), + [anon_sym_alignas] = ACTIONS(5503), + [anon_sym__Alignas] = ACTIONS(5503), + [sym_primitive_type] = ACTIONS(5503), + [anon_sym_enum] = ACTIONS(5503), + [anon_sym_class] = ACTIONS(5503), + [anon_sym_struct] = ACTIONS(5503), + [anon_sym_union] = ACTIONS(5503), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5503), + [anon_sym_decltype] = ACTIONS(5503), + [anon_sym_explicit] = ACTIONS(5503), + [anon_sym_typename] = ACTIONS(5503), + [anon_sym_private] = ACTIONS(5503), + [anon_sym_template] = ACTIONS(5503), + [anon_sym_operator] = ACTIONS(5503), + [anon_sym_friend] = ACTIONS(5503), + [anon_sym_public] = ACTIONS(5503), + [anon_sym_protected] = ACTIONS(5503), + [anon_sym_static_assert] = ACTIONS(5503), }, - [2163] = { - [sym_identifier] = ACTIONS(3093), - [aux_sym_preproc_def_token1] = ACTIONS(3093), - [aux_sym_preproc_if_token1] = ACTIONS(3093), - [aux_sym_preproc_if_token2] = ACTIONS(3093), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3093), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3093), - [sym_preproc_directive] = ACTIONS(3093), - [anon_sym_LPAREN2] = ACTIONS(3095), - [anon_sym_TILDE] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(3095), - [anon_sym_AMP_AMP] = ACTIONS(3095), - [anon_sym_AMP] = ACTIONS(3093), - [anon_sym_SEMI] = ACTIONS(3095), - [anon_sym___extension__] = ACTIONS(3093), - [anon_sym_typedef] = ACTIONS(3093), - [anon_sym_virtual] = ACTIONS(3093), - [anon_sym_extern] = ACTIONS(3093), - [anon_sym___attribute__] = ACTIONS(3093), - [anon_sym___attribute] = ACTIONS(3093), - [anon_sym_using] = ACTIONS(3093), - [anon_sym_COLON_COLON] = ACTIONS(3095), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3095), - [anon_sym___declspec] = ACTIONS(3093), - [anon_sym___based] = ACTIONS(3093), - [anon_sym_signed] = ACTIONS(3093), - [anon_sym_unsigned] = ACTIONS(3093), - [anon_sym_long] = ACTIONS(3093), - [anon_sym_short] = ACTIONS(3093), - [anon_sym_LBRACK] = ACTIONS(3093), - [anon_sym_static] = ACTIONS(3093), - [anon_sym_register] = ACTIONS(3093), - [anon_sym_inline] = ACTIONS(3093), - [anon_sym___inline] = ACTIONS(3093), - [anon_sym___inline__] = ACTIONS(3093), - [anon_sym___forceinline] = ACTIONS(3093), - [anon_sym_thread_local] = ACTIONS(3093), - [anon_sym___thread] = ACTIONS(3093), - [anon_sym_const] = ACTIONS(3093), - [anon_sym_constexpr] = ACTIONS(3093), - [anon_sym_volatile] = ACTIONS(3093), - [anon_sym_restrict] = ACTIONS(3093), - [anon_sym___restrict__] = ACTIONS(3093), - [anon_sym__Atomic] = ACTIONS(3093), - [anon_sym__Noreturn] = ACTIONS(3093), - [anon_sym_noreturn] = ACTIONS(3093), - [anon_sym__Nonnull] = ACTIONS(3093), - [anon_sym_mutable] = ACTIONS(3093), - [anon_sym_constinit] = ACTIONS(3093), - [anon_sym_consteval] = ACTIONS(3093), - [anon_sym_alignas] = ACTIONS(3093), - [anon_sym__Alignas] = ACTIONS(3093), - [sym_primitive_type] = ACTIONS(3093), - [anon_sym_enum] = ACTIONS(3093), - [anon_sym_class] = ACTIONS(3093), - [anon_sym_struct] = ACTIONS(3093), - [anon_sym_union] = ACTIONS(3093), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3093), - [anon_sym_decltype] = ACTIONS(3093), - [anon_sym_explicit] = ACTIONS(3093), - [anon_sym_typename] = ACTIONS(3093), - [anon_sym_private] = ACTIONS(3093), - [anon_sym_template] = ACTIONS(3093), - [anon_sym_operator] = ACTIONS(3093), - [anon_sym_friend] = ACTIONS(3093), - [anon_sym_public] = ACTIONS(3093), - [anon_sym_protected] = ACTIONS(3093), - [anon_sym_static_assert] = ACTIONS(3093), + [2186] = { + [sym_identifier] = ACTIONS(5503), + [aux_sym_preproc_def_token1] = ACTIONS(5503), + [aux_sym_preproc_if_token1] = ACTIONS(5503), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5503), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5503), + [sym_preproc_directive] = ACTIONS(5503), + [anon_sym_LPAREN2] = ACTIONS(5505), + [anon_sym_TILDE] = ACTIONS(5505), + [anon_sym_STAR] = ACTIONS(5505), + [anon_sym_AMP_AMP] = ACTIONS(5505), + [anon_sym_AMP] = ACTIONS(5503), + [anon_sym_SEMI] = ACTIONS(5505), + [anon_sym___extension__] = ACTIONS(5503), + [anon_sym_typedef] = ACTIONS(5503), + [anon_sym_virtual] = ACTIONS(5503), + [anon_sym_extern] = ACTIONS(5503), + [anon_sym___attribute__] = ACTIONS(5503), + [anon_sym___attribute] = ACTIONS(5503), + [anon_sym_using] = ACTIONS(5503), + [anon_sym_COLON_COLON] = ACTIONS(5505), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5505), + [anon_sym___declspec] = ACTIONS(5503), + [anon_sym___based] = ACTIONS(5503), + [anon_sym_RBRACE] = ACTIONS(5505), + [anon_sym_signed] = ACTIONS(5503), + [anon_sym_unsigned] = ACTIONS(5503), + [anon_sym_long] = ACTIONS(5503), + [anon_sym_short] = ACTIONS(5503), + [anon_sym_LBRACK] = ACTIONS(5503), + [anon_sym_static] = ACTIONS(5503), + [anon_sym_register] = ACTIONS(5503), + [anon_sym_inline] = ACTIONS(5503), + [anon_sym___inline] = ACTIONS(5503), + [anon_sym___inline__] = ACTIONS(5503), + [anon_sym___forceinline] = ACTIONS(5503), + [anon_sym_thread_local] = ACTIONS(5503), + [anon_sym___thread] = ACTIONS(5503), + [anon_sym_const] = ACTIONS(5503), + [anon_sym_constexpr] = ACTIONS(5503), + [anon_sym_volatile] = ACTIONS(5503), + [anon_sym_restrict] = ACTIONS(5503), + [anon_sym___restrict__] = ACTIONS(5503), + [anon_sym__Atomic] = ACTIONS(5503), + [anon_sym__Noreturn] = ACTIONS(5503), + [anon_sym_noreturn] = ACTIONS(5503), + [anon_sym__Nonnull] = ACTIONS(5503), + [anon_sym_mutable] = ACTIONS(5503), + [anon_sym_constinit] = ACTIONS(5503), + [anon_sym_consteval] = ACTIONS(5503), + [anon_sym_alignas] = ACTIONS(5503), + [anon_sym__Alignas] = ACTIONS(5503), + [sym_primitive_type] = ACTIONS(5503), + [anon_sym_enum] = ACTIONS(5503), + [anon_sym_class] = ACTIONS(5503), + [anon_sym_struct] = ACTIONS(5503), + [anon_sym_union] = ACTIONS(5503), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5503), + [anon_sym_decltype] = ACTIONS(5503), + [anon_sym_explicit] = ACTIONS(5503), + [anon_sym_typename] = ACTIONS(5503), + [anon_sym_private] = ACTIONS(5503), + [anon_sym_template] = ACTIONS(5503), + [anon_sym_operator] = ACTIONS(5503), + [anon_sym_friend] = ACTIONS(5503), + [anon_sym_public] = ACTIONS(5503), + [anon_sym_protected] = ACTIONS(5503), + [anon_sym_static_assert] = ACTIONS(5503), }, - [2164] = { - [sym_identifier] = ACTIONS(2703), - [aux_sym_preproc_def_token1] = ACTIONS(2703), - [aux_sym_preproc_if_token1] = ACTIONS(2703), - [aux_sym_preproc_if_token2] = ACTIONS(2703), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2703), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2703), - [sym_preproc_directive] = ACTIONS(2703), - [anon_sym_LPAREN2] = ACTIONS(2705), - [anon_sym_TILDE] = ACTIONS(2705), - [anon_sym_STAR] = ACTIONS(2705), - [anon_sym_AMP_AMP] = ACTIONS(2705), - [anon_sym_AMP] = ACTIONS(2703), - [anon_sym_SEMI] = ACTIONS(2705), - [anon_sym___extension__] = ACTIONS(2703), - [anon_sym_typedef] = ACTIONS(2703), - [anon_sym_virtual] = ACTIONS(2703), - [anon_sym_extern] = ACTIONS(2703), - [anon_sym___attribute__] = ACTIONS(2703), - [anon_sym___attribute] = ACTIONS(2703), - [anon_sym_using] = ACTIONS(2703), - [anon_sym_COLON_COLON] = ACTIONS(2705), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2705), - [anon_sym___declspec] = ACTIONS(2703), - [anon_sym___based] = ACTIONS(2703), - [anon_sym_signed] = ACTIONS(2703), - [anon_sym_unsigned] = ACTIONS(2703), - [anon_sym_long] = ACTIONS(2703), - [anon_sym_short] = ACTIONS(2703), - [anon_sym_LBRACK] = ACTIONS(2703), - [anon_sym_static] = ACTIONS(2703), - [anon_sym_register] = ACTIONS(2703), - [anon_sym_inline] = ACTIONS(2703), - [anon_sym___inline] = ACTIONS(2703), - [anon_sym___inline__] = ACTIONS(2703), - [anon_sym___forceinline] = ACTIONS(2703), - [anon_sym_thread_local] = ACTIONS(2703), - [anon_sym___thread] = ACTIONS(2703), - [anon_sym_const] = ACTIONS(2703), - [anon_sym_constexpr] = ACTIONS(2703), - [anon_sym_volatile] = ACTIONS(2703), - [anon_sym_restrict] = ACTIONS(2703), - [anon_sym___restrict__] = ACTIONS(2703), - [anon_sym__Atomic] = ACTIONS(2703), - [anon_sym__Noreturn] = ACTIONS(2703), - [anon_sym_noreturn] = ACTIONS(2703), - [anon_sym__Nonnull] = ACTIONS(2703), - [anon_sym_mutable] = ACTIONS(2703), - [anon_sym_constinit] = ACTIONS(2703), - [anon_sym_consteval] = ACTIONS(2703), - [anon_sym_alignas] = ACTIONS(2703), - [anon_sym__Alignas] = ACTIONS(2703), - [sym_primitive_type] = ACTIONS(2703), - [anon_sym_enum] = ACTIONS(2703), - [anon_sym_class] = ACTIONS(2703), - [anon_sym_struct] = ACTIONS(2703), - [anon_sym_union] = ACTIONS(2703), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2703), - [anon_sym_decltype] = ACTIONS(2703), - [anon_sym_explicit] = ACTIONS(2703), - [anon_sym_typename] = ACTIONS(2703), - [anon_sym_private] = ACTIONS(2703), - [anon_sym_template] = ACTIONS(2703), - [anon_sym_operator] = ACTIONS(2703), - [anon_sym_friend] = ACTIONS(2703), - [anon_sym_public] = ACTIONS(2703), - [anon_sym_protected] = ACTIONS(2703), - [anon_sym_static_assert] = ACTIONS(2703), + [2187] = { + [sym_identifier] = ACTIONS(5503), + [aux_sym_preproc_def_token1] = ACTIONS(5503), + [aux_sym_preproc_if_token1] = ACTIONS(5503), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5503), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5503), + [sym_preproc_directive] = ACTIONS(5503), + [anon_sym_LPAREN2] = ACTIONS(5505), + [anon_sym_TILDE] = ACTIONS(5505), + [anon_sym_STAR] = ACTIONS(5505), + [anon_sym_AMP_AMP] = ACTIONS(5505), + [anon_sym_AMP] = ACTIONS(5503), + [anon_sym_SEMI] = ACTIONS(5505), + [anon_sym___extension__] = ACTIONS(5503), + [anon_sym_typedef] = ACTIONS(5503), + [anon_sym_virtual] = ACTIONS(5503), + [anon_sym_extern] = ACTIONS(5503), + [anon_sym___attribute__] = ACTIONS(5503), + [anon_sym___attribute] = ACTIONS(5503), + [anon_sym_using] = ACTIONS(5503), + [anon_sym_COLON_COLON] = ACTIONS(5505), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5505), + [anon_sym___declspec] = ACTIONS(5503), + [anon_sym___based] = ACTIONS(5503), + [anon_sym_RBRACE] = ACTIONS(5505), + [anon_sym_signed] = ACTIONS(5503), + [anon_sym_unsigned] = ACTIONS(5503), + [anon_sym_long] = ACTIONS(5503), + [anon_sym_short] = ACTIONS(5503), + [anon_sym_LBRACK] = ACTIONS(5503), + [anon_sym_static] = ACTIONS(5503), + [anon_sym_register] = ACTIONS(5503), + [anon_sym_inline] = ACTIONS(5503), + [anon_sym___inline] = ACTIONS(5503), + [anon_sym___inline__] = ACTIONS(5503), + [anon_sym___forceinline] = ACTIONS(5503), + [anon_sym_thread_local] = ACTIONS(5503), + [anon_sym___thread] = ACTIONS(5503), + [anon_sym_const] = ACTIONS(5503), + [anon_sym_constexpr] = ACTIONS(5503), + [anon_sym_volatile] = ACTIONS(5503), + [anon_sym_restrict] = ACTIONS(5503), + [anon_sym___restrict__] = ACTIONS(5503), + [anon_sym__Atomic] = ACTIONS(5503), + [anon_sym__Noreturn] = ACTIONS(5503), + [anon_sym_noreturn] = ACTIONS(5503), + [anon_sym__Nonnull] = ACTIONS(5503), + [anon_sym_mutable] = ACTIONS(5503), + [anon_sym_constinit] = ACTIONS(5503), + [anon_sym_consteval] = ACTIONS(5503), + [anon_sym_alignas] = ACTIONS(5503), + [anon_sym__Alignas] = ACTIONS(5503), + [sym_primitive_type] = ACTIONS(5503), + [anon_sym_enum] = ACTIONS(5503), + [anon_sym_class] = ACTIONS(5503), + [anon_sym_struct] = ACTIONS(5503), + [anon_sym_union] = ACTIONS(5503), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5503), + [anon_sym_decltype] = ACTIONS(5503), + [anon_sym_explicit] = ACTIONS(5503), + [anon_sym_typename] = ACTIONS(5503), + [anon_sym_private] = ACTIONS(5503), + [anon_sym_template] = ACTIONS(5503), + [anon_sym_operator] = ACTIONS(5503), + [anon_sym_friend] = ACTIONS(5503), + [anon_sym_public] = ACTIONS(5503), + [anon_sym_protected] = ACTIONS(5503), + [anon_sym_static_assert] = ACTIONS(5503), }, - [2165] = { + [2188] = { + [sym_identifier] = ACTIONS(5499), + [aux_sym_preproc_def_token1] = ACTIONS(5499), + [aux_sym_preproc_if_token1] = ACTIONS(5499), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5499), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5499), + [sym_preproc_directive] = ACTIONS(5499), + [anon_sym_LPAREN2] = ACTIONS(5501), + [anon_sym_TILDE] = ACTIONS(5501), + [anon_sym_STAR] = ACTIONS(5501), + [anon_sym_AMP_AMP] = ACTIONS(5501), + [anon_sym_AMP] = ACTIONS(5499), + [anon_sym_SEMI] = ACTIONS(5501), + [anon_sym___extension__] = ACTIONS(5499), + [anon_sym_typedef] = ACTIONS(5499), + [anon_sym_virtual] = ACTIONS(5499), + [anon_sym_extern] = ACTIONS(5499), + [anon_sym___attribute__] = ACTIONS(5499), + [anon_sym___attribute] = ACTIONS(5499), + [anon_sym_using] = ACTIONS(5499), + [anon_sym_COLON_COLON] = ACTIONS(5501), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5501), + [anon_sym___declspec] = ACTIONS(5499), + [anon_sym___based] = ACTIONS(5499), + [anon_sym_RBRACE] = ACTIONS(5501), + [anon_sym_signed] = ACTIONS(5499), + [anon_sym_unsigned] = ACTIONS(5499), + [anon_sym_long] = ACTIONS(5499), + [anon_sym_short] = ACTIONS(5499), + [anon_sym_LBRACK] = ACTIONS(5499), + [anon_sym_static] = ACTIONS(5499), + [anon_sym_register] = ACTIONS(5499), + [anon_sym_inline] = ACTIONS(5499), + [anon_sym___inline] = ACTIONS(5499), + [anon_sym___inline__] = ACTIONS(5499), + [anon_sym___forceinline] = ACTIONS(5499), + [anon_sym_thread_local] = ACTIONS(5499), + [anon_sym___thread] = ACTIONS(5499), + [anon_sym_const] = ACTIONS(5499), + [anon_sym_constexpr] = ACTIONS(5499), + [anon_sym_volatile] = ACTIONS(5499), + [anon_sym_restrict] = ACTIONS(5499), + [anon_sym___restrict__] = ACTIONS(5499), + [anon_sym__Atomic] = ACTIONS(5499), + [anon_sym__Noreturn] = ACTIONS(5499), + [anon_sym_noreturn] = ACTIONS(5499), + [anon_sym__Nonnull] = ACTIONS(5499), + [anon_sym_mutable] = ACTIONS(5499), + [anon_sym_constinit] = ACTIONS(5499), + [anon_sym_consteval] = ACTIONS(5499), + [anon_sym_alignas] = ACTIONS(5499), + [anon_sym__Alignas] = ACTIONS(5499), + [sym_primitive_type] = ACTIONS(5499), + [anon_sym_enum] = ACTIONS(5499), + [anon_sym_class] = ACTIONS(5499), + [anon_sym_struct] = ACTIONS(5499), + [anon_sym_union] = ACTIONS(5499), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5499), + [anon_sym_decltype] = ACTIONS(5499), + [anon_sym_explicit] = ACTIONS(5499), + [anon_sym_typename] = ACTIONS(5499), + [anon_sym_private] = ACTIONS(5499), + [anon_sym_template] = ACTIONS(5499), + [anon_sym_operator] = ACTIONS(5499), + [anon_sym_friend] = ACTIONS(5499), + [anon_sym_public] = ACTIONS(5499), + [anon_sym_protected] = ACTIONS(5499), + [anon_sym_static_assert] = ACTIONS(5499), + }, + [2189] = { + [sym_identifier] = ACTIONS(5458), + [aux_sym_preproc_def_token1] = ACTIONS(5458), + [aux_sym_preproc_if_token1] = ACTIONS(5458), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5458), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5458), + [sym_preproc_directive] = ACTIONS(5458), + [anon_sym_LPAREN2] = ACTIONS(5460), + [anon_sym_TILDE] = ACTIONS(5460), + [anon_sym_STAR] = ACTIONS(5460), + [anon_sym_AMP_AMP] = ACTIONS(5460), + [anon_sym_AMP] = ACTIONS(5458), + [anon_sym_SEMI] = ACTIONS(5460), + [anon_sym___extension__] = ACTIONS(5458), + [anon_sym_typedef] = ACTIONS(5458), + [anon_sym_virtual] = ACTIONS(5458), + [anon_sym_extern] = ACTIONS(5458), + [anon_sym___attribute__] = ACTIONS(5458), + [anon_sym___attribute] = ACTIONS(5458), + [anon_sym_using] = ACTIONS(5458), + [anon_sym_COLON_COLON] = ACTIONS(5460), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5460), + [anon_sym___declspec] = ACTIONS(5458), + [anon_sym___based] = ACTIONS(5458), + [anon_sym_RBRACE] = ACTIONS(5460), + [anon_sym_signed] = ACTIONS(5458), + [anon_sym_unsigned] = ACTIONS(5458), + [anon_sym_long] = ACTIONS(5458), + [anon_sym_short] = ACTIONS(5458), + [anon_sym_LBRACK] = ACTIONS(5458), + [anon_sym_static] = ACTIONS(5458), + [anon_sym_register] = ACTIONS(5458), + [anon_sym_inline] = ACTIONS(5458), + [anon_sym___inline] = ACTIONS(5458), + [anon_sym___inline__] = ACTIONS(5458), + [anon_sym___forceinline] = ACTIONS(5458), + [anon_sym_thread_local] = ACTIONS(5458), + [anon_sym___thread] = ACTIONS(5458), + [anon_sym_const] = ACTIONS(5458), + [anon_sym_constexpr] = ACTIONS(5458), + [anon_sym_volatile] = ACTIONS(5458), + [anon_sym_restrict] = ACTIONS(5458), + [anon_sym___restrict__] = ACTIONS(5458), + [anon_sym__Atomic] = ACTIONS(5458), + [anon_sym__Noreturn] = ACTIONS(5458), + [anon_sym_noreturn] = ACTIONS(5458), + [anon_sym__Nonnull] = ACTIONS(5458), + [anon_sym_mutable] = ACTIONS(5458), + [anon_sym_constinit] = ACTIONS(5458), + [anon_sym_consteval] = ACTIONS(5458), + [anon_sym_alignas] = ACTIONS(5458), + [anon_sym__Alignas] = ACTIONS(5458), + [sym_primitive_type] = ACTIONS(5458), + [anon_sym_enum] = ACTIONS(5458), + [anon_sym_class] = ACTIONS(5458), + [anon_sym_struct] = ACTIONS(5458), + [anon_sym_union] = ACTIONS(5458), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5458), + [anon_sym_decltype] = ACTIONS(5458), + [anon_sym_explicit] = ACTIONS(5458), + [anon_sym_typename] = ACTIONS(5458), + [anon_sym_private] = ACTIONS(5458), + [anon_sym_template] = ACTIONS(5458), + [anon_sym_operator] = ACTIONS(5458), + [anon_sym_friend] = ACTIONS(5458), + [anon_sym_public] = ACTIONS(5458), + [anon_sym_protected] = ACTIONS(5458), + [anon_sym_static_assert] = ACTIONS(5458), + }, + [2190] = { + [sym_identifier] = ACTIONS(3116), + [aux_sym_preproc_def_token1] = ACTIONS(3116), + [aux_sym_preproc_if_token1] = ACTIONS(3116), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3116), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3116), + [sym_preproc_directive] = ACTIONS(3116), + [anon_sym_LPAREN2] = ACTIONS(3118), + [anon_sym_TILDE] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(3118), + [anon_sym_AMP_AMP] = ACTIONS(3118), + [anon_sym_AMP] = ACTIONS(3116), + [anon_sym_SEMI] = ACTIONS(3118), + [anon_sym___extension__] = ACTIONS(3116), + [anon_sym_typedef] = ACTIONS(3116), + [anon_sym_virtual] = ACTIONS(3116), + [anon_sym_extern] = ACTIONS(3116), + [anon_sym___attribute__] = ACTIONS(3116), + [anon_sym___attribute] = ACTIONS(3116), + [anon_sym_using] = ACTIONS(3116), + [anon_sym_COLON_COLON] = ACTIONS(3118), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3118), + [anon_sym___declspec] = ACTIONS(3116), + [anon_sym___based] = ACTIONS(3116), + [anon_sym_RBRACE] = ACTIONS(3118), + [anon_sym_signed] = ACTIONS(3116), + [anon_sym_unsigned] = ACTIONS(3116), + [anon_sym_long] = ACTIONS(3116), + [anon_sym_short] = ACTIONS(3116), + [anon_sym_LBRACK] = ACTIONS(3116), + [anon_sym_static] = ACTIONS(3116), + [anon_sym_register] = ACTIONS(3116), + [anon_sym_inline] = ACTIONS(3116), + [anon_sym___inline] = ACTIONS(3116), + [anon_sym___inline__] = ACTIONS(3116), + [anon_sym___forceinline] = ACTIONS(3116), + [anon_sym_thread_local] = ACTIONS(3116), + [anon_sym___thread] = ACTIONS(3116), + [anon_sym_const] = ACTIONS(3116), + [anon_sym_constexpr] = ACTIONS(3116), + [anon_sym_volatile] = ACTIONS(3116), + [anon_sym_restrict] = ACTIONS(3116), + [anon_sym___restrict__] = ACTIONS(3116), + [anon_sym__Atomic] = ACTIONS(3116), + [anon_sym__Noreturn] = ACTIONS(3116), + [anon_sym_noreturn] = ACTIONS(3116), + [anon_sym__Nonnull] = ACTIONS(3116), + [anon_sym_mutable] = ACTIONS(3116), + [anon_sym_constinit] = ACTIONS(3116), + [anon_sym_consteval] = ACTIONS(3116), + [anon_sym_alignas] = ACTIONS(3116), + [anon_sym__Alignas] = ACTIONS(3116), + [sym_primitive_type] = ACTIONS(3116), + [anon_sym_enum] = ACTIONS(3116), + [anon_sym_class] = ACTIONS(3116), + [anon_sym_struct] = ACTIONS(3116), + [anon_sym_union] = ACTIONS(3116), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3116), + [anon_sym_decltype] = ACTIONS(3116), + [anon_sym_explicit] = ACTIONS(3116), + [anon_sym_typename] = ACTIONS(3116), + [anon_sym_private] = ACTIONS(3116), + [anon_sym_template] = ACTIONS(3116), + [anon_sym_operator] = ACTIONS(3116), + [anon_sym_friend] = ACTIONS(3116), + [anon_sym_public] = ACTIONS(3116), + [anon_sym_protected] = ACTIONS(3116), + [anon_sym_static_assert] = ACTIONS(3116), + }, + [2191] = { [sym_identifier] = ACTIONS(2931), [aux_sym_preproc_def_token1] = ACTIONS(2931), [aux_sym_preproc_if_token1] = ACTIONS(2931), @@ -280465,7 +283952,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(2931), [anon_sym_static_assert] = ACTIONS(2931), }, - [2166] = { + [2192] = { + [sym_identifier] = ACTIONS(5458), + [aux_sym_preproc_def_token1] = ACTIONS(5458), + [aux_sym_preproc_if_token1] = ACTIONS(5458), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5458), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5458), + [sym_preproc_directive] = ACTIONS(5458), + [anon_sym_LPAREN2] = ACTIONS(5460), + [anon_sym_TILDE] = ACTIONS(5460), + [anon_sym_STAR] = ACTIONS(5460), + [anon_sym_AMP_AMP] = ACTIONS(5460), + [anon_sym_AMP] = ACTIONS(5458), + [anon_sym_SEMI] = ACTIONS(5460), + [anon_sym___extension__] = ACTIONS(5458), + [anon_sym_typedef] = ACTIONS(5458), + [anon_sym_virtual] = ACTIONS(5458), + [anon_sym_extern] = ACTIONS(5458), + [anon_sym___attribute__] = ACTIONS(5458), + [anon_sym___attribute] = ACTIONS(5458), + [anon_sym_using] = ACTIONS(5458), + [anon_sym_COLON_COLON] = ACTIONS(5460), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5460), + [anon_sym___declspec] = ACTIONS(5458), + [anon_sym___based] = ACTIONS(5458), + [anon_sym_RBRACE] = ACTIONS(5460), + [anon_sym_signed] = ACTIONS(5458), + [anon_sym_unsigned] = ACTIONS(5458), + [anon_sym_long] = ACTIONS(5458), + [anon_sym_short] = ACTIONS(5458), + [anon_sym_LBRACK] = ACTIONS(5458), + [anon_sym_static] = ACTIONS(5458), + [anon_sym_register] = ACTIONS(5458), + [anon_sym_inline] = ACTIONS(5458), + [anon_sym___inline] = ACTIONS(5458), + [anon_sym___inline__] = ACTIONS(5458), + [anon_sym___forceinline] = ACTIONS(5458), + [anon_sym_thread_local] = ACTIONS(5458), + [anon_sym___thread] = ACTIONS(5458), + [anon_sym_const] = ACTIONS(5458), + [anon_sym_constexpr] = ACTIONS(5458), + [anon_sym_volatile] = ACTIONS(5458), + [anon_sym_restrict] = ACTIONS(5458), + [anon_sym___restrict__] = ACTIONS(5458), + [anon_sym__Atomic] = ACTIONS(5458), + [anon_sym__Noreturn] = ACTIONS(5458), + [anon_sym_noreturn] = ACTIONS(5458), + [anon_sym__Nonnull] = ACTIONS(5458), + [anon_sym_mutable] = ACTIONS(5458), + [anon_sym_constinit] = ACTIONS(5458), + [anon_sym_consteval] = ACTIONS(5458), + [anon_sym_alignas] = ACTIONS(5458), + [anon_sym__Alignas] = ACTIONS(5458), + [sym_primitive_type] = ACTIONS(5458), + [anon_sym_enum] = ACTIONS(5458), + [anon_sym_class] = ACTIONS(5458), + [anon_sym_struct] = ACTIONS(5458), + [anon_sym_union] = ACTIONS(5458), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5458), + [anon_sym_decltype] = ACTIONS(5458), + [anon_sym_explicit] = ACTIONS(5458), + [anon_sym_typename] = ACTIONS(5458), + [anon_sym_private] = ACTIONS(5458), + [anon_sym_template] = ACTIONS(5458), + [anon_sym_operator] = ACTIONS(5458), + [anon_sym_friend] = ACTIONS(5458), + [anon_sym_public] = ACTIONS(5458), + [anon_sym_protected] = ACTIONS(5458), + [anon_sym_static_assert] = ACTIONS(5458), + }, + [2193] = { + [sym_identifier] = ACTIONS(3105), + [aux_sym_preproc_def_token1] = ACTIONS(3105), + [aux_sym_preproc_if_token1] = ACTIONS(3105), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3105), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3105), + [sym_preproc_directive] = ACTIONS(3105), + [anon_sym_LPAREN2] = ACTIONS(3107), + [anon_sym_TILDE] = ACTIONS(3107), + [anon_sym_STAR] = ACTIONS(3107), + [anon_sym_AMP_AMP] = ACTIONS(3107), + [anon_sym_AMP] = ACTIONS(3105), + [anon_sym_SEMI] = ACTIONS(3107), + [anon_sym___extension__] = ACTIONS(3105), + [anon_sym_typedef] = ACTIONS(3105), + [anon_sym_virtual] = ACTIONS(3105), + [anon_sym_extern] = ACTIONS(3105), + [anon_sym___attribute__] = ACTIONS(3105), + [anon_sym___attribute] = ACTIONS(3105), + [anon_sym_using] = ACTIONS(3105), + [anon_sym_COLON_COLON] = ACTIONS(3107), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3107), + [anon_sym___declspec] = ACTIONS(3105), + [anon_sym___based] = ACTIONS(3105), + [anon_sym_RBRACE] = ACTIONS(3107), + [anon_sym_signed] = ACTIONS(3105), + [anon_sym_unsigned] = ACTIONS(3105), + [anon_sym_long] = ACTIONS(3105), + [anon_sym_short] = ACTIONS(3105), + [anon_sym_LBRACK] = ACTIONS(3105), + [anon_sym_static] = ACTIONS(3105), + [anon_sym_register] = ACTIONS(3105), + [anon_sym_inline] = ACTIONS(3105), + [anon_sym___inline] = ACTIONS(3105), + [anon_sym___inline__] = ACTIONS(3105), + [anon_sym___forceinline] = ACTIONS(3105), + [anon_sym_thread_local] = ACTIONS(3105), + [anon_sym___thread] = ACTIONS(3105), + [anon_sym_const] = ACTIONS(3105), + [anon_sym_constexpr] = ACTIONS(3105), + [anon_sym_volatile] = ACTIONS(3105), + [anon_sym_restrict] = ACTIONS(3105), + [anon_sym___restrict__] = ACTIONS(3105), + [anon_sym__Atomic] = ACTIONS(3105), + [anon_sym__Noreturn] = ACTIONS(3105), + [anon_sym_noreturn] = ACTIONS(3105), + [anon_sym__Nonnull] = ACTIONS(3105), + [anon_sym_mutable] = ACTIONS(3105), + [anon_sym_constinit] = ACTIONS(3105), + [anon_sym_consteval] = ACTIONS(3105), + [anon_sym_alignas] = ACTIONS(3105), + [anon_sym__Alignas] = ACTIONS(3105), + [sym_primitive_type] = ACTIONS(3105), + [anon_sym_enum] = ACTIONS(3105), + [anon_sym_class] = ACTIONS(3105), + [anon_sym_struct] = ACTIONS(3105), + [anon_sym_union] = ACTIONS(3105), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3105), + [anon_sym_decltype] = ACTIONS(3105), + [anon_sym_explicit] = ACTIONS(3105), + [anon_sym_typename] = ACTIONS(3105), + [anon_sym_private] = ACTIONS(3105), + [anon_sym_template] = ACTIONS(3105), + [anon_sym_operator] = ACTIONS(3105), + [anon_sym_friend] = ACTIONS(3105), + [anon_sym_public] = ACTIONS(3105), + [anon_sym_protected] = ACTIONS(3105), + [anon_sym_static_assert] = ACTIONS(3105), + }, + [2194] = { [sym_identifier] = ACTIONS(2935), [aux_sym_preproc_def_token1] = ACTIONS(2935), [aux_sym_preproc_if_token1] = ACTIONS(2935), @@ -280535,7 +284162,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(2935), [anon_sym_static_assert] = ACTIONS(2935), }, - [2167] = { + [2195] = { [sym_identifier] = ACTIONS(2939), [aux_sym_preproc_def_token1] = ACTIONS(2939), [aux_sym_preproc_if_token1] = ACTIONS(2939), @@ -280605,906 +284232,1130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(2939), [anon_sym_static_assert] = ACTIONS(2939), }, - [2168] = { - [sym_identifier] = ACTIONS(3319), - [aux_sym_preproc_def_token1] = ACTIONS(3319), - [aux_sym_preproc_if_token1] = ACTIONS(3319), - [aux_sym_preproc_if_token2] = ACTIONS(3319), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3319), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3319), - [sym_preproc_directive] = ACTIONS(3319), - [anon_sym_LPAREN2] = ACTIONS(3321), - [anon_sym_TILDE] = ACTIONS(3321), - [anon_sym_STAR] = ACTIONS(3321), - [anon_sym_AMP_AMP] = ACTIONS(3321), - [anon_sym_AMP] = ACTIONS(3319), - [anon_sym_SEMI] = ACTIONS(3321), - [anon_sym___extension__] = ACTIONS(3319), - [anon_sym_typedef] = ACTIONS(3319), - [anon_sym_virtual] = ACTIONS(3319), - [anon_sym_extern] = ACTIONS(3319), - [anon_sym___attribute__] = ACTIONS(3319), - [anon_sym___attribute] = ACTIONS(3319), - [anon_sym_using] = ACTIONS(3319), - [anon_sym_COLON_COLON] = ACTIONS(3321), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3321), - [anon_sym___declspec] = ACTIONS(3319), - [anon_sym___based] = ACTIONS(3319), - [anon_sym_signed] = ACTIONS(3319), - [anon_sym_unsigned] = ACTIONS(3319), - [anon_sym_long] = ACTIONS(3319), - [anon_sym_short] = ACTIONS(3319), - [anon_sym_LBRACK] = ACTIONS(3319), - [anon_sym_static] = ACTIONS(3319), - [anon_sym_register] = ACTIONS(3319), - [anon_sym_inline] = ACTIONS(3319), - [anon_sym___inline] = ACTIONS(3319), - [anon_sym___inline__] = ACTIONS(3319), - [anon_sym___forceinline] = ACTIONS(3319), - [anon_sym_thread_local] = ACTIONS(3319), - [anon_sym___thread] = ACTIONS(3319), - [anon_sym_const] = ACTIONS(3319), - [anon_sym_constexpr] = ACTIONS(3319), - [anon_sym_volatile] = ACTIONS(3319), - [anon_sym_restrict] = ACTIONS(3319), - [anon_sym___restrict__] = ACTIONS(3319), - [anon_sym__Atomic] = ACTIONS(3319), - [anon_sym__Noreturn] = ACTIONS(3319), - [anon_sym_noreturn] = ACTIONS(3319), - [anon_sym__Nonnull] = ACTIONS(3319), - [anon_sym_mutable] = ACTIONS(3319), - [anon_sym_constinit] = ACTIONS(3319), - [anon_sym_consteval] = ACTIONS(3319), - [anon_sym_alignas] = ACTIONS(3319), - [anon_sym__Alignas] = ACTIONS(3319), - [sym_primitive_type] = ACTIONS(3319), - [anon_sym_enum] = ACTIONS(3319), - [anon_sym_class] = ACTIONS(3319), - [anon_sym_struct] = ACTIONS(3319), - [anon_sym_union] = ACTIONS(3319), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3319), - [anon_sym_decltype] = ACTIONS(3319), - [anon_sym_explicit] = ACTIONS(3319), - [anon_sym_typename] = ACTIONS(3319), - [anon_sym_private] = ACTIONS(3319), - [anon_sym_template] = ACTIONS(3319), - [anon_sym_operator] = ACTIONS(3319), - [anon_sym_friend] = ACTIONS(3319), - [anon_sym_public] = ACTIONS(3319), - [anon_sym_protected] = ACTIONS(3319), - [anon_sym_static_assert] = ACTIONS(3319), + [2196] = { + [sym_string_literal] = STATE(2657), + [sym_template_argument_list] = STATE(3605), + [sym_raw_string_literal] = STATE(2657), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4166), + [anon_sym_COMMA] = ACTIONS(4166), + [anon_sym_LPAREN2] = ACTIONS(4166), + [anon_sym_DASH] = ACTIONS(4174), + [anon_sym_PLUS] = ACTIONS(4174), + [anon_sym_STAR] = ACTIONS(4174), + [anon_sym_SLASH] = ACTIONS(4174), + [anon_sym_PERCENT] = ACTIONS(4174), + [anon_sym_PIPE_PIPE] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4166), + [anon_sym_PIPE] = ACTIONS(4174), + [anon_sym_CARET] = ACTIONS(4174), + [anon_sym_AMP] = ACTIONS(4174), + [anon_sym_EQ_EQ] = ACTIONS(4166), + [anon_sym_BANG_EQ] = ACTIONS(4166), + [anon_sym_GT] = ACTIONS(4174), + [anon_sym_GT_EQ] = ACTIONS(4166), + [anon_sym_LT_EQ] = ACTIONS(4174), + [anon_sym_LT] = ACTIONS(5085), + [anon_sym_LT_LT] = ACTIONS(4174), + [anon_sym_GT_GT] = ACTIONS(4174), + [anon_sym_SEMI] = ACTIONS(4166), + [anon_sym_COLON] = ACTIONS(6084), + [anon_sym_COLON_COLON] = ACTIONS(4187), + [anon_sym_LBRACE] = ACTIONS(4192), + [anon_sym_RBRACE] = ACTIONS(4166), + [anon_sym_LBRACK] = ACTIONS(4166), + [anon_sym_EQ] = ACTIONS(4200), + [anon_sym_QMARK] = ACTIONS(4166), + [anon_sym_STAR_EQ] = ACTIONS(4202), + [anon_sym_SLASH_EQ] = ACTIONS(4202), + [anon_sym_PERCENT_EQ] = ACTIONS(4202), + [anon_sym_PLUS_EQ] = ACTIONS(4202), + [anon_sym_DASH_EQ] = ACTIONS(4202), + [anon_sym_LT_LT_EQ] = ACTIONS(4202), + [anon_sym_GT_GT_EQ] = ACTIONS(4202), + [anon_sym_AMP_EQ] = ACTIONS(4202), + [anon_sym_CARET_EQ] = ACTIONS(4202), + [anon_sym_PIPE_EQ] = ACTIONS(4202), + [anon_sym_and_eq] = ACTIONS(4202), + [anon_sym_or_eq] = ACTIONS(4202), + [anon_sym_xor_eq] = ACTIONS(4202), + [anon_sym_LT_EQ_GT] = ACTIONS(4166), + [anon_sym_or] = ACTIONS(4174), + [anon_sym_and] = ACTIONS(4174), + [anon_sym_bitor] = ACTIONS(4166), + [anon_sym_xor] = ACTIONS(4174), + [anon_sym_bitand] = ACTIONS(4166), + [anon_sym_not_eq] = ACTIONS(4166), + [anon_sym_DASH_DASH] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4174), + [anon_sym_DOT_STAR] = ACTIONS(4166), + [anon_sym_DASH_GT] = ACTIONS(4166), + [anon_sym_L_DQUOTE] = ACTIONS(3631), + [anon_sym_u_DQUOTE] = ACTIONS(3631), + [anon_sym_U_DQUOTE] = ACTIONS(3631), + [anon_sym_u8_DQUOTE] = ACTIONS(3631), + [anon_sym_DQUOTE] = ACTIONS(3631), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3635), + [anon_sym_LR_DQUOTE] = ACTIONS(3635), + [anon_sym_uR_DQUOTE] = ACTIONS(3635), + [anon_sym_UR_DQUOTE] = ACTIONS(3635), + [anon_sym_u8R_DQUOTE] = ACTIONS(3635), }, - [2169] = { - [sym_attribute_declaration] = STATE(2270), - [sym_parameter_list] = STATE(2298), - [aux_sym_attributed_declarator_repeat1] = STATE(2270), - [sym_identifier] = ACTIONS(6038), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6040), - [anon_sym_COMMA] = ACTIONS(6040), - [anon_sym_RPAREN] = ACTIONS(6040), - [aux_sym_preproc_if_token2] = ACTIONS(6040), - [aux_sym_preproc_else_token1] = ACTIONS(6040), - [aux_sym_preproc_elif_token1] = ACTIONS(6038), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6040), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6040), - [anon_sym_LPAREN2] = ACTIONS(6042), - [anon_sym_DASH] = ACTIONS(6038), - [anon_sym_PLUS] = ACTIONS(6038), - [anon_sym_STAR] = ACTIONS(6038), - [anon_sym_SLASH] = ACTIONS(6038), - [anon_sym_PERCENT] = ACTIONS(6038), - [anon_sym_PIPE_PIPE] = ACTIONS(6040), - [anon_sym_AMP_AMP] = ACTIONS(6040), - [anon_sym_PIPE] = ACTIONS(6038), - [anon_sym_CARET] = ACTIONS(6038), - [anon_sym_AMP] = ACTIONS(6038), - [anon_sym_EQ_EQ] = ACTIONS(6040), - [anon_sym_BANG_EQ] = ACTIONS(6040), - [anon_sym_GT] = ACTIONS(6038), - [anon_sym_GT_EQ] = ACTIONS(6040), - [anon_sym_LT_EQ] = ACTIONS(6038), - [anon_sym_LT] = ACTIONS(6038), - [anon_sym_LT_LT] = ACTIONS(6038), - [anon_sym_GT_GT] = ACTIONS(6038), - [anon_sym_SEMI] = ACTIONS(6040), - [anon_sym___attribute__] = ACTIONS(6038), - [anon_sym___attribute] = ACTIONS(6038), - [anon_sym_COLON] = ACTIONS(6040), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6044), - [anon_sym_RBRACE] = ACTIONS(6040), - [anon_sym_LBRACK] = ACTIONS(6046), - [anon_sym_RBRACK] = ACTIONS(6040), - [anon_sym_EQ] = ACTIONS(6038), - [anon_sym_QMARK] = ACTIONS(6040), - [anon_sym_STAR_EQ] = ACTIONS(6040), - [anon_sym_SLASH_EQ] = ACTIONS(6040), - [anon_sym_PERCENT_EQ] = ACTIONS(6040), - [anon_sym_PLUS_EQ] = ACTIONS(6040), - [anon_sym_DASH_EQ] = ACTIONS(6040), - [anon_sym_LT_LT_EQ] = ACTIONS(6040), - [anon_sym_GT_GT_EQ] = ACTIONS(6040), - [anon_sym_AMP_EQ] = ACTIONS(6040), - [anon_sym_CARET_EQ] = ACTIONS(6040), - [anon_sym_PIPE_EQ] = ACTIONS(6040), - [anon_sym_and_eq] = ACTIONS(6038), - [anon_sym_or_eq] = ACTIONS(6038), - [anon_sym_xor_eq] = ACTIONS(6038), - [anon_sym_LT_EQ_GT] = ACTIONS(6040), - [anon_sym_or] = ACTIONS(6038), - [anon_sym_and] = ACTIONS(6038), - [anon_sym_bitor] = ACTIONS(6038), - [anon_sym_xor] = ACTIONS(6038), - [anon_sym_bitand] = ACTIONS(6038), - [anon_sym_not_eq] = ACTIONS(6038), - [anon_sym_DASH_DASH] = ACTIONS(6040), - [anon_sym_PLUS_PLUS] = ACTIONS(6040), - [anon_sym_DOT] = ACTIONS(6038), - [anon_sym_DOT_STAR] = ACTIONS(6040), - [anon_sym_DASH_GT] = ACTIONS(6040), + [2197] = { + [sym_identifier] = ACTIONS(5633), + [aux_sym_preproc_def_token1] = ACTIONS(5633), + [aux_sym_preproc_if_token1] = ACTIONS(5633), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5633), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5633), + [sym_preproc_directive] = ACTIONS(5633), + [anon_sym_LPAREN2] = ACTIONS(5635), + [anon_sym_TILDE] = ACTIONS(5635), + [anon_sym_STAR] = ACTIONS(5635), + [anon_sym_AMP_AMP] = ACTIONS(5635), + [anon_sym_AMP] = ACTIONS(5633), + [anon_sym_SEMI] = ACTIONS(5635), + [anon_sym___extension__] = ACTIONS(5633), + [anon_sym_typedef] = ACTIONS(5633), + [anon_sym_virtual] = ACTIONS(5633), + [anon_sym_extern] = ACTIONS(5633), + [anon_sym___attribute__] = ACTIONS(5633), + [anon_sym___attribute] = ACTIONS(5633), + [anon_sym_using] = ACTIONS(5633), + [anon_sym_COLON_COLON] = ACTIONS(5635), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5635), + [anon_sym___declspec] = ACTIONS(5633), + [anon_sym___based] = ACTIONS(5633), + [anon_sym_RBRACE] = ACTIONS(5635), + [anon_sym_signed] = ACTIONS(5633), + [anon_sym_unsigned] = ACTIONS(5633), + [anon_sym_long] = ACTIONS(5633), + [anon_sym_short] = ACTIONS(5633), + [anon_sym_LBRACK] = ACTIONS(5633), + [anon_sym_static] = ACTIONS(5633), + [anon_sym_register] = ACTIONS(5633), + [anon_sym_inline] = ACTIONS(5633), + [anon_sym___inline] = ACTIONS(5633), + [anon_sym___inline__] = ACTIONS(5633), + [anon_sym___forceinline] = ACTIONS(5633), + [anon_sym_thread_local] = ACTIONS(5633), + [anon_sym___thread] = ACTIONS(5633), + [anon_sym_const] = ACTIONS(5633), + [anon_sym_constexpr] = ACTIONS(5633), + [anon_sym_volatile] = ACTIONS(5633), + [anon_sym_restrict] = ACTIONS(5633), + [anon_sym___restrict__] = ACTIONS(5633), + [anon_sym__Atomic] = ACTIONS(5633), + [anon_sym__Noreturn] = ACTIONS(5633), + [anon_sym_noreturn] = ACTIONS(5633), + [anon_sym__Nonnull] = ACTIONS(5633), + [anon_sym_mutable] = ACTIONS(5633), + [anon_sym_constinit] = ACTIONS(5633), + [anon_sym_consteval] = ACTIONS(5633), + [anon_sym_alignas] = ACTIONS(5633), + [anon_sym__Alignas] = ACTIONS(5633), + [sym_primitive_type] = ACTIONS(5633), + [anon_sym_enum] = ACTIONS(5633), + [anon_sym_class] = ACTIONS(5633), + [anon_sym_struct] = ACTIONS(5633), + [anon_sym_union] = ACTIONS(5633), [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5633), + [anon_sym_decltype] = ACTIONS(5633), + [anon_sym_explicit] = ACTIONS(5633), + [anon_sym_typename] = ACTIONS(5633), + [anon_sym_private] = ACTIONS(5633), + [anon_sym_template] = ACTIONS(5633), + [anon_sym_operator] = ACTIONS(5633), + [anon_sym_friend] = ACTIONS(5633), + [anon_sym_public] = ACTIONS(5633), + [anon_sym_protected] = ACTIONS(5633), + [anon_sym_static_assert] = ACTIONS(5633), }, - [2170] = { - [sym_type_qualifier] = STATE(2180), - [sym_alignas_qualifier] = STATE(2229), - [aux_sym__type_definition_type_repeat1] = STATE(2180), - [aux_sym_sized_type_specifier_repeat1] = STATE(2383), - [sym_identifier] = ACTIONS(6048), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5086), - [anon_sym_COMMA] = ACTIONS(5086), - [anon_sym_LPAREN2] = ACTIONS(5086), - [anon_sym_DASH] = ACTIONS(5088), - [anon_sym_PLUS] = ACTIONS(5088), - [anon_sym_STAR] = ACTIONS(5086), - [anon_sym_SLASH] = ACTIONS(5088), - [anon_sym_PERCENT] = ACTIONS(5086), - [anon_sym_PIPE_PIPE] = ACTIONS(5086), - [anon_sym_AMP_AMP] = ACTIONS(5086), - [anon_sym_PIPE] = ACTIONS(5088), - [anon_sym_CARET] = ACTIONS(5086), - [anon_sym_AMP] = ACTIONS(5088), - [anon_sym_EQ_EQ] = ACTIONS(5086), - [anon_sym_BANG_EQ] = ACTIONS(5086), - [anon_sym_GT] = ACTIONS(5088), - [anon_sym_GT_EQ] = ACTIONS(5088), - [anon_sym_LT_EQ] = ACTIONS(5088), - [anon_sym_LT] = ACTIONS(5088), - [anon_sym_LT_LT] = ACTIONS(5086), - [anon_sym_GT_GT] = ACTIONS(5088), - [anon_sym___extension__] = ACTIONS(6050), - [anon_sym___attribute__] = ACTIONS(5088), - [anon_sym___attribute] = ACTIONS(5088), - [anon_sym_LBRACE] = ACTIONS(5086), - [anon_sym_signed] = ACTIONS(6052), - [anon_sym_unsigned] = ACTIONS(6052), - [anon_sym_long] = ACTIONS(6052), - [anon_sym_short] = ACTIONS(6052), - [anon_sym_LBRACK] = ACTIONS(5086), - [anon_sym_const] = ACTIONS(6050), - [anon_sym_constexpr] = ACTIONS(6050), - [anon_sym_volatile] = ACTIONS(6050), - [anon_sym_restrict] = ACTIONS(6050), - [anon_sym___restrict__] = ACTIONS(6050), - [anon_sym__Atomic] = ACTIONS(6050), - [anon_sym__Noreturn] = ACTIONS(6050), - [anon_sym_noreturn] = ACTIONS(6050), - [anon_sym__Nonnull] = ACTIONS(6050), - [anon_sym_mutable] = ACTIONS(6050), - [anon_sym_constinit] = ACTIONS(6050), - [anon_sym_consteval] = ACTIONS(6050), - [anon_sym_alignas] = ACTIONS(6054), - [anon_sym__Alignas] = ACTIONS(6054), - [sym_primitive_type] = ACTIONS(6056), - [anon_sym_QMARK] = ACTIONS(5086), - [anon_sym_LT_EQ_GT] = ACTIONS(5086), - [anon_sym_or] = ACTIONS(5088), - [anon_sym_and] = ACTIONS(5088), - [anon_sym_bitor] = ACTIONS(5088), - [anon_sym_xor] = ACTIONS(5088), - [anon_sym_bitand] = ACTIONS(5088), - [anon_sym_not_eq] = ACTIONS(5088), - [anon_sym_DASH_DASH] = ACTIONS(5086), - [anon_sym_PLUS_PLUS] = ACTIONS(5086), - [anon_sym_DOT] = ACTIONS(5088), - [anon_sym_DOT_STAR] = ACTIONS(5086), - [anon_sym_DASH_GT] = ACTIONS(5086), + [2198] = { + [sym_identifier] = ACTIONS(2795), + [aux_sym_preproc_def_token1] = ACTIONS(2795), + [aux_sym_preproc_if_token1] = ACTIONS(2795), + [aux_sym_preproc_if_token2] = ACTIONS(2795), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2795), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2795), + [sym_preproc_directive] = ACTIONS(2795), + [anon_sym_LPAREN2] = ACTIONS(2797), + [anon_sym_TILDE] = ACTIONS(2797), + [anon_sym_STAR] = ACTIONS(2797), + [anon_sym_AMP_AMP] = ACTIONS(2797), + [anon_sym_AMP] = ACTIONS(2795), + [anon_sym_SEMI] = ACTIONS(2797), + [anon_sym___extension__] = ACTIONS(2795), + [anon_sym_typedef] = ACTIONS(2795), + [anon_sym_virtual] = ACTIONS(2795), + [anon_sym_extern] = ACTIONS(2795), + [anon_sym___attribute__] = ACTIONS(2795), + [anon_sym___attribute] = ACTIONS(2795), + [anon_sym_using] = ACTIONS(2795), + [anon_sym_COLON_COLON] = ACTIONS(2797), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2797), + [anon_sym___declspec] = ACTIONS(2795), + [anon_sym___based] = ACTIONS(2795), + [anon_sym_signed] = ACTIONS(2795), + [anon_sym_unsigned] = ACTIONS(2795), + [anon_sym_long] = ACTIONS(2795), + [anon_sym_short] = ACTIONS(2795), + [anon_sym_LBRACK] = ACTIONS(2795), + [anon_sym_static] = ACTIONS(2795), + [anon_sym_register] = ACTIONS(2795), + [anon_sym_inline] = ACTIONS(2795), + [anon_sym___inline] = ACTIONS(2795), + [anon_sym___inline__] = ACTIONS(2795), + [anon_sym___forceinline] = ACTIONS(2795), + [anon_sym_thread_local] = ACTIONS(2795), + [anon_sym___thread] = ACTIONS(2795), + [anon_sym_const] = ACTIONS(2795), + [anon_sym_constexpr] = ACTIONS(2795), + [anon_sym_volatile] = ACTIONS(2795), + [anon_sym_restrict] = ACTIONS(2795), + [anon_sym___restrict__] = ACTIONS(2795), + [anon_sym__Atomic] = ACTIONS(2795), + [anon_sym__Noreturn] = ACTIONS(2795), + [anon_sym_noreturn] = ACTIONS(2795), + [anon_sym__Nonnull] = ACTIONS(2795), + [anon_sym_mutable] = ACTIONS(2795), + [anon_sym_constinit] = ACTIONS(2795), + [anon_sym_consteval] = ACTIONS(2795), + [anon_sym_alignas] = ACTIONS(2795), + [anon_sym__Alignas] = ACTIONS(2795), + [sym_primitive_type] = ACTIONS(2795), + [anon_sym_enum] = ACTIONS(2795), + [anon_sym_class] = ACTIONS(2795), + [anon_sym_struct] = ACTIONS(2795), + [anon_sym_union] = ACTIONS(2795), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5088), - [anon_sym_decltype] = ACTIONS(5088), - [anon_sym_GT2] = ACTIONS(5086), + [sym_auto] = ACTIONS(2795), + [anon_sym_decltype] = ACTIONS(2795), + [anon_sym_explicit] = ACTIONS(2795), + [anon_sym_typename] = ACTIONS(2795), + [anon_sym_private] = ACTIONS(2795), + [anon_sym_template] = ACTIONS(2795), + [anon_sym_operator] = ACTIONS(2795), + [anon_sym_friend] = ACTIONS(2795), + [anon_sym_public] = ACTIONS(2795), + [anon_sym_protected] = ACTIONS(2795), + [anon_sym_static_assert] = ACTIONS(2795), }, - [2171] = { - [sym_string_literal] = STATE(2624), - [sym_template_argument_list] = STATE(3588), - [sym_raw_string_literal] = STATE(2624), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4146), - [anon_sym_COMMA] = ACTIONS(4146), - [anon_sym_LPAREN2] = ACTIONS(4146), - [anon_sym_DASH] = ACTIONS(4154), - [anon_sym_PLUS] = ACTIONS(4154), - [anon_sym_STAR] = ACTIONS(4154), - [anon_sym_SLASH] = ACTIONS(4154), - [anon_sym_PERCENT] = ACTIONS(4154), - [anon_sym_PIPE_PIPE] = ACTIONS(4146), - [anon_sym_AMP_AMP] = ACTIONS(4146), - [anon_sym_PIPE] = ACTIONS(4154), - [anon_sym_CARET] = ACTIONS(4154), - [anon_sym_AMP] = ACTIONS(4154), - [anon_sym_EQ_EQ] = ACTIONS(4146), - [anon_sym_BANG_EQ] = ACTIONS(4146), - [anon_sym_GT] = ACTIONS(4154), - [anon_sym_GT_EQ] = ACTIONS(4146), - [anon_sym_LT_EQ] = ACTIONS(4154), - [anon_sym_LT] = ACTIONS(5077), - [anon_sym_LT_LT] = ACTIONS(4154), - [anon_sym_GT_GT] = ACTIONS(4154), - [anon_sym_SEMI] = ACTIONS(4146), - [anon_sym_COLON] = ACTIONS(4415), - [anon_sym_COLON_COLON] = ACTIONS(4167), - [anon_sym_LBRACE] = ACTIONS(4172), - [anon_sym_LBRACK] = ACTIONS(4146), - [anon_sym_EQ] = ACTIONS(4180), - [anon_sym_QMARK] = ACTIONS(4146), - [anon_sym_STAR_EQ] = ACTIONS(4182), - [anon_sym_SLASH_EQ] = ACTIONS(4182), - [anon_sym_PERCENT_EQ] = ACTIONS(4182), - [anon_sym_PLUS_EQ] = ACTIONS(4182), - [anon_sym_DASH_EQ] = ACTIONS(4182), - [anon_sym_LT_LT_EQ] = ACTIONS(4182), - [anon_sym_GT_GT_EQ] = ACTIONS(4182), - [anon_sym_AMP_EQ] = ACTIONS(4182), - [anon_sym_CARET_EQ] = ACTIONS(4182), - [anon_sym_PIPE_EQ] = ACTIONS(4182), - [anon_sym_and_eq] = ACTIONS(4182), - [anon_sym_or_eq] = ACTIONS(4182), - [anon_sym_xor_eq] = ACTIONS(4182), - [anon_sym_LT_EQ_GT] = ACTIONS(4146), - [anon_sym_or] = ACTIONS(4154), - [anon_sym_and] = ACTIONS(4154), - [anon_sym_bitor] = ACTIONS(4146), - [anon_sym_xor] = ACTIONS(4154), - [anon_sym_bitand] = ACTIONS(4146), - [anon_sym_not_eq] = ACTIONS(4146), - [anon_sym_DASH_DASH] = ACTIONS(4146), - [anon_sym_PLUS_PLUS] = ACTIONS(4146), - [anon_sym_DOT] = ACTIONS(4154), - [anon_sym_DOT_STAR] = ACTIONS(4146), - [anon_sym_DASH_GT] = ACTIONS(4146), - [anon_sym_L_DQUOTE] = ACTIONS(3623), - [anon_sym_u_DQUOTE] = ACTIONS(3623), - [anon_sym_U_DQUOTE] = ACTIONS(3623), - [anon_sym_u8_DQUOTE] = ACTIONS(3623), - [anon_sym_DQUOTE] = ACTIONS(3623), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(3627), - [anon_sym_LR_DQUOTE] = ACTIONS(3627), - [anon_sym_uR_DQUOTE] = ACTIONS(3627), - [anon_sym_UR_DQUOTE] = ACTIONS(3627), - [anon_sym_u8R_DQUOTE] = ACTIONS(3627), + [2199] = { + [sym_identifier] = ACTIONS(2943), + [aux_sym_preproc_def_token1] = ACTIONS(2943), + [aux_sym_preproc_if_token1] = ACTIONS(2943), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2943), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2943), + [sym_preproc_directive] = ACTIONS(2943), + [anon_sym_LPAREN2] = ACTIONS(2945), + [anon_sym_TILDE] = ACTIONS(2945), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_AMP_AMP] = ACTIONS(2945), + [anon_sym_AMP] = ACTIONS(2943), + [anon_sym_SEMI] = ACTIONS(2945), + [anon_sym___extension__] = ACTIONS(2943), + [anon_sym_typedef] = ACTIONS(2943), + [anon_sym_virtual] = ACTIONS(2943), + [anon_sym_extern] = ACTIONS(2943), + [anon_sym___attribute__] = ACTIONS(2943), + [anon_sym___attribute] = ACTIONS(2943), + [anon_sym_using] = ACTIONS(2943), + [anon_sym_COLON_COLON] = ACTIONS(2945), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2945), + [anon_sym___declspec] = ACTIONS(2943), + [anon_sym___based] = ACTIONS(2943), + [anon_sym_RBRACE] = ACTIONS(2945), + [anon_sym_signed] = ACTIONS(2943), + [anon_sym_unsigned] = ACTIONS(2943), + [anon_sym_long] = ACTIONS(2943), + [anon_sym_short] = ACTIONS(2943), + [anon_sym_LBRACK] = ACTIONS(2943), + [anon_sym_static] = ACTIONS(2943), + [anon_sym_register] = ACTIONS(2943), + [anon_sym_inline] = ACTIONS(2943), + [anon_sym___inline] = ACTIONS(2943), + [anon_sym___inline__] = ACTIONS(2943), + [anon_sym___forceinline] = ACTIONS(2943), + [anon_sym_thread_local] = ACTIONS(2943), + [anon_sym___thread] = ACTIONS(2943), + [anon_sym_const] = ACTIONS(2943), + [anon_sym_constexpr] = ACTIONS(2943), + [anon_sym_volatile] = ACTIONS(2943), + [anon_sym_restrict] = ACTIONS(2943), + [anon_sym___restrict__] = ACTIONS(2943), + [anon_sym__Atomic] = ACTIONS(2943), + [anon_sym__Noreturn] = ACTIONS(2943), + [anon_sym_noreturn] = ACTIONS(2943), + [anon_sym__Nonnull] = ACTIONS(2943), + [anon_sym_mutable] = ACTIONS(2943), + [anon_sym_constinit] = ACTIONS(2943), + [anon_sym_consteval] = ACTIONS(2943), + [anon_sym_alignas] = ACTIONS(2943), + [anon_sym__Alignas] = ACTIONS(2943), + [sym_primitive_type] = ACTIONS(2943), + [anon_sym_enum] = ACTIONS(2943), + [anon_sym_class] = ACTIONS(2943), + [anon_sym_struct] = ACTIONS(2943), + [anon_sym_union] = ACTIONS(2943), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2943), + [anon_sym_decltype] = ACTIONS(2943), + [anon_sym_explicit] = ACTIONS(2943), + [anon_sym_typename] = ACTIONS(2943), + [anon_sym_private] = ACTIONS(2943), + [anon_sym_template] = ACTIONS(2943), + [anon_sym_operator] = ACTIONS(2943), + [anon_sym_friend] = ACTIONS(2943), + [anon_sym_public] = ACTIONS(2943), + [anon_sym_protected] = ACTIONS(2943), + [anon_sym_static_assert] = ACTIONS(2943), }, - [2172] = { - [sym_decltype_auto] = STATE(2253), - [sym_identifier] = ACTIONS(5589), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5591), - [anon_sym_COMMA] = ACTIONS(5591), - [anon_sym_RPAREN] = ACTIONS(5591), - [aux_sym_preproc_if_token2] = ACTIONS(5591), - [aux_sym_preproc_else_token1] = ACTIONS(5591), - [aux_sym_preproc_elif_token1] = ACTIONS(5589), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5591), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5591), - [anon_sym_LPAREN2] = ACTIONS(5591), - [anon_sym_DASH] = ACTIONS(5589), - [anon_sym_PLUS] = ACTIONS(5589), - [anon_sym_STAR] = ACTIONS(5589), - [anon_sym_SLASH] = ACTIONS(5589), - [anon_sym_PERCENT] = ACTIONS(5589), - [anon_sym_PIPE_PIPE] = ACTIONS(5591), - [anon_sym_AMP_AMP] = ACTIONS(5591), - [anon_sym_PIPE] = ACTIONS(5589), - [anon_sym_CARET] = ACTIONS(5589), - [anon_sym_AMP] = ACTIONS(5589), - [anon_sym_EQ_EQ] = ACTIONS(5591), - [anon_sym_BANG_EQ] = ACTIONS(5591), - [anon_sym_GT] = ACTIONS(5589), - [anon_sym_GT_EQ] = ACTIONS(5591), - [anon_sym_LT_EQ] = ACTIONS(5589), - [anon_sym_LT] = ACTIONS(5589), - [anon_sym_LT_LT] = ACTIONS(5589), - [anon_sym_GT_GT] = ACTIONS(5589), - [anon_sym_SEMI] = ACTIONS(5591), - [anon_sym___attribute__] = ACTIONS(5589), - [anon_sym___attribute] = ACTIONS(5589), - [anon_sym_COLON] = ACTIONS(5591), - [anon_sym_LBRACE] = ACTIONS(5591), - [anon_sym_RBRACE] = ACTIONS(5591), - [anon_sym_LBRACK] = ACTIONS(5591), - [anon_sym_RBRACK] = ACTIONS(5591), - [anon_sym_EQ] = ACTIONS(5589), - [anon_sym_QMARK] = ACTIONS(5591), - [anon_sym_STAR_EQ] = ACTIONS(5591), - [anon_sym_SLASH_EQ] = ACTIONS(5591), - [anon_sym_PERCENT_EQ] = ACTIONS(5591), - [anon_sym_PLUS_EQ] = ACTIONS(5591), - [anon_sym_DASH_EQ] = ACTIONS(5591), - [anon_sym_LT_LT_EQ] = ACTIONS(5591), - [anon_sym_GT_GT_EQ] = ACTIONS(5591), - [anon_sym_AMP_EQ] = ACTIONS(5591), - [anon_sym_CARET_EQ] = ACTIONS(5591), - [anon_sym_PIPE_EQ] = ACTIONS(5591), - [anon_sym_and_eq] = ACTIONS(5589), - [anon_sym_or_eq] = ACTIONS(5589), - [anon_sym_xor_eq] = ACTIONS(5589), - [anon_sym_LT_EQ_GT] = ACTIONS(5591), - [anon_sym_or] = ACTIONS(5589), - [anon_sym_and] = ACTIONS(5589), - [anon_sym_bitor] = ACTIONS(5589), - [anon_sym_xor] = ACTIONS(5589), - [anon_sym_bitand] = ACTIONS(5589), - [anon_sym_not_eq] = ACTIONS(5589), - [anon_sym_DASH_DASH] = ACTIONS(5591), - [anon_sym_PLUS_PLUS] = ACTIONS(5591), - [anon_sym_DOT] = ACTIONS(5589), - [anon_sym_DOT_STAR] = ACTIONS(5591), - [anon_sym_DASH_GT] = ACTIONS(5591), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5831), - [anon_sym_decltype] = ACTIONS(5833), + [2200] = { + [sym_identifier] = ACTIONS(2947), + [aux_sym_preproc_def_token1] = ACTIONS(2947), + [aux_sym_preproc_if_token1] = ACTIONS(2947), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2947), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2947), + [sym_preproc_directive] = ACTIONS(2947), + [anon_sym_LPAREN2] = ACTIONS(2949), + [anon_sym_TILDE] = ACTIONS(2949), + [anon_sym_STAR] = ACTIONS(2949), + [anon_sym_AMP_AMP] = ACTIONS(2949), + [anon_sym_AMP] = ACTIONS(2947), + [anon_sym_SEMI] = ACTIONS(2949), + [anon_sym___extension__] = ACTIONS(2947), + [anon_sym_typedef] = ACTIONS(2947), + [anon_sym_virtual] = ACTIONS(2947), + [anon_sym_extern] = ACTIONS(2947), + [anon_sym___attribute__] = ACTIONS(2947), + [anon_sym___attribute] = ACTIONS(2947), + [anon_sym_using] = ACTIONS(2947), + [anon_sym_COLON_COLON] = ACTIONS(2949), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2949), + [anon_sym___declspec] = ACTIONS(2947), + [anon_sym___based] = ACTIONS(2947), + [anon_sym_RBRACE] = ACTIONS(2949), + [anon_sym_signed] = ACTIONS(2947), + [anon_sym_unsigned] = ACTIONS(2947), + [anon_sym_long] = ACTIONS(2947), + [anon_sym_short] = ACTIONS(2947), + [anon_sym_LBRACK] = ACTIONS(2947), + [anon_sym_static] = ACTIONS(2947), + [anon_sym_register] = ACTIONS(2947), + [anon_sym_inline] = ACTIONS(2947), + [anon_sym___inline] = ACTIONS(2947), + [anon_sym___inline__] = ACTIONS(2947), + [anon_sym___forceinline] = ACTIONS(2947), + [anon_sym_thread_local] = ACTIONS(2947), + [anon_sym___thread] = ACTIONS(2947), + [anon_sym_const] = ACTIONS(2947), + [anon_sym_constexpr] = ACTIONS(2947), + [anon_sym_volatile] = ACTIONS(2947), + [anon_sym_restrict] = ACTIONS(2947), + [anon_sym___restrict__] = ACTIONS(2947), + [anon_sym__Atomic] = ACTIONS(2947), + [anon_sym__Noreturn] = ACTIONS(2947), + [anon_sym_noreturn] = ACTIONS(2947), + [anon_sym__Nonnull] = ACTIONS(2947), + [anon_sym_mutable] = ACTIONS(2947), + [anon_sym_constinit] = ACTIONS(2947), + [anon_sym_consteval] = ACTIONS(2947), + [anon_sym_alignas] = ACTIONS(2947), + [anon_sym__Alignas] = ACTIONS(2947), + [sym_primitive_type] = ACTIONS(2947), + [anon_sym_enum] = ACTIONS(2947), + [anon_sym_class] = ACTIONS(2947), + [anon_sym_struct] = ACTIONS(2947), + [anon_sym_union] = ACTIONS(2947), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2947), + [anon_sym_decltype] = ACTIONS(2947), + [anon_sym_explicit] = ACTIONS(2947), + [anon_sym_typename] = ACTIONS(2947), + [anon_sym_private] = ACTIONS(2947), + [anon_sym_template] = ACTIONS(2947), + [anon_sym_operator] = ACTIONS(2947), + [anon_sym_friend] = ACTIONS(2947), + [anon_sym_public] = ACTIONS(2947), + [anon_sym_protected] = ACTIONS(2947), + [anon_sym_static_assert] = ACTIONS(2947), }, - [2173] = { - [sym_attribute_specifier] = STATE(2289), - [sym_identifier] = ACTIONS(6058), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6060), - [anon_sym_COMMA] = ACTIONS(6060), - [anon_sym_RPAREN] = ACTIONS(6060), - [aux_sym_preproc_if_token2] = ACTIONS(6060), - [aux_sym_preproc_else_token1] = ACTIONS(6060), - [aux_sym_preproc_elif_token1] = ACTIONS(6058), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6060), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6060), - [anon_sym_LPAREN2] = ACTIONS(6060), - [anon_sym_DASH] = ACTIONS(6058), - [anon_sym_PLUS] = ACTIONS(6058), - [anon_sym_STAR] = ACTIONS(6058), - [anon_sym_SLASH] = ACTIONS(6058), - [anon_sym_PERCENT] = ACTIONS(6058), - [anon_sym_PIPE_PIPE] = ACTIONS(6060), - [anon_sym_AMP_AMP] = ACTIONS(6060), - [anon_sym_PIPE] = ACTIONS(6058), - [anon_sym_CARET] = ACTIONS(6058), - [anon_sym_AMP] = ACTIONS(6058), - [anon_sym_EQ_EQ] = ACTIONS(6060), - [anon_sym_BANG_EQ] = ACTIONS(6060), - [anon_sym_GT] = ACTIONS(6058), - [anon_sym_GT_EQ] = ACTIONS(6060), - [anon_sym_LT_EQ] = ACTIONS(6058), - [anon_sym_LT] = ACTIONS(6058), - [anon_sym_LT_LT] = ACTIONS(6058), - [anon_sym_GT_GT] = ACTIONS(6058), - [anon_sym_SEMI] = ACTIONS(6060), - [anon_sym___attribute__] = ACTIONS(5497), - [anon_sym___attribute] = ACTIONS(5497), - [anon_sym_COLON] = ACTIONS(6060), - [anon_sym_LBRACE] = ACTIONS(6060), - [anon_sym_RBRACE] = ACTIONS(6060), - [anon_sym_LBRACK] = ACTIONS(6060), - [anon_sym_RBRACK] = ACTIONS(6060), - [anon_sym_EQ] = ACTIONS(6058), - [anon_sym_QMARK] = ACTIONS(6060), - [anon_sym_STAR_EQ] = ACTIONS(6060), - [anon_sym_SLASH_EQ] = ACTIONS(6060), - [anon_sym_PERCENT_EQ] = ACTIONS(6060), - [anon_sym_PLUS_EQ] = ACTIONS(6060), - [anon_sym_DASH_EQ] = ACTIONS(6060), - [anon_sym_LT_LT_EQ] = ACTIONS(6060), - [anon_sym_GT_GT_EQ] = ACTIONS(6060), - [anon_sym_AMP_EQ] = ACTIONS(6060), - [anon_sym_CARET_EQ] = ACTIONS(6060), - [anon_sym_PIPE_EQ] = ACTIONS(6060), - [anon_sym_and_eq] = ACTIONS(6058), - [anon_sym_or_eq] = ACTIONS(6058), - [anon_sym_xor_eq] = ACTIONS(6058), - [anon_sym_LT_EQ_GT] = ACTIONS(6060), - [anon_sym_or] = ACTIONS(6058), - [anon_sym_and] = ACTIONS(6058), - [anon_sym_bitor] = ACTIONS(6058), - [anon_sym_xor] = ACTIONS(6058), - [anon_sym_bitand] = ACTIONS(6058), - [anon_sym_not_eq] = ACTIONS(6058), - [anon_sym_DASH_DASH] = ACTIONS(6060), - [anon_sym_PLUS_PLUS] = ACTIONS(6060), - [anon_sym_DOT] = ACTIONS(6058), - [anon_sym_DOT_STAR] = ACTIONS(6060), - [anon_sym_DASH_GT] = ACTIONS(6060), + [2201] = { + [sym_identifier] = ACTIONS(2951), + [aux_sym_preproc_def_token1] = ACTIONS(2951), + [aux_sym_preproc_if_token1] = ACTIONS(2951), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2951), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2951), + [sym_preproc_directive] = ACTIONS(2951), + [anon_sym_LPAREN2] = ACTIONS(2953), + [anon_sym_TILDE] = ACTIONS(2953), + [anon_sym_STAR] = ACTIONS(2953), + [anon_sym_AMP_AMP] = ACTIONS(2953), + [anon_sym_AMP] = ACTIONS(2951), + [anon_sym_SEMI] = ACTIONS(2953), + [anon_sym___extension__] = ACTIONS(2951), + [anon_sym_typedef] = ACTIONS(2951), + [anon_sym_virtual] = ACTIONS(2951), + [anon_sym_extern] = ACTIONS(2951), + [anon_sym___attribute__] = ACTIONS(2951), + [anon_sym___attribute] = ACTIONS(2951), + [anon_sym_using] = ACTIONS(2951), + [anon_sym_COLON_COLON] = ACTIONS(2953), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2953), + [anon_sym___declspec] = ACTIONS(2951), + [anon_sym___based] = ACTIONS(2951), + [anon_sym_RBRACE] = ACTIONS(2953), + [anon_sym_signed] = ACTIONS(2951), + [anon_sym_unsigned] = ACTIONS(2951), + [anon_sym_long] = ACTIONS(2951), + [anon_sym_short] = ACTIONS(2951), + [anon_sym_LBRACK] = ACTIONS(2951), + [anon_sym_static] = ACTIONS(2951), + [anon_sym_register] = ACTIONS(2951), + [anon_sym_inline] = ACTIONS(2951), + [anon_sym___inline] = ACTIONS(2951), + [anon_sym___inline__] = ACTIONS(2951), + [anon_sym___forceinline] = ACTIONS(2951), + [anon_sym_thread_local] = ACTIONS(2951), + [anon_sym___thread] = ACTIONS(2951), + [anon_sym_const] = ACTIONS(2951), + [anon_sym_constexpr] = ACTIONS(2951), + [anon_sym_volatile] = ACTIONS(2951), + [anon_sym_restrict] = ACTIONS(2951), + [anon_sym___restrict__] = ACTIONS(2951), + [anon_sym__Atomic] = ACTIONS(2951), + [anon_sym__Noreturn] = ACTIONS(2951), + [anon_sym_noreturn] = ACTIONS(2951), + [anon_sym__Nonnull] = ACTIONS(2951), + [anon_sym_mutable] = ACTIONS(2951), + [anon_sym_constinit] = ACTIONS(2951), + [anon_sym_consteval] = ACTIONS(2951), + [anon_sym_alignas] = ACTIONS(2951), + [anon_sym__Alignas] = ACTIONS(2951), + [sym_primitive_type] = ACTIONS(2951), + [anon_sym_enum] = ACTIONS(2951), + [anon_sym_class] = ACTIONS(2951), + [anon_sym_struct] = ACTIONS(2951), + [anon_sym_union] = ACTIONS(2951), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6058), - [anon_sym_decltype] = ACTIONS(6058), + [sym_auto] = ACTIONS(2951), + [anon_sym_decltype] = ACTIONS(2951), + [anon_sym_explicit] = ACTIONS(2951), + [anon_sym_typename] = ACTIONS(2951), + [anon_sym_private] = ACTIONS(2951), + [anon_sym_template] = ACTIONS(2951), + [anon_sym_operator] = ACTIONS(2951), + [anon_sym_friend] = ACTIONS(2951), + [anon_sym_public] = ACTIONS(2951), + [anon_sym_protected] = ACTIONS(2951), + [anon_sym_static_assert] = ACTIONS(2951), }, - [2174] = { - [sym_identifier] = ACTIONS(5450), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5452), - [anon_sym_COMMA] = ACTIONS(5452), - [anon_sym_RPAREN] = ACTIONS(5452), - [aux_sym_preproc_if_token2] = ACTIONS(5452), - [aux_sym_preproc_else_token1] = ACTIONS(5452), - [aux_sym_preproc_elif_token1] = ACTIONS(5450), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5452), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5452), - [anon_sym_LPAREN2] = ACTIONS(5452), - [anon_sym_DASH] = ACTIONS(5450), - [anon_sym_PLUS] = ACTIONS(5450), - [anon_sym_STAR] = ACTIONS(5450), - [anon_sym_SLASH] = ACTIONS(5450), - [anon_sym_PERCENT] = ACTIONS(5450), - [anon_sym_PIPE_PIPE] = ACTIONS(5452), - [anon_sym_AMP_AMP] = ACTIONS(5452), - [anon_sym_PIPE] = ACTIONS(5450), - [anon_sym_CARET] = ACTIONS(5450), - [anon_sym_AMP] = ACTIONS(5450), - [anon_sym_EQ_EQ] = ACTIONS(5452), - [anon_sym_BANG_EQ] = ACTIONS(5452), - [anon_sym_GT] = ACTIONS(5450), - [anon_sym_GT_EQ] = ACTIONS(5452), - [anon_sym_LT_EQ] = ACTIONS(5450), - [anon_sym_LT] = ACTIONS(5450), - [anon_sym_LT_LT] = ACTIONS(5450), - [anon_sym_GT_GT] = ACTIONS(5450), - [anon_sym_SEMI] = ACTIONS(5452), - [anon_sym___attribute__] = ACTIONS(5450), - [anon_sym___attribute] = ACTIONS(5450), - [anon_sym_COLON] = ACTIONS(5450), - [anon_sym_COLON_COLON] = ACTIONS(5454), - [anon_sym_LBRACE] = ACTIONS(5452), - [anon_sym_RBRACE] = ACTIONS(5452), - [anon_sym_LBRACK] = ACTIONS(5452), - [anon_sym_RBRACK] = ACTIONS(5452), - [anon_sym_EQ] = ACTIONS(5450), - [anon_sym_QMARK] = ACTIONS(5452), - [anon_sym_STAR_EQ] = ACTIONS(5452), - [anon_sym_SLASH_EQ] = ACTIONS(5452), - [anon_sym_PERCENT_EQ] = ACTIONS(5452), - [anon_sym_PLUS_EQ] = ACTIONS(5452), - [anon_sym_DASH_EQ] = ACTIONS(5452), - [anon_sym_LT_LT_EQ] = ACTIONS(5452), - [anon_sym_GT_GT_EQ] = ACTIONS(5452), - [anon_sym_AMP_EQ] = ACTIONS(5452), - [anon_sym_CARET_EQ] = ACTIONS(5452), - [anon_sym_PIPE_EQ] = ACTIONS(5452), - [anon_sym_and_eq] = ACTIONS(5450), - [anon_sym_or_eq] = ACTIONS(5450), - [anon_sym_xor_eq] = ACTIONS(5450), - [anon_sym_LT_EQ_GT] = ACTIONS(5452), - [anon_sym_or] = ACTIONS(5450), - [anon_sym_and] = ACTIONS(5450), - [anon_sym_bitor] = ACTIONS(5450), - [anon_sym_xor] = ACTIONS(5450), - [anon_sym_bitand] = ACTIONS(5450), - [anon_sym_not_eq] = ACTIONS(5450), - [anon_sym_DASH_DASH] = ACTIONS(5452), - [anon_sym_PLUS_PLUS] = ACTIONS(5452), - [anon_sym_DOT] = ACTIONS(5450), - [anon_sym_DOT_STAR] = ACTIONS(5452), - [anon_sym_DASH_GT] = ACTIONS(5452), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5450), - [anon_sym_decltype] = ACTIONS(5450), + [2202] = { + [sym_template_argument_list] = STATE(1623), + [sym_identifier] = ACTIONS(5834), + [anon_sym_LPAREN2] = ACTIONS(4192), + [anon_sym_TILDE] = ACTIONS(4192), + [anon_sym_STAR] = ACTIONS(4192), + [anon_sym_PIPE_PIPE] = ACTIONS(4192), + [anon_sym_AMP_AMP] = ACTIONS(4192), + [anon_sym_AMP] = ACTIONS(5834), + [anon_sym_LT] = ACTIONS(6064), + [anon_sym___extension__] = ACTIONS(5834), + [anon_sym_virtual] = ACTIONS(5834), + [anon_sym_extern] = ACTIONS(5834), + [anon_sym___attribute__] = ACTIONS(5834), + [anon_sym___attribute] = ACTIONS(5834), + [anon_sym_using] = ACTIONS(5834), + [anon_sym_COLON_COLON] = ACTIONS(4187), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4192), + [anon_sym___declspec] = ACTIONS(5834), + [anon_sym___based] = ACTIONS(5834), + [anon_sym___cdecl] = ACTIONS(5834), + [anon_sym___clrcall] = ACTIONS(5834), + [anon_sym___stdcall] = ACTIONS(5834), + [anon_sym___fastcall] = ACTIONS(5834), + [anon_sym___thiscall] = ACTIONS(5834), + [anon_sym___vectorcall] = ACTIONS(5834), + [anon_sym_signed] = ACTIONS(5834), + [anon_sym_unsigned] = ACTIONS(5834), + [anon_sym_long] = ACTIONS(5834), + [anon_sym_short] = ACTIONS(5834), + [anon_sym_LBRACK] = ACTIONS(5834), + [anon_sym_static] = ACTIONS(5834), + [anon_sym_register] = ACTIONS(5834), + [anon_sym_inline] = ACTIONS(5834), + [anon_sym___inline] = ACTIONS(5834), + [anon_sym___inline__] = ACTIONS(5834), + [anon_sym___forceinline] = ACTIONS(5834), + [anon_sym_thread_local] = ACTIONS(5834), + [anon_sym___thread] = ACTIONS(5834), + [anon_sym_const] = ACTIONS(5834), + [anon_sym_constexpr] = ACTIONS(5834), + [anon_sym_volatile] = ACTIONS(5834), + [anon_sym_restrict] = ACTIONS(5834), + [anon_sym___restrict__] = ACTIONS(5834), + [anon_sym__Atomic] = ACTIONS(5834), + [anon_sym__Noreturn] = ACTIONS(5834), + [anon_sym_noreturn] = ACTIONS(5834), + [anon_sym__Nonnull] = ACTIONS(5834), + [anon_sym_mutable] = ACTIONS(5834), + [anon_sym_constinit] = ACTIONS(5834), + [anon_sym_consteval] = ACTIONS(5834), + [anon_sym_alignas] = ACTIONS(5834), + [anon_sym__Alignas] = ACTIONS(5834), + [sym_primitive_type] = ACTIONS(5834), + [anon_sym_enum] = ACTIONS(5834), + [anon_sym_class] = ACTIONS(5834), + [anon_sym_struct] = ACTIONS(5834), + [anon_sym_union] = ACTIONS(5834), + [anon_sym_or] = ACTIONS(5834), + [anon_sym_and] = ACTIONS(5834), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5834), + [anon_sym_decltype] = ACTIONS(5834), + [anon_sym_explicit] = ACTIONS(5834), + [anon_sym_typename] = ACTIONS(5834), + [anon_sym_template] = ACTIONS(5834), + [anon_sym_operator] = ACTIONS(5834), + [anon_sym_friend] = ACTIONS(5834), + [anon_sym_concept] = ACTIONS(5834), }, - [2175] = { - [sym_attribute_specifier] = STATE(2225), - [sym_identifier] = ACTIONS(6062), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6064), - [anon_sym_COMMA] = ACTIONS(6064), - [anon_sym_RPAREN] = ACTIONS(6064), - [aux_sym_preproc_if_token2] = ACTIONS(6064), - [aux_sym_preproc_else_token1] = ACTIONS(6064), - [aux_sym_preproc_elif_token1] = ACTIONS(6062), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6064), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6064), - [anon_sym_LPAREN2] = ACTIONS(6064), - [anon_sym_DASH] = ACTIONS(6062), - [anon_sym_PLUS] = ACTIONS(6062), - [anon_sym_STAR] = ACTIONS(6062), - [anon_sym_SLASH] = ACTIONS(6062), - [anon_sym_PERCENT] = ACTIONS(6062), - [anon_sym_PIPE_PIPE] = ACTIONS(6064), - [anon_sym_AMP_AMP] = ACTIONS(6064), - [anon_sym_PIPE] = ACTIONS(6062), - [anon_sym_CARET] = ACTIONS(6062), - [anon_sym_AMP] = ACTIONS(6062), - [anon_sym_EQ_EQ] = ACTIONS(6064), - [anon_sym_BANG_EQ] = ACTIONS(6064), - [anon_sym_GT] = ACTIONS(6062), - [anon_sym_GT_EQ] = ACTIONS(6064), - [anon_sym_LT_EQ] = ACTIONS(6062), - [anon_sym_LT] = ACTIONS(6062), - [anon_sym_LT_LT] = ACTIONS(6062), - [anon_sym_GT_GT] = ACTIONS(6062), - [anon_sym_SEMI] = ACTIONS(6064), - [anon_sym___attribute__] = ACTIONS(5497), - [anon_sym___attribute] = ACTIONS(5497), - [anon_sym_COLON] = ACTIONS(6064), - [anon_sym_LBRACE] = ACTIONS(6064), - [anon_sym_RBRACE] = ACTIONS(6064), - [anon_sym_LBRACK] = ACTIONS(6064), - [anon_sym_RBRACK] = ACTIONS(6064), - [anon_sym_EQ] = ACTIONS(6062), - [anon_sym_QMARK] = ACTIONS(6064), - [anon_sym_STAR_EQ] = ACTIONS(6064), - [anon_sym_SLASH_EQ] = ACTIONS(6064), - [anon_sym_PERCENT_EQ] = ACTIONS(6064), - [anon_sym_PLUS_EQ] = ACTIONS(6064), - [anon_sym_DASH_EQ] = ACTIONS(6064), - [anon_sym_LT_LT_EQ] = ACTIONS(6064), - [anon_sym_GT_GT_EQ] = ACTIONS(6064), - [anon_sym_AMP_EQ] = ACTIONS(6064), - [anon_sym_CARET_EQ] = ACTIONS(6064), - [anon_sym_PIPE_EQ] = ACTIONS(6064), - [anon_sym_and_eq] = ACTIONS(6062), - [anon_sym_or_eq] = ACTIONS(6062), - [anon_sym_xor_eq] = ACTIONS(6062), - [anon_sym_LT_EQ_GT] = ACTIONS(6064), - [anon_sym_or] = ACTIONS(6062), - [anon_sym_and] = ACTIONS(6062), - [anon_sym_bitor] = ACTIONS(6062), - [anon_sym_xor] = ACTIONS(6062), - [anon_sym_bitand] = ACTIONS(6062), - [anon_sym_not_eq] = ACTIONS(6062), - [anon_sym_DASH_DASH] = ACTIONS(6064), - [anon_sym_PLUS_PLUS] = ACTIONS(6064), - [anon_sym_DOT] = ACTIONS(6062), - [anon_sym_DOT_STAR] = ACTIONS(6064), - [anon_sym_DASH_GT] = ACTIONS(6064), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6062), - [anon_sym_decltype] = ACTIONS(6062), + [2203] = { + [sym_identifier] = ACTIONS(2759), + [aux_sym_preproc_def_token1] = ACTIONS(2759), + [aux_sym_preproc_if_token1] = ACTIONS(2759), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2759), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2759), + [sym_preproc_directive] = ACTIONS(2759), + [anon_sym_LPAREN2] = ACTIONS(2761), + [anon_sym_TILDE] = ACTIONS(2761), + [anon_sym_STAR] = ACTIONS(2761), + [anon_sym_AMP_AMP] = ACTIONS(2761), + [anon_sym_AMP] = ACTIONS(2759), + [anon_sym_SEMI] = ACTIONS(2761), + [anon_sym___extension__] = ACTIONS(2759), + [anon_sym_typedef] = ACTIONS(2759), + [anon_sym_virtual] = ACTIONS(2759), + [anon_sym_extern] = ACTIONS(2759), + [anon_sym___attribute__] = ACTIONS(2759), + [anon_sym___attribute] = ACTIONS(2759), + [anon_sym_using] = ACTIONS(2759), + [anon_sym_COLON_COLON] = ACTIONS(2761), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2761), + [anon_sym___declspec] = ACTIONS(2759), + [anon_sym___based] = ACTIONS(2759), + [anon_sym_RBRACE] = ACTIONS(2761), + [anon_sym_signed] = ACTIONS(2759), + [anon_sym_unsigned] = ACTIONS(2759), + [anon_sym_long] = ACTIONS(2759), + [anon_sym_short] = ACTIONS(2759), + [anon_sym_LBRACK] = ACTIONS(2759), + [anon_sym_static] = ACTIONS(2759), + [anon_sym_register] = ACTIONS(2759), + [anon_sym_inline] = ACTIONS(2759), + [anon_sym___inline] = ACTIONS(2759), + [anon_sym___inline__] = ACTIONS(2759), + [anon_sym___forceinline] = ACTIONS(2759), + [anon_sym_thread_local] = ACTIONS(2759), + [anon_sym___thread] = ACTIONS(2759), + [anon_sym_const] = ACTIONS(2759), + [anon_sym_constexpr] = ACTIONS(2759), + [anon_sym_volatile] = ACTIONS(2759), + [anon_sym_restrict] = ACTIONS(2759), + [anon_sym___restrict__] = ACTIONS(2759), + [anon_sym__Atomic] = ACTIONS(2759), + [anon_sym__Noreturn] = ACTIONS(2759), + [anon_sym_noreturn] = ACTIONS(2759), + [anon_sym__Nonnull] = ACTIONS(2759), + [anon_sym_mutable] = ACTIONS(2759), + [anon_sym_constinit] = ACTIONS(2759), + [anon_sym_consteval] = ACTIONS(2759), + [anon_sym_alignas] = ACTIONS(2759), + [anon_sym__Alignas] = ACTIONS(2759), + [sym_primitive_type] = ACTIONS(2759), + [anon_sym_enum] = ACTIONS(2759), + [anon_sym_class] = ACTIONS(2759), + [anon_sym_struct] = ACTIONS(2759), + [anon_sym_union] = ACTIONS(2759), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2759), + [anon_sym_decltype] = ACTIONS(2759), + [anon_sym_explicit] = ACTIONS(2759), + [anon_sym_typename] = ACTIONS(2759), + [anon_sym_private] = ACTIONS(2759), + [anon_sym_template] = ACTIONS(2759), + [anon_sym_operator] = ACTIONS(2759), + [anon_sym_friend] = ACTIONS(2759), + [anon_sym_public] = ACTIONS(2759), + [anon_sym_protected] = ACTIONS(2759), + [anon_sym_static_assert] = ACTIONS(2759), }, - [2176] = { - [sym_attribute_declaration] = STATE(2270), - [sym_parameter_list] = STATE(2298), - [aux_sym_attributed_declarator_repeat1] = STATE(2270), - [sym_identifier] = ACTIONS(6066), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6068), - [anon_sym_COMMA] = ACTIONS(6068), - [anon_sym_RPAREN] = ACTIONS(6068), - [aux_sym_preproc_if_token2] = ACTIONS(6068), - [aux_sym_preproc_else_token1] = ACTIONS(6068), - [aux_sym_preproc_elif_token1] = ACTIONS(6066), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6068), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6068), - [anon_sym_LPAREN2] = ACTIONS(6042), - [anon_sym_DASH] = ACTIONS(6066), - [anon_sym_PLUS] = ACTIONS(6066), - [anon_sym_STAR] = ACTIONS(6066), - [anon_sym_SLASH] = ACTIONS(6066), - [anon_sym_PERCENT] = ACTIONS(6066), - [anon_sym_PIPE_PIPE] = ACTIONS(6068), - [anon_sym_AMP_AMP] = ACTIONS(6068), - [anon_sym_PIPE] = ACTIONS(6066), - [anon_sym_CARET] = ACTIONS(6066), - [anon_sym_AMP] = ACTIONS(6066), - [anon_sym_EQ_EQ] = ACTIONS(6068), - [anon_sym_BANG_EQ] = ACTIONS(6068), - [anon_sym_GT] = ACTIONS(6066), - [anon_sym_GT_EQ] = ACTIONS(6068), - [anon_sym_LT_EQ] = ACTIONS(6066), - [anon_sym_LT] = ACTIONS(6066), - [anon_sym_LT_LT] = ACTIONS(6066), - [anon_sym_GT_GT] = ACTIONS(6066), - [anon_sym_SEMI] = ACTIONS(6068), - [anon_sym___attribute__] = ACTIONS(6066), - [anon_sym___attribute] = ACTIONS(6066), - [anon_sym_COLON] = ACTIONS(6068), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6044), - [anon_sym_RBRACE] = ACTIONS(6068), - [anon_sym_LBRACK] = ACTIONS(6046), - [anon_sym_RBRACK] = ACTIONS(6068), - [anon_sym_EQ] = ACTIONS(6066), - [anon_sym_QMARK] = ACTIONS(6068), - [anon_sym_STAR_EQ] = ACTIONS(6068), - [anon_sym_SLASH_EQ] = ACTIONS(6068), - [anon_sym_PERCENT_EQ] = ACTIONS(6068), - [anon_sym_PLUS_EQ] = ACTIONS(6068), - [anon_sym_DASH_EQ] = ACTIONS(6068), - [anon_sym_LT_LT_EQ] = ACTIONS(6068), - [anon_sym_GT_GT_EQ] = ACTIONS(6068), - [anon_sym_AMP_EQ] = ACTIONS(6068), - [anon_sym_CARET_EQ] = ACTIONS(6068), - [anon_sym_PIPE_EQ] = ACTIONS(6068), - [anon_sym_and_eq] = ACTIONS(6066), - [anon_sym_or_eq] = ACTIONS(6066), - [anon_sym_xor_eq] = ACTIONS(6066), - [anon_sym_LT_EQ_GT] = ACTIONS(6068), - [anon_sym_or] = ACTIONS(6066), - [anon_sym_and] = ACTIONS(6066), - [anon_sym_bitor] = ACTIONS(6066), - [anon_sym_xor] = ACTIONS(6066), - [anon_sym_bitand] = ACTIONS(6066), - [anon_sym_not_eq] = ACTIONS(6066), - [anon_sym_DASH_DASH] = ACTIONS(6068), - [anon_sym_PLUS_PLUS] = ACTIONS(6068), - [anon_sym_DOT] = ACTIONS(6066), - [anon_sym_DOT_STAR] = ACTIONS(6068), - [anon_sym_DASH_GT] = ACTIONS(6068), + [2204] = { + [sym_identifier] = ACTIONS(2771), + [aux_sym_preproc_def_token1] = ACTIONS(2771), + [aux_sym_preproc_if_token1] = ACTIONS(2771), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2771), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2771), + [sym_preproc_directive] = ACTIONS(2771), + [anon_sym_LPAREN2] = ACTIONS(2773), + [anon_sym_TILDE] = ACTIONS(2773), + [anon_sym_STAR] = ACTIONS(2773), + [anon_sym_AMP_AMP] = ACTIONS(2773), + [anon_sym_AMP] = ACTIONS(2771), + [anon_sym_SEMI] = ACTIONS(2773), + [anon_sym___extension__] = ACTIONS(2771), + [anon_sym_typedef] = ACTIONS(2771), + [anon_sym_virtual] = ACTIONS(2771), + [anon_sym_extern] = ACTIONS(2771), + [anon_sym___attribute__] = ACTIONS(2771), + [anon_sym___attribute] = ACTIONS(2771), + [anon_sym_using] = ACTIONS(2771), + [anon_sym_COLON_COLON] = ACTIONS(2773), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2773), + [anon_sym___declspec] = ACTIONS(2771), + [anon_sym___based] = ACTIONS(2771), + [anon_sym_RBRACE] = ACTIONS(2773), + [anon_sym_signed] = ACTIONS(2771), + [anon_sym_unsigned] = ACTIONS(2771), + [anon_sym_long] = ACTIONS(2771), + [anon_sym_short] = ACTIONS(2771), + [anon_sym_LBRACK] = ACTIONS(2771), + [anon_sym_static] = ACTIONS(2771), + [anon_sym_register] = ACTIONS(2771), + [anon_sym_inline] = ACTIONS(2771), + [anon_sym___inline] = ACTIONS(2771), + [anon_sym___inline__] = ACTIONS(2771), + [anon_sym___forceinline] = ACTIONS(2771), + [anon_sym_thread_local] = ACTIONS(2771), + [anon_sym___thread] = ACTIONS(2771), + [anon_sym_const] = ACTIONS(2771), + [anon_sym_constexpr] = ACTIONS(2771), + [anon_sym_volatile] = ACTIONS(2771), + [anon_sym_restrict] = ACTIONS(2771), + [anon_sym___restrict__] = ACTIONS(2771), + [anon_sym__Atomic] = ACTIONS(2771), + [anon_sym__Noreturn] = ACTIONS(2771), + [anon_sym_noreturn] = ACTIONS(2771), + [anon_sym__Nonnull] = ACTIONS(2771), + [anon_sym_mutable] = ACTIONS(2771), + [anon_sym_constinit] = ACTIONS(2771), + [anon_sym_consteval] = ACTIONS(2771), + [anon_sym_alignas] = ACTIONS(2771), + [anon_sym__Alignas] = ACTIONS(2771), + [sym_primitive_type] = ACTIONS(2771), + [anon_sym_enum] = ACTIONS(2771), + [anon_sym_class] = ACTIONS(2771), + [anon_sym_struct] = ACTIONS(2771), + [anon_sym_union] = ACTIONS(2771), [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2771), + [anon_sym_decltype] = ACTIONS(2771), + [anon_sym_explicit] = ACTIONS(2771), + [anon_sym_typename] = ACTIONS(2771), + [anon_sym_private] = ACTIONS(2771), + [anon_sym_template] = ACTIONS(2771), + [anon_sym_operator] = ACTIONS(2771), + [anon_sym_friend] = ACTIONS(2771), + [anon_sym_public] = ACTIONS(2771), + [anon_sym_protected] = ACTIONS(2771), + [anon_sym_static_assert] = ACTIONS(2771), }, - [2177] = { - [sym_string_literal] = STATE(2624), - [sym_template_argument_list] = STATE(3588), - [sym_raw_string_literal] = STATE(2624), - [aux_sym_structured_binding_declarator_repeat1] = STATE(7258), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6070), - [anon_sym_COMMA] = ACTIONS(6073), - [anon_sym_LPAREN2] = ACTIONS(4146), - [anon_sym_DASH] = ACTIONS(4154), - [anon_sym_PLUS] = ACTIONS(4154), - [anon_sym_STAR] = ACTIONS(4154), - [anon_sym_SLASH] = ACTIONS(4154), - [anon_sym_PERCENT] = ACTIONS(4154), - [anon_sym_PIPE_PIPE] = ACTIONS(4146), - [anon_sym_AMP_AMP] = ACTIONS(4146), - [anon_sym_PIPE] = ACTIONS(4154), - [anon_sym_CARET] = ACTIONS(4154), - [anon_sym_AMP] = ACTIONS(4154), - [anon_sym_EQ_EQ] = ACTIONS(4146), - [anon_sym_BANG_EQ] = ACTIONS(4146), - [anon_sym_GT] = ACTIONS(4154), - [anon_sym_GT_EQ] = ACTIONS(4146), - [anon_sym_LT_EQ] = ACTIONS(4154), - [anon_sym_LT] = ACTIONS(5077), - [anon_sym_LT_LT] = ACTIONS(4154), - [anon_sym_GT_GT] = ACTIONS(4154), - [anon_sym_COLON_COLON] = ACTIONS(4167), - [anon_sym_LBRACE] = ACTIONS(4172), - [anon_sym_LBRACK] = ACTIONS(4146), - [anon_sym_RBRACK] = ACTIONS(6076), - [anon_sym_EQ] = ACTIONS(6080), - [anon_sym_QMARK] = ACTIONS(4146), - [anon_sym_STAR_EQ] = ACTIONS(6082), - [anon_sym_SLASH_EQ] = ACTIONS(6082), - [anon_sym_PERCENT_EQ] = ACTIONS(6082), - [anon_sym_PLUS_EQ] = ACTIONS(6082), - [anon_sym_DASH_EQ] = ACTIONS(6082), - [anon_sym_LT_LT_EQ] = ACTIONS(6082), - [anon_sym_GT_GT_EQ] = ACTIONS(6082), - [anon_sym_AMP_EQ] = ACTIONS(6082), - [anon_sym_CARET_EQ] = ACTIONS(6082), - [anon_sym_PIPE_EQ] = ACTIONS(6082), - [anon_sym_and_eq] = ACTIONS(6082), - [anon_sym_or_eq] = ACTIONS(6082), - [anon_sym_xor_eq] = ACTIONS(6082), - [anon_sym_LT_EQ_GT] = ACTIONS(4146), - [anon_sym_or] = ACTIONS(4154), - [anon_sym_and] = ACTIONS(4154), - [anon_sym_bitor] = ACTIONS(4146), - [anon_sym_xor] = ACTIONS(4154), - [anon_sym_bitand] = ACTIONS(4146), - [anon_sym_not_eq] = ACTIONS(4146), - [anon_sym_DASH_DASH] = ACTIONS(4146), - [anon_sym_PLUS_PLUS] = ACTIONS(4146), - [anon_sym_DOT] = ACTIONS(4154), - [anon_sym_DOT_STAR] = ACTIONS(4146), - [anon_sym_DASH_GT] = ACTIONS(4146), - [anon_sym_L_DQUOTE] = ACTIONS(3623), - [anon_sym_u_DQUOTE] = ACTIONS(3623), - [anon_sym_U_DQUOTE] = ACTIONS(3623), - [anon_sym_u8_DQUOTE] = ACTIONS(3623), - [anon_sym_DQUOTE] = ACTIONS(3623), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(3627), - [anon_sym_LR_DQUOTE] = ACTIONS(3627), - [anon_sym_uR_DQUOTE] = ACTIONS(3627), - [anon_sym_UR_DQUOTE] = ACTIONS(3627), - [anon_sym_u8R_DQUOTE] = ACTIONS(3627), + [2205] = { + [sym_identifier] = ACTIONS(2967), + [aux_sym_preproc_def_token1] = ACTIONS(2967), + [aux_sym_preproc_if_token1] = ACTIONS(2967), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2967), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2967), + [sym_preproc_directive] = ACTIONS(2967), + [anon_sym_LPAREN2] = ACTIONS(2969), + [anon_sym_TILDE] = ACTIONS(2969), + [anon_sym_STAR] = ACTIONS(2969), + [anon_sym_AMP_AMP] = ACTIONS(2969), + [anon_sym_AMP] = ACTIONS(2967), + [anon_sym_SEMI] = ACTIONS(2969), + [anon_sym___extension__] = ACTIONS(2967), + [anon_sym_typedef] = ACTIONS(2967), + [anon_sym_virtual] = ACTIONS(2967), + [anon_sym_extern] = ACTIONS(2967), + [anon_sym___attribute__] = ACTIONS(2967), + [anon_sym___attribute] = ACTIONS(2967), + [anon_sym_using] = ACTIONS(2967), + [anon_sym_COLON_COLON] = ACTIONS(2969), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2969), + [anon_sym___declspec] = ACTIONS(2967), + [anon_sym___based] = ACTIONS(2967), + [anon_sym_RBRACE] = ACTIONS(2969), + [anon_sym_signed] = ACTIONS(2967), + [anon_sym_unsigned] = ACTIONS(2967), + [anon_sym_long] = ACTIONS(2967), + [anon_sym_short] = ACTIONS(2967), + [anon_sym_LBRACK] = ACTIONS(2967), + [anon_sym_static] = ACTIONS(2967), + [anon_sym_register] = ACTIONS(2967), + [anon_sym_inline] = ACTIONS(2967), + [anon_sym___inline] = ACTIONS(2967), + [anon_sym___inline__] = ACTIONS(2967), + [anon_sym___forceinline] = ACTIONS(2967), + [anon_sym_thread_local] = ACTIONS(2967), + [anon_sym___thread] = ACTIONS(2967), + [anon_sym_const] = ACTIONS(2967), + [anon_sym_constexpr] = ACTIONS(2967), + [anon_sym_volatile] = ACTIONS(2967), + [anon_sym_restrict] = ACTIONS(2967), + [anon_sym___restrict__] = ACTIONS(2967), + [anon_sym__Atomic] = ACTIONS(2967), + [anon_sym__Noreturn] = ACTIONS(2967), + [anon_sym_noreturn] = ACTIONS(2967), + [anon_sym__Nonnull] = ACTIONS(2967), + [anon_sym_mutable] = ACTIONS(2967), + [anon_sym_constinit] = ACTIONS(2967), + [anon_sym_consteval] = ACTIONS(2967), + [anon_sym_alignas] = ACTIONS(2967), + [anon_sym__Alignas] = ACTIONS(2967), + [sym_primitive_type] = ACTIONS(2967), + [anon_sym_enum] = ACTIONS(2967), + [anon_sym_class] = ACTIONS(2967), + [anon_sym_struct] = ACTIONS(2967), + [anon_sym_union] = ACTIONS(2967), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2967), + [anon_sym_decltype] = ACTIONS(2967), + [anon_sym_explicit] = ACTIONS(2967), + [anon_sym_typename] = ACTIONS(2967), + [anon_sym_private] = ACTIONS(2967), + [anon_sym_template] = ACTIONS(2967), + [anon_sym_operator] = ACTIONS(2967), + [anon_sym_friend] = ACTIONS(2967), + [anon_sym_public] = ACTIONS(2967), + [anon_sym_protected] = ACTIONS(2967), + [anon_sym_static_assert] = ACTIONS(2967), }, - [2178] = { - [sym_string_literal] = STATE(2624), - [sym_template_argument_list] = STATE(3588), - [sym_raw_string_literal] = STATE(2624), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4146), - [anon_sym_COMMA] = ACTIONS(4146), - [anon_sym_LPAREN2] = ACTIONS(4146), - [anon_sym_DASH] = ACTIONS(4154), - [anon_sym_PLUS] = ACTIONS(4154), - [anon_sym_STAR] = ACTIONS(4154), - [anon_sym_SLASH] = ACTIONS(4154), - [anon_sym_PERCENT] = ACTIONS(4154), - [anon_sym_PIPE_PIPE] = ACTIONS(4146), - [anon_sym_AMP_AMP] = ACTIONS(4146), - [anon_sym_PIPE] = ACTIONS(4154), - [anon_sym_CARET] = ACTIONS(4154), - [anon_sym_AMP] = ACTIONS(4154), - [anon_sym_EQ_EQ] = ACTIONS(4146), - [anon_sym_BANG_EQ] = ACTIONS(4146), - [anon_sym_GT] = ACTIONS(4154), - [anon_sym_GT_EQ] = ACTIONS(4146), - [anon_sym_LT_EQ] = ACTIONS(4154), - [anon_sym_LT] = ACTIONS(5077), - [anon_sym_LT_LT] = ACTIONS(4154), - [anon_sym_GT_GT] = ACTIONS(4154), - [anon_sym_SEMI] = ACTIONS(4146), - [anon_sym_COLON] = ACTIONS(4218), - [anon_sym_COLON_COLON] = ACTIONS(4167), - [anon_sym_LBRACE] = ACTIONS(4172), - [anon_sym_LBRACK] = ACTIONS(4146), - [anon_sym_EQ] = ACTIONS(4180), - [anon_sym_QMARK] = ACTIONS(4146), - [anon_sym_STAR_EQ] = ACTIONS(4182), - [anon_sym_SLASH_EQ] = ACTIONS(4182), - [anon_sym_PERCENT_EQ] = ACTIONS(4182), - [anon_sym_PLUS_EQ] = ACTIONS(4182), - [anon_sym_DASH_EQ] = ACTIONS(4182), - [anon_sym_LT_LT_EQ] = ACTIONS(4182), - [anon_sym_GT_GT_EQ] = ACTIONS(4182), - [anon_sym_AMP_EQ] = ACTIONS(4182), - [anon_sym_CARET_EQ] = ACTIONS(4182), - [anon_sym_PIPE_EQ] = ACTIONS(4182), - [anon_sym_and_eq] = ACTIONS(4182), - [anon_sym_or_eq] = ACTIONS(4182), - [anon_sym_xor_eq] = ACTIONS(4182), - [anon_sym_LT_EQ_GT] = ACTIONS(4146), - [anon_sym_or] = ACTIONS(4154), - [anon_sym_and] = ACTIONS(4154), - [anon_sym_bitor] = ACTIONS(4146), - [anon_sym_xor] = ACTIONS(4154), - [anon_sym_bitand] = ACTIONS(4146), - [anon_sym_not_eq] = ACTIONS(4146), - [anon_sym_DASH_DASH] = ACTIONS(4146), - [anon_sym_PLUS_PLUS] = ACTIONS(4146), - [anon_sym_DOT] = ACTIONS(4154), - [anon_sym_DOT_STAR] = ACTIONS(4146), - [anon_sym_DASH_GT] = ACTIONS(4146), - [anon_sym_L_DQUOTE] = ACTIONS(3623), - [anon_sym_u_DQUOTE] = ACTIONS(3623), - [anon_sym_U_DQUOTE] = ACTIONS(3623), - [anon_sym_u8_DQUOTE] = ACTIONS(3623), - [anon_sym_DQUOTE] = ACTIONS(3623), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(3627), - [anon_sym_LR_DQUOTE] = ACTIONS(3627), - [anon_sym_uR_DQUOTE] = ACTIONS(3627), - [anon_sym_UR_DQUOTE] = ACTIONS(3627), - [anon_sym_u8R_DQUOTE] = ACTIONS(3627), + [2206] = { + [sym_identifier] = ACTIONS(3075), + [aux_sym_preproc_def_token1] = ACTIONS(3075), + [aux_sym_preproc_if_token1] = ACTIONS(3075), + [aux_sym_preproc_if_token2] = ACTIONS(3075), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3075), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3075), + [sym_preproc_directive] = ACTIONS(3075), + [anon_sym_LPAREN2] = ACTIONS(3077), + [anon_sym_TILDE] = ACTIONS(3077), + [anon_sym_STAR] = ACTIONS(3077), + [anon_sym_AMP_AMP] = ACTIONS(3077), + [anon_sym_AMP] = ACTIONS(3075), + [anon_sym_SEMI] = ACTIONS(3077), + [anon_sym___extension__] = ACTIONS(3075), + [anon_sym_typedef] = ACTIONS(3075), + [anon_sym_virtual] = ACTIONS(3075), + [anon_sym_extern] = ACTIONS(3075), + [anon_sym___attribute__] = ACTIONS(3075), + [anon_sym___attribute] = ACTIONS(3075), + [anon_sym_using] = ACTIONS(3075), + [anon_sym_COLON_COLON] = ACTIONS(3077), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3077), + [anon_sym___declspec] = ACTIONS(3075), + [anon_sym___based] = ACTIONS(3075), + [anon_sym_signed] = ACTIONS(3075), + [anon_sym_unsigned] = ACTIONS(3075), + [anon_sym_long] = ACTIONS(3075), + [anon_sym_short] = ACTIONS(3075), + [anon_sym_LBRACK] = ACTIONS(3075), + [anon_sym_static] = ACTIONS(3075), + [anon_sym_register] = ACTIONS(3075), + [anon_sym_inline] = ACTIONS(3075), + [anon_sym___inline] = ACTIONS(3075), + [anon_sym___inline__] = ACTIONS(3075), + [anon_sym___forceinline] = ACTIONS(3075), + [anon_sym_thread_local] = ACTIONS(3075), + [anon_sym___thread] = ACTIONS(3075), + [anon_sym_const] = ACTIONS(3075), + [anon_sym_constexpr] = ACTIONS(3075), + [anon_sym_volatile] = ACTIONS(3075), + [anon_sym_restrict] = ACTIONS(3075), + [anon_sym___restrict__] = ACTIONS(3075), + [anon_sym__Atomic] = ACTIONS(3075), + [anon_sym__Noreturn] = ACTIONS(3075), + [anon_sym_noreturn] = ACTIONS(3075), + [anon_sym__Nonnull] = ACTIONS(3075), + [anon_sym_mutable] = ACTIONS(3075), + [anon_sym_constinit] = ACTIONS(3075), + [anon_sym_consteval] = ACTIONS(3075), + [anon_sym_alignas] = ACTIONS(3075), + [anon_sym__Alignas] = ACTIONS(3075), + [sym_primitive_type] = ACTIONS(3075), + [anon_sym_enum] = ACTIONS(3075), + [anon_sym_class] = ACTIONS(3075), + [anon_sym_struct] = ACTIONS(3075), + [anon_sym_union] = ACTIONS(3075), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3075), + [anon_sym_decltype] = ACTIONS(3075), + [anon_sym_explicit] = ACTIONS(3075), + [anon_sym_typename] = ACTIONS(3075), + [anon_sym_private] = ACTIONS(3075), + [anon_sym_template] = ACTIONS(3075), + [anon_sym_operator] = ACTIONS(3075), + [anon_sym_friend] = ACTIONS(3075), + [anon_sym_public] = ACTIONS(3075), + [anon_sym_protected] = ACTIONS(3075), + [anon_sym_static_assert] = ACTIONS(3075), }, - [2179] = { - [sym_string_literal] = STATE(2624), - [sym_template_argument_list] = STATE(3588), - [sym_raw_string_literal] = STATE(2624), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4146), - [anon_sym_COMMA] = ACTIONS(4146), - [anon_sym_LPAREN2] = ACTIONS(4146), - [anon_sym_DASH] = ACTIONS(4154), - [anon_sym_PLUS] = ACTIONS(4154), - [anon_sym_STAR] = ACTIONS(4154), - [anon_sym_SLASH] = ACTIONS(4154), - [anon_sym_PERCENT] = ACTIONS(4154), - [anon_sym_PIPE_PIPE] = ACTIONS(4146), - [anon_sym_AMP_AMP] = ACTIONS(4146), - [anon_sym_PIPE] = ACTIONS(4154), - [anon_sym_CARET] = ACTIONS(4154), - [anon_sym_AMP] = ACTIONS(4154), - [anon_sym_EQ_EQ] = ACTIONS(4146), - [anon_sym_BANG_EQ] = ACTIONS(4146), - [anon_sym_GT] = ACTIONS(4154), - [anon_sym_GT_EQ] = ACTIONS(4146), - [anon_sym_LT_EQ] = ACTIONS(4154), - [anon_sym_LT] = ACTIONS(5077), - [anon_sym_LT_LT] = ACTIONS(4154), - [anon_sym_GT_GT] = ACTIONS(4154), - [anon_sym_SEMI] = ACTIONS(4146), - [anon_sym_COLON] = ACTIONS(4220), - [anon_sym_COLON_COLON] = ACTIONS(4167), - [anon_sym_LBRACE] = ACTIONS(4172), - [anon_sym_LBRACK] = ACTIONS(4146), - [anon_sym_EQ] = ACTIONS(4180), - [anon_sym_QMARK] = ACTIONS(4146), - [anon_sym_STAR_EQ] = ACTIONS(4182), - [anon_sym_SLASH_EQ] = ACTIONS(4182), - [anon_sym_PERCENT_EQ] = ACTIONS(4182), - [anon_sym_PLUS_EQ] = ACTIONS(4182), - [anon_sym_DASH_EQ] = ACTIONS(4182), - [anon_sym_LT_LT_EQ] = ACTIONS(4182), - [anon_sym_GT_GT_EQ] = ACTIONS(4182), - [anon_sym_AMP_EQ] = ACTIONS(4182), - [anon_sym_CARET_EQ] = ACTIONS(4182), - [anon_sym_PIPE_EQ] = ACTIONS(4182), - [anon_sym_and_eq] = ACTIONS(4182), - [anon_sym_or_eq] = ACTIONS(4182), - [anon_sym_xor_eq] = ACTIONS(4182), - [anon_sym_LT_EQ_GT] = ACTIONS(4146), - [anon_sym_or] = ACTIONS(4154), - [anon_sym_and] = ACTIONS(4154), - [anon_sym_bitor] = ACTIONS(4146), - [anon_sym_xor] = ACTIONS(4154), - [anon_sym_bitand] = ACTIONS(4146), - [anon_sym_not_eq] = ACTIONS(4146), - [anon_sym_DASH_DASH] = ACTIONS(4146), - [anon_sym_PLUS_PLUS] = ACTIONS(4146), - [anon_sym_DOT] = ACTIONS(4154), - [anon_sym_DOT_STAR] = ACTIONS(4146), - [anon_sym_DASH_GT] = ACTIONS(4146), - [anon_sym_L_DQUOTE] = ACTIONS(3623), - [anon_sym_u_DQUOTE] = ACTIONS(3623), - [anon_sym_U_DQUOTE] = ACTIONS(3623), - [anon_sym_u8_DQUOTE] = ACTIONS(3623), - [anon_sym_DQUOTE] = ACTIONS(3623), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(3627), - [anon_sym_LR_DQUOTE] = ACTIONS(3627), - [anon_sym_uR_DQUOTE] = ACTIONS(3627), - [anon_sym_UR_DQUOTE] = ACTIONS(3627), - [anon_sym_u8R_DQUOTE] = ACTIONS(3627), + [2207] = { + [sym_identifier] = ACTIONS(3075), + [aux_sym_preproc_def_token1] = ACTIONS(3075), + [aux_sym_preproc_if_token1] = ACTIONS(3075), + [aux_sym_preproc_if_token2] = ACTIONS(3075), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3075), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3075), + [sym_preproc_directive] = ACTIONS(3075), + [anon_sym_LPAREN2] = ACTIONS(3077), + [anon_sym_TILDE] = ACTIONS(3077), + [anon_sym_STAR] = ACTIONS(3077), + [anon_sym_AMP_AMP] = ACTIONS(3077), + [anon_sym_AMP] = ACTIONS(3075), + [anon_sym_SEMI] = ACTIONS(3077), + [anon_sym___extension__] = ACTIONS(3075), + [anon_sym_typedef] = ACTIONS(3075), + [anon_sym_virtual] = ACTIONS(3075), + [anon_sym_extern] = ACTIONS(3075), + [anon_sym___attribute__] = ACTIONS(3075), + [anon_sym___attribute] = ACTIONS(3075), + [anon_sym_using] = ACTIONS(3075), + [anon_sym_COLON_COLON] = ACTIONS(3077), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3077), + [anon_sym___declspec] = ACTIONS(3075), + [anon_sym___based] = ACTIONS(3075), + [anon_sym_signed] = ACTIONS(3075), + [anon_sym_unsigned] = ACTIONS(3075), + [anon_sym_long] = ACTIONS(3075), + [anon_sym_short] = ACTIONS(3075), + [anon_sym_LBRACK] = ACTIONS(3075), + [anon_sym_static] = ACTIONS(3075), + [anon_sym_register] = ACTIONS(3075), + [anon_sym_inline] = ACTIONS(3075), + [anon_sym___inline] = ACTIONS(3075), + [anon_sym___inline__] = ACTIONS(3075), + [anon_sym___forceinline] = ACTIONS(3075), + [anon_sym_thread_local] = ACTIONS(3075), + [anon_sym___thread] = ACTIONS(3075), + [anon_sym_const] = ACTIONS(3075), + [anon_sym_constexpr] = ACTIONS(3075), + [anon_sym_volatile] = ACTIONS(3075), + [anon_sym_restrict] = ACTIONS(3075), + [anon_sym___restrict__] = ACTIONS(3075), + [anon_sym__Atomic] = ACTIONS(3075), + [anon_sym__Noreturn] = ACTIONS(3075), + [anon_sym_noreturn] = ACTIONS(3075), + [anon_sym__Nonnull] = ACTIONS(3075), + [anon_sym_mutable] = ACTIONS(3075), + [anon_sym_constinit] = ACTIONS(3075), + [anon_sym_consteval] = ACTIONS(3075), + [anon_sym_alignas] = ACTIONS(3075), + [anon_sym__Alignas] = ACTIONS(3075), + [sym_primitive_type] = ACTIONS(3075), + [anon_sym_enum] = ACTIONS(3075), + [anon_sym_class] = ACTIONS(3075), + [anon_sym_struct] = ACTIONS(3075), + [anon_sym_union] = ACTIONS(3075), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3075), + [anon_sym_decltype] = ACTIONS(3075), + [anon_sym_explicit] = ACTIONS(3075), + [anon_sym_typename] = ACTIONS(3075), + [anon_sym_private] = ACTIONS(3075), + [anon_sym_template] = ACTIONS(3075), + [anon_sym_operator] = ACTIONS(3075), + [anon_sym_friend] = ACTIONS(3075), + [anon_sym_public] = ACTIONS(3075), + [anon_sym_protected] = ACTIONS(3075), + [anon_sym_static_assert] = ACTIONS(3075), }, - [2180] = { - [sym_type_qualifier] = STATE(1926), - [sym_alignas_qualifier] = STATE(2229), - [aux_sym__type_definition_type_repeat1] = STATE(1926), - [aux_sym_sized_type_specifier_repeat1] = STATE(2344), - [sym_identifier] = ACTIONS(6084), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5100), - [anon_sym_COMMA] = ACTIONS(5100), - [anon_sym_LPAREN2] = ACTIONS(5100), - [anon_sym_DASH] = ACTIONS(5102), - [anon_sym_PLUS] = ACTIONS(5102), - [anon_sym_STAR] = ACTIONS(5100), - [anon_sym_SLASH] = ACTIONS(5102), - [anon_sym_PERCENT] = ACTIONS(5100), - [anon_sym_PIPE_PIPE] = ACTIONS(5100), - [anon_sym_AMP_AMP] = ACTIONS(5100), - [anon_sym_PIPE] = ACTIONS(5102), - [anon_sym_CARET] = ACTIONS(5100), - [anon_sym_AMP] = ACTIONS(5102), - [anon_sym_EQ_EQ] = ACTIONS(5100), - [anon_sym_BANG_EQ] = ACTIONS(5100), - [anon_sym_GT] = ACTIONS(5102), - [anon_sym_GT_EQ] = ACTIONS(5102), - [anon_sym_LT_EQ] = ACTIONS(5102), - [anon_sym_LT] = ACTIONS(5102), - [anon_sym_LT_LT] = ACTIONS(5100), - [anon_sym_GT_GT] = ACTIONS(5102), - [anon_sym___extension__] = ACTIONS(6050), - [anon_sym___attribute__] = ACTIONS(5102), - [anon_sym___attribute] = ACTIONS(5102), - [anon_sym_LBRACE] = ACTIONS(5100), + [2208] = { + [sym_identifier] = ACTIONS(6086), + [anon_sym_LPAREN2] = ACTIONS(6088), + [anon_sym_TILDE] = ACTIONS(6088), + [anon_sym_STAR] = ACTIONS(6088), + [anon_sym_AMP_AMP] = ACTIONS(6088), + [anon_sym_AMP] = ACTIONS(6086), + [anon_sym___extension__] = ACTIONS(6086), + [anon_sym_virtual] = ACTIONS(6086), + [anon_sym_extern] = ACTIONS(6086), + [anon_sym___attribute__] = ACTIONS(6086), + [anon_sym___attribute] = ACTIONS(6086), + [anon_sym_using] = ACTIONS(6086), + [anon_sym_COLON_COLON] = ACTIONS(6088), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6088), + [anon_sym___declspec] = ACTIONS(6086), + [anon_sym___based] = ACTIONS(6086), + [anon_sym___cdecl] = ACTIONS(6086), + [anon_sym___clrcall] = ACTIONS(6086), + [anon_sym___stdcall] = ACTIONS(6086), + [anon_sym___fastcall] = ACTIONS(6086), + [anon_sym___thiscall] = ACTIONS(6086), + [anon_sym___vectorcall] = ACTIONS(6086), + [anon_sym_LBRACE] = ACTIONS(6088), [anon_sym_signed] = ACTIONS(6086), [anon_sym_unsigned] = ACTIONS(6086), [anon_sym_long] = ACTIONS(6086), [anon_sym_short] = ACTIONS(6086), - [anon_sym_LBRACK] = ACTIONS(5100), - [anon_sym_const] = ACTIONS(6050), - [anon_sym_constexpr] = ACTIONS(6050), - [anon_sym_volatile] = ACTIONS(6050), - [anon_sym_restrict] = ACTIONS(6050), - [anon_sym___restrict__] = ACTIONS(6050), - [anon_sym__Atomic] = ACTIONS(6050), - [anon_sym__Noreturn] = ACTIONS(6050), - [anon_sym_noreturn] = ACTIONS(6050), - [anon_sym__Nonnull] = ACTIONS(6050), - [anon_sym_mutable] = ACTIONS(6050), - [anon_sym_constinit] = ACTIONS(6050), - [anon_sym_consteval] = ACTIONS(6050), - [anon_sym_alignas] = ACTIONS(6054), - [anon_sym__Alignas] = ACTIONS(6054), - [sym_primitive_type] = ACTIONS(6088), - [anon_sym_QMARK] = ACTIONS(5100), - [anon_sym_LT_EQ_GT] = ACTIONS(5100), - [anon_sym_or] = ACTIONS(5102), - [anon_sym_and] = ACTIONS(5102), - [anon_sym_bitor] = ACTIONS(5102), - [anon_sym_xor] = ACTIONS(5102), - [anon_sym_bitand] = ACTIONS(5102), - [anon_sym_not_eq] = ACTIONS(5102), - [anon_sym_DASH_DASH] = ACTIONS(5100), - [anon_sym_PLUS_PLUS] = ACTIONS(5100), - [anon_sym_DOT] = ACTIONS(5102), - [anon_sym_DOT_STAR] = ACTIONS(5100), - [anon_sym_DASH_GT] = ACTIONS(5100), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5102), - [anon_sym_decltype] = ACTIONS(5102), - [anon_sym_GT2] = ACTIONS(5100), + [anon_sym_LBRACK] = ACTIONS(6086), + [anon_sym_static] = ACTIONS(6086), + [anon_sym_register] = ACTIONS(6086), + [anon_sym_inline] = ACTIONS(6086), + [anon_sym___inline] = ACTIONS(6086), + [anon_sym___inline__] = ACTIONS(6086), + [anon_sym___forceinline] = ACTIONS(6086), + [anon_sym_thread_local] = ACTIONS(6086), + [anon_sym___thread] = ACTIONS(6086), + [anon_sym_const] = ACTIONS(6086), + [anon_sym_constexpr] = ACTIONS(6086), + [anon_sym_volatile] = ACTIONS(6086), + [anon_sym_restrict] = ACTIONS(6086), + [anon_sym___restrict__] = ACTIONS(6086), + [anon_sym__Atomic] = ACTIONS(6086), + [anon_sym__Noreturn] = ACTIONS(6086), + [anon_sym_noreturn] = ACTIONS(6086), + [anon_sym__Nonnull] = ACTIONS(6086), + [anon_sym_mutable] = ACTIONS(6086), + [anon_sym_constinit] = ACTIONS(6086), + [anon_sym_consteval] = ACTIONS(6086), + [anon_sym_alignas] = ACTIONS(6086), + [anon_sym__Alignas] = ACTIONS(6086), + [sym_primitive_type] = ACTIONS(6086), + [anon_sym_enum] = ACTIONS(6086), + [anon_sym_class] = ACTIONS(6086), + [anon_sym_struct] = ACTIONS(6086), + [anon_sym_union] = ACTIONS(6086), + [anon_sym_DASH_GT] = ACTIONS(6088), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6086), + [anon_sym_decltype] = ACTIONS(6086), + [anon_sym_explicit] = ACTIONS(6086), + [anon_sym_typename] = ACTIONS(6086), + [anon_sym_template] = ACTIONS(6086), + [anon_sym_operator] = ACTIONS(6086), + [anon_sym_friend] = ACTIONS(6086), + [anon_sym_noexcept] = ACTIONS(6086), + [anon_sym_throw] = ACTIONS(6086), + [anon_sym_concept] = ACTIONS(6086), + [anon_sym_requires] = ACTIONS(6086), }, - [2181] = { - [sym_attribute_specifier] = STATE(2283), + [2209] = { + [sym_identifier] = ACTIONS(3317), + [aux_sym_preproc_def_token1] = ACTIONS(3317), + [aux_sym_preproc_if_token1] = ACTIONS(3317), + [aux_sym_preproc_if_token2] = ACTIONS(3317), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3317), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3317), + [sym_preproc_directive] = ACTIONS(3317), + [anon_sym_LPAREN2] = ACTIONS(3319), + [anon_sym_TILDE] = ACTIONS(3319), + [anon_sym_STAR] = ACTIONS(3319), + [anon_sym_AMP_AMP] = ACTIONS(3319), + [anon_sym_AMP] = ACTIONS(3317), + [anon_sym_SEMI] = ACTIONS(3319), + [anon_sym___extension__] = ACTIONS(3317), + [anon_sym_typedef] = ACTIONS(3317), + [anon_sym_virtual] = ACTIONS(3317), + [anon_sym_extern] = ACTIONS(3317), + [anon_sym___attribute__] = ACTIONS(3317), + [anon_sym___attribute] = ACTIONS(3317), + [anon_sym_using] = ACTIONS(3317), + [anon_sym_COLON_COLON] = ACTIONS(3319), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3319), + [anon_sym___declspec] = ACTIONS(3317), + [anon_sym___based] = ACTIONS(3317), + [anon_sym_signed] = ACTIONS(3317), + [anon_sym_unsigned] = ACTIONS(3317), + [anon_sym_long] = ACTIONS(3317), + [anon_sym_short] = ACTIONS(3317), + [anon_sym_LBRACK] = ACTIONS(3317), + [anon_sym_static] = ACTIONS(3317), + [anon_sym_register] = ACTIONS(3317), + [anon_sym_inline] = ACTIONS(3317), + [anon_sym___inline] = ACTIONS(3317), + [anon_sym___inline__] = ACTIONS(3317), + [anon_sym___forceinline] = ACTIONS(3317), + [anon_sym_thread_local] = ACTIONS(3317), + [anon_sym___thread] = ACTIONS(3317), + [anon_sym_const] = ACTIONS(3317), + [anon_sym_constexpr] = ACTIONS(3317), + [anon_sym_volatile] = ACTIONS(3317), + [anon_sym_restrict] = ACTIONS(3317), + [anon_sym___restrict__] = ACTIONS(3317), + [anon_sym__Atomic] = ACTIONS(3317), + [anon_sym__Noreturn] = ACTIONS(3317), + [anon_sym_noreturn] = ACTIONS(3317), + [anon_sym__Nonnull] = ACTIONS(3317), + [anon_sym_mutable] = ACTIONS(3317), + [anon_sym_constinit] = ACTIONS(3317), + [anon_sym_consteval] = ACTIONS(3317), + [anon_sym_alignas] = ACTIONS(3317), + [anon_sym__Alignas] = ACTIONS(3317), + [sym_primitive_type] = ACTIONS(3317), + [anon_sym_enum] = ACTIONS(3317), + [anon_sym_class] = ACTIONS(3317), + [anon_sym_struct] = ACTIONS(3317), + [anon_sym_union] = ACTIONS(3317), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3317), + [anon_sym_decltype] = ACTIONS(3317), + [anon_sym_explicit] = ACTIONS(3317), + [anon_sym_typename] = ACTIONS(3317), + [anon_sym_private] = ACTIONS(3317), + [anon_sym_template] = ACTIONS(3317), + [anon_sym_operator] = ACTIONS(3317), + [anon_sym_friend] = ACTIONS(3317), + [anon_sym_public] = ACTIONS(3317), + [anon_sym_protected] = ACTIONS(3317), + [anon_sym_static_assert] = ACTIONS(3317), + }, + [2210] = { + [sym_identifier] = ACTIONS(2855), + [aux_sym_preproc_def_token1] = ACTIONS(2855), + [aux_sym_preproc_if_token1] = ACTIONS(2855), + [aux_sym_preproc_if_token2] = ACTIONS(2855), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2855), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2855), + [sym_preproc_directive] = ACTIONS(2855), + [anon_sym_LPAREN2] = ACTIONS(2857), + [anon_sym_TILDE] = ACTIONS(2857), + [anon_sym_STAR] = ACTIONS(2857), + [anon_sym_AMP_AMP] = ACTIONS(2857), + [anon_sym_AMP] = ACTIONS(2855), + [anon_sym_SEMI] = ACTIONS(2857), + [anon_sym___extension__] = ACTIONS(2855), + [anon_sym_typedef] = ACTIONS(2855), + [anon_sym_virtual] = ACTIONS(2855), + [anon_sym_extern] = ACTIONS(2855), + [anon_sym___attribute__] = ACTIONS(2855), + [anon_sym___attribute] = ACTIONS(2855), + [anon_sym_using] = ACTIONS(2855), + [anon_sym_COLON_COLON] = ACTIONS(2857), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2857), + [anon_sym___declspec] = ACTIONS(2855), + [anon_sym___based] = ACTIONS(2855), + [anon_sym_signed] = ACTIONS(2855), + [anon_sym_unsigned] = ACTIONS(2855), + [anon_sym_long] = ACTIONS(2855), + [anon_sym_short] = ACTIONS(2855), + [anon_sym_LBRACK] = ACTIONS(2855), + [anon_sym_static] = ACTIONS(2855), + [anon_sym_register] = ACTIONS(2855), + [anon_sym_inline] = ACTIONS(2855), + [anon_sym___inline] = ACTIONS(2855), + [anon_sym___inline__] = ACTIONS(2855), + [anon_sym___forceinline] = ACTIONS(2855), + [anon_sym_thread_local] = ACTIONS(2855), + [anon_sym___thread] = ACTIONS(2855), + [anon_sym_const] = ACTIONS(2855), + [anon_sym_constexpr] = ACTIONS(2855), + [anon_sym_volatile] = ACTIONS(2855), + [anon_sym_restrict] = ACTIONS(2855), + [anon_sym___restrict__] = ACTIONS(2855), + [anon_sym__Atomic] = ACTIONS(2855), + [anon_sym__Noreturn] = ACTIONS(2855), + [anon_sym_noreturn] = ACTIONS(2855), + [anon_sym__Nonnull] = ACTIONS(2855), + [anon_sym_mutable] = ACTIONS(2855), + [anon_sym_constinit] = ACTIONS(2855), + [anon_sym_consteval] = ACTIONS(2855), + [anon_sym_alignas] = ACTIONS(2855), + [anon_sym__Alignas] = ACTIONS(2855), + [sym_primitive_type] = ACTIONS(2855), + [anon_sym_enum] = ACTIONS(2855), + [anon_sym_class] = ACTIONS(2855), + [anon_sym_struct] = ACTIONS(2855), + [anon_sym_union] = ACTIONS(2855), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2855), + [anon_sym_decltype] = ACTIONS(2855), + [anon_sym_explicit] = ACTIONS(2855), + [anon_sym_typename] = ACTIONS(2855), + [anon_sym_private] = ACTIONS(2855), + [anon_sym_template] = ACTIONS(2855), + [anon_sym_operator] = ACTIONS(2855), + [anon_sym_friend] = ACTIONS(2855), + [anon_sym_public] = ACTIONS(2855), + [anon_sym_protected] = ACTIONS(2855), + [anon_sym_static_assert] = ACTIONS(2855), + }, + [2211] = { + [sym_identifier] = ACTIONS(2799), + [aux_sym_preproc_def_token1] = ACTIONS(2799), + [aux_sym_preproc_if_token1] = ACTIONS(2799), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2799), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2799), + [sym_preproc_directive] = ACTIONS(2799), + [anon_sym_LPAREN2] = ACTIONS(2801), + [anon_sym_TILDE] = ACTIONS(2801), + [anon_sym_STAR] = ACTIONS(2801), + [anon_sym_AMP_AMP] = ACTIONS(2801), + [anon_sym_AMP] = ACTIONS(2799), + [anon_sym_SEMI] = ACTIONS(2801), + [anon_sym___extension__] = ACTIONS(2799), + [anon_sym_typedef] = ACTIONS(2799), + [anon_sym_virtual] = ACTIONS(2799), + [anon_sym_extern] = ACTIONS(2799), + [anon_sym___attribute__] = ACTIONS(2799), + [anon_sym___attribute] = ACTIONS(2799), + [anon_sym_using] = ACTIONS(2799), + [anon_sym_COLON_COLON] = ACTIONS(2801), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2801), + [anon_sym___declspec] = ACTIONS(2799), + [anon_sym___based] = ACTIONS(2799), + [anon_sym_RBRACE] = ACTIONS(2801), + [anon_sym_signed] = ACTIONS(2799), + [anon_sym_unsigned] = ACTIONS(2799), + [anon_sym_long] = ACTIONS(2799), + [anon_sym_short] = ACTIONS(2799), + [anon_sym_LBRACK] = ACTIONS(2799), + [anon_sym_static] = ACTIONS(2799), + [anon_sym_register] = ACTIONS(2799), + [anon_sym_inline] = ACTIONS(2799), + [anon_sym___inline] = ACTIONS(2799), + [anon_sym___inline__] = ACTIONS(2799), + [anon_sym___forceinline] = ACTIONS(2799), + [anon_sym_thread_local] = ACTIONS(2799), + [anon_sym___thread] = ACTIONS(2799), + [anon_sym_const] = ACTIONS(2799), + [anon_sym_constexpr] = ACTIONS(2799), + [anon_sym_volatile] = ACTIONS(2799), + [anon_sym_restrict] = ACTIONS(2799), + [anon_sym___restrict__] = ACTIONS(2799), + [anon_sym__Atomic] = ACTIONS(2799), + [anon_sym__Noreturn] = ACTIONS(2799), + [anon_sym_noreturn] = ACTIONS(2799), + [anon_sym__Nonnull] = ACTIONS(2799), + [anon_sym_mutable] = ACTIONS(2799), + [anon_sym_constinit] = ACTIONS(2799), + [anon_sym_consteval] = ACTIONS(2799), + [anon_sym_alignas] = ACTIONS(2799), + [anon_sym__Alignas] = ACTIONS(2799), + [sym_primitive_type] = ACTIONS(2799), + [anon_sym_enum] = ACTIONS(2799), + [anon_sym_class] = ACTIONS(2799), + [anon_sym_struct] = ACTIONS(2799), + [anon_sym_union] = ACTIONS(2799), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2799), + [anon_sym_decltype] = ACTIONS(2799), + [anon_sym_explicit] = ACTIONS(2799), + [anon_sym_typename] = ACTIONS(2799), + [anon_sym_private] = ACTIONS(2799), + [anon_sym_template] = ACTIONS(2799), + [anon_sym_operator] = ACTIONS(2799), + [anon_sym_friend] = ACTIONS(2799), + [anon_sym_public] = ACTIONS(2799), + [anon_sym_protected] = ACTIONS(2799), + [anon_sym_static_assert] = ACTIONS(2799), + }, + [2212] = { + [sym_attribute_declaration] = STATE(2270), + [sym_parameter_list] = STATE(1942), + [aux_sym_attributed_declarator_repeat1] = STATE(2270), [sym_identifier] = ACTIONS(6090), [anon_sym_DOT_DOT_DOT] = ACTIONS(6092), [anon_sym_COMMA] = ACTIONS(6092), @@ -281514,7 +285365,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_elif_token1] = ACTIONS(6090), [aux_sym_preproc_elifdef_token1] = ACTIONS(6092), [aux_sym_preproc_elifdef_token2] = ACTIONS(6092), - [anon_sym_LPAREN2] = ACTIONS(6092), + [anon_sym_LPAREN2] = ACTIONS(6094), [anon_sym_DASH] = ACTIONS(6090), [anon_sym_PLUS] = ACTIONS(6090), [anon_sym_STAR] = ACTIONS(6090), @@ -281534,12 +285385,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(6090), [anon_sym_GT_GT] = ACTIONS(6090), [anon_sym_SEMI] = ACTIONS(6092), - [anon_sym___attribute__] = ACTIONS(5497), - [anon_sym___attribute] = ACTIONS(5497), + [anon_sym___attribute__] = ACTIONS(6090), + [anon_sym___attribute] = ACTIONS(6090), [anon_sym_COLON] = ACTIONS(6092), - [anon_sym_LBRACE] = ACTIONS(6092), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6096), [anon_sym_RBRACE] = ACTIONS(6092), - [anon_sym_LBRACK] = ACTIONS(6092), + [anon_sym_LBRACK] = ACTIONS(6098), [anon_sym_RBRACK] = ACTIONS(6092), [anon_sym_EQ] = ACTIONS(6090), [anon_sym_QMARK] = ACTIONS(6092), @@ -281569,220 +285420,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_STAR] = ACTIONS(6092), [anon_sym_DASH_GT] = ACTIONS(6092), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6090), - [anon_sym_decltype] = ACTIONS(6090), - }, - [2182] = { - [sym_string_literal] = STATE(2196), - [sym_raw_string_literal] = STATE(2196), - [aux_sym_concatenated_string_repeat1] = STATE(2196), - [sym_identifier] = ACTIONS(6094), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5396), - [anon_sym_COMMA] = ACTIONS(5396), - [anon_sym_RPAREN] = ACTIONS(5396), - [anon_sym_LPAREN2] = ACTIONS(5396), - [anon_sym_DASH] = ACTIONS(5398), - [anon_sym_PLUS] = ACTIONS(5398), - [anon_sym_STAR] = ACTIONS(5398), - [anon_sym_SLASH] = ACTIONS(5398), - [anon_sym_PERCENT] = ACTIONS(5398), - [anon_sym_PIPE_PIPE] = ACTIONS(5396), - [anon_sym_AMP_AMP] = ACTIONS(5396), - [anon_sym_PIPE] = ACTIONS(5398), - [anon_sym_CARET] = ACTIONS(5398), - [anon_sym_AMP] = ACTIONS(5398), - [anon_sym_EQ_EQ] = ACTIONS(5396), - [anon_sym_BANG_EQ] = ACTIONS(5396), - [anon_sym_GT] = ACTIONS(5398), - [anon_sym_GT_EQ] = ACTIONS(5396), - [anon_sym_LT_EQ] = ACTIONS(5398), - [anon_sym_LT] = ACTIONS(5398), - [anon_sym_LT_LT] = ACTIONS(5398), - [anon_sym_GT_GT] = ACTIONS(5398), - [anon_sym_LBRACK] = ACTIONS(5396), - [anon_sym_EQ] = ACTIONS(5398), - [anon_sym_QMARK] = ACTIONS(5396), - [anon_sym_STAR_EQ] = ACTIONS(5396), - [anon_sym_SLASH_EQ] = ACTIONS(5396), - [anon_sym_PERCENT_EQ] = ACTIONS(5396), - [anon_sym_PLUS_EQ] = ACTIONS(5396), - [anon_sym_DASH_EQ] = ACTIONS(5396), - [anon_sym_LT_LT_EQ] = ACTIONS(5396), - [anon_sym_GT_GT_EQ] = ACTIONS(5396), - [anon_sym_AMP_EQ] = ACTIONS(5396), - [anon_sym_CARET_EQ] = ACTIONS(5396), - [anon_sym_PIPE_EQ] = ACTIONS(5396), - [anon_sym_and_eq] = ACTIONS(5398), - [anon_sym_or_eq] = ACTIONS(5398), - [anon_sym_xor_eq] = ACTIONS(5398), - [anon_sym_LT_EQ_GT] = ACTIONS(5396), - [anon_sym_or] = ACTIONS(5398), - [anon_sym_and] = ACTIONS(5398), - [anon_sym_bitor] = ACTIONS(5398), - [anon_sym_xor] = ACTIONS(5398), - [anon_sym_bitand] = ACTIONS(5398), - [anon_sym_not_eq] = ACTIONS(5398), - [anon_sym_DASH_DASH] = ACTIONS(5396), - [anon_sym_PLUS_PLUS] = ACTIONS(5396), - [anon_sym_DOT] = ACTIONS(5398), - [anon_sym_DOT_STAR] = ACTIONS(5396), - [anon_sym_DASH_GT] = ACTIONS(5398), - [anon_sym_L_DQUOTE] = ACTIONS(5040), - [anon_sym_u_DQUOTE] = ACTIONS(5040), - [anon_sym_U_DQUOTE] = ACTIONS(5040), - [anon_sym_u8_DQUOTE] = ACTIONS(5040), - [anon_sym_DQUOTE] = ACTIONS(5040), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5042), - [anon_sym_LR_DQUOTE] = ACTIONS(5042), - [anon_sym_uR_DQUOTE] = ACTIONS(5042), - [anon_sym_UR_DQUOTE] = ACTIONS(5042), - [anon_sym_u8R_DQUOTE] = ACTIONS(5042), - [anon_sym_DASH_GT_STAR] = ACTIONS(5396), - [sym_literal_suffix] = ACTIONS(5398), - }, - [2183] = { - [sym_attribute_specifier] = STATE(2251), - [sym_identifier] = ACTIONS(6096), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6098), - [anon_sym_COMMA] = ACTIONS(6098), - [anon_sym_RPAREN] = ACTIONS(6098), - [aux_sym_preproc_if_token2] = ACTIONS(6098), - [aux_sym_preproc_else_token1] = ACTIONS(6098), - [aux_sym_preproc_elif_token1] = ACTIONS(6096), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6098), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6098), - [anon_sym_LPAREN2] = ACTIONS(6098), - [anon_sym_DASH] = ACTIONS(6096), - [anon_sym_PLUS] = ACTIONS(6096), - [anon_sym_STAR] = ACTIONS(6096), - [anon_sym_SLASH] = ACTIONS(6096), - [anon_sym_PERCENT] = ACTIONS(6096), - [anon_sym_PIPE_PIPE] = ACTIONS(6098), - [anon_sym_AMP_AMP] = ACTIONS(6098), - [anon_sym_PIPE] = ACTIONS(6096), - [anon_sym_CARET] = ACTIONS(6096), - [anon_sym_AMP] = ACTIONS(6096), - [anon_sym_EQ_EQ] = ACTIONS(6098), - [anon_sym_BANG_EQ] = ACTIONS(6098), - [anon_sym_GT] = ACTIONS(6096), - [anon_sym_GT_EQ] = ACTIONS(6098), - [anon_sym_LT_EQ] = ACTIONS(6096), - [anon_sym_LT] = ACTIONS(6096), - [anon_sym_LT_LT] = ACTIONS(6096), - [anon_sym_GT_GT] = ACTIONS(6096), - [anon_sym_SEMI] = ACTIONS(6098), - [anon_sym___attribute__] = ACTIONS(5497), - [anon_sym___attribute] = ACTIONS(5497), - [anon_sym_COLON] = ACTIONS(6098), - [anon_sym_LBRACE] = ACTIONS(6098), - [anon_sym_RBRACE] = ACTIONS(6098), - [anon_sym_LBRACK] = ACTIONS(6098), - [anon_sym_RBRACK] = ACTIONS(6098), - [anon_sym_EQ] = ACTIONS(6096), - [anon_sym_QMARK] = ACTIONS(6098), - [anon_sym_STAR_EQ] = ACTIONS(6098), - [anon_sym_SLASH_EQ] = ACTIONS(6098), - [anon_sym_PERCENT_EQ] = ACTIONS(6098), - [anon_sym_PLUS_EQ] = ACTIONS(6098), - [anon_sym_DASH_EQ] = ACTIONS(6098), - [anon_sym_LT_LT_EQ] = ACTIONS(6098), - [anon_sym_GT_GT_EQ] = ACTIONS(6098), - [anon_sym_AMP_EQ] = ACTIONS(6098), - [anon_sym_CARET_EQ] = ACTIONS(6098), - [anon_sym_PIPE_EQ] = ACTIONS(6098), - [anon_sym_and_eq] = ACTIONS(6096), - [anon_sym_or_eq] = ACTIONS(6096), - [anon_sym_xor_eq] = ACTIONS(6096), - [anon_sym_LT_EQ_GT] = ACTIONS(6098), - [anon_sym_or] = ACTIONS(6096), - [anon_sym_and] = ACTIONS(6096), - [anon_sym_bitor] = ACTIONS(6096), - [anon_sym_xor] = ACTIONS(6096), - [anon_sym_bitand] = ACTIONS(6096), - [anon_sym_not_eq] = ACTIONS(6096), - [anon_sym_DASH_DASH] = ACTIONS(6098), - [anon_sym_PLUS_PLUS] = ACTIONS(6098), - [anon_sym_DOT] = ACTIONS(6096), - [anon_sym_DOT_STAR] = ACTIONS(6098), - [anon_sym_DASH_GT] = ACTIONS(6098), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6096), - [anon_sym_decltype] = ACTIONS(6096), - }, - [2184] = { - [sym_string_literal] = STATE(2624), - [sym_template_argument_list] = STATE(3588), - [sym_raw_string_literal] = STATE(2624), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4146), - [anon_sym_COMMA] = ACTIONS(4146), - [anon_sym_LPAREN2] = ACTIONS(4146), - [anon_sym_DASH] = ACTIONS(4154), - [anon_sym_PLUS] = ACTIONS(4154), - [anon_sym_STAR] = ACTIONS(4154), - [anon_sym_SLASH] = ACTIONS(4154), - [anon_sym_PERCENT] = ACTIONS(4154), - [anon_sym_PIPE_PIPE] = ACTIONS(4146), - [anon_sym_AMP_AMP] = ACTIONS(4146), - [anon_sym_PIPE] = ACTIONS(4154), - [anon_sym_CARET] = ACTIONS(4154), - [anon_sym_AMP] = ACTIONS(4154), - [anon_sym_EQ_EQ] = ACTIONS(4146), - [anon_sym_BANG_EQ] = ACTIONS(4146), - [anon_sym_GT] = ACTIONS(4154), - [anon_sym_GT_EQ] = ACTIONS(4146), - [anon_sym_LT_EQ] = ACTIONS(4154), - [anon_sym_LT] = ACTIONS(5077), - [anon_sym_LT_LT] = ACTIONS(4154), - [anon_sym_GT_GT] = ACTIONS(4154), - [anon_sym_SEMI] = ACTIONS(4146), - [anon_sym_COLON] = ACTIONS(4216), - [anon_sym_COLON_COLON] = ACTIONS(4167), - [anon_sym_LBRACE] = ACTIONS(4172), - [anon_sym_LBRACK] = ACTIONS(4146), - [anon_sym_EQ] = ACTIONS(4180), - [anon_sym_QMARK] = ACTIONS(4146), - [anon_sym_STAR_EQ] = ACTIONS(4182), - [anon_sym_SLASH_EQ] = ACTIONS(4182), - [anon_sym_PERCENT_EQ] = ACTIONS(4182), - [anon_sym_PLUS_EQ] = ACTIONS(4182), - [anon_sym_DASH_EQ] = ACTIONS(4182), - [anon_sym_LT_LT_EQ] = ACTIONS(4182), - [anon_sym_GT_GT_EQ] = ACTIONS(4182), - [anon_sym_AMP_EQ] = ACTIONS(4182), - [anon_sym_CARET_EQ] = ACTIONS(4182), - [anon_sym_PIPE_EQ] = ACTIONS(4182), - [anon_sym_and_eq] = ACTIONS(4182), - [anon_sym_or_eq] = ACTIONS(4182), - [anon_sym_xor_eq] = ACTIONS(4182), - [anon_sym_LT_EQ_GT] = ACTIONS(4146), - [anon_sym_or] = ACTIONS(4154), - [anon_sym_and] = ACTIONS(4154), - [anon_sym_bitor] = ACTIONS(4146), - [anon_sym_xor] = ACTIONS(4154), - [anon_sym_bitand] = ACTIONS(4146), - [anon_sym_not_eq] = ACTIONS(4146), - [anon_sym_DASH_DASH] = ACTIONS(4146), - [anon_sym_PLUS_PLUS] = ACTIONS(4146), - [anon_sym_DOT] = ACTIONS(4154), - [anon_sym_DOT_STAR] = ACTIONS(4146), - [anon_sym_DASH_GT] = ACTIONS(4146), - [anon_sym_L_DQUOTE] = ACTIONS(3623), - [anon_sym_u_DQUOTE] = ACTIONS(3623), - [anon_sym_U_DQUOTE] = ACTIONS(3623), - [anon_sym_u8_DQUOTE] = ACTIONS(3623), - [anon_sym_DQUOTE] = ACTIONS(3623), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(3627), - [anon_sym_LR_DQUOTE] = ACTIONS(3627), - [anon_sym_uR_DQUOTE] = ACTIONS(3627), - [anon_sym_UR_DQUOTE] = ACTIONS(3627), - [anon_sym_u8R_DQUOTE] = ACTIONS(3627), }, - [2185] = { - [sym_attribute_declaration] = STATE(2270), - [sym_parameter_list] = STATE(2298), - [aux_sym_attributed_declarator_repeat1] = STATE(2270), + [2213] = { + [sym_attribute_specifier] = STATE(2298), [sym_identifier] = ACTIONS(6100), [anon_sym_DOT_DOT_DOT] = ACTIONS(6102), [anon_sym_COMMA] = ACTIONS(6102), @@ -281792,7 +285432,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_elif_token1] = ACTIONS(6100), [aux_sym_preproc_elifdef_token1] = ACTIONS(6102), [aux_sym_preproc_elifdef_token2] = ACTIONS(6102), - [anon_sym_LPAREN2] = ACTIONS(6042), + [anon_sym_LPAREN2] = ACTIONS(6102), [anon_sym_DASH] = ACTIONS(6100), [anon_sym_PLUS] = ACTIONS(6100), [anon_sym_STAR] = ACTIONS(6100), @@ -281812,12 +285452,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(6100), [anon_sym_GT_GT] = ACTIONS(6100), [anon_sym_SEMI] = ACTIONS(6102), - [anon_sym___attribute__] = ACTIONS(6100), - [anon_sym___attribute] = ACTIONS(6100), + [anon_sym___attribute__] = ACTIONS(5561), + [anon_sym___attribute] = ACTIONS(5561), [anon_sym_COLON] = ACTIONS(6102), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6044), + [anon_sym_LBRACE] = ACTIONS(6102), [anon_sym_RBRACE] = ACTIONS(6102), - [anon_sym_LBRACK] = ACTIONS(6046), + [anon_sym_LBRACK] = ACTIONS(6102), [anon_sym_RBRACK] = ACTIONS(6102), [anon_sym_EQ] = ACTIONS(6100), [anon_sym_QMARK] = ACTIONS(6102), @@ -281847,9 +285487,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_STAR] = ACTIONS(6102), [anon_sym_DASH_GT] = ACTIONS(6102), [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6100), + [anon_sym_decltype] = ACTIONS(6100), }, - [2186] = { - [sym_attribute_specifier] = STATE(2221), + [2214] = { + [sym_attribute_specifier] = STATE(2280), [sym_identifier] = ACTIONS(6104), [anon_sym_DOT_DOT_DOT] = ACTIONS(6106), [anon_sym_COMMA] = ACTIONS(6106), @@ -281879,8 +285521,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(6104), [anon_sym_GT_GT] = ACTIONS(6104), [anon_sym_SEMI] = ACTIONS(6106), - [anon_sym___attribute__] = ACTIONS(5497), - [anon_sym___attribute] = ACTIONS(5497), + [anon_sym___attribute__] = ACTIONS(5561), + [anon_sym___attribute] = ACTIONS(5561), [anon_sym_COLON] = ACTIONS(6106), [anon_sym_LBRACE] = ACTIONS(6106), [anon_sym_RBRACE] = ACTIONS(6106), @@ -281917,2679 +285559,6298 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(6104), [anon_sym_decltype] = ACTIONS(6104), }, - [2187] = { - [sym_string_literal] = STATE(2624), - [sym_template_argument_list] = STATE(3588), - [sym_raw_string_literal] = STATE(2624), - [aux_sym_structured_binding_declarator_repeat1] = STATE(7258), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4146), - [anon_sym_COMMA] = ACTIONS(6108), - [anon_sym_LPAREN2] = ACTIONS(4146), - [anon_sym_DASH] = ACTIONS(4154), - [anon_sym_PLUS] = ACTIONS(4154), - [anon_sym_STAR] = ACTIONS(4154), - [anon_sym_SLASH] = ACTIONS(4154), - [anon_sym_PERCENT] = ACTIONS(4154), - [anon_sym_PIPE_PIPE] = ACTIONS(4146), - [anon_sym_AMP_AMP] = ACTIONS(4146), - [anon_sym_PIPE] = ACTIONS(4154), - [anon_sym_CARET] = ACTIONS(4154), - [anon_sym_AMP] = ACTIONS(4154), - [anon_sym_EQ_EQ] = ACTIONS(4146), - [anon_sym_BANG_EQ] = ACTIONS(4146), - [anon_sym_GT] = ACTIONS(4154), - [anon_sym_GT_EQ] = ACTIONS(4146), - [anon_sym_LT_EQ] = ACTIONS(4154), - [anon_sym_LT] = ACTIONS(5077), - [anon_sym_LT_LT] = ACTIONS(4154), - [anon_sym_GT_GT] = ACTIONS(4154), - [anon_sym_COLON_COLON] = ACTIONS(4167), - [anon_sym_LBRACE] = ACTIONS(4172), - [anon_sym_LBRACK] = ACTIONS(4146), + [2215] = { + [sym_string_literal] = STATE(2657), + [sym_template_argument_list] = STATE(3605), + [sym_raw_string_literal] = STATE(2657), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4166), + [anon_sym_COMMA] = ACTIONS(4166), + [anon_sym_LPAREN2] = ACTIONS(4166), + [anon_sym_DASH] = ACTIONS(4174), + [anon_sym_PLUS] = ACTIONS(4174), + [anon_sym_STAR] = ACTIONS(4174), + [anon_sym_SLASH] = ACTIONS(4174), + [anon_sym_PERCENT] = ACTIONS(4174), + [anon_sym_PIPE_PIPE] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4166), + [anon_sym_PIPE] = ACTIONS(4174), + [anon_sym_CARET] = ACTIONS(4174), + [anon_sym_AMP] = ACTIONS(4174), + [anon_sym_EQ_EQ] = ACTIONS(4166), + [anon_sym_BANG_EQ] = ACTIONS(4166), + [anon_sym_GT] = ACTIONS(4174), + [anon_sym_GT_EQ] = ACTIONS(4166), + [anon_sym_LT_EQ] = ACTIONS(4174), + [anon_sym_LT] = ACTIONS(5085), + [anon_sym_LT_LT] = ACTIONS(4174), + [anon_sym_GT_GT] = ACTIONS(4174), + [anon_sym_SEMI] = ACTIONS(4166), + [anon_sym_COLON] = ACTIONS(4296), + [anon_sym_COLON_COLON] = ACTIONS(4187), + [anon_sym_LBRACE] = ACTIONS(4192), + [anon_sym_LBRACK] = ACTIONS(4166), + [anon_sym_EQ] = ACTIONS(4200), + [anon_sym_QMARK] = ACTIONS(4166), + [anon_sym_STAR_EQ] = ACTIONS(4202), + [anon_sym_SLASH_EQ] = ACTIONS(4202), + [anon_sym_PERCENT_EQ] = ACTIONS(4202), + [anon_sym_PLUS_EQ] = ACTIONS(4202), + [anon_sym_DASH_EQ] = ACTIONS(4202), + [anon_sym_LT_LT_EQ] = ACTIONS(4202), + [anon_sym_GT_GT_EQ] = ACTIONS(4202), + [anon_sym_AMP_EQ] = ACTIONS(4202), + [anon_sym_CARET_EQ] = ACTIONS(4202), + [anon_sym_PIPE_EQ] = ACTIONS(4202), + [anon_sym_and_eq] = ACTIONS(4202), + [anon_sym_or_eq] = ACTIONS(4202), + [anon_sym_xor_eq] = ACTIONS(4202), + [anon_sym_LT_EQ_GT] = ACTIONS(4166), + [anon_sym_or] = ACTIONS(4174), + [anon_sym_and] = ACTIONS(4174), + [anon_sym_bitor] = ACTIONS(4166), + [anon_sym_xor] = ACTIONS(4174), + [anon_sym_bitand] = ACTIONS(4166), + [anon_sym_not_eq] = ACTIONS(4166), + [anon_sym_DASH_DASH] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4174), + [anon_sym_DOT_STAR] = ACTIONS(4166), + [anon_sym_DASH_GT] = ACTIONS(4166), + [anon_sym_L_DQUOTE] = ACTIONS(3631), + [anon_sym_u_DQUOTE] = ACTIONS(3631), + [anon_sym_U_DQUOTE] = ACTIONS(3631), + [anon_sym_u8_DQUOTE] = ACTIONS(3631), + [anon_sym_DQUOTE] = ACTIONS(3631), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3635), + [anon_sym_LR_DQUOTE] = ACTIONS(3635), + [anon_sym_uR_DQUOTE] = ACTIONS(3635), + [anon_sym_UR_DQUOTE] = ACTIONS(3635), + [anon_sym_u8R_DQUOTE] = ACTIONS(3635), + }, + [2216] = { + [sym_attribute_specifier] = STATE(2285), + [sym_identifier] = ACTIONS(6108), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6110), + [anon_sym_COMMA] = ACTIONS(6110), + [anon_sym_RPAREN] = ACTIONS(6110), + [aux_sym_preproc_if_token2] = ACTIONS(6110), + [aux_sym_preproc_else_token1] = ACTIONS(6110), + [aux_sym_preproc_elif_token1] = ACTIONS(6108), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6110), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6110), + [anon_sym_LPAREN2] = ACTIONS(6110), + [anon_sym_DASH] = ACTIONS(6108), + [anon_sym_PLUS] = ACTIONS(6108), + [anon_sym_STAR] = ACTIONS(6108), + [anon_sym_SLASH] = ACTIONS(6108), + [anon_sym_PERCENT] = ACTIONS(6108), + [anon_sym_PIPE_PIPE] = ACTIONS(6110), + [anon_sym_AMP_AMP] = ACTIONS(6110), + [anon_sym_PIPE] = ACTIONS(6108), + [anon_sym_CARET] = ACTIONS(6108), + [anon_sym_AMP] = ACTIONS(6108), + [anon_sym_EQ_EQ] = ACTIONS(6110), + [anon_sym_BANG_EQ] = ACTIONS(6110), + [anon_sym_GT] = ACTIONS(6108), + [anon_sym_GT_EQ] = ACTIONS(6110), + [anon_sym_LT_EQ] = ACTIONS(6108), + [anon_sym_LT] = ACTIONS(6108), + [anon_sym_LT_LT] = ACTIONS(6108), + [anon_sym_GT_GT] = ACTIONS(6108), + [anon_sym_SEMI] = ACTIONS(6110), + [anon_sym___attribute__] = ACTIONS(5561), + [anon_sym___attribute] = ACTIONS(5561), + [anon_sym_COLON] = ACTIONS(6110), + [anon_sym_LBRACE] = ACTIONS(6110), + [anon_sym_RBRACE] = ACTIONS(6110), + [anon_sym_LBRACK] = ACTIONS(6110), [anon_sym_RBRACK] = ACTIONS(6110), - [anon_sym_EQ] = ACTIONS(6113), - [anon_sym_QMARK] = ACTIONS(4146), - [anon_sym_STAR_EQ] = ACTIONS(6082), - [anon_sym_SLASH_EQ] = ACTIONS(6082), - [anon_sym_PERCENT_EQ] = ACTIONS(6082), - [anon_sym_PLUS_EQ] = ACTIONS(6082), - [anon_sym_DASH_EQ] = ACTIONS(6082), - [anon_sym_LT_LT_EQ] = ACTIONS(6082), - [anon_sym_GT_GT_EQ] = ACTIONS(6082), - [anon_sym_AMP_EQ] = ACTIONS(6082), - [anon_sym_CARET_EQ] = ACTIONS(6082), - [anon_sym_PIPE_EQ] = ACTIONS(6082), - [anon_sym_and_eq] = ACTIONS(6082), - [anon_sym_or_eq] = ACTIONS(6082), - [anon_sym_xor_eq] = ACTIONS(6082), - [anon_sym_LT_EQ_GT] = ACTIONS(4146), - [anon_sym_or] = ACTIONS(4154), - [anon_sym_and] = ACTIONS(4154), - [anon_sym_bitor] = ACTIONS(4146), - [anon_sym_xor] = ACTIONS(4154), - [anon_sym_bitand] = ACTIONS(4146), - [anon_sym_not_eq] = ACTIONS(4146), - [anon_sym_DASH_DASH] = ACTIONS(4146), - [anon_sym_PLUS_PLUS] = ACTIONS(4146), - [anon_sym_DOT] = ACTIONS(4154), - [anon_sym_DOT_STAR] = ACTIONS(4146), - [anon_sym_DASH_GT] = ACTIONS(4146), - [anon_sym_L_DQUOTE] = ACTIONS(3623), - [anon_sym_u_DQUOTE] = ACTIONS(3623), - [anon_sym_U_DQUOTE] = ACTIONS(3623), - [anon_sym_u8_DQUOTE] = ACTIONS(3623), - [anon_sym_DQUOTE] = ACTIONS(3623), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(3627), - [anon_sym_LR_DQUOTE] = ACTIONS(3627), - [anon_sym_uR_DQUOTE] = ACTIONS(3627), - [anon_sym_UR_DQUOTE] = ACTIONS(3627), - [anon_sym_u8R_DQUOTE] = ACTIONS(3627), + [anon_sym_EQ] = ACTIONS(6108), + [anon_sym_QMARK] = ACTIONS(6110), + [anon_sym_STAR_EQ] = ACTIONS(6110), + [anon_sym_SLASH_EQ] = ACTIONS(6110), + [anon_sym_PERCENT_EQ] = ACTIONS(6110), + [anon_sym_PLUS_EQ] = ACTIONS(6110), + [anon_sym_DASH_EQ] = ACTIONS(6110), + [anon_sym_LT_LT_EQ] = ACTIONS(6110), + [anon_sym_GT_GT_EQ] = ACTIONS(6110), + [anon_sym_AMP_EQ] = ACTIONS(6110), + [anon_sym_CARET_EQ] = ACTIONS(6110), + [anon_sym_PIPE_EQ] = ACTIONS(6110), + [anon_sym_and_eq] = ACTIONS(6108), + [anon_sym_or_eq] = ACTIONS(6108), + [anon_sym_xor_eq] = ACTIONS(6108), + [anon_sym_LT_EQ_GT] = ACTIONS(6110), + [anon_sym_or] = ACTIONS(6108), + [anon_sym_and] = ACTIONS(6108), + [anon_sym_bitor] = ACTIONS(6108), + [anon_sym_xor] = ACTIONS(6108), + [anon_sym_bitand] = ACTIONS(6108), + [anon_sym_not_eq] = ACTIONS(6108), + [anon_sym_DASH_DASH] = ACTIONS(6110), + [anon_sym_PLUS_PLUS] = ACTIONS(6110), + [anon_sym_DOT] = ACTIONS(6108), + [anon_sym_DOT_STAR] = ACTIONS(6110), + [anon_sym_DASH_GT] = ACTIONS(6110), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6108), + [anon_sym_decltype] = ACTIONS(6108), }, - [2188] = { - [sym_string_literal] = STATE(2624), - [sym_template_argument_list] = STATE(3588), - [sym_raw_string_literal] = STATE(2624), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4146), - [anon_sym_COMMA] = ACTIONS(4146), - [anon_sym_LPAREN2] = ACTIONS(4146), - [anon_sym_DASH] = ACTIONS(4154), - [anon_sym_PLUS] = ACTIONS(4154), - [anon_sym_STAR] = ACTIONS(4154), - [anon_sym_SLASH] = ACTIONS(4154), - [anon_sym_PERCENT] = ACTIONS(4154), - [anon_sym_PIPE_PIPE] = ACTIONS(4146), - [anon_sym_AMP_AMP] = ACTIONS(4146), - [anon_sym_PIPE] = ACTIONS(4154), - [anon_sym_CARET] = ACTIONS(4154), - [anon_sym_AMP] = ACTIONS(4154), - [anon_sym_EQ_EQ] = ACTIONS(4146), - [anon_sym_BANG_EQ] = ACTIONS(4146), - [anon_sym_GT] = ACTIONS(4154), - [anon_sym_GT_EQ] = ACTIONS(4146), - [anon_sym_LT_EQ] = ACTIONS(4154), - [anon_sym_LT] = ACTIONS(5077), - [anon_sym_LT_LT] = ACTIONS(4154), - [anon_sym_GT_GT] = ACTIONS(4154), - [anon_sym_SEMI] = ACTIONS(4146), - [anon_sym_COLON] = ACTIONS(4222), - [anon_sym_COLON_COLON] = ACTIONS(4167), - [anon_sym_LBRACE] = ACTIONS(4172), - [anon_sym_LBRACK] = ACTIONS(4146), - [anon_sym_EQ] = ACTIONS(4180), - [anon_sym_QMARK] = ACTIONS(4146), - [anon_sym_STAR_EQ] = ACTIONS(4182), - [anon_sym_SLASH_EQ] = ACTIONS(4182), - [anon_sym_PERCENT_EQ] = ACTIONS(4182), - [anon_sym_PLUS_EQ] = ACTIONS(4182), - [anon_sym_DASH_EQ] = ACTIONS(4182), - [anon_sym_LT_LT_EQ] = ACTIONS(4182), - [anon_sym_GT_GT_EQ] = ACTIONS(4182), - [anon_sym_AMP_EQ] = ACTIONS(4182), - [anon_sym_CARET_EQ] = ACTIONS(4182), - [anon_sym_PIPE_EQ] = ACTIONS(4182), - [anon_sym_and_eq] = ACTIONS(4182), - [anon_sym_or_eq] = ACTIONS(4182), - [anon_sym_xor_eq] = ACTIONS(4182), - [anon_sym_LT_EQ_GT] = ACTIONS(4146), - [anon_sym_or] = ACTIONS(4154), - [anon_sym_and] = ACTIONS(4154), - [anon_sym_bitor] = ACTIONS(4146), - [anon_sym_xor] = ACTIONS(4154), - [anon_sym_bitand] = ACTIONS(4146), - [anon_sym_not_eq] = ACTIONS(4146), - [anon_sym_DASH_DASH] = ACTIONS(4146), - [anon_sym_PLUS_PLUS] = ACTIONS(4146), - [anon_sym_DOT] = ACTIONS(4154), - [anon_sym_DOT_STAR] = ACTIONS(4146), - [anon_sym_DASH_GT] = ACTIONS(4146), - [anon_sym_L_DQUOTE] = ACTIONS(3623), - [anon_sym_u_DQUOTE] = ACTIONS(3623), - [anon_sym_U_DQUOTE] = ACTIONS(3623), - [anon_sym_u8_DQUOTE] = ACTIONS(3623), - [anon_sym_DQUOTE] = ACTIONS(3623), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(3627), - [anon_sym_LR_DQUOTE] = ACTIONS(3627), - [anon_sym_uR_DQUOTE] = ACTIONS(3627), - [anon_sym_UR_DQUOTE] = ACTIONS(3627), - [anon_sym_u8R_DQUOTE] = ACTIONS(3627), + [2217] = { + [sym_string_literal] = STATE(2234), + [sym_template_argument_list] = STATE(3213), + [sym_raw_string_literal] = STATE(2234), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4166), + [anon_sym_COMMA] = ACTIONS(4166), + [anon_sym_RPAREN] = ACTIONS(4166), + [anon_sym_LPAREN2] = ACTIONS(4166), + [anon_sym_DASH] = ACTIONS(4174), + [anon_sym_PLUS] = ACTIONS(4174), + [anon_sym_STAR] = ACTIONS(4174), + [anon_sym_SLASH] = ACTIONS(4174), + [anon_sym_PERCENT] = ACTIONS(4174), + [anon_sym_PIPE_PIPE] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4166), + [anon_sym_PIPE] = ACTIONS(4174), + [anon_sym_CARET] = ACTIONS(4174), + [anon_sym_AMP] = ACTIONS(4174), + [anon_sym_EQ_EQ] = ACTIONS(4166), + [anon_sym_BANG_EQ] = ACTIONS(4166), + [anon_sym_GT] = ACTIONS(4174), + [anon_sym_GT_EQ] = ACTIONS(4166), + [anon_sym_LT_EQ] = ACTIONS(4174), + [anon_sym_LT] = ACTIONS(5052), + [anon_sym_LT_LT] = ACTIONS(4174), + [anon_sym_GT_GT] = ACTIONS(4174), + [anon_sym_COLON_COLON] = ACTIONS(4187), + [anon_sym_LBRACE] = ACTIONS(4192), + [anon_sym_LBRACK] = ACTIONS(4166), + [anon_sym_EQ] = ACTIONS(4174), + [anon_sym_QMARK] = ACTIONS(4166), + [anon_sym_STAR_EQ] = ACTIONS(4166), + [anon_sym_SLASH_EQ] = ACTIONS(4166), + [anon_sym_PERCENT_EQ] = ACTIONS(4166), + [anon_sym_PLUS_EQ] = ACTIONS(4166), + [anon_sym_DASH_EQ] = ACTIONS(4166), + [anon_sym_LT_LT_EQ] = ACTIONS(4166), + [anon_sym_GT_GT_EQ] = ACTIONS(4166), + [anon_sym_AMP_EQ] = ACTIONS(4166), + [anon_sym_CARET_EQ] = ACTIONS(4166), + [anon_sym_PIPE_EQ] = ACTIONS(4166), + [anon_sym_and_eq] = ACTIONS(4166), + [anon_sym_or_eq] = ACTIONS(4166), + [anon_sym_xor_eq] = ACTIONS(4166), + [anon_sym_LT_EQ_GT] = ACTIONS(4166), + [anon_sym_or] = ACTIONS(4174), + [anon_sym_and] = ACTIONS(4174), + [anon_sym_bitor] = ACTIONS(4166), + [anon_sym_xor] = ACTIONS(4174), + [anon_sym_bitand] = ACTIONS(4166), + [anon_sym_not_eq] = ACTIONS(4166), + [anon_sym_DASH_DASH] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4174), + [anon_sym_DOT_STAR] = ACTIONS(4166), + [anon_sym_DASH_GT] = ACTIONS(4174), + [anon_sym_L_DQUOTE] = ACTIONS(5048), + [anon_sym_u_DQUOTE] = ACTIONS(5048), + [anon_sym_U_DQUOTE] = ACTIONS(5048), + [anon_sym_u8_DQUOTE] = ACTIONS(5048), + [anon_sym_DQUOTE] = ACTIONS(5048), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5050), + [anon_sym_LR_DQUOTE] = ACTIONS(5050), + [anon_sym_uR_DQUOTE] = ACTIONS(5050), + [anon_sym_UR_DQUOTE] = ACTIONS(5050), + [anon_sym_u8R_DQUOTE] = ACTIONS(5050), + [anon_sym_DASH_GT_STAR] = ACTIONS(4166), }, - [2189] = { - [sym_string_literal] = STATE(2182), - [sym_raw_string_literal] = STATE(2182), - [aux_sym_concatenated_string_repeat1] = STATE(2182), - [sym_identifier] = ACTIONS(6115), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5390), - [anon_sym_COMMA] = ACTIONS(5390), - [anon_sym_RPAREN] = ACTIONS(5390), - [anon_sym_LPAREN2] = ACTIONS(5390), - [anon_sym_DASH] = ACTIONS(5392), - [anon_sym_PLUS] = ACTIONS(5392), - [anon_sym_STAR] = ACTIONS(5392), - [anon_sym_SLASH] = ACTIONS(5392), - [anon_sym_PERCENT] = ACTIONS(5392), - [anon_sym_PIPE_PIPE] = ACTIONS(5390), - [anon_sym_AMP_AMP] = ACTIONS(5390), - [anon_sym_PIPE] = ACTIONS(5392), - [anon_sym_CARET] = ACTIONS(5392), - [anon_sym_AMP] = ACTIONS(5392), - [anon_sym_EQ_EQ] = ACTIONS(5390), - [anon_sym_BANG_EQ] = ACTIONS(5390), - [anon_sym_GT] = ACTIONS(5392), - [anon_sym_GT_EQ] = ACTIONS(5390), - [anon_sym_LT_EQ] = ACTIONS(5392), - [anon_sym_LT] = ACTIONS(5392), - [anon_sym_LT_LT] = ACTIONS(5392), - [anon_sym_GT_GT] = ACTIONS(5392), - [anon_sym_LBRACK] = ACTIONS(5390), - [anon_sym_EQ] = ACTIONS(5392), - [anon_sym_QMARK] = ACTIONS(5390), - [anon_sym_STAR_EQ] = ACTIONS(5390), - [anon_sym_SLASH_EQ] = ACTIONS(5390), - [anon_sym_PERCENT_EQ] = ACTIONS(5390), - [anon_sym_PLUS_EQ] = ACTIONS(5390), - [anon_sym_DASH_EQ] = ACTIONS(5390), - [anon_sym_LT_LT_EQ] = ACTIONS(5390), - [anon_sym_GT_GT_EQ] = ACTIONS(5390), - [anon_sym_AMP_EQ] = ACTIONS(5390), - [anon_sym_CARET_EQ] = ACTIONS(5390), - [anon_sym_PIPE_EQ] = ACTIONS(5390), - [anon_sym_and_eq] = ACTIONS(5392), - [anon_sym_or_eq] = ACTIONS(5392), - [anon_sym_xor_eq] = ACTIONS(5392), - [anon_sym_LT_EQ_GT] = ACTIONS(5390), - [anon_sym_or] = ACTIONS(5392), - [anon_sym_and] = ACTIONS(5392), - [anon_sym_bitor] = ACTIONS(5392), - [anon_sym_xor] = ACTIONS(5392), - [anon_sym_bitand] = ACTIONS(5392), - [anon_sym_not_eq] = ACTIONS(5392), - [anon_sym_DASH_DASH] = ACTIONS(5390), - [anon_sym_PLUS_PLUS] = ACTIONS(5390), - [anon_sym_DOT] = ACTIONS(5392), - [anon_sym_DOT_STAR] = ACTIONS(5390), - [anon_sym_DASH_GT] = ACTIONS(5392), - [anon_sym_L_DQUOTE] = ACTIONS(5040), - [anon_sym_u_DQUOTE] = ACTIONS(5040), - [anon_sym_U_DQUOTE] = ACTIONS(5040), - [anon_sym_u8_DQUOTE] = ACTIONS(5040), - [anon_sym_DQUOTE] = ACTIONS(5040), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5042), - [anon_sym_LR_DQUOTE] = ACTIONS(5042), - [anon_sym_uR_DQUOTE] = ACTIONS(5042), - [anon_sym_UR_DQUOTE] = ACTIONS(5042), - [anon_sym_u8R_DQUOTE] = ACTIONS(5042), - [anon_sym_DASH_GT_STAR] = ACTIONS(5390), - [sym_literal_suffix] = ACTIONS(5392), + [2218] = { + [sym_attribute_declaration] = STATE(2270), + [sym_parameter_list] = STATE(1942), + [aux_sym_attributed_declarator_repeat1] = STATE(2270), + [sym_identifier] = ACTIONS(6112), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6114), + [anon_sym_COMMA] = ACTIONS(6114), + [anon_sym_RPAREN] = ACTIONS(6114), + [aux_sym_preproc_if_token2] = ACTIONS(6114), + [aux_sym_preproc_else_token1] = ACTIONS(6114), + [aux_sym_preproc_elif_token1] = ACTIONS(6112), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6114), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6114), + [anon_sym_LPAREN2] = ACTIONS(6094), + [anon_sym_DASH] = ACTIONS(6112), + [anon_sym_PLUS] = ACTIONS(6112), + [anon_sym_STAR] = ACTIONS(6112), + [anon_sym_SLASH] = ACTIONS(6112), + [anon_sym_PERCENT] = ACTIONS(6112), + [anon_sym_PIPE_PIPE] = ACTIONS(6114), + [anon_sym_AMP_AMP] = ACTIONS(6114), + [anon_sym_PIPE] = ACTIONS(6112), + [anon_sym_CARET] = ACTIONS(6112), + [anon_sym_AMP] = ACTIONS(6112), + [anon_sym_EQ_EQ] = ACTIONS(6114), + [anon_sym_BANG_EQ] = ACTIONS(6114), + [anon_sym_GT] = ACTIONS(6112), + [anon_sym_GT_EQ] = ACTIONS(6114), + [anon_sym_LT_EQ] = ACTIONS(6112), + [anon_sym_LT] = ACTIONS(6112), + [anon_sym_LT_LT] = ACTIONS(6112), + [anon_sym_GT_GT] = ACTIONS(6112), + [anon_sym_SEMI] = ACTIONS(6114), + [anon_sym___attribute__] = ACTIONS(6112), + [anon_sym___attribute] = ACTIONS(6112), + [anon_sym_COLON] = ACTIONS(6114), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6096), + [anon_sym_RBRACE] = ACTIONS(6114), + [anon_sym_LBRACK] = ACTIONS(6098), + [anon_sym_RBRACK] = ACTIONS(6114), + [anon_sym_EQ] = ACTIONS(6112), + [anon_sym_QMARK] = ACTIONS(6114), + [anon_sym_STAR_EQ] = ACTIONS(6114), + [anon_sym_SLASH_EQ] = ACTIONS(6114), + [anon_sym_PERCENT_EQ] = ACTIONS(6114), + [anon_sym_PLUS_EQ] = ACTIONS(6114), + [anon_sym_DASH_EQ] = ACTIONS(6114), + [anon_sym_LT_LT_EQ] = ACTIONS(6114), + [anon_sym_GT_GT_EQ] = ACTIONS(6114), + [anon_sym_AMP_EQ] = ACTIONS(6114), + [anon_sym_CARET_EQ] = ACTIONS(6114), + [anon_sym_PIPE_EQ] = ACTIONS(6114), + [anon_sym_and_eq] = ACTIONS(6112), + [anon_sym_or_eq] = ACTIONS(6112), + [anon_sym_xor_eq] = ACTIONS(6112), + [anon_sym_LT_EQ_GT] = ACTIONS(6114), + [anon_sym_or] = ACTIONS(6112), + [anon_sym_and] = ACTIONS(6112), + [anon_sym_bitor] = ACTIONS(6112), + [anon_sym_xor] = ACTIONS(6112), + [anon_sym_bitand] = ACTIONS(6112), + [anon_sym_not_eq] = ACTIONS(6112), + [anon_sym_DASH_DASH] = ACTIONS(6114), + [anon_sym_PLUS_PLUS] = ACTIONS(6114), + [anon_sym_DOT] = ACTIONS(6112), + [anon_sym_DOT_STAR] = ACTIONS(6114), + [anon_sym_DASH_GT] = ACTIONS(6114), + [sym_comment] = ACTIONS(3), }, - [2190] = { - [sym_attribute_specifier] = STATE(2227), - [sym_identifier] = ACTIONS(6117), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6119), + [2219] = { + [sym_string_literal] = STATE(2657), + [sym_template_argument_list] = STATE(3605), + [sym_raw_string_literal] = STATE(2657), + [aux_sym_structured_binding_declarator_repeat1] = STATE(7542), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6116), [anon_sym_COMMA] = ACTIONS(6119), - [anon_sym_RPAREN] = ACTIONS(6119), - [aux_sym_preproc_if_token2] = ACTIONS(6119), - [aux_sym_preproc_else_token1] = ACTIONS(6119), - [aux_sym_preproc_elif_token1] = ACTIONS(6117), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6119), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6119), - [anon_sym_LPAREN2] = ACTIONS(6119), - [anon_sym_DASH] = ACTIONS(6117), - [anon_sym_PLUS] = ACTIONS(6117), - [anon_sym_STAR] = ACTIONS(6117), - [anon_sym_SLASH] = ACTIONS(6117), - [anon_sym_PERCENT] = ACTIONS(6117), - [anon_sym_PIPE_PIPE] = ACTIONS(6119), - [anon_sym_AMP_AMP] = ACTIONS(6119), - [anon_sym_PIPE] = ACTIONS(6117), - [anon_sym_CARET] = ACTIONS(6117), - [anon_sym_AMP] = ACTIONS(6117), - [anon_sym_EQ_EQ] = ACTIONS(6119), - [anon_sym_BANG_EQ] = ACTIONS(6119), - [anon_sym_GT] = ACTIONS(6117), - [anon_sym_GT_EQ] = ACTIONS(6119), - [anon_sym_LT_EQ] = ACTIONS(6117), - [anon_sym_LT] = ACTIONS(6117), - [anon_sym_LT_LT] = ACTIONS(6117), - [anon_sym_GT_GT] = ACTIONS(6117), - [anon_sym_SEMI] = ACTIONS(6119), - [anon_sym___attribute__] = ACTIONS(5497), - [anon_sym___attribute] = ACTIONS(5497), - [anon_sym_COLON] = ACTIONS(6119), - [anon_sym_LBRACE] = ACTIONS(6119), - [anon_sym_RBRACE] = ACTIONS(6119), - [anon_sym_LBRACK] = ACTIONS(6119), - [anon_sym_RBRACK] = ACTIONS(6119), - [anon_sym_EQ] = ACTIONS(6117), - [anon_sym_QMARK] = ACTIONS(6119), - [anon_sym_STAR_EQ] = ACTIONS(6119), - [anon_sym_SLASH_EQ] = ACTIONS(6119), - [anon_sym_PERCENT_EQ] = ACTIONS(6119), - [anon_sym_PLUS_EQ] = ACTIONS(6119), - [anon_sym_DASH_EQ] = ACTIONS(6119), - [anon_sym_LT_LT_EQ] = ACTIONS(6119), - [anon_sym_GT_GT_EQ] = ACTIONS(6119), - [anon_sym_AMP_EQ] = ACTIONS(6119), - [anon_sym_CARET_EQ] = ACTIONS(6119), - [anon_sym_PIPE_EQ] = ACTIONS(6119), - [anon_sym_and_eq] = ACTIONS(6117), - [anon_sym_or_eq] = ACTIONS(6117), - [anon_sym_xor_eq] = ACTIONS(6117), - [anon_sym_LT_EQ_GT] = ACTIONS(6119), - [anon_sym_or] = ACTIONS(6117), - [anon_sym_and] = ACTIONS(6117), - [anon_sym_bitor] = ACTIONS(6117), - [anon_sym_xor] = ACTIONS(6117), - [anon_sym_bitand] = ACTIONS(6117), - [anon_sym_not_eq] = ACTIONS(6117), - [anon_sym_DASH_DASH] = ACTIONS(6119), - [anon_sym_PLUS_PLUS] = ACTIONS(6119), - [anon_sym_DOT] = ACTIONS(6117), - [anon_sym_DOT_STAR] = ACTIONS(6119), - [anon_sym_DASH_GT] = ACTIONS(6119), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6117), - [anon_sym_decltype] = ACTIONS(6117), + [anon_sym_LPAREN2] = ACTIONS(4166), + [anon_sym_DASH] = ACTIONS(4174), + [anon_sym_PLUS] = ACTIONS(4174), + [anon_sym_STAR] = ACTIONS(4174), + [anon_sym_SLASH] = ACTIONS(4174), + [anon_sym_PERCENT] = ACTIONS(4174), + [anon_sym_PIPE_PIPE] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4166), + [anon_sym_PIPE] = ACTIONS(4174), + [anon_sym_CARET] = ACTIONS(4174), + [anon_sym_AMP] = ACTIONS(4174), + [anon_sym_EQ_EQ] = ACTIONS(4166), + [anon_sym_BANG_EQ] = ACTIONS(4166), + [anon_sym_GT] = ACTIONS(4174), + [anon_sym_GT_EQ] = ACTIONS(4166), + [anon_sym_LT_EQ] = ACTIONS(4174), + [anon_sym_LT] = ACTIONS(5085), + [anon_sym_LT_LT] = ACTIONS(4174), + [anon_sym_GT_GT] = ACTIONS(4174), + [anon_sym_COLON_COLON] = ACTIONS(4187), + [anon_sym_LBRACE] = ACTIONS(4192), + [anon_sym_LBRACK] = ACTIONS(4166), + [anon_sym_RBRACK] = ACTIONS(6122), + [anon_sym_EQ] = ACTIONS(6126), + [anon_sym_QMARK] = ACTIONS(4166), + [anon_sym_STAR_EQ] = ACTIONS(6128), + [anon_sym_SLASH_EQ] = ACTIONS(6128), + [anon_sym_PERCENT_EQ] = ACTIONS(6128), + [anon_sym_PLUS_EQ] = ACTIONS(6128), + [anon_sym_DASH_EQ] = ACTIONS(6128), + [anon_sym_LT_LT_EQ] = ACTIONS(6128), + [anon_sym_GT_GT_EQ] = ACTIONS(6128), + [anon_sym_AMP_EQ] = ACTIONS(6128), + [anon_sym_CARET_EQ] = ACTIONS(6128), + [anon_sym_PIPE_EQ] = ACTIONS(6128), + [anon_sym_and_eq] = ACTIONS(6128), + [anon_sym_or_eq] = ACTIONS(6128), + [anon_sym_xor_eq] = ACTIONS(6128), + [anon_sym_LT_EQ_GT] = ACTIONS(4166), + [anon_sym_or] = ACTIONS(4174), + [anon_sym_and] = ACTIONS(4174), + [anon_sym_bitor] = ACTIONS(4166), + [anon_sym_xor] = ACTIONS(4174), + [anon_sym_bitand] = ACTIONS(4166), + [anon_sym_not_eq] = ACTIONS(4166), + [anon_sym_DASH_DASH] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4174), + [anon_sym_DOT_STAR] = ACTIONS(4166), + [anon_sym_DASH_GT] = ACTIONS(4166), + [anon_sym_L_DQUOTE] = ACTIONS(3631), + [anon_sym_u_DQUOTE] = ACTIONS(3631), + [anon_sym_U_DQUOTE] = ACTIONS(3631), + [anon_sym_u8_DQUOTE] = ACTIONS(3631), + [anon_sym_DQUOTE] = ACTIONS(3631), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3635), + [anon_sym_LR_DQUOTE] = ACTIONS(3635), + [anon_sym_uR_DQUOTE] = ACTIONS(3635), + [anon_sym_UR_DQUOTE] = ACTIONS(3635), + [anon_sym_u8R_DQUOTE] = ACTIONS(3635), }, - [2191] = { - [sym_attribute_specifier] = STATE(2232), - [sym_identifier] = ACTIONS(6121), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6123), - [anon_sym_COMMA] = ACTIONS(6123), - [anon_sym_RPAREN] = ACTIONS(6123), - [aux_sym_preproc_if_token2] = ACTIONS(6123), - [aux_sym_preproc_else_token1] = ACTIONS(6123), - [aux_sym_preproc_elif_token1] = ACTIONS(6121), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6123), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6123), - [anon_sym_LPAREN2] = ACTIONS(6123), - [anon_sym_DASH] = ACTIONS(6121), - [anon_sym_PLUS] = ACTIONS(6121), - [anon_sym_STAR] = ACTIONS(6121), - [anon_sym_SLASH] = ACTIONS(6121), - [anon_sym_PERCENT] = ACTIONS(6121), - [anon_sym_PIPE_PIPE] = ACTIONS(6123), - [anon_sym_AMP_AMP] = ACTIONS(6123), - [anon_sym_PIPE] = ACTIONS(6121), - [anon_sym_CARET] = ACTIONS(6121), - [anon_sym_AMP] = ACTIONS(6121), - [anon_sym_EQ_EQ] = ACTIONS(6123), - [anon_sym_BANG_EQ] = ACTIONS(6123), - [anon_sym_GT] = ACTIONS(6121), - [anon_sym_GT_EQ] = ACTIONS(6123), - [anon_sym_LT_EQ] = ACTIONS(6121), - [anon_sym_LT] = ACTIONS(6121), - [anon_sym_LT_LT] = ACTIONS(6121), - [anon_sym_GT_GT] = ACTIONS(6121), - [anon_sym_SEMI] = ACTIONS(6123), - [anon_sym___attribute__] = ACTIONS(5497), - [anon_sym___attribute] = ACTIONS(5497), - [anon_sym_COLON] = ACTIONS(6123), - [anon_sym_LBRACE] = ACTIONS(6123), - [anon_sym_RBRACE] = ACTIONS(6123), - [anon_sym_LBRACK] = ACTIONS(6123), - [anon_sym_RBRACK] = ACTIONS(6123), - [anon_sym_EQ] = ACTIONS(6121), - [anon_sym_QMARK] = ACTIONS(6123), - [anon_sym_STAR_EQ] = ACTIONS(6123), - [anon_sym_SLASH_EQ] = ACTIONS(6123), - [anon_sym_PERCENT_EQ] = ACTIONS(6123), - [anon_sym_PLUS_EQ] = ACTIONS(6123), - [anon_sym_DASH_EQ] = ACTIONS(6123), - [anon_sym_LT_LT_EQ] = ACTIONS(6123), - [anon_sym_GT_GT_EQ] = ACTIONS(6123), - [anon_sym_AMP_EQ] = ACTIONS(6123), - [anon_sym_CARET_EQ] = ACTIONS(6123), - [anon_sym_PIPE_EQ] = ACTIONS(6123), - [anon_sym_and_eq] = ACTIONS(6121), - [anon_sym_or_eq] = ACTIONS(6121), - [anon_sym_xor_eq] = ACTIONS(6121), - [anon_sym_LT_EQ_GT] = ACTIONS(6123), - [anon_sym_or] = ACTIONS(6121), - [anon_sym_and] = ACTIONS(6121), - [anon_sym_bitor] = ACTIONS(6121), - [anon_sym_xor] = ACTIONS(6121), - [anon_sym_bitand] = ACTIONS(6121), - [anon_sym_not_eq] = ACTIONS(6121), - [anon_sym_DASH_DASH] = ACTIONS(6123), - [anon_sym_PLUS_PLUS] = ACTIONS(6123), - [anon_sym_DOT] = ACTIONS(6121), - [anon_sym_DOT_STAR] = ACTIONS(6123), - [anon_sym_DASH_GT] = ACTIONS(6123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6121), - [anon_sym_decltype] = ACTIONS(6121), + [2220] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(5078), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5080), + [anon_sym_COMMA] = ACTIONS(5080), + [anon_sym_LPAREN2] = ACTIONS(5080), + [anon_sym_DASH] = ACTIONS(5078), + [anon_sym_PLUS] = ACTIONS(5078), + [anon_sym_STAR] = ACTIONS(5080), + [anon_sym_SLASH] = ACTIONS(5078), + [anon_sym_PERCENT] = ACTIONS(5080), + [anon_sym_PIPE_PIPE] = ACTIONS(5080), + [anon_sym_AMP_AMP] = ACTIONS(5080), + [anon_sym_PIPE] = ACTIONS(5078), + [anon_sym_CARET] = ACTIONS(5080), + [anon_sym_AMP] = ACTIONS(5078), + [anon_sym_EQ_EQ] = ACTIONS(5080), + [anon_sym_BANG_EQ] = ACTIONS(5080), + [anon_sym_GT] = ACTIONS(5078), + [anon_sym_GT_EQ] = ACTIONS(5078), + [anon_sym_LT_EQ] = ACTIONS(5078), + [anon_sym_LT] = ACTIONS(5078), + [anon_sym_LT_LT] = ACTIONS(5080), + [anon_sym_GT_GT] = ACTIONS(5078), + [anon_sym___extension__] = ACTIONS(5078), + [anon_sym___attribute__] = ACTIONS(5078), + [anon_sym___attribute] = ACTIONS(5078), + [anon_sym_LBRACE] = ACTIONS(5080), + [anon_sym_signed] = ACTIONS(6130), + [anon_sym_unsigned] = ACTIONS(6130), + [anon_sym_long] = ACTIONS(6130), + [anon_sym_short] = ACTIONS(6130), + [anon_sym_LBRACK] = ACTIONS(5080), + [anon_sym_const] = ACTIONS(5078), + [anon_sym_constexpr] = ACTIONS(5078), + [anon_sym_volatile] = ACTIONS(5078), + [anon_sym_restrict] = ACTIONS(5078), + [anon_sym___restrict__] = ACTIONS(5078), + [anon_sym__Atomic] = ACTIONS(5078), + [anon_sym__Noreturn] = ACTIONS(5078), + [anon_sym_noreturn] = ACTIONS(5078), + [anon_sym__Nonnull] = ACTIONS(5078), + [anon_sym_mutable] = ACTIONS(5078), + [anon_sym_constinit] = ACTIONS(5078), + [anon_sym_consteval] = ACTIONS(5078), + [anon_sym_alignas] = ACTIONS(5078), + [anon_sym__Alignas] = ACTIONS(5078), + [sym_primitive_type] = ACTIONS(5078), + [anon_sym_QMARK] = ACTIONS(5080), + [anon_sym_LT_EQ_GT] = ACTIONS(5080), + [anon_sym_or] = ACTIONS(5078), + [anon_sym_and] = ACTIONS(5078), + [anon_sym_bitor] = ACTIONS(5078), + [anon_sym_xor] = ACTIONS(5078), + [anon_sym_bitand] = ACTIONS(5078), + [anon_sym_not_eq] = ACTIONS(5078), + [anon_sym_DASH_DASH] = ACTIONS(5080), + [anon_sym_PLUS_PLUS] = ACTIONS(5080), + [anon_sym_DOT] = ACTIONS(5078), + [anon_sym_DOT_STAR] = ACTIONS(5080), + [anon_sym_DASH_GT] = ACTIONS(5080), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5078), + [anon_sym_decltype] = ACTIONS(5078), + [anon_sym_final] = ACTIONS(5078), + [anon_sym_override] = ACTIONS(5078), + [anon_sym_GT2] = ACTIONS(5080), + [anon_sym_requires] = ACTIONS(5078), }, - [2192] = { - [sym_attribute_specifier] = STATE(2243), - [sym_identifier] = ACTIONS(6125), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6127), - [anon_sym_COMMA] = ACTIONS(6127), - [anon_sym_RPAREN] = ACTIONS(6127), - [aux_sym_preproc_if_token2] = ACTIONS(6127), - [aux_sym_preproc_else_token1] = ACTIONS(6127), - [aux_sym_preproc_elif_token1] = ACTIONS(6125), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6127), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6127), - [anon_sym_LPAREN2] = ACTIONS(6127), - [anon_sym_DASH] = ACTIONS(6125), - [anon_sym_PLUS] = ACTIONS(6125), - [anon_sym_STAR] = ACTIONS(6125), - [anon_sym_SLASH] = ACTIONS(6125), - [anon_sym_PERCENT] = ACTIONS(6125), - [anon_sym_PIPE_PIPE] = ACTIONS(6127), - [anon_sym_AMP_AMP] = ACTIONS(6127), - [anon_sym_PIPE] = ACTIONS(6125), - [anon_sym_CARET] = ACTIONS(6125), - [anon_sym_AMP] = ACTIONS(6125), - [anon_sym_EQ_EQ] = ACTIONS(6127), - [anon_sym_BANG_EQ] = ACTIONS(6127), - [anon_sym_GT] = ACTIONS(6125), - [anon_sym_GT_EQ] = ACTIONS(6127), - [anon_sym_LT_EQ] = ACTIONS(6125), - [anon_sym_LT] = ACTIONS(6125), - [anon_sym_LT_LT] = ACTIONS(6125), - [anon_sym_GT_GT] = ACTIONS(6125), - [anon_sym_SEMI] = ACTIONS(6127), - [anon_sym___attribute__] = ACTIONS(5497), - [anon_sym___attribute] = ACTIONS(5497), - [anon_sym_COLON] = ACTIONS(6127), - [anon_sym_LBRACE] = ACTIONS(6127), - [anon_sym_RBRACE] = ACTIONS(6127), - [anon_sym_LBRACK] = ACTIONS(6127), - [anon_sym_RBRACK] = ACTIONS(6127), - [anon_sym_EQ] = ACTIONS(6125), - [anon_sym_QMARK] = ACTIONS(6127), - [anon_sym_STAR_EQ] = ACTIONS(6127), - [anon_sym_SLASH_EQ] = ACTIONS(6127), - [anon_sym_PERCENT_EQ] = ACTIONS(6127), - [anon_sym_PLUS_EQ] = ACTIONS(6127), - [anon_sym_DASH_EQ] = ACTIONS(6127), - [anon_sym_LT_LT_EQ] = ACTIONS(6127), - [anon_sym_GT_GT_EQ] = ACTIONS(6127), - [anon_sym_AMP_EQ] = ACTIONS(6127), - [anon_sym_CARET_EQ] = ACTIONS(6127), - [anon_sym_PIPE_EQ] = ACTIONS(6127), - [anon_sym_and_eq] = ACTIONS(6125), - [anon_sym_or_eq] = ACTIONS(6125), - [anon_sym_xor_eq] = ACTIONS(6125), - [anon_sym_LT_EQ_GT] = ACTIONS(6127), - [anon_sym_or] = ACTIONS(6125), - [anon_sym_and] = ACTIONS(6125), - [anon_sym_bitor] = ACTIONS(6125), - [anon_sym_xor] = ACTIONS(6125), - [anon_sym_bitand] = ACTIONS(6125), - [anon_sym_not_eq] = ACTIONS(6125), - [anon_sym_DASH_DASH] = ACTIONS(6127), - [anon_sym_PLUS_PLUS] = ACTIONS(6127), - [anon_sym_DOT] = ACTIONS(6125), - [anon_sym_DOT_STAR] = ACTIONS(6127), - [anon_sym_DASH_GT] = ACTIONS(6127), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6125), - [anon_sym_decltype] = ACTIONS(6125), + [2221] = { + [sym_decltype_auto] = STATE(2321), + [sym_identifier] = ACTIONS(5533), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5535), + [anon_sym_COMMA] = ACTIONS(5535), + [anon_sym_RPAREN] = ACTIONS(5535), + [aux_sym_preproc_if_token2] = ACTIONS(5535), + [aux_sym_preproc_else_token1] = ACTIONS(5535), + [aux_sym_preproc_elif_token1] = ACTIONS(5533), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5535), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5535), + [anon_sym_LPAREN2] = ACTIONS(5535), + [anon_sym_DASH] = ACTIONS(5533), + [anon_sym_PLUS] = ACTIONS(5533), + [anon_sym_STAR] = ACTIONS(5533), + [anon_sym_SLASH] = ACTIONS(5533), + [anon_sym_PERCENT] = ACTIONS(5533), + [anon_sym_PIPE_PIPE] = ACTIONS(5535), + [anon_sym_AMP_AMP] = ACTIONS(5535), + [anon_sym_PIPE] = ACTIONS(5533), + [anon_sym_CARET] = ACTIONS(5533), + [anon_sym_AMP] = ACTIONS(5533), + [anon_sym_EQ_EQ] = ACTIONS(5535), + [anon_sym_BANG_EQ] = ACTIONS(5535), + [anon_sym_GT] = ACTIONS(5533), + [anon_sym_GT_EQ] = ACTIONS(5535), + [anon_sym_LT_EQ] = ACTIONS(5533), + [anon_sym_LT] = ACTIONS(5533), + [anon_sym_LT_LT] = ACTIONS(5533), + [anon_sym_GT_GT] = ACTIONS(5533), + [anon_sym_SEMI] = ACTIONS(5535), + [anon_sym___attribute__] = ACTIONS(5533), + [anon_sym___attribute] = ACTIONS(5533), + [anon_sym_COLON] = ACTIONS(5535), + [anon_sym_LBRACE] = ACTIONS(5535), + [anon_sym_RBRACE] = ACTIONS(5535), + [anon_sym_LBRACK] = ACTIONS(5535), + [anon_sym_RBRACK] = ACTIONS(5535), + [anon_sym_EQ] = ACTIONS(5533), + [anon_sym_QMARK] = ACTIONS(5535), + [anon_sym_STAR_EQ] = ACTIONS(5535), + [anon_sym_SLASH_EQ] = ACTIONS(5535), + [anon_sym_PERCENT_EQ] = ACTIONS(5535), + [anon_sym_PLUS_EQ] = ACTIONS(5535), + [anon_sym_DASH_EQ] = ACTIONS(5535), + [anon_sym_LT_LT_EQ] = ACTIONS(5535), + [anon_sym_GT_GT_EQ] = ACTIONS(5535), + [anon_sym_AMP_EQ] = ACTIONS(5535), + [anon_sym_CARET_EQ] = ACTIONS(5535), + [anon_sym_PIPE_EQ] = ACTIONS(5535), + [anon_sym_and_eq] = ACTIONS(5533), + [anon_sym_or_eq] = ACTIONS(5533), + [anon_sym_xor_eq] = ACTIONS(5533), + [anon_sym_LT_EQ_GT] = ACTIONS(5535), + [anon_sym_or] = ACTIONS(5533), + [anon_sym_and] = ACTIONS(5533), + [anon_sym_bitor] = ACTIONS(5533), + [anon_sym_xor] = ACTIONS(5533), + [anon_sym_bitand] = ACTIONS(5533), + [anon_sym_not_eq] = ACTIONS(5533), + [anon_sym_DASH_DASH] = ACTIONS(5535), + [anon_sym_PLUS_PLUS] = ACTIONS(5535), + [anon_sym_DOT] = ACTIONS(5533), + [anon_sym_DOT_STAR] = ACTIONS(5535), + [anon_sym_DASH_GT] = ACTIONS(5535), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5849), + [anon_sym_decltype] = ACTIONS(5851), }, - [2193] = { - [sym_attribute_specifier] = STATE(2246), - [sym_identifier] = ACTIONS(6129), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6131), - [anon_sym_COMMA] = ACTIONS(6131), - [anon_sym_RPAREN] = ACTIONS(6131), - [aux_sym_preproc_if_token2] = ACTIONS(6131), - [aux_sym_preproc_else_token1] = ACTIONS(6131), - [aux_sym_preproc_elif_token1] = ACTIONS(6129), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6131), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6131), - [anon_sym_LPAREN2] = ACTIONS(6131), - [anon_sym_DASH] = ACTIONS(6129), - [anon_sym_PLUS] = ACTIONS(6129), - [anon_sym_STAR] = ACTIONS(6129), - [anon_sym_SLASH] = ACTIONS(6129), - [anon_sym_PERCENT] = ACTIONS(6129), - [anon_sym_PIPE_PIPE] = ACTIONS(6131), - [anon_sym_AMP_AMP] = ACTIONS(6131), - [anon_sym_PIPE] = ACTIONS(6129), - [anon_sym_CARET] = ACTIONS(6129), - [anon_sym_AMP] = ACTIONS(6129), - [anon_sym_EQ_EQ] = ACTIONS(6131), - [anon_sym_BANG_EQ] = ACTIONS(6131), - [anon_sym_GT] = ACTIONS(6129), - [anon_sym_GT_EQ] = ACTIONS(6131), - [anon_sym_LT_EQ] = ACTIONS(6129), - [anon_sym_LT] = ACTIONS(6129), - [anon_sym_LT_LT] = ACTIONS(6129), - [anon_sym_GT_GT] = ACTIONS(6129), - [anon_sym_SEMI] = ACTIONS(6131), - [anon_sym___attribute__] = ACTIONS(5497), - [anon_sym___attribute] = ACTIONS(5497), - [anon_sym_COLON] = ACTIONS(6131), - [anon_sym_LBRACE] = ACTIONS(6131), - [anon_sym_RBRACE] = ACTIONS(6131), - [anon_sym_LBRACK] = ACTIONS(6131), - [anon_sym_RBRACK] = ACTIONS(6131), - [anon_sym_EQ] = ACTIONS(6129), - [anon_sym_QMARK] = ACTIONS(6131), - [anon_sym_STAR_EQ] = ACTIONS(6131), - [anon_sym_SLASH_EQ] = ACTIONS(6131), - [anon_sym_PERCENT_EQ] = ACTIONS(6131), - [anon_sym_PLUS_EQ] = ACTIONS(6131), - [anon_sym_DASH_EQ] = ACTIONS(6131), - [anon_sym_LT_LT_EQ] = ACTIONS(6131), - [anon_sym_GT_GT_EQ] = ACTIONS(6131), - [anon_sym_AMP_EQ] = ACTIONS(6131), - [anon_sym_CARET_EQ] = ACTIONS(6131), - [anon_sym_PIPE_EQ] = ACTIONS(6131), - [anon_sym_and_eq] = ACTIONS(6129), - [anon_sym_or_eq] = ACTIONS(6129), - [anon_sym_xor_eq] = ACTIONS(6129), - [anon_sym_LT_EQ_GT] = ACTIONS(6131), - [anon_sym_or] = ACTIONS(6129), - [anon_sym_and] = ACTIONS(6129), - [anon_sym_bitor] = ACTIONS(6129), - [anon_sym_xor] = ACTIONS(6129), - [anon_sym_bitand] = ACTIONS(6129), - [anon_sym_not_eq] = ACTIONS(6129), - [anon_sym_DASH_DASH] = ACTIONS(6131), - [anon_sym_PLUS_PLUS] = ACTIONS(6131), - [anon_sym_DOT] = ACTIONS(6129), - [anon_sym_DOT_STAR] = ACTIONS(6131), - [anon_sym_DASH_GT] = ACTIONS(6131), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6129), - [anon_sym_decltype] = ACTIONS(6129), + [2222] = { + [sym_string_literal] = STATE(2657), + [sym_template_argument_list] = STATE(3605), + [sym_raw_string_literal] = STATE(2657), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4166), + [anon_sym_COMMA] = ACTIONS(4166), + [anon_sym_LPAREN2] = ACTIONS(4166), + [anon_sym_DASH] = ACTIONS(4174), + [anon_sym_PLUS] = ACTIONS(4174), + [anon_sym_STAR] = ACTIONS(4174), + [anon_sym_SLASH] = ACTIONS(4174), + [anon_sym_PERCENT] = ACTIONS(4174), + [anon_sym_PIPE_PIPE] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4166), + [anon_sym_PIPE] = ACTIONS(4174), + [anon_sym_CARET] = ACTIONS(4174), + [anon_sym_AMP] = ACTIONS(4174), + [anon_sym_EQ_EQ] = ACTIONS(4166), + [anon_sym_BANG_EQ] = ACTIONS(4166), + [anon_sym_GT] = ACTIONS(4174), + [anon_sym_GT_EQ] = ACTIONS(4166), + [anon_sym_LT_EQ] = ACTIONS(4174), + [anon_sym_LT] = ACTIONS(5085), + [anon_sym_LT_LT] = ACTIONS(4174), + [anon_sym_GT_GT] = ACTIONS(4174), + [anon_sym_SEMI] = ACTIONS(4166), + [anon_sym_COLON] = ACTIONS(4228), + [anon_sym_COLON_COLON] = ACTIONS(4187), + [anon_sym_LBRACE] = ACTIONS(4192), + [anon_sym_LBRACK] = ACTIONS(4166), + [anon_sym_EQ] = ACTIONS(4200), + [anon_sym_QMARK] = ACTIONS(4166), + [anon_sym_STAR_EQ] = ACTIONS(4202), + [anon_sym_SLASH_EQ] = ACTIONS(4202), + [anon_sym_PERCENT_EQ] = ACTIONS(4202), + [anon_sym_PLUS_EQ] = ACTIONS(4202), + [anon_sym_DASH_EQ] = ACTIONS(4202), + [anon_sym_LT_LT_EQ] = ACTIONS(4202), + [anon_sym_GT_GT_EQ] = ACTIONS(4202), + [anon_sym_AMP_EQ] = ACTIONS(4202), + [anon_sym_CARET_EQ] = ACTIONS(4202), + [anon_sym_PIPE_EQ] = ACTIONS(4202), + [anon_sym_and_eq] = ACTIONS(4202), + [anon_sym_or_eq] = ACTIONS(4202), + [anon_sym_xor_eq] = ACTIONS(4202), + [anon_sym_LT_EQ_GT] = ACTIONS(4166), + [anon_sym_or] = ACTIONS(4174), + [anon_sym_and] = ACTIONS(4174), + [anon_sym_bitor] = ACTIONS(4166), + [anon_sym_xor] = ACTIONS(4174), + [anon_sym_bitand] = ACTIONS(4166), + [anon_sym_not_eq] = ACTIONS(4166), + [anon_sym_DASH_DASH] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4174), + [anon_sym_DOT_STAR] = ACTIONS(4166), + [anon_sym_DASH_GT] = ACTIONS(4166), + [anon_sym_L_DQUOTE] = ACTIONS(3631), + [anon_sym_u_DQUOTE] = ACTIONS(3631), + [anon_sym_U_DQUOTE] = ACTIONS(3631), + [anon_sym_u8_DQUOTE] = ACTIONS(3631), + [anon_sym_DQUOTE] = ACTIONS(3631), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3635), + [anon_sym_LR_DQUOTE] = ACTIONS(3635), + [anon_sym_uR_DQUOTE] = ACTIONS(3635), + [anon_sym_UR_DQUOTE] = ACTIONS(3635), + [anon_sym_u8R_DQUOTE] = ACTIONS(3635), }, - [2194] = { + [2223] = { + [sym_type_qualifier] = STATE(2249), + [sym_alignas_qualifier] = STATE(2313), + [aux_sym__type_definition_type_repeat1] = STATE(2249), + [aux_sym_sized_type_specifier_repeat1] = STATE(2398), + [sym_identifier] = ACTIONS(6133), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5094), + [anon_sym_COMMA] = ACTIONS(5094), + [anon_sym_LPAREN2] = ACTIONS(5094), + [anon_sym_DASH] = ACTIONS(5096), + [anon_sym_PLUS] = ACTIONS(5096), + [anon_sym_STAR] = ACTIONS(5094), + [anon_sym_SLASH] = ACTIONS(5096), + [anon_sym_PERCENT] = ACTIONS(5094), + [anon_sym_PIPE_PIPE] = ACTIONS(5094), + [anon_sym_AMP_AMP] = ACTIONS(5094), + [anon_sym_PIPE] = ACTIONS(5096), + [anon_sym_CARET] = ACTIONS(5094), + [anon_sym_AMP] = ACTIONS(5096), + [anon_sym_EQ_EQ] = ACTIONS(5094), + [anon_sym_BANG_EQ] = ACTIONS(5094), + [anon_sym_GT] = ACTIONS(5096), + [anon_sym_GT_EQ] = ACTIONS(5096), + [anon_sym_LT_EQ] = ACTIONS(5096), + [anon_sym_LT] = ACTIONS(5096), + [anon_sym_LT_LT] = ACTIONS(5094), + [anon_sym_GT_GT] = ACTIONS(5096), + [anon_sym___extension__] = ACTIONS(6135), + [anon_sym___attribute__] = ACTIONS(5096), + [anon_sym___attribute] = ACTIONS(5096), + [anon_sym_LBRACE] = ACTIONS(5094), + [anon_sym_signed] = ACTIONS(6137), + [anon_sym_unsigned] = ACTIONS(6137), + [anon_sym_long] = ACTIONS(6137), + [anon_sym_short] = ACTIONS(6137), + [anon_sym_LBRACK] = ACTIONS(5094), + [anon_sym_const] = ACTIONS(6135), + [anon_sym_constexpr] = ACTIONS(6135), + [anon_sym_volatile] = ACTIONS(6135), + [anon_sym_restrict] = ACTIONS(6135), + [anon_sym___restrict__] = ACTIONS(6135), + [anon_sym__Atomic] = ACTIONS(6135), + [anon_sym__Noreturn] = ACTIONS(6135), + [anon_sym_noreturn] = ACTIONS(6135), + [anon_sym__Nonnull] = ACTIONS(6135), + [anon_sym_mutable] = ACTIONS(6135), + [anon_sym_constinit] = ACTIONS(6135), + [anon_sym_consteval] = ACTIONS(6135), + [anon_sym_alignas] = ACTIONS(6139), + [anon_sym__Alignas] = ACTIONS(6139), + [sym_primitive_type] = ACTIONS(6141), + [anon_sym_QMARK] = ACTIONS(5094), + [anon_sym_LT_EQ_GT] = ACTIONS(5094), + [anon_sym_or] = ACTIONS(5096), + [anon_sym_and] = ACTIONS(5096), + [anon_sym_bitor] = ACTIONS(5096), + [anon_sym_xor] = ACTIONS(5096), + [anon_sym_bitand] = ACTIONS(5096), + [anon_sym_not_eq] = ACTIONS(5096), + [anon_sym_DASH_DASH] = ACTIONS(5094), + [anon_sym_PLUS_PLUS] = ACTIONS(5094), + [anon_sym_DOT] = ACTIONS(5096), + [anon_sym_DOT_STAR] = ACTIONS(5094), + [anon_sym_DASH_GT] = ACTIONS(5094), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5096), + [anon_sym_decltype] = ACTIONS(5096), + [anon_sym_GT2] = ACTIONS(5094), + }, + [2224] = { + [sym_template_argument_list] = STATE(1623), + [aux_sym_sized_type_specifier_repeat1] = STATE(2345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6060), + [anon_sym_COMMA] = ACTIONS(6060), + [anon_sym_RPAREN] = ACTIONS(6060), + [anon_sym_LPAREN2] = ACTIONS(6060), + [anon_sym_DASH] = ACTIONS(6058), + [anon_sym_PLUS] = ACTIONS(6058), + [anon_sym_STAR] = ACTIONS(6058), + [anon_sym_SLASH] = ACTIONS(6058), + [anon_sym_PERCENT] = ACTIONS(6058), + [anon_sym_PIPE_PIPE] = ACTIONS(6060), + [anon_sym_AMP_AMP] = ACTIONS(6060), + [anon_sym_PIPE] = ACTIONS(6058), + [anon_sym_CARET] = ACTIONS(6058), + [anon_sym_AMP] = ACTIONS(6058), + [anon_sym_EQ_EQ] = ACTIONS(6060), + [anon_sym_BANG_EQ] = ACTIONS(6060), + [anon_sym_GT] = ACTIONS(6058), + [anon_sym_GT_EQ] = ACTIONS(6060), + [anon_sym_LT_EQ] = ACTIONS(6058), + [anon_sym_LT] = ACTIONS(6058), + [anon_sym_LT_LT] = ACTIONS(6058), + [anon_sym_GT_GT] = ACTIONS(6058), + [anon_sym_SEMI] = ACTIONS(6060), + [anon_sym___attribute__] = ACTIONS(6060), + [anon_sym___attribute] = ACTIONS(6058), + [anon_sym_COLON] = ACTIONS(6058), + [anon_sym_COLON_COLON] = ACTIONS(4187), + [anon_sym_LBRACE] = ACTIONS(6060), + [anon_sym_RBRACE] = ACTIONS(6060), + [anon_sym_signed] = ACTIONS(6143), + [anon_sym_unsigned] = ACTIONS(6143), + [anon_sym_long] = ACTIONS(6143), + [anon_sym_short] = ACTIONS(6143), + [anon_sym_LBRACK] = ACTIONS(6060), + [anon_sym_RBRACK] = ACTIONS(6060), + [anon_sym_EQ] = ACTIONS(6058), + [anon_sym_QMARK] = ACTIONS(6060), + [anon_sym_STAR_EQ] = ACTIONS(6060), + [anon_sym_SLASH_EQ] = ACTIONS(6060), + [anon_sym_PERCENT_EQ] = ACTIONS(6060), + [anon_sym_PLUS_EQ] = ACTIONS(6060), + [anon_sym_DASH_EQ] = ACTIONS(6060), + [anon_sym_LT_LT_EQ] = ACTIONS(6060), + [anon_sym_GT_GT_EQ] = ACTIONS(6060), + [anon_sym_AMP_EQ] = ACTIONS(6060), + [anon_sym_CARET_EQ] = ACTIONS(6060), + [anon_sym_PIPE_EQ] = ACTIONS(6060), + [anon_sym_and_eq] = ACTIONS(6060), + [anon_sym_or_eq] = ACTIONS(6060), + [anon_sym_xor_eq] = ACTIONS(6060), + [anon_sym_LT_EQ_GT] = ACTIONS(6060), + [anon_sym_or] = ACTIONS(6058), + [anon_sym_and] = ACTIONS(6058), + [anon_sym_bitor] = ACTIONS(6060), + [anon_sym_xor] = ACTIONS(6058), + [anon_sym_bitand] = ACTIONS(6060), + [anon_sym_not_eq] = ACTIONS(6060), + [anon_sym_DASH_DASH] = ACTIONS(6060), + [anon_sym_PLUS_PLUS] = ACTIONS(6060), + [anon_sym_DOT] = ACTIONS(6058), + [anon_sym_DOT_STAR] = ACTIONS(6060), + [anon_sym_DASH_GT] = ACTIONS(6060), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6060), + [anon_sym_decltype] = ACTIONS(6060), + }, + [2225] = { [sym_attribute_declaration] = STATE(2270), - [sym_parameter_list] = STATE(2298), + [sym_parameter_list] = STATE(1942), [aux_sym_attributed_declarator_repeat1] = STATE(2270), - [sym_identifier] = ACTIONS(6133), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6135), - [anon_sym_COMMA] = ACTIONS(6135), - [anon_sym_RPAREN] = ACTIONS(6135), - [aux_sym_preproc_if_token2] = ACTIONS(6135), - [aux_sym_preproc_else_token1] = ACTIONS(6135), - [aux_sym_preproc_elif_token1] = ACTIONS(6133), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6135), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6135), - [anon_sym_LPAREN2] = ACTIONS(6042), - [anon_sym_DASH] = ACTIONS(6133), - [anon_sym_PLUS] = ACTIONS(6133), - [anon_sym_STAR] = ACTIONS(6133), - [anon_sym_SLASH] = ACTIONS(6133), - [anon_sym_PERCENT] = ACTIONS(6133), - [anon_sym_PIPE_PIPE] = ACTIONS(6135), - [anon_sym_AMP_AMP] = ACTIONS(6135), - [anon_sym_PIPE] = ACTIONS(6133), - [anon_sym_CARET] = ACTIONS(6133), - [anon_sym_AMP] = ACTIONS(6133), - [anon_sym_EQ_EQ] = ACTIONS(6135), - [anon_sym_BANG_EQ] = ACTIONS(6135), - [anon_sym_GT] = ACTIONS(6133), - [anon_sym_GT_EQ] = ACTIONS(6135), - [anon_sym_LT_EQ] = ACTIONS(6133), - [anon_sym_LT] = ACTIONS(6133), - [anon_sym_LT_LT] = ACTIONS(6133), - [anon_sym_GT_GT] = ACTIONS(6133), - [anon_sym_SEMI] = ACTIONS(6135), - [anon_sym___attribute__] = ACTIONS(6133), - [anon_sym___attribute] = ACTIONS(6133), - [anon_sym_COLON] = ACTIONS(6135), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6044), - [anon_sym_RBRACE] = ACTIONS(6135), - [anon_sym_LBRACK] = ACTIONS(6046), - [anon_sym_RBRACK] = ACTIONS(6135), - [anon_sym_EQ] = ACTIONS(6133), - [anon_sym_QMARK] = ACTIONS(6135), - [anon_sym_STAR_EQ] = ACTIONS(6135), - [anon_sym_SLASH_EQ] = ACTIONS(6135), - [anon_sym_PERCENT_EQ] = ACTIONS(6135), - [anon_sym_PLUS_EQ] = ACTIONS(6135), - [anon_sym_DASH_EQ] = ACTIONS(6135), - [anon_sym_LT_LT_EQ] = ACTIONS(6135), - [anon_sym_GT_GT_EQ] = ACTIONS(6135), - [anon_sym_AMP_EQ] = ACTIONS(6135), - [anon_sym_CARET_EQ] = ACTIONS(6135), - [anon_sym_PIPE_EQ] = ACTIONS(6135), - [anon_sym_and_eq] = ACTIONS(6133), - [anon_sym_or_eq] = ACTIONS(6133), - [anon_sym_xor_eq] = ACTIONS(6133), - [anon_sym_LT_EQ_GT] = ACTIONS(6135), - [anon_sym_or] = ACTIONS(6133), - [anon_sym_and] = ACTIONS(6133), - [anon_sym_bitor] = ACTIONS(6133), - [anon_sym_xor] = ACTIONS(6133), - [anon_sym_bitand] = ACTIONS(6133), - [anon_sym_not_eq] = ACTIONS(6133), - [anon_sym_DASH_DASH] = ACTIONS(6135), - [anon_sym_PLUS_PLUS] = ACTIONS(6135), - [anon_sym_DOT] = ACTIONS(6133), - [anon_sym_DOT_STAR] = ACTIONS(6135), - [anon_sym_DASH_GT] = ACTIONS(6135), + [sym_identifier] = ACTIONS(6145), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6147), + [anon_sym_COMMA] = ACTIONS(6147), + [anon_sym_RPAREN] = ACTIONS(6147), + [aux_sym_preproc_if_token2] = ACTIONS(6147), + [aux_sym_preproc_else_token1] = ACTIONS(6147), + [aux_sym_preproc_elif_token1] = ACTIONS(6145), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6147), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6147), + [anon_sym_LPAREN2] = ACTIONS(6094), + [anon_sym_DASH] = ACTIONS(6145), + [anon_sym_PLUS] = ACTIONS(6145), + [anon_sym_STAR] = ACTIONS(6145), + [anon_sym_SLASH] = ACTIONS(6145), + [anon_sym_PERCENT] = ACTIONS(6145), + [anon_sym_PIPE_PIPE] = ACTIONS(6147), + [anon_sym_AMP_AMP] = ACTIONS(6147), + [anon_sym_PIPE] = ACTIONS(6145), + [anon_sym_CARET] = ACTIONS(6145), + [anon_sym_AMP] = ACTIONS(6145), + [anon_sym_EQ_EQ] = ACTIONS(6147), + [anon_sym_BANG_EQ] = ACTIONS(6147), + [anon_sym_GT] = ACTIONS(6145), + [anon_sym_GT_EQ] = ACTIONS(6147), + [anon_sym_LT_EQ] = ACTIONS(6145), + [anon_sym_LT] = ACTIONS(6145), + [anon_sym_LT_LT] = ACTIONS(6145), + [anon_sym_GT_GT] = ACTIONS(6145), + [anon_sym_SEMI] = ACTIONS(6147), + [anon_sym___attribute__] = ACTIONS(6145), + [anon_sym___attribute] = ACTIONS(6145), + [anon_sym_COLON] = ACTIONS(6147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6096), + [anon_sym_RBRACE] = ACTIONS(6147), + [anon_sym_LBRACK] = ACTIONS(6098), + [anon_sym_RBRACK] = ACTIONS(6147), + [anon_sym_EQ] = ACTIONS(6145), + [anon_sym_QMARK] = ACTIONS(6147), + [anon_sym_STAR_EQ] = ACTIONS(6147), + [anon_sym_SLASH_EQ] = ACTIONS(6147), + [anon_sym_PERCENT_EQ] = ACTIONS(6147), + [anon_sym_PLUS_EQ] = ACTIONS(6147), + [anon_sym_DASH_EQ] = ACTIONS(6147), + [anon_sym_LT_LT_EQ] = ACTIONS(6147), + [anon_sym_GT_GT_EQ] = ACTIONS(6147), + [anon_sym_AMP_EQ] = ACTIONS(6147), + [anon_sym_CARET_EQ] = ACTIONS(6147), + [anon_sym_PIPE_EQ] = ACTIONS(6147), + [anon_sym_and_eq] = ACTIONS(6145), + [anon_sym_or_eq] = ACTIONS(6145), + [anon_sym_xor_eq] = ACTIONS(6145), + [anon_sym_LT_EQ_GT] = ACTIONS(6147), + [anon_sym_or] = ACTIONS(6145), + [anon_sym_and] = ACTIONS(6145), + [anon_sym_bitor] = ACTIONS(6145), + [anon_sym_xor] = ACTIONS(6145), + [anon_sym_bitand] = ACTIONS(6145), + [anon_sym_not_eq] = ACTIONS(6145), + [anon_sym_DASH_DASH] = ACTIONS(6147), + [anon_sym_PLUS_PLUS] = ACTIONS(6147), + [anon_sym_DOT] = ACTIONS(6145), + [anon_sym_DOT_STAR] = ACTIONS(6147), + [anon_sym_DASH_GT] = ACTIONS(6147), [sym_comment] = ACTIONS(3), }, - [2195] = { - [sym_identifier] = ACTIONS(5629), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5631), - [anon_sym_COMMA] = ACTIONS(5631), - [anon_sym_RPAREN] = ACTIONS(5631), - [aux_sym_preproc_if_token2] = ACTIONS(5631), - [aux_sym_preproc_else_token1] = ACTIONS(5631), - [aux_sym_preproc_elif_token1] = ACTIONS(5629), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5631), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5631), - [anon_sym_LPAREN2] = ACTIONS(5631), - [anon_sym_DASH] = ACTIONS(5629), - [anon_sym_PLUS] = ACTIONS(5629), - [anon_sym_STAR] = ACTIONS(5629), - [anon_sym_SLASH] = ACTIONS(5629), - [anon_sym_PERCENT] = ACTIONS(5629), - [anon_sym_PIPE_PIPE] = ACTIONS(5631), - [anon_sym_AMP_AMP] = ACTIONS(5631), - [anon_sym_PIPE] = ACTIONS(5629), - [anon_sym_CARET] = ACTIONS(5629), - [anon_sym_AMP] = ACTIONS(5629), - [anon_sym_EQ_EQ] = ACTIONS(5631), - [anon_sym_BANG_EQ] = ACTIONS(5631), - [anon_sym_GT] = ACTIONS(5629), - [anon_sym_GT_EQ] = ACTIONS(5631), - [anon_sym_LT_EQ] = ACTIONS(5629), - [anon_sym_LT] = ACTIONS(5629), - [anon_sym_LT_LT] = ACTIONS(5629), - [anon_sym_GT_GT] = ACTIONS(5629), - [anon_sym_SEMI] = ACTIONS(5631), - [anon_sym___attribute__] = ACTIONS(5629), - [anon_sym___attribute] = ACTIONS(5629), - [anon_sym_COLON] = ACTIONS(5629), - [anon_sym_COLON_COLON] = ACTIONS(5631), - [anon_sym_LBRACE] = ACTIONS(5631), - [anon_sym_RBRACE] = ACTIONS(5631), - [anon_sym_LBRACK] = ACTIONS(5631), - [anon_sym_RBRACK] = ACTIONS(5631), - [anon_sym_EQ] = ACTIONS(5629), - [anon_sym_QMARK] = ACTIONS(5631), - [anon_sym_STAR_EQ] = ACTIONS(5631), - [anon_sym_SLASH_EQ] = ACTIONS(5631), - [anon_sym_PERCENT_EQ] = ACTIONS(5631), - [anon_sym_PLUS_EQ] = ACTIONS(5631), - [anon_sym_DASH_EQ] = ACTIONS(5631), - [anon_sym_LT_LT_EQ] = ACTIONS(5631), - [anon_sym_GT_GT_EQ] = ACTIONS(5631), - [anon_sym_AMP_EQ] = ACTIONS(5631), - [anon_sym_CARET_EQ] = ACTIONS(5631), - [anon_sym_PIPE_EQ] = ACTIONS(5631), - [anon_sym_and_eq] = ACTIONS(5629), - [anon_sym_or_eq] = ACTIONS(5629), - [anon_sym_xor_eq] = ACTIONS(5629), - [anon_sym_LT_EQ_GT] = ACTIONS(5631), - [anon_sym_or] = ACTIONS(5629), - [anon_sym_and] = ACTIONS(5629), - [anon_sym_bitor] = ACTIONS(5629), - [anon_sym_xor] = ACTIONS(5629), - [anon_sym_bitand] = ACTIONS(5629), - [anon_sym_not_eq] = ACTIONS(5629), - [anon_sym_DASH_DASH] = ACTIONS(5631), - [anon_sym_PLUS_PLUS] = ACTIONS(5631), - [anon_sym_DOT] = ACTIONS(5629), - [anon_sym_DOT_STAR] = ACTIONS(5631), - [anon_sym_DASH_GT] = ACTIONS(5631), + [2226] = { + [sym_attribute_specifier] = STATE(2329), + [sym_identifier] = ACTIONS(6149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6151), + [anon_sym_COMMA] = ACTIONS(6151), + [anon_sym_RPAREN] = ACTIONS(6151), + [aux_sym_preproc_if_token2] = ACTIONS(6151), + [aux_sym_preproc_else_token1] = ACTIONS(6151), + [aux_sym_preproc_elif_token1] = ACTIONS(6149), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6151), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6151), + [anon_sym_LPAREN2] = ACTIONS(6151), + [anon_sym_DASH] = ACTIONS(6149), + [anon_sym_PLUS] = ACTIONS(6149), + [anon_sym_STAR] = ACTIONS(6149), + [anon_sym_SLASH] = ACTIONS(6149), + [anon_sym_PERCENT] = ACTIONS(6149), + [anon_sym_PIPE_PIPE] = ACTIONS(6151), + [anon_sym_AMP_AMP] = ACTIONS(6151), + [anon_sym_PIPE] = ACTIONS(6149), + [anon_sym_CARET] = ACTIONS(6149), + [anon_sym_AMP] = ACTIONS(6149), + [anon_sym_EQ_EQ] = ACTIONS(6151), + [anon_sym_BANG_EQ] = ACTIONS(6151), + [anon_sym_GT] = ACTIONS(6149), + [anon_sym_GT_EQ] = ACTIONS(6151), + [anon_sym_LT_EQ] = ACTIONS(6149), + [anon_sym_LT] = ACTIONS(6149), + [anon_sym_LT_LT] = ACTIONS(6149), + [anon_sym_GT_GT] = ACTIONS(6149), + [anon_sym_SEMI] = ACTIONS(6151), + [anon_sym___attribute__] = ACTIONS(5561), + [anon_sym___attribute] = ACTIONS(5561), + [anon_sym_COLON] = ACTIONS(6151), + [anon_sym_LBRACE] = ACTIONS(6151), + [anon_sym_RBRACE] = ACTIONS(6151), + [anon_sym_LBRACK] = ACTIONS(6151), + [anon_sym_RBRACK] = ACTIONS(6151), + [anon_sym_EQ] = ACTIONS(6149), + [anon_sym_QMARK] = ACTIONS(6151), + [anon_sym_STAR_EQ] = ACTIONS(6151), + [anon_sym_SLASH_EQ] = ACTIONS(6151), + [anon_sym_PERCENT_EQ] = ACTIONS(6151), + [anon_sym_PLUS_EQ] = ACTIONS(6151), + [anon_sym_DASH_EQ] = ACTIONS(6151), + [anon_sym_LT_LT_EQ] = ACTIONS(6151), + [anon_sym_GT_GT_EQ] = ACTIONS(6151), + [anon_sym_AMP_EQ] = ACTIONS(6151), + [anon_sym_CARET_EQ] = ACTIONS(6151), + [anon_sym_PIPE_EQ] = ACTIONS(6151), + [anon_sym_and_eq] = ACTIONS(6149), + [anon_sym_or_eq] = ACTIONS(6149), + [anon_sym_xor_eq] = ACTIONS(6149), + [anon_sym_LT_EQ_GT] = ACTIONS(6151), + [anon_sym_or] = ACTIONS(6149), + [anon_sym_and] = ACTIONS(6149), + [anon_sym_bitor] = ACTIONS(6149), + [anon_sym_xor] = ACTIONS(6149), + [anon_sym_bitand] = ACTIONS(6149), + [anon_sym_not_eq] = ACTIONS(6149), + [anon_sym_DASH_DASH] = ACTIONS(6151), + [anon_sym_PLUS_PLUS] = ACTIONS(6151), + [anon_sym_DOT] = ACTIONS(6149), + [anon_sym_DOT_STAR] = ACTIONS(6151), + [anon_sym_DASH_GT] = ACTIONS(6151), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6149), + [anon_sym_decltype] = ACTIONS(6149), + }, + [2227] = { + [sym_attribute_specifier] = STATE(2300), + [sym_identifier] = ACTIONS(6153), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6155), + [anon_sym_COMMA] = ACTIONS(6155), + [anon_sym_RPAREN] = ACTIONS(6155), + [aux_sym_preproc_if_token2] = ACTIONS(6155), + [aux_sym_preproc_else_token1] = ACTIONS(6155), + [aux_sym_preproc_elif_token1] = ACTIONS(6153), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6155), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6155), + [anon_sym_LPAREN2] = ACTIONS(6155), + [anon_sym_DASH] = ACTIONS(6153), + [anon_sym_PLUS] = ACTIONS(6153), + [anon_sym_STAR] = ACTIONS(6153), + [anon_sym_SLASH] = ACTIONS(6153), + [anon_sym_PERCENT] = ACTIONS(6153), + [anon_sym_PIPE_PIPE] = ACTIONS(6155), + [anon_sym_AMP_AMP] = ACTIONS(6155), + [anon_sym_PIPE] = ACTIONS(6153), + [anon_sym_CARET] = ACTIONS(6153), + [anon_sym_AMP] = ACTIONS(6153), + [anon_sym_EQ_EQ] = ACTIONS(6155), + [anon_sym_BANG_EQ] = ACTIONS(6155), + [anon_sym_GT] = ACTIONS(6153), + [anon_sym_GT_EQ] = ACTIONS(6155), + [anon_sym_LT_EQ] = ACTIONS(6153), + [anon_sym_LT] = ACTIONS(6153), + [anon_sym_LT_LT] = ACTIONS(6153), + [anon_sym_GT_GT] = ACTIONS(6153), + [anon_sym_SEMI] = ACTIONS(6155), + [anon_sym___attribute__] = ACTIONS(5561), + [anon_sym___attribute] = ACTIONS(5561), + [anon_sym_COLON] = ACTIONS(6155), + [anon_sym_LBRACE] = ACTIONS(6155), + [anon_sym_RBRACE] = ACTIONS(6155), + [anon_sym_LBRACK] = ACTIONS(6155), + [anon_sym_RBRACK] = ACTIONS(6155), + [anon_sym_EQ] = ACTIONS(6153), + [anon_sym_QMARK] = ACTIONS(6155), + [anon_sym_STAR_EQ] = ACTIONS(6155), + [anon_sym_SLASH_EQ] = ACTIONS(6155), + [anon_sym_PERCENT_EQ] = ACTIONS(6155), + [anon_sym_PLUS_EQ] = ACTIONS(6155), + [anon_sym_DASH_EQ] = ACTIONS(6155), + [anon_sym_LT_LT_EQ] = ACTIONS(6155), + [anon_sym_GT_GT_EQ] = ACTIONS(6155), + [anon_sym_AMP_EQ] = ACTIONS(6155), + [anon_sym_CARET_EQ] = ACTIONS(6155), + [anon_sym_PIPE_EQ] = ACTIONS(6155), + [anon_sym_and_eq] = ACTIONS(6153), + [anon_sym_or_eq] = ACTIONS(6153), + [anon_sym_xor_eq] = ACTIONS(6153), + [anon_sym_LT_EQ_GT] = ACTIONS(6155), + [anon_sym_or] = ACTIONS(6153), + [anon_sym_and] = ACTIONS(6153), + [anon_sym_bitor] = ACTIONS(6153), + [anon_sym_xor] = ACTIONS(6153), + [anon_sym_bitand] = ACTIONS(6153), + [anon_sym_not_eq] = ACTIONS(6153), + [anon_sym_DASH_DASH] = ACTIONS(6155), + [anon_sym_PLUS_PLUS] = ACTIONS(6155), + [anon_sym_DOT] = ACTIONS(6153), + [anon_sym_DOT_STAR] = ACTIONS(6155), + [anon_sym_DASH_GT] = ACTIONS(6155), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5629), - [anon_sym_decltype] = ACTIONS(5629), + [sym_auto] = ACTIONS(6153), + [anon_sym_decltype] = ACTIONS(6153), }, - [2196] = { - [sym_string_literal] = STATE(2196), - [sym_raw_string_literal] = STATE(2196), - [aux_sym_concatenated_string_repeat1] = STATE(2196), - [sym_identifier] = ACTIONS(6137), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5403), - [anon_sym_COMMA] = ACTIONS(5403), - [anon_sym_RPAREN] = ACTIONS(5403), - [anon_sym_LPAREN2] = ACTIONS(5403), - [anon_sym_DASH] = ACTIONS(5405), - [anon_sym_PLUS] = ACTIONS(5405), - [anon_sym_STAR] = ACTIONS(5405), - [anon_sym_SLASH] = ACTIONS(5405), - [anon_sym_PERCENT] = ACTIONS(5405), - [anon_sym_PIPE_PIPE] = ACTIONS(5403), - [anon_sym_AMP_AMP] = ACTIONS(5403), - [anon_sym_PIPE] = ACTIONS(5405), - [anon_sym_CARET] = ACTIONS(5405), - [anon_sym_AMP] = ACTIONS(5405), - [anon_sym_EQ_EQ] = ACTIONS(5403), - [anon_sym_BANG_EQ] = ACTIONS(5403), - [anon_sym_GT] = ACTIONS(5405), - [anon_sym_GT_EQ] = ACTIONS(5403), - [anon_sym_LT_EQ] = ACTIONS(5405), - [anon_sym_LT] = ACTIONS(5405), - [anon_sym_LT_LT] = ACTIONS(5405), - [anon_sym_GT_GT] = ACTIONS(5405), - [anon_sym_LBRACK] = ACTIONS(5403), - [anon_sym_EQ] = ACTIONS(5405), - [anon_sym_QMARK] = ACTIONS(5403), - [anon_sym_STAR_EQ] = ACTIONS(5403), - [anon_sym_SLASH_EQ] = ACTIONS(5403), - [anon_sym_PERCENT_EQ] = ACTIONS(5403), - [anon_sym_PLUS_EQ] = ACTIONS(5403), - [anon_sym_DASH_EQ] = ACTIONS(5403), - [anon_sym_LT_LT_EQ] = ACTIONS(5403), - [anon_sym_GT_GT_EQ] = ACTIONS(5403), - [anon_sym_AMP_EQ] = ACTIONS(5403), - [anon_sym_CARET_EQ] = ACTIONS(5403), - [anon_sym_PIPE_EQ] = ACTIONS(5403), - [anon_sym_and_eq] = ACTIONS(5405), - [anon_sym_or_eq] = ACTIONS(5405), - [anon_sym_xor_eq] = ACTIONS(5405), - [anon_sym_LT_EQ_GT] = ACTIONS(5403), - [anon_sym_or] = ACTIONS(5405), - [anon_sym_and] = ACTIONS(5405), - [anon_sym_bitor] = ACTIONS(5405), - [anon_sym_xor] = ACTIONS(5405), - [anon_sym_bitand] = ACTIONS(5405), - [anon_sym_not_eq] = ACTIONS(5405), - [anon_sym_DASH_DASH] = ACTIONS(5403), - [anon_sym_PLUS_PLUS] = ACTIONS(5403), - [anon_sym_DOT] = ACTIONS(5405), - [anon_sym_DOT_STAR] = ACTIONS(5403), - [anon_sym_DASH_GT] = ACTIONS(5405), - [anon_sym_L_DQUOTE] = ACTIONS(6140), - [anon_sym_u_DQUOTE] = ACTIONS(6140), - [anon_sym_U_DQUOTE] = ACTIONS(6140), - [anon_sym_u8_DQUOTE] = ACTIONS(6140), - [anon_sym_DQUOTE] = ACTIONS(6140), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(6143), - [anon_sym_LR_DQUOTE] = ACTIONS(6143), - [anon_sym_uR_DQUOTE] = ACTIONS(6143), - [anon_sym_UR_DQUOTE] = ACTIONS(6143), - [anon_sym_u8R_DQUOTE] = ACTIONS(6143), - [anon_sym_DASH_GT_STAR] = ACTIONS(5403), - [sym_literal_suffix] = ACTIONS(5405), + [2228] = { + [sym_attribute_specifier] = STATE(2322), + [sym_identifier] = ACTIONS(6157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6159), + [anon_sym_COMMA] = ACTIONS(6159), + [anon_sym_RPAREN] = ACTIONS(6159), + [aux_sym_preproc_if_token2] = ACTIONS(6159), + [aux_sym_preproc_else_token1] = ACTIONS(6159), + [aux_sym_preproc_elif_token1] = ACTIONS(6157), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6159), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6159), + [anon_sym_LPAREN2] = ACTIONS(6159), + [anon_sym_DASH] = ACTIONS(6157), + [anon_sym_PLUS] = ACTIONS(6157), + [anon_sym_STAR] = ACTIONS(6157), + [anon_sym_SLASH] = ACTIONS(6157), + [anon_sym_PERCENT] = ACTIONS(6157), + [anon_sym_PIPE_PIPE] = ACTIONS(6159), + [anon_sym_AMP_AMP] = ACTIONS(6159), + [anon_sym_PIPE] = ACTIONS(6157), + [anon_sym_CARET] = ACTIONS(6157), + [anon_sym_AMP] = ACTIONS(6157), + [anon_sym_EQ_EQ] = ACTIONS(6159), + [anon_sym_BANG_EQ] = ACTIONS(6159), + [anon_sym_GT] = ACTIONS(6157), + [anon_sym_GT_EQ] = ACTIONS(6159), + [anon_sym_LT_EQ] = ACTIONS(6157), + [anon_sym_LT] = ACTIONS(6157), + [anon_sym_LT_LT] = ACTIONS(6157), + [anon_sym_GT_GT] = ACTIONS(6157), + [anon_sym_SEMI] = ACTIONS(6159), + [anon_sym___attribute__] = ACTIONS(5561), + [anon_sym___attribute] = ACTIONS(5561), + [anon_sym_COLON] = ACTIONS(6159), + [anon_sym_LBRACE] = ACTIONS(6159), + [anon_sym_RBRACE] = ACTIONS(6159), + [anon_sym_LBRACK] = ACTIONS(6159), + [anon_sym_RBRACK] = ACTIONS(6159), + [anon_sym_EQ] = ACTIONS(6157), + [anon_sym_QMARK] = ACTIONS(6159), + [anon_sym_STAR_EQ] = ACTIONS(6159), + [anon_sym_SLASH_EQ] = ACTIONS(6159), + [anon_sym_PERCENT_EQ] = ACTIONS(6159), + [anon_sym_PLUS_EQ] = ACTIONS(6159), + [anon_sym_DASH_EQ] = ACTIONS(6159), + [anon_sym_LT_LT_EQ] = ACTIONS(6159), + [anon_sym_GT_GT_EQ] = ACTIONS(6159), + [anon_sym_AMP_EQ] = ACTIONS(6159), + [anon_sym_CARET_EQ] = ACTIONS(6159), + [anon_sym_PIPE_EQ] = ACTIONS(6159), + [anon_sym_and_eq] = ACTIONS(6157), + [anon_sym_or_eq] = ACTIONS(6157), + [anon_sym_xor_eq] = ACTIONS(6157), + [anon_sym_LT_EQ_GT] = ACTIONS(6159), + [anon_sym_or] = ACTIONS(6157), + [anon_sym_and] = ACTIONS(6157), + [anon_sym_bitor] = ACTIONS(6157), + [anon_sym_xor] = ACTIONS(6157), + [anon_sym_bitand] = ACTIONS(6157), + [anon_sym_not_eq] = ACTIONS(6157), + [anon_sym_DASH_DASH] = ACTIONS(6159), + [anon_sym_PLUS_PLUS] = ACTIONS(6159), + [anon_sym_DOT] = ACTIONS(6157), + [anon_sym_DOT_STAR] = ACTIONS(6159), + [anon_sym_DASH_GT] = ACTIONS(6159), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6157), + [anon_sym_decltype] = ACTIONS(6157), }, - [2197] = { - [sym_template_argument_list] = STATE(1941), - [aux_sym_sized_type_specifier_repeat1] = STATE(2312), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4152), - [anon_sym_COMMA] = ACTIONS(4152), - [anon_sym_RPAREN] = ACTIONS(4152), - [anon_sym_LPAREN2] = ACTIONS(4152), - [anon_sym_DASH] = ACTIONS(4144), - [anon_sym_PLUS] = ACTIONS(4144), - [anon_sym_STAR] = ACTIONS(4144), - [anon_sym_SLASH] = ACTIONS(4144), - [anon_sym_PERCENT] = ACTIONS(4144), - [anon_sym_PIPE_PIPE] = ACTIONS(4152), - [anon_sym_AMP_AMP] = ACTIONS(4152), - [anon_sym_PIPE] = ACTIONS(4144), - [anon_sym_CARET] = ACTIONS(4144), - [anon_sym_AMP] = ACTIONS(4144), - [anon_sym_EQ_EQ] = ACTIONS(4152), - [anon_sym_BANG_EQ] = ACTIONS(4152), - [anon_sym_GT] = ACTIONS(4144), - [anon_sym_GT_EQ] = ACTIONS(4152), - [anon_sym_LT_EQ] = ACTIONS(4144), - [anon_sym_LT] = ACTIONS(5840), - [anon_sym_LT_LT] = ACTIONS(4144), - [anon_sym_GT_GT] = ACTIONS(4144), - [anon_sym_SEMI] = ACTIONS(4152), - [anon_sym___attribute__] = ACTIONS(4152), - [anon_sym___attribute] = ACTIONS(4144), - [anon_sym_COLON] = ACTIONS(4144), - [anon_sym_COLON_COLON] = ACTIONS(4167), - [anon_sym_LBRACE] = ACTIONS(4152), - [anon_sym_RBRACE] = ACTIONS(4152), - [anon_sym_signed] = ACTIONS(6146), - [anon_sym_unsigned] = ACTIONS(6146), - [anon_sym_long] = ACTIONS(6146), - [anon_sym_short] = ACTIONS(6146), - [anon_sym_LBRACK] = ACTIONS(4152), - [anon_sym_RBRACK] = ACTIONS(4152), - [anon_sym_EQ] = ACTIONS(4144), - [anon_sym_QMARK] = ACTIONS(4152), - [anon_sym_STAR_EQ] = ACTIONS(4152), - [anon_sym_SLASH_EQ] = ACTIONS(4152), - [anon_sym_PERCENT_EQ] = ACTIONS(4152), - [anon_sym_PLUS_EQ] = ACTIONS(4152), - [anon_sym_DASH_EQ] = ACTIONS(4152), - [anon_sym_LT_LT_EQ] = ACTIONS(4152), - [anon_sym_GT_GT_EQ] = ACTIONS(4152), - [anon_sym_AMP_EQ] = ACTIONS(4152), - [anon_sym_CARET_EQ] = ACTIONS(4152), - [anon_sym_PIPE_EQ] = ACTIONS(4152), - [anon_sym_and_eq] = ACTIONS(4152), - [anon_sym_or_eq] = ACTIONS(4152), - [anon_sym_xor_eq] = ACTIONS(4152), - [anon_sym_LT_EQ_GT] = ACTIONS(4152), - [anon_sym_or] = ACTIONS(4144), - [anon_sym_and] = ACTIONS(4144), - [anon_sym_bitor] = ACTIONS(4152), - [anon_sym_xor] = ACTIONS(4144), - [anon_sym_bitand] = ACTIONS(4152), - [anon_sym_not_eq] = ACTIONS(4152), - [anon_sym_DASH_DASH] = ACTIONS(4152), - [anon_sym_PLUS_PLUS] = ACTIONS(4152), - [anon_sym_DOT] = ACTIONS(4144), - [anon_sym_DOT_STAR] = ACTIONS(4152), - [anon_sym_DASH_GT] = ACTIONS(4152), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4152), - [anon_sym_decltype] = ACTIONS(4152), + [2229] = { + [sym_attribute_specifier] = STATE(2332), + [sym_identifier] = ACTIONS(6161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6163), + [anon_sym_COMMA] = ACTIONS(6163), + [anon_sym_RPAREN] = ACTIONS(6163), + [aux_sym_preproc_if_token2] = ACTIONS(6163), + [aux_sym_preproc_else_token1] = ACTIONS(6163), + [aux_sym_preproc_elif_token1] = ACTIONS(6161), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6163), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6163), + [anon_sym_LPAREN2] = ACTIONS(6163), + [anon_sym_DASH] = ACTIONS(6161), + [anon_sym_PLUS] = ACTIONS(6161), + [anon_sym_STAR] = ACTIONS(6161), + [anon_sym_SLASH] = ACTIONS(6161), + [anon_sym_PERCENT] = ACTIONS(6161), + [anon_sym_PIPE_PIPE] = ACTIONS(6163), + [anon_sym_AMP_AMP] = ACTIONS(6163), + [anon_sym_PIPE] = ACTIONS(6161), + [anon_sym_CARET] = ACTIONS(6161), + [anon_sym_AMP] = ACTIONS(6161), + [anon_sym_EQ_EQ] = ACTIONS(6163), + [anon_sym_BANG_EQ] = ACTIONS(6163), + [anon_sym_GT] = ACTIONS(6161), + [anon_sym_GT_EQ] = ACTIONS(6163), + [anon_sym_LT_EQ] = ACTIONS(6161), + [anon_sym_LT] = ACTIONS(6161), + [anon_sym_LT_LT] = ACTIONS(6161), + [anon_sym_GT_GT] = ACTIONS(6161), + [anon_sym_SEMI] = ACTIONS(6163), + [anon_sym___attribute__] = ACTIONS(5561), + [anon_sym___attribute] = ACTIONS(5561), + [anon_sym_COLON] = ACTIONS(6163), + [anon_sym_LBRACE] = ACTIONS(6163), + [anon_sym_RBRACE] = ACTIONS(6163), + [anon_sym_LBRACK] = ACTIONS(6163), + [anon_sym_RBRACK] = ACTIONS(6163), + [anon_sym_EQ] = ACTIONS(6161), + [anon_sym_QMARK] = ACTIONS(6163), + [anon_sym_STAR_EQ] = ACTIONS(6163), + [anon_sym_SLASH_EQ] = ACTIONS(6163), + [anon_sym_PERCENT_EQ] = ACTIONS(6163), + [anon_sym_PLUS_EQ] = ACTIONS(6163), + [anon_sym_DASH_EQ] = ACTIONS(6163), + [anon_sym_LT_LT_EQ] = ACTIONS(6163), + [anon_sym_GT_GT_EQ] = ACTIONS(6163), + [anon_sym_AMP_EQ] = ACTIONS(6163), + [anon_sym_CARET_EQ] = ACTIONS(6163), + [anon_sym_PIPE_EQ] = ACTIONS(6163), + [anon_sym_and_eq] = ACTIONS(6161), + [anon_sym_or_eq] = ACTIONS(6161), + [anon_sym_xor_eq] = ACTIONS(6161), + [anon_sym_LT_EQ_GT] = ACTIONS(6163), + [anon_sym_or] = ACTIONS(6161), + [anon_sym_and] = ACTIONS(6161), + [anon_sym_bitor] = ACTIONS(6161), + [anon_sym_xor] = ACTIONS(6161), + [anon_sym_bitand] = ACTIONS(6161), + [anon_sym_not_eq] = ACTIONS(6161), + [anon_sym_DASH_DASH] = ACTIONS(6163), + [anon_sym_PLUS_PLUS] = ACTIONS(6163), + [anon_sym_DOT] = ACTIONS(6161), + [anon_sym_DOT_STAR] = ACTIONS(6163), + [anon_sym_DASH_GT] = ACTIONS(6163), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6161), + [anon_sym_decltype] = ACTIONS(6161), }, - [2198] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2198), - [sym_identifier] = ACTIONS(5070), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5072), - [anon_sym_COMMA] = ACTIONS(5072), - [anon_sym_LPAREN2] = ACTIONS(5072), - [anon_sym_DASH] = ACTIONS(5070), - [anon_sym_PLUS] = ACTIONS(5070), - [anon_sym_STAR] = ACTIONS(5072), - [anon_sym_SLASH] = ACTIONS(5070), - [anon_sym_PERCENT] = ACTIONS(5072), - [anon_sym_PIPE_PIPE] = ACTIONS(5072), - [anon_sym_AMP_AMP] = ACTIONS(5072), - [anon_sym_PIPE] = ACTIONS(5070), - [anon_sym_CARET] = ACTIONS(5072), - [anon_sym_AMP] = ACTIONS(5070), - [anon_sym_EQ_EQ] = ACTIONS(5072), - [anon_sym_BANG_EQ] = ACTIONS(5072), - [anon_sym_GT] = ACTIONS(5070), - [anon_sym_GT_EQ] = ACTIONS(5070), - [anon_sym_LT_EQ] = ACTIONS(5070), - [anon_sym_LT] = ACTIONS(5070), - [anon_sym_LT_LT] = ACTIONS(5072), - [anon_sym_GT_GT] = ACTIONS(5070), - [anon_sym___extension__] = ACTIONS(5070), - [anon_sym___attribute__] = ACTIONS(5070), - [anon_sym___attribute] = ACTIONS(5070), - [anon_sym_LBRACE] = ACTIONS(5072), - [anon_sym_signed] = ACTIONS(6148), - [anon_sym_unsigned] = ACTIONS(6148), - [anon_sym_long] = ACTIONS(6148), - [anon_sym_short] = ACTIONS(6148), - [anon_sym_LBRACK] = ACTIONS(5072), - [anon_sym_const] = ACTIONS(5070), - [anon_sym_constexpr] = ACTIONS(5070), - [anon_sym_volatile] = ACTIONS(5070), - [anon_sym_restrict] = ACTIONS(5070), - [anon_sym___restrict__] = ACTIONS(5070), - [anon_sym__Atomic] = ACTIONS(5070), - [anon_sym__Noreturn] = ACTIONS(5070), - [anon_sym_noreturn] = ACTIONS(5070), - [anon_sym__Nonnull] = ACTIONS(5070), - [anon_sym_mutable] = ACTIONS(5070), - [anon_sym_constinit] = ACTIONS(5070), - [anon_sym_consteval] = ACTIONS(5070), - [anon_sym_alignas] = ACTIONS(5070), - [anon_sym__Alignas] = ACTIONS(5070), - [sym_primitive_type] = ACTIONS(5070), - [anon_sym_QMARK] = ACTIONS(5072), - [anon_sym_LT_EQ_GT] = ACTIONS(5072), - [anon_sym_or] = ACTIONS(5070), - [anon_sym_and] = ACTIONS(5070), - [anon_sym_bitor] = ACTIONS(5070), - [anon_sym_xor] = ACTIONS(5070), - [anon_sym_bitand] = ACTIONS(5070), - [anon_sym_not_eq] = ACTIONS(5070), - [anon_sym_DASH_DASH] = ACTIONS(5072), - [anon_sym_PLUS_PLUS] = ACTIONS(5072), - [anon_sym_DOT] = ACTIONS(5070), - [anon_sym_DOT_STAR] = ACTIONS(5072), - [anon_sym_DASH_GT] = ACTIONS(5072), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5070), - [anon_sym_decltype] = ACTIONS(5070), - [anon_sym_final] = ACTIONS(5070), - [anon_sym_override] = ACTIONS(5070), - [anon_sym_GT2] = ACTIONS(5072), - [anon_sym_requires] = ACTIONS(5070), + [2230] = { + [sym_attribute_specifier] = STATE(2337), + [sym_identifier] = ACTIONS(6165), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6167), + [anon_sym_COMMA] = ACTIONS(6167), + [anon_sym_RPAREN] = ACTIONS(6167), + [aux_sym_preproc_if_token2] = ACTIONS(6167), + [aux_sym_preproc_else_token1] = ACTIONS(6167), + [aux_sym_preproc_elif_token1] = ACTIONS(6165), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6167), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6167), + [anon_sym_LPAREN2] = ACTIONS(6167), + [anon_sym_DASH] = ACTIONS(6165), + [anon_sym_PLUS] = ACTIONS(6165), + [anon_sym_STAR] = ACTIONS(6165), + [anon_sym_SLASH] = ACTIONS(6165), + [anon_sym_PERCENT] = ACTIONS(6165), + [anon_sym_PIPE_PIPE] = ACTIONS(6167), + [anon_sym_AMP_AMP] = ACTIONS(6167), + [anon_sym_PIPE] = ACTIONS(6165), + [anon_sym_CARET] = ACTIONS(6165), + [anon_sym_AMP] = ACTIONS(6165), + [anon_sym_EQ_EQ] = ACTIONS(6167), + [anon_sym_BANG_EQ] = ACTIONS(6167), + [anon_sym_GT] = ACTIONS(6165), + [anon_sym_GT_EQ] = ACTIONS(6167), + [anon_sym_LT_EQ] = ACTIONS(6165), + [anon_sym_LT] = ACTIONS(6165), + [anon_sym_LT_LT] = ACTIONS(6165), + [anon_sym_GT_GT] = ACTIONS(6165), + [anon_sym_SEMI] = ACTIONS(6167), + [anon_sym___attribute__] = ACTIONS(5561), + [anon_sym___attribute] = ACTIONS(5561), + [anon_sym_COLON] = ACTIONS(6167), + [anon_sym_LBRACE] = ACTIONS(6167), + [anon_sym_RBRACE] = ACTIONS(6167), + [anon_sym_LBRACK] = ACTIONS(6167), + [anon_sym_RBRACK] = ACTIONS(6167), + [anon_sym_EQ] = ACTIONS(6165), + [anon_sym_QMARK] = ACTIONS(6167), + [anon_sym_STAR_EQ] = ACTIONS(6167), + [anon_sym_SLASH_EQ] = ACTIONS(6167), + [anon_sym_PERCENT_EQ] = ACTIONS(6167), + [anon_sym_PLUS_EQ] = ACTIONS(6167), + [anon_sym_DASH_EQ] = ACTIONS(6167), + [anon_sym_LT_LT_EQ] = ACTIONS(6167), + [anon_sym_GT_GT_EQ] = ACTIONS(6167), + [anon_sym_AMP_EQ] = ACTIONS(6167), + [anon_sym_CARET_EQ] = ACTIONS(6167), + [anon_sym_PIPE_EQ] = ACTIONS(6167), + [anon_sym_and_eq] = ACTIONS(6165), + [anon_sym_or_eq] = ACTIONS(6165), + [anon_sym_xor_eq] = ACTIONS(6165), + [anon_sym_LT_EQ_GT] = ACTIONS(6167), + [anon_sym_or] = ACTIONS(6165), + [anon_sym_and] = ACTIONS(6165), + [anon_sym_bitor] = ACTIONS(6165), + [anon_sym_xor] = ACTIONS(6165), + [anon_sym_bitand] = ACTIONS(6165), + [anon_sym_not_eq] = ACTIONS(6165), + [anon_sym_DASH_DASH] = ACTIONS(6167), + [anon_sym_PLUS_PLUS] = ACTIONS(6167), + [anon_sym_DOT] = ACTIONS(6165), + [anon_sym_DOT_STAR] = ACTIONS(6167), + [anon_sym_DASH_GT] = ACTIONS(6167), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6165), + [anon_sym_decltype] = ACTIONS(6165), }, - [2199] = { - [sym_string_literal] = STATE(2624), - [sym_template_argument_list] = STATE(3588), - [sym_raw_string_literal] = STATE(2624), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4146), - [anon_sym_COMMA] = ACTIONS(4146), - [anon_sym_LPAREN2] = ACTIONS(4146), - [anon_sym_DASH] = ACTIONS(4154), - [anon_sym_PLUS] = ACTIONS(4154), - [anon_sym_STAR] = ACTIONS(4154), - [anon_sym_SLASH] = ACTIONS(4154), - [anon_sym_PERCENT] = ACTIONS(4154), - [anon_sym_PIPE_PIPE] = ACTIONS(4146), - [anon_sym_AMP_AMP] = ACTIONS(4146), - [anon_sym_PIPE] = ACTIONS(4154), - [anon_sym_CARET] = ACTIONS(4154), - [anon_sym_AMP] = ACTIONS(4154), - [anon_sym_EQ_EQ] = ACTIONS(4146), - [anon_sym_BANG_EQ] = ACTIONS(4146), - [anon_sym_GT] = ACTIONS(4154), - [anon_sym_GT_EQ] = ACTIONS(4146), - [anon_sym_LT_EQ] = ACTIONS(4154), - [anon_sym_LT] = ACTIONS(5077), - [anon_sym_LT_LT] = ACTIONS(4154), - [anon_sym_GT_GT] = ACTIONS(4154), - [anon_sym_SEMI] = ACTIONS(4146), - [anon_sym_COLON] = ACTIONS(4380), - [anon_sym_COLON_COLON] = ACTIONS(4167), - [anon_sym_LBRACE] = ACTIONS(4172), - [anon_sym_LBRACK] = ACTIONS(4146), - [anon_sym_EQ] = ACTIONS(4180), - [anon_sym_QMARK] = ACTIONS(4146), - [anon_sym_STAR_EQ] = ACTIONS(4182), - [anon_sym_SLASH_EQ] = ACTIONS(4182), - [anon_sym_PERCENT_EQ] = ACTIONS(4182), - [anon_sym_PLUS_EQ] = ACTIONS(4182), - [anon_sym_DASH_EQ] = ACTIONS(4182), - [anon_sym_LT_LT_EQ] = ACTIONS(4182), - [anon_sym_GT_GT_EQ] = ACTIONS(4182), - [anon_sym_AMP_EQ] = ACTIONS(4182), - [anon_sym_CARET_EQ] = ACTIONS(4182), - [anon_sym_PIPE_EQ] = ACTIONS(4182), - [anon_sym_and_eq] = ACTIONS(4182), - [anon_sym_or_eq] = ACTIONS(4182), - [anon_sym_xor_eq] = ACTIONS(4182), - [anon_sym_LT_EQ_GT] = ACTIONS(4146), - [anon_sym_or] = ACTIONS(4154), - [anon_sym_and] = ACTIONS(4154), - [anon_sym_bitor] = ACTIONS(4146), - [anon_sym_xor] = ACTIONS(4154), - [anon_sym_bitand] = ACTIONS(4146), - [anon_sym_not_eq] = ACTIONS(4146), - [anon_sym_DASH_DASH] = ACTIONS(4146), - [anon_sym_PLUS_PLUS] = ACTIONS(4146), - [anon_sym_DOT] = ACTIONS(4154), - [anon_sym_DOT_STAR] = ACTIONS(4146), - [anon_sym_DASH_GT] = ACTIONS(4146), - [anon_sym_L_DQUOTE] = ACTIONS(3623), - [anon_sym_u_DQUOTE] = ACTIONS(3623), - [anon_sym_U_DQUOTE] = ACTIONS(3623), - [anon_sym_u8_DQUOTE] = ACTIONS(3623), - [anon_sym_DQUOTE] = ACTIONS(3623), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(3627), - [anon_sym_LR_DQUOTE] = ACTIONS(3627), - [anon_sym_uR_DQUOTE] = ACTIONS(3627), - [anon_sym_UR_DQUOTE] = ACTIONS(3627), - [anon_sym_u8R_DQUOTE] = ACTIONS(3627), + [2231] = { + [sym_attribute_specifier] = STATE(2339), + [sym_identifier] = ACTIONS(6169), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6171), + [anon_sym_COMMA] = ACTIONS(6171), + [anon_sym_RPAREN] = ACTIONS(6171), + [aux_sym_preproc_if_token2] = ACTIONS(6171), + [aux_sym_preproc_else_token1] = ACTIONS(6171), + [aux_sym_preproc_elif_token1] = ACTIONS(6169), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6171), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6171), + [anon_sym_LPAREN2] = ACTIONS(6171), + [anon_sym_DASH] = ACTIONS(6169), + [anon_sym_PLUS] = ACTIONS(6169), + [anon_sym_STAR] = ACTIONS(6169), + [anon_sym_SLASH] = ACTIONS(6169), + [anon_sym_PERCENT] = ACTIONS(6169), + [anon_sym_PIPE_PIPE] = ACTIONS(6171), + [anon_sym_AMP_AMP] = ACTIONS(6171), + [anon_sym_PIPE] = ACTIONS(6169), + [anon_sym_CARET] = ACTIONS(6169), + [anon_sym_AMP] = ACTIONS(6169), + [anon_sym_EQ_EQ] = ACTIONS(6171), + [anon_sym_BANG_EQ] = ACTIONS(6171), + [anon_sym_GT] = ACTIONS(6169), + [anon_sym_GT_EQ] = ACTIONS(6171), + [anon_sym_LT_EQ] = ACTIONS(6169), + [anon_sym_LT] = ACTIONS(6169), + [anon_sym_LT_LT] = ACTIONS(6169), + [anon_sym_GT_GT] = ACTIONS(6169), + [anon_sym_SEMI] = ACTIONS(6171), + [anon_sym___attribute__] = ACTIONS(5561), + [anon_sym___attribute] = ACTIONS(5561), + [anon_sym_COLON] = ACTIONS(6171), + [anon_sym_LBRACE] = ACTIONS(6171), + [anon_sym_RBRACE] = ACTIONS(6171), + [anon_sym_LBRACK] = ACTIONS(6171), + [anon_sym_RBRACK] = ACTIONS(6171), + [anon_sym_EQ] = ACTIONS(6169), + [anon_sym_QMARK] = ACTIONS(6171), + [anon_sym_STAR_EQ] = ACTIONS(6171), + [anon_sym_SLASH_EQ] = ACTIONS(6171), + [anon_sym_PERCENT_EQ] = ACTIONS(6171), + [anon_sym_PLUS_EQ] = ACTIONS(6171), + [anon_sym_DASH_EQ] = ACTIONS(6171), + [anon_sym_LT_LT_EQ] = ACTIONS(6171), + [anon_sym_GT_GT_EQ] = ACTIONS(6171), + [anon_sym_AMP_EQ] = ACTIONS(6171), + [anon_sym_CARET_EQ] = ACTIONS(6171), + [anon_sym_PIPE_EQ] = ACTIONS(6171), + [anon_sym_and_eq] = ACTIONS(6169), + [anon_sym_or_eq] = ACTIONS(6169), + [anon_sym_xor_eq] = ACTIONS(6169), + [anon_sym_LT_EQ_GT] = ACTIONS(6171), + [anon_sym_or] = ACTIONS(6169), + [anon_sym_and] = ACTIONS(6169), + [anon_sym_bitor] = ACTIONS(6169), + [anon_sym_xor] = ACTIONS(6169), + [anon_sym_bitand] = ACTIONS(6169), + [anon_sym_not_eq] = ACTIONS(6169), + [anon_sym_DASH_DASH] = ACTIONS(6171), + [anon_sym_PLUS_PLUS] = ACTIONS(6171), + [anon_sym_DOT] = ACTIONS(6169), + [anon_sym_DOT_STAR] = ACTIONS(6171), + [anon_sym_DASH_GT] = ACTIONS(6171), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6169), + [anon_sym_decltype] = ACTIONS(6169), }, - [2200] = { - [sym_attribute_specifier] = STATE(2257), - [sym_identifier] = ACTIONS(6151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6153), - [anon_sym_COMMA] = ACTIONS(6153), - [anon_sym_RPAREN] = ACTIONS(6153), - [aux_sym_preproc_if_token2] = ACTIONS(6153), - [aux_sym_preproc_else_token1] = ACTIONS(6153), - [aux_sym_preproc_elif_token1] = ACTIONS(6151), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6153), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6153), - [anon_sym_LPAREN2] = ACTIONS(6153), - [anon_sym_DASH] = ACTIONS(6151), - [anon_sym_PLUS] = ACTIONS(6151), - [anon_sym_STAR] = ACTIONS(6151), - [anon_sym_SLASH] = ACTIONS(6151), - [anon_sym_PERCENT] = ACTIONS(6151), - [anon_sym_PIPE_PIPE] = ACTIONS(6153), - [anon_sym_AMP_AMP] = ACTIONS(6153), - [anon_sym_PIPE] = ACTIONS(6151), - [anon_sym_CARET] = ACTIONS(6151), - [anon_sym_AMP] = ACTIONS(6151), - [anon_sym_EQ_EQ] = ACTIONS(6153), - [anon_sym_BANG_EQ] = ACTIONS(6153), - [anon_sym_GT] = ACTIONS(6151), - [anon_sym_GT_EQ] = ACTIONS(6153), - [anon_sym_LT_EQ] = ACTIONS(6151), - [anon_sym_LT] = ACTIONS(6151), - [anon_sym_LT_LT] = ACTIONS(6151), - [anon_sym_GT_GT] = ACTIONS(6151), - [anon_sym_SEMI] = ACTIONS(6153), - [anon_sym___attribute__] = ACTIONS(5497), - [anon_sym___attribute] = ACTIONS(5497), - [anon_sym_COLON] = ACTIONS(6153), - [anon_sym_LBRACE] = ACTIONS(6153), - [anon_sym_RBRACE] = ACTIONS(6153), - [anon_sym_LBRACK] = ACTIONS(6153), - [anon_sym_RBRACK] = ACTIONS(6153), - [anon_sym_EQ] = ACTIONS(6151), - [anon_sym_QMARK] = ACTIONS(6153), - [anon_sym_STAR_EQ] = ACTIONS(6153), - [anon_sym_SLASH_EQ] = ACTIONS(6153), - [anon_sym_PERCENT_EQ] = ACTIONS(6153), - [anon_sym_PLUS_EQ] = ACTIONS(6153), - [anon_sym_DASH_EQ] = ACTIONS(6153), - [anon_sym_LT_LT_EQ] = ACTIONS(6153), - [anon_sym_GT_GT_EQ] = ACTIONS(6153), - [anon_sym_AMP_EQ] = ACTIONS(6153), - [anon_sym_CARET_EQ] = ACTIONS(6153), - [anon_sym_PIPE_EQ] = ACTIONS(6153), - [anon_sym_and_eq] = ACTIONS(6151), - [anon_sym_or_eq] = ACTIONS(6151), - [anon_sym_xor_eq] = ACTIONS(6151), - [anon_sym_LT_EQ_GT] = ACTIONS(6153), - [anon_sym_or] = ACTIONS(6151), - [anon_sym_and] = ACTIONS(6151), - [anon_sym_bitor] = ACTIONS(6151), - [anon_sym_xor] = ACTIONS(6151), - [anon_sym_bitand] = ACTIONS(6151), - [anon_sym_not_eq] = ACTIONS(6151), - [anon_sym_DASH_DASH] = ACTIONS(6153), - [anon_sym_PLUS_PLUS] = ACTIONS(6153), - [anon_sym_DOT] = ACTIONS(6151), - [anon_sym_DOT_STAR] = ACTIONS(6153), - [anon_sym_DASH_GT] = ACTIONS(6153), + [2232] = { + [sym_string_literal] = STATE(2657), + [sym_template_argument_list] = STATE(3605), + [sym_raw_string_literal] = STATE(2657), + [aux_sym_structured_binding_declarator_repeat1] = STATE(7542), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4166), + [anon_sym_COMMA] = ACTIONS(6173), + [anon_sym_LPAREN2] = ACTIONS(4166), + [anon_sym_DASH] = ACTIONS(4174), + [anon_sym_PLUS] = ACTIONS(4174), + [anon_sym_STAR] = ACTIONS(4174), + [anon_sym_SLASH] = ACTIONS(4174), + [anon_sym_PERCENT] = ACTIONS(4174), + [anon_sym_PIPE_PIPE] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4166), + [anon_sym_PIPE] = ACTIONS(4174), + [anon_sym_CARET] = ACTIONS(4174), + [anon_sym_AMP] = ACTIONS(4174), + [anon_sym_EQ_EQ] = ACTIONS(4166), + [anon_sym_BANG_EQ] = ACTIONS(4166), + [anon_sym_GT] = ACTIONS(4174), + [anon_sym_GT_EQ] = ACTIONS(4166), + [anon_sym_LT_EQ] = ACTIONS(4174), + [anon_sym_LT] = ACTIONS(5085), + [anon_sym_LT_LT] = ACTIONS(4174), + [anon_sym_GT_GT] = ACTIONS(4174), + [anon_sym_COLON_COLON] = ACTIONS(4187), + [anon_sym_LBRACE] = ACTIONS(4192), + [anon_sym_LBRACK] = ACTIONS(4166), + [anon_sym_RBRACK] = ACTIONS(6175), + [anon_sym_EQ] = ACTIONS(6178), + [anon_sym_QMARK] = ACTIONS(4166), + [anon_sym_STAR_EQ] = ACTIONS(6128), + [anon_sym_SLASH_EQ] = ACTIONS(6128), + [anon_sym_PERCENT_EQ] = ACTIONS(6128), + [anon_sym_PLUS_EQ] = ACTIONS(6128), + [anon_sym_DASH_EQ] = ACTIONS(6128), + [anon_sym_LT_LT_EQ] = ACTIONS(6128), + [anon_sym_GT_GT_EQ] = ACTIONS(6128), + [anon_sym_AMP_EQ] = ACTIONS(6128), + [anon_sym_CARET_EQ] = ACTIONS(6128), + [anon_sym_PIPE_EQ] = ACTIONS(6128), + [anon_sym_and_eq] = ACTIONS(6128), + [anon_sym_or_eq] = ACTIONS(6128), + [anon_sym_xor_eq] = ACTIONS(6128), + [anon_sym_LT_EQ_GT] = ACTIONS(4166), + [anon_sym_or] = ACTIONS(4174), + [anon_sym_and] = ACTIONS(4174), + [anon_sym_bitor] = ACTIONS(4166), + [anon_sym_xor] = ACTIONS(4174), + [anon_sym_bitand] = ACTIONS(4166), + [anon_sym_not_eq] = ACTIONS(4166), + [anon_sym_DASH_DASH] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4174), + [anon_sym_DOT_STAR] = ACTIONS(4166), + [anon_sym_DASH_GT] = ACTIONS(4166), + [anon_sym_L_DQUOTE] = ACTIONS(3631), + [anon_sym_u_DQUOTE] = ACTIONS(3631), + [anon_sym_U_DQUOTE] = ACTIONS(3631), + [anon_sym_u8_DQUOTE] = ACTIONS(3631), + [anon_sym_DQUOTE] = ACTIONS(3631), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3635), + [anon_sym_LR_DQUOTE] = ACTIONS(3635), + [anon_sym_uR_DQUOTE] = ACTIONS(3635), + [anon_sym_UR_DQUOTE] = ACTIONS(3635), + [anon_sym_u8R_DQUOTE] = ACTIONS(3635), + }, + [2233] = { + [sym_string_literal] = STATE(2233), + [sym_raw_string_literal] = STATE(2233), + [aux_sym_concatenated_string_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(6180), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5411), + [anon_sym_COMMA] = ACTIONS(5411), + [anon_sym_RPAREN] = ACTIONS(5411), + [anon_sym_LPAREN2] = ACTIONS(5411), + [anon_sym_DASH] = ACTIONS(5413), + [anon_sym_PLUS] = ACTIONS(5413), + [anon_sym_STAR] = ACTIONS(5413), + [anon_sym_SLASH] = ACTIONS(5413), + [anon_sym_PERCENT] = ACTIONS(5413), + [anon_sym_PIPE_PIPE] = ACTIONS(5411), + [anon_sym_AMP_AMP] = ACTIONS(5411), + [anon_sym_PIPE] = ACTIONS(5413), + [anon_sym_CARET] = ACTIONS(5413), + [anon_sym_AMP] = ACTIONS(5413), + [anon_sym_EQ_EQ] = ACTIONS(5411), + [anon_sym_BANG_EQ] = ACTIONS(5411), + [anon_sym_GT] = ACTIONS(5413), + [anon_sym_GT_EQ] = ACTIONS(5411), + [anon_sym_LT_EQ] = ACTIONS(5413), + [anon_sym_LT] = ACTIONS(5413), + [anon_sym_LT_LT] = ACTIONS(5413), + [anon_sym_GT_GT] = ACTIONS(5413), + [anon_sym_LBRACK] = ACTIONS(5411), + [anon_sym_EQ] = ACTIONS(5413), + [anon_sym_QMARK] = ACTIONS(5411), + [anon_sym_STAR_EQ] = ACTIONS(5411), + [anon_sym_SLASH_EQ] = ACTIONS(5411), + [anon_sym_PERCENT_EQ] = ACTIONS(5411), + [anon_sym_PLUS_EQ] = ACTIONS(5411), + [anon_sym_DASH_EQ] = ACTIONS(5411), + [anon_sym_LT_LT_EQ] = ACTIONS(5411), + [anon_sym_GT_GT_EQ] = ACTIONS(5411), + [anon_sym_AMP_EQ] = ACTIONS(5411), + [anon_sym_CARET_EQ] = ACTIONS(5411), + [anon_sym_PIPE_EQ] = ACTIONS(5411), + [anon_sym_and_eq] = ACTIONS(5413), + [anon_sym_or_eq] = ACTIONS(5413), + [anon_sym_xor_eq] = ACTIONS(5413), + [anon_sym_LT_EQ_GT] = ACTIONS(5411), + [anon_sym_or] = ACTIONS(5413), + [anon_sym_and] = ACTIONS(5413), + [anon_sym_bitor] = ACTIONS(5413), + [anon_sym_xor] = ACTIONS(5413), + [anon_sym_bitand] = ACTIONS(5413), + [anon_sym_not_eq] = ACTIONS(5413), + [anon_sym_DASH_DASH] = ACTIONS(5411), + [anon_sym_PLUS_PLUS] = ACTIONS(5411), + [anon_sym_DOT] = ACTIONS(5413), + [anon_sym_DOT_STAR] = ACTIONS(5411), + [anon_sym_DASH_GT] = ACTIONS(5413), + [anon_sym_L_DQUOTE] = ACTIONS(6183), + [anon_sym_u_DQUOTE] = ACTIONS(6183), + [anon_sym_U_DQUOTE] = ACTIONS(6183), + [anon_sym_u8_DQUOTE] = ACTIONS(6183), + [anon_sym_DQUOTE] = ACTIONS(6183), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(6186), + [anon_sym_LR_DQUOTE] = ACTIONS(6186), + [anon_sym_uR_DQUOTE] = ACTIONS(6186), + [anon_sym_UR_DQUOTE] = ACTIONS(6186), + [anon_sym_u8R_DQUOTE] = ACTIONS(6186), + [anon_sym_DASH_GT_STAR] = ACTIONS(5411), + [sym_literal_suffix] = ACTIONS(5413), + }, + [2234] = { + [sym_string_literal] = STATE(2235), + [sym_raw_string_literal] = STATE(2235), + [aux_sym_concatenated_string_repeat1] = STATE(2235), + [sym_identifier] = ACTIONS(6189), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5401), + [anon_sym_COMMA] = ACTIONS(5401), + [anon_sym_RPAREN] = ACTIONS(5401), + [anon_sym_LPAREN2] = ACTIONS(5401), + [anon_sym_DASH] = ACTIONS(5403), + [anon_sym_PLUS] = ACTIONS(5403), + [anon_sym_STAR] = ACTIONS(5403), + [anon_sym_SLASH] = ACTIONS(5403), + [anon_sym_PERCENT] = ACTIONS(5403), + [anon_sym_PIPE_PIPE] = ACTIONS(5401), + [anon_sym_AMP_AMP] = ACTIONS(5401), + [anon_sym_PIPE] = ACTIONS(5403), + [anon_sym_CARET] = ACTIONS(5403), + [anon_sym_AMP] = ACTIONS(5403), + [anon_sym_EQ_EQ] = ACTIONS(5401), + [anon_sym_BANG_EQ] = ACTIONS(5401), + [anon_sym_GT] = ACTIONS(5403), + [anon_sym_GT_EQ] = ACTIONS(5401), + [anon_sym_LT_EQ] = ACTIONS(5403), + [anon_sym_LT] = ACTIONS(5403), + [anon_sym_LT_LT] = ACTIONS(5403), + [anon_sym_GT_GT] = ACTIONS(5403), + [anon_sym_LBRACK] = ACTIONS(5401), + [anon_sym_EQ] = ACTIONS(5403), + [anon_sym_QMARK] = ACTIONS(5401), + [anon_sym_STAR_EQ] = ACTIONS(5401), + [anon_sym_SLASH_EQ] = ACTIONS(5401), + [anon_sym_PERCENT_EQ] = ACTIONS(5401), + [anon_sym_PLUS_EQ] = ACTIONS(5401), + [anon_sym_DASH_EQ] = ACTIONS(5401), + [anon_sym_LT_LT_EQ] = ACTIONS(5401), + [anon_sym_GT_GT_EQ] = ACTIONS(5401), + [anon_sym_AMP_EQ] = ACTIONS(5401), + [anon_sym_CARET_EQ] = ACTIONS(5401), + [anon_sym_PIPE_EQ] = ACTIONS(5401), + [anon_sym_and_eq] = ACTIONS(5403), + [anon_sym_or_eq] = ACTIONS(5403), + [anon_sym_xor_eq] = ACTIONS(5403), + [anon_sym_LT_EQ_GT] = ACTIONS(5401), + [anon_sym_or] = ACTIONS(5403), + [anon_sym_and] = ACTIONS(5403), + [anon_sym_bitor] = ACTIONS(5403), + [anon_sym_xor] = ACTIONS(5403), + [anon_sym_bitand] = ACTIONS(5403), + [anon_sym_not_eq] = ACTIONS(5403), + [anon_sym_DASH_DASH] = ACTIONS(5401), + [anon_sym_PLUS_PLUS] = ACTIONS(5401), + [anon_sym_DOT] = ACTIONS(5403), + [anon_sym_DOT_STAR] = ACTIONS(5401), + [anon_sym_DASH_GT] = ACTIONS(5403), + [anon_sym_L_DQUOTE] = ACTIONS(5048), + [anon_sym_u_DQUOTE] = ACTIONS(5048), + [anon_sym_U_DQUOTE] = ACTIONS(5048), + [anon_sym_u8_DQUOTE] = ACTIONS(5048), + [anon_sym_DQUOTE] = ACTIONS(5048), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5050), + [anon_sym_LR_DQUOTE] = ACTIONS(5050), + [anon_sym_uR_DQUOTE] = ACTIONS(5050), + [anon_sym_UR_DQUOTE] = ACTIONS(5050), + [anon_sym_u8R_DQUOTE] = ACTIONS(5050), + [anon_sym_DASH_GT_STAR] = ACTIONS(5401), + [sym_literal_suffix] = ACTIONS(5403), + }, + [2235] = { + [sym_string_literal] = STATE(2233), + [sym_raw_string_literal] = STATE(2233), + [aux_sym_concatenated_string_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(6191), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5395), + [anon_sym_COMMA] = ACTIONS(5395), + [anon_sym_RPAREN] = ACTIONS(5395), + [anon_sym_LPAREN2] = ACTIONS(5395), + [anon_sym_DASH] = ACTIONS(5397), + [anon_sym_PLUS] = ACTIONS(5397), + [anon_sym_STAR] = ACTIONS(5397), + [anon_sym_SLASH] = ACTIONS(5397), + [anon_sym_PERCENT] = ACTIONS(5397), + [anon_sym_PIPE_PIPE] = ACTIONS(5395), + [anon_sym_AMP_AMP] = ACTIONS(5395), + [anon_sym_PIPE] = ACTIONS(5397), + [anon_sym_CARET] = ACTIONS(5397), + [anon_sym_AMP] = ACTIONS(5397), + [anon_sym_EQ_EQ] = ACTIONS(5395), + [anon_sym_BANG_EQ] = ACTIONS(5395), + [anon_sym_GT] = ACTIONS(5397), + [anon_sym_GT_EQ] = ACTIONS(5395), + [anon_sym_LT_EQ] = ACTIONS(5397), + [anon_sym_LT] = ACTIONS(5397), + [anon_sym_LT_LT] = ACTIONS(5397), + [anon_sym_GT_GT] = ACTIONS(5397), + [anon_sym_LBRACK] = ACTIONS(5395), + [anon_sym_EQ] = ACTIONS(5397), + [anon_sym_QMARK] = ACTIONS(5395), + [anon_sym_STAR_EQ] = ACTIONS(5395), + [anon_sym_SLASH_EQ] = ACTIONS(5395), + [anon_sym_PERCENT_EQ] = ACTIONS(5395), + [anon_sym_PLUS_EQ] = ACTIONS(5395), + [anon_sym_DASH_EQ] = ACTIONS(5395), + [anon_sym_LT_LT_EQ] = ACTIONS(5395), + [anon_sym_GT_GT_EQ] = ACTIONS(5395), + [anon_sym_AMP_EQ] = ACTIONS(5395), + [anon_sym_CARET_EQ] = ACTIONS(5395), + [anon_sym_PIPE_EQ] = ACTIONS(5395), + [anon_sym_and_eq] = ACTIONS(5397), + [anon_sym_or_eq] = ACTIONS(5397), + [anon_sym_xor_eq] = ACTIONS(5397), + [anon_sym_LT_EQ_GT] = ACTIONS(5395), + [anon_sym_or] = ACTIONS(5397), + [anon_sym_and] = ACTIONS(5397), + [anon_sym_bitor] = ACTIONS(5397), + [anon_sym_xor] = ACTIONS(5397), + [anon_sym_bitand] = ACTIONS(5397), + [anon_sym_not_eq] = ACTIONS(5397), + [anon_sym_DASH_DASH] = ACTIONS(5395), + [anon_sym_PLUS_PLUS] = ACTIONS(5395), + [anon_sym_DOT] = ACTIONS(5397), + [anon_sym_DOT_STAR] = ACTIONS(5395), + [anon_sym_DASH_GT] = ACTIONS(5397), + [anon_sym_L_DQUOTE] = ACTIONS(5048), + [anon_sym_u_DQUOTE] = ACTIONS(5048), + [anon_sym_U_DQUOTE] = ACTIONS(5048), + [anon_sym_u8_DQUOTE] = ACTIONS(5048), + [anon_sym_DQUOTE] = ACTIONS(5048), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5050), + [anon_sym_LR_DQUOTE] = ACTIONS(5050), + [anon_sym_uR_DQUOTE] = ACTIONS(5050), + [anon_sym_UR_DQUOTE] = ACTIONS(5050), + [anon_sym_u8R_DQUOTE] = ACTIONS(5050), + [anon_sym_DASH_GT_STAR] = ACTIONS(5395), + [sym_literal_suffix] = ACTIONS(5397), + }, + [2236] = { + [sym_identifier] = ACTIONS(5525), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5527), + [anon_sym_COMMA] = ACTIONS(5527), + [anon_sym_RPAREN] = ACTIONS(5527), + [aux_sym_preproc_if_token2] = ACTIONS(5527), + [aux_sym_preproc_else_token1] = ACTIONS(5527), + [aux_sym_preproc_elif_token1] = ACTIONS(5525), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5527), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5527), + [anon_sym_LPAREN2] = ACTIONS(5527), + [anon_sym_DASH] = ACTIONS(5525), + [anon_sym_PLUS] = ACTIONS(5525), + [anon_sym_STAR] = ACTIONS(5525), + [anon_sym_SLASH] = ACTIONS(5525), + [anon_sym_PERCENT] = ACTIONS(5525), + [anon_sym_PIPE_PIPE] = ACTIONS(5527), + [anon_sym_AMP_AMP] = ACTIONS(5527), + [anon_sym_PIPE] = ACTIONS(5525), + [anon_sym_CARET] = ACTIONS(5525), + [anon_sym_AMP] = ACTIONS(5525), + [anon_sym_EQ_EQ] = ACTIONS(5527), + [anon_sym_BANG_EQ] = ACTIONS(5527), + [anon_sym_GT] = ACTIONS(5525), + [anon_sym_GT_EQ] = ACTIONS(5527), + [anon_sym_LT_EQ] = ACTIONS(5525), + [anon_sym_LT] = ACTIONS(5525), + [anon_sym_LT_LT] = ACTIONS(5525), + [anon_sym_GT_GT] = ACTIONS(5525), + [anon_sym_SEMI] = ACTIONS(5527), + [anon_sym___attribute__] = ACTIONS(5525), + [anon_sym___attribute] = ACTIONS(5525), + [anon_sym_COLON] = ACTIONS(5525), + [anon_sym_COLON_COLON] = ACTIONS(5527), + [anon_sym_LBRACE] = ACTIONS(5527), + [anon_sym_RBRACE] = ACTIONS(5527), + [anon_sym_LBRACK] = ACTIONS(5527), + [anon_sym_RBRACK] = ACTIONS(5527), + [anon_sym_EQ] = ACTIONS(5525), + [anon_sym_QMARK] = ACTIONS(5527), + [anon_sym_STAR_EQ] = ACTIONS(5527), + [anon_sym_SLASH_EQ] = ACTIONS(5527), + [anon_sym_PERCENT_EQ] = ACTIONS(5527), + [anon_sym_PLUS_EQ] = ACTIONS(5527), + [anon_sym_DASH_EQ] = ACTIONS(5527), + [anon_sym_LT_LT_EQ] = ACTIONS(5527), + [anon_sym_GT_GT_EQ] = ACTIONS(5527), + [anon_sym_AMP_EQ] = ACTIONS(5527), + [anon_sym_CARET_EQ] = ACTIONS(5527), + [anon_sym_PIPE_EQ] = ACTIONS(5527), + [anon_sym_and_eq] = ACTIONS(5525), + [anon_sym_or_eq] = ACTIONS(5525), + [anon_sym_xor_eq] = ACTIONS(5525), + [anon_sym_LT_EQ_GT] = ACTIONS(5527), + [anon_sym_or] = ACTIONS(5525), + [anon_sym_and] = ACTIONS(5525), + [anon_sym_bitor] = ACTIONS(5525), + [anon_sym_xor] = ACTIONS(5525), + [anon_sym_bitand] = ACTIONS(5525), + [anon_sym_not_eq] = ACTIONS(5525), + [anon_sym_DASH_DASH] = ACTIONS(5527), + [anon_sym_PLUS_PLUS] = ACTIONS(5527), + [anon_sym_DOT] = ACTIONS(5525), + [anon_sym_DOT_STAR] = ACTIONS(5527), + [anon_sym_DASH_GT] = ACTIONS(5527), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6151), - [anon_sym_decltype] = ACTIONS(6151), + [sym_auto] = ACTIONS(5525), + [anon_sym_decltype] = ACTIONS(5525), }, - [2201] = { - [sym_attribute_specifier] = STATE(2263), - [sym_identifier] = ACTIONS(6155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6157), - [anon_sym_COMMA] = ACTIONS(6157), - [anon_sym_RPAREN] = ACTIONS(6157), - [aux_sym_preproc_if_token2] = ACTIONS(6157), - [aux_sym_preproc_else_token1] = ACTIONS(6157), - [aux_sym_preproc_elif_token1] = ACTIONS(6155), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6157), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6157), - [anon_sym_LPAREN2] = ACTIONS(6157), - [anon_sym_DASH] = ACTIONS(6155), - [anon_sym_PLUS] = ACTIONS(6155), - [anon_sym_STAR] = ACTIONS(6155), - [anon_sym_SLASH] = ACTIONS(6155), - [anon_sym_PERCENT] = ACTIONS(6155), - [anon_sym_PIPE_PIPE] = ACTIONS(6157), - [anon_sym_AMP_AMP] = ACTIONS(6157), - [anon_sym_PIPE] = ACTIONS(6155), - [anon_sym_CARET] = ACTIONS(6155), - [anon_sym_AMP] = ACTIONS(6155), - [anon_sym_EQ_EQ] = ACTIONS(6157), - [anon_sym_BANG_EQ] = ACTIONS(6157), - [anon_sym_GT] = ACTIONS(6155), - [anon_sym_GT_EQ] = ACTIONS(6157), - [anon_sym_LT_EQ] = ACTIONS(6155), - [anon_sym_LT] = ACTIONS(6155), - [anon_sym_LT_LT] = ACTIONS(6155), - [anon_sym_GT_GT] = ACTIONS(6155), - [anon_sym_SEMI] = ACTIONS(6157), - [anon_sym___attribute__] = ACTIONS(5497), - [anon_sym___attribute] = ACTIONS(5497), - [anon_sym_COLON] = ACTIONS(6157), - [anon_sym_LBRACE] = ACTIONS(6157), - [anon_sym_RBRACE] = ACTIONS(6157), - [anon_sym_LBRACK] = ACTIONS(6157), - [anon_sym_RBRACK] = ACTIONS(6157), - [anon_sym_EQ] = ACTIONS(6155), - [anon_sym_QMARK] = ACTIONS(6157), - [anon_sym_STAR_EQ] = ACTIONS(6157), - [anon_sym_SLASH_EQ] = ACTIONS(6157), - [anon_sym_PERCENT_EQ] = ACTIONS(6157), - [anon_sym_PLUS_EQ] = ACTIONS(6157), - [anon_sym_DASH_EQ] = ACTIONS(6157), - [anon_sym_LT_LT_EQ] = ACTIONS(6157), - [anon_sym_GT_GT_EQ] = ACTIONS(6157), - [anon_sym_AMP_EQ] = ACTIONS(6157), - [anon_sym_CARET_EQ] = ACTIONS(6157), - [anon_sym_PIPE_EQ] = ACTIONS(6157), - [anon_sym_and_eq] = ACTIONS(6155), - [anon_sym_or_eq] = ACTIONS(6155), - [anon_sym_xor_eq] = ACTIONS(6155), - [anon_sym_LT_EQ_GT] = ACTIONS(6157), - [anon_sym_or] = ACTIONS(6155), - [anon_sym_and] = ACTIONS(6155), - [anon_sym_bitor] = ACTIONS(6155), - [anon_sym_xor] = ACTIONS(6155), - [anon_sym_bitand] = ACTIONS(6155), - [anon_sym_not_eq] = ACTIONS(6155), - [anon_sym_DASH_DASH] = ACTIONS(6157), - [anon_sym_PLUS_PLUS] = ACTIONS(6157), - [anon_sym_DOT] = ACTIONS(6155), - [anon_sym_DOT_STAR] = ACTIONS(6157), - [anon_sym_DASH_GT] = ACTIONS(6157), + [2237] = { + [sym_string_literal] = STATE(2425), + [sym_template_argument_list] = STATE(3698), + [sym_raw_string_literal] = STATE(2425), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4166), + [anon_sym_COMMA] = ACTIONS(4166), + [anon_sym_RPAREN] = ACTIONS(4166), + [anon_sym_LPAREN2] = ACTIONS(4166), + [anon_sym_DASH] = ACTIONS(4174), + [anon_sym_PLUS] = ACTIONS(4174), + [anon_sym_STAR] = ACTIONS(4174), + [anon_sym_SLASH] = ACTIONS(4174), + [anon_sym_PERCENT] = ACTIONS(4174), + [anon_sym_PIPE_PIPE] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4166), + [anon_sym_PIPE] = ACTIONS(4174), + [anon_sym_CARET] = ACTIONS(4174), + [anon_sym_AMP] = ACTIONS(4174), + [anon_sym_EQ_EQ] = ACTIONS(4166), + [anon_sym_BANG_EQ] = ACTIONS(4166), + [anon_sym_GT] = ACTIONS(4174), + [anon_sym_GT_EQ] = ACTIONS(4166), + [anon_sym_LT_EQ] = ACTIONS(4174), + [anon_sym_LT] = ACTIONS(6193), + [anon_sym_LT_LT] = ACTIONS(4174), + [anon_sym_GT_GT] = ACTIONS(4174), + [anon_sym_COLON_COLON] = ACTIONS(4187), + [anon_sym_LBRACE] = ACTIONS(4192), + [anon_sym_LBRACK] = ACTIONS(4166), + [anon_sym_EQ] = ACTIONS(4174), + [anon_sym_QMARK] = ACTIONS(4166), + [anon_sym_STAR_EQ] = ACTIONS(4166), + [anon_sym_SLASH_EQ] = ACTIONS(4166), + [anon_sym_PERCENT_EQ] = ACTIONS(4166), + [anon_sym_PLUS_EQ] = ACTIONS(4166), + [anon_sym_DASH_EQ] = ACTIONS(4166), + [anon_sym_LT_LT_EQ] = ACTIONS(4166), + [anon_sym_GT_GT_EQ] = ACTIONS(4166), + [anon_sym_AMP_EQ] = ACTIONS(4166), + [anon_sym_CARET_EQ] = ACTIONS(4166), + [anon_sym_PIPE_EQ] = ACTIONS(4166), + [anon_sym_and_eq] = ACTIONS(6196), + [anon_sym_or_eq] = ACTIONS(6196), + [anon_sym_xor_eq] = ACTIONS(6196), + [anon_sym_LT_EQ_GT] = ACTIONS(4166), + [anon_sym_or] = ACTIONS(4174), + [anon_sym_and] = ACTIONS(4174), + [anon_sym_bitor] = ACTIONS(4166), + [anon_sym_xor] = ACTIONS(4174), + [anon_sym_bitand] = ACTIONS(4166), + [anon_sym_not_eq] = ACTIONS(4166), + [anon_sym_DASH_DASH] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4174), + [anon_sym_DOT_STAR] = ACTIONS(4166), + [anon_sym_DASH_GT] = ACTIONS(4174), + [anon_sym_L_DQUOTE] = ACTIONS(4509), + [anon_sym_u_DQUOTE] = ACTIONS(4509), + [anon_sym_U_DQUOTE] = ACTIONS(4509), + [anon_sym_u8_DQUOTE] = ACTIONS(4509), + [anon_sym_DQUOTE] = ACTIONS(4509), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(4511), + [anon_sym_LR_DQUOTE] = ACTIONS(4511), + [anon_sym_uR_DQUOTE] = ACTIONS(4511), + [anon_sym_UR_DQUOTE] = ACTIONS(4511), + [anon_sym_u8R_DQUOTE] = ACTIONS(4511), + [anon_sym_DASH_GT_STAR] = ACTIONS(4166), + }, + [2238] = { + [sym_string_literal] = STATE(2657), + [sym_template_argument_list] = STATE(3605), + [sym_raw_string_literal] = STATE(2657), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4166), + [anon_sym_COMMA] = ACTIONS(4166), + [anon_sym_LPAREN2] = ACTIONS(4166), + [anon_sym_DASH] = ACTIONS(4174), + [anon_sym_PLUS] = ACTIONS(4174), + [anon_sym_STAR] = ACTIONS(4174), + [anon_sym_SLASH] = ACTIONS(4174), + [anon_sym_PERCENT] = ACTIONS(4174), + [anon_sym_PIPE_PIPE] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4166), + [anon_sym_PIPE] = ACTIONS(4174), + [anon_sym_CARET] = ACTIONS(4174), + [anon_sym_AMP] = ACTIONS(4174), + [anon_sym_EQ_EQ] = ACTIONS(4166), + [anon_sym_BANG_EQ] = ACTIONS(4166), + [anon_sym_GT] = ACTIONS(4174), + [anon_sym_GT_EQ] = ACTIONS(4166), + [anon_sym_LT_EQ] = ACTIONS(4174), + [anon_sym_LT] = ACTIONS(5085), + [anon_sym_LT_LT] = ACTIONS(4174), + [anon_sym_GT_GT] = ACTIONS(4174), + [anon_sym_SEMI] = ACTIONS(4166), + [anon_sym_COLON] = ACTIONS(4226), + [anon_sym_COLON_COLON] = ACTIONS(4187), + [anon_sym_LBRACE] = ACTIONS(4192), + [anon_sym_LBRACK] = ACTIONS(4166), + [anon_sym_EQ] = ACTIONS(4200), + [anon_sym_QMARK] = ACTIONS(4166), + [anon_sym_STAR_EQ] = ACTIONS(4202), + [anon_sym_SLASH_EQ] = ACTIONS(4202), + [anon_sym_PERCENT_EQ] = ACTIONS(4202), + [anon_sym_PLUS_EQ] = ACTIONS(4202), + [anon_sym_DASH_EQ] = ACTIONS(4202), + [anon_sym_LT_LT_EQ] = ACTIONS(4202), + [anon_sym_GT_GT_EQ] = ACTIONS(4202), + [anon_sym_AMP_EQ] = ACTIONS(4202), + [anon_sym_CARET_EQ] = ACTIONS(4202), + [anon_sym_PIPE_EQ] = ACTIONS(4202), + [anon_sym_and_eq] = ACTIONS(4202), + [anon_sym_or_eq] = ACTIONS(4202), + [anon_sym_xor_eq] = ACTIONS(4202), + [anon_sym_LT_EQ_GT] = ACTIONS(4166), + [anon_sym_or] = ACTIONS(4174), + [anon_sym_and] = ACTIONS(4174), + [anon_sym_bitor] = ACTIONS(4166), + [anon_sym_xor] = ACTIONS(4174), + [anon_sym_bitand] = ACTIONS(4166), + [anon_sym_not_eq] = ACTIONS(4166), + [anon_sym_DASH_DASH] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4174), + [anon_sym_DOT_STAR] = ACTIONS(4166), + [anon_sym_DASH_GT] = ACTIONS(4166), + [anon_sym_L_DQUOTE] = ACTIONS(3631), + [anon_sym_u_DQUOTE] = ACTIONS(3631), + [anon_sym_U_DQUOTE] = ACTIONS(3631), + [anon_sym_u8_DQUOTE] = ACTIONS(3631), + [anon_sym_DQUOTE] = ACTIONS(3631), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3635), + [anon_sym_LR_DQUOTE] = ACTIONS(3635), + [anon_sym_uR_DQUOTE] = ACTIONS(3635), + [anon_sym_UR_DQUOTE] = ACTIONS(3635), + [anon_sym_u8R_DQUOTE] = ACTIONS(3635), + }, + [2239] = { + [sym_string_literal] = STATE(2657), + [sym_template_argument_list] = STATE(3605), + [sym_raw_string_literal] = STATE(2657), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4166), + [anon_sym_COMMA] = ACTIONS(4166), + [anon_sym_LPAREN2] = ACTIONS(4166), + [anon_sym_DASH] = ACTIONS(4174), + [anon_sym_PLUS] = ACTIONS(4174), + [anon_sym_STAR] = ACTIONS(4174), + [anon_sym_SLASH] = ACTIONS(4174), + [anon_sym_PERCENT] = ACTIONS(4174), + [anon_sym_PIPE_PIPE] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4166), + [anon_sym_PIPE] = ACTIONS(4174), + [anon_sym_CARET] = ACTIONS(4174), + [anon_sym_AMP] = ACTIONS(4174), + [anon_sym_EQ_EQ] = ACTIONS(4166), + [anon_sym_BANG_EQ] = ACTIONS(4166), + [anon_sym_GT] = ACTIONS(4174), + [anon_sym_GT_EQ] = ACTIONS(4166), + [anon_sym_LT_EQ] = ACTIONS(4174), + [anon_sym_LT] = ACTIONS(5085), + [anon_sym_LT_LT] = ACTIONS(4174), + [anon_sym_GT_GT] = ACTIONS(4174), + [anon_sym_SEMI] = ACTIONS(4166), + [anon_sym_COLON] = ACTIONS(4298), + [anon_sym_COLON_COLON] = ACTIONS(4187), + [anon_sym_LBRACE] = ACTIONS(4192), + [anon_sym_LBRACK] = ACTIONS(4166), + [anon_sym_EQ] = ACTIONS(4200), + [anon_sym_QMARK] = ACTIONS(4166), + [anon_sym_STAR_EQ] = ACTIONS(4202), + [anon_sym_SLASH_EQ] = ACTIONS(4202), + [anon_sym_PERCENT_EQ] = ACTIONS(4202), + [anon_sym_PLUS_EQ] = ACTIONS(4202), + [anon_sym_DASH_EQ] = ACTIONS(4202), + [anon_sym_LT_LT_EQ] = ACTIONS(4202), + [anon_sym_GT_GT_EQ] = ACTIONS(4202), + [anon_sym_AMP_EQ] = ACTIONS(4202), + [anon_sym_CARET_EQ] = ACTIONS(4202), + [anon_sym_PIPE_EQ] = ACTIONS(4202), + [anon_sym_and_eq] = ACTIONS(4202), + [anon_sym_or_eq] = ACTIONS(4202), + [anon_sym_xor_eq] = ACTIONS(4202), + [anon_sym_LT_EQ_GT] = ACTIONS(4166), + [anon_sym_or] = ACTIONS(4174), + [anon_sym_and] = ACTIONS(4174), + [anon_sym_bitor] = ACTIONS(4166), + [anon_sym_xor] = ACTIONS(4174), + [anon_sym_bitand] = ACTIONS(4166), + [anon_sym_not_eq] = ACTIONS(4166), + [anon_sym_DASH_DASH] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4174), + [anon_sym_DOT_STAR] = ACTIONS(4166), + [anon_sym_DASH_GT] = ACTIONS(4166), + [anon_sym_L_DQUOTE] = ACTIONS(3631), + [anon_sym_u_DQUOTE] = ACTIONS(3631), + [anon_sym_U_DQUOTE] = ACTIONS(3631), + [anon_sym_u8_DQUOTE] = ACTIONS(3631), + [anon_sym_DQUOTE] = ACTIONS(3631), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3635), + [anon_sym_LR_DQUOTE] = ACTIONS(3635), + [anon_sym_uR_DQUOTE] = ACTIONS(3635), + [anon_sym_UR_DQUOTE] = ACTIONS(3635), + [anon_sym_u8R_DQUOTE] = ACTIONS(3635), + }, + [2240] = { + [sym_attribute_declaration] = STATE(2270), + [sym_parameter_list] = STATE(1942), + [aux_sym_attributed_declarator_repeat1] = STATE(2270), + [sym_identifier] = ACTIONS(6198), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6200), + [anon_sym_COMMA] = ACTIONS(6200), + [anon_sym_RPAREN] = ACTIONS(6200), + [aux_sym_preproc_if_token2] = ACTIONS(6200), + [aux_sym_preproc_else_token1] = ACTIONS(6200), + [aux_sym_preproc_elif_token1] = ACTIONS(6198), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6200), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6200), + [anon_sym_LPAREN2] = ACTIONS(6094), + [anon_sym_DASH] = ACTIONS(6198), + [anon_sym_PLUS] = ACTIONS(6198), + [anon_sym_STAR] = ACTIONS(6198), + [anon_sym_SLASH] = ACTIONS(6198), + [anon_sym_PERCENT] = ACTIONS(6198), + [anon_sym_PIPE_PIPE] = ACTIONS(6200), + [anon_sym_AMP_AMP] = ACTIONS(6200), + [anon_sym_PIPE] = ACTIONS(6198), + [anon_sym_CARET] = ACTIONS(6198), + [anon_sym_AMP] = ACTIONS(6198), + [anon_sym_EQ_EQ] = ACTIONS(6200), + [anon_sym_BANG_EQ] = ACTIONS(6200), + [anon_sym_GT] = ACTIONS(6198), + [anon_sym_GT_EQ] = ACTIONS(6200), + [anon_sym_LT_EQ] = ACTIONS(6198), + [anon_sym_LT] = ACTIONS(6198), + [anon_sym_LT_LT] = ACTIONS(6198), + [anon_sym_GT_GT] = ACTIONS(6198), + [anon_sym_SEMI] = ACTIONS(6200), + [anon_sym___attribute__] = ACTIONS(6198), + [anon_sym___attribute] = ACTIONS(6198), + [anon_sym_COLON] = ACTIONS(6200), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6096), + [anon_sym_RBRACE] = ACTIONS(6200), + [anon_sym_LBRACK] = ACTIONS(6098), + [anon_sym_RBRACK] = ACTIONS(6200), + [anon_sym_EQ] = ACTIONS(6198), + [anon_sym_QMARK] = ACTIONS(6200), + [anon_sym_STAR_EQ] = ACTIONS(6200), + [anon_sym_SLASH_EQ] = ACTIONS(6200), + [anon_sym_PERCENT_EQ] = ACTIONS(6200), + [anon_sym_PLUS_EQ] = ACTIONS(6200), + [anon_sym_DASH_EQ] = ACTIONS(6200), + [anon_sym_LT_LT_EQ] = ACTIONS(6200), + [anon_sym_GT_GT_EQ] = ACTIONS(6200), + [anon_sym_AMP_EQ] = ACTIONS(6200), + [anon_sym_CARET_EQ] = ACTIONS(6200), + [anon_sym_PIPE_EQ] = ACTIONS(6200), + [anon_sym_and_eq] = ACTIONS(6198), + [anon_sym_or_eq] = ACTIONS(6198), + [anon_sym_xor_eq] = ACTIONS(6198), + [anon_sym_LT_EQ_GT] = ACTIONS(6200), + [anon_sym_or] = ACTIONS(6198), + [anon_sym_and] = ACTIONS(6198), + [anon_sym_bitor] = ACTIONS(6198), + [anon_sym_xor] = ACTIONS(6198), + [anon_sym_bitand] = ACTIONS(6198), + [anon_sym_not_eq] = ACTIONS(6198), + [anon_sym_DASH_DASH] = ACTIONS(6200), + [anon_sym_PLUS_PLUS] = ACTIONS(6200), + [anon_sym_DOT] = ACTIONS(6198), + [anon_sym_DOT_STAR] = ACTIONS(6200), + [anon_sym_DASH_GT] = ACTIONS(6200), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6155), - [anon_sym_decltype] = ACTIONS(6155), }, - [2202] = { - [sym_string_literal] = STATE(2370), - [sym_template_argument_list] = STATE(3664), - [sym_raw_string_literal] = STATE(2370), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4146), - [anon_sym_COMMA] = ACTIONS(4146), - [anon_sym_RPAREN] = ACTIONS(4146), - [anon_sym_LPAREN2] = ACTIONS(4146), - [anon_sym_DASH] = ACTIONS(4154), - [anon_sym_PLUS] = ACTIONS(4154), - [anon_sym_STAR] = ACTIONS(4154), - [anon_sym_SLASH] = ACTIONS(4154), - [anon_sym_PERCENT] = ACTIONS(4154), - [anon_sym_PIPE_PIPE] = ACTIONS(4146), - [anon_sym_AMP_AMP] = ACTIONS(4146), - [anon_sym_PIPE] = ACTIONS(4154), - [anon_sym_CARET] = ACTIONS(4154), - [anon_sym_AMP] = ACTIONS(4154), - [anon_sym_EQ_EQ] = ACTIONS(4146), - [anon_sym_BANG_EQ] = ACTIONS(4146), - [anon_sym_GT] = ACTIONS(4154), - [anon_sym_GT_EQ] = ACTIONS(4146), - [anon_sym_LT_EQ] = ACTIONS(4154), - [anon_sym_LT] = ACTIONS(6159), - [anon_sym_LT_LT] = ACTIONS(4154), - [anon_sym_GT_GT] = ACTIONS(4154), - [anon_sym_COLON_COLON] = ACTIONS(4167), - [anon_sym_LBRACE] = ACTIONS(4172), - [anon_sym_LBRACK] = ACTIONS(4146), - [anon_sym_EQ] = ACTIONS(4154), - [anon_sym_QMARK] = ACTIONS(4146), - [anon_sym_STAR_EQ] = ACTIONS(4146), - [anon_sym_SLASH_EQ] = ACTIONS(4146), - [anon_sym_PERCENT_EQ] = ACTIONS(4146), - [anon_sym_PLUS_EQ] = ACTIONS(4146), - [anon_sym_DASH_EQ] = ACTIONS(4146), - [anon_sym_LT_LT_EQ] = ACTIONS(4146), - [anon_sym_GT_GT_EQ] = ACTIONS(4146), - [anon_sym_AMP_EQ] = ACTIONS(4146), - [anon_sym_CARET_EQ] = ACTIONS(4146), - [anon_sym_PIPE_EQ] = ACTIONS(4146), - [anon_sym_and_eq] = ACTIONS(6162), - [anon_sym_or_eq] = ACTIONS(6162), - [anon_sym_xor_eq] = ACTIONS(6162), - [anon_sym_LT_EQ_GT] = ACTIONS(4146), - [anon_sym_or] = ACTIONS(4154), - [anon_sym_and] = ACTIONS(4154), - [anon_sym_bitor] = ACTIONS(4146), - [anon_sym_xor] = ACTIONS(4154), - [anon_sym_bitand] = ACTIONS(4146), - [anon_sym_not_eq] = ACTIONS(4146), - [anon_sym_DASH_DASH] = ACTIONS(4146), - [anon_sym_PLUS_PLUS] = ACTIONS(4146), - [anon_sym_DOT] = ACTIONS(4154), - [anon_sym_DOT_STAR] = ACTIONS(4146), - [anon_sym_DASH_GT] = ACTIONS(4154), - [anon_sym_L_DQUOTE] = ACTIONS(4411), - [anon_sym_u_DQUOTE] = ACTIONS(4411), - [anon_sym_U_DQUOTE] = ACTIONS(4411), - [anon_sym_u8_DQUOTE] = ACTIONS(4411), - [anon_sym_DQUOTE] = ACTIONS(4411), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(4413), - [anon_sym_LR_DQUOTE] = ACTIONS(4413), - [anon_sym_uR_DQUOTE] = ACTIONS(4413), - [anon_sym_UR_DQUOTE] = ACTIONS(4413), - [anon_sym_u8R_DQUOTE] = ACTIONS(4413), - [anon_sym_DASH_GT_STAR] = ACTIONS(4146), + [2241] = { + [sym_string_literal] = STATE(2657), + [sym_template_argument_list] = STATE(3605), + [sym_raw_string_literal] = STATE(2657), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4166), + [anon_sym_COMMA] = ACTIONS(4166), + [anon_sym_LPAREN2] = ACTIONS(4166), + [anon_sym_DASH] = ACTIONS(4174), + [anon_sym_PLUS] = ACTIONS(4174), + [anon_sym_STAR] = ACTIONS(4174), + [anon_sym_SLASH] = ACTIONS(4174), + [anon_sym_PERCENT] = ACTIONS(4174), + [anon_sym_PIPE_PIPE] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4166), + [anon_sym_PIPE] = ACTIONS(4174), + [anon_sym_CARET] = ACTIONS(4174), + [anon_sym_AMP] = ACTIONS(4174), + [anon_sym_EQ_EQ] = ACTIONS(4166), + [anon_sym_BANG_EQ] = ACTIONS(4166), + [anon_sym_GT] = ACTIONS(4174), + [anon_sym_GT_EQ] = ACTIONS(4166), + [anon_sym_LT_EQ] = ACTIONS(4174), + [anon_sym_LT] = ACTIONS(5085), + [anon_sym_LT_LT] = ACTIONS(4174), + [anon_sym_GT_GT] = ACTIONS(4174), + [anon_sym_SEMI] = ACTIONS(4166), + [anon_sym_COLON] = ACTIONS(4224), + [anon_sym_COLON_COLON] = ACTIONS(4187), + [anon_sym_LBRACE] = ACTIONS(4192), + [anon_sym_LBRACK] = ACTIONS(4166), + [anon_sym_EQ] = ACTIONS(4200), + [anon_sym_QMARK] = ACTIONS(4166), + [anon_sym_STAR_EQ] = ACTIONS(4202), + [anon_sym_SLASH_EQ] = ACTIONS(4202), + [anon_sym_PERCENT_EQ] = ACTIONS(4202), + [anon_sym_PLUS_EQ] = ACTIONS(4202), + [anon_sym_DASH_EQ] = ACTIONS(4202), + [anon_sym_LT_LT_EQ] = ACTIONS(4202), + [anon_sym_GT_GT_EQ] = ACTIONS(4202), + [anon_sym_AMP_EQ] = ACTIONS(4202), + [anon_sym_CARET_EQ] = ACTIONS(4202), + [anon_sym_PIPE_EQ] = ACTIONS(4202), + [anon_sym_and_eq] = ACTIONS(4202), + [anon_sym_or_eq] = ACTIONS(4202), + [anon_sym_xor_eq] = ACTIONS(4202), + [anon_sym_LT_EQ_GT] = ACTIONS(4166), + [anon_sym_or] = ACTIONS(4174), + [anon_sym_and] = ACTIONS(4174), + [anon_sym_bitor] = ACTIONS(4166), + [anon_sym_xor] = ACTIONS(4174), + [anon_sym_bitand] = ACTIONS(4166), + [anon_sym_not_eq] = ACTIONS(4166), + [anon_sym_DASH_DASH] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4174), + [anon_sym_DOT_STAR] = ACTIONS(4166), + [anon_sym_DASH_GT] = ACTIONS(4166), + [anon_sym_L_DQUOTE] = ACTIONS(3631), + [anon_sym_u_DQUOTE] = ACTIONS(3631), + [anon_sym_U_DQUOTE] = ACTIONS(3631), + [anon_sym_u8_DQUOTE] = ACTIONS(3631), + [anon_sym_DQUOTE] = ACTIONS(3631), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3635), + [anon_sym_LR_DQUOTE] = ACTIONS(3635), + [anon_sym_uR_DQUOTE] = ACTIONS(3635), + [anon_sym_UR_DQUOTE] = ACTIONS(3635), + [anon_sym_u8R_DQUOTE] = ACTIONS(3635), }, - [2203] = { + [2242] = { + [sym_identifier] = ACTIONS(5515), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5517), + [anon_sym_COMMA] = ACTIONS(5517), + [anon_sym_RPAREN] = ACTIONS(5517), + [aux_sym_preproc_if_token2] = ACTIONS(5517), + [aux_sym_preproc_else_token1] = ACTIONS(5517), + [aux_sym_preproc_elif_token1] = ACTIONS(5515), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5517), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5517), + [anon_sym_LPAREN2] = ACTIONS(5517), + [anon_sym_DASH] = ACTIONS(5515), + [anon_sym_PLUS] = ACTIONS(5515), + [anon_sym_STAR] = ACTIONS(5515), + [anon_sym_SLASH] = ACTIONS(5515), + [anon_sym_PERCENT] = ACTIONS(5515), + [anon_sym_PIPE_PIPE] = ACTIONS(5517), + [anon_sym_AMP_AMP] = ACTIONS(5517), + [anon_sym_PIPE] = ACTIONS(5515), + [anon_sym_CARET] = ACTIONS(5515), + [anon_sym_AMP] = ACTIONS(5515), + [anon_sym_EQ_EQ] = ACTIONS(5517), + [anon_sym_BANG_EQ] = ACTIONS(5517), + [anon_sym_GT] = ACTIONS(5515), + [anon_sym_GT_EQ] = ACTIONS(5517), + [anon_sym_LT_EQ] = ACTIONS(5515), + [anon_sym_LT] = ACTIONS(5515), + [anon_sym_LT_LT] = ACTIONS(5515), + [anon_sym_GT_GT] = ACTIONS(5515), + [anon_sym_SEMI] = ACTIONS(5517), + [anon_sym___attribute__] = ACTIONS(5515), + [anon_sym___attribute] = ACTIONS(5515), + [anon_sym_COLON] = ACTIONS(5515), + [anon_sym_COLON_COLON] = ACTIONS(5519), + [anon_sym_LBRACE] = ACTIONS(5517), + [anon_sym_RBRACE] = ACTIONS(5517), + [anon_sym_LBRACK] = ACTIONS(5517), + [anon_sym_RBRACK] = ACTIONS(5517), + [anon_sym_EQ] = ACTIONS(5515), + [anon_sym_QMARK] = ACTIONS(5517), + [anon_sym_STAR_EQ] = ACTIONS(5517), + [anon_sym_SLASH_EQ] = ACTIONS(5517), + [anon_sym_PERCENT_EQ] = ACTIONS(5517), + [anon_sym_PLUS_EQ] = ACTIONS(5517), + [anon_sym_DASH_EQ] = ACTIONS(5517), + [anon_sym_LT_LT_EQ] = ACTIONS(5517), + [anon_sym_GT_GT_EQ] = ACTIONS(5517), + [anon_sym_AMP_EQ] = ACTIONS(5517), + [anon_sym_CARET_EQ] = ACTIONS(5517), + [anon_sym_PIPE_EQ] = ACTIONS(5517), + [anon_sym_and_eq] = ACTIONS(5515), + [anon_sym_or_eq] = ACTIONS(5515), + [anon_sym_xor_eq] = ACTIONS(5515), + [anon_sym_LT_EQ_GT] = ACTIONS(5517), + [anon_sym_or] = ACTIONS(5515), + [anon_sym_and] = ACTIONS(5515), + [anon_sym_bitor] = ACTIONS(5515), + [anon_sym_xor] = ACTIONS(5515), + [anon_sym_bitand] = ACTIONS(5515), + [anon_sym_not_eq] = ACTIONS(5515), + [anon_sym_DASH_DASH] = ACTIONS(5517), + [anon_sym_PLUS_PLUS] = ACTIONS(5517), + [anon_sym_DOT] = ACTIONS(5515), + [anon_sym_DOT_STAR] = ACTIONS(5517), + [anon_sym_DASH_GT] = ACTIONS(5517), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5515), + [anon_sym_decltype] = ACTIONS(5515), + }, + [2243] = { [sym_attribute_declaration] = STATE(2270), - [sym_parameter_list] = STATE(2298), + [sym_parameter_list] = STATE(1942), [aux_sym_attributed_declarator_repeat1] = STATE(2270), - [sym_identifier] = ACTIONS(6164), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6166), - [anon_sym_COMMA] = ACTIONS(6166), - [anon_sym_RPAREN] = ACTIONS(6166), - [aux_sym_preproc_if_token2] = ACTIONS(6166), - [aux_sym_preproc_else_token1] = ACTIONS(6166), - [aux_sym_preproc_elif_token1] = ACTIONS(6164), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6166), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6166), - [anon_sym_LPAREN2] = ACTIONS(6042), - [anon_sym_DASH] = ACTIONS(6164), - [anon_sym_PLUS] = ACTIONS(6164), - [anon_sym_STAR] = ACTIONS(6164), - [anon_sym_SLASH] = ACTIONS(6164), - [anon_sym_PERCENT] = ACTIONS(6164), - [anon_sym_PIPE_PIPE] = ACTIONS(6166), - [anon_sym_AMP_AMP] = ACTIONS(6166), - [anon_sym_PIPE] = ACTIONS(6164), - [anon_sym_CARET] = ACTIONS(6164), - [anon_sym_AMP] = ACTIONS(6164), - [anon_sym_EQ_EQ] = ACTIONS(6166), - [anon_sym_BANG_EQ] = ACTIONS(6166), - [anon_sym_GT] = ACTIONS(6164), - [anon_sym_GT_EQ] = ACTIONS(6166), - [anon_sym_LT_EQ] = ACTIONS(6164), - [anon_sym_LT] = ACTIONS(6164), - [anon_sym_LT_LT] = ACTIONS(6164), - [anon_sym_GT_GT] = ACTIONS(6164), - [anon_sym_SEMI] = ACTIONS(6166), - [anon_sym___attribute__] = ACTIONS(6164), - [anon_sym___attribute] = ACTIONS(6164), - [anon_sym_COLON] = ACTIONS(6166), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6044), - [anon_sym_RBRACE] = ACTIONS(6166), - [anon_sym_LBRACK] = ACTIONS(6046), - [anon_sym_RBRACK] = ACTIONS(6166), - [anon_sym_EQ] = ACTIONS(6164), - [anon_sym_QMARK] = ACTIONS(6166), - [anon_sym_STAR_EQ] = ACTIONS(6166), - [anon_sym_SLASH_EQ] = ACTIONS(6166), - [anon_sym_PERCENT_EQ] = ACTIONS(6166), - [anon_sym_PLUS_EQ] = ACTIONS(6166), - [anon_sym_DASH_EQ] = ACTIONS(6166), - [anon_sym_LT_LT_EQ] = ACTIONS(6166), - [anon_sym_GT_GT_EQ] = ACTIONS(6166), - [anon_sym_AMP_EQ] = ACTIONS(6166), - [anon_sym_CARET_EQ] = ACTIONS(6166), - [anon_sym_PIPE_EQ] = ACTIONS(6166), - [anon_sym_and_eq] = ACTIONS(6164), - [anon_sym_or_eq] = ACTIONS(6164), - [anon_sym_xor_eq] = ACTIONS(6164), - [anon_sym_LT_EQ_GT] = ACTIONS(6166), - [anon_sym_or] = ACTIONS(6164), - [anon_sym_and] = ACTIONS(6164), - [anon_sym_bitor] = ACTIONS(6164), - [anon_sym_xor] = ACTIONS(6164), - [anon_sym_bitand] = ACTIONS(6164), - [anon_sym_not_eq] = ACTIONS(6164), - [anon_sym_DASH_DASH] = ACTIONS(6166), - [anon_sym_PLUS_PLUS] = ACTIONS(6166), - [anon_sym_DOT] = ACTIONS(6164), - [anon_sym_DOT_STAR] = ACTIONS(6166), - [anon_sym_DASH_GT] = ACTIONS(6166), + [sym_identifier] = ACTIONS(6202), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6204), + [anon_sym_COMMA] = ACTIONS(6204), + [anon_sym_RPAREN] = ACTIONS(6204), + [aux_sym_preproc_if_token2] = ACTIONS(6204), + [aux_sym_preproc_else_token1] = ACTIONS(6204), + [aux_sym_preproc_elif_token1] = ACTIONS(6202), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6204), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6204), + [anon_sym_LPAREN2] = ACTIONS(6094), + [anon_sym_DASH] = ACTIONS(6202), + [anon_sym_PLUS] = ACTIONS(6202), + [anon_sym_STAR] = ACTIONS(6202), + [anon_sym_SLASH] = ACTIONS(6202), + [anon_sym_PERCENT] = ACTIONS(6202), + [anon_sym_PIPE_PIPE] = ACTIONS(6204), + [anon_sym_AMP_AMP] = ACTIONS(6204), + [anon_sym_PIPE] = ACTIONS(6202), + [anon_sym_CARET] = ACTIONS(6202), + [anon_sym_AMP] = ACTIONS(6202), + [anon_sym_EQ_EQ] = ACTIONS(6204), + [anon_sym_BANG_EQ] = ACTIONS(6204), + [anon_sym_GT] = ACTIONS(6202), + [anon_sym_GT_EQ] = ACTIONS(6204), + [anon_sym_LT_EQ] = ACTIONS(6202), + [anon_sym_LT] = ACTIONS(6202), + [anon_sym_LT_LT] = ACTIONS(6202), + [anon_sym_GT_GT] = ACTIONS(6202), + [anon_sym_SEMI] = ACTIONS(6204), + [anon_sym___attribute__] = ACTIONS(6202), + [anon_sym___attribute] = ACTIONS(6202), + [anon_sym_COLON] = ACTIONS(6204), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6096), + [anon_sym_RBRACE] = ACTIONS(6204), + [anon_sym_LBRACK] = ACTIONS(6098), + [anon_sym_RBRACK] = ACTIONS(6204), + [anon_sym_EQ] = ACTIONS(6202), + [anon_sym_QMARK] = ACTIONS(6204), + [anon_sym_STAR_EQ] = ACTIONS(6204), + [anon_sym_SLASH_EQ] = ACTIONS(6204), + [anon_sym_PERCENT_EQ] = ACTIONS(6204), + [anon_sym_PLUS_EQ] = ACTIONS(6204), + [anon_sym_DASH_EQ] = ACTIONS(6204), + [anon_sym_LT_LT_EQ] = ACTIONS(6204), + [anon_sym_GT_GT_EQ] = ACTIONS(6204), + [anon_sym_AMP_EQ] = ACTIONS(6204), + [anon_sym_CARET_EQ] = ACTIONS(6204), + [anon_sym_PIPE_EQ] = ACTIONS(6204), + [anon_sym_and_eq] = ACTIONS(6202), + [anon_sym_or_eq] = ACTIONS(6202), + [anon_sym_xor_eq] = ACTIONS(6202), + [anon_sym_LT_EQ_GT] = ACTIONS(6204), + [anon_sym_or] = ACTIONS(6202), + [anon_sym_and] = ACTIONS(6202), + [anon_sym_bitor] = ACTIONS(6202), + [anon_sym_xor] = ACTIONS(6202), + [anon_sym_bitand] = ACTIONS(6202), + [anon_sym_not_eq] = ACTIONS(6202), + [anon_sym_DASH_DASH] = ACTIONS(6204), + [anon_sym_PLUS_PLUS] = ACTIONS(6204), + [anon_sym_DOT] = ACTIONS(6202), + [anon_sym_DOT_STAR] = ACTIONS(6204), + [anon_sym_DASH_GT] = ACTIONS(6204), [sym_comment] = ACTIONS(3), }, - [2204] = { - [sym_string_literal] = STATE(2189), - [sym_template_argument_list] = STATE(3129), - [sym_raw_string_literal] = STATE(2189), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4146), - [anon_sym_COMMA] = ACTIONS(4146), - [anon_sym_RPAREN] = ACTIONS(4146), - [anon_sym_LPAREN2] = ACTIONS(4146), - [anon_sym_DASH] = ACTIONS(4154), - [anon_sym_PLUS] = ACTIONS(4154), - [anon_sym_STAR] = ACTIONS(4154), - [anon_sym_SLASH] = ACTIONS(4154), - [anon_sym_PERCENT] = ACTIONS(4154), - [anon_sym_PIPE_PIPE] = ACTIONS(4146), - [anon_sym_AMP_AMP] = ACTIONS(4146), - [anon_sym_PIPE] = ACTIONS(4154), - [anon_sym_CARET] = ACTIONS(4154), - [anon_sym_AMP] = ACTIONS(4154), - [anon_sym_EQ_EQ] = ACTIONS(4146), - [anon_sym_BANG_EQ] = ACTIONS(4146), - [anon_sym_GT] = ACTIONS(4154), - [anon_sym_GT_EQ] = ACTIONS(4146), - [anon_sym_LT_EQ] = ACTIONS(4154), - [anon_sym_LT] = ACTIONS(5044), - [anon_sym_LT_LT] = ACTIONS(4154), - [anon_sym_GT_GT] = ACTIONS(4154), - [anon_sym_COLON_COLON] = ACTIONS(4167), + [2244] = { + [sym_template_argument_list] = STATE(1972), + [aux_sym_sized_type_specifier_repeat1] = STATE(2345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4172), + [anon_sym_COMMA] = ACTIONS(4172), + [anon_sym_RPAREN] = ACTIONS(4172), + [anon_sym_LPAREN2] = ACTIONS(4172), + [anon_sym_DASH] = ACTIONS(4164), + [anon_sym_PLUS] = ACTIONS(4164), + [anon_sym_STAR] = ACTIONS(4164), + [anon_sym_SLASH] = ACTIONS(4164), + [anon_sym_PERCENT] = ACTIONS(4164), + [anon_sym_PIPE_PIPE] = ACTIONS(4172), + [anon_sym_AMP_AMP] = ACTIONS(4172), + [anon_sym_PIPE] = ACTIONS(4164), + [anon_sym_CARET] = ACTIONS(4164), + [anon_sym_AMP] = ACTIONS(4164), + [anon_sym_EQ_EQ] = ACTIONS(4172), + [anon_sym_BANG_EQ] = ACTIONS(4172), + [anon_sym_GT] = ACTIONS(4164), + [anon_sym_GT_EQ] = ACTIONS(4172), + [anon_sym_LT_EQ] = ACTIONS(4164), + [anon_sym_LT] = ACTIONS(5836), + [anon_sym_LT_LT] = ACTIONS(4164), + [anon_sym_GT_GT] = ACTIONS(4164), + [anon_sym_SEMI] = ACTIONS(4172), + [anon_sym___attribute__] = ACTIONS(4172), + [anon_sym___attribute] = ACTIONS(4164), + [anon_sym_COLON] = ACTIONS(4164), + [anon_sym_COLON_COLON] = ACTIONS(4187), [anon_sym_LBRACE] = ACTIONS(4172), - [anon_sym_LBRACK] = ACTIONS(4146), - [anon_sym_EQ] = ACTIONS(4154), - [anon_sym_QMARK] = ACTIONS(4146), - [anon_sym_STAR_EQ] = ACTIONS(4146), - [anon_sym_SLASH_EQ] = ACTIONS(4146), - [anon_sym_PERCENT_EQ] = ACTIONS(4146), - [anon_sym_PLUS_EQ] = ACTIONS(4146), - [anon_sym_DASH_EQ] = ACTIONS(4146), - [anon_sym_LT_LT_EQ] = ACTIONS(4146), - [anon_sym_GT_GT_EQ] = ACTIONS(4146), - [anon_sym_AMP_EQ] = ACTIONS(4146), - [anon_sym_CARET_EQ] = ACTIONS(4146), - [anon_sym_PIPE_EQ] = ACTIONS(4146), - [anon_sym_and_eq] = ACTIONS(4146), - [anon_sym_or_eq] = ACTIONS(4146), - [anon_sym_xor_eq] = ACTIONS(4146), - [anon_sym_LT_EQ_GT] = ACTIONS(4146), - [anon_sym_or] = ACTIONS(4154), - [anon_sym_and] = ACTIONS(4154), - [anon_sym_bitor] = ACTIONS(4146), - [anon_sym_xor] = ACTIONS(4154), - [anon_sym_bitand] = ACTIONS(4146), - [anon_sym_not_eq] = ACTIONS(4146), - [anon_sym_DASH_DASH] = ACTIONS(4146), - [anon_sym_PLUS_PLUS] = ACTIONS(4146), - [anon_sym_DOT] = ACTIONS(4154), - [anon_sym_DOT_STAR] = ACTIONS(4146), - [anon_sym_DASH_GT] = ACTIONS(4154), - [anon_sym_L_DQUOTE] = ACTIONS(5040), - [anon_sym_u_DQUOTE] = ACTIONS(5040), - [anon_sym_U_DQUOTE] = ACTIONS(5040), - [anon_sym_u8_DQUOTE] = ACTIONS(5040), - [anon_sym_DQUOTE] = ACTIONS(5040), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5042), - [anon_sym_LR_DQUOTE] = ACTIONS(5042), - [anon_sym_uR_DQUOTE] = ACTIONS(5042), - [anon_sym_UR_DQUOTE] = ACTIONS(5042), - [anon_sym_u8R_DQUOTE] = ACTIONS(5042), - [anon_sym_DASH_GT_STAR] = ACTIONS(4146), + [anon_sym_RBRACE] = ACTIONS(4172), + [anon_sym_signed] = ACTIONS(6143), + [anon_sym_unsigned] = ACTIONS(6143), + [anon_sym_long] = ACTIONS(6143), + [anon_sym_short] = ACTIONS(6143), + [anon_sym_LBRACK] = ACTIONS(4172), + [anon_sym_RBRACK] = ACTIONS(4172), + [anon_sym_EQ] = ACTIONS(4164), + [anon_sym_QMARK] = ACTIONS(4172), + [anon_sym_STAR_EQ] = ACTIONS(4172), + [anon_sym_SLASH_EQ] = ACTIONS(4172), + [anon_sym_PERCENT_EQ] = ACTIONS(4172), + [anon_sym_PLUS_EQ] = ACTIONS(4172), + [anon_sym_DASH_EQ] = ACTIONS(4172), + [anon_sym_LT_LT_EQ] = ACTIONS(4172), + [anon_sym_GT_GT_EQ] = ACTIONS(4172), + [anon_sym_AMP_EQ] = ACTIONS(4172), + [anon_sym_CARET_EQ] = ACTIONS(4172), + [anon_sym_PIPE_EQ] = ACTIONS(4172), + [anon_sym_and_eq] = ACTIONS(4172), + [anon_sym_or_eq] = ACTIONS(4172), + [anon_sym_xor_eq] = ACTIONS(4172), + [anon_sym_LT_EQ_GT] = ACTIONS(4172), + [anon_sym_or] = ACTIONS(4164), + [anon_sym_and] = ACTIONS(4164), + [anon_sym_bitor] = ACTIONS(4172), + [anon_sym_xor] = ACTIONS(4164), + [anon_sym_bitand] = ACTIONS(4172), + [anon_sym_not_eq] = ACTIONS(4172), + [anon_sym_DASH_DASH] = ACTIONS(4172), + [anon_sym_PLUS_PLUS] = ACTIONS(4172), + [anon_sym_DOT] = ACTIONS(4164), + [anon_sym_DOT_STAR] = ACTIONS(4172), + [anon_sym_DASH_GT] = ACTIONS(4172), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4172), + [anon_sym_decltype] = ACTIONS(4172), }, - [2205] = { - [sym_template_argument_list] = STATE(1603), - [aux_sym_sized_type_specifier_repeat1] = STATE(2312), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5979), - [anon_sym_COMMA] = ACTIONS(5979), - [anon_sym_RPAREN] = ACTIONS(5979), - [anon_sym_LPAREN2] = ACTIONS(5979), - [anon_sym_DASH] = ACTIONS(5977), - [anon_sym_PLUS] = ACTIONS(5977), - [anon_sym_STAR] = ACTIONS(5977), - [anon_sym_SLASH] = ACTIONS(5977), - [anon_sym_PERCENT] = ACTIONS(5977), - [anon_sym_PIPE_PIPE] = ACTIONS(5979), - [anon_sym_AMP_AMP] = ACTIONS(5979), - [anon_sym_PIPE] = ACTIONS(5977), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_AMP] = ACTIONS(5977), - [anon_sym_EQ_EQ] = ACTIONS(5979), - [anon_sym_BANG_EQ] = ACTIONS(5979), - [anon_sym_GT] = ACTIONS(5977), - [anon_sym_GT_EQ] = ACTIONS(5979), - [anon_sym_LT_EQ] = ACTIONS(5977), - [anon_sym_LT] = ACTIONS(5977), - [anon_sym_LT_LT] = ACTIONS(5977), - [anon_sym_GT_GT] = ACTIONS(5977), - [anon_sym_SEMI] = ACTIONS(5979), - [anon_sym___attribute__] = ACTIONS(5979), - [anon_sym___attribute] = ACTIONS(5977), - [anon_sym_COLON] = ACTIONS(5977), - [anon_sym_COLON_COLON] = ACTIONS(4167), - [anon_sym_LBRACE] = ACTIONS(5979), - [anon_sym_RBRACE] = ACTIONS(5979), - [anon_sym_signed] = ACTIONS(6146), - [anon_sym_unsigned] = ACTIONS(6146), - [anon_sym_long] = ACTIONS(6146), - [anon_sym_short] = ACTIONS(6146), - [anon_sym_LBRACK] = ACTIONS(5979), - [anon_sym_RBRACK] = ACTIONS(5979), - [anon_sym_EQ] = ACTIONS(5977), - [anon_sym_QMARK] = ACTIONS(5979), - [anon_sym_STAR_EQ] = ACTIONS(5979), - [anon_sym_SLASH_EQ] = ACTIONS(5979), - [anon_sym_PERCENT_EQ] = ACTIONS(5979), - [anon_sym_PLUS_EQ] = ACTIONS(5979), - [anon_sym_DASH_EQ] = ACTIONS(5979), - [anon_sym_LT_LT_EQ] = ACTIONS(5979), - [anon_sym_GT_GT_EQ] = ACTIONS(5979), - [anon_sym_AMP_EQ] = ACTIONS(5979), - [anon_sym_CARET_EQ] = ACTIONS(5979), - [anon_sym_PIPE_EQ] = ACTIONS(5979), - [anon_sym_and_eq] = ACTIONS(5979), - [anon_sym_or_eq] = ACTIONS(5979), - [anon_sym_xor_eq] = ACTIONS(5979), - [anon_sym_LT_EQ_GT] = ACTIONS(5979), - [anon_sym_or] = ACTIONS(5977), - [anon_sym_and] = ACTIONS(5977), - [anon_sym_bitor] = ACTIONS(5979), - [anon_sym_xor] = ACTIONS(5977), - [anon_sym_bitand] = ACTIONS(5979), - [anon_sym_not_eq] = ACTIONS(5979), - [anon_sym_DASH_DASH] = ACTIONS(5979), - [anon_sym_PLUS_PLUS] = ACTIONS(5979), - [anon_sym_DOT] = ACTIONS(5977), - [anon_sym_DOT_STAR] = ACTIONS(5979), - [anon_sym_DASH_GT] = ACTIONS(5979), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5979), - [anon_sym_decltype] = ACTIONS(5979), + [2245] = { + [sym_attribute_specifier] = STATE(2256), + [sym_identifier] = ACTIONS(6206), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6208), + [anon_sym_COMMA] = ACTIONS(6208), + [anon_sym_RPAREN] = ACTIONS(6208), + [aux_sym_preproc_if_token2] = ACTIONS(6208), + [aux_sym_preproc_else_token1] = ACTIONS(6208), + [aux_sym_preproc_elif_token1] = ACTIONS(6206), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6208), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6208), + [anon_sym_LPAREN2] = ACTIONS(6208), + [anon_sym_DASH] = ACTIONS(6206), + [anon_sym_PLUS] = ACTIONS(6206), + [anon_sym_STAR] = ACTIONS(6206), + [anon_sym_SLASH] = ACTIONS(6206), + [anon_sym_PERCENT] = ACTIONS(6206), + [anon_sym_PIPE_PIPE] = ACTIONS(6208), + [anon_sym_AMP_AMP] = ACTIONS(6208), + [anon_sym_PIPE] = ACTIONS(6206), + [anon_sym_CARET] = ACTIONS(6206), + [anon_sym_AMP] = ACTIONS(6206), + [anon_sym_EQ_EQ] = ACTIONS(6208), + [anon_sym_BANG_EQ] = ACTIONS(6208), + [anon_sym_GT] = ACTIONS(6206), + [anon_sym_GT_EQ] = ACTIONS(6208), + [anon_sym_LT_EQ] = ACTIONS(6206), + [anon_sym_LT] = ACTIONS(6206), + [anon_sym_LT_LT] = ACTIONS(6206), + [anon_sym_GT_GT] = ACTIONS(6206), + [anon_sym_SEMI] = ACTIONS(6208), + [anon_sym___attribute__] = ACTIONS(5561), + [anon_sym___attribute] = ACTIONS(5561), + [anon_sym_COLON] = ACTIONS(6208), + [anon_sym_LBRACE] = ACTIONS(6208), + [anon_sym_RBRACE] = ACTIONS(6208), + [anon_sym_LBRACK] = ACTIONS(6208), + [anon_sym_RBRACK] = ACTIONS(6208), + [anon_sym_EQ] = ACTIONS(6206), + [anon_sym_QMARK] = ACTIONS(6208), + [anon_sym_STAR_EQ] = ACTIONS(6208), + [anon_sym_SLASH_EQ] = ACTIONS(6208), + [anon_sym_PERCENT_EQ] = ACTIONS(6208), + [anon_sym_PLUS_EQ] = ACTIONS(6208), + [anon_sym_DASH_EQ] = ACTIONS(6208), + [anon_sym_LT_LT_EQ] = ACTIONS(6208), + [anon_sym_GT_GT_EQ] = ACTIONS(6208), + [anon_sym_AMP_EQ] = ACTIONS(6208), + [anon_sym_CARET_EQ] = ACTIONS(6208), + [anon_sym_PIPE_EQ] = ACTIONS(6208), + [anon_sym_and_eq] = ACTIONS(6206), + [anon_sym_or_eq] = ACTIONS(6206), + [anon_sym_xor_eq] = ACTIONS(6206), + [anon_sym_LT_EQ_GT] = ACTIONS(6208), + [anon_sym_or] = ACTIONS(6206), + [anon_sym_and] = ACTIONS(6206), + [anon_sym_bitor] = ACTIONS(6206), + [anon_sym_xor] = ACTIONS(6206), + [anon_sym_bitand] = ACTIONS(6206), + [anon_sym_not_eq] = ACTIONS(6206), + [anon_sym_DASH_DASH] = ACTIONS(6208), + [anon_sym_PLUS_PLUS] = ACTIONS(6208), + [anon_sym_DOT] = ACTIONS(6206), + [anon_sym_DOT_STAR] = ACTIONS(6208), + [anon_sym_DASH_GT] = ACTIONS(6208), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6206), + [anon_sym_decltype] = ACTIONS(6206), }, - [2206] = { - [sym_attribute_specifier] = STATE(2290), - [sym_identifier] = ACTIONS(6168), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6170), - [anon_sym_COMMA] = ACTIONS(6170), - [anon_sym_RPAREN] = ACTIONS(6170), - [aux_sym_preproc_if_token2] = ACTIONS(6170), - [aux_sym_preproc_else_token1] = ACTIONS(6170), - [aux_sym_preproc_elif_token1] = ACTIONS(6168), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6170), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6170), - [anon_sym_LPAREN2] = ACTIONS(6170), - [anon_sym_DASH] = ACTIONS(6168), - [anon_sym_PLUS] = ACTIONS(6168), - [anon_sym_STAR] = ACTIONS(6168), - [anon_sym_SLASH] = ACTIONS(6168), - [anon_sym_PERCENT] = ACTIONS(6168), - [anon_sym_PIPE_PIPE] = ACTIONS(6170), - [anon_sym_AMP_AMP] = ACTIONS(6170), - [anon_sym_PIPE] = ACTIONS(6168), - [anon_sym_CARET] = ACTIONS(6168), - [anon_sym_AMP] = ACTIONS(6168), - [anon_sym_EQ_EQ] = ACTIONS(6170), - [anon_sym_BANG_EQ] = ACTIONS(6170), - [anon_sym_GT] = ACTIONS(6168), - [anon_sym_GT_EQ] = ACTIONS(6170), - [anon_sym_LT_EQ] = ACTIONS(6168), - [anon_sym_LT] = ACTIONS(6168), - [anon_sym_LT_LT] = ACTIONS(6168), - [anon_sym_GT_GT] = ACTIONS(6168), - [anon_sym_SEMI] = ACTIONS(6170), - [anon_sym___attribute__] = ACTIONS(5497), - [anon_sym___attribute] = ACTIONS(5497), - [anon_sym_COLON] = ACTIONS(6170), - [anon_sym_LBRACE] = ACTIONS(6170), - [anon_sym_RBRACE] = ACTIONS(6170), - [anon_sym_LBRACK] = ACTIONS(6170), - [anon_sym_RBRACK] = ACTIONS(6170), - [anon_sym_EQ] = ACTIONS(6168), - [anon_sym_QMARK] = ACTIONS(6170), - [anon_sym_STAR_EQ] = ACTIONS(6170), - [anon_sym_SLASH_EQ] = ACTIONS(6170), - [anon_sym_PERCENT_EQ] = ACTIONS(6170), - [anon_sym_PLUS_EQ] = ACTIONS(6170), - [anon_sym_DASH_EQ] = ACTIONS(6170), - [anon_sym_LT_LT_EQ] = ACTIONS(6170), - [anon_sym_GT_GT_EQ] = ACTIONS(6170), - [anon_sym_AMP_EQ] = ACTIONS(6170), - [anon_sym_CARET_EQ] = ACTIONS(6170), - [anon_sym_PIPE_EQ] = ACTIONS(6170), - [anon_sym_and_eq] = ACTIONS(6168), - [anon_sym_or_eq] = ACTIONS(6168), - [anon_sym_xor_eq] = ACTIONS(6168), - [anon_sym_LT_EQ_GT] = ACTIONS(6170), - [anon_sym_or] = ACTIONS(6168), - [anon_sym_and] = ACTIONS(6168), - [anon_sym_bitor] = ACTIONS(6168), - [anon_sym_xor] = ACTIONS(6168), - [anon_sym_bitand] = ACTIONS(6168), - [anon_sym_not_eq] = ACTIONS(6168), - [anon_sym_DASH_DASH] = ACTIONS(6170), - [anon_sym_PLUS_PLUS] = ACTIONS(6170), - [anon_sym_DOT] = ACTIONS(6168), - [anon_sym_DOT_STAR] = ACTIONS(6170), - [anon_sym_DASH_GT] = ACTIONS(6170), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6168), - [anon_sym_decltype] = ACTIONS(6168), + [2246] = { + [sym_attribute_specifier] = STATE(2263), + [sym_identifier] = ACTIONS(6210), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6212), + [anon_sym_COMMA] = ACTIONS(6212), + [anon_sym_RPAREN] = ACTIONS(6212), + [aux_sym_preproc_if_token2] = ACTIONS(6212), + [aux_sym_preproc_else_token1] = ACTIONS(6212), + [aux_sym_preproc_elif_token1] = ACTIONS(6210), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6212), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6212), + [anon_sym_LPAREN2] = ACTIONS(6212), + [anon_sym_DASH] = ACTIONS(6210), + [anon_sym_PLUS] = ACTIONS(6210), + [anon_sym_STAR] = ACTIONS(6210), + [anon_sym_SLASH] = ACTIONS(6210), + [anon_sym_PERCENT] = ACTIONS(6210), + [anon_sym_PIPE_PIPE] = ACTIONS(6212), + [anon_sym_AMP_AMP] = ACTIONS(6212), + [anon_sym_PIPE] = ACTIONS(6210), + [anon_sym_CARET] = ACTIONS(6210), + [anon_sym_AMP] = ACTIONS(6210), + [anon_sym_EQ_EQ] = ACTIONS(6212), + [anon_sym_BANG_EQ] = ACTIONS(6212), + [anon_sym_GT] = ACTIONS(6210), + [anon_sym_GT_EQ] = ACTIONS(6212), + [anon_sym_LT_EQ] = ACTIONS(6210), + [anon_sym_LT] = ACTIONS(6210), + [anon_sym_LT_LT] = ACTIONS(6210), + [anon_sym_GT_GT] = ACTIONS(6210), + [anon_sym_SEMI] = ACTIONS(6212), + [anon_sym___attribute__] = ACTIONS(5561), + [anon_sym___attribute] = ACTIONS(5561), + [anon_sym_COLON] = ACTIONS(6212), + [anon_sym_LBRACE] = ACTIONS(6212), + [anon_sym_RBRACE] = ACTIONS(6212), + [anon_sym_LBRACK] = ACTIONS(6212), + [anon_sym_RBRACK] = ACTIONS(6212), + [anon_sym_EQ] = ACTIONS(6210), + [anon_sym_QMARK] = ACTIONS(6212), + [anon_sym_STAR_EQ] = ACTIONS(6212), + [anon_sym_SLASH_EQ] = ACTIONS(6212), + [anon_sym_PERCENT_EQ] = ACTIONS(6212), + [anon_sym_PLUS_EQ] = ACTIONS(6212), + [anon_sym_DASH_EQ] = ACTIONS(6212), + [anon_sym_LT_LT_EQ] = ACTIONS(6212), + [anon_sym_GT_GT_EQ] = ACTIONS(6212), + [anon_sym_AMP_EQ] = ACTIONS(6212), + [anon_sym_CARET_EQ] = ACTIONS(6212), + [anon_sym_PIPE_EQ] = ACTIONS(6212), + [anon_sym_and_eq] = ACTIONS(6210), + [anon_sym_or_eq] = ACTIONS(6210), + [anon_sym_xor_eq] = ACTIONS(6210), + [anon_sym_LT_EQ_GT] = ACTIONS(6212), + [anon_sym_or] = ACTIONS(6210), + [anon_sym_and] = ACTIONS(6210), + [anon_sym_bitor] = ACTIONS(6210), + [anon_sym_xor] = ACTIONS(6210), + [anon_sym_bitand] = ACTIONS(6210), + [anon_sym_not_eq] = ACTIONS(6210), + [anon_sym_DASH_DASH] = ACTIONS(6212), + [anon_sym_PLUS_PLUS] = ACTIONS(6212), + [anon_sym_DOT] = ACTIONS(6210), + [anon_sym_DOT_STAR] = ACTIONS(6212), + [anon_sym_DASH_GT] = ACTIONS(6212), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6210), + [anon_sym_decltype] = ACTIONS(6210), }, - [2207] = { - [sym_identifier] = ACTIONS(5810), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5812), - [anon_sym_COMMA] = ACTIONS(5812), - [anon_sym_RPAREN] = ACTIONS(5812), - [aux_sym_preproc_if_token2] = ACTIONS(5812), - [aux_sym_preproc_else_token1] = ACTIONS(5812), - [aux_sym_preproc_elif_token1] = ACTIONS(5810), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5812), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5812), - [anon_sym_LPAREN2] = ACTIONS(5812), - [anon_sym_DASH] = ACTIONS(5810), - [anon_sym_PLUS] = ACTIONS(5810), - [anon_sym_STAR] = ACTIONS(5810), - [anon_sym_SLASH] = ACTIONS(5810), - [anon_sym_PERCENT] = ACTIONS(5810), - [anon_sym_PIPE_PIPE] = ACTIONS(5812), - [anon_sym_AMP_AMP] = ACTIONS(5812), - [anon_sym_PIPE] = ACTIONS(5810), - [anon_sym_CARET] = ACTIONS(5810), - [anon_sym_AMP] = ACTIONS(5810), - [anon_sym_EQ_EQ] = ACTIONS(5812), - [anon_sym_BANG_EQ] = ACTIONS(5812), - [anon_sym_GT] = ACTIONS(5810), - [anon_sym_GT_EQ] = ACTIONS(5812), - [anon_sym_LT_EQ] = ACTIONS(5810), - [anon_sym_LT] = ACTIONS(5810), - [anon_sym_LT_LT] = ACTIONS(5810), - [anon_sym_GT_GT] = ACTIONS(5810), - [anon_sym_SEMI] = ACTIONS(5812), - [anon_sym___attribute__] = ACTIONS(5810), - [anon_sym___attribute] = ACTIONS(5810), - [anon_sym_COLON] = ACTIONS(5812), - [anon_sym_LBRACE] = ACTIONS(5812), - [anon_sym_RBRACE] = ACTIONS(5812), - [anon_sym_LBRACK] = ACTIONS(5812), - [anon_sym_RBRACK] = ACTIONS(5812), - [anon_sym_EQ] = ACTIONS(5810), - [anon_sym_QMARK] = ACTIONS(5812), - [anon_sym_STAR_EQ] = ACTIONS(5812), - [anon_sym_SLASH_EQ] = ACTIONS(5812), - [anon_sym_PERCENT_EQ] = ACTIONS(5812), - [anon_sym_PLUS_EQ] = ACTIONS(5812), - [anon_sym_DASH_EQ] = ACTIONS(5812), - [anon_sym_LT_LT_EQ] = ACTIONS(5812), - [anon_sym_GT_GT_EQ] = ACTIONS(5812), - [anon_sym_AMP_EQ] = ACTIONS(5812), - [anon_sym_CARET_EQ] = ACTIONS(5812), - [anon_sym_PIPE_EQ] = ACTIONS(5812), - [anon_sym_and_eq] = ACTIONS(5810), - [anon_sym_or_eq] = ACTIONS(5810), - [anon_sym_xor_eq] = ACTIONS(5810), - [anon_sym_LT_EQ_GT] = ACTIONS(5812), - [anon_sym_or] = ACTIONS(5810), - [anon_sym_and] = ACTIONS(5810), - [anon_sym_bitor] = ACTIONS(5810), - [anon_sym_xor] = ACTIONS(5810), - [anon_sym_bitand] = ACTIONS(5810), - [anon_sym_not_eq] = ACTIONS(5810), - [anon_sym_DASH_DASH] = ACTIONS(5812), - [anon_sym_PLUS_PLUS] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(5810), - [anon_sym_DOT_STAR] = ACTIONS(5812), - [anon_sym_DASH_GT] = ACTIONS(5812), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5810), - [anon_sym_decltype] = ACTIONS(5810), + [2247] = { + [sym_attribute_specifier] = STATE(2272), + [sym_identifier] = ACTIONS(6214), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6216), + [anon_sym_COMMA] = ACTIONS(6216), + [anon_sym_RPAREN] = ACTIONS(6216), + [aux_sym_preproc_if_token2] = ACTIONS(6216), + [aux_sym_preproc_else_token1] = ACTIONS(6216), + [aux_sym_preproc_elif_token1] = ACTIONS(6214), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6216), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6216), + [anon_sym_LPAREN2] = ACTIONS(6216), + [anon_sym_DASH] = ACTIONS(6214), + [anon_sym_PLUS] = ACTIONS(6214), + [anon_sym_STAR] = ACTIONS(6214), + [anon_sym_SLASH] = ACTIONS(6214), + [anon_sym_PERCENT] = ACTIONS(6214), + [anon_sym_PIPE_PIPE] = ACTIONS(6216), + [anon_sym_AMP_AMP] = ACTIONS(6216), + [anon_sym_PIPE] = ACTIONS(6214), + [anon_sym_CARET] = ACTIONS(6214), + [anon_sym_AMP] = ACTIONS(6214), + [anon_sym_EQ_EQ] = ACTIONS(6216), + [anon_sym_BANG_EQ] = ACTIONS(6216), + [anon_sym_GT] = ACTIONS(6214), + [anon_sym_GT_EQ] = ACTIONS(6216), + [anon_sym_LT_EQ] = ACTIONS(6214), + [anon_sym_LT] = ACTIONS(6214), + [anon_sym_LT_LT] = ACTIONS(6214), + [anon_sym_GT_GT] = ACTIONS(6214), + [anon_sym_SEMI] = ACTIONS(6216), + [anon_sym___attribute__] = ACTIONS(5561), + [anon_sym___attribute] = ACTIONS(5561), + [anon_sym_COLON] = ACTIONS(6216), + [anon_sym_LBRACE] = ACTIONS(6216), + [anon_sym_RBRACE] = ACTIONS(6216), + [anon_sym_LBRACK] = ACTIONS(6216), + [anon_sym_RBRACK] = ACTIONS(6216), + [anon_sym_EQ] = ACTIONS(6214), + [anon_sym_QMARK] = ACTIONS(6216), + [anon_sym_STAR_EQ] = ACTIONS(6216), + [anon_sym_SLASH_EQ] = ACTIONS(6216), + [anon_sym_PERCENT_EQ] = ACTIONS(6216), + [anon_sym_PLUS_EQ] = ACTIONS(6216), + [anon_sym_DASH_EQ] = ACTIONS(6216), + [anon_sym_LT_LT_EQ] = ACTIONS(6216), + [anon_sym_GT_GT_EQ] = ACTIONS(6216), + [anon_sym_AMP_EQ] = ACTIONS(6216), + [anon_sym_CARET_EQ] = ACTIONS(6216), + [anon_sym_PIPE_EQ] = ACTIONS(6216), + [anon_sym_and_eq] = ACTIONS(6214), + [anon_sym_or_eq] = ACTIONS(6214), + [anon_sym_xor_eq] = ACTIONS(6214), + [anon_sym_LT_EQ_GT] = ACTIONS(6216), + [anon_sym_or] = ACTIONS(6214), + [anon_sym_and] = ACTIONS(6214), + [anon_sym_bitor] = ACTIONS(6214), + [anon_sym_xor] = ACTIONS(6214), + [anon_sym_bitand] = ACTIONS(6214), + [anon_sym_not_eq] = ACTIONS(6214), + [anon_sym_DASH_DASH] = ACTIONS(6216), + [anon_sym_PLUS_PLUS] = ACTIONS(6216), + [anon_sym_DOT] = ACTIONS(6214), + [anon_sym_DOT_STAR] = ACTIONS(6216), + [anon_sym_DASH_GT] = ACTIONS(6216), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6214), + [anon_sym_decltype] = ACTIONS(6214), }, - [2208] = { - [sym_string_literal] = STATE(3517), - [sym_template_argument_list] = STATE(4509), - [sym_raw_string_literal] = STATE(3517), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4146), - [anon_sym_COMMA] = ACTIONS(4146), - [anon_sym_LPAREN2] = ACTIONS(4146), - [anon_sym_DASH] = ACTIONS(4154), - [anon_sym_PLUS] = ACTIONS(4154), - [anon_sym_STAR] = ACTIONS(4154), - [anon_sym_SLASH] = ACTIONS(4154), - [anon_sym_PERCENT] = ACTIONS(4154), - [anon_sym_PIPE_PIPE] = ACTIONS(4146), - [anon_sym_AMP_AMP] = ACTIONS(4146), - [anon_sym_PIPE] = ACTIONS(4154), - [anon_sym_CARET] = ACTIONS(4154), - [anon_sym_AMP] = ACTIONS(4154), - [anon_sym_EQ_EQ] = ACTIONS(4146), - [anon_sym_BANG_EQ] = ACTIONS(4146), - [anon_sym_GT] = ACTIONS(4154), - [anon_sym_GT_EQ] = ACTIONS(4154), - [anon_sym_LT_EQ] = ACTIONS(4154), - [anon_sym_LT] = ACTIONS(5057), - [anon_sym_LT_LT] = ACTIONS(4154), - [anon_sym_GT_GT] = ACTIONS(4154), - [anon_sym_COLON_COLON] = ACTIONS(4167), - [anon_sym_LBRACE] = ACTIONS(4172), - [anon_sym_LBRACK] = ACTIONS(4146), - [anon_sym_EQ] = ACTIONS(5062), - [anon_sym_QMARK] = ACTIONS(4146), - [anon_sym_STAR_EQ] = ACTIONS(5064), - [anon_sym_SLASH_EQ] = ACTIONS(5064), - [anon_sym_PERCENT_EQ] = ACTIONS(5064), - [anon_sym_PLUS_EQ] = ACTIONS(5064), - [anon_sym_DASH_EQ] = ACTIONS(5064), - [anon_sym_LT_LT_EQ] = ACTIONS(5064), - [anon_sym_GT_GT_EQ] = ACTIONS(5062), - [anon_sym_AMP_EQ] = ACTIONS(5064), - [anon_sym_CARET_EQ] = ACTIONS(5064), - [anon_sym_PIPE_EQ] = ACTIONS(5064), - [anon_sym_and_eq] = ACTIONS(5064), - [anon_sym_or_eq] = ACTIONS(5064), - [anon_sym_xor_eq] = ACTIONS(5064), - [anon_sym_LT_EQ_GT] = ACTIONS(4146), - [anon_sym_or] = ACTIONS(4154), - [anon_sym_and] = ACTIONS(4154), - [anon_sym_bitor] = ACTIONS(4146), - [anon_sym_xor] = ACTIONS(4154), - [anon_sym_bitand] = ACTIONS(4146), - [anon_sym_not_eq] = ACTIONS(4146), - [anon_sym_DASH_DASH] = ACTIONS(4146), - [anon_sym_PLUS_PLUS] = ACTIONS(4146), - [anon_sym_DOT] = ACTIONS(4154), - [anon_sym_DOT_STAR] = ACTIONS(4146), - [anon_sym_DASH_GT] = ACTIONS(4146), - [anon_sym_L_DQUOTE] = ACTIONS(5066), - [anon_sym_u_DQUOTE] = ACTIONS(5066), - [anon_sym_U_DQUOTE] = ACTIONS(5066), - [anon_sym_u8_DQUOTE] = ACTIONS(5066), - [anon_sym_DQUOTE] = ACTIONS(5066), - [sym_comment] = ACTIONS(3), - [anon_sym_GT2] = ACTIONS(4146), - [anon_sym_R_DQUOTE] = ACTIONS(5068), - [anon_sym_LR_DQUOTE] = ACTIONS(5068), - [anon_sym_uR_DQUOTE] = ACTIONS(5068), - [anon_sym_UR_DQUOTE] = ACTIONS(5068), - [anon_sym_u8R_DQUOTE] = ACTIONS(5068), + [2248] = { + [sym_string_literal] = STATE(2657), + [sym_template_argument_list] = STATE(3605), + [sym_raw_string_literal] = STATE(2657), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4166), + [anon_sym_COMMA] = ACTIONS(4166), + [anon_sym_LPAREN2] = ACTIONS(4166), + [anon_sym_DASH] = ACTIONS(4174), + [anon_sym_PLUS] = ACTIONS(4174), + [anon_sym_STAR] = ACTIONS(4174), + [anon_sym_SLASH] = ACTIONS(4174), + [anon_sym_PERCENT] = ACTIONS(4174), + [anon_sym_PIPE_PIPE] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4166), + [anon_sym_PIPE] = ACTIONS(4174), + [anon_sym_CARET] = ACTIONS(4174), + [anon_sym_AMP] = ACTIONS(4174), + [anon_sym_EQ_EQ] = ACTIONS(4166), + [anon_sym_BANG_EQ] = ACTIONS(4166), + [anon_sym_GT] = ACTIONS(4174), + [anon_sym_GT_EQ] = ACTIONS(4166), + [anon_sym_LT_EQ] = ACTIONS(4174), + [anon_sym_LT] = ACTIONS(5085), + [anon_sym_LT_LT] = ACTIONS(4174), + [anon_sym_GT_GT] = ACTIONS(4174), + [anon_sym_SEMI] = ACTIONS(4166), + [anon_sym_COLON] = ACTIONS(4300), + [anon_sym_COLON_COLON] = ACTIONS(4187), + [anon_sym_LBRACE] = ACTIONS(4192), + [anon_sym_LBRACK] = ACTIONS(4166), + [anon_sym_EQ] = ACTIONS(4200), + [anon_sym_QMARK] = ACTIONS(4166), + [anon_sym_STAR_EQ] = ACTIONS(4202), + [anon_sym_SLASH_EQ] = ACTIONS(4202), + [anon_sym_PERCENT_EQ] = ACTIONS(4202), + [anon_sym_PLUS_EQ] = ACTIONS(4202), + [anon_sym_DASH_EQ] = ACTIONS(4202), + [anon_sym_LT_LT_EQ] = ACTIONS(4202), + [anon_sym_GT_GT_EQ] = ACTIONS(4202), + [anon_sym_AMP_EQ] = ACTIONS(4202), + [anon_sym_CARET_EQ] = ACTIONS(4202), + [anon_sym_PIPE_EQ] = ACTIONS(4202), + [anon_sym_and_eq] = ACTIONS(4202), + [anon_sym_or_eq] = ACTIONS(4202), + [anon_sym_xor_eq] = ACTIONS(4202), + [anon_sym_LT_EQ_GT] = ACTIONS(4166), + [anon_sym_or] = ACTIONS(4174), + [anon_sym_and] = ACTIONS(4174), + [anon_sym_bitor] = ACTIONS(4166), + [anon_sym_xor] = ACTIONS(4174), + [anon_sym_bitand] = ACTIONS(4166), + [anon_sym_not_eq] = ACTIONS(4166), + [anon_sym_DASH_DASH] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4174), + [anon_sym_DOT_STAR] = ACTIONS(4166), + [anon_sym_DASH_GT] = ACTIONS(4166), + [anon_sym_L_DQUOTE] = ACTIONS(3631), + [anon_sym_u_DQUOTE] = ACTIONS(3631), + [anon_sym_U_DQUOTE] = ACTIONS(3631), + [anon_sym_u8_DQUOTE] = ACTIONS(3631), + [anon_sym_DQUOTE] = ACTIONS(3631), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3635), + [anon_sym_LR_DQUOTE] = ACTIONS(3635), + [anon_sym_uR_DQUOTE] = ACTIONS(3635), + [anon_sym_UR_DQUOTE] = ACTIONS(3635), + [anon_sym_u8R_DQUOTE] = ACTIONS(3635), }, - [2209] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(5484), - [anon_sym_COMMA] = ACTIONS(5484), - [anon_sym_RPAREN] = ACTIONS(5484), - [anon_sym_LPAREN2] = ACTIONS(5484), - [anon_sym_DASH] = ACTIONS(5482), - [anon_sym_PLUS] = ACTIONS(5482), - [anon_sym_STAR] = ACTIONS(5482), - [anon_sym_SLASH] = ACTIONS(5482), - [anon_sym_PERCENT] = ACTIONS(5482), - [anon_sym_PIPE_PIPE] = ACTIONS(5484), - [anon_sym_AMP_AMP] = ACTIONS(5484), - [anon_sym_PIPE] = ACTIONS(5482), - [anon_sym_CARET] = ACTIONS(5482), - [anon_sym_AMP] = ACTIONS(5482), - [anon_sym_EQ_EQ] = ACTIONS(5484), - [anon_sym_BANG_EQ] = ACTIONS(5484), - [anon_sym_GT] = ACTIONS(5482), - [anon_sym_GT_EQ] = ACTIONS(5484), - [anon_sym_LT_EQ] = ACTIONS(5482), - [anon_sym_LT] = ACTIONS(5482), - [anon_sym_LT_LT] = ACTIONS(5482), - [anon_sym_GT_GT] = ACTIONS(5482), - [anon_sym_SEMI] = ACTIONS(5484), - [anon_sym_COLON] = ACTIONS(5484), - [anon_sym_RBRACE] = ACTIONS(5484), - [anon_sym_LBRACK] = ACTIONS(5484), - [anon_sym_RBRACK] = ACTIONS(5484), - [anon_sym_EQ] = ACTIONS(5482), - [anon_sym_QMARK] = ACTIONS(5484), - [anon_sym_STAR_EQ] = ACTIONS(5484), - [anon_sym_SLASH_EQ] = ACTIONS(5484), - [anon_sym_PERCENT_EQ] = ACTIONS(5484), - [anon_sym_PLUS_EQ] = ACTIONS(5484), - [anon_sym_DASH_EQ] = ACTIONS(5484), - [anon_sym_LT_LT_EQ] = ACTIONS(5484), - [anon_sym_GT_GT_EQ] = ACTIONS(5484), - [anon_sym_AMP_EQ] = ACTIONS(5484), - [anon_sym_CARET_EQ] = ACTIONS(5484), - [anon_sym_PIPE_EQ] = ACTIONS(5484), - [anon_sym_and_eq] = ACTIONS(5482), - [anon_sym_or_eq] = ACTIONS(5482), - [anon_sym_xor_eq] = ACTIONS(5482), - [anon_sym_LT_EQ_GT] = ACTIONS(5484), - [anon_sym_or] = ACTIONS(5482), - [anon_sym_and] = ACTIONS(5482), - [anon_sym_bitor] = ACTIONS(5482), - [anon_sym_xor] = ACTIONS(5482), - [anon_sym_bitand] = ACTIONS(5482), - [anon_sym_not_eq] = ACTIONS(5482), - [anon_sym_DASH_DASH] = ACTIONS(5484), - [anon_sym_PLUS_PLUS] = ACTIONS(5484), - [anon_sym_DOT] = ACTIONS(5482), - [anon_sym_DOT_STAR] = ACTIONS(5484), - [anon_sym_DASH_GT] = ACTIONS(5484), - [anon_sym_L_DQUOTE] = ACTIONS(5484), - [anon_sym_u_DQUOTE] = ACTIONS(5484), - [anon_sym_U_DQUOTE] = ACTIONS(5484), - [anon_sym_u8_DQUOTE] = ACTIONS(5484), - [anon_sym_DQUOTE] = ACTIONS(5484), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5484), - [anon_sym_LR_DQUOTE] = ACTIONS(5484), - [anon_sym_uR_DQUOTE] = ACTIONS(5484), - [anon_sym_UR_DQUOTE] = ACTIONS(5484), - [anon_sym_u8R_DQUOTE] = ACTIONS(5484), - [sym_literal_suffix] = ACTIONS(5482), + [2249] = { + [sym_type_qualifier] = STATE(1940), + [sym_alignas_qualifier] = STATE(2313), + [aux_sym__type_definition_type_repeat1] = STATE(1940), + [aux_sym_sized_type_specifier_repeat1] = STATE(2367), + [sym_identifier] = ACTIONS(6218), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5109), + [anon_sym_COMMA] = ACTIONS(5109), + [anon_sym_LPAREN2] = ACTIONS(5109), + [anon_sym_DASH] = ACTIONS(5111), + [anon_sym_PLUS] = ACTIONS(5111), + [anon_sym_STAR] = ACTIONS(5109), + [anon_sym_SLASH] = ACTIONS(5111), + [anon_sym_PERCENT] = ACTIONS(5109), + [anon_sym_PIPE_PIPE] = ACTIONS(5109), + [anon_sym_AMP_AMP] = ACTIONS(5109), + [anon_sym_PIPE] = ACTIONS(5111), + [anon_sym_CARET] = ACTIONS(5109), + [anon_sym_AMP] = ACTIONS(5111), + [anon_sym_EQ_EQ] = ACTIONS(5109), + [anon_sym_BANG_EQ] = ACTIONS(5109), + [anon_sym_GT] = ACTIONS(5111), + [anon_sym_GT_EQ] = ACTIONS(5111), + [anon_sym_LT_EQ] = ACTIONS(5111), + [anon_sym_LT] = ACTIONS(5111), + [anon_sym_LT_LT] = ACTIONS(5109), + [anon_sym_GT_GT] = ACTIONS(5111), + [anon_sym___extension__] = ACTIONS(6135), + [anon_sym___attribute__] = ACTIONS(5111), + [anon_sym___attribute] = ACTIONS(5111), + [anon_sym_LBRACE] = ACTIONS(5109), + [anon_sym_signed] = ACTIONS(6220), + [anon_sym_unsigned] = ACTIONS(6220), + [anon_sym_long] = ACTIONS(6220), + [anon_sym_short] = ACTIONS(6220), + [anon_sym_LBRACK] = ACTIONS(5109), + [anon_sym_const] = ACTIONS(6135), + [anon_sym_constexpr] = ACTIONS(6135), + [anon_sym_volatile] = ACTIONS(6135), + [anon_sym_restrict] = ACTIONS(6135), + [anon_sym___restrict__] = ACTIONS(6135), + [anon_sym__Atomic] = ACTIONS(6135), + [anon_sym__Noreturn] = ACTIONS(6135), + [anon_sym_noreturn] = ACTIONS(6135), + [anon_sym__Nonnull] = ACTIONS(6135), + [anon_sym_mutable] = ACTIONS(6135), + [anon_sym_constinit] = ACTIONS(6135), + [anon_sym_consteval] = ACTIONS(6135), + [anon_sym_alignas] = ACTIONS(6139), + [anon_sym__Alignas] = ACTIONS(6139), + [sym_primitive_type] = ACTIONS(6222), + [anon_sym_QMARK] = ACTIONS(5109), + [anon_sym_LT_EQ_GT] = ACTIONS(5109), + [anon_sym_or] = ACTIONS(5111), + [anon_sym_and] = ACTIONS(5111), + [anon_sym_bitor] = ACTIONS(5111), + [anon_sym_xor] = ACTIONS(5111), + [anon_sym_bitand] = ACTIONS(5111), + [anon_sym_not_eq] = ACTIONS(5111), + [anon_sym_DASH_DASH] = ACTIONS(5109), + [anon_sym_PLUS_PLUS] = ACTIONS(5109), + [anon_sym_DOT] = ACTIONS(5111), + [anon_sym_DOT_STAR] = ACTIONS(5109), + [anon_sym_DASH_GT] = ACTIONS(5109), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5111), + [anon_sym_decltype] = ACTIONS(5111), + [anon_sym_GT2] = ACTIONS(5109), }, - [2210] = { - [sym_argument_list] = STATE(2464), - [sym_initializer_list] = STATE(2464), - [sym_identifier] = ACTIONS(6172), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6174), - [anon_sym_COMMA] = ACTIONS(6174), - [anon_sym_RPAREN] = ACTIONS(6174), - [aux_sym_preproc_if_token2] = ACTIONS(6174), - [aux_sym_preproc_else_token1] = ACTIONS(6174), - [aux_sym_preproc_elif_token1] = ACTIONS(6172), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6174), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6174), - [anon_sym_LPAREN2] = ACTIONS(5827), - [anon_sym_DASH] = ACTIONS(6172), - [anon_sym_PLUS] = ACTIONS(6172), - [anon_sym_STAR] = ACTIONS(6172), - [anon_sym_SLASH] = ACTIONS(6172), - [anon_sym_PERCENT] = ACTIONS(6172), - [anon_sym_PIPE_PIPE] = ACTIONS(6174), - [anon_sym_AMP_AMP] = ACTIONS(6174), - [anon_sym_PIPE] = ACTIONS(6172), - [anon_sym_CARET] = ACTIONS(6172), - [anon_sym_AMP] = ACTIONS(6172), - [anon_sym_EQ_EQ] = ACTIONS(6174), - [anon_sym_BANG_EQ] = ACTIONS(6174), - [anon_sym_GT] = ACTIONS(6172), - [anon_sym_GT_EQ] = ACTIONS(6174), - [anon_sym_LT_EQ] = ACTIONS(6172), - [anon_sym_LT] = ACTIONS(6172), - [anon_sym_LT_LT] = ACTIONS(6172), - [anon_sym_GT_GT] = ACTIONS(6172), - [anon_sym_SEMI] = ACTIONS(6174), - [anon_sym___attribute__] = ACTIONS(6172), - [anon_sym___attribute] = ACTIONS(6172), - [anon_sym_COLON] = ACTIONS(6174), + [2250] = { + [sym_identifier] = ACTIONS(5804), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5806), + [anon_sym_COMMA] = ACTIONS(5806), + [anon_sym_RPAREN] = ACTIONS(5806), + [aux_sym_preproc_if_token2] = ACTIONS(5806), + [aux_sym_preproc_else_token1] = ACTIONS(5806), + [aux_sym_preproc_elif_token1] = ACTIONS(5804), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5806), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5806), + [anon_sym_LPAREN2] = ACTIONS(5806), + [anon_sym_DASH] = ACTIONS(5804), + [anon_sym_PLUS] = ACTIONS(5804), + [anon_sym_STAR] = ACTIONS(5804), + [anon_sym_SLASH] = ACTIONS(5804), + [anon_sym_PERCENT] = ACTIONS(5804), + [anon_sym_PIPE_PIPE] = ACTIONS(5806), + [anon_sym_AMP_AMP] = ACTIONS(5806), + [anon_sym_PIPE] = ACTIONS(5804), + [anon_sym_CARET] = ACTIONS(5804), + [anon_sym_AMP] = ACTIONS(5804), + [anon_sym_EQ_EQ] = ACTIONS(5806), + [anon_sym_BANG_EQ] = ACTIONS(5806), + [anon_sym_GT] = ACTIONS(5804), + [anon_sym_GT_EQ] = ACTIONS(5806), + [anon_sym_LT_EQ] = ACTIONS(5804), + [anon_sym_LT] = ACTIONS(5804), + [anon_sym_LT_LT] = ACTIONS(5804), + [anon_sym_GT_GT] = ACTIONS(5804), + [anon_sym_SEMI] = ACTIONS(5806), + [anon_sym___attribute__] = ACTIONS(5804), + [anon_sym___attribute] = ACTIONS(5804), + [anon_sym_COLON] = ACTIONS(5806), + [anon_sym_LBRACE] = ACTIONS(5806), + [anon_sym_RBRACE] = ACTIONS(5806), + [anon_sym_LBRACK] = ACTIONS(5806), + [anon_sym_RBRACK] = ACTIONS(5806), + [anon_sym_EQ] = ACTIONS(5804), + [anon_sym_QMARK] = ACTIONS(5806), + [anon_sym_STAR_EQ] = ACTIONS(5806), + [anon_sym_SLASH_EQ] = ACTIONS(5806), + [anon_sym_PERCENT_EQ] = ACTIONS(5806), + [anon_sym_PLUS_EQ] = ACTIONS(5806), + [anon_sym_DASH_EQ] = ACTIONS(5806), + [anon_sym_LT_LT_EQ] = ACTIONS(5806), + [anon_sym_GT_GT_EQ] = ACTIONS(5806), + [anon_sym_AMP_EQ] = ACTIONS(5806), + [anon_sym_CARET_EQ] = ACTIONS(5806), + [anon_sym_PIPE_EQ] = ACTIONS(5806), + [anon_sym_and_eq] = ACTIONS(5804), + [anon_sym_or_eq] = ACTIONS(5804), + [anon_sym_xor_eq] = ACTIONS(5804), + [anon_sym_LT_EQ_GT] = ACTIONS(5806), + [anon_sym_or] = ACTIONS(5804), + [anon_sym_and] = ACTIONS(5804), + [anon_sym_bitor] = ACTIONS(5804), + [anon_sym_xor] = ACTIONS(5804), + [anon_sym_bitand] = ACTIONS(5804), + [anon_sym_not_eq] = ACTIONS(5804), + [anon_sym_DASH_DASH] = ACTIONS(5806), + [anon_sym_PLUS_PLUS] = ACTIONS(5806), + [anon_sym_DOT] = ACTIONS(5804), + [anon_sym_DOT_STAR] = ACTIONS(5806), + [anon_sym_DASH_GT] = ACTIONS(5806), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5804), + [anon_sym_decltype] = ACTIONS(5804), + }, + [2251] = { + [sym_identifier] = ACTIONS(5088), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5090), + [anon_sym_COMMA] = ACTIONS(5090), + [anon_sym_LPAREN2] = ACTIONS(5090), + [anon_sym_DASH] = ACTIONS(5088), + [anon_sym_PLUS] = ACTIONS(5088), + [anon_sym_STAR] = ACTIONS(5090), + [anon_sym_SLASH] = ACTIONS(5088), + [anon_sym_PERCENT] = ACTIONS(5090), + [anon_sym_PIPE_PIPE] = ACTIONS(5090), + [anon_sym_AMP_AMP] = ACTIONS(5090), + [anon_sym_PIPE] = ACTIONS(5088), + [anon_sym_CARET] = ACTIONS(5090), + [anon_sym_AMP] = ACTIONS(5088), + [anon_sym_EQ_EQ] = ACTIONS(5090), + [anon_sym_BANG_EQ] = ACTIONS(5090), + [anon_sym_GT] = ACTIONS(5088), + [anon_sym_GT_EQ] = ACTIONS(5088), + [anon_sym_LT_EQ] = ACTIONS(5088), + [anon_sym_LT] = ACTIONS(5088), + [anon_sym_LT_LT] = ACTIONS(5090), + [anon_sym_GT_GT] = ACTIONS(5088), + [anon_sym___extension__] = ACTIONS(5088), + [anon_sym___attribute__] = ACTIONS(5088), + [anon_sym___attribute] = ACTIONS(5088), + [anon_sym_LBRACE] = ACTIONS(5090), + [anon_sym_signed] = ACTIONS(5088), + [anon_sym_unsigned] = ACTIONS(5088), + [anon_sym_long] = ACTIONS(5088), + [anon_sym_short] = ACTIONS(5088), + [anon_sym_LBRACK] = ACTIONS(5090), + [anon_sym_const] = ACTIONS(5088), + [anon_sym_constexpr] = ACTIONS(5088), + [anon_sym_volatile] = ACTIONS(5088), + [anon_sym_restrict] = ACTIONS(5088), + [anon_sym___restrict__] = ACTIONS(5088), + [anon_sym__Atomic] = ACTIONS(5088), + [anon_sym__Noreturn] = ACTIONS(5088), + [anon_sym_noreturn] = ACTIONS(5088), + [anon_sym__Nonnull] = ACTIONS(5088), + [anon_sym_mutable] = ACTIONS(5088), + [anon_sym_constinit] = ACTIONS(5088), + [anon_sym_consteval] = ACTIONS(5088), + [anon_sym_alignas] = ACTIONS(5088), + [anon_sym__Alignas] = ACTIONS(5088), + [sym_primitive_type] = ACTIONS(5088), + [anon_sym_QMARK] = ACTIONS(5090), + [anon_sym_LT_EQ_GT] = ACTIONS(5090), + [anon_sym_or] = ACTIONS(5088), + [anon_sym_and] = ACTIONS(5088), + [anon_sym_bitor] = ACTIONS(5088), + [anon_sym_xor] = ACTIONS(5088), + [anon_sym_bitand] = ACTIONS(5088), + [anon_sym_not_eq] = ACTIONS(5088), + [anon_sym_DASH_DASH] = ACTIONS(5090), + [anon_sym_PLUS_PLUS] = ACTIONS(5090), + [anon_sym_DOT] = ACTIONS(5088), + [anon_sym_DOT_STAR] = ACTIONS(5090), + [anon_sym_DASH_GT] = ACTIONS(5090), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5088), + [anon_sym_decltype] = ACTIONS(5088), + [anon_sym_final] = ACTIONS(5088), + [anon_sym_override] = ACTIONS(5088), + [anon_sym_GT2] = ACTIONS(5090), + [anon_sym_requires] = ACTIONS(5088), + }, + [2252] = { + [sym_identifier] = ACTIONS(5720), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5722), + [anon_sym_COMMA] = ACTIONS(5722), + [anon_sym_RPAREN] = ACTIONS(5722), + [aux_sym_preproc_if_token2] = ACTIONS(5722), + [aux_sym_preproc_else_token1] = ACTIONS(5722), + [aux_sym_preproc_elif_token1] = ACTIONS(5720), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5722), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5722), + [anon_sym_LPAREN2] = ACTIONS(5722), + [anon_sym_DASH] = ACTIONS(5720), + [anon_sym_PLUS] = ACTIONS(5720), + [anon_sym_STAR] = ACTIONS(5720), + [anon_sym_SLASH] = ACTIONS(5720), + [anon_sym_PERCENT] = ACTIONS(5720), + [anon_sym_PIPE_PIPE] = ACTIONS(5722), + [anon_sym_AMP_AMP] = ACTIONS(5722), + [anon_sym_PIPE] = ACTIONS(5720), + [anon_sym_CARET] = ACTIONS(5720), + [anon_sym_AMP] = ACTIONS(5720), + [anon_sym_EQ_EQ] = ACTIONS(5722), + [anon_sym_BANG_EQ] = ACTIONS(5722), + [anon_sym_GT] = ACTIONS(5720), + [anon_sym_GT_EQ] = ACTIONS(5722), + [anon_sym_LT_EQ] = ACTIONS(5720), + [anon_sym_LT] = ACTIONS(5720), + [anon_sym_LT_LT] = ACTIONS(5720), + [anon_sym_GT_GT] = ACTIONS(5720), + [anon_sym_SEMI] = ACTIONS(5722), + [anon_sym___attribute__] = ACTIONS(5720), + [anon_sym___attribute] = ACTIONS(5720), + [anon_sym_COLON] = ACTIONS(5722), + [anon_sym_LBRACE] = ACTIONS(5722), + [anon_sym_RBRACE] = ACTIONS(5722), + [anon_sym_LBRACK] = ACTIONS(5722), + [anon_sym_RBRACK] = ACTIONS(5722), + [anon_sym_EQ] = ACTIONS(5720), + [anon_sym_QMARK] = ACTIONS(5722), + [anon_sym_STAR_EQ] = ACTIONS(5722), + [anon_sym_SLASH_EQ] = ACTIONS(5722), + [anon_sym_PERCENT_EQ] = ACTIONS(5722), + [anon_sym_PLUS_EQ] = ACTIONS(5722), + [anon_sym_DASH_EQ] = ACTIONS(5722), + [anon_sym_LT_LT_EQ] = ACTIONS(5722), + [anon_sym_GT_GT_EQ] = ACTIONS(5722), + [anon_sym_AMP_EQ] = ACTIONS(5722), + [anon_sym_CARET_EQ] = ACTIONS(5722), + [anon_sym_PIPE_EQ] = ACTIONS(5722), + [anon_sym_and_eq] = ACTIONS(5720), + [anon_sym_or_eq] = ACTIONS(5720), + [anon_sym_xor_eq] = ACTIONS(5720), + [anon_sym_LT_EQ_GT] = ACTIONS(5722), + [anon_sym_or] = ACTIONS(5720), + [anon_sym_and] = ACTIONS(5720), + [anon_sym_bitor] = ACTIONS(5720), + [anon_sym_xor] = ACTIONS(5720), + [anon_sym_bitand] = ACTIONS(5720), + [anon_sym_not_eq] = ACTIONS(5720), + [anon_sym_DASH_DASH] = ACTIONS(5722), + [anon_sym_PLUS_PLUS] = ACTIONS(5722), + [anon_sym_DOT] = ACTIONS(5720), + [anon_sym_DOT_STAR] = ACTIONS(5722), + [anon_sym_DASH_GT] = ACTIONS(5722), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5720), + [anon_sym_decltype] = ACTIONS(5720), + }, + [2253] = { + [sym_template_argument_list] = STATE(1972), + [aux_sym_sized_type_specifier_repeat1] = STATE(2261), + [sym_identifier] = ACTIONS(4164), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4172), + [anon_sym_COMMA] = ACTIONS(4172), + [aux_sym_preproc_if_token2] = ACTIONS(4172), + [aux_sym_preproc_else_token1] = ACTIONS(4172), + [aux_sym_preproc_elif_token1] = ACTIONS(4164), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4172), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4172), + [anon_sym_LPAREN2] = ACTIONS(4172), + [anon_sym_DASH] = ACTIONS(4164), + [anon_sym_PLUS] = ACTIONS(4164), + [anon_sym_STAR] = ACTIONS(4164), + [anon_sym_SLASH] = ACTIONS(4164), + [anon_sym_PERCENT] = ACTIONS(4164), + [anon_sym_PIPE_PIPE] = ACTIONS(4172), + [anon_sym_AMP_AMP] = ACTIONS(4172), + [anon_sym_PIPE] = ACTIONS(4164), + [anon_sym_CARET] = ACTIONS(4164), + [anon_sym_AMP] = ACTIONS(4164), + [anon_sym_EQ_EQ] = ACTIONS(4172), + [anon_sym_BANG_EQ] = ACTIONS(4172), + [anon_sym_GT] = ACTIONS(4164), + [anon_sym_GT_EQ] = ACTIONS(4172), + [anon_sym_LT_EQ] = ACTIONS(4164), + [anon_sym_LT] = ACTIONS(5836), + [anon_sym_LT_LT] = ACTIONS(4164), + [anon_sym_GT_GT] = ACTIONS(4164), + [anon_sym_COLON_COLON] = ACTIONS(4187), + [anon_sym_LBRACE] = ACTIONS(4172), + [anon_sym_signed] = ACTIONS(6062), + [anon_sym_unsigned] = ACTIONS(6062), + [anon_sym_long] = ACTIONS(6062), + [anon_sym_short] = ACTIONS(6062), + [anon_sym_LBRACK] = ACTIONS(4172), + [anon_sym_EQ] = ACTIONS(4164), + [anon_sym_QMARK] = ACTIONS(4172), + [anon_sym_STAR_EQ] = ACTIONS(4172), + [anon_sym_SLASH_EQ] = ACTIONS(4172), + [anon_sym_PERCENT_EQ] = ACTIONS(4172), + [anon_sym_PLUS_EQ] = ACTIONS(4172), + [anon_sym_DASH_EQ] = ACTIONS(4172), + [anon_sym_LT_LT_EQ] = ACTIONS(4172), + [anon_sym_GT_GT_EQ] = ACTIONS(4172), + [anon_sym_AMP_EQ] = ACTIONS(4172), + [anon_sym_CARET_EQ] = ACTIONS(4172), + [anon_sym_PIPE_EQ] = ACTIONS(4172), + [anon_sym_and_eq] = ACTIONS(4164), + [anon_sym_or_eq] = ACTIONS(4164), + [anon_sym_xor_eq] = ACTIONS(4164), + [anon_sym_LT_EQ_GT] = ACTIONS(4172), + [anon_sym_or] = ACTIONS(4164), + [anon_sym_and] = ACTIONS(4164), + [anon_sym_bitor] = ACTIONS(4164), + [anon_sym_xor] = ACTIONS(4164), + [anon_sym_bitand] = ACTIONS(4164), + [anon_sym_not_eq] = ACTIONS(4164), + [anon_sym_DASH_DASH] = ACTIONS(4172), + [anon_sym_PLUS_PLUS] = ACTIONS(4172), + [anon_sym_DOT] = ACTIONS(4164), + [anon_sym_DOT_STAR] = ACTIONS(4172), + [anon_sym_DASH_GT] = ACTIONS(4172), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4164), + [anon_sym_decltype] = ACTIONS(4164), + }, + [2254] = { + [sym_argument_list] = STATE(2539), + [sym_initializer_list] = STATE(2539), + [sym_identifier] = ACTIONS(6224), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6226), + [anon_sym_COMMA] = ACTIONS(6226), + [anon_sym_RPAREN] = ACTIONS(6226), + [aux_sym_preproc_if_token2] = ACTIONS(6226), + [aux_sym_preproc_else_token1] = ACTIONS(6226), + [aux_sym_preproc_elif_token1] = ACTIONS(6224), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6226), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6226), + [anon_sym_LPAREN2] = ACTIONS(5845), + [anon_sym_DASH] = ACTIONS(6224), + [anon_sym_PLUS] = ACTIONS(6224), + [anon_sym_STAR] = ACTIONS(6224), + [anon_sym_SLASH] = ACTIONS(6224), + [anon_sym_PERCENT] = ACTIONS(6224), + [anon_sym_PIPE_PIPE] = ACTIONS(6226), + [anon_sym_AMP_AMP] = ACTIONS(6226), + [anon_sym_PIPE] = ACTIONS(6224), + [anon_sym_CARET] = ACTIONS(6224), + [anon_sym_AMP] = ACTIONS(6224), + [anon_sym_EQ_EQ] = ACTIONS(6226), + [anon_sym_BANG_EQ] = ACTIONS(6226), + [anon_sym_GT] = ACTIONS(6224), + [anon_sym_GT_EQ] = ACTIONS(6226), + [anon_sym_LT_EQ] = ACTIONS(6224), + [anon_sym_LT] = ACTIONS(6224), + [anon_sym_LT_LT] = ACTIONS(6224), + [anon_sym_GT_GT] = ACTIONS(6224), + [anon_sym_SEMI] = ACTIONS(6226), + [anon_sym___attribute__] = ACTIONS(6224), + [anon_sym___attribute] = ACTIONS(6224), + [anon_sym_COLON] = ACTIONS(6226), [anon_sym_LBRACE] = ACTIONS(1954), - [anon_sym_RBRACE] = ACTIONS(6174), - [anon_sym_LBRACK] = ACTIONS(6174), - [anon_sym_RBRACK] = ACTIONS(6174), - [anon_sym_EQ] = ACTIONS(6172), - [anon_sym_QMARK] = ACTIONS(6174), - [anon_sym_STAR_EQ] = ACTIONS(6174), - [anon_sym_SLASH_EQ] = ACTIONS(6174), - [anon_sym_PERCENT_EQ] = ACTIONS(6174), - [anon_sym_PLUS_EQ] = ACTIONS(6174), - [anon_sym_DASH_EQ] = ACTIONS(6174), - [anon_sym_LT_LT_EQ] = ACTIONS(6174), - [anon_sym_GT_GT_EQ] = ACTIONS(6174), - [anon_sym_AMP_EQ] = ACTIONS(6174), - [anon_sym_CARET_EQ] = ACTIONS(6174), - [anon_sym_PIPE_EQ] = ACTIONS(6174), - [anon_sym_and_eq] = ACTIONS(6172), - [anon_sym_or_eq] = ACTIONS(6172), - [anon_sym_xor_eq] = ACTIONS(6172), - [anon_sym_LT_EQ_GT] = ACTIONS(6174), - [anon_sym_or] = ACTIONS(6172), - [anon_sym_and] = ACTIONS(6172), - [anon_sym_bitor] = ACTIONS(6172), - [anon_sym_xor] = ACTIONS(6172), - [anon_sym_bitand] = ACTIONS(6172), - [anon_sym_not_eq] = ACTIONS(6172), - [anon_sym_DASH_DASH] = ACTIONS(6174), - [anon_sym_PLUS_PLUS] = ACTIONS(6174), - [anon_sym_DOT] = ACTIONS(6172), - [anon_sym_DOT_STAR] = ACTIONS(6174), - [anon_sym_DASH_GT] = ACTIONS(6174), + [anon_sym_RBRACE] = ACTIONS(6226), + [anon_sym_LBRACK] = ACTIONS(6226), + [anon_sym_RBRACK] = ACTIONS(6226), + [anon_sym_EQ] = ACTIONS(6224), + [anon_sym_QMARK] = ACTIONS(6226), + [anon_sym_STAR_EQ] = ACTIONS(6226), + [anon_sym_SLASH_EQ] = ACTIONS(6226), + [anon_sym_PERCENT_EQ] = ACTIONS(6226), + [anon_sym_PLUS_EQ] = ACTIONS(6226), + [anon_sym_DASH_EQ] = ACTIONS(6226), + [anon_sym_LT_LT_EQ] = ACTIONS(6226), + [anon_sym_GT_GT_EQ] = ACTIONS(6226), + [anon_sym_AMP_EQ] = ACTIONS(6226), + [anon_sym_CARET_EQ] = ACTIONS(6226), + [anon_sym_PIPE_EQ] = ACTIONS(6226), + [anon_sym_and_eq] = ACTIONS(6224), + [anon_sym_or_eq] = ACTIONS(6224), + [anon_sym_xor_eq] = ACTIONS(6224), + [anon_sym_LT_EQ_GT] = ACTIONS(6226), + [anon_sym_or] = ACTIONS(6224), + [anon_sym_and] = ACTIONS(6224), + [anon_sym_bitor] = ACTIONS(6224), + [anon_sym_xor] = ACTIONS(6224), + [anon_sym_bitand] = ACTIONS(6224), + [anon_sym_not_eq] = ACTIONS(6224), + [anon_sym_DASH_DASH] = ACTIONS(6226), + [anon_sym_PLUS_PLUS] = ACTIONS(6226), + [anon_sym_DOT] = ACTIONS(6224), + [anon_sym_DOT_STAR] = ACTIONS(6226), + [anon_sym_DASH_GT] = ACTIONS(6226), [sym_comment] = ACTIONS(3), }, - [2211] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2293), - [sym_identifier] = ACTIONS(5910), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5908), - [anon_sym_COMMA] = ACTIONS(5908), - [aux_sym_preproc_if_token2] = ACTIONS(5908), - [aux_sym_preproc_else_token1] = ACTIONS(5908), - [aux_sym_preproc_elif_token1] = ACTIONS(5910), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5908), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5908), - [anon_sym_LPAREN2] = ACTIONS(5908), - [anon_sym_DASH] = ACTIONS(5910), - [anon_sym_PLUS] = ACTIONS(5910), - [anon_sym_STAR] = ACTIONS(5910), - [anon_sym_SLASH] = ACTIONS(5910), - [anon_sym_PERCENT] = ACTIONS(5910), - [anon_sym_PIPE_PIPE] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(5908), - [anon_sym_PIPE] = ACTIONS(5910), - [anon_sym_CARET] = ACTIONS(5910), - [anon_sym_AMP] = ACTIONS(5910), - [anon_sym_EQ_EQ] = ACTIONS(5908), - [anon_sym_BANG_EQ] = ACTIONS(5908), - [anon_sym_GT] = ACTIONS(5910), - [anon_sym_GT_EQ] = ACTIONS(5908), - [anon_sym_LT_EQ] = ACTIONS(5910), - [anon_sym_LT] = ACTIONS(5910), - [anon_sym_LT_LT] = ACTIONS(5910), - [anon_sym_GT_GT] = ACTIONS(5910), - [anon_sym___attribute__] = ACTIONS(5910), - [anon_sym___attribute] = ACTIONS(5910), - [anon_sym_LBRACE] = ACTIONS(5908), - [anon_sym_signed] = ACTIONS(6176), - [anon_sym_unsigned] = ACTIONS(6176), - [anon_sym_long] = ACTIONS(6176), - [anon_sym_short] = ACTIONS(6176), - [anon_sym_LBRACK] = ACTIONS(5908), - [anon_sym_EQ] = ACTIONS(5910), - [anon_sym_QMARK] = ACTIONS(5908), - [anon_sym_STAR_EQ] = ACTIONS(5908), - [anon_sym_SLASH_EQ] = ACTIONS(5908), - [anon_sym_PERCENT_EQ] = ACTIONS(5908), - [anon_sym_PLUS_EQ] = ACTIONS(5908), - [anon_sym_DASH_EQ] = ACTIONS(5908), - [anon_sym_LT_LT_EQ] = ACTIONS(5908), - [anon_sym_GT_GT_EQ] = ACTIONS(5908), - [anon_sym_AMP_EQ] = ACTIONS(5908), - [anon_sym_CARET_EQ] = ACTIONS(5908), - [anon_sym_PIPE_EQ] = ACTIONS(5908), - [anon_sym_and_eq] = ACTIONS(5910), - [anon_sym_or_eq] = ACTIONS(5910), - [anon_sym_xor_eq] = ACTIONS(5910), - [anon_sym_LT_EQ_GT] = ACTIONS(5908), - [anon_sym_or] = ACTIONS(5910), - [anon_sym_and] = ACTIONS(5910), - [anon_sym_bitor] = ACTIONS(5910), - [anon_sym_xor] = ACTIONS(5910), - [anon_sym_bitand] = ACTIONS(5910), - [anon_sym_not_eq] = ACTIONS(5910), - [anon_sym_DASH_DASH] = ACTIONS(5908), - [anon_sym_PLUS_PLUS] = ACTIONS(5908), - [anon_sym_DOT] = ACTIONS(5910), - [anon_sym_DOT_STAR] = ACTIONS(5908), - [anon_sym_DASH_GT] = ACTIONS(5908), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5910), - [anon_sym_decltype] = ACTIONS(5910), + [2255] = { + [sym_identifier] = ACTIONS(5764), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5766), + [anon_sym_COMMA] = ACTIONS(5766), + [anon_sym_RPAREN] = ACTIONS(5766), + [aux_sym_preproc_if_token2] = ACTIONS(5766), + [aux_sym_preproc_else_token1] = ACTIONS(5766), + [aux_sym_preproc_elif_token1] = ACTIONS(5764), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5766), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5766), + [anon_sym_LPAREN2] = ACTIONS(5766), + [anon_sym_DASH] = ACTIONS(5764), + [anon_sym_PLUS] = ACTIONS(5764), + [anon_sym_STAR] = ACTIONS(5764), + [anon_sym_SLASH] = ACTIONS(5764), + [anon_sym_PERCENT] = ACTIONS(5764), + [anon_sym_PIPE_PIPE] = ACTIONS(5766), + [anon_sym_AMP_AMP] = ACTIONS(5766), + [anon_sym_PIPE] = ACTIONS(5764), + [anon_sym_CARET] = ACTIONS(5764), + [anon_sym_AMP] = ACTIONS(5764), + [anon_sym_EQ_EQ] = ACTIONS(5766), + [anon_sym_BANG_EQ] = ACTIONS(5766), + [anon_sym_GT] = ACTIONS(5764), + [anon_sym_GT_EQ] = ACTIONS(5766), + [anon_sym_LT_EQ] = ACTIONS(5764), + [anon_sym_LT] = ACTIONS(5764), + [anon_sym_LT_LT] = ACTIONS(5764), + [anon_sym_GT_GT] = ACTIONS(5764), + [anon_sym_SEMI] = ACTIONS(5766), + [anon_sym___attribute__] = ACTIONS(5764), + [anon_sym___attribute] = ACTIONS(5764), + [anon_sym_COLON] = ACTIONS(5766), + [anon_sym_LBRACE] = ACTIONS(5766), + [anon_sym_RBRACE] = ACTIONS(5766), + [anon_sym_LBRACK] = ACTIONS(5766), + [anon_sym_RBRACK] = ACTIONS(5766), + [anon_sym_EQ] = ACTIONS(5764), + [anon_sym_QMARK] = ACTIONS(5766), + [anon_sym_STAR_EQ] = ACTIONS(5766), + [anon_sym_SLASH_EQ] = ACTIONS(5766), + [anon_sym_PERCENT_EQ] = ACTIONS(5766), + [anon_sym_PLUS_EQ] = ACTIONS(5766), + [anon_sym_DASH_EQ] = ACTIONS(5766), + [anon_sym_LT_LT_EQ] = ACTIONS(5766), + [anon_sym_GT_GT_EQ] = ACTIONS(5766), + [anon_sym_AMP_EQ] = ACTIONS(5766), + [anon_sym_CARET_EQ] = ACTIONS(5766), + [anon_sym_PIPE_EQ] = ACTIONS(5766), + [anon_sym_and_eq] = ACTIONS(5764), + [anon_sym_or_eq] = ACTIONS(5764), + [anon_sym_xor_eq] = ACTIONS(5764), + [anon_sym_LT_EQ_GT] = ACTIONS(5766), + [anon_sym_or] = ACTIONS(5764), + [anon_sym_and] = ACTIONS(5764), + [anon_sym_bitor] = ACTIONS(5764), + [anon_sym_xor] = ACTIONS(5764), + [anon_sym_bitand] = ACTIONS(5764), + [anon_sym_not_eq] = ACTIONS(5764), + [anon_sym_DASH_DASH] = ACTIONS(5766), + [anon_sym_PLUS_PLUS] = ACTIONS(5766), + [anon_sym_DOT] = ACTIONS(5764), + [anon_sym_DOT_STAR] = ACTIONS(5766), + [anon_sym_DASH_GT] = ACTIONS(5766), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5764), + [anon_sym_decltype] = ACTIONS(5764), }, - [2212] = { - [sym_identifier] = ACTIONS(5080), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5082), - [anon_sym_COMMA] = ACTIONS(5082), - [anon_sym_LPAREN2] = ACTIONS(5082), - [anon_sym_DASH] = ACTIONS(5080), - [anon_sym_PLUS] = ACTIONS(5080), - [anon_sym_STAR] = ACTIONS(5082), - [anon_sym_SLASH] = ACTIONS(5080), - [anon_sym_PERCENT] = ACTIONS(5082), - [anon_sym_PIPE_PIPE] = ACTIONS(5082), - [anon_sym_AMP_AMP] = ACTIONS(5082), - [anon_sym_PIPE] = ACTIONS(5080), - [anon_sym_CARET] = ACTIONS(5082), - [anon_sym_AMP] = ACTIONS(5080), - [anon_sym_EQ_EQ] = ACTIONS(5082), - [anon_sym_BANG_EQ] = ACTIONS(5082), - [anon_sym_GT] = ACTIONS(5080), - [anon_sym_GT_EQ] = ACTIONS(5080), - [anon_sym_LT_EQ] = ACTIONS(5080), - [anon_sym_LT] = ACTIONS(5080), - [anon_sym_LT_LT] = ACTIONS(5082), - [anon_sym_GT_GT] = ACTIONS(5080), - [anon_sym___extension__] = ACTIONS(5080), - [anon_sym___attribute__] = ACTIONS(5080), - [anon_sym___attribute] = ACTIONS(5080), - [anon_sym_LBRACE] = ACTIONS(5082), - [anon_sym_signed] = ACTIONS(5080), - [anon_sym_unsigned] = ACTIONS(5080), - [anon_sym_long] = ACTIONS(5080), - [anon_sym_short] = ACTIONS(5080), - [anon_sym_LBRACK] = ACTIONS(5082), - [anon_sym_const] = ACTIONS(5080), - [anon_sym_constexpr] = ACTIONS(5080), - [anon_sym_volatile] = ACTIONS(5080), - [anon_sym_restrict] = ACTIONS(5080), - [anon_sym___restrict__] = ACTIONS(5080), - [anon_sym__Atomic] = ACTIONS(5080), - [anon_sym__Noreturn] = ACTIONS(5080), - [anon_sym_noreturn] = ACTIONS(5080), - [anon_sym__Nonnull] = ACTIONS(5080), - [anon_sym_mutable] = ACTIONS(5080), - [anon_sym_constinit] = ACTIONS(5080), - [anon_sym_consteval] = ACTIONS(5080), - [anon_sym_alignas] = ACTIONS(5080), - [anon_sym__Alignas] = ACTIONS(5080), - [sym_primitive_type] = ACTIONS(5080), - [anon_sym_QMARK] = ACTIONS(5082), - [anon_sym_LT_EQ_GT] = ACTIONS(5082), - [anon_sym_or] = ACTIONS(5080), - [anon_sym_and] = ACTIONS(5080), - [anon_sym_bitor] = ACTIONS(5080), - [anon_sym_xor] = ACTIONS(5080), - [anon_sym_bitand] = ACTIONS(5080), - [anon_sym_not_eq] = ACTIONS(5080), - [anon_sym_DASH_DASH] = ACTIONS(5082), - [anon_sym_PLUS_PLUS] = ACTIONS(5082), - [anon_sym_DOT] = ACTIONS(5080), - [anon_sym_DOT_STAR] = ACTIONS(5082), - [anon_sym_DASH_GT] = ACTIONS(5082), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5080), - [anon_sym_decltype] = ACTIONS(5080), - [anon_sym_final] = ACTIONS(5080), - [anon_sym_override] = ACTIONS(5080), - [anon_sym_GT2] = ACTIONS(5082), - [anon_sym_requires] = ACTIONS(5080), + [2256] = { + [sym_identifier] = ACTIONS(5768), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5770), + [anon_sym_COMMA] = ACTIONS(5770), + [anon_sym_RPAREN] = ACTIONS(5770), + [aux_sym_preproc_if_token2] = ACTIONS(5770), + [aux_sym_preproc_else_token1] = ACTIONS(5770), + [aux_sym_preproc_elif_token1] = ACTIONS(5768), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5770), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5770), + [anon_sym_LPAREN2] = ACTIONS(5770), + [anon_sym_DASH] = ACTIONS(5768), + [anon_sym_PLUS] = ACTIONS(5768), + [anon_sym_STAR] = ACTIONS(5768), + [anon_sym_SLASH] = ACTIONS(5768), + [anon_sym_PERCENT] = ACTIONS(5768), + [anon_sym_PIPE_PIPE] = ACTIONS(5770), + [anon_sym_AMP_AMP] = ACTIONS(5770), + [anon_sym_PIPE] = ACTIONS(5768), + [anon_sym_CARET] = ACTIONS(5768), + [anon_sym_AMP] = ACTIONS(5768), + [anon_sym_EQ_EQ] = ACTIONS(5770), + [anon_sym_BANG_EQ] = ACTIONS(5770), + [anon_sym_GT] = ACTIONS(5768), + [anon_sym_GT_EQ] = ACTIONS(5770), + [anon_sym_LT_EQ] = ACTIONS(5768), + [anon_sym_LT] = ACTIONS(5768), + [anon_sym_LT_LT] = ACTIONS(5768), + [anon_sym_GT_GT] = ACTIONS(5768), + [anon_sym_SEMI] = ACTIONS(5770), + [anon_sym___attribute__] = ACTIONS(5768), + [anon_sym___attribute] = ACTIONS(5768), + [anon_sym_COLON] = ACTIONS(5770), + [anon_sym_LBRACE] = ACTIONS(5770), + [anon_sym_RBRACE] = ACTIONS(5770), + [anon_sym_LBRACK] = ACTIONS(5770), + [anon_sym_RBRACK] = ACTIONS(5770), + [anon_sym_EQ] = ACTIONS(5768), + [anon_sym_QMARK] = ACTIONS(5770), + [anon_sym_STAR_EQ] = ACTIONS(5770), + [anon_sym_SLASH_EQ] = ACTIONS(5770), + [anon_sym_PERCENT_EQ] = ACTIONS(5770), + [anon_sym_PLUS_EQ] = ACTIONS(5770), + [anon_sym_DASH_EQ] = ACTIONS(5770), + [anon_sym_LT_LT_EQ] = ACTIONS(5770), + [anon_sym_GT_GT_EQ] = ACTIONS(5770), + [anon_sym_AMP_EQ] = ACTIONS(5770), + [anon_sym_CARET_EQ] = ACTIONS(5770), + [anon_sym_PIPE_EQ] = ACTIONS(5770), + [anon_sym_and_eq] = ACTIONS(5768), + [anon_sym_or_eq] = ACTIONS(5768), + [anon_sym_xor_eq] = ACTIONS(5768), + [anon_sym_LT_EQ_GT] = ACTIONS(5770), + [anon_sym_or] = ACTIONS(5768), + [anon_sym_and] = ACTIONS(5768), + [anon_sym_bitor] = ACTIONS(5768), + [anon_sym_xor] = ACTIONS(5768), + [anon_sym_bitand] = ACTIONS(5768), + [anon_sym_not_eq] = ACTIONS(5768), + [anon_sym_DASH_DASH] = ACTIONS(5770), + [anon_sym_PLUS_PLUS] = ACTIONS(5770), + [anon_sym_DOT] = ACTIONS(5768), + [anon_sym_DOT_STAR] = ACTIONS(5770), + [anon_sym_DASH_GT] = ACTIONS(5770), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5768), + [anon_sym_decltype] = ACTIONS(5768), }, - [2213] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(5480), - [anon_sym_COMMA] = ACTIONS(5480), - [anon_sym_RPAREN] = ACTIONS(5480), - [anon_sym_LPAREN2] = ACTIONS(5480), - [anon_sym_DASH] = ACTIONS(5478), - [anon_sym_PLUS] = ACTIONS(5478), - [anon_sym_STAR] = ACTIONS(5478), - [anon_sym_SLASH] = ACTIONS(5478), - [anon_sym_PERCENT] = ACTIONS(5478), - [anon_sym_PIPE_PIPE] = ACTIONS(5480), - [anon_sym_AMP_AMP] = ACTIONS(5480), - [anon_sym_PIPE] = ACTIONS(5478), - [anon_sym_CARET] = ACTIONS(5478), - [anon_sym_AMP] = ACTIONS(5478), - [anon_sym_EQ_EQ] = ACTIONS(5480), - [anon_sym_BANG_EQ] = ACTIONS(5480), - [anon_sym_GT] = ACTIONS(5478), - [anon_sym_GT_EQ] = ACTIONS(5480), - [anon_sym_LT_EQ] = ACTIONS(5478), - [anon_sym_LT] = ACTIONS(5478), - [anon_sym_LT_LT] = ACTIONS(5478), - [anon_sym_GT_GT] = ACTIONS(5478), - [anon_sym_SEMI] = ACTIONS(5480), - [anon_sym_COLON] = ACTIONS(5480), - [anon_sym_RBRACE] = ACTIONS(5480), - [anon_sym_LBRACK] = ACTIONS(5480), - [anon_sym_RBRACK] = ACTIONS(5480), - [anon_sym_EQ] = ACTIONS(5478), - [anon_sym_QMARK] = ACTIONS(5480), - [anon_sym_STAR_EQ] = ACTIONS(5480), - [anon_sym_SLASH_EQ] = ACTIONS(5480), - [anon_sym_PERCENT_EQ] = ACTIONS(5480), - [anon_sym_PLUS_EQ] = ACTIONS(5480), - [anon_sym_DASH_EQ] = ACTIONS(5480), - [anon_sym_LT_LT_EQ] = ACTIONS(5480), - [anon_sym_GT_GT_EQ] = ACTIONS(5480), - [anon_sym_AMP_EQ] = ACTIONS(5480), - [anon_sym_CARET_EQ] = ACTIONS(5480), - [anon_sym_PIPE_EQ] = ACTIONS(5480), - [anon_sym_and_eq] = ACTIONS(5478), - [anon_sym_or_eq] = ACTIONS(5478), - [anon_sym_xor_eq] = ACTIONS(5478), - [anon_sym_LT_EQ_GT] = ACTIONS(5480), - [anon_sym_or] = ACTIONS(5478), - [anon_sym_and] = ACTIONS(5478), - [anon_sym_bitor] = ACTIONS(5478), - [anon_sym_xor] = ACTIONS(5478), - [anon_sym_bitand] = ACTIONS(5478), - [anon_sym_not_eq] = ACTIONS(5478), - [anon_sym_DASH_DASH] = ACTIONS(5480), - [anon_sym_PLUS_PLUS] = ACTIONS(5480), - [anon_sym_DOT] = ACTIONS(5478), - [anon_sym_DOT_STAR] = ACTIONS(5480), - [anon_sym_DASH_GT] = ACTIONS(5480), - [anon_sym_L_DQUOTE] = ACTIONS(5480), - [anon_sym_u_DQUOTE] = ACTIONS(5480), - [anon_sym_U_DQUOTE] = ACTIONS(5480), - [anon_sym_u8_DQUOTE] = ACTIONS(5480), - [anon_sym_DQUOTE] = ACTIONS(5480), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5480), - [anon_sym_LR_DQUOTE] = ACTIONS(5480), - [anon_sym_uR_DQUOTE] = ACTIONS(5480), - [anon_sym_UR_DQUOTE] = ACTIONS(5480), - [anon_sym_u8R_DQUOTE] = ACTIONS(5480), - [sym_literal_suffix] = ACTIONS(5478), + [2257] = { + [sym_identifier] = ACTIONS(5772), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5774), + [anon_sym_COMMA] = ACTIONS(5774), + [anon_sym_RPAREN] = ACTIONS(5774), + [aux_sym_preproc_if_token2] = ACTIONS(5774), + [aux_sym_preproc_else_token1] = ACTIONS(5774), + [aux_sym_preproc_elif_token1] = ACTIONS(5772), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5774), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5774), + [anon_sym_LPAREN2] = ACTIONS(5774), + [anon_sym_DASH] = ACTIONS(5772), + [anon_sym_PLUS] = ACTIONS(5772), + [anon_sym_STAR] = ACTIONS(5772), + [anon_sym_SLASH] = ACTIONS(5772), + [anon_sym_PERCENT] = ACTIONS(5772), + [anon_sym_PIPE_PIPE] = ACTIONS(5774), + [anon_sym_AMP_AMP] = ACTIONS(5774), + [anon_sym_PIPE] = ACTIONS(5772), + [anon_sym_CARET] = ACTIONS(5772), + [anon_sym_AMP] = ACTIONS(5772), + [anon_sym_EQ_EQ] = ACTIONS(5774), + [anon_sym_BANG_EQ] = ACTIONS(5774), + [anon_sym_GT] = ACTIONS(5772), + [anon_sym_GT_EQ] = ACTIONS(5774), + [anon_sym_LT_EQ] = ACTIONS(5772), + [anon_sym_LT] = ACTIONS(5772), + [anon_sym_LT_LT] = ACTIONS(5772), + [anon_sym_GT_GT] = ACTIONS(5772), + [anon_sym_SEMI] = ACTIONS(5774), + [anon_sym___attribute__] = ACTIONS(5772), + [anon_sym___attribute] = ACTIONS(5772), + [anon_sym_COLON] = ACTIONS(5774), + [anon_sym_LBRACE] = ACTIONS(5774), + [anon_sym_RBRACE] = ACTIONS(5774), + [anon_sym_LBRACK] = ACTIONS(5774), + [anon_sym_RBRACK] = ACTIONS(5774), + [anon_sym_EQ] = ACTIONS(5772), + [anon_sym_QMARK] = ACTIONS(5774), + [anon_sym_STAR_EQ] = ACTIONS(5774), + [anon_sym_SLASH_EQ] = ACTIONS(5774), + [anon_sym_PERCENT_EQ] = ACTIONS(5774), + [anon_sym_PLUS_EQ] = ACTIONS(5774), + [anon_sym_DASH_EQ] = ACTIONS(5774), + [anon_sym_LT_LT_EQ] = ACTIONS(5774), + [anon_sym_GT_GT_EQ] = ACTIONS(5774), + [anon_sym_AMP_EQ] = ACTIONS(5774), + [anon_sym_CARET_EQ] = ACTIONS(5774), + [anon_sym_PIPE_EQ] = ACTIONS(5774), + [anon_sym_and_eq] = ACTIONS(5772), + [anon_sym_or_eq] = ACTIONS(5772), + [anon_sym_xor_eq] = ACTIONS(5772), + [anon_sym_LT_EQ_GT] = ACTIONS(5774), + [anon_sym_or] = ACTIONS(5772), + [anon_sym_and] = ACTIONS(5772), + [anon_sym_bitor] = ACTIONS(5772), + [anon_sym_xor] = ACTIONS(5772), + [anon_sym_bitand] = ACTIONS(5772), + [anon_sym_not_eq] = ACTIONS(5772), + [anon_sym_DASH_DASH] = ACTIONS(5774), + [anon_sym_PLUS_PLUS] = ACTIONS(5774), + [anon_sym_DOT] = ACTIONS(5772), + [anon_sym_DOT_STAR] = ACTIONS(5774), + [anon_sym_DASH_GT] = ACTIONS(5774), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5772), + [anon_sym_decltype] = ACTIONS(5772), }, - [2214] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2293), - [sym_identifier] = ACTIONS(5918), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5916), - [anon_sym_COMMA] = ACTIONS(5916), - [aux_sym_preproc_if_token2] = ACTIONS(5916), - [aux_sym_preproc_else_token1] = ACTIONS(5916), - [aux_sym_preproc_elif_token1] = ACTIONS(5918), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5916), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5916), - [anon_sym_LPAREN2] = ACTIONS(5916), - [anon_sym_DASH] = ACTIONS(5918), - [anon_sym_PLUS] = ACTIONS(5918), - [anon_sym_STAR] = ACTIONS(5918), - [anon_sym_SLASH] = ACTIONS(5918), - [anon_sym_PERCENT] = ACTIONS(5918), - [anon_sym_PIPE_PIPE] = ACTIONS(5916), - [anon_sym_AMP_AMP] = ACTIONS(5916), - [anon_sym_PIPE] = ACTIONS(5918), - [anon_sym_CARET] = ACTIONS(5918), - [anon_sym_AMP] = ACTIONS(5918), - [anon_sym_EQ_EQ] = ACTIONS(5916), - [anon_sym_BANG_EQ] = ACTIONS(5916), - [anon_sym_GT] = ACTIONS(5918), - [anon_sym_GT_EQ] = ACTIONS(5916), - [anon_sym_LT_EQ] = ACTIONS(5918), - [anon_sym_LT] = ACTIONS(5918), - [anon_sym_LT_LT] = ACTIONS(5918), - [anon_sym_GT_GT] = ACTIONS(5918), - [anon_sym___attribute__] = ACTIONS(5918), - [anon_sym___attribute] = ACTIONS(5918), - [anon_sym_LBRACE] = ACTIONS(5916), - [anon_sym_signed] = ACTIONS(6176), - [anon_sym_unsigned] = ACTIONS(6176), - [anon_sym_long] = ACTIONS(6176), - [anon_sym_short] = ACTIONS(6176), - [anon_sym_LBRACK] = ACTIONS(5916), - [anon_sym_EQ] = ACTIONS(5918), - [anon_sym_QMARK] = ACTIONS(5916), - [anon_sym_STAR_EQ] = ACTIONS(5916), - [anon_sym_SLASH_EQ] = ACTIONS(5916), - [anon_sym_PERCENT_EQ] = ACTIONS(5916), - [anon_sym_PLUS_EQ] = ACTIONS(5916), - [anon_sym_DASH_EQ] = ACTIONS(5916), - [anon_sym_LT_LT_EQ] = ACTIONS(5916), - [anon_sym_GT_GT_EQ] = ACTIONS(5916), - [anon_sym_AMP_EQ] = ACTIONS(5916), - [anon_sym_CARET_EQ] = ACTIONS(5916), - [anon_sym_PIPE_EQ] = ACTIONS(5916), - [anon_sym_and_eq] = ACTIONS(5918), - [anon_sym_or_eq] = ACTIONS(5918), - [anon_sym_xor_eq] = ACTIONS(5918), - [anon_sym_LT_EQ_GT] = ACTIONS(5916), - [anon_sym_or] = ACTIONS(5918), - [anon_sym_and] = ACTIONS(5918), - [anon_sym_bitor] = ACTIONS(5918), - [anon_sym_xor] = ACTIONS(5918), - [anon_sym_bitand] = ACTIONS(5918), - [anon_sym_not_eq] = ACTIONS(5918), - [anon_sym_DASH_DASH] = ACTIONS(5916), - [anon_sym_PLUS_PLUS] = ACTIONS(5916), - [anon_sym_DOT] = ACTIONS(5918), - [anon_sym_DOT_STAR] = ACTIONS(5916), - [anon_sym_DASH_GT] = ACTIONS(5916), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5918), - [anon_sym_decltype] = ACTIONS(5918), + [2258] = { + [sym_string_literal] = STATE(2319), + [sym_raw_string_literal] = STATE(2319), + [aux_sym_concatenated_string_repeat1] = STATE(2319), + [sym_identifier] = ACTIONS(6228), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5395), + [anon_sym_COMMA] = ACTIONS(5395), + [anon_sym_LPAREN2] = ACTIONS(5395), + [anon_sym_DASH] = ACTIONS(5397), + [anon_sym_PLUS] = ACTIONS(5397), + [anon_sym_STAR] = ACTIONS(5397), + [anon_sym_SLASH] = ACTIONS(5397), + [anon_sym_PERCENT] = ACTIONS(5397), + [anon_sym_PIPE_PIPE] = ACTIONS(5395), + [anon_sym_AMP_AMP] = ACTIONS(5395), + [anon_sym_PIPE] = ACTIONS(5397), + [anon_sym_CARET] = ACTIONS(5397), + [anon_sym_AMP] = ACTIONS(5397), + [anon_sym_EQ_EQ] = ACTIONS(5395), + [anon_sym_BANG_EQ] = ACTIONS(5395), + [anon_sym_GT] = ACTIONS(5397), + [anon_sym_GT_EQ] = ACTIONS(5397), + [anon_sym_LT_EQ] = ACTIONS(5397), + [anon_sym_LT] = ACTIONS(5397), + [anon_sym_LT_LT] = ACTIONS(5397), + [anon_sym_GT_GT] = ACTIONS(5397), + [anon_sym_LBRACK] = ACTIONS(5395), + [anon_sym_EQ] = ACTIONS(5397), + [anon_sym_QMARK] = ACTIONS(5395), + [anon_sym_STAR_EQ] = ACTIONS(5395), + [anon_sym_SLASH_EQ] = ACTIONS(5395), + [anon_sym_PERCENT_EQ] = ACTIONS(5395), + [anon_sym_PLUS_EQ] = ACTIONS(5395), + [anon_sym_DASH_EQ] = ACTIONS(5395), + [anon_sym_LT_LT_EQ] = ACTIONS(5395), + [anon_sym_GT_GT_EQ] = ACTIONS(5397), + [anon_sym_AMP_EQ] = ACTIONS(5395), + [anon_sym_CARET_EQ] = ACTIONS(5395), + [anon_sym_PIPE_EQ] = ACTIONS(5395), + [anon_sym_and_eq] = ACTIONS(5397), + [anon_sym_or_eq] = ACTIONS(5397), + [anon_sym_xor_eq] = ACTIONS(5397), + [anon_sym_LT_EQ_GT] = ACTIONS(5395), + [anon_sym_or] = ACTIONS(5397), + [anon_sym_and] = ACTIONS(5397), + [anon_sym_bitor] = ACTIONS(5397), + [anon_sym_xor] = ACTIONS(5397), + [anon_sym_bitand] = ACTIONS(5397), + [anon_sym_not_eq] = ACTIONS(5397), + [anon_sym_DASH_DASH] = ACTIONS(5395), + [anon_sym_PLUS_PLUS] = ACTIONS(5395), + [anon_sym_DOT] = ACTIONS(5397), + [anon_sym_DOT_STAR] = ACTIONS(5395), + [anon_sym_DASH_GT] = ACTIONS(5395), + [anon_sym_L_DQUOTE] = ACTIONS(6230), + [anon_sym_u_DQUOTE] = ACTIONS(6230), + [anon_sym_U_DQUOTE] = ACTIONS(6230), + [anon_sym_u8_DQUOTE] = ACTIONS(6230), + [anon_sym_DQUOTE] = ACTIONS(6230), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(5395), + [anon_sym_R_DQUOTE] = ACTIONS(6232), + [anon_sym_LR_DQUOTE] = ACTIONS(6232), + [anon_sym_uR_DQUOTE] = ACTIONS(6232), + [anon_sym_UR_DQUOTE] = ACTIONS(6232), + [anon_sym_u8R_DQUOTE] = ACTIONS(6232), + [sym_literal_suffix] = ACTIONS(5397), }, - [2215] = { - [sym_identifier] = ACTIONS(6178), - [anon_sym_LPAREN2] = ACTIONS(6180), - [anon_sym_TILDE] = ACTIONS(6180), - [anon_sym_STAR] = ACTIONS(6180), - [anon_sym_PIPE_PIPE] = ACTIONS(6180), - [anon_sym_AMP_AMP] = ACTIONS(6182), - [anon_sym_AMP] = ACTIONS(6178), - [anon_sym___extension__] = ACTIONS(6178), - [anon_sym_virtual] = ACTIONS(6178), - [anon_sym_extern] = ACTIONS(6178), - [anon_sym___attribute__] = ACTIONS(6178), - [anon_sym___attribute] = ACTIONS(6178), - [anon_sym_using] = ACTIONS(6178), - [anon_sym_COLON_COLON] = ACTIONS(6180), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6180), - [anon_sym___declspec] = ACTIONS(6178), - [anon_sym___based] = ACTIONS(6178), - [anon_sym___cdecl] = ACTIONS(6178), - [anon_sym___clrcall] = ACTIONS(6178), - [anon_sym___stdcall] = ACTIONS(6178), - [anon_sym___fastcall] = ACTIONS(6178), - [anon_sym___thiscall] = ACTIONS(6178), - [anon_sym___vectorcall] = ACTIONS(6178), - [anon_sym_signed] = ACTIONS(6178), - [anon_sym_unsigned] = ACTIONS(6178), - [anon_sym_long] = ACTIONS(6178), - [anon_sym_short] = ACTIONS(6178), - [anon_sym_LBRACK] = ACTIONS(6178), - [anon_sym_static] = ACTIONS(6178), - [anon_sym_register] = ACTIONS(6178), - [anon_sym_inline] = ACTIONS(6178), - [anon_sym___inline] = ACTIONS(6178), - [anon_sym___inline__] = ACTIONS(6178), - [anon_sym___forceinline] = ACTIONS(6178), - [anon_sym_thread_local] = ACTIONS(6178), - [anon_sym___thread] = ACTIONS(6178), - [anon_sym_const] = ACTIONS(6178), - [anon_sym_constexpr] = ACTIONS(6178), - [anon_sym_volatile] = ACTIONS(6178), - [anon_sym_restrict] = ACTIONS(6178), - [anon_sym___restrict__] = ACTIONS(6178), - [anon_sym__Atomic] = ACTIONS(6178), - [anon_sym__Noreturn] = ACTIONS(6178), - [anon_sym_noreturn] = ACTIONS(6178), - [anon_sym__Nonnull] = ACTIONS(6178), - [anon_sym_mutable] = ACTIONS(6178), - [anon_sym_constinit] = ACTIONS(6178), - [anon_sym_consteval] = ACTIONS(6178), - [anon_sym_alignas] = ACTIONS(6178), - [anon_sym__Alignas] = ACTIONS(6178), - [sym_primitive_type] = ACTIONS(6178), - [anon_sym_enum] = ACTIONS(6178), - [anon_sym_class] = ACTIONS(6178), - [anon_sym_struct] = ACTIONS(6178), - [anon_sym_union] = ACTIONS(6178), - [anon_sym_or] = ACTIONS(6178), - [anon_sym_and] = ACTIONS(6184), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6178), - [anon_sym_decltype] = ACTIONS(6178), - [anon_sym_explicit] = ACTIONS(6178), - [anon_sym_typename] = ACTIONS(6178), - [anon_sym_template] = ACTIONS(6178), - [anon_sym_operator] = ACTIONS(6178), - [anon_sym_friend] = ACTIONS(6178), - [anon_sym_concept] = ACTIONS(6178), + [2259] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2334), + [sym_identifier] = ACTIONS(5921), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5919), + [anon_sym_COMMA] = ACTIONS(5919), + [aux_sym_preproc_if_token2] = ACTIONS(5919), + [aux_sym_preproc_else_token1] = ACTIONS(5919), + [aux_sym_preproc_elif_token1] = ACTIONS(5921), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5919), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5919), + [anon_sym_LPAREN2] = ACTIONS(5919), + [anon_sym_DASH] = ACTIONS(5921), + [anon_sym_PLUS] = ACTIONS(5921), + [anon_sym_STAR] = ACTIONS(5921), + [anon_sym_SLASH] = ACTIONS(5921), + [anon_sym_PERCENT] = ACTIONS(5921), + [anon_sym_PIPE_PIPE] = ACTIONS(5919), + [anon_sym_AMP_AMP] = ACTIONS(5919), + [anon_sym_PIPE] = ACTIONS(5921), + [anon_sym_CARET] = ACTIONS(5921), + [anon_sym_AMP] = ACTIONS(5921), + [anon_sym_EQ_EQ] = ACTIONS(5919), + [anon_sym_BANG_EQ] = ACTIONS(5919), + [anon_sym_GT] = ACTIONS(5921), + [anon_sym_GT_EQ] = ACTIONS(5919), + [anon_sym_LT_EQ] = ACTIONS(5921), + [anon_sym_LT] = ACTIONS(5921), + [anon_sym_LT_LT] = ACTIONS(5921), + [anon_sym_GT_GT] = ACTIONS(5921), + [anon_sym___attribute__] = ACTIONS(5921), + [anon_sym___attribute] = ACTIONS(5921), + [anon_sym_LBRACE] = ACTIONS(5919), + [anon_sym_signed] = ACTIONS(6234), + [anon_sym_unsigned] = ACTIONS(6234), + [anon_sym_long] = ACTIONS(6234), + [anon_sym_short] = ACTIONS(6234), + [anon_sym_LBRACK] = ACTIONS(5919), + [anon_sym_EQ] = ACTIONS(5921), + [anon_sym_QMARK] = ACTIONS(5919), + [anon_sym_STAR_EQ] = ACTIONS(5919), + [anon_sym_SLASH_EQ] = ACTIONS(5919), + [anon_sym_PERCENT_EQ] = ACTIONS(5919), + [anon_sym_PLUS_EQ] = ACTIONS(5919), + [anon_sym_DASH_EQ] = ACTIONS(5919), + [anon_sym_LT_LT_EQ] = ACTIONS(5919), + [anon_sym_GT_GT_EQ] = ACTIONS(5919), + [anon_sym_AMP_EQ] = ACTIONS(5919), + [anon_sym_CARET_EQ] = ACTIONS(5919), + [anon_sym_PIPE_EQ] = ACTIONS(5919), + [anon_sym_and_eq] = ACTIONS(5921), + [anon_sym_or_eq] = ACTIONS(5921), + [anon_sym_xor_eq] = ACTIONS(5921), + [anon_sym_LT_EQ_GT] = ACTIONS(5919), + [anon_sym_or] = ACTIONS(5921), + [anon_sym_and] = ACTIONS(5921), + [anon_sym_bitor] = ACTIONS(5921), + [anon_sym_xor] = ACTIONS(5921), + [anon_sym_bitand] = ACTIONS(5921), + [anon_sym_not_eq] = ACTIONS(5921), + [anon_sym_DASH_DASH] = ACTIONS(5919), + [anon_sym_PLUS_PLUS] = ACTIONS(5919), + [anon_sym_DOT] = ACTIONS(5921), + [anon_sym_DOT_STAR] = ACTIONS(5919), + [anon_sym_DASH_GT] = ACTIONS(5919), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5921), + [anon_sym_decltype] = ACTIONS(5921), }, - [2216] = { - [sym_attribute_specifier] = STATE(1887), - [sym_enumerator_list] = STATE(2360), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6026), - [anon_sym_COMMA] = ACTIONS(6026), - [anon_sym_RPAREN] = ACTIONS(6026), - [anon_sym_LPAREN2] = ACTIONS(6026), - [anon_sym_DASH] = ACTIONS(6024), - [anon_sym_PLUS] = ACTIONS(6024), - [anon_sym_STAR] = ACTIONS(6026), - [anon_sym_SLASH] = ACTIONS(6024), - [anon_sym_PERCENT] = ACTIONS(6026), - [anon_sym_PIPE_PIPE] = ACTIONS(6026), - [anon_sym_AMP_AMP] = ACTIONS(6026), - [anon_sym_PIPE] = ACTIONS(6024), - [anon_sym_CARET] = ACTIONS(6026), - [anon_sym_AMP] = ACTIONS(6024), - [anon_sym_EQ_EQ] = ACTIONS(6026), - [anon_sym_BANG_EQ] = ACTIONS(6026), - [anon_sym_GT] = ACTIONS(6024), - [anon_sym_GT_EQ] = ACTIONS(6026), - [anon_sym_LT_EQ] = ACTIONS(6024), - [anon_sym_LT] = ACTIONS(6024), - [anon_sym_LT_LT] = ACTIONS(6026), - [anon_sym_GT_GT] = ACTIONS(6026), - [anon_sym_SEMI] = ACTIONS(6026), - [anon_sym___extension__] = ACTIONS(6026), - [anon_sym___attribute__] = ACTIONS(6014), - [anon_sym___attribute] = ACTIONS(6016), - [anon_sym_COLON] = ACTIONS(6026), - [anon_sym_LBRACE] = ACTIONS(6186), - [anon_sym_RBRACE] = ACTIONS(6026), - [anon_sym_LBRACK] = ACTIONS(6026), - [anon_sym_RBRACK] = ACTIONS(6026), - [anon_sym_const] = ACTIONS(6024), - [anon_sym_constexpr] = ACTIONS(6026), - [anon_sym_volatile] = ACTIONS(6026), - [anon_sym_restrict] = ACTIONS(6026), - [anon_sym___restrict__] = ACTIONS(6026), - [anon_sym__Atomic] = ACTIONS(6026), - [anon_sym__Noreturn] = ACTIONS(6026), - [anon_sym_noreturn] = ACTIONS(6026), - [anon_sym__Nonnull] = ACTIONS(6026), - [anon_sym_mutable] = ACTIONS(6026), - [anon_sym_constinit] = ACTIONS(6026), - [anon_sym_consteval] = ACTIONS(6026), - [anon_sym_alignas] = ACTIONS(6026), - [anon_sym__Alignas] = ACTIONS(6026), - [anon_sym_QMARK] = ACTIONS(6026), - [anon_sym_LT_EQ_GT] = ACTIONS(6026), - [anon_sym_or] = ACTIONS(6026), - [anon_sym_and] = ACTIONS(6026), - [anon_sym_bitor] = ACTIONS(6026), - [anon_sym_xor] = ACTIONS(6026), - [anon_sym_bitand] = ACTIONS(6026), - [anon_sym_not_eq] = ACTIONS(6026), - [anon_sym_DASH_DASH] = ACTIONS(6026), - [anon_sym_PLUS_PLUS] = ACTIONS(6026), - [anon_sym_DOT] = ACTIONS(6024), - [anon_sym_DOT_STAR] = ACTIONS(6026), - [anon_sym_DASH_GT] = ACTIONS(6026), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6026), - [anon_sym_decltype] = ACTIONS(6026), - [anon_sym_final] = ACTIONS(6026), - [anon_sym_override] = ACTIONS(6026), - [anon_sym_requires] = ACTIONS(6026), + [2260] = { + [sym_identifier] = ACTIONS(5788), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5790), + [anon_sym_COMMA] = ACTIONS(5790), + [anon_sym_RPAREN] = ACTIONS(5790), + [aux_sym_preproc_if_token2] = ACTIONS(5790), + [aux_sym_preproc_else_token1] = ACTIONS(5790), + [aux_sym_preproc_elif_token1] = ACTIONS(5788), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5790), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5790), + [anon_sym_LPAREN2] = ACTIONS(5790), + [anon_sym_DASH] = ACTIONS(5788), + [anon_sym_PLUS] = ACTIONS(5788), + [anon_sym_STAR] = ACTIONS(5788), + [anon_sym_SLASH] = ACTIONS(5788), + [anon_sym_PERCENT] = ACTIONS(5788), + [anon_sym_PIPE_PIPE] = ACTIONS(5790), + [anon_sym_AMP_AMP] = ACTIONS(5790), + [anon_sym_PIPE] = ACTIONS(5788), + [anon_sym_CARET] = ACTIONS(5788), + [anon_sym_AMP] = ACTIONS(5788), + [anon_sym_EQ_EQ] = ACTIONS(5790), + [anon_sym_BANG_EQ] = ACTIONS(5790), + [anon_sym_GT] = ACTIONS(5788), + [anon_sym_GT_EQ] = ACTIONS(5790), + [anon_sym_LT_EQ] = ACTIONS(5788), + [anon_sym_LT] = ACTIONS(5788), + [anon_sym_LT_LT] = ACTIONS(5788), + [anon_sym_GT_GT] = ACTIONS(5788), + [anon_sym_SEMI] = ACTIONS(5790), + [anon_sym___attribute__] = ACTIONS(5788), + [anon_sym___attribute] = ACTIONS(5788), + [anon_sym_COLON] = ACTIONS(5790), + [anon_sym_LBRACE] = ACTIONS(5790), + [anon_sym_RBRACE] = ACTIONS(5790), + [anon_sym_LBRACK] = ACTIONS(5790), + [anon_sym_RBRACK] = ACTIONS(5790), + [anon_sym_EQ] = ACTIONS(5788), + [anon_sym_QMARK] = ACTIONS(5790), + [anon_sym_STAR_EQ] = ACTIONS(5790), + [anon_sym_SLASH_EQ] = ACTIONS(5790), + [anon_sym_PERCENT_EQ] = ACTIONS(5790), + [anon_sym_PLUS_EQ] = ACTIONS(5790), + [anon_sym_DASH_EQ] = ACTIONS(5790), + [anon_sym_LT_LT_EQ] = ACTIONS(5790), + [anon_sym_GT_GT_EQ] = ACTIONS(5790), + [anon_sym_AMP_EQ] = ACTIONS(5790), + [anon_sym_CARET_EQ] = ACTIONS(5790), + [anon_sym_PIPE_EQ] = ACTIONS(5790), + [anon_sym_and_eq] = ACTIONS(5788), + [anon_sym_or_eq] = ACTIONS(5788), + [anon_sym_xor_eq] = ACTIONS(5788), + [anon_sym_LT_EQ_GT] = ACTIONS(5790), + [anon_sym_or] = ACTIONS(5788), + [anon_sym_and] = ACTIONS(5788), + [anon_sym_bitor] = ACTIONS(5788), + [anon_sym_xor] = ACTIONS(5788), + [anon_sym_bitand] = ACTIONS(5788), + [anon_sym_not_eq] = ACTIONS(5788), + [anon_sym_DASH_DASH] = ACTIONS(5790), + [anon_sym_PLUS_PLUS] = ACTIONS(5790), + [anon_sym_DOT] = ACTIONS(5788), + [anon_sym_DOT_STAR] = ACTIONS(5790), + [anon_sym_DASH_GT] = ACTIONS(5790), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5788), + [anon_sym_decltype] = ACTIONS(5788), }, - [2217] = { - [sym_argument_list] = STATE(2481), - [sym_initializer_list] = STATE(2481), - [sym_identifier] = ACTIONS(6188), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6190), - [anon_sym_COMMA] = ACTIONS(6190), - [anon_sym_RPAREN] = ACTIONS(6190), - [aux_sym_preproc_if_token2] = ACTIONS(6190), - [aux_sym_preproc_else_token1] = ACTIONS(6190), - [aux_sym_preproc_elif_token1] = ACTIONS(6188), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6190), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6190), - [anon_sym_LPAREN2] = ACTIONS(5827), - [anon_sym_DASH] = ACTIONS(6188), - [anon_sym_PLUS] = ACTIONS(6188), - [anon_sym_STAR] = ACTIONS(6188), - [anon_sym_SLASH] = ACTIONS(6188), - [anon_sym_PERCENT] = ACTIONS(6188), - [anon_sym_PIPE_PIPE] = ACTIONS(6190), - [anon_sym_AMP_AMP] = ACTIONS(6190), - [anon_sym_PIPE] = ACTIONS(6188), - [anon_sym_CARET] = ACTIONS(6188), - [anon_sym_AMP] = ACTIONS(6188), - [anon_sym_EQ_EQ] = ACTIONS(6190), - [anon_sym_BANG_EQ] = ACTIONS(6190), - [anon_sym_GT] = ACTIONS(6188), - [anon_sym_GT_EQ] = ACTIONS(6190), - [anon_sym_LT_EQ] = ACTIONS(6188), - [anon_sym_LT] = ACTIONS(6188), - [anon_sym_LT_LT] = ACTIONS(6188), - [anon_sym_GT_GT] = ACTIONS(6188), - [anon_sym_SEMI] = ACTIONS(6190), - [anon_sym___attribute__] = ACTIONS(6188), - [anon_sym___attribute] = ACTIONS(6188), - [anon_sym_COLON] = ACTIONS(6190), - [anon_sym_LBRACE] = ACTIONS(1954), - [anon_sym_RBRACE] = ACTIONS(6190), - [anon_sym_LBRACK] = ACTIONS(6190), - [anon_sym_RBRACK] = ACTIONS(6190), - [anon_sym_EQ] = ACTIONS(6188), - [anon_sym_QMARK] = ACTIONS(6190), - [anon_sym_STAR_EQ] = ACTIONS(6190), - [anon_sym_SLASH_EQ] = ACTIONS(6190), - [anon_sym_PERCENT_EQ] = ACTIONS(6190), - [anon_sym_PLUS_EQ] = ACTIONS(6190), - [anon_sym_DASH_EQ] = ACTIONS(6190), - [anon_sym_LT_LT_EQ] = ACTIONS(6190), - [anon_sym_GT_GT_EQ] = ACTIONS(6190), - [anon_sym_AMP_EQ] = ACTIONS(6190), - [anon_sym_CARET_EQ] = ACTIONS(6190), - [anon_sym_PIPE_EQ] = ACTIONS(6190), - [anon_sym_and_eq] = ACTIONS(6188), - [anon_sym_or_eq] = ACTIONS(6188), - [anon_sym_xor_eq] = ACTIONS(6188), - [anon_sym_LT_EQ_GT] = ACTIONS(6190), - [anon_sym_or] = ACTIONS(6188), - [anon_sym_and] = ACTIONS(6188), - [anon_sym_bitor] = ACTIONS(6188), - [anon_sym_xor] = ACTIONS(6188), - [anon_sym_bitand] = ACTIONS(6188), - [anon_sym_not_eq] = ACTIONS(6188), - [anon_sym_DASH_DASH] = ACTIONS(6190), - [anon_sym_PLUS_PLUS] = ACTIONS(6190), - [anon_sym_DOT] = ACTIONS(6188), - [anon_sym_DOT_STAR] = ACTIONS(6190), - [anon_sym_DASH_GT] = ACTIONS(6190), + [2261] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2334), + [sym_identifier] = ACTIONS(5931), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5929), + [anon_sym_COMMA] = ACTIONS(5929), + [aux_sym_preproc_if_token2] = ACTIONS(5929), + [aux_sym_preproc_else_token1] = ACTIONS(5929), + [aux_sym_preproc_elif_token1] = ACTIONS(5931), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5929), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5929), + [anon_sym_LPAREN2] = ACTIONS(5929), + [anon_sym_DASH] = ACTIONS(5931), + [anon_sym_PLUS] = ACTIONS(5931), + [anon_sym_STAR] = ACTIONS(5931), + [anon_sym_SLASH] = ACTIONS(5931), + [anon_sym_PERCENT] = ACTIONS(5931), + [anon_sym_PIPE_PIPE] = ACTIONS(5929), + [anon_sym_AMP_AMP] = ACTIONS(5929), + [anon_sym_PIPE] = ACTIONS(5931), + [anon_sym_CARET] = ACTIONS(5931), + [anon_sym_AMP] = ACTIONS(5931), + [anon_sym_EQ_EQ] = ACTIONS(5929), + [anon_sym_BANG_EQ] = ACTIONS(5929), + [anon_sym_GT] = ACTIONS(5931), + [anon_sym_GT_EQ] = ACTIONS(5929), + [anon_sym_LT_EQ] = ACTIONS(5931), + [anon_sym_LT] = ACTIONS(5931), + [anon_sym_LT_LT] = ACTIONS(5931), + [anon_sym_GT_GT] = ACTIONS(5931), + [anon_sym___attribute__] = ACTIONS(5931), + [anon_sym___attribute] = ACTIONS(5931), + [anon_sym_LBRACE] = ACTIONS(5929), + [anon_sym_signed] = ACTIONS(6234), + [anon_sym_unsigned] = ACTIONS(6234), + [anon_sym_long] = ACTIONS(6234), + [anon_sym_short] = ACTIONS(6234), + [anon_sym_LBRACK] = ACTIONS(5929), + [anon_sym_EQ] = ACTIONS(5931), + [anon_sym_QMARK] = ACTIONS(5929), + [anon_sym_STAR_EQ] = ACTIONS(5929), + [anon_sym_SLASH_EQ] = ACTIONS(5929), + [anon_sym_PERCENT_EQ] = ACTIONS(5929), + [anon_sym_PLUS_EQ] = ACTIONS(5929), + [anon_sym_DASH_EQ] = ACTIONS(5929), + [anon_sym_LT_LT_EQ] = ACTIONS(5929), + [anon_sym_GT_GT_EQ] = ACTIONS(5929), + [anon_sym_AMP_EQ] = ACTIONS(5929), + [anon_sym_CARET_EQ] = ACTIONS(5929), + [anon_sym_PIPE_EQ] = ACTIONS(5929), + [anon_sym_and_eq] = ACTIONS(5931), + [anon_sym_or_eq] = ACTIONS(5931), + [anon_sym_xor_eq] = ACTIONS(5931), + [anon_sym_LT_EQ_GT] = ACTIONS(5929), + [anon_sym_or] = ACTIONS(5931), + [anon_sym_and] = ACTIONS(5931), + [anon_sym_bitor] = ACTIONS(5931), + [anon_sym_xor] = ACTIONS(5931), + [anon_sym_bitand] = ACTIONS(5931), + [anon_sym_not_eq] = ACTIONS(5931), + [anon_sym_DASH_DASH] = ACTIONS(5929), + [anon_sym_PLUS_PLUS] = ACTIONS(5929), + [anon_sym_DOT] = ACTIONS(5931), + [anon_sym_DOT_STAR] = ACTIONS(5929), + [anon_sym_DASH_GT] = ACTIONS(5929), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5931), + [anon_sym_decltype] = ACTIONS(5931), + }, + [2262] = { + [sym_identifier] = ACTIONS(5776), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5778), + [anon_sym_COMMA] = ACTIONS(5778), + [anon_sym_RPAREN] = ACTIONS(5778), + [aux_sym_preproc_if_token2] = ACTIONS(5778), + [aux_sym_preproc_else_token1] = ACTIONS(5778), + [aux_sym_preproc_elif_token1] = ACTIONS(5776), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5778), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5778), + [anon_sym_LPAREN2] = ACTIONS(5778), + [anon_sym_DASH] = ACTIONS(5776), + [anon_sym_PLUS] = ACTIONS(5776), + [anon_sym_STAR] = ACTIONS(5776), + [anon_sym_SLASH] = ACTIONS(5776), + [anon_sym_PERCENT] = ACTIONS(5776), + [anon_sym_PIPE_PIPE] = ACTIONS(5778), + [anon_sym_AMP_AMP] = ACTIONS(5778), + [anon_sym_PIPE] = ACTIONS(5776), + [anon_sym_CARET] = ACTIONS(5776), + [anon_sym_AMP] = ACTIONS(5776), + [anon_sym_EQ_EQ] = ACTIONS(5778), + [anon_sym_BANG_EQ] = ACTIONS(5778), + [anon_sym_GT] = ACTIONS(5776), + [anon_sym_GT_EQ] = ACTIONS(5778), + [anon_sym_LT_EQ] = ACTIONS(5776), + [anon_sym_LT] = ACTIONS(5776), + [anon_sym_LT_LT] = ACTIONS(5776), + [anon_sym_GT_GT] = ACTIONS(5776), + [anon_sym_SEMI] = ACTIONS(5778), + [anon_sym___attribute__] = ACTIONS(5776), + [anon_sym___attribute] = ACTIONS(5776), + [anon_sym_COLON] = ACTIONS(5778), + [anon_sym_LBRACE] = ACTIONS(5778), + [anon_sym_RBRACE] = ACTIONS(5778), + [anon_sym_LBRACK] = ACTIONS(5778), + [anon_sym_RBRACK] = ACTIONS(5778), + [anon_sym_EQ] = ACTIONS(5776), + [anon_sym_QMARK] = ACTIONS(5778), + [anon_sym_STAR_EQ] = ACTIONS(5778), + [anon_sym_SLASH_EQ] = ACTIONS(5778), + [anon_sym_PERCENT_EQ] = ACTIONS(5778), + [anon_sym_PLUS_EQ] = ACTIONS(5778), + [anon_sym_DASH_EQ] = ACTIONS(5778), + [anon_sym_LT_LT_EQ] = ACTIONS(5778), + [anon_sym_GT_GT_EQ] = ACTIONS(5778), + [anon_sym_AMP_EQ] = ACTIONS(5778), + [anon_sym_CARET_EQ] = ACTIONS(5778), + [anon_sym_PIPE_EQ] = ACTIONS(5778), + [anon_sym_and_eq] = ACTIONS(5776), + [anon_sym_or_eq] = ACTIONS(5776), + [anon_sym_xor_eq] = ACTIONS(5776), + [anon_sym_LT_EQ_GT] = ACTIONS(5778), + [anon_sym_or] = ACTIONS(5776), + [anon_sym_and] = ACTIONS(5776), + [anon_sym_bitor] = ACTIONS(5776), + [anon_sym_xor] = ACTIONS(5776), + [anon_sym_bitand] = ACTIONS(5776), + [anon_sym_not_eq] = ACTIONS(5776), + [anon_sym_DASH_DASH] = ACTIONS(5778), + [anon_sym_PLUS_PLUS] = ACTIONS(5778), + [anon_sym_DOT] = ACTIONS(5776), + [anon_sym_DOT_STAR] = ACTIONS(5778), + [anon_sym_DASH_GT] = ACTIONS(5778), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5776), + [anon_sym_decltype] = ACTIONS(5776), + }, + [2263] = { + [sym_identifier] = ACTIONS(5780), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5782), + [anon_sym_COMMA] = ACTIONS(5782), + [anon_sym_RPAREN] = ACTIONS(5782), + [aux_sym_preproc_if_token2] = ACTIONS(5782), + [aux_sym_preproc_else_token1] = ACTIONS(5782), + [aux_sym_preproc_elif_token1] = ACTIONS(5780), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5782), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5782), + [anon_sym_LPAREN2] = ACTIONS(5782), + [anon_sym_DASH] = ACTIONS(5780), + [anon_sym_PLUS] = ACTIONS(5780), + [anon_sym_STAR] = ACTIONS(5780), + [anon_sym_SLASH] = ACTIONS(5780), + [anon_sym_PERCENT] = ACTIONS(5780), + [anon_sym_PIPE_PIPE] = ACTIONS(5782), + [anon_sym_AMP_AMP] = ACTIONS(5782), + [anon_sym_PIPE] = ACTIONS(5780), + [anon_sym_CARET] = ACTIONS(5780), + [anon_sym_AMP] = ACTIONS(5780), + [anon_sym_EQ_EQ] = ACTIONS(5782), + [anon_sym_BANG_EQ] = ACTIONS(5782), + [anon_sym_GT] = ACTIONS(5780), + [anon_sym_GT_EQ] = ACTIONS(5782), + [anon_sym_LT_EQ] = ACTIONS(5780), + [anon_sym_LT] = ACTIONS(5780), + [anon_sym_LT_LT] = ACTIONS(5780), + [anon_sym_GT_GT] = ACTIONS(5780), + [anon_sym_SEMI] = ACTIONS(5782), + [anon_sym___attribute__] = ACTIONS(5780), + [anon_sym___attribute] = ACTIONS(5780), + [anon_sym_COLON] = ACTIONS(5782), + [anon_sym_LBRACE] = ACTIONS(5782), + [anon_sym_RBRACE] = ACTIONS(5782), + [anon_sym_LBRACK] = ACTIONS(5782), + [anon_sym_RBRACK] = ACTIONS(5782), + [anon_sym_EQ] = ACTIONS(5780), + [anon_sym_QMARK] = ACTIONS(5782), + [anon_sym_STAR_EQ] = ACTIONS(5782), + [anon_sym_SLASH_EQ] = ACTIONS(5782), + [anon_sym_PERCENT_EQ] = ACTIONS(5782), + [anon_sym_PLUS_EQ] = ACTIONS(5782), + [anon_sym_DASH_EQ] = ACTIONS(5782), + [anon_sym_LT_LT_EQ] = ACTIONS(5782), + [anon_sym_GT_GT_EQ] = ACTIONS(5782), + [anon_sym_AMP_EQ] = ACTIONS(5782), + [anon_sym_CARET_EQ] = ACTIONS(5782), + [anon_sym_PIPE_EQ] = ACTIONS(5782), + [anon_sym_and_eq] = ACTIONS(5780), + [anon_sym_or_eq] = ACTIONS(5780), + [anon_sym_xor_eq] = ACTIONS(5780), + [anon_sym_LT_EQ_GT] = ACTIONS(5782), + [anon_sym_or] = ACTIONS(5780), + [anon_sym_and] = ACTIONS(5780), + [anon_sym_bitor] = ACTIONS(5780), + [anon_sym_xor] = ACTIONS(5780), + [anon_sym_bitand] = ACTIONS(5780), + [anon_sym_not_eq] = ACTIONS(5780), + [anon_sym_DASH_DASH] = ACTIONS(5782), + [anon_sym_PLUS_PLUS] = ACTIONS(5782), + [anon_sym_DOT] = ACTIONS(5780), + [anon_sym_DOT_STAR] = ACTIONS(5782), + [anon_sym_DASH_GT] = ACTIONS(5782), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5780), + [anon_sym_decltype] = ACTIONS(5780), + }, + [2264] = { + [sym_identifier] = ACTIONS(5784), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5786), + [anon_sym_COMMA] = ACTIONS(5786), + [anon_sym_RPAREN] = ACTIONS(5786), + [aux_sym_preproc_if_token2] = ACTIONS(5786), + [aux_sym_preproc_else_token1] = ACTIONS(5786), + [aux_sym_preproc_elif_token1] = ACTIONS(5784), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5786), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5786), + [anon_sym_LPAREN2] = ACTIONS(5786), + [anon_sym_DASH] = ACTIONS(5784), + [anon_sym_PLUS] = ACTIONS(5784), + [anon_sym_STAR] = ACTIONS(5784), + [anon_sym_SLASH] = ACTIONS(5784), + [anon_sym_PERCENT] = ACTIONS(5784), + [anon_sym_PIPE_PIPE] = ACTIONS(5786), + [anon_sym_AMP_AMP] = ACTIONS(5786), + [anon_sym_PIPE] = ACTIONS(5784), + [anon_sym_CARET] = ACTIONS(5784), + [anon_sym_AMP] = ACTIONS(5784), + [anon_sym_EQ_EQ] = ACTIONS(5786), + [anon_sym_BANG_EQ] = ACTIONS(5786), + [anon_sym_GT] = ACTIONS(5784), + [anon_sym_GT_EQ] = ACTIONS(5786), + [anon_sym_LT_EQ] = ACTIONS(5784), + [anon_sym_LT] = ACTIONS(5784), + [anon_sym_LT_LT] = ACTIONS(5784), + [anon_sym_GT_GT] = ACTIONS(5784), + [anon_sym_SEMI] = ACTIONS(5786), + [anon_sym___attribute__] = ACTIONS(5784), + [anon_sym___attribute] = ACTIONS(5784), + [anon_sym_COLON] = ACTIONS(5786), + [anon_sym_LBRACE] = ACTIONS(5786), + [anon_sym_RBRACE] = ACTIONS(5786), + [anon_sym_LBRACK] = ACTIONS(5786), + [anon_sym_RBRACK] = ACTIONS(5786), + [anon_sym_EQ] = ACTIONS(5784), + [anon_sym_QMARK] = ACTIONS(5786), + [anon_sym_STAR_EQ] = ACTIONS(5786), + [anon_sym_SLASH_EQ] = ACTIONS(5786), + [anon_sym_PERCENT_EQ] = ACTIONS(5786), + [anon_sym_PLUS_EQ] = ACTIONS(5786), + [anon_sym_DASH_EQ] = ACTIONS(5786), + [anon_sym_LT_LT_EQ] = ACTIONS(5786), + [anon_sym_GT_GT_EQ] = ACTIONS(5786), + [anon_sym_AMP_EQ] = ACTIONS(5786), + [anon_sym_CARET_EQ] = ACTIONS(5786), + [anon_sym_PIPE_EQ] = ACTIONS(5786), + [anon_sym_and_eq] = ACTIONS(5784), + [anon_sym_or_eq] = ACTIONS(5784), + [anon_sym_xor_eq] = ACTIONS(5784), + [anon_sym_LT_EQ_GT] = ACTIONS(5786), + [anon_sym_or] = ACTIONS(5784), + [anon_sym_and] = ACTIONS(5784), + [anon_sym_bitor] = ACTIONS(5784), + [anon_sym_xor] = ACTIONS(5784), + [anon_sym_bitand] = ACTIONS(5784), + [anon_sym_not_eq] = ACTIONS(5784), + [anon_sym_DASH_DASH] = ACTIONS(5786), + [anon_sym_PLUS_PLUS] = ACTIONS(5786), + [anon_sym_DOT] = ACTIONS(5784), + [anon_sym_DOT_STAR] = ACTIONS(5786), + [anon_sym_DASH_GT] = ACTIONS(5786), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5784), + [anon_sym_decltype] = ACTIONS(5784), + }, + [2265] = { + [sym_identifier] = ACTIONS(5006), + [anon_sym_LPAREN2] = ACTIONS(5008), + [anon_sym_TILDE] = ACTIONS(5008), + [anon_sym_STAR] = ACTIONS(5008), + [anon_sym_PIPE_PIPE] = ACTIONS(5008), + [anon_sym_AMP_AMP] = ACTIONS(5008), + [anon_sym_AMP] = ACTIONS(5006), + [anon_sym___extension__] = ACTIONS(5006), + [anon_sym_virtual] = ACTIONS(5006), + [anon_sym_extern] = ACTIONS(5006), + [anon_sym___attribute__] = ACTIONS(5006), + [anon_sym___attribute] = ACTIONS(5006), + [anon_sym_using] = ACTIONS(5006), + [anon_sym_COLON_COLON] = ACTIONS(5008), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5008), + [anon_sym___declspec] = ACTIONS(5006), + [anon_sym___based] = ACTIONS(5006), + [anon_sym___cdecl] = ACTIONS(5006), + [anon_sym___clrcall] = ACTIONS(5006), + [anon_sym___stdcall] = ACTIONS(5006), + [anon_sym___fastcall] = ACTIONS(5006), + [anon_sym___thiscall] = ACTIONS(5006), + [anon_sym___vectorcall] = ACTIONS(5006), + [anon_sym_signed] = ACTIONS(5006), + [anon_sym_unsigned] = ACTIONS(5006), + [anon_sym_long] = ACTIONS(5006), + [anon_sym_short] = ACTIONS(5006), + [anon_sym_LBRACK] = ACTIONS(5006), + [anon_sym_static] = ACTIONS(5006), + [anon_sym_register] = ACTIONS(5006), + [anon_sym_inline] = ACTIONS(5006), + [anon_sym___inline] = ACTIONS(5006), + [anon_sym___inline__] = ACTIONS(5006), + [anon_sym___forceinline] = ACTIONS(5006), + [anon_sym_thread_local] = ACTIONS(5006), + [anon_sym___thread] = ACTIONS(5006), + [anon_sym_const] = ACTIONS(5006), + [anon_sym_constexpr] = ACTIONS(5006), + [anon_sym_volatile] = ACTIONS(5006), + [anon_sym_restrict] = ACTIONS(5006), + [anon_sym___restrict__] = ACTIONS(5006), + [anon_sym__Atomic] = ACTIONS(5006), + [anon_sym__Noreturn] = ACTIONS(5006), + [anon_sym_noreturn] = ACTIONS(5006), + [anon_sym__Nonnull] = ACTIONS(5006), + [anon_sym_mutable] = ACTIONS(5006), + [anon_sym_constinit] = ACTIONS(5006), + [anon_sym_consteval] = ACTIONS(5006), + [anon_sym_alignas] = ACTIONS(5006), + [anon_sym__Alignas] = ACTIONS(5006), + [sym_primitive_type] = ACTIONS(5006), + [anon_sym_enum] = ACTIONS(5006), + [anon_sym_class] = ACTIONS(5006), + [anon_sym_struct] = ACTIONS(5006), + [anon_sym_union] = ACTIONS(5006), + [anon_sym_or] = ACTIONS(5006), + [anon_sym_and] = ACTIONS(5006), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5006), + [anon_sym_decltype] = ACTIONS(5006), + [anon_sym_explicit] = ACTIONS(5006), + [anon_sym_typename] = ACTIONS(5006), + [anon_sym_template] = ACTIONS(5006), + [anon_sym_operator] = ACTIONS(5006), + [anon_sym_friend] = ACTIONS(5006), + [anon_sym_concept] = ACTIONS(5006), + }, + [2266] = { + [sym_string_literal] = STATE(2657), + [sym_template_argument_list] = STATE(3605), + [sym_raw_string_literal] = STATE(2657), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4166), + [anon_sym_COMMA] = ACTIONS(4166), + [anon_sym_LPAREN2] = ACTIONS(4166), + [anon_sym_DASH] = ACTIONS(4174), + [anon_sym_PLUS] = ACTIONS(4174), + [anon_sym_STAR] = ACTIONS(4174), + [anon_sym_SLASH] = ACTIONS(4174), + [anon_sym_PERCENT] = ACTIONS(4174), + [anon_sym_PIPE_PIPE] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4166), + [anon_sym_PIPE] = ACTIONS(4174), + [anon_sym_CARET] = ACTIONS(4174), + [anon_sym_AMP] = ACTIONS(4174), + [anon_sym_EQ_EQ] = ACTIONS(4166), + [anon_sym_BANG_EQ] = ACTIONS(4166), + [anon_sym_GT] = ACTIONS(4174), + [anon_sym_GT_EQ] = ACTIONS(4166), + [anon_sym_LT_EQ] = ACTIONS(4174), + [anon_sym_LT] = ACTIONS(5085), + [anon_sym_LT_LT] = ACTIONS(4174), + [anon_sym_GT_GT] = ACTIONS(4174), + [anon_sym_COLON] = ACTIONS(4174), + [anon_sym_COLON_COLON] = ACTIONS(4187), + [anon_sym_LBRACE] = ACTIONS(4192), + [anon_sym_LBRACK] = ACTIONS(4166), + [anon_sym_EQ] = ACTIONS(6236), + [anon_sym_QMARK] = ACTIONS(4166), + [anon_sym_STAR_EQ] = ACTIONS(6238), + [anon_sym_SLASH_EQ] = ACTIONS(6238), + [anon_sym_PERCENT_EQ] = ACTIONS(6238), + [anon_sym_PLUS_EQ] = ACTIONS(6238), + [anon_sym_DASH_EQ] = ACTIONS(6238), + [anon_sym_LT_LT_EQ] = ACTIONS(6238), + [anon_sym_GT_GT_EQ] = ACTIONS(6238), + [anon_sym_AMP_EQ] = ACTIONS(6238), + [anon_sym_CARET_EQ] = ACTIONS(6238), + [anon_sym_PIPE_EQ] = ACTIONS(6238), + [anon_sym_and_eq] = ACTIONS(6238), + [anon_sym_or_eq] = ACTIONS(6238), + [anon_sym_xor_eq] = ACTIONS(6238), + [anon_sym_LT_EQ_GT] = ACTIONS(4166), + [anon_sym_or] = ACTIONS(4174), + [anon_sym_and] = ACTIONS(4174), + [anon_sym_bitor] = ACTIONS(4166), + [anon_sym_xor] = ACTIONS(4174), + [anon_sym_bitand] = ACTIONS(4166), + [anon_sym_not_eq] = ACTIONS(4166), + [anon_sym_DASH_DASH] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4174), + [anon_sym_DOT_STAR] = ACTIONS(4166), + [anon_sym_DASH_GT] = ACTIONS(4166), + [anon_sym_L_DQUOTE] = ACTIONS(3631), + [anon_sym_u_DQUOTE] = ACTIONS(3631), + [anon_sym_U_DQUOTE] = ACTIONS(3631), + [anon_sym_u8_DQUOTE] = ACTIONS(3631), + [anon_sym_DQUOTE] = ACTIONS(3631), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3635), + [anon_sym_LR_DQUOTE] = ACTIONS(3635), + [anon_sym_uR_DQUOTE] = ACTIONS(3635), + [anon_sym_UR_DQUOTE] = ACTIONS(3635), + [anon_sym_u8R_DQUOTE] = ACTIONS(3635), + }, + [2267] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(5479), + [anon_sym_COMMA] = ACTIONS(5479), + [anon_sym_RPAREN] = ACTIONS(5479), + [anon_sym_LPAREN2] = ACTIONS(5479), + [anon_sym_DASH] = ACTIONS(5477), + [anon_sym_PLUS] = ACTIONS(5477), + [anon_sym_STAR] = ACTIONS(5477), + [anon_sym_SLASH] = ACTIONS(5477), + [anon_sym_PERCENT] = ACTIONS(5477), + [anon_sym_PIPE_PIPE] = ACTIONS(5479), + [anon_sym_AMP_AMP] = ACTIONS(5479), + [anon_sym_PIPE] = ACTIONS(5477), + [anon_sym_CARET] = ACTIONS(5477), + [anon_sym_AMP] = ACTIONS(5477), + [anon_sym_EQ_EQ] = ACTIONS(5479), + [anon_sym_BANG_EQ] = ACTIONS(5479), + [anon_sym_GT] = ACTIONS(5477), + [anon_sym_GT_EQ] = ACTIONS(5479), + [anon_sym_LT_EQ] = ACTIONS(5477), + [anon_sym_LT] = ACTIONS(5477), + [anon_sym_LT_LT] = ACTIONS(5477), + [anon_sym_GT_GT] = ACTIONS(5477), + [anon_sym_SEMI] = ACTIONS(5479), + [anon_sym_COLON] = ACTIONS(5479), + [anon_sym_RBRACE] = ACTIONS(5479), + [anon_sym_LBRACK] = ACTIONS(5479), + [anon_sym_RBRACK] = ACTIONS(5479), + [anon_sym_EQ] = ACTIONS(5477), + [anon_sym_QMARK] = ACTIONS(5479), + [anon_sym_STAR_EQ] = ACTIONS(5479), + [anon_sym_SLASH_EQ] = ACTIONS(5479), + [anon_sym_PERCENT_EQ] = ACTIONS(5479), + [anon_sym_PLUS_EQ] = ACTIONS(5479), + [anon_sym_DASH_EQ] = ACTIONS(5479), + [anon_sym_LT_LT_EQ] = ACTIONS(5479), + [anon_sym_GT_GT_EQ] = ACTIONS(5479), + [anon_sym_AMP_EQ] = ACTIONS(5479), + [anon_sym_CARET_EQ] = ACTIONS(5479), + [anon_sym_PIPE_EQ] = ACTIONS(5479), + [anon_sym_and_eq] = ACTIONS(5477), + [anon_sym_or_eq] = ACTIONS(5477), + [anon_sym_xor_eq] = ACTIONS(5477), + [anon_sym_LT_EQ_GT] = ACTIONS(5479), + [anon_sym_or] = ACTIONS(5477), + [anon_sym_and] = ACTIONS(5477), + [anon_sym_bitor] = ACTIONS(5477), + [anon_sym_xor] = ACTIONS(5477), + [anon_sym_bitand] = ACTIONS(5477), + [anon_sym_not_eq] = ACTIONS(5477), + [anon_sym_DASH_DASH] = ACTIONS(5479), + [anon_sym_PLUS_PLUS] = ACTIONS(5479), + [anon_sym_DOT] = ACTIONS(5477), + [anon_sym_DOT_STAR] = ACTIONS(5479), + [anon_sym_DASH_GT] = ACTIONS(5479), + [anon_sym_L_DQUOTE] = ACTIONS(5479), + [anon_sym_u_DQUOTE] = ACTIONS(5479), + [anon_sym_U_DQUOTE] = ACTIONS(5479), + [anon_sym_u8_DQUOTE] = ACTIONS(5479), + [anon_sym_DQUOTE] = ACTIONS(5479), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5479), + [anon_sym_LR_DQUOTE] = ACTIONS(5479), + [anon_sym_uR_DQUOTE] = ACTIONS(5479), + [anon_sym_UR_DQUOTE] = ACTIONS(5479), + [anon_sym_u8R_DQUOTE] = ACTIONS(5479), + [sym_literal_suffix] = ACTIONS(5477), + }, + [2268] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(5968), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5966), + [anon_sym_COMMA] = ACTIONS(5966), + [aux_sym_preproc_if_token2] = ACTIONS(5966), + [aux_sym_preproc_else_token1] = ACTIONS(5966), + [aux_sym_preproc_elif_token1] = ACTIONS(5968), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5966), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5966), + [anon_sym_LPAREN2] = ACTIONS(5966), + [anon_sym_DASH] = ACTIONS(5968), + [anon_sym_PLUS] = ACTIONS(5968), + [anon_sym_STAR] = ACTIONS(5968), + [anon_sym_SLASH] = ACTIONS(5968), + [anon_sym_PERCENT] = ACTIONS(5968), + [anon_sym_PIPE_PIPE] = ACTIONS(5966), + [anon_sym_AMP_AMP] = ACTIONS(5966), + [anon_sym_PIPE] = ACTIONS(5968), + [anon_sym_CARET] = ACTIONS(5968), + [anon_sym_AMP] = ACTIONS(5968), + [anon_sym_EQ_EQ] = ACTIONS(5966), + [anon_sym_BANG_EQ] = ACTIONS(5966), + [anon_sym_GT] = ACTIONS(5968), + [anon_sym_GT_EQ] = ACTIONS(5966), + [anon_sym_LT_EQ] = ACTIONS(5968), + [anon_sym_LT] = ACTIONS(5968), + [anon_sym_LT_LT] = ACTIONS(5968), + [anon_sym_GT_GT] = ACTIONS(5968), + [anon_sym___attribute__] = ACTIONS(5968), + [anon_sym___attribute] = ACTIONS(5968), + [anon_sym_LBRACE] = ACTIONS(5966), + [anon_sym_signed] = ACTIONS(6240), + [anon_sym_unsigned] = ACTIONS(6240), + [anon_sym_long] = ACTIONS(6240), + [anon_sym_short] = ACTIONS(6240), + [anon_sym_LBRACK] = ACTIONS(5966), + [anon_sym_EQ] = ACTIONS(5968), + [anon_sym_QMARK] = ACTIONS(5966), + [anon_sym_STAR_EQ] = ACTIONS(5966), + [anon_sym_SLASH_EQ] = ACTIONS(5966), + [anon_sym_PERCENT_EQ] = ACTIONS(5966), + [anon_sym_PLUS_EQ] = ACTIONS(5966), + [anon_sym_DASH_EQ] = ACTIONS(5966), + [anon_sym_LT_LT_EQ] = ACTIONS(5966), + [anon_sym_GT_GT_EQ] = ACTIONS(5966), + [anon_sym_AMP_EQ] = ACTIONS(5966), + [anon_sym_CARET_EQ] = ACTIONS(5966), + [anon_sym_PIPE_EQ] = ACTIONS(5966), + [anon_sym_and_eq] = ACTIONS(5968), + [anon_sym_or_eq] = ACTIONS(5968), + [anon_sym_xor_eq] = ACTIONS(5968), + [anon_sym_LT_EQ_GT] = ACTIONS(5966), + [anon_sym_or] = ACTIONS(5968), + [anon_sym_and] = ACTIONS(5968), + [anon_sym_bitor] = ACTIONS(5968), + [anon_sym_xor] = ACTIONS(5968), + [anon_sym_bitand] = ACTIONS(5968), + [anon_sym_not_eq] = ACTIONS(5968), + [anon_sym_DASH_DASH] = ACTIONS(5966), + [anon_sym_PLUS_PLUS] = ACTIONS(5966), + [anon_sym_DOT] = ACTIONS(5968), + [anon_sym_DOT_STAR] = ACTIONS(5966), + [anon_sym_DASH_GT] = ACTIONS(5966), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5968), + [anon_sym_decltype] = ACTIONS(5968), + }, + [2269] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2279), + [sym_identifier] = ACTIONS(5974), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5972), + [anon_sym_COMMA] = ACTIONS(5972), + [aux_sym_preproc_if_token2] = ACTIONS(5972), + [aux_sym_preproc_else_token1] = ACTIONS(5972), + [aux_sym_preproc_elif_token1] = ACTIONS(5974), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5972), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5972), + [anon_sym_LPAREN2] = ACTIONS(5972), + [anon_sym_DASH] = ACTIONS(5974), + [anon_sym_PLUS] = ACTIONS(5974), + [anon_sym_STAR] = ACTIONS(5974), + [anon_sym_SLASH] = ACTIONS(5974), + [anon_sym_PERCENT] = ACTIONS(5974), + [anon_sym_PIPE_PIPE] = ACTIONS(5972), + [anon_sym_AMP_AMP] = ACTIONS(5972), + [anon_sym_PIPE] = ACTIONS(5974), + [anon_sym_CARET] = ACTIONS(5974), + [anon_sym_AMP] = ACTIONS(5974), + [anon_sym_EQ_EQ] = ACTIONS(5972), + [anon_sym_BANG_EQ] = ACTIONS(5972), + [anon_sym_GT] = ACTIONS(5974), + [anon_sym_GT_EQ] = ACTIONS(5972), + [anon_sym_LT_EQ] = ACTIONS(5974), + [anon_sym_LT] = ACTIONS(5974), + [anon_sym_LT_LT] = ACTIONS(5974), + [anon_sym_GT_GT] = ACTIONS(5974), + [anon_sym___attribute__] = ACTIONS(5974), + [anon_sym___attribute] = ACTIONS(5974), + [anon_sym_LBRACE] = ACTIONS(5972), + [anon_sym_signed] = ACTIONS(6242), + [anon_sym_unsigned] = ACTIONS(6242), + [anon_sym_long] = ACTIONS(6242), + [anon_sym_short] = ACTIONS(6242), + [anon_sym_LBRACK] = ACTIONS(5972), + [anon_sym_EQ] = ACTIONS(5974), + [anon_sym_QMARK] = ACTIONS(5972), + [anon_sym_STAR_EQ] = ACTIONS(5972), + [anon_sym_SLASH_EQ] = ACTIONS(5972), + [anon_sym_PERCENT_EQ] = ACTIONS(5972), + [anon_sym_PLUS_EQ] = ACTIONS(5972), + [anon_sym_DASH_EQ] = ACTIONS(5972), + [anon_sym_LT_LT_EQ] = ACTIONS(5972), + [anon_sym_GT_GT_EQ] = ACTIONS(5972), + [anon_sym_AMP_EQ] = ACTIONS(5972), + [anon_sym_CARET_EQ] = ACTIONS(5972), + [anon_sym_PIPE_EQ] = ACTIONS(5972), + [anon_sym_and_eq] = ACTIONS(5974), + [anon_sym_or_eq] = ACTIONS(5974), + [anon_sym_xor_eq] = ACTIONS(5974), + [anon_sym_LT_EQ_GT] = ACTIONS(5972), + [anon_sym_or] = ACTIONS(5974), + [anon_sym_and] = ACTIONS(5974), + [anon_sym_bitor] = ACTIONS(5974), + [anon_sym_xor] = ACTIONS(5974), + [anon_sym_bitand] = ACTIONS(5974), + [anon_sym_not_eq] = ACTIONS(5974), + [anon_sym_DASH_DASH] = ACTIONS(5972), + [anon_sym_PLUS_PLUS] = ACTIONS(5972), + [anon_sym_DOT] = ACTIONS(5974), + [anon_sym_DOT_STAR] = ACTIONS(5972), + [anon_sym_DASH_GT] = ACTIONS(5972), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5974), + [anon_sym_decltype] = ACTIONS(5974), + }, + [2270] = { + [sym_attribute_declaration] = STATE(2301), + [aux_sym_attributed_declarator_repeat1] = STATE(2301), + [sym_identifier] = ACTIONS(6244), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6246), + [anon_sym_COMMA] = ACTIONS(6246), + [anon_sym_RPAREN] = ACTIONS(6246), + [aux_sym_preproc_if_token2] = ACTIONS(6246), + [aux_sym_preproc_else_token1] = ACTIONS(6246), + [aux_sym_preproc_elif_token1] = ACTIONS(6244), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6246), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6246), + [anon_sym_LPAREN2] = ACTIONS(6246), + [anon_sym_DASH] = ACTIONS(6244), + [anon_sym_PLUS] = ACTIONS(6244), + [anon_sym_STAR] = ACTIONS(6244), + [anon_sym_SLASH] = ACTIONS(6244), + [anon_sym_PERCENT] = ACTIONS(6244), + [anon_sym_PIPE_PIPE] = ACTIONS(6246), + [anon_sym_AMP_AMP] = ACTIONS(6246), + [anon_sym_PIPE] = ACTIONS(6244), + [anon_sym_CARET] = ACTIONS(6244), + [anon_sym_AMP] = ACTIONS(6244), + [anon_sym_EQ_EQ] = ACTIONS(6246), + [anon_sym_BANG_EQ] = ACTIONS(6246), + [anon_sym_GT] = ACTIONS(6244), + [anon_sym_GT_EQ] = ACTIONS(6246), + [anon_sym_LT_EQ] = ACTIONS(6244), + [anon_sym_LT] = ACTIONS(6244), + [anon_sym_LT_LT] = ACTIONS(6244), + [anon_sym_GT_GT] = ACTIONS(6244), + [anon_sym_SEMI] = ACTIONS(6246), + [anon_sym___attribute__] = ACTIONS(6244), + [anon_sym___attribute] = ACTIONS(6244), + [anon_sym_COLON] = ACTIONS(6246), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6096), + [anon_sym_RBRACE] = ACTIONS(6246), + [anon_sym_LBRACK] = ACTIONS(6244), + [anon_sym_RBRACK] = ACTIONS(6246), + [anon_sym_EQ] = ACTIONS(6244), + [anon_sym_QMARK] = ACTIONS(6246), + [anon_sym_STAR_EQ] = ACTIONS(6246), + [anon_sym_SLASH_EQ] = ACTIONS(6246), + [anon_sym_PERCENT_EQ] = ACTIONS(6246), + [anon_sym_PLUS_EQ] = ACTIONS(6246), + [anon_sym_DASH_EQ] = ACTIONS(6246), + [anon_sym_LT_LT_EQ] = ACTIONS(6246), + [anon_sym_GT_GT_EQ] = ACTIONS(6246), + [anon_sym_AMP_EQ] = ACTIONS(6246), + [anon_sym_CARET_EQ] = ACTIONS(6246), + [anon_sym_PIPE_EQ] = ACTIONS(6246), + [anon_sym_and_eq] = ACTIONS(6244), + [anon_sym_or_eq] = ACTIONS(6244), + [anon_sym_xor_eq] = ACTIONS(6244), + [anon_sym_LT_EQ_GT] = ACTIONS(6246), + [anon_sym_or] = ACTIONS(6244), + [anon_sym_and] = ACTIONS(6244), + [anon_sym_bitor] = ACTIONS(6244), + [anon_sym_xor] = ACTIONS(6244), + [anon_sym_bitand] = ACTIONS(6244), + [anon_sym_not_eq] = ACTIONS(6244), + [anon_sym_DASH_DASH] = ACTIONS(6246), + [anon_sym_PLUS_PLUS] = ACTIONS(6246), + [anon_sym_DOT] = ACTIONS(6244), + [anon_sym_DOT_STAR] = ACTIONS(6246), + [anon_sym_DASH_GT] = ACTIONS(6246), [sym_comment] = ACTIONS(3), }, - [2218] = { - [sym_identifier] = ACTIONS(6192), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6194), - [anon_sym_COMMA] = ACTIONS(6194), - [anon_sym_RPAREN] = ACTIONS(6194), - [aux_sym_preproc_if_token2] = ACTIONS(6194), - [aux_sym_preproc_else_token1] = ACTIONS(6194), - [aux_sym_preproc_elif_token1] = ACTIONS(6192), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6194), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6194), - [anon_sym_LPAREN2] = ACTIONS(6194), - [anon_sym_DASH] = ACTIONS(6192), - [anon_sym_PLUS] = ACTIONS(6192), - [anon_sym_STAR] = ACTIONS(6192), - [anon_sym_SLASH] = ACTIONS(6192), - [anon_sym_PERCENT] = ACTIONS(6192), - [anon_sym_PIPE_PIPE] = ACTIONS(6194), - [anon_sym_AMP_AMP] = ACTIONS(6194), - [anon_sym_PIPE] = ACTIONS(6192), - [anon_sym_CARET] = ACTIONS(6192), - [anon_sym_AMP] = ACTIONS(6192), - [anon_sym_EQ_EQ] = ACTIONS(6194), - [anon_sym_BANG_EQ] = ACTIONS(6194), - [anon_sym_GT] = ACTIONS(6192), - [anon_sym_GT_EQ] = ACTIONS(6194), - [anon_sym_LT_EQ] = ACTIONS(6192), - [anon_sym_LT] = ACTIONS(6192), - [anon_sym_LT_LT] = ACTIONS(6192), - [anon_sym_GT_GT] = ACTIONS(6192), - [anon_sym_SEMI] = ACTIONS(6194), - [anon_sym___attribute__] = ACTIONS(6192), - [anon_sym___attribute] = ACTIONS(6192), - [anon_sym_COLON] = ACTIONS(6194), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6194), - [anon_sym_LBRACE] = ACTIONS(6194), - [anon_sym_RBRACE] = ACTIONS(6194), - [anon_sym_LBRACK] = ACTIONS(6192), - [anon_sym_RBRACK] = ACTIONS(6194), - [anon_sym_EQ] = ACTIONS(6192), - [anon_sym_QMARK] = ACTIONS(6194), - [anon_sym_STAR_EQ] = ACTIONS(6194), - [anon_sym_SLASH_EQ] = ACTIONS(6194), - [anon_sym_PERCENT_EQ] = ACTIONS(6194), - [anon_sym_PLUS_EQ] = ACTIONS(6194), - [anon_sym_DASH_EQ] = ACTIONS(6194), - [anon_sym_LT_LT_EQ] = ACTIONS(6194), - [anon_sym_GT_GT_EQ] = ACTIONS(6194), - [anon_sym_AMP_EQ] = ACTIONS(6194), - [anon_sym_CARET_EQ] = ACTIONS(6194), - [anon_sym_PIPE_EQ] = ACTIONS(6194), - [anon_sym_and_eq] = ACTIONS(6192), - [anon_sym_or_eq] = ACTIONS(6192), - [anon_sym_xor_eq] = ACTIONS(6192), - [anon_sym_LT_EQ_GT] = ACTIONS(6194), - [anon_sym_or] = ACTIONS(6192), - [anon_sym_and] = ACTIONS(6192), - [anon_sym_bitor] = ACTIONS(6192), - [anon_sym_xor] = ACTIONS(6192), - [anon_sym_bitand] = ACTIONS(6192), - [anon_sym_not_eq] = ACTIONS(6192), - [anon_sym_DASH_DASH] = ACTIONS(6194), - [anon_sym_PLUS_PLUS] = ACTIONS(6194), - [anon_sym_DOT] = ACTIONS(6192), - [anon_sym_DOT_STAR] = ACTIONS(6194), - [anon_sym_DASH_GT] = ACTIONS(6194), - [sym_comment] = ACTIONS(3), - [anon_sym_try] = ACTIONS(6192), + [2271] = { + [sym_identifier] = ACTIONS(6248), + [anon_sym_LPAREN2] = ACTIONS(6250), + [anon_sym_TILDE] = ACTIONS(6250), + [anon_sym_STAR] = ACTIONS(6250), + [anon_sym_PIPE_PIPE] = ACTIONS(6250), + [anon_sym_AMP_AMP] = ACTIONS(6252), + [anon_sym_AMP] = ACTIONS(6248), + [anon_sym___extension__] = ACTIONS(6248), + [anon_sym_virtual] = ACTIONS(6248), + [anon_sym_extern] = ACTIONS(6248), + [anon_sym___attribute__] = ACTIONS(6248), + [anon_sym___attribute] = ACTIONS(6248), + [anon_sym_using] = ACTIONS(6248), + [anon_sym_COLON_COLON] = ACTIONS(6250), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6250), + [anon_sym___declspec] = ACTIONS(6248), + [anon_sym___based] = ACTIONS(6248), + [anon_sym___cdecl] = ACTIONS(6248), + [anon_sym___clrcall] = ACTIONS(6248), + [anon_sym___stdcall] = ACTIONS(6248), + [anon_sym___fastcall] = ACTIONS(6248), + [anon_sym___thiscall] = ACTIONS(6248), + [anon_sym___vectorcall] = ACTIONS(6248), + [anon_sym_signed] = ACTIONS(6248), + [anon_sym_unsigned] = ACTIONS(6248), + [anon_sym_long] = ACTIONS(6248), + [anon_sym_short] = ACTIONS(6248), + [anon_sym_LBRACK] = ACTIONS(6248), + [anon_sym_static] = ACTIONS(6248), + [anon_sym_register] = ACTIONS(6248), + [anon_sym_inline] = ACTIONS(6248), + [anon_sym___inline] = ACTIONS(6248), + [anon_sym___inline__] = ACTIONS(6248), + [anon_sym___forceinline] = ACTIONS(6248), + [anon_sym_thread_local] = ACTIONS(6248), + [anon_sym___thread] = ACTIONS(6248), + [anon_sym_const] = ACTIONS(6248), + [anon_sym_constexpr] = ACTIONS(6248), + [anon_sym_volatile] = ACTIONS(6248), + [anon_sym_restrict] = ACTIONS(6248), + [anon_sym___restrict__] = ACTIONS(6248), + [anon_sym__Atomic] = ACTIONS(6248), + [anon_sym__Noreturn] = ACTIONS(6248), + [anon_sym_noreturn] = ACTIONS(6248), + [anon_sym__Nonnull] = ACTIONS(6248), + [anon_sym_mutable] = ACTIONS(6248), + [anon_sym_constinit] = ACTIONS(6248), + [anon_sym_consteval] = ACTIONS(6248), + [anon_sym_alignas] = ACTIONS(6248), + [anon_sym__Alignas] = ACTIONS(6248), + [sym_primitive_type] = ACTIONS(6248), + [anon_sym_enum] = ACTIONS(6248), + [anon_sym_class] = ACTIONS(6248), + [anon_sym_struct] = ACTIONS(6248), + [anon_sym_union] = ACTIONS(6248), + [anon_sym_or] = ACTIONS(6248), + [anon_sym_and] = ACTIONS(6254), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6248), + [anon_sym_decltype] = ACTIONS(6248), + [anon_sym_explicit] = ACTIONS(6248), + [anon_sym_typename] = ACTIONS(6248), + [anon_sym_template] = ACTIONS(6248), + [anon_sym_operator] = ACTIONS(6248), + [anon_sym_friend] = ACTIONS(6248), + [anon_sym_concept] = ACTIONS(6248), }, - [2219] = { - [sym_identifier] = ACTIONS(6196), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6198), - [anon_sym_COMMA] = ACTIONS(6198), - [anon_sym_RPAREN] = ACTIONS(6198), - [aux_sym_preproc_if_token2] = ACTIONS(6198), - [aux_sym_preproc_else_token1] = ACTIONS(6198), - [aux_sym_preproc_elif_token1] = ACTIONS(6196), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6198), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6198), - [anon_sym_LPAREN2] = ACTIONS(6198), - [anon_sym_DASH] = ACTIONS(6196), - [anon_sym_PLUS] = ACTIONS(6196), - [anon_sym_STAR] = ACTIONS(6196), - [anon_sym_SLASH] = ACTIONS(6196), - [anon_sym_PERCENT] = ACTIONS(6196), - [anon_sym_PIPE_PIPE] = ACTIONS(6198), - [anon_sym_AMP_AMP] = ACTIONS(6198), - [anon_sym_PIPE] = ACTIONS(6196), - [anon_sym_CARET] = ACTIONS(6196), - [anon_sym_AMP] = ACTIONS(6196), - [anon_sym_EQ_EQ] = ACTIONS(6198), - [anon_sym_BANG_EQ] = ACTIONS(6198), - [anon_sym_GT] = ACTIONS(6196), - [anon_sym_GT_EQ] = ACTIONS(6198), - [anon_sym_LT_EQ] = ACTIONS(6196), - [anon_sym_LT] = ACTIONS(6196), - [anon_sym_LT_LT] = ACTIONS(6196), - [anon_sym_GT_GT] = ACTIONS(6196), - [anon_sym_SEMI] = ACTIONS(6198), - [anon_sym___attribute__] = ACTIONS(6196), - [anon_sym___attribute] = ACTIONS(6196), - [anon_sym_COLON] = ACTIONS(6198), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6198), - [anon_sym_LBRACE] = ACTIONS(6198), - [anon_sym_RBRACE] = ACTIONS(6198), - [anon_sym_LBRACK] = ACTIONS(6196), - [anon_sym_RBRACK] = ACTIONS(6198), - [anon_sym_EQ] = ACTIONS(6196), - [anon_sym_QMARK] = ACTIONS(6198), - [anon_sym_STAR_EQ] = ACTIONS(6198), - [anon_sym_SLASH_EQ] = ACTIONS(6198), - [anon_sym_PERCENT_EQ] = ACTIONS(6198), - [anon_sym_PLUS_EQ] = ACTIONS(6198), - [anon_sym_DASH_EQ] = ACTIONS(6198), - [anon_sym_LT_LT_EQ] = ACTIONS(6198), - [anon_sym_GT_GT_EQ] = ACTIONS(6198), - [anon_sym_AMP_EQ] = ACTIONS(6198), - [anon_sym_CARET_EQ] = ACTIONS(6198), - [anon_sym_PIPE_EQ] = ACTIONS(6198), - [anon_sym_and_eq] = ACTIONS(6196), - [anon_sym_or_eq] = ACTIONS(6196), - [anon_sym_xor_eq] = ACTIONS(6196), - [anon_sym_LT_EQ_GT] = ACTIONS(6198), - [anon_sym_or] = ACTIONS(6196), - [anon_sym_and] = ACTIONS(6196), - [anon_sym_bitor] = ACTIONS(6196), - [anon_sym_xor] = ACTIONS(6196), - [anon_sym_bitand] = ACTIONS(6196), - [anon_sym_not_eq] = ACTIONS(6196), - [anon_sym_DASH_DASH] = ACTIONS(6198), - [anon_sym_PLUS_PLUS] = ACTIONS(6198), - [anon_sym_DOT] = ACTIONS(6196), - [anon_sym_DOT_STAR] = ACTIONS(6198), - [anon_sym_DASH_GT] = ACTIONS(6198), - [sym_comment] = ACTIONS(3), - [anon_sym_try] = ACTIONS(6196), + [2272] = { + [sym_identifier] = ACTIONS(5645), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5647), + [anon_sym_COMMA] = ACTIONS(5647), + [anon_sym_RPAREN] = ACTIONS(5647), + [aux_sym_preproc_if_token2] = ACTIONS(5647), + [aux_sym_preproc_else_token1] = ACTIONS(5647), + [aux_sym_preproc_elif_token1] = ACTIONS(5645), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5647), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5647), + [anon_sym_LPAREN2] = ACTIONS(5647), + [anon_sym_DASH] = ACTIONS(5645), + [anon_sym_PLUS] = ACTIONS(5645), + [anon_sym_STAR] = ACTIONS(5645), + [anon_sym_SLASH] = ACTIONS(5645), + [anon_sym_PERCENT] = ACTIONS(5645), + [anon_sym_PIPE_PIPE] = ACTIONS(5647), + [anon_sym_AMP_AMP] = ACTIONS(5647), + [anon_sym_PIPE] = ACTIONS(5645), + [anon_sym_CARET] = ACTIONS(5645), + [anon_sym_AMP] = ACTIONS(5645), + [anon_sym_EQ_EQ] = ACTIONS(5647), + [anon_sym_BANG_EQ] = ACTIONS(5647), + [anon_sym_GT] = ACTIONS(5645), + [anon_sym_GT_EQ] = ACTIONS(5647), + [anon_sym_LT_EQ] = ACTIONS(5645), + [anon_sym_LT] = ACTIONS(5645), + [anon_sym_LT_LT] = ACTIONS(5645), + [anon_sym_GT_GT] = ACTIONS(5645), + [anon_sym_SEMI] = ACTIONS(5647), + [anon_sym___attribute__] = ACTIONS(5645), + [anon_sym___attribute] = ACTIONS(5645), + [anon_sym_COLON] = ACTIONS(5647), + [anon_sym_LBRACE] = ACTIONS(5647), + [anon_sym_RBRACE] = ACTIONS(5647), + [anon_sym_LBRACK] = ACTIONS(5647), + [anon_sym_RBRACK] = ACTIONS(5647), + [anon_sym_EQ] = ACTIONS(5645), + [anon_sym_QMARK] = ACTIONS(5647), + [anon_sym_STAR_EQ] = ACTIONS(5647), + [anon_sym_SLASH_EQ] = ACTIONS(5647), + [anon_sym_PERCENT_EQ] = ACTIONS(5647), + [anon_sym_PLUS_EQ] = ACTIONS(5647), + [anon_sym_DASH_EQ] = ACTIONS(5647), + [anon_sym_LT_LT_EQ] = ACTIONS(5647), + [anon_sym_GT_GT_EQ] = ACTIONS(5647), + [anon_sym_AMP_EQ] = ACTIONS(5647), + [anon_sym_CARET_EQ] = ACTIONS(5647), + [anon_sym_PIPE_EQ] = ACTIONS(5647), + [anon_sym_and_eq] = ACTIONS(5645), + [anon_sym_or_eq] = ACTIONS(5645), + [anon_sym_xor_eq] = ACTIONS(5645), + [anon_sym_LT_EQ_GT] = ACTIONS(5647), + [anon_sym_or] = ACTIONS(5645), + [anon_sym_and] = ACTIONS(5645), + [anon_sym_bitor] = ACTIONS(5645), + [anon_sym_xor] = ACTIONS(5645), + [anon_sym_bitand] = ACTIONS(5645), + [anon_sym_not_eq] = ACTIONS(5645), + [anon_sym_DASH_DASH] = ACTIONS(5647), + [anon_sym_PLUS_PLUS] = ACTIONS(5647), + [anon_sym_DOT] = ACTIONS(5645), + [anon_sym_DOT_STAR] = ACTIONS(5647), + [anon_sym_DASH_GT] = ACTIONS(5647), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5645), + [anon_sym_decltype] = ACTIONS(5645), }, - [2220] = { - [sym_identifier] = ACTIONS(6200), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6202), - [anon_sym_COMMA] = ACTIONS(6202), - [anon_sym_RPAREN] = ACTIONS(6202), - [aux_sym_preproc_if_token2] = ACTIONS(6202), - [aux_sym_preproc_else_token1] = ACTIONS(6202), - [aux_sym_preproc_elif_token1] = ACTIONS(6200), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6202), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6202), - [anon_sym_LPAREN2] = ACTIONS(6202), - [anon_sym_DASH] = ACTIONS(6200), - [anon_sym_PLUS] = ACTIONS(6200), - [anon_sym_STAR] = ACTIONS(6200), - [anon_sym_SLASH] = ACTIONS(6200), - [anon_sym_PERCENT] = ACTIONS(6200), - [anon_sym_PIPE_PIPE] = ACTIONS(6202), - [anon_sym_AMP_AMP] = ACTIONS(6202), - [anon_sym_PIPE] = ACTIONS(6200), - [anon_sym_CARET] = ACTIONS(6200), - [anon_sym_AMP] = ACTIONS(6200), - [anon_sym_EQ_EQ] = ACTIONS(6202), - [anon_sym_BANG_EQ] = ACTIONS(6202), - [anon_sym_GT] = ACTIONS(6200), - [anon_sym_GT_EQ] = ACTIONS(6202), - [anon_sym_LT_EQ] = ACTIONS(6200), - [anon_sym_LT] = ACTIONS(6200), - [anon_sym_LT_LT] = ACTIONS(6200), - [anon_sym_GT_GT] = ACTIONS(6200), - [anon_sym_SEMI] = ACTIONS(6202), - [anon_sym___attribute__] = ACTIONS(6200), - [anon_sym___attribute] = ACTIONS(6200), - [anon_sym_COLON] = ACTIONS(6202), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6202), - [anon_sym_LBRACE] = ACTIONS(6202), - [anon_sym_RBRACE] = ACTIONS(6202), - [anon_sym_LBRACK] = ACTIONS(6200), - [anon_sym_RBRACK] = ACTIONS(6202), - [anon_sym_EQ] = ACTIONS(6200), - [anon_sym_QMARK] = ACTIONS(6202), - [anon_sym_STAR_EQ] = ACTIONS(6202), - [anon_sym_SLASH_EQ] = ACTIONS(6202), - [anon_sym_PERCENT_EQ] = ACTIONS(6202), - [anon_sym_PLUS_EQ] = ACTIONS(6202), - [anon_sym_DASH_EQ] = ACTIONS(6202), - [anon_sym_LT_LT_EQ] = ACTIONS(6202), - [anon_sym_GT_GT_EQ] = ACTIONS(6202), - [anon_sym_AMP_EQ] = ACTIONS(6202), - [anon_sym_CARET_EQ] = ACTIONS(6202), - [anon_sym_PIPE_EQ] = ACTIONS(6202), - [anon_sym_and_eq] = ACTIONS(6200), - [anon_sym_or_eq] = ACTIONS(6200), - [anon_sym_xor_eq] = ACTIONS(6200), - [anon_sym_LT_EQ_GT] = ACTIONS(6202), - [anon_sym_or] = ACTIONS(6200), - [anon_sym_and] = ACTIONS(6200), - [anon_sym_bitor] = ACTIONS(6200), - [anon_sym_xor] = ACTIONS(6200), - [anon_sym_bitand] = ACTIONS(6200), - [anon_sym_not_eq] = ACTIONS(6200), - [anon_sym_DASH_DASH] = ACTIONS(6202), - [anon_sym_PLUS_PLUS] = ACTIONS(6202), - [anon_sym_DOT] = ACTIONS(6200), - [anon_sym_DOT_STAR] = ACTIONS(6202), - [anon_sym_DASH_GT] = ACTIONS(6202), - [sym_comment] = ACTIONS(3), - [anon_sym_try] = ACTIONS(6200), + [2273] = { + [sym_attribute_specifier] = STATE(1901), + [sym_enumerator_list] = STATE(2395), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6068), + [anon_sym_COMMA] = ACTIONS(6068), + [anon_sym_RPAREN] = ACTIONS(6068), + [anon_sym_LPAREN2] = ACTIONS(6068), + [anon_sym_DASH] = ACTIONS(6066), + [anon_sym_PLUS] = ACTIONS(6066), + [anon_sym_STAR] = ACTIONS(6068), + [anon_sym_SLASH] = ACTIONS(6066), + [anon_sym_PERCENT] = ACTIONS(6068), + [anon_sym_PIPE_PIPE] = ACTIONS(6068), + [anon_sym_AMP_AMP] = ACTIONS(6068), + [anon_sym_PIPE] = ACTIONS(6066), + [anon_sym_CARET] = ACTIONS(6068), + [anon_sym_AMP] = ACTIONS(6066), + [anon_sym_EQ_EQ] = ACTIONS(6068), + [anon_sym_BANG_EQ] = ACTIONS(6068), + [anon_sym_GT] = ACTIONS(6066), + [anon_sym_GT_EQ] = ACTIONS(6068), + [anon_sym_LT_EQ] = ACTIONS(6066), + [anon_sym_LT] = ACTIONS(6066), + [anon_sym_LT_LT] = ACTIONS(6068), + [anon_sym_GT_GT] = ACTIONS(6068), + [anon_sym_SEMI] = ACTIONS(6068), + [anon_sym___extension__] = ACTIONS(6068), + [anon_sym___attribute__] = ACTIONS(6031), + [anon_sym___attribute] = ACTIONS(6033), + [anon_sym_COLON] = ACTIONS(6068), + [anon_sym_LBRACE] = ACTIONS(6256), + [anon_sym_RBRACE] = ACTIONS(6068), + [anon_sym_LBRACK] = ACTIONS(6068), + [anon_sym_RBRACK] = ACTIONS(6068), + [anon_sym_const] = ACTIONS(6066), + [anon_sym_constexpr] = ACTIONS(6068), + [anon_sym_volatile] = ACTIONS(6068), + [anon_sym_restrict] = ACTIONS(6068), + [anon_sym___restrict__] = ACTIONS(6068), + [anon_sym__Atomic] = ACTIONS(6068), + [anon_sym__Noreturn] = ACTIONS(6068), + [anon_sym_noreturn] = ACTIONS(6068), + [anon_sym__Nonnull] = ACTIONS(6068), + [anon_sym_mutable] = ACTIONS(6068), + [anon_sym_constinit] = ACTIONS(6068), + [anon_sym_consteval] = ACTIONS(6068), + [anon_sym_alignas] = ACTIONS(6068), + [anon_sym__Alignas] = ACTIONS(6068), + [anon_sym_QMARK] = ACTIONS(6068), + [anon_sym_LT_EQ_GT] = ACTIONS(6068), + [anon_sym_or] = ACTIONS(6068), + [anon_sym_and] = ACTIONS(6068), + [anon_sym_bitor] = ACTIONS(6068), + [anon_sym_xor] = ACTIONS(6068), + [anon_sym_bitand] = ACTIONS(6068), + [anon_sym_not_eq] = ACTIONS(6068), + [anon_sym_DASH_DASH] = ACTIONS(6068), + [anon_sym_PLUS_PLUS] = ACTIONS(6068), + [anon_sym_DOT] = ACTIONS(6066), + [anon_sym_DOT_STAR] = ACTIONS(6068), + [anon_sym_DASH_GT] = ACTIONS(6068), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6068), + [anon_sym_decltype] = ACTIONS(6068), + [anon_sym_final] = ACTIONS(6068), + [anon_sym_override] = ACTIONS(6068), + [anon_sym_requires] = ACTIONS(6068), }, - [2221] = { - [sym_identifier] = ACTIONS(5667), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5669), - [anon_sym_COMMA] = ACTIONS(5669), - [anon_sym_RPAREN] = ACTIONS(5669), - [aux_sym_preproc_if_token2] = ACTIONS(5669), - [aux_sym_preproc_else_token1] = ACTIONS(5669), - [aux_sym_preproc_elif_token1] = ACTIONS(5667), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5669), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5669), - [anon_sym_LPAREN2] = ACTIONS(5669), - [anon_sym_DASH] = ACTIONS(5667), - [anon_sym_PLUS] = ACTIONS(5667), - [anon_sym_STAR] = ACTIONS(5667), - [anon_sym_SLASH] = ACTIONS(5667), - [anon_sym_PERCENT] = ACTIONS(5667), - [anon_sym_PIPE_PIPE] = ACTIONS(5669), - [anon_sym_AMP_AMP] = ACTIONS(5669), - [anon_sym_PIPE] = ACTIONS(5667), - [anon_sym_CARET] = ACTIONS(5667), - [anon_sym_AMP] = ACTIONS(5667), - [anon_sym_EQ_EQ] = ACTIONS(5669), - [anon_sym_BANG_EQ] = ACTIONS(5669), - [anon_sym_GT] = ACTIONS(5667), - [anon_sym_GT_EQ] = ACTIONS(5669), - [anon_sym_LT_EQ] = ACTIONS(5667), - [anon_sym_LT] = ACTIONS(5667), - [anon_sym_LT_LT] = ACTIONS(5667), - [anon_sym_GT_GT] = ACTIONS(5667), - [anon_sym_SEMI] = ACTIONS(5669), - [anon_sym___attribute__] = ACTIONS(5667), - [anon_sym___attribute] = ACTIONS(5667), - [anon_sym_COLON] = ACTIONS(5669), - [anon_sym_LBRACE] = ACTIONS(5669), - [anon_sym_RBRACE] = ACTIONS(5669), - [anon_sym_LBRACK] = ACTIONS(5669), - [anon_sym_RBRACK] = ACTIONS(5669), - [anon_sym_EQ] = ACTIONS(5667), - [anon_sym_QMARK] = ACTIONS(5669), - [anon_sym_STAR_EQ] = ACTIONS(5669), - [anon_sym_SLASH_EQ] = ACTIONS(5669), - [anon_sym_PERCENT_EQ] = ACTIONS(5669), - [anon_sym_PLUS_EQ] = ACTIONS(5669), - [anon_sym_DASH_EQ] = ACTIONS(5669), - [anon_sym_LT_LT_EQ] = ACTIONS(5669), - [anon_sym_GT_GT_EQ] = ACTIONS(5669), - [anon_sym_AMP_EQ] = ACTIONS(5669), - [anon_sym_CARET_EQ] = ACTIONS(5669), - [anon_sym_PIPE_EQ] = ACTIONS(5669), - [anon_sym_and_eq] = ACTIONS(5667), - [anon_sym_or_eq] = ACTIONS(5667), - [anon_sym_xor_eq] = ACTIONS(5667), - [anon_sym_LT_EQ_GT] = ACTIONS(5669), - [anon_sym_or] = ACTIONS(5667), - [anon_sym_and] = ACTIONS(5667), - [anon_sym_bitor] = ACTIONS(5667), - [anon_sym_xor] = ACTIONS(5667), - [anon_sym_bitand] = ACTIONS(5667), - [anon_sym_not_eq] = ACTIONS(5667), - [anon_sym_DASH_DASH] = ACTIONS(5669), - [anon_sym_PLUS_PLUS] = ACTIONS(5669), - [anon_sym_DOT] = ACTIONS(5667), - [anon_sym_DOT_STAR] = ACTIONS(5669), - [anon_sym_DASH_GT] = ACTIONS(5669), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5667), - [anon_sym_decltype] = ACTIONS(5667), + [2274] = { + [sym_identifier] = ACTIONS(5800), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5802), + [anon_sym_COMMA] = ACTIONS(5802), + [anon_sym_RPAREN] = ACTIONS(5802), + [aux_sym_preproc_if_token2] = ACTIONS(5802), + [aux_sym_preproc_else_token1] = ACTIONS(5802), + [aux_sym_preproc_elif_token1] = ACTIONS(5800), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5802), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5802), + [anon_sym_LPAREN2] = ACTIONS(5802), + [anon_sym_DASH] = ACTIONS(5800), + [anon_sym_PLUS] = ACTIONS(5800), + [anon_sym_STAR] = ACTIONS(5800), + [anon_sym_SLASH] = ACTIONS(5800), + [anon_sym_PERCENT] = ACTIONS(5800), + [anon_sym_PIPE_PIPE] = ACTIONS(5802), + [anon_sym_AMP_AMP] = ACTIONS(5802), + [anon_sym_PIPE] = ACTIONS(5800), + [anon_sym_CARET] = ACTIONS(5800), + [anon_sym_AMP] = ACTIONS(5800), + [anon_sym_EQ_EQ] = ACTIONS(5802), + [anon_sym_BANG_EQ] = ACTIONS(5802), + [anon_sym_GT] = ACTIONS(5800), + [anon_sym_GT_EQ] = ACTIONS(5802), + [anon_sym_LT_EQ] = ACTIONS(5800), + [anon_sym_LT] = ACTIONS(5800), + [anon_sym_LT_LT] = ACTIONS(5800), + [anon_sym_GT_GT] = ACTIONS(5800), + [anon_sym_SEMI] = ACTIONS(5802), + [anon_sym___attribute__] = ACTIONS(5800), + [anon_sym___attribute] = ACTIONS(5800), + [anon_sym_COLON] = ACTIONS(5802), + [anon_sym_LBRACE] = ACTIONS(5802), + [anon_sym_RBRACE] = ACTIONS(5802), + [anon_sym_LBRACK] = ACTIONS(5802), + [anon_sym_RBRACK] = ACTIONS(5802), + [anon_sym_EQ] = ACTIONS(5800), + [anon_sym_QMARK] = ACTIONS(5802), + [anon_sym_STAR_EQ] = ACTIONS(5802), + [anon_sym_SLASH_EQ] = ACTIONS(5802), + [anon_sym_PERCENT_EQ] = ACTIONS(5802), + [anon_sym_PLUS_EQ] = ACTIONS(5802), + [anon_sym_DASH_EQ] = ACTIONS(5802), + [anon_sym_LT_LT_EQ] = ACTIONS(5802), + [anon_sym_GT_GT_EQ] = ACTIONS(5802), + [anon_sym_AMP_EQ] = ACTIONS(5802), + [anon_sym_CARET_EQ] = ACTIONS(5802), + [anon_sym_PIPE_EQ] = ACTIONS(5802), + [anon_sym_and_eq] = ACTIONS(5800), + [anon_sym_or_eq] = ACTIONS(5800), + [anon_sym_xor_eq] = ACTIONS(5800), + [anon_sym_LT_EQ_GT] = ACTIONS(5802), + [anon_sym_or] = ACTIONS(5800), + [anon_sym_and] = ACTIONS(5800), + [anon_sym_bitor] = ACTIONS(5800), + [anon_sym_xor] = ACTIONS(5800), + [anon_sym_bitand] = ACTIONS(5800), + [anon_sym_not_eq] = ACTIONS(5800), + [anon_sym_DASH_DASH] = ACTIONS(5802), + [anon_sym_PLUS_PLUS] = ACTIONS(5802), + [anon_sym_DOT] = ACTIONS(5800), + [anon_sym_DOT_STAR] = ACTIONS(5802), + [anon_sym_DASH_GT] = ACTIONS(5802), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5800), + [anon_sym_decltype] = ACTIONS(5800), }, - [2222] = { - [sym_argument_list] = STATE(2477), - [sym_initializer_list] = STATE(2477), - [sym_identifier] = ACTIONS(6204), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6206), - [anon_sym_COMMA] = ACTIONS(6206), - [anon_sym_RPAREN] = ACTIONS(6206), - [aux_sym_preproc_if_token2] = ACTIONS(6206), - [aux_sym_preproc_else_token1] = ACTIONS(6206), - [aux_sym_preproc_elif_token1] = ACTIONS(6204), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6206), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6206), - [anon_sym_LPAREN2] = ACTIONS(5827), - [anon_sym_DASH] = ACTIONS(6204), - [anon_sym_PLUS] = ACTIONS(6204), - [anon_sym_STAR] = ACTIONS(6204), - [anon_sym_SLASH] = ACTIONS(6204), - [anon_sym_PERCENT] = ACTIONS(6204), - [anon_sym_PIPE_PIPE] = ACTIONS(6206), - [anon_sym_AMP_AMP] = ACTIONS(6206), - [anon_sym_PIPE] = ACTIONS(6204), - [anon_sym_CARET] = ACTIONS(6204), - [anon_sym_AMP] = ACTIONS(6204), - [anon_sym_EQ_EQ] = ACTIONS(6206), - [anon_sym_BANG_EQ] = ACTIONS(6206), - [anon_sym_GT] = ACTIONS(6204), - [anon_sym_GT_EQ] = ACTIONS(6206), - [anon_sym_LT_EQ] = ACTIONS(6204), - [anon_sym_LT] = ACTIONS(6204), - [anon_sym_LT_LT] = ACTIONS(6204), - [anon_sym_GT_GT] = ACTIONS(6204), - [anon_sym_SEMI] = ACTIONS(6206), - [anon_sym___attribute__] = ACTIONS(6204), - [anon_sym___attribute] = ACTIONS(6204), - [anon_sym_COLON] = ACTIONS(6206), + [2275] = { + [sym_identifier] = ACTIONS(5804), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5806), + [anon_sym_COMMA] = ACTIONS(5806), + [anon_sym_RPAREN] = ACTIONS(5806), + [aux_sym_preproc_if_token2] = ACTIONS(5806), + [aux_sym_preproc_else_token1] = ACTIONS(5806), + [aux_sym_preproc_elif_token1] = ACTIONS(5804), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5806), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5806), + [anon_sym_LPAREN2] = ACTIONS(5806), + [anon_sym_DASH] = ACTIONS(5804), + [anon_sym_PLUS] = ACTIONS(5804), + [anon_sym_STAR] = ACTIONS(5804), + [anon_sym_SLASH] = ACTIONS(5804), + [anon_sym_PERCENT] = ACTIONS(5804), + [anon_sym_PIPE_PIPE] = ACTIONS(5806), + [anon_sym_AMP_AMP] = ACTIONS(5806), + [anon_sym_PIPE] = ACTIONS(5804), + [anon_sym_CARET] = ACTIONS(5804), + [anon_sym_AMP] = ACTIONS(5804), + [anon_sym_EQ_EQ] = ACTIONS(5806), + [anon_sym_BANG_EQ] = ACTIONS(5806), + [anon_sym_GT] = ACTIONS(5804), + [anon_sym_GT_EQ] = ACTIONS(5806), + [anon_sym_LT_EQ] = ACTIONS(5804), + [anon_sym_LT] = ACTIONS(5804), + [anon_sym_LT_LT] = ACTIONS(5804), + [anon_sym_GT_GT] = ACTIONS(5804), + [anon_sym_SEMI] = ACTIONS(5806), + [anon_sym___attribute__] = ACTIONS(5804), + [anon_sym___attribute] = ACTIONS(5804), + [anon_sym_COLON] = ACTIONS(5806), + [anon_sym_LBRACE] = ACTIONS(5806), + [anon_sym_RBRACE] = ACTIONS(5806), + [anon_sym_LBRACK] = ACTIONS(5806), + [anon_sym_RBRACK] = ACTIONS(5806), + [anon_sym_EQ] = ACTIONS(5804), + [anon_sym_QMARK] = ACTIONS(5806), + [anon_sym_STAR_EQ] = ACTIONS(5806), + [anon_sym_SLASH_EQ] = ACTIONS(5806), + [anon_sym_PERCENT_EQ] = ACTIONS(5806), + [anon_sym_PLUS_EQ] = ACTIONS(5806), + [anon_sym_DASH_EQ] = ACTIONS(5806), + [anon_sym_LT_LT_EQ] = ACTIONS(5806), + [anon_sym_GT_GT_EQ] = ACTIONS(5806), + [anon_sym_AMP_EQ] = ACTIONS(5806), + [anon_sym_CARET_EQ] = ACTIONS(5806), + [anon_sym_PIPE_EQ] = ACTIONS(5806), + [anon_sym_and_eq] = ACTIONS(5804), + [anon_sym_or_eq] = ACTIONS(5804), + [anon_sym_xor_eq] = ACTIONS(5804), + [anon_sym_LT_EQ_GT] = ACTIONS(5806), + [anon_sym_or] = ACTIONS(5804), + [anon_sym_and] = ACTIONS(5804), + [anon_sym_bitor] = ACTIONS(5804), + [anon_sym_xor] = ACTIONS(5804), + [anon_sym_bitand] = ACTIONS(5804), + [anon_sym_not_eq] = ACTIONS(5804), + [anon_sym_DASH_DASH] = ACTIONS(5806), + [anon_sym_PLUS_PLUS] = ACTIONS(5806), + [anon_sym_DOT] = ACTIONS(5804), + [anon_sym_DOT_STAR] = ACTIONS(5806), + [anon_sym_DASH_GT] = ACTIONS(5806), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5804), + [anon_sym_decltype] = ACTIONS(5804), + }, + [2276] = { + [sym_attribute_specifier] = STATE(1912), + [sym_enumerator_list] = STATE(2369), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6074), + [anon_sym_COMMA] = ACTIONS(6074), + [anon_sym_RPAREN] = ACTIONS(6074), + [anon_sym_LPAREN2] = ACTIONS(6074), + [anon_sym_DASH] = ACTIONS(6072), + [anon_sym_PLUS] = ACTIONS(6072), + [anon_sym_STAR] = ACTIONS(6074), + [anon_sym_SLASH] = ACTIONS(6072), + [anon_sym_PERCENT] = ACTIONS(6074), + [anon_sym_PIPE_PIPE] = ACTIONS(6074), + [anon_sym_AMP_AMP] = ACTIONS(6074), + [anon_sym_PIPE] = ACTIONS(6072), + [anon_sym_CARET] = ACTIONS(6074), + [anon_sym_AMP] = ACTIONS(6072), + [anon_sym_EQ_EQ] = ACTIONS(6074), + [anon_sym_BANG_EQ] = ACTIONS(6074), + [anon_sym_GT] = ACTIONS(6072), + [anon_sym_GT_EQ] = ACTIONS(6074), + [anon_sym_LT_EQ] = ACTIONS(6072), + [anon_sym_LT] = ACTIONS(6072), + [anon_sym_LT_LT] = ACTIONS(6074), + [anon_sym_GT_GT] = ACTIONS(6074), + [anon_sym_SEMI] = ACTIONS(6074), + [anon_sym___extension__] = ACTIONS(6074), + [anon_sym___attribute__] = ACTIONS(6031), + [anon_sym___attribute] = ACTIONS(6033), + [anon_sym_COLON] = ACTIONS(6074), + [anon_sym_LBRACE] = ACTIONS(6256), + [anon_sym_RBRACE] = ACTIONS(6074), + [anon_sym_LBRACK] = ACTIONS(6074), + [anon_sym_RBRACK] = ACTIONS(6074), + [anon_sym_const] = ACTIONS(6072), + [anon_sym_constexpr] = ACTIONS(6074), + [anon_sym_volatile] = ACTIONS(6074), + [anon_sym_restrict] = ACTIONS(6074), + [anon_sym___restrict__] = ACTIONS(6074), + [anon_sym__Atomic] = ACTIONS(6074), + [anon_sym__Noreturn] = ACTIONS(6074), + [anon_sym_noreturn] = ACTIONS(6074), + [anon_sym__Nonnull] = ACTIONS(6074), + [anon_sym_mutable] = ACTIONS(6074), + [anon_sym_constinit] = ACTIONS(6074), + [anon_sym_consteval] = ACTIONS(6074), + [anon_sym_alignas] = ACTIONS(6074), + [anon_sym__Alignas] = ACTIONS(6074), + [anon_sym_QMARK] = ACTIONS(6074), + [anon_sym_LT_EQ_GT] = ACTIONS(6074), + [anon_sym_or] = ACTIONS(6074), + [anon_sym_and] = ACTIONS(6074), + [anon_sym_bitor] = ACTIONS(6074), + [anon_sym_xor] = ACTIONS(6074), + [anon_sym_bitand] = ACTIONS(6074), + [anon_sym_not_eq] = ACTIONS(6074), + [anon_sym_DASH_DASH] = ACTIONS(6074), + [anon_sym_PLUS_PLUS] = ACTIONS(6074), + [anon_sym_DOT] = ACTIONS(6072), + [anon_sym_DOT_STAR] = ACTIONS(6074), + [anon_sym_DASH_GT] = ACTIONS(6074), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6074), + [anon_sym_decltype] = ACTIONS(6074), + [anon_sym_final] = ACTIONS(6074), + [anon_sym_override] = ACTIONS(6074), + [anon_sym_requires] = ACTIONS(6074), + }, + [2277] = { + [sym_identifier] = ACTIONS(5541), + [anon_sym_LPAREN2] = ACTIONS(5543), + [anon_sym_TILDE] = ACTIONS(5543), + [anon_sym_STAR] = ACTIONS(5543), + [anon_sym_PIPE_PIPE] = ACTIONS(5543), + [anon_sym_AMP_AMP] = ACTIONS(5543), + [anon_sym_AMP] = ACTIONS(5541), + [anon_sym___extension__] = ACTIONS(5541), + [anon_sym_virtual] = ACTIONS(5541), + [anon_sym_extern] = ACTIONS(5541), + [anon_sym___attribute__] = ACTIONS(5541), + [anon_sym___attribute] = ACTIONS(5541), + [anon_sym_using] = ACTIONS(5541), + [anon_sym_COLON_COLON] = ACTIONS(5519), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5543), + [anon_sym___declspec] = ACTIONS(5541), + [anon_sym___based] = ACTIONS(5541), + [anon_sym___cdecl] = ACTIONS(5541), + [anon_sym___clrcall] = ACTIONS(5541), + [anon_sym___stdcall] = ACTIONS(5541), + [anon_sym___fastcall] = ACTIONS(5541), + [anon_sym___thiscall] = ACTIONS(5541), + [anon_sym___vectorcall] = ACTIONS(5541), + [anon_sym_signed] = ACTIONS(5541), + [anon_sym_unsigned] = ACTIONS(5541), + [anon_sym_long] = ACTIONS(5541), + [anon_sym_short] = ACTIONS(5541), + [anon_sym_LBRACK] = ACTIONS(5541), + [anon_sym_static] = ACTIONS(5541), + [anon_sym_register] = ACTIONS(5541), + [anon_sym_inline] = ACTIONS(5541), + [anon_sym___inline] = ACTIONS(5541), + [anon_sym___inline__] = ACTIONS(5541), + [anon_sym___forceinline] = ACTIONS(5541), + [anon_sym_thread_local] = ACTIONS(5541), + [anon_sym___thread] = ACTIONS(5541), + [anon_sym_const] = ACTIONS(5541), + [anon_sym_constexpr] = ACTIONS(5541), + [anon_sym_volatile] = ACTIONS(5541), + [anon_sym_restrict] = ACTIONS(5541), + [anon_sym___restrict__] = ACTIONS(5541), + [anon_sym__Atomic] = ACTIONS(5541), + [anon_sym__Noreturn] = ACTIONS(5541), + [anon_sym_noreturn] = ACTIONS(5541), + [anon_sym__Nonnull] = ACTIONS(5541), + [anon_sym_mutable] = ACTIONS(5541), + [anon_sym_constinit] = ACTIONS(5541), + [anon_sym_consteval] = ACTIONS(5541), + [anon_sym_alignas] = ACTIONS(5541), + [anon_sym__Alignas] = ACTIONS(5541), + [sym_primitive_type] = ACTIONS(5541), + [anon_sym_enum] = ACTIONS(5541), + [anon_sym_class] = ACTIONS(5541), + [anon_sym_struct] = ACTIONS(5541), + [anon_sym_union] = ACTIONS(5541), + [anon_sym_or] = ACTIONS(5541), + [anon_sym_and] = ACTIONS(5541), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5541), + [anon_sym_decltype] = ACTIONS(5541), + [anon_sym_explicit] = ACTIONS(5541), + [anon_sym_typename] = ACTIONS(5541), + [anon_sym_template] = ACTIONS(5541), + [anon_sym_operator] = ACTIONS(5541), + [anon_sym_friend] = ACTIONS(5541), + [anon_sym_concept] = ACTIONS(5541), + }, + [2278] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2334), + [sym_identifier] = ACTIONS(5980), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5978), + [anon_sym_COMMA] = ACTIONS(5978), + [aux_sym_preproc_if_token2] = ACTIONS(5978), + [aux_sym_preproc_else_token1] = ACTIONS(5978), + [aux_sym_preproc_elif_token1] = ACTIONS(5980), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5978), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5978), + [anon_sym_LPAREN2] = ACTIONS(5978), + [anon_sym_DASH] = ACTIONS(5980), + [anon_sym_PLUS] = ACTIONS(5980), + [anon_sym_STAR] = ACTIONS(5980), + [anon_sym_SLASH] = ACTIONS(5980), + [anon_sym_PERCENT] = ACTIONS(5980), + [anon_sym_PIPE_PIPE] = ACTIONS(5978), + [anon_sym_AMP_AMP] = ACTIONS(5978), + [anon_sym_PIPE] = ACTIONS(5980), + [anon_sym_CARET] = ACTIONS(5980), + [anon_sym_AMP] = ACTIONS(5980), + [anon_sym_EQ_EQ] = ACTIONS(5978), + [anon_sym_BANG_EQ] = ACTIONS(5978), + [anon_sym_GT] = ACTIONS(5980), + [anon_sym_GT_EQ] = ACTIONS(5978), + [anon_sym_LT_EQ] = ACTIONS(5980), + [anon_sym_LT] = ACTIONS(5980), + [anon_sym_LT_LT] = ACTIONS(5980), + [anon_sym_GT_GT] = ACTIONS(5980), + [anon_sym___attribute__] = ACTIONS(5980), + [anon_sym___attribute] = ACTIONS(5980), + [anon_sym_LBRACE] = ACTIONS(5978), + [anon_sym_signed] = ACTIONS(6234), + [anon_sym_unsigned] = ACTIONS(6234), + [anon_sym_long] = ACTIONS(6234), + [anon_sym_short] = ACTIONS(6234), + [anon_sym_LBRACK] = ACTIONS(5978), + [anon_sym_EQ] = ACTIONS(5980), + [anon_sym_QMARK] = ACTIONS(5978), + [anon_sym_STAR_EQ] = ACTIONS(5978), + [anon_sym_SLASH_EQ] = ACTIONS(5978), + [anon_sym_PERCENT_EQ] = ACTIONS(5978), + [anon_sym_PLUS_EQ] = ACTIONS(5978), + [anon_sym_DASH_EQ] = ACTIONS(5978), + [anon_sym_LT_LT_EQ] = ACTIONS(5978), + [anon_sym_GT_GT_EQ] = ACTIONS(5978), + [anon_sym_AMP_EQ] = ACTIONS(5978), + [anon_sym_CARET_EQ] = ACTIONS(5978), + [anon_sym_PIPE_EQ] = ACTIONS(5978), + [anon_sym_and_eq] = ACTIONS(5980), + [anon_sym_or_eq] = ACTIONS(5980), + [anon_sym_xor_eq] = ACTIONS(5980), + [anon_sym_LT_EQ_GT] = ACTIONS(5978), + [anon_sym_or] = ACTIONS(5980), + [anon_sym_and] = ACTIONS(5980), + [anon_sym_bitor] = ACTIONS(5980), + [anon_sym_xor] = ACTIONS(5980), + [anon_sym_bitand] = ACTIONS(5980), + [anon_sym_not_eq] = ACTIONS(5980), + [anon_sym_DASH_DASH] = ACTIONS(5978), + [anon_sym_PLUS_PLUS] = ACTIONS(5978), + [anon_sym_DOT] = ACTIONS(5980), + [anon_sym_DOT_STAR] = ACTIONS(5978), + [anon_sym_DASH_GT] = ACTIONS(5978), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5980), + [anon_sym_decltype] = ACTIONS(5980), + }, + [2279] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2334), + [sym_identifier] = ACTIONS(5988), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5986), + [anon_sym_COMMA] = ACTIONS(5986), + [aux_sym_preproc_if_token2] = ACTIONS(5986), + [aux_sym_preproc_else_token1] = ACTIONS(5986), + [aux_sym_preproc_elif_token1] = ACTIONS(5988), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5986), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5986), + [anon_sym_LPAREN2] = ACTIONS(5986), + [anon_sym_DASH] = ACTIONS(5988), + [anon_sym_PLUS] = ACTIONS(5988), + [anon_sym_STAR] = ACTIONS(5988), + [anon_sym_SLASH] = ACTIONS(5988), + [anon_sym_PERCENT] = ACTIONS(5988), + [anon_sym_PIPE_PIPE] = ACTIONS(5986), + [anon_sym_AMP_AMP] = ACTIONS(5986), + [anon_sym_PIPE] = ACTIONS(5988), + [anon_sym_CARET] = ACTIONS(5988), + [anon_sym_AMP] = ACTIONS(5988), + [anon_sym_EQ_EQ] = ACTIONS(5986), + [anon_sym_BANG_EQ] = ACTIONS(5986), + [anon_sym_GT] = ACTIONS(5988), + [anon_sym_GT_EQ] = ACTIONS(5986), + [anon_sym_LT_EQ] = ACTIONS(5988), + [anon_sym_LT] = ACTIONS(5988), + [anon_sym_LT_LT] = ACTIONS(5988), + [anon_sym_GT_GT] = ACTIONS(5988), + [anon_sym___attribute__] = ACTIONS(5988), + [anon_sym___attribute] = ACTIONS(5988), + [anon_sym_LBRACE] = ACTIONS(5986), + [anon_sym_signed] = ACTIONS(6234), + [anon_sym_unsigned] = ACTIONS(6234), + [anon_sym_long] = ACTIONS(6234), + [anon_sym_short] = ACTIONS(6234), + [anon_sym_LBRACK] = ACTIONS(5986), + [anon_sym_EQ] = ACTIONS(5988), + [anon_sym_QMARK] = ACTIONS(5986), + [anon_sym_STAR_EQ] = ACTIONS(5986), + [anon_sym_SLASH_EQ] = ACTIONS(5986), + [anon_sym_PERCENT_EQ] = ACTIONS(5986), + [anon_sym_PLUS_EQ] = ACTIONS(5986), + [anon_sym_DASH_EQ] = ACTIONS(5986), + [anon_sym_LT_LT_EQ] = ACTIONS(5986), + [anon_sym_GT_GT_EQ] = ACTIONS(5986), + [anon_sym_AMP_EQ] = ACTIONS(5986), + [anon_sym_CARET_EQ] = ACTIONS(5986), + [anon_sym_PIPE_EQ] = ACTIONS(5986), + [anon_sym_and_eq] = ACTIONS(5988), + [anon_sym_or_eq] = ACTIONS(5988), + [anon_sym_xor_eq] = ACTIONS(5988), + [anon_sym_LT_EQ_GT] = ACTIONS(5986), + [anon_sym_or] = ACTIONS(5988), + [anon_sym_and] = ACTIONS(5988), + [anon_sym_bitor] = ACTIONS(5988), + [anon_sym_xor] = ACTIONS(5988), + [anon_sym_bitand] = ACTIONS(5988), + [anon_sym_not_eq] = ACTIONS(5988), + [anon_sym_DASH_DASH] = ACTIONS(5986), + [anon_sym_PLUS_PLUS] = ACTIONS(5986), + [anon_sym_DOT] = ACTIONS(5988), + [anon_sym_DOT_STAR] = ACTIONS(5986), + [anon_sym_DASH_GT] = ACTIONS(5986), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5988), + [anon_sym_decltype] = ACTIONS(5988), + }, + [2280] = { + [sym_identifier] = ACTIONS(5808), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5810), + [anon_sym_COMMA] = ACTIONS(5810), + [anon_sym_RPAREN] = ACTIONS(5810), + [aux_sym_preproc_if_token2] = ACTIONS(5810), + [aux_sym_preproc_else_token1] = ACTIONS(5810), + [aux_sym_preproc_elif_token1] = ACTIONS(5808), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5810), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5810), + [anon_sym_LPAREN2] = ACTIONS(5810), + [anon_sym_DASH] = ACTIONS(5808), + [anon_sym_PLUS] = ACTIONS(5808), + [anon_sym_STAR] = ACTIONS(5808), + [anon_sym_SLASH] = ACTIONS(5808), + [anon_sym_PERCENT] = ACTIONS(5808), + [anon_sym_PIPE_PIPE] = ACTIONS(5810), + [anon_sym_AMP_AMP] = ACTIONS(5810), + [anon_sym_PIPE] = ACTIONS(5808), + [anon_sym_CARET] = ACTIONS(5808), + [anon_sym_AMP] = ACTIONS(5808), + [anon_sym_EQ_EQ] = ACTIONS(5810), + [anon_sym_BANG_EQ] = ACTIONS(5810), + [anon_sym_GT] = ACTIONS(5808), + [anon_sym_GT_EQ] = ACTIONS(5810), + [anon_sym_LT_EQ] = ACTIONS(5808), + [anon_sym_LT] = ACTIONS(5808), + [anon_sym_LT_LT] = ACTIONS(5808), + [anon_sym_GT_GT] = ACTIONS(5808), + [anon_sym_SEMI] = ACTIONS(5810), + [anon_sym___attribute__] = ACTIONS(5808), + [anon_sym___attribute] = ACTIONS(5808), + [anon_sym_COLON] = ACTIONS(5810), + [anon_sym_LBRACE] = ACTIONS(5810), + [anon_sym_RBRACE] = ACTIONS(5810), + [anon_sym_LBRACK] = ACTIONS(5810), + [anon_sym_RBRACK] = ACTIONS(5810), + [anon_sym_EQ] = ACTIONS(5808), + [anon_sym_QMARK] = ACTIONS(5810), + [anon_sym_STAR_EQ] = ACTIONS(5810), + [anon_sym_SLASH_EQ] = ACTIONS(5810), + [anon_sym_PERCENT_EQ] = ACTIONS(5810), + [anon_sym_PLUS_EQ] = ACTIONS(5810), + [anon_sym_DASH_EQ] = ACTIONS(5810), + [anon_sym_LT_LT_EQ] = ACTIONS(5810), + [anon_sym_GT_GT_EQ] = ACTIONS(5810), + [anon_sym_AMP_EQ] = ACTIONS(5810), + [anon_sym_CARET_EQ] = ACTIONS(5810), + [anon_sym_PIPE_EQ] = ACTIONS(5810), + [anon_sym_and_eq] = ACTIONS(5808), + [anon_sym_or_eq] = ACTIONS(5808), + [anon_sym_xor_eq] = ACTIONS(5808), + [anon_sym_LT_EQ_GT] = ACTIONS(5810), + [anon_sym_or] = ACTIONS(5808), + [anon_sym_and] = ACTIONS(5808), + [anon_sym_bitor] = ACTIONS(5808), + [anon_sym_xor] = ACTIONS(5808), + [anon_sym_bitand] = ACTIONS(5808), + [anon_sym_not_eq] = ACTIONS(5808), + [anon_sym_DASH_DASH] = ACTIONS(5810), + [anon_sym_PLUS_PLUS] = ACTIONS(5810), + [anon_sym_DOT] = ACTIONS(5808), + [anon_sym_DOT_STAR] = ACTIONS(5810), + [anon_sym_DASH_GT] = ACTIONS(5810), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5808), + [anon_sym_decltype] = ACTIONS(5808), + }, + [2281] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2295), + [sym_identifier] = ACTIONS(5935), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5933), + [anon_sym_COMMA] = ACTIONS(5933), + [aux_sym_preproc_if_token2] = ACTIONS(5933), + [aux_sym_preproc_else_token1] = ACTIONS(5933), + [aux_sym_preproc_elif_token1] = ACTIONS(5935), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5933), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5933), + [anon_sym_LPAREN2] = ACTIONS(5933), + [anon_sym_DASH] = ACTIONS(5935), + [anon_sym_PLUS] = ACTIONS(5935), + [anon_sym_STAR] = ACTIONS(5935), + [anon_sym_SLASH] = ACTIONS(5935), + [anon_sym_PERCENT] = ACTIONS(5935), + [anon_sym_PIPE_PIPE] = ACTIONS(5933), + [anon_sym_AMP_AMP] = ACTIONS(5933), + [anon_sym_PIPE] = ACTIONS(5935), + [anon_sym_CARET] = ACTIONS(5935), + [anon_sym_AMP] = ACTIONS(5935), + [anon_sym_EQ_EQ] = ACTIONS(5933), + [anon_sym_BANG_EQ] = ACTIONS(5933), + [anon_sym_GT] = ACTIONS(5935), + [anon_sym_GT_EQ] = ACTIONS(5933), + [anon_sym_LT_EQ] = ACTIONS(5935), + [anon_sym_LT] = ACTIONS(5935), + [anon_sym_LT_LT] = ACTIONS(5935), + [anon_sym_GT_GT] = ACTIONS(5935), + [anon_sym___attribute__] = ACTIONS(5935), + [anon_sym___attribute] = ACTIONS(5935), + [anon_sym_LBRACE] = ACTIONS(5933), + [anon_sym_signed] = ACTIONS(6258), + [anon_sym_unsigned] = ACTIONS(6258), + [anon_sym_long] = ACTIONS(6258), + [anon_sym_short] = ACTIONS(6258), + [anon_sym_LBRACK] = ACTIONS(5933), + [anon_sym_EQ] = ACTIONS(5935), + [anon_sym_QMARK] = ACTIONS(5933), + [anon_sym_STAR_EQ] = ACTIONS(5933), + [anon_sym_SLASH_EQ] = ACTIONS(5933), + [anon_sym_PERCENT_EQ] = ACTIONS(5933), + [anon_sym_PLUS_EQ] = ACTIONS(5933), + [anon_sym_DASH_EQ] = ACTIONS(5933), + [anon_sym_LT_LT_EQ] = ACTIONS(5933), + [anon_sym_GT_GT_EQ] = ACTIONS(5933), + [anon_sym_AMP_EQ] = ACTIONS(5933), + [anon_sym_CARET_EQ] = ACTIONS(5933), + [anon_sym_PIPE_EQ] = ACTIONS(5933), + [anon_sym_and_eq] = ACTIONS(5935), + [anon_sym_or_eq] = ACTIONS(5935), + [anon_sym_xor_eq] = ACTIONS(5935), + [anon_sym_LT_EQ_GT] = ACTIONS(5933), + [anon_sym_or] = ACTIONS(5935), + [anon_sym_and] = ACTIONS(5935), + [anon_sym_bitor] = ACTIONS(5935), + [anon_sym_xor] = ACTIONS(5935), + [anon_sym_bitand] = ACTIONS(5935), + [anon_sym_not_eq] = ACTIONS(5935), + [anon_sym_DASH_DASH] = ACTIONS(5933), + [anon_sym_PLUS_PLUS] = ACTIONS(5933), + [anon_sym_DOT] = ACTIONS(5935), + [anon_sym_DOT_STAR] = ACTIONS(5933), + [anon_sym_DASH_GT] = ACTIONS(5933), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5935), + [anon_sym_decltype] = ACTIONS(5935), + }, + [2282] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2297), + [sym_identifier] = ACTIONS(5887), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5885), + [anon_sym_COMMA] = ACTIONS(5885), + [aux_sym_preproc_if_token2] = ACTIONS(5885), + [aux_sym_preproc_else_token1] = ACTIONS(5885), + [aux_sym_preproc_elif_token1] = ACTIONS(5887), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5885), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5885), + [anon_sym_LPAREN2] = ACTIONS(5885), + [anon_sym_DASH] = ACTIONS(5887), + [anon_sym_PLUS] = ACTIONS(5887), + [anon_sym_STAR] = ACTIONS(5887), + [anon_sym_SLASH] = ACTIONS(5887), + [anon_sym_PERCENT] = ACTIONS(5887), + [anon_sym_PIPE_PIPE] = ACTIONS(5885), + [anon_sym_AMP_AMP] = ACTIONS(5885), + [anon_sym_PIPE] = ACTIONS(5887), + [anon_sym_CARET] = ACTIONS(5887), + [anon_sym_AMP] = ACTIONS(5887), + [anon_sym_EQ_EQ] = ACTIONS(5885), + [anon_sym_BANG_EQ] = ACTIONS(5885), + [anon_sym_GT] = ACTIONS(5887), + [anon_sym_GT_EQ] = ACTIONS(5885), + [anon_sym_LT_EQ] = ACTIONS(5887), + [anon_sym_LT] = ACTIONS(5887), + [anon_sym_LT_LT] = ACTIONS(5887), + [anon_sym_GT_GT] = ACTIONS(5887), + [anon_sym___attribute__] = ACTIONS(5887), + [anon_sym___attribute] = ACTIONS(5887), + [anon_sym_LBRACE] = ACTIONS(5885), + [anon_sym_signed] = ACTIONS(6260), + [anon_sym_unsigned] = ACTIONS(6260), + [anon_sym_long] = ACTIONS(6260), + [anon_sym_short] = ACTIONS(6260), + [anon_sym_LBRACK] = ACTIONS(5885), + [anon_sym_EQ] = ACTIONS(5887), + [anon_sym_QMARK] = ACTIONS(5885), + [anon_sym_STAR_EQ] = ACTIONS(5885), + [anon_sym_SLASH_EQ] = ACTIONS(5885), + [anon_sym_PERCENT_EQ] = ACTIONS(5885), + [anon_sym_PLUS_EQ] = ACTIONS(5885), + [anon_sym_DASH_EQ] = ACTIONS(5885), + [anon_sym_LT_LT_EQ] = ACTIONS(5885), + [anon_sym_GT_GT_EQ] = ACTIONS(5885), + [anon_sym_AMP_EQ] = ACTIONS(5885), + [anon_sym_CARET_EQ] = ACTIONS(5885), + [anon_sym_PIPE_EQ] = ACTIONS(5885), + [anon_sym_and_eq] = ACTIONS(5887), + [anon_sym_or_eq] = ACTIONS(5887), + [anon_sym_xor_eq] = ACTIONS(5887), + [anon_sym_LT_EQ_GT] = ACTIONS(5885), + [anon_sym_or] = ACTIONS(5887), + [anon_sym_and] = ACTIONS(5887), + [anon_sym_bitor] = ACTIONS(5887), + [anon_sym_xor] = ACTIONS(5887), + [anon_sym_bitand] = ACTIONS(5887), + [anon_sym_not_eq] = ACTIONS(5887), + [anon_sym_DASH_DASH] = ACTIONS(5885), + [anon_sym_PLUS_PLUS] = ACTIONS(5885), + [anon_sym_DOT] = ACTIONS(5887), + [anon_sym_DOT_STAR] = ACTIONS(5885), + [anon_sym_DASH_GT] = ACTIONS(5885), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5887), + [anon_sym_decltype] = ACTIONS(5887), + }, + [2283] = { + [sym_identifier] = ACTIONS(5010), + [anon_sym_LPAREN2] = ACTIONS(5012), + [anon_sym_TILDE] = ACTIONS(5012), + [anon_sym_STAR] = ACTIONS(5012), + [anon_sym_PIPE_PIPE] = ACTIONS(5012), + [anon_sym_AMP_AMP] = ACTIONS(5012), + [anon_sym_AMP] = ACTIONS(5010), + [anon_sym___extension__] = ACTIONS(5010), + [anon_sym_virtual] = ACTIONS(5010), + [anon_sym_extern] = ACTIONS(5010), + [anon_sym___attribute__] = ACTIONS(5010), + [anon_sym___attribute] = ACTIONS(5010), + [anon_sym_using] = ACTIONS(5010), + [anon_sym_COLON_COLON] = ACTIONS(5012), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5012), + [anon_sym___declspec] = ACTIONS(5010), + [anon_sym___based] = ACTIONS(5010), + [anon_sym___cdecl] = ACTIONS(5010), + [anon_sym___clrcall] = ACTIONS(5010), + [anon_sym___stdcall] = ACTIONS(5010), + [anon_sym___fastcall] = ACTIONS(5010), + [anon_sym___thiscall] = ACTIONS(5010), + [anon_sym___vectorcall] = ACTIONS(5010), + [anon_sym_signed] = ACTIONS(5010), + [anon_sym_unsigned] = ACTIONS(5010), + [anon_sym_long] = ACTIONS(5010), + [anon_sym_short] = ACTIONS(5010), + [anon_sym_LBRACK] = ACTIONS(5010), + [anon_sym_static] = ACTIONS(5010), + [anon_sym_register] = ACTIONS(5010), + [anon_sym_inline] = ACTIONS(5010), + [anon_sym___inline] = ACTIONS(5010), + [anon_sym___inline__] = ACTIONS(5010), + [anon_sym___forceinline] = ACTIONS(5010), + [anon_sym_thread_local] = ACTIONS(5010), + [anon_sym___thread] = ACTIONS(5010), + [anon_sym_const] = ACTIONS(5010), + [anon_sym_constexpr] = ACTIONS(5010), + [anon_sym_volatile] = ACTIONS(5010), + [anon_sym_restrict] = ACTIONS(5010), + [anon_sym___restrict__] = ACTIONS(5010), + [anon_sym__Atomic] = ACTIONS(5010), + [anon_sym__Noreturn] = ACTIONS(5010), + [anon_sym_noreturn] = ACTIONS(5010), + [anon_sym__Nonnull] = ACTIONS(5010), + [anon_sym_mutable] = ACTIONS(5010), + [anon_sym_constinit] = ACTIONS(5010), + [anon_sym_consteval] = ACTIONS(5010), + [anon_sym_alignas] = ACTIONS(5010), + [anon_sym__Alignas] = ACTIONS(5010), + [sym_primitive_type] = ACTIONS(5010), + [anon_sym_enum] = ACTIONS(5010), + [anon_sym_class] = ACTIONS(5010), + [anon_sym_struct] = ACTIONS(5010), + [anon_sym_union] = ACTIONS(5010), + [anon_sym_or] = ACTIONS(5010), + [anon_sym_and] = ACTIONS(5010), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5010), + [anon_sym_decltype] = ACTIONS(5010), + [anon_sym_explicit] = ACTIONS(5010), + [anon_sym_typename] = ACTIONS(5010), + [anon_sym_template] = ACTIONS(5010), + [anon_sym_operator] = ACTIONS(5010), + [anon_sym_friend] = ACTIONS(5010), + [anon_sym_concept] = ACTIONS(5010), + }, + [2284] = { + [sym_argument_list] = STATE(2479), + [sym_initializer_list] = STATE(2479), + [sym_identifier] = ACTIONS(6262), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6264), + [anon_sym_COMMA] = ACTIONS(6264), + [anon_sym_RPAREN] = ACTIONS(6264), + [aux_sym_preproc_if_token2] = ACTIONS(6264), + [aux_sym_preproc_else_token1] = ACTIONS(6264), + [aux_sym_preproc_elif_token1] = ACTIONS(6262), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6264), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6264), + [anon_sym_LPAREN2] = ACTIONS(5845), + [anon_sym_DASH] = ACTIONS(6262), + [anon_sym_PLUS] = ACTIONS(6262), + [anon_sym_STAR] = ACTIONS(6262), + [anon_sym_SLASH] = ACTIONS(6262), + [anon_sym_PERCENT] = ACTIONS(6262), + [anon_sym_PIPE_PIPE] = ACTIONS(6264), + [anon_sym_AMP_AMP] = ACTIONS(6264), + [anon_sym_PIPE] = ACTIONS(6262), + [anon_sym_CARET] = ACTIONS(6262), + [anon_sym_AMP] = ACTIONS(6262), + [anon_sym_EQ_EQ] = ACTIONS(6264), + [anon_sym_BANG_EQ] = ACTIONS(6264), + [anon_sym_GT] = ACTIONS(6262), + [anon_sym_GT_EQ] = ACTIONS(6264), + [anon_sym_LT_EQ] = ACTIONS(6262), + [anon_sym_LT] = ACTIONS(6262), + [anon_sym_LT_LT] = ACTIONS(6262), + [anon_sym_GT_GT] = ACTIONS(6262), + [anon_sym_SEMI] = ACTIONS(6264), + [anon_sym___attribute__] = ACTIONS(6262), + [anon_sym___attribute] = ACTIONS(6262), + [anon_sym_COLON] = ACTIONS(6264), [anon_sym_LBRACE] = ACTIONS(1954), - [anon_sym_RBRACE] = ACTIONS(6206), - [anon_sym_LBRACK] = ACTIONS(6206), - [anon_sym_RBRACK] = ACTIONS(6206), - [anon_sym_EQ] = ACTIONS(6204), - [anon_sym_QMARK] = ACTIONS(6206), - [anon_sym_STAR_EQ] = ACTIONS(6206), - [anon_sym_SLASH_EQ] = ACTIONS(6206), - [anon_sym_PERCENT_EQ] = ACTIONS(6206), - [anon_sym_PLUS_EQ] = ACTIONS(6206), - [anon_sym_DASH_EQ] = ACTIONS(6206), - [anon_sym_LT_LT_EQ] = ACTIONS(6206), - [anon_sym_GT_GT_EQ] = ACTIONS(6206), - [anon_sym_AMP_EQ] = ACTIONS(6206), - [anon_sym_CARET_EQ] = ACTIONS(6206), - [anon_sym_PIPE_EQ] = ACTIONS(6206), - [anon_sym_and_eq] = ACTIONS(6204), - [anon_sym_or_eq] = ACTIONS(6204), - [anon_sym_xor_eq] = ACTIONS(6204), - [anon_sym_LT_EQ_GT] = ACTIONS(6206), - [anon_sym_or] = ACTIONS(6204), - [anon_sym_and] = ACTIONS(6204), - [anon_sym_bitor] = ACTIONS(6204), - [anon_sym_xor] = ACTIONS(6204), - [anon_sym_bitand] = ACTIONS(6204), - [anon_sym_not_eq] = ACTIONS(6204), - [anon_sym_DASH_DASH] = ACTIONS(6206), - [anon_sym_PLUS_PLUS] = ACTIONS(6206), - [anon_sym_DOT] = ACTIONS(6204), - [anon_sym_DOT_STAR] = ACTIONS(6206), - [anon_sym_DASH_GT] = ACTIONS(6206), + [anon_sym_RBRACE] = ACTIONS(6264), + [anon_sym_LBRACK] = ACTIONS(6264), + [anon_sym_RBRACK] = ACTIONS(6264), + [anon_sym_EQ] = ACTIONS(6262), + [anon_sym_QMARK] = ACTIONS(6264), + [anon_sym_STAR_EQ] = ACTIONS(6264), + [anon_sym_SLASH_EQ] = ACTIONS(6264), + [anon_sym_PERCENT_EQ] = ACTIONS(6264), + [anon_sym_PLUS_EQ] = ACTIONS(6264), + [anon_sym_DASH_EQ] = ACTIONS(6264), + [anon_sym_LT_LT_EQ] = ACTIONS(6264), + [anon_sym_GT_GT_EQ] = ACTIONS(6264), + [anon_sym_AMP_EQ] = ACTIONS(6264), + [anon_sym_CARET_EQ] = ACTIONS(6264), + [anon_sym_PIPE_EQ] = ACTIONS(6264), + [anon_sym_and_eq] = ACTIONS(6262), + [anon_sym_or_eq] = ACTIONS(6262), + [anon_sym_xor_eq] = ACTIONS(6262), + [anon_sym_LT_EQ_GT] = ACTIONS(6264), + [anon_sym_or] = ACTIONS(6262), + [anon_sym_and] = ACTIONS(6262), + [anon_sym_bitor] = ACTIONS(6262), + [anon_sym_xor] = ACTIONS(6262), + [anon_sym_bitand] = ACTIONS(6262), + [anon_sym_not_eq] = ACTIONS(6262), + [anon_sym_DASH_DASH] = ACTIONS(6264), + [anon_sym_PLUS_PLUS] = ACTIONS(6264), + [anon_sym_DOT] = ACTIONS(6262), + [anon_sym_DOT_STAR] = ACTIONS(6264), + [anon_sym_DASH_GT] = ACTIONS(6264), [sym_comment] = ACTIONS(3), }, - [2223] = { - [sym_identifier] = ACTIONS(5681), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5683), - [anon_sym_COMMA] = ACTIONS(5683), - [anon_sym_RPAREN] = ACTIONS(5683), - [aux_sym_preproc_if_token2] = ACTIONS(5683), - [aux_sym_preproc_else_token1] = ACTIONS(5683), - [aux_sym_preproc_elif_token1] = ACTIONS(5681), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5683), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5683), - [anon_sym_LPAREN2] = ACTIONS(5683), - [anon_sym_DASH] = ACTIONS(5681), - [anon_sym_PLUS] = ACTIONS(5681), - [anon_sym_STAR] = ACTIONS(5681), - [anon_sym_SLASH] = ACTIONS(5681), - [anon_sym_PERCENT] = ACTIONS(5681), - [anon_sym_PIPE_PIPE] = ACTIONS(5683), - [anon_sym_AMP_AMP] = ACTIONS(5683), - [anon_sym_PIPE] = ACTIONS(5681), - [anon_sym_CARET] = ACTIONS(5681), - [anon_sym_AMP] = ACTIONS(5681), - [anon_sym_EQ_EQ] = ACTIONS(5683), - [anon_sym_BANG_EQ] = ACTIONS(5683), - [anon_sym_GT] = ACTIONS(5681), - [anon_sym_GT_EQ] = ACTIONS(5683), - [anon_sym_LT_EQ] = ACTIONS(5681), - [anon_sym_LT] = ACTIONS(5681), - [anon_sym_LT_LT] = ACTIONS(5681), - [anon_sym_GT_GT] = ACTIONS(5681), - [anon_sym_SEMI] = ACTIONS(5683), - [anon_sym___attribute__] = ACTIONS(5681), - [anon_sym___attribute] = ACTIONS(5681), - [anon_sym_COLON] = ACTIONS(5683), - [anon_sym_LBRACE] = ACTIONS(5683), - [anon_sym_RBRACE] = ACTIONS(5683), - [anon_sym_LBRACK] = ACTIONS(5683), - [anon_sym_RBRACK] = ACTIONS(5683), - [anon_sym_EQ] = ACTIONS(5681), - [anon_sym_QMARK] = ACTIONS(5683), - [anon_sym_STAR_EQ] = ACTIONS(5683), - [anon_sym_SLASH_EQ] = ACTIONS(5683), - [anon_sym_PERCENT_EQ] = ACTIONS(5683), - [anon_sym_PLUS_EQ] = ACTIONS(5683), - [anon_sym_DASH_EQ] = ACTIONS(5683), - [anon_sym_LT_LT_EQ] = ACTIONS(5683), - [anon_sym_GT_GT_EQ] = ACTIONS(5683), - [anon_sym_AMP_EQ] = ACTIONS(5683), - [anon_sym_CARET_EQ] = ACTIONS(5683), - [anon_sym_PIPE_EQ] = ACTIONS(5683), - [anon_sym_and_eq] = ACTIONS(5681), - [anon_sym_or_eq] = ACTIONS(5681), - [anon_sym_xor_eq] = ACTIONS(5681), - [anon_sym_LT_EQ_GT] = ACTIONS(5683), - [anon_sym_or] = ACTIONS(5681), - [anon_sym_and] = ACTIONS(5681), - [anon_sym_bitor] = ACTIONS(5681), - [anon_sym_xor] = ACTIONS(5681), - [anon_sym_bitand] = ACTIONS(5681), - [anon_sym_not_eq] = ACTIONS(5681), - [anon_sym_DASH_DASH] = ACTIONS(5683), - [anon_sym_PLUS_PLUS] = ACTIONS(5683), - [anon_sym_DOT] = ACTIONS(5681), - [anon_sym_DOT_STAR] = ACTIONS(5683), - [anon_sym_DASH_GT] = ACTIONS(5683), + [2285] = { + [sym_identifier] = ACTIONS(5812), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5814), + [anon_sym_COMMA] = ACTIONS(5814), + [anon_sym_RPAREN] = ACTIONS(5814), + [aux_sym_preproc_if_token2] = ACTIONS(5814), + [aux_sym_preproc_else_token1] = ACTIONS(5814), + [aux_sym_preproc_elif_token1] = ACTIONS(5812), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5814), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5814), + [anon_sym_LPAREN2] = ACTIONS(5814), + [anon_sym_DASH] = ACTIONS(5812), + [anon_sym_PLUS] = ACTIONS(5812), + [anon_sym_STAR] = ACTIONS(5812), + [anon_sym_SLASH] = ACTIONS(5812), + [anon_sym_PERCENT] = ACTIONS(5812), + [anon_sym_PIPE_PIPE] = ACTIONS(5814), + [anon_sym_AMP_AMP] = ACTIONS(5814), + [anon_sym_PIPE] = ACTIONS(5812), + [anon_sym_CARET] = ACTIONS(5812), + [anon_sym_AMP] = ACTIONS(5812), + [anon_sym_EQ_EQ] = ACTIONS(5814), + [anon_sym_BANG_EQ] = ACTIONS(5814), + [anon_sym_GT] = ACTIONS(5812), + [anon_sym_GT_EQ] = ACTIONS(5814), + [anon_sym_LT_EQ] = ACTIONS(5812), + [anon_sym_LT] = ACTIONS(5812), + [anon_sym_LT_LT] = ACTIONS(5812), + [anon_sym_GT_GT] = ACTIONS(5812), + [anon_sym_SEMI] = ACTIONS(5814), + [anon_sym___attribute__] = ACTIONS(5812), + [anon_sym___attribute] = ACTIONS(5812), + [anon_sym_COLON] = ACTIONS(5814), + [anon_sym_LBRACE] = ACTIONS(5814), + [anon_sym_RBRACE] = ACTIONS(5814), + [anon_sym_LBRACK] = ACTIONS(5814), + [anon_sym_RBRACK] = ACTIONS(5814), + [anon_sym_EQ] = ACTIONS(5812), + [anon_sym_QMARK] = ACTIONS(5814), + [anon_sym_STAR_EQ] = ACTIONS(5814), + [anon_sym_SLASH_EQ] = ACTIONS(5814), + [anon_sym_PERCENT_EQ] = ACTIONS(5814), + [anon_sym_PLUS_EQ] = ACTIONS(5814), + [anon_sym_DASH_EQ] = ACTIONS(5814), + [anon_sym_LT_LT_EQ] = ACTIONS(5814), + [anon_sym_GT_GT_EQ] = ACTIONS(5814), + [anon_sym_AMP_EQ] = ACTIONS(5814), + [anon_sym_CARET_EQ] = ACTIONS(5814), + [anon_sym_PIPE_EQ] = ACTIONS(5814), + [anon_sym_and_eq] = ACTIONS(5812), + [anon_sym_or_eq] = ACTIONS(5812), + [anon_sym_xor_eq] = ACTIONS(5812), + [anon_sym_LT_EQ_GT] = ACTIONS(5814), + [anon_sym_or] = ACTIONS(5812), + [anon_sym_and] = ACTIONS(5812), + [anon_sym_bitor] = ACTIONS(5812), + [anon_sym_xor] = ACTIONS(5812), + [anon_sym_bitand] = ACTIONS(5812), + [anon_sym_not_eq] = ACTIONS(5812), + [anon_sym_DASH_DASH] = ACTIONS(5814), + [anon_sym_PLUS_PLUS] = ACTIONS(5814), + [anon_sym_DOT] = ACTIONS(5812), + [anon_sym_DOT_STAR] = ACTIONS(5814), + [anon_sym_DASH_GT] = ACTIONS(5814), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5812), + [anon_sym_decltype] = ACTIONS(5812), + }, + [2286] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2334), + [sym_identifier] = ACTIONS(5893), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5891), + [anon_sym_COMMA] = ACTIONS(5891), + [aux_sym_preproc_if_token2] = ACTIONS(5891), + [aux_sym_preproc_else_token1] = ACTIONS(5891), + [aux_sym_preproc_elif_token1] = ACTIONS(5893), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5891), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5891), + [anon_sym_LPAREN2] = ACTIONS(5891), + [anon_sym_DASH] = ACTIONS(5893), + [anon_sym_PLUS] = ACTIONS(5893), + [anon_sym_STAR] = ACTIONS(5893), + [anon_sym_SLASH] = ACTIONS(5893), + [anon_sym_PERCENT] = ACTIONS(5893), + [anon_sym_PIPE_PIPE] = ACTIONS(5891), + [anon_sym_AMP_AMP] = ACTIONS(5891), + [anon_sym_PIPE] = ACTIONS(5893), + [anon_sym_CARET] = ACTIONS(5893), + [anon_sym_AMP] = ACTIONS(5893), + [anon_sym_EQ_EQ] = ACTIONS(5891), + [anon_sym_BANG_EQ] = ACTIONS(5891), + [anon_sym_GT] = ACTIONS(5893), + [anon_sym_GT_EQ] = ACTIONS(5891), + [anon_sym_LT_EQ] = ACTIONS(5893), + [anon_sym_LT] = ACTIONS(5893), + [anon_sym_LT_LT] = ACTIONS(5893), + [anon_sym_GT_GT] = ACTIONS(5893), + [anon_sym___attribute__] = ACTIONS(5893), + [anon_sym___attribute] = ACTIONS(5893), + [anon_sym_LBRACE] = ACTIONS(5891), + [anon_sym_signed] = ACTIONS(6234), + [anon_sym_unsigned] = ACTIONS(6234), + [anon_sym_long] = ACTIONS(6234), + [anon_sym_short] = ACTIONS(6234), + [anon_sym_LBRACK] = ACTIONS(5891), + [anon_sym_EQ] = ACTIONS(5893), + [anon_sym_QMARK] = ACTIONS(5891), + [anon_sym_STAR_EQ] = ACTIONS(5891), + [anon_sym_SLASH_EQ] = ACTIONS(5891), + [anon_sym_PERCENT_EQ] = ACTIONS(5891), + [anon_sym_PLUS_EQ] = ACTIONS(5891), + [anon_sym_DASH_EQ] = ACTIONS(5891), + [anon_sym_LT_LT_EQ] = ACTIONS(5891), + [anon_sym_GT_GT_EQ] = ACTIONS(5891), + [anon_sym_AMP_EQ] = ACTIONS(5891), + [anon_sym_CARET_EQ] = ACTIONS(5891), + [anon_sym_PIPE_EQ] = ACTIONS(5891), + [anon_sym_and_eq] = ACTIONS(5893), + [anon_sym_or_eq] = ACTIONS(5893), + [anon_sym_xor_eq] = ACTIONS(5893), + [anon_sym_LT_EQ_GT] = ACTIONS(5891), + [anon_sym_or] = ACTIONS(5893), + [anon_sym_and] = ACTIONS(5893), + [anon_sym_bitor] = ACTIONS(5893), + [anon_sym_xor] = ACTIONS(5893), + [anon_sym_bitand] = ACTIONS(5893), + [anon_sym_not_eq] = ACTIONS(5893), + [anon_sym_DASH_DASH] = ACTIONS(5891), + [anon_sym_PLUS_PLUS] = ACTIONS(5891), + [anon_sym_DOT] = ACTIONS(5893), + [anon_sym_DOT_STAR] = ACTIONS(5891), + [anon_sym_DASH_GT] = ACTIONS(5891), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5893), + [anon_sym_decltype] = ACTIONS(5893), + }, + [2287] = { + [sym_identifier] = ACTIONS(4998), + [anon_sym_LPAREN2] = ACTIONS(5000), + [anon_sym_TILDE] = ACTIONS(5000), + [anon_sym_STAR] = ACTIONS(5000), + [anon_sym_PIPE_PIPE] = ACTIONS(5000), + [anon_sym_AMP_AMP] = ACTIONS(5000), + [anon_sym_AMP] = ACTIONS(4998), + [anon_sym___extension__] = ACTIONS(4998), + [anon_sym_virtual] = ACTIONS(4998), + [anon_sym_extern] = ACTIONS(4998), + [anon_sym___attribute__] = ACTIONS(4998), + [anon_sym___attribute] = ACTIONS(4998), + [anon_sym_using] = ACTIONS(4998), + [anon_sym_COLON_COLON] = ACTIONS(5000), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5000), + [anon_sym___declspec] = ACTIONS(4998), + [anon_sym___based] = ACTIONS(4998), + [anon_sym___cdecl] = ACTIONS(4998), + [anon_sym___clrcall] = ACTIONS(4998), + [anon_sym___stdcall] = ACTIONS(4998), + [anon_sym___fastcall] = ACTIONS(4998), + [anon_sym___thiscall] = ACTIONS(4998), + [anon_sym___vectorcall] = ACTIONS(4998), + [anon_sym_signed] = ACTIONS(4998), + [anon_sym_unsigned] = ACTIONS(4998), + [anon_sym_long] = ACTIONS(4998), + [anon_sym_short] = ACTIONS(4998), + [anon_sym_LBRACK] = ACTIONS(4998), + [anon_sym_static] = ACTIONS(4998), + [anon_sym_register] = ACTIONS(4998), + [anon_sym_inline] = ACTIONS(4998), + [anon_sym___inline] = ACTIONS(4998), + [anon_sym___inline__] = ACTIONS(4998), + [anon_sym___forceinline] = ACTIONS(4998), + [anon_sym_thread_local] = ACTIONS(4998), + [anon_sym___thread] = ACTIONS(4998), + [anon_sym_const] = ACTIONS(4998), + [anon_sym_constexpr] = ACTIONS(4998), + [anon_sym_volatile] = ACTIONS(4998), + [anon_sym_restrict] = ACTIONS(4998), + [anon_sym___restrict__] = ACTIONS(4998), + [anon_sym__Atomic] = ACTIONS(4998), + [anon_sym__Noreturn] = ACTIONS(4998), + [anon_sym_noreturn] = ACTIONS(4998), + [anon_sym__Nonnull] = ACTIONS(4998), + [anon_sym_mutable] = ACTIONS(4998), + [anon_sym_constinit] = ACTIONS(4998), + [anon_sym_consteval] = ACTIONS(4998), + [anon_sym_alignas] = ACTIONS(4998), + [anon_sym__Alignas] = ACTIONS(4998), + [sym_primitive_type] = ACTIONS(4998), + [anon_sym_enum] = ACTIONS(4998), + [anon_sym_class] = ACTIONS(4998), + [anon_sym_struct] = ACTIONS(4998), + [anon_sym_union] = ACTIONS(4998), + [anon_sym_or] = ACTIONS(4998), + [anon_sym_and] = ACTIONS(4998), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4998), + [anon_sym_decltype] = ACTIONS(4998), + [anon_sym_explicit] = ACTIONS(4998), + [anon_sym_typename] = ACTIONS(4998), + [anon_sym_template] = ACTIONS(4998), + [anon_sym_operator] = ACTIONS(4998), + [anon_sym_friend] = ACTIONS(4998), + [anon_sym_concept] = ACTIONS(4998), + }, + [2288] = { + [sym_template_argument_list] = STATE(2375), + [sym_identifier] = ACTIONS(4934), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4927), + [anon_sym_COMMA] = ACTIONS(4927), + [anon_sym_RPAREN] = ACTIONS(4927), + [aux_sym_preproc_if_token2] = ACTIONS(4927), + [aux_sym_preproc_else_token1] = ACTIONS(4927), + [aux_sym_preproc_elif_token1] = ACTIONS(4934), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4927), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4927), + [anon_sym_LPAREN2] = ACTIONS(4927), + [anon_sym_DASH] = ACTIONS(4934), + [anon_sym_PLUS] = ACTIONS(4934), + [anon_sym_STAR] = ACTIONS(4934), + [anon_sym_SLASH] = ACTIONS(4934), + [anon_sym_PERCENT] = ACTIONS(4934), + [anon_sym_PIPE_PIPE] = ACTIONS(4927), + [anon_sym_AMP_AMP] = ACTIONS(4927), + [anon_sym_PIPE] = ACTIONS(4934), + [anon_sym_CARET] = ACTIONS(4934), + [anon_sym_AMP] = ACTIONS(4934), + [anon_sym_EQ_EQ] = ACTIONS(4927), + [anon_sym_BANG_EQ] = ACTIONS(4927), + [anon_sym_GT] = ACTIONS(4934), + [anon_sym_GT_EQ] = ACTIONS(4927), + [anon_sym_LT_EQ] = ACTIONS(4934), + [anon_sym_LT] = ACTIONS(5838), + [anon_sym_LT_LT] = ACTIONS(4934), + [anon_sym_GT_GT] = ACTIONS(4934), + [anon_sym_SEMI] = ACTIONS(4927), + [anon_sym___attribute__] = ACTIONS(4934), + [anon_sym___attribute] = ACTIONS(4934), + [anon_sym_COLON] = ACTIONS(4934), + [anon_sym_COLON_COLON] = ACTIONS(4187), + [anon_sym_LBRACE] = ACTIONS(4932), + [anon_sym_RBRACE] = ACTIONS(4927), + [anon_sym_LBRACK] = ACTIONS(4927), + [anon_sym_RBRACK] = ACTIONS(4927), + [anon_sym_EQ] = ACTIONS(4934), + [anon_sym_QMARK] = ACTIONS(4927), + [anon_sym_STAR_EQ] = ACTIONS(4927), + [anon_sym_SLASH_EQ] = ACTIONS(4927), + [anon_sym_PERCENT_EQ] = ACTIONS(4927), + [anon_sym_PLUS_EQ] = ACTIONS(4927), + [anon_sym_DASH_EQ] = ACTIONS(4927), + [anon_sym_LT_LT_EQ] = ACTIONS(4927), + [anon_sym_GT_GT_EQ] = ACTIONS(4927), + [anon_sym_AMP_EQ] = ACTIONS(4927), + [anon_sym_CARET_EQ] = ACTIONS(4927), + [anon_sym_PIPE_EQ] = ACTIONS(4927), + [anon_sym_and_eq] = ACTIONS(4934), + [anon_sym_or_eq] = ACTIONS(4934), + [anon_sym_xor_eq] = ACTIONS(4934), + [anon_sym_LT_EQ_GT] = ACTIONS(4927), + [anon_sym_or] = ACTIONS(4934), + [anon_sym_and] = ACTIONS(4934), + [anon_sym_bitor] = ACTIONS(4934), + [anon_sym_xor] = ACTIONS(4934), + [anon_sym_bitand] = ACTIONS(4934), + [anon_sym_not_eq] = ACTIONS(4934), + [anon_sym_DASH_DASH] = ACTIONS(4927), + [anon_sym_PLUS_PLUS] = ACTIONS(4927), + [anon_sym_DOT] = ACTIONS(4934), + [anon_sym_DOT_STAR] = ACTIONS(4927), + [anon_sym_DASH_GT] = ACTIONS(4927), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5681), - [anon_sym_decltype] = ACTIONS(5681), }, - [2224] = { - [sym_identifier] = ACTIONS(6208), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6210), - [anon_sym_COMMA] = ACTIONS(6210), - [anon_sym_RPAREN] = ACTIONS(6210), - [aux_sym_preproc_if_token2] = ACTIONS(6210), - [aux_sym_preproc_else_token1] = ACTIONS(6210), - [aux_sym_preproc_elif_token1] = ACTIONS(6208), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6210), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6210), - [anon_sym_LPAREN2] = ACTIONS(6210), - [anon_sym_DASH] = ACTIONS(6208), - [anon_sym_PLUS] = ACTIONS(6208), - [anon_sym_STAR] = ACTIONS(6208), - [anon_sym_SLASH] = ACTIONS(6208), - [anon_sym_PERCENT] = ACTIONS(6208), - [anon_sym_PIPE_PIPE] = ACTIONS(6210), - [anon_sym_AMP_AMP] = ACTIONS(6210), - [anon_sym_PIPE] = ACTIONS(6208), - [anon_sym_CARET] = ACTIONS(6208), - [anon_sym_AMP] = ACTIONS(6208), - [anon_sym_EQ_EQ] = ACTIONS(6210), - [anon_sym_BANG_EQ] = ACTIONS(6210), - [anon_sym_GT] = ACTIONS(6208), - [anon_sym_GT_EQ] = ACTIONS(6210), - [anon_sym_LT_EQ] = ACTIONS(6208), - [anon_sym_LT] = ACTIONS(6208), - [anon_sym_LT_LT] = ACTIONS(6208), - [anon_sym_GT_GT] = ACTIONS(6208), - [anon_sym_SEMI] = ACTIONS(6210), - [anon_sym___attribute__] = ACTIONS(6208), - [anon_sym___attribute] = ACTIONS(6208), - [anon_sym_COLON] = ACTIONS(6210), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6210), - [anon_sym_LBRACE] = ACTIONS(6210), - [anon_sym_RBRACE] = ACTIONS(6210), - [anon_sym_LBRACK] = ACTIONS(6208), - [anon_sym_RBRACK] = ACTIONS(6210), - [anon_sym_EQ] = ACTIONS(6208), - [anon_sym_QMARK] = ACTIONS(6210), - [anon_sym_STAR_EQ] = ACTIONS(6210), - [anon_sym_SLASH_EQ] = ACTIONS(6210), - [anon_sym_PERCENT_EQ] = ACTIONS(6210), - [anon_sym_PLUS_EQ] = ACTIONS(6210), - [anon_sym_DASH_EQ] = ACTIONS(6210), - [anon_sym_LT_LT_EQ] = ACTIONS(6210), - [anon_sym_GT_GT_EQ] = ACTIONS(6210), - [anon_sym_AMP_EQ] = ACTIONS(6210), - [anon_sym_CARET_EQ] = ACTIONS(6210), - [anon_sym_PIPE_EQ] = ACTIONS(6210), - [anon_sym_and_eq] = ACTIONS(6208), - [anon_sym_or_eq] = ACTIONS(6208), - [anon_sym_xor_eq] = ACTIONS(6208), - [anon_sym_LT_EQ_GT] = ACTIONS(6210), - [anon_sym_or] = ACTIONS(6208), - [anon_sym_and] = ACTIONS(6208), - [anon_sym_bitor] = ACTIONS(6208), - [anon_sym_xor] = ACTIONS(6208), - [anon_sym_bitand] = ACTIONS(6208), - [anon_sym_not_eq] = ACTIONS(6208), - [anon_sym_DASH_DASH] = ACTIONS(6210), - [anon_sym_PLUS_PLUS] = ACTIONS(6210), - [anon_sym_DOT] = ACTIONS(6208), - [anon_sym_DOT_STAR] = ACTIONS(6210), - [anon_sym_DASH_GT] = ACTIONS(6210), - [sym_comment] = ACTIONS(3), - [anon_sym_try] = ACTIONS(6208), + [2289] = { + [sym_identifier] = ACTIONS(5720), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5722), + [anon_sym_COMMA] = ACTIONS(5722), + [anon_sym_RPAREN] = ACTIONS(5722), + [aux_sym_preproc_if_token2] = ACTIONS(5722), + [aux_sym_preproc_else_token1] = ACTIONS(5722), + [aux_sym_preproc_elif_token1] = ACTIONS(5720), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5722), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5722), + [anon_sym_LPAREN2] = ACTIONS(5722), + [anon_sym_DASH] = ACTIONS(5720), + [anon_sym_PLUS] = ACTIONS(5720), + [anon_sym_STAR] = ACTIONS(5720), + [anon_sym_SLASH] = ACTIONS(5720), + [anon_sym_PERCENT] = ACTIONS(5720), + [anon_sym_PIPE_PIPE] = ACTIONS(5722), + [anon_sym_AMP_AMP] = ACTIONS(5722), + [anon_sym_PIPE] = ACTIONS(5720), + [anon_sym_CARET] = ACTIONS(5720), + [anon_sym_AMP] = ACTIONS(5720), + [anon_sym_EQ_EQ] = ACTIONS(5722), + [anon_sym_BANG_EQ] = ACTIONS(5722), + [anon_sym_GT] = ACTIONS(5720), + [anon_sym_GT_EQ] = ACTIONS(5722), + [anon_sym_LT_EQ] = ACTIONS(5720), + [anon_sym_LT] = ACTIONS(5720), + [anon_sym_LT_LT] = ACTIONS(5720), + [anon_sym_GT_GT] = ACTIONS(5720), + [anon_sym_SEMI] = ACTIONS(5722), + [anon_sym___attribute__] = ACTIONS(5720), + [anon_sym___attribute] = ACTIONS(5720), + [anon_sym_COLON] = ACTIONS(5722), + [anon_sym_LBRACE] = ACTIONS(5722), + [anon_sym_RBRACE] = ACTIONS(5722), + [anon_sym_LBRACK] = ACTIONS(5722), + [anon_sym_RBRACK] = ACTIONS(5722), + [anon_sym_EQ] = ACTIONS(5720), + [anon_sym_QMARK] = ACTIONS(5722), + [anon_sym_STAR_EQ] = ACTIONS(5722), + [anon_sym_SLASH_EQ] = ACTIONS(5722), + [anon_sym_PERCENT_EQ] = ACTIONS(5722), + [anon_sym_PLUS_EQ] = ACTIONS(5722), + [anon_sym_DASH_EQ] = ACTIONS(5722), + [anon_sym_LT_LT_EQ] = ACTIONS(5722), + [anon_sym_GT_GT_EQ] = ACTIONS(5722), + [anon_sym_AMP_EQ] = ACTIONS(5722), + [anon_sym_CARET_EQ] = ACTIONS(5722), + [anon_sym_PIPE_EQ] = ACTIONS(5722), + [anon_sym_and_eq] = ACTIONS(5720), + [anon_sym_or_eq] = ACTIONS(5720), + [anon_sym_xor_eq] = ACTIONS(5720), + [anon_sym_LT_EQ_GT] = ACTIONS(5722), + [anon_sym_or] = ACTIONS(5720), + [anon_sym_and] = ACTIONS(5720), + [anon_sym_bitor] = ACTIONS(5720), + [anon_sym_xor] = ACTIONS(5720), + [anon_sym_bitand] = ACTIONS(5720), + [anon_sym_not_eq] = ACTIONS(5720), + [anon_sym_DASH_DASH] = ACTIONS(5722), + [anon_sym_PLUS_PLUS] = ACTIONS(5722), + [anon_sym_DOT] = ACTIONS(5720), + [anon_sym_DOT_STAR] = ACTIONS(5722), + [anon_sym_DASH_GT] = ACTIONS(5722), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5720), + [anon_sym_decltype] = ACTIONS(5720), + }, + [2290] = { + [sym_identifier] = ACTIONS(5014), + [anon_sym_LPAREN2] = ACTIONS(5016), + [anon_sym_TILDE] = ACTIONS(5016), + [anon_sym_STAR] = ACTIONS(5016), + [anon_sym_PIPE_PIPE] = ACTIONS(5016), + [anon_sym_AMP_AMP] = ACTIONS(5016), + [anon_sym_AMP] = ACTIONS(5014), + [anon_sym___extension__] = ACTIONS(5014), + [anon_sym_virtual] = ACTIONS(5014), + [anon_sym_extern] = ACTIONS(5014), + [anon_sym___attribute__] = ACTIONS(5014), + [anon_sym___attribute] = ACTIONS(5014), + [anon_sym_using] = ACTIONS(5014), + [anon_sym_COLON_COLON] = ACTIONS(5016), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5016), + [anon_sym___declspec] = ACTIONS(5014), + [anon_sym___based] = ACTIONS(5014), + [anon_sym___cdecl] = ACTIONS(5014), + [anon_sym___clrcall] = ACTIONS(5014), + [anon_sym___stdcall] = ACTIONS(5014), + [anon_sym___fastcall] = ACTIONS(5014), + [anon_sym___thiscall] = ACTIONS(5014), + [anon_sym___vectorcall] = ACTIONS(5014), + [anon_sym_signed] = ACTIONS(5014), + [anon_sym_unsigned] = ACTIONS(5014), + [anon_sym_long] = ACTIONS(5014), + [anon_sym_short] = ACTIONS(5014), + [anon_sym_LBRACK] = ACTIONS(5014), + [anon_sym_static] = ACTIONS(5014), + [anon_sym_register] = ACTIONS(5014), + [anon_sym_inline] = ACTIONS(5014), + [anon_sym___inline] = ACTIONS(5014), + [anon_sym___inline__] = ACTIONS(5014), + [anon_sym___forceinline] = ACTIONS(5014), + [anon_sym_thread_local] = ACTIONS(5014), + [anon_sym___thread] = ACTIONS(5014), + [anon_sym_const] = ACTIONS(5014), + [anon_sym_constexpr] = ACTIONS(5014), + [anon_sym_volatile] = ACTIONS(5014), + [anon_sym_restrict] = ACTIONS(5014), + [anon_sym___restrict__] = ACTIONS(5014), + [anon_sym__Atomic] = ACTIONS(5014), + [anon_sym__Noreturn] = ACTIONS(5014), + [anon_sym_noreturn] = ACTIONS(5014), + [anon_sym__Nonnull] = ACTIONS(5014), + [anon_sym_mutable] = ACTIONS(5014), + [anon_sym_constinit] = ACTIONS(5014), + [anon_sym_consteval] = ACTIONS(5014), + [anon_sym_alignas] = ACTIONS(5014), + [anon_sym__Alignas] = ACTIONS(5014), + [sym_primitive_type] = ACTIONS(5014), + [anon_sym_enum] = ACTIONS(5014), + [anon_sym_class] = ACTIONS(5014), + [anon_sym_struct] = ACTIONS(5014), + [anon_sym_union] = ACTIONS(5014), + [anon_sym_or] = ACTIONS(5014), + [anon_sym_and] = ACTIONS(5014), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5014), + [anon_sym_decltype] = ACTIONS(5014), + [anon_sym_explicit] = ACTIONS(5014), + [anon_sym_typename] = ACTIONS(5014), + [anon_sym_template] = ACTIONS(5014), + [anon_sym_operator] = ACTIONS(5014), + [anon_sym_friend] = ACTIONS(5014), + [anon_sym_concept] = ACTIONS(5014), + }, + [2291] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2259), + [sym_identifier] = ACTIONS(5776), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5778), + [anon_sym_COMMA] = ACTIONS(5778), + [aux_sym_preproc_if_token2] = ACTIONS(5778), + [aux_sym_preproc_else_token1] = ACTIONS(5778), + [aux_sym_preproc_elif_token1] = ACTIONS(5776), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5778), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5778), + [anon_sym_LPAREN2] = ACTIONS(5778), + [anon_sym_DASH] = ACTIONS(5776), + [anon_sym_PLUS] = ACTIONS(5776), + [anon_sym_STAR] = ACTIONS(5776), + [anon_sym_SLASH] = ACTIONS(5776), + [anon_sym_PERCENT] = ACTIONS(5776), + [anon_sym_PIPE_PIPE] = ACTIONS(5778), + [anon_sym_AMP_AMP] = ACTIONS(5778), + [anon_sym_PIPE] = ACTIONS(5776), + [anon_sym_CARET] = ACTIONS(5776), + [anon_sym_AMP] = ACTIONS(5776), + [anon_sym_EQ_EQ] = ACTIONS(5778), + [anon_sym_BANG_EQ] = ACTIONS(5778), + [anon_sym_GT] = ACTIONS(5776), + [anon_sym_GT_EQ] = ACTIONS(5778), + [anon_sym_LT_EQ] = ACTIONS(5776), + [anon_sym_LT] = ACTIONS(5776), + [anon_sym_LT_LT] = ACTIONS(5776), + [anon_sym_GT_GT] = ACTIONS(5776), + [anon_sym___attribute__] = ACTIONS(5776), + [anon_sym___attribute] = ACTIONS(5776), + [anon_sym_LBRACE] = ACTIONS(5778), + [anon_sym_signed] = ACTIONS(6266), + [anon_sym_unsigned] = ACTIONS(6266), + [anon_sym_long] = ACTIONS(6266), + [anon_sym_short] = ACTIONS(6266), + [anon_sym_LBRACK] = ACTIONS(5778), + [anon_sym_EQ] = ACTIONS(5776), + [anon_sym_QMARK] = ACTIONS(5778), + [anon_sym_STAR_EQ] = ACTIONS(5778), + [anon_sym_SLASH_EQ] = ACTIONS(5778), + [anon_sym_PERCENT_EQ] = ACTIONS(5778), + [anon_sym_PLUS_EQ] = ACTIONS(5778), + [anon_sym_DASH_EQ] = ACTIONS(5778), + [anon_sym_LT_LT_EQ] = ACTIONS(5778), + [anon_sym_GT_GT_EQ] = ACTIONS(5778), + [anon_sym_AMP_EQ] = ACTIONS(5778), + [anon_sym_CARET_EQ] = ACTIONS(5778), + [anon_sym_PIPE_EQ] = ACTIONS(5778), + [anon_sym_and_eq] = ACTIONS(5776), + [anon_sym_or_eq] = ACTIONS(5776), + [anon_sym_xor_eq] = ACTIONS(5776), + [anon_sym_LT_EQ_GT] = ACTIONS(5778), + [anon_sym_or] = ACTIONS(5776), + [anon_sym_and] = ACTIONS(5776), + [anon_sym_bitor] = ACTIONS(5776), + [anon_sym_xor] = ACTIONS(5776), + [anon_sym_bitand] = ACTIONS(5776), + [anon_sym_not_eq] = ACTIONS(5776), + [anon_sym_DASH_DASH] = ACTIONS(5778), + [anon_sym_PLUS_PLUS] = ACTIONS(5778), + [anon_sym_DOT] = ACTIONS(5776), + [anon_sym_DOT_STAR] = ACTIONS(5778), + [anon_sym_DASH_GT] = ACTIONS(5778), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5776), + [anon_sym_decltype] = ACTIONS(5776), + }, + [2292] = { + [sym_identifier] = ACTIONS(5816), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5818), + [anon_sym_COMMA] = ACTIONS(5818), + [anon_sym_RPAREN] = ACTIONS(5818), + [aux_sym_preproc_if_token2] = ACTIONS(5818), + [aux_sym_preproc_else_token1] = ACTIONS(5818), + [aux_sym_preproc_elif_token1] = ACTIONS(5816), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5818), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5818), + [anon_sym_LPAREN2] = ACTIONS(5818), + [anon_sym_DASH] = ACTIONS(5816), + [anon_sym_PLUS] = ACTIONS(5816), + [anon_sym_STAR] = ACTIONS(5816), + [anon_sym_SLASH] = ACTIONS(5816), + [anon_sym_PERCENT] = ACTIONS(5816), + [anon_sym_PIPE_PIPE] = ACTIONS(5818), + [anon_sym_AMP_AMP] = ACTIONS(5818), + [anon_sym_PIPE] = ACTIONS(5816), + [anon_sym_CARET] = ACTIONS(5816), + [anon_sym_AMP] = ACTIONS(5816), + [anon_sym_EQ_EQ] = ACTIONS(5818), + [anon_sym_BANG_EQ] = ACTIONS(5818), + [anon_sym_GT] = ACTIONS(5816), + [anon_sym_GT_EQ] = ACTIONS(5818), + [anon_sym_LT_EQ] = ACTIONS(5816), + [anon_sym_LT] = ACTIONS(5816), + [anon_sym_LT_LT] = ACTIONS(5816), + [anon_sym_GT_GT] = ACTIONS(5816), + [anon_sym_SEMI] = ACTIONS(5818), + [anon_sym___attribute__] = ACTIONS(5816), + [anon_sym___attribute] = ACTIONS(5816), + [anon_sym_COLON] = ACTIONS(5818), + [anon_sym_LBRACE] = ACTIONS(5818), + [anon_sym_RBRACE] = ACTIONS(5818), + [anon_sym_LBRACK] = ACTIONS(5818), + [anon_sym_RBRACK] = ACTIONS(5818), + [anon_sym_EQ] = ACTIONS(5816), + [anon_sym_QMARK] = ACTIONS(5818), + [anon_sym_STAR_EQ] = ACTIONS(5818), + [anon_sym_SLASH_EQ] = ACTIONS(5818), + [anon_sym_PERCENT_EQ] = ACTIONS(5818), + [anon_sym_PLUS_EQ] = ACTIONS(5818), + [anon_sym_DASH_EQ] = ACTIONS(5818), + [anon_sym_LT_LT_EQ] = ACTIONS(5818), + [anon_sym_GT_GT_EQ] = ACTIONS(5818), + [anon_sym_AMP_EQ] = ACTIONS(5818), + [anon_sym_CARET_EQ] = ACTIONS(5818), + [anon_sym_PIPE_EQ] = ACTIONS(5818), + [anon_sym_and_eq] = ACTIONS(5816), + [anon_sym_or_eq] = ACTIONS(5816), + [anon_sym_xor_eq] = ACTIONS(5816), + [anon_sym_LT_EQ_GT] = ACTIONS(5818), + [anon_sym_or] = ACTIONS(5816), + [anon_sym_and] = ACTIONS(5816), + [anon_sym_bitor] = ACTIONS(5816), + [anon_sym_xor] = ACTIONS(5816), + [anon_sym_bitand] = ACTIONS(5816), + [anon_sym_not_eq] = ACTIONS(5816), + [anon_sym_DASH_DASH] = ACTIONS(5818), + [anon_sym_PLUS_PLUS] = ACTIONS(5818), + [anon_sym_DOT] = ACTIONS(5816), + [anon_sym_DOT_STAR] = ACTIONS(5818), + [anon_sym_DASH_GT] = ACTIONS(5818), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5816), + [anon_sym_decltype] = ACTIONS(5816), + }, + [2293] = { + [sym_identifier] = ACTIONS(5545), + [anon_sym_LPAREN2] = ACTIONS(5547), + [anon_sym_TILDE] = ACTIONS(5547), + [anon_sym_STAR] = ACTIONS(5547), + [anon_sym_PIPE_PIPE] = ACTIONS(5547), + [anon_sym_AMP_AMP] = ACTIONS(5547), + [anon_sym_AMP] = ACTIONS(5545), + [anon_sym___extension__] = ACTIONS(5545), + [anon_sym_virtual] = ACTIONS(5545), + [anon_sym_extern] = ACTIONS(5545), + [anon_sym___attribute__] = ACTIONS(5545), + [anon_sym___attribute] = ACTIONS(5545), + [anon_sym_using] = ACTIONS(5545), + [anon_sym_COLON_COLON] = ACTIONS(5547), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5547), + [anon_sym___declspec] = ACTIONS(5545), + [anon_sym___based] = ACTIONS(5545), + [anon_sym___cdecl] = ACTIONS(5545), + [anon_sym___clrcall] = ACTIONS(5545), + [anon_sym___stdcall] = ACTIONS(5545), + [anon_sym___fastcall] = ACTIONS(5545), + [anon_sym___thiscall] = ACTIONS(5545), + [anon_sym___vectorcall] = ACTIONS(5545), + [anon_sym_signed] = ACTIONS(5545), + [anon_sym_unsigned] = ACTIONS(5545), + [anon_sym_long] = ACTIONS(5545), + [anon_sym_short] = ACTIONS(5545), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_static] = ACTIONS(5545), + [anon_sym_register] = ACTIONS(5545), + [anon_sym_inline] = ACTIONS(5545), + [anon_sym___inline] = ACTIONS(5545), + [anon_sym___inline__] = ACTIONS(5545), + [anon_sym___forceinline] = ACTIONS(5545), + [anon_sym_thread_local] = ACTIONS(5545), + [anon_sym___thread] = ACTIONS(5545), + [anon_sym_const] = ACTIONS(5545), + [anon_sym_constexpr] = ACTIONS(5545), + [anon_sym_volatile] = ACTIONS(5545), + [anon_sym_restrict] = ACTIONS(5545), + [anon_sym___restrict__] = ACTIONS(5545), + [anon_sym__Atomic] = ACTIONS(5545), + [anon_sym__Noreturn] = ACTIONS(5545), + [anon_sym_noreturn] = ACTIONS(5545), + [anon_sym__Nonnull] = ACTIONS(5545), + [anon_sym_mutable] = ACTIONS(5545), + [anon_sym_constinit] = ACTIONS(5545), + [anon_sym_consteval] = ACTIONS(5545), + [anon_sym_alignas] = ACTIONS(5545), + [anon_sym__Alignas] = ACTIONS(5545), + [sym_primitive_type] = ACTIONS(5545), + [anon_sym_enum] = ACTIONS(5545), + [anon_sym_class] = ACTIONS(5545), + [anon_sym_struct] = ACTIONS(5545), + [anon_sym_union] = ACTIONS(5545), + [anon_sym_or] = ACTIONS(5545), + [anon_sym_and] = ACTIONS(5545), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5545), + [anon_sym_decltype] = ACTIONS(5545), + [anon_sym_explicit] = ACTIONS(5545), + [anon_sym_typename] = ACTIONS(5545), + [anon_sym_template] = ACTIONS(5545), + [anon_sym_operator] = ACTIONS(5545), + [anon_sym_friend] = ACTIONS(5545), + [anon_sym_concept] = ACTIONS(5545), + }, + [2294] = { + [sym_identifier] = ACTIONS(5002), + [anon_sym_LPAREN2] = ACTIONS(5004), + [anon_sym_TILDE] = ACTIONS(5004), + [anon_sym_STAR] = ACTIONS(5004), + [anon_sym_PIPE_PIPE] = ACTIONS(5004), + [anon_sym_AMP_AMP] = ACTIONS(5004), + [anon_sym_AMP] = ACTIONS(5002), + [anon_sym___extension__] = ACTIONS(5002), + [anon_sym_virtual] = ACTIONS(5002), + [anon_sym_extern] = ACTIONS(5002), + [anon_sym___attribute__] = ACTIONS(5002), + [anon_sym___attribute] = ACTIONS(5002), + [anon_sym_using] = ACTIONS(5002), + [anon_sym_COLON_COLON] = ACTIONS(5004), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5004), + [anon_sym___declspec] = ACTIONS(5002), + [anon_sym___based] = ACTIONS(5002), + [anon_sym___cdecl] = ACTIONS(5002), + [anon_sym___clrcall] = ACTIONS(5002), + [anon_sym___stdcall] = ACTIONS(5002), + [anon_sym___fastcall] = ACTIONS(5002), + [anon_sym___thiscall] = ACTIONS(5002), + [anon_sym___vectorcall] = ACTIONS(5002), + [anon_sym_signed] = ACTIONS(5002), + [anon_sym_unsigned] = ACTIONS(5002), + [anon_sym_long] = ACTIONS(5002), + [anon_sym_short] = ACTIONS(5002), + [anon_sym_LBRACK] = ACTIONS(5002), + [anon_sym_static] = ACTIONS(5002), + [anon_sym_register] = ACTIONS(5002), + [anon_sym_inline] = ACTIONS(5002), + [anon_sym___inline] = ACTIONS(5002), + [anon_sym___inline__] = ACTIONS(5002), + [anon_sym___forceinline] = ACTIONS(5002), + [anon_sym_thread_local] = ACTIONS(5002), + [anon_sym___thread] = ACTIONS(5002), + [anon_sym_const] = ACTIONS(5002), + [anon_sym_constexpr] = ACTIONS(5002), + [anon_sym_volatile] = ACTIONS(5002), + [anon_sym_restrict] = ACTIONS(5002), + [anon_sym___restrict__] = ACTIONS(5002), + [anon_sym__Atomic] = ACTIONS(5002), + [anon_sym__Noreturn] = ACTIONS(5002), + [anon_sym_noreturn] = ACTIONS(5002), + [anon_sym__Nonnull] = ACTIONS(5002), + [anon_sym_mutable] = ACTIONS(5002), + [anon_sym_constinit] = ACTIONS(5002), + [anon_sym_consteval] = ACTIONS(5002), + [anon_sym_alignas] = ACTIONS(5002), + [anon_sym__Alignas] = ACTIONS(5002), + [sym_primitive_type] = ACTIONS(5002), + [anon_sym_enum] = ACTIONS(5002), + [anon_sym_class] = ACTIONS(5002), + [anon_sym_struct] = ACTIONS(5002), + [anon_sym_union] = ACTIONS(5002), + [anon_sym_or] = ACTIONS(5002), + [anon_sym_and] = ACTIONS(5002), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5002), + [anon_sym_decltype] = ACTIONS(5002), + [anon_sym_explicit] = ACTIONS(5002), + [anon_sym_typename] = ACTIONS(5002), + [anon_sym_template] = ACTIONS(5002), + [anon_sym_operator] = ACTIONS(5002), + [anon_sym_friend] = ACTIONS(5002), + [anon_sym_concept] = ACTIONS(5002), + }, + [2295] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2334), + [sym_identifier] = ACTIONS(5913), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5911), + [anon_sym_COMMA] = ACTIONS(5911), + [aux_sym_preproc_if_token2] = ACTIONS(5911), + [aux_sym_preproc_else_token1] = ACTIONS(5911), + [aux_sym_preproc_elif_token1] = ACTIONS(5913), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5911), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5911), + [anon_sym_LPAREN2] = ACTIONS(5911), + [anon_sym_DASH] = ACTIONS(5913), + [anon_sym_PLUS] = ACTIONS(5913), + [anon_sym_STAR] = ACTIONS(5913), + [anon_sym_SLASH] = ACTIONS(5913), + [anon_sym_PERCENT] = ACTIONS(5913), + [anon_sym_PIPE_PIPE] = ACTIONS(5911), + [anon_sym_AMP_AMP] = ACTIONS(5911), + [anon_sym_PIPE] = ACTIONS(5913), + [anon_sym_CARET] = ACTIONS(5913), + [anon_sym_AMP] = ACTIONS(5913), + [anon_sym_EQ_EQ] = ACTIONS(5911), + [anon_sym_BANG_EQ] = ACTIONS(5911), + [anon_sym_GT] = ACTIONS(5913), + [anon_sym_GT_EQ] = ACTIONS(5911), + [anon_sym_LT_EQ] = ACTIONS(5913), + [anon_sym_LT] = ACTIONS(5913), + [anon_sym_LT_LT] = ACTIONS(5913), + [anon_sym_GT_GT] = ACTIONS(5913), + [anon_sym___attribute__] = ACTIONS(5913), + [anon_sym___attribute] = ACTIONS(5913), + [anon_sym_LBRACE] = ACTIONS(5911), + [anon_sym_signed] = ACTIONS(6234), + [anon_sym_unsigned] = ACTIONS(6234), + [anon_sym_long] = ACTIONS(6234), + [anon_sym_short] = ACTIONS(6234), + [anon_sym_LBRACK] = ACTIONS(5911), + [anon_sym_EQ] = ACTIONS(5913), + [anon_sym_QMARK] = ACTIONS(5911), + [anon_sym_STAR_EQ] = ACTIONS(5911), + [anon_sym_SLASH_EQ] = ACTIONS(5911), + [anon_sym_PERCENT_EQ] = ACTIONS(5911), + [anon_sym_PLUS_EQ] = ACTIONS(5911), + [anon_sym_DASH_EQ] = ACTIONS(5911), + [anon_sym_LT_LT_EQ] = ACTIONS(5911), + [anon_sym_GT_GT_EQ] = ACTIONS(5911), + [anon_sym_AMP_EQ] = ACTIONS(5911), + [anon_sym_CARET_EQ] = ACTIONS(5911), + [anon_sym_PIPE_EQ] = ACTIONS(5911), + [anon_sym_and_eq] = ACTIONS(5913), + [anon_sym_or_eq] = ACTIONS(5913), + [anon_sym_xor_eq] = ACTIONS(5913), + [anon_sym_LT_EQ_GT] = ACTIONS(5911), + [anon_sym_or] = ACTIONS(5913), + [anon_sym_and] = ACTIONS(5913), + [anon_sym_bitor] = ACTIONS(5913), + [anon_sym_xor] = ACTIONS(5913), + [anon_sym_bitand] = ACTIONS(5913), + [anon_sym_not_eq] = ACTIONS(5913), + [anon_sym_DASH_DASH] = ACTIONS(5911), + [anon_sym_PLUS_PLUS] = ACTIONS(5911), + [anon_sym_DOT] = ACTIONS(5913), + [anon_sym_DOT_STAR] = ACTIONS(5911), + [anon_sym_DASH_GT] = ACTIONS(5911), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5913), + [anon_sym_decltype] = ACTIONS(5913), + }, + [2296] = { + [sym_string_literal] = STATE(1708), + [sym_template_argument_list] = STATE(2375), + [sym_raw_string_literal] = STATE(1708), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6116), + [anon_sym_COMMA] = ACTIONS(6268), + [anon_sym_LPAREN2] = ACTIONS(4166), + [anon_sym_DASH] = ACTIONS(4174), + [anon_sym_PLUS] = ACTIONS(4174), + [anon_sym_STAR] = ACTIONS(4174), + [anon_sym_SLASH] = ACTIONS(4174), + [anon_sym_PERCENT] = ACTIONS(4174), + [anon_sym_PIPE_PIPE] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4166), + [anon_sym_PIPE] = ACTIONS(4174), + [anon_sym_CARET] = ACTIONS(4174), + [anon_sym_AMP] = ACTIONS(4174), + [anon_sym_EQ_EQ] = ACTIONS(4166), + [anon_sym_BANG_EQ] = ACTIONS(4166), + [anon_sym_GT] = ACTIONS(4174), + [anon_sym_GT_EQ] = ACTIONS(4166), + [anon_sym_LT_EQ] = ACTIONS(4174), + [anon_sym_LT] = ACTIONS(5381), + [anon_sym_LT_LT] = ACTIONS(4174), + [anon_sym_GT_GT] = ACTIONS(4174), + [anon_sym_COLON_COLON] = ACTIONS(4187), + [anon_sym_LBRACE] = ACTIONS(4192), + [anon_sym_LBRACK] = ACTIONS(4166), + [anon_sym_RBRACK] = ACTIONS(6270), + [anon_sym_EQ] = ACTIONS(4174), + [anon_sym_QMARK] = ACTIONS(4166), + [anon_sym_STAR_EQ] = ACTIONS(4166), + [anon_sym_SLASH_EQ] = ACTIONS(4166), + [anon_sym_PERCENT_EQ] = ACTIONS(4166), + [anon_sym_PLUS_EQ] = ACTIONS(4166), + [anon_sym_DASH_EQ] = ACTIONS(4166), + [anon_sym_LT_LT_EQ] = ACTIONS(4166), + [anon_sym_GT_GT_EQ] = ACTIONS(4166), + [anon_sym_AMP_EQ] = ACTIONS(4166), + [anon_sym_CARET_EQ] = ACTIONS(4166), + [anon_sym_PIPE_EQ] = ACTIONS(4166), + [anon_sym_and_eq] = ACTIONS(4166), + [anon_sym_or_eq] = ACTIONS(4166), + [anon_sym_xor_eq] = ACTIONS(4166), + [anon_sym_LT_EQ_GT] = ACTIONS(4166), + [anon_sym_or] = ACTIONS(4174), + [anon_sym_and] = ACTIONS(4174), + [anon_sym_bitor] = ACTIONS(4166), + [anon_sym_xor] = ACTIONS(4174), + [anon_sym_bitand] = ACTIONS(4166), + [anon_sym_not_eq] = ACTIONS(4166), + [anon_sym_DASH_DASH] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4174), + [anon_sym_DOT_STAR] = ACTIONS(4166), + [anon_sym_DASH_GT] = ACTIONS(4166), + [anon_sym_L_DQUOTE] = ACTIONS(1972), + [anon_sym_u_DQUOTE] = ACTIONS(1972), + [anon_sym_U_DQUOTE] = ACTIONS(1972), + [anon_sym_u8_DQUOTE] = ACTIONS(1972), + [anon_sym_DQUOTE] = ACTIONS(1972), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(1982), + [anon_sym_LR_DQUOTE] = ACTIONS(1982), + [anon_sym_uR_DQUOTE] = ACTIONS(1982), + [anon_sym_UR_DQUOTE] = ACTIONS(1982), + [anon_sym_u8R_DQUOTE] = ACTIONS(1982), + }, + [2297] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2334), + [sym_identifier] = ACTIONS(5953), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5951), + [anon_sym_COMMA] = ACTIONS(5951), + [aux_sym_preproc_if_token2] = ACTIONS(5951), + [aux_sym_preproc_else_token1] = ACTIONS(5951), + [aux_sym_preproc_elif_token1] = ACTIONS(5953), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5951), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5951), + [anon_sym_LPAREN2] = ACTIONS(5951), + [anon_sym_DASH] = ACTIONS(5953), + [anon_sym_PLUS] = ACTIONS(5953), + [anon_sym_STAR] = ACTIONS(5953), + [anon_sym_SLASH] = ACTIONS(5953), + [anon_sym_PERCENT] = ACTIONS(5953), + [anon_sym_PIPE_PIPE] = ACTIONS(5951), + [anon_sym_AMP_AMP] = ACTIONS(5951), + [anon_sym_PIPE] = ACTIONS(5953), + [anon_sym_CARET] = ACTIONS(5953), + [anon_sym_AMP] = ACTIONS(5953), + [anon_sym_EQ_EQ] = ACTIONS(5951), + [anon_sym_BANG_EQ] = ACTIONS(5951), + [anon_sym_GT] = ACTIONS(5953), + [anon_sym_GT_EQ] = ACTIONS(5951), + [anon_sym_LT_EQ] = ACTIONS(5953), + [anon_sym_LT] = ACTIONS(5953), + [anon_sym_LT_LT] = ACTIONS(5953), + [anon_sym_GT_GT] = ACTIONS(5953), + [anon_sym___attribute__] = ACTIONS(5953), + [anon_sym___attribute] = ACTIONS(5953), + [anon_sym_LBRACE] = ACTIONS(5951), + [anon_sym_signed] = ACTIONS(6234), + [anon_sym_unsigned] = ACTIONS(6234), + [anon_sym_long] = ACTIONS(6234), + [anon_sym_short] = ACTIONS(6234), + [anon_sym_LBRACK] = ACTIONS(5951), + [anon_sym_EQ] = ACTIONS(5953), + [anon_sym_QMARK] = ACTIONS(5951), + [anon_sym_STAR_EQ] = ACTIONS(5951), + [anon_sym_SLASH_EQ] = ACTIONS(5951), + [anon_sym_PERCENT_EQ] = ACTIONS(5951), + [anon_sym_PLUS_EQ] = ACTIONS(5951), + [anon_sym_DASH_EQ] = ACTIONS(5951), + [anon_sym_LT_LT_EQ] = ACTIONS(5951), + [anon_sym_GT_GT_EQ] = ACTIONS(5951), + [anon_sym_AMP_EQ] = ACTIONS(5951), + [anon_sym_CARET_EQ] = ACTIONS(5951), + [anon_sym_PIPE_EQ] = ACTIONS(5951), + [anon_sym_and_eq] = ACTIONS(5953), + [anon_sym_or_eq] = ACTIONS(5953), + [anon_sym_xor_eq] = ACTIONS(5953), + [anon_sym_LT_EQ_GT] = ACTIONS(5951), + [anon_sym_or] = ACTIONS(5953), + [anon_sym_and] = ACTIONS(5953), + [anon_sym_bitor] = ACTIONS(5953), + [anon_sym_xor] = ACTIONS(5953), + [anon_sym_bitand] = ACTIONS(5953), + [anon_sym_not_eq] = ACTIONS(5953), + [anon_sym_DASH_DASH] = ACTIONS(5951), + [anon_sym_PLUS_PLUS] = ACTIONS(5951), + [anon_sym_DOT] = ACTIONS(5953), + [anon_sym_DOT_STAR] = ACTIONS(5951), + [anon_sym_DASH_GT] = ACTIONS(5951), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5953), + [anon_sym_decltype] = ACTIONS(5953), + }, + [2298] = { + [sym_identifier] = ACTIONS(5724), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5726), + [anon_sym_COMMA] = ACTIONS(5726), + [anon_sym_RPAREN] = ACTIONS(5726), + [aux_sym_preproc_if_token2] = ACTIONS(5726), + [aux_sym_preproc_else_token1] = ACTIONS(5726), + [aux_sym_preproc_elif_token1] = ACTIONS(5724), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5726), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5726), + [anon_sym_LPAREN2] = ACTIONS(5726), + [anon_sym_DASH] = ACTIONS(5724), + [anon_sym_PLUS] = ACTIONS(5724), + [anon_sym_STAR] = ACTIONS(5724), + [anon_sym_SLASH] = ACTIONS(5724), + [anon_sym_PERCENT] = ACTIONS(5724), + [anon_sym_PIPE_PIPE] = ACTIONS(5726), + [anon_sym_AMP_AMP] = ACTIONS(5726), + [anon_sym_PIPE] = ACTIONS(5724), + [anon_sym_CARET] = ACTIONS(5724), + [anon_sym_AMP] = ACTIONS(5724), + [anon_sym_EQ_EQ] = ACTIONS(5726), + [anon_sym_BANG_EQ] = ACTIONS(5726), + [anon_sym_GT] = ACTIONS(5724), + [anon_sym_GT_EQ] = ACTIONS(5726), + [anon_sym_LT_EQ] = ACTIONS(5724), + [anon_sym_LT] = ACTIONS(5724), + [anon_sym_LT_LT] = ACTIONS(5724), + [anon_sym_GT_GT] = ACTIONS(5724), + [anon_sym_SEMI] = ACTIONS(5726), + [anon_sym___attribute__] = ACTIONS(5724), + [anon_sym___attribute] = ACTIONS(5724), + [anon_sym_COLON] = ACTIONS(5726), + [anon_sym_LBRACE] = ACTIONS(5726), + [anon_sym_RBRACE] = ACTIONS(5726), + [anon_sym_LBRACK] = ACTIONS(5726), + [anon_sym_RBRACK] = ACTIONS(5726), + [anon_sym_EQ] = ACTIONS(5724), + [anon_sym_QMARK] = ACTIONS(5726), + [anon_sym_STAR_EQ] = ACTIONS(5726), + [anon_sym_SLASH_EQ] = ACTIONS(5726), + [anon_sym_PERCENT_EQ] = ACTIONS(5726), + [anon_sym_PLUS_EQ] = ACTIONS(5726), + [anon_sym_DASH_EQ] = ACTIONS(5726), + [anon_sym_LT_LT_EQ] = ACTIONS(5726), + [anon_sym_GT_GT_EQ] = ACTIONS(5726), + [anon_sym_AMP_EQ] = ACTIONS(5726), + [anon_sym_CARET_EQ] = ACTIONS(5726), + [anon_sym_PIPE_EQ] = ACTIONS(5726), + [anon_sym_and_eq] = ACTIONS(5724), + [anon_sym_or_eq] = ACTIONS(5724), + [anon_sym_xor_eq] = ACTIONS(5724), + [anon_sym_LT_EQ_GT] = ACTIONS(5726), + [anon_sym_or] = ACTIONS(5724), + [anon_sym_and] = ACTIONS(5724), + [anon_sym_bitor] = ACTIONS(5724), + [anon_sym_xor] = ACTIONS(5724), + [anon_sym_bitand] = ACTIONS(5724), + [anon_sym_not_eq] = ACTIONS(5724), + [anon_sym_DASH_DASH] = ACTIONS(5726), + [anon_sym_PLUS_PLUS] = ACTIONS(5726), + [anon_sym_DOT] = ACTIONS(5724), + [anon_sym_DOT_STAR] = ACTIONS(5726), + [anon_sym_DASH_GT] = ACTIONS(5726), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5724), + [anon_sym_decltype] = ACTIONS(5724), + }, + [2299] = { + [sym_identifier] = ACTIONS(4976), + [anon_sym_LPAREN2] = ACTIONS(4978), + [anon_sym_TILDE] = ACTIONS(4978), + [anon_sym_STAR] = ACTIONS(4978), + [anon_sym_PIPE_PIPE] = ACTIONS(4978), + [anon_sym_AMP_AMP] = ACTIONS(4978), + [anon_sym_AMP] = ACTIONS(4976), + [anon_sym___extension__] = ACTIONS(4976), + [anon_sym_virtual] = ACTIONS(4976), + [anon_sym_extern] = ACTIONS(4976), + [anon_sym___attribute__] = ACTIONS(4976), + [anon_sym___attribute] = ACTIONS(4976), + [anon_sym_using] = ACTIONS(4976), + [anon_sym_COLON_COLON] = ACTIONS(4978), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4978), + [anon_sym___declspec] = ACTIONS(4976), + [anon_sym___based] = ACTIONS(4976), + [anon_sym___cdecl] = ACTIONS(4976), + [anon_sym___clrcall] = ACTIONS(4976), + [anon_sym___stdcall] = ACTIONS(4976), + [anon_sym___fastcall] = ACTIONS(4976), + [anon_sym___thiscall] = ACTIONS(4976), + [anon_sym___vectorcall] = ACTIONS(4976), + [anon_sym_signed] = ACTIONS(4976), + [anon_sym_unsigned] = ACTIONS(4976), + [anon_sym_long] = ACTIONS(4976), + [anon_sym_short] = ACTIONS(4976), + [anon_sym_LBRACK] = ACTIONS(4976), + [anon_sym_static] = ACTIONS(4976), + [anon_sym_register] = ACTIONS(4976), + [anon_sym_inline] = ACTIONS(4976), + [anon_sym___inline] = ACTIONS(4976), + [anon_sym___inline__] = ACTIONS(4976), + [anon_sym___forceinline] = ACTIONS(4976), + [anon_sym_thread_local] = ACTIONS(4976), + [anon_sym___thread] = ACTIONS(4976), + [anon_sym_const] = ACTIONS(4976), + [anon_sym_constexpr] = ACTIONS(4976), + [anon_sym_volatile] = ACTIONS(4976), + [anon_sym_restrict] = ACTIONS(4976), + [anon_sym___restrict__] = ACTIONS(4976), + [anon_sym__Atomic] = ACTIONS(4976), + [anon_sym__Noreturn] = ACTIONS(4976), + [anon_sym_noreturn] = ACTIONS(4976), + [anon_sym__Nonnull] = ACTIONS(4976), + [anon_sym_mutable] = ACTIONS(4976), + [anon_sym_constinit] = ACTIONS(4976), + [anon_sym_consteval] = ACTIONS(4976), + [anon_sym_alignas] = ACTIONS(4976), + [anon_sym__Alignas] = ACTIONS(4976), + [sym_primitive_type] = ACTIONS(4976), + [anon_sym_enum] = ACTIONS(4976), + [anon_sym_class] = ACTIONS(4976), + [anon_sym_struct] = ACTIONS(4976), + [anon_sym_union] = ACTIONS(4976), + [anon_sym_or] = ACTIONS(4976), + [anon_sym_and] = ACTIONS(4976), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4976), + [anon_sym_decltype] = ACTIONS(4976), + [anon_sym_explicit] = ACTIONS(4976), + [anon_sym_typename] = ACTIONS(4976), + [anon_sym_template] = ACTIONS(4976), + [anon_sym_operator] = ACTIONS(4976), + [anon_sym_friend] = ACTIONS(4976), + [anon_sym_concept] = ACTIONS(4976), + }, + [2300] = { + [sym_identifier] = ACTIONS(5701), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5703), + [anon_sym_COMMA] = ACTIONS(5703), + [anon_sym_RPAREN] = ACTIONS(5703), + [aux_sym_preproc_if_token2] = ACTIONS(5703), + [aux_sym_preproc_else_token1] = ACTIONS(5703), + [aux_sym_preproc_elif_token1] = ACTIONS(5701), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5703), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5703), + [anon_sym_LPAREN2] = ACTIONS(5703), + [anon_sym_DASH] = ACTIONS(5701), + [anon_sym_PLUS] = ACTIONS(5701), + [anon_sym_STAR] = ACTIONS(5701), + [anon_sym_SLASH] = ACTIONS(5701), + [anon_sym_PERCENT] = ACTIONS(5701), + [anon_sym_PIPE_PIPE] = ACTIONS(5703), + [anon_sym_AMP_AMP] = ACTIONS(5703), + [anon_sym_PIPE] = ACTIONS(5701), + [anon_sym_CARET] = ACTIONS(5701), + [anon_sym_AMP] = ACTIONS(5701), + [anon_sym_EQ_EQ] = ACTIONS(5703), + [anon_sym_BANG_EQ] = ACTIONS(5703), + [anon_sym_GT] = ACTIONS(5701), + [anon_sym_GT_EQ] = ACTIONS(5703), + [anon_sym_LT_EQ] = ACTIONS(5701), + [anon_sym_LT] = ACTIONS(5701), + [anon_sym_LT_LT] = ACTIONS(5701), + [anon_sym_GT_GT] = ACTIONS(5701), + [anon_sym_SEMI] = ACTIONS(5703), + [anon_sym___attribute__] = ACTIONS(5701), + [anon_sym___attribute] = ACTIONS(5701), + [anon_sym_COLON] = ACTIONS(5703), + [anon_sym_LBRACE] = ACTIONS(5703), + [anon_sym_RBRACE] = ACTIONS(5703), + [anon_sym_LBRACK] = ACTIONS(5703), + [anon_sym_RBRACK] = ACTIONS(5703), + [anon_sym_EQ] = ACTIONS(5701), + [anon_sym_QMARK] = ACTIONS(5703), + [anon_sym_STAR_EQ] = ACTIONS(5703), + [anon_sym_SLASH_EQ] = ACTIONS(5703), + [anon_sym_PERCENT_EQ] = ACTIONS(5703), + [anon_sym_PLUS_EQ] = ACTIONS(5703), + [anon_sym_DASH_EQ] = ACTIONS(5703), + [anon_sym_LT_LT_EQ] = ACTIONS(5703), + [anon_sym_GT_GT_EQ] = ACTIONS(5703), + [anon_sym_AMP_EQ] = ACTIONS(5703), + [anon_sym_CARET_EQ] = ACTIONS(5703), + [anon_sym_PIPE_EQ] = ACTIONS(5703), + [anon_sym_and_eq] = ACTIONS(5701), + [anon_sym_or_eq] = ACTIONS(5701), + [anon_sym_xor_eq] = ACTIONS(5701), + [anon_sym_LT_EQ_GT] = ACTIONS(5703), + [anon_sym_or] = ACTIONS(5701), + [anon_sym_and] = ACTIONS(5701), + [anon_sym_bitor] = ACTIONS(5701), + [anon_sym_xor] = ACTIONS(5701), + [anon_sym_bitand] = ACTIONS(5701), + [anon_sym_not_eq] = ACTIONS(5701), + [anon_sym_DASH_DASH] = ACTIONS(5703), + [anon_sym_PLUS_PLUS] = ACTIONS(5703), + [anon_sym_DOT] = ACTIONS(5701), + [anon_sym_DOT_STAR] = ACTIONS(5703), + [anon_sym_DASH_GT] = ACTIONS(5703), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5701), + [anon_sym_decltype] = ACTIONS(5701), + }, + [2301] = { + [sym_attribute_declaration] = STATE(2301), + [aux_sym_attributed_declarator_repeat1] = STATE(2301), + [sym_identifier] = ACTIONS(2043), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6273), + [anon_sym_COMMA] = ACTIONS(6273), + [anon_sym_RPAREN] = ACTIONS(6273), + [aux_sym_preproc_if_token2] = ACTIONS(6273), + [aux_sym_preproc_else_token1] = ACTIONS(6273), + [aux_sym_preproc_elif_token1] = ACTIONS(2043), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6273), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6273), + [anon_sym_LPAREN2] = ACTIONS(6273), + [anon_sym_DASH] = ACTIONS(2043), + [anon_sym_PLUS] = ACTIONS(2043), + [anon_sym_STAR] = ACTIONS(2043), + [anon_sym_SLASH] = ACTIONS(2043), + [anon_sym_PERCENT] = ACTIONS(2043), + [anon_sym_PIPE_PIPE] = ACTIONS(6273), + [anon_sym_AMP_AMP] = ACTIONS(6273), + [anon_sym_PIPE] = ACTIONS(2043), + [anon_sym_CARET] = ACTIONS(2043), + [anon_sym_AMP] = ACTIONS(2043), + [anon_sym_EQ_EQ] = ACTIONS(6273), + [anon_sym_BANG_EQ] = ACTIONS(6273), + [anon_sym_GT] = ACTIONS(2043), + [anon_sym_GT_EQ] = ACTIONS(6273), + [anon_sym_LT_EQ] = ACTIONS(2043), + [anon_sym_LT] = ACTIONS(2043), + [anon_sym_LT_LT] = ACTIONS(2043), + [anon_sym_GT_GT] = ACTIONS(2043), + [anon_sym_SEMI] = ACTIONS(6273), + [anon_sym___attribute__] = ACTIONS(2043), + [anon_sym___attribute] = ACTIONS(2043), + [anon_sym_COLON] = ACTIONS(6273), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6275), + [anon_sym_RBRACE] = ACTIONS(6273), + [anon_sym_LBRACK] = ACTIONS(2043), + [anon_sym_RBRACK] = ACTIONS(6273), + [anon_sym_EQ] = ACTIONS(2043), + [anon_sym_QMARK] = ACTIONS(6273), + [anon_sym_STAR_EQ] = ACTIONS(6273), + [anon_sym_SLASH_EQ] = ACTIONS(6273), + [anon_sym_PERCENT_EQ] = ACTIONS(6273), + [anon_sym_PLUS_EQ] = ACTIONS(6273), + [anon_sym_DASH_EQ] = ACTIONS(6273), + [anon_sym_LT_LT_EQ] = ACTIONS(6273), + [anon_sym_GT_GT_EQ] = ACTIONS(6273), + [anon_sym_AMP_EQ] = ACTIONS(6273), + [anon_sym_CARET_EQ] = ACTIONS(6273), + [anon_sym_PIPE_EQ] = ACTIONS(6273), + [anon_sym_and_eq] = ACTIONS(2043), + [anon_sym_or_eq] = ACTIONS(2043), + [anon_sym_xor_eq] = ACTIONS(2043), + [anon_sym_LT_EQ_GT] = ACTIONS(6273), + [anon_sym_or] = ACTIONS(2043), + [anon_sym_and] = ACTIONS(2043), + [anon_sym_bitor] = ACTIONS(2043), + [anon_sym_xor] = ACTIONS(2043), + [anon_sym_bitand] = ACTIONS(2043), + [anon_sym_not_eq] = ACTIONS(2043), + [anon_sym_DASH_DASH] = ACTIONS(6273), + [anon_sym_PLUS_PLUS] = ACTIONS(6273), + [anon_sym_DOT] = ACTIONS(2043), + [anon_sym_DOT_STAR] = ACTIONS(6273), + [anon_sym_DASH_GT] = ACTIONS(6273), + [sym_comment] = ACTIONS(3), + }, + [2302] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(5603), + [anon_sym_COMMA] = ACTIONS(5603), + [anon_sym_RPAREN] = ACTIONS(5603), + [anon_sym_LPAREN2] = ACTIONS(5603), + [anon_sym_DASH] = ACTIONS(5601), + [anon_sym_PLUS] = ACTIONS(5601), + [anon_sym_STAR] = ACTIONS(5601), + [anon_sym_SLASH] = ACTIONS(5601), + [anon_sym_PERCENT] = ACTIONS(5601), + [anon_sym_PIPE_PIPE] = ACTIONS(5603), + [anon_sym_AMP_AMP] = ACTIONS(5603), + [anon_sym_PIPE] = ACTIONS(5601), + [anon_sym_CARET] = ACTIONS(5601), + [anon_sym_AMP] = ACTIONS(5601), + [anon_sym_EQ_EQ] = ACTIONS(5603), + [anon_sym_BANG_EQ] = ACTIONS(5603), + [anon_sym_GT] = ACTIONS(5601), + [anon_sym_GT_EQ] = ACTIONS(5603), + [anon_sym_LT_EQ] = ACTIONS(5601), + [anon_sym_LT] = ACTIONS(5601), + [anon_sym_LT_LT] = ACTIONS(5601), + [anon_sym_GT_GT] = ACTIONS(5601), + [anon_sym_SEMI] = ACTIONS(5603), + [anon_sym_COLON] = ACTIONS(5603), + [anon_sym_RBRACE] = ACTIONS(5603), + [anon_sym_LBRACK] = ACTIONS(5603), + [anon_sym_RBRACK] = ACTIONS(5603), + [anon_sym_EQ] = ACTIONS(5601), + [anon_sym_QMARK] = ACTIONS(5603), + [anon_sym_STAR_EQ] = ACTIONS(5603), + [anon_sym_SLASH_EQ] = ACTIONS(5603), + [anon_sym_PERCENT_EQ] = ACTIONS(5603), + [anon_sym_PLUS_EQ] = ACTIONS(5603), + [anon_sym_DASH_EQ] = ACTIONS(5603), + [anon_sym_LT_LT_EQ] = ACTIONS(5603), + [anon_sym_GT_GT_EQ] = ACTIONS(5603), + [anon_sym_AMP_EQ] = ACTIONS(5603), + [anon_sym_CARET_EQ] = ACTIONS(5603), + [anon_sym_PIPE_EQ] = ACTIONS(5603), + [anon_sym_and_eq] = ACTIONS(5601), + [anon_sym_or_eq] = ACTIONS(5601), + [anon_sym_xor_eq] = ACTIONS(5601), + [anon_sym_LT_EQ_GT] = ACTIONS(5603), + [anon_sym_or] = ACTIONS(5601), + [anon_sym_and] = ACTIONS(5601), + [anon_sym_bitor] = ACTIONS(5601), + [anon_sym_xor] = ACTIONS(5601), + [anon_sym_bitand] = ACTIONS(5601), + [anon_sym_not_eq] = ACTIONS(5601), + [anon_sym_DASH_DASH] = ACTIONS(5603), + [anon_sym_PLUS_PLUS] = ACTIONS(5603), + [anon_sym_DOT] = ACTIONS(5601), + [anon_sym_DOT_STAR] = ACTIONS(5603), + [anon_sym_DASH_GT] = ACTIONS(5603), + [anon_sym_L_DQUOTE] = ACTIONS(5603), + [anon_sym_u_DQUOTE] = ACTIONS(5603), + [anon_sym_U_DQUOTE] = ACTIONS(5603), + [anon_sym_u8_DQUOTE] = ACTIONS(5603), + [anon_sym_DQUOTE] = ACTIONS(5603), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5603), + [anon_sym_LR_DQUOTE] = ACTIONS(5603), + [anon_sym_uR_DQUOTE] = ACTIONS(5603), + [anon_sym_UR_DQUOTE] = ACTIONS(5603), + [anon_sym_u8R_DQUOTE] = ACTIONS(5603), + [sym_literal_suffix] = ACTIONS(5601), + }, + [2303] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(5643), + [anon_sym_COMMA] = ACTIONS(5643), + [anon_sym_RPAREN] = ACTIONS(5643), + [anon_sym_LPAREN2] = ACTIONS(5643), + [anon_sym_DASH] = ACTIONS(5641), + [anon_sym_PLUS] = ACTIONS(5641), + [anon_sym_STAR] = ACTIONS(5641), + [anon_sym_SLASH] = ACTIONS(5641), + [anon_sym_PERCENT] = ACTIONS(5641), + [anon_sym_PIPE_PIPE] = ACTIONS(5643), + [anon_sym_AMP_AMP] = ACTIONS(5643), + [anon_sym_PIPE] = ACTIONS(5641), + [anon_sym_CARET] = ACTIONS(5641), + [anon_sym_AMP] = ACTIONS(5641), + [anon_sym_EQ_EQ] = ACTIONS(5643), + [anon_sym_BANG_EQ] = ACTIONS(5643), + [anon_sym_GT] = ACTIONS(5641), + [anon_sym_GT_EQ] = ACTIONS(5643), + [anon_sym_LT_EQ] = ACTIONS(5641), + [anon_sym_LT] = ACTIONS(5641), + [anon_sym_LT_LT] = ACTIONS(5641), + [anon_sym_GT_GT] = ACTIONS(5641), + [anon_sym_SEMI] = ACTIONS(5643), + [anon_sym_COLON] = ACTIONS(5643), + [anon_sym_RBRACE] = ACTIONS(5643), + [anon_sym_LBRACK] = ACTIONS(5643), + [anon_sym_RBRACK] = ACTIONS(5643), + [anon_sym_EQ] = ACTIONS(5641), + [anon_sym_QMARK] = ACTIONS(5643), + [anon_sym_STAR_EQ] = ACTIONS(5643), + [anon_sym_SLASH_EQ] = ACTIONS(5643), + [anon_sym_PERCENT_EQ] = ACTIONS(5643), + [anon_sym_PLUS_EQ] = ACTIONS(5643), + [anon_sym_DASH_EQ] = ACTIONS(5643), + [anon_sym_LT_LT_EQ] = ACTIONS(5643), + [anon_sym_GT_GT_EQ] = ACTIONS(5643), + [anon_sym_AMP_EQ] = ACTIONS(5643), + [anon_sym_CARET_EQ] = ACTIONS(5643), + [anon_sym_PIPE_EQ] = ACTIONS(5643), + [anon_sym_and_eq] = ACTIONS(5641), + [anon_sym_or_eq] = ACTIONS(5641), + [anon_sym_xor_eq] = ACTIONS(5641), + [anon_sym_LT_EQ_GT] = ACTIONS(5643), + [anon_sym_or] = ACTIONS(5641), + [anon_sym_and] = ACTIONS(5641), + [anon_sym_bitor] = ACTIONS(5641), + [anon_sym_xor] = ACTIONS(5641), + [anon_sym_bitand] = ACTIONS(5641), + [anon_sym_not_eq] = ACTIONS(5641), + [anon_sym_DASH_DASH] = ACTIONS(5643), + [anon_sym_PLUS_PLUS] = ACTIONS(5643), + [anon_sym_DOT] = ACTIONS(5641), + [anon_sym_DOT_STAR] = ACTIONS(5643), + [anon_sym_DASH_GT] = ACTIONS(5643), + [anon_sym_L_DQUOTE] = ACTIONS(5643), + [anon_sym_u_DQUOTE] = ACTIONS(5643), + [anon_sym_U_DQUOTE] = ACTIONS(5643), + [anon_sym_u8_DQUOTE] = ACTIONS(5643), + [anon_sym_DQUOTE] = ACTIONS(5643), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5643), + [anon_sym_LR_DQUOTE] = ACTIONS(5643), + [anon_sym_uR_DQUOTE] = ACTIONS(5643), + [anon_sym_UR_DQUOTE] = ACTIONS(5643), + [anon_sym_u8R_DQUOTE] = ACTIONS(5643), + [sym_literal_suffix] = ACTIONS(5641), + }, + [2304] = { + [sym_identifier] = ACTIONS(5660), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5662), + [anon_sym_COMMA] = ACTIONS(5662), + [anon_sym_RPAREN] = ACTIONS(5662), + [aux_sym_preproc_if_token2] = ACTIONS(5662), + [aux_sym_preproc_else_token1] = ACTIONS(5662), + [aux_sym_preproc_elif_token1] = ACTIONS(5660), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5662), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5662), + [anon_sym_LPAREN2] = ACTIONS(5662), + [anon_sym_DASH] = ACTIONS(5660), + [anon_sym_PLUS] = ACTIONS(5660), + [anon_sym_STAR] = ACTIONS(5660), + [anon_sym_SLASH] = ACTIONS(5660), + [anon_sym_PERCENT] = ACTIONS(5660), + [anon_sym_PIPE_PIPE] = ACTIONS(5662), + [anon_sym_AMP_AMP] = ACTIONS(5662), + [anon_sym_PIPE] = ACTIONS(5660), + [anon_sym_CARET] = ACTIONS(5660), + [anon_sym_AMP] = ACTIONS(5660), + [anon_sym_EQ_EQ] = ACTIONS(5662), + [anon_sym_BANG_EQ] = ACTIONS(5662), + [anon_sym_GT] = ACTIONS(5660), + [anon_sym_GT_EQ] = ACTIONS(5662), + [anon_sym_LT_EQ] = ACTIONS(5660), + [anon_sym_LT] = ACTIONS(5660), + [anon_sym_LT_LT] = ACTIONS(5660), + [anon_sym_GT_GT] = ACTIONS(5660), + [anon_sym_SEMI] = ACTIONS(5662), + [anon_sym___attribute__] = ACTIONS(5660), + [anon_sym___attribute] = ACTIONS(5660), + [anon_sym_COLON] = ACTIONS(5662), + [anon_sym_LBRACE] = ACTIONS(5662), + [anon_sym_RBRACE] = ACTIONS(5662), + [anon_sym_LBRACK] = ACTIONS(5662), + [anon_sym_RBRACK] = ACTIONS(5662), + [anon_sym_EQ] = ACTIONS(5660), + [anon_sym_QMARK] = ACTIONS(5662), + [anon_sym_STAR_EQ] = ACTIONS(5662), + [anon_sym_SLASH_EQ] = ACTIONS(5662), + [anon_sym_PERCENT_EQ] = ACTIONS(5662), + [anon_sym_PLUS_EQ] = ACTIONS(5662), + [anon_sym_DASH_EQ] = ACTIONS(5662), + [anon_sym_LT_LT_EQ] = ACTIONS(5662), + [anon_sym_GT_GT_EQ] = ACTIONS(5662), + [anon_sym_AMP_EQ] = ACTIONS(5662), + [anon_sym_CARET_EQ] = ACTIONS(5662), + [anon_sym_PIPE_EQ] = ACTIONS(5662), + [anon_sym_and_eq] = ACTIONS(5660), + [anon_sym_or_eq] = ACTIONS(5660), + [anon_sym_xor_eq] = ACTIONS(5660), + [anon_sym_LT_EQ_GT] = ACTIONS(5662), + [anon_sym_or] = ACTIONS(5660), + [anon_sym_and] = ACTIONS(5660), + [anon_sym_bitor] = ACTIONS(5660), + [anon_sym_xor] = ACTIONS(5660), + [anon_sym_bitand] = ACTIONS(5660), + [anon_sym_not_eq] = ACTIONS(5660), + [anon_sym_DASH_DASH] = ACTIONS(5662), + [anon_sym_PLUS_PLUS] = ACTIONS(5662), + [anon_sym_DOT] = ACTIONS(5660), + [anon_sym_DOT_STAR] = ACTIONS(5662), + [anon_sym_DASH_GT] = ACTIONS(5662), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5660), + [anon_sym_decltype] = ACTIONS(5660), }, - [2225] = { - [sym_identifier] = ACTIONS(5778), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5780), - [anon_sym_COMMA] = ACTIONS(5780), - [anon_sym_RPAREN] = ACTIONS(5780), - [aux_sym_preproc_if_token2] = ACTIONS(5780), - [aux_sym_preproc_else_token1] = ACTIONS(5780), - [aux_sym_preproc_elif_token1] = ACTIONS(5778), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5780), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5780), - [anon_sym_LPAREN2] = ACTIONS(5780), - [anon_sym_DASH] = ACTIONS(5778), - [anon_sym_PLUS] = ACTIONS(5778), - [anon_sym_STAR] = ACTIONS(5778), - [anon_sym_SLASH] = ACTIONS(5778), - [anon_sym_PERCENT] = ACTIONS(5778), - [anon_sym_PIPE_PIPE] = ACTIONS(5780), - [anon_sym_AMP_AMP] = ACTIONS(5780), - [anon_sym_PIPE] = ACTIONS(5778), - [anon_sym_CARET] = ACTIONS(5778), - [anon_sym_AMP] = ACTIONS(5778), - [anon_sym_EQ_EQ] = ACTIONS(5780), - [anon_sym_BANG_EQ] = ACTIONS(5780), - [anon_sym_GT] = ACTIONS(5778), - [anon_sym_GT_EQ] = ACTIONS(5780), - [anon_sym_LT_EQ] = ACTIONS(5778), - [anon_sym_LT] = ACTIONS(5778), - [anon_sym_LT_LT] = ACTIONS(5778), - [anon_sym_GT_GT] = ACTIONS(5778), - [anon_sym_SEMI] = ACTIONS(5780), - [anon_sym___attribute__] = ACTIONS(5778), - [anon_sym___attribute] = ACTIONS(5778), - [anon_sym_COLON] = ACTIONS(5780), - [anon_sym_LBRACE] = ACTIONS(5780), - [anon_sym_RBRACE] = ACTIONS(5780), - [anon_sym_LBRACK] = ACTIONS(5780), - [anon_sym_RBRACK] = ACTIONS(5780), - [anon_sym_EQ] = ACTIONS(5778), - [anon_sym_QMARK] = ACTIONS(5780), - [anon_sym_STAR_EQ] = ACTIONS(5780), - [anon_sym_SLASH_EQ] = ACTIONS(5780), - [anon_sym_PERCENT_EQ] = ACTIONS(5780), - [anon_sym_PLUS_EQ] = ACTIONS(5780), - [anon_sym_DASH_EQ] = ACTIONS(5780), - [anon_sym_LT_LT_EQ] = ACTIONS(5780), - [anon_sym_GT_GT_EQ] = ACTIONS(5780), - [anon_sym_AMP_EQ] = ACTIONS(5780), - [anon_sym_CARET_EQ] = ACTIONS(5780), - [anon_sym_PIPE_EQ] = ACTIONS(5780), - [anon_sym_and_eq] = ACTIONS(5778), - [anon_sym_or_eq] = ACTIONS(5778), - [anon_sym_xor_eq] = ACTIONS(5778), - [anon_sym_LT_EQ_GT] = ACTIONS(5780), - [anon_sym_or] = ACTIONS(5778), - [anon_sym_and] = ACTIONS(5778), - [anon_sym_bitor] = ACTIONS(5778), - [anon_sym_xor] = ACTIONS(5778), - [anon_sym_bitand] = ACTIONS(5778), - [anon_sym_not_eq] = ACTIONS(5778), - [anon_sym_DASH_DASH] = ACTIONS(5780), - [anon_sym_PLUS_PLUS] = ACTIONS(5780), - [anon_sym_DOT] = ACTIONS(5778), - [anon_sym_DOT_STAR] = ACTIONS(5780), - [anon_sym_DASH_GT] = ACTIONS(5780), + [2305] = { + [sym_identifier] = ACTIONS(4980), + [anon_sym_LPAREN2] = ACTIONS(4982), + [anon_sym_TILDE] = ACTIONS(4982), + [anon_sym_STAR] = ACTIONS(4982), + [anon_sym_PIPE_PIPE] = ACTIONS(4982), + [anon_sym_AMP_AMP] = ACTIONS(4982), + [anon_sym_AMP] = ACTIONS(4980), + [anon_sym___extension__] = ACTIONS(4980), + [anon_sym_virtual] = ACTIONS(4980), + [anon_sym_extern] = ACTIONS(4980), + [anon_sym___attribute__] = ACTIONS(4980), + [anon_sym___attribute] = ACTIONS(4980), + [anon_sym_using] = ACTIONS(4980), + [anon_sym_COLON_COLON] = ACTIONS(4982), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4982), + [anon_sym___declspec] = ACTIONS(4980), + [anon_sym___based] = ACTIONS(4980), + [anon_sym___cdecl] = ACTIONS(4980), + [anon_sym___clrcall] = ACTIONS(4980), + [anon_sym___stdcall] = ACTIONS(4980), + [anon_sym___fastcall] = ACTIONS(4980), + [anon_sym___thiscall] = ACTIONS(4980), + [anon_sym___vectorcall] = ACTIONS(4980), + [anon_sym_signed] = ACTIONS(4980), + [anon_sym_unsigned] = ACTIONS(4980), + [anon_sym_long] = ACTIONS(4980), + [anon_sym_short] = ACTIONS(4980), + [anon_sym_LBRACK] = ACTIONS(4980), + [anon_sym_static] = ACTIONS(4980), + [anon_sym_register] = ACTIONS(4980), + [anon_sym_inline] = ACTIONS(4980), + [anon_sym___inline] = ACTIONS(4980), + [anon_sym___inline__] = ACTIONS(4980), + [anon_sym___forceinline] = ACTIONS(4980), + [anon_sym_thread_local] = ACTIONS(4980), + [anon_sym___thread] = ACTIONS(4980), + [anon_sym_const] = ACTIONS(4980), + [anon_sym_constexpr] = ACTIONS(4980), + [anon_sym_volatile] = ACTIONS(4980), + [anon_sym_restrict] = ACTIONS(4980), + [anon_sym___restrict__] = ACTIONS(4980), + [anon_sym__Atomic] = ACTIONS(4980), + [anon_sym__Noreturn] = ACTIONS(4980), + [anon_sym_noreturn] = ACTIONS(4980), + [anon_sym__Nonnull] = ACTIONS(4980), + [anon_sym_mutable] = ACTIONS(4980), + [anon_sym_constinit] = ACTIONS(4980), + [anon_sym_consteval] = ACTIONS(4980), + [anon_sym_alignas] = ACTIONS(4980), + [anon_sym__Alignas] = ACTIONS(4980), + [sym_primitive_type] = ACTIONS(4980), + [anon_sym_enum] = ACTIONS(4980), + [anon_sym_class] = ACTIONS(4980), + [anon_sym_struct] = ACTIONS(4980), + [anon_sym_union] = ACTIONS(4980), + [anon_sym_or] = ACTIONS(4980), + [anon_sym_and] = ACTIONS(4980), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5778), - [anon_sym_decltype] = ACTIONS(5778), + [sym_auto] = ACTIONS(4980), + [anon_sym_decltype] = ACTIONS(4980), + [anon_sym_explicit] = ACTIONS(4980), + [anon_sym_typename] = ACTIONS(4980), + [anon_sym_template] = ACTIONS(4980), + [anon_sym_operator] = ACTIONS(4980), + [anon_sym_friend] = ACTIONS(4980), + [anon_sym_concept] = ACTIONS(4980), }, - [2226] = { + [2306] = { + [sym_identifier] = ACTIONS(5738), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5740), + [anon_sym_COMMA] = ACTIONS(5740), + [anon_sym_RPAREN] = ACTIONS(5740), + [aux_sym_preproc_if_token2] = ACTIONS(5740), + [aux_sym_preproc_else_token1] = ACTIONS(5740), + [aux_sym_preproc_elif_token1] = ACTIONS(5738), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5740), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5740), + [anon_sym_LPAREN2] = ACTIONS(5740), + [anon_sym_DASH] = ACTIONS(5738), + [anon_sym_PLUS] = ACTIONS(5738), + [anon_sym_STAR] = ACTIONS(5738), + [anon_sym_SLASH] = ACTIONS(5738), + [anon_sym_PERCENT] = ACTIONS(5738), + [anon_sym_PIPE_PIPE] = ACTIONS(5740), + [anon_sym_AMP_AMP] = ACTIONS(5740), + [anon_sym_PIPE] = ACTIONS(5738), + [anon_sym_CARET] = ACTIONS(5738), + [anon_sym_AMP] = ACTIONS(5738), + [anon_sym_EQ_EQ] = ACTIONS(5740), + [anon_sym_BANG_EQ] = ACTIONS(5740), + [anon_sym_GT] = ACTIONS(5738), + [anon_sym_GT_EQ] = ACTIONS(5740), + [anon_sym_LT_EQ] = ACTIONS(5738), + [anon_sym_LT] = ACTIONS(5738), + [anon_sym_LT_LT] = ACTIONS(5738), + [anon_sym_GT_GT] = ACTIONS(5738), + [anon_sym_SEMI] = ACTIONS(5740), + [anon_sym___attribute__] = ACTIONS(5738), + [anon_sym___attribute] = ACTIONS(5738), + [anon_sym_COLON] = ACTIONS(5740), + [anon_sym_LBRACE] = ACTIONS(5740), + [anon_sym_RBRACE] = ACTIONS(5740), + [anon_sym_LBRACK] = ACTIONS(5740), + [anon_sym_RBRACK] = ACTIONS(5740), + [anon_sym_EQ] = ACTIONS(5738), + [anon_sym_QMARK] = ACTIONS(5740), + [anon_sym_STAR_EQ] = ACTIONS(5740), + [anon_sym_SLASH_EQ] = ACTIONS(5740), + [anon_sym_PERCENT_EQ] = ACTIONS(5740), + [anon_sym_PLUS_EQ] = ACTIONS(5740), + [anon_sym_DASH_EQ] = ACTIONS(5740), + [anon_sym_LT_LT_EQ] = ACTIONS(5740), + [anon_sym_GT_GT_EQ] = ACTIONS(5740), + [anon_sym_AMP_EQ] = ACTIONS(5740), + [anon_sym_CARET_EQ] = ACTIONS(5740), + [anon_sym_PIPE_EQ] = ACTIONS(5740), + [anon_sym_and_eq] = ACTIONS(5738), + [anon_sym_or_eq] = ACTIONS(5738), + [anon_sym_xor_eq] = ACTIONS(5738), + [anon_sym_LT_EQ_GT] = ACTIONS(5740), + [anon_sym_or] = ACTIONS(5738), + [anon_sym_and] = ACTIONS(5738), + [anon_sym_bitor] = ACTIONS(5738), + [anon_sym_xor] = ACTIONS(5738), + [anon_sym_bitand] = ACTIONS(5738), + [anon_sym_not_eq] = ACTIONS(5738), + [anon_sym_DASH_DASH] = ACTIONS(5740), + [anon_sym_PLUS_PLUS] = ACTIONS(5740), + [anon_sym_DOT] = ACTIONS(5738), + [anon_sym_DOT_STAR] = ACTIONS(5740), + [anon_sym_DASH_GT] = ACTIONS(5740), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5738), + [anon_sym_decltype] = ACTIONS(5738), + }, + [2307] = { [sym_identifier] = ACTIONS(5728), [anon_sym_DOT_DOT_DOT] = ACTIONS(5730), [anon_sym_COMMA] = ACTIONS(5730), @@ -284657,2455 +291918,2115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(5728), [anon_sym_decltype] = ACTIONS(5728), }, - [2227] = { - [sym_identifier] = ACTIONS(5732), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5734), - [anon_sym_COMMA] = ACTIONS(5734), - [anon_sym_RPAREN] = ACTIONS(5734), - [aux_sym_preproc_if_token2] = ACTIONS(5734), - [aux_sym_preproc_else_token1] = ACTIONS(5734), - [aux_sym_preproc_elif_token1] = ACTIONS(5732), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5734), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5734), - [anon_sym_LPAREN2] = ACTIONS(5734), - [anon_sym_DASH] = ACTIONS(5732), - [anon_sym_PLUS] = ACTIONS(5732), - [anon_sym_STAR] = ACTIONS(5732), - [anon_sym_SLASH] = ACTIONS(5732), - [anon_sym_PERCENT] = ACTIONS(5732), - [anon_sym_PIPE_PIPE] = ACTIONS(5734), - [anon_sym_AMP_AMP] = ACTIONS(5734), - [anon_sym_PIPE] = ACTIONS(5732), - [anon_sym_CARET] = ACTIONS(5732), - [anon_sym_AMP] = ACTIONS(5732), - [anon_sym_EQ_EQ] = ACTIONS(5734), - [anon_sym_BANG_EQ] = ACTIONS(5734), - [anon_sym_GT] = ACTIONS(5732), - [anon_sym_GT_EQ] = ACTIONS(5734), - [anon_sym_LT_EQ] = ACTIONS(5732), - [anon_sym_LT] = ACTIONS(5732), - [anon_sym_LT_LT] = ACTIONS(5732), - [anon_sym_GT_GT] = ACTIONS(5732), - [anon_sym_SEMI] = ACTIONS(5734), - [anon_sym___attribute__] = ACTIONS(5732), - [anon_sym___attribute] = ACTIONS(5732), - [anon_sym_COLON] = ACTIONS(5734), - [anon_sym_LBRACE] = ACTIONS(5734), - [anon_sym_RBRACE] = ACTIONS(5734), - [anon_sym_LBRACK] = ACTIONS(5734), - [anon_sym_RBRACK] = ACTIONS(5734), - [anon_sym_EQ] = ACTIONS(5732), - [anon_sym_QMARK] = ACTIONS(5734), - [anon_sym_STAR_EQ] = ACTIONS(5734), - [anon_sym_SLASH_EQ] = ACTIONS(5734), - [anon_sym_PERCENT_EQ] = ACTIONS(5734), - [anon_sym_PLUS_EQ] = ACTIONS(5734), - [anon_sym_DASH_EQ] = ACTIONS(5734), - [anon_sym_LT_LT_EQ] = ACTIONS(5734), - [anon_sym_GT_GT_EQ] = ACTIONS(5734), - [anon_sym_AMP_EQ] = ACTIONS(5734), - [anon_sym_CARET_EQ] = ACTIONS(5734), - [anon_sym_PIPE_EQ] = ACTIONS(5734), - [anon_sym_and_eq] = ACTIONS(5732), - [anon_sym_or_eq] = ACTIONS(5732), - [anon_sym_xor_eq] = ACTIONS(5732), - [anon_sym_LT_EQ_GT] = ACTIONS(5734), - [anon_sym_or] = ACTIONS(5732), - [anon_sym_and] = ACTIONS(5732), - [anon_sym_bitor] = ACTIONS(5732), - [anon_sym_xor] = ACTIONS(5732), - [anon_sym_bitand] = ACTIONS(5732), - [anon_sym_not_eq] = ACTIONS(5732), - [anon_sym_DASH_DASH] = ACTIONS(5734), - [anon_sym_PLUS_PLUS] = ACTIONS(5734), - [anon_sym_DOT] = ACTIONS(5732), - [anon_sym_DOT_STAR] = ACTIONS(5734), - [anon_sym_DASH_GT] = ACTIONS(5734), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5732), - [anon_sym_decltype] = ACTIONS(5732), - }, - [2228] = { - [sym_identifier] = ACTIONS(5736), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5738), - [anon_sym_COMMA] = ACTIONS(5738), - [anon_sym_RPAREN] = ACTIONS(5738), - [aux_sym_preproc_if_token2] = ACTIONS(5738), - [aux_sym_preproc_else_token1] = ACTIONS(5738), - [aux_sym_preproc_elif_token1] = ACTIONS(5736), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5738), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5738), - [anon_sym_LPAREN2] = ACTIONS(5738), - [anon_sym_DASH] = ACTIONS(5736), - [anon_sym_PLUS] = ACTIONS(5736), - [anon_sym_STAR] = ACTIONS(5736), - [anon_sym_SLASH] = ACTIONS(5736), - [anon_sym_PERCENT] = ACTIONS(5736), - [anon_sym_PIPE_PIPE] = ACTIONS(5738), - [anon_sym_AMP_AMP] = ACTIONS(5738), - [anon_sym_PIPE] = ACTIONS(5736), - [anon_sym_CARET] = ACTIONS(5736), - [anon_sym_AMP] = ACTIONS(5736), - [anon_sym_EQ_EQ] = ACTIONS(5738), - [anon_sym_BANG_EQ] = ACTIONS(5738), - [anon_sym_GT] = ACTIONS(5736), - [anon_sym_GT_EQ] = ACTIONS(5738), - [anon_sym_LT_EQ] = ACTIONS(5736), - [anon_sym_LT] = ACTIONS(5736), - [anon_sym_LT_LT] = ACTIONS(5736), - [anon_sym_GT_GT] = ACTIONS(5736), - [anon_sym_SEMI] = ACTIONS(5738), - [anon_sym___attribute__] = ACTIONS(5736), - [anon_sym___attribute] = ACTIONS(5736), - [anon_sym_COLON] = ACTIONS(5738), - [anon_sym_LBRACE] = ACTIONS(5738), - [anon_sym_RBRACE] = ACTIONS(5738), - [anon_sym_LBRACK] = ACTIONS(5738), - [anon_sym_RBRACK] = ACTIONS(5738), - [anon_sym_EQ] = ACTIONS(5736), - [anon_sym_QMARK] = ACTIONS(5738), - [anon_sym_STAR_EQ] = ACTIONS(5738), - [anon_sym_SLASH_EQ] = ACTIONS(5738), - [anon_sym_PERCENT_EQ] = ACTIONS(5738), - [anon_sym_PLUS_EQ] = ACTIONS(5738), - [anon_sym_DASH_EQ] = ACTIONS(5738), - [anon_sym_LT_LT_EQ] = ACTIONS(5738), - [anon_sym_GT_GT_EQ] = ACTIONS(5738), - [anon_sym_AMP_EQ] = ACTIONS(5738), - [anon_sym_CARET_EQ] = ACTIONS(5738), - [anon_sym_PIPE_EQ] = ACTIONS(5738), - [anon_sym_and_eq] = ACTIONS(5736), - [anon_sym_or_eq] = ACTIONS(5736), - [anon_sym_xor_eq] = ACTIONS(5736), - [anon_sym_LT_EQ_GT] = ACTIONS(5738), - [anon_sym_or] = ACTIONS(5736), - [anon_sym_and] = ACTIONS(5736), - [anon_sym_bitor] = ACTIONS(5736), - [anon_sym_xor] = ACTIONS(5736), - [anon_sym_bitand] = ACTIONS(5736), - [anon_sym_not_eq] = ACTIONS(5736), - [anon_sym_DASH_DASH] = ACTIONS(5738), - [anon_sym_PLUS_PLUS] = ACTIONS(5738), - [anon_sym_DOT] = ACTIONS(5736), - [anon_sym_DOT_STAR] = ACTIONS(5738), - [anon_sym_DASH_GT] = ACTIONS(5738), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5736), - [anon_sym_decltype] = ACTIONS(5736), + [2308] = { + [sym_string_literal] = STATE(2657), + [sym_template_argument_list] = STATE(3605), + [sym_raw_string_literal] = STATE(2657), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6116), + [anon_sym_COMMA] = ACTIONS(6278), + [anon_sym_LPAREN2] = ACTIONS(4166), + [anon_sym_DASH] = ACTIONS(4174), + [anon_sym_PLUS] = ACTIONS(4174), + [anon_sym_STAR] = ACTIONS(4174), + [anon_sym_SLASH] = ACTIONS(4174), + [anon_sym_PERCENT] = ACTIONS(4174), + [anon_sym_PIPE_PIPE] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4166), + [anon_sym_PIPE] = ACTIONS(4174), + [anon_sym_CARET] = ACTIONS(4174), + [anon_sym_AMP] = ACTIONS(4174), + [anon_sym_EQ_EQ] = ACTIONS(4166), + [anon_sym_BANG_EQ] = ACTIONS(4166), + [anon_sym_GT] = ACTIONS(4174), + [anon_sym_GT_EQ] = ACTIONS(4166), + [anon_sym_LT_EQ] = ACTIONS(4174), + [anon_sym_LT] = ACTIONS(5085), + [anon_sym_LT_LT] = ACTIONS(4174), + [anon_sym_GT_GT] = ACTIONS(4174), + [anon_sym_COLON_COLON] = ACTIONS(4187), + [anon_sym_LBRACE] = ACTIONS(4192), + [anon_sym_LBRACK] = ACTIONS(4166), + [anon_sym_RBRACK] = ACTIONS(6280), + [anon_sym_EQ] = ACTIONS(6126), + [anon_sym_QMARK] = ACTIONS(4166), + [anon_sym_STAR_EQ] = ACTIONS(6128), + [anon_sym_SLASH_EQ] = ACTIONS(6128), + [anon_sym_PERCENT_EQ] = ACTIONS(6128), + [anon_sym_PLUS_EQ] = ACTIONS(6128), + [anon_sym_DASH_EQ] = ACTIONS(6128), + [anon_sym_LT_LT_EQ] = ACTIONS(6128), + [anon_sym_GT_GT_EQ] = ACTIONS(6128), + [anon_sym_AMP_EQ] = ACTIONS(6128), + [anon_sym_CARET_EQ] = ACTIONS(6128), + [anon_sym_PIPE_EQ] = ACTIONS(6128), + [anon_sym_and_eq] = ACTIONS(6128), + [anon_sym_or_eq] = ACTIONS(6128), + [anon_sym_xor_eq] = ACTIONS(6128), + [anon_sym_LT_EQ_GT] = ACTIONS(4166), + [anon_sym_or] = ACTIONS(4174), + [anon_sym_and] = ACTIONS(4174), + [anon_sym_bitor] = ACTIONS(4166), + [anon_sym_xor] = ACTIONS(4174), + [anon_sym_bitand] = ACTIONS(4166), + [anon_sym_not_eq] = ACTIONS(4166), + [anon_sym_DASH_DASH] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4174), + [anon_sym_DOT_STAR] = ACTIONS(4166), + [anon_sym_DASH_GT] = ACTIONS(4166), + [anon_sym_L_DQUOTE] = ACTIONS(3631), + [anon_sym_u_DQUOTE] = ACTIONS(3631), + [anon_sym_U_DQUOTE] = ACTIONS(3631), + [anon_sym_u8_DQUOTE] = ACTIONS(3631), + [anon_sym_DQUOTE] = ACTIONS(3631), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3635), + [anon_sym_LR_DQUOTE] = ACTIONS(3635), + [anon_sym_uR_DQUOTE] = ACTIONS(3635), + [anon_sym_UR_DQUOTE] = ACTIONS(3635), + [anon_sym_u8R_DQUOTE] = ACTIONS(3635), }, - [2229] = { - [sym_identifier] = ACTIONS(2573), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2563), - [anon_sym_COMMA] = ACTIONS(2563), - [anon_sym_LPAREN2] = ACTIONS(2563), - [anon_sym_DASH] = ACTIONS(2573), - [anon_sym_PLUS] = ACTIONS(2573), - [anon_sym_STAR] = ACTIONS(2563), - [anon_sym_SLASH] = ACTIONS(2573), - [anon_sym_PERCENT] = ACTIONS(2563), - [anon_sym_PIPE_PIPE] = ACTIONS(2563), - [anon_sym_AMP_AMP] = ACTIONS(2563), - [anon_sym_PIPE] = ACTIONS(2573), - [anon_sym_CARET] = ACTIONS(2563), - [anon_sym_AMP] = ACTIONS(2573), - [anon_sym_EQ_EQ] = ACTIONS(2563), - [anon_sym_BANG_EQ] = ACTIONS(2563), - [anon_sym_GT] = ACTIONS(2573), - [anon_sym_GT_EQ] = ACTIONS(2573), - [anon_sym_LT_EQ] = ACTIONS(2573), - [anon_sym_LT] = ACTIONS(2573), - [anon_sym_LT_LT] = ACTIONS(2563), - [anon_sym_GT_GT] = ACTIONS(2573), - [anon_sym___extension__] = ACTIONS(2573), - [anon_sym___attribute__] = ACTIONS(2573), - [anon_sym___attribute] = ACTIONS(2573), - [anon_sym_LBRACE] = ACTIONS(2563), - [anon_sym_signed] = ACTIONS(2573), - [anon_sym_unsigned] = ACTIONS(2573), - [anon_sym_long] = ACTIONS(2573), - [anon_sym_short] = ACTIONS(2573), - [anon_sym_LBRACK] = ACTIONS(2563), - [anon_sym_const] = ACTIONS(2573), - [anon_sym_constexpr] = ACTIONS(2573), - [anon_sym_volatile] = ACTIONS(2573), - [anon_sym_restrict] = ACTIONS(2573), - [anon_sym___restrict__] = ACTIONS(2573), - [anon_sym__Atomic] = ACTIONS(2573), - [anon_sym__Noreturn] = ACTIONS(2573), - [anon_sym_noreturn] = ACTIONS(2573), - [anon_sym__Nonnull] = ACTIONS(2573), - [anon_sym_mutable] = ACTIONS(2573), - [anon_sym_constinit] = ACTIONS(2573), - [anon_sym_consteval] = ACTIONS(2573), - [anon_sym_alignas] = ACTIONS(2573), - [anon_sym__Alignas] = ACTIONS(2573), - [sym_primitive_type] = ACTIONS(2573), - [anon_sym_QMARK] = ACTIONS(2563), - [anon_sym_LT_EQ_GT] = ACTIONS(2563), - [anon_sym_or] = ACTIONS(2573), - [anon_sym_and] = ACTIONS(2573), - [anon_sym_bitor] = ACTIONS(2573), - [anon_sym_xor] = ACTIONS(2573), - [anon_sym_bitand] = ACTIONS(2573), - [anon_sym_not_eq] = ACTIONS(2573), - [anon_sym_DASH_DASH] = ACTIONS(2563), - [anon_sym_PLUS_PLUS] = ACTIONS(2563), - [anon_sym_DOT] = ACTIONS(2573), - [anon_sym_DOT_STAR] = ACTIONS(2563), - [anon_sym_DASH_GT] = ACTIONS(2563), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2573), - [anon_sym_decltype] = ACTIONS(2573), - [anon_sym_final] = ACTIONS(2573), - [anon_sym_override] = ACTIONS(2573), - [anon_sym_GT2] = ACTIONS(2563), - [anon_sym_requires] = ACTIONS(2573), + [2309] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(5472), + [anon_sym_COMMA] = ACTIONS(5472), + [anon_sym_RPAREN] = ACTIONS(5472), + [anon_sym_LPAREN2] = ACTIONS(5472), + [anon_sym_DASH] = ACTIONS(5470), + [anon_sym_PLUS] = ACTIONS(5470), + [anon_sym_STAR] = ACTIONS(5470), + [anon_sym_SLASH] = ACTIONS(5470), + [anon_sym_PERCENT] = ACTIONS(5470), + [anon_sym_PIPE_PIPE] = ACTIONS(5472), + [anon_sym_AMP_AMP] = ACTIONS(5472), + [anon_sym_PIPE] = ACTIONS(5470), + [anon_sym_CARET] = ACTIONS(5470), + [anon_sym_AMP] = ACTIONS(5470), + [anon_sym_EQ_EQ] = ACTIONS(5472), + [anon_sym_BANG_EQ] = ACTIONS(5472), + [anon_sym_GT] = ACTIONS(5470), + [anon_sym_GT_EQ] = ACTIONS(5472), + [anon_sym_LT_EQ] = ACTIONS(5470), + [anon_sym_LT] = ACTIONS(5470), + [anon_sym_LT_LT] = ACTIONS(5470), + [anon_sym_GT_GT] = ACTIONS(5470), + [anon_sym_SEMI] = ACTIONS(5472), + [anon_sym_COLON] = ACTIONS(5472), + [anon_sym_RBRACE] = ACTIONS(5472), + [anon_sym_LBRACK] = ACTIONS(5472), + [anon_sym_RBRACK] = ACTIONS(5472), + [anon_sym_EQ] = ACTIONS(5470), + [anon_sym_QMARK] = ACTIONS(5472), + [anon_sym_STAR_EQ] = ACTIONS(5472), + [anon_sym_SLASH_EQ] = ACTIONS(5472), + [anon_sym_PERCENT_EQ] = ACTIONS(5472), + [anon_sym_PLUS_EQ] = ACTIONS(5472), + [anon_sym_DASH_EQ] = ACTIONS(5472), + [anon_sym_LT_LT_EQ] = ACTIONS(5472), + [anon_sym_GT_GT_EQ] = ACTIONS(5472), + [anon_sym_AMP_EQ] = ACTIONS(5472), + [anon_sym_CARET_EQ] = ACTIONS(5472), + [anon_sym_PIPE_EQ] = ACTIONS(5472), + [anon_sym_and_eq] = ACTIONS(5470), + [anon_sym_or_eq] = ACTIONS(5470), + [anon_sym_xor_eq] = ACTIONS(5470), + [anon_sym_LT_EQ_GT] = ACTIONS(5472), + [anon_sym_or] = ACTIONS(5470), + [anon_sym_and] = ACTIONS(5470), + [anon_sym_bitor] = ACTIONS(5470), + [anon_sym_xor] = ACTIONS(5470), + [anon_sym_bitand] = ACTIONS(5470), + [anon_sym_not_eq] = ACTIONS(5470), + [anon_sym_DASH_DASH] = ACTIONS(5472), + [anon_sym_PLUS_PLUS] = ACTIONS(5472), + [anon_sym_DOT] = ACTIONS(5470), + [anon_sym_DOT_STAR] = ACTIONS(5472), + [anon_sym_DASH_GT] = ACTIONS(5472), + [anon_sym_L_DQUOTE] = ACTIONS(5472), + [anon_sym_u_DQUOTE] = ACTIONS(5472), + [anon_sym_U_DQUOTE] = ACTIONS(5472), + [anon_sym_u8_DQUOTE] = ACTIONS(5472), + [anon_sym_DQUOTE] = ACTIONS(5472), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5472), + [anon_sym_LR_DQUOTE] = ACTIONS(5472), + [anon_sym_uR_DQUOTE] = ACTIONS(5472), + [anon_sym_UR_DQUOTE] = ACTIONS(5472), + [anon_sym_u8R_DQUOTE] = ACTIONS(5472), + [sym_literal_suffix] = ACTIONS(5470), }, - [2230] = { - [sym_template_argument_list] = STATE(1941), - [aux_sym_sized_type_specifier_repeat1] = STATE(2248), - [sym_identifier] = ACTIONS(4144), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4152), - [anon_sym_COMMA] = ACTIONS(4152), - [aux_sym_preproc_if_token2] = ACTIONS(4152), - [aux_sym_preproc_else_token1] = ACTIONS(4152), - [aux_sym_preproc_elif_token1] = ACTIONS(4144), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4152), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4152), - [anon_sym_LPAREN2] = ACTIONS(4152), - [anon_sym_DASH] = ACTIONS(4144), - [anon_sym_PLUS] = ACTIONS(4144), - [anon_sym_STAR] = ACTIONS(4144), - [anon_sym_SLASH] = ACTIONS(4144), - [anon_sym_PERCENT] = ACTIONS(4144), - [anon_sym_PIPE_PIPE] = ACTIONS(4152), - [anon_sym_AMP_AMP] = ACTIONS(4152), - [anon_sym_PIPE] = ACTIONS(4144), - [anon_sym_CARET] = ACTIONS(4144), - [anon_sym_AMP] = ACTIONS(4144), - [anon_sym_EQ_EQ] = ACTIONS(4152), - [anon_sym_BANG_EQ] = ACTIONS(4152), - [anon_sym_GT] = ACTIONS(4144), - [anon_sym_GT_EQ] = ACTIONS(4152), - [anon_sym_LT_EQ] = ACTIONS(4144), - [anon_sym_LT] = ACTIONS(5840), - [anon_sym_LT_LT] = ACTIONS(4144), - [anon_sym_GT_GT] = ACTIONS(4144), - [anon_sym_COLON_COLON] = ACTIONS(4167), - [anon_sym_LBRACE] = ACTIONS(4152), - [anon_sym_signed] = ACTIONS(5981), - [anon_sym_unsigned] = ACTIONS(5981), - [anon_sym_long] = ACTIONS(5981), - [anon_sym_short] = ACTIONS(5981), - [anon_sym_LBRACK] = ACTIONS(4152), - [anon_sym_EQ] = ACTIONS(4144), - [anon_sym_QMARK] = ACTIONS(4152), - [anon_sym_STAR_EQ] = ACTIONS(4152), - [anon_sym_SLASH_EQ] = ACTIONS(4152), - [anon_sym_PERCENT_EQ] = ACTIONS(4152), - [anon_sym_PLUS_EQ] = ACTIONS(4152), - [anon_sym_DASH_EQ] = ACTIONS(4152), - [anon_sym_LT_LT_EQ] = ACTIONS(4152), - [anon_sym_GT_GT_EQ] = ACTIONS(4152), - [anon_sym_AMP_EQ] = ACTIONS(4152), - [anon_sym_CARET_EQ] = ACTIONS(4152), - [anon_sym_PIPE_EQ] = ACTIONS(4152), - [anon_sym_and_eq] = ACTIONS(4144), - [anon_sym_or_eq] = ACTIONS(4144), - [anon_sym_xor_eq] = ACTIONS(4144), - [anon_sym_LT_EQ_GT] = ACTIONS(4152), - [anon_sym_or] = ACTIONS(4144), - [anon_sym_and] = ACTIONS(4144), - [anon_sym_bitor] = ACTIONS(4144), - [anon_sym_xor] = ACTIONS(4144), - [anon_sym_bitand] = ACTIONS(4144), - [anon_sym_not_eq] = ACTIONS(4144), - [anon_sym_DASH_DASH] = ACTIONS(4152), - [anon_sym_PLUS_PLUS] = ACTIONS(4152), - [anon_sym_DOT] = ACTIONS(4144), - [anon_sym_DOT_STAR] = ACTIONS(4152), - [anon_sym_DASH_GT] = ACTIONS(4152), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4144), - [anon_sym_decltype] = ACTIONS(4144), + [2310] = { + [sym_identifier] = ACTIONS(5515), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5517), + [anon_sym_COMMA] = ACTIONS(5517), + [anon_sym_RPAREN] = ACTIONS(5517), + [aux_sym_preproc_if_token2] = ACTIONS(5517), + [aux_sym_preproc_else_token1] = ACTIONS(5517), + [aux_sym_preproc_elif_token1] = ACTIONS(5515), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5517), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5517), + [anon_sym_LPAREN2] = ACTIONS(5517), + [anon_sym_DASH] = ACTIONS(5515), + [anon_sym_PLUS] = ACTIONS(5515), + [anon_sym_STAR] = ACTIONS(5515), + [anon_sym_SLASH] = ACTIONS(5515), + [anon_sym_PERCENT] = ACTIONS(5515), + [anon_sym_PIPE_PIPE] = ACTIONS(5517), + [anon_sym_AMP_AMP] = ACTIONS(5517), + [anon_sym_PIPE] = ACTIONS(5515), + [anon_sym_CARET] = ACTIONS(5515), + [anon_sym_AMP] = ACTIONS(5515), + [anon_sym_EQ_EQ] = ACTIONS(5517), + [anon_sym_BANG_EQ] = ACTIONS(5517), + [anon_sym_GT] = ACTIONS(5515), + [anon_sym_GT_EQ] = ACTIONS(5517), + [anon_sym_LT_EQ] = ACTIONS(5515), + [anon_sym_LT] = ACTIONS(5515), + [anon_sym_LT_LT] = ACTIONS(5515), + [anon_sym_GT_GT] = ACTIONS(5515), + [anon_sym_SEMI] = ACTIONS(5517), + [anon_sym___attribute__] = ACTIONS(5515), + [anon_sym___attribute] = ACTIONS(5515), + [anon_sym_COLON] = ACTIONS(5517), + [anon_sym_LBRACE] = ACTIONS(5517), + [anon_sym_RBRACE] = ACTIONS(5517), + [anon_sym_LBRACK] = ACTIONS(5517), + [anon_sym_RBRACK] = ACTIONS(5517), + [anon_sym_EQ] = ACTIONS(5515), + [anon_sym_QMARK] = ACTIONS(5517), + [anon_sym_STAR_EQ] = ACTIONS(5517), + [anon_sym_SLASH_EQ] = ACTIONS(5517), + [anon_sym_PERCENT_EQ] = ACTIONS(5517), + [anon_sym_PLUS_EQ] = ACTIONS(5517), + [anon_sym_DASH_EQ] = ACTIONS(5517), + [anon_sym_LT_LT_EQ] = ACTIONS(5517), + [anon_sym_GT_GT_EQ] = ACTIONS(5517), + [anon_sym_AMP_EQ] = ACTIONS(5517), + [anon_sym_CARET_EQ] = ACTIONS(5517), + [anon_sym_PIPE_EQ] = ACTIONS(5517), + [anon_sym_and_eq] = ACTIONS(5515), + [anon_sym_or_eq] = ACTIONS(5515), + [anon_sym_xor_eq] = ACTIONS(5515), + [anon_sym_LT_EQ_GT] = ACTIONS(5517), + [anon_sym_or] = ACTIONS(5515), + [anon_sym_and] = ACTIONS(5515), + [anon_sym_bitor] = ACTIONS(5515), + [anon_sym_xor] = ACTIONS(5515), + [anon_sym_bitand] = ACTIONS(5515), + [anon_sym_not_eq] = ACTIONS(5515), + [anon_sym_DASH_DASH] = ACTIONS(5517), + [anon_sym_PLUS_PLUS] = ACTIONS(5517), + [anon_sym_DOT] = ACTIONS(5515), + [anon_sym_DOT_STAR] = ACTIONS(5517), + [anon_sym_DASH_GT] = ACTIONS(5517), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5515), + [anon_sym_decltype] = ACTIONS(5515), }, - [2231] = { - [sym_identifier] = ACTIONS(5750), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5752), - [anon_sym_COMMA] = ACTIONS(5752), - [anon_sym_RPAREN] = ACTIONS(5752), - [aux_sym_preproc_if_token2] = ACTIONS(5752), - [aux_sym_preproc_else_token1] = ACTIONS(5752), - [aux_sym_preproc_elif_token1] = ACTIONS(5750), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5752), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5752), - [anon_sym_LPAREN2] = ACTIONS(5752), - [anon_sym_DASH] = ACTIONS(5750), - [anon_sym_PLUS] = ACTIONS(5750), - [anon_sym_STAR] = ACTIONS(5750), - [anon_sym_SLASH] = ACTIONS(5750), - [anon_sym_PERCENT] = ACTIONS(5750), - [anon_sym_PIPE_PIPE] = ACTIONS(5752), - [anon_sym_AMP_AMP] = ACTIONS(5752), - [anon_sym_PIPE] = ACTIONS(5750), - [anon_sym_CARET] = ACTIONS(5750), - [anon_sym_AMP] = ACTIONS(5750), - [anon_sym_EQ_EQ] = ACTIONS(5752), - [anon_sym_BANG_EQ] = ACTIONS(5752), - [anon_sym_GT] = ACTIONS(5750), - [anon_sym_GT_EQ] = ACTIONS(5752), - [anon_sym_LT_EQ] = ACTIONS(5750), - [anon_sym_LT] = ACTIONS(5750), - [anon_sym_LT_LT] = ACTIONS(5750), - [anon_sym_GT_GT] = ACTIONS(5750), - [anon_sym_SEMI] = ACTIONS(5752), - [anon_sym___attribute__] = ACTIONS(5750), - [anon_sym___attribute] = ACTIONS(5750), - [anon_sym_COLON] = ACTIONS(5752), - [anon_sym_LBRACE] = ACTIONS(5752), - [anon_sym_RBRACE] = ACTIONS(5752), - [anon_sym_LBRACK] = ACTIONS(5752), - [anon_sym_RBRACK] = ACTIONS(5752), - [anon_sym_EQ] = ACTIONS(5750), - [anon_sym_QMARK] = ACTIONS(5752), - [anon_sym_STAR_EQ] = ACTIONS(5752), - [anon_sym_SLASH_EQ] = ACTIONS(5752), - [anon_sym_PERCENT_EQ] = ACTIONS(5752), - [anon_sym_PLUS_EQ] = ACTIONS(5752), - [anon_sym_DASH_EQ] = ACTIONS(5752), - [anon_sym_LT_LT_EQ] = ACTIONS(5752), - [anon_sym_GT_GT_EQ] = ACTIONS(5752), - [anon_sym_AMP_EQ] = ACTIONS(5752), - [anon_sym_CARET_EQ] = ACTIONS(5752), - [anon_sym_PIPE_EQ] = ACTIONS(5752), - [anon_sym_and_eq] = ACTIONS(5750), - [anon_sym_or_eq] = ACTIONS(5750), - [anon_sym_xor_eq] = ACTIONS(5750), - [anon_sym_LT_EQ_GT] = ACTIONS(5752), - [anon_sym_or] = ACTIONS(5750), - [anon_sym_and] = ACTIONS(5750), - [anon_sym_bitor] = ACTIONS(5750), - [anon_sym_xor] = ACTIONS(5750), - [anon_sym_bitand] = ACTIONS(5750), - [anon_sym_not_eq] = ACTIONS(5750), - [anon_sym_DASH_DASH] = ACTIONS(5752), - [anon_sym_PLUS_PLUS] = ACTIONS(5752), - [anon_sym_DOT] = ACTIONS(5750), - [anon_sym_DOT_STAR] = ACTIONS(5752), - [anon_sym_DASH_GT] = ACTIONS(5752), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5750), - [anon_sym_decltype] = ACTIONS(5750), + [2311] = { + [sym_identifier] = ACTIONS(5521), + [anon_sym_LPAREN2] = ACTIONS(5523), + [anon_sym_TILDE] = ACTIONS(5523), + [anon_sym_STAR] = ACTIONS(5523), + [anon_sym_PIPE_PIPE] = ACTIONS(5523), + [anon_sym_AMP_AMP] = ACTIONS(5523), + [anon_sym_AMP] = ACTIONS(5521), + [anon_sym___extension__] = ACTIONS(5521), + [anon_sym_virtual] = ACTIONS(5521), + [anon_sym_extern] = ACTIONS(5521), + [anon_sym___attribute__] = ACTIONS(5521), + [anon_sym___attribute] = ACTIONS(5521), + [anon_sym_using] = ACTIONS(5521), + [anon_sym_COLON_COLON] = ACTIONS(5519), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5523), + [anon_sym___declspec] = ACTIONS(5521), + [anon_sym___based] = ACTIONS(5521), + [anon_sym___cdecl] = ACTIONS(5521), + [anon_sym___clrcall] = ACTIONS(5521), + [anon_sym___stdcall] = ACTIONS(5521), + [anon_sym___fastcall] = ACTIONS(5521), + [anon_sym___thiscall] = ACTIONS(5521), + [anon_sym___vectorcall] = ACTIONS(5521), + [anon_sym_signed] = ACTIONS(5521), + [anon_sym_unsigned] = ACTIONS(5521), + [anon_sym_long] = ACTIONS(5521), + [anon_sym_short] = ACTIONS(5521), + [anon_sym_LBRACK] = ACTIONS(5521), + [anon_sym_static] = ACTIONS(5521), + [anon_sym_register] = ACTIONS(5521), + [anon_sym_inline] = ACTIONS(5521), + [anon_sym___inline] = ACTIONS(5521), + [anon_sym___inline__] = ACTIONS(5521), + [anon_sym___forceinline] = ACTIONS(5521), + [anon_sym_thread_local] = ACTIONS(5521), + [anon_sym___thread] = ACTIONS(5521), + [anon_sym_const] = ACTIONS(5521), + [anon_sym_constexpr] = ACTIONS(5521), + [anon_sym_volatile] = ACTIONS(5521), + [anon_sym_restrict] = ACTIONS(5521), + [anon_sym___restrict__] = ACTIONS(5521), + [anon_sym__Atomic] = ACTIONS(5521), + [anon_sym__Noreturn] = ACTIONS(5521), + [anon_sym_noreturn] = ACTIONS(5521), + [anon_sym__Nonnull] = ACTIONS(5521), + [anon_sym_mutable] = ACTIONS(5521), + [anon_sym_constinit] = ACTIONS(5521), + [anon_sym_consteval] = ACTIONS(5521), + [anon_sym_alignas] = ACTIONS(5521), + [anon_sym__Alignas] = ACTIONS(5521), + [sym_primitive_type] = ACTIONS(5521), + [anon_sym_enum] = ACTIONS(5521), + [anon_sym_class] = ACTIONS(5521), + [anon_sym_struct] = ACTIONS(5521), + [anon_sym_union] = ACTIONS(5521), + [anon_sym_or] = ACTIONS(5521), + [anon_sym_and] = ACTIONS(5521), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5521), + [anon_sym_decltype] = ACTIONS(5521), + [anon_sym_explicit] = ACTIONS(5521), + [anon_sym_typename] = ACTIONS(5521), + [anon_sym_template] = ACTIONS(5521), + [anon_sym_operator] = ACTIONS(5521), + [anon_sym_friend] = ACTIONS(5521), + [anon_sym_concept] = ACTIONS(5521), }, - [2232] = { - [sym_identifier] = ACTIONS(5754), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5756), - [anon_sym_COMMA] = ACTIONS(5756), - [anon_sym_RPAREN] = ACTIONS(5756), - [aux_sym_preproc_if_token2] = ACTIONS(5756), - [aux_sym_preproc_else_token1] = ACTIONS(5756), - [aux_sym_preproc_elif_token1] = ACTIONS(5754), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5756), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5756), - [anon_sym_LPAREN2] = ACTIONS(5756), - [anon_sym_DASH] = ACTIONS(5754), - [anon_sym_PLUS] = ACTIONS(5754), - [anon_sym_STAR] = ACTIONS(5754), - [anon_sym_SLASH] = ACTIONS(5754), - [anon_sym_PERCENT] = ACTIONS(5754), - [anon_sym_PIPE_PIPE] = ACTIONS(5756), - [anon_sym_AMP_AMP] = ACTIONS(5756), - [anon_sym_PIPE] = ACTIONS(5754), - [anon_sym_CARET] = ACTIONS(5754), - [anon_sym_AMP] = ACTIONS(5754), - [anon_sym_EQ_EQ] = ACTIONS(5756), - [anon_sym_BANG_EQ] = ACTIONS(5756), - [anon_sym_GT] = ACTIONS(5754), - [anon_sym_GT_EQ] = ACTIONS(5756), - [anon_sym_LT_EQ] = ACTIONS(5754), - [anon_sym_LT] = ACTIONS(5754), - [anon_sym_LT_LT] = ACTIONS(5754), - [anon_sym_GT_GT] = ACTIONS(5754), - [anon_sym_SEMI] = ACTIONS(5756), - [anon_sym___attribute__] = ACTIONS(5754), - [anon_sym___attribute] = ACTIONS(5754), - [anon_sym_COLON] = ACTIONS(5756), - [anon_sym_LBRACE] = ACTIONS(5756), - [anon_sym_RBRACE] = ACTIONS(5756), - [anon_sym_LBRACK] = ACTIONS(5756), - [anon_sym_RBRACK] = ACTIONS(5756), - [anon_sym_EQ] = ACTIONS(5754), - [anon_sym_QMARK] = ACTIONS(5756), - [anon_sym_STAR_EQ] = ACTIONS(5756), - [anon_sym_SLASH_EQ] = ACTIONS(5756), - [anon_sym_PERCENT_EQ] = ACTIONS(5756), - [anon_sym_PLUS_EQ] = ACTIONS(5756), - [anon_sym_DASH_EQ] = ACTIONS(5756), - [anon_sym_LT_LT_EQ] = ACTIONS(5756), - [anon_sym_GT_GT_EQ] = ACTIONS(5756), - [anon_sym_AMP_EQ] = ACTIONS(5756), - [anon_sym_CARET_EQ] = ACTIONS(5756), - [anon_sym_PIPE_EQ] = ACTIONS(5756), - [anon_sym_and_eq] = ACTIONS(5754), - [anon_sym_or_eq] = ACTIONS(5754), - [anon_sym_xor_eq] = ACTIONS(5754), - [anon_sym_LT_EQ_GT] = ACTIONS(5756), - [anon_sym_or] = ACTIONS(5754), - [anon_sym_and] = ACTIONS(5754), - [anon_sym_bitor] = ACTIONS(5754), - [anon_sym_xor] = ACTIONS(5754), - [anon_sym_bitand] = ACTIONS(5754), - [anon_sym_not_eq] = ACTIONS(5754), - [anon_sym_DASH_DASH] = ACTIONS(5756), - [anon_sym_PLUS_PLUS] = ACTIONS(5756), - [anon_sym_DOT] = ACTIONS(5754), - [anon_sym_DOT_STAR] = ACTIONS(5756), - [anon_sym_DASH_GT] = ACTIONS(5756), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5754), - [anon_sym_decltype] = ACTIONS(5754), + [2312] = { + [sym_identifier] = ACTIONS(5760), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5762), + [anon_sym_COMMA] = ACTIONS(5762), + [anon_sym_RPAREN] = ACTIONS(5762), + [aux_sym_preproc_if_token2] = ACTIONS(5762), + [aux_sym_preproc_else_token1] = ACTIONS(5762), + [aux_sym_preproc_elif_token1] = ACTIONS(5760), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5762), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5762), + [anon_sym_LPAREN2] = ACTIONS(5762), + [anon_sym_DASH] = ACTIONS(5760), + [anon_sym_PLUS] = ACTIONS(5760), + [anon_sym_STAR] = ACTIONS(5760), + [anon_sym_SLASH] = ACTIONS(5760), + [anon_sym_PERCENT] = ACTIONS(5760), + [anon_sym_PIPE_PIPE] = ACTIONS(5762), + [anon_sym_AMP_AMP] = ACTIONS(5762), + [anon_sym_PIPE] = ACTIONS(5760), + [anon_sym_CARET] = ACTIONS(5760), + [anon_sym_AMP] = ACTIONS(5760), + [anon_sym_EQ_EQ] = ACTIONS(5762), + [anon_sym_BANG_EQ] = ACTIONS(5762), + [anon_sym_GT] = ACTIONS(5760), + [anon_sym_GT_EQ] = ACTIONS(5762), + [anon_sym_LT_EQ] = ACTIONS(5760), + [anon_sym_LT] = ACTIONS(5760), + [anon_sym_LT_LT] = ACTIONS(5760), + [anon_sym_GT_GT] = ACTIONS(5760), + [anon_sym_SEMI] = ACTIONS(5762), + [anon_sym___attribute__] = ACTIONS(5760), + [anon_sym___attribute] = ACTIONS(5760), + [anon_sym_COLON] = ACTIONS(5762), + [anon_sym_LBRACE] = ACTIONS(5762), + [anon_sym_RBRACE] = ACTIONS(5762), + [anon_sym_LBRACK] = ACTIONS(5762), + [anon_sym_RBRACK] = ACTIONS(5762), + [anon_sym_EQ] = ACTIONS(5760), + [anon_sym_QMARK] = ACTIONS(5762), + [anon_sym_STAR_EQ] = ACTIONS(5762), + [anon_sym_SLASH_EQ] = ACTIONS(5762), + [anon_sym_PERCENT_EQ] = ACTIONS(5762), + [anon_sym_PLUS_EQ] = ACTIONS(5762), + [anon_sym_DASH_EQ] = ACTIONS(5762), + [anon_sym_LT_LT_EQ] = ACTIONS(5762), + [anon_sym_GT_GT_EQ] = ACTIONS(5762), + [anon_sym_AMP_EQ] = ACTIONS(5762), + [anon_sym_CARET_EQ] = ACTIONS(5762), + [anon_sym_PIPE_EQ] = ACTIONS(5762), + [anon_sym_and_eq] = ACTIONS(5760), + [anon_sym_or_eq] = ACTIONS(5760), + [anon_sym_xor_eq] = ACTIONS(5760), + [anon_sym_LT_EQ_GT] = ACTIONS(5762), + [anon_sym_or] = ACTIONS(5760), + [anon_sym_and] = ACTIONS(5760), + [anon_sym_bitor] = ACTIONS(5760), + [anon_sym_xor] = ACTIONS(5760), + [anon_sym_bitand] = ACTIONS(5760), + [anon_sym_not_eq] = ACTIONS(5760), + [anon_sym_DASH_DASH] = ACTIONS(5762), + [anon_sym_PLUS_PLUS] = ACTIONS(5762), + [anon_sym_DOT] = ACTIONS(5760), + [anon_sym_DOT_STAR] = ACTIONS(5762), + [anon_sym_DASH_GT] = ACTIONS(5762), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5760), + [anon_sym_decltype] = ACTIONS(5760), }, - [2233] = { - [sym_identifier] = ACTIONS(5758), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5760), - [anon_sym_COMMA] = ACTIONS(5760), - [anon_sym_RPAREN] = ACTIONS(5760), - [aux_sym_preproc_if_token2] = ACTIONS(5760), - [aux_sym_preproc_else_token1] = ACTIONS(5760), - [aux_sym_preproc_elif_token1] = ACTIONS(5758), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5760), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5760), - [anon_sym_LPAREN2] = ACTIONS(5760), - [anon_sym_DASH] = ACTIONS(5758), - [anon_sym_PLUS] = ACTIONS(5758), - [anon_sym_STAR] = ACTIONS(5758), - [anon_sym_SLASH] = ACTIONS(5758), - [anon_sym_PERCENT] = ACTIONS(5758), - [anon_sym_PIPE_PIPE] = ACTIONS(5760), - [anon_sym_AMP_AMP] = ACTIONS(5760), - [anon_sym_PIPE] = ACTIONS(5758), - [anon_sym_CARET] = ACTIONS(5758), - [anon_sym_AMP] = ACTIONS(5758), - [anon_sym_EQ_EQ] = ACTIONS(5760), - [anon_sym_BANG_EQ] = ACTIONS(5760), - [anon_sym_GT] = ACTIONS(5758), - [anon_sym_GT_EQ] = ACTIONS(5760), - [anon_sym_LT_EQ] = ACTIONS(5758), - [anon_sym_LT] = ACTIONS(5758), - [anon_sym_LT_LT] = ACTIONS(5758), - [anon_sym_GT_GT] = ACTIONS(5758), - [anon_sym_SEMI] = ACTIONS(5760), - [anon_sym___attribute__] = ACTIONS(5758), - [anon_sym___attribute] = ACTIONS(5758), - [anon_sym_COLON] = ACTIONS(5760), - [anon_sym_LBRACE] = ACTIONS(5760), - [anon_sym_RBRACE] = ACTIONS(5760), - [anon_sym_LBRACK] = ACTIONS(5760), - [anon_sym_RBRACK] = ACTIONS(5760), - [anon_sym_EQ] = ACTIONS(5758), - [anon_sym_QMARK] = ACTIONS(5760), - [anon_sym_STAR_EQ] = ACTIONS(5760), - [anon_sym_SLASH_EQ] = ACTIONS(5760), - [anon_sym_PERCENT_EQ] = ACTIONS(5760), - [anon_sym_PLUS_EQ] = ACTIONS(5760), - [anon_sym_DASH_EQ] = ACTIONS(5760), - [anon_sym_LT_LT_EQ] = ACTIONS(5760), - [anon_sym_GT_GT_EQ] = ACTIONS(5760), - [anon_sym_AMP_EQ] = ACTIONS(5760), - [anon_sym_CARET_EQ] = ACTIONS(5760), - [anon_sym_PIPE_EQ] = ACTIONS(5760), - [anon_sym_and_eq] = ACTIONS(5758), - [anon_sym_or_eq] = ACTIONS(5758), - [anon_sym_xor_eq] = ACTIONS(5758), - [anon_sym_LT_EQ_GT] = ACTIONS(5760), - [anon_sym_or] = ACTIONS(5758), - [anon_sym_and] = ACTIONS(5758), - [anon_sym_bitor] = ACTIONS(5758), - [anon_sym_xor] = ACTIONS(5758), - [anon_sym_bitand] = ACTIONS(5758), - [anon_sym_not_eq] = ACTIONS(5758), - [anon_sym_DASH_DASH] = ACTIONS(5760), - [anon_sym_PLUS_PLUS] = ACTIONS(5760), - [anon_sym_DOT] = ACTIONS(5758), - [anon_sym_DOT_STAR] = ACTIONS(5760), - [anon_sym_DASH_GT] = ACTIONS(5760), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5758), - [anon_sym_decltype] = ACTIONS(5758), + [2313] = { + [sym_identifier] = ACTIONS(2569), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2559), + [anon_sym_COMMA] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2559), + [anon_sym_DASH] = ACTIONS(2569), + [anon_sym_PLUS] = ACTIONS(2569), + [anon_sym_STAR] = ACTIONS(2559), + [anon_sym_SLASH] = ACTIONS(2569), + [anon_sym_PERCENT] = ACTIONS(2559), + [anon_sym_PIPE_PIPE] = ACTIONS(2559), + [anon_sym_AMP_AMP] = ACTIONS(2559), + [anon_sym_PIPE] = ACTIONS(2569), + [anon_sym_CARET] = ACTIONS(2559), + [anon_sym_AMP] = ACTIONS(2569), + [anon_sym_EQ_EQ] = ACTIONS(2559), + [anon_sym_BANG_EQ] = ACTIONS(2559), + [anon_sym_GT] = ACTIONS(2569), + [anon_sym_GT_EQ] = ACTIONS(2569), + [anon_sym_LT_EQ] = ACTIONS(2569), + [anon_sym_LT] = ACTIONS(2569), + [anon_sym_LT_LT] = ACTIONS(2559), + [anon_sym_GT_GT] = ACTIONS(2569), + [anon_sym___extension__] = ACTIONS(2569), + [anon_sym___attribute__] = ACTIONS(2569), + [anon_sym___attribute] = ACTIONS(2569), + [anon_sym_LBRACE] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2569), + [anon_sym_unsigned] = ACTIONS(2569), + [anon_sym_long] = ACTIONS(2569), + [anon_sym_short] = ACTIONS(2569), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2569), + [anon_sym_constexpr] = ACTIONS(2569), + [anon_sym_volatile] = ACTIONS(2569), + [anon_sym_restrict] = ACTIONS(2569), + [anon_sym___restrict__] = ACTIONS(2569), + [anon_sym__Atomic] = ACTIONS(2569), + [anon_sym__Noreturn] = ACTIONS(2569), + [anon_sym_noreturn] = ACTIONS(2569), + [anon_sym__Nonnull] = ACTIONS(2569), + [anon_sym_mutable] = ACTIONS(2569), + [anon_sym_constinit] = ACTIONS(2569), + [anon_sym_consteval] = ACTIONS(2569), + [anon_sym_alignas] = ACTIONS(2569), + [anon_sym__Alignas] = ACTIONS(2569), + [sym_primitive_type] = ACTIONS(2569), + [anon_sym_QMARK] = ACTIONS(2559), + [anon_sym_LT_EQ_GT] = ACTIONS(2559), + [anon_sym_or] = ACTIONS(2569), + [anon_sym_and] = ACTIONS(2569), + [anon_sym_bitor] = ACTIONS(2569), + [anon_sym_xor] = ACTIONS(2569), + [anon_sym_bitand] = ACTIONS(2569), + [anon_sym_not_eq] = ACTIONS(2569), + [anon_sym_DASH_DASH] = ACTIONS(2559), + [anon_sym_PLUS_PLUS] = ACTIONS(2559), + [anon_sym_DOT] = ACTIONS(2569), + [anon_sym_DOT_STAR] = ACTIONS(2559), + [anon_sym_DASH_GT] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2569), + [anon_sym_decltype] = ACTIONS(2569), + [anon_sym_final] = ACTIONS(2569), + [anon_sym_override] = ACTIONS(2569), + [anon_sym_GT2] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2569), }, - [2234] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2293), - [sym_identifier] = ACTIONS(5890), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5888), - [anon_sym_COMMA] = ACTIONS(5888), - [aux_sym_preproc_if_token2] = ACTIONS(5888), - [aux_sym_preproc_else_token1] = ACTIONS(5888), - [aux_sym_preproc_elif_token1] = ACTIONS(5890), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5888), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5888), - [anon_sym_LPAREN2] = ACTIONS(5888), - [anon_sym_DASH] = ACTIONS(5890), - [anon_sym_PLUS] = ACTIONS(5890), - [anon_sym_STAR] = ACTIONS(5890), - [anon_sym_SLASH] = ACTIONS(5890), - [anon_sym_PERCENT] = ACTIONS(5890), - [anon_sym_PIPE_PIPE] = ACTIONS(5888), - [anon_sym_AMP_AMP] = ACTIONS(5888), - [anon_sym_PIPE] = ACTIONS(5890), - [anon_sym_CARET] = ACTIONS(5890), - [anon_sym_AMP] = ACTIONS(5890), - [anon_sym_EQ_EQ] = ACTIONS(5888), - [anon_sym_BANG_EQ] = ACTIONS(5888), - [anon_sym_GT] = ACTIONS(5890), - [anon_sym_GT_EQ] = ACTIONS(5888), - [anon_sym_LT_EQ] = ACTIONS(5890), - [anon_sym_LT] = ACTIONS(5890), - [anon_sym_LT_LT] = ACTIONS(5890), - [anon_sym_GT_GT] = ACTIONS(5890), - [anon_sym___attribute__] = ACTIONS(5890), - [anon_sym___attribute] = ACTIONS(5890), - [anon_sym_LBRACE] = ACTIONS(5888), - [anon_sym_signed] = ACTIONS(6176), - [anon_sym_unsigned] = ACTIONS(6176), - [anon_sym_long] = ACTIONS(6176), - [anon_sym_short] = ACTIONS(6176), - [anon_sym_LBRACK] = ACTIONS(5888), - [anon_sym_EQ] = ACTIONS(5890), - [anon_sym_QMARK] = ACTIONS(5888), - [anon_sym_STAR_EQ] = ACTIONS(5888), - [anon_sym_SLASH_EQ] = ACTIONS(5888), - [anon_sym_PERCENT_EQ] = ACTIONS(5888), - [anon_sym_PLUS_EQ] = ACTIONS(5888), - [anon_sym_DASH_EQ] = ACTIONS(5888), - [anon_sym_LT_LT_EQ] = ACTIONS(5888), - [anon_sym_GT_GT_EQ] = ACTIONS(5888), - [anon_sym_AMP_EQ] = ACTIONS(5888), - [anon_sym_CARET_EQ] = ACTIONS(5888), - [anon_sym_PIPE_EQ] = ACTIONS(5888), - [anon_sym_and_eq] = ACTIONS(5890), - [anon_sym_or_eq] = ACTIONS(5890), - [anon_sym_xor_eq] = ACTIONS(5890), - [anon_sym_LT_EQ_GT] = ACTIONS(5888), - [anon_sym_or] = ACTIONS(5890), - [anon_sym_and] = ACTIONS(5890), - [anon_sym_bitor] = ACTIONS(5890), - [anon_sym_xor] = ACTIONS(5890), - [anon_sym_bitand] = ACTIONS(5890), - [anon_sym_not_eq] = ACTIONS(5890), - [anon_sym_DASH_DASH] = ACTIONS(5888), - [anon_sym_PLUS_PLUS] = ACTIONS(5888), - [anon_sym_DOT] = ACTIONS(5890), - [anon_sym_DOT_STAR] = ACTIONS(5888), - [anon_sym_DASH_GT] = ACTIONS(5888), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5890), - [anon_sym_decltype] = ACTIONS(5890), + [2314] = { + [sym_identifier] = ACTIONS(5720), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5722), + [anon_sym_COMMA] = ACTIONS(5722), + [anon_sym_RPAREN] = ACTIONS(5722), + [aux_sym_preproc_if_token2] = ACTIONS(5722), + [aux_sym_preproc_else_token1] = ACTIONS(5722), + [aux_sym_preproc_elif_token1] = ACTIONS(5720), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5722), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5722), + [anon_sym_LPAREN2] = ACTIONS(5722), + [anon_sym_DASH] = ACTIONS(5720), + [anon_sym_PLUS] = ACTIONS(5720), + [anon_sym_STAR] = ACTIONS(5720), + [anon_sym_SLASH] = ACTIONS(5720), + [anon_sym_PERCENT] = ACTIONS(5720), + [anon_sym_PIPE_PIPE] = ACTIONS(5722), + [anon_sym_AMP_AMP] = ACTIONS(5722), + [anon_sym_PIPE] = ACTIONS(5720), + [anon_sym_CARET] = ACTIONS(5720), + [anon_sym_AMP] = ACTIONS(5720), + [anon_sym_EQ_EQ] = ACTIONS(5722), + [anon_sym_BANG_EQ] = ACTIONS(5722), + [anon_sym_GT] = ACTIONS(5720), + [anon_sym_GT_EQ] = ACTIONS(5722), + [anon_sym_LT_EQ] = ACTIONS(5720), + [anon_sym_LT] = ACTIONS(5720), + [anon_sym_LT_LT] = ACTIONS(5720), + [anon_sym_GT_GT] = ACTIONS(5720), + [anon_sym_SEMI] = ACTIONS(5722), + [anon_sym___attribute__] = ACTIONS(5720), + [anon_sym___attribute] = ACTIONS(5720), + [anon_sym_COLON] = ACTIONS(5722), + [anon_sym_LBRACE] = ACTIONS(5722), + [anon_sym_RBRACE] = ACTIONS(5722), + [anon_sym_LBRACK] = ACTIONS(5722), + [anon_sym_RBRACK] = ACTIONS(5722), + [anon_sym_EQ] = ACTIONS(5720), + [anon_sym_QMARK] = ACTIONS(5722), + [anon_sym_STAR_EQ] = ACTIONS(5722), + [anon_sym_SLASH_EQ] = ACTIONS(5722), + [anon_sym_PERCENT_EQ] = ACTIONS(5722), + [anon_sym_PLUS_EQ] = ACTIONS(5722), + [anon_sym_DASH_EQ] = ACTIONS(5722), + [anon_sym_LT_LT_EQ] = ACTIONS(5722), + [anon_sym_GT_GT_EQ] = ACTIONS(5722), + [anon_sym_AMP_EQ] = ACTIONS(5722), + [anon_sym_CARET_EQ] = ACTIONS(5722), + [anon_sym_PIPE_EQ] = ACTIONS(5722), + [anon_sym_and_eq] = ACTIONS(5720), + [anon_sym_or_eq] = ACTIONS(5720), + [anon_sym_xor_eq] = ACTIONS(5720), + [anon_sym_LT_EQ_GT] = ACTIONS(5722), + [anon_sym_or] = ACTIONS(5720), + [anon_sym_and] = ACTIONS(5720), + [anon_sym_bitor] = ACTIONS(5720), + [anon_sym_xor] = ACTIONS(5720), + [anon_sym_bitand] = ACTIONS(5720), + [anon_sym_not_eq] = ACTIONS(5720), + [anon_sym_DASH_DASH] = ACTIONS(5722), + [anon_sym_PLUS_PLUS] = ACTIONS(5722), + [anon_sym_DOT] = ACTIONS(5720), + [anon_sym_DOT_STAR] = ACTIONS(5722), + [anon_sym_DASH_GT] = ACTIONS(5722), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5720), + [anon_sym_decltype] = ACTIONS(5720), }, - [2235] = { - [sym_identifier] = ACTIONS(5802), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5804), - [anon_sym_COMMA] = ACTIONS(5804), - [anon_sym_RPAREN] = ACTIONS(5804), - [aux_sym_preproc_if_token2] = ACTIONS(5804), - [aux_sym_preproc_else_token1] = ACTIONS(5804), - [aux_sym_preproc_elif_token1] = ACTIONS(5802), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5804), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5804), - [anon_sym_LPAREN2] = ACTIONS(5804), - [anon_sym_DASH] = ACTIONS(5802), - [anon_sym_PLUS] = ACTIONS(5802), - [anon_sym_STAR] = ACTIONS(5802), - [anon_sym_SLASH] = ACTIONS(5802), - [anon_sym_PERCENT] = ACTIONS(5802), - [anon_sym_PIPE_PIPE] = ACTIONS(5804), - [anon_sym_AMP_AMP] = ACTIONS(5804), - [anon_sym_PIPE] = ACTIONS(5802), - [anon_sym_CARET] = ACTIONS(5802), - [anon_sym_AMP] = ACTIONS(5802), - [anon_sym_EQ_EQ] = ACTIONS(5804), - [anon_sym_BANG_EQ] = ACTIONS(5804), - [anon_sym_GT] = ACTIONS(5802), - [anon_sym_GT_EQ] = ACTIONS(5804), - [anon_sym_LT_EQ] = ACTIONS(5802), - [anon_sym_LT] = ACTIONS(5802), - [anon_sym_LT_LT] = ACTIONS(5802), - [anon_sym_GT_GT] = ACTIONS(5802), - [anon_sym_SEMI] = ACTIONS(5804), - [anon_sym___attribute__] = ACTIONS(5802), - [anon_sym___attribute] = ACTIONS(5802), - [anon_sym_COLON] = ACTIONS(5804), - [anon_sym_LBRACE] = ACTIONS(5804), - [anon_sym_RBRACE] = ACTIONS(5804), - [anon_sym_LBRACK] = ACTIONS(5804), - [anon_sym_RBRACK] = ACTIONS(5804), - [anon_sym_EQ] = ACTIONS(5802), - [anon_sym_QMARK] = ACTIONS(5804), - [anon_sym_STAR_EQ] = ACTIONS(5804), - [anon_sym_SLASH_EQ] = ACTIONS(5804), - [anon_sym_PERCENT_EQ] = ACTIONS(5804), - [anon_sym_PLUS_EQ] = ACTIONS(5804), - [anon_sym_DASH_EQ] = ACTIONS(5804), - [anon_sym_LT_LT_EQ] = ACTIONS(5804), - [anon_sym_GT_GT_EQ] = ACTIONS(5804), - [anon_sym_AMP_EQ] = ACTIONS(5804), - [anon_sym_CARET_EQ] = ACTIONS(5804), - [anon_sym_PIPE_EQ] = ACTIONS(5804), - [anon_sym_and_eq] = ACTIONS(5802), - [anon_sym_or_eq] = ACTIONS(5802), - [anon_sym_xor_eq] = ACTIONS(5802), - [anon_sym_LT_EQ_GT] = ACTIONS(5804), - [anon_sym_or] = ACTIONS(5802), - [anon_sym_and] = ACTIONS(5802), - [anon_sym_bitor] = ACTIONS(5802), - [anon_sym_xor] = ACTIONS(5802), - [anon_sym_bitand] = ACTIONS(5802), - [anon_sym_not_eq] = ACTIONS(5802), - [anon_sym_DASH_DASH] = ACTIONS(5804), - [anon_sym_PLUS_PLUS] = ACTIONS(5804), - [anon_sym_DOT] = ACTIONS(5802), - [anon_sym_DOT_STAR] = ACTIONS(5804), - [anon_sym_DASH_GT] = ACTIONS(5804), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5802), - [anon_sym_decltype] = ACTIONS(5802), + [2315] = { + [sym_argument_list] = STATE(2508), + [sym_initializer_list] = STATE(2508), + [sym_identifier] = ACTIONS(6283), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6285), + [anon_sym_COMMA] = ACTIONS(6285), + [anon_sym_RPAREN] = ACTIONS(6285), + [aux_sym_preproc_if_token2] = ACTIONS(6285), + [aux_sym_preproc_else_token1] = ACTIONS(6285), + [aux_sym_preproc_elif_token1] = ACTIONS(6283), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6285), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6285), + [anon_sym_LPAREN2] = ACTIONS(5845), + [anon_sym_DASH] = ACTIONS(6283), + [anon_sym_PLUS] = ACTIONS(6283), + [anon_sym_STAR] = ACTIONS(6283), + [anon_sym_SLASH] = ACTIONS(6283), + [anon_sym_PERCENT] = ACTIONS(6283), + [anon_sym_PIPE_PIPE] = ACTIONS(6285), + [anon_sym_AMP_AMP] = ACTIONS(6285), + [anon_sym_PIPE] = ACTIONS(6283), + [anon_sym_CARET] = ACTIONS(6283), + [anon_sym_AMP] = ACTIONS(6283), + [anon_sym_EQ_EQ] = ACTIONS(6285), + [anon_sym_BANG_EQ] = ACTIONS(6285), + [anon_sym_GT] = ACTIONS(6283), + [anon_sym_GT_EQ] = ACTIONS(6285), + [anon_sym_LT_EQ] = ACTIONS(6283), + [anon_sym_LT] = ACTIONS(6283), + [anon_sym_LT_LT] = ACTIONS(6283), + [anon_sym_GT_GT] = ACTIONS(6283), + [anon_sym_SEMI] = ACTIONS(6285), + [anon_sym___attribute__] = ACTIONS(6283), + [anon_sym___attribute] = ACTIONS(6283), + [anon_sym_COLON] = ACTIONS(6285), + [anon_sym_LBRACE] = ACTIONS(1954), + [anon_sym_RBRACE] = ACTIONS(6285), + [anon_sym_LBRACK] = ACTIONS(6285), + [anon_sym_RBRACK] = ACTIONS(6285), + [anon_sym_EQ] = ACTIONS(6283), + [anon_sym_QMARK] = ACTIONS(6285), + [anon_sym_STAR_EQ] = ACTIONS(6285), + [anon_sym_SLASH_EQ] = ACTIONS(6285), + [anon_sym_PERCENT_EQ] = ACTIONS(6285), + [anon_sym_PLUS_EQ] = ACTIONS(6285), + [anon_sym_DASH_EQ] = ACTIONS(6285), + [anon_sym_LT_LT_EQ] = ACTIONS(6285), + [anon_sym_GT_GT_EQ] = ACTIONS(6285), + [anon_sym_AMP_EQ] = ACTIONS(6285), + [anon_sym_CARET_EQ] = ACTIONS(6285), + [anon_sym_PIPE_EQ] = ACTIONS(6285), + [anon_sym_and_eq] = ACTIONS(6283), + [anon_sym_or_eq] = ACTIONS(6283), + [anon_sym_xor_eq] = ACTIONS(6283), + [anon_sym_LT_EQ_GT] = ACTIONS(6285), + [anon_sym_or] = ACTIONS(6283), + [anon_sym_and] = ACTIONS(6283), + [anon_sym_bitor] = ACTIONS(6283), + [anon_sym_xor] = ACTIONS(6283), + [anon_sym_bitand] = ACTIONS(6283), + [anon_sym_not_eq] = ACTIONS(6283), + [anon_sym_DASH_DASH] = ACTIONS(6285), + [anon_sym_PLUS_PLUS] = ACTIONS(6285), + [anon_sym_DOT] = ACTIONS(6283), + [anon_sym_DOT_STAR] = ACTIONS(6285), + [anon_sym_DASH_GT] = ACTIONS(6285), + [sym_comment] = ACTIONS(3), }, - [2236] = { - [sym_string_literal] = STATE(2285), - [sym_raw_string_literal] = STATE(2285), - [aux_sym_concatenated_string_repeat1] = STATE(2285), - [sym_identifier] = ACTIONS(6212), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5390), - [anon_sym_COMMA] = ACTIONS(5390), - [anon_sym_LPAREN2] = ACTIONS(5390), - [anon_sym_DASH] = ACTIONS(5392), - [anon_sym_PLUS] = ACTIONS(5392), - [anon_sym_STAR] = ACTIONS(5392), - [anon_sym_SLASH] = ACTIONS(5392), - [anon_sym_PERCENT] = ACTIONS(5392), - [anon_sym_PIPE_PIPE] = ACTIONS(5390), - [anon_sym_AMP_AMP] = ACTIONS(5390), - [anon_sym_PIPE] = ACTIONS(5392), - [anon_sym_CARET] = ACTIONS(5392), - [anon_sym_AMP] = ACTIONS(5392), - [anon_sym_EQ_EQ] = ACTIONS(5390), - [anon_sym_BANG_EQ] = ACTIONS(5390), - [anon_sym_GT] = ACTIONS(5392), - [anon_sym_GT_EQ] = ACTIONS(5392), - [anon_sym_LT_EQ] = ACTIONS(5392), - [anon_sym_LT] = ACTIONS(5392), - [anon_sym_LT_LT] = ACTIONS(5392), - [anon_sym_GT_GT] = ACTIONS(5392), - [anon_sym_LBRACK] = ACTIONS(5390), - [anon_sym_EQ] = ACTIONS(5392), - [anon_sym_QMARK] = ACTIONS(5390), - [anon_sym_STAR_EQ] = ACTIONS(5390), - [anon_sym_SLASH_EQ] = ACTIONS(5390), - [anon_sym_PERCENT_EQ] = ACTIONS(5390), - [anon_sym_PLUS_EQ] = ACTIONS(5390), - [anon_sym_DASH_EQ] = ACTIONS(5390), - [anon_sym_LT_LT_EQ] = ACTIONS(5390), - [anon_sym_GT_GT_EQ] = ACTIONS(5392), - [anon_sym_AMP_EQ] = ACTIONS(5390), - [anon_sym_CARET_EQ] = ACTIONS(5390), - [anon_sym_PIPE_EQ] = ACTIONS(5390), - [anon_sym_and_eq] = ACTIONS(5392), - [anon_sym_or_eq] = ACTIONS(5392), - [anon_sym_xor_eq] = ACTIONS(5392), - [anon_sym_LT_EQ_GT] = ACTIONS(5390), - [anon_sym_or] = ACTIONS(5392), - [anon_sym_and] = ACTIONS(5392), - [anon_sym_bitor] = ACTIONS(5392), - [anon_sym_xor] = ACTIONS(5392), - [anon_sym_bitand] = ACTIONS(5392), - [anon_sym_not_eq] = ACTIONS(5392), - [anon_sym_DASH_DASH] = ACTIONS(5390), - [anon_sym_PLUS_PLUS] = ACTIONS(5390), - [anon_sym_DOT] = ACTIONS(5392), - [anon_sym_DOT_STAR] = ACTIONS(5390), - [anon_sym_DASH_GT] = ACTIONS(5390), - [anon_sym_L_DQUOTE] = ACTIONS(6214), - [anon_sym_u_DQUOTE] = ACTIONS(6214), - [anon_sym_U_DQUOTE] = ACTIONS(6214), - [anon_sym_u8_DQUOTE] = ACTIONS(6214), - [anon_sym_DQUOTE] = ACTIONS(6214), - [sym_comment] = ACTIONS(3), - [anon_sym_GT2] = ACTIONS(5390), - [anon_sym_R_DQUOTE] = ACTIONS(6216), - [anon_sym_LR_DQUOTE] = ACTIONS(6216), - [anon_sym_uR_DQUOTE] = ACTIONS(6216), - [anon_sym_UR_DQUOTE] = ACTIONS(6216), - [anon_sym_u8R_DQUOTE] = ACTIONS(6216), - [sym_literal_suffix] = ACTIONS(5392), + [2316] = { + [sym_identifier] = ACTIONS(5541), + [anon_sym_LPAREN2] = ACTIONS(5543), + [anon_sym_TILDE] = ACTIONS(5543), + [anon_sym_STAR] = ACTIONS(5543), + [anon_sym_PIPE_PIPE] = ACTIONS(5543), + [anon_sym_AMP_AMP] = ACTIONS(5543), + [anon_sym_AMP] = ACTIONS(5541), + [anon_sym___extension__] = ACTIONS(5541), + [anon_sym_virtual] = ACTIONS(5541), + [anon_sym_extern] = ACTIONS(5541), + [anon_sym___attribute__] = ACTIONS(5541), + [anon_sym___attribute] = ACTIONS(5541), + [anon_sym_using] = ACTIONS(5541), + [anon_sym_COLON_COLON] = ACTIONS(5519), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5543), + [anon_sym___declspec] = ACTIONS(5541), + [anon_sym___based] = ACTIONS(5541), + [anon_sym___cdecl] = ACTIONS(5541), + [anon_sym___clrcall] = ACTIONS(5541), + [anon_sym___stdcall] = ACTIONS(5541), + [anon_sym___fastcall] = ACTIONS(5541), + [anon_sym___thiscall] = ACTIONS(5541), + [anon_sym___vectorcall] = ACTIONS(5541), + [anon_sym_signed] = ACTIONS(5541), + [anon_sym_unsigned] = ACTIONS(5541), + [anon_sym_long] = ACTIONS(5541), + [anon_sym_short] = ACTIONS(5541), + [anon_sym_LBRACK] = ACTIONS(5541), + [anon_sym_static] = ACTIONS(5541), + [anon_sym_register] = ACTIONS(5541), + [anon_sym_inline] = ACTIONS(5541), + [anon_sym___inline] = ACTIONS(5541), + [anon_sym___inline__] = ACTIONS(5541), + [anon_sym___forceinline] = ACTIONS(5541), + [anon_sym_thread_local] = ACTIONS(5541), + [anon_sym___thread] = ACTIONS(5541), + [anon_sym_const] = ACTIONS(5541), + [anon_sym_constexpr] = ACTIONS(5541), + [anon_sym_volatile] = ACTIONS(5541), + [anon_sym_restrict] = ACTIONS(5541), + [anon_sym___restrict__] = ACTIONS(5541), + [anon_sym__Atomic] = ACTIONS(5541), + [anon_sym__Noreturn] = ACTIONS(5541), + [anon_sym_noreturn] = ACTIONS(5541), + [anon_sym__Nonnull] = ACTIONS(5541), + [anon_sym_mutable] = ACTIONS(5541), + [anon_sym_constinit] = ACTIONS(5541), + [anon_sym_consteval] = ACTIONS(5541), + [anon_sym_alignas] = ACTIONS(5541), + [anon_sym__Alignas] = ACTIONS(5541), + [sym_primitive_type] = ACTIONS(5541), + [anon_sym_enum] = ACTIONS(5541), + [anon_sym_class] = ACTIONS(5541), + [anon_sym_struct] = ACTIONS(5541), + [anon_sym_union] = ACTIONS(5541), + [anon_sym_or] = ACTIONS(5541), + [anon_sym_and] = ACTIONS(5541), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5541), + [anon_sym_decltype] = ACTIONS(5541), + [anon_sym_explicit] = ACTIONS(5541), + [anon_sym_typename] = ACTIONS(5541), + [anon_sym_template] = ACTIONS(5541), + [anon_sym_operator] = ACTIONS(5541), + [anon_sym_friend] = ACTIONS(5541), + [anon_sym_concept] = ACTIONS(5541), }, - [2237] = { - [sym_identifier] = ACTIONS(6218), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6220), - [anon_sym_COMMA] = ACTIONS(6220), - [anon_sym_RPAREN] = ACTIONS(6220), - [aux_sym_preproc_if_token2] = ACTIONS(6220), - [aux_sym_preproc_else_token1] = ACTIONS(6220), - [aux_sym_preproc_elif_token1] = ACTIONS(6218), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6220), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6220), - [anon_sym_LPAREN2] = ACTIONS(6220), - [anon_sym_DASH] = ACTIONS(6218), - [anon_sym_PLUS] = ACTIONS(6218), - [anon_sym_STAR] = ACTIONS(6218), - [anon_sym_SLASH] = ACTIONS(6218), - [anon_sym_PERCENT] = ACTIONS(6218), - [anon_sym_PIPE_PIPE] = ACTIONS(6220), - [anon_sym_AMP_AMP] = ACTIONS(6220), - [anon_sym_PIPE] = ACTIONS(6218), - [anon_sym_CARET] = ACTIONS(6218), - [anon_sym_AMP] = ACTIONS(6218), - [anon_sym_EQ_EQ] = ACTIONS(6220), - [anon_sym_BANG_EQ] = ACTIONS(6220), - [anon_sym_GT] = ACTIONS(6218), - [anon_sym_GT_EQ] = ACTIONS(6220), - [anon_sym_LT_EQ] = ACTIONS(6218), - [anon_sym_LT] = ACTIONS(6218), - [anon_sym_LT_LT] = ACTIONS(6218), - [anon_sym_GT_GT] = ACTIONS(6218), - [anon_sym_SEMI] = ACTIONS(6220), - [anon_sym___attribute__] = ACTIONS(6218), - [anon_sym___attribute] = ACTIONS(6218), - [anon_sym_COLON] = ACTIONS(6220), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6220), - [anon_sym_LBRACE] = ACTIONS(6220), - [anon_sym_RBRACE] = ACTIONS(6220), - [anon_sym_LBRACK] = ACTIONS(6218), - [anon_sym_RBRACK] = ACTIONS(6220), - [anon_sym_EQ] = ACTIONS(6218), - [anon_sym_QMARK] = ACTIONS(6220), - [anon_sym_STAR_EQ] = ACTIONS(6220), - [anon_sym_SLASH_EQ] = ACTIONS(6220), - [anon_sym_PERCENT_EQ] = ACTIONS(6220), - [anon_sym_PLUS_EQ] = ACTIONS(6220), - [anon_sym_DASH_EQ] = ACTIONS(6220), - [anon_sym_LT_LT_EQ] = ACTIONS(6220), - [anon_sym_GT_GT_EQ] = ACTIONS(6220), - [anon_sym_AMP_EQ] = ACTIONS(6220), - [anon_sym_CARET_EQ] = ACTIONS(6220), - [anon_sym_PIPE_EQ] = ACTIONS(6220), - [anon_sym_and_eq] = ACTIONS(6218), - [anon_sym_or_eq] = ACTIONS(6218), - [anon_sym_xor_eq] = ACTIONS(6218), - [anon_sym_LT_EQ_GT] = ACTIONS(6220), - [anon_sym_or] = ACTIONS(6218), - [anon_sym_and] = ACTIONS(6218), - [anon_sym_bitor] = ACTIONS(6218), - [anon_sym_xor] = ACTIONS(6218), - [anon_sym_bitand] = ACTIONS(6218), - [anon_sym_not_eq] = ACTIONS(6218), - [anon_sym_DASH_DASH] = ACTIONS(6220), - [anon_sym_PLUS_PLUS] = ACTIONS(6220), - [anon_sym_DOT] = ACTIONS(6218), - [anon_sym_DOT_STAR] = ACTIONS(6220), - [anon_sym_DASH_GT] = ACTIONS(6220), - [sym_comment] = ACTIONS(3), - [anon_sym_try] = ACTIONS(6218), + [2317] = { + [sym_string_literal] = STATE(2049), + [sym_raw_string_literal] = STATE(2049), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5917), + [anon_sym_COMMA] = ACTIONS(5917), + [anon_sym_LPAREN2] = ACTIONS(5917), + [anon_sym_DASH] = ACTIONS(5915), + [anon_sym_PLUS] = ACTIONS(5915), + [anon_sym_STAR] = ACTIONS(5915), + [anon_sym_SLASH] = ACTIONS(5915), + [anon_sym_PERCENT] = ACTIONS(5915), + [anon_sym_PIPE_PIPE] = ACTIONS(5917), + [anon_sym_AMP_AMP] = ACTIONS(5917), + [anon_sym_PIPE] = ACTIONS(5915), + [anon_sym_CARET] = ACTIONS(5915), + [anon_sym_AMP] = ACTIONS(5915), + [anon_sym_EQ_EQ] = ACTIONS(5917), + [anon_sym_BANG_EQ] = ACTIONS(5917), + [anon_sym_GT] = ACTIONS(5915), + [anon_sym_GT_EQ] = ACTIONS(5917), + [anon_sym_LT_EQ] = ACTIONS(5915), + [anon_sym_LT] = ACTIONS(5915), + [anon_sym_LT_LT] = ACTIONS(5915), + [anon_sym_GT_GT] = ACTIONS(5915), + [anon_sym_SEMI] = ACTIONS(5917), + [anon_sym___attribute__] = ACTIONS(5915), + [anon_sym___attribute] = ACTIONS(5915), + [anon_sym_LBRACK] = ACTIONS(5917), + [anon_sym_EQ] = ACTIONS(5915), + [anon_sym_QMARK] = ACTIONS(5917), + [anon_sym_STAR_EQ] = ACTIONS(5917), + [anon_sym_SLASH_EQ] = ACTIONS(5917), + [anon_sym_PERCENT_EQ] = ACTIONS(5917), + [anon_sym_PLUS_EQ] = ACTIONS(5917), + [anon_sym_DASH_EQ] = ACTIONS(5917), + [anon_sym_LT_LT_EQ] = ACTIONS(5917), + [anon_sym_GT_GT_EQ] = ACTIONS(5917), + [anon_sym_AMP_EQ] = ACTIONS(5917), + [anon_sym_CARET_EQ] = ACTIONS(5917), + [anon_sym_PIPE_EQ] = ACTIONS(5917), + [anon_sym_and_eq] = ACTIONS(5915), + [anon_sym_or_eq] = ACTIONS(5915), + [anon_sym_xor_eq] = ACTIONS(5915), + [anon_sym_LT_EQ_GT] = ACTIONS(5917), + [anon_sym_or] = ACTIONS(5915), + [anon_sym_and] = ACTIONS(5915), + [anon_sym_bitor] = ACTIONS(5915), + [anon_sym_xor] = ACTIONS(5915), + [anon_sym_bitand] = ACTIONS(5915), + [anon_sym_not_eq] = ACTIONS(5915), + [anon_sym_DASH_DASH] = ACTIONS(5917), + [anon_sym_PLUS_PLUS] = ACTIONS(5917), + [anon_sym_DOT] = ACTIONS(5915), + [anon_sym_DOT_STAR] = ACTIONS(5917), + [anon_sym_DASH_GT] = ACTIONS(5917), + [anon_sym_L_DQUOTE] = ACTIONS(6027), + [anon_sym_u_DQUOTE] = ACTIONS(6027), + [anon_sym_U_DQUOTE] = ACTIONS(6027), + [anon_sym_u8_DQUOTE] = ACTIONS(6027), + [anon_sym_DQUOTE] = ACTIONS(6027), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(6029), + [anon_sym_LR_DQUOTE] = ACTIONS(6029), + [anon_sym_uR_DQUOTE] = ACTIONS(6029), + [anon_sym_UR_DQUOTE] = ACTIONS(6029), + [anon_sym_u8R_DQUOTE] = ACTIONS(6029), + [sym_literal_suffix] = ACTIONS(5915), }, - [2238] = { - [sym_identifier] = ACTIONS(6222), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6224), - [anon_sym_COMMA] = ACTIONS(6224), - [anon_sym_RPAREN] = ACTIONS(6224), - [aux_sym_preproc_if_token2] = ACTIONS(6224), - [aux_sym_preproc_else_token1] = ACTIONS(6224), - [aux_sym_preproc_elif_token1] = ACTIONS(6222), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6224), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6224), - [anon_sym_LPAREN2] = ACTIONS(6224), - [anon_sym_DASH] = ACTIONS(6222), - [anon_sym_PLUS] = ACTIONS(6222), - [anon_sym_STAR] = ACTIONS(6222), - [anon_sym_SLASH] = ACTIONS(6222), - [anon_sym_PERCENT] = ACTIONS(6222), - [anon_sym_PIPE_PIPE] = ACTIONS(6224), - [anon_sym_AMP_AMP] = ACTIONS(6224), - [anon_sym_PIPE] = ACTIONS(6222), - [anon_sym_CARET] = ACTIONS(6222), - [anon_sym_AMP] = ACTIONS(6222), - [anon_sym_EQ_EQ] = ACTIONS(6224), - [anon_sym_BANG_EQ] = ACTIONS(6224), - [anon_sym_GT] = ACTIONS(6222), - [anon_sym_GT_EQ] = ACTIONS(6224), - [anon_sym_LT_EQ] = ACTIONS(6222), - [anon_sym_LT] = ACTIONS(6222), - [anon_sym_LT_LT] = ACTIONS(6222), - [anon_sym_GT_GT] = ACTIONS(6222), - [anon_sym_SEMI] = ACTIONS(6224), - [anon_sym___attribute__] = ACTIONS(6222), - [anon_sym___attribute] = ACTIONS(6222), - [anon_sym_COLON] = ACTIONS(6224), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6224), - [anon_sym_LBRACE] = ACTIONS(6224), - [anon_sym_RBRACE] = ACTIONS(6224), - [anon_sym_LBRACK] = ACTIONS(6222), - [anon_sym_RBRACK] = ACTIONS(6224), - [anon_sym_EQ] = ACTIONS(6222), - [anon_sym_QMARK] = ACTIONS(6224), - [anon_sym_STAR_EQ] = ACTIONS(6224), - [anon_sym_SLASH_EQ] = ACTIONS(6224), - [anon_sym_PERCENT_EQ] = ACTIONS(6224), - [anon_sym_PLUS_EQ] = ACTIONS(6224), - [anon_sym_DASH_EQ] = ACTIONS(6224), - [anon_sym_LT_LT_EQ] = ACTIONS(6224), - [anon_sym_GT_GT_EQ] = ACTIONS(6224), - [anon_sym_AMP_EQ] = ACTIONS(6224), - [anon_sym_CARET_EQ] = ACTIONS(6224), - [anon_sym_PIPE_EQ] = ACTIONS(6224), - [anon_sym_and_eq] = ACTIONS(6222), - [anon_sym_or_eq] = ACTIONS(6222), - [anon_sym_xor_eq] = ACTIONS(6222), - [anon_sym_LT_EQ_GT] = ACTIONS(6224), - [anon_sym_or] = ACTIONS(6222), - [anon_sym_and] = ACTIONS(6222), - [anon_sym_bitor] = ACTIONS(6222), - [anon_sym_xor] = ACTIONS(6222), - [anon_sym_bitand] = ACTIONS(6222), - [anon_sym_not_eq] = ACTIONS(6222), - [anon_sym_DASH_DASH] = ACTIONS(6224), - [anon_sym_PLUS_PLUS] = ACTIONS(6224), - [anon_sym_DOT] = ACTIONS(6222), - [anon_sym_DOT_STAR] = ACTIONS(6224), - [anon_sym_DASH_GT] = ACTIONS(6224), - [sym_comment] = ACTIONS(3), - [anon_sym_try] = ACTIONS(6222), + [2318] = { + [sym_string_literal] = STATE(3543), + [sym_template_argument_list] = STATE(4520), + [sym_raw_string_literal] = STATE(3543), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4166), + [anon_sym_COMMA] = ACTIONS(4166), + [anon_sym_LPAREN2] = ACTIONS(4166), + [anon_sym_DASH] = ACTIONS(4174), + [anon_sym_PLUS] = ACTIONS(4174), + [anon_sym_STAR] = ACTIONS(4174), + [anon_sym_SLASH] = ACTIONS(4174), + [anon_sym_PERCENT] = ACTIONS(4174), + [anon_sym_PIPE_PIPE] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4166), + [anon_sym_PIPE] = ACTIONS(4174), + [anon_sym_CARET] = ACTIONS(4174), + [anon_sym_AMP] = ACTIONS(4174), + [anon_sym_EQ_EQ] = ACTIONS(4166), + [anon_sym_BANG_EQ] = ACTIONS(4166), + [anon_sym_GT] = ACTIONS(4174), + [anon_sym_GT_EQ] = ACTIONS(4174), + [anon_sym_LT_EQ] = ACTIONS(4174), + [anon_sym_LT] = ACTIONS(5065), + [anon_sym_LT_LT] = ACTIONS(4174), + [anon_sym_GT_GT] = ACTIONS(4174), + [anon_sym_COLON_COLON] = ACTIONS(4187), + [anon_sym_LBRACE] = ACTIONS(4192), + [anon_sym_LBRACK] = ACTIONS(4166), + [anon_sym_EQ] = ACTIONS(5070), + [anon_sym_QMARK] = ACTIONS(4166), + [anon_sym_STAR_EQ] = ACTIONS(5072), + [anon_sym_SLASH_EQ] = ACTIONS(5072), + [anon_sym_PERCENT_EQ] = ACTIONS(5072), + [anon_sym_PLUS_EQ] = ACTIONS(5072), + [anon_sym_DASH_EQ] = ACTIONS(5072), + [anon_sym_LT_LT_EQ] = ACTIONS(5072), + [anon_sym_GT_GT_EQ] = ACTIONS(5070), + [anon_sym_AMP_EQ] = ACTIONS(5072), + [anon_sym_CARET_EQ] = ACTIONS(5072), + [anon_sym_PIPE_EQ] = ACTIONS(5072), + [anon_sym_and_eq] = ACTIONS(5072), + [anon_sym_or_eq] = ACTIONS(5072), + [anon_sym_xor_eq] = ACTIONS(5072), + [anon_sym_LT_EQ_GT] = ACTIONS(4166), + [anon_sym_or] = ACTIONS(4174), + [anon_sym_and] = ACTIONS(4174), + [anon_sym_bitor] = ACTIONS(4166), + [anon_sym_xor] = ACTIONS(4174), + [anon_sym_bitand] = ACTIONS(4166), + [anon_sym_not_eq] = ACTIONS(4166), + [anon_sym_DASH_DASH] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4174), + [anon_sym_DOT_STAR] = ACTIONS(4166), + [anon_sym_DASH_GT] = ACTIONS(4166), + [anon_sym_L_DQUOTE] = ACTIONS(5074), + [anon_sym_u_DQUOTE] = ACTIONS(5074), + [anon_sym_U_DQUOTE] = ACTIONS(5074), + [anon_sym_u8_DQUOTE] = ACTIONS(5074), + [anon_sym_DQUOTE] = ACTIONS(5074), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(4166), + [anon_sym_R_DQUOTE] = ACTIONS(5076), + [anon_sym_LR_DQUOTE] = ACTIONS(5076), + [anon_sym_uR_DQUOTE] = ACTIONS(5076), + [anon_sym_UR_DQUOTE] = ACTIONS(5076), + [anon_sym_u8R_DQUOTE] = ACTIONS(5076), }, - [2239] = { - [sym_string_literal] = STATE(2624), - [sym_template_argument_list] = STATE(3588), - [sym_raw_string_literal] = STATE(2624), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4146), - [anon_sym_COMMA] = ACTIONS(4146), - [anon_sym_LPAREN2] = ACTIONS(4146), - [anon_sym_DASH] = ACTIONS(4154), - [anon_sym_PLUS] = ACTIONS(4154), - [anon_sym_STAR] = ACTIONS(4154), - [anon_sym_SLASH] = ACTIONS(4154), - [anon_sym_PERCENT] = ACTIONS(4154), - [anon_sym_PIPE_PIPE] = ACTIONS(4146), - [anon_sym_AMP_AMP] = ACTIONS(4146), - [anon_sym_PIPE] = ACTIONS(4154), - [anon_sym_CARET] = ACTIONS(4154), - [anon_sym_AMP] = ACTIONS(4154), - [anon_sym_EQ_EQ] = ACTIONS(4146), - [anon_sym_BANG_EQ] = ACTIONS(4146), - [anon_sym_GT] = ACTIONS(4154), - [anon_sym_GT_EQ] = ACTIONS(4146), - [anon_sym_LT_EQ] = ACTIONS(4154), - [anon_sym_LT] = ACTIONS(5077), - [anon_sym_LT_LT] = ACTIONS(4154), - [anon_sym_GT_GT] = ACTIONS(4154), - [anon_sym_COLON] = ACTIONS(4154), - [anon_sym_COLON_COLON] = ACTIONS(4167), - [anon_sym_LBRACE] = ACTIONS(4172), - [anon_sym_LBRACK] = ACTIONS(4146), - [anon_sym_EQ] = ACTIONS(6226), - [anon_sym_QMARK] = ACTIONS(4146), - [anon_sym_STAR_EQ] = ACTIONS(6228), - [anon_sym_SLASH_EQ] = ACTIONS(6228), - [anon_sym_PERCENT_EQ] = ACTIONS(6228), - [anon_sym_PLUS_EQ] = ACTIONS(6228), - [anon_sym_DASH_EQ] = ACTIONS(6228), - [anon_sym_LT_LT_EQ] = ACTIONS(6228), - [anon_sym_GT_GT_EQ] = ACTIONS(6228), - [anon_sym_AMP_EQ] = ACTIONS(6228), - [anon_sym_CARET_EQ] = ACTIONS(6228), - [anon_sym_PIPE_EQ] = ACTIONS(6228), - [anon_sym_and_eq] = ACTIONS(6228), - [anon_sym_or_eq] = ACTIONS(6228), - [anon_sym_xor_eq] = ACTIONS(6228), - [anon_sym_LT_EQ_GT] = ACTIONS(4146), - [anon_sym_or] = ACTIONS(4154), - [anon_sym_and] = ACTIONS(4154), - [anon_sym_bitor] = ACTIONS(4146), - [anon_sym_xor] = ACTIONS(4154), - [anon_sym_bitand] = ACTIONS(4146), - [anon_sym_not_eq] = ACTIONS(4146), - [anon_sym_DASH_DASH] = ACTIONS(4146), - [anon_sym_PLUS_PLUS] = ACTIONS(4146), - [anon_sym_DOT] = ACTIONS(4154), - [anon_sym_DOT_STAR] = ACTIONS(4146), - [anon_sym_DASH_GT] = ACTIONS(4146), - [anon_sym_L_DQUOTE] = ACTIONS(3623), - [anon_sym_u_DQUOTE] = ACTIONS(3623), - [anon_sym_U_DQUOTE] = ACTIONS(3623), - [anon_sym_u8_DQUOTE] = ACTIONS(3623), - [anon_sym_DQUOTE] = ACTIONS(3623), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(3627), - [anon_sym_LR_DQUOTE] = ACTIONS(3627), - [anon_sym_uR_DQUOTE] = ACTIONS(3627), - [anon_sym_UR_DQUOTE] = ACTIONS(3627), - [anon_sym_u8R_DQUOTE] = ACTIONS(3627), + [2319] = { + [sym_string_literal] = STATE(2319), + [sym_raw_string_literal] = STATE(2319), + [aux_sym_concatenated_string_repeat1] = STATE(2319), + [sym_identifier] = ACTIONS(6287), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5411), + [anon_sym_COMMA] = ACTIONS(5411), + [anon_sym_LPAREN2] = ACTIONS(5411), + [anon_sym_DASH] = ACTIONS(5413), + [anon_sym_PLUS] = ACTIONS(5413), + [anon_sym_STAR] = ACTIONS(5413), + [anon_sym_SLASH] = ACTIONS(5413), + [anon_sym_PERCENT] = ACTIONS(5413), + [anon_sym_PIPE_PIPE] = ACTIONS(5411), + [anon_sym_AMP_AMP] = ACTIONS(5411), + [anon_sym_PIPE] = ACTIONS(5413), + [anon_sym_CARET] = ACTIONS(5413), + [anon_sym_AMP] = ACTIONS(5413), + [anon_sym_EQ_EQ] = ACTIONS(5411), + [anon_sym_BANG_EQ] = ACTIONS(5411), + [anon_sym_GT] = ACTIONS(5413), + [anon_sym_GT_EQ] = ACTIONS(5413), + [anon_sym_LT_EQ] = ACTIONS(5413), + [anon_sym_LT] = ACTIONS(5413), + [anon_sym_LT_LT] = ACTIONS(5413), + [anon_sym_GT_GT] = ACTIONS(5413), + [anon_sym_LBRACK] = ACTIONS(5411), + [anon_sym_EQ] = ACTIONS(5413), + [anon_sym_QMARK] = ACTIONS(5411), + [anon_sym_STAR_EQ] = ACTIONS(5411), + [anon_sym_SLASH_EQ] = ACTIONS(5411), + [anon_sym_PERCENT_EQ] = ACTIONS(5411), + [anon_sym_PLUS_EQ] = ACTIONS(5411), + [anon_sym_DASH_EQ] = ACTIONS(5411), + [anon_sym_LT_LT_EQ] = ACTIONS(5411), + [anon_sym_GT_GT_EQ] = ACTIONS(5413), + [anon_sym_AMP_EQ] = ACTIONS(5411), + [anon_sym_CARET_EQ] = ACTIONS(5411), + [anon_sym_PIPE_EQ] = ACTIONS(5411), + [anon_sym_and_eq] = ACTIONS(5413), + [anon_sym_or_eq] = ACTIONS(5413), + [anon_sym_xor_eq] = ACTIONS(5413), + [anon_sym_LT_EQ_GT] = ACTIONS(5411), + [anon_sym_or] = ACTIONS(5413), + [anon_sym_and] = ACTIONS(5413), + [anon_sym_bitor] = ACTIONS(5413), + [anon_sym_xor] = ACTIONS(5413), + [anon_sym_bitand] = ACTIONS(5413), + [anon_sym_not_eq] = ACTIONS(5413), + [anon_sym_DASH_DASH] = ACTIONS(5411), + [anon_sym_PLUS_PLUS] = ACTIONS(5411), + [anon_sym_DOT] = ACTIONS(5413), + [anon_sym_DOT_STAR] = ACTIONS(5411), + [anon_sym_DASH_GT] = ACTIONS(5411), + [anon_sym_L_DQUOTE] = ACTIONS(6290), + [anon_sym_u_DQUOTE] = ACTIONS(6290), + [anon_sym_U_DQUOTE] = ACTIONS(6290), + [anon_sym_u8_DQUOTE] = ACTIONS(6290), + [anon_sym_DQUOTE] = ACTIONS(6290), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(5411), + [anon_sym_R_DQUOTE] = ACTIONS(6293), + [anon_sym_LR_DQUOTE] = ACTIONS(6293), + [anon_sym_uR_DQUOTE] = ACTIONS(6293), + [anon_sym_UR_DQUOTE] = ACTIONS(6293), + [anon_sym_u8R_DQUOTE] = ACTIONS(6293), + [sym_literal_suffix] = ACTIONS(5413), }, - [2240] = { - [sym_identifier] = ACTIONS(5782), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5784), - [anon_sym_COMMA] = ACTIONS(5784), - [anon_sym_RPAREN] = ACTIONS(5784), - [aux_sym_preproc_if_token2] = ACTIONS(5784), - [aux_sym_preproc_else_token1] = ACTIONS(5784), - [aux_sym_preproc_elif_token1] = ACTIONS(5782), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5784), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5784), - [anon_sym_LPAREN2] = ACTIONS(5784), - [anon_sym_DASH] = ACTIONS(5782), - [anon_sym_PLUS] = ACTIONS(5782), - [anon_sym_STAR] = ACTIONS(5782), - [anon_sym_SLASH] = ACTIONS(5782), - [anon_sym_PERCENT] = ACTIONS(5782), - [anon_sym_PIPE_PIPE] = ACTIONS(5784), - [anon_sym_AMP_AMP] = ACTIONS(5784), - [anon_sym_PIPE] = ACTIONS(5782), - [anon_sym_CARET] = ACTIONS(5782), - [anon_sym_AMP] = ACTIONS(5782), - [anon_sym_EQ_EQ] = ACTIONS(5784), - [anon_sym_BANG_EQ] = ACTIONS(5784), - [anon_sym_GT] = ACTIONS(5782), - [anon_sym_GT_EQ] = ACTIONS(5784), - [anon_sym_LT_EQ] = ACTIONS(5782), - [anon_sym_LT] = ACTIONS(5782), - [anon_sym_LT_LT] = ACTIONS(5782), - [anon_sym_GT_GT] = ACTIONS(5782), - [anon_sym_SEMI] = ACTIONS(5784), - [anon_sym___attribute__] = ACTIONS(5782), - [anon_sym___attribute] = ACTIONS(5782), - [anon_sym_COLON] = ACTIONS(5784), - [anon_sym_LBRACE] = ACTIONS(5784), - [anon_sym_RBRACE] = ACTIONS(5784), - [anon_sym_LBRACK] = ACTIONS(5784), - [anon_sym_RBRACK] = ACTIONS(5784), - [anon_sym_EQ] = ACTIONS(5782), - [anon_sym_QMARK] = ACTIONS(5784), - [anon_sym_STAR_EQ] = ACTIONS(5784), - [anon_sym_SLASH_EQ] = ACTIONS(5784), - [anon_sym_PERCENT_EQ] = ACTIONS(5784), - [anon_sym_PLUS_EQ] = ACTIONS(5784), - [anon_sym_DASH_EQ] = ACTIONS(5784), - [anon_sym_LT_LT_EQ] = ACTIONS(5784), - [anon_sym_GT_GT_EQ] = ACTIONS(5784), - [anon_sym_AMP_EQ] = ACTIONS(5784), - [anon_sym_CARET_EQ] = ACTIONS(5784), - [anon_sym_PIPE_EQ] = ACTIONS(5784), - [anon_sym_and_eq] = ACTIONS(5782), - [anon_sym_or_eq] = ACTIONS(5782), - [anon_sym_xor_eq] = ACTIONS(5782), - [anon_sym_LT_EQ_GT] = ACTIONS(5784), - [anon_sym_or] = ACTIONS(5782), - [anon_sym_and] = ACTIONS(5782), - [anon_sym_bitor] = ACTIONS(5782), - [anon_sym_xor] = ACTIONS(5782), - [anon_sym_bitand] = ACTIONS(5782), - [anon_sym_not_eq] = ACTIONS(5782), - [anon_sym_DASH_DASH] = ACTIONS(5784), - [anon_sym_PLUS_PLUS] = ACTIONS(5784), - [anon_sym_DOT] = ACTIONS(5782), - [anon_sym_DOT_STAR] = ACTIONS(5784), - [anon_sym_DASH_GT] = ACTIONS(5784), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5782), - [anon_sym_decltype] = ACTIONS(5782), + [2320] = { + [sym_identifier] = ACTIONS(5697), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5699), + [anon_sym_COMMA] = ACTIONS(5699), + [anon_sym_RPAREN] = ACTIONS(5699), + [aux_sym_preproc_if_token2] = ACTIONS(5699), + [aux_sym_preproc_else_token1] = ACTIONS(5699), + [aux_sym_preproc_elif_token1] = ACTIONS(5697), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5699), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5699), + [anon_sym_LPAREN2] = ACTIONS(5699), + [anon_sym_DASH] = ACTIONS(5697), + [anon_sym_PLUS] = ACTIONS(5697), + [anon_sym_STAR] = ACTIONS(5697), + [anon_sym_SLASH] = ACTIONS(5697), + [anon_sym_PERCENT] = ACTIONS(5697), + [anon_sym_PIPE_PIPE] = ACTIONS(5699), + [anon_sym_AMP_AMP] = ACTIONS(5699), + [anon_sym_PIPE] = ACTIONS(5697), + [anon_sym_CARET] = ACTIONS(5697), + [anon_sym_AMP] = ACTIONS(5697), + [anon_sym_EQ_EQ] = ACTIONS(5699), + [anon_sym_BANG_EQ] = ACTIONS(5699), + [anon_sym_GT] = ACTIONS(5697), + [anon_sym_GT_EQ] = ACTIONS(5699), + [anon_sym_LT_EQ] = ACTIONS(5697), + [anon_sym_LT] = ACTIONS(5697), + [anon_sym_LT_LT] = ACTIONS(5697), + [anon_sym_GT_GT] = ACTIONS(5697), + [anon_sym_SEMI] = ACTIONS(5699), + [anon_sym___attribute__] = ACTIONS(5697), + [anon_sym___attribute] = ACTIONS(5697), + [anon_sym_COLON] = ACTIONS(5699), + [anon_sym_LBRACE] = ACTIONS(5699), + [anon_sym_RBRACE] = ACTIONS(5699), + [anon_sym_LBRACK] = ACTIONS(5699), + [anon_sym_RBRACK] = ACTIONS(5699), + [anon_sym_EQ] = ACTIONS(5697), + [anon_sym_QMARK] = ACTIONS(5699), + [anon_sym_STAR_EQ] = ACTIONS(5699), + [anon_sym_SLASH_EQ] = ACTIONS(5699), + [anon_sym_PERCENT_EQ] = ACTIONS(5699), + [anon_sym_PLUS_EQ] = ACTIONS(5699), + [anon_sym_DASH_EQ] = ACTIONS(5699), + [anon_sym_LT_LT_EQ] = ACTIONS(5699), + [anon_sym_GT_GT_EQ] = ACTIONS(5699), + [anon_sym_AMP_EQ] = ACTIONS(5699), + [anon_sym_CARET_EQ] = ACTIONS(5699), + [anon_sym_PIPE_EQ] = ACTIONS(5699), + [anon_sym_and_eq] = ACTIONS(5697), + [anon_sym_or_eq] = ACTIONS(5697), + [anon_sym_xor_eq] = ACTIONS(5697), + [anon_sym_LT_EQ_GT] = ACTIONS(5699), + [anon_sym_or] = ACTIONS(5697), + [anon_sym_and] = ACTIONS(5697), + [anon_sym_bitor] = ACTIONS(5697), + [anon_sym_xor] = ACTIONS(5697), + [anon_sym_bitand] = ACTIONS(5697), + [anon_sym_not_eq] = ACTIONS(5697), + [anon_sym_DASH_DASH] = ACTIONS(5699), + [anon_sym_PLUS_PLUS] = ACTIONS(5699), + [anon_sym_DOT] = ACTIONS(5697), + [anon_sym_DOT_STAR] = ACTIONS(5699), + [anon_sym_DASH_GT] = ACTIONS(5699), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5697), + [anon_sym_decltype] = ACTIONS(5697), }, - [2241] = { - [sym_identifier] = ACTIONS(5786), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5788), - [anon_sym_COMMA] = ACTIONS(5788), - [anon_sym_RPAREN] = ACTIONS(5788), - [aux_sym_preproc_if_token2] = ACTIONS(5788), - [aux_sym_preproc_else_token1] = ACTIONS(5788), - [aux_sym_preproc_elif_token1] = ACTIONS(5786), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5788), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5788), - [anon_sym_LPAREN2] = ACTIONS(5788), - [anon_sym_DASH] = ACTIONS(5786), - [anon_sym_PLUS] = ACTIONS(5786), - [anon_sym_STAR] = ACTIONS(5786), - [anon_sym_SLASH] = ACTIONS(5786), - [anon_sym_PERCENT] = ACTIONS(5786), - [anon_sym_PIPE_PIPE] = ACTIONS(5788), - [anon_sym_AMP_AMP] = ACTIONS(5788), - [anon_sym_PIPE] = ACTIONS(5786), - [anon_sym_CARET] = ACTIONS(5786), - [anon_sym_AMP] = ACTIONS(5786), - [anon_sym_EQ_EQ] = ACTIONS(5788), - [anon_sym_BANG_EQ] = ACTIONS(5788), - [anon_sym_GT] = ACTIONS(5786), - [anon_sym_GT_EQ] = ACTIONS(5788), - [anon_sym_LT_EQ] = ACTIONS(5786), - [anon_sym_LT] = ACTIONS(5786), - [anon_sym_LT_LT] = ACTIONS(5786), - [anon_sym_GT_GT] = ACTIONS(5786), - [anon_sym_SEMI] = ACTIONS(5788), - [anon_sym___attribute__] = ACTIONS(5786), - [anon_sym___attribute] = ACTIONS(5786), - [anon_sym_COLON] = ACTIONS(5788), - [anon_sym_LBRACE] = ACTIONS(5788), - [anon_sym_RBRACE] = ACTIONS(5788), - [anon_sym_LBRACK] = ACTIONS(5788), - [anon_sym_RBRACK] = ACTIONS(5788), - [anon_sym_EQ] = ACTIONS(5786), - [anon_sym_QMARK] = ACTIONS(5788), - [anon_sym_STAR_EQ] = ACTIONS(5788), - [anon_sym_SLASH_EQ] = ACTIONS(5788), - [anon_sym_PERCENT_EQ] = ACTIONS(5788), - [anon_sym_PLUS_EQ] = ACTIONS(5788), - [anon_sym_DASH_EQ] = ACTIONS(5788), - [anon_sym_LT_LT_EQ] = ACTIONS(5788), - [anon_sym_GT_GT_EQ] = ACTIONS(5788), - [anon_sym_AMP_EQ] = ACTIONS(5788), - [anon_sym_CARET_EQ] = ACTIONS(5788), - [anon_sym_PIPE_EQ] = ACTIONS(5788), - [anon_sym_and_eq] = ACTIONS(5786), - [anon_sym_or_eq] = ACTIONS(5786), - [anon_sym_xor_eq] = ACTIONS(5786), - [anon_sym_LT_EQ_GT] = ACTIONS(5788), - [anon_sym_or] = ACTIONS(5786), - [anon_sym_and] = ACTIONS(5786), - [anon_sym_bitor] = ACTIONS(5786), - [anon_sym_xor] = ACTIONS(5786), - [anon_sym_bitand] = ACTIONS(5786), - [anon_sym_not_eq] = ACTIONS(5786), - [anon_sym_DASH_DASH] = ACTIONS(5788), - [anon_sym_PLUS_PLUS] = ACTIONS(5788), - [anon_sym_DOT] = ACTIONS(5786), - [anon_sym_DOT_STAR] = ACTIONS(5788), - [anon_sym_DASH_GT] = ACTIONS(5788), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5786), - [anon_sym_decltype] = ACTIONS(5786), + [2321] = { + [sym_identifier] = ACTIONS(5666), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5668), + [anon_sym_COMMA] = ACTIONS(5668), + [anon_sym_RPAREN] = ACTIONS(5668), + [aux_sym_preproc_if_token2] = ACTIONS(5668), + [aux_sym_preproc_else_token1] = ACTIONS(5668), + [aux_sym_preproc_elif_token1] = ACTIONS(5666), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5668), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5668), + [anon_sym_LPAREN2] = ACTIONS(5668), + [anon_sym_DASH] = ACTIONS(5666), + [anon_sym_PLUS] = ACTIONS(5666), + [anon_sym_STAR] = ACTIONS(5666), + [anon_sym_SLASH] = ACTIONS(5666), + [anon_sym_PERCENT] = ACTIONS(5666), + [anon_sym_PIPE_PIPE] = ACTIONS(5668), + [anon_sym_AMP_AMP] = ACTIONS(5668), + [anon_sym_PIPE] = ACTIONS(5666), + [anon_sym_CARET] = ACTIONS(5666), + [anon_sym_AMP] = ACTIONS(5666), + [anon_sym_EQ_EQ] = ACTIONS(5668), + [anon_sym_BANG_EQ] = ACTIONS(5668), + [anon_sym_GT] = ACTIONS(5666), + [anon_sym_GT_EQ] = ACTIONS(5668), + [anon_sym_LT_EQ] = ACTIONS(5666), + [anon_sym_LT] = ACTIONS(5666), + [anon_sym_LT_LT] = ACTIONS(5666), + [anon_sym_GT_GT] = ACTIONS(5666), + [anon_sym_SEMI] = ACTIONS(5668), + [anon_sym___attribute__] = ACTIONS(5666), + [anon_sym___attribute] = ACTIONS(5666), + [anon_sym_COLON] = ACTIONS(5668), + [anon_sym_LBRACE] = ACTIONS(5668), + [anon_sym_RBRACE] = ACTIONS(5668), + [anon_sym_LBRACK] = ACTIONS(5668), + [anon_sym_RBRACK] = ACTIONS(5668), + [anon_sym_EQ] = ACTIONS(5666), + [anon_sym_QMARK] = ACTIONS(5668), + [anon_sym_STAR_EQ] = ACTIONS(5668), + [anon_sym_SLASH_EQ] = ACTIONS(5668), + [anon_sym_PERCENT_EQ] = ACTIONS(5668), + [anon_sym_PLUS_EQ] = ACTIONS(5668), + [anon_sym_DASH_EQ] = ACTIONS(5668), + [anon_sym_LT_LT_EQ] = ACTIONS(5668), + [anon_sym_GT_GT_EQ] = ACTIONS(5668), + [anon_sym_AMP_EQ] = ACTIONS(5668), + [anon_sym_CARET_EQ] = ACTIONS(5668), + [anon_sym_PIPE_EQ] = ACTIONS(5668), + [anon_sym_and_eq] = ACTIONS(5666), + [anon_sym_or_eq] = ACTIONS(5666), + [anon_sym_xor_eq] = ACTIONS(5666), + [anon_sym_LT_EQ_GT] = ACTIONS(5668), + [anon_sym_or] = ACTIONS(5666), + [anon_sym_and] = ACTIONS(5666), + [anon_sym_bitor] = ACTIONS(5666), + [anon_sym_xor] = ACTIONS(5666), + [anon_sym_bitand] = ACTIONS(5666), + [anon_sym_not_eq] = ACTIONS(5666), + [anon_sym_DASH_DASH] = ACTIONS(5668), + [anon_sym_PLUS_PLUS] = ACTIONS(5668), + [anon_sym_DOT] = ACTIONS(5666), + [anon_sym_DOT_STAR] = ACTIONS(5668), + [anon_sym_DASH_GT] = ACTIONS(5668), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5666), + [anon_sym_decltype] = ACTIONS(5666), }, - [2242] = { - [sym_string_literal] = STATE(1684), - [sym_template_argument_list] = STATE(2338), - [sym_raw_string_literal] = STATE(1684), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6070), - [anon_sym_COMMA] = ACTIONS(6230), - [anon_sym_LPAREN2] = ACTIONS(4146), - [anon_sym_DASH] = ACTIONS(4154), - [anon_sym_PLUS] = ACTIONS(4154), - [anon_sym_STAR] = ACTIONS(4154), - [anon_sym_SLASH] = ACTIONS(4154), - [anon_sym_PERCENT] = ACTIONS(4154), - [anon_sym_PIPE_PIPE] = ACTIONS(4146), - [anon_sym_AMP_AMP] = ACTIONS(4146), - [anon_sym_PIPE] = ACTIONS(4154), - [anon_sym_CARET] = ACTIONS(4154), - [anon_sym_AMP] = ACTIONS(4154), - [anon_sym_EQ_EQ] = ACTIONS(4146), - [anon_sym_BANG_EQ] = ACTIONS(4146), - [anon_sym_GT] = ACTIONS(4154), - [anon_sym_GT_EQ] = ACTIONS(4146), - [anon_sym_LT_EQ] = ACTIONS(4154), - [anon_sym_LT] = ACTIONS(5373), - [anon_sym_LT_LT] = ACTIONS(4154), - [anon_sym_GT_GT] = ACTIONS(4154), - [anon_sym_COLON_COLON] = ACTIONS(4167), - [anon_sym_LBRACE] = ACTIONS(4172), - [anon_sym_LBRACK] = ACTIONS(4146), - [anon_sym_RBRACK] = ACTIONS(6232), - [anon_sym_EQ] = ACTIONS(4154), - [anon_sym_QMARK] = ACTIONS(4146), - [anon_sym_STAR_EQ] = ACTIONS(4146), - [anon_sym_SLASH_EQ] = ACTIONS(4146), - [anon_sym_PERCENT_EQ] = ACTIONS(4146), - [anon_sym_PLUS_EQ] = ACTIONS(4146), - [anon_sym_DASH_EQ] = ACTIONS(4146), - [anon_sym_LT_LT_EQ] = ACTIONS(4146), - [anon_sym_GT_GT_EQ] = ACTIONS(4146), - [anon_sym_AMP_EQ] = ACTIONS(4146), - [anon_sym_CARET_EQ] = ACTIONS(4146), - [anon_sym_PIPE_EQ] = ACTIONS(4146), - [anon_sym_and_eq] = ACTIONS(4146), - [anon_sym_or_eq] = ACTIONS(4146), - [anon_sym_xor_eq] = ACTIONS(4146), - [anon_sym_LT_EQ_GT] = ACTIONS(4146), - [anon_sym_or] = ACTIONS(4154), - [anon_sym_and] = ACTIONS(4154), - [anon_sym_bitor] = ACTIONS(4146), - [anon_sym_xor] = ACTIONS(4154), - [anon_sym_bitand] = ACTIONS(4146), - [anon_sym_not_eq] = ACTIONS(4146), - [anon_sym_DASH_DASH] = ACTIONS(4146), - [anon_sym_PLUS_PLUS] = ACTIONS(4146), - [anon_sym_DOT] = ACTIONS(4154), - [anon_sym_DOT_STAR] = ACTIONS(4146), - [anon_sym_DASH_GT] = ACTIONS(4146), - [anon_sym_L_DQUOTE] = ACTIONS(1972), - [anon_sym_u_DQUOTE] = ACTIONS(1972), - [anon_sym_U_DQUOTE] = ACTIONS(1972), - [anon_sym_u8_DQUOTE] = ACTIONS(1972), - [anon_sym_DQUOTE] = ACTIONS(1972), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(1982), - [anon_sym_LR_DQUOTE] = ACTIONS(1982), - [anon_sym_uR_DQUOTE] = ACTIONS(1982), - [anon_sym_UR_DQUOTE] = ACTIONS(1982), - [anon_sym_u8R_DQUOTE] = ACTIONS(1982), + [2322] = { + [sym_identifier] = ACTIONS(5705), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5707), + [anon_sym_COMMA] = ACTIONS(5707), + [anon_sym_RPAREN] = ACTIONS(5707), + [aux_sym_preproc_if_token2] = ACTIONS(5707), + [aux_sym_preproc_else_token1] = ACTIONS(5707), + [aux_sym_preproc_elif_token1] = ACTIONS(5705), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5707), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5707), + [anon_sym_LPAREN2] = ACTIONS(5707), + [anon_sym_DASH] = ACTIONS(5705), + [anon_sym_PLUS] = ACTIONS(5705), + [anon_sym_STAR] = ACTIONS(5705), + [anon_sym_SLASH] = ACTIONS(5705), + [anon_sym_PERCENT] = ACTIONS(5705), + [anon_sym_PIPE_PIPE] = ACTIONS(5707), + [anon_sym_AMP_AMP] = ACTIONS(5707), + [anon_sym_PIPE] = ACTIONS(5705), + [anon_sym_CARET] = ACTIONS(5705), + [anon_sym_AMP] = ACTIONS(5705), + [anon_sym_EQ_EQ] = ACTIONS(5707), + [anon_sym_BANG_EQ] = ACTIONS(5707), + [anon_sym_GT] = ACTIONS(5705), + [anon_sym_GT_EQ] = ACTIONS(5707), + [anon_sym_LT_EQ] = ACTIONS(5705), + [anon_sym_LT] = ACTIONS(5705), + [anon_sym_LT_LT] = ACTIONS(5705), + [anon_sym_GT_GT] = ACTIONS(5705), + [anon_sym_SEMI] = ACTIONS(5707), + [anon_sym___attribute__] = ACTIONS(5705), + [anon_sym___attribute] = ACTIONS(5705), + [anon_sym_COLON] = ACTIONS(5707), + [anon_sym_LBRACE] = ACTIONS(5707), + [anon_sym_RBRACE] = ACTIONS(5707), + [anon_sym_LBRACK] = ACTIONS(5707), + [anon_sym_RBRACK] = ACTIONS(5707), + [anon_sym_EQ] = ACTIONS(5705), + [anon_sym_QMARK] = ACTIONS(5707), + [anon_sym_STAR_EQ] = ACTIONS(5707), + [anon_sym_SLASH_EQ] = ACTIONS(5707), + [anon_sym_PERCENT_EQ] = ACTIONS(5707), + [anon_sym_PLUS_EQ] = ACTIONS(5707), + [anon_sym_DASH_EQ] = ACTIONS(5707), + [anon_sym_LT_LT_EQ] = ACTIONS(5707), + [anon_sym_GT_GT_EQ] = ACTIONS(5707), + [anon_sym_AMP_EQ] = ACTIONS(5707), + [anon_sym_CARET_EQ] = ACTIONS(5707), + [anon_sym_PIPE_EQ] = ACTIONS(5707), + [anon_sym_and_eq] = ACTIONS(5705), + [anon_sym_or_eq] = ACTIONS(5705), + [anon_sym_xor_eq] = ACTIONS(5705), + [anon_sym_LT_EQ_GT] = ACTIONS(5707), + [anon_sym_or] = ACTIONS(5705), + [anon_sym_and] = ACTIONS(5705), + [anon_sym_bitor] = ACTIONS(5705), + [anon_sym_xor] = ACTIONS(5705), + [anon_sym_bitand] = ACTIONS(5705), + [anon_sym_not_eq] = ACTIONS(5705), + [anon_sym_DASH_DASH] = ACTIONS(5707), + [anon_sym_PLUS_PLUS] = ACTIONS(5707), + [anon_sym_DOT] = ACTIONS(5705), + [anon_sym_DOT_STAR] = ACTIONS(5707), + [anon_sym_DASH_GT] = ACTIONS(5707), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5705), + [anon_sym_decltype] = ACTIONS(5705), }, - [2243] = { - [sym_identifier] = ACTIONS(5790), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5792), - [anon_sym_COMMA] = ACTIONS(5792), - [anon_sym_RPAREN] = ACTIONS(5792), - [aux_sym_preproc_if_token2] = ACTIONS(5792), - [aux_sym_preproc_else_token1] = ACTIONS(5792), - [aux_sym_preproc_elif_token1] = ACTIONS(5790), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5792), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5792), - [anon_sym_LPAREN2] = ACTIONS(5792), - [anon_sym_DASH] = ACTIONS(5790), - [anon_sym_PLUS] = ACTIONS(5790), - [anon_sym_STAR] = ACTIONS(5790), - [anon_sym_SLASH] = ACTIONS(5790), - [anon_sym_PERCENT] = ACTIONS(5790), - [anon_sym_PIPE_PIPE] = ACTIONS(5792), - [anon_sym_AMP_AMP] = ACTIONS(5792), - [anon_sym_PIPE] = ACTIONS(5790), - [anon_sym_CARET] = ACTIONS(5790), - [anon_sym_AMP] = ACTIONS(5790), - [anon_sym_EQ_EQ] = ACTIONS(5792), - [anon_sym_BANG_EQ] = ACTIONS(5792), - [anon_sym_GT] = ACTIONS(5790), - [anon_sym_GT_EQ] = ACTIONS(5792), - [anon_sym_LT_EQ] = ACTIONS(5790), - [anon_sym_LT] = ACTIONS(5790), - [anon_sym_LT_LT] = ACTIONS(5790), - [anon_sym_GT_GT] = ACTIONS(5790), - [anon_sym_SEMI] = ACTIONS(5792), - [anon_sym___attribute__] = ACTIONS(5790), - [anon_sym___attribute] = ACTIONS(5790), - [anon_sym_COLON] = ACTIONS(5792), - [anon_sym_LBRACE] = ACTIONS(5792), - [anon_sym_RBRACE] = ACTIONS(5792), - [anon_sym_LBRACK] = ACTIONS(5792), - [anon_sym_RBRACK] = ACTIONS(5792), - [anon_sym_EQ] = ACTIONS(5790), - [anon_sym_QMARK] = ACTIONS(5792), - [anon_sym_STAR_EQ] = ACTIONS(5792), - [anon_sym_SLASH_EQ] = ACTIONS(5792), - [anon_sym_PERCENT_EQ] = ACTIONS(5792), - [anon_sym_PLUS_EQ] = ACTIONS(5792), - [anon_sym_DASH_EQ] = ACTIONS(5792), - [anon_sym_LT_LT_EQ] = ACTIONS(5792), - [anon_sym_GT_GT_EQ] = ACTIONS(5792), - [anon_sym_AMP_EQ] = ACTIONS(5792), - [anon_sym_CARET_EQ] = ACTIONS(5792), - [anon_sym_PIPE_EQ] = ACTIONS(5792), - [anon_sym_and_eq] = ACTIONS(5790), - [anon_sym_or_eq] = ACTIONS(5790), - [anon_sym_xor_eq] = ACTIONS(5790), - [anon_sym_LT_EQ_GT] = ACTIONS(5792), - [anon_sym_or] = ACTIONS(5790), - [anon_sym_and] = ACTIONS(5790), - [anon_sym_bitor] = ACTIONS(5790), - [anon_sym_xor] = ACTIONS(5790), - [anon_sym_bitand] = ACTIONS(5790), - [anon_sym_not_eq] = ACTIONS(5790), - [anon_sym_DASH_DASH] = ACTIONS(5792), - [anon_sym_PLUS_PLUS] = ACTIONS(5792), - [anon_sym_DOT] = ACTIONS(5790), - [anon_sym_DOT_STAR] = ACTIONS(5792), - [anon_sym_DASH_GT] = ACTIONS(5792), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5790), - [anon_sym_decltype] = ACTIONS(5790), + [2323] = { + [sym_identifier] = ACTIONS(5712), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5714), + [anon_sym_COMMA] = ACTIONS(5714), + [anon_sym_RPAREN] = ACTIONS(5714), + [aux_sym_preproc_if_token2] = ACTIONS(5714), + [aux_sym_preproc_else_token1] = ACTIONS(5714), + [aux_sym_preproc_elif_token1] = ACTIONS(5712), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5714), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5714), + [anon_sym_LPAREN2] = ACTIONS(5714), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5712), + [anon_sym_SLASH] = ACTIONS(5712), + [anon_sym_PERCENT] = ACTIONS(5712), + [anon_sym_PIPE_PIPE] = ACTIONS(5714), + [anon_sym_AMP_AMP] = ACTIONS(5714), + [anon_sym_PIPE] = ACTIONS(5712), + [anon_sym_CARET] = ACTIONS(5712), + [anon_sym_AMP] = ACTIONS(5712), + [anon_sym_EQ_EQ] = ACTIONS(5714), + [anon_sym_BANG_EQ] = ACTIONS(5714), + [anon_sym_GT] = ACTIONS(5712), + [anon_sym_GT_EQ] = ACTIONS(5714), + [anon_sym_LT_EQ] = ACTIONS(5712), + [anon_sym_LT] = ACTIONS(5712), + [anon_sym_LT_LT] = ACTIONS(5712), + [anon_sym_GT_GT] = ACTIONS(5712), + [anon_sym_SEMI] = ACTIONS(5714), + [anon_sym___attribute__] = ACTIONS(5712), + [anon_sym___attribute] = ACTIONS(5712), + [anon_sym_COLON] = ACTIONS(5714), + [anon_sym_LBRACE] = ACTIONS(5714), + [anon_sym_RBRACE] = ACTIONS(5714), + [anon_sym_LBRACK] = ACTIONS(5714), + [anon_sym_RBRACK] = ACTIONS(5714), + [anon_sym_EQ] = ACTIONS(5712), + [anon_sym_QMARK] = ACTIONS(5714), + [anon_sym_STAR_EQ] = ACTIONS(5714), + [anon_sym_SLASH_EQ] = ACTIONS(5714), + [anon_sym_PERCENT_EQ] = ACTIONS(5714), + [anon_sym_PLUS_EQ] = ACTIONS(5714), + [anon_sym_DASH_EQ] = ACTIONS(5714), + [anon_sym_LT_LT_EQ] = ACTIONS(5714), + [anon_sym_GT_GT_EQ] = ACTIONS(5714), + [anon_sym_AMP_EQ] = ACTIONS(5714), + [anon_sym_CARET_EQ] = ACTIONS(5714), + [anon_sym_PIPE_EQ] = ACTIONS(5714), + [anon_sym_and_eq] = ACTIONS(5712), + [anon_sym_or_eq] = ACTIONS(5712), + [anon_sym_xor_eq] = ACTIONS(5712), + [anon_sym_LT_EQ_GT] = ACTIONS(5714), + [anon_sym_or] = ACTIONS(5712), + [anon_sym_and] = ACTIONS(5712), + [anon_sym_bitor] = ACTIONS(5712), + [anon_sym_xor] = ACTIONS(5712), + [anon_sym_bitand] = ACTIONS(5712), + [anon_sym_not_eq] = ACTIONS(5712), + [anon_sym_DASH_DASH] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5714), + [anon_sym_DOT] = ACTIONS(5712), + [anon_sym_DOT_STAR] = ACTIONS(5714), + [anon_sym_DASH_GT] = ACTIONS(5714), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5712), + [anon_sym_decltype] = ACTIONS(5712), }, - [2244] = { - [sym_identifier] = ACTIONS(4959), - [anon_sym_LPAREN2] = ACTIONS(4961), - [anon_sym_TILDE] = ACTIONS(4961), - [anon_sym_STAR] = ACTIONS(4961), - [anon_sym_PIPE_PIPE] = ACTIONS(4961), - [anon_sym_AMP_AMP] = ACTIONS(4961), - [anon_sym_AMP] = ACTIONS(4959), - [anon_sym___extension__] = ACTIONS(4959), - [anon_sym_virtual] = ACTIONS(4959), - [anon_sym_extern] = ACTIONS(4959), - [anon_sym___attribute__] = ACTIONS(4959), - [anon_sym___attribute] = ACTIONS(4959), - [anon_sym_using] = ACTIONS(4959), - [anon_sym_COLON_COLON] = ACTIONS(4961), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4961), - [anon_sym___declspec] = ACTIONS(4959), - [anon_sym___based] = ACTIONS(4959), - [anon_sym___cdecl] = ACTIONS(4959), - [anon_sym___clrcall] = ACTIONS(4959), - [anon_sym___stdcall] = ACTIONS(4959), - [anon_sym___fastcall] = ACTIONS(4959), - [anon_sym___thiscall] = ACTIONS(4959), - [anon_sym___vectorcall] = ACTIONS(4959), - [anon_sym_signed] = ACTIONS(4959), - [anon_sym_unsigned] = ACTIONS(4959), - [anon_sym_long] = ACTIONS(4959), - [anon_sym_short] = ACTIONS(4959), - [anon_sym_LBRACK] = ACTIONS(4959), - [anon_sym_static] = ACTIONS(4959), - [anon_sym_register] = ACTIONS(4959), - [anon_sym_inline] = ACTIONS(4959), - [anon_sym___inline] = ACTIONS(4959), - [anon_sym___inline__] = ACTIONS(4959), - [anon_sym___forceinline] = ACTIONS(4959), - [anon_sym_thread_local] = ACTIONS(4959), - [anon_sym___thread] = ACTIONS(4959), - [anon_sym_const] = ACTIONS(4959), - [anon_sym_constexpr] = ACTIONS(4959), - [anon_sym_volatile] = ACTIONS(4959), - [anon_sym_restrict] = ACTIONS(4959), - [anon_sym___restrict__] = ACTIONS(4959), - [anon_sym__Atomic] = ACTIONS(4959), - [anon_sym__Noreturn] = ACTIONS(4959), - [anon_sym_noreturn] = ACTIONS(4959), - [anon_sym__Nonnull] = ACTIONS(4959), - [anon_sym_mutable] = ACTIONS(4959), - [anon_sym_constinit] = ACTIONS(4959), - [anon_sym_consteval] = ACTIONS(4959), - [anon_sym_alignas] = ACTIONS(4959), - [anon_sym__Alignas] = ACTIONS(4959), - [sym_primitive_type] = ACTIONS(4959), - [anon_sym_enum] = ACTIONS(4959), - [anon_sym_class] = ACTIONS(4959), - [anon_sym_struct] = ACTIONS(4959), - [anon_sym_union] = ACTIONS(4959), - [anon_sym_or] = ACTIONS(4959), - [anon_sym_and] = ACTIONS(4959), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4959), - [anon_sym_decltype] = ACTIONS(4959), - [anon_sym_explicit] = ACTIONS(4959), - [anon_sym_typename] = ACTIONS(4959), - [anon_sym_template] = ACTIONS(4959), - [anon_sym_operator] = ACTIONS(4959), - [anon_sym_friend] = ACTIONS(4959), - [anon_sym_concept] = ACTIONS(4959), + [2324] = { + [sym_string_literal] = STATE(2258), + [sym_raw_string_literal] = STATE(2258), + [aux_sym_concatenated_string_repeat1] = STATE(2258), + [sym_identifier] = ACTIONS(6296), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5401), + [anon_sym_COMMA] = ACTIONS(5401), + [anon_sym_LPAREN2] = ACTIONS(5401), + [anon_sym_DASH] = ACTIONS(5403), + [anon_sym_PLUS] = ACTIONS(5403), + [anon_sym_STAR] = ACTIONS(5403), + [anon_sym_SLASH] = ACTIONS(5403), + [anon_sym_PERCENT] = ACTIONS(5403), + [anon_sym_PIPE_PIPE] = ACTIONS(5401), + [anon_sym_AMP_AMP] = ACTIONS(5401), + [anon_sym_PIPE] = ACTIONS(5403), + [anon_sym_CARET] = ACTIONS(5403), + [anon_sym_AMP] = ACTIONS(5403), + [anon_sym_EQ_EQ] = ACTIONS(5401), + [anon_sym_BANG_EQ] = ACTIONS(5401), + [anon_sym_GT] = ACTIONS(5403), + [anon_sym_GT_EQ] = ACTIONS(5403), + [anon_sym_LT_EQ] = ACTIONS(5403), + [anon_sym_LT] = ACTIONS(5403), + [anon_sym_LT_LT] = ACTIONS(5403), + [anon_sym_GT_GT] = ACTIONS(5403), + [anon_sym_LBRACK] = ACTIONS(5401), + [anon_sym_EQ] = ACTIONS(5403), + [anon_sym_QMARK] = ACTIONS(5401), + [anon_sym_STAR_EQ] = ACTIONS(5401), + [anon_sym_SLASH_EQ] = ACTIONS(5401), + [anon_sym_PERCENT_EQ] = ACTIONS(5401), + [anon_sym_PLUS_EQ] = ACTIONS(5401), + [anon_sym_DASH_EQ] = ACTIONS(5401), + [anon_sym_LT_LT_EQ] = ACTIONS(5401), + [anon_sym_GT_GT_EQ] = ACTIONS(5403), + [anon_sym_AMP_EQ] = ACTIONS(5401), + [anon_sym_CARET_EQ] = ACTIONS(5401), + [anon_sym_PIPE_EQ] = ACTIONS(5401), + [anon_sym_and_eq] = ACTIONS(5403), + [anon_sym_or_eq] = ACTIONS(5403), + [anon_sym_xor_eq] = ACTIONS(5403), + [anon_sym_LT_EQ_GT] = ACTIONS(5401), + [anon_sym_or] = ACTIONS(5403), + [anon_sym_and] = ACTIONS(5403), + [anon_sym_bitor] = ACTIONS(5403), + [anon_sym_xor] = ACTIONS(5403), + [anon_sym_bitand] = ACTIONS(5403), + [anon_sym_not_eq] = ACTIONS(5403), + [anon_sym_DASH_DASH] = ACTIONS(5401), + [anon_sym_PLUS_PLUS] = ACTIONS(5401), + [anon_sym_DOT] = ACTIONS(5403), + [anon_sym_DOT_STAR] = ACTIONS(5401), + [anon_sym_DASH_GT] = ACTIONS(5401), + [anon_sym_L_DQUOTE] = ACTIONS(6230), + [anon_sym_u_DQUOTE] = ACTIONS(6230), + [anon_sym_U_DQUOTE] = ACTIONS(6230), + [anon_sym_u8_DQUOTE] = ACTIONS(6230), + [anon_sym_DQUOTE] = ACTIONS(6230), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(5401), + [anon_sym_R_DQUOTE] = ACTIONS(6232), + [anon_sym_LR_DQUOTE] = ACTIONS(6232), + [anon_sym_uR_DQUOTE] = ACTIONS(6232), + [anon_sym_UR_DQUOTE] = ACTIONS(6232), + [anon_sym_u8R_DQUOTE] = ACTIONS(6232), + [sym_literal_suffix] = ACTIONS(5403), }, - [2245] = { - [sym_identifier] = ACTIONS(5450), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5452), - [anon_sym_COMMA] = ACTIONS(5452), - [anon_sym_RPAREN] = ACTIONS(5452), - [aux_sym_preproc_if_token2] = ACTIONS(5452), - [aux_sym_preproc_else_token1] = ACTIONS(5452), - [aux_sym_preproc_elif_token1] = ACTIONS(5450), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5452), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5452), - [anon_sym_LPAREN2] = ACTIONS(5452), - [anon_sym_DASH] = ACTIONS(5450), - [anon_sym_PLUS] = ACTIONS(5450), - [anon_sym_STAR] = ACTIONS(5450), - [anon_sym_SLASH] = ACTIONS(5450), - [anon_sym_PERCENT] = ACTIONS(5450), - [anon_sym_PIPE_PIPE] = ACTIONS(5452), - [anon_sym_AMP_AMP] = ACTIONS(5452), - [anon_sym_PIPE] = ACTIONS(5450), - [anon_sym_CARET] = ACTIONS(5450), - [anon_sym_AMP] = ACTIONS(5450), - [anon_sym_EQ_EQ] = ACTIONS(5452), - [anon_sym_BANG_EQ] = ACTIONS(5452), - [anon_sym_GT] = ACTIONS(5450), - [anon_sym_GT_EQ] = ACTIONS(5452), - [anon_sym_LT_EQ] = ACTIONS(5450), - [anon_sym_LT] = ACTIONS(5450), - [anon_sym_LT_LT] = ACTIONS(5450), - [anon_sym_GT_GT] = ACTIONS(5450), - [anon_sym_SEMI] = ACTIONS(5452), - [anon_sym___attribute__] = ACTIONS(5450), - [anon_sym___attribute] = ACTIONS(5450), - [anon_sym_COLON] = ACTIONS(5452), - [anon_sym_LBRACE] = ACTIONS(5452), - [anon_sym_RBRACE] = ACTIONS(5452), - [anon_sym_LBRACK] = ACTIONS(5452), - [anon_sym_RBRACK] = ACTIONS(5452), - [anon_sym_EQ] = ACTIONS(5450), - [anon_sym_QMARK] = ACTIONS(5452), - [anon_sym_STAR_EQ] = ACTIONS(5452), - [anon_sym_SLASH_EQ] = ACTIONS(5452), - [anon_sym_PERCENT_EQ] = ACTIONS(5452), - [anon_sym_PLUS_EQ] = ACTIONS(5452), - [anon_sym_DASH_EQ] = ACTIONS(5452), - [anon_sym_LT_LT_EQ] = ACTIONS(5452), - [anon_sym_GT_GT_EQ] = ACTIONS(5452), - [anon_sym_AMP_EQ] = ACTIONS(5452), - [anon_sym_CARET_EQ] = ACTIONS(5452), - [anon_sym_PIPE_EQ] = ACTIONS(5452), - [anon_sym_and_eq] = ACTIONS(5450), - [anon_sym_or_eq] = ACTIONS(5450), - [anon_sym_xor_eq] = ACTIONS(5450), - [anon_sym_LT_EQ_GT] = ACTIONS(5452), - [anon_sym_or] = ACTIONS(5450), - [anon_sym_and] = ACTIONS(5450), - [anon_sym_bitor] = ACTIONS(5450), - [anon_sym_xor] = ACTIONS(5450), - [anon_sym_bitand] = ACTIONS(5450), - [anon_sym_not_eq] = ACTIONS(5450), - [anon_sym_DASH_DASH] = ACTIONS(5452), - [anon_sym_PLUS_PLUS] = ACTIONS(5452), - [anon_sym_DOT] = ACTIONS(5450), - [anon_sym_DOT_STAR] = ACTIONS(5452), - [anon_sym_DASH_GT] = ACTIONS(5452), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5450), - [anon_sym_decltype] = ACTIONS(5450), + [2325] = { + [sym_identifier] = ACTIONS(6298), + [anon_sym_LPAREN2] = ACTIONS(6300), + [anon_sym_TILDE] = ACTIONS(6300), + [anon_sym_STAR] = ACTIONS(6300), + [anon_sym_PIPE_PIPE] = ACTIONS(6302), + [anon_sym_AMP_AMP] = ACTIONS(6252), + [anon_sym_AMP] = ACTIONS(6298), + [anon_sym___extension__] = ACTIONS(6298), + [anon_sym_virtual] = ACTIONS(6298), + [anon_sym_extern] = ACTIONS(6298), + [anon_sym___attribute__] = ACTIONS(6298), + [anon_sym___attribute] = ACTIONS(6298), + [anon_sym_using] = ACTIONS(6298), + [anon_sym_COLON_COLON] = ACTIONS(6300), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6300), + [anon_sym___declspec] = ACTIONS(6298), + [anon_sym___based] = ACTIONS(6298), + [anon_sym___cdecl] = ACTIONS(6298), + [anon_sym___clrcall] = ACTIONS(6298), + [anon_sym___stdcall] = ACTIONS(6298), + [anon_sym___fastcall] = ACTIONS(6298), + [anon_sym___thiscall] = ACTIONS(6298), + [anon_sym___vectorcall] = ACTIONS(6298), + [anon_sym_signed] = ACTIONS(6298), + [anon_sym_unsigned] = ACTIONS(6298), + [anon_sym_long] = ACTIONS(6298), + [anon_sym_short] = ACTIONS(6298), + [anon_sym_LBRACK] = ACTIONS(6298), + [anon_sym_static] = ACTIONS(6298), + [anon_sym_register] = ACTIONS(6298), + [anon_sym_inline] = ACTIONS(6298), + [anon_sym___inline] = ACTIONS(6298), + [anon_sym___inline__] = ACTIONS(6298), + [anon_sym___forceinline] = ACTIONS(6298), + [anon_sym_thread_local] = ACTIONS(6298), + [anon_sym___thread] = ACTIONS(6298), + [anon_sym_const] = ACTIONS(6298), + [anon_sym_constexpr] = ACTIONS(6298), + [anon_sym_volatile] = ACTIONS(6298), + [anon_sym_restrict] = ACTIONS(6298), + [anon_sym___restrict__] = ACTIONS(6298), + [anon_sym__Atomic] = ACTIONS(6298), + [anon_sym__Noreturn] = ACTIONS(6298), + [anon_sym_noreturn] = ACTIONS(6298), + [anon_sym__Nonnull] = ACTIONS(6298), + [anon_sym_mutable] = ACTIONS(6298), + [anon_sym_constinit] = ACTIONS(6298), + [anon_sym_consteval] = ACTIONS(6298), + [anon_sym_alignas] = ACTIONS(6298), + [anon_sym__Alignas] = ACTIONS(6298), + [sym_primitive_type] = ACTIONS(6298), + [anon_sym_enum] = ACTIONS(6298), + [anon_sym_class] = ACTIONS(6298), + [anon_sym_struct] = ACTIONS(6298), + [anon_sym_union] = ACTIONS(6298), + [anon_sym_or] = ACTIONS(6304), + [anon_sym_and] = ACTIONS(6254), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6298), + [anon_sym_decltype] = ACTIONS(6298), + [anon_sym_explicit] = ACTIONS(6298), + [anon_sym_typename] = ACTIONS(6298), + [anon_sym_template] = ACTIONS(6298), + [anon_sym_operator] = ACTIONS(6298), + [anon_sym_friend] = ACTIONS(6298), + [anon_sym_concept] = ACTIONS(6298), }, - [2246] = { - [sym_identifier] = ACTIONS(5794), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5796), - [anon_sym_COMMA] = ACTIONS(5796), - [anon_sym_RPAREN] = ACTIONS(5796), - [aux_sym_preproc_if_token2] = ACTIONS(5796), - [aux_sym_preproc_else_token1] = ACTIONS(5796), - [aux_sym_preproc_elif_token1] = ACTIONS(5794), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5796), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5796), - [anon_sym_LPAREN2] = ACTIONS(5796), - [anon_sym_DASH] = ACTIONS(5794), - [anon_sym_PLUS] = ACTIONS(5794), - [anon_sym_STAR] = ACTIONS(5794), - [anon_sym_SLASH] = ACTIONS(5794), - [anon_sym_PERCENT] = ACTIONS(5794), - [anon_sym_PIPE_PIPE] = ACTIONS(5796), - [anon_sym_AMP_AMP] = ACTIONS(5796), - [anon_sym_PIPE] = ACTIONS(5794), - [anon_sym_CARET] = ACTIONS(5794), - [anon_sym_AMP] = ACTIONS(5794), - [anon_sym_EQ_EQ] = ACTIONS(5796), - [anon_sym_BANG_EQ] = ACTIONS(5796), - [anon_sym_GT] = ACTIONS(5794), - [anon_sym_GT_EQ] = ACTIONS(5796), - [anon_sym_LT_EQ] = ACTIONS(5794), - [anon_sym_LT] = ACTIONS(5794), - [anon_sym_LT_LT] = ACTIONS(5794), - [anon_sym_GT_GT] = ACTIONS(5794), - [anon_sym_SEMI] = ACTIONS(5796), - [anon_sym___attribute__] = ACTIONS(5794), - [anon_sym___attribute] = ACTIONS(5794), - [anon_sym_COLON] = ACTIONS(5796), - [anon_sym_LBRACE] = ACTIONS(5796), - [anon_sym_RBRACE] = ACTIONS(5796), - [anon_sym_LBRACK] = ACTIONS(5796), - [anon_sym_RBRACK] = ACTIONS(5796), - [anon_sym_EQ] = ACTIONS(5794), - [anon_sym_QMARK] = ACTIONS(5796), - [anon_sym_STAR_EQ] = ACTIONS(5796), - [anon_sym_SLASH_EQ] = ACTIONS(5796), - [anon_sym_PERCENT_EQ] = ACTIONS(5796), - [anon_sym_PLUS_EQ] = ACTIONS(5796), - [anon_sym_DASH_EQ] = ACTIONS(5796), - [anon_sym_LT_LT_EQ] = ACTIONS(5796), - [anon_sym_GT_GT_EQ] = ACTIONS(5796), - [anon_sym_AMP_EQ] = ACTIONS(5796), - [anon_sym_CARET_EQ] = ACTIONS(5796), - [anon_sym_PIPE_EQ] = ACTIONS(5796), - [anon_sym_and_eq] = ACTIONS(5794), - [anon_sym_or_eq] = ACTIONS(5794), - [anon_sym_xor_eq] = ACTIONS(5794), - [anon_sym_LT_EQ_GT] = ACTIONS(5796), - [anon_sym_or] = ACTIONS(5794), - [anon_sym_and] = ACTIONS(5794), - [anon_sym_bitor] = ACTIONS(5794), - [anon_sym_xor] = ACTIONS(5794), - [anon_sym_bitand] = ACTIONS(5794), - [anon_sym_not_eq] = ACTIONS(5794), - [anon_sym_DASH_DASH] = ACTIONS(5796), - [anon_sym_PLUS_PLUS] = ACTIONS(5796), - [anon_sym_DOT] = ACTIONS(5794), - [anon_sym_DOT_STAR] = ACTIONS(5796), - [anon_sym_DASH_GT] = ACTIONS(5796), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5794), - [anon_sym_decltype] = ACTIONS(5794), + [2326] = { + [sym_string_literal] = STATE(2324), + [sym_template_argument_list] = STATE(3384), + [sym_raw_string_literal] = STATE(2324), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4166), + [anon_sym_COMMA] = ACTIONS(4166), + [anon_sym_LPAREN2] = ACTIONS(4166), + [anon_sym_DASH] = ACTIONS(4174), + [anon_sym_PLUS] = ACTIONS(4174), + [anon_sym_STAR] = ACTIONS(4174), + [anon_sym_SLASH] = ACTIONS(4174), + [anon_sym_PERCENT] = ACTIONS(4174), + [anon_sym_PIPE_PIPE] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4166), + [anon_sym_PIPE] = ACTIONS(4174), + [anon_sym_CARET] = ACTIONS(4174), + [anon_sym_AMP] = ACTIONS(4174), + [anon_sym_EQ_EQ] = ACTIONS(4166), + [anon_sym_BANG_EQ] = ACTIONS(4166), + [anon_sym_GT] = ACTIONS(4174), + [anon_sym_GT_EQ] = ACTIONS(4174), + [anon_sym_LT_EQ] = ACTIONS(4174), + [anon_sym_LT] = ACTIONS(6306), + [anon_sym_LT_LT] = ACTIONS(4174), + [anon_sym_GT_GT] = ACTIONS(4174), + [anon_sym_COLON_COLON] = ACTIONS(4187), + [anon_sym_LBRACE] = ACTIONS(4192), + [anon_sym_LBRACK] = ACTIONS(4166), + [anon_sym_EQ] = ACTIONS(4174), + [anon_sym_QMARK] = ACTIONS(4166), + [anon_sym_STAR_EQ] = ACTIONS(4166), + [anon_sym_SLASH_EQ] = ACTIONS(4166), + [anon_sym_PERCENT_EQ] = ACTIONS(4166), + [anon_sym_PLUS_EQ] = ACTIONS(4166), + [anon_sym_DASH_EQ] = ACTIONS(4166), + [anon_sym_LT_LT_EQ] = ACTIONS(4166), + [anon_sym_GT_GT_EQ] = ACTIONS(4174), + [anon_sym_AMP_EQ] = ACTIONS(4166), + [anon_sym_CARET_EQ] = ACTIONS(4166), + [anon_sym_PIPE_EQ] = ACTIONS(4166), + [anon_sym_and_eq] = ACTIONS(4166), + [anon_sym_or_eq] = ACTIONS(4166), + [anon_sym_xor_eq] = ACTIONS(4166), + [anon_sym_LT_EQ_GT] = ACTIONS(4166), + [anon_sym_or] = ACTIONS(4174), + [anon_sym_and] = ACTIONS(4174), + [anon_sym_bitor] = ACTIONS(4166), + [anon_sym_xor] = ACTIONS(4174), + [anon_sym_bitand] = ACTIONS(4166), + [anon_sym_not_eq] = ACTIONS(4166), + [anon_sym_DASH_DASH] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4174), + [anon_sym_DOT_STAR] = ACTIONS(4166), + [anon_sym_DASH_GT] = ACTIONS(4166), + [anon_sym_L_DQUOTE] = ACTIONS(6230), + [anon_sym_u_DQUOTE] = ACTIONS(6230), + [anon_sym_U_DQUOTE] = ACTIONS(6230), + [anon_sym_u8_DQUOTE] = ACTIONS(6230), + [anon_sym_DQUOTE] = ACTIONS(6230), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(4166), + [anon_sym_R_DQUOTE] = ACTIONS(6232), + [anon_sym_LR_DQUOTE] = ACTIONS(6232), + [anon_sym_uR_DQUOTE] = ACTIONS(6232), + [anon_sym_UR_DQUOTE] = ACTIONS(6232), + [anon_sym_u8R_DQUOTE] = ACTIONS(6232), }, - [2247] = { - [sym_attribute_declaration] = STATE(2247), - [aux_sym_attributed_declarator_repeat1] = STATE(2247), - [sym_identifier] = ACTIONS(2051), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6235), - [anon_sym_COMMA] = ACTIONS(6235), - [anon_sym_RPAREN] = ACTIONS(6235), - [aux_sym_preproc_if_token2] = ACTIONS(6235), - [aux_sym_preproc_else_token1] = ACTIONS(6235), - [aux_sym_preproc_elif_token1] = ACTIONS(2051), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6235), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6235), - [anon_sym_LPAREN2] = ACTIONS(6235), - [anon_sym_DASH] = ACTIONS(2051), - [anon_sym_PLUS] = ACTIONS(2051), - [anon_sym_STAR] = ACTIONS(2051), - [anon_sym_SLASH] = ACTIONS(2051), - [anon_sym_PERCENT] = ACTIONS(2051), - [anon_sym_PIPE_PIPE] = ACTIONS(6235), - [anon_sym_AMP_AMP] = ACTIONS(6235), - [anon_sym_PIPE] = ACTIONS(2051), - [anon_sym_CARET] = ACTIONS(2051), - [anon_sym_AMP] = ACTIONS(2051), - [anon_sym_EQ_EQ] = ACTIONS(6235), - [anon_sym_BANG_EQ] = ACTIONS(6235), - [anon_sym_GT] = ACTIONS(2051), - [anon_sym_GT_EQ] = ACTIONS(6235), - [anon_sym_LT_EQ] = ACTIONS(2051), - [anon_sym_LT] = ACTIONS(2051), - [anon_sym_LT_LT] = ACTIONS(2051), - [anon_sym_GT_GT] = ACTIONS(2051), - [anon_sym_SEMI] = ACTIONS(6235), - [anon_sym___attribute__] = ACTIONS(2051), - [anon_sym___attribute] = ACTIONS(2051), - [anon_sym_COLON] = ACTIONS(6235), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6237), - [anon_sym_RBRACE] = ACTIONS(6235), - [anon_sym_LBRACK] = ACTIONS(2051), - [anon_sym_RBRACK] = ACTIONS(6235), - [anon_sym_EQ] = ACTIONS(2051), - [anon_sym_QMARK] = ACTIONS(6235), - [anon_sym_STAR_EQ] = ACTIONS(6235), - [anon_sym_SLASH_EQ] = ACTIONS(6235), - [anon_sym_PERCENT_EQ] = ACTIONS(6235), - [anon_sym_PLUS_EQ] = ACTIONS(6235), - [anon_sym_DASH_EQ] = ACTIONS(6235), - [anon_sym_LT_LT_EQ] = ACTIONS(6235), - [anon_sym_GT_GT_EQ] = ACTIONS(6235), - [anon_sym_AMP_EQ] = ACTIONS(6235), - [anon_sym_CARET_EQ] = ACTIONS(6235), - [anon_sym_PIPE_EQ] = ACTIONS(6235), - [anon_sym_and_eq] = ACTIONS(2051), - [anon_sym_or_eq] = ACTIONS(2051), - [anon_sym_xor_eq] = ACTIONS(2051), - [anon_sym_LT_EQ_GT] = ACTIONS(6235), - [anon_sym_or] = ACTIONS(2051), - [anon_sym_and] = ACTIONS(2051), - [anon_sym_bitor] = ACTIONS(2051), - [anon_sym_xor] = ACTIONS(2051), - [anon_sym_bitand] = ACTIONS(2051), - [anon_sym_not_eq] = ACTIONS(2051), - [anon_sym_DASH_DASH] = ACTIONS(6235), - [anon_sym_PLUS_PLUS] = ACTIONS(6235), - [anon_sym_DOT] = ACTIONS(2051), - [anon_sym_DOT_STAR] = ACTIONS(6235), - [anon_sym_DASH_GT] = ACTIONS(6235), + [2327] = { + [sym_argument_list] = STATE(2562), + [sym_initializer_list] = STATE(2562), + [sym_identifier] = ACTIONS(6309), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6311), + [anon_sym_COMMA] = ACTIONS(6311), + [anon_sym_RPAREN] = ACTIONS(6311), + [aux_sym_preproc_if_token2] = ACTIONS(6311), + [aux_sym_preproc_else_token1] = ACTIONS(6311), + [aux_sym_preproc_elif_token1] = ACTIONS(6309), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6311), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6311), + [anon_sym_LPAREN2] = ACTIONS(5845), + [anon_sym_DASH] = ACTIONS(6309), + [anon_sym_PLUS] = ACTIONS(6309), + [anon_sym_STAR] = ACTIONS(6309), + [anon_sym_SLASH] = ACTIONS(6309), + [anon_sym_PERCENT] = ACTIONS(6309), + [anon_sym_PIPE_PIPE] = ACTIONS(6311), + [anon_sym_AMP_AMP] = ACTIONS(6311), + [anon_sym_PIPE] = ACTIONS(6309), + [anon_sym_CARET] = ACTIONS(6309), + [anon_sym_AMP] = ACTIONS(6309), + [anon_sym_EQ_EQ] = ACTIONS(6311), + [anon_sym_BANG_EQ] = ACTIONS(6311), + [anon_sym_GT] = ACTIONS(6309), + [anon_sym_GT_EQ] = ACTIONS(6311), + [anon_sym_LT_EQ] = ACTIONS(6309), + [anon_sym_LT] = ACTIONS(6309), + [anon_sym_LT_LT] = ACTIONS(6309), + [anon_sym_GT_GT] = ACTIONS(6309), + [anon_sym_SEMI] = ACTIONS(6311), + [anon_sym___attribute__] = ACTIONS(6309), + [anon_sym___attribute] = ACTIONS(6309), + [anon_sym_COLON] = ACTIONS(6311), + [anon_sym_LBRACE] = ACTIONS(1954), + [anon_sym_RBRACE] = ACTIONS(6311), + [anon_sym_LBRACK] = ACTIONS(6311), + [anon_sym_RBRACK] = ACTIONS(6311), + [anon_sym_EQ] = ACTIONS(6309), + [anon_sym_QMARK] = ACTIONS(6311), + [anon_sym_STAR_EQ] = ACTIONS(6311), + [anon_sym_SLASH_EQ] = ACTIONS(6311), + [anon_sym_PERCENT_EQ] = ACTIONS(6311), + [anon_sym_PLUS_EQ] = ACTIONS(6311), + [anon_sym_DASH_EQ] = ACTIONS(6311), + [anon_sym_LT_LT_EQ] = ACTIONS(6311), + [anon_sym_GT_GT_EQ] = ACTIONS(6311), + [anon_sym_AMP_EQ] = ACTIONS(6311), + [anon_sym_CARET_EQ] = ACTIONS(6311), + [anon_sym_PIPE_EQ] = ACTIONS(6311), + [anon_sym_and_eq] = ACTIONS(6309), + [anon_sym_or_eq] = ACTIONS(6309), + [anon_sym_xor_eq] = ACTIONS(6309), + [anon_sym_LT_EQ_GT] = ACTIONS(6311), + [anon_sym_or] = ACTIONS(6309), + [anon_sym_and] = ACTIONS(6309), + [anon_sym_bitor] = ACTIONS(6309), + [anon_sym_xor] = ACTIONS(6309), + [anon_sym_bitand] = ACTIONS(6309), + [anon_sym_not_eq] = ACTIONS(6309), + [anon_sym_DASH_DASH] = ACTIONS(6311), + [anon_sym_PLUS_PLUS] = ACTIONS(6311), + [anon_sym_DOT] = ACTIONS(6309), + [anon_sym_DOT_STAR] = ACTIONS(6311), + [anon_sym_DASH_GT] = ACTIONS(6311), [sym_comment] = ACTIONS(3), }, - [2248] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2293), - [sym_identifier] = ACTIONS(5900), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5898), - [anon_sym_COMMA] = ACTIONS(5898), - [aux_sym_preproc_if_token2] = ACTIONS(5898), - [aux_sym_preproc_else_token1] = ACTIONS(5898), - [aux_sym_preproc_elif_token1] = ACTIONS(5900), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5898), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5898), - [anon_sym_LPAREN2] = ACTIONS(5898), - [anon_sym_DASH] = ACTIONS(5900), - [anon_sym_PLUS] = ACTIONS(5900), - [anon_sym_STAR] = ACTIONS(5900), - [anon_sym_SLASH] = ACTIONS(5900), - [anon_sym_PERCENT] = ACTIONS(5900), - [anon_sym_PIPE_PIPE] = ACTIONS(5898), - [anon_sym_AMP_AMP] = ACTIONS(5898), - [anon_sym_PIPE] = ACTIONS(5900), - [anon_sym_CARET] = ACTIONS(5900), - [anon_sym_AMP] = ACTIONS(5900), - [anon_sym_EQ_EQ] = ACTIONS(5898), - [anon_sym_BANG_EQ] = ACTIONS(5898), - [anon_sym_GT] = ACTIONS(5900), - [anon_sym_GT_EQ] = ACTIONS(5898), - [anon_sym_LT_EQ] = ACTIONS(5900), - [anon_sym_LT] = ACTIONS(5900), - [anon_sym_LT_LT] = ACTIONS(5900), - [anon_sym_GT_GT] = ACTIONS(5900), - [anon_sym___attribute__] = ACTIONS(5900), - [anon_sym___attribute] = ACTIONS(5900), - [anon_sym_LBRACE] = ACTIONS(5898), - [anon_sym_signed] = ACTIONS(6176), - [anon_sym_unsigned] = ACTIONS(6176), - [anon_sym_long] = ACTIONS(6176), - [anon_sym_short] = ACTIONS(6176), - [anon_sym_LBRACK] = ACTIONS(5898), - [anon_sym_EQ] = ACTIONS(5900), - [anon_sym_QMARK] = ACTIONS(5898), - [anon_sym_STAR_EQ] = ACTIONS(5898), - [anon_sym_SLASH_EQ] = ACTIONS(5898), - [anon_sym_PERCENT_EQ] = ACTIONS(5898), - [anon_sym_PLUS_EQ] = ACTIONS(5898), - [anon_sym_DASH_EQ] = ACTIONS(5898), - [anon_sym_LT_LT_EQ] = ACTIONS(5898), - [anon_sym_GT_GT_EQ] = ACTIONS(5898), - [anon_sym_AMP_EQ] = ACTIONS(5898), - [anon_sym_CARET_EQ] = ACTIONS(5898), - [anon_sym_PIPE_EQ] = ACTIONS(5898), - [anon_sym_and_eq] = ACTIONS(5900), - [anon_sym_or_eq] = ACTIONS(5900), - [anon_sym_xor_eq] = ACTIONS(5900), - [anon_sym_LT_EQ_GT] = ACTIONS(5898), - [anon_sym_or] = ACTIONS(5900), - [anon_sym_and] = ACTIONS(5900), - [anon_sym_bitor] = ACTIONS(5900), - [anon_sym_xor] = ACTIONS(5900), - [anon_sym_bitand] = ACTIONS(5900), - [anon_sym_not_eq] = ACTIONS(5900), - [anon_sym_DASH_DASH] = ACTIONS(5898), - [anon_sym_PLUS_PLUS] = ACTIONS(5898), - [anon_sym_DOT] = ACTIONS(5900), - [anon_sym_DOT_STAR] = ACTIONS(5898), - [anon_sym_DASH_GT] = ACTIONS(5898), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5900), - [anon_sym_decltype] = ACTIONS(5900), + [2328] = { + [sym_identifier] = ACTIONS(5742), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5744), + [anon_sym_COMMA] = ACTIONS(5744), + [anon_sym_RPAREN] = ACTIONS(5744), + [aux_sym_preproc_if_token2] = ACTIONS(5744), + [aux_sym_preproc_else_token1] = ACTIONS(5744), + [aux_sym_preproc_elif_token1] = ACTIONS(5742), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5744), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5744), + [anon_sym_LPAREN2] = ACTIONS(5744), + [anon_sym_DASH] = ACTIONS(5742), + [anon_sym_PLUS] = ACTIONS(5742), + [anon_sym_STAR] = ACTIONS(5742), + [anon_sym_SLASH] = ACTIONS(5742), + [anon_sym_PERCENT] = ACTIONS(5742), + [anon_sym_PIPE_PIPE] = ACTIONS(5744), + [anon_sym_AMP_AMP] = ACTIONS(5744), + [anon_sym_PIPE] = ACTIONS(5742), + [anon_sym_CARET] = ACTIONS(5742), + [anon_sym_AMP] = ACTIONS(5742), + [anon_sym_EQ_EQ] = ACTIONS(5744), + [anon_sym_BANG_EQ] = ACTIONS(5744), + [anon_sym_GT] = ACTIONS(5742), + [anon_sym_GT_EQ] = ACTIONS(5744), + [anon_sym_LT_EQ] = ACTIONS(5742), + [anon_sym_LT] = ACTIONS(5742), + [anon_sym_LT_LT] = ACTIONS(5742), + [anon_sym_GT_GT] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(5744), + [anon_sym___attribute__] = ACTIONS(5742), + [anon_sym___attribute] = ACTIONS(5742), + [anon_sym_COLON] = ACTIONS(5744), + [anon_sym_LBRACE] = ACTIONS(5744), + [anon_sym_RBRACE] = ACTIONS(5744), + [anon_sym_LBRACK] = ACTIONS(5744), + [anon_sym_RBRACK] = ACTIONS(5744), + [anon_sym_EQ] = ACTIONS(5742), + [anon_sym_QMARK] = ACTIONS(5744), + [anon_sym_STAR_EQ] = ACTIONS(5744), + [anon_sym_SLASH_EQ] = ACTIONS(5744), + [anon_sym_PERCENT_EQ] = ACTIONS(5744), + [anon_sym_PLUS_EQ] = ACTIONS(5744), + [anon_sym_DASH_EQ] = ACTIONS(5744), + [anon_sym_LT_LT_EQ] = ACTIONS(5744), + [anon_sym_GT_GT_EQ] = ACTIONS(5744), + [anon_sym_AMP_EQ] = ACTIONS(5744), + [anon_sym_CARET_EQ] = ACTIONS(5744), + [anon_sym_PIPE_EQ] = ACTIONS(5744), + [anon_sym_and_eq] = ACTIONS(5742), + [anon_sym_or_eq] = ACTIONS(5742), + [anon_sym_xor_eq] = ACTIONS(5742), + [anon_sym_LT_EQ_GT] = ACTIONS(5744), + [anon_sym_or] = ACTIONS(5742), + [anon_sym_and] = ACTIONS(5742), + [anon_sym_bitor] = ACTIONS(5742), + [anon_sym_xor] = ACTIONS(5742), + [anon_sym_bitand] = ACTIONS(5742), + [anon_sym_not_eq] = ACTIONS(5742), + [anon_sym_DASH_DASH] = ACTIONS(5744), + [anon_sym_PLUS_PLUS] = ACTIONS(5744), + [anon_sym_DOT] = ACTIONS(5742), + [anon_sym_DOT_STAR] = ACTIONS(5744), + [anon_sym_DASH_GT] = ACTIONS(5744), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5742), + [anon_sym_decltype] = ACTIONS(5742), }, - [2249] = { - [sym_identifier] = ACTIONS(5786), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5788), - [anon_sym_COMMA] = ACTIONS(5788), - [anon_sym_RPAREN] = ACTIONS(5788), - [aux_sym_preproc_if_token2] = ACTIONS(5788), - [aux_sym_preproc_else_token1] = ACTIONS(5788), - [aux_sym_preproc_elif_token1] = ACTIONS(5786), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5788), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5788), - [anon_sym_LPAREN2] = ACTIONS(5788), - [anon_sym_DASH] = ACTIONS(5786), - [anon_sym_PLUS] = ACTIONS(5786), - [anon_sym_STAR] = ACTIONS(5786), - [anon_sym_SLASH] = ACTIONS(5786), - [anon_sym_PERCENT] = ACTIONS(5786), - [anon_sym_PIPE_PIPE] = ACTIONS(5788), - [anon_sym_AMP_AMP] = ACTIONS(5788), - [anon_sym_PIPE] = ACTIONS(5786), - [anon_sym_CARET] = ACTIONS(5786), - [anon_sym_AMP] = ACTIONS(5786), - [anon_sym_EQ_EQ] = ACTIONS(5788), - [anon_sym_BANG_EQ] = ACTIONS(5788), - [anon_sym_GT] = ACTIONS(5786), - [anon_sym_GT_EQ] = ACTIONS(5788), - [anon_sym_LT_EQ] = ACTIONS(5786), - [anon_sym_LT] = ACTIONS(5786), - [anon_sym_LT_LT] = ACTIONS(5786), - [anon_sym_GT_GT] = ACTIONS(5786), - [anon_sym_SEMI] = ACTIONS(5788), - [anon_sym___attribute__] = ACTIONS(5786), - [anon_sym___attribute] = ACTIONS(5786), - [anon_sym_COLON] = ACTIONS(5788), - [anon_sym_LBRACE] = ACTIONS(5788), - [anon_sym_RBRACE] = ACTIONS(5788), - [anon_sym_LBRACK] = ACTIONS(5788), - [anon_sym_RBRACK] = ACTIONS(5788), - [anon_sym_EQ] = ACTIONS(5786), - [anon_sym_QMARK] = ACTIONS(5788), - [anon_sym_STAR_EQ] = ACTIONS(5788), - [anon_sym_SLASH_EQ] = ACTIONS(5788), - [anon_sym_PERCENT_EQ] = ACTIONS(5788), - [anon_sym_PLUS_EQ] = ACTIONS(5788), - [anon_sym_DASH_EQ] = ACTIONS(5788), - [anon_sym_LT_LT_EQ] = ACTIONS(5788), - [anon_sym_GT_GT_EQ] = ACTIONS(5788), - [anon_sym_AMP_EQ] = ACTIONS(5788), - [anon_sym_CARET_EQ] = ACTIONS(5788), - [anon_sym_PIPE_EQ] = ACTIONS(5788), - [anon_sym_and_eq] = ACTIONS(5786), - [anon_sym_or_eq] = ACTIONS(5786), - [anon_sym_xor_eq] = ACTIONS(5786), - [anon_sym_LT_EQ_GT] = ACTIONS(5788), - [anon_sym_or] = ACTIONS(5786), - [anon_sym_and] = ACTIONS(5786), - [anon_sym_bitor] = ACTIONS(5786), - [anon_sym_xor] = ACTIONS(5786), - [anon_sym_bitand] = ACTIONS(5786), - [anon_sym_not_eq] = ACTIONS(5786), - [anon_sym_DASH_DASH] = ACTIONS(5788), - [anon_sym_PLUS_PLUS] = ACTIONS(5788), - [anon_sym_DOT] = ACTIONS(5786), - [anon_sym_DOT_STAR] = ACTIONS(5788), - [anon_sym_DASH_GT] = ACTIONS(5788), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5786), - [anon_sym_decltype] = ACTIONS(5786), + [2329] = { + [sym_identifier] = ACTIONS(5796), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5798), + [anon_sym_COMMA] = ACTIONS(5798), + [anon_sym_RPAREN] = ACTIONS(5798), + [aux_sym_preproc_if_token2] = ACTIONS(5798), + [aux_sym_preproc_else_token1] = ACTIONS(5798), + [aux_sym_preproc_elif_token1] = ACTIONS(5796), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5798), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5798), + [anon_sym_LPAREN2] = ACTIONS(5798), + [anon_sym_DASH] = ACTIONS(5796), + [anon_sym_PLUS] = ACTIONS(5796), + [anon_sym_STAR] = ACTIONS(5796), + [anon_sym_SLASH] = ACTIONS(5796), + [anon_sym_PERCENT] = ACTIONS(5796), + [anon_sym_PIPE_PIPE] = ACTIONS(5798), + [anon_sym_AMP_AMP] = ACTIONS(5798), + [anon_sym_PIPE] = ACTIONS(5796), + [anon_sym_CARET] = ACTIONS(5796), + [anon_sym_AMP] = ACTIONS(5796), + [anon_sym_EQ_EQ] = ACTIONS(5798), + [anon_sym_BANG_EQ] = ACTIONS(5798), + [anon_sym_GT] = ACTIONS(5796), + [anon_sym_GT_EQ] = ACTIONS(5798), + [anon_sym_LT_EQ] = ACTIONS(5796), + [anon_sym_LT] = ACTIONS(5796), + [anon_sym_LT_LT] = ACTIONS(5796), + [anon_sym_GT_GT] = ACTIONS(5796), + [anon_sym_SEMI] = ACTIONS(5798), + [anon_sym___attribute__] = ACTIONS(5796), + [anon_sym___attribute] = ACTIONS(5796), + [anon_sym_COLON] = ACTIONS(5798), + [anon_sym_LBRACE] = ACTIONS(5798), + [anon_sym_RBRACE] = ACTIONS(5798), + [anon_sym_LBRACK] = ACTIONS(5798), + [anon_sym_RBRACK] = ACTIONS(5798), + [anon_sym_EQ] = ACTIONS(5796), + [anon_sym_QMARK] = ACTIONS(5798), + [anon_sym_STAR_EQ] = ACTIONS(5798), + [anon_sym_SLASH_EQ] = ACTIONS(5798), + [anon_sym_PERCENT_EQ] = ACTIONS(5798), + [anon_sym_PLUS_EQ] = ACTIONS(5798), + [anon_sym_DASH_EQ] = ACTIONS(5798), + [anon_sym_LT_LT_EQ] = ACTIONS(5798), + [anon_sym_GT_GT_EQ] = ACTIONS(5798), + [anon_sym_AMP_EQ] = ACTIONS(5798), + [anon_sym_CARET_EQ] = ACTIONS(5798), + [anon_sym_PIPE_EQ] = ACTIONS(5798), + [anon_sym_and_eq] = ACTIONS(5796), + [anon_sym_or_eq] = ACTIONS(5796), + [anon_sym_xor_eq] = ACTIONS(5796), + [anon_sym_LT_EQ_GT] = ACTIONS(5798), + [anon_sym_or] = ACTIONS(5796), + [anon_sym_and] = ACTIONS(5796), + [anon_sym_bitor] = ACTIONS(5796), + [anon_sym_xor] = ACTIONS(5796), + [anon_sym_bitand] = ACTIONS(5796), + [anon_sym_not_eq] = ACTIONS(5796), + [anon_sym_DASH_DASH] = ACTIONS(5798), + [anon_sym_PLUS_PLUS] = ACTIONS(5798), + [anon_sym_DOT] = ACTIONS(5796), + [anon_sym_DOT_STAR] = ACTIONS(5798), + [anon_sym_DASH_GT] = ACTIONS(5798), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5796), + [anon_sym_decltype] = ACTIONS(5796), }, - [2250] = { - [sym_identifier] = ACTIONS(5605), - [anon_sym_LPAREN2] = ACTIONS(5607), - [anon_sym_TILDE] = ACTIONS(5607), - [anon_sym_STAR] = ACTIONS(5607), - [anon_sym_PIPE_PIPE] = ACTIONS(5607), - [anon_sym_AMP_AMP] = ACTIONS(5607), - [anon_sym_AMP] = ACTIONS(5605), - [anon_sym___extension__] = ACTIONS(5605), - [anon_sym_virtual] = ACTIONS(5605), - [anon_sym_extern] = ACTIONS(5605), - [anon_sym___attribute__] = ACTIONS(5605), - [anon_sym___attribute] = ACTIONS(5605), - [anon_sym_using] = ACTIONS(5605), - [anon_sym_COLON_COLON] = ACTIONS(5607), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5607), - [anon_sym___declspec] = ACTIONS(5605), - [anon_sym___based] = ACTIONS(5605), - [anon_sym___cdecl] = ACTIONS(5605), - [anon_sym___clrcall] = ACTIONS(5605), - [anon_sym___stdcall] = ACTIONS(5605), - [anon_sym___fastcall] = ACTIONS(5605), - [anon_sym___thiscall] = ACTIONS(5605), - [anon_sym___vectorcall] = ACTIONS(5605), - [anon_sym_signed] = ACTIONS(5605), - [anon_sym_unsigned] = ACTIONS(5605), - [anon_sym_long] = ACTIONS(5605), - [anon_sym_short] = ACTIONS(5605), - [anon_sym_LBRACK] = ACTIONS(5605), - [anon_sym_static] = ACTIONS(5605), - [anon_sym_register] = ACTIONS(5605), - [anon_sym_inline] = ACTIONS(5605), - [anon_sym___inline] = ACTIONS(5605), - [anon_sym___inline__] = ACTIONS(5605), - [anon_sym___forceinline] = ACTIONS(5605), - [anon_sym_thread_local] = ACTIONS(5605), - [anon_sym___thread] = ACTIONS(5605), - [anon_sym_const] = ACTIONS(5605), - [anon_sym_constexpr] = ACTIONS(5605), - [anon_sym_volatile] = ACTIONS(5605), - [anon_sym_restrict] = ACTIONS(5605), - [anon_sym___restrict__] = ACTIONS(5605), - [anon_sym__Atomic] = ACTIONS(5605), - [anon_sym__Noreturn] = ACTIONS(5605), - [anon_sym_noreturn] = ACTIONS(5605), - [anon_sym__Nonnull] = ACTIONS(5605), - [anon_sym_mutable] = ACTIONS(5605), - [anon_sym_constinit] = ACTIONS(5605), - [anon_sym_consteval] = ACTIONS(5605), - [anon_sym_alignas] = ACTIONS(5605), - [anon_sym__Alignas] = ACTIONS(5605), - [sym_primitive_type] = ACTIONS(5605), - [anon_sym_enum] = ACTIONS(5605), - [anon_sym_class] = ACTIONS(5605), - [anon_sym_struct] = ACTIONS(5605), - [anon_sym_union] = ACTIONS(5605), - [anon_sym_or] = ACTIONS(5605), - [anon_sym_and] = ACTIONS(5605), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5605), - [anon_sym_decltype] = ACTIONS(5605), - [anon_sym_explicit] = ACTIONS(5605), - [anon_sym_typename] = ACTIONS(5605), - [anon_sym_template] = ACTIONS(5605), - [anon_sym_operator] = ACTIONS(5605), - [anon_sym_friend] = ACTIONS(5605), - [anon_sym_concept] = ACTIONS(5605), + [2330] = { + [sym_identifier] = ACTIONS(5820), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5822), + [anon_sym_COMMA] = ACTIONS(5822), + [anon_sym_RPAREN] = ACTIONS(5822), + [aux_sym_preproc_if_token2] = ACTIONS(5822), + [aux_sym_preproc_else_token1] = ACTIONS(5822), + [aux_sym_preproc_elif_token1] = ACTIONS(5820), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5822), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5822), + [anon_sym_LPAREN2] = ACTIONS(5822), + [anon_sym_DASH] = ACTIONS(5820), + [anon_sym_PLUS] = ACTIONS(5820), + [anon_sym_STAR] = ACTIONS(5820), + [anon_sym_SLASH] = ACTIONS(5820), + [anon_sym_PERCENT] = ACTIONS(5820), + [anon_sym_PIPE_PIPE] = ACTIONS(5822), + [anon_sym_AMP_AMP] = ACTIONS(5822), + [anon_sym_PIPE] = ACTIONS(5820), + [anon_sym_CARET] = ACTIONS(5820), + [anon_sym_AMP] = ACTIONS(5820), + [anon_sym_EQ_EQ] = ACTIONS(5822), + [anon_sym_BANG_EQ] = ACTIONS(5822), + [anon_sym_GT] = ACTIONS(5820), + [anon_sym_GT_EQ] = ACTIONS(5822), + [anon_sym_LT_EQ] = ACTIONS(5820), + [anon_sym_LT] = ACTIONS(5820), + [anon_sym_LT_LT] = ACTIONS(5820), + [anon_sym_GT_GT] = ACTIONS(5820), + [anon_sym_SEMI] = ACTIONS(5822), + [anon_sym___attribute__] = ACTIONS(5820), + [anon_sym___attribute] = ACTIONS(5820), + [anon_sym_COLON] = ACTIONS(5822), + [anon_sym_LBRACE] = ACTIONS(5822), + [anon_sym_RBRACE] = ACTIONS(5822), + [anon_sym_LBRACK] = ACTIONS(5822), + [anon_sym_RBRACK] = ACTIONS(5822), + [anon_sym_EQ] = ACTIONS(5820), + [anon_sym_QMARK] = ACTIONS(5822), + [anon_sym_STAR_EQ] = ACTIONS(5822), + [anon_sym_SLASH_EQ] = ACTIONS(5822), + [anon_sym_PERCENT_EQ] = ACTIONS(5822), + [anon_sym_PLUS_EQ] = ACTIONS(5822), + [anon_sym_DASH_EQ] = ACTIONS(5822), + [anon_sym_LT_LT_EQ] = ACTIONS(5822), + [anon_sym_GT_GT_EQ] = ACTIONS(5822), + [anon_sym_AMP_EQ] = ACTIONS(5822), + [anon_sym_CARET_EQ] = ACTIONS(5822), + [anon_sym_PIPE_EQ] = ACTIONS(5822), + [anon_sym_and_eq] = ACTIONS(5820), + [anon_sym_or_eq] = ACTIONS(5820), + [anon_sym_xor_eq] = ACTIONS(5820), + [anon_sym_LT_EQ_GT] = ACTIONS(5822), + [anon_sym_or] = ACTIONS(5820), + [anon_sym_and] = ACTIONS(5820), + [anon_sym_bitor] = ACTIONS(5820), + [anon_sym_xor] = ACTIONS(5820), + [anon_sym_bitand] = ACTIONS(5820), + [anon_sym_not_eq] = ACTIONS(5820), + [anon_sym_DASH_DASH] = ACTIONS(5822), + [anon_sym_PLUS_PLUS] = ACTIONS(5822), + [anon_sym_DOT] = ACTIONS(5820), + [anon_sym_DOT_STAR] = ACTIONS(5822), + [anon_sym_DASH_GT] = ACTIONS(5822), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5820), + [anon_sym_decltype] = ACTIONS(5820), }, - [2251] = { - [sym_identifier] = ACTIONS(5637), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5639), - [anon_sym_COMMA] = ACTIONS(5639), - [anon_sym_RPAREN] = ACTIONS(5639), - [aux_sym_preproc_if_token2] = ACTIONS(5639), - [aux_sym_preproc_else_token1] = ACTIONS(5639), - [aux_sym_preproc_elif_token1] = ACTIONS(5637), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5639), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5639), - [anon_sym_LPAREN2] = ACTIONS(5639), - [anon_sym_DASH] = ACTIONS(5637), - [anon_sym_PLUS] = ACTIONS(5637), - [anon_sym_STAR] = ACTIONS(5637), - [anon_sym_SLASH] = ACTIONS(5637), - [anon_sym_PERCENT] = ACTIONS(5637), - [anon_sym_PIPE_PIPE] = ACTIONS(5639), - [anon_sym_AMP_AMP] = ACTIONS(5639), - [anon_sym_PIPE] = ACTIONS(5637), - [anon_sym_CARET] = ACTIONS(5637), - [anon_sym_AMP] = ACTIONS(5637), - [anon_sym_EQ_EQ] = ACTIONS(5639), - [anon_sym_BANG_EQ] = ACTIONS(5639), - [anon_sym_GT] = ACTIONS(5637), - [anon_sym_GT_EQ] = ACTIONS(5639), - [anon_sym_LT_EQ] = ACTIONS(5637), - [anon_sym_LT] = ACTIONS(5637), - [anon_sym_LT_LT] = ACTIONS(5637), - [anon_sym_GT_GT] = ACTIONS(5637), - [anon_sym_SEMI] = ACTIONS(5639), - [anon_sym___attribute__] = ACTIONS(5637), - [anon_sym___attribute] = ACTIONS(5637), - [anon_sym_COLON] = ACTIONS(5639), - [anon_sym_LBRACE] = ACTIONS(5639), - [anon_sym_RBRACE] = ACTIONS(5639), - [anon_sym_LBRACK] = ACTIONS(5639), - [anon_sym_RBRACK] = ACTIONS(5639), - [anon_sym_EQ] = ACTIONS(5637), - [anon_sym_QMARK] = ACTIONS(5639), - [anon_sym_STAR_EQ] = ACTIONS(5639), - [anon_sym_SLASH_EQ] = ACTIONS(5639), - [anon_sym_PERCENT_EQ] = ACTIONS(5639), - [anon_sym_PLUS_EQ] = ACTIONS(5639), - [anon_sym_DASH_EQ] = ACTIONS(5639), - [anon_sym_LT_LT_EQ] = ACTIONS(5639), - [anon_sym_GT_GT_EQ] = ACTIONS(5639), - [anon_sym_AMP_EQ] = ACTIONS(5639), - [anon_sym_CARET_EQ] = ACTIONS(5639), - [anon_sym_PIPE_EQ] = ACTIONS(5639), - [anon_sym_and_eq] = ACTIONS(5637), - [anon_sym_or_eq] = ACTIONS(5637), - [anon_sym_xor_eq] = ACTIONS(5637), - [anon_sym_LT_EQ_GT] = ACTIONS(5639), - [anon_sym_or] = ACTIONS(5637), - [anon_sym_and] = ACTIONS(5637), - [anon_sym_bitor] = ACTIONS(5637), - [anon_sym_xor] = ACTIONS(5637), - [anon_sym_bitand] = ACTIONS(5637), - [anon_sym_not_eq] = ACTIONS(5637), - [anon_sym_DASH_DASH] = ACTIONS(5639), - [anon_sym_PLUS_PLUS] = ACTIONS(5639), - [anon_sym_DOT] = ACTIONS(5637), - [anon_sym_DOT_STAR] = ACTIONS(5639), - [anon_sym_DASH_GT] = ACTIONS(5639), + [2331] = { + [sym_identifier] = ACTIONS(5541), + [anon_sym_LPAREN2] = ACTIONS(5543), + [anon_sym_TILDE] = ACTIONS(5543), + [anon_sym_STAR] = ACTIONS(5543), + [anon_sym_PIPE_PIPE] = ACTIONS(5543), + [anon_sym_AMP_AMP] = ACTIONS(5543), + [anon_sym_AMP] = ACTIONS(5541), + [anon_sym___extension__] = ACTIONS(5541), + [anon_sym_virtual] = ACTIONS(5541), + [anon_sym_extern] = ACTIONS(5541), + [anon_sym___attribute__] = ACTIONS(5541), + [anon_sym___attribute] = ACTIONS(5541), + [anon_sym_using] = ACTIONS(5541), + [anon_sym_COLON_COLON] = ACTIONS(5543), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5543), + [anon_sym___declspec] = ACTIONS(5541), + [anon_sym___based] = ACTIONS(5541), + [anon_sym___cdecl] = ACTIONS(5541), + [anon_sym___clrcall] = ACTIONS(5541), + [anon_sym___stdcall] = ACTIONS(5541), + [anon_sym___fastcall] = ACTIONS(5541), + [anon_sym___thiscall] = ACTIONS(5541), + [anon_sym___vectorcall] = ACTIONS(5541), + [anon_sym_signed] = ACTIONS(5541), + [anon_sym_unsigned] = ACTIONS(5541), + [anon_sym_long] = ACTIONS(5541), + [anon_sym_short] = ACTIONS(5541), + [anon_sym_LBRACK] = ACTIONS(5541), + [anon_sym_static] = ACTIONS(5541), + [anon_sym_register] = ACTIONS(5541), + [anon_sym_inline] = ACTIONS(5541), + [anon_sym___inline] = ACTIONS(5541), + [anon_sym___inline__] = ACTIONS(5541), + [anon_sym___forceinline] = ACTIONS(5541), + [anon_sym_thread_local] = ACTIONS(5541), + [anon_sym___thread] = ACTIONS(5541), + [anon_sym_const] = ACTIONS(5541), + [anon_sym_constexpr] = ACTIONS(5541), + [anon_sym_volatile] = ACTIONS(5541), + [anon_sym_restrict] = ACTIONS(5541), + [anon_sym___restrict__] = ACTIONS(5541), + [anon_sym__Atomic] = ACTIONS(5541), + [anon_sym__Noreturn] = ACTIONS(5541), + [anon_sym_noreturn] = ACTIONS(5541), + [anon_sym__Nonnull] = ACTIONS(5541), + [anon_sym_mutable] = ACTIONS(5541), + [anon_sym_constinit] = ACTIONS(5541), + [anon_sym_consteval] = ACTIONS(5541), + [anon_sym_alignas] = ACTIONS(5541), + [anon_sym__Alignas] = ACTIONS(5541), + [sym_primitive_type] = ACTIONS(5541), + [anon_sym_enum] = ACTIONS(5541), + [anon_sym_class] = ACTIONS(5541), + [anon_sym_struct] = ACTIONS(5541), + [anon_sym_union] = ACTIONS(5541), + [anon_sym_or] = ACTIONS(5541), + [anon_sym_and] = ACTIONS(5541), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5637), - [anon_sym_decltype] = ACTIONS(5637), - }, - [2252] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(5579), - [anon_sym_COMMA] = ACTIONS(5579), - [anon_sym_RPAREN] = ACTIONS(5579), - [anon_sym_LPAREN2] = ACTIONS(5579), - [anon_sym_DASH] = ACTIONS(5577), - [anon_sym_PLUS] = ACTIONS(5577), - [anon_sym_STAR] = ACTIONS(5577), - [anon_sym_SLASH] = ACTIONS(5577), - [anon_sym_PERCENT] = ACTIONS(5577), - [anon_sym_PIPE_PIPE] = ACTIONS(5579), - [anon_sym_AMP_AMP] = ACTIONS(5579), - [anon_sym_PIPE] = ACTIONS(5577), - [anon_sym_CARET] = ACTIONS(5577), - [anon_sym_AMP] = ACTIONS(5577), - [anon_sym_EQ_EQ] = ACTIONS(5579), - [anon_sym_BANG_EQ] = ACTIONS(5579), - [anon_sym_GT] = ACTIONS(5577), - [anon_sym_GT_EQ] = ACTIONS(5579), - [anon_sym_LT_EQ] = ACTIONS(5577), - [anon_sym_LT] = ACTIONS(5577), - [anon_sym_LT_LT] = ACTIONS(5577), - [anon_sym_GT_GT] = ACTIONS(5577), - [anon_sym_SEMI] = ACTIONS(5579), - [anon_sym_COLON] = ACTIONS(5579), - [anon_sym_RBRACE] = ACTIONS(5579), - [anon_sym_LBRACK] = ACTIONS(5579), - [anon_sym_RBRACK] = ACTIONS(5579), - [anon_sym_EQ] = ACTIONS(5577), - [anon_sym_QMARK] = ACTIONS(5579), - [anon_sym_STAR_EQ] = ACTIONS(5579), - [anon_sym_SLASH_EQ] = ACTIONS(5579), - [anon_sym_PERCENT_EQ] = ACTIONS(5579), - [anon_sym_PLUS_EQ] = ACTIONS(5579), - [anon_sym_DASH_EQ] = ACTIONS(5579), - [anon_sym_LT_LT_EQ] = ACTIONS(5579), - [anon_sym_GT_GT_EQ] = ACTIONS(5579), - [anon_sym_AMP_EQ] = ACTIONS(5579), - [anon_sym_CARET_EQ] = ACTIONS(5579), - [anon_sym_PIPE_EQ] = ACTIONS(5579), - [anon_sym_and_eq] = ACTIONS(5577), - [anon_sym_or_eq] = ACTIONS(5577), - [anon_sym_xor_eq] = ACTIONS(5577), - [anon_sym_LT_EQ_GT] = ACTIONS(5579), - [anon_sym_or] = ACTIONS(5577), - [anon_sym_and] = ACTIONS(5577), - [anon_sym_bitor] = ACTIONS(5577), - [anon_sym_xor] = ACTIONS(5577), - [anon_sym_bitand] = ACTIONS(5577), - [anon_sym_not_eq] = ACTIONS(5577), - [anon_sym_DASH_DASH] = ACTIONS(5579), - [anon_sym_PLUS_PLUS] = ACTIONS(5579), - [anon_sym_DOT] = ACTIONS(5577), - [anon_sym_DOT_STAR] = ACTIONS(5579), - [anon_sym_DASH_GT] = ACTIONS(5579), - [anon_sym_L_DQUOTE] = ACTIONS(5579), - [anon_sym_u_DQUOTE] = ACTIONS(5579), - [anon_sym_U_DQUOTE] = ACTIONS(5579), - [anon_sym_u8_DQUOTE] = ACTIONS(5579), - [anon_sym_DQUOTE] = ACTIONS(5579), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5579), - [anon_sym_LR_DQUOTE] = ACTIONS(5579), - [anon_sym_uR_DQUOTE] = ACTIONS(5579), - [anon_sym_UR_DQUOTE] = ACTIONS(5579), - [anon_sym_u8R_DQUOTE] = ACTIONS(5579), - [sym_literal_suffix] = ACTIONS(5577), - }, - [2253] = { - [sym_identifier] = ACTIONS(5798), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5800), - [anon_sym_COMMA] = ACTIONS(5800), - [anon_sym_RPAREN] = ACTIONS(5800), - [aux_sym_preproc_if_token2] = ACTIONS(5800), - [aux_sym_preproc_else_token1] = ACTIONS(5800), - [aux_sym_preproc_elif_token1] = ACTIONS(5798), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5800), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5800), - [anon_sym_LPAREN2] = ACTIONS(5800), - [anon_sym_DASH] = ACTIONS(5798), - [anon_sym_PLUS] = ACTIONS(5798), - [anon_sym_STAR] = ACTIONS(5798), - [anon_sym_SLASH] = ACTIONS(5798), - [anon_sym_PERCENT] = ACTIONS(5798), - [anon_sym_PIPE_PIPE] = ACTIONS(5800), - [anon_sym_AMP_AMP] = ACTIONS(5800), - [anon_sym_PIPE] = ACTIONS(5798), - [anon_sym_CARET] = ACTIONS(5798), - [anon_sym_AMP] = ACTIONS(5798), - [anon_sym_EQ_EQ] = ACTIONS(5800), - [anon_sym_BANG_EQ] = ACTIONS(5800), - [anon_sym_GT] = ACTIONS(5798), - [anon_sym_GT_EQ] = ACTIONS(5800), - [anon_sym_LT_EQ] = ACTIONS(5798), - [anon_sym_LT] = ACTIONS(5798), - [anon_sym_LT_LT] = ACTIONS(5798), - [anon_sym_GT_GT] = ACTIONS(5798), - [anon_sym_SEMI] = ACTIONS(5800), - [anon_sym___attribute__] = ACTIONS(5798), - [anon_sym___attribute] = ACTIONS(5798), - [anon_sym_COLON] = ACTIONS(5800), - [anon_sym_LBRACE] = ACTIONS(5800), - [anon_sym_RBRACE] = ACTIONS(5800), - [anon_sym_LBRACK] = ACTIONS(5800), - [anon_sym_RBRACK] = ACTIONS(5800), - [anon_sym_EQ] = ACTIONS(5798), - [anon_sym_QMARK] = ACTIONS(5800), - [anon_sym_STAR_EQ] = ACTIONS(5800), - [anon_sym_SLASH_EQ] = ACTIONS(5800), - [anon_sym_PERCENT_EQ] = ACTIONS(5800), - [anon_sym_PLUS_EQ] = ACTIONS(5800), - [anon_sym_DASH_EQ] = ACTIONS(5800), - [anon_sym_LT_LT_EQ] = ACTIONS(5800), - [anon_sym_GT_GT_EQ] = ACTIONS(5800), - [anon_sym_AMP_EQ] = ACTIONS(5800), - [anon_sym_CARET_EQ] = ACTIONS(5800), - [anon_sym_PIPE_EQ] = ACTIONS(5800), - [anon_sym_and_eq] = ACTIONS(5798), - [anon_sym_or_eq] = ACTIONS(5798), - [anon_sym_xor_eq] = ACTIONS(5798), - [anon_sym_LT_EQ_GT] = ACTIONS(5800), - [anon_sym_or] = ACTIONS(5798), - [anon_sym_and] = ACTIONS(5798), - [anon_sym_bitor] = ACTIONS(5798), - [anon_sym_xor] = ACTIONS(5798), - [anon_sym_bitand] = ACTIONS(5798), - [anon_sym_not_eq] = ACTIONS(5798), - [anon_sym_DASH_DASH] = ACTIONS(5800), - [anon_sym_PLUS_PLUS] = ACTIONS(5800), - [anon_sym_DOT] = ACTIONS(5798), - [anon_sym_DOT_STAR] = ACTIONS(5800), - [anon_sym_DASH_GT] = ACTIONS(5800), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5798), - [anon_sym_decltype] = ACTIONS(5798), - }, - [2254] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2265), - [sym_identifier] = ACTIONS(5938), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5936), - [anon_sym_COMMA] = ACTIONS(5936), - [aux_sym_preproc_if_token2] = ACTIONS(5936), - [aux_sym_preproc_else_token1] = ACTIONS(5936), - [aux_sym_preproc_elif_token1] = ACTIONS(5938), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5936), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5936), - [anon_sym_LPAREN2] = ACTIONS(5936), - [anon_sym_DASH] = ACTIONS(5938), - [anon_sym_PLUS] = ACTIONS(5938), - [anon_sym_STAR] = ACTIONS(5938), - [anon_sym_SLASH] = ACTIONS(5938), - [anon_sym_PERCENT] = ACTIONS(5938), - [anon_sym_PIPE_PIPE] = ACTIONS(5936), - [anon_sym_AMP_AMP] = ACTIONS(5936), - [anon_sym_PIPE] = ACTIONS(5938), - [anon_sym_CARET] = ACTIONS(5938), - [anon_sym_AMP] = ACTIONS(5938), - [anon_sym_EQ_EQ] = ACTIONS(5936), - [anon_sym_BANG_EQ] = ACTIONS(5936), - [anon_sym_GT] = ACTIONS(5938), - [anon_sym_GT_EQ] = ACTIONS(5936), - [anon_sym_LT_EQ] = ACTIONS(5938), - [anon_sym_LT] = ACTIONS(5938), - [anon_sym_LT_LT] = ACTIONS(5938), - [anon_sym_GT_GT] = ACTIONS(5938), - [anon_sym___attribute__] = ACTIONS(5938), - [anon_sym___attribute] = ACTIONS(5938), - [anon_sym_LBRACE] = ACTIONS(5936), - [anon_sym_signed] = ACTIONS(6240), - [anon_sym_unsigned] = ACTIONS(6240), - [anon_sym_long] = ACTIONS(6240), - [anon_sym_short] = ACTIONS(6240), - [anon_sym_LBRACK] = ACTIONS(5936), - [anon_sym_EQ] = ACTIONS(5938), - [anon_sym_QMARK] = ACTIONS(5936), - [anon_sym_STAR_EQ] = ACTIONS(5936), - [anon_sym_SLASH_EQ] = ACTIONS(5936), - [anon_sym_PERCENT_EQ] = ACTIONS(5936), - [anon_sym_PLUS_EQ] = ACTIONS(5936), - [anon_sym_DASH_EQ] = ACTIONS(5936), - [anon_sym_LT_LT_EQ] = ACTIONS(5936), - [anon_sym_GT_GT_EQ] = ACTIONS(5936), - [anon_sym_AMP_EQ] = ACTIONS(5936), - [anon_sym_CARET_EQ] = ACTIONS(5936), - [anon_sym_PIPE_EQ] = ACTIONS(5936), - [anon_sym_and_eq] = ACTIONS(5938), - [anon_sym_or_eq] = ACTIONS(5938), - [anon_sym_xor_eq] = ACTIONS(5938), - [anon_sym_LT_EQ_GT] = ACTIONS(5936), - [anon_sym_or] = ACTIONS(5938), - [anon_sym_and] = ACTIONS(5938), - [anon_sym_bitor] = ACTIONS(5938), - [anon_sym_xor] = ACTIONS(5938), - [anon_sym_bitand] = ACTIONS(5938), - [anon_sym_not_eq] = ACTIONS(5938), - [anon_sym_DASH_DASH] = ACTIONS(5936), - [anon_sym_PLUS_PLUS] = ACTIONS(5936), - [anon_sym_DOT] = ACTIONS(5938), - [anon_sym_DOT_STAR] = ACTIONS(5936), - [anon_sym_DASH_GT] = ACTIONS(5936), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5938), - [anon_sym_decltype] = ACTIONS(5938), + [sym_auto] = ACTIONS(5541), + [anon_sym_decltype] = ACTIONS(5541), + [anon_sym_explicit] = ACTIONS(5541), + [anon_sym_typename] = ACTIONS(5541), + [anon_sym_template] = ACTIONS(5541), + [anon_sym_operator] = ACTIONS(5541), + [anon_sym_friend] = ACTIONS(5541), + [anon_sym_concept] = ACTIONS(5541), }, - [2255] = { - [sym_identifier] = ACTIONS(5651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5653), - [anon_sym_COMMA] = ACTIONS(5653), - [anon_sym_RPAREN] = ACTIONS(5653), - [aux_sym_preproc_if_token2] = ACTIONS(5653), - [aux_sym_preproc_else_token1] = ACTIONS(5653), - [aux_sym_preproc_elif_token1] = ACTIONS(5651), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5653), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5653), - [anon_sym_LPAREN2] = ACTIONS(5653), - [anon_sym_DASH] = ACTIONS(5651), - [anon_sym_PLUS] = ACTIONS(5651), - [anon_sym_STAR] = ACTIONS(5651), - [anon_sym_SLASH] = ACTIONS(5651), - [anon_sym_PERCENT] = ACTIONS(5651), - [anon_sym_PIPE_PIPE] = ACTIONS(5653), - [anon_sym_AMP_AMP] = ACTIONS(5653), - [anon_sym_PIPE] = ACTIONS(5651), - [anon_sym_CARET] = ACTIONS(5651), - [anon_sym_AMP] = ACTIONS(5651), - [anon_sym_EQ_EQ] = ACTIONS(5653), - [anon_sym_BANG_EQ] = ACTIONS(5653), - [anon_sym_GT] = ACTIONS(5651), - [anon_sym_GT_EQ] = ACTIONS(5653), - [anon_sym_LT_EQ] = ACTIONS(5651), - [anon_sym_LT] = ACTIONS(5651), - [anon_sym_LT_LT] = ACTIONS(5651), - [anon_sym_GT_GT] = ACTIONS(5651), - [anon_sym_SEMI] = ACTIONS(5653), - [anon_sym___attribute__] = ACTIONS(5651), - [anon_sym___attribute] = ACTIONS(5651), - [anon_sym_COLON] = ACTIONS(5653), - [anon_sym_LBRACE] = ACTIONS(5653), - [anon_sym_RBRACE] = ACTIONS(5653), - [anon_sym_LBRACK] = ACTIONS(5653), - [anon_sym_RBRACK] = ACTIONS(5653), - [anon_sym_EQ] = ACTIONS(5651), - [anon_sym_QMARK] = ACTIONS(5653), - [anon_sym_STAR_EQ] = ACTIONS(5653), - [anon_sym_SLASH_EQ] = ACTIONS(5653), - [anon_sym_PERCENT_EQ] = ACTIONS(5653), - [anon_sym_PLUS_EQ] = ACTIONS(5653), - [anon_sym_DASH_EQ] = ACTIONS(5653), - [anon_sym_LT_LT_EQ] = ACTIONS(5653), - [anon_sym_GT_GT_EQ] = ACTIONS(5653), - [anon_sym_AMP_EQ] = ACTIONS(5653), - [anon_sym_CARET_EQ] = ACTIONS(5653), - [anon_sym_PIPE_EQ] = ACTIONS(5653), - [anon_sym_and_eq] = ACTIONS(5651), - [anon_sym_or_eq] = ACTIONS(5651), - [anon_sym_xor_eq] = ACTIONS(5651), - [anon_sym_LT_EQ_GT] = ACTIONS(5653), - [anon_sym_or] = ACTIONS(5651), - [anon_sym_and] = ACTIONS(5651), - [anon_sym_bitor] = ACTIONS(5651), - [anon_sym_xor] = ACTIONS(5651), - [anon_sym_bitand] = ACTIONS(5651), - [anon_sym_not_eq] = ACTIONS(5651), - [anon_sym_DASH_DASH] = ACTIONS(5653), - [anon_sym_PLUS_PLUS] = ACTIONS(5653), - [anon_sym_DOT] = ACTIONS(5651), - [anon_sym_DOT_STAR] = ACTIONS(5653), - [anon_sym_DASH_GT] = ACTIONS(5653), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5651), - [anon_sym_decltype] = ACTIONS(5651), + [2332] = { + [sym_identifier] = ACTIONS(5693), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5695), + [anon_sym_COMMA] = ACTIONS(5695), + [anon_sym_RPAREN] = ACTIONS(5695), + [aux_sym_preproc_if_token2] = ACTIONS(5695), + [aux_sym_preproc_else_token1] = ACTIONS(5695), + [aux_sym_preproc_elif_token1] = ACTIONS(5693), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5695), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5695), + [anon_sym_LPAREN2] = ACTIONS(5695), + [anon_sym_DASH] = ACTIONS(5693), + [anon_sym_PLUS] = ACTIONS(5693), + [anon_sym_STAR] = ACTIONS(5693), + [anon_sym_SLASH] = ACTIONS(5693), + [anon_sym_PERCENT] = ACTIONS(5693), + [anon_sym_PIPE_PIPE] = ACTIONS(5695), + [anon_sym_AMP_AMP] = ACTIONS(5695), + [anon_sym_PIPE] = ACTIONS(5693), + [anon_sym_CARET] = ACTIONS(5693), + [anon_sym_AMP] = ACTIONS(5693), + [anon_sym_EQ_EQ] = ACTIONS(5695), + [anon_sym_BANG_EQ] = ACTIONS(5695), + [anon_sym_GT] = ACTIONS(5693), + [anon_sym_GT_EQ] = ACTIONS(5695), + [anon_sym_LT_EQ] = ACTIONS(5693), + [anon_sym_LT] = ACTIONS(5693), + [anon_sym_LT_LT] = ACTIONS(5693), + [anon_sym_GT_GT] = ACTIONS(5693), + [anon_sym_SEMI] = ACTIONS(5695), + [anon_sym___attribute__] = ACTIONS(5693), + [anon_sym___attribute] = ACTIONS(5693), + [anon_sym_COLON] = ACTIONS(5695), + [anon_sym_LBRACE] = ACTIONS(5695), + [anon_sym_RBRACE] = ACTIONS(5695), + [anon_sym_LBRACK] = ACTIONS(5695), + [anon_sym_RBRACK] = ACTIONS(5695), + [anon_sym_EQ] = ACTIONS(5693), + [anon_sym_QMARK] = ACTIONS(5695), + [anon_sym_STAR_EQ] = ACTIONS(5695), + [anon_sym_SLASH_EQ] = ACTIONS(5695), + [anon_sym_PERCENT_EQ] = ACTIONS(5695), + [anon_sym_PLUS_EQ] = ACTIONS(5695), + [anon_sym_DASH_EQ] = ACTIONS(5695), + [anon_sym_LT_LT_EQ] = ACTIONS(5695), + [anon_sym_GT_GT_EQ] = ACTIONS(5695), + [anon_sym_AMP_EQ] = ACTIONS(5695), + [anon_sym_CARET_EQ] = ACTIONS(5695), + [anon_sym_PIPE_EQ] = ACTIONS(5695), + [anon_sym_and_eq] = ACTIONS(5693), + [anon_sym_or_eq] = ACTIONS(5693), + [anon_sym_xor_eq] = ACTIONS(5693), + [anon_sym_LT_EQ_GT] = ACTIONS(5695), + [anon_sym_or] = ACTIONS(5693), + [anon_sym_and] = ACTIONS(5693), + [anon_sym_bitor] = ACTIONS(5693), + [anon_sym_xor] = ACTIONS(5693), + [anon_sym_bitand] = ACTIONS(5693), + [anon_sym_not_eq] = ACTIONS(5693), + [anon_sym_DASH_DASH] = ACTIONS(5695), + [anon_sym_PLUS_PLUS] = ACTIONS(5695), + [anon_sym_DOT] = ACTIONS(5693), + [anon_sym_DOT_STAR] = ACTIONS(5695), + [anon_sym_DASH_GT] = ACTIONS(5695), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5693), + [anon_sym_decltype] = ACTIONS(5693), }, - [2256] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2269), - [sym_identifier] = ACTIONS(5932), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5930), - [anon_sym_COMMA] = ACTIONS(5930), - [aux_sym_preproc_if_token2] = ACTIONS(5930), - [aux_sym_preproc_else_token1] = ACTIONS(5930), - [aux_sym_preproc_elif_token1] = ACTIONS(5932), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5930), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5930), - [anon_sym_LPAREN2] = ACTIONS(5930), - [anon_sym_DASH] = ACTIONS(5932), - [anon_sym_PLUS] = ACTIONS(5932), - [anon_sym_STAR] = ACTIONS(5932), - [anon_sym_SLASH] = ACTIONS(5932), - [anon_sym_PERCENT] = ACTIONS(5932), - [anon_sym_PIPE_PIPE] = ACTIONS(5930), - [anon_sym_AMP_AMP] = ACTIONS(5930), - [anon_sym_PIPE] = ACTIONS(5932), - [anon_sym_CARET] = ACTIONS(5932), - [anon_sym_AMP] = ACTIONS(5932), - [anon_sym_EQ_EQ] = ACTIONS(5930), - [anon_sym_BANG_EQ] = ACTIONS(5930), - [anon_sym_GT] = ACTIONS(5932), - [anon_sym_GT_EQ] = ACTIONS(5930), - [anon_sym_LT_EQ] = ACTIONS(5932), - [anon_sym_LT] = ACTIONS(5932), - [anon_sym_LT_LT] = ACTIONS(5932), - [anon_sym_GT_GT] = ACTIONS(5932), - [anon_sym___attribute__] = ACTIONS(5932), - [anon_sym___attribute] = ACTIONS(5932), - [anon_sym_LBRACE] = ACTIONS(5930), - [anon_sym_signed] = ACTIONS(6242), - [anon_sym_unsigned] = ACTIONS(6242), - [anon_sym_long] = ACTIONS(6242), - [anon_sym_short] = ACTIONS(6242), - [anon_sym_LBRACK] = ACTIONS(5930), - [anon_sym_EQ] = ACTIONS(5932), - [anon_sym_QMARK] = ACTIONS(5930), - [anon_sym_STAR_EQ] = ACTIONS(5930), - [anon_sym_SLASH_EQ] = ACTIONS(5930), - [anon_sym_PERCENT_EQ] = ACTIONS(5930), - [anon_sym_PLUS_EQ] = ACTIONS(5930), - [anon_sym_DASH_EQ] = ACTIONS(5930), - [anon_sym_LT_LT_EQ] = ACTIONS(5930), - [anon_sym_GT_GT_EQ] = ACTIONS(5930), - [anon_sym_AMP_EQ] = ACTIONS(5930), - [anon_sym_CARET_EQ] = ACTIONS(5930), - [anon_sym_PIPE_EQ] = ACTIONS(5930), - [anon_sym_and_eq] = ACTIONS(5932), - [anon_sym_or_eq] = ACTIONS(5932), - [anon_sym_xor_eq] = ACTIONS(5932), - [anon_sym_LT_EQ_GT] = ACTIONS(5930), - [anon_sym_or] = ACTIONS(5932), - [anon_sym_and] = ACTIONS(5932), - [anon_sym_bitor] = ACTIONS(5932), - [anon_sym_xor] = ACTIONS(5932), - [anon_sym_bitand] = ACTIONS(5932), - [anon_sym_not_eq] = ACTIONS(5932), - [anon_sym_DASH_DASH] = ACTIONS(5930), - [anon_sym_PLUS_PLUS] = ACTIONS(5930), - [anon_sym_DOT] = ACTIONS(5932), - [anon_sym_DOT_STAR] = ACTIONS(5930), - [anon_sym_DASH_GT] = ACTIONS(5930), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5932), - [anon_sym_decltype] = ACTIONS(5932), + [2333] = { + [sym_string_literal] = STATE(2657), + [sym_template_argument_list] = STATE(3605), + [sym_raw_string_literal] = STATE(2657), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4166), + [anon_sym_COMMA] = ACTIONS(4166), + [anon_sym_LPAREN2] = ACTIONS(4166), + [anon_sym_DASH] = ACTIONS(4174), + [anon_sym_PLUS] = ACTIONS(4174), + [anon_sym_STAR] = ACTIONS(4174), + [anon_sym_SLASH] = ACTIONS(4174), + [anon_sym_PERCENT] = ACTIONS(4174), + [anon_sym_PIPE_PIPE] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4166), + [anon_sym_PIPE] = ACTIONS(4174), + [anon_sym_CARET] = ACTIONS(4174), + [anon_sym_AMP] = ACTIONS(4174), + [anon_sym_EQ_EQ] = ACTIONS(4166), + [anon_sym_BANG_EQ] = ACTIONS(4166), + [anon_sym_GT] = ACTIONS(4174), + [anon_sym_GT_EQ] = ACTIONS(4166), + [anon_sym_LT_EQ] = ACTIONS(4174), + [anon_sym_LT] = ACTIONS(5085), + [anon_sym_LT_LT] = ACTIONS(4174), + [anon_sym_GT_GT] = ACTIONS(4174), + [anon_sym_COLON_COLON] = ACTIONS(4187), + [anon_sym_LBRACE] = ACTIONS(4192), + [anon_sym_LBRACK] = ACTIONS(4166), + [anon_sym_RBRACK] = ACTIONS(4166), + [anon_sym_EQ] = ACTIONS(6178), + [anon_sym_QMARK] = ACTIONS(4166), + [anon_sym_STAR_EQ] = ACTIONS(6128), + [anon_sym_SLASH_EQ] = ACTIONS(6128), + [anon_sym_PERCENT_EQ] = ACTIONS(6128), + [anon_sym_PLUS_EQ] = ACTIONS(6128), + [anon_sym_DASH_EQ] = ACTIONS(6128), + [anon_sym_LT_LT_EQ] = ACTIONS(6128), + [anon_sym_GT_GT_EQ] = ACTIONS(6128), + [anon_sym_AMP_EQ] = ACTIONS(6128), + [anon_sym_CARET_EQ] = ACTIONS(6128), + [anon_sym_PIPE_EQ] = ACTIONS(6128), + [anon_sym_and_eq] = ACTIONS(6128), + [anon_sym_or_eq] = ACTIONS(6128), + [anon_sym_xor_eq] = ACTIONS(6128), + [anon_sym_LT_EQ_GT] = ACTIONS(4166), + [anon_sym_or] = ACTIONS(4174), + [anon_sym_and] = ACTIONS(4174), + [anon_sym_bitor] = ACTIONS(4166), + [anon_sym_xor] = ACTIONS(4174), + [anon_sym_bitand] = ACTIONS(4166), + [anon_sym_not_eq] = ACTIONS(4166), + [anon_sym_DASH_DASH] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4174), + [anon_sym_DOT_STAR] = ACTIONS(4166), + [anon_sym_DASH_GT] = ACTIONS(4166), + [anon_sym_L_DQUOTE] = ACTIONS(3631), + [anon_sym_u_DQUOTE] = ACTIONS(3631), + [anon_sym_U_DQUOTE] = ACTIONS(3631), + [anon_sym_u8_DQUOTE] = ACTIONS(3631), + [anon_sym_DQUOTE] = ACTIONS(3631), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3635), + [anon_sym_LR_DQUOTE] = ACTIONS(3635), + [anon_sym_uR_DQUOTE] = ACTIONS(3635), + [anon_sym_UR_DQUOTE] = ACTIONS(3635), + [anon_sym_u8R_DQUOTE] = ACTIONS(3635), }, - [2257] = { - [sym_identifier] = ACTIONS(5655), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5657), - [anon_sym_COMMA] = ACTIONS(5657), - [anon_sym_RPAREN] = ACTIONS(5657), - [aux_sym_preproc_if_token2] = ACTIONS(5657), - [aux_sym_preproc_else_token1] = ACTIONS(5657), - [aux_sym_preproc_elif_token1] = ACTIONS(5655), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5657), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5657), - [anon_sym_LPAREN2] = ACTIONS(5657), - [anon_sym_DASH] = ACTIONS(5655), - [anon_sym_PLUS] = ACTIONS(5655), - [anon_sym_STAR] = ACTIONS(5655), - [anon_sym_SLASH] = ACTIONS(5655), - [anon_sym_PERCENT] = ACTIONS(5655), - [anon_sym_PIPE_PIPE] = ACTIONS(5657), - [anon_sym_AMP_AMP] = ACTIONS(5657), - [anon_sym_PIPE] = ACTIONS(5655), - [anon_sym_CARET] = ACTIONS(5655), - [anon_sym_AMP] = ACTIONS(5655), - [anon_sym_EQ_EQ] = ACTIONS(5657), - [anon_sym_BANG_EQ] = ACTIONS(5657), - [anon_sym_GT] = ACTIONS(5655), - [anon_sym_GT_EQ] = ACTIONS(5657), - [anon_sym_LT_EQ] = ACTIONS(5655), - [anon_sym_LT] = ACTIONS(5655), - [anon_sym_LT_LT] = ACTIONS(5655), - [anon_sym_GT_GT] = ACTIONS(5655), - [anon_sym_SEMI] = ACTIONS(5657), - [anon_sym___attribute__] = ACTIONS(5655), - [anon_sym___attribute] = ACTIONS(5655), - [anon_sym_COLON] = ACTIONS(5657), - [anon_sym_LBRACE] = ACTIONS(5657), - [anon_sym_RBRACE] = ACTIONS(5657), - [anon_sym_LBRACK] = ACTIONS(5657), - [anon_sym_RBRACK] = ACTIONS(5657), - [anon_sym_EQ] = ACTIONS(5655), - [anon_sym_QMARK] = ACTIONS(5657), - [anon_sym_STAR_EQ] = ACTIONS(5657), - [anon_sym_SLASH_EQ] = ACTIONS(5657), - [anon_sym_PERCENT_EQ] = ACTIONS(5657), - [anon_sym_PLUS_EQ] = ACTIONS(5657), - [anon_sym_DASH_EQ] = ACTIONS(5657), - [anon_sym_LT_LT_EQ] = ACTIONS(5657), - [anon_sym_GT_GT_EQ] = ACTIONS(5657), - [anon_sym_AMP_EQ] = ACTIONS(5657), - [anon_sym_CARET_EQ] = ACTIONS(5657), - [anon_sym_PIPE_EQ] = ACTIONS(5657), - [anon_sym_and_eq] = ACTIONS(5655), - [anon_sym_or_eq] = ACTIONS(5655), - [anon_sym_xor_eq] = ACTIONS(5655), - [anon_sym_LT_EQ_GT] = ACTIONS(5657), - [anon_sym_or] = ACTIONS(5655), - [anon_sym_and] = ACTIONS(5655), - [anon_sym_bitor] = ACTIONS(5655), - [anon_sym_xor] = ACTIONS(5655), - [anon_sym_bitand] = ACTIONS(5655), - [anon_sym_not_eq] = ACTIONS(5655), - [anon_sym_DASH_DASH] = ACTIONS(5657), - [anon_sym_PLUS_PLUS] = ACTIONS(5657), - [anon_sym_DOT] = ACTIONS(5655), - [anon_sym_DOT_STAR] = ACTIONS(5657), - [anon_sym_DASH_GT] = ACTIONS(5657), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5655), - [anon_sym_decltype] = ACTIONS(5655), + [2334] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2334), + [sym_identifier] = ACTIONS(5078), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5080), + [anon_sym_COMMA] = ACTIONS(5080), + [aux_sym_preproc_if_token2] = ACTIONS(5080), + [aux_sym_preproc_else_token1] = ACTIONS(5080), + [aux_sym_preproc_elif_token1] = ACTIONS(5078), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5080), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5080), + [anon_sym_LPAREN2] = ACTIONS(5080), + [anon_sym_DASH] = ACTIONS(5078), + [anon_sym_PLUS] = ACTIONS(5078), + [anon_sym_STAR] = ACTIONS(5078), + [anon_sym_SLASH] = ACTIONS(5078), + [anon_sym_PERCENT] = ACTIONS(5078), + [anon_sym_PIPE_PIPE] = ACTIONS(5080), + [anon_sym_AMP_AMP] = ACTIONS(5080), + [anon_sym_PIPE] = ACTIONS(5078), + [anon_sym_CARET] = ACTIONS(5078), + [anon_sym_AMP] = ACTIONS(5078), + [anon_sym_EQ_EQ] = ACTIONS(5080), + [anon_sym_BANG_EQ] = ACTIONS(5080), + [anon_sym_GT] = ACTIONS(5078), + [anon_sym_GT_EQ] = ACTIONS(5080), + [anon_sym_LT_EQ] = ACTIONS(5078), + [anon_sym_LT] = ACTIONS(5078), + [anon_sym_LT_LT] = ACTIONS(5078), + [anon_sym_GT_GT] = ACTIONS(5078), + [anon_sym___attribute__] = ACTIONS(5078), + [anon_sym___attribute] = ACTIONS(5078), + [anon_sym_LBRACE] = ACTIONS(5080), + [anon_sym_signed] = ACTIONS(6313), + [anon_sym_unsigned] = ACTIONS(6313), + [anon_sym_long] = ACTIONS(6313), + [anon_sym_short] = ACTIONS(6313), + [anon_sym_LBRACK] = ACTIONS(5080), + [anon_sym_EQ] = ACTIONS(5078), + [anon_sym_QMARK] = ACTIONS(5080), + [anon_sym_STAR_EQ] = ACTIONS(5080), + [anon_sym_SLASH_EQ] = ACTIONS(5080), + [anon_sym_PERCENT_EQ] = ACTIONS(5080), + [anon_sym_PLUS_EQ] = ACTIONS(5080), + [anon_sym_DASH_EQ] = ACTIONS(5080), + [anon_sym_LT_LT_EQ] = ACTIONS(5080), + [anon_sym_GT_GT_EQ] = ACTIONS(5080), + [anon_sym_AMP_EQ] = ACTIONS(5080), + [anon_sym_CARET_EQ] = ACTIONS(5080), + [anon_sym_PIPE_EQ] = ACTIONS(5080), + [anon_sym_and_eq] = ACTIONS(5078), + [anon_sym_or_eq] = ACTIONS(5078), + [anon_sym_xor_eq] = ACTIONS(5078), + [anon_sym_LT_EQ_GT] = ACTIONS(5080), + [anon_sym_or] = ACTIONS(5078), + [anon_sym_and] = ACTIONS(5078), + [anon_sym_bitor] = ACTIONS(5078), + [anon_sym_xor] = ACTIONS(5078), + [anon_sym_bitand] = ACTIONS(5078), + [anon_sym_not_eq] = ACTIONS(5078), + [anon_sym_DASH_DASH] = ACTIONS(5080), + [anon_sym_PLUS_PLUS] = ACTIONS(5080), + [anon_sym_DOT] = ACTIONS(5078), + [anon_sym_DOT_STAR] = ACTIONS(5080), + [anon_sym_DASH_GT] = ACTIONS(5080), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5078), + [anon_sym_decltype] = ACTIONS(5078), }, - [2258] = { - [sym_identifier] = ACTIONS(5659), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5661), - [anon_sym_COMMA] = ACTIONS(5661), - [anon_sym_RPAREN] = ACTIONS(5661), - [aux_sym_preproc_if_token2] = ACTIONS(5661), - [aux_sym_preproc_else_token1] = ACTIONS(5661), - [aux_sym_preproc_elif_token1] = ACTIONS(5659), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5661), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5661), - [anon_sym_LPAREN2] = ACTIONS(5661), - [anon_sym_DASH] = ACTIONS(5659), - [anon_sym_PLUS] = ACTIONS(5659), - [anon_sym_STAR] = ACTIONS(5659), - [anon_sym_SLASH] = ACTIONS(5659), - [anon_sym_PERCENT] = ACTIONS(5659), - [anon_sym_PIPE_PIPE] = ACTIONS(5661), - [anon_sym_AMP_AMP] = ACTIONS(5661), - [anon_sym_PIPE] = ACTIONS(5659), - [anon_sym_CARET] = ACTIONS(5659), - [anon_sym_AMP] = ACTIONS(5659), - [anon_sym_EQ_EQ] = ACTIONS(5661), - [anon_sym_BANG_EQ] = ACTIONS(5661), - [anon_sym_GT] = ACTIONS(5659), - [anon_sym_GT_EQ] = ACTIONS(5661), - [anon_sym_LT_EQ] = ACTIONS(5659), - [anon_sym_LT] = ACTIONS(5659), - [anon_sym_LT_LT] = ACTIONS(5659), - [anon_sym_GT_GT] = ACTIONS(5659), - [anon_sym_SEMI] = ACTIONS(5661), - [anon_sym___attribute__] = ACTIONS(5659), - [anon_sym___attribute] = ACTIONS(5659), - [anon_sym_COLON] = ACTIONS(5661), - [anon_sym_LBRACE] = ACTIONS(5661), - [anon_sym_RBRACE] = ACTIONS(5661), - [anon_sym_LBRACK] = ACTIONS(5661), - [anon_sym_RBRACK] = ACTIONS(5661), - [anon_sym_EQ] = ACTIONS(5659), - [anon_sym_QMARK] = ACTIONS(5661), - [anon_sym_STAR_EQ] = ACTIONS(5661), - [anon_sym_SLASH_EQ] = ACTIONS(5661), - [anon_sym_PERCENT_EQ] = ACTIONS(5661), - [anon_sym_PLUS_EQ] = ACTIONS(5661), - [anon_sym_DASH_EQ] = ACTIONS(5661), - [anon_sym_LT_LT_EQ] = ACTIONS(5661), - [anon_sym_GT_GT_EQ] = ACTIONS(5661), - [anon_sym_AMP_EQ] = ACTIONS(5661), - [anon_sym_CARET_EQ] = ACTIONS(5661), - [anon_sym_PIPE_EQ] = ACTIONS(5661), - [anon_sym_and_eq] = ACTIONS(5659), - [anon_sym_or_eq] = ACTIONS(5659), - [anon_sym_xor_eq] = ACTIONS(5659), - [anon_sym_LT_EQ_GT] = ACTIONS(5661), - [anon_sym_or] = ACTIONS(5659), - [anon_sym_and] = ACTIONS(5659), - [anon_sym_bitor] = ACTIONS(5659), - [anon_sym_xor] = ACTIONS(5659), - [anon_sym_bitand] = ACTIONS(5659), - [anon_sym_not_eq] = ACTIONS(5659), - [anon_sym_DASH_DASH] = ACTIONS(5661), - [anon_sym_PLUS_PLUS] = ACTIONS(5661), - [anon_sym_DOT] = ACTIONS(5659), - [anon_sym_DOT_STAR] = ACTIONS(5661), - [anon_sym_DASH_GT] = ACTIONS(5661), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5659), - [anon_sym_decltype] = ACTIONS(5659), + [2335] = { + [sym_identifier] = ACTIONS(5515), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5517), + [anon_sym_COMMA] = ACTIONS(5517), + [anon_sym_RPAREN] = ACTIONS(5517), + [aux_sym_preproc_if_token2] = ACTIONS(5517), + [aux_sym_preproc_else_token1] = ACTIONS(5517), + [aux_sym_preproc_elif_token1] = ACTIONS(5515), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5517), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5517), + [anon_sym_LPAREN2] = ACTIONS(5517), + [anon_sym_DASH] = ACTIONS(5515), + [anon_sym_PLUS] = ACTIONS(5515), + [anon_sym_STAR] = ACTIONS(5515), + [anon_sym_SLASH] = ACTIONS(5515), + [anon_sym_PERCENT] = ACTIONS(5515), + [anon_sym_PIPE_PIPE] = ACTIONS(5517), + [anon_sym_AMP_AMP] = ACTIONS(5517), + [anon_sym_PIPE] = ACTIONS(5515), + [anon_sym_CARET] = ACTIONS(5515), + [anon_sym_AMP] = ACTIONS(5515), + [anon_sym_EQ_EQ] = ACTIONS(5517), + [anon_sym_BANG_EQ] = ACTIONS(5517), + [anon_sym_GT] = ACTIONS(5515), + [anon_sym_GT_EQ] = ACTIONS(5517), + [anon_sym_LT_EQ] = ACTIONS(5515), + [anon_sym_LT] = ACTIONS(5515), + [anon_sym_LT_LT] = ACTIONS(5515), + [anon_sym_GT_GT] = ACTIONS(5515), + [anon_sym_SEMI] = ACTIONS(5517), + [anon_sym___attribute__] = ACTIONS(5515), + [anon_sym___attribute] = ACTIONS(5515), + [anon_sym_COLON] = ACTIONS(5517), + [anon_sym_LBRACE] = ACTIONS(5517), + [anon_sym_RBRACE] = ACTIONS(5517), + [anon_sym_LBRACK] = ACTIONS(5517), + [anon_sym_RBRACK] = ACTIONS(5517), + [anon_sym_EQ] = ACTIONS(5515), + [anon_sym_QMARK] = ACTIONS(5517), + [anon_sym_STAR_EQ] = ACTIONS(5517), + [anon_sym_SLASH_EQ] = ACTIONS(5517), + [anon_sym_PERCENT_EQ] = ACTIONS(5517), + [anon_sym_PLUS_EQ] = ACTIONS(5517), + [anon_sym_DASH_EQ] = ACTIONS(5517), + [anon_sym_LT_LT_EQ] = ACTIONS(5517), + [anon_sym_GT_GT_EQ] = ACTIONS(5517), + [anon_sym_AMP_EQ] = ACTIONS(5517), + [anon_sym_CARET_EQ] = ACTIONS(5517), + [anon_sym_PIPE_EQ] = ACTIONS(5517), + [anon_sym_and_eq] = ACTIONS(5515), + [anon_sym_or_eq] = ACTIONS(5515), + [anon_sym_xor_eq] = ACTIONS(5515), + [anon_sym_LT_EQ_GT] = ACTIONS(5517), + [anon_sym_or] = ACTIONS(5515), + [anon_sym_and] = ACTIONS(5515), + [anon_sym_bitor] = ACTIONS(5515), + [anon_sym_xor] = ACTIONS(5515), + [anon_sym_bitand] = ACTIONS(5515), + [anon_sym_not_eq] = ACTIONS(5515), + [anon_sym_DASH_DASH] = ACTIONS(5517), + [anon_sym_PLUS_PLUS] = ACTIONS(5517), + [anon_sym_DOT] = ACTIONS(5515), + [anon_sym_DOT_STAR] = ACTIONS(5517), + [anon_sym_DASH_GT] = ACTIONS(5517), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5515), + [anon_sym_decltype] = ACTIONS(5515), }, - [2259] = { - [sym_identifier] = ACTIONS(4988), - [anon_sym_LPAREN2] = ACTIONS(4990), - [anon_sym_TILDE] = ACTIONS(4990), - [anon_sym_STAR] = ACTIONS(4990), - [anon_sym_PIPE_PIPE] = ACTIONS(4990), - [anon_sym_AMP_AMP] = ACTIONS(4990), - [anon_sym_AMP] = ACTIONS(4988), - [anon_sym___extension__] = ACTIONS(4988), - [anon_sym_virtual] = ACTIONS(4988), - [anon_sym_extern] = ACTIONS(4988), - [anon_sym___attribute__] = ACTIONS(4988), - [anon_sym___attribute] = ACTIONS(4988), - [anon_sym_using] = ACTIONS(4988), - [anon_sym_COLON_COLON] = ACTIONS(4990), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4990), - [anon_sym___declspec] = ACTIONS(4988), - [anon_sym___based] = ACTIONS(4988), - [anon_sym___cdecl] = ACTIONS(4988), - [anon_sym___clrcall] = ACTIONS(4988), - [anon_sym___stdcall] = ACTIONS(4988), - [anon_sym___fastcall] = ACTIONS(4988), - [anon_sym___thiscall] = ACTIONS(4988), - [anon_sym___vectorcall] = ACTIONS(4988), - [anon_sym_signed] = ACTIONS(4988), - [anon_sym_unsigned] = ACTIONS(4988), - [anon_sym_long] = ACTIONS(4988), - [anon_sym_short] = ACTIONS(4988), - [anon_sym_LBRACK] = ACTIONS(4988), - [anon_sym_static] = ACTIONS(4988), - [anon_sym_register] = ACTIONS(4988), - [anon_sym_inline] = ACTIONS(4988), - [anon_sym___inline] = ACTIONS(4988), - [anon_sym___inline__] = ACTIONS(4988), - [anon_sym___forceinline] = ACTIONS(4988), - [anon_sym_thread_local] = ACTIONS(4988), - [anon_sym___thread] = ACTIONS(4988), - [anon_sym_const] = ACTIONS(4988), - [anon_sym_constexpr] = ACTIONS(4988), - [anon_sym_volatile] = ACTIONS(4988), - [anon_sym_restrict] = ACTIONS(4988), - [anon_sym___restrict__] = ACTIONS(4988), - [anon_sym__Atomic] = ACTIONS(4988), - [anon_sym__Noreturn] = ACTIONS(4988), - [anon_sym_noreturn] = ACTIONS(4988), - [anon_sym__Nonnull] = ACTIONS(4988), - [anon_sym_mutable] = ACTIONS(4988), - [anon_sym_constinit] = ACTIONS(4988), - [anon_sym_consteval] = ACTIONS(4988), - [anon_sym_alignas] = ACTIONS(4988), - [anon_sym__Alignas] = ACTIONS(4988), - [sym_primitive_type] = ACTIONS(4988), - [anon_sym_enum] = ACTIONS(4988), - [anon_sym_class] = ACTIONS(4988), - [anon_sym_struct] = ACTIONS(4988), - [anon_sym_union] = ACTIONS(4988), - [anon_sym_or] = ACTIONS(4988), - [anon_sym_and] = ACTIONS(4988), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4988), - [anon_sym_decltype] = ACTIONS(4988), - [anon_sym_explicit] = ACTIONS(4988), - [anon_sym_typename] = ACTIONS(4988), - [anon_sym_template] = ACTIONS(4988), - [anon_sym_operator] = ACTIONS(4988), - [anon_sym_friend] = ACTIONS(4988), - [anon_sym_concept] = ACTIONS(4988), + [2336] = { + [sym_identifier] = ACTIONS(5716), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5718), + [anon_sym_COMMA] = ACTIONS(5718), + [anon_sym_RPAREN] = ACTIONS(5718), + [aux_sym_preproc_if_token2] = ACTIONS(5718), + [aux_sym_preproc_else_token1] = ACTIONS(5718), + [aux_sym_preproc_elif_token1] = ACTIONS(5716), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5718), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5718), + [anon_sym_LPAREN2] = ACTIONS(5718), + [anon_sym_DASH] = ACTIONS(5716), + [anon_sym_PLUS] = ACTIONS(5716), + [anon_sym_STAR] = ACTIONS(5716), + [anon_sym_SLASH] = ACTIONS(5716), + [anon_sym_PERCENT] = ACTIONS(5716), + [anon_sym_PIPE_PIPE] = ACTIONS(5718), + [anon_sym_AMP_AMP] = ACTIONS(5718), + [anon_sym_PIPE] = ACTIONS(5716), + [anon_sym_CARET] = ACTIONS(5716), + [anon_sym_AMP] = ACTIONS(5716), + [anon_sym_EQ_EQ] = ACTIONS(5718), + [anon_sym_BANG_EQ] = ACTIONS(5718), + [anon_sym_GT] = ACTIONS(5716), + [anon_sym_GT_EQ] = ACTIONS(5718), + [anon_sym_LT_EQ] = ACTIONS(5716), + [anon_sym_LT] = ACTIONS(5716), + [anon_sym_LT_LT] = ACTIONS(5716), + [anon_sym_GT_GT] = ACTIONS(5716), + [anon_sym_SEMI] = ACTIONS(5718), + [anon_sym___attribute__] = ACTIONS(5716), + [anon_sym___attribute] = ACTIONS(5716), + [anon_sym_COLON] = ACTIONS(5718), + [anon_sym_LBRACE] = ACTIONS(5718), + [anon_sym_RBRACE] = ACTIONS(5718), + [anon_sym_LBRACK] = ACTIONS(5718), + [anon_sym_RBRACK] = ACTIONS(5718), + [anon_sym_EQ] = ACTIONS(5716), + [anon_sym_QMARK] = ACTIONS(5718), + [anon_sym_STAR_EQ] = ACTIONS(5718), + [anon_sym_SLASH_EQ] = ACTIONS(5718), + [anon_sym_PERCENT_EQ] = ACTIONS(5718), + [anon_sym_PLUS_EQ] = ACTIONS(5718), + [anon_sym_DASH_EQ] = ACTIONS(5718), + [anon_sym_LT_LT_EQ] = ACTIONS(5718), + [anon_sym_GT_GT_EQ] = ACTIONS(5718), + [anon_sym_AMP_EQ] = ACTIONS(5718), + [anon_sym_CARET_EQ] = ACTIONS(5718), + [anon_sym_PIPE_EQ] = ACTIONS(5718), + [anon_sym_and_eq] = ACTIONS(5716), + [anon_sym_or_eq] = ACTIONS(5716), + [anon_sym_xor_eq] = ACTIONS(5716), + [anon_sym_LT_EQ_GT] = ACTIONS(5718), + [anon_sym_or] = ACTIONS(5716), + [anon_sym_and] = ACTIONS(5716), + [anon_sym_bitor] = ACTIONS(5716), + [anon_sym_xor] = ACTIONS(5716), + [anon_sym_bitand] = ACTIONS(5716), + [anon_sym_not_eq] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5718), + [anon_sym_PLUS_PLUS] = ACTIONS(5718), + [anon_sym_DOT] = ACTIONS(5716), + [anon_sym_DOT_STAR] = ACTIONS(5718), + [anon_sym_DASH_GT] = ACTIONS(5718), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5716), + [anon_sym_decltype] = ACTIONS(5716), }, - [2260] = { - [sym_identifier] = ACTIONS(5625), - [anon_sym_LPAREN2] = ACTIONS(5627), - [anon_sym_TILDE] = ACTIONS(5627), - [anon_sym_STAR] = ACTIONS(5627), - [anon_sym_PIPE_PIPE] = ACTIONS(5627), - [anon_sym_AMP_AMP] = ACTIONS(5627), - [anon_sym_AMP] = ACTIONS(5625), - [anon_sym___extension__] = ACTIONS(5625), - [anon_sym_virtual] = ACTIONS(5625), - [anon_sym_extern] = ACTIONS(5625), - [anon_sym___attribute__] = ACTIONS(5625), - [anon_sym___attribute] = ACTIONS(5625), - [anon_sym_using] = ACTIONS(5625), - [anon_sym_COLON_COLON] = ACTIONS(5454), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5627), - [anon_sym___declspec] = ACTIONS(5625), - [anon_sym___based] = ACTIONS(5625), - [anon_sym___cdecl] = ACTIONS(5625), - [anon_sym___clrcall] = ACTIONS(5625), - [anon_sym___stdcall] = ACTIONS(5625), - [anon_sym___fastcall] = ACTIONS(5625), - [anon_sym___thiscall] = ACTIONS(5625), - [anon_sym___vectorcall] = ACTIONS(5625), - [anon_sym_signed] = ACTIONS(5625), - [anon_sym_unsigned] = ACTIONS(5625), - [anon_sym_long] = ACTIONS(5625), - [anon_sym_short] = ACTIONS(5625), - [anon_sym_LBRACK] = ACTIONS(5625), - [anon_sym_static] = ACTIONS(5625), - [anon_sym_register] = ACTIONS(5625), - [anon_sym_inline] = ACTIONS(5625), - [anon_sym___inline] = ACTIONS(5625), - [anon_sym___inline__] = ACTIONS(5625), - [anon_sym___forceinline] = ACTIONS(5625), - [anon_sym_thread_local] = ACTIONS(5625), - [anon_sym___thread] = ACTIONS(5625), - [anon_sym_const] = ACTIONS(5625), - [anon_sym_constexpr] = ACTIONS(5625), - [anon_sym_volatile] = ACTIONS(5625), - [anon_sym_restrict] = ACTIONS(5625), - [anon_sym___restrict__] = ACTIONS(5625), - [anon_sym__Atomic] = ACTIONS(5625), - [anon_sym__Noreturn] = ACTIONS(5625), - [anon_sym_noreturn] = ACTIONS(5625), - [anon_sym__Nonnull] = ACTIONS(5625), - [anon_sym_mutable] = ACTIONS(5625), - [anon_sym_constinit] = ACTIONS(5625), - [anon_sym_consteval] = ACTIONS(5625), - [anon_sym_alignas] = ACTIONS(5625), - [anon_sym__Alignas] = ACTIONS(5625), - [sym_primitive_type] = ACTIONS(5625), - [anon_sym_enum] = ACTIONS(5625), - [anon_sym_class] = ACTIONS(5625), - [anon_sym_struct] = ACTIONS(5625), - [anon_sym_union] = ACTIONS(5625), - [anon_sym_or] = ACTIONS(5625), - [anon_sym_and] = ACTIONS(5625), + [2337] = { + [sym_identifier] = ACTIONS(5681), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5683), + [anon_sym_COMMA] = ACTIONS(5683), + [anon_sym_RPAREN] = ACTIONS(5683), + [aux_sym_preproc_if_token2] = ACTIONS(5683), + [aux_sym_preproc_else_token1] = ACTIONS(5683), + [aux_sym_preproc_elif_token1] = ACTIONS(5681), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5683), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5683), + [anon_sym_LPAREN2] = ACTIONS(5683), + [anon_sym_DASH] = ACTIONS(5681), + [anon_sym_PLUS] = ACTIONS(5681), + [anon_sym_STAR] = ACTIONS(5681), + [anon_sym_SLASH] = ACTIONS(5681), + [anon_sym_PERCENT] = ACTIONS(5681), + [anon_sym_PIPE_PIPE] = ACTIONS(5683), + [anon_sym_AMP_AMP] = ACTIONS(5683), + [anon_sym_PIPE] = ACTIONS(5681), + [anon_sym_CARET] = ACTIONS(5681), + [anon_sym_AMP] = ACTIONS(5681), + [anon_sym_EQ_EQ] = ACTIONS(5683), + [anon_sym_BANG_EQ] = ACTIONS(5683), + [anon_sym_GT] = ACTIONS(5681), + [anon_sym_GT_EQ] = ACTIONS(5683), + [anon_sym_LT_EQ] = ACTIONS(5681), + [anon_sym_LT] = ACTIONS(5681), + [anon_sym_LT_LT] = ACTIONS(5681), + [anon_sym_GT_GT] = ACTIONS(5681), + [anon_sym_SEMI] = ACTIONS(5683), + [anon_sym___attribute__] = ACTIONS(5681), + [anon_sym___attribute] = ACTIONS(5681), + [anon_sym_COLON] = ACTIONS(5683), + [anon_sym_LBRACE] = ACTIONS(5683), + [anon_sym_RBRACE] = ACTIONS(5683), + [anon_sym_LBRACK] = ACTIONS(5683), + [anon_sym_RBRACK] = ACTIONS(5683), + [anon_sym_EQ] = ACTIONS(5681), + [anon_sym_QMARK] = ACTIONS(5683), + [anon_sym_STAR_EQ] = ACTIONS(5683), + [anon_sym_SLASH_EQ] = ACTIONS(5683), + [anon_sym_PERCENT_EQ] = ACTIONS(5683), + [anon_sym_PLUS_EQ] = ACTIONS(5683), + [anon_sym_DASH_EQ] = ACTIONS(5683), + [anon_sym_LT_LT_EQ] = ACTIONS(5683), + [anon_sym_GT_GT_EQ] = ACTIONS(5683), + [anon_sym_AMP_EQ] = ACTIONS(5683), + [anon_sym_CARET_EQ] = ACTIONS(5683), + [anon_sym_PIPE_EQ] = ACTIONS(5683), + [anon_sym_and_eq] = ACTIONS(5681), + [anon_sym_or_eq] = ACTIONS(5681), + [anon_sym_xor_eq] = ACTIONS(5681), + [anon_sym_LT_EQ_GT] = ACTIONS(5683), + [anon_sym_or] = ACTIONS(5681), + [anon_sym_and] = ACTIONS(5681), + [anon_sym_bitor] = ACTIONS(5681), + [anon_sym_xor] = ACTIONS(5681), + [anon_sym_bitand] = ACTIONS(5681), + [anon_sym_not_eq] = ACTIONS(5681), + [anon_sym_DASH_DASH] = ACTIONS(5683), + [anon_sym_PLUS_PLUS] = ACTIONS(5683), + [anon_sym_DOT] = ACTIONS(5681), + [anon_sym_DOT_STAR] = ACTIONS(5683), + [anon_sym_DASH_GT] = ACTIONS(5683), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5625), - [anon_sym_decltype] = ACTIONS(5625), - [anon_sym_explicit] = ACTIONS(5625), - [anon_sym_typename] = ACTIONS(5625), - [anon_sym_template] = ACTIONS(5625), - [anon_sym_operator] = ACTIONS(5625), - [anon_sym_friend] = ACTIONS(5625), - [anon_sym_concept] = ACTIONS(5625), - }, - [2261] = { - [sym_identifier] = ACTIONS(5673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5675), - [anon_sym_COMMA] = ACTIONS(5675), - [anon_sym_RPAREN] = ACTIONS(5675), - [aux_sym_preproc_if_token2] = ACTIONS(5675), - [aux_sym_preproc_else_token1] = ACTIONS(5675), - [aux_sym_preproc_elif_token1] = ACTIONS(5673), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5675), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5675), - [anon_sym_LPAREN2] = ACTIONS(5675), - [anon_sym_DASH] = ACTIONS(5673), - [anon_sym_PLUS] = ACTIONS(5673), - [anon_sym_STAR] = ACTIONS(5673), - [anon_sym_SLASH] = ACTIONS(5673), - [anon_sym_PERCENT] = ACTIONS(5673), - [anon_sym_PIPE_PIPE] = ACTIONS(5675), - [anon_sym_AMP_AMP] = ACTIONS(5675), - [anon_sym_PIPE] = ACTIONS(5673), - [anon_sym_CARET] = ACTIONS(5673), - [anon_sym_AMP] = ACTIONS(5673), - [anon_sym_EQ_EQ] = ACTIONS(5675), - [anon_sym_BANG_EQ] = ACTIONS(5675), - [anon_sym_GT] = ACTIONS(5673), - [anon_sym_GT_EQ] = ACTIONS(5675), - [anon_sym_LT_EQ] = ACTIONS(5673), - [anon_sym_LT] = ACTIONS(5673), - [anon_sym_LT_LT] = ACTIONS(5673), - [anon_sym_GT_GT] = ACTIONS(5673), - [anon_sym_SEMI] = ACTIONS(5675), - [anon_sym___attribute__] = ACTIONS(5673), - [anon_sym___attribute] = ACTIONS(5673), - [anon_sym_COLON] = ACTIONS(5675), - [anon_sym_LBRACE] = ACTIONS(5675), - [anon_sym_RBRACE] = ACTIONS(5675), - [anon_sym_LBRACK] = ACTIONS(5675), - [anon_sym_RBRACK] = ACTIONS(5675), - [anon_sym_EQ] = ACTIONS(5673), - [anon_sym_QMARK] = ACTIONS(5675), - [anon_sym_STAR_EQ] = ACTIONS(5675), - [anon_sym_SLASH_EQ] = ACTIONS(5675), - [anon_sym_PERCENT_EQ] = ACTIONS(5675), - [anon_sym_PLUS_EQ] = ACTIONS(5675), - [anon_sym_DASH_EQ] = ACTIONS(5675), - [anon_sym_LT_LT_EQ] = ACTIONS(5675), - [anon_sym_GT_GT_EQ] = ACTIONS(5675), - [anon_sym_AMP_EQ] = ACTIONS(5675), - [anon_sym_CARET_EQ] = ACTIONS(5675), - [anon_sym_PIPE_EQ] = ACTIONS(5675), - [anon_sym_and_eq] = ACTIONS(5673), - [anon_sym_or_eq] = ACTIONS(5673), - [anon_sym_xor_eq] = ACTIONS(5673), - [anon_sym_LT_EQ_GT] = ACTIONS(5675), - [anon_sym_or] = ACTIONS(5673), - [anon_sym_and] = ACTIONS(5673), - [anon_sym_bitor] = ACTIONS(5673), - [anon_sym_xor] = ACTIONS(5673), - [anon_sym_bitand] = ACTIONS(5673), - [anon_sym_not_eq] = ACTIONS(5673), - [anon_sym_DASH_DASH] = ACTIONS(5675), - [anon_sym_PLUS_PLUS] = ACTIONS(5675), - [anon_sym_DOT] = ACTIONS(5673), - [anon_sym_DOT_STAR] = ACTIONS(5675), - [anon_sym_DASH_GT] = ACTIONS(5675), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5673), - [anon_sym_decltype] = ACTIONS(5673), + [sym_auto] = ACTIONS(5681), + [anon_sym_decltype] = ACTIONS(5681), }, - [2262] = { - [sym_identifier] = ACTIONS(5677), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5679), - [anon_sym_COMMA] = ACTIONS(5679), - [anon_sym_RPAREN] = ACTIONS(5679), - [aux_sym_preproc_if_token2] = ACTIONS(5679), - [aux_sym_preproc_else_token1] = ACTIONS(5679), - [aux_sym_preproc_elif_token1] = ACTIONS(5677), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5679), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5679), - [anon_sym_LPAREN2] = ACTIONS(5679), - [anon_sym_DASH] = ACTIONS(5677), - [anon_sym_PLUS] = ACTIONS(5677), - [anon_sym_STAR] = ACTIONS(5677), - [anon_sym_SLASH] = ACTIONS(5677), - [anon_sym_PERCENT] = ACTIONS(5677), - [anon_sym_PIPE_PIPE] = ACTIONS(5679), - [anon_sym_AMP_AMP] = ACTIONS(5679), - [anon_sym_PIPE] = ACTIONS(5677), - [anon_sym_CARET] = ACTIONS(5677), - [anon_sym_AMP] = ACTIONS(5677), - [anon_sym_EQ_EQ] = ACTIONS(5679), - [anon_sym_BANG_EQ] = ACTIONS(5679), - [anon_sym_GT] = ACTIONS(5677), - [anon_sym_GT_EQ] = ACTIONS(5679), - [anon_sym_LT_EQ] = ACTIONS(5677), - [anon_sym_LT] = ACTIONS(5677), - [anon_sym_LT_LT] = ACTIONS(5677), - [anon_sym_GT_GT] = ACTIONS(5677), - [anon_sym_SEMI] = ACTIONS(5679), - [anon_sym___attribute__] = ACTIONS(5677), - [anon_sym___attribute] = ACTIONS(5677), - [anon_sym_COLON] = ACTIONS(5679), - [anon_sym_LBRACE] = ACTIONS(5679), - [anon_sym_RBRACE] = ACTIONS(5679), - [anon_sym_LBRACK] = ACTIONS(5679), - [anon_sym_RBRACK] = ACTIONS(5679), - [anon_sym_EQ] = ACTIONS(5677), - [anon_sym_QMARK] = ACTIONS(5679), - [anon_sym_STAR_EQ] = ACTIONS(5679), - [anon_sym_SLASH_EQ] = ACTIONS(5679), - [anon_sym_PERCENT_EQ] = ACTIONS(5679), - [anon_sym_PLUS_EQ] = ACTIONS(5679), - [anon_sym_DASH_EQ] = ACTIONS(5679), - [anon_sym_LT_LT_EQ] = ACTIONS(5679), - [anon_sym_GT_GT_EQ] = ACTIONS(5679), - [anon_sym_AMP_EQ] = ACTIONS(5679), - [anon_sym_CARET_EQ] = ACTIONS(5679), - [anon_sym_PIPE_EQ] = ACTIONS(5679), - [anon_sym_and_eq] = ACTIONS(5677), - [anon_sym_or_eq] = ACTIONS(5677), - [anon_sym_xor_eq] = ACTIONS(5677), - [anon_sym_LT_EQ_GT] = ACTIONS(5679), - [anon_sym_or] = ACTIONS(5677), - [anon_sym_and] = ACTIONS(5677), - [anon_sym_bitor] = ACTIONS(5677), - [anon_sym_xor] = ACTIONS(5677), - [anon_sym_bitand] = ACTIONS(5677), - [anon_sym_not_eq] = ACTIONS(5677), - [anon_sym_DASH_DASH] = ACTIONS(5679), - [anon_sym_PLUS_PLUS] = ACTIONS(5679), - [anon_sym_DOT] = ACTIONS(5677), - [anon_sym_DOT_STAR] = ACTIONS(5679), - [anon_sym_DASH_GT] = ACTIONS(5679), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5677), - [anon_sym_decltype] = ACTIONS(5677), + [2338] = { + [sym_identifier] = ACTIONS(5792), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5794), + [anon_sym_COMMA] = ACTIONS(5794), + [anon_sym_RPAREN] = ACTIONS(5794), + [aux_sym_preproc_if_token2] = ACTIONS(5794), + [aux_sym_preproc_else_token1] = ACTIONS(5794), + [aux_sym_preproc_elif_token1] = ACTIONS(5792), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5794), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5794), + [anon_sym_LPAREN2] = ACTIONS(5794), + [anon_sym_DASH] = ACTIONS(5792), + [anon_sym_PLUS] = ACTIONS(5792), + [anon_sym_STAR] = ACTIONS(5792), + [anon_sym_SLASH] = ACTIONS(5792), + [anon_sym_PERCENT] = ACTIONS(5792), + [anon_sym_PIPE_PIPE] = ACTIONS(5794), + [anon_sym_AMP_AMP] = ACTIONS(5794), + [anon_sym_PIPE] = ACTIONS(5792), + [anon_sym_CARET] = ACTIONS(5792), + [anon_sym_AMP] = ACTIONS(5792), + [anon_sym_EQ_EQ] = ACTIONS(5794), + [anon_sym_BANG_EQ] = ACTIONS(5794), + [anon_sym_GT] = ACTIONS(5792), + [anon_sym_GT_EQ] = ACTIONS(5794), + [anon_sym_LT_EQ] = ACTIONS(5792), + [anon_sym_LT] = ACTIONS(5792), + [anon_sym_LT_LT] = ACTIONS(5792), + [anon_sym_GT_GT] = ACTIONS(5792), + [anon_sym_SEMI] = ACTIONS(5794), + [anon_sym___attribute__] = ACTIONS(5792), + [anon_sym___attribute] = ACTIONS(5792), + [anon_sym_COLON] = ACTIONS(5794), + [anon_sym_LBRACE] = ACTIONS(5794), + [anon_sym_RBRACE] = ACTIONS(5794), + [anon_sym_LBRACK] = ACTIONS(5794), + [anon_sym_RBRACK] = ACTIONS(5794), + [anon_sym_EQ] = ACTIONS(5792), + [anon_sym_QMARK] = ACTIONS(5794), + [anon_sym_STAR_EQ] = ACTIONS(5794), + [anon_sym_SLASH_EQ] = ACTIONS(5794), + [anon_sym_PERCENT_EQ] = ACTIONS(5794), + [anon_sym_PLUS_EQ] = ACTIONS(5794), + [anon_sym_DASH_EQ] = ACTIONS(5794), + [anon_sym_LT_LT_EQ] = ACTIONS(5794), + [anon_sym_GT_GT_EQ] = ACTIONS(5794), + [anon_sym_AMP_EQ] = ACTIONS(5794), + [anon_sym_CARET_EQ] = ACTIONS(5794), + [anon_sym_PIPE_EQ] = ACTIONS(5794), + [anon_sym_and_eq] = ACTIONS(5792), + [anon_sym_or_eq] = ACTIONS(5792), + [anon_sym_xor_eq] = ACTIONS(5792), + [anon_sym_LT_EQ_GT] = ACTIONS(5794), + [anon_sym_or] = ACTIONS(5792), + [anon_sym_and] = ACTIONS(5792), + [anon_sym_bitor] = ACTIONS(5792), + [anon_sym_xor] = ACTIONS(5792), + [anon_sym_bitand] = ACTIONS(5792), + [anon_sym_not_eq] = ACTIONS(5792), + [anon_sym_DASH_DASH] = ACTIONS(5794), + [anon_sym_PLUS_PLUS] = ACTIONS(5794), + [anon_sym_DOT] = ACTIONS(5792), + [anon_sym_DOT_STAR] = ACTIONS(5794), + [anon_sym_DASH_GT] = ACTIONS(5794), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5792), + [anon_sym_decltype] = ACTIONS(5792), }, - [2263] = { + [2339] = { [sym_identifier] = ACTIONS(5685), [anon_sym_DOT_DOT_DOT] = ACTIONS(5687), [anon_sym_COMMA] = ACTIONS(5687), @@ -287160,3958 +294081,1433 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ_GT] = ACTIONS(5687), [anon_sym_or] = ACTIONS(5685), [anon_sym_and] = ACTIONS(5685), - [anon_sym_bitor] = ACTIONS(5685), - [anon_sym_xor] = ACTIONS(5685), - [anon_sym_bitand] = ACTIONS(5685), - [anon_sym_not_eq] = ACTIONS(5685), - [anon_sym_DASH_DASH] = ACTIONS(5687), - [anon_sym_PLUS_PLUS] = ACTIONS(5687), - [anon_sym_DOT] = ACTIONS(5685), - [anon_sym_DOT_STAR] = ACTIONS(5687), - [anon_sym_DASH_GT] = ACTIONS(5687), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5685), - [anon_sym_decltype] = ACTIONS(5685), - }, - [2264] = { - [sym_identifier] = ACTIONS(5692), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5694), - [anon_sym_COMMA] = ACTIONS(5694), - [anon_sym_RPAREN] = ACTIONS(5694), - [aux_sym_preproc_if_token2] = ACTIONS(5694), - [aux_sym_preproc_else_token1] = ACTIONS(5694), - [aux_sym_preproc_elif_token1] = ACTIONS(5692), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5694), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5694), - [anon_sym_LPAREN2] = ACTIONS(5694), - [anon_sym_DASH] = ACTIONS(5692), - [anon_sym_PLUS] = ACTIONS(5692), - [anon_sym_STAR] = ACTIONS(5692), - [anon_sym_SLASH] = ACTIONS(5692), - [anon_sym_PERCENT] = ACTIONS(5692), - [anon_sym_PIPE_PIPE] = ACTIONS(5694), - [anon_sym_AMP_AMP] = ACTIONS(5694), - [anon_sym_PIPE] = ACTIONS(5692), - [anon_sym_CARET] = ACTIONS(5692), - [anon_sym_AMP] = ACTIONS(5692), - [anon_sym_EQ_EQ] = ACTIONS(5694), - [anon_sym_BANG_EQ] = ACTIONS(5694), - [anon_sym_GT] = ACTIONS(5692), - [anon_sym_GT_EQ] = ACTIONS(5694), - [anon_sym_LT_EQ] = ACTIONS(5692), - [anon_sym_LT] = ACTIONS(5692), - [anon_sym_LT_LT] = ACTIONS(5692), - [anon_sym_GT_GT] = ACTIONS(5692), - [anon_sym_SEMI] = ACTIONS(5694), - [anon_sym___attribute__] = ACTIONS(5692), - [anon_sym___attribute] = ACTIONS(5692), - [anon_sym_COLON] = ACTIONS(5694), - [anon_sym_LBRACE] = ACTIONS(5694), - [anon_sym_RBRACE] = ACTIONS(5694), - [anon_sym_LBRACK] = ACTIONS(5694), - [anon_sym_RBRACK] = ACTIONS(5694), - [anon_sym_EQ] = ACTIONS(5692), - [anon_sym_QMARK] = ACTIONS(5694), - [anon_sym_STAR_EQ] = ACTIONS(5694), - [anon_sym_SLASH_EQ] = ACTIONS(5694), - [anon_sym_PERCENT_EQ] = ACTIONS(5694), - [anon_sym_PLUS_EQ] = ACTIONS(5694), - [anon_sym_DASH_EQ] = ACTIONS(5694), - [anon_sym_LT_LT_EQ] = ACTIONS(5694), - [anon_sym_GT_GT_EQ] = ACTIONS(5694), - [anon_sym_AMP_EQ] = ACTIONS(5694), - [anon_sym_CARET_EQ] = ACTIONS(5694), - [anon_sym_PIPE_EQ] = ACTIONS(5694), - [anon_sym_and_eq] = ACTIONS(5692), - [anon_sym_or_eq] = ACTIONS(5692), - [anon_sym_xor_eq] = ACTIONS(5692), - [anon_sym_LT_EQ_GT] = ACTIONS(5694), - [anon_sym_or] = ACTIONS(5692), - [anon_sym_and] = ACTIONS(5692), - [anon_sym_bitor] = ACTIONS(5692), - [anon_sym_xor] = ACTIONS(5692), - [anon_sym_bitand] = ACTIONS(5692), - [anon_sym_not_eq] = ACTIONS(5692), - [anon_sym_DASH_DASH] = ACTIONS(5694), - [anon_sym_PLUS_PLUS] = ACTIONS(5694), - [anon_sym_DOT] = ACTIONS(5692), - [anon_sym_DOT_STAR] = ACTIONS(5694), - [anon_sym_DASH_GT] = ACTIONS(5694), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5692), - [anon_sym_decltype] = ACTIONS(5692), - }, - [2265] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2293), - [sym_identifier] = ACTIONS(5944), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5942), - [anon_sym_COMMA] = ACTIONS(5942), - [aux_sym_preproc_if_token2] = ACTIONS(5942), - [aux_sym_preproc_else_token1] = ACTIONS(5942), - [aux_sym_preproc_elif_token1] = ACTIONS(5944), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5942), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5942), - [anon_sym_LPAREN2] = ACTIONS(5942), - [anon_sym_DASH] = ACTIONS(5944), - [anon_sym_PLUS] = ACTIONS(5944), - [anon_sym_STAR] = ACTIONS(5944), - [anon_sym_SLASH] = ACTIONS(5944), - [anon_sym_PERCENT] = ACTIONS(5944), - [anon_sym_PIPE_PIPE] = ACTIONS(5942), - [anon_sym_AMP_AMP] = ACTIONS(5942), - [anon_sym_PIPE] = ACTIONS(5944), - [anon_sym_CARET] = ACTIONS(5944), - [anon_sym_AMP] = ACTIONS(5944), - [anon_sym_EQ_EQ] = ACTIONS(5942), - [anon_sym_BANG_EQ] = ACTIONS(5942), - [anon_sym_GT] = ACTIONS(5944), - [anon_sym_GT_EQ] = ACTIONS(5942), - [anon_sym_LT_EQ] = ACTIONS(5944), - [anon_sym_LT] = ACTIONS(5944), - [anon_sym_LT_LT] = ACTIONS(5944), - [anon_sym_GT_GT] = ACTIONS(5944), - [anon_sym___attribute__] = ACTIONS(5944), - [anon_sym___attribute] = ACTIONS(5944), - [anon_sym_LBRACE] = ACTIONS(5942), - [anon_sym_signed] = ACTIONS(6176), - [anon_sym_unsigned] = ACTIONS(6176), - [anon_sym_long] = ACTIONS(6176), - [anon_sym_short] = ACTIONS(6176), - [anon_sym_LBRACK] = ACTIONS(5942), - [anon_sym_EQ] = ACTIONS(5944), - [anon_sym_QMARK] = ACTIONS(5942), - [anon_sym_STAR_EQ] = ACTIONS(5942), - [anon_sym_SLASH_EQ] = ACTIONS(5942), - [anon_sym_PERCENT_EQ] = ACTIONS(5942), - [anon_sym_PLUS_EQ] = ACTIONS(5942), - [anon_sym_DASH_EQ] = ACTIONS(5942), - [anon_sym_LT_LT_EQ] = ACTIONS(5942), - [anon_sym_GT_GT_EQ] = ACTIONS(5942), - [anon_sym_AMP_EQ] = ACTIONS(5942), - [anon_sym_CARET_EQ] = ACTIONS(5942), - [anon_sym_PIPE_EQ] = ACTIONS(5942), - [anon_sym_and_eq] = ACTIONS(5944), - [anon_sym_or_eq] = ACTIONS(5944), - [anon_sym_xor_eq] = ACTIONS(5944), - [anon_sym_LT_EQ_GT] = ACTIONS(5942), - [anon_sym_or] = ACTIONS(5944), - [anon_sym_and] = ACTIONS(5944), - [anon_sym_bitor] = ACTIONS(5944), - [anon_sym_xor] = ACTIONS(5944), - [anon_sym_bitand] = ACTIONS(5944), - [anon_sym_not_eq] = ACTIONS(5944), - [anon_sym_DASH_DASH] = ACTIONS(5942), - [anon_sym_PLUS_PLUS] = ACTIONS(5942), - [anon_sym_DOT] = ACTIONS(5944), - [anon_sym_DOT_STAR] = ACTIONS(5942), - [anon_sym_DASH_GT] = ACTIONS(5942), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5944), - [anon_sym_decltype] = ACTIONS(5944), - }, - [2266] = { - [sym_string_literal] = STATE(2624), - [sym_template_argument_list] = STATE(3588), - [sym_raw_string_literal] = STATE(2624), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6070), - [anon_sym_COMMA] = ACTIONS(6244), - [anon_sym_LPAREN2] = ACTIONS(4146), - [anon_sym_DASH] = ACTIONS(4154), - [anon_sym_PLUS] = ACTIONS(4154), - [anon_sym_STAR] = ACTIONS(4154), - [anon_sym_SLASH] = ACTIONS(4154), - [anon_sym_PERCENT] = ACTIONS(4154), - [anon_sym_PIPE_PIPE] = ACTIONS(4146), - [anon_sym_AMP_AMP] = ACTIONS(4146), - [anon_sym_PIPE] = ACTIONS(4154), - [anon_sym_CARET] = ACTIONS(4154), - [anon_sym_AMP] = ACTIONS(4154), - [anon_sym_EQ_EQ] = ACTIONS(4146), - [anon_sym_BANG_EQ] = ACTIONS(4146), - [anon_sym_GT] = ACTIONS(4154), - [anon_sym_GT_EQ] = ACTIONS(4146), - [anon_sym_LT_EQ] = ACTIONS(4154), - [anon_sym_LT] = ACTIONS(5077), - [anon_sym_LT_LT] = ACTIONS(4154), - [anon_sym_GT_GT] = ACTIONS(4154), - [anon_sym_COLON_COLON] = ACTIONS(4167), - [anon_sym_LBRACE] = ACTIONS(4172), - [anon_sym_LBRACK] = ACTIONS(4146), - [anon_sym_RBRACK] = ACTIONS(6246), - [anon_sym_EQ] = ACTIONS(6080), - [anon_sym_QMARK] = ACTIONS(4146), - [anon_sym_STAR_EQ] = ACTIONS(6082), - [anon_sym_SLASH_EQ] = ACTIONS(6082), - [anon_sym_PERCENT_EQ] = ACTIONS(6082), - [anon_sym_PLUS_EQ] = ACTIONS(6082), - [anon_sym_DASH_EQ] = ACTIONS(6082), - [anon_sym_LT_LT_EQ] = ACTIONS(6082), - [anon_sym_GT_GT_EQ] = ACTIONS(6082), - [anon_sym_AMP_EQ] = ACTIONS(6082), - [anon_sym_CARET_EQ] = ACTIONS(6082), - [anon_sym_PIPE_EQ] = ACTIONS(6082), - [anon_sym_and_eq] = ACTIONS(6082), - [anon_sym_or_eq] = ACTIONS(6082), - [anon_sym_xor_eq] = ACTIONS(6082), - [anon_sym_LT_EQ_GT] = ACTIONS(4146), - [anon_sym_or] = ACTIONS(4154), - [anon_sym_and] = ACTIONS(4154), - [anon_sym_bitor] = ACTIONS(4146), - [anon_sym_xor] = ACTIONS(4154), - [anon_sym_bitand] = ACTIONS(4146), - [anon_sym_not_eq] = ACTIONS(4146), - [anon_sym_DASH_DASH] = ACTIONS(4146), - [anon_sym_PLUS_PLUS] = ACTIONS(4146), - [anon_sym_DOT] = ACTIONS(4154), - [anon_sym_DOT_STAR] = ACTIONS(4146), - [anon_sym_DASH_GT] = ACTIONS(4146), - [anon_sym_L_DQUOTE] = ACTIONS(3623), - [anon_sym_u_DQUOTE] = ACTIONS(3623), - [anon_sym_U_DQUOTE] = ACTIONS(3623), - [anon_sym_u8_DQUOTE] = ACTIONS(3623), - [anon_sym_DQUOTE] = ACTIONS(3623), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(3627), - [anon_sym_LR_DQUOTE] = ACTIONS(3627), - [anon_sym_uR_DQUOTE] = ACTIONS(3627), - [anon_sym_UR_DQUOTE] = ACTIONS(3627), - [anon_sym_u8R_DQUOTE] = ACTIONS(3627), - }, - [2267] = { - [sym_identifier] = ACTIONS(5677), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5679), - [anon_sym_COMMA] = ACTIONS(5679), - [anon_sym_RPAREN] = ACTIONS(5679), - [aux_sym_preproc_if_token2] = ACTIONS(5679), - [aux_sym_preproc_else_token1] = ACTIONS(5679), - [aux_sym_preproc_elif_token1] = ACTIONS(5677), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5679), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5679), - [anon_sym_LPAREN2] = ACTIONS(5679), - [anon_sym_DASH] = ACTIONS(5677), - [anon_sym_PLUS] = ACTIONS(5677), - [anon_sym_STAR] = ACTIONS(5677), - [anon_sym_SLASH] = ACTIONS(5677), - [anon_sym_PERCENT] = ACTIONS(5677), - [anon_sym_PIPE_PIPE] = ACTIONS(5679), - [anon_sym_AMP_AMP] = ACTIONS(5679), - [anon_sym_PIPE] = ACTIONS(5677), - [anon_sym_CARET] = ACTIONS(5677), - [anon_sym_AMP] = ACTIONS(5677), - [anon_sym_EQ_EQ] = ACTIONS(5679), - [anon_sym_BANG_EQ] = ACTIONS(5679), - [anon_sym_GT] = ACTIONS(5677), - [anon_sym_GT_EQ] = ACTIONS(5679), - [anon_sym_LT_EQ] = ACTIONS(5677), - [anon_sym_LT] = ACTIONS(5677), - [anon_sym_LT_LT] = ACTIONS(5677), - [anon_sym_GT_GT] = ACTIONS(5677), - [anon_sym_SEMI] = ACTIONS(5679), - [anon_sym___attribute__] = ACTIONS(5677), - [anon_sym___attribute] = ACTIONS(5677), - [anon_sym_COLON] = ACTIONS(5679), - [anon_sym_LBRACE] = ACTIONS(5679), - [anon_sym_RBRACE] = ACTIONS(5679), - [anon_sym_LBRACK] = ACTIONS(5679), - [anon_sym_RBRACK] = ACTIONS(5679), - [anon_sym_EQ] = ACTIONS(5677), - [anon_sym_QMARK] = ACTIONS(5679), - [anon_sym_STAR_EQ] = ACTIONS(5679), - [anon_sym_SLASH_EQ] = ACTIONS(5679), - [anon_sym_PERCENT_EQ] = ACTIONS(5679), - [anon_sym_PLUS_EQ] = ACTIONS(5679), - [anon_sym_DASH_EQ] = ACTIONS(5679), - [anon_sym_LT_LT_EQ] = ACTIONS(5679), - [anon_sym_GT_GT_EQ] = ACTIONS(5679), - [anon_sym_AMP_EQ] = ACTIONS(5679), - [anon_sym_CARET_EQ] = ACTIONS(5679), - [anon_sym_PIPE_EQ] = ACTIONS(5679), - [anon_sym_and_eq] = ACTIONS(5677), - [anon_sym_or_eq] = ACTIONS(5677), - [anon_sym_xor_eq] = ACTIONS(5677), - [anon_sym_LT_EQ_GT] = ACTIONS(5679), - [anon_sym_or] = ACTIONS(5677), - [anon_sym_and] = ACTIONS(5677), - [anon_sym_bitor] = ACTIONS(5677), - [anon_sym_xor] = ACTIONS(5677), - [anon_sym_bitand] = ACTIONS(5677), - [anon_sym_not_eq] = ACTIONS(5677), - [anon_sym_DASH_DASH] = ACTIONS(5679), - [anon_sym_PLUS_PLUS] = ACTIONS(5679), - [anon_sym_DOT] = ACTIONS(5677), - [anon_sym_DOT_STAR] = ACTIONS(5679), - [anon_sym_DASH_GT] = ACTIONS(5679), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5677), - [anon_sym_decltype] = ACTIONS(5677), - }, - [2268] = { - [sym_identifier] = ACTIONS(5677), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5679), - [anon_sym_COMMA] = ACTIONS(5679), - [anon_sym_RPAREN] = ACTIONS(5679), - [aux_sym_preproc_if_token2] = ACTIONS(5679), - [aux_sym_preproc_else_token1] = ACTIONS(5679), - [aux_sym_preproc_elif_token1] = ACTIONS(5677), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5679), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5679), - [anon_sym_LPAREN2] = ACTIONS(5679), - [anon_sym_DASH] = ACTIONS(5677), - [anon_sym_PLUS] = ACTIONS(5677), - [anon_sym_STAR] = ACTIONS(5677), - [anon_sym_SLASH] = ACTIONS(5677), - [anon_sym_PERCENT] = ACTIONS(5677), - [anon_sym_PIPE_PIPE] = ACTIONS(5679), - [anon_sym_AMP_AMP] = ACTIONS(5679), - [anon_sym_PIPE] = ACTIONS(5677), - [anon_sym_CARET] = ACTIONS(5677), - [anon_sym_AMP] = ACTIONS(5677), - [anon_sym_EQ_EQ] = ACTIONS(5679), - [anon_sym_BANG_EQ] = ACTIONS(5679), - [anon_sym_GT] = ACTIONS(5677), - [anon_sym_GT_EQ] = ACTIONS(5679), - [anon_sym_LT_EQ] = ACTIONS(5677), - [anon_sym_LT] = ACTIONS(5677), - [anon_sym_LT_LT] = ACTIONS(5677), - [anon_sym_GT_GT] = ACTIONS(5677), - [anon_sym_SEMI] = ACTIONS(5679), - [anon_sym___attribute__] = ACTIONS(5677), - [anon_sym___attribute] = ACTIONS(5677), - [anon_sym_COLON] = ACTIONS(5679), - [anon_sym_LBRACE] = ACTIONS(5679), - [anon_sym_RBRACE] = ACTIONS(5679), - [anon_sym_LBRACK] = ACTIONS(5679), - [anon_sym_RBRACK] = ACTIONS(5679), - [anon_sym_EQ] = ACTIONS(5677), - [anon_sym_QMARK] = ACTIONS(5679), - [anon_sym_STAR_EQ] = ACTIONS(5679), - [anon_sym_SLASH_EQ] = ACTIONS(5679), - [anon_sym_PERCENT_EQ] = ACTIONS(5679), - [anon_sym_PLUS_EQ] = ACTIONS(5679), - [anon_sym_DASH_EQ] = ACTIONS(5679), - [anon_sym_LT_LT_EQ] = ACTIONS(5679), - [anon_sym_GT_GT_EQ] = ACTIONS(5679), - [anon_sym_AMP_EQ] = ACTIONS(5679), - [anon_sym_CARET_EQ] = ACTIONS(5679), - [anon_sym_PIPE_EQ] = ACTIONS(5679), - [anon_sym_and_eq] = ACTIONS(5677), - [anon_sym_or_eq] = ACTIONS(5677), - [anon_sym_xor_eq] = ACTIONS(5677), - [anon_sym_LT_EQ_GT] = ACTIONS(5679), - [anon_sym_or] = ACTIONS(5677), - [anon_sym_and] = ACTIONS(5677), - [anon_sym_bitor] = ACTIONS(5677), - [anon_sym_xor] = ACTIONS(5677), - [anon_sym_bitand] = ACTIONS(5677), - [anon_sym_not_eq] = ACTIONS(5677), - [anon_sym_DASH_DASH] = ACTIONS(5679), - [anon_sym_PLUS_PLUS] = ACTIONS(5679), - [anon_sym_DOT] = ACTIONS(5677), - [anon_sym_DOT_STAR] = ACTIONS(5679), - [anon_sym_DASH_GT] = ACTIONS(5679), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5677), - [anon_sym_decltype] = ACTIONS(5677), - }, - [2269] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2293), - [sym_identifier] = ACTIONS(5896), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5894), - [anon_sym_COMMA] = ACTIONS(5894), - [aux_sym_preproc_if_token2] = ACTIONS(5894), - [aux_sym_preproc_else_token1] = ACTIONS(5894), - [aux_sym_preproc_elif_token1] = ACTIONS(5896), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5894), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5894), - [anon_sym_LPAREN2] = ACTIONS(5894), - [anon_sym_DASH] = ACTIONS(5896), - [anon_sym_PLUS] = ACTIONS(5896), - [anon_sym_STAR] = ACTIONS(5896), - [anon_sym_SLASH] = ACTIONS(5896), - [anon_sym_PERCENT] = ACTIONS(5896), - [anon_sym_PIPE_PIPE] = ACTIONS(5894), - [anon_sym_AMP_AMP] = ACTIONS(5894), - [anon_sym_PIPE] = ACTIONS(5896), - [anon_sym_CARET] = ACTIONS(5896), - [anon_sym_AMP] = ACTIONS(5896), - [anon_sym_EQ_EQ] = ACTIONS(5894), - [anon_sym_BANG_EQ] = ACTIONS(5894), - [anon_sym_GT] = ACTIONS(5896), - [anon_sym_GT_EQ] = ACTIONS(5894), - [anon_sym_LT_EQ] = ACTIONS(5896), - [anon_sym_LT] = ACTIONS(5896), - [anon_sym_LT_LT] = ACTIONS(5896), - [anon_sym_GT_GT] = ACTIONS(5896), - [anon_sym___attribute__] = ACTIONS(5896), - [anon_sym___attribute] = ACTIONS(5896), - [anon_sym_LBRACE] = ACTIONS(5894), - [anon_sym_signed] = ACTIONS(6176), - [anon_sym_unsigned] = ACTIONS(6176), - [anon_sym_long] = ACTIONS(6176), - [anon_sym_short] = ACTIONS(6176), - [anon_sym_LBRACK] = ACTIONS(5894), - [anon_sym_EQ] = ACTIONS(5896), - [anon_sym_QMARK] = ACTIONS(5894), - [anon_sym_STAR_EQ] = ACTIONS(5894), - [anon_sym_SLASH_EQ] = ACTIONS(5894), - [anon_sym_PERCENT_EQ] = ACTIONS(5894), - [anon_sym_PLUS_EQ] = ACTIONS(5894), - [anon_sym_DASH_EQ] = ACTIONS(5894), - [anon_sym_LT_LT_EQ] = ACTIONS(5894), - [anon_sym_GT_GT_EQ] = ACTIONS(5894), - [anon_sym_AMP_EQ] = ACTIONS(5894), - [anon_sym_CARET_EQ] = ACTIONS(5894), - [anon_sym_PIPE_EQ] = ACTIONS(5894), - [anon_sym_and_eq] = ACTIONS(5896), - [anon_sym_or_eq] = ACTIONS(5896), - [anon_sym_xor_eq] = ACTIONS(5896), - [anon_sym_LT_EQ_GT] = ACTIONS(5894), - [anon_sym_or] = ACTIONS(5896), - [anon_sym_and] = ACTIONS(5896), - [anon_sym_bitor] = ACTIONS(5896), - [anon_sym_xor] = ACTIONS(5896), - [anon_sym_bitand] = ACTIONS(5896), - [anon_sym_not_eq] = ACTIONS(5896), - [anon_sym_DASH_DASH] = ACTIONS(5894), - [anon_sym_PLUS_PLUS] = ACTIONS(5894), - [anon_sym_DOT] = ACTIONS(5896), - [anon_sym_DOT_STAR] = ACTIONS(5894), - [anon_sym_DASH_GT] = ACTIONS(5894), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5896), - [anon_sym_decltype] = ACTIONS(5896), - }, - [2270] = { - [sym_attribute_declaration] = STATE(2247), - [aux_sym_attributed_declarator_repeat1] = STATE(2247), - [sym_identifier] = ACTIONS(6249), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6251), - [anon_sym_COMMA] = ACTIONS(6251), - [anon_sym_RPAREN] = ACTIONS(6251), - [aux_sym_preproc_if_token2] = ACTIONS(6251), - [aux_sym_preproc_else_token1] = ACTIONS(6251), - [aux_sym_preproc_elif_token1] = ACTIONS(6249), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6251), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6251), - [anon_sym_LPAREN2] = ACTIONS(6251), - [anon_sym_DASH] = ACTIONS(6249), - [anon_sym_PLUS] = ACTIONS(6249), - [anon_sym_STAR] = ACTIONS(6249), - [anon_sym_SLASH] = ACTIONS(6249), - [anon_sym_PERCENT] = ACTIONS(6249), - [anon_sym_PIPE_PIPE] = ACTIONS(6251), - [anon_sym_AMP_AMP] = ACTIONS(6251), - [anon_sym_PIPE] = ACTIONS(6249), - [anon_sym_CARET] = ACTIONS(6249), - [anon_sym_AMP] = ACTIONS(6249), - [anon_sym_EQ_EQ] = ACTIONS(6251), - [anon_sym_BANG_EQ] = ACTIONS(6251), - [anon_sym_GT] = ACTIONS(6249), - [anon_sym_GT_EQ] = ACTIONS(6251), - [anon_sym_LT_EQ] = ACTIONS(6249), - [anon_sym_LT] = ACTIONS(6249), - [anon_sym_LT_LT] = ACTIONS(6249), - [anon_sym_GT_GT] = ACTIONS(6249), - [anon_sym_SEMI] = ACTIONS(6251), - [anon_sym___attribute__] = ACTIONS(6249), - [anon_sym___attribute] = ACTIONS(6249), - [anon_sym_COLON] = ACTIONS(6251), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6044), - [anon_sym_RBRACE] = ACTIONS(6251), - [anon_sym_LBRACK] = ACTIONS(6249), - [anon_sym_RBRACK] = ACTIONS(6251), - [anon_sym_EQ] = ACTIONS(6249), - [anon_sym_QMARK] = ACTIONS(6251), - [anon_sym_STAR_EQ] = ACTIONS(6251), - [anon_sym_SLASH_EQ] = ACTIONS(6251), - [anon_sym_PERCENT_EQ] = ACTIONS(6251), - [anon_sym_PLUS_EQ] = ACTIONS(6251), - [anon_sym_DASH_EQ] = ACTIONS(6251), - [anon_sym_LT_LT_EQ] = ACTIONS(6251), - [anon_sym_GT_GT_EQ] = ACTIONS(6251), - [anon_sym_AMP_EQ] = ACTIONS(6251), - [anon_sym_CARET_EQ] = ACTIONS(6251), - [anon_sym_PIPE_EQ] = ACTIONS(6251), - [anon_sym_and_eq] = ACTIONS(6249), - [anon_sym_or_eq] = ACTIONS(6249), - [anon_sym_xor_eq] = ACTIONS(6249), - [anon_sym_LT_EQ_GT] = ACTIONS(6251), - [anon_sym_or] = ACTIONS(6249), - [anon_sym_and] = ACTIONS(6249), - [anon_sym_bitor] = ACTIONS(6249), - [anon_sym_xor] = ACTIONS(6249), - [anon_sym_bitand] = ACTIONS(6249), - [anon_sym_not_eq] = ACTIONS(6249), - [anon_sym_DASH_DASH] = ACTIONS(6251), - [anon_sym_PLUS_PLUS] = ACTIONS(6251), - [anon_sym_DOT] = ACTIONS(6249), - [anon_sym_DOT_STAR] = ACTIONS(6251), - [anon_sym_DASH_GT] = ACTIONS(6251), - [sym_comment] = ACTIONS(3), - }, - [2271] = { - [sym_identifier] = ACTIONS(6253), - [anon_sym_LPAREN2] = ACTIONS(6255), - [anon_sym_TILDE] = ACTIONS(6255), - [anon_sym_STAR] = ACTIONS(6255), - [anon_sym_PIPE_PIPE] = ACTIONS(6257), - [anon_sym_AMP_AMP] = ACTIONS(6182), - [anon_sym_AMP] = ACTIONS(6253), - [anon_sym___extension__] = ACTIONS(6253), - [anon_sym_virtual] = ACTIONS(6253), - [anon_sym_extern] = ACTIONS(6253), - [anon_sym___attribute__] = ACTIONS(6253), - [anon_sym___attribute] = ACTIONS(6253), - [anon_sym_using] = ACTIONS(6253), - [anon_sym_COLON_COLON] = ACTIONS(6255), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6255), - [anon_sym___declspec] = ACTIONS(6253), - [anon_sym___based] = ACTIONS(6253), - [anon_sym___cdecl] = ACTIONS(6253), - [anon_sym___clrcall] = ACTIONS(6253), - [anon_sym___stdcall] = ACTIONS(6253), - [anon_sym___fastcall] = ACTIONS(6253), - [anon_sym___thiscall] = ACTIONS(6253), - [anon_sym___vectorcall] = ACTIONS(6253), - [anon_sym_signed] = ACTIONS(6253), - [anon_sym_unsigned] = ACTIONS(6253), - [anon_sym_long] = ACTIONS(6253), - [anon_sym_short] = ACTIONS(6253), - [anon_sym_LBRACK] = ACTIONS(6253), - [anon_sym_static] = ACTIONS(6253), - [anon_sym_register] = ACTIONS(6253), - [anon_sym_inline] = ACTIONS(6253), - [anon_sym___inline] = ACTIONS(6253), - [anon_sym___inline__] = ACTIONS(6253), - [anon_sym___forceinline] = ACTIONS(6253), - [anon_sym_thread_local] = ACTIONS(6253), - [anon_sym___thread] = ACTIONS(6253), - [anon_sym_const] = ACTIONS(6253), - [anon_sym_constexpr] = ACTIONS(6253), - [anon_sym_volatile] = ACTIONS(6253), - [anon_sym_restrict] = ACTIONS(6253), - [anon_sym___restrict__] = ACTIONS(6253), - [anon_sym__Atomic] = ACTIONS(6253), - [anon_sym__Noreturn] = ACTIONS(6253), - [anon_sym_noreturn] = ACTIONS(6253), - [anon_sym__Nonnull] = ACTIONS(6253), - [anon_sym_mutable] = ACTIONS(6253), - [anon_sym_constinit] = ACTIONS(6253), - [anon_sym_consteval] = ACTIONS(6253), - [anon_sym_alignas] = ACTIONS(6253), - [anon_sym__Alignas] = ACTIONS(6253), - [sym_primitive_type] = ACTIONS(6253), - [anon_sym_enum] = ACTIONS(6253), - [anon_sym_class] = ACTIONS(6253), - [anon_sym_struct] = ACTIONS(6253), - [anon_sym_union] = ACTIONS(6253), - [anon_sym_or] = ACTIONS(6259), - [anon_sym_and] = ACTIONS(6184), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6253), - [anon_sym_decltype] = ACTIONS(6253), - [anon_sym_explicit] = ACTIONS(6253), - [anon_sym_typename] = ACTIONS(6253), - [anon_sym_template] = ACTIONS(6253), - [anon_sym_operator] = ACTIONS(6253), - [anon_sym_friend] = ACTIONS(6253), - [anon_sym_concept] = ACTIONS(6253), - }, - [2272] = { - [sym_identifier] = ACTIONS(5641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5643), - [anon_sym_COMMA] = ACTIONS(5643), - [anon_sym_RPAREN] = ACTIONS(5643), - [aux_sym_preproc_if_token2] = ACTIONS(5643), - [aux_sym_preproc_else_token1] = ACTIONS(5643), - [aux_sym_preproc_elif_token1] = ACTIONS(5641), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5643), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5643), - [anon_sym_LPAREN2] = ACTIONS(5643), - [anon_sym_DASH] = ACTIONS(5641), - [anon_sym_PLUS] = ACTIONS(5641), - [anon_sym_STAR] = ACTIONS(5641), - [anon_sym_SLASH] = ACTIONS(5641), - [anon_sym_PERCENT] = ACTIONS(5641), - [anon_sym_PIPE_PIPE] = ACTIONS(5643), - [anon_sym_AMP_AMP] = ACTIONS(5643), - [anon_sym_PIPE] = ACTIONS(5641), - [anon_sym_CARET] = ACTIONS(5641), - [anon_sym_AMP] = ACTIONS(5641), - [anon_sym_EQ_EQ] = ACTIONS(5643), - [anon_sym_BANG_EQ] = ACTIONS(5643), - [anon_sym_GT] = ACTIONS(5641), - [anon_sym_GT_EQ] = ACTIONS(5643), - [anon_sym_LT_EQ] = ACTIONS(5641), - [anon_sym_LT] = ACTIONS(5641), - [anon_sym_LT_LT] = ACTIONS(5641), - [anon_sym_GT_GT] = ACTIONS(5641), - [anon_sym_SEMI] = ACTIONS(5643), - [anon_sym___attribute__] = ACTIONS(5641), - [anon_sym___attribute] = ACTIONS(5641), - [anon_sym_COLON] = ACTIONS(5643), - [anon_sym_LBRACE] = ACTIONS(5643), - [anon_sym_RBRACE] = ACTIONS(5643), - [anon_sym_LBRACK] = ACTIONS(5643), - [anon_sym_RBRACK] = ACTIONS(5643), - [anon_sym_EQ] = ACTIONS(5641), - [anon_sym_QMARK] = ACTIONS(5643), - [anon_sym_STAR_EQ] = ACTIONS(5643), - [anon_sym_SLASH_EQ] = ACTIONS(5643), - [anon_sym_PERCENT_EQ] = ACTIONS(5643), - [anon_sym_PLUS_EQ] = ACTIONS(5643), - [anon_sym_DASH_EQ] = ACTIONS(5643), - [anon_sym_LT_LT_EQ] = ACTIONS(5643), - [anon_sym_GT_GT_EQ] = ACTIONS(5643), - [anon_sym_AMP_EQ] = ACTIONS(5643), - [anon_sym_CARET_EQ] = ACTIONS(5643), - [anon_sym_PIPE_EQ] = ACTIONS(5643), - [anon_sym_and_eq] = ACTIONS(5641), - [anon_sym_or_eq] = ACTIONS(5641), - [anon_sym_xor_eq] = ACTIONS(5641), - [anon_sym_LT_EQ_GT] = ACTIONS(5643), - [anon_sym_or] = ACTIONS(5641), - [anon_sym_and] = ACTIONS(5641), - [anon_sym_bitor] = ACTIONS(5641), - [anon_sym_xor] = ACTIONS(5641), - [anon_sym_bitand] = ACTIONS(5641), - [anon_sym_not_eq] = ACTIONS(5641), - [anon_sym_DASH_DASH] = ACTIONS(5643), - [anon_sym_PLUS_PLUS] = ACTIONS(5643), - [anon_sym_DOT] = ACTIONS(5641), - [anon_sym_DOT_STAR] = ACTIONS(5643), - [anon_sym_DASH_GT] = ACTIONS(5643), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5641), - [anon_sym_decltype] = ACTIONS(5641), - }, - [2273] = { - [sym_identifier] = ACTIONS(5450), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5452), - [anon_sym_COMMA] = ACTIONS(5452), - [anon_sym_RPAREN] = ACTIONS(5452), - [aux_sym_preproc_if_token2] = ACTIONS(5452), - [aux_sym_preproc_else_token1] = ACTIONS(5452), - [aux_sym_preproc_elif_token1] = ACTIONS(5450), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5452), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5452), - [anon_sym_LPAREN2] = ACTIONS(5452), - [anon_sym_DASH] = ACTIONS(5450), - [anon_sym_PLUS] = ACTIONS(5450), - [anon_sym_STAR] = ACTIONS(5450), - [anon_sym_SLASH] = ACTIONS(5450), - [anon_sym_PERCENT] = ACTIONS(5450), - [anon_sym_PIPE_PIPE] = ACTIONS(5452), - [anon_sym_AMP_AMP] = ACTIONS(5452), - [anon_sym_PIPE] = ACTIONS(5450), - [anon_sym_CARET] = ACTIONS(5450), - [anon_sym_AMP] = ACTIONS(5450), - [anon_sym_EQ_EQ] = ACTIONS(5452), - [anon_sym_BANG_EQ] = ACTIONS(5452), - [anon_sym_GT] = ACTIONS(5450), - [anon_sym_GT_EQ] = ACTIONS(5452), - [anon_sym_LT_EQ] = ACTIONS(5450), - [anon_sym_LT] = ACTIONS(5450), - [anon_sym_LT_LT] = ACTIONS(5450), - [anon_sym_GT_GT] = ACTIONS(5450), - [anon_sym_SEMI] = ACTIONS(5452), - [anon_sym___attribute__] = ACTIONS(5450), - [anon_sym___attribute] = ACTIONS(5450), - [anon_sym_COLON] = ACTIONS(5452), - [anon_sym_LBRACE] = ACTIONS(5452), - [anon_sym_RBRACE] = ACTIONS(5452), - [anon_sym_LBRACK] = ACTIONS(5452), - [anon_sym_RBRACK] = ACTIONS(5452), - [anon_sym_EQ] = ACTIONS(5450), - [anon_sym_QMARK] = ACTIONS(5452), - [anon_sym_STAR_EQ] = ACTIONS(5452), - [anon_sym_SLASH_EQ] = ACTIONS(5452), - [anon_sym_PERCENT_EQ] = ACTIONS(5452), - [anon_sym_PLUS_EQ] = ACTIONS(5452), - [anon_sym_DASH_EQ] = ACTIONS(5452), - [anon_sym_LT_LT_EQ] = ACTIONS(5452), - [anon_sym_GT_GT_EQ] = ACTIONS(5452), - [anon_sym_AMP_EQ] = ACTIONS(5452), - [anon_sym_CARET_EQ] = ACTIONS(5452), - [anon_sym_PIPE_EQ] = ACTIONS(5452), - [anon_sym_and_eq] = ACTIONS(5450), - [anon_sym_or_eq] = ACTIONS(5450), - [anon_sym_xor_eq] = ACTIONS(5450), - [anon_sym_LT_EQ_GT] = ACTIONS(5452), - [anon_sym_or] = ACTIONS(5450), - [anon_sym_and] = ACTIONS(5450), - [anon_sym_bitor] = ACTIONS(5450), - [anon_sym_xor] = ACTIONS(5450), - [anon_sym_bitand] = ACTIONS(5450), - [anon_sym_not_eq] = ACTIONS(5450), - [anon_sym_DASH_DASH] = ACTIONS(5452), - [anon_sym_PLUS_PLUS] = ACTIONS(5452), - [anon_sym_DOT] = ACTIONS(5450), - [anon_sym_DOT_STAR] = ACTIONS(5452), - [anon_sym_DASH_GT] = ACTIONS(5452), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5450), - [anon_sym_decltype] = ACTIONS(5450), - }, - [2274] = { - [sym_identifier] = ACTIONS(5647), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5649), - [anon_sym_COMMA] = ACTIONS(5649), - [anon_sym_RPAREN] = ACTIONS(5649), - [aux_sym_preproc_if_token2] = ACTIONS(5649), - [aux_sym_preproc_else_token1] = ACTIONS(5649), - [aux_sym_preproc_elif_token1] = ACTIONS(5647), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5649), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5649), - [anon_sym_LPAREN2] = ACTIONS(5649), - [anon_sym_DASH] = ACTIONS(5647), - [anon_sym_PLUS] = ACTIONS(5647), - [anon_sym_STAR] = ACTIONS(5647), - [anon_sym_SLASH] = ACTIONS(5647), - [anon_sym_PERCENT] = ACTIONS(5647), - [anon_sym_PIPE_PIPE] = ACTIONS(5649), - [anon_sym_AMP_AMP] = ACTIONS(5649), - [anon_sym_PIPE] = ACTIONS(5647), - [anon_sym_CARET] = ACTIONS(5647), - [anon_sym_AMP] = ACTIONS(5647), - [anon_sym_EQ_EQ] = ACTIONS(5649), - [anon_sym_BANG_EQ] = ACTIONS(5649), - [anon_sym_GT] = ACTIONS(5647), - [anon_sym_GT_EQ] = ACTIONS(5649), - [anon_sym_LT_EQ] = ACTIONS(5647), - [anon_sym_LT] = ACTIONS(5647), - [anon_sym_LT_LT] = ACTIONS(5647), - [anon_sym_GT_GT] = ACTIONS(5647), - [anon_sym_SEMI] = ACTIONS(5649), - [anon_sym___attribute__] = ACTIONS(5647), - [anon_sym___attribute] = ACTIONS(5647), - [anon_sym_COLON] = ACTIONS(5649), - [anon_sym_LBRACE] = ACTIONS(5649), - [anon_sym_RBRACE] = ACTIONS(5649), - [anon_sym_LBRACK] = ACTIONS(5649), - [anon_sym_RBRACK] = ACTIONS(5649), - [anon_sym_EQ] = ACTIONS(5647), - [anon_sym_QMARK] = ACTIONS(5649), - [anon_sym_STAR_EQ] = ACTIONS(5649), - [anon_sym_SLASH_EQ] = ACTIONS(5649), - [anon_sym_PERCENT_EQ] = ACTIONS(5649), - [anon_sym_PLUS_EQ] = ACTIONS(5649), - [anon_sym_DASH_EQ] = ACTIONS(5649), - [anon_sym_LT_LT_EQ] = ACTIONS(5649), - [anon_sym_GT_GT_EQ] = ACTIONS(5649), - [anon_sym_AMP_EQ] = ACTIONS(5649), - [anon_sym_CARET_EQ] = ACTIONS(5649), - [anon_sym_PIPE_EQ] = ACTIONS(5649), - [anon_sym_and_eq] = ACTIONS(5647), - [anon_sym_or_eq] = ACTIONS(5647), - [anon_sym_xor_eq] = ACTIONS(5647), - [anon_sym_LT_EQ_GT] = ACTIONS(5649), - [anon_sym_or] = ACTIONS(5647), - [anon_sym_and] = ACTIONS(5647), - [anon_sym_bitor] = ACTIONS(5647), - [anon_sym_xor] = ACTIONS(5647), - [anon_sym_bitand] = ACTIONS(5647), - [anon_sym_not_eq] = ACTIONS(5647), - [anon_sym_DASH_DASH] = ACTIONS(5649), - [anon_sym_PLUS_PLUS] = ACTIONS(5649), - [anon_sym_DOT] = ACTIONS(5647), - [anon_sym_DOT_STAR] = ACTIONS(5649), - [anon_sym_DASH_GT] = ACTIONS(5649), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5647), - [anon_sym_decltype] = ACTIONS(5647), - }, - [2275] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2211), - [sym_identifier] = ACTIONS(5904), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5902), - [anon_sym_COMMA] = ACTIONS(5902), - [aux_sym_preproc_if_token2] = ACTIONS(5902), - [aux_sym_preproc_else_token1] = ACTIONS(5902), - [aux_sym_preproc_elif_token1] = ACTIONS(5904), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5902), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5902), - [anon_sym_LPAREN2] = ACTIONS(5902), - [anon_sym_DASH] = ACTIONS(5904), - [anon_sym_PLUS] = ACTIONS(5904), - [anon_sym_STAR] = ACTIONS(5904), - [anon_sym_SLASH] = ACTIONS(5904), - [anon_sym_PERCENT] = ACTIONS(5904), - [anon_sym_PIPE_PIPE] = ACTIONS(5902), - [anon_sym_AMP_AMP] = ACTIONS(5902), - [anon_sym_PIPE] = ACTIONS(5904), - [anon_sym_CARET] = ACTIONS(5904), - [anon_sym_AMP] = ACTIONS(5904), - [anon_sym_EQ_EQ] = ACTIONS(5902), - [anon_sym_BANG_EQ] = ACTIONS(5902), - [anon_sym_GT] = ACTIONS(5904), - [anon_sym_GT_EQ] = ACTIONS(5902), - [anon_sym_LT_EQ] = ACTIONS(5904), - [anon_sym_LT] = ACTIONS(5904), - [anon_sym_LT_LT] = ACTIONS(5904), - [anon_sym_GT_GT] = ACTIONS(5904), - [anon_sym___attribute__] = ACTIONS(5904), - [anon_sym___attribute] = ACTIONS(5904), - [anon_sym_LBRACE] = ACTIONS(5902), - [anon_sym_signed] = ACTIONS(6261), - [anon_sym_unsigned] = ACTIONS(6261), - [anon_sym_long] = ACTIONS(6261), - [anon_sym_short] = ACTIONS(6261), - [anon_sym_LBRACK] = ACTIONS(5902), - [anon_sym_EQ] = ACTIONS(5904), - [anon_sym_QMARK] = ACTIONS(5902), - [anon_sym_STAR_EQ] = ACTIONS(5902), - [anon_sym_SLASH_EQ] = ACTIONS(5902), - [anon_sym_PERCENT_EQ] = ACTIONS(5902), - [anon_sym_PLUS_EQ] = ACTIONS(5902), - [anon_sym_DASH_EQ] = ACTIONS(5902), - [anon_sym_LT_LT_EQ] = ACTIONS(5902), - [anon_sym_GT_GT_EQ] = ACTIONS(5902), - [anon_sym_AMP_EQ] = ACTIONS(5902), - [anon_sym_CARET_EQ] = ACTIONS(5902), - [anon_sym_PIPE_EQ] = ACTIONS(5902), - [anon_sym_and_eq] = ACTIONS(5904), - [anon_sym_or_eq] = ACTIONS(5904), - [anon_sym_xor_eq] = ACTIONS(5904), - [anon_sym_LT_EQ_GT] = ACTIONS(5902), - [anon_sym_or] = ACTIONS(5904), - [anon_sym_and] = ACTIONS(5904), - [anon_sym_bitor] = ACTIONS(5904), - [anon_sym_xor] = ACTIONS(5904), - [anon_sym_bitand] = ACTIONS(5904), - [anon_sym_not_eq] = ACTIONS(5904), - [anon_sym_DASH_DASH] = ACTIONS(5902), - [anon_sym_PLUS_PLUS] = ACTIONS(5902), - [anon_sym_DOT] = ACTIONS(5904), - [anon_sym_DOT_STAR] = ACTIONS(5902), - [anon_sym_DASH_GT] = ACTIONS(5902), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5904), - [anon_sym_decltype] = ACTIONS(5904), - }, - [2276] = { - [sym_argument_list] = STATE(2455), - [sym_initializer_list] = STATE(2455), - [sym_identifier] = ACTIONS(6263), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6265), - [anon_sym_COMMA] = ACTIONS(6265), - [anon_sym_RPAREN] = ACTIONS(6265), - [aux_sym_preproc_if_token2] = ACTIONS(6265), - [aux_sym_preproc_else_token1] = ACTIONS(6265), - [aux_sym_preproc_elif_token1] = ACTIONS(6263), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6265), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6265), - [anon_sym_LPAREN2] = ACTIONS(5827), - [anon_sym_DASH] = ACTIONS(6263), - [anon_sym_PLUS] = ACTIONS(6263), - [anon_sym_STAR] = ACTIONS(6263), - [anon_sym_SLASH] = ACTIONS(6263), - [anon_sym_PERCENT] = ACTIONS(6263), - [anon_sym_PIPE_PIPE] = ACTIONS(6265), - [anon_sym_AMP_AMP] = ACTIONS(6265), - [anon_sym_PIPE] = ACTIONS(6263), - [anon_sym_CARET] = ACTIONS(6263), - [anon_sym_AMP] = ACTIONS(6263), - [anon_sym_EQ_EQ] = ACTIONS(6265), - [anon_sym_BANG_EQ] = ACTIONS(6265), - [anon_sym_GT] = ACTIONS(6263), - [anon_sym_GT_EQ] = ACTIONS(6265), - [anon_sym_LT_EQ] = ACTIONS(6263), - [anon_sym_LT] = ACTIONS(6263), - [anon_sym_LT_LT] = ACTIONS(6263), - [anon_sym_GT_GT] = ACTIONS(6263), - [anon_sym_SEMI] = ACTIONS(6265), - [anon_sym___attribute__] = ACTIONS(6263), - [anon_sym___attribute] = ACTIONS(6263), - [anon_sym_COLON] = ACTIONS(6265), - [anon_sym_LBRACE] = ACTIONS(1954), - [anon_sym_RBRACE] = ACTIONS(6265), - [anon_sym_LBRACK] = ACTIONS(6265), - [anon_sym_RBRACK] = ACTIONS(6265), - [anon_sym_EQ] = ACTIONS(6263), - [anon_sym_QMARK] = ACTIONS(6265), - [anon_sym_STAR_EQ] = ACTIONS(6265), - [anon_sym_SLASH_EQ] = ACTIONS(6265), - [anon_sym_PERCENT_EQ] = ACTIONS(6265), - [anon_sym_PLUS_EQ] = ACTIONS(6265), - [anon_sym_DASH_EQ] = ACTIONS(6265), - [anon_sym_LT_LT_EQ] = ACTIONS(6265), - [anon_sym_GT_GT_EQ] = ACTIONS(6265), - [anon_sym_AMP_EQ] = ACTIONS(6265), - [anon_sym_CARET_EQ] = ACTIONS(6265), - [anon_sym_PIPE_EQ] = ACTIONS(6265), - [anon_sym_and_eq] = ACTIONS(6263), - [anon_sym_or_eq] = ACTIONS(6263), - [anon_sym_xor_eq] = ACTIONS(6263), - [anon_sym_LT_EQ_GT] = ACTIONS(6265), - [anon_sym_or] = ACTIONS(6263), - [anon_sym_and] = ACTIONS(6263), - [anon_sym_bitor] = ACTIONS(6263), - [anon_sym_xor] = ACTIONS(6263), - [anon_sym_bitand] = ACTIONS(6263), - [anon_sym_not_eq] = ACTIONS(6263), - [anon_sym_DASH_DASH] = ACTIONS(6265), - [anon_sym_PLUS_PLUS] = ACTIONS(6265), - [anon_sym_DOT] = ACTIONS(6263), - [anon_sym_DOT_STAR] = ACTIONS(6265), - [anon_sym_DASH_GT] = ACTIONS(6265), - [sym_comment] = ACTIONS(3), - }, - [2277] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2214), - [sym_identifier] = ACTIONS(5922), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5920), - [anon_sym_COMMA] = ACTIONS(5920), - [aux_sym_preproc_if_token2] = ACTIONS(5920), - [aux_sym_preproc_else_token1] = ACTIONS(5920), - [aux_sym_preproc_elif_token1] = ACTIONS(5922), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5920), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5920), - [anon_sym_LPAREN2] = ACTIONS(5920), - [anon_sym_DASH] = ACTIONS(5922), - [anon_sym_PLUS] = ACTIONS(5922), - [anon_sym_STAR] = ACTIONS(5922), - [anon_sym_SLASH] = ACTIONS(5922), - [anon_sym_PERCENT] = ACTIONS(5922), - [anon_sym_PIPE_PIPE] = ACTIONS(5920), - [anon_sym_AMP_AMP] = ACTIONS(5920), - [anon_sym_PIPE] = ACTIONS(5922), - [anon_sym_CARET] = ACTIONS(5922), - [anon_sym_AMP] = ACTIONS(5922), - [anon_sym_EQ_EQ] = ACTIONS(5920), - [anon_sym_BANG_EQ] = ACTIONS(5920), - [anon_sym_GT] = ACTIONS(5922), - [anon_sym_GT_EQ] = ACTIONS(5920), - [anon_sym_LT_EQ] = ACTIONS(5922), - [anon_sym_LT] = ACTIONS(5922), - [anon_sym_LT_LT] = ACTIONS(5922), - [anon_sym_GT_GT] = ACTIONS(5922), - [anon_sym___attribute__] = ACTIONS(5922), - [anon_sym___attribute] = ACTIONS(5922), - [anon_sym_LBRACE] = ACTIONS(5920), - [anon_sym_signed] = ACTIONS(6267), - [anon_sym_unsigned] = ACTIONS(6267), - [anon_sym_long] = ACTIONS(6267), - [anon_sym_short] = ACTIONS(6267), - [anon_sym_LBRACK] = ACTIONS(5920), - [anon_sym_EQ] = ACTIONS(5922), - [anon_sym_QMARK] = ACTIONS(5920), - [anon_sym_STAR_EQ] = ACTIONS(5920), - [anon_sym_SLASH_EQ] = ACTIONS(5920), - [anon_sym_PERCENT_EQ] = ACTIONS(5920), - [anon_sym_PLUS_EQ] = ACTIONS(5920), - [anon_sym_DASH_EQ] = ACTIONS(5920), - [anon_sym_LT_LT_EQ] = ACTIONS(5920), - [anon_sym_GT_GT_EQ] = ACTIONS(5920), - [anon_sym_AMP_EQ] = ACTIONS(5920), - [anon_sym_CARET_EQ] = ACTIONS(5920), - [anon_sym_PIPE_EQ] = ACTIONS(5920), - [anon_sym_and_eq] = ACTIONS(5922), - [anon_sym_or_eq] = ACTIONS(5922), - [anon_sym_xor_eq] = ACTIONS(5922), - [anon_sym_LT_EQ_GT] = ACTIONS(5920), - [anon_sym_or] = ACTIONS(5922), - [anon_sym_and] = ACTIONS(5922), - [anon_sym_bitor] = ACTIONS(5922), - [anon_sym_xor] = ACTIONS(5922), - [anon_sym_bitand] = ACTIONS(5922), - [anon_sym_not_eq] = ACTIONS(5922), - [anon_sym_DASH_DASH] = ACTIONS(5920), - [anon_sym_PLUS_PLUS] = ACTIONS(5920), - [anon_sym_DOT] = ACTIONS(5922), - [anon_sym_DOT_STAR] = ACTIONS(5920), - [anon_sym_DASH_GT] = ACTIONS(5920), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5922), - [anon_sym_decltype] = ACTIONS(5922), - }, - [2278] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2293), - [sym_identifier] = ACTIONS(5928), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5926), - [anon_sym_COMMA] = ACTIONS(5926), - [aux_sym_preproc_if_token2] = ACTIONS(5926), - [aux_sym_preproc_else_token1] = ACTIONS(5926), - [aux_sym_preproc_elif_token1] = ACTIONS(5928), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5926), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5926), - [anon_sym_LPAREN2] = ACTIONS(5926), - [anon_sym_DASH] = ACTIONS(5928), - [anon_sym_PLUS] = ACTIONS(5928), - [anon_sym_STAR] = ACTIONS(5928), - [anon_sym_SLASH] = ACTIONS(5928), - [anon_sym_PERCENT] = ACTIONS(5928), - [anon_sym_PIPE_PIPE] = ACTIONS(5926), - [anon_sym_AMP_AMP] = ACTIONS(5926), - [anon_sym_PIPE] = ACTIONS(5928), - [anon_sym_CARET] = ACTIONS(5928), - [anon_sym_AMP] = ACTIONS(5928), - [anon_sym_EQ_EQ] = ACTIONS(5926), - [anon_sym_BANG_EQ] = ACTIONS(5926), - [anon_sym_GT] = ACTIONS(5928), - [anon_sym_GT_EQ] = ACTIONS(5926), - [anon_sym_LT_EQ] = ACTIONS(5928), - [anon_sym_LT] = ACTIONS(5928), - [anon_sym_LT_LT] = ACTIONS(5928), - [anon_sym_GT_GT] = ACTIONS(5928), - [anon_sym___attribute__] = ACTIONS(5928), - [anon_sym___attribute] = ACTIONS(5928), - [anon_sym_LBRACE] = ACTIONS(5926), - [anon_sym_signed] = ACTIONS(6176), - [anon_sym_unsigned] = ACTIONS(6176), - [anon_sym_long] = ACTIONS(6176), - [anon_sym_short] = ACTIONS(6176), - [anon_sym_LBRACK] = ACTIONS(5926), - [anon_sym_EQ] = ACTIONS(5928), - [anon_sym_QMARK] = ACTIONS(5926), - [anon_sym_STAR_EQ] = ACTIONS(5926), - [anon_sym_SLASH_EQ] = ACTIONS(5926), - [anon_sym_PERCENT_EQ] = ACTIONS(5926), - [anon_sym_PLUS_EQ] = ACTIONS(5926), - [anon_sym_DASH_EQ] = ACTIONS(5926), - [anon_sym_LT_LT_EQ] = ACTIONS(5926), - [anon_sym_GT_GT_EQ] = ACTIONS(5926), - [anon_sym_AMP_EQ] = ACTIONS(5926), - [anon_sym_CARET_EQ] = ACTIONS(5926), - [anon_sym_PIPE_EQ] = ACTIONS(5926), - [anon_sym_and_eq] = ACTIONS(5928), - [anon_sym_or_eq] = ACTIONS(5928), - [anon_sym_xor_eq] = ACTIONS(5928), - [anon_sym_LT_EQ_GT] = ACTIONS(5926), - [anon_sym_or] = ACTIONS(5928), - [anon_sym_and] = ACTIONS(5928), - [anon_sym_bitor] = ACTIONS(5928), - [anon_sym_xor] = ACTIONS(5928), - [anon_sym_bitand] = ACTIONS(5928), - [anon_sym_not_eq] = ACTIONS(5928), - [anon_sym_DASH_DASH] = ACTIONS(5926), - [anon_sym_PLUS_PLUS] = ACTIONS(5926), - [anon_sym_DOT] = ACTIONS(5928), - [anon_sym_DOT_STAR] = ACTIONS(5926), - [anon_sym_DASH_GT] = ACTIONS(5926), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5928), - [anon_sym_decltype] = ACTIONS(5928), - }, - [2279] = { - [sym_identifier] = ACTIONS(6269), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6271), - [anon_sym_COMMA] = ACTIONS(6271), - [anon_sym_RPAREN] = ACTIONS(6271), - [aux_sym_preproc_if_token2] = ACTIONS(6271), - [aux_sym_preproc_else_token1] = ACTIONS(6271), - [aux_sym_preproc_elif_token1] = ACTIONS(6269), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6271), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6271), - [anon_sym_LPAREN2] = ACTIONS(6271), - [anon_sym_DASH] = ACTIONS(6269), - [anon_sym_PLUS] = ACTIONS(6269), - [anon_sym_STAR] = ACTIONS(6269), - [anon_sym_SLASH] = ACTIONS(6269), - [anon_sym_PERCENT] = ACTIONS(6269), - [anon_sym_PIPE_PIPE] = ACTIONS(6271), - [anon_sym_AMP_AMP] = ACTIONS(6271), - [anon_sym_PIPE] = ACTIONS(6269), - [anon_sym_CARET] = ACTIONS(6269), - [anon_sym_AMP] = ACTIONS(6269), - [anon_sym_EQ_EQ] = ACTIONS(6271), - [anon_sym_BANG_EQ] = ACTIONS(6271), - [anon_sym_GT] = ACTIONS(6269), - [anon_sym_GT_EQ] = ACTIONS(6271), - [anon_sym_LT_EQ] = ACTIONS(6269), - [anon_sym_LT] = ACTIONS(6269), - [anon_sym_LT_LT] = ACTIONS(6269), - [anon_sym_GT_GT] = ACTIONS(6269), - [anon_sym_SEMI] = ACTIONS(6271), - [anon_sym___attribute__] = ACTIONS(6269), - [anon_sym___attribute] = ACTIONS(6269), - [anon_sym_COLON] = ACTIONS(6271), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6271), - [anon_sym_LBRACE] = ACTIONS(6271), - [anon_sym_RBRACE] = ACTIONS(6271), - [anon_sym_LBRACK] = ACTIONS(6269), - [anon_sym_RBRACK] = ACTIONS(6271), - [anon_sym_EQ] = ACTIONS(6269), - [anon_sym_QMARK] = ACTIONS(6271), - [anon_sym_STAR_EQ] = ACTIONS(6271), - [anon_sym_SLASH_EQ] = ACTIONS(6271), - [anon_sym_PERCENT_EQ] = ACTIONS(6271), - [anon_sym_PLUS_EQ] = ACTIONS(6271), - [anon_sym_DASH_EQ] = ACTIONS(6271), - [anon_sym_LT_LT_EQ] = ACTIONS(6271), - [anon_sym_GT_GT_EQ] = ACTIONS(6271), - [anon_sym_AMP_EQ] = ACTIONS(6271), - [anon_sym_CARET_EQ] = ACTIONS(6271), - [anon_sym_PIPE_EQ] = ACTIONS(6271), - [anon_sym_and_eq] = ACTIONS(6269), - [anon_sym_or_eq] = ACTIONS(6269), - [anon_sym_xor_eq] = ACTIONS(6269), - [anon_sym_LT_EQ_GT] = ACTIONS(6271), - [anon_sym_or] = ACTIONS(6269), - [anon_sym_and] = ACTIONS(6269), - [anon_sym_bitor] = ACTIONS(6269), - [anon_sym_xor] = ACTIONS(6269), - [anon_sym_bitand] = ACTIONS(6269), - [anon_sym_not_eq] = ACTIONS(6269), - [anon_sym_DASH_DASH] = ACTIONS(6271), - [anon_sym_PLUS_PLUS] = ACTIONS(6271), - [anon_sym_DOT] = ACTIONS(6269), - [anon_sym_DOT_STAR] = ACTIONS(6271), - [anon_sym_DASH_GT] = ACTIONS(6271), - [sym_comment] = ACTIONS(3), - [anon_sym_try] = ACTIONS(6269), - }, - [2280] = { - [sym_identifier] = ACTIONS(6273), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6275), - [anon_sym_COMMA] = ACTIONS(6275), - [anon_sym_RPAREN] = ACTIONS(6275), - [aux_sym_preproc_if_token2] = ACTIONS(6275), - [aux_sym_preproc_else_token1] = ACTIONS(6275), - [aux_sym_preproc_elif_token1] = ACTIONS(6273), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6275), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6275), - [anon_sym_LPAREN2] = ACTIONS(6275), - [anon_sym_DASH] = ACTIONS(6273), - [anon_sym_PLUS] = ACTIONS(6273), - [anon_sym_STAR] = ACTIONS(6273), - [anon_sym_SLASH] = ACTIONS(6273), - [anon_sym_PERCENT] = ACTIONS(6273), - [anon_sym_PIPE_PIPE] = ACTIONS(6275), - [anon_sym_AMP_AMP] = ACTIONS(6275), - [anon_sym_PIPE] = ACTIONS(6273), - [anon_sym_CARET] = ACTIONS(6273), - [anon_sym_AMP] = ACTIONS(6273), - [anon_sym_EQ_EQ] = ACTIONS(6275), - [anon_sym_BANG_EQ] = ACTIONS(6275), - [anon_sym_GT] = ACTIONS(6273), - [anon_sym_GT_EQ] = ACTIONS(6275), - [anon_sym_LT_EQ] = ACTIONS(6273), - [anon_sym_LT] = ACTIONS(6273), - [anon_sym_LT_LT] = ACTIONS(6273), - [anon_sym_GT_GT] = ACTIONS(6273), - [anon_sym_SEMI] = ACTIONS(6275), - [anon_sym___attribute__] = ACTIONS(6273), - [anon_sym___attribute] = ACTIONS(6273), - [anon_sym_COLON] = ACTIONS(6275), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6275), - [anon_sym_LBRACE] = ACTIONS(6275), - [anon_sym_RBRACE] = ACTIONS(6275), - [anon_sym_LBRACK] = ACTIONS(6273), - [anon_sym_RBRACK] = ACTIONS(6275), - [anon_sym_EQ] = ACTIONS(6273), - [anon_sym_QMARK] = ACTIONS(6275), - [anon_sym_STAR_EQ] = ACTIONS(6275), - [anon_sym_SLASH_EQ] = ACTIONS(6275), - [anon_sym_PERCENT_EQ] = ACTIONS(6275), - [anon_sym_PLUS_EQ] = ACTIONS(6275), - [anon_sym_DASH_EQ] = ACTIONS(6275), - [anon_sym_LT_LT_EQ] = ACTIONS(6275), - [anon_sym_GT_GT_EQ] = ACTIONS(6275), - [anon_sym_AMP_EQ] = ACTIONS(6275), - [anon_sym_CARET_EQ] = ACTIONS(6275), - [anon_sym_PIPE_EQ] = ACTIONS(6275), - [anon_sym_and_eq] = ACTIONS(6273), - [anon_sym_or_eq] = ACTIONS(6273), - [anon_sym_xor_eq] = ACTIONS(6273), - [anon_sym_LT_EQ_GT] = ACTIONS(6275), - [anon_sym_or] = ACTIONS(6273), - [anon_sym_and] = ACTIONS(6273), - [anon_sym_bitor] = ACTIONS(6273), - [anon_sym_xor] = ACTIONS(6273), - [anon_sym_bitand] = ACTIONS(6273), - [anon_sym_not_eq] = ACTIONS(6273), - [anon_sym_DASH_DASH] = ACTIONS(6275), - [anon_sym_PLUS_PLUS] = ACTIONS(6275), - [anon_sym_DOT] = ACTIONS(6273), - [anon_sym_DOT_STAR] = ACTIONS(6275), - [anon_sym_DASH_GT] = ACTIONS(6275), - [sym_comment] = ACTIONS(3), - [anon_sym_try] = ACTIONS(6273), - }, - [2281] = { - [sym_attribute_specifier] = STATE(1872), - [sym_enumerator_list] = STATE(2350), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5985), - [anon_sym_COMMA] = ACTIONS(5985), - [anon_sym_RPAREN] = ACTIONS(5985), - [anon_sym_LPAREN2] = ACTIONS(5985), - [anon_sym_DASH] = ACTIONS(5983), - [anon_sym_PLUS] = ACTIONS(5983), - [anon_sym_STAR] = ACTIONS(5985), - [anon_sym_SLASH] = ACTIONS(5983), - [anon_sym_PERCENT] = ACTIONS(5985), - [anon_sym_PIPE_PIPE] = ACTIONS(5985), - [anon_sym_AMP_AMP] = ACTIONS(5985), - [anon_sym_PIPE] = ACTIONS(5983), - [anon_sym_CARET] = ACTIONS(5985), - [anon_sym_AMP] = ACTIONS(5983), - [anon_sym_EQ_EQ] = ACTIONS(5985), - [anon_sym_BANG_EQ] = ACTIONS(5985), - [anon_sym_GT] = ACTIONS(5983), - [anon_sym_GT_EQ] = ACTIONS(5985), - [anon_sym_LT_EQ] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5983), - [anon_sym_LT_LT] = ACTIONS(5985), - [anon_sym_GT_GT] = ACTIONS(5985), - [anon_sym_SEMI] = ACTIONS(5985), - [anon_sym___extension__] = ACTIONS(5985), - [anon_sym___attribute__] = ACTIONS(6014), - [anon_sym___attribute] = ACTIONS(6016), - [anon_sym_COLON] = ACTIONS(5985), - [anon_sym_LBRACE] = ACTIONS(6186), - [anon_sym_RBRACE] = ACTIONS(5985), - [anon_sym_LBRACK] = ACTIONS(5985), - [anon_sym_RBRACK] = ACTIONS(5985), - [anon_sym_const] = ACTIONS(5983), - [anon_sym_constexpr] = ACTIONS(5985), - [anon_sym_volatile] = ACTIONS(5985), - [anon_sym_restrict] = ACTIONS(5985), - [anon_sym___restrict__] = ACTIONS(5985), - [anon_sym__Atomic] = ACTIONS(5985), - [anon_sym__Noreturn] = ACTIONS(5985), - [anon_sym_noreturn] = ACTIONS(5985), - [anon_sym__Nonnull] = ACTIONS(5985), - [anon_sym_mutable] = ACTIONS(5985), - [anon_sym_constinit] = ACTIONS(5985), - [anon_sym_consteval] = ACTIONS(5985), - [anon_sym_alignas] = ACTIONS(5985), - [anon_sym__Alignas] = ACTIONS(5985), - [anon_sym_QMARK] = ACTIONS(5985), - [anon_sym_LT_EQ_GT] = ACTIONS(5985), - [anon_sym_or] = ACTIONS(5985), - [anon_sym_and] = ACTIONS(5985), - [anon_sym_bitor] = ACTIONS(5985), - [anon_sym_xor] = ACTIONS(5985), - [anon_sym_bitand] = ACTIONS(5985), - [anon_sym_not_eq] = ACTIONS(5985), - [anon_sym_DASH_DASH] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5985), - [anon_sym_DOT] = ACTIONS(5983), - [anon_sym_DOT_STAR] = ACTIONS(5985), - [anon_sym_DASH_GT] = ACTIONS(5985), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5985), - [anon_sym_decltype] = ACTIONS(5985), - [anon_sym_final] = ACTIONS(5985), - [anon_sym_override] = ACTIONS(5985), - [anon_sym_requires] = ACTIONS(5985), - }, - [2282] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(5491), - [anon_sym_COMMA] = ACTIONS(5491), - [anon_sym_RPAREN] = ACTIONS(5491), - [anon_sym_LPAREN2] = ACTIONS(5491), - [anon_sym_DASH] = ACTIONS(5489), - [anon_sym_PLUS] = ACTIONS(5489), - [anon_sym_STAR] = ACTIONS(5489), - [anon_sym_SLASH] = ACTIONS(5489), - [anon_sym_PERCENT] = ACTIONS(5489), - [anon_sym_PIPE_PIPE] = ACTIONS(5491), - [anon_sym_AMP_AMP] = ACTIONS(5491), - [anon_sym_PIPE] = ACTIONS(5489), - [anon_sym_CARET] = ACTIONS(5489), - [anon_sym_AMP] = ACTIONS(5489), - [anon_sym_EQ_EQ] = ACTIONS(5491), - [anon_sym_BANG_EQ] = ACTIONS(5491), - [anon_sym_GT] = ACTIONS(5489), - [anon_sym_GT_EQ] = ACTIONS(5491), - [anon_sym_LT_EQ] = ACTIONS(5489), - [anon_sym_LT] = ACTIONS(5489), - [anon_sym_LT_LT] = ACTIONS(5489), - [anon_sym_GT_GT] = ACTIONS(5489), - [anon_sym_SEMI] = ACTIONS(5491), - [anon_sym_COLON] = ACTIONS(5491), - [anon_sym_RBRACE] = ACTIONS(5491), - [anon_sym_LBRACK] = ACTIONS(5491), - [anon_sym_RBRACK] = ACTIONS(5491), - [anon_sym_EQ] = ACTIONS(5489), - [anon_sym_QMARK] = ACTIONS(5491), - [anon_sym_STAR_EQ] = ACTIONS(5491), - [anon_sym_SLASH_EQ] = ACTIONS(5491), - [anon_sym_PERCENT_EQ] = ACTIONS(5491), - [anon_sym_PLUS_EQ] = ACTIONS(5491), - [anon_sym_DASH_EQ] = ACTIONS(5491), - [anon_sym_LT_LT_EQ] = ACTIONS(5491), - [anon_sym_GT_GT_EQ] = ACTIONS(5491), - [anon_sym_AMP_EQ] = ACTIONS(5491), - [anon_sym_CARET_EQ] = ACTIONS(5491), - [anon_sym_PIPE_EQ] = ACTIONS(5491), - [anon_sym_and_eq] = ACTIONS(5489), - [anon_sym_or_eq] = ACTIONS(5489), - [anon_sym_xor_eq] = ACTIONS(5489), - [anon_sym_LT_EQ_GT] = ACTIONS(5491), - [anon_sym_or] = ACTIONS(5489), - [anon_sym_and] = ACTIONS(5489), - [anon_sym_bitor] = ACTIONS(5489), - [anon_sym_xor] = ACTIONS(5489), - [anon_sym_bitand] = ACTIONS(5489), - [anon_sym_not_eq] = ACTIONS(5489), - [anon_sym_DASH_DASH] = ACTIONS(5491), - [anon_sym_PLUS_PLUS] = ACTIONS(5491), - [anon_sym_DOT] = ACTIONS(5489), - [anon_sym_DOT_STAR] = ACTIONS(5491), - [anon_sym_DASH_GT] = ACTIONS(5491), - [anon_sym_L_DQUOTE] = ACTIONS(5491), - [anon_sym_u_DQUOTE] = ACTIONS(5491), - [anon_sym_U_DQUOTE] = ACTIONS(5491), - [anon_sym_u8_DQUOTE] = ACTIONS(5491), - [anon_sym_DQUOTE] = ACTIONS(5491), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5491), - [anon_sym_LR_DQUOTE] = ACTIONS(5491), - [anon_sym_uR_DQUOTE] = ACTIONS(5491), - [anon_sym_UR_DQUOTE] = ACTIONS(5491), - [anon_sym_u8R_DQUOTE] = ACTIONS(5491), - [sym_literal_suffix] = ACTIONS(5489), - }, - [2283] = { - [sym_identifier] = ACTIONS(5806), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5808), - [anon_sym_COMMA] = ACTIONS(5808), - [anon_sym_RPAREN] = ACTIONS(5808), - [aux_sym_preproc_if_token2] = ACTIONS(5808), - [aux_sym_preproc_else_token1] = ACTIONS(5808), - [aux_sym_preproc_elif_token1] = ACTIONS(5806), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5808), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5808), - [anon_sym_LPAREN2] = ACTIONS(5808), - [anon_sym_DASH] = ACTIONS(5806), - [anon_sym_PLUS] = ACTIONS(5806), - [anon_sym_STAR] = ACTIONS(5806), - [anon_sym_SLASH] = ACTIONS(5806), - [anon_sym_PERCENT] = ACTIONS(5806), - [anon_sym_PIPE_PIPE] = ACTIONS(5808), - [anon_sym_AMP_AMP] = ACTIONS(5808), - [anon_sym_PIPE] = ACTIONS(5806), - [anon_sym_CARET] = ACTIONS(5806), - [anon_sym_AMP] = ACTIONS(5806), - [anon_sym_EQ_EQ] = ACTIONS(5808), - [anon_sym_BANG_EQ] = ACTIONS(5808), - [anon_sym_GT] = ACTIONS(5806), - [anon_sym_GT_EQ] = ACTIONS(5808), - [anon_sym_LT_EQ] = ACTIONS(5806), - [anon_sym_LT] = ACTIONS(5806), - [anon_sym_LT_LT] = ACTIONS(5806), - [anon_sym_GT_GT] = ACTIONS(5806), - [anon_sym_SEMI] = ACTIONS(5808), - [anon_sym___attribute__] = ACTIONS(5806), - [anon_sym___attribute] = ACTIONS(5806), - [anon_sym_COLON] = ACTIONS(5808), - [anon_sym_LBRACE] = ACTIONS(5808), - [anon_sym_RBRACE] = ACTIONS(5808), - [anon_sym_LBRACK] = ACTIONS(5808), - [anon_sym_RBRACK] = ACTIONS(5808), - [anon_sym_EQ] = ACTIONS(5806), - [anon_sym_QMARK] = ACTIONS(5808), - [anon_sym_STAR_EQ] = ACTIONS(5808), - [anon_sym_SLASH_EQ] = ACTIONS(5808), - [anon_sym_PERCENT_EQ] = ACTIONS(5808), - [anon_sym_PLUS_EQ] = ACTIONS(5808), - [anon_sym_DASH_EQ] = ACTIONS(5808), - [anon_sym_LT_LT_EQ] = ACTIONS(5808), - [anon_sym_GT_GT_EQ] = ACTIONS(5808), - [anon_sym_AMP_EQ] = ACTIONS(5808), - [anon_sym_CARET_EQ] = ACTIONS(5808), - [anon_sym_PIPE_EQ] = ACTIONS(5808), - [anon_sym_and_eq] = ACTIONS(5806), - [anon_sym_or_eq] = ACTIONS(5806), - [anon_sym_xor_eq] = ACTIONS(5806), - [anon_sym_LT_EQ_GT] = ACTIONS(5808), - [anon_sym_or] = ACTIONS(5806), - [anon_sym_and] = ACTIONS(5806), - [anon_sym_bitor] = ACTIONS(5806), - [anon_sym_xor] = ACTIONS(5806), - [anon_sym_bitand] = ACTIONS(5806), - [anon_sym_not_eq] = ACTIONS(5806), - [anon_sym_DASH_DASH] = ACTIONS(5808), - [anon_sym_PLUS_PLUS] = ACTIONS(5808), - [anon_sym_DOT] = ACTIONS(5806), - [anon_sym_DOT_STAR] = ACTIONS(5808), - [anon_sym_DASH_GT] = ACTIONS(5808), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5806), - [anon_sym_decltype] = ACTIONS(5806), - }, - [2284] = { - [sym_identifier] = ACTIONS(6277), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6279), - [anon_sym_COMMA] = ACTIONS(6279), - [anon_sym_RPAREN] = ACTIONS(6279), - [aux_sym_preproc_if_token2] = ACTIONS(6279), - [aux_sym_preproc_else_token1] = ACTIONS(6279), - [aux_sym_preproc_elif_token1] = ACTIONS(6277), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6279), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6279), - [anon_sym_LPAREN2] = ACTIONS(6279), - [anon_sym_DASH] = ACTIONS(6277), - [anon_sym_PLUS] = ACTIONS(6277), - [anon_sym_STAR] = ACTIONS(6277), - [anon_sym_SLASH] = ACTIONS(6277), - [anon_sym_PERCENT] = ACTIONS(6277), - [anon_sym_PIPE_PIPE] = ACTIONS(6279), - [anon_sym_AMP_AMP] = ACTIONS(6279), - [anon_sym_PIPE] = ACTIONS(6277), - [anon_sym_CARET] = ACTIONS(6277), - [anon_sym_AMP] = ACTIONS(6277), - [anon_sym_EQ_EQ] = ACTIONS(6279), - [anon_sym_BANG_EQ] = ACTIONS(6279), - [anon_sym_GT] = ACTIONS(6277), - [anon_sym_GT_EQ] = ACTIONS(6279), - [anon_sym_LT_EQ] = ACTIONS(6277), - [anon_sym_LT] = ACTIONS(6277), - [anon_sym_LT_LT] = ACTIONS(6277), - [anon_sym_GT_GT] = ACTIONS(6277), - [anon_sym_SEMI] = ACTIONS(6279), - [anon_sym___attribute__] = ACTIONS(6277), - [anon_sym___attribute] = ACTIONS(6277), - [anon_sym_COLON] = ACTIONS(6279), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6279), - [anon_sym_LBRACE] = ACTIONS(6279), - [anon_sym_RBRACE] = ACTIONS(6279), - [anon_sym_LBRACK] = ACTIONS(6277), - [anon_sym_RBRACK] = ACTIONS(6279), - [anon_sym_EQ] = ACTIONS(6277), - [anon_sym_QMARK] = ACTIONS(6279), - [anon_sym_STAR_EQ] = ACTIONS(6279), - [anon_sym_SLASH_EQ] = ACTIONS(6279), - [anon_sym_PERCENT_EQ] = ACTIONS(6279), - [anon_sym_PLUS_EQ] = ACTIONS(6279), - [anon_sym_DASH_EQ] = ACTIONS(6279), - [anon_sym_LT_LT_EQ] = ACTIONS(6279), - [anon_sym_GT_GT_EQ] = ACTIONS(6279), - [anon_sym_AMP_EQ] = ACTIONS(6279), - [anon_sym_CARET_EQ] = ACTIONS(6279), - [anon_sym_PIPE_EQ] = ACTIONS(6279), - [anon_sym_and_eq] = ACTIONS(6277), - [anon_sym_or_eq] = ACTIONS(6277), - [anon_sym_xor_eq] = ACTIONS(6277), - [anon_sym_LT_EQ_GT] = ACTIONS(6279), - [anon_sym_or] = ACTIONS(6277), - [anon_sym_and] = ACTIONS(6277), - [anon_sym_bitor] = ACTIONS(6277), - [anon_sym_xor] = ACTIONS(6277), - [anon_sym_bitand] = ACTIONS(6277), - [anon_sym_not_eq] = ACTIONS(6277), - [anon_sym_DASH_DASH] = ACTIONS(6279), - [anon_sym_PLUS_PLUS] = ACTIONS(6279), - [anon_sym_DOT] = ACTIONS(6277), - [anon_sym_DOT_STAR] = ACTIONS(6279), - [anon_sym_DASH_GT] = ACTIONS(6279), - [sym_comment] = ACTIONS(3), - [anon_sym_try] = ACTIONS(6277), - }, - [2285] = { - [sym_string_literal] = STATE(2301), - [sym_raw_string_literal] = STATE(2301), - [aux_sym_concatenated_string_repeat1] = STATE(2301), - [sym_identifier] = ACTIONS(6281), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5396), - [anon_sym_COMMA] = ACTIONS(5396), - [anon_sym_LPAREN2] = ACTIONS(5396), - [anon_sym_DASH] = ACTIONS(5398), - [anon_sym_PLUS] = ACTIONS(5398), - [anon_sym_STAR] = ACTIONS(5398), - [anon_sym_SLASH] = ACTIONS(5398), - [anon_sym_PERCENT] = ACTIONS(5398), - [anon_sym_PIPE_PIPE] = ACTIONS(5396), - [anon_sym_AMP_AMP] = ACTIONS(5396), - [anon_sym_PIPE] = ACTIONS(5398), - [anon_sym_CARET] = ACTIONS(5398), - [anon_sym_AMP] = ACTIONS(5398), - [anon_sym_EQ_EQ] = ACTIONS(5396), - [anon_sym_BANG_EQ] = ACTIONS(5396), - [anon_sym_GT] = ACTIONS(5398), - [anon_sym_GT_EQ] = ACTIONS(5398), - [anon_sym_LT_EQ] = ACTIONS(5398), - [anon_sym_LT] = ACTIONS(5398), - [anon_sym_LT_LT] = ACTIONS(5398), - [anon_sym_GT_GT] = ACTIONS(5398), - [anon_sym_LBRACK] = ACTIONS(5396), - [anon_sym_EQ] = ACTIONS(5398), - [anon_sym_QMARK] = ACTIONS(5396), - [anon_sym_STAR_EQ] = ACTIONS(5396), - [anon_sym_SLASH_EQ] = ACTIONS(5396), - [anon_sym_PERCENT_EQ] = ACTIONS(5396), - [anon_sym_PLUS_EQ] = ACTIONS(5396), - [anon_sym_DASH_EQ] = ACTIONS(5396), - [anon_sym_LT_LT_EQ] = ACTIONS(5396), - [anon_sym_GT_GT_EQ] = ACTIONS(5398), - [anon_sym_AMP_EQ] = ACTIONS(5396), - [anon_sym_CARET_EQ] = ACTIONS(5396), - [anon_sym_PIPE_EQ] = ACTIONS(5396), - [anon_sym_and_eq] = ACTIONS(5398), - [anon_sym_or_eq] = ACTIONS(5398), - [anon_sym_xor_eq] = ACTIONS(5398), - [anon_sym_LT_EQ_GT] = ACTIONS(5396), - [anon_sym_or] = ACTIONS(5398), - [anon_sym_and] = ACTIONS(5398), - [anon_sym_bitor] = ACTIONS(5398), - [anon_sym_xor] = ACTIONS(5398), - [anon_sym_bitand] = ACTIONS(5398), - [anon_sym_not_eq] = ACTIONS(5398), - [anon_sym_DASH_DASH] = ACTIONS(5396), - [anon_sym_PLUS_PLUS] = ACTIONS(5396), - [anon_sym_DOT] = ACTIONS(5398), - [anon_sym_DOT_STAR] = ACTIONS(5396), - [anon_sym_DASH_GT] = ACTIONS(5396), - [anon_sym_L_DQUOTE] = ACTIONS(6214), - [anon_sym_u_DQUOTE] = ACTIONS(6214), - [anon_sym_U_DQUOTE] = ACTIONS(6214), - [anon_sym_u8_DQUOTE] = ACTIONS(6214), - [anon_sym_DQUOTE] = ACTIONS(6214), - [sym_comment] = ACTIONS(3), - [anon_sym_GT2] = ACTIONS(5396), - [anon_sym_R_DQUOTE] = ACTIONS(6216), - [anon_sym_LR_DQUOTE] = ACTIONS(6216), - [anon_sym_uR_DQUOTE] = ACTIONS(6216), - [anon_sym_UR_DQUOTE] = ACTIONS(6216), - [anon_sym_u8R_DQUOTE] = ACTIONS(6216), - [sym_literal_suffix] = ACTIONS(5398), - }, - [2286] = { - [sym_string_literal] = STATE(2236), - [sym_template_argument_list] = STATE(3335), - [sym_raw_string_literal] = STATE(2236), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4146), - [anon_sym_COMMA] = ACTIONS(4146), - [anon_sym_LPAREN2] = ACTIONS(4146), - [anon_sym_DASH] = ACTIONS(4154), - [anon_sym_PLUS] = ACTIONS(4154), - [anon_sym_STAR] = ACTIONS(4154), - [anon_sym_SLASH] = ACTIONS(4154), - [anon_sym_PERCENT] = ACTIONS(4154), - [anon_sym_PIPE_PIPE] = ACTIONS(4146), - [anon_sym_AMP_AMP] = ACTIONS(4146), - [anon_sym_PIPE] = ACTIONS(4154), - [anon_sym_CARET] = ACTIONS(4154), - [anon_sym_AMP] = ACTIONS(4154), - [anon_sym_EQ_EQ] = ACTIONS(4146), - [anon_sym_BANG_EQ] = ACTIONS(4146), - [anon_sym_GT] = ACTIONS(4154), - [anon_sym_GT_EQ] = ACTIONS(4154), - [anon_sym_LT_EQ] = ACTIONS(4154), - [anon_sym_LT] = ACTIONS(6283), - [anon_sym_LT_LT] = ACTIONS(4154), - [anon_sym_GT_GT] = ACTIONS(4154), - [anon_sym_COLON_COLON] = ACTIONS(4167), - [anon_sym_LBRACE] = ACTIONS(4172), - [anon_sym_LBRACK] = ACTIONS(4146), - [anon_sym_EQ] = ACTIONS(4154), - [anon_sym_QMARK] = ACTIONS(4146), - [anon_sym_STAR_EQ] = ACTIONS(4146), - [anon_sym_SLASH_EQ] = ACTIONS(4146), - [anon_sym_PERCENT_EQ] = ACTIONS(4146), - [anon_sym_PLUS_EQ] = ACTIONS(4146), - [anon_sym_DASH_EQ] = ACTIONS(4146), - [anon_sym_LT_LT_EQ] = ACTIONS(4146), - [anon_sym_GT_GT_EQ] = ACTIONS(4154), - [anon_sym_AMP_EQ] = ACTIONS(4146), - [anon_sym_CARET_EQ] = ACTIONS(4146), - [anon_sym_PIPE_EQ] = ACTIONS(4146), - [anon_sym_and_eq] = ACTIONS(4146), - [anon_sym_or_eq] = ACTIONS(4146), - [anon_sym_xor_eq] = ACTIONS(4146), - [anon_sym_LT_EQ_GT] = ACTIONS(4146), - [anon_sym_or] = ACTIONS(4154), - [anon_sym_and] = ACTIONS(4154), - [anon_sym_bitor] = ACTIONS(4146), - [anon_sym_xor] = ACTIONS(4154), - [anon_sym_bitand] = ACTIONS(4146), - [anon_sym_not_eq] = ACTIONS(4146), - [anon_sym_DASH_DASH] = ACTIONS(4146), - [anon_sym_PLUS_PLUS] = ACTIONS(4146), - [anon_sym_DOT] = ACTIONS(4154), - [anon_sym_DOT_STAR] = ACTIONS(4146), - [anon_sym_DASH_GT] = ACTIONS(4146), - [anon_sym_L_DQUOTE] = ACTIONS(6214), - [anon_sym_u_DQUOTE] = ACTIONS(6214), - [anon_sym_U_DQUOTE] = ACTIONS(6214), - [anon_sym_u8_DQUOTE] = ACTIONS(6214), - [anon_sym_DQUOTE] = ACTIONS(6214), - [sym_comment] = ACTIONS(3), - [anon_sym_GT2] = ACTIONS(4146), - [anon_sym_R_DQUOTE] = ACTIONS(6216), - [anon_sym_LR_DQUOTE] = ACTIONS(6216), - [anon_sym_uR_DQUOTE] = ACTIONS(6216), - [anon_sym_UR_DQUOTE] = ACTIONS(6216), - [anon_sym_u8R_DQUOTE] = ACTIONS(6216), - }, - [2287] = { - [sym_identifier] = ACTIONS(6286), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6288), - [anon_sym_COMMA] = ACTIONS(6288), - [anon_sym_RPAREN] = ACTIONS(6288), - [aux_sym_preproc_if_token2] = ACTIONS(6288), - [aux_sym_preproc_else_token1] = ACTIONS(6288), - [aux_sym_preproc_elif_token1] = ACTIONS(6286), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6288), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6288), - [anon_sym_LPAREN2] = ACTIONS(6288), - [anon_sym_DASH] = ACTIONS(6286), - [anon_sym_PLUS] = ACTIONS(6286), - [anon_sym_STAR] = ACTIONS(6286), - [anon_sym_SLASH] = ACTIONS(6286), - [anon_sym_PERCENT] = ACTIONS(6286), - [anon_sym_PIPE_PIPE] = ACTIONS(6288), - [anon_sym_AMP_AMP] = ACTIONS(6288), - [anon_sym_PIPE] = ACTIONS(6286), - [anon_sym_CARET] = ACTIONS(6286), - [anon_sym_AMP] = ACTIONS(6286), - [anon_sym_EQ_EQ] = ACTIONS(6288), - [anon_sym_BANG_EQ] = ACTIONS(6288), - [anon_sym_GT] = ACTIONS(6286), - [anon_sym_GT_EQ] = ACTIONS(6288), - [anon_sym_LT_EQ] = ACTIONS(6286), - [anon_sym_LT] = ACTIONS(6286), - [anon_sym_LT_LT] = ACTIONS(6286), - [anon_sym_GT_GT] = ACTIONS(6286), - [anon_sym_SEMI] = ACTIONS(6288), - [anon_sym___attribute__] = ACTIONS(6286), - [anon_sym___attribute] = ACTIONS(6286), - [anon_sym_COLON] = ACTIONS(6288), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6288), - [anon_sym_LBRACE] = ACTIONS(6288), - [anon_sym_RBRACE] = ACTIONS(6288), - [anon_sym_LBRACK] = ACTIONS(6286), - [anon_sym_RBRACK] = ACTIONS(6288), - [anon_sym_EQ] = ACTIONS(6286), - [anon_sym_QMARK] = ACTIONS(6288), - [anon_sym_STAR_EQ] = ACTIONS(6288), - [anon_sym_SLASH_EQ] = ACTIONS(6288), - [anon_sym_PERCENT_EQ] = ACTIONS(6288), - [anon_sym_PLUS_EQ] = ACTIONS(6288), - [anon_sym_DASH_EQ] = ACTIONS(6288), - [anon_sym_LT_LT_EQ] = ACTIONS(6288), - [anon_sym_GT_GT_EQ] = ACTIONS(6288), - [anon_sym_AMP_EQ] = ACTIONS(6288), - [anon_sym_CARET_EQ] = ACTIONS(6288), - [anon_sym_PIPE_EQ] = ACTIONS(6288), - [anon_sym_and_eq] = ACTIONS(6286), - [anon_sym_or_eq] = ACTIONS(6286), - [anon_sym_xor_eq] = ACTIONS(6286), - [anon_sym_LT_EQ_GT] = ACTIONS(6288), - [anon_sym_or] = ACTIONS(6286), - [anon_sym_and] = ACTIONS(6286), - [anon_sym_bitor] = ACTIONS(6286), - [anon_sym_xor] = ACTIONS(6286), - [anon_sym_bitand] = ACTIONS(6286), - [anon_sym_not_eq] = ACTIONS(6286), - [anon_sym_DASH_DASH] = ACTIONS(6288), - [anon_sym_PLUS_PLUS] = ACTIONS(6288), - [anon_sym_DOT] = ACTIONS(6286), - [anon_sym_DOT_STAR] = ACTIONS(6288), - [anon_sym_DASH_GT] = ACTIONS(6288), - [sym_comment] = ACTIONS(3), - [anon_sym_try] = ACTIONS(6286), - }, - [2288] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2234), - [sym_identifier] = ACTIONS(5750), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5752), - [anon_sym_COMMA] = ACTIONS(5752), - [aux_sym_preproc_if_token2] = ACTIONS(5752), - [aux_sym_preproc_else_token1] = ACTIONS(5752), - [aux_sym_preproc_elif_token1] = ACTIONS(5750), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5752), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5752), - [anon_sym_LPAREN2] = ACTIONS(5752), - [anon_sym_DASH] = ACTIONS(5750), - [anon_sym_PLUS] = ACTIONS(5750), - [anon_sym_STAR] = ACTIONS(5750), - [anon_sym_SLASH] = ACTIONS(5750), - [anon_sym_PERCENT] = ACTIONS(5750), - [anon_sym_PIPE_PIPE] = ACTIONS(5752), - [anon_sym_AMP_AMP] = ACTIONS(5752), - [anon_sym_PIPE] = ACTIONS(5750), - [anon_sym_CARET] = ACTIONS(5750), - [anon_sym_AMP] = ACTIONS(5750), - [anon_sym_EQ_EQ] = ACTIONS(5752), - [anon_sym_BANG_EQ] = ACTIONS(5752), - [anon_sym_GT] = ACTIONS(5750), - [anon_sym_GT_EQ] = ACTIONS(5752), - [anon_sym_LT_EQ] = ACTIONS(5750), - [anon_sym_LT] = ACTIONS(5750), - [anon_sym_LT_LT] = ACTIONS(5750), - [anon_sym_GT_GT] = ACTIONS(5750), - [anon_sym___attribute__] = ACTIONS(5750), - [anon_sym___attribute] = ACTIONS(5750), - [anon_sym_LBRACE] = ACTIONS(5752), - [anon_sym_signed] = ACTIONS(6290), - [anon_sym_unsigned] = ACTIONS(6290), - [anon_sym_long] = ACTIONS(6290), - [anon_sym_short] = ACTIONS(6290), - [anon_sym_LBRACK] = ACTIONS(5752), - [anon_sym_EQ] = ACTIONS(5750), - [anon_sym_QMARK] = ACTIONS(5752), - [anon_sym_STAR_EQ] = ACTIONS(5752), - [anon_sym_SLASH_EQ] = ACTIONS(5752), - [anon_sym_PERCENT_EQ] = ACTIONS(5752), - [anon_sym_PLUS_EQ] = ACTIONS(5752), - [anon_sym_DASH_EQ] = ACTIONS(5752), - [anon_sym_LT_LT_EQ] = ACTIONS(5752), - [anon_sym_GT_GT_EQ] = ACTIONS(5752), - [anon_sym_AMP_EQ] = ACTIONS(5752), - [anon_sym_CARET_EQ] = ACTIONS(5752), - [anon_sym_PIPE_EQ] = ACTIONS(5752), - [anon_sym_and_eq] = ACTIONS(5750), - [anon_sym_or_eq] = ACTIONS(5750), - [anon_sym_xor_eq] = ACTIONS(5750), - [anon_sym_LT_EQ_GT] = ACTIONS(5752), - [anon_sym_or] = ACTIONS(5750), - [anon_sym_and] = ACTIONS(5750), - [anon_sym_bitor] = ACTIONS(5750), - [anon_sym_xor] = ACTIONS(5750), - [anon_sym_bitand] = ACTIONS(5750), - [anon_sym_not_eq] = ACTIONS(5750), - [anon_sym_DASH_DASH] = ACTIONS(5752), - [anon_sym_PLUS_PLUS] = ACTIONS(5752), - [anon_sym_DOT] = ACTIONS(5750), - [anon_sym_DOT_STAR] = ACTIONS(5752), - [anon_sym_DASH_GT] = ACTIONS(5752), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5750), - [anon_sym_decltype] = ACTIONS(5750), - }, - [2289] = { - [sym_identifier] = ACTIONS(5740), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5742), - [anon_sym_COMMA] = ACTIONS(5742), - [anon_sym_RPAREN] = ACTIONS(5742), - [aux_sym_preproc_if_token2] = ACTIONS(5742), - [aux_sym_preproc_else_token1] = ACTIONS(5742), - [aux_sym_preproc_elif_token1] = ACTIONS(5740), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5742), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5742), - [anon_sym_LPAREN2] = ACTIONS(5742), - [anon_sym_DASH] = ACTIONS(5740), - [anon_sym_PLUS] = ACTIONS(5740), - [anon_sym_STAR] = ACTIONS(5740), - [anon_sym_SLASH] = ACTIONS(5740), - [anon_sym_PERCENT] = ACTIONS(5740), - [anon_sym_PIPE_PIPE] = ACTIONS(5742), - [anon_sym_AMP_AMP] = ACTIONS(5742), - [anon_sym_PIPE] = ACTIONS(5740), - [anon_sym_CARET] = ACTIONS(5740), - [anon_sym_AMP] = ACTIONS(5740), - [anon_sym_EQ_EQ] = ACTIONS(5742), - [anon_sym_BANG_EQ] = ACTIONS(5742), - [anon_sym_GT] = ACTIONS(5740), - [anon_sym_GT_EQ] = ACTIONS(5742), - [anon_sym_LT_EQ] = ACTIONS(5740), - [anon_sym_LT] = ACTIONS(5740), - [anon_sym_LT_LT] = ACTIONS(5740), - [anon_sym_GT_GT] = ACTIONS(5740), - [anon_sym_SEMI] = ACTIONS(5742), - [anon_sym___attribute__] = ACTIONS(5740), - [anon_sym___attribute] = ACTIONS(5740), - [anon_sym_COLON] = ACTIONS(5742), - [anon_sym_LBRACE] = ACTIONS(5742), - [anon_sym_RBRACE] = ACTIONS(5742), - [anon_sym_LBRACK] = ACTIONS(5742), - [anon_sym_RBRACK] = ACTIONS(5742), - [anon_sym_EQ] = ACTIONS(5740), - [anon_sym_QMARK] = ACTIONS(5742), - [anon_sym_STAR_EQ] = ACTIONS(5742), - [anon_sym_SLASH_EQ] = ACTIONS(5742), - [anon_sym_PERCENT_EQ] = ACTIONS(5742), - [anon_sym_PLUS_EQ] = ACTIONS(5742), - [anon_sym_DASH_EQ] = ACTIONS(5742), - [anon_sym_LT_LT_EQ] = ACTIONS(5742), - [anon_sym_GT_GT_EQ] = ACTIONS(5742), - [anon_sym_AMP_EQ] = ACTIONS(5742), - [anon_sym_CARET_EQ] = ACTIONS(5742), - [anon_sym_PIPE_EQ] = ACTIONS(5742), - [anon_sym_and_eq] = ACTIONS(5740), - [anon_sym_or_eq] = ACTIONS(5740), - [anon_sym_xor_eq] = ACTIONS(5740), - [anon_sym_LT_EQ_GT] = ACTIONS(5742), - [anon_sym_or] = ACTIONS(5740), - [anon_sym_and] = ACTIONS(5740), - [anon_sym_bitor] = ACTIONS(5740), - [anon_sym_xor] = ACTIONS(5740), - [anon_sym_bitand] = ACTIONS(5740), - [anon_sym_not_eq] = ACTIONS(5740), - [anon_sym_DASH_DASH] = ACTIONS(5742), - [anon_sym_PLUS_PLUS] = ACTIONS(5742), - [anon_sym_DOT] = ACTIONS(5740), - [anon_sym_DOT_STAR] = ACTIONS(5742), - [anon_sym_DASH_GT] = ACTIONS(5742), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5740), - [anon_sym_decltype] = ACTIONS(5740), - }, - [2290] = { - [sym_identifier] = ACTIONS(5663), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5665), - [anon_sym_COMMA] = ACTIONS(5665), - [anon_sym_RPAREN] = ACTIONS(5665), - [aux_sym_preproc_if_token2] = ACTIONS(5665), - [aux_sym_preproc_else_token1] = ACTIONS(5665), - [aux_sym_preproc_elif_token1] = ACTIONS(5663), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5665), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5665), - [anon_sym_LPAREN2] = ACTIONS(5665), - [anon_sym_DASH] = ACTIONS(5663), - [anon_sym_PLUS] = ACTIONS(5663), - [anon_sym_STAR] = ACTIONS(5663), - [anon_sym_SLASH] = ACTIONS(5663), - [anon_sym_PERCENT] = ACTIONS(5663), - [anon_sym_PIPE_PIPE] = ACTIONS(5665), - [anon_sym_AMP_AMP] = ACTIONS(5665), - [anon_sym_PIPE] = ACTIONS(5663), - [anon_sym_CARET] = ACTIONS(5663), - [anon_sym_AMP] = ACTIONS(5663), - [anon_sym_EQ_EQ] = ACTIONS(5665), - [anon_sym_BANG_EQ] = ACTIONS(5665), - [anon_sym_GT] = ACTIONS(5663), - [anon_sym_GT_EQ] = ACTIONS(5665), - [anon_sym_LT_EQ] = ACTIONS(5663), - [anon_sym_LT] = ACTIONS(5663), - [anon_sym_LT_LT] = ACTIONS(5663), - [anon_sym_GT_GT] = ACTIONS(5663), - [anon_sym_SEMI] = ACTIONS(5665), - [anon_sym___attribute__] = ACTIONS(5663), - [anon_sym___attribute] = ACTIONS(5663), - [anon_sym_COLON] = ACTIONS(5665), - [anon_sym_LBRACE] = ACTIONS(5665), - [anon_sym_RBRACE] = ACTIONS(5665), - [anon_sym_LBRACK] = ACTIONS(5665), - [anon_sym_RBRACK] = ACTIONS(5665), - [anon_sym_EQ] = ACTIONS(5663), - [anon_sym_QMARK] = ACTIONS(5665), - [anon_sym_STAR_EQ] = ACTIONS(5665), - [anon_sym_SLASH_EQ] = ACTIONS(5665), - [anon_sym_PERCENT_EQ] = ACTIONS(5665), - [anon_sym_PLUS_EQ] = ACTIONS(5665), - [anon_sym_DASH_EQ] = ACTIONS(5665), - [anon_sym_LT_LT_EQ] = ACTIONS(5665), - [anon_sym_GT_GT_EQ] = ACTIONS(5665), - [anon_sym_AMP_EQ] = ACTIONS(5665), - [anon_sym_CARET_EQ] = ACTIONS(5665), - [anon_sym_PIPE_EQ] = ACTIONS(5665), - [anon_sym_and_eq] = ACTIONS(5663), - [anon_sym_or_eq] = ACTIONS(5663), - [anon_sym_xor_eq] = ACTIONS(5663), - [anon_sym_LT_EQ_GT] = ACTIONS(5665), - [anon_sym_or] = ACTIONS(5663), - [anon_sym_and] = ACTIONS(5663), - [anon_sym_bitor] = ACTIONS(5663), - [anon_sym_xor] = ACTIONS(5663), - [anon_sym_bitand] = ACTIONS(5663), - [anon_sym_not_eq] = ACTIONS(5663), - [anon_sym_DASH_DASH] = ACTIONS(5665), - [anon_sym_PLUS_PLUS] = ACTIONS(5665), - [anon_sym_DOT] = ACTIONS(5663), - [anon_sym_DOT_STAR] = ACTIONS(5665), - [anon_sym_DASH_GT] = ACTIONS(5665), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5663), - [anon_sym_decltype] = ACTIONS(5663), - }, - [2291] = { - [sym_identifier] = ACTIONS(5617), - [anon_sym_LPAREN2] = ACTIONS(5619), - [anon_sym_TILDE] = ACTIONS(5619), - [anon_sym_STAR] = ACTIONS(5619), - [anon_sym_PIPE_PIPE] = ACTIONS(5619), - [anon_sym_AMP_AMP] = ACTIONS(5619), - [anon_sym_AMP] = ACTIONS(5617), - [anon_sym___extension__] = ACTIONS(5617), - [anon_sym_virtual] = ACTIONS(5617), - [anon_sym_extern] = ACTIONS(5617), - [anon_sym___attribute__] = ACTIONS(5617), - [anon_sym___attribute] = ACTIONS(5617), - [anon_sym_using] = ACTIONS(5617), - [anon_sym_COLON_COLON] = ACTIONS(5454), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5619), - [anon_sym___declspec] = ACTIONS(5617), - [anon_sym___based] = ACTIONS(5617), - [anon_sym___cdecl] = ACTIONS(5617), - [anon_sym___clrcall] = ACTIONS(5617), - [anon_sym___stdcall] = ACTIONS(5617), - [anon_sym___fastcall] = ACTIONS(5617), - [anon_sym___thiscall] = ACTIONS(5617), - [anon_sym___vectorcall] = ACTIONS(5617), - [anon_sym_signed] = ACTIONS(5617), - [anon_sym_unsigned] = ACTIONS(5617), - [anon_sym_long] = ACTIONS(5617), - [anon_sym_short] = ACTIONS(5617), - [anon_sym_LBRACK] = ACTIONS(5617), - [anon_sym_static] = ACTIONS(5617), - [anon_sym_register] = ACTIONS(5617), - [anon_sym_inline] = ACTIONS(5617), - [anon_sym___inline] = ACTIONS(5617), - [anon_sym___inline__] = ACTIONS(5617), - [anon_sym___forceinline] = ACTIONS(5617), - [anon_sym_thread_local] = ACTIONS(5617), - [anon_sym___thread] = ACTIONS(5617), - [anon_sym_const] = ACTIONS(5617), - [anon_sym_constexpr] = ACTIONS(5617), - [anon_sym_volatile] = ACTIONS(5617), - [anon_sym_restrict] = ACTIONS(5617), - [anon_sym___restrict__] = ACTIONS(5617), - [anon_sym__Atomic] = ACTIONS(5617), - [anon_sym__Noreturn] = ACTIONS(5617), - [anon_sym_noreturn] = ACTIONS(5617), - [anon_sym__Nonnull] = ACTIONS(5617), - [anon_sym_mutable] = ACTIONS(5617), - [anon_sym_constinit] = ACTIONS(5617), - [anon_sym_consteval] = ACTIONS(5617), - [anon_sym_alignas] = ACTIONS(5617), - [anon_sym__Alignas] = ACTIONS(5617), - [sym_primitive_type] = ACTIONS(5617), - [anon_sym_enum] = ACTIONS(5617), - [anon_sym_class] = ACTIONS(5617), - [anon_sym_struct] = ACTIONS(5617), - [anon_sym_union] = ACTIONS(5617), - [anon_sym_or] = ACTIONS(5617), - [anon_sym_and] = ACTIONS(5617), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5617), - [anon_sym_decltype] = ACTIONS(5617), - [anon_sym_explicit] = ACTIONS(5617), - [anon_sym_typename] = ACTIONS(5617), - [anon_sym_template] = ACTIONS(5617), - [anon_sym_operator] = ACTIONS(5617), - [anon_sym_friend] = ACTIONS(5617), - [anon_sym_concept] = ACTIONS(5617), - }, - [2292] = { - [sym_identifier] = ACTIONS(5617), - [anon_sym_LPAREN2] = ACTIONS(5619), - [anon_sym_TILDE] = ACTIONS(5619), - [anon_sym_STAR] = ACTIONS(5619), - [anon_sym_PIPE_PIPE] = ACTIONS(5619), - [anon_sym_AMP_AMP] = ACTIONS(5619), - [anon_sym_AMP] = ACTIONS(5617), - [anon_sym___extension__] = ACTIONS(5617), - [anon_sym_virtual] = ACTIONS(5617), - [anon_sym_extern] = ACTIONS(5617), - [anon_sym___attribute__] = ACTIONS(5617), - [anon_sym___attribute] = ACTIONS(5617), - [anon_sym_using] = ACTIONS(5617), - [anon_sym_COLON_COLON] = ACTIONS(5454), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5619), - [anon_sym___declspec] = ACTIONS(5617), - [anon_sym___based] = ACTIONS(5617), - [anon_sym___cdecl] = ACTIONS(5617), - [anon_sym___clrcall] = ACTIONS(5617), - [anon_sym___stdcall] = ACTIONS(5617), - [anon_sym___fastcall] = ACTIONS(5617), - [anon_sym___thiscall] = ACTIONS(5617), - [anon_sym___vectorcall] = ACTIONS(5617), - [anon_sym_signed] = ACTIONS(5617), - [anon_sym_unsigned] = ACTIONS(5617), - [anon_sym_long] = ACTIONS(5617), - [anon_sym_short] = ACTIONS(5617), - [anon_sym_LBRACK] = ACTIONS(5617), - [anon_sym_static] = ACTIONS(5617), - [anon_sym_register] = ACTIONS(5617), - [anon_sym_inline] = ACTIONS(5617), - [anon_sym___inline] = ACTIONS(5617), - [anon_sym___inline__] = ACTIONS(5617), - [anon_sym___forceinline] = ACTIONS(5617), - [anon_sym_thread_local] = ACTIONS(5617), - [anon_sym___thread] = ACTIONS(5617), - [anon_sym_const] = ACTIONS(5617), - [anon_sym_constexpr] = ACTIONS(5617), - [anon_sym_volatile] = ACTIONS(5617), - [anon_sym_restrict] = ACTIONS(5617), - [anon_sym___restrict__] = ACTIONS(5617), - [anon_sym__Atomic] = ACTIONS(5617), - [anon_sym__Noreturn] = ACTIONS(5617), - [anon_sym_noreturn] = ACTIONS(5617), - [anon_sym__Nonnull] = ACTIONS(5617), - [anon_sym_mutable] = ACTIONS(5617), - [anon_sym_constinit] = ACTIONS(5617), - [anon_sym_consteval] = ACTIONS(5617), - [anon_sym_alignas] = ACTIONS(5617), - [anon_sym__Alignas] = ACTIONS(5617), - [sym_primitive_type] = ACTIONS(5617), - [anon_sym_enum] = ACTIONS(5617), - [anon_sym_class] = ACTIONS(5617), - [anon_sym_struct] = ACTIONS(5617), - [anon_sym_union] = ACTIONS(5617), - [anon_sym_or] = ACTIONS(5617), - [anon_sym_and] = ACTIONS(5617), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5617), - [anon_sym_decltype] = ACTIONS(5617), - [anon_sym_explicit] = ACTIONS(5617), - [anon_sym_typename] = ACTIONS(5617), - [anon_sym_template] = ACTIONS(5617), - [anon_sym_operator] = ACTIONS(5617), - [anon_sym_friend] = ACTIONS(5617), - [anon_sym_concept] = ACTIONS(5617), - }, - [2293] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2293), - [sym_identifier] = ACTIONS(5070), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5072), - [anon_sym_COMMA] = ACTIONS(5072), - [aux_sym_preproc_if_token2] = ACTIONS(5072), - [aux_sym_preproc_else_token1] = ACTIONS(5072), - [aux_sym_preproc_elif_token1] = ACTIONS(5070), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5072), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5072), - [anon_sym_LPAREN2] = ACTIONS(5072), - [anon_sym_DASH] = ACTIONS(5070), - [anon_sym_PLUS] = ACTIONS(5070), - [anon_sym_STAR] = ACTIONS(5070), - [anon_sym_SLASH] = ACTIONS(5070), - [anon_sym_PERCENT] = ACTIONS(5070), - [anon_sym_PIPE_PIPE] = ACTIONS(5072), - [anon_sym_AMP_AMP] = ACTIONS(5072), - [anon_sym_PIPE] = ACTIONS(5070), - [anon_sym_CARET] = ACTIONS(5070), - [anon_sym_AMP] = ACTIONS(5070), - [anon_sym_EQ_EQ] = ACTIONS(5072), - [anon_sym_BANG_EQ] = ACTIONS(5072), - [anon_sym_GT] = ACTIONS(5070), - [anon_sym_GT_EQ] = ACTIONS(5072), - [anon_sym_LT_EQ] = ACTIONS(5070), - [anon_sym_LT] = ACTIONS(5070), - [anon_sym_LT_LT] = ACTIONS(5070), - [anon_sym_GT_GT] = ACTIONS(5070), - [anon_sym___attribute__] = ACTIONS(5070), - [anon_sym___attribute] = ACTIONS(5070), - [anon_sym_LBRACE] = ACTIONS(5072), - [anon_sym_signed] = ACTIONS(6292), - [anon_sym_unsigned] = ACTIONS(6292), - [anon_sym_long] = ACTIONS(6292), - [anon_sym_short] = ACTIONS(6292), - [anon_sym_LBRACK] = ACTIONS(5072), - [anon_sym_EQ] = ACTIONS(5070), - [anon_sym_QMARK] = ACTIONS(5072), - [anon_sym_STAR_EQ] = ACTIONS(5072), - [anon_sym_SLASH_EQ] = ACTIONS(5072), - [anon_sym_PERCENT_EQ] = ACTIONS(5072), - [anon_sym_PLUS_EQ] = ACTIONS(5072), - [anon_sym_DASH_EQ] = ACTIONS(5072), - [anon_sym_LT_LT_EQ] = ACTIONS(5072), - [anon_sym_GT_GT_EQ] = ACTIONS(5072), - [anon_sym_AMP_EQ] = ACTIONS(5072), - [anon_sym_CARET_EQ] = ACTIONS(5072), - [anon_sym_PIPE_EQ] = ACTIONS(5072), - [anon_sym_and_eq] = ACTIONS(5070), - [anon_sym_or_eq] = ACTIONS(5070), - [anon_sym_xor_eq] = ACTIONS(5070), - [anon_sym_LT_EQ_GT] = ACTIONS(5072), - [anon_sym_or] = ACTIONS(5070), - [anon_sym_and] = ACTIONS(5070), - [anon_sym_bitor] = ACTIONS(5070), - [anon_sym_xor] = ACTIONS(5070), - [anon_sym_bitand] = ACTIONS(5070), - [anon_sym_not_eq] = ACTIONS(5070), - [anon_sym_DASH_DASH] = ACTIONS(5072), - [anon_sym_PLUS_PLUS] = ACTIONS(5072), - [anon_sym_DOT] = ACTIONS(5070), - [anon_sym_DOT_STAR] = ACTIONS(5072), - [anon_sym_DASH_GT] = ACTIONS(5072), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5070), - [anon_sym_decltype] = ACTIONS(5070), - }, - [2294] = { - [sym_identifier] = ACTIONS(5762), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5764), - [anon_sym_COMMA] = ACTIONS(5764), - [anon_sym_RPAREN] = ACTIONS(5764), - [aux_sym_preproc_if_token2] = ACTIONS(5764), - [aux_sym_preproc_else_token1] = ACTIONS(5764), - [aux_sym_preproc_elif_token1] = ACTIONS(5762), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5764), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5764), - [anon_sym_LPAREN2] = ACTIONS(5764), - [anon_sym_DASH] = ACTIONS(5762), - [anon_sym_PLUS] = ACTIONS(5762), - [anon_sym_STAR] = ACTIONS(5762), - [anon_sym_SLASH] = ACTIONS(5762), - [anon_sym_PERCENT] = ACTIONS(5762), - [anon_sym_PIPE_PIPE] = ACTIONS(5764), - [anon_sym_AMP_AMP] = ACTIONS(5764), - [anon_sym_PIPE] = ACTIONS(5762), - [anon_sym_CARET] = ACTIONS(5762), - [anon_sym_AMP] = ACTIONS(5762), - [anon_sym_EQ_EQ] = ACTIONS(5764), - [anon_sym_BANG_EQ] = ACTIONS(5764), - [anon_sym_GT] = ACTIONS(5762), - [anon_sym_GT_EQ] = ACTIONS(5764), - [anon_sym_LT_EQ] = ACTIONS(5762), - [anon_sym_LT] = ACTIONS(5762), - [anon_sym_LT_LT] = ACTIONS(5762), - [anon_sym_GT_GT] = ACTIONS(5762), - [anon_sym_SEMI] = ACTIONS(5764), - [anon_sym___attribute__] = ACTIONS(5762), - [anon_sym___attribute] = ACTIONS(5762), - [anon_sym_COLON] = ACTIONS(5764), - [anon_sym_LBRACE] = ACTIONS(5764), - [anon_sym_RBRACE] = ACTIONS(5764), - [anon_sym_LBRACK] = ACTIONS(5764), - [anon_sym_RBRACK] = ACTIONS(5764), - [anon_sym_EQ] = ACTIONS(5762), - [anon_sym_QMARK] = ACTIONS(5764), - [anon_sym_STAR_EQ] = ACTIONS(5764), - [anon_sym_SLASH_EQ] = ACTIONS(5764), - [anon_sym_PERCENT_EQ] = ACTIONS(5764), - [anon_sym_PLUS_EQ] = ACTIONS(5764), - [anon_sym_DASH_EQ] = ACTIONS(5764), - [anon_sym_LT_LT_EQ] = ACTIONS(5764), - [anon_sym_GT_GT_EQ] = ACTIONS(5764), - [anon_sym_AMP_EQ] = ACTIONS(5764), - [anon_sym_CARET_EQ] = ACTIONS(5764), - [anon_sym_PIPE_EQ] = ACTIONS(5764), - [anon_sym_and_eq] = ACTIONS(5762), - [anon_sym_or_eq] = ACTIONS(5762), - [anon_sym_xor_eq] = ACTIONS(5762), - [anon_sym_LT_EQ_GT] = ACTIONS(5764), - [anon_sym_or] = ACTIONS(5762), - [anon_sym_and] = ACTIONS(5762), - [anon_sym_bitor] = ACTIONS(5762), - [anon_sym_xor] = ACTIONS(5762), - [anon_sym_bitand] = ACTIONS(5762), - [anon_sym_not_eq] = ACTIONS(5762), - [anon_sym_DASH_DASH] = ACTIONS(5764), - [anon_sym_PLUS_PLUS] = ACTIONS(5764), - [anon_sym_DOT] = ACTIONS(5762), - [anon_sym_DOT_STAR] = ACTIONS(5764), - [anon_sym_DASH_GT] = ACTIONS(5764), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5762), - [anon_sym_decltype] = ACTIONS(5762), - }, - [2295] = { - [sym_template_argument_list] = STATE(2338), - [sym_identifier] = ACTIONS(4972), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4965), - [anon_sym_COMMA] = ACTIONS(4965), - [anon_sym_RPAREN] = ACTIONS(4965), - [aux_sym_preproc_if_token2] = ACTIONS(4965), - [aux_sym_preproc_else_token1] = ACTIONS(4965), - [aux_sym_preproc_elif_token1] = ACTIONS(4972), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4965), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4965), - [anon_sym_LPAREN2] = ACTIONS(4965), - [anon_sym_DASH] = ACTIONS(4972), - [anon_sym_PLUS] = ACTIONS(4972), - [anon_sym_STAR] = ACTIONS(4972), - [anon_sym_SLASH] = ACTIONS(4972), - [anon_sym_PERCENT] = ACTIONS(4972), - [anon_sym_PIPE_PIPE] = ACTIONS(4965), - [anon_sym_AMP_AMP] = ACTIONS(4965), - [anon_sym_PIPE] = ACTIONS(4972), - [anon_sym_CARET] = ACTIONS(4972), - [anon_sym_AMP] = ACTIONS(4972), - [anon_sym_EQ_EQ] = ACTIONS(4965), - [anon_sym_BANG_EQ] = ACTIONS(4965), - [anon_sym_GT] = ACTIONS(4972), - [anon_sym_GT_EQ] = ACTIONS(4965), - [anon_sym_LT_EQ] = ACTIONS(4972), - [anon_sym_LT] = ACTIONS(5835), - [anon_sym_LT_LT] = ACTIONS(4972), - [anon_sym_GT_GT] = ACTIONS(4972), - [anon_sym_SEMI] = ACTIONS(4965), - [anon_sym___attribute__] = ACTIONS(4972), - [anon_sym___attribute] = ACTIONS(4972), - [anon_sym_COLON] = ACTIONS(4972), - [anon_sym_COLON_COLON] = ACTIONS(4167), - [anon_sym_LBRACE] = ACTIONS(4970), - [anon_sym_RBRACE] = ACTIONS(4965), - [anon_sym_LBRACK] = ACTIONS(4965), - [anon_sym_RBRACK] = ACTIONS(4965), - [anon_sym_EQ] = ACTIONS(4972), - [anon_sym_QMARK] = ACTIONS(4965), - [anon_sym_STAR_EQ] = ACTIONS(4965), - [anon_sym_SLASH_EQ] = ACTIONS(4965), - [anon_sym_PERCENT_EQ] = ACTIONS(4965), - [anon_sym_PLUS_EQ] = ACTIONS(4965), - [anon_sym_DASH_EQ] = ACTIONS(4965), - [anon_sym_LT_LT_EQ] = ACTIONS(4965), - [anon_sym_GT_GT_EQ] = ACTIONS(4965), - [anon_sym_AMP_EQ] = ACTIONS(4965), - [anon_sym_CARET_EQ] = ACTIONS(4965), - [anon_sym_PIPE_EQ] = ACTIONS(4965), - [anon_sym_and_eq] = ACTIONS(4972), - [anon_sym_or_eq] = ACTIONS(4972), - [anon_sym_xor_eq] = ACTIONS(4972), - [anon_sym_LT_EQ_GT] = ACTIONS(4965), - [anon_sym_or] = ACTIONS(4972), - [anon_sym_and] = ACTIONS(4972), - [anon_sym_bitor] = ACTIONS(4972), - [anon_sym_xor] = ACTIONS(4972), - [anon_sym_bitand] = ACTIONS(4972), - [anon_sym_not_eq] = ACTIONS(4972), - [anon_sym_DASH_DASH] = ACTIONS(4965), - [anon_sym_PLUS_PLUS] = ACTIONS(4965), - [anon_sym_DOT] = ACTIONS(4972), - [anon_sym_DOT_STAR] = ACTIONS(4965), - [anon_sym_DASH_GT] = ACTIONS(4965), - [sym_comment] = ACTIONS(3), - }, - [2296] = { - [sym_identifier] = ACTIONS(5617), - [anon_sym_LPAREN2] = ACTIONS(5619), - [anon_sym_TILDE] = ACTIONS(5619), - [anon_sym_STAR] = ACTIONS(5619), - [anon_sym_PIPE_PIPE] = ACTIONS(5619), - [anon_sym_AMP_AMP] = ACTIONS(5619), - [anon_sym_AMP] = ACTIONS(5617), - [anon_sym___extension__] = ACTIONS(5617), - [anon_sym_virtual] = ACTIONS(5617), - [anon_sym_extern] = ACTIONS(5617), - [anon_sym___attribute__] = ACTIONS(5617), - [anon_sym___attribute] = ACTIONS(5617), - [anon_sym_using] = ACTIONS(5617), - [anon_sym_COLON_COLON] = ACTIONS(5619), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5619), - [anon_sym___declspec] = ACTIONS(5617), - [anon_sym___based] = ACTIONS(5617), - [anon_sym___cdecl] = ACTIONS(5617), - [anon_sym___clrcall] = ACTIONS(5617), - [anon_sym___stdcall] = ACTIONS(5617), - [anon_sym___fastcall] = ACTIONS(5617), - [anon_sym___thiscall] = ACTIONS(5617), - [anon_sym___vectorcall] = ACTIONS(5617), - [anon_sym_signed] = ACTIONS(5617), - [anon_sym_unsigned] = ACTIONS(5617), - [anon_sym_long] = ACTIONS(5617), - [anon_sym_short] = ACTIONS(5617), - [anon_sym_LBRACK] = ACTIONS(5617), - [anon_sym_static] = ACTIONS(5617), - [anon_sym_register] = ACTIONS(5617), - [anon_sym_inline] = ACTIONS(5617), - [anon_sym___inline] = ACTIONS(5617), - [anon_sym___inline__] = ACTIONS(5617), - [anon_sym___forceinline] = ACTIONS(5617), - [anon_sym_thread_local] = ACTIONS(5617), - [anon_sym___thread] = ACTIONS(5617), - [anon_sym_const] = ACTIONS(5617), - [anon_sym_constexpr] = ACTIONS(5617), - [anon_sym_volatile] = ACTIONS(5617), - [anon_sym_restrict] = ACTIONS(5617), - [anon_sym___restrict__] = ACTIONS(5617), - [anon_sym__Atomic] = ACTIONS(5617), - [anon_sym__Noreturn] = ACTIONS(5617), - [anon_sym_noreturn] = ACTIONS(5617), - [anon_sym__Nonnull] = ACTIONS(5617), - [anon_sym_mutable] = ACTIONS(5617), - [anon_sym_constinit] = ACTIONS(5617), - [anon_sym_consteval] = ACTIONS(5617), - [anon_sym_alignas] = ACTIONS(5617), - [anon_sym__Alignas] = ACTIONS(5617), - [sym_primitive_type] = ACTIONS(5617), - [anon_sym_enum] = ACTIONS(5617), - [anon_sym_class] = ACTIONS(5617), - [anon_sym_struct] = ACTIONS(5617), - [anon_sym_union] = ACTIONS(5617), - [anon_sym_or] = ACTIONS(5617), - [anon_sym_and] = ACTIONS(5617), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5617), - [anon_sym_decltype] = ACTIONS(5617), - [anon_sym_explicit] = ACTIONS(5617), - [anon_sym_typename] = ACTIONS(5617), - [anon_sym_template] = ACTIONS(5617), - [anon_sym_operator] = ACTIONS(5617), - [anon_sym_friend] = ACTIONS(5617), - [anon_sym_concept] = ACTIONS(5617), - }, - [2297] = { - [sym_string_literal] = STATE(1992), - [sym_raw_string_literal] = STATE(1992), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5914), - [anon_sym_COMMA] = ACTIONS(5914), - [anon_sym_LPAREN2] = ACTIONS(5914), - [anon_sym_DASH] = ACTIONS(5912), - [anon_sym_PLUS] = ACTIONS(5912), - [anon_sym_STAR] = ACTIONS(5912), - [anon_sym_SLASH] = ACTIONS(5912), - [anon_sym_PERCENT] = ACTIONS(5912), - [anon_sym_PIPE_PIPE] = ACTIONS(5914), - [anon_sym_AMP_AMP] = ACTIONS(5914), - [anon_sym_PIPE] = ACTIONS(5912), - [anon_sym_CARET] = ACTIONS(5912), - [anon_sym_AMP] = ACTIONS(5912), - [anon_sym_EQ_EQ] = ACTIONS(5914), - [anon_sym_BANG_EQ] = ACTIONS(5914), - [anon_sym_GT] = ACTIONS(5912), - [anon_sym_GT_EQ] = ACTIONS(5914), - [anon_sym_LT_EQ] = ACTIONS(5912), - [anon_sym_LT] = ACTIONS(5912), - [anon_sym_LT_LT] = ACTIONS(5912), - [anon_sym_GT_GT] = ACTIONS(5912), - [anon_sym_SEMI] = ACTIONS(5914), - [anon_sym___attribute__] = ACTIONS(5912), - [anon_sym___attribute] = ACTIONS(5912), - [anon_sym_LBRACK] = ACTIONS(5914), - [anon_sym_EQ] = ACTIONS(5912), - [anon_sym_QMARK] = ACTIONS(5914), - [anon_sym_STAR_EQ] = ACTIONS(5914), - [anon_sym_SLASH_EQ] = ACTIONS(5914), - [anon_sym_PERCENT_EQ] = ACTIONS(5914), - [anon_sym_PLUS_EQ] = ACTIONS(5914), - [anon_sym_DASH_EQ] = ACTIONS(5914), - [anon_sym_LT_LT_EQ] = ACTIONS(5914), - [anon_sym_GT_GT_EQ] = ACTIONS(5914), - [anon_sym_AMP_EQ] = ACTIONS(5914), - [anon_sym_CARET_EQ] = ACTIONS(5914), - [anon_sym_PIPE_EQ] = ACTIONS(5914), - [anon_sym_and_eq] = ACTIONS(5912), - [anon_sym_or_eq] = ACTIONS(5912), - [anon_sym_xor_eq] = ACTIONS(5912), - [anon_sym_LT_EQ_GT] = ACTIONS(5914), - [anon_sym_or] = ACTIONS(5912), - [anon_sym_and] = ACTIONS(5912), - [anon_sym_bitor] = ACTIONS(5912), - [anon_sym_xor] = ACTIONS(5912), - [anon_sym_bitand] = ACTIONS(5912), - [anon_sym_not_eq] = ACTIONS(5912), - [anon_sym_DASH_DASH] = ACTIONS(5914), - [anon_sym_PLUS_PLUS] = ACTIONS(5914), - [anon_sym_DOT] = ACTIONS(5912), - [anon_sym_DOT_STAR] = ACTIONS(5914), - [anon_sym_DASH_GT] = ACTIONS(5914), - [anon_sym_L_DQUOTE] = ACTIONS(5954), - [anon_sym_u_DQUOTE] = ACTIONS(5954), - [anon_sym_U_DQUOTE] = ACTIONS(5954), - [anon_sym_u8_DQUOTE] = ACTIONS(5954), - [anon_sym_DQUOTE] = ACTIONS(5954), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5956), - [anon_sym_LR_DQUOTE] = ACTIONS(5956), - [anon_sym_uR_DQUOTE] = ACTIONS(5956), - [anon_sym_UR_DQUOTE] = ACTIONS(5956), - [anon_sym_u8R_DQUOTE] = ACTIONS(5956), - [sym_literal_suffix] = ACTIONS(5912), - }, - [2298] = { - [sym_identifier] = ACTIONS(6295), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6297), - [anon_sym_COMMA] = ACTIONS(6297), - [anon_sym_RPAREN] = ACTIONS(6297), - [aux_sym_preproc_if_token2] = ACTIONS(6297), - [aux_sym_preproc_else_token1] = ACTIONS(6297), - [aux_sym_preproc_elif_token1] = ACTIONS(6295), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6297), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6297), - [anon_sym_LPAREN2] = ACTIONS(6297), - [anon_sym_DASH] = ACTIONS(6295), - [anon_sym_PLUS] = ACTIONS(6295), - [anon_sym_STAR] = ACTIONS(6295), - [anon_sym_SLASH] = ACTIONS(6295), - [anon_sym_PERCENT] = ACTIONS(6295), - [anon_sym_PIPE_PIPE] = ACTIONS(6297), - [anon_sym_AMP_AMP] = ACTIONS(6297), - [anon_sym_PIPE] = ACTIONS(6295), - [anon_sym_CARET] = ACTIONS(6295), - [anon_sym_AMP] = ACTIONS(6295), - [anon_sym_EQ_EQ] = ACTIONS(6297), - [anon_sym_BANG_EQ] = ACTIONS(6297), - [anon_sym_GT] = ACTIONS(6295), - [anon_sym_GT_EQ] = ACTIONS(6297), - [anon_sym_LT_EQ] = ACTIONS(6295), - [anon_sym_LT] = ACTIONS(6295), - [anon_sym_LT_LT] = ACTIONS(6295), - [anon_sym_GT_GT] = ACTIONS(6295), - [anon_sym_SEMI] = ACTIONS(6297), - [anon_sym___attribute__] = ACTIONS(6295), - [anon_sym___attribute] = ACTIONS(6295), - [anon_sym_COLON] = ACTIONS(6297), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6297), - [anon_sym_LBRACE] = ACTIONS(6297), - [anon_sym_RBRACE] = ACTIONS(6297), - [anon_sym_LBRACK] = ACTIONS(6295), - [anon_sym_RBRACK] = ACTIONS(6297), - [anon_sym_EQ] = ACTIONS(6295), - [anon_sym_QMARK] = ACTIONS(6297), - [anon_sym_STAR_EQ] = ACTIONS(6297), - [anon_sym_SLASH_EQ] = ACTIONS(6297), - [anon_sym_PERCENT_EQ] = ACTIONS(6297), - [anon_sym_PLUS_EQ] = ACTIONS(6297), - [anon_sym_DASH_EQ] = ACTIONS(6297), - [anon_sym_LT_LT_EQ] = ACTIONS(6297), - [anon_sym_GT_GT_EQ] = ACTIONS(6297), - [anon_sym_AMP_EQ] = ACTIONS(6297), - [anon_sym_CARET_EQ] = ACTIONS(6297), - [anon_sym_PIPE_EQ] = ACTIONS(6297), - [anon_sym_and_eq] = ACTIONS(6295), - [anon_sym_or_eq] = ACTIONS(6295), - [anon_sym_xor_eq] = ACTIONS(6295), - [anon_sym_LT_EQ_GT] = ACTIONS(6297), - [anon_sym_or] = ACTIONS(6295), - [anon_sym_and] = ACTIONS(6295), - [anon_sym_bitor] = ACTIONS(6295), - [anon_sym_xor] = ACTIONS(6295), - [anon_sym_bitand] = ACTIONS(6295), - [anon_sym_not_eq] = ACTIONS(6295), - [anon_sym_DASH_DASH] = ACTIONS(6297), - [anon_sym_PLUS_PLUS] = ACTIONS(6297), - [anon_sym_DOT] = ACTIONS(6295), - [anon_sym_DOT_STAR] = ACTIONS(6297), - [anon_sym_DASH_GT] = ACTIONS(6297), - [sym_comment] = ACTIONS(3), - [anon_sym_try] = ACTIONS(6295), - }, - [2299] = { - [sym_identifier] = ACTIONS(5766), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5768), - [anon_sym_COMMA] = ACTIONS(5768), - [anon_sym_RPAREN] = ACTIONS(5768), - [aux_sym_preproc_if_token2] = ACTIONS(5768), - [aux_sym_preproc_else_token1] = ACTIONS(5768), - [aux_sym_preproc_elif_token1] = ACTIONS(5766), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5768), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5768), - [anon_sym_LPAREN2] = ACTIONS(5768), - [anon_sym_DASH] = ACTIONS(5766), - [anon_sym_PLUS] = ACTIONS(5766), - [anon_sym_STAR] = ACTIONS(5766), - [anon_sym_SLASH] = ACTIONS(5766), - [anon_sym_PERCENT] = ACTIONS(5766), - [anon_sym_PIPE_PIPE] = ACTIONS(5768), - [anon_sym_AMP_AMP] = ACTIONS(5768), - [anon_sym_PIPE] = ACTIONS(5766), - [anon_sym_CARET] = ACTIONS(5766), - [anon_sym_AMP] = ACTIONS(5766), - [anon_sym_EQ_EQ] = ACTIONS(5768), - [anon_sym_BANG_EQ] = ACTIONS(5768), - [anon_sym_GT] = ACTIONS(5766), - [anon_sym_GT_EQ] = ACTIONS(5768), - [anon_sym_LT_EQ] = ACTIONS(5766), - [anon_sym_LT] = ACTIONS(5766), - [anon_sym_LT_LT] = ACTIONS(5766), - [anon_sym_GT_GT] = ACTIONS(5766), - [anon_sym_SEMI] = ACTIONS(5768), - [anon_sym___attribute__] = ACTIONS(5766), - [anon_sym___attribute] = ACTIONS(5766), - [anon_sym_COLON] = ACTIONS(5768), - [anon_sym_LBRACE] = ACTIONS(5768), - [anon_sym_RBRACE] = ACTIONS(5768), - [anon_sym_LBRACK] = ACTIONS(5768), - [anon_sym_RBRACK] = ACTIONS(5768), - [anon_sym_EQ] = ACTIONS(5766), - [anon_sym_QMARK] = ACTIONS(5768), - [anon_sym_STAR_EQ] = ACTIONS(5768), - [anon_sym_SLASH_EQ] = ACTIONS(5768), - [anon_sym_PERCENT_EQ] = ACTIONS(5768), - [anon_sym_PLUS_EQ] = ACTIONS(5768), - [anon_sym_DASH_EQ] = ACTIONS(5768), - [anon_sym_LT_LT_EQ] = ACTIONS(5768), - [anon_sym_GT_GT_EQ] = ACTIONS(5768), - [anon_sym_AMP_EQ] = ACTIONS(5768), - [anon_sym_CARET_EQ] = ACTIONS(5768), - [anon_sym_PIPE_EQ] = ACTIONS(5768), - [anon_sym_and_eq] = ACTIONS(5766), - [anon_sym_or_eq] = ACTIONS(5766), - [anon_sym_xor_eq] = ACTIONS(5766), - [anon_sym_LT_EQ_GT] = ACTIONS(5768), - [anon_sym_or] = ACTIONS(5766), - [anon_sym_and] = ACTIONS(5766), - [anon_sym_bitor] = ACTIONS(5766), - [anon_sym_xor] = ACTIONS(5766), - [anon_sym_bitand] = ACTIONS(5766), - [anon_sym_not_eq] = ACTIONS(5766), - [anon_sym_DASH_DASH] = ACTIONS(5768), - [anon_sym_PLUS_PLUS] = ACTIONS(5768), - [anon_sym_DOT] = ACTIONS(5766), - [anon_sym_DOT_STAR] = ACTIONS(5768), - [anon_sym_DASH_GT] = ACTIONS(5768), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5766), - [anon_sym_decltype] = ACTIONS(5766), + [anon_sym_bitor] = ACTIONS(5685), + [anon_sym_xor] = ACTIONS(5685), + [anon_sym_bitand] = ACTIONS(5685), + [anon_sym_not_eq] = ACTIONS(5685), + [anon_sym_DASH_DASH] = ACTIONS(5687), + [anon_sym_PLUS_PLUS] = ACTIONS(5687), + [anon_sym_DOT] = ACTIONS(5685), + [anon_sym_DOT_STAR] = ACTIONS(5687), + [anon_sym_DASH_GT] = ACTIONS(5687), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5685), + [anon_sym_decltype] = ACTIONS(5685), }, - [2300] = { - [sym_string_literal] = STATE(2624), - [sym_template_argument_list] = STATE(3588), - [sym_raw_string_literal] = STATE(2624), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4146), - [anon_sym_COMMA] = ACTIONS(4146), - [anon_sym_LPAREN2] = ACTIONS(4146), - [anon_sym_DASH] = ACTIONS(4154), - [anon_sym_PLUS] = ACTIONS(4154), - [anon_sym_STAR] = ACTIONS(4154), - [anon_sym_SLASH] = ACTIONS(4154), - [anon_sym_PERCENT] = ACTIONS(4154), - [anon_sym_PIPE_PIPE] = ACTIONS(4146), - [anon_sym_AMP_AMP] = ACTIONS(4146), - [anon_sym_PIPE] = ACTIONS(4154), - [anon_sym_CARET] = ACTIONS(4154), - [anon_sym_AMP] = ACTIONS(4154), - [anon_sym_EQ_EQ] = ACTIONS(4146), - [anon_sym_BANG_EQ] = ACTIONS(4146), - [anon_sym_GT] = ACTIONS(4154), - [anon_sym_GT_EQ] = ACTIONS(4146), - [anon_sym_LT_EQ] = ACTIONS(4154), - [anon_sym_LT] = ACTIONS(5077), - [anon_sym_LT_LT] = ACTIONS(4154), - [anon_sym_GT_GT] = ACTIONS(4154), - [anon_sym_COLON_COLON] = ACTIONS(4167), - [anon_sym_LBRACE] = ACTIONS(4172), - [anon_sym_LBRACK] = ACTIONS(4146), - [anon_sym_RBRACK] = ACTIONS(4146), - [anon_sym_EQ] = ACTIONS(6113), - [anon_sym_QMARK] = ACTIONS(4146), - [anon_sym_STAR_EQ] = ACTIONS(6082), - [anon_sym_SLASH_EQ] = ACTIONS(6082), - [anon_sym_PERCENT_EQ] = ACTIONS(6082), - [anon_sym_PLUS_EQ] = ACTIONS(6082), - [anon_sym_DASH_EQ] = ACTIONS(6082), - [anon_sym_LT_LT_EQ] = ACTIONS(6082), - [anon_sym_GT_GT_EQ] = ACTIONS(6082), - [anon_sym_AMP_EQ] = ACTIONS(6082), - [anon_sym_CARET_EQ] = ACTIONS(6082), - [anon_sym_PIPE_EQ] = ACTIONS(6082), - [anon_sym_and_eq] = ACTIONS(6082), - [anon_sym_or_eq] = ACTIONS(6082), - [anon_sym_xor_eq] = ACTIONS(6082), - [anon_sym_LT_EQ_GT] = ACTIONS(4146), - [anon_sym_or] = ACTIONS(4154), - [anon_sym_and] = ACTIONS(4154), - [anon_sym_bitor] = ACTIONS(4146), - [anon_sym_xor] = ACTIONS(4154), - [anon_sym_bitand] = ACTIONS(4146), - [anon_sym_not_eq] = ACTIONS(4146), - [anon_sym_DASH_DASH] = ACTIONS(4146), - [anon_sym_PLUS_PLUS] = ACTIONS(4146), - [anon_sym_DOT] = ACTIONS(4154), - [anon_sym_DOT_STAR] = ACTIONS(4146), - [anon_sym_DASH_GT] = ACTIONS(4146), - [anon_sym_L_DQUOTE] = ACTIONS(3623), - [anon_sym_u_DQUOTE] = ACTIONS(3623), - [anon_sym_U_DQUOTE] = ACTIONS(3623), - [anon_sym_u8_DQUOTE] = ACTIONS(3623), - [anon_sym_DQUOTE] = ACTIONS(3623), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(3627), - [anon_sym_LR_DQUOTE] = ACTIONS(3627), - [anon_sym_uR_DQUOTE] = ACTIONS(3627), - [anon_sym_UR_DQUOTE] = ACTIONS(3627), - [anon_sym_u8R_DQUOTE] = ACTIONS(3627), + [2340] = { + [sym_identifier] = ACTIONS(5689), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5691), + [anon_sym_COMMA] = ACTIONS(5691), + [anon_sym_RPAREN] = ACTIONS(5691), + [aux_sym_preproc_if_token2] = ACTIONS(5691), + [aux_sym_preproc_else_token1] = ACTIONS(5691), + [aux_sym_preproc_elif_token1] = ACTIONS(5689), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5691), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5691), + [anon_sym_LPAREN2] = ACTIONS(5691), + [anon_sym_DASH] = ACTIONS(5689), + [anon_sym_PLUS] = ACTIONS(5689), + [anon_sym_STAR] = ACTIONS(5689), + [anon_sym_SLASH] = ACTIONS(5689), + [anon_sym_PERCENT] = ACTIONS(5689), + [anon_sym_PIPE_PIPE] = ACTIONS(5691), + [anon_sym_AMP_AMP] = ACTIONS(5691), + [anon_sym_PIPE] = ACTIONS(5689), + [anon_sym_CARET] = ACTIONS(5689), + [anon_sym_AMP] = ACTIONS(5689), + [anon_sym_EQ_EQ] = ACTIONS(5691), + [anon_sym_BANG_EQ] = ACTIONS(5691), + [anon_sym_GT] = ACTIONS(5689), + [anon_sym_GT_EQ] = ACTIONS(5691), + [anon_sym_LT_EQ] = ACTIONS(5689), + [anon_sym_LT] = ACTIONS(5689), + [anon_sym_LT_LT] = ACTIONS(5689), + [anon_sym_GT_GT] = ACTIONS(5689), + [anon_sym_SEMI] = ACTIONS(5691), + [anon_sym___attribute__] = ACTIONS(5689), + [anon_sym___attribute] = ACTIONS(5689), + [anon_sym_COLON] = ACTIONS(5691), + [anon_sym_LBRACE] = ACTIONS(5691), + [anon_sym_RBRACE] = ACTIONS(5691), + [anon_sym_LBRACK] = ACTIONS(5691), + [anon_sym_RBRACK] = ACTIONS(5691), + [anon_sym_EQ] = ACTIONS(5689), + [anon_sym_QMARK] = ACTIONS(5691), + [anon_sym_STAR_EQ] = ACTIONS(5691), + [anon_sym_SLASH_EQ] = ACTIONS(5691), + [anon_sym_PERCENT_EQ] = ACTIONS(5691), + [anon_sym_PLUS_EQ] = ACTIONS(5691), + [anon_sym_DASH_EQ] = ACTIONS(5691), + [anon_sym_LT_LT_EQ] = ACTIONS(5691), + [anon_sym_GT_GT_EQ] = ACTIONS(5691), + [anon_sym_AMP_EQ] = ACTIONS(5691), + [anon_sym_CARET_EQ] = ACTIONS(5691), + [anon_sym_PIPE_EQ] = ACTIONS(5691), + [anon_sym_and_eq] = ACTIONS(5689), + [anon_sym_or_eq] = ACTIONS(5689), + [anon_sym_xor_eq] = ACTIONS(5689), + [anon_sym_LT_EQ_GT] = ACTIONS(5691), + [anon_sym_or] = ACTIONS(5689), + [anon_sym_and] = ACTIONS(5689), + [anon_sym_bitor] = ACTIONS(5689), + [anon_sym_xor] = ACTIONS(5689), + [anon_sym_bitand] = ACTIONS(5689), + [anon_sym_not_eq] = ACTIONS(5689), + [anon_sym_DASH_DASH] = ACTIONS(5691), + [anon_sym_PLUS_PLUS] = ACTIONS(5691), + [anon_sym_DOT] = ACTIONS(5689), + [anon_sym_DOT_STAR] = ACTIONS(5691), + [anon_sym_DASH_GT] = ACTIONS(5691), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5689), + [anon_sym_decltype] = ACTIONS(5689), }, - [2301] = { - [sym_string_literal] = STATE(2301), - [sym_raw_string_literal] = STATE(2301), - [aux_sym_concatenated_string_repeat1] = STATE(2301), - [sym_identifier] = ACTIONS(6299), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5403), - [anon_sym_COMMA] = ACTIONS(5403), - [anon_sym_LPAREN2] = ACTIONS(5403), - [anon_sym_DASH] = ACTIONS(5405), - [anon_sym_PLUS] = ACTIONS(5405), - [anon_sym_STAR] = ACTIONS(5405), - [anon_sym_SLASH] = ACTIONS(5405), - [anon_sym_PERCENT] = ACTIONS(5405), - [anon_sym_PIPE_PIPE] = ACTIONS(5403), - [anon_sym_AMP_AMP] = ACTIONS(5403), - [anon_sym_PIPE] = ACTIONS(5405), - [anon_sym_CARET] = ACTIONS(5405), - [anon_sym_AMP] = ACTIONS(5405), - [anon_sym_EQ_EQ] = ACTIONS(5403), - [anon_sym_BANG_EQ] = ACTIONS(5403), - [anon_sym_GT] = ACTIONS(5405), - [anon_sym_GT_EQ] = ACTIONS(5405), - [anon_sym_LT_EQ] = ACTIONS(5405), - [anon_sym_LT] = ACTIONS(5405), - [anon_sym_LT_LT] = ACTIONS(5405), - [anon_sym_GT_GT] = ACTIONS(5405), - [anon_sym_LBRACK] = ACTIONS(5403), - [anon_sym_EQ] = ACTIONS(5405), - [anon_sym_QMARK] = ACTIONS(5403), - [anon_sym_STAR_EQ] = ACTIONS(5403), - [anon_sym_SLASH_EQ] = ACTIONS(5403), - [anon_sym_PERCENT_EQ] = ACTIONS(5403), - [anon_sym_PLUS_EQ] = ACTIONS(5403), - [anon_sym_DASH_EQ] = ACTIONS(5403), - [anon_sym_LT_LT_EQ] = ACTIONS(5403), - [anon_sym_GT_GT_EQ] = ACTIONS(5405), - [anon_sym_AMP_EQ] = ACTIONS(5403), - [anon_sym_CARET_EQ] = ACTIONS(5403), - [anon_sym_PIPE_EQ] = ACTIONS(5403), - [anon_sym_and_eq] = ACTIONS(5405), - [anon_sym_or_eq] = ACTIONS(5405), - [anon_sym_xor_eq] = ACTIONS(5405), - [anon_sym_LT_EQ_GT] = ACTIONS(5403), - [anon_sym_or] = ACTIONS(5405), - [anon_sym_and] = ACTIONS(5405), - [anon_sym_bitor] = ACTIONS(5405), - [anon_sym_xor] = ACTIONS(5405), - [anon_sym_bitand] = ACTIONS(5405), - [anon_sym_not_eq] = ACTIONS(5405), - [anon_sym_DASH_DASH] = ACTIONS(5403), - [anon_sym_PLUS_PLUS] = ACTIONS(5403), - [anon_sym_DOT] = ACTIONS(5405), - [anon_sym_DOT_STAR] = ACTIONS(5403), - [anon_sym_DASH_GT] = ACTIONS(5403), - [anon_sym_L_DQUOTE] = ACTIONS(6302), - [anon_sym_u_DQUOTE] = ACTIONS(6302), - [anon_sym_U_DQUOTE] = ACTIONS(6302), - [anon_sym_u8_DQUOTE] = ACTIONS(6302), - [anon_sym_DQUOTE] = ACTIONS(6302), - [sym_comment] = ACTIONS(3), - [anon_sym_GT2] = ACTIONS(5403), - [anon_sym_R_DQUOTE] = ACTIONS(6305), - [anon_sym_LR_DQUOTE] = ACTIONS(6305), - [anon_sym_uR_DQUOTE] = ACTIONS(6305), - [anon_sym_UR_DQUOTE] = ACTIONS(6305), - [anon_sym_u8R_DQUOTE] = ACTIONS(6305), - [sym_literal_suffix] = ACTIONS(5405), + [2341] = { + [sym_identifier] = ACTIONS(5753), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5755), + [anon_sym_COMMA] = ACTIONS(5755), + [anon_sym_RPAREN] = ACTIONS(5755), + [aux_sym_preproc_if_token2] = ACTIONS(5755), + [aux_sym_preproc_else_token1] = ACTIONS(5755), + [aux_sym_preproc_elif_token1] = ACTIONS(5753), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5755), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5755), + [anon_sym_LPAREN2] = ACTIONS(5755), + [anon_sym_DASH] = ACTIONS(5753), + [anon_sym_PLUS] = ACTIONS(5753), + [anon_sym_STAR] = ACTIONS(5753), + [anon_sym_SLASH] = ACTIONS(5753), + [anon_sym_PERCENT] = ACTIONS(5753), + [anon_sym_PIPE_PIPE] = ACTIONS(5755), + [anon_sym_AMP_AMP] = ACTIONS(5755), + [anon_sym_PIPE] = ACTIONS(5753), + [anon_sym_CARET] = ACTIONS(5753), + [anon_sym_AMP] = ACTIONS(5753), + [anon_sym_EQ_EQ] = ACTIONS(5755), + [anon_sym_BANG_EQ] = ACTIONS(5755), + [anon_sym_GT] = ACTIONS(5753), + [anon_sym_GT_EQ] = ACTIONS(5755), + [anon_sym_LT_EQ] = ACTIONS(5753), + [anon_sym_LT] = ACTIONS(5753), + [anon_sym_LT_LT] = ACTIONS(5753), + [anon_sym_GT_GT] = ACTIONS(5753), + [anon_sym_SEMI] = ACTIONS(5755), + [anon_sym___attribute__] = ACTIONS(5753), + [anon_sym___attribute] = ACTIONS(5753), + [anon_sym_COLON] = ACTIONS(5755), + [anon_sym_LBRACE] = ACTIONS(5755), + [anon_sym_RBRACE] = ACTIONS(5755), + [anon_sym_LBRACK] = ACTIONS(5755), + [anon_sym_RBRACK] = ACTIONS(5755), + [anon_sym_EQ] = ACTIONS(5753), + [anon_sym_QMARK] = ACTIONS(5755), + [anon_sym_STAR_EQ] = ACTIONS(5755), + [anon_sym_SLASH_EQ] = ACTIONS(5755), + [anon_sym_PERCENT_EQ] = ACTIONS(5755), + [anon_sym_PLUS_EQ] = ACTIONS(5755), + [anon_sym_DASH_EQ] = ACTIONS(5755), + [anon_sym_LT_LT_EQ] = ACTIONS(5755), + [anon_sym_GT_GT_EQ] = ACTIONS(5755), + [anon_sym_AMP_EQ] = ACTIONS(5755), + [anon_sym_CARET_EQ] = ACTIONS(5755), + [anon_sym_PIPE_EQ] = ACTIONS(5755), + [anon_sym_and_eq] = ACTIONS(5753), + [anon_sym_or_eq] = ACTIONS(5753), + [anon_sym_xor_eq] = ACTIONS(5753), + [anon_sym_LT_EQ_GT] = ACTIONS(5755), + [anon_sym_or] = ACTIONS(5753), + [anon_sym_and] = ACTIONS(5753), + [anon_sym_bitor] = ACTIONS(5753), + [anon_sym_xor] = ACTIONS(5753), + [anon_sym_bitand] = ACTIONS(5753), + [anon_sym_not_eq] = ACTIONS(5753), + [anon_sym_DASH_DASH] = ACTIONS(5755), + [anon_sym_PLUS_PLUS] = ACTIONS(5755), + [anon_sym_DOT] = ACTIONS(5753), + [anon_sym_DOT_STAR] = ACTIONS(5755), + [anon_sym_DASH_GT] = ACTIONS(5755), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5753), + [anon_sym_decltype] = ACTIONS(5753), }, - [2302] = { - [sym_identifier] = ACTIONS(5770), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5772), - [anon_sym_COMMA] = ACTIONS(5772), - [anon_sym_RPAREN] = ACTIONS(5772), - [aux_sym_preproc_if_token2] = ACTIONS(5772), - [aux_sym_preproc_else_token1] = ACTIONS(5772), - [aux_sym_preproc_elif_token1] = ACTIONS(5770), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5772), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5772), - [anon_sym_LPAREN2] = ACTIONS(5772), - [anon_sym_DASH] = ACTIONS(5770), - [anon_sym_PLUS] = ACTIONS(5770), - [anon_sym_STAR] = ACTIONS(5770), - [anon_sym_SLASH] = ACTIONS(5770), - [anon_sym_PERCENT] = ACTIONS(5770), - [anon_sym_PIPE_PIPE] = ACTIONS(5772), - [anon_sym_AMP_AMP] = ACTIONS(5772), - [anon_sym_PIPE] = ACTIONS(5770), - [anon_sym_CARET] = ACTIONS(5770), - [anon_sym_AMP] = ACTIONS(5770), - [anon_sym_EQ_EQ] = ACTIONS(5772), - [anon_sym_BANG_EQ] = ACTIONS(5772), - [anon_sym_GT] = ACTIONS(5770), - [anon_sym_GT_EQ] = ACTIONS(5772), - [anon_sym_LT_EQ] = ACTIONS(5770), - [anon_sym_LT] = ACTIONS(5770), - [anon_sym_LT_LT] = ACTIONS(5770), - [anon_sym_GT_GT] = ACTIONS(5770), - [anon_sym_SEMI] = ACTIONS(5772), - [anon_sym___attribute__] = ACTIONS(5770), - [anon_sym___attribute] = ACTIONS(5770), - [anon_sym_COLON] = ACTIONS(5772), - [anon_sym_LBRACE] = ACTIONS(5772), - [anon_sym_RBRACE] = ACTIONS(5772), - [anon_sym_LBRACK] = ACTIONS(5772), - [anon_sym_RBRACK] = ACTIONS(5772), - [anon_sym_EQ] = ACTIONS(5770), - [anon_sym_QMARK] = ACTIONS(5772), - [anon_sym_STAR_EQ] = ACTIONS(5772), - [anon_sym_SLASH_EQ] = ACTIONS(5772), - [anon_sym_PERCENT_EQ] = ACTIONS(5772), - [anon_sym_PLUS_EQ] = ACTIONS(5772), - [anon_sym_DASH_EQ] = ACTIONS(5772), - [anon_sym_LT_LT_EQ] = ACTIONS(5772), - [anon_sym_GT_GT_EQ] = ACTIONS(5772), - [anon_sym_AMP_EQ] = ACTIONS(5772), - [anon_sym_CARET_EQ] = ACTIONS(5772), - [anon_sym_PIPE_EQ] = ACTIONS(5772), - [anon_sym_and_eq] = ACTIONS(5770), - [anon_sym_or_eq] = ACTIONS(5770), - [anon_sym_xor_eq] = ACTIONS(5770), - [anon_sym_LT_EQ_GT] = ACTIONS(5772), - [anon_sym_or] = ACTIONS(5770), - [anon_sym_and] = ACTIONS(5770), - [anon_sym_bitor] = ACTIONS(5770), - [anon_sym_xor] = ACTIONS(5770), - [anon_sym_bitand] = ACTIONS(5770), - [anon_sym_not_eq] = ACTIONS(5770), - [anon_sym_DASH_DASH] = ACTIONS(5772), - [anon_sym_PLUS_PLUS] = ACTIONS(5772), - [anon_sym_DOT] = ACTIONS(5770), - [anon_sym_DOT_STAR] = ACTIONS(5772), - [anon_sym_DASH_GT] = ACTIONS(5772), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5770), - [anon_sym_decltype] = ACTIONS(5770), + [2342] = { + [sym_attribute_specifier] = STATE(2257), + [sym_enumerator_list] = STATE(2226), + [sym__enum_base_clause] = STATE(2160), + [sym_identifier] = ACTIONS(6316), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6318), + [anon_sym_COMMA] = ACTIONS(6318), + [aux_sym_preproc_if_token2] = ACTIONS(6318), + [aux_sym_preproc_else_token1] = ACTIONS(6318), + [aux_sym_preproc_elif_token1] = ACTIONS(6316), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6318), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6318), + [anon_sym_LPAREN2] = ACTIONS(6318), + [anon_sym_DASH] = ACTIONS(6316), + [anon_sym_PLUS] = ACTIONS(6316), + [anon_sym_STAR] = ACTIONS(6316), + [anon_sym_SLASH] = ACTIONS(6316), + [anon_sym_PERCENT] = ACTIONS(6316), + [anon_sym_PIPE_PIPE] = ACTIONS(6318), + [anon_sym_AMP_AMP] = ACTIONS(6318), + [anon_sym_PIPE] = ACTIONS(6316), + [anon_sym_CARET] = ACTIONS(6316), + [anon_sym_AMP] = ACTIONS(6316), + [anon_sym_EQ_EQ] = ACTIONS(6318), + [anon_sym_BANG_EQ] = ACTIONS(6318), + [anon_sym_GT] = ACTIONS(6316), + [anon_sym_GT_EQ] = ACTIONS(6318), + [anon_sym_LT_EQ] = ACTIONS(6316), + [anon_sym_LT] = ACTIONS(6316), + [anon_sym_LT_LT] = ACTIONS(6316), + [anon_sym_GT_GT] = ACTIONS(6316), + [anon_sym___attribute__] = ACTIONS(5561), + [anon_sym___attribute] = ACTIONS(5561), + [anon_sym_COLON] = ACTIONS(6320), + [anon_sym_LBRACE] = ACTIONS(6070), + [anon_sym_LBRACK] = ACTIONS(6318), + [anon_sym_EQ] = ACTIONS(6316), + [anon_sym_QMARK] = ACTIONS(6318), + [anon_sym_STAR_EQ] = ACTIONS(6318), + [anon_sym_SLASH_EQ] = ACTIONS(6318), + [anon_sym_PERCENT_EQ] = ACTIONS(6318), + [anon_sym_PLUS_EQ] = ACTIONS(6318), + [anon_sym_DASH_EQ] = ACTIONS(6318), + [anon_sym_LT_LT_EQ] = ACTIONS(6318), + [anon_sym_GT_GT_EQ] = ACTIONS(6318), + [anon_sym_AMP_EQ] = ACTIONS(6318), + [anon_sym_CARET_EQ] = ACTIONS(6318), + [anon_sym_PIPE_EQ] = ACTIONS(6318), + [anon_sym_and_eq] = ACTIONS(6316), + [anon_sym_or_eq] = ACTIONS(6316), + [anon_sym_xor_eq] = ACTIONS(6316), + [anon_sym_LT_EQ_GT] = ACTIONS(6318), + [anon_sym_or] = ACTIONS(6316), + [anon_sym_and] = ACTIONS(6316), + [anon_sym_bitor] = ACTIONS(6316), + [anon_sym_xor] = ACTIONS(6316), + [anon_sym_bitand] = ACTIONS(6316), + [anon_sym_not_eq] = ACTIONS(6316), + [anon_sym_DASH_DASH] = ACTIONS(6318), + [anon_sym_PLUS_PLUS] = ACTIONS(6318), + [anon_sym_DOT] = ACTIONS(6316), + [anon_sym_DOT_STAR] = ACTIONS(6318), + [anon_sym_DASH_GT] = ACTIONS(6318), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6316), + [anon_sym_decltype] = ACTIONS(6316), }, - [2303] = { - [sym_identifier] = ACTIONS(5774), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5776), - [anon_sym_COMMA] = ACTIONS(5776), - [anon_sym_RPAREN] = ACTIONS(5776), - [aux_sym_preproc_if_token2] = ACTIONS(5776), - [aux_sym_preproc_else_token1] = ACTIONS(5776), - [aux_sym_preproc_elif_token1] = ACTIONS(5774), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5776), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5776), - [anon_sym_LPAREN2] = ACTIONS(5776), - [anon_sym_DASH] = ACTIONS(5774), - [anon_sym_PLUS] = ACTIONS(5774), - [anon_sym_STAR] = ACTIONS(5774), - [anon_sym_SLASH] = ACTIONS(5774), - [anon_sym_PERCENT] = ACTIONS(5774), - [anon_sym_PIPE_PIPE] = ACTIONS(5776), - [anon_sym_AMP_AMP] = ACTIONS(5776), - [anon_sym_PIPE] = ACTIONS(5774), - [anon_sym_CARET] = ACTIONS(5774), - [anon_sym_AMP] = ACTIONS(5774), - [anon_sym_EQ_EQ] = ACTIONS(5776), - [anon_sym_BANG_EQ] = ACTIONS(5776), - [anon_sym_GT] = ACTIONS(5774), - [anon_sym_GT_EQ] = ACTIONS(5776), - [anon_sym_LT_EQ] = ACTIONS(5774), - [anon_sym_LT] = ACTIONS(5774), - [anon_sym_LT_LT] = ACTIONS(5774), - [anon_sym_GT_GT] = ACTIONS(5774), - [anon_sym_SEMI] = ACTIONS(5776), - [anon_sym___attribute__] = ACTIONS(5774), - [anon_sym___attribute] = ACTIONS(5774), - [anon_sym_COLON] = ACTIONS(5776), - [anon_sym_LBRACE] = ACTIONS(5776), - [anon_sym_RBRACE] = ACTIONS(5776), - [anon_sym_LBRACK] = ACTIONS(5776), - [anon_sym_RBRACK] = ACTIONS(5776), - [anon_sym_EQ] = ACTIONS(5774), - [anon_sym_QMARK] = ACTIONS(5776), - [anon_sym_STAR_EQ] = ACTIONS(5776), - [anon_sym_SLASH_EQ] = ACTIONS(5776), - [anon_sym_PERCENT_EQ] = ACTIONS(5776), - [anon_sym_PLUS_EQ] = ACTIONS(5776), - [anon_sym_DASH_EQ] = ACTIONS(5776), - [anon_sym_LT_LT_EQ] = ACTIONS(5776), - [anon_sym_GT_GT_EQ] = ACTIONS(5776), - [anon_sym_AMP_EQ] = ACTIONS(5776), - [anon_sym_CARET_EQ] = ACTIONS(5776), - [anon_sym_PIPE_EQ] = ACTIONS(5776), - [anon_sym_and_eq] = ACTIONS(5774), - [anon_sym_or_eq] = ACTIONS(5774), - [anon_sym_xor_eq] = ACTIONS(5774), - [anon_sym_LT_EQ_GT] = ACTIONS(5776), - [anon_sym_or] = ACTIONS(5774), - [anon_sym_and] = ACTIONS(5774), - [anon_sym_bitor] = ACTIONS(5774), - [anon_sym_xor] = ACTIONS(5774), - [anon_sym_bitand] = ACTIONS(5774), - [anon_sym_not_eq] = ACTIONS(5774), - [anon_sym_DASH_DASH] = ACTIONS(5776), - [anon_sym_PLUS_PLUS] = ACTIONS(5776), - [anon_sym_DOT] = ACTIONS(5774), - [anon_sym_DOT_STAR] = ACTIONS(5776), - [anon_sym_DASH_GT] = ACTIONS(5776), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5774), - [anon_sym_decltype] = ACTIONS(5774), + [2343] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2344), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5517), + [anon_sym_COMMA] = ACTIONS(5517), + [anon_sym_RPAREN] = ACTIONS(5517), + [anon_sym_LPAREN2] = ACTIONS(5517), + [anon_sym_DASH] = ACTIONS(5515), + [anon_sym_PLUS] = ACTIONS(5515), + [anon_sym_STAR] = ACTIONS(5515), + [anon_sym_SLASH] = ACTIONS(5515), + [anon_sym_PERCENT] = ACTIONS(5515), + [anon_sym_PIPE_PIPE] = ACTIONS(5517), + [anon_sym_AMP_AMP] = ACTIONS(5517), + [anon_sym_PIPE] = ACTIONS(5515), + [anon_sym_CARET] = ACTIONS(5515), + [anon_sym_AMP] = ACTIONS(5515), + [anon_sym_EQ_EQ] = ACTIONS(5517), + [anon_sym_BANG_EQ] = ACTIONS(5517), + [anon_sym_GT] = ACTIONS(5515), + [anon_sym_GT_EQ] = ACTIONS(5517), + [anon_sym_LT_EQ] = ACTIONS(5515), + [anon_sym_LT] = ACTIONS(5515), + [anon_sym_LT_LT] = ACTIONS(5515), + [anon_sym_GT_GT] = ACTIONS(5515), + [anon_sym_SEMI] = ACTIONS(5517), + [anon_sym___attribute__] = ACTIONS(5517), + [anon_sym___attribute] = ACTIONS(5515), + [anon_sym_COLON] = ACTIONS(5517), + [anon_sym_LBRACE] = ACTIONS(5517), + [anon_sym_RBRACE] = ACTIONS(5517), + [anon_sym_signed] = ACTIONS(6322), + [anon_sym_unsigned] = ACTIONS(6322), + [anon_sym_long] = ACTIONS(6322), + [anon_sym_short] = ACTIONS(6322), + [anon_sym_LBRACK] = ACTIONS(5517), + [anon_sym_RBRACK] = ACTIONS(5517), + [anon_sym_EQ] = ACTIONS(5515), + [anon_sym_QMARK] = ACTIONS(5517), + [anon_sym_STAR_EQ] = ACTIONS(5517), + [anon_sym_SLASH_EQ] = ACTIONS(5517), + [anon_sym_PERCENT_EQ] = ACTIONS(5517), + [anon_sym_PLUS_EQ] = ACTIONS(5517), + [anon_sym_DASH_EQ] = ACTIONS(5517), + [anon_sym_LT_LT_EQ] = ACTIONS(5517), + [anon_sym_GT_GT_EQ] = ACTIONS(5517), + [anon_sym_AMP_EQ] = ACTIONS(5517), + [anon_sym_CARET_EQ] = ACTIONS(5517), + [anon_sym_PIPE_EQ] = ACTIONS(5517), + [anon_sym_and_eq] = ACTIONS(5517), + [anon_sym_or_eq] = ACTIONS(5517), + [anon_sym_xor_eq] = ACTIONS(5517), + [anon_sym_LT_EQ_GT] = ACTIONS(5517), + [anon_sym_or] = ACTIONS(5515), + [anon_sym_and] = ACTIONS(5515), + [anon_sym_bitor] = ACTIONS(5517), + [anon_sym_xor] = ACTIONS(5515), + [anon_sym_bitand] = ACTIONS(5517), + [anon_sym_not_eq] = ACTIONS(5517), + [anon_sym_DASH_DASH] = ACTIONS(5517), + [anon_sym_PLUS_PLUS] = ACTIONS(5517), + [anon_sym_DOT] = ACTIONS(5515), + [anon_sym_DOT_STAR] = ACTIONS(5517), + [anon_sym_DASH_GT] = ACTIONS(5517), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5517), + [anon_sym_decltype] = ACTIONS(5517), }, - [2304] = { - [sym_identifier] = ACTIONS(4955), - [anon_sym_LPAREN2] = ACTIONS(4957), - [anon_sym_TILDE] = ACTIONS(4957), - [anon_sym_STAR] = ACTIONS(4957), - [anon_sym_PIPE_PIPE] = ACTIONS(4957), - [anon_sym_AMP_AMP] = ACTIONS(4957), - [anon_sym_AMP] = ACTIONS(4955), - [anon_sym___extension__] = ACTIONS(4955), - [anon_sym_virtual] = ACTIONS(4955), - [anon_sym_extern] = ACTIONS(4955), - [anon_sym___attribute__] = ACTIONS(4955), - [anon_sym___attribute] = ACTIONS(4955), - [anon_sym_using] = ACTIONS(4955), - [anon_sym_COLON_COLON] = ACTIONS(4957), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4957), - [anon_sym___declspec] = ACTIONS(4955), - [anon_sym___based] = ACTIONS(4955), - [anon_sym___cdecl] = ACTIONS(4955), - [anon_sym___clrcall] = ACTIONS(4955), - [anon_sym___stdcall] = ACTIONS(4955), - [anon_sym___fastcall] = ACTIONS(4955), - [anon_sym___thiscall] = ACTIONS(4955), - [anon_sym___vectorcall] = ACTIONS(4955), - [anon_sym_signed] = ACTIONS(4955), - [anon_sym_unsigned] = ACTIONS(4955), - [anon_sym_long] = ACTIONS(4955), - [anon_sym_short] = ACTIONS(4955), - [anon_sym_LBRACK] = ACTIONS(4955), - [anon_sym_static] = ACTIONS(4955), - [anon_sym_register] = ACTIONS(4955), - [anon_sym_inline] = ACTIONS(4955), - [anon_sym___inline] = ACTIONS(4955), - [anon_sym___inline__] = ACTIONS(4955), - [anon_sym___forceinline] = ACTIONS(4955), - [anon_sym_thread_local] = ACTIONS(4955), - [anon_sym___thread] = ACTIONS(4955), - [anon_sym_const] = ACTIONS(4955), - [anon_sym_constexpr] = ACTIONS(4955), - [anon_sym_volatile] = ACTIONS(4955), - [anon_sym_restrict] = ACTIONS(4955), - [anon_sym___restrict__] = ACTIONS(4955), - [anon_sym__Atomic] = ACTIONS(4955), - [anon_sym__Noreturn] = ACTIONS(4955), - [anon_sym_noreturn] = ACTIONS(4955), - [anon_sym__Nonnull] = ACTIONS(4955), - [anon_sym_mutable] = ACTIONS(4955), - [anon_sym_constinit] = ACTIONS(4955), - [anon_sym_consteval] = ACTIONS(4955), - [anon_sym_alignas] = ACTIONS(4955), - [anon_sym__Alignas] = ACTIONS(4955), - [sym_primitive_type] = ACTIONS(4955), - [anon_sym_enum] = ACTIONS(4955), - [anon_sym_class] = ACTIONS(4955), - [anon_sym_struct] = ACTIONS(4955), - [anon_sym_union] = ACTIONS(4955), - [anon_sym_or] = ACTIONS(4955), - [anon_sym_and] = ACTIONS(4955), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4955), - [anon_sym_decltype] = ACTIONS(4955), - [anon_sym_explicit] = ACTIONS(4955), - [anon_sym_typename] = ACTIONS(4955), - [anon_sym_template] = ACTIONS(4955), - [anon_sym_operator] = ACTIONS(4955), - [anon_sym_friend] = ACTIONS(4955), - [anon_sym_concept] = ACTIONS(4955), + [2344] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1608), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5919), + [anon_sym_COMMA] = ACTIONS(5919), + [anon_sym_RPAREN] = ACTIONS(5919), + [anon_sym_LPAREN2] = ACTIONS(5919), + [anon_sym_DASH] = ACTIONS(5921), + [anon_sym_PLUS] = ACTIONS(5921), + [anon_sym_STAR] = ACTIONS(5921), + [anon_sym_SLASH] = ACTIONS(5921), + [anon_sym_PERCENT] = ACTIONS(5921), + [anon_sym_PIPE_PIPE] = ACTIONS(5919), + [anon_sym_AMP_AMP] = ACTIONS(5919), + [anon_sym_PIPE] = ACTIONS(5921), + [anon_sym_CARET] = ACTIONS(5921), + [anon_sym_AMP] = ACTIONS(5921), + [anon_sym_EQ_EQ] = ACTIONS(5919), + [anon_sym_BANG_EQ] = ACTIONS(5919), + [anon_sym_GT] = ACTIONS(5921), + [anon_sym_GT_EQ] = ACTIONS(5919), + [anon_sym_LT_EQ] = ACTIONS(5921), + [anon_sym_LT] = ACTIONS(5921), + [anon_sym_LT_LT] = ACTIONS(5921), + [anon_sym_GT_GT] = ACTIONS(5921), + [anon_sym_SEMI] = ACTIONS(5919), + [anon_sym___attribute__] = ACTIONS(5919), + [anon_sym___attribute] = ACTIONS(5921), + [anon_sym_COLON] = ACTIONS(5919), + [anon_sym_LBRACE] = ACTIONS(5919), + [anon_sym_RBRACE] = ACTIONS(5919), + [anon_sym_signed] = ACTIONS(6324), + [anon_sym_unsigned] = ACTIONS(6324), + [anon_sym_long] = ACTIONS(6324), + [anon_sym_short] = ACTIONS(6324), + [anon_sym_LBRACK] = ACTIONS(5919), + [anon_sym_RBRACK] = ACTIONS(5919), + [anon_sym_EQ] = ACTIONS(5921), + [anon_sym_QMARK] = ACTIONS(5919), + [anon_sym_STAR_EQ] = ACTIONS(5919), + [anon_sym_SLASH_EQ] = ACTIONS(5919), + [anon_sym_PERCENT_EQ] = ACTIONS(5919), + [anon_sym_PLUS_EQ] = ACTIONS(5919), + [anon_sym_DASH_EQ] = ACTIONS(5919), + [anon_sym_LT_LT_EQ] = ACTIONS(5919), + [anon_sym_GT_GT_EQ] = ACTIONS(5919), + [anon_sym_AMP_EQ] = ACTIONS(5919), + [anon_sym_CARET_EQ] = ACTIONS(5919), + [anon_sym_PIPE_EQ] = ACTIONS(5919), + [anon_sym_and_eq] = ACTIONS(5919), + [anon_sym_or_eq] = ACTIONS(5919), + [anon_sym_xor_eq] = ACTIONS(5919), + [anon_sym_LT_EQ_GT] = ACTIONS(5919), + [anon_sym_or] = ACTIONS(5921), + [anon_sym_and] = ACTIONS(5921), + [anon_sym_bitor] = ACTIONS(5919), + [anon_sym_xor] = ACTIONS(5921), + [anon_sym_bitand] = ACTIONS(5919), + [anon_sym_not_eq] = ACTIONS(5919), + [anon_sym_DASH_DASH] = ACTIONS(5919), + [anon_sym_PLUS_PLUS] = ACTIONS(5919), + [anon_sym_DOT] = ACTIONS(5921), + [anon_sym_DOT_STAR] = ACTIONS(5919), + [anon_sym_DASH_GT] = ACTIONS(5919), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5919), + [anon_sym_decltype] = ACTIONS(5919), }, - [2305] = { - [sym_identifier] = ACTIONS(4984), - [anon_sym_LPAREN2] = ACTIONS(4986), - [anon_sym_TILDE] = ACTIONS(4986), - [anon_sym_STAR] = ACTIONS(4986), - [anon_sym_PIPE_PIPE] = ACTIONS(4986), - [anon_sym_AMP_AMP] = ACTIONS(4986), - [anon_sym_AMP] = ACTIONS(4984), - [anon_sym___extension__] = ACTIONS(4984), - [anon_sym_virtual] = ACTIONS(4984), - [anon_sym_extern] = ACTIONS(4984), - [anon_sym___attribute__] = ACTIONS(4984), - [anon_sym___attribute] = ACTIONS(4984), - [anon_sym_using] = ACTIONS(4984), - [anon_sym_COLON_COLON] = ACTIONS(4986), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4986), - [anon_sym___declspec] = ACTIONS(4984), - [anon_sym___based] = ACTIONS(4984), - [anon_sym___cdecl] = ACTIONS(4984), - [anon_sym___clrcall] = ACTIONS(4984), - [anon_sym___stdcall] = ACTIONS(4984), - [anon_sym___fastcall] = ACTIONS(4984), - [anon_sym___thiscall] = ACTIONS(4984), - [anon_sym___vectorcall] = ACTIONS(4984), - [anon_sym_signed] = ACTIONS(4984), - [anon_sym_unsigned] = ACTIONS(4984), - [anon_sym_long] = ACTIONS(4984), - [anon_sym_short] = ACTIONS(4984), - [anon_sym_LBRACK] = ACTIONS(4984), - [anon_sym_static] = ACTIONS(4984), - [anon_sym_register] = ACTIONS(4984), - [anon_sym_inline] = ACTIONS(4984), - [anon_sym___inline] = ACTIONS(4984), - [anon_sym___inline__] = ACTIONS(4984), - [anon_sym___forceinline] = ACTIONS(4984), - [anon_sym_thread_local] = ACTIONS(4984), - [anon_sym___thread] = ACTIONS(4984), - [anon_sym_const] = ACTIONS(4984), - [anon_sym_constexpr] = ACTIONS(4984), - [anon_sym_volatile] = ACTIONS(4984), - [anon_sym_restrict] = ACTIONS(4984), - [anon_sym___restrict__] = ACTIONS(4984), - [anon_sym__Atomic] = ACTIONS(4984), - [anon_sym__Noreturn] = ACTIONS(4984), - [anon_sym_noreturn] = ACTIONS(4984), - [anon_sym__Nonnull] = ACTIONS(4984), - [anon_sym_mutable] = ACTIONS(4984), - [anon_sym_constinit] = ACTIONS(4984), - [anon_sym_consteval] = ACTIONS(4984), - [anon_sym_alignas] = ACTIONS(4984), - [anon_sym__Alignas] = ACTIONS(4984), - [sym_primitive_type] = ACTIONS(4984), - [anon_sym_enum] = ACTIONS(4984), - [anon_sym_class] = ACTIONS(4984), - [anon_sym_struct] = ACTIONS(4984), - [anon_sym_union] = ACTIONS(4984), - [anon_sym_or] = ACTIONS(4984), - [anon_sym_and] = ACTIONS(4984), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4984), - [anon_sym_decltype] = ACTIONS(4984), - [anon_sym_explicit] = ACTIONS(4984), - [anon_sym_typename] = ACTIONS(4984), - [anon_sym_template] = ACTIONS(4984), - [anon_sym_operator] = ACTIONS(4984), - [anon_sym_friend] = ACTIONS(4984), - [anon_sym_concept] = ACTIONS(4984), + [2345] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1608), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5929), + [anon_sym_COMMA] = ACTIONS(5929), + [anon_sym_RPAREN] = ACTIONS(5929), + [anon_sym_LPAREN2] = ACTIONS(5929), + [anon_sym_DASH] = ACTIONS(5931), + [anon_sym_PLUS] = ACTIONS(5931), + [anon_sym_STAR] = ACTIONS(5931), + [anon_sym_SLASH] = ACTIONS(5931), + [anon_sym_PERCENT] = ACTIONS(5931), + [anon_sym_PIPE_PIPE] = ACTIONS(5929), + [anon_sym_AMP_AMP] = ACTIONS(5929), + [anon_sym_PIPE] = ACTIONS(5931), + [anon_sym_CARET] = ACTIONS(5931), + [anon_sym_AMP] = ACTIONS(5931), + [anon_sym_EQ_EQ] = ACTIONS(5929), + [anon_sym_BANG_EQ] = ACTIONS(5929), + [anon_sym_GT] = ACTIONS(5931), + [anon_sym_GT_EQ] = ACTIONS(5929), + [anon_sym_LT_EQ] = ACTIONS(5931), + [anon_sym_LT] = ACTIONS(5931), + [anon_sym_LT_LT] = ACTIONS(5931), + [anon_sym_GT_GT] = ACTIONS(5931), + [anon_sym_SEMI] = ACTIONS(5929), + [anon_sym___attribute__] = ACTIONS(5929), + [anon_sym___attribute] = ACTIONS(5931), + [anon_sym_COLON] = ACTIONS(5929), + [anon_sym_LBRACE] = ACTIONS(5929), + [anon_sym_RBRACE] = ACTIONS(5929), + [anon_sym_signed] = ACTIONS(6324), + [anon_sym_unsigned] = ACTIONS(6324), + [anon_sym_long] = ACTIONS(6324), + [anon_sym_short] = ACTIONS(6324), + [anon_sym_LBRACK] = ACTIONS(5929), + [anon_sym_RBRACK] = ACTIONS(5929), + [anon_sym_EQ] = ACTIONS(5931), + [anon_sym_QMARK] = ACTIONS(5929), + [anon_sym_STAR_EQ] = ACTIONS(5929), + [anon_sym_SLASH_EQ] = ACTIONS(5929), + [anon_sym_PERCENT_EQ] = ACTIONS(5929), + [anon_sym_PLUS_EQ] = ACTIONS(5929), + [anon_sym_DASH_EQ] = ACTIONS(5929), + [anon_sym_LT_LT_EQ] = ACTIONS(5929), + [anon_sym_GT_GT_EQ] = ACTIONS(5929), + [anon_sym_AMP_EQ] = ACTIONS(5929), + [anon_sym_CARET_EQ] = ACTIONS(5929), + [anon_sym_PIPE_EQ] = ACTIONS(5929), + [anon_sym_and_eq] = ACTIONS(5929), + [anon_sym_or_eq] = ACTIONS(5929), + [anon_sym_xor_eq] = ACTIONS(5929), + [anon_sym_LT_EQ_GT] = ACTIONS(5929), + [anon_sym_or] = ACTIONS(5931), + [anon_sym_and] = ACTIONS(5931), + [anon_sym_bitor] = ACTIONS(5929), + [anon_sym_xor] = ACTIONS(5931), + [anon_sym_bitand] = ACTIONS(5929), + [anon_sym_not_eq] = ACTIONS(5929), + [anon_sym_DASH_DASH] = ACTIONS(5929), + [anon_sym_PLUS_PLUS] = ACTIONS(5929), + [anon_sym_DOT] = ACTIONS(5931), + [anon_sym_DOT_STAR] = ACTIONS(5929), + [anon_sym_DASH_GT] = ACTIONS(5929), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5929), + [anon_sym_decltype] = ACTIONS(5929), }, - [2306] = { - [sym_identifier] = ACTIONS(4980), - [anon_sym_LPAREN2] = ACTIONS(4982), - [anon_sym_TILDE] = ACTIONS(4982), - [anon_sym_STAR] = ACTIONS(4982), - [anon_sym_PIPE_PIPE] = ACTIONS(4982), - [anon_sym_AMP_AMP] = ACTIONS(4982), - [anon_sym_AMP] = ACTIONS(4980), - [anon_sym___extension__] = ACTIONS(4980), - [anon_sym_virtual] = ACTIONS(4980), - [anon_sym_extern] = ACTIONS(4980), - [anon_sym___attribute__] = ACTIONS(4980), - [anon_sym___attribute] = ACTIONS(4980), - [anon_sym_using] = ACTIONS(4980), - [anon_sym_COLON_COLON] = ACTIONS(4982), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4982), - [anon_sym___declspec] = ACTIONS(4980), - [anon_sym___based] = ACTIONS(4980), - [anon_sym___cdecl] = ACTIONS(4980), - [anon_sym___clrcall] = ACTIONS(4980), - [anon_sym___stdcall] = ACTIONS(4980), - [anon_sym___fastcall] = ACTIONS(4980), - [anon_sym___thiscall] = ACTIONS(4980), - [anon_sym___vectorcall] = ACTIONS(4980), - [anon_sym_signed] = ACTIONS(4980), - [anon_sym_unsigned] = ACTIONS(4980), - [anon_sym_long] = ACTIONS(4980), - [anon_sym_short] = ACTIONS(4980), - [anon_sym_LBRACK] = ACTIONS(4980), - [anon_sym_static] = ACTIONS(4980), - [anon_sym_register] = ACTIONS(4980), - [anon_sym_inline] = ACTIONS(4980), - [anon_sym___inline] = ACTIONS(4980), - [anon_sym___inline__] = ACTIONS(4980), - [anon_sym___forceinline] = ACTIONS(4980), - [anon_sym_thread_local] = ACTIONS(4980), - [anon_sym___thread] = ACTIONS(4980), - [anon_sym_const] = ACTIONS(4980), - [anon_sym_constexpr] = ACTIONS(4980), - [anon_sym_volatile] = ACTIONS(4980), - [anon_sym_restrict] = ACTIONS(4980), - [anon_sym___restrict__] = ACTIONS(4980), - [anon_sym__Atomic] = ACTIONS(4980), - [anon_sym__Noreturn] = ACTIONS(4980), - [anon_sym_noreturn] = ACTIONS(4980), - [anon_sym__Nonnull] = ACTIONS(4980), - [anon_sym_mutable] = ACTIONS(4980), - [anon_sym_constinit] = ACTIONS(4980), - [anon_sym_consteval] = ACTIONS(4980), - [anon_sym_alignas] = ACTIONS(4980), - [anon_sym__Alignas] = ACTIONS(4980), - [sym_primitive_type] = ACTIONS(4980), - [anon_sym_enum] = ACTIONS(4980), - [anon_sym_class] = ACTIONS(4980), - [anon_sym_struct] = ACTIONS(4980), - [anon_sym_union] = ACTIONS(4980), - [anon_sym_or] = ACTIONS(4980), - [anon_sym_and] = ACTIONS(4980), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4980), - [anon_sym_decltype] = ACTIONS(4980), - [anon_sym_explicit] = ACTIONS(4980), - [anon_sym_typename] = ACTIONS(4980), - [anon_sym_template] = ACTIONS(4980), - [anon_sym_operator] = ACTIONS(4980), - [anon_sym_friend] = ACTIONS(4980), - [anon_sym_concept] = ACTIONS(4980), + [2346] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2348), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5966), + [anon_sym_COMMA] = ACTIONS(5966), + [anon_sym_RPAREN] = ACTIONS(5966), + [anon_sym_LPAREN2] = ACTIONS(5966), + [anon_sym_DASH] = ACTIONS(5968), + [anon_sym_PLUS] = ACTIONS(5968), + [anon_sym_STAR] = ACTIONS(5968), + [anon_sym_SLASH] = ACTIONS(5968), + [anon_sym_PERCENT] = ACTIONS(5968), + [anon_sym_PIPE_PIPE] = ACTIONS(5966), + [anon_sym_AMP_AMP] = ACTIONS(5966), + [anon_sym_PIPE] = ACTIONS(5968), + [anon_sym_CARET] = ACTIONS(5968), + [anon_sym_AMP] = ACTIONS(5968), + [anon_sym_EQ_EQ] = ACTIONS(5966), + [anon_sym_BANG_EQ] = ACTIONS(5966), + [anon_sym_GT] = ACTIONS(5968), + [anon_sym_GT_EQ] = ACTIONS(5966), + [anon_sym_LT_EQ] = ACTIONS(5968), + [anon_sym_LT] = ACTIONS(5968), + [anon_sym_LT_LT] = ACTIONS(5968), + [anon_sym_GT_GT] = ACTIONS(5968), + [anon_sym_SEMI] = ACTIONS(5966), + [anon_sym___attribute__] = ACTIONS(5966), + [anon_sym___attribute] = ACTIONS(5968), + [anon_sym_COLON] = ACTIONS(5966), + [anon_sym_LBRACE] = ACTIONS(5966), + [anon_sym_RBRACE] = ACTIONS(5966), + [anon_sym_signed] = ACTIONS(6326), + [anon_sym_unsigned] = ACTIONS(6326), + [anon_sym_long] = ACTIONS(6326), + [anon_sym_short] = ACTIONS(6326), + [anon_sym_LBRACK] = ACTIONS(5966), + [anon_sym_RBRACK] = ACTIONS(5966), + [anon_sym_EQ] = ACTIONS(5968), + [anon_sym_QMARK] = ACTIONS(5966), + [anon_sym_STAR_EQ] = ACTIONS(5966), + [anon_sym_SLASH_EQ] = ACTIONS(5966), + [anon_sym_PERCENT_EQ] = ACTIONS(5966), + [anon_sym_PLUS_EQ] = ACTIONS(5966), + [anon_sym_DASH_EQ] = ACTIONS(5966), + [anon_sym_LT_LT_EQ] = ACTIONS(5966), + [anon_sym_GT_GT_EQ] = ACTIONS(5966), + [anon_sym_AMP_EQ] = ACTIONS(5966), + [anon_sym_CARET_EQ] = ACTIONS(5966), + [anon_sym_PIPE_EQ] = ACTIONS(5966), + [anon_sym_and_eq] = ACTIONS(5966), + [anon_sym_or_eq] = ACTIONS(5966), + [anon_sym_xor_eq] = ACTIONS(5966), + [anon_sym_LT_EQ_GT] = ACTIONS(5966), + [anon_sym_or] = ACTIONS(5968), + [anon_sym_and] = ACTIONS(5968), + [anon_sym_bitor] = ACTIONS(5966), + [anon_sym_xor] = ACTIONS(5968), + [anon_sym_bitand] = ACTIONS(5966), + [anon_sym_not_eq] = ACTIONS(5966), + [anon_sym_DASH_DASH] = ACTIONS(5966), + [anon_sym_PLUS_PLUS] = ACTIONS(5966), + [anon_sym_DOT] = ACTIONS(5968), + [anon_sym_DOT_STAR] = ACTIONS(5966), + [anon_sym_DASH_GT] = ACTIONS(5966), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5966), + [anon_sym_decltype] = ACTIONS(5966), }, - [2307] = { - [sym_identifier] = ACTIONS(4992), - [anon_sym_LPAREN2] = ACTIONS(4994), - [anon_sym_TILDE] = ACTIONS(4994), - [anon_sym_STAR] = ACTIONS(4994), - [anon_sym_PIPE_PIPE] = ACTIONS(4994), - [anon_sym_AMP_AMP] = ACTIONS(4994), - [anon_sym_AMP] = ACTIONS(4992), - [anon_sym___extension__] = ACTIONS(4992), - [anon_sym_virtual] = ACTIONS(4992), - [anon_sym_extern] = ACTIONS(4992), - [anon_sym___attribute__] = ACTIONS(4992), - [anon_sym___attribute] = ACTIONS(4992), - [anon_sym_using] = ACTIONS(4992), - [anon_sym_COLON_COLON] = ACTIONS(4994), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4994), - [anon_sym___declspec] = ACTIONS(4992), - [anon_sym___based] = ACTIONS(4992), - [anon_sym___cdecl] = ACTIONS(4992), - [anon_sym___clrcall] = ACTIONS(4992), - [anon_sym___stdcall] = ACTIONS(4992), - [anon_sym___fastcall] = ACTIONS(4992), - [anon_sym___thiscall] = ACTIONS(4992), - [anon_sym___vectorcall] = ACTIONS(4992), - [anon_sym_signed] = ACTIONS(4992), - [anon_sym_unsigned] = ACTIONS(4992), - [anon_sym_long] = ACTIONS(4992), - [anon_sym_short] = ACTIONS(4992), - [anon_sym_LBRACK] = ACTIONS(4992), - [anon_sym_static] = ACTIONS(4992), - [anon_sym_register] = ACTIONS(4992), - [anon_sym_inline] = ACTIONS(4992), - [anon_sym___inline] = ACTIONS(4992), - [anon_sym___inline__] = ACTIONS(4992), - [anon_sym___forceinline] = ACTIONS(4992), - [anon_sym_thread_local] = ACTIONS(4992), - [anon_sym___thread] = ACTIONS(4992), - [anon_sym_const] = ACTIONS(4992), - [anon_sym_constexpr] = ACTIONS(4992), - [anon_sym_volatile] = ACTIONS(4992), - [anon_sym_restrict] = ACTIONS(4992), - [anon_sym___restrict__] = ACTIONS(4992), - [anon_sym__Atomic] = ACTIONS(4992), - [anon_sym__Noreturn] = ACTIONS(4992), - [anon_sym_noreturn] = ACTIONS(4992), - [anon_sym__Nonnull] = ACTIONS(4992), - [anon_sym_mutable] = ACTIONS(4992), - [anon_sym_constinit] = ACTIONS(4992), - [anon_sym_consteval] = ACTIONS(4992), - [anon_sym_alignas] = ACTIONS(4992), - [anon_sym__Alignas] = ACTIONS(4992), - [sym_primitive_type] = ACTIONS(4992), - [anon_sym_enum] = ACTIONS(4992), - [anon_sym_class] = ACTIONS(4992), - [anon_sym_struct] = ACTIONS(4992), - [anon_sym_union] = ACTIONS(4992), - [anon_sym_or] = ACTIONS(4992), - [anon_sym_and] = ACTIONS(4992), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4992), - [anon_sym_decltype] = ACTIONS(4992), - [anon_sym_explicit] = ACTIONS(4992), - [anon_sym_typename] = ACTIONS(4992), - [anon_sym_template] = ACTIONS(4992), - [anon_sym_operator] = ACTIONS(4992), - [anon_sym_friend] = ACTIONS(4992), - [anon_sym_concept] = ACTIONS(4992), + [2347] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2349), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5972), + [anon_sym_COMMA] = ACTIONS(5972), + [anon_sym_RPAREN] = ACTIONS(5972), + [anon_sym_LPAREN2] = ACTIONS(5972), + [anon_sym_DASH] = ACTIONS(5974), + [anon_sym_PLUS] = ACTIONS(5974), + [anon_sym_STAR] = ACTIONS(5974), + [anon_sym_SLASH] = ACTIONS(5974), + [anon_sym_PERCENT] = ACTIONS(5974), + [anon_sym_PIPE_PIPE] = ACTIONS(5972), + [anon_sym_AMP_AMP] = ACTIONS(5972), + [anon_sym_PIPE] = ACTIONS(5974), + [anon_sym_CARET] = ACTIONS(5974), + [anon_sym_AMP] = ACTIONS(5974), + [anon_sym_EQ_EQ] = ACTIONS(5972), + [anon_sym_BANG_EQ] = ACTIONS(5972), + [anon_sym_GT] = ACTIONS(5974), + [anon_sym_GT_EQ] = ACTIONS(5972), + [anon_sym_LT_EQ] = ACTIONS(5974), + [anon_sym_LT] = ACTIONS(5974), + [anon_sym_LT_LT] = ACTIONS(5974), + [anon_sym_GT_GT] = ACTIONS(5974), + [anon_sym_SEMI] = ACTIONS(5972), + [anon_sym___attribute__] = ACTIONS(5972), + [anon_sym___attribute] = ACTIONS(5974), + [anon_sym_COLON] = ACTIONS(5972), + [anon_sym_LBRACE] = ACTIONS(5972), + [anon_sym_RBRACE] = ACTIONS(5972), + [anon_sym_signed] = ACTIONS(6328), + [anon_sym_unsigned] = ACTIONS(6328), + [anon_sym_long] = ACTIONS(6328), + [anon_sym_short] = ACTIONS(6328), + [anon_sym_LBRACK] = ACTIONS(5972), + [anon_sym_RBRACK] = ACTIONS(5972), + [anon_sym_EQ] = ACTIONS(5974), + [anon_sym_QMARK] = ACTIONS(5972), + [anon_sym_STAR_EQ] = ACTIONS(5972), + [anon_sym_SLASH_EQ] = ACTIONS(5972), + [anon_sym_PERCENT_EQ] = ACTIONS(5972), + [anon_sym_PLUS_EQ] = ACTIONS(5972), + [anon_sym_DASH_EQ] = ACTIONS(5972), + [anon_sym_LT_LT_EQ] = ACTIONS(5972), + [anon_sym_GT_GT_EQ] = ACTIONS(5972), + [anon_sym_AMP_EQ] = ACTIONS(5972), + [anon_sym_CARET_EQ] = ACTIONS(5972), + [anon_sym_PIPE_EQ] = ACTIONS(5972), + [anon_sym_and_eq] = ACTIONS(5972), + [anon_sym_or_eq] = ACTIONS(5972), + [anon_sym_xor_eq] = ACTIONS(5972), + [anon_sym_LT_EQ_GT] = ACTIONS(5972), + [anon_sym_or] = ACTIONS(5974), + [anon_sym_and] = ACTIONS(5974), + [anon_sym_bitor] = ACTIONS(5972), + [anon_sym_xor] = ACTIONS(5974), + [anon_sym_bitand] = ACTIONS(5972), + [anon_sym_not_eq] = ACTIONS(5972), + [anon_sym_DASH_DASH] = ACTIONS(5972), + [anon_sym_PLUS_PLUS] = ACTIONS(5972), + [anon_sym_DOT] = ACTIONS(5974), + [anon_sym_DOT_STAR] = ACTIONS(5972), + [anon_sym_DASH_GT] = ACTIONS(5972), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5972), + [anon_sym_decltype] = ACTIONS(5972), }, - [2308] = { - [sym_identifier] = ACTIONS(4951), - [anon_sym_LPAREN2] = ACTIONS(4953), - [anon_sym_TILDE] = ACTIONS(4953), - [anon_sym_STAR] = ACTIONS(4953), - [anon_sym_PIPE_PIPE] = ACTIONS(4953), - [anon_sym_AMP_AMP] = ACTIONS(4953), - [anon_sym_AMP] = ACTIONS(4951), - [anon_sym___extension__] = ACTIONS(4951), - [anon_sym_virtual] = ACTIONS(4951), - [anon_sym_extern] = ACTIONS(4951), - [anon_sym___attribute__] = ACTIONS(4951), - [anon_sym___attribute] = ACTIONS(4951), - [anon_sym_using] = ACTIONS(4951), - [anon_sym_COLON_COLON] = ACTIONS(4953), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4953), - [anon_sym___declspec] = ACTIONS(4951), - [anon_sym___based] = ACTIONS(4951), - [anon_sym___cdecl] = ACTIONS(4951), - [anon_sym___clrcall] = ACTIONS(4951), - [anon_sym___stdcall] = ACTIONS(4951), - [anon_sym___fastcall] = ACTIONS(4951), - [anon_sym___thiscall] = ACTIONS(4951), - [anon_sym___vectorcall] = ACTIONS(4951), - [anon_sym_signed] = ACTIONS(4951), - [anon_sym_unsigned] = ACTIONS(4951), - [anon_sym_long] = ACTIONS(4951), - [anon_sym_short] = ACTIONS(4951), - [anon_sym_LBRACK] = ACTIONS(4951), - [anon_sym_static] = ACTIONS(4951), - [anon_sym_register] = ACTIONS(4951), - [anon_sym_inline] = ACTIONS(4951), - [anon_sym___inline] = ACTIONS(4951), - [anon_sym___inline__] = ACTIONS(4951), - [anon_sym___forceinline] = ACTIONS(4951), - [anon_sym_thread_local] = ACTIONS(4951), - [anon_sym___thread] = ACTIONS(4951), - [anon_sym_const] = ACTIONS(4951), - [anon_sym_constexpr] = ACTIONS(4951), - [anon_sym_volatile] = ACTIONS(4951), - [anon_sym_restrict] = ACTIONS(4951), - [anon_sym___restrict__] = ACTIONS(4951), - [anon_sym__Atomic] = ACTIONS(4951), - [anon_sym__Noreturn] = ACTIONS(4951), - [anon_sym_noreturn] = ACTIONS(4951), - [anon_sym__Nonnull] = ACTIONS(4951), - [anon_sym_mutable] = ACTIONS(4951), - [anon_sym_constinit] = ACTIONS(4951), - [anon_sym_consteval] = ACTIONS(4951), - [anon_sym_alignas] = ACTIONS(4951), - [anon_sym__Alignas] = ACTIONS(4951), - [sym_primitive_type] = ACTIONS(4951), - [anon_sym_enum] = ACTIONS(4951), - [anon_sym_class] = ACTIONS(4951), - [anon_sym_struct] = ACTIONS(4951), - [anon_sym_union] = ACTIONS(4951), - [anon_sym_or] = ACTIONS(4951), - [anon_sym_and] = ACTIONS(4951), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4951), - [anon_sym_decltype] = ACTIONS(4951), - [anon_sym_explicit] = ACTIONS(4951), - [anon_sym_typename] = ACTIONS(4951), - [anon_sym_template] = ACTIONS(4951), - [anon_sym_operator] = ACTIONS(4951), - [anon_sym_friend] = ACTIONS(4951), - [anon_sym_concept] = ACTIONS(4951), + [2348] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1608), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5978), + [anon_sym_COMMA] = ACTIONS(5978), + [anon_sym_RPAREN] = ACTIONS(5978), + [anon_sym_LPAREN2] = ACTIONS(5978), + [anon_sym_DASH] = ACTIONS(5980), + [anon_sym_PLUS] = ACTIONS(5980), + [anon_sym_STAR] = ACTIONS(5980), + [anon_sym_SLASH] = ACTIONS(5980), + [anon_sym_PERCENT] = ACTIONS(5980), + [anon_sym_PIPE_PIPE] = ACTIONS(5978), + [anon_sym_AMP_AMP] = ACTIONS(5978), + [anon_sym_PIPE] = ACTIONS(5980), + [anon_sym_CARET] = ACTIONS(5980), + [anon_sym_AMP] = ACTIONS(5980), + [anon_sym_EQ_EQ] = ACTIONS(5978), + [anon_sym_BANG_EQ] = ACTIONS(5978), + [anon_sym_GT] = ACTIONS(5980), + [anon_sym_GT_EQ] = ACTIONS(5978), + [anon_sym_LT_EQ] = ACTIONS(5980), + [anon_sym_LT] = ACTIONS(5980), + [anon_sym_LT_LT] = ACTIONS(5980), + [anon_sym_GT_GT] = ACTIONS(5980), + [anon_sym_SEMI] = ACTIONS(5978), + [anon_sym___attribute__] = ACTIONS(5978), + [anon_sym___attribute] = ACTIONS(5980), + [anon_sym_COLON] = ACTIONS(5978), + [anon_sym_LBRACE] = ACTIONS(5978), + [anon_sym_RBRACE] = ACTIONS(5978), + [anon_sym_signed] = ACTIONS(6324), + [anon_sym_unsigned] = ACTIONS(6324), + [anon_sym_long] = ACTIONS(6324), + [anon_sym_short] = ACTIONS(6324), + [anon_sym_LBRACK] = ACTIONS(5978), + [anon_sym_RBRACK] = ACTIONS(5978), + [anon_sym_EQ] = ACTIONS(5980), + [anon_sym_QMARK] = ACTIONS(5978), + [anon_sym_STAR_EQ] = ACTIONS(5978), + [anon_sym_SLASH_EQ] = ACTIONS(5978), + [anon_sym_PERCENT_EQ] = ACTIONS(5978), + [anon_sym_PLUS_EQ] = ACTIONS(5978), + [anon_sym_DASH_EQ] = ACTIONS(5978), + [anon_sym_LT_LT_EQ] = ACTIONS(5978), + [anon_sym_GT_GT_EQ] = ACTIONS(5978), + [anon_sym_AMP_EQ] = ACTIONS(5978), + [anon_sym_CARET_EQ] = ACTIONS(5978), + [anon_sym_PIPE_EQ] = ACTIONS(5978), + [anon_sym_and_eq] = ACTIONS(5978), + [anon_sym_or_eq] = ACTIONS(5978), + [anon_sym_xor_eq] = ACTIONS(5978), + [anon_sym_LT_EQ_GT] = ACTIONS(5978), + [anon_sym_or] = ACTIONS(5980), + [anon_sym_and] = ACTIONS(5980), + [anon_sym_bitor] = ACTIONS(5978), + [anon_sym_xor] = ACTIONS(5980), + [anon_sym_bitand] = ACTIONS(5978), + [anon_sym_not_eq] = ACTIONS(5978), + [anon_sym_DASH_DASH] = ACTIONS(5978), + [anon_sym_PLUS_PLUS] = ACTIONS(5978), + [anon_sym_DOT] = ACTIONS(5980), + [anon_sym_DOT_STAR] = ACTIONS(5978), + [anon_sym_DASH_GT] = ACTIONS(5978), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5978), + [anon_sym_decltype] = ACTIONS(5978), }, - [2309] = { - [sym_identifier] = ACTIONS(5699), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5701), - [anon_sym_COMMA] = ACTIONS(5701), - [anon_sym_RPAREN] = ACTIONS(5701), - [aux_sym_preproc_if_token2] = ACTIONS(5701), - [aux_sym_preproc_else_token1] = ACTIONS(5701), - [aux_sym_preproc_elif_token1] = ACTIONS(5699), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5701), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5701), - [anon_sym_LPAREN2] = ACTIONS(5701), - [anon_sym_DASH] = ACTIONS(5699), - [anon_sym_PLUS] = ACTIONS(5699), - [anon_sym_STAR] = ACTIONS(5699), - [anon_sym_SLASH] = ACTIONS(5699), - [anon_sym_PERCENT] = ACTIONS(5699), - [anon_sym_PIPE_PIPE] = ACTIONS(5701), - [anon_sym_AMP_AMP] = ACTIONS(5701), - [anon_sym_PIPE] = ACTIONS(5699), - [anon_sym_CARET] = ACTIONS(5699), - [anon_sym_AMP] = ACTIONS(5699), - [anon_sym_EQ_EQ] = ACTIONS(5701), - [anon_sym_BANG_EQ] = ACTIONS(5701), - [anon_sym_GT] = ACTIONS(5699), - [anon_sym_GT_EQ] = ACTIONS(5701), - [anon_sym_LT_EQ] = ACTIONS(5699), - [anon_sym_LT] = ACTIONS(5699), - [anon_sym_LT_LT] = ACTIONS(5699), - [anon_sym_GT_GT] = ACTIONS(5699), - [anon_sym_SEMI] = ACTIONS(5701), - [anon_sym___attribute__] = ACTIONS(5699), - [anon_sym___attribute] = ACTIONS(5699), - [anon_sym_COLON] = ACTIONS(5701), - [anon_sym_LBRACE] = ACTIONS(5701), - [anon_sym_RBRACE] = ACTIONS(5701), - [anon_sym_LBRACK] = ACTIONS(5701), - [anon_sym_RBRACK] = ACTIONS(5701), - [anon_sym_EQ] = ACTIONS(5699), - [anon_sym_QMARK] = ACTIONS(5701), - [anon_sym_STAR_EQ] = ACTIONS(5701), - [anon_sym_SLASH_EQ] = ACTIONS(5701), - [anon_sym_PERCENT_EQ] = ACTIONS(5701), - [anon_sym_PLUS_EQ] = ACTIONS(5701), - [anon_sym_DASH_EQ] = ACTIONS(5701), - [anon_sym_LT_LT_EQ] = ACTIONS(5701), - [anon_sym_GT_GT_EQ] = ACTIONS(5701), - [anon_sym_AMP_EQ] = ACTIONS(5701), - [anon_sym_CARET_EQ] = ACTIONS(5701), - [anon_sym_PIPE_EQ] = ACTIONS(5701), - [anon_sym_and_eq] = ACTIONS(5699), - [anon_sym_or_eq] = ACTIONS(5699), - [anon_sym_xor_eq] = ACTIONS(5699), - [anon_sym_LT_EQ_GT] = ACTIONS(5701), - [anon_sym_or] = ACTIONS(5699), - [anon_sym_and] = ACTIONS(5699), - [anon_sym_bitor] = ACTIONS(5699), - [anon_sym_xor] = ACTIONS(5699), - [anon_sym_bitand] = ACTIONS(5699), - [anon_sym_not_eq] = ACTIONS(5699), - [anon_sym_DASH_DASH] = ACTIONS(5701), - [anon_sym_PLUS_PLUS] = ACTIONS(5701), - [anon_sym_DOT] = ACTIONS(5699), - [anon_sym_DOT_STAR] = ACTIONS(5701), - [anon_sym_DASH_GT] = ACTIONS(5701), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5699), - [anon_sym_decltype] = ACTIONS(5699), + [2349] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1608), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5986), + [anon_sym_COMMA] = ACTIONS(5986), + [anon_sym_RPAREN] = ACTIONS(5986), + [anon_sym_LPAREN2] = ACTIONS(5986), + [anon_sym_DASH] = ACTIONS(5988), + [anon_sym_PLUS] = ACTIONS(5988), + [anon_sym_STAR] = ACTIONS(5988), + [anon_sym_SLASH] = ACTIONS(5988), + [anon_sym_PERCENT] = ACTIONS(5988), + [anon_sym_PIPE_PIPE] = ACTIONS(5986), + [anon_sym_AMP_AMP] = ACTIONS(5986), + [anon_sym_PIPE] = ACTIONS(5988), + [anon_sym_CARET] = ACTIONS(5988), + [anon_sym_AMP] = ACTIONS(5988), + [anon_sym_EQ_EQ] = ACTIONS(5986), + [anon_sym_BANG_EQ] = ACTIONS(5986), + [anon_sym_GT] = ACTIONS(5988), + [anon_sym_GT_EQ] = ACTIONS(5986), + [anon_sym_LT_EQ] = ACTIONS(5988), + [anon_sym_LT] = ACTIONS(5988), + [anon_sym_LT_LT] = ACTIONS(5988), + [anon_sym_GT_GT] = ACTIONS(5988), + [anon_sym_SEMI] = ACTIONS(5986), + [anon_sym___attribute__] = ACTIONS(5986), + [anon_sym___attribute] = ACTIONS(5988), + [anon_sym_COLON] = ACTIONS(5986), + [anon_sym_LBRACE] = ACTIONS(5986), + [anon_sym_RBRACE] = ACTIONS(5986), + [anon_sym_signed] = ACTIONS(6324), + [anon_sym_unsigned] = ACTIONS(6324), + [anon_sym_long] = ACTIONS(6324), + [anon_sym_short] = ACTIONS(6324), + [anon_sym_LBRACK] = ACTIONS(5986), + [anon_sym_RBRACK] = ACTIONS(5986), + [anon_sym_EQ] = ACTIONS(5988), + [anon_sym_QMARK] = ACTIONS(5986), + [anon_sym_STAR_EQ] = ACTIONS(5986), + [anon_sym_SLASH_EQ] = ACTIONS(5986), + [anon_sym_PERCENT_EQ] = ACTIONS(5986), + [anon_sym_PLUS_EQ] = ACTIONS(5986), + [anon_sym_DASH_EQ] = ACTIONS(5986), + [anon_sym_LT_LT_EQ] = ACTIONS(5986), + [anon_sym_GT_GT_EQ] = ACTIONS(5986), + [anon_sym_AMP_EQ] = ACTIONS(5986), + [anon_sym_CARET_EQ] = ACTIONS(5986), + [anon_sym_PIPE_EQ] = ACTIONS(5986), + [anon_sym_and_eq] = ACTIONS(5986), + [anon_sym_or_eq] = ACTIONS(5986), + [anon_sym_xor_eq] = ACTIONS(5986), + [anon_sym_LT_EQ_GT] = ACTIONS(5986), + [anon_sym_or] = ACTIONS(5988), + [anon_sym_and] = ACTIONS(5988), + [anon_sym_bitor] = ACTIONS(5986), + [anon_sym_xor] = ACTIONS(5988), + [anon_sym_bitand] = ACTIONS(5986), + [anon_sym_not_eq] = ACTIONS(5986), + [anon_sym_DASH_DASH] = ACTIONS(5986), + [anon_sym_PLUS_PLUS] = ACTIONS(5986), + [anon_sym_DOT] = ACTIONS(5988), + [anon_sym_DOT_STAR] = ACTIONS(5986), + [anon_sym_DASH_GT] = ACTIONS(5986), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5986), + [anon_sym_decltype] = ACTIONS(5986), }, - [2310] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1585), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5894), - [anon_sym_COMMA] = ACTIONS(5894), - [anon_sym_RPAREN] = ACTIONS(5894), - [anon_sym_LPAREN2] = ACTIONS(5894), - [anon_sym_DASH] = ACTIONS(5896), - [anon_sym_PLUS] = ACTIONS(5896), - [anon_sym_STAR] = ACTIONS(5896), - [anon_sym_SLASH] = ACTIONS(5896), - [anon_sym_PERCENT] = ACTIONS(5896), - [anon_sym_PIPE_PIPE] = ACTIONS(5894), - [anon_sym_AMP_AMP] = ACTIONS(5894), - [anon_sym_PIPE] = ACTIONS(5896), - [anon_sym_CARET] = ACTIONS(5896), - [anon_sym_AMP] = ACTIONS(5896), - [anon_sym_EQ_EQ] = ACTIONS(5894), - [anon_sym_BANG_EQ] = ACTIONS(5894), - [anon_sym_GT] = ACTIONS(5896), - [anon_sym_GT_EQ] = ACTIONS(5894), - [anon_sym_LT_EQ] = ACTIONS(5896), - [anon_sym_LT] = ACTIONS(5896), - [anon_sym_LT_LT] = ACTIONS(5896), - [anon_sym_GT_GT] = ACTIONS(5896), - [anon_sym_SEMI] = ACTIONS(5894), - [anon_sym___attribute__] = ACTIONS(5894), - [anon_sym___attribute] = ACTIONS(5896), - [anon_sym_COLON] = ACTIONS(5894), - [anon_sym_LBRACE] = ACTIONS(5894), - [anon_sym_RBRACE] = ACTIONS(5894), - [anon_sym_signed] = ACTIONS(6308), - [anon_sym_unsigned] = ACTIONS(6308), - [anon_sym_long] = ACTIONS(6308), - [anon_sym_short] = ACTIONS(6308), - [anon_sym_LBRACK] = ACTIONS(5894), - [anon_sym_RBRACK] = ACTIONS(5894), - [anon_sym_EQ] = ACTIONS(5896), - [anon_sym_QMARK] = ACTIONS(5894), - [anon_sym_STAR_EQ] = ACTIONS(5894), - [anon_sym_SLASH_EQ] = ACTIONS(5894), - [anon_sym_PERCENT_EQ] = ACTIONS(5894), - [anon_sym_PLUS_EQ] = ACTIONS(5894), - [anon_sym_DASH_EQ] = ACTIONS(5894), - [anon_sym_LT_LT_EQ] = ACTIONS(5894), - [anon_sym_GT_GT_EQ] = ACTIONS(5894), - [anon_sym_AMP_EQ] = ACTIONS(5894), - [anon_sym_CARET_EQ] = ACTIONS(5894), - [anon_sym_PIPE_EQ] = ACTIONS(5894), - [anon_sym_and_eq] = ACTIONS(5894), - [anon_sym_or_eq] = ACTIONS(5894), - [anon_sym_xor_eq] = ACTIONS(5894), - [anon_sym_LT_EQ_GT] = ACTIONS(5894), - [anon_sym_or] = ACTIONS(5896), - [anon_sym_and] = ACTIONS(5896), - [anon_sym_bitor] = ACTIONS(5894), - [anon_sym_xor] = ACTIONS(5896), - [anon_sym_bitand] = ACTIONS(5894), - [anon_sym_not_eq] = ACTIONS(5894), - [anon_sym_DASH_DASH] = ACTIONS(5894), - [anon_sym_PLUS_PLUS] = ACTIONS(5894), - [anon_sym_DOT] = ACTIONS(5896), - [anon_sym_DOT_STAR] = ACTIONS(5894), - [anon_sym_DASH_GT] = ACTIONS(5894), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5894), - [anon_sym_decltype] = ACTIONS(5894), + [2350] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2354), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5933), + [anon_sym_COMMA] = ACTIONS(5933), + [anon_sym_RPAREN] = ACTIONS(5933), + [anon_sym_LPAREN2] = ACTIONS(5933), + [anon_sym_DASH] = ACTIONS(5935), + [anon_sym_PLUS] = ACTIONS(5935), + [anon_sym_STAR] = ACTIONS(5935), + [anon_sym_SLASH] = ACTIONS(5935), + [anon_sym_PERCENT] = ACTIONS(5935), + [anon_sym_PIPE_PIPE] = ACTIONS(5933), + [anon_sym_AMP_AMP] = ACTIONS(5933), + [anon_sym_PIPE] = ACTIONS(5935), + [anon_sym_CARET] = ACTIONS(5935), + [anon_sym_AMP] = ACTIONS(5935), + [anon_sym_EQ_EQ] = ACTIONS(5933), + [anon_sym_BANG_EQ] = ACTIONS(5933), + [anon_sym_GT] = ACTIONS(5935), + [anon_sym_GT_EQ] = ACTIONS(5933), + [anon_sym_LT_EQ] = ACTIONS(5935), + [anon_sym_LT] = ACTIONS(5935), + [anon_sym_LT_LT] = ACTIONS(5935), + [anon_sym_GT_GT] = ACTIONS(5935), + [anon_sym_SEMI] = ACTIONS(5933), + [anon_sym___attribute__] = ACTIONS(5933), + [anon_sym___attribute] = ACTIONS(5935), + [anon_sym_COLON] = ACTIONS(5933), + [anon_sym_LBRACE] = ACTIONS(5933), + [anon_sym_RBRACE] = ACTIONS(5933), + [anon_sym_signed] = ACTIONS(6330), + [anon_sym_unsigned] = ACTIONS(6330), + [anon_sym_long] = ACTIONS(6330), + [anon_sym_short] = ACTIONS(6330), + [anon_sym_LBRACK] = ACTIONS(5933), + [anon_sym_RBRACK] = ACTIONS(5933), + [anon_sym_EQ] = ACTIONS(5935), + [anon_sym_QMARK] = ACTIONS(5933), + [anon_sym_STAR_EQ] = ACTIONS(5933), + [anon_sym_SLASH_EQ] = ACTIONS(5933), + [anon_sym_PERCENT_EQ] = ACTIONS(5933), + [anon_sym_PLUS_EQ] = ACTIONS(5933), + [anon_sym_DASH_EQ] = ACTIONS(5933), + [anon_sym_LT_LT_EQ] = ACTIONS(5933), + [anon_sym_GT_GT_EQ] = ACTIONS(5933), + [anon_sym_AMP_EQ] = ACTIONS(5933), + [anon_sym_CARET_EQ] = ACTIONS(5933), + [anon_sym_PIPE_EQ] = ACTIONS(5933), + [anon_sym_and_eq] = ACTIONS(5933), + [anon_sym_or_eq] = ACTIONS(5933), + [anon_sym_xor_eq] = ACTIONS(5933), + [anon_sym_LT_EQ_GT] = ACTIONS(5933), + [anon_sym_or] = ACTIONS(5935), + [anon_sym_and] = ACTIONS(5935), + [anon_sym_bitor] = ACTIONS(5933), + [anon_sym_xor] = ACTIONS(5935), + [anon_sym_bitand] = ACTIONS(5933), + [anon_sym_not_eq] = ACTIONS(5933), + [anon_sym_DASH_DASH] = ACTIONS(5933), + [anon_sym_PLUS_PLUS] = ACTIONS(5933), + [anon_sym_DOT] = ACTIONS(5935), + [anon_sym_DOT_STAR] = ACTIONS(5933), + [anon_sym_DASH_GT] = ACTIONS(5933), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5933), + [anon_sym_decltype] = ACTIONS(5933), }, - [2311] = { - [sym_attribute_specifier] = STATE(1886), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6092), - [anon_sym_COMMA] = ACTIONS(6092), - [anon_sym_RPAREN] = ACTIONS(6092), - [anon_sym_LPAREN2] = ACTIONS(6092), - [anon_sym_DASH] = ACTIONS(6090), - [anon_sym_PLUS] = ACTIONS(6090), - [anon_sym_STAR] = ACTIONS(6092), - [anon_sym_SLASH] = ACTIONS(6090), - [anon_sym_PERCENT] = ACTIONS(6092), - [anon_sym_PIPE_PIPE] = ACTIONS(6092), - [anon_sym_AMP_AMP] = ACTIONS(6092), - [anon_sym_PIPE] = ACTIONS(6090), - [anon_sym_CARET] = ACTIONS(6092), - [anon_sym_AMP] = ACTIONS(6090), - [anon_sym_EQ_EQ] = ACTIONS(6092), - [anon_sym_BANG_EQ] = ACTIONS(6092), - [anon_sym_GT] = ACTIONS(6090), - [anon_sym_GT_EQ] = ACTIONS(6092), - [anon_sym_LT_EQ] = ACTIONS(6090), - [anon_sym_LT] = ACTIONS(6090), - [anon_sym_LT_LT] = ACTIONS(6092), - [anon_sym_GT_GT] = ACTIONS(6092), - [anon_sym_SEMI] = ACTIONS(6092), - [anon_sym___extension__] = ACTIONS(6092), - [anon_sym___attribute__] = ACTIONS(6014), - [anon_sym___attribute] = ACTIONS(6016), - [anon_sym_COLON] = ACTIONS(6092), - [anon_sym_LBRACE] = ACTIONS(6092), - [anon_sym_RBRACE] = ACTIONS(6092), - [anon_sym_LBRACK] = ACTIONS(6092), - [anon_sym_RBRACK] = ACTIONS(6092), - [anon_sym_const] = ACTIONS(6090), - [anon_sym_constexpr] = ACTIONS(6092), - [anon_sym_volatile] = ACTIONS(6092), - [anon_sym_restrict] = ACTIONS(6092), - [anon_sym___restrict__] = ACTIONS(6092), - [anon_sym__Atomic] = ACTIONS(6092), - [anon_sym__Noreturn] = ACTIONS(6092), - [anon_sym_noreturn] = ACTIONS(6092), - [anon_sym__Nonnull] = ACTIONS(6092), - [anon_sym_mutable] = ACTIONS(6092), - [anon_sym_constinit] = ACTIONS(6092), - [anon_sym_consteval] = ACTIONS(6092), - [anon_sym_alignas] = ACTIONS(6092), - [anon_sym__Alignas] = ACTIONS(6092), - [anon_sym_QMARK] = ACTIONS(6092), - [anon_sym_LT_EQ_GT] = ACTIONS(6092), - [anon_sym_or] = ACTIONS(6092), - [anon_sym_and] = ACTIONS(6092), - [anon_sym_bitor] = ACTIONS(6092), - [anon_sym_xor] = ACTIONS(6092), - [anon_sym_bitand] = ACTIONS(6092), - [anon_sym_not_eq] = ACTIONS(6092), - [anon_sym_DASH_DASH] = ACTIONS(6092), - [anon_sym_PLUS_PLUS] = ACTIONS(6092), - [anon_sym_DOT] = ACTIONS(6090), - [anon_sym_DOT_STAR] = ACTIONS(6092), - [anon_sym_DASH_GT] = ACTIONS(6092), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6092), - [anon_sym_decltype] = ACTIONS(6092), - [anon_sym_final] = ACTIONS(6092), - [anon_sym_override] = ACTIONS(6092), - [anon_sym_requires] = ACTIONS(6092), + [2351] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2355), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5885), + [anon_sym_COMMA] = ACTIONS(5885), + [anon_sym_RPAREN] = ACTIONS(5885), + [anon_sym_LPAREN2] = ACTIONS(5885), + [anon_sym_DASH] = ACTIONS(5887), + [anon_sym_PLUS] = ACTIONS(5887), + [anon_sym_STAR] = ACTIONS(5887), + [anon_sym_SLASH] = ACTIONS(5887), + [anon_sym_PERCENT] = ACTIONS(5887), + [anon_sym_PIPE_PIPE] = ACTIONS(5885), + [anon_sym_AMP_AMP] = ACTIONS(5885), + [anon_sym_PIPE] = ACTIONS(5887), + [anon_sym_CARET] = ACTIONS(5887), + [anon_sym_AMP] = ACTIONS(5887), + [anon_sym_EQ_EQ] = ACTIONS(5885), + [anon_sym_BANG_EQ] = ACTIONS(5885), + [anon_sym_GT] = ACTIONS(5887), + [anon_sym_GT_EQ] = ACTIONS(5885), + [anon_sym_LT_EQ] = ACTIONS(5887), + [anon_sym_LT] = ACTIONS(5887), + [anon_sym_LT_LT] = ACTIONS(5887), + [anon_sym_GT_GT] = ACTIONS(5887), + [anon_sym_SEMI] = ACTIONS(5885), + [anon_sym___attribute__] = ACTIONS(5885), + [anon_sym___attribute] = ACTIONS(5887), + [anon_sym_COLON] = ACTIONS(5885), + [anon_sym_LBRACE] = ACTIONS(5885), + [anon_sym_RBRACE] = ACTIONS(5885), + [anon_sym_signed] = ACTIONS(6332), + [anon_sym_unsigned] = ACTIONS(6332), + [anon_sym_long] = ACTIONS(6332), + [anon_sym_short] = ACTIONS(6332), + [anon_sym_LBRACK] = ACTIONS(5885), + [anon_sym_RBRACK] = ACTIONS(5885), + [anon_sym_EQ] = ACTIONS(5887), + [anon_sym_QMARK] = ACTIONS(5885), + [anon_sym_STAR_EQ] = ACTIONS(5885), + [anon_sym_SLASH_EQ] = ACTIONS(5885), + [anon_sym_PERCENT_EQ] = ACTIONS(5885), + [anon_sym_PLUS_EQ] = ACTIONS(5885), + [anon_sym_DASH_EQ] = ACTIONS(5885), + [anon_sym_LT_LT_EQ] = ACTIONS(5885), + [anon_sym_GT_GT_EQ] = ACTIONS(5885), + [anon_sym_AMP_EQ] = ACTIONS(5885), + [anon_sym_CARET_EQ] = ACTIONS(5885), + [anon_sym_PIPE_EQ] = ACTIONS(5885), + [anon_sym_and_eq] = ACTIONS(5885), + [anon_sym_or_eq] = ACTIONS(5885), + [anon_sym_xor_eq] = ACTIONS(5885), + [anon_sym_LT_EQ_GT] = ACTIONS(5885), + [anon_sym_or] = ACTIONS(5887), + [anon_sym_and] = ACTIONS(5887), + [anon_sym_bitor] = ACTIONS(5885), + [anon_sym_xor] = ACTIONS(5887), + [anon_sym_bitand] = ACTIONS(5885), + [anon_sym_not_eq] = ACTIONS(5885), + [anon_sym_DASH_DASH] = ACTIONS(5885), + [anon_sym_PLUS_PLUS] = ACTIONS(5885), + [anon_sym_DOT] = ACTIONS(5887), + [anon_sym_DOT_STAR] = ACTIONS(5885), + [anon_sym_DASH_GT] = ACTIONS(5885), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5885), + [anon_sym_decltype] = ACTIONS(5885), }, - [2312] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1585), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5898), - [anon_sym_COMMA] = ACTIONS(5898), - [anon_sym_RPAREN] = ACTIONS(5898), - [anon_sym_LPAREN2] = ACTIONS(5898), - [anon_sym_DASH] = ACTIONS(5900), - [anon_sym_PLUS] = ACTIONS(5900), - [anon_sym_STAR] = ACTIONS(5900), - [anon_sym_SLASH] = ACTIONS(5900), - [anon_sym_PERCENT] = ACTIONS(5900), - [anon_sym_PIPE_PIPE] = ACTIONS(5898), - [anon_sym_AMP_AMP] = ACTIONS(5898), - [anon_sym_PIPE] = ACTIONS(5900), - [anon_sym_CARET] = ACTIONS(5900), - [anon_sym_AMP] = ACTIONS(5900), - [anon_sym_EQ_EQ] = ACTIONS(5898), - [anon_sym_BANG_EQ] = ACTIONS(5898), - [anon_sym_GT] = ACTIONS(5900), - [anon_sym_GT_EQ] = ACTIONS(5898), - [anon_sym_LT_EQ] = ACTIONS(5900), - [anon_sym_LT] = ACTIONS(5900), - [anon_sym_LT_LT] = ACTIONS(5900), - [anon_sym_GT_GT] = ACTIONS(5900), - [anon_sym_SEMI] = ACTIONS(5898), - [anon_sym___attribute__] = ACTIONS(5898), - [anon_sym___attribute] = ACTIONS(5900), - [anon_sym_COLON] = ACTIONS(5898), - [anon_sym_LBRACE] = ACTIONS(5898), - [anon_sym_RBRACE] = ACTIONS(5898), - [anon_sym_signed] = ACTIONS(6308), - [anon_sym_unsigned] = ACTIONS(6308), - [anon_sym_long] = ACTIONS(6308), - [anon_sym_short] = ACTIONS(6308), - [anon_sym_LBRACK] = ACTIONS(5898), - [anon_sym_RBRACK] = ACTIONS(5898), - [anon_sym_EQ] = ACTIONS(5900), - [anon_sym_QMARK] = ACTIONS(5898), - [anon_sym_STAR_EQ] = ACTIONS(5898), - [anon_sym_SLASH_EQ] = ACTIONS(5898), - [anon_sym_PERCENT_EQ] = ACTIONS(5898), - [anon_sym_PLUS_EQ] = ACTIONS(5898), - [anon_sym_DASH_EQ] = ACTIONS(5898), - [anon_sym_LT_LT_EQ] = ACTIONS(5898), - [anon_sym_GT_GT_EQ] = ACTIONS(5898), - [anon_sym_AMP_EQ] = ACTIONS(5898), - [anon_sym_CARET_EQ] = ACTIONS(5898), - [anon_sym_PIPE_EQ] = ACTIONS(5898), - [anon_sym_and_eq] = ACTIONS(5898), - [anon_sym_or_eq] = ACTIONS(5898), - [anon_sym_xor_eq] = ACTIONS(5898), - [anon_sym_LT_EQ_GT] = ACTIONS(5898), - [anon_sym_or] = ACTIONS(5900), - [anon_sym_and] = ACTIONS(5900), - [anon_sym_bitor] = ACTIONS(5898), - [anon_sym_xor] = ACTIONS(5900), - [anon_sym_bitand] = ACTIONS(5898), - [anon_sym_not_eq] = ACTIONS(5898), - [anon_sym_DASH_DASH] = ACTIONS(5898), - [anon_sym_PLUS_PLUS] = ACTIONS(5898), - [anon_sym_DOT] = ACTIONS(5900), - [anon_sym_DOT_STAR] = ACTIONS(5898), - [anon_sym_DASH_GT] = ACTIONS(5898), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5898), - [anon_sym_decltype] = ACTIONS(5898), + [2352] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1608), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5891), + [anon_sym_COMMA] = ACTIONS(5891), + [anon_sym_RPAREN] = ACTIONS(5891), + [anon_sym_LPAREN2] = ACTIONS(5891), + [anon_sym_DASH] = ACTIONS(5893), + [anon_sym_PLUS] = ACTIONS(5893), + [anon_sym_STAR] = ACTIONS(5893), + [anon_sym_SLASH] = ACTIONS(5893), + [anon_sym_PERCENT] = ACTIONS(5893), + [anon_sym_PIPE_PIPE] = ACTIONS(5891), + [anon_sym_AMP_AMP] = ACTIONS(5891), + [anon_sym_PIPE] = ACTIONS(5893), + [anon_sym_CARET] = ACTIONS(5893), + [anon_sym_AMP] = ACTIONS(5893), + [anon_sym_EQ_EQ] = ACTIONS(5891), + [anon_sym_BANG_EQ] = ACTIONS(5891), + [anon_sym_GT] = ACTIONS(5893), + [anon_sym_GT_EQ] = ACTIONS(5891), + [anon_sym_LT_EQ] = ACTIONS(5893), + [anon_sym_LT] = ACTIONS(5893), + [anon_sym_LT_LT] = ACTIONS(5893), + [anon_sym_GT_GT] = ACTIONS(5893), + [anon_sym_SEMI] = ACTIONS(5891), + [anon_sym___attribute__] = ACTIONS(5891), + [anon_sym___attribute] = ACTIONS(5893), + [anon_sym_COLON] = ACTIONS(5891), + [anon_sym_LBRACE] = ACTIONS(5891), + [anon_sym_RBRACE] = ACTIONS(5891), + [anon_sym_signed] = ACTIONS(6324), + [anon_sym_unsigned] = ACTIONS(6324), + [anon_sym_long] = ACTIONS(6324), + [anon_sym_short] = ACTIONS(6324), + [anon_sym_LBRACK] = ACTIONS(5891), + [anon_sym_RBRACK] = ACTIONS(5891), + [anon_sym_EQ] = ACTIONS(5893), + [anon_sym_QMARK] = ACTIONS(5891), + [anon_sym_STAR_EQ] = ACTIONS(5891), + [anon_sym_SLASH_EQ] = ACTIONS(5891), + [anon_sym_PERCENT_EQ] = ACTIONS(5891), + [anon_sym_PLUS_EQ] = ACTIONS(5891), + [anon_sym_DASH_EQ] = ACTIONS(5891), + [anon_sym_LT_LT_EQ] = ACTIONS(5891), + [anon_sym_GT_GT_EQ] = ACTIONS(5891), + [anon_sym_AMP_EQ] = ACTIONS(5891), + [anon_sym_CARET_EQ] = ACTIONS(5891), + [anon_sym_PIPE_EQ] = ACTIONS(5891), + [anon_sym_and_eq] = ACTIONS(5891), + [anon_sym_or_eq] = ACTIONS(5891), + [anon_sym_xor_eq] = ACTIONS(5891), + [anon_sym_LT_EQ_GT] = ACTIONS(5891), + [anon_sym_or] = ACTIONS(5893), + [anon_sym_and] = ACTIONS(5893), + [anon_sym_bitor] = ACTIONS(5891), + [anon_sym_xor] = ACTIONS(5893), + [anon_sym_bitand] = ACTIONS(5891), + [anon_sym_not_eq] = ACTIONS(5891), + [anon_sym_DASH_DASH] = ACTIONS(5891), + [anon_sym_PLUS_PLUS] = ACTIONS(5891), + [anon_sym_DOT] = ACTIONS(5893), + [anon_sym_DOT_STAR] = ACTIONS(5891), + [anon_sym_DASH_GT] = ACTIONS(5891), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5891), + [anon_sym_decltype] = ACTIONS(5891), }, - [2313] = { - [sym_template_argument_list] = STATE(2324), - [sym_identifier] = ACTIONS(6310), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6312), - [anon_sym_COMMA] = ACTIONS(6312), - [anon_sym_RPAREN] = ACTIONS(6312), - [aux_sym_preproc_if_token2] = ACTIONS(6312), - [aux_sym_preproc_else_token1] = ACTIONS(6312), - [aux_sym_preproc_elif_token1] = ACTIONS(6310), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6312), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6312), - [anon_sym_LPAREN2] = ACTIONS(6312), - [anon_sym_DASH] = ACTIONS(6310), - [anon_sym_PLUS] = ACTIONS(6310), - [anon_sym_STAR] = ACTIONS(6310), - [anon_sym_SLASH] = ACTIONS(6310), - [anon_sym_PERCENT] = ACTIONS(6310), - [anon_sym_PIPE_PIPE] = ACTIONS(6312), - [anon_sym_AMP_AMP] = ACTIONS(6312), - [anon_sym_PIPE] = ACTIONS(6310), - [anon_sym_CARET] = ACTIONS(6310), - [anon_sym_AMP] = ACTIONS(6310), - [anon_sym_EQ_EQ] = ACTIONS(6312), - [anon_sym_BANG_EQ] = ACTIONS(6312), - [anon_sym_GT] = ACTIONS(6310), - [anon_sym_GT_EQ] = ACTIONS(6312), - [anon_sym_LT_EQ] = ACTIONS(6310), - [anon_sym_LT] = ACTIONS(6314), - [anon_sym_LT_LT] = ACTIONS(6310), - [anon_sym_GT_GT] = ACTIONS(6310), - [anon_sym_SEMI] = ACTIONS(6312), - [anon_sym___attribute__] = ACTIONS(6310), - [anon_sym___attribute] = ACTIONS(6310), - [anon_sym_COLON] = ACTIONS(6310), - [anon_sym_COLON_COLON] = ACTIONS(4167), - [anon_sym_RBRACE] = ACTIONS(6312), - [anon_sym_LBRACK] = ACTIONS(6312), - [anon_sym_RBRACK] = ACTIONS(6312), - [anon_sym_EQ] = ACTIONS(6310), - [anon_sym_QMARK] = ACTIONS(6312), - [anon_sym_STAR_EQ] = ACTIONS(6312), - [anon_sym_SLASH_EQ] = ACTIONS(6312), - [anon_sym_PERCENT_EQ] = ACTIONS(6312), - [anon_sym_PLUS_EQ] = ACTIONS(6312), - [anon_sym_DASH_EQ] = ACTIONS(6312), - [anon_sym_LT_LT_EQ] = ACTIONS(6312), - [anon_sym_GT_GT_EQ] = ACTIONS(6312), - [anon_sym_AMP_EQ] = ACTIONS(6312), - [anon_sym_CARET_EQ] = ACTIONS(6312), - [anon_sym_PIPE_EQ] = ACTIONS(6312), - [anon_sym_and_eq] = ACTIONS(6310), - [anon_sym_or_eq] = ACTIONS(6310), - [anon_sym_xor_eq] = ACTIONS(6310), - [anon_sym_LT_EQ_GT] = ACTIONS(6312), - [anon_sym_or] = ACTIONS(6310), - [anon_sym_and] = ACTIONS(6310), - [anon_sym_bitor] = ACTIONS(6310), - [anon_sym_xor] = ACTIONS(6310), - [anon_sym_bitand] = ACTIONS(6310), - [anon_sym_not_eq] = ACTIONS(6310), - [anon_sym_DASH_DASH] = ACTIONS(6312), - [anon_sym_PLUS_PLUS] = ACTIONS(6312), - [anon_sym_DOT] = ACTIONS(6310), - [anon_sym_DOT_STAR] = ACTIONS(6312), - [anon_sym_DASH_GT] = ACTIONS(6312), + [2353] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2344), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5778), + [anon_sym_COMMA] = ACTIONS(5778), + [anon_sym_RPAREN] = ACTIONS(5778), + [anon_sym_LPAREN2] = ACTIONS(5778), + [anon_sym_DASH] = ACTIONS(5776), + [anon_sym_PLUS] = ACTIONS(5776), + [anon_sym_STAR] = ACTIONS(5776), + [anon_sym_SLASH] = ACTIONS(5776), + [anon_sym_PERCENT] = ACTIONS(5776), + [anon_sym_PIPE_PIPE] = ACTIONS(5778), + [anon_sym_AMP_AMP] = ACTIONS(5778), + [anon_sym_PIPE] = ACTIONS(5776), + [anon_sym_CARET] = ACTIONS(5776), + [anon_sym_AMP] = ACTIONS(5776), + [anon_sym_EQ_EQ] = ACTIONS(5778), + [anon_sym_BANG_EQ] = ACTIONS(5778), + [anon_sym_GT] = ACTIONS(5776), + [anon_sym_GT_EQ] = ACTIONS(5778), + [anon_sym_LT_EQ] = ACTIONS(5776), + [anon_sym_LT] = ACTIONS(5776), + [anon_sym_LT_LT] = ACTIONS(5776), + [anon_sym_GT_GT] = ACTIONS(5776), + [anon_sym_SEMI] = ACTIONS(5778), + [anon_sym___attribute__] = ACTIONS(5778), + [anon_sym___attribute] = ACTIONS(5776), + [anon_sym_COLON] = ACTIONS(5778), + [anon_sym_LBRACE] = ACTIONS(5778), + [anon_sym_RBRACE] = ACTIONS(5778), + [anon_sym_signed] = ACTIONS(6322), + [anon_sym_unsigned] = ACTIONS(6322), + [anon_sym_long] = ACTIONS(6322), + [anon_sym_short] = ACTIONS(6322), + [anon_sym_LBRACK] = ACTIONS(5778), + [anon_sym_RBRACK] = ACTIONS(5778), + [anon_sym_EQ] = ACTIONS(5776), + [anon_sym_QMARK] = ACTIONS(5778), + [anon_sym_STAR_EQ] = ACTIONS(5778), + [anon_sym_SLASH_EQ] = ACTIONS(5778), + [anon_sym_PERCENT_EQ] = ACTIONS(5778), + [anon_sym_PLUS_EQ] = ACTIONS(5778), + [anon_sym_DASH_EQ] = ACTIONS(5778), + [anon_sym_LT_LT_EQ] = ACTIONS(5778), + [anon_sym_GT_GT_EQ] = ACTIONS(5778), + [anon_sym_AMP_EQ] = ACTIONS(5778), + [anon_sym_CARET_EQ] = ACTIONS(5778), + [anon_sym_PIPE_EQ] = ACTIONS(5778), + [anon_sym_and_eq] = ACTIONS(5778), + [anon_sym_or_eq] = ACTIONS(5778), + [anon_sym_xor_eq] = ACTIONS(5778), + [anon_sym_LT_EQ_GT] = ACTIONS(5778), + [anon_sym_or] = ACTIONS(5776), + [anon_sym_and] = ACTIONS(5776), + [anon_sym_bitor] = ACTIONS(5778), + [anon_sym_xor] = ACTIONS(5776), + [anon_sym_bitand] = ACTIONS(5778), + [anon_sym_not_eq] = ACTIONS(5778), + [anon_sym_DASH_DASH] = ACTIONS(5778), + [anon_sym_PLUS_PLUS] = ACTIONS(5778), + [anon_sym_DOT] = ACTIONS(5776), + [anon_sym_DOT_STAR] = ACTIONS(5778), + [anon_sym_DASH_GT] = ACTIONS(5778), [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5778), + [anon_sym_decltype] = ACTIONS(5778), }, - [2314] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1585), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5926), - [anon_sym_COMMA] = ACTIONS(5926), - [anon_sym_RPAREN] = ACTIONS(5926), - [anon_sym_LPAREN2] = ACTIONS(5926), - [anon_sym_DASH] = ACTIONS(5928), - [anon_sym_PLUS] = ACTIONS(5928), - [anon_sym_STAR] = ACTIONS(5928), - [anon_sym_SLASH] = ACTIONS(5928), - [anon_sym_PERCENT] = ACTIONS(5928), - [anon_sym_PIPE_PIPE] = ACTIONS(5926), - [anon_sym_AMP_AMP] = ACTIONS(5926), - [anon_sym_PIPE] = ACTIONS(5928), - [anon_sym_CARET] = ACTIONS(5928), - [anon_sym_AMP] = ACTIONS(5928), - [anon_sym_EQ_EQ] = ACTIONS(5926), - [anon_sym_BANG_EQ] = ACTIONS(5926), - [anon_sym_GT] = ACTIONS(5928), - [anon_sym_GT_EQ] = ACTIONS(5926), - [anon_sym_LT_EQ] = ACTIONS(5928), - [anon_sym_LT] = ACTIONS(5928), - [anon_sym_LT_LT] = ACTIONS(5928), - [anon_sym_GT_GT] = ACTIONS(5928), - [anon_sym_SEMI] = ACTIONS(5926), - [anon_sym___attribute__] = ACTIONS(5926), - [anon_sym___attribute] = ACTIONS(5928), - [anon_sym_COLON] = ACTIONS(5926), - [anon_sym_LBRACE] = ACTIONS(5926), - [anon_sym_RBRACE] = ACTIONS(5926), - [anon_sym_signed] = ACTIONS(6308), - [anon_sym_unsigned] = ACTIONS(6308), - [anon_sym_long] = ACTIONS(6308), - [anon_sym_short] = ACTIONS(6308), - [anon_sym_LBRACK] = ACTIONS(5926), - [anon_sym_RBRACK] = ACTIONS(5926), - [anon_sym_EQ] = ACTIONS(5928), - [anon_sym_QMARK] = ACTIONS(5926), - [anon_sym_STAR_EQ] = ACTIONS(5926), - [anon_sym_SLASH_EQ] = ACTIONS(5926), - [anon_sym_PERCENT_EQ] = ACTIONS(5926), - [anon_sym_PLUS_EQ] = ACTIONS(5926), - [anon_sym_DASH_EQ] = ACTIONS(5926), - [anon_sym_LT_LT_EQ] = ACTIONS(5926), - [anon_sym_GT_GT_EQ] = ACTIONS(5926), - [anon_sym_AMP_EQ] = ACTIONS(5926), - [anon_sym_CARET_EQ] = ACTIONS(5926), - [anon_sym_PIPE_EQ] = ACTIONS(5926), - [anon_sym_and_eq] = ACTIONS(5926), - [anon_sym_or_eq] = ACTIONS(5926), - [anon_sym_xor_eq] = ACTIONS(5926), - [anon_sym_LT_EQ_GT] = ACTIONS(5926), - [anon_sym_or] = ACTIONS(5928), - [anon_sym_and] = ACTIONS(5928), - [anon_sym_bitor] = ACTIONS(5926), - [anon_sym_xor] = ACTIONS(5928), - [anon_sym_bitand] = ACTIONS(5926), - [anon_sym_not_eq] = ACTIONS(5926), - [anon_sym_DASH_DASH] = ACTIONS(5926), - [anon_sym_PLUS_PLUS] = ACTIONS(5926), - [anon_sym_DOT] = ACTIONS(5928), - [anon_sym_DOT_STAR] = ACTIONS(5926), - [anon_sym_DASH_GT] = ACTIONS(5926), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5926), - [anon_sym_decltype] = ACTIONS(5926), - }, - [2315] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1585), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5888), - [anon_sym_COMMA] = ACTIONS(5888), - [anon_sym_RPAREN] = ACTIONS(5888), - [anon_sym_LPAREN2] = ACTIONS(5888), - [anon_sym_DASH] = ACTIONS(5890), - [anon_sym_PLUS] = ACTIONS(5890), - [anon_sym_STAR] = ACTIONS(5890), - [anon_sym_SLASH] = ACTIONS(5890), - [anon_sym_PERCENT] = ACTIONS(5890), - [anon_sym_PIPE_PIPE] = ACTIONS(5888), - [anon_sym_AMP_AMP] = ACTIONS(5888), - [anon_sym_PIPE] = ACTIONS(5890), - [anon_sym_CARET] = ACTIONS(5890), - [anon_sym_AMP] = ACTIONS(5890), - [anon_sym_EQ_EQ] = ACTIONS(5888), - [anon_sym_BANG_EQ] = ACTIONS(5888), - [anon_sym_GT] = ACTIONS(5890), - [anon_sym_GT_EQ] = ACTIONS(5888), - [anon_sym_LT_EQ] = ACTIONS(5890), - [anon_sym_LT] = ACTIONS(5890), - [anon_sym_LT_LT] = ACTIONS(5890), - [anon_sym_GT_GT] = ACTIONS(5890), - [anon_sym_SEMI] = ACTIONS(5888), - [anon_sym___attribute__] = ACTIONS(5888), - [anon_sym___attribute] = ACTIONS(5890), - [anon_sym_COLON] = ACTIONS(5888), - [anon_sym_LBRACE] = ACTIONS(5888), - [anon_sym_RBRACE] = ACTIONS(5888), - [anon_sym_signed] = ACTIONS(6308), - [anon_sym_unsigned] = ACTIONS(6308), - [anon_sym_long] = ACTIONS(6308), - [anon_sym_short] = ACTIONS(6308), - [anon_sym_LBRACK] = ACTIONS(5888), - [anon_sym_RBRACK] = ACTIONS(5888), - [anon_sym_EQ] = ACTIONS(5890), - [anon_sym_QMARK] = ACTIONS(5888), - [anon_sym_STAR_EQ] = ACTIONS(5888), - [anon_sym_SLASH_EQ] = ACTIONS(5888), - [anon_sym_PERCENT_EQ] = ACTIONS(5888), - [anon_sym_PLUS_EQ] = ACTIONS(5888), - [anon_sym_DASH_EQ] = ACTIONS(5888), - [anon_sym_LT_LT_EQ] = ACTIONS(5888), - [anon_sym_GT_GT_EQ] = ACTIONS(5888), - [anon_sym_AMP_EQ] = ACTIONS(5888), - [anon_sym_CARET_EQ] = ACTIONS(5888), - [anon_sym_PIPE_EQ] = ACTIONS(5888), - [anon_sym_and_eq] = ACTIONS(5888), - [anon_sym_or_eq] = ACTIONS(5888), - [anon_sym_xor_eq] = ACTIONS(5888), - [anon_sym_LT_EQ_GT] = ACTIONS(5888), - [anon_sym_or] = ACTIONS(5890), - [anon_sym_and] = ACTIONS(5890), - [anon_sym_bitor] = ACTIONS(5888), - [anon_sym_xor] = ACTIONS(5890), - [anon_sym_bitand] = ACTIONS(5888), - [anon_sym_not_eq] = ACTIONS(5888), - [anon_sym_DASH_DASH] = ACTIONS(5888), - [anon_sym_PLUS_PLUS] = ACTIONS(5888), - [anon_sym_DOT] = ACTIONS(5890), - [anon_sym_DOT_STAR] = ACTIONS(5888), - [anon_sym_DASH_GT] = ACTIONS(5888), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5888), - [anon_sym_decltype] = ACTIONS(5888), + [2354] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1608), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5911), + [anon_sym_COMMA] = ACTIONS(5911), + [anon_sym_RPAREN] = ACTIONS(5911), + [anon_sym_LPAREN2] = ACTIONS(5911), + [anon_sym_DASH] = ACTIONS(5913), + [anon_sym_PLUS] = ACTIONS(5913), + [anon_sym_STAR] = ACTIONS(5913), + [anon_sym_SLASH] = ACTIONS(5913), + [anon_sym_PERCENT] = ACTIONS(5913), + [anon_sym_PIPE_PIPE] = ACTIONS(5911), + [anon_sym_AMP_AMP] = ACTIONS(5911), + [anon_sym_PIPE] = ACTIONS(5913), + [anon_sym_CARET] = ACTIONS(5913), + [anon_sym_AMP] = ACTIONS(5913), + [anon_sym_EQ_EQ] = ACTIONS(5911), + [anon_sym_BANG_EQ] = ACTIONS(5911), + [anon_sym_GT] = ACTIONS(5913), + [anon_sym_GT_EQ] = ACTIONS(5911), + [anon_sym_LT_EQ] = ACTIONS(5913), + [anon_sym_LT] = ACTIONS(5913), + [anon_sym_LT_LT] = ACTIONS(5913), + [anon_sym_GT_GT] = ACTIONS(5913), + [anon_sym_SEMI] = ACTIONS(5911), + [anon_sym___attribute__] = ACTIONS(5911), + [anon_sym___attribute] = ACTIONS(5913), + [anon_sym_COLON] = ACTIONS(5911), + [anon_sym_LBRACE] = ACTIONS(5911), + [anon_sym_RBRACE] = ACTIONS(5911), + [anon_sym_signed] = ACTIONS(6324), + [anon_sym_unsigned] = ACTIONS(6324), + [anon_sym_long] = ACTIONS(6324), + [anon_sym_short] = ACTIONS(6324), + [anon_sym_LBRACK] = ACTIONS(5911), + [anon_sym_RBRACK] = ACTIONS(5911), + [anon_sym_EQ] = ACTIONS(5913), + [anon_sym_QMARK] = ACTIONS(5911), + [anon_sym_STAR_EQ] = ACTIONS(5911), + [anon_sym_SLASH_EQ] = ACTIONS(5911), + [anon_sym_PERCENT_EQ] = ACTIONS(5911), + [anon_sym_PLUS_EQ] = ACTIONS(5911), + [anon_sym_DASH_EQ] = ACTIONS(5911), + [anon_sym_LT_LT_EQ] = ACTIONS(5911), + [anon_sym_GT_GT_EQ] = ACTIONS(5911), + [anon_sym_AMP_EQ] = ACTIONS(5911), + [anon_sym_CARET_EQ] = ACTIONS(5911), + [anon_sym_PIPE_EQ] = ACTIONS(5911), + [anon_sym_and_eq] = ACTIONS(5911), + [anon_sym_or_eq] = ACTIONS(5911), + [anon_sym_xor_eq] = ACTIONS(5911), + [anon_sym_LT_EQ_GT] = ACTIONS(5911), + [anon_sym_or] = ACTIONS(5913), + [anon_sym_and] = ACTIONS(5913), + [anon_sym_bitor] = ACTIONS(5911), + [anon_sym_xor] = ACTIONS(5913), + [anon_sym_bitand] = ACTIONS(5911), + [anon_sym_not_eq] = ACTIONS(5911), + [anon_sym_DASH_DASH] = ACTIONS(5911), + [anon_sym_PLUS_PLUS] = ACTIONS(5911), + [anon_sym_DOT] = ACTIONS(5913), + [anon_sym_DOT_STAR] = ACTIONS(5911), + [anon_sym_DASH_GT] = ACTIONS(5911), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5911), + [anon_sym_decltype] = ACTIONS(5911), }, - [2316] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5452), - [anon_sym_COMMA] = ACTIONS(5452), - [anon_sym_RPAREN] = ACTIONS(5452), - [anon_sym_LPAREN2] = ACTIONS(5452), - [anon_sym_DASH] = ACTIONS(5450), - [anon_sym_PLUS] = ACTIONS(5450), - [anon_sym_STAR] = ACTIONS(5450), - [anon_sym_SLASH] = ACTIONS(5450), - [anon_sym_PERCENT] = ACTIONS(5450), - [anon_sym_PIPE_PIPE] = ACTIONS(5452), - [anon_sym_AMP_AMP] = ACTIONS(5452), - [anon_sym_PIPE] = ACTIONS(5450), - [anon_sym_CARET] = ACTIONS(5450), - [anon_sym_AMP] = ACTIONS(5450), - [anon_sym_EQ_EQ] = ACTIONS(5452), - [anon_sym_BANG_EQ] = ACTIONS(5452), - [anon_sym_GT] = ACTIONS(5450), - [anon_sym_GT_EQ] = ACTIONS(5452), - [anon_sym_LT_EQ] = ACTIONS(5450), - [anon_sym_LT] = ACTIONS(5450), - [anon_sym_LT_LT] = ACTIONS(5450), - [anon_sym_GT_GT] = ACTIONS(5450), - [anon_sym_SEMI] = ACTIONS(5452), - [anon_sym___attribute__] = ACTIONS(5452), - [anon_sym___attribute] = ACTIONS(5450), - [anon_sym_COLON] = ACTIONS(5452), - [anon_sym_LBRACE] = ACTIONS(5452), - [anon_sym_RBRACE] = ACTIONS(5452), - [anon_sym_signed] = ACTIONS(6317), - [anon_sym_unsigned] = ACTIONS(6317), - [anon_sym_long] = ACTIONS(6317), - [anon_sym_short] = ACTIONS(6317), - [anon_sym_LBRACK] = ACTIONS(5452), - [anon_sym_RBRACK] = ACTIONS(5452), - [anon_sym_EQ] = ACTIONS(5450), - [anon_sym_QMARK] = ACTIONS(5452), - [anon_sym_STAR_EQ] = ACTIONS(5452), - [anon_sym_SLASH_EQ] = ACTIONS(5452), - [anon_sym_PERCENT_EQ] = ACTIONS(5452), - [anon_sym_PLUS_EQ] = ACTIONS(5452), - [anon_sym_DASH_EQ] = ACTIONS(5452), - [anon_sym_LT_LT_EQ] = ACTIONS(5452), - [anon_sym_GT_GT_EQ] = ACTIONS(5452), - [anon_sym_AMP_EQ] = ACTIONS(5452), - [anon_sym_CARET_EQ] = ACTIONS(5452), - [anon_sym_PIPE_EQ] = ACTIONS(5452), - [anon_sym_and_eq] = ACTIONS(5452), - [anon_sym_or_eq] = ACTIONS(5452), - [anon_sym_xor_eq] = ACTIONS(5452), - [anon_sym_LT_EQ_GT] = ACTIONS(5452), - [anon_sym_or] = ACTIONS(5450), - [anon_sym_and] = ACTIONS(5450), - [anon_sym_bitor] = ACTIONS(5452), - [anon_sym_xor] = ACTIONS(5450), - [anon_sym_bitand] = ACTIONS(5452), - [anon_sym_not_eq] = ACTIONS(5452), - [anon_sym_DASH_DASH] = ACTIONS(5452), - [anon_sym_PLUS_PLUS] = ACTIONS(5452), - [anon_sym_DOT] = ACTIONS(5450), - [anon_sym_DOT_STAR] = ACTIONS(5452), - [anon_sym_DASH_GT] = ACTIONS(5452), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5452), - [anon_sym_decltype] = ACTIONS(5452), + [2355] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1608), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5951), + [anon_sym_COMMA] = ACTIONS(5951), + [anon_sym_RPAREN] = ACTIONS(5951), + [anon_sym_LPAREN2] = ACTIONS(5951), + [anon_sym_DASH] = ACTIONS(5953), + [anon_sym_PLUS] = ACTIONS(5953), + [anon_sym_STAR] = ACTIONS(5953), + [anon_sym_SLASH] = ACTIONS(5953), + [anon_sym_PERCENT] = ACTIONS(5953), + [anon_sym_PIPE_PIPE] = ACTIONS(5951), + [anon_sym_AMP_AMP] = ACTIONS(5951), + [anon_sym_PIPE] = ACTIONS(5953), + [anon_sym_CARET] = ACTIONS(5953), + [anon_sym_AMP] = ACTIONS(5953), + [anon_sym_EQ_EQ] = ACTIONS(5951), + [anon_sym_BANG_EQ] = ACTIONS(5951), + [anon_sym_GT] = ACTIONS(5953), + [anon_sym_GT_EQ] = ACTIONS(5951), + [anon_sym_LT_EQ] = ACTIONS(5953), + [anon_sym_LT] = ACTIONS(5953), + [anon_sym_LT_LT] = ACTIONS(5953), + [anon_sym_GT_GT] = ACTIONS(5953), + [anon_sym_SEMI] = ACTIONS(5951), + [anon_sym___attribute__] = ACTIONS(5951), + [anon_sym___attribute] = ACTIONS(5953), + [anon_sym_COLON] = ACTIONS(5951), + [anon_sym_LBRACE] = ACTIONS(5951), + [anon_sym_RBRACE] = ACTIONS(5951), + [anon_sym_signed] = ACTIONS(6324), + [anon_sym_unsigned] = ACTIONS(6324), + [anon_sym_long] = ACTIONS(6324), + [anon_sym_short] = ACTIONS(6324), + [anon_sym_LBRACK] = ACTIONS(5951), + [anon_sym_RBRACK] = ACTIONS(5951), + [anon_sym_EQ] = ACTIONS(5953), + [anon_sym_QMARK] = ACTIONS(5951), + [anon_sym_STAR_EQ] = ACTIONS(5951), + [anon_sym_SLASH_EQ] = ACTIONS(5951), + [anon_sym_PERCENT_EQ] = ACTIONS(5951), + [anon_sym_PLUS_EQ] = ACTIONS(5951), + [anon_sym_DASH_EQ] = ACTIONS(5951), + [anon_sym_LT_LT_EQ] = ACTIONS(5951), + [anon_sym_GT_GT_EQ] = ACTIONS(5951), + [anon_sym_AMP_EQ] = ACTIONS(5951), + [anon_sym_CARET_EQ] = ACTIONS(5951), + [anon_sym_PIPE_EQ] = ACTIONS(5951), + [anon_sym_and_eq] = ACTIONS(5951), + [anon_sym_or_eq] = ACTIONS(5951), + [anon_sym_xor_eq] = ACTIONS(5951), + [anon_sym_LT_EQ_GT] = ACTIONS(5951), + [anon_sym_or] = ACTIONS(5953), + [anon_sym_and] = ACTIONS(5953), + [anon_sym_bitor] = ACTIONS(5951), + [anon_sym_xor] = ACTIONS(5953), + [anon_sym_bitand] = ACTIONS(5951), + [anon_sym_not_eq] = ACTIONS(5951), + [anon_sym_DASH_DASH] = ACTIONS(5951), + [anon_sym_PLUS_PLUS] = ACTIONS(5951), + [anon_sym_DOT] = ACTIONS(5953), + [anon_sym_DOT_STAR] = ACTIONS(5951), + [anon_sym_DASH_GT] = ACTIONS(5951), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5951), + [anon_sym_decltype] = ACTIONS(5951), }, - [2317] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2356), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5902), - [anon_sym_COMMA] = ACTIONS(5902), - [anon_sym_RPAREN] = ACTIONS(5902), - [anon_sym_LPAREN2] = ACTIONS(5902), - [anon_sym_DASH] = ACTIONS(5904), - [anon_sym_PLUS] = ACTIONS(5904), - [anon_sym_STAR] = ACTIONS(5904), - [anon_sym_SLASH] = ACTIONS(5904), - [anon_sym_PERCENT] = ACTIONS(5904), - [anon_sym_PIPE_PIPE] = ACTIONS(5902), - [anon_sym_AMP_AMP] = ACTIONS(5902), - [anon_sym_PIPE] = ACTIONS(5904), - [anon_sym_CARET] = ACTIONS(5904), - [anon_sym_AMP] = ACTIONS(5904), - [anon_sym_EQ_EQ] = ACTIONS(5902), - [anon_sym_BANG_EQ] = ACTIONS(5902), - [anon_sym_GT] = ACTIONS(5904), - [anon_sym_GT_EQ] = ACTIONS(5902), - [anon_sym_LT_EQ] = ACTIONS(5904), - [anon_sym_LT] = ACTIONS(5904), - [anon_sym_LT_LT] = ACTIONS(5904), - [anon_sym_GT_GT] = ACTIONS(5904), - [anon_sym_SEMI] = ACTIONS(5902), - [anon_sym___attribute__] = ACTIONS(5902), - [anon_sym___attribute] = ACTIONS(5904), - [anon_sym_COLON] = ACTIONS(5902), - [anon_sym_LBRACE] = ACTIONS(5902), - [anon_sym_RBRACE] = ACTIONS(5902), - [anon_sym_signed] = ACTIONS(6319), - [anon_sym_unsigned] = ACTIONS(6319), - [anon_sym_long] = ACTIONS(6319), - [anon_sym_short] = ACTIONS(6319), - [anon_sym_LBRACK] = ACTIONS(5902), - [anon_sym_RBRACK] = ACTIONS(5902), - [anon_sym_EQ] = ACTIONS(5904), - [anon_sym_QMARK] = ACTIONS(5902), - [anon_sym_STAR_EQ] = ACTIONS(5902), - [anon_sym_SLASH_EQ] = ACTIONS(5902), - [anon_sym_PERCENT_EQ] = ACTIONS(5902), - [anon_sym_PLUS_EQ] = ACTIONS(5902), - [anon_sym_DASH_EQ] = ACTIONS(5902), - [anon_sym_LT_LT_EQ] = ACTIONS(5902), - [anon_sym_GT_GT_EQ] = ACTIONS(5902), - [anon_sym_AMP_EQ] = ACTIONS(5902), - [anon_sym_CARET_EQ] = ACTIONS(5902), - [anon_sym_PIPE_EQ] = ACTIONS(5902), - [anon_sym_and_eq] = ACTIONS(5902), - [anon_sym_or_eq] = ACTIONS(5902), - [anon_sym_xor_eq] = ACTIONS(5902), - [anon_sym_LT_EQ_GT] = ACTIONS(5902), - [anon_sym_or] = ACTIONS(5904), - [anon_sym_and] = ACTIONS(5904), - [anon_sym_bitor] = ACTIONS(5902), - [anon_sym_xor] = ACTIONS(5904), - [anon_sym_bitand] = ACTIONS(5902), - [anon_sym_not_eq] = ACTIONS(5902), - [anon_sym_DASH_DASH] = ACTIONS(5902), - [anon_sym_PLUS_PLUS] = ACTIONS(5902), - [anon_sym_DOT] = ACTIONS(5904), - [anon_sym_DOT_STAR] = ACTIONS(5902), - [anon_sym_DASH_GT] = ACTIONS(5902), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5902), - [anon_sym_decltype] = ACTIONS(5902), + [2356] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2357), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5517), + [anon_sym_COMMA] = ACTIONS(5517), + [anon_sym_LPAREN2] = ACTIONS(5517), + [anon_sym_DASH] = ACTIONS(5515), + [anon_sym_PLUS] = ACTIONS(5515), + [anon_sym_STAR] = ACTIONS(5517), + [anon_sym_SLASH] = ACTIONS(5515), + [anon_sym_PERCENT] = ACTIONS(5517), + [anon_sym_PIPE_PIPE] = ACTIONS(5517), + [anon_sym_AMP_AMP] = ACTIONS(5517), + [anon_sym_PIPE] = ACTIONS(5515), + [anon_sym_CARET] = ACTIONS(5517), + [anon_sym_AMP] = ACTIONS(5515), + [anon_sym_EQ_EQ] = ACTIONS(5517), + [anon_sym_BANG_EQ] = ACTIONS(5517), + [anon_sym_GT] = ACTIONS(5515), + [anon_sym_GT_EQ] = ACTIONS(5515), + [anon_sym_LT_EQ] = ACTIONS(5515), + [anon_sym_LT] = ACTIONS(5515), + [anon_sym_LT_LT] = ACTIONS(5517), + [anon_sym_GT_GT] = ACTIONS(5515), + [anon_sym___extension__] = ACTIONS(5517), + [anon_sym___attribute__] = ACTIONS(5517), + [anon_sym___attribute] = ACTIONS(5515), + [anon_sym_LBRACE] = ACTIONS(5517), + [anon_sym_signed] = ACTIONS(6334), + [anon_sym_unsigned] = ACTIONS(6334), + [anon_sym_long] = ACTIONS(6334), + [anon_sym_short] = ACTIONS(6334), + [anon_sym_LBRACK] = ACTIONS(5517), + [anon_sym_const] = ACTIONS(5515), + [anon_sym_constexpr] = ACTIONS(5517), + [anon_sym_volatile] = ACTIONS(5517), + [anon_sym_restrict] = ACTIONS(5517), + [anon_sym___restrict__] = ACTIONS(5517), + [anon_sym__Atomic] = ACTIONS(5517), + [anon_sym__Noreturn] = ACTIONS(5517), + [anon_sym_noreturn] = ACTIONS(5517), + [anon_sym__Nonnull] = ACTIONS(5517), + [anon_sym_mutable] = ACTIONS(5517), + [anon_sym_constinit] = ACTIONS(5517), + [anon_sym_consteval] = ACTIONS(5517), + [anon_sym_alignas] = ACTIONS(5517), + [anon_sym__Alignas] = ACTIONS(5517), + [anon_sym_QMARK] = ACTIONS(5517), + [anon_sym_LT_EQ_GT] = ACTIONS(5517), + [anon_sym_or] = ACTIONS(5517), + [anon_sym_and] = ACTIONS(5517), + [anon_sym_bitor] = ACTIONS(5517), + [anon_sym_xor] = ACTIONS(5517), + [anon_sym_bitand] = ACTIONS(5517), + [anon_sym_not_eq] = ACTIONS(5517), + [anon_sym_DASH_DASH] = ACTIONS(5517), + [anon_sym_PLUS_PLUS] = ACTIONS(5517), + [anon_sym_DOT] = ACTIONS(5515), + [anon_sym_DOT_STAR] = ACTIONS(5517), + [anon_sym_DASH_GT] = ACTIONS(5517), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5517), + [anon_sym_decltype] = ACTIONS(5517), + [anon_sym_final] = ACTIONS(5517), + [anon_sym_override] = ACTIONS(5517), + [anon_sym_GT2] = ACTIONS(5517), + [anon_sym_requires] = ACTIONS(5517), }, - [2318] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1585), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5916), - [anon_sym_COMMA] = ACTIONS(5916), - [anon_sym_RPAREN] = ACTIONS(5916), - [anon_sym_LPAREN2] = ACTIONS(5916), - [anon_sym_DASH] = ACTIONS(5918), - [anon_sym_PLUS] = ACTIONS(5918), - [anon_sym_STAR] = ACTIONS(5918), - [anon_sym_SLASH] = ACTIONS(5918), - [anon_sym_PERCENT] = ACTIONS(5918), - [anon_sym_PIPE_PIPE] = ACTIONS(5916), - [anon_sym_AMP_AMP] = ACTIONS(5916), - [anon_sym_PIPE] = ACTIONS(5918), - [anon_sym_CARET] = ACTIONS(5918), - [anon_sym_AMP] = ACTIONS(5918), - [anon_sym_EQ_EQ] = ACTIONS(5916), - [anon_sym_BANG_EQ] = ACTIONS(5916), - [anon_sym_GT] = ACTIONS(5918), - [anon_sym_GT_EQ] = ACTIONS(5916), - [anon_sym_LT_EQ] = ACTIONS(5918), - [anon_sym_LT] = ACTIONS(5918), - [anon_sym_LT_LT] = ACTIONS(5918), - [anon_sym_GT_GT] = ACTIONS(5918), - [anon_sym_SEMI] = ACTIONS(5916), - [anon_sym___attribute__] = ACTIONS(5916), - [anon_sym___attribute] = ACTIONS(5918), - [anon_sym_COLON] = ACTIONS(5916), - [anon_sym_LBRACE] = ACTIONS(5916), - [anon_sym_RBRACE] = ACTIONS(5916), - [anon_sym_signed] = ACTIONS(6308), - [anon_sym_unsigned] = ACTIONS(6308), - [anon_sym_long] = ACTIONS(6308), - [anon_sym_short] = ACTIONS(6308), - [anon_sym_LBRACK] = ACTIONS(5916), - [anon_sym_RBRACK] = ACTIONS(5916), - [anon_sym_EQ] = ACTIONS(5918), - [anon_sym_QMARK] = ACTIONS(5916), - [anon_sym_STAR_EQ] = ACTIONS(5916), - [anon_sym_SLASH_EQ] = ACTIONS(5916), - [anon_sym_PERCENT_EQ] = ACTIONS(5916), - [anon_sym_PLUS_EQ] = ACTIONS(5916), - [anon_sym_DASH_EQ] = ACTIONS(5916), - [anon_sym_LT_LT_EQ] = ACTIONS(5916), - [anon_sym_GT_GT_EQ] = ACTIONS(5916), - [anon_sym_AMP_EQ] = ACTIONS(5916), - [anon_sym_CARET_EQ] = ACTIONS(5916), - [anon_sym_PIPE_EQ] = ACTIONS(5916), - [anon_sym_and_eq] = ACTIONS(5916), - [anon_sym_or_eq] = ACTIONS(5916), - [anon_sym_xor_eq] = ACTIONS(5916), - [anon_sym_LT_EQ_GT] = ACTIONS(5916), - [anon_sym_or] = ACTIONS(5918), - [anon_sym_and] = ACTIONS(5918), - [anon_sym_bitor] = ACTIONS(5916), - [anon_sym_xor] = ACTIONS(5918), - [anon_sym_bitand] = ACTIONS(5916), - [anon_sym_not_eq] = ACTIONS(5916), - [anon_sym_DASH_DASH] = ACTIONS(5916), - [anon_sym_PLUS_PLUS] = ACTIONS(5916), - [anon_sym_DOT] = ACTIONS(5918), - [anon_sym_DOT_STAR] = ACTIONS(5916), - [anon_sym_DASH_GT] = ACTIONS(5916), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5916), - [anon_sym_decltype] = ACTIONS(5916), + [2357] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5919), + [anon_sym_COMMA] = ACTIONS(5919), + [anon_sym_LPAREN2] = ACTIONS(5919), + [anon_sym_DASH] = ACTIONS(5921), + [anon_sym_PLUS] = ACTIONS(5921), + [anon_sym_STAR] = ACTIONS(5919), + [anon_sym_SLASH] = ACTIONS(5921), + [anon_sym_PERCENT] = ACTIONS(5919), + [anon_sym_PIPE_PIPE] = ACTIONS(5919), + [anon_sym_AMP_AMP] = ACTIONS(5919), + [anon_sym_PIPE] = ACTIONS(5921), + [anon_sym_CARET] = ACTIONS(5919), + [anon_sym_AMP] = ACTIONS(5921), + [anon_sym_EQ_EQ] = ACTIONS(5919), + [anon_sym_BANG_EQ] = ACTIONS(5919), + [anon_sym_GT] = ACTIONS(5921), + [anon_sym_GT_EQ] = ACTIONS(5921), + [anon_sym_LT_EQ] = ACTIONS(5921), + [anon_sym_LT] = ACTIONS(5921), + [anon_sym_LT_LT] = ACTIONS(5919), + [anon_sym_GT_GT] = ACTIONS(5921), + [anon_sym___extension__] = ACTIONS(5919), + [anon_sym___attribute__] = ACTIONS(5919), + [anon_sym___attribute] = ACTIONS(5921), + [anon_sym_LBRACE] = ACTIONS(5919), + [anon_sym_signed] = ACTIONS(6336), + [anon_sym_unsigned] = ACTIONS(6336), + [anon_sym_long] = ACTIONS(6336), + [anon_sym_short] = ACTIONS(6336), + [anon_sym_LBRACK] = ACTIONS(5919), + [anon_sym_const] = ACTIONS(5921), + [anon_sym_constexpr] = ACTIONS(5919), + [anon_sym_volatile] = ACTIONS(5919), + [anon_sym_restrict] = ACTIONS(5919), + [anon_sym___restrict__] = ACTIONS(5919), + [anon_sym__Atomic] = ACTIONS(5919), + [anon_sym__Noreturn] = ACTIONS(5919), + [anon_sym_noreturn] = ACTIONS(5919), + [anon_sym__Nonnull] = ACTIONS(5919), + [anon_sym_mutable] = ACTIONS(5919), + [anon_sym_constinit] = ACTIONS(5919), + [anon_sym_consteval] = ACTIONS(5919), + [anon_sym_alignas] = ACTIONS(5919), + [anon_sym__Alignas] = ACTIONS(5919), + [anon_sym_QMARK] = ACTIONS(5919), + [anon_sym_LT_EQ_GT] = ACTIONS(5919), + [anon_sym_or] = ACTIONS(5919), + [anon_sym_and] = ACTIONS(5919), + [anon_sym_bitor] = ACTIONS(5919), + [anon_sym_xor] = ACTIONS(5919), + [anon_sym_bitand] = ACTIONS(5919), + [anon_sym_not_eq] = ACTIONS(5919), + [anon_sym_DASH_DASH] = ACTIONS(5919), + [anon_sym_PLUS_PLUS] = ACTIONS(5919), + [anon_sym_DOT] = ACTIONS(5921), + [anon_sym_DOT_STAR] = ACTIONS(5919), + [anon_sym_DASH_GT] = ACTIONS(5919), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5919), + [anon_sym_decltype] = ACTIONS(5919), + [anon_sym_final] = ACTIONS(5919), + [anon_sym_override] = ACTIONS(5919), + [anon_sym_GT2] = ACTIONS(5919), + [anon_sym_requires] = ACTIONS(5919), }, - [2319] = { - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_unaligned_ptr_modifier] = STATE(4043), - [sym_ms_pointer_modifier] = STATE(2340), - [sym__declarator] = STATE(6493), - [sym__abstract_declarator] = STATE(6646), - [sym_parenthesized_declarator] = STATE(5998), - [sym_abstract_parenthesized_declarator] = STATE(6092), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_abstract_pointer_declarator] = STATE(6092), - [sym_function_declarator] = STATE(5998), - [sym_abstract_function_declarator] = STATE(6092), - [sym_array_declarator] = STATE(5998), - [sym_abstract_array_declarator] = STATE(6092), - [sym_type_qualifier] = STATE(2845), - [sym_alignas_qualifier] = STATE(4289), - [sym_parameter_list] = STATE(3004), - [sym_decltype] = STATE(8601), - [sym_reference_declarator] = STATE(5998), - [sym_abstract_reference_declarator] = STATE(6092), - [sym_structured_binding_declarator] = STATE(5998), - [sym__function_declarator_seq] = STATE(6087), - [sym_template_type] = STATE(8601), - [sym_template_function] = STATE(5998), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5847), - [sym_qualified_identifier] = STATE(5998), - [sym_operator_name] = STATE(5998), - [aux_sym__type_definition_type_repeat1] = STATE(2845), - [aux_sym_pointer_declarator_repeat1] = STATE(2340), - [sym_identifier] = ACTIONS(5460), - [anon_sym_RPAREN] = ACTIONS(5851), - [anon_sym_LPAREN2] = ACTIONS(4298), - [anon_sym_TILDE] = ACTIONS(2979), - [anon_sym_STAR] = ACTIONS(4300), - [anon_sym_AMP_AMP] = ACTIONS(4302), - [anon_sym_AMP] = ACTIONS(4304), - [anon_sym___extension__] = ACTIONS(3331), - [anon_sym_COLON_COLON] = ACTIONS(6321), - [anon_sym___based] = ACTIONS(53), - [sym_ms_restrict_modifier] = ACTIONS(3327), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(3327), - [sym_ms_signed_ptr_modifier] = ACTIONS(3327), - [anon_sym__unaligned] = ACTIONS(3329), - [anon_sym___unaligned] = ACTIONS(3329), - [anon_sym_LBRACK] = ACTIONS(5863), - [anon_sym_const] = ACTIONS(3331), - [anon_sym_constexpr] = ACTIONS(3331), - [anon_sym_volatile] = ACTIONS(3331), - [anon_sym_restrict] = ACTIONS(3331), - [anon_sym___restrict__] = ACTIONS(3331), - [anon_sym__Atomic] = ACTIONS(3331), - [anon_sym__Noreturn] = ACTIONS(3331), - [anon_sym_noreturn] = ACTIONS(3331), - [anon_sym__Nonnull] = ACTIONS(3331), - [anon_sym_mutable] = ACTIONS(3331), - [anon_sym_constinit] = ACTIONS(3331), - [anon_sym_consteval] = ACTIONS(3331), - [anon_sym_alignas] = ACTIONS(3333), - [anon_sym__Alignas] = ACTIONS(3333), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_operator] = ACTIONS(1852), + [2358] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5929), + [anon_sym_COMMA] = ACTIONS(5929), + [anon_sym_LPAREN2] = ACTIONS(5929), + [anon_sym_DASH] = ACTIONS(5931), + [anon_sym_PLUS] = ACTIONS(5931), + [anon_sym_STAR] = ACTIONS(5929), + [anon_sym_SLASH] = ACTIONS(5931), + [anon_sym_PERCENT] = ACTIONS(5929), + [anon_sym_PIPE_PIPE] = ACTIONS(5929), + [anon_sym_AMP_AMP] = ACTIONS(5929), + [anon_sym_PIPE] = ACTIONS(5931), + [anon_sym_CARET] = ACTIONS(5929), + [anon_sym_AMP] = ACTIONS(5931), + [anon_sym_EQ_EQ] = ACTIONS(5929), + [anon_sym_BANG_EQ] = ACTIONS(5929), + [anon_sym_GT] = ACTIONS(5931), + [anon_sym_GT_EQ] = ACTIONS(5931), + [anon_sym_LT_EQ] = ACTIONS(5931), + [anon_sym_LT] = ACTIONS(5931), + [anon_sym_LT_LT] = ACTIONS(5929), + [anon_sym_GT_GT] = ACTIONS(5931), + [anon_sym___extension__] = ACTIONS(5929), + [anon_sym___attribute__] = ACTIONS(5929), + [anon_sym___attribute] = ACTIONS(5931), + [anon_sym_LBRACE] = ACTIONS(5929), + [anon_sym_signed] = ACTIONS(6336), + [anon_sym_unsigned] = ACTIONS(6336), + [anon_sym_long] = ACTIONS(6336), + [anon_sym_short] = ACTIONS(6336), + [anon_sym_LBRACK] = ACTIONS(5929), + [anon_sym_const] = ACTIONS(5931), + [anon_sym_constexpr] = ACTIONS(5929), + [anon_sym_volatile] = ACTIONS(5929), + [anon_sym_restrict] = ACTIONS(5929), + [anon_sym___restrict__] = ACTIONS(5929), + [anon_sym__Atomic] = ACTIONS(5929), + [anon_sym__Noreturn] = ACTIONS(5929), + [anon_sym_noreturn] = ACTIONS(5929), + [anon_sym__Nonnull] = ACTIONS(5929), + [anon_sym_mutable] = ACTIONS(5929), + [anon_sym_constinit] = ACTIONS(5929), + [anon_sym_consteval] = ACTIONS(5929), + [anon_sym_alignas] = ACTIONS(5929), + [anon_sym__Alignas] = ACTIONS(5929), + [anon_sym_QMARK] = ACTIONS(5929), + [anon_sym_LT_EQ_GT] = ACTIONS(5929), + [anon_sym_or] = ACTIONS(5929), + [anon_sym_and] = ACTIONS(5929), + [anon_sym_bitor] = ACTIONS(5929), + [anon_sym_xor] = ACTIONS(5929), + [anon_sym_bitand] = ACTIONS(5929), + [anon_sym_not_eq] = ACTIONS(5929), + [anon_sym_DASH_DASH] = ACTIONS(5929), + [anon_sym_PLUS_PLUS] = ACTIONS(5929), + [anon_sym_DOT] = ACTIONS(5931), + [anon_sym_DOT_STAR] = ACTIONS(5929), + [anon_sym_DASH_GT] = ACTIONS(5929), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5929), + [anon_sym_decltype] = ACTIONS(5929), + [anon_sym_final] = ACTIONS(5929), + [anon_sym_override] = ACTIONS(5929), + [anon_sym_GT2] = ACTIONS(5929), + [anon_sym_requires] = ACTIONS(5929), }, - [2320] = { - [sym_type_qualifier] = STATE(1633), - [sym_alignas_qualifier] = STATE(1658), - [aux_sym__type_definition_type_repeat1] = STATE(1633), - [aux_sym_sized_type_specifier_repeat1] = STATE(2617), - [sym_identifier] = ACTIONS(6323), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5100), - [anon_sym_COMMA] = ACTIONS(5100), - [anon_sym_RPAREN] = ACTIONS(5100), - [anon_sym_LPAREN2] = ACTIONS(5100), - [anon_sym_TILDE] = ACTIONS(5100), - [anon_sym_STAR] = ACTIONS(5100), - [anon_sym_AMP_AMP] = ACTIONS(5100), - [anon_sym_AMP] = ACTIONS(5102), - [anon_sym_SEMI] = ACTIONS(5100), - [anon_sym___extension__] = ACTIONS(6326), - [anon_sym_virtual] = ACTIONS(5102), - [anon_sym_extern] = ACTIONS(5102), - [anon_sym___attribute__] = ACTIONS(5102), - [anon_sym___attribute] = ACTIONS(5102), - [anon_sym_COLON_COLON] = ACTIONS(5100), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5100), - [anon_sym___declspec] = ACTIONS(5102), - [anon_sym___based] = ACTIONS(5102), - [anon_sym___cdecl] = ACTIONS(5102), - [anon_sym___clrcall] = ACTIONS(5102), - [anon_sym___stdcall] = ACTIONS(5102), - [anon_sym___fastcall] = ACTIONS(5102), - [anon_sym___thiscall] = ACTIONS(5102), - [anon_sym___vectorcall] = ACTIONS(5102), - [anon_sym_LBRACE] = ACTIONS(5100), - [anon_sym_signed] = ACTIONS(6329), - [anon_sym_unsigned] = ACTIONS(6329), - [anon_sym_long] = ACTIONS(6329), - [anon_sym_short] = ACTIONS(6329), - [anon_sym_LBRACK] = ACTIONS(5102), - [anon_sym_static] = ACTIONS(5102), - [anon_sym_EQ] = ACTIONS(5100), - [anon_sym_register] = ACTIONS(5102), - [anon_sym_inline] = ACTIONS(5102), - [anon_sym___inline] = ACTIONS(5102), - [anon_sym___inline__] = ACTIONS(5102), - [anon_sym___forceinline] = ACTIONS(5102), - [anon_sym_thread_local] = ACTIONS(5102), - [anon_sym___thread] = ACTIONS(5102), - [anon_sym_const] = ACTIONS(6326), - [anon_sym_constexpr] = ACTIONS(6326), - [anon_sym_volatile] = ACTIONS(6326), - [anon_sym_restrict] = ACTIONS(6326), - [anon_sym___restrict__] = ACTIONS(6326), - [anon_sym__Atomic] = ACTIONS(6326), - [anon_sym__Noreturn] = ACTIONS(6326), - [anon_sym_noreturn] = ACTIONS(6326), - [anon_sym__Nonnull] = ACTIONS(6326), - [anon_sym_mutable] = ACTIONS(6326), - [anon_sym_constinit] = ACTIONS(6326), - [anon_sym_consteval] = ACTIONS(6326), - [anon_sym_alignas] = ACTIONS(6331), - [anon_sym__Alignas] = ACTIONS(6331), - [sym_primitive_type] = ACTIONS(6334), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5102), - [anon_sym_decltype] = ACTIONS(5102), - [anon_sym_template] = ACTIONS(5102), - [anon_sym_GT2] = ACTIONS(5100), - [anon_sym_operator] = ACTIONS(5102), + [2359] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2363), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5966), + [anon_sym_COMMA] = ACTIONS(5966), + [anon_sym_LPAREN2] = ACTIONS(5966), + [anon_sym_DASH] = ACTIONS(5968), + [anon_sym_PLUS] = ACTIONS(5968), + [anon_sym_STAR] = ACTIONS(5966), + [anon_sym_SLASH] = ACTIONS(5968), + [anon_sym_PERCENT] = ACTIONS(5966), + [anon_sym_PIPE_PIPE] = ACTIONS(5966), + [anon_sym_AMP_AMP] = ACTIONS(5966), + [anon_sym_PIPE] = ACTIONS(5968), + [anon_sym_CARET] = ACTIONS(5966), + [anon_sym_AMP] = ACTIONS(5968), + [anon_sym_EQ_EQ] = ACTIONS(5966), + [anon_sym_BANG_EQ] = ACTIONS(5966), + [anon_sym_GT] = ACTIONS(5968), + [anon_sym_GT_EQ] = ACTIONS(5968), + [anon_sym_LT_EQ] = ACTIONS(5968), + [anon_sym_LT] = ACTIONS(5968), + [anon_sym_LT_LT] = ACTIONS(5966), + [anon_sym_GT_GT] = ACTIONS(5968), + [anon_sym___extension__] = ACTIONS(5966), + [anon_sym___attribute__] = ACTIONS(5966), + [anon_sym___attribute] = ACTIONS(5968), + [anon_sym_LBRACE] = ACTIONS(5966), + [anon_sym_signed] = ACTIONS(6338), + [anon_sym_unsigned] = ACTIONS(6338), + [anon_sym_long] = ACTIONS(6338), + [anon_sym_short] = ACTIONS(6338), + [anon_sym_LBRACK] = ACTIONS(5966), + [anon_sym_const] = ACTIONS(5968), + [anon_sym_constexpr] = ACTIONS(5966), + [anon_sym_volatile] = ACTIONS(5966), + [anon_sym_restrict] = ACTIONS(5966), + [anon_sym___restrict__] = ACTIONS(5966), + [anon_sym__Atomic] = ACTIONS(5966), + [anon_sym__Noreturn] = ACTIONS(5966), + [anon_sym_noreturn] = ACTIONS(5966), + [anon_sym__Nonnull] = ACTIONS(5966), + [anon_sym_mutable] = ACTIONS(5966), + [anon_sym_constinit] = ACTIONS(5966), + [anon_sym_consteval] = ACTIONS(5966), + [anon_sym_alignas] = ACTIONS(5966), + [anon_sym__Alignas] = ACTIONS(5966), + [anon_sym_QMARK] = ACTIONS(5966), + [anon_sym_LT_EQ_GT] = ACTIONS(5966), + [anon_sym_or] = ACTIONS(5966), + [anon_sym_and] = ACTIONS(5966), + [anon_sym_bitor] = ACTIONS(5966), + [anon_sym_xor] = ACTIONS(5966), + [anon_sym_bitand] = ACTIONS(5966), + [anon_sym_not_eq] = ACTIONS(5966), + [anon_sym_DASH_DASH] = ACTIONS(5966), + [anon_sym_PLUS_PLUS] = ACTIONS(5966), + [anon_sym_DOT] = ACTIONS(5968), + [anon_sym_DOT_STAR] = ACTIONS(5966), + [anon_sym_DASH_GT] = ACTIONS(5966), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5966), + [anon_sym_decltype] = ACTIONS(5966), + [anon_sym_final] = ACTIONS(5966), + [anon_sym_override] = ACTIONS(5966), + [anon_sym_GT2] = ACTIONS(5966), + [anon_sym_requires] = ACTIONS(5966), }, - [2321] = { - [sym_attribute_specifier] = STATE(2258), - [sym_enumerator_list] = STATE(2191), - [sym__enum_base_clause] = STATE(2051), - [sym_identifier] = ACTIONS(6336), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6338), - [anon_sym_COMMA] = ACTIONS(6338), - [aux_sym_preproc_if_token2] = ACTIONS(6338), - [aux_sym_preproc_else_token1] = ACTIONS(6338), - [aux_sym_preproc_elif_token1] = ACTIONS(6336), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6338), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6338), - [anon_sym_LPAREN2] = ACTIONS(6338), - [anon_sym_DASH] = ACTIONS(6336), - [anon_sym_PLUS] = ACTIONS(6336), - [anon_sym_STAR] = ACTIONS(6336), - [anon_sym_SLASH] = ACTIONS(6336), - [anon_sym_PERCENT] = ACTIONS(6336), - [anon_sym_PIPE_PIPE] = ACTIONS(6338), - [anon_sym_AMP_AMP] = ACTIONS(6338), - [anon_sym_PIPE] = ACTIONS(6336), - [anon_sym_CARET] = ACTIONS(6336), - [anon_sym_AMP] = ACTIONS(6336), - [anon_sym_EQ_EQ] = ACTIONS(6338), - [anon_sym_BANG_EQ] = ACTIONS(6338), - [anon_sym_GT] = ACTIONS(6336), - [anon_sym_GT_EQ] = ACTIONS(6338), - [anon_sym_LT_EQ] = ACTIONS(6336), - [anon_sym_LT] = ACTIONS(6336), - [anon_sym_LT_LT] = ACTIONS(6336), - [anon_sym_GT_GT] = ACTIONS(6336), - [anon_sym___attribute__] = ACTIONS(5497), - [anon_sym___attribute] = ACTIONS(5497), - [anon_sym_COLON] = ACTIONS(6340), - [anon_sym_LBRACE] = ACTIONS(5987), - [anon_sym_LBRACK] = ACTIONS(6338), - [anon_sym_EQ] = ACTIONS(6336), - [anon_sym_QMARK] = ACTIONS(6338), - [anon_sym_STAR_EQ] = ACTIONS(6338), - [anon_sym_SLASH_EQ] = ACTIONS(6338), - [anon_sym_PERCENT_EQ] = ACTIONS(6338), - [anon_sym_PLUS_EQ] = ACTIONS(6338), - [anon_sym_DASH_EQ] = ACTIONS(6338), - [anon_sym_LT_LT_EQ] = ACTIONS(6338), - [anon_sym_GT_GT_EQ] = ACTIONS(6338), - [anon_sym_AMP_EQ] = ACTIONS(6338), - [anon_sym_CARET_EQ] = ACTIONS(6338), - [anon_sym_PIPE_EQ] = ACTIONS(6338), - [anon_sym_and_eq] = ACTIONS(6336), - [anon_sym_or_eq] = ACTIONS(6336), - [anon_sym_xor_eq] = ACTIONS(6336), - [anon_sym_LT_EQ_GT] = ACTIONS(6338), - [anon_sym_or] = ACTIONS(6336), - [anon_sym_and] = ACTIONS(6336), - [anon_sym_bitor] = ACTIONS(6336), - [anon_sym_xor] = ACTIONS(6336), - [anon_sym_bitand] = ACTIONS(6336), - [anon_sym_not_eq] = ACTIONS(6336), - [anon_sym_DASH_DASH] = ACTIONS(6338), - [anon_sym_PLUS_PLUS] = ACTIONS(6338), - [anon_sym_DOT] = ACTIONS(6336), - [anon_sym_DOT_STAR] = ACTIONS(6338), - [anon_sym_DASH_GT] = ACTIONS(6338), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6336), - [anon_sym_decltype] = ACTIONS(6336), + [2360] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2364), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5972), + [anon_sym_COMMA] = ACTIONS(5972), + [anon_sym_LPAREN2] = ACTIONS(5972), + [anon_sym_DASH] = ACTIONS(5974), + [anon_sym_PLUS] = ACTIONS(5974), + [anon_sym_STAR] = ACTIONS(5972), + [anon_sym_SLASH] = ACTIONS(5974), + [anon_sym_PERCENT] = ACTIONS(5972), + [anon_sym_PIPE_PIPE] = ACTIONS(5972), + [anon_sym_AMP_AMP] = ACTIONS(5972), + [anon_sym_PIPE] = ACTIONS(5974), + [anon_sym_CARET] = ACTIONS(5972), + [anon_sym_AMP] = ACTIONS(5974), + [anon_sym_EQ_EQ] = ACTIONS(5972), + [anon_sym_BANG_EQ] = ACTIONS(5972), + [anon_sym_GT] = ACTIONS(5974), + [anon_sym_GT_EQ] = ACTIONS(5974), + [anon_sym_LT_EQ] = ACTIONS(5974), + [anon_sym_LT] = ACTIONS(5974), + [anon_sym_LT_LT] = ACTIONS(5972), + [anon_sym_GT_GT] = ACTIONS(5974), + [anon_sym___extension__] = ACTIONS(5972), + [anon_sym___attribute__] = ACTIONS(5972), + [anon_sym___attribute] = ACTIONS(5974), + [anon_sym_LBRACE] = ACTIONS(5972), + [anon_sym_signed] = ACTIONS(6340), + [anon_sym_unsigned] = ACTIONS(6340), + [anon_sym_long] = ACTIONS(6340), + [anon_sym_short] = ACTIONS(6340), + [anon_sym_LBRACK] = ACTIONS(5972), + [anon_sym_const] = ACTIONS(5974), + [anon_sym_constexpr] = ACTIONS(5972), + [anon_sym_volatile] = ACTIONS(5972), + [anon_sym_restrict] = ACTIONS(5972), + [anon_sym___restrict__] = ACTIONS(5972), + [anon_sym__Atomic] = ACTIONS(5972), + [anon_sym__Noreturn] = ACTIONS(5972), + [anon_sym_noreturn] = ACTIONS(5972), + [anon_sym__Nonnull] = ACTIONS(5972), + [anon_sym_mutable] = ACTIONS(5972), + [anon_sym_constinit] = ACTIONS(5972), + [anon_sym_consteval] = ACTIONS(5972), + [anon_sym_alignas] = ACTIONS(5972), + [anon_sym__Alignas] = ACTIONS(5972), + [anon_sym_QMARK] = ACTIONS(5972), + [anon_sym_LT_EQ_GT] = ACTIONS(5972), + [anon_sym_or] = ACTIONS(5972), + [anon_sym_and] = ACTIONS(5972), + [anon_sym_bitor] = ACTIONS(5972), + [anon_sym_xor] = ACTIONS(5972), + [anon_sym_bitand] = ACTIONS(5972), + [anon_sym_not_eq] = ACTIONS(5972), + [anon_sym_DASH_DASH] = ACTIONS(5972), + [anon_sym_PLUS_PLUS] = ACTIONS(5972), + [anon_sym_DOT] = ACTIONS(5974), + [anon_sym_DOT_STAR] = ACTIONS(5972), + [anon_sym_DASH_GT] = ACTIONS(5972), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5972), + [anon_sym_decltype] = ACTIONS(5972), + [anon_sym_final] = ACTIONS(5972), + [anon_sym_override] = ACTIONS(5972), + [anon_sym_GT2] = ACTIONS(5972), + [anon_sym_requires] = ACTIONS(5972), }, - [2322] = { - [sym_attribute_specifier] = STATE(2228), - [sym_enumerator_list] = STATE(2181), - [sym__enum_base_clause] = STATE(2116), + [2361] = { [sym_identifier] = ACTIONS(6342), [anon_sym_DOT_DOT_DOT] = ACTIONS(6344), [anon_sym_COMMA] = ACTIONS(6344), + [anon_sym_RPAREN] = ACTIONS(6344), [aux_sym_preproc_if_token2] = ACTIONS(6344), [aux_sym_preproc_else_token1] = ACTIONS(6344), [aux_sym_preproc_elif_token1] = ACTIONS(6342), @@ -291136,11 +295532,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(6342), [anon_sym_LT_LT] = ACTIONS(6342), [anon_sym_GT_GT] = ACTIONS(6342), - [anon_sym___attribute__] = ACTIONS(5497), - [anon_sym___attribute] = ACTIONS(5497), - [anon_sym_COLON] = ACTIONS(6340), - [anon_sym_LBRACE] = ACTIONS(5987), + [anon_sym_SEMI] = ACTIONS(6344), + [anon_sym___attribute__] = ACTIONS(6342), + [anon_sym___attribute] = ACTIONS(6342), + [anon_sym_COLON] = ACTIONS(6342), + [anon_sym_COLON_COLON] = ACTIONS(4991), + [anon_sym_LBRACE] = ACTIONS(6344), + [anon_sym_RBRACE] = ACTIONS(6344), [anon_sym_LBRACK] = ACTIONS(6344), + [anon_sym_RBRACK] = ACTIONS(6344), [anon_sym_EQ] = ACTIONS(6342), [anon_sym_QMARK] = ACTIONS(6344), [anon_sym_STAR_EQ] = ACTIONS(6344), @@ -291169,145 +295569,545 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_STAR] = ACTIONS(6344), [anon_sym_DASH_GT] = ACTIONS(6344), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6342), - [anon_sym_decltype] = ACTIONS(6342), - }, - [2323] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2332), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5452), - [anon_sym_COMMA] = ACTIONS(5452), - [anon_sym_LPAREN2] = ACTIONS(5452), - [anon_sym_DASH] = ACTIONS(5450), - [anon_sym_PLUS] = ACTIONS(5450), - [anon_sym_STAR] = ACTIONS(5452), - [anon_sym_SLASH] = ACTIONS(5450), - [anon_sym_PERCENT] = ACTIONS(5452), - [anon_sym_PIPE_PIPE] = ACTIONS(5452), - [anon_sym_AMP_AMP] = ACTIONS(5452), - [anon_sym_PIPE] = ACTIONS(5450), - [anon_sym_CARET] = ACTIONS(5452), - [anon_sym_AMP] = ACTIONS(5450), - [anon_sym_EQ_EQ] = ACTIONS(5452), - [anon_sym_BANG_EQ] = ACTIONS(5452), - [anon_sym_GT] = ACTIONS(5450), - [anon_sym_GT_EQ] = ACTIONS(5450), - [anon_sym_LT_EQ] = ACTIONS(5450), - [anon_sym_LT] = ACTIONS(5450), - [anon_sym_LT_LT] = ACTIONS(5452), - [anon_sym_GT_GT] = ACTIONS(5450), - [anon_sym___extension__] = ACTIONS(5452), - [anon_sym___attribute__] = ACTIONS(5452), - [anon_sym___attribute] = ACTIONS(5450), - [anon_sym_LBRACE] = ACTIONS(5452), - [anon_sym_signed] = ACTIONS(6346), - [anon_sym_unsigned] = ACTIONS(6346), - [anon_sym_long] = ACTIONS(6346), - [anon_sym_short] = ACTIONS(6346), - [anon_sym_LBRACK] = ACTIONS(5452), - [anon_sym_const] = ACTIONS(5450), - [anon_sym_constexpr] = ACTIONS(5452), - [anon_sym_volatile] = ACTIONS(5452), - [anon_sym_restrict] = ACTIONS(5452), - [anon_sym___restrict__] = ACTIONS(5452), - [anon_sym__Atomic] = ACTIONS(5452), - [anon_sym__Noreturn] = ACTIONS(5452), - [anon_sym_noreturn] = ACTIONS(5452), - [anon_sym__Nonnull] = ACTIONS(5452), - [anon_sym_mutable] = ACTIONS(5452), - [anon_sym_constinit] = ACTIONS(5452), - [anon_sym_consteval] = ACTIONS(5452), - [anon_sym_alignas] = ACTIONS(5452), - [anon_sym__Alignas] = ACTIONS(5452), - [anon_sym_QMARK] = ACTIONS(5452), - [anon_sym_LT_EQ_GT] = ACTIONS(5452), - [anon_sym_or] = ACTIONS(5452), - [anon_sym_and] = ACTIONS(5452), - [anon_sym_bitor] = ACTIONS(5452), - [anon_sym_xor] = ACTIONS(5452), - [anon_sym_bitand] = ACTIONS(5452), - [anon_sym_not_eq] = ACTIONS(5452), - [anon_sym_DASH_DASH] = ACTIONS(5452), - [anon_sym_PLUS_PLUS] = ACTIONS(5452), - [anon_sym_DOT] = ACTIONS(5450), - [anon_sym_DOT_STAR] = ACTIONS(5452), - [anon_sym_DASH_GT] = ACTIONS(5452), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5452), - [anon_sym_decltype] = ACTIONS(5452), - [anon_sym_final] = ACTIONS(5452), - [anon_sym_override] = ACTIONS(5452), - [anon_sym_GT2] = ACTIONS(5452), - [anon_sym_requires] = ACTIONS(5452), }, - [2324] = { - [sym_identifier] = ACTIONS(6348), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6350), - [anon_sym_COMMA] = ACTIONS(6350), - [anon_sym_RPAREN] = ACTIONS(6350), - [aux_sym_preproc_if_token2] = ACTIONS(6350), - [aux_sym_preproc_else_token1] = ACTIONS(6350), - [aux_sym_preproc_elif_token1] = ACTIONS(6348), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6350), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6350), - [anon_sym_LPAREN2] = ACTIONS(6350), - [anon_sym_DASH] = ACTIONS(6348), - [anon_sym_PLUS] = ACTIONS(6348), - [anon_sym_STAR] = ACTIONS(6348), - [anon_sym_SLASH] = ACTIONS(6348), - [anon_sym_PERCENT] = ACTIONS(6348), - [anon_sym_PIPE_PIPE] = ACTIONS(6350), - [anon_sym_AMP_AMP] = ACTIONS(6350), - [anon_sym_PIPE] = ACTIONS(6348), - [anon_sym_CARET] = ACTIONS(6348), - [anon_sym_AMP] = ACTIONS(6348), - [anon_sym_EQ_EQ] = ACTIONS(6350), - [anon_sym_BANG_EQ] = ACTIONS(6350), - [anon_sym_GT] = ACTIONS(6348), - [anon_sym_GT_EQ] = ACTIONS(6350), - [anon_sym_LT_EQ] = ACTIONS(6348), - [anon_sym_LT] = ACTIONS(6348), - [anon_sym_LT_LT] = ACTIONS(6348), - [anon_sym_GT_GT] = ACTIONS(6348), - [anon_sym_SEMI] = ACTIONS(6350), - [anon_sym___attribute__] = ACTIONS(6348), - [anon_sym___attribute] = ACTIONS(6348), + [2362] = { + [sym_new_declarator] = STATE(2428), + [sym_identifier] = ACTIONS(6346), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6348), + [anon_sym_COMMA] = ACTIONS(6348), + [anon_sym_RPAREN] = ACTIONS(6348), + [aux_sym_preproc_if_token2] = ACTIONS(6348), + [aux_sym_preproc_else_token1] = ACTIONS(6348), + [aux_sym_preproc_elif_token1] = ACTIONS(6346), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6348), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6348), + [anon_sym_LPAREN2] = ACTIONS(6348), + [anon_sym_DASH] = ACTIONS(6346), + [anon_sym_PLUS] = ACTIONS(6346), + [anon_sym_STAR] = ACTIONS(6346), + [anon_sym_SLASH] = ACTIONS(6346), + [anon_sym_PERCENT] = ACTIONS(6346), + [anon_sym_PIPE_PIPE] = ACTIONS(6348), + [anon_sym_AMP_AMP] = ACTIONS(6348), + [anon_sym_PIPE] = ACTIONS(6346), + [anon_sym_CARET] = ACTIONS(6346), + [anon_sym_AMP] = ACTIONS(6346), + [anon_sym_EQ_EQ] = ACTIONS(6348), + [anon_sym_BANG_EQ] = ACTIONS(6348), + [anon_sym_GT] = ACTIONS(6346), + [anon_sym_GT_EQ] = ACTIONS(6348), + [anon_sym_LT_EQ] = ACTIONS(6346), + [anon_sym_LT] = ACTIONS(6346), + [anon_sym_LT_LT] = ACTIONS(6346), + [anon_sym_GT_GT] = ACTIONS(6346), + [anon_sym_SEMI] = ACTIONS(6348), + [anon_sym___attribute__] = ACTIONS(6346), + [anon_sym___attribute] = ACTIONS(6346), [anon_sym_COLON] = ACTIONS(6348), - [anon_sym_COLON_COLON] = ACTIONS(5003), - [anon_sym_LBRACE] = ACTIONS(6350), - [anon_sym_RBRACE] = ACTIONS(6350), - [anon_sym_LBRACK] = ACTIONS(6350), - [anon_sym_RBRACK] = ACTIONS(6350), - [anon_sym_EQ] = ACTIONS(6348), - [anon_sym_QMARK] = ACTIONS(6350), - [anon_sym_STAR_EQ] = ACTIONS(6350), - [anon_sym_SLASH_EQ] = ACTIONS(6350), - [anon_sym_PERCENT_EQ] = ACTIONS(6350), - [anon_sym_PLUS_EQ] = ACTIONS(6350), - [anon_sym_DASH_EQ] = ACTIONS(6350), - [anon_sym_LT_LT_EQ] = ACTIONS(6350), - [anon_sym_GT_GT_EQ] = ACTIONS(6350), - [anon_sym_AMP_EQ] = ACTIONS(6350), - [anon_sym_CARET_EQ] = ACTIONS(6350), - [anon_sym_PIPE_EQ] = ACTIONS(6350), - [anon_sym_and_eq] = ACTIONS(6348), - [anon_sym_or_eq] = ACTIONS(6348), - [anon_sym_xor_eq] = ACTIONS(6348), - [anon_sym_LT_EQ_GT] = ACTIONS(6350), - [anon_sym_or] = ACTIONS(6348), - [anon_sym_and] = ACTIONS(6348), - [anon_sym_bitor] = ACTIONS(6348), - [anon_sym_xor] = ACTIONS(6348), - [anon_sym_bitand] = ACTIONS(6348), - [anon_sym_not_eq] = ACTIONS(6348), - [anon_sym_DASH_DASH] = ACTIONS(6350), - [anon_sym_PLUS_PLUS] = ACTIONS(6350), - [anon_sym_DOT] = ACTIONS(6348), - [anon_sym_DOT_STAR] = ACTIONS(6350), - [anon_sym_DASH_GT] = ACTIONS(6350), + [anon_sym_LBRACE] = ACTIONS(6348), + [anon_sym_RBRACE] = ACTIONS(6348), + [anon_sym_LBRACK] = ACTIONS(5847), + [anon_sym_RBRACK] = ACTIONS(6348), + [anon_sym_EQ] = ACTIONS(6346), + [anon_sym_QMARK] = ACTIONS(6348), + [anon_sym_STAR_EQ] = ACTIONS(6348), + [anon_sym_SLASH_EQ] = ACTIONS(6348), + [anon_sym_PERCENT_EQ] = ACTIONS(6348), + [anon_sym_PLUS_EQ] = ACTIONS(6348), + [anon_sym_DASH_EQ] = ACTIONS(6348), + [anon_sym_LT_LT_EQ] = ACTIONS(6348), + [anon_sym_GT_GT_EQ] = ACTIONS(6348), + [anon_sym_AMP_EQ] = ACTIONS(6348), + [anon_sym_CARET_EQ] = ACTIONS(6348), + [anon_sym_PIPE_EQ] = ACTIONS(6348), + [anon_sym_and_eq] = ACTIONS(6346), + [anon_sym_or_eq] = ACTIONS(6346), + [anon_sym_xor_eq] = ACTIONS(6346), + [anon_sym_LT_EQ_GT] = ACTIONS(6348), + [anon_sym_or] = ACTIONS(6346), + [anon_sym_and] = ACTIONS(6346), + [anon_sym_bitor] = ACTIONS(6346), + [anon_sym_xor] = ACTIONS(6346), + [anon_sym_bitand] = ACTIONS(6346), + [anon_sym_not_eq] = ACTIONS(6346), + [anon_sym_DASH_DASH] = ACTIONS(6348), + [anon_sym_PLUS_PLUS] = ACTIONS(6348), + [anon_sym_DOT] = ACTIONS(6346), + [anon_sym_DOT_STAR] = ACTIONS(6348), + [anon_sym_DASH_GT] = ACTIONS(6348), [sym_comment] = ACTIONS(3), }, - [2325] = { - [sym_new_declarator] = STATE(2397), + [2363] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5978), + [anon_sym_COMMA] = ACTIONS(5978), + [anon_sym_LPAREN2] = ACTIONS(5978), + [anon_sym_DASH] = ACTIONS(5980), + [anon_sym_PLUS] = ACTIONS(5980), + [anon_sym_STAR] = ACTIONS(5978), + [anon_sym_SLASH] = ACTIONS(5980), + [anon_sym_PERCENT] = ACTIONS(5978), + [anon_sym_PIPE_PIPE] = ACTIONS(5978), + [anon_sym_AMP_AMP] = ACTIONS(5978), + [anon_sym_PIPE] = ACTIONS(5980), + [anon_sym_CARET] = ACTIONS(5978), + [anon_sym_AMP] = ACTIONS(5980), + [anon_sym_EQ_EQ] = ACTIONS(5978), + [anon_sym_BANG_EQ] = ACTIONS(5978), + [anon_sym_GT] = ACTIONS(5980), + [anon_sym_GT_EQ] = ACTIONS(5980), + [anon_sym_LT_EQ] = ACTIONS(5980), + [anon_sym_LT] = ACTIONS(5980), + [anon_sym_LT_LT] = ACTIONS(5978), + [anon_sym_GT_GT] = ACTIONS(5980), + [anon_sym___extension__] = ACTIONS(5978), + [anon_sym___attribute__] = ACTIONS(5978), + [anon_sym___attribute] = ACTIONS(5980), + [anon_sym_LBRACE] = ACTIONS(5978), + [anon_sym_signed] = ACTIONS(6336), + [anon_sym_unsigned] = ACTIONS(6336), + [anon_sym_long] = ACTIONS(6336), + [anon_sym_short] = ACTIONS(6336), + [anon_sym_LBRACK] = ACTIONS(5978), + [anon_sym_const] = ACTIONS(5980), + [anon_sym_constexpr] = ACTIONS(5978), + [anon_sym_volatile] = ACTIONS(5978), + [anon_sym_restrict] = ACTIONS(5978), + [anon_sym___restrict__] = ACTIONS(5978), + [anon_sym__Atomic] = ACTIONS(5978), + [anon_sym__Noreturn] = ACTIONS(5978), + [anon_sym_noreturn] = ACTIONS(5978), + [anon_sym__Nonnull] = ACTIONS(5978), + [anon_sym_mutable] = ACTIONS(5978), + [anon_sym_constinit] = ACTIONS(5978), + [anon_sym_consteval] = ACTIONS(5978), + [anon_sym_alignas] = ACTIONS(5978), + [anon_sym__Alignas] = ACTIONS(5978), + [anon_sym_QMARK] = ACTIONS(5978), + [anon_sym_LT_EQ_GT] = ACTIONS(5978), + [anon_sym_or] = ACTIONS(5978), + [anon_sym_and] = ACTIONS(5978), + [anon_sym_bitor] = ACTIONS(5978), + [anon_sym_xor] = ACTIONS(5978), + [anon_sym_bitand] = ACTIONS(5978), + [anon_sym_not_eq] = ACTIONS(5978), + [anon_sym_DASH_DASH] = ACTIONS(5978), + [anon_sym_PLUS_PLUS] = ACTIONS(5978), + [anon_sym_DOT] = ACTIONS(5980), + [anon_sym_DOT_STAR] = ACTIONS(5978), + [anon_sym_DASH_GT] = ACTIONS(5978), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5978), + [anon_sym_decltype] = ACTIONS(5978), + [anon_sym_final] = ACTIONS(5978), + [anon_sym_override] = ACTIONS(5978), + [anon_sym_GT2] = ACTIONS(5978), + [anon_sym_requires] = ACTIONS(5978), + }, + [2364] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5986), + [anon_sym_COMMA] = ACTIONS(5986), + [anon_sym_LPAREN2] = ACTIONS(5986), + [anon_sym_DASH] = ACTIONS(5988), + [anon_sym_PLUS] = ACTIONS(5988), + [anon_sym_STAR] = ACTIONS(5986), + [anon_sym_SLASH] = ACTIONS(5988), + [anon_sym_PERCENT] = ACTIONS(5986), + [anon_sym_PIPE_PIPE] = ACTIONS(5986), + [anon_sym_AMP_AMP] = ACTIONS(5986), + [anon_sym_PIPE] = ACTIONS(5988), + [anon_sym_CARET] = ACTIONS(5986), + [anon_sym_AMP] = ACTIONS(5988), + [anon_sym_EQ_EQ] = ACTIONS(5986), + [anon_sym_BANG_EQ] = ACTIONS(5986), + [anon_sym_GT] = ACTIONS(5988), + [anon_sym_GT_EQ] = ACTIONS(5988), + [anon_sym_LT_EQ] = ACTIONS(5988), + [anon_sym_LT] = ACTIONS(5988), + [anon_sym_LT_LT] = ACTIONS(5986), + [anon_sym_GT_GT] = ACTIONS(5988), + [anon_sym___extension__] = ACTIONS(5986), + [anon_sym___attribute__] = ACTIONS(5986), + [anon_sym___attribute] = ACTIONS(5988), + [anon_sym_LBRACE] = ACTIONS(5986), + [anon_sym_signed] = ACTIONS(6336), + [anon_sym_unsigned] = ACTIONS(6336), + [anon_sym_long] = ACTIONS(6336), + [anon_sym_short] = ACTIONS(6336), + [anon_sym_LBRACK] = ACTIONS(5986), + [anon_sym_const] = ACTIONS(5988), + [anon_sym_constexpr] = ACTIONS(5986), + [anon_sym_volatile] = ACTIONS(5986), + [anon_sym_restrict] = ACTIONS(5986), + [anon_sym___restrict__] = ACTIONS(5986), + [anon_sym__Atomic] = ACTIONS(5986), + [anon_sym__Noreturn] = ACTIONS(5986), + [anon_sym_noreturn] = ACTIONS(5986), + [anon_sym__Nonnull] = ACTIONS(5986), + [anon_sym_mutable] = ACTIONS(5986), + [anon_sym_constinit] = ACTIONS(5986), + [anon_sym_consteval] = ACTIONS(5986), + [anon_sym_alignas] = ACTIONS(5986), + [anon_sym__Alignas] = ACTIONS(5986), + [anon_sym_QMARK] = ACTIONS(5986), + [anon_sym_LT_EQ_GT] = ACTIONS(5986), + [anon_sym_or] = ACTIONS(5986), + [anon_sym_and] = ACTIONS(5986), + [anon_sym_bitor] = ACTIONS(5986), + [anon_sym_xor] = ACTIONS(5986), + [anon_sym_bitand] = ACTIONS(5986), + [anon_sym_not_eq] = ACTIONS(5986), + [anon_sym_DASH_DASH] = ACTIONS(5986), + [anon_sym_PLUS_PLUS] = ACTIONS(5986), + [anon_sym_DOT] = ACTIONS(5988), + [anon_sym_DOT_STAR] = ACTIONS(5986), + [anon_sym_DASH_GT] = ACTIONS(5986), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5986), + [anon_sym_decltype] = ACTIONS(5986), + [anon_sym_final] = ACTIONS(5986), + [anon_sym_override] = ACTIONS(5986), + [anon_sym_GT2] = ACTIONS(5986), + [anon_sym_requires] = ACTIONS(5986), + }, + [2365] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2371), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5933), + [anon_sym_COMMA] = ACTIONS(5933), + [anon_sym_LPAREN2] = ACTIONS(5933), + [anon_sym_DASH] = ACTIONS(5935), + [anon_sym_PLUS] = ACTIONS(5935), + [anon_sym_STAR] = ACTIONS(5933), + [anon_sym_SLASH] = ACTIONS(5935), + [anon_sym_PERCENT] = ACTIONS(5933), + [anon_sym_PIPE_PIPE] = ACTIONS(5933), + [anon_sym_AMP_AMP] = ACTIONS(5933), + [anon_sym_PIPE] = ACTIONS(5935), + [anon_sym_CARET] = ACTIONS(5933), + [anon_sym_AMP] = ACTIONS(5935), + [anon_sym_EQ_EQ] = ACTIONS(5933), + [anon_sym_BANG_EQ] = ACTIONS(5933), + [anon_sym_GT] = ACTIONS(5935), + [anon_sym_GT_EQ] = ACTIONS(5935), + [anon_sym_LT_EQ] = ACTIONS(5935), + [anon_sym_LT] = ACTIONS(5935), + [anon_sym_LT_LT] = ACTIONS(5933), + [anon_sym_GT_GT] = ACTIONS(5935), + [anon_sym___extension__] = ACTIONS(5933), + [anon_sym___attribute__] = ACTIONS(5933), + [anon_sym___attribute] = ACTIONS(5935), + [anon_sym_LBRACE] = ACTIONS(5933), + [anon_sym_signed] = ACTIONS(6350), + [anon_sym_unsigned] = ACTIONS(6350), + [anon_sym_long] = ACTIONS(6350), + [anon_sym_short] = ACTIONS(6350), + [anon_sym_LBRACK] = ACTIONS(5933), + [anon_sym_const] = ACTIONS(5935), + [anon_sym_constexpr] = ACTIONS(5933), + [anon_sym_volatile] = ACTIONS(5933), + [anon_sym_restrict] = ACTIONS(5933), + [anon_sym___restrict__] = ACTIONS(5933), + [anon_sym__Atomic] = ACTIONS(5933), + [anon_sym__Noreturn] = ACTIONS(5933), + [anon_sym_noreturn] = ACTIONS(5933), + [anon_sym__Nonnull] = ACTIONS(5933), + [anon_sym_mutable] = ACTIONS(5933), + [anon_sym_constinit] = ACTIONS(5933), + [anon_sym_consteval] = ACTIONS(5933), + [anon_sym_alignas] = ACTIONS(5933), + [anon_sym__Alignas] = ACTIONS(5933), + [anon_sym_QMARK] = ACTIONS(5933), + [anon_sym_LT_EQ_GT] = ACTIONS(5933), + [anon_sym_or] = ACTIONS(5933), + [anon_sym_and] = ACTIONS(5933), + [anon_sym_bitor] = ACTIONS(5933), + [anon_sym_xor] = ACTIONS(5933), + [anon_sym_bitand] = ACTIONS(5933), + [anon_sym_not_eq] = ACTIONS(5933), + [anon_sym_DASH_DASH] = ACTIONS(5933), + [anon_sym_PLUS_PLUS] = ACTIONS(5933), + [anon_sym_DOT] = ACTIONS(5935), + [anon_sym_DOT_STAR] = ACTIONS(5933), + [anon_sym_DASH_GT] = ACTIONS(5933), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5933), + [anon_sym_decltype] = ACTIONS(5933), + [anon_sym_final] = ACTIONS(5933), + [anon_sym_override] = ACTIONS(5933), + [anon_sym_GT2] = ACTIONS(5933), + [anon_sym_requires] = ACTIONS(5933), + }, + [2366] = { + [sym_attribute_specifier] = STATE(1872), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6167), + [anon_sym_COMMA] = ACTIONS(6167), + [anon_sym_RPAREN] = ACTIONS(6167), + [anon_sym_LPAREN2] = ACTIONS(6167), + [anon_sym_DASH] = ACTIONS(6165), + [anon_sym_PLUS] = ACTIONS(6165), + [anon_sym_STAR] = ACTIONS(6167), + [anon_sym_SLASH] = ACTIONS(6165), + [anon_sym_PERCENT] = ACTIONS(6167), + [anon_sym_PIPE_PIPE] = ACTIONS(6167), + [anon_sym_AMP_AMP] = ACTIONS(6167), + [anon_sym_PIPE] = ACTIONS(6165), + [anon_sym_CARET] = ACTIONS(6167), + [anon_sym_AMP] = ACTIONS(6165), + [anon_sym_EQ_EQ] = ACTIONS(6167), + [anon_sym_BANG_EQ] = ACTIONS(6167), + [anon_sym_GT] = ACTIONS(6165), + [anon_sym_GT_EQ] = ACTIONS(6167), + [anon_sym_LT_EQ] = ACTIONS(6165), + [anon_sym_LT] = ACTIONS(6165), + [anon_sym_LT_LT] = ACTIONS(6167), + [anon_sym_GT_GT] = ACTIONS(6167), + [anon_sym_SEMI] = ACTIONS(6167), + [anon_sym___extension__] = ACTIONS(6167), + [anon_sym___attribute__] = ACTIONS(6031), + [anon_sym___attribute] = ACTIONS(6033), + [anon_sym_COLON] = ACTIONS(6167), + [anon_sym_LBRACE] = ACTIONS(6167), + [anon_sym_RBRACE] = ACTIONS(6167), + [anon_sym_LBRACK] = ACTIONS(6167), + [anon_sym_RBRACK] = ACTIONS(6167), + [anon_sym_const] = ACTIONS(6165), + [anon_sym_constexpr] = ACTIONS(6167), + [anon_sym_volatile] = ACTIONS(6167), + [anon_sym_restrict] = ACTIONS(6167), + [anon_sym___restrict__] = ACTIONS(6167), + [anon_sym__Atomic] = ACTIONS(6167), + [anon_sym__Noreturn] = ACTIONS(6167), + [anon_sym_noreturn] = ACTIONS(6167), + [anon_sym__Nonnull] = ACTIONS(6167), + [anon_sym_mutable] = ACTIONS(6167), + [anon_sym_constinit] = ACTIONS(6167), + [anon_sym_consteval] = ACTIONS(6167), + [anon_sym_alignas] = ACTIONS(6167), + [anon_sym__Alignas] = ACTIONS(6167), + [anon_sym_QMARK] = ACTIONS(6167), + [anon_sym_LT_EQ_GT] = ACTIONS(6167), + [anon_sym_or] = ACTIONS(6167), + [anon_sym_and] = ACTIONS(6167), + [anon_sym_bitor] = ACTIONS(6167), + [anon_sym_xor] = ACTIONS(6167), + [anon_sym_bitand] = ACTIONS(6167), + [anon_sym_not_eq] = ACTIONS(6167), + [anon_sym_DASH_DASH] = ACTIONS(6167), + [anon_sym_PLUS_PLUS] = ACTIONS(6167), + [anon_sym_DOT] = ACTIONS(6165), + [anon_sym_DOT_STAR] = ACTIONS(6167), + [anon_sym_DASH_GT] = ACTIONS(6167), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6167), + [anon_sym_decltype] = ACTIONS(6167), + [anon_sym_final] = ACTIONS(6167), + [anon_sym_override] = ACTIONS(6167), + [anon_sym_requires] = ACTIONS(6167), + }, + [2367] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5891), + [anon_sym_COMMA] = ACTIONS(5891), + [anon_sym_LPAREN2] = ACTIONS(5891), + [anon_sym_DASH] = ACTIONS(5893), + [anon_sym_PLUS] = ACTIONS(5893), + [anon_sym_STAR] = ACTIONS(5891), + [anon_sym_SLASH] = ACTIONS(5893), + [anon_sym_PERCENT] = ACTIONS(5891), + [anon_sym_PIPE_PIPE] = ACTIONS(5891), + [anon_sym_AMP_AMP] = ACTIONS(5891), + [anon_sym_PIPE] = ACTIONS(5893), + [anon_sym_CARET] = ACTIONS(5891), + [anon_sym_AMP] = ACTIONS(5893), + [anon_sym_EQ_EQ] = ACTIONS(5891), + [anon_sym_BANG_EQ] = ACTIONS(5891), + [anon_sym_GT] = ACTIONS(5893), + [anon_sym_GT_EQ] = ACTIONS(5893), + [anon_sym_LT_EQ] = ACTIONS(5893), + [anon_sym_LT] = ACTIONS(5893), + [anon_sym_LT_LT] = ACTIONS(5891), + [anon_sym_GT_GT] = ACTIONS(5893), + [anon_sym___extension__] = ACTIONS(5891), + [anon_sym___attribute__] = ACTIONS(5891), + [anon_sym___attribute] = ACTIONS(5893), + [anon_sym_LBRACE] = ACTIONS(5891), + [anon_sym_signed] = ACTIONS(6336), + [anon_sym_unsigned] = ACTIONS(6336), + [anon_sym_long] = ACTIONS(6336), + [anon_sym_short] = ACTIONS(6336), + [anon_sym_LBRACK] = ACTIONS(5891), + [anon_sym_const] = ACTIONS(5893), + [anon_sym_constexpr] = ACTIONS(5891), + [anon_sym_volatile] = ACTIONS(5891), + [anon_sym_restrict] = ACTIONS(5891), + [anon_sym___restrict__] = ACTIONS(5891), + [anon_sym__Atomic] = ACTIONS(5891), + [anon_sym__Noreturn] = ACTIONS(5891), + [anon_sym_noreturn] = ACTIONS(5891), + [anon_sym__Nonnull] = ACTIONS(5891), + [anon_sym_mutable] = ACTIONS(5891), + [anon_sym_constinit] = ACTIONS(5891), + [anon_sym_consteval] = ACTIONS(5891), + [anon_sym_alignas] = ACTIONS(5891), + [anon_sym__Alignas] = ACTIONS(5891), + [anon_sym_QMARK] = ACTIONS(5891), + [anon_sym_LT_EQ_GT] = ACTIONS(5891), + [anon_sym_or] = ACTIONS(5891), + [anon_sym_and] = ACTIONS(5891), + [anon_sym_bitor] = ACTIONS(5891), + [anon_sym_xor] = ACTIONS(5891), + [anon_sym_bitand] = ACTIONS(5891), + [anon_sym_not_eq] = ACTIONS(5891), + [anon_sym_DASH_DASH] = ACTIONS(5891), + [anon_sym_PLUS_PLUS] = ACTIONS(5891), + [anon_sym_DOT] = ACTIONS(5893), + [anon_sym_DOT_STAR] = ACTIONS(5891), + [anon_sym_DASH_GT] = ACTIONS(5891), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5891), + [anon_sym_decltype] = ACTIONS(5891), + [anon_sym_final] = ACTIONS(5891), + [anon_sym_override] = ACTIONS(5891), + [anon_sym_GT2] = ACTIONS(5891), + [anon_sym_requires] = ACTIONS(5891), + }, + [2368] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2357), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5778), + [anon_sym_COMMA] = ACTIONS(5778), + [anon_sym_LPAREN2] = ACTIONS(5778), + [anon_sym_DASH] = ACTIONS(5776), + [anon_sym_PLUS] = ACTIONS(5776), + [anon_sym_STAR] = ACTIONS(5778), + [anon_sym_SLASH] = ACTIONS(5776), + [anon_sym_PERCENT] = ACTIONS(5778), + [anon_sym_PIPE_PIPE] = ACTIONS(5778), + [anon_sym_AMP_AMP] = ACTIONS(5778), + [anon_sym_PIPE] = ACTIONS(5776), + [anon_sym_CARET] = ACTIONS(5778), + [anon_sym_AMP] = ACTIONS(5776), + [anon_sym_EQ_EQ] = ACTIONS(5778), + [anon_sym_BANG_EQ] = ACTIONS(5778), + [anon_sym_GT] = ACTIONS(5776), + [anon_sym_GT_EQ] = ACTIONS(5776), + [anon_sym_LT_EQ] = ACTIONS(5776), + [anon_sym_LT] = ACTIONS(5776), + [anon_sym_LT_LT] = ACTIONS(5778), + [anon_sym_GT_GT] = ACTIONS(5776), + [anon_sym___extension__] = ACTIONS(5778), + [anon_sym___attribute__] = ACTIONS(5778), + [anon_sym___attribute] = ACTIONS(5776), + [anon_sym_LBRACE] = ACTIONS(5778), + [anon_sym_signed] = ACTIONS(6334), + [anon_sym_unsigned] = ACTIONS(6334), + [anon_sym_long] = ACTIONS(6334), + [anon_sym_short] = ACTIONS(6334), + [anon_sym_LBRACK] = ACTIONS(5778), + [anon_sym_const] = ACTIONS(5776), + [anon_sym_constexpr] = ACTIONS(5778), + [anon_sym_volatile] = ACTIONS(5778), + [anon_sym_restrict] = ACTIONS(5778), + [anon_sym___restrict__] = ACTIONS(5778), + [anon_sym__Atomic] = ACTIONS(5778), + [anon_sym__Noreturn] = ACTIONS(5778), + [anon_sym_noreturn] = ACTIONS(5778), + [anon_sym__Nonnull] = ACTIONS(5778), + [anon_sym_mutable] = ACTIONS(5778), + [anon_sym_constinit] = ACTIONS(5778), + [anon_sym_consteval] = ACTIONS(5778), + [anon_sym_alignas] = ACTIONS(5778), + [anon_sym__Alignas] = ACTIONS(5778), + [anon_sym_QMARK] = ACTIONS(5778), + [anon_sym_LT_EQ_GT] = ACTIONS(5778), + [anon_sym_or] = ACTIONS(5778), + [anon_sym_and] = ACTIONS(5778), + [anon_sym_bitor] = ACTIONS(5778), + [anon_sym_xor] = ACTIONS(5778), + [anon_sym_bitand] = ACTIONS(5778), + [anon_sym_not_eq] = ACTIONS(5778), + [anon_sym_DASH_DASH] = ACTIONS(5778), + [anon_sym_PLUS_PLUS] = ACTIONS(5778), + [anon_sym_DOT] = ACTIONS(5776), + [anon_sym_DOT_STAR] = ACTIONS(5778), + [anon_sym_DASH_GT] = ACTIONS(5778), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5778), + [anon_sym_decltype] = ACTIONS(5778), + [anon_sym_final] = ACTIONS(5778), + [anon_sym_override] = ACTIONS(5778), + [anon_sym_GT2] = ACTIONS(5778), + [anon_sym_requires] = ACTIONS(5778), + }, + [2369] = { + [sym_attribute_specifier] = STATE(1858), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6216), + [anon_sym_COMMA] = ACTIONS(6216), + [anon_sym_RPAREN] = ACTIONS(6216), + [anon_sym_LPAREN2] = ACTIONS(6216), + [anon_sym_DASH] = ACTIONS(6214), + [anon_sym_PLUS] = ACTIONS(6214), + [anon_sym_STAR] = ACTIONS(6216), + [anon_sym_SLASH] = ACTIONS(6214), + [anon_sym_PERCENT] = ACTIONS(6216), + [anon_sym_PIPE_PIPE] = ACTIONS(6216), + [anon_sym_AMP_AMP] = ACTIONS(6216), + [anon_sym_PIPE] = ACTIONS(6214), + [anon_sym_CARET] = ACTIONS(6216), + [anon_sym_AMP] = ACTIONS(6214), + [anon_sym_EQ_EQ] = ACTIONS(6216), + [anon_sym_BANG_EQ] = ACTIONS(6216), + [anon_sym_GT] = ACTIONS(6214), + [anon_sym_GT_EQ] = ACTIONS(6216), + [anon_sym_LT_EQ] = ACTIONS(6214), + [anon_sym_LT] = ACTIONS(6214), + [anon_sym_LT_LT] = ACTIONS(6216), + [anon_sym_GT_GT] = ACTIONS(6216), + [anon_sym_SEMI] = ACTIONS(6216), + [anon_sym___extension__] = ACTIONS(6216), + [anon_sym___attribute__] = ACTIONS(6031), + [anon_sym___attribute] = ACTIONS(6033), + [anon_sym_COLON] = ACTIONS(6216), + [anon_sym_LBRACE] = ACTIONS(6216), + [anon_sym_RBRACE] = ACTIONS(6216), + [anon_sym_LBRACK] = ACTIONS(6216), + [anon_sym_RBRACK] = ACTIONS(6216), + [anon_sym_const] = ACTIONS(6214), + [anon_sym_constexpr] = ACTIONS(6216), + [anon_sym_volatile] = ACTIONS(6216), + [anon_sym_restrict] = ACTIONS(6216), + [anon_sym___restrict__] = ACTIONS(6216), + [anon_sym__Atomic] = ACTIONS(6216), + [anon_sym__Noreturn] = ACTIONS(6216), + [anon_sym_noreturn] = ACTIONS(6216), + [anon_sym__Nonnull] = ACTIONS(6216), + [anon_sym_mutable] = ACTIONS(6216), + [anon_sym_constinit] = ACTIONS(6216), + [anon_sym_consteval] = ACTIONS(6216), + [anon_sym_alignas] = ACTIONS(6216), + [anon_sym__Alignas] = ACTIONS(6216), + [anon_sym_QMARK] = ACTIONS(6216), + [anon_sym_LT_EQ_GT] = ACTIONS(6216), + [anon_sym_or] = ACTIONS(6216), + [anon_sym_and] = ACTIONS(6216), + [anon_sym_bitor] = ACTIONS(6216), + [anon_sym_xor] = ACTIONS(6216), + [anon_sym_bitand] = ACTIONS(6216), + [anon_sym_not_eq] = ACTIONS(6216), + [anon_sym_DASH_DASH] = ACTIONS(6216), + [anon_sym_PLUS_PLUS] = ACTIONS(6216), + [anon_sym_DOT] = ACTIONS(6214), + [anon_sym_DOT_STAR] = ACTIONS(6216), + [anon_sym_DASH_GT] = ACTIONS(6216), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6216), + [anon_sym_decltype] = ACTIONS(6216), + [anon_sym_final] = ACTIONS(6216), + [anon_sym_override] = ACTIONS(6216), + [anon_sym_requires] = ACTIONS(6216), + }, + [2370] = { + [sym_template_argument_list] = STATE(2361), [sym_identifier] = ACTIONS(6352), [anon_sym_DOT_DOT_DOT] = ACTIONS(6354), [anon_sym_COMMA] = ACTIONS(6354), @@ -291333,16 +296133,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(6352), [anon_sym_GT_EQ] = ACTIONS(6354), [anon_sym_LT_EQ] = ACTIONS(6352), - [anon_sym_LT] = ACTIONS(6352), + [anon_sym_LT] = ACTIONS(6356), [anon_sym_LT_LT] = ACTIONS(6352), [anon_sym_GT_GT] = ACTIONS(6352), [anon_sym_SEMI] = ACTIONS(6354), [anon_sym___attribute__] = ACTIONS(6352), [anon_sym___attribute] = ACTIONS(6352), - [anon_sym_COLON] = ACTIONS(6354), - [anon_sym_LBRACE] = ACTIONS(6354), + [anon_sym_COLON] = ACTIONS(6352), + [anon_sym_COLON_COLON] = ACTIONS(4187), [anon_sym_RBRACE] = ACTIONS(6354), - [anon_sym_LBRACK] = ACTIONS(5829), + [anon_sym_LBRACK] = ACTIONS(6354), [anon_sym_RBRACK] = ACTIONS(6354), [anon_sym_EQ] = ACTIONS(6352), [anon_sym_QMARK] = ACTIONS(6354), @@ -291373,3766 +296173,1894 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(6354), [sym_comment] = ACTIONS(3), }, - [2326] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2198), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5916), - [anon_sym_COMMA] = ACTIONS(5916), - [anon_sym_LPAREN2] = ACTIONS(5916), - [anon_sym_DASH] = ACTIONS(5918), - [anon_sym_PLUS] = ACTIONS(5918), - [anon_sym_STAR] = ACTIONS(5916), - [anon_sym_SLASH] = ACTIONS(5918), - [anon_sym_PERCENT] = ACTIONS(5916), - [anon_sym_PIPE_PIPE] = ACTIONS(5916), - [anon_sym_AMP_AMP] = ACTIONS(5916), - [anon_sym_PIPE] = ACTIONS(5918), - [anon_sym_CARET] = ACTIONS(5916), - [anon_sym_AMP] = ACTIONS(5918), - [anon_sym_EQ_EQ] = ACTIONS(5916), - [anon_sym_BANG_EQ] = ACTIONS(5916), - [anon_sym_GT] = ACTIONS(5918), - [anon_sym_GT_EQ] = ACTIONS(5918), - [anon_sym_LT_EQ] = ACTIONS(5918), - [anon_sym_LT] = ACTIONS(5918), - [anon_sym_LT_LT] = ACTIONS(5916), - [anon_sym_GT_GT] = ACTIONS(5918), - [anon_sym___extension__] = ACTIONS(5916), - [anon_sym___attribute__] = ACTIONS(5916), - [anon_sym___attribute] = ACTIONS(5918), - [anon_sym_LBRACE] = ACTIONS(5916), - [anon_sym_signed] = ACTIONS(6356), - [anon_sym_unsigned] = ACTIONS(6356), - [anon_sym_long] = ACTIONS(6356), - [anon_sym_short] = ACTIONS(6356), - [anon_sym_LBRACK] = ACTIONS(5916), - [anon_sym_const] = ACTIONS(5918), - [anon_sym_constexpr] = ACTIONS(5916), - [anon_sym_volatile] = ACTIONS(5916), - [anon_sym_restrict] = ACTIONS(5916), - [anon_sym___restrict__] = ACTIONS(5916), - [anon_sym__Atomic] = ACTIONS(5916), - [anon_sym__Noreturn] = ACTIONS(5916), - [anon_sym_noreturn] = ACTIONS(5916), - [anon_sym__Nonnull] = ACTIONS(5916), - [anon_sym_mutable] = ACTIONS(5916), - [anon_sym_constinit] = ACTIONS(5916), - [anon_sym_consteval] = ACTIONS(5916), - [anon_sym_alignas] = ACTIONS(5916), - [anon_sym__Alignas] = ACTIONS(5916), - [anon_sym_QMARK] = ACTIONS(5916), - [anon_sym_LT_EQ_GT] = ACTIONS(5916), - [anon_sym_or] = ACTIONS(5916), - [anon_sym_and] = ACTIONS(5916), - [anon_sym_bitor] = ACTIONS(5916), - [anon_sym_xor] = ACTIONS(5916), - [anon_sym_bitand] = ACTIONS(5916), - [anon_sym_not_eq] = ACTIONS(5916), - [anon_sym_DASH_DASH] = ACTIONS(5916), - [anon_sym_PLUS_PLUS] = ACTIONS(5916), - [anon_sym_DOT] = ACTIONS(5918), - [anon_sym_DOT_STAR] = ACTIONS(5916), - [anon_sym_DASH_GT] = ACTIONS(5916), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5916), - [anon_sym_decltype] = ACTIONS(5916), - [anon_sym_final] = ACTIONS(5916), - [anon_sym_override] = ACTIONS(5916), - [anon_sym_GT2] = ACTIONS(5916), - [anon_sym_requires] = ACTIONS(5916), - }, - [2327] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1585), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5942), - [anon_sym_COMMA] = ACTIONS(5942), - [anon_sym_RPAREN] = ACTIONS(5942), - [anon_sym_LPAREN2] = ACTIONS(5942), - [anon_sym_DASH] = ACTIONS(5944), - [anon_sym_PLUS] = ACTIONS(5944), - [anon_sym_STAR] = ACTIONS(5944), - [anon_sym_SLASH] = ACTIONS(5944), - [anon_sym_PERCENT] = ACTIONS(5944), - [anon_sym_PIPE_PIPE] = ACTIONS(5942), - [anon_sym_AMP_AMP] = ACTIONS(5942), - [anon_sym_PIPE] = ACTIONS(5944), - [anon_sym_CARET] = ACTIONS(5944), - [anon_sym_AMP] = ACTIONS(5944), - [anon_sym_EQ_EQ] = ACTIONS(5942), - [anon_sym_BANG_EQ] = ACTIONS(5942), - [anon_sym_GT] = ACTIONS(5944), - [anon_sym_GT_EQ] = ACTIONS(5942), - [anon_sym_LT_EQ] = ACTIONS(5944), - [anon_sym_LT] = ACTIONS(5944), - [anon_sym_LT_LT] = ACTIONS(5944), - [anon_sym_GT_GT] = ACTIONS(5944), - [anon_sym_SEMI] = ACTIONS(5942), - [anon_sym___attribute__] = ACTIONS(5942), - [anon_sym___attribute] = ACTIONS(5944), - [anon_sym_COLON] = ACTIONS(5942), - [anon_sym_LBRACE] = ACTIONS(5942), - [anon_sym_RBRACE] = ACTIONS(5942), - [anon_sym_signed] = ACTIONS(6308), - [anon_sym_unsigned] = ACTIONS(6308), - [anon_sym_long] = ACTIONS(6308), - [anon_sym_short] = ACTIONS(6308), - [anon_sym_LBRACK] = ACTIONS(5942), - [anon_sym_RBRACK] = ACTIONS(5942), - [anon_sym_EQ] = ACTIONS(5944), - [anon_sym_QMARK] = ACTIONS(5942), - [anon_sym_STAR_EQ] = ACTIONS(5942), - [anon_sym_SLASH_EQ] = ACTIONS(5942), - [anon_sym_PERCENT_EQ] = ACTIONS(5942), - [anon_sym_PLUS_EQ] = ACTIONS(5942), - [anon_sym_DASH_EQ] = ACTIONS(5942), - [anon_sym_LT_LT_EQ] = ACTIONS(5942), - [anon_sym_GT_GT_EQ] = ACTIONS(5942), - [anon_sym_AMP_EQ] = ACTIONS(5942), - [anon_sym_CARET_EQ] = ACTIONS(5942), - [anon_sym_PIPE_EQ] = ACTIONS(5942), - [anon_sym_and_eq] = ACTIONS(5942), - [anon_sym_or_eq] = ACTIONS(5942), - [anon_sym_xor_eq] = ACTIONS(5942), - [anon_sym_LT_EQ_GT] = ACTIONS(5942), - [anon_sym_or] = ACTIONS(5944), - [anon_sym_and] = ACTIONS(5944), - [anon_sym_bitor] = ACTIONS(5942), - [anon_sym_xor] = ACTIONS(5944), - [anon_sym_bitand] = ACTIONS(5942), - [anon_sym_not_eq] = ACTIONS(5942), - [anon_sym_DASH_DASH] = ACTIONS(5942), - [anon_sym_PLUS_PLUS] = ACTIONS(5942), - [anon_sym_DOT] = ACTIONS(5944), - [anon_sym_DOT_STAR] = ACTIONS(5942), - [anon_sym_DASH_GT] = ACTIONS(5942), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5942), - [anon_sym_decltype] = ACTIONS(5942), - }, - [2328] = { - [sym_attribute_specifier] = STATE(2686), - [sym_field_declaration_list] = STATE(2637), - [sym_virtual_specifier] = STATE(7044), - [sym_base_class_clause] = STATE(7605), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5495), - [anon_sym_COMMA] = ACTIONS(5495), - [anon_sym_LPAREN2] = ACTIONS(5495), - [anon_sym_DASH] = ACTIONS(5493), - [anon_sym_PLUS] = ACTIONS(5493), - [anon_sym_STAR] = ACTIONS(5495), - [anon_sym_SLASH] = ACTIONS(5493), - [anon_sym_PERCENT] = ACTIONS(5495), - [anon_sym_PIPE_PIPE] = ACTIONS(5495), - [anon_sym_AMP_AMP] = ACTIONS(5495), - [anon_sym_PIPE] = ACTIONS(5493), - [anon_sym_CARET] = ACTIONS(5495), - [anon_sym_AMP] = ACTIONS(5493), - [anon_sym_EQ_EQ] = ACTIONS(5495), - [anon_sym_BANG_EQ] = ACTIONS(5495), - [anon_sym_GT] = ACTIONS(5493), - [anon_sym_GT_EQ] = ACTIONS(5493), - [anon_sym_LT_EQ] = ACTIONS(5493), - [anon_sym_LT] = ACTIONS(5493), - [anon_sym_LT_LT] = ACTIONS(5495), - [anon_sym_GT_GT] = ACTIONS(5493), - [anon_sym___extension__] = ACTIONS(5495), - [anon_sym___attribute__] = ACTIONS(6358), - [anon_sym___attribute] = ACTIONS(6360), - [anon_sym_COLON] = ACTIONS(5499), - [anon_sym_LBRACE] = ACTIONS(6362), - [anon_sym_LBRACK] = ACTIONS(5495), - [anon_sym_const] = ACTIONS(5493), - [anon_sym_constexpr] = ACTIONS(5495), - [anon_sym_volatile] = ACTIONS(5495), - [anon_sym_restrict] = ACTIONS(5495), - [anon_sym___restrict__] = ACTIONS(5495), - [anon_sym__Atomic] = ACTIONS(5495), - [anon_sym__Noreturn] = ACTIONS(5495), - [anon_sym_noreturn] = ACTIONS(5495), - [anon_sym__Nonnull] = ACTIONS(5495), - [anon_sym_mutable] = ACTIONS(5495), - [anon_sym_constinit] = ACTIONS(5495), - [anon_sym_consteval] = ACTIONS(5495), - [anon_sym_alignas] = ACTIONS(5495), - [anon_sym__Alignas] = ACTIONS(5495), - [anon_sym_QMARK] = ACTIONS(5495), - [anon_sym_LT_EQ_GT] = ACTIONS(5495), - [anon_sym_or] = ACTIONS(5495), - [anon_sym_and] = ACTIONS(5495), - [anon_sym_bitor] = ACTIONS(5495), - [anon_sym_xor] = ACTIONS(5495), - [anon_sym_bitand] = ACTIONS(5495), - [anon_sym_not_eq] = ACTIONS(5495), - [anon_sym_DASH_DASH] = ACTIONS(5495), - [anon_sym_PLUS_PLUS] = ACTIONS(5495), - [anon_sym_DOT] = ACTIONS(5493), - [anon_sym_DOT_STAR] = ACTIONS(5495), - [anon_sym_DASH_GT] = ACTIONS(5495), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5495), - [anon_sym_decltype] = ACTIONS(5495), - [anon_sym_final] = ACTIONS(6020), - [anon_sym_override] = ACTIONS(6020), - [anon_sym_GT2] = ACTIONS(5495), - [anon_sym_requires] = ACTIONS(5495), - }, - [2329] = { - [sym_attribute_specifier] = STATE(1871), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6123), - [anon_sym_COMMA] = ACTIONS(6123), - [anon_sym_RPAREN] = ACTIONS(6123), - [anon_sym_LPAREN2] = ACTIONS(6123), - [anon_sym_DASH] = ACTIONS(6121), - [anon_sym_PLUS] = ACTIONS(6121), - [anon_sym_STAR] = ACTIONS(6123), - [anon_sym_SLASH] = ACTIONS(6121), - [anon_sym_PERCENT] = ACTIONS(6123), - [anon_sym_PIPE_PIPE] = ACTIONS(6123), - [anon_sym_AMP_AMP] = ACTIONS(6123), - [anon_sym_PIPE] = ACTIONS(6121), - [anon_sym_CARET] = ACTIONS(6123), - [anon_sym_AMP] = ACTIONS(6121), - [anon_sym_EQ_EQ] = ACTIONS(6123), - [anon_sym_BANG_EQ] = ACTIONS(6123), - [anon_sym_GT] = ACTIONS(6121), - [anon_sym_GT_EQ] = ACTIONS(6123), - [anon_sym_LT_EQ] = ACTIONS(6121), - [anon_sym_LT] = ACTIONS(6121), - [anon_sym_LT_LT] = ACTIONS(6123), - [anon_sym_GT_GT] = ACTIONS(6123), - [anon_sym_SEMI] = ACTIONS(6123), - [anon_sym___extension__] = ACTIONS(6123), - [anon_sym___attribute__] = ACTIONS(6014), - [anon_sym___attribute] = ACTIONS(6016), - [anon_sym_COLON] = ACTIONS(6123), - [anon_sym_LBRACE] = ACTIONS(6123), - [anon_sym_RBRACE] = ACTIONS(6123), - [anon_sym_LBRACK] = ACTIONS(6123), - [anon_sym_RBRACK] = ACTIONS(6123), - [anon_sym_const] = ACTIONS(6121), - [anon_sym_constexpr] = ACTIONS(6123), - [anon_sym_volatile] = ACTIONS(6123), - [anon_sym_restrict] = ACTIONS(6123), - [anon_sym___restrict__] = ACTIONS(6123), - [anon_sym__Atomic] = ACTIONS(6123), - [anon_sym__Noreturn] = ACTIONS(6123), - [anon_sym_noreturn] = ACTIONS(6123), - [anon_sym__Nonnull] = ACTIONS(6123), - [anon_sym_mutable] = ACTIONS(6123), - [anon_sym_constinit] = ACTIONS(6123), - [anon_sym_consteval] = ACTIONS(6123), - [anon_sym_alignas] = ACTIONS(6123), - [anon_sym__Alignas] = ACTIONS(6123), - [anon_sym_QMARK] = ACTIONS(6123), - [anon_sym_LT_EQ_GT] = ACTIONS(6123), - [anon_sym_or] = ACTIONS(6123), - [anon_sym_and] = ACTIONS(6123), - [anon_sym_bitor] = ACTIONS(6123), - [anon_sym_xor] = ACTIONS(6123), - [anon_sym_bitand] = ACTIONS(6123), - [anon_sym_not_eq] = ACTIONS(6123), - [anon_sym_DASH_DASH] = ACTIONS(6123), - [anon_sym_PLUS_PLUS] = ACTIONS(6123), - [anon_sym_DOT] = ACTIONS(6121), - [anon_sym_DOT_STAR] = ACTIONS(6123), - [anon_sym_DASH_GT] = ACTIONS(6123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6123), - [anon_sym_decltype] = ACTIONS(6123), - [anon_sym_final] = ACTIONS(6123), - [anon_sym_override] = ACTIONS(6123), - [anon_sym_requires] = ACTIONS(6123), - }, - [2330] = { - [sym_attribute_specifier] = STATE(1842), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6170), - [anon_sym_COMMA] = ACTIONS(6170), - [anon_sym_RPAREN] = ACTIONS(6170), - [anon_sym_LPAREN2] = ACTIONS(6170), - [anon_sym_DASH] = ACTIONS(6168), - [anon_sym_PLUS] = ACTIONS(6168), - [anon_sym_STAR] = ACTIONS(6170), - [anon_sym_SLASH] = ACTIONS(6168), - [anon_sym_PERCENT] = ACTIONS(6170), - [anon_sym_PIPE_PIPE] = ACTIONS(6170), - [anon_sym_AMP_AMP] = ACTIONS(6170), - [anon_sym_PIPE] = ACTIONS(6168), - [anon_sym_CARET] = ACTIONS(6170), - [anon_sym_AMP] = ACTIONS(6168), - [anon_sym_EQ_EQ] = ACTIONS(6170), - [anon_sym_BANG_EQ] = ACTIONS(6170), - [anon_sym_GT] = ACTIONS(6168), - [anon_sym_GT_EQ] = ACTIONS(6170), - [anon_sym_LT_EQ] = ACTIONS(6168), - [anon_sym_LT] = ACTIONS(6168), - [anon_sym_LT_LT] = ACTIONS(6170), - [anon_sym_GT_GT] = ACTIONS(6170), - [anon_sym_SEMI] = ACTIONS(6170), - [anon_sym___extension__] = ACTIONS(6170), - [anon_sym___attribute__] = ACTIONS(6014), - [anon_sym___attribute] = ACTIONS(6016), - [anon_sym_COLON] = ACTIONS(6170), - [anon_sym_LBRACE] = ACTIONS(6170), - [anon_sym_RBRACE] = ACTIONS(6170), - [anon_sym_LBRACK] = ACTIONS(6170), - [anon_sym_RBRACK] = ACTIONS(6170), - [anon_sym_const] = ACTIONS(6168), - [anon_sym_constexpr] = ACTIONS(6170), - [anon_sym_volatile] = ACTIONS(6170), - [anon_sym_restrict] = ACTIONS(6170), - [anon_sym___restrict__] = ACTIONS(6170), - [anon_sym__Atomic] = ACTIONS(6170), - [anon_sym__Noreturn] = ACTIONS(6170), - [anon_sym_noreturn] = ACTIONS(6170), - [anon_sym__Nonnull] = ACTIONS(6170), - [anon_sym_mutable] = ACTIONS(6170), - [anon_sym_constinit] = ACTIONS(6170), - [anon_sym_consteval] = ACTIONS(6170), - [anon_sym_alignas] = ACTIONS(6170), - [anon_sym__Alignas] = ACTIONS(6170), - [anon_sym_QMARK] = ACTIONS(6170), - [anon_sym_LT_EQ_GT] = ACTIONS(6170), - [anon_sym_or] = ACTIONS(6170), - [anon_sym_and] = ACTIONS(6170), - [anon_sym_bitor] = ACTIONS(6170), - [anon_sym_xor] = ACTIONS(6170), - [anon_sym_bitand] = ACTIONS(6170), - [anon_sym_not_eq] = ACTIONS(6170), - [anon_sym_DASH_DASH] = ACTIONS(6170), - [anon_sym_PLUS_PLUS] = ACTIONS(6170), - [anon_sym_DOT] = ACTIONS(6168), - [anon_sym_DOT_STAR] = ACTIONS(6170), - [anon_sym_DASH_GT] = ACTIONS(6170), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6170), - [anon_sym_decltype] = ACTIONS(6170), - [anon_sym_final] = ACTIONS(6170), - [anon_sym_override] = ACTIONS(6170), - [anon_sym_requires] = ACTIONS(6170), - }, - [2331] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2318), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5920), - [anon_sym_COMMA] = ACTIONS(5920), - [anon_sym_RPAREN] = ACTIONS(5920), - [anon_sym_LPAREN2] = ACTIONS(5920), - [anon_sym_DASH] = ACTIONS(5922), - [anon_sym_PLUS] = ACTIONS(5922), - [anon_sym_STAR] = ACTIONS(5922), - [anon_sym_SLASH] = ACTIONS(5922), - [anon_sym_PERCENT] = ACTIONS(5922), - [anon_sym_PIPE_PIPE] = ACTIONS(5920), - [anon_sym_AMP_AMP] = ACTIONS(5920), - [anon_sym_PIPE] = ACTIONS(5922), - [anon_sym_CARET] = ACTIONS(5922), - [anon_sym_AMP] = ACTIONS(5922), - [anon_sym_EQ_EQ] = ACTIONS(5920), - [anon_sym_BANG_EQ] = ACTIONS(5920), - [anon_sym_GT] = ACTIONS(5922), - [anon_sym_GT_EQ] = ACTIONS(5920), - [anon_sym_LT_EQ] = ACTIONS(5922), - [anon_sym_LT] = ACTIONS(5922), - [anon_sym_LT_LT] = ACTIONS(5922), - [anon_sym_GT_GT] = ACTIONS(5922), - [anon_sym_SEMI] = ACTIONS(5920), - [anon_sym___attribute__] = ACTIONS(5920), - [anon_sym___attribute] = ACTIONS(5922), - [anon_sym_COLON] = ACTIONS(5920), - [anon_sym_LBRACE] = ACTIONS(5920), - [anon_sym_RBRACE] = ACTIONS(5920), - [anon_sym_signed] = ACTIONS(6364), - [anon_sym_unsigned] = ACTIONS(6364), - [anon_sym_long] = ACTIONS(6364), - [anon_sym_short] = ACTIONS(6364), - [anon_sym_LBRACK] = ACTIONS(5920), - [anon_sym_RBRACK] = ACTIONS(5920), - [anon_sym_EQ] = ACTIONS(5922), - [anon_sym_QMARK] = ACTIONS(5920), - [anon_sym_STAR_EQ] = ACTIONS(5920), - [anon_sym_SLASH_EQ] = ACTIONS(5920), - [anon_sym_PERCENT_EQ] = ACTIONS(5920), - [anon_sym_PLUS_EQ] = ACTIONS(5920), - [anon_sym_DASH_EQ] = ACTIONS(5920), - [anon_sym_LT_LT_EQ] = ACTIONS(5920), - [anon_sym_GT_GT_EQ] = ACTIONS(5920), - [anon_sym_AMP_EQ] = ACTIONS(5920), - [anon_sym_CARET_EQ] = ACTIONS(5920), - [anon_sym_PIPE_EQ] = ACTIONS(5920), - [anon_sym_and_eq] = ACTIONS(5920), - [anon_sym_or_eq] = ACTIONS(5920), - [anon_sym_xor_eq] = ACTIONS(5920), - [anon_sym_LT_EQ_GT] = ACTIONS(5920), - [anon_sym_or] = ACTIONS(5922), - [anon_sym_and] = ACTIONS(5922), - [anon_sym_bitor] = ACTIONS(5920), - [anon_sym_xor] = ACTIONS(5922), - [anon_sym_bitand] = ACTIONS(5920), - [anon_sym_not_eq] = ACTIONS(5920), - [anon_sym_DASH_DASH] = ACTIONS(5920), - [anon_sym_PLUS_PLUS] = ACTIONS(5920), - [anon_sym_DOT] = ACTIONS(5922), - [anon_sym_DOT_STAR] = ACTIONS(5920), - [anon_sym_DASH_GT] = ACTIONS(5920), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5920), - [anon_sym_decltype] = ACTIONS(5920), - }, - [2332] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2198), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5888), - [anon_sym_COMMA] = ACTIONS(5888), - [anon_sym_LPAREN2] = ACTIONS(5888), - [anon_sym_DASH] = ACTIONS(5890), - [anon_sym_PLUS] = ACTIONS(5890), - [anon_sym_STAR] = ACTIONS(5888), - [anon_sym_SLASH] = ACTIONS(5890), - [anon_sym_PERCENT] = ACTIONS(5888), - [anon_sym_PIPE_PIPE] = ACTIONS(5888), - [anon_sym_AMP_AMP] = ACTIONS(5888), - [anon_sym_PIPE] = ACTIONS(5890), - [anon_sym_CARET] = ACTIONS(5888), - [anon_sym_AMP] = ACTIONS(5890), - [anon_sym_EQ_EQ] = ACTIONS(5888), - [anon_sym_BANG_EQ] = ACTIONS(5888), - [anon_sym_GT] = ACTIONS(5890), - [anon_sym_GT_EQ] = ACTIONS(5890), - [anon_sym_LT_EQ] = ACTIONS(5890), - [anon_sym_LT] = ACTIONS(5890), - [anon_sym_LT_LT] = ACTIONS(5888), - [anon_sym_GT_GT] = ACTIONS(5890), - [anon_sym___extension__] = ACTIONS(5888), - [anon_sym___attribute__] = ACTIONS(5888), - [anon_sym___attribute] = ACTIONS(5890), - [anon_sym_LBRACE] = ACTIONS(5888), - [anon_sym_signed] = ACTIONS(6356), - [anon_sym_unsigned] = ACTIONS(6356), - [anon_sym_long] = ACTIONS(6356), - [anon_sym_short] = ACTIONS(6356), - [anon_sym_LBRACK] = ACTIONS(5888), - [anon_sym_const] = ACTIONS(5890), - [anon_sym_constexpr] = ACTIONS(5888), - [anon_sym_volatile] = ACTIONS(5888), - [anon_sym_restrict] = ACTIONS(5888), - [anon_sym___restrict__] = ACTIONS(5888), - [anon_sym__Atomic] = ACTIONS(5888), - [anon_sym__Noreturn] = ACTIONS(5888), - [anon_sym_noreturn] = ACTIONS(5888), - [anon_sym__Nonnull] = ACTIONS(5888), - [anon_sym_mutable] = ACTIONS(5888), - [anon_sym_constinit] = ACTIONS(5888), - [anon_sym_consteval] = ACTIONS(5888), - [anon_sym_alignas] = ACTIONS(5888), - [anon_sym__Alignas] = ACTIONS(5888), - [anon_sym_QMARK] = ACTIONS(5888), - [anon_sym_LT_EQ_GT] = ACTIONS(5888), - [anon_sym_or] = ACTIONS(5888), - [anon_sym_and] = ACTIONS(5888), - [anon_sym_bitor] = ACTIONS(5888), - [anon_sym_xor] = ACTIONS(5888), - [anon_sym_bitand] = ACTIONS(5888), - [anon_sym_not_eq] = ACTIONS(5888), - [anon_sym_DASH_DASH] = ACTIONS(5888), - [anon_sym_PLUS_PLUS] = ACTIONS(5888), - [anon_sym_DOT] = ACTIONS(5890), - [anon_sym_DOT_STAR] = ACTIONS(5888), - [anon_sym_DASH_GT] = ACTIONS(5888), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5888), - [anon_sym_decltype] = ACTIONS(5888), - [anon_sym_final] = ACTIONS(5888), - [anon_sym_override] = ACTIONS(5888), - [anon_sym_GT2] = ACTIONS(5888), - [anon_sym_requires] = ACTIONS(5888), - }, - [2333] = { - [sym_identifier] = ACTIONS(5577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5579), - [anon_sym_COMMA] = ACTIONS(5579), - [anon_sym_LPAREN2] = ACTIONS(5579), - [anon_sym_DASH] = ACTIONS(5577), - [anon_sym_PLUS] = ACTIONS(5577), - [anon_sym_STAR] = ACTIONS(5577), - [anon_sym_SLASH] = ACTIONS(5577), - [anon_sym_PERCENT] = ACTIONS(5577), - [anon_sym_PIPE_PIPE] = ACTIONS(5579), - [anon_sym_AMP_AMP] = ACTIONS(5579), - [anon_sym_PIPE] = ACTIONS(5577), - [anon_sym_CARET] = ACTIONS(5577), - [anon_sym_AMP] = ACTIONS(5577), - [anon_sym_EQ_EQ] = ACTIONS(5579), - [anon_sym_BANG_EQ] = ACTIONS(5579), - [anon_sym_GT] = ACTIONS(5577), - [anon_sym_GT_EQ] = ACTIONS(5579), - [anon_sym_LT_EQ] = ACTIONS(5577), - [anon_sym_LT] = ACTIONS(5577), - [anon_sym_LT_LT] = ACTIONS(5577), - [anon_sym_GT_GT] = ACTIONS(5577), - [anon_sym_SEMI] = ACTIONS(5579), - [anon_sym___attribute__] = ACTIONS(5577), - [anon_sym___attribute] = ACTIONS(5577), - [anon_sym_LBRACK] = ACTIONS(5579), - [anon_sym_EQ] = ACTIONS(5577), - [anon_sym_QMARK] = ACTIONS(5579), - [anon_sym_STAR_EQ] = ACTIONS(5579), - [anon_sym_SLASH_EQ] = ACTIONS(5579), - [anon_sym_PERCENT_EQ] = ACTIONS(5579), - [anon_sym_PLUS_EQ] = ACTIONS(5579), - [anon_sym_DASH_EQ] = ACTIONS(5579), - [anon_sym_LT_LT_EQ] = ACTIONS(5579), - [anon_sym_GT_GT_EQ] = ACTIONS(5579), - [anon_sym_AMP_EQ] = ACTIONS(5579), - [anon_sym_CARET_EQ] = ACTIONS(5579), - [anon_sym_PIPE_EQ] = ACTIONS(5579), - [anon_sym_and_eq] = ACTIONS(5577), - [anon_sym_or_eq] = ACTIONS(5577), - [anon_sym_xor_eq] = ACTIONS(5577), - [anon_sym_LT_EQ_GT] = ACTIONS(5579), - [anon_sym_or] = ACTIONS(5577), - [anon_sym_and] = ACTIONS(5577), - [anon_sym_bitor] = ACTIONS(5577), - [anon_sym_xor] = ACTIONS(5577), - [anon_sym_bitand] = ACTIONS(5577), - [anon_sym_not_eq] = ACTIONS(5577), - [anon_sym_DASH_DASH] = ACTIONS(5579), - [anon_sym_PLUS_PLUS] = ACTIONS(5579), - [anon_sym_DOT] = ACTIONS(5577), - [anon_sym_DOT_STAR] = ACTIONS(5579), - [anon_sym_DASH_GT] = ACTIONS(5579), - [anon_sym_L_DQUOTE] = ACTIONS(5579), - [anon_sym_u_DQUOTE] = ACTIONS(5579), - [anon_sym_U_DQUOTE] = ACTIONS(5579), - [anon_sym_u8_DQUOTE] = ACTIONS(5579), - [anon_sym_DQUOTE] = ACTIONS(5579), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5579), - [anon_sym_LR_DQUOTE] = ACTIONS(5579), - [anon_sym_uR_DQUOTE] = ACTIONS(5579), - [anon_sym_UR_DQUOTE] = ACTIONS(5579), - [anon_sym_u8R_DQUOTE] = ACTIONS(5579), - [sym_literal_suffix] = ACTIONS(5577), - }, - [2334] = { - [sym_attribute_specifier] = STATE(1865), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6119), - [anon_sym_COMMA] = ACTIONS(6119), - [anon_sym_RPAREN] = ACTIONS(6119), - [anon_sym_LPAREN2] = ACTIONS(6119), - [anon_sym_DASH] = ACTIONS(6117), - [anon_sym_PLUS] = ACTIONS(6117), - [anon_sym_STAR] = ACTIONS(6119), - [anon_sym_SLASH] = ACTIONS(6117), - [anon_sym_PERCENT] = ACTIONS(6119), - [anon_sym_PIPE_PIPE] = ACTIONS(6119), - [anon_sym_AMP_AMP] = ACTIONS(6119), - [anon_sym_PIPE] = ACTIONS(6117), - [anon_sym_CARET] = ACTIONS(6119), - [anon_sym_AMP] = ACTIONS(6117), - [anon_sym_EQ_EQ] = ACTIONS(6119), - [anon_sym_BANG_EQ] = ACTIONS(6119), - [anon_sym_GT] = ACTIONS(6117), - [anon_sym_GT_EQ] = ACTIONS(6119), - [anon_sym_LT_EQ] = ACTIONS(6117), - [anon_sym_LT] = ACTIONS(6117), - [anon_sym_LT_LT] = ACTIONS(6119), - [anon_sym_GT_GT] = ACTIONS(6119), - [anon_sym_SEMI] = ACTIONS(6119), - [anon_sym___extension__] = ACTIONS(6119), - [anon_sym___attribute__] = ACTIONS(6014), - [anon_sym___attribute] = ACTIONS(6016), - [anon_sym_COLON] = ACTIONS(6119), - [anon_sym_LBRACE] = ACTIONS(6119), - [anon_sym_RBRACE] = ACTIONS(6119), - [anon_sym_LBRACK] = ACTIONS(6119), - [anon_sym_RBRACK] = ACTIONS(6119), - [anon_sym_const] = ACTIONS(6117), - [anon_sym_constexpr] = ACTIONS(6119), - [anon_sym_volatile] = ACTIONS(6119), - [anon_sym_restrict] = ACTIONS(6119), - [anon_sym___restrict__] = ACTIONS(6119), - [anon_sym__Atomic] = ACTIONS(6119), - [anon_sym__Noreturn] = ACTIONS(6119), - [anon_sym_noreturn] = ACTIONS(6119), - [anon_sym__Nonnull] = ACTIONS(6119), - [anon_sym_mutable] = ACTIONS(6119), - [anon_sym_constinit] = ACTIONS(6119), - [anon_sym_consteval] = ACTIONS(6119), - [anon_sym_alignas] = ACTIONS(6119), - [anon_sym__Alignas] = ACTIONS(6119), - [anon_sym_QMARK] = ACTIONS(6119), - [anon_sym_LT_EQ_GT] = ACTIONS(6119), - [anon_sym_or] = ACTIONS(6119), - [anon_sym_and] = ACTIONS(6119), - [anon_sym_bitor] = ACTIONS(6119), - [anon_sym_xor] = ACTIONS(6119), - [anon_sym_bitand] = ACTIONS(6119), - [anon_sym_not_eq] = ACTIONS(6119), - [anon_sym_DASH_DASH] = ACTIONS(6119), - [anon_sym_PLUS_PLUS] = ACTIONS(6119), - [anon_sym_DOT] = ACTIONS(6117), - [anon_sym_DOT_STAR] = ACTIONS(6119), - [anon_sym_DASH_GT] = ACTIONS(6119), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6119), - [anon_sym_decltype] = ACTIONS(6119), - [anon_sym_final] = ACTIONS(6119), - [anon_sym_override] = ACTIONS(6119), - [anon_sym_requires] = ACTIONS(6119), - }, - [2335] = { - [sym_attribute_specifier] = STATE(1840), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6153), - [anon_sym_COMMA] = ACTIONS(6153), - [anon_sym_RPAREN] = ACTIONS(6153), - [anon_sym_LPAREN2] = ACTIONS(6153), - [anon_sym_DASH] = ACTIONS(6151), - [anon_sym_PLUS] = ACTIONS(6151), - [anon_sym_STAR] = ACTIONS(6153), - [anon_sym_SLASH] = ACTIONS(6151), - [anon_sym_PERCENT] = ACTIONS(6153), - [anon_sym_PIPE_PIPE] = ACTIONS(6153), - [anon_sym_AMP_AMP] = ACTIONS(6153), - [anon_sym_PIPE] = ACTIONS(6151), - [anon_sym_CARET] = ACTIONS(6153), - [anon_sym_AMP] = ACTIONS(6151), - [anon_sym_EQ_EQ] = ACTIONS(6153), - [anon_sym_BANG_EQ] = ACTIONS(6153), - [anon_sym_GT] = ACTIONS(6151), - [anon_sym_GT_EQ] = ACTIONS(6153), - [anon_sym_LT_EQ] = ACTIONS(6151), - [anon_sym_LT] = ACTIONS(6151), - [anon_sym_LT_LT] = ACTIONS(6153), - [anon_sym_GT_GT] = ACTIONS(6153), - [anon_sym_SEMI] = ACTIONS(6153), - [anon_sym___extension__] = ACTIONS(6153), - [anon_sym___attribute__] = ACTIONS(6014), - [anon_sym___attribute] = ACTIONS(6016), - [anon_sym_COLON] = ACTIONS(6153), - [anon_sym_LBRACE] = ACTIONS(6153), - [anon_sym_RBRACE] = ACTIONS(6153), - [anon_sym_LBRACK] = ACTIONS(6153), - [anon_sym_RBRACK] = ACTIONS(6153), - [anon_sym_const] = ACTIONS(6151), - [anon_sym_constexpr] = ACTIONS(6153), - [anon_sym_volatile] = ACTIONS(6153), - [anon_sym_restrict] = ACTIONS(6153), - [anon_sym___restrict__] = ACTIONS(6153), - [anon_sym__Atomic] = ACTIONS(6153), - [anon_sym__Noreturn] = ACTIONS(6153), - [anon_sym_noreturn] = ACTIONS(6153), - [anon_sym__Nonnull] = ACTIONS(6153), - [anon_sym_mutable] = ACTIONS(6153), - [anon_sym_constinit] = ACTIONS(6153), - [anon_sym_consteval] = ACTIONS(6153), - [anon_sym_alignas] = ACTIONS(6153), - [anon_sym__Alignas] = ACTIONS(6153), - [anon_sym_QMARK] = ACTIONS(6153), - [anon_sym_LT_EQ_GT] = ACTIONS(6153), - [anon_sym_or] = ACTIONS(6153), - [anon_sym_and] = ACTIONS(6153), - [anon_sym_bitor] = ACTIONS(6153), - [anon_sym_xor] = ACTIONS(6153), - [anon_sym_bitand] = ACTIONS(6153), - [anon_sym_not_eq] = ACTIONS(6153), - [anon_sym_DASH_DASH] = ACTIONS(6153), - [anon_sym_PLUS_PLUS] = ACTIONS(6153), - [anon_sym_DOT] = ACTIONS(6151), - [anon_sym_DOT_STAR] = ACTIONS(6153), - [anon_sym_DASH_GT] = ACTIONS(6153), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6153), - [anon_sym_decltype] = ACTIONS(6153), - [anon_sym_final] = ACTIONS(6153), - [anon_sym_override] = ACTIONS(6153), - [anon_sym_requires] = ACTIONS(6153), - }, - [2336] = { - [sym_attribute_specifier] = STATE(1850), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6157), - [anon_sym_COMMA] = ACTIONS(6157), - [anon_sym_RPAREN] = ACTIONS(6157), - [anon_sym_LPAREN2] = ACTIONS(6157), - [anon_sym_DASH] = ACTIONS(6155), - [anon_sym_PLUS] = ACTIONS(6155), - [anon_sym_STAR] = ACTIONS(6157), - [anon_sym_SLASH] = ACTIONS(6155), - [anon_sym_PERCENT] = ACTIONS(6157), - [anon_sym_PIPE_PIPE] = ACTIONS(6157), - [anon_sym_AMP_AMP] = ACTIONS(6157), - [anon_sym_PIPE] = ACTIONS(6155), - [anon_sym_CARET] = ACTIONS(6157), - [anon_sym_AMP] = ACTIONS(6155), - [anon_sym_EQ_EQ] = ACTIONS(6157), - [anon_sym_BANG_EQ] = ACTIONS(6157), - [anon_sym_GT] = ACTIONS(6155), - [anon_sym_GT_EQ] = ACTIONS(6157), - [anon_sym_LT_EQ] = ACTIONS(6155), - [anon_sym_LT] = ACTIONS(6155), - [anon_sym_LT_LT] = ACTIONS(6157), - [anon_sym_GT_GT] = ACTIONS(6157), - [anon_sym_SEMI] = ACTIONS(6157), - [anon_sym___extension__] = ACTIONS(6157), - [anon_sym___attribute__] = ACTIONS(6014), - [anon_sym___attribute] = ACTIONS(6016), - [anon_sym_COLON] = ACTIONS(6157), - [anon_sym_LBRACE] = ACTIONS(6157), - [anon_sym_RBRACE] = ACTIONS(6157), - [anon_sym_LBRACK] = ACTIONS(6157), - [anon_sym_RBRACK] = ACTIONS(6157), - [anon_sym_const] = ACTIONS(6155), - [anon_sym_constexpr] = ACTIONS(6157), - [anon_sym_volatile] = ACTIONS(6157), - [anon_sym_restrict] = ACTIONS(6157), - [anon_sym___restrict__] = ACTIONS(6157), - [anon_sym__Atomic] = ACTIONS(6157), - [anon_sym__Noreturn] = ACTIONS(6157), - [anon_sym_noreturn] = ACTIONS(6157), - [anon_sym__Nonnull] = ACTIONS(6157), - [anon_sym_mutable] = ACTIONS(6157), - [anon_sym_constinit] = ACTIONS(6157), - [anon_sym_consteval] = ACTIONS(6157), - [anon_sym_alignas] = ACTIONS(6157), - [anon_sym__Alignas] = ACTIONS(6157), - [anon_sym_QMARK] = ACTIONS(6157), - [anon_sym_LT_EQ_GT] = ACTIONS(6157), - [anon_sym_or] = ACTIONS(6157), - [anon_sym_and] = ACTIONS(6157), - [anon_sym_bitor] = ACTIONS(6157), - [anon_sym_xor] = ACTIONS(6157), - [anon_sym_bitand] = ACTIONS(6157), - [anon_sym_not_eq] = ACTIONS(6157), - [anon_sym_DASH_DASH] = ACTIONS(6157), - [anon_sym_PLUS_PLUS] = ACTIONS(6157), - [anon_sym_DOT] = ACTIONS(6155), - [anon_sym_DOT_STAR] = ACTIONS(6157), - [anon_sym_DASH_GT] = ACTIONS(6157), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6157), - [anon_sym_decltype] = ACTIONS(6157), - [anon_sym_final] = ACTIONS(6157), - [anon_sym_override] = ACTIONS(6157), - [anon_sym_requires] = ACTIONS(6157), - }, - [2337] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2326), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5920), - [anon_sym_COMMA] = ACTIONS(5920), - [anon_sym_LPAREN2] = ACTIONS(5920), - [anon_sym_DASH] = ACTIONS(5922), - [anon_sym_PLUS] = ACTIONS(5922), - [anon_sym_STAR] = ACTIONS(5920), - [anon_sym_SLASH] = ACTIONS(5922), - [anon_sym_PERCENT] = ACTIONS(5920), - [anon_sym_PIPE_PIPE] = ACTIONS(5920), - [anon_sym_AMP_AMP] = ACTIONS(5920), - [anon_sym_PIPE] = ACTIONS(5922), - [anon_sym_CARET] = ACTIONS(5920), - [anon_sym_AMP] = ACTIONS(5922), - [anon_sym_EQ_EQ] = ACTIONS(5920), - [anon_sym_BANG_EQ] = ACTIONS(5920), - [anon_sym_GT] = ACTIONS(5922), - [anon_sym_GT_EQ] = ACTIONS(5922), - [anon_sym_LT_EQ] = ACTIONS(5922), - [anon_sym_LT] = ACTIONS(5922), - [anon_sym_LT_LT] = ACTIONS(5920), - [anon_sym_GT_GT] = ACTIONS(5922), - [anon_sym___extension__] = ACTIONS(5920), - [anon_sym___attribute__] = ACTIONS(5920), - [anon_sym___attribute] = ACTIONS(5922), - [anon_sym_LBRACE] = ACTIONS(5920), - [anon_sym_signed] = ACTIONS(6366), - [anon_sym_unsigned] = ACTIONS(6366), - [anon_sym_long] = ACTIONS(6366), - [anon_sym_short] = ACTIONS(6366), - [anon_sym_LBRACK] = ACTIONS(5920), - [anon_sym_const] = ACTIONS(5922), - [anon_sym_constexpr] = ACTIONS(5920), - [anon_sym_volatile] = ACTIONS(5920), - [anon_sym_restrict] = ACTIONS(5920), - [anon_sym___restrict__] = ACTIONS(5920), - [anon_sym__Atomic] = ACTIONS(5920), - [anon_sym__Noreturn] = ACTIONS(5920), - [anon_sym_noreturn] = ACTIONS(5920), - [anon_sym__Nonnull] = ACTIONS(5920), - [anon_sym_mutable] = ACTIONS(5920), - [anon_sym_constinit] = ACTIONS(5920), - [anon_sym_consteval] = ACTIONS(5920), - [anon_sym_alignas] = ACTIONS(5920), - [anon_sym__Alignas] = ACTIONS(5920), - [anon_sym_QMARK] = ACTIONS(5920), - [anon_sym_LT_EQ_GT] = ACTIONS(5920), - [anon_sym_or] = ACTIONS(5920), - [anon_sym_and] = ACTIONS(5920), - [anon_sym_bitor] = ACTIONS(5920), - [anon_sym_xor] = ACTIONS(5920), - [anon_sym_bitand] = ACTIONS(5920), - [anon_sym_not_eq] = ACTIONS(5920), - [anon_sym_DASH_DASH] = ACTIONS(5920), - [anon_sym_PLUS_PLUS] = ACTIONS(5920), - [anon_sym_DOT] = ACTIONS(5922), - [anon_sym_DOT_STAR] = ACTIONS(5920), - [anon_sym_DASH_GT] = ACTIONS(5920), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5920), - [anon_sym_decltype] = ACTIONS(5920), - [anon_sym_final] = ACTIONS(5920), - [anon_sym_override] = ACTIONS(5920), - [anon_sym_GT2] = ACTIONS(5920), - [anon_sym_requires] = ACTIONS(5920), - }, - [2338] = { - [sym_identifier] = ACTIONS(5005), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4998), - [anon_sym_COMMA] = ACTIONS(4998), - [anon_sym_RPAREN] = ACTIONS(4998), - [aux_sym_preproc_if_token2] = ACTIONS(4998), - [aux_sym_preproc_else_token1] = ACTIONS(4998), - [aux_sym_preproc_elif_token1] = ACTIONS(5005), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4998), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4998), - [anon_sym_LPAREN2] = ACTIONS(4998), - [anon_sym_DASH] = ACTIONS(5005), - [anon_sym_PLUS] = ACTIONS(5005), - [anon_sym_STAR] = ACTIONS(5005), - [anon_sym_SLASH] = ACTIONS(5005), - [anon_sym_PERCENT] = ACTIONS(5005), - [anon_sym_PIPE_PIPE] = ACTIONS(4998), - [anon_sym_AMP_AMP] = ACTIONS(4998), - [anon_sym_PIPE] = ACTIONS(5005), - [anon_sym_CARET] = ACTIONS(5005), - [anon_sym_AMP] = ACTIONS(5005), - [anon_sym_EQ_EQ] = ACTIONS(4998), - [anon_sym_BANG_EQ] = ACTIONS(4998), - [anon_sym_GT] = ACTIONS(5005), - [anon_sym_GT_EQ] = ACTIONS(4998), - [anon_sym_LT_EQ] = ACTIONS(5005), - [anon_sym_LT] = ACTIONS(5005), - [anon_sym_LT_LT] = ACTIONS(5005), - [anon_sym_GT_GT] = ACTIONS(5005), - [anon_sym_SEMI] = ACTIONS(4998), - [anon_sym___attribute__] = ACTIONS(5005), - [anon_sym___attribute] = ACTIONS(5005), - [anon_sym_COLON] = ACTIONS(5005), - [anon_sym_COLON_COLON] = ACTIONS(5003), - [anon_sym_LBRACE] = ACTIONS(5003), - [anon_sym_RBRACE] = ACTIONS(4998), - [anon_sym_LBRACK] = ACTIONS(4998), - [anon_sym_RBRACK] = ACTIONS(4998), - [anon_sym_EQ] = ACTIONS(5005), - [anon_sym_QMARK] = ACTIONS(4998), - [anon_sym_STAR_EQ] = ACTIONS(4998), - [anon_sym_SLASH_EQ] = ACTIONS(4998), - [anon_sym_PERCENT_EQ] = ACTIONS(4998), - [anon_sym_PLUS_EQ] = ACTIONS(4998), - [anon_sym_DASH_EQ] = ACTIONS(4998), - [anon_sym_LT_LT_EQ] = ACTIONS(4998), - [anon_sym_GT_GT_EQ] = ACTIONS(4998), - [anon_sym_AMP_EQ] = ACTIONS(4998), - [anon_sym_CARET_EQ] = ACTIONS(4998), - [anon_sym_PIPE_EQ] = ACTIONS(4998), - [anon_sym_and_eq] = ACTIONS(5005), - [anon_sym_or_eq] = ACTIONS(5005), - [anon_sym_xor_eq] = ACTIONS(5005), - [anon_sym_LT_EQ_GT] = ACTIONS(4998), - [anon_sym_or] = ACTIONS(5005), - [anon_sym_and] = ACTIONS(5005), - [anon_sym_bitor] = ACTIONS(5005), - [anon_sym_xor] = ACTIONS(5005), - [anon_sym_bitand] = ACTIONS(5005), - [anon_sym_not_eq] = ACTIONS(5005), - [anon_sym_DASH_DASH] = ACTIONS(4998), - [anon_sym_PLUS_PLUS] = ACTIONS(4998), - [anon_sym_DOT] = ACTIONS(5005), - [anon_sym_DOT_STAR] = ACTIONS(4998), - [anon_sym_DASH_GT] = ACTIONS(4998), - [sym_comment] = ACTIONS(3), - }, - [2339] = { - [sym_identifier] = ACTIONS(5489), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5491), - [anon_sym_COMMA] = ACTIONS(5491), - [anon_sym_LPAREN2] = ACTIONS(5491), - [anon_sym_DASH] = ACTIONS(5489), - [anon_sym_PLUS] = ACTIONS(5489), - [anon_sym_STAR] = ACTIONS(5489), - [anon_sym_SLASH] = ACTIONS(5489), - [anon_sym_PERCENT] = ACTIONS(5489), - [anon_sym_PIPE_PIPE] = ACTIONS(5491), - [anon_sym_AMP_AMP] = ACTIONS(5491), - [anon_sym_PIPE] = ACTIONS(5489), - [anon_sym_CARET] = ACTIONS(5489), - [anon_sym_AMP] = ACTIONS(5489), - [anon_sym_EQ_EQ] = ACTIONS(5491), - [anon_sym_BANG_EQ] = ACTIONS(5491), - [anon_sym_GT] = ACTIONS(5489), - [anon_sym_GT_EQ] = ACTIONS(5491), - [anon_sym_LT_EQ] = ACTIONS(5489), - [anon_sym_LT] = ACTIONS(5489), - [anon_sym_LT_LT] = ACTIONS(5489), - [anon_sym_GT_GT] = ACTIONS(5489), - [anon_sym_SEMI] = ACTIONS(5491), - [anon_sym___attribute__] = ACTIONS(5489), - [anon_sym___attribute] = ACTIONS(5489), - [anon_sym_LBRACK] = ACTIONS(5491), - [anon_sym_EQ] = ACTIONS(5489), - [anon_sym_QMARK] = ACTIONS(5491), - [anon_sym_STAR_EQ] = ACTIONS(5491), - [anon_sym_SLASH_EQ] = ACTIONS(5491), - [anon_sym_PERCENT_EQ] = ACTIONS(5491), - [anon_sym_PLUS_EQ] = ACTIONS(5491), - [anon_sym_DASH_EQ] = ACTIONS(5491), - [anon_sym_LT_LT_EQ] = ACTIONS(5491), - [anon_sym_GT_GT_EQ] = ACTIONS(5491), - [anon_sym_AMP_EQ] = ACTIONS(5491), - [anon_sym_CARET_EQ] = ACTIONS(5491), - [anon_sym_PIPE_EQ] = ACTIONS(5491), - [anon_sym_and_eq] = ACTIONS(5489), - [anon_sym_or_eq] = ACTIONS(5489), - [anon_sym_xor_eq] = ACTIONS(5489), - [anon_sym_LT_EQ_GT] = ACTIONS(5491), - [anon_sym_or] = ACTIONS(5489), - [anon_sym_and] = ACTIONS(5489), - [anon_sym_bitor] = ACTIONS(5489), - [anon_sym_xor] = ACTIONS(5489), - [anon_sym_bitand] = ACTIONS(5489), - [anon_sym_not_eq] = ACTIONS(5489), - [anon_sym_DASH_DASH] = ACTIONS(5491), - [anon_sym_PLUS_PLUS] = ACTIONS(5491), - [anon_sym_DOT] = ACTIONS(5489), - [anon_sym_DOT_STAR] = ACTIONS(5491), - [anon_sym_DASH_GT] = ACTIONS(5491), - [anon_sym_L_DQUOTE] = ACTIONS(5491), - [anon_sym_u_DQUOTE] = ACTIONS(5491), - [anon_sym_U_DQUOTE] = ACTIONS(5491), - [anon_sym_u8_DQUOTE] = ACTIONS(5491), - [anon_sym_DQUOTE] = ACTIONS(5491), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5491), - [anon_sym_LR_DQUOTE] = ACTIONS(5491), - [anon_sym_uR_DQUOTE] = ACTIONS(5491), - [anon_sym_UR_DQUOTE] = ACTIONS(5491), - [anon_sym_u8R_DQUOTE] = ACTIONS(5491), - [sym_literal_suffix] = ACTIONS(5489), - }, - [2340] = { - [sym_ms_based_modifier] = STATE(8682), - [sym_ms_unaligned_ptr_modifier] = STATE(4043), - [sym_ms_pointer_modifier] = STATE(3820), - [sym__declarator] = STATE(6447), - [sym__abstract_declarator] = STATE(6687), - [sym_parenthesized_declarator] = STATE(5998), - [sym_abstract_parenthesized_declarator] = STATE(6092), - [sym_attributed_declarator] = STATE(5998), - [sym_pointer_declarator] = STATE(5998), - [sym_abstract_pointer_declarator] = STATE(6092), - [sym_function_declarator] = STATE(5998), - [sym_abstract_function_declarator] = STATE(6092), - [sym_array_declarator] = STATE(5998), - [sym_abstract_array_declarator] = STATE(6092), - [sym_type_qualifier] = STATE(2847), - [sym_alignas_qualifier] = STATE(4289), - [sym_parameter_list] = STATE(3004), - [sym_decltype] = STATE(8601), - [sym_reference_declarator] = STATE(5998), - [sym_abstract_reference_declarator] = STATE(6092), - [sym_structured_binding_declarator] = STATE(5998), - [sym__function_declarator_seq] = STATE(6087), - [sym_template_type] = STATE(8601), - [sym_template_function] = STATE(5998), - [sym_destructor_name] = STATE(5998), - [sym_dependent_type_identifier] = STATE(8601), - [sym__scope_resolution] = STATE(5847), - [sym_qualified_identifier] = STATE(5998), - [sym_operator_name] = STATE(5998), - [aux_sym__type_definition_type_repeat1] = STATE(2847), - [aux_sym_pointer_declarator_repeat1] = STATE(3820), - [sym_identifier] = ACTIONS(5460), - [anon_sym_RPAREN] = ACTIONS(5865), - [anon_sym_LPAREN2] = ACTIONS(4298), - [anon_sym_TILDE] = ACTIONS(2979), - [anon_sym_STAR] = ACTIONS(4300), - [anon_sym_AMP_AMP] = ACTIONS(4302), - [anon_sym_AMP] = ACTIONS(4304), - [anon_sym___extension__] = ACTIONS(3331), - [anon_sym_COLON_COLON] = ACTIONS(6321), - [anon_sym___based] = ACTIONS(53), - [sym_ms_restrict_modifier] = ACTIONS(3327), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(3327), - [sym_ms_signed_ptr_modifier] = ACTIONS(3327), - [anon_sym__unaligned] = ACTIONS(3329), - [anon_sym___unaligned] = ACTIONS(3329), - [anon_sym_LBRACK] = ACTIONS(5863), - [anon_sym_const] = ACTIONS(3331), - [anon_sym_constexpr] = ACTIONS(3331), - [anon_sym_volatile] = ACTIONS(3331), - [anon_sym_restrict] = ACTIONS(3331), - [anon_sym___restrict__] = ACTIONS(3331), - [anon_sym__Atomic] = ACTIONS(3331), - [anon_sym__Noreturn] = ACTIONS(3331), - [anon_sym_noreturn] = ACTIONS(3331), - [anon_sym__Nonnull] = ACTIONS(3331), - [anon_sym_mutable] = ACTIONS(3331), - [anon_sym_constinit] = ACTIONS(3331), - [anon_sym_consteval] = ACTIONS(3331), - [anon_sym_alignas] = ACTIONS(3333), - [anon_sym__Alignas] = ACTIONS(3333), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1452), - [anon_sym_operator] = ACTIONS(1852), - }, - [2341] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2332), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5752), - [anon_sym_COMMA] = ACTIONS(5752), - [anon_sym_LPAREN2] = ACTIONS(5752), - [anon_sym_DASH] = ACTIONS(5750), - [anon_sym_PLUS] = ACTIONS(5750), - [anon_sym_STAR] = ACTIONS(5752), - [anon_sym_SLASH] = ACTIONS(5750), - [anon_sym_PERCENT] = ACTIONS(5752), - [anon_sym_PIPE_PIPE] = ACTIONS(5752), - [anon_sym_AMP_AMP] = ACTIONS(5752), - [anon_sym_PIPE] = ACTIONS(5750), - [anon_sym_CARET] = ACTIONS(5752), - [anon_sym_AMP] = ACTIONS(5750), - [anon_sym_EQ_EQ] = ACTIONS(5752), - [anon_sym_BANG_EQ] = ACTIONS(5752), - [anon_sym_GT] = ACTIONS(5750), - [anon_sym_GT_EQ] = ACTIONS(5750), - [anon_sym_LT_EQ] = ACTIONS(5750), - [anon_sym_LT] = ACTIONS(5750), - [anon_sym_LT_LT] = ACTIONS(5752), - [anon_sym_GT_GT] = ACTIONS(5750), - [anon_sym___extension__] = ACTIONS(5752), - [anon_sym___attribute__] = ACTIONS(5752), - [anon_sym___attribute] = ACTIONS(5750), - [anon_sym_LBRACE] = ACTIONS(5752), - [anon_sym_signed] = ACTIONS(6346), - [anon_sym_unsigned] = ACTIONS(6346), - [anon_sym_long] = ACTIONS(6346), - [anon_sym_short] = ACTIONS(6346), - [anon_sym_LBRACK] = ACTIONS(5752), - [anon_sym_const] = ACTIONS(5750), - [anon_sym_constexpr] = ACTIONS(5752), - [anon_sym_volatile] = ACTIONS(5752), - [anon_sym_restrict] = ACTIONS(5752), - [anon_sym___restrict__] = ACTIONS(5752), - [anon_sym__Atomic] = ACTIONS(5752), - [anon_sym__Noreturn] = ACTIONS(5752), - [anon_sym_noreturn] = ACTIONS(5752), - [anon_sym__Nonnull] = ACTIONS(5752), - [anon_sym_mutable] = ACTIONS(5752), - [anon_sym_constinit] = ACTIONS(5752), - [anon_sym_consteval] = ACTIONS(5752), - [anon_sym_alignas] = ACTIONS(5752), - [anon_sym__Alignas] = ACTIONS(5752), - [anon_sym_QMARK] = ACTIONS(5752), - [anon_sym_LT_EQ_GT] = ACTIONS(5752), - [anon_sym_or] = ACTIONS(5752), - [anon_sym_and] = ACTIONS(5752), - [anon_sym_bitor] = ACTIONS(5752), - [anon_sym_xor] = ACTIONS(5752), - [anon_sym_bitand] = ACTIONS(5752), - [anon_sym_not_eq] = ACTIONS(5752), - [anon_sym_DASH_DASH] = ACTIONS(5752), - [anon_sym_PLUS_PLUS] = ACTIONS(5752), - [anon_sym_DOT] = ACTIONS(5750), - [anon_sym_DOT_STAR] = ACTIONS(5752), - [anon_sym_DASH_GT] = ACTIONS(5752), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5752), - [anon_sym_decltype] = ACTIONS(5752), - [anon_sym_final] = ACTIONS(5752), - [anon_sym_override] = ACTIONS(5752), - [anon_sym_GT2] = ACTIONS(5752), - [anon_sym_requires] = ACTIONS(5752), - }, - [2342] = { - [sym_identifier] = ACTIONS(5478), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5480), - [anon_sym_COMMA] = ACTIONS(5480), - [anon_sym_LPAREN2] = ACTIONS(5480), - [anon_sym_DASH] = ACTIONS(5478), - [anon_sym_PLUS] = ACTIONS(5478), - [anon_sym_STAR] = ACTIONS(5478), - [anon_sym_SLASH] = ACTIONS(5478), - [anon_sym_PERCENT] = ACTIONS(5478), - [anon_sym_PIPE_PIPE] = ACTIONS(5480), - [anon_sym_AMP_AMP] = ACTIONS(5480), - [anon_sym_PIPE] = ACTIONS(5478), - [anon_sym_CARET] = ACTIONS(5478), - [anon_sym_AMP] = ACTIONS(5478), - [anon_sym_EQ_EQ] = ACTIONS(5480), - [anon_sym_BANG_EQ] = ACTIONS(5480), - [anon_sym_GT] = ACTIONS(5478), - [anon_sym_GT_EQ] = ACTIONS(5480), - [anon_sym_LT_EQ] = ACTIONS(5478), - [anon_sym_LT] = ACTIONS(5478), - [anon_sym_LT_LT] = ACTIONS(5478), - [anon_sym_GT_GT] = ACTIONS(5478), - [anon_sym_SEMI] = ACTIONS(5480), - [anon_sym___attribute__] = ACTIONS(5478), - [anon_sym___attribute] = ACTIONS(5478), - [anon_sym_LBRACK] = ACTIONS(5480), - [anon_sym_EQ] = ACTIONS(5478), - [anon_sym_QMARK] = ACTIONS(5480), - [anon_sym_STAR_EQ] = ACTIONS(5480), - [anon_sym_SLASH_EQ] = ACTIONS(5480), - [anon_sym_PERCENT_EQ] = ACTIONS(5480), - [anon_sym_PLUS_EQ] = ACTIONS(5480), - [anon_sym_DASH_EQ] = ACTIONS(5480), - [anon_sym_LT_LT_EQ] = ACTIONS(5480), - [anon_sym_GT_GT_EQ] = ACTIONS(5480), - [anon_sym_AMP_EQ] = ACTIONS(5480), - [anon_sym_CARET_EQ] = ACTIONS(5480), - [anon_sym_PIPE_EQ] = ACTIONS(5480), - [anon_sym_and_eq] = ACTIONS(5478), - [anon_sym_or_eq] = ACTIONS(5478), - [anon_sym_xor_eq] = ACTIONS(5478), - [anon_sym_LT_EQ_GT] = ACTIONS(5480), - [anon_sym_or] = ACTIONS(5478), - [anon_sym_and] = ACTIONS(5478), - [anon_sym_bitor] = ACTIONS(5478), - [anon_sym_xor] = ACTIONS(5478), - [anon_sym_bitand] = ACTIONS(5478), - [anon_sym_not_eq] = ACTIONS(5478), - [anon_sym_DASH_DASH] = ACTIONS(5480), - [anon_sym_PLUS_PLUS] = ACTIONS(5480), - [anon_sym_DOT] = ACTIONS(5478), - [anon_sym_DOT_STAR] = ACTIONS(5480), - [anon_sym_DASH_GT] = ACTIONS(5480), - [anon_sym_L_DQUOTE] = ACTIONS(5480), - [anon_sym_u_DQUOTE] = ACTIONS(5480), - [anon_sym_U_DQUOTE] = ACTIONS(5480), - [anon_sym_u8_DQUOTE] = ACTIONS(5480), - [anon_sym_DQUOTE] = ACTIONS(5480), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5480), - [anon_sym_LR_DQUOTE] = ACTIONS(5480), - [anon_sym_uR_DQUOTE] = ACTIONS(5480), - [anon_sym_UR_DQUOTE] = ACTIONS(5480), - [anon_sym_u8R_DQUOTE] = ACTIONS(5480), - [sym_literal_suffix] = ACTIONS(5478), - }, - [2343] = { + [2371] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5911), + [anon_sym_COMMA] = ACTIONS(5911), + [anon_sym_LPAREN2] = ACTIONS(5911), + [anon_sym_DASH] = ACTIONS(5913), + [anon_sym_PLUS] = ACTIONS(5913), + [anon_sym_STAR] = ACTIONS(5911), + [anon_sym_SLASH] = ACTIONS(5913), + [anon_sym_PERCENT] = ACTIONS(5911), + [anon_sym_PIPE_PIPE] = ACTIONS(5911), + [anon_sym_AMP_AMP] = ACTIONS(5911), + [anon_sym_PIPE] = ACTIONS(5913), + [anon_sym_CARET] = ACTIONS(5911), + [anon_sym_AMP] = ACTIONS(5913), + [anon_sym_EQ_EQ] = ACTIONS(5911), + [anon_sym_BANG_EQ] = ACTIONS(5911), + [anon_sym_GT] = ACTIONS(5913), + [anon_sym_GT_EQ] = ACTIONS(5913), + [anon_sym_LT_EQ] = ACTIONS(5913), + [anon_sym_LT] = ACTIONS(5913), + [anon_sym_LT_LT] = ACTIONS(5911), + [anon_sym_GT_GT] = ACTIONS(5913), + [anon_sym___extension__] = ACTIONS(5911), + [anon_sym___attribute__] = ACTIONS(5911), + [anon_sym___attribute] = ACTIONS(5913), + [anon_sym_LBRACE] = ACTIONS(5911), + [anon_sym_signed] = ACTIONS(6336), + [anon_sym_unsigned] = ACTIONS(6336), + [anon_sym_long] = ACTIONS(6336), + [anon_sym_short] = ACTIONS(6336), + [anon_sym_LBRACK] = ACTIONS(5911), + [anon_sym_const] = ACTIONS(5913), + [anon_sym_constexpr] = ACTIONS(5911), + [anon_sym_volatile] = ACTIONS(5911), + [anon_sym_restrict] = ACTIONS(5911), + [anon_sym___restrict__] = ACTIONS(5911), + [anon_sym__Atomic] = ACTIONS(5911), + [anon_sym__Noreturn] = ACTIONS(5911), + [anon_sym_noreturn] = ACTIONS(5911), + [anon_sym__Nonnull] = ACTIONS(5911), + [anon_sym_mutable] = ACTIONS(5911), + [anon_sym_constinit] = ACTIONS(5911), + [anon_sym_consteval] = ACTIONS(5911), + [anon_sym_alignas] = ACTIONS(5911), + [anon_sym__Alignas] = ACTIONS(5911), + [anon_sym_QMARK] = ACTIONS(5911), + [anon_sym_LT_EQ_GT] = ACTIONS(5911), + [anon_sym_or] = ACTIONS(5911), + [anon_sym_and] = ACTIONS(5911), + [anon_sym_bitor] = ACTIONS(5911), + [anon_sym_xor] = ACTIONS(5911), + [anon_sym_bitand] = ACTIONS(5911), + [anon_sym_not_eq] = ACTIONS(5911), + [anon_sym_DASH_DASH] = ACTIONS(5911), + [anon_sym_PLUS_PLUS] = ACTIONS(5911), + [anon_sym_DOT] = ACTIONS(5913), + [anon_sym_DOT_STAR] = ACTIONS(5911), + [anon_sym_DASH_GT] = ACTIONS(5911), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5911), + [anon_sym_decltype] = ACTIONS(5911), + [anon_sym_final] = ACTIONS(5911), + [anon_sym_override] = ACTIONS(5911), + [anon_sym_GT2] = ACTIONS(5911), + [anon_sym_requires] = ACTIONS(5911), + }, + [2372] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5951), + [anon_sym_COMMA] = ACTIONS(5951), + [anon_sym_LPAREN2] = ACTIONS(5951), + [anon_sym_DASH] = ACTIONS(5953), + [anon_sym_PLUS] = ACTIONS(5953), + [anon_sym_STAR] = ACTIONS(5951), + [anon_sym_SLASH] = ACTIONS(5953), + [anon_sym_PERCENT] = ACTIONS(5951), + [anon_sym_PIPE_PIPE] = ACTIONS(5951), + [anon_sym_AMP_AMP] = ACTIONS(5951), + [anon_sym_PIPE] = ACTIONS(5953), + [anon_sym_CARET] = ACTIONS(5951), + [anon_sym_AMP] = ACTIONS(5953), + [anon_sym_EQ_EQ] = ACTIONS(5951), + [anon_sym_BANG_EQ] = ACTIONS(5951), + [anon_sym_GT] = ACTIONS(5953), + [anon_sym_GT_EQ] = ACTIONS(5953), + [anon_sym_LT_EQ] = ACTIONS(5953), + [anon_sym_LT] = ACTIONS(5953), + [anon_sym_LT_LT] = ACTIONS(5951), + [anon_sym_GT_GT] = ACTIONS(5953), + [anon_sym___extension__] = ACTIONS(5951), + [anon_sym___attribute__] = ACTIONS(5951), + [anon_sym___attribute] = ACTIONS(5953), + [anon_sym_LBRACE] = ACTIONS(5951), + [anon_sym_signed] = ACTIONS(6336), + [anon_sym_unsigned] = ACTIONS(6336), + [anon_sym_long] = ACTIONS(6336), + [anon_sym_short] = ACTIONS(6336), + [anon_sym_LBRACK] = ACTIONS(5951), + [anon_sym_const] = ACTIONS(5953), + [anon_sym_constexpr] = ACTIONS(5951), + [anon_sym_volatile] = ACTIONS(5951), + [anon_sym_restrict] = ACTIONS(5951), + [anon_sym___restrict__] = ACTIONS(5951), + [anon_sym__Atomic] = ACTIONS(5951), + [anon_sym__Noreturn] = ACTIONS(5951), + [anon_sym_noreturn] = ACTIONS(5951), + [anon_sym__Nonnull] = ACTIONS(5951), + [anon_sym_mutable] = ACTIONS(5951), + [anon_sym_constinit] = ACTIONS(5951), + [anon_sym_consteval] = ACTIONS(5951), + [anon_sym_alignas] = ACTIONS(5951), + [anon_sym__Alignas] = ACTIONS(5951), + [anon_sym_QMARK] = ACTIONS(5951), + [anon_sym_LT_EQ_GT] = ACTIONS(5951), + [anon_sym_or] = ACTIONS(5951), + [anon_sym_and] = ACTIONS(5951), + [anon_sym_bitor] = ACTIONS(5951), + [anon_sym_xor] = ACTIONS(5951), + [anon_sym_bitand] = ACTIONS(5951), + [anon_sym_not_eq] = ACTIONS(5951), + [anon_sym_DASH_DASH] = ACTIONS(5951), + [anon_sym_PLUS_PLUS] = ACTIONS(5951), + [anon_sym_DOT] = ACTIONS(5953), + [anon_sym_DOT_STAR] = ACTIONS(5951), + [anon_sym_DASH_GT] = ACTIONS(5951), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5951), + [anon_sym_decltype] = ACTIONS(5951), + [anon_sym_final] = ACTIONS(5951), + [anon_sym_override] = ACTIONS(5951), + [anon_sym_GT2] = ACTIONS(5951), + [anon_sym_requires] = ACTIONS(5951), + }, + [2373] = { [sym_attribute_specifier] = STATE(1877), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6064), - [anon_sym_COMMA] = ACTIONS(6064), - [anon_sym_RPAREN] = ACTIONS(6064), - [anon_sym_LPAREN2] = ACTIONS(6064), - [anon_sym_DASH] = ACTIONS(6062), - [anon_sym_PLUS] = ACTIONS(6062), - [anon_sym_STAR] = ACTIONS(6064), - [anon_sym_SLASH] = ACTIONS(6062), - [anon_sym_PERCENT] = ACTIONS(6064), - [anon_sym_PIPE_PIPE] = ACTIONS(6064), - [anon_sym_AMP_AMP] = ACTIONS(6064), - [anon_sym_PIPE] = ACTIONS(6062), - [anon_sym_CARET] = ACTIONS(6064), - [anon_sym_AMP] = ACTIONS(6062), - [anon_sym_EQ_EQ] = ACTIONS(6064), - [anon_sym_BANG_EQ] = ACTIONS(6064), - [anon_sym_GT] = ACTIONS(6062), - [anon_sym_GT_EQ] = ACTIONS(6064), - [anon_sym_LT_EQ] = ACTIONS(6062), - [anon_sym_LT] = ACTIONS(6062), - [anon_sym_LT_LT] = ACTIONS(6064), - [anon_sym_GT_GT] = ACTIONS(6064), - [anon_sym_SEMI] = ACTIONS(6064), - [anon_sym___extension__] = ACTIONS(6064), - [anon_sym___attribute__] = ACTIONS(6014), - [anon_sym___attribute] = ACTIONS(6016), - [anon_sym_COLON] = ACTIONS(6064), - [anon_sym_LBRACE] = ACTIONS(6064), - [anon_sym_RBRACE] = ACTIONS(6064), - [anon_sym_LBRACK] = ACTIONS(6064), - [anon_sym_RBRACK] = ACTIONS(6064), - [anon_sym_const] = ACTIONS(6062), - [anon_sym_constexpr] = ACTIONS(6064), - [anon_sym_volatile] = ACTIONS(6064), - [anon_sym_restrict] = ACTIONS(6064), - [anon_sym___restrict__] = ACTIONS(6064), - [anon_sym__Atomic] = ACTIONS(6064), - [anon_sym__Noreturn] = ACTIONS(6064), - [anon_sym_noreturn] = ACTIONS(6064), - [anon_sym__Nonnull] = ACTIONS(6064), - [anon_sym_mutable] = ACTIONS(6064), - [anon_sym_constinit] = ACTIONS(6064), - [anon_sym_consteval] = ACTIONS(6064), - [anon_sym_alignas] = ACTIONS(6064), - [anon_sym__Alignas] = ACTIONS(6064), - [anon_sym_QMARK] = ACTIONS(6064), - [anon_sym_LT_EQ_GT] = ACTIONS(6064), - [anon_sym_or] = ACTIONS(6064), - [anon_sym_and] = ACTIONS(6064), - [anon_sym_bitor] = ACTIONS(6064), - [anon_sym_xor] = ACTIONS(6064), - [anon_sym_bitand] = ACTIONS(6064), - [anon_sym_not_eq] = ACTIONS(6064), - [anon_sym_DASH_DASH] = ACTIONS(6064), - [anon_sym_PLUS_PLUS] = ACTIONS(6064), - [anon_sym_DOT] = ACTIONS(6062), - [anon_sym_DOT_STAR] = ACTIONS(6064), - [anon_sym_DASH_GT] = ACTIONS(6064), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6064), - [anon_sym_decltype] = ACTIONS(6064), - [anon_sym_final] = ACTIONS(6064), - [anon_sym_override] = ACTIONS(6064), - [anon_sym_requires] = ACTIONS(6064), - }, - [2344] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2198), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5926), - [anon_sym_COMMA] = ACTIONS(5926), - [anon_sym_LPAREN2] = ACTIONS(5926), - [anon_sym_DASH] = ACTIONS(5928), - [anon_sym_PLUS] = ACTIONS(5928), - [anon_sym_STAR] = ACTIONS(5926), - [anon_sym_SLASH] = ACTIONS(5928), - [anon_sym_PERCENT] = ACTIONS(5926), - [anon_sym_PIPE_PIPE] = ACTIONS(5926), - [anon_sym_AMP_AMP] = ACTIONS(5926), - [anon_sym_PIPE] = ACTIONS(5928), - [anon_sym_CARET] = ACTIONS(5926), - [anon_sym_AMP] = ACTIONS(5928), - [anon_sym_EQ_EQ] = ACTIONS(5926), - [anon_sym_BANG_EQ] = ACTIONS(5926), - [anon_sym_GT] = ACTIONS(5928), - [anon_sym_GT_EQ] = ACTIONS(5928), - [anon_sym_LT_EQ] = ACTIONS(5928), - [anon_sym_LT] = ACTIONS(5928), - [anon_sym_LT_LT] = ACTIONS(5926), - [anon_sym_GT_GT] = ACTIONS(5928), - [anon_sym___extension__] = ACTIONS(5926), - [anon_sym___attribute__] = ACTIONS(5926), - [anon_sym___attribute] = ACTIONS(5928), - [anon_sym_LBRACE] = ACTIONS(5926), - [anon_sym_signed] = ACTIONS(6356), - [anon_sym_unsigned] = ACTIONS(6356), - [anon_sym_long] = ACTIONS(6356), - [anon_sym_short] = ACTIONS(6356), - [anon_sym_LBRACK] = ACTIONS(5926), - [anon_sym_const] = ACTIONS(5928), - [anon_sym_constexpr] = ACTIONS(5926), - [anon_sym_volatile] = ACTIONS(5926), - [anon_sym_restrict] = ACTIONS(5926), - [anon_sym___restrict__] = ACTIONS(5926), - [anon_sym__Atomic] = ACTIONS(5926), - [anon_sym__Noreturn] = ACTIONS(5926), - [anon_sym_noreturn] = ACTIONS(5926), - [anon_sym__Nonnull] = ACTIONS(5926), - [anon_sym_mutable] = ACTIONS(5926), - [anon_sym_constinit] = ACTIONS(5926), - [anon_sym_consteval] = ACTIONS(5926), - [anon_sym_alignas] = ACTIONS(5926), - [anon_sym__Alignas] = ACTIONS(5926), - [anon_sym_QMARK] = ACTIONS(5926), - [anon_sym_LT_EQ_GT] = ACTIONS(5926), - [anon_sym_or] = ACTIONS(5926), - [anon_sym_and] = ACTIONS(5926), - [anon_sym_bitor] = ACTIONS(5926), - [anon_sym_xor] = ACTIONS(5926), - [anon_sym_bitand] = ACTIONS(5926), - [anon_sym_not_eq] = ACTIONS(5926), - [anon_sym_DASH_DASH] = ACTIONS(5926), - [anon_sym_PLUS_PLUS] = ACTIONS(5926), - [anon_sym_DOT] = ACTIONS(5928), - [anon_sym_DOT_STAR] = ACTIONS(5926), - [anon_sym_DASH_GT] = ACTIONS(5926), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5926), - [anon_sym_decltype] = ACTIONS(5926), - [anon_sym_final] = ACTIONS(5926), - [anon_sym_override] = ACTIONS(5926), - [anon_sym_GT2] = ACTIONS(5926), - [anon_sym_requires] = ACTIONS(5926), - }, - [2345] = { - [sym_identifier] = ACTIONS(5482), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5484), - [anon_sym_COMMA] = ACTIONS(5484), - [anon_sym_LPAREN2] = ACTIONS(5484), - [anon_sym_DASH] = ACTIONS(5482), - [anon_sym_PLUS] = ACTIONS(5482), - [anon_sym_STAR] = ACTIONS(5482), - [anon_sym_SLASH] = ACTIONS(5482), - [anon_sym_PERCENT] = ACTIONS(5482), - [anon_sym_PIPE_PIPE] = ACTIONS(5484), - [anon_sym_AMP_AMP] = ACTIONS(5484), - [anon_sym_PIPE] = ACTIONS(5482), - [anon_sym_CARET] = ACTIONS(5482), - [anon_sym_AMP] = ACTIONS(5482), - [anon_sym_EQ_EQ] = ACTIONS(5484), - [anon_sym_BANG_EQ] = ACTIONS(5484), - [anon_sym_GT] = ACTIONS(5482), - [anon_sym_GT_EQ] = ACTIONS(5484), - [anon_sym_LT_EQ] = ACTIONS(5482), - [anon_sym_LT] = ACTIONS(5482), - [anon_sym_LT_LT] = ACTIONS(5482), - [anon_sym_GT_GT] = ACTIONS(5482), - [anon_sym_SEMI] = ACTIONS(5484), - [anon_sym___attribute__] = ACTIONS(5482), - [anon_sym___attribute] = ACTIONS(5482), - [anon_sym_LBRACK] = ACTIONS(5484), - [anon_sym_EQ] = ACTIONS(5482), - [anon_sym_QMARK] = ACTIONS(5484), - [anon_sym_STAR_EQ] = ACTIONS(5484), - [anon_sym_SLASH_EQ] = ACTIONS(5484), - [anon_sym_PERCENT_EQ] = ACTIONS(5484), - [anon_sym_PLUS_EQ] = ACTIONS(5484), - [anon_sym_DASH_EQ] = ACTIONS(5484), - [anon_sym_LT_LT_EQ] = ACTIONS(5484), - [anon_sym_GT_GT_EQ] = ACTIONS(5484), - [anon_sym_AMP_EQ] = ACTIONS(5484), - [anon_sym_CARET_EQ] = ACTIONS(5484), - [anon_sym_PIPE_EQ] = ACTIONS(5484), - [anon_sym_and_eq] = ACTIONS(5482), - [anon_sym_or_eq] = ACTIONS(5482), - [anon_sym_xor_eq] = ACTIONS(5482), - [anon_sym_LT_EQ_GT] = ACTIONS(5484), - [anon_sym_or] = ACTIONS(5482), - [anon_sym_and] = ACTIONS(5482), - [anon_sym_bitor] = ACTIONS(5482), - [anon_sym_xor] = ACTIONS(5482), - [anon_sym_bitand] = ACTIONS(5482), - [anon_sym_not_eq] = ACTIONS(5482), - [anon_sym_DASH_DASH] = ACTIONS(5484), - [anon_sym_PLUS_PLUS] = ACTIONS(5484), - [anon_sym_DOT] = ACTIONS(5482), - [anon_sym_DOT_STAR] = ACTIONS(5484), - [anon_sym_DASH_GT] = ACTIONS(5484), - [anon_sym_L_DQUOTE] = ACTIONS(5484), - [anon_sym_u_DQUOTE] = ACTIONS(5484), - [anon_sym_U_DQUOTE] = ACTIONS(5484), - [anon_sym_u8_DQUOTE] = ACTIONS(5484), - [anon_sym_DQUOTE] = ACTIONS(5484), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5484), - [anon_sym_LR_DQUOTE] = ACTIONS(5484), - [anon_sym_uR_DQUOTE] = ACTIONS(5484), - [anon_sym_UR_DQUOTE] = ACTIONS(5484), - [anon_sym_u8R_DQUOTE] = ACTIONS(5484), - [sym_literal_suffix] = ACTIONS(5482), - }, - [2346] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5752), - [anon_sym_COMMA] = ACTIONS(5752), - [anon_sym_RPAREN] = ACTIONS(5752), - [anon_sym_LPAREN2] = ACTIONS(5752), - [anon_sym_DASH] = ACTIONS(5750), - [anon_sym_PLUS] = ACTIONS(5750), - [anon_sym_STAR] = ACTIONS(5750), - [anon_sym_SLASH] = ACTIONS(5750), - [anon_sym_PERCENT] = ACTIONS(5750), - [anon_sym_PIPE_PIPE] = ACTIONS(5752), - [anon_sym_AMP_AMP] = ACTIONS(5752), - [anon_sym_PIPE] = ACTIONS(5750), - [anon_sym_CARET] = ACTIONS(5750), - [anon_sym_AMP] = ACTIONS(5750), - [anon_sym_EQ_EQ] = ACTIONS(5752), - [anon_sym_BANG_EQ] = ACTIONS(5752), - [anon_sym_GT] = ACTIONS(5750), - [anon_sym_GT_EQ] = ACTIONS(5752), - [anon_sym_LT_EQ] = ACTIONS(5750), - [anon_sym_LT] = ACTIONS(5750), - [anon_sym_LT_LT] = ACTIONS(5750), - [anon_sym_GT_GT] = ACTIONS(5750), - [anon_sym_SEMI] = ACTIONS(5752), - [anon_sym___attribute__] = ACTIONS(5752), - [anon_sym___attribute] = ACTIONS(5750), - [anon_sym_COLON] = ACTIONS(5752), - [anon_sym_LBRACE] = ACTIONS(5752), - [anon_sym_RBRACE] = ACTIONS(5752), - [anon_sym_signed] = ACTIONS(6317), - [anon_sym_unsigned] = ACTIONS(6317), - [anon_sym_long] = ACTIONS(6317), - [anon_sym_short] = ACTIONS(6317), - [anon_sym_LBRACK] = ACTIONS(5752), - [anon_sym_RBRACK] = ACTIONS(5752), - [anon_sym_EQ] = ACTIONS(5750), - [anon_sym_QMARK] = ACTIONS(5752), - [anon_sym_STAR_EQ] = ACTIONS(5752), - [anon_sym_SLASH_EQ] = ACTIONS(5752), - [anon_sym_PERCENT_EQ] = ACTIONS(5752), - [anon_sym_PLUS_EQ] = ACTIONS(5752), - [anon_sym_DASH_EQ] = ACTIONS(5752), - [anon_sym_LT_LT_EQ] = ACTIONS(5752), - [anon_sym_GT_GT_EQ] = ACTIONS(5752), - [anon_sym_AMP_EQ] = ACTIONS(5752), - [anon_sym_CARET_EQ] = ACTIONS(5752), - [anon_sym_PIPE_EQ] = ACTIONS(5752), - [anon_sym_and_eq] = ACTIONS(5752), - [anon_sym_or_eq] = ACTIONS(5752), - [anon_sym_xor_eq] = ACTIONS(5752), - [anon_sym_LT_EQ_GT] = ACTIONS(5752), - [anon_sym_or] = ACTIONS(5750), - [anon_sym_and] = ACTIONS(5750), - [anon_sym_bitor] = ACTIONS(5752), - [anon_sym_xor] = ACTIONS(5750), - [anon_sym_bitand] = ACTIONS(5752), - [anon_sym_not_eq] = ACTIONS(5752), - [anon_sym_DASH_DASH] = ACTIONS(5752), - [anon_sym_PLUS_PLUS] = ACTIONS(5752), - [anon_sym_DOT] = ACTIONS(5750), - [anon_sym_DOT_STAR] = ACTIONS(5752), - [anon_sym_DASH_GT] = ACTIONS(5752), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5752), - [anon_sym_decltype] = ACTIONS(5752), - }, - [2347] = { - [sym_template_argument_list] = STATE(2324), - [sym_identifier] = ACTIONS(6368), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6370), - [anon_sym_COMMA] = ACTIONS(6370), - [anon_sym_RPAREN] = ACTIONS(6370), - [aux_sym_preproc_if_token2] = ACTIONS(6370), - [aux_sym_preproc_else_token1] = ACTIONS(6370), - [aux_sym_preproc_elif_token1] = ACTIONS(6368), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6370), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6370), - [anon_sym_LPAREN2] = ACTIONS(6370), - [anon_sym_DASH] = ACTIONS(6368), - [anon_sym_PLUS] = ACTIONS(6368), - [anon_sym_STAR] = ACTIONS(6368), - [anon_sym_SLASH] = ACTIONS(6368), - [anon_sym_PERCENT] = ACTIONS(6368), - [anon_sym_PIPE_PIPE] = ACTIONS(6370), - [anon_sym_AMP_AMP] = ACTIONS(6370), - [anon_sym_PIPE] = ACTIONS(6368), - [anon_sym_CARET] = ACTIONS(6368), - [anon_sym_AMP] = ACTIONS(6368), - [anon_sym_EQ_EQ] = ACTIONS(6370), - [anon_sym_BANG_EQ] = ACTIONS(6370), - [anon_sym_GT] = ACTIONS(6368), - [anon_sym_GT_EQ] = ACTIONS(6370), - [anon_sym_LT_EQ] = ACTIONS(6368), - [anon_sym_LT] = ACTIONS(6372), - [anon_sym_LT_LT] = ACTIONS(6368), - [anon_sym_GT_GT] = ACTIONS(6368), - [anon_sym_SEMI] = ACTIONS(6370), - [anon_sym___attribute__] = ACTIONS(6368), - [anon_sym___attribute] = ACTIONS(6368), - [anon_sym_COLON] = ACTIONS(6368), - [anon_sym_COLON_COLON] = ACTIONS(4167), - [anon_sym_RBRACE] = ACTIONS(6370), - [anon_sym_LBRACK] = ACTIONS(6370), - [anon_sym_RBRACK] = ACTIONS(6370), - [anon_sym_EQ] = ACTIONS(6368), - [anon_sym_QMARK] = ACTIONS(6370), - [anon_sym_STAR_EQ] = ACTIONS(6370), - [anon_sym_SLASH_EQ] = ACTIONS(6370), - [anon_sym_PERCENT_EQ] = ACTIONS(6370), - [anon_sym_PLUS_EQ] = ACTIONS(6370), - [anon_sym_DASH_EQ] = ACTIONS(6370), - [anon_sym_LT_LT_EQ] = ACTIONS(6370), - [anon_sym_GT_GT_EQ] = ACTIONS(6370), - [anon_sym_AMP_EQ] = ACTIONS(6370), - [anon_sym_CARET_EQ] = ACTIONS(6370), - [anon_sym_PIPE_EQ] = ACTIONS(6370), - [anon_sym_and_eq] = ACTIONS(6368), - [anon_sym_or_eq] = ACTIONS(6368), - [anon_sym_xor_eq] = ACTIONS(6368), - [anon_sym_LT_EQ_GT] = ACTIONS(6370), - [anon_sym_or] = ACTIONS(6368), - [anon_sym_and] = ACTIONS(6368), - [anon_sym_bitor] = ACTIONS(6368), - [anon_sym_xor] = ACTIONS(6368), - [anon_sym_bitand] = ACTIONS(6368), - [anon_sym_not_eq] = ACTIONS(6368), - [anon_sym_DASH_DASH] = ACTIONS(6370), - [anon_sym_PLUS_PLUS] = ACTIONS(6370), - [anon_sym_DOT] = ACTIONS(6368), - [anon_sym_DOT_STAR] = ACTIONS(6370), - [anon_sym_DASH_GT] = ACTIONS(6370), - [sym_comment] = ACTIONS(3), - }, - [2348] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5936), - [anon_sym_COMMA] = ACTIONS(5936), - [anon_sym_LPAREN2] = ACTIONS(5936), - [anon_sym_DASH] = ACTIONS(5938), - [anon_sym_PLUS] = ACTIONS(5938), - [anon_sym_STAR] = ACTIONS(5936), - [anon_sym_SLASH] = ACTIONS(5938), - [anon_sym_PERCENT] = ACTIONS(5936), - [anon_sym_PIPE_PIPE] = ACTIONS(5936), - [anon_sym_AMP_AMP] = ACTIONS(5936), - [anon_sym_PIPE] = ACTIONS(5938), - [anon_sym_CARET] = ACTIONS(5936), - [anon_sym_AMP] = ACTIONS(5938), - [anon_sym_EQ_EQ] = ACTIONS(5936), - [anon_sym_BANG_EQ] = ACTIONS(5936), - [anon_sym_GT] = ACTIONS(5938), - [anon_sym_GT_EQ] = ACTIONS(5938), - [anon_sym_LT_EQ] = ACTIONS(5938), - [anon_sym_LT] = ACTIONS(5938), - [anon_sym_LT_LT] = ACTIONS(5936), - [anon_sym_GT_GT] = ACTIONS(5938), - [anon_sym___extension__] = ACTIONS(5936), - [anon_sym___attribute__] = ACTIONS(5936), - [anon_sym___attribute] = ACTIONS(5938), - [anon_sym_LBRACE] = ACTIONS(5936), - [anon_sym_signed] = ACTIONS(6375), - [anon_sym_unsigned] = ACTIONS(6375), - [anon_sym_long] = ACTIONS(6375), - [anon_sym_short] = ACTIONS(6375), - [anon_sym_LBRACK] = ACTIONS(5936), - [anon_sym_const] = ACTIONS(5938), - [anon_sym_constexpr] = ACTIONS(5936), - [anon_sym_volatile] = ACTIONS(5936), - [anon_sym_restrict] = ACTIONS(5936), - [anon_sym___restrict__] = ACTIONS(5936), - [anon_sym__Atomic] = ACTIONS(5936), - [anon_sym__Noreturn] = ACTIONS(5936), - [anon_sym_noreturn] = ACTIONS(5936), - [anon_sym__Nonnull] = ACTIONS(5936), - [anon_sym_mutable] = ACTIONS(5936), - [anon_sym_constinit] = ACTIONS(5936), - [anon_sym_consteval] = ACTIONS(5936), - [anon_sym_alignas] = ACTIONS(5936), - [anon_sym__Alignas] = ACTIONS(5936), - [anon_sym_QMARK] = ACTIONS(5936), - [anon_sym_LT_EQ_GT] = ACTIONS(5936), - [anon_sym_or] = ACTIONS(5936), - [anon_sym_and] = ACTIONS(5936), - [anon_sym_bitor] = ACTIONS(5936), - [anon_sym_xor] = ACTIONS(5936), - [anon_sym_bitand] = ACTIONS(5936), - [anon_sym_not_eq] = ACTIONS(5936), - [anon_sym_DASH_DASH] = ACTIONS(5936), - [anon_sym_PLUS_PLUS] = ACTIONS(5936), - [anon_sym_DOT] = ACTIONS(5938), - [anon_sym_DOT_STAR] = ACTIONS(5936), - [anon_sym_DASH_GT] = ACTIONS(5936), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5936), - [anon_sym_decltype] = ACTIONS(5936), - [anon_sym_final] = ACTIONS(5936), - [anon_sym_override] = ACTIONS(5936), - [anon_sym_GT2] = ACTIONS(5936), - [anon_sym_requires] = ACTIONS(5936), - }, - [2349] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2362), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5930), - [anon_sym_COMMA] = ACTIONS(5930), - [anon_sym_LPAREN2] = ACTIONS(5930), - [anon_sym_DASH] = ACTIONS(5932), - [anon_sym_PLUS] = ACTIONS(5932), - [anon_sym_STAR] = ACTIONS(5930), - [anon_sym_SLASH] = ACTIONS(5932), - [anon_sym_PERCENT] = ACTIONS(5930), - [anon_sym_PIPE_PIPE] = ACTIONS(5930), - [anon_sym_AMP_AMP] = ACTIONS(5930), - [anon_sym_PIPE] = ACTIONS(5932), - [anon_sym_CARET] = ACTIONS(5930), - [anon_sym_AMP] = ACTIONS(5932), - [anon_sym_EQ_EQ] = ACTIONS(5930), - [anon_sym_BANG_EQ] = ACTIONS(5930), - [anon_sym_GT] = ACTIONS(5932), - [anon_sym_GT_EQ] = ACTIONS(5932), - [anon_sym_LT_EQ] = ACTIONS(5932), - [anon_sym_LT] = ACTIONS(5932), - [anon_sym_LT_LT] = ACTIONS(5930), - [anon_sym_GT_GT] = ACTIONS(5932), - [anon_sym___extension__] = ACTIONS(5930), - [anon_sym___attribute__] = ACTIONS(5930), - [anon_sym___attribute] = ACTIONS(5932), - [anon_sym_LBRACE] = ACTIONS(5930), - [anon_sym_signed] = ACTIONS(6377), - [anon_sym_unsigned] = ACTIONS(6377), - [anon_sym_long] = ACTIONS(6377), - [anon_sym_short] = ACTIONS(6377), - [anon_sym_LBRACK] = ACTIONS(5930), - [anon_sym_const] = ACTIONS(5932), - [anon_sym_constexpr] = ACTIONS(5930), - [anon_sym_volatile] = ACTIONS(5930), - [anon_sym_restrict] = ACTIONS(5930), - [anon_sym___restrict__] = ACTIONS(5930), - [anon_sym__Atomic] = ACTIONS(5930), - [anon_sym__Noreturn] = ACTIONS(5930), - [anon_sym_noreturn] = ACTIONS(5930), - [anon_sym__Nonnull] = ACTIONS(5930), - [anon_sym_mutable] = ACTIONS(5930), - [anon_sym_constinit] = ACTIONS(5930), - [anon_sym_consteval] = ACTIONS(5930), - [anon_sym_alignas] = ACTIONS(5930), - [anon_sym__Alignas] = ACTIONS(5930), - [anon_sym_QMARK] = ACTIONS(5930), - [anon_sym_LT_EQ_GT] = ACTIONS(5930), - [anon_sym_or] = ACTIONS(5930), - [anon_sym_and] = ACTIONS(5930), - [anon_sym_bitor] = ACTIONS(5930), - [anon_sym_xor] = ACTIONS(5930), - [anon_sym_bitand] = ACTIONS(5930), - [anon_sym_not_eq] = ACTIONS(5930), - [anon_sym_DASH_DASH] = ACTIONS(5930), - [anon_sym_PLUS_PLUS] = ACTIONS(5930), - [anon_sym_DOT] = ACTIONS(5932), - [anon_sym_DOT_STAR] = ACTIONS(5930), - [anon_sym_DASH_GT] = ACTIONS(5930), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5930), - [anon_sym_decltype] = ACTIONS(5930), - [anon_sym_final] = ACTIONS(5930), - [anon_sym_override] = ACTIONS(5930), - [anon_sym_GT2] = ACTIONS(5930), - [anon_sym_requires] = ACTIONS(5930), - }, - [2350] = { - [sym_attribute_specifier] = STATE(1834), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6098), - [anon_sym_COMMA] = ACTIONS(6098), - [anon_sym_RPAREN] = ACTIONS(6098), - [anon_sym_LPAREN2] = ACTIONS(6098), - [anon_sym_DASH] = ACTIONS(6096), - [anon_sym_PLUS] = ACTIONS(6096), - [anon_sym_STAR] = ACTIONS(6098), - [anon_sym_SLASH] = ACTIONS(6096), - [anon_sym_PERCENT] = ACTIONS(6098), - [anon_sym_PIPE_PIPE] = ACTIONS(6098), - [anon_sym_AMP_AMP] = ACTIONS(6098), - [anon_sym_PIPE] = ACTIONS(6096), - [anon_sym_CARET] = ACTIONS(6098), - [anon_sym_AMP] = ACTIONS(6096), - [anon_sym_EQ_EQ] = ACTIONS(6098), - [anon_sym_BANG_EQ] = ACTIONS(6098), - [anon_sym_GT] = ACTIONS(6096), - [anon_sym_GT_EQ] = ACTIONS(6098), - [anon_sym_LT_EQ] = ACTIONS(6096), - [anon_sym_LT] = ACTIONS(6096), - [anon_sym_LT_LT] = ACTIONS(6098), - [anon_sym_GT_GT] = ACTIONS(6098), - [anon_sym_SEMI] = ACTIONS(6098), - [anon_sym___extension__] = ACTIONS(6098), - [anon_sym___attribute__] = ACTIONS(6014), - [anon_sym___attribute] = ACTIONS(6016), - [anon_sym_COLON] = ACTIONS(6098), - [anon_sym_LBRACE] = ACTIONS(6098), - [anon_sym_RBRACE] = ACTIONS(6098), - [anon_sym_LBRACK] = ACTIONS(6098), - [anon_sym_RBRACK] = ACTIONS(6098), - [anon_sym_const] = ACTIONS(6096), - [anon_sym_constexpr] = ACTIONS(6098), - [anon_sym_volatile] = ACTIONS(6098), - [anon_sym_restrict] = ACTIONS(6098), - [anon_sym___restrict__] = ACTIONS(6098), - [anon_sym__Atomic] = ACTIONS(6098), - [anon_sym__Noreturn] = ACTIONS(6098), - [anon_sym_noreturn] = ACTIONS(6098), - [anon_sym__Nonnull] = ACTIONS(6098), - [anon_sym_mutable] = ACTIONS(6098), - [anon_sym_constinit] = ACTIONS(6098), - [anon_sym_consteval] = ACTIONS(6098), - [anon_sym_alignas] = ACTIONS(6098), - [anon_sym__Alignas] = ACTIONS(6098), - [anon_sym_QMARK] = ACTIONS(6098), - [anon_sym_LT_EQ_GT] = ACTIONS(6098), - [anon_sym_or] = ACTIONS(6098), - [anon_sym_and] = ACTIONS(6098), - [anon_sym_bitor] = ACTIONS(6098), - [anon_sym_xor] = ACTIONS(6098), - [anon_sym_bitand] = ACTIONS(6098), - [anon_sym_not_eq] = ACTIONS(6098), - [anon_sym_DASH_DASH] = ACTIONS(6098), - [anon_sym_PLUS_PLUS] = ACTIONS(6098), - [anon_sym_DOT] = ACTIONS(6096), - [anon_sym_DOT_STAR] = ACTIONS(6098), - [anon_sym_DASH_GT] = ACTIONS(6098), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6098), - [anon_sym_decltype] = ACTIONS(6098), - [anon_sym_final] = ACTIONS(6098), - [anon_sym_override] = ACTIONS(6098), - [anon_sym_requires] = ACTIONS(6098), - }, - [2351] = { - [sym_attribute_specifier] = STATE(1882), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6131), - [anon_sym_COMMA] = ACTIONS(6131), - [anon_sym_RPAREN] = ACTIONS(6131), - [anon_sym_LPAREN2] = ACTIONS(6131), - [anon_sym_DASH] = ACTIONS(6129), - [anon_sym_PLUS] = ACTIONS(6129), - [anon_sym_STAR] = ACTIONS(6131), - [anon_sym_SLASH] = ACTIONS(6129), - [anon_sym_PERCENT] = ACTIONS(6131), - [anon_sym_PIPE_PIPE] = ACTIONS(6131), - [anon_sym_AMP_AMP] = ACTIONS(6131), - [anon_sym_PIPE] = ACTIONS(6129), - [anon_sym_CARET] = ACTIONS(6131), - [anon_sym_AMP] = ACTIONS(6129), - [anon_sym_EQ_EQ] = ACTIONS(6131), - [anon_sym_BANG_EQ] = ACTIONS(6131), - [anon_sym_GT] = ACTIONS(6129), - [anon_sym_GT_EQ] = ACTIONS(6131), - [anon_sym_LT_EQ] = ACTIONS(6129), - [anon_sym_LT] = ACTIONS(6129), - [anon_sym_LT_LT] = ACTIONS(6131), - [anon_sym_GT_GT] = ACTIONS(6131), - [anon_sym_SEMI] = ACTIONS(6131), - [anon_sym___extension__] = ACTIONS(6131), - [anon_sym___attribute__] = ACTIONS(6014), - [anon_sym___attribute] = ACTIONS(6016), - [anon_sym_COLON] = ACTIONS(6131), - [anon_sym_LBRACE] = ACTIONS(6131), - [anon_sym_RBRACE] = ACTIONS(6131), - [anon_sym_LBRACK] = ACTIONS(6131), - [anon_sym_RBRACK] = ACTIONS(6131), - [anon_sym_const] = ACTIONS(6129), - [anon_sym_constexpr] = ACTIONS(6131), - [anon_sym_volatile] = ACTIONS(6131), - [anon_sym_restrict] = ACTIONS(6131), - [anon_sym___restrict__] = ACTIONS(6131), - [anon_sym__Atomic] = ACTIONS(6131), - [anon_sym__Noreturn] = ACTIONS(6131), - [anon_sym_noreturn] = ACTIONS(6131), - [anon_sym__Nonnull] = ACTIONS(6131), - [anon_sym_mutable] = ACTIONS(6131), - [anon_sym_constinit] = ACTIONS(6131), - [anon_sym_consteval] = ACTIONS(6131), - [anon_sym_alignas] = ACTIONS(6131), - [anon_sym__Alignas] = ACTIONS(6131), - [anon_sym_QMARK] = ACTIONS(6131), - [anon_sym_LT_EQ_GT] = ACTIONS(6131), - [anon_sym_or] = ACTIONS(6131), - [anon_sym_and] = ACTIONS(6131), - [anon_sym_bitor] = ACTIONS(6131), - [anon_sym_xor] = ACTIONS(6131), - [anon_sym_bitand] = ACTIONS(6131), - [anon_sym_not_eq] = ACTIONS(6131), - [anon_sym_DASH_DASH] = ACTIONS(6131), - [anon_sym_PLUS_PLUS] = ACTIONS(6131), - [anon_sym_DOT] = ACTIONS(6129), - [anon_sym_DOT_STAR] = ACTIONS(6131), - [anon_sym_DASH_GT] = ACTIONS(6131), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6131), - [anon_sym_decltype] = ACTIONS(6131), - [anon_sym_final] = ACTIONS(6131), - [anon_sym_override] = ACTIONS(6131), - [anon_sym_requires] = ACTIONS(6131), - }, - [2352] = { - [sym_attribute_specifier] = STATE(1881), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6127), - [anon_sym_COMMA] = ACTIONS(6127), - [anon_sym_RPAREN] = ACTIONS(6127), - [anon_sym_LPAREN2] = ACTIONS(6127), - [anon_sym_DASH] = ACTIONS(6125), - [anon_sym_PLUS] = ACTIONS(6125), - [anon_sym_STAR] = ACTIONS(6127), - [anon_sym_SLASH] = ACTIONS(6125), - [anon_sym_PERCENT] = ACTIONS(6127), - [anon_sym_PIPE_PIPE] = ACTIONS(6127), - [anon_sym_AMP_AMP] = ACTIONS(6127), - [anon_sym_PIPE] = ACTIONS(6125), - [anon_sym_CARET] = ACTIONS(6127), - [anon_sym_AMP] = ACTIONS(6125), - [anon_sym_EQ_EQ] = ACTIONS(6127), - [anon_sym_BANG_EQ] = ACTIONS(6127), - [anon_sym_GT] = ACTIONS(6125), - [anon_sym_GT_EQ] = ACTIONS(6127), - [anon_sym_LT_EQ] = ACTIONS(6125), - [anon_sym_LT] = ACTIONS(6125), - [anon_sym_LT_LT] = ACTIONS(6127), - [anon_sym_GT_GT] = ACTIONS(6127), - [anon_sym_SEMI] = ACTIONS(6127), - [anon_sym___extension__] = ACTIONS(6127), - [anon_sym___attribute__] = ACTIONS(6014), - [anon_sym___attribute] = ACTIONS(6016), - [anon_sym_COLON] = ACTIONS(6127), - [anon_sym_LBRACE] = ACTIONS(6127), - [anon_sym_RBRACE] = ACTIONS(6127), - [anon_sym_LBRACK] = ACTIONS(6127), - [anon_sym_RBRACK] = ACTIONS(6127), - [anon_sym_const] = ACTIONS(6125), - [anon_sym_constexpr] = ACTIONS(6127), - [anon_sym_volatile] = ACTIONS(6127), - [anon_sym_restrict] = ACTIONS(6127), - [anon_sym___restrict__] = ACTIONS(6127), - [anon_sym__Atomic] = ACTIONS(6127), - [anon_sym__Noreturn] = ACTIONS(6127), - [anon_sym_noreturn] = ACTIONS(6127), - [anon_sym__Nonnull] = ACTIONS(6127), - [anon_sym_mutable] = ACTIONS(6127), - [anon_sym_constinit] = ACTIONS(6127), - [anon_sym_consteval] = ACTIONS(6127), - [anon_sym_alignas] = ACTIONS(6127), - [anon_sym__Alignas] = ACTIONS(6127), - [anon_sym_QMARK] = ACTIONS(6127), - [anon_sym_LT_EQ_GT] = ACTIONS(6127), - [anon_sym_or] = ACTIONS(6127), - [anon_sym_and] = ACTIONS(6127), - [anon_sym_bitor] = ACTIONS(6127), - [anon_sym_xor] = ACTIONS(6127), - [anon_sym_bitand] = ACTIONS(6127), - [anon_sym_not_eq] = ACTIONS(6127), - [anon_sym_DASH_DASH] = ACTIONS(6127), - [anon_sym_PLUS_PLUS] = ACTIONS(6127), - [anon_sym_DOT] = ACTIONS(6125), - [anon_sym_DOT_STAR] = ACTIONS(6127), - [anon_sym_DASH_GT] = ACTIONS(6127), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6127), - [anon_sym_decltype] = ACTIONS(6127), - [anon_sym_final] = ACTIONS(6127), - [anon_sym_override] = ACTIONS(6127), - [anon_sym_requires] = ACTIONS(6127), - }, - [2353] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2327), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5936), - [anon_sym_COMMA] = ACTIONS(5936), - [anon_sym_RPAREN] = ACTIONS(5936), - [anon_sym_LPAREN2] = ACTIONS(5936), - [anon_sym_DASH] = ACTIONS(5938), - [anon_sym_PLUS] = ACTIONS(5938), - [anon_sym_STAR] = ACTIONS(5938), - [anon_sym_SLASH] = ACTIONS(5938), - [anon_sym_PERCENT] = ACTIONS(5938), - [anon_sym_PIPE_PIPE] = ACTIONS(5936), - [anon_sym_AMP_AMP] = ACTIONS(5936), - [anon_sym_PIPE] = ACTIONS(5938), - [anon_sym_CARET] = ACTIONS(5938), - [anon_sym_AMP] = ACTIONS(5938), - [anon_sym_EQ_EQ] = ACTIONS(5936), - [anon_sym_BANG_EQ] = ACTIONS(5936), - [anon_sym_GT] = ACTIONS(5938), - [anon_sym_GT_EQ] = ACTIONS(5936), - [anon_sym_LT_EQ] = ACTIONS(5938), - [anon_sym_LT] = ACTIONS(5938), - [anon_sym_LT_LT] = ACTIONS(5938), - [anon_sym_GT_GT] = ACTIONS(5938), - [anon_sym_SEMI] = ACTIONS(5936), - [anon_sym___attribute__] = ACTIONS(5936), - [anon_sym___attribute] = ACTIONS(5938), - [anon_sym_COLON] = ACTIONS(5936), - [anon_sym_LBRACE] = ACTIONS(5936), - [anon_sym_RBRACE] = ACTIONS(5936), - [anon_sym_signed] = ACTIONS(6379), - [anon_sym_unsigned] = ACTIONS(6379), - [anon_sym_long] = ACTIONS(6379), - [anon_sym_short] = ACTIONS(6379), - [anon_sym_LBRACK] = ACTIONS(5936), - [anon_sym_RBRACK] = ACTIONS(5936), - [anon_sym_EQ] = ACTIONS(5938), - [anon_sym_QMARK] = ACTIONS(5936), - [anon_sym_STAR_EQ] = ACTIONS(5936), - [anon_sym_SLASH_EQ] = ACTIONS(5936), - [anon_sym_PERCENT_EQ] = ACTIONS(5936), - [anon_sym_PLUS_EQ] = ACTIONS(5936), - [anon_sym_DASH_EQ] = ACTIONS(5936), - [anon_sym_LT_LT_EQ] = ACTIONS(5936), - [anon_sym_GT_GT_EQ] = ACTIONS(5936), - [anon_sym_AMP_EQ] = ACTIONS(5936), - [anon_sym_CARET_EQ] = ACTIONS(5936), - [anon_sym_PIPE_EQ] = ACTIONS(5936), - [anon_sym_and_eq] = ACTIONS(5936), - [anon_sym_or_eq] = ACTIONS(5936), - [anon_sym_xor_eq] = ACTIONS(5936), - [anon_sym_LT_EQ_GT] = ACTIONS(5936), - [anon_sym_or] = ACTIONS(5938), - [anon_sym_and] = ACTIONS(5938), - [anon_sym_bitor] = ACTIONS(5936), - [anon_sym_xor] = ACTIONS(5938), - [anon_sym_bitand] = ACTIONS(5936), - [anon_sym_not_eq] = ACTIONS(5936), - [anon_sym_DASH_DASH] = ACTIONS(5936), - [anon_sym_PLUS_PLUS] = ACTIONS(5936), - [anon_sym_DOT] = ACTIONS(5938), - [anon_sym_DOT_STAR] = ACTIONS(5936), - [anon_sym_DASH_GT] = ACTIONS(5936), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5936), - [anon_sym_decltype] = ACTIONS(5936), - }, - [2354] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2310), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5930), - [anon_sym_COMMA] = ACTIONS(5930), - [anon_sym_RPAREN] = ACTIONS(5930), - [anon_sym_LPAREN2] = ACTIONS(5930), - [anon_sym_DASH] = ACTIONS(5932), - [anon_sym_PLUS] = ACTIONS(5932), - [anon_sym_STAR] = ACTIONS(5932), - [anon_sym_SLASH] = ACTIONS(5932), - [anon_sym_PERCENT] = ACTIONS(5932), - [anon_sym_PIPE_PIPE] = ACTIONS(5930), - [anon_sym_AMP_AMP] = ACTIONS(5930), - [anon_sym_PIPE] = ACTIONS(5932), - [anon_sym_CARET] = ACTIONS(5932), - [anon_sym_AMP] = ACTIONS(5932), - [anon_sym_EQ_EQ] = ACTIONS(5930), - [anon_sym_BANG_EQ] = ACTIONS(5930), - [anon_sym_GT] = ACTIONS(5932), - [anon_sym_GT_EQ] = ACTIONS(5930), - [anon_sym_LT_EQ] = ACTIONS(5932), - [anon_sym_LT] = ACTIONS(5932), - [anon_sym_LT_LT] = ACTIONS(5932), - [anon_sym_GT_GT] = ACTIONS(5932), - [anon_sym_SEMI] = ACTIONS(5930), - [anon_sym___attribute__] = ACTIONS(5930), - [anon_sym___attribute] = ACTIONS(5932), - [anon_sym_COLON] = ACTIONS(5930), - [anon_sym_LBRACE] = ACTIONS(5930), - [anon_sym_RBRACE] = ACTIONS(5930), - [anon_sym_signed] = ACTIONS(6381), - [anon_sym_unsigned] = ACTIONS(6381), - [anon_sym_long] = ACTIONS(6381), - [anon_sym_short] = ACTIONS(6381), - [anon_sym_LBRACK] = ACTIONS(5930), - [anon_sym_RBRACK] = ACTIONS(5930), - [anon_sym_EQ] = ACTIONS(5932), - [anon_sym_QMARK] = ACTIONS(5930), - [anon_sym_STAR_EQ] = ACTIONS(5930), - [anon_sym_SLASH_EQ] = ACTIONS(5930), - [anon_sym_PERCENT_EQ] = ACTIONS(5930), - [anon_sym_PLUS_EQ] = ACTIONS(5930), - [anon_sym_DASH_EQ] = ACTIONS(5930), - [anon_sym_LT_LT_EQ] = ACTIONS(5930), - [anon_sym_GT_GT_EQ] = ACTIONS(5930), - [anon_sym_AMP_EQ] = ACTIONS(5930), - [anon_sym_CARET_EQ] = ACTIONS(5930), - [anon_sym_PIPE_EQ] = ACTIONS(5930), - [anon_sym_and_eq] = ACTIONS(5930), - [anon_sym_or_eq] = ACTIONS(5930), - [anon_sym_xor_eq] = ACTIONS(5930), - [anon_sym_LT_EQ_GT] = ACTIONS(5930), - [anon_sym_or] = ACTIONS(5932), - [anon_sym_and] = ACTIONS(5932), - [anon_sym_bitor] = ACTIONS(5930), - [anon_sym_xor] = ACTIONS(5932), - [anon_sym_bitand] = ACTIONS(5930), - [anon_sym_not_eq] = ACTIONS(5930), - [anon_sym_DASH_DASH] = ACTIONS(5930), - [anon_sym_PLUS_PLUS] = ACTIONS(5930), - [anon_sym_DOT] = ACTIONS(5932), - [anon_sym_DOT_STAR] = ACTIONS(5930), - [anon_sym_DASH_GT] = ACTIONS(5930), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5930), - [anon_sym_decltype] = ACTIONS(5930), - }, - [2355] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2198), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5898), - [anon_sym_COMMA] = ACTIONS(5898), - [anon_sym_LPAREN2] = ACTIONS(5898), - [anon_sym_DASH] = ACTIONS(5900), - [anon_sym_PLUS] = ACTIONS(5900), - [anon_sym_STAR] = ACTIONS(5898), - [anon_sym_SLASH] = ACTIONS(5900), - [anon_sym_PERCENT] = ACTIONS(5898), - [anon_sym_PIPE_PIPE] = ACTIONS(5898), - [anon_sym_AMP_AMP] = ACTIONS(5898), - [anon_sym_PIPE] = ACTIONS(5900), - [anon_sym_CARET] = ACTIONS(5898), - [anon_sym_AMP] = ACTIONS(5900), - [anon_sym_EQ_EQ] = ACTIONS(5898), - [anon_sym_BANG_EQ] = ACTIONS(5898), - [anon_sym_GT] = ACTIONS(5900), - [anon_sym_GT_EQ] = ACTIONS(5900), - [anon_sym_LT_EQ] = ACTIONS(5900), - [anon_sym_LT] = ACTIONS(5900), - [anon_sym_LT_LT] = ACTIONS(5898), - [anon_sym_GT_GT] = ACTIONS(5900), - [anon_sym___extension__] = ACTIONS(5898), - [anon_sym___attribute__] = ACTIONS(5898), - [anon_sym___attribute] = ACTIONS(5900), - [anon_sym_LBRACE] = ACTIONS(5898), - [anon_sym_signed] = ACTIONS(6356), - [anon_sym_unsigned] = ACTIONS(6356), - [anon_sym_long] = ACTIONS(6356), - [anon_sym_short] = ACTIONS(6356), - [anon_sym_LBRACK] = ACTIONS(5898), - [anon_sym_const] = ACTIONS(5900), - [anon_sym_constexpr] = ACTIONS(5898), - [anon_sym_volatile] = ACTIONS(5898), - [anon_sym_restrict] = ACTIONS(5898), - [anon_sym___restrict__] = ACTIONS(5898), - [anon_sym__Atomic] = ACTIONS(5898), - [anon_sym__Noreturn] = ACTIONS(5898), - [anon_sym_noreturn] = ACTIONS(5898), - [anon_sym__Nonnull] = ACTIONS(5898), - [anon_sym_mutable] = ACTIONS(5898), - [anon_sym_constinit] = ACTIONS(5898), - [anon_sym_consteval] = ACTIONS(5898), - [anon_sym_alignas] = ACTIONS(5898), - [anon_sym__Alignas] = ACTIONS(5898), - [anon_sym_QMARK] = ACTIONS(5898), - [anon_sym_LT_EQ_GT] = ACTIONS(5898), - [anon_sym_or] = ACTIONS(5898), - [anon_sym_and] = ACTIONS(5898), - [anon_sym_bitor] = ACTIONS(5898), - [anon_sym_xor] = ACTIONS(5898), - [anon_sym_bitand] = ACTIONS(5898), - [anon_sym_not_eq] = ACTIONS(5898), - [anon_sym_DASH_DASH] = ACTIONS(5898), - [anon_sym_PLUS_PLUS] = ACTIONS(5898), - [anon_sym_DOT] = ACTIONS(5900), - [anon_sym_DOT_STAR] = ACTIONS(5898), - [anon_sym_DASH_GT] = ACTIONS(5898), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5898), - [anon_sym_decltype] = ACTIONS(5898), - [anon_sym_final] = ACTIONS(5898), - [anon_sym_override] = ACTIONS(5898), - [anon_sym_GT2] = ACTIONS(5898), - [anon_sym_requires] = ACTIONS(5898), - }, - [2356] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1585), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5908), - [anon_sym_COMMA] = ACTIONS(5908), - [anon_sym_RPAREN] = ACTIONS(5908), - [anon_sym_LPAREN2] = ACTIONS(5908), - [anon_sym_DASH] = ACTIONS(5910), - [anon_sym_PLUS] = ACTIONS(5910), - [anon_sym_STAR] = ACTIONS(5910), - [anon_sym_SLASH] = ACTIONS(5910), - [anon_sym_PERCENT] = ACTIONS(5910), - [anon_sym_PIPE_PIPE] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(5908), - [anon_sym_PIPE] = ACTIONS(5910), - [anon_sym_CARET] = ACTIONS(5910), - [anon_sym_AMP] = ACTIONS(5910), - [anon_sym_EQ_EQ] = ACTIONS(5908), - [anon_sym_BANG_EQ] = ACTIONS(5908), - [anon_sym_GT] = ACTIONS(5910), - [anon_sym_GT_EQ] = ACTIONS(5908), - [anon_sym_LT_EQ] = ACTIONS(5910), - [anon_sym_LT] = ACTIONS(5910), - [anon_sym_LT_LT] = ACTIONS(5910), - [anon_sym_GT_GT] = ACTIONS(5910), - [anon_sym_SEMI] = ACTIONS(5908), - [anon_sym___attribute__] = ACTIONS(5908), - [anon_sym___attribute] = ACTIONS(5910), - [anon_sym_COLON] = ACTIONS(5908), - [anon_sym_LBRACE] = ACTIONS(5908), - [anon_sym_RBRACE] = ACTIONS(5908), - [anon_sym_signed] = ACTIONS(6308), - [anon_sym_unsigned] = ACTIONS(6308), - [anon_sym_long] = ACTIONS(6308), - [anon_sym_short] = ACTIONS(6308), - [anon_sym_LBRACK] = ACTIONS(5908), - [anon_sym_RBRACK] = ACTIONS(5908), - [anon_sym_EQ] = ACTIONS(5910), - [anon_sym_QMARK] = ACTIONS(5908), - [anon_sym_STAR_EQ] = ACTIONS(5908), - [anon_sym_SLASH_EQ] = ACTIONS(5908), - [anon_sym_PERCENT_EQ] = ACTIONS(5908), - [anon_sym_PLUS_EQ] = ACTIONS(5908), - [anon_sym_DASH_EQ] = ACTIONS(5908), - [anon_sym_LT_LT_EQ] = ACTIONS(5908), - [anon_sym_GT_GT_EQ] = ACTIONS(5908), - [anon_sym_AMP_EQ] = ACTIONS(5908), - [anon_sym_CARET_EQ] = ACTIONS(5908), - [anon_sym_PIPE_EQ] = ACTIONS(5908), - [anon_sym_and_eq] = ACTIONS(5908), - [anon_sym_or_eq] = ACTIONS(5908), - [anon_sym_xor_eq] = ACTIONS(5908), - [anon_sym_LT_EQ_GT] = ACTIONS(5908), - [anon_sym_or] = ACTIONS(5910), - [anon_sym_and] = ACTIONS(5910), - [anon_sym_bitor] = ACTIONS(5908), - [anon_sym_xor] = ACTIONS(5910), - [anon_sym_bitand] = ACTIONS(5908), - [anon_sym_not_eq] = ACTIONS(5908), - [anon_sym_DASH_DASH] = ACTIONS(5908), - [anon_sym_PLUS_PLUS] = ACTIONS(5908), - [anon_sym_DOT] = ACTIONS(5910), - [anon_sym_DOT_STAR] = ACTIONS(5908), - [anon_sym_DASH_GT] = ACTIONS(5908), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5908), - [anon_sym_decltype] = ACTIONS(5908), - }, - [2357] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2198), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5908), - [anon_sym_COMMA] = ACTIONS(5908), - [anon_sym_LPAREN2] = ACTIONS(5908), - [anon_sym_DASH] = ACTIONS(5910), - [anon_sym_PLUS] = ACTIONS(5910), - [anon_sym_STAR] = ACTIONS(5908), - [anon_sym_SLASH] = ACTIONS(5910), - [anon_sym_PERCENT] = ACTIONS(5908), - [anon_sym_PIPE_PIPE] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(5908), - [anon_sym_PIPE] = ACTIONS(5910), - [anon_sym_CARET] = ACTIONS(5908), - [anon_sym_AMP] = ACTIONS(5910), - [anon_sym_EQ_EQ] = ACTIONS(5908), - [anon_sym_BANG_EQ] = ACTIONS(5908), - [anon_sym_GT] = ACTIONS(5910), - [anon_sym_GT_EQ] = ACTIONS(5910), - [anon_sym_LT_EQ] = ACTIONS(5910), - [anon_sym_LT] = ACTIONS(5910), - [anon_sym_LT_LT] = ACTIONS(5908), - [anon_sym_GT_GT] = ACTIONS(5910), - [anon_sym___extension__] = ACTIONS(5908), - [anon_sym___attribute__] = ACTIONS(5908), - [anon_sym___attribute] = ACTIONS(5910), - [anon_sym_LBRACE] = ACTIONS(5908), - [anon_sym_signed] = ACTIONS(6356), - [anon_sym_unsigned] = ACTIONS(6356), - [anon_sym_long] = ACTIONS(6356), - [anon_sym_short] = ACTIONS(6356), - [anon_sym_LBRACK] = ACTIONS(5908), - [anon_sym_const] = ACTIONS(5910), - [anon_sym_constexpr] = ACTIONS(5908), - [anon_sym_volatile] = ACTIONS(5908), - [anon_sym_restrict] = ACTIONS(5908), - [anon_sym___restrict__] = ACTIONS(5908), - [anon_sym__Atomic] = ACTIONS(5908), - [anon_sym__Noreturn] = ACTIONS(5908), - [anon_sym_noreturn] = ACTIONS(5908), - [anon_sym__Nonnull] = ACTIONS(5908), - [anon_sym_mutable] = ACTIONS(5908), - [anon_sym_constinit] = ACTIONS(5908), - [anon_sym_consteval] = ACTIONS(5908), - [anon_sym_alignas] = ACTIONS(5908), - [anon_sym__Alignas] = ACTIONS(5908), - [anon_sym_QMARK] = ACTIONS(5908), - [anon_sym_LT_EQ_GT] = ACTIONS(5908), - [anon_sym_or] = ACTIONS(5908), - [anon_sym_and] = ACTIONS(5908), - [anon_sym_bitor] = ACTIONS(5908), - [anon_sym_xor] = ACTIONS(5908), - [anon_sym_bitand] = ACTIONS(5908), - [anon_sym_not_eq] = ACTIONS(5908), - [anon_sym_DASH_DASH] = ACTIONS(5908), - [anon_sym_PLUS_PLUS] = ACTIONS(5908), - [anon_sym_DOT] = ACTIONS(5910), - [anon_sym_DOT_STAR] = ACTIONS(5908), - [anon_sym_DASH_GT] = ACTIONS(5908), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5908), - [anon_sym_decltype] = ACTIONS(5908), - [anon_sym_final] = ACTIONS(5908), - [anon_sym_override] = ACTIONS(5908), - [anon_sym_GT2] = ACTIONS(5908), - [anon_sym_requires] = ACTIONS(5908), - }, - [2358] = { - [sym_string_literal] = STATE(2189), - [sym_raw_string_literal] = STATE(2189), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5914), - [anon_sym_COMMA] = ACTIONS(5914), - [anon_sym_RPAREN] = ACTIONS(5914), - [anon_sym_LPAREN2] = ACTIONS(5914), - [anon_sym_DASH] = ACTIONS(5912), - [anon_sym_PLUS] = ACTIONS(5912), - [anon_sym_STAR] = ACTIONS(5912), - [anon_sym_SLASH] = ACTIONS(5912), - [anon_sym_PERCENT] = ACTIONS(5912), - [anon_sym_PIPE_PIPE] = ACTIONS(5914), - [anon_sym_AMP_AMP] = ACTIONS(5914), - [anon_sym_PIPE] = ACTIONS(5912), - [anon_sym_CARET] = ACTIONS(5912), - [anon_sym_AMP] = ACTIONS(5912), - [anon_sym_EQ_EQ] = ACTIONS(5914), - [anon_sym_BANG_EQ] = ACTIONS(5914), - [anon_sym_GT] = ACTIONS(5912), - [anon_sym_GT_EQ] = ACTIONS(5914), - [anon_sym_LT_EQ] = ACTIONS(5912), - [anon_sym_LT] = ACTIONS(5912), - [anon_sym_LT_LT] = ACTIONS(5912), - [anon_sym_GT_GT] = ACTIONS(5912), - [anon_sym_LBRACK] = ACTIONS(5914), - [anon_sym_EQ] = ACTIONS(5912), - [anon_sym_QMARK] = ACTIONS(5914), - [anon_sym_STAR_EQ] = ACTIONS(5914), - [anon_sym_SLASH_EQ] = ACTIONS(5914), - [anon_sym_PERCENT_EQ] = ACTIONS(5914), - [anon_sym_PLUS_EQ] = ACTIONS(5914), - [anon_sym_DASH_EQ] = ACTIONS(5914), - [anon_sym_LT_LT_EQ] = ACTIONS(5914), - [anon_sym_GT_GT_EQ] = ACTIONS(5914), - [anon_sym_AMP_EQ] = ACTIONS(5914), - [anon_sym_CARET_EQ] = ACTIONS(5914), - [anon_sym_PIPE_EQ] = ACTIONS(5914), - [anon_sym_and_eq] = ACTIONS(5912), - [anon_sym_or_eq] = ACTIONS(5912), - [anon_sym_xor_eq] = ACTIONS(5912), - [anon_sym_LT_EQ_GT] = ACTIONS(5914), - [anon_sym_or] = ACTIONS(5912), - [anon_sym_and] = ACTIONS(5912), - [anon_sym_bitor] = ACTIONS(5912), - [anon_sym_xor] = ACTIONS(5912), - [anon_sym_bitand] = ACTIONS(5912), - [anon_sym_not_eq] = ACTIONS(5912), - [anon_sym_DASH_DASH] = ACTIONS(5914), - [anon_sym_PLUS_PLUS] = ACTIONS(5914), - [anon_sym_DOT] = ACTIONS(5912), - [anon_sym_DOT_STAR] = ACTIONS(5914), - [anon_sym_DASH_GT] = ACTIONS(5912), - [anon_sym_L_DQUOTE] = ACTIONS(5040), - [anon_sym_u_DQUOTE] = ACTIONS(5040), - [anon_sym_U_DQUOTE] = ACTIONS(5040), - [anon_sym_u8_DQUOTE] = ACTIONS(5040), - [anon_sym_DQUOTE] = ACTIONS(5040), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5042), - [anon_sym_LR_DQUOTE] = ACTIONS(5042), - [anon_sym_uR_DQUOTE] = ACTIONS(5042), - [anon_sym_UR_DQUOTE] = ACTIONS(5042), - [anon_sym_u8R_DQUOTE] = ACTIONS(5042), - [anon_sym_DASH_GT_STAR] = ACTIONS(5914), - [sym_literal_suffix] = ACTIONS(5912), - }, - [2359] = { - [sym_type_qualifier] = STATE(2320), - [sym_alignas_qualifier] = STATE(1658), - [aux_sym__type_definition_type_repeat1] = STATE(2320), - [aux_sym_sized_type_specifier_repeat1] = STATE(2544), - [sym_identifier] = ACTIONS(6383), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5086), - [anon_sym_COMMA] = ACTIONS(5086), - [anon_sym_RPAREN] = ACTIONS(5086), - [anon_sym_LPAREN2] = ACTIONS(5086), - [anon_sym_TILDE] = ACTIONS(5086), - [anon_sym_STAR] = ACTIONS(5086), - [anon_sym_AMP_AMP] = ACTIONS(5086), - [anon_sym_AMP] = ACTIONS(5088), - [anon_sym_SEMI] = ACTIONS(5086), - [anon_sym___extension__] = ACTIONS(6386), - [anon_sym_virtual] = ACTIONS(5088), - [anon_sym_extern] = ACTIONS(5088), - [anon_sym___attribute__] = ACTIONS(5088), - [anon_sym___attribute] = ACTIONS(5088), - [anon_sym_COLON_COLON] = ACTIONS(5086), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5086), - [anon_sym___declspec] = ACTIONS(5088), - [anon_sym___based] = ACTIONS(5088), - [anon_sym___cdecl] = ACTIONS(5088), - [anon_sym___clrcall] = ACTIONS(5088), - [anon_sym___stdcall] = ACTIONS(5088), - [anon_sym___fastcall] = ACTIONS(5088), - [anon_sym___thiscall] = ACTIONS(5088), - [anon_sym___vectorcall] = ACTIONS(5088), - [anon_sym_LBRACE] = ACTIONS(5086), - [anon_sym_signed] = ACTIONS(6389), - [anon_sym_unsigned] = ACTIONS(6389), - [anon_sym_long] = ACTIONS(6389), - [anon_sym_short] = ACTIONS(6389), - [anon_sym_LBRACK] = ACTIONS(5088), - [anon_sym_static] = ACTIONS(5088), - [anon_sym_EQ] = ACTIONS(5086), - [anon_sym_register] = ACTIONS(5088), - [anon_sym_inline] = ACTIONS(5088), - [anon_sym___inline] = ACTIONS(5088), - [anon_sym___inline__] = ACTIONS(5088), - [anon_sym___forceinline] = ACTIONS(5088), - [anon_sym_thread_local] = ACTIONS(5088), - [anon_sym___thread] = ACTIONS(5088), - [anon_sym_const] = ACTIONS(6386), - [anon_sym_constexpr] = ACTIONS(6386), - [anon_sym_volatile] = ACTIONS(6386), - [anon_sym_restrict] = ACTIONS(6386), - [anon_sym___restrict__] = ACTIONS(6386), - [anon_sym__Atomic] = ACTIONS(6386), - [anon_sym__Noreturn] = ACTIONS(6386), - [anon_sym_noreturn] = ACTIONS(6386), - [anon_sym__Nonnull] = ACTIONS(6386), - [anon_sym_mutable] = ACTIONS(6386), - [anon_sym_constinit] = ACTIONS(6386), - [anon_sym_consteval] = ACTIONS(6386), - [anon_sym_alignas] = ACTIONS(6391), - [anon_sym__Alignas] = ACTIONS(6391), - [sym_primitive_type] = ACTIONS(6394), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5088), - [anon_sym_decltype] = ACTIONS(5088), - [anon_sym_template] = ACTIONS(5088), - [anon_sym_GT2] = ACTIONS(5086), - [anon_sym_operator] = ACTIONS(5088), - }, - [2360] = { - [sym_attribute_specifier] = STATE(1867), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6060), - [anon_sym_COMMA] = ACTIONS(6060), - [anon_sym_RPAREN] = ACTIONS(6060), - [anon_sym_LPAREN2] = ACTIONS(6060), - [anon_sym_DASH] = ACTIONS(6058), - [anon_sym_PLUS] = ACTIONS(6058), - [anon_sym_STAR] = ACTIONS(6060), - [anon_sym_SLASH] = ACTIONS(6058), - [anon_sym_PERCENT] = ACTIONS(6060), - [anon_sym_PIPE_PIPE] = ACTIONS(6060), - [anon_sym_AMP_AMP] = ACTIONS(6060), - [anon_sym_PIPE] = ACTIONS(6058), - [anon_sym_CARET] = ACTIONS(6060), - [anon_sym_AMP] = ACTIONS(6058), - [anon_sym_EQ_EQ] = ACTIONS(6060), - [anon_sym_BANG_EQ] = ACTIONS(6060), - [anon_sym_GT] = ACTIONS(6058), - [anon_sym_GT_EQ] = ACTIONS(6060), - [anon_sym_LT_EQ] = ACTIONS(6058), - [anon_sym_LT] = ACTIONS(6058), - [anon_sym_LT_LT] = ACTIONS(6060), - [anon_sym_GT_GT] = ACTIONS(6060), - [anon_sym_SEMI] = ACTIONS(6060), - [anon_sym___extension__] = ACTIONS(6060), - [anon_sym___attribute__] = ACTIONS(6014), - [anon_sym___attribute] = ACTIONS(6016), - [anon_sym_COLON] = ACTIONS(6060), - [anon_sym_LBRACE] = ACTIONS(6060), - [anon_sym_RBRACE] = ACTIONS(6060), - [anon_sym_LBRACK] = ACTIONS(6060), - [anon_sym_RBRACK] = ACTIONS(6060), - [anon_sym_const] = ACTIONS(6058), - [anon_sym_constexpr] = ACTIONS(6060), - [anon_sym_volatile] = ACTIONS(6060), - [anon_sym_restrict] = ACTIONS(6060), - [anon_sym___restrict__] = ACTIONS(6060), - [anon_sym__Atomic] = ACTIONS(6060), - [anon_sym__Noreturn] = ACTIONS(6060), - [anon_sym_noreturn] = ACTIONS(6060), - [anon_sym__Nonnull] = ACTIONS(6060), - [anon_sym_mutable] = ACTIONS(6060), - [anon_sym_constinit] = ACTIONS(6060), - [anon_sym_consteval] = ACTIONS(6060), - [anon_sym_alignas] = ACTIONS(6060), - [anon_sym__Alignas] = ACTIONS(6060), - [anon_sym_QMARK] = ACTIONS(6060), - [anon_sym_LT_EQ_GT] = ACTIONS(6060), - [anon_sym_or] = ACTIONS(6060), - [anon_sym_and] = ACTIONS(6060), - [anon_sym_bitor] = ACTIONS(6060), - [anon_sym_xor] = ACTIONS(6060), - [anon_sym_bitand] = ACTIONS(6060), - [anon_sym_not_eq] = ACTIONS(6060), - [anon_sym_DASH_DASH] = ACTIONS(6060), - [anon_sym_PLUS_PLUS] = ACTIONS(6060), - [anon_sym_DOT] = ACTIONS(6058), - [anon_sym_DOT_STAR] = ACTIONS(6060), - [anon_sym_DASH_GT] = ACTIONS(6060), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6155), + [anon_sym_COMMA] = ACTIONS(6155), + [anon_sym_RPAREN] = ACTIONS(6155), + [anon_sym_LPAREN2] = ACTIONS(6155), + [anon_sym_DASH] = ACTIONS(6153), + [anon_sym_PLUS] = ACTIONS(6153), + [anon_sym_STAR] = ACTIONS(6155), + [anon_sym_SLASH] = ACTIONS(6153), + [anon_sym_PERCENT] = ACTIONS(6155), + [anon_sym_PIPE_PIPE] = ACTIONS(6155), + [anon_sym_AMP_AMP] = ACTIONS(6155), + [anon_sym_PIPE] = ACTIONS(6153), + [anon_sym_CARET] = ACTIONS(6155), + [anon_sym_AMP] = ACTIONS(6153), + [anon_sym_EQ_EQ] = ACTIONS(6155), + [anon_sym_BANG_EQ] = ACTIONS(6155), + [anon_sym_GT] = ACTIONS(6153), + [anon_sym_GT_EQ] = ACTIONS(6155), + [anon_sym_LT_EQ] = ACTIONS(6153), + [anon_sym_LT] = ACTIONS(6153), + [anon_sym_LT_LT] = ACTIONS(6155), + [anon_sym_GT_GT] = ACTIONS(6155), + [anon_sym_SEMI] = ACTIONS(6155), + [anon_sym___extension__] = ACTIONS(6155), + [anon_sym___attribute__] = ACTIONS(6031), + [anon_sym___attribute] = ACTIONS(6033), + [anon_sym_COLON] = ACTIONS(6155), + [anon_sym_LBRACE] = ACTIONS(6155), + [anon_sym_RBRACE] = ACTIONS(6155), + [anon_sym_LBRACK] = ACTIONS(6155), + [anon_sym_RBRACK] = ACTIONS(6155), + [anon_sym_const] = ACTIONS(6153), + [anon_sym_constexpr] = ACTIONS(6155), + [anon_sym_volatile] = ACTIONS(6155), + [anon_sym_restrict] = ACTIONS(6155), + [anon_sym___restrict__] = ACTIONS(6155), + [anon_sym__Atomic] = ACTIONS(6155), + [anon_sym__Noreturn] = ACTIONS(6155), + [anon_sym_noreturn] = ACTIONS(6155), + [anon_sym__Nonnull] = ACTIONS(6155), + [anon_sym_mutable] = ACTIONS(6155), + [anon_sym_constinit] = ACTIONS(6155), + [anon_sym_consteval] = ACTIONS(6155), + [anon_sym_alignas] = ACTIONS(6155), + [anon_sym__Alignas] = ACTIONS(6155), + [anon_sym_QMARK] = ACTIONS(6155), + [anon_sym_LT_EQ_GT] = ACTIONS(6155), + [anon_sym_or] = ACTIONS(6155), + [anon_sym_and] = ACTIONS(6155), + [anon_sym_bitor] = ACTIONS(6155), + [anon_sym_xor] = ACTIONS(6155), + [anon_sym_bitand] = ACTIONS(6155), + [anon_sym_not_eq] = ACTIONS(6155), + [anon_sym_DASH_DASH] = ACTIONS(6155), + [anon_sym_PLUS_PLUS] = ACTIONS(6155), + [anon_sym_DOT] = ACTIONS(6153), + [anon_sym_DOT_STAR] = ACTIONS(6155), + [anon_sym_DASH_GT] = ACTIONS(6155), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6060), - [anon_sym_decltype] = ACTIONS(6060), - [anon_sym_final] = ACTIONS(6060), - [anon_sym_override] = ACTIONS(6060), - [anon_sym_requires] = ACTIONS(6060), - }, - [2361] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2198), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5942), - [anon_sym_COMMA] = ACTIONS(5942), - [anon_sym_LPAREN2] = ACTIONS(5942), - [anon_sym_DASH] = ACTIONS(5944), - [anon_sym_PLUS] = ACTIONS(5944), - [anon_sym_STAR] = ACTIONS(5942), - [anon_sym_SLASH] = ACTIONS(5944), - [anon_sym_PERCENT] = ACTIONS(5942), - [anon_sym_PIPE_PIPE] = ACTIONS(5942), - [anon_sym_AMP_AMP] = ACTIONS(5942), - [anon_sym_PIPE] = ACTIONS(5944), - [anon_sym_CARET] = ACTIONS(5942), - [anon_sym_AMP] = ACTIONS(5944), - [anon_sym_EQ_EQ] = ACTIONS(5942), - [anon_sym_BANG_EQ] = ACTIONS(5942), - [anon_sym_GT] = ACTIONS(5944), - [anon_sym_GT_EQ] = ACTIONS(5944), - [anon_sym_LT_EQ] = ACTIONS(5944), - [anon_sym_LT] = ACTIONS(5944), - [anon_sym_LT_LT] = ACTIONS(5942), - [anon_sym_GT_GT] = ACTIONS(5944), - [anon_sym___extension__] = ACTIONS(5942), - [anon_sym___attribute__] = ACTIONS(5942), - [anon_sym___attribute] = ACTIONS(5944), - [anon_sym_LBRACE] = ACTIONS(5942), - [anon_sym_signed] = ACTIONS(6356), - [anon_sym_unsigned] = ACTIONS(6356), - [anon_sym_long] = ACTIONS(6356), - [anon_sym_short] = ACTIONS(6356), - [anon_sym_LBRACK] = ACTIONS(5942), - [anon_sym_const] = ACTIONS(5944), - [anon_sym_constexpr] = ACTIONS(5942), - [anon_sym_volatile] = ACTIONS(5942), - [anon_sym_restrict] = ACTIONS(5942), - [anon_sym___restrict__] = ACTIONS(5942), - [anon_sym__Atomic] = ACTIONS(5942), - [anon_sym__Noreturn] = ACTIONS(5942), - [anon_sym_noreturn] = ACTIONS(5942), - [anon_sym__Nonnull] = ACTIONS(5942), - [anon_sym_mutable] = ACTIONS(5942), - [anon_sym_constinit] = ACTIONS(5942), - [anon_sym_consteval] = ACTIONS(5942), - [anon_sym_alignas] = ACTIONS(5942), - [anon_sym__Alignas] = ACTIONS(5942), - [anon_sym_QMARK] = ACTIONS(5942), - [anon_sym_LT_EQ_GT] = ACTIONS(5942), - [anon_sym_or] = ACTIONS(5942), - [anon_sym_and] = ACTIONS(5942), - [anon_sym_bitor] = ACTIONS(5942), - [anon_sym_xor] = ACTIONS(5942), - [anon_sym_bitand] = ACTIONS(5942), - [anon_sym_not_eq] = ACTIONS(5942), - [anon_sym_DASH_DASH] = ACTIONS(5942), - [anon_sym_PLUS_PLUS] = ACTIONS(5942), - [anon_sym_DOT] = ACTIONS(5944), - [anon_sym_DOT_STAR] = ACTIONS(5942), - [anon_sym_DASH_GT] = ACTIONS(5942), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5942), - [anon_sym_decltype] = ACTIONS(5942), - [anon_sym_final] = ACTIONS(5942), - [anon_sym_override] = ACTIONS(5942), - [anon_sym_GT2] = ACTIONS(5942), - [anon_sym_requires] = ACTIONS(5942), - }, - [2362] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2198), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5894), - [anon_sym_COMMA] = ACTIONS(5894), - [anon_sym_LPAREN2] = ACTIONS(5894), - [anon_sym_DASH] = ACTIONS(5896), - [anon_sym_PLUS] = ACTIONS(5896), - [anon_sym_STAR] = ACTIONS(5894), - [anon_sym_SLASH] = ACTIONS(5896), - [anon_sym_PERCENT] = ACTIONS(5894), - [anon_sym_PIPE_PIPE] = ACTIONS(5894), - [anon_sym_AMP_AMP] = ACTIONS(5894), - [anon_sym_PIPE] = ACTIONS(5896), - [anon_sym_CARET] = ACTIONS(5894), - [anon_sym_AMP] = ACTIONS(5896), - [anon_sym_EQ_EQ] = ACTIONS(5894), - [anon_sym_BANG_EQ] = ACTIONS(5894), - [anon_sym_GT] = ACTIONS(5896), - [anon_sym_GT_EQ] = ACTIONS(5896), - [anon_sym_LT_EQ] = ACTIONS(5896), - [anon_sym_LT] = ACTIONS(5896), - [anon_sym_LT_LT] = ACTIONS(5894), - [anon_sym_GT_GT] = ACTIONS(5896), - [anon_sym___extension__] = ACTIONS(5894), - [anon_sym___attribute__] = ACTIONS(5894), - [anon_sym___attribute] = ACTIONS(5896), - [anon_sym_LBRACE] = ACTIONS(5894), - [anon_sym_signed] = ACTIONS(6356), - [anon_sym_unsigned] = ACTIONS(6356), - [anon_sym_long] = ACTIONS(6356), - [anon_sym_short] = ACTIONS(6356), - [anon_sym_LBRACK] = ACTIONS(5894), - [anon_sym_const] = ACTIONS(5896), - [anon_sym_constexpr] = ACTIONS(5894), - [anon_sym_volatile] = ACTIONS(5894), - [anon_sym_restrict] = ACTIONS(5894), - [anon_sym___restrict__] = ACTIONS(5894), - [anon_sym__Atomic] = ACTIONS(5894), - [anon_sym__Noreturn] = ACTIONS(5894), - [anon_sym_noreturn] = ACTIONS(5894), - [anon_sym__Nonnull] = ACTIONS(5894), - [anon_sym_mutable] = ACTIONS(5894), - [anon_sym_constinit] = ACTIONS(5894), - [anon_sym_consteval] = ACTIONS(5894), - [anon_sym_alignas] = ACTIONS(5894), - [anon_sym__Alignas] = ACTIONS(5894), - [anon_sym_QMARK] = ACTIONS(5894), - [anon_sym_LT_EQ_GT] = ACTIONS(5894), - [anon_sym_or] = ACTIONS(5894), - [anon_sym_and] = ACTIONS(5894), - [anon_sym_bitor] = ACTIONS(5894), - [anon_sym_xor] = ACTIONS(5894), - [anon_sym_bitand] = ACTIONS(5894), - [anon_sym_not_eq] = ACTIONS(5894), - [anon_sym_DASH_DASH] = ACTIONS(5894), - [anon_sym_PLUS_PLUS] = ACTIONS(5894), - [anon_sym_DOT] = ACTIONS(5896), - [anon_sym_DOT_STAR] = ACTIONS(5894), - [anon_sym_DASH_GT] = ACTIONS(5894), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5894), - [anon_sym_decltype] = ACTIONS(5894), - [anon_sym_final] = ACTIONS(5894), - [anon_sym_override] = ACTIONS(5894), - [anon_sym_GT2] = ACTIONS(5894), - [anon_sym_requires] = ACTIONS(5894), - }, - [2363] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2357), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5902), - [anon_sym_COMMA] = ACTIONS(5902), - [anon_sym_LPAREN2] = ACTIONS(5902), - [anon_sym_DASH] = ACTIONS(5904), - [anon_sym_PLUS] = ACTIONS(5904), - [anon_sym_STAR] = ACTIONS(5902), - [anon_sym_SLASH] = ACTIONS(5904), - [anon_sym_PERCENT] = ACTIONS(5902), - [anon_sym_PIPE_PIPE] = ACTIONS(5902), - [anon_sym_AMP_AMP] = ACTIONS(5902), - [anon_sym_PIPE] = ACTIONS(5904), - [anon_sym_CARET] = ACTIONS(5902), - [anon_sym_AMP] = ACTIONS(5904), - [anon_sym_EQ_EQ] = ACTIONS(5902), - [anon_sym_BANG_EQ] = ACTIONS(5902), - [anon_sym_GT] = ACTIONS(5904), - [anon_sym_GT_EQ] = ACTIONS(5904), - [anon_sym_LT_EQ] = ACTIONS(5904), - [anon_sym_LT] = ACTIONS(5904), - [anon_sym_LT_LT] = ACTIONS(5902), - [anon_sym_GT_GT] = ACTIONS(5904), - [anon_sym___extension__] = ACTIONS(5902), - [anon_sym___attribute__] = ACTIONS(5902), - [anon_sym___attribute] = ACTIONS(5904), - [anon_sym_LBRACE] = ACTIONS(5902), - [anon_sym_signed] = ACTIONS(6396), - [anon_sym_unsigned] = ACTIONS(6396), - [anon_sym_long] = ACTIONS(6396), - [anon_sym_short] = ACTIONS(6396), - [anon_sym_LBRACK] = ACTIONS(5902), - [anon_sym_const] = ACTIONS(5904), - [anon_sym_constexpr] = ACTIONS(5902), - [anon_sym_volatile] = ACTIONS(5902), - [anon_sym_restrict] = ACTIONS(5902), - [anon_sym___restrict__] = ACTIONS(5902), - [anon_sym__Atomic] = ACTIONS(5902), - [anon_sym__Noreturn] = ACTIONS(5902), - [anon_sym_noreturn] = ACTIONS(5902), - [anon_sym__Nonnull] = ACTIONS(5902), - [anon_sym_mutable] = ACTIONS(5902), - [anon_sym_constinit] = ACTIONS(5902), - [anon_sym_consteval] = ACTIONS(5902), - [anon_sym_alignas] = ACTIONS(5902), - [anon_sym__Alignas] = ACTIONS(5902), - [anon_sym_QMARK] = ACTIONS(5902), - [anon_sym_LT_EQ_GT] = ACTIONS(5902), - [anon_sym_or] = ACTIONS(5902), - [anon_sym_and] = ACTIONS(5902), - [anon_sym_bitor] = ACTIONS(5902), - [anon_sym_xor] = ACTIONS(5902), - [anon_sym_bitand] = ACTIONS(5902), - [anon_sym_not_eq] = ACTIONS(5902), - [anon_sym_DASH_DASH] = ACTIONS(5902), - [anon_sym_PLUS_PLUS] = ACTIONS(5902), - [anon_sym_DOT] = ACTIONS(5904), - [anon_sym_DOT_STAR] = ACTIONS(5902), - [anon_sym_DASH_GT] = ACTIONS(5902), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5902), - [anon_sym_decltype] = ACTIONS(5902), - [anon_sym_final] = ACTIONS(5902), - [anon_sym_override] = ACTIONS(5902), - [anon_sym_GT2] = ACTIONS(5902), - [anon_sym_requires] = ACTIONS(5902), - }, - [2364] = { - [sym_attribute_specifier] = STATE(1843), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6106), - [anon_sym_COMMA] = ACTIONS(6106), - [anon_sym_RPAREN] = ACTIONS(6106), - [anon_sym_LPAREN2] = ACTIONS(6106), - [anon_sym_DASH] = ACTIONS(6104), - [anon_sym_PLUS] = ACTIONS(6104), - [anon_sym_STAR] = ACTIONS(6106), - [anon_sym_SLASH] = ACTIONS(6104), - [anon_sym_PERCENT] = ACTIONS(6106), - [anon_sym_PIPE_PIPE] = ACTIONS(6106), - [anon_sym_AMP_AMP] = ACTIONS(6106), - [anon_sym_PIPE] = ACTIONS(6104), - [anon_sym_CARET] = ACTIONS(6106), - [anon_sym_AMP] = ACTIONS(6104), - [anon_sym_EQ_EQ] = ACTIONS(6106), - [anon_sym_BANG_EQ] = ACTIONS(6106), - [anon_sym_GT] = ACTIONS(6104), - [anon_sym_GT_EQ] = ACTIONS(6106), - [anon_sym_LT_EQ] = ACTIONS(6104), - [anon_sym_LT] = ACTIONS(6104), - [anon_sym_LT_LT] = ACTIONS(6106), - [anon_sym_GT_GT] = ACTIONS(6106), - [anon_sym_SEMI] = ACTIONS(6106), - [anon_sym___extension__] = ACTIONS(6106), - [anon_sym___attribute__] = ACTIONS(6014), - [anon_sym___attribute] = ACTIONS(6016), - [anon_sym_COLON] = ACTIONS(6106), - [anon_sym_LBRACE] = ACTIONS(6106), - [anon_sym_RBRACE] = ACTIONS(6106), - [anon_sym_LBRACK] = ACTIONS(6106), - [anon_sym_RBRACK] = ACTIONS(6106), - [anon_sym_const] = ACTIONS(6104), - [anon_sym_constexpr] = ACTIONS(6106), - [anon_sym_volatile] = ACTIONS(6106), - [anon_sym_restrict] = ACTIONS(6106), - [anon_sym___restrict__] = ACTIONS(6106), - [anon_sym__Atomic] = ACTIONS(6106), - [anon_sym__Noreturn] = ACTIONS(6106), - [anon_sym_noreturn] = ACTIONS(6106), - [anon_sym__Nonnull] = ACTIONS(6106), - [anon_sym_mutable] = ACTIONS(6106), - [anon_sym_constinit] = ACTIONS(6106), - [anon_sym_consteval] = ACTIONS(6106), - [anon_sym_alignas] = ACTIONS(6106), - [anon_sym__Alignas] = ACTIONS(6106), - [anon_sym_QMARK] = ACTIONS(6106), - [anon_sym_LT_EQ_GT] = ACTIONS(6106), - [anon_sym_or] = ACTIONS(6106), - [anon_sym_and] = ACTIONS(6106), - [anon_sym_bitor] = ACTIONS(6106), - [anon_sym_xor] = ACTIONS(6106), - [anon_sym_bitand] = ACTIONS(6106), - [anon_sym_not_eq] = ACTIONS(6106), - [anon_sym_DASH_DASH] = ACTIONS(6106), - [anon_sym_PLUS_PLUS] = ACTIONS(6106), - [anon_sym_DOT] = ACTIONS(6104), - [anon_sym_DOT_STAR] = ACTIONS(6106), - [anon_sym_DASH_GT] = ACTIONS(6106), + [sym_auto] = ACTIONS(6155), + [anon_sym_decltype] = ACTIONS(6155), + [anon_sym_final] = ACTIONS(6155), + [anon_sym_override] = ACTIONS(6155), + [anon_sym_requires] = ACTIONS(6155), + }, + [2374] = { + [sym_attribute_specifier] = STATE(2696), + [sym_field_declaration_list] = STATE(2622), + [sym_virtual_specifier] = STATE(7156), + [sym_base_class_clause] = STATE(7813), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5559), + [anon_sym_COMMA] = ACTIONS(5559), + [anon_sym_LPAREN2] = ACTIONS(5559), + [anon_sym_DASH] = ACTIONS(5557), + [anon_sym_PLUS] = ACTIONS(5557), + [anon_sym_STAR] = ACTIONS(5559), + [anon_sym_SLASH] = ACTIONS(5557), + [anon_sym_PERCENT] = ACTIONS(5559), + [anon_sym_PIPE_PIPE] = ACTIONS(5559), + [anon_sym_AMP_AMP] = ACTIONS(5559), + [anon_sym_PIPE] = ACTIONS(5557), + [anon_sym_CARET] = ACTIONS(5559), + [anon_sym_AMP] = ACTIONS(5557), + [anon_sym_EQ_EQ] = ACTIONS(5559), + [anon_sym_BANG_EQ] = ACTIONS(5559), + [anon_sym_GT] = ACTIONS(5557), + [anon_sym_GT_EQ] = ACTIONS(5557), + [anon_sym_LT_EQ] = ACTIONS(5557), + [anon_sym_LT] = ACTIONS(5557), + [anon_sym_LT_LT] = ACTIONS(5559), + [anon_sym_GT_GT] = ACTIONS(5557), + [anon_sym___extension__] = ACTIONS(5559), + [anon_sym___attribute__] = ACTIONS(6359), + [anon_sym___attribute] = ACTIONS(6361), + [anon_sym_COLON] = ACTIONS(5563), + [anon_sym_LBRACE] = ACTIONS(6363), + [anon_sym_LBRACK] = ACTIONS(5559), + [anon_sym_const] = ACTIONS(5557), + [anon_sym_constexpr] = ACTIONS(5559), + [anon_sym_volatile] = ACTIONS(5559), + [anon_sym_restrict] = ACTIONS(5559), + [anon_sym___restrict__] = ACTIONS(5559), + [anon_sym__Atomic] = ACTIONS(5559), + [anon_sym__Noreturn] = ACTIONS(5559), + [anon_sym_noreturn] = ACTIONS(5559), + [anon_sym__Nonnull] = ACTIONS(5559), + [anon_sym_mutable] = ACTIONS(5559), + [anon_sym_constinit] = ACTIONS(5559), + [anon_sym_consteval] = ACTIONS(5559), + [anon_sym_alignas] = ACTIONS(5559), + [anon_sym__Alignas] = ACTIONS(5559), + [anon_sym_QMARK] = ACTIONS(5559), + [anon_sym_LT_EQ_GT] = ACTIONS(5559), + [anon_sym_or] = ACTIONS(5559), + [anon_sym_and] = ACTIONS(5559), + [anon_sym_bitor] = ACTIONS(5559), + [anon_sym_xor] = ACTIONS(5559), + [anon_sym_bitand] = ACTIONS(5559), + [anon_sym_not_eq] = ACTIONS(5559), + [anon_sym_DASH_DASH] = ACTIONS(5559), + [anon_sym_PLUS_PLUS] = ACTIONS(5559), + [anon_sym_DOT] = ACTIONS(5557), + [anon_sym_DOT_STAR] = ACTIONS(5559), + [anon_sym_DASH_GT] = ACTIONS(5559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5559), + [anon_sym_decltype] = ACTIONS(5559), + [anon_sym_final] = ACTIONS(6037), + [anon_sym_override] = ACTIONS(6037), + [anon_sym_GT2] = ACTIONS(5559), + [anon_sym_requires] = ACTIONS(5559), + }, + [2375] = { + [sym_identifier] = ACTIONS(4993), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4986), + [anon_sym_COMMA] = ACTIONS(4986), + [anon_sym_RPAREN] = ACTIONS(4986), + [aux_sym_preproc_if_token2] = ACTIONS(4986), + [aux_sym_preproc_else_token1] = ACTIONS(4986), + [aux_sym_preproc_elif_token1] = ACTIONS(4993), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4986), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4986), + [anon_sym_LPAREN2] = ACTIONS(4986), + [anon_sym_DASH] = ACTIONS(4993), + [anon_sym_PLUS] = ACTIONS(4993), + [anon_sym_STAR] = ACTIONS(4993), + [anon_sym_SLASH] = ACTIONS(4993), + [anon_sym_PERCENT] = ACTIONS(4993), + [anon_sym_PIPE_PIPE] = ACTIONS(4986), + [anon_sym_AMP_AMP] = ACTIONS(4986), + [anon_sym_PIPE] = ACTIONS(4993), + [anon_sym_CARET] = ACTIONS(4993), + [anon_sym_AMP] = ACTIONS(4993), + [anon_sym_EQ_EQ] = ACTIONS(4986), + [anon_sym_BANG_EQ] = ACTIONS(4986), + [anon_sym_GT] = ACTIONS(4993), + [anon_sym_GT_EQ] = ACTIONS(4986), + [anon_sym_LT_EQ] = ACTIONS(4993), + [anon_sym_LT] = ACTIONS(4993), + [anon_sym_LT_LT] = ACTIONS(4993), + [anon_sym_GT_GT] = ACTIONS(4993), + [anon_sym_SEMI] = ACTIONS(4986), + [anon_sym___attribute__] = ACTIONS(4993), + [anon_sym___attribute] = ACTIONS(4993), + [anon_sym_COLON] = ACTIONS(4993), + [anon_sym_COLON_COLON] = ACTIONS(4991), + [anon_sym_LBRACE] = ACTIONS(4991), + [anon_sym_RBRACE] = ACTIONS(4986), + [anon_sym_LBRACK] = ACTIONS(4986), + [anon_sym_RBRACK] = ACTIONS(4986), + [anon_sym_EQ] = ACTIONS(4993), + [anon_sym_QMARK] = ACTIONS(4986), + [anon_sym_STAR_EQ] = ACTIONS(4986), + [anon_sym_SLASH_EQ] = ACTIONS(4986), + [anon_sym_PERCENT_EQ] = ACTIONS(4986), + [anon_sym_PLUS_EQ] = ACTIONS(4986), + [anon_sym_DASH_EQ] = ACTIONS(4986), + [anon_sym_LT_LT_EQ] = ACTIONS(4986), + [anon_sym_GT_GT_EQ] = ACTIONS(4986), + [anon_sym_AMP_EQ] = ACTIONS(4986), + [anon_sym_CARET_EQ] = ACTIONS(4986), + [anon_sym_PIPE_EQ] = ACTIONS(4986), + [anon_sym_and_eq] = ACTIONS(4993), + [anon_sym_or_eq] = ACTIONS(4993), + [anon_sym_xor_eq] = ACTIONS(4993), + [anon_sym_LT_EQ_GT] = ACTIONS(4986), + [anon_sym_or] = ACTIONS(4993), + [anon_sym_and] = ACTIONS(4993), + [anon_sym_bitor] = ACTIONS(4993), + [anon_sym_xor] = ACTIONS(4993), + [anon_sym_bitand] = ACTIONS(4993), + [anon_sym_not_eq] = ACTIONS(4993), + [anon_sym_DASH_DASH] = ACTIONS(4986), + [anon_sym_PLUS_PLUS] = ACTIONS(4986), + [anon_sym_DOT] = ACTIONS(4993), + [anon_sym_DOT_STAR] = ACTIONS(4986), + [anon_sym_DASH_GT] = ACTIONS(4986), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6106), - [anon_sym_decltype] = ACTIONS(6106), - [anon_sym_final] = ACTIONS(6106), - [anon_sym_override] = ACTIONS(6106), - [anon_sym_requires] = ACTIONS(6106), }, -}; - -static const uint16_t ts_small_parse_table[] = { - [0] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6398), 28, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(6400), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - 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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [71] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5478), 27, - 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_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - anon_sym_DASH_GT, - sym_identifier, - sym_literal_suffix, - ACTIONS(5480), 36, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - anon_sym_DASH_GT_STAR, - [142] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6402), 29, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(6404), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - 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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [213] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5577), 27, - 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_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - anon_sym_DASH_GT, - sym_identifier, - sym_literal_suffix, - ACTIONS(5579), 36, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - anon_sym_DASH_GT_STAR, - [284] = 6, - ACTIONS(3), 1, - sym_comment, - STATE(2236), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(6214), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(6216), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(5914), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - ACTIONS(5912), 27, - 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_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_literal_suffix, - [361] = 7, + [2376] = { + [sym_identifier] = ACTIONS(5601), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5603), + [anon_sym_COMMA] = ACTIONS(5603), + [anon_sym_LPAREN2] = ACTIONS(5603), + [anon_sym_DASH] = ACTIONS(5601), + [anon_sym_PLUS] = ACTIONS(5601), + [anon_sym_STAR] = ACTIONS(5601), + [anon_sym_SLASH] = ACTIONS(5601), + [anon_sym_PERCENT] = ACTIONS(5601), + [anon_sym_PIPE_PIPE] = ACTIONS(5603), + [anon_sym_AMP_AMP] = ACTIONS(5603), + [anon_sym_PIPE] = ACTIONS(5601), + [anon_sym_CARET] = ACTIONS(5601), + [anon_sym_AMP] = ACTIONS(5601), + [anon_sym_EQ_EQ] = ACTIONS(5603), + [anon_sym_BANG_EQ] = ACTIONS(5603), + [anon_sym_GT] = ACTIONS(5601), + [anon_sym_GT_EQ] = ACTIONS(5603), + [anon_sym_LT_EQ] = ACTIONS(5601), + [anon_sym_LT] = ACTIONS(5601), + [anon_sym_LT_LT] = ACTIONS(5601), + [anon_sym_GT_GT] = ACTIONS(5601), + [anon_sym_SEMI] = ACTIONS(5603), + [anon_sym___attribute__] = ACTIONS(5601), + [anon_sym___attribute] = ACTIONS(5601), + [anon_sym_LBRACK] = ACTIONS(5603), + [anon_sym_EQ] = ACTIONS(5601), + [anon_sym_QMARK] = ACTIONS(5603), + [anon_sym_STAR_EQ] = ACTIONS(5603), + [anon_sym_SLASH_EQ] = ACTIONS(5603), + [anon_sym_PERCENT_EQ] = ACTIONS(5603), + [anon_sym_PLUS_EQ] = ACTIONS(5603), + [anon_sym_DASH_EQ] = ACTIONS(5603), + [anon_sym_LT_LT_EQ] = ACTIONS(5603), + [anon_sym_GT_GT_EQ] = ACTIONS(5603), + [anon_sym_AMP_EQ] = ACTIONS(5603), + [anon_sym_CARET_EQ] = ACTIONS(5603), + [anon_sym_PIPE_EQ] = ACTIONS(5603), + [anon_sym_and_eq] = ACTIONS(5601), + [anon_sym_or_eq] = ACTIONS(5601), + [anon_sym_xor_eq] = ACTIONS(5601), + [anon_sym_LT_EQ_GT] = ACTIONS(5603), + [anon_sym_or] = ACTIONS(5601), + [anon_sym_and] = ACTIONS(5601), + [anon_sym_bitor] = ACTIONS(5601), + [anon_sym_xor] = ACTIONS(5601), + [anon_sym_bitand] = ACTIONS(5601), + [anon_sym_not_eq] = ACTIONS(5601), + [anon_sym_DASH_DASH] = ACTIONS(5603), + [anon_sym_PLUS_PLUS] = ACTIONS(5603), + [anon_sym_DOT] = ACTIONS(5601), + [anon_sym_DOT_STAR] = ACTIONS(5603), + [anon_sym_DASH_GT] = ACTIONS(5603), + [anon_sym_L_DQUOTE] = ACTIONS(5603), + [anon_sym_u_DQUOTE] = ACTIONS(5603), + [anon_sym_U_DQUOTE] = ACTIONS(5603), + [anon_sym_u8_DQUOTE] = ACTIONS(5603), + [anon_sym_DQUOTE] = ACTIONS(5603), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5603), + [anon_sym_LR_DQUOTE] = ACTIONS(5603), + [anon_sym_uR_DQUOTE] = ACTIONS(5603), + [anon_sym_UR_DQUOTE] = ACTIONS(5603), + [anon_sym_u8R_DQUOTE] = ACTIONS(5603), + [sym_literal_suffix] = ACTIONS(5601), + }, + [2377] = { + [sym_identifier] = ACTIONS(5641), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5643), + [anon_sym_COMMA] = ACTIONS(5643), + [anon_sym_LPAREN2] = ACTIONS(5643), + [anon_sym_DASH] = ACTIONS(5641), + [anon_sym_PLUS] = ACTIONS(5641), + [anon_sym_STAR] = ACTIONS(5641), + [anon_sym_SLASH] = ACTIONS(5641), + [anon_sym_PERCENT] = ACTIONS(5641), + [anon_sym_PIPE_PIPE] = ACTIONS(5643), + [anon_sym_AMP_AMP] = ACTIONS(5643), + [anon_sym_PIPE] = ACTIONS(5641), + [anon_sym_CARET] = ACTIONS(5641), + [anon_sym_AMP] = ACTIONS(5641), + [anon_sym_EQ_EQ] = ACTIONS(5643), + [anon_sym_BANG_EQ] = ACTIONS(5643), + [anon_sym_GT] = ACTIONS(5641), + [anon_sym_GT_EQ] = ACTIONS(5643), + [anon_sym_LT_EQ] = ACTIONS(5641), + [anon_sym_LT] = ACTIONS(5641), + [anon_sym_LT_LT] = ACTIONS(5641), + [anon_sym_GT_GT] = ACTIONS(5641), + [anon_sym_SEMI] = ACTIONS(5643), + [anon_sym___attribute__] = ACTIONS(5641), + [anon_sym___attribute] = ACTIONS(5641), + [anon_sym_LBRACK] = ACTIONS(5643), + [anon_sym_EQ] = ACTIONS(5641), + [anon_sym_QMARK] = ACTIONS(5643), + [anon_sym_STAR_EQ] = ACTIONS(5643), + [anon_sym_SLASH_EQ] = ACTIONS(5643), + [anon_sym_PERCENT_EQ] = ACTIONS(5643), + [anon_sym_PLUS_EQ] = ACTIONS(5643), + [anon_sym_DASH_EQ] = ACTIONS(5643), + [anon_sym_LT_LT_EQ] = ACTIONS(5643), + [anon_sym_GT_GT_EQ] = ACTIONS(5643), + [anon_sym_AMP_EQ] = ACTIONS(5643), + [anon_sym_CARET_EQ] = ACTIONS(5643), + [anon_sym_PIPE_EQ] = ACTIONS(5643), + [anon_sym_and_eq] = ACTIONS(5641), + [anon_sym_or_eq] = ACTIONS(5641), + [anon_sym_xor_eq] = ACTIONS(5641), + [anon_sym_LT_EQ_GT] = ACTIONS(5643), + [anon_sym_or] = ACTIONS(5641), + [anon_sym_and] = ACTIONS(5641), + [anon_sym_bitor] = ACTIONS(5641), + [anon_sym_xor] = ACTIONS(5641), + [anon_sym_bitand] = ACTIONS(5641), + [anon_sym_not_eq] = ACTIONS(5641), + [anon_sym_DASH_DASH] = ACTIONS(5643), + [anon_sym_PLUS_PLUS] = ACTIONS(5643), + [anon_sym_DOT] = ACTIONS(5641), + [anon_sym_DOT_STAR] = ACTIONS(5643), + [anon_sym_DASH_GT] = ACTIONS(5643), + [anon_sym_L_DQUOTE] = ACTIONS(5643), + [anon_sym_u_DQUOTE] = ACTIONS(5643), + [anon_sym_U_DQUOTE] = ACTIONS(5643), + [anon_sym_u8_DQUOTE] = ACTIONS(5643), + [anon_sym_DQUOTE] = ACTIONS(5643), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5643), + [anon_sym_LR_DQUOTE] = ACTIONS(5643), + [anon_sym_uR_DQUOTE] = ACTIONS(5643), + [anon_sym_UR_DQUOTE] = ACTIONS(5643), + [anon_sym_u8R_DQUOTE] = ACTIONS(5643), + [sym_literal_suffix] = ACTIONS(5641), + }, + [2378] = { + [sym_identifier] = ACTIONS(5470), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5472), + [anon_sym_COMMA] = ACTIONS(5472), + [anon_sym_LPAREN2] = ACTIONS(5472), + [anon_sym_DASH] = ACTIONS(5470), + [anon_sym_PLUS] = ACTIONS(5470), + [anon_sym_STAR] = ACTIONS(5470), + [anon_sym_SLASH] = ACTIONS(5470), + [anon_sym_PERCENT] = ACTIONS(5470), + [anon_sym_PIPE_PIPE] = ACTIONS(5472), + [anon_sym_AMP_AMP] = ACTIONS(5472), + [anon_sym_PIPE] = ACTIONS(5470), + [anon_sym_CARET] = ACTIONS(5470), + [anon_sym_AMP] = ACTIONS(5470), + [anon_sym_EQ_EQ] = ACTIONS(5472), + [anon_sym_BANG_EQ] = ACTIONS(5472), + [anon_sym_GT] = ACTIONS(5470), + [anon_sym_GT_EQ] = ACTIONS(5472), + [anon_sym_LT_EQ] = ACTIONS(5470), + [anon_sym_LT] = ACTIONS(5470), + [anon_sym_LT_LT] = ACTIONS(5470), + [anon_sym_GT_GT] = ACTIONS(5470), + [anon_sym_SEMI] = ACTIONS(5472), + [anon_sym___attribute__] = ACTIONS(5470), + [anon_sym___attribute] = ACTIONS(5470), + [anon_sym_LBRACK] = ACTIONS(5472), + [anon_sym_EQ] = ACTIONS(5470), + [anon_sym_QMARK] = ACTIONS(5472), + [anon_sym_STAR_EQ] = ACTIONS(5472), + [anon_sym_SLASH_EQ] = ACTIONS(5472), + [anon_sym_PERCENT_EQ] = ACTIONS(5472), + [anon_sym_PLUS_EQ] = ACTIONS(5472), + [anon_sym_DASH_EQ] = ACTIONS(5472), + [anon_sym_LT_LT_EQ] = ACTIONS(5472), + [anon_sym_GT_GT_EQ] = ACTIONS(5472), + [anon_sym_AMP_EQ] = ACTIONS(5472), + [anon_sym_CARET_EQ] = ACTIONS(5472), + [anon_sym_PIPE_EQ] = ACTIONS(5472), + [anon_sym_and_eq] = ACTIONS(5470), + [anon_sym_or_eq] = ACTIONS(5470), + [anon_sym_xor_eq] = ACTIONS(5470), + [anon_sym_LT_EQ_GT] = ACTIONS(5472), + [anon_sym_or] = ACTIONS(5470), + [anon_sym_and] = ACTIONS(5470), + [anon_sym_bitor] = ACTIONS(5470), + [anon_sym_xor] = ACTIONS(5470), + [anon_sym_bitand] = ACTIONS(5470), + [anon_sym_not_eq] = ACTIONS(5470), + [anon_sym_DASH_DASH] = ACTIONS(5472), + [anon_sym_PLUS_PLUS] = ACTIONS(5472), + [anon_sym_DOT] = ACTIONS(5470), + [anon_sym_DOT_STAR] = ACTIONS(5472), + [anon_sym_DASH_GT] = ACTIONS(5472), + [anon_sym_L_DQUOTE] = ACTIONS(5472), + [anon_sym_u_DQUOTE] = ACTIONS(5472), + [anon_sym_U_DQUOTE] = ACTIONS(5472), + [anon_sym_u8_DQUOTE] = ACTIONS(5472), + [anon_sym_DQUOTE] = ACTIONS(5472), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5472), + [anon_sym_LR_DQUOTE] = ACTIONS(5472), + [anon_sym_uR_DQUOTE] = ACTIONS(5472), + [anon_sym_UR_DQUOTE] = ACTIONS(5472), + [anon_sym_u8R_DQUOTE] = ACTIONS(5472), + [sym_literal_suffix] = ACTIONS(5470), + }, + [2379] = { + [sym_identifier] = ACTIONS(5477), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5479), + [anon_sym_COMMA] = ACTIONS(5479), + [anon_sym_LPAREN2] = ACTIONS(5479), + [anon_sym_DASH] = ACTIONS(5477), + [anon_sym_PLUS] = ACTIONS(5477), + [anon_sym_STAR] = ACTIONS(5477), + [anon_sym_SLASH] = ACTIONS(5477), + [anon_sym_PERCENT] = ACTIONS(5477), + [anon_sym_PIPE_PIPE] = ACTIONS(5479), + [anon_sym_AMP_AMP] = ACTIONS(5479), + [anon_sym_PIPE] = ACTIONS(5477), + [anon_sym_CARET] = ACTIONS(5477), + [anon_sym_AMP] = ACTIONS(5477), + [anon_sym_EQ_EQ] = ACTIONS(5479), + [anon_sym_BANG_EQ] = ACTIONS(5479), + [anon_sym_GT] = ACTIONS(5477), + [anon_sym_GT_EQ] = ACTIONS(5479), + [anon_sym_LT_EQ] = ACTIONS(5477), + [anon_sym_LT] = ACTIONS(5477), + [anon_sym_LT_LT] = ACTIONS(5477), + [anon_sym_GT_GT] = ACTIONS(5477), + [anon_sym_SEMI] = ACTIONS(5479), + [anon_sym___attribute__] = ACTIONS(5477), + [anon_sym___attribute] = ACTIONS(5477), + [anon_sym_LBRACK] = ACTIONS(5479), + [anon_sym_EQ] = ACTIONS(5477), + [anon_sym_QMARK] = ACTIONS(5479), + [anon_sym_STAR_EQ] = ACTIONS(5479), + [anon_sym_SLASH_EQ] = ACTIONS(5479), + [anon_sym_PERCENT_EQ] = ACTIONS(5479), + [anon_sym_PLUS_EQ] = ACTIONS(5479), + [anon_sym_DASH_EQ] = ACTIONS(5479), + [anon_sym_LT_LT_EQ] = ACTIONS(5479), + [anon_sym_GT_GT_EQ] = ACTIONS(5479), + [anon_sym_AMP_EQ] = ACTIONS(5479), + [anon_sym_CARET_EQ] = ACTIONS(5479), + [anon_sym_PIPE_EQ] = ACTIONS(5479), + [anon_sym_and_eq] = ACTIONS(5477), + [anon_sym_or_eq] = ACTIONS(5477), + [anon_sym_xor_eq] = ACTIONS(5477), + [anon_sym_LT_EQ_GT] = ACTIONS(5479), + [anon_sym_or] = ACTIONS(5477), + [anon_sym_and] = ACTIONS(5477), + [anon_sym_bitor] = ACTIONS(5477), + [anon_sym_xor] = ACTIONS(5477), + [anon_sym_bitand] = ACTIONS(5477), + [anon_sym_not_eq] = ACTIONS(5477), + [anon_sym_DASH_DASH] = ACTIONS(5479), + [anon_sym_PLUS_PLUS] = ACTIONS(5479), + [anon_sym_DOT] = ACTIONS(5477), + [anon_sym_DOT_STAR] = ACTIONS(5479), + [anon_sym_DASH_GT] = ACTIONS(5479), + [anon_sym_L_DQUOTE] = ACTIONS(5479), + [anon_sym_u_DQUOTE] = ACTIONS(5479), + [anon_sym_U_DQUOTE] = ACTIONS(5479), + [anon_sym_u8_DQUOTE] = ACTIONS(5479), + [anon_sym_DQUOTE] = ACTIONS(5479), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5479), + [anon_sym_LR_DQUOTE] = ACTIONS(5479), + [anon_sym_uR_DQUOTE] = ACTIONS(5479), + [anon_sym_UR_DQUOTE] = ACTIONS(5479), + [anon_sym_u8R_DQUOTE] = ACTIONS(5479), + [sym_literal_suffix] = ACTIONS(5477), + }, + [2380] = { + [sym_string_literal] = STATE(2234), + [sym_raw_string_literal] = STATE(2234), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5917), + [anon_sym_COMMA] = ACTIONS(5917), + [anon_sym_RPAREN] = ACTIONS(5917), + [anon_sym_LPAREN2] = ACTIONS(5917), + [anon_sym_DASH] = ACTIONS(5915), + [anon_sym_PLUS] = ACTIONS(5915), + [anon_sym_STAR] = ACTIONS(5915), + [anon_sym_SLASH] = ACTIONS(5915), + [anon_sym_PERCENT] = ACTIONS(5915), + [anon_sym_PIPE_PIPE] = ACTIONS(5917), + [anon_sym_AMP_AMP] = ACTIONS(5917), + [anon_sym_PIPE] = ACTIONS(5915), + [anon_sym_CARET] = ACTIONS(5915), + [anon_sym_AMP] = ACTIONS(5915), + [anon_sym_EQ_EQ] = ACTIONS(5917), + [anon_sym_BANG_EQ] = ACTIONS(5917), + [anon_sym_GT] = ACTIONS(5915), + [anon_sym_GT_EQ] = ACTIONS(5917), + [anon_sym_LT_EQ] = ACTIONS(5915), + [anon_sym_LT] = ACTIONS(5915), + [anon_sym_LT_LT] = ACTIONS(5915), + [anon_sym_GT_GT] = ACTIONS(5915), + [anon_sym_LBRACK] = ACTIONS(5917), + [anon_sym_EQ] = ACTIONS(5915), + [anon_sym_QMARK] = ACTIONS(5917), + [anon_sym_STAR_EQ] = ACTIONS(5917), + [anon_sym_SLASH_EQ] = ACTIONS(5917), + [anon_sym_PERCENT_EQ] = ACTIONS(5917), + [anon_sym_PLUS_EQ] = ACTIONS(5917), + [anon_sym_DASH_EQ] = ACTIONS(5917), + [anon_sym_LT_LT_EQ] = ACTIONS(5917), + [anon_sym_GT_GT_EQ] = ACTIONS(5917), + [anon_sym_AMP_EQ] = ACTIONS(5917), + [anon_sym_CARET_EQ] = ACTIONS(5917), + [anon_sym_PIPE_EQ] = ACTIONS(5917), + [anon_sym_and_eq] = ACTIONS(5915), + [anon_sym_or_eq] = ACTIONS(5915), + [anon_sym_xor_eq] = ACTIONS(5915), + [anon_sym_LT_EQ_GT] = ACTIONS(5917), + [anon_sym_or] = ACTIONS(5915), + [anon_sym_and] = ACTIONS(5915), + [anon_sym_bitor] = ACTIONS(5915), + [anon_sym_xor] = ACTIONS(5915), + [anon_sym_bitand] = ACTIONS(5915), + [anon_sym_not_eq] = ACTIONS(5915), + [anon_sym_DASH_DASH] = ACTIONS(5917), + [anon_sym_PLUS_PLUS] = ACTIONS(5917), + [anon_sym_DOT] = ACTIONS(5915), + [anon_sym_DOT_STAR] = ACTIONS(5917), + [anon_sym_DASH_GT] = ACTIONS(5915), + [anon_sym_L_DQUOTE] = ACTIONS(5048), + [anon_sym_u_DQUOTE] = ACTIONS(5048), + [anon_sym_U_DQUOTE] = ACTIONS(5048), + [anon_sym_u8_DQUOTE] = ACTIONS(5048), + [anon_sym_DQUOTE] = ACTIONS(5048), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5050), + [anon_sym_LR_DQUOTE] = ACTIONS(5050), + [anon_sym_uR_DQUOTE] = ACTIONS(5050), + [anon_sym_UR_DQUOTE] = ACTIONS(5050), + [anon_sym_u8R_DQUOTE] = ACTIONS(5050), + [anon_sym_DASH_GT_STAR] = ACTIONS(5917), + [sym_literal_suffix] = ACTIONS(5915), + }, + [2381] = { + [sym_attribute_specifier] = STATE(1878), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6159), + [anon_sym_COMMA] = ACTIONS(6159), + [anon_sym_RPAREN] = ACTIONS(6159), + [anon_sym_LPAREN2] = ACTIONS(6159), + [anon_sym_DASH] = ACTIONS(6157), + [anon_sym_PLUS] = ACTIONS(6157), + [anon_sym_STAR] = ACTIONS(6159), + [anon_sym_SLASH] = ACTIONS(6157), + [anon_sym_PERCENT] = ACTIONS(6159), + [anon_sym_PIPE_PIPE] = ACTIONS(6159), + [anon_sym_AMP_AMP] = ACTIONS(6159), + [anon_sym_PIPE] = ACTIONS(6157), + [anon_sym_CARET] = ACTIONS(6159), + [anon_sym_AMP] = ACTIONS(6157), + [anon_sym_EQ_EQ] = ACTIONS(6159), + [anon_sym_BANG_EQ] = ACTIONS(6159), + [anon_sym_GT] = ACTIONS(6157), + [anon_sym_GT_EQ] = ACTIONS(6159), + [anon_sym_LT_EQ] = ACTIONS(6157), + [anon_sym_LT] = ACTIONS(6157), + [anon_sym_LT_LT] = ACTIONS(6159), + [anon_sym_GT_GT] = ACTIONS(6159), + [anon_sym_SEMI] = ACTIONS(6159), + [anon_sym___extension__] = ACTIONS(6159), + [anon_sym___attribute__] = ACTIONS(6031), + [anon_sym___attribute] = ACTIONS(6033), + [anon_sym_COLON] = ACTIONS(6159), + [anon_sym_LBRACE] = ACTIONS(6159), + [anon_sym_RBRACE] = ACTIONS(6159), + [anon_sym_LBRACK] = ACTIONS(6159), + [anon_sym_RBRACK] = ACTIONS(6159), + [anon_sym_const] = ACTIONS(6157), + [anon_sym_constexpr] = ACTIONS(6159), + [anon_sym_volatile] = ACTIONS(6159), + [anon_sym_restrict] = ACTIONS(6159), + [anon_sym___restrict__] = ACTIONS(6159), + [anon_sym__Atomic] = ACTIONS(6159), + [anon_sym__Noreturn] = ACTIONS(6159), + [anon_sym_noreturn] = ACTIONS(6159), + [anon_sym__Nonnull] = ACTIONS(6159), + [anon_sym_mutable] = ACTIONS(6159), + [anon_sym_constinit] = ACTIONS(6159), + [anon_sym_consteval] = ACTIONS(6159), + [anon_sym_alignas] = ACTIONS(6159), + [anon_sym__Alignas] = ACTIONS(6159), + [anon_sym_QMARK] = ACTIONS(6159), + [anon_sym_LT_EQ_GT] = ACTIONS(6159), + [anon_sym_or] = ACTIONS(6159), + [anon_sym_and] = ACTIONS(6159), + [anon_sym_bitor] = ACTIONS(6159), + [anon_sym_xor] = ACTIONS(6159), + [anon_sym_bitand] = ACTIONS(6159), + [anon_sym_not_eq] = ACTIONS(6159), + [anon_sym_DASH_DASH] = ACTIONS(6159), + [anon_sym_PLUS_PLUS] = ACTIONS(6159), + [anon_sym_DOT] = ACTIONS(6157), + [anon_sym_DOT_STAR] = ACTIONS(6159), + [anon_sym_DASH_GT] = ACTIONS(6159), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6159), + [anon_sym_decltype] = ACTIONS(6159), + [anon_sym_final] = ACTIONS(6159), + [anon_sym_override] = ACTIONS(6159), + [anon_sym_requires] = ACTIONS(6159), + }, + [2382] = { + [sym_attribute_specifier] = STATE(1883), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6102), + [anon_sym_COMMA] = ACTIONS(6102), + [anon_sym_RPAREN] = ACTIONS(6102), + [anon_sym_LPAREN2] = ACTIONS(6102), + [anon_sym_DASH] = ACTIONS(6100), + [anon_sym_PLUS] = ACTIONS(6100), + [anon_sym_STAR] = ACTIONS(6102), + [anon_sym_SLASH] = ACTIONS(6100), + [anon_sym_PERCENT] = ACTIONS(6102), + [anon_sym_PIPE_PIPE] = ACTIONS(6102), + [anon_sym_AMP_AMP] = ACTIONS(6102), + [anon_sym_PIPE] = ACTIONS(6100), + [anon_sym_CARET] = ACTIONS(6102), + [anon_sym_AMP] = ACTIONS(6100), + [anon_sym_EQ_EQ] = ACTIONS(6102), + [anon_sym_BANG_EQ] = ACTIONS(6102), + [anon_sym_GT] = ACTIONS(6100), + [anon_sym_GT_EQ] = ACTIONS(6102), + [anon_sym_LT_EQ] = ACTIONS(6100), + [anon_sym_LT] = ACTIONS(6100), + [anon_sym_LT_LT] = ACTIONS(6102), + [anon_sym_GT_GT] = ACTIONS(6102), + [anon_sym_SEMI] = ACTIONS(6102), + [anon_sym___extension__] = ACTIONS(6102), + [anon_sym___attribute__] = ACTIONS(6031), + [anon_sym___attribute] = ACTIONS(6033), + [anon_sym_COLON] = ACTIONS(6102), + [anon_sym_LBRACE] = ACTIONS(6102), + [anon_sym_RBRACE] = ACTIONS(6102), + [anon_sym_LBRACK] = ACTIONS(6102), + [anon_sym_RBRACK] = ACTIONS(6102), + [anon_sym_const] = ACTIONS(6100), + [anon_sym_constexpr] = ACTIONS(6102), + [anon_sym_volatile] = ACTIONS(6102), + [anon_sym_restrict] = ACTIONS(6102), + [anon_sym___restrict__] = ACTIONS(6102), + [anon_sym__Atomic] = ACTIONS(6102), + [anon_sym__Noreturn] = ACTIONS(6102), + [anon_sym_noreturn] = ACTIONS(6102), + [anon_sym__Nonnull] = ACTIONS(6102), + [anon_sym_mutable] = ACTIONS(6102), + [anon_sym_constinit] = ACTIONS(6102), + [anon_sym_consteval] = ACTIONS(6102), + [anon_sym_alignas] = ACTIONS(6102), + [anon_sym__Alignas] = ACTIONS(6102), + [anon_sym_QMARK] = ACTIONS(6102), + [anon_sym_LT_EQ_GT] = ACTIONS(6102), + [anon_sym_or] = ACTIONS(6102), + [anon_sym_and] = ACTIONS(6102), + [anon_sym_bitor] = ACTIONS(6102), + [anon_sym_xor] = ACTIONS(6102), + [anon_sym_bitand] = ACTIONS(6102), + [anon_sym_not_eq] = ACTIONS(6102), + [anon_sym_DASH_DASH] = ACTIONS(6102), + [anon_sym_PLUS_PLUS] = ACTIONS(6102), + [anon_sym_DOT] = ACTIONS(6100), + [anon_sym_DOT_STAR] = ACTIONS(6102), + [anon_sym_DASH_GT] = ACTIONS(6102), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6102), + [anon_sym_decltype] = ACTIONS(6102), + [anon_sym_final] = ACTIONS(6102), + [anon_sym_override] = ACTIONS(6102), + [anon_sym_requires] = ACTIONS(6102), + }, + [2383] = { + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_unaligned_ptr_modifier] = STATE(4069), + [sym_ms_pointer_modifier] = STATE(2384), + [sym__declarator] = STATE(6623), + [sym__abstract_declarator] = STATE(6792), + [sym_parenthesized_declarator] = STATE(6145), + [sym_abstract_parenthesized_declarator] = STATE(6099), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_abstract_pointer_declarator] = STATE(6099), + [sym_function_declarator] = STATE(6145), + [sym_abstract_function_declarator] = STATE(6099), + [sym_array_declarator] = STATE(6145), + [sym_abstract_array_declarator] = STATE(6099), + [sym_type_qualifier] = STATE(2892), + [sym_alignas_qualifier] = STATE(4325), + [sym_parameter_list] = STATE(3113), + [sym_decltype] = STATE(8569), + [sym_reference_declarator] = STATE(6145), + [sym_abstract_reference_declarator] = STATE(6099), + [sym_structured_binding_declarator] = STATE(6145), + [sym__function_declarator_seq] = STATE(6109), + [sym_template_type] = STATE(8569), + [sym_template_function] = STATE(6145), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5923), + [sym_qualified_identifier] = STATE(6145), + [sym_operator_name] = STATE(6145), + [aux_sym__type_definition_type_repeat1] = STATE(2892), + [aux_sym_pointer_declarator_repeat1] = STATE(2384), + [sym_identifier] = ACTIONS(5481), + [anon_sym_RPAREN] = ACTIONS(5863), + [anon_sym_LPAREN2] = ACTIONS(4310), + [anon_sym_TILDE] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(4312), + [anon_sym_AMP_AMP] = ACTIONS(4314), + [anon_sym_AMP] = ACTIONS(4316), + [anon_sym___extension__] = ACTIONS(3339), + [anon_sym_COLON_COLON] = ACTIONS(6365), + [anon_sym___based] = ACTIONS(53), + [sym_ms_restrict_modifier] = ACTIONS(3335), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(3335), + [sym_ms_signed_ptr_modifier] = ACTIONS(3335), + [anon_sym__unaligned] = ACTIONS(3337), + [anon_sym___unaligned] = ACTIONS(3337), + [anon_sym_LBRACK] = ACTIONS(5875), + [anon_sym_const] = ACTIONS(3339), + [anon_sym_constexpr] = ACTIONS(3339), + [anon_sym_volatile] = ACTIONS(3339), + [anon_sym_restrict] = ACTIONS(3339), + [anon_sym___restrict__] = ACTIONS(3339), + [anon_sym__Atomic] = ACTIONS(3339), + [anon_sym__Noreturn] = ACTIONS(3339), + [anon_sym_noreturn] = ACTIONS(3339), + [anon_sym__Nonnull] = ACTIONS(3339), + [anon_sym_mutable] = ACTIONS(3339), + [anon_sym_constinit] = ACTIONS(3339), + [anon_sym_consteval] = ACTIONS(3339), + [anon_sym_alignas] = ACTIONS(3341), + [anon_sym__Alignas] = ACTIONS(3341), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_operator] = ACTIONS(1850), + }, + [2384] = { + [sym_ms_based_modifier] = STATE(8864), + [sym_ms_unaligned_ptr_modifier] = STATE(4069), + [sym_ms_pointer_modifier] = STATE(3962), + [sym__declarator] = STATE(6552), + [sym__abstract_declarator] = STATE(6754), + [sym_parenthesized_declarator] = STATE(6145), + [sym_abstract_parenthesized_declarator] = STATE(6099), + [sym_attributed_declarator] = STATE(6145), + [sym_pointer_declarator] = STATE(6145), + [sym_abstract_pointer_declarator] = STATE(6099), + [sym_function_declarator] = STATE(6145), + [sym_abstract_function_declarator] = STATE(6099), + [sym_array_declarator] = STATE(6145), + [sym_abstract_array_declarator] = STATE(6099), + [sym_type_qualifier] = STATE(2896), + [sym_alignas_qualifier] = STATE(4325), + [sym_parameter_list] = STATE(3113), + [sym_decltype] = STATE(8569), + [sym_reference_declarator] = STATE(6145), + [sym_abstract_reference_declarator] = STATE(6099), + [sym_structured_binding_declarator] = STATE(6145), + [sym__function_declarator_seq] = STATE(6109), + [sym_template_type] = STATE(8569), + [sym_template_function] = STATE(6145), + [sym_destructor_name] = STATE(6145), + [sym_dependent_type_identifier] = STATE(8569), + [sym__scope_resolution] = STATE(5923), + [sym_qualified_identifier] = STATE(6145), + [sym_operator_name] = STATE(6145), + [aux_sym__type_definition_type_repeat1] = STATE(2896), + [aux_sym_pointer_declarator_repeat1] = STATE(3962), + [sym_identifier] = ACTIONS(5481), + [anon_sym_RPAREN] = ACTIONS(5877), + [anon_sym_LPAREN2] = ACTIONS(4310), + [anon_sym_TILDE] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(4312), + [anon_sym_AMP_AMP] = ACTIONS(4314), + [anon_sym_AMP] = ACTIONS(4316), + [anon_sym___extension__] = ACTIONS(3339), + [anon_sym_COLON_COLON] = ACTIONS(6365), + [anon_sym___based] = ACTIONS(53), + [sym_ms_restrict_modifier] = ACTIONS(3335), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(3335), + [sym_ms_signed_ptr_modifier] = ACTIONS(3335), + [anon_sym__unaligned] = ACTIONS(3337), + [anon_sym___unaligned] = ACTIONS(3337), + [anon_sym_LBRACK] = ACTIONS(5875), + [anon_sym_const] = ACTIONS(3339), + [anon_sym_constexpr] = ACTIONS(3339), + [anon_sym_volatile] = ACTIONS(3339), + [anon_sym_restrict] = ACTIONS(3339), + [anon_sym___restrict__] = ACTIONS(3339), + [anon_sym__Atomic] = ACTIONS(3339), + [anon_sym__Noreturn] = ACTIONS(3339), + [anon_sym_noreturn] = ACTIONS(3339), + [anon_sym__Nonnull] = ACTIONS(3339), + [anon_sym_mutable] = ACTIONS(3339), + [anon_sym_constinit] = ACTIONS(3339), + [anon_sym_consteval] = ACTIONS(3339), + [anon_sym_alignas] = ACTIONS(3341), + [anon_sym__Alignas] = ACTIONS(3341), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_operator] = ACTIONS(1850), + }, + [2385] = { + [sym_type_qualifier] = STATE(2390), + [sym_alignas_qualifier] = STATE(1680), + [aux_sym__type_definition_type_repeat1] = STATE(2390), + [aux_sym_sized_type_specifier_repeat1] = STATE(2595), + [sym_identifier] = ACTIONS(6367), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5094), + [anon_sym_COMMA] = ACTIONS(5094), + [anon_sym_RPAREN] = ACTIONS(5094), + [anon_sym_LPAREN2] = ACTIONS(5094), + [anon_sym_TILDE] = ACTIONS(5094), + [anon_sym_STAR] = ACTIONS(5094), + [anon_sym_AMP_AMP] = ACTIONS(5094), + [anon_sym_AMP] = ACTIONS(5096), + [anon_sym_SEMI] = ACTIONS(5094), + [anon_sym___extension__] = ACTIONS(6370), + [anon_sym_virtual] = ACTIONS(5096), + [anon_sym_extern] = ACTIONS(5096), + [anon_sym___attribute__] = ACTIONS(5096), + [anon_sym___attribute] = ACTIONS(5096), + [anon_sym_COLON_COLON] = ACTIONS(5094), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5094), + [anon_sym___declspec] = ACTIONS(5096), + [anon_sym___based] = ACTIONS(5096), + [anon_sym___cdecl] = ACTIONS(5096), + [anon_sym___clrcall] = ACTIONS(5096), + [anon_sym___stdcall] = ACTIONS(5096), + [anon_sym___fastcall] = ACTIONS(5096), + [anon_sym___thiscall] = ACTIONS(5096), + [anon_sym___vectorcall] = ACTIONS(5096), + [anon_sym_LBRACE] = ACTIONS(5094), + [anon_sym_signed] = ACTIONS(6373), + [anon_sym_unsigned] = ACTIONS(6373), + [anon_sym_long] = ACTIONS(6373), + [anon_sym_short] = ACTIONS(6373), + [anon_sym_LBRACK] = ACTIONS(5096), + [anon_sym_static] = ACTIONS(5096), + [anon_sym_EQ] = ACTIONS(5094), + [anon_sym_register] = ACTIONS(5096), + [anon_sym_inline] = ACTIONS(5096), + [anon_sym___inline] = ACTIONS(5096), + [anon_sym___inline__] = ACTIONS(5096), + [anon_sym___forceinline] = ACTIONS(5096), + [anon_sym_thread_local] = ACTIONS(5096), + [anon_sym___thread] = ACTIONS(5096), + [anon_sym_const] = ACTIONS(6370), + [anon_sym_constexpr] = ACTIONS(6370), + [anon_sym_volatile] = ACTIONS(6370), + [anon_sym_restrict] = ACTIONS(6370), + [anon_sym___restrict__] = ACTIONS(6370), + [anon_sym__Atomic] = ACTIONS(6370), + [anon_sym__Noreturn] = ACTIONS(6370), + [anon_sym_noreturn] = ACTIONS(6370), + [anon_sym__Nonnull] = ACTIONS(6370), + [anon_sym_mutable] = ACTIONS(6370), + [anon_sym_constinit] = ACTIONS(6370), + [anon_sym_consteval] = ACTIONS(6370), + [anon_sym_alignas] = ACTIONS(6375), + [anon_sym__Alignas] = ACTIONS(6375), + [sym_primitive_type] = ACTIONS(6378), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5096), + [anon_sym_decltype] = ACTIONS(5096), + [anon_sym_template] = ACTIONS(5096), + [anon_sym_GT2] = ACTIONS(5094), + [anon_sym_operator] = ACTIONS(5096), + }, + [2386] = { + [sym_attribute_specifier] = STATE(1897), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6208), + [anon_sym_COMMA] = ACTIONS(6208), + [anon_sym_RPAREN] = ACTIONS(6208), + [anon_sym_LPAREN2] = ACTIONS(6208), + [anon_sym_DASH] = ACTIONS(6206), + [anon_sym_PLUS] = ACTIONS(6206), + [anon_sym_STAR] = ACTIONS(6208), + [anon_sym_SLASH] = ACTIONS(6206), + [anon_sym_PERCENT] = ACTIONS(6208), + [anon_sym_PIPE_PIPE] = ACTIONS(6208), + [anon_sym_AMP_AMP] = ACTIONS(6208), + [anon_sym_PIPE] = ACTIONS(6206), + [anon_sym_CARET] = ACTIONS(6208), + [anon_sym_AMP] = ACTIONS(6206), + [anon_sym_EQ_EQ] = ACTIONS(6208), + [anon_sym_BANG_EQ] = ACTIONS(6208), + [anon_sym_GT] = ACTIONS(6206), + [anon_sym_GT_EQ] = ACTIONS(6208), + [anon_sym_LT_EQ] = ACTIONS(6206), + [anon_sym_LT] = ACTIONS(6206), + [anon_sym_LT_LT] = ACTIONS(6208), + [anon_sym_GT_GT] = ACTIONS(6208), + [anon_sym_SEMI] = ACTIONS(6208), + [anon_sym___extension__] = ACTIONS(6208), + [anon_sym___attribute__] = ACTIONS(6031), + [anon_sym___attribute] = ACTIONS(6033), + [anon_sym_COLON] = ACTIONS(6208), + [anon_sym_LBRACE] = ACTIONS(6208), + [anon_sym_RBRACE] = ACTIONS(6208), + [anon_sym_LBRACK] = ACTIONS(6208), + [anon_sym_RBRACK] = ACTIONS(6208), + [anon_sym_const] = ACTIONS(6206), + [anon_sym_constexpr] = ACTIONS(6208), + [anon_sym_volatile] = ACTIONS(6208), + [anon_sym_restrict] = ACTIONS(6208), + [anon_sym___restrict__] = ACTIONS(6208), + [anon_sym__Atomic] = ACTIONS(6208), + [anon_sym__Noreturn] = ACTIONS(6208), + [anon_sym_noreturn] = ACTIONS(6208), + [anon_sym__Nonnull] = ACTIONS(6208), + [anon_sym_mutable] = ACTIONS(6208), + [anon_sym_constinit] = ACTIONS(6208), + [anon_sym_consteval] = ACTIONS(6208), + [anon_sym_alignas] = ACTIONS(6208), + [anon_sym__Alignas] = ACTIONS(6208), + [anon_sym_QMARK] = ACTIONS(6208), + [anon_sym_LT_EQ_GT] = ACTIONS(6208), + [anon_sym_or] = ACTIONS(6208), + [anon_sym_and] = ACTIONS(6208), + [anon_sym_bitor] = ACTIONS(6208), + [anon_sym_xor] = ACTIONS(6208), + [anon_sym_bitand] = ACTIONS(6208), + [anon_sym_not_eq] = ACTIONS(6208), + [anon_sym_DASH_DASH] = ACTIONS(6208), + [anon_sym_PLUS_PLUS] = ACTIONS(6208), + [anon_sym_DOT] = ACTIONS(6206), + [anon_sym_DOT_STAR] = ACTIONS(6208), + [anon_sym_DASH_GT] = ACTIONS(6208), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6208), + [anon_sym_decltype] = ACTIONS(6208), + [anon_sym_final] = ACTIONS(6208), + [anon_sym_override] = ACTIONS(6208), + [anon_sym_requires] = ACTIONS(6208), + }, + [2387] = { + [sym_attribute_specifier] = STATE(1900), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6212), + [anon_sym_COMMA] = ACTIONS(6212), + [anon_sym_RPAREN] = ACTIONS(6212), + [anon_sym_LPAREN2] = ACTIONS(6212), + [anon_sym_DASH] = ACTIONS(6210), + [anon_sym_PLUS] = ACTIONS(6210), + [anon_sym_STAR] = ACTIONS(6212), + [anon_sym_SLASH] = ACTIONS(6210), + [anon_sym_PERCENT] = ACTIONS(6212), + [anon_sym_PIPE_PIPE] = ACTIONS(6212), + [anon_sym_AMP_AMP] = ACTIONS(6212), + [anon_sym_PIPE] = ACTIONS(6210), + [anon_sym_CARET] = ACTIONS(6212), + [anon_sym_AMP] = ACTIONS(6210), + [anon_sym_EQ_EQ] = ACTIONS(6212), + [anon_sym_BANG_EQ] = ACTIONS(6212), + [anon_sym_GT] = ACTIONS(6210), + [anon_sym_GT_EQ] = ACTIONS(6212), + [anon_sym_LT_EQ] = ACTIONS(6210), + [anon_sym_LT] = ACTIONS(6210), + [anon_sym_LT_LT] = ACTIONS(6212), + [anon_sym_GT_GT] = ACTIONS(6212), + [anon_sym_SEMI] = ACTIONS(6212), + [anon_sym___extension__] = ACTIONS(6212), + [anon_sym___attribute__] = ACTIONS(6031), + [anon_sym___attribute] = ACTIONS(6033), + [anon_sym_COLON] = ACTIONS(6212), + [anon_sym_LBRACE] = ACTIONS(6212), + [anon_sym_RBRACE] = ACTIONS(6212), + [anon_sym_LBRACK] = ACTIONS(6212), + [anon_sym_RBRACK] = ACTIONS(6212), + [anon_sym_const] = ACTIONS(6210), + [anon_sym_constexpr] = ACTIONS(6212), + [anon_sym_volatile] = ACTIONS(6212), + [anon_sym_restrict] = ACTIONS(6212), + [anon_sym___restrict__] = ACTIONS(6212), + [anon_sym__Atomic] = ACTIONS(6212), + [anon_sym__Noreturn] = ACTIONS(6212), + [anon_sym_noreturn] = ACTIONS(6212), + [anon_sym__Nonnull] = ACTIONS(6212), + [anon_sym_mutable] = ACTIONS(6212), + [anon_sym_constinit] = ACTIONS(6212), + [anon_sym_consteval] = ACTIONS(6212), + [anon_sym_alignas] = ACTIONS(6212), + [anon_sym__Alignas] = ACTIONS(6212), + [anon_sym_QMARK] = ACTIONS(6212), + [anon_sym_LT_EQ_GT] = ACTIONS(6212), + [anon_sym_or] = ACTIONS(6212), + [anon_sym_and] = ACTIONS(6212), + [anon_sym_bitor] = ACTIONS(6212), + [anon_sym_xor] = ACTIONS(6212), + [anon_sym_bitand] = ACTIONS(6212), + [anon_sym_not_eq] = ACTIONS(6212), + [anon_sym_DASH_DASH] = ACTIONS(6212), + [anon_sym_PLUS_PLUS] = ACTIONS(6212), + [anon_sym_DOT] = ACTIONS(6210), + [anon_sym_DOT_STAR] = ACTIONS(6212), + [anon_sym_DASH_GT] = ACTIONS(6212), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6212), + [anon_sym_decltype] = ACTIONS(6212), + [anon_sym_final] = ACTIONS(6212), + [anon_sym_override] = ACTIONS(6212), + [anon_sym_requires] = ACTIONS(6212), + }, + [2388] = { + [sym_attribute_specifier] = STATE(1908), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6106), + [anon_sym_COMMA] = ACTIONS(6106), + [anon_sym_RPAREN] = ACTIONS(6106), + [anon_sym_LPAREN2] = ACTIONS(6106), + [anon_sym_DASH] = ACTIONS(6104), + [anon_sym_PLUS] = ACTIONS(6104), + [anon_sym_STAR] = ACTIONS(6106), + [anon_sym_SLASH] = ACTIONS(6104), + [anon_sym_PERCENT] = ACTIONS(6106), + [anon_sym_PIPE_PIPE] = ACTIONS(6106), + [anon_sym_AMP_AMP] = ACTIONS(6106), + [anon_sym_PIPE] = ACTIONS(6104), + [anon_sym_CARET] = ACTIONS(6106), + [anon_sym_AMP] = ACTIONS(6104), + [anon_sym_EQ_EQ] = ACTIONS(6106), + [anon_sym_BANG_EQ] = ACTIONS(6106), + [anon_sym_GT] = ACTIONS(6104), + [anon_sym_GT_EQ] = ACTIONS(6106), + [anon_sym_LT_EQ] = ACTIONS(6104), + [anon_sym_LT] = ACTIONS(6104), + [anon_sym_LT_LT] = ACTIONS(6106), + [anon_sym_GT_GT] = ACTIONS(6106), + [anon_sym_SEMI] = ACTIONS(6106), + [anon_sym___extension__] = ACTIONS(6106), + [anon_sym___attribute__] = ACTIONS(6031), + [anon_sym___attribute] = ACTIONS(6033), + [anon_sym_COLON] = ACTIONS(6106), + [anon_sym_LBRACE] = ACTIONS(6106), + [anon_sym_RBRACE] = ACTIONS(6106), + [anon_sym_LBRACK] = ACTIONS(6106), + [anon_sym_RBRACK] = ACTIONS(6106), + [anon_sym_const] = ACTIONS(6104), + [anon_sym_constexpr] = ACTIONS(6106), + [anon_sym_volatile] = ACTIONS(6106), + [anon_sym_restrict] = ACTIONS(6106), + [anon_sym___restrict__] = ACTIONS(6106), + [anon_sym__Atomic] = ACTIONS(6106), + [anon_sym__Noreturn] = ACTIONS(6106), + [anon_sym_noreturn] = ACTIONS(6106), + [anon_sym__Nonnull] = ACTIONS(6106), + [anon_sym_mutable] = ACTIONS(6106), + [anon_sym_constinit] = ACTIONS(6106), + [anon_sym_consteval] = ACTIONS(6106), + [anon_sym_alignas] = ACTIONS(6106), + [anon_sym__Alignas] = ACTIONS(6106), + [anon_sym_QMARK] = ACTIONS(6106), + [anon_sym_LT_EQ_GT] = ACTIONS(6106), + [anon_sym_or] = ACTIONS(6106), + [anon_sym_and] = ACTIONS(6106), + [anon_sym_bitor] = ACTIONS(6106), + [anon_sym_xor] = ACTIONS(6106), + [anon_sym_bitand] = ACTIONS(6106), + [anon_sym_not_eq] = ACTIONS(6106), + [anon_sym_DASH_DASH] = ACTIONS(6106), + [anon_sym_PLUS_PLUS] = ACTIONS(6106), + [anon_sym_DOT] = ACTIONS(6104), + [anon_sym_DOT_STAR] = ACTIONS(6106), + [anon_sym_DASH_GT] = ACTIONS(6106), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6106), + [anon_sym_decltype] = ACTIONS(6106), + [anon_sym_final] = ACTIONS(6106), + [anon_sym_override] = ACTIONS(6106), + [anon_sym_requires] = ACTIONS(6106), + }, + [2389] = { + [sym_attribute_specifier] = STATE(1909), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6110), + [anon_sym_COMMA] = ACTIONS(6110), + [anon_sym_RPAREN] = ACTIONS(6110), + [anon_sym_LPAREN2] = ACTIONS(6110), + [anon_sym_DASH] = ACTIONS(6108), + [anon_sym_PLUS] = ACTIONS(6108), + [anon_sym_STAR] = ACTIONS(6110), + [anon_sym_SLASH] = ACTIONS(6108), + [anon_sym_PERCENT] = ACTIONS(6110), + [anon_sym_PIPE_PIPE] = ACTIONS(6110), + [anon_sym_AMP_AMP] = ACTIONS(6110), + [anon_sym_PIPE] = ACTIONS(6108), + [anon_sym_CARET] = ACTIONS(6110), + [anon_sym_AMP] = ACTIONS(6108), + [anon_sym_EQ_EQ] = ACTIONS(6110), + [anon_sym_BANG_EQ] = ACTIONS(6110), + [anon_sym_GT] = ACTIONS(6108), + [anon_sym_GT_EQ] = ACTIONS(6110), + [anon_sym_LT_EQ] = ACTIONS(6108), + [anon_sym_LT] = ACTIONS(6108), + [anon_sym_LT_LT] = ACTIONS(6110), + [anon_sym_GT_GT] = ACTIONS(6110), + [anon_sym_SEMI] = ACTIONS(6110), + [anon_sym___extension__] = ACTIONS(6110), + [anon_sym___attribute__] = ACTIONS(6031), + [anon_sym___attribute] = ACTIONS(6033), + [anon_sym_COLON] = ACTIONS(6110), + [anon_sym_LBRACE] = ACTIONS(6110), + [anon_sym_RBRACE] = ACTIONS(6110), + [anon_sym_LBRACK] = ACTIONS(6110), + [anon_sym_RBRACK] = ACTIONS(6110), + [anon_sym_const] = ACTIONS(6108), + [anon_sym_constexpr] = ACTIONS(6110), + [anon_sym_volatile] = ACTIONS(6110), + [anon_sym_restrict] = ACTIONS(6110), + [anon_sym___restrict__] = ACTIONS(6110), + [anon_sym__Atomic] = ACTIONS(6110), + [anon_sym__Noreturn] = ACTIONS(6110), + [anon_sym_noreturn] = ACTIONS(6110), + [anon_sym__Nonnull] = ACTIONS(6110), + [anon_sym_mutable] = ACTIONS(6110), + [anon_sym_constinit] = ACTIONS(6110), + [anon_sym_consteval] = ACTIONS(6110), + [anon_sym_alignas] = ACTIONS(6110), + [anon_sym__Alignas] = ACTIONS(6110), + [anon_sym_QMARK] = ACTIONS(6110), + [anon_sym_LT_EQ_GT] = ACTIONS(6110), + [anon_sym_or] = ACTIONS(6110), + [anon_sym_and] = ACTIONS(6110), + [anon_sym_bitor] = ACTIONS(6110), + [anon_sym_xor] = ACTIONS(6110), + [anon_sym_bitand] = ACTIONS(6110), + [anon_sym_not_eq] = ACTIONS(6110), + [anon_sym_DASH_DASH] = ACTIONS(6110), + [anon_sym_PLUS_PLUS] = ACTIONS(6110), + [anon_sym_DOT] = ACTIONS(6108), + [anon_sym_DOT_STAR] = ACTIONS(6110), + [anon_sym_DASH_GT] = ACTIONS(6110), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6110), + [anon_sym_decltype] = ACTIONS(6110), + [anon_sym_final] = ACTIONS(6110), + [anon_sym_override] = ACTIONS(6110), + [anon_sym_requires] = ACTIONS(6110), + }, + [2390] = { + [sym_type_qualifier] = STATE(1669), + [sym_alignas_qualifier] = STATE(1680), + [aux_sym__type_definition_type_repeat1] = STATE(1669), + [aux_sym_sized_type_specifier_repeat1] = STATE(2647), + [sym_identifier] = ACTIONS(6380), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5109), + [anon_sym_COMMA] = ACTIONS(5109), + [anon_sym_RPAREN] = ACTIONS(5109), + [anon_sym_LPAREN2] = ACTIONS(5109), + [anon_sym_TILDE] = ACTIONS(5109), + [anon_sym_STAR] = ACTIONS(5109), + [anon_sym_AMP_AMP] = ACTIONS(5109), + [anon_sym_AMP] = ACTIONS(5111), + [anon_sym_SEMI] = ACTIONS(5109), + [anon_sym___extension__] = ACTIONS(6383), + [anon_sym_virtual] = ACTIONS(5111), + [anon_sym_extern] = ACTIONS(5111), + [anon_sym___attribute__] = ACTIONS(5111), + [anon_sym___attribute] = ACTIONS(5111), + [anon_sym_COLON_COLON] = ACTIONS(5109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5109), + [anon_sym___declspec] = ACTIONS(5111), + [anon_sym___based] = ACTIONS(5111), + [anon_sym___cdecl] = ACTIONS(5111), + [anon_sym___clrcall] = ACTIONS(5111), + [anon_sym___stdcall] = ACTIONS(5111), + [anon_sym___fastcall] = ACTIONS(5111), + [anon_sym___thiscall] = ACTIONS(5111), + [anon_sym___vectorcall] = ACTIONS(5111), + [anon_sym_LBRACE] = ACTIONS(5109), + [anon_sym_signed] = ACTIONS(6386), + [anon_sym_unsigned] = ACTIONS(6386), + [anon_sym_long] = ACTIONS(6386), + [anon_sym_short] = ACTIONS(6386), + [anon_sym_LBRACK] = ACTIONS(5111), + [anon_sym_static] = ACTIONS(5111), + [anon_sym_EQ] = ACTIONS(5109), + [anon_sym_register] = ACTIONS(5111), + [anon_sym_inline] = ACTIONS(5111), + [anon_sym___inline] = ACTIONS(5111), + [anon_sym___inline__] = ACTIONS(5111), + [anon_sym___forceinline] = ACTIONS(5111), + [anon_sym_thread_local] = ACTIONS(5111), + [anon_sym___thread] = ACTIONS(5111), + [anon_sym_const] = ACTIONS(6383), + [anon_sym_constexpr] = ACTIONS(6383), + [anon_sym_volatile] = ACTIONS(6383), + [anon_sym_restrict] = ACTIONS(6383), + [anon_sym___restrict__] = ACTIONS(6383), + [anon_sym__Atomic] = ACTIONS(6383), + [anon_sym__Noreturn] = ACTIONS(6383), + [anon_sym_noreturn] = ACTIONS(6383), + [anon_sym__Nonnull] = ACTIONS(6383), + [anon_sym_mutable] = ACTIONS(6383), + [anon_sym_constinit] = ACTIONS(6383), + [anon_sym_consteval] = ACTIONS(6383), + [anon_sym_alignas] = ACTIONS(6388), + [anon_sym__Alignas] = ACTIONS(6388), + [sym_primitive_type] = ACTIONS(6391), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5111), + [anon_sym_decltype] = ACTIONS(5111), + [anon_sym_template] = ACTIONS(5111), + [anon_sym_GT2] = ACTIONS(5109), + [anon_sym_operator] = ACTIONS(5111), + }, + [2391] = { + [sym_attribute_specifier] = STATE(2323), + [sym_enumerator_list] = STATE(2246), + [sym__enum_base_clause] = STATE(2133), + [sym_identifier] = ACTIONS(6393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6395), + [anon_sym_COMMA] = ACTIONS(6395), + [aux_sym_preproc_if_token2] = ACTIONS(6395), + [aux_sym_preproc_else_token1] = ACTIONS(6395), + [aux_sym_preproc_elif_token1] = ACTIONS(6393), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6395), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6395), + [anon_sym_LPAREN2] = ACTIONS(6395), + [anon_sym_DASH] = ACTIONS(6393), + [anon_sym_PLUS] = ACTIONS(6393), + [anon_sym_STAR] = ACTIONS(6393), + [anon_sym_SLASH] = ACTIONS(6393), + [anon_sym_PERCENT] = ACTIONS(6393), + [anon_sym_PIPE_PIPE] = ACTIONS(6395), + [anon_sym_AMP_AMP] = ACTIONS(6395), + [anon_sym_PIPE] = ACTIONS(6393), + [anon_sym_CARET] = ACTIONS(6393), + [anon_sym_AMP] = ACTIONS(6393), + [anon_sym_EQ_EQ] = ACTIONS(6395), + [anon_sym_BANG_EQ] = ACTIONS(6395), + [anon_sym_GT] = ACTIONS(6393), + [anon_sym_GT_EQ] = ACTIONS(6395), + [anon_sym_LT_EQ] = ACTIONS(6393), + [anon_sym_LT] = ACTIONS(6393), + [anon_sym_LT_LT] = ACTIONS(6393), + [anon_sym_GT_GT] = ACTIONS(6393), + [anon_sym___attribute__] = ACTIONS(5561), + [anon_sym___attribute] = ACTIONS(5561), + [anon_sym_COLON] = ACTIONS(6320), + [anon_sym_LBRACE] = ACTIONS(6070), + [anon_sym_LBRACK] = ACTIONS(6395), + [anon_sym_EQ] = ACTIONS(6393), + [anon_sym_QMARK] = ACTIONS(6395), + [anon_sym_STAR_EQ] = ACTIONS(6395), + [anon_sym_SLASH_EQ] = ACTIONS(6395), + [anon_sym_PERCENT_EQ] = ACTIONS(6395), + [anon_sym_PLUS_EQ] = ACTIONS(6395), + [anon_sym_DASH_EQ] = ACTIONS(6395), + [anon_sym_LT_LT_EQ] = ACTIONS(6395), + [anon_sym_GT_GT_EQ] = ACTIONS(6395), + [anon_sym_AMP_EQ] = ACTIONS(6395), + [anon_sym_CARET_EQ] = ACTIONS(6395), + [anon_sym_PIPE_EQ] = ACTIONS(6395), + [anon_sym_and_eq] = ACTIONS(6393), + [anon_sym_or_eq] = ACTIONS(6393), + [anon_sym_xor_eq] = ACTIONS(6393), + [anon_sym_LT_EQ_GT] = ACTIONS(6395), + [anon_sym_or] = ACTIONS(6393), + [anon_sym_and] = ACTIONS(6393), + [anon_sym_bitor] = ACTIONS(6393), + [anon_sym_xor] = ACTIONS(6393), + [anon_sym_bitand] = ACTIONS(6393), + [anon_sym_not_eq] = ACTIONS(6393), + [anon_sym_DASH_DASH] = ACTIONS(6395), + [anon_sym_PLUS_PLUS] = ACTIONS(6395), + [anon_sym_DOT] = ACTIONS(6393), + [anon_sym_DOT_STAR] = ACTIONS(6395), + [anon_sym_DASH_GT] = ACTIONS(6395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6393), + [anon_sym_decltype] = ACTIONS(6393), + }, + [2392] = { + [sym_attribute_specifier] = STATE(1873), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6171), + [anon_sym_COMMA] = ACTIONS(6171), + [anon_sym_RPAREN] = ACTIONS(6171), + [anon_sym_LPAREN2] = ACTIONS(6171), + [anon_sym_DASH] = ACTIONS(6169), + [anon_sym_PLUS] = ACTIONS(6169), + [anon_sym_STAR] = ACTIONS(6171), + [anon_sym_SLASH] = ACTIONS(6169), + [anon_sym_PERCENT] = ACTIONS(6171), + [anon_sym_PIPE_PIPE] = ACTIONS(6171), + [anon_sym_AMP_AMP] = ACTIONS(6171), + [anon_sym_PIPE] = ACTIONS(6169), + [anon_sym_CARET] = ACTIONS(6171), + [anon_sym_AMP] = ACTIONS(6169), + [anon_sym_EQ_EQ] = ACTIONS(6171), + [anon_sym_BANG_EQ] = ACTIONS(6171), + [anon_sym_GT] = ACTIONS(6169), + [anon_sym_GT_EQ] = ACTIONS(6171), + [anon_sym_LT_EQ] = ACTIONS(6169), + [anon_sym_LT] = ACTIONS(6169), + [anon_sym_LT_LT] = ACTIONS(6171), + [anon_sym_GT_GT] = ACTIONS(6171), + [anon_sym_SEMI] = ACTIONS(6171), + [anon_sym___extension__] = ACTIONS(6171), + [anon_sym___attribute__] = ACTIONS(6031), + [anon_sym___attribute] = ACTIONS(6033), + [anon_sym_COLON] = ACTIONS(6171), + [anon_sym_LBRACE] = ACTIONS(6171), + [anon_sym_RBRACE] = ACTIONS(6171), + [anon_sym_LBRACK] = ACTIONS(6171), + [anon_sym_RBRACK] = ACTIONS(6171), + [anon_sym_const] = ACTIONS(6169), + [anon_sym_constexpr] = ACTIONS(6171), + [anon_sym_volatile] = ACTIONS(6171), + [anon_sym_restrict] = ACTIONS(6171), + [anon_sym___restrict__] = ACTIONS(6171), + [anon_sym__Atomic] = ACTIONS(6171), + [anon_sym__Noreturn] = ACTIONS(6171), + [anon_sym_noreturn] = ACTIONS(6171), + [anon_sym__Nonnull] = ACTIONS(6171), + [anon_sym_mutable] = ACTIONS(6171), + [anon_sym_constinit] = ACTIONS(6171), + [anon_sym_consteval] = ACTIONS(6171), + [anon_sym_alignas] = ACTIONS(6171), + [anon_sym__Alignas] = ACTIONS(6171), + [anon_sym_QMARK] = ACTIONS(6171), + [anon_sym_LT_EQ_GT] = ACTIONS(6171), + [anon_sym_or] = ACTIONS(6171), + [anon_sym_and] = ACTIONS(6171), + [anon_sym_bitor] = ACTIONS(6171), + [anon_sym_xor] = ACTIONS(6171), + [anon_sym_bitand] = ACTIONS(6171), + [anon_sym_not_eq] = ACTIONS(6171), + [anon_sym_DASH_DASH] = ACTIONS(6171), + [anon_sym_PLUS_PLUS] = ACTIONS(6171), + [anon_sym_DOT] = ACTIONS(6169), + [anon_sym_DOT_STAR] = ACTIONS(6171), + [anon_sym_DASH_GT] = ACTIONS(6171), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6171), + [anon_sym_decltype] = ACTIONS(6171), + [anon_sym_final] = ACTIONS(6171), + [anon_sym_override] = ACTIONS(6171), + [anon_sym_requires] = ACTIONS(6171), + }, + [2393] = { + [sym_template_argument_list] = STATE(2361), + [sym_identifier] = ACTIONS(6397), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6399), + [anon_sym_COMMA] = ACTIONS(6399), + [anon_sym_RPAREN] = ACTIONS(6399), + [aux_sym_preproc_if_token2] = ACTIONS(6399), + [aux_sym_preproc_else_token1] = ACTIONS(6399), + [aux_sym_preproc_elif_token1] = ACTIONS(6397), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6399), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6399), + [anon_sym_LPAREN2] = ACTIONS(6399), + [anon_sym_DASH] = ACTIONS(6397), + [anon_sym_PLUS] = ACTIONS(6397), + [anon_sym_STAR] = ACTIONS(6397), + [anon_sym_SLASH] = ACTIONS(6397), + [anon_sym_PERCENT] = ACTIONS(6397), + [anon_sym_PIPE_PIPE] = ACTIONS(6399), + [anon_sym_AMP_AMP] = ACTIONS(6399), + [anon_sym_PIPE] = ACTIONS(6397), + [anon_sym_CARET] = ACTIONS(6397), + [anon_sym_AMP] = ACTIONS(6397), + [anon_sym_EQ_EQ] = ACTIONS(6399), + [anon_sym_BANG_EQ] = ACTIONS(6399), + [anon_sym_GT] = ACTIONS(6397), + [anon_sym_GT_EQ] = ACTIONS(6399), + [anon_sym_LT_EQ] = ACTIONS(6397), + [anon_sym_LT] = ACTIONS(6401), + [anon_sym_LT_LT] = ACTIONS(6397), + [anon_sym_GT_GT] = ACTIONS(6397), + [anon_sym_SEMI] = ACTIONS(6399), + [anon_sym___attribute__] = ACTIONS(6397), + [anon_sym___attribute] = ACTIONS(6397), + [anon_sym_COLON] = ACTIONS(6397), + [anon_sym_COLON_COLON] = ACTIONS(4187), + [anon_sym_RBRACE] = ACTIONS(6399), + [anon_sym_LBRACK] = ACTIONS(6399), + [anon_sym_RBRACK] = ACTIONS(6399), + [anon_sym_EQ] = ACTIONS(6397), + [anon_sym_QMARK] = ACTIONS(6399), + [anon_sym_STAR_EQ] = ACTIONS(6399), + [anon_sym_SLASH_EQ] = ACTIONS(6399), + [anon_sym_PERCENT_EQ] = ACTIONS(6399), + [anon_sym_PLUS_EQ] = ACTIONS(6399), + [anon_sym_DASH_EQ] = ACTIONS(6399), + [anon_sym_LT_LT_EQ] = ACTIONS(6399), + [anon_sym_GT_GT_EQ] = ACTIONS(6399), + [anon_sym_AMP_EQ] = ACTIONS(6399), + [anon_sym_CARET_EQ] = ACTIONS(6399), + [anon_sym_PIPE_EQ] = ACTIONS(6399), + [anon_sym_and_eq] = ACTIONS(6397), + [anon_sym_or_eq] = ACTIONS(6397), + [anon_sym_xor_eq] = ACTIONS(6397), + [anon_sym_LT_EQ_GT] = ACTIONS(6399), + [anon_sym_or] = ACTIONS(6397), + [anon_sym_and] = ACTIONS(6397), + [anon_sym_bitor] = ACTIONS(6397), + [anon_sym_xor] = ACTIONS(6397), + [anon_sym_bitand] = ACTIONS(6397), + [anon_sym_not_eq] = ACTIONS(6397), + [anon_sym_DASH_DASH] = ACTIONS(6399), + [anon_sym_PLUS_PLUS] = ACTIONS(6399), + [anon_sym_DOT] = ACTIONS(6397), + [anon_sym_DOT_STAR] = ACTIONS(6399), + [anon_sym_DASH_GT] = ACTIONS(6399), + [sym_comment] = ACTIONS(3), + }, + [2394] = { + [sym_attribute_specifier] = STATE(1905), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6151), + [anon_sym_COMMA] = ACTIONS(6151), + [anon_sym_RPAREN] = ACTIONS(6151), + [anon_sym_LPAREN2] = ACTIONS(6151), + [anon_sym_DASH] = ACTIONS(6149), + [anon_sym_PLUS] = ACTIONS(6149), + [anon_sym_STAR] = ACTIONS(6151), + [anon_sym_SLASH] = ACTIONS(6149), + [anon_sym_PERCENT] = ACTIONS(6151), + [anon_sym_PIPE_PIPE] = ACTIONS(6151), + [anon_sym_AMP_AMP] = ACTIONS(6151), + [anon_sym_PIPE] = ACTIONS(6149), + [anon_sym_CARET] = ACTIONS(6151), + [anon_sym_AMP] = ACTIONS(6149), + [anon_sym_EQ_EQ] = ACTIONS(6151), + [anon_sym_BANG_EQ] = ACTIONS(6151), + [anon_sym_GT] = ACTIONS(6149), + [anon_sym_GT_EQ] = ACTIONS(6151), + [anon_sym_LT_EQ] = ACTIONS(6149), + [anon_sym_LT] = ACTIONS(6149), + [anon_sym_LT_LT] = ACTIONS(6151), + [anon_sym_GT_GT] = ACTIONS(6151), + [anon_sym_SEMI] = ACTIONS(6151), + [anon_sym___extension__] = ACTIONS(6151), + [anon_sym___attribute__] = ACTIONS(6031), + [anon_sym___attribute] = ACTIONS(6033), + [anon_sym_COLON] = ACTIONS(6151), + [anon_sym_LBRACE] = ACTIONS(6151), + [anon_sym_RBRACE] = ACTIONS(6151), + [anon_sym_LBRACK] = ACTIONS(6151), + [anon_sym_RBRACK] = ACTIONS(6151), + [anon_sym_const] = ACTIONS(6149), + [anon_sym_constexpr] = ACTIONS(6151), + [anon_sym_volatile] = ACTIONS(6151), + [anon_sym_restrict] = ACTIONS(6151), + [anon_sym___restrict__] = ACTIONS(6151), + [anon_sym__Atomic] = ACTIONS(6151), + [anon_sym__Noreturn] = ACTIONS(6151), + [anon_sym_noreturn] = ACTIONS(6151), + [anon_sym__Nonnull] = ACTIONS(6151), + [anon_sym_mutable] = ACTIONS(6151), + [anon_sym_constinit] = ACTIONS(6151), + [anon_sym_consteval] = ACTIONS(6151), + [anon_sym_alignas] = ACTIONS(6151), + [anon_sym__Alignas] = ACTIONS(6151), + [anon_sym_QMARK] = ACTIONS(6151), + [anon_sym_LT_EQ_GT] = ACTIONS(6151), + [anon_sym_or] = ACTIONS(6151), + [anon_sym_and] = ACTIONS(6151), + [anon_sym_bitor] = ACTIONS(6151), + [anon_sym_xor] = ACTIONS(6151), + [anon_sym_bitand] = ACTIONS(6151), + [anon_sym_not_eq] = ACTIONS(6151), + [anon_sym_DASH_DASH] = ACTIONS(6151), + [anon_sym_PLUS_PLUS] = ACTIONS(6151), + [anon_sym_DOT] = ACTIONS(6149), + [anon_sym_DOT_STAR] = ACTIONS(6151), + [anon_sym_DASH_GT] = ACTIONS(6151), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6151), + [anon_sym_decltype] = ACTIONS(6151), + [anon_sym_final] = ACTIONS(6151), + [anon_sym_override] = ACTIONS(6151), + [anon_sym_requires] = ACTIONS(6151), + }, + [2395] = { + [sym_attribute_specifier] = STATE(1875), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6163), + [anon_sym_COMMA] = ACTIONS(6163), + [anon_sym_RPAREN] = ACTIONS(6163), + [anon_sym_LPAREN2] = ACTIONS(6163), + [anon_sym_DASH] = ACTIONS(6161), + [anon_sym_PLUS] = ACTIONS(6161), + [anon_sym_STAR] = ACTIONS(6163), + [anon_sym_SLASH] = ACTIONS(6161), + [anon_sym_PERCENT] = ACTIONS(6163), + [anon_sym_PIPE_PIPE] = ACTIONS(6163), + [anon_sym_AMP_AMP] = ACTIONS(6163), + [anon_sym_PIPE] = ACTIONS(6161), + [anon_sym_CARET] = ACTIONS(6163), + [anon_sym_AMP] = ACTIONS(6161), + [anon_sym_EQ_EQ] = ACTIONS(6163), + [anon_sym_BANG_EQ] = ACTIONS(6163), + [anon_sym_GT] = ACTIONS(6161), + [anon_sym_GT_EQ] = ACTIONS(6163), + [anon_sym_LT_EQ] = ACTIONS(6161), + [anon_sym_LT] = ACTIONS(6161), + [anon_sym_LT_LT] = ACTIONS(6163), + [anon_sym_GT_GT] = ACTIONS(6163), + [anon_sym_SEMI] = ACTIONS(6163), + [anon_sym___extension__] = ACTIONS(6163), + [anon_sym___attribute__] = ACTIONS(6031), + [anon_sym___attribute] = ACTIONS(6033), + [anon_sym_COLON] = ACTIONS(6163), + [anon_sym_LBRACE] = ACTIONS(6163), + [anon_sym_RBRACE] = ACTIONS(6163), + [anon_sym_LBRACK] = ACTIONS(6163), + [anon_sym_RBRACK] = ACTIONS(6163), + [anon_sym_const] = ACTIONS(6161), + [anon_sym_constexpr] = ACTIONS(6163), + [anon_sym_volatile] = ACTIONS(6163), + [anon_sym_restrict] = ACTIONS(6163), + [anon_sym___restrict__] = ACTIONS(6163), + [anon_sym__Atomic] = ACTIONS(6163), + [anon_sym__Noreturn] = ACTIONS(6163), + [anon_sym_noreturn] = ACTIONS(6163), + [anon_sym__Nonnull] = ACTIONS(6163), + [anon_sym_mutable] = ACTIONS(6163), + [anon_sym_constinit] = ACTIONS(6163), + [anon_sym_consteval] = ACTIONS(6163), + [anon_sym_alignas] = ACTIONS(6163), + [anon_sym__Alignas] = ACTIONS(6163), + [anon_sym_QMARK] = ACTIONS(6163), + [anon_sym_LT_EQ_GT] = ACTIONS(6163), + [anon_sym_or] = ACTIONS(6163), + [anon_sym_and] = ACTIONS(6163), + [anon_sym_bitor] = ACTIONS(6163), + [anon_sym_xor] = ACTIONS(6163), + [anon_sym_bitand] = ACTIONS(6163), + [anon_sym_not_eq] = ACTIONS(6163), + [anon_sym_DASH_DASH] = ACTIONS(6163), + [anon_sym_PLUS_PLUS] = ACTIONS(6163), + [anon_sym_DOT] = ACTIONS(6161), + [anon_sym_DOT_STAR] = ACTIONS(6163), + [anon_sym_DASH_GT] = ACTIONS(6163), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6163), + [anon_sym_decltype] = ACTIONS(6163), + [anon_sym_final] = ACTIONS(6163), + [anon_sym_override] = ACTIONS(6163), + [anon_sym_requires] = ACTIONS(6163), + }, + [2396] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2372), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5885), + [anon_sym_COMMA] = ACTIONS(5885), + [anon_sym_LPAREN2] = ACTIONS(5885), + [anon_sym_DASH] = ACTIONS(5887), + [anon_sym_PLUS] = ACTIONS(5887), + [anon_sym_STAR] = ACTIONS(5885), + [anon_sym_SLASH] = ACTIONS(5887), + [anon_sym_PERCENT] = ACTIONS(5885), + [anon_sym_PIPE_PIPE] = ACTIONS(5885), + [anon_sym_AMP_AMP] = ACTIONS(5885), + [anon_sym_PIPE] = ACTIONS(5887), + [anon_sym_CARET] = ACTIONS(5885), + [anon_sym_AMP] = ACTIONS(5887), + [anon_sym_EQ_EQ] = ACTIONS(5885), + [anon_sym_BANG_EQ] = ACTIONS(5885), + [anon_sym_GT] = ACTIONS(5887), + [anon_sym_GT_EQ] = ACTIONS(5887), + [anon_sym_LT_EQ] = ACTIONS(5887), + [anon_sym_LT] = ACTIONS(5887), + [anon_sym_LT_LT] = ACTIONS(5885), + [anon_sym_GT_GT] = ACTIONS(5887), + [anon_sym___extension__] = ACTIONS(5885), + [anon_sym___attribute__] = ACTIONS(5885), + [anon_sym___attribute] = ACTIONS(5887), + [anon_sym_LBRACE] = ACTIONS(5885), + [anon_sym_signed] = ACTIONS(6404), + [anon_sym_unsigned] = ACTIONS(6404), + [anon_sym_long] = ACTIONS(6404), + [anon_sym_short] = ACTIONS(6404), + [anon_sym_LBRACK] = ACTIONS(5885), + [anon_sym_const] = ACTIONS(5887), + [anon_sym_constexpr] = ACTIONS(5885), + [anon_sym_volatile] = ACTIONS(5885), + [anon_sym_restrict] = ACTIONS(5885), + [anon_sym___restrict__] = ACTIONS(5885), + [anon_sym__Atomic] = ACTIONS(5885), + [anon_sym__Noreturn] = ACTIONS(5885), + [anon_sym_noreturn] = ACTIONS(5885), + [anon_sym__Nonnull] = ACTIONS(5885), + [anon_sym_mutable] = ACTIONS(5885), + [anon_sym_constinit] = ACTIONS(5885), + [anon_sym_consteval] = ACTIONS(5885), + [anon_sym_alignas] = ACTIONS(5885), + [anon_sym__Alignas] = ACTIONS(5885), + [anon_sym_QMARK] = ACTIONS(5885), + [anon_sym_LT_EQ_GT] = ACTIONS(5885), + [anon_sym_or] = ACTIONS(5885), + [anon_sym_and] = ACTIONS(5885), + [anon_sym_bitor] = ACTIONS(5885), + [anon_sym_xor] = ACTIONS(5885), + [anon_sym_bitand] = ACTIONS(5885), + [anon_sym_not_eq] = ACTIONS(5885), + [anon_sym_DASH_DASH] = ACTIONS(5885), + [anon_sym_PLUS_PLUS] = ACTIONS(5885), + [anon_sym_DOT] = ACTIONS(5887), + [anon_sym_DOT_STAR] = ACTIONS(5885), + [anon_sym_DASH_GT] = ACTIONS(5885), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5885), + [anon_sym_decltype] = ACTIONS(5885), + [anon_sym_final] = ACTIONS(5885), + [anon_sym_override] = ACTIONS(5885), + [anon_sym_GT2] = ACTIONS(5885), + [anon_sym_requires] = ACTIONS(5885), + }, +}; + +static const uint16_t ts_small_parse_table[] = { + [0] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6406), 1, - sym_identifier, - STATE(2372), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(4411), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(4413), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(5392), 23, - 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_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - anon_sym_DASH_GT, - sym_literal_suffix, - ACTIONS(5390), 26, + ACTIONS(5527), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [440] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3947), 29, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(3949), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_COLON, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - 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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [511] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6408), 1, - sym_identifier, - STATE(2376), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(4411), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(4413), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(5398), 23, - 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_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym_LBRACE, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - anon_sym_DASH_GT, - sym_literal_suffix, - ACTIONS(5396), 26, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [590] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6410), 28, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + anon_sym_GT2, + ACTIONS(5525), 50, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(6412), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - 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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [661] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3951), 29, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, sym_identifier, - ACTIONS(3953), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - 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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [732] = 7, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [71] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4167), 1, - anon_sym_COLON_COLON, - STATE(1603), 1, - sym_template_argument_list, - STATE(2571), 1, + STATE(2220), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(6414), 4, + ACTIONS(6130), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5977), 20, - 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_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5979), 36, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [811] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6416), 1, + ACTIONS(5078), 17, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, sym_identifier, - STATE(2376), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(6419), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(6422), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(5405), 23, - 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_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - anon_sym_DASH_GT, - sym_literal_suffix, - ACTIONS(5403), 26, + ACTIONS(5167), 20, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [890] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5827), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, - anon_sym_LBRACK, - ACTIONS(6431), 1, - anon_sym_DOT, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6425), 27, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - sym_identifier, - ACTIONS(6427), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - 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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - [973] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5482), 27, - 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_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - anon_sym_DASH_GT, - sym_identifier, - sym_literal_suffix, - ACTIONS(5484), 36, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - anon_sym_DASH_GT_STAR, - [1044] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5827), 1, - anon_sym_LPAREN2, - ACTIONS(6429), 1, - anon_sym_LBRACK, - ACTIONS(6431), 1, - anon_sym_DOT, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6433), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6439), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6435), 27, - aux_sym_preproc_elif_token1, + anon_sym_GT2, + ACTIONS(5164), 21, 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_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - sym_identifier, - ACTIONS(6437), 27, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - 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_LT_EQ_GT, - [1129] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5827), 1, - anon_sym_LPAREN2, - ACTIONS(6429), 1, - anon_sym_LBRACK, - ACTIONS(6431), 1, - anon_sym_DOT, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6439), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6441), 27, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, anon_sym___attribute__, anon_sym___attribute, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - sym_identifier, - ACTIONS(6443), 27, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - 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_LT_EQ_GT, - [1214] = 9, + anon_sym_DOT, + sym_auto, + anon_sym_decltype, + [148] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, - anon_sym_LPAREN2, - ACTIONS(6429), 1, - anon_sym_LBRACK, - ACTIONS(6431), 1, - anon_sym_DOT, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6445), 27, + ACTIONS(6406), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -295159,8 +298087,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DOT, sym_identifier, - ACTIONS(6447), 29, + ACTIONS(6408), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -295168,187 +298097,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, anon_sym_RBRACE, - 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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - [1297] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5489), 27, - 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_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - anon_sym_DASH_GT, - sym_identifier, - sym_literal_suffix, - ACTIONS(5491), 36, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - anon_sym_DASH_GT_STAR, - [1368] = 6, - ACTIONS(3), 1, - sym_comment, - STATE(2198), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6148), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5070), 17, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - ACTIONS(5156), 20, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - ACTIONS(5159), 21, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_auto, - anon_sym_decltype, - [1445] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5827), 1, - anon_sym_LPAREN2, - ACTIONS(6429), 1, - anon_sym_LBRACK, - ACTIONS(6431), 1, - anon_sym_DOT, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6439), 2, + 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_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6449), 27, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [219] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2259), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6266), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5515), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -295363,8 +298150,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -295375,23 +298160,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DOT, sym_identifier, - ACTIONS(6451), 27, + sym_auto, + anon_sym_decltype, + ACTIONS(5517), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -295404,90 +298191,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - [1530] = 15, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [294] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, - anon_sym___declspec, - ACTIONS(6457), 1, - anon_sym_virtual, - ACTIONS(6459), 1, - sym_auto, - ACTIONS(6461), 1, - anon_sym_decltype, - STATE(2504), 1, - sym_decltype_auto, - STATE(2975), 1, - sym_alignas_qualifier, - ACTIONS(5468), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5476), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2550), 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(5466), 9, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(6455), 11, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5845), 1, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(6453), 12, - anon_sym_AMP, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + ACTIONS(6414), 1, anon_sym_LBRACK, - sym_identifier, - anon_sym_template, - anon_sym_operator, - ACTIONS(5462), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [1625] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6463), 29, + ACTIONS(6418), 1, + anon_sym_DOT, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + ACTIONS(6416), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6420), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6410), 27, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -295504,7 +298231,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute__, anon_sym___attribute, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -295515,9 +298241,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, sym_identifier, - ACTIONS(6465), 34, + ACTIONS(6412), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -295525,15 +298250,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_QMARK, @@ -295548,21 +298270,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + [379] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5845), 1, + anon_sym_LPAREN2, + ACTIONS(6414), 1, + anon_sym_LBRACK, + ACTIONS(6418), 1, + anon_sym_DOT, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + ACTIONS(6416), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [1696] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2234), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6290), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5450), 28, + ACTIONS(6422), 27, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -295577,6 +298304,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -295587,25 +298316,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5452), 30, + ACTIONS(6424), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -295618,30 +298345,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [1771] = 10, + [464] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, - anon_sym_LPAREN2, - ACTIONS(6429), 1, - anon_sym_LBRACK, - ACTIONS(6431), 1, - anon_sym_DOT, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6439), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6467), 27, + ACTIONS(6430), 1, + anon_sym_LT, + STATE(2375), 1, + sym_template_argument_list, + ACTIONS(6426), 27, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -295653,7 +298364,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym___attribute__, @@ -295668,8 +298378,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DOT, sym_identifier, - ACTIONS(6469), 27, + ACTIONS(6428), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -295677,13 +298388,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, + anon_sym_COLON, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -295697,10 +298411,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - [1856] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [539] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5478), 27, + ACTIONS(5601), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -295728,7 +298446,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_literal_suffix, - ACTIONS(5480), 36, + ACTIONS(5603), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -295765,10 +298483,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [1927] = 3, + [610] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5577), 27, + ACTIONS(5641), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -295796,7 +298514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_literal_suffix, - ACTIONS(5579), 36, + ACTIONS(5643), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -295833,10 +298551,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [1998] = 3, + [681] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5482), 27, + ACTIONS(5470), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -295864,7 +298582,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_literal_suffix, - ACTIONS(5484), 36, + ACTIONS(5472), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -295901,10 +298619,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [2069] = 3, + [752] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5489), 27, + ACTIONS(5477), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -295932,7 +298650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_literal_suffix, - ACTIONS(5491), 36, + ACTIONS(5479), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -295969,163 +298687,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [2140] = 6, + [823] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6459), 1, - sym_auto, - ACTIONS(6461), 1, - anon_sym_decltype, - STATE(2504), 1, - sym_decltype_auto, - ACTIONS(5591), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5845), 1, anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(6414), 1, + anon_sym_LBRACK, + ACTIONS(6418), 1, + anon_sym_DOT, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + ACTIONS(6420), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6433), 27, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5589), 47, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym___attribute__, anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [2217] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, - anon_sym___declspec, - ACTIONS(6459), 1, - sym_auto, - ACTIONS(6461), 1, - anon_sym_decltype, - ACTIONS(6475), 1, - anon_sym_virtual, - STATE(2504), 1, - sym_decltype_auto, - STATE(2975), 1, - sym_alignas_qualifier, - ACTIONS(5468), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5476), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2558), 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(5466), 9, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(6473), 11, + ACTIONS(6435), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(6471), 12, - anon_sym_AMP, - 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, - anon_sym_template, - anon_sym_operator, - ACTIONS(5462), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [2312] = 4, + anon_sym_RBRACE, + 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_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [906] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6481), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(6477), 29, + ACTIONS(6406), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -296142,7 +298781,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute__, anon_sym___attribute, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -296155,7 +298793,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6479), 33, + ACTIONS(6408), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -296171,7 +298809,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_SEMI, anon_sym_COLON, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -296189,10 +298829,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [2385] = 3, + [977] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5477), 27, + 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_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + anon_sym_DASH_GT, + sym_identifier, + sym_literal_suffix, + ACTIONS(5479), 36, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_DASH_GT_STAR, + [1048] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6483), 28, + ACTIONS(6437), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -296221,7 +298929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6485), 35, + ACTIONS(6439), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -296257,10 +298965,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [2456] = 3, + [1119] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6487), 28, + ACTIONS(6441), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -296289,7 +298997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6489), 35, + ACTIONS(6443), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -296325,26 +299033,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [2527] = 10, + [1190] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, - anon_sym_LPAREN2, - ACTIONS(6429), 1, - anon_sym_LBRACK, - ACTIONS(6431), 1, - anon_sym_DOT, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6439), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6491), 27, + ACTIONS(6445), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -296371,8 +299063,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DOT, sym_identifier, - ACTIONS(6493), 27, + ACTIONS(6447), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -296380,13 +299073,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -296400,29 +299097,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - [2612] = 12, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [1261] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5499), 1, - anon_sym_COLON, - ACTIONS(6495), 1, - anon_sym___attribute__, - ACTIONS(6497), 1, - anon_sym___attribute, - ACTIONS(6499), 1, - anon_sym_LBRACE, - STATE(2814), 1, - sym_field_declaration_list, - STATE(3052), 1, - sym_attribute_specifier, - STATE(7113), 1, - sym_virtual_specifier, - STATE(7769), 1, - sym_base_class_clause, - ACTIONS(6020), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5493), 19, + ACTIONS(4187), 1, + anon_sym_COLON_COLON, + STATE(1623), 1, + sym_template_argument_list, + STATE(2601), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6449), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6058), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -296436,13 +299129,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5495), 34, + ACTIONS(6060), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -296452,6 +299146,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -296477,78 +299173,82 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [2701] = 3, + [1340] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5631), 13, + ACTIONS(6451), 1, + sym_identifier, + STATE(2415), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(6454), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(6457), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(5413), 23, + 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_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + anon_sym_DASH_GT, + sym_literal_suffix, + ACTIONS(5411), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5629), 50, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, - 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_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [2772] = 3, + 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_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [1419] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6398), 28, + ACTIONS(3959), 29, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -296565,6 +299265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute__, anon_sym___attribute, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -296577,7 +299278,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6400), 35, + ACTIONS(3961), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -296593,9 +299294,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_SEMI, anon_sym_COLON, - anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -296613,10 +299313,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [2843] = 3, + [1490] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6398), 28, + ACTIONS(5845), 1, + anon_sym_LPAREN2, + ACTIONS(6414), 1, + anon_sym_LBRACK, + ACTIONS(6418), 1, + anon_sym_DOT, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + ACTIONS(6416), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6420), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6460), 27, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -296643,9 +299359,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, sym_identifier, - ACTIONS(6400), 35, + ACTIONS(6462), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -296653,17 +299368,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -296677,14 +299388,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [2914] = 3, + [1575] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6501), 28, + ACTIONS(6468), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(6464), 29, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -296701,6 +299410,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute__, anon_sym___attribute, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -296713,7 +299423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6503), 35, + ACTIONS(6466), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -296729,9 +299439,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_SEMI, anon_sym_COLON, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -296749,11 +299457,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [2985] = 3, + [1648] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6505), 29, - aux_sym_preproc_elif_token1, + ACTIONS(6470), 1, + sym_identifier, + STATE(2415), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(4509), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(4511), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(5397), 23, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -296767,13 +299492,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -296781,26 +299500,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(6507), 34, + anon_sym_DASH_GT, + sym_literal_suffix, + ACTIONS(5395), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -296816,12 +299528,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [3056] = 3, + anon_sym_DASH_GT_STAR, + [1727] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6509), 28, - aux_sym_preproc_elif_token1, + ACTIONS(5601), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -296835,8 +299546,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -296848,27 +299557,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, + anon_sym_DASH_GT, sym_identifier, - ACTIONS(6511), 35, + sym_literal_suffix, + ACTIONS(5603), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -296884,13 +299586,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [3127] = 4, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_DASH_GT_STAR, + [1798] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5454), 1, - anon_sym_COLON_COLON, - ACTIONS(5452), 12, + ACTIONS(6472), 1, + sym_auto, + ACTIONS(6474), 1, + anon_sym_decltype, + STATE(2483), 1, + sym_decltype_auto, + ACTIONS(5535), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -296899,18 +299615,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5450), 50, + ACTIONS(5533), 47, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, - anon_sym_COLON, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -296946,22 +299662,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym___asm, sym_identifier, - sym_auto, - anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_template, anon_sym_operator, anon_sym_try, anon_sym_requires, - [3200] = 5, + [1875] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(6517), 1, - anon_sym_LT, - STATE(2338), 1, - sym_template_argument_list, - ACTIONS(6513), 27, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5495), 1, + anon_sym___declspec, + ACTIONS(6472), 1, + sym_auto, + ACTIONS(6474), 1, + anon_sym_decltype, + ACTIONS(6480), 1, + anon_sym_virtual, + STATE(2483), 1, + sym_decltype_auto, + STATE(3054), 1, + sym_alignas_qualifier, + ACTIONS(5489), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(5497), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2577), 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(5487), 9, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + ACTIONS(6478), 11, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6476), 12, + anon_sym_AMP, + 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, + anon_sym_template, + anon_sym_operator, + ACTIONS(5483), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [1970] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6482), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -296973,6 +299763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym___attribute__, @@ -296989,7 +299780,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6515), 34, + ACTIONS(6484), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -297005,6 +299796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_SEMI, anon_sym_COLON, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, @@ -297024,11 +299816,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [3275] = 3, + [2041] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(5140), 28, - aux_sym_preproc_elif_token1, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5495), 1, + anon_sym___declspec, + ACTIONS(6472), 1, + sym_auto, + ACTIONS(6474), 1, + anon_sym_decltype, + ACTIONS(6490), 1, + anon_sym_virtual, + STATE(2483), 1, + sym_decltype_auto, + STATE(3054), 1, + sym_alignas_qualifier, + ACTIONS(5489), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(5497), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2586), 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(5487), 9, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + ACTIONS(6488), 11, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6486), 12, + anon_sym_AMP, + 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, + anon_sym_template, + anon_sym_operator, + ACTIONS(5483), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [2136] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6492), 1, + sym_identifier, + STATE(2419), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(4509), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(4511), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(5403), 23, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -297042,12 +299931,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -297055,26 +299939,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(5142), 34, + anon_sym_DASH_GT, + sym_literal_suffix, + ACTIONS(5401), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -297090,78 +299967,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [3345] = 3, + anon_sym_DASH_GT_STAR, + [2215] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5768), 13, + ACTIONS(5470), 27, + 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_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + anon_sym_DASH_GT, + sym_identifier, + sym_literal_suffix, + ACTIONS(5472), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5766), 49, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [3415] = 3, + 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_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_DASH_GT_STAR, + [2286] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3895), 28, + ACTIONS(6494), 29, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -297178,6 +300056,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute__, anon_sym___attribute, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -297190,7 +300069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(3891), 34, + ACTIONS(6496), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -297206,8 +300085,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_SEMI, anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -297225,77 +300104,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [3485] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5780), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5778), 49, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [3555] = 3, + [2357] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6520), 28, + ACTIONS(6498), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -297324,7 +300136,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6522), 34, + ACTIONS(6500), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -297340,6 +300152,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_SEMI, anon_sym_COLON, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, @@ -297359,11 +300172,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [3625] = 3, + [2428] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5180), 28, - aux_sym_preproc_elif_token1, + ACTIONS(5641), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -297377,8 +300189,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -297390,26 +300200,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, + anon_sym_DASH_GT, sym_identifier, - ACTIONS(5182), 34, + sym_literal_suffix, + ACTIONS(5643), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -297425,11 +300229,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [3695] = 3, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_DASH_GT_STAR, + [2499] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4972), 28, + ACTIONS(6502), 29, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -297446,6 +300260,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute__, anon_sym___attribute, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -297458,7 +300273,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(4965), 34, + ACTIONS(6504), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -297474,8 +300289,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_SEMI, anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -297493,10 +300308,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [3765] = 3, + [2570] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4972), 28, + ACTIONS(6506), 29, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -297513,6 +300328,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute__, anon_sym___attribute, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -297525,7 +300341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(4965), 34, + ACTIONS(6508), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -297541,8 +300357,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_SEMI, anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -297560,10 +300376,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [3835] = 3, + [2641] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4972), 28, + ACTIONS(5845), 1, + anon_sym_LPAREN2, + ACTIONS(6414), 1, + anon_sym_LBRACK, + ACTIONS(6418), 1, + anon_sym_DOT, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + ACTIONS(6416), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6420), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6510), 27, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -297590,9 +300422,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, sym_identifier, - ACTIONS(4965), 34, + ACTIONS(6512), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -297600,16 +300431,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_COLON, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -297623,14 +300451,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + [2726] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(2324), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(6230), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(6232), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(5917), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [3905] = 3, + anon_sym_GT2, + ACTIONS(5915), 27, + 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_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + [2803] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4972), 28, + ACTIONS(5845), 1, + anon_sym_LPAREN2, + ACTIONS(6414), 1, + anon_sym_LBRACK, + ACTIONS(6418), 1, + anon_sym_DOT, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + ACTIONS(6420), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6514), 27, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -297657,9 +300565,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, sym_identifier, - ACTIONS(4965), 34, + ACTIONS(6516), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -297667,16 +300574,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_COLON, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -297692,12 +300596,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [3975] = 3, + [2886] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4972), 28, + ACTIONS(5845), 1, + anon_sym_LPAREN2, + ACTIONS(6414), 1, + anon_sym_LBRACK, + ACTIONS(6418), 1, + anon_sym_DOT, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + ACTIONS(6416), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6420), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6518), 27, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -297724,9 +300642,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, sym_identifier, - ACTIONS(4965), 34, + ACTIONS(6520), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -297734,16 +300651,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_COLON, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -297757,14 +300671,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [4045] = 3, + [2971] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4972), 28, + ACTIONS(3943), 29, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -297781,6 +300691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute__, anon_sym___attribute, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -297793,7 +300704,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(4965), 34, + ACTIONS(3945), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -297809,8 +300720,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_SEMI, anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -297828,11 +300739,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [4115] = 3, + [3042] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5136), 28, - aux_sym_preproc_elif_token1, + ACTIONS(5563), 1, + anon_sym_COLON, + ACTIONS(6522), 1, + anon_sym___attribute__, + ACTIONS(6524), 1, + anon_sym___attribute, + ACTIONS(6526), 1, + anon_sym_LBRACE, + STATE(2846), 1, + sym_field_declaration_list, + STATE(3070), 1, + sym_attribute_specifier, + STATE(7175), 1, + sym_virtual_specifier, + STATE(7885), 1, + sym_base_class_clause, + ACTIONS(6037), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5557), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -297846,39 +300775,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(5138), 34, + anon_sym_DASH_GT, + ACTIONS(5559), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -297890,15 +300803,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [4185] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [3131] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5136), 28, + ACTIONS(6406), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -297927,7 +300848,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5138), 34, + ACTIONS(6408), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -297943,6 +300864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_SEMI, anon_sym_COLON, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, @@ -297962,10 +300884,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [4255] = 3, + [3202] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5519), 1, + anon_sym_COLON_COLON, + ACTIONS(5517), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5515), 50, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + 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_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [3275] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6528), 1, + anon_sym_COLON, + ACTIONS(6530), 1, + anon_sym_LBRACE, + STATE(2495), 1, + sym_attribute_specifier, + STATE(2916), 1, + sym_field_declaration_list, + STATE(7168), 1, + sym_virtual_specifier, + STATE(7765), 1, + sym_base_class_clause, + ACTIONS(5489), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(5567), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5559), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5557), 40, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + 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_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [3361] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5136), 28, + ACTIONS(6532), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -297994,7 +301060,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5138), 34, + ACTIONS(6534), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -298029,10 +301095,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [4325] = 3, + [3431] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5442), 28, + ACTIONS(6536), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -298061,7 +301127,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(2685), 34, + ACTIONS(6538), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -298096,10 +301162,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [4395] = 3, + [3501] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5489), 26, + ACTIONS(4174), 28, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -298113,6 +301180,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -298124,19 +301193,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - sym_literal_suffix, - ACTIONS(5491), 36, + sym_identifier, + ACTIONS(4166), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -298152,21 +301228,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - anon_sym_DASH_GT_STAR, - [4465] = 3, + anon_sym_DASH_GT, + [3571] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6524), 28, + ACTIONS(6540), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -298195,7 +301261,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6526), 34, + ACTIONS(6542), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -298230,10 +301296,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [4535] = 3, + [3641] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6528), 28, + ACTIONS(6544), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -298262,7 +301328,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6530), 34, + ACTIONS(6546), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -298297,10 +301363,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [4605] = 3, + [3711] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5152), 28, + ACTIONS(6548), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -298329,7 +301395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5154), 34, + ACTIONS(6550), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -298364,10 +301430,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [4675] = 3, + [3781] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5166), 28, + ACTIONS(6552), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -298396,7 +301462,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5168), 34, + ACTIONS(6554), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -298431,10 +301497,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [4745] = 3, + [3851] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 28, + ACTIONS(6556), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -298463,7 +301529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(1934), 34, + ACTIONS(6558), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -298498,10 +301564,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [4815] = 3, + [3921] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6532), 28, + ACTIONS(5766), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5764), 49, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [3991] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -298530,7 +301663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6534), 34, + ACTIONS(4166), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -298565,10 +301698,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [4885] = 3, + [4061] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6536), 28, + ACTIONS(6560), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -298597,7 +301730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6538), 34, + ACTIONS(6562), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -298632,10 +301765,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [4955] = 3, + [4131] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5170), 28, + ACTIONS(6564), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -298664,7 +301797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5172), 34, + ACTIONS(6566), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -298699,10 +301832,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [5025] = 3, + [4201] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5188), 28, + ACTIONS(5740), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5738), 49, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [4271] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6568), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -298731,7 +301931,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5190), 34, + ACTIONS(6570), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -298766,28 +301966,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [5095] = 11, + [4341] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6540), 1, - anon_sym_COLON, - ACTIONS(6542), 1, + ACTIONS(5770), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - STATE(2513), 1, - sym_attribute_specifier, - STATE(2894), 1, - sym_field_declaration_list, - STATE(7003), 1, - sym_virtual_specifier, - STATE(7790), 1, - sym_base_class_clause, - ACTIONS(5468), 2, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5768), 49, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [4411] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5722), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5720), 49, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5503), 2, + 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_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - ACTIONS(5495), 12, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [4481] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5774), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -298798,13 +302114,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5493), 40, + ACTIONS(5772), 49, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -298836,15 +302155,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, sym_identifier, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_template, anon_sym_operator, - [5181] = 3, + anon_sym_try, + anon_sym_requires, + [4551] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6544), 28, + ACTIONS(5714), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5712), 49, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [4621] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5762), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5760), 49, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [4691] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6572), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -298873,7 +302333,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6546), 34, + ACTIONS(6574), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -298908,10 +302368,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [5251] = 3, + [4761] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6548), 28, + ACTIONS(5790), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5788), 49, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [4831] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6576), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -298940,7 +302467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6550), 34, + ACTIONS(6578), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -298975,88 +302502,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [5321] = 3, + [4901] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5577), 26, - 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_EQ, + ACTIONS(4187), 1, + anon_sym_COLON_COLON, + ACTIONS(6580), 1, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + STATE(1623), 1, + sym_template_argument_list, + STATE(2660), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(4194), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6060), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - anon_sym_DASH_GT, - sym_literal_suffix, - ACTIONS(5579), 36, + anon_sym_GT2, + ACTIONS(6058), 42, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [4981] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5778), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5776), 49, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_LBRACK, - anon_sym_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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - anon_sym_DASH_GT_STAR, - [5391] = 7, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [5051] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4167), 1, + ACTIONS(4187), 1, anon_sym_COLON_COLON, - STATE(1603), 1, + STATE(1623), 1, sym_template_argument_list, - STATE(2589), 1, + STATE(2633), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(6552), 4, + ACTIONS(6582), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5977), 21, + ACTIONS(6058), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -299078,7 +302677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5979), 34, + ACTIONS(6060), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -299113,77 +302712,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [5469] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6554), 28, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(6556), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, - 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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [5539] = 3, + [5129] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5772), 13, + ACTIONS(5782), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -299197,7 +302729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5770), 49, + ACTIONS(5780), 49, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -299247,11 +302779,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [5609] = 3, + [5199] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(6558), 28, - aux_sym_preproc_elif_token1, + ACTIONS(5563), 1, + anon_sym_COLON, + ACTIONS(6584), 1, + anon_sym___attribute__, + ACTIONS(6586), 1, + anon_sym___attribute, + ACTIONS(6588), 1, + anon_sym_LBRACE, + STATE(2891), 1, + sym_field_declaration_list, + STATE(3250), 1, + sym_attribute_specifier, + STATE(7046), 1, + sym_virtual_specifier, + STATE(7786), 1, + sym_base_class_clause, + ACTIONS(6037), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5557), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -299261,43 +302811,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(6560), 34, + ACTIONS(5559), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -299305,19 +302838,27 @@ static const uint16_t ts_small_parse_table[] = { 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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [5679] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [5287] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6562), 28, + ACTIONS(6590), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -299346,7 +302887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6564), 34, + ACTIONS(6592), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -299381,77 +302922,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [5749] = 3, + [5357] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6566), 28, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(6568), 34, + ACTIONS(5703), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5701), 49, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_LBRACK, - anon_sym_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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [5819] = 3, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [5427] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5478), 28, + ACTIONS(5470), 26, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -299461,13 +303002,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, @@ -299478,16 +303017,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, + anon_sym_DASH_GT, sym_literal_suffix, - ACTIONS(5480), 34, + ACTIONS(5472), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -299496,6 +303037,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -299503,22 +303045,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - anon_sym_GT2, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [5889] = 3, + anon_sym_DASH_GT_STAR, + [5497] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5577), 28, + ACTIONS(1936), 28, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -299528,13 +303070,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, @@ -299546,16 +303088,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_literal_suffix, - ACTIONS(5579), 34, + ACTIONS(1934), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -299563,6 +303114,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -299571,21 +303123,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, + [5567] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5818), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_GT2, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [5959] = 3, + ACTIONS(5816), 49, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [5637] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5482), 28, + ACTIONS(5601), 28, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -299614,7 +303222,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, sym_identifier, sym_literal_suffix, - ACTIONS(5484), 34, + ACTIONS(5603), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -299649,10 +303257,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [6029] = 3, + [5707] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5489), 28, + ACTIONS(5641), 28, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -299681,7 +303289,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, sym_identifier, sym_literal_suffix, - ACTIONS(5491), 34, + ACTIONS(5643), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -299716,78 +303324,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [6099] = 3, + [5777] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6570), 28, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(6572), 34, + ACTIONS(5786), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5784), 49, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_LBRACK, - anon_sym_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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [6169] = 3, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [5847] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6574), 28, - aux_sym_preproc_elif_token1, + ACTIONS(5470), 28, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -299797,13 +303404,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, @@ -299815,25 +303422,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6576), 34, + sym_literal_suffix, + ACTIONS(5472), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -299841,7 +303439,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -299850,10 +303447,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [6239] = 3, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_GT2, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [5917] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5478), 26, + ACTIONS(5477), 28, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -299863,11 +303471,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, @@ -299878,18 +303488,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, + sym_identifier, sym_literal_suffix, - ACTIONS(5480), 36, + ACTIONS(5479), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -299898,7 +303506,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -299906,88 +303513,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, + anon_sym_GT2, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - anon_sym_DASH_GT_STAR, - [6309] = 3, + [5987] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6578), 28, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(6580), 34, + ACTIONS(5726), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5724), 49, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_LBRACK, - anon_sym_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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [6379] = 3, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [6057] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6582), 28, + ACTIONS(6594), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -300016,7 +303624,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6584), 34, + ACTIONS(6596), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -300051,10 +303659,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [6449] = 3, + [6127] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5662), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5660), 49, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [6197] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6586), 28, + ACTIONS(6598), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -300083,7 +303758,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6588), 34, + ACTIONS(6600), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -300118,10 +303793,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [6519] = 3, + [6267] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5665), 13, + ACTIONS(5699), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -300135,7 +303810,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5663), 49, + ACTIONS(5697), 49, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -300185,77 +303860,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [6589] = 3, + [6337] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6590), 28, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(6592), 34, + ACTIONS(5668), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5666), 49, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_LBRACK, - anon_sym_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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [6659] = 3, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [6407] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6594), 28, + ACTIONS(6602), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -300284,7 +303959,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6596), 34, + ACTIONS(6604), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -300319,10 +303994,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [6729] = 3, + [6477] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5192), 28, + ACTIONS(6606), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -300351,7 +304026,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5194), 34, + ACTIONS(6608), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -300386,10 +304061,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [6799] = 3, + [6547] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5162), 28, + ACTIONS(5188), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -300418,7 +304093,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5164), 34, + ACTIONS(5190), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -300453,14 +304128,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [6869] = 5, + [6617] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6598), 1, - anon_sym_AMP_AMP, - ACTIONS(6600), 1, - anon_sym_and, - ACTIONS(6178), 27, + ACTIONS(6610), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -300482,13 +304153,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or_eq, anon_sym_xor_eq, anon_sym_or, + anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6180), 33, + ACTIONS(6612), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -300498,6 +304170,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -300522,10 +304195,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [6943] = 3, + [6687] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5148), 28, + ACTIONS(6614), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -300554,7 +304227,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5150), 34, + ACTIONS(6616), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -300589,10 +304262,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [7013] = 3, + [6757] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4154), 28, + ACTIONS(6618), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6620), 1, + anon_sym_AMP_AMP, + ACTIONS(6622), 1, + anon_sym_or, + ACTIONS(6624), 1, + anon_sym_and, + ACTIONS(6298), 26, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -300613,15 +304294,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(4146), 34, + ACTIONS(6300), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -300630,8 +304309,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -300656,10 +304333,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [7083] = 3, + [6835] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5132), 28, + ACTIONS(3903), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -300688,7 +304365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5134), 34, + ACTIONS(3899), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -300723,24 +304400,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [7153] = 10, + [6905] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5497), 1, - anon_sym___attribute, - ACTIONS(5987), 1, - anon_sym_LBRACE, - ACTIONS(6602), 1, - anon_sym___attribute__, - ACTIONS(6604), 1, - anon_sym_COLON, - STATE(2116), 1, - sym__enum_base_clause, - STATE(2181), 1, - sym_enumerator_list, - STATE(2228), 1, - sym_attribute_specifier, - ACTIONS(6342), 18, + ACTIONS(6564), 28, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -300754,15 +304418,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(6344), 37, + sym_identifier, + ACTIONS(6566), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -300770,6 +304447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, + anon_sym_COLON, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, @@ -300784,23 +304462,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [7237] = 3, + [6975] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6606), 28, + ACTIONS(6626), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -300829,7 +304499,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6608), 34, + ACTIONS(6628), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -300864,10 +304534,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [7307] = 3, + [7045] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6610), 28, + ACTIONS(6630), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -300896,7 +304566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6612), 34, + ACTIONS(6632), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -300931,10 +304601,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [7377] = 3, + [7115] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6614), 28, + ACTIONS(6634), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -300963,7 +304633,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6616), 34, + ACTIONS(6636), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -300998,7 +304668,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [7447] = 3, + [7185] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5730), 13, @@ -301065,144 +304735,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [7517] = 3, + [7255] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5734), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(6638), 28, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5732), 49, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym___attribute__, anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [7587] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5738), 13, + ACTIONS(6640), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5736), 49, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + anon_sym_COLON, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [7657] = 3, + 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_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [7325] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6618), 28, + ACTIONS(5192), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -301231,7 +304834,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6620), 34, + ACTIONS(5194), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -301266,10 +304869,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [7727] = 3, + [7395] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6622), 28, + ACTIONS(4934), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -301298,7 +304901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6624), 34, + ACTIONS(4927), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -301333,18 +304936,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [7797] = 7, + [7465] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6598), 1, - anon_sym_AMP_AMP, - ACTIONS(6600), 1, - anon_sym_and, - ACTIONS(6626), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6628), 1, - anon_sym_or, - ACTIONS(6253), 26, + ACTIONS(4934), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -301365,13 +304960,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6255), 32, + ACTIONS(4927), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -301380,6 +304977,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -301404,23 +305003,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [7875] = 8, + [7535] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4167), 1, - anon_sym_COLON_COLON, - ACTIONS(6630), 1, - anon_sym_LT, - STATE(1603), 1, - sym_template_argument_list, - STATE(2641), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(4174), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5979), 12, + ACTIONS(5744), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -301429,11 +305015,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5977), 42, + ACTIONS(5742), 49, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -301471,15 +305058,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, sym_identifier, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_template, anon_sym_operator, - [7955] = 3, + anon_sym_try, + anon_sym_requires, + [7605] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5752), 13, + ACTIONS(5798), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -301493,7 +305087,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5750), 49, + ACTIONS(5796), 49, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -301543,77 +305137,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [8025] = 3, + [7675] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5756), 13, + ACTIONS(6642), 28, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(6644), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5754), 49, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + anon_sym_COLON, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [8095] = 3, + 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_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [7745] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5760), 13, + ACTIONS(5722), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -301627,7 +305221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5758), 49, + ACTIONS(5720), 49, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -301677,10 +305271,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [8165] = 3, + [7815] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6632), 28, + ACTIONS(6646), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -301709,7 +305303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6634), 34, + ACTIONS(6648), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -301744,10 +305338,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [8235] = 3, + [7885] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5647), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5645), 49, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [7955] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6477), 28, + ACTIONS(4934), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -301776,7 +305437,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6479), 34, + ACTIONS(4927), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -301811,10 +305472,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [8305] = 3, + [8025] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5184), 28, + ACTIONS(4934), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -301843,7 +305504,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5186), 34, + ACTIONS(4927), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -301878,10 +305539,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [8375] = 3, + [8095] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4154), 28, + ACTIONS(6650), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -301910,7 +305571,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(4146), 34, + ACTIONS(6652), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -301945,10 +305606,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [8445] = 3, + [8165] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6636), 28, + ACTIONS(5695), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5693), 49, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [8235] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4934), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -301977,7 +305705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6638), 34, + ACTIONS(4927), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -302012,10 +305740,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [8515] = 3, + [8305] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6640), 28, + ACTIONS(4934), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -302044,7 +305772,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6642), 34, + ACTIONS(4927), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -302079,10 +305807,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [8585] = 3, + [8375] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5776), 13, + ACTIONS(5802), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -302096,7 +305824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5774), 49, + ACTIONS(5800), 49, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -302146,77 +305874,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [8655] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6644), 28, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(6646), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, - 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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [8725] = 3, + [8445] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6648), 28, + ACTIONS(6464), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -302245,7 +305906,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6650), 34, + ACTIONS(6466), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -302280,10 +305941,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [8795] = 3, + [8515] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6652), 28, + ACTIONS(6654), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -302312,7 +305973,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6654), 34, + ACTIONS(6656), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -302347,278 +306008,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [8865] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5742), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5740), 49, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [8935] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5784), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5782), 49, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [9005] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5788), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5786), 49, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [9075] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5792), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5790), 49, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [9145] = 3, + [8585] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5796), 13, + ACTIONS(5806), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -302632,7 +306025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5794), 49, + ACTIONS(5804), 49, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -302682,10 +306075,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [9215] = 3, + [8655] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5788), 13, + ACTIONS(5810), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -302699,7 +306092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5786), 49, + ACTIONS(5808), 49, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -302744,82 +306137,15 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_final, - anon_sym_override, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [9285] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6656), 28, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(6658), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, - 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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [9355] = 3, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [8725] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6660), 28, + ACTIONS(5196), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -302848,7 +306174,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6662), 34, + ACTIONS(5198), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -302883,10 +306209,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [9425] = 3, + [8795] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6664), 28, + ACTIONS(5196), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -302915,7 +306241,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6666), 34, + ACTIONS(5198), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -302950,10 +306276,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [9495] = 3, + [8865] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6668), 28, + ACTIONS(5196), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -302982,7 +306308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6670), 34, + ACTIONS(5198), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -303017,10 +306343,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [9565] = 3, + [8935] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5814), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5812), 49, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [9005] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6672), 28, + ACTIONS(5180), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -303049,7 +306442,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6674), 34, + ACTIONS(5182), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -303084,10 +306477,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [9635] = 3, + [9075] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5806), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5804), 49, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [9145] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6676), 28, + ACTIONS(5144), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -303116,7 +306576,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6678), 34, + ACTIONS(5146), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -303151,11 +306611,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [9705] = 3, + [9215] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6680), 28, - aux_sym_preproc_elif_token1, + ACTIONS(5601), 26, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -303169,8 +306628,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -303182,26 +306639,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(6682), 34, + anon_sym_DASH_GT, + sym_literal_suffix, + ACTIONS(5603), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -303217,11 +306667,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [9775] = 3, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_DASH_GT_STAR, + [9285] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6684), 28, + ACTIONS(5450), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -303250,7 +306710,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6686), 34, + ACTIONS(2729), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -303285,10 +306745,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [9845] = 3, + [9355] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5701), 13, + ACTIONS(5683), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -303302,7 +306762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5699), 49, + ACTIONS(5681), 49, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -303352,10 +306812,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [9915] = 3, + [9425] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5649), 13, + ACTIONS(5687), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -303369,7 +306829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5647), 49, + ACTIONS(5685), 49, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -303419,29 +306879,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [9985] = 12, + [9495] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5499), 1, - anon_sym_COLON, - ACTIONS(6688), 1, - anon_sym___attribute__, - ACTIONS(6690), 1, - anon_sym___attribute, - ACTIONS(6692), 1, - anon_sym_LBRACE, - STATE(2858), 1, - sym_field_declaration_list, - STATE(3172), 1, - sym_attribute_specifier, - STATE(7111), 1, - sym_virtual_specifier, - STATE(7888), 1, - sym_base_class_clause, - ACTIONS(6020), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5493), 20, + ACTIONS(6620), 1, + anon_sym_AMP_AMP, + ACTIONS(6624), 1, + anon_sym_and, + ACTIONS(6248), 27, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -303451,26 +306897,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, anon_sym_EQ, - anon_sym_GT_GT_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_or, - anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(5495), 32, + sym_identifier, + ACTIONS(6250), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -303478,94 +306939,19 @@ static const uint16_t ts_small_parse_table[] = { 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [10073] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5800), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5798), 49, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [10143] = 3, + [9569] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5999), 28, + ACTIONS(5184), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -303594,7 +306980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5997), 34, + ACTIONS(5186), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -303629,10 +307015,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [10213] = 3, + [9639] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6694), 28, + ACTIONS(1940), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -303661,7 +307047,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6696), 34, + ACTIONS(1938), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -303696,10 +307082,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [10283] = 3, + [9709] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5653), 13, + ACTIONS(5691), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -303713,7 +307099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5651), 49, + ACTIONS(5689), 49, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -303763,144 +307149,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [10353] = 3, + [9779] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5657), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(6006), 28, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5655), 49, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym___attribute__, anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [10423] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5661), 13, + ACTIONS(6004), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5659), 49, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + anon_sym_COLON, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [10493] = 3, + 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_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [9849] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5675), 13, + ACTIONS(5707), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -303914,7 +307233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5673), 49, + ACTIONS(5705), 49, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -303964,211 +307283,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [10563] = 3, + [9919] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5679), 13, + ACTIONS(5477), 26, + 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_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + anon_sym_DASH_GT, + sym_literal_suffix, + ACTIONS(5479), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5677), 49, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [10633] = 3, + 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_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_DASH_GT_STAR, + [9989] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5687), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(6658), 28, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5685), 49, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym___attribute__, anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [10703] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5694), 13, + ACTIONS(6660), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5692), 49, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + anon_sym_COLON, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [10773] = 3, + 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_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [10059] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6698), 28, + ACTIONS(5170), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -304197,7 +307449,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6700), 34, + ACTIONS(5172), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -304232,278 +307484,211 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [10843] = 3, + [10129] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5679), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(6662), 28, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5677), 49, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym___attribute__, anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [10913] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5679), 13, + ACTIONS(6664), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5677), 49, + anon_sym_COLON, + anon_sym_RBRACE, + 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_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [10199] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6666), 28, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym___attribute__, anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [10983] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5669), 13, + ACTIONS(6668), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5667), 49, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + anon_sym_COLON, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, + 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_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [10269] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6670), 28, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [11053] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5683), 13, + ACTIONS(6672), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5681), 49, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + anon_sym_COLON, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [11123] = 3, + 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_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [10339] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1940), 28, + ACTIONS(6674), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -304532,7 +307717,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(1938), 34, + ACTIONS(6676), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -304567,10 +307752,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [11193] = 3, + [10409] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5482), 26, + ACTIONS(5641), 26, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -304597,7 +307782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_DASH_GT, sym_literal_suffix, - ACTIONS(5484), 36, + ACTIONS(5643), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -304634,10 +307819,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, anon_sym_DASH_GT_STAR, - [11263] = 3, + [10479] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6702), 28, + ACTIONS(6678), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -304666,7 +307851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6704), 34, + ACTIONS(6680), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -304701,10 +307886,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [11333] = 3, + [10549] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5764), 13, + ACTIONS(5718), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -304718,7 +307903,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5762), 49, + ACTIONS(5716), 49, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -304768,10 +307953,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [11403] = 3, + [10619] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5452), 13, + ACTIONS(5722), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -304785,7 +307970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5450), 49, + ACTIONS(5720), 49, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -304835,10 +308020,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [11473] = 3, + [10689] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6706), 28, + ACTIONS(6682), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -304867,7 +308052,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6708), 34, + ACTIONS(6684), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -304902,10 +308087,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [11543] = 3, + [10759] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6548), 28, + ACTIONS(5200), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -304934,7 +308119,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6550), 34, + ACTIONS(5202), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -304969,10 +308154,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [11613] = 3, + [10829] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6710), 28, + ACTIONS(6686), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -305001,7 +308186,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6712), 34, + ACTIONS(6688), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -305036,10 +308221,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [11683] = 3, + [10899] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5144), 28, + ACTIONS(5140), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -305068,7 +308253,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5146), 34, + ACTIONS(5142), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -305103,24 +308288,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [11753] = 10, + [10969] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5497), 1, - anon_sym___attribute, - ACTIONS(5987), 1, - anon_sym_LBRACE, - ACTIONS(6602), 1, - anon_sym___attribute__, - ACTIONS(6604), 1, - anon_sym_COLON, - STATE(2051), 1, - sym__enum_base_clause, - STATE(2191), 1, - sym_enumerator_list, - STATE(2258), 1, - sym_attribute_specifier, - ACTIONS(6336), 18, + ACTIONS(6690), 28, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -305134,15 +308306,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(6338), 37, + sym_identifier, + ACTIONS(6692), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -305150,6 +308335,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, + anon_sym_COLON, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, @@ -305164,23 +308350,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [11837] = 3, + [11039] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5804), 13, + ACTIONS(5755), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -305194,7 +308372,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5802), 49, + ACTIONS(5753), 49, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -305244,211 +308422,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [11907] = 3, + [11109] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5808), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(6694), 28, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5806), 49, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym___attribute__, anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [11977] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5812), 13, + ACTIONS(6696), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5810), 49, + anon_sym_COLON, + anon_sym_RBRACE, + 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_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [11179] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6698), 28, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym___attribute__, anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [12047] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5639), 13, + ACTIONS(6700), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5637), 49, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + anon_sym_COLON, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [12117] = 3, + 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_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [11249] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6714), 28, + ACTIONS(6702), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -305477,7 +308588,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6716), 34, + ACTIONS(6704), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -305512,61 +308623,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [12187] = 4, + [11319] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5454), 1, - anon_sym_COLON_COLON, - ACTIONS(5617), 14, + ACTIONS(5561), 1, + anon_sym___attribute, + ACTIONS(6070), 1, + anon_sym_LBRACE, + ACTIONS(6706), 1, + anon_sym___attribute__, + ACTIONS(6708), 1, + anon_sym_COLON, + STATE(2133), 1, + sym__enum_base_clause, + STATE(2246), 1, + sym_enumerator_list, + STATE(2323), 1, + sym_attribute_specifier, + ACTIONS(6393), 18, 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_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_const, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(5619), 46, + ACTIONS(6395), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + 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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -305575,21 +308697,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [12258] = 5, + [11403] = 3, ACTIONS(3), 1, sym_comment, - STATE(2545), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6718), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5904), 20, + ACTIONS(6710), 28, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -305603,26 +308715,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, anon_sym___attribute, anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5902), 36, + sym_identifier, + ACTIONS(6712), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -305634,115 +308759,163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [12331] = 3, + anon_sym_DASH_GT, + [11473] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4955), 14, + ACTIONS(6714), 28, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, anon_sym___attribute, - anon_sym_COLON, - anon_sym_const, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(4957), 47, + sym_identifier, + ACTIONS(6716), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + 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_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [11543] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5148), 28, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(5150), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RBRACE, + 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_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [12400] = 9, + [11613] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3615), 1, - anon_sym_LBRACE, - ACTIONS(6720), 1, - anon_sym_LPAREN2, - STATE(2436), 1, - sym_argument_list, - STATE(2616), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3806), 1, - sym_initializer_list, - ACTIONS(6723), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5452), 10, + ACTIONS(5517), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_EQ, - ACTIONS(5450), 42, + anon_sym_GT2, + ACTIONS(5515), 49, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -305780,329 +308953,352 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, sym_identifier, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_template, anon_sym_operator, - [12481] = 3, + anon_sym_try, + anon_sym_requires, + [11683] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4984), 14, + ACTIONS(5152), 28, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, anon_sym___attribute, - anon_sym_COLON, - anon_sym_const, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(4986), 47, + sym_identifier, + ACTIONS(5154), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + 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_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [12550] = 3, + [11753] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4980), 14, + ACTIONS(5156), 28, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, anon_sym___attribute, - anon_sym_COLON, - anon_sym_const, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(4982), 47, + sym_identifier, + ACTIONS(5158), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + 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_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [12619] = 3, + [11823] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4992), 14, + ACTIONS(5160), 28, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, anon_sym___attribute, - anon_sym_COLON, - anon_sym_const, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(4994), 47, + sym_identifier, + ACTIONS(5162), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + 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_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [12688] = 3, + [11893] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4951), 14, + ACTIONS(6718), 28, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, anon_sym___attribute, - anon_sym_COLON, - anon_sym_const, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(4953), 47, + sym_identifier, + ACTIONS(6720), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + 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_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [12757] = 3, + [11963] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4959), 14, + ACTIONS(5561), 1, + anon_sym___attribute, + ACTIONS(6070), 1, + anon_sym_LBRACE, + ACTIONS(6706), 1, + anon_sym___attribute__, + ACTIONS(6708), 1, + anon_sym_COLON, + STATE(2160), 1, + sym__enum_base_clause, + STATE(2226), 1, + sym_enumerator_list, + STATE(2257), 1, + sym_attribute_specifier, + ACTIONS(6316), 18, 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_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_const, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4961), 47, + ACTIONS(6318), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + 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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -306111,89 +309307,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [12826] = 3, + [12047] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4988), 14, + ACTIONS(6722), 28, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, anon_sym___attribute, - anon_sym_COLON, - anon_sym_const, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(4990), 47, + sym_identifier, + ACTIONS(6724), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + 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_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [12895] = 6, + [12117] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5070), 1, - sym_primitive_type, - STATE(1918), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5877), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5156), 13, + ACTIONS(5822), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -306207,7 +309391,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5159), 42, + ACTIONS(5820), 49, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -306245,22 +309429,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, sym_identifier, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_template, anon_sym_operator, - [12970] = 5, + anon_sym_try, + anon_sym_requires, + [12187] = 5, ACTIONS(3), 1, sym_comment, - STATE(1634), 1, + STATE(2591), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(6725), 4, + ACTIONS(6726), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5910), 20, + ACTIONS(5887), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -306281,7 +309472,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5908), 36, + ACTIONS(5885), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -306318,17 +309509,17 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [13043] = 5, + [12260] = 5, ACTIONS(3), 1, sym_comment, - STATE(1634), 1, + STATE(1667), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(6725), 4, + ACTIONS(6728), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5918), 20, + ACTIONS(5893), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -306349,7 +309540,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5916), 36, + ACTIONS(5891), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -306386,83 +309577,17 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [13116] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4996), 14, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_const, - anon_sym_DOT, - ACTIONS(5003), 47, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [13185] = 5, + [12333] = 5, ACTIONS(3), 1, sym_comment, - STATE(2546), 1, + STATE(2600), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(6727), 4, + ACTIONS(6730), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5922), 20, + ACTIONS(5776), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -306483,7 +309608,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5920), 36, + ACTIONS(5778), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -306520,20 +309645,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [13258] = 8, + [12406] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6358), 1, - anon_sym___attribute__, - ACTIONS(6360), 1, - anon_sym___attribute, - ACTIONS(6729), 1, - anon_sym_LBRACE, - STATE(2577), 1, - sym_enumerator_list, - STATE(2700), 1, - sym_attribute_specifier, - ACTIONS(5983), 12, + ACTIONS(5006), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -306544,9 +309659,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, anon_sym_const, anon_sym_DOT, - ACTIONS(5985), 44, + ACTIONS(5008), 47, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -306559,6 +309676,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_LT, anon_sym___extension__, + anon_sym___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, @@ -306591,95 +309711,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [13337] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, - anon_sym___declspec, - ACTIONS(6735), 1, - anon_sym_virtual, - STATE(2975), 1, - sym_alignas_qualifier, - ACTIONS(5468), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5476), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2574), 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(5466), 9, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(6733), 11, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5462), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(6731), 13, - anon_sym_AMP, - 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, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [13424] = 8, + [12475] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6358), 1, - anon_sym___attribute__, - ACTIONS(6360), 1, - anon_sym___attribute, - ACTIONS(6729), 1, - anon_sym_LBRACE, - STATE(2580), 1, - sym_enumerator_list, - STATE(2646), 1, - sym_attribute_specifier, - ACTIONS(6024), 12, + ACTIONS(5010), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -306690,9 +309725,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, anon_sym_const, anon_sym_DOT, - ACTIONS(6026), 44, + ACTIONS(5012), 47, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -306705,6 +309742,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_LT, anon_sym___extension__, + anon_sym___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, @@ -306737,285 +309777,274 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [13503] = 5, + [12544] = 3, ACTIONS(3), 1, sym_comment, - STATE(1634), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6725), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5928), 20, + ACTIONS(4998), 14, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, anon_sym___attribute, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym_COLON, + anon_sym_const, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5926), 36, + ACTIONS(5000), 47, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym___extension__, anon_sym___attribute__, + anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [13576] = 5, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [12613] = 3, ACTIONS(3), 1, sym_comment, - STATE(1634), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6725), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5896), 20, + ACTIONS(5014), 14, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, anon_sym___attribute, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym_COLON, + anon_sym_const, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5894), 36, + ACTIONS(5016), 47, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym___extension__, anon_sym___attribute__, + anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [13649] = 5, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [12682] = 3, ACTIONS(3), 1, sym_comment, - STATE(2553), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6737), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5932), 20, + ACTIONS(5002), 14, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, anon_sym___attribute, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym_COLON, + anon_sym_const, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5930), 36, + ACTIONS(5004), 47, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym___extension__, anon_sym___attribute__, + anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [13722] = 6, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [12751] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4167), 1, - anon_sym_COLON_COLON, - ACTIONS(6739), 1, - anon_sym_LT, - STATE(2591), 1, - sym_template_argument_list, - ACTIONS(5838), 20, + ACTIONS(4976), 14, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, + anon_sym_LT, anon_sym_GT_GT, anon_sym___attribute, anon_sym_COLON, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4172), 38, + ACTIONS(4978), 47, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym___extension__, anon_sym___attribute__, + anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_DASH_GT_STAR, - [13797] = 4, + anon_sym_GT2, + anon_sym_requires, + [12820] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5454), 1, - anon_sym_COLON_COLON, - ACTIONS(5617), 14, + ACTIONS(4980), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -307030,7 +310059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_const, anon_sym_DOT, - ACTIONS(5619), 46, + ACTIONS(4982), 47, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -307044,6 +310073,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym___extension__, anon_sym___attribute__, + anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_constexpr, @@ -307077,90 +310107,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [13868] = 3, + [12889] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5605), 14, + ACTIONS(4187), 1, + anon_sym_COLON_COLON, + ACTIONS(6732), 1, + anon_sym_LT, + STATE(2661), 1, + sym_template_argument_list, + ACTIONS(5834), 20, 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_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym___attribute, anon_sym_COLON, - anon_sym_const, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(5607), 47, + anon_sym_DASH_GT, + ACTIONS(4192), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, + anon_sym_GT_EQ, anon_sym___attribute__, - anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, 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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [13937] = 12, + anon_sym_DASH_GT_STAR, + [12964] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(6735), 1, + ACTIONS(6738), 1, anon_sym_virtual, - STATE(2975), 1, + STATE(3054), 1, sym_alignas_qualifier, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2574), 7, + STATE(2592), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -307168,7 +310201,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(5466), 9, + ACTIONS(5487), 9, anon_sym_extern, anon_sym_static, anon_sym_register, @@ -307178,7 +310211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - ACTIONS(6743), 11, + ACTIONS(6736), 11, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -307190,7 +310223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5462), 13, + ACTIONS(5483), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -307204,7 +310237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - ACTIONS(6741), 13, + ACTIONS(6734), 13, anon_sym_AMP, anon_sym___based, anon_sym___cdecl, @@ -307218,419 +310251,250 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [14024] = 6, + [13051] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4167), 1, - anon_sym_COLON_COLON, - ACTIONS(6745), 1, - anon_sym_LT, - STATE(2591), 1, - sym_template_argument_list, - ACTIONS(4963), 20, + ACTIONS(4984), 14, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, + anon_sym_LT, anon_sym_GT_GT, anon_sym___attribute, anon_sym_COLON, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4970), 38, + ACTIONS(4991), 47, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym___extension__, anon_sym___attribute__, + anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_DASH_GT_STAR, - [14099] = 3, + anon_sym_GT2, + anon_sym_requires, + [13120] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5478), 27, + ACTIONS(6359), 1, + anon_sym___attribute__, + ACTIONS(6361), 1, + anon_sym___attribute, + ACTIONS(6740), 1, + anon_sym_LBRACE, + STATE(2625), 1, + sym_enumerator_list, + STATE(2717), 1, + sym_attribute_specifier, + ACTIONS(6066), 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_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_const, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(5480), 34, + ACTIONS(6068), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, 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_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_GT2, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [14168] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5577), 27, - 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_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, - sym_literal_suffix, - ACTIONS(5579), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [14237] = 3, + anon_sym_requires, + [13199] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5482), 27, + ACTIONS(6359), 1, + anon_sym___attribute__, + ACTIONS(6361), 1, + anon_sym___attribute, + ACTIONS(6740), 1, + anon_sym_LBRACE, + STATE(2628), 1, + sym_enumerator_list, + STATE(2732), 1, + sym_attribute_specifier, + ACTIONS(6072), 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_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_const, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(5484), 34, + ACTIONS(6074), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, 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_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [14306] = 3, + anon_sym_requires, + [13278] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5489), 27, + ACTIONS(5519), 1, + anon_sym_COLON_COLON, + ACTIONS(5541), 14, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_const, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(5491), 34, + ACTIONS(5543), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_GT2, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [14375] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(2979), 1, - anon_sym_TILDE, - ACTIONS(4298), 1, - anon_sym_LPAREN2, - ACTIONS(5849), 1, - sym_identifier, - ACTIONS(5853), 1, - anon_sym_STAR, - ACTIONS(5855), 1, - anon_sym_AMP_AMP, - ACTIONS(5857), 1, - anon_sym_AMP, - ACTIONS(5861), 1, - anon_sym_COLON_COLON, - ACTIONS(5863), 1, - anon_sym_LBRACK, - STATE(3087), 1, - sym_parameter_list, - STATE(4289), 1, - sym_alignas_qualifier, - STATE(5860), 1, - sym__scope_resolution, - STATE(6087), 1, - sym__function_declarator_seq, - STATE(6349), 1, - sym__declarator, - STATE(6538), 1, - sym__abstract_declarator, - STATE(8106), 1, - sym_ms_based_modifier, - ACTIONS(3333), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(5867), 2, - anon_sym___attribute__, - anon_sym___attribute, - STATE(4131), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8601), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(5865), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_GT2, - STATE(6092), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(5998), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3331), 13, + anon_sym_LT_LT, anon_sym___extension__, - anon_sym_const, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -307642,172 +310506,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [14494] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(2979), 1, - anon_sym_TILDE, - ACTIONS(4298), 1, - anon_sym_LPAREN2, - ACTIONS(5849), 1, - sym_identifier, - ACTIONS(5853), 1, - anon_sym_STAR, - ACTIONS(5855), 1, - anon_sym_AMP_AMP, - ACTIONS(5857), 1, - anon_sym_AMP, - ACTIONS(5861), 1, - anon_sym_COLON_COLON, - ACTIONS(5863), 1, - anon_sym_LBRACK, - STATE(3087), 1, - sym_parameter_list, - STATE(4289), 1, - sym_alignas_qualifier, - STATE(5860), 1, - sym__scope_resolution, - STATE(6087), 1, - sym__function_declarator_seq, - STATE(6294), 1, - sym__declarator, - STATE(6539), 1, - sym__abstract_declarator, - STATE(8106), 1, - sym_ms_based_modifier, - ACTIONS(3333), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(6750), 2, - anon_sym___attribute__, - anon_sym___attribute, - STATE(4131), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8601), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(6748), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_GT2, - STATE(6092), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(5998), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3331), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [14613] = 6, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [13349] = 4, ACTIONS(3), 1, sym_comment, - STATE(2370), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(4411), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(4413), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(5912), 23, + ACTIONS(5519), 1, + anon_sym_COLON_COLON, + ACTIONS(5541), 14, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_const, anon_sym_DOT, - anon_sym_DASH_GT, - sym_literal_suffix, - ACTIONS(5914), 26, + ACTIONS(5543), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, 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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [14688] = 4, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [13420] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5454), 1, - anon_sym_COLON_COLON, - ACTIONS(5625), 14, + ACTIONS(5545), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -307822,7 +310611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_const, anon_sym_DOT, - ACTIONS(5627), 46, + ACTIONS(5547), 47, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -307836,6 +310625,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym___extension__, anon_sym___attribute__, + anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_constexpr, @@ -307869,23 +310659,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [14759] = 8, + [13489] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4167), 1, - anon_sym_COLON_COLON, - ACTIONS(6739), 1, - anon_sym_LT, - STATE(2571), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2591), 1, - sym_template_argument_list, - ACTIONS(6414), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4144), 18, + ACTIONS(5601), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -307895,26 +310672,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4152), 35, + sym_literal_suffix, + ACTIONS(5603), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -307923,34 +310706,170 @@ static const uint16_t ts_small_parse_table[] = { 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_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_GT2, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [13558] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5641), 27, + 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_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + ACTIONS(5643), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, + anon_sym_DASH_GT, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_GT2, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [13627] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5495), 1, + anon_sym___declspec, + ACTIONS(6738), 1, + anon_sym_virtual, + STATE(3054), 1, + sym_alignas_qualifier, + ACTIONS(5489), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(5497), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2592), 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(5487), 9, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + ACTIONS(6744), 11, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5483), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(6742), 13, + anon_sym_AMP, + 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, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [14838] = 5, + anon_sym_template, + anon_sym_operator, + [13714] = 3, ACTIONS(3), 1, sym_comment, - STATE(1634), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6725), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5890), 20, + ACTIONS(5477), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -307960,29 +310879,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5888), 36, + sym_literal_suffix, + ACTIONS(5479), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym___attribute__, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -307991,34 +310913,35 @@ static const uint16_t ts_small_parse_table[] = { 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [14911] = 5, + anon_sym_DASH_GT, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_GT2, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [13783] = 6, ACTIONS(3), 1, sym_comment, - STATE(2569), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6752), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5750), 20, + ACTIONS(4187), 1, + anon_sym_COLON_COLON, + ACTIONS(6746), 1, + anon_sym_LT, + STATE(2661), 1, + sym_template_argument_list, + ACTIONS(4925), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -308029,17 +310952,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym___attribute, + anon_sym_COLON, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5752), 36, + ACTIONS(4932), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -308075,18 +310998,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_DASH_GT_STAR, - [14984] = 5, + [13858] = 5, ACTIONS(3), 1, sym_comment, - STATE(1634), 1, + STATE(1667), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(6725), 4, + ACTIONS(6728), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5900), 20, + ACTIONS(5980), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -308107,7 +311032,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5898), 36, + ACTIONS(5978), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -308144,17 +311069,17 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [15057] = 5, + [13931] = 5, ACTIONS(3), 1, sym_comment, - STATE(1634), 1, + STATE(1667), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(6725), 4, + ACTIONS(6728), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5944), 20, + ACTIONS(5913), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -308175,7 +311100,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5942), 36, + ACTIONS(5911), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -308212,17 +311137,17 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [15130] = 5, + [14004] = 5, ACTIONS(3), 1, sym_comment, - STATE(2572), 1, + STATE(1667), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(6754), 4, + ACTIONS(6728), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5938), 20, + ACTIONS(5953), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -308243,7 +311168,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5936), 36, + ACTIONS(5951), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -308280,24 +311205,24 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [15203] = 12, + [14077] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(6763), 1, + ACTIONS(6756), 1, anon_sym_virtual, - ACTIONS(6772), 1, + ACTIONS(6765), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6775), 1, + ACTIONS(6768), 1, anon_sym___declspec, - STATE(2975), 1, + STATE(3054), 1, sym_alignas_qualifier, - ACTIONS(6769), 2, + ACTIONS(6762), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(6778), 2, + ACTIONS(6771), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2574), 7, + STATE(2592), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -308305,7 +311230,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(6766), 9, + ACTIONS(6759), 9, anon_sym_extern, anon_sym_static, anon_sym_register, @@ -308315,7 +311240,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - ACTIONS(6758), 11, + ACTIONS(6751), 11, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -308327,7 +311252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_EQ, anon_sym_GT2, - ACTIONS(6756), 13, + ACTIONS(6749), 13, anon_sym_AMP, anon_sym___based, anon_sym___cdecl, @@ -308341,7 +311266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - ACTIONS(6760), 13, + ACTIONS(6753), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -308355,31 +311280,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [15290] = 5, + [14164] = 5, ACTIONS(3), 1, sym_comment, - STATE(2622), 1, + STATE(1667), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(6781), 4, + ACTIONS(6728), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5902), 13, + ACTIONS(5988), 20, + 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_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5986), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [14237] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3623), 1, + anon_sym_LBRACE, + ACTIONS(6774), 1, + anon_sym_LPAREN2, + STATE(2452), 1, + sym_argument_list, + STATE(2677), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3883), 1, + sym_initializer_list, + ACTIONS(6777), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5517), 10, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5904), 42, + ACTIONS(5515), 42, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -308422,17 +311420,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [15362] = 3, + [14318] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4982), 14, + ACTIONS(5078), 1, + sym_primitive_type, + STATE(1974), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5955), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5167), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_COLON_COLON, @@ -308440,16 +311446,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(4980), 46, + ACTIONS(5164), 42, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, - anon_sym_COLON, 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_register, @@ -308473,98 +311484,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_template, anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [15430] = 6, + [14393] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6358), 1, - anon_sym___attribute__, - ACTIONS(6360), 1, - anon_sym___attribute, - STATE(2647), 1, - sym_attribute_specifier, - ACTIONS(6096), 12, + STATE(2425), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(4509), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(4511), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(5915), 23, 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_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_const, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(6098), 45, + anon_sym_DASH_GT, + sym_literal_suffix, + ACTIONS(5917), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [14468] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2590), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6779), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5935), 20, + 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_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5933), 36, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, + anon_sym_GT_EQ, + anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, 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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [15504] = 6, + anon_sym_DASH_GT_STAR, + [14541] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6358), 1, - anon_sym___attribute__, - ACTIONS(6360), 1, - anon_sym___attribute, - STATE(2648), 1, - sym_attribute_specifier, - ACTIONS(6168), 12, + ACTIONS(5519), 1, + anon_sym_COLON_COLON, + ACTIONS(5521), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -308575,9 +311642,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, anon_sym_const, anon_sym_DOT, - ACTIONS(6170), 45, + ACTIONS(5523), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -308590,6 +311659,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_LT, anon_sym___extension__, + anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_constexpr, @@ -308623,111 +311693,293 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [15578] = 6, + [14612] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6358), 1, - anon_sym___attribute__, - ACTIONS(6360), 1, - anon_sym___attribute, - STATE(2649), 1, - sym_attribute_specifier, - ACTIONS(6104), 12, + ACTIONS(4187), 1, + anon_sym_COLON_COLON, + ACTIONS(6732), 1, + anon_sym_LT, + STATE(2601), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2661), 1, + sym_template_argument_list, + ACTIONS(6449), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4164), 18, 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_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_const, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(6106), 45, + anon_sym_DASH_GT, + ACTIONS(4172), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, + anon_sym_GT_EQ, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, 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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [15652] = 6, + anon_sym_DASH_GT_STAR, + [14691] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6358), 1, - anon_sym___attribute__, - ACTIONS(6360), 1, - anon_sym___attribute, - STATE(2651), 1, - sym_attribute_specifier, - ACTIONS(6058), 12, + STATE(1667), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6728), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5921), 20, 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_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_const, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(6060), 45, + anon_sym_DASH_GT, + ACTIONS(5919), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [14764] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(1667), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6728), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5931), 20, + 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_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5929), 36, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, + anon_sym_GT_EQ, + anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [14837] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(2999), 1, + anon_sym_TILDE, + ACTIONS(4310), 1, + anon_sym_LPAREN2, + ACTIONS(5861), 1, + sym_identifier, + ACTIONS(5865), 1, + anon_sym_STAR, + ACTIONS(5867), 1, + anon_sym_AMP_AMP, + ACTIONS(5869), 1, + anon_sym_AMP, + ACTIONS(5873), 1, + anon_sym_COLON_COLON, + ACTIONS(5875), 1, + anon_sym_LBRACK, + STATE(3109), 1, + sym_parameter_list, + STATE(4325), 1, + sym_alignas_qualifier, + STATE(5896), 1, + sym__scope_resolution, + STATE(6109), 1, + sym__function_declarator_seq, + STATE(6451), 1, + sym__declarator, + STATE(6655), 1, + sym__abstract_declarator, + STATE(8286), 1, + sym_ms_based_modifier, + ACTIONS(3341), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(5879), 2, + anon_sym___attribute__, + anon_sym___attribute, + STATE(4215), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8569), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(5877), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_GT2, + STATE(6099), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(6145), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(3339), 13, + anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -308739,147 +311991,357 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + [14956] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(2999), 1, + anon_sym_TILDE, + ACTIONS(4310), 1, + anon_sym_LPAREN2, + ACTIONS(5861), 1, + sym_identifier, + ACTIONS(5865), 1, + anon_sym_STAR, + ACTIONS(5867), 1, + anon_sym_AMP_AMP, + ACTIONS(5869), 1, + anon_sym_AMP, + ACTIONS(5873), 1, + anon_sym_COLON_COLON, + ACTIONS(5875), 1, + anon_sym_LBRACK, + STATE(3109), 1, + sym_parameter_list, + STATE(4325), 1, + sym_alignas_qualifier, + STATE(5896), 1, + sym__scope_resolution, + STATE(6109), 1, + sym__function_declarator_seq, + STATE(6401), 1, + sym__declarator, + STATE(6657), 1, + sym__abstract_declarator, + STATE(8286), 1, + sym_ms_based_modifier, + ACTIONS(3341), 2, anon_sym_alignas, anon_sym__Alignas, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, + ACTIONS(6783), 2, + anon_sym___attribute__, + anon_sym___attribute, + STATE(4215), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8569), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(6781), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_GT2, + STATE(6099), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(6145), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(3339), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [15075] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2589), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6785), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5968), 20, + 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_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5966), 36, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [15726] = 6, + anon_sym_DASH_GT_STAR, + [15148] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6358), 1, - anon_sym___attribute__, - ACTIONS(6360), 1, - anon_sym___attribute, - STATE(2652), 1, - sym_attribute_specifier, - ACTIONS(6062), 12, + STATE(2593), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6787), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5974), 20, 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_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_const, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(6064), 45, + anon_sym_DASH_GT, + ACTIONS(5972), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, + anon_sym_GT_EQ, + anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, 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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [15221] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5470), 27, + 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_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + ACTIONS(5472), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, anon_sym_GT2, - anon_sym_requires, - [15800] = 3, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [15290] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5629), 13, + STATE(2642), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6789), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5935), 21, 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_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym___attribute, - anon_sym_const, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(5631), 47, + ACTIONS(5933), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, anon_sym___attribute__, - anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, 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_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -308888,86 +312350,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_GT2, - anon_sym_requires, - [15868] = 3, + [15362] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(4957), 14, + ACTIONS(5563), 1, + anon_sym_COLON, + ACTIONS(6791), 1, + anon_sym___attribute__, + ACTIONS(6793), 1, + anon_sym___attribute, + ACTIONS(6795), 1, + anon_sym_LBRACE, + STATE(3148), 1, + sym_field_declaration_list, + STATE(3573), 1, + sym_attribute_specifier, + STATE(7192), 1, + sym_virtual_specifier, + STATE(7931), 1, + sym_base_class_clause, + ACTIONS(6037), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5557), 16, + 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_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5559), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4955), 46, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, - anon_sym___declspec, - anon_sym___based, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + 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_LT_EQ_GT, anon_sym_or, anon_sym_and, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_identifier, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [15936] = 5, + anon_sym_DASH_GT_STAR, + [15448] = 5, ACTIONS(3), 1, sym_comment, - STATE(2602), 1, + STATE(2674), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(6783), 4, + ACTIONS(6797), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5942), 13, + ACTIONS(5911), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -308981,7 +312449,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5944), 42, + ACTIONS(5913), 42, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -309024,17 +312492,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [16008] = 5, + [15520] = 5, ACTIONS(3), 1, sym_comment, - STATE(2602), 1, + STATE(2674), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(6783), 4, + ACTIONS(6797), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5894), 13, + ACTIONS(5951), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -309048,7 +312516,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5896), 42, + ACTIONS(5953), 42, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -309091,23 +312559,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [16080] = 8, + [15592] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4167), 1, - anon_sym_COLON_COLON, - ACTIONS(6785), 1, - anon_sym_LT, - STATE(2589), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2687), 1, - sym_template_argument_list, - ACTIONS(6552), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4144), 19, + ACTIONS(6522), 1, + anon_sym___attribute__, + ACTIONS(6524), 1, + anon_sym___attribute, + ACTIONS(6799), 1, + anon_sym_COLON, + ACTIONS(6801), 1, + anon_sym_LBRACE, + STATE(2753), 1, + sym__enum_base_clause, + STATE(2842), 1, + sym_enumerator_list, + STATE(3057), 1, + sym_attribute_specifier, + ACTIONS(6393), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -309117,25 +312586,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4152), 33, + anon_sym_DASH_GT, + ACTIONS(6395), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -309144,6 +312614,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -309157,134 +312628,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [16158] = 5, + anon_sym_DASH_GT_STAR, + [15674] = 6, ACTIONS(3), 1, sym_comment, - STATE(1656), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6787), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5890), 21, - 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_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(4187), 1, + anon_sym_COLON_COLON, + ACTIONS(6803), 1, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(5888), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + STATE(2801), 1, + sym_template_argument_list, + ACTIONS(4192), 27, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym___attribute__, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, + 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, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(5834), 30, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym___extension__, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, anon_sym_decltype, - anon_sym_GT2, - [16230] = 6, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + [15748] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4167), 1, - anon_sym_COLON_COLON, - ACTIONS(6785), 1, - anon_sym_LT, - STATE(2687), 1, - sym_template_argument_list, - ACTIONS(5838), 21, + ACTIONS(6359), 1, + anon_sym___attribute__, + ACTIONS(6361), 1, + anon_sym___attribute, + STATE(2689), 1, + sym_attribute_specifier, + ACTIONS(6157), 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_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, + anon_sym_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, anon_sym_DOT, - ACTIONS(4172), 36, + ACTIONS(6159), 45, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym___attribute__, + anon_sym_LT_LT, + anon_sym___extension__, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, 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_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -309296,64 +312766,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_GT2, - [16304] = 5, + anon_sym_requires, + [15822] = 6, ACTIONS(3), 1, sym_comment, - STATE(1656), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6787), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5900), 21, + ACTIONS(6359), 1, + anon_sym___attribute__, + ACTIONS(6361), 1, + anon_sym___attribute, + STATE(2694), 1, + sym_attribute_specifier, + ACTIONS(6100), 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_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, anon_sym_DOT, - ACTIONS(5898), 34, + ACTIONS(6102), 45, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym___attribute__, + anon_sym_LT_LT, + anon_sym___extension__, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, 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_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -309362,11 +312831,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [16376] = 3, + anon_sym_requires, + [15896] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4994), 14, + ACTIONS(5008), 14, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -309381,7 +312853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(4992), 46, + ACTIONS(5006), 46, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -309428,94 +312900,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [16444] = 3, + [15964] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4996), 21, + ACTIONS(6805), 1, + sym_auto, + ACTIONS(6807), 1, + anon_sym_decltype, + STATE(2741), 1, + sym_decltype_auto, + ACTIONS(5533), 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_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, anon_sym___attribute, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5003), 39, + ACTIONS(5535), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym___extension__, anon_sym___attribute__, - anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_DASH_GT_STAR, - [16512] = 12, + anon_sym_GT2, + anon_sym_requires, + [16038] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5499), 1, - anon_sym_COLON, - ACTIONS(6789), 1, - anon_sym___attribute__, - ACTIONS(6791), 1, - anon_sym___attribute, - ACTIONS(6793), 1, - anon_sym_LBRACE, - STATE(3079), 1, - sym_field_declaration_list, - STATE(3409), 1, - sym_attribute_specifier, - STATE(7112), 1, - sym_virtual_specifier, - STATE(7692), 1, - sym_base_class_clause, - ACTIONS(6020), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5493), 16, + ACTIONS(4934), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -309529,10 +312985,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym___asm, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5495), 34, + ACTIONS(4927), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -309542,7 +313002,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -309554,37 +313019,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [16598] = 10, + anon_sym_DASH_GT, + anon_sym_try, + [16106] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6495), 1, - anon_sym___attribute__, - ACTIONS(6497), 1, - anon_sym___attribute, - ACTIONS(6795), 1, - anon_sym_COLON, - ACTIONS(6797), 1, - anon_sym_LBRACE, - STATE(2749), 1, - sym__enum_base_clause, - STATE(2811), 1, - sym_enumerator_list, - STATE(3048), 1, - sym_attribute_specifier, - ACTIONS(6336), 19, + ACTIONS(4187), 1, + anon_sym_COLON_COLON, + ACTIONS(6809), 1, + anon_sym_LT, + STATE(2740), 1, + sym_template_argument_list, + ACTIONS(4925), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -309594,26 +313052,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6338), 34, + ACTIONS(4932), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -309622,7 +313082,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -309636,58 +313095,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [16680] = 5, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + [16180] = 6, ACTIONS(3), 1, sym_comment, - STATE(2585), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6799), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5930), 13, + ACTIONS(6359), 1, + anon_sym___attribute__, + ACTIONS(6361), 1, + anon_sym___attribute, + STATE(2707), 1, + sym_attribute_specifier, + ACTIONS(6206), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(6208), 45, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5932), 42, - anon_sym_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_static, - 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, @@ -309701,58 +313151,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_identifier, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [16752] = 7, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [16254] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6801), 1, - sym_identifier, - STATE(2595), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(6804), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(6807), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(5405), 17, - aux_sym_preproc_elif_token1, + ACTIONS(6359), 1, + anon_sym___attribute__, + ACTIONS(6361), 1, + anon_sym___attribute, + STATE(2715), 1, + sym_attribute_specifier, + ACTIONS(6210), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(6212), 45, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [16328] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5519), 1, + anon_sym_COLON_COLON, + ACTIONS(5515), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_const, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(5403), 29, + ACTIONS(5517), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -309761,78 +313267,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [16828] = 5, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [16398] = 6, ACTIONS(3), 1, sym_comment, - STATE(2603), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6810), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5938), 21, + ACTIONS(6359), 1, + anon_sym___attribute__, + ACTIONS(6361), 1, + anon_sym___attribute, + STATE(2722), 1, + sym_attribute_specifier, + ACTIONS(6104), 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_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, anon_sym_DOT, - ACTIONS(5936), 34, + ACTIONS(6106), 45, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym___attribute__, + anon_sym_LT_LT, + anon_sym___extension__, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, 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_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -309841,65 +313367,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [16900] = 5, + anon_sym_requires, + [16472] = 6, ACTIONS(3), 1, sym_comment, - STATE(2604), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6812), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5932), 21, + ACTIONS(6359), 1, + anon_sym___attribute__, + ACTIONS(6361), 1, + anon_sym___attribute, + STATE(2724), 1, + sym_attribute_specifier, + ACTIONS(6108), 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_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, anon_sym_DOT, - ACTIONS(5930), 34, + ACTIONS(6110), 45, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym___attribute__, + anon_sym_LT_LT, + anon_sym___extension__, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, 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_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -309908,13 +313435,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [16972] = 4, + anon_sym_requires, + [16546] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5454), 1, - anon_sym_COLON_COLON, - ACTIONS(5450), 13, + ACTIONS(6359), 1, + anon_sym___attribute__, + ACTIONS(6361), 1, + anon_sym___attribute, + STATE(2729), 1, + sym_attribute_specifier, + ACTIONS(6149), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -309925,10 +313459,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_GT_GT, - anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(5452), 46, + ACTIONS(6151), 45, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -309941,7 +313474,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_LT, anon_sym___extension__, - anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_constexpr, @@ -309975,55 +313507,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [17042] = 5, + [16620] = 6, ACTIONS(3), 1, sym_comment, - STATE(2616), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6723), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5752), 13, + ACTIONS(6359), 1, + anon_sym___attribute__, + ACTIONS(6361), 1, + anon_sym___attribute, + STATE(2734), 1, + sym_attribute_specifier, + ACTIONS(6161), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(6163), 45, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5750), 42, - anon_sym_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_static, - 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, @@ -310037,60 +313557,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_identifier, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [17114] = 5, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [16694] = 6, ACTIONS(3), 1, sym_comment, - STATE(2623), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6814), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5920), 13, + ACTIONS(6359), 1, + anon_sym___attribute__, + ACTIONS(6361), 1, + anon_sym___attribute, + STATE(2737), 1, + sym_attribute_specifier, + ACTIONS(6165), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(6167), 45, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, anon_sym_LBRACE, - anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - ACTIONS(5922), 42, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, + anon_sym_requires, + [16768] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6359), 1, anon_sym___attribute__, + ACTIONS(6361), 1, 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_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, + STATE(2742), 1, + sym_attribute_specifier, + ACTIONS(6169), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, anon_sym_const, + anon_sym_DOT, + ACTIONS(6171), 45, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -310104,128 +313693,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_identifier, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [17186] = 6, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [16842] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4167), 1, - anon_sym_COLON_COLON, - ACTIONS(6816), 1, + ACTIONS(6359), 1, + anon_sym___attribute__, + ACTIONS(6361), 1, + anon_sym___attribute, + STATE(2744), 1, + sym_attribute_specifier, + ACTIONS(6214), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_LT, - STATE(2747), 1, - sym_template_argument_list, - ACTIONS(4970), 27, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(6216), 45, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(4963), 30, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym___extension__, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, anon_sym_requires, - sym_this, - [17260] = 5, + [16916] = 6, ACTIONS(3), 1, sym_comment, - STATE(2602), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6818), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5072), 13, + ACTIONS(6359), 1, + anon_sym___attribute__, + ACTIONS(6361), 1, + anon_sym___attribute, + STATE(2746), 1, + sym_attribute_specifier, + ACTIONS(6153), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(6155), 45, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5070), 42, - anon_sym_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_static, - 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, @@ -310239,22 +313829,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_identifier, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [17332] = 5, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [16990] = 8, ACTIONS(3), 1, sym_comment, - STATE(1656), 1, + ACTIONS(4187), 1, + anon_sym_COLON_COLON, + ACTIONS(6812), 1, + anon_sym_LT, + STATE(2633), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(6787), 4, + STATE(2740), 1, + sym_template_argument_list, + ACTIONS(6582), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5944), 21, + ACTIONS(4164), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -310266,17 +313875,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, anon_sym_EQ, anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5942), 34, + ACTIONS(4172), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -310284,7 +313891,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -310311,17 +313917,17 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [17404] = 5, + [17068] = 5, ACTIONS(3), 1, sym_comment, - STATE(1656), 1, + STATE(1675), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(6787), 4, + ACTIONS(6814), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5896), 21, + ACTIONS(5921), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -310343,7 +313949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5894), 34, + ACTIONS(5919), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -310378,24 +313984,16 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [17476] = 10, + [17140] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6495), 1, - anon_sym___attribute__, - ACTIONS(6497), 1, - anon_sym___attribute, - ACTIONS(6795), 1, - anon_sym_COLON, - ACTIONS(6797), 1, - anon_sym_LBRACE, - STATE(2761), 1, - sym__enum_base_clause, - STATE(2779), 1, - sym_enumerator_list, - STATE(2993), 1, - sym_attribute_specifier, - ACTIONS(6342), 19, + ACTIONS(4187), 1, + anon_sym_COLON_COLON, + ACTIONS(6812), 1, + anon_sym_LT, + STATE(2740), 1, + sym_template_argument_list, + ACTIONS(5834), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -310405,26 +314003,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6344), 34, + ACTIONS(4192), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -310433,7 +314033,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -310447,20 +314046,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [17558] = 5, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + [17214] = 5, ACTIONS(3), 1, sym_comment, - STATE(2643), 1, + STATE(1675), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(6821), 4, + ACTIONS(6814), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5904), 21, + ACTIONS(5931), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -310482,7 +314084,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5902), 34, + ACTIONS(5929), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -310517,17 +314119,17 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [17630] = 5, + [17286] = 5, ACTIONS(3), 1, sym_comment, - STATE(2612), 1, + STATE(2636), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(6823), 4, + ACTIONS(6816), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5922), 21, + ACTIONS(5968), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -310549,7 +314151,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5920), 34, + ACTIONS(5966), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -310584,17 +314186,17 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [17702] = 5, + [17358] = 5, ACTIONS(3), 1, sym_comment, - STATE(1656), 1, + STATE(2637), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(6787), 4, + ACTIONS(6818), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5928), 21, + ACTIONS(5974), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -310616,7 +314218,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5926), 34, + ACTIONS(5972), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -310651,17 +314253,17 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [17774] = 5, + [17430] = 5, ACTIONS(3), 1, sym_comment, - STATE(2587), 1, + STATE(1675), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(6825), 4, + ACTIONS(6814), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5750), 21, + ACTIONS(5980), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -310683,7 +314285,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5752), 34, + ACTIONS(5978), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -310718,21 +314320,17 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [17846] = 7, + [17502] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4167), 1, - anon_sym_COLON_COLON, - STATE(1603), 1, - sym_template_argument_list, - STATE(2757), 1, + STATE(1675), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(6827), 4, + ACTIONS(6814), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5977), 17, + ACTIONS(5988), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -310742,24 +314340,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym___attribute, anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5979), 36, + ACTIONS(5986), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, @@ -310770,29 +314370,34 @@ static const uint16_t ts_small_parse_table[] = { 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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [17922] = 4, + anon_sym_GT2, + [17574] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5454), 1, - anon_sym_COLON_COLON, - ACTIONS(5617), 21, + STATE(2643), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6820), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5887), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -310802,28 +314407,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym___attribute, - anon_sym_COLON, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5619), 38, + ACTIONS(5885), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, @@ -310834,7 +314437,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -310848,22 +314450,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_DASH_GT_STAR, - [17992] = 5, + anon_sym_GT2, + [17646] = 5, ACTIONS(3), 1, sym_comment, - STATE(1656), 1, + STATE(1675), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(6787), 4, + ACTIONS(6814), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5918), 21, + ACTIONS(5893), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -310885,7 +314486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5916), 34, + ACTIONS(5891), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -310920,130 +314521,64 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [18064] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4167), 1, - anon_sym_COLON_COLON, - ACTIONS(6816), 1, - anon_sym_LT, - STATE(2747), 1, - sym_template_argument_list, - ACTIONS(4172), 27, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - 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, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(5838), 30, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym___extension__, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - [18138] = 6, + [17718] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6358), 1, - anon_sym___attribute__, - ACTIONS(6360), 1, - anon_sym___attribute, - STATE(2681), 1, - sym_attribute_specifier, - ACTIONS(6151), 12, + STATE(2631), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6822), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5776), 21, 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_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_const, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(6153), 45, + ACTIONS(5778), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, + anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, 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_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -311052,58 +314587,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_GT2, - anon_sym_requires, - [18212] = 3, + [17790] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5617), 13, + ACTIONS(4187), 1, + anon_sym_COLON_COLON, + STATE(1623), 1, + sym_template_argument_list, + STATE(2772), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6824), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6058), 17, 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_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym___attribute, - anon_sym_const, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(5619), 47, + anon_sym_DASH_GT, + ACTIONS(6060), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, + anon_sym_GT_EQ, anon_sym___attribute__, - anon_sym_COLON, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, 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_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -311114,203 +314654,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [18280] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2602), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6783), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5888), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5890), 42, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [18352] = 5, + anon_sym_DASH_GT_STAR, + [17866] = 5, ACTIONS(3), 1, sym_comment, - STATE(2602), 1, + STATE(1675), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(6783), 4, + ACTIONS(6814), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5926), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5928), 42, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [18424] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6358), 1, - anon_sym___attribute__, - ACTIONS(6360), 1, - anon_sym___attribute, - STATE(2685), 1, - sym_attribute_specifier, - ACTIONS(6155), 12, + ACTIONS(5913), 21, 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_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_const, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(6157), 45, + ACTIONS(5911), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, + anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, 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_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -311319,150 +314723,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_GT2, - anon_sym_requires, - [18498] = 3, + [17938] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4953), 14, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, + STATE(1675), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6814), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5953), 21, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4951), 46, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym___attribute, - anon_sym_COLON, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [18566] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4961), 14, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5951), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4959), 46, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, - anon_sym___declspec, - anon_sym___based, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_identifier, + 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_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [18634] = 6, + anon_sym_GT2, + [18010] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6829), 1, - sym_auto, - ACTIONS(6831), 1, - anon_sym_decltype, - STATE(2677), 1, - sym_decltype_auto, - ACTIONS(5589), 13, + ACTIONS(5541), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -311476,7 +314808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(5591), 44, + ACTIONS(5543), 47, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -311490,6 +314822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym___extension__, anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_constexpr, @@ -311517,21 +314850,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_requires, - [18708] = 5, + [18078] = 5, ACTIONS(3), 1, sym_comment, - STATE(2602), 1, + STATE(2677), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(6783), 4, + ACTIONS(6777), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5908), 13, + ACTIONS(5778), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -311545,7 +314880,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5910), 42, + ACTIONS(5776), 42, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -311588,23 +314923,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [18780] = 5, + [18150] = 3, ACTIONS(3), 1, sym_comment, - STATE(2602), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6783), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5916), 13, + ACTIONS(5012), 14, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_COLON_COLON, @@ -311612,21 +314941,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5918), 42, + ACTIONS(5010), 46, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_COLON, 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_register, @@ -311650,91 +314974,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, sym_identifier, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_template, anon_sym_operator, - [18852] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6833), 1, - sym_identifier, - STATE(2628), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(3623), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(3627), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(5392), 17, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_literal_suffix, - ACTIONS(5390), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_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_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [18928] = 3, + anon_sym_try, + anon_sym_requires, + [18218] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4990), 14, + STATE(2674), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6797), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5891), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_COLON_COLON, @@ -311742,16 +315012,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(4988), 46, + ACTIONS(5893), 42, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, - anon_sym_COLON, 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_register, @@ -311775,26 +315050,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_template, anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [18996] = 4, + [18290] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5454), 1, - anon_sym_COLON_COLON, - ACTIONS(5617), 21, + ACTIONS(5601), 24, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -311808,15 +315072,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_COLON, anon_sym_EQ, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5619), 38, + sym_identifier, + sym_literal_suffix, + ACTIONS(5603), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -311826,8 +315093,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym___attribute__, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -311840,25 +315105,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, anon_sym_DASH_GT_STAR, - [19066] = 3, + [18358] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5478), 24, + ACTIONS(5641), 24, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -311883,7 +315148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_identifier, sym_literal_suffix, - ACTIONS(5480), 36, + ACTIONS(5643), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -311920,92 +315185,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, anon_sym_DASH_GT_STAR, - [19134] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6835), 1, - sym_identifier, - STATE(2595), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(3623), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(3627), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(5398), 17, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_literal_suffix, - ACTIONS(5396), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_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_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [19210] = 5, + [18426] = 3, ACTIONS(3), 1, sym_comment, - STATE(2584), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6837), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5936), 13, + ACTIONS(5016), 14, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_COLON_COLON, @@ -312013,21 +315203,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5938), 42, + ACTIONS(5014), 46, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_COLON, 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_register, @@ -312051,17 +315236,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, sym_identifier, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_template, anon_sym_operator, - [19282] = 4, + anon_sym_try, + anon_sym_requires, + [18494] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5454), 1, - anon_sym_COLON_COLON, - ACTIONS(5625), 21, + ACTIONS(5470), 24, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -312075,15 +315267,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_COLON, anon_sym_EQ, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5627), 38, + sym_identifier, + sym_literal_suffix, + ACTIONS(5472), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -312093,8 +315288,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym___attribute__, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -312107,31 +315300,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, anon_sym_DASH_GT_STAR, - [19352] = 6, + [18562] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4167), 1, - anon_sym_COLON_COLON, - ACTIONS(6839), 1, - anon_sym_LT, - STATE(2687), 1, - sym_template_argument_list, - ACTIONS(4963), 21, + ACTIONS(5477), 24, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -312141,28 +315328,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_COLON, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(4970), 36, + anon_sym_DASH_GT, + sym_identifier, + sym_literal_suffix, + ACTIONS(5479), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -312171,29 +315361,29 @@ static const uint16_t ts_small_parse_table[] = { 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - [19426] = 3, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_DASH_GT_STAR, + [18630] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5605), 21, + ACTIONS(4934), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -312207,15 +315397,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_COLON, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, + anon_sym___asm, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5607), 39, + ACTIONS(4927), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -312225,10 +315414,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym___attribute__, - anon_sym_COLON_COLON, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -312249,152 +315440,155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_DASH_GT_STAR, - [19494] = 6, + anon_sym_DASH_GT, + anon_sym_try, + [18698] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6358), 1, + ACTIONS(6522), 1, anon_sym___attribute__, - ACTIONS(6360), 1, + ACTIONS(6524), 1, anon_sym___attribute, - STATE(2693), 1, + ACTIONS(6799), 1, + anon_sym_COLON, + ACTIONS(6801), 1, + anon_sym_LBRACE, + STATE(2754), 1, + sym__enum_base_clause, + STATE(2828), 1, + sym_enumerator_list, + STATE(3045), 1, sym_attribute_specifier, - ACTIONS(6117), 12, + ACTIONS(6316), 19, 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_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_const, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(6119), 45, + anon_sym_DASH_GT, + ACTIONS(6318), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym_LBRACE, + anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, 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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [19568] = 6, + anon_sym_DASH_GT_STAR, + [18780] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6358), 1, - anon_sym___attribute__, - ACTIONS(6360), 1, - anon_sym___attribute, - STATE(2699), 1, - sym_attribute_specifier, - ACTIONS(6121), 12, + ACTIONS(5519), 1, + anon_sym_COLON_COLON, + ACTIONS(5541), 21, 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_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_const, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(6123), 45, + anon_sym_DASH_GT, + ACTIONS(5543), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, + anon_sym_GT_EQ, + anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, 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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [19642] = 3, + anon_sym_DASH_GT_STAR, + [18850] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5577), 24, + ACTIONS(5519), 1, + anon_sym_COLON_COLON, + ACTIONS(5541), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -312408,18 +315602,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, anon_sym_DASH_GT, - sym_identifier, - sym_literal_suffix, - ACTIONS(5579), 36, + ACTIONS(5543), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -312429,6 +315620,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -312441,179 +315634,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DASH_GT_STAR, + [18920] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6826), 1, + sym_identifier, + STATE(2664), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(3631), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, + ACTIONS(3635), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - anon_sym_DASH_GT_STAR, - [19710] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4986), 14, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4984), 46, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [19778] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6358), 1, - anon_sym___attribute__, - ACTIONS(6360), 1, - anon_sym___attribute, - STATE(2704), 1, - sym_attribute_specifier, - ACTIONS(6125), 12, + ACTIONS(5403), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(6127), 45, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [19852] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6358), 1, - anon_sym___attribute__, - ACTIONS(6360), 1, - anon_sym___attribute, - STATE(2705), 1, - sym_attribute_specifier, - ACTIONS(6129), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_const, anon_sym_DOT, - ACTIONS(6131), 45, + sym_literal_suffix, + ACTIONS(5401), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -312622,45 +315704,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym___extension__, - anon_sym_LBRACE, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [19926] = 3, + [18996] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5482), 24, + ACTIONS(4934), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -312674,18 +315735,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym___asm, anon_sym_DOT, - anon_sym_DASH_GT, - sym_identifier, - sym_literal_suffix, - ACTIONS(5484), 36, + ACTIONS(4927), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -312695,7 +315752,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -312707,25 +315769,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, anon_sym_DOT_STAR, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - anon_sym_DASH_GT_STAR, - [19994] = 3, + anon_sym_DASH_GT, + anon_sym_try, + [19064] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5489), 24, + ACTIONS(5545), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -312739,18 +315800,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, anon_sym_DASH_GT, - sym_identifier, - sym_literal_suffix, - ACTIONS(5491), 36, + ACTIONS(5547), 39, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -312760,6 +315818,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -312772,32 +315833,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_DASH_GT_STAR, - [20062] = 5, + [19132] = 5, ACTIONS(3), 1, sym_comment, - STATE(2602), 1, + STATE(2674), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(6783), 4, + ACTIONS(6797), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5898), 13, + ACTIONS(5929), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -312811,7 +315872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5900), 42, + ACTIONS(5931), 42, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -312854,85 +315915,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [20134] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6358), 1, - anon_sym___attribute__, - ACTIONS(6360), 1, - anon_sym___attribute, - STATE(2645), 1, - sym_attribute_specifier, - ACTIONS(6090), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(6092), 45, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [20208] = 5, + [19204] = 3, ACTIONS(3), 1, sym_comment, - STATE(1656), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6787), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5910), 21, + ACTIONS(4984), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -312942,27 +315928,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym___attribute, + anon_sym_COLON, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5908), 34, + anon_sym_DASH_GT, + ACTIONS(4991), 39, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym___attribute__, + anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -312972,6 +315961,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -312985,14 +315975,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [20280] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_DASH_GT_STAR, + [19272] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5489), 23, + ACTIONS(4934), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -313006,17 +315997,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym___asm, anon_sym_DOT, - anon_sym_DASH_GT, - sym_literal_suffix, - ACTIONS(5491), 36, + ACTIONS(4927), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -313026,7 +316014,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -313038,10 +316031,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_try, + [19340] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4187), 1, + anon_sym_COLON_COLON, + ACTIONS(6803), 1, + anon_sym_LT, + STATE(2801), 1, + sym_template_argument_list, + ACTIONS(4932), 27, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + 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, @@ -313052,27 +316082,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - anon_sym_DASH_GT_STAR, - [20347] = 3, + ACTIONS(4925), 30, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym___extension__, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + [19414] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5806), 13, + ACTIONS(6828), 1, + sym_identifier, + STATE(2670), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(3631), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(3635), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(5397), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_const, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(5808), 46, + sym_literal_suffix, + ACTIONS(5395), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -313081,139 +316168,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [20414] = 3, + [19490] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5810), 13, + ACTIONS(4934), 20, 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_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_const, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym___asm, anon_sym_DOT, - ACTIONS(5812), 46, + ACTIONS(4927), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym___attribute__, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + anon_sym_RBRACE, + 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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, anon_sym_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [20481] = 3, + anon_sym_try, + [19558] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5637), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_const, - anon_sym_DOT, - ACTIONS(5639), 46, + STATE(2678), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6830), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5966), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_TILDE, 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_LT_LT, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5968), 42, + anon_sym_AMP, anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, anon_sym___attribute__, - anon_sym_LBRACE, + 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_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, @@ -313227,57 +316309,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [20548] = 3, + anon_sym_template, + anon_sym_operator, + [19630] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5663), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_const, - anon_sym_DOT, - ACTIONS(5665), 46, + ACTIONS(5004), 14, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_TILDE, 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_LT_LT, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5002), 46, + anon_sym_AMP, anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym___attribute, + anon_sym_COLON, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, + anon_sym_static, + 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, @@ -313291,57 +316365,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, + anon_sym_template, + anon_sym_operator, + anon_sym_try, anon_sym_requires, - [20615] = 3, + [19698] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5667), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_const, - anon_sym_DOT, - ACTIONS(5669), 46, + STATE(2679), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6832), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5972), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_TILDE, 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_LT_LT, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5974), 42, + anon_sym_AMP, anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, anon_sym___attribute__, - anon_sym_LBRACE, + 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_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, @@ -313355,57 +316441,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [20682] = 3, + anon_sym_template, + anon_sym_operator, + [19770] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5681), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_const, - anon_sym_DOT, - ACTIONS(5683), 46, + ACTIONS(4978), 14, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_TILDE, 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_LT_LT, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4976), 46, + anon_sym_AMP, anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym___attribute, + anon_sym_COLON, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, + anon_sym_static, + 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, @@ -313419,44 +316497,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, + anon_sym_template, + anon_sym_operator, + anon_sym_try, anon_sym_requires, - [20749] = 3, + [19838] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5740), 13, + ACTIONS(6834), 1, + sym_identifier, + STATE(2670), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(6837), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(6840), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(5413), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_const, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(5742), 46, + sym_literal_suffix, + ACTIONS(5411), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -313465,75 +316566,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [20816] = 3, + [19914] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5778), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_const, - anon_sym_DOT, - ACTIONS(5780), 46, + ACTIONS(4982), 14, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_TILDE, 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_LT_LT, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4980), 46, + anon_sym_AMP, anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym___attribute, + anon_sym_COLON, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, + anon_sym_static, + 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, @@ -313547,28 +316631,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, + anon_sym_template, + anon_sym_operator, + anon_sym_try, anon_sym_requires, - [20883] = 3, + [19982] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5482), 23, + ACTIONS(4934), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -313582,17 +316662,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym___asm, anon_sym_DOT, - anon_sym_DASH_GT, - sym_literal_suffix, - ACTIONS(5484), 36, + ACTIONS(4927), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -313602,7 +316679,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -313614,114 +316696,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, anon_sym_DOT_STAR, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - anon_sym_DASH_GT_STAR, - [20950] = 28, + anon_sym_DASH_GT, + anon_sym_try, + [20050] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(2979), 1, - anon_sym_TILDE, - ACTIONS(4298), 1, - anon_sym_LPAREN2, - ACTIONS(5849), 1, - sym_identifier, - ACTIONS(5861), 1, + ACTIONS(5519), 1, anon_sym_COLON_COLON, - ACTIONS(5863), 1, - anon_sym_LBRACK, - ACTIONS(5971), 1, - anon_sym_STAR, - ACTIONS(5973), 1, - anon_sym_AMP_AMP, - ACTIONS(5975), 1, - anon_sym_AMP, - STATE(3216), 1, - sym_parameter_list, - STATE(4289), 1, - sym_alignas_qualifier, - STATE(5860), 1, - sym__scope_resolution, - STATE(6087), 1, - sym__function_declarator_seq, - STATE(6349), 1, - sym__declarator, - STATE(6655), 1, - sym__abstract_declarator, - STATE(8106), 1, - sym_ms_based_modifier, - ACTIONS(3333), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(5865), 2, - anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(5867), 2, - anon_sym___attribute__, - anon_sym___attribute, - STATE(4131), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8601), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6092), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(5998), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3331), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [21067] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5617), 20, + ACTIONS(5521), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -313736,13 +316730,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym___attribute, + anon_sym_COLON, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5619), 39, + ACTIONS(5523), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -313753,7 +316748,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym___attribute__, - anon_sym_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -313782,128 +316776,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_DASH_GT_STAR, - [21134] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(2979), 1, - anon_sym_TILDE, - ACTIONS(4298), 1, - anon_sym_LPAREN2, - ACTIONS(5849), 1, - sym_identifier, - ACTIONS(5861), 1, - anon_sym_COLON_COLON, - ACTIONS(5863), 1, - anon_sym_LBRACK, - ACTIONS(5971), 1, - anon_sym_STAR, - ACTIONS(5973), 1, - anon_sym_AMP_AMP, - ACTIONS(5975), 1, - anon_sym_AMP, - STATE(3216), 1, - sym_parameter_list, - STATE(4289), 1, - sym_alignas_qualifier, - STATE(5860), 1, - sym__scope_resolution, - STATE(6087), 1, - sym__function_declarator_seq, - STATE(6294), 1, - sym__declarator, - STATE(6716), 1, - sym__abstract_declarator, - STATE(8106), 1, - sym_ms_based_modifier, - ACTIONS(3333), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(6748), 2, - anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(6750), 2, - anon_sym___attribute__, - anon_sym___attribute, - STATE(4131), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8601), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6092), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(5998), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3331), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [21251] = 3, + [20120] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5450), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_const, - anon_sym_DOT, - ACTIONS(5452), 46, + STATE(2674), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6843), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5080), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_TILDE, 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_LT_LT, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5078), 42, + anon_sym_AMP, anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, anon_sym___attribute__, - anon_sym_LBRACE, + 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_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, @@ -313917,30 +316838,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [21318] = 4, + anon_sym_template, + anon_sym_operator, + [20192] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5454), 1, - anon_sym_COLON_COLON, - ACTIONS(5617), 22, + ACTIONS(6646), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -313950,30 +316856,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_COLON, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, + anon_sym___asm, anon_sym_DOT, - ACTIONS(5619), 36, + ACTIONS(6648), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym___attribute__, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -313981,6 +316890,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -313993,67 +316903,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, anon_sym_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - [21387] = 4, + anon_sym_try, + [20260] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5454), 1, - anon_sym_COLON_COLON, - ACTIONS(5617), 22, + ACTIONS(5525), 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_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, anon_sym___attribute, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, anon_sym_DOT, - ACTIONS(5619), 36, + ACTIONS(5527), 47, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, anon_sym___attribute__, + anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, 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_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -314065,25 +316972,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_GT2, - [21456] = 5, + anon_sym_requires, + [20328] = 5, ACTIONS(3), 1, sym_comment, - STATE(1630), 1, - sym_string_literal, - ACTIONS(6846), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(6844), 6, + STATE(2674), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6797), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5919), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5921), 42, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [20400] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2674), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6797), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5978), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(6842), 47, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5980), 42, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -314092,10 +317073,79 @@ static const uint16_t ts_small_parse_table[] = { 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_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [20472] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2674), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6797), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + ACTIONS(5986), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5988), 42, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_LBRACK, anon_sym_static, anon_sym_register, @@ -314119,29 +317169,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_explicit, - anon_sym_typename, anon_sym_template, anon_sym_operator, - [21527] = 5, + [20544] = 5, ACTIONS(3), 1, sym_comment, - STATE(2616), 1, + STATE(2609), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6846), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5933), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5935), 42, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [20616] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2610), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(6723), 4, + ACTIONS(6848), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5452), 12, + ACTIONS(5885), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -314152,9 +317262,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5450), 42, + ACTIONS(5887), 42, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -314197,10 +317308,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [21598] = 3, + [20688] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5000), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4998), 46, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [20756] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5660), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(5662), 46, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [20823] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5605), 22, + ACTIONS(5519), 1, + anon_sym_COLON_COLON, + ACTIONS(5521), 22, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -314223,7 +317465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5607), 37, + ACTIONS(5523), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -314232,7 +317474,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym___attribute__, - anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -314261,84 +317502,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_GT2, - [21665] = 28, + [20892] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(2979), 1, - anon_sym_TILDE, - ACTIONS(4298), 1, + ACTIONS(5515), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(5517), 46, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(5849), 1, - sym_identifier, - ACTIONS(5861), 1, - anon_sym_COLON_COLON, - ACTIONS(5863), 1, - anon_sym_LBRACK, - ACTIONS(6032), 1, anon_sym_STAR, - ACTIONS(6034), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(6036), 1, - anon_sym_AMP, - STATE(3223), 1, - sym_parameter_list, - STATE(4289), 1, - sym_alignas_qualifier, - STATE(5860), 1, - sym__scope_resolution, - STATE(6087), 1, - sym__function_declarator_seq, - STATE(6349), 1, - sym__declarator, - STATE(6654), 1, - sym__abstract_declarator, - STATE(8106), 1, - sym_ms_based_modifier, - ACTIONS(3333), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(5865), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(5867), 2, - anon_sym___attribute__, - anon_sym___attribute, - STATE(4131), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8601), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6092), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(5998), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3331), 13, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym___extension__, - anon_sym_const, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -314350,84 +317546,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [21782] = 28, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [20959] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(2979), 1, - anon_sym_TILDE, - ACTIONS(4298), 1, + ACTIONS(5697), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(5699), 46, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(5849), 1, - sym_identifier, - ACTIONS(5861), 1, - anon_sym_COLON_COLON, - ACTIONS(5863), 1, - anon_sym_LBRACK, - ACTIONS(6032), 1, anon_sym_STAR, - ACTIONS(6034), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(6036), 1, - anon_sym_AMP, - STATE(3223), 1, - sym_parameter_list, - STATE(4289), 1, - sym_alignas_qualifier, - STATE(5860), 1, - sym__scope_resolution, - STATE(6087), 1, - sym__function_declarator_seq, - STATE(6294), 1, - sym__declarator, - STATE(6664), 1, - sym__abstract_declarator, - STATE(8106), 1, - sym_ms_based_modifier, - ACTIONS(3333), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(6748), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(6750), 2, - anon_sym___attribute__, - anon_sym___attribute, - STATE(4131), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8601), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6092), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(5998), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3331), 13, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym___extension__, - anon_sym_const, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -314439,10 +317610,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [21899] = 3, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [21026] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5478), 23, + ACTIONS(5477), 23, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -314466,7 +317657,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_DASH_GT, sym_literal_suffix, - ACTIONS(5480), 36, + ACTIONS(5479), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -314503,10 +317694,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, anon_sym_DASH_GT_STAR, - [21966] = 3, + [21093] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5577), 23, + ACTIONS(6584), 1, + anon_sym___attribute__, + ACTIONS(6586), 1, + anon_sym___attribute, + ACTIONS(6850), 1, + anon_sym_COLON, + ACTIONS(6852), 1, + anon_sym_LBRACE, + STATE(2806), 1, + sym__enum_base_clause, + STATE(2878), 1, + sym_enumerator_list, + STATE(3228), 1, + sym_attribute_specifier, + ACTIONS(6316), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -314516,30 +317721,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - sym_literal_suffix, - ACTIONS(5579), 36, + ACTIONS(6318), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -314548,29 +317748,27 @@ static const uint16_t ts_small_parse_table[] = { 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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - anon_sym_DASH_GT_STAR, - [22033] = 3, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [21174] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5802), 13, + ACTIONS(5705), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -314584,7 +317782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(5804), 46, + ACTIONS(5707), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -314631,10 +317829,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [22100] = 3, + [21241] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5450), 13, + ACTIONS(5712), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -314648,7 +317846,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(5452), 46, + ACTIONS(5714), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -314695,12 +317893,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [22167] = 4, + [21308] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5454), 1, - anon_sym_COLON_COLON, - ACTIONS(5625), 22, + ACTIONS(5601), 23, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -314710,79 +317906,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_COLON, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(5627), 36, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - [22236] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4996), 18, - 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_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5003), 41, + sym_literal_suffix, + ACTIONS(5603), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -314792,10 +317930,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -314809,83 +317943,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, anon_sym_DASH_GT_STAR, - [22303] = 10, + [21375] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6688), 1, - anon_sym___attribute__, - ACTIONS(6690), 1, - anon_sym___attribute, - ACTIONS(6848), 1, - anon_sym_COLON, - ACTIONS(6850), 1, - anon_sym_LBRACE, - STATE(2839), 1, - sym__enum_base_clause, - STATE(2873), 1, - sym_enumerator_list, - STATE(3149), 1, - sym_attribute_specifier, - ACTIONS(6336), 20, + ACTIONS(5716), 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_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym___attribute, + anon_sym_const, anon_sym_DOT, - ACTIONS(6338), 32, + ACTIONS(5718), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, 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_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -314894,11 +318017,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [22384] = 3, + anon_sym_requires, + [21442] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5762), 13, + ACTIONS(5720), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -314912,7 +318038,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(5764), 46, + ACTIONS(5722), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -314959,10 +318085,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [22451] = 3, + [21509] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5766), 13, + ACTIONS(5724), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -314976,7 +318102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(5768), 46, + ACTIONS(5726), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -315023,29 +318149,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [22518] = 11, + [21576] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(6852), 1, + ACTIONS(6854), 1, sym_identifier, - ACTIONS(6856), 1, + ACTIONS(6858), 1, sym_primitive_type, - STATE(1658), 1, + STATE(1680), 1, sym_alignas_qualifier, - STATE(2850), 1, + STATE(2880), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(6391), 2, + ACTIONS(6375), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2678), 2, + STATE(2701), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(6854), 4, + ACTIONS(6856), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5086), 10, + ACTIONS(5094), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -315056,7 +318182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(6386), 13, + ACTIONS(6370), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -315070,7 +318196,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - ACTIONS(5088), 24, + ACTIONS(5096), 24, anon_sym_AMP, anon_sym_virtual, anon_sym_extern, @@ -315095,10 +318221,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [22601] = 3, + [21659] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5770), 13, + ACTIONS(5728), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -315112,7 +318238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(5772), 46, + ACTIONS(5730), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -315159,58 +318285,195 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [22668] = 3, + [21726] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5774), 13, + ACTIONS(6584), 1, + anon_sym___attribute__, + ACTIONS(6586), 1, + anon_sym___attribute, + ACTIONS(6850), 1, + anon_sym_COLON, + ACTIONS(6852), 1, + anon_sym_LBRACE, + STATE(2862), 1, + sym__enum_base_clause, + STATE(2886), 1, + sym_enumerator_list, + STATE(3175), 1, + sym_attribute_specifier, + ACTIONS(6393), 20, 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_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_const, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(5776), 46, + ACTIONS(6395), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [21807] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5641), 23, + 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_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + anon_sym_DASH_GT, + sym_literal_suffix, + ACTIONS(5643), 36, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, 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_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_DASH_GT_STAR, + [21874] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5519), 1, + anon_sym_COLON_COLON, + ACTIONS(5541), 22, + 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_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, - anon_sym___extension__, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5543), 36, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, 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_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -315222,59 +318485,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_GT2, - anon_sym_requires, - [22735] = 3, + [21943] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5798), 13, + ACTIONS(5519), 1, + anon_sym_COLON_COLON, + ACTIONS(5541), 22, 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_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym___attribute, - anon_sym_const, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(5800), 46, + ACTIONS(5543), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, 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_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -315286,30 +318550,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_GT2, - anon_sym_requires, - [22802] = 11, + [22012] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(6858), 1, + ACTIONS(6860), 1, sym_identifier, - ACTIONS(6862), 1, + ACTIONS(6864), 1, sym_primitive_type, - STATE(1658), 1, + STATE(1680), 1, sym_alignas_qualifier, - STATE(3075), 1, + STATE(3149), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(6331), 2, + ACTIONS(6388), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1633), 2, + STATE(1669), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(6860), 4, + ACTIONS(6862), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5100), 10, + ACTIONS(5109), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -315320,7 +318583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(6326), 13, + ACTIONS(6383), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -315334,7 +318597,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - ACTIONS(5102), 24, + ACTIONS(5111), 24, anon_sym_AMP, anon_sym_virtual, anon_sym_extern, @@ -315359,10 +318622,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [22885] = 3, + [22095] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5651), 13, + ACTIONS(5720), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -315376,7 +318639,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(5653), 46, + ACTIONS(5722), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -315423,24 +318686,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [22952] = 10, + [22162] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6688), 1, + ACTIONS(5720), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(5722), 46, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, anon_sym___attribute__, - ACTIONS(6690), 1, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [22229] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5792), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, anon_sym___attribute, - ACTIONS(6848), 1, - anon_sym_COLON, - ACTIONS(6850), 1, + anon_sym_const, + anon_sym_DOT, + ACTIONS(5794), 46, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, anon_sym_LBRACE, - STATE(2789), 1, - sym__enum_base_clause, - STATE(2869), 1, - sym_enumerator_list, - STATE(3144), 1, - sym_attribute_specifier, - ACTIONS(6342), 20, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [22296] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4991), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(4993), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -315450,26 +318830,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, + anon_sym___asm, anon_sym_DOT, - ACTIONS(6344), 32, + ACTIONS(4986), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -315477,6 +318862,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -315489,15 +318875,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, anon_sym_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [23033] = 3, + [22365] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 13, + ACTIONS(5764), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -315511,7 +318896,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(5657), 46, + ACTIONS(5766), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -315558,10 +318943,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [23100] = 3, + [22432] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5659), 13, + ACTIONS(5768), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -315575,7 +318960,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(5661), 46, + ACTIONS(5770), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -315622,10 +319007,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [23167] = 3, + [22499] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5673), 13, + ACTIONS(5772), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -315639,7 +319024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(5675), 46, + ACTIONS(5774), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -315686,10 +319071,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [23234] = 3, + [22566] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5677), 13, + ACTIONS(5760), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -315703,7 +319088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(5679), 46, + ACTIONS(5762), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -315750,10 +319135,343 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [23301] = 3, + [22633] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5685), 13, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(2999), 1, + anon_sym_TILDE, + ACTIONS(4310), 1, + anon_sym_LPAREN2, + ACTIONS(5861), 1, + sym_identifier, + ACTIONS(5873), 1, + anon_sym_COLON_COLON, + ACTIONS(5875), 1, + anon_sym_LBRACK, + ACTIONS(5998), 1, + anon_sym_STAR, + ACTIONS(6000), 1, + anon_sym_AMP_AMP, + ACTIONS(6002), 1, + anon_sym_AMP, + STATE(3357), 1, + sym_parameter_list, + STATE(4325), 1, + sym_alignas_qualifier, + STATE(5896), 1, + sym__scope_resolution, + STATE(6109), 1, + sym__function_declarator_seq, + STATE(6451), 1, + sym__declarator, + STATE(6762), 1, + sym__abstract_declarator, + STATE(8286), 1, + sym_ms_based_modifier, + ACTIONS(3341), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(5877), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(5879), 2, + anon_sym___attribute__, + anon_sym___attribute, + STATE(4215), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8569), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6099), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(6145), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(3339), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [22750] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2677), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6777), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5517), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5515), 42, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [22821] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(2999), 1, + anon_sym_TILDE, + ACTIONS(4310), 1, + anon_sym_LPAREN2, + ACTIONS(5861), 1, + sym_identifier, + ACTIONS(5873), 1, + anon_sym_COLON_COLON, + ACTIONS(5875), 1, + anon_sym_LBRACK, + ACTIONS(5998), 1, + anon_sym_STAR, + ACTIONS(6000), 1, + anon_sym_AMP_AMP, + ACTIONS(6002), 1, + anon_sym_AMP, + STATE(3357), 1, + sym_parameter_list, + STATE(4325), 1, + sym_alignas_qualifier, + STATE(5896), 1, + sym__scope_resolution, + STATE(6109), 1, + sym__function_declarator_seq, + STATE(6401), 1, + sym__declarator, + STATE(6795), 1, + sym__abstract_declarator, + STATE(8286), 1, + sym_ms_based_modifier, + ACTIONS(3341), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(6781), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(6783), 2, + anon_sym___attribute__, + anon_sym___attribute, + STATE(4215), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8569), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6099), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(6145), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(3339), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [22938] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(2999), 1, + anon_sym_TILDE, + ACTIONS(4310), 1, + anon_sym_LPAREN2, + ACTIONS(5861), 1, + sym_identifier, + ACTIONS(5873), 1, + anon_sym_COLON_COLON, + ACTIONS(5875), 1, + anon_sym_LBRACK, + ACTIONS(6014), 1, + anon_sym_STAR, + ACTIONS(6016), 1, + anon_sym_AMP_AMP, + ACTIONS(6018), 1, + anon_sym_AMP, + STATE(3276), 1, + sym_parameter_list, + STATE(4325), 1, + sym_alignas_qualifier, + STATE(5896), 1, + sym__scope_resolution, + STATE(6109), 1, + sym__function_declarator_seq, + STATE(6401), 1, + sym__declarator, + STATE(6760), 1, + sym__abstract_declarator, + STATE(8286), 1, + sym_ms_based_modifier, + ACTIONS(3341), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(6781), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(6783), 2, + anon_sym___attribute__, + anon_sym___attribute, + STATE(4215), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8569), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6099), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(6145), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(3339), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [23055] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5776), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -315767,7 +319485,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(5687), 46, + ACTIONS(5778), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -315814,10 +319532,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [23368] = 3, + [23122] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5692), 13, + ACTIONS(5780), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -315831,7 +319549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(5694), 46, + ACTIONS(5782), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -315878,10 +319596,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [23435] = 3, + [23189] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4996), 22, + ACTIONS(5541), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -315891,29 +319609,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym___attribute, - anon_sym_COLON, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5003), 37, + anon_sym_DASH_GT, + ACTIONS(5543), 39, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym___attribute__, - anon_sym_COLON_COLON, + anon_sym_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -315923,6 +319641,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -315936,16 +319655,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, - [23502] = 3, + anon_sym_DASH_GT_STAR, + [23256] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5677), 13, + ACTIONS(5784), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -315959,7 +319677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(5679), 46, + ACTIONS(5786), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -316006,10 +319724,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [23569] = 3, + [23323] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5677), 13, + ACTIONS(5788), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -316023,7 +319741,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(5679), 46, + ACTIONS(5790), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -316070,47 +319788,167 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [23636] = 5, + [23390] = 3, ACTIONS(3), 1, sym_comment, - STATE(1629), 1, - sym_string_literal, - ACTIONS(6846), 5, + ACTIONS(5470), 23, + 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_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + anon_sym_DASH_GT, + sym_literal_suffix, + ACTIONS(5472), 36, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(6844), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_DASH_GT_STAR, + [23457] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5545), 22, + 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_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5547), 37, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym___attribute__, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(6842), 47, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + [23524] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5804), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(5806), 46, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_static, - 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, @@ -316124,22 +319962,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - [23707] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [23591] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5641), 13, + ACTIONS(5808), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -316153,7 +319997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(5643), 46, + ACTIONS(5810), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -316200,10 +320044,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [23774] = 3, + [23658] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5728), 13, + ACTIONS(5816), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -316217,7 +320061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(5730), 46, + ACTIONS(5818), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -316264,10 +320108,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [23841] = 3, + [23725] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5732), 13, + ACTIONS(5812), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -316281,7 +320125,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(5734), 46, + ACTIONS(5814), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -316328,49 +320172,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [23908] = 3, + [23792] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5643), 13, + ACTIONS(5804), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(5806), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5641), 46, - anon_sym_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, - 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_LBRACE, anon_sym_LBRACK, - anon_sym_static, - 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, @@ -316384,84 +320218,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_identifier, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_explicit, - anon_sym_template, - anon_sym_operator, - [23975] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(1631), 1, - sym_string_literal, - ACTIONS(6846), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(6844), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(6842), 47, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - [24046] = 3, + anon_sym_GT2, + anon_sym_requires, + [23859] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5736), 13, + ACTIONS(5753), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -316475,7 +320253,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(5738), 46, + ACTIONS(5755), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -316522,25 +320300,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [24113] = 5, + [23926] = 5, ACTIONS(3), 1, sym_comment, - STATE(1627), 1, + STATE(1650), 1, sym_string_literal, - ACTIONS(6846), 5, + ACTIONS(6870), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(6844), 6, + ACTIONS(6868), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(6842), 47, + ACTIONS(6866), 47, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -316588,10 +320366,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_typename, anon_sym_template, anon_sym_operator, - [24184] = 3, + [23997] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5750), 13, + ACTIONS(5742), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -316605,7 +320383,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(5752), 46, + ACTIONS(5744), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -316652,10 +320430,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [24251] = 3, + [24064] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5754), 13, + ACTIONS(5796), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -316669,7 +320447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(5756), 46, + ACTIONS(5798), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -316716,10 +320494,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [24318] = 3, + [24131] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(1649), 1, + sym_string_literal, + ACTIONS(6870), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(6868), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(6866), 47, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + [24202] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5758), 13, + STATE(1651), 1, + sym_string_literal, + ACTIONS(6870), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(6868), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(6866), 47, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + [24273] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5820), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -316733,7 +320643,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(5760), 46, + ACTIONS(5822), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -316780,10 +320690,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [24385] = 3, + [24340] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5782), 13, + ACTIONS(5738), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -316797,7 +320707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(5784), 46, + ACTIONS(5740), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -316844,10 +320754,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [24452] = 3, + [24407] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5786), 13, + ACTIONS(5693), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -316861,7 +320771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(5788), 46, + ACTIONS(5695), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -316908,17 +320818,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [24519] = 5, + [24474] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(1648), 1, + sym_string_literal, + ACTIONS(6870), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(6868), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(6866), 47, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + [24545] = 5, ACTIONS(3), 1, sym_comment, - STATE(2569), 1, + STATE(2600), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(6752), 4, + ACTIONS(6730), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5450), 19, + ACTIONS(5515), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -316938,7 +320914,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5452), 35, + ACTIONS(5517), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -316974,10 +320950,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [24590] = 3, + [24616] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5790), 13, + ACTIONS(5681), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -316991,7 +320967,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(5792), 46, + ACTIONS(5683), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -317038,10 +321014,227 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [24657] = 3, + [24683] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(2999), 1, + anon_sym_TILDE, + ACTIONS(4310), 1, + anon_sym_LPAREN2, + ACTIONS(5861), 1, + sym_identifier, + ACTIONS(5873), 1, + anon_sym_COLON_COLON, + ACTIONS(5875), 1, + anon_sym_LBRACK, + ACTIONS(6014), 1, + anon_sym_STAR, + ACTIONS(6016), 1, + anon_sym_AMP_AMP, + ACTIONS(6018), 1, + anon_sym_AMP, + STATE(3276), 1, + sym_parameter_list, + STATE(4325), 1, + sym_alignas_qualifier, + STATE(5896), 1, + sym__scope_resolution, + STATE(6109), 1, + sym__function_declarator_seq, + STATE(6451), 1, + sym__declarator, + STATE(6748), 1, + sym__abstract_declarator, + STATE(8286), 1, + sym_ms_based_modifier, + ACTIONS(3341), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(5877), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(5879), 2, + anon_sym___attribute__, + anon_sym___attribute, + STATE(4215), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8569), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6099), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(6145), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(3339), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [24800] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5794), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5792), 46, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + 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_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [24867] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4984), 22, + 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_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4991), 37, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + [24934] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5666), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -317055,7 +321248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(5796), 46, + ACTIONS(5668), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -317102,10 +321295,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [24724] = 3, + [25001] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5786), 13, + ACTIONS(5685), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -317119,7 +321312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(5788), 46, + ACTIONS(5687), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -317166,10 +321359,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [24791] = 3, + [25068] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5647), 13, + ACTIONS(5689), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -317183,7 +321376,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(5649), 46, + ACTIONS(5691), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -317230,10 +321423,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [24858] = 3, + [25135] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5699), 13, + ACTIONS(5645), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -317247,7 +321440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(5701), 46, + ACTIONS(5647), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -317294,27 +321487,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [24925] = 11, + [25202] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, - anon_sym_LBRACE, - ACTIONS(6864), 1, - anon_sym_LPAREN2, - ACTIONS(6866), 1, - anon_sym_LBRACK, - ACTIONS(6868), 1, - sym_auto, - ACTIONS(6870), 1, - anon_sym_decltype, - STATE(3012), 1, - sym_decltype_auto, - STATE(3090), 1, - sym_new_declarator, - STATE(3465), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(5873), 19, + ACTIONS(4984), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -317328,21 +321504,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5875), 30, + ACTIONS(4991), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -317354,69 +321535,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, anon_sym_DASH_GT_STAR, - [25007] = 5, + [25269] = 3, ACTIONS(3), 1, sym_comment, - STATE(1674), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6872), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5896), 17, + ACTIONS(5701), 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_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, anon_sym___attribute, - anon_sym_EQ, + anon_sym_const, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5894), 36, + ACTIONS(5703), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym___extension__, anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, 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_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -317427,61 +321608,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [25077] = 5, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [25336] = 3, ACTIONS(3), 1, sym_comment, - STATE(2716), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6874), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5904), 17, + ACTIONS(5515), 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_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, anon_sym___attribute, - anon_sym_EQ, + anon_sym_const, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5902), 36, + ACTIONS(5517), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym___extension__, anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, 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_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -317492,61 +321672,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [25147] = 5, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [25403] = 3, ACTIONS(3), 1, sym_comment, - STATE(2717), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6876), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5922), 17, + ACTIONS(5800), 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_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, anon_sym___attribute, - anon_sym_EQ, + anon_sym_const, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5920), 36, + ACTIONS(5802), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym___extension__, anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, 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_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -317557,20 +321736,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [25217] = 5, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [25470] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5495), 1, + anon_sym___declspec, + ACTIONS(6472), 1, + sym_auto, + ACTIONS(6474), 1, + anon_sym_decltype, + ACTIONS(6480), 1, + anon_sym_virtual, + ACTIONS(6872), 1, + anon_sym_SEMI, + STATE(2483), 1, + sym_decltype_auto, + STATE(3054), 1, + sym_alignas_qualifier, + ACTIONS(5489), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(5497), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(6478), 5, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + STATE(2577), 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(5487), 9, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + ACTIONS(6476), 12, + anon_sym_AMP, + 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, + anon_sym_template, + anon_sym_operator, + ACTIONS(5483), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [25562] = 5, ACTIONS(3), 1, sym_comment, - STATE(1674), 1, + STATE(1689), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(6872), 4, + ACTIONS(6874), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5928), 17, + ACTIONS(5953), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -317588,7 +321847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5926), 36, + ACTIONS(5951), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -317625,17 +321884,16 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [25287] = 5, + [25632] = 6, ACTIONS(3), 1, sym_comment, - STATE(2755), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6878), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5750), 17, + ACTIONS(4187), 1, + anon_sym_COLON_COLON, + ACTIONS(6876), 1, + anon_sym_LT, + STATE(2745), 1, + sym_template_argument_list, + ACTIONS(5834), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -317646,14 +321904,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym___attribute, + anon_sym_COLON, anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5752), 36, + ACTIONS(4192), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -317689,83 +321947,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_DASH_GT_STAR, - [25357] = 5, + [25704] = 3, ACTIONS(3), 1, sym_comment, - STATE(2587), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6825), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5450), 20, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(6880), 28, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(5452), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_SEMI, + anon_sym_COLON_COLON, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, + 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, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(6878), 30, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym___extension__, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, anon_sym_decltype, - anon_sym_GT2, - [25427] = 5, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + [25770] = 8, ACTIONS(3), 1, sym_comment, - STATE(1674), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6872), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5910), 17, + ACTIONS(6522), 1, + anon_sym___attribute__, + ACTIONS(6524), 1, + anon_sym___attribute, + ACTIONS(6801), 1, + anon_sym_LBRACE, + STATE(2876), 1, + sym_enumerator_list, + STATE(3016), 1, + sym_attribute_specifier, + ACTIONS(6066), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -317779,11 +322040,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5908), 36, + ACTIONS(6068), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -317793,8 +322056,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym___attribute__, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -317807,11 +322068,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -317820,17 +322081,20 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [25497] = 5, + [25846] = 8, ACTIONS(3), 1, sym_comment, - STATE(1674), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6872), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5918), 17, + ACTIONS(6522), 1, + anon_sym___attribute__, + ACTIONS(6524), 1, + anon_sym___attribute, + ACTIONS(6801), 1, + anon_sym_LBRACE, + STATE(2859), 1, + sym_enumerator_list, + STATE(3087), 1, + sym_attribute_specifier, + ACTIONS(6072), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -317844,11 +322108,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5916), 36, + ACTIONS(6074), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -317858,8 +322124,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym___attribute__, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -317872,11 +322136,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -317885,88 +322149,157 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [25567] = 11, + [25922] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, - anon_sym_LBRACE, - ACTIONS(6864), 1, - anon_sym_LPAREN2, - ACTIONS(6866), 1, - anon_sym_LBRACK, - ACTIONS(6868), 1, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5495), 1, + anon_sym___declspec, + ACTIONS(6472), 1, sym_auto, - ACTIONS(6870), 1, + ACTIONS(6474), 1, anon_sym_decltype, - STATE(3012), 1, + ACTIONS(6480), 1, + anon_sym_virtual, + ACTIONS(6882), 1, + anon_sym_SEMI, + STATE(2483), 1, sym_decltype_auto, - STATE(3076), 1, - sym_new_declarator, - STATE(3425), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(5823), 19, - anon_sym_DASH, - anon_sym_PLUS, + STATE(3054), 1, + sym_alignas_qualifier, + ACTIONS(5489), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(5497), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(6478), 5, + anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + STATE(2577), 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(5487), 9, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + ACTIONS(6476), 12, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5825), 30, + 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, + anon_sym_template, + anon_sym_operator, + ACTIONS(5483), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [26014] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4991), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [25649] = 3, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4984), 45, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + 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_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + [26080] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2733), 28, + ACTIONS(5519), 1, + anon_sym_COLON_COLON, + ACTIONS(5543), 27, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP, anon_sym_SEMI, - anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, @@ -317988,7 +322321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - ACTIONS(2731), 30, + ACTIONS(5541), 30, anon_sym_DASH, anon_sym_PLUS, anon_sym___extension__, @@ -318019,10 +322352,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, anon_sym_requires, sym_this, - [25715] = 3, + [26148] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5495), 1, + anon_sym___declspec, + ACTIONS(6472), 1, + sym_auto, + ACTIONS(6474), 1, + anon_sym_decltype, + ACTIONS(6480), 1, + anon_sym_virtual, + ACTIONS(6884), 1, + anon_sym_SEMI, + STATE(2483), 1, + sym_decltype_auto, + STATE(3054), 1, + sym_alignas_qualifier, + ACTIONS(5489), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(5497), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(6478), 5, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + STATE(2577), 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(5487), 9, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + ACTIONS(6476), 12, + anon_sym_AMP, + 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, + anon_sym_template, + anon_sym_operator, + ACTIONS(5483), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [26240] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2457), 1, + anon_sym_LBRACE, + ACTIONS(6886), 1, + anon_sym_LPAREN2, + ACTIONS(6888), 1, + anon_sym_LBRACK, + ACTIONS(6890), 1, + sym_auto, + ACTIONS(6892), 1, + anon_sym_decltype, + STATE(3115), 1, + sym_decltype_auto, + STATE(3132), 1, + sym_new_declarator, + STATE(3540), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5881), 19, + 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_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5883), 30, + anon_sym_DOT_DOT_DOT, + 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_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [26322] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6882), 28, + ACTIONS(6896), 28, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -318051,7 +322531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - ACTIONS(6880), 30, + ACTIONS(6894), 30, anon_sym_DASH, anon_sym_PLUS, anon_sym___extension__, @@ -318082,86 +322562,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, anon_sym_requires, sym_this, - [25781] = 3, + [26388] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6886), 28, + ACTIONS(5090), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_BANG, anon_sym_TILDE, anon_sym_STAR, - anon_sym_AMP, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - 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, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(6884), 30, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym___extension__, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5088), 45, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + 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_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, sym_identifier, anon_sym_decltype, - anon_sym_typename, + anon_sym_final, + anon_sym_override, + anon_sym_explicit, anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - [25847] = 8, + anon_sym_operator, + [26454] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4167), 1, - anon_sym_COLON_COLON, - ACTIONS(6888), 1, - anon_sym_LT, - STATE(2670), 1, - sym_template_argument_list, - STATE(2757), 1, + STATE(1689), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(6827), 4, + ACTIONS(6874), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(4144), 15, + ACTIONS(5980), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -318172,12 +322646,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute, anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4152), 35, + ACTIONS(5978), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -318187,6 +322663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -318213,40 +322690,47 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [25923] = 3, + [26524] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5082), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5495), 1, + anon_sym___declspec, + ACTIONS(6472), 1, + sym_auto, + ACTIONS(6474), 1, + anon_sym_decltype, + ACTIONS(6480), 1, + anon_sym_virtual, + ACTIONS(6898), 1, + anon_sym_SEMI, + STATE(2483), 1, + sym_decltype_auto, + STATE(3054), 1, + sym_alignas_qualifier, + ACTIONS(5489), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(5497), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(6478), 5, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5080), 45, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, + STATE(2577), 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(5487), 9, anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, - 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_register, anon_sym_inline, @@ -318255,6 +322739,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, + ACTIONS(6476), 12, + anon_sym_AMP, + 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, + anon_sym_template, + anon_sym_operator, + ACTIONS(5483), 13, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -318267,47 +322766,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_explicit, - anon_sym_template, - anon_sym_operator, - [25989] = 16, + [26616] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(6459), 1, + ACTIONS(6472), 1, sym_auto, - ACTIONS(6461), 1, + ACTIONS(6474), 1, anon_sym_decltype, - ACTIONS(6475), 1, + ACTIONS(6480), 1, anon_sym_virtual, - ACTIONS(6890), 1, + ACTIONS(6900), 1, anon_sym_SEMI, - STATE(2504), 1, + STATE(2483), 1, sym_decltype_auto, - STATE(2975), 1, + STATE(3054), 1, sym_alignas_qualifier, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(6473), 5, + ACTIONS(6478), 5, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, - STATE(2558), 7, + STATE(2577), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -318315,7 +322805,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(5466), 9, + ACTIONS(5487), 9, anon_sym_extern, anon_sym_static, anon_sym_register, @@ -318325,7 +322815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - ACTIONS(6471), 12, + ACTIONS(6476), 12, anon_sym_AMP, anon_sym___based, anon_sym___cdecl, @@ -318338,7 +322828,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_template, anon_sym_operator, - ACTIONS(5462), 13, + ACTIONS(5483), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -318352,10 +322842,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [26081] = 3, + [26708] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4187), 1, + anon_sym_COLON_COLON, + ACTIONS(6580), 1, + anon_sym_LT, + STATE(1623), 1, + sym_template_argument_list, + ACTIONS(5834), 7, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(4192), 48, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [26780] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6894), 28, + ACTIONS(6904), 28, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -318384,7 +322940,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - ACTIONS(6892), 30, + ACTIONS(6902), 30, anon_sym_DASH, anon_sym_PLUS, anon_sym___extension__, @@ -318415,76 +322971,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, anon_sym_requires, sym_this, - [26147] = 4, + [26846] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5454), 1, + ACTIONS(4187), 1, anon_sym_COLON_COLON, - ACTIONS(5619), 27, + ACTIONS(6580), 1, + anon_sym_LT, + STATE(1623), 1, + sym_template_argument_list, + ACTIONS(4925), 7, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(4932), 48, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, anon_sym_STAR, - anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - 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, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(5617), 30, - anon_sym_DASH, - anon_sym_PLUS, anon_sym___extension__, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - 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_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, anon_sym_asm, anon_sym___asm__, - anon_sym___asm, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, + anon_sym_DASH_GT, + sym_auto, anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, anon_sym_requires, - sym_this, - [26215] = 4, + [26918] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5454), 1, + ACTIONS(5519), 1, anon_sym_COLON_COLON, - ACTIONS(5619), 27, + ACTIONS(5543), 27, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -318512,7 +323070,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - ACTIONS(5617), 30, + ACTIONS(5541), 30, anon_sym_DASH, anon_sym_PLUS, anon_sym___extension__, @@ -318543,10 +323101,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, anon_sym_requires, sym_this, - [26283] = 3, + [26986] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5617), 21, + ACTIONS(2457), 1, + anon_sym_LBRACE, + ACTIONS(6886), 1, + anon_sym_LPAREN2, + ACTIONS(6888), 1, + anon_sym_LBRACK, + ACTIONS(6890), 1, + sym_auto, + ACTIONS(6892), 1, + anon_sym_decltype, + STATE(3115), 1, + sym_decltype_auto, + STATE(3139), 1, + sym_new_declarator, + STATE(3476), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5841), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -318556,30 +323131,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5619), 37, + anon_sym_DASH_GT, + ACTIONS(5843), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_GT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -318587,6 +323157,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -318600,225 +323171,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - [26349] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, - anon_sym___declspec, - ACTIONS(6459), 1, - sym_auto, - ACTIONS(6461), 1, - anon_sym_decltype, - ACTIONS(6475), 1, - anon_sym_virtual, - ACTIONS(6896), 1, - anon_sym_SEMI, - STATE(2504), 1, - sym_decltype_auto, - STATE(2975), 1, - sym_alignas_qualifier, - ACTIONS(5468), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5476), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(6473), 5, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - STATE(2558), 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(5466), 9, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(6471), 12, - anon_sym_AMP, - 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, - anon_sym_template, - anon_sym_operator, - ACTIONS(5462), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [26441] = 3, + anon_sym_DASH_GT_STAR, + [27068] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5607), 28, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - 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, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(5605), 30, + STATE(1689), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6874), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5921), 17, anon_sym_DASH, anon_sym_PLUS, - anon_sym___extension__, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - [26507] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5003), 13, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5919), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4996), 45, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, - 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_LBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, + 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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_template, - anon_sym_operator, - [26573] = 5, + anon_sym_DASH_GT_STAR, + [27138] = 5, ACTIONS(3), 1, sym_comment, - STATE(2710), 1, + STATE(1689), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(6898), 4, + ACTIONS(6874), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5932), 17, + ACTIONS(5988), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -318836,7 +323265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5930), 36, + ACTIONS(5986), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -318873,17 +323302,17 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [26643] = 5, + [27208] = 5, ACTIONS(3), 1, sym_comment, - STATE(1674), 1, + STATE(1689), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(6872), 4, + ACTIONS(6874), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5944), 17, + ACTIONS(5931), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -318901,7 +323330,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5942), 36, + ACTIONS(5929), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -318938,10 +323367,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [26713] = 3, + [27278] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4957), 28, + ACTIONS(5547), 28, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -318970,7 +323399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - ACTIONS(4955), 30, + ACTIONS(5545), 30, anon_sym_DASH, anon_sym_PLUS, anon_sym___extension__, @@ -319001,156 +323430,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, anon_sym_requires, sym_this, - [26779] = 3, + [27344] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4986), 28, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, + ACTIONS(4187), 1, + anon_sym_COLON_COLON, + ACTIONS(6876), 1, + anon_sym_LT, + STATE(2745), 1, + sym_template_argument_list, + STATE(2772), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6824), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4164), 15, + 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_SEMI, - anon_sym_COLON_COLON, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4172), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(4984), 30, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym___extension__, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - [26845] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, - anon_sym___declspec, - ACTIONS(6459), 1, + anon_sym_DOT_STAR, sym_auto, - ACTIONS(6461), 1, anon_sym_decltype, - ACTIONS(6475), 1, - anon_sym_virtual, - ACTIONS(6900), 1, - anon_sym_SEMI, - STATE(2504), 1, - sym_decltype_auto, - STATE(2975), 1, - sym_alignas_qualifier, - ACTIONS(5468), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5476), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(6473), 5, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - STATE(2558), 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(5466), 9, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(6471), 12, - anon_sym_AMP, - 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, - anon_sym_template, - anon_sym_operator, - ACTIONS(5462), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [26937] = 3, + anon_sym_DASH_GT_STAR, + [27420] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4982), 28, + ACTIONS(5519), 1, + anon_sym_COLON_COLON, + ACTIONS(5523), 27, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP, anon_sym_SEMI, - anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, @@ -319172,7 +323531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - ACTIONS(4980), 30, + ACTIONS(5521), 30, anon_sym_DASH, anon_sym_PLUS, anon_sym___extension__, @@ -319203,136 +323562,205 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, anon_sym_requires, sym_this, - [27003] = 3, + [27488] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6904), 28, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, + STATE(2750), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6906), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5887), 17, + 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_SEMI, - anon_sym_COLON_COLON, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5885), 36, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym___attribute__, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(6902), 30, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym___extension__, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, + anon_sym_DOT_STAR, + sym_auto, anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - [27069] = 3, + anon_sym_DASH_GT_STAR, + [27558] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4994), 28, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, + STATE(2762), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6908), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5968), 17, + 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_SEMI, - anon_sym_COLON_COLON, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5966), 36, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym___attribute__, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(4992), 30, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [27628] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(1689), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6874), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5893), 17, anon_sym_DASH, anon_sym_PLUS, - anon_sym___extension__, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5891), 36, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + sym_auto, anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - [27135] = 3, + anon_sym_DASH_GT_STAR, + [27698] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4953), 28, + ACTIONS(6912), 28, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -319361,7 +323789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - ACTIONS(4951), 30, + ACTIONS(6910), 30, anon_sym_DASH, anon_sym_PLUS, anon_sym___extension__, @@ -319392,10 +323820,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, anon_sym_requires, sym_this, - [27201] = 3, + [27764] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4961), 28, + ACTIONS(6916), 28, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -319424,7 +323852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - ACTIONS(4959), 30, + ACTIONS(6914), 30, anon_sym_DASH, anon_sym_PLUS, anon_sym___extension__, @@ -319455,86 +323883,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, anon_sym_requires, sym_this, - [27267] = 16, + [27830] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, - anon_sym___declspec, - ACTIONS(6459), 1, - sym_auto, - ACTIONS(6461), 1, - anon_sym_decltype, - ACTIONS(6475), 1, - anon_sym_virtual, - ACTIONS(6906), 1, - anon_sym_SEMI, - STATE(2504), 1, - sym_decltype_auto, - STATE(2975), 1, - sym_alignas_qualifier, - ACTIONS(5468), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5476), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(6473), 5, + ACTIONS(5008), 28, anon_sym_LPAREN2, + anon_sym_BANG, anon_sym_TILDE, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - STATE(2558), 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(5466), 9, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(6471), 12, anon_sym_AMP, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + 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, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(5006), 30, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym___extension__, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, sym_identifier, + anon_sym_decltype, + anon_sym_typename, anon_sym_template, - anon_sym_operator, - ACTIONS(5462), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [27359] = 3, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + [27896] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4990), 28, + ACTIONS(2737), 28, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -319563,7 +323978,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - ACTIONS(4988), 30, + ACTIONS(2735), 30, anon_sym_DASH, anon_sym_PLUS, anon_sym___extension__, @@ -319594,16 +324009,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, anon_sym_requires, sym_this, - [27425] = 6, + [27962] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4167), 1, - anon_sym_COLON_COLON, - ACTIONS(6908), 1, - anon_sym_LT, - STATE(2670), 1, - sym_template_argument_list, - ACTIONS(4963), 17, + STATE(2770), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6918), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5776), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -319614,14 +324030,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym___attribute, - anon_sym_COLON, anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4970), 38, + ACTIONS(5778), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -319657,41 +324073,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_DASH_GT_STAR, - [27497] = 16, + [28032] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(6459), 1, + ACTIONS(6472), 1, sym_auto, - ACTIONS(6461), 1, + ACTIONS(6474), 1, anon_sym_decltype, - ACTIONS(6475), 1, + ACTIONS(6480), 1, anon_sym_virtual, - ACTIONS(6911), 1, + ACTIONS(6920), 1, anon_sym_SEMI, - STATE(2504), 1, + STATE(2483), 1, sym_decltype_auto, - STATE(2975), 1, + STATE(3054), 1, sym_alignas_qualifier, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(6473), 5, + ACTIONS(6478), 5, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, - STATE(2558), 7, + STATE(2577), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -319699,7 +324113,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(5466), 9, + ACTIONS(5487), 9, anon_sym_extern, anon_sym_static, anon_sym_register, @@ -319709,7 +324123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - ACTIONS(6471), 12, + ACTIONS(6476), 12, anon_sym_AMP, anon_sym___based, anon_sym___cdecl, @@ -319722,7 +324136,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_template, anon_sym_operator, - ACTIONS(5462), 13, + ACTIONS(5483), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -319736,81 +324150,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [27589] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2457), 1, - anon_sym_LBRACE, - ACTIONS(6864), 1, - anon_sym_LPAREN2, - ACTIONS(6866), 1, - anon_sym_LBRACK, - ACTIONS(6868), 1, - sym_auto, - ACTIONS(6870), 1, - anon_sym_decltype, - STATE(3012), 1, - sym_decltype_auto, - STATE(3108), 1, - sym_new_declarator, - STATE(3521), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(5869), 19, - 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_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5871), 30, - anon_sym_DOT_DOT_DOT, - 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_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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [27671] = 3, + [28124] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5003), 28, + ACTIONS(5012), 28, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -319839,7 +324182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - ACTIONS(4996), 30, + ACTIONS(5010), 30, anon_sym_DASH, anon_sym_PLUS, anon_sym___extension__, @@ -319870,171 +324213,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, anon_sym_requires, sym_this, - [27737] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, - anon_sym___declspec, - ACTIONS(6459), 1, - sym_auto, - ACTIONS(6461), 1, - anon_sym_decltype, - ACTIONS(6475), 1, - anon_sym_virtual, - ACTIONS(6913), 1, - anon_sym_SEMI, - STATE(2504), 1, - sym_decltype_auto, - STATE(2975), 1, - sym_alignas_qualifier, - ACTIONS(5468), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5476), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(6473), 5, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - STATE(2558), 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(5466), 9, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(6471), 12, - anon_sym_AMP, - 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, - anon_sym_template, - anon_sym_operator, - ACTIONS(5462), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [27829] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6495), 1, - anon_sym___attribute__, - ACTIONS(6497), 1, - anon_sym___attribute, - ACTIONS(6797), 1, - anon_sym_LBRACE, - STATE(2804), 1, - sym_enumerator_list, - STATE(2997), 1, - sym_attribute_specifier, - ACTIONS(5983), 19, - 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_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5985), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [27905] = 11, + [28190] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(2457), 1, anon_sym_LBRACE, - ACTIONS(6864), 1, + ACTIONS(6886), 1, anon_sym_LPAREN2, - ACTIONS(6866), 1, + ACTIONS(6888), 1, anon_sym_LBRACK, - ACTIONS(6868), 1, + ACTIONS(6890), 1, sym_auto, - ACTIONS(6870), 1, + ACTIONS(6892), 1, anon_sym_decltype, - STATE(3012), 1, - sym_decltype_auto, - STATE(3104), 1, + STATE(3025), 1, sym_new_declarator, - STATE(3470), 2, + STATE(3115), 1, + sym_decltype_auto, + STATE(3438), 2, sym_argument_list, sym_initializer_list, - ACTIONS(5842), 19, + ACTIONS(5857), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -320054,7 +324253,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5844), 30, + ACTIONS(5859), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -320085,10 +324284,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [27987] = 3, + [28272] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6917), 13, + ACTIONS(6924), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -320102,7 +324301,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(6915), 45, + ACTIONS(6922), 45, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -320148,10 +324347,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_explicit, anon_sym_template, anon_sym_operator, - [28053] = 3, + [28338] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6921), 28, + ACTIONS(5000), 28, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -320180,7 +324379,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - ACTIONS(6919), 30, + ACTIONS(4998), 30, anon_sym_DASH, anon_sym_PLUS, anon_sym___extension__, @@ -320211,18 +324410,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, anon_sym_requires, sym_this, - [28119] = 4, + [28404] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5454), 1, + ACTIONS(4187), 1, anon_sym_COLON_COLON, - ACTIONS(5627), 27, + ACTIONS(6926), 1, + anon_sym_LT, + STATE(2745), 1, + sym_template_argument_list, + ACTIONS(4925), 17, + 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_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4932), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DASH_GT_STAR, + [28476] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5016), 28, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP, anon_sym_SEMI, + anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, @@ -320244,7 +324508,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - ACTIONS(5625), 30, + ACTIONS(5014), 30, anon_sym_DASH, anon_sym_PLUS, anon_sym___extension__, @@ -320275,213 +324539,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, anon_sym_requires, sym_this, - [28187] = 5, + [28542] = 16, ACTIONS(3), 1, sym_comment, - STATE(2733), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6923), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5938), 17, - 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_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5936), 36, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5495), 1, + anon_sym___declspec, + ACTIONS(6472), 1, sym_auto, + ACTIONS(6474), 1, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [28257] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(1674), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6872), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5890), 17, - 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_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(6480), 1, + anon_sym_virtual, + ACTIONS(6929), 1, + anon_sym_SEMI, + STATE(2483), 1, + sym_decltype_auto, + STATE(3054), 1, + sym_alignas_qualifier, + ACTIONS(5489), 2, + anon_sym___attribute__, anon_sym___attribute, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5888), 36, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5497), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(6478), 5, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym_COLON_COLON, + STATE(2577), 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(5487), 9, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + ACTIONS(6476), 12, + anon_sym_AMP, + 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_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_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [28327] = 6, + sym_identifier, + anon_sym_template, + anon_sym_operator, + ACTIONS(5483), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [28634] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4167), 1, - anon_sym_COLON_COLON, - ACTIONS(6888), 1, - anon_sym_LT, - STATE(2670), 1, - sym_template_argument_list, - ACTIONS(5838), 17, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(5004), 28, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4172), 38, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym___attribute__, + anon_sym_SEMI, + anon_sym_COLON_COLON, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, + 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, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(5002), 30, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym___extension__, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_DASH_GT_STAR, - [28399] = 5, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + [28700] = 5, ACTIONS(3), 1, sym_comment, - STATE(1674), 1, + STATE(2771), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(6872), 4, + ACTIONS(6931), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5900), 17, + ACTIONS(5974), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -320499,7 +324706,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5898), 36, + ACTIONS(5972), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -320536,86 +324743,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [28469] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, - anon_sym___declspec, - ACTIONS(6459), 1, - sym_auto, - ACTIONS(6461), 1, - anon_sym_decltype, - ACTIONS(6475), 1, - anon_sym_virtual, - ACTIONS(6925), 1, - anon_sym_SEMI, - STATE(2504), 1, - sym_decltype_auto, - STATE(2975), 1, - sym_alignas_qualifier, - ACTIONS(5468), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5476), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(6473), 5, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - STATE(2558), 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(5466), 9, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(6471), 12, - anon_sym_AMP, - 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, - anon_sym_template, - anon_sym_operator, - ACTIONS(5462), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [28561] = 3, + [28770] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2745), 28, + ACTIONS(4978), 28, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -320644,7 +324775,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - ACTIONS(2743), 30, + ACTIONS(4976), 30, anon_sym_DASH, anon_sym_PLUS, anon_sym___extension__, @@ -320675,10 +324806,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, anon_sym_requires, sym_this, - [28627] = 3, + [28836] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5619), 28, + ACTIONS(4982), 28, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -320707,7 +324838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - ACTIONS(5617), 30, + ACTIONS(4980), 30, anon_sym_DASH, anon_sym_PLUS, anon_sym___extension__, @@ -320738,20 +324869,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, anon_sym_requires, sym_this, - [28693] = 8, + [28902] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6495), 1, - anon_sym___attribute__, - ACTIONS(6497), 1, - anon_sym___attribute, - ACTIONS(6797), 1, - anon_sym_LBRACE, - STATE(2828), 1, - sym_enumerator_list, - STATE(3020), 1, - sym_attribute_specifier, - ACTIONS(6024), 19, + STATE(1689), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6874), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5913), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -320765,13 +324893,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6026), 34, + ACTIONS(5911), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -320781,6 +324907,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -320793,11 +324921,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -320806,72 +324934,90 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [28769] = 3, + [28972] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6572), 26, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2727), 28, anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, 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_LT, - anon_sym_GT_GT, + anon_sym_AMP, anon_sym_SEMI, anon_sym_COLON_COLON, - anon_sym_RBRACK_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6570), 31, + 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, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(2725), 30, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym___extension__, sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, sym_identifier, - sym_auto, anon_sym_decltype, anon_sym_typename, anon_sym_template, - [28834] = 3, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + [29038] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4980), 18, + ACTIONS(2457), 1, + anon_sym_LBRACE, + ACTIONS(6886), 1, + anon_sym_LPAREN2, + ACTIONS(6888), 1, + anon_sym_LBRACK, + ACTIONS(6890), 1, + sym_auto, + ACTIONS(6892), 1, + anon_sym_decltype, + STATE(3100), 1, + sym_new_declarator, + STATE(3115), 1, + sym_decltype_auto, + STATE(3485), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5853), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -320885,25 +325031,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_COLON, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4982), 39, + ACTIONS(5855), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -320915,25 +325057,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_DASH_GT_STAR, - [28899] = 3, + [29120] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4992), 18, + STATE(2631), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6822), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5515), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -320943,27 +325088,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_COLON, anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4994), 39, + ACTIONS(5517), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym___attribute__, - anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -320973,29 +325116,27 @@ static const uint16_t ts_small_parse_table[] = { 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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_DASH_GT_STAR, - [28964] = 3, + anon_sym_GT2, + [29190] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4951), 18, + ACTIONS(5541), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -321005,27 +325146,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym___attribute, - anon_sym_COLON, anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4953), 39, + ACTIONS(5543), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym___attribute__, - anon_sym_COLON_COLON, + anon_sym_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -321035,100 +325177,162 @@ static const uint16_t ts_small_parse_table[] = { 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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_DASH_GT_STAR, - [29029] = 12, + anon_sym_GT2, + [29256] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6540), 1, - anon_sym_COLON, - ACTIONS(6542), 1, - anon_sym_LBRACE, - ACTIONS(6927), 1, - anon_sym_SEMI, - STATE(2513), 1, - sym_attribute_specifier, - STATE(2894), 1, - sym_field_declaration_list, - STATE(7003), 1, - sym_virtual_specifier, - STATE(7790), 1, - sym_base_class_clause, - ACTIONS(5468), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5503), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5495), 6, + ACTIONS(4991), 28, anon_sym_LPAREN2, + anon_sym_BANG, anon_sym_TILDE, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5493), 40, anon_sym_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + 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, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(4984), 30, + anon_sym_DASH, + anon_sym_PLUS, anon_sym___extension__, - anon_sym_virtual, - 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, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + [29322] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5543), 28, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + 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, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(5541), 30, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym___extension__, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, sym_identifier, - sym_auto, anon_sym_decltype, + anon_sym_typename, anon_sym_template, - anon_sym_operator, - [29112] = 3, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + [29388] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4959), 18, + STATE(2796), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6933), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5935), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -321143,11 +325347,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym___attribute, - anon_sym_COLON, anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4961), 39, + ACTIONS(5933), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -321158,7 +325361,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym___attribute__, - anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -321184,432 +325386,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_DASH_GT_STAR, - [29177] = 3, + [29458] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(6696), 26, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_RBRACK_RBRACK, + ACTIONS(2493), 1, anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(6935), 1, + anon_sym_LPAREN2, + ACTIONS(6937), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6694), 31, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, + ACTIONS(6939), 1, sym_auto, + ACTIONS(6941), 1, anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - [29242] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5482), 18, - aux_sym_preproc_elif_token1, + STATE(3199), 1, + sym_new_declarator, + STATE(3235), 1, + sym_decltype_auto, + STATE(3722), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5853), 20, 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_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - sym_literal_suffix, - ACTIONS(5484), 39, + ACTIONS(5855), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_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_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, - 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_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [29307] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6540), 1, - anon_sym_COLON, - ACTIONS(6542), 1, - anon_sym_LBRACE, - ACTIONS(6929), 1, - anon_sym_SEMI, - STATE(2513), 1, - sym_attribute_specifier, - STATE(2894), 1, - sym_field_declaration_list, - STATE(7003), 1, - sym_virtual_specifier, - STATE(7790), 1, - sym_base_class_clause, - ACTIONS(5468), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5503), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5495), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5493), 40, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - 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_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [29390] = 12, + anon_sym_GT2, + [29539] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(6540), 1, - anon_sym_COLON, - ACTIONS(6542), 1, + ACTIONS(2493), 1, anon_sym_LBRACE, - ACTIONS(6931), 1, - anon_sym_SEMI, - STATE(2513), 1, - sym_attribute_specifier, - STATE(2894), 1, - sym_field_declaration_list, - STATE(7003), 1, - sym_virtual_specifier, - STATE(7790), 1, - sym_base_class_clause, - ACTIONS(5468), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5503), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5495), 6, + ACTIONS(6935), 1, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5493), 40, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - 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, + ACTIONS(6937), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, + ACTIONS(6939), 1, sym_auto, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [29473] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5827), 1, - anon_sym_LPAREN2, - ACTIONS(6429), 1, - anon_sym_LBRACK, - ACTIONS(6431), 1, - anon_sym_DOT, ACTIONS(6941), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6943), 1, - anon_sym_AMP_AMP, - ACTIONS(6955), 1, - anon_sym_GT_EQ, - ACTIONS(6959), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6961), 1, - anon_sym_or, - ACTIONS(6963), 1, - anon_sym_and, - ACTIONS(6965), 1, - anon_sym_not_eq, - STATE(2525), 1, + anon_sym_decltype, + STATE(3235), 1, + sym_decltype_auto, + STATE(3246), 1, + sym_new_declarator, + STATE(3655), 2, sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6439), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6937), 2, + sym_initializer_list, + ACTIONS(5881), 20, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6945), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(6947), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6949), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(6951), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6957), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6939), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6953), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6933), 6, - aux_sym_preproc_elif_token1, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - sym_identifier, - ACTIONS(6935), 17, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - 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, - [29582] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5827), 1, - anon_sym_LPAREN2, - ACTIONS(6429), 1, - anon_sym_LBRACK, - ACTIONS(6431), 1, - anon_sym_DOT, - ACTIONS(6941), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6943), 1, - anon_sym_AMP_AMP, - ACTIONS(6955), 1, - anon_sym_GT_EQ, - ACTIONS(6959), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6961), 1, anon_sym_or, - ACTIONS(6963), 1, anon_sym_and, - ACTIONS(6965), 1, - anon_sym_not_eq, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6439), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6937), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6945), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(6947), 2, - anon_sym_CARET, anon_sym_xor, - ACTIONS(6949), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(6951), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6957), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6939), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6953), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6967), 6, - aux_sym_preproc_elif_token1, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - sym_identifier, - ACTIONS(6969), 17, + anon_sym_DOT, + ACTIONS(5883), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -321617,14 +325512,35 @@ static const uint16_t ts_small_parse_table[] = { 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, - [29691] = 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [29620] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6544), 19, + ACTIONS(6584), 1, + anon_sym___attribute__, + ACTIONS(6586), 1, + anon_sym___attribute, + ACTIONS(6852), 1, + anon_sym_LBRACE, + STATE(2882), 1, + sym_enumerator_list, + STATE(3241), 1, + sym_attribute_specifier, + ACTIONS(6072), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -321634,32 +325550,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6546), 38, + ACTIONS(6074), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -321667,7 +325577,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -321682,77 +325591,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_try, - [29756] = 7, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [29695] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6971), 1, - anon_sym_LBRACE, - STATE(2531), 1, - sym_attribute_specifier, - STATE(2965), 1, - sym_enumerator_list, - ACTIONS(5468), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(6026), 12, + ACTIONS(6636), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, 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_LT, + anon_sym_GT_GT, anon_sym_SEMI, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(6024), 40, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - 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_RBRACK_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6634), 31, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, sym_identifier, sym_auto, anon_sym_decltype, + anon_sym_typename, anon_sym_template, - anon_sym_operator, - [29829] = 3, + [29760] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4972), 19, + ACTIONS(6522), 1, + anon_sym___attribute__, + ACTIONS(6524), 1, + anon_sym___attribute, + STATE(3056), 1, + sym_attribute_specifier, + ACTIONS(6157), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -321766,13 +325679,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4965), 38, + anon_sym_DASH_GT, + ACTIONS(6159), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -321782,12 +325695,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -321809,12 +325718,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_try, - [29894] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [29831] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4988), 18, + ACTIONS(6522), 1, + anon_sym___attribute__, + ACTIONS(6524), 1, + anon_sym___attribute, + STATE(3069), 1, + sym_attribute_specifier, + ACTIONS(6100), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -321828,12 +325744,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_COLON, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4990), 39, + ACTIONS(6102), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -321843,8 +325760,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym___attribute__, - anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -321858,11 +325773,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -321870,40 +325785,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_DASH_GT_STAR, - [29959] = 12, + [29902] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(6542), 1, + ACTIONS(6530), 1, anon_sym_LBRACE, - ACTIONS(6973), 1, + ACTIONS(6943), 1, anon_sym_SEMI, - STATE(2513), 1, + STATE(2495), 1, sym_attribute_specifier, - STATE(2894), 1, + STATE(2916), 1, sym_field_declaration_list, - STATE(7003), 1, + STATE(7168), 1, sym_virtual_specifier, - STATE(7790), 1, + STATE(7765), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - ACTIONS(5495), 6, + ACTIONS(5559), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(5493), 40, + ACTIONS(5557), 40, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -321944,16 +325857,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [30042] = 6, + [29985] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6495), 1, + ACTIONS(6522), 1, anon_sym___attribute__, - ACTIONS(6497), 1, + ACTIONS(6524), 1, anon_sym___attribute, - STATE(3019), 1, + STATE(3144), 1, sym_attribute_specifier, - ACTIONS(6090), 19, + ACTIONS(6165), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -321973,7 +325886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6092), 35, + ACTIONS(6167), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -322009,37 +325922,37 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [30113] = 12, + [30056] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(6542), 1, + ACTIONS(6530), 1, anon_sym_LBRACE, - ACTIONS(6975), 1, + ACTIONS(6945), 1, anon_sym_SEMI, - STATE(2513), 1, + STATE(2495), 1, sym_attribute_specifier, - STATE(2894), 1, + STATE(2916), 1, sym_field_declaration_list, - STATE(7003), 1, + STATE(7168), 1, sym_virtual_specifier, - STATE(7790), 1, + STATE(7765), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - ACTIONS(5495), 6, + ACTIONS(5559), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(5493), 40, + ACTIONS(5557), 40, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -322080,81 +325993,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [30196] = 12, + [30139] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(6540), 1, - anon_sym_COLON, - ACTIONS(6542), 1, + ACTIONS(2493), 1, anon_sym_LBRACE, - ACTIONS(6977), 1, - anon_sym_SEMI, - STATE(2513), 1, - sym_attribute_specifier, - STATE(2894), 1, - sym_field_declaration_list, - STATE(7003), 1, - sym_virtual_specifier, - STATE(7790), 1, - sym_base_class_clause, - ACTIONS(5468), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5503), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5495), 6, + ACTIONS(6935), 1, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5493), 40, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - 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, + ACTIONS(6937), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, + ACTIONS(6939), 1, sym_auto, + ACTIONS(6941), 1, anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [30279] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4972), 19, + STATE(3165), 1, + sym_new_declarator, + STATE(3235), 1, + sym_decltype_auto, + STATE(3649), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5857), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -322164,32 +326023,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4965), 38, + ACTIONS(5859), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -322197,7 +326048,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -322212,13 +326062,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_try, - [30344] = 4, + anon_sym_GT2, + [30220] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5454), 1, - anon_sym_COLON_COLON, - ACTIONS(5617), 18, + ACTIONS(6522), 1, + anon_sym___attribute__, + ACTIONS(6524), 1, + anon_sym___attribute, + STATE(3040), 1, + sym_attribute_specifier, + ACTIONS(6153), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -322232,12 +326086,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_COLON, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5619), 38, + ACTIONS(6155), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -322247,7 +326102,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -322261,11 +326115,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -322273,57 +326127,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_DASH_GT_STAR, - [30411] = 11, + [30291] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(2499), 1, - anon_sym_LBRACE, - ACTIONS(6979), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6981), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6983), 1, - sym_auto, - ACTIONS(6985), 1, - anon_sym_decltype, - STATE(3169), 1, - sym_decltype_auto, - STATE(3199), 1, - sym_new_declarator, - STATE(3537), 2, + ACTIONS(6418), 1, + anon_sym_DOT, + ACTIONS(6955), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6957), 1, + anon_sym_AMP_AMP, + ACTIONS(6969), 1, + anon_sym_GT_EQ, + ACTIONS(6973), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6975), 1, + anon_sym_or, + ACTIONS(6977), 1, + anon_sym_and, + ACTIONS(6979), 1, + anon_sym_not_eq, + STATE(2491), 1, sym_argument_list, - sym_initializer_list, - ACTIONS(5823), 20, + STATE(2492), 1, + sym_subscript_argument_list, + ACTIONS(6416), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6420), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6951), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(6959), 2, anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(6961), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(6963), 2, anon_sym_AMP, + anon_sym_bitand, + ACTIONS(6965), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6971), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6953), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6967), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(6947), 6, + aux_sym_preproc_elif_token1, anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(5825), 28, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + sym_identifier, + ACTIONS(6949), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -322331,123 +326208,86 @@ static const uint16_t ts_small_parse_table[] = { 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + [30400] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5845), 1, + anon_sym_LPAREN2, + ACTIONS(6414), 1, + anon_sym_LBRACK, + ACTIONS(6418), 1, + anon_sym_DOT, + ACTIONS(6955), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6957), 1, + anon_sym_AMP_AMP, + ACTIONS(6969), 1, + anon_sym_GT_EQ, + ACTIONS(6973), 1, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, + ACTIONS(6975), 1, + anon_sym_or, + ACTIONS(6977), 1, + anon_sym_and, + ACTIONS(6979), 1, anon_sym_not_eq, + ACTIONS(6981), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6983), 1, + anon_sym_QMARK, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + ACTIONS(6416), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [30492] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5489), 18, - aux_sym_preproc_elif_token1, + ACTIONS(6951), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(6959), 2, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, + ACTIONS(6961), 2, + anon_sym_CARET, anon_sym_xor, + ACTIONS(6963), 2, + anon_sym_AMP, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - sym_literal_suffix, - ACTIONS(5491), 39, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(6965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + ACTIONS(6971), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [30557] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4972), 19, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(6953), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(6967), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, + ACTIONS(6662), 6, + aux_sym_preproc_elif_token1, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4965), 38, - anon_sym_DOT_DOT_DOT, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + sym_identifier, + ACTIONS(6664), 15, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_QMARK, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -322458,54 +326298,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + [30513] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5845), 1, + anon_sym_LPAREN2, + ACTIONS(6414), 1, + anon_sym_LBRACK, + ACTIONS(6418), 1, + anon_sym_DOT, + ACTIONS(6957), 1, + anon_sym_AMP_AMP, + ACTIONS(6969), 1, + anon_sym_GT_EQ, + ACTIONS(6973), 1, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, + ACTIONS(6977), 1, + anon_sym_and, + ACTIONS(6979), 1, anon_sym_not_eq, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + ACTIONS(6416), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_try, - [30622] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5605), 18, + ACTIONS(6951), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(6959), 2, anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(6961), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(6963), 2, anon_sym_AMP, + anon_sym_bitand, + ACTIONS(6965), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6971), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6953), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6967), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_COLON, + ACTIONS(6518), 7, + aux_sym_preproc_elif_token1, anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5607), 39, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + sym_identifier, + ACTIONS(6520), 18, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -322517,130 +326380,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [30618] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5845), 1, + anon_sym_LPAREN2, + ACTIONS(6414), 1, + anon_sym_LBRACK, + ACTIONS(6418), 1, + anon_sym_DOT, + ACTIONS(6969), 1, + anon_sym_GT_EQ, + ACTIONS(6973), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, + ACTIONS(6979), 1, anon_sym_not_eq, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + ACTIONS(6416), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(6420), 2, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_DASH_GT_STAR, - [30687] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6971), 1, - anon_sym_LBRACE, - STATE(2476), 1, - sym_attribute_specifier, - STATE(2957), 1, - sym_enumerator_list, - ACTIONS(5468), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5985), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5983), 40, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - 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_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [30760] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6688), 1, - anon_sym___attribute__, - ACTIONS(6690), 1, - anon_sym___attribute, - ACTIONS(6850), 1, - anon_sym_LBRACE, - STATE(2865), 1, - sym_enumerator_list, - STATE(3192), 1, - sym_attribute_specifier, - ACTIONS(6024), 20, + anon_sym_DASH_GT, + ACTIONS(6951), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(6959), 2, anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(6961), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(6963), 2, anon_sym_AMP, + anon_sym_bitand, + ACTIONS(6965), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6971), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6953), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6967), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(6518), 8, + aux_sym_preproc_elif_token1, anon_sym_EQ, - anon_sym_GT_GT_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_or, anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(6026), 32, + sym_identifier, + ACTIONS(6520), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, + anon_sym_AMP_AMP, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -322648,96 +326456,78 @@ static const uint16_t ts_small_parse_table[] = { 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [30835] = 25, + [30719] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(6941), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6943), 1, - anon_sym_AMP_AMP, - ACTIONS(6955), 1, + ACTIONS(6969), 1, anon_sym_GT_EQ, - ACTIONS(6959), 1, + ACTIONS(6973), 1, anon_sym_LT_EQ_GT, - ACTIONS(6961), 1, - anon_sym_or, - ACTIONS(6963), 1, - anon_sym_and, - ACTIONS(6965), 1, + ACTIONS(6979), 1, anon_sym_not_eq, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6439), 2, + ACTIONS(6416), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6937), 2, + ACTIONS(6420), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6951), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6945), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(6947), 2, + ACTIONS(6961), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(6949), 2, + ACTIONS(6963), 2, anon_sym_AMP, anon_sym_bitand, - ACTIONS(6951), 2, + ACTIONS(6965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6957), 2, + ACTIONS(6971), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6939), 3, + ACTIONS(6953), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6953), 3, + ACTIONS(6967), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6987), 6, + ACTIONS(6518), 10, aux_sym_preproc_elif_token1, + anon_sym_PIPE, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, sym_identifier, - ACTIONS(6989), 17, + ACTIONS(6520), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -322749,82 +326539,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [30944] = 27, + [30818] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(6941), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6943), 1, - anon_sym_AMP_AMP, - ACTIONS(6955), 1, + ACTIONS(6969), 1, anon_sym_GT_EQ, - ACTIONS(6959), 1, + ACTIONS(6973), 1, anon_sym_LT_EQ_GT, - ACTIONS(6961), 1, - anon_sym_or, - ACTIONS(6963), 1, - anon_sym_and, - ACTIONS(6965), 1, + ACTIONS(6979), 1, anon_sym_not_eq, - ACTIONS(6991), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6993), 1, - anon_sym_QMARK, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6439), 2, + ACTIONS(6416), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6937), 2, + ACTIONS(6420), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6951), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6945), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(6947), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6949), 2, + ACTIONS(6963), 2, anon_sym_AMP, anon_sym_bitand, - ACTIONS(6951), 2, + ACTIONS(6965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6957), 2, + ACTIONS(6971), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6939), 3, + ACTIONS(6953), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6953), 3, + ACTIONS(6967), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6524), 6, + ACTIONS(6518), 12, aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, sym_identifier, - ACTIONS(6526), 15, + ACTIONS(6520), 19, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -322835,185 +326617,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [31057] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6540), 1, - anon_sym_COLON, - ACTIONS(6542), 1, - anon_sym_LBRACE, - ACTIONS(6995), 1, - anon_sym_SEMI, - STATE(2513), 1, - sym_attribute_specifier, - STATE(2894), 1, - sym_field_declaration_list, - STATE(7003), 1, - sym_virtual_specifier, - STATE(7790), 1, - sym_base_class_clause, - ACTIONS(5468), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5503), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5495), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5493), 40, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - 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_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [31140] = 12, + [30915] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6540), 1, - anon_sym_COLON, - ACTIONS(6542), 1, - anon_sym_LBRACE, - ACTIONS(6997), 1, - anon_sym_SEMI, - STATE(2513), 1, - sym_attribute_specifier, - STATE(2894), 1, - sym_field_declaration_list, - STATE(7003), 1, - sym_virtual_specifier, - STATE(7790), 1, - sym_base_class_clause, - ACTIONS(5468), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5503), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5495), 6, + ACTIONS(5845), 1, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5493), 40, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - 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, + ACTIONS(6414), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [31223] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5454), 1, - anon_sym_COLON_COLON, - ACTIONS(5617), 18, + ACTIONS(6418), 1, + anon_sym_DOT, + ACTIONS(6969), 1, + anon_sym_GT_EQ, + ACTIONS(6973), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6979), 1, + anon_sym_not_eq, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + ACTIONS(6416), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6420), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6951), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(6965), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6971), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6953), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(6967), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_COLON, + ACTIONS(6518), 14, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5619), 38, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + sym_identifier, + ACTIONS(6520), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -323025,85 +326694,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_DASH_GT_STAR, - [31290] = 23, + [31010] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(6943), 1, - anon_sym_AMP_AMP, - ACTIONS(6955), 1, + ACTIONS(6969), 1, anon_sym_GT_EQ, - ACTIONS(6959), 1, + ACTIONS(6973), 1, anon_sym_LT_EQ_GT, - ACTIONS(6963), 1, - anon_sym_and, - ACTIONS(6965), 1, - anon_sym_not_eq, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6439), 2, + ACTIONS(6416), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6937), 2, + ACTIONS(6420), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6951), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6945), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(6947), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6949), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(6951), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6957), 2, + ACTIONS(6971), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6939), 3, + ACTIONS(6953), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6953), 3, + ACTIONS(6967), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6449), 7, + ACTIONS(6518), 15, aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, sym_identifier, - ACTIONS(6451), 18, + ACTIONS(6520), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -323111,6 +326755,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -323122,67 +326769,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [31395] = 21, + [31101] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(6955), 1, - anon_sym_GT_EQ, - ACTIONS(6959), 1, + ACTIONS(6973), 1, anon_sym_LT_EQ_GT, - ACTIONS(6965), 1, - anon_sym_not_eq, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6439), 2, + ACTIONS(6416), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6937), 2, + ACTIONS(6420), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6951), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6945), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(6947), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6949), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(6951), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6957), 2, + ACTIONS(6971), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6939), 3, + ACTIONS(6953), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6953), 3, + ACTIONS(6518), 18, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6449), 8, - aux_sym_preproc_elif_token1, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, anon_sym_or, anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, sym_identifier, - ACTIONS(6451), 19, + ACTIONS(6520), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -323191,6 +326828,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -323202,74 +326842,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [31496] = 20, + [31188] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, ACTIONS(6955), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6957), 1, + anon_sym_AMP_AMP, + ACTIONS(6969), 1, anon_sym_GT_EQ, - ACTIONS(6959), 1, + ACTIONS(6973), 1, anon_sym_LT_EQ_GT, - ACTIONS(6965), 1, + ACTIONS(6975), 1, + anon_sym_or, + ACTIONS(6977), 1, + anon_sym_and, + ACTIONS(6979), 1, anon_sym_not_eq, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6439), 2, + ACTIONS(6416), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6937), 2, + ACTIONS(6420), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6951), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6947), 2, + ACTIONS(6959), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(6961), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(6949), 2, + ACTIONS(6963), 2, anon_sym_AMP, anon_sym_bitand, - ACTIONS(6951), 2, + ACTIONS(6965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6957), 2, + ACTIONS(6971), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6939), 3, + ACTIONS(6953), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6953), 3, + ACTIONS(6967), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6449), 10, + ACTIONS(6985), 6, aux_sym_preproc_elif_token1, - anon_sym_PIPE, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, sym_identifier, - ACTIONS(6451), 19, + ACTIONS(6987), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -323281,74 +326926,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [31595] = 19, + [31297] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, ACTIONS(6955), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6957), 1, + anon_sym_AMP_AMP, + ACTIONS(6969), 1, anon_sym_GT_EQ, - ACTIONS(6959), 1, + ACTIONS(6973), 1, anon_sym_LT_EQ_GT, - ACTIONS(6965), 1, + ACTIONS(6975), 1, + anon_sym_or, + ACTIONS(6977), 1, + anon_sym_and, + ACTIONS(6979), 1, anon_sym_not_eq, - STATE(2525), 1, + ACTIONS(6981), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6983), 1, + anon_sym_QMARK, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6439), 2, + ACTIONS(6416), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6937), 2, + ACTIONS(6420), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6951), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6949), 2, + ACTIONS(6959), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(6961), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6963), 2, anon_sym_AMP, anon_sym_bitand, - ACTIONS(6951), 2, + ACTIONS(6965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6957), 2, + ACTIONS(6971), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6939), 3, + ACTIONS(6953), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6953), 3, + ACTIONS(6967), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6449), 12, + ACTIONS(6989), 6, aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_CARET, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, sym_identifier, - ACTIONS(6451), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(6991), 15, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -323359,72 +327012,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [31692] = 18, + [31410] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, ACTIONS(6955), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6957), 1, + anon_sym_AMP_AMP, + ACTIONS(6969), 1, anon_sym_GT_EQ, - ACTIONS(6959), 1, + ACTIONS(6973), 1, anon_sym_LT_EQ_GT, - ACTIONS(6965), 1, + ACTIONS(6975), 1, + anon_sym_or, + ACTIONS(6977), 1, + anon_sym_and, + ACTIONS(6979), 1, anon_sym_not_eq, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6439), 2, + ACTIONS(6416), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6937), 2, + ACTIONS(6420), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6951), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6951), 2, + ACTIONS(6959), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(6961), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6963), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(6965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6957), 2, + ACTIONS(6971), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6939), 3, + ACTIONS(6953), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6953), 3, + ACTIONS(6967), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6449), 14, + ACTIONS(6993), 6, aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, sym_identifier, - ACTIONS(6451), 19, + ACTIONS(6995), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -323436,213 +327096,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [31787] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6540), 1, - anon_sym_COLON, - ACTIONS(6542), 1, - anon_sym_LBRACE, - ACTIONS(6999), 1, - anon_sym_SEMI, - STATE(2513), 1, - sym_attribute_specifier, - STATE(2894), 1, - sym_field_declaration_list, - STATE(7003), 1, - sym_virtual_specifier, - STATE(7790), 1, - sym_base_class_clause, - ACTIONS(5468), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5503), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5495), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5493), 40, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - 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_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [31870] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6540), 1, - anon_sym_COLON, - ACTIONS(6542), 1, - anon_sym_LBRACE, - ACTIONS(7001), 1, - anon_sym_SEMI, - STATE(2513), 1, - sym_attribute_specifier, - STATE(2894), 1, - sym_field_declaration_list, - STATE(7003), 1, - sym_virtual_specifier, - STATE(7790), 1, - sym_base_class_clause, - ACTIONS(5468), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5503), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5495), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5493), 40, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - 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_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [31953] = 16, + [31519] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, ACTIONS(6955), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6957), 1, + anon_sym_AMP_AMP, + ACTIONS(6969), 1, anon_sym_GT_EQ, - ACTIONS(6959), 1, + ACTIONS(6973), 1, anon_sym_LT_EQ_GT, - STATE(2525), 1, + ACTIONS(6975), 1, + anon_sym_or, + ACTIONS(6977), 1, + anon_sym_and, + ACTIONS(6979), 1, + anon_sym_not_eq, + ACTIONS(6981), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6983), 1, + anon_sym_QMARK, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6439), 2, + ACTIONS(6416), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6937), 2, + ACTIONS(6420), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6951), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6957), 2, + ACTIONS(6959), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(6961), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6963), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(6965), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6971), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6939), 3, + ACTIONS(6953), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6953), 3, + ACTIONS(6967), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6449), 15, + ACTIONS(6997), 6, aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, sym_identifier, - ACTIONS(6451), 21, - anon_sym_DOT_DOT_DOT, + ACTIONS(6999), 15, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -323653,16 +327182,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [32044] = 6, + [31632] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6495), 1, + ACTIONS(6522), 1, anon_sym___attribute__, - ACTIONS(6497), 1, + ACTIONS(6524), 1, anon_sym___attribute, - STATE(2992), 1, + STATE(3084), 1, sym_attribute_specifier, - ACTIONS(6117), 19, + ACTIONS(6149), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -323682,7 +327211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6119), 35, + ACTIONS(6151), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -323718,102 +327247,166 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [32115] = 6, + [31703] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6495), 1, - anon_sym___attribute__, - ACTIONS(6497), 1, - anon_sym___attribute, - STATE(3022), 1, - sym_attribute_specifier, - ACTIONS(6096), 19, + ACTIONS(5470), 18, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6098), 35, + sym_identifier, + sym_literal_suffix, + ACTIONS(5472), 39, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_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_LBRACE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RBRACE, 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [31768] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4187), 1, + anon_sym_COLON_COLON, + ACTIONS(6580), 1, + anon_sym_LT, + STATE(1623), 1, + sym_template_argument_list, + STATE(3104), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7001), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6058), 6, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(6060), 43, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [32186] = 12, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [31843] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(6542), 1, + ACTIONS(6530), 1, anon_sym_LBRACE, ACTIONS(7003), 1, anon_sym_SEMI, - STATE(2513), 1, + STATE(2495), 1, sym_attribute_specifier, - STATE(2894), 1, + STATE(2916), 1, sym_field_declaration_list, - STATE(7003), 1, + STATE(7168), 1, sym_virtual_specifier, - STATE(7790), 1, + STATE(7765), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - ACTIONS(5495), 6, + ACTIONS(5559), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(5493), 40, + ACTIONS(5557), 40, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -323854,10 +327447,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [32269] = 3, + [31926] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4984), 18, + ACTIONS(6791), 1, + anon_sym___attribute__, + ACTIONS(6793), 1, + anon_sym___attribute, + ACTIONS(7005), 1, + anon_sym_COLON, + ACTIONS(7007), 1, + anon_sym_LBRACE, + STATE(2924), 1, + sym__enum_base_clause, + STATE(3032), 1, + sym_enumerator_list, + STATE(3455), 1, + sym_attribute_specifier, + ACTIONS(6316), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -323871,12 +327478,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_COLON, anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4986), 39, + ACTIONS(6318), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -323886,9 +327491,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -323913,170 +327515,215 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_DASH_GT_STAR, - [32334] = 14, + [32005] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(6716), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(6429), 1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_RBRACK_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(6431), 1, - anon_sym_DOT, - ACTIONS(6959), 1, + anon_sym_QMARK, anon_sym_LT_EQ_GT, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6439), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6937), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6714), 31, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6957), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6939), 3, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6449), 18, - aux_sym_preproc_elif_token1, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DOT, sym_identifier, - ACTIONS(6451), 22, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - 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, - [32421] = 25, + sym_auto, + anon_sym_decltype, + anon_sym_typename, + anon_sym_template, + [32070] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(6528), 1, + anon_sym_COLON, + ACTIONS(6530), 1, + anon_sym_LBRACE, + ACTIONS(7009), 1, + anon_sym_SEMI, + STATE(2495), 1, + sym_attribute_specifier, + STATE(2916), 1, + sym_field_declaration_list, + STATE(7168), 1, + sym_virtual_specifier, + STATE(7765), 1, + sym_base_class_clause, + ACTIONS(5489), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(5567), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5559), 6, anon_sym_LPAREN2, - ACTIONS(6429), 1, - anon_sym_LBRACK, - ACTIONS(6431), 1, - anon_sym_DOT, - ACTIONS(6941), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6943), 1, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(6955), 1, - anon_sym_GT_EQ, - ACTIONS(6959), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6961), 1, - anon_sym_or, - ACTIONS(6963), 1, - anon_sym_and, - ACTIONS(6965), 1, - anon_sym_not_eq, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6439), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6937), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6945), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(6947), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6949), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(5557), 40, anon_sym_AMP, - anon_sym_bitand, - ACTIONS(6951), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6957), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6939), 3, + anon_sym___extension__, + anon_sym_virtual, + 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_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [32153] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6528), 1, + anon_sym_COLON, + ACTIONS(6530), 1, + anon_sym_LBRACE, + ACTIONS(7011), 1, + anon_sym_SEMI, + STATE(2495), 1, + sym_attribute_specifier, + STATE(2916), 1, + sym_field_declaration_list, + STATE(7168), 1, + sym_virtual_specifier, + STATE(7765), 1, + sym_base_class_clause, + ACTIONS(5489), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(5567), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5559), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6953), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7005), 6, - aux_sym_preproc_elif_token1, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(5557), 40, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + 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_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, sym_identifier, - ACTIONS(7007), 17, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - 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, - [32530] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [32236] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5452), 11, + ACTIONS(5517), 11, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -324088,7 +327735,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5450), 46, + ACTIONS(5515), 46, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -324135,51 +327782,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [32595] = 8, + [32301] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(4167), 1, - anon_sym_COLON_COLON, - ACTIONS(6630), 1, - anon_sym_LT, - STATE(1603), 1, - sym_template_argument_list, - STATE(3047), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7009), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5977), 6, - anon_sym_AMP, + ACTIONS(6528), 1, + anon_sym_COLON, + ACTIONS(6530), 1, + anon_sym_LBRACE, + ACTIONS(7013), 1, + anon_sym_SEMI, + STATE(2495), 1, + sym_attribute_specifier, + STATE(2916), 1, + sym_field_declaration_list, + STATE(7168), 1, + sym_virtual_specifier, + STATE(7765), 1, + sym_base_class_clause, + ACTIONS(5489), 2, + anon_sym___attribute__, anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(5979), 43, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5567), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5559), 6, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(5557), 40, + anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, anon_sym___declspec, - anon_sym_LBRACE, + 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_EQ, 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, @@ -324193,156 +327848,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [32670] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6495), 1, - anon_sym___attribute__, - ACTIONS(6497), 1, - anon_sym___attribute, - STATE(2996), 1, - sym_attribute_specifier, - ACTIONS(6121), 19, - 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_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6123), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [32741] = 27, + anon_sym_template, + anon_sym_operator, + [32384] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(6941), 1, + ACTIONS(6955), 1, anon_sym_PIPE_PIPE, - ACTIONS(6943), 1, + ACTIONS(6957), 1, anon_sym_AMP_AMP, - ACTIONS(6955), 1, + ACTIONS(6969), 1, anon_sym_GT_EQ, - ACTIONS(6959), 1, + ACTIONS(6973), 1, anon_sym_LT_EQ_GT, - ACTIONS(6961), 1, + ACTIONS(6975), 1, anon_sym_or, - ACTIONS(6963), 1, + ACTIONS(6977), 1, anon_sym_and, - ACTIONS(6965), 1, + ACTIONS(6979), 1, anon_sym_not_eq, - ACTIONS(6991), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6993), 1, - anon_sym_QMARK, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6439), 2, + ACTIONS(6416), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6937), 2, + ACTIONS(6420), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6951), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6945), 2, + ACTIONS(6959), 2, anon_sym_PIPE, anon_sym_bitor, - ACTIONS(6947), 2, + ACTIONS(6961), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(6949), 2, + ACTIONS(6963), 2, anon_sym_AMP, anon_sym_bitand, - ACTIONS(6951), 2, + ACTIONS(6965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6957), 2, + ACTIONS(6971), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6939), 3, + ACTIONS(6953), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6953), 3, + ACTIONS(6967), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7011), 6, + ACTIONS(7015), 6, aux_sym_preproc_elif_token1, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, sym_identifier, - ACTIONS(7013), 15, + ACTIONS(7017), 17, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -324353,73 +327937,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [32854] = 25, + [32493] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(6941), 1, + ACTIONS(6955), 1, anon_sym_PIPE_PIPE, - ACTIONS(6943), 1, + ACTIONS(6957), 1, anon_sym_AMP_AMP, - ACTIONS(6955), 1, + ACTIONS(6969), 1, anon_sym_GT_EQ, - ACTIONS(6959), 1, + ACTIONS(6973), 1, anon_sym_LT_EQ_GT, - ACTIONS(6961), 1, + ACTIONS(6975), 1, anon_sym_or, - ACTIONS(6963), 1, + ACTIONS(6977), 1, anon_sym_and, - ACTIONS(6965), 1, + ACTIONS(6979), 1, anon_sym_not_eq, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6439), 2, + ACTIONS(6416), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6937), 2, + ACTIONS(6420), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6951), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6945), 2, + ACTIONS(6959), 2, anon_sym_PIPE, anon_sym_bitor, - ACTIONS(6947), 2, + ACTIONS(6961), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(6949), 2, + ACTIONS(6963), 2, anon_sym_AMP, anon_sym_bitand, - ACTIONS(6951), 2, + ACTIONS(6965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6957), 2, + ACTIONS(6971), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6939), 3, + ACTIONS(6953), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6953), 3, + ACTIONS(6967), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7015), 6, + ACTIONS(7019), 6, aux_sym_preproc_elif_token1, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, sym_identifier, - ACTIONS(7017), 17, + ACTIONS(7021), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -324437,16 +328021,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [32963] = 6, + [32602] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6495), 1, + ACTIONS(6522), 1, anon_sym___attribute__, - ACTIONS(6497), 1, + ACTIONS(6524), 1, anon_sym___attribute, - STATE(3001), 1, + STATE(3048), 1, sym_attribute_specifier, - ACTIONS(6125), 19, + ACTIONS(6169), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -324466,7 +328050,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6127), 35, + ACTIONS(6171), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -324502,16 +328086,16 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [33034] = 6, + [32673] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6495), 1, + ACTIONS(6522), 1, anon_sym___attribute__, - ACTIONS(6497), 1, + ACTIONS(6524), 1, anon_sym___attribute, - STATE(3002), 1, + STATE(3024), 1, sym_attribute_specifier, - ACTIONS(6129), 19, + ACTIONS(6206), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -324531,7 +328115,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6131), 35, + ACTIONS(6208), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -324567,16 +328151,16 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [33105] = 6, + [32744] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6495), 1, + ACTIONS(6522), 1, anon_sym___attribute__, - ACTIONS(6497), 1, + ACTIONS(6524), 1, anon_sym___attribute, - STATE(3025), 1, + STATE(3118), 1, sym_attribute_specifier, - ACTIONS(6168), 19, + ACTIONS(6210), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -324596,7 +328180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6170), 35, + ACTIONS(6212), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -324632,33 +328216,229 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [33176] = 11, + [32815] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(6528), 1, + anon_sym_COLON, + ACTIONS(6530), 1, + anon_sym_LBRACE, + ACTIONS(7023), 1, + anon_sym_SEMI, + STATE(2495), 1, + sym_attribute_specifier, + STATE(2916), 1, + sym_field_declaration_list, + STATE(7168), 1, + sym_virtual_specifier, + STATE(7765), 1, + sym_base_class_clause, + ACTIONS(5489), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(5567), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5559), 6, anon_sym_LPAREN2, - ACTIONS(6429), 1, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(5557), 40, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + 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, - ACTIONS(6431), 1, - anon_sym_DOT, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6439), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6939), 3, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [32898] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6528), 1, + anon_sym_COLON, + ACTIONS(6530), 1, + anon_sym_LBRACE, + ACTIONS(7025), 1, + anon_sym_SEMI, + STATE(2495), 1, + sym_attribute_specifier, + STATE(2916), 1, + sym_field_declaration_list, + STATE(7168), 1, + sym_virtual_specifier, + STATE(7765), 1, + sym_base_class_clause, + ACTIONS(5489), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(5567), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5559), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6449), 22, - aux_sym_preproc_elif_token1, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(5557), 40, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + 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_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [32981] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7027), 1, + anon_sym_LBRACE, + STATE(2475), 1, + sym_attribute_specifier, + STATE(2979), 1, + sym_enumerator_list, + ACTIONS(5489), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(6068), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6066), 40, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + 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_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [33054] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6522), 1, + anon_sym___attribute__, + ACTIONS(6524), 1, + anon_sym___attribute, + STATE(3120), 1, + sym_attribute_specifier, + ACTIONS(6104), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -324668,28 +328448,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - sym_identifier, - ACTIONS(6451), 23, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6106), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + 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_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -324701,35 +328476,238 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - [33257] = 12, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [33125] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(7027), 1, + anon_sym_LBRACE, + STATE(2565), 1, + sym_attribute_specifier, + STATE(2915), 1, + sym_enumerator_list, + ACTIONS(5489), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(6074), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(6429), 1, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6072), 40, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + 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, - ACTIONS(6431), 1, - anon_sym_DOT, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6439), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6937), 2, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [33198] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6528), 1, + anon_sym_COLON, + ACTIONS(6530), 1, + anon_sym_LBRACE, + ACTIONS(7029), 1, + anon_sym_SEMI, + STATE(2495), 1, + sym_attribute_specifier, + STATE(2916), 1, + sym_field_declaration_list, + STATE(7168), 1, + sym_virtual_specifier, + STATE(7765), 1, + sym_base_class_clause, + ACTIONS(5489), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(5567), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5559), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(5557), 40, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + 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_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [33281] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6528), 1, + anon_sym_COLON, + ACTIONS(6530), 1, + anon_sym_LBRACE, + ACTIONS(7031), 1, + anon_sym_SEMI, + STATE(2495), 1, + sym_attribute_specifier, + STATE(2916), 1, + sym_field_declaration_list, + STATE(7168), 1, + sym_virtual_specifier, + STATE(7765), 1, + sym_base_class_clause, + ACTIONS(5489), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(5567), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5559), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(5557), 40, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + 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_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [33364] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5519), 1, + anon_sym_COLON_COLON, + ACTIONS(5541), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6939), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6449), 20, - aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -324738,29 +328716,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5543), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - sym_identifier, - ACTIONS(6451), 23, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DASH_GT_STAR, + [33431] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5545), 18, + 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_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5547), 39, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + 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___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -324773,88 +328808,230 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - [33340] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5827), 1, - anon_sym_LPAREN2, - ACTIONS(6429), 1, - anon_sym_LBRACK, - ACTIONS(6431), 1, - anon_sym_DOT, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6439), 2, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6937), 2, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DASH_GT_STAR, + [33496] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5477), 18, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6957), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6939), 3, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6449), 18, - aux_sym_preproc_elif_token1, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DOT, sym_identifier, - ACTIONS(6451), 23, + sym_literal_suffix, + ACTIONS(5479), 39, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_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_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RBRACE, + 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_LT_EQ_GT, - [33425] = 6, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [33561] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(6495), 1, + ACTIONS(6528), 1, + anon_sym_COLON, + ACTIONS(6530), 1, + anon_sym_LBRACE, + ACTIONS(7033), 1, + anon_sym_SEMI, + STATE(2495), 1, + sym_attribute_specifier, + STATE(2916), 1, + sym_field_declaration_list, + STATE(7168), 1, + sym_virtual_specifier, + STATE(7765), 1, + sym_base_class_clause, + ACTIONS(5489), 2, anon_sym___attribute__, - ACTIONS(6497), 1, anon_sym___attribute, - STATE(3027), 1, + ACTIONS(5567), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5559), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(5557), 40, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + 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_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [33644] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6528), 1, + anon_sym_COLON, + ACTIONS(6530), 1, + anon_sym_LBRACE, + ACTIONS(7035), 1, + anon_sym_SEMI, + STATE(2495), 1, sym_attribute_specifier, - ACTIONS(6104), 19, + STATE(2916), 1, + sym_field_declaration_list, + STATE(7168), 1, + sym_virtual_specifier, + STATE(7765), 1, + sym_base_class_clause, + ACTIONS(5489), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(5567), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5559), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(5557), 40, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + 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_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [33727] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5519), 1, + anon_sym_COLON_COLON, + ACTIONS(5541), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -324868,13 +329045,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6106), 35, + ACTIONS(5543), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -324884,6 +329060,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -324897,11 +329074,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -324909,83 +329086,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_DASH_GT_STAR, - [33496] = 27, + [33794] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, - anon_sym_LPAREN2, - ACTIONS(6429), 1, - anon_sym_LBRACK, - ACTIONS(6431), 1, - anon_sym_DOT, - ACTIONS(6941), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6943), 1, - anon_sym_AMP_AMP, - ACTIONS(6955), 1, - anon_sym_GT_EQ, - ACTIONS(6959), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6961), 1, - anon_sym_or, - ACTIONS(6963), 1, - anon_sym_and, - ACTIONS(6965), 1, - anon_sym_not_eq, - ACTIONS(6991), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6993), 1, - anon_sym_QMARK, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6439), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6937), 2, + ACTIONS(5519), 1, + anon_sym_COLON_COLON, + ACTIONS(5521), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6945), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(6947), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6949), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(6951), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6957), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6939), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6953), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7019), 6, - aux_sym_preproc_elif_token1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - sym_identifier, - ACTIONS(7021), 15, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5523), 38, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + 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___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -324996,10 +329137,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [33609] = 3, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DASH_GT_STAR, + [33861] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4972), 19, + ACTIONS(2493), 1, + anon_sym_LBRACE, + ACTIONS(6935), 1, + anon_sym_LPAREN2, + ACTIONS(6937), 1, + anon_sym_LBRACK, + ACTIONS(6939), 1, + sym_auto, + ACTIONS(6941), 1, + anon_sym_decltype, + STATE(3205), 1, + sym_new_declarator, + STATE(3235), 1, + sym_decltype_auto, + STATE(3599), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5841), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -325009,32 +329182,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4965), 38, + ACTIONS(5843), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -325042,7 +329207,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -325057,17 +329221,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_try, - [33674] = 6, + anon_sym_GT2, + [33942] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5601), 18, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + sym_literal_suffix, + ACTIONS(5603), 39, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_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_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [34007] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6495), 1, + ACTIONS(6522), 1, anon_sym___attribute__, - ACTIONS(6497), 1, + ACTIONS(6524), 1, anon_sym___attribute, - STATE(3046), 1, + STATE(3033), 1, sym_attribute_specifier, - ACTIONS(6151), 19, + ACTIONS(6214), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -325087,7 +329313,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6153), 35, + ACTIONS(6216), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -325123,16 +329349,162 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [33745] = 6, + [34078] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6528), 1, + anon_sym_COLON, + ACTIONS(6530), 1, + anon_sym_LBRACE, + ACTIONS(7037), 1, + anon_sym_SEMI, + STATE(2495), 1, + sym_attribute_specifier, + STATE(2916), 1, + sym_field_declaration_list, + STATE(7168), 1, + sym_virtual_specifier, + STATE(7765), 1, + sym_base_class_clause, + ACTIONS(5489), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(5567), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5559), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(5557), 40, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + 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_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [34161] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6528), 1, + anon_sym_COLON, + ACTIONS(6530), 1, + anon_sym_LBRACE, + ACTIONS(7039), 1, + anon_sym_SEMI, + STATE(2495), 1, + sym_attribute_specifier, + STATE(2916), 1, + sym_field_declaration_list, + STATE(7168), 1, + sym_virtual_specifier, + STATE(7765), 1, + sym_base_class_clause, + ACTIONS(5489), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(5567), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5559), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(5557), 40, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + 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_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [34244] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6495), 1, + ACTIONS(6584), 1, anon_sym___attribute__, - ACTIONS(6497), 1, + ACTIONS(6586), 1, anon_sym___attribute, - STATE(3050), 1, + ACTIONS(6852), 1, + anon_sym_LBRACE, + STATE(2894), 1, + sym_enumerator_list, + STATE(3233), 1, sym_attribute_specifier, - ACTIONS(6155), 19, + ACTIONS(6066), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -325142,27 +329514,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6157), 35, + ACTIONS(6068), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -325171,7 +329541,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -325185,92 +329554,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [33816] = 3, + anon_sym_GT2, + [34319] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5478), 18, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - sym_literal_suffix, - ACTIONS(5480), 39, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_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_LT, - anon_sym_GT_GT, - anon_sym_SEMI, + ACTIONS(6791), 1, + anon_sym___attribute__, + ACTIONS(6793), 1, + anon_sym___attribute, + ACTIONS(7005), 1, anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [33881] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2499), 1, + ACTIONS(7007), 1, anon_sym_LBRACE, - ACTIONS(6979), 1, - anon_sym_LPAREN2, - ACTIONS(6981), 1, - anon_sym_LBRACK, - ACTIONS(6983), 1, - sym_auto, - ACTIONS(6985), 1, - anon_sym_decltype, - STATE(3161), 1, - sym_new_declarator, - STATE(3169), 1, - sym_decltype_auto, - STATE(3688), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(5873), 20, + STATE(3004), 1, + sym__enum_base_clause, + STATE(3145), 1, + sym_enumerator_list, + STATE(3568), 1, + sym_attribute_specifier, + ACTIONS(6393), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -325280,24 +329585,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, - ACTIONS(5875), 28, + anon_sym_DASH_GT, + ACTIONS(6395), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -325305,25 +329610,27 @@ static const uint16_t ts_small_parse_table[] = { 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [33962] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [34398] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6708), 26, + ACTIONS(6660), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -325350,7 +329657,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6706), 31, + ACTIONS(6658), 31, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -325382,75 +329689,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_typename, anon_sym_template, - [34027] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6495), 1, - anon_sym___attribute__, - ACTIONS(6497), 1, - anon_sym___attribute, - STATE(3032), 1, - sym_attribute_specifier, - ACTIONS(6058), 19, - 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_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6060), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [34098] = 3, + [34463] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5577), 18, + ACTIONS(5641), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -325469,7 +329711,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, sym_identifier, sym_literal_suffix, - ACTIONS(5579), 39, + ACTIONS(5643), 39, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -325509,17 +329751,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [34163] = 4, + [34528] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5454), 1, - anon_sym_COLON_COLON, - ACTIONS(5625), 18, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(5845), 1, + anon_sym_LPAREN2, + ACTIONS(6414), 1, + anon_sym_LBRACK, + ACTIONS(6418), 1, + anon_sym_DOT, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + ACTIONS(6416), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6420), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6953), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(6518), 22, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -325528,24 +329786,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_COLON, anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5627), 38, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + sym_identifier, + ACTIONS(6520), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -325558,43 +329821,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + [34609] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5845), 1, + anon_sym_LPAREN2, + ACTIONS(6414), 1, + anon_sym_LBRACK, + ACTIONS(6418), 1, + anon_sym_DOT, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + ACTIONS(6416), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(6420), 2, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_DASH_GT_STAR, - [34230] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6789), 1, - anon_sym___attribute__, - ACTIONS(6791), 1, - anon_sym___attribute, - ACTIONS(7023), 1, - anon_sym_COLON, - ACTIONS(7025), 1, - anon_sym_LBRACE, - STATE(2918), 1, - sym__enum_base_clause, - STATE(2974), 1, - sym_enumerator_list, - STATE(3450), 1, - sym_attribute_specifier, - ACTIONS(6342), 16, + anon_sym_DASH_GT, + ACTIONS(6951), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(6953), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(6518), 20, + aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -325604,19 +329858,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6344), 34, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + sym_identifier, + ACTIONS(6520), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -325629,63 +329892,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + [34692] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5845), 1, + anon_sym_LPAREN2, + ACTIONS(6414), 1, + anon_sym_LBRACK, + ACTIONS(6418), 1, + anon_sym_DOT, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + ACTIONS(6416), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(6420), 2, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [34309] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6789), 1, - anon_sym___attribute__, - ACTIONS(6791), 1, - anon_sym___attribute, - ACTIONS(7023), 1, - anon_sym_COLON, - ACTIONS(7025), 1, - anon_sym_LBRACE, - STATE(2910), 1, - sym__enum_base_clause, - STATE(3060), 1, - sym_enumerator_list, - STATE(3483), 1, - sym_attribute_specifier, - ACTIONS(6336), 16, + anon_sym_DASH_GT, + ACTIONS(6951), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(6971), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6953), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(6518), 18, + aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6338), 34, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + sym_identifier, + ACTIONS(6520), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -325698,110 +329964,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [34388] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6540), 1, - anon_sym_COLON, - ACTIONS(6542), 1, - anon_sym_LBRACE, - ACTIONS(7027), 1, - anon_sym_SEMI, - STATE(2513), 1, - sym_attribute_specifier, - STATE(2894), 1, - sym_field_declaration_list, - STATE(7003), 1, - sym_virtual_specifier, - STATE(7790), 1, - sym_base_class_clause, - ACTIONS(5468), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5503), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5495), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5493), 40, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - 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_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [34471] = 11, + [34777] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2499), 1, - anon_sym_LBRACE, - ACTIONS(6979), 1, - anon_sym_LPAREN2, - ACTIONS(6981), 1, - anon_sym_LBRACK, - ACTIONS(6983), 1, - sym_auto, - ACTIONS(6985), 1, - anon_sym_decltype, - STATE(3169), 1, - sym_decltype_auto, - STATE(3206), 1, - sym_new_declarator, - STATE(3612), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(5869), 20, + ACTIONS(5006), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -325811,24 +329977,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, - ACTIONS(5871), 28, + anon_sym_DASH_GT, + ACTIONS(5008), 39, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -325836,31 +330007,29 @@ static const uint16_t ts_small_parse_table[] = { 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [34552] = 6, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DASH_GT_STAR, + [34842] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6495), 1, - anon_sym___attribute__, - ACTIONS(6497), 1, - anon_sym___attribute, - STATE(3035), 1, - sym_attribute_specifier, - ACTIONS(6062), 19, + ACTIONS(5010), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -325874,13 +330043,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6064), 35, + ACTIONS(5012), 39, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -325890,6 +330058,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -325903,11 +330073,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -325915,11 +330085,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_DASH_GT_STAR, - [34623] = 3, + [34907] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4972), 19, + ACTIONS(4998), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -325933,13 +330105,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, + anon_sym___attribute, + anon_sym_COLON, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, - ACTIONS(4965), 38, + anon_sym_DASH_GT, + ACTIONS(5000), 39, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -325949,12 +330120,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, + anon_sym___attribute__, + anon_sym_COLON_COLON, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -325966,93 +330135,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_try, - [34688] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6540), 1, - anon_sym_COLON, - ACTIONS(6542), 1, - anon_sym_LBRACE, - ACTIONS(7029), 1, - anon_sym_SEMI, - STATE(2513), 1, - sym_attribute_specifier, - STATE(2894), 1, - sym_field_declaration_list, - STATE(7003), 1, - sym_virtual_specifier, - STATE(7790), 1, - sym_base_class_clause, - ACTIONS(5468), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5503), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5495), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5493), 40, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - 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_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [34771] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_DASH_GT_STAR, + [34972] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4972), 19, + ACTIONS(5014), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -326066,13 +330167,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, + anon_sym___attribute, + anon_sym_COLON, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, - ACTIONS(4965), 38, + anon_sym_DASH_GT, + ACTIONS(5016), 39, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -326082,12 +330182,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, + anon_sym___attribute__, + anon_sym_COLON_COLON, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -326099,32 +330197,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_try, - [34836] = 8, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DASH_GT_STAR, + [35037] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6688), 1, - anon_sym___attribute__, - ACTIONS(6690), 1, - anon_sym___attribute, - ACTIONS(6850), 1, - anon_sym_LBRACE, - STATE(2844), 1, - sym_enumerator_list, - STATE(3148), 1, - sym_attribute_specifier, - ACTIONS(5983), 20, + ACTIONS(5002), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -326134,25 +330225,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, - ACTIONS(5985), 32, + anon_sym_DASH_GT, + ACTIONS(5004), 39, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -326161,44 +330255,29 @@ static const uint16_t ts_small_parse_table[] = { 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [34911] = 11, + anon_sym_final, + anon_sym_override, + anon_sym_DASH_GT_STAR, + [35102] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2499), 1, - anon_sym_LBRACE, - ACTIONS(6979), 1, - anon_sym_LPAREN2, - ACTIONS(6981), 1, - anon_sym_LBRACK, - ACTIONS(6983), 1, - sym_auto, - ACTIONS(6985), 1, - anon_sym_decltype, - STATE(3169), 1, - sym_decltype_auto, - STATE(3202), 1, - sym_new_declarator, - STATE(3686), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(5842), 20, + ACTIONS(4976), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -326208,24 +330287,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, - ACTIONS(5844), 28, + anon_sym_DASH_GT, + ACTIONS(4978), 39, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -326233,25 +330317,29 @@ static const uint16_t ts_small_parse_table[] = { 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [34992] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DASH_GT_STAR, + [35167] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4955), 18, + ACTIONS(4980), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -326270,7 +330358,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4957), 39, + ACTIONS(4982), 39, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -326310,155 +330398,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_DASH_GT_STAR, - [35057] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6540), 1, - anon_sym_COLON, - ACTIONS(6542), 1, - anon_sym_LBRACE, - ACTIONS(7031), 1, - anon_sym_SEMI, - STATE(2513), 1, - sym_attribute_specifier, - STATE(2894), 1, - sym_field_declaration_list, - STATE(7003), 1, - sym_virtual_specifier, - STATE(7790), 1, - sym_base_class_clause, - ACTIONS(5468), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5503), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5495), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5493), 40, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - 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_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [35140] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4167), 1, - anon_sym_COLON_COLON, - ACTIONS(6630), 1, - anon_sym_LT, - ACTIONS(7033), 1, - anon_sym_LBRACK, - STATE(2641), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3695), 1, - sym_template_argument_list, - ACTIONS(4169), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(4152), 4, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - ACTIONS(4174), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4144), 41, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [35218] = 6, + [35232] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6688), 1, + ACTIONS(6522), 1, anon_sym___attribute__, - ACTIONS(6690), 1, + ACTIONS(6524), 1, anon_sym___attribute, - STATE(3194), 1, + STATE(3097), 1, sym_attribute_specifier, - ACTIONS(6096), 20, + ACTIONS(6161), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -326468,140 +330417,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6098), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [35288] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(2979), 1, - anon_sym_TILDE, - ACTIONS(4298), 1, - anon_sym_LPAREN2, - ACTIONS(4300), 1, - anon_sym_STAR, - ACTIONS(4302), 1, - anon_sym_AMP_AMP, - ACTIONS(4304), 1, - anon_sym_AMP, - ACTIONS(5460), 1, - sym_identifier, - ACTIONS(5863), 1, - anon_sym_LBRACK, - ACTIONS(5865), 1, - anon_sym_RPAREN, - ACTIONS(6321), 1, - anon_sym_COLON_COLON, - STATE(3004), 1, - sym_parameter_list, - STATE(4289), 1, - sym_alignas_qualifier, - STATE(5847), 1, - sym__scope_resolution, - STATE(6087), 1, - sym__function_declarator_seq, - STATE(6447), 1, - sym__declarator, - STATE(6687), 1, - sym__abstract_declarator, - STATE(8682), 1, - sym_ms_based_modifier, - ACTIONS(3333), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4131), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8601), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6092), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(5998), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3331), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [35400] = 3, + anon_sym_DASH_GT, + ACTIONS(6163), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [35303] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5617), 17, + ACTIONS(6522), 1, + anon_sym___attribute__, + ACTIONS(6524), 1, + anon_sym___attribute, + STATE(3078), 1, + sym_attribute_specifier, + ACTIONS(6108), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -326615,11 +330486,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5619), 39, + ACTIONS(6110), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -326629,8 +330502,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym___attribute__, - anon_sym_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -326644,11 +330515,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -326656,104 +330527,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_DASH_GT_STAR, - [35464] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(2979), 1, - anon_sym_TILDE, - ACTIONS(4298), 1, - anon_sym_LPAREN2, - ACTIONS(4300), 1, - anon_sym_STAR, - ACTIONS(4302), 1, - anon_sym_AMP_AMP, - ACTIONS(4304), 1, - anon_sym_AMP, - ACTIONS(5460), 1, - sym_identifier, - ACTIONS(5863), 1, - anon_sym_LBRACK, - ACTIONS(6321), 1, - anon_sym_COLON_COLON, - ACTIONS(6748), 1, - anon_sym_RPAREN, - STATE(3004), 1, - sym_parameter_list, - STATE(4289), 1, - sym_alignas_qualifier, - STATE(5847), 1, - sym__scope_resolution, - STATE(6087), 1, - sym__function_declarator_seq, - STATE(6509), 1, - sym__declarator, - STATE(6690), 1, - sym__abstract_declarator, - STATE(8682), 1, - sym_ms_based_modifier, - ACTIONS(3333), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4131), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8601), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6092), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(5998), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3331), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [35576] = 6, + [35374] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6688), 1, + ACTIONS(6584), 1, anon_sym___attribute__, - ACTIONS(6690), 1, + ACTIONS(6586), 1, anon_sym___attribute, - STATE(3196), 1, + STATE(3229), 1, sym_attribute_specifier, - ACTIONS(6168), 20, + ACTIONS(6149), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -326774,7 +330558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6170), 33, + ACTIONS(6151), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -326808,16 +330592,16 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [35646] = 6, + [35444] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6688), 1, + ACTIONS(6584), 1, anon_sym___attribute__, - ACTIONS(6690), 1, + ACTIONS(6586), 1, anon_sym___attribute, - STATE(3198), 1, + STATE(3159), 1, sym_attribute_specifier, - ACTIONS(6104), 20, + ACTIONS(6169), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -326838,7 +330622,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6106), 33, + ACTIONS(6171), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -326872,20 +330656,20 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [35716] = 6, + [35514] = 6, ACTIONS(3), 1, sym_comment, - STATE(1918), 1, + STATE(1974), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(5070), 2, + ACTIONS(5078), 2, sym_primitive_type, sym_identifier, - ACTIONS(5877), 4, + ACTIONS(5955), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5156), 10, + ACTIONS(5167), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -326896,7 +330680,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5159), 39, + ACTIONS(5164), 39, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -326936,10 +330720,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [35786] = 3, + [35584] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5750), 20, + ACTIONS(6584), 1, + anon_sym___attribute__, + ACTIONS(6586), 1, + anon_sym___attribute, + STATE(3167), 1, + sym_attribute_specifier, + ACTIONS(6157), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -326949,28 +330739,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5752), 36, + ACTIONS(6159), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -326980,7 +330767,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -326994,19 +330780,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [35850] = 6, + anon_sym_GT2, + [35654] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6688), 1, + ACTIONS(6584), 1, anon_sym___attribute__, - ACTIONS(6690), 1, + ACTIONS(6586), 1, anon_sym___attribute, - STATE(3141), 1, + STATE(3171), 1, sym_attribute_specifier, - ACTIONS(6151), 20, + ACTIONS(6214), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -327027,7 +330814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6153), 33, + ACTIONS(6216), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -327061,16 +330848,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [35920] = 6, + [35724] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6688), 1, - anon_sym___attribute__, - ACTIONS(6690), 1, - anon_sym___attribute, - STATE(3157), 1, - sym_attribute_specifier, - ACTIONS(6155), 20, + ACTIONS(5697), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -327080,25 +330861,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6157), 33, + anon_sym_DASH_GT, + ACTIONS(5699), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -327108,6 +330892,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -327121,14 +330906,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [35990] = 3, + anon_sym_DASH_GT_STAR, + [35788] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5673), 20, + ACTIONS(6584), 1, + anon_sym___attribute__, + ACTIONS(6586), 1, + anon_sym___attribute, + STATE(3174), 1, + sym_attribute_specifier, + ACTIONS(6153), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -327138,28 +330928,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5675), 36, + ACTIONS(6155), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -327169,7 +330956,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -327183,14 +330969,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [36054] = 3, + anon_sym_GT2, + [35858] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7036), 27, - aux_sym_preproc_elif_token1, + ACTIONS(6584), 1, + anon_sym___attribute__, + ACTIONS(6586), 1, + anon_sym___attribute, + STATE(3245), 1, + sym_attribute_specifier, + ACTIONS(6100), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -327200,36 +330992,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - sym_literal_suffix, - ACTIONS(7038), 29, + ACTIONS(6102), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, 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_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -327238,19 +331020,33 @@ static const uint16_t ts_small_parse_table[] = { 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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [36118] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [35928] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5782), 20, + ACTIONS(6584), 1, + anon_sym___attribute__, + ACTIONS(6586), 1, + anon_sym___attribute, + STATE(3207), 1, + sym_attribute_specifier, + ACTIONS(6210), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -327260,28 +331056,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5784), 36, + ACTIONS(6212), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -327291,7 +331084,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -327305,86 +331097,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [36182] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4167), 1, - anon_sym_COLON_COLON, - ACTIONS(4172), 1, - anon_sym_SEMI, - ACTIONS(6630), 1, - anon_sym_LT, - STATE(2641), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2731), 1, - sym_template_argument_list, - ACTIONS(4174), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4152), 5, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LBRACK_LBRACK, - ACTIONS(4144), 42, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [36258] = 6, + anon_sym_GT2, + [35998] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6688), 1, - anon_sym___attribute__, - ACTIONS(6690), 1, - anon_sym___attribute, - STATE(3178), 1, - sym_attribute_specifier, - ACTIONS(6125), 20, + ACTIONS(7041), 1, + sym_literal_suffix, + ACTIONS(4174), 26, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -327394,26 +331117,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(6127), 33, + sym_identifier, + ACTIONS(4166), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -327422,34 +331154,25 @@ static const uint16_t ts_small_parse_table[] = { 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [36328] = 5, + [36064] = 6, ACTIONS(3), 1, sym_comment, - STATE(2755), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6878), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5450), 16, + ACTIONS(6584), 1, + anon_sym___attribute__, + ACTIONS(6586), 1, + anon_sym___attribute, + STATE(3227), 1, + sym_attribute_specifier, + ACTIONS(6206), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -327459,23 +331182,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5452), 35, + ACTIONS(6208), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -327485,100 +331210,73 @@ static const uint16_t ts_small_parse_table[] = { 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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [36396] = 30, + anon_sym_GT2, + [36134] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7042), 1, + ACTIONS(4187), 1, + anon_sym_COLON_COLON, + ACTIONS(6580), 1, + anon_sym_LT, + ACTIONS(7043), 1, + anon_sym_LBRACK, + STATE(2660), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3803), 1, + sym_template_argument_list, + ACTIONS(4189), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(4172), 4, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(7044), 1, + anon_sym_SEMI, + ACTIONS(4194), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4164), 41, anon_sym_AMP, - ACTIONS(7048), 1, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, anon_sym___attribute__, - ACTIONS(7051), 1, anon_sym___attribute, - ACTIONS(7054), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7057), 1, - anon_sym_LBRACK, - ACTIONS(7059), 1, + 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_static, + 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, - ACTIONS(7065), 1, - anon_sym___asm, - ACTIONS(7067), 1, - anon_sym_DASH_GT, - ACTIONS(7072), 1, - anon_sym_noexcept, - ACTIONS(7074), 1, - anon_sym_throw, - ACTIONS(7076), 1, - anon_sym_requires, - STATE(3992), 1, - sym_alignas_qualifier, - STATE(4709), 1, - sym__function_attributes_start, - STATE(4911), 1, - sym_ref_qualifier, - STATE(5615), 1, - sym_trailing_return_type, - STATE(5669), 1, - sym__function_attributes_end, - STATE(6745), 1, - sym_gnu_asm_expression, - ACTIONS(7061), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(7063), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7069), 2, - anon_sym_final, - anon_sym_override, - STATE(4072), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4287), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5606), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5733), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5816), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5277), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7040), 7, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - ACTIONS(7046), 12, - anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -327590,10 +331288,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [36514] = 3, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [36212] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5728), 20, + STATE(2770), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6918), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5515), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -327607,14 +331319,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5730), 36, + ACTIONS(5517), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -327624,7 +331332,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -327638,11 +331345,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -327651,16 +331358,16 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [36578] = 6, + [36280] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6688), 1, + ACTIONS(6584), 1, anon_sym___attribute__, - ACTIONS(6690), 1, + ACTIONS(6586), 1, anon_sym___attribute, - STATE(3180), 1, + STATE(3201), 1, sym_attribute_specifier, - ACTIONS(6129), 20, + ACTIONS(6104), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -327681,7 +331388,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6131), 33, + ACTIONS(6106), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -327715,83 +331422,80 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [36648] = 30, + [36350] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(7042), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(2999), 1, + anon_sym_TILDE, + ACTIONS(4310), 1, + anon_sym_LPAREN2, + ACTIONS(4312), 1, + anon_sym_STAR, + ACTIONS(4314), 1, anon_sym_AMP_AMP, - ACTIONS(7044), 1, + ACTIONS(4316), 1, anon_sym_AMP, - ACTIONS(7048), 1, - anon_sym___attribute__, - ACTIONS(7051), 1, - anon_sym___attribute, - ACTIONS(7054), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7057), 1, + ACTIONS(5481), 1, + sym_identifier, + ACTIONS(5875), 1, anon_sym_LBRACK, - ACTIONS(7059), 1, - anon_sym_const, - ACTIONS(7065), 1, - anon_sym___asm, - ACTIONS(7067), 1, - anon_sym_DASH_GT, - ACTIONS(7072), 1, - anon_sym_noexcept, - ACTIONS(7074), 1, - anon_sym_throw, - ACTIONS(7079), 1, - anon_sym_requires, - STATE(3992), 1, + ACTIONS(5877), 1, + anon_sym_RPAREN, + ACTIONS(6365), 1, + anon_sym_COLON_COLON, + STATE(3113), 1, + sym_parameter_list, + STATE(4325), 1, sym_alignas_qualifier, - STATE(4725), 1, - sym__function_attributes_start, - STATE(4943), 1, - sym_ref_qualifier, - STATE(5603), 1, - sym_trailing_return_type, - STATE(5653), 1, - sym__function_attributes_end, - STATE(6745), 1, - sym_gnu_asm_expression, - ACTIONS(6020), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7061), 2, + STATE(5923), 1, + sym__scope_resolution, + STATE(6109), 1, + sym__function_declarator_seq, + STATE(6552), 1, + sym__declarator, + STATE(6754), 1, + sym__abstract_declarator, + STATE(8864), 1, + sym_ms_based_modifier, + ACTIONS(3341), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(7063), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(4072), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4287), 2, + STATE(4215), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(5606), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5733), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5816), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5245), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7040), 7, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - ACTIONS(7046), 12, + STATE(8569), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6099), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(6145), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(3339), 13, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -327803,13 +331507,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [36766] = 4, + [36462] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5003), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(5005), 20, + ACTIONS(5716), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -327823,14 +331524,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_LBRACK, + anon_sym___attribute, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4998), 34, + anon_sym_DASH_GT, + ACTIONS(5718), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -327840,9 +331541,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -327864,17 +331565,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [36832] = 6, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [36526] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6688), 1, + ACTIONS(6584), 1, anon_sym___attribute__, - ACTIONS(6690), 1, + ACTIONS(6586), 1, anon_sym___attribute, - STATE(3115), 1, + STATE(3249), 1, sym_attribute_specifier, - ACTIONS(6058), 20, + ACTIONS(6161), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -327895,7 +331598,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6060), 33, + ACTIONS(6163), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -327929,80 +331632,167 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [36902] = 6, + [36596] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6688), 1, - anon_sym___attribute__, - ACTIONS(6690), 1, - anon_sym___attribute, - STATE(3142), 1, - sym_attribute_specifier, - ACTIONS(6117), 20, - 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_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(4187), 1, + anon_sym_COLON_COLON, + ACTIONS(6580), 1, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(6119), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + STATE(2660), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2756), 1, + sym_template_argument_list, + ACTIONS(4194), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4172), 6, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(4164), 42, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_LBRACK, - anon_sym_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_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [36972] = 6, + anon_sym_template, + anon_sym_operator, + [36670] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(2999), 1, + anon_sym_TILDE, + ACTIONS(4310), 1, + anon_sym_LPAREN2, + ACTIONS(4312), 1, + anon_sym_STAR, + ACTIONS(4314), 1, + anon_sym_AMP_AMP, + ACTIONS(4316), 1, + anon_sym_AMP, + ACTIONS(5481), 1, + sym_identifier, + ACTIONS(5875), 1, + anon_sym_LBRACK, + ACTIONS(6365), 1, + anon_sym_COLON_COLON, + ACTIONS(6781), 1, + anon_sym_RPAREN, + STATE(3113), 1, + sym_parameter_list, + STATE(4325), 1, + sym_alignas_qualifier, + STATE(5923), 1, + sym__scope_resolution, + STATE(6109), 1, + sym__function_declarator_seq, + STATE(6630), 1, + sym__declarator, + STATE(6803), 1, + sym__abstract_declarator, + STATE(8864), 1, + sym_ms_based_modifier, + ACTIONS(3341), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4215), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8569), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6099), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(6145), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(3339), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [36782] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6688), 1, + ACTIONS(6584), 1, anon_sym___attribute__, - ACTIONS(6690), 1, + ACTIONS(6586), 1, anon_sym___attribute, - STATE(3118), 1, + STATE(3156), 1, sym_attribute_specifier, - ACTIONS(6062), 20, + ACTIONS(6165), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -328023,7 +331813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6064), 33, + ACTIONS(6167), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -328057,30 +331847,31 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [37042] = 8, + [36852] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4167), 1, + ACTIONS(4187), 1, anon_sym_COLON_COLON, - ACTIONS(6630), 1, + ACTIONS(4192), 1, + anon_sym_SEMI, + ACTIONS(6580), 1, anon_sym_LT, - STATE(2641), 1, + STATE(2660), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2731), 1, + STATE(2756), 1, sym_template_argument_list, - ACTIONS(4174), 4, + ACTIONS(4194), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(4152), 6, + ACTIONS(4172), 5, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(4144), 42, + ACTIONS(4164), 42, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -328123,16 +331914,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [37116] = 6, + [36928] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6688), 1, + ACTIONS(6584), 1, anon_sym___attribute__, - ACTIONS(6690), 1, + ACTIONS(6586), 1, anon_sym___attribute, - STATE(3191), 1, + STATE(3220), 1, sym_attribute_specifier, - ACTIONS(6090), 20, + ACTIONS(6108), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -328153,7 +331944,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6092), 33, + ACTIONS(6110), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -328187,13 +331978,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [37186] = 4, + [36998] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7081), 1, - sym_literal_suffix, - ACTIONS(4154), 26, - aux_sym_preproc_elif_token1, + ACTIONS(5764), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -328207,31 +331995,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(4146), 29, + anon_sym_DASH_GT, + ACTIONS(5766), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + 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___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -328244,15 +332026,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [37252] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [37062] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5651), 20, + ACTIONS(5742), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -328273,7 +332063,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5653), 36, + ACTIONS(5744), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -328310,10 +332100,99 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [37316] = 3, + [37126] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7048), 1, + anon_sym_AMP_AMP, + ACTIONS(7050), 1, + anon_sym_AMP, + ACTIONS(7054), 1, + anon_sym___attribute__, + ACTIONS(7057), 1, + anon_sym___attribute, + ACTIONS(7060), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7063), 1, + anon_sym_LBRACK, + ACTIONS(7065), 1, + anon_sym_const, + ACTIONS(7071), 1, + anon_sym___asm, + ACTIONS(7073), 1, + anon_sym_DASH_GT, + ACTIONS(7075), 1, + anon_sym_noexcept, + ACTIONS(7077), 1, + anon_sym_throw, + ACTIONS(7079), 1, + anon_sym_requires, + STATE(4036), 1, + sym_alignas_qualifier, + STATE(4688), 1, + sym__function_attributes_start, + STATE(4971), 1, + sym_ref_qualifier, + STATE(5584), 1, + sym_trailing_return_type, + STATE(5845), 1, + sym__function_attributes_end, + STATE(6850), 1, + sym_gnu_asm_expression, + ACTIONS(6037), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7067), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7069), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(4140), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4332), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5730), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5965), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5298), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7046), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + ACTIONS(7052), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [37244] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5802), 20, + ACTIONS(7081), 27, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -328327,25 +332206,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5804), 36, + sym_identifier, + sym_literal_suffix, + ACTIONS(7083), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym___attribute__, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -328358,29 +332244,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [37380] = 6, + anon_sym_DASH_GT, + [37308] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6688), 1, - anon_sym___attribute__, - ACTIONS(6690), 1, - anon_sym___attribute, - STATE(3146), 1, - sym_attribute_specifier, - ACTIONS(6121), 20, + ACTIONS(5776), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -328390,25 +332262,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6123), 33, + anon_sym_DASH_GT, + ACTIONS(5778), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -328418,6 +332293,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -328431,14 +332307,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [37450] = 3, + anon_sym_DASH_GT_STAR, + [37372] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5619), 12, + ACTIONS(5543), 12, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -328451,7 +332326,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5617), 44, + ACTIONS(5541), 44, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -328496,289 +332371,205 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [37514] = 5, + [37436] = 3, ACTIONS(3), 1, sym_comment, - STATE(2508), 1, - sym_attribute_specifier, - ACTIONS(5468), 2, - anon_sym___attribute__, + ACTIONS(5800), 20, + 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_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym___attribute, - ACTIONS(6153), 12, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5802), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(6151), 40, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - 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_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, + 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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, sym_auto, anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [37581] = 5, + anon_sym_DASH_GT_STAR, + [37500] = 3, ACTIONS(3), 1, sym_comment, - STATE(2468), 1, - sym_attribute_specifier, - ACTIONS(5468), 2, - anon_sym___attribute__, + ACTIONS(5541), 17, + 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_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym___attribute, - ACTIONS(6119), 12, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5543), 39, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(6117), 40, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - 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_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, + 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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, sym_auto, anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [37648] = 30, + anon_sym_final, + anon_sym_override, + anon_sym_DASH_GT_STAR, + [37564] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(7042), 1, + ACTIONS(7048), 1, anon_sym_AMP_AMP, - ACTIONS(7044), 1, + ACTIONS(7050), 1, anon_sym_AMP, ACTIONS(7054), 1, - anon_sym_LBRACK_LBRACK, + anon_sym___attribute__, ACTIONS(7057), 1, + anon_sym___attribute, + ACTIONS(7060), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7063), 1, anon_sym_LBRACK, - ACTIONS(7059), 1, - anon_sym_const, ACTIONS(7065), 1, + anon_sym_const, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7072), 1, + ACTIONS(7073), 1, + anon_sym_DASH_GT, + ACTIONS(7075), 1, anon_sym_noexcept, - ACTIONS(7074), 1, + ACTIONS(7077), 1, anon_sym_throw, - ACTIONS(7079), 1, + ACTIONS(7088), 1, anon_sym_requires, - ACTIONS(7083), 1, - anon_sym___attribute__, - ACTIONS(7085), 1, - anon_sym___attribute, - ACTIONS(7087), 1, - anon_sym_DASH_GT, - STATE(3992), 1, + STATE(4036), 1, sym_alignas_qualifier, - STATE(4823), 1, + STATE(4743), 1, sym__function_attributes_start, - STATE(4970), 1, + STATE(4967), 1, sym_ref_qualifier, - STATE(5603), 1, + STATE(5594), 1, sym_trailing_return_type, - STATE(5972), 1, + STATE(5736), 1, sym__function_attributes_end, - STATE(6745), 1, + STATE(6850), 1, sym_gnu_asm_expression, - ACTIONS(6020), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7061), 2, + ACTIONS(7067), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(7063), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - STATE(4072), 2, + ACTIONS(7085), 2, + anon_sym_final, + anon_sym_override, + STATE(4140), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(4287), 2, + STATE(4332), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(5606), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5733), 2, + STATE(5730), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5816), 2, + STATE(5965), 2, sym__function_postfix, sym_requires_clause, - STATE(5293), 3, + STATE(5333), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(7040), 6, + ACTIONS(7046), 7, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - ACTIONS(7046), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [37765] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(2977), 1, - anon_sym_LPAREN2, - ACTIONS(2979), 1, - anon_sym_TILDE, - ACTIONS(2981), 1, - anon_sym_STAR, - ACTIONS(2983), 1, - anon_sym_AMP, - ACTIONS(5460), 1, - sym_identifier, - ACTIONS(6321), 1, - anon_sym_COLON_COLON, - ACTIONS(7089), 1, - anon_sym_LBRACK, - STATE(4043), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4289), 1, - sym_alignas_qualifier, - STATE(5847), 1, - sym__scope_resolution, - STATE(6493), 1, - sym__declarator, - STATE(8682), 1, - sym_ms_based_modifier, - ACTIONS(3329), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(3333), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2954), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(3928), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3327), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(8601), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(5998), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3331), 13, + ACTIONS(7052), 12, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -328790,7 +332581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [37874] = 8, + [37682] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(7091), 1, @@ -328799,12 +332590,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(7095), 1, anon_sym_LBRACK, - STATE(3267), 1, + STATE(3296), 1, sym_parameter_list, - STATE(3086), 2, + STATE(3129), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(6038), 19, + ACTIONS(6112), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -328824,7 +332615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6040), 30, + ACTIONS(6114), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -328855,89 +332646,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [37947] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2475), 1, - sym_attribute_specifier, - ACTIONS(5468), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(6123), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(6121), 40, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - 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_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [38014] = 11, + [37755] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2609), 1, - anon_sym_LBRACE, - ACTIONS(7097), 1, - anon_sym_LPAREN2, - ACTIONS(7099), 1, - anon_sym_LBRACK, - ACTIONS(7101), 1, - sym_auto, - ACTIONS(7103), 1, - anon_sym_decltype, - STATE(3493), 1, - sym_new_declarator, - STATE(3525), 1, - sym_decltype_auto, - STATE(3831), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(5869), 16, + ACTIONS(5776), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -328947,22 +332659,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute, anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5871), 30, + ACTIONS(5778), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -328970,64 +332689,94 @@ static const uint16_t ts_small_parse_table[] = { 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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [38093] = 5, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [37818] = 26, ACTIONS(3), 1, sym_comment, - STATE(2530), 1, - sym_attribute_specifier, - ACTIONS(5468), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(6092), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(2997), 1, anon_sym_LPAREN2, + ACTIONS(2999), 1, anon_sym_TILDE, + ACTIONS(5861), 1, + sym_identifier, + ACTIONS(5873), 1, + anon_sym_COLON_COLON, + ACTIONS(7097), 1, anon_sym_STAR, + ACTIONS(7099), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(6090), 40, + ACTIONS(7101), 1, anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - 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, + ACTIONS(7103), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, + STATE(4069), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4325), 1, + sym_alignas_qualifier, + STATE(5896), 1, + sym__scope_resolution, + STATE(6451), 1, + sym__declarator, + STATE(8286), 1, + sym_ms_based_modifier, + ACTIONS(3337), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3341), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2912), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(3994), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3335), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(8569), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6145), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(3339), 13, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -329040,71 +332789,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [38160] = 26, + [37927] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1852), 1, + ACTIONS(1850), 1, anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2977), 1, + ACTIONS(2997), 1, anon_sym_LPAREN2, - ACTIONS(2979), 1, + ACTIONS(2999), 1, anon_sym_TILDE, - ACTIONS(5849), 1, - sym_identifier, ACTIONS(5861), 1, + sym_identifier, + ACTIONS(5873), 1, anon_sym_COLON_COLON, - ACTIONS(7089), 1, - anon_sym_LBRACK, - ACTIONS(7105), 1, + ACTIONS(7097), 1, anon_sym_STAR, - ACTIONS(7107), 1, + ACTIONS(7099), 1, anon_sym_AMP_AMP, - ACTIONS(7109), 1, + ACTIONS(7101), 1, anon_sym_AMP, - STATE(4043), 1, + ACTIONS(7103), 1, + anon_sym_LBRACK, + STATE(4069), 1, sym_ms_unaligned_ptr_modifier, - STATE(4289), 1, + STATE(4325), 1, sym_alignas_qualifier, - STATE(5860), 1, + STATE(5896), 1, sym__scope_resolution, - STATE(6313), 1, + STATE(6401), 1, sym__declarator, - STATE(8106), 1, + STATE(8286), 1, sym_ms_based_modifier, - ACTIONS(3329), 2, + ACTIONS(3337), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(3333), 2, + ACTIONS(3341), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2946), 2, + STATE(3962), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(3948), 2, + STATE(3999), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3327), 3, + ACTIONS(3335), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(8601), 3, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(5998), 11, + STATE(6145), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -329116,7 +332858,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3331), 13, + ACTIONS(3339), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -329130,167 +332872,237 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [38269] = 28, + [38036] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, - anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(4187), 1, + anon_sym_COLON_COLON, + ACTIONS(6580), 1, + anon_sym_LT, + STATE(1623), 1, + sym_template_argument_list, + STATE(3104), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7001), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4164), 6, + anon_sym_AMP, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(6431), 1, - anon_sym_DOT, - ACTIONS(6991), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7019), 1, - anon_sym_EQ, - ACTIONS(7115), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7117), 1, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(4172), 41, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(7119), 1, - anon_sym_PIPE, - ACTIONS(7123), 1, - anon_sym_AMP, - ACTIONS(7129), 1, - anon_sym_GT_EQ, - ACTIONS(7133), 1, - anon_sym_QMARK, - ACTIONS(7135), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7137), 1, - anon_sym_or, - ACTIONS(7139), 1, - anon_sym_and, - ACTIONS(7141), 1, - anon_sym_bitor, - ACTIONS(7143), 1, - anon_sym_bitand, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6439), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7111), 2, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [38109] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5800), 21, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7121), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7131), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7113), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7125), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7127), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7021), 18, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5802), 34, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [38382] = 30, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [38172] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + STATE(2505), 1, + sym_attribute_specifier, + ACTIONS(5489), 2, + anon_sym___attribute__, anon_sym___attribute, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(7042), 1, + ACTIONS(6216), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(7044), 1, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6214), 40, anon_sym_AMP, - ACTIONS(7057), 1, + anon_sym___extension__, + anon_sym_virtual, + 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, - ACTIONS(7072), 1, - anon_sym_noexcept, - ACTIONS(7074), 1, - anon_sym_throw, - ACTIONS(7147), 1, - anon_sym___attribute__, - ACTIONS(7149), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7157), 1, - anon_sym___asm, - ACTIONS(7160), 1, - anon_sym_DASH_GT, - ACTIONS(7162), 1, - anon_sym_requires, - STATE(1658), 1, - sym_alignas_qualifier, - STATE(4802), 1, - sym__function_attributes_start, - STATE(4951), 1, - sym_ref_qualifier, - STATE(5446), 1, - sym_trailing_return_type, - STATE(5677), 1, - sym__function_attributes_end, - STATE(6766), 1, - sym_gnu_asm_expression, - ACTIONS(7069), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7152), 2, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(7154), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(3982), 2, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [38239] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2516), 1, sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4184), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5458), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5606), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5816), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5302), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7040), 6, + ACTIONS(5489), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(6106), 12, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_EQ, - anon_sym_try, - ACTIONS(7145), 12, + anon_sym_GT2, + ACTIONS(6104), 40, + anon_sym_AMP, anon_sym___extension__, + anon_sym_virtual, + 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_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, @@ -329302,10 +333114,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [38499] = 3, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [38306] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7036), 25, + ACTIONS(7041), 1, + sym_literal_suffix, + ACTIONS(4174), 24, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -329330,8 +333151,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(7038), 30, + ACTIONS(4166), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -329362,64 +333182,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [38562] = 26, + [38371] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2520), 1, + sym_attribute_specifier, + ACTIONS(5489), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(6110), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6108), 40, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + 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_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [38438] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1852), 1, + ACTIONS(1850), 1, anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2977), 1, + ACTIONS(2997), 1, anon_sym_LPAREN2, - ACTIONS(2979), 1, + ACTIONS(2999), 1, anon_sym_TILDE, - ACTIONS(5849), 1, - sym_identifier, ACTIONS(5861), 1, + sym_identifier, + ACTIONS(5873), 1, anon_sym_COLON_COLON, - ACTIONS(7089), 1, - anon_sym_LBRACK, - ACTIONS(7105), 1, + ACTIONS(7097), 1, anon_sym_STAR, - ACTIONS(7107), 1, + ACTIONS(7099), 1, anon_sym_AMP_AMP, - ACTIONS(7109), 1, + ACTIONS(7101), 1, anon_sym_AMP, - STATE(4043), 1, + ACTIONS(7103), 1, + anon_sym_LBRACK, + STATE(4069), 1, sym_ms_unaligned_ptr_modifier, - STATE(4289), 1, + STATE(4325), 1, sym_alignas_qualifier, - STATE(5860), 1, + STATE(5896), 1, sym__scope_resolution, - STATE(6349), 1, + STATE(6437), 1, sym__declarator, - STATE(8106), 1, + STATE(8286), 1, sym_ms_based_modifier, - ACTIONS(3329), 2, + ACTIONS(3337), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(3333), 2, + ACTIONS(3341), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2888), 2, + STATE(2980), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(3927), 2, + STATE(3997), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3327), 3, + ACTIONS(3335), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(8601), 3, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(5998), 11, + STATE(6145), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -329431,7 +333313,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3331), 13, + ACTIONS(3339), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -329445,26 +333327,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [38671] = 26, + [38547] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1852), 1, + ACTIONS(1850), 1, anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2977), 1, + ACTIONS(2997), 1, anon_sym_LPAREN2, - ACTIONS(2979), 1, + ACTIONS(2999), 1, anon_sym_TILDE, - ACTIONS(5849), 1, - sym_identifier, ACTIONS(5861), 1, + sym_identifier, + ACTIONS(5873), 1, anon_sym_COLON_COLON, - ACTIONS(7089), 1, + ACTIONS(7103), 1, anon_sym_LBRACK, ACTIONS(7105), 1, anon_sym_STAR, @@ -329472,37 +333354,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, ACTIONS(7109), 1, anon_sym_AMP, - STATE(4043), 1, + STATE(4069), 1, sym_ms_unaligned_ptr_modifier, - STATE(4289), 1, + STATE(4325), 1, sym_alignas_qualifier, - STATE(5860), 1, + STATE(5896), 1, sym__scope_resolution, - STATE(6294), 1, + STATE(6276), 1, sym__declarator, - STATE(8106), 1, + STATE(8504), 1, sym_ms_based_modifier, - ACTIONS(3329), 2, + ACTIONS(3337), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(3333), 2, + ACTIONS(3341), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3820), 2, + STATE(3962), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(3930), 2, + STATE(4005), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3327), 3, + ACTIONS(3335), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(8601), 3, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(5998), 11, + STATE(6145), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -329514,7 +333396,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3331), 13, + ACTIONS(3339), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -329528,50 +333410,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [38780] = 8, + [38656] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7091), 1, - anon_sym_LPAREN2, - ACTIONS(7093), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7095), 1, - anon_sym_LBRACK, - STATE(3267), 1, - sym_parameter_list, - STATE(3086), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6100), 19, - 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_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(5749), 4, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6102), 30, - anon_sym_DOT_DOT_DOT, - 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_QMARK, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + ACTIONS(5751), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -329582,125 +333429,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + ACTIONS(4166), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + 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_LBRACK, + anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [38853] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7042), 1, - anon_sym_AMP_AMP, - ACTIONS(7044), 1, - anon_sym_AMP, - ACTIONS(7054), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7057), 1, - anon_sym_LBRACK, - ACTIONS(7059), 1, - anon_sym_const, - ACTIONS(7065), 1, - anon_sym___asm, - ACTIONS(7072), 1, - anon_sym_noexcept, - ACTIONS(7074), 1, - anon_sym_throw, - ACTIONS(7076), 1, - anon_sym_requires, - ACTIONS(7083), 1, - anon_sym___attribute__, - ACTIONS(7085), 1, - anon_sym___attribute, - ACTIONS(7087), 1, anon_sym_DASH_GT, - STATE(3992), 1, - sym_alignas_qualifier, - STATE(4804), 1, - sym__function_attributes_start, - STATE(4952), 1, - sym_ref_qualifier, - STATE(5615), 1, - sym_trailing_return_type, - STATE(5955), 1, - sym__function_attributes_end, - STATE(6745), 1, - sym_gnu_asm_expression, - ACTIONS(7061), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(7063), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7069), 2, - anon_sym_final, - anon_sym_override, - STATE(4072), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4287), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5606), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5733), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5816), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5291), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7040), 6, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - ACTIONS(7046), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [38970] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2609), 1, - anon_sym_LBRACE, - ACTIONS(7097), 1, - anon_sym_LPAREN2, - ACTIONS(7099), 1, - anon_sym_LBRACK, - ACTIONS(7101), 1, - sym_auto, - ACTIONS(7103), 1, - anon_sym_decltype, - STATE(3387), 1, - sym_new_declarator, - STATE(3525), 1, - sym_decltype_auto, - STATE(3811), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(5842), 16, + ACTIONS(4174), 22, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -329714,55 +333464,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5844), 30, - anon_sym_DOT_DOT_DOT, - 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_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_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [39049] = 8, + anon_sym_DOT, + sym_identifier, + [38723] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7091), 1, - anon_sym_LPAREN2, - ACTIONS(7093), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7095), 1, - anon_sym_LBRACK, - STATE(3267), 1, - sym_parameter_list, - STATE(3086), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6164), 19, + ACTIONS(4187), 1, + anon_sym_COLON_COLON, + ACTIONS(4932), 1, + anon_sym_LBRACE, + ACTIONS(4939), 1, + anon_sym_LT, + STATE(2705), 1, + sym_template_argument_list, + ACTIONS(4934), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -329773,24 +333494,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6166), 30, + ACTIONS(4927), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -329811,196 +333534,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [39122] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5827), 1, - anon_sym_LPAREN2, - ACTIONS(6429), 1, - anon_sym_LBRACK, - ACTIONS(6431), 1, - anon_sym_DOT, - ACTIONS(6933), 1, - anon_sym_EQ, - ACTIONS(7115), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7117), 1, - anon_sym_AMP_AMP, - ACTIONS(7119), 1, - anon_sym_PIPE, - ACTIONS(7123), 1, - anon_sym_AMP, - ACTIONS(7129), 1, - anon_sym_GT_EQ, - ACTIONS(7135), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7137), 1, - anon_sym_or, - ACTIONS(7139), 1, - anon_sym_and, - ACTIONS(7141), 1, - anon_sym_bitor, - ACTIONS(7143), 1, - anon_sym_bitand, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6433), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6439), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7111), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7121), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7131), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7113), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7125), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7127), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6935), 20, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - [39231] = 5, + [38794] = 26, ACTIONS(3), 1, sym_comment, - STATE(2490), 1, - sym_attribute_specifier, - ACTIONS(5468), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(6127), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(6125), 40, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___declspec, + ACTIONS(53), 1, 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_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - sym_auto, - anon_sym_decltype, + ACTIONS(1268), 1, anon_sym_template, + ACTIONS(1850), 1, anon_sym_operator, - [39298] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2491), 1, - sym_attribute_specifier, - ACTIONS(5468), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(6131), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(2997), 1, anon_sym_LPAREN2, + ACTIONS(2999), 1, anon_sym_TILDE, + ACTIONS(5481), 1, + sym_identifier, + ACTIONS(6365), 1, + anon_sym_COLON_COLON, + ACTIONS(7103), 1, + anon_sym_LBRACK, + ACTIONS(7111), 1, anon_sym_STAR, + ACTIONS(7113), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(6129), 40, + ACTIONS(7115), 1, anon_sym_AMP, + STATE(4069), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4325), 1, + sym_alignas_qualifier, + STATE(5923), 1, + sym__scope_resolution, + STATE(6320), 1, + sym__declarator, + STATE(8339), 1, + sym_ms_based_modifier, + ACTIONS(3337), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3341), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2925), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4013), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3335), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(8569), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6145), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(3339), 13, anon_sym___extension__, - anon_sym_virtual, - 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_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, @@ -330013,17 +333619,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [39365] = 3, + [38903] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5782), 21, + ACTIONS(6791), 1, + anon_sym___attribute__, + ACTIONS(6793), 1, + anon_sym___attribute, + ACTIONS(7007), 1, + anon_sym_LBRACE, + STATE(3062), 1, + sym_enumerator_list, + STATE(3442), 1, + sym_attribute_specifier, + ACTIONS(6072), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -330033,28 +333642,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, - ACTIONS(5784), 34, + anon_sym_DASH_GT, + ACTIONS(6074), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -330063,81 +333667,81 @@ static const uint16_t ts_small_parse_table[] = { 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [39428] = 26, + anon_sym_DASH_GT_STAR, + [38976] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1852), 1, + ACTIONS(1850), 1, anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2977), 1, + ACTIONS(2997), 1, anon_sym_LPAREN2, - ACTIONS(2979), 1, + ACTIONS(2999), 1, anon_sym_TILDE, - ACTIONS(2981), 1, - anon_sym_STAR, - ACTIONS(2983), 1, - anon_sym_AMP, - ACTIONS(5460), 1, + ACTIONS(5481), 1, sym_identifier, - ACTIONS(6321), 1, + ACTIONS(6365), 1, anon_sym_COLON_COLON, - ACTIONS(7089), 1, + ACTIONS(7103), 1, anon_sym_LBRACK, - STATE(4043), 1, + ACTIONS(7111), 1, + anon_sym_STAR, + ACTIONS(7113), 1, + anon_sym_AMP_AMP, + ACTIONS(7115), 1, + anon_sym_AMP, + STATE(4069), 1, sym_ms_unaligned_ptr_modifier, - STATE(4289), 1, + STATE(4325), 1, sym_alignas_qualifier, - STATE(5847), 1, + STATE(5923), 1, sym__scope_resolution, - STATE(6509), 1, + STATE(6321), 1, sym__declarator, - STATE(8682), 1, + STATE(8339), 1, sym_ms_based_modifier, - ACTIONS(3329), 2, + ACTIONS(3337), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(3333), 2, + ACTIONS(3341), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3820), 2, + STATE(3962), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(3932), 2, + STATE(4015), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3327), 3, + ACTIONS(3335), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(8601), 3, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(5998), 11, + STATE(6145), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -330149,7 +333753,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3331), 13, + ACTIONS(3339), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -330163,64 +333767,173 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [39537] = 26, + [39085] = 52, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6886), 1, + anon_sym_LPAREN2, + ACTIONS(7117), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7119), 1, + anon_sym_COMMA, + ACTIONS(7121), 1, + anon_sym_RPAREN, + ACTIONS(7123), 1, + anon_sym_DASH, + ACTIONS(7125), 1, + anon_sym_PLUS, + ACTIONS(7127), 1, + anon_sym_STAR, + ACTIONS(7129), 1, + anon_sym_SLASH, + ACTIONS(7131), 1, + anon_sym_PERCENT, + ACTIONS(7133), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7135), 1, + anon_sym_AMP_AMP, + ACTIONS(7137), 1, + anon_sym_PIPE, + ACTIONS(7139), 1, + anon_sym_CARET, + ACTIONS(7141), 1, + anon_sym_AMP, + ACTIONS(7143), 1, + anon_sym_EQ_EQ, + ACTIONS(7145), 1, + anon_sym_BANG_EQ, + ACTIONS(7147), 1, + anon_sym_GT, + ACTIONS(7149), 1, + anon_sym_GT_EQ, + ACTIONS(7151), 1, + anon_sym_LT_EQ, + ACTIONS(7153), 1, + anon_sym_LT, + ACTIONS(7155), 1, + anon_sym_LT_LT, + ACTIONS(7157), 1, + anon_sym_GT_GT, + ACTIONS(7159), 1, + anon_sym_LBRACK, + ACTIONS(7161), 1, + anon_sym_EQ, + ACTIONS(7163), 1, + anon_sym_QMARK, + ACTIONS(7165), 1, + anon_sym_STAR_EQ, + ACTIONS(7167), 1, + anon_sym_SLASH_EQ, + ACTIONS(7169), 1, + anon_sym_PERCENT_EQ, + ACTIONS(7171), 1, + anon_sym_PLUS_EQ, + ACTIONS(7173), 1, + anon_sym_DASH_EQ, + ACTIONS(7175), 1, + anon_sym_LT_LT_EQ, + ACTIONS(7177), 1, + anon_sym_GT_GT_EQ, + ACTIONS(7179), 1, + anon_sym_AMP_EQ, + ACTIONS(7181), 1, + anon_sym_CARET_EQ, + ACTIONS(7183), 1, + anon_sym_PIPE_EQ, + ACTIONS(7187), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7189), 1, + anon_sym_or, + ACTIONS(7191), 1, + anon_sym_and, + ACTIONS(7193), 1, + anon_sym_bitor, + ACTIONS(7195), 1, + anon_sym_xor, + ACTIONS(7197), 1, + anon_sym_bitand, + ACTIONS(7199), 1, + anon_sym_not_eq, + ACTIONS(7205), 1, + anon_sym_DOT_STAR, + ACTIONS(7207), 1, + anon_sym_DASH_GT_STAR, + STATE(1285), 1, + sym__binary_fold_operator, + STATE(3433), 1, + sym_argument_list, + STATE(3434), 1, + sym_subscript_argument_list, + STATE(8910), 1, + sym__fold_operator, + ACTIONS(7201), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7203), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7185), 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [39246] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1852), 1, + ACTIONS(1850), 1, anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2977), 1, + ACTIONS(2997), 1, anon_sym_LPAREN2, - ACTIONS(2979), 1, + ACTIONS(2999), 1, anon_sym_TILDE, - ACTIONS(5849), 1, - sym_identifier, - ACTIONS(5861), 1, - anon_sym_COLON_COLON, - ACTIONS(7089), 1, + ACTIONS(7103), 1, anon_sym_LBRACK, - ACTIONS(7165), 1, + ACTIONS(7209), 1, + sym_identifier, + ACTIONS(7211), 1, anon_sym_STAR, - ACTIONS(7167), 1, + ACTIONS(7213), 1, anon_sym_AMP_AMP, - ACTIONS(7169), 1, + ACTIONS(7215), 1, anon_sym_AMP, - STATE(4043), 1, + ACTIONS(7217), 1, + anon_sym_COLON_COLON, + STATE(4069), 1, sym_ms_unaligned_ptr_modifier, - STATE(4289), 1, + STATE(4325), 1, sym_alignas_qualifier, - STATE(5860), 1, + STATE(5895), 1, sym__scope_resolution, - STATE(6609), 1, + STATE(6317), 1, sym__declarator, - STATE(8161), 1, + STATE(8623), 1, sym_ms_based_modifier, - ACTIONS(3329), 2, + ACTIONS(3337), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(3333), 2, + ACTIONS(3341), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2900), 2, + STATE(2956), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(3936), 2, + STATE(3975), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3327), 3, + ACTIONS(3335), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(8601), 3, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(5998), 11, + STATE(6145), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -330232,7 +333945,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3331), 13, + ACTIONS(3339), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -330246,64 +333959,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [39646] = 26, + [39355] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5697), 21, + 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_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5699), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [39418] = 26, ACTIONS(3), 1, sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1852), 1, + ACTIONS(1850), 1, anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2977), 1, + ACTIONS(2997), 1, anon_sym_LPAREN2, - ACTIONS(2979), 1, + ACTIONS(2999), 1, anon_sym_TILDE, - ACTIONS(5460), 1, - sym_identifier, - ACTIONS(7089), 1, - anon_sym_LBRACK, - ACTIONS(7171), 1, + ACTIONS(3001), 1, anon_sym_STAR, - ACTIONS(7173), 1, - anon_sym_AMP_AMP, - ACTIONS(7175), 1, + ACTIONS(3003), 1, anon_sym_AMP, - ACTIONS(7177), 1, + ACTIONS(5481), 1, + sym_identifier, + ACTIONS(6365), 1, anon_sym_COLON_COLON, - STATE(4043), 1, + ACTIONS(7103), 1, + anon_sym_LBRACK, + STATE(4069), 1, sym_ms_unaligned_ptr_modifier, - STATE(4289), 1, + STATE(4325), 1, sym_alignas_qualifier, - STATE(5850), 1, + STATE(5923), 1, sym__scope_resolution, - STATE(6641), 1, + STATE(6552), 1, sym__declarator, - STATE(8214), 1, + STATE(8864), 1, sym_ms_based_modifier, - ACTIONS(3329), 2, + ACTIONS(3337), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(3333), 2, + ACTIONS(3341), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2944), 2, + STATE(2930), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(3945), 2, + STATE(3973), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3327), 3, + ACTIONS(3335), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(8601), 3, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(5998), 11, + STATE(6145), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -330315,7 +334088,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3331), 13, + ACTIONS(3339), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -330329,64 +334102,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [39755] = 26, + [39527] = 26, ACTIONS(3), 1, sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1852), 1, + ACTIONS(1850), 1, anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2977), 1, + ACTIONS(2997), 1, anon_sym_LPAREN2, - ACTIONS(2979), 1, + ACTIONS(2999), 1, anon_sym_TILDE, - ACTIONS(5849), 1, + ACTIONS(3001), 1, + anon_sym_STAR, + ACTIONS(3003), 1, + anon_sym_AMP, + ACTIONS(5481), 1, sym_identifier, - ACTIONS(5861), 1, + ACTIONS(6365), 1, anon_sym_COLON_COLON, - ACTIONS(7089), 1, + ACTIONS(7103), 1, anon_sym_LBRACK, - ACTIONS(7165), 1, - anon_sym_STAR, - ACTIONS(7167), 1, - anon_sym_AMP_AMP, - ACTIONS(7169), 1, - anon_sym_AMP, - STATE(4043), 1, + STATE(4069), 1, sym_ms_unaligned_ptr_modifier, - STATE(4289), 1, + STATE(4325), 1, sym_alignas_qualifier, - STATE(5860), 1, + STATE(5923), 1, sym__scope_resolution, - STATE(6611), 1, + STATE(6630), 1, sym__declarator, - STATE(8161), 1, + STATE(8864), 1, sym_ms_based_modifier, - ACTIONS(3329), 2, + ACTIONS(3337), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(3333), 2, + ACTIONS(3341), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3820), 2, + STATE(3962), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(3938), 2, + STATE(4014), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3327), 3, + ACTIONS(3335), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(8601), 3, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(5998), 11, + STATE(6145), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -330398,7 +334171,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3331), 13, + ACTIONS(3339), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -330412,146 +334185,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [39864] = 7, + [39636] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4167), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(2997), 1, + anon_sym_LPAREN2, + ACTIONS(2999), 1, + anon_sym_TILDE, + ACTIONS(5861), 1, + sym_identifier, + ACTIONS(5873), 1, anon_sym_COLON_COLON, - ACTIONS(4970), 1, - anon_sym_LBRACE, - ACTIONS(4977), 1, - anon_sym_LT, - STATE(2864), 1, - sym_template_argument_list, - ACTIONS(4972), 18, - 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_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(7103), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4965), 33, - anon_sym_DOT_DOT_DOT, - 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_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [39935] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7042), 1, + ACTIONS(7219), 1, + anon_sym_STAR, + ACTIONS(7221), 1, anon_sym_AMP_AMP, - ACTIONS(7044), 1, + ACTIONS(7223), 1, anon_sym_AMP, - ACTIONS(7054), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7057), 1, - anon_sym_LBRACK, - ACTIONS(7059), 1, - anon_sym_const, - ACTIONS(7072), 1, - anon_sym_noexcept, - ACTIONS(7074), 1, - anon_sym_throw, - ACTIONS(7076), 1, - anon_sym_requires, - ACTIONS(7083), 1, - anon_sym___attribute__, - ACTIONS(7085), 1, - anon_sym___attribute, - ACTIONS(7157), 1, - anon_sym___asm, - ACTIONS(7179), 1, - anon_sym_DASH_GT, - STATE(3992), 1, + STATE(4069), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4325), 1, sym_alignas_qualifier, - STATE(4824), 1, - sym__function_attributes_start, - STATE(4965), 1, - sym_ref_qualifier, - STATE(5615), 1, - sym_trailing_return_type, - STATE(5713), 1, - sym__function_attributes_end, - STATE(6745), 1, - sym_gnu_asm_expression, - ACTIONS(7061), 2, + STATE(5896), 1, + sym__scope_resolution, + STATE(6741), 1, + sym__declarator, + STATE(8381), 1, + sym_ms_based_modifier, + ACTIONS(3337), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3341), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(7069), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7154), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(4072), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4287), 2, + STATE(2933), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4026), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(5606), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5733), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5816), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5297), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7040), 6, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - ACTIONS(7046), 12, + ACTIONS(3335), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(8569), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6145), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(3339), 13, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -330563,69 +334268,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [40052] = 26, + [39745] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(6987), 1, + ACTIONS(7015), 1, anon_sym_EQ, - ACTIONS(7115), 1, + ACTIONS(7229), 1, anon_sym_PIPE_PIPE, - ACTIONS(7117), 1, + ACTIONS(7231), 1, anon_sym_AMP_AMP, - ACTIONS(7119), 1, + ACTIONS(7233), 1, anon_sym_PIPE, - ACTIONS(7123), 1, + ACTIONS(7237), 1, anon_sym_AMP, - ACTIONS(7129), 1, + ACTIONS(7243), 1, anon_sym_GT_EQ, - ACTIONS(7135), 1, + ACTIONS(7247), 1, anon_sym_LT_EQ_GT, - ACTIONS(7137), 1, + ACTIONS(7249), 1, anon_sym_or, - ACTIONS(7139), 1, + ACTIONS(7251), 1, anon_sym_and, - ACTIONS(7141), 1, + ACTIONS(7253), 1, anon_sym_bitor, - ACTIONS(7143), 1, + ACTIONS(7255), 1, anon_sym_bitand, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6439), 2, + ACTIONS(6416), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7111), 2, + ACTIONS(6420), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7121), 2, + ACTIONS(7235), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(7131), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7113), 3, + ACTIONS(7227), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7125), 3, + ACTIONS(7239), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7127), 3, + ACTIONS(7241), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6989), 20, + ACTIONS(7017), 20, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -330646,64 +334351,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [40161] = 26, + [39854] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1852), 1, + ACTIONS(1850), 1, anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2977), 1, + ACTIONS(2997), 1, anon_sym_LPAREN2, - ACTIONS(2979), 1, + ACTIONS(2999), 1, anon_sym_TILDE, - ACTIONS(5460), 1, + ACTIONS(5861), 1, sym_identifier, - ACTIONS(7089), 1, + ACTIONS(5873), 1, + anon_sym_COLON_COLON, + ACTIONS(7103), 1, anon_sym_LBRACK, - ACTIONS(7171), 1, + ACTIONS(7219), 1, anon_sym_STAR, - ACTIONS(7173), 1, + ACTIONS(7221), 1, anon_sym_AMP_AMP, - ACTIONS(7175), 1, + ACTIONS(7223), 1, anon_sym_AMP, - ACTIONS(7177), 1, - anon_sym_COLON_COLON, - STATE(4043), 1, + STATE(4069), 1, sym_ms_unaligned_ptr_modifier, - STATE(4289), 1, + STATE(4325), 1, sym_alignas_qualifier, - STATE(5850), 1, + STATE(5896), 1, sym__scope_resolution, - STATE(6652), 1, + STATE(6696), 1, sym__declarator, - STATE(8214), 1, + STATE(8381), 1, sym_ms_based_modifier, - ACTIONS(3329), 2, + ACTIONS(3337), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(3333), 2, + ACTIONS(3341), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2907), 2, + STATE(3962), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(3946), 2, + STATE(4027), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3327), 3, + ACTIONS(3335), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(8601), 3, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(5998), 11, + STATE(6145), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -330715,7 +334420,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3331), 13, + ACTIONS(3339), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -330729,70 +334434,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [40270] = 3, + [39963] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5802), 21, - 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_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(5804), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + ACTIONS(6890), 1, sym_auto, + ACTIONS(6892), 1, anon_sym_decltype, - anon_sym_GT2, - [40333] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5629), 19, + STATE(3115), 1, + sym_decltype_auto, + ACTIONS(5533), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -330812,7 +334463,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5631), 36, + ACTIONS(5535), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -330822,7 +334473,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -330846,67 +334496,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, anon_sym_DASH_GT_STAR, - [40396] = 26, + [40032] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1852), 1, + ACTIONS(1850), 1, anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2977), 1, + ACTIONS(2997), 1, anon_sym_LPAREN2, - ACTIONS(2979), 1, + ACTIONS(2999), 1, anon_sym_TILDE, - ACTIONS(5460), 1, + ACTIONS(5481), 1, sym_identifier, - ACTIONS(7089), 1, + ACTIONS(7103), 1, anon_sym_LBRACK, - ACTIONS(7171), 1, + ACTIONS(7257), 1, anon_sym_STAR, - ACTIONS(7173), 1, + ACTIONS(7259), 1, anon_sym_AMP_AMP, - ACTIONS(7175), 1, + ACTIONS(7261), 1, anon_sym_AMP, - ACTIONS(7177), 1, + ACTIONS(7263), 1, anon_sym_COLON_COLON, - STATE(4043), 1, + STATE(4069), 1, sym_ms_unaligned_ptr_modifier, - STATE(4289), 1, + STATE(4325), 1, sym_alignas_qualifier, - STATE(5850), 1, + STATE(5931), 1, sym__scope_resolution, - STATE(6662), 1, + STATE(6816), 1, sym__declarator, - STATE(8214), 1, + STATE(8398), 1, sym_ms_based_modifier, - ACTIONS(3329), 2, + ACTIONS(3337), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(3333), 2, + ACTIONS(3341), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3820), 2, + STATE(2936), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(3975), 2, + STATE(3974), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3327), 3, + ACTIONS(3335), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(8601), 3, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(5998), 11, + STATE(6145), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -330918,7 +334566,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3331), 13, + ACTIONS(3339), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -330932,161 +334580,159 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [40505] = 26, + [40141] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(2997), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(2999), 1, + anon_sym_TILDE, + ACTIONS(5481), 1, + sym_identifier, + ACTIONS(7103), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, - anon_sym_DOT, - ACTIONS(7005), 1, - anon_sym_EQ, - ACTIONS(7115), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7117), 1, + ACTIONS(7257), 1, + anon_sym_STAR, + ACTIONS(7259), 1, anon_sym_AMP_AMP, - ACTIONS(7119), 1, - anon_sym_PIPE, - ACTIONS(7123), 1, + ACTIONS(7261), 1, anon_sym_AMP, - ACTIONS(7129), 1, - anon_sym_GT_EQ, - ACTIONS(7135), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7137), 1, - anon_sym_or, - ACTIONS(7139), 1, - anon_sym_and, - ACTIONS(7141), 1, - anon_sym_bitor, - ACTIONS(7143), 1, - anon_sym_bitand, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6439), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7111), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7121), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7131), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7113), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7125), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7127), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7007), 20, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - [40614] = 28, + ACTIONS(7263), 1, + anon_sym_COLON_COLON, + STATE(4069), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4325), 1, + sym_alignas_qualifier, + STATE(5931), 1, + sym__scope_resolution, + STATE(6773), 1, + sym__declarator, + STATE(8398), 1, + sym_ms_based_modifier, + ACTIONS(3337), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3341), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3962), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(3977), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3335), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(8569), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6145), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(3339), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [40250] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(6524), 1, + ACTIONS(6985), 1, anon_sym_EQ, - ACTIONS(6991), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7115), 1, + ACTIONS(7229), 1, anon_sym_PIPE_PIPE, - ACTIONS(7117), 1, + ACTIONS(7231), 1, anon_sym_AMP_AMP, - ACTIONS(7119), 1, + ACTIONS(7233), 1, anon_sym_PIPE, - ACTIONS(7123), 1, + ACTIONS(7237), 1, anon_sym_AMP, - ACTIONS(7129), 1, + ACTIONS(7243), 1, anon_sym_GT_EQ, - ACTIONS(7133), 1, - anon_sym_QMARK, - ACTIONS(7135), 1, + ACTIONS(7247), 1, anon_sym_LT_EQ_GT, - ACTIONS(7137), 1, + ACTIONS(7249), 1, anon_sym_or, - ACTIONS(7139), 1, + ACTIONS(7251), 1, anon_sym_and, - ACTIONS(7141), 1, + ACTIONS(7253), 1, anon_sym_bitor, - ACTIONS(7143), 1, + ACTIONS(7255), 1, anon_sym_bitand, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6439), 2, + ACTIONS(6416), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7111), 2, + ACTIONS(6420), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7121), 2, + ACTIONS(7235), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(7131), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7113), 3, + ACTIONS(7227), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7125), 3, + ACTIONS(7239), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7127), 3, + ACTIONS(7241), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6526), 18, + ACTIONS(6987), 20, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_RBRACK, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -331100,20 +334746,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [40727] = 8, + [40359] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6789), 1, - anon_sym___attribute__, - ACTIONS(6791), 1, - anon_sym___attribute, - ACTIONS(7025), 1, - anon_sym_LBRACE, - STATE(2979), 1, - sym_enumerator_list, - STATE(3358), 1, - sym_attribute_specifier, - ACTIONS(5983), 16, + ACTIONS(5716), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -331123,23 +334759,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute, anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5985), 34, + ACTIONS(5718), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -331148,279 +334789,89 @@ static const uint16_t ts_small_parse_table[] = { 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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [40800] = 26, + anon_sym_GT2, + [40422] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(6967), 1, - anon_sym_EQ, - ACTIONS(7115), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7117), 1, - anon_sym_AMP_AMP, - ACTIONS(7119), 1, - anon_sym_PIPE, - ACTIONS(7123), 1, - anon_sym_AMP, - ACTIONS(7129), 1, - anon_sym_GT_EQ, - ACTIONS(7135), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7137), 1, - anon_sym_or, - ACTIONS(7139), 1, - anon_sym_and, - ACTIONS(7141), 1, - anon_sym_bitor, - ACTIONS(7143), 1, - anon_sym_bitand, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6439), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7111), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7121), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7131), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7113), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7125), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7127), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6969), 20, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - [40909] = 52, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6864), 1, - anon_sym_LPAREN2, - ACTIONS(7181), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7183), 1, - anon_sym_COMMA, - ACTIONS(7185), 1, - anon_sym_RPAREN, - ACTIONS(7187), 1, - anon_sym_DASH, - ACTIONS(7189), 1, - anon_sym_PLUS, - ACTIONS(7191), 1, - anon_sym_STAR, - ACTIONS(7193), 1, - anon_sym_SLASH, - ACTIONS(7195), 1, - anon_sym_PERCENT, - ACTIONS(7197), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7199), 1, - anon_sym_AMP_AMP, - ACTIONS(7201), 1, - anon_sym_PIPE, - ACTIONS(7203), 1, - anon_sym_CARET, - ACTIONS(7205), 1, - anon_sym_AMP, - ACTIONS(7207), 1, - anon_sym_EQ_EQ, - ACTIONS(7209), 1, - anon_sym_BANG_EQ, - ACTIONS(7211), 1, - anon_sym_GT, - ACTIONS(7213), 1, - anon_sym_GT_EQ, - ACTIONS(7215), 1, - anon_sym_LT_EQ, - ACTIONS(7217), 1, - anon_sym_LT, - ACTIONS(7219), 1, - anon_sym_LT_LT, - ACTIONS(7221), 1, - anon_sym_GT_GT, - ACTIONS(7223), 1, - anon_sym_LBRACK, - ACTIONS(7225), 1, + ACTIONS(6993), 1, anon_sym_EQ, - ACTIONS(7227), 1, - anon_sym_QMARK, ACTIONS(7229), 1, - anon_sym_STAR_EQ, + anon_sym_PIPE_PIPE, ACTIONS(7231), 1, - anon_sym_SLASH_EQ, + anon_sym_AMP_AMP, ACTIONS(7233), 1, - anon_sym_PERCENT_EQ, - ACTIONS(7235), 1, - anon_sym_PLUS_EQ, + anon_sym_PIPE, ACTIONS(7237), 1, - anon_sym_DASH_EQ, - ACTIONS(7239), 1, - anon_sym_LT_LT_EQ, - ACTIONS(7241), 1, - anon_sym_GT_GT_EQ, + anon_sym_AMP, ACTIONS(7243), 1, - anon_sym_AMP_EQ, - ACTIONS(7245), 1, - anon_sym_CARET_EQ, + anon_sym_GT_EQ, ACTIONS(7247), 1, - anon_sym_PIPE_EQ, - ACTIONS(7251), 1, anon_sym_LT_EQ_GT, - ACTIONS(7253), 1, + ACTIONS(7249), 1, anon_sym_or, - ACTIONS(7255), 1, + ACTIONS(7251), 1, anon_sym_and, - ACTIONS(7257), 1, + ACTIONS(7253), 1, anon_sym_bitor, - ACTIONS(7259), 1, - anon_sym_xor, - ACTIONS(7261), 1, + ACTIONS(7255), 1, anon_sym_bitand, - ACTIONS(7263), 1, - anon_sym_not_eq, - ACTIONS(7269), 1, - anon_sym_DOT_STAR, - ACTIONS(7271), 1, - anon_sym_DASH_GT_STAR, - STATE(1216), 1, - sym__binary_fold_operator, - STATE(3515), 1, + STATE(2491), 1, sym_argument_list, - STATE(3516), 1, + STATE(2492), 1, sym_subscript_argument_list, - STATE(8694), 1, - sym__fold_operator, - ACTIONS(7265), 2, + ACTIONS(6416), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7267), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7249), 3, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - [41070] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5827), 1, - anon_sym_LPAREN2, - ACTIONS(6429), 1, - anon_sym_LBRACK, - ACTIONS(6431), 1, - anon_sym_DOT, - ACTIONS(7117), 1, - anon_sym_AMP_AMP, - ACTIONS(7119), 1, - anon_sym_PIPE, - ACTIONS(7123), 1, - anon_sym_AMP, - ACTIONS(7129), 1, - anon_sym_GT_EQ, - ACTIONS(7135), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7139), 1, - anon_sym_and, - ACTIONS(7141), 1, - anon_sym_bitor, - ACTIONS(7143), 1, - anon_sym_bitand, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6439), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6449), 2, - anon_sym_EQ, - anon_sym_or, - ACTIONS(7111), 2, + ACTIONS(7225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7121), 2, + ACTIONS(7235), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(7131), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7113), 3, + ACTIONS(7227), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7125), 3, + ACTIONS(7239), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7127), 3, + ACTIONS(7241), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6451), 21, + ACTIONS(6995), 20, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_RBRACK, @@ -331438,154 +334889,173 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [41175] = 22, + [40531] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(2997), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(2999), 1, + anon_sym_TILDE, + ACTIONS(5861), 1, + sym_identifier, + ACTIONS(5873), 1, + anon_sym_COLON_COLON, + ACTIONS(7103), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, - anon_sym_DOT, - ACTIONS(7119), 1, - anon_sym_PIPE, - ACTIONS(7123), 1, - anon_sym_AMP, - ACTIONS(7129), 1, - anon_sym_GT_EQ, - ACTIONS(7135), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7141), 1, - anon_sym_bitor, - ACTIONS(7143), 1, - anon_sym_bitand, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6439), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7111), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7121), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7131), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6449), 3, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - ACTIONS(7113), 3, + ACTIONS(7105), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7125), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7127), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6451), 22, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, + ACTIONS(7107), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - [41276] = 11, + ACTIONS(7109), 1, + anon_sym_AMP, + STATE(4069), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4325), 1, + sym_alignas_qualifier, + STATE(5896), 1, + sym__scope_resolution, + STATE(6213), 1, + sym__declarator, + STATE(8504), 1, + sym_ms_based_modifier, + ACTIONS(3337), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3341), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3962), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4008), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3335), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(8569), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6145), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(3339), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [40640] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(2997), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(2999), 1, + anon_sym_TILDE, + ACTIONS(7103), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, - anon_sym_DOT, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6439), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7113), 3, + ACTIONS(7209), 1, + sym_identifier, + ACTIONS(7217), 1, + anon_sym_COLON_COLON, + ACTIONS(7265), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6449), 14, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - ACTIONS(6451), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, + ACTIONS(7267), 1, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - [41355] = 8, + ACTIONS(7269), 1, + anon_sym_AMP, + STATE(4069), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4325), 1, + sym_alignas_qualifier, + STATE(5895), 1, + sym__scope_resolution, + STATE(6623), 1, + sym__declarator, + STATE(8135), 1, + sym_ms_based_modifier, + ACTIONS(3337), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3341), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2964), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(3981), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3335), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(8569), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6145), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(3339), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [40749] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(7091), 1, @@ -331594,12 +335064,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(7095), 1, anon_sym_LBRACK, - STATE(3267), 1, + STATE(3296), 1, sym_parameter_list, - STATE(3086), 2, + STATE(3129), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(6066), 19, + ACTIONS(6090), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -331619,7 +335089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6068), 30, + ACTIONS(6092), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -331650,15 +335120,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [41428] = 5, + [40822] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(2997), 1, + anon_sym_LPAREN2, + ACTIONS(2999), 1, + anon_sym_TILDE, + ACTIONS(5861), 1, + sym_identifier, + ACTIONS(7103), 1, + anon_sym_LBRACK, + ACTIONS(7271), 1, + anon_sym_STAR, + ACTIONS(7273), 1, + anon_sym_AMP_AMP, + ACTIONS(7275), 1, + anon_sym_AMP, + ACTIONS(7277), 1, + anon_sym_COLON_COLON, + STATE(4069), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4325), 1, + sym_alignas_qualifier, + STATE(5967), 1, + sym__scope_resolution, + STATE(6206), 1, + sym__declarator, + STATE(8221), 1, + sym_ms_based_modifier, + ACTIONS(3337), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3341), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2967), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(3985), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3335), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(8569), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6145), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(3339), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [40931] = 5, ACTIONS(3), 1, sym_comment, - STATE(2512), 1, + STATE(2469), 1, sym_attribute_specifier, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(6157), 12, + ACTIONS(6155), 12, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -331671,7 +335224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_EQ, anon_sym_GT2, - ACTIONS(6155), 40, + ACTIONS(6153), 40, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -331712,20 +335265,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [41495] = 8, + [40998] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6789), 1, - anon_sym___attribute__, - ACTIONS(6791), 1, - anon_sym___attribute, - ACTIONS(7025), 1, - anon_sym_LBRACE, - STATE(3014), 1, - sym_enumerator_list, - STATE(3406), 1, - sym_attribute_specifier, - ACTIONS(6024), 16, + ACTIONS(7091), 1, + anon_sym_LPAREN2, + ACTIONS(7093), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7095), 1, + anon_sym_LBRACK, + STATE(3296), 1, + sym_parameter_list, + STATE(3129), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6202), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -331740,19 +335294,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6026), 34, + ACTIONS(6204), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -331764,186 +335319,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, anon_sym_DASH_GT_STAR, - [41568] = 52, + [41071] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6864), 1, - anon_sym_LPAREN2, - ACTIONS(7181), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7183), 1, - anon_sym_COMMA, - ACTIONS(7187), 1, - anon_sym_DASH, - ACTIONS(7189), 1, - anon_sym_PLUS, - ACTIONS(7191), 1, - anon_sym_STAR, - ACTIONS(7193), 1, - anon_sym_SLASH, - ACTIONS(7195), 1, - anon_sym_PERCENT, - ACTIONS(7197), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7199), 1, + ACTIONS(29), 1, anon_sym_AMP_AMP, - ACTIONS(7201), 1, - anon_sym_PIPE, - ACTIONS(7203), 1, - anon_sym_CARET, - ACTIONS(7205), 1, - anon_sym_AMP, - ACTIONS(7207), 1, - anon_sym_EQ_EQ, - ACTIONS(7209), 1, - anon_sym_BANG_EQ, - ACTIONS(7211), 1, - anon_sym_GT, - ACTIONS(7213), 1, - anon_sym_GT_EQ, - ACTIONS(7215), 1, - anon_sym_LT_EQ, - ACTIONS(7217), 1, - anon_sym_LT, - ACTIONS(7219), 1, - anon_sym_LT_LT, - ACTIONS(7221), 1, - anon_sym_GT_GT, - ACTIONS(7223), 1, - anon_sym_LBRACK, - ACTIONS(7225), 1, - anon_sym_EQ, - ACTIONS(7227), 1, - anon_sym_QMARK, - ACTIONS(7229), 1, - anon_sym_STAR_EQ, - ACTIONS(7231), 1, - anon_sym_SLASH_EQ, - ACTIONS(7233), 1, - anon_sym_PERCENT_EQ, - ACTIONS(7235), 1, - anon_sym_PLUS_EQ, - ACTIONS(7237), 1, - anon_sym_DASH_EQ, - ACTIONS(7239), 1, - anon_sym_LT_LT_EQ, - ACTIONS(7241), 1, - anon_sym_GT_GT_EQ, - ACTIONS(7243), 1, - anon_sym_AMP_EQ, - ACTIONS(7245), 1, - anon_sym_CARET_EQ, - ACTIONS(7247), 1, - anon_sym_PIPE_EQ, - ACTIONS(7251), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7253), 1, - anon_sym_or, - ACTIONS(7255), 1, - anon_sym_and, - ACTIONS(7257), 1, - anon_sym_bitor, - ACTIONS(7259), 1, - anon_sym_xor, - ACTIONS(7261), 1, - anon_sym_bitand, - ACTIONS(7263), 1, - anon_sym_not_eq, - ACTIONS(7269), 1, - anon_sym_DOT_STAR, - ACTIONS(7271), 1, - anon_sym_DASH_GT_STAR, - ACTIONS(7273), 1, - anon_sym_RPAREN, - STATE(1216), 1, - sym__binary_fold_operator, - STATE(3515), 1, - sym_argument_list, - STATE(3516), 1, - sym_subscript_argument_list, - STATE(8694), 1, - sym__fold_operator, - ACTIONS(7265), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7267), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7249), 3, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - [41729] = 26, - ACTIONS(3), 1, - sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1852), 1, + ACTIONS(1850), 1, anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2977), 1, + ACTIONS(2997), 1, anon_sym_LPAREN2, - ACTIONS(2979), 1, + ACTIONS(2999), 1, anon_sym_TILDE, - ACTIONS(5849), 1, + ACTIONS(3001), 1, + anon_sym_STAR, + ACTIONS(3003), 1, + anon_sym_AMP, + ACTIONS(5481), 1, sym_identifier, - ACTIONS(5861), 1, + ACTIONS(6365), 1, anon_sym_COLON_COLON, - ACTIONS(7089), 1, + ACTIONS(7103), 1, anon_sym_LBRACK, - ACTIONS(7275), 1, - anon_sym_STAR, - ACTIONS(7277), 1, - anon_sym_AMP_AMP, - ACTIONS(7279), 1, - anon_sym_AMP, - STATE(4043), 1, + STATE(4069), 1, sym_ms_unaligned_ptr_modifier, - STATE(4289), 1, + STATE(4325), 1, sym_alignas_qualifier, - STATE(5860), 1, + STATE(5923), 1, sym__scope_resolution, - STATE(6168), 1, + STATE(6623), 1, sym__declarator, - STATE(8398), 1, + STATE(8864), 1, sym_ms_based_modifier, - ACTIONS(3329), 2, + ACTIONS(3337), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(3333), 2, + ACTIONS(3341), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3820), 2, + STATE(2958), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(3973), 2, + STATE(4022), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3327), 3, + ACTIONS(3335), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(8601), 3, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(5998), 11, + STATE(6145), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -331955,7 +335399,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3331), 13, + ACTIONS(3339), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -331969,64 +335413,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [41838] = 26, + [41180] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1852), 1, + ACTIONS(1850), 1, anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2977), 1, + ACTIONS(2997), 1, anon_sym_LPAREN2, - ACTIONS(2979), 1, + ACTIONS(2999), 1, anon_sym_TILDE, - ACTIONS(7089), 1, + ACTIONS(7103), 1, anon_sym_LBRACK, - ACTIONS(7281), 1, + ACTIONS(7209), 1, sym_identifier, - ACTIONS(7283), 1, + ACTIONS(7211), 1, anon_sym_STAR, - ACTIONS(7285), 1, + ACTIONS(7213), 1, anon_sym_AMP_AMP, - ACTIONS(7287), 1, + ACTIONS(7215), 1, anon_sym_AMP, - ACTIONS(7289), 1, + ACTIONS(7217), 1, anon_sym_COLON_COLON, - STATE(4043), 1, + STATE(4069), 1, sym_ms_unaligned_ptr_modifier, - STATE(4289), 1, + STATE(4325), 1, sym_alignas_qualifier, - STATE(5807), 1, + STATE(5895), 1, sym__scope_resolution, - STATE(6493), 1, + STATE(6320), 1, sym__declarator, - STATE(8592), 1, + STATE(8623), 1, sym_ms_based_modifier, - ACTIONS(3329), 2, + ACTIONS(3337), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(3333), 2, + ACTIONS(3341), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2932), 2, + STATE(2977), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(3935), 2, + STATE(4001), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3327), 3, + ACTIONS(3335), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(8601), 3, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(5998), 11, + STATE(6145), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -332038,7 +335482,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3331), 13, + ACTIONS(3339), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -332052,69 +335496,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [41947] = 20, + [41289] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(7123), 1, + ACTIONS(6981), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6989), 1, + anon_sym_EQ, + ACTIONS(7229), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7231), 1, + anon_sym_AMP_AMP, + ACTIONS(7233), 1, + anon_sym_PIPE, + ACTIONS(7237), 1, anon_sym_AMP, - ACTIONS(7129), 1, + ACTIONS(7243), 1, anon_sym_GT_EQ, - ACTIONS(7135), 1, + ACTIONS(7247), 1, anon_sym_LT_EQ_GT, - ACTIONS(7143), 1, + ACTIONS(7249), 1, + anon_sym_or, + ACTIONS(7251), 1, + anon_sym_and, + ACTIONS(7253), 1, + anon_sym_bitor, + ACTIONS(7255), 1, anon_sym_bitand, - STATE(2525), 1, + ACTIONS(7279), 1, + anon_sym_QMARK, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6439), 2, + ACTIONS(6416), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7111), 2, + ACTIONS(6420), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7121), 2, + ACTIONS(7235), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(7131), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7113), 3, + ACTIONS(7227), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7125), 3, + ACTIONS(7239), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7127), 3, + ACTIONS(7241), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6449), 4, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - ACTIONS(6451), 23, - anon_sym_DOT_DOT_DOT, + ACTIONS(6991), 18, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_RBRACK, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -332128,89 +335581,204 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_bitor, - [42044] = 19, + [41402] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(2997), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(2999), 1, + anon_sym_TILDE, + ACTIONS(7103), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, - anon_sym_DOT, - ACTIONS(7123), 1, + ACTIONS(7209), 1, + sym_identifier, + ACTIONS(7217), 1, + anon_sym_COLON_COLON, + ACTIONS(7265), 1, + anon_sym_STAR, + ACTIONS(7267), 1, + anon_sym_AMP_AMP, + ACTIONS(7269), 1, anon_sym_AMP, - ACTIONS(7129), 1, - anon_sym_GT_EQ, - ACTIONS(7135), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7143), 1, - anon_sym_bitand, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6439), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7111), 2, + STATE(4069), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4325), 1, + sym_alignas_qualifier, + STATE(5895), 1, + sym__scope_resolution, + STATE(6552), 1, + sym__declarator, + STATE(8135), 1, + sym_ms_based_modifier, + ACTIONS(3337), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3341), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2955), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4012), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3335), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(8569), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6145), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(3339), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [41511] = 52, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6886), 1, + anon_sym_LPAREN2, + ACTIONS(7117), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7119), 1, + anon_sym_COMMA, + ACTIONS(7123), 1, anon_sym_DASH, + ACTIONS(7125), 1, anon_sym_PLUS, - ACTIONS(7131), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7113), 3, + ACTIONS(7127), 1, anon_sym_STAR, + ACTIONS(7129), 1, anon_sym_SLASH, + ACTIONS(7131), 1, anon_sym_PERCENT, - ACTIONS(7125), 3, + ACTIONS(7133), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7135), 1, + anon_sym_AMP_AMP, + ACTIONS(7137), 1, + anon_sym_PIPE, + ACTIONS(7139), 1, + anon_sym_CARET, + ACTIONS(7141), 1, + anon_sym_AMP, + ACTIONS(7143), 1, anon_sym_EQ_EQ, + ACTIONS(7145), 1, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7127), 3, + ACTIONS(7147), 1, anon_sym_GT, + ACTIONS(7149), 1, + anon_sym_GT_EQ, + ACTIONS(7151), 1, anon_sym_LT_EQ, + ACTIONS(7153), 1, anon_sym_LT, - ACTIONS(6449), 6, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(7155), 1, + anon_sym_LT_LT, + ACTIONS(7157), 1, + anon_sym_GT_GT, + ACTIONS(7159), 1, + anon_sym_LBRACK, + ACTIONS(7161), 1, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - ACTIONS(6451), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(7163), 1, anon_sym_QMARK, + ACTIONS(7165), 1, anon_sym_STAR_EQ, + ACTIONS(7167), 1, anon_sym_SLASH_EQ, + ACTIONS(7169), 1, anon_sym_PERCENT_EQ, + ACTIONS(7171), 1, anon_sym_PLUS_EQ, + ACTIONS(7173), 1, anon_sym_DASH_EQ, + ACTIONS(7175), 1, anon_sym_LT_LT_EQ, + ACTIONS(7177), 1, anon_sym_GT_GT_EQ, + ACTIONS(7179), 1, anon_sym_AMP_EQ, + ACTIONS(7181), 1, anon_sym_CARET_EQ, + ACTIONS(7183), 1, anon_sym_PIPE_EQ, + ACTIONS(7187), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7189), 1, + anon_sym_or, + ACTIONS(7191), 1, + anon_sym_and, + ACTIONS(7193), 1, + anon_sym_bitor, + ACTIONS(7195), 1, + anon_sym_xor, + ACTIONS(7197), 1, + anon_sym_bitand, + ACTIONS(7199), 1, + anon_sym_not_eq, + ACTIONS(7205), 1, + anon_sym_DOT_STAR, + ACTIONS(7207), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(7281), 1, + anon_sym_RPAREN, + STATE(1285), 1, + sym__binary_fold_operator, + STATE(3433), 1, + sym_argument_list, + STATE(3434), 1, + sym_subscript_argument_list, + STATE(8910), 1, + sym__fold_operator, + ACTIONS(7201), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7203), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7185), 3, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_bitor, - [42139] = 4, + [41672] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5454), 1, + ACTIONS(5519), 1, anon_sym_COLON_COLON, - ACTIONS(5450), 19, + ACTIONS(5515), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -332230,7 +335798,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5452), 35, + ACTIONS(5517), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -332266,21 +335834,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [42204] = 8, + [41737] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7091), 1, - anon_sym_LPAREN2, - ACTIONS(7093), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7095), 1, - anon_sym_LBRACK, - STATE(3267), 1, - sym_parameter_list, - STATE(3086), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6133), 19, + ACTIONS(7081), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -332295,20 +335852,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6135), 30, + sym_literal_suffix, + ACTIONS(7083), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -332320,201 +335889,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [42277] = 26, + anon_sym_DASH_GT, + [41800] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(2977), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(2979), 1, - anon_sym_TILDE, - ACTIONS(5849), 1, - sym_identifier, - ACTIONS(5861), 1, - anon_sym_COLON_COLON, - ACTIONS(7089), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(7275), 1, - anon_sym_STAR, - ACTIONS(7277), 1, + ACTIONS(6418), 1, + anon_sym_DOT, + ACTIONS(7019), 1, + anon_sym_EQ, + ACTIONS(7229), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7231), 1, anon_sym_AMP_AMP, - ACTIONS(7279), 1, - anon_sym_AMP, - STATE(4043), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4289), 1, - sym_alignas_qualifier, - STATE(5860), 1, - sym__scope_resolution, - STATE(6147), 1, - sym__declarator, - STATE(8398), 1, - sym_ms_based_modifier, - ACTIONS(3329), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(3333), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2920), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(3970), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3327), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(8601), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(5998), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3331), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [42386] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5673), 21, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(7233), 1, anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(7237), 1, anon_sym_AMP, - anon_sym_GT, + ACTIONS(7243), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_EQ, - anon_sym_GT_GT_EQ, + ACTIONS(7247), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7249), 1, anon_sym_or, + ACTIONS(7251), 1, anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(5675), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, + ACTIONS(7253), 1, anon_sym_bitor, + ACTIONS(7255), 1, anon_sym_bitand, - anon_sym_not_eq, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + ACTIONS(6416), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [42449] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6868), 1, - sym_auto, - ACTIONS(6870), 1, - anon_sym_decltype, - STATE(3012), 1, - sym_decltype_auto, - ACTIONS(5589), 19, + ACTIONS(7225), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7235), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7245), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7227), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7239), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7241), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5591), 33, + ACTIONS(7021), 20, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -332529,23 +335977,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [42518] = 5, + [41909] = 5, ACTIONS(3), 1, sym_comment, - STATE(2454), 1, + STATE(2533), 1, sym_attribute_specifier, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(6170), 12, + ACTIONS(6159), 12, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -332558,7 +335998,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_EQ, anon_sym_GT2, - ACTIONS(6168), 40, + ACTIONS(6157), 40, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -332599,109 +336039,243 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [42585] = 3, + [41976] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5728), 21, - 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_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(5730), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(2997), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym___attribute__, - anon_sym_LBRACE, + ACTIONS(2999), 1, + anon_sym_TILDE, + ACTIONS(7103), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [42648] = 5, + ACTIONS(7209), 1, + sym_identifier, + ACTIONS(7217), 1, + anon_sym_COLON_COLON, + ACTIONS(7265), 1, + anon_sym_STAR, + ACTIONS(7267), 1, + anon_sym_AMP_AMP, + ACTIONS(7269), 1, + anon_sym_AMP, + STATE(4069), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4325), 1, + sym_alignas_qualifier, + STATE(5895), 1, + sym__scope_resolution, + STATE(6630), 1, + sym__declarator, + STATE(8135), 1, + sym_ms_based_modifier, + ACTIONS(3337), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3341), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3962), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4020), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3335), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(8569), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6145), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(3339), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [42085] = 26, ACTIONS(3), 1, sym_comment, - STATE(2517), 1, - sym_attribute_specifier, - ACTIONS(5468), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(6106), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(2997), 1, anon_sym_LPAREN2, + ACTIONS(2999), 1, anon_sym_TILDE, + ACTIONS(7103), 1, + anon_sym_LBRACK, + ACTIONS(7209), 1, + sym_identifier, + ACTIONS(7211), 1, anon_sym_STAR, + ACTIONS(7213), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(6104), 40, + ACTIONS(7215), 1, anon_sym_AMP, + ACTIONS(7217), 1, + anon_sym_COLON_COLON, + STATE(4069), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4325), 1, + sym_alignas_qualifier, + STATE(5895), 1, + sym__scope_resolution, + STATE(6320), 1, + sym__declarator, + STATE(8623), 1, + sym_ms_based_modifier, + ACTIONS(3337), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3341), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3962), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4001), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3335), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(8569), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6145), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(3339), 13, anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___declspec, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [42194] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(2997), 1, + anon_sym_LPAREN2, + ACTIONS(2999), 1, + anon_sym_TILDE, + ACTIONS(5861), 1, + sym_identifier, + ACTIONS(5873), 1, + anon_sym_COLON_COLON, + ACTIONS(7103), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, + ACTIONS(7219), 1, + anon_sym_STAR, + ACTIONS(7221), 1, + anon_sym_AMP_AMP, + ACTIONS(7223), 1, + anon_sym_AMP, + STATE(4069), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4325), 1, + sym_alignas_qualifier, + STATE(5896), 1, + sym__scope_resolution, + STATE(6730), 1, + sym__declarator, + STATE(8381), 1, + sym_ms_based_modifier, + ACTIONS(3337), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3341), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2976), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(3992), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3335), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(8569), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6145), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(3339), 13, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -332714,71 +336288,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [42715] = 26, + [42303] = 26, ACTIONS(3), 1, sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1852), 1, + ACTIONS(1850), 1, anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2977), 1, + ACTIONS(2997), 1, anon_sym_LPAREN2, - ACTIONS(2979), 1, + ACTIONS(2999), 1, anon_sym_TILDE, - ACTIONS(7089), 1, - anon_sym_LBRACK, - ACTIONS(7281), 1, - sym_identifier, - ACTIONS(7283), 1, + ACTIONS(3001), 1, anon_sym_STAR, - ACTIONS(7285), 1, - anon_sym_AMP_AMP, - ACTIONS(7287), 1, + ACTIONS(3003), 1, anon_sym_AMP, - ACTIONS(7289), 1, + ACTIONS(5481), 1, + sym_identifier, + ACTIONS(6365), 1, anon_sym_COLON_COLON, - STATE(4043), 1, + ACTIONS(7103), 1, + anon_sym_LBRACK, + STATE(4069), 1, sym_ms_unaligned_ptr_modifier, - STATE(4289), 1, + STATE(4325), 1, sym_alignas_qualifier, - STATE(5807), 1, + STATE(5923), 1, sym__scope_resolution, - STATE(6447), 1, + STATE(6552), 1, sym__declarator, - STATE(8592), 1, + STATE(8864), 1, sym_ms_based_modifier, - ACTIONS(3329), 2, + ACTIONS(3337), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(3333), 2, + ACTIONS(3341), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3820), 2, + STATE(3962), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(3926), 2, + STATE(3973), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3327), 3, + ACTIONS(3335), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(8601), 3, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(5998), 11, + STATE(6145), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -332790,7 +336357,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3331), 13, + ACTIONS(3339), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -332804,64 +336371,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [42824] = 26, + [42412] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1852), 1, + ACTIONS(1850), 1, anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2977), 1, + ACTIONS(2997), 1, anon_sym_LPAREN2, - ACTIONS(2979), 1, + ACTIONS(2999), 1, anon_sym_TILDE, - ACTIONS(5849), 1, - sym_identifier, ACTIONS(5861), 1, + sym_identifier, + ACTIONS(5873), 1, anon_sym_COLON_COLON, - ACTIONS(7089), 1, + ACTIONS(7103), 1, anon_sym_LBRACK, - ACTIONS(7165), 1, + ACTIONS(7105), 1, anon_sym_STAR, - ACTIONS(7167), 1, + ACTIONS(7107), 1, anon_sym_AMP_AMP, - ACTIONS(7169), 1, + ACTIONS(7109), 1, anon_sym_AMP, - STATE(4043), 1, + STATE(4069), 1, sym_ms_unaligned_ptr_modifier, - STATE(4289), 1, + STATE(4325), 1, sym_alignas_qualifier, - STATE(5860), 1, + STATE(5896), 1, sym__scope_resolution, - STATE(6607), 1, + STATE(6215), 1, sym__declarator, - STATE(8161), 1, + STATE(8504), 1, sym_ms_based_modifier, - ACTIONS(3329), 2, + ACTIONS(3337), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(3333), 2, + ACTIONS(3341), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2941), 2, + STATE(2940), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(3944), 2, + STATE(3980), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3327), 3, + ACTIONS(3335), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(8601), 3, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(5998), 11, + STATE(6145), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -332873,7 +336440,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3331), 13, + ACTIONS(3339), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -332887,178 +336454,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [42933] = 28, + [42521] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, - anon_sym_LPAREN2, - ACTIONS(6429), 1, - anon_sym_LBRACK, - ACTIONS(6431), 1, - anon_sym_DOT, - ACTIONS(6991), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7011), 1, - anon_sym_EQ, - ACTIONS(7115), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7117), 1, - anon_sym_AMP_AMP, - ACTIONS(7119), 1, - anon_sym_PIPE, - ACTIONS(7123), 1, - anon_sym_AMP, - ACTIONS(7129), 1, - anon_sym_GT_EQ, - ACTIONS(7133), 1, - anon_sym_QMARK, - ACTIONS(7135), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7137), 1, - anon_sym_or, - ACTIONS(7139), 1, - anon_sym_and, - ACTIONS(7141), 1, - anon_sym_bitor, - ACTIONS(7143), 1, - anon_sym_bitand, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6439), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7111), 2, + ACTIONS(5742), 21, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7121), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7131), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7113), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7125), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7127), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7013), 18, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5744), 34, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [43046] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5724), 4, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - ACTIONS(5726), 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(4146), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - 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_LBRACK, - anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(4154), 22, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [42584] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2455), 1, + sym_attribute_specifier, + ACTIONS(5489), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(6208), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6206), 40, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, + anon_sym___extension__, + anon_sym_virtual, + 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_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, sym_identifier, - [43113] = 6, + sym_auto, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [42651] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4167), 1, - anon_sym_COLON_COLON, - ACTIONS(6630), 1, - anon_sym_LT, - STATE(2731), 1, - sym_template_argument_list, - ACTIONS(4172), 7, + STATE(2478), 1, + sym_attribute_specifier, + ACTIONS(5489), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(6102), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(5838), 45, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6100), 40, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -333093,68 +336636,153 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_template, anon_sym_operator, - [43182] = 26, + [42718] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7048), 1, + anon_sym_AMP_AMP, + ACTIONS(7050), 1, + anon_sym_AMP, + ACTIONS(7060), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7063), 1, + anon_sym_LBRACK, + ACTIONS(7065), 1, + anon_sym_const, + ACTIONS(7071), 1, + anon_sym___asm, + ACTIONS(7075), 1, + anon_sym_noexcept, + ACTIONS(7077), 1, + anon_sym_throw, + ACTIONS(7088), 1, + anon_sym_requires, + ACTIONS(7283), 1, + anon_sym___attribute__, + ACTIONS(7285), 1, + anon_sym___attribute, + ACTIONS(7287), 1, + anon_sym_DASH_GT, + STATE(4036), 1, + sym_alignas_qualifier, + STATE(4876), 1, + sym__function_attributes_start, + STATE(5042), 1, + sym_ref_qualifier, + STATE(5594), 1, + sym_trailing_return_type, + STATE(6076), 1, + sym__function_attributes_end, + STATE(6850), 1, + sym_gnu_asm_expression, + ACTIONS(7067), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7069), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7085), 2, + anon_sym_final, + anon_sym_override, + STATE(4140), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4332), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5730), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5965), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5369), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7046), 6, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + ACTIONS(7052), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [42835] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1852), 1, + ACTIONS(1850), 1, anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2977), 1, + ACTIONS(2997), 1, anon_sym_LPAREN2, - ACTIONS(2979), 1, + ACTIONS(2999), 1, anon_sym_TILDE, - ACTIONS(5849), 1, + ACTIONS(7103), 1, + anon_sym_LBRACK, + ACTIONS(7209), 1, sym_identifier, - ACTIONS(5861), 1, + ACTIONS(7217), 1, anon_sym_COLON_COLON, - ACTIONS(7089), 1, - anon_sym_LBRACK, - ACTIONS(7275), 1, + ACTIONS(7265), 1, anon_sym_STAR, - ACTIONS(7277), 1, + ACTIONS(7267), 1, anon_sym_AMP_AMP, - ACTIONS(7279), 1, + ACTIONS(7269), 1, anon_sym_AMP, - STATE(4043), 1, + STATE(4069), 1, sym_ms_unaligned_ptr_modifier, - STATE(4289), 1, + STATE(4325), 1, sym_alignas_qualifier, - STATE(5860), 1, + STATE(5895), 1, sym__scope_resolution, - STATE(6168), 1, + STATE(6552), 1, sym__declarator, - STATE(8398), 1, + STATE(8135), 1, sym_ms_based_modifier, - ACTIONS(3329), 2, + ACTIONS(3337), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(3333), 2, + ACTIONS(3341), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2960), 2, + STATE(3962), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(3973), 2, + STATE(4012), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3327), 3, + ACTIONS(3335), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(8601), 3, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(5998), 11, + STATE(6145), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -333166,7 +336794,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3331), 13, + ACTIONS(3339), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -333180,124 +336808,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [43291] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5651), 21, - 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_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(5653), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [43354] = 26, + [42944] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1852), 1, + ACTIONS(1850), 1, anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2977), 1, + ACTIONS(2997), 1, anon_sym_LPAREN2, - ACTIONS(2979), 1, + ACTIONS(2999), 1, anon_sym_TILDE, - ACTIONS(5849), 1, + ACTIONS(5481), 1, sym_identifier, - ACTIONS(7089), 1, + ACTIONS(6365), 1, + anon_sym_COLON_COLON, + ACTIONS(7103), 1, anon_sym_LBRACK, - ACTIONS(7291), 1, + ACTIONS(7111), 1, anon_sym_STAR, - ACTIONS(7293), 1, + ACTIONS(7113), 1, anon_sym_AMP_AMP, - ACTIONS(7295), 1, + ACTIONS(7115), 1, anon_sym_AMP, - ACTIONS(7297), 1, - anon_sym_COLON_COLON, - STATE(4043), 1, + STATE(4069), 1, sym_ms_unaligned_ptr_modifier, - STATE(4289), 1, + STATE(4325), 1, sym_alignas_qualifier, - STATE(5838), 1, + STATE(5923), 1, sym__scope_resolution, - STATE(6155), 1, + STATE(6317), 1, sym__declarator, - STATE(8021), 1, + STATE(8339), 1, sym_ms_based_modifier, - ACTIONS(3329), 2, + ACTIONS(3337), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(3333), 2, + ACTIONS(3341), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3820), 2, + STATE(2971), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(3958), 2, + STATE(3989), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3327), 3, + ACTIONS(3335), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(8601), 3, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(5998), 11, + STATE(6145), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -333309,7 +336877,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3331), 13, + ACTIONS(3339), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -333323,64 +336891,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [43463] = 26, + [43053] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1852), 1, + ACTIONS(1850), 1, anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2977), 1, + ACTIONS(2997), 1, anon_sym_LPAREN2, - ACTIONS(2979), 1, + ACTIONS(2999), 1, anon_sym_TILDE, - ACTIONS(5849), 1, + ACTIONS(5861), 1, sym_identifier, - ACTIONS(7089), 1, + ACTIONS(7103), 1, anon_sym_LBRACK, - ACTIONS(7291), 1, + ACTIONS(7271), 1, anon_sym_STAR, - ACTIONS(7293), 1, + ACTIONS(7273), 1, anon_sym_AMP_AMP, - ACTIONS(7295), 1, + ACTIONS(7275), 1, anon_sym_AMP, - ACTIONS(7297), 1, + ACTIONS(7277), 1, anon_sym_COLON_COLON, - STATE(4043), 1, + STATE(4069), 1, sym_ms_unaligned_ptr_modifier, - STATE(4289), 1, + STATE(4325), 1, sym_alignas_qualifier, - STATE(5838), 1, + STATE(5967), 1, sym__scope_resolution, - STATE(6155), 1, + STATE(6228), 1, sym__declarator, - STATE(8021), 1, + STATE(8221), 1, sym_ms_based_modifier, - ACTIONS(3329), 2, + ACTIONS(3337), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(3333), 2, + ACTIONS(3341), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2948), 2, + STATE(2974), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(3958), 2, + STATE(4025), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3327), 3, + ACTIONS(3335), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(8601), 3, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(5998), 11, + STATE(6145), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -333392,7 +336960,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3331), 13, + ACTIONS(3339), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -333406,64 +336974,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [43572] = 26, + [43162] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1852), 1, + ACTIONS(1850), 1, anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2977), 1, + ACTIONS(2997), 1, anon_sym_LPAREN2, - ACTIONS(2979), 1, + ACTIONS(2999), 1, anon_sym_TILDE, - ACTIONS(5849), 1, - sym_identifier, ACTIONS(5861), 1, - anon_sym_COLON_COLON, - ACTIONS(7089), 1, + sym_identifier, + ACTIONS(7103), 1, anon_sym_LBRACK, - ACTIONS(7165), 1, + ACTIONS(7271), 1, anon_sym_STAR, - ACTIONS(7167), 1, + ACTIONS(7273), 1, anon_sym_AMP_AMP, - ACTIONS(7169), 1, + ACTIONS(7275), 1, anon_sym_AMP, - STATE(4043), 1, + ACTIONS(7277), 1, + anon_sym_COLON_COLON, + STATE(4069), 1, sym_ms_unaligned_ptr_modifier, - STATE(4289), 1, + STATE(4325), 1, sym_alignas_qualifier, - STATE(5860), 1, + STATE(5967), 1, sym__scope_resolution, - STATE(6609), 1, + STATE(6228), 1, sym__declarator, - STATE(8161), 1, + STATE(8221), 1, sym_ms_based_modifier, - ACTIONS(3329), 2, + ACTIONS(3337), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(3333), 2, + ACTIONS(3341), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3820), 2, + STATE(3962), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(3936), 2, + STATE(4025), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3327), 3, + ACTIONS(3335), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(8601), 3, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(5998), 11, + STATE(6145), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -333475,7 +337043,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3331), 13, + ACTIONS(3339), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -333489,173 +337057,262 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [43681] = 52, + [43271] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6864), 1, + ACTIONS(7091), 1, anon_sym_LPAREN2, - ACTIONS(7181), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7183), 1, - anon_sym_COMMA, - ACTIONS(7187), 1, + ACTIONS(7093), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7095), 1, + anon_sym_LBRACK, + STATE(3296), 1, + sym_parameter_list, + STATE(3129), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6145), 19, anon_sym_DASH, - ACTIONS(7189), 1, anon_sym_PLUS, - ACTIONS(7191), 1, anon_sym_STAR, - ACTIONS(7193), 1, anon_sym_SLASH, - ACTIONS(7195), 1, anon_sym_PERCENT, - ACTIONS(7197), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7199), 1, - anon_sym_AMP_AMP, - ACTIONS(7201), 1, anon_sym_PIPE, - ACTIONS(7203), 1, anon_sym_CARET, - ACTIONS(7205), 1, anon_sym_AMP, - ACTIONS(7207), 1, - anon_sym_EQ_EQ, - ACTIONS(7209), 1, - anon_sym_BANG_EQ, - ACTIONS(7211), 1, anon_sym_GT, - ACTIONS(7213), 1, - anon_sym_GT_EQ, - ACTIONS(7215), 1, anon_sym_LT_EQ, - ACTIONS(7217), 1, anon_sym_LT, - ACTIONS(7219), 1, anon_sym_LT_LT, - ACTIONS(7221), 1, anon_sym_GT_GT, - ACTIONS(7223), 1, - anon_sym_LBRACK, - ACTIONS(7225), 1, anon_sym_EQ, - ACTIONS(7227), 1, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6147), 30, + anon_sym_DOT_DOT_DOT, + 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_QMARK, - ACTIONS(7229), 1, anon_sym_STAR_EQ, - ACTIONS(7231), 1, anon_sym_SLASH_EQ, - ACTIONS(7233), 1, anon_sym_PERCENT_EQ, - ACTIONS(7235), 1, anon_sym_PLUS_EQ, - ACTIONS(7237), 1, anon_sym_DASH_EQ, - ACTIONS(7239), 1, anon_sym_LT_LT_EQ, - ACTIONS(7241), 1, anon_sym_GT_GT_EQ, - ACTIONS(7243), 1, anon_sym_AMP_EQ, - ACTIONS(7245), 1, anon_sym_CARET_EQ, - ACTIONS(7247), 1, anon_sym_PIPE_EQ, - ACTIONS(7251), 1, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - ACTIONS(7253), 1, - anon_sym_or, - ACTIONS(7255), 1, - anon_sym_and, - ACTIONS(7257), 1, anon_sym_bitor, - ACTIONS(7259), 1, - anon_sym_xor, - ACTIONS(7261), 1, anon_sym_bitand, - ACTIONS(7263), 1, anon_sym_not_eq, - ACTIONS(7269), 1, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - ACTIONS(7271), 1, anon_sym_DASH_GT_STAR, - ACTIONS(7299), 1, - anon_sym_RPAREN, - STATE(1216), 1, - sym__binary_fold_operator, - STATE(3515), 1, + [43344] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5845), 1, + anon_sym_LPAREN2, + ACTIONS(6414), 1, + anon_sym_LBRACK, + ACTIONS(6418), 1, + anon_sym_DOT, + STATE(2491), 1, sym_argument_list, - STATE(3516), 1, + STATE(2492), 1, sym_subscript_argument_list, - STATE(8694), 1, - sym__fold_operator, - ACTIONS(7265), 2, + ACTIONS(6416), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7267), 2, + ACTIONS(6420), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7227), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6518), 14, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(6520), 29, + anon_sym_DOT_DOT_DOT, + 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_SEMI, + anon_sym_RBRACE, + 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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [43423] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7091), 1, + anon_sym_LPAREN2, + ACTIONS(7093), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7095), 1, + anon_sym_LBRACK, + STATE(3296), 1, + sym_parameter_list, + STATE(3129), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6198), 19, + 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_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7249), 3, + ACTIONS(6200), 30, + anon_sym_DOT_DOT_DOT, + 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_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_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [43842] = 26, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [43496] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1852), 1, + ACTIONS(1850), 1, anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2977), 1, + ACTIONS(2997), 1, anon_sym_LPAREN2, - ACTIONS(2979), 1, + ACTIONS(2999), 1, anon_sym_TILDE, - ACTIONS(5849), 1, + ACTIONS(5481), 1, sym_identifier, - ACTIONS(7089), 1, + ACTIONS(6365), 1, + anon_sym_COLON_COLON, + ACTIONS(7103), 1, anon_sym_LBRACK, - ACTIONS(7291), 1, + ACTIONS(7111), 1, anon_sym_STAR, - ACTIONS(7293), 1, + ACTIONS(7113), 1, anon_sym_AMP_AMP, - ACTIONS(7295), 1, + ACTIONS(7115), 1, anon_sym_AMP, - ACTIONS(7297), 1, - anon_sym_COLON_COLON, - STATE(4043), 1, + STATE(4069), 1, sym_ms_unaligned_ptr_modifier, - STATE(4289), 1, + STATE(4325), 1, sym_alignas_qualifier, - STATE(5838), 1, + STATE(5923), 1, sym__scope_resolution, - STATE(6171), 1, + STATE(6320), 1, sym__declarator, - STATE(8021), 1, + STATE(8339), 1, sym_ms_based_modifier, - ACTIONS(3329), 2, + ACTIONS(3337), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(3333), 2, + ACTIONS(3341), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2939), 2, + STATE(3962), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(3941), 2, + STATE(4013), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3327), 3, + ACTIONS(3335), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(8601), 3, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(5998), 11, + STATE(6145), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -333667,7 +337324,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3331), 13, + ACTIONS(3339), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -333681,78 +337338,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [43951] = 26, + [43605] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(2977), 1, - anon_sym_LPAREN2, - ACTIONS(2979), 1, - anon_sym_TILDE, - ACTIONS(5460), 1, - sym_identifier, - ACTIONS(7089), 1, - anon_sym_LBRACK, - ACTIONS(7171), 1, - anon_sym_STAR, - ACTIONS(7173), 1, + ACTIONS(7048), 1, anon_sym_AMP_AMP, - ACTIONS(7175), 1, + ACTIONS(7050), 1, anon_sym_AMP, - ACTIONS(7177), 1, - anon_sym_COLON_COLON, - STATE(4043), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4289), 1, + ACTIONS(7060), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7063), 1, + anon_sym_LBRACK, + ACTIONS(7065), 1, + anon_sym_const, + ACTIONS(7071), 1, + anon_sym___asm, + ACTIONS(7075), 1, + anon_sym_noexcept, + ACTIONS(7077), 1, + anon_sym_throw, + ACTIONS(7079), 1, + anon_sym_requires, + ACTIONS(7283), 1, + anon_sym___attribute__, + ACTIONS(7285), 1, + anon_sym___attribute, + ACTIONS(7287), 1, + anon_sym_DASH_GT, + STATE(4036), 1, sym_alignas_qualifier, - STATE(5850), 1, - sym__scope_resolution, - STATE(6652), 1, - sym__declarator, - STATE(8214), 1, - sym_ms_based_modifier, - ACTIONS(3329), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(3333), 2, + STATE(4892), 1, + sym__function_attributes_start, + STATE(5033), 1, + sym_ref_qualifier, + STATE(5584), 1, + sym_trailing_return_type, + STATE(6056), 1, + sym__function_attributes_end, + STATE(6850), 1, + sym_gnu_asm_expression, + ACTIONS(6037), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7067), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3820), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(3946), 2, + ACTIONS(7069), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(4140), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4332), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3327), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(8601), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(5998), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3331), 13, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5730), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5965), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5357), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7046), 6, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + ACTIONS(7052), 12, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -333764,90 +337425,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [44060] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4167), 1, - anon_sym_COLON_COLON, - ACTIONS(4970), 1, - anon_sym_LBRACE, - ACTIONS(5030), 1, - anon_sym_LT, - STATE(3094), 1, - sym_template_argument_list, - ACTIONS(4972), 19, - 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_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4965), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [44131] = 26, + [43722] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1852), 1, + ACTIONS(1850), 1, anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2977), 1, + ACTIONS(2997), 1, anon_sym_LPAREN2, - ACTIONS(2979), 1, + ACTIONS(2999), 1, anon_sym_TILDE, - ACTIONS(5849), 1, - sym_identifier, ACTIONS(5861), 1, + sym_identifier, + ACTIONS(5873), 1, anon_sym_COLON_COLON, - ACTIONS(7089), 1, + ACTIONS(7103), 1, anon_sym_LBRACK, ACTIONS(7105), 1, anon_sym_STAR, @@ -333855,37 +337452,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, ACTIONS(7109), 1, anon_sym_AMP, - STATE(4043), 1, + STATE(4069), 1, sym_ms_unaligned_ptr_modifier, - STATE(4289), 1, + STATE(4325), 1, sym_alignas_qualifier, - STATE(5860), 1, + STATE(5896), 1, sym__scope_resolution, - STATE(6349), 1, + STATE(6213), 1, sym__declarator, - STATE(8106), 1, + STATE(8504), 1, sym_ms_based_modifier, - ACTIONS(3329), 2, + ACTIONS(3337), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(3333), 2, + ACTIONS(3341), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3820), 2, + STATE(2920), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(3927), 2, + STATE(4008), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3327), 3, + ACTIONS(3335), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(8601), 3, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(5998), 11, + STATE(6145), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -333897,62 +337494,8 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3331), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [44240] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4167), 1, - anon_sym_COLON_COLON, - ACTIONS(6630), 1, - anon_sym_LT, - STATE(2731), 1, - sym_template_argument_list, - ACTIONS(4970), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(4963), 45, - anon_sym_AMP, + ACTIONS(3339), 13, anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, - 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_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, @@ -333965,73 +337508,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_template, - anon_sym_operator, - [44309] = 26, + [43831] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1852), 1, + ACTIONS(1850), 1, anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2977), 1, + ACTIONS(2997), 1, anon_sym_LPAREN2, - ACTIONS(2979), 1, + ACTIONS(2999), 1, anon_sym_TILDE, - ACTIONS(5849), 1, + ACTIONS(5861), 1, sym_identifier, - ACTIONS(7089), 1, + ACTIONS(7103), 1, anon_sym_LBRACK, - ACTIONS(7291), 1, + ACTIONS(7271), 1, anon_sym_STAR, - ACTIONS(7293), 1, + ACTIONS(7273), 1, anon_sym_AMP_AMP, - ACTIONS(7295), 1, + ACTIONS(7275), 1, anon_sym_AMP, - ACTIONS(7297), 1, + ACTIONS(7277), 1, anon_sym_COLON_COLON, - STATE(4043), 1, + STATE(4069), 1, sym_ms_unaligned_ptr_modifier, - STATE(4289), 1, + STATE(4325), 1, sym_alignas_qualifier, - STATE(5838), 1, + STATE(5967), 1, sym__scope_resolution, - STATE(6141), 1, + STATE(6244), 1, sym__declarator, - STATE(8021), 1, + STATE(8221), 1, sym_ms_based_modifier, - ACTIONS(3329), 2, + ACTIONS(3337), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(3333), 2, + ACTIONS(3341), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3820), 2, + STATE(3962), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(3969), 2, + STATE(3991), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3327), 3, + ACTIONS(3335), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(8601), 3, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(5998), 11, + STATE(6145), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -334043,7 +337577,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3331), 13, + ACTIONS(3339), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -334057,72 +337591,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [44418] = 26, + [43940] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(7015), 1, - anon_sym_EQ, - ACTIONS(7115), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7117), 1, + ACTIONS(7231), 1, anon_sym_AMP_AMP, - ACTIONS(7119), 1, + ACTIONS(7233), 1, anon_sym_PIPE, - ACTIONS(7123), 1, + ACTIONS(7237), 1, anon_sym_AMP, - ACTIONS(7129), 1, + ACTIONS(7243), 1, anon_sym_GT_EQ, - ACTIONS(7135), 1, + ACTIONS(7247), 1, anon_sym_LT_EQ_GT, - ACTIONS(7137), 1, - anon_sym_or, - ACTIONS(7139), 1, + ACTIONS(7251), 1, anon_sym_and, - ACTIONS(7141), 1, + ACTIONS(7253), 1, anon_sym_bitor, - ACTIONS(7143), 1, + ACTIONS(7255), 1, anon_sym_bitand, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6439), 2, + ACTIONS(6416), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7111), 2, + ACTIONS(6420), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6518), 2, + anon_sym_EQ, + anon_sym_or, + ACTIONS(7225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7121), 2, + ACTIONS(7235), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(7131), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7113), 3, + ACTIONS(7227), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7125), 3, + ACTIONS(7239), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7127), 3, + ACTIONS(7241), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7017), 20, + ACTIONS(6520), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_PIPE_PIPE, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_RBRACK, @@ -334140,125 +337672,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [44527] = 4, + [44045] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(7081), 1, - sym_literal_suffix, - ACTIONS(4154), 24, - 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_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - ACTIONS(4146), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(2997), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, + ACTIONS(2999), 1, + anon_sym_TILDE, + ACTIONS(5861), 1, + sym_identifier, + ACTIONS(5873), 1, + anon_sym_COLON_COLON, + ACTIONS(7103), 1, 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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [44592] = 26, + ACTIONS(7219), 1, + anon_sym_STAR, + ACTIONS(7221), 1, + anon_sym_AMP_AMP, + ACTIONS(7223), 1, + anon_sym_AMP, + STATE(4069), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4325), 1, + sym_alignas_qualifier, + STATE(5896), 1, + sym__scope_resolution, + STATE(6741), 1, + sym__declarator, + STATE(8381), 1, + sym_ms_based_modifier, + ACTIONS(3337), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3341), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3962), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4026), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3335), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(8569), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6145), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(3339), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [44154] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1852), 1, + ACTIONS(1850), 1, anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2977), 1, + ACTIONS(2997), 1, anon_sym_LPAREN2, - ACTIONS(2979), 1, + ACTIONS(2999), 1, anon_sym_TILDE, - ACTIONS(7089), 1, + ACTIONS(7103), 1, anon_sym_LBRACK, - ACTIONS(7281), 1, + ACTIONS(7209), 1, sym_identifier, - ACTIONS(7283), 1, + ACTIONS(7211), 1, anon_sym_STAR, - ACTIONS(7285), 1, + ACTIONS(7213), 1, anon_sym_AMP_AMP, - ACTIONS(7287), 1, + ACTIONS(7215), 1, anon_sym_AMP, - ACTIONS(7289), 1, + ACTIONS(7217), 1, anon_sym_COLON_COLON, - STATE(4043), 1, + STATE(4069), 1, sym_ms_unaligned_ptr_modifier, - STATE(4289), 1, + STATE(4325), 1, sym_alignas_qualifier, - STATE(5807), 1, + STATE(5895), 1, sym__scope_resolution, - STATE(6447), 1, + STATE(6321), 1, sym__declarator, - STATE(8592), 1, + STATE(8623), 1, sym_ms_based_modifier, - ACTIONS(3329), 2, + ACTIONS(3337), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(3333), 2, + ACTIONS(3341), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2958), 2, + STATE(3962), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(3926), 2, + STATE(3982), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3327), 3, + ACTIONS(3335), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(8601), 3, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(5998), 11, + STATE(6145), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -334270,7 +337824,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3331), 13, + ACTIONS(3339), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -334284,55 +337838,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [44701] = 7, + [44263] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4996), 1, - anon_sym_const, - ACTIONS(5007), 1, - anon_sym_AMP, - ACTIONS(5000), 7, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(2997), 1, anon_sym_LPAREN2, + ACTIONS(2999), 1, + anon_sym_TILDE, + ACTIONS(5481), 1, + sym_identifier, + ACTIONS(7103), 1, + anon_sym_LBRACK, + ACTIONS(7257), 1, anon_sym_STAR, + ACTIONS(7259), 1, anon_sym_AMP_AMP, - anon_sym_LBRACK, - anon_sym_GT2, - ACTIONS(5005), 10, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4998), 18, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(5003), 18, - anon_sym___extension__, + ACTIONS(7261), 1, + anon_sym_AMP, + ACTIONS(7263), 1, anon_sym_COLON_COLON, - anon_sym_LBRACE, + STATE(4069), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4325), 1, + sym_alignas_qualifier, + STATE(5931), 1, + sym__scope_resolution, + STATE(6816), 1, + sym__declarator, + STATE(8398), 1, + sym_ms_based_modifier, + ACTIONS(3337), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3341), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3962), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(3974), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3335), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(8569), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6145), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(3339), 13, + anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -334344,49 +337921,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_auto, - anon_sym_decltype, - [44772] = 6, + [44372] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4167), 1, - anon_sym_COLON_COLON, - ACTIONS(6630), 1, - anon_sym_LT, - STATE(1603), 1, - sym_template_argument_list, - ACTIONS(4963), 6, - anon_sym_AMP, + STATE(2509), 1, + sym_attribute_specifier, + ACTIONS(5489), 2, + anon_sym___attribute__, anon_sym___attribute, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(4970), 46, + ACTIONS(6163), 12, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6161), 40, + anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, anon_sym___declspec, - anon_sym_LBRACE, + 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_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, @@ -334400,75 +337978,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_or, - anon_sym_and, - anon_sym_DASH_GT, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_noexcept, - anon_sym_throw, - anon_sym_requires, - [44841] = 26, + anon_sym_template, + anon_sym_operator, + [44439] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1852), 1, + ACTIONS(1850), 1, anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2977), 1, + ACTIONS(2997), 1, anon_sym_LPAREN2, - ACTIONS(2979), 1, + ACTIONS(2999), 1, anon_sym_TILDE, - ACTIONS(2981), 1, - anon_sym_STAR, - ACTIONS(2983), 1, - anon_sym_AMP, - ACTIONS(5460), 1, + ACTIONS(5861), 1, sym_identifier, - ACTIONS(6321), 1, + ACTIONS(5873), 1, anon_sym_COLON_COLON, - ACTIONS(7089), 1, + ACTIONS(7097), 1, + anon_sym_STAR, + ACTIONS(7099), 1, + anon_sym_AMP_AMP, + ACTIONS(7101), 1, + anon_sym_AMP, + ACTIONS(7103), 1, anon_sym_LBRACK, - STATE(4043), 1, + STATE(4069), 1, sym_ms_unaligned_ptr_modifier, - STATE(4289), 1, + STATE(4325), 1, sym_alignas_qualifier, - STATE(5847), 1, + STATE(5896), 1, sym__scope_resolution, - STATE(6447), 1, + STATE(6451), 1, sym__declarator, - STATE(8682), 1, + STATE(8286), 1, sym_ms_based_modifier, - ACTIONS(3329), 2, + ACTIONS(3337), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(3333), 2, + ACTIONS(3341), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3820), 2, + STATE(3962), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(3963), 2, + STATE(3994), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3327), 3, + ACTIONS(3335), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(8601), 3, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(5998), 11, + STATE(6145), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -334480,7 +338052,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3331), 13, + ACTIONS(3339), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -334494,27 +338066,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [44950] = 11, + [44548] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2609), 1, + ACTIONS(2623), 1, anon_sym_LBRACE, - ACTIONS(7097), 1, + ACTIONS(7289), 1, anon_sym_LPAREN2, - ACTIONS(7099), 1, + ACTIONS(7291), 1, anon_sym_LBRACK, - ACTIONS(7101), 1, + ACTIONS(7293), 1, sym_auto, - ACTIONS(7103), 1, + ACTIONS(7295), 1, anon_sym_decltype, - STATE(3471), 1, + STATE(3416), 1, sym_new_declarator, - STATE(3525), 1, + STATE(3552), 1, sym_decltype_auto, - STATE(3888), 2, + STATE(3903), 2, sym_argument_list, sym_initializer_list, - ACTIONS(5873), 16, + ACTIONS(5841), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -334531,7 +338103,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5875), 30, + ACTIONS(5843), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -334562,102 +338134,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [45029] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7042), 1, - anon_sym_AMP_AMP, - ACTIONS(7044), 1, - anon_sym_AMP, - ACTIONS(7054), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7057), 1, - anon_sym_LBRACK, - ACTIONS(7059), 1, - anon_sym_const, - ACTIONS(7072), 1, - anon_sym_noexcept, - ACTIONS(7074), 1, - anon_sym_throw, - ACTIONS(7079), 1, - anon_sym_requires, - ACTIONS(7083), 1, - anon_sym___attribute__, - ACTIONS(7085), 1, - anon_sym___attribute, - ACTIONS(7157), 1, - anon_sym___asm, - ACTIONS(7179), 1, - anon_sym_DASH_GT, - STATE(3992), 1, - sym_alignas_qualifier, - STATE(4779), 1, - sym__function_attributes_start, - STATE(4959), 1, - sym_ref_qualifier, - STATE(5603), 1, - sym_trailing_return_type, - STATE(5701), 1, - sym__function_attributes_end, - STATE(6745), 1, - sym_gnu_asm_expression, - ACTIONS(6020), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7061), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(7154), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(4072), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4287), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5606), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5733), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5816), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5287), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7040), 6, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - ACTIONS(7046), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [45146] = 5, + [44627] = 5, ACTIONS(3), 1, sym_comment, - STATE(2532), 1, + STATE(2526), 1, sym_attribute_specifier, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(6098), 12, + ACTIONS(6167), 12, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -334670,7 +338155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_EQ, anon_sym_GT2, - ACTIONS(6096), 40, + ACTIONS(6165), 40, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -334711,93 +338196,183 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [45213] = 26, + [44694] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(2977), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(2979), 1, - anon_sym_TILDE, - ACTIONS(7089), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(7281), 1, - sym_identifier, - ACTIONS(7283), 1, + ACTIONS(6418), 1, + anon_sym_DOT, + ACTIONS(7233), 1, + anon_sym_PIPE, + ACTIONS(7237), 1, + anon_sym_AMP, + ACTIONS(7243), 1, + anon_sym_GT_EQ, + ACTIONS(7247), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7253), 1, + anon_sym_bitor, + ACTIONS(7255), 1, + anon_sym_bitand, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + ACTIONS(6416), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6420), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7225), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7235), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7245), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6518), 3, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + ACTIONS(7227), 3, anon_sym_STAR, - ACTIONS(7285), 1, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7239), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7241), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6520), 22, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(7287), 1, + anon_sym_SEMI, + anon_sym_RBRACE, + 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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [44795] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5845), 1, + anon_sym_LPAREN2, + ACTIONS(6414), 1, + anon_sym_LBRACK, + ACTIONS(6418), 1, + anon_sym_DOT, + ACTIONS(7237), 1, anon_sym_AMP, - ACTIONS(7289), 1, - anon_sym_COLON_COLON, - STATE(4043), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4289), 1, - sym_alignas_qualifier, - STATE(5807), 1, - sym__scope_resolution, - STATE(6509), 1, - sym__declarator, - STATE(8592), 1, - sym_ms_based_modifier, - ACTIONS(3329), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(3333), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3820), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(3940), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3327), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(8601), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(5998), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3331), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [45322] = 3, + ACTIONS(7243), 1, + anon_sym_GT_EQ, + ACTIONS(7247), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7255), 1, + anon_sym_bitand, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + ACTIONS(6416), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6420), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7225), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7235), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7245), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7227), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7239), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7241), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6518), 4, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + ACTIONS(6520), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_RBRACE, + 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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_bitor, + [44892] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5750), 21, + ACTIONS(2623), 1, + anon_sym_LBRACE, + ACTIONS(7289), 1, + anon_sym_LPAREN2, + ACTIONS(7291), 1, + anon_sym_LBRACK, + ACTIONS(7293), 1, + sym_auto, + ACTIONS(7295), 1, + anon_sym_decltype, + STATE(3530), 1, + sym_new_declarator, + STATE(3552), 1, + sym_decltype_auto, + STATE(3921), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5853), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -334807,29 +338382,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, - ACTIONS(5752), 34, + anon_sym_DASH_GT, + ACTIONS(5855), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_GT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -334837,94 +338405,127 @@ static const uint16_t ts_small_parse_table[] = { 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [45385] = 26, + anon_sym_DASH_GT_STAR, + [44971] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, + ACTIONS(4187), 1, + anon_sym_COLON_COLON, + ACTIONS(6580), 1, + anon_sym_LT, + STATE(2756), 1, + sym_template_argument_list, + ACTIONS(4192), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(5834), 45, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym___declspec, anon_sym___based, - ACTIONS(1452), 1, + 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_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_template, - ACTIONS(1852), 1, anon_sym_operator, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(2977), 1, + [45040] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2527), 1, + sym_attribute_specifier, + ACTIONS(5489), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(6171), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2979), 1, anon_sym_TILDE, - ACTIONS(5849), 1, - sym_identifier, - ACTIONS(5861), 1, - anon_sym_COLON_COLON, - ACTIONS(7089), 1, - anon_sym_LBRACK, - ACTIONS(7275), 1, anon_sym_STAR, - ACTIONS(7277), 1, anon_sym_AMP_AMP, - ACTIONS(7279), 1, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6169), 40, anon_sym_AMP, - STATE(4043), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4289), 1, - sym_alignas_qualifier, - STATE(5860), 1, - sym__scope_resolution, - STATE(6167), 1, - sym__declarator, - STATE(8398), 1, - sym_ms_based_modifier, - ACTIONS(3329), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(3333), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3820), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(3964), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3327), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(8601), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(5998), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3331), 13, anon_sym___extension__, + anon_sym_virtual, + 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_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, @@ -334937,52 +338538,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [45494] = 11, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [45107] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2609), 1, - anon_sym_LBRACE, - ACTIONS(7097), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(7099), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(7101), 1, - sym_auto, - ACTIONS(7103), 1, - anon_sym_decltype, - STATE(3367), 1, - sym_new_declarator, - STATE(3525), 1, - sym_decltype_auto, - STATE(3832), 2, + ACTIONS(6418), 1, + anon_sym_DOT, + ACTIONS(7237), 1, + anon_sym_AMP, + ACTIONS(7243), 1, + anon_sym_GT_EQ, + ACTIONS(7247), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7255), 1, + anon_sym_bitand, + STATE(2491), 1, sym_argument_list, - sym_initializer_list, - ACTIONS(5823), 16, + STATE(2492), 1, + sym_subscript_argument_list, + ACTIONS(6416), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6420), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7225), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7245), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7227), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7239), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7241), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(6518), 6, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5825), 30, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(6520), 23, anon_sym_DOT_DOT_DOT, 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_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -334994,92 +338617,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [45573] = 30, + [45202] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, ACTIONS(67), 1, anon_sym_const, - ACTIONS(7042), 1, + ACTIONS(7048), 1, anon_sym_AMP_AMP, - ACTIONS(7044), 1, + ACTIONS(7050), 1, anon_sym_AMP, - ACTIONS(7057), 1, + ACTIONS(7063), 1, anon_sym_LBRACK, - ACTIONS(7072), 1, + ACTIONS(7075), 1, anon_sym_noexcept, - ACTIONS(7074), 1, + ACTIONS(7077), 1, anon_sym_throw, - ACTIONS(7147), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - ACTIONS(7149), 1, + ACTIONS(7301), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7157), 1, + ACTIONS(7309), 1, anon_sym___asm, - ACTIONS(7160), 1, + ACTIONS(7312), 1, anon_sym_DASH_GT, - ACTIONS(7301), 1, + ACTIONS(7314), 1, anon_sym_requires, - STATE(1658), 1, + STATE(1680), 1, sym_alignas_qualifier, - STATE(4789), 1, + STATE(4905), 1, sym__function_attributes_start, - STATE(4968), 1, + STATE(5027), 1, sym_ref_qualifier, - STATE(5479), 1, + STATE(5524), 1, sym_trailing_return_type, - STATE(5662), 1, + STATE(5728), 1, sym__function_attributes_end, - STATE(6766), 1, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(6020), 2, + ACTIONS(6037), 2, anon_sym_final, anon_sym_override, - ACTIONS(7152), 2, + ACTIONS(7304), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(7154), 2, + ACTIONS(7306), 2, anon_sym_asm, anon_sym___asm__, - STATE(3982), 2, + STATE(4041), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(4184), 2, + STATE(4265), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(5458), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5606), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5816), 2, + STATE(5965), 2, sym__function_postfix, sym_requires_clause, - STATE(5288), 3, + STATE(5363), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(7040), 6, + ACTIONS(7046), 6, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - ACTIONS(7145), 12, + ACTIONS(7297), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -335092,48 +338708,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [45690] = 17, + [45319] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(7129), 1, + ACTIONS(7243), 1, anon_sym_GT_EQ, - ACTIONS(7135), 1, + ACTIONS(7247), 1, anon_sym_LT_EQ_GT, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6439), 2, + ACTIONS(6416), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7111), 2, + ACTIONS(6420), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7131), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7113), 3, + ACTIONS(7227), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7125), 3, + ACTIONS(7239), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7127), 3, + ACTIONS(7241), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6449), 7, + ACTIONS(6518), 7, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -335141,7 +338757,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6451), 24, + ACTIONS(6520), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -335166,44 +338782,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor_eq, anon_sym_bitor, anon_sym_bitand, - [45781] = 16, + [45410] = 52, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(6886), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, - anon_sym_LBRACK, - ACTIONS(6431), 1, - anon_sym_DOT, + ACTIONS(7117), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7119), 1, + anon_sym_COMMA, + ACTIONS(7123), 1, + anon_sym_DASH, + ACTIONS(7125), 1, + anon_sym_PLUS, + ACTIONS(7127), 1, + anon_sym_STAR, ACTIONS(7129), 1, - anon_sym_GT_EQ, + anon_sym_SLASH, + ACTIONS(7131), 1, + anon_sym_PERCENT, + ACTIONS(7133), 1, + anon_sym_PIPE_PIPE, ACTIONS(7135), 1, + anon_sym_AMP_AMP, + ACTIONS(7137), 1, + anon_sym_PIPE, + ACTIONS(7139), 1, + anon_sym_CARET, + ACTIONS(7141), 1, + anon_sym_AMP, + ACTIONS(7143), 1, + anon_sym_EQ_EQ, + ACTIONS(7145), 1, + anon_sym_BANG_EQ, + ACTIONS(7147), 1, + anon_sym_GT, + ACTIONS(7149), 1, + anon_sym_GT_EQ, + ACTIONS(7151), 1, + anon_sym_LT_EQ, + ACTIONS(7153), 1, + anon_sym_LT, + ACTIONS(7155), 1, + anon_sym_LT_LT, + ACTIONS(7157), 1, + anon_sym_GT_GT, + ACTIONS(7159), 1, + anon_sym_LBRACK, + ACTIONS(7161), 1, + anon_sym_EQ, + ACTIONS(7163), 1, + anon_sym_QMARK, + ACTIONS(7165), 1, + anon_sym_STAR_EQ, + ACTIONS(7167), 1, + anon_sym_SLASH_EQ, + ACTIONS(7169), 1, + anon_sym_PERCENT_EQ, + ACTIONS(7171), 1, + anon_sym_PLUS_EQ, + ACTIONS(7173), 1, + anon_sym_DASH_EQ, + ACTIONS(7175), 1, + anon_sym_LT_LT_EQ, + ACTIONS(7177), 1, + anon_sym_GT_GT_EQ, + ACTIONS(7179), 1, + anon_sym_AMP_EQ, + ACTIONS(7181), 1, + anon_sym_CARET_EQ, + ACTIONS(7183), 1, + anon_sym_PIPE_EQ, + ACTIONS(7187), 1, anon_sym_LT_EQ_GT, - STATE(2525), 1, + ACTIONS(7189), 1, + anon_sym_or, + ACTIONS(7191), 1, + anon_sym_and, + ACTIONS(7193), 1, + anon_sym_bitor, + ACTIONS(7195), 1, + anon_sym_xor, + ACTIONS(7197), 1, + anon_sym_bitand, + ACTIONS(7199), 1, + anon_sym_not_eq, + ACTIONS(7205), 1, + anon_sym_DOT_STAR, + ACTIONS(7207), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(7316), 1, + anon_sym_RPAREN, + STATE(1285), 1, + sym__binary_fold_operator, + STATE(3433), 1, sym_argument_list, - STATE(2526), 1, + STATE(3434), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, + STATE(8910), 1, + sym__fold_operator, + ACTIONS(7201), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7203), 2, + anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6439), 2, + ACTIONS(7185), 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [45571] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5845), 1, + anon_sym_LPAREN2, + ACTIONS(6414), 1, + anon_sym_LBRACK, + ACTIONS(6418), 1, + anon_sym_DOT, + ACTIONS(7243), 1, + anon_sym_GT_EQ, + ACTIONS(7247), 1, + anon_sym_LT_EQ_GT, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + ACTIONS(6416), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7111), 2, + ACTIONS(6420), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7131), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7113), 3, + ACTIONS(7227), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7127), 3, + ACTIONS(7241), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6449), 7, + ACTIONS(6518), 7, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -335211,7 +338936,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6451), 27, + ACTIONS(6520), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -335239,111 +338964,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [45870] = 5, + [45660] = 14, ACTIONS(3), 1, sym_comment, - STATE(2487), 1, - sym_attribute_specifier, - ACTIONS(5468), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(6060), 12, + ACTIONS(5845), 1, + anon_sym_LPAREN2, + ACTIONS(6414), 1, + anon_sym_LBRACK, + ACTIONS(6418), 1, + anon_sym_DOT, + ACTIONS(7247), 1, + anon_sym_LT_EQ_GT, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + ACTIONS(6416), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6420), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7225), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7245), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7227), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6518), 10, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(6520), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(6058), 40, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - 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_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [45937] = 14, + anon_sym_RBRACE, + 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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [45745] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(7135), 1, - anon_sym_LT_EQ_GT, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6439), 2, + ACTIONS(6416), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7111), 2, + ACTIONS(6420), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7131), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7113), 3, + ACTIONS(7227), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6449), 10, + ACTIONS(6518), 12, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6451), 28, + ACTIONS(6520), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -335369,18 +339100,185 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [45826] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5845), 1, + anon_sym_LPAREN2, + ACTIONS(6414), 1, + anon_sym_LBRACK, + ACTIONS(6418), 1, + anon_sym_DOT, + ACTIONS(6947), 1, + anon_sym_EQ, + ACTIONS(7229), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7231), 1, + anon_sym_AMP_AMP, + ACTIONS(7233), 1, + anon_sym_PIPE, + ACTIONS(7237), 1, + anon_sym_AMP, + ACTIONS(7243), 1, + anon_sym_GT_EQ, + ACTIONS(7247), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7249), 1, + anon_sym_or, + ACTIONS(7251), 1, + anon_sym_and, + ACTIONS(7253), 1, anon_sym_bitor, + ACTIONS(7255), 1, anon_sym_bitand, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + ACTIONS(6416), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6420), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7225), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7235), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7245), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7227), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7239), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_not_eq, - [46022] = 5, + ACTIONS(7241), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6949), 20, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + 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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [45935] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(2997), 1, + anon_sym_LPAREN2, + ACTIONS(2999), 1, + anon_sym_TILDE, + ACTIONS(5481), 1, + sym_identifier, + ACTIONS(7103), 1, + anon_sym_LBRACK, + ACTIONS(7257), 1, + anon_sym_STAR, + ACTIONS(7259), 1, + anon_sym_AMP_AMP, + ACTIONS(7261), 1, + anon_sym_AMP, + ACTIONS(7263), 1, + anon_sym_COLON_COLON, + STATE(4069), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4325), 1, + sym_alignas_qualifier, + STATE(5931), 1, + sym__scope_resolution, + STATE(6763), 1, + sym__declarator, + STATE(8398), 1, + sym_ms_based_modifier, + ACTIONS(3337), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3341), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2978), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(3996), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3335), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(8569), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6145), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(3339), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [46044] = 5, ACTIONS(3), 1, sym_comment, - STATE(2411), 1, + STATE(2466), 1, sym_attribute_specifier, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(6064), 12, + ACTIONS(6212), 12, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -335393,7 +339291,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_EQ, anon_sym_GT2, - ACTIONS(6062), 40, + ACTIONS(6210), 40, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -335434,33 +339332,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [46089] = 12, + [46111] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(2623), 1, + anon_sym_LBRACE, + ACTIONS(7289), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(7291), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, - anon_sym_DOT, - STATE(2525), 1, + ACTIONS(7293), 1, + sym_auto, + ACTIONS(7295), 1, + anon_sym_decltype, + STATE(3435), 1, + sym_new_declarator, + STATE(3552), 1, + sym_decltype_auto, + STATE(3913), 2, sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6439), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7111), 2, + sym_initializer_list, + ACTIONS(5857), 16, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7113), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6449), 12, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -335470,10 +339367,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - ACTIONS(6451), 29, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5859), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -335482,9 +339378,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -335496,126 +339389,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [46170] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(2977), 1, - anon_sym_LPAREN2, - ACTIONS(2979), 1, - anon_sym_TILDE, - ACTIONS(2981), 1, - anon_sym_STAR, - ACTIONS(2983), 1, - anon_sym_AMP, - ACTIONS(5460), 1, - sym_identifier, - ACTIONS(6321), 1, - anon_sym_COLON_COLON, - ACTIONS(7089), 1, - anon_sym_LBRACK, - STATE(4043), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4289), 1, - sym_alignas_qualifier, - STATE(5847), 1, - sym__scope_resolution, - STATE(6447), 1, - sym__declarator, - STATE(8682), 1, - sym_ms_based_modifier, - ACTIONS(3329), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(3333), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2897), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(3963), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3327), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(8601), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(5998), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3331), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [46279] = 13, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [46190] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6439), 2, + ACTIONS(6416), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7111), 2, + ACTIONS(6420), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7131), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7113), 3, + ACTIONS(7227), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6449), 10, + ACTIONS(6518), 10, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -335626,7 +339440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6451), 29, + ACTIONS(6520), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -335656,45 +339470,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [46362] = 6, + [46273] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4167), 1, - anon_sym_COLON_COLON, - ACTIONS(6630), 1, - anon_sym_LT, - STATE(1603), 1, - sym_template_argument_list, - ACTIONS(5838), 6, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym___inline, + ACTIONS(4984), 1, anon_sym_const, - ACTIONS(4172), 46, + ACTIONS(4995), 1, + anon_sym_AMP, + ACTIONS(4988), 7, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_GT2, + ACTIONS(4993), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4986), 18, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(4991), 18, anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, + anon_sym_COLON_COLON, anon_sym_LBRACE, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -335708,27 +339532,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_or, - anon_sym_and, - anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, + [46344] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7048), 1, + anon_sym_AMP_AMP, + ACTIONS(7050), 1, + anon_sym_AMP, + ACTIONS(7060), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7063), 1, + anon_sym_LBRACK, + ACTIONS(7065), 1, + anon_sym_const, + ACTIONS(7075), 1, anon_sym_noexcept, + ACTIONS(7077), 1, anon_sym_throw, + ACTIONS(7079), 1, anon_sym_requires, - [46431] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6789), 1, + ACTIONS(7283), 1, anon_sym___attribute__, - ACTIONS(6791), 1, + ACTIONS(7285), 1, anon_sym___attribute, - STATE(3427), 1, + ACTIONS(7309), 1, + anon_sym___asm, + ACTIONS(7318), 1, + anon_sym_DASH_GT, + STATE(4036), 1, + sym_alignas_qualifier, + STATE(4886), 1, + sym__function_attributes_start, + STATE(5023), 1, + sym_ref_qualifier, + STATE(5584), 1, + sym_trailing_return_type, + STATE(5775), 1, + sym__function_attributes_end, + STATE(6850), 1, + sym_gnu_asm_expression, + ACTIONS(6037), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7067), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7306), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(4140), 2, sym_attribute_specifier, - ACTIONS(6104), 16, + aux_sym_type_definition_repeat1, + STATE(4332), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5730), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5965), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5374), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7046), 6, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + ACTIONS(7052), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [46461] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2623), 1, + anon_sym_LBRACE, + ACTIONS(7289), 1, + anon_sym_LPAREN2, + ACTIONS(7291), 1, + anon_sym_LBRACK, + ACTIONS(7293), 1, + sym_auto, + ACTIONS(7295), 1, + anon_sym_decltype, + STATE(3422), 1, + sym_new_declarator, + STATE(3552), 1, + sym_decltype_auto, + STATE(3847), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5881), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -335745,18 +339658,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6106), 35, + ACTIONS(5883), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -335778,79 +339688,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, anon_sym_DASH_GT_STAR, - [46499] = 4, + [46540] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(7303), 1, - anon_sym_typedef, - ACTIONS(2563), 6, + ACTIONS(5845), 1, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, + ACTIONS(6414), 1, + anon_sym_LBRACK, + ACTIONS(6418), 1, + anon_sym_DOT, + ACTIONS(6981), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6997), 1, + anon_sym_EQ, + ACTIONS(7229), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7231), 1, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2573), 47, + ACTIONS(7233), 1, + anon_sym_PIPE, + ACTIONS(7237), 1, anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - [46563] = 6, + ACTIONS(7243), 1, + anon_sym_GT_EQ, + ACTIONS(7247), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7249), 1, + anon_sym_or, + ACTIONS(7251), 1, + anon_sym_and, + ACTIONS(7253), 1, + anon_sym_bitor, + ACTIONS(7255), 1, + anon_sym_bitand, + ACTIONS(7279), 1, + anon_sym_QMARK, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + ACTIONS(6416), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6420), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7225), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7235), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7245), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7227), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7239), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7241), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6999), 18, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + 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, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [46653] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6789), 1, - anon_sym___attribute__, ACTIONS(6791), 1, + anon_sym___attribute__, + ACTIONS(6793), 1, anon_sym___attribute, - STATE(3397), 1, + ACTIONS(7007), 1, + anon_sym_LBRACE, + STATE(3098), 1, + sym_enumerator_list, + STATE(3466), 1, sym_attribute_specifier, - ACTIONS(6090), 16, + ACTIONS(6066), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -335867,7 +339804,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6092), 35, + ACTIONS(6068), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -335877,7 +339814,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -335903,29 +339839,182 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [46631] = 3, + [46726] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 12, + ACTIONS(4187), 1, + anon_sym_COLON_COLON, + ACTIONS(4932), 1, + anon_sym_LBRACE, + ACTIONS(5038), 1, + anon_sym_LT, + STATE(3073), 1, + sym_template_argument_list, + ACTIONS(4934), 19, + 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_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4927), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [46797] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(67), 1, + anon_sym_const, + ACTIONS(7048), 1, + anon_sym_AMP_AMP, + ACTIONS(7050), 1, + anon_sym_AMP, + ACTIONS(7063), 1, + anon_sym_LBRACK, + ACTIONS(7075), 1, + anon_sym_noexcept, + ACTIONS(7077), 1, + anon_sym_throw, + ACTIONS(7299), 1, + anon_sym___attribute__, + ACTIONS(7301), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7309), 1, + anon_sym___asm, + ACTIONS(7312), 1, + anon_sym_DASH_GT, + ACTIONS(7320), 1, + anon_sym_requires, + STATE(1680), 1, + sym_alignas_qualifier, + STATE(4900), 1, + sym__function_attributes_start, + STATE(5031), 1, + sym_ref_qualifier, + STATE(5527), 1, + sym_trailing_return_type, + STATE(5743), 1, + sym__function_attributes_end, + STATE(6870), 1, + sym_gnu_asm_expression, + ACTIONS(7085), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7304), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7306), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(4041), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4265), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5507), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5965), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5356), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7046), 6, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + ACTIONS(7297), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [46914] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4187), 1, + anon_sym_COLON_COLON, + ACTIONS(6580), 1, + anon_sym_LT, + STATE(2756), 1, + sym_template_argument_list, + ACTIONS(4932), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(2573), 42, + anon_sym_LBRACE, + ACTIONS(4925), 45, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_COLON, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -335958,14 +340047,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, + sym_auto, anon_sym_decltype, - anon_sym_explicit, + anon_sym_final, + anon_sym_override, anon_sym_template, anon_sym_operator, - [46693] = 3, + [46983] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5699), 19, + ACTIONS(5764), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -335975,26 +340066,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5701), 35, + ACTIONS(5766), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -336004,7 +340096,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -336018,13 +340109,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [46755] = 3, + anon_sym_GT2, + [47046] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5629), 20, + ACTIONS(5525), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -336034,25 +340126,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5631), 34, + anon_sym_DASH_GT, + ACTIONS(5527), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, @@ -336063,6 +340156,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -336076,46 +340170,168 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [46817] = 3, + anon_sym_DASH_GT_STAR, + [47109] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(5450), 19, + ACTIONS(7048), 1, + anon_sym_AMP_AMP, + ACTIONS(7050), 1, + anon_sym_AMP, + ACTIONS(7060), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7063), 1, + anon_sym_LBRACK, + ACTIONS(7065), 1, + anon_sym_const, + ACTIONS(7075), 1, + anon_sym_noexcept, + ACTIONS(7077), 1, + anon_sym_throw, + ACTIONS(7088), 1, + anon_sym_requires, + ACTIONS(7283), 1, + anon_sym___attribute__, + ACTIONS(7285), 1, + anon_sym___attribute, + ACTIONS(7309), 1, + anon_sym___asm, + ACTIONS(7318), 1, + anon_sym_DASH_GT, + STATE(4036), 1, + sym_alignas_qualifier, + STATE(4851), 1, + sym__function_attributes_start, + STATE(5025), 1, + sym_ref_qualifier, + STATE(5594), 1, + sym_trailing_return_type, + STATE(5785), 1, + sym__function_attributes_end, + STATE(6850), 1, + sym_gnu_asm_expression, + ACTIONS(7067), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7085), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7306), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(4140), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4332), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5730), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5965), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5364), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7046), 6, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + ACTIONS(7052), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [47226] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5845), 1, + anon_sym_LPAREN2, + ACTIONS(6414), 1, + anon_sym_LBRACK, + ACTIONS(6418), 1, + anon_sym_DOT, + ACTIONS(6662), 1, + anon_sym_EQ, + ACTIONS(6981), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7229), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7231), 1, + anon_sym_AMP_AMP, + ACTIONS(7233), 1, + anon_sym_PIPE, + ACTIONS(7237), 1, + anon_sym_AMP, + ACTIONS(7243), 1, + anon_sym_GT_EQ, + ACTIONS(7247), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7249), 1, + anon_sym_or, + ACTIONS(7251), 1, + anon_sym_and, + ACTIONS(7253), 1, + anon_sym_bitor, + ACTIONS(7255), 1, + anon_sym_bitand, + ACTIONS(7279), 1, + anon_sym_QMARK, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + ACTIONS(6416), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6420), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7225), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7235), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7245), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7227), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7239), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7241), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5452), 35, - anon_sym_DOT_DOT_DOT, + ACTIONS(6664), 18, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -336129,26 +340345,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + [47339] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2501), 1, + sym_attribute_specifier, + ACTIONS(5489), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(6151), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6149), 40, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + 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_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [46879] = 6, + anon_sym_template, + anon_sym_operator, + [47406] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6789), 1, - anon_sym___attribute__, ACTIONS(6791), 1, + anon_sym___attribute__, + ACTIONS(6793), 1, anon_sym___attribute, - STATE(3415), 1, + STATE(3572), 1, sym_attribute_specifier, - ACTIONS(6096), 16, + ACTIONS(6100), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -336165,7 +340433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6098), 35, + ACTIONS(6102), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -336201,43 +340469,31 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [46947] = 9, + [47474] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6971), 1, - anon_sym_LBRACE, - ACTIONS(7305), 1, - anon_sym_COLON, - STATE(2509), 1, - sym_attribute_specifier, - STATE(2788), 1, - sym__enum_base_clause, - STATE(2880), 1, - sym_enumerator_list, - ACTIONS(5468), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(6338), 7, + ACTIONS(7323), 1, + anon_sym_friend, + ACTIONS(2559), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(6336), 40, + ACTIONS(2569), 47, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, anon_sym___declspec, anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_register, @@ -336261,193 +340517,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, sym_identifier, sym_auto, anon_sym_decltype, + anon_sym_explicit, + anon_sym_typename, anon_sym_template, anon_sym_operator, - [47021] = 30, + [47538] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(7042), 1, + ACTIONS(5845), 1, + anon_sym_LPAREN2, + ACTIONS(6414), 1, + anon_sym_LBRACK, + ACTIONS(6418), 1, + anon_sym_DOT, + ACTIONS(7329), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7331), 1, anon_sym_AMP_AMP, - ACTIONS(7044), 1, + ACTIONS(7333), 1, + anon_sym_PIPE, + ACTIONS(7337), 1, anon_sym_AMP, - ACTIONS(7057), 1, - anon_sym_LBRACK, - ACTIONS(7065), 1, - anon_sym___asm, - ACTIONS(7072), 1, - anon_sym_noexcept, - ACTIONS(7074), 1, - anon_sym_throw, - ACTIONS(7149), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7301), 1, - anon_sym_requires, - ACTIONS(7307), 1, - anon_sym___attribute__, - ACTIONS(7310), 1, - anon_sym___attribute, - ACTIONS(7313), 1, + ACTIONS(7343), 1, + anon_sym_GT_EQ, + ACTIONS(7347), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7349), 1, + anon_sym_or, + ACTIONS(7351), 1, + anon_sym_and, + ACTIONS(7353), 1, + anon_sym_bitor, + ACTIONS(7355), 1, + anon_sym_bitand, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + ACTIONS(6416), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6420), 2, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - STATE(1658), 1, - sym_alignas_qualifier, - STATE(4864), 1, - sym__function_attributes_start, - STATE(5028), 1, - sym_ref_qualifier, - STATE(5479), 1, - sym_trailing_return_type, - STATE(5915), 1, - sym__function_attributes_end, - STATE(6766), 1, - sym_gnu_asm_expression, - ACTIONS(6020), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7063), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7152), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3982), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4184), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5458), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5606), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5816), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5311), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7040), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(7145), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [47137] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(3045), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7315), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5450), 6, - anon_sym_AMP, + ACTIONS(7015), 2, anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(5452), 43, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_static, anon_sym_EQ, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [47203] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5450), 19, + ACTIONS(7325), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7335), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7345), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7327), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7339), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7341), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5452), 35, + ACTIONS(7017), 18, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -336462,26 +340611,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [47265] = 6, + [47646] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6789), 1, - anon_sym___attribute__, - ACTIONS(6791), 1, - anon_sym___attribute, - STATE(3419), 1, - sym_attribute_specifier, - ACTIONS(6168), 16, + ACTIONS(5784), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -336496,9 +340629,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6170), 35, + ACTIONS(5786), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -336521,11 +340657,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -336534,104 +340670,74 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [47333] = 7, + [47708] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4996), 1, - anon_sym_const, - ACTIONS(5007), 1, - anon_sym_AMP, - ACTIONS(5000), 5, - anon_sym_RPAREN, + ACTIONS(5845), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(5005), 8, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(5003), 18, - anon_sym___extension__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_auto, - anon_sym_decltype, - ACTIONS(4998), 21, - anon_sym_DOT_DOT_DOT, - anon_sym_PERCENT, + ACTIONS(7329), 1, anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(7331), 1, + anon_sym_AMP_AMP, + ACTIONS(7333), 1, + anon_sym_PIPE, + ACTIONS(7337), 1, + anon_sym_AMP, + ACTIONS(7343), 1, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_QMARK, + ACTIONS(7347), 1, anon_sym_LT_EQ_GT, + ACTIONS(7349), 1, anon_sym_or, + ACTIONS(7351), 1, anon_sym_and, + ACTIONS(7353), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(7355), 1, anon_sym_bitand, - anon_sym_not_eq, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + ACTIONS(6416), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [47403] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5762), 19, + ACTIONS(7019), 2, + anon_sym___attribute, + anon_sym_EQ, + ACTIONS(7325), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7335), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7345), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7327), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7339), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7341), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5764), 35, + ACTIONS(7021), 18, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -336646,25 +340752,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, + [47816] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5845), 1, + anon_sym_LPAREN2, + ACTIONS(6414), 1, + anon_sym_LBRACK, + ACTIONS(6418), 1, + anon_sym_DOT, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + ACTIONS(6416), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(6420), 2, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [47465] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5766), 19, - anon_sym_DASH, - anon_sym_PLUS, + anon_sym_DASH_GT, + ACTIONS(7327), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(6518), 15, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -336673,24 +340786,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5768), 35, + ACTIONS(6520), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -336709,89 +340819,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [47527] = 12, + [47894] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(5499), 1, - anon_sym_COLON, - ACTIONS(6542), 1, - anon_sym_LBRACE, - ACTIONS(7147), 1, - anon_sym___attribute__, - STATE(2513), 1, - sym_attribute_specifier, - STATE(3614), 1, - sym_field_declaration_list, - STATE(7086), 1, - sym_virtual_specifier, - STATE(7881), 1, - sym_base_class_clause, - ACTIONS(6020), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5493), 5, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(5495), 39, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5845), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_static, - anon_sym_EQ, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [47607] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5770), 19, + ACTIONS(6414), 1, + anon_sym_LBRACK, + ACTIONS(6418), 1, + anon_sym_DOT, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + ACTIONS(6416), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6420), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7325), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7327), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(6518), 13, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -336800,24 +340854,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5772), 35, + ACTIONS(6520), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -336836,47 +340887,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, + [47974] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5845), 1, + anon_sym_LPAREN2, + ACTIONS(6414), 1, + anon_sym_LBRACK, + ACTIONS(6418), 1, + anon_sym_DOT, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + ACTIONS(6416), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(6420), 2, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [47669] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5774), 19, + anon_sym_DASH_GT, + ACTIONS(7325), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7345), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7327), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(6518), 11, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym___attribute, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5776), 35, + ACTIONS(6520), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -336895,86 +340956,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [47731] = 30, + [48056] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, ACTIONS(67), 1, anon_sym_const, - ACTIONS(7042), 1, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7048), 1, anon_sym_AMP_AMP, - ACTIONS(7044), 1, + ACTIONS(7050), 1, anon_sym_AMP, - ACTIONS(7057), 1, + ACTIONS(7063), 1, anon_sym_LBRACK, - ACTIONS(7065), 1, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7072), 1, + ACTIONS(7075), 1, anon_sym_noexcept, - ACTIONS(7074), 1, + ACTIONS(7077), 1, anon_sym_throw, - ACTIONS(7147), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - ACTIONS(7149), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7317), 1, + ACTIONS(7357), 1, anon_sym_DASH_GT, - ACTIONS(7319), 1, + ACTIONS(7361), 1, anon_sym_requires, - STATE(1658), 1, + STATE(1680), 1, sym_alignas_qualifier, - STATE(4879), 1, + STATE(4940), 1, sym__function_attributes_start, - STATE(5004), 1, + STATE(5095), 1, sym_ref_qualifier, - STATE(5993), 1, - sym__function_attributes_end, - STATE(6237), 1, + STATE(5985), 1, sym_trailing_return_type, - STATE(6766), 1, + STATE(6217), 1, + sym__function_attributes_end, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(7063), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7069), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7152), 2, + ACTIONS(7304), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3982), 2, + ACTIONS(7359), 2, + anon_sym_final, + anon_sym_override, + STATE(4041), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(4184), 2, + STATE(4265), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(5458), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5606), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5816), 2, + STATE(6125), 2, sym__function_postfix, sym_requires_clause, - STATE(5321), 3, + STATE(5388), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(7040), 5, - anon_sym_RPAREN, + ACTIONS(7046), 5, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_EQ, anon_sym_try, - ACTIONS(7145), 12, + ACTIONS(7297), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -336987,10 +341042,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [47847] = 3, + [48172] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5732), 19, + ACTIONS(6791), 1, + anon_sym___attribute__, + ACTIONS(6793), 1, + anon_sym___attribute, + STATE(3447), 1, + sym_attribute_specifier, + ACTIONS(6169), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -337005,12 +341066,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5734), 35, + ACTIONS(6171), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -337033,11 +341091,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -337046,10 +341104,74 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [47909] = 3, + [48240] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7363), 1, + anon_sym_LPAREN2, + ACTIONS(7365), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7367), 1, + anon_sym_LBRACK, + STATE(3419), 1, + sym_parameter_list, + STATE(3239), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6198), 20, + 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_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(6200), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [48312] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5736), 19, + ACTIONS(5768), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -337069,7 +341191,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5738), 35, + ACTIONS(5770), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -337105,102 +341227,17 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [47971] = 30, + [48374] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7042), 1, - anon_sym_AMP_AMP, - ACTIONS(7044), 1, - anon_sym_AMP, - ACTIONS(7057), 1, - anon_sym_LBRACK, - ACTIONS(7065), 1, - anon_sym___asm, - ACTIONS(7072), 1, - anon_sym_noexcept, - ACTIONS(7074), 1, - anon_sym_throw, - ACTIONS(7147), 1, - anon_sym___attribute__, - ACTIONS(7322), 1, - anon_sym_DASH_GT, - ACTIONS(7327), 1, - anon_sym_requires, - STATE(1658), 1, - sym_alignas_qualifier, - STATE(4883), 1, - sym__function_attributes_start, - STATE(5026), 1, - sym_ref_qualifier, - STATE(6038), 1, - sym_trailing_return_type, - STATE(6139), 1, - sym__function_attributes_end, - STATE(6766), 1, - sym_gnu_asm_expression, - ACTIONS(7063), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7152), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(7324), 2, - anon_sym_final, - anon_sym_override, - STATE(3982), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4184), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5458), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5984), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5324), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7040), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, + ACTIONS(2457), 1, anon_sym_LBRACE, - ACTIONS(7145), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [48087] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6983), 1, - sym_auto, - ACTIONS(6985), 1, - anon_sym_decltype, - STATE(3169), 1, - sym_decltype_auto, - ACTIONS(5589), 20, + ACTIONS(6886), 1, + anon_sym_LPAREN2, + STATE(3429), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6224), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -337210,26 +341247,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5591), 31, + anon_sym_DASH_GT, + ACTIONS(6226), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -337238,6 +341274,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -337251,12 +341288,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [48155] = 3, + anon_sym_DASH_GT_STAR, + [48442] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5754), 19, + ACTIONS(5525), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -337266,26 +341302,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5756), 35, + ACTIONS(5527), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -337295,7 +341331,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -337309,13 +341344,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [48217] = 3, + anon_sym_GT2, + [48504] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5758), 19, + ACTIONS(5760), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -337335,7 +341371,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5760), 35, + ACTIONS(5762), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -337371,81 +341407,126 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [48279] = 30, + [48566] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, ACTIONS(67), 1, anon_sym_const, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7042), 1, + ACTIONS(7048), 1, anon_sym_AMP_AMP, - ACTIONS(7044), 1, + ACTIONS(7050), 1, anon_sym_AMP, - ACTIONS(7057), 1, + ACTIONS(7063), 1, anon_sym_LBRACK, - ACTIONS(7065), 1, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7072), 1, + ACTIONS(7075), 1, anon_sym_noexcept, - ACTIONS(7074), 1, + ACTIONS(7077), 1, anon_sym_throw, - ACTIONS(7147), 1, + ACTIONS(7301), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7314), 1, + anon_sym_requires, + ACTIONS(7369), 1, anon_sym___attribute__, - ACTIONS(7330), 1, + ACTIONS(7372), 1, + anon_sym___attribute, + ACTIONS(7375), 1, anon_sym_DASH_GT, - ACTIONS(7332), 1, - anon_sym_requires, - STATE(1658), 1, + STATE(1680), 1, sym_alignas_qualifier, - STATE(4872), 1, + STATE(4958), 1, sym__function_attributes_start, - STATE(5005), 1, + STATE(5070), 1, sym_ref_qualifier, - STATE(5929), 1, + STATE(5524), 1, sym_trailing_return_type, - STATE(6153), 1, + STATE(5990), 1, sym__function_attributes_end, - STATE(6766), 1, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(7063), 2, + ACTIONS(6037), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7152), 2, + ACTIONS(7304), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(7324), 2, - anon_sym_final, - anon_sym_override, - STATE(3982), 2, + STATE(4041), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(4184), 2, + STATE(4265), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(5458), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5984), 2, + STATE(5965), 2, sym__function_postfix, sym_requires_clause, - STATE(5328), 3, + STATE(5376), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(7040), 5, + ACTIONS(7046), 5, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_EQ, - anon_sym_try, - ACTIONS(7145), 12, + anon_sym_GT2, + ACTIONS(7297), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [48682] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3945), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3943), 48, + anon_sym_AMP, anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_using, + 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_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, @@ -337457,10 +341538,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [48395] = 3, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + [48744] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6844), 12, + ACTIONS(5519), 1, + anon_sym_COLON_COLON, + ACTIONS(5523), 1, + anon_sym_LBRACE, + ACTIONS(5517), 10, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -337469,11 +341568,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_EQ, - anon_sym_GT2, - ACTIONS(6842), 42, + ACTIONS(5515), 42, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -337512,14 +341609,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, + sym_auto, anon_sym_decltype, - anon_sym_explicit, anon_sym_template, anon_sym_operator, - [48457] = 3, + [48810] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5786), 19, + ACTIONS(7383), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(7381), 2, + anon_sym_delete, + anon_sym_new, + ACTIONS(7379), 20, + anon_sym_BANG, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -337534,24 +341637,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_not, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5788), 35, - anon_sym_DOT_DOT_DOT, + ACTIONS(7377), 31, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -337565,20 +341663,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_sym_compl, anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, + anon_sym_co_await, anon_sym_DASH_GT_STAR, - [48519] = 3, + anon_sym_LPAREN_RPAREN, + anon_sym_LBRACK_RBRACK, + [48876] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5790), 19, + ACTIONS(6791), 1, + anon_sym___attribute__, + ACTIONS(6793), 1, + anon_sym___attribute, + STATE(3441), 1, + sym_attribute_specifier, + ACTIONS(6149), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -337593,12 +341698,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5792), 35, + ACTIONS(6151), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -337621,11 +341723,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -337634,10 +341736,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [48581] = 3, + [48944] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5794), 19, + ACTIONS(5645), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -337657,7 +341759,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5796), 35, + ACTIONS(5647), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -337693,10 +341795,94 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [48643] = 3, + [49006] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5845), 1, + anon_sym_LPAREN2, + ACTIONS(6414), 1, + anon_sym_LBRACK, + ACTIONS(6418), 1, + anon_sym_DOT, + ACTIONS(6981), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7329), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7331), 1, + anon_sym_AMP_AMP, + ACTIONS(7333), 1, + anon_sym_PIPE, + ACTIONS(7337), 1, + anon_sym_AMP, + ACTIONS(7343), 1, + anon_sym_GT_EQ, + ACTIONS(7347), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7349), 1, + anon_sym_or, + ACTIONS(7351), 1, + anon_sym_and, + ACTIONS(7353), 1, + anon_sym_bitor, + ACTIONS(7355), 1, + anon_sym_bitand, + ACTIONS(7385), 1, + anon_sym_QMARK, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + ACTIONS(6416), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6420), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6662), 2, + anon_sym___attribute, + anon_sym_EQ, + ACTIONS(7325), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7335), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7345), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7327), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7339), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7341), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6664), 16, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + 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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [49118] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5786), 19, + ACTIONS(5788), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -337716,7 +341902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5788), 35, + ACTIONS(5790), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -337752,81 +341938,45 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [48705] = 30, + [49180] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7042), 1, - anon_sym_AMP_AMP, - ACTIONS(7044), 1, + STATE(1974), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7387), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5921), 6, anon_sym_AMP, - ACTIONS(7057), 1, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(7065), 1, + anon_sym___inline, + anon_sym_const, anon_sym___asm, - ACTIONS(7072), 1, - anon_sym_noexcept, - ACTIONS(7074), 1, - anon_sym_throw, - ACTIONS(7147), 1, - anon_sym___attribute__, - ACTIONS(7322), 1, - anon_sym_DASH_GT, - ACTIONS(7337), 1, - anon_sym_requires, - STATE(1658), 1, - sym_alignas_qualifier, - STATE(4893), 1, - sym__function_attributes_start, - STATE(5017), 1, - sym_ref_qualifier, - STATE(5985), 1, - sym_trailing_return_type, - STATE(6110), 1, - sym__function_attributes_end, - STATE(6766), 1, - sym_gnu_asm_expression, - ACTIONS(7063), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7152), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(7335), 2, - anon_sym_final, - anon_sym_override, - STATE(3982), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4184), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5458), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5984), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5309), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7040), 5, + ACTIONS(5919), 43, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_LBRACE, - ACTIONS(7145), 12, anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -337838,32 +341988,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [48821] = 5, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [49246] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4106), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4111), 1, - anon_sym_using, - ACTIONS(4113), 5, + ACTIONS(7027), 1, + anon_sym_LBRACE, + ACTIONS(7389), 1, + anon_sym_COLON, + STATE(2457), 1, + sym_attribute_specifier, + STATE(2847), 1, + sym__enum_base_clause, + STATE(3012), 1, + sym_enumerator_list, + ACTIONS(5489), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(6318), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym_COLON_COLON, - ACTIONS(4115), 47, + anon_sym_LBRACK_LBRACK, + ACTIONS(6316), 40, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, anon_sym___declspec, anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_LBRACK, anon_sym_static, anon_sym_register, @@ -337887,82 +342059,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_explicit, - anon_sym_typename, anon_sym_template, anon_sym_operator, - [48887] = 26, + [49320] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(7343), 1, + ACTIONS(7329), 1, anon_sym_PIPE_PIPE, - ACTIONS(7345), 1, + ACTIONS(7331), 1, anon_sym_AMP_AMP, - ACTIONS(7347), 1, + ACTIONS(7333), 1, anon_sym_PIPE, - ACTIONS(7351), 1, + ACTIONS(7337), 1, anon_sym_AMP, - ACTIONS(7357), 1, + ACTIONS(7343), 1, anon_sym_GT_EQ, - ACTIONS(7361), 1, + ACTIONS(7347), 1, anon_sym_LT_EQ_GT, - ACTIONS(7363), 1, + ACTIONS(7349), 1, anon_sym_or, - ACTIONS(7365), 1, + ACTIONS(7351), 1, anon_sym_and, - ACTIONS(7367), 1, + ACTIONS(7353), 1, anon_sym_bitor, - ACTIONS(7369), 1, + ACTIONS(7355), 1, anon_sym_bitand, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6439), 2, + ACTIONS(6416), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6987), 2, + ACTIONS(6420), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6985), 2, anon_sym___attribute, anon_sym_EQ, - ACTIONS(7339), 2, + ACTIONS(7325), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7349), 2, + ACTIONS(7335), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(7359), 2, + ACTIONS(7345), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7341), 3, + ACTIONS(7327), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7353), 3, + ACTIONS(7339), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7355), 3, + ACTIONS(7341), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6989), 18, + ACTIONS(6987), 18, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_SEMI, @@ -337981,81 +342146,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [48995] = 30, + [49428] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(7042), 1, - anon_sym_AMP_AMP, - ACTIONS(7044), 1, + STATE(3036), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7391), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5776), 6, anon_sym_AMP, - ACTIONS(7057), 1, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(7065), 1, + anon_sym___inline, + anon_sym_const, anon_sym___asm, - ACTIONS(7072), 1, - anon_sym_noexcept, - ACTIONS(7074), 1, - anon_sym_throw, - ACTIONS(7149), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7162), 1, - anon_sym_requires, - ACTIONS(7307), 1, - anon_sym___attribute__, - ACTIONS(7310), 1, - anon_sym___attribute, - ACTIONS(7313), 1, - anon_sym_DASH_GT, - STATE(1658), 1, - sym_alignas_qualifier, - STATE(4866), 1, - sym__function_attributes_start, - STATE(4987), 1, - sym_ref_qualifier, - STATE(5446), 1, - sym_trailing_return_type, - STATE(5936), 1, - sym__function_attributes_end, - STATE(6766), 1, - sym_gnu_asm_expression, - ACTIONS(7063), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7069), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7152), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3982), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4184), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5458), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5606), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5816), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5331), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7040), 5, + ACTIONS(5778), 43, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(7145), 12, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -338067,10 +342196,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [49111] = 3, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [49494] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5647), 19, + ACTIONS(5701), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -338090,7 +342230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5649), 35, + ACTIONS(5703), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -338126,41 +342266,54 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [49173] = 4, + [49556] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(7371), 1, - anon_sym_namespace, - ACTIONS(6844), 6, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5563), 1, + anon_sym_COLON, + ACTIONS(6530), 1, + anon_sym_LBRACE, + ACTIONS(7299), 1, + anon_sym___attribute__, + STATE(2495), 1, + sym_attribute_specifier, + STATE(3672), 1, + sym_field_declaration_list, + STATE(7229), 1, + sym_virtual_specifier, + STATE(8011), 1, + sym_base_class_clause, + ACTIONS(6037), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5557), 5, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(5559), 39, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(6842), 47, - anon_sym_AMP, + anon_sym_SEMI, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, + anon_sym_LBRACK_LBRACK, 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_EQ, 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, @@ -338174,65 +342327,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, + anon_sym_asm, + anon_sym___asm__, sym_auto, anon_sym_decltype, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - [49237] = 9, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [49636] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2609), 1, - anon_sym_LBRACE, - ACTIONS(7373), 1, + ACTIONS(5816), 19, + 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_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5818), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - STATE(2616), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [49698] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3036), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3421), 1, - sym_argument_list, - STATE(3912), 1, - sym_initializer_list, - ACTIONS(6723), 4, + ACTIONS(7391), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5452), 9, - anon_sym_DOT_DOT_DOT, + ACTIONS(5515), 6, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(5517), 43, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_TILDE, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - ACTIONS(5450), 36, - anon_sym_AMP, + anon_sym_SEMI, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, anon_sym___attribute__, - anon_sym___attribute, + anon_sym_LBRACK_LBRACK, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_static, + anon_sym_EQ, 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, @@ -338246,21 +342445,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_identifier, + anon_sym_asm, + anon_sym___asm__, sym_auto, anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [49311] = 5, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [49764] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(7382), 1, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(7380), 2, - anon_sym_delete, - anon_sym_new, - ACTIONS(7378), 20, - anon_sym_BANG, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(67), 1, + anon_sym_const, + ACTIONS(7048), 1, + anon_sym_AMP_AMP, + ACTIONS(7050), 1, + anon_sym_AMP, + ACTIONS(7063), 1, + anon_sym_LBRACK, + ACTIONS(7071), 1, + anon_sym___asm, + ACTIONS(7075), 1, + anon_sym_noexcept, + ACTIONS(7077), 1, + anon_sym_throw, + ACTIONS(7299), 1, + anon_sym___attribute__, + ACTIONS(7301), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7393), 1, + anon_sym_DASH_GT, + ACTIONS(7395), 1, + anon_sym_requires, + STATE(1680), 1, + sym_alignas_qualifier, + STATE(4963), 1, + sym__function_attributes_start, + STATE(5092), 1, + sym_ref_qualifier, + STATE(6014), 1, + sym_trailing_return_type, + STATE(6121), 1, + sym__function_attributes_end, + STATE(6870), 1, + sym_gnu_asm_expression, + ACTIONS(6037), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7069), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7304), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4041), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4265), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5507), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5965), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5394), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7046), 5, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_try, + ACTIONS(7297), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [49880] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5772), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -338275,19 +342558,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_not, anon_sym_or, anon_sym_and, anon_sym_xor, + anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7376), 31, + ACTIONS(5774), 35, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_TILDE, + 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_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -338301,21 +342589,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_compl, anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_co_await, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - anon_sym_LPAREN_RPAREN, - anon_sym_LBRACK_RBRACK, - [49377] = 3, + [49942] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5798), 19, + ACTIONS(5515), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -338335,7 +342622,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5800), 35, + ACTIONS(5517), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -338371,100 +342658,16 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [49439] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5827), 1, - anon_sym_LPAREN2, - ACTIONS(6429), 1, - anon_sym_LBRACK, - ACTIONS(6431), 1, - anon_sym_DOT, - ACTIONS(6991), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7343), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7345), 1, - anon_sym_AMP_AMP, - ACTIONS(7347), 1, - anon_sym_PIPE, - ACTIONS(7351), 1, - anon_sym_AMP, - ACTIONS(7357), 1, - anon_sym_GT_EQ, - ACTIONS(7361), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7363), 1, - anon_sym_or, - ACTIONS(7365), 1, - anon_sym_and, - ACTIONS(7367), 1, - anon_sym_bitor, - ACTIONS(7369), 1, - anon_sym_bitand, - ACTIONS(7384), 1, - anon_sym_QMARK, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6439), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6524), 2, - anon_sym___attribute, - anon_sym_EQ, - ACTIONS(7339), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7349), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7359), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7341), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7353), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7355), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6526), 16, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - [49551] = 6, + [50004] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6789), 1, - anon_sym___attribute__, ACTIONS(6791), 1, + anon_sym___attribute__, + ACTIONS(6793), 1, anon_sym___attribute, - STATE(3497), 1, + STATE(3445), 1, sym_attribute_specifier, - ACTIONS(6058), 16, + ACTIONS(6165), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -338481,7 +342684,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6060), 35, + ACTIONS(6167), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -338517,75 +342720,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [49619] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5452), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5450), 42, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [49681] = 6, + [50072] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6789), 1, - anon_sym___attribute__, - ACTIONS(6791), 1, - anon_sym___attribute, - STATE(3458), 1, - sym_attribute_specifier, - ACTIONS(6117), 16, + ACTIONS(5685), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -338600,9 +342738,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6119), 35, + ACTIONS(5687), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -338625,11 +342766,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -338638,16 +342779,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [49749] = 6, + [50134] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6789), 1, - anon_sym___attribute__, - ACTIONS(6791), 1, - anon_sym___attribute, - STATE(3499), 1, - sym_attribute_specifier, - ACTIONS(6062), 16, + ACTIONS(5660), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -338662,9 +342797,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6064), 35, + ACTIONS(5662), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -338687,11 +342825,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -338700,73 +342838,77 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [49817] = 24, + [50196] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(7345), 1, + ACTIONS(6981), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7329), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7331), 1, anon_sym_AMP_AMP, - ACTIONS(7347), 1, + ACTIONS(7333), 1, anon_sym_PIPE, - ACTIONS(7351), 1, + ACTIONS(7337), 1, anon_sym_AMP, - ACTIONS(7357), 1, + ACTIONS(7343), 1, anon_sym_GT_EQ, - ACTIONS(7361), 1, + ACTIONS(7347), 1, anon_sym_LT_EQ_GT, - ACTIONS(7365), 1, + ACTIONS(7349), 1, + anon_sym_or, + ACTIONS(7351), 1, anon_sym_and, - ACTIONS(7367), 1, + ACTIONS(7353), 1, anon_sym_bitor, - ACTIONS(7369), 1, + ACTIONS(7355), 1, anon_sym_bitand, - STATE(2525), 1, + ACTIONS(7385), 1, + anon_sym_QMARK, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6439), 2, + ACTIONS(6416), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7339), 2, + ACTIONS(6420), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6989), 2, + anon_sym___attribute, + anon_sym_EQ, + ACTIONS(7325), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7349), 2, + ACTIONS(7335), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(7359), 2, + ACTIONS(7345), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6449), 3, - anon_sym___attribute, - anon_sym_EQ, - anon_sym_or, - ACTIONS(7341), 3, + ACTIONS(7327), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7353), 3, + ACTIONS(7339), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7355), 3, + ACTIONS(7341), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6451), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(6991), 16, anon_sym_COMMA, - anon_sym_PIPE_PIPE, anon_sym_SEMI, anon_sym___attribute__, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -338780,10 +342922,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [49921] = 3, + [50308] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7397), 1, + anon_sym_namespace, + ACTIONS(6868), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(6866), 47, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + [50372] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5806), 19, + ACTIONS(3933), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(7399), 2, + anon_sym_delete, + anon_sym_new, + ACTIONS(3911), 20, + anon_sym_BANG, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -338798,24 +343006,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_not, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5808), 35, - anon_sym_DOT_DOT_DOT, + ACTIONS(3909), 31, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -338829,20 +343032,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_sym_compl, anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + anon_sym_co_await, + anon_sym_DASH_GT_STAR, + anon_sym_LPAREN_RPAREN, + anon_sym_LBRACK_RBRACK, + [50438] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4984), 1, + anon_sym_const, + ACTIONS(4995), 1, + anon_sym_AMP, + ACTIONS(4988), 5, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACK, + ACTIONS(4993), 8, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4991), 18, + anon_sym___extension__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [49983] = 3, + ACTIONS(4986), 21, + anon_sym_DOT_DOT_DOT, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [50508] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2559), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(2569), 42, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [50570] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5810), 19, + ACTIONS(5792), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -338862,7 +343188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5812), 35, + ACTIONS(5794), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -338898,70 +343224,41 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [50045] = 22, + [50632] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, - anon_sym_LPAREN2, - ACTIONS(6429), 1, - anon_sym_LBRACK, - ACTIONS(6431), 1, - anon_sym_DOT, - ACTIONS(7347), 1, - anon_sym_PIPE, - ACTIONS(7351), 1, - anon_sym_AMP, - ACTIONS(7357), 1, - anon_sym_GT_EQ, - ACTIONS(7361), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7367), 1, - anon_sym_bitor, - ACTIONS(7369), 1, - anon_sym_bitand, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6439), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7339), 2, + ACTIONS(5705), 19, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7349), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7359), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7341), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7353), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7355), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6449), 4, - anon_sym___attribute, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_or, anon_sym_and, - ACTIONS(6451), 20, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5707), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -338976,10 +343273,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [50145] = 3, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [50694] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5637), 19, + ACTIONS(5712), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -338999,7 +343306,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5639), 35, + ACTIONS(5714), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -339035,65 +343342,72 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [50207] = 20, + [50756] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(7351), 1, + ACTIONS(7329), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7331), 1, + anon_sym_AMP_AMP, + ACTIONS(7333), 1, + anon_sym_PIPE, + ACTIONS(7337), 1, anon_sym_AMP, - ACTIONS(7357), 1, + ACTIONS(7343), 1, anon_sym_GT_EQ, - ACTIONS(7361), 1, + ACTIONS(7347), 1, anon_sym_LT_EQ_GT, - ACTIONS(7369), 1, + ACTIONS(7349), 1, + anon_sym_or, + ACTIONS(7351), 1, + anon_sym_and, + ACTIONS(7353), 1, + anon_sym_bitor, + ACTIONS(7355), 1, anon_sym_bitand, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6439), 2, + ACTIONS(6416), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7339), 2, + ACTIONS(6420), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6993), 2, + anon_sym___attribute, + anon_sym_EQ, + ACTIONS(7325), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7349), 2, + ACTIONS(7335), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(7359), 2, + ACTIONS(7345), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7341), 3, + ACTIONS(7327), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7353), 3, + ACTIONS(7339), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7355), 3, + ACTIONS(7341), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6449), 5, - anon_sym_PIPE, - anon_sym___attribute, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - ACTIONS(6451), 21, + ACTIONS(6995), 18, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, anon_sym_QMARK, @@ -339110,67 +343424,226 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_bitor, - [50303] = 19, + [50864] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5523), 1, + anon_sym_LBRACE, + ACTIONS(5517), 11, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(6429), 1, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + ACTIONS(5515), 42, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_LBRACK, - ACTIONS(6431), 1, - anon_sym_DOT, - ACTIONS(7351), 1, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [50928] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3141), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7401), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5968), 6, anon_sym_AMP, - ACTIONS(7357), 1, - anon_sym_GT_EQ, - ACTIONS(7361), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7369), 1, - anon_sym_bitand, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6439), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7339), 2, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(5966), 43, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [50994] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3142), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7403), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5974), 6, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(5972), 43, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [51060] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6791), 1, + anon_sym___attribute__, + ACTIONS(6793), 1, + anon_sym___attribute, + STATE(3473), 1, + sym_attribute_specifier, + ACTIONS(6214), 16, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7359), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7341), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7353), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7355), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6449), 7, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym___attribute, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - ACTIONS(6451), 21, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6216), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -339182,14 +343655,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - [50397] = 3, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [51128] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5663), 19, + ACTIONS(7363), 1, + anon_sym_LPAREN2, + ACTIONS(7365), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7367), 1, + anon_sym_LBRACK, + STATE(3419), 1, + sym_parameter_list, + STATE(3239), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6202), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -339199,28 +343692,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5665), 35, + ACTIONS(6204), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -339228,7 +343717,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -339242,66 +343730,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [50459] = 17, + anon_sym_DASH_GT, + anon_sym_GT2, + [51200] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, - anon_sym_LPAREN2, - ACTIONS(6429), 1, - anon_sym_LBRACK, - ACTIONS(6431), 1, - anon_sym_DOT, - ACTIONS(7357), 1, - anon_sym_GT_EQ, - ACTIONS(7361), 1, - anon_sym_LT_EQ_GT, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6439), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7339), 2, + ACTIONS(5519), 1, + anon_sym_COLON_COLON, + ACTIONS(5515), 20, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7359), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7341), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7353), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7355), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6449), 8, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - anon_sym___attribute, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6451), 22, + anon_sym_DOT, + ACTIONS(5517), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -339309,19 +343775,33 @@ static const uint16_t ts_small_parse_table[] = { 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_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, - [50549] = 3, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [51264] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5667), 19, + ACTIONS(6791), 1, + anon_sym___attribute__, + ACTIONS(6793), 1, + anon_sym___attribute, + STATE(3475), 1, + sym_attribute_specifier, + ACTIONS(6153), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -339336,12 +343816,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5669), 35, + ACTIONS(6155), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -339364,11 +343841,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -339377,10 +343854,132 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [50611] = 3, + [51332] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5681), 19, + STATE(1974), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7387), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5913), 6, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(5911), 43, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [51398] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(1974), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7387), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5953), 6, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(5951), 43, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [51464] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5720), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -339400,7 +343999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5683), 35, + ACTIONS(5722), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -339436,61 +344035,41 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [50673] = 16, + [51526] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, - anon_sym_LPAREN2, - ACTIONS(6429), 1, - anon_sym_LBRACK, - ACTIONS(6431), 1, - anon_sym_DOT, - ACTIONS(7357), 1, - anon_sym_GT_EQ, - ACTIONS(7361), 1, - anon_sym_LT_EQ_GT, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6439), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7339), 2, + ACTIONS(5724), 19, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7359), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7341), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7355), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6449), 8, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - anon_sym___attribute, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6451), 25, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5726), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_SEMI, - anon_sym___attribute__, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -339505,62 +344084,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [50761] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5827), 1, - anon_sym_LPAREN2, - ACTIONS(6429), 1, - anon_sym_LBRACK, - ACTIONS(6431), 1, - anon_sym_DOT, - ACTIONS(7361), 1, - anon_sym_LT_EQ_GT, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6439), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7339), 2, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [51588] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5728), 19, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7359), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7341), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6449), 11, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6451), 26, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5730), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -339575,45 +344143,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [50845] = 8, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [51650] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4167), 1, - anon_sym_COLON_COLON, - ACTIONS(7386), 1, - anon_sym_LT, - STATE(2641), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2731), 1, - sym_template_argument_list, - ACTIONS(4174), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4152), 10, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(7027), 1, + anon_sym_LBRACE, + ACTIONS(7389), 1, + anon_sym_COLON, + STATE(2458), 1, + sym_attribute_specifier, + STATE(2845), 1, + sym__enum_base_clause, + STATE(2997), 1, + sym_enumerator_list, + ACTIONS(5489), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(6395), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4144), 36, + ACTIONS(6393), 40, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, anon_sym___declspec, anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_LBRACK, anon_sym_static, anon_sym_register, @@ -339642,10 +344218,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [50917] = 3, + [51724] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5740), 19, + ACTIONS(5720), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -339665,7 +344241,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5742), 35, + ACTIONS(5722), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -339701,160 +344277,44 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [50979] = 30, + [51786] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(7042), 1, - anon_sym_AMP_AMP, - ACTIONS(7044), 1, - anon_sym_AMP, - ACTIONS(7057), 1, - anon_sym_LBRACK, - ACTIONS(7065), 1, - anon_sym___asm, - ACTIONS(7072), 1, - anon_sym_noexcept, - ACTIONS(7074), 1, - anon_sym_throw, - ACTIONS(7147), 1, - anon_sym___attribute__, - ACTIONS(7149), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7317), 1, - anon_sym_DASH_GT, - ACTIONS(7388), 1, - anon_sym_requires, - STATE(1658), 1, - sym_alignas_qualifier, - STATE(4892), 1, - sym__function_attributes_start, - STATE(5020), 1, - sym_ref_qualifier, - STATE(5983), 1, - sym__function_attributes_end, - STATE(6248), 1, - sym_trailing_return_type, - STATE(6766), 1, - sym_gnu_asm_expression, - ACTIONS(6020), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7063), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7152), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3982), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4184), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5458), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5606), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5816), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5306), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7040), 5, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, + ACTIONS(4991), 2, + anon_sym_COLON_COLON, anon_sym_LBRACE, - anon_sym_try, - ACTIONS(7145), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [51095] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5827), 1, - anon_sym_LPAREN2, - ACTIONS(6429), 1, - anon_sym_LBRACK, - ACTIONS(6431), 1, - anon_sym_DOT, - ACTIONS(7343), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7345), 1, - anon_sym_AMP_AMP, - ACTIONS(7347), 1, - anon_sym_PIPE, - ACTIONS(7351), 1, - anon_sym_AMP, - ACTIONS(7357), 1, - anon_sym_GT_EQ, - ACTIONS(7361), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7363), 1, - anon_sym_or, - ACTIONS(7365), 1, - anon_sym_and, - ACTIONS(7367), 1, - anon_sym_bitor, - ACTIONS(7369), 1, - anon_sym_bitand, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6439), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6933), 2, - anon_sym___attribute, - anon_sym_EQ, - ACTIONS(7339), 2, + ACTIONS(4993), 20, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7349), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7359), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7341), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7353), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7355), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6935), 18, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4986), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, + 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_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -339869,10 +344329,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [51203] = 3, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [51850] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5778), 19, + ACTIONS(7411), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(7409), 2, + anon_sym_delete, + anon_sym_new, + ACTIONS(7407), 20, + anon_sym_BANG, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -339887,24 +344361,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_not, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5780), 35, - anon_sym_DOT_DOT_DOT, + ACTIONS(7405), 31, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -339918,82 +344387,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_sym_compl, anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, + anon_sym_co_await, anon_sym_DASH_GT_STAR, - [51265] = 26, + anon_sym_LPAREN_RPAREN, + anon_sym_LBRACK_RBRACK, + [51916] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(7343), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7345), 1, + ACTIONS(7331), 1, anon_sym_AMP_AMP, - ACTIONS(7347), 1, + ACTIONS(7333), 1, anon_sym_PIPE, - ACTIONS(7351), 1, + ACTIONS(7337), 1, anon_sym_AMP, - ACTIONS(7357), 1, + ACTIONS(7343), 1, anon_sym_GT_EQ, - ACTIONS(7361), 1, + ACTIONS(7347), 1, anon_sym_LT_EQ_GT, - ACTIONS(7363), 1, - anon_sym_or, - ACTIONS(7365), 1, + ACTIONS(7351), 1, anon_sym_and, - ACTIONS(7367), 1, + ACTIONS(7353), 1, anon_sym_bitor, - ACTIONS(7369), 1, + ACTIONS(7355), 1, anon_sym_bitand, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6439), 2, + ACTIONS(6416), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6967), 2, - anon_sym___attribute, - anon_sym_EQ, - ACTIONS(7339), 2, + ACTIONS(6420), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7325), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7349), 2, + ACTIONS(7335), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(7359), 2, + ACTIONS(7345), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7341), 3, + ACTIONS(6518), 3, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_or, + ACTIONS(7327), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7353), 3, + ACTIONS(7339), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7355), 3, + ACTIONS(7341), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6969), 18, + ACTIONS(6520), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_PIPE_PIPE, anon_sym_SEMI, anon_sym___attribute__, anon_sym_QMARK, @@ -340010,32 +344478,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [51373] = 11, + [52020] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, - anon_sym_LPAREN2, - ACTIONS(6429), 1, - anon_sym_LBRACK, - ACTIONS(6431), 1, - anon_sym_DOT, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6439), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7341), 3, + ACTIONS(5720), 19, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6449), 15, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -340044,21 +344495,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6451), 27, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5722), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -340077,33 +344531,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [51451] = 12, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [52082] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, - anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(67), 1, + anon_sym_const, + ACTIONS(7048), 1, + anon_sym_AMP_AMP, + ACTIONS(7050), 1, + anon_sym_AMP, + ACTIONS(7063), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, - anon_sym_DOT, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, + ACTIONS(7071), 1, + anon_sym___asm, + ACTIONS(7075), 1, + anon_sym_noexcept, + ACTIONS(7077), 1, + anon_sym_throw, + ACTIONS(7299), 1, + anon_sym___attribute__, + ACTIONS(7301), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7393), 1, anon_sym_DASH_GT, - ACTIONS(6439), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7339), 2, + ACTIONS(7413), 1, + anon_sym_requires, + STATE(1680), 1, + sym_alignas_qualifier, + STATE(4936), 1, + sym__function_attributes_start, + STATE(5111), 1, + sym_ref_qualifier, + STATE(5988), 1, + sym_trailing_return_type, + STATE(6114), 1, + sym__function_attributes_end, + STATE(6870), 1, + sym_gnu_asm_expression, + ACTIONS(7069), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7085), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7304), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4041), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4265), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5507), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5965), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5407), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7046), 5, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_try, + ACTIONS(7297), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [52198] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5812), 19, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7341), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6449), 13, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -340112,21 +344640,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6451), 27, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5814), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -340145,57 +344676,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [51531] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5827), 1, - anon_sym_LPAREN2, - ACTIONS(6429), 1, - anon_sym_LBRACK, - ACTIONS(6431), 1, - anon_sym_DOT, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6439), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7339), 2, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [52260] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5753), 19, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7359), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7341), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6449), 11, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6451), 27, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5755), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -340214,72 +344735,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [51613] = 26, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [52322] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(7343), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7345), 1, - anon_sym_AMP_AMP, - ACTIONS(7347), 1, + ACTIONS(7333), 1, anon_sym_PIPE, - ACTIONS(7351), 1, + ACTIONS(7337), 1, anon_sym_AMP, - ACTIONS(7357), 1, + ACTIONS(7343), 1, anon_sym_GT_EQ, - ACTIONS(7361), 1, + ACTIONS(7347), 1, anon_sym_LT_EQ_GT, - ACTIONS(7363), 1, - anon_sym_or, - ACTIONS(7365), 1, - anon_sym_and, - ACTIONS(7367), 1, + ACTIONS(7353), 1, anon_sym_bitor, - ACTIONS(7369), 1, + ACTIONS(7355), 1, anon_sym_bitand, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6439), 2, + ACTIONS(6416), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7005), 2, - anon_sym___attribute, - anon_sym_EQ, - ACTIONS(7339), 2, + ACTIONS(6420), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7325), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7349), 2, + ACTIONS(7335), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(7359), 2, + ACTIONS(7345), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7341), 3, + ACTIONS(7327), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7353), 3, + ACTIONS(7339), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7355), 3, + ACTIONS(7341), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7007), 18, + ACTIONS(6518), 4, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + ACTIONS(6520), 20, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, anon_sym_QMARK, @@ -340296,77 +344819,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [51721] = 28, + [52422] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, - anon_sym_LPAREN2, - ACTIONS(6429), 1, - anon_sym_LBRACK, - ACTIONS(6431), 1, - anon_sym_DOT, - ACTIONS(6991), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7343), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7345), 1, - anon_sym_AMP_AMP, - ACTIONS(7347), 1, - anon_sym_PIPE, - ACTIONS(7351), 1, - anon_sym_AMP, - ACTIONS(7357), 1, - anon_sym_GT_EQ, - ACTIONS(7361), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7363), 1, - anon_sym_or, - ACTIONS(7365), 1, - anon_sym_and, - ACTIONS(7367), 1, - anon_sym_bitor, - ACTIONS(7369), 1, - anon_sym_bitand, - ACTIONS(7384), 1, - anon_sym_QMARK, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6439), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7011), 2, - anon_sym___attribute, - anon_sym_EQ, - ACTIONS(7339), 2, + ACTIONS(7422), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(7420), 2, + anon_sym_delete, + anon_sym_new, + ACTIONS(7418), 20, + anon_sym_BANG, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7349), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7359), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7341), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7353), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7355), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7013), 16, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_not, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DASH_GT, + ACTIONS(7416), 31, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, + anon_sym_TILDE, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -340380,16 +344869,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [51833] = 5, + anon_sym_compl, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_co_await, + anon_sym_DASH_GT_STAR, + anon_sym_LPAREN_RPAREN, + anon_sym_LBRACK_RBRACK, + [52488] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7396), 1, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(7394), 2, - anon_sym_delete, - anon_sym_new, - ACTIONS(7392), 20, - anon_sym_BANG, + ACTIONS(5738), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -340404,19 +344898,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_not, anon_sym_or, anon_sym_and, anon_sym_xor, + anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7390), 31, + ACTIONS(5740), 35, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_TILDE, + 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_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -340430,83 +344929,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_compl, anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_co_await, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - anon_sym_LPAREN_RPAREN, - anon_sym_LBRACK_RBRACK, - [51899] = 26, + [52550] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(7343), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7345), 1, - anon_sym_AMP_AMP, - ACTIONS(7347), 1, - anon_sym_PIPE, - ACTIONS(7351), 1, + ACTIONS(7337), 1, anon_sym_AMP, - ACTIONS(7357), 1, + ACTIONS(7343), 1, anon_sym_GT_EQ, - ACTIONS(7361), 1, + ACTIONS(7347), 1, anon_sym_LT_EQ_GT, - ACTIONS(7363), 1, - anon_sym_or, - ACTIONS(7365), 1, - anon_sym_and, - ACTIONS(7367), 1, - anon_sym_bitor, - ACTIONS(7369), 1, + ACTIONS(7355), 1, anon_sym_bitand, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6439), 2, + ACTIONS(6416), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7015), 2, - anon_sym___attribute, - anon_sym_EQ, - ACTIONS(7339), 2, + ACTIONS(6420), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7325), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7349), 2, + ACTIONS(7335), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(7359), 2, + ACTIONS(7345), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7341), 3, + ACTIONS(7327), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7353), 3, + ACTIONS(7339), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7355), 3, + ACTIONS(7341), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7017), 18, + ACTIONS(6518), 5, + anon_sym_PIPE, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + ACTIONS(6520), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, anon_sym_QMARK, @@ -340523,12 +345014,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [52007] = 4, + anon_sym_bitor, + [52646] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5454), 1, - anon_sym_COLON_COLON, - ACTIONS(5450), 20, + ACTIONS(5796), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -340538,25 +345028,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5452), 33, + anon_sym_DASH_GT, + ACTIONS(5798), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -340566,6 +345057,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -340579,75 +345071,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [52071] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(1918), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7398), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5890), 6, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(5888), 43, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_static, - anon_sym_EQ, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [52137] = 3, + anon_sym_DASH_GT_STAR, + [52708] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 19, + ACTIONS(5515), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -340667,7 +345097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5657), 35, + ACTIONS(5517), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -340703,45 +345133,81 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [52199] = 5, + [52770] = 30, ACTIONS(3), 1, sym_comment, - STATE(1918), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7398), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5900), 6, - anon_sym_AMP, + ACTIONS(43), 1, anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, + ACTIONS(67), 1, anon_sym_const, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7048), 1, + anon_sym_AMP_AMP, + ACTIONS(7050), 1, + anon_sym_AMP, + ACTIONS(7063), 1, + anon_sym_LBRACK, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(5898), 43, + ACTIONS(7075), 1, + anon_sym_noexcept, + ACTIONS(7077), 1, + anon_sym_throw, + ACTIONS(7299), 1, + anon_sym___attribute__, + ACTIONS(7424), 1, + anon_sym_DASH_GT, + ACTIONS(7429), 1, + anon_sym_requires, + STATE(1680), 1, + sym_alignas_qualifier, + STATE(4966), 1, + sym__function_attributes_start, + STATE(5085), 1, + sym_ref_qualifier, + STATE(6117), 1, + sym_trailing_return_type, + STATE(6208), 1, + sym__function_attributes_end, + STATE(6870), 1, + sym_gnu_asm_expression, + ACTIONS(7069), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7304), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7426), 2, + anon_sym_final, + anon_sym_override, + STATE(4041), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4265), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5507), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6017), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6125), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5381), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7046), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, anon_sym_LBRACE, - anon_sym_static, - anon_sym_EQ, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, + ACTIONS(7297), 12, + anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -340753,21 +345219,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [52265] = 3, + [52886] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5659), 19, + ACTIONS(5820), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -340787,7 +345242,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5661), 35, + ACTIONS(5822), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -340823,41 +345278,66 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [52327] = 3, + [52948] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(5677), 19, + ACTIONS(5845), 1, + anon_sym_LPAREN2, + ACTIONS(6414), 1, + anon_sym_LBRACK, + ACTIONS(6418), 1, + anon_sym_DOT, + ACTIONS(7337), 1, + anon_sym_AMP, + ACTIONS(7343), 1, + anon_sym_GT_EQ, + ACTIONS(7347), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7355), 1, + anon_sym_bitand, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + ACTIONS(6416), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6420), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7325), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7345), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7327), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7339), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7341), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(6518), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym___attribute, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5679), 35, + ACTIONS(6520), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -340872,20 +345352,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [52389] = 3, + [53042] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5685), 19, + ACTIONS(3941), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(7432), 2, + anon_sym_delete, + anon_sym_new, + ACTIONS(3937), 20, + anon_sym_BANG, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -340900,24 +345377,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_not, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5687), 35, - anon_sym_DOT_DOT_DOT, + ACTIONS(3935), 31, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -340931,104 +345403,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_sym_compl, anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, + anon_sym_co_await, anon_sym_DASH_GT_STAR, - [52451] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5827), 1, - anon_sym_LPAREN2, - ACTIONS(6429), 1, - anon_sym_LBRACK, - ACTIONS(6431), 1, - anon_sym_DOT, - ACTIONS(6991), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7343), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7345), 1, - anon_sym_AMP_AMP, - ACTIONS(7347), 1, - anon_sym_PIPE, - ACTIONS(7351), 1, - anon_sym_AMP, - ACTIONS(7357), 1, - anon_sym_GT_EQ, - ACTIONS(7361), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7363), 1, - anon_sym_or, - ACTIONS(7365), 1, - anon_sym_and, - ACTIONS(7367), 1, - anon_sym_bitor, - ACTIONS(7369), 1, - anon_sym_bitand, - ACTIONS(7384), 1, - anon_sym_QMARK, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6439), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7019), 2, - anon_sym___attribute, - anon_sym_EQ, - ACTIONS(7339), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7349), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7359), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7341), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7353), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7355), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7021), 16, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - [52563] = 3, + anon_sym_LPAREN_RPAREN, + anon_sym_LBRACK_RBRACK, + [53108] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5692), 19, + ACTIONS(5804), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -341048,7 +345437,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5694), 35, + ACTIONS(5806), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -341084,96 +345473,18 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [52625] = 30, + [53170] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7042), 1, - anon_sym_AMP_AMP, - ACTIONS(7044), 1, - anon_sym_AMP, - ACTIONS(7057), 1, - anon_sym_LBRACK, - ACTIONS(7065), 1, - anon_sym___asm, - ACTIONS(7072), 1, - anon_sym_noexcept, - ACTIONS(7074), 1, - anon_sym_throw, - ACTIONS(7147), 1, - anon_sym___attribute__, - ACTIONS(7330), 1, - anon_sym_DASH_GT, - ACTIONS(7400), 1, - anon_sym_requires, - STATE(1658), 1, - sym_alignas_qualifier, - STATE(4857), 1, - sym__function_attributes_start, - STATE(4993), 1, - sym_ref_qualifier, - STATE(5906), 1, - sym_trailing_return_type, - STATE(6130), 1, - sym__function_attributes_end, - STATE(6766), 1, - sym_gnu_asm_expression, - ACTIONS(7063), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7152), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(7335), 2, - anon_sym_final, - anon_sym_override, - STATE(3982), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4184), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5458), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5984), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5304), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7040), 5, - anon_sym_LPAREN2, - anon_sym_SEMI, + ACTIONS(4187), 1, + anon_sym_COLON_COLON, + ACTIONS(4932), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - ACTIONS(7145), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [52741] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5677), 19, + ACTIONS(5474), 1, + anon_sym_LT, + STATE(3213), 1, + sym_template_argument_list, + ACTIONS(4934), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -341184,7 +345495,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, @@ -341193,7 +345503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5679), 35, + ACTIONS(4927), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -341203,7 +345513,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -341226,44 +345535,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, anon_sym_DASH_GT_STAR, - [52803] = 3, + [53240] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5677), 19, + ACTIONS(5845), 1, + anon_sym_LPAREN2, + ACTIONS(6414), 1, + anon_sym_LBRACK, + ACTIONS(6418), 1, + anon_sym_DOT, + ACTIONS(6981), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7329), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7331), 1, + anon_sym_AMP_AMP, + ACTIONS(7333), 1, + anon_sym_PIPE, + ACTIONS(7337), 1, + anon_sym_AMP, + ACTIONS(7343), 1, + anon_sym_GT_EQ, + ACTIONS(7347), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7349), 1, + anon_sym_or, + ACTIONS(7351), 1, + anon_sym_and, + ACTIONS(7353), 1, + anon_sym_bitor, + ACTIONS(7355), 1, + anon_sym_bitand, + ACTIONS(7385), 1, + anon_sym_QMARK, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + ACTIONS(6416), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6420), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6997), 2, + anon_sym___attribute, + anon_sym_EQ, + ACTIONS(7325), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7335), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7345), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7327), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7339), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7341), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + ACTIONS(6999), 16, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + 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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [53352] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5845), 1, + anon_sym_LPAREN2, + ACTIONS(6414), 1, + anon_sym_LBRACK, + ACTIONS(6418), 1, + anon_sym_DOT, + ACTIONS(7343), 1, + anon_sym_GT_EQ, + ACTIONS(7347), 1, + anon_sym_LT_EQ_GT, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + ACTIONS(6416), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6420), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7325), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7345), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7327), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7341), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6518), 8, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym___attribute, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5679), 35, + ACTIONS(6520), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -341278,53 +345689,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, + [53440] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5845), 1, + anon_sym_LPAREN2, + ACTIONS(6414), 1, + anon_sym_LBRACK, + ACTIONS(6418), 1, + anon_sym_DOT, + ACTIONS(7347), 1, + anon_sym_LT_EQ_GT, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + ACTIONS(6416), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(6420), 2, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [52865] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3925), 1, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(7402), 2, - anon_sym_delete, - anon_sym_new, - ACTIONS(3903), 20, - anon_sym_BANG, + anon_sym_DASH_GT, + ACTIONS(7325), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7345), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7327), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(6518), 11, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym___attribute, anon_sym_EQ, - anon_sym_not, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DASH_GT, - ACTIONS(3901), 31, + ACTIONS(6520), 26, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_TILDE, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -341338,56 +345759,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_compl, - anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_co_await, - anon_sym_DASH_GT_STAR, - anon_sym_LPAREN_RPAREN, - anon_sym_LBRACK_RBRACK, - [52931] = 5, + [53524] = 30, ACTIONS(3), 1, sym_comment, - STATE(3071), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7404), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5938), 6, - anon_sym_AMP, + ACTIONS(43), 1, anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, + ACTIONS(67), 1, anon_sym_const, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7048), 1, + anon_sym_AMP_AMP, + ACTIONS(7050), 1, + anon_sym_AMP, + ACTIONS(7063), 1, + anon_sym_LBRACK, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(5936), 43, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(7075), 1, + anon_sym_noexcept, + ACTIONS(7077), 1, + anon_sym_throw, + ACTIONS(7299), 1, + anon_sym___attribute__, + ACTIONS(7357), 1, + anon_sym_DASH_GT, + ACTIONS(7434), 1, + anon_sym_requires, + STATE(1680), 1, + sym_alignas_qualifier, + STATE(4909), 1, + sym__function_attributes_start, + STATE(5055), 1, + sym_ref_qualifier, + STATE(6012), 1, + sym_trailing_return_type, + STATE(6250), 1, + sym__function_attributes_end, + STATE(6870), 1, + sym_gnu_asm_expression, + ACTIONS(7069), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7304), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7426), 2, + anon_sym_final, + anon_sym_override, + STATE(4041), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4265), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5507), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6017), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6125), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5408), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7046), 5, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, anon_sym_LBRACE, - anon_sym_static, anon_sym_EQ, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, + anon_sym_try, + ACTIONS(7297), 12, + anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -341399,56 +345848,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [52997] = 5, + [53640] = 3, ACTIONS(3), 1, sym_comment, - STATE(3072), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7406), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5932), 6, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(5930), 43, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3961), 6, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3959), 48, + anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, + anon_sym___attribute, + anon_sym_using, anon_sym___declspec, - anon_sym_LBRACE, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, anon_sym_static, - anon_sym_EQ, 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, @@ -341462,87 +345895,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [53063] = 6, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + [53702] = 3, ACTIONS(3), 1, sym_comment, - STATE(2624), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(3623), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(3627), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(5912), 18, - aux_sym_preproc_elif_token1, + ACTIONS(5693), 19, 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_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - sym_literal_suffix, - ACTIONS(5914), 24, + anon_sym_DASH_GT, + ACTIONS(5695), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [53131] = 6, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [53764] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6789), 1, - anon_sym___attribute__, ACTIONS(6791), 1, + anon_sym___attribute__, + ACTIONS(6793), 1, anon_sym___attribute, - STATE(3534), 1, + STATE(3443), 1, sym_attribute_specifier, - ACTIONS(6121), 16, + ACTIONS(6161), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -341559,7 +345992,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6123), 35, + ACTIONS(6163), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -341595,200 +346028,21 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [53199] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3949), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3947), 48, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_using, - 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_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - [53261] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6971), 1, - anon_sym_LBRACE, - ACTIONS(7305), 1, - anon_sym_COLON, - STATE(2469), 1, - sym_attribute_specifier, - STATE(2775), 1, - sym__enum_base_clause, - STATE(2882), 1, - sym_enumerator_list, - ACTIONS(5468), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(6344), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(6342), 40, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - 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_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [53335] = 4, + [53832] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7408), 1, - anon_sym_typedef, - ACTIONS(2563), 6, + ACTIONS(7363), 1, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, + ACTIONS(7365), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2573), 47, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + ACTIONS(7367), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - [53399] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7416), 1, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(7414), 2, - anon_sym_delete, - anon_sym_new, - ACTIONS(7412), 20, - anon_sym_BANG, + STATE(3419), 1, + sym_parameter_list, + STATE(3239), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6112), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -341798,57 +346052,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_not, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DASH_GT, - ACTIONS(7410), 31, + anon_sym_DOT, + ACTIONS(6114), 28, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_TILDE, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + 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_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_compl, anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_co_await, - anon_sym_DASH_GT_STAR, - anon_sym_LPAREN_RPAREN, - anon_sym_LBRACK_RBRACK, - [53465] = 5, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [53904] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7418), 1, - anon_sym_LBRACK_LBRACK, - STATE(3065), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(2051), 20, + ACTIONS(2457), 1, + anon_sym_LBRACE, + ACTIONS(6886), 1, + anon_sym_LPAREN2, + STATE(3448), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6262), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -341862,23 +346116,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6235), 31, + ACTIONS(6264), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -341901,19 +346154,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [53531] = 4, + [53972] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7421), 1, - anon_sym_friend, - ACTIONS(2563), 6, + ACTIONS(7437), 1, + anon_sym_namespace, + ACTIONS(6868), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2573), 47, + ACTIONS(6866), 47, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -341961,79 +346214,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_typename, anon_sym_template, anon_sym_operator, - [53595] = 5, + [54036] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7429), 1, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(7427), 2, - anon_sym_delete, - anon_sym_new, - ACTIONS(7425), 20, - anon_sym_BANG, + STATE(2657), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(3631), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(3635), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(5915), 18, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_not, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, - anon_sym_DASH_GT, - ACTIONS(7423), 31, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + sym_literal_suffix, + ACTIONS(5917), 24, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_TILDE, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_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_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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_compl, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_co_await, - anon_sym_DASH_GT_STAR, - anon_sym_LPAREN_RPAREN, - anon_sym_LBRACK_RBRACK, - [53661] = 7, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [54104] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4167), 1, - anon_sym_COLON_COLON, - ACTIONS(4970), 1, - anon_sym_LBRACE, - ACTIONS(5486), 1, - anon_sym_LT, - STATE(3129), 1, - sym_template_argument_list, - ACTIONS(4972), 18, + ACTIONS(5689), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -342044,6 +346290,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, @@ -342052,7 +346299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4965), 32, + ACTIONS(5691), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -342062,6 +346309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -342084,83 +346332,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [53731] = 5, + [54166] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3933), 1, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(7431), 2, - anon_sym_delete, - anon_sym_new, - ACTIONS(3929), 20, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + STATE(1974), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7387), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5931), 6, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_not, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DASH_GT, - ACTIONS(3927), 31, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(5929), 43, anon_sym_COMMA, - anon_sym_TILDE, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_compl, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_co_await, - anon_sym_DASH_GT_STAR, - anon_sym_LPAREN_RPAREN, - anon_sym_LBRACK_RBRACK, - [53797] = 8, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [54232] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7433), 1, + ACTIONS(7363), 1, anon_sym_LPAREN2, - ACTIONS(7435), 1, + ACTIONS(7365), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7437), 1, + ACTIONS(7367), 1, anon_sym_LBRACK, - STATE(3429), 1, + STATE(3419), 1, sym_parameter_list, - STATE(3152), 2, + STATE(3239), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(6066), 20, + ACTIONS(6145), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -342181,7 +346431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6068), 28, + ACTIONS(6147), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -342210,45 +346460,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [53869] = 5, + [54304] = 4, ACTIONS(3), 1, sym_comment, - STATE(1918), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7398), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5944), 6, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(5942), 43, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(7439), 1, + anon_sym_friend, + ACTIONS(2559), 6, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2569), 47, + anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, + anon_sym___attribute, anon_sym___declspec, - anon_sym_LBRACE, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, anon_sym_static, - anon_sym_EQ, 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, @@ -342262,54 +346508,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [53935] = 5, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + [54368] = 4, ACTIONS(3), 1, sym_comment, - STATE(1918), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7398), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5896), 6, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(5894), 43, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(7441), 1, + anon_sym_typedef, + ACTIONS(2559), 6, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2569), 47, + anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, + anon_sym___attribute, anon_sym___declspec, - anon_sym_LBRACE, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, anon_sym_static, - anon_sym_EQ, 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, @@ -342323,54 +346568,179 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + [54432] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(67), 1, + anon_sym_const, + ACTIONS(7048), 1, + anon_sym_AMP_AMP, + ACTIONS(7050), 1, + anon_sym_AMP, + ACTIONS(7063), 1, + anon_sym_LBRACK, + ACTIONS(7075), 1, + anon_sym_noexcept, + ACTIONS(7077), 1, + anon_sym_throw, + ACTIONS(7299), 1, + anon_sym___attribute__, + ACTIONS(7301), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7309), 1, + anon_sym___asm, + ACTIONS(7395), 1, + anon_sym_requires, + ACTIONS(7443), 1, + anon_sym_DASH_GT, + STATE(1680), 1, + sym_alignas_qualifier, + STATE(4941), 1, + sym__function_attributes_start, + STATE(5100), 1, + sym_ref_qualifier, + STATE(5882), 1, + sym__function_attributes_end, + STATE(6014), 1, + sym_trailing_return_type, + STATE(6870), 1, + sym_gnu_asm_expression, + ACTIONS(6037), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, + ACTIONS(7304), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7306), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(4041), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4265), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5507), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5965), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5393), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7046), 5, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_try, - anon_sym_requires, - [54001] = 5, + ACTIONS(7297), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [54548] = 30, ACTIONS(3), 1, sym_comment, - STATE(3084), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7439), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5904), 6, + ACTIONS(67), 1, + anon_sym_const, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7048), 1, + anon_sym_AMP_AMP, + ACTIONS(7050), 1, anon_sym_AMP, - anon_sym___attribute, + ACTIONS(7063), 1, anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(5902), 43, + ACTIONS(7075), 1, + anon_sym_noexcept, + ACTIONS(7077), 1, + anon_sym_throw, + ACTIONS(7361), 1, + anon_sym_requires, + ACTIONS(7369), 1, + anon_sym___attribute__, + ACTIONS(7372), 1, + anon_sym___attribute, + ACTIONS(7445), 1, + anon_sym_DASH_GT, + STATE(1680), 1, + sym_alignas_qualifier, + STATE(4942), 1, + sym__function_attributes_start, + STATE(5104), 1, + sym_ref_qualifier, + STATE(5985), 1, + sym_trailing_return_type, + STATE(6082), 1, + sym__function_attributes_end, + STATE(6870), 1, + sym_gnu_asm_expression, + ACTIONS(7069), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7304), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7359), 2, + anon_sym_final, + anon_sym_override, + STATE(4041), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4265), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5507), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6017), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6125), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5402), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7046), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_static, anon_sym_EQ, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, + anon_sym_GT2, + ACTIONS(7297), 12, + anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -342382,56 +346752,167 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + [54664] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(67), 1, + anon_sym_const, + ACTIONS(7048), 1, + anon_sym_AMP_AMP, + ACTIONS(7050), 1, + anon_sym_AMP, + ACTIONS(7063), 1, + anon_sym_LBRACK, + ACTIONS(7075), 1, + anon_sym_noexcept, + ACTIONS(7077), 1, + anon_sym_throw, + ACTIONS(7299), 1, + anon_sym___attribute__, + ACTIONS(7301), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7309), 1, + anon_sym___asm, + ACTIONS(7413), 1, + anon_sym_requires, + ACTIONS(7443), 1, + anon_sym_DASH_GT, + STATE(1680), 1, + sym_alignas_qualifier, + STATE(4944), 1, + sym__function_attributes_start, + STATE(5046), 1, + sym_ref_qualifier, + STATE(5886), 1, + sym__function_attributes_end, + STATE(5988), 1, + sym_trailing_return_type, + STATE(6870), 1, + sym_gnu_asm_expression, + ACTIONS(7085), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7304), 2, anon_sym_alignas, anon_sym__Alignas, + ACTIONS(7306), 2, anon_sym_asm, anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, + STATE(4041), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4265), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5507), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5965), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5385), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7046), 5, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_try, - anon_sym_requires, - [54067] = 5, + ACTIONS(7297), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [54780] = 30, ACTIONS(3), 1, sym_comment, - STATE(3085), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7441), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5922), 6, + ACTIONS(67), 1, + anon_sym_const, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7048), 1, + anon_sym_AMP_AMP, + ACTIONS(7050), 1, anon_sym_AMP, - anon_sym___attribute, + ACTIONS(7063), 1, anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(5920), 43, + ACTIONS(7075), 1, + anon_sym_noexcept, + ACTIONS(7077), 1, + anon_sym_throw, + ACTIONS(7369), 1, + anon_sym___attribute__, + ACTIONS(7372), 1, + anon_sym___attribute, + ACTIONS(7434), 1, + anon_sym_requires, + ACTIONS(7445), 1, + anon_sym_DASH_GT, + STATE(1680), 1, + sym_alignas_qualifier, + STATE(4945), 1, + sym__function_attributes_start, + STATE(5060), 1, + sym_ref_qualifier, + STATE(6012), 1, + sym_trailing_return_type, + STATE(6066), 1, + sym__function_attributes_end, + STATE(6870), 1, + sym_gnu_asm_expression, + ACTIONS(7069), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7304), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7426), 2, + anon_sym_final, + anon_sym_override, + STATE(4041), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4265), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5507), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6017), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6125), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5389), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7046), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_static, anon_sym_EQ, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, + anon_sym_GT2, + ACTIONS(7297), 12, + anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -342443,56 +346924,167 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + [54896] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(67), 1, + anon_sym_const, + ACTIONS(7048), 1, + anon_sym_AMP_AMP, + ACTIONS(7050), 1, + anon_sym_AMP, + ACTIONS(7063), 1, + anon_sym_LBRACK, + ACTIONS(7071), 1, + anon_sym___asm, + ACTIONS(7075), 1, + anon_sym_noexcept, + ACTIONS(7077), 1, + anon_sym_throw, + ACTIONS(7301), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7320), 1, + anon_sym_requires, + ACTIONS(7369), 1, + anon_sym___attribute__, + ACTIONS(7372), 1, + anon_sym___attribute, + ACTIONS(7375), 1, + anon_sym_DASH_GT, + STATE(1680), 1, + sym_alignas_qualifier, + STATE(4910), 1, + sym__function_attributes_start, + STATE(5052), 1, + sym_ref_qualifier, + STATE(5527), 1, + sym_trailing_return_type, + STATE(5999), 1, + sym__function_attributes_end, + STATE(6870), 1, + sym_gnu_asm_expression, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - sym_auto, - anon_sym_decltype, + ACTIONS(7085), 2, anon_sym_final, anon_sym_override, + ACTIONS(7304), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4041), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4265), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5507), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5965), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5404), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7046), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_EQ, anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [54133] = 5, + ACTIONS(7297), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [55012] = 30, ACTIONS(3), 1, sym_comment, - STATE(1918), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7398), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5928), 6, - anon_sym_AMP, + ACTIONS(43), 1, anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, + ACTIONS(67), 1, anon_sym_const, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7048), 1, + anon_sym_AMP_AMP, + ACTIONS(7050), 1, + anon_sym_AMP, + ACTIONS(7063), 1, + anon_sym_LBRACK, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(5926), 43, + ACTIONS(7075), 1, + anon_sym_noexcept, + ACTIONS(7077), 1, + anon_sym_throw, + ACTIONS(7299), 1, + anon_sym___attribute__, + ACTIONS(7424), 1, + anon_sym_DASH_GT, + ACTIONS(7447), 1, + anon_sym_requires, + STATE(1680), 1, + sym_alignas_qualifier, + STATE(4927), 1, + sym__function_attributes_start, + STATE(5069), 1, + sym_ref_qualifier, + STATE(6126), 1, + sym_trailing_return_type, + STATE(6245), 1, + sym__function_attributes_end, + STATE(6870), 1, + sym_gnu_asm_expression, + ACTIONS(7069), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7304), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7359), 2, + anon_sym_final, + anon_sym_override, + STATE(4041), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4265), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5507), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6017), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6125), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5411), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7046), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, anon_sym_LBRACE, - anon_sym_static, - anon_sym_EQ, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, + ACTIONS(7297), 12, + anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -342504,28 +347096,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [54199] = 6, + [55128] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, - anon_sym_LBRACE, - ACTIONS(6864), 1, - anon_sym_LPAREN2, - STATE(3520), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6263), 19, + ACTIONS(5804), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -342545,15 +347119,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6265), 31, + ACTIONS(5806), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -342576,22 +347152,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [54267] = 8, + [55190] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7433), 1, - anon_sym_LPAREN2, - ACTIONS(7435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7437), 1, - anon_sym_LBRACK, - STATE(3429), 1, - sym_parameter_list, - STATE(3152), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6133), 20, + ACTIONS(5666), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -342601,24 +347168,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6135), 28, + anon_sym_DASH_GT, + ACTIONS(5668), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -342626,6 +347197,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -342639,26 +347211,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [54339] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [55252] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3953), 6, + ACTIONS(7449), 1, + anon_sym_namespace, + ACTIONS(6868), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(3951), 48, + ACTIONS(6866), 47, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, - anon_sym_using, anon_sym___declspec, anon_sym___based, anon_sym_signed, @@ -342700,16 +347274,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_typename, anon_sym_template, anon_sym_operator, - [54401] = 6, + [55316] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6789), 1, + ACTIONS(2623), 1, + anon_sym_LBRACE, + ACTIONS(7451), 1, + anon_sym_LPAREN2, + STATE(2677), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3409), 1, + sym_argument_list, + STATE(3904), 1, + sym_initializer_list, + ACTIONS(6777), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5517), 9, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + ACTIONS(5515), 36, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, anon_sym___attribute__, - ACTIONS(6791), 1, anon_sym___attribute, - STATE(3488), 1, - sym_attribute_specifier, - ACTIONS(6125), 16, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [55390] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5780), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -342724,9 +347357,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6127), 35, + ACTIONS(5782), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -342749,11 +347385,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -342762,140 +347398,19 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [54469] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(3045), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7315), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5750), 6, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(5752), 43, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_static, - anon_sym_EQ, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [54535] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7443), 1, - anon_sym_namespace, - ACTIONS(6844), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(6842), 47, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - [54599] = 4, + [55452] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7445), 1, + ACTIONS(7454), 1, anon_sym_friend, - ACTIONS(2563), 6, + ACTIONS(2559), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2573), 47, + ACTIONS(2569), 47, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -342943,21 +347458,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_typename, anon_sym_template, anon_sym_operator, - [54663] = 8, + [55516] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7433), 1, - anon_sym_LPAREN2, - ACTIONS(7435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7437), 1, - anon_sym_LBRACK, - STATE(3429), 1, - sym_parameter_list, - STATE(3152), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6164), 20, + ACTIONS(5808), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -342967,24 +347471,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6166), 28, + anon_sym_DASH_GT, + ACTIONS(5810), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -342992,6 +347500,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -343005,139 +347514,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [54735] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(1918), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7398), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5910), 6, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(5908), 43, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_static, - anon_sym_EQ, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [54801] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(1918), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7398), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5918), 6, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(5916), 43, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_static, - anon_sym_EQ, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [54867] = 5, + anon_sym_DASH_GT_STAR, + [55578] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7093), 1, + ACTIONS(7456), 1, anon_sym_LBRACK_LBRACK, - STATE(3065), 2, + STATE(3121), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(6249), 20, + ACTIONS(2043), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -343158,7 +347546,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6251), 31, + ACTIONS(6273), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -343190,167 +347578,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [54933] = 30, + [55644] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7042), 1, - anon_sym_AMP_AMP, - ACTIONS(7044), 1, + ACTIONS(7465), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(7463), 2, + anon_sym_delete, + anon_sym_new, + ACTIONS(7461), 20, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(7057), 1, - anon_sym_LBRACK, - ACTIONS(7065), 1, - anon_sym___asm, - ACTIONS(7072), 1, - anon_sym_noexcept, - ACTIONS(7074), 1, - anon_sym_throw, - ACTIONS(7307), 1, - anon_sym___attribute__, - ACTIONS(7310), 1, - anon_sym___attribute, - ACTIONS(7400), 1, - anon_sym_requires, - ACTIONS(7447), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_not, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DASH_GT, - STATE(1658), 1, - sym_alignas_qualifier, - STATE(4896), 1, - sym__function_attributes_start, - STATE(5034), 1, - sym_ref_qualifier, - STATE(5906), 1, - sym_trailing_return_type, - STATE(5974), 1, - sym__function_attributes_end, - STATE(6766), 1, - sym_gnu_asm_expression, - ACTIONS(7063), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7152), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(7335), 2, - anon_sym_final, - anon_sym_override, - STATE(3982), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4184), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5458), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5984), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5314), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7040), 5, + ACTIONS(7459), 31, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(7145), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [55049] = 30, + anon_sym_TILDE, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + 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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_compl, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_co_await, + anon_sym_DASH_GT_STAR, + anon_sym_LPAREN_RPAREN, + anon_sym_LBRACK_RBRACK, + [55710] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7042), 1, + ACTIONS(7467), 1, + anon_sym_namespace, + ACTIONS(6868), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(7044), 1, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(6866), 47, anon_sym_AMP, - ACTIONS(7057), 1, - anon_sym_LBRACK, - ACTIONS(7065), 1, - anon_sym___asm, - ACTIONS(7072), 1, - anon_sym_noexcept, - ACTIONS(7074), 1, - anon_sym_throw, - ACTIONS(7307), 1, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, anon_sym___attribute__, - ACTIONS(7310), 1, anon_sym___attribute, - ACTIONS(7332), 1, - anon_sym_requires, - ACTIONS(7447), 1, - anon_sym_DASH_GT, - STATE(1658), 1, - sym_alignas_qualifier, - STATE(4843), 1, - sym__function_attributes_start, - STATE(5027), 1, - sym_ref_qualifier, - STATE(5929), 1, - sym_trailing_return_type, - STATE(5942), 1, - sym__function_attributes_end, - STATE(6766), 1, - sym_gnu_asm_expression, - ACTIONS(7063), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7152), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(7324), 2, - anon_sym_final, - anon_sym_override, - STATE(3982), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4184), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5458), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5984), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5317), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7040), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(7145), 12, - anon_sym___extension__, + 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_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, @@ -343362,19 +347685,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [55165] = 4, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + [55774] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7449), 1, - anon_sym_namespace, - ACTIONS(6844), 6, + ACTIONS(7469), 1, + anon_sym_friend, + ACTIONS(2559), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(6842), 47, + ACTIONS(2569), 47, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -343422,17 +347759,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_typename, anon_sym_template, anon_sym_operator, - [55229] = 6, + [55838] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, - anon_sym_LBRACE, - ACTIONS(6864), 1, - anon_sym_LPAREN2, - STATE(3467), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6172), 19, + ACTIONS(6791), 1, + anon_sym___attribute__, + ACTIONS(6793), 1, + anon_sym___attribute, + STATE(3397), 1, + sym_attribute_specifier, + ACTIONS(6157), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -343447,20 +347783,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6174), 31, + ACTIONS(6159), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -343473,52 +347808,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [55297] = 3, + [55906] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5641), 19, + ACTIONS(5845), 1, + anon_sym_LPAREN2, + ACTIONS(6414), 1, + anon_sym_LBRACK, + ACTIONS(6418), 1, + anon_sym_DOT, + ACTIONS(7329), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7331), 1, + anon_sym_AMP_AMP, + ACTIONS(7333), 1, + anon_sym_PIPE, + ACTIONS(7337), 1, + anon_sym_AMP, + ACTIONS(7343), 1, + anon_sym_GT_EQ, + ACTIONS(7347), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7349), 1, + anon_sym_or, + ACTIONS(7351), 1, + anon_sym_and, + ACTIONS(7353), 1, + anon_sym_bitor, + ACTIONS(7355), 1, + anon_sym_bitand, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + ACTIONS(6416), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6420), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6947), 2, + anon_sym___attribute, + anon_sym_EQ, + ACTIONS(7325), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7335), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7345), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7327), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7339), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7341), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5643), 35, + ACTIONS(6949), 18, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -343533,29 +347903,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [55359] = 4, + [56014] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7451), 1, + ACTIONS(7471), 1, anon_sym_friend, - ACTIONS(2563), 6, + ACTIONS(2559), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2573), 47, + ACTIONS(2569), 47, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -343603,19 +347963,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_typename, anon_sym_template, anon_sym_operator, - [55423] = 4, + [56078] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7453), 1, - anon_sym_namespace, - ACTIONS(6844), 6, + ACTIONS(7473), 1, + anon_sym_friend, + ACTIONS(2559), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(6842), 47, + ACTIONS(2569), 47, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -343663,13 +348023,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_typename, anon_sym_template, anon_sym_operator, - [55487] = 4, + [56142] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5003), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(5005), 20, + ACTIONS(7093), 1, + anon_sym_LBRACK_LBRACK, + STATE(3121), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6244), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -343690,7 +348052,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4998), 32, + ACTIONS(6246), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -343700,7 +348062,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -343723,19 +348084,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [55551] = 4, + [56208] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6868), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6866), 42, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [56270] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7455), 1, + ACTIONS(7475), 1, anon_sym_friend, - ACTIONS(2563), 6, + ACTIONS(2559), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2573), 47, + ACTIONS(2569), 47, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -343783,75 +348203,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_typename, anon_sym_template, anon_sym_operator, - [55615] = 3, + [56334] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7459), 25, + ACTIONS(2457), 1, + anon_sym_LBRACE, + ACTIONS(6886), 1, anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK, - 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, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(7457), 29, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym___extension__, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - [55677] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6789), 1, - anon_sym___attribute__, - ACTIONS(6791), 1, - anon_sym___attribute, - STATE(3400), 1, - sym_attribute_specifier, - ACTIONS(6129), 16, + STATE(3423), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6309), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -343866,19 +348228,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6131), 35, + ACTIONS(6311), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -343891,32 +348254,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, anon_sym_DASH_GT_STAR, - [55745] = 4, + [56402] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7461), 1, - anon_sym_friend, - ACTIONS(2563), 6, + ACTIONS(4052), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4057), 1, + anon_sym_using, + ACTIONS(4059), 5, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2573), 47, + ACTIONS(4061), 47, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -343964,81 +348326,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_typename, anon_sym_template, anon_sym_operator, - [55809] = 4, + [56468] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7463), 1, - anon_sym_friend, - ACTIONS(2563), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(6939), 1, + sym_auto, + ACTIONS(6941), 1, + anon_sym_decltype, + STATE(3235), 1, + sym_decltype_auto, + ACTIONS(5533), 20, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2573), 47, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5535), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - [55873] = 8, + 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_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [56536] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7433), 1, + ACTIONS(7363), 1, anon_sym_LPAREN2, - ACTIONS(7435), 1, + ACTIONS(7365), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7437), 1, + ACTIONS(7367), 1, anon_sym_LBRACK, - STATE(3429), 1, + STATE(3419), 1, sym_parameter_list, - STATE(3152), 2, + STATE(3239), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(6100), 20, + ACTIONS(6090), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -344059,7 +348423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6102), 28, + ACTIONS(6092), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -344088,19 +348452,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [55945] = 4, + [56608] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7479), 25, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK, + 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, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(7477), 29, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym___extension__, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + [56670] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7465), 1, - anon_sym_friend, - ACTIONS(2563), 6, + ACTIONS(7481), 1, + anon_sym_typedef, + ACTIONS(2559), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2573), 47, + ACTIONS(2569), 47, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -344148,78 +348571,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_typename, anon_sym_template, anon_sym_operator, - [56009] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7433), 1, - anon_sym_LPAREN2, - ACTIONS(7435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7437), 1, - anon_sym_LBRACK, - STATE(3429), 1, - sym_parameter_list, - STATE(3152), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6038), 20, - 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_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(6040), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [56081] = 5, + [56734] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5454), 1, - anon_sym_COLON_COLON, - ACTIONS(5627), 1, - anon_sym_LBRACE, - ACTIONS(5452), 10, + ACTIONS(5517), 12, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -344228,9 +348583,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_EQ, - ACTIONS(5450), 42, + anon_sym_GT2, + ACTIONS(5515), 42, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -344273,17 +348630,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [56147] = 6, + [56796] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2457), 1, anon_sym_LBRACE, - ACTIONS(6864), 1, + ACTIONS(6886), 1, anon_sym_LPAREN2, - STATE(3391), 2, + STATE(3440), 2, sym_argument_list, sym_initializer_list, - ACTIONS(6188), 19, + ACTIONS(6283), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -344303,7 +348660,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6190), 31, + ACTIONS(6285), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -344335,19 +348692,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [56215] = 4, + [56864] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7467), 1, - anon_sym_typedef, - ACTIONS(2563), 6, + ACTIONS(4187), 1, + anon_sym_COLON_COLON, + ACTIONS(7483), 1, + anon_sym_LT, + STATE(2660), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2756), 1, + sym_template_argument_list, + ACTIONS(4194), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4172), 10, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2573), 47, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4164), 36, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -344356,10 +348728,6 @@ static const uint16_t ts_small_parse_table[] = { 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_register, @@ -344383,28 +348751,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_explicit, - anon_sym_typename, anon_sym_template, anon_sym_operator, - [56279] = 6, + [56936] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(1974), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7387), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5980), 6, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(5978), 43, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [57002] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6789), 1, + STATE(1974), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7387), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5988), 6, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(5986), 43, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [57068] = 6, + ACTIONS(3), 1, + sym_comment, ACTIONS(6791), 1, + anon_sym___attribute__, + ACTIONS(6793), 1, anon_sym___attribute, - STATE(3445), 1, + STATE(3450), 1, sym_attribute_specifier, - ACTIONS(6151), 16, + ACTIONS(6206), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -344421,7 +348904,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6153), 35, + ACTIONS(6208), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -344457,16 +348940,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [56347] = 6, + [57136] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6789), 1, - anon_sym___attribute__, - ACTIONS(6791), 1, - anon_sym___attribute, - STATE(3404), 1, - sym_attribute_specifier, - ACTIONS(6155), 16, + ACTIONS(5681), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -344481,9 +348958,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6157), 35, + ACTIONS(5683), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -344506,11 +348986,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -344519,17 +348999,16 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [56415] = 6, + [57198] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, - anon_sym_LBRACE, - ACTIONS(6864), 1, - anon_sym_LPAREN2, - STATE(3466), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6204), 19, + ACTIONS(6791), 1, + anon_sym___attribute__, + ACTIONS(6793), 1, + anon_sym___attribute, + STATE(3462), 1, + sym_attribute_specifier, + ACTIONS(6210), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -344544,20 +349023,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6206), 31, + ACTIONS(6212), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -344570,59 +349048,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [56483] = 4, + [57266] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5627), 1, - anon_sym_LBRACE, - ACTIONS(5452), 11, - anon_sym_DOT_DOT_DOT, + STATE(3066), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7485), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5935), 6, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(5933), 43, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_COLON_COLON, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, anon_sym_EQ, - ACTIONS(5450), 42, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [57332] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3067), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7487), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5887), 6, anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(5885), 43, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, anon_sym___attribute__, - anon_sym___attribute, + anon_sym_LBRACK_LBRACK, 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_LBRACE, anon_sym_static, + anon_sym_EQ, 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, @@ -344636,69 +349174,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_identifier, + anon_sym_asm, + anon_sym___asm__, sym_auto, anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [56547] = 19, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [57398] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6864), 1, - anon_sym_LPAREN2, - ACTIONS(7223), 1, - anon_sym_LBRACK, - ACTIONS(7251), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7473), 1, - anon_sym_AMP, - ACTIONS(7479), 1, - anon_sym_GT_EQ, - ACTIONS(7483), 1, - anon_sym_bitand, - ACTIONS(7485), 1, - anon_sym_DOT_STAR, - STATE(3515), 1, - sym_argument_list, - STATE(3516), 1, - sym_subscript_argument_list, - ACTIONS(7265), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7267), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7469), 2, + ACTIONS(6791), 1, + anon_sym___attribute__, + ACTIONS(6793), 1, + anon_sym___attribute, + STATE(3470), 1, + sym_attribute_specifier, + ACTIONS(6104), 16, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7481), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7471), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7475), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7477), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6449), 6, - anon_sym_PIPE, - anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - ACTIONS(6451), 21, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6106), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -344710,15 +349232,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [56640] = 3, + [57466] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(1974), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7387), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5893), 6, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(5891), 43, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [57532] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5699), 20, + ACTIONS(6791), 1, + anon_sym___attribute__, + ACTIONS(6793), 1, + anon_sym___attribute, + STATE(3474), 1, + sym_attribute_specifier, + ACTIONS(6108), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -344728,25 +349325,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, - ACTIONS(5701), 33, + anon_sym_DASH_GT, + ACTIONS(6110), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -344756,92 +349351,141 @@ static const uint16_t ts_small_parse_table[] = { 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [56701] = 28, + anon_sym_DASH_GT_STAR, + [57600] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6864), 1, + ACTIONS(7489), 1, + anon_sym_typedef, + ACTIONS(2559), 6, anon_sym_LPAREN2, - ACTIONS(7011), 1, - anon_sym_EQ, - ACTIONS(7181), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7223), 1, - anon_sym_LBRACK, - ACTIONS(7227), 1, - anon_sym_QMARK, - ACTIONS(7251), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7473), 1, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2569), 47, anon_sym_AMP, - ACTIONS(7479), 1, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + [57664] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5845), 1, + anon_sym_LPAREN2, + ACTIONS(6414), 1, + anon_sym_LBRACK, + ACTIONS(6418), 1, + anon_sym_DOT, + ACTIONS(7343), 1, anon_sym_GT_EQ, - ACTIONS(7483), 1, - anon_sym_bitand, - ACTIONS(7485), 1, - anon_sym_DOT_STAR, - ACTIONS(7487), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7489), 1, - anon_sym_AMP_AMP, - ACTIONS(7491), 1, - anon_sym_PIPE, - ACTIONS(7495), 1, - anon_sym_or, - ACTIONS(7497), 1, - anon_sym_and, - ACTIONS(7499), 1, - anon_sym_bitor, - STATE(3515), 1, + ACTIONS(7347), 1, + anon_sym_LT_EQ_GT, + STATE(2491), 1, sym_argument_list, - STATE(3516), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(7265), 2, + ACTIONS(6416), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7267), 2, - anon_sym_DOT, + ACTIONS(6420), 2, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7469), 2, + ACTIONS(7325), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7481), 2, + ACTIONS(7345), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7493), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7471), 3, + ACTIONS(7327), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7475), 3, + ACTIONS(7339), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7477), 3, + ACTIONS(7341), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7013), 16, + ACTIONS(6518), 8, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(6520), 22, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -344855,11 +349499,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_DASH_GT_STAR, - [56812] = 3, + anon_sym_bitor, + anon_sym_bitand, + [57754] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5450), 20, + ACTIONS(6886), 1, + anon_sym_LPAREN2, + ACTIONS(7159), 1, + anon_sym_LBRACK, + ACTIONS(7491), 1, + anon_sym_DOT_STAR, + STATE(3433), 1, + sym_argument_list, + STATE(3434), 1, + sym_subscript_argument_list, + ACTIONS(7201), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7203), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6518), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -344869,27 +349530,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(5452), 33, + ACTIONS(6520), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_GT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -344897,6 +349554,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -344907,75 +349565,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [56873] = 3, + anon_sym_DASH_GT_STAR, + [57829] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5450), 20, + STATE(2657), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(3631), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(3635), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(5915), 16, 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_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(5452), 33, + sym_literal_suffix, + ACTIONS(5917), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RBRACE, 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_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [56934] = 3, + [57896] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5740), 20, + ACTIONS(5804), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -344996,7 +349651,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5742), 33, + ACTIONS(5806), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -345030,14 +349685,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [56995] = 5, + [57957] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7501), 1, - anon_sym_LT, - STATE(1565), 1, - sym_template_argument_list, - ACTIONS(6513), 17, + ACTIONS(5681), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -345047,26 +349698,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6515), 34, + ACTIONS(5683), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -345075,7 +349726,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -345090,10 +349740,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [57060] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [58018] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5762), 20, + ACTIONS(5738), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -345114,7 +349767,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5764), 33, + ACTIONS(5740), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -345148,10 +349801,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [57121] = 3, + [58079] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5778), 20, + ACTIONS(5515), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -345172,7 +349825,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5780), 33, + ACTIONS(5517), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -345206,136 +349859,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [57182] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4167), 1, - anon_sym_COLON_COLON, - ACTIONS(7386), 1, - anon_sym_LT, - ACTIONS(7506), 1, - anon_sym_EQ, - STATE(2641), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2731), 1, - sym_template_argument_list, - ACTIONS(7504), 2, - anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(4174), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4152), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LBRACK_LBRACK, - ACTIONS(4144), 36, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [57257] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7515), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(7511), 4, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - ACTIONS(7513), 5, - anon_sym_AMP, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_explicit, - anon_sym_operator, - ACTIONS(7518), 11, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_auto, - anon_sym_typename, - ACTIONS(7508), 31, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - [57324] = 3, + [58140] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5766), 20, + ACTIONS(5685), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -345356,7 +349883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5768), 33, + ACTIONS(5687), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -345390,14 +349917,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [57385] = 5, + [58201] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7501), 1, - anon_sym_LT, - STATE(2864), 1, - sym_template_argument_list, - ACTIONS(6513), 18, + ACTIONS(5764), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -345408,26 +349931,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, + anon_sym___attribute, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, - ACTIONS(6515), 33, + anon_sym_DASH_GT, + ACTIONS(5766), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -345439,21 +349962,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [57450] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [58262] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5770), 20, + ACTIONS(5689), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -345474,7 +349999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5772), 33, + ACTIONS(5691), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -345508,10 +350033,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [57511] = 3, + [58323] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5774), 20, + ACTIONS(5720), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -345532,7 +350057,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5776), 33, + ACTIONS(5722), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -345566,127 +350091,69 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [57572] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5651), 17, - 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_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5653), 36, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [57633] = 26, + [58384] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6864), 1, + ACTIONS(6886), 1, anon_sym_LPAREN2, - ACTIONS(6987), 1, + ACTIONS(6947), 1, anon_sym_EQ, - ACTIONS(7223), 1, + ACTIONS(7159), 1, anon_sym_LBRACK, - ACTIONS(7251), 1, + ACTIONS(7187), 1, anon_sym_LT_EQ_GT, - ACTIONS(7473), 1, - anon_sym_AMP, - ACTIONS(7479), 1, - anon_sym_GT_EQ, - ACTIONS(7483), 1, - anon_sym_bitand, - ACTIONS(7485), 1, + ACTIONS(7491), 1, anon_sym_DOT_STAR, - ACTIONS(7487), 1, + ACTIONS(7497), 1, anon_sym_PIPE_PIPE, - ACTIONS(7489), 1, + ACTIONS(7499), 1, anon_sym_AMP_AMP, - ACTIONS(7491), 1, + ACTIONS(7501), 1, anon_sym_PIPE, - ACTIONS(7495), 1, + ACTIONS(7505), 1, + anon_sym_AMP, + ACTIONS(7511), 1, + anon_sym_GT_EQ, + ACTIONS(7515), 1, anon_sym_or, - ACTIONS(7497), 1, + ACTIONS(7517), 1, anon_sym_and, - ACTIONS(7499), 1, + ACTIONS(7519), 1, anon_sym_bitor, - STATE(3515), 1, + ACTIONS(7521), 1, + anon_sym_bitand, + STATE(3433), 1, sym_argument_list, - STATE(3516), 1, + STATE(3434), 1, sym_subscript_argument_list, - ACTIONS(7265), 2, + ACTIONS(7201), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7267), 2, + ACTIONS(7203), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7469), 2, + ACTIONS(7493), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7481), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7493), 2, + ACTIONS(7503), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(7471), 3, + ACTIONS(7513), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7495), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7475), 3, + ACTIONS(7507), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7477), 3, + ACTIONS(7509), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6989), 18, + ACTIONS(6949), 18, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -345705,141 +350172,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or_eq, anon_sym_xor_eq, anon_sym_DASH_GT_STAR, - [57740] = 11, + [58491] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5499), 1, - anon_sym_COLON, - ACTIONS(7520), 1, - anon_sym_LBRACE, - STATE(3954), 1, - sym_field_declaration_list, - STATE(4095), 1, - sym_attribute_specifier, - STATE(7095), 1, - sym_virtual_specifier, - STATE(7864), 1, - sym_base_class_clause, - ACTIONS(5503), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(6016), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5493), 19, - aux_sym_preproc_elif_token1, + ACTIONS(5792), 20, 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_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5495), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [57817] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7522), 1, - sym_identifier, - STATE(3137), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(6010), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(6012), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(5392), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, + anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(5390), 21, + ACTIONS(5794), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [57886] = 4, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [58552] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5003), 2, - anon_sym_COLON_COLON, + ACTIONS(2493), 1, anon_sym_LBRACE, - ACTIONS(5005), 19, + ACTIONS(6935), 1, + anon_sym_LPAREN2, + STATE(3733), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6224), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -345849,26 +350250,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4998), 32, + ACTIONS(6226), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -345877,7 +350276,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -345891,15 +350289,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [57949] = 5, + anon_sym_DASH_GT, + anon_sym_GT2, + [58619] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7501), 1, - anon_sym_LT, - STATE(1546), 1, - sym_template_argument_list, - ACTIONS(6513), 18, + ACTIONS(5800), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -345910,26 +350305,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, + anon_sym___attribute, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, - ACTIONS(6515), 33, + anon_sym_DASH_GT, + ACTIONS(5802), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -345941,21 +350336,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [58014] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [58680] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5673), 17, + ACTIONS(5705), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -345965,25 +350362,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5675), 36, + ACTIONS(5707), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -345993,34 +350390,34 @@ static const uint16_t ts_small_parse_table[] = { 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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [58075] = 3, + anon_sym_GT2, + [58741] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6844), 6, + ACTIONS(6868), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(6842), 47, + ACTIONS(6866), 47, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -346068,12 +350465,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_typename, anon_sym_template, anon_sym_operator, - [58136] = 4, + [58802] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7524), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(6477), 20, + ACTIONS(5804), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -346083,28 +350478,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, + ACTIONS(5806), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6479), 32, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [58863] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7083), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -346116,6 +350548,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7081), 27, + 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_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + [58924] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5645), 20, + 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_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5647), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, @@ -346126,11 +350635,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [58199] = 3, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [58985] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5750), 17, + ACTIONS(5776), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -346148,7 +350660,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5752), 36, + ACTIONS(5778), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -346185,15 +350697,18 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [58260] = 5, + [59046] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7526), 1, - anon_sym_LBRACK_LBRACK, - STATE(3135), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(2051), 21, + ACTIONS(4187), 1, + anon_sym_COLON_COLON, + ACTIONS(4932), 1, + anon_sym_LBRACE, + ACTIONS(5757), 1, + anon_sym_LT, + STATE(3384), 1, + sym_template_argument_list, + ACTIONS(4934), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -346205,17 +350720,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6235), 29, + ACTIONS(4927), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -346223,6 +350736,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -346245,26 +350759,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [58325] = 10, + [59115] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6864), 1, - anon_sym_LPAREN2, - ACTIONS(7223), 1, - anon_sym_LBRACK, - ACTIONS(7485), 1, - anon_sym_DOT_STAR, - STATE(3515), 1, - sym_argument_list, - STATE(3516), 1, - sym_subscript_argument_list, - ACTIONS(7265), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7267), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6435), 17, + ACTIONS(5701), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -346274,23 +350772,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6437), 27, + anon_sym_DOT, + ACTIONS(5703), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -346298,7 +350800,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -346309,136 +350810,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_GT_STAR, - [58400] = 7, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [59176] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7529), 1, - sym_identifier, - STATE(3151), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(6010), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(6012), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(5398), 18, + ACTIONS(5712), 20, 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_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(5396), 21, + ACTIONS(5714), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [58469] = 28, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [59237] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6524), 1, + ACTIONS(6662), 1, anon_sym_EQ, - ACTIONS(6864), 1, + ACTIONS(6886), 1, anon_sym_LPAREN2, - ACTIONS(7181), 1, + ACTIONS(7117), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7223), 1, + ACTIONS(7159), 1, anon_sym_LBRACK, - ACTIONS(7227), 1, + ACTIONS(7163), 1, anon_sym_QMARK, - ACTIONS(7251), 1, + ACTIONS(7187), 1, anon_sym_LT_EQ_GT, - ACTIONS(7473), 1, - anon_sym_AMP, - ACTIONS(7479), 1, - anon_sym_GT_EQ, - ACTIONS(7483), 1, - anon_sym_bitand, - ACTIONS(7485), 1, + ACTIONS(7491), 1, anon_sym_DOT_STAR, - ACTIONS(7487), 1, + ACTIONS(7497), 1, anon_sym_PIPE_PIPE, - ACTIONS(7489), 1, + ACTIONS(7499), 1, anon_sym_AMP_AMP, - ACTIONS(7491), 1, + ACTIONS(7501), 1, anon_sym_PIPE, - ACTIONS(7495), 1, + ACTIONS(7505), 1, + anon_sym_AMP, + ACTIONS(7511), 1, + anon_sym_GT_EQ, + ACTIONS(7515), 1, anon_sym_or, - ACTIONS(7497), 1, + ACTIONS(7517), 1, anon_sym_and, - ACTIONS(7499), 1, + ACTIONS(7519), 1, anon_sym_bitor, - STATE(3515), 1, + ACTIONS(7521), 1, + anon_sym_bitand, + STATE(3433), 1, sym_argument_list, - STATE(3516), 1, + STATE(3434), 1, sym_subscript_argument_list, - ACTIONS(7265), 2, + ACTIONS(7201), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7267), 2, + ACTIONS(7203), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7469), 2, + ACTIONS(7493), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7481), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7493), 2, + ACTIONS(7503), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(7471), 3, + ACTIONS(7513), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7495), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7475), 3, + ACTIONS(7507), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7477), 3, + ACTIONS(7509), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6526), 16, + ACTIONS(6664), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_STAR_EQ, @@ -346455,26 +350958,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or_eq, anon_sym_xor_eq, anon_sym_DASH_GT_STAR, - [58580] = 10, + [59348] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6864), 1, - anon_sym_LPAREN2, - ACTIONS(7223), 1, + ACTIONS(6888), 1, anon_sym_LBRACK, - ACTIONS(7485), 1, - anon_sym_DOT_STAR, - STATE(3515), 1, - sym_argument_list, - STATE(3516), 1, - sym_subscript_argument_list, - ACTIONS(7265), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7267), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6441), 17, + STATE(3308), 1, + sym_new_declarator, + ACTIONS(6346), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -346492,15 +350983,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6443), 27, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6348), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -346519,15 +351014,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [58655] = 5, + [59413] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6866), 1, + ACTIONS(7041), 1, + sym_literal_suffix, + ACTIONS(4166), 26, + anon_sym_DOT_DOT_DOT, + 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_SEMI, anon_sym_LBRACK, - STATE(3266), 1, - sym_new_declarator, - ACTIONS(6352), 19, + 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_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(4174), 26, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -346541,13 +351064,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6354), 32, + [59476] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7523), 1, + anon_sym_LT, + STATE(1561), 1, + sym_template_argument_list, + ACTIONS(6426), 17, + 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_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(6428), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -346557,7 +351112,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -346579,41 +351136,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [58720] = 3, + anon_sym_DASH_GT, + [59541] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 20, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(6886), 1, + anon_sym_LPAREN2, + ACTIONS(7159), 1, + anon_sym_LBRACK, + ACTIONS(7491), 1, + anon_sym_DOT_STAR, + STATE(3433), 1, + sym_argument_list, + STATE(3434), 1, + sym_subscript_argument_list, + ACTIONS(7201), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7203), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7495), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(6518), 14, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(5657), 33, + ACTIONS(6520), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_GT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -346621,6 +351191,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -346631,47 +351202,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [58781] = 3, + anon_sym_DASH_GT_STAR, + [59618] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5732), 20, + ACTIONS(7526), 1, + sym_identifier, + STATE(3231), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(6080), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(6082), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(5397), 18, 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_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, + anon_sym___attribute__, + anon_sym___attribute, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(5734), 33, + sym_literal_suffix, + ACTIONS(5395), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [59687] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6886), 1, + anon_sym_LPAREN2, + ACTIONS(7159), 1, anon_sym_LBRACK, + ACTIONS(7187), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7491), 1, + anon_sym_DOT_STAR, + ACTIONS(7499), 1, + anon_sym_AMP_AMP, + ACTIONS(7501), 1, + anon_sym_PIPE, + ACTIONS(7505), 1, + anon_sym_AMP, + ACTIONS(7511), 1, + anon_sym_GT_EQ, + ACTIONS(7517), 1, + anon_sym_and, + ACTIONS(7519), 1, + anon_sym_bitor, + ACTIONS(7521), 1, + anon_sym_bitand, + STATE(3433), 1, + sym_argument_list, + STATE(3434), 1, + sym_subscript_argument_list, + ACTIONS(6518), 2, + anon_sym_EQ, + anon_sym_or, + ACTIONS(7201), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7203), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7493), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7503), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7513), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7495), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7507), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7509), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6520), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -346679,57 +351336,150 @@ static const uint16_t ts_small_parse_table[] = { 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_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_sym_DASH_GT_STAR, + [59790] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6886), 1, + anon_sym_LPAREN2, + ACTIONS(7159), 1, + anon_sym_LBRACK, + ACTIONS(7187), 1, anon_sym_LT_EQ_GT, + ACTIONS(7491), 1, + anon_sym_DOT_STAR, + ACTIONS(7501), 1, + anon_sym_PIPE, + ACTIONS(7505), 1, + anon_sym_AMP, + ACTIONS(7511), 1, + anon_sym_GT_EQ, + ACTIONS(7519), 1, anon_sym_bitor, + ACTIONS(7521), 1, anon_sym_bitand, - anon_sym_not_eq, + STATE(3433), 1, + sym_argument_list, + STATE(3434), 1, + sym_subscript_argument_list, + ACTIONS(7201), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + ACTIONS(7203), 2, + anon_sym_DOT, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [58842] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5641), 20, + ACTIONS(7493), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7503), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7513), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6518), 3, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + ACTIONS(7495), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7507), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7509), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + ACTIONS(6520), 20, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + 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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_DASH_GT_STAR, + [59889] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6886), 1, + anon_sym_LPAREN2, + ACTIONS(7159), 1, + anon_sym_LBRACK, + ACTIONS(7187), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7491), 1, + anon_sym_DOT_STAR, + ACTIONS(7505), 1, + anon_sym_AMP, + ACTIONS(7511), 1, + anon_sym_GT_EQ, + ACTIONS(7521), 1, + anon_sym_bitand, + STATE(3433), 1, + sym_argument_list, + STATE(3434), 1, + sym_subscript_argument_list, + ACTIONS(7201), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7203), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7493), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7503), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7513), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7495), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7507), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7509), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6518), 4, + anon_sym_PIPE, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(5643), 33, + ACTIONS(6520), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -346737,57 +351487,73 @@ static const uint16_t ts_small_parse_table[] = { 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_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, anon_sym_bitor, + anon_sym_DASH_GT_STAR, + [59984] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6886), 1, + anon_sym_LPAREN2, + ACTIONS(7159), 1, + anon_sym_LBRACK, + ACTIONS(7187), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7491), 1, + anon_sym_DOT_STAR, + ACTIONS(7505), 1, + anon_sym_AMP, + ACTIONS(7511), 1, + anon_sym_GT_EQ, + ACTIONS(7521), 1, anon_sym_bitand, - anon_sym_not_eq, + STATE(3433), 1, + sym_argument_list, + STATE(3434), 1, + sym_subscript_argument_list, + ACTIONS(7201), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + ACTIONS(7203), 2, + anon_sym_DOT, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [58903] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5736), 20, + ACTIONS(7493), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7513), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7495), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7507), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7509), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(6518), 6, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(5738), 33, + ACTIONS(6520), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -346795,89 +351561,140 @@ static const uint16_t ts_small_parse_table[] = { 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_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [58964] = 26, + anon_sym_DASH_GT_STAR, + [60077] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6864), 1, + ACTIONS(6886), 1, anon_sym_LPAREN2, - ACTIONS(6967), 1, - anon_sym_EQ, - ACTIONS(7223), 1, + ACTIONS(7159), 1, anon_sym_LBRACK, - ACTIONS(7251), 1, + ACTIONS(7187), 1, anon_sym_LT_EQ_GT, - ACTIONS(7473), 1, - anon_sym_AMP, - ACTIONS(7479), 1, - anon_sym_GT_EQ, - ACTIONS(7483), 1, - anon_sym_bitand, - ACTIONS(7485), 1, - anon_sym_DOT_STAR, - ACTIONS(7487), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7489), 1, - anon_sym_AMP_AMP, ACTIONS(7491), 1, + anon_sym_DOT_STAR, + ACTIONS(7511), 1, + anon_sym_GT_EQ, + STATE(3433), 1, + sym_argument_list, + STATE(3434), 1, + sym_subscript_argument_list, + ACTIONS(7201), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7203), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7493), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7513), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7495), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7507), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7509), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6518), 7, anon_sym_PIPE, - ACTIONS(7495), 1, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, anon_sym_or, - ACTIONS(7497), 1, anon_sym_and, - ACTIONS(7499), 1, + anon_sym_xor, + ACTIONS(6520), 22, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + 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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_bitor, - STATE(3515), 1, + anon_sym_bitand, + anon_sym_DASH_GT_STAR, + [60166] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6886), 1, + anon_sym_LPAREN2, + ACTIONS(7159), 1, + anon_sym_LBRACK, + ACTIONS(7187), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7491), 1, + anon_sym_DOT_STAR, + ACTIONS(7511), 1, + anon_sym_GT_EQ, + STATE(3433), 1, sym_argument_list, - STATE(3516), 1, + STATE(3434), 1, sym_subscript_argument_list, - ACTIONS(7265), 2, + ACTIONS(7201), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7267), 2, + ACTIONS(7203), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7469), 2, + ACTIONS(7493), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7481), 2, + ACTIONS(7513), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7493), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7471), 3, + ACTIONS(7495), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7475), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7477), 3, + ACTIONS(7509), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6969), 18, + ACTIONS(6518), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(6520), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -346892,41 +351709,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_GT_STAR, - [59071] = 3, + [60253] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(5754), 20, + ACTIONS(6886), 1, + anon_sym_LPAREN2, + ACTIONS(7159), 1, + anon_sym_LBRACK, + ACTIONS(7187), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7491), 1, + anon_sym_DOT_STAR, + STATE(3433), 1, + sym_argument_list, + STATE(3434), 1, + sym_subscript_argument_list, + ACTIONS(7201), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7203), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7493), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7513), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7495), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(6518), 10, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(5756), 33, + ACTIONS(6520), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_GT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -346934,45 +351771,44 @@ static const uint16_t ts_small_parse_table[] = { 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_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [59132] = 9, + anon_sym_DASH_GT_STAR, + [60336] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(6864), 1, + ACTIONS(6886), 1, anon_sym_LPAREN2, - ACTIONS(7223), 1, + ACTIONS(7159), 1, anon_sym_LBRACK, - ACTIONS(7485), 1, + ACTIONS(7491), 1, anon_sym_DOT_STAR, - STATE(3515), 1, + STATE(3433), 1, sym_argument_list, - STATE(3516), 1, + STATE(3434), 1, sym_subscript_argument_list, - ACTIONS(7267), 2, + ACTIONS(7201), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7203), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6445), 17, + ACTIONS(7493), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7495), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(6518), 12, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -346985,7 +351821,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6447), 29, + ACTIONS(6520), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -347012,43 +351848,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, anon_sym_DASH_GT_STAR, - [59205] = 3, + [60415] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5758), 20, + ACTIONS(6886), 1, + anon_sym_LPAREN2, + ACTIONS(7159), 1, + anon_sym_LBRACK, + ACTIONS(7491), 1, + anon_sym_DOT_STAR, + STATE(3433), 1, + sym_argument_list, + STATE(3434), 1, + sym_subscript_argument_list, + ACTIONS(7201), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7203), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7493), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7513), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7495), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(6518), 10, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(5760), 33, + ACTIONS(6520), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_GT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -347056,6 +351905,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -347066,17 +351916,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [59266] = 3, + anon_sym_DASH_GT_STAR, + [60496] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5659), 20, + ACTIONS(4187), 1, + anon_sym_COLON_COLON, + ACTIONS(7528), 1, + anon_sym_LT, + STATE(3373), 1, + sym_template_argument_list, + ACTIONS(6397), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -347086,26 +351936,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5661), 33, + anon_sym_DASH_GT, + ACTIONS(6399), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -347114,6 +351963,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -347127,20 +351977,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [59327] = 6, + anon_sym_DASH_GT_STAR, + [60563] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4167), 1, + ACTIONS(4187), 1, anon_sym_COLON_COLON, - ACTIONS(7386), 1, + ACTIONS(7483), 1, anon_sym_LT, - STATE(2731), 1, + STATE(2756), 1, sym_template_argument_list, - ACTIONS(4970), 11, + ACTIONS(4192), 11, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -347152,7 +351999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(4963), 39, + ACTIONS(5834), 39, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -347192,77 +352039,214 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_template, anon_sym_operator, - [59394] = 7, + [60630] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(7531), 1, - sym_identifier, - STATE(3151), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(7534), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(7537), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(5405), 18, + anon_sym_LT, + STATE(1724), 1, + sym_template_argument_list, + ACTIONS(6426), 19, 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_EQ, - anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(5403), 21, + anon_sym_DASH_GT, + ACTIONS(6428), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [60695] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7534), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(6464), 20, + 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_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6466), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [60758] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(67), 1, + anon_sym_const, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7048), 1, + anon_sym_AMP_AMP, + ACTIONS(7050), 1, + anon_sym_AMP, + ACTIONS(7063), 1, + anon_sym_LBRACK, + ACTIONS(7071), 1, + anon_sym___asm, + ACTIONS(7075), 1, + anon_sym_noexcept, + ACTIONS(7077), 1, + anon_sym_throw, + ACTIONS(7299), 1, + anon_sym___attribute__, + ACTIONS(7536), 1, anon_sym_DASH_GT, - [59463] = 5, + ACTIONS(7538), 1, + anon_sym_requires, + STATE(1680), 1, + sym_alignas_qualifier, + STATE(4973), 1, + sym__function_attributes_start, + STATE(5123), 1, + sym_ref_qualifier, + STATE(6294), 1, + sym_trailing_return_type, + STATE(6299), 1, + sym__function_attributes_end, + STATE(6870), 1, + sym_gnu_asm_expression, + ACTIONS(7069), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7304), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7359), 2, + anon_sym_final, + anon_sym_override, + STATE(4041), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4265), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5507), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6017), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6125), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5417), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7046), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + ACTIONS(7297), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [60873] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7435), 1, - anon_sym_LBRACK_LBRACK, - STATE(3135), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6249), 21, + ACTIONS(5760), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -347277,14 +352261,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6251), 29, + ACTIONS(5762), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -347292,6 +352275,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -347313,15 +352298,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, anon_sym_GT2, - [59528] = 5, + [60934] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7540), 1, - anon_sym_LT, - STATE(3094), 1, - sym_template_argument_list, - ACTIONS(6513), 19, + ACTIONS(5788), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -347331,27 +352314,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6515), 32, + ACTIONS(5790), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -347359,7 +352342,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -347373,11 +352355,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [59593] = 3, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [60995] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(67), 1, + anon_sym_const, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7048), 1, + anon_sym_AMP_AMP, + ACTIONS(7050), 1, + anon_sym_AMP, + ACTIONS(7063), 1, + anon_sym_LBRACK, + ACTIONS(7071), 1, + anon_sym___asm, + ACTIONS(7075), 1, + anon_sym_noexcept, + ACTIONS(7077), 1, + anon_sym_throw, + ACTIONS(7299), 1, + anon_sym___attribute__, + ACTIONS(7536), 1, + anon_sym_DASH_GT, + ACTIONS(7540), 1, + anon_sym_requires, + STATE(1680), 1, + sym_alignas_qualifier, + STATE(4974), 1, + sym__function_attributes_start, + STATE(5131), 1, + sym_ref_qualifier, + STATE(6304), 1, + sym_trailing_return_type, + STATE(6310), 1, + sym__function_attributes_end, + STATE(6870), 1, + sym_gnu_asm_expression, + ACTIONS(7069), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7304), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7426), 2, + anon_sym_final, + anon_sym_override, + STATE(4041), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4265), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5507), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6017), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6125), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5418), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7046), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + ACTIONS(7297), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [61110] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5677), 20, + ACTIONS(2493), 1, + anon_sym_LBRACE, + ACTIONS(6935), 1, + anon_sym_LPAREN2, + STATE(3591), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6262), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -347398,15 +352475,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5679), 33, + ACTIONS(6264), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -347429,57 +352504,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, anon_sym_GT2, - [59654] = 11, + [61177] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6864), 1, + ACTIONS(6886), 1, anon_sym_LPAREN2, - ACTIONS(7223), 1, + ACTIONS(6997), 1, + anon_sym_EQ, + ACTIONS(7117), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7159), 1, anon_sym_LBRACK, - ACTIONS(7485), 1, + ACTIONS(7163), 1, + anon_sym_QMARK, + ACTIONS(7187), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7491), 1, anon_sym_DOT_STAR, - STATE(3515), 1, + ACTIONS(7497), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7499), 1, + anon_sym_AMP_AMP, + ACTIONS(7501), 1, + anon_sym_PIPE, + ACTIONS(7505), 1, + anon_sym_AMP, + ACTIONS(7511), 1, + anon_sym_GT_EQ, + ACTIONS(7515), 1, + anon_sym_or, + ACTIONS(7517), 1, + anon_sym_and, + ACTIONS(7519), 1, + anon_sym_bitor, + ACTIONS(7521), 1, + anon_sym_bitand, + STATE(3433), 1, sym_argument_list, - STATE(3516), 1, + STATE(3434), 1, sym_subscript_argument_list, - ACTIONS(7265), 2, + ACTIONS(7201), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7267), 2, + ACTIONS(7203), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7471), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6449), 14, + ACTIONS(7493), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_PIPE, + ACTIONS(7503), 2, anon_sym_CARET, - anon_sym_AMP, + anon_sym_xor, + ACTIONS(7513), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7495), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7507), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7509), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - ACTIONS(6451), 27, - anon_sym_DOT_DOT_DOT, + ACTIONS(6999), 16, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -347493,31 +352587,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_GT_STAR, - [59731] = 10, + [61288] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6864), 1, - anon_sym_LPAREN2, - ACTIONS(7223), 1, - anon_sym_LBRACK, - ACTIONS(7485), 1, - anon_sym_DOT_STAR, - STATE(3515), 1, - sym_argument_list, - STATE(3516), 1, - sym_subscript_argument_list, - ACTIONS(7265), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7267), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6449), 17, + ACTIONS(5808), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -347527,23 +352601,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6451), 27, + anon_sym_DOT, + ACTIONS(5810), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -347551,7 +352629,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -347562,11 +352639,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_GT_STAR, - [59806] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [61349] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5685), 20, + ACTIONS(5742), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -347576,25 +352659,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute, anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, - ACTIONS(5687), 33, + anon_sym_DASH_GT, + ACTIONS(5744), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -347604,164 +352687,115 @@ static const uint16_t ts_small_parse_table[] = { 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [59867] = 24, + anon_sym_DASH_GT_STAR, + [61410] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6864), 1, + ACTIONS(6924), 6, anon_sym_LPAREN2, - ACTIONS(7223), 1, - anon_sym_LBRACK, - ACTIONS(7251), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7473), 1, - anon_sym_AMP, - ACTIONS(7479), 1, - anon_sym_GT_EQ, - ACTIONS(7483), 1, - anon_sym_bitand, - ACTIONS(7485), 1, - anon_sym_DOT_STAR, - ACTIONS(7489), 1, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(7491), 1, - anon_sym_PIPE, - ACTIONS(7497), 1, - anon_sym_and, - ACTIONS(7499), 1, - anon_sym_bitor, - STATE(3515), 1, - sym_argument_list, - STATE(3516), 1, - sym_subscript_argument_list, - ACTIONS(6449), 2, - anon_sym_EQ, - anon_sym_or, - ACTIONS(7265), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7267), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7469), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(6922), 47, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + [61471] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5816), 20, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7481), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7493), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7471), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7475), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7477), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6451), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_DASH_GT_STAR, - [59970] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6864), 1, - anon_sym_LPAREN2, - ACTIONS(7223), 1, - anon_sym_LBRACK, - ACTIONS(7251), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7473), 1, - anon_sym_AMP, - ACTIONS(7479), 1, - anon_sym_GT_EQ, - ACTIONS(7483), 1, - anon_sym_bitand, - ACTIONS(7485), 1, - anon_sym_DOT_STAR, - ACTIONS(7491), 1, - anon_sym_PIPE, - ACTIONS(7499), 1, - anon_sym_bitor, - STATE(3515), 1, - sym_argument_list, - STATE(3516), 1, - sym_subscript_argument_list, - ACTIONS(7265), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7267), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7469), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7481), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7493), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6449), 3, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - ACTIONS(7471), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7475), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7477), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6451), 20, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5818), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -347769,73 +352803,62 @@ static const uint16_t ts_small_parse_table[] = { 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_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_DASH_GT_STAR, - [60069] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6864), 1, - anon_sym_LPAREN2, - ACTIONS(7223), 1, - anon_sym_LBRACK, - ACTIONS(7251), 1, anon_sym_LT_EQ_GT, - ACTIONS(7473), 1, - anon_sym_AMP, - ACTIONS(7479), 1, - anon_sym_GT_EQ, - ACTIONS(7483), 1, + anon_sym_bitor, anon_sym_bitand, - ACTIONS(7485), 1, - anon_sym_DOT_STAR, - STATE(3515), 1, - sym_argument_list, - STATE(3516), 1, - sym_subscript_argument_list, - ACTIONS(7265), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7267), 2, - anon_sym_DOT, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7469), 2, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [61532] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2493), 1, + anon_sym_LBRACE, + ACTIONS(6935), 1, + anon_sym_LPAREN2, + STATE(3713), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6283), 20, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7481), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7493), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7471), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7475), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7477), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6449), 4, - anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - ACTIONS(6451), 21, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(6285), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -347843,26 +352866,25 @@ static const uint16_t ts_small_parse_table[] = { 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_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_sym_LT_EQ_GT, anon_sym_bitor, - anon_sym_DASH_GT_STAR, - [60164] = 6, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [61599] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2499), 1, - anon_sym_LBRACE, - ACTIONS(6979), 1, - anon_sym_LPAREN2, - STATE(3685), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6172), 20, + ACTIONS(5660), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -347883,13 +352905,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6174), 29, + ACTIONS(5662), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -347912,11 +352936,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, anon_sym_GT2, - [60231] = 3, + [61660] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5782), 17, + ACTIONS(5780), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -347926,25 +352952,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5784), 36, + ACTIONS(5782), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -347954,69 +352980,61 @@ static const uint16_t ts_small_parse_table[] = { 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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [60292] = 16, + anon_sym_GT2, + [61721] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6864), 1, + ACTIONS(6886), 1, anon_sym_LPAREN2, - ACTIONS(7223), 1, + ACTIONS(7159), 1, anon_sym_LBRACK, - ACTIONS(7251), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7479), 1, - anon_sym_GT_EQ, - ACTIONS(7485), 1, + ACTIONS(7491), 1, anon_sym_DOT_STAR, - STATE(3515), 1, + STATE(3433), 1, sym_argument_list, - STATE(3516), 1, + STATE(3434), 1, sym_subscript_argument_list, - ACTIONS(7265), 2, + ACTIONS(7201), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7267), 2, + ACTIONS(7203), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7469), 2, + ACTIONS(6410), 17, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7481), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7471), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7477), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6449), 7, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6451), 25, + ACTIONS(6412), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -348024,6 +353042,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -348038,53 +353057,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_GT_STAR, - [60379] = 14, + [61796] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6864), 1, + ACTIONS(6886), 1, anon_sym_LPAREN2, - ACTIONS(7223), 1, + ACTIONS(7159), 1, anon_sym_LBRACK, - ACTIONS(7251), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7485), 1, + ACTIONS(7491), 1, anon_sym_DOT_STAR, - STATE(3515), 1, + STATE(3433), 1, sym_argument_list, - STATE(3516), 1, + STATE(3434), 1, sym_subscript_argument_list, - ACTIONS(7265), 2, + ACTIONS(7201), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7267), 2, + ACTIONS(7203), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7469), 2, + ACTIONS(6422), 17, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7481), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7471), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6449), 10, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6451), 26, + ACTIONS(6424), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -348107,155 +353122,207 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_GT_STAR, - [60462] = 12, + [61871] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(6864), 1, - anon_sym_LPAREN2, - ACTIONS(7223), 1, - anon_sym_LBRACK, - ACTIONS(7485), 1, - anon_sym_DOT_STAR, - STATE(3515), 1, - sym_argument_list, - STATE(3516), 1, - sym_subscript_argument_list, - ACTIONS(7265), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7267), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7469), 2, + ACTIONS(5563), 1, + anon_sym_COLON, + ACTIONS(7543), 1, + anon_sym_LBRACE, + STATE(3986), 1, + sym_field_declaration_list, + STATE(4135), 1, + sym_attribute_specifier, + STATE(7064), 1, + sym_virtual_specifier, + STATE(7731), 1, + sym_base_class_clause, + ACTIONS(5567), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(6033), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(5557), 19, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7471), 3, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6449), 12, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, - ACTIONS(6451), 27, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5559), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_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_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_GT_STAR, - [60541] = 13, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [61948] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6864), 1, + ACTIONS(7552), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(7548), 4, anon_sym_LPAREN2, - ACTIONS(7223), 1, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(7550), 5, + anon_sym_AMP, + anon_sym___based, anon_sym_LBRACK, - ACTIONS(7485), 1, - anon_sym_DOT_STAR, - STATE(3515), 1, - sym_argument_list, - STATE(3516), 1, - sym_subscript_argument_list, - ACTIONS(7265), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7267), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7469), 2, + anon_sym_explicit, + anon_sym_operator, + ACTIONS(7555), 11, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_auto, + anon_sym_typename, + ACTIONS(7545), 31, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + [62015] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7557), 1, + sym_identifier, + STATE(3181), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(6080), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(6082), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(5403), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7481), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7471), 3, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6449), 10, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_EQ, + anon_sym___attribute__, + anon_sym___attribute, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, - ACTIONS(6451), 27, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + ACTIONS(5401), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_GT_STAR, - [60622] = 6, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [62084] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4167), 1, + ACTIONS(4991), 2, anon_sym_COLON_COLON, - ACTIONS(7543), 1, - anon_sym_LT, - STATE(3321), 1, - sym_template_argument_list, - ACTIONS(6368), 18, + anon_sym_LBRACE, + ACTIONS(4993), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -348266,6 +353333,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, @@ -348274,7 +353342,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6370), 32, + ACTIONS(4986), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -348307,14 +353375,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [60689] = 5, + [62147] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(7540), 1, + ACTIONS(6886), 1, + anon_sym_LPAREN2, + ACTIONS(6989), 1, + anon_sym_EQ, + ACTIONS(7117), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7159), 1, + anon_sym_LBRACK, + ACTIONS(7163), 1, + anon_sym_QMARK, + ACTIONS(7187), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7491), 1, + anon_sym_DOT_STAR, + ACTIONS(7497), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7499), 1, + anon_sym_AMP_AMP, + ACTIONS(7501), 1, + anon_sym_PIPE, + ACTIONS(7505), 1, + anon_sym_AMP, + ACTIONS(7511), 1, + anon_sym_GT_EQ, + ACTIONS(7515), 1, + anon_sym_or, + ACTIONS(7517), 1, + anon_sym_and, + ACTIONS(7519), 1, + anon_sym_bitor, + ACTIONS(7521), 1, + anon_sym_bitand, + STATE(3433), 1, + sym_argument_list, + STATE(3434), 1, + sym_subscript_argument_list, + ACTIONS(7201), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7203), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7493), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7503), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7513), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7495), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7507), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7509), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6991), 16, + anon_sym_COMMA, + anon_sym_RPAREN, + 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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_DASH_GT_STAR, + [62258] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4187), 1, + anon_sym_COLON_COLON, + ACTIONS(7559), 1, anon_sym_LT, - STATE(1701), 1, + STATE(3373), 1, sym_template_argument_list, - ACTIONS(6513), 19, + ACTIONS(6352), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -348327,14 +353480,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6515), 32, + ACTIONS(6354), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -348344,7 +353496,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -348367,10 +353519,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [60754] = 3, + [62325] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5798), 20, + ACTIONS(5515), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -348391,7 +353543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5800), 33, + ACTIONS(5517), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -348425,38 +353577,44 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [60815] = 6, + [62386] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4167), 1, + ACTIONS(4187), 1, anon_sym_COLON_COLON, - ACTIONS(7386), 1, + ACTIONS(7043), 1, + anon_sym_LBRACK, + ACTIONS(7483), 1, anon_sym_LT, - STATE(2731), 1, + STATE(2660), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3998), 1, sym_template_argument_list, - ACTIONS(4172), 11, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(4189), 3, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(4194), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4172), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5838), 39, + ACTIONS(4164), 35, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, - anon_sym_COLON, anon_sym___declspec, anon_sym___based, - anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, @@ -348482,30 +353640,12 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_template, anon_sym_operator, - [60882] = 10, + [62461] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6864), 1, - anon_sym_LPAREN2, - ACTIONS(7223), 1, - anon_sym_LBRACK, - ACTIONS(7485), 1, - anon_sym_DOT_STAR, - STATE(3515), 1, - sym_argument_list, - STATE(3516), 1, - sym_subscript_argument_list, - ACTIONS(7265), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7267), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6467), 17, + ACTIONS(5753), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -348515,23 +353655,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6469), 27, + anon_sym_DOT, + ACTIONS(5755), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -348539,7 +353683,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -348550,11 +353693,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [62522] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6886), 1, + anon_sym_LPAREN2, + ACTIONS(7019), 1, + anon_sym_EQ, + ACTIONS(7159), 1, + anon_sym_LBRACK, + ACTIONS(7187), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7491), 1, + anon_sym_DOT_STAR, + ACTIONS(7497), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7499), 1, + anon_sym_AMP_AMP, + ACTIONS(7501), 1, + anon_sym_PIPE, + ACTIONS(7505), 1, + anon_sym_AMP, + ACTIONS(7511), 1, + anon_sym_GT_EQ, + ACTIONS(7515), 1, + anon_sym_or, + ACTIONS(7517), 1, + anon_sym_and, + ACTIONS(7519), 1, + anon_sym_bitor, + ACTIONS(7521), 1, + anon_sym_bitand, + STATE(3433), 1, + sym_argument_list, + STATE(3434), 1, + sym_subscript_argument_list, + ACTIONS(7201), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7203), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7493), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7503), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7513), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7495), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7507), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7509), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7021), 18, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + 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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_DASH_GT_STAR, - [60957] = 3, + [62629] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5692), 20, + ACTIONS(5812), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -348575,7 +353805,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5694), 33, + ACTIONS(5814), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -348609,10 +353839,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [61018] = 3, + [62690] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5802), 17, + ACTIONS(5720), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -348622,25 +353852,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5804), 36, + ACTIONS(5722), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -348650,33 +353880,29 @@ static const uint16_t ts_small_parse_table[] = { 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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [61079] = 6, + anon_sym_GT2, + [62751] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4167), 1, - anon_sym_COLON_COLON, - ACTIONS(7546), 1, - anon_sym_LT, - STATE(3321), 1, - sym_template_argument_list, - ACTIONS(6310), 18, + ACTIONS(7562), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(6464), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -348687,25 +353913,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6312), 32, + ACTIONS(6466), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -348727,11 +353955,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [61146] = 3, + anon_sym_DASH_GT, + [62814] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5677), 20, + ACTIONS(7523), 1, + anon_sym_LT, + STATE(1568), 1, + sym_template_argument_list, + ACTIONS(6426), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -348741,18 +353973,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5679), 33, + ACTIONS(6428), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -348760,8 +353990,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -348769,6 +354001,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -348783,13 +354016,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [61207] = 3, + [62879] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5786), 20, + ACTIONS(7523), 1, + anon_sym_LT, + STATE(2705), 1, + sym_template_argument_list, + ACTIONS(6426), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -348799,18 +354033,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5788), 33, + ACTIONS(6428), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -348818,8 +354050,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -348827,112 +354061,38 @@ static const uint16_t ts_small_parse_table[] = { 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_and_eq, anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [61268] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7042), 1, - anon_sym_AMP_AMP, - ACTIONS(7044), 1, - anon_sym_AMP, - ACTIONS(7057), 1, - anon_sym_LBRACK, - ACTIONS(7065), 1, - anon_sym___asm, - ACTIONS(7072), 1, - anon_sym_noexcept, - ACTIONS(7074), 1, - anon_sym_throw, - ACTIONS(7147), 1, - anon_sym___attribute__, - ACTIONS(7549), 1, - anon_sym_DASH_GT, - ACTIONS(7551), 1, - anon_sym_requires, - STATE(1658), 1, - sym_alignas_qualifier, - STATE(4938), 1, - sym__function_attributes_start, - STATE(5133), 1, - sym_ref_qualifier, - STATE(6196), 1, - sym_trailing_return_type, - STATE(6268), 1, - sym__function_attributes_end, - STATE(6766), 1, - sym_gnu_asm_expression, - ACTIONS(7063), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7152), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(7335), 2, - anon_sym_final, - anon_sym_override, - STATE(3982), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4184), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5458), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5984), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5335), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7040), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_GT2, - ACTIONS(7145), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [61383] = 3, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [62944] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5790), 20, + ACTIONS(6886), 1, + anon_sym_LPAREN2, + ACTIONS(7159), 1, + anon_sym_LBRACK, + ACTIONS(7491), 1, + anon_sym_DOT_STAR, + STATE(3433), 1, + sym_argument_list, + STATE(3434), 1, + sym_subscript_argument_list, + ACTIONS(7203), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6514), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -348942,27 +354102,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(5792), 33, + ACTIONS(6516), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_GT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -348970,6 +354126,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -348982,100 +354139,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [61444] = 30, + anon_sym_DASH_GT_STAR, + [63017] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7042), 1, - anon_sym_AMP_AMP, - ACTIONS(7044), 1, - anon_sym_AMP, - ACTIONS(7057), 1, + ACTIONS(6886), 1, + anon_sym_LPAREN2, + ACTIONS(7159), 1, anon_sym_LBRACK, - ACTIONS(7065), 1, - anon_sym___asm, - ACTIONS(7072), 1, - anon_sym_noexcept, - ACTIONS(7074), 1, - anon_sym_throw, - ACTIONS(7147), 1, - anon_sym___attribute__, - ACTIONS(7549), 1, + ACTIONS(7491), 1, + anon_sym_DOT_STAR, + STATE(3433), 1, + sym_argument_list, + STATE(3434), 1, + sym_subscript_argument_list, + ACTIONS(7201), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7203), 2, + anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7553), 1, - anon_sym_requires, - STATE(1658), 1, - sym_alignas_qualifier, - STATE(4902), 1, - sym__function_attributes_start, - STATE(5068), 1, - sym_ref_qualifier, - STATE(6187), 1, - sym_trailing_return_type, - STATE(6209), 1, - sym__function_attributes_end, - STATE(6766), 1, - sym_gnu_asm_expression, - ACTIONS(7063), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7152), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(7324), 2, - anon_sym_final, - anon_sym_override, - STATE(3982), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4184), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5458), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5984), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5338), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7040), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_GT2, - ACTIONS(7145), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [61559] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5794), 20, + ACTIONS(6510), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -349085,27 +354169,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(5796), 33, + ACTIONS(6512), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_GT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -349113,6 +354193,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -349123,19 +354204,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [61620] = 4, + anon_sym_DASH_GT_STAR, + [63092] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7081), 1, - sym_literal_suffix, - ACTIONS(4146), 26, + ACTIONS(5768), 20, + 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_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5770), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -349143,8 +354237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -349153,16 +354246,27 @@ static const uint16_t ts_small_parse_table[] = { 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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(4154), 26, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [63153] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5772), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -349172,27 +354276,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5774), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, + anon_sym_LT_EQ_GT, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, - [61683] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [63214] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5786), 20, + ACTIONS(5796), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -349213,7 +354345,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5788), 33, + ACTIONS(5798), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -349247,65 +354379,65 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [61744] = 26, + [63275] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6864), 1, + ACTIONS(6886), 1, anon_sym_LPAREN2, ACTIONS(7015), 1, anon_sym_EQ, - ACTIONS(7223), 1, + ACTIONS(7159), 1, anon_sym_LBRACK, - ACTIONS(7251), 1, + ACTIONS(7187), 1, anon_sym_LT_EQ_GT, - ACTIONS(7473), 1, - anon_sym_AMP, - ACTIONS(7479), 1, - anon_sym_GT_EQ, - ACTIONS(7483), 1, - anon_sym_bitand, - ACTIONS(7485), 1, + ACTIONS(7491), 1, anon_sym_DOT_STAR, - ACTIONS(7487), 1, + ACTIONS(7497), 1, anon_sym_PIPE_PIPE, - ACTIONS(7489), 1, + ACTIONS(7499), 1, anon_sym_AMP_AMP, - ACTIONS(7491), 1, + ACTIONS(7501), 1, anon_sym_PIPE, - ACTIONS(7495), 1, + ACTIONS(7505), 1, + anon_sym_AMP, + ACTIONS(7511), 1, + anon_sym_GT_EQ, + ACTIONS(7515), 1, anon_sym_or, - ACTIONS(7497), 1, + ACTIONS(7517), 1, anon_sym_and, - ACTIONS(7499), 1, + ACTIONS(7519), 1, anon_sym_bitor, - STATE(3515), 1, + ACTIONS(7521), 1, + anon_sym_bitand, + STATE(3433), 1, sym_argument_list, - STATE(3516), 1, + STATE(3434), 1, sym_subscript_argument_list, - ACTIONS(7265), 2, + ACTIONS(7201), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7267), 2, + ACTIONS(7203), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7469), 2, + ACTIONS(7493), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7481), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7493), 2, + ACTIONS(7503), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(7471), 3, + ACTIONS(7513), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7495), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7475), 3, + ACTIONS(7507), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7477), 3, + ACTIONS(7509), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, @@ -349328,75 +354460,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or_eq, anon_sym_xor_eq, anon_sym_DASH_GT_STAR, - [61851] = 28, + [63382] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6864), 1, - anon_sym_LPAREN2, - ACTIONS(7019), 1, - anon_sym_EQ, - ACTIONS(7181), 1, + ACTIONS(7564), 1, + sym_identifier, + STATE(3231), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(7567), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(7570), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(5413), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + ACTIONS(5411), 21, anon_sym_DOT_DOT_DOT, - ACTIONS(7223), 1, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(7227), 1, anon_sym_QMARK, - ACTIONS(7251), 1, anon_sym_LT_EQ_GT, - ACTIONS(7473), 1, - anon_sym_AMP, - ACTIONS(7479), 1, - anon_sym_GT_EQ, - ACTIONS(7483), 1, - anon_sym_bitand, - ACTIONS(7485), 1, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [63451] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6886), 1, + anon_sym_LPAREN2, + ACTIONS(6985), 1, + anon_sym_EQ, + ACTIONS(7159), 1, + anon_sym_LBRACK, + ACTIONS(7187), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7491), 1, anon_sym_DOT_STAR, - ACTIONS(7487), 1, + ACTIONS(7497), 1, anon_sym_PIPE_PIPE, - ACTIONS(7489), 1, + ACTIONS(7499), 1, anon_sym_AMP_AMP, - ACTIONS(7491), 1, + ACTIONS(7501), 1, anon_sym_PIPE, - ACTIONS(7495), 1, + ACTIONS(7505), 1, + anon_sym_AMP, + ACTIONS(7511), 1, + anon_sym_GT_EQ, + ACTIONS(7515), 1, anon_sym_or, - ACTIONS(7497), 1, + ACTIONS(7517), 1, anon_sym_and, - ACTIONS(7499), 1, + ACTIONS(7519), 1, anon_sym_bitor, - STATE(3515), 1, + ACTIONS(7521), 1, + anon_sym_bitand, + STATE(3433), 1, sym_argument_list, - STATE(3516), 1, + STATE(3434), 1, sym_subscript_argument_list, - ACTIONS(7265), 2, + ACTIONS(7201), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7267), 2, + ACTIONS(7203), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7469), 2, + ACTIONS(7493), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7481), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7493), 2, + ACTIONS(7503), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(7471), 3, + ACTIONS(7513), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7495), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7475), 3, + ACTIONS(7507), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7477), 3, + ACTIONS(7509), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7021), 16, + ACTIONS(6987), 18, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -349411,10 +354603,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or_eq, anon_sym_xor_eq, anon_sym_DASH_GT_STAR, - [61962] = 3, + [63558] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5647), 20, + ACTIONS(5784), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -349435,7 +354627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5649), 33, + ACTIONS(5786), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -349469,89 +354661,22 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [62023] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6864), 1, - anon_sym_LPAREN2, - ACTIONS(7223), 1, - anon_sym_LBRACK, - ACTIONS(7485), 1, - anon_sym_DOT_STAR, - STATE(3515), 1, - sym_argument_list, - STATE(3516), 1, - sym_subscript_argument_list, - ACTIONS(7267), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6425), 17, - 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_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - ACTIONS(6427), 29, - anon_sym_DOT_DOT_DOT, - 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_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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT_STAR, - [62096] = 6, + [63619] = 7, ACTIONS(3), 1, sym_comment, - STATE(2624), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(3623), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(3627), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(5912), 16, + ACTIONS(4187), 1, + anon_sym_COLON_COLON, + STATE(1623), 1, + sym_template_argument_list, + STATE(3480), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7573), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6058), 21, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -349560,6 +354685,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -349567,11 +354694,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(5914), 25, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(6060), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -349583,21 +354715,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [62163] = 3, + [63688] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5677), 20, + ACTIONS(5666), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -349618,7 +354747,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5679), 33, + ACTIONS(5668), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -349652,36 +354781,35 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [62224] = 10, + [63749] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4167), 1, + ACTIONS(4187), 1, anon_sym_COLON_COLON, - ACTIONS(7033), 1, - anon_sym_LBRACK, - ACTIONS(7386), 1, + ACTIONS(7483), 1, anon_sym_LT, - STATE(2641), 1, + ACTIONS(7577), 1, + anon_sym_EQ, + STATE(2660), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3962), 1, + STATE(2756), 1, sym_template_argument_list, - ACTIONS(4169), 3, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(4174), 4, + ACTIONS(7575), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(4194), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(4152), 6, + ACTIONS(4172), 6, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ, - ACTIONS(4144), 35, + anon_sym_LBRACK_LBRACK, + ACTIONS(4164), 36, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -349690,6 +354818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym___declspec, anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, @@ -349717,18 +354846,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [62299] = 7, + [63824] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4167), 1, - anon_sym_COLON_COLON, - ACTIONS(4970), 1, - anon_sym_LBRACE, - ACTIONS(5696), 1, + ACTIONS(6886), 1, + anon_sym_LPAREN2, + ACTIONS(6993), 1, + anon_sym_EQ, + ACTIONS(7159), 1, + anon_sym_LBRACK, + ACTIONS(7187), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7491), 1, + anon_sym_DOT_STAR, + ACTIONS(7497), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7499), 1, + anon_sym_AMP_AMP, + ACTIONS(7501), 1, + anon_sym_PIPE, + ACTIONS(7505), 1, + anon_sym_AMP, + ACTIONS(7511), 1, + anon_sym_GT_EQ, + ACTIONS(7515), 1, + anon_sym_or, + ACTIONS(7517), 1, + anon_sym_and, + ACTIONS(7519), 1, + anon_sym_bitor, + ACTIONS(7521), 1, + anon_sym_bitand, + STATE(3433), 1, + sym_argument_list, + STATE(3434), 1, + sym_subscript_argument_list, + ACTIONS(7201), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7203), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7493), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7503), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7513), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7495), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7507), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7509), 3, + anon_sym_GT, + anon_sym_LT_EQ, anon_sym_LT, - STATE(3335), 1, - sym_template_argument_list, - ACTIONS(4972), 19, + ACTIONS(6995), 18, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + 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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_DASH_GT_STAR, + [63931] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5697), 17, + 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_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5699), 36, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [63992] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7365), 1, + anon_sym_LBRACK_LBRACK, + STATE(3244), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6244), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -349740,15 +355005,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4965), 30, + ACTIONS(6246), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -349756,7 +355023,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -349779,10 +355045,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [62368] = 3, + [64057] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5806), 20, + ACTIONS(5720), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -349803,7 +355069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5808), 33, + ACTIONS(5722), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -349837,10 +355103,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [62429] = 3, + [64118] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5810), 20, + ACTIONS(5820), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -349861,7 +355127,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5812), 33, + ACTIONS(5822), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -349895,72 +355161,137 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [62490] = 7, + [64179] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4167), 1, - anon_sym_COLON_COLON, - STATE(1603), 1, - sym_template_argument_list, - STATE(3363), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7556), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5977), 21, - aux_sym_preproc_elif_token1, + ACTIONS(5716), 17, 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_EQ, anon_sym_LT, - anon_sym___attribute__, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym___attribute, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5718), 36, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, sym_auto, anon_sym_decltype, - ACTIONS(5979), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_DASH_GT_STAR, + [64240] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6886), 1, anon_sym_LPAREN2, + ACTIONS(7159), 1, + anon_sym_LBRACK, + ACTIONS(7491), 1, + anon_sym_DOT_STAR, + STATE(3433), 1, + sym_argument_list, + STATE(3434), 1, + sym_subscript_argument_list, + ACTIONS(7203), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6433), 17, + 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_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(6435), 29, + anon_sym_DOT_DOT_DOT, + 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_LT, - anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [62559] = 3, + anon_sym_DASH_GT_STAR, + [64313] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5637), 20, + ACTIONS(7579), 1, + anon_sym_LBRACK_LBRACK, + STATE(3244), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(2043), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -349975,13 +355306,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5639), 33, + ACTIONS(6273), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -349989,8 +355321,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -350012,13 +355342,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, anon_sym_GT2, - [62620] = 3, + [64378] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5728), 17, + ACTIONS(5724), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -350028,25 +355356,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5730), 36, + ACTIONS(5726), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -350056,27 +355384,34 @@ static const uint16_t ts_small_parse_table[] = { 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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [62681] = 3, + anon_sym_GT2, + [64439] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5663), 20, + ACTIONS(2493), 1, + anon_sym_LBRACE, + ACTIONS(6935), 1, + anon_sym_LPAREN2, + STATE(3647), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6309), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -350097,15 +355432,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5665), 33, + ACTIONS(6311), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -350128,29 +355461,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, anon_sym_GT2, - [62742] = 10, + [64506] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6864), 1, + ACTIONS(4187), 1, + anon_sym_COLON_COLON, + ACTIONS(7483), 1, + anon_sym_LT, + STATE(2756), 1, + sym_template_argument_list, + ACTIONS(4932), 11, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(7223), 1, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4925), 39, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - ACTIONS(7485), 1, - anon_sym_DOT_STAR, - STATE(3515), 1, - sym_argument_list, - STATE(3516), 1, - sym_subscript_argument_list, - ACTIONS(7265), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7267), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6491), 17, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + [64573] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7531), 1, + anon_sym_LT, + STATE(3073), 1, + sym_template_argument_list, + ACTIONS(6426), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -350161,22 +355541,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6493), 27, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6428), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -350195,11 +355579,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [62817] = 3, + [64638] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5667), 20, + ACTIONS(5693), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -350220,7 +355607,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5669), 33, + ACTIONS(5695), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -350254,17 +355641,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [62878] = 6, + [64699] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2499), 1, - anon_sym_LBRACE, - ACTIONS(6979), 1, - anon_sym_LPAREN2, - STATE(3586), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6263), 20, + ACTIONS(5728), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -350285,13 +355665,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6265), 29, + ACTIONS(5730), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -350314,11 +355696,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, anon_sym_GT2, - [62945] = 3, + [64760] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5681), 20, + ACTIONS(6886), 1, + anon_sym_LPAREN2, + ACTIONS(7159), 1, + anon_sym_LBRACK, + ACTIONS(7491), 1, + anon_sym_DOT_STAR, + STATE(3433), 1, + sym_argument_list, + STATE(3434), 1, + sym_subscript_argument_list, + ACTIONS(7201), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7203), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6460), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -350328,27 +355728,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(5683), 33, + ACTIONS(6462), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, + anon_sym_GT_EQ, + 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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_GT_STAR, + [64835] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5845), 1, + anon_sym_LPAREN2, + ACTIONS(6414), 1, anon_sym_LBRACK, + ACTIONS(7019), 1, + anon_sym_EQ, + ACTIONS(7586), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7588), 1, + anon_sym_AMP_AMP, + ACTIONS(7590), 1, + anon_sym_PIPE, + ACTIONS(7594), 1, + anon_sym_AMP, + ACTIONS(7600), 1, + anon_sym_GT_EQ, + ACTIONS(7604), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7606), 1, + anon_sym_or, + ACTIONS(7608), 1, + anon_sym_and, + ACTIONS(7610), 1, + anon_sym_bitor, + ACTIONS(7612), 1, + anon_sym_bitand, + ACTIONS(7614), 1, + anon_sym_DOT, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + ACTIONS(6416), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7582), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7592), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7616), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7584), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7596), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7598), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7021), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -350356,115 +355837,390 @@ static const uint16_t ts_small_parse_table[] = { 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_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + [64941] = 51, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6886), 1, + anon_sym_LPAREN2, + ACTIONS(7159), 1, + anon_sym_LBRACK, + ACTIONS(7205), 1, + anon_sym_DOT_STAR, + ACTIONS(7207), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(7618), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7620), 1, + anon_sym_COMMA, + ACTIONS(7622), 1, + anon_sym_RPAREN, + ACTIONS(7624), 1, + anon_sym_DASH, + ACTIONS(7626), 1, + anon_sym_PLUS, + ACTIONS(7628), 1, + anon_sym_STAR, + ACTIONS(7630), 1, + anon_sym_SLASH, + ACTIONS(7632), 1, + anon_sym_PERCENT, + ACTIONS(7634), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7636), 1, + anon_sym_AMP_AMP, + ACTIONS(7638), 1, + anon_sym_PIPE, + ACTIONS(7640), 1, + anon_sym_CARET, + ACTIONS(7642), 1, + anon_sym_AMP, + ACTIONS(7644), 1, + anon_sym_EQ_EQ, + ACTIONS(7646), 1, + anon_sym_BANG_EQ, + ACTIONS(7648), 1, + anon_sym_GT, + ACTIONS(7650), 1, + anon_sym_GT_EQ, + ACTIONS(7652), 1, + anon_sym_LT_EQ, + ACTIONS(7654), 1, + anon_sym_LT, + ACTIONS(7656), 1, + anon_sym_LT_LT, + ACTIONS(7658), 1, + anon_sym_GT_GT, + ACTIONS(7660), 1, + anon_sym_EQ, + ACTIONS(7662), 1, + anon_sym_QMARK, + ACTIONS(7664), 1, + anon_sym_STAR_EQ, + ACTIONS(7666), 1, + anon_sym_SLASH_EQ, + ACTIONS(7668), 1, + anon_sym_PERCENT_EQ, + ACTIONS(7670), 1, + anon_sym_PLUS_EQ, + ACTIONS(7672), 1, + anon_sym_DASH_EQ, + ACTIONS(7674), 1, + anon_sym_LT_LT_EQ, + ACTIONS(7676), 1, + anon_sym_GT_GT_EQ, + ACTIONS(7678), 1, + anon_sym_AMP_EQ, + ACTIONS(7680), 1, + anon_sym_CARET_EQ, + ACTIONS(7682), 1, + anon_sym_PIPE_EQ, + ACTIONS(7684), 1, anon_sym_LT_EQ_GT, + ACTIONS(7686), 1, + anon_sym_or, + ACTIONS(7688), 1, + anon_sym_and, + ACTIONS(7690), 1, anon_sym_bitor, + ACTIONS(7692), 1, + anon_sym_xor, + ACTIONS(7694), 1, anon_sym_bitand, + ACTIONS(7696), 1, anon_sym_not_eq, + STATE(1285), 1, + sym__binary_fold_operator, + STATE(3433), 1, + sym_argument_list, + STATE(3434), 1, + sym_subscript_argument_list, + STATE(8910), 1, + sym__fold_operator, + ACTIONS(7203), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7698), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [65097] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6935), 1, + anon_sym_LPAREN2, + ACTIONS(7704), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7706), 1, + anon_sym_AMP_AMP, + ACTIONS(7708), 1, + anon_sym_PIPE, + ACTIONS(7712), 1, + anon_sym_AMP, + ACTIONS(7720), 1, + anon_sym_LBRACK, + ACTIONS(7722), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7724), 1, + anon_sym_or, + ACTIONS(7726), 1, + anon_sym_and, + ACTIONS(7728), 1, + anon_sym_bitor, + ACTIONS(7730), 1, + anon_sym_bitand, + ACTIONS(7734), 1, + anon_sym_DOT, + STATE(3632), 1, + sym_argument_list, + STATE(3652), 1, + sym_subscript_argument_list, + ACTIONS(6985), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(7700), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7710), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7718), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7732), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(7736), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, + ACTIONS(7702), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7714), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7716), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6987), 16, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + 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_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_GT2, - [63006] = 26, + [65201] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(67), 1, + anon_sym_const, + ACTIONS(7048), 1, + anon_sym_AMP_AMP, + ACTIONS(7050), 1, + anon_sym_AMP, + ACTIONS(7063), 1, + anon_sym_LBRACK, + ACTIONS(7071), 1, + anon_sym___asm, + ACTIONS(7075), 1, + anon_sym_noexcept, + ACTIONS(7077), 1, + anon_sym_throw, + ACTIONS(7299), 1, + anon_sym___attribute__, + ACTIONS(7301), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7320), 1, + anon_sym_requires, + ACTIONS(7738), 1, + anon_sym_DASH_GT, + STATE(1680), 1, + sym_alignas_qualifier, + STATE(5021), 1, + sym__function_attributes_start, + STATE(5294), 1, + sym_ref_qualifier, + STATE(5527), 1, + sym_trailing_return_type, + STATE(6348), 1, + sym__function_attributes_end, + STATE(6870), 1, + sym_gnu_asm_expression, + ACTIONS(7069), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7085), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7304), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4041), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4265), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5507), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5965), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7046), 3, + anon_sym_LPAREN2, + anon_sym_LBRACE, + anon_sym_EQ, + STATE(5432), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7297), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [65315] = 51, ACTIONS(3), 1, sym_comment, - ACTIONS(6864), 1, + ACTIONS(6886), 1, anon_sym_LPAREN2, - ACTIONS(6933), 1, - anon_sym_EQ, - ACTIONS(7223), 1, + ACTIONS(7159), 1, anon_sym_LBRACK, - ACTIONS(7251), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7473), 1, - anon_sym_AMP, - ACTIONS(7479), 1, - anon_sym_GT_EQ, - ACTIONS(7483), 1, - anon_sym_bitand, - ACTIONS(7485), 1, + ACTIONS(7205), 1, anon_sym_DOT_STAR, - ACTIONS(7487), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7489), 1, - anon_sym_AMP_AMP, - ACTIONS(7491), 1, - anon_sym_PIPE, - ACTIONS(7495), 1, - anon_sym_or, - ACTIONS(7497), 1, - anon_sym_and, - ACTIONS(7499), 1, - anon_sym_bitor, - STATE(3515), 1, - sym_argument_list, - STATE(3516), 1, - sym_subscript_argument_list, - ACTIONS(7265), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7267), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7469), 2, + ACTIONS(7207), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(7618), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7620), 1, + anon_sym_COMMA, + ACTIONS(7624), 1, anon_sym_DASH, + ACTIONS(7626), 1, anon_sym_PLUS, - ACTIONS(7481), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7493), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7471), 3, + ACTIONS(7628), 1, anon_sym_STAR, + ACTIONS(7630), 1, anon_sym_SLASH, + ACTIONS(7632), 1, anon_sym_PERCENT, - ACTIONS(7475), 3, + ACTIONS(7634), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7636), 1, + anon_sym_AMP_AMP, + ACTIONS(7638), 1, + anon_sym_PIPE, + ACTIONS(7640), 1, + anon_sym_CARET, + ACTIONS(7642), 1, + anon_sym_AMP, + ACTIONS(7644), 1, anon_sym_EQ_EQ, + ACTIONS(7646), 1, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7477), 3, + ACTIONS(7648), 1, anon_sym_GT, + ACTIONS(7650), 1, + anon_sym_GT_EQ, + ACTIONS(7652), 1, anon_sym_LT_EQ, + ACTIONS(7654), 1, anon_sym_LT, - ACTIONS(6935), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(7656), 1, + anon_sym_LT_LT, + ACTIONS(7658), 1, + anon_sym_GT_GT, + ACTIONS(7660), 1, + anon_sym_EQ, + ACTIONS(7662), 1, anon_sym_QMARK, + ACTIONS(7664), 1, anon_sym_STAR_EQ, + ACTIONS(7666), 1, anon_sym_SLASH_EQ, + ACTIONS(7668), 1, anon_sym_PERCENT_EQ, + ACTIONS(7670), 1, anon_sym_PLUS_EQ, + ACTIONS(7672), 1, anon_sym_DASH_EQ, + ACTIONS(7674), 1, anon_sym_LT_LT_EQ, + ACTIONS(7676), 1, anon_sym_GT_GT_EQ, + ACTIONS(7678), 1, anon_sym_AMP_EQ, + ACTIONS(7680), 1, anon_sym_CARET_EQ, + ACTIONS(7682), 1, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_DASH_GT_STAR, - [63113] = 6, + ACTIONS(7684), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7686), 1, + anon_sym_or, + ACTIONS(7688), 1, + anon_sym_and, + ACTIONS(7690), 1, + anon_sym_bitor, + ACTIONS(7692), 1, + anon_sym_xor, + ACTIONS(7694), 1, + anon_sym_bitand, + ACTIONS(7696), 1, + anon_sym_not_eq, + ACTIONS(7740), 1, + anon_sym_RPAREN, + STATE(1285), 1, + sym__binary_fold_operator, + STATE(3433), 1, + sym_argument_list, + STATE(3434), 1, + sym_subscript_argument_list, + STATE(8910), 1, + sym__fold_operator, + ACTIONS(7203), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7698), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [65471] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2499), 1, - anon_sym_LBRACE, - ACTIONS(6979), 1, - anon_sym_LPAREN2, - STATE(3627), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6188), 20, + ACTIONS(4934), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -350474,25 +356230,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6190), 29, + anon_sym_DASH_GT, + ACTIONS(4927), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK, + anon_sym_GT_EQ, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -350500,6 +356259,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -350513,32 +356273,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [63180] = 3, + anon_sym_DASH_GT_STAR, + [65531] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(6917), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, + ACTIONS(6751), 1, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(6915), 47, - anon_sym_AMP, - anon_sym___extension__, + ACTIONS(7745), 1, anon_sym_virtual, - anon_sym_extern, + ACTIONS(7754), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7757), 1, + anon_sym___declspec, + STATE(1680), 1, + sym_alignas_qualifier, + ACTIONS(7751), 2, anon_sym___attribute__, anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, + ACTIONS(7760), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3258), 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(7748), 9, + anon_sym_extern, anon_sym_static, anon_sym_register, anon_sym_inline, @@ -350547,6 +356311,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, + ACTIONS(7742), 13, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -350559,8 +356325,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + ACTIONS(6749), 14, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, sym_primitive_type, anon_sym_enum, anon_sym_class, @@ -350569,76 +356338,69 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_explicit, anon_sym_typename, anon_sym_template, - anon_sym_operator, - [63241] = 26, + [65609] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6864), 1, + ACTIONS(6935), 1, anon_sym_LPAREN2, - ACTIONS(7005), 1, - anon_sym_EQ, - ACTIONS(7223), 1, + ACTIONS(7708), 1, + anon_sym_PIPE, + ACTIONS(7712), 1, + anon_sym_AMP, + ACTIONS(7720), 1, anon_sym_LBRACK, - ACTIONS(7251), 1, + ACTIONS(7722), 1, anon_sym_LT_EQ_GT, - ACTIONS(7473), 1, - anon_sym_AMP, - ACTIONS(7479), 1, - anon_sym_GT_EQ, - ACTIONS(7483), 1, - anon_sym_bitand, - ACTIONS(7485), 1, - anon_sym_DOT_STAR, - ACTIONS(7487), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7489), 1, - anon_sym_AMP_AMP, - ACTIONS(7491), 1, - anon_sym_PIPE, - ACTIONS(7495), 1, - anon_sym_or, - ACTIONS(7497), 1, - anon_sym_and, - ACTIONS(7499), 1, + ACTIONS(7728), 1, anon_sym_bitor, - STATE(3515), 1, + ACTIONS(7730), 1, + anon_sym_bitand, + ACTIONS(7734), 1, + anon_sym_DOT, + STATE(3632), 1, sym_argument_list, - STATE(3516), 1, + STATE(3652), 1, sym_subscript_argument_list, - ACTIONS(7265), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7267), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7469), 2, + ACTIONS(7700), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7481), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7493), 2, + ACTIONS(7710), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(7471), 3, + ACTIONS(7718), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7732), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7736), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7702), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7475), 3, + ACTIONS(7714), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7477), 3, + ACTIONS(6518), 4, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + ACTIONS(7716), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7007), 18, + ACTIONS(6520), 18, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -350646,51 +356408,78 @@ static const uint16_t ts_small_parse_table[] = { 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_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_DASH_GT_STAR, - [63348] = 4, + anon_sym_GT2, + [65705] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(7558), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(6477), 19, + ACTIONS(6935), 1, + anon_sym_LPAREN2, + ACTIONS(7704), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7706), 1, + anon_sym_AMP_AMP, + ACTIONS(7708), 1, + anon_sym_PIPE, + ACTIONS(7712), 1, + anon_sym_AMP, + ACTIONS(7720), 1, + anon_sym_LBRACK, + ACTIONS(7722), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7724), 1, + anon_sym_or, + ACTIONS(7726), 1, + anon_sym_and, + ACTIONS(7728), 1, + anon_sym_bitor, + ACTIONS(7730), 1, + anon_sym_bitand, + ACTIONS(7734), 1, + anon_sym_DOT, + STATE(3632), 1, + sym_argument_list, + STATE(3652), 1, + sym_subscript_argument_list, + ACTIONS(7019), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(7700), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7710), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7718), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7732), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7736), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7702), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7714), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7716), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(6479), 33, + ACTIONS(7021), 16, anon_sym_DOT_DOT_DOT, 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_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -350698,60 +356487,71 @@ static const uint16_t ts_small_parse_table[] = { 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_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [63411] = 6, + anon_sym_GT2, + [65809] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2499), 1, - anon_sym_LBRACE, - ACTIONS(6979), 1, + ACTIONS(6935), 1, anon_sym_LPAREN2, - STATE(3625), 2, + ACTIONS(7712), 1, + anon_sym_AMP, + ACTIONS(7720), 1, + anon_sym_LBRACK, + ACTIONS(7722), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7730), 1, + anon_sym_bitand, + ACTIONS(7734), 1, + anon_sym_DOT, + STATE(3632), 1, sym_argument_list, - sym_initializer_list, - ACTIONS(6204), 20, + STATE(3652), 1, + sym_subscript_argument_list, + ACTIONS(7700), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7710), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7718), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7732), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7736), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7702), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7714), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7716), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(6518), 5, + anon_sym_PIPE, anon_sym_EQ, anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(6206), 29, + ACTIONS(6520), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -350765,126 +356565,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, anon_sym_GT2, - [63478] = 3, + [65901] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7038), 26, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(6935), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, + ACTIONS(7712), 1, + anon_sym_AMP, + ACTIONS(7720), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + ACTIONS(7722), 1, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7036), 27, - 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_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, + ACTIONS(7730), 1, anon_sym_bitand, - anon_sym_not_eq, + ACTIONS(7734), 1, anon_sym_DOT, - sym_literal_suffix, - [63539] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6864), 1, - anon_sym_LPAREN2, - ACTIONS(7223), 1, - anon_sym_LBRACK, - ACTIONS(7251), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7479), 1, - anon_sym_GT_EQ, - ACTIONS(7485), 1, - anon_sym_DOT_STAR, - STATE(3515), 1, + STATE(3632), 1, sym_argument_list, - STATE(3516), 1, + STATE(3652), 1, sym_subscript_argument_list, - ACTIONS(7265), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7267), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7469), 2, + ACTIONS(7700), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7481), 2, + ACTIONS(7718), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7471), 3, + ACTIONS(7732), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7736), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7702), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7475), 3, + ACTIONS(7714), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7477), 3, + ACTIONS(7716), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6449), 7, + ACTIONS(6518), 7, anon_sym_PIPE, anon_sym_CARET, - anon_sym_AMP, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6451), 22, + ACTIONS(6520), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_QMARK, @@ -350894,7 +356631,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -350902,35 +356638,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or_eq, anon_sym_xor_eq, anon_sym_bitor, - anon_sym_bitand, - anon_sym_DASH_GT_STAR, - [63628] = 12, + anon_sym_GT2, + [65991] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, - anon_sym_LPAREN2, - ACTIONS(6429), 1, - anon_sym_LBRACK, - ACTIONS(7564), 1, - anon_sym_DOT, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6439), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7560), 2, + ACTIONS(4934), 20, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7566), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7562), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6449), 12, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -350939,19 +356656,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6451), 26, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4927), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -350970,67 +356692,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [63706] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [66051] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5192), 22, - aux_sym_preproc_elif_token1, + ACTIONS(4934), 20, 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_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(5194), 30, + anon_sym_DASH_GT, + ACTIONS(4927), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_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_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [63766] = 3, + anon_sym_DASH_GT_STAR, + [66111] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5162), 22, + ACTIONS(5170), 22, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -351053,7 +356779,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - ACTIONS(5164), 30, + ACTIONS(5172), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -351084,14 +356810,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [63826] = 5, + [66171] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7568), 1, - anon_sym_LT, - STATE(3129), 1, - sym_template_argument_list, - ACTIONS(6513), 18, + ACTIONS(5519), 1, + anon_sym_COLON_COLON, + ACTIONS(5515), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -351102,15 +356826,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6515), 32, + ACTIONS(5517), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -351120,6 +356842,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -351132,21 +356855,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [63890] = 3, + [66233] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7036), 26, + ACTIONS(6935), 1, + anon_sym_LPAREN2, + ACTIONS(7720), 1, + anon_sym_LBRACK, + ACTIONS(7734), 1, + anon_sym_DOT, + STATE(3632), 1, + sym_argument_list, + STATE(3652), 1, + sym_subscript_argument_list, + ACTIONS(7736), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6433), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -351156,34 +356894,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - anon_sym_DASH_GT, - sym_literal_suffix, - ACTIONS(7038), 26, + ACTIONS(6435), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -351191,19 +356918,23 @@ static const uint16_t ts_small_parse_table[] = { 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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [63950] = 3, + anon_sym_GT2, + [66305] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5148), 22, + ACTIONS(5188), 22, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -351226,7 +356957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - ACTIONS(5150), 30, + ACTIONS(5190), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -351257,322 +356988,285 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [64010] = 51, + [66365] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(6864), 1, + ACTIONS(6935), 1, anon_sym_LPAREN2, - ACTIONS(7223), 1, + ACTIONS(7704), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7706), 1, + anon_sym_AMP_AMP, + ACTIONS(7708), 1, + anon_sym_PIPE, + ACTIONS(7712), 1, + anon_sym_AMP, + ACTIONS(7720), 1, anon_sym_LBRACK, - ACTIONS(7269), 1, + ACTIONS(7722), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7724), 1, + anon_sym_or, + ACTIONS(7726), 1, + anon_sym_and, + ACTIONS(7728), 1, + anon_sym_bitor, + ACTIONS(7730), 1, + anon_sym_bitand, + ACTIONS(7734), 1, + anon_sym_DOT, + STATE(3632), 1, + sym_argument_list, + STATE(3652), 1, + sym_subscript_argument_list, + ACTIONS(7015), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(7700), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7710), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7718), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7732), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7736), 2, anon_sym_DOT_STAR, - ACTIONS(7271), 1, - anon_sym_DASH_GT_STAR, - ACTIONS(7571), 1, + anon_sym_DASH_GT, + ACTIONS(7702), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7714), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7716), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7017), 16, anon_sym_DOT_DOT_DOT, - ACTIONS(7573), 1, anon_sym_COMMA, - ACTIONS(7575), 1, - anon_sym_RPAREN, - ACTIONS(7577), 1, + 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_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_GT2, + [66469] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4187), 1, + anon_sym_COLON_COLON, + ACTIONS(7763), 1, + anon_sym_LT, + STATE(3518), 1, + sym_template_argument_list, + ACTIONS(6352), 19, anon_sym_DASH, - ACTIONS(7579), 1, anon_sym_PLUS, - ACTIONS(7581), 1, anon_sym_STAR, - ACTIONS(7583), 1, anon_sym_SLASH, - ACTIONS(7585), 1, anon_sym_PERCENT, - ACTIONS(7587), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7589), 1, - anon_sym_AMP_AMP, - ACTIONS(7591), 1, anon_sym_PIPE, - ACTIONS(7593), 1, anon_sym_CARET, - ACTIONS(7595), 1, anon_sym_AMP, - ACTIONS(7597), 1, - anon_sym_EQ_EQ, - ACTIONS(7599), 1, - anon_sym_BANG_EQ, - ACTIONS(7601), 1, anon_sym_GT, - ACTIONS(7603), 1, anon_sym_GT_EQ, - ACTIONS(7605), 1, anon_sym_LT_EQ, - ACTIONS(7607), 1, - anon_sym_LT, - ACTIONS(7609), 1, anon_sym_LT_LT, - ACTIONS(7611), 1, anon_sym_GT_GT, - ACTIONS(7613), 1, anon_sym_EQ, - ACTIONS(7615), 1, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(6354), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, anon_sym_QMARK, - ACTIONS(7617), 1, anon_sym_STAR_EQ, - ACTIONS(7619), 1, anon_sym_SLASH_EQ, - ACTIONS(7621), 1, anon_sym_PERCENT_EQ, - ACTIONS(7623), 1, anon_sym_PLUS_EQ, - ACTIONS(7625), 1, anon_sym_DASH_EQ, - ACTIONS(7627), 1, anon_sym_LT_LT_EQ, - ACTIONS(7629), 1, - anon_sym_GT_GT_EQ, - ACTIONS(7631), 1, anon_sym_AMP_EQ, - ACTIONS(7633), 1, anon_sym_CARET_EQ, - ACTIONS(7635), 1, anon_sym_PIPE_EQ, - ACTIONS(7637), 1, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - ACTIONS(7639), 1, - anon_sym_or, - ACTIONS(7641), 1, - anon_sym_and, - ACTIONS(7643), 1, anon_sym_bitor, - ACTIONS(7645), 1, - anon_sym_xor, - ACTIONS(7647), 1, anon_sym_bitand, - ACTIONS(7649), 1, anon_sym_not_eq, - STATE(1216), 1, - sym__binary_fold_operator, - STATE(3515), 1, - sym_argument_list, - STATE(3516), 1, - sym_subscript_argument_list, - STATE(8694), 1, - sym__fold_operator, - ACTIONS(7267), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7651), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [64166] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7042), 1, - anon_sym_AMP_AMP, - ACTIONS(7044), 1, - anon_sym_AMP, - ACTIONS(7057), 1, - anon_sym_LBRACK, - ACTIONS(7065), 1, - anon_sym___asm, - ACTIONS(7072), 1, - anon_sym_noexcept, - ACTIONS(7074), 1, - anon_sym_throw, - ACTIONS(7307), 1, - anon_sym___attribute__, - ACTIONS(7310), 1, - anon_sym___attribute, - ACTIONS(7551), 1, - anon_sym_requires, - ACTIONS(7653), 1, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - STATE(1658), 1, - sym_alignas_qualifier, - STATE(4960), 1, - sym__function_attributes_start, - STATE(5229), 1, - sym_ref_qualifier, - STATE(6113), 1, - sym__function_attributes_end, - STATE(6196), 1, - sym_trailing_return_type, - STATE(6766), 1, - sym_gnu_asm_expression, - ACTIONS(7063), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7152), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(7335), 2, - anon_sym_final, - anon_sym_override, - STATE(3982), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4184), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5458), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5984), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7040), 3, - anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_GT2, - STATE(5366), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7145), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [64280] = 3, + [66535] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5166), 22, - aux_sym_preproc_elif_token1, + ACTIONS(6935), 1, + anon_sym_LPAREN2, + ACTIONS(7720), 1, + anon_sym_LBRACK, + ACTIONS(7722), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7734), 1, + anon_sym_DOT, + STATE(3632), 1, + sym_argument_list, + STATE(3652), 1, + sym_subscript_argument_list, + ACTIONS(7700), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7718), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7732), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7736), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7702), 3, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + anon_sym_PERCENT, + ACTIONS(7714), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7716), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, + ACTIONS(6518), 8, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(5168), 30, + ACTIONS(6520), 20, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_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_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [64340] = 29, + 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_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_GT2, + [66621] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(6524), 1, + ACTIONS(6662), 1, anon_sym_EQ, - ACTIONS(6991), 1, + ACTIONS(6981), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7115), 1, + ACTIONS(7229), 1, anon_sym_PIPE_PIPE, - ACTIONS(7117), 1, + ACTIONS(7231), 1, anon_sym_AMP_AMP, - ACTIONS(7119), 1, + ACTIONS(7233), 1, anon_sym_PIPE, - ACTIONS(7123), 1, + ACTIONS(7237), 1, anon_sym_AMP, - ACTIONS(7129), 1, + ACTIONS(7243), 1, anon_sym_GT_EQ, - ACTIONS(7133), 1, - anon_sym_QMARK, - ACTIONS(7135), 1, + ACTIONS(7247), 1, anon_sym_LT_EQ_GT, - ACTIONS(7137), 1, + ACTIONS(7249), 1, anon_sym_or, - ACTIONS(7139), 1, + ACTIONS(7251), 1, anon_sym_and, - ACTIONS(7141), 1, + ACTIONS(7253), 1, anon_sym_bitor, - ACTIONS(7143), 1, + ACTIONS(7255), 1, anon_sym_bitand, - STATE(2525), 1, + ACTIONS(7279), 1, + anon_sym_QMARK, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6439), 2, + ACTIONS(6416), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7111), 2, + ACTIONS(6420), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7121), 2, + ACTIONS(7235), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(7131), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7655), 2, + ACTIONS(7766), 2, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(7113), 3, + ACTIONS(7227), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7125), 3, + ACTIONS(7239), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7127), 3, + ACTIONS(7241), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6526), 13, + ACTIONS(6664), 13, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -351586,193 +357280,431 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [64452] = 3, + [66733] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 22, - aux_sym_preproc_elif_token1, + ACTIONS(6935), 1, + anon_sym_LPAREN2, + ACTIONS(7704), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7706), 1, + anon_sym_AMP_AMP, + ACTIONS(7708), 1, + anon_sym_PIPE, + ACTIONS(7712), 1, + anon_sym_AMP, + ACTIONS(7720), 1, + anon_sym_LBRACK, + ACTIONS(7722), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7724), 1, + anon_sym_or, + ACTIONS(7726), 1, + anon_sym_and, + ACTIONS(7728), 1, + anon_sym_bitor, + ACTIONS(7730), 1, + anon_sym_bitand, + ACTIONS(7734), 1, + anon_sym_DOT, + STATE(3632), 1, + sym_argument_list, + STATE(3652), 1, + sym_subscript_argument_list, + ACTIONS(6993), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(7700), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7710), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7718), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7732), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7736), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7702), 3, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + anon_sym_PERCENT, + ACTIONS(7714), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7716), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + ACTIONS(6995), 16, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + 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_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_GT2, + [66837] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4187), 1, + anon_sym_COLON_COLON, + ACTIONS(7483), 1, + anon_sym_LT, + ACTIONS(7577), 1, + anon_sym_EQ, + STATE(2756), 1, + sym_template_argument_list, + ACTIONS(7575), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(4192), 7, + anon_sym_DOT_DOT_DOT, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(5834), 39, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, + anon_sym_COLON, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, sym_identifier, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_requires, - ACTIONS(1934), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_template, + anon_sym_operator, + [66907] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6935), 1, anon_sym_LPAREN2, + ACTIONS(7720), 1, + anon_sym_LBRACK, + ACTIONS(7722), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7734), 1, + anon_sym_DOT, + STATE(3632), 1, + sym_argument_list, + STATE(3652), 1, + sym_subscript_argument_list, + ACTIONS(7700), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7718), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7732), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7736), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7702), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(7716), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6518), 8, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(6520), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, 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_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + 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_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_GT2, + [66991] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(67), 1, + anon_sym_const, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7048), 1, + anon_sym_AMP_AMP, + ACTIONS(7050), 1, + anon_sym_AMP, + ACTIONS(7063), 1, + anon_sym_LBRACK, + ACTIONS(7071), 1, + anon_sym___asm, + ACTIONS(7075), 1, + anon_sym_noexcept, + ACTIONS(7077), 1, + anon_sym_throw, + ACTIONS(7369), 1, + anon_sym___attribute__, + ACTIONS(7372), 1, + anon_sym___attribute, + ACTIONS(7538), 1, + anon_sym_requires, + ACTIONS(7768), 1, anon_sym_DASH_GT, - [64512] = 51, + STATE(1680), 1, + sym_alignas_qualifier, + STATE(5039), 1, + sym__function_attributes_start, + STATE(5264), 1, + sym_ref_qualifier, + STATE(6251), 1, + sym__function_attributes_end, + STATE(6294), 1, + sym_trailing_return_type, + STATE(6870), 1, + sym_gnu_asm_expression, + ACTIONS(7069), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7304), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7359), 2, + anon_sym_final, + anon_sym_override, + STATE(4041), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4265), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5507), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6017), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6125), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7046), 3, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + STATE(5429), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7297), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [67105] = 51, ACTIONS(3), 1, sym_comment, - ACTIONS(6864), 1, + ACTIONS(6886), 1, anon_sym_LPAREN2, - ACTIONS(7223), 1, + ACTIONS(7159), 1, anon_sym_LBRACK, - ACTIONS(7269), 1, + ACTIONS(7205), 1, anon_sym_DOT_STAR, - ACTIONS(7271), 1, + ACTIONS(7207), 1, anon_sym_DASH_GT_STAR, - ACTIONS(7571), 1, + ACTIONS(7618), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7573), 1, + ACTIONS(7620), 1, anon_sym_COMMA, - ACTIONS(7577), 1, + ACTIONS(7624), 1, anon_sym_DASH, - ACTIONS(7579), 1, + ACTIONS(7626), 1, anon_sym_PLUS, - ACTIONS(7581), 1, + ACTIONS(7628), 1, anon_sym_STAR, - ACTIONS(7583), 1, + ACTIONS(7630), 1, anon_sym_SLASH, - ACTIONS(7585), 1, + ACTIONS(7632), 1, anon_sym_PERCENT, - ACTIONS(7587), 1, + ACTIONS(7634), 1, anon_sym_PIPE_PIPE, - ACTIONS(7589), 1, + ACTIONS(7636), 1, anon_sym_AMP_AMP, - ACTIONS(7591), 1, + ACTIONS(7638), 1, anon_sym_PIPE, - ACTIONS(7593), 1, + ACTIONS(7640), 1, anon_sym_CARET, - ACTIONS(7595), 1, + ACTIONS(7642), 1, anon_sym_AMP, - ACTIONS(7597), 1, + ACTIONS(7644), 1, anon_sym_EQ_EQ, - ACTIONS(7599), 1, + ACTIONS(7646), 1, anon_sym_BANG_EQ, - ACTIONS(7601), 1, + ACTIONS(7648), 1, anon_sym_GT, - ACTIONS(7603), 1, + ACTIONS(7650), 1, anon_sym_GT_EQ, - ACTIONS(7605), 1, + ACTIONS(7652), 1, anon_sym_LT_EQ, - ACTIONS(7607), 1, + ACTIONS(7654), 1, anon_sym_LT, - ACTIONS(7609), 1, + ACTIONS(7656), 1, anon_sym_LT_LT, - ACTIONS(7611), 1, + ACTIONS(7658), 1, anon_sym_GT_GT, - ACTIONS(7613), 1, + ACTIONS(7660), 1, anon_sym_EQ, - ACTIONS(7615), 1, + ACTIONS(7662), 1, anon_sym_QMARK, - ACTIONS(7617), 1, + ACTIONS(7664), 1, anon_sym_STAR_EQ, - ACTIONS(7619), 1, + ACTIONS(7666), 1, anon_sym_SLASH_EQ, - ACTIONS(7621), 1, + ACTIONS(7668), 1, anon_sym_PERCENT_EQ, - ACTIONS(7623), 1, + ACTIONS(7670), 1, anon_sym_PLUS_EQ, - ACTIONS(7625), 1, + ACTIONS(7672), 1, anon_sym_DASH_EQ, - ACTIONS(7627), 1, + ACTIONS(7674), 1, anon_sym_LT_LT_EQ, - ACTIONS(7629), 1, + ACTIONS(7676), 1, anon_sym_GT_GT_EQ, - ACTIONS(7631), 1, + ACTIONS(7678), 1, anon_sym_AMP_EQ, - ACTIONS(7633), 1, + ACTIONS(7680), 1, anon_sym_CARET_EQ, - ACTIONS(7635), 1, + ACTIONS(7682), 1, anon_sym_PIPE_EQ, - ACTIONS(7637), 1, + ACTIONS(7684), 1, anon_sym_LT_EQ_GT, - ACTIONS(7639), 1, + ACTIONS(7686), 1, anon_sym_or, - ACTIONS(7641), 1, + ACTIONS(7688), 1, anon_sym_and, - ACTIONS(7643), 1, + ACTIONS(7690), 1, anon_sym_bitor, - ACTIONS(7645), 1, + ACTIONS(7692), 1, anon_sym_xor, - ACTIONS(7647), 1, + ACTIONS(7694), 1, anon_sym_bitand, - ACTIONS(7649), 1, + ACTIONS(7696), 1, anon_sym_not_eq, - ACTIONS(7657), 1, + ACTIONS(7770), 1, anon_sym_RPAREN, - STATE(1216), 1, + STATE(1285), 1, sym__binary_fold_operator, - STATE(3515), 1, + STATE(3433), 1, sym_argument_list, - STATE(3516), 1, + STATE(3434), 1, sym_subscript_argument_list, - STATE(8694), 1, + STATE(8910), 1, sym__fold_operator, - ACTIONS(7267), 2, + ACTIONS(7203), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7651), 2, + ACTIONS(7698), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [64668] = 10, + [67261] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(6979), 1, + ACTIONS(6935), 1, anon_sym_LPAREN2, - ACTIONS(7659), 1, + ACTIONS(7720), 1, anon_sym_LBRACK, - ACTIONS(7663), 1, + ACTIONS(7734), 1, anon_sym_DOT, - STATE(3545), 1, + STATE(3632), 1, sym_argument_list, - STATE(3546), 1, + STATE(3652), 1, sym_subscript_argument_list, - ACTIONS(7661), 2, + ACTIONS(7732), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7665), 2, + ACTIONS(7736), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6491), 19, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(7702), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(6518), 16, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -351787,7 +357719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6493), 24, + ACTIONS(6520), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -351812,10 +357744,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_GT2, - [64742] = 3, + [67337] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5136), 22, + ACTIONS(1936), 22, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -351838,7 +357770,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - ACTIONS(5138), 30, + ACTIONS(1934), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -351869,175 +357801,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [64802] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7042), 1, - anon_sym_AMP_AMP, - ACTIONS(7044), 1, - anon_sym_AMP, - ACTIONS(7057), 1, - anon_sym_LBRACK, - ACTIONS(7065), 1, - anon_sym___asm, - ACTIONS(7072), 1, - anon_sym_noexcept, - ACTIONS(7074), 1, - anon_sym_throw, - ACTIONS(7307), 1, - anon_sym___attribute__, - ACTIONS(7310), 1, - anon_sym___attribute, - ACTIONS(7337), 1, - anon_sym_requires, - ACTIONS(7667), 1, - anon_sym_DASH_GT, - STATE(1658), 1, - sym_alignas_qualifier, - STATE(4973), 1, - sym__function_attributes_start, - STATE(5219), 1, - sym_ref_qualifier, - STATE(5985), 1, - sym_trailing_return_type, - STATE(6094), 1, - sym__function_attributes_end, - STATE(6766), 1, - sym_gnu_asm_expression, - ACTIONS(7063), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7152), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(7335), 2, - anon_sym_final, - anon_sym_override, - STATE(3982), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4184), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5458), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5984), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7040), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - STATE(5356), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7145), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [64916] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6979), 1, - anon_sym_LPAREN2, - ACTIONS(7659), 1, - anon_sym_LBRACK, - ACTIONS(7663), 1, - anon_sym_DOT, - ACTIONS(7669), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7675), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7677), 1, - anon_sym_AMP_AMP, - ACTIONS(7679), 1, - anon_sym_PIPE, - ACTIONS(7683), 1, - anon_sym_AMP, - ACTIONS(7691), 1, - anon_sym_QMARK, - ACTIONS(7693), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7695), 1, - anon_sym_or, - ACTIONS(7697), 1, - anon_sym_and, - ACTIONS(7699), 1, - anon_sym_bitor, - ACTIONS(7701), 1, - anon_sym_bitand, - STATE(3545), 1, - sym_argument_list, - STATE(3546), 1, - sym_subscript_argument_list, - ACTIONS(7011), 2, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(7661), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7665), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7671), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7681), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7689), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7673), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7685), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7687), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7013), 14, - anon_sym_COMMA, - 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_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_GT2, - [65024] = 3, + [67397] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4972), 20, + ACTIONS(7081), 26, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -352051,14 +357818,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4965), 32, + sym_literal_suffix, + ACTIONS(7083), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -352068,7 +357841,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -352080,78 +357853,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [65084] = 3, + [67457] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5629), 16, + ACTIONS(5200), 22, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5631), 36, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(5202), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_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_COLON_COLON, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACE, + anon_sym_RBRACE, 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_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [65144] = 3, + anon_sym_DASH_GT, + [67517] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6698), 19, + ACTIONS(6502), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -352171,18 +357938,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6700), 33, + anon_sym_DASH_GT, + ACTIONS(6504), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -352203,43 +357970,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [67577] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6935), 1, + anon_sym_LPAREN2, + ACTIONS(7704), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7706), 1, + anon_sym_AMP_AMP, + ACTIONS(7708), 1, + anon_sym_PIPE, + ACTIONS(7712), 1, + anon_sym_AMP, + ACTIONS(7720), 1, + anon_sym_LBRACK, + ACTIONS(7722), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7724), 1, + anon_sym_or, + ACTIONS(7726), 1, + anon_sym_and, + ACTIONS(7728), 1, + anon_sym_bitor, + ACTIONS(7730), 1, + anon_sym_bitand, + ACTIONS(7734), 1, + anon_sym_DOT, + ACTIONS(7772), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7774), 1, + anon_sym_QMARK, + STATE(3632), 1, + sym_argument_list, + STATE(3652), 1, + sym_subscript_argument_list, + ACTIONS(6997), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(7700), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7710), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7718), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7732), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7736), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [65204] = 3, + ACTIONS(7702), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7714), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7716), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6999), 14, + anon_sym_COMMA, + 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_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_GT2, + [67685] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(4972), 20, + ACTIONS(6935), 1, + anon_sym_LPAREN2, + ACTIONS(7720), 1, + anon_sym_LBRACK, + ACTIONS(7722), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7734), 1, + anon_sym_DOT, + STATE(3632), 1, + sym_argument_list, + STATE(3652), 1, + sym_subscript_argument_list, + ACTIONS(7700), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7718), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7732), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7736), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7702), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(6518), 12, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4965), 32, + ACTIONS(6520), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -352247,25 +358111,20 @@ static const uint16_t ts_small_parse_table[] = { 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_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [65264] = 3, + anon_sym_GT2, + [67767] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4972), 20, + ACTIONS(3959), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -352286,7 +358145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4965), 32, + ACTIONS(3961), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -352319,115 +358178,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [65324] = 51, + [67827] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6864), 1, - anon_sym_LPAREN2, - ACTIONS(7223), 1, - anon_sym_LBRACK, - ACTIONS(7269), 1, - anon_sym_DOT_STAR, - ACTIONS(7271), 1, - anon_sym_DASH_GT_STAR, - ACTIONS(7571), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7573), 1, - anon_sym_COMMA, - ACTIONS(7577), 1, + ACTIONS(6506), 20, anon_sym_DASH, - ACTIONS(7579), 1, anon_sym_PLUS, - ACTIONS(7581), 1, anon_sym_STAR, - ACTIONS(7583), 1, anon_sym_SLASH, - ACTIONS(7585), 1, anon_sym_PERCENT, - ACTIONS(7587), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7589), 1, - anon_sym_AMP_AMP, - ACTIONS(7591), 1, anon_sym_PIPE, - ACTIONS(7593), 1, anon_sym_CARET, - ACTIONS(7595), 1, anon_sym_AMP, - ACTIONS(7597), 1, - anon_sym_EQ_EQ, - ACTIONS(7599), 1, - anon_sym_BANG_EQ, - ACTIONS(7601), 1, anon_sym_GT, - ACTIONS(7603), 1, - anon_sym_GT_EQ, - ACTIONS(7605), 1, anon_sym_LT_EQ, - ACTIONS(7607), 1, anon_sym_LT, - ACTIONS(7609), 1, anon_sym_LT_LT, - ACTIONS(7611), 1, anon_sym_GT_GT, - ACTIONS(7613), 1, + anon_sym_LBRACK, anon_sym_EQ, - ACTIONS(7615), 1, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6508), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, - ACTIONS(7617), 1, anon_sym_STAR_EQ, - ACTIONS(7619), 1, anon_sym_SLASH_EQ, - ACTIONS(7621), 1, anon_sym_PERCENT_EQ, - ACTIONS(7623), 1, anon_sym_PLUS_EQ, - ACTIONS(7625), 1, anon_sym_DASH_EQ, - ACTIONS(7627), 1, anon_sym_LT_LT_EQ, - ACTIONS(7629), 1, anon_sym_GT_GT_EQ, - ACTIONS(7631), 1, anon_sym_AMP_EQ, - ACTIONS(7633), 1, anon_sym_CARET_EQ, - ACTIONS(7635), 1, anon_sym_PIPE_EQ, - ACTIONS(7637), 1, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - ACTIONS(7639), 1, - anon_sym_or, - ACTIONS(7641), 1, - anon_sym_and, - ACTIONS(7643), 1, anon_sym_bitor, - ACTIONS(7645), 1, - anon_sym_xor, - ACTIONS(7647), 1, anon_sym_bitand, - ACTIONS(7649), 1, anon_sym_not_eq, - ACTIONS(7703), 1, - anon_sym_RPAREN, - STATE(1216), 1, - sym__binary_fold_operator, - STATE(3515), 1, - sym_argument_list, - STATE(3516), 1, - sym_subscript_argument_list, - STATE(8694), 1, - sym__fold_operator, - ACTIONS(7267), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7651), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [65480] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [67887] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6208), 20, + ACTIONS(6494), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -352448,7 +358259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6210), 32, + ACTIONS(6496), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -352481,101 +358292,159 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [65540] = 3, + [67947] = 51, ACTIONS(3), 1, sym_comment, - ACTIONS(4972), 20, + ACTIONS(6886), 1, + anon_sym_LPAREN2, + ACTIONS(7159), 1, + anon_sym_LBRACK, + ACTIONS(7205), 1, + anon_sym_DOT_STAR, + ACTIONS(7207), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(7618), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7620), 1, + anon_sym_COMMA, + ACTIONS(7624), 1, anon_sym_DASH, + ACTIONS(7626), 1, anon_sym_PLUS, + ACTIONS(7628), 1, anon_sym_STAR, + ACTIONS(7630), 1, anon_sym_SLASH, + ACTIONS(7632), 1, anon_sym_PERCENT, + ACTIONS(7634), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7636), 1, + anon_sym_AMP_AMP, + ACTIONS(7638), 1, anon_sym_PIPE, + ACTIONS(7640), 1, anon_sym_CARET, + ACTIONS(7642), 1, anon_sym_AMP, + ACTIONS(7644), 1, + anon_sym_EQ_EQ, + ACTIONS(7646), 1, + anon_sym_BANG_EQ, + ACTIONS(7648), 1, anon_sym_GT, + ACTIONS(7650), 1, + anon_sym_GT_EQ, + ACTIONS(7652), 1, anon_sym_LT_EQ, + ACTIONS(7654), 1, anon_sym_LT, + ACTIONS(7656), 1, anon_sym_LT_LT, + ACTIONS(7658), 1, anon_sym_GT_GT, - anon_sym_LBRACK, + ACTIONS(7660), 1, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4965), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, + ACTIONS(7662), 1, anon_sym_QMARK, + ACTIONS(7664), 1, anon_sym_STAR_EQ, + ACTIONS(7666), 1, anon_sym_SLASH_EQ, + ACTIONS(7668), 1, anon_sym_PERCENT_EQ, + ACTIONS(7670), 1, anon_sym_PLUS_EQ, + ACTIONS(7672), 1, anon_sym_DASH_EQ, + ACTIONS(7674), 1, anon_sym_LT_LT_EQ, + ACTIONS(7676), 1, anon_sym_GT_GT_EQ, + ACTIONS(7678), 1, anon_sym_AMP_EQ, + ACTIONS(7680), 1, anon_sym_CARET_EQ, + ACTIONS(7682), 1, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + ACTIONS(7684), 1, anon_sym_LT_EQ_GT, + ACTIONS(7686), 1, + anon_sym_or, + ACTIONS(7688), 1, + anon_sym_and, + ACTIONS(7690), 1, anon_sym_bitor, + ACTIONS(7692), 1, + anon_sym_xor, + ACTIONS(7694), 1, anon_sym_bitand, + ACTIONS(7696), 1, anon_sym_not_eq, + ACTIONS(7776), 1, + anon_sym_RPAREN, + STATE(1285), 1, + sym__binary_fold_operator, + STATE(3433), 1, + sym_argument_list, + STATE(3434), 1, + sym_subscript_argument_list, + STATE(8910), 1, + sym__fold_operator, + ACTIONS(7203), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7698), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [65600] = 6, + [68103] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5036), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5949), 1, - anon_sym_LBRACK, - ACTIONS(5946), 2, - anon_sym_RPAREN, + ACTIONS(6935), 1, anon_sym_LPAREN2, - ACTIONS(4154), 19, + ACTIONS(7720), 1, + anon_sym_LBRACK, + ACTIONS(7734), 1, + anon_sym_DOT, + STATE(3632), 1, + sym_argument_list, + STATE(3652), 1, + sym_subscript_argument_list, + ACTIONS(7700), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7732), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7736), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7702), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(6518), 14, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4146), 29, + ACTIONS(6520), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -352583,7 +358452,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -352594,14 +358462,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [65666] = 3, + anon_sym_GT2, + [68181] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4972), 20, + ACTIONS(6006), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -352622,7 +358487,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4965), 32, + ACTIONS(6004), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -352655,12 +358520,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [65726] = 4, + [68241] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7705), 1, - sym_literal_suffix, - ACTIONS(4154), 25, + ACTIONS(6678), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -352674,29 +358537,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4146), 26, + ACTIONS(6680), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -352708,182 +358566,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [65788] = 51, + anon_sym_DASH_GT, + [68301] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6864), 1, + ACTIONS(6935), 1, anon_sym_LPAREN2, - ACTIONS(7223), 1, + ACTIONS(7704), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7706), 1, + anon_sym_AMP_AMP, + ACTIONS(7708), 1, + anon_sym_PIPE, + ACTIONS(7712), 1, + anon_sym_AMP, + ACTIONS(7720), 1, anon_sym_LBRACK, - ACTIONS(7269), 1, - anon_sym_DOT_STAR, - ACTIONS(7271), 1, - anon_sym_DASH_GT_STAR, - ACTIONS(7571), 1, + ACTIONS(7722), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7724), 1, + anon_sym_or, + ACTIONS(7726), 1, + anon_sym_and, + ACTIONS(7728), 1, + anon_sym_bitor, + ACTIONS(7730), 1, + anon_sym_bitand, + ACTIONS(7734), 1, + anon_sym_DOT, + ACTIONS(7772), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7573), 1, - anon_sym_COMMA, - ACTIONS(7577), 1, + ACTIONS(7774), 1, + anon_sym_QMARK, + STATE(3632), 1, + sym_argument_list, + STATE(3652), 1, + sym_subscript_argument_list, + ACTIONS(6662), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(7700), 2, anon_sym_DASH, - ACTIONS(7579), 1, anon_sym_PLUS, - ACTIONS(7581), 1, + ACTIONS(7710), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7718), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7732), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7736), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7702), 3, anon_sym_STAR, - ACTIONS(7583), 1, anon_sym_SLASH, - ACTIONS(7585), 1, anon_sym_PERCENT, - ACTIONS(7587), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7589), 1, - anon_sym_AMP_AMP, - ACTIONS(7591), 1, - anon_sym_PIPE, - ACTIONS(7593), 1, - anon_sym_CARET, - ACTIONS(7595), 1, - anon_sym_AMP, - ACTIONS(7597), 1, + ACTIONS(7714), 3, anon_sym_EQ_EQ, - ACTIONS(7599), 1, anon_sym_BANG_EQ, - ACTIONS(7601), 1, + anon_sym_not_eq, + ACTIONS(7716), 4, anon_sym_GT, - ACTIONS(7603), 1, anon_sym_GT_EQ, - ACTIONS(7605), 1, anon_sym_LT_EQ, - ACTIONS(7607), 1, anon_sym_LT, - ACTIONS(7609), 1, - anon_sym_LT_LT, - ACTIONS(7611), 1, - anon_sym_GT_GT, - ACTIONS(7613), 1, - anon_sym_EQ, - ACTIONS(7615), 1, - anon_sym_QMARK, - ACTIONS(7617), 1, + ACTIONS(6664), 14, + anon_sym_COMMA, anon_sym_STAR_EQ, - ACTIONS(7619), 1, anon_sym_SLASH_EQ, - ACTIONS(7621), 1, anon_sym_PERCENT_EQ, - ACTIONS(7623), 1, anon_sym_PLUS_EQ, - ACTIONS(7625), 1, anon_sym_DASH_EQ, - ACTIONS(7627), 1, anon_sym_LT_LT_EQ, - ACTIONS(7629), 1, - anon_sym_GT_GT_EQ, - ACTIONS(7631), 1, anon_sym_AMP_EQ, - ACTIONS(7633), 1, anon_sym_CARET_EQ, - ACTIONS(7635), 1, anon_sym_PIPE_EQ, - ACTIONS(7637), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7639), 1, - anon_sym_or, - ACTIONS(7641), 1, - anon_sym_and, - ACTIONS(7643), 1, - anon_sym_bitor, - ACTIONS(7645), 1, - anon_sym_xor, - ACTIONS(7647), 1, - anon_sym_bitand, - ACTIONS(7649), 1, - anon_sym_not_eq, - ACTIONS(7707), 1, - anon_sym_RPAREN, - STATE(1216), 1, - sym__binary_fold_operator, - STATE(3515), 1, - sym_argument_list, - STATE(3516), 1, - sym_subscript_argument_list, - STATE(8694), 1, - sym__fold_operator, - ACTIONS(7267), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7651), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - [65944] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4167), 1, - anon_sym_COLON_COLON, - ACTIONS(7709), 1, - anon_sym_LT, - STATE(1844), 1, - sym_template_argument_list, - STATE(1935), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5038), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4144), 10, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(4152), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [66014] = 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_GT2, + [68409] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4972), 20, + ACTIONS(3943), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -352904,7 +358682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4965), 32, + ACTIONS(3945), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -352937,115 +358715,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [66074] = 51, + [68469] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(6864), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(7223), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(7269), 1, - anon_sym_DOT_STAR, - ACTIONS(7271), 1, - anon_sym_DASH_GT_STAR, - ACTIONS(7571), 1, + ACTIONS(6418), 1, + anon_sym_DOT, + ACTIONS(6981), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7573), 1, + ACTIONS(7229), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7231), 1, + anon_sym_AMP_AMP, + ACTIONS(7233), 1, + anon_sym_PIPE, + ACTIONS(7237), 1, + anon_sym_AMP, + ACTIONS(7243), 1, + anon_sym_GT_EQ, + ACTIONS(7247), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7249), 1, + anon_sym_or, + ACTIONS(7251), 1, + anon_sym_and, + ACTIONS(7253), 1, + anon_sym_bitor, + ACTIONS(7255), 1, + anon_sym_bitand, + ACTIONS(7279), 1, + anon_sym_QMARK, + ACTIONS(7316), 1, + anon_sym_RPAREN, + ACTIONS(7778), 1, anon_sym_COMMA, - ACTIONS(7577), 1, + ACTIONS(7780), 1, + anon_sym_EQ, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + ACTIONS(6416), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6420), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7225), 2, anon_sym_DASH, - ACTIONS(7579), 1, anon_sym_PLUS, - ACTIONS(7581), 1, + ACTIONS(7235), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7245), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7227), 3, anon_sym_STAR, - ACTIONS(7583), 1, anon_sym_SLASH, - ACTIONS(7585), 1, anon_sym_PERCENT, - ACTIONS(7587), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7589), 1, - anon_sym_AMP_AMP, - ACTIONS(7591), 1, - anon_sym_PIPE, - ACTIONS(7593), 1, - anon_sym_CARET, - ACTIONS(7595), 1, - anon_sym_AMP, - ACTIONS(7597), 1, + ACTIONS(7239), 3, anon_sym_EQ_EQ, - ACTIONS(7599), 1, anon_sym_BANG_EQ, - ACTIONS(7601), 1, + anon_sym_not_eq, + ACTIONS(7241), 3, anon_sym_GT, - ACTIONS(7603), 1, - anon_sym_GT_EQ, - ACTIONS(7605), 1, anon_sym_LT_EQ, - ACTIONS(7607), 1, anon_sym_LT, - ACTIONS(7609), 1, - anon_sym_LT_LT, - ACTIONS(7611), 1, - anon_sym_GT_GT, - ACTIONS(7613), 1, - anon_sym_EQ, - ACTIONS(7615), 1, - anon_sym_QMARK, - ACTIONS(7617), 1, + ACTIONS(7185), 13, anon_sym_STAR_EQ, - ACTIONS(7619), 1, anon_sym_SLASH_EQ, - ACTIONS(7621), 1, anon_sym_PERCENT_EQ, - ACTIONS(7623), 1, anon_sym_PLUS_EQ, - ACTIONS(7625), 1, anon_sym_DASH_EQ, - ACTIONS(7627), 1, anon_sym_LT_LT_EQ, - ACTIONS(7629), 1, anon_sym_GT_GT_EQ, - ACTIONS(7631), 1, anon_sym_AMP_EQ, - ACTIONS(7633), 1, anon_sym_CARET_EQ, - ACTIONS(7635), 1, anon_sym_PIPE_EQ, - ACTIONS(7637), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7639), 1, - anon_sym_or, - ACTIONS(7641), 1, - anon_sym_and, - ACTIONS(7643), 1, - anon_sym_bitor, - ACTIONS(7645), 1, - anon_sym_xor, - ACTIONS(7647), 1, - anon_sym_bitand, - ACTIONS(7649), 1, - anon_sym_not_eq, - ACTIONS(7711), 1, - anon_sym_RPAREN, - STATE(1216), 1, - sym__binary_fold_operator, - STATE(3515), 1, - sym_argument_list, - STATE(3516), 1, - sym_subscript_argument_list, - STATE(8694), 1, - sym__fold_operator, - ACTIONS(7267), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7651), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - [66230] = 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [68583] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5144), 22, + ACTIONS(5148), 22, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -353068,7 +358825,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - ACTIONS(5146), 30, + ACTIONS(5150), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -353099,10 +358856,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [66290] = 3, + [68643] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5999), 19, + ACTIONS(5907), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -353122,78 +358879,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5997), 33, - anon_sym_DOT_DOT_DOT, - 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_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, anon_sym_DASH_GT, - [66350] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4180), 1, - anon_sym_EQ, - ACTIONS(4182), 13, - 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - ACTIONS(4154), 17, - 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_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4146), 21, + ACTIONS(5909), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -353203,56 +358890,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [66414] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5036), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5946), 1, - anon_sym_LPAREN2, - ACTIONS(5949), 1, - anon_sym_LBRACK, - ACTIONS(4154), 18, - 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_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4146), 31, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -353274,116 +358912,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [66480] = 51, + anon_sym_DASH_GT_STAR, + [68703] = 51, ACTIONS(3), 1, sym_comment, - ACTIONS(6864), 1, + ACTIONS(6886), 1, anon_sym_LPAREN2, - ACTIONS(7223), 1, + ACTIONS(7159), 1, anon_sym_LBRACK, - ACTIONS(7269), 1, + ACTIONS(7205), 1, anon_sym_DOT_STAR, - ACTIONS(7271), 1, + ACTIONS(7207), 1, anon_sym_DASH_GT_STAR, - ACTIONS(7571), 1, + ACTIONS(7618), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7573), 1, + ACTIONS(7620), 1, anon_sym_COMMA, - ACTIONS(7577), 1, + ACTIONS(7624), 1, anon_sym_DASH, - ACTIONS(7579), 1, + ACTIONS(7626), 1, anon_sym_PLUS, - ACTIONS(7581), 1, + ACTIONS(7628), 1, anon_sym_STAR, - ACTIONS(7583), 1, + ACTIONS(7630), 1, anon_sym_SLASH, - ACTIONS(7585), 1, + ACTIONS(7632), 1, anon_sym_PERCENT, - ACTIONS(7587), 1, + ACTIONS(7634), 1, anon_sym_PIPE_PIPE, - ACTIONS(7589), 1, + ACTIONS(7636), 1, anon_sym_AMP_AMP, - ACTIONS(7591), 1, + ACTIONS(7638), 1, anon_sym_PIPE, - ACTIONS(7593), 1, + ACTIONS(7640), 1, anon_sym_CARET, - ACTIONS(7595), 1, + ACTIONS(7642), 1, anon_sym_AMP, - ACTIONS(7597), 1, + ACTIONS(7644), 1, anon_sym_EQ_EQ, - ACTIONS(7599), 1, + ACTIONS(7646), 1, anon_sym_BANG_EQ, - ACTIONS(7601), 1, + ACTIONS(7648), 1, anon_sym_GT, - ACTIONS(7603), 1, + ACTIONS(7650), 1, anon_sym_GT_EQ, - ACTIONS(7605), 1, + ACTIONS(7652), 1, anon_sym_LT_EQ, - ACTIONS(7607), 1, + ACTIONS(7654), 1, anon_sym_LT, - ACTIONS(7609), 1, + ACTIONS(7656), 1, anon_sym_LT_LT, - ACTIONS(7611), 1, + ACTIONS(7658), 1, anon_sym_GT_GT, - ACTIONS(7613), 1, + ACTIONS(7660), 1, anon_sym_EQ, - ACTIONS(7615), 1, + ACTIONS(7662), 1, anon_sym_QMARK, - ACTIONS(7617), 1, + ACTIONS(7664), 1, anon_sym_STAR_EQ, - ACTIONS(7619), 1, + ACTIONS(7666), 1, anon_sym_SLASH_EQ, - ACTIONS(7621), 1, + ACTIONS(7668), 1, anon_sym_PERCENT_EQ, - ACTIONS(7623), 1, + ACTIONS(7670), 1, anon_sym_PLUS_EQ, - ACTIONS(7625), 1, + ACTIONS(7672), 1, anon_sym_DASH_EQ, - ACTIONS(7627), 1, + ACTIONS(7674), 1, anon_sym_LT_LT_EQ, - ACTIONS(7629), 1, + ACTIONS(7676), 1, anon_sym_GT_GT_EQ, - ACTIONS(7631), 1, + ACTIONS(7678), 1, anon_sym_AMP_EQ, - ACTIONS(7633), 1, + ACTIONS(7680), 1, anon_sym_CARET_EQ, - ACTIONS(7635), 1, + ACTIONS(7682), 1, anon_sym_PIPE_EQ, - ACTIONS(7637), 1, + ACTIONS(7684), 1, anon_sym_LT_EQ_GT, - ACTIONS(7639), 1, + ACTIONS(7686), 1, anon_sym_or, - ACTIONS(7641), 1, + ACTIONS(7688), 1, anon_sym_and, - ACTIONS(7643), 1, + ACTIONS(7690), 1, anon_sym_bitor, - ACTIONS(7645), 1, + ACTIONS(7692), 1, anon_sym_xor, - ACTIONS(7647), 1, + ACTIONS(7694), 1, anon_sym_bitand, - ACTIONS(7649), 1, + ACTIONS(7696), 1, anon_sym_not_eq, - ACTIONS(7713), 1, + ACTIONS(7782), 1, anon_sym_RPAREN, - STATE(1216), 1, + STATE(1285), 1, sym__binary_fold_operator, - STATE(3515), 1, + STATE(3433), 1, sym_argument_list, - STATE(3516), 1, + STATE(3434), 1, sym_subscript_argument_list, - STATE(8694), 1, + STATE(8910), 1, sym__fold_operator, - ACTIONS(7267), 2, + ACTIONS(7203), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7651), 2, + ACTIONS(7698), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [66636] = 3, + [68859] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6269), 20, + ACTIONS(7784), 1, + anon_sym_LT, + STATE(3213), 1, + sym_template_argument_list, + ACTIONS(6426), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -353394,17 +359036,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6271), 32, + ACTIONS(6428), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -353414,7 +359054,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -353437,10 +359077,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [66696] = 3, + [68923] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5136), 22, + ACTIONS(5196), 22, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -353463,7 +359103,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - ACTIONS(5138), 30, + ACTIONS(5198), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -353494,10 +359134,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [66756] = 3, + [68983] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5136), 22, + ACTIONS(5196), 22, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -353520,7 +359160,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - ACTIONS(5138), 30, + ACTIONS(5198), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -353551,248 +359191,226 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [66816] = 3, + [69043] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3951), 20, + ACTIONS(5144), 22, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_EQ, + anon_sym___attribute__, + anon_sym___attribute, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3953), 32, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(5146), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_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_LBRACK_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [66876] = 9, + anon_sym_DASH_GT, + [69103] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6979), 1, - anon_sym_LPAREN2, - ACTIONS(7659), 1, - anon_sym_LBRACK, - ACTIONS(7663), 1, - anon_sym_DOT, - STATE(3545), 1, - sym_argument_list, - STATE(3546), 1, - sym_subscript_argument_list, - ACTIONS(7665), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6425), 19, + ACTIONS(5196), 22, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, + anon_sym___attribute__, + anon_sym___attribute, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, - ACTIONS(6427), 26, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(5198), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_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_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + 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_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_GT2, - [66948] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [69163] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6273), 20, + ACTIONS(5184), 22, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_EQ, + anon_sym___attribute__, + anon_sym___attribute, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6275), 32, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(5186), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_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_LBRACK_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [67008] = 25, + anon_sym_DASH_GT, + [69223] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(6979), 1, + ACTIONS(6935), 1, anon_sym_LPAREN2, - ACTIONS(7659), 1, + ACTIONS(7720), 1, anon_sym_LBRACK, - ACTIONS(7663), 1, + ACTIONS(7734), 1, anon_sym_DOT, - ACTIONS(7675), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7677), 1, - anon_sym_AMP_AMP, - ACTIONS(7679), 1, - anon_sym_PIPE, - ACTIONS(7683), 1, - anon_sym_AMP, - ACTIONS(7693), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7695), 1, - anon_sym_or, - ACTIONS(7697), 1, - anon_sym_and, - ACTIONS(7699), 1, - anon_sym_bitor, - ACTIONS(7701), 1, - anon_sym_bitand, - STATE(3545), 1, + STATE(3632), 1, sym_argument_list, - STATE(3546), 1, + STATE(3652), 1, sym_subscript_argument_list, - ACTIONS(6933), 2, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(7661), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7665), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7671), 2, + ACTIONS(7700), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7681), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7689), 2, + ACTIONS(7718), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7673), 3, + ACTIONS(7732), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7736), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7702), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7685), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7687), 4, + ACTIONS(6518), 12, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6935), 16, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(6520), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -353806,130 +359424,186 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_GT2, - [67112] = 6, + [69303] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5472), 4, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(5470), 48, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_typename, + anon_sym_template, + [69363] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5036), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5946), 1, - anon_sym_LPAREN2, - ACTIONS(5949), 1, - anon_sym_LBRACK, - ACTIONS(4154), 18, + ACTIONS(5156), 22, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym___attribute__, + anon_sym___attribute, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(4146), 31, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(5158), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_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_LT, + anon_sym_GT_GT, anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, anon_sym_RBRACE, + 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [67178] = 5, + [69423] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6006), 1, - anon_sym_EQ, - ACTIONS(6008), 13, - 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - ACTIONS(4154), 18, + ACTIONS(5152), 22, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym___attribute__, anon_sym___attribute, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(4146), 20, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(5154), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_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_LT, + anon_sym_GT_GT, anon_sym_SEMI, - anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [67242] = 3, + [69483] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6544), 20, + ACTIONS(6498), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -353943,14 +359617,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6546), 32, + ACTIONS(6500), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -353960,7 +359633,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -353983,10 +359657,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [67302] = 3, + [69543] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6402), 20, + ACTIONS(5994), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -354007,7 +359681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6404), 32, + ACTIONS(5996), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -354040,10 +359714,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [67362] = 3, + [69603] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6218), 20, + ACTIONS(6935), 1, + anon_sym_LPAREN2, + ACTIONS(7720), 1, + anon_sym_LBRACK, + ACTIONS(7734), 1, + anon_sym_DOT, + STATE(3632), 1, + sym_argument_list, + STATE(3652), 1, + sym_subscript_argument_list, + ACTIONS(7732), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7736), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6518), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -354053,28 +359743,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6220), 32, + ACTIONS(6520), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -354082,7 +359767,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -354093,98 +359777,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [67422] = 30, + anon_sym_GT2, + [69677] = 51, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(6886), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(7159), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, - anon_sym_DOT, - ACTIONS(6991), 1, + ACTIONS(7205), 1, + anon_sym_DOT_STAR, + ACTIONS(7207), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(7618), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7115), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7117), 1, - anon_sym_AMP_AMP, - ACTIONS(7119), 1, - anon_sym_PIPE, - ACTIONS(7123), 1, - anon_sym_AMP, - ACTIONS(7129), 1, - anon_sym_GT_EQ, - ACTIONS(7133), 1, - anon_sym_QMARK, - ACTIONS(7135), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7137), 1, - anon_sym_or, - ACTIONS(7139), 1, - anon_sym_and, - ACTIONS(7141), 1, - anon_sym_bitor, - ACTIONS(7143), 1, - anon_sym_bitand, - ACTIONS(7185), 1, - anon_sym_RPAREN, - ACTIONS(7715), 1, + ACTIONS(7620), 1, anon_sym_COMMA, - ACTIONS(7717), 1, - anon_sym_EQ, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6439), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7111), 2, + ACTIONS(7624), 1, anon_sym_DASH, + ACTIONS(7626), 1, anon_sym_PLUS, - ACTIONS(7121), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7131), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7113), 3, + ACTIONS(7628), 1, anon_sym_STAR, + ACTIONS(7630), 1, anon_sym_SLASH, + ACTIONS(7632), 1, anon_sym_PERCENT, - ACTIONS(7125), 3, + ACTIONS(7634), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7636), 1, + anon_sym_AMP_AMP, + ACTIONS(7638), 1, + anon_sym_PIPE, + ACTIONS(7640), 1, + anon_sym_CARET, + ACTIONS(7642), 1, + anon_sym_AMP, + ACTIONS(7644), 1, anon_sym_EQ_EQ, + ACTIONS(7646), 1, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7127), 3, + ACTIONS(7648), 1, anon_sym_GT, + ACTIONS(7650), 1, + anon_sym_GT_EQ, + ACTIONS(7652), 1, anon_sym_LT_EQ, + ACTIONS(7654), 1, anon_sym_LT, - ACTIONS(7249), 13, + ACTIONS(7656), 1, + anon_sym_LT_LT, + ACTIONS(7658), 1, + anon_sym_GT_GT, + ACTIONS(7660), 1, + anon_sym_EQ, + ACTIONS(7662), 1, + anon_sym_QMARK, + ACTIONS(7664), 1, anon_sym_STAR_EQ, + ACTIONS(7666), 1, anon_sym_SLASH_EQ, + ACTIONS(7668), 1, anon_sym_PERCENT_EQ, + ACTIONS(7670), 1, anon_sym_PLUS_EQ, + ACTIONS(7672), 1, anon_sym_DASH_EQ, + ACTIONS(7674), 1, anon_sym_LT_LT_EQ, + ACTIONS(7676), 1, anon_sym_GT_GT_EQ, + ACTIONS(7678), 1, anon_sym_AMP_EQ, + ACTIONS(7680), 1, anon_sym_CARET_EQ, + ACTIONS(7682), 1, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - [67536] = 3, + ACTIONS(7684), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7686), 1, + anon_sym_or, + ACTIONS(7688), 1, + anon_sym_and, + ACTIONS(7690), 1, + anon_sym_bitor, + ACTIONS(7692), 1, + anon_sym_xor, + ACTIONS(7694), 1, + anon_sym_bitand, + ACTIONS(7696), 1, + anon_sym_not_eq, + ACTIONS(7787), 1, + anon_sym_RPAREN, + STATE(1285), 1, + sym__binary_fold_operator, + STATE(3433), 1, + sym_argument_list, + STATE(3434), 1, + sym_subscript_argument_list, + STATE(8910), 1, + sym__fold_operator, + ACTIONS(7203), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7698), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [69833] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5132), 22, + ACTIONS(5160), 22, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -354207,7 +359909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - ACTIONS(5134), 30, + ACTIONS(5162), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -354238,7 +359940,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [67596] = 3, + [69893] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5903), 20, + 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_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5905), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [69953] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5140), 22, @@ -354295,16 +360054,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [67656] = 6, + [70013] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4167), 1, - anon_sym_COLON_COLON, - ACTIONS(7719), 1, - anon_sym_LT, - STATE(3399), 1, - sym_template_argument_list, - ACTIONS(6310), 19, + ACTIONS(7293), 1, + sym_auto, + ACTIONS(7295), 1, + anon_sym_decltype, + STATE(3552), 1, + sym_decltype_auto, + ACTIONS(5533), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -354314,24 +360073,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, - ACTIONS(6312), 30, + anon_sym_DASH_GT, + ACTIONS(5535), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -354340,27 +360099,25 @@ static const uint16_t ts_small_parse_table[] = { 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [67722] = 4, + anon_sym_DASH_GT_STAR, + [70079] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7722), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(6477), 20, + ACTIONS(6464), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -354380,17 +360137,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6479), 31, + ACTIONS(6466), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -354412,11 +360170,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [70139] = 51, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6886), 1, + anon_sym_LPAREN2, + ACTIONS(7159), 1, + anon_sym_LBRACK, + ACTIONS(7205), 1, + anon_sym_DOT_STAR, + ACTIONS(7207), 1, anon_sym_DASH_GT_STAR, - [67784] = 3, + ACTIONS(7618), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7620), 1, + anon_sym_COMMA, + ACTIONS(7624), 1, + anon_sym_DASH, + ACTIONS(7626), 1, + anon_sym_PLUS, + ACTIONS(7628), 1, + anon_sym_STAR, + ACTIONS(7630), 1, + anon_sym_SLASH, + ACTIONS(7632), 1, + anon_sym_PERCENT, + ACTIONS(7634), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7636), 1, + anon_sym_AMP_AMP, + ACTIONS(7638), 1, + anon_sym_PIPE, + ACTIONS(7640), 1, + anon_sym_CARET, + ACTIONS(7642), 1, + anon_sym_AMP, + ACTIONS(7644), 1, + anon_sym_EQ_EQ, + ACTIONS(7646), 1, + anon_sym_BANG_EQ, + ACTIONS(7648), 1, + anon_sym_GT, + ACTIONS(7650), 1, + anon_sym_GT_EQ, + ACTIONS(7652), 1, + anon_sym_LT_EQ, + ACTIONS(7654), 1, + anon_sym_LT, + ACTIONS(7656), 1, + anon_sym_LT_LT, + ACTIONS(7658), 1, + anon_sym_GT_GT, + ACTIONS(7660), 1, + anon_sym_EQ, + ACTIONS(7662), 1, + anon_sym_QMARK, + ACTIONS(7664), 1, + anon_sym_STAR_EQ, + ACTIONS(7666), 1, + anon_sym_SLASH_EQ, + ACTIONS(7668), 1, + anon_sym_PERCENT_EQ, + ACTIONS(7670), 1, + anon_sym_PLUS_EQ, + ACTIONS(7672), 1, + anon_sym_DASH_EQ, + ACTIONS(7674), 1, + anon_sym_LT_LT_EQ, + ACTIONS(7676), 1, + anon_sym_GT_GT_EQ, + ACTIONS(7678), 1, + anon_sym_AMP_EQ, + ACTIONS(7680), 1, + anon_sym_CARET_EQ, + ACTIONS(7682), 1, + anon_sym_PIPE_EQ, + ACTIONS(7684), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7686), 1, + anon_sym_or, + ACTIONS(7688), 1, + anon_sym_and, + ACTIONS(7690), 1, + anon_sym_bitor, + ACTIONS(7692), 1, + anon_sym_xor, + ACTIONS(7694), 1, + anon_sym_bitand, + ACTIONS(7696), 1, + anon_sym_not_eq, + ACTIONS(7789), 1, + anon_sym_RPAREN, + STATE(1285), 1, + sym__binary_fold_operator, + STATE(3433), 1, + sym_argument_list, + STATE(3434), 1, + sym_subscript_argument_list, + STATE(8910), 1, + sym__fold_operator, + ACTIONS(7203), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7698), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [70295] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6286), 20, + ACTIONS(5990), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -354437,7 +360300,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6288), 32, + ACTIONS(5992), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -354470,14 +360333,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [67844] = 5, + [70355] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6981), 1, + ACTIONS(5044), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6011), 1, anon_sym_LBRACK, - STATE(3388), 1, - sym_new_declarator, - ACTIONS(6352), 20, + ACTIONS(6008), 2, + anon_sym_RPAREN, + anon_sym_LPAREN2, + ACTIONS(4174), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -354487,26 +360353,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6354), 30, + anon_sym_DASH_GT, + ACTIONS(4166), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, + anon_sym_GT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -354514,6 +360378,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -354527,12 +360392,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, + anon_sym_DASH_GT_STAR, + [70421] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7027), 1, + anon_sym_LBRACE, + ACTIONS(7791), 1, + anon_sym_COLON, + STATE(2458), 1, + sym_attribute_specifier, + STATE(2845), 1, + sym__enum_base_clause, + STATE(2997), 1, + sym_enumerator_list, + ACTIONS(5489), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(6395), 11, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, anon_sym_GT2, - [67908] = 3, + ACTIONS(6393), 34, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [70493] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6463), 20, + ACTIONS(6935), 1, + anon_sym_LPAREN2, + ACTIONS(7720), 1, + anon_sym_LBRACK, + ACTIONS(7734), 1, + anon_sym_DOT, + STATE(3632), 1, + sym_argument_list, + STATE(3652), 1, + sym_subscript_argument_list, + ACTIONS(7732), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7736), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6460), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -354542,28 +360485,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6465), 32, + ACTIONS(6462), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -354571,7 +360509,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -354582,71 +360519,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [67968] = 3, + anon_sym_GT2, + [70567] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1940), 22, - aux_sym_preproc_elif_token1, + ACTIONS(7027), 1, + anon_sym_LBRACE, + ACTIONS(7791), 1, + anon_sym_COLON, + STATE(2457), 1, + sym_attribute_specifier, + STATE(2847), 1, + sym__enum_base_clause, + STATE(3012), 1, + sym_enumerator_list, + ACTIONS(5489), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(6318), 11, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6316), 34, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [70639] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4200), 1, + anon_sym_EQ, + ACTIONS(4202), 13, + 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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + ACTIONS(4174), 17, 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_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(1938), 30, + ACTIONS(4166), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_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_LT, - anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [68028] = 3, + [70703] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6487), 19, + ACTIONS(5044), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6008), 1, + anon_sym_LPAREN2, + ACTIONS(6011), 1, + anon_sym_LBRACK, + ACTIONS(4174), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -354665,19 +360670,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6489), 33, + ACTIONS(4166), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -354699,11 +360701,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [68088] = 3, + anon_sym_DASH_GT, + [70769] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6295), 20, + ACTIONS(5044), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6008), 1, + anon_sym_LPAREN2, + ACTIONS(6011), 1, + anon_sym_LBRACK, + ACTIONS(4174), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -354717,24 +360725,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6297), 32, + ACTIONS(4166), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -354756,222 +360761,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [68148] = 3, + anon_sym_DASH_GT, + [70835] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5170), 22, - aux_sym_preproc_elif_token1, + ACTIONS(5925), 20, 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_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(5172), 30, + anon_sym_DASH_GT, + ACTIONS(5927), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_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_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [68208] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6758), 1, - anon_sym_COLON_COLON, - ACTIONS(7727), 1, - anon_sym_virtual, - ACTIONS(7736), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7739), 1, - anon_sym___declspec, - STATE(1658), 1, - sym_alignas_qualifier, - ACTIONS(7733), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7742), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3269), 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(7730), 9, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(7724), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(6756), 14, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - [68286] = 30, + anon_sym_DASH_GT_STAR, + [70895] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(7042), 1, - anon_sym_AMP_AMP, - ACTIONS(7044), 1, - anon_sym_AMP, - ACTIONS(7057), 1, + ACTIONS(5845), 1, + anon_sym_LPAREN2, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(7065), 1, - anon_sym___asm, - ACTIONS(7072), 1, - anon_sym_noexcept, - ACTIONS(7074), 1, - anon_sym_throw, - ACTIONS(7147), 1, - anon_sym___attribute__, - ACTIONS(7149), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7301), 1, - anon_sym_requires, - ACTIONS(7745), 1, + ACTIONS(7614), 1, + anon_sym_DOT, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + ACTIONS(7616), 2, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - STATE(1658), 1, - sym_alignas_qualifier, - STATE(4972), 1, - sym__function_attributes_start, - STATE(5179), 1, - sym_ref_qualifier, - STATE(5479), 1, - sym_trailing_return_type, - STATE(6199), 1, - sym__function_attributes_end, - STATE(6766), 1, - sym_gnu_asm_expression, - ACTIONS(6020), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7063), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7152), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3982), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4184), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5458), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5606), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5816), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7040), 3, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_EQ, - STATE(5362), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7145), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [68400] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7540), 1, - anon_sym_LT, - STATE(1574), 1, - sym_template_argument_list, - ACTIONS(6513), 18, + ACTIONS(6514), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -354982,25 +360846,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6515), 32, + ACTIONS(6516), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -355021,320 +360882,275 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [68464] = 51, + [70967] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6864), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(7223), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(7269), 1, + ACTIONS(7015), 1, + anon_sym_EQ, + ACTIONS(7586), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7588), 1, + anon_sym_AMP_AMP, + ACTIONS(7590), 1, + anon_sym_PIPE, + ACTIONS(7594), 1, + anon_sym_AMP, + ACTIONS(7600), 1, + anon_sym_GT_EQ, + ACTIONS(7604), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7606), 1, + anon_sym_or, + ACTIONS(7608), 1, + anon_sym_and, + ACTIONS(7610), 1, + anon_sym_bitor, + ACTIONS(7612), 1, + anon_sym_bitand, + ACTIONS(7614), 1, + anon_sym_DOT, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + ACTIONS(6416), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7582), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7592), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7616), 2, anon_sym_DOT_STAR, - ACTIONS(7271), 1, - anon_sym_DASH_GT_STAR, - ACTIONS(7571), 1, + anon_sym_DASH_GT, + ACTIONS(7584), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7596), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7598), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7017), 17, anon_sym_DOT_DOT_DOT, - ACTIONS(7573), 1, anon_sym_COMMA, - ACTIONS(7577), 1, + 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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [71073] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5845), 1, + anon_sym_LPAREN2, + ACTIONS(6414), 1, + anon_sym_LBRACK, + ACTIONS(7614), 1, + anon_sym_DOT, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + ACTIONS(6416), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7616), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6410), 17, anon_sym_DASH, - ACTIONS(7579), 1, anon_sym_PLUS, - ACTIONS(7581), 1, anon_sym_STAR, - ACTIONS(7583), 1, anon_sym_SLASH, - ACTIONS(7585), 1, anon_sym_PERCENT, - ACTIONS(7587), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7589), 1, - anon_sym_AMP_AMP, - ACTIONS(7591), 1, anon_sym_PIPE, - ACTIONS(7593), 1, anon_sym_CARET, - ACTIONS(7595), 1, anon_sym_AMP, - ACTIONS(7597), 1, - anon_sym_EQ_EQ, - ACTIONS(7599), 1, - anon_sym_BANG_EQ, - ACTIONS(7601), 1, anon_sym_GT, - ACTIONS(7603), 1, - anon_sym_GT_EQ, - ACTIONS(7605), 1, anon_sym_LT_EQ, - ACTIONS(7607), 1, anon_sym_LT, - ACTIONS(7609), 1, anon_sym_LT_LT, - ACTIONS(7611), 1, anon_sym_GT_GT, - ACTIONS(7613), 1, anon_sym_EQ, - ACTIONS(7615), 1, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(6412), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_COLON, anon_sym_QMARK, - ACTIONS(7617), 1, anon_sym_STAR_EQ, - ACTIONS(7619), 1, anon_sym_SLASH_EQ, - ACTIONS(7621), 1, anon_sym_PERCENT_EQ, - ACTIONS(7623), 1, anon_sym_PLUS_EQ, - ACTIONS(7625), 1, anon_sym_DASH_EQ, - ACTIONS(7627), 1, anon_sym_LT_LT_EQ, - ACTIONS(7629), 1, anon_sym_GT_GT_EQ, - ACTIONS(7631), 1, anon_sym_AMP_EQ, - ACTIONS(7633), 1, anon_sym_CARET_EQ, - ACTIONS(7635), 1, anon_sym_PIPE_EQ, - ACTIONS(7637), 1, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - ACTIONS(7639), 1, - anon_sym_or, - ACTIONS(7641), 1, - anon_sym_and, - ACTIONS(7643), 1, anon_sym_bitor, - ACTIONS(7645), 1, - anon_sym_xor, - ACTIONS(7647), 1, anon_sym_bitand, - ACTIONS(7649), 1, anon_sym_not_eq, - ACTIONS(7747), 1, - anon_sym_RPAREN, - STATE(1216), 1, - sym__binary_fold_operator, - STATE(3515), 1, + [71147] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5845), 1, + anon_sym_LPAREN2, + ACTIONS(6414), 1, + anon_sym_LBRACK, + ACTIONS(7614), 1, + anon_sym_DOT, + STATE(2491), 1, sym_argument_list, - STATE(3516), 1, + STATE(2492), 1, sym_subscript_argument_list, - STATE(8694), 1, - sym__fold_operator, - ACTIONS(7267), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7651), 2, + ACTIONS(6416), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [68620] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(7042), 1, - anon_sym_AMP_AMP, - ACTIONS(7044), 1, - anon_sym_AMP, - ACTIONS(7057), 1, - anon_sym_LBRACK, - ACTIONS(7065), 1, - anon_sym___asm, - ACTIONS(7072), 1, - anon_sym_noexcept, - ACTIONS(7074), 1, - anon_sym_throw, - ACTIONS(7147), 1, - anon_sym___attribute__, - ACTIONS(7149), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7162), 1, - anon_sym_requires, - ACTIONS(7745), 1, + ACTIONS(7616), 2, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - STATE(1658), 1, - sym_alignas_qualifier, - STATE(4967), 1, - sym__function_attributes_start, - STATE(5204), 1, - sym_ref_qualifier, - STATE(5446), 1, - sym_trailing_return_type, - STATE(6203), 1, - sym__function_attributes_end, - STATE(6766), 1, - sym_gnu_asm_expression, - ACTIONS(7063), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7069), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7152), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3982), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4184), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5458), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5606), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5816), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7040), 3, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_EQ, - STATE(5348), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7145), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [68734] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4167), 1, - anon_sym_COLON_COLON, - ACTIONS(7386), 1, + ACTIONS(6422), 17, + 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_EQ, anon_sym_LT, - ACTIONS(7506), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - STATE(2731), 1, - sym_template_argument_list, - ACTIONS(7504), 2, - anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(4172), 7, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(6424), 26, anon_sym_DOT_DOT_DOT, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(5838), 39, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_COLON, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_template, - anon_sym_operator, - [68804] = 3, + 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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [71221] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5152), 22, - aux_sym_preproc_elif_token1, + ACTIONS(5982), 20, 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_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(5154), 30, + anon_sym_DASH_GT, + ACTIONS(5984), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_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_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [68864] = 3, + anon_sym_DASH_GT_STAR, + [71281] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5999), 20, + ACTIONS(4934), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -355355,7 +361171,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5997), 32, + ACTIONS(4927), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -355388,67 +361204,253 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [68924] = 3, + [71341] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5188), 22, - aux_sym_preproc_elif_token1, + ACTIONS(5845), 1, + anon_sym_LPAREN2, + ACTIONS(6414), 1, + anon_sym_LBRACK, + ACTIONS(6947), 1, + anon_sym_EQ, + ACTIONS(7586), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7588), 1, + anon_sym_AMP_AMP, + ACTIONS(7590), 1, + anon_sym_PIPE, + ACTIONS(7594), 1, + anon_sym_AMP, + ACTIONS(7600), 1, + anon_sym_GT_EQ, + ACTIONS(7604), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7606), 1, + anon_sym_or, + ACTIONS(7608), 1, + anon_sym_and, + ACTIONS(7610), 1, + anon_sym_bitor, + ACTIONS(7612), 1, + anon_sym_bitand, + ACTIONS(7614), 1, + anon_sym_DOT, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + ACTIONS(6416), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7582), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7592), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7616), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7584), 3, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + anon_sym_PERCENT, + ACTIONS(7596), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7598), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, + ACTIONS(6949), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + 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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [71447] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5845), 1, + anon_sym_LPAREN2, + ACTIONS(6414), 1, + anon_sym_LBRACK, + ACTIONS(6662), 1, + anon_sym_EQ, + ACTIONS(6981), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7586), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7588), 1, + anon_sym_AMP_AMP, + ACTIONS(7590), 1, + anon_sym_PIPE, + ACTIONS(7594), 1, + anon_sym_AMP, + ACTIONS(7600), 1, + anon_sym_GT_EQ, + ACTIONS(7604), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7606), 1, anon_sym_or, + ACTIONS(7608), 1, anon_sym_and, + ACTIONS(7610), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(7612), 1, anon_sym_bitand, - anon_sym_not_eq, + ACTIONS(7614), 1, anon_sym_DOT, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(5190), 30, - anon_sym_DOT_DOT_DOT, + ACTIONS(7793), 1, + anon_sym_QMARK, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + ACTIONS(6416), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7582), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7592), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7616), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7584), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7596), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7598), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6664), 15, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_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, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [71557] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5845), 1, anon_sym_LPAREN2, + ACTIONS(6414), 1, + anon_sym_LBRACK, + ACTIONS(7614), 1, + anon_sym_DOT, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + ACTIONS(6416), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7616), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7584), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(6518), 14, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(6520), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, 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_LT, - anon_sym_GT_GT, - anon_sym_SEMI, anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - 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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [71633] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5845), 1, + anon_sym_LPAREN2, + ACTIONS(6414), 1, + anon_sym_LBRACK, + ACTIONS(7614), 1, + anon_sym_DOT, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + ACTIONS(6416), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(7616), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [68984] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6222), 20, + ACTIONS(6518), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -355462,24 +361464,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6224), 32, + ACTIONS(6520), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -355498,156 +361495,219 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [69044] = 27, + [71707] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(6979), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(7659), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(7663), 1, - anon_sym_DOT, - ACTIONS(7669), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7675), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7677), 1, + ACTIONS(7588), 1, anon_sym_AMP_AMP, - ACTIONS(7679), 1, + ACTIONS(7590), 1, anon_sym_PIPE, - ACTIONS(7683), 1, + ACTIONS(7594), 1, anon_sym_AMP, - ACTIONS(7691), 1, - anon_sym_QMARK, - ACTIONS(7693), 1, + ACTIONS(7600), 1, + anon_sym_GT_EQ, + ACTIONS(7604), 1, anon_sym_LT_EQ_GT, - ACTIONS(7695), 1, - anon_sym_or, - ACTIONS(7697), 1, + ACTIONS(7608), 1, anon_sym_and, - ACTIONS(7699), 1, + ACTIONS(7610), 1, anon_sym_bitor, - ACTIONS(7701), 1, + ACTIONS(7612), 1, anon_sym_bitand, - STATE(3545), 1, + ACTIONS(7614), 1, + anon_sym_DOT, + STATE(2491), 1, sym_argument_list, - STATE(3546), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(7019), 2, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(7661), 2, + ACTIONS(6416), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7665), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7671), 2, + ACTIONS(6518), 2, + anon_sym_EQ, + anon_sym_or, + ACTIONS(7582), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7681), 2, + ACTIONS(7592), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(7689), 2, + ACTIONS(7602), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7673), 3, + ACTIONS(7616), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7584), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7685), 3, + ACTIONS(7596), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7687), 4, + ACTIONS(7598), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7021), 14, + ACTIONS(6520), 18, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_PIPE_PIPE, + 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_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_GT2, - [69152] = 25, + [71809] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(6979), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(7659), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(7663), 1, - anon_sym_DOT, - ACTIONS(7675), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7677), 1, - anon_sym_AMP_AMP, - ACTIONS(7679), 1, + ACTIONS(7590), 1, anon_sym_PIPE, - ACTIONS(7683), 1, + ACTIONS(7594), 1, anon_sym_AMP, - ACTIONS(7693), 1, + ACTIONS(7600), 1, + anon_sym_GT_EQ, + ACTIONS(7604), 1, anon_sym_LT_EQ_GT, - ACTIONS(7695), 1, - anon_sym_or, - ACTIONS(7697), 1, - anon_sym_and, - ACTIONS(7699), 1, + ACTIONS(7610), 1, anon_sym_bitor, - ACTIONS(7701), 1, + ACTIONS(7612), 1, anon_sym_bitand, - STATE(3545), 1, + ACTIONS(7614), 1, + anon_sym_DOT, + STATE(2491), 1, sym_argument_list, - STATE(3546), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6987), 2, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(7661), 2, + ACTIONS(6416), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7665), 2, + ACTIONS(7582), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7592), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7616), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7671), 2, + ACTIONS(6518), 3, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + ACTIONS(7584), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7596), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7598), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6520), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + 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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [71907] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5845), 1, + anon_sym_LPAREN2, + ACTIONS(6414), 1, + anon_sym_LBRACK, + ACTIONS(7594), 1, + anon_sym_AMP, + ACTIONS(7600), 1, + anon_sym_GT_EQ, + ACTIONS(7604), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7612), 1, + anon_sym_bitand, + ACTIONS(7614), 1, + anon_sym_DOT, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + ACTIONS(6416), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7582), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7681), 2, + ACTIONS(7592), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(7689), 2, + ACTIONS(7602), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7673), 3, + ACTIONS(7616), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7584), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7685), 3, + ACTIONS(7596), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7687), 4, + ACTIONS(7598), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6989), 16, + ACTIONS(6518), 4, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + ACTIONS(6520), 20, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -355655,25 +361715,73 @@ static const uint16_t ts_small_parse_table[] = { 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_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_GT2, - [69256] = 8, + anon_sym_bitor, + [72001] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(4180), 1, - anon_sym_EQ, - ACTIONS(5036), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5946), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(5949), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(4182), 13, + ACTIONS(7594), 1, + anon_sym_AMP, + ACTIONS(7600), 1, + anon_sym_GT_EQ, + ACTIONS(7604), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7612), 1, + anon_sym_bitand, + ACTIONS(7614), 1, + anon_sym_DOT, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + ACTIONS(6416), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7582), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7616), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7584), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7596), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7598), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6518), 6, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(6520), 20, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_COLON, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -355687,180 +361795,243 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - ACTIONS(4154), 17, + anon_sym_bitor, + [72093] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5845), 1, + anon_sym_LPAREN2, + ACTIONS(6414), 1, + anon_sym_LBRACK, + ACTIONS(7600), 1, + anon_sym_GT_EQ, + ACTIONS(7604), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7614), 1, + anon_sym_DOT, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + ACTIONS(6416), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7582), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7616), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7584), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(7596), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7598), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6518), 7, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(6520), 21, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + 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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_bitor, + anon_sym_bitand, + [72181] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5845), 1, + anon_sym_LPAREN2, + ACTIONS(6414), 1, + anon_sym_LBRACK, + ACTIONS(7600), 1, + anon_sym_GT_EQ, + ACTIONS(7604), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7614), 1, + anon_sym_DOT, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + ACTIONS(6416), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7582), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7616), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7584), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7598), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(6518), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(4146), 18, + ACTIONS(6520), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_COLON, anon_sym_QMARK, - anon_sym_LT_EQ_GT, + 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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, + [72267] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5845), 1, + anon_sym_LPAREN2, + ACTIONS(6414), 1, + anon_sym_LBRACK, + ACTIONS(7604), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7614), 1, + anon_sym_DOT, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + ACTIONS(6416), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(7582), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7616), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [69326] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7756), 1, - anon_sym_virtual, - ACTIONS(7765), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7768), 1, - anon_sym___declspec, - ACTIONS(7774), 1, - anon_sym_explicit, - STATE(2975), 1, - sym_alignas_qualifier, - ACTIONS(7762), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7771), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(7751), 5, - anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(7584), 3, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - ACTIONS(7749), 7, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6518), 10, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - ACTIONS(7759), 9, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - STATE(3282), 9, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_explicit_function_specifier, - sym__constructor_specifiers, - aux_sym_operator_cast_definition_repeat1, - ACTIONS(7753), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [69406] = 7, - ACTIONS(3), 1, - sym_comment, - STATE(3761), 1, - sym_ms_unaligned_ptr_modifier, - ACTIONS(7784), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3283), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(7781), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(7779), 11, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(6520), 25, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(7777), 33, - anon_sym_AMP, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [69474] = 3, + 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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [72349] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(6277), 20, + ACTIONS(5845), 1, + anon_sym_LPAREN2, + ACTIONS(6414), 1, + anon_sym_LBRACK, + ACTIONS(7614), 1, + anon_sym_DOT, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + ACTIONS(6416), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7582), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7616), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7584), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(6518), 12, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -355869,24 +362040,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6279), 32, + ACTIONS(6520), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -355905,14 +362071,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, + [72427] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5845), 1, + anon_sym_LPAREN2, + ACTIONS(6414), 1, + anon_sym_LBRACK, + ACTIONS(7614), 1, + anon_sym_DOT, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + ACTIONS(6416), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(7582), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7616), 2, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [69534] = 3, + anon_sym_DASH_GT, + ACTIONS(7584), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6518), 10, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(6520), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [72507] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6192), 20, + ACTIONS(5845), 1, + anon_sym_LPAREN2, + ACTIONS(6414), 1, + anon_sym_LBRACK, + ACTIONS(7614), 1, + anon_sym_DOT, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + ACTIONS(6416), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7616), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6460), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -355926,24 +362171,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6194), 32, + ACTIONS(6462), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -355962,14 +362202,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [69594] = 3, + [72581] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6196), 20, + ACTIONS(6464), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -355990,7 +362226,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6198), 32, + ACTIONS(6466), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -356023,122 +362259,234 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [69654] = 27, + [72641] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6979), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(7659), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(7663), 1, - anon_sym_DOT, - ACTIONS(7669), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7675), 1, + ACTIONS(6985), 1, + anon_sym_EQ, + ACTIONS(7586), 1, anon_sym_PIPE_PIPE, - ACTIONS(7677), 1, + ACTIONS(7588), 1, anon_sym_AMP_AMP, - ACTIONS(7679), 1, + ACTIONS(7590), 1, anon_sym_PIPE, - ACTIONS(7683), 1, + ACTIONS(7594), 1, anon_sym_AMP, - ACTIONS(7691), 1, - anon_sym_QMARK, - ACTIONS(7693), 1, + ACTIONS(7600), 1, + anon_sym_GT_EQ, + ACTIONS(7604), 1, anon_sym_LT_EQ_GT, - ACTIONS(7695), 1, + ACTIONS(7606), 1, anon_sym_or, - ACTIONS(7697), 1, + ACTIONS(7608), 1, anon_sym_and, - ACTIONS(7699), 1, + ACTIONS(7610), 1, anon_sym_bitor, - ACTIONS(7701), 1, + ACTIONS(7612), 1, anon_sym_bitand, - STATE(3545), 1, + ACTIONS(7614), 1, + anon_sym_DOT, + STATE(2491), 1, sym_argument_list, - STATE(3546), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6524), 2, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(7661), 2, + ACTIONS(6416), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7665), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7671), 2, + ACTIONS(7582), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7681), 2, + ACTIONS(7592), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(7689), 2, + ACTIONS(7602), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7673), 3, + ACTIONS(7616), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7584), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7685), 3, + ACTIONS(7596), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7687), 4, + ACTIONS(7598), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6526), 14, + ACTIONS(6987), 17, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + 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_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_GT2, - [69762] = 3, + [72747] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6200), 20, + ACTIONS(5845), 1, + anon_sym_LPAREN2, + ACTIONS(6414), 1, + anon_sym_LBRACK, + ACTIONS(6981), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6989), 1, + anon_sym_EQ, + ACTIONS(7586), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7588), 1, + anon_sym_AMP_AMP, + ACTIONS(7590), 1, + anon_sym_PIPE, + ACTIONS(7594), 1, + anon_sym_AMP, + ACTIONS(7600), 1, + anon_sym_GT_EQ, + ACTIONS(7604), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7606), 1, + anon_sym_or, + ACTIONS(7608), 1, + anon_sym_and, + ACTIONS(7610), 1, + anon_sym_bitor, + ACTIONS(7612), 1, + anon_sym_bitand, + ACTIONS(7614), 1, + anon_sym_DOT, + ACTIONS(7793), 1, + anon_sym_QMARK, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + ACTIONS(6416), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7582), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7592), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7616), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7584), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7596), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7598), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(6991), 15, + anon_sym_COMMA, + 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, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [72857] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5845), 1, + anon_sym_LPAREN2, + ACTIONS(6414), 1, anon_sym_LBRACK, + ACTIONS(6993), 1, anon_sym_EQ, + ACTIONS(7586), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7588), 1, + anon_sym_AMP_AMP, + ACTIONS(7590), 1, + anon_sym_PIPE, + ACTIONS(7594), 1, + anon_sym_AMP, + ACTIONS(7600), 1, + anon_sym_GT_EQ, + ACTIONS(7604), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7606), 1, anon_sym_or, + ACTIONS(7608), 1, anon_sym_and, - anon_sym_xor, + ACTIONS(7610), 1, + anon_sym_bitor, + ACTIONS(7612), 1, + anon_sym_bitand, + ACTIONS(7614), 1, anon_sym_DOT, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + ACTIONS(6416), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7582), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7592), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7616), 2, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6202), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(7584), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7596), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_not_eq, + ACTIONS(7598), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6995), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -356153,303 +362501,254 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [69822] = 9, + [72963] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6979), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(7659), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(7663), 1, + ACTIONS(6981), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6997), 1, + anon_sym_EQ, + ACTIONS(7586), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7588), 1, + anon_sym_AMP_AMP, + ACTIONS(7590), 1, + anon_sym_PIPE, + ACTIONS(7594), 1, + anon_sym_AMP, + ACTIONS(7600), 1, + anon_sym_GT_EQ, + ACTIONS(7604), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7606), 1, + anon_sym_or, + ACTIONS(7608), 1, + anon_sym_and, + ACTIONS(7610), 1, + anon_sym_bitor, + ACTIONS(7612), 1, + anon_sym_bitand, + ACTIONS(7614), 1, anon_sym_DOT, - STATE(3545), 1, + ACTIONS(7793), 1, + anon_sym_QMARK, + STATE(2491), 1, sym_argument_list, - STATE(3546), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(7665), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6445), 19, + ACTIONS(6416), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7582), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7592), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7616), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7584), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7596), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7598), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - ACTIONS(6447), 26, - anon_sym_DOT_DOT_DOT, + ACTIONS(6999), 15, anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK, + 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, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_GT2, - [69894] = 51, + [73073] = 51, ACTIONS(3), 1, sym_comment, - ACTIONS(6864), 1, + ACTIONS(6886), 1, anon_sym_LPAREN2, - ACTIONS(7223), 1, + ACTIONS(7159), 1, anon_sym_LBRACK, - ACTIONS(7269), 1, + ACTIONS(7205), 1, anon_sym_DOT_STAR, - ACTIONS(7271), 1, + ACTIONS(7207), 1, anon_sym_DASH_GT_STAR, - ACTIONS(7571), 1, + ACTIONS(7618), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7573), 1, + ACTIONS(7620), 1, anon_sym_COMMA, - ACTIONS(7577), 1, + ACTIONS(7624), 1, anon_sym_DASH, - ACTIONS(7579), 1, + ACTIONS(7626), 1, anon_sym_PLUS, - ACTIONS(7581), 1, + ACTIONS(7628), 1, anon_sym_STAR, - ACTIONS(7583), 1, + ACTIONS(7630), 1, anon_sym_SLASH, - ACTIONS(7585), 1, + ACTIONS(7632), 1, anon_sym_PERCENT, - ACTIONS(7587), 1, + ACTIONS(7634), 1, anon_sym_PIPE_PIPE, - ACTIONS(7589), 1, + ACTIONS(7636), 1, anon_sym_AMP_AMP, - ACTIONS(7591), 1, + ACTIONS(7638), 1, anon_sym_PIPE, - ACTIONS(7593), 1, + ACTIONS(7640), 1, anon_sym_CARET, - ACTIONS(7595), 1, + ACTIONS(7642), 1, anon_sym_AMP, - ACTIONS(7597), 1, + ACTIONS(7644), 1, anon_sym_EQ_EQ, - ACTIONS(7599), 1, + ACTIONS(7646), 1, anon_sym_BANG_EQ, - ACTIONS(7601), 1, + ACTIONS(7648), 1, anon_sym_GT, - ACTIONS(7603), 1, + ACTIONS(7650), 1, anon_sym_GT_EQ, - ACTIONS(7605), 1, + ACTIONS(7652), 1, anon_sym_LT_EQ, - ACTIONS(7607), 1, + ACTIONS(7654), 1, anon_sym_LT, - ACTIONS(7609), 1, + ACTIONS(7656), 1, anon_sym_LT_LT, - ACTIONS(7611), 1, + ACTIONS(7658), 1, anon_sym_GT_GT, - ACTIONS(7613), 1, + ACTIONS(7660), 1, anon_sym_EQ, - ACTIONS(7615), 1, + ACTIONS(7662), 1, anon_sym_QMARK, - ACTIONS(7617), 1, + ACTIONS(7664), 1, anon_sym_STAR_EQ, - ACTIONS(7619), 1, + ACTIONS(7666), 1, anon_sym_SLASH_EQ, - ACTIONS(7621), 1, + ACTIONS(7668), 1, anon_sym_PERCENT_EQ, - ACTIONS(7623), 1, + ACTIONS(7670), 1, anon_sym_PLUS_EQ, - ACTIONS(7625), 1, + ACTIONS(7672), 1, anon_sym_DASH_EQ, - ACTIONS(7627), 1, + ACTIONS(7674), 1, anon_sym_LT_LT_EQ, - ACTIONS(7629), 1, + ACTIONS(7676), 1, anon_sym_GT_GT_EQ, - ACTIONS(7631), 1, + ACTIONS(7678), 1, anon_sym_AMP_EQ, - ACTIONS(7633), 1, + ACTIONS(7680), 1, anon_sym_CARET_EQ, - ACTIONS(7635), 1, + ACTIONS(7682), 1, anon_sym_PIPE_EQ, - ACTIONS(7637), 1, + ACTIONS(7684), 1, anon_sym_LT_EQ_GT, - ACTIONS(7639), 1, + ACTIONS(7686), 1, anon_sym_or, - ACTIONS(7641), 1, - anon_sym_and, - ACTIONS(7643), 1, - anon_sym_bitor, - ACTIONS(7645), 1, - anon_sym_xor, - ACTIONS(7647), 1, - anon_sym_bitand, - ACTIONS(7649), 1, - anon_sym_not_eq, - ACTIONS(7787), 1, - anon_sym_RPAREN, - STATE(1216), 1, - sym__binary_fold_operator, - STATE(3515), 1, - sym_argument_list, - STATE(3516), 1, - sym_subscript_argument_list, - STATE(8694), 1, - sym__fold_operator, - ACTIONS(7267), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7651), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - [70050] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5491), 4, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(5489), 48, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - [70110] = 6, + ACTIONS(7688), 1, + anon_sym_and, + ACTIONS(7690), 1, + anon_sym_bitor, + ACTIONS(7692), 1, + anon_sym_xor, + ACTIONS(7694), 1, + anon_sym_bitand, + ACTIONS(7696), 1, + anon_sym_not_eq, + ACTIONS(7795), 1, + anon_sym_RPAREN, + STATE(1285), 1, + sym__binary_fold_operator, + STATE(3433), 1, + sym_argument_list, + STATE(3434), 1, + sym_subscript_argument_list, + STATE(8910), 1, + sym__fold_operator, + ACTIONS(7203), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7698), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [73229] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5036), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5949), 1, - anon_sym_LBRACK, - ACTIONS(5946), 2, - anon_sym_RPAREN, - anon_sym_LPAREN2, - ACTIONS(4154), 19, + ACTIONS(5192), 22, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym___attribute__, + anon_sym___attribute, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4146), 29, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(5194), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_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_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [70176] = 3, + anon_sym_DASH_GT, + [73289] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6698), 20, + ACTIONS(5958), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -356470,7 +362769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6700), 32, + ACTIONS(5960), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -356503,135 +362802,201 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [70236] = 3, + [73349] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6505), 20, + ACTIONS(4187), 1, + anon_sym_COLON_COLON, + STATE(1623), 1, + sym_template_argument_list, + STATE(1959), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5046), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6058), 11, 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_EQ, anon_sym_LT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(6060), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, - anon_sym_DOT, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6507), 32, + sym_auto, + anon_sym_decltype, + [73417] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4187), 1, + anon_sym_COLON_COLON, + ACTIONS(7797), 1, + anon_sym_LT, + STATE(1863), 1, + sym_template_argument_list, + STATE(1959), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5046), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4164), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(4172), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_RBRACE, + 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [70296] = 30, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [73487] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(67), 1, anon_sym_const, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7042), 1, + ACTIONS(7048), 1, anon_sym_AMP_AMP, - ACTIONS(7044), 1, + ACTIONS(7050), 1, anon_sym_AMP, - ACTIONS(7057), 1, + ACTIONS(7063), 1, anon_sym_LBRACK, - ACTIONS(7065), 1, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7072), 1, + ACTIONS(7075), 1, anon_sym_noexcept, - ACTIONS(7074), 1, + ACTIONS(7077), 1, anon_sym_throw, - ACTIONS(7307), 1, + ACTIONS(7369), 1, anon_sym___attribute__, - ACTIONS(7310), 1, + ACTIONS(7372), 1, anon_sym___attribute, - ACTIONS(7553), 1, + ACTIONS(7447), 1, anon_sym_requires, - ACTIONS(7653), 1, + ACTIONS(7799), 1, anon_sym_DASH_GT, - STATE(1658), 1, + STATE(1680), 1, sym_alignas_qualifier, - STATE(4955), 1, + STATE(5029), 1, sym__function_attributes_start, - STATE(5165), 1, + STATE(5262), 1, sym_ref_qualifier, - STATE(6122), 1, - sym__function_attributes_end, - STATE(6187), 1, + STATE(6126), 1, sym_trailing_return_type, - STATE(6766), 1, + STATE(6220), 1, + sym__function_attributes_end, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(7063), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7152), 2, + ACTIONS(7304), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(7324), 2, + ACTIONS(7359), 2, anon_sym_final, anon_sym_override, - STATE(3982), 2, + STATE(4041), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(4184), 2, + STATE(4265), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(5458), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5984), 2, + STATE(6125), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7040), 3, + ACTIONS(7046), 3, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_GT2, - STATE(5358), 3, + STATE(5448), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(7145), 12, + ACTIONS(7297), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -356644,26 +363009,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [70410] = 10, + [73601] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6979), 1, - anon_sym_LPAREN2, - ACTIONS(7659), 1, - anon_sym_LBRACK, - ACTIONS(7663), 1, - anon_sym_DOT, - STATE(3545), 1, - sym_argument_list, - STATE(3546), 1, - sym_subscript_argument_list, - ACTIONS(7661), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7665), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6435), 19, + ACTIONS(5525), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -356673,23 +363022,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - ACTIONS(6437), 24, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5527), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -356697,27 +363049,31 @@ static const uint16_t ts_small_parse_table[] = { 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_GT2, - [70484] = 6, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [73661] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4167), 1, - anon_sym_COLON_COLON, - ACTIONS(7789), 1, + ACTIONS(7531), 1, anon_sym_LT, - STATE(3399), 1, + STATE(1587), 1, sym_template_argument_list, - ACTIONS(6368), 19, + ACTIONS(6426), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -356727,24 +363083,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6370), 30, + anon_sym_DASH_GT, + ACTIONS(6428), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -356753,6 +363110,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -356765,17 +363123,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [73725] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6935), 1, + anon_sym_LPAREN2, + ACTIONS(7704), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7706), 1, + anon_sym_AMP_AMP, + ACTIONS(7708), 1, + anon_sym_PIPE, + ACTIONS(7712), 1, + anon_sym_AMP, + ACTIONS(7720), 1, + anon_sym_LBRACK, + ACTIONS(7722), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7724), 1, + anon_sym_or, + ACTIONS(7726), 1, + anon_sym_and, + ACTIONS(7728), 1, + anon_sym_bitor, + ACTIONS(7730), 1, + anon_sym_bitand, + ACTIONS(7734), 1, + anon_sym_DOT, + STATE(3632), 1, + sym_argument_list, + STATE(3652), 1, + sym_subscript_argument_list, + ACTIONS(6947), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(7700), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7710), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7718), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7732), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7736), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, + ACTIONS(7702), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7714), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7716), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6949), 16, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + 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_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_GT2, - [70550] = 5, + [73829] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7568), 1, - anon_sym_LT, - STATE(1856), 1, - sym_template_argument_list, - ACTIONS(6513), 18, + ACTIONS(5845), 1, + anon_sym_LPAREN2, + ACTIONS(6414), 1, + anon_sym_LBRACK, + ACTIONS(7614), 1, + anon_sym_DOT, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + ACTIONS(6416), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7616), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6510), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -356786,25 +363234,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6515), 32, + ACTIONS(6512), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -356823,307 +363268,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [70614] = 30, + [73903] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(5472), 1, + ACTIONS(4200), 1, + anon_sym_EQ, + ACTIONS(5044), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7042), 1, - anon_sym_AMP_AMP, - ACTIONS(7044), 1, - anon_sym_AMP, - ACTIONS(7057), 1, - anon_sym_LBRACK, - ACTIONS(7065), 1, - anon_sym___asm, - ACTIONS(7072), 1, - anon_sym_noexcept, - ACTIONS(7074), 1, - anon_sym_throw, - ACTIONS(7307), 1, - anon_sym___attribute__, - ACTIONS(7310), 1, - anon_sym___attribute, - ACTIONS(7327), 1, - anon_sym_requires, - ACTIONS(7667), 1, - anon_sym_DASH_GT, - STATE(1658), 1, - sym_alignas_qualifier, - STATE(4957), 1, - sym__function_attributes_start, - STATE(5200), 1, - sym_ref_qualifier, - STATE(6038), 1, - sym_trailing_return_type, - STATE(6100), 1, - sym__function_attributes_end, - STATE(6766), 1, - sym_gnu_asm_expression, - ACTIONS(7063), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7152), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(7324), 2, - anon_sym_final, - anon_sym_override, - STATE(3982), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4184), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5458), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5984), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7040), 3, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6008), 1, anon_sym_LPAREN2, - STATE(5361), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7145), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [70728] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5184), 22, - aux_sym_preproc_elif_token1, + ACTIONS(6011), 1, + anon_sym_LBRACK, + ACTIONS(4202), 13, + 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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + ACTIONS(4174), 17, 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_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(5186), 30, + ACTIONS(4166), 18, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_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_LT, - anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [70788] = 9, + [73973] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(6971), 1, - anon_sym_LBRACE, - ACTIONS(7792), 1, - anon_sym_COLON, - STATE(2509), 1, - sym_attribute_specifier, - STATE(2788), 1, - sym__enum_base_clause, - STATE(2880), 1, - sym_enumerator_list, - ACTIONS(5468), 2, + ACTIONS(7808), 1, + anon_sym_virtual, + ACTIONS(7817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7820), 1, + anon_sym___declspec, + ACTIONS(7826), 1, + anon_sym_explicit, + STATE(3054), 1, + sym_alignas_qualifier, + ACTIONS(7814), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(6338), 11, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(7823), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7803), 5, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(6336), 34, + ACTIONS(7801), 7, anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___declspec, anon_sym___based, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, sym_identifier, - sym_auto, anon_sym_decltype, anon_sym_template, anon_sym_operator, - [70860] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5180), 22, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(5182), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_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_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [70920] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6971), 1, - anon_sym_LBRACE, - ACTIONS(7792), 1, - anon_sym_COLON, - STATE(2469), 1, - sym_attribute_specifier, - STATE(2775), 1, - sym__enum_base_clause, - STATE(2882), 1, - sym_enumerator_list, - ACTIONS(5468), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(6344), 11, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(6342), 34, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, + ACTIONS(7811), 9, anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, @@ -357132,6 +363373,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, + STATE(3363), 9, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_explicit_function_specifier, + sym__constructor_specifiers, + aux_sym_operator_cast_definition_repeat1, + ACTIONS(7805), 13, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -357144,30 +363397,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [70992] = 9, + [74053] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(6935), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(7720), 1, anon_sym_LBRACK, - ACTIONS(7564), 1, + ACTIONS(7734), 1, anon_sym_DOT, - STATE(2525), 1, + STATE(3632), 1, sym_argument_list, - STATE(2526), 1, + STATE(3652), 1, sym_subscript_argument_list, - ACTIONS(7566), 2, + ACTIONS(7732), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7736), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6425), 17, + ACTIONS(6410), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -357177,23 +363426,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6427), 28, + ACTIONS(6412), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -357201,7 +363450,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -357212,108 +363460,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - [71064] = 26, + anon_sym_GT2, + [74127] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(6935), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, - anon_sym_LBRACK, - ACTIONS(6933), 1, - anon_sym_EQ, - ACTIONS(7564), 1, - anon_sym_DOT, - ACTIONS(7794), 1, + ACTIONS(7704), 1, anon_sym_PIPE_PIPE, - ACTIONS(7796), 1, + ACTIONS(7706), 1, anon_sym_AMP_AMP, - ACTIONS(7798), 1, + ACTIONS(7708), 1, anon_sym_PIPE, - ACTIONS(7802), 1, + ACTIONS(7712), 1, anon_sym_AMP, - ACTIONS(7808), 1, - anon_sym_GT_EQ, - ACTIONS(7812), 1, + ACTIONS(7720), 1, + anon_sym_LBRACK, + ACTIONS(7722), 1, anon_sym_LT_EQ_GT, - ACTIONS(7814), 1, + ACTIONS(7724), 1, anon_sym_or, - ACTIONS(7816), 1, + ACTIONS(7726), 1, anon_sym_and, - ACTIONS(7818), 1, + ACTIONS(7728), 1, anon_sym_bitor, - ACTIONS(7820), 1, + ACTIONS(7730), 1, anon_sym_bitand, - STATE(2525), 1, + ACTIONS(7734), 1, + anon_sym_DOT, + ACTIONS(7772), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7774), 1, + anon_sym_QMARK, + STATE(3632), 1, sym_argument_list, - STATE(2526), 1, + STATE(3652), 1, sym_subscript_argument_list, - ACTIONS(6439), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7560), 2, + ACTIONS(6989), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(7700), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7566), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7800), 2, + ACTIONS(7710), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(7810), 2, + ACTIONS(7718), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7562), 3, + ACTIONS(7732), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7736), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7702), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7804), 3, + ACTIONS(7714), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7806), 3, + ACTIONS(7716), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6935), 17, - anon_sym_DOT_DOT_DOT, + ACTIONS(6991), 14, anon_sym_COMMA, - 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_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [71170] = 10, + anon_sym_GT2, + [74235] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, - anon_sym_LPAREN2, - ACTIONS(6429), 1, - anon_sym_LBRACK, - ACTIONS(7564), 1, - anon_sym_DOT, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6439), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7566), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6435), 17, + ACTIONS(6076), 1, + anon_sym_EQ, + ACTIONS(6078), 13, + 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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + ACTIONS(4174), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -357327,57 +363575,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + anon_sym___attribute, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6437), 26, + anon_sym_DOT, + ACTIONS(4166), 20, anon_sym_DOT_DOT_DOT, 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_COLON, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [71244] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5827), 1, - anon_sym_LPAREN2, - ACTIONS(6429), 1, - anon_sym_LBRACK, - ACTIONS(7564), 1, - anon_sym_DOT, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6439), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7566), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6441), 17, + [74299] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4187), 1, + anon_sym_COLON_COLON, + ACTIONS(7829), 1, + anon_sym_LT, + STATE(3518), 1, + sym_template_argument_list, + ACTIONS(6397), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -357387,23 +363620,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6443), 26, + anon_sym_DOT, + ACTIONS(6399), 30, anon_sym_DOT_DOT_DOT, 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_COLON, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -357411,7 +363646,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -357422,72 +363656,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [71318] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5827), 1, - anon_sym_LPAREN2, - ACTIONS(6429), 1, - anon_sym_LBRACK, - ACTIONS(6967), 1, - anon_sym_EQ, - ACTIONS(7564), 1, - anon_sym_DOT, - ACTIONS(7794), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7796), 1, - anon_sym_AMP_AMP, - ACTIONS(7798), 1, - anon_sym_PIPE, - ACTIONS(7802), 1, - anon_sym_AMP, - ACTIONS(7808), 1, - anon_sym_GT_EQ, - ACTIONS(7812), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7814), 1, - anon_sym_or, - ACTIONS(7816), 1, - anon_sym_and, - ACTIONS(7818), 1, - anon_sym_bitor, - ACTIONS(7820), 1, - anon_sym_bitand, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6439), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7560), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7566), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7800), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7810), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7562), 3, + anon_sym_GT2, + [74365] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5939), 20, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7804), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7806), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6969), 17, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5941), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_COLON, + 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_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -357502,23 +363710,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [71424] = 9, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [74425] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, - anon_sym_LPAREN2, - ACTIONS(6429), 1, - anon_sym_LBRACK, - ACTIONS(7564), 1, - anon_sym_DOT, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(7566), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6445), 17, + ACTIONS(6006), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -357532,19 +363735,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6447), 28, + anon_sym_DOT, + ACTIONS(6004), 33, anon_sym_DOT_DOT_DOT, 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_COLON, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -357565,194 +363773,217 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [71496] = 26, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [74485] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, - anon_sym_LPAREN2, - ACTIONS(6429), 1, - anon_sym_LBRACK, - ACTIONS(6987), 1, - anon_sym_EQ, - ACTIONS(7564), 1, - anon_sym_DOT, - ACTIONS(7794), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7796), 1, - anon_sym_AMP_AMP, - ACTIONS(7798), 1, + ACTIONS(1940), 22, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, anon_sym_PIPE, - ACTIONS(7802), 1, anon_sym_AMP, - ACTIONS(7808), 1, - anon_sym_GT_EQ, - ACTIONS(7812), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7814), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, anon_sym_or, - ACTIONS(7816), 1, anon_sym_and, - ACTIONS(7818), 1, anon_sym_bitor, - ACTIONS(7820), 1, - anon_sym_bitand, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6439), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7560), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7566), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7800), 2, - anon_sym_CARET, anon_sym_xor, - ACTIONS(7810), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7562), 3, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(1938), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7804), 3, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7806), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6989), 17, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - [71602] = 28, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [74545] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, - anon_sym_LPAREN2, - ACTIONS(6429), 1, - anon_sym_LBRACK, - ACTIONS(6524), 1, - anon_sym_EQ, - ACTIONS(6991), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7564), 1, - anon_sym_DOT, - ACTIONS(7794), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7796), 1, + ACTIONS(67), 1, + anon_sym_const, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7048), 1, anon_sym_AMP_AMP, - ACTIONS(7798), 1, + ACTIONS(7050), 1, + anon_sym_AMP, + ACTIONS(7063), 1, + anon_sym_LBRACK, + ACTIONS(7071), 1, + anon_sym___asm, + ACTIONS(7075), 1, + anon_sym_noexcept, + ACTIONS(7077), 1, + anon_sym_throw, + ACTIONS(7369), 1, + anon_sym___attribute__, + ACTIONS(7372), 1, + anon_sym___attribute, + ACTIONS(7540), 1, + anon_sym_requires, + ACTIONS(7768), 1, + anon_sym_DASH_GT, + STATE(1680), 1, + sym_alignas_qualifier, + STATE(5041), 1, + sym__function_attributes_start, + STATE(5233), 1, + sym_ref_qualifier, + STATE(6256), 1, + sym__function_attributes_end, + STATE(6304), 1, + sym_trailing_return_type, + STATE(6870), 1, + sym_gnu_asm_expression, + ACTIONS(7069), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7304), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7426), 2, + anon_sym_final, + anon_sym_override, + STATE(4041), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4265), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5507), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6017), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6125), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7046), 3, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + STATE(5440), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7297), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [74659] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5180), 22, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, anon_sym_PIPE, - ACTIONS(7802), 1, anon_sym_AMP, - ACTIONS(7808), 1, - anon_sym_GT_EQ, - ACTIONS(7812), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7814), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, anon_sym_or, - ACTIONS(7816), 1, anon_sym_and, - ACTIONS(7818), 1, anon_sym_bitor, - ACTIONS(7820), 1, - anon_sym_bitand, - ACTIONS(7822), 1, - anon_sym_QMARK, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6439), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7560), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7566), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7800), 2, - anon_sym_CARET, anon_sym_xor, - ACTIONS(7810), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7562), 3, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(5182), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7804), 3, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7806), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6526), 15, - anon_sym_COMMA, - 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, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - [71712] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5827), 1, - anon_sym_LPAREN2, - ACTIONS(6429), 1, - anon_sym_LBRACK, - ACTIONS(7564), 1, - anon_sym_DOT, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6439), 2, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7566), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7562), 3, + [74719] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4991), 1, + anon_sym_COLON_COLON, + ACTIONS(6342), 19, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6449), 14, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -357765,15 +363996,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6451), 26, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6344), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_COLON, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -357792,26 +364027,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [71788] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5827), 1, - anon_sym_LPAREN2, - ACTIONS(6429), 1, - anon_sym_LBRACK, - ACTIONS(7564), 1, - anon_sym_DOT, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6439), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7566), 2, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6449), 17, + anon_sym_DASH_GT_STAR, + [74781] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5947), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -357825,19 +364048,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6451), 26, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5949), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -357856,146 +364084,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [71862] = 24, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [74841] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(6935), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(7720), 1, anon_sym_LBRACK, - ACTIONS(7564), 1, + ACTIONS(7734), 1, anon_sym_DOT, - ACTIONS(7796), 1, - anon_sym_AMP_AMP, - ACTIONS(7798), 1, - anon_sym_PIPE, - ACTIONS(7802), 1, - anon_sym_AMP, - ACTIONS(7808), 1, - anon_sym_GT_EQ, - ACTIONS(7812), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7816), 1, - anon_sym_and, - ACTIONS(7818), 1, - anon_sym_bitor, - ACTIONS(7820), 1, - anon_sym_bitand, - STATE(2525), 1, + STATE(3632), 1, sym_argument_list, - STATE(2526), 1, + STATE(3652), 1, sym_subscript_argument_list, - ACTIONS(6439), 2, + ACTIONS(7732), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6449), 2, - anon_sym_EQ, - anon_sym_or, - ACTIONS(7560), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7566), 2, + ACTIONS(7736), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7800), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7810), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7562), 3, + ACTIONS(6422), 19, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7804), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7806), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6451), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - [71964] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5827), 1, - anon_sym_LPAREN2, - ACTIONS(6429), 1, - anon_sym_LBRACK, - ACTIONS(7564), 1, - anon_sym_DOT, - ACTIONS(7798), 1, anon_sym_PIPE, - ACTIONS(7802), 1, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(7808), 1, + anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(7812), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7818), 1, - anon_sym_bitor, - ACTIONS(7820), 1, - anon_sym_bitand, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6439), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7560), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7566), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7800), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7810), 2, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6449), 3, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - ACTIONS(7562), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7804), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7806), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6451), 19, + anon_sym_xor, + ACTIONS(6424), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_COLON, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -358003,72 +364141,54 @@ static const uint16_t ts_small_parse_table[] = { 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_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [72062] = 20, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_GT2, + [74915] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, - anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6937), 1, anon_sym_LBRACK, - ACTIONS(7564), 1, - anon_sym_DOT, - ACTIONS(7802), 1, - anon_sym_AMP, - ACTIONS(7808), 1, - anon_sym_GT_EQ, - ACTIONS(7812), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7820), 1, - anon_sym_bitand, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6439), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7560), 2, + STATE(3403), 1, + sym_new_declarator, + ACTIONS(6346), 20, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7566), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7800), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7810), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7562), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7804), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7806), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6449), 4, - anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - ACTIONS(6451), 20, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(6348), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_COLON, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -358076,72 +364196,57 @@ static const uint16_t ts_small_parse_table[] = { 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_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_bitor, - [72156] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5827), 1, - anon_sym_LPAREN2, - ACTIONS(6429), 1, - anon_sym_LBRACK, - ACTIONS(7564), 1, - anon_sym_DOT, - ACTIONS(7802), 1, - anon_sym_AMP, - ACTIONS(7808), 1, - anon_sym_GT_EQ, - ACTIONS(7812), 1, anon_sym_LT_EQ_GT, - ACTIONS(7820), 1, + anon_sym_bitor, anon_sym_bitand, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6439), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7560), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7566), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7810), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7562), 3, + anon_sym_GT2, + [74979] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7832), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(6464), 20, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7804), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7806), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6449), 6, - anon_sym_PIPE, - anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6451), 20, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6466), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_COLON, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -358156,62 +364261,190 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_sym_LT_EQ_GT, anon_sym_bitor, - [72248] = 17, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [75041] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, - anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(67), 1, + anon_sym_const, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7048), 1, + anon_sym_AMP_AMP, + ACTIONS(7050), 1, + anon_sym_AMP, + ACTIONS(7063), 1, anon_sym_LBRACK, - ACTIONS(7564), 1, - anon_sym_DOT, - ACTIONS(7808), 1, - anon_sym_GT_EQ, - ACTIONS(7812), 1, - anon_sym_LT_EQ_GT, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6439), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7560), 2, + ACTIONS(7071), 1, + anon_sym___asm, + ACTIONS(7075), 1, + anon_sym_noexcept, + ACTIONS(7077), 1, + anon_sym_throw, + ACTIONS(7369), 1, + anon_sym___attribute__, + ACTIONS(7372), 1, + anon_sym___attribute, + ACTIONS(7429), 1, + anon_sym_requires, + ACTIONS(7799), 1, + anon_sym_DASH_GT, + STATE(1680), 1, + sym_alignas_qualifier, + STATE(5022), 1, + sym__function_attributes_start, + STATE(5284), 1, + sym_ref_qualifier, + STATE(6117), 1, + sym_trailing_return_type, + STATE(6230), 1, + sym__function_attributes_end, + STATE(6870), 1, + sym_gnu_asm_expression, + ACTIONS(7069), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7304), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7426), 2, + anon_sym_final, + anon_sym_override, + STATE(4041), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4265), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5507), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6017), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6125), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7046), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + STATE(5434), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7297), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [75155] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5479), 4, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(5477), 48, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_typename, + anon_sym_template, + [75215] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5943), 20, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7566), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7810), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7562), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7804), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7806), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6449), 7, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6451), 21, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5945), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_COLON, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -358226,61 +364459,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, - [72336] = 16, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [75275] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(6935), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(7720), 1, anon_sym_LBRACK, - ACTIONS(7564), 1, + ACTIONS(7734), 1, anon_sym_DOT, - ACTIONS(7808), 1, - anon_sym_GT_EQ, - ACTIONS(7812), 1, - anon_sym_LT_EQ_GT, - STATE(2525), 1, + STATE(3632), 1, sym_argument_list, - STATE(2526), 1, + STATE(3652), 1, sym_subscript_argument_list, - ACTIONS(6439), 2, + ACTIONS(7732), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7560), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7566), 2, + ACTIONS(7736), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7810), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7562), 3, + ACTIONS(6510), 19, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7806), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6449), 7, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6451), 24, + ACTIONS(6512), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -358288,67 +364520,52 @@ static const uint16_t ts_small_parse_table[] = { 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_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [72422] = 14, + anon_sym_GT2, + [75349] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, - anon_sym_LPAREN2, - ACTIONS(6429), 1, - anon_sym_LBRACK, - ACTIONS(7564), 1, - anon_sym_DOT, - ACTIONS(7812), 1, - anon_sym_LT_EQ_GT, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6439), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7560), 2, + ACTIONS(4934), 20, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7566), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7810), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7562), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6449), 10, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6451), 25, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4927), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -358363,15 +364580,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [72504] = 4, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [75409] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5003), 1, - anon_sym_COLON_COLON, - ACTIONS(6348), 19, + ACTIONS(6678), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -358385,13 +364605,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6350), 32, + ACTIONS(6680), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -358401,7 +364622,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -358424,55 +364645,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [72566] = 13, + [75469] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, - anon_sym_LPAREN2, - ACTIONS(6429), 1, - anon_sym_LBRACK, - ACTIONS(7564), 1, - anon_sym_DOT, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6439), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7560), 2, + ACTIONS(4991), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(4993), 20, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7566), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7810), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7562), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6449), 10, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6451), 26, + anon_sym_DOT, + ACTIONS(4986), 30, anon_sym_DOT_DOT_DOT, 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_COLON, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -358480,7 +364688,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -358491,26 +364698,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [72646] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5827), 1, - anon_sym_LPAREN2, - ACTIONS(6429), 1, - anon_sym_LBRACK, - ACTIONS(7564), 1, - anon_sym_DOT, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6439), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7566), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6467), 17, + anon_sym_GT2, + [75531] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5962), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -358524,19 +364720,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6469), 26, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5964), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -358555,72 +364756,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [72720] = 26, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [75591] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + STATE(3758), 1, + sym_ms_unaligned_ptr_modifier, + ACTIONS(7841), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3386), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(7838), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(7836), 11, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(6429), 1, - anon_sym_LBRACK, - ACTIONS(7005), 1, - anon_sym_EQ, - ACTIONS(7564), 1, - anon_sym_DOT, - ACTIONS(7794), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7796), 1, + anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(7798), 1, - anon_sym_PIPE, - ACTIONS(7802), 1, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(7834), 33, anon_sym_AMP, - ACTIONS(7808), 1, - anon_sym_GT_EQ, - ACTIONS(7812), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7814), 1, - anon_sym_or, - ACTIONS(7816), 1, - anon_sym_and, - ACTIONS(7818), 1, - anon_sym_bitor, - ACTIONS(7820), 1, - anon_sym_bitand, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6439), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7560), 2, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [75659] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7784), 1, + anon_sym_LT, + STATE(1893), 1, + sym_template_argument_list, + ACTIONS(6426), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7566), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7800), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7810), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7562), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7804), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7806), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7007), 17, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6428), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_COLON, + 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -358635,237 +364872,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [72826] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5827), 1, - anon_sym_LPAREN2, - ACTIONS(6429), 1, - anon_sym_LBRACK, - ACTIONS(6991), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7011), 1, - anon_sym_EQ, - ACTIONS(7564), 1, - anon_sym_DOT, - ACTIONS(7794), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7796), 1, - anon_sym_AMP_AMP, - ACTIONS(7798), 1, - anon_sym_PIPE, - ACTIONS(7802), 1, - anon_sym_AMP, - ACTIONS(7808), 1, - anon_sym_GT_EQ, - ACTIONS(7812), 1, anon_sym_LT_EQ_GT, - ACTIONS(7814), 1, - anon_sym_or, - ACTIONS(7816), 1, - anon_sym_and, - ACTIONS(7818), 1, anon_sym_bitor, - ACTIONS(7820), 1, anon_sym_bitand, - ACTIONS(7822), 1, - anon_sym_QMARK, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6439), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7560), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [75723] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6646), 20, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7566), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7800), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7810), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7562), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7804), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7806), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7013), 15, - anon_sym_COMMA, - 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, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - [72936] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5827), 1, - anon_sym_LPAREN2, - ACTIONS(6429), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LBRACK, - ACTIONS(7015), 1, anon_sym_EQ, - ACTIONS(7564), 1, - anon_sym_DOT, - ACTIONS(7794), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7796), 1, - anon_sym_AMP_AMP, - ACTIONS(7798), 1, - anon_sym_PIPE, - ACTIONS(7802), 1, - anon_sym_AMP, - ACTIONS(7808), 1, - anon_sym_GT_EQ, - ACTIONS(7812), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7814), 1, anon_sym_or, - ACTIONS(7816), 1, anon_sym_and, - ACTIONS(7818), 1, - anon_sym_bitor, - ACTIONS(7820), 1, - anon_sym_bitand, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6439), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7560), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7566), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7800), 2, - anon_sym_CARET, anon_sym_xor, - ACTIONS(7810), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7562), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7804), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7806), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7017), 17, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6648), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - [73042] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5827), 1, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(6429), 1, - anon_sym_LBRACK, - ACTIONS(6991), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7019), 1, - anon_sym_EQ, - ACTIONS(7564), 1, - anon_sym_DOT, - ACTIONS(7794), 1, anon_sym_PIPE_PIPE, - ACTIONS(7796), 1, anon_sym_AMP_AMP, - ACTIONS(7798), 1, - anon_sym_PIPE, - ACTIONS(7802), 1, - anon_sym_AMP, - ACTIONS(7808), 1, - anon_sym_GT_EQ, - ACTIONS(7812), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7814), 1, - anon_sym_or, - ACTIONS(7816), 1, - anon_sym_and, - ACTIONS(7818), 1, - anon_sym_bitor, - ACTIONS(7820), 1, - anon_sym_bitand, - ACTIONS(7822), 1, - anon_sym_QMARK, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6439), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7560), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7566), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7800), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7810), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7562), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7804), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7806), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7021), 15, - anon_sym_COMMA, - anon_sym_COLON, + anon_sym_GT_EQ, + anon_sym_LBRACK_LBRACK, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -358879,73 +364929,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [73152] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4167), 1, - anon_sym_COLON_COLON, - STATE(1603), 1, - sym_template_argument_list, - STATE(1935), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5038), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5977), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(5979), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [73220] = 4, + anon_sym_DASH_GT_STAR, + [75783] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5454), 1, - anon_sym_COLON_COLON, - ACTIONS(5450), 16, + ACTIONS(5044), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6011), 1, + anon_sym_LBRACK, + ACTIONS(6008), 2, + anon_sym_RPAREN, + anon_sym_LPAREN2, + ACTIONS(4174), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -358960,20 +364962,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5452), 35, + ACTIONS(4166), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -358985,39 +364986,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, anon_sym_DASH_GT_STAR, - [73282] = 10, + [75849] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6979), 1, + ACTIONS(6935), 1, anon_sym_LPAREN2, - ACTIONS(7659), 1, + ACTIONS(7720), 1, anon_sym_LBRACK, - ACTIONS(7663), 1, + ACTIONS(7734), 1, anon_sym_DOT, - STATE(3545), 1, + STATE(3632), 1, sym_argument_list, - STATE(3546), 1, + STATE(3652), 1, sym_subscript_argument_list, - ACTIONS(7661), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7665), 2, + ACTIONS(7736), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6441), 19, + ACTIONS(6514), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -359037,7 +365033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6443), 24, + ACTIONS(6516), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -359061,54 +365057,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_GT2, - [73356] = 11, + [75921] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6979), 1, - anon_sym_LPAREN2, - ACTIONS(7659), 1, - anon_sym_LBRACK, - ACTIONS(7663), 1, - anon_sym_DOT, - STATE(3545), 1, - sym_argument_list, - STATE(3546), 1, - sym_subscript_argument_list, - ACTIONS(7661), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7665), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7673), 3, + ACTIONS(4934), 20, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6449), 16, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6451), 24, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4927), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -359116,6 +365102,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -359126,91 +365113,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_GT2, - [73432] = 10, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [75981] = 51, ACTIONS(3), 1, sym_comment, - ACTIONS(6979), 1, + ACTIONS(6886), 1, anon_sym_LPAREN2, - ACTIONS(7659), 1, + ACTIONS(7159), 1, anon_sym_LBRACK, - ACTIONS(7663), 1, - anon_sym_DOT, - STATE(3545), 1, - sym_argument_list, - STATE(3546), 1, - sym_subscript_argument_list, - ACTIONS(7661), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7665), 2, + ACTIONS(7205), 1, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6449), 19, + ACTIONS(7207), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(7618), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7620), 1, + anon_sym_COMMA, + ACTIONS(7624), 1, anon_sym_DASH, + ACTIONS(7626), 1, anon_sym_PLUS, + ACTIONS(7628), 1, anon_sym_STAR, + ACTIONS(7630), 1, anon_sym_SLASH, + ACTIONS(7632), 1, anon_sym_PERCENT, + ACTIONS(7634), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7636), 1, + anon_sym_AMP_AMP, + ACTIONS(7638), 1, anon_sym_PIPE, + ACTIONS(7640), 1, anon_sym_CARET, + ACTIONS(7642), 1, anon_sym_AMP, + ACTIONS(7644), 1, + anon_sym_EQ_EQ, + ACTIONS(7646), 1, + anon_sym_BANG_EQ, + ACTIONS(7648), 1, anon_sym_GT, + ACTIONS(7650), 1, anon_sym_GT_EQ, + ACTIONS(7652), 1, anon_sym_LT_EQ, + ACTIONS(7654), 1, anon_sym_LT, + ACTIONS(7656), 1, anon_sym_LT_LT, + ACTIONS(7658), 1, anon_sym_GT_GT, + ACTIONS(7660), 1, anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - ACTIONS(6451), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(7662), 1, anon_sym_QMARK, + ACTIONS(7664), 1, anon_sym_STAR_EQ, + ACTIONS(7666), 1, anon_sym_SLASH_EQ, + ACTIONS(7668), 1, anon_sym_PERCENT_EQ, + ACTIONS(7670), 1, anon_sym_PLUS_EQ, + ACTIONS(7672), 1, anon_sym_DASH_EQ, + ACTIONS(7674), 1, anon_sym_LT_LT_EQ, + ACTIONS(7676), 1, + anon_sym_GT_GT_EQ, + ACTIONS(7678), 1, anon_sym_AMP_EQ, + ACTIONS(7680), 1, anon_sym_CARET_EQ, + ACTIONS(7682), 1, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + ACTIONS(7684), 1, anon_sym_LT_EQ_GT, + ACTIONS(7686), 1, + anon_sym_or, + ACTIONS(7688), 1, + anon_sym_and, + ACTIONS(7690), 1, anon_sym_bitor, + ACTIONS(7692), 1, + anon_sym_xor, + ACTIONS(7694), 1, anon_sym_bitand, + ACTIONS(7696), 1, anon_sym_not_eq, - anon_sym_GT2, - [73506] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5827), 1, - anon_sym_LPAREN2, - ACTIONS(6429), 1, - anon_sym_LBRACK, - ACTIONS(7564), 1, - anon_sym_DOT, - STATE(2525), 1, + ACTIONS(7844), 1, + anon_sym_RPAREN, + STATE(1285), 1, + sym__binary_fold_operator, + STATE(3433), 1, sym_argument_list, - STATE(2526), 1, + STATE(3434), 1, sym_subscript_argument_list, - ACTIONS(6439), 2, + STATE(8910), 1, + sym__fold_operator, + ACTIONS(7203), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7698), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7566), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6491), 17, + [76137] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7846), 1, + sym_literal_suffix, + ACTIONS(4174), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -359225,18 +365242,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, - ACTIONS(6493), 26, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4166), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_COLON, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -359248,73 +365275,155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - [73580] = 23, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [76199] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(6979), 1, - anon_sym_LPAREN2, - ACTIONS(7659), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(67), 1, + anon_sym_const, + ACTIONS(7048), 1, + anon_sym_AMP_AMP, + ACTIONS(7050), 1, + anon_sym_AMP, + ACTIONS(7063), 1, anon_sym_LBRACK, - ACTIONS(7663), 1, - anon_sym_DOT, - ACTIONS(7677), 1, + ACTIONS(7071), 1, + anon_sym___asm, + ACTIONS(7075), 1, + anon_sym_noexcept, + ACTIONS(7077), 1, + anon_sym_throw, + ACTIONS(7299), 1, + anon_sym___attribute__, + ACTIONS(7301), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7314), 1, + anon_sym_requires, + ACTIONS(7738), 1, + anon_sym_DASH_GT, + STATE(1680), 1, + sym_alignas_qualifier, + STATE(5038), 1, + sym__function_attributes_start, + STATE(5251), 1, + sym_ref_qualifier, + STATE(5524), 1, + sym_trailing_return_type, + STATE(6344), 1, + sym__function_attributes_end, + STATE(6870), 1, + sym_gnu_asm_expression, + ACTIONS(6037), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7069), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7304), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4041), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4265), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5507), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5965), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7046), 3, + anon_sym_LPAREN2, + anon_sym_LBRACE, + anon_sym_EQ, + STATE(5436), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7297), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [76313] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6935), 1, + anon_sym_LPAREN2, + ACTIONS(7706), 1, anon_sym_AMP_AMP, - ACTIONS(7679), 1, + ACTIONS(7708), 1, anon_sym_PIPE, - ACTIONS(7683), 1, + ACTIONS(7712), 1, anon_sym_AMP, - ACTIONS(7693), 1, + ACTIONS(7720), 1, + anon_sym_LBRACK, + ACTIONS(7722), 1, anon_sym_LT_EQ_GT, - ACTIONS(7697), 1, + ACTIONS(7726), 1, anon_sym_and, - ACTIONS(7699), 1, + ACTIONS(7728), 1, anon_sym_bitor, - ACTIONS(7701), 1, + ACTIONS(7730), 1, anon_sym_bitand, - STATE(3545), 1, - sym_argument_list, - STATE(3546), 1, - sym_subscript_argument_list, - ACTIONS(7661), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7665), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7671), 2, + ACTIONS(7734), 1, + anon_sym_DOT, + STATE(3632), 1, + sym_argument_list, + STATE(3652), 1, + sym_subscript_argument_list, + ACTIONS(7700), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7681), 2, + ACTIONS(7710), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(7689), 2, + ACTIONS(7718), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6449), 3, + ACTIONS(7732), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7736), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6518), 3, anon_sym_EQ, anon_sym_GT_GT_EQ, anon_sym_or, - ACTIONS(7673), 3, + ACTIONS(7702), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7685), 3, + ACTIONS(7714), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7687), 4, + ACTIONS(7716), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6451), 17, + ACTIONS(6520), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -359332,13 +365441,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or_eq, anon_sym_xor_eq, anon_sym_GT2, - [73680] = 4, + [76413] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5003), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(5005), 20, + ACTIONS(5845), 1, + anon_sym_LPAREN2, + ACTIONS(6414), 1, + anon_sym_LBRACK, + ACTIONS(7614), 1, + anon_sym_DOT, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + ACTIONS(7616), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6433), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -359348,26 +365467,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(4998), 30, + ACTIONS(6435), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK, + anon_sym_GT_EQ, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -359375,6 +365491,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -359387,13 +365504,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [73742] = 3, + [76485] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6477), 20, + ACTIONS(5705), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -359407,14 +365521,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6479), 32, + ACTIONS(5707), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -359424,7 +365534,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -359436,78 +365547,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [73802] = 21, + [76544] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6979), 1, - anon_sym_LPAREN2, - ACTIONS(7659), 1, - anon_sym_LBRACK, - ACTIONS(7663), 1, - anon_sym_DOT, - ACTIONS(7679), 1, - anon_sym_PIPE, - ACTIONS(7683), 1, - anon_sym_AMP, - ACTIONS(7693), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7699), 1, - anon_sym_bitor, - ACTIONS(7701), 1, - anon_sym_bitand, - STATE(3545), 1, - sym_argument_list, - STATE(3546), 1, - sym_subscript_argument_list, - ACTIONS(7661), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7665), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7671), 2, + ACTIONS(3959), 21, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7681), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7689), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7673), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7685), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6449), 4, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - ACTIONS(7687), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6451), 18, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3961), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -359521,11 +365607,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_GT2, - [73898] = 3, + [76603] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3947), 20, + ACTIONS(6722), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -359539,14 +365633,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3949), 32, + ACTIONS(6724), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -359556,7 +365649,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -359579,26 +365672,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [73958] = 10, + [76662] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6979), 1, - anon_sym_LPAREN2, - ACTIONS(7659), 1, - anon_sym_LBRACK, - ACTIONS(7663), 1, - anon_sym_DOT, - STATE(3545), 1, - sym_argument_list, - STATE(3546), 1, - sym_subscript_argument_list, - ACTIONS(7661), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7665), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6467), 19, + ACTIONS(6502), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -359613,18 +365690,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6469), 24, + anon_sym_DOT, + ACTIONS(6504), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -359642,122 +365723,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_GT2, - [74032] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5484), 4, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(5482), 48, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - [74092] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6979), 1, - anon_sym_LPAREN2, - ACTIONS(7659), 1, - anon_sym_LBRACK, - ACTIONS(7663), 1, - anon_sym_DOT, - ACTIONS(7683), 1, - anon_sym_AMP, - ACTIONS(7693), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7701), 1, - anon_sym_bitand, - STATE(3545), 1, - sym_argument_list, - STATE(3546), 1, - sym_subscript_argument_list, - ACTIONS(7661), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7665), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7671), 2, + anon_sym_GT2, + [76721] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 19, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7681), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7689), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7673), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7685), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7687), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6449), 5, - anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - ACTIONS(6451), 19, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4166), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -359765,96 +365769,81 @@ static const uint16_t ts_small_parse_table[] = { 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_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_sym_LT_EQ_GT, anon_sym_bitor, - anon_sym_GT2, - [74184] = 18, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [76780] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6979), 1, + ACTIONS(7083), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(7659), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LBRACK, - ACTIONS(7663), 1, - anon_sym_DOT, - ACTIONS(7683), 1, - anon_sym_AMP, - ACTIONS(7693), 1, + 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_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7701), 1, - anon_sym_bitand, - STATE(3545), 1, - sym_argument_list, - STATE(3546), 1, - sym_subscript_argument_list, - ACTIONS(7661), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7665), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7671), 2, + anon_sym_GT2, + ACTIONS(7081), 27, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7689), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7673), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7685), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7687), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6449), 7, - anon_sym_PIPE, - anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - ACTIONS(6451), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - 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_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - anon_sym_GT2, - [74274] = 6, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + [76839] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7101), 1, - sym_auto, - ACTIONS(7103), 1, - anon_sym_decltype, - STATE(3525), 1, - sym_decltype_auto, - ACTIONS(5589), 16, + ACTIONS(6498), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -359864,23 +365853,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5591), 33, + ACTIONS(6500), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -359890,25 +365881,25 @@ static const uint16_t ts_small_parse_table[] = { 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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [74340] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [76898] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6477), 19, + ACTIONS(3943), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -359918,17 +365909,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LBRACK, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6479), 33, + ACTIONS(3945), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -359936,10 +365929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -359947,7 +365937,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -359962,246 +365951,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [74400] = 51, + anon_sym_GT2, + [76957] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6864), 1, - anon_sym_LPAREN2, - ACTIONS(7223), 1, - anon_sym_LBRACK, - ACTIONS(7269), 1, - anon_sym_DOT_STAR, - ACTIONS(7271), 1, - anon_sym_DASH_GT_STAR, - ACTIONS(7571), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7573), 1, - anon_sym_COMMA, - ACTIONS(7577), 1, + ACTIONS(4174), 19, anon_sym_DASH, - ACTIONS(7579), 1, anon_sym_PLUS, - ACTIONS(7581), 1, anon_sym_STAR, - ACTIONS(7583), 1, anon_sym_SLASH, - ACTIONS(7585), 1, anon_sym_PERCENT, - ACTIONS(7587), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7589), 1, - anon_sym_AMP_AMP, - ACTIONS(7591), 1, anon_sym_PIPE, - ACTIONS(7593), 1, anon_sym_CARET, - ACTIONS(7595), 1, anon_sym_AMP, - ACTIONS(7597), 1, - anon_sym_EQ_EQ, - ACTIONS(7599), 1, - anon_sym_BANG_EQ, - ACTIONS(7601), 1, anon_sym_GT, - ACTIONS(7603), 1, - anon_sym_GT_EQ, - ACTIONS(7605), 1, anon_sym_LT_EQ, - ACTIONS(7607), 1, anon_sym_LT, - ACTIONS(7609), 1, anon_sym_LT_LT, - ACTIONS(7611), 1, anon_sym_GT_GT, - ACTIONS(7613), 1, anon_sym_EQ, - ACTIONS(7615), 1, - anon_sym_QMARK, - ACTIONS(7617), 1, - anon_sym_STAR_EQ, - ACTIONS(7619), 1, - anon_sym_SLASH_EQ, - ACTIONS(7621), 1, - anon_sym_PERCENT_EQ, - ACTIONS(7623), 1, - anon_sym_PLUS_EQ, - ACTIONS(7625), 1, - anon_sym_DASH_EQ, - ACTIONS(7627), 1, - anon_sym_LT_LT_EQ, - ACTIONS(7629), 1, - anon_sym_GT_GT_EQ, - ACTIONS(7631), 1, - anon_sym_AMP_EQ, - ACTIONS(7633), 1, - anon_sym_CARET_EQ, - ACTIONS(7635), 1, - anon_sym_PIPE_EQ, - ACTIONS(7637), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7639), 1, anon_sym_or, - ACTIONS(7641), 1, anon_sym_and, - ACTIONS(7643), 1, - anon_sym_bitor, - ACTIONS(7645), 1, anon_sym_xor, - ACTIONS(7647), 1, - anon_sym_bitand, - ACTIONS(7649), 1, - anon_sym_not_eq, - ACTIONS(7824), 1, - anon_sym_RPAREN, - STATE(1216), 1, - sym__binary_fold_operator, - STATE(3515), 1, - sym_argument_list, - STATE(3516), 1, - sym_subscript_argument_list, - STATE(8694), 1, - sym__fold_operator, - ACTIONS(7267), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7651), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - [74556] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6979), 1, - anon_sym_LPAREN2, - ACTIONS(7659), 1, - anon_sym_LBRACK, - ACTIONS(7663), 1, - anon_sym_DOT, - ACTIONS(7693), 1, - anon_sym_LT_EQ_GT, - STATE(3545), 1, - sym_argument_list, - STATE(3546), 1, - sym_subscript_argument_list, - ACTIONS(7661), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7665), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7671), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7689), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7673), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7685), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7687), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6449), 8, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - ACTIONS(6451), 20, + ACTIONS(4166), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - 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_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_GT2, - [74642] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6979), 1, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(7659), 1, - anon_sym_LBRACK, - ACTIONS(7663), 1, - anon_sym_DOT, - ACTIONS(7675), 1, anon_sym_PIPE_PIPE, - ACTIONS(7677), 1, anon_sym_AMP_AMP, - ACTIONS(7679), 1, - anon_sym_PIPE, - ACTIONS(7683), 1, - anon_sym_AMP, - ACTIONS(7693), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7695), 1, - anon_sym_or, - ACTIONS(7697), 1, - anon_sym_and, - ACTIONS(7699), 1, - anon_sym_bitor, - ACTIONS(7701), 1, - anon_sym_bitand, - STATE(3545), 1, - sym_argument_list, - STATE(3546), 1, - sym_subscript_argument_list, - ACTIONS(6967), 2, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(7661), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7665), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7671), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7681), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7689), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7673), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7685), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7687), 4, - anon_sym_GT, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6969), 16, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -360209,198 +365993,245 @@ static const uint16_t ts_small_parse_table[] = { 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_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_GT2, - [74746] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6979), 1, - anon_sym_LPAREN2, - ACTIONS(7659), 1, - anon_sym_LBRACK, - ACTIONS(7663), 1, - anon_sym_DOT, - ACTIONS(7693), 1, anon_sym_LT_EQ_GT, - STATE(3545), 1, - sym_argument_list, - STATE(3546), 1, - sym_subscript_argument_list, - ACTIONS(7661), 2, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7665), 2, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7671), 2, + anon_sym_DASH_GT_STAR, + [77016] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(3212), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(6080), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(6082), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(5915), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7689), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7673), 3, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7687), 4, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6449), 8, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_GT_GT_EQ, + anon_sym___attribute__, + anon_sym___attribute, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, - ACTIONS(6451), 23, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + ACTIONS(5917), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_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_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_GT2, - [74830] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6979), 1, - anon_sym_LPAREN2, - ACTIONS(7659), 1, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(7663), 1, - anon_sym_DOT, - ACTIONS(7693), 1, + anon_sym_QMARK, anon_sym_LT_EQ_GT, - STATE(3545), 1, - sym_argument_list, - STATE(3546), 1, - sym_subscript_argument_list, - ACTIONS(7661), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7665), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7671), 2, + [77081] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5470), 16, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7689), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7673), 3, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6449), 12, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, - ACTIONS(6451), 23, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + ACTIONS(5472), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_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_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_GT2, - [74912] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6979), 1, - anon_sym_LPAREN2, - ACTIONS(7659), 1, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(7663), 1, - anon_sym_DOT, - STATE(3545), 1, - sym_argument_list, - STATE(3546), 1, - sym_subscript_argument_list, - ACTIONS(7661), 2, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7665), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7671), 2, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [77140] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5871), 1, + anon_sym___attribute, + ACTIONS(7065), 1, + anon_sym_const, + ACTIONS(7848), 1, + anon_sym_LPAREN2, + ACTIONS(7850), 1, + anon_sym_STAR, + ACTIONS(7852), 1, + anon_sym_AMP_AMP, + ACTIONS(7854), 1, + anon_sym_AMP, + ACTIONS(7856), 1, + sym_ms_restrict_modifier, + ACTIONS(7862), 1, + anon_sym_LBRACK, + STATE(2908), 1, + sym_parameter_list, + STATE(3758), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4036), 1, + sym_alignas_qualifier, + STATE(5953), 1, + sym__function_declarator_seq, + STATE(6134), 1, + sym__abstract_declarator, + ACTIONS(7067), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7858), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(7860), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3410), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4174), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5952), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(5863), 11, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(7052), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [77237] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6564), 19, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7673), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6449), 14, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6451), 24, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6566), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -360408,6 +366239,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -360418,56 +366250,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_GT2, - [74990] = 13, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [77296] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(6979), 1, + ACTIONS(5879), 1, + anon_sym___attribute, + ACTIONS(7065), 1, + anon_sym_const, + ACTIONS(7848), 1, anon_sym_LPAREN2, - ACTIONS(7659), 1, + ACTIONS(7850), 1, + anon_sym_STAR, + ACTIONS(7852), 1, + anon_sym_AMP_AMP, + ACTIONS(7854), 1, + anon_sym_AMP, + ACTIONS(7856), 1, + sym_ms_restrict_modifier, + ACTIONS(7862), 1, anon_sym_LBRACK, - ACTIONS(7663), 1, - anon_sym_DOT, - STATE(3545), 1, - sym_argument_list, - STATE(3546), 1, - sym_subscript_argument_list, - ACTIONS(7661), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7665), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7671), 2, + STATE(2908), 1, + sym_parameter_list, + STATE(3758), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4036), 1, + sym_alignas_qualifier, + STATE(5953), 1, + sym__function_declarator_seq, + STATE(6147), 1, + sym__abstract_declarator, + ACTIONS(7067), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7858), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(7860), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3386), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4221), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5952), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(5877), 11, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(7052), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [77393] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6572), 19, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7689), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7673), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6449), 12, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6451), 24, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6574), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -360475,6 +366370,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -360485,72 +366381,323 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_GT2, - [75070] = 25, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [77452] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6979), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(7027), 1, + anon_sym_LBRACE, + ACTIONS(7299), 1, + anon_sym___attribute__, + ACTIONS(7864), 1, + anon_sym_COLON, + STATE(2458), 1, + sym_attribute_specifier, + STATE(3546), 1, + sym__enum_base_clause, + STATE(3670), 1, + sym_enumerator_list, + ACTIONS(6393), 5, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(6395), 39, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [77525] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(67), 1, + anon_sym_const, + ACTIONS(5871), 1, + anon_sym___asm, + ACTIONS(7848), 1, anon_sym_LPAREN2, - ACTIONS(7659), 1, + ACTIONS(7856), 1, + sym_ms_restrict_modifier, + ACTIONS(7862), 1, anon_sym_LBRACK, - ACTIONS(7663), 1, - anon_sym_DOT, - ACTIONS(7675), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7677), 1, + ACTIONS(7866), 1, + anon_sym_STAR, + ACTIONS(7868), 1, anon_sym_AMP_AMP, - ACTIONS(7679), 1, - anon_sym_PIPE, - ACTIONS(7683), 1, + ACTIONS(7870), 1, anon_sym_AMP, - ACTIONS(7693), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7695), 1, - anon_sym_or, - ACTIONS(7697), 1, - anon_sym_and, - ACTIONS(7699), 1, - anon_sym_bitor, - ACTIONS(7701), 1, - anon_sym_bitand, - STATE(3545), 1, - sym_argument_list, - STATE(3546), 1, - sym_subscript_argument_list, - ACTIONS(7005), 2, + STATE(1680), 1, + sym_alignas_qualifier, + STATE(3006), 1, + sym_parameter_list, + STATE(3758), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5953), 1, + sym__function_declarator_seq, + STATE(6179), 1, + sym__abstract_declarator, + ACTIONS(7304), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7858), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(7860), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3415), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4214), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5952), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(5863), 11, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(7661), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7665), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7671), 2, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(7297), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [77622] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(7027), 1, + anon_sym_LBRACE, + ACTIONS(7299), 1, + anon_sym___attribute__, + ACTIONS(7864), 1, + anon_sym_COLON, + STATE(2457), 1, + sym_attribute_specifier, + STATE(3547), 1, + sym__enum_base_clause, + STATE(3674), 1, + sym_enumerator_list, + ACTIONS(6316), 5, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(6318), 39, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [77695] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(67), 1, + anon_sym_const, + ACTIONS(5879), 1, + anon_sym___asm, + ACTIONS(7848), 1, + anon_sym_LPAREN2, + ACTIONS(7856), 1, + sym_ms_restrict_modifier, + ACTIONS(7862), 1, + anon_sym_LBRACK, + ACTIONS(7866), 1, + anon_sym_STAR, + ACTIONS(7868), 1, + anon_sym_AMP_AMP, + ACTIONS(7870), 1, + anon_sym_AMP, + STATE(1680), 1, + sym_alignas_qualifier, + STATE(3006), 1, + sym_parameter_list, + STATE(3758), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5953), 1, + sym__function_declarator_seq, + STATE(6096), 1, + sym__abstract_declarator, + ACTIONS(7304), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7858), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(7860), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3386), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4167), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5952), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(5877), 11, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(7297), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [77792] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2623), 1, + anon_sym_LBRACE, + ACTIONS(7289), 1, + anon_sym_LPAREN2, + STATE(3893), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6283), 16, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7681), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7689), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7673), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7685), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7687), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7007), 16, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6285), 31, anon_sym_DOT_DOT_DOT, 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -360558,78 +366705,57 @@ static const uint16_t ts_small_parse_table[] = { 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_GT2, - [75174] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6979), 1, - anon_sym_LPAREN2, - ACTIONS(7659), 1, - anon_sym_LBRACK, - ACTIONS(7663), 1, - anon_sym_DOT, - ACTIONS(7675), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7677), 1, - anon_sym_AMP_AMP, - ACTIONS(7679), 1, - anon_sym_PIPE, - ACTIONS(7683), 1, - anon_sym_AMP, - ACTIONS(7693), 1, anon_sym_LT_EQ_GT, - ACTIONS(7695), 1, anon_sym_or, - ACTIONS(7697), 1, anon_sym_and, - ACTIONS(7699), 1, anon_sym_bitor, - ACTIONS(7701), 1, + anon_sym_xor, anon_sym_bitand, - STATE(3545), 1, - sym_argument_list, - STATE(3546), 1, - sym_subscript_argument_list, - ACTIONS(7015), 2, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(7661), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7665), 2, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7671), 2, + anon_sym_DASH_GT_STAR, + [77857] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7872), 1, + anon_sym_LT, + STATE(3384), 1, + sym_template_argument_list, + ACTIONS(6426), 19, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7681), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7689), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7673), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7685), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7687), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7017), 16, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(6428), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -360643,67 +366769,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_GT2, - [75278] = 3, + [77920] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6277), 21, + ACTIONS(7875), 1, + sym_identifier, + STATE(3569), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(5074), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(5076), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(5397), 18, 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_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(6279), 30, + sym_literal_suffix, + ACTIONS(5395), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_LT_LT, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [75337] = 3, + [77987] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6660), 19, + ACTIONS(5907), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -360713,27 +366851,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6662), 32, + ACTIONS(5909), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -360741,7 +366879,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -360755,11 +366892,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [75396] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [78046] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6578), 19, + ACTIONS(6638), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -360779,7 +366917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6580), 32, + ACTIONS(6640), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -360812,10 +366950,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [75455] = 3, + [78105] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5140), 19, + ACTIONS(5148), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -360835,7 +366973,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5142), 32, + ACTIONS(5150), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -360868,10 +367006,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [75514] = 3, + [78164] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5758), 16, + ACTIONS(2623), 1, + anon_sym_LBRACE, + ACTIONS(7289), 1, + anon_sym_LPAREN2, + STATE(3912), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6309), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -360888,17 +367033,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5760), 35, + ACTIONS(6311), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -360921,13 +367064,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, anon_sym_DASH_GT_STAR, - [75573] = 3, + [78229] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 19, + ACTIONS(6718), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -360947,7 +367088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1934), 32, + ACTIONS(6720), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -360980,37 +367121,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [75632] = 4, + [78288] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7826), 1, - sym_literal_suffix, - ACTIONS(4146), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - ACTIONS(4154), 26, + ACTIONS(5188), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -361020,154 +367134,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - [75693] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4167), 1, - anon_sym_COLON_COLON, - ACTIONS(7828), 1, - anon_sym_LT, - STATE(1844), 1, - sym_template_argument_list, - STATE(3363), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7556), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4144), 18, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(4152), 25, + anon_sym_DASH_GT, + ACTIONS(5190), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [75762] = 5, + anon_sym_DASH_GT_STAR, + [78347] = 7, ACTIONS(3), 1, sym_comment, - STATE(3472), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7830), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5890), 21, - aux_sym_preproc_elif_token1, + ACTIONS(7877), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7879), 1, + anon_sym_AMP_AMP, + ACTIONS(7881), 1, + anon_sym_or, + ACTIONS(7883), 1, + anon_sym_and, + ACTIONS(6298), 17, 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_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5888), 25, + anon_sym_DASH_GT, + ACTIONS(6300), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [75825] = 5, + anon_sym_DASH_GT_STAR, + [78414] = 3, ACTIONS(3), 1, sym_comment, - STATE(3472), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7830), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5900), 21, - aux_sym_preproc_elif_token1, + ACTIONS(5477), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -361176,8 +367249,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -361185,16 +367256,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5898), 25, + sym_literal_suffix, + ACTIONS(5479), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -361206,18 +367272,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [75888] = 3, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [78473] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6410), 19, + ACTIONS(6714), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -361237,7 +367316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6412), 32, + ACTIONS(6716), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -361270,10 +367349,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [75947] = 3, + [78532] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4154), 19, + ACTIONS(3903), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -361293,7 +367372,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4146), 32, + ACTIONS(3899), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -361326,12 +367405,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [76006] = 4, + [78591] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7832), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(6477), 21, + ACTIONS(6670), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -361341,26 +367418,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6479), 29, + anon_sym_DASH_GT, + ACTIONS(6672), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -361368,6 +367446,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -361381,19 +367460,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [76067] = 6, + anon_sym_DASH_GT_STAR, + [78650] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2609), 1, - anon_sym_LBRACE, - ACTIONS(7097), 1, - anon_sym_LPAREN2, - STATE(3829), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6263), 16, + ACTIONS(6006), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -361408,12 +367479,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6265), 31, + ACTIONS(6004), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -361431,370 +367506,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [76132] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(3374), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7834), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5938), 21, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5936), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [76195] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(3375), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7836), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5932), 21, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5930), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [76258] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7042), 1, - anon_sym_AMP_AMP, - ACTIONS(7044), 1, - anon_sym_AMP, - ACTIONS(7057), 1, - anon_sym_LBRACK, - ACTIONS(7059), 1, - anon_sym_const, - ACTIONS(7065), 1, - anon_sym___asm, - ACTIONS(7072), 1, - anon_sym_noexcept, - ACTIONS(7074), 1, - anon_sym_throw, - ACTIONS(7083), 1, - anon_sym___attribute__, - ACTIONS(7085), 1, - anon_sym___attribute, - ACTIONS(7327), 1, - anon_sym_requires, - ACTIONS(7838), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7840), 1, - anon_sym_DASH_GT, - STATE(3992), 1, - sym_alignas_qualifier, - STATE(4977), 1, - sym__function_attributes_start, - STATE(5237), 1, - sym_ref_qualifier, - STATE(6038), 1, - sym_trailing_return_type, - STATE(6370), 1, - sym__function_attributes_end, - STATE(6745), 1, - sym_gnu_asm_expression, - ACTIONS(7040), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - ACTIONS(7061), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(7063), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7324), 2, - anon_sym_final, - anon_sym_override, - STATE(4072), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4287), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5733), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5984), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5380), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7046), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [76371] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5859), 1, - anon_sym___asm, - ACTIONS(7059), 1, - anon_sym_const, - ACTIONS(7842), 1, - anon_sym_LPAREN2, - ACTIONS(7844), 1, - anon_sym_STAR, - ACTIONS(7846), 1, - anon_sym_AMP_AMP, - ACTIONS(7848), 1, - anon_sym_AMP, - ACTIONS(7850), 1, - sym_ms_restrict_modifier, - ACTIONS(7856), 1, - anon_sym_LBRACK, - STATE(2902), 1, - sym_parameter_list, - STATE(3761), 1, - sym_ms_unaligned_ptr_modifier, - STATE(3992), 1, - sym_alignas_qualifier, - STATE(5792), 1, - sym__function_declarator_seq, - STATE(6077), 1, - sym__abstract_declarator, - ACTIONS(7061), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(7852), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(7854), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3372), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4123), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5804), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5851), 11, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(7046), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [76468] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5867), 1, - anon_sym___asm, - ACTIONS(7059), 1, - anon_sym_const, - ACTIONS(7842), 1, - anon_sym_LPAREN2, - ACTIONS(7844), 1, - anon_sym_STAR, - ACTIONS(7846), 1, - anon_sym_AMP_AMP, - ACTIONS(7848), 1, - anon_sym_AMP, - ACTIONS(7850), 1, - sym_ms_restrict_modifier, - ACTIONS(7856), 1, - anon_sym_LBRACK, - STATE(2902), 1, - sym_parameter_list, - STATE(3761), 1, - sym_ms_unaligned_ptr_modifier, - STATE(3992), 1, - sym_alignas_qualifier, - STATE(5792), 1, - sym__function_declarator_seq, - STATE(6083), 1, - sym__abstract_declarator, - ACTIONS(7061), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(7852), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(7854), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3283), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4125), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5804), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5865), 11, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(7046), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [76565] = 3, + [78709] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4154), 19, + ACTIONS(6658), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -361814,7 +367540,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4146), 32, + ACTIONS(6660), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -361847,126 +367573,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [76624] = 5, + [78768] = 3, ACTIONS(3), 1, sym_comment, - STATE(3472), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7830), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5944), 21, - aux_sym_preproc_elif_token1, + ACTIONS(6630), 19, 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_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5942), 25, + anon_sym_DASH_GT, + ACTIONS(6632), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [76687] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(3472), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7830), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5896), 21, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5894), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [76750] = 3, + anon_sym_DASH_GT_STAR, + [78827] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6618), 19, + ACTIONS(6564), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -361986,7 +367652,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6620), 32, + ACTIONS(6566), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -362019,184 +367685,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [76809] = 5, + [78886] = 3, ACTIONS(3), 1, sym_comment, - STATE(3389), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7858), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5904), 21, - aux_sym_preproc_elif_token1, + ACTIONS(6626), 19, 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_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5902), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [76872] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(3395), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7860), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5922), 21, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, + anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5920), 25, + anon_sym_DASH_GT, + ACTIONS(6628), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [76935] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(3472), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7830), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5928), 21, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5926), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [76998] = 3, + anon_sym_DASH_GT_STAR, + [78945] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6622), 19, + ACTIONS(2623), 1, + anon_sym_LBRACE, + ACTIONS(7289), 1, + anon_sym_LPAREN2, + STATE(3915), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6224), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -362211,16 +367766,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6624), 32, + ACTIONS(6226), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -362238,21 +367789,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [77057] = 3, + [79010] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5871), 1, + anon_sym___asm, + ACTIONS(7065), 1, + anon_sym_const, + ACTIONS(7848), 1, + anon_sym_LPAREN2, + ACTIONS(7856), 1, + sym_ms_restrict_modifier, + ACTIONS(7862), 1, + anon_sym_LBRACK, + ACTIONS(7885), 1, + anon_sym_STAR, + ACTIONS(7887), 1, + anon_sym_AMP_AMP, + ACTIONS(7889), 1, + anon_sym_AMP, + STATE(3010), 1, + sym_parameter_list, + STATE(3758), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4036), 1, + sym_alignas_qualifier, + STATE(5953), 1, + sym__function_declarator_seq, + STATE(6142), 1, + sym__abstract_declarator, + ACTIONS(7067), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7858), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(7860), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3437), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4190), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5952), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(5863), 11, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(7052), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [79107] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5879), 1, + anon_sym___asm, + ACTIONS(7065), 1, + anon_sym_const, + ACTIONS(7848), 1, + anon_sym_LPAREN2, + ACTIONS(7856), 1, + sym_ms_restrict_modifier, + ACTIONS(7862), 1, + anon_sym_LBRACK, + ACTIONS(7885), 1, + anon_sym_STAR, + ACTIONS(7887), 1, + anon_sym_AMP_AMP, + ACTIONS(7889), 1, + anon_sym_AMP, + STATE(3010), 1, + sym_parameter_list, + STATE(3758), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4036), 1, + sym_alignas_qualifier, + STATE(5953), 1, + sym__function_declarator_seq, + STATE(6169), 1, + sym__abstract_declarator, + ACTIONS(7067), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7858), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(7860), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3386), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4197), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5952), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(5877), 11, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(7052), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [79204] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5136), 19, + ACTIONS(6560), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -362272,7 +367973,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5138), 32, + ACTIONS(6562), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -362305,10 +368006,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [77116] = 3, + [79263] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5136), 19, + ACTIONS(5192), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -362328,7 +368029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5138), 32, + ACTIONS(5194), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -362361,10 +368062,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [77175] = 3, + [79322] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5136), 19, + ACTIONS(6650), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -362384,7 +368085,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5138), 32, + ACTIONS(6652), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -362417,10 +368118,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [77234] = 3, + [79381] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6483), 19, + ACTIONS(5796), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -362435,12 +368136,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6485), 32, + ACTIONS(5798), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -362450,6 +368148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -362462,79 +368161,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [77293] = 5, + [79440] = 3, ACTIONS(3), 1, sym_comment, - STATE(3362), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7862), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5750), 21, - aux_sym_preproc_elif_token1, + ACTIONS(5820), 16, 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_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5822), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, sym_auto, anon_sym_decltype, - ACTIONS(5752), 25, + anon_sym_DASH_GT_STAR, + [79499] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5693), 16, + 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_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5695), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [77356] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [79558] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6714), 19, + ACTIONS(6494), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -362544,27 +368299,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6716), 32, + ACTIONS(6496), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -362572,7 +368327,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -362586,18 +368340,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [77415] = 6, + anon_sym_DASH_GT, + anon_sym_GT2, + [79617] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2609), 1, - anon_sym_LBRACE, - ACTIONS(7097), 1, - anon_sym_LPAREN2, - STATE(3880), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6188), 16, + ACTIONS(5681), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -362614,15 +368362,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6190), 31, + ACTIONS(5683), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -362645,11 +368395,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [77480] = 3, + [79676] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6487), 20, + ACTIONS(6441), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -362659,26 +368411,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6489), 31, + anon_sym_DASH_GT, + ACTIONS(6443), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -362687,6 +368439,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -362700,70 +368453,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [77539] = 5, + anon_sym_DASH_GT_STAR, + [79735] = 3, ACTIONS(3), 1, sym_comment, - STATE(3472), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7830), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5910), 21, - aux_sym_preproc_elif_token1, + ACTIONS(5685), 16, 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_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5908), 25, + anon_sym_DASH_GT, + ACTIONS(5687), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [77602] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [79794] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6398), 19, + ACTIONS(6594), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -362783,7 +368533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6400), 32, + ACTIONS(6596), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -362816,10 +368566,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [77661] = 3, + [79853] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6636), 19, + ACTIONS(5689), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -362834,12 +368584,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5691), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [79912] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5768), 16, + 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_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6638), 32, + ACTIONS(5770), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -362849,6 +368652,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -362861,21 +368665,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [77720] = 3, + [79971] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6192), 21, + ACTIONS(7891), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(6464), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -362897,7 +368705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6194), 30, + ACTIONS(6466), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -362905,7 +368713,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -362928,10 +368735,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [77779] = 3, + [80032] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6196), 21, + ACTIONS(5994), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -362953,7 +368760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6198), 30, + ACTIONS(5996), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -362984,10 +368791,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [77838] = 3, + [80091] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6200), 21, + ACTIONS(7523), 1, + anon_sym_LT, + STATE(1596), 1, + sym_template_argument_list, + ACTIONS(6426), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -362997,27 +368808,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6202), 30, + ACTIONS(6428), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -363025,6 +368834,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -363039,69 +368849,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [77897] = 5, + [80154] = 3, ACTIONS(3), 1, sym_comment, - STATE(3472), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7830), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5918), 21, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5916), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [77960] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6640), 19, + ACTIONS(5939), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -363111,27 +368862,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6642), 32, + ACTIONS(5941), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -363139,7 +368890,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -363153,11 +368903,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [78019] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [80213] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5806), 16, + ACTIONS(5772), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -363174,7 +368925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5808), 35, + ACTIONS(5774), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -363210,73 +368961,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [78078] = 8, + [80272] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4167), 1, - anon_sym_COLON_COLON, - ACTIONS(6630), 1, - anon_sym_LT, - STATE(1603), 1, - sym_template_argument_list, - STATE(3047), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7009), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4144), 5, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(4152), 38, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [78147] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5003), 1, - anon_sym_COLON_COLON, - ACTIONS(6348), 20, + ACTIONS(5196), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -363286,25 +368974,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6350), 30, + anon_sym_DASH_GT, + ACTIONS(5198), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -363313,6 +369002,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -363326,12 +369016,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [78208] = 3, + anon_sym_DASH_GT_STAR, + [80331] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5794), 16, + ACTIONS(5196), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -363346,9 +369035,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5796), 35, + ACTIONS(5198), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -363358,7 +369050,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -363371,23 +369062,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, anon_sym_DASH_GT_STAR, - [78267] = 3, + [80390] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5442), 19, + ACTIONS(5196), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -363407,7 +369096,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2685), 32, + ACTIONS(5198), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -363440,14 +369129,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [78326] = 5, + [80449] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7501), 1, - anon_sym_LT, - STATE(1577), 1, - sym_template_argument_list, - ACTIONS(6513), 17, + ACTIONS(6445), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -363458,6 +369143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, @@ -363465,7 +369151,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6515), 32, + anon_sym_DASH_GT, + ACTIONS(6447), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -363497,11 +369184,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [78389] = 3, + anon_sym_DASH_GT_STAR, + [80508] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5677), 16, + ACTIONS(6532), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -363516,9 +369203,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5679), 35, + ACTIONS(6534), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -363528,7 +369218,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -363541,23 +369230,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, anon_sym_DASH_GT_STAR, - [78448] = 3, + [80567] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5685), 16, + ACTIONS(5152), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -363572,9 +369259,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5687), 35, + ACTIONS(5154), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -363584,7 +369274,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -363597,106 +369286,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, anon_sym_DASH_GT_STAR, - [78507] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7042), 1, - anon_sym_AMP_AMP, - ACTIONS(7044), 1, - anon_sym_AMP, - ACTIONS(7057), 1, - anon_sym_LBRACK, - ACTIONS(7065), 1, - anon_sym___asm, - ACTIONS(7072), 1, - anon_sym_noexcept, - ACTIONS(7074), 1, - anon_sym_throw, - ACTIONS(7147), 1, - anon_sym___attribute__, - ACTIONS(7322), 1, - anon_sym_DASH_GT, - ACTIONS(7327), 1, - anon_sym_requires, - STATE(1658), 1, - sym_alignas_qualifier, - STATE(5036), 1, - sym__function_attributes_start, - STATE(5255), 1, - sym_ref_qualifier, - STATE(6377), 1, - sym__function_attributes_end, - STATE(6536), 1, - sym_trailing_return_type, - STATE(6766), 1, - sym_gnu_asm_expression, - ACTIONS(7040), 2, - anon_sym_LPAREN2, - anon_sym_LBRACE, - ACTIONS(7063), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7152), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(7335), 2, - anon_sym_final, - anon_sym_override, - STATE(3982), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4184), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5458), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5984), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5386), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7145), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [78620] = 3, + [80626] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5810), 16, + ACTIONS(5780), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -363713,7 +369317,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5812), 35, + ACTIONS(5782), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -363749,10 +369353,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [78679] = 3, + [80685] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3947), 21, + ACTIONS(6536), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -363762,27 +369366,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(3949), 30, + anon_sym_DASH_GT, + ACTIONS(6538), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -363790,6 +369394,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -363803,12 +369408,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [78738] = 3, + anon_sym_DASH_GT_STAR, + [80744] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7038), 24, + ACTIONS(7872), 1, + anon_sym_LT, + STATE(1934), 1, + sym_template_argument_list, + ACTIONS(6426), 19, + 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_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(6428), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -363827,13 +369455,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - ACTIONS(7036), 27, + [80807] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5792), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -363843,28 +369480,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5794), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, - sym_literal_suffix, - [78797] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [80866] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5692), 16, + ACTIONS(5784), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -363881,7 +369543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5694), 35, + ACTIONS(5786), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -363917,10 +369579,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [78856] = 3, + [80925] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6702), 19, + ACTIONS(5184), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -363940,7 +369602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6704), 32, + ACTIONS(5186), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -363973,10 +369635,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [78915] = 3, + [80984] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5677), 16, + ACTIONS(5804), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -363993,7 +369655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5679), 35, + ACTIONS(5806), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -364029,10 +369691,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [78974] = 3, + [81043] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6524), 19, + ACTIONS(6568), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -364052,7 +369714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6526), 32, + ACTIONS(6570), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -364085,66 +369747,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [79033] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5478), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_literal_suffix, - ACTIONS(5480), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [79092] = 3, + [81102] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6505), 21, + ACTIONS(5808), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -364154,27 +369760,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, - ACTIONS(6507), 30, + anon_sym_DASH_GT, + ACTIONS(5810), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -364182,25 +369786,27 @@ static const uint16_t ts_small_parse_table[] = { 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [79151] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [81161] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5637), 16, + ACTIONS(5450), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -364215,9 +369821,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5639), 35, + ACTIONS(2729), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -364227,7 +369836,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -364240,38 +369848,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, anon_sym_DASH_GT_STAR, - [79210] = 6, + [81220] = 5, ACTIONS(3), 1, sym_comment, - STATE(3128), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(6010), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(6012), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(5912), 18, + STATE(3472), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7893), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5078), 21, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -364289,10 +369888,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(5914), 21, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5080), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -364304,7 +369909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -364312,10 +369917,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [79275] = 3, + [81283] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6680), 19, + ACTIONS(5645), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -364330,12 +369935,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6682), 32, + ACTIONS(5647), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -364345,6 +369947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -364357,21 +369960,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [79334] = 3, + [81342] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6398), 19, + ACTIONS(5812), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -364386,12 +369991,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6400), 32, + ACTIONS(5814), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -364401,6 +370003,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -364413,21 +370016,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [79393] = 3, + [81401] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5663), 16, + ACTIONS(5701), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -364444,7 +370049,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5665), 35, + ACTIONS(5703), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -364480,10 +370085,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [79452] = 3, + [81460] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6570), 19, + ACTIONS(6598), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -364503,7 +370108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6572), 32, + ACTIONS(6600), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -364536,10 +370141,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [79511] = 3, + [81519] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6548), 19, + ACTIONS(6678), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -364559,7 +370164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6550), 32, + ACTIONS(6680), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -364592,178 +370197,187 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [79570] = 3, + [81578] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3951), 21, + ACTIONS(4187), 1, + anon_sym_COLON_COLON, + ACTIONS(7896), 1, + anon_sym_LT, + STATE(1863), 1, + sym_template_argument_list, + STATE(3480), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7573), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4164), 18, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(3953), 30, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(4172), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [79629] = 3, + [81647] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6698), 19, + STATE(3472), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7898), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5921), 21, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym___attribute__, + anon_sym___attribute, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6700), 32, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5919), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_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_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [79688] = 3, + anon_sym_DASH_GT, + [81710] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6668), 19, + STATE(3472), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7898), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5931), 21, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym___attribute__, + anon_sym___attribute, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6670), 32, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5929), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_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_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [79747] = 3, + anon_sym_DASH_GT, + [81773] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6528), 19, + ACTIONS(6506), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -364773,27 +370387,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6530), 32, + ACTIONS(6508), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -364801,7 +370415,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -364815,11 +370428,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [79806] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [81832] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6684), 19, + ACTIONS(6662), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -364839,7 +370453,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6686), 32, + ACTIONS(6664), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -364872,66 +370486,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [79865] = 3, + [81891] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5667), 16, + STATE(3489), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7900), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5968), 21, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5669), 35, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5966), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_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_LT, + anon_sym_GT_GT, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [81954] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3490), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7902), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5974), 21, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5972), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [79924] = 3, + anon_sym_DASH_GT, + [82017] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6706), 19, + ACTIONS(6682), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -364951,7 +370625,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6708), 32, + ACTIONS(6684), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -364984,10 +370658,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [79983] = 3, + [82076] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6295), 21, + ACTIONS(6674), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -364997,27 +370671,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6297), 30, + anon_sym_DASH_GT, + ACTIONS(6676), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -365025,6 +370699,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -365038,12 +370713,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [80042] = 3, + anon_sym_DASH_GT_STAR, + [82135] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5152), 19, + ACTIONS(5200), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -365063,7 +370737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5154), 32, + ACTIONS(5202), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -365096,10 +370770,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [80101] = 3, + [82194] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5166), 19, + ACTIONS(5140), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -365119,7 +370793,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5168), 32, + ACTIONS(5142), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -365152,407 +370826,358 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [80160] = 3, + [82253] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5786), 16, + STATE(3472), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7898), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5980), 21, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5788), 35, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5978), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_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_LT, + anon_sym_GT_GT, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [80219] = 3, + anon_sym_DASH_GT, + [82316] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6672), 19, + STATE(3472), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7898), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5988), 21, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym___attribute__, + anon_sym___attribute, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6674), 32, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5986), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_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_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [80278] = 3, + anon_sym_DASH_GT, + [82379] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6614), 19, + STATE(3496), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7904), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5935), 21, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym___attribute__, + anon_sym___attribute, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6616), 32, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5933), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_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_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [80337] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4167), 1, - anon_sym_COLON_COLON, - ACTIONS(4974), 1, - anon_sym_LBRACK, - ACTIONS(6630), 1, - anon_sym_LT, - STATE(3695), 1, - sym_template_argument_list, - ACTIONS(4967), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(4970), 4, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - ACTIONS(4963), 41, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [80406] = 3, + anon_sym_DASH_GT, + [82442] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6501), 19, + STATE(3499), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7906), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5887), 21, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym___attribute__, + anon_sym___attribute, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6503), 32, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5885), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_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_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [80465] = 3, + anon_sym_DASH_GT, + [82505] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6509), 19, + STATE(3472), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7898), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5893), 21, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym___attribute__, + anon_sym___attribute, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6511), 32, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5891), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_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_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [80524] = 3, + anon_sym_DASH_GT, + [82568] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6554), 19, + STATE(3479), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7908), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5776), 21, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym___attribute__, + anon_sym___attribute, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6556), 32, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5778), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_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_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [80583] = 3, + anon_sym_DASH_GT, + [82631] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6664), 19, + ACTIONS(6690), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -365572,7 +371197,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6666), 32, + ACTIONS(6692), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -365605,66 +371230,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [80642] = 3, + [82690] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5681), 16, + STATE(3472), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7898), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5913), 21, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5683), 35, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5911), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_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_LT, + anon_sym_GT_GT, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [80701] = 3, + anon_sym_DASH_GT, + [82753] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6574), 19, + ACTIONS(5943), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -365674,27 +371301,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6576), 32, + ACTIONS(5945), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -365702,7 +371329,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -365716,11 +371342,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [80760] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [82812] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5170), 19, + ACTIONS(5962), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -365730,27 +371357,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5172), 32, + ACTIONS(5964), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -365758,7 +371385,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -365772,11 +371398,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [80819] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [82871] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5188), 19, + STATE(3472), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7898), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5953), 21, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5951), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [82934] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5903), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -365786,27 +371471,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5190), 32, + ACTIONS(5905), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -365814,7 +371499,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -365828,11 +371512,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [80878] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [82993] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6644), 19, + ACTIONS(6702), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -365852,7 +371537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6646), 32, + ACTIONS(6704), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -365885,10 +371570,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [80937] = 3, + [83052] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 16, + ACTIONS(5156), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -365903,9 +371588,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5657), 35, + ACTIONS(5158), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -365915,7 +371603,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -365928,23 +371615,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, anon_sym_DASH_GT_STAR, - [80996] = 3, + [83111] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6648), 19, + ACTIONS(6634), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -365964,7 +371649,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6650), 32, + ACTIONS(6636), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -365997,10 +371682,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [81055] = 3, + [83170] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6652), 19, + ACTIONS(6540), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -366020,7 +371705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6654), 32, + ACTIONS(6542), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -366053,66 +371738,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [81114] = 3, + [83229] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5577), 16, + ACTIONS(6544), 19, 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_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(5579), 35, + anon_sym_DASH_GT, + ACTIONS(6546), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, 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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [81173] = 3, + anon_sym_DASH_GT_STAR, + [83288] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6463), 21, + ACTIONS(5958), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -366134,7 +371819,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6465), 30, + ACTIONS(5960), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -366165,10 +371850,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [81232] = 3, + [83347] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5736), 16, + ACTIONS(5804), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -366185,7 +371870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5738), 35, + ACTIONS(5806), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -366221,10 +371906,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [81291] = 3, + [83406] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6558), 19, + ACTIONS(6548), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -366244,7 +371929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6560), 32, + ACTIONS(6550), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -366277,10 +371962,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [81350] = 3, + [83465] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6532), 19, + ACTIONS(6642), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -366300,7 +371985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6534), 32, + ACTIONS(6644), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -366333,66 +372018,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [81409] = 3, + [83524] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(5641), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(67), 1, + anon_sym_const, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7048), 1, + anon_sym_AMP_AMP, + ACTIONS(7050), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, + ACTIONS(7063), 1, + anon_sym_LBRACK, + ACTIONS(7071), 1, + anon_sym___asm, + ACTIONS(7075), 1, + anon_sym_noexcept, + ACTIONS(7077), 1, + anon_sym_throw, + ACTIONS(7299), 1, + anon_sym___attribute__, + ACTIONS(7424), 1, anon_sym_DASH_GT, - ACTIONS(5643), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(7429), 1, + anon_sym_requires, + STATE(1680), 1, + sym_alignas_qualifier, + STATE(5108), 1, + sym__function_attributes_start, + STATE(5350), 1, + sym_ref_qualifier, + STATE(6484), 1, + sym__function_attributes_end, + STATE(6667), 1, + sym_trailing_return_type, + STATE(6870), 1, + sym_gnu_asm_expression, + ACTIONS(7046), 2, 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_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [81468] = 3, + ACTIONS(7069), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7304), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7359), 2, + anon_sym_final, + anon_sym_override, + STATE(4041), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4265), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5507), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6017), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6125), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5456), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7297), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [83637] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6398), 19, + ACTIONS(5738), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -366407,12 +372119,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6400), 32, + ACTIONS(5740), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -366422,6 +372131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -366434,27 +372144,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [81527] = 6, + [83696] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4167), 1, + ACTIONS(4187), 1, anon_sym_COLON_COLON, - ACTIONS(7828), 1, + ACTIONS(7896), 1, anon_sym_LT, - STATE(1844), 1, + STATE(1863), 1, sym_template_argument_list, - ACTIONS(5838), 23, + ACTIONS(5834), 23, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -366478,7 +372190,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_final, anon_sym_override, - ACTIONS(4172), 25, + ACTIONS(4192), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -366504,16 +372216,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [81592] = 6, + [83761] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4167), 1, + ACTIONS(4187), 1, anon_sym_COLON_COLON, - ACTIONS(7864), 1, + ACTIONS(7910), 1, anon_sym_LT, - STATE(1844), 1, + STATE(1863), 1, sym_template_argument_list, - ACTIONS(4963), 23, + ACTIONS(4925), 23, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -366537,7 +372249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_final, anon_sym_override, - ACTIONS(4970), 25, + ACTIONS(4932), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -366563,10 +372275,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [81657] = 3, + [83826] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6208), 21, + ACTIONS(5180), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -366576,70 +372288,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6210), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [81716] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5732), 16, - 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_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5734), 35, + ACTIONS(5182), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -366649,7 +372308,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -366662,90 +372320,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, anon_sym_DASH_GT_STAR, - [81775] = 30, + [83885] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(7042), 1, + ACTIONS(7048), 1, anon_sym_AMP_AMP, - ACTIONS(7044), 1, + ACTIONS(7050), 1, anon_sym_AMP, - ACTIONS(7054), 1, + ACTIONS(7060), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7057), 1, + ACTIONS(7063), 1, anon_sym_LBRACK, - ACTIONS(7059), 1, - anon_sym_const, ACTIONS(7065), 1, + anon_sym_const, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7072), 1, + ACTIONS(7075), 1, anon_sym_noexcept, - ACTIONS(7074), 1, + ACTIONS(7077), 1, anon_sym_throw, - ACTIONS(7083), 1, + ACTIONS(7283), 1, anon_sym___attribute__, - ACTIONS(7085), 1, + ACTIONS(7285), 1, anon_sym___attribute, - ACTIONS(7867), 1, + ACTIONS(7913), 1, anon_sym_DASH_GT, - ACTIONS(7869), 1, + ACTIONS(7915), 1, anon_sym_requires, - STATE(3992), 1, + STATE(4036), 1, sym_alignas_qualifier, - STATE(4998), 1, + STATE(5101), 1, sym__function_attributes_start, - STATE(5253), 1, + STATE(5337), 1, sym_ref_qualifier, - STATE(6314), 1, + STATE(6397), 1, sym__function_attributes_end, - STATE(6469), 1, + STATE(6573), 1, sym_trailing_return_type, - STATE(6745), 1, + STATE(6850), 1, sym_gnu_asm_expression, - ACTIONS(7040), 2, + ACTIONS(7046), 2, anon_sym_LPAREN2, anon_sym_COLON, - ACTIONS(7061), 2, + ACTIONS(7067), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(7063), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7069), 2, + ACTIONS(7085), 2, anon_sym_final, anon_sym_override, - STATE(4072), 2, + STATE(4140), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(4287), 2, + STATE(4332), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(5606), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5733), 2, + STATE(5730), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5816), 2, + STATE(5965), 2, sym__function_postfix, sym_requires_clause, - STATE(5375), 3, + STATE(5457), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(7046), 12, + ACTIONS(7052), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -366758,70 +372414,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [81888] = 7, + [83998] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7872), 1, - sym_identifier, - STATE(3463), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(5066), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(5068), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(5398), 18, + ACTIONS(6552), 19, 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_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(5396), 19, + anon_sym_DASH_GT, + ACTIONS(6554), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [81955] = 3, + anon_sym_DASH_GT_STAR, + [84057] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5786), 16, + ACTIONS(6556), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -366836,9 +372488,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5788), 35, + ACTIONS(6558), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -366848,7 +372503,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -366861,23 +372515,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, anon_sym_DASH_GT_STAR, - [82014] = 3, + [84116] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6218), 21, + ACTIONS(4991), 1, + anon_sym_COLON_COLON, + ACTIONS(6342), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -366892,14 +372546,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6220), 30, + ACTIONS(6344), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -366907,7 +372560,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -366930,126 +372583,187 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [82073] = 7, + [84177] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7874), 1, - sym_identifier, - STATE(3463), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(7877), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(7880), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(5405), 18, + ACTIONS(5515), 16, 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_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_EQ, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(5403), 19, + anon_sym_DASH_GT, + ACTIONS(5517), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [82140] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [84236] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5482), 16, + ACTIONS(6464), 19, 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_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(5484), 35, + anon_sym_DASH_GT, + ACTIONS(6466), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, 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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [82199] = 3, + anon_sym_DASH_GT_STAR, + [84295] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4187), 1, + anon_sym_COLON_COLON, + ACTIONS(4936), 1, + anon_sym_LBRACK, + ACTIONS(6580), 1, + anon_sym_LT, + STATE(3803), 1, + sym_template_argument_list, + ACTIONS(4929), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(4932), 4, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + ACTIONS(4925), 41, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [84364] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6562), 19, + ACTIONS(6196), 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + ACTIONS(4174), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -367069,7 +372783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6564), 32, + ACTIONS(4166), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -367091,9 +372805,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, @@ -367102,10 +372813,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [82258] = 3, + [84425] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6632), 19, + ACTIONS(6686), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -367125,7 +372836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6634), 32, + ACTIONS(6688), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -367158,10 +372869,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [82317] = 3, + [84484] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6606), 19, + ACTIONS(6406), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -367181,7 +372892,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6608), 32, + ACTIONS(6408), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -367214,10 +372925,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [82376] = 3, + [84543] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5647), 16, + ACTIONS(5515), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -367234,7 +372945,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5649), 35, + ACTIONS(5517), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -367270,10 +372981,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [82435] = 3, + [84602] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6566), 19, + ACTIONS(6406), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -367293,7 +373004,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6568), 32, + ACTIONS(6408), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -367326,10 +373037,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [82494] = 3, + [84661] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6610), 19, + ACTIONS(1940), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -367349,7 +373060,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6612), 32, + ACTIONS(1938), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -367382,17 +373093,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [82553] = 6, + [84720] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2609), 1, - anon_sym_LBRACE, - ACTIONS(7097), 1, - anon_sym_LPAREN2, - STATE(3810), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6172), 16, + ACTIONS(6406), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -367407,12 +373111,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6174), 31, + ACTIONS(6408), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -367430,210 +373138,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [82618] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(3472), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7883), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5070), 21, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5072), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [82681] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5859), 1, - anon_sym___attribute, - ACTIONS(7059), 1, - anon_sym_const, - ACTIONS(7842), 1, - anon_sym_LPAREN2, - ACTIONS(7850), 1, - sym_ms_restrict_modifier, - ACTIONS(7856), 1, - anon_sym_LBRACK, - ACTIONS(7886), 1, - anon_sym_STAR, - ACTIONS(7888), 1, - anon_sym_AMP_AMP, - ACTIONS(7890), 1, - anon_sym_AMP, - STATE(2860), 1, - sym_parameter_list, - STATE(3761), 1, - sym_ms_unaligned_ptr_modifier, - STATE(3992), 1, - sym_alignas_qualifier, - STATE(5792), 1, - sym__function_declarator_seq, - STATE(6052), 1, - sym__abstract_declarator, - ACTIONS(7061), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(7852), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(7854), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3477), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4139), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5804), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5851), 11, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - ACTIONS(7046), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [82778] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5489), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_literal_suffix, - ACTIONS(5491), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [82837] = 3, + [84779] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5144), 19, + ACTIONS(6614), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -367653,7 +373172,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5146), 32, + ACTIONS(6616), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -367686,10 +373205,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [82896] = 3, + [84838] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6402), 21, + ACTIONS(2623), 1, + anon_sym_LBRACE, + ACTIONS(7289), 1, + anon_sym_LPAREN2, + STATE(3874), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6262), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -367699,27 +373225,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, - ACTIONS(6404), 30, + anon_sym_DASH_GT, + ACTIONS(6264), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -367727,108 +373249,25 @@ static const uint16_t ts_small_parse_table[] = { 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [82955] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5867), 1, - anon_sym___attribute, - ACTIONS(7059), 1, - anon_sym_const, - ACTIONS(7842), 1, - anon_sym_LPAREN2, - ACTIONS(7850), 1, - sym_ms_restrict_modifier, - ACTIONS(7856), 1, - anon_sym_LBRACK, - ACTIONS(7886), 1, - anon_sym_STAR, - ACTIONS(7888), 1, - anon_sym_AMP_AMP, - ACTIONS(7890), 1, - anon_sym_AMP, - STATE(2860), 1, - sym_parameter_list, - STATE(3761), 1, - sym_ms_unaligned_ptr_modifier, - STATE(3992), 1, - sym_alignas_qualifier, - STATE(5792), 1, - sym__function_declarator_seq, - STATE(6057), 1, - sym__abstract_declarator, - ACTIONS(7061), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(7852), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(7854), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3283), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4142), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5804), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5865), 11, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - ACTIONS(7046), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [83052] = 7, + anon_sym_DASH_GT_STAR, + [84903] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7892), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7894), 1, - anon_sym_AMP_AMP, - ACTIONS(7896), 1, - anon_sym_or, - ACTIONS(7898), 1, - anon_sym_and, - ACTIONS(6253), 17, + ACTIONS(5760), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -367843,17 +373282,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6255), 30, + ACTIONS(5762), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -367866,21 +373307,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [83119] = 3, + [84962] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5132), 19, + ACTIONS(5788), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -367895,12 +373338,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5134), 32, + ACTIONS(5790), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -367910,6 +373350,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -367922,21 +373363,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [83178] = 3, + [85021] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6269), 21, + ACTIONS(5816), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -367946,27 +373389,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, - ACTIONS(6271), 30, + anon_sym_DASH_GT, + ACTIONS(5818), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -367974,25 +373415,27 @@ static const uint16_t ts_small_parse_table[] = { 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [83237] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [85080] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6273), 21, + ACTIONS(5660), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -368002,27 +373445,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, - ACTIONS(6275), 30, + anon_sym_DASH_GT, + ACTIONS(5662), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -368030,25 +373471,27 @@ static const uint16_t ts_small_parse_table[] = { 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [83296] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [85139] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6286), 21, + ACTIONS(5982), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -368070,7 +373513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6288), 30, + ACTIONS(5984), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -368101,10 +373544,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [83355] = 3, + [85198] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5659), 16, + ACTIONS(5990), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -368114,25 +373557,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5661), 35, + ACTIONS(5992), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -368140,27 +373585,25 @@ static const uint16_t ts_small_parse_table[] = { 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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [83414] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [85257] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6222), 21, + ACTIONS(6437), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -368170,27 +373613,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6224), 30, + anon_sym_DASH_GT, + ACTIONS(6439), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -368198,6 +373641,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -368211,237 +373655,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [83473] = 30, + anon_sym_DASH_GT_STAR, + [85316] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(7042), 1, + ACTIONS(7048), 1, anon_sym_AMP_AMP, - ACTIONS(7044), 1, + ACTIONS(7050), 1, anon_sym_AMP, - ACTIONS(7057), 1, + ACTIONS(7063), 1, anon_sym_LBRACK, - ACTIONS(7059), 1, - anon_sym_const, ACTIONS(7065), 1, + anon_sym_const, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7072), 1, + ACTIONS(7075), 1, anon_sym_noexcept, - ACTIONS(7074), 1, + ACTIONS(7077), 1, anon_sym_throw, - ACTIONS(7083), 1, + ACTIONS(7283), 1, anon_sym___attribute__, - ACTIONS(7085), 1, + ACTIONS(7285), 1, anon_sym___attribute, - ACTIONS(7337), 1, + ACTIONS(7447), 1, anon_sym_requires, - ACTIONS(7838), 1, + ACTIONS(7918), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7840), 1, + ACTIONS(7920), 1, anon_sym_DASH_GT, - STATE(3992), 1, + STATE(4036), 1, sym_alignas_qualifier, - STATE(4991), 1, + STATE(5045), 1, sym__function_attributes_start, - STATE(5235), 1, + STATE(5331), 1, sym_ref_qualifier, - STATE(5985), 1, + STATE(6126), 1, sym_trailing_return_type, - STATE(6358), 1, + STATE(6487), 1, sym__function_attributes_end, - STATE(6745), 1, + STATE(6850), 1, sym_gnu_asm_expression, - ACTIONS(7040), 2, + ACTIONS(7046), 2, anon_sym_LPAREN2, anon_sym_COLON, - ACTIONS(7061), 2, + ACTIONS(7067), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(7063), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7335), 2, + ACTIONS(7359), 2, anon_sym_final, anon_sym_override, - STATE(4072), 2, + STATE(4140), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(4287), 2, + STATE(4332), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(5733), 2, + STATE(5730), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5984), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5382), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7046), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [83586] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(5859), 1, - anon_sym___asm, - ACTIONS(7842), 1, - anon_sym_LPAREN2, - ACTIONS(7850), 1, - sym_ms_restrict_modifier, - ACTIONS(7856), 1, - anon_sym_LBRACK, - ACTIONS(7900), 1, - anon_sym_STAR, - ACTIONS(7902), 1, - anon_sym_AMP_AMP, - ACTIONS(7904), 1, - anon_sym_AMP, - STATE(1658), 1, - sym_alignas_qualifier, - STATE(2885), 1, - sym_parameter_list, - STATE(3761), 1, - sym_ms_unaligned_ptr_modifier, - STATE(5792), 1, - sym__function_declarator_seq, - STATE(6003), 1, - sym__abstract_declarator, - ACTIONS(7152), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(7852), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(7854), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3492), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4151), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5804), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5851), 11, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - ACTIONS(7145), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [83683] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7042), 1, - anon_sym_AMP_AMP, - ACTIONS(7044), 1, - anon_sym_AMP, - ACTIONS(7054), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7057), 1, - anon_sym_LBRACK, - ACTIONS(7059), 1, - anon_sym_const, - ACTIONS(7065), 1, - anon_sym___asm, - ACTIONS(7072), 1, - anon_sym_noexcept, - ACTIONS(7074), 1, - anon_sym_throw, - ACTIONS(7083), 1, - anon_sym___attribute__, - ACTIONS(7085), 1, - anon_sym___attribute, - ACTIONS(7867), 1, - anon_sym_DASH_GT, - ACTIONS(7906), 1, - anon_sym_requires, - STATE(3992), 1, - sym_alignas_qualifier, - STATE(5011), 1, - sym__function_attributes_start, - STATE(5282), 1, - sym_ref_qualifier, - STATE(6330), 1, - sym__function_attributes_end, - STATE(6449), 1, - sym_trailing_return_type, - STATE(6745), 1, - sym_gnu_asm_expression, - ACTIONS(6020), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7040), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - ACTIONS(7061), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(7063), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(4072), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4287), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5606), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5733), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5816), 2, + STATE(6125), 2, sym__function_postfix, sym_requires_clause, - STATE(5392), 3, + STATE(5459), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(7046), 12, + ACTIONS(7052), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -368454,10 +373739,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [83796] = 3, + [85429] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5790), 16, + ACTIONS(5925), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -368467,203 +373752,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5792), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, + anon_sym_EQ, anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [83855] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(6971), 1, - anon_sym_LBRACE, - ACTIONS(7147), 1, - anon_sym___attribute__, - STATE(2476), 1, - sym_attribute_specifier, - STATE(3618), 1, - sym_enumerator_list, - ACTIONS(5983), 5, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(5985), 41, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_static, - anon_sym_EQ, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [83924] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(6971), 1, - anon_sym_LBRACE, - ACTIONS(7147), 1, - anon_sym___attribute__, - STATE(2531), 1, - sym_attribute_specifier, - STATE(3621), 1, - sym_enumerator_list, - ACTIONS(6024), 5, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(6026), 41, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_static, - anon_sym_EQ, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [83993] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5699), 16, - 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_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5701), 35, + ACTIONS(5927), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -368671,109 +373780,25 @@ static const uint16_t ts_small_parse_table[] = { 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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [84052] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(5867), 1, - anon_sym___asm, - ACTIONS(7842), 1, - anon_sym_LPAREN2, - ACTIONS(7850), 1, - sym_ms_restrict_modifier, - ACTIONS(7856), 1, - anon_sym_LBRACK, - ACTIONS(7900), 1, - anon_sym_STAR, - ACTIONS(7902), 1, - anon_sym_AMP_AMP, - ACTIONS(7904), 1, - anon_sym_AMP, - STATE(1658), 1, - sym_alignas_qualifier, - STATE(2885), 1, - sym_parameter_list, - STATE(3761), 1, - sym_ms_unaligned_ptr_modifier, - STATE(5792), 1, - sym__function_declarator_seq, - STATE(6007), 1, - sym__abstract_declarator, - ACTIONS(7152), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(7852), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(7854), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3283), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4153), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5804), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5865), 11, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - ACTIONS(7145), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [84149] = 6, + anon_sym_DASH_GT, + anon_sym_GT2, + [85488] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2609), 1, - anon_sym_LBRACE, - ACTIONS(7097), 1, - anon_sym_LPAREN2, - STATE(3862), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6204), 16, + ACTIONS(6666), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -368788,12 +373813,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6206), 31, + ACTIONS(6668), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -368811,25 +373840,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [84214] = 5, + [85547] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7908), 1, - anon_sym_LT, - STATE(3335), 1, - sym_template_argument_list, - ACTIONS(6513), 19, + ACTIONS(5947), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -368841,15 +373866,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6515), 30, + ACTIONS(5949), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -368857,7 +373884,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -368880,10 +373907,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [84277] = 3, + [85606] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6477), 19, + ACTIONS(6646), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -368903,7 +373930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6479), 32, + ACTIONS(6648), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -368936,66 +373963,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [84336] = 3, + [85665] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6536), 19, + ACTIONS(7922), 1, + sym_identifier, + STATE(3418), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(5074), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(5076), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(5403), 18, 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_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6538), 32, + sym_literal_suffix, + ACTIONS(5401), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LT_LT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [84395] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [85732] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5740), 16, + ACTIONS(6710), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -369010,9 +374041,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5742), 35, + ACTIONS(6712), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -369022,7 +374056,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -369035,23 +374068,226 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [85791] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7048), 1, + anon_sym_AMP_AMP, + ACTIONS(7050), 1, + anon_sym_AMP, + ACTIONS(7060), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7063), 1, + anon_sym_LBRACK, + ACTIONS(7065), 1, + anon_sym_const, + ACTIONS(7071), 1, + anon_sym___asm, + ACTIONS(7075), 1, + anon_sym_noexcept, + ACTIONS(7077), 1, + anon_sym_throw, + ACTIONS(7283), 1, + anon_sym___attribute__, + ACTIONS(7285), 1, + anon_sym___attribute, + ACTIONS(7913), 1, + anon_sym_DASH_GT, + ACTIONS(7924), 1, + anon_sym_requires, + STATE(4036), 1, + sym_alignas_qualifier, + STATE(5072), 1, + sym__function_attributes_start, + STATE(5336), 1, + sym_ref_qualifier, + STATE(6428), 1, + sym__function_attributes_end, + STATE(6593), 1, + sym_trailing_return_type, + STATE(6850), 1, + sym_gnu_asm_expression, + ACTIONS(6037), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7046), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + ACTIONS(7067), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7069), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(4140), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4332), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5730), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5965), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5470), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7052), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [85904] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(7027), 1, + anon_sym_LBRACE, + ACTIONS(7299), 1, + anon_sym___attribute__, + STATE(2475), 1, + sym_attribute_specifier, + STATE(3676), 1, + sym_enumerator_list, + ACTIONS(6066), 5, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(6068), 41, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [84454] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [85973] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(7027), 1, + anon_sym_LBRACE, + ACTIONS(7299), 1, + anon_sym___attribute__, + STATE(2565), 1, + sym_attribute_specifier, + STATE(3680), 1, + sym_enumerator_list, + ACTIONS(6072), 5, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(6074), 41, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [86042] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6676), 19, + ACTIONS(5144), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -369071,7 +374307,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6678), 32, + ACTIONS(5146), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -369104,37 +374340,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [84513] = 3, + [86101] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5778), 16, - 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_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5780), 35, + ACTIONS(7926), 1, + sym_literal_suffix, + ACTIONS(4166), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -369143,27 +374361,46 @@ static const uint16_t ts_small_parse_table[] = { 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_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + ACTIONS(4174), 26, + 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_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [84572] = 3, + anon_sym_DOT, + [86162] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3895), 19, + ACTIONS(6694), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -369183,7 +374420,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3891), 32, + ACTIONS(6696), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -369216,10 +374453,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [84631] = 3, + [86221] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(5184), 19, + ACTIONS(7048), 1, + anon_sym_AMP_AMP, + ACTIONS(7050), 1, + anon_sym_AMP, + ACTIONS(7063), 1, + anon_sym_LBRACK, + ACTIONS(7065), 1, + anon_sym_const, + ACTIONS(7071), 1, + anon_sym___asm, + ACTIONS(7075), 1, + anon_sym_noexcept, + ACTIONS(7077), 1, + anon_sym_throw, + ACTIONS(7283), 1, + anon_sym___attribute__, + ACTIONS(7285), 1, + anon_sym___attribute, + ACTIONS(7429), 1, + anon_sym_requires, + ACTIONS(7918), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7920), 1, + anon_sym_DASH_GT, + STATE(4036), 1, + sym_alignas_qualifier, + STATE(5057), 1, + sym__function_attributes_start, + STATE(5342), 1, + sym_ref_qualifier, + STATE(6117), 1, + sym_trailing_return_type, + STATE(6499), 1, + sym__function_attributes_end, + STATE(6850), 1, + sym_gnu_asm_expression, + ACTIONS(7046), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + ACTIONS(7067), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7069), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7426), 2, + anon_sym_final, + anon_sym_override, + STATE(4140), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4332), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5730), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6017), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6125), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5465), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7052), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [86334] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5666), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -369234,12 +374554,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5186), 32, + ACTIONS(5668), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -369249,6 +374566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -369261,21 +374579,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [84690] = 3, + [86393] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5999), 19, + ACTIONS(4934), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -369295,7 +374615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5997), 32, + ACTIONS(4927), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -369328,10 +374648,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [84749] = 3, + [86452] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6582), 19, + ACTIONS(4934), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -369351,7 +374671,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6584), 32, + ACTIONS(4927), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -369384,10 +374704,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [84808] = 3, + [86511] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5450), 16, + ACTIONS(4934), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -369402,9 +374722,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5452), 35, + ACTIONS(4927), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -369414,7 +374737,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -369427,23 +374749,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, anon_sym_DASH_GT_STAR, - [84867] = 3, + [86570] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6586), 19, + ACTIONS(4934), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -369463,7 +374783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6588), 32, + ACTIONS(4927), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -369496,14 +374816,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [84926] = 4, + [86629] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6162), 3, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - ACTIONS(4154), 19, + ACTIONS(4934), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -369523,7 +374839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4146), 29, + ACTIONS(4927), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -369545,6 +374861,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, @@ -369553,10 +374872,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [84987] = 3, + [86688] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5450), 16, + ACTIONS(4934), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -369571,9 +374890,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5452), 35, + ACTIONS(4927), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -369583,7 +374905,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -369596,23 +374917,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, anon_sym_DASH_GT_STAR, - [85046] = 3, + [86747] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1940), 19, + ACTIONS(5170), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -369632,7 +374951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1938), 32, + ACTIONS(5172), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -369665,66 +374984,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [85105] = 3, + [86806] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6694), 19, + ACTIONS(5641), 16, 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_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6696), 32, + sym_literal_suffix, + ACTIONS(5643), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RBRACE, 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [86865] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5601), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + ACTIONS(5603), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [85164] = 3, + anon_sym_DASH_GT, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [86924] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6520), 19, + ACTIONS(6698), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -369744,7 +375119,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6522), 32, + ACTIONS(6700), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -369777,10 +375152,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [85223] = 3, + [86983] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5762), 16, + ACTIONS(6602), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -369795,9 +375170,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5764), 35, + ACTIONS(6604), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -369807,7 +375185,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -369820,23 +375197,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, anon_sym_DASH_GT_STAR, - [85282] = 3, + [87042] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5766), 16, + ACTIONS(1936), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -369851,9 +375226,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5768), 35, + ACTIONS(1934), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -369863,7 +375241,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -369876,23 +375253,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, anon_sym_DASH_GT_STAR, - [85341] = 3, + [87101] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5770), 16, + ACTIONS(6606), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -369907,9 +375282,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5772), 35, + ACTIONS(6608), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -369919,7 +375297,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -369932,23 +375309,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, anon_sym_DASH_GT_STAR, - [85400] = 3, + [87160] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5774), 16, + ACTIONS(6610), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -369963,9 +375338,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5776), 35, + ACTIONS(6612), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -369975,7 +375353,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -369988,23 +375365,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, anon_sym_DASH_GT_STAR, - [85459] = 3, + [87219] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6548), 19, + ACTIONS(6654), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -370024,7 +375399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6550), 32, + ACTIONS(6656), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -370057,10 +375432,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [85518] = 3, + [87278] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6710), 19, + ACTIONS(5712), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -370075,12 +375450,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6712), 32, + ACTIONS(5714), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -370090,6 +375462,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -370102,39 +375475,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [85577] = 7, + [87337] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7911), 1, + ACTIONS(7928), 1, sym_identifier, - STATE(3460), 3, + STATE(3569), 3, sym_string_literal, sym_raw_string_literal, aux_sym_concatenated_string_repeat1, - ACTIONS(5066), 5, + ACTIONS(7931), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(5068), 5, + ACTIONS(7934), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - ACTIONS(5392), 18, + ACTIONS(5413), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -370153,7 +375528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_literal_suffix, - ACTIONS(5390), 19, + ACTIONS(5411), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -370173,10 +375548,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [85644] = 3, + [87404] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5180), 19, + ACTIONS(5753), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -370191,12 +375566,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5755), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [87463] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5720), 16, + 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_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5182), 32, + ACTIONS(5722), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -370206,6 +375634,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -370218,21 +375647,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [85703] = 3, + [87522] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6544), 19, + ACTIONS(5724), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -370247,12 +375678,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5726), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [87581] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5728), 16, + 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_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6546), 32, + ACTIONS(5730), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -370262,6 +375746,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -370274,21 +375759,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [85762] = 3, + [87640] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6590), 19, + ACTIONS(7879), 1, + anon_sym_AMP_AMP, + ACTIONS(7883), 1, + anon_sym_and, + ACTIONS(6248), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -370304,17 +375795,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_or, - anon_sym_and, anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6592), 32, + ACTIONS(6250), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -370341,10 +375830,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [85821] = 3, + [87703] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6594), 19, + ACTIONS(5720), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -370359,12 +375848,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6596), 32, + ACTIONS(5722), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -370374,6 +375860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -370386,21 +375873,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [85880] = 3, + [87762] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5192), 19, + ACTIONS(6482), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -370420,7 +375909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5194), 32, + ACTIONS(6484), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -370453,10 +375942,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [85939] = 3, + [87821] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5720), 16, + 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_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5722), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [87880] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5162), 19, + ACTIONS(6576), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -370476,7 +376021,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5164), 32, + ACTIONS(6578), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -370509,14 +376054,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [85998] = 5, + [87939] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7894), 1, - anon_sym_AMP_AMP, - ACTIONS(7898), 1, - anon_sym_and, - ACTIONS(6178), 18, + ACTIONS(6590), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -370532,15 +376073,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_or, + anon_sym_and, anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6180), 31, + ACTIONS(6592), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -370567,10 +376110,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [86061] = 3, + [87998] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5798), 16, + ACTIONS(5160), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -370585,9 +376128,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5800), 35, + ACTIONS(5162), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -370597,7 +376143,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -370610,23 +376155,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, anon_sym_DASH_GT_STAR, - [86120] = 3, + [88057] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5148), 19, + ACTIONS(5180), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -370636,26 +376179,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5150), 32, + ACTIONS(5182), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -370664,7 +376206,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -370678,11 +376219,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [88115] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6518), 1, + anon_sym_EQ, + ACTIONS(6886), 1, + anon_sym_LPAREN2, + ACTIONS(7159), 1, + anon_sym_LBRACK, + ACTIONS(7491), 1, + anon_sym_DOT_STAR, + ACTIONS(7684), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7941), 1, + anon_sym_PIPE, + ACTIONS(7943), 1, + anon_sym_CARET, + ACTIONS(7945), 1, + anon_sym_AMP, + ACTIONS(7951), 1, + anon_sym_GT_EQ, + ACTIONS(7955), 1, + anon_sym_bitor, + ACTIONS(7957), 1, + anon_sym_xor, + ACTIONS(7959), 1, + anon_sym_bitand, + STATE(3433), 1, + sym_argument_list, + STATE(3434), 1, + sym_subscript_argument_list, + ACTIONS(7203), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7698), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7937), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7953), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7939), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7947), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7949), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6520), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + 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_or, + anon_sym_and, anon_sym_DASH_GT_STAR, - [86179] = 3, + [88213] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4972), 19, + ACTIONS(4980), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -370701,17 +376318,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4965), 32, + ACTIONS(4982), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -370734,11 +376350,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [86238] = 3, + anon_sym_DASH_GT, + [88271] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6656), 19, + ACTIONS(4934), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -370748,26 +376364,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6658), 32, + ACTIONS(4927), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -370776,7 +376391,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -370790,11 +376404,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [86297] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [88329] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4972), 19, + ACTIONS(6564), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -370804,26 +376419,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4965), 32, + ACTIONS(6566), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -370832,7 +376446,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -370846,11 +376459,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [86356] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [88387] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4972), 19, + ACTIONS(6464), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -370860,26 +376474,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4965), 32, + ACTIONS(6466), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -370888,7 +376501,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -370902,11 +376514,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [86415] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [88445] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4972), 19, + ACTIONS(6441), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -370916,26 +376529,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4965), 32, + ACTIONS(6443), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -370944,7 +376556,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -370958,11 +376569,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [86474] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [88503] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4972), 19, + ACTIONS(4934), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -370972,26 +376584,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4965), 32, + ACTIONS(4927), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -371000,7 +376611,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -371014,11 +376624,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [86533] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [88561] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4972), 19, + ACTIONS(1940), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -371028,26 +376639,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4965), 32, + ACTIONS(1938), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -371056,7 +376666,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -371070,11 +376679,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [86592] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [88619] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5754), 16, + ACTIONS(4934), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -371084,24 +376694,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5756), 35, + ACTIONS(4927), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -371110,31 +376721,25 @@ static const uint16_t ts_small_parse_table[] = { 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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [86651] = 5, + anon_sym_DASH_GT, + anon_sym_GT2, + [88677] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7908), 1, - anon_sym_LT, - STATE(1895), 1, - sym_template_argument_list, - ACTIONS(6513), 19, + ACTIONS(6594), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -371146,6 +376751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, @@ -371154,7 +376760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6515), 30, + ACTIONS(6596), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -371185,10 +376791,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [86714] = 3, + [88735] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5677), 16, + ACTIONS(4934), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -371198,24 +376804,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5679), 35, + ACTIONS(4927), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -371224,27 +376831,101 @@ static const uint16_t ts_small_parse_table[] = { 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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, + anon_sym_DASH_GT, + anon_sym_GT2, + [88793] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6518), 1, + anon_sym_EQ, + ACTIONS(6886), 1, + anon_sym_LPAREN2, + ACTIONS(7159), 1, + anon_sym_LBRACK, + ACTIONS(7491), 1, + anon_sym_DOT_STAR, + ACTIONS(7684), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7941), 1, + anon_sym_PIPE, + ACTIONS(7943), 1, + anon_sym_CARET, + ACTIONS(7945), 1, + anon_sym_AMP, + ACTIONS(7951), 1, + anon_sym_GT_EQ, + ACTIONS(7955), 1, + anon_sym_bitor, + ACTIONS(7957), 1, + anon_sym_xor, + ACTIONS(7959), 1, + anon_sym_bitand, + STATE(3433), 1, + sym_argument_list, + STATE(3434), 1, + sym_subscript_argument_list, + ACTIONS(7203), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7698), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7937), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7953), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7961), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7939), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7947), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7949), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6520), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + 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_or, anon_sym_DASH_GT_STAR, - [86773] = 3, + [88893] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6528), 20, + ACTIONS(6634), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -371265,7 +376946,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6530), 30, + ACTIONS(6636), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -371296,10 +376977,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [86831] = 3, + [88951] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6614), 20, + ACTIONS(6638), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -371320,7 +377001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6616), 30, + ACTIONS(6640), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -371351,10 +377032,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [86889] = 3, + [89009] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4951), 18, + ACTIONS(4934), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -371364,16 +377045,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4953), 32, + ACTIONS(4927), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -371381,8 +377064,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -371391,7 +377072,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -371406,10 +377086,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [86947] = 3, + anon_sym_GT2, + [89067] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6694), 20, + ACTIONS(6236), 1, + anon_sym_EQ, + ACTIONS(6238), 13, + 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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + ACTIONS(4174), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -371419,18 +377116,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6696), 30, + ACTIONS(4166), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -371438,20 +377132,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, @@ -371460,11 +377144,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [87005] = 3, + [89129] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6684), 20, + ACTIONS(4934), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -371485,7 +377168,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6686), 30, + ACTIONS(4927), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -371516,10 +377199,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [87063] = 3, + [89187] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4959), 18, + ACTIONS(6598), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -371529,16 +377212,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4961), 32, + ACTIONS(6600), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -371546,8 +377231,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -371556,7 +377239,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -371571,87 +377253,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [87121] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6864), 1, - anon_sym_LPAREN2, - ACTIONS(6987), 1, - anon_sym_EQ, - ACTIONS(7223), 1, - anon_sym_LBRACK, - ACTIONS(7485), 1, - anon_sym_DOT_STAR, - ACTIONS(7637), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7921), 1, - anon_sym_PIPE, - ACTIONS(7923), 1, - anon_sym_CARET, - ACTIONS(7925), 1, - anon_sym_AMP, - ACTIONS(7931), 1, - anon_sym_GT_EQ, - ACTIONS(7935), 1, - anon_sym_bitor, - ACTIONS(7937), 1, - anon_sym_xor, - ACTIONS(7939), 1, - anon_sym_bitand, - STATE(3515), 1, - sym_argument_list, - STATE(3516), 1, - sym_subscript_argument_list, - ACTIONS(7267), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7651), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7913), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7917), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7919), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7933), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7915), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7927), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7929), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6989), 15, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - 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_GT_STAR, - [87223] = 3, + anon_sym_GT2, + [89245] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4972), 20, + ACTIONS(6540), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -371672,7 +377278,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4965), 30, + ACTIONS(6542), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -371703,10 +377309,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [87281] = 3, + [89303] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6548), 20, + ACTIONS(6552), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -371727,7 +377333,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6550), 30, + ACTIONS(6554), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -371758,10 +377364,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [87339] = 3, + [89361] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6710), 20, + ACTIONS(1936), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -371782,7 +377388,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6712), 30, + ACTIONS(1934), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -371813,10 +377419,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [87397] = 3, + [89419] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4154), 20, + ACTIONS(5144), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -371837,7 +377443,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4146), 30, + ACTIONS(5146), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -371868,10 +377474,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [87455] = 3, + [89477] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4988), 18, + ACTIONS(6445), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -371881,16 +377487,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4990), 32, + ACTIONS(6447), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -371898,8 +377506,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -371908,7 +377514,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -371923,135 +377528,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [87513] = 11, + anon_sym_GT2, + [89535] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6864), 1, - anon_sym_LPAREN2, - ACTIONS(7223), 1, - anon_sym_LBRACK, - ACTIONS(7485), 1, - anon_sym_DOT_STAR, - STATE(3515), 1, - sym_argument_list, - STATE(3516), 1, - sym_subscript_argument_list, - ACTIONS(7267), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7651), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7915), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6449), 11, + ACTIONS(4991), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(4993), 20, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, + anon_sym_SLASH, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(6451), 27, - anon_sym_DOT_DOT_DOT, - 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_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_LT_EQ_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_GT_STAR, - [87587] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6864), 1, - anon_sym_LPAREN2, - ACTIONS(7223), 1, - anon_sym_LBRACK, - ACTIONS(7485), 1, - anon_sym_DOT_STAR, - STATE(3515), 1, - sym_argument_list, - STATE(3516), 1, - sym_subscript_argument_list, - ACTIONS(7267), 2, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7651), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6449), 14, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(6451), 27, + sym_identifier, + ACTIONS(4986), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_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_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + 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_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_GT_STAR, - [87659] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [89595] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5482), 19, + ACTIONS(7963), 1, + anon_sym_COLON, + ACTIONS(7965), 1, + anon_sym_LBRACE, + STATE(3914), 1, + sym__enum_base_clause, + STATE(3993), 1, + sym_enumerator_list, + STATE(4149), 1, + sym_attribute_specifier, + ACTIONS(6033), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(6393), 19, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -372060,8 +377611,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -372070,10 +377619,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_literal_suffix, - ACTIONS(5484), 31, + sym_auto, + anon_sym_decltype, + ACTIONS(6395), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -372085,7 +377639,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -372093,49 +377646,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [87717] = 3, + [89665] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(5136), 20, + ACTIONS(6886), 1, + anon_sym_LPAREN2, + ACTIONS(7159), 1, + anon_sym_LBRACK, + ACTIONS(7491), 1, + anon_sym_DOT_STAR, + ACTIONS(7684), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7943), 1, + anon_sym_CARET, + ACTIONS(7945), 1, + anon_sym_AMP, + ACTIONS(7951), 1, + anon_sym_GT_EQ, + ACTIONS(7957), 1, + anon_sym_xor, + ACTIONS(7959), 1, + anon_sym_bitand, + STATE(3433), 1, + sym_argument_list, + STATE(3434), 1, + sym_subscript_argument_list, + ACTIONS(6518), 2, + anon_sym_PIPE, + anon_sym_EQ, + ACTIONS(7203), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7698), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7937), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7953), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7939), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7947), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7949), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(5138), 30, + ACTIONS(6520), 20, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -372143,84 +377711,143 @@ static const uint16_t ts_small_parse_table[] = { 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [87775] = 24, + anon_sym_DASH_GT_STAR, + [89759] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(6449), 1, - anon_sym_EQ, - ACTIONS(6864), 1, + ACTIONS(67), 1, + anon_sym_const, + ACTIONS(5871), 1, + anon_sym___asm, + ACTIONS(7848), 1, anon_sym_LPAREN2, - ACTIONS(7223), 1, + ACTIONS(7856), 1, + sym_ms_restrict_modifier, + ACTIONS(7862), 1, + anon_sym_LBRACK, + ACTIONS(7967), 1, + anon_sym_STAR, + ACTIONS(7969), 1, + anon_sym_AMP_AMP, + ACTIONS(7971), 1, + anon_sym_AMP, + STATE(1680), 1, + sym_alignas_qualifier, + STATE(3110), 1, + sym_parameter_list, + STATE(3758), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5953), 1, + sym__function_declarator_seq, + STATE(6237), 1, + sym__abstract_declarator, + ACTIONS(7304), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7858), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(7860), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3610), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4256), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5952), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(5863), 10, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(7297), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [89855] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6886), 1, + anon_sym_LPAREN2, + ACTIONS(7159), 1, anon_sym_LBRACK, - ACTIONS(7485), 1, + ACTIONS(7491), 1, anon_sym_DOT_STAR, - ACTIONS(7637), 1, + ACTIONS(7684), 1, anon_sym_LT_EQ_GT, - ACTIONS(7921), 1, - anon_sym_PIPE, - ACTIONS(7923), 1, - anon_sym_CARET, - ACTIONS(7925), 1, + ACTIONS(7945), 1, anon_sym_AMP, - ACTIONS(7931), 1, + ACTIONS(7951), 1, anon_sym_GT_EQ, - ACTIONS(7935), 1, - anon_sym_bitor, - ACTIONS(7937), 1, - anon_sym_xor, - ACTIONS(7939), 1, + ACTIONS(7959), 1, anon_sym_bitand, - STATE(3515), 1, + STATE(3433), 1, sym_argument_list, - STATE(3516), 1, + STATE(3434), 1, sym_subscript_argument_list, - ACTIONS(7267), 2, + ACTIONS(7203), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7651), 2, + ACTIONS(7698), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7913), 2, + ACTIONS(7937), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7919), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7933), 2, + ACTIONS(7953), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7915), 3, + ACTIONS(6518), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ, + ACTIONS(7939), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7927), 3, + ACTIONS(7947), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7929), 3, + ACTIONS(7949), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6451), 17, + ACTIONS(6520), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -372233,63 +377860,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, anon_sym_DASH_GT_STAR, - [87875] = 23, + [89945] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(67), 1, + anon_sym_const, + ACTIONS(5879), 1, + anon_sym___asm, + ACTIONS(7848), 1, + anon_sym_LPAREN2, + ACTIONS(7856), 1, + sym_ms_restrict_modifier, + ACTIONS(7862), 1, + anon_sym_LBRACK, + ACTIONS(7967), 1, + anon_sym_STAR, + ACTIONS(7969), 1, + anon_sym_AMP_AMP, + ACTIONS(7971), 1, + anon_sym_AMP, + STATE(1680), 1, + sym_alignas_qualifier, + STATE(3110), 1, + sym_parameter_list, + STATE(3758), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5953), 1, + sym__function_declarator_seq, + STATE(6241), 1, + sym__abstract_declarator, + ACTIONS(7304), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7858), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(7860), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3386), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4261), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5952), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(5877), 10, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(7297), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [90041] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6449), 1, - anon_sym_EQ, - ACTIONS(6864), 1, + ACTIONS(6886), 1, anon_sym_LPAREN2, - ACTIONS(7223), 1, + ACTIONS(7159), 1, anon_sym_LBRACK, - ACTIONS(7485), 1, + ACTIONS(7491), 1, anon_sym_DOT_STAR, - ACTIONS(7637), 1, + ACTIONS(7684), 1, anon_sym_LT_EQ_GT, - ACTIONS(7921), 1, - anon_sym_PIPE, - ACTIONS(7923), 1, - anon_sym_CARET, - ACTIONS(7925), 1, - anon_sym_AMP, - ACTIONS(7931), 1, + ACTIONS(7951), 1, anon_sym_GT_EQ, - ACTIONS(7935), 1, - anon_sym_bitor, - ACTIONS(7937), 1, - anon_sym_xor, - ACTIONS(7939), 1, - anon_sym_bitand, - STATE(3515), 1, + STATE(3433), 1, sym_argument_list, - STATE(3516), 1, + STATE(3434), 1, sym_subscript_argument_list, - ACTIONS(7267), 2, + ACTIONS(7203), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7651), 2, + ACTIONS(7698), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7913), 2, + ACTIONS(7937), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7933), 2, + ACTIONS(7953), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7915), 3, + ACTIONS(7939), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7927), 3, + ACTIONS(7947), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7929), 3, + ACTIONS(7949), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6451), 19, + ACTIONS(6518), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + ACTIONS(6520), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -372308,11 +378003,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_or, anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, anon_sym_DASH_GT_STAR, - [87973] = 3, + [90127] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6398), 20, + ACTIONS(6406), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -372333,7 +378031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6400), 30, + ACTIONS(6408), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -372364,64 +378062,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [88031] = 21, + [90185] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(6864), 1, + ACTIONS(6886), 1, anon_sym_LPAREN2, - ACTIONS(7223), 1, + ACTIONS(7159), 1, anon_sym_LBRACK, - ACTIONS(7485), 1, + ACTIONS(7491), 1, anon_sym_DOT_STAR, - ACTIONS(7637), 1, + ACTIONS(7684), 1, anon_sym_LT_EQ_GT, - ACTIONS(7923), 1, - anon_sym_CARET, - ACTIONS(7925), 1, - anon_sym_AMP, - ACTIONS(7931), 1, + ACTIONS(7951), 1, anon_sym_GT_EQ, - ACTIONS(7937), 1, - anon_sym_xor, - ACTIONS(7939), 1, - anon_sym_bitand, - STATE(3515), 1, + STATE(3433), 1, sym_argument_list, - STATE(3516), 1, + STATE(3434), 1, sym_subscript_argument_list, - ACTIONS(6449), 2, - anon_sym_PIPE, - anon_sym_EQ, - ACTIONS(7267), 2, + ACTIONS(7203), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7651), 2, + ACTIONS(7698), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7913), 2, + ACTIONS(7937), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7933), 2, + ACTIONS(7953), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7915), 3, + ACTIONS(7939), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7927), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7929), 3, + ACTIONS(7949), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6451), 20, + ACTIONS(6518), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + ACTIONS(6520), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -372436,11 +378126,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_GT_STAR, - [88125] = 3, + [90269] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6501), 20, + ACTIONS(6406), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -372461,7 +378154,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6503), 30, + ACTIONS(6408), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -372492,10 +378185,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [88183] = 3, + [90327] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5136), 20, + ACTIONS(6406), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -372516,7 +378209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5138), 30, + ACTIONS(6408), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -372547,18 +378240,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [88241] = 7, + [90385] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7941), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7943), 1, - anon_sym_AMP_AMP, - ACTIONS(7945), 1, - anon_sym_or, - ACTIONS(7947), 1, - anon_sym_and, - ACTIONS(6253), 18, + ACTIONS(6654), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -372575,12 +378260,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6255), 28, + ACTIONS(6656), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LBRACK, @@ -372606,39 +378295,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [88307] = 3, + [90443] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(6398), 20, + ACTIONS(6886), 1, + anon_sym_LPAREN2, + ACTIONS(7159), 1, + anon_sym_LBRACK, + ACTIONS(7491), 1, + anon_sym_DOT_STAR, + ACTIONS(7684), 1, + anon_sym_LT_EQ_GT, + STATE(3433), 1, + sym_argument_list, + STATE(3434), 1, + sym_subscript_argument_list, + ACTIONS(7203), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7698), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7937), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7953), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7939), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(6518), 7, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(6400), 30, + ACTIONS(6520), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK, + anon_sym_GT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -372646,25 +378350,21 @@ static const uint16_t ts_small_parse_table[] = { 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [88365] = 3, + anon_sym_DASH_GT_STAR, + [90523] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6554), 20, + ACTIONS(6572), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -372685,7 +378385,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6556), 30, + ACTIONS(6574), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -372716,61 +378416,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [88423] = 19, + [90581] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6864), 1, + ACTIONS(6886), 1, anon_sym_LPAREN2, - ACTIONS(7223), 1, + ACTIONS(7159), 1, anon_sym_LBRACK, - ACTIONS(7485), 1, + ACTIONS(7491), 1, anon_sym_DOT_STAR, - ACTIONS(7637), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7925), 1, - anon_sym_AMP, - ACTIONS(7931), 1, - anon_sym_GT_EQ, - ACTIONS(7939), 1, - anon_sym_bitand, - STATE(3515), 1, + STATE(3433), 1, sym_argument_list, - STATE(3516), 1, + STATE(3434), 1, sym_subscript_argument_list, - ACTIONS(7267), 2, + ACTIONS(7203), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7651), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7913), 2, + ACTIONS(6514), 14, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7933), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6449), 3, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_EQ, - ACTIONS(7915), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7927), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7929), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6451), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(6516), 29, anon_sym_DOT_DOT_DOT, 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_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -372782,63 +378467,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_DASH_GT_STAR, - [88513] = 17, + [90651] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6864), 1, - anon_sym_LPAREN2, - ACTIONS(7223), 1, - anon_sym_LBRACK, - ACTIONS(7485), 1, - anon_sym_DOT_STAR, - ACTIONS(7637), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7931), 1, - anon_sym_GT_EQ, - STATE(3515), 1, - sym_argument_list, - STATE(3516), 1, - sym_subscript_argument_list, - ACTIONS(7267), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7651), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7913), 2, + ACTIONS(6722), 20, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7933), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7915), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7927), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7929), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6449), 4, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(6451), 22, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(6724), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -372846,20 +378517,25 @@ static const uint16_t ts_small_parse_table[] = { 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_or, - anon_sym_and, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, - anon_sym_DASH_GT_STAR, - [88599] = 3, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [90709] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5136), 20, + ACTIONS(6606), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -372880,7 +378556,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5138), 30, + ACTIONS(6608), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -372911,10 +378587,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [88657] = 3, + [90767] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6618), 20, + ACTIONS(6610), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -372935,7 +378611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6620), 30, + ACTIONS(6612), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -372966,41 +378642,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [88715] = 5, + [90825] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(7099), 1, + ACTIONS(6886), 1, + anon_sym_LPAREN2, + ACTIONS(7015), 1, + anon_sym_EQ, + ACTIONS(7159), 1, anon_sym_LBRACK, - STATE(3698), 1, - sym_new_declarator, - ACTIONS(6352), 16, + ACTIONS(7491), 1, + anon_sym_DOT_STAR, + ACTIONS(7684), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7941), 1, + anon_sym_PIPE, + ACTIONS(7943), 1, + anon_sym_CARET, + ACTIONS(7945), 1, + anon_sym_AMP, + ACTIONS(7951), 1, + anon_sym_GT_EQ, + ACTIONS(7955), 1, + anon_sym_bitor, + ACTIONS(7957), 1, + anon_sym_xor, + ACTIONS(7959), 1, + anon_sym_bitand, + STATE(3433), 1, + sym_argument_list, + STATE(3434), 1, + sym_subscript_argument_list, + ACTIONS(7203), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7698), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7937), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7953), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7961), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7973), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7939), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7947), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7949), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6354), 32, + ACTIONS(7017), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -373012,21 +378718,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [88777] = 3, + [90927] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6640), 20, + ACTIONS(5156), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -373047,7 +378743,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6642), 30, + ACTIONS(5158), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -373078,12 +378774,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [88835] = 5, + [90985] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6226), 1, + ACTIONS(6430), 1, + anon_sym_LT, + STATE(1975), 1, + sym_template_argument_list, + ACTIONS(6426), 17, + 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_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(6228), 13, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(6428), 31, + anon_sym_DOT_DOT_DOT, + 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_LBRACK, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -373097,7 +378823,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - ACTIONS(4154), 17, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [91047] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6642), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -373107,15 +378844,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4146), 19, + ACTIONS(6644), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -373123,10 +378863,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, @@ -373135,10 +378885,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [88897] = 3, + anon_sym_GT2, + [91105] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1940), 20, + ACTIONS(5160), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -373159,7 +378910,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(1938), 30, + ACTIONS(5162), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -373190,56 +378941,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [88955] = 16, + [91163] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6864), 1, - anon_sym_LPAREN2, - ACTIONS(7223), 1, - anon_sym_LBRACK, - ACTIONS(7485), 1, - anon_sym_DOT_STAR, - ACTIONS(7637), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7931), 1, - anon_sym_GT_EQ, - STATE(3515), 1, - sym_argument_list, - STATE(3516), 1, - sym_subscript_argument_list, - ACTIONS(7267), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7651), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7913), 2, + ACTIONS(6482), 20, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7933), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7915), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7929), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6449), 4, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(6451), 25, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(6484), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -373247,21 +378981,25 @@ static const uint16_t ts_small_parse_table[] = { 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_or, - anon_sym_and, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_GT_STAR, - [89039] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [91221] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6398), 20, + ACTIONS(5148), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -373282,7 +379020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6400), 30, + ACTIONS(5150), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -373313,74 +379051,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [89097] = 27, + [91279] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6524), 1, - anon_sym_EQ, - ACTIONS(6864), 1, - anon_sym_LPAREN2, - ACTIONS(7223), 1, - anon_sym_LBRACK, - ACTIONS(7485), 1, - anon_sym_DOT_STAR, - ACTIONS(7571), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7615), 1, - anon_sym_QMARK, - ACTIONS(7637), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7921), 1, + ACTIONS(7975), 1, + anon_sym_COMMA, + ACTIONS(7977), 1, + anon_sym_RBRACK, + ACTIONS(4174), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, - ACTIONS(7923), 1, anon_sym_CARET, - ACTIONS(7925), 1, anon_sym_AMP, - ACTIONS(7931), 1, - anon_sym_GT_EQ, - ACTIONS(7935), 1, - anon_sym_bitor, - ACTIONS(7937), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, anon_sym_xor, - ACTIONS(7939), 1, - anon_sym_bitand, - STATE(3515), 1, - sym_argument_list, - STATE(3516), 1, - sym_subscript_argument_list, - ACTIONS(7267), 2, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7651), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7913), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7917), 2, + ACTIONS(4166), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7919), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7933), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7915), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7927), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7929), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6526), 13, - anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -373391,11 +379097,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DASH_GT_STAR, - [89203] = 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [91341] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6664), 20, + ACTIONS(5152), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -373416,7 +379132,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6666), 30, + ACTIONS(5154), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -373447,73 +379163,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [89261] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4167), 1, - anon_sym_COLON_COLON, - ACTIONS(5036), 1, - anon_sym_SEMI, - ACTIONS(6630), 1, - anon_sym_LT, - ACTIONS(7033), 1, - anon_sym_LBRACK, - STATE(2641), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3962), 1, - sym_template_argument_list, - ACTIONS(4169), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(4152), 3, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - ACTIONS(4174), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4144), 35, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [89335] = 3, + [91399] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6702), 20, + ACTIONS(6564), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -373534,7 +379187,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6704), 30, + ACTIONS(6566), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -373565,142 +379218,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [89393] = 9, + [91457] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7949), 1, - anon_sym_COLON, - ACTIONS(7951), 1, - anon_sym_LBRACE, - STATE(3905), 1, - sym__enum_base_clause, - STATE(3952), 1, - sym_enumerator_list, - STATE(4067), 1, - sym_attribute_specifier, - ACTIONS(6016), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(6336), 19, - aux_sym_preproc_elif_token1, + ACTIONS(6006), 20, 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_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6338), 24, + ACTIONS(6004), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [89463] = 3, + anon_sym_GT2, + [91515] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5489), 19, + ACTIONS(6646), 20, 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_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - sym_literal_suffix, - ACTIONS(5491), 31, + ACTIONS(6648), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [89521] = 10, + anon_sym_GT2, + [91573] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6864), 1, - anon_sym_LPAREN2, - ACTIONS(7223), 1, + ACTIONS(7291), 1, anon_sym_LBRACK, - ACTIONS(7485), 1, - anon_sym_DOT_STAR, - STATE(3515), 1, - sym_argument_list, - STATE(3516), 1, - sym_subscript_argument_list, - ACTIONS(7267), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7651), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6467), 14, + STATE(3754), 1, + sym_new_declarator, + ACTIONS(6346), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -373715,15 +379350,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(6469), 27, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6348), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -373742,11 +379381,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [89593] = 3, + [91635] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6536), 20, + ACTIONS(4174), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -373767,7 +379409,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6538), 30, + ACTIONS(4166), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -373798,10 +379440,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [89651] = 3, + [91693] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6570), 20, + ACTIONS(6178), 1, + anon_sym_EQ, + ACTIONS(6278), 1, + anon_sym_COMMA, + ACTIONS(6280), 1, + anon_sym_RBRACK, + ACTIONS(6128), 13, + 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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + ACTIONS(4166), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(4174), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -373811,81 +379491,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6572), 30, + [91759] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5519), 1, + anon_sym_COLON_COLON, + ACTIONS(5521), 24, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + ACTIONS(5523), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [89709] = 3, + [91819] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(6509), 20, + ACTIONS(6886), 1, + anon_sym_LPAREN2, + ACTIONS(7159), 1, + anon_sym_LBRACK, + ACTIONS(7491), 1, + anon_sym_DOT_STAR, + STATE(3433), 1, + sym_argument_list, + STATE(3434), 1, + sym_subscript_argument_list, + ACTIONS(7203), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7698), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7937), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7939), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(6518), 9, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(6511), 30, + ACTIONS(6520), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK, + anon_sym_GT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -373893,89 +379607,84 @@ static const uint16_t ts_small_parse_table[] = { 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [89767] = 27, + anon_sym_DASH_GT_STAR, + [91895] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(6864), 1, + ACTIONS(6886), 1, anon_sym_LPAREN2, - ACTIONS(7019), 1, + ACTIONS(6993), 1, anon_sym_EQ, - ACTIONS(7223), 1, + ACTIONS(7159), 1, anon_sym_LBRACK, - ACTIONS(7485), 1, + ACTIONS(7491), 1, anon_sym_DOT_STAR, - ACTIONS(7571), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7615), 1, - anon_sym_QMARK, - ACTIONS(7637), 1, + ACTIONS(7684), 1, anon_sym_LT_EQ_GT, - ACTIONS(7921), 1, + ACTIONS(7941), 1, anon_sym_PIPE, - ACTIONS(7923), 1, + ACTIONS(7943), 1, anon_sym_CARET, - ACTIONS(7925), 1, + ACTIONS(7945), 1, anon_sym_AMP, - ACTIONS(7931), 1, + ACTIONS(7951), 1, anon_sym_GT_EQ, - ACTIONS(7935), 1, + ACTIONS(7955), 1, anon_sym_bitor, - ACTIONS(7937), 1, + ACTIONS(7957), 1, anon_sym_xor, - ACTIONS(7939), 1, + ACTIONS(7959), 1, anon_sym_bitand, - STATE(3515), 1, + STATE(3433), 1, sym_argument_list, - STATE(3516), 1, + STATE(3434), 1, sym_subscript_argument_list, - ACTIONS(7267), 2, + ACTIONS(7203), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7651), 2, + ACTIONS(7698), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7913), 2, + ACTIONS(7937), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7917), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7919), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7933), 2, + ACTIONS(7953), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7915), 3, + ACTIONS(7961), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7973), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7939), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7927), 3, + ACTIONS(7947), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7929), 3, + ACTIONS(7949), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7021), 13, + ACTIONS(6995), 15, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -373987,39 +379696,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_DASH_GT_STAR, - [89873] = 3, + [91997] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(6532), 20, + ACTIONS(6886), 1, + anon_sym_LPAREN2, + ACTIONS(7159), 1, + anon_sym_LBRACK, + ACTIONS(7491), 1, + anon_sym_DOT_STAR, + STATE(3433), 1, + sym_argument_list, + STATE(3434), 1, + sym_subscript_argument_list, + ACTIONS(7203), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7698), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7937), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7953), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7939), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(6518), 7, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(6534), 30, + ACTIONS(6520), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK, + anon_sym_GT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -374027,61 +379749,53 @@ static const uint16_t ts_small_parse_table[] = { 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [89931] = 14, + anon_sym_DASH_GT_STAR, + [92075] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6864), 1, + ACTIONS(6886), 1, anon_sym_LPAREN2, - ACTIONS(7223), 1, + ACTIONS(7159), 1, anon_sym_LBRACK, - ACTIONS(7485), 1, + ACTIONS(7491), 1, anon_sym_DOT_STAR, - ACTIONS(7637), 1, - anon_sym_LT_EQ_GT, - STATE(3515), 1, + STATE(3433), 1, sym_argument_list, - STATE(3516), 1, + STATE(3434), 1, sym_subscript_argument_list, - ACTIONS(7267), 2, + ACTIONS(7203), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7651), 2, + ACTIONS(7698), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7913), 2, + ACTIONS(6410), 14, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7933), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7915), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6449), 7, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(6451), 26, + ACTIONS(6412), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -374101,6 +379815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -374108,65 +379823,240 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_GT_STAR, - [90011] = 3, + [92147] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5442), 20, + ACTIONS(5519), 1, + anon_sym_COLON_COLON, + ACTIONS(5541), 24, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(2685), 30, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + ACTIONS(5543), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [92207] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6886), 1, + anon_sym_LPAREN2, + ACTIONS(6997), 1, + anon_sym_EQ, + ACTIONS(7159), 1, anon_sym_LBRACK, + ACTIONS(7491), 1, + anon_sym_DOT_STAR, + ACTIONS(7618), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7662), 1, anon_sym_QMARK, + ACTIONS(7684), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7941), 1, + anon_sym_PIPE, + ACTIONS(7943), 1, + anon_sym_CARET, + ACTIONS(7945), 1, + anon_sym_AMP, + ACTIONS(7951), 1, + anon_sym_GT_EQ, + ACTIONS(7955), 1, + anon_sym_bitor, + ACTIONS(7957), 1, + anon_sym_xor, + ACTIONS(7959), 1, + anon_sym_bitand, + STATE(3433), 1, + sym_argument_list, + STATE(3434), 1, + sym_subscript_argument_list, + ACTIONS(7203), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7698), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7937), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7953), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7961), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7973), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7939), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7947), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7949), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6999), 13, + anon_sym_COMMA, + anon_sym_RPAREN, 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [90069] = 3, + anon_sym_DASH_GT_STAR, + [92313] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6590), 20, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1814), 1, + anon_sym_enum, + ACTIONS(1816), 1, + anon_sym_class, + ACTIONS(1818), 1, + anon_sym_struct, + ACTIONS(1820), 1, + anon_sym_union, + ACTIONS(1844), 1, + sym_auto, + ACTIONS(1846), 1, + anon_sym_decltype, + ACTIONS(1848), 1, + anon_sym_typename, + ACTIONS(7980), 1, + sym_identifier, + ACTIONS(7982), 1, + anon_sym_RPAREN, + ACTIONS(7984), 1, + anon_sym_COLON_COLON, + ACTIONS(7986), 1, + sym_primitive_type, + STATE(1680), 1, + sym_alignas_qualifier, + STATE(1888), 1, + sym_decltype_auto, + STATE(1916), 1, + sym_qualified_type_identifier, + STATE(4234), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4528), 1, + sym_type_specifier, + STATE(6727), 1, + sym__scope_resolution, + STATE(7413), 1, + sym_type_descriptor, + STATE(8569), 1, + sym_dependent_type_identifier, + ACTIONS(69), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1782), 2, + sym_decltype, + sym_template_type, + STATE(3891), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(1808), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1890), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [92419] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6886), 1, + anon_sym_LPAREN2, + ACTIONS(7159), 1, + anon_sym_LBRACK, + ACTIONS(7491), 1, + anon_sym_DOT_STAR, + STATE(3433), 1, + sym_argument_list, + STATE(3434), 1, + sym_subscript_argument_list, + ACTIONS(7203), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7698), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6422), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -374176,26 +380066,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(6592), 30, + ACTIONS(6424), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK, + anon_sym_GT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -374203,25 +380087,22 @@ static const uint16_t ts_small_parse_table[] = { 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [90127] = 3, + anon_sym_DASH_GT_STAR, + [92491] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6477), 20, + ACTIONS(6718), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -374242,7 +380123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6479), 30, + ACTIONS(6720), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -374273,13 +380154,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [90185] = 4, + [92549] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5003), 2, + ACTIONS(5519), 1, anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(5005), 20, + ACTIONS(5541), 24, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -374300,10 +380180,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(4998), 28, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + ACTIONS(5543), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, @@ -374319,20 +380202,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [90245] = 3, + [92609] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5144), 20, + ACTIONS(6560), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -374353,7 +380234,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5146), 30, + ACTIONS(6562), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -374384,10 +380265,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [90303] = 3, + [92667] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6698), 20, + ACTIONS(5196), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -374408,7 +380289,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6700), 30, + ACTIONS(5198), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -374439,150 +380320,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [90361] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6864), 1, - anon_sym_LPAREN2, - ACTIONS(7011), 1, - anon_sym_EQ, - ACTIONS(7223), 1, - anon_sym_LBRACK, - ACTIONS(7485), 1, - anon_sym_DOT_STAR, - ACTIONS(7571), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7615), 1, - anon_sym_QMARK, - ACTIONS(7637), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7921), 1, - anon_sym_PIPE, - ACTIONS(7923), 1, - anon_sym_CARET, - ACTIONS(7925), 1, - anon_sym_AMP, - ACTIONS(7931), 1, - anon_sym_GT_EQ, - ACTIONS(7935), 1, - anon_sym_bitor, - ACTIONS(7937), 1, - anon_sym_xor, - ACTIONS(7939), 1, - anon_sym_bitand, - STATE(3515), 1, - sym_argument_list, - STATE(3516), 1, - sym_subscript_argument_list, - ACTIONS(7267), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7651), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7913), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7917), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7919), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7933), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7915), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7927), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7929), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7013), 13, - anon_sym_COMMA, - anon_sym_RPAREN, - 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_GT_STAR, - [90467] = 9, + [92725] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7949), 1, - anon_sym_COLON, - ACTIONS(7951), 1, - anon_sym_LBRACE, - STATE(3909), 1, - sym__enum_base_clause, - STATE(3956), 1, - sym_enumerator_list, - STATE(4063), 1, - sym_attribute_specifier, - ACTIONS(6016), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(6342), 19, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6344), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [90537] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6676), 20, + ACTIONS(6614), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -374603,7 +380344,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6678), 30, + ACTIONS(6616), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -374634,10 +380375,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [90595] = 3, + [92783] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6524), 20, + ACTIONS(6626), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -374658,7 +380399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6526), 30, + ACTIONS(6628), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -374689,51 +380430,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [90653] = 12, + [92841] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6864), 1, + ACTIONS(6662), 1, + anon_sym_EQ, + ACTIONS(6886), 1, anon_sym_LPAREN2, - ACTIONS(7223), 1, + ACTIONS(7159), 1, anon_sym_LBRACK, - ACTIONS(7485), 1, + ACTIONS(7491), 1, anon_sym_DOT_STAR, - STATE(3515), 1, + ACTIONS(7618), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7662), 1, + anon_sym_QMARK, + ACTIONS(7684), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7941), 1, + anon_sym_PIPE, + ACTIONS(7943), 1, + anon_sym_CARET, + ACTIONS(7945), 1, + anon_sym_AMP, + ACTIONS(7951), 1, + anon_sym_GT_EQ, + ACTIONS(7955), 1, + anon_sym_bitor, + ACTIONS(7957), 1, + anon_sym_xor, + ACTIONS(7959), 1, + anon_sym_bitand, + STATE(3433), 1, sym_argument_list, - STATE(3516), 1, + STATE(3434), 1, sym_subscript_argument_list, - ACTIONS(7267), 2, + ACTIONS(7203), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7651), 2, + ACTIONS(7698), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7913), 2, + ACTIONS(7937), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7953), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7961), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7973), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7939), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7947), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7949), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6664), 13, + anon_sym_COMMA, + anon_sym_RPAREN, + 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_GT_STAR, + [92947] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6694), 20, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7915), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6449), 9, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(6451), 27, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(6696), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -374741,22 +380549,25 @@ static const uint16_t ts_small_parse_table[] = { 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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_GT_STAR, - [90729] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [93005] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6644), 20, + ACTIONS(6666), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -374777,7 +380588,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6646), 30, + ACTIONS(6668), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -374808,10 +380619,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [90787] = 3, + [93063] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6648), 20, + ACTIONS(6698), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -374832,7 +380643,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6650), 30, + ACTIONS(6700), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -374863,10 +380674,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [90845] = 3, + [93121] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6548), 20, + ACTIONS(6532), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -374887,7 +380698,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6550), 30, + ACTIONS(6534), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -374918,10 +380729,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [90903] = 3, + [93179] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6652), 20, + ACTIONS(6536), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -374942,7 +380753,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6654), 30, + ACTIONS(6538), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -374973,12 +380784,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [90961] = 4, + [93237] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(5454), 1, - anon_sym_COLON_COLON, - ACTIONS(5617), 24, + ACTIONS(6886), 1, + anon_sym_LPAREN2, + ACTIONS(7019), 1, + anon_sym_EQ, + ACTIONS(7159), 1, + anon_sym_LBRACK, + ACTIONS(7491), 1, + anon_sym_DOT_STAR, + ACTIONS(7684), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7941), 1, + anon_sym_PIPE, + ACTIONS(7943), 1, + anon_sym_CARET, + ACTIONS(7945), 1, + anon_sym_AMP, + ACTIONS(7951), 1, + anon_sym_GT_EQ, + ACTIONS(7955), 1, + anon_sym_bitor, + ACTIONS(7957), 1, + anon_sym_xor, + ACTIONS(7959), 1, + anon_sym_bitand, + STATE(3433), 1, + sym_argument_list, + STATE(3434), 1, + sym_subscript_argument_list, + ACTIONS(7203), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7698), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7937), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7953), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7961), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7973), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7939), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7947), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7949), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7021), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + 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_GT_STAR, + [93339] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5006), 24, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -375003,7 +380889,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_final, anon_sym_override, - ACTIONS(5619), 25, + ACTIONS(5008), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -375021,6 +380907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -375029,12 +380916,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [91021] = 4, + [93397] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5454), 1, - anon_sym_COLON_COLON, - ACTIONS(5617), 24, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(7299), 1, + anon_sym___attribute__, + STATE(2533), 1, + sym_attribute_specifier, + ACTIONS(6157), 5, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(6159), 42, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [93461] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5010), 24, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -375059,7 +381002,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_final, anon_sym_override, - ACTIONS(5619), 25, + ACTIONS(5012), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -375077,6 +381020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -375085,67 +381029,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [91081] = 5, + [93519] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5062), 2, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(5064), 12, - 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_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - ACTIONS(4146), 18, - anon_sym_DOT_DOT_DOT, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(7299), 1, + anon_sym___attribute__, + STATE(2478), 1, + sym_attribute_specifier, + ACTIONS(6100), 5, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(6102), 42, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - ACTIONS(4154), 18, - 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_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - [91143] = 3, + anon_sym_try, + anon_sym_requires, + [93583] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3895), 20, + ACTIONS(5002), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -375155,18 +381100,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(3891), 30, + ACTIONS(5004), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -375174,6 +381117,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -375182,6 +381127,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -375196,11 +381142,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [91201] = 3, + [93641] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 20, + ACTIONS(4976), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -375210,18 +381155,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(1934), 30, + ACTIONS(4978), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -375229,6 +381172,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -375237,6 +381182,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -375251,11 +381197,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [91259] = 3, + [93699] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6558), 20, + ACTIONS(5196), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -375276,7 +381221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6560), 30, + ACTIONS(5198), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -375307,71 +381252,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [91317] = 25, + [93757] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6864), 1, + ACTIONS(6886), 1, anon_sym_LPAREN2, - ACTIONS(7005), 1, - anon_sym_EQ, - ACTIONS(7223), 1, + ACTIONS(7159), 1, anon_sym_LBRACK, - ACTIONS(7485), 1, + ACTIONS(7491), 1, anon_sym_DOT_STAR, - ACTIONS(7637), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7921), 1, - anon_sym_PIPE, - ACTIONS(7923), 1, - anon_sym_CARET, - ACTIONS(7925), 1, - anon_sym_AMP, - ACTIONS(7931), 1, - anon_sym_GT_EQ, - ACTIONS(7935), 1, - anon_sym_bitor, - ACTIONS(7937), 1, - anon_sym_xor, - ACTIONS(7939), 1, - anon_sym_bitand, - STATE(3515), 1, + STATE(3433), 1, sym_argument_list, - STATE(3516), 1, + STATE(3434), 1, sym_subscript_argument_list, - ACTIONS(7267), 2, + ACTIONS(7203), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7651), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7913), 2, + ACTIONS(6433), 14, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7917), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7919), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7933), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7915), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7927), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7929), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7007), 15, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(6435), 29, anon_sym_DOT_DOT_DOT, 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_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -375383,80 +381303,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DASH_GT_STAR, - [91419] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7953), 1, - anon_sym_LBRACK, - STATE(3719), 1, - sym_new_declarator, - ACTIONS(6352), 19, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(6354), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_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_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [91481] = 6, + anon_sym_DASH_GT_STAR, + [93827] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7147), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - STATE(2508), 1, + STATE(2455), 1, sym_attribute_specifier, - ACTIONS(6151), 5, + ACTIONS(6206), 5, anon_sym_AMP, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(6153), 42, + ACTIONS(6208), 42, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -375499,77 +381371,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [91545] = 3, + [93891] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6520), 20, + ACTIONS(5014), 24, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(6522), 30, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + ACTIONS(5016), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [91603] = 6, + [93949] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7147), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - STATE(2512), 1, + STATE(2466), 1, sym_attribute_specifier, - ACTIONS(6155), 5, + ACTIONS(6210), 5, anon_sym_AMP, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(6157), 42, + ACTIONS(6212), 42, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -375612,65 +381484,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [91667] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6574), 20, - 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_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(6576), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [91725] = 3, + [94013] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6594), 20, + ACTIONS(5184), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -375691,7 +381508,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6596), 30, + ACTIONS(5186), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -375722,80 +381539,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [91783] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7147), 1, - anon_sym___attribute__, - STATE(2475), 1, - sym_attribute_specifier, - ACTIONS(6121), 5, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(6123), 42, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_static, - anon_sym_EQ, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [91847] = 6, + [94071] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7147), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - STATE(2490), 1, + STATE(2516), 1, sym_attribute_specifier, - ACTIONS(6125), 5, + ACTIONS(6104), 5, anon_sym_AMP, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(6127), 42, + ACTIONS(6106), 42, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -375838,22 +381597,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [91911] = 6, + [94135] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7147), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - STATE(2491), 1, + STATE(2520), 1, sym_attribute_specifier, - ACTIONS(6129), 5, + ACTIONS(6108), 5, anon_sym_AMP, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(6131), 42, + ACTIONS(6110), 42, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -375896,22 +381655,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [91975] = 6, + [94199] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7147), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - STATE(2530), 1, + STATE(2501), 1, sym_attribute_specifier, - ACTIONS(6090), 5, + ACTIONS(6149), 5, anon_sym_AMP, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(6092), 42, + ACTIONS(6151), 42, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -375954,10 +381713,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [92039] = 3, + [94263] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5180), 20, + ACTIONS(6590), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -375978,7 +381737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5182), 30, + ACTIONS(6592), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -376009,22 +381768,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [92097] = 6, + [94321] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7147), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - STATE(2532), 1, + STATE(2509), 1, sym_attribute_specifier, - ACTIONS(6096), 5, + ACTIONS(6161), 5, anon_sym_AMP, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(6098), 42, + ACTIONS(6163), 42, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -376067,22 +381826,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [92161] = 6, + [94385] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7147), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - STATE(2454), 1, + STATE(2526), 1, sym_attribute_specifier, - ACTIONS(6168), 5, + ACTIONS(6165), 5, anon_sym_AMP, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(6170), 42, + ACTIONS(6167), 42, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -376125,22 +381884,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [92225] = 6, + [94449] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7147), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - STATE(2517), 1, + STATE(2527), 1, sym_attribute_specifier, - ACTIONS(6104), 5, + ACTIONS(6169), 5, anon_sym_AMP, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(6106), 42, + ACTIONS(6171), 42, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -376183,22 +381942,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [92289] = 6, + [94513] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5002), 24, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + ACTIONS(5004), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [94571] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7147), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - STATE(2487), 1, + STATE(2505), 1, sym_attribute_specifier, - ACTIONS(6058), 5, + ACTIONS(6214), 5, anon_sym_AMP, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(6060), 42, + ACTIONS(6216), 42, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -376241,22 +382055,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [92353] = 6, + [94635] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7147), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - STATE(2411), 1, + STATE(2469), 1, sym_attribute_specifier, - ACTIONS(6062), 5, + ACTIONS(6153), 5, anon_sym_AMP, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(6064), 42, + ACTIONS(6155), 42, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -376299,10 +382113,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [92417] = 3, + [94699] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5605), 24, + ACTIONS(4976), 24, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -376327,7 +382141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_final, anon_sym_override, - ACTIONS(5607), 26, + ACTIONS(4978), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -376354,950 +382168,175 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [92475] = 3, + [94757] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5184), 20, + ACTIONS(4980), 24, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, anon_sym_or, anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(5186), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [92533] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6632), 20, - 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_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, - ACTIONS(6634), 30, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + ACTIONS(4982), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [92591] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6517), 1, - anon_sym_LT, - STATE(1916), 1, - sym_template_argument_list, - ACTIONS(6513), 17, - 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_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(6515), 31, - anon_sym_DOT_DOT_DOT, - 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_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [92653] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6636), 20, - 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_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(6638), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [92711] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6656), 20, - 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_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(6658), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [92769] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1816), 1, - anon_sym_enum, - ACTIONS(1818), 1, - anon_sym_class, - ACTIONS(1820), 1, - anon_sym_struct, - ACTIONS(1822), 1, - anon_sym_union, - ACTIONS(1846), 1, - sym_auto, - ACTIONS(1848), 1, - anon_sym_decltype, - ACTIONS(1850), 1, - anon_sym_typename, - ACTIONS(7955), 1, - sym_identifier, - ACTIONS(7957), 1, - anon_sym_RPAREN, - ACTIONS(7959), 1, anon_sym_COLON_COLON, - ACTIONS(7961), 1, - sym_primitive_type, - STATE(1658), 1, - sym_alignas_qualifier, - STATE(1859), 1, - sym_decltype_auto, - STATE(1902), 1, - sym_qualified_type_identifier, - STATE(4209), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4455), 1, - sym_type_specifier, - STATE(6587), 1, - sym__scope_resolution, - STATE(7185), 1, - sym_type_descriptor, - STATE(8601), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1713), 2, - sym_decltype, - sym_template_type, - STATE(3904), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1810), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1879), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [92875] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6660), 20, - 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_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(6662), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [92933] = 3, + [94815] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6566), 20, + ACTIONS(5601), 19, 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_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, + anon_sym___attribute__, + anon_sym___attribute, anon_sym_or, anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(6568), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [92991] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6864), 1, - anon_sym_LPAREN2, - ACTIONS(7015), 1, - anon_sym_EQ, - ACTIONS(7223), 1, - anon_sym_LBRACK, - ACTIONS(7485), 1, - anon_sym_DOT_STAR, - ACTIONS(7637), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7921), 1, - anon_sym_PIPE, - ACTIONS(7923), 1, - anon_sym_CARET, - ACTIONS(7925), 1, - anon_sym_AMP, - ACTIONS(7931), 1, - anon_sym_GT_EQ, - ACTIONS(7935), 1, anon_sym_bitor, - ACTIONS(7937), 1, anon_sym_xor, - ACTIONS(7939), 1, anon_sym_bitand, - STATE(3515), 1, - sym_argument_list, - STATE(3516), 1, - sym_subscript_argument_list, - ACTIONS(7267), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7651), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7913), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7917), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7919), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7933), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7915), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7927), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7929), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7017), 15, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - 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_GT_STAR, - [93093] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5162), 20, - 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_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, - ACTIONS(5164), 30, + sym_identifier, + sym_literal_suffix, + ACTIONS(5603), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [93151] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6586), 20, - 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_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(6588), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [93209] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6410), 20, - 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_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(6412), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [93267] = 3, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [94873] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6668), 20, + ACTIONS(5641), 19, 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_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, + anon_sym___attribute__, + anon_sym___attribute, anon_sym_or, anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(6670), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [93325] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6672), 20, - 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_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, - ACTIONS(6674), 30, + sym_identifier, + sym_literal_suffix, + ACTIONS(5643), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [93383] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7963), 1, - anon_sym_COMMA, - ACTIONS(7965), 1, - anon_sym_RBRACK, - ACTIONS(4154), 18, - 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_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4146), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_LPAREN2, 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_LT, + anon_sym_GT_GT, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [93445] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6864), 1, - anon_sym_LPAREN2, - ACTIONS(7223), 1, - anon_sym_LBRACK, - ACTIONS(7485), 1, - anon_sym_DOT_STAR, - STATE(3515), 1, - sym_argument_list, - STATE(3516), 1, - sym_subscript_argument_list, - ACTIONS(7267), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7651), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7913), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7933), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7915), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6449), 7, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_EQ, - ACTIONS(6451), 27, - anon_sym_DOT_DOT_DOT, - 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_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_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_GT_STAR, - [93523] = 3, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [94931] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6483), 20, + ACTIONS(6568), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -377318,7 +382357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6485), 30, + ACTIONS(6570), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -377349,10 +382388,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [93581] = 3, + [94989] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4972), 20, + ACTIONS(6544), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -377373,7 +382412,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4965), 30, + ACTIONS(6546), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -377404,14 +382443,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [93639] = 5, + [95047] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7943), 1, - anon_sym_AMP_AMP, - ACTIONS(7947), 1, - anon_sym_and, - ACTIONS(6178), 19, + ACTIONS(6658), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -377429,13 +382464,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT_GT_EQ, anon_sym_or, + anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6180), 29, + ACTIONS(6660), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LBRACK, @@ -377461,10 +382498,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [93701] = 3, + [95105] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6680), 20, + ACTIONS(6548), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -377485,7 +382522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6682), 30, + ACTIONS(6550), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -377516,14 +382553,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [93759] = 5, + [95163] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6230), 1, - anon_sym_COMMA, - ACTIONS(6232), 1, - anon_sym_RBRACK, - ACTIONS(4154), 18, + ACTIONS(6556), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -377533,23 +382566,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4146), 30, + ACTIONS(6558), 30, anon_sym_DOT_DOT_DOT, + 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -377558,7 +382593,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -377573,10 +382607,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [93821] = 3, + anon_sym_GT2, + [95221] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4984), 18, + ACTIONS(6710), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -377586,16 +382621,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4986), 32, + ACTIONS(6712), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -377603,8 +382640,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -377613,7 +382648,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -377628,148 +382662,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [93879] = 9, + anon_sym_GT2, + [95279] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6864), 1, - anon_sym_LPAREN2, - ACTIONS(7223), 1, - anon_sym_LBRACK, - ACTIONS(7485), 1, - anon_sym_DOT_STAR, - STATE(3515), 1, - sym_argument_list, - STATE(3516), 1, - sym_subscript_argument_list, - ACTIONS(7267), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6425), 14, + ACTIONS(5470), 19, 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_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(6427), 29, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + sym_literal_suffix, + ACTIONS(5472), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT_STAR, - [93949] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6864), 1, - anon_sym_LPAREN2, - ACTIONS(6933), 1, - anon_sym_EQ, - ACTIONS(7223), 1, - anon_sym_LBRACK, - ACTIONS(7485), 1, anon_sym_DOT_STAR, - ACTIONS(7637), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7921), 1, - anon_sym_PIPE, - ACTIONS(7923), 1, - anon_sym_CARET, - ACTIONS(7925), 1, - anon_sym_AMP, - ACTIONS(7931), 1, - anon_sym_GT_EQ, - ACTIONS(7935), 1, - anon_sym_bitor, - ACTIONS(7937), 1, - anon_sym_xor, - ACTIONS(7939), 1, - anon_sym_bitand, - STATE(3515), 1, - sym_argument_list, - STATE(3516), 1, - sym_subscript_argument_list, - ACTIONS(7267), 2, - anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7651), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7913), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7917), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7919), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7933), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7915), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7927), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7929), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6935), 15, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - 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_GT_STAR, - [94051] = 3, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [95337] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5152), 20, + ACTIONS(6602), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -377790,7 +382742,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5154), 30, + ACTIONS(6604), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -377821,65 +382773,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [94109] = 3, + [95395] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5166), 20, + ACTIONS(5477), 19, 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_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, + anon_sym___attribute__, + anon_sym___attribute, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(5168), 30, + sym_identifier, + sym_literal_suffix, + ACTIONS(5479), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [94167] = 3, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [95453] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6578), 20, + ACTIONS(5196), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -377900,7 +382852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6580), 30, + ACTIONS(5198), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -377931,10 +382883,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [94225] = 3, + [95511] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4154), 20, + ACTIONS(4174), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -377955,7 +382907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4146), 30, + ACTIONS(4166), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -377986,10 +382938,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [94283] = 3, + [95569] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4972), 20, + ACTIONS(7988), 1, + anon_sym_AMP_AMP, + ACTIONS(7990), 1, + anon_sym_and, + ACTIONS(6248), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -378007,15 +382963,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT_GT_EQ, anon_sym_or, - anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4965), 30, + ACTIONS(6250), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LBRACK, @@ -378041,10 +382995,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [94341] = 3, + [95631] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4972), 20, + ACTIONS(4991), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(4993), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -378054,25 +383011,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, - ACTIONS(4965), 30, + anon_sym_DASH_GT, + ACTIONS(4986), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -378081,80 +383036,25 @@ static const uint16_t ts_small_parse_table[] = { 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [94399] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4955), 24, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - ACTIONS(4957), 26, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [94457] = 3, + anon_sym_DASH_GT_STAR, + [95691] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4984), 24, + ACTIONS(5545), 24, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -378179,7 +383079,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_final, anon_sym_override, - ACTIONS(4986), 26, + ACTIONS(5547), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -378206,10 +383106,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [94515] = 3, + [95749] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5132), 20, + ACTIONS(6268), 1, + anon_sym_COMMA, + ACTIONS(6270), 1, + anon_sym_RBRACK, + ACTIONS(4174), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -378219,25 +383123,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5134), 30, + ACTIONS(4166), 30, anon_sym_DOT_DOT_DOT, - 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -378246,6 +383148,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -378260,66 +383163,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [94573] = 3, + [95811] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4980), 24, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - ACTIONS(4982), 26, + ACTIONS(5070), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(5072), 12, + 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_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + ACTIONS(4166), 18, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON_COLON, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [94631] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4980), 18, + anon_sym_GT2, + ACTIONS(4174), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -378329,26 +383211,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4982), 32, + [95873] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6886), 1, + anon_sym_LPAREN2, + ACTIONS(7159), 1, + anon_sym_LBRACK, + ACTIONS(7491), 1, + anon_sym_DOT_STAR, + STATE(3433), 1, + sym_argument_list, + STATE(3434), 1, + sym_subscript_argument_list, + ACTIONS(7203), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7698), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6460), 14, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(6462), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + 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_COLON, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -378360,21 +383274,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [94689] = 3, + anon_sym_DASH_GT_STAR, + [95945] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5999), 20, + ACTIONS(6576), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -378395,7 +383306,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5997), 30, + ACTIONS(6578), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -378426,10 +383337,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [94747] = 3, + [96003] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5140), 20, + ACTIONS(5188), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -378450,7 +383361,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5142), 30, + ACTIONS(5190), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -378481,10 +383392,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [94805] = 3, + [96061] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4992), 18, + ACTIONS(6690), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -378494,16 +383405,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4994), 32, + ACTIONS(6692), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -378511,8 +383424,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -378521,7 +383432,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -378536,31 +383446,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [94863] = 10, + anon_sym_GT2, + [96119] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(6864), 1, + ACTIONS(6886), 1, anon_sym_LPAREN2, - ACTIONS(7223), 1, + ACTIONS(7159), 1, anon_sym_LBRACK, - ACTIONS(7485), 1, + ACTIONS(7491), 1, anon_sym_DOT_STAR, - STATE(3515), 1, + STATE(3433), 1, sym_argument_list, - STATE(3516), 1, + STATE(3434), 1, sym_subscript_argument_list, - ACTIONS(7267), 2, + ACTIONS(7203), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7651), 2, + ACTIONS(7698), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6435), 14, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(7939), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(6518), 11, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -378570,7 +383482,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(6437), 27, + ACTIONS(6520), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -378598,26 +383510,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_GT_STAR, - [94935] = 10, + [96193] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6864), 1, + ACTIONS(6886), 1, anon_sym_LPAREN2, - ACTIONS(7223), 1, + ACTIONS(7159), 1, anon_sym_LBRACK, - ACTIONS(7485), 1, + ACTIONS(7491), 1, anon_sym_DOT_STAR, - STATE(3515), 1, + STATE(3433), 1, sym_argument_list, - STATE(3516), 1, + STATE(3434), 1, sym_subscript_argument_list, - ACTIONS(7267), 2, + ACTIONS(7203), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7651), 2, + ACTIONS(7698), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6441), 14, + ACTIONS(6518), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -378632,7 +383544,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(6443), 27, + ACTIONS(6520), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -378660,13 +383572,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_GT_STAR, - [95007] = 4, + [96265] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5003), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(5005), 16, + ACTIONS(6714), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -378676,23 +383585,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4998), 32, + ACTIONS(6716), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -378701,25 +383612,159 @@ static const uint16_t ts_small_parse_table[] = { 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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [96323] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5450), 20, + 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_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, + anon_sym_DOT, + ACTIONS(2729), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [96381] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6886), 1, + anon_sym_LPAREN2, + ACTIONS(6989), 1, + anon_sym_EQ, + ACTIONS(7159), 1, + anon_sym_LBRACK, + ACTIONS(7491), 1, + anon_sym_DOT_STAR, + ACTIONS(7618), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7662), 1, + anon_sym_QMARK, + ACTIONS(7684), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7941), 1, + anon_sym_PIPE, + ACTIONS(7943), 1, + anon_sym_CARET, + ACTIONS(7945), 1, + anon_sym_AMP, + ACTIONS(7951), 1, + anon_sym_GT_EQ, + ACTIONS(7955), 1, + anon_sym_bitor, + ACTIONS(7957), 1, + anon_sym_xor, + ACTIONS(7959), 1, + anon_sym_bitand, + STATE(3433), 1, + sym_argument_list, + STATE(3434), 1, + sym_subscript_argument_list, + ACTIONS(7203), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7698), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7937), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7953), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7961), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7973), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7939), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7947), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7949), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6991), 13, + anon_sym_COMMA, + anon_sym_RPAREN, + 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_GT_STAR, - [95067] = 3, + [96487] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4972), 20, + ACTIONS(6702), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -378740,7 +383785,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4965), 30, + ACTIONS(6704), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -378771,10 +383816,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [95125] = 3, + [96545] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4992), 24, + ACTIONS(7992), 1, + anon_sym_LBRACK, + STATE(3751), 1, + sym_new_declarator, + ACTIONS(6346), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -378786,7 +383835,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym___attribute__, anon_sym___attribute, - anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -378795,13 +383843,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - ACTIONS(4994), 26, + ACTIONS(6348), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, @@ -378817,19 +383862,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_COLON_COLON, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [95183] = 3, + [96607] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6582), 20, + ACTIONS(6650), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -378850,7 +383897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6584), 30, + ACTIONS(6652), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -378881,71 +383928,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [95241] = 25, + [96665] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6864), 1, - anon_sym_LPAREN2, - ACTIONS(6967), 1, - anon_sym_EQ, - ACTIONS(7223), 1, - anon_sym_LBRACK, - ACTIONS(7485), 1, - anon_sym_DOT_STAR, - ACTIONS(7637), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7921), 1, - anon_sym_PIPE, - ACTIONS(7923), 1, - anon_sym_CARET, - ACTIONS(7925), 1, - anon_sym_AMP, - ACTIONS(7931), 1, - anon_sym_GT_EQ, - ACTIONS(7935), 1, - anon_sym_bitor, - ACTIONS(7937), 1, - anon_sym_xor, - ACTIONS(7939), 1, - anon_sym_bitand, - STATE(3515), 1, - sym_argument_list, - STATE(3516), 1, - sym_subscript_argument_list, - ACTIONS(7267), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7651), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7913), 2, + ACTIONS(3903), 20, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7917), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7919), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7933), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7915), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7927), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7929), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6969), 15, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3899), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -378953,15 +383968,25 @@ static const uint16_t ts_small_parse_table[] = { 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_GT_STAR, - [95343] = 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [96723] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5192), 20, + ACTIONS(6662), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -378982,7 +384007,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5194), 30, + ACTIONS(6664), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -379013,10 +384038,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [95401] = 3, + [96781] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6706), 20, + ACTIONS(7988), 1, + anon_sym_AMP_AMP, + ACTIONS(7990), 1, + anon_sym_and, + ACTIONS(7994), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7996), 1, + anon_sym_or, + ACTIONS(6298), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -379033,16 +384066,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6708), 30, + ACTIONS(6300), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LBRACK, @@ -379068,46 +384097,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [95459] = 9, + [96847] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(6864), 1, + ACTIONS(6886), 1, anon_sym_LPAREN2, - ACTIONS(7223), 1, + ACTIONS(6947), 1, + anon_sym_EQ, + ACTIONS(7159), 1, anon_sym_LBRACK, - ACTIONS(7485), 1, + ACTIONS(7491), 1, anon_sym_DOT_STAR, - STATE(3515), 1, + ACTIONS(7684), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7941), 1, + anon_sym_PIPE, + ACTIONS(7943), 1, + anon_sym_CARET, + ACTIONS(7945), 1, + anon_sym_AMP, + ACTIONS(7951), 1, + anon_sym_GT_EQ, + ACTIONS(7955), 1, + anon_sym_bitor, + ACTIONS(7957), 1, + anon_sym_xor, + ACTIONS(7959), 1, + anon_sym_bitand, + STATE(3433), 1, sym_argument_list, - STATE(3516), 1, + STATE(3434), 1, sym_subscript_argument_list, - ACTIONS(7267), 2, + ACTIONS(7203), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6445), 14, + ACTIONS(7698), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7937), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7953), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7961), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7973), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7939), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7947), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7949), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(6447), 29, + ACTIONS(6949), 15, anon_sym_DOT_DOT_DOT, 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_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -379119,75 +384173,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, anon_sym_DASH_GT_STAR, - [95529] = 3, + [96949] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4951), 24, - aux_sym_preproc_elif_token1, + ACTIONS(5006), 18, 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_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - ACTIONS(4953), 26, + ACTIONS(5008), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON_COLON, - anon_sym_LBRACE, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [95587] = 3, + [97007] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4959), 24, + ACTIONS(7963), 1, + anon_sym_COLON, + ACTIONS(7965), 1, + anon_sym_LBRACE, + STATE(3972), 1, + sym__enum_base_clause, + STATE(3987), 1, + sym_enumerator_list, + STATE(4123), 1, + sym_attribute_specifier, + ACTIONS(6033), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(6316), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -379197,9 +384255,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -379210,9 +384265,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - ACTIONS(4961), 26, + ACTIONS(6318), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -379230,8 +384283,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_COLON_COLON, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -379239,10 +384290,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [95645] = 3, + [97077] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5148), 20, + ACTIONS(6437), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -379263,7 +384314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5150), 30, + ACTIONS(6439), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -379294,39 +384345,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [95703] = 7, + [97135] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6113), 1, + ACTIONS(6686), 20, + 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_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(6244), 1, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(6688), 30, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - ACTIONS(6246), 1, - anon_sym_RBRACK, - ACTIONS(6082), 13, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - ACTIONS(4146), 17, - anon_sym_DOT_DOT_DOT, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, @@ -379335,7 +384399,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(4154), 17, + anon_sym_GT2, + [97193] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6682), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -379345,130 +384413,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - [95769] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4988), 24, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - ACTIONS(4990), 26, + ACTIONS(6684), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON_COLON, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [95827] = 3, + anon_sym_GT2, + [97251] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5478), 19, + ACTIONS(6630), 20, 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_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - sym_literal_suffix, - ACTIONS(5480), 31, + ACTIONS(6632), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [95885] = 5, + anon_sym_GT2, + [97309] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6113), 1, + ACTIONS(4200), 1, anon_sym_EQ, - ACTIONS(6082), 13, + ACTIONS(4304), 1, + anon_sym_SEMI, + ACTIONS(5044), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6008), 1, + anon_sym_LPAREN2, + ACTIONS(6011), 1, + anon_sym_LBRACK, + ACTIONS(4202), 13, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -379482,7 +384537,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - ACTIONS(4154), 17, + ACTIONS(4166), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(4174), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -379500,30 +384571,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4146), 19, - anon_sym_DOT_DOT_DOT, - 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_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [95947] = 3, + [97379] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6622), 20, + ACTIONS(5170), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -379544,7 +384595,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6624), 30, + ACTIONS(5172), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -379575,10 +384626,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [96005] = 3, + [97437] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4972), 20, + ACTIONS(6678), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -379599,7 +384650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4965), 30, + ACTIONS(6680), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -379630,121 +384681,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [96063] = 4, + [97495] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5454), 1, - anon_sym_COLON_COLON, - ACTIONS(5625), 24, - aux_sym_preproc_elif_token1, + ACTIONS(5010), 18, 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_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - ACTIONS(5627), 25, + ACTIONS(5012), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACE, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [96123] = 3, + [97553] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5577), 19, + ACTIONS(6178), 1, + anon_sym_EQ, + ACTIONS(6128), 13, + 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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + ACTIONS(4174), 17, 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_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - sym_literal_suffix, - ACTIONS(5579), 31, + ACTIONS(4166), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [96181] = 3, + [97615] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6714), 20, + ACTIONS(4998), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -379754,18 +384806,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6716), 30, + ACTIONS(5000), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -379773,6 +384823,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -379781,6 +384833,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -379795,11 +384848,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [96239] = 3, + [97673] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5170), 20, + ACTIONS(5014), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -379809,18 +384861,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5172), 30, + ACTIONS(5016), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -379828,6 +384878,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -379836,6 +384888,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -379850,11 +384903,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [96297] = 3, + [97731] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6606), 20, + ACTIONS(5200), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -379875,7 +384927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6608), 30, + ACTIONS(5202), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -379906,10 +384958,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [96355] = 3, + [97789] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(6610), 20, + ACTIONS(4187), 1, + anon_sym_COLON_COLON, + ACTIONS(5044), 1, + anon_sym_SEMI, + ACTIONS(6580), 1, + anon_sym_LT, + ACTIONS(7043), 1, + anon_sym_LBRACK, + STATE(2660), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3998), 1, + sym_template_argument_list, + ACTIONS(4189), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(4172), 3, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(4194), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4164), 35, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [97863] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6670), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -379930,7 +385045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6612), 30, + ACTIONS(6672), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -379961,10 +385076,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [96413] = 3, + [97921] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5188), 20, + ACTIONS(6674), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -379985,7 +385100,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5190), 30, + ACTIONS(6676), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -380016,10 +385131,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [96471] = 3, + [97979] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6562), 20, + ACTIONS(5140), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -380040,7 +385155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6564), 30, + ACTIONS(5142), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -380071,10 +385186,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [96529] = 3, + [98037] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6544), 20, + ACTIONS(5192), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -380095,7 +385210,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6546), 30, + ACTIONS(5194), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -380126,39 +385241,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [96587] = 3, + [98095] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4955), 18, + ACTIONS(6886), 1, + anon_sym_LPAREN2, + ACTIONS(6985), 1, + anon_sym_EQ, + ACTIONS(7159), 1, + anon_sym_LBRACK, + ACTIONS(7491), 1, + anon_sym_DOT_STAR, + ACTIONS(7684), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7941), 1, + anon_sym_PIPE, + ACTIONS(7943), 1, + anon_sym_CARET, + ACTIONS(7945), 1, + anon_sym_AMP, + ACTIONS(7951), 1, + anon_sym_GT_EQ, + ACTIONS(7955), 1, + anon_sym_bitor, + ACTIONS(7957), 1, + anon_sym_xor, + ACTIONS(7959), 1, + anon_sym_bitand, + STATE(3433), 1, + sym_argument_list, + STATE(3434), 1, + sym_subscript_argument_list, + ACTIONS(7203), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7698), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7937), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7953), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7961), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7973), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7939), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7947), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7949), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4957), 32, + ACTIONS(6987), 15, anon_sym_DOT_DOT_DOT, 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_COLON, - anon_sym_LBRACK, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -380170,249 +385317,175 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [96645] = 9, + anon_sym_DASH_GT_STAR, + [98197] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4180), 1, - anon_sym_EQ, - ACTIONS(4290), 1, - anon_sym_SEMI, - ACTIONS(5036), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5946), 1, - anon_sym_LPAREN2, - ACTIONS(5949), 1, - anon_sym_LBRACK, - ACTIONS(4182), 13, - 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - ACTIONS(4146), 15, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(4154), 17, + ACTIONS(4998), 24, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - [96715] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7147), 1, - anon_sym___attribute__, - STATE(2468), 1, - sym_attribute_specifier, - ACTIONS(6117), 5, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(6119), 42, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_static, - anon_sym_EQ, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, + sym_identifier, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [96779] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4180), 1, - anon_sym_EQ, - ACTIONS(4290), 1, - anon_sym_SEMI, - ACTIONS(4182), 13, - 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - ACTIONS(4146), 17, + ACTIONS(5000), 26, anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(4154), 17, + [98255] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4187), 1, + anon_sym_COLON_COLON, + ACTIONS(7797), 1, + anon_sym_LT, + STATE(1863), 1, + sym_template_argument_list, + ACTIONS(5834), 10, 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_EQ, - anon_sym_LT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(4192), 36, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, - anon_sym_DOT, - [96842] = 26, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + [98318] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1816), 1, + ACTIONS(7998), 1, + sym_identifier, + ACTIONS(8000), 1, + anon_sym_COLON_COLON, + ACTIONS(8004), 1, + sym_primitive_type, + ACTIONS(8006), 1, anon_sym_enum, - ACTIONS(1818), 1, + ACTIONS(8008), 1, anon_sym_class, - ACTIONS(1820), 1, + ACTIONS(8010), 1, anon_sym_struct, - ACTIONS(1822), 1, + ACTIONS(8012), 1, anon_sym_union, - ACTIONS(1846), 1, + ACTIONS(8014), 1, sym_auto, - ACTIONS(1848), 1, + ACTIONS(8016), 1, anon_sym_decltype, - ACTIONS(1850), 1, + ACTIONS(8018), 1, anon_sym_typename, - ACTIONS(7955), 1, - sym_identifier, - ACTIONS(7959), 1, - anon_sym_COLON_COLON, - ACTIONS(7961), 1, - sym_primitive_type, - STATE(1658), 1, + STATE(1680), 1, sym_alignas_qualifier, - STATE(1859), 1, - sym_decltype_auto, - STATE(1902), 1, - sym_qualified_type_identifier, - STATE(4209), 1, + STATE(4150), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4455), 1, + STATE(4310), 1, sym_type_specifier, - STATE(6587), 1, - sym__scope_resolution, - STATE(7989), 1, + STATE(4975), 1, + sym_qualified_type_identifier, + STATE(4979), 1, + sym_decltype_auto, + STATE(6137), 1, sym_type_descriptor, - STATE(8601), 1, + STATE(6731), 1, + sym__scope_resolution, + STATE(8569), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1713), 2, - sym_decltype, - sym_template_type, - STATE(3904), 2, + STATE(3960), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1810), 4, + STATE(4943), 2, + sym_decltype, + sym_template_type, + ACTIONS(8002), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1879), 7, + STATE(4980), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -380434,118 +385507,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [96945] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5007), 1, - anon_sym_LBRACK, - ACTIONS(5000), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(5003), 5, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - ACTIONS(4996), 41, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [97006] = 26, + [98421] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1816), 1, + ACTIONS(1814), 1, anon_sym_enum, - ACTIONS(1818), 1, + ACTIONS(1816), 1, anon_sym_class, - ACTIONS(1820), 1, + ACTIONS(1818), 1, anon_sym_struct, - ACTIONS(1822), 1, + ACTIONS(1820), 1, anon_sym_union, - ACTIONS(1846), 1, + ACTIONS(1844), 1, sym_auto, - ACTIONS(1848), 1, + ACTIONS(1846), 1, anon_sym_decltype, - ACTIONS(1850), 1, + ACTIONS(1848), 1, anon_sym_typename, - ACTIONS(7955), 1, + ACTIONS(7980), 1, sym_identifier, - ACTIONS(7959), 1, + ACTIONS(7984), 1, anon_sym_COLON_COLON, - ACTIONS(7961), 1, + ACTIONS(7986), 1, sym_primitive_type, - STATE(1658), 1, + STATE(1680), 1, sym_alignas_qualifier, - STATE(1859), 1, + STATE(1888), 1, sym_decltype_auto, - STATE(1902), 1, + STATE(1916), 1, sym_qualified_type_identifier, - STATE(4209), 1, + STATE(4234), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4455), 1, + STATE(4528), 1, sym_type_specifier, - STATE(6587), 1, + STATE(6727), 1, sym__scope_resolution, - STATE(8062), 1, + STATE(8320), 1, sym_type_descriptor, - STATE(8601), 1, + STATE(8569), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1713), 2, + STATE(1782), 2, sym_decltype, sym_template_type, - STATE(3904), 2, + STATE(3891), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1810), 4, + ACTIONS(1808), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1879), 7, + STATE(1890), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -380567,62 +385584,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [97109] = 26, + [98524] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(125), 1, - sym_auto, - ACTIONS(127), 1, - anon_sym_decltype, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(3911), 1, - sym_primitive_type, - ACTIONS(7968), 1, + ACTIONS(6674), 19, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, sym_identifier, - ACTIONS(7970), 1, - anon_sym_COLON_COLON, - ACTIONS(7972), 1, + ACTIONS(6676), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_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_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [98581] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1814), 1, anon_sym_enum, - ACTIONS(7974), 1, + ACTIONS(1816), 1, anon_sym_class, - ACTIONS(7976), 1, + ACTIONS(1818), 1, anon_sym_struct, - ACTIONS(7978), 1, + ACTIONS(1820), 1, anon_sym_union, - ACTIONS(7980), 1, + ACTIONS(1844), 1, + sym_auto, + ACTIONS(1846), 1, + anon_sym_decltype, + ACTIONS(1848), 1, anon_sym_typename, - STATE(1658), 1, + ACTIONS(7980), 1, + sym_identifier, + ACTIONS(7984), 1, + anon_sym_COLON_COLON, + ACTIONS(7986), 1, + sym_primitive_type, + STATE(1680), 1, sym_alignas_qualifier, - STATE(2501), 1, + STATE(1888), 1, sym_decltype_auto, - STATE(2674), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2809), 1, + STATE(1916), 1, sym_qualified_type_identifier, - STATE(3983), 1, + STATE(4234), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4528), 1, sym_type_specifier, - STATE(5862), 1, + STATE(5901), 1, sym_type_descriptor, - STATE(6630), 1, + STATE(6727), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(8569), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2406), 2, + STATE(1782), 2, sym_decltype, sym_template_type, - STATE(3876), 2, + STATE(3891), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3909), 4, + ACTIONS(1808), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2523), 7, + STATE(1890), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -380644,116 +385715,290 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [97212] = 3, + [98684] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6710), 19, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(6712), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_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_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [98741] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5845), 1, + anon_sym_LPAREN2, + ACTIONS(6414), 1, + anon_sym_LBRACK, + ACTIONS(6418), 1, + anon_sym_DOT, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + ACTIONS(6420), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6514), 18, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + sym_identifier, + ACTIONS(6516), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_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_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [98810] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6487), 16, + ACTIONS(5541), 23, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6489), 33, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + ACTIONS(5543), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_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_LT, + anon_sym_GT_GT, + anon_sym_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [98867] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5845), 1, + anon_sym_LPAREN2, + ACTIONS(6414), 1, + anon_sym_LBRACK, + ACTIONS(6418), 1, + anon_sym_DOT, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + ACTIONS(6420), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6433), 18, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + sym_identifier, + ACTIONS(6435), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_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_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [97269] = 26, + [98936] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1816), 1, + ACTIONS(3146), 1, anon_sym_enum, - ACTIONS(1818), 1, + ACTIONS(3148), 1, anon_sym_class, - ACTIONS(1820), 1, + ACTIONS(3150), 1, anon_sym_struct, - ACTIONS(1822), 1, + ACTIONS(3152), 1, anon_sym_union, - ACTIONS(1846), 1, + ACTIONS(3176), 1, sym_auto, - ACTIONS(1848), 1, + ACTIONS(3178), 1, anon_sym_decltype, - ACTIONS(1850), 1, + ACTIONS(3180), 1, anon_sym_typename, - ACTIONS(7955), 1, + ACTIONS(8020), 1, sym_identifier, - ACTIONS(7959), 1, + ACTIONS(8022), 1, anon_sym_COLON_COLON, - ACTIONS(7961), 1, + ACTIONS(8024), 1, sym_primitive_type, - STATE(1658), 1, + STATE(1680), 1, sym_alignas_qualifier, - STATE(1859), 1, - sym_decltype_auto, - STATE(1902), 1, + STATE(2685), 1, sym_qualified_type_identifier, - STATE(4209), 1, + STATE(2733), 1, + sym_decltype_auto, + STATE(4313), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4455), 1, + STATE(4378), 1, sym_type_specifier, - STATE(6587), 1, + STATE(6137), 1, + sym_type_descriptor, + STATE(6738), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(8569), 1, sym_dependent_type_identifier, - STATE(8736), 1, - sym_type_descriptor, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1713), 2, + STATE(2621), 2, sym_decltype, sym_template_type, - STATE(3904), 2, + STATE(3876), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1810), 4, + ACTIONS(3142), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1879), 7, + STATE(2747), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -380775,62 +386020,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [97372] = 26, + [99039] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1816), 1, + ACTIONS(1814), 1, anon_sym_enum, - ACTIONS(1818), 1, + ACTIONS(1816), 1, anon_sym_class, - ACTIONS(1820), 1, + ACTIONS(1818), 1, anon_sym_struct, - ACTIONS(1822), 1, + ACTIONS(1820), 1, anon_sym_union, - ACTIONS(1846), 1, + ACTIONS(1844), 1, sym_auto, - ACTIONS(1848), 1, + ACTIONS(1846), 1, anon_sym_decltype, - ACTIONS(1850), 1, + ACTIONS(1848), 1, anon_sym_typename, - ACTIONS(7955), 1, + ACTIONS(7980), 1, sym_identifier, - ACTIONS(7959), 1, + ACTIONS(7984), 1, anon_sym_COLON_COLON, - ACTIONS(7961), 1, + ACTIONS(7986), 1, sym_primitive_type, - STATE(1658), 1, + STATE(1680), 1, sym_alignas_qualifier, - STATE(1859), 1, + STATE(1888), 1, sym_decltype_auto, - STATE(1902), 1, + STATE(1916), 1, sym_qualified_type_identifier, - STATE(4209), 1, + STATE(4234), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4215), 1, + STATE(4528), 1, sym_type_specifier, - STATE(5988), 1, - sym_type_descriptor, - STATE(6587), 1, + STATE(6727), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(8569), 1, sym_dependent_type_identifier, + STATE(8637), 1, + sym_type_descriptor, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1713), 2, + STATE(1782), 2, sym_decltype, sym_template_type, - STATE(3894), 2, + STATE(3891), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1810), 4, + ACTIONS(1808), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1879), 7, + STATE(1890), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -380852,62 +386097,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [97475] = 26, + [99142] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1816), 1, + ACTIONS(1814), 1, anon_sym_enum, - ACTIONS(1818), 1, + ACTIONS(1816), 1, anon_sym_class, - ACTIONS(1820), 1, + ACTIONS(1818), 1, anon_sym_struct, - ACTIONS(1822), 1, + ACTIONS(1820), 1, anon_sym_union, - ACTIONS(1846), 1, + ACTIONS(1844), 1, sym_auto, - ACTIONS(1848), 1, + ACTIONS(1846), 1, anon_sym_decltype, - ACTIONS(1850), 1, + ACTIONS(1848), 1, anon_sym_typename, - ACTIONS(7955), 1, + ACTIONS(7980), 1, sym_identifier, - ACTIONS(7959), 1, + ACTIONS(7984), 1, anon_sym_COLON_COLON, - ACTIONS(7961), 1, + ACTIONS(7986), 1, sym_primitive_type, - STATE(1658), 1, + STATE(1680), 1, sym_alignas_qualifier, - STATE(1859), 1, + STATE(1888), 1, sym_decltype_auto, - STATE(1902), 1, + STATE(1916), 1, sym_qualified_type_identifier, - STATE(4209), 1, + STATE(4234), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4455), 1, + STATE(4273), 1, sym_type_specifier, - STATE(6587), 1, - sym__scope_resolution, - STATE(8082), 1, + STATE(6137), 1, sym_type_descriptor, - STATE(8601), 1, + STATE(6727), 1, + sym__scope_resolution, + STATE(8569), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1713), 2, + STATE(1782), 2, sym_decltype, sym_template_type, - STATE(3904), 2, + STATE(3900), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1810), 4, + ACTIONS(1808), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1879), 7, + STATE(1890), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -380929,62 +386174,172 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [97578] = 26, + [99245] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6498), 19, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(6500), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_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_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [99302] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3479), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7908), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5515), 19, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5517), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [99363] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1816), 1, + ACTIONS(8026), 1, + sym_identifier, + ACTIONS(8028), 1, + anon_sym_COLON_COLON, + ACTIONS(8032), 1, + sym_primitive_type, + ACTIONS(8034), 1, anon_sym_enum, - ACTIONS(1818), 1, + ACTIONS(8036), 1, anon_sym_class, - ACTIONS(1820), 1, + ACTIONS(8038), 1, anon_sym_struct, - ACTIONS(1822), 1, + ACTIONS(8040), 1, anon_sym_union, - ACTIONS(1846), 1, + ACTIONS(8042), 1, sym_auto, - ACTIONS(1848), 1, + ACTIONS(8044), 1, anon_sym_decltype, - ACTIONS(1850), 1, + ACTIONS(8046), 1, anon_sym_typename, - ACTIONS(7955), 1, - sym_identifier, - ACTIONS(7959), 1, - anon_sym_COLON_COLON, - ACTIONS(7961), 1, - sym_primitive_type, - STATE(1658), 1, + STATE(1680), 1, sym_alignas_qualifier, - STATE(1859), 1, - sym_decltype_auto, - STATE(1902), 1, + STATE(2836), 1, sym_qualified_type_identifier, - STATE(4209), 1, + STATE(4024), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4455), 1, + STATE(4033), 1, sym_type_specifier, - STATE(6587), 1, - sym__scope_resolution, - STATE(8115), 1, + STATE(4672), 1, + sym_decltype_auto, + STATE(5901), 1, sym_type_descriptor, - STATE(8601), 1, + STATE(6719), 1, + sym__scope_resolution, + STATE(8569), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1713), 2, + STATE(2439), 2, sym_decltype, sym_template_type, - STATE(3904), 2, + STATE(3901), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1810), 4, + ACTIONS(8030), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1879), 7, + STATE(4773), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -381006,62 +386361,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [97681] = 26, + [99466] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6498), 16, + 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_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6500), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [99523] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1816), 1, + ACTIONS(8026), 1, + sym_identifier, + ACTIONS(8028), 1, + anon_sym_COLON_COLON, + ACTIONS(8032), 1, + sym_primitive_type, + ACTIONS(8034), 1, anon_sym_enum, - ACTIONS(1818), 1, + ACTIONS(8036), 1, anon_sym_class, - ACTIONS(1820), 1, + ACTIONS(8038), 1, anon_sym_struct, - ACTIONS(1822), 1, + ACTIONS(8040), 1, anon_sym_union, - ACTIONS(1846), 1, + ACTIONS(8042), 1, sym_auto, - ACTIONS(1848), 1, + ACTIONS(8044), 1, anon_sym_decltype, - ACTIONS(1850), 1, + ACTIONS(8046), 1, anon_sym_typename, - ACTIONS(7955), 1, - sym_identifier, - ACTIONS(7959), 1, - anon_sym_COLON_COLON, - ACTIONS(7961), 1, - sym_primitive_type, - STATE(1658), 1, + STATE(1680), 1, sym_alignas_qualifier, - STATE(1859), 1, - sym_decltype_auto, - STATE(1902), 1, + STATE(2836), 1, sym_qualified_type_identifier, - STATE(4209), 1, + STATE(4024), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4455), 1, + STATE(4028), 1, sym_type_specifier, - STATE(6587), 1, - sym__scope_resolution, - STATE(7958), 1, + STATE(4672), 1, + sym_decltype_auto, + STATE(5901), 1, sym_type_descriptor, - STATE(8601), 1, + STATE(6719), 1, + sym__scope_resolution, + STATE(8569), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1713), 2, + STATE(2439), 2, sym_decltype, sym_template_type, - STATE(3904), 2, + STATE(3928), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1810), 4, + ACTIONS(8030), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1879), 7, + STATE(4773), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -381083,135 +386492,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [97784] = 22, + [99626] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(5859), 1, - anon_sym___attribute, - ACTIONS(7842), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(7850), 1, - sym_ms_restrict_modifier, - ACTIONS(7856), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(7982), 1, - anon_sym_STAR, - ACTIONS(7984), 1, - anon_sym_AMP_AMP, - ACTIONS(7986), 1, + ACTIONS(6418), 1, + anon_sym_DOT, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + ACTIONS(6420), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8048), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6518), 18, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - STATE(1658), 1, - sym_alignas_qualifier, - STATE(3007), 1, - sym_parameter_list, - STATE(3761), 1, - sym_ms_unaligned_ptr_modifier, - STATE(5792), 1, - sym__function_declarator_seq, - STATE(6176), 1, - sym__abstract_declarator, - ACTIONS(7152), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(7852), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(7854), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3707), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4223), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5804), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5851), 9, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + sym_identifier, + ACTIONS(6520), 22, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - ACTIONS(7145), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [97879] = 26, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + 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_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + [99697] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1846), 1, - sym_auto, - ACTIONS(1848), 1, - anon_sym_decltype, - ACTIONS(7988), 1, - sym_identifier, - ACTIONS(7990), 1, - anon_sym_COLON_COLON, - ACTIONS(7994), 1, - sym_primitive_type, - ACTIONS(7996), 1, + ACTIONS(1814), 1, anon_sym_enum, - ACTIONS(7998), 1, + ACTIONS(1816), 1, anon_sym_class, - ACTIONS(8000), 1, + ACTIONS(1818), 1, anon_sym_struct, - ACTIONS(8002), 1, + ACTIONS(1820), 1, anon_sym_union, - ACTIONS(8004), 1, + ACTIONS(1844), 1, + sym_auto, + ACTIONS(1846), 1, + anon_sym_decltype, + ACTIONS(1848), 1, anon_sym_typename, - STATE(1658), 1, + ACTIONS(7980), 1, + sym_identifier, + ACTIONS(7984), 1, + anon_sym_COLON_COLON, + ACTIONS(7986), 1, + sym_primitive_type, + STATE(1680), 1, sym_alignas_qualifier, - STATE(1859), 1, + STATE(1888), 1, sym_decltype_auto, - STATE(2809), 1, + STATE(1916), 1, sym_qualified_type_identifier, - STATE(4882), 1, + STATE(4234), 1, aux_sym_sized_type_specifier_repeat1, - STATE(5002), 1, + STATE(4503), 1, sym_type_specifier, - STATE(5744), 1, - sym__type_definition_type, - STATE(6593), 1, + STATE(6137), 1, + sym_type_descriptor, + STATE(6727), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(8569), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1713), 2, + STATE(1782), 2, sym_decltype, sym_template_type, - STATE(3924), 2, + STATE(3963), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7992), 4, + ACTIONS(1808), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1879), 7, + STATE(1890), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -381233,43 +386630,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [97982] = 5, + [99800] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5454), 1, - anon_sym_COLON_COLON, - ACTIONS(5627), 1, - anon_sym_SEMI, - ACTIONS(5452), 5, + ACTIONS(8052), 11, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(5450), 42, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(8050), 38, anon_sym_AMP, anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, - anon_sym___declspec, anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + 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_LBRACK, - anon_sym_static, - 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, @@ -381284,145 +386675,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, + sym_primitive_type, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [98043] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(5867), 1, - anon_sym___attribute, - ACTIONS(7842), 1, - anon_sym_LPAREN2, - ACTIONS(7850), 1, - sym_ms_restrict_modifier, - ACTIONS(7856), 1, - anon_sym_LBRACK, - ACTIONS(7982), 1, - anon_sym_STAR, - ACTIONS(7984), 1, - anon_sym_AMP_AMP, - ACTIONS(7986), 1, - anon_sym_AMP, - STATE(1658), 1, - sym_alignas_qualifier, - STATE(3007), 1, - sym_parameter_list, - STATE(3761), 1, - sym_ms_unaligned_ptr_modifier, - STATE(5792), 1, - sym__function_declarator_seq, - STATE(6262), 1, - sym__abstract_declarator, - ACTIONS(7152), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(7852), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(7854), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3283), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4225), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5804), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5865), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, anon_sym_final, anon_sym_override, - anon_sym_GT2, + anon_sym_try, anon_sym_requires, - ACTIONS(7145), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [98138] = 6, + [99857] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4167), 1, - anon_sym_COLON_COLON, - ACTIONS(8006), 1, - anon_sym_LT, - STATE(1844), 1, - sym_template_argument_list, - ACTIONS(4963), 10, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(4970), 36, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5845), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(6414), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(6418), 1, + anon_sym_DOT, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - [98201] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5489), 18, + ACTIONS(8048), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6460), 18, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -381439,12 +386721,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, - sym_literal_suffix, - ACTIONS(5491), 31, + sym_identifier, + ACTIONS(6462), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -381456,79 +386741,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [98258] = 26, + [99928] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8056), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(8054), 38, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + 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_LBRACK, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [99985] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1816), 1, + ACTIONS(8026), 1, + sym_identifier, + ACTIONS(8028), 1, + anon_sym_COLON_COLON, + ACTIONS(8032), 1, + sym_primitive_type, + ACTIONS(8034), 1, anon_sym_enum, - ACTIONS(1818), 1, + ACTIONS(8036), 1, anon_sym_class, - ACTIONS(1820), 1, + ACTIONS(8038), 1, anon_sym_struct, - ACTIONS(1822), 1, + ACTIONS(8040), 1, anon_sym_union, - ACTIONS(1846), 1, + ACTIONS(8042), 1, sym_auto, - ACTIONS(1848), 1, + ACTIONS(8044), 1, anon_sym_decltype, - ACTIONS(1850), 1, + ACTIONS(8046), 1, anon_sym_typename, - ACTIONS(7955), 1, - sym_identifier, - ACTIONS(7959), 1, - anon_sym_COLON_COLON, - ACTIONS(7961), 1, - sym_primitive_type, - STATE(1658), 1, + STATE(1680), 1, sym_alignas_qualifier, - STATE(1859), 1, - sym_decltype_auto, - STATE(1902), 1, + STATE(2836), 1, sym_qualified_type_identifier, - STATE(4209), 1, + STATE(4024), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4235), 1, + STATE(4218), 1, sym_type_specifier, - STATE(5988), 1, + STATE(4672), 1, + sym_decltype_auto, + STATE(5901), 1, sym_type_descriptor, - STATE(6587), 1, + STATE(6719), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(8569), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1713), 2, + STATE(2439), 2, sym_decltype, sym_template_type, - STATE(3886), 2, + STATE(3969), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1810), 4, + ACTIONS(8030), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1879), 7, + STATE(4773), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -381550,62 +386876,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [98361] = 26, + [100088] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1846), 1, - sym_auto, - ACTIONS(1848), 1, - anon_sym_decltype, - ACTIONS(7988), 1, - sym_identifier, - ACTIONS(7990), 1, - anon_sym_COLON_COLON, - ACTIONS(7994), 1, - sym_primitive_type, - ACTIONS(7996), 1, + ACTIONS(1814), 1, anon_sym_enum, - ACTIONS(7998), 1, + ACTIONS(1816), 1, anon_sym_class, - ACTIONS(8000), 1, + ACTIONS(1818), 1, anon_sym_struct, - ACTIONS(8002), 1, + ACTIONS(1820), 1, anon_sym_union, - ACTIONS(8004), 1, + ACTIONS(1844), 1, + sym_auto, + ACTIONS(1846), 1, + anon_sym_decltype, + ACTIONS(1848), 1, anon_sym_typename, - STATE(1658), 1, + ACTIONS(7980), 1, + sym_identifier, + ACTIONS(7984), 1, + anon_sym_COLON_COLON, + ACTIONS(7986), 1, + sym_primitive_type, + STATE(1680), 1, sym_alignas_qualifier, - STATE(1859), 1, + STATE(1888), 1, sym_decltype_auto, - STATE(2809), 1, + STATE(1916), 1, sym_qualified_type_identifier, - STATE(4882), 1, + STATE(4234), 1, aux_sym_sized_type_specifier_repeat1, - STATE(5002), 1, + STATE(4932), 1, sym_type_specifier, - STATE(5694), 1, - sym__type_definition_type, - STATE(6593), 1, + STATE(6727), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(8355), 1, + sym_type_descriptor, + STATE(8569), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1713), 2, + STATE(1782), 2, sym_decltype, sym_template_type, - STATE(3924), 2, + STATE(3923), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7992), 4, + ACTIONS(1808), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1879), 7, + STATE(1890), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -381627,116 +386953,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [98464] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5442), 19, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(2685), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_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_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [98521] = 26, + [100191] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1846), 1, + ACTIONS(1814), 1, + anon_sym_enum, + ACTIONS(1816), 1, + anon_sym_class, + ACTIONS(1818), 1, + anon_sym_struct, + ACTIONS(1820), 1, + anon_sym_union, + ACTIONS(1844), 1, sym_auto, - ACTIONS(1848), 1, + ACTIONS(1846), 1, anon_sym_decltype, - ACTIONS(7988), 1, + ACTIONS(1848), 1, + anon_sym_typename, + ACTIONS(7980), 1, sym_identifier, - ACTIONS(7990), 1, + ACTIONS(7984), 1, anon_sym_COLON_COLON, - ACTIONS(7994), 1, + ACTIONS(7986), 1, sym_primitive_type, - ACTIONS(7996), 1, + STATE(1680), 1, + sym_alignas_qualifier, + STATE(1888), 1, + sym_decltype_auto, + STATE(1916), 1, + sym_qualified_type_identifier, + STATE(4234), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4528), 1, + sym_type_specifier, + STATE(6727), 1, + sym__scope_resolution, + STATE(8569), 1, + sym_dependent_type_identifier, + STATE(8801), 1, + sym_type_descriptor, + ACTIONS(69), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1782), 2, + sym_decltype, + sym_template_type, + STATE(3891), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(1808), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1890), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [100294] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1814), 1, anon_sym_enum, - ACTIONS(7998), 1, + ACTIONS(1816), 1, anon_sym_class, - ACTIONS(8000), 1, + ACTIONS(1818), 1, anon_sym_struct, - ACTIONS(8002), 1, + ACTIONS(1820), 1, anon_sym_union, - ACTIONS(8004), 1, + ACTIONS(1844), 1, + sym_auto, + ACTIONS(1846), 1, + anon_sym_decltype, + ACTIONS(1848), 1, anon_sym_typename, - STATE(1658), 1, + ACTIONS(7980), 1, + sym_identifier, + ACTIONS(7984), 1, + anon_sym_COLON_COLON, + ACTIONS(7986), 1, + sym_primitive_type, + STATE(1680), 1, sym_alignas_qualifier, - STATE(1859), 1, + STATE(1888), 1, sym_decltype_auto, - STATE(2809), 1, + STATE(1916), 1, sym_qualified_type_identifier, - STATE(4882), 1, + STATE(4234), 1, aux_sym_sized_type_specifier_repeat1, - STATE(5002), 1, + STATE(4899), 1, sym_type_specifier, - STATE(5696), 1, - sym__type_definition_type, - STATE(6593), 1, + STATE(5901), 1, + sym_type_descriptor, + STATE(6727), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(8569), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1713), 2, + STATE(1782), 2, sym_decltype, sym_template_type, - STATE(3924), 2, + STATE(3860), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7992), 4, + ACTIONS(1808), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1879), 7, + STATE(1890), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -381758,117 +387107,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [98624] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7705), 1, - sym_literal_suffix, - ACTIONS(4154), 22, - 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_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4146), 26, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [98683] = 26, + [100397] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1816), 1, + ACTIONS(1814), 1, anon_sym_enum, - ACTIONS(1818), 1, + ACTIONS(1816), 1, anon_sym_class, - ACTIONS(1820), 1, + ACTIONS(1818), 1, anon_sym_struct, - ACTIONS(1822), 1, + ACTIONS(1820), 1, anon_sym_union, - ACTIONS(1846), 1, + ACTIONS(1844), 1, sym_auto, - ACTIONS(1848), 1, + ACTIONS(1846), 1, anon_sym_decltype, - ACTIONS(1850), 1, + ACTIONS(1848), 1, anon_sym_typename, - ACTIONS(7955), 1, + ACTIONS(7980), 1, sym_identifier, - ACTIONS(7959), 1, + ACTIONS(7984), 1, anon_sym_COLON_COLON, - ACTIONS(7961), 1, + ACTIONS(7986), 1, sym_primitive_type, - STATE(1658), 1, + STATE(1680), 1, sym_alignas_qualifier, - STATE(1859), 1, + STATE(1888), 1, sym_decltype_auto, - STATE(1902), 1, + STATE(1916), 1, sym_qualified_type_identifier, - STATE(4209), 1, + STATE(4234), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4455), 1, + STATE(4528), 1, sym_type_specifier, - STATE(6587), 1, + STATE(6727), 1, sym__scope_resolution, - STATE(8435), 1, + STATE(8098), 1, sym_type_descriptor, - STATE(8601), 1, + STATE(8569), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1713), 2, + STATE(1782), 2, sym_decltype, sym_template_type, - STATE(3904), 2, + STATE(3891), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1810), 4, + ACTIONS(1808), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1879), 7, + STATE(1890), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -381890,62 +387184,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [98786] = 26, + [100500] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1846), 1, - sym_auto, - ACTIONS(1848), 1, - anon_sym_decltype, - ACTIONS(7988), 1, - sym_identifier, - ACTIONS(7990), 1, - anon_sym_COLON_COLON, - ACTIONS(7994), 1, - sym_primitive_type, - ACTIONS(7996), 1, + ACTIONS(1814), 1, anon_sym_enum, - ACTIONS(7998), 1, + ACTIONS(1816), 1, anon_sym_class, - ACTIONS(8000), 1, + ACTIONS(1818), 1, anon_sym_struct, - ACTIONS(8002), 1, + ACTIONS(1820), 1, anon_sym_union, - ACTIONS(8004), 1, + ACTIONS(1844), 1, + sym_auto, + ACTIONS(1846), 1, + anon_sym_decltype, + ACTIONS(1848), 1, anon_sym_typename, - STATE(1658), 1, + ACTIONS(7980), 1, + sym_identifier, + ACTIONS(7984), 1, + anon_sym_COLON_COLON, + ACTIONS(7986), 1, + sym_primitive_type, + STATE(1680), 1, sym_alignas_qualifier, - STATE(1859), 1, + STATE(1888), 1, sym_decltype_auto, - STATE(2809), 1, + STATE(1916), 1, sym_qualified_type_identifier, - STATE(4882), 1, + STATE(4234), 1, aux_sym_sized_type_specifier_repeat1, - STATE(5002), 1, + STATE(4528), 1, sym_type_specifier, - STATE(5791), 1, - sym__type_definition_type, - STATE(6593), 1, + STATE(6727), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(8346), 1, + sym_type_descriptor, + STATE(8569), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1713), 2, + STATE(1782), 2, sym_decltype, sym_template_type, - STATE(3924), 2, + STATE(3891), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7992), 4, + ACTIONS(1808), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1879), 7, + STATE(1890), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -381967,62 +387261,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [98889] = 26, + [100603] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1846), 1, - sym_auto, - ACTIONS(1848), 1, - anon_sym_decltype, - ACTIONS(7988), 1, - sym_identifier, - ACTIONS(7990), 1, - anon_sym_COLON_COLON, - ACTIONS(7994), 1, - sym_primitive_type, - ACTIONS(7996), 1, + ACTIONS(1814), 1, anon_sym_enum, - ACTIONS(7998), 1, + ACTIONS(1816), 1, anon_sym_class, - ACTIONS(8000), 1, + ACTIONS(1818), 1, anon_sym_struct, - ACTIONS(8002), 1, + ACTIONS(1820), 1, anon_sym_union, - ACTIONS(8004), 1, + ACTIONS(1844), 1, + sym_auto, + ACTIONS(1846), 1, + anon_sym_decltype, + ACTIONS(1848), 1, anon_sym_typename, - STATE(1658), 1, + ACTIONS(7980), 1, + sym_identifier, + ACTIONS(7984), 1, + anon_sym_COLON_COLON, + ACTIONS(7986), 1, + sym_primitive_type, + STATE(1680), 1, sym_alignas_qualifier, - STATE(1859), 1, + STATE(1888), 1, sym_decltype_auto, - STATE(2809), 1, + STATE(1916), 1, sym_qualified_type_identifier, - STATE(4882), 1, + STATE(4234), 1, aux_sym_sized_type_specifier_repeat1, - STATE(5002), 1, + STATE(4528), 1, sym_type_specifier, - STATE(5723), 1, - sym__type_definition_type, - STATE(6593), 1, + STATE(6727), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(8209), 1, + sym_type_descriptor, + STATE(8569), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1713), 2, + STATE(1782), 2, sym_decltype, sym_template_type, - STATE(3924), 2, + STATE(3891), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7992), 4, + ACTIONS(1808), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1879), 7, + STATE(1890), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -382044,62 +387338,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [98992] = 26, + [100706] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(125), 1, + sym_auto, + ACTIONS(127), 1, + anon_sym_decltype, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1816), 1, + ACTIONS(3919), 1, + sym_primitive_type, + ACTIONS(8058), 1, + sym_identifier, + ACTIONS(8060), 1, + anon_sym_COLON_COLON, + ACTIONS(8062), 1, anon_sym_enum, - ACTIONS(1818), 1, + ACTIONS(8064), 1, anon_sym_class, - ACTIONS(1820), 1, + ACTIONS(8066), 1, anon_sym_struct, - ACTIONS(1822), 1, + ACTIONS(8068), 1, anon_sym_union, - ACTIONS(1846), 1, - sym_auto, - ACTIONS(1848), 1, - anon_sym_decltype, - ACTIONS(1850), 1, + ACTIONS(8070), 1, anon_sym_typename, - ACTIONS(7955), 1, - sym_identifier, - ACTIONS(7959), 1, - anon_sym_COLON_COLON, - ACTIONS(7961), 1, - sym_primitive_type, - STATE(1658), 1, + STATE(1680), 1, sym_alignas_qualifier, - STATE(1859), 1, + STATE(2453), 1, sym_decltype_auto, - STATE(1902), 1, - sym_qualified_type_identifier, - STATE(4209), 1, + STATE(2695), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4455), 1, + STATE(2836), 1, + sym_qualified_type_identifier, + STATE(4040), 1, sym_type_specifier, - STATE(6587), 1, - sym__scope_resolution, - STATE(8320), 1, + STATE(5901), 1, sym_type_descriptor, - STATE(8601), 1, + STATE(6729), 1, + sym__scope_resolution, + STATE(8569), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1713), 2, + STATE(2439), 2, sym_decltype, sym_template_type, - STATE(3904), 2, + STATE(3867), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1810), 4, + ACTIONS(3917), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1879), 7, + STATE(2558), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -382121,116 +387415,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [99095] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6487), 19, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(6489), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_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_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [99152] = 26, + [100809] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1846), 1, + ACTIONS(8032), 1, + sym_primitive_type, + ACTIONS(8042), 1, sym_auto, - ACTIONS(1848), 1, + ACTIONS(8044), 1, anon_sym_decltype, - ACTIONS(7988), 1, + ACTIONS(8072), 1, sym_identifier, - ACTIONS(7990), 1, + ACTIONS(8074), 1, anon_sym_COLON_COLON, - ACTIONS(7994), 1, - sym_primitive_type, - ACTIONS(7996), 1, + ACTIONS(8076), 1, anon_sym_enum, - ACTIONS(7998), 1, + ACTIONS(8078), 1, anon_sym_class, - ACTIONS(8000), 1, + ACTIONS(8080), 1, anon_sym_struct, - ACTIONS(8002), 1, + ACTIONS(8082), 1, anon_sym_union, - ACTIONS(8004), 1, + ACTIONS(8084), 1, anon_sym_typename, - STATE(1658), 1, + STATE(1680), 1, sym_alignas_qualifier, - STATE(1859), 1, - sym_decltype_auto, - STATE(2809), 1, + STATE(2836), 1, sym_qualified_type_identifier, - STATE(4882), 1, + STATE(4024), 1, aux_sym_sized_type_specifier_repeat1, - STATE(5002), 1, + STATE(4422), 1, sym_type_specifier, - STATE(5728), 1, - sym__type_definition_type, - STATE(6593), 1, + STATE(4672), 1, + sym_decltype_auto, + STATE(5901), 1, + sym_type_descriptor, + STATE(6743), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(8569), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1713), 2, + STATE(2439), 2, sym_decltype, sym_template_type, - STATE(3924), 2, + STATE(3881), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7992), 4, + ACTIONS(8030), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1879), 7, + STATE(4773), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -382252,62 +387492,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [99255] = 26, + [100912] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1816), 1, + ACTIONS(7998), 1, + sym_identifier, + ACTIONS(8000), 1, + anon_sym_COLON_COLON, + ACTIONS(8004), 1, + sym_primitive_type, + ACTIONS(8006), 1, anon_sym_enum, - ACTIONS(1818), 1, + ACTIONS(8008), 1, anon_sym_class, - ACTIONS(1820), 1, + ACTIONS(8010), 1, anon_sym_struct, - ACTIONS(1822), 1, + ACTIONS(8012), 1, anon_sym_union, - ACTIONS(1846), 1, + ACTIONS(8014), 1, sym_auto, - ACTIONS(1848), 1, + ACTIONS(8016), 1, anon_sym_decltype, - ACTIONS(1850), 1, + ACTIONS(8018), 1, anon_sym_typename, - ACTIONS(7955), 1, - sym_identifier, - ACTIONS(7959), 1, - anon_sym_COLON_COLON, - ACTIONS(7961), 1, - sym_primitive_type, - STATE(1658), 1, + STATE(1680), 1, sym_alignas_qualifier, - STATE(1859), 1, - sym_decltype_auto, - STATE(1902), 1, - sym_qualified_type_identifier, - STATE(4209), 1, + STATE(4150), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4455), 1, + STATE(4223), 1, sym_type_specifier, - STATE(6587), 1, - sym__scope_resolution, - STATE(8473), 1, + STATE(4975), 1, + sym_qualified_type_identifier, + STATE(4979), 1, + sym_decltype_auto, + STATE(6137), 1, sym_type_descriptor, - STATE(8601), 1, + STATE(6731), 1, + sym__scope_resolution, + STATE(8569), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1713), 2, - sym_decltype, - sym_template_type, - STATE(3904), 2, + STATE(3882), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1810), 4, + STATE(4943), 2, + sym_decltype, + sym_template_type, + ACTIONS(8002), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1879), 7, + STATE(4980), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -382329,62 +387569,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [99358] = 26, + [101015] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1846), 1, - sym_auto, - ACTIONS(1848), 1, - anon_sym_decltype, - ACTIONS(7988), 1, - sym_identifier, - ACTIONS(7990), 1, - anon_sym_COLON_COLON, - ACTIONS(7994), 1, - sym_primitive_type, - ACTIONS(7996), 1, + ACTIONS(3146), 1, anon_sym_enum, - ACTIONS(7998), 1, + ACTIONS(3148), 1, anon_sym_class, - ACTIONS(8000), 1, + ACTIONS(3150), 1, anon_sym_struct, - ACTIONS(8002), 1, + ACTIONS(3152), 1, anon_sym_union, - ACTIONS(8004), 1, + ACTIONS(3176), 1, + sym_auto, + ACTIONS(3178), 1, + anon_sym_decltype, + ACTIONS(3180), 1, anon_sym_typename, - STATE(1658), 1, + ACTIONS(8020), 1, + sym_identifier, + ACTIONS(8022), 1, + anon_sym_COLON_COLON, + ACTIONS(8024), 1, + sym_primitive_type, + STATE(1680), 1, sym_alignas_qualifier, - STATE(1859), 1, - sym_decltype_auto, - STATE(2809), 1, + STATE(2685), 1, sym_qualified_type_identifier, - STATE(4882), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(5002), 1, + STATE(2733), 1, + sym_decltype_auto, + STATE(4271), 1, sym_type_specifier, - STATE(5732), 1, - sym__type_definition_type, - STATE(6593), 1, + STATE(4313), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(6137), 1, + sym_type_descriptor, + STATE(6738), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(8569), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1713), 2, + STATE(2621), 2, sym_decltype, sym_template_type, - STATE(3924), 2, + STATE(3897), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7992), 4, + ACTIONS(3142), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1879), 7, + STATE(2747), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -382406,62 +387646,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [99461] = 26, + [101118] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1816), 1, - anon_sym_enum, - ACTIONS(1818), 1, - anon_sym_class, - ACTIONS(1820), 1, - anon_sym_struct, - ACTIONS(1822), 1, - anon_sym_union, - ACTIONS(1846), 1, + ACTIONS(1844), 1, sym_auto, - ACTIONS(1848), 1, + ACTIONS(1846), 1, anon_sym_decltype, - ACTIONS(1850), 1, - anon_sym_typename, - ACTIONS(7955), 1, + ACTIONS(8086), 1, sym_identifier, - ACTIONS(7959), 1, + ACTIONS(8088), 1, anon_sym_COLON_COLON, - ACTIONS(7961), 1, + ACTIONS(8092), 1, sym_primitive_type, - STATE(1658), 1, + ACTIONS(8094), 1, + anon_sym_enum, + ACTIONS(8096), 1, + anon_sym_class, + ACTIONS(8098), 1, + anon_sym_struct, + ACTIONS(8100), 1, + anon_sym_union, + ACTIONS(8102), 1, + anon_sym_typename, + STATE(1680), 1, sym_alignas_qualifier, - STATE(1859), 1, + STATE(1888), 1, sym_decltype_auto, - STATE(1902), 1, + STATE(2836), 1, sym_qualified_type_identifier, - STATE(4209), 1, + STATE(4916), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4455), 1, + STATE(5105), 1, sym_type_specifier, - STATE(6587), 1, + STATE(5767), 1, + sym__type_definition_type, + STATE(6724), 1, sym__scope_resolution, - STATE(7640), 1, - sym_type_descriptor, - STATE(8601), 1, + STATE(8569), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1713), 2, + STATE(1782), 2, sym_decltype, sym_template_type, - STATE(3904), 2, + STATE(3931), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1810), 4, + ACTIONS(8090), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1879), 7, + STATE(1890), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -382483,62 +387723,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [99564] = 26, + [101221] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1846), 1, - sym_auto, - ACTIONS(1848), 1, - anon_sym_decltype, - ACTIONS(7988), 1, - sym_identifier, - ACTIONS(7990), 1, - anon_sym_COLON_COLON, - ACTIONS(7994), 1, - sym_primitive_type, - ACTIONS(7996), 1, + ACTIONS(1814), 1, anon_sym_enum, - ACTIONS(7998), 1, + ACTIONS(1816), 1, anon_sym_class, - ACTIONS(8000), 1, + ACTIONS(1818), 1, anon_sym_struct, - ACTIONS(8002), 1, + ACTIONS(1820), 1, anon_sym_union, - ACTIONS(8004), 1, + ACTIONS(1844), 1, + sym_auto, + ACTIONS(1846), 1, + anon_sym_decltype, + ACTIONS(1848), 1, anon_sym_typename, - STATE(1658), 1, + ACTIONS(7980), 1, + sym_identifier, + ACTIONS(7984), 1, + anon_sym_COLON_COLON, + ACTIONS(7986), 1, + sym_primitive_type, + STATE(1680), 1, sym_alignas_qualifier, - STATE(1859), 1, + STATE(1888), 1, sym_decltype_auto, - STATE(2809), 1, + STATE(1916), 1, sym_qualified_type_identifier, - STATE(4882), 1, + STATE(4234), 1, aux_sym_sized_type_specifier_repeat1, - STATE(5002), 1, + STATE(4528), 1, sym_type_specifier, - STATE(5735), 1, - sym__type_definition_type, - STATE(6593), 1, + STATE(6727), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(8312), 1, + sym_type_descriptor, + STATE(8569), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1713), 2, + STATE(1782), 2, sym_decltype, sym_template_type, - STATE(3924), 2, + STATE(3891), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7992), 4, + ACTIONS(1808), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1879), 7, + STATE(1890), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -382560,62 +387800,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [99667] = 26, + [101324] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1816), 1, + ACTIONS(1814), 1, anon_sym_enum, - ACTIONS(1818), 1, + ACTIONS(1816), 1, anon_sym_class, - ACTIONS(1820), 1, + ACTIONS(1818), 1, anon_sym_struct, - ACTIONS(1822), 1, + ACTIONS(1820), 1, anon_sym_union, - ACTIONS(1846), 1, + ACTIONS(1844), 1, sym_auto, - ACTIONS(1848), 1, + ACTIONS(1846), 1, anon_sym_decltype, - ACTIONS(1850), 1, + ACTIONS(1848), 1, anon_sym_typename, - ACTIONS(7955), 1, + ACTIONS(7980), 1, sym_identifier, - ACTIONS(7959), 1, + ACTIONS(7984), 1, anon_sym_COLON_COLON, - ACTIONS(7961), 1, + ACTIONS(7986), 1, sym_primitive_type, - STATE(1658), 1, + STATE(1680), 1, sym_alignas_qualifier, - STATE(1859), 1, + STATE(1888), 1, sym_decltype_auto, - STATE(1902), 1, + STATE(1916), 1, sym_qualified_type_identifier, - STATE(4209), 1, + STATE(4234), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4455), 1, + STATE(4528), 1, sym_type_specifier, - STATE(6587), 1, + STATE(6727), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(8569), 1, sym_dependent_type_identifier, - STATE(8728), 1, + STATE(8595), 1, sym_type_descriptor, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1713), 2, + STATE(1782), 2, sym_decltype, sym_template_type, - STATE(3904), 2, + STATE(3891), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1810), 4, + ACTIONS(1808), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1879), 7, + STATE(1890), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -382637,62 +387877,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [99770] = 26, + [101427] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7846), 1, + sym_literal_suffix, + ACTIONS(4174), 22, + 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_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4166), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [101486] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1846), 1, - sym_auto, - ACTIONS(1848), 1, - anon_sym_decltype, - ACTIONS(7988), 1, - sym_identifier, - ACTIONS(7990), 1, - anon_sym_COLON_COLON, - ACTIONS(7994), 1, - sym_primitive_type, - ACTIONS(7996), 1, + ACTIONS(1814), 1, anon_sym_enum, - ACTIONS(7998), 1, + ACTIONS(1816), 1, anon_sym_class, - ACTIONS(8000), 1, + ACTIONS(1818), 1, anon_sym_struct, - ACTIONS(8002), 1, + ACTIONS(1820), 1, anon_sym_union, - ACTIONS(8004), 1, + ACTIONS(1844), 1, + sym_auto, + ACTIONS(1846), 1, + anon_sym_decltype, + ACTIONS(1848), 1, anon_sym_typename, - STATE(1658), 1, + ACTIONS(7980), 1, + sym_identifier, + ACTIONS(7984), 1, + anon_sym_COLON_COLON, + ACTIONS(7986), 1, + sym_primitive_type, + STATE(1680), 1, sym_alignas_qualifier, - STATE(1859), 1, + STATE(1888), 1, sym_decltype_auto, - STATE(2809), 1, + STATE(1916), 1, sym_qualified_type_identifier, - STATE(4882), 1, + STATE(4234), 1, aux_sym_sized_type_specifier_repeat1, - STATE(5002), 1, + STATE(4528), 1, sym_type_specifier, - STATE(5736), 1, - sym__type_definition_type, - STATE(6593), 1, + STATE(6727), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(8569), 1, sym_dependent_type_identifier, + STATE(8678), 1, + sym_type_descriptor, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1713), 2, + STATE(1782), 2, sym_decltype, sym_template_type, - STATE(3924), 2, + STATE(3891), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7992), 4, + ACTIONS(1808), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1879), 7, + STATE(1890), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -382714,18 +388009,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [99873] = 7, + [101589] = 7, ACTIONS(3), 1, sym_comment, - STATE(3992), 1, + STATE(4036), 1, sym_alignas_qualifier, - ACTIONS(8012), 2, + ACTIONS(8107), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3727), 2, + STATE(3777), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(5049), 10, + ACTIONS(5057), 10, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -382736,7 +388031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_DASH_GT, - ACTIONS(8009), 13, + ACTIONS(8104), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -382750,7 +388045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - ACTIONS(5047), 21, + ACTIONS(5055), 21, anon_sym_AMP, anon_sym___attribute__, anon_sym___attribute, @@ -382772,62 +388067,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noexcept, anon_sym_throw, anon_sym_requires, - [99938] = 26, + [101654] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1846), 1, + ACTIONS(125), 1, sym_auto, - ACTIONS(1848), 1, + ACTIONS(127), 1, anon_sym_decltype, - ACTIONS(7988), 1, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(3907), 1, sym_identifier, - ACTIONS(7990), 1, + ACTIONS(3915), 1, anon_sym_COLON_COLON, - ACTIONS(7994), 1, + ACTIONS(3919), 1, sym_primitive_type, - ACTIONS(7996), 1, + ACTIONS(3921), 1, anon_sym_enum, - ACTIONS(7998), 1, + ACTIONS(3923), 1, anon_sym_class, - ACTIONS(8000), 1, + ACTIONS(3925), 1, anon_sym_struct, - ACTIONS(8002), 1, + ACTIONS(3927), 1, anon_sym_union, - ACTIONS(8004), 1, + ACTIONS(3929), 1, anon_sym_typename, - STATE(1658), 1, + STATE(1680), 1, sym_alignas_qualifier, - STATE(1859), 1, + STATE(2453), 1, sym_decltype_auto, - STATE(2809), 1, - sym_qualified_type_identifier, - STATE(4882), 1, + STATE(2695), 1, aux_sym_sized_type_specifier_repeat1, - STATE(5002), 1, + STATE(2836), 1, + sym_qualified_type_identifier, + STATE(4099), 1, sym_type_specifier, - STATE(5745), 1, - sym__type_definition_type, - STATE(6593), 1, + STATE(5901), 1, + sym_type_descriptor, + STATE(6697), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(8569), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1713), 2, + STATE(2439), 2, sym_decltype, sym_template_type, - STATE(3924), 2, + STATE(3896), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7992), 4, + ACTIONS(3917), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1879), 7, + STATE(2558), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -382849,62 +388144,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [100041] = 26, + [101757] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(4187), 1, + anon_sym_COLON_COLON, + ACTIONS(8110), 1, + anon_sym_LT, + STATE(1863), 1, + sym_template_argument_list, + ACTIONS(4925), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(4932), 36, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + [101820] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1816), 1, + ACTIONS(1814), 1, anon_sym_enum, - ACTIONS(1818), 1, + ACTIONS(1816), 1, anon_sym_class, - ACTIONS(1820), 1, + ACTIONS(1818), 1, anon_sym_struct, - ACTIONS(1822), 1, + ACTIONS(1820), 1, anon_sym_union, - ACTIONS(1846), 1, + ACTIONS(1844), 1, sym_auto, - ACTIONS(1848), 1, + ACTIONS(1846), 1, anon_sym_decltype, - ACTIONS(1850), 1, + ACTIONS(1848), 1, anon_sym_typename, - ACTIONS(7955), 1, + ACTIONS(7980), 1, sym_identifier, - ACTIONS(7959), 1, + ACTIONS(7984), 1, anon_sym_COLON_COLON, - ACTIONS(7961), 1, + ACTIONS(7986), 1, sym_primitive_type, - STATE(1658), 1, + STATE(1680), 1, sym_alignas_qualifier, - STATE(1859), 1, + STATE(1888), 1, sym_decltype_auto, - STATE(1902), 1, + STATE(1916), 1, sym_qualified_type_identifier, - STATE(4209), 1, + STATE(4234), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4455), 1, + STATE(4528), 1, sym_type_specifier, - STATE(6587), 1, + STATE(6727), 1, sym__scope_resolution, - STATE(8601), 1, - sym_dependent_type_identifier, - STATE(8806), 1, + STATE(8094), 1, sym_type_descriptor, + STATE(8569), 1, + sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1713), 2, + STATE(1782), 2, sym_decltype, sym_template_type, - STATE(3904), 2, + STATE(3891), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1810), 4, + ACTIONS(1808), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1879), 7, + STATE(1890), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -382926,62 +388278,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [100144] = 26, + [101923] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1846), 1, - sym_auto, - ACTIONS(1848), 1, - anon_sym_decltype, - ACTIONS(7988), 1, - sym_identifier, - ACTIONS(7990), 1, - anon_sym_COLON_COLON, - ACTIONS(7994), 1, - sym_primitive_type, - ACTIONS(7996), 1, + ACTIONS(1814), 1, anon_sym_enum, - ACTIONS(7998), 1, + ACTIONS(1816), 1, anon_sym_class, - ACTIONS(8000), 1, + ACTIONS(1818), 1, anon_sym_struct, - ACTIONS(8002), 1, + ACTIONS(1820), 1, anon_sym_union, - ACTIONS(8004), 1, + ACTIONS(1844), 1, + sym_auto, + ACTIONS(1846), 1, + anon_sym_decltype, + ACTIONS(1848), 1, anon_sym_typename, - STATE(1658), 1, + ACTIONS(7980), 1, + sym_identifier, + ACTIONS(7984), 1, + anon_sym_COLON_COLON, + ACTIONS(7986), 1, + sym_primitive_type, + STATE(1680), 1, sym_alignas_qualifier, - STATE(1859), 1, + STATE(1888), 1, sym_decltype_auto, - STATE(2809), 1, + STATE(1916), 1, sym_qualified_type_identifier, - STATE(4882), 1, + STATE(4234), 1, aux_sym_sized_type_specifier_repeat1, - STATE(5002), 1, + STATE(4528), 1, sym_type_specifier, - STATE(5746), 1, - sym__type_definition_type, - STATE(6593), 1, + STATE(6727), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(8377), 1, + sym_type_descriptor, + STATE(8569), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1713), 2, + STATE(1782), 2, sym_decltype, sym_template_type, - STATE(3924), 2, + STATE(3891), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7992), 4, + ACTIONS(1808), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1879), 7, + STATE(1890), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -383003,62 +388355,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [100247] = 26, + [102026] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1816), 1, + ACTIONS(1814), 1, anon_sym_enum, - ACTIONS(1818), 1, + ACTIONS(1816), 1, anon_sym_class, - ACTIONS(1820), 1, + ACTIONS(1818), 1, anon_sym_struct, - ACTIONS(1822), 1, + ACTIONS(1820), 1, anon_sym_union, - ACTIONS(1846), 1, + ACTIONS(1844), 1, sym_auto, - ACTIONS(1848), 1, + ACTIONS(1846), 1, anon_sym_decltype, - ACTIONS(1850), 1, + ACTIONS(1848), 1, anon_sym_typename, - ACTIONS(7955), 1, + ACTIONS(7980), 1, sym_identifier, - ACTIONS(7959), 1, + ACTIONS(7984), 1, anon_sym_COLON_COLON, - ACTIONS(7961), 1, + ACTIONS(7986), 1, sym_primitive_type, - STATE(1658), 1, + STATE(1680), 1, sym_alignas_qualifier, - STATE(1859), 1, + STATE(1888), 1, sym_decltype_auto, - STATE(1902), 1, + STATE(1916), 1, sym_qualified_type_identifier, - STATE(4209), 1, + STATE(4234), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4455), 1, + STATE(4528), 1, sym_type_specifier, - STATE(6587), 1, + STATE(6727), 1, sym__scope_resolution, - STATE(8601), 1, - sym_dependent_type_identifier, - STATE(8780), 1, + STATE(8059), 1, sym_type_descriptor, + STATE(8569), 1, + sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1713), 2, + STATE(1782), 2, sym_decltype, sym_template_type, - STATE(3904), 2, + STATE(3891), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1810), 4, + ACTIONS(1808), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1879), 7, + STATE(1890), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -383080,62 +388432,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [100350] = 26, + [102129] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1846), 1, + ACTIONS(125), 1, sym_auto, - ACTIONS(1848), 1, + ACTIONS(127), 1, anon_sym_decltype, - ACTIONS(7988), 1, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(3919), 1, + sym_primitive_type, + ACTIONS(8058), 1, sym_identifier, - ACTIONS(7990), 1, + ACTIONS(8060), 1, anon_sym_COLON_COLON, - ACTIONS(7994), 1, - sym_primitive_type, - ACTIONS(7996), 1, + ACTIONS(8062), 1, anon_sym_enum, - ACTIONS(7998), 1, + ACTIONS(8064), 1, anon_sym_class, - ACTIONS(8000), 1, + ACTIONS(8066), 1, anon_sym_struct, - ACTIONS(8002), 1, + ACTIONS(8068), 1, anon_sym_union, - ACTIONS(8004), 1, + ACTIONS(8070), 1, anon_sym_typename, - STATE(1658), 1, + STATE(1680), 1, sym_alignas_qualifier, - STATE(1859), 1, + STATE(2453), 1, sym_decltype_auto, - STATE(2809), 1, - sym_qualified_type_identifier, - STATE(4882), 1, + STATE(2695), 1, aux_sym_sized_type_specifier_repeat1, - STATE(5002), 1, + STATE(2836), 1, + sym_qualified_type_identifier, + STATE(4154), 1, sym_type_specifier, - STATE(5752), 1, - sym__type_definition_type, - STATE(6593), 1, + STATE(5901), 1, + sym_type_descriptor, + STATE(6729), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(8569), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1713), 2, + STATE(2439), 2, sym_decltype, sym_template_type, - STATE(3924), 2, + STATE(3905), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7992), 4, + ACTIONS(3917), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1879), 7, + STATE(2558), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -383157,62 +388509,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [100453] = 26, + [102232] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1846), 1, - sym_auto, - ACTIONS(1848), 1, - anon_sym_decltype, - ACTIONS(7988), 1, - sym_identifier, - ACTIONS(7990), 1, - anon_sym_COLON_COLON, - ACTIONS(7994), 1, - sym_primitive_type, - ACTIONS(7996), 1, + ACTIONS(1814), 1, anon_sym_enum, - ACTIONS(7998), 1, + ACTIONS(1816), 1, anon_sym_class, - ACTIONS(8000), 1, + ACTIONS(1818), 1, anon_sym_struct, - ACTIONS(8002), 1, + ACTIONS(1820), 1, anon_sym_union, - ACTIONS(8004), 1, + ACTIONS(1844), 1, + sym_auto, + ACTIONS(1846), 1, + anon_sym_decltype, + ACTIONS(1848), 1, anon_sym_typename, - STATE(1658), 1, + ACTIONS(7980), 1, + sym_identifier, + ACTIONS(7984), 1, + anon_sym_COLON_COLON, + ACTIONS(7986), 1, + sym_primitive_type, + STATE(1680), 1, sym_alignas_qualifier, - STATE(1859), 1, + STATE(1888), 1, sym_decltype_auto, - STATE(2809), 1, + STATE(1916), 1, sym_qualified_type_identifier, - STATE(4882), 1, + STATE(4234), 1, aux_sym_sized_type_specifier_repeat1, - STATE(5002), 1, + STATE(4528), 1, sym_type_specifier, - STATE(5754), 1, - sym__type_definition_type, - STATE(6593), 1, + STATE(6727), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(8055), 1, + sym_type_descriptor, + STATE(8569), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1713), 2, + STATE(1782), 2, sym_decltype, sym_template_type, - STATE(3924), 2, + STATE(3891), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7992), 4, + ACTIONS(1808), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1879), 7, + STATE(1890), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -383234,62 +388586,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [100556] = 26, + [102335] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1846), 1, + ACTIONS(1814), 1, + anon_sym_enum, + ACTIONS(1816), 1, + anon_sym_class, + ACTIONS(1818), 1, + anon_sym_struct, + ACTIONS(1820), 1, + anon_sym_union, + ACTIONS(1844), 1, sym_auto, - ACTIONS(1848), 1, + ACTIONS(1846), 1, anon_sym_decltype, - ACTIONS(7988), 1, + ACTIONS(1848), 1, + anon_sym_typename, + ACTIONS(7980), 1, sym_identifier, - ACTIONS(7990), 1, + ACTIONS(7984), 1, anon_sym_COLON_COLON, - ACTIONS(7994), 1, + ACTIONS(7986), 1, sym_primitive_type, - ACTIONS(7996), 1, + STATE(1680), 1, + sym_alignas_qualifier, + STATE(1888), 1, + sym_decltype_auto, + STATE(1916), 1, + sym_qualified_type_identifier, + STATE(4234), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4528), 1, + sym_type_specifier, + STATE(6727), 1, + sym__scope_resolution, + STATE(8100), 1, + sym_type_descriptor, + STATE(8569), 1, + sym_dependent_type_identifier, + ACTIONS(69), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1782), 2, + sym_decltype, + sym_template_type, + STATE(3891), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(1808), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1890), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [102438] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1814), 1, anon_sym_enum, - ACTIONS(7998), 1, + ACTIONS(1816), 1, anon_sym_class, - ACTIONS(8000), 1, + ACTIONS(1818), 1, anon_sym_struct, - ACTIONS(8002), 1, + ACTIONS(1820), 1, anon_sym_union, - ACTIONS(8004), 1, + ACTIONS(1844), 1, + sym_auto, + ACTIONS(1846), 1, + anon_sym_decltype, + ACTIONS(1848), 1, anon_sym_typename, - STATE(1658), 1, + ACTIONS(7980), 1, + sym_identifier, + ACTIONS(7984), 1, + anon_sym_COLON_COLON, + ACTIONS(7986), 1, + sym_primitive_type, + STATE(1680), 1, sym_alignas_qualifier, - STATE(1859), 1, + STATE(1888), 1, sym_decltype_auto, - STATE(2809), 1, + STATE(1916), 1, sym_qualified_type_identifier, - STATE(4882), 1, + STATE(4234), 1, aux_sym_sized_type_specifier_repeat1, - STATE(5002), 1, + STATE(4528), 1, sym_type_specifier, - STATE(5756), 1, - sym__type_definition_type, - STATE(6593), 1, + STATE(6727), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(8173), 1, + sym_type_descriptor, + STATE(8569), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1713), 2, + STATE(1782), 2, sym_decltype, sym_template_type, - STATE(3924), 2, + STATE(3891), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7992), 4, + ACTIONS(1808), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1879), 7, + STATE(1890), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -383311,62 +388740,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [100659] = 26, + [102541] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1846), 1, + ACTIONS(125), 1, sym_auto, - ACTIONS(1848), 1, + ACTIONS(127), 1, anon_sym_decltype, - ACTIONS(7988), 1, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(3919), 1, + sym_primitive_type, + ACTIONS(8058), 1, sym_identifier, - ACTIONS(7990), 1, + ACTIONS(8060), 1, anon_sym_COLON_COLON, - ACTIONS(7994), 1, - sym_primitive_type, - ACTIONS(7996), 1, + ACTIONS(8062), 1, anon_sym_enum, - ACTIONS(7998), 1, + ACTIONS(8064), 1, anon_sym_class, - ACTIONS(8000), 1, + ACTIONS(8066), 1, anon_sym_struct, - ACTIONS(8002), 1, + ACTIONS(8068), 1, anon_sym_union, - ACTIONS(8004), 1, + ACTIONS(8070), 1, anon_sym_typename, - STATE(1658), 1, + STATE(1680), 1, sym_alignas_qualifier, - STATE(1859), 1, + STATE(2453), 1, sym_decltype_auto, - STATE(2809), 1, - sym_qualified_type_identifier, - STATE(4882), 1, + STATE(2695), 1, aux_sym_sized_type_specifier_repeat1, - STATE(5002), 1, + STATE(2836), 1, + sym_qualified_type_identifier, + STATE(4368), 1, sym_type_specifier, - STATE(5757), 1, - sym__type_definition_type, - STATE(6593), 1, + STATE(5901), 1, + sym_type_descriptor, + STATE(6729), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(8569), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1713), 2, + STATE(2439), 2, sym_decltype, sym_template_type, - STATE(3924), 2, + STATE(3908), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7992), 4, + ACTIONS(3917), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1879), 7, + STATE(2558), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -383388,62 +388817,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [100762] = 26, + [102644] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5519), 1, + anon_sym_COLON_COLON, + ACTIONS(5523), 1, + anon_sym_SEMI, + ACTIONS(5517), 5, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACK_LBRACK, + ACTIONS(5515), 42, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [102705] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1816), 1, + ACTIONS(1814), 1, anon_sym_enum, - ACTIONS(1818), 1, + ACTIONS(1816), 1, anon_sym_class, - ACTIONS(1820), 1, + ACTIONS(1818), 1, anon_sym_struct, - ACTIONS(1822), 1, + ACTIONS(1820), 1, anon_sym_union, - ACTIONS(1846), 1, + ACTIONS(1844), 1, sym_auto, - ACTIONS(1848), 1, + ACTIONS(1846), 1, anon_sym_decltype, - ACTIONS(1850), 1, + ACTIONS(1848), 1, anon_sym_typename, - ACTIONS(7955), 1, + ACTIONS(7980), 1, sym_identifier, - ACTIONS(7959), 1, + ACTIONS(7984), 1, anon_sym_COLON_COLON, - ACTIONS(7961), 1, + ACTIONS(7986), 1, sym_primitive_type, - STATE(1658), 1, + STATE(1680), 1, sym_alignas_qualifier, - STATE(1859), 1, + STATE(1888), 1, sym_decltype_auto, - STATE(1902), 1, + STATE(1916), 1, sym_qualified_type_identifier, - STATE(4209), 1, + STATE(4234), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4455), 1, + STATE(4528), 1, sym_type_specifier, - STATE(6587), 1, + STATE(6727), 1, sym__scope_resolution, - STATE(8040), 1, + STATE(8462), 1, sym_type_descriptor, - STATE(8601), 1, + STATE(8569), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1713), 2, + STATE(1782), 2, sym_decltype, sym_template_type, - STATE(3904), 2, + STATE(3891), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1810), 4, + ACTIONS(1808), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1879), 7, + STATE(1890), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -383465,118 +388950,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [100865] = 5, + [102808] = 4, ACTIONS(3), 1, sym_comment, - STATE(3362), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7862), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5450), 19, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5452), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + ACTIONS(5523), 1, + anon_sym_SEMI, + ACTIONS(5517), 6, anon_sym_LPAREN2, + anon_sym_TILDE, 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_LT, - anon_sym_GT_GT, - anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(5515), 42, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [100926] = 26, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [102867] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1816), 1, + ACTIONS(1814), 1, anon_sym_enum, - ACTIONS(1818), 1, + ACTIONS(1816), 1, anon_sym_class, - ACTIONS(1820), 1, + ACTIONS(1818), 1, anon_sym_struct, - ACTIONS(1822), 1, + ACTIONS(1820), 1, anon_sym_union, - ACTIONS(1846), 1, + ACTIONS(1844), 1, sym_auto, - ACTIONS(1848), 1, + ACTIONS(1846), 1, anon_sym_decltype, - ACTIONS(1850), 1, + ACTIONS(1848), 1, anon_sym_typename, - ACTIONS(7955), 1, + ACTIONS(7980), 1, sym_identifier, - ACTIONS(7959), 1, + ACTIONS(7984), 1, anon_sym_COLON_COLON, - ACTIONS(7961), 1, + ACTIONS(7986), 1, sym_primitive_type, - STATE(1658), 1, + STATE(1680), 1, sym_alignas_qualifier, - STATE(1859), 1, + STATE(1888), 1, sym_decltype_auto, - STATE(1902), 1, + STATE(1916), 1, sym_qualified_type_identifier, - STATE(4209), 1, + STATE(4234), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4455), 1, + STATE(4528), 1, sym_type_specifier, - STATE(6587), 1, + STATE(6727), 1, sym__scope_resolution, - STATE(7929), 1, + STATE(8520), 1, sym_type_descriptor, - STATE(8601), 1, + STATE(8569), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1713), 2, + STATE(1782), 2, sym_decltype, sym_template_type, - STATE(3904), 2, + STATE(3891), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1810), 4, + ACTIONS(1808), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1879), 7, + STATE(1890), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -383598,62 +389082,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [101029] = 26, + [102970] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5601), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + ACTIONS(5603), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [103027] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5641), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + ACTIONS(5643), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [103084] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1816), 1, + ACTIONS(1814), 1, anon_sym_enum, - ACTIONS(1818), 1, + ACTIONS(1816), 1, anon_sym_class, - ACTIONS(1820), 1, + ACTIONS(1818), 1, anon_sym_struct, - ACTIONS(1822), 1, + ACTIONS(1820), 1, anon_sym_union, - ACTIONS(1846), 1, + ACTIONS(1844), 1, sym_auto, - ACTIONS(1848), 1, + ACTIONS(1846), 1, anon_sym_decltype, - ACTIONS(1850), 1, + ACTIONS(1848), 1, anon_sym_typename, - ACTIONS(7955), 1, + ACTIONS(7980), 1, sym_identifier, - ACTIONS(7959), 1, + ACTIONS(7984), 1, anon_sym_COLON_COLON, - ACTIONS(7961), 1, + ACTIONS(7986), 1, sym_primitive_type, - STATE(1658), 1, + STATE(1680), 1, sym_alignas_qualifier, - STATE(1859), 1, + STATE(1888), 1, sym_decltype_auto, - STATE(1902), 1, + STATE(1916), 1, sym_qualified_type_identifier, - STATE(4209), 1, + STATE(4234), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4455), 1, + STATE(4528), 1, sym_type_specifier, - STATE(6587), 1, + STATE(6727), 1, sym__scope_resolution, - STATE(8358), 1, + STATE(8557), 1, sym_type_descriptor, - STATE(8601), 1, + STATE(8569), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1713), 2, + STATE(1782), 2, sym_decltype, sym_template_type, - STATE(3904), 2, + STATE(3891), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1810), 4, + ACTIONS(1808), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1879), 7, + STATE(1890), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -383675,62 +389267,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [101132] = 26, + [103187] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4200), 1, + anon_sym_EQ, + ACTIONS(4304), 1, + anon_sym_SEMI, + ACTIONS(4202), 13, + 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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + ACTIONS(4166), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(4174), 17, + 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_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + [103250] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1846), 1, - sym_auto, - ACTIONS(1848), 1, - anon_sym_decltype, - ACTIONS(7988), 1, - sym_identifier, - ACTIONS(7990), 1, - anon_sym_COLON_COLON, - ACTIONS(7994), 1, - sym_primitive_type, - ACTIONS(7996), 1, + ACTIONS(1814), 1, anon_sym_enum, - ACTIONS(7998), 1, + ACTIONS(1816), 1, anon_sym_class, - ACTIONS(8000), 1, + ACTIONS(1818), 1, anon_sym_struct, - ACTIONS(8002), 1, + ACTIONS(1820), 1, anon_sym_union, - ACTIONS(8004), 1, + ACTIONS(1844), 1, + sym_auto, + ACTIONS(1846), 1, + anon_sym_decltype, + ACTIONS(1848), 1, anon_sym_typename, - STATE(1658), 1, + ACTIONS(7980), 1, + sym_identifier, + ACTIONS(7984), 1, + anon_sym_COLON_COLON, + ACTIONS(7986), 1, + sym_primitive_type, + STATE(1680), 1, sym_alignas_qualifier, - STATE(1859), 1, + STATE(1888), 1, sym_decltype_auto, - STATE(2809), 1, + STATE(1916), 1, sym_qualified_type_identifier, - STATE(4882), 1, + STATE(4234), 1, aux_sym_sized_type_specifier_repeat1, - STATE(5002), 1, + STATE(4528), 1, sym_type_specifier, - STATE(5644), 1, - sym__type_definition_type, - STATE(6593), 1, + STATE(6727), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(8569), 1, sym_dependent_type_identifier, + STATE(8746), 1, + sym_type_descriptor, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1713), 2, + STATE(1782), 2, sym_decltype, sym_template_type, - STATE(3924), 2, + STATE(3891), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7992), 4, + ACTIONS(1808), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1879), 7, + STATE(1890), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -383752,62 +389401,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [101235] = 26, + [103353] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1816), 1, + ACTIONS(1814), 1, anon_sym_enum, - ACTIONS(1818), 1, + ACTIONS(1816), 1, anon_sym_class, - ACTIONS(1820), 1, + ACTIONS(1818), 1, anon_sym_struct, - ACTIONS(1822), 1, + ACTIONS(1820), 1, anon_sym_union, - ACTIONS(1846), 1, + ACTIONS(1844), 1, sym_auto, - ACTIONS(1848), 1, + ACTIONS(1846), 1, anon_sym_decltype, - ACTIONS(1850), 1, + ACTIONS(1848), 1, anon_sym_typename, - ACTIONS(7955), 1, + ACTIONS(7980), 1, sym_identifier, - ACTIONS(7959), 1, + ACTIONS(7984), 1, anon_sym_COLON_COLON, - ACTIONS(7961), 1, + ACTIONS(7986), 1, sym_primitive_type, - STATE(1658), 1, + STATE(1680), 1, sym_alignas_qualifier, - STATE(1859), 1, + STATE(1888), 1, sym_decltype_auto, - STATE(1902), 1, + STATE(1916), 1, sym_qualified_type_identifier, - STATE(4209), 1, + STATE(4234), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4845), 1, + STATE(4528), 1, sym_type_specifier, - STATE(6587), 1, + STATE(6727), 1, sym__scope_resolution, - STATE(8386), 1, + STATE(8101), 1, sym_type_descriptor, - STATE(8601), 1, + STATE(8569), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1713), 2, + STATE(1782), 2, sym_decltype, sym_template_type, - STATE(3835), 2, + STATE(3891), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1810), 4, + ACTIONS(1808), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1879), 7, + STATE(1890), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -383829,170 +389478,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [101338] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6614), 19, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(6616), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_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_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [101395] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8017), 5, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(8015), 44, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - [101452] = 26, + [103456] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1816), 1, + ACTIONS(1814), 1, anon_sym_enum, - ACTIONS(1818), 1, + ACTIONS(1816), 1, anon_sym_class, - ACTIONS(1820), 1, + ACTIONS(1818), 1, anon_sym_struct, - ACTIONS(1822), 1, + ACTIONS(1820), 1, anon_sym_union, - ACTIONS(1846), 1, + ACTIONS(1844), 1, sym_auto, - ACTIONS(1848), 1, + ACTIONS(1846), 1, anon_sym_decltype, - ACTIONS(1850), 1, + ACTIONS(1848), 1, anon_sym_typename, - ACTIONS(7955), 1, + ACTIONS(7980), 1, sym_identifier, - ACTIONS(7959), 1, + ACTIONS(7984), 1, anon_sym_COLON_COLON, - ACTIONS(7961), 1, + ACTIONS(7986), 1, sym_primitive_type, - STATE(1658), 1, + STATE(1680), 1, sym_alignas_qualifier, - STATE(1859), 1, + STATE(1888), 1, sym_decltype_auto, - STATE(1902), 1, + STATE(1916), 1, sym_qualified_type_identifier, - STATE(4209), 1, + STATE(4234), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4455), 1, + STATE(4528), 1, sym_type_specifier, - STATE(6587), 1, + STATE(6727), 1, sym__scope_resolution, - STATE(7948), 1, + STATE(8226), 1, sym_type_descriptor, - STATE(8601), 1, + STATE(8569), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1713), 2, + STATE(1782), 2, sym_decltype, sym_template_type, - STATE(3904), 2, + STATE(3891), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1810), 4, + ACTIONS(1808), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1879), 7, + STATE(1890), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -384014,62 +389555,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [101555] = 26, + [103559] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1816), 1, + ACTIONS(1814), 1, anon_sym_enum, - ACTIONS(1818), 1, + ACTIONS(1816), 1, anon_sym_class, - ACTIONS(1820), 1, + ACTIONS(1818), 1, anon_sym_struct, - ACTIONS(1822), 1, + ACTIONS(1820), 1, anon_sym_union, - ACTIONS(1846), 1, + ACTIONS(1844), 1, sym_auto, - ACTIONS(1848), 1, + ACTIONS(1846), 1, anon_sym_decltype, - ACTIONS(1850), 1, + ACTIONS(1848), 1, anon_sym_typename, - ACTIONS(7955), 1, + ACTIONS(7980), 1, sym_identifier, - ACTIONS(7959), 1, + ACTIONS(7984), 1, anon_sym_COLON_COLON, - ACTIONS(7961), 1, + ACTIONS(7986), 1, sym_primitive_type, - STATE(1658), 1, + STATE(1680), 1, sym_alignas_qualifier, - STATE(1859), 1, + STATE(1888), 1, sym_decltype_auto, - STATE(1902), 1, + STATE(1916), 1, sym_qualified_type_identifier, - STATE(4209), 1, + STATE(4234), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4455), 1, + STATE(4528), 1, sym_type_specifier, - STATE(5862), 1, - sym_type_descriptor, - STATE(6587), 1, + STATE(6727), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(8569), 1, sym_dependent_type_identifier, + STATE(8859), 1, + sym_type_descriptor, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1713), 2, + STATE(1782), 2, sym_decltype, sym_template_type, - STATE(3904), 2, + STATE(3891), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1810), 4, + ACTIONS(1808), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1879), 7, + STATE(1890), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -384091,62 +389632,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [101658] = 26, + [103662] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(8019), 1, - sym_identifier, - ACTIONS(8021), 1, - anon_sym_COLON_COLON, - ACTIONS(8025), 1, - sym_primitive_type, - ACTIONS(8027), 1, + ACTIONS(1814), 1, anon_sym_enum, - ACTIONS(8029), 1, + ACTIONS(1816), 1, anon_sym_class, - ACTIONS(8031), 1, + ACTIONS(1818), 1, anon_sym_struct, - ACTIONS(8033), 1, + ACTIONS(1820), 1, anon_sym_union, - ACTIONS(8035), 1, + ACTIONS(1844), 1, sym_auto, - ACTIONS(8037), 1, + ACTIONS(1846), 1, anon_sym_decltype, - ACTIONS(8039), 1, + ACTIONS(1848), 1, anon_sym_typename, - STATE(1658), 1, + ACTIONS(7980), 1, + sym_identifier, + ACTIONS(7984), 1, + anon_sym_COLON_COLON, + ACTIONS(7986), 1, + sym_primitive_type, + STATE(1680), 1, sym_alignas_qualifier, - STATE(4069), 1, - aux_sym_sized_type_specifier_repeat1, + STATE(1888), 1, + sym_decltype_auto, + STATE(1916), 1, + sym_qualified_type_identifier, STATE(4234), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4528), 1, sym_type_specifier, - STATE(4947), 1, - sym_qualified_type_identifier, - STATE(4948), 1, - sym_decltype_auto, - STATE(5988), 1, - sym_type_descriptor, - STATE(6632), 1, + STATE(6727), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(8257), 1, + sym_type_descriptor, + STATE(8569), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3842), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(4894), 2, + STATE(1782), 2, sym_decltype, sym_template_type, - ACTIONS(8023), 4, + STATE(3891), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(1808), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4919), 7, + STATE(1890), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -384168,62 +389709,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [101761] = 26, + [103765] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5470), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + ACTIONS(5472), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [103822] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1846), 1, + ACTIONS(1844), 1, sym_auto, - ACTIONS(1848), 1, + ACTIONS(1846), 1, anon_sym_decltype, - ACTIONS(7988), 1, + ACTIONS(8086), 1, sym_identifier, - ACTIONS(7990), 1, + ACTIONS(8088), 1, anon_sym_COLON_COLON, - ACTIONS(7994), 1, + ACTIONS(8092), 1, sym_primitive_type, - ACTIONS(7996), 1, + ACTIONS(8094), 1, anon_sym_enum, - ACTIONS(7998), 1, + ACTIONS(8096), 1, anon_sym_class, - ACTIONS(8000), 1, + ACTIONS(8098), 1, anon_sym_struct, - ACTIONS(8002), 1, + ACTIONS(8100), 1, anon_sym_union, - ACTIONS(8004), 1, + ACTIONS(8102), 1, anon_sym_typename, - STATE(1658), 1, + STATE(1680), 1, sym_alignas_qualifier, - STATE(1859), 1, + STATE(1888), 1, sym_decltype_auto, - STATE(2809), 1, + STATE(2836), 1, sym_qualified_type_identifier, - STATE(4882), 1, + STATE(4916), 1, aux_sym_sized_type_specifier_repeat1, - STATE(5002), 1, + STATE(5105), 1, sym_type_specifier, - STATE(5650), 1, + STATE(5822), 1, sym__type_definition_type, - STATE(6593), 1, + STATE(6724), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(8569), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1713), 2, + STATE(1782), 2, sym_decltype, sym_template_type, - STATE(3924), 2, + STATE(3931), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7992), 4, + ACTIONS(8090), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1879), 7, + STATE(1890), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -384245,37 +389840,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [101864] = 3, + [103925] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8043), 11, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4995), 1, + anon_sym_LBRACK, + ACTIONS(4988), 2, anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(4991), 5, + anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(8041), 38, + anon_sym_COLON_COLON, + ACTIONS(4984), 41, anon_sym_AMP, anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym___declspec, 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_LBRACK, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_static, + 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, @@ -384290,19 +389891,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [101921] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [103986] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5482), 18, + ACTIONS(5477), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -384321,7 +389918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_literal_suffix, - ACTIONS(5484), 31, + ACTIONS(5479), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -384353,254 +389950,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [101978] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5827), 1, - anon_sym_LPAREN2, - ACTIONS(6429), 1, - anon_sym_LBRACK, - ACTIONS(6431), 1, - anon_sym_DOT, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8045), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6435), 18, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - sym_identifier, - ACTIONS(6437), 22, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_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_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - [102049] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5617), 23, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - ACTIONS(5619), 26, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [102106] = 26, + [104043] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(3134), 1, - anon_sym_enum, - ACTIONS(3136), 1, - anon_sym_class, - ACTIONS(3138), 1, - anon_sym_struct, - ACTIONS(3140), 1, - anon_sym_union, - ACTIONS(3164), 1, + ACTIONS(1844), 1, sym_auto, - ACTIONS(3166), 1, + ACTIONS(1846), 1, anon_sym_decltype, - ACTIONS(3168), 1, - anon_sym_typename, - ACTIONS(8047), 1, - sym_identifier, - ACTIONS(8049), 1, - anon_sym_COLON_COLON, - ACTIONS(8051), 1, - sym_primitive_type, - STATE(1658), 1, - sym_alignas_qualifier, - STATE(2657), 1, - sym_qualified_type_identifier, - STATE(2708), 1, - sym_decltype_auto, - STATE(4239), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4276), 1, - sym_type_specifier, - STATE(5988), 1, - sym_type_descriptor, - STATE(6579), 1, - sym__scope_resolution, - STATE(8601), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2598), 2, - sym_decltype, - sym_template_type, - STATE(3879), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3130), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2668), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [102209] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(8053), 1, + ACTIONS(8086), 1, sym_identifier, - ACTIONS(8055), 1, + ACTIONS(8088), 1, anon_sym_COLON_COLON, - ACTIONS(8059), 1, + ACTIONS(8092), 1, sym_primitive_type, - ACTIONS(8061), 1, + ACTIONS(8094), 1, anon_sym_enum, - ACTIONS(8063), 1, + ACTIONS(8096), 1, anon_sym_class, - ACTIONS(8065), 1, + ACTIONS(8098), 1, anon_sym_struct, - ACTIONS(8067), 1, + ACTIONS(8100), 1, anon_sym_union, - ACTIONS(8069), 1, - sym_auto, - ACTIONS(8071), 1, - anon_sym_decltype, - ACTIONS(8073), 1, + ACTIONS(8102), 1, anon_sym_typename, - STATE(1658), 1, + STATE(1680), 1, sym_alignas_qualifier, - STATE(2809), 1, + STATE(1888), 1, + sym_decltype_auto, + STATE(2836), 1, sym_qualified_type_identifier, - STATE(3931), 1, + STATE(4916), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3999), 1, + STATE(5105), 1, sym_type_specifier, - STATE(4612), 1, - sym_decltype_auto, - STATE(5862), 1, - sym_type_descriptor, - STATE(6592), 1, + STATE(5840), 1, + sym__type_definition_type, + STATE(6724), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(8569), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2406), 2, + STATE(1782), 2, sym_decltype, sym_template_type, - STATE(3848), 2, + STATE(3931), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(8057), 4, + ACTIONS(8090), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4706), 7, + STATE(1890), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -384622,72 +390027,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [102312] = 26, + [104146] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1816), 1, - anon_sym_enum, - ACTIONS(1818), 1, - anon_sym_class, - ACTIONS(1820), 1, - anon_sym_struct, - ACTIONS(1822), 1, - anon_sym_union, - ACTIONS(1846), 1, - sym_auto, - ACTIONS(1848), 1, - anon_sym_decltype, - ACTIONS(1850), 1, - anon_sym_typename, - ACTIONS(7955), 1, - sym_identifier, - ACTIONS(7959), 1, - anon_sym_COLON_COLON, - ACTIONS(7961), 1, - sym_primitive_type, - STATE(1658), 1, + ACTIONS(67), 1, + anon_sym_const, + ACTIONS(5871), 1, + anon_sym___attribute, + ACTIONS(7848), 1, + anon_sym_LPAREN2, + ACTIONS(7856), 1, + sym_ms_restrict_modifier, + ACTIONS(7862), 1, + anon_sym_LBRACK, + ACTIONS(8113), 1, + anon_sym_STAR, + ACTIONS(8115), 1, + anon_sym_AMP_AMP, + ACTIONS(8117), 1, + anon_sym_AMP, + STATE(1680), 1, sym_alignas_qualifier, - STATE(1859), 1, - sym_decltype_auto, - STATE(1902), 1, - sym_qualified_type_identifier, - STATE(4209), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4455), 1, - sym_type_specifier, - STATE(6587), 1, - sym__scope_resolution, - STATE(8455), 1, - sym_type_descriptor, - STATE(8601), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, + STATE(3112), 1, + sym_parameter_list, + STATE(3758), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5953), 1, + sym__function_declarator_seq, + STATE(6332), 1, + sym__abstract_declarator, + ACTIONS(7304), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1713), 2, - sym_decltype, - sym_template_type, - STATE(3904), 2, + ACTIONS(7858), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(7860), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3808), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4315), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1810), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1879), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, + STATE(5952), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(5863), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(7297), 12, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -384699,26 +390100,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [102415] = 10, + [104241] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6441), 18, + ACTIONS(6422), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -384737,7 +390138,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, sym_identifier, - ACTIONS(6443), 22, + ACTIONS(6424), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -384760,72 +390161,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, - [102486] = 26, + [104312] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(125), 1, - sym_auto, - ACTIONS(127), 1, - anon_sym_decltype, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(3911), 1, - sym_primitive_type, - ACTIONS(7968), 1, - sym_identifier, - ACTIONS(7970), 1, - anon_sym_COLON_COLON, - ACTIONS(7972), 1, - anon_sym_enum, - ACTIONS(7974), 1, - anon_sym_class, - ACTIONS(7976), 1, - anon_sym_struct, - ACTIONS(7978), 1, - anon_sym_union, - ACTIONS(7980), 1, - anon_sym_typename, - STATE(1658), 1, + ACTIONS(67), 1, + anon_sym_const, + ACTIONS(5879), 1, + anon_sym___attribute, + ACTIONS(7848), 1, + anon_sym_LPAREN2, + ACTIONS(7856), 1, + sym_ms_restrict_modifier, + ACTIONS(7862), 1, + anon_sym_LBRACK, + ACTIONS(8113), 1, + anon_sym_STAR, + ACTIONS(8115), 1, + anon_sym_AMP_AMP, + ACTIONS(8117), 1, + anon_sym_AMP, + STATE(1680), 1, sym_alignas_qualifier, - STATE(2501), 1, - sym_decltype_auto, - STATE(2674), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2809), 1, - sym_qualified_type_identifier, - STATE(4085), 1, - sym_type_specifier, - STATE(5862), 1, - sym_type_descriptor, - STATE(6630), 1, - sym__scope_resolution, - STATE(8601), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, + STATE(3112), 1, + sym_parameter_list, + STATE(3758), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5953), 1, + sym__function_declarator_seq, + STATE(6292), 1, + sym__abstract_declarator, + ACTIONS(7304), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2406), 2, - sym_decltype, - sym_template_type, - STATE(3890), 2, + ACTIONS(7858), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(7860), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3386), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4292), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3909), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2523), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, + STATE(5952), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(5877), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(7297), 12, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -384837,62 +390234,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [102589] = 26, + [104407] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(125), 1, sym_auto, ACTIONS(127), 1, anon_sym_decltype, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(3899), 1, - sym_identifier, ACTIONS(3907), 1, + sym_identifier, + ACTIONS(3915), 1, anon_sym_COLON_COLON, - ACTIONS(3911), 1, + ACTIONS(3919), 1, sym_primitive_type, - ACTIONS(3913), 1, + ACTIONS(3921), 1, anon_sym_enum, - ACTIONS(3915), 1, + ACTIONS(3923), 1, anon_sym_class, - ACTIONS(3917), 1, + ACTIONS(3925), 1, anon_sym_struct, - ACTIONS(3919), 1, + ACTIONS(3927), 1, anon_sym_union, - ACTIONS(3921), 1, + ACTIONS(3929), 1, anon_sym_typename, - STATE(1658), 1, + STATE(1680), 1, sym_alignas_qualifier, - STATE(2501), 1, + STATE(2453), 1, sym_decltype_auto, - STATE(2674), 1, + STATE(2695), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2809), 1, + STATE(2836), 1, sym_qualified_type_identifier, - STATE(4182), 1, + STATE(4227), 1, sym_type_specifier, - STATE(5862), 1, + STATE(5901), 1, sym_type_descriptor, - STATE(6599), 1, + STATE(6697), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(8569), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2406), 2, + STATE(2439), 2, sym_decltype, sym_template_type, - STATE(3911), 2, + STATE(3955), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3909), 4, + ACTIONS(3917), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2523), 7, + STATE(2558), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -384914,21 +390311,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [102692] = 3, + [104510] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6566), 19, - aux_sym_preproc_elif_token1, + ACTIONS(7081), 23, 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_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -384936,57 +390336,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(6568), 30, + anon_sym_DASH_GT, + sym_literal_suffix, + ACTIONS(7083), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_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_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, 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_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [102749] = 6, + anon_sym_DASH_GT_STAR, + [104567] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1814), 1, + anon_sym_enum, + ACTIONS(1816), 1, + anon_sym_class, + ACTIONS(1818), 1, + anon_sym_struct, + ACTIONS(1820), 1, + anon_sym_union, + ACTIONS(1844), 1, + sym_auto, + ACTIONS(1846), 1, + anon_sym_decltype, + ACTIONS(1848), 1, + anon_sym_typename, + ACTIONS(7980), 1, + sym_identifier, + ACTIONS(7984), 1, + anon_sym_COLON_COLON, + ACTIONS(7986), 1, + sym_primitive_type, + STATE(1680), 1, + sym_alignas_qualifier, + STATE(1888), 1, + sym_decltype_auto, + STATE(1916), 1, + sym_qualified_type_identifier, + STATE(4234), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4528), 1, + sym_type_specifier, + STATE(6727), 1, + sym__scope_resolution, + STATE(7738), 1, + sym_type_descriptor, + STATE(8569), 1, + sym_dependent_type_identifier, + ACTIONS(69), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1782), 2, + sym_decltype, + sym_template_type, + STATE(3891), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(1808), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1890), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [104670] = 6, ACTIONS(3), 1, sym_comment, - STATE(3517), 2, + STATE(3543), 2, sym_string_literal, sym_raw_string_literal, - ACTIONS(5066), 5, + ACTIONS(5074), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(5068), 5, + ACTIONS(5076), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - ACTIONS(5912), 18, + ACTIONS(5915), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -385005,7 +390479,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_literal_suffix, - ACTIONS(5914), 19, + ACTIONS(5917), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -385025,177 +390499,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [102812] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5827), 1, - anon_sym_LPAREN2, - ACTIONS(6429), 1, - anon_sym_LBRACK, - ACTIONS(6431), 1, - anon_sym_DOT, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8045), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6449), 18, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - sym_identifier, - ACTIONS(6451), 22, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_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_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - [102883] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8077), 11, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(8075), 38, - anon_sym_AMP, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym___attribute, - 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_LBRACK, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [102940] = 26, + [104733] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1816), 1, + ACTIONS(1814), 1, anon_sym_enum, - ACTIONS(1818), 1, + ACTIONS(1816), 1, anon_sym_class, - ACTIONS(1820), 1, + ACTIONS(1818), 1, anon_sym_struct, - ACTIONS(1822), 1, + ACTIONS(1820), 1, anon_sym_union, - ACTIONS(1846), 1, + ACTIONS(1844), 1, sym_auto, - ACTIONS(1848), 1, + ACTIONS(1846), 1, anon_sym_decltype, - ACTIONS(1850), 1, + ACTIONS(1848), 1, anon_sym_typename, - ACTIONS(7955), 1, + ACTIONS(7980), 1, sym_identifier, - ACTIONS(7959), 1, + ACTIONS(7984), 1, anon_sym_COLON_COLON, - ACTIONS(7961), 1, + ACTIONS(7986), 1, sym_primitive_type, - STATE(1658), 1, + STATE(1680), 1, sym_alignas_qualifier, - STATE(1859), 1, + STATE(1888), 1, sym_decltype_auto, - STATE(1902), 1, + STATE(1916), 1, sym_qualified_type_identifier, - STATE(4209), 1, + STATE(4234), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4455), 1, + STATE(4293), 1, sym_type_specifier, - STATE(6587), 1, - sym__scope_resolution, - STATE(8470), 1, + STATE(6137), 1, sym_type_descriptor, - STATE(8601), 1, + STATE(6727), 1, + sym__scope_resolution, + STATE(8569), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1713), 2, + STATE(1782), 2, sym_decltype, sym_template_type, - STATE(3904), 2, + STATE(3889), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1810), 4, + ACTIONS(1808), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1879), 7, + STATE(1890), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -385217,62 +390576,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [103043] = 26, + [104836] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(8059), 1, - sym_primitive_type, - ACTIONS(8069), 1, + ACTIONS(1844), 1, sym_auto, - ACTIONS(8071), 1, + ACTIONS(1846), 1, anon_sym_decltype, - ACTIONS(8079), 1, + ACTIONS(8086), 1, sym_identifier, - ACTIONS(8081), 1, + ACTIONS(8088), 1, anon_sym_COLON_COLON, - ACTIONS(8083), 1, + ACTIONS(8092), 1, + sym_primitive_type, + ACTIONS(8094), 1, anon_sym_enum, - ACTIONS(8085), 1, + ACTIONS(8096), 1, anon_sym_class, - ACTIONS(8087), 1, + ACTIONS(8098), 1, anon_sym_struct, - ACTIONS(8089), 1, + ACTIONS(8100), 1, anon_sym_union, - ACTIONS(8091), 1, + ACTIONS(8102), 1, anon_sym_typename, - STATE(1658), 1, + STATE(1680), 1, sym_alignas_qualifier, - STATE(2809), 1, + STATE(1888), 1, + sym_decltype_auto, + STATE(2836), 1, sym_qualified_type_identifier, - STATE(3931), 1, + STATE(4916), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4373), 1, + STATE(5105), 1, sym_type_specifier, - STATE(4612), 1, - sym_decltype_auto, - STATE(5862), 1, - sym_type_descriptor, - STATE(6615), 1, + STATE(5770), 1, + sym__type_definition_type, + STATE(6724), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(8569), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2406), 2, + STATE(1782), 2, sym_decltype, sym_template_type, - STATE(3881), 2, + STATE(3931), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(8057), 4, + ACTIONS(8090), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4706), 7, + STATE(1890), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -385294,116 +390653,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [103146] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7036), 23, - 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_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - anon_sym_DASH_GT, - sym_literal_suffix, - ACTIONS(7038), 26, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [103203] = 26, + [104939] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1816), 1, - anon_sym_enum, - ACTIONS(1818), 1, - anon_sym_class, - ACTIONS(1820), 1, - anon_sym_struct, - ACTIONS(1822), 1, - anon_sym_union, - ACTIONS(1846), 1, + ACTIONS(1844), 1, sym_auto, - ACTIONS(1848), 1, + ACTIONS(1846), 1, anon_sym_decltype, - ACTIONS(1850), 1, - anon_sym_typename, - ACTIONS(7955), 1, + ACTIONS(8086), 1, sym_identifier, - ACTIONS(7959), 1, + ACTIONS(8088), 1, anon_sym_COLON_COLON, - ACTIONS(7961), 1, + ACTIONS(8092), 1, sym_primitive_type, - STATE(1658), 1, + ACTIONS(8094), 1, + anon_sym_enum, + ACTIONS(8096), 1, + anon_sym_class, + ACTIONS(8098), 1, + anon_sym_struct, + ACTIONS(8100), 1, + anon_sym_union, + ACTIONS(8102), 1, + anon_sym_typename, + STATE(1680), 1, sym_alignas_qualifier, - STATE(1859), 1, + STATE(1888), 1, sym_decltype_auto, - STATE(1902), 1, + STATE(2836), 1, sym_qualified_type_identifier, - STATE(4209), 1, + STATE(4916), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4455), 1, + STATE(5105), 1, sym_type_specifier, - STATE(6587), 1, + STATE(5772), 1, + sym__type_definition_type, + STATE(6724), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(8569), 1, sym_dependent_type_identifier, - STATE(8669), 1, - sym_type_descriptor, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1713), 2, + STATE(1782), 2, sym_decltype, sym_template_type, - STATE(3904), 2, + STATE(3931), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1810), 4, + ACTIONS(8090), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1879), 7, + STATE(1890), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -385425,122 +390730,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [103306] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5827), 1, - anon_sym_LPAREN2, - ACTIONS(6429), 1, - anon_sym_LBRACK, - ACTIONS(6431), 1, - anon_sym_DOT, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6445), 18, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - sym_identifier, - ACTIONS(6447), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_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_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - [103375] = 26, + [105042] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1816), 1, - anon_sym_enum, - ACTIONS(1818), 1, - anon_sym_class, - ACTIONS(1820), 1, - anon_sym_struct, - ACTIONS(1822), 1, - anon_sym_union, - ACTIONS(1846), 1, + ACTIONS(1844), 1, sym_auto, - ACTIONS(1848), 1, + ACTIONS(1846), 1, anon_sym_decltype, - ACTIONS(1850), 1, - anon_sym_typename, - ACTIONS(7955), 1, + ACTIONS(8086), 1, sym_identifier, - ACTIONS(7959), 1, + ACTIONS(8088), 1, anon_sym_COLON_COLON, - ACTIONS(7961), 1, + ACTIONS(8092), 1, sym_primitive_type, - STATE(1658), 1, + ACTIONS(8094), 1, + anon_sym_enum, + ACTIONS(8096), 1, + anon_sym_class, + ACTIONS(8098), 1, + anon_sym_struct, + ACTIONS(8100), 1, + anon_sym_union, + ACTIONS(8102), 1, + anon_sym_typename, + STATE(1680), 1, sym_alignas_qualifier, - STATE(1859), 1, + STATE(1888), 1, sym_decltype_auto, - STATE(1902), 1, + STATE(2836), 1, sym_qualified_type_identifier, - STATE(4209), 1, + STATE(4916), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4455), 1, + STATE(5105), 1, sym_type_specifier, - STATE(6587), 1, + STATE(5791), 1, + sym__type_definition_type, + STATE(6724), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(8569), 1, sym_dependent_type_identifier, - STATE(8766), 1, - sym_type_descriptor, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1713), 2, + STATE(1782), 2, sym_decltype, sym_template_type, - STATE(3904), 2, + STATE(3931), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1810), 4, + ACTIONS(8090), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1879), 7, + STATE(1890), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -385562,62 +390807,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [103478] = 26, + [105145] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1816), 1, - anon_sym_enum, - ACTIONS(1818), 1, - anon_sym_class, - ACTIONS(1820), 1, - anon_sym_struct, - ACTIONS(1822), 1, - anon_sym_union, - ACTIONS(1846), 1, + ACTIONS(1844), 1, sym_auto, - ACTIONS(1848), 1, + ACTIONS(1846), 1, anon_sym_decltype, - ACTIONS(1850), 1, - anon_sym_typename, - ACTIONS(7955), 1, + ACTIONS(8086), 1, sym_identifier, - ACTIONS(7959), 1, + ACTIONS(8088), 1, anon_sym_COLON_COLON, - ACTIONS(7961), 1, + ACTIONS(8092), 1, sym_primitive_type, - STATE(1658), 1, + ACTIONS(8094), 1, + anon_sym_enum, + ACTIONS(8096), 1, + anon_sym_class, + ACTIONS(8098), 1, + anon_sym_struct, + ACTIONS(8100), 1, + anon_sym_union, + ACTIONS(8102), 1, + anon_sym_typename, + STATE(1680), 1, sym_alignas_qualifier, - STATE(1859), 1, + STATE(1888), 1, sym_decltype_auto, - STATE(1902), 1, + STATE(2836), 1, sym_qualified_type_identifier, - STATE(4209), 1, + STATE(4916), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4455), 1, + STATE(5105), 1, sym_type_specifier, - STATE(6587), 1, + STATE(5793), 1, + sym__type_definition_type, + STATE(6724), 1, sym__scope_resolution, - STATE(7925), 1, - sym_type_descriptor, - STATE(8601), 1, + STATE(8569), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1713), 2, + STATE(1782), 2, sym_decltype, sym_template_type, - STATE(3904), 2, + STATE(3931), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1810), 4, + ACTIONS(8090), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1879), 7, + STATE(1890), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -385639,62 +390884,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [103581] = 26, + [105248] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(8053), 1, + ACTIONS(1844), 1, + sym_auto, + ACTIONS(1846), 1, + anon_sym_decltype, + ACTIONS(8086), 1, sym_identifier, - ACTIONS(8055), 1, + ACTIONS(8088), 1, anon_sym_COLON_COLON, - ACTIONS(8059), 1, + ACTIONS(8092), 1, sym_primitive_type, - ACTIONS(8061), 1, + ACTIONS(8094), 1, anon_sym_enum, - ACTIONS(8063), 1, + ACTIONS(8096), 1, anon_sym_class, - ACTIONS(8065), 1, + ACTIONS(8098), 1, anon_sym_struct, - ACTIONS(8067), 1, + ACTIONS(8100), 1, anon_sym_union, - ACTIONS(8069), 1, - sym_auto, - ACTIONS(8071), 1, - anon_sym_decltype, - ACTIONS(8073), 1, + ACTIONS(8102), 1, anon_sym_typename, - STATE(1658), 1, + STATE(1680), 1, sym_alignas_qualifier, - STATE(2809), 1, + STATE(1888), 1, + sym_decltype_auto, + STATE(2836), 1, sym_qualified_type_identifier, - STATE(3931), 1, + STATE(4916), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3984), 1, + STATE(5105), 1, sym_type_specifier, - STATE(4612), 1, - sym_decltype_auto, - STATE(5862), 1, - sym_type_descriptor, - STATE(6592), 1, + STATE(5870), 1, + sym__type_definition_type, + STATE(6724), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(8569), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2406), 2, + STATE(1782), 2, sym_decltype, sym_template_type, - STATE(3850), 2, + STATE(3931), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(8057), 4, + ACTIONS(8090), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4706), 7, + STATE(1890), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -385716,227 +390961,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [103684] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4167), 1, - anon_sym_COLON_COLON, - ACTIONS(7709), 1, - anon_sym_LT, - STATE(1844), 1, - sym_template_argument_list, - ACTIONS(5838), 10, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(4172), 36, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - [103747] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6640), 19, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(6642), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_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_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [103804] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5478), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_literal_suffix, - ACTIONS(5480), 31, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [103861] = 26, + [105351] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1846), 1, + ACTIONS(1844), 1, sym_auto, - ACTIONS(1848), 1, + ACTIONS(1846), 1, anon_sym_decltype, - ACTIONS(7988), 1, + ACTIONS(8086), 1, sym_identifier, - ACTIONS(7990), 1, + ACTIONS(8088), 1, anon_sym_COLON_COLON, - ACTIONS(7994), 1, + ACTIONS(8092), 1, sym_primitive_type, - ACTIONS(7996), 1, + ACTIONS(8094), 1, anon_sym_enum, - ACTIONS(7998), 1, + ACTIONS(8096), 1, anon_sym_class, - ACTIONS(8000), 1, + ACTIONS(8098), 1, anon_sym_struct, - ACTIONS(8002), 1, + ACTIONS(8100), 1, anon_sym_union, - ACTIONS(8004), 1, + ACTIONS(8102), 1, anon_sym_typename, - STATE(1658), 1, + STATE(1680), 1, sym_alignas_qualifier, - STATE(1859), 1, + STATE(1888), 1, sym_decltype_auto, - STATE(2809), 1, + STATE(2836), 1, sym_qualified_type_identifier, - STATE(4882), 1, + STATE(4916), 1, aux_sym_sized_type_specifier_repeat1, - STATE(5002), 1, + STATE(5105), 1, sym_type_specifier, - STATE(5668), 1, + STATE(5802), 1, sym__type_definition_type, - STATE(6593), 1, + STATE(6724), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(8569), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1713), 2, + STATE(1782), 2, sym_decltype, sym_template_type, - STATE(3924), 2, + STATE(3931), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7992), 4, + ACTIONS(8090), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1879), 7, + STATE(1890), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -385958,62 +391038,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [103964] = 26, + [105454] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1816), 1, - anon_sym_enum, - ACTIONS(1818), 1, - anon_sym_class, - ACTIONS(1820), 1, - anon_sym_struct, - ACTIONS(1822), 1, - anon_sym_union, - ACTIONS(1846), 1, + ACTIONS(1844), 1, sym_auto, - ACTIONS(1848), 1, + ACTIONS(1846), 1, anon_sym_decltype, - ACTIONS(1850), 1, - anon_sym_typename, - ACTIONS(7955), 1, + ACTIONS(8086), 1, sym_identifier, - ACTIONS(7959), 1, + ACTIONS(8088), 1, anon_sym_COLON_COLON, - ACTIONS(7961), 1, + ACTIONS(8092), 1, sym_primitive_type, - STATE(1658), 1, + ACTIONS(8094), 1, + anon_sym_enum, + ACTIONS(8096), 1, + anon_sym_class, + ACTIONS(8098), 1, + anon_sym_struct, + ACTIONS(8100), 1, + anon_sym_union, + ACTIONS(8102), 1, + anon_sym_typename, + STATE(1680), 1, sym_alignas_qualifier, - STATE(1859), 1, + STATE(1888), 1, sym_decltype_auto, - STATE(1902), 1, + STATE(2836), 1, sym_qualified_type_identifier, - STATE(4209), 1, + STATE(4916), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4455), 1, + STATE(5105), 1, sym_type_specifier, - STATE(6587), 1, + STATE(5808), 1, + sym__type_definition_type, + STATE(6724), 1, sym__scope_resolution, - STATE(7993), 1, - sym_type_descriptor, - STATE(8601), 1, + STATE(8569), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1713), 2, + STATE(1782), 2, sym_decltype, sym_template_type, - STATE(3904), 2, + STATE(3931), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1810), 4, + ACTIONS(8090), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1879), 7, + STATE(1890), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -386035,62 +391115,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [104067] = 26, + [105557] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1816), 1, - anon_sym_enum, - ACTIONS(1818), 1, - anon_sym_class, - ACTIONS(1820), 1, - anon_sym_struct, - ACTIONS(1822), 1, - anon_sym_union, - ACTIONS(1846), 1, + ACTIONS(1844), 1, sym_auto, - ACTIONS(1848), 1, + ACTIONS(1846), 1, anon_sym_decltype, - ACTIONS(1850), 1, - anon_sym_typename, - ACTIONS(7955), 1, + ACTIONS(8086), 1, sym_identifier, - ACTIONS(7959), 1, + ACTIONS(8088), 1, anon_sym_COLON_COLON, - ACTIONS(7961), 1, + ACTIONS(8092), 1, sym_primitive_type, - STATE(1658), 1, + ACTIONS(8094), 1, + anon_sym_enum, + ACTIONS(8096), 1, + anon_sym_class, + ACTIONS(8098), 1, + anon_sym_struct, + ACTIONS(8100), 1, + anon_sym_union, + ACTIONS(8102), 1, + anon_sym_typename, + STATE(1680), 1, sym_alignas_qualifier, - STATE(1859), 1, + STATE(1888), 1, sym_decltype_auto, - STATE(1902), 1, + STATE(2836), 1, sym_qualified_type_identifier, - STATE(4209), 1, + STATE(4916), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4455), 1, + STATE(5105), 1, sym_type_specifier, - STATE(6587), 1, + STATE(5809), 1, + sym__type_definition_type, + STATE(6724), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(8569), 1, sym_dependent_type_identifier, - STATE(8716), 1, - sym_type_descriptor, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1713), 2, + STATE(1782), 2, sym_decltype, sym_template_type, - STATE(3904), 2, + STATE(3931), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1810), 4, + ACTIONS(8090), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1879), 7, + STATE(1890), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -386112,62 +391192,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [104170] = 26, + [105660] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1816), 1, - anon_sym_enum, - ACTIONS(1818), 1, - anon_sym_class, - ACTIONS(1820), 1, - anon_sym_struct, - ACTIONS(1822), 1, - anon_sym_union, - ACTIONS(1846), 1, + ACTIONS(1844), 1, sym_auto, - ACTIONS(1848), 1, + ACTIONS(1846), 1, anon_sym_decltype, - ACTIONS(1850), 1, - anon_sym_typename, - ACTIONS(7955), 1, + ACTIONS(8086), 1, sym_identifier, - ACTIONS(7959), 1, + ACTIONS(8088), 1, anon_sym_COLON_COLON, - ACTIONS(7961), 1, + ACTIONS(8092), 1, sym_primitive_type, - STATE(1658), 1, + ACTIONS(8094), 1, + anon_sym_enum, + ACTIONS(8096), 1, + anon_sym_class, + ACTIONS(8098), 1, + anon_sym_struct, + ACTIONS(8100), 1, + anon_sym_union, + ACTIONS(8102), 1, + anon_sym_typename, + STATE(1680), 1, sym_alignas_qualifier, - STATE(1859), 1, + STATE(1888), 1, sym_decltype_auto, - STATE(1902), 1, + STATE(2836), 1, sym_qualified_type_identifier, - STATE(4209), 1, + STATE(4916), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4799), 1, + STATE(5105), 1, sym_type_specifier, - STATE(5862), 1, - sym_type_descriptor, - STATE(6587), 1, + STATE(5815), 1, + sym__type_definition_type, + STATE(6724), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(8569), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1713), 2, + STATE(1782), 2, sym_decltype, sym_template_type, - STATE(3869), 2, + STATE(3931), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1810), 4, + ACTIONS(8090), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1879), 7, + STATE(1890), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -386189,62 +391269,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [104273] = 26, + [105763] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(125), 1, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1844), 1, sym_auto, - ACTIONS(127), 1, + ACTIONS(1846), 1, anon_sym_decltype, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(3911), 1, - sym_primitive_type, - ACTIONS(7968), 1, + ACTIONS(8086), 1, sym_identifier, - ACTIONS(7970), 1, + ACTIONS(8088), 1, anon_sym_COLON_COLON, - ACTIONS(7972), 1, + ACTIONS(8092), 1, + sym_primitive_type, + ACTIONS(8094), 1, anon_sym_enum, - ACTIONS(7974), 1, + ACTIONS(8096), 1, anon_sym_class, - ACTIONS(7976), 1, + ACTIONS(8098), 1, anon_sym_struct, - ACTIONS(7978), 1, + ACTIONS(8100), 1, anon_sym_union, - ACTIONS(7980), 1, + ACTIONS(8102), 1, anon_sym_typename, - STATE(1658), 1, + STATE(1680), 1, sym_alignas_qualifier, - STATE(2501), 1, + STATE(1888), 1, sym_decltype_auto, - STATE(2674), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2809), 1, + STATE(2836), 1, sym_qualified_type_identifier, - STATE(4299), 1, + STATE(4916), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5105), 1, sym_type_specifier, - STATE(5862), 1, - sym_type_descriptor, - STATE(6630), 1, + STATE(5817), 1, + sym__type_definition_type, + STATE(6724), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(8569), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2406), 2, + STATE(1782), 2, sym_decltype, sym_template_type, - STATE(3799), 2, + STATE(3931), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3909), 4, + ACTIONS(8090), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2523), 7, + STATE(1890), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -386266,62 +391346,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [104376] = 26, + [105866] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1816), 1, - anon_sym_enum, - ACTIONS(1818), 1, - anon_sym_class, - ACTIONS(1820), 1, - anon_sym_struct, - ACTIONS(1822), 1, - anon_sym_union, - ACTIONS(1846), 1, + ACTIONS(1844), 1, sym_auto, - ACTIONS(1848), 1, + ACTIONS(1846), 1, anon_sym_decltype, - ACTIONS(1850), 1, - anon_sym_typename, - ACTIONS(7955), 1, + ACTIONS(8086), 1, sym_identifier, - ACTIONS(7959), 1, + ACTIONS(8088), 1, anon_sym_COLON_COLON, - ACTIONS(7961), 1, + ACTIONS(8092), 1, sym_primitive_type, - STATE(1658), 1, + ACTIONS(8094), 1, + anon_sym_enum, + ACTIONS(8096), 1, + anon_sym_class, + ACTIONS(8098), 1, + anon_sym_struct, + ACTIONS(8100), 1, + anon_sym_union, + ACTIONS(8102), 1, + anon_sym_typename, + STATE(1680), 1, sym_alignas_qualifier, - STATE(1859), 1, + STATE(1888), 1, sym_decltype_auto, - STATE(1902), 1, + STATE(2836), 1, sym_qualified_type_identifier, - STATE(4209), 1, + STATE(4916), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4428), 1, + STATE(5105), 1, sym_type_specifier, - STATE(5988), 1, - sym_type_descriptor, - STATE(6587), 1, + STATE(5820), 1, + sym__type_definition_type, + STATE(6724), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(8569), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1713), 2, + STATE(1782), 2, sym_decltype, sym_template_type, - STATE(3856), 2, + STATE(3931), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1810), 4, + ACTIONS(8090), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1879), 7, + STATE(1890), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -386343,62 +391423,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [104479] = 26, + [105969] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1816), 1, - anon_sym_enum, - ACTIONS(1818), 1, - anon_sym_class, - ACTIONS(1820), 1, - anon_sym_struct, - ACTIONS(1822), 1, - anon_sym_union, - ACTIONS(1846), 1, + ACTIONS(1844), 1, sym_auto, - ACTIONS(1848), 1, + ACTIONS(1846), 1, anon_sym_decltype, - ACTIONS(1850), 1, - anon_sym_typename, - ACTIONS(7955), 1, + ACTIONS(8086), 1, sym_identifier, - ACTIONS(7959), 1, + ACTIONS(8088), 1, anon_sym_COLON_COLON, - ACTIONS(7961), 1, + ACTIONS(8092), 1, sym_primitive_type, - STATE(1658), 1, + ACTIONS(8094), 1, + anon_sym_enum, + ACTIONS(8096), 1, + anon_sym_class, + ACTIONS(8098), 1, + anon_sym_struct, + ACTIONS(8100), 1, + anon_sym_union, + ACTIONS(8102), 1, + anon_sym_typename, + STATE(1680), 1, sym_alignas_qualifier, - STATE(1859), 1, + STATE(1888), 1, sym_decltype_auto, - STATE(1902), 1, + STATE(2836), 1, sym_qualified_type_identifier, - STATE(4209), 1, + STATE(4916), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4845), 1, + STATE(5105), 1, sym_type_specifier, - STATE(6587), 1, + STATE(5821), 1, + sym__type_definition_type, + STATE(6724), 1, sym__scope_resolution, - STATE(8013), 1, - sym_type_descriptor, - STATE(8601), 1, + STATE(8569), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1713), 2, + STATE(1782), 2, sym_decltype, sym_template_type, - STATE(3835), 2, + STATE(3931), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1810), 4, + ACTIONS(8090), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1879), 7, + STATE(1890), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -386420,62 +391500,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [104582] = 26, + [106072] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(8019), 1, + ACTIONS(1844), 1, + sym_auto, + ACTIONS(1846), 1, + anon_sym_decltype, + ACTIONS(8086), 1, sym_identifier, - ACTIONS(8021), 1, + ACTIONS(8088), 1, anon_sym_COLON_COLON, - ACTIONS(8025), 1, + ACTIONS(8092), 1, sym_primitive_type, - ACTIONS(8027), 1, + ACTIONS(8094), 1, anon_sym_enum, - ACTIONS(8029), 1, + ACTIONS(8096), 1, anon_sym_class, - ACTIONS(8031), 1, + ACTIONS(8098), 1, anon_sym_struct, - ACTIONS(8033), 1, + ACTIONS(8100), 1, anon_sym_union, - ACTIONS(8035), 1, - sym_auto, - ACTIONS(8037), 1, - anon_sym_decltype, - ACTIONS(8039), 1, + ACTIONS(8102), 1, anon_sym_typename, - STATE(1658), 1, + STATE(1680), 1, sym_alignas_qualifier, - STATE(4069), 1, + STATE(1888), 1, + sym_decltype_auto, + STATE(2836), 1, + sym_qualified_type_identifier, + STATE(4916), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4147), 1, + STATE(5105), 1, sym_type_specifier, - STATE(4947), 1, - sym_qualified_type_identifier, - STATE(4948), 1, - sym_decltype_auto, - STATE(5988), 1, - sym_type_descriptor, - STATE(6632), 1, + STATE(5823), 1, + sym__type_definition_type, + STATE(6724), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(8569), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3882), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(4894), 2, + STATE(1782), 2, sym_decltype, sym_template_type, - ACTIONS(8023), 4, + STATE(3931), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8090), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4919), 7, + STATE(1890), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -386497,62 +391577,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [104685] = 26, + [106175] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1816), 1, - anon_sym_enum, - ACTIONS(1818), 1, - anon_sym_class, - ACTIONS(1820), 1, - anon_sym_struct, - ACTIONS(1822), 1, - anon_sym_union, - ACTIONS(1846), 1, + ACTIONS(1844), 1, sym_auto, - ACTIONS(1848), 1, + ACTIONS(1846), 1, anon_sym_decltype, - ACTIONS(1850), 1, - anon_sym_typename, - ACTIONS(7955), 1, + ACTIONS(8086), 1, sym_identifier, - ACTIONS(7959), 1, + ACTIONS(8088), 1, anon_sym_COLON_COLON, - ACTIONS(7961), 1, + ACTIONS(8092), 1, sym_primitive_type, - STATE(1658), 1, + ACTIONS(8094), 1, + anon_sym_enum, + ACTIONS(8096), 1, + anon_sym_class, + ACTIONS(8098), 1, + anon_sym_struct, + ACTIONS(8100), 1, + anon_sym_union, + ACTIONS(8102), 1, + anon_sym_typename, + STATE(1680), 1, sym_alignas_qualifier, - STATE(1859), 1, + STATE(1888), 1, sym_decltype_auto, - STATE(1902), 1, + STATE(2836), 1, sym_qualified_type_identifier, - STATE(4209), 1, + STATE(4916), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4455), 1, + STATE(5105), 1, sym_type_specifier, - STATE(6587), 1, + STATE(5824), 1, + sym__type_definition_type, + STATE(6724), 1, sym__scope_resolution, - STATE(8000), 1, - sym_type_descriptor, - STATE(8601), 1, + STATE(8569), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1713), 2, + STATE(1782), 2, sym_decltype, sym_template_type, - STATE(3904), 2, + STATE(3931), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1810), 4, + ACTIONS(8090), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1879), 7, + STATE(1890), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -386574,122 +391654,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [104788] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5827), 1, - anon_sym_LPAREN2, - ACTIONS(6429), 1, - anon_sym_LBRACK, - ACTIONS(6431), 1, - anon_sym_DOT, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6425), 18, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - sym_identifier, - ACTIONS(6427), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_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_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - [104857] = 26, + [106278] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(3134), 1, + ACTIONS(1814), 1, anon_sym_enum, - ACTIONS(3136), 1, + ACTIONS(1816), 1, anon_sym_class, - ACTIONS(3138), 1, + ACTIONS(1818), 1, anon_sym_struct, - ACTIONS(3140), 1, + ACTIONS(1820), 1, anon_sym_union, - ACTIONS(3164), 1, + ACTIONS(1844), 1, sym_auto, - ACTIONS(3166), 1, + ACTIONS(1846), 1, anon_sym_decltype, - ACTIONS(3168), 1, + ACTIONS(1848), 1, anon_sym_typename, - ACTIONS(8047), 1, + ACTIONS(7980), 1, sym_identifier, - ACTIONS(8049), 1, + ACTIONS(7984), 1, anon_sym_COLON_COLON, - ACTIONS(8051), 1, + ACTIONS(7986), 1, sym_primitive_type, - STATE(1658), 1, + STATE(1680), 1, sym_alignas_qualifier, - STATE(2657), 1, - sym_qualified_type_identifier, - STATE(2708), 1, + STATE(1888), 1, sym_decltype_auto, - STATE(4239), 1, + STATE(1916), 1, + sym_qualified_type_identifier, + STATE(4234), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4253), 1, + STATE(4528), 1, sym_type_specifier, - STATE(5988), 1, - sym_type_descriptor, - STATE(6579), 1, + STATE(6727), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(8491), 1, + sym_type_descriptor, + STATE(8569), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2598), 2, + STATE(1782), 2, sym_decltype, sym_template_type, STATE(3891), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3130), 4, + ACTIONS(1808), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2668), 7, + STATE(1890), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -386711,62 +391731,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [104960] = 26, + [106381] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1816), 1, + ACTIONS(1814), 1, anon_sym_enum, - ACTIONS(1818), 1, + ACTIONS(1816), 1, anon_sym_class, - ACTIONS(1820), 1, + ACTIONS(1818), 1, anon_sym_struct, - ACTIONS(1822), 1, + ACTIONS(1820), 1, anon_sym_union, - ACTIONS(1846), 1, + ACTIONS(1844), 1, sym_auto, - ACTIONS(1848), 1, + ACTIONS(1846), 1, anon_sym_decltype, - ACTIONS(1850), 1, + ACTIONS(1848), 1, anon_sym_typename, - ACTIONS(7955), 1, + ACTIONS(7980), 1, sym_identifier, - ACTIONS(7959), 1, + ACTIONS(7984), 1, anon_sym_COLON_COLON, - ACTIONS(7961), 1, + ACTIONS(7986), 1, sym_primitive_type, - STATE(1658), 1, + STATE(1680), 1, sym_alignas_qualifier, - STATE(1859), 1, + STATE(1888), 1, sym_decltype_auto, - STATE(1902), 1, + STATE(1916), 1, sym_qualified_type_identifier, - STATE(4209), 1, + STATE(4234), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4455), 1, + STATE(4932), 1, sym_type_specifier, - STATE(6587), 1, + STATE(6727), 1, sym__scope_resolution, - STATE(8532), 1, + STATE(8519), 1, sym_type_descriptor, - STATE(8601), 1, + STATE(8569), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1713), 2, + STATE(1782), 2, sym_decltype, sym_template_type, - STATE(3904), 2, + STATE(3923), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1810), 4, + ACTIONS(1808), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1879), 7, + STATE(1890), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -386788,62 +391808,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [105063] = 26, + [106484] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1816), 1, + ACTIONS(1814), 1, anon_sym_enum, - ACTIONS(1818), 1, + ACTIONS(1816), 1, anon_sym_class, - ACTIONS(1820), 1, + ACTIONS(1818), 1, anon_sym_struct, - ACTIONS(1822), 1, + ACTIONS(1820), 1, anon_sym_union, - ACTIONS(1846), 1, + ACTIONS(1844), 1, sym_auto, - ACTIONS(1848), 1, + ACTIONS(1846), 1, anon_sym_decltype, - ACTIONS(1850), 1, + ACTIONS(1848), 1, anon_sym_typename, - ACTIONS(7955), 1, + ACTIONS(7980), 1, sym_identifier, - ACTIONS(7959), 1, + ACTIONS(7984), 1, anon_sym_COLON_COLON, - ACTIONS(7961), 1, + ACTIONS(7986), 1, sym_primitive_type, - STATE(1658), 1, + STATE(1680), 1, sym_alignas_qualifier, - STATE(1859), 1, + STATE(1888), 1, sym_decltype_auto, - STATE(1902), 1, + STATE(1916), 1, sym_qualified_type_identifier, - STATE(4209), 1, + STATE(4234), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4455), 1, + STATE(4528), 1, sym_type_specifier, - STATE(6587), 1, + STATE(6727), 1, sym__scope_resolution, - STATE(8132), 1, - sym_type_descriptor, - STATE(8601), 1, + STATE(8569), 1, sym_dependent_type_identifier, + STATE(8945), 1, + sym_type_descriptor, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1713), 2, + STATE(1782), 2, sym_decltype, sym_template_type, - STATE(3904), 2, + STATE(3891), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1810), 4, + ACTIONS(1808), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1879), 7, + STATE(1890), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -386865,62 +391885,177 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [105166] = 26, + [106587] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1816), 1, + ACTIONS(8121), 5, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(8119), 44, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, anon_sym_enum, - ACTIONS(1818), 1, anon_sym_class, - ACTIONS(1820), 1, anon_sym_struct, - ACTIONS(1822), 1, anon_sym_union, - ACTIONS(1846), 1, + sym_identifier, sym_auto, - ACTIONS(1848), 1, anon_sym_decltype, - ACTIONS(1850), 1, anon_sym_typename, - ACTIONS(7955), 1, + anon_sym_template, + [106644] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5845), 1, + anon_sym_LPAREN2, + ACTIONS(6414), 1, + anon_sym_LBRACK, + ACTIONS(6418), 1, + anon_sym_DOT, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + ACTIONS(6420), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8048), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6410), 18, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, sym_identifier, - ACTIONS(7959), 1, + ACTIONS(6412), 22, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_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_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + [106715] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1844), 1, + sym_auto, + ACTIONS(1846), 1, + anon_sym_decltype, + ACTIONS(8086), 1, + sym_identifier, + ACTIONS(8088), 1, anon_sym_COLON_COLON, - ACTIONS(7961), 1, + ACTIONS(8092), 1, sym_primitive_type, - STATE(1658), 1, + ACTIONS(8094), 1, + anon_sym_enum, + ACTIONS(8096), 1, + anon_sym_class, + ACTIONS(8098), 1, + anon_sym_struct, + ACTIONS(8100), 1, + anon_sym_union, + ACTIONS(8102), 1, + anon_sym_typename, + STATE(1680), 1, sym_alignas_qualifier, - STATE(1859), 1, + STATE(1888), 1, sym_decltype_auto, - STATE(1902), 1, + STATE(2836), 1, sym_qualified_type_identifier, - STATE(4209), 1, + STATE(4916), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4845), 1, + STATE(5105), 1, sym_type_specifier, - STATE(6587), 1, + STATE(5794), 1, + sym__type_definition_type, + STATE(6724), 1, sym__scope_resolution, - STATE(8536), 1, - sym_type_descriptor, - STATE(8601), 1, + STATE(8569), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1713), 2, + STATE(1782), 2, sym_decltype, sym_template_type, - STATE(3835), 2, + STATE(3931), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1810), 4, + ACTIONS(8090), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1879), 7, + STATE(1890), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -386942,62 +392077,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [105269] = 26, + [106818] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6568), 19, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(6570), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_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_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [106875] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1816), 1, + ACTIONS(1814), 1, anon_sym_enum, - ACTIONS(1818), 1, + ACTIONS(1816), 1, anon_sym_class, - ACTIONS(1820), 1, + ACTIONS(1818), 1, anon_sym_struct, - ACTIONS(1822), 1, + ACTIONS(1820), 1, anon_sym_union, - ACTIONS(1846), 1, + ACTIONS(1844), 1, sym_auto, - ACTIONS(1848), 1, + ACTIONS(1846), 1, anon_sym_decltype, - ACTIONS(1850), 1, + ACTIONS(1848), 1, anon_sym_typename, - ACTIONS(7955), 1, + ACTIONS(7980), 1, sym_identifier, - ACTIONS(7959), 1, + ACTIONS(7984), 1, anon_sym_COLON_COLON, - ACTIONS(7961), 1, + ACTIONS(7986), 1, sym_primitive_type, - STATE(1658), 1, + STATE(1680), 1, sym_alignas_qualifier, - STATE(1859), 1, + STATE(1888), 1, sym_decltype_auto, - STATE(1902), 1, + STATE(1916), 1, sym_qualified_type_identifier, - STATE(4209), 1, + STATE(4234), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4845), 1, + STATE(4932), 1, sym_type_specifier, - STATE(6587), 1, + STATE(6727), 1, sym__scope_resolution, - STATE(8035), 1, + STATE(8145), 1, sym_type_descriptor, - STATE(8601), 1, + STATE(8569), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1713), 2, + STATE(1782), 2, sym_decltype, sym_template_type, - STATE(3835), 2, + STATE(3923), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1810), 4, + ACTIONS(1808), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1879), 7, + STATE(1890), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -387019,62 +392208,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [105372] = 26, + [106978] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(8053), 1, - sym_identifier, - ACTIONS(8055), 1, - anon_sym_COLON_COLON, - ACTIONS(8059), 1, - sym_primitive_type, - ACTIONS(8061), 1, + ACTIONS(1814), 1, anon_sym_enum, - ACTIONS(8063), 1, + ACTIONS(1816), 1, anon_sym_class, - ACTIONS(8065), 1, + ACTIONS(1818), 1, anon_sym_struct, - ACTIONS(8067), 1, + ACTIONS(1820), 1, anon_sym_union, - ACTIONS(8069), 1, + ACTIONS(1844), 1, sym_auto, - ACTIONS(8071), 1, + ACTIONS(1846), 1, anon_sym_decltype, - ACTIONS(8073), 1, + ACTIONS(1848), 1, anon_sym_typename, - STATE(1658), 1, + ACTIONS(7980), 1, + sym_identifier, + ACTIONS(7984), 1, + anon_sym_COLON_COLON, + ACTIONS(7986), 1, + sym_primitive_type, + STATE(1680), 1, sym_alignas_qualifier, - STATE(2809), 1, + STATE(1888), 1, + sym_decltype_auto, + STATE(1916), 1, sym_qualified_type_identifier, - STATE(3931), 1, + STATE(4234), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4164), 1, + STATE(4528), 1, sym_type_specifier, - STATE(4612), 1, - sym_decltype_auto, - STATE(5862), 1, - sym_type_descriptor, - STATE(6592), 1, + STATE(6727), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(8569), 1, sym_dependent_type_identifier, + STATE(8665), 1, + sym_type_descriptor, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2406), 2, + STATE(1782), 2, sym_decltype, sym_template_type, - STATE(3819), 2, + STATE(3891), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(8057), 4, + ACTIONS(1808), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4706), 7, + STATE(1890), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -387096,62 +392285,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [105475] = 26, + [107081] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1816), 1, + ACTIONS(1814), 1, anon_sym_enum, - ACTIONS(1818), 1, + ACTIONS(1816), 1, anon_sym_class, - ACTIONS(1820), 1, + ACTIONS(1818), 1, anon_sym_struct, - ACTIONS(1822), 1, + ACTIONS(1820), 1, anon_sym_union, - ACTIONS(1846), 1, + ACTIONS(1844), 1, sym_auto, - ACTIONS(1848), 1, + ACTIONS(1846), 1, anon_sym_decltype, - ACTIONS(1850), 1, + ACTIONS(1848), 1, anon_sym_typename, - ACTIONS(7955), 1, + ACTIONS(7980), 1, sym_identifier, - ACTIONS(7959), 1, + ACTIONS(7984), 1, anon_sym_COLON_COLON, - ACTIONS(7961), 1, + ACTIONS(7986), 1, sym_primitive_type, - STATE(1658), 1, + STATE(1680), 1, sym_alignas_qualifier, - STATE(1859), 1, + STATE(1888), 1, sym_decltype_auto, - STATE(1902), 1, + STATE(1916), 1, sym_qualified_type_identifier, - STATE(4209), 1, + STATE(4234), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4455), 1, + STATE(4932), 1, sym_type_specifier, - STATE(6587), 1, + STATE(6727), 1, sym__scope_resolution, - STATE(8554), 1, - sym_type_descriptor, - STATE(8601), 1, + STATE(8569), 1, sym_dependent_type_identifier, + STATE(8669), 1, + sym_type_descriptor, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1713), 2, + STATE(1782), 2, sym_decltype, sym_template_type, - STATE(3904), 2, + STATE(3923), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1810), 4, + ACTIONS(1808), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1879), 7, + STATE(1890), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -387173,62 +392362,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [105578] = 26, + [107184] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1816), 1, + ACTIONS(1814), 1, anon_sym_enum, - ACTIONS(1818), 1, + ACTIONS(1816), 1, anon_sym_class, - ACTIONS(1820), 1, + ACTIONS(1818), 1, anon_sym_struct, - ACTIONS(1822), 1, + ACTIONS(1820), 1, anon_sym_union, - ACTIONS(1846), 1, + ACTIONS(1844), 1, sym_auto, - ACTIONS(1848), 1, + ACTIONS(1846), 1, anon_sym_decltype, - ACTIONS(1850), 1, + ACTIONS(1848), 1, anon_sym_typename, - ACTIONS(7955), 1, + ACTIONS(7980), 1, sym_identifier, - ACTIONS(7959), 1, + ACTIONS(7984), 1, anon_sym_COLON_COLON, - ACTIONS(7961), 1, + ACTIONS(7986), 1, sym_primitive_type, - STATE(1658), 1, + STATE(1680), 1, sym_alignas_qualifier, - STATE(1859), 1, + STATE(1888), 1, sym_decltype_auto, - STATE(1902), 1, + STATE(1916), 1, sym_qualified_type_identifier, - STATE(4209), 1, + STATE(4234), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4845), 1, + STATE(4528), 1, sym_type_specifier, - STATE(6587), 1, + STATE(6727), 1, sym__scope_resolution, - STATE(8558), 1, - sym_type_descriptor, - STATE(8601), 1, + STATE(8569), 1, sym_dependent_type_identifier, + STATE(8687), 1, + sym_type_descriptor, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1713), 2, + STATE(1782), 2, sym_decltype, sym_template_type, - STATE(3835), 2, + STATE(3891), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1810), 4, + ACTIONS(1808), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1879), 7, + STATE(1890), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -387250,116 +392439,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [105681] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5577), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_literal_suffix, - ACTIONS(5579), 31, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [105738] = 26, + [107287] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1816), 1, + ACTIONS(1814), 1, anon_sym_enum, - ACTIONS(1818), 1, + ACTIONS(1816), 1, anon_sym_class, - ACTIONS(1820), 1, + ACTIONS(1818), 1, anon_sym_struct, - ACTIONS(1822), 1, + ACTIONS(1820), 1, anon_sym_union, - ACTIONS(1846), 1, + ACTIONS(1844), 1, sym_auto, - ACTIONS(1848), 1, + ACTIONS(1846), 1, anon_sym_decltype, - ACTIONS(1850), 1, + ACTIONS(1848), 1, anon_sym_typename, - ACTIONS(7955), 1, + ACTIONS(7980), 1, sym_identifier, - ACTIONS(7959), 1, + ACTIONS(7984), 1, anon_sym_COLON_COLON, - ACTIONS(7961), 1, + ACTIONS(7986), 1, sym_primitive_type, - STATE(1658), 1, + STATE(1680), 1, sym_alignas_qualifier, - STATE(1859), 1, + STATE(1888), 1, sym_decltype_auto, - STATE(1902), 1, + STATE(1916), 1, sym_qualified_type_identifier, - STATE(4209), 1, + STATE(4234), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4455), 1, + STATE(4932), 1, sym_type_specifier, - STATE(6587), 1, + STATE(6727), 1, sym__scope_resolution, - STATE(8574), 1, - sym_type_descriptor, - STATE(8601), 1, + STATE(8569), 1, sym_dependent_type_identifier, + STATE(8691), 1, + sym_type_descriptor, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1713), 2, + STATE(1782), 2, sym_decltype, sym_template_type, - STATE(3904), 2, + STATE(3923), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1810), 4, + ACTIONS(1808), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1879), 7, + STATE(1890), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -387381,62 +392516,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [105841] = 26, + [107390] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1816), 1, + ACTIONS(1814), 1, anon_sym_enum, - ACTIONS(1818), 1, + ACTIONS(1816), 1, anon_sym_class, - ACTIONS(1820), 1, + ACTIONS(1818), 1, anon_sym_struct, - ACTIONS(1822), 1, + ACTIONS(1820), 1, anon_sym_union, - ACTIONS(1846), 1, + ACTIONS(1844), 1, sym_auto, - ACTIONS(1848), 1, + ACTIONS(1846), 1, anon_sym_decltype, - ACTIONS(1850), 1, + ACTIONS(1848), 1, anon_sym_typename, - ACTIONS(7955), 1, + ACTIONS(7980), 1, sym_identifier, - ACTIONS(7959), 1, + ACTIONS(7984), 1, anon_sym_COLON_COLON, - ACTIONS(7961), 1, + ACTIONS(7986), 1, sym_primitive_type, - STATE(1658), 1, + STATE(1680), 1, sym_alignas_qualifier, - STATE(1859), 1, + STATE(1888), 1, sym_decltype_auto, - STATE(1902), 1, + STATE(1916), 1, sym_qualified_type_identifier, - STATE(4209), 1, + STATE(4234), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4845), 1, + STATE(4528), 1, sym_type_specifier, - STATE(6587), 1, + STATE(6727), 1, sym__scope_resolution, - STATE(8578), 1, - sym_type_descriptor, - STATE(8601), 1, + STATE(8569), 1, sym_dependent_type_identifier, + STATE(8707), 1, + sym_type_descriptor, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1713), 2, + STATE(1782), 2, sym_decltype, sym_template_type, - STATE(3835), 2, + STATE(3891), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1810), 4, + ACTIONS(1808), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1879), 7, + STATE(1890), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -387458,62 +392593,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [105944] = 26, + [107493] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1816), 1, + ACTIONS(1814), 1, anon_sym_enum, - ACTIONS(1818), 1, + ACTIONS(1816), 1, anon_sym_class, - ACTIONS(1820), 1, + ACTIONS(1818), 1, anon_sym_struct, - ACTIONS(1822), 1, + ACTIONS(1820), 1, anon_sym_union, - ACTIONS(1846), 1, + ACTIONS(1844), 1, sym_auto, - ACTIONS(1848), 1, + ACTIONS(1846), 1, anon_sym_decltype, - ACTIONS(1850), 1, + ACTIONS(1848), 1, anon_sym_typename, - ACTIONS(7955), 1, + ACTIONS(7980), 1, sym_identifier, - ACTIONS(7959), 1, + ACTIONS(7984), 1, anon_sym_COLON_COLON, - ACTIONS(7961), 1, + ACTIONS(7986), 1, sym_primitive_type, - STATE(1658), 1, + STATE(1680), 1, sym_alignas_qualifier, - STATE(1859), 1, + STATE(1888), 1, sym_decltype_auto, - STATE(1902), 1, + STATE(1916), 1, sym_qualified_type_identifier, - STATE(4209), 1, + STATE(4234), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4455), 1, + STATE(4932), 1, sym_type_specifier, - STATE(6587), 1, + STATE(6727), 1, sym__scope_resolution, - STATE(8252), 1, - sym_type_descriptor, - STATE(8601), 1, + STATE(8569), 1, sym_dependent_type_identifier, + STATE(8711), 1, + sym_type_descriptor, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1713), 2, + STATE(1782), 2, sym_decltype, sym_template_type, - STATE(3904), 2, + STATE(3923), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1810), 4, + ACTIONS(1808), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1879), 7, + STATE(1890), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -387535,62 +392670,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [106047] = 26, + [107596] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1816), 1, + ACTIONS(1814), 1, anon_sym_enum, - ACTIONS(1818), 1, + ACTIONS(1816), 1, anon_sym_class, - ACTIONS(1820), 1, + ACTIONS(1818), 1, anon_sym_struct, - ACTIONS(1822), 1, + ACTIONS(1820), 1, anon_sym_union, - ACTIONS(1846), 1, + ACTIONS(1844), 1, sym_auto, - ACTIONS(1848), 1, + ACTIONS(1846), 1, anon_sym_decltype, - ACTIONS(1850), 1, + ACTIONS(1848), 1, anon_sym_typename, - ACTIONS(7955), 1, + ACTIONS(7980), 1, sym_identifier, - ACTIONS(7959), 1, + ACTIONS(7984), 1, anon_sym_COLON_COLON, - ACTIONS(7961), 1, + ACTIONS(7986), 1, sym_primitive_type, - STATE(1658), 1, + STATE(1680), 1, sym_alignas_qualifier, - STATE(1859), 1, + STATE(1888), 1, sym_decltype_auto, - STATE(1902), 1, + STATE(1916), 1, sym_qualified_type_identifier, - STATE(4209), 1, + STATE(4234), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4455), 1, + STATE(4528), 1, sym_type_specifier, - STATE(6587), 1, + STATE(6727), 1, sym__scope_resolution, - STATE(8593), 1, - sym_type_descriptor, - STATE(8601), 1, + STATE(8569), 1, sym_dependent_type_identifier, + STATE(8726), 1, + sym_type_descriptor, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1713), 2, + STATE(1782), 2, sym_decltype, sym_template_type, - STATE(3904), 2, + STATE(3891), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1810), 4, + ACTIONS(1808), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1879), 7, + STATE(1890), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -387612,62 +392747,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [106150] = 26, + [107699] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1816), 1, + ACTIONS(1814), 1, anon_sym_enum, - ACTIONS(1818), 1, + ACTIONS(1816), 1, anon_sym_class, - ACTIONS(1820), 1, + ACTIONS(1818), 1, anon_sym_struct, - ACTIONS(1822), 1, + ACTIONS(1820), 1, anon_sym_union, - ACTIONS(1846), 1, + ACTIONS(1844), 1, sym_auto, - ACTIONS(1848), 1, + ACTIONS(1846), 1, anon_sym_decltype, - ACTIONS(1850), 1, + ACTIONS(1848), 1, anon_sym_typename, - ACTIONS(7955), 1, + ACTIONS(7980), 1, sym_identifier, - ACTIONS(7959), 1, + ACTIONS(7984), 1, anon_sym_COLON_COLON, - ACTIONS(7961), 1, + ACTIONS(7986), 1, sym_primitive_type, - STATE(1658), 1, + STATE(1680), 1, sym_alignas_qualifier, - STATE(1859), 1, + STATE(1888), 1, sym_decltype_auto, - STATE(1902), 1, + STATE(1916), 1, sym_qualified_type_identifier, - STATE(4209), 1, + STATE(4234), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4845), 1, + STATE(4932), 1, sym_type_specifier, - STATE(6587), 1, + STATE(6727), 1, sym__scope_resolution, - STATE(8597), 1, - sym_type_descriptor, - STATE(8601), 1, + STATE(8569), 1, sym_dependent_type_identifier, + STATE(8730), 1, + sym_type_descriptor, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1713), 2, + STATE(1782), 2, sym_decltype, sym_template_type, - STATE(3835), 2, + STATE(3923), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1810), 4, + ACTIONS(1808), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1879), 7, + STATE(1890), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -387689,26 +392824,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [106253] = 10, + [107802] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, - anon_sym_LPAREN2, - ACTIONS(6429), 1, - anon_sym_LBRACK, - ACTIONS(6431), 1, - anon_sym_DOT, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8045), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6467), 18, + ACTIONS(5450), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -387726,8 +392845,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DOT, sym_identifier, - ACTIONS(6469), 22, + ACTIONS(2729), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -387735,6 +392855,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -387746,23 +392867,223 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, - [106324] = 4, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [107859] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5627), 1, - anon_sym_SEMI, - ACTIONS(5452), 6, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1814), 1, + anon_sym_enum, + ACTIONS(1816), 1, + anon_sym_class, + ACTIONS(1818), 1, + anon_sym_struct, + ACTIONS(1820), 1, + anon_sym_union, + ACTIONS(1844), 1, + sym_auto, + ACTIONS(1846), 1, + anon_sym_decltype, + ACTIONS(1848), 1, + anon_sym_typename, + ACTIONS(7980), 1, + sym_identifier, + ACTIONS(7984), 1, + anon_sym_COLON_COLON, + ACTIONS(7986), 1, + sym_primitive_type, + STATE(1680), 1, + sym_alignas_qualifier, + STATE(1888), 1, + sym_decltype_auto, + STATE(1916), 1, + sym_qualified_type_identifier, + STATE(4234), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4528), 1, + sym_type_specifier, + STATE(6727), 1, + sym__scope_resolution, + STATE(8569), 1, + sym_dependent_type_identifier, + STATE(8731), 1, + sym_type_descriptor, + ACTIONS(69), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1782), 2, + sym_decltype, + sym_template_type, + STATE(3891), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(1808), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1890), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [107962] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5140), 16, + 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_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5142), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [108018] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6666), 16, + 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_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6668), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [108074] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4187), 1, anon_sym_COLON_COLON, + ACTIONS(4936), 1, + anon_sym_LBRACK, + ACTIONS(7483), 1, + anon_sym_LT, + STATE(3998), 1, + sym_template_argument_list, + ACTIONS(4929), 3, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - ACTIONS(5450), 42, + ACTIONS(4932), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_EQ, + ACTIONS(4925), 35, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -387771,13 +393092,6 @@ static const uint16_t ts_small_parse_table[] = { 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_register, anon_sym_inline, @@ -387805,69 +393119,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [106383] = 25, + [108140] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(125), 1, - sym_auto, - ACTIONS(127), 1, - anon_sym_decltype, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(3911), 1, - sym_primitive_type, - ACTIONS(7968), 1, - sym_identifier, - ACTIONS(7970), 1, + ACTIONS(1936), 16, + 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_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1934), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [108196] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6532), 16, + 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_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6534), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [108252] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4187), 1, anon_sym_COLON_COLON, - ACTIONS(7972), 1, - anon_sym_enum, - ACTIONS(7974), 1, - anon_sym_class, - ACTIONS(7976), 1, - anon_sym_struct, - ACTIONS(7978), 1, - anon_sym_union, - ACTIONS(7980), 1, - anon_sym_typename, - STATE(1658), 1, - sym_alignas_qualifier, - STATE(2501), 1, - sym_decltype_auto, - STATE(2674), 1, + ACTIONS(6580), 1, + anon_sym_LT, + ACTIONS(8123), 1, + anon_sym_LBRACK, + STATE(2660), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2809), 1, - sym_qualified_type_identifier, - STATE(4301), 1, - sym_type_specifier, - STATE(6630), 1, - sym__scope_resolution, - STATE(8601), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1633), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(2406), 2, - sym_decltype, - sym_template_type, - ACTIONS(3909), 4, + STATE(4297), 1, + sym_template_argument_list, + ACTIONS(4189), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(4172), 3, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + ACTIONS(4194), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2523), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, + ACTIONS(4164), 34, + anon_sym_AMP, anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + 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, @@ -387880,10 +393279,289 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [106483] = 3, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_operator, + [108322] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6536), 16, + 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_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6538), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [108378] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3623), 1, + anon_sym_LBRACE, + ACTIONS(7992), 1, + anon_sym_LBRACK, + ACTIONS(8125), 1, + anon_sym_LPAREN2, + ACTIONS(8127), 1, + sym_auto, + ACTIONS(8129), 1, + anon_sym_decltype, + STATE(4043), 1, + sym_new_declarator, + STATE(4145), 1, + sym_decltype_auto, + STATE(3939), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5853), 17, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(5855), 22, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + 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_LT, + anon_sym_GT_GT, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [108450] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5160), 16, + 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_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5162), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [108506] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3903), 19, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(3899), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_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_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [108562] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6576), 19, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(6578), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_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_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [108618] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6672), 16, + ACTIONS(5148), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -387900,7 +393578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6674), 32, + ACTIONS(5150), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -387933,10 +393611,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [106539] = 3, + [108674] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6590), 19, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(6592), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_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_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [108730] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6676), 16, + ACTIONS(5152), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -387953,7 +393684,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6678), 32, + ACTIONS(5154), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -387985,11 +393716,262 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [106595] = 3, + anon_sym_DASH_GT_STAR, + [108786] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1814), 1, + anon_sym_enum, + ACTIONS(1816), 1, + anon_sym_class, + ACTIONS(1818), 1, + anon_sym_struct, + ACTIONS(1820), 1, + anon_sym_union, + ACTIONS(1844), 1, + sym_auto, + ACTIONS(1846), 1, + anon_sym_decltype, + ACTIONS(1848), 1, + anon_sym_typename, + ACTIONS(7980), 1, + sym_identifier, + ACTIONS(7984), 1, + anon_sym_COLON_COLON, + ACTIONS(7986), 1, + sym_primitive_type, + STATE(1680), 1, + sym_alignas_qualifier, + STATE(1888), 1, + sym_decltype_auto, + STATE(1916), 1, + sym_qualified_type_identifier, + STATE(4234), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4896), 1, + sym_type_specifier, + STATE(6727), 1, + sym__scope_resolution, + STATE(8569), 1, + sym_dependent_type_identifier, + ACTIONS(69), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1669), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(1782), 2, + sym_decltype, + sym_template_type, + ACTIONS(1808), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1890), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [108886] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5601), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + sym_literal_suffix, + ACTIONS(5603), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_GT2, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [108942] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5641), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + sym_literal_suffix, + ACTIONS(5643), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_GT2, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [108998] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6666), 19, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(6668), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_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_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [109054] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(6660), 19, + ACTIONS(3623), 1, + anon_sym_LBRACE, + ACTIONS(7992), 1, + anon_sym_LBRACK, + ACTIONS(8125), 1, + anon_sym_LPAREN2, + ACTIONS(8127), 1, + sym_auto, + ACTIONS(8129), 1, + anon_sym_decltype, + STATE(4057), 1, + sym_new_declarator, + STATE(4145), 1, + sym_decltype_auto, + STATE(3863), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5881), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -387999,8 +393981,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -388009,15 +393989,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6662), 29, + ACTIONS(5883), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -388028,21 +394006,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [106651] = 3, + [109126] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6680), 16, + ACTIONS(6722), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -388059,7 +394032,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6682), 32, + ACTIONS(6724), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -388092,10 +394065,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [106707] = 3, + [109182] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5188), 16, + ACTIONS(6714), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -388112,7 +394085,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5190), 32, + ACTIONS(6716), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -388145,11 +394118,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [106763] = 3, + [109238] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(6558), 19, - aux_sym_preproc_elif_token1, + ACTIONS(125), 1, + sym_auto, + ACTIONS(127), 1, + anon_sym_decltype, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(3919), 1, + sym_primitive_type, + ACTIONS(8058), 1, + sym_identifier, + ACTIONS(8060), 1, + anon_sym_COLON_COLON, + ACTIONS(8062), 1, + anon_sym_enum, + ACTIONS(8064), 1, + anon_sym_class, + ACTIONS(8066), 1, + anon_sym_struct, + ACTIONS(8068), 1, + anon_sym_union, + ACTIONS(8070), 1, + anon_sym_typename, + STATE(1680), 1, + sym_alignas_qualifier, + STATE(2453), 1, + sym_decltype_auto, + STATE(2695), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2836), 1, + sym_qualified_type_identifier, + STATE(4054), 1, + sym_type_specifier, + STATE(6729), 1, + sym__scope_resolution, + STATE(8569), 1, + sym_dependent_type_identifier, + ACTIONS(69), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1669), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(2439), 2, + sym_decltype, + sym_template_type, + ACTIONS(3917), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2558), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [109338] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6031), 1, + anon_sym___attribute__, + ACTIONS(6033), 1, + anon_sym___attribute, + ACTIONS(6256), 1, + anon_sym_LBRACE, + ACTIONS(8131), 1, + anon_sym_COLON, + STATE(1880), 1, + sym_attribute_specifier, + STATE(2273), 1, + sym__enum_base_clause, + STATE(2387), 1, + sym_enumerator_list, + ACTIONS(6393), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -388158,24 +394219,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(6560), 29, + ACTIONS(6395), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -388188,133 +394236,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_COLON, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [106819] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6684), 19, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(6686), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_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_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [106875] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4167), 1, - anon_sym_COLON_COLON, - ACTIONS(6630), 1, - anon_sym_LT, - ACTIONS(8093), 1, - anon_sym_LBRACK, - STATE(2641), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4226), 1, - sym_template_argument_list, - ACTIONS(4169), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(4152), 3, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - ACTIONS(4174), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4144), 34, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_operator, - [106945] = 3, + [109408] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6706), 16, + ACTIONS(5144), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -388331,7 +394273,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6708), 32, + ACTIONS(5146), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -388364,48 +394306,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [107001] = 3, + [109464] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6566), 16, + ACTIONS(6031), 1, + anon_sym___attribute__, + ACTIONS(6033), 1, + anon_sym___attribute, + ACTIONS(6256), 1, + anon_sym_LBRACE, + ACTIONS(8131), 1, + anon_sym_COLON, + STATE(1898), 1, + sym_attribute_specifier, + STATE(2276), 1, + sym__enum_base_clause, + STATE(2394), 1, + sym_enumerator_list, + ACTIONS(6316), 9, 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_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6568), 32, + ACTIONS(6318), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, 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_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -388416,11 +394363,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [107057] = 3, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [109534] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6606), 16, + ACTIONS(6540), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -388437,7 +394386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6608), 32, + ACTIONS(6542), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -388470,10 +394419,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [107113] = 3, + [109590] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(6610), 16, + ACTIONS(3623), 1, + anon_sym_LBRACE, + ACTIONS(7992), 1, + anon_sym_LBRACK, + ACTIONS(8125), 1, + anon_sym_LPAREN2, + ACTIONS(8127), 1, + sym_auto, + ACTIONS(8129), 1, + anon_sym_decltype, + STATE(4050), 1, + sym_new_declarator, + STATE(4145), 1, + sym_decltype_auto, + STATE(3958), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5841), 17, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(5843), 22, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + 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_LT, + anon_sym_GT_GT, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [109662] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5180), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -388490,7 +394500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6612), 32, + ACTIONS(5182), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -388523,10 +394533,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [107169] = 3, + [109718] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6582), 16, + ACTIONS(6594), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -388543,7 +394553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6584), 32, + ACTIONS(6596), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -388576,10 +394586,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [107225] = 3, + [109774] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6570), 16, + ACTIONS(8133), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6248), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -388596,13 +394609,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6572), 32, + ACTIONS(6250), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -388620,7 +394632,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, - anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, @@ -388629,10 +394640,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [107281] = 3, + [109832] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(6614), 16, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(3146), 1, + anon_sym_enum, + ACTIONS(3148), 1, + anon_sym_class, + ACTIONS(3150), 1, + anon_sym_struct, + ACTIONS(3152), 1, + anon_sym_union, + ACTIONS(3176), 1, + sym_auto, + ACTIONS(3178), 1, + anon_sym_decltype, + ACTIONS(3180), 1, + anon_sym_typename, + ACTIONS(8020), 1, + sym_identifier, + ACTIONS(8022), 1, + anon_sym_COLON_COLON, + ACTIONS(8024), 1, + sym_primitive_type, + STATE(1680), 1, + sym_alignas_qualifier, + STATE(2685), 1, + sym_qualified_type_identifier, + STATE(2733), 1, + sym_decltype_auto, + STATE(4313), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4375), 1, + sym_type_specifier, + STATE(6738), 1, + sym__scope_resolution, + STATE(8569), 1, + sym_dependent_type_identifier, + ACTIONS(69), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1669), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(2621), 2, + sym_decltype, + sym_template_type, + ACTIONS(3142), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2747), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [109932] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6662), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -388649,7 +394735,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6616), 32, + ACTIONS(6664), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -388682,10 +394768,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [107337] = 3, + [109988] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6586), 16, + ACTIONS(5184), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -388702,7 +394788,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6588), 32, + ACTIONS(5186), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -388735,10 +394821,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [107393] = 3, + [110044] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5442), 16, + ACTIONS(6544), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -388755,7 +394841,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2685), 32, + ACTIONS(6546), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -388788,107 +394874,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [107449] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4167), 1, - anon_sym_COLON_COLON, - ACTIONS(4974), 1, - anon_sym_LBRACK, - ACTIONS(7386), 1, - anon_sym_LT, - STATE(3962), 1, - sym_template_argument_list, - ACTIONS(4967), 3, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(4970), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_EQ, - ACTIONS(4963), 35, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [107515] = 7, + [110100] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4167), 1, - anon_sym_COLON_COLON, - STATE(1603), 1, - sym_template_argument_list, - STATE(2355), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5060), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5977), 12, + ACTIONS(6548), 16, 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_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(5979), 29, + anon_sym_DASH_GT, + ACTIONS(6550), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -388899,64 +394926,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [107579] = 25, + anon_sym_DASH_GT_STAR, + [110156] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(8053), 1, + ACTIONS(8032), 1, + sym_primitive_type, + ACTIONS(8042), 1, + sym_auto, + ACTIONS(8044), 1, + anon_sym_decltype, + ACTIONS(8072), 1, sym_identifier, - ACTIONS(8055), 1, + ACTIONS(8074), 1, anon_sym_COLON_COLON, - ACTIONS(8059), 1, - sym_primitive_type, - ACTIONS(8061), 1, + ACTIONS(8076), 1, anon_sym_enum, - ACTIONS(8063), 1, + ACTIONS(8078), 1, anon_sym_class, - ACTIONS(8065), 1, + ACTIONS(8080), 1, anon_sym_struct, - ACTIONS(8067), 1, + ACTIONS(8082), 1, anon_sym_union, - ACTIONS(8069), 1, - sym_auto, - ACTIONS(8071), 1, - anon_sym_decltype, - ACTIONS(8073), 1, + ACTIONS(8084), 1, anon_sym_typename, - STATE(1658), 1, + STATE(1680), 1, sym_alignas_qualifier, - STATE(2809), 1, + STATE(2836), 1, sym_qualified_type_identifier, - STATE(3931), 1, + STATE(4024), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4130), 1, + STATE(4423), 1, sym_type_specifier, - STATE(4612), 1, + STATE(4672), 1, sym_decltype_auto, - STATE(6592), 1, + STATE(6743), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(8569), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1633), 2, + STATE(1669), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(2406), 2, + STATE(2439), 2, sym_decltype, sym_template_type, - ACTIONS(8057), 4, + ACTIONS(8030), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4706), 7, + STATE(4773), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -388978,41 +395002,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [107679] = 7, + [110256] = 25, ACTIONS(3), 1, sym_comment, - STATE(4043), 1, - sym_ms_unaligned_ptr_modifier, - ACTIONS(8098), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3820), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(8095), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(7779), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(7998), 1, + sym_identifier, + ACTIONS(8000), 1, anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(7777), 27, - anon_sym_AMP, + ACTIONS(8004), 1, + sym_primitive_type, + ACTIONS(8006), 1, + anon_sym_enum, + ACTIONS(8008), 1, + anon_sym_class, + ACTIONS(8010), 1, + anon_sym_struct, + ACTIONS(8012), 1, + anon_sym_union, + ACTIONS(8014), 1, + sym_auto, + ACTIONS(8016), 1, + anon_sym_decltype, + ACTIONS(8018), 1, + anon_sym_typename, + STATE(1680), 1, + sym_alignas_qualifier, + STATE(4150), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4213), 1, + sym_type_specifier, + STATE(4975), 1, + sym_qualified_type_identifier, + STATE(4979), 1, + sym_decltype_auto, + STATE(6731), 1, + sym__scope_resolution, + STATE(8569), 1, + sym_dependent_type_identifier, + ACTIONS(69), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1669), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(4943), 2, + sym_decltype, + sym_template_type, + ACTIONS(8002), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4980), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, anon_sym___extension__, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___based, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -389025,20 +395077,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [107743] = 3, + [110356] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6644), 19, + ACTIONS(6572), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -389058,7 +395100,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6646), 29, + ACTIONS(6574), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -389088,248 +395130,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [107799] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3615), 1, - anon_sym_LBRACE, - ACTIONS(7953), 1, - anon_sym_LBRACK, - ACTIONS(8101), 1, - anon_sym_LPAREN2, - ACTIONS(8103), 1, - sym_auto, - ACTIONS(8105), 1, - anon_sym_decltype, - STATE(4006), 1, - sym_new_declarator, - STATE(4096), 1, - sym_decltype_auto, - STATE(3840), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(5823), 17, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(5825), 22, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - 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_LT, - anon_sym_GT_GT, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [107871] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3615), 1, - anon_sym_LBRACE, - ACTIONS(7953), 1, - anon_sym_LBRACK, - ACTIONS(8101), 1, - anon_sym_LPAREN2, - ACTIONS(8103), 1, - sym_auto, - ACTIONS(8105), 1, - anon_sym_decltype, - STATE(3993), 1, - sym_new_declarator, - STATE(4096), 1, - sym_decltype_auto, - STATE(3865), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(5873), 17, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(5875), 22, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - 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_LT, - anon_sym_GT_GT, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [107943] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3615), 1, - anon_sym_LBRACE, - ACTIONS(7953), 1, - anon_sym_LBRACK, - ACTIONS(8101), 1, - anon_sym_LPAREN2, - ACTIONS(8103), 1, - sym_auto, - ACTIONS(8105), 1, - anon_sym_decltype, - STATE(4004), 1, - sym_new_declarator, - STATE(4096), 1, - sym_decltype_auto, - STATE(3844), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(5869), 17, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(5871), 22, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - 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_LT, - anon_sym_GT_GT, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [108015] = 21, + [110412] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(7059), 1, + ACTIONS(3335), 1, + sym_ms_restrict_modifier, + ACTIONS(3339), 1, anon_sym_const, - ACTIONS(7842), 1, + ACTIONS(5020), 1, anon_sym_LPAREN2, - ACTIONS(7850), 1, - sym_ms_restrict_modifier, - ACTIONS(7856), 1, - anon_sym_LBRACK, - ACTIONS(8107), 1, + ACTIONS(5871), 1, + anon_sym___attribute, + ACTIONS(8135), 1, anon_sym_STAR, - ACTIONS(8109), 1, + ACTIONS(8137), 1, anon_sym_AMP_AMP, - ACTIONS(8111), 1, + ACTIONS(8139), 1, anon_sym_AMP, - STATE(2890), 1, + ACTIONS(8147), 1, + anon_sym_LBRACK, + STATE(3111), 1, sym_parameter_list, - STATE(3761), 1, + STATE(4069), 1, sym_ms_unaligned_ptr_modifier, - STATE(3992), 1, + STATE(4325), 1, sym_alignas_qualifier, - STATE(5792), 1, + STATE(6109), 1, sym__function_declarator_seq, - STATE(6344), 1, + STATE(6416), 1, sym__abstract_declarator, - ACTIONS(7061), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(7852), 2, + ACTIONS(8143), 2, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(7854), 2, + ACTIONS(8145), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(3872), 2, + ACTIONS(8149), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3885), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4271), 2, + STATE(4328), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(5804), 5, + STATE(6099), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(5851), 9, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, + ACTIONS(5863), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, anon_sym_EQ, anon_sym_final, anon_sym_override, - anon_sym_try, + anon_sym_GT2, anon_sym_requires, - ACTIONS(7046), 12, + ACTIONS(8141), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -389342,336 +395202,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [108107] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3615), 1, - anon_sym_LBRACE, - ACTIONS(7953), 1, - anon_sym_LBRACK, - ACTIONS(8101), 1, - anon_sym_LPAREN2, - ACTIONS(8103), 1, - sym_auto, - ACTIONS(8105), 1, - anon_sym_decltype, - STATE(3976), 1, - sym_new_declarator, - STATE(4096), 1, - sym_decltype_auto, - STATE(3898), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(5842), 17, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(5844), 22, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - 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_LT, - anon_sym_GT_GT, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [108179] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6582), 19, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(6584), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_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_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [108235] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6586), 19, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(6588), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_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_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [108291] = 3, + [110506] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(6590), 16, - 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_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6592), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3335), 1, + sym_ms_restrict_modifier, + ACTIONS(3339), 1, + anon_sym_const, + ACTIONS(5020), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [108347] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6636), 19, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute__, + ACTIONS(5879), 1, anon_sym___attribute, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(6638), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, + ACTIONS(8135), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(8137), 1, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [108403] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6594), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(8139), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6596), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + ACTIONS(8147), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [108459] = 3, + STATE(3111), 1, + sym_parameter_list, + STATE(4069), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4325), 1, + sym_alignas_qualifier, + STATE(6109), 1, + sym__function_declarator_seq, + STATE(6419), 1, + sym__abstract_declarator, + ACTIONS(8143), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8145), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(8149), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3962), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4330), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6099), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(5877), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(8141), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [110600] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6528), 16, + ACTIONS(4174), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -389688,7 +395294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6530), 32, + ACTIONS(4166), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -389721,10 +395327,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [108515] = 3, + [110656] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6648), 19, + ACTIONS(6686), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -389744,7 +395350,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6650), 29, + ACTIONS(6688), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -389774,113 +395380,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [108571] = 3, + [110712] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6652), 19, - aux_sym_preproc_elif_token1, + ACTIONS(6552), 16, 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_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_DOT, - sym_identifier, - ACTIONS(6654), 29, + anon_sym_DASH_GT, + ACTIONS(6554), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_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_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, 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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [108627] = 25, + anon_sym_DASH_GT_STAR, + [110768] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1816), 1, + ACTIONS(1814), 1, anon_sym_enum, - ACTIONS(1818), 1, + ACTIONS(1816), 1, anon_sym_class, - ACTIONS(1820), 1, + ACTIONS(1818), 1, anon_sym_struct, - ACTIONS(1822), 1, + ACTIONS(1820), 1, anon_sym_union, - ACTIONS(1846), 1, + ACTIONS(1844), 1, sym_auto, - ACTIONS(1848), 1, + ACTIONS(1846), 1, anon_sym_decltype, - ACTIONS(1850), 1, + ACTIONS(1848), 1, anon_sym_typename, - ACTIONS(7955), 1, + ACTIONS(7980), 1, sym_identifier, - ACTIONS(7959), 1, + ACTIONS(7984), 1, anon_sym_COLON_COLON, - ACTIONS(7961), 1, + ACTIONS(7986), 1, sym_primitive_type, - STATE(1658), 1, + STATE(1680), 1, sym_alignas_qualifier, - STATE(1859), 1, + STATE(1888), 1, sym_decltype_auto, - STATE(1902), 1, + STATE(1916), 1, sym_qualified_type_identifier, - STATE(4209), 1, + STATE(4234), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4860), 1, + STATE(4298), 1, sym_type_specifier, - STATE(6587), 1, + STATE(6727), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(8569), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1633), 2, + STATE(1669), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(1713), 2, + STATE(1782), 2, sym_decltype, sym_template_type, - ACTIONS(1810), 4, + ACTIONS(1808), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1879), 7, + STATE(1890), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -389902,10 +395508,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [108727] = 3, + [110868] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5192), 16, + ACTIONS(6556), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -389922,7 +395528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5194), 32, + ACTIONS(6558), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -389955,119 +395561,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [108783] = 5, + [110924] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(8113), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8115), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(6253), 16, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1814), 1, + anon_sym_enum, + ACTIONS(1816), 1, + anon_sym_class, + ACTIONS(1818), 1, + anon_sym_struct, + ACTIONS(1820), 1, + anon_sym_union, + ACTIONS(1844), 1, + sym_auto, + ACTIONS(1846), 1, + anon_sym_decltype, + ACTIONS(1848), 1, + anon_sym_typename, + ACTIONS(7980), 1, + sym_identifier, + ACTIONS(7984), 1, + anon_sym_COLON_COLON, + ACTIONS(7986), 1, + sym_primitive_type, + STATE(1680), 1, + sym_alignas_qualifier, + STATE(1888), 1, + sym_decltype_auto, + STATE(1916), 1, + sym_qualified_type_identifier, + STATE(4234), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4494), 1, + sym_type_specifier, + STATE(6727), 1, + sym__scope_resolution, + STATE(8569), 1, + sym_dependent_type_identifier, + ACTIONS(69), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1669), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(1782), 2, + sym_decltype, + sym_template_type, + ACTIONS(1808), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1890), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [111024] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5470), 19, 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_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6255), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [108843] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8115), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(6178), 16, - 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_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6180), 30, + sym_identifier, + sym_literal_suffix, + ACTIONS(5472), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LT_LT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [108901] = 3, + anon_sym_DASH_GT, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_GT2, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [111080] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5148), 16, + ACTIONS(6650), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -390084,7 +395709,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5150), 32, + ACTIONS(6652), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -390117,21 +395742,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [108957] = 3, + [111136] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6528), 19, - aux_sym_preproc_elif_token1, + ACTIONS(5477), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, + anon_sym_GT_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -390140,14 +395764,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6530), 29, + sym_literal_suffix, + ACTIONS(5479), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -390156,127 +395776,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [109013] = 3, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_GT2, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [111192] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(6618), 16, + ACTIONS(3623), 1, + anon_sym_LBRACE, + ACTIONS(7992), 1, + anon_sym_LBRACK, + ACTIONS(8125), 1, + anon_sym_LPAREN2, + ACTIONS(8127), 1, + sym_auto, + ACTIONS(8129), 1, + anon_sym_decltype, + STATE(4044), 1, + sym_new_declarator, + STATE(4145), 1, + sym_decltype_auto, + STATE(3927), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5857), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6620), 32, + sym_identifier, + ACTIONS(5859), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + 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_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, 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_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [109069] = 25, + anon_sym_DASH_GT, + [111264] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(125), 1, + sym_auto, + ACTIONS(127), 1, + anon_sym_decltype, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(8019), 1, + ACTIONS(3907), 1, sym_identifier, - ACTIONS(8021), 1, + ACTIONS(3915), 1, anon_sym_COLON_COLON, - ACTIONS(8025), 1, + ACTIONS(3919), 1, sym_primitive_type, - ACTIONS(8027), 1, + ACTIONS(3921), 1, anon_sym_enum, - ACTIONS(8029), 1, + ACTIONS(3923), 1, anon_sym_class, - ACTIONS(8031), 1, + ACTIONS(3925), 1, anon_sym_struct, - ACTIONS(8033), 1, + ACTIONS(3927), 1, anon_sym_union, - ACTIONS(8035), 1, - sym_auto, - ACTIONS(8037), 1, - anon_sym_decltype, - ACTIONS(8039), 1, + ACTIONS(3929), 1, anon_sym_typename, - STATE(1658), 1, + STATE(1680), 1, sym_alignas_qualifier, - STATE(4069), 1, + STATE(2453), 1, + sym_decltype_auto, + STATE(2695), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4245), 1, - sym_type_specifier, - STATE(4947), 1, + STATE(2836), 1, sym_qualified_type_identifier, - STATE(4948), 1, - sym_decltype_auto, - STATE(6632), 1, + STATE(4101), 1, + sym_type_specifier, + STATE(6697), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(8569), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1633), 2, + STATE(1669), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(4894), 2, + STATE(2439), 2, sym_decltype, sym_template_type, - ACTIONS(8023), 4, + ACTIONS(3917), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4919), 7, + STATE(2558), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -390298,63 +395931,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [109169] = 3, + [111364] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(6590), 19, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(3146), 1, + anon_sym_enum, + ACTIONS(3148), 1, + anon_sym_class, + ACTIONS(3150), 1, + anon_sym_struct, + ACTIONS(3152), 1, + anon_sym_union, + ACTIONS(3176), 1, + sym_auto, + ACTIONS(3178), 1, + anon_sym_decltype, + ACTIONS(3180), 1, + anon_sym_typename, + ACTIONS(8020), 1, sym_identifier, - ACTIONS(6592), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_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_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [109225] = 3, + ACTIONS(8022), 1, + anon_sym_COLON_COLON, + ACTIONS(8024), 1, + sym_primitive_type, + STATE(1680), 1, + sym_alignas_qualifier, + STATE(2685), 1, + sym_qualified_type_identifier, + STATE(2733), 1, + sym_decltype_auto, + STATE(4313), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4314), 1, + sym_type_specifier, + STATE(6738), 1, + sym__scope_resolution, + STATE(8569), 1, + sym_dependent_type_identifier, + ACTIONS(69), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1669), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(2621), 2, + sym_decltype, + sym_template_type, + ACTIONS(3142), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2747), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [111464] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6594), 19, + ACTIONS(4174), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -390374,7 +396029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6596), 29, + ACTIONS(4166), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -390404,10 +396059,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [109281] = 3, + [111520] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3895), 19, + ACTIONS(6614), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -390427,7 +396082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(3891), 29, + ACTIONS(6616), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -390457,166 +396112,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [109337] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1940), 16, - 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_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1938), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [109393] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6622), 16, - 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_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6624), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [109449] = 25, + [111576] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(8053), 1, - sym_identifier, - ACTIONS(8055), 1, - anon_sym_COLON_COLON, - ACTIONS(8059), 1, - sym_primitive_type, - ACTIONS(8061), 1, + ACTIONS(1814), 1, anon_sym_enum, - ACTIONS(8063), 1, + ACTIONS(1816), 1, anon_sym_class, - ACTIONS(8065), 1, + ACTIONS(1818), 1, anon_sym_struct, - ACTIONS(8067), 1, + ACTIONS(1820), 1, anon_sym_union, - ACTIONS(8069), 1, + ACTIONS(1844), 1, sym_auto, - ACTIONS(8071), 1, + ACTIONS(1846), 1, anon_sym_decltype, - ACTIONS(8073), 1, + ACTIONS(1848), 1, anon_sym_typename, - STATE(1658), 1, + ACTIONS(7980), 1, + sym_identifier, + ACTIONS(7984), 1, + anon_sym_COLON_COLON, + ACTIONS(7986), 1, + sym_primitive_type, + STATE(1680), 1, sym_alignas_qualifier, - STATE(2809), 1, + STATE(1888), 1, + sym_decltype_auto, + STATE(1916), 1, sym_qualified_type_identifier, - STATE(3931), 1, + STATE(4234), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3977), 1, + STATE(4272), 1, sym_type_specifier, - STATE(4612), 1, - sym_decltype_auto, - STATE(6592), 1, + STATE(6727), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(8569), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1633), 2, + STATE(1669), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(2406), 2, + STATE(1782), 2, sym_decltype, sym_template_type, - ACTIONS(8057), 4, + ACTIONS(1808), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4706), 7, + STATE(1890), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -390638,113 +396187,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [109549] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1936), 16, - 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_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1934), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [109605] = 25, + [111676] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(8053), 1, + ACTIONS(8026), 1, sym_identifier, - ACTIONS(8055), 1, + ACTIONS(8028), 1, anon_sym_COLON_COLON, - ACTIONS(8059), 1, + ACTIONS(8032), 1, sym_primitive_type, - ACTIONS(8061), 1, + ACTIONS(8034), 1, anon_sym_enum, - ACTIONS(8063), 1, + ACTIONS(8036), 1, anon_sym_class, - ACTIONS(8065), 1, + ACTIONS(8038), 1, anon_sym_struct, - ACTIONS(8067), 1, + ACTIONS(8040), 1, anon_sym_union, - ACTIONS(8069), 1, + ACTIONS(8042), 1, sym_auto, - ACTIONS(8071), 1, + ACTIONS(8044), 1, anon_sym_decltype, - ACTIONS(8073), 1, + ACTIONS(8046), 1, anon_sym_typename, - STATE(1658), 1, + STATE(1680), 1, sym_alignas_qualifier, - STATE(2809), 1, + STATE(2836), 1, sym_qualified_type_identifier, - STATE(3931), 1, + STATE(4024), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3988), 1, + STATE(4029), 1, sym_type_specifier, - STATE(4612), 1, + STATE(4672), 1, sym_decltype_auto, - STATE(6592), 1, + STATE(6719), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(8569), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1633), 2, + STATE(1669), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(2406), 2, + STATE(2439), 2, sym_decltype, sym_template_type, - ACTIONS(8057), 4, + ACTIONS(8030), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4706), 7, + STATE(4773), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -390766,63 +396262,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [109705] = 3, + [111776] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6714), 16, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(7065), 1, + anon_sym_const, + ACTIONS(7848), 1, + anon_sym_LPAREN2, + ACTIONS(7856), 1, + sym_ms_restrict_modifier, + ACTIONS(7862), 1, + anon_sym_LBRACK, + ACTIONS(8151), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(8153), 1, + anon_sym_AMP_AMP, + ACTIONS(8155), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + STATE(2963), 1, + sym_parameter_list, + STATE(3758), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4036), 1, + sym_alignas_qualifier, + STATE(5953), 1, + sym__function_declarator_seq, + STATE(6394), 1, + sym__abstract_declarator, + ACTIONS(7067), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7858), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(7860), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3386), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4339), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5952), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(5877), 9, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6716), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [109761] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(7052), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [111868] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5162), 16, + ACTIONS(6598), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -390839,7 +396353,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5164), 32, + ACTIONS(6600), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -390872,116 +396386,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [109817] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6632), 19, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(6634), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_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_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [109873] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6664), 19, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(6666), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_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_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [109929] = 3, + [111924] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6694), 16, + ACTIONS(6572), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -390998,7 +396406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6696), 32, + ACTIONS(6574), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -391031,60 +396439,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [109985] = 25, + [111980] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(125), 1, + sym_auto, + ACTIONS(127), 1, + anon_sym_decltype, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1816), 1, + ACTIONS(3919), 1, + sym_primitive_type, + ACTIONS(8058), 1, + sym_identifier, + ACTIONS(8060), 1, + anon_sym_COLON_COLON, + ACTIONS(8062), 1, anon_sym_enum, - ACTIONS(1818), 1, + ACTIONS(8064), 1, anon_sym_class, - ACTIONS(1820), 1, + ACTIONS(8066), 1, anon_sym_struct, - ACTIONS(1822), 1, + ACTIONS(8068), 1, anon_sym_union, - ACTIONS(1846), 1, - sym_auto, - ACTIONS(1848), 1, - anon_sym_decltype, - ACTIONS(1850), 1, + ACTIONS(8070), 1, anon_sym_typename, - ACTIONS(7955), 1, - sym_identifier, - ACTIONS(7959), 1, - anon_sym_COLON_COLON, - ACTIONS(7961), 1, - sym_primitive_type, - STATE(1658), 1, + STATE(1680), 1, sym_alignas_qualifier, - STATE(1859), 1, + STATE(2453), 1, sym_decltype_auto, - STATE(1902), 1, - sym_qualified_type_identifier, - STATE(4209), 1, + STATE(2695), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4560), 1, + STATE(2836), 1, + sym_qualified_type_identifier, + STATE(4158), 1, sym_type_specifier, - STATE(6587), 1, + STATE(6729), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(8569), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1633), 2, + STATE(1669), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(1713), 2, + STATE(2439), 2, sym_decltype, sym_template_type, - ACTIONS(1810), 4, + ACTIONS(3917), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1879), 7, + STATE(2558), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -391106,169 +396514,191 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [110085] = 3, + [112080] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5478), 19, + ACTIONS(5170), 16, 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_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_EQ, anon_sym_DOT, - sym_identifier, - sym_literal_suffix, - ACTIONS(5480), 29, + anon_sym_DASH_GT, + ACTIONS(5172), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_GT2, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [110141] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5577), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - sym_literal_suffix, - ACTIONS(5579), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_GT2, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [110197] = 3, + anon_sym_DASH_GT_STAR, + [112136] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6668), 19, - aux_sym_preproc_elif_token1, + ACTIONS(6576), 16, 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_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_DOT, - sym_identifier, - ACTIONS(6670), 29, + anon_sym_DASH_GT, + ACTIONS(6578), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_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_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, 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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [110253] = 3, + anon_sym_DASH_GT_STAR, + [112192] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(125), 1, + sym_auto, + ACTIONS(127), 1, + anon_sym_decltype, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(3919), 1, + sym_primitive_type, + ACTIONS(8058), 1, + sym_identifier, + ACTIONS(8060), 1, + anon_sym_COLON_COLON, + ACTIONS(8062), 1, + anon_sym_enum, + ACTIONS(8064), 1, + anon_sym_class, + ACTIONS(8066), 1, + anon_sym_struct, + ACTIONS(8068), 1, + anon_sym_union, + ACTIONS(8070), 1, + anon_sym_typename, + STATE(1680), 1, + sym_alignas_qualifier, + STATE(2453), 1, + sym_decltype_auto, + STATE(2695), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2836), 1, + sym_qualified_type_identifier, + STATE(4371), 1, + sym_type_specifier, + STATE(6729), 1, + sym__scope_resolution, + STATE(8569), 1, + sym_dependent_type_identifier, + ACTIONS(69), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1669), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(2439), 2, + sym_decltype, + sym_template_type, + ACTIONS(3917), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2558), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [112292] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6524), 16, + ACTIONS(5156), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -391285,7 +396715,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6526), 32, + ACTIONS(5158), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -391318,63 +396748,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [110309] = 3, + [112348] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6672), 19, - aux_sym_preproc_elif_token1, + ACTIONS(6698), 16, 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_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_DOT, - sym_identifier, - ACTIONS(6674), 29, + anon_sym_DASH_GT, + ACTIONS(6700), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_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_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, 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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [110365] = 3, + anon_sym_DASH_GT_STAR, + [112404] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6632), 16, + ACTIONS(6590), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -391391,7 +396821,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6634), 32, + ACTIONS(6592), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -391424,10 +396854,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [110421] = 3, + [112460] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5136), 16, + ACTIONS(6718), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -391444,7 +396874,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5138), 32, + ACTIONS(6720), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -391477,10 +396907,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [110477] = 3, + [112516] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6558), 16, + ACTIONS(6560), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -391497,7 +396927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6560), 32, + ACTIONS(6562), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -391530,10 +396960,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [110533] = 3, + [112572] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6562), 19, + ACTIONS(7965), 1, + anon_sym_LBRACE, + STATE(4011), 1, + sym_enumerator_list, + STATE(4124), 1, + sym_attribute_specifier, + ACTIONS(6033), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(6066), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -391543,8 +396982,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -391553,10 +396990,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6564), 29, + sym_auto, + anon_sym_decltype, + ACTIONS(6068), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, @@ -391572,127 +397010,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [110589] = 3, + [112636] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6676), 19, - aux_sym_preproc_elif_token1, + ACTIONS(6670), 16, 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_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_DOT, - sym_identifier, - ACTIONS(6678), 29, + anon_sym_DASH_GT, + ACTIONS(6672), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_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_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, 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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [110645] = 3, + anon_sym_DASH_GT_STAR, + [112692] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6680), 19, - aux_sym_preproc_elif_token1, + ACTIONS(6674), 16, 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_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_DOT, - sym_identifier, - ACTIONS(6682), 29, + anon_sym_DASH_GT, + ACTIONS(6676), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_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_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, 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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [110701] = 3, + anon_sym_DASH_GT_STAR, + [112748] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5152), 16, + ACTIONS(6634), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -391709,7 +397143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5154), 32, + ACTIONS(6636), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -391742,85 +397176,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [110757] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1816), 1, - anon_sym_enum, - ACTIONS(1818), 1, - anon_sym_class, - ACTIONS(1820), 1, - anon_sym_struct, - ACTIONS(1822), 1, - anon_sym_union, - ACTIONS(1846), 1, - sym_auto, - ACTIONS(1848), 1, - anon_sym_decltype, - ACTIONS(1850), 1, - anon_sym_typename, - ACTIONS(7955), 1, - sym_identifier, - ACTIONS(7959), 1, - anon_sym_COLON_COLON, - ACTIONS(7961), 1, - sym_primitive_type, - STATE(1658), 1, - sym_alignas_qualifier, - STATE(1859), 1, - sym_decltype_auto, - STATE(1902), 1, - sym_qualified_type_identifier, - STATE(4209), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4837), 1, - sym_type_specifier, - STATE(6587), 1, - sym__scope_resolution, - STATE(8601), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1633), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(1713), 2, - sym_decltype, - sym_template_type, - ACTIONS(1810), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1879), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [110857] = 3, + [112804] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6578), 19, + ACTIONS(6722), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -391840,7 +397199,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6580), 29, + ACTIONS(6724), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -391870,134 +397229,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [110913] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5482), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - sym_literal_suffix, - ACTIONS(5484), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_GT2, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [110969] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7059), 1, - anon_sym_const, - ACTIONS(7842), 1, - anon_sym_LPAREN2, - ACTIONS(7850), 1, - sym_ms_restrict_modifier, - ACTIONS(7856), 1, - anon_sym_LBRACK, - ACTIONS(8107), 1, - anon_sym_STAR, - ACTIONS(8109), 1, - anon_sym_AMP_AMP, - ACTIONS(8111), 1, - anon_sym_AMP, - STATE(2890), 1, - sym_parameter_list, - STATE(3761), 1, - sym_ms_unaligned_ptr_modifier, - STATE(3992), 1, - sym_alignas_qualifier, - STATE(5792), 1, - sym__function_declarator_seq, - STATE(6304), 1, - sym__abstract_declarator, - ACTIONS(7061), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(7852), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(7854), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3283), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4300), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5804), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5865), 9, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - ACTIONS(7046), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [111061] = 3, + [112860] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5166), 16, + ACTIONS(6568), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -392014,7 +397249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5168), 32, + ACTIONS(6570), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -392047,20 +397282,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [111117] = 3, + [112916] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5489), 19, + ACTIONS(6670), 19, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -392069,10 +397305,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_literal_suffix, - ACTIONS(5491), 29, + ACTIONS(6672), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -392081,29 +397321,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_GT2, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [111173] = 3, + [112972] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5184), 16, + ACTIONS(6682), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -392120,7 +397355,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5186), 32, + ACTIONS(6684), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -392153,99 +397388,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [111229] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(125), 1, - sym_auto, - ACTIONS(127), 1, - anon_sym_decltype, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(3911), 1, - sym_primitive_type, - ACTIONS(7968), 1, - sym_identifier, - ACTIONS(7970), 1, - anon_sym_COLON_COLON, - ACTIONS(7972), 1, - anon_sym_enum, - ACTIONS(7974), 1, - anon_sym_class, - ACTIONS(7976), 1, - anon_sym_struct, - ACTIONS(7978), 1, - anon_sym_union, - ACTIONS(7980), 1, - anon_sym_typename, - STATE(1658), 1, - sym_alignas_qualifier, - STATE(2501), 1, - sym_decltype_auto, - STATE(2674), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2809), 1, - sym_qualified_type_identifier, - STATE(3991), 1, - sym_type_specifier, - STATE(6630), 1, - sym__scope_resolution, - STATE(8601), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1633), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(2406), 2, - sym_decltype, - sym_template_type, - ACTIONS(3909), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2523), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [111329] = 10, + [113028] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6014), 1, - anon_sym___attribute__, - ACTIONS(6016), 1, - anon_sym___attribute, - ACTIONS(6186), 1, - anon_sym_LBRACE, - ACTIONS(8117), 1, - anon_sym_COLON, - STATE(1841), 1, - sym_attribute_specifier, - STATE(2281), 1, - sym__enum_base_clause, - STATE(2329), 1, - sym_enumerator_list, - ACTIONS(6336), 9, + ACTIONS(6694), 19, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -392254,71 +397401,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_DOT, - ACTIONS(6338), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, + anon_sym___attribute__, + anon_sym___attribute, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [111399] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6014), 1, - anon_sym___attribute__, - ACTIONS(6016), 1, - anon_sym___attribute, - ACTIONS(6186), 1, - anon_sym_LBRACE, - ACTIONS(8117), 1, - anon_sym_COLON, - STATE(1866), 1, - sym_attribute_specifier, - STATE(2216), 1, - sym__enum_base_clause, - STATE(2311), 1, - sym_enumerator_list, - ACTIONS(6342), 9, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, anon_sym_DOT, - ACTIONS(6344), 32, + sym_identifier, + ACTIONS(6696), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -392331,280 +397431,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, + anon_sym_COLON, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [111469] = 25, + [113084] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(3134), 1, + ACTIONS(1814), 1, anon_sym_enum, - ACTIONS(3136), 1, + ACTIONS(1816), 1, anon_sym_class, - ACTIONS(3138), 1, + ACTIONS(1818), 1, anon_sym_struct, - ACTIONS(3140), 1, + ACTIONS(1820), 1, anon_sym_union, - ACTIONS(3164), 1, + ACTIONS(1844), 1, sym_auto, - ACTIONS(3166), 1, + ACTIONS(1846), 1, anon_sym_decltype, - ACTIONS(3168), 1, + ACTIONS(1848), 1, anon_sym_typename, - ACTIONS(8047), 1, + ACTIONS(7980), 1, sym_identifier, - ACTIONS(8049), 1, + ACTIONS(7984), 1, anon_sym_COLON_COLON, - ACTIONS(8051), 1, + ACTIONS(7986), 1, sym_primitive_type, - STATE(1658), 1, + STATE(1680), 1, sym_alignas_qualifier, - STATE(2657), 1, - sym_qualified_type_identifier, - STATE(2708), 1, + STATE(1888), 1, sym_decltype_auto, - STATE(4239), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4259), 1, - sym_type_specifier, - STATE(6579), 1, - sym__scope_resolution, - STATE(8601), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1633), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(2598), 2, - sym_decltype, - sym_template_type, - ACTIONS(3130), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2668), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [111569] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6636), 16, - 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_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6638), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [111625] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(8059), 1, - sym_primitive_type, - ACTIONS(8069), 1, - sym_auto, - ACTIONS(8071), 1, - anon_sym_decltype, - ACTIONS(8079), 1, - sym_identifier, - ACTIONS(8081), 1, - anon_sym_COLON_COLON, - ACTIONS(8083), 1, - anon_sym_enum, - ACTIONS(8085), 1, - anon_sym_class, - ACTIONS(8087), 1, - anon_sym_struct, - ACTIONS(8089), 1, - anon_sym_union, - ACTIONS(8091), 1, - anon_sym_typename, - STATE(1658), 1, - sym_alignas_qualifier, - STATE(2809), 1, + STATE(1916), 1, sym_qualified_type_identifier, - STATE(3931), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4374), 1, - sym_type_specifier, - STATE(4612), 1, - sym_decltype_auto, - STATE(6615), 1, - sym__scope_resolution, - STATE(8601), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1633), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(2406), 2, - sym_decltype, - sym_template_type, - ACTIONS(8057), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(4706), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [111725] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(8019), 1, - sym_identifier, - ACTIONS(8021), 1, - anon_sym_COLON_COLON, - ACTIONS(8025), 1, - sym_primitive_type, - ACTIONS(8027), 1, - anon_sym_enum, - ACTIONS(8029), 1, - anon_sym_class, - ACTIONS(8031), 1, - anon_sym_struct, - ACTIONS(8033), 1, - anon_sym_union, - ACTIONS(8035), 1, - sym_auto, - ACTIONS(8037), 1, - anon_sym_decltype, - ACTIONS(8039), 1, - anon_sym_typename, - STATE(1658), 1, - sym_alignas_qualifier, - STATE(4069), 1, + STATE(4234), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4145), 1, + STATE(4937), 1, sym_type_specifier, - STATE(4947), 1, - sym_qualified_type_identifier, - STATE(4948), 1, - sym_decltype_auto, - STATE(6632), 1, + STATE(6727), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(8569), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1633), 2, + STATE(1669), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(4894), 2, + STATE(1782), 2, sym_decltype, sym_template_type, - ACTIONS(8023), 4, + ACTIONS(1808), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4919), 7, + STATE(1890), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -392626,154 +397516,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [111825] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3327), 1, - sym_ms_restrict_modifier, - ACTIONS(3331), 1, - anon_sym_const, - ACTIONS(5012), 1, - anon_sym_LPAREN2, - ACTIONS(5859), 1, - anon_sym___attribute, - ACTIONS(8119), 1, - anon_sym_STAR, - ACTIONS(8121), 1, - anon_sym_AMP_AMP, - ACTIONS(8123), 1, - anon_sym_AMP, - ACTIONS(8131), 1, - anon_sym_LBRACK, - STATE(3088), 1, - sym_parameter_list, - STATE(4043), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4289), 1, - sym_alignas_qualifier, - STATE(6087), 1, - sym__function_declarator_seq, - STATE(6290), 1, - sym__abstract_declarator, - ACTIONS(8127), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(8129), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(8133), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3884), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4262), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6092), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5851), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - ACTIONS(8125), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [111919] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3327), 1, - sym_ms_restrict_modifier, - ACTIONS(3331), 1, - anon_sym_const, - ACTIONS(5012), 1, - anon_sym_LPAREN2, - ACTIONS(5867), 1, - anon_sym___attribute, - ACTIONS(8119), 1, - anon_sym_STAR, - ACTIONS(8121), 1, - anon_sym_AMP_AMP, - ACTIONS(8123), 1, - anon_sym_AMP, - ACTIONS(8131), 1, - anon_sym_LBRACK, - STATE(3088), 1, - sym_parameter_list, - STATE(4043), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4289), 1, - sym_alignas_qualifier, - STATE(6087), 1, - sym__function_declarator_seq, - STATE(6292), 1, - sym__abstract_declarator, - ACTIONS(8127), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(8129), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(8133), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3820), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4264), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6092), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5865), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - ACTIONS(8125), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [112013] = 3, + [113184] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6640), 16, + ACTIONS(5188), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -392790,7 +397536,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6642), 32, + ACTIONS(5190), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -392823,85 +397569,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [112069] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1816), 1, - anon_sym_enum, - ACTIONS(1818), 1, - anon_sym_class, - ACTIONS(1820), 1, - anon_sym_struct, - ACTIONS(1822), 1, - anon_sym_union, - ACTIONS(1846), 1, - sym_auto, - ACTIONS(1848), 1, - anon_sym_decltype, - ACTIONS(1850), 1, - anon_sym_typename, - ACTIONS(7955), 1, - sym_identifier, - ACTIONS(7959), 1, - anon_sym_COLON_COLON, - ACTIONS(7961), 1, - sym_primitive_type, - STATE(1658), 1, - sym_alignas_qualifier, - STATE(1859), 1, - sym_decltype_auto, - STATE(1902), 1, - sym_qualified_type_identifier, - STATE(4209), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4255), 1, - sym_type_specifier, - STATE(6587), 1, - sym__scope_resolution, - STATE(8601), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1633), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(1713), 2, - sym_decltype, - sym_template_type, - ACTIONS(1810), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1879), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [112169] = 3, + [113240] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6618), 19, + ACTIONS(6662), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -392921,7 +397592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6620), 29, + ACTIONS(6664), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -392951,63 +397622,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [112225] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6562), 16, - 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_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6564), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [112281] = 3, + [113296] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4154), 19, + ACTIONS(6718), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -393027,7 +397645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(4146), 29, + ACTIONS(6720), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -393057,135 +397675,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [112337] = 25, + [113352] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(125), 1, - sym_auto, - ACTIONS(127), 1, - anon_sym_decltype, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(3911), 1, - sym_primitive_type, - ACTIONS(7968), 1, - sym_identifier, - ACTIONS(7970), 1, - anon_sym_COLON_COLON, - ACTIONS(7972), 1, - anon_sym_enum, - ACTIONS(7974), 1, - anon_sym_class, - ACTIONS(7976), 1, - anon_sym_struct, - ACTIONS(7978), 1, - anon_sym_union, - ACTIONS(7980), 1, - anon_sym_typename, - STATE(1658), 1, - sym_alignas_qualifier, - STATE(2501), 1, - sym_decltype_auto, - STATE(2674), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2809), 1, - sym_qualified_type_identifier, - STATE(4088), 1, - sym_type_specifier, - STATE(6630), 1, - sym__scope_resolution, - STATE(8601), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1633), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(2406), 2, - sym_decltype, - sym_template_type, - ACTIONS(3909), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2523), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [112437] = 25, + ACTIONS(6560), 19, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(6562), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_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_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [113408] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(3134), 1, + ACTIONS(8026), 1, + sym_identifier, + ACTIONS(8028), 1, + anon_sym_COLON_COLON, + ACTIONS(8032), 1, + sym_primitive_type, + ACTIONS(8034), 1, anon_sym_enum, - ACTIONS(3136), 1, + ACTIONS(8036), 1, anon_sym_class, - ACTIONS(3138), 1, + ACTIONS(8038), 1, anon_sym_struct, - ACTIONS(3140), 1, + ACTIONS(8040), 1, anon_sym_union, - ACTIONS(3164), 1, + ACTIONS(8042), 1, sym_auto, - ACTIONS(3166), 1, + ACTIONS(8044), 1, anon_sym_decltype, - ACTIONS(3168), 1, + ACTIONS(8046), 1, anon_sym_typename, - ACTIONS(8047), 1, - sym_identifier, - ACTIONS(8049), 1, - anon_sym_COLON_COLON, - ACTIONS(8051), 1, - sym_primitive_type, - STATE(1658), 1, + STATE(1680), 1, sym_alignas_qualifier, - STATE(2657), 1, + STATE(2836), 1, sym_qualified_type_identifier, - STATE(2708), 1, - sym_decltype_auto, - STATE(4239), 1, + STATE(4024), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4246), 1, + STATE(4049), 1, sym_type_specifier, - STATE(6579), 1, + STATE(4672), 1, + sym_decltype_auto, + STATE(6719), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(8569), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1633), 2, + STATE(1669), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(2598), 2, + STATE(2439), 2, sym_decltype, sym_template_type, - ACTIONS(3130), 4, + ACTIONS(8030), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2668), 7, + STATE(4773), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -393207,10 +397803,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [112537] = 3, + [113508] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6520), 19, + ACTIONS(6698), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -393230,7 +397826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6522), 29, + ACTIONS(6700), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -393260,10 +397856,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [112593] = 3, + [113564] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6622), 19, + ACTIONS(6556), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -393283,7 +397879,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6624), 29, + ACTIONS(6558), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -393313,60 +397909,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [112649] = 25, + [113620] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1816), 1, - anon_sym_enum, - ACTIONS(1818), 1, - anon_sym_class, - ACTIONS(1820), 1, - anon_sym_struct, - ACTIONS(1822), 1, - anon_sym_union, - ACTIONS(1846), 1, + ACTIONS(1844), 1, sym_auto, - ACTIONS(1848), 1, + ACTIONS(1846), 1, anon_sym_decltype, - ACTIONS(1850), 1, - anon_sym_typename, - ACTIONS(7955), 1, + ACTIONS(8086), 1, sym_identifier, - ACTIONS(7959), 1, + ACTIONS(8088), 1, anon_sym_COLON_COLON, - ACTIONS(7961), 1, + ACTIONS(8092), 1, sym_primitive_type, - STATE(1658), 1, + ACTIONS(8094), 1, + anon_sym_enum, + ACTIONS(8096), 1, + anon_sym_class, + ACTIONS(8098), 1, + anon_sym_struct, + ACTIONS(8100), 1, + anon_sym_union, + ACTIONS(8102), 1, + anon_sym_typename, + STATE(1680), 1, sym_alignas_qualifier, - STATE(1859), 1, + STATE(1888), 1, sym_decltype_auto, - STATE(1902), 1, + STATE(2836), 1, sym_qualified_type_identifier, - STATE(4209), 1, + STATE(4916), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4213), 1, + STATE(5094), 1, sym_type_specifier, - STATE(6587), 1, + STATE(6724), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(8569), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1633), 2, + STATE(1669), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(1713), 2, + STATE(1782), 2, sym_decltype, sym_template_type, - ACTIONS(1810), 4, + ACTIONS(8090), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1879), 7, + STATE(1890), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -393388,10 +397984,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [112749] = 3, + [113720] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5136), 16, + ACTIONS(6710), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -393408,7 +398004,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5138), 32, + ACTIONS(6712), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -393441,10 +398037,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [112805] = 3, + [113776] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6606), 19, + ACTIONS(3903), 16, + 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_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3899), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [113832] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6602), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -393464,7 +398113,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6608), 29, + ACTIONS(6604), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -393494,10 +398143,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [112861] = 3, + [113888] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6644), 16, + ACTIONS(6630), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -393514,7 +398163,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6646), 32, + ACTIONS(6632), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -393547,63 +398196,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [112917] = 3, + [113944] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6610), 19, - aux_sym_preproc_elif_token1, + ACTIONS(6614), 16, 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_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6616), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [114000] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5192), 16, + 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_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_DOT, - sym_identifier, - ACTIONS(6612), 29, + anon_sym_DASH_GT, + ACTIONS(5194), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_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_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, 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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [112973] = 3, + anon_sym_DASH_GT_STAR, + [114056] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6648), 16, + ACTIONS(8133), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8157), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6298), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -393620,13 +398328,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6650), 32, + ACTIONS(6300), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -393643,20 +398349,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [114116] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6682), 19, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(6684), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_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_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [113029] = 3, + anon_sym_DASH_GT, + [114172] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7065), 1, + anon_sym_const, + ACTIONS(7848), 1, + anon_sym_LPAREN2, + ACTIONS(7856), 1, + sym_ms_restrict_modifier, + ACTIONS(7862), 1, + anon_sym_LBRACK, + ACTIONS(8151), 1, + anon_sym_STAR, + ACTIONS(8153), 1, + anon_sym_AMP_AMP, + ACTIONS(8155), 1, + anon_sym_AMP, + STATE(2963), 1, + sym_parameter_list, + STATE(3758), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4036), 1, + sym_alignas_qualifier, + STATE(5953), 1, + sym__function_declarator_seq, + STATE(6453), 1, + sym__abstract_declarator, + ACTIONS(7067), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7858), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(7860), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3902), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4353), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5952), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(5863), 9, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(7052), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [114264] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6524), 19, + ACTIONS(6606), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -393676,7 +398504,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6526), 29, + ACTIONS(6608), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -393706,10 +398534,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [113085] = 3, + [114320] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6652), 16, + ACTIONS(6686), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -393726,7 +398554,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6654), 32, + ACTIONS(6688), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -393759,10 +398587,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [113141] = 3, + [114376] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6714), 19, + ACTIONS(6630), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -393782,7 +398610,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6716), 29, + ACTIONS(6632), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -393812,147 +398640,173 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [113197] = 3, + [114432] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5132), 16, + ACTIONS(6610), 19, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5134), 32, + sym_identifier, + ACTIONS(6612), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_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_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RBRACE, 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_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [114488] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6532), 19, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(6534), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_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_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [113253] = 25, + anon_sym_DASH_GT, + [114544] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1816), 1, - anon_sym_enum, - ACTIONS(1818), 1, - anon_sym_class, - ACTIONS(1820), 1, - anon_sym_struct, - ACTIONS(1822), 1, - anon_sym_union, - ACTIONS(1846), 1, - sym_auto, - ACTIONS(1848), 1, - anon_sym_decltype, - ACTIONS(1850), 1, - anon_sym_typename, - ACTIONS(7955), 1, - sym_identifier, - ACTIONS(7959), 1, + ACTIONS(4187), 1, anon_sym_COLON_COLON, - ACTIONS(7961), 1, - sym_primitive_type, - STATE(1658), 1, - sym_alignas_qualifier, - STATE(1859), 1, - sym_decltype_auto, - STATE(1902), 1, - sym_qualified_type_identifier, - STATE(4209), 1, + STATE(1623), 1, + sym_template_argument_list, + STATE(2358), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4414), 1, - sym_type_specifier, - STATE(6587), 1, - sym__scope_resolution, - STATE(8601), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1633), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(1713), 2, - sym_decltype, - sym_template_type, - ACTIONS(1810), 4, + ACTIONS(5068), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1879), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [113353] = 7, + ACTIONS(6058), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_DOT, + ACTIONS(6060), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [114608] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7951), 1, - anon_sym_LBRACE, - STATE(3959), 1, - sym_enumerator_list, - STATE(4071), 1, - sym_attribute_specifier, - ACTIONS(6016), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5983), 19, + ACTIONS(6536), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -393962,6 +398816,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -393970,11 +398826,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5985), 24, + ACTIONS(6538), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, @@ -393990,17 +398845,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [113417] = 3, + [114664] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6578), 16, + ACTIONS(6694), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -394017,7 +398876,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6580), 32, + ACTIONS(6696), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -394050,10 +398909,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [113473] = 3, + [114720] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5136), 16, + ACTIONS(5196), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -394070,7 +398929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5138), 32, + ACTIONS(5198), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -394103,10 +398962,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [113529] = 3, + [114776] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4154), 16, + ACTIONS(5196), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -394123,7 +398982,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4146), 32, + ACTIONS(5198), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -394156,19 +399015,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [113585] = 7, + [114832] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7951), 1, - anon_sym_LBRACE, - STATE(3974), 1, - sym_enumerator_list, - STATE(4100), 1, - sym_attribute_specifier, - ACTIONS(6016), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(6024), 19, + ACTIONS(5196), 16, + 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_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5198), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [114888] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6650), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -394178,6 +399081,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -394186,11 +399091,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6026), 24, + ACTIONS(6652), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, @@ -394206,67 +399110,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [113649] = 25, + [114944] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6658), 16, + 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_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6660), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [115000] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(3134), 1, + ACTIONS(3146), 1, anon_sym_enum, - ACTIONS(3136), 1, + ACTIONS(3148), 1, anon_sym_class, - ACTIONS(3138), 1, + ACTIONS(3150), 1, anon_sym_struct, - ACTIONS(3140), 1, + ACTIONS(3152), 1, anon_sym_union, - ACTIONS(3164), 1, + ACTIONS(3176), 1, sym_auto, - ACTIONS(3166), 1, + ACTIONS(3178), 1, anon_sym_decltype, - ACTIONS(3168), 1, + ACTIONS(3180), 1, anon_sym_typename, - ACTIONS(8047), 1, + ACTIONS(8020), 1, sym_identifier, - ACTIONS(8049), 1, + ACTIONS(8022), 1, anon_sym_COLON_COLON, - ACTIONS(8051), 1, + ACTIONS(8024), 1, sym_primitive_type, - STATE(1658), 1, + STATE(1680), 1, sym_alignas_qualifier, - STATE(2657), 1, + STATE(2685), 1, sym_qualified_type_identifier, - STATE(2708), 1, + STATE(2733), 1, sym_decltype_auto, - STATE(4239), 1, + STATE(4313), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4768), 1, + STATE(4668), 1, sym_type_specifier, - STATE(6579), 1, + STATE(6738), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(8569), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1633), 2, + STATE(1669), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(2598), 2, + STATE(2621), 2, sym_decltype, sym_template_type, - ACTIONS(3130), 4, + ACTIONS(3142), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2668), 7, + STATE(2747), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -394288,60 +399249,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [113749] = 25, + [115100] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(125), 1, sym_auto, ACTIONS(127), 1, anon_sym_decltype, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(3899), 1, - sym_identifier, ACTIONS(3907), 1, + sym_identifier, + ACTIONS(3915), 1, anon_sym_COLON_COLON, - ACTIONS(3911), 1, + ACTIONS(3919), 1, sym_primitive_type, - ACTIONS(3913), 1, + ACTIONS(3921), 1, anon_sym_enum, - ACTIONS(3915), 1, + ACTIONS(3923), 1, anon_sym_class, - ACTIONS(3917), 1, + ACTIONS(3925), 1, anon_sym_struct, - ACTIONS(3919), 1, + ACTIONS(3927), 1, anon_sym_union, - ACTIONS(3921), 1, + ACTIONS(3929), 1, anon_sym_typename, - STATE(1658), 1, + STATE(1680), 1, sym_alignas_qualifier, - STATE(2501), 1, + STATE(2453), 1, sym_decltype_auto, - STATE(2674), 1, + STATE(2695), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2809), 1, + STATE(2836), 1, sym_qualified_type_identifier, - STATE(4176), 1, + STATE(4225), 1, sym_type_specifier, - STATE(6599), 1, + STATE(6697), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(8569), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1633), 2, + STATE(1669), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(2406), 2, + STATE(2439), 2, sym_decltype, sym_template_type, - ACTIONS(3909), 4, + ACTIONS(3917), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2523), 7, + STATE(2558), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -394363,10 +399324,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [113849] = 3, + [115200] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6684), 16, + ACTIONS(5450), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -394383,7 +399344,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6686), 32, + ACTIONS(2729), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -394416,63 +399377,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [113905] = 3, + [115256] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6656), 16, + ACTIONS(6594), 19, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6658), 32, + sym_identifier, + ACTIONS(6596), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_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_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RBRACE, 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_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [115312] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6598), 19, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(6600), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_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_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [113961] = 3, + anon_sym_DASH_GT, + [115368] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6660), 16, + ACTIONS(5200), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -394489,7 +399503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6662), 32, + ACTIONS(5202), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -394522,10 +399536,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [114017] = 3, + [115424] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(5140), 16, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(7998), 1, + sym_identifier, + ACTIONS(8000), 1, + anon_sym_COLON_COLON, + ACTIONS(8004), 1, + sym_primitive_type, + ACTIONS(8006), 1, + anon_sym_enum, + ACTIONS(8008), 1, + anon_sym_class, + ACTIONS(8010), 1, + anon_sym_struct, + ACTIONS(8012), 1, + anon_sym_union, + ACTIONS(8014), 1, + sym_auto, + ACTIONS(8016), 1, + anon_sym_decltype, + ACTIONS(8018), 1, + anon_sym_typename, + STATE(1680), 1, + sym_alignas_qualifier, + STATE(4150), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4307), 1, + sym_type_specifier, + STATE(4975), 1, + sym_qualified_type_identifier, + STATE(4979), 1, + sym_decltype_auto, + STATE(6731), 1, + sym__scope_resolution, + STATE(8569), 1, + sym_dependent_type_identifier, + ACTIONS(69), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1669), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(4943), 2, + sym_decltype, + sym_template_type, + ACTIONS(8002), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4980), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [115524] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6602), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -394542,7 +399631,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5142), 32, + ACTIONS(6604), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -394575,169 +399664,301 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [114073] = 3, + [115580] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5144), 16, + STATE(4069), 1, + sym_ms_unaligned_ptr_modifier, + ACTIONS(8162), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3962), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(8159), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(7836), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(7834), 27, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___based, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [115644] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1814), 1, + anon_sym_enum, + ACTIONS(1816), 1, + anon_sym_class, + ACTIONS(1818), 1, + anon_sym_struct, + ACTIONS(1820), 1, + anon_sym_union, + ACTIONS(1844), 1, + sym_auto, + ACTIONS(1846), 1, + anon_sym_decltype, + ACTIONS(1848), 1, + anon_sym_typename, + ACTIONS(7980), 1, + sym_identifier, + ACTIONS(7984), 1, + anon_sym_COLON_COLON, + ACTIONS(7986), 1, + sym_primitive_type, + STATE(1680), 1, + sym_alignas_qualifier, + STATE(1888), 1, + sym_decltype_auto, + STATE(1916), 1, + sym_qualified_type_identifier, + STATE(4234), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4614), 1, + sym_type_specifier, + STATE(6727), 1, + sym__scope_resolution, + STATE(8569), 1, + sym_dependent_type_identifier, + ACTIONS(69), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1669), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(1782), 2, + sym_decltype, + sym_template_type, + ACTIONS(1808), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1890), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [115744] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6540), 19, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5146), 32, + sym_identifier, + ACTIONS(6542), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_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_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RBRACE, 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_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [114129] = 3, + anon_sym_DASH_GT, + [115800] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5170), 16, + ACTIONS(6544), 19, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5172), 32, + sym_identifier, + ACTIONS(6546), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_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_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [114185] = 3, + anon_sym_DASH_GT, + [115856] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6664), 16, + ACTIONS(6548), 19, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6666), 32, + sym_identifier, + ACTIONS(6550), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_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_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RBRACE, 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_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [114241] = 3, + anon_sym_DASH_GT, + [115912] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3895), 16, + ACTIONS(6606), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -394754,7 +399975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3891), 32, + ACTIONS(6608), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -394787,63 +400008,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [114297] = 3, + [115968] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6520), 16, + ACTIONS(6552), 19, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6522), 32, + sym_identifier, + ACTIONS(6554), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_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_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RBRACE, 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_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [114353] = 3, + anon_sym_DASH_GT, + [116024] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(5180), 16, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(8026), 1, + sym_identifier, + ACTIONS(8028), 1, + anon_sym_COLON_COLON, + ACTIONS(8032), 1, + sym_primitive_type, + ACTIONS(8034), 1, + anon_sym_enum, + ACTIONS(8036), 1, + anon_sym_class, + ACTIONS(8038), 1, + anon_sym_struct, + ACTIONS(8040), 1, + anon_sym_union, + ACTIONS(8042), 1, + sym_auto, + ACTIONS(8044), 1, + anon_sym_decltype, + ACTIONS(8046), 1, + anon_sym_typename, + STATE(1680), 1, + sym_alignas_qualifier, + STATE(2836), 1, + sym_qualified_type_identifier, + STATE(4024), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4162), 1, + sym_type_specifier, + STATE(4672), 1, + sym_decltype_auto, + STATE(6719), 1, + sym__scope_resolution, + STATE(8569), 1, + sym_dependent_type_identifier, + ACTIONS(69), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1669), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(2439), 2, + sym_decltype, + sym_template_type, + ACTIONS(8030), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4773), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [116124] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6610), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -394860,7 +400156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5182), 32, + ACTIONS(6612), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -394893,10 +400189,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [114409] = 3, + [116180] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6668), 16, + ACTIONS(1940), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -394913,7 +400209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6670), 32, + ACTIONS(1938), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -394946,10 +400242,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [114465] = 3, + [116236] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6656), 19, + ACTIONS(7965), 1, + anon_sym_LBRACE, + STATE(3990), 1, + sym_enumerator_list, + STATE(4110), 1, + sym_attribute_specifier, + ACTIONS(6033), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(6072), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -394959,8 +400264,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -394969,10 +400272,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6658), 29, + sym_auto, + anon_sym_decltype, + ACTIONS(6074), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, @@ -394988,198 +400292,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [114521] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1846), 1, - sym_auto, - ACTIONS(1848), 1, - anon_sym_decltype, - ACTIONS(7988), 1, - sym_identifier, - ACTIONS(7990), 1, - anon_sym_COLON_COLON, - ACTIONS(7994), 1, - sym_primitive_type, - ACTIONS(7996), 1, - anon_sym_enum, - ACTIONS(7998), 1, - anon_sym_class, - ACTIONS(8000), 1, - anon_sym_struct, - ACTIONS(8002), 1, - anon_sym_union, - ACTIONS(8004), 1, - anon_sym_typename, - STATE(1658), 1, - sym_alignas_qualifier, - STATE(1859), 1, - sym_decltype_auto, - STATE(2809), 1, - sym_qualified_type_identifier, - STATE(4882), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(5018), 1, - sym_type_specifier, - STATE(6593), 1, - sym__scope_resolution, - STATE(8601), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1633), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(1713), 2, - sym_decltype, - sym_template_type, - ACTIONS(7992), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1879), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [114621] = 11, + [116300] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(5499), 1, - anon_sym_COLON, - ACTIONS(6542), 1, - anon_sym_LBRACE, - STATE(2513), 1, - sym_attribute_specifier, - STATE(2894), 1, - sym_field_declaration_list, - STATE(7003), 1, - sym_virtual_specifier, - STATE(7790), 1, - sym_base_class_clause, - ACTIONS(5468), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5503), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5495), 5, - anon_sym_LPAREN2, - anon_sym_STAR, + ACTIONS(29), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(5493), 32, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_operator, - [114692] = 22, - ACTIONS(3), 1, - sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1852), 1, + ACTIONS(1850), 1, anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2977), 1, + ACTIONS(2997), 1, anon_sym_LPAREN2, - ACTIONS(2979), 1, + ACTIONS(2999), 1, anon_sym_TILDE, - ACTIONS(7089), 1, - anon_sym_LBRACK, - ACTIONS(7281), 1, - sym_identifier, - ACTIONS(7283), 1, + ACTIONS(3001), 1, anon_sym_STAR, - ACTIONS(7285), 1, - anon_sym_AMP_AMP, - ACTIONS(7287), 1, + ACTIONS(3003), 1, anon_sym_AMP, - ACTIONS(7289), 1, + ACTIONS(5481), 1, + sym_identifier, + ACTIONS(6365), 1, anon_sym_COLON_COLON, - STATE(4289), 1, + ACTIONS(7103), 1, + anon_sym_LBRACK, + STATE(4325), 1, sym_alignas_qualifier, - STATE(5807), 1, + STATE(5923), 1, sym__scope_resolution, - STATE(6509), 1, + STATE(6630), 1, sym__declarator, - STATE(8592), 1, + STATE(8864), 1, sym_ms_based_modifier, - ACTIONS(3333), 2, + ACTIONS(3341), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4131), 2, + STATE(4215), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8601), 3, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(5998), 11, + STATE(6145), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -395191,7 +400356,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3331), 13, + ACTIONS(3339), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -395205,123 +400370,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [114785] = 22, + [116393] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1852), 1, + ACTIONS(1850), 1, anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2977), 1, + ACTIONS(2997), 1, anon_sym_LPAREN2, - ACTIONS(2979), 1, + ACTIONS(2999), 1, anon_sym_TILDE, - ACTIONS(5849), 1, + ACTIONS(5481), 1, sym_identifier, - ACTIONS(5861), 1, - anon_sym_COLON_COLON, - ACTIONS(7089), 1, + ACTIONS(7103), 1, anon_sym_LBRACK, - ACTIONS(7105), 1, + ACTIONS(7257), 1, anon_sym_STAR, - ACTIONS(7107), 1, - anon_sym_AMP_AMP, - ACTIONS(7109), 1, - anon_sym_AMP, - STATE(4289), 1, - sym_alignas_qualifier, - STATE(5860), 1, - sym__scope_resolution, - STATE(6294), 1, - sym__declarator, - STATE(8106), 1, - sym_ms_based_modifier, - ACTIONS(3333), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4131), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8601), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(5998), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3331), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [114878] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, + ACTIONS(7259), 1, anon_sym_AMP_AMP, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(2977), 1, - anon_sym_LPAREN2, - ACTIONS(2979), 1, - anon_sym_TILDE, - ACTIONS(2981), 1, - anon_sym_STAR, - ACTIONS(2983), 1, + ACTIONS(7261), 1, anon_sym_AMP, - ACTIONS(5460), 1, - sym_identifier, - ACTIONS(6321), 1, + ACTIONS(7263), 1, anon_sym_COLON_COLON, - ACTIONS(7089), 1, - anon_sym_LBRACK, - STATE(4289), 1, + STATE(4325), 1, sym_alignas_qualifier, - STATE(5847), 1, + STATE(5931), 1, sym__scope_resolution, - STATE(6447), 1, + STATE(6773), 1, sym__declarator, - STATE(8682), 1, + STATE(8398), 1, sym_ms_based_modifier, - ACTIONS(3333), 2, + ACTIONS(3341), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4131), 2, + STATE(4215), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8601), 3, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(5998), 11, + STATE(6145), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -395333,7 +400427,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3331), 13, + ACTIONS(3339), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -395347,104 +400441,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [114971] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5577), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_literal_suffix, - ACTIONS(5579), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_GT2, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [115026] = 22, + [116486] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1852), 1, + ACTIONS(1850), 1, anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2977), 1, + ACTIONS(2997), 1, anon_sym_LPAREN2, - ACTIONS(2979), 1, + ACTIONS(2999), 1, anon_sym_TILDE, - ACTIONS(5849), 1, - sym_identifier, - ACTIONS(5861), 1, - anon_sym_COLON_COLON, - ACTIONS(7089), 1, + ACTIONS(7103), 1, anon_sym_LBRACK, - ACTIONS(7105), 1, + ACTIONS(7209), 1, + sym_identifier, + ACTIONS(7211), 1, anon_sym_STAR, - ACTIONS(7107), 1, + ACTIONS(7213), 1, anon_sym_AMP_AMP, - ACTIONS(7109), 1, + ACTIONS(7215), 1, anon_sym_AMP, - STATE(4289), 1, + ACTIONS(7217), 1, + anon_sym_COLON_COLON, + STATE(4325), 1, sym_alignas_qualifier, - STATE(5860), 1, + STATE(5895), 1, sym__scope_resolution, - STATE(6301), 1, + STATE(6320), 1, sym__declarator, - STATE(8106), 1, + STATE(8623), 1, sym_ms_based_modifier, - ACTIONS(3333), 2, + ACTIONS(3341), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4131), 2, + STATE(4215), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8601), 3, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(5998), 11, + STATE(6145), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -395456,7 +400498,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3331), 13, + ACTIONS(3339), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -395470,29 +400512,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [115119] = 11, + [116579] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(8135), 1, + ACTIONS(8165), 1, sym_identifier, - ACTIONS(8145), 1, + ACTIONS(8175), 1, sym_primitive_type, - STATE(3992), 1, + STATE(4036), 1, sym_alignas_qualifier, - STATE(4073), 1, + STATE(4257), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(8142), 2, + ACTIONS(8172), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3937), 2, + STATE(3777), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(8140), 4, + ACTIONS(8170), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5086), 9, + ACTIONS(5109), 9, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -395502,7 +400544,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - ACTIONS(5088), 13, + ACTIONS(5111), 13, anon_sym_AMP, anon_sym___attribute__, anon_sym___attribute, @@ -395516,7 +400558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - ACTIONS(8137), 13, + ACTIONS(8167), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -395530,52 +400572,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [115190] = 22, + [116650] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1852), 1, + ACTIONS(1850), 1, anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2977), 1, + ACTIONS(2997), 1, anon_sym_LPAREN2, - ACTIONS(2979), 1, + ACTIONS(2999), 1, anon_sym_TILDE, - ACTIONS(2981), 1, + ACTIONS(5481), 1, + sym_identifier, + ACTIONS(7103), 1, + anon_sym_LBRACK, + ACTIONS(7257), 1, anon_sym_STAR, - ACTIONS(2983), 1, + ACTIONS(7259), 1, + anon_sym_AMP_AMP, + ACTIONS(7261), 1, anon_sym_AMP, - ACTIONS(5460), 1, - sym_identifier, - ACTIONS(6321), 1, + ACTIONS(7263), 1, anon_sym_COLON_COLON, - ACTIONS(7089), 1, - anon_sym_LBRACK, - STATE(4289), 1, + STATE(4325), 1, sym_alignas_qualifier, - STATE(5847), 1, + STATE(5931), 1, sym__scope_resolution, - STATE(6423), 1, + STATE(6786), 1, sym__declarator, - STATE(8682), 1, + STATE(8398), 1, sym_ms_based_modifier, - ACTIONS(3333), 2, + ACTIONS(3341), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4131), 2, + STATE(4215), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8601), 3, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(5998), 11, + STATE(6145), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -395587,7 +400629,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3331), 13, + ACTIONS(3339), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -395601,79 +400643,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [115283] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5482), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_literal_suffix, - ACTIONS(5484), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_GT2, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [115338] = 11, + [116743] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3615), 1, + ACTIONS(3623), 1, anon_sym_LBRACE, - ACTIONS(7953), 1, + ACTIONS(7992), 1, anon_sym_LBRACK, - ACTIONS(8147), 1, + ACTIONS(8177), 1, anon_sym_LPAREN2, - ACTIONS(8149), 1, + ACTIONS(8179), 1, sym_auto, - ACTIONS(8151), 1, + ACTIONS(8181), 1, anon_sym_decltype, - STATE(1884), 1, + STATE(1864), 1, sym_decltype_auto, - STATE(4148), 1, + STATE(4217), 1, sym_new_declarator, - STATE(3865), 2, + STATE(3958), 2, sym_argument_list, sym_initializer_list, - ACTIONS(5873), 10, + ACTIONS(5841), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -395684,7 +400674,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym___attribute, anon_sym_DOT, - ACTIONS(5875), 28, + ACTIONS(5843), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -395713,52 +400703,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [115409] = 22, + [116814] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(67), 1, + anon_sym_const, + ACTIONS(7848), 1, + anon_sym_LPAREN2, + ACTIONS(7856), 1, + sym_ms_restrict_modifier, + ACTIONS(7862), 1, + anon_sym_LBRACK, + ACTIONS(8183), 1, + anon_sym_STAR, + ACTIONS(8185), 1, + anon_sym_AMP_AMP, + ACTIONS(8187), 1, + anon_sym_AMP, + STATE(1680), 1, + sym_alignas_qualifier, + STATE(3077), 1, + sym_parameter_list, + STATE(3758), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5953), 1, + sym__function_declarator_seq, + STATE(6483), 1, + sym__abstract_declarator, + ACTIONS(7304), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7858), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(7860), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3983), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4447), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5952), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(5863), 8, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(7297), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [116905] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1852), 1, + ACTIONS(1850), 1, anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2977), 1, + ACTIONS(2997), 1, anon_sym_LPAREN2, - ACTIONS(2979), 1, + ACTIONS(2999), 1, anon_sym_TILDE, - ACTIONS(7089), 1, - anon_sym_LBRACK, - ACTIONS(7281), 1, + ACTIONS(5861), 1, sym_identifier, - ACTIONS(7283), 1, + ACTIONS(5873), 1, + anon_sym_COLON_COLON, + ACTIONS(7103), 1, + anon_sym_LBRACK, + ACTIONS(7105), 1, anon_sym_STAR, - ACTIONS(7285), 1, + ACTIONS(7107), 1, anon_sym_AMP_AMP, - ACTIONS(7287), 1, + ACTIONS(7109), 1, anon_sym_AMP, - ACTIONS(7289), 1, - anon_sym_COLON_COLON, - STATE(4289), 1, + STATE(4325), 1, sym_alignas_qualifier, - STATE(5807), 1, + STATE(5896), 1, sym__scope_resolution, - STATE(6447), 1, + STATE(6213), 1, sym__declarator, - STATE(8592), 1, + STATE(8504), 1, sym_ms_based_modifier, - ACTIONS(3333), 2, + ACTIONS(3341), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4131), 2, + STATE(4215), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8601), 3, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(5998), 11, + STATE(6145), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -395770,7 +400830,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3331), 13, + ACTIONS(3339), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -395784,52 +400844,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [115502] = 22, + [116998] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1852), 1, + ACTIONS(1850), 1, anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2977), 1, + ACTIONS(2997), 1, anon_sym_LPAREN2, - ACTIONS(2979), 1, + ACTIONS(2999), 1, anon_sym_TILDE, - ACTIONS(5849), 1, + ACTIONS(7103), 1, + anon_sym_LBRACK, + ACTIONS(7209), 1, sym_identifier, - ACTIONS(5861), 1, + ACTIONS(7217), 1, anon_sym_COLON_COLON, - ACTIONS(7089), 1, - anon_sym_LBRACK, - ACTIONS(7165), 1, + ACTIONS(7265), 1, anon_sym_STAR, - ACTIONS(7167), 1, + ACTIONS(7267), 1, anon_sym_AMP_AMP, - ACTIONS(7169), 1, + ACTIONS(7269), 1, anon_sym_AMP, - STATE(4289), 1, + STATE(4325), 1, sym_alignas_qualifier, - STATE(5860), 1, + STATE(5895), 1, sym__scope_resolution, - STATE(6611), 1, + STATE(6552), 1, sym__declarator, - STATE(8161), 1, + STATE(8135), 1, sym_ms_based_modifier, - ACTIONS(3333), 2, + ACTIONS(3341), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4131), 2, + STATE(4215), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8601), 3, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(5998), 11, + STATE(6145), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -395841,7 +400901,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3331), 13, + ACTIONS(3339), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -395855,55 +400915,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [115595] = 11, + [117091] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(8153), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(2997), 1, + anon_sym_LPAREN2, + ACTIONS(2999), 1, + anon_sym_TILDE, + ACTIONS(7103), 1, + anon_sym_LBRACK, + ACTIONS(7209), 1, sym_identifier, - ACTIONS(8163), 1, - sym_primitive_type, - STATE(3992), 1, + ACTIONS(7211), 1, + anon_sym_STAR, + ACTIONS(7213), 1, + anon_sym_AMP_AMP, + ACTIONS(7215), 1, + anon_sym_AMP, + ACTIONS(7217), 1, + anon_sym_COLON_COLON, + STATE(4325), 1, sym_alignas_qualifier, - STATE(4196), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8160), 2, + STATE(5895), 1, + sym__scope_resolution, + STATE(6322), 1, + sym__declarator, + STATE(8623), 1, + sym_ms_based_modifier, + ACTIONS(3341), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3727), 2, + STATE(4215), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(8158), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5100), 9, - anon_sym_COMMA, + STATE(8569), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6145), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(3339), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [117184] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(67), 1, + anon_sym_const, + ACTIONS(7848), 1, anon_sym_LPAREN2, + ACTIONS(7856), 1, + sym_ms_restrict_modifier, + ACTIONS(7862), 1, + anon_sym_LBRACK, + ACTIONS(8183), 1, anon_sym_STAR, + ACTIONS(8185), 1, anon_sym_AMP_AMP, + ACTIONS(8187), 1, + anon_sym_AMP, + STATE(1680), 1, + sym_alignas_qualifier, + STATE(3077), 1, + sym_parameter_list, + STATE(3758), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5953), 1, + sym__function_declarator_seq, + STATE(6518), 1, + sym__abstract_declarator, + ACTIONS(7304), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7858), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(7860), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3386), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4419), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5952), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(5877), 8, + anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, - ACTIONS(5102), 13, - anon_sym_AMP, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_auto, - anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - ACTIONS(8155), 13, + ACTIONS(7297), 12, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -395915,52 +401056,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [115666] = 22, + [117275] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5601), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + ACTIONS(5603), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_GT2, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [117330] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1852), 1, + ACTIONS(1850), 1, anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2977), 1, + ACTIONS(2997), 1, anon_sym_LPAREN2, - ACTIONS(2979), 1, + ACTIONS(2999), 1, anon_sym_TILDE, - ACTIONS(5849), 1, - sym_identifier, ACTIONS(5861), 1, - anon_sym_COLON_COLON, - ACTIONS(7089), 1, + sym_identifier, + ACTIONS(7103), 1, anon_sym_LBRACK, - ACTIONS(7165), 1, + ACTIONS(7271), 1, anon_sym_STAR, - ACTIONS(7167), 1, + ACTIONS(7273), 1, anon_sym_AMP_AMP, - ACTIONS(7169), 1, + ACTIONS(7275), 1, anon_sym_AMP, - STATE(4289), 1, + ACTIONS(7277), 1, + anon_sym_COLON_COLON, + STATE(4325), 1, sym_alignas_qualifier, - STATE(5860), 1, + STATE(5967), 1, sym__scope_resolution, - STATE(6614), 1, + STATE(6228), 1, sym__declarator, - STATE(8161), 1, + STATE(8221), 1, sym_ms_based_modifier, - ACTIONS(3333), 2, + ACTIONS(3341), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4131), 2, + STATE(4215), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8601), 3, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(5998), 11, + STATE(6145), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -395972,7 +401165,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3331), 13, + ACTIONS(3339), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -395986,46 +401179,234 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [115759] = 10, + [117423] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + STATE(4143), 1, + sym_attribute_specifier, + ACTIONS(6033), 2, + anon_sym___attribute__, anon_sym___attribute, - ACTIONS(6971), 1, + ACTIONS(6104), 19, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(6106), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LBRACE, - ACTIONS(7147), 1, - anon_sym___attribute__, - ACTIONS(8165), 1, - anon_sym_COLON, - STATE(2509), 1, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [117482] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4147), 1, sym_attribute_specifier, - STATE(3489), 1, - sym__enum_base_clause, - STATE(3613), 1, - sym_enumerator_list, - ACTIONS(6336), 4, + ACTIONS(6033), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(6149), 19, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(6151), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(6338), 36, - anon_sym_RPAREN, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [117541] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3623), 1, + anon_sym_LBRACE, + ACTIONS(7992), 1, + anon_sym_LBRACK, + ACTIONS(8177), 1, anon_sym_LPAREN2, + ACTIONS(8179), 1, + sym_auto, + ACTIONS(8181), 1, + anon_sym_decltype, + STATE(1864), 1, + sym_decltype_auto, + STATE(4199), 1, + sym_new_declarator, + STATE(3863), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5881), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute, + anon_sym_DOT, + ACTIONS(5883), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, 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_LT, + anon_sym_GT_GT, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [117612] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(2997), 1, + anon_sym_LPAREN2, + ACTIONS(2999), 1, + anon_sym_TILDE, + ACTIONS(5481), 1, + sym_identifier, + ACTIONS(6365), 1, + anon_sym_COLON_COLON, + ACTIONS(7103), 1, + anon_sym_LBRACK, + ACTIONS(7111), 1, + anon_sym_STAR, + ACTIONS(7113), 1, + anon_sym_AMP_AMP, + ACTIONS(7115), 1, + anon_sym_AMP, + STATE(4325), 1, + sym_alignas_qualifier, + STATE(5923), 1, + sym__scope_resolution, + STATE(6320), 1, + sym__declarator, + STATE(8339), 1, + sym_ms_based_modifier, + ACTIONS(3341), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4215), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8569), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6145), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(3339), 13, anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_static, - anon_sym_register, - 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, @@ -396037,60 +401418,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + [117705] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4118), 1, + sym_attribute_specifier, + ACTIONS(6033), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(6214), 19, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [115828] = 22, + ACTIONS(6216), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [117764] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1852), 1, + ACTIONS(1850), 1, anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2977), 1, + ACTIONS(2997), 1, anon_sym_LPAREN2, - ACTIONS(2979), 1, + ACTIONS(2999), 1, anon_sym_TILDE, - ACTIONS(7089), 1, - anon_sym_LBRACK, - ACTIONS(7281), 1, + ACTIONS(5861), 1, sym_identifier, - ACTIONS(7283), 1, + ACTIONS(7103), 1, + anon_sym_LBRACK, + ACTIONS(7271), 1, anon_sym_STAR, - ACTIONS(7285), 1, + ACTIONS(7273), 1, anon_sym_AMP_AMP, - ACTIONS(7287), 1, + ACTIONS(7275), 1, anon_sym_AMP, - ACTIONS(7289), 1, + ACTIONS(7277), 1, anon_sym_COLON_COLON, - STATE(4289), 1, + STATE(4325), 1, sym_alignas_qualifier, - STATE(5807), 1, + STATE(5967), 1, sym__scope_resolution, - STATE(6423), 1, + STATE(6255), 1, sym__declarator, - STATE(8592), 1, + STATE(8221), 1, sym_ms_based_modifier, - ACTIONS(3333), 2, + ACTIONS(3341), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4131), 2, + STATE(4215), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8601), 3, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(5998), 11, + STATE(6145), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -396102,7 +401529,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3331), 13, + ACTIONS(3339), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -396116,52 +401543,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [115921] = 22, + [117857] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1852), 1, + ACTIONS(1850), 1, anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2977), 1, + ACTIONS(2997), 1, anon_sym_LPAREN2, - ACTIONS(2979), 1, + ACTIONS(2999), 1, anon_sym_TILDE, - ACTIONS(5849), 1, + ACTIONS(5861), 1, sym_identifier, - ACTIONS(7089), 1, + ACTIONS(5873), 1, + anon_sym_COLON_COLON, + ACTIONS(7103), 1, anon_sym_LBRACK, - ACTIONS(7291), 1, + ACTIONS(7219), 1, anon_sym_STAR, - ACTIONS(7293), 1, + ACTIONS(7221), 1, anon_sym_AMP_AMP, - ACTIONS(7295), 1, + ACTIONS(7223), 1, anon_sym_AMP, - ACTIONS(7297), 1, - anon_sym_COLON_COLON, - STATE(4289), 1, + STATE(4325), 1, sym_alignas_qualifier, - STATE(5838), 1, + STATE(5896), 1, sym__scope_resolution, - STATE(6155), 1, + STATE(6741), 1, sym__declarator, - STATE(8021), 1, + STATE(8381), 1, sym_ms_based_modifier, - ACTIONS(3333), 2, + ACTIONS(3341), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4131), 2, + STATE(4215), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8601), 3, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(5998), 11, + STATE(6145), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -396173,7 +401600,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3331), 13, + ACTIONS(3339), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -396187,69 +401614,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [116014] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(4064), 1, - sym_attribute_specifier, - ACTIONS(6016), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(6151), 19, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6153), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [116073] = 5, + [117950] = 5, ACTIONS(3), 1, sym_comment, - STATE(4094), 1, + STATE(4114), 1, sym_attribute_specifier, - ACTIONS(6016), 2, + ACTIONS(6033), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(6155), 19, + ACTIONS(6210), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -396269,7 +401642,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(6157), 25, + ACTIONS(6212), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -396295,52 +401668,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [116132] = 22, + [118009] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1852), 1, + ACTIONS(1850), 1, anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2977), 1, + ACTIONS(2997), 1, anon_sym_LPAREN2, - ACTIONS(2979), 1, + ACTIONS(2999), 1, anon_sym_TILDE, - ACTIONS(5849), 1, - sym_identifier, ACTIONS(5861), 1, + sym_identifier, + ACTIONS(5873), 1, anon_sym_COLON_COLON, - ACTIONS(7089), 1, - anon_sym_LBRACK, - ACTIONS(7165), 1, + ACTIONS(7097), 1, anon_sym_STAR, - ACTIONS(7167), 1, + ACTIONS(7099), 1, anon_sym_AMP_AMP, - ACTIONS(7169), 1, + ACTIONS(7101), 1, anon_sym_AMP, - STATE(4289), 1, + ACTIONS(7103), 1, + anon_sym_LBRACK, + STATE(4325), 1, sym_alignas_qualifier, - STATE(5860), 1, + STATE(5896), 1, sym__scope_resolution, - STATE(6609), 1, + STATE(6401), 1, sym__declarator, - STATE(8161), 1, + STATE(8286), 1, sym_ms_based_modifier, - ACTIONS(3333), 2, + ACTIONS(3341), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4131), 2, + STATE(4215), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8601), 3, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(5998), 11, + STATE(6145), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -396352,7 +401725,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3331), 13, + ACTIONS(3339), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -396366,52 +401739,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [116225] = 22, + [118102] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(2999), 1, + anon_sym_TILDE, + ACTIONS(4310), 1, + anon_sym_LPAREN2, + ACTIONS(5861), 1, + sym_identifier, + ACTIONS(5873), 1, + anon_sym_COLON_COLON, + ACTIONS(5875), 1, + anon_sym_LBRACK, + ACTIONS(5998), 1, + anon_sym_STAR, + ACTIONS(8189), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8193), 1, + anon_sym_AMP_AMP, + ACTIONS(8195), 1, + anon_sym_AMP, + ACTIONS(8197), 1, + anon_sym_EQ, + STATE(3357), 1, + sym_parameter_list, + STATE(5896), 1, + sym__scope_resolution, + STATE(6109), 1, + sym__function_declarator_seq, + STATE(6368), 1, + sym__declarator, + STATE(6658), 1, + sym__abstract_declarator, + STATE(6846), 1, + sym_abstract_reference_declarator, + STATE(7614), 1, + sym_variadic_declarator, + STATE(7615), 1, + sym_variadic_reference_declarator, + STATE(8286), 1, + sym_ms_based_modifier, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8191), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(6854), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(8569), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6099), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(6145), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [118211] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1852), 1, + ACTIONS(1850), 1, anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2977), 1, + ACTIONS(2997), 1, anon_sym_LPAREN2, - ACTIONS(2979), 1, + ACTIONS(2999), 1, anon_sym_TILDE, - ACTIONS(5460), 1, + ACTIONS(5481), 1, sym_identifier, - ACTIONS(7089), 1, + ACTIONS(7103), 1, anon_sym_LBRACK, - ACTIONS(7171), 1, + ACTIONS(7257), 1, anon_sym_STAR, - ACTIONS(7173), 1, + ACTIONS(7259), 1, anon_sym_AMP_AMP, - ACTIONS(7175), 1, + ACTIONS(7261), 1, anon_sym_AMP, - ACTIONS(7177), 1, + ACTIONS(7263), 1, anon_sym_COLON_COLON, - STATE(4289), 1, + STATE(4325), 1, sym_alignas_qualifier, - STATE(5850), 1, + STATE(5931), 1, sym__scope_resolution, - STATE(6652), 1, + STATE(6816), 1, sym__declarator, - STATE(8214), 1, + STATE(8398), 1, sym_ms_based_modifier, - ACTIONS(3333), 2, + ACTIONS(3341), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4131), 2, + STATE(4215), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8601), 3, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(5998), 11, + STATE(6145), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -396423,7 +401875,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3331), 13, + ACTIONS(3339), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -396437,52 +401889,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [116318] = 22, + [118304] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1852), 1, + ACTIONS(1850), 1, anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2977), 1, + ACTIONS(2997), 1, anon_sym_LPAREN2, - ACTIONS(2979), 1, + ACTIONS(2999), 1, anon_sym_TILDE, - ACTIONS(5460), 1, + ACTIONS(5861), 1, sym_identifier, - ACTIONS(7089), 1, - anon_sym_LBRACK, - ACTIONS(7171), 1, + ACTIONS(5873), 1, + anon_sym_COLON_COLON, + ACTIONS(7097), 1, anon_sym_STAR, - ACTIONS(7173), 1, + ACTIONS(7099), 1, anon_sym_AMP_AMP, - ACTIONS(7175), 1, + ACTIONS(7101), 1, anon_sym_AMP, - ACTIONS(7177), 1, - anon_sym_COLON_COLON, - STATE(4289), 1, + ACTIONS(7103), 1, + anon_sym_LBRACK, + STATE(4325), 1, sym_alignas_qualifier, - STATE(5850), 1, + STATE(5896), 1, sym__scope_resolution, - STATE(6662), 1, + STATE(6451), 1, sym__declarator, - STATE(8214), 1, + STATE(8286), 1, sym_ms_based_modifier, - ACTIONS(3333), 2, + ACTIONS(3341), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4131), 2, + STATE(4215), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8601), 3, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(5998), 11, + STATE(6145), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -396494,7 +401946,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3331), 13, + ACTIONS(3339), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -396508,46 +401960,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [116411] = 10, + [118397] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(6971), 1, - anon_sym_LBRACE, - ACTIONS(7147), 1, - anon_sym___attribute__, - ACTIONS(8165), 1, - anon_sym_COLON, - STATE(2469), 1, - sym_attribute_specifier, - STATE(3490), 1, - sym__enum_base_clause, - STATE(3616), 1, - sym_enumerator_list, - ACTIONS(6342), 4, - anon_sym_AMP, + ACTIONS(4986), 1, + anon_sym_SEMI, + ACTIONS(4995), 1, anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(6344), 36, + ACTIONS(4988), 3, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(4991), 7, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_EQ, + ACTIONS(4984), 35, + anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, - anon_sym_LBRACK_LBRACK, + anon_sym___attribute__, + anon_sym___attribute, anon_sym___declspec, + anon_sym___based, anon_sym_static, 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, @@ -396561,58 +402010,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [116480] = 22, + anon_sym_template, + anon_sym_operator, + [118458] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1852), 1, + ACTIONS(1850), 1, anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2977), 1, + ACTIONS(2997), 1, anon_sym_LPAREN2, - ACTIONS(2979), 1, + ACTIONS(2999), 1, anon_sym_TILDE, - ACTIONS(5849), 1, - sym_identifier, ACTIONS(5861), 1, + sym_identifier, + ACTIONS(5873), 1, anon_sym_COLON_COLON, - ACTIONS(7089), 1, - anon_sym_LBRACK, - ACTIONS(7105), 1, + ACTIONS(7097), 1, anon_sym_STAR, - ACTIONS(7107), 1, + ACTIONS(7099), 1, anon_sym_AMP_AMP, - ACTIONS(7109), 1, + ACTIONS(7101), 1, anon_sym_AMP, - STATE(4289), 1, + ACTIONS(7103), 1, + anon_sym_LBRACK, + STATE(4325), 1, sym_alignas_qualifier, - STATE(5860), 1, + STATE(5896), 1, sym__scope_resolution, - STATE(6349), 1, + STATE(6408), 1, sym__declarator, - STATE(8106), 1, + STATE(8286), 1, sym_ms_based_modifier, - ACTIONS(3333), 2, + ACTIONS(3341), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4131), 2, + STATE(4215), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8601), 3, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(5998), 11, + STATE(6145), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -396624,7 +402072,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3331), 13, + ACTIONS(3339), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -396638,135 +402086,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [116573] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3615), 1, - anon_sym_LBRACE, - ACTIONS(7953), 1, - anon_sym_LBRACK, - ACTIONS(8147), 1, - anon_sym_LPAREN2, - ACTIONS(8149), 1, - sym_auto, - ACTIONS(8151), 1, - anon_sym_decltype, - STATE(1884), 1, - sym_decltype_auto, - STATE(4138), 1, - sym_new_declarator, - STATE(3840), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(5823), 10, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute, - anon_sym_DOT, - ACTIONS(5825), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - 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_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [116644] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3615), 1, - anon_sym_LBRACE, - ACTIONS(7953), 1, - anon_sym_LBRACK, - ACTIONS(8147), 1, - anon_sym_LPAREN2, - ACTIONS(8149), 1, - sym_auto, - ACTIONS(8151), 1, - anon_sym_decltype, - STATE(1884), 1, - sym_decltype_auto, - STATE(4135), 1, - sym_new_declarator, - STATE(3844), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(5869), 10, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute, - anon_sym_DOT, - ACTIONS(5871), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - 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_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [116715] = 5, + [118551] = 5, ACTIONS(3), 1, sym_comment, - STATE(4054), 1, + STATE(4109), 1, sym_attribute_specifier, - ACTIONS(6016), 2, + ACTIONS(6033), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(6117), 19, + ACTIONS(6153), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -396786,7 +402114,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(6119), 25, + ACTIONS(6155), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -396812,64 +402140,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [116774] = 5, + [118610] = 22, ACTIONS(3), 1, sym_comment, - STATE(4070), 1, - sym_attribute_specifier, - ACTIONS(6016), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(6121), 19, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - sym_auto, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(6123), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + ACTIONS(2997), 1, anon_sym_LPAREN2, + ACTIONS(2999), 1, + anon_sym_TILDE, + ACTIONS(7103), 1, + anon_sym_LBRACK, + ACTIONS(7209), 1, + sym_identifier, + ACTIONS(7211), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(7213), 1, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [116833] = 3, + ACTIONS(7215), 1, + anon_sym_AMP, + ACTIONS(7217), 1, + anon_sym_COLON_COLON, + STATE(4325), 1, + sym_alignas_qualifier, + STATE(5895), 1, + sym__scope_resolution, + STATE(6321), 1, + sym__declarator, + STATE(8623), 1, + sym_ms_based_modifier, + ACTIONS(3341), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4215), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8569), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6145), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(3339), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [118703] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5489), 18, + ACTIONS(5477), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -396888,7 +402233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_literal_suffix, - ACTIONS(5491), 29, + ACTIONS(5479), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -396918,24 +402263,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [116888] = 5, + [118758] = 11, ACTIONS(3), 1, sym_comment, - STATE(4075), 1, + ACTIONS(5563), 1, + anon_sym_COLON, + ACTIONS(6530), 1, + anon_sym_LBRACE, + STATE(2495), 1, sym_attribute_specifier, - ACTIONS(6016), 2, + STATE(2916), 1, + sym_field_declaration_list, + STATE(7168), 1, + sym_virtual_specifier, + STATE(7765), 1, + sym_base_class_clause, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(6125), 19, - aux_sym_preproc_elif_token1, + ACTIONS(5567), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5559), 5, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(5557), 32, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_operator, + [118829] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5641), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_GT_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -396943,16 +402344,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6127), 25, + sym_literal_suffix, + ACTIONS(5643), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -396961,10 +402356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -396972,15 +402364,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [116947] = 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_GT2, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [118884] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(2997), 1, + anon_sym_LPAREN2, + ACTIONS(2999), 1, + anon_sym_TILDE, + ACTIONS(5861), 1, + sym_identifier, + ACTIONS(5873), 1, + anon_sym_COLON_COLON, + ACTIONS(7103), 1, + anon_sym_LBRACK, + ACTIONS(7105), 1, + anon_sym_STAR, + ACTIONS(7107), 1, + anon_sym_AMP_AMP, + ACTIONS(7109), 1, + anon_sym_AMP, + STATE(4325), 1, + sym_alignas_qualifier, + STATE(5896), 1, + sym__scope_resolution, + STATE(6216), 1, + sym__declarator, + STATE(8504), 1, + sym_ms_based_modifier, + ACTIONS(3341), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4215), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8569), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6145), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(3339), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [118977] = 5, ACTIONS(3), 1, sym_comment, - STATE(4077), 1, + STATE(4146), 1, sym_attribute_specifier, - ACTIONS(6016), 2, + ACTIONS(6033), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(6129), 19, + ACTIONS(6108), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -397000,7 +402474,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(6131), 25, + ACTIONS(6110), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -397026,15 +402500,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [117006] = 5, + [119036] = 5, ACTIONS(3), 1, sym_comment, - STATE(4098), 1, + STATE(4112), 1, sym_attribute_specifier, - ACTIONS(6016), 2, + ACTIONS(6033), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(6090), 19, + ACTIONS(6157), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -397054,7 +402528,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(6092), 25, + ACTIONS(6159), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -397080,122 +402554,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [117065] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(7842), 1, - anon_sym_LPAREN2, - ACTIONS(7850), 1, - sym_ms_restrict_modifier, - ACTIONS(7856), 1, - anon_sym_LBRACK, - ACTIONS(8167), 1, - anon_sym_STAR, - ACTIONS(8169), 1, - anon_sym_AMP_AMP, - ACTIONS(8171), 1, - anon_sym_AMP, - STATE(1658), 1, - sym_alignas_qualifier, - STATE(2991), 1, - sym_parameter_list, - STATE(3761), 1, - sym_ms_unaligned_ptr_modifier, - STATE(5792), 1, - sym__function_declarator_seq, - STATE(6391), 1, - sym__abstract_declarator, - ACTIONS(7152), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(7852), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(7854), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3283), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4399), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5804), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5865), 8, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - ACTIONS(7145), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [117156] = 22, + [119095] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1852), 1, + ACTIONS(1850), 1, anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2977), 1, + ACTIONS(2997), 1, anon_sym_LPAREN2, - ACTIONS(2979), 1, + ACTIONS(2999), 1, anon_sym_TILDE, - ACTIONS(5849), 1, + ACTIONS(5861), 1, sym_identifier, - ACTIONS(7089), 1, + ACTIONS(5873), 1, + anon_sym_COLON_COLON, + ACTIONS(7103), 1, anon_sym_LBRACK, - ACTIONS(7291), 1, + ACTIONS(7105), 1, anon_sym_STAR, - ACTIONS(7293), 1, + ACTIONS(7107), 1, anon_sym_AMP_AMP, - ACTIONS(7295), 1, + ACTIONS(7109), 1, anon_sym_AMP, - ACTIONS(7297), 1, - anon_sym_COLON_COLON, - STATE(4289), 1, + STATE(4325), 1, sym_alignas_qualifier, - STATE(5838), 1, + STATE(5896), 1, sym__scope_resolution, - STATE(6141), 1, + STATE(6276), 1, sym__declarator, - STATE(8021), 1, + STATE(8504), 1, sym_ms_based_modifier, - ACTIONS(3333), 2, + ACTIONS(3341), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4131), 2, + STATE(4215), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8601), 3, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(5998), 11, + STATE(6145), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -397207,7 +402611,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3331), 13, + ACTIONS(3339), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -397221,15 +402625,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [117249] = 5, + [119188] = 5, ACTIONS(3), 1, sym_comment, - STATE(4061), 1, + STATE(4155), 1, sym_attribute_specifier, - ACTIONS(6016), 2, + ACTIONS(6033), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(6096), 19, + ACTIONS(6100), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -397249,7 +402653,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(6098), 25, + ACTIONS(6102), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -397275,16 +402679,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [117308] = 5, + [119247] = 11, ACTIONS(3), 1, sym_comment, - STATE(4062), 1, - sym_attribute_specifier, - ACTIONS(6016), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(6168), 19, - aux_sym_preproc_elif_token1, + ACTIONS(3623), 1, + anon_sym_LBRACE, + ACTIONS(7992), 1, + anon_sym_LBRACK, + ACTIONS(8177), 1, + anon_sym_LPAREN2, + ACTIONS(8179), 1, + sym_auto, + ACTIONS(8181), 1, + anon_sym_decltype, + STATE(1864), 1, + sym_decltype_auto, + STATE(4191), 1, + sym_new_declarator, + STATE(3927), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5857), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -397293,24 +402708,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym___attribute, anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6170), 25, + ACTIONS(5859), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, + anon_sym_RPAREN, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -397321,23 +402724,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [117367] = 5, + [119318] = 5, ACTIONS(3), 1, sym_comment, - STATE(4080), 1, + STATE(4128), 1, sym_attribute_specifier, - ACTIONS(6016), 2, + ACTIONS(6033), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(6104), 19, + ACTIONS(6161), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -397357,7 +402767,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(6106), 25, + ACTIONS(6163), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -397383,42 +402793,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [117426] = 6, + [119377] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(4998), 1, - anon_sym_SEMI, - ACTIONS(5007), 1, - anon_sym_LBRACK, - ACTIONS(5000), 3, - anon_sym_RPAREN, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(2997), 1, anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(5003), 7, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(2999), 1, anon_sym_TILDE, + ACTIONS(7103), 1, + anon_sym_LBRACK, + ACTIONS(7209), 1, + sym_identifier, + ACTIONS(7217), 1, + anon_sym_COLON_COLON, + ACTIONS(7265), 1, anon_sym_STAR, + ACTIONS(7267), 1, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_EQ, - ACTIONS(4996), 35, + ACTIONS(7269), 1, anon_sym_AMP, + STATE(4325), 1, + sym_alignas_qualifier, + STATE(5895), 1, + sym__scope_resolution, + STATE(6630), 1, + sym__declarator, + STATE(8135), 1, + sym_ms_based_modifier, + ACTIONS(3341), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4215), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8569), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6145), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(3339), 13, anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - 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, @@ -397431,59 +402864,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - sym_auto, - anon_sym_decltype, + [119470] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1268), 1, anon_sym_template, + ACTIONS(1850), 1, anon_sym_operator, - [117487] = 22, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(2997), 1, + anon_sym_LPAREN2, + ACTIONS(2999), 1, + anon_sym_TILDE, + ACTIONS(5481), 1, + sym_identifier, + ACTIONS(6365), 1, + anon_sym_COLON_COLON, + ACTIONS(7103), 1, + anon_sym_LBRACK, + ACTIONS(7111), 1, + anon_sym_STAR, + ACTIONS(7113), 1, + anon_sym_AMP_AMP, + ACTIONS(7115), 1, + anon_sym_AMP, + STATE(4325), 1, + sym_alignas_qualifier, + STATE(5923), 1, + sym__scope_resolution, + STATE(6321), 1, + sym__declarator, + STATE(8339), 1, + sym_ms_based_modifier, + ACTIONS(3341), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4215), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8569), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6145), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(3339), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [119563] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(29), 1, anon_sym_AMP_AMP, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1852), 1, + ACTIONS(1850), 1, anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2977), 1, + ACTIONS(2997), 1, anon_sym_LPAREN2, - ACTIONS(2979), 1, + ACTIONS(2999), 1, anon_sym_TILDE, - ACTIONS(2981), 1, + ACTIONS(3001), 1, anon_sym_STAR, - ACTIONS(2983), 1, + ACTIONS(3003), 1, anon_sym_AMP, - ACTIONS(5460), 1, + ACTIONS(5481), 1, sym_identifier, - ACTIONS(6321), 1, + ACTIONS(6365), 1, anon_sym_COLON_COLON, - ACTIONS(7089), 1, + ACTIONS(7103), 1, anon_sym_LBRACK, - STATE(4289), 1, + STATE(4325), 1, sym_alignas_qualifier, - STATE(5847), 1, + STATE(5923), 1, sym__scope_resolution, - STATE(6509), 1, + STATE(6635), 1, sym__declarator, - STATE(8682), 1, + STATE(8864), 1, sym_ms_based_modifier, - ACTIONS(3333), 2, + ACTIONS(3341), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4131), 2, + STATE(4215), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8601), 3, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(5998), 11, + STATE(6145), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -397495,7 +402992,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3331), 13, + ACTIONS(3339), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -397509,52 +403006,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [117580] = 22, + [119656] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1852), 1, + ACTIONS(1850), 1, anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2977), 1, + ACTIONS(2997), 1, anon_sym_LPAREN2, - ACTIONS(2979), 1, + ACTIONS(2999), 1, anon_sym_TILDE, - ACTIONS(5849), 1, + ACTIONS(5481), 1, sym_identifier, - ACTIONS(5861), 1, + ACTIONS(6365), 1, anon_sym_COLON_COLON, - ACTIONS(7089), 1, + ACTIONS(7103), 1, anon_sym_LBRACK, - ACTIONS(7275), 1, + ACTIONS(7111), 1, anon_sym_STAR, - ACTIONS(7277), 1, + ACTIONS(7113), 1, anon_sym_AMP_AMP, - ACTIONS(7279), 1, + ACTIONS(7115), 1, anon_sym_AMP, - STATE(4289), 1, + STATE(4325), 1, sym_alignas_qualifier, - STATE(5860), 1, + STATE(5923), 1, sym__scope_resolution, - STATE(6142), 1, + STATE(6322), 1, sym__declarator, - STATE(8398), 1, + STATE(8339), 1, sym_ms_based_modifier, - ACTIONS(3333), 2, + ACTIONS(3341), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4131), 2, + STATE(4215), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8601), 3, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(5998), 11, + STATE(6145), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -397566,7 +403063,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3331), 13, + ACTIONS(3339), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -397580,10 +403077,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [117673] = 3, + [119749] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5478), 18, + ACTIONS(5470), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -397602,9 +403099,204 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_literal_suffix, - ACTIONS(5480), 29, + ACTIONS(5472), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_GT2, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [119804] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(2999), 1, + anon_sym_TILDE, + ACTIONS(4310), 1, + anon_sym_LPAREN2, + ACTIONS(5861), 1, + sym_identifier, + ACTIONS(5873), 1, + anon_sym_COLON_COLON, + ACTIONS(5875), 1, + anon_sym_LBRACK, + ACTIONS(6014), 1, + anon_sym_STAR, + ACTIONS(8189), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8193), 1, + anon_sym_AMP_AMP, + ACTIONS(8195), 1, + anon_sym_AMP, + ACTIONS(8199), 1, + anon_sym_EQ, + STATE(3276), 1, + sym_parameter_list, + STATE(5896), 1, + sym__scope_resolution, + STATE(6109), 1, + sym__function_declarator_seq, + STATE(6373), 1, + sym__declarator, + STATE(6661), 1, + sym__abstract_declarator, + STATE(6881), 1, + sym_abstract_reference_declarator, + STATE(7614), 1, + sym_variadic_declarator, + STATE(7615), 1, + sym_variadic_reference_declarator, + STATE(8286), 1, + sym_ms_based_modifier, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8191), 2, + anon_sym_COMMA, + anon_sym_GT2, + STATE(6854), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(8569), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6099), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(6145), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [119913] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4121), 1, + sym_attribute_specifier, + ACTIONS(6033), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(6206), 19, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(6208), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [119972] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4142), 1, + sym_attribute_specifier, + ACTIONS(6033), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(6165), 19, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(6167), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -397613,7 +403305,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -397621,85 +403316,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_GT2, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [117728] = 30, + [120031] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1852), 1, + ACTIONS(1850), 1, anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2979), 1, - anon_sym_TILDE, - ACTIONS(4298), 1, + ACTIONS(2997), 1, anon_sym_LPAREN2, - ACTIONS(5849), 1, + ACTIONS(2999), 1, + anon_sym_TILDE, + ACTIONS(7103), 1, + anon_sym_LBRACK, + ACTIONS(7209), 1, sym_identifier, - ACTIONS(5861), 1, + ACTIONS(7217), 1, anon_sym_COLON_COLON, - ACTIONS(5863), 1, - anon_sym_LBRACK, - ACTIONS(6032), 1, + ACTIONS(7265), 1, anon_sym_STAR, - ACTIONS(8173), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8177), 1, + ACTIONS(7267), 1, anon_sym_AMP_AMP, - ACTIONS(8179), 1, + ACTIONS(7269), 1, anon_sym_AMP, - ACTIONS(8181), 1, - anon_sym_EQ, - STATE(3223), 1, - sym_parameter_list, - STATE(5860), 1, + STATE(4325), 1, + sym_alignas_qualifier, + STATE(5895), 1, sym__scope_resolution, - STATE(6087), 1, - sym__function_declarator_seq, - STATE(6208), 1, + STATE(6635), 1, sym__declarator, - STATE(6526), 1, - sym__abstract_declarator, - STATE(6729), 1, - sym_abstract_reference_declarator, - STATE(7367), 1, - sym_variadic_declarator, - STATE(7368), 1, - sym_variadic_reference_declarator, - STATE(8106), 1, + STATE(8135), 1, sym_ms_based_modifier, - ACTIONS(43), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(8175), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(6720), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(8601), 3, + ACTIONS(3341), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4215), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6092), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(5998), 11, + STATE(6145), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -397711,65 +403373,9 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [117837] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(7842), 1, - anon_sym_LPAREN2, - ACTIONS(7850), 1, - sym_ms_restrict_modifier, - ACTIONS(7856), 1, - anon_sym_LBRACK, - ACTIONS(8167), 1, - anon_sym_STAR, - ACTIONS(8169), 1, - anon_sym_AMP_AMP, - ACTIONS(8171), 1, - anon_sym_AMP, - STATE(1658), 1, - sym_alignas_qualifier, - STATE(2991), 1, - sym_parameter_list, - STATE(3761), 1, - sym_ms_unaligned_ptr_modifier, - STATE(5792), 1, - sym__function_declarator_seq, - STATE(6385), 1, - sym__abstract_declarator, - ACTIONS(7152), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(7852), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(7854), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3957), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4404), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5804), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5851), 8, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - ACTIONS(7145), 12, + ACTIONS(3339), 13, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -397781,27 +403387,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [117928] = 11, + [120124] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3615), 1, + ACTIONS(3623), 1, anon_sym_LBRACE, - ACTIONS(7953), 1, + ACTIONS(7992), 1, anon_sym_LBRACK, - ACTIONS(8147), 1, + ACTIONS(8177), 1, anon_sym_LPAREN2, - ACTIONS(8149), 1, + ACTIONS(8179), 1, sym_auto, - ACTIONS(8151), 1, + ACTIONS(8181), 1, anon_sym_decltype, - STATE(1884), 1, + STATE(1864), 1, sym_decltype_auto, - STATE(4161), 1, + STATE(4220), 1, sym_new_declarator, - STATE(3898), 2, + STATE(3939), 2, sym_argument_list, sym_initializer_list, - ACTIONS(5842), 10, + ACTIONS(5853), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -397812,7 +403418,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym___attribute, anon_sym_DOT, - ACTIONS(5844), 28, + ACTIONS(5855), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -397841,123 +403447,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [117999] = 22, + [120195] = 22, ACTIONS(3), 1, sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1852), 1, + ACTIONS(1850), 1, anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2977), 1, + ACTIONS(2997), 1, anon_sym_LPAREN2, - ACTIONS(2979), 1, + ACTIONS(2999), 1, anon_sym_TILDE, - ACTIONS(5849), 1, - sym_identifier, - ACTIONS(7089), 1, - anon_sym_LBRACK, - ACTIONS(7291), 1, + ACTIONS(3001), 1, anon_sym_STAR, - ACTIONS(7293), 1, - anon_sym_AMP_AMP, - ACTIONS(7295), 1, + ACTIONS(3003), 1, anon_sym_AMP, - ACTIONS(7297), 1, - anon_sym_COLON_COLON, - STATE(4289), 1, - sym_alignas_qualifier, - STATE(5838), 1, - sym__scope_resolution, - STATE(6098), 1, - sym__declarator, - STATE(8021), 1, - sym_ms_based_modifier, - ACTIONS(3333), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4131), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8601), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(5998), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3331), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [118092] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(2977), 1, - anon_sym_LPAREN2, - ACTIONS(2979), 1, - anon_sym_TILDE, - ACTIONS(5849), 1, + ACTIONS(5481), 1, sym_identifier, - ACTIONS(5861), 1, + ACTIONS(6365), 1, anon_sym_COLON_COLON, - ACTIONS(7089), 1, + ACTIONS(7103), 1, anon_sym_LBRACK, - ACTIONS(7275), 1, - anon_sym_STAR, - ACTIONS(7277), 1, - anon_sym_AMP_AMP, - ACTIONS(7279), 1, - anon_sym_AMP, - STATE(4289), 1, + STATE(4325), 1, sym_alignas_qualifier, - STATE(5860), 1, + STATE(5923), 1, sym__scope_resolution, - STATE(6168), 1, + STATE(6552), 1, sym__declarator, - STATE(8398), 1, + STATE(8864), 1, sym_ms_based_modifier, - ACTIONS(3333), 2, + ACTIONS(3341), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4131), 2, + STATE(4215), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8601), 3, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(5998), 11, + STATE(6145), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -397969,7 +403504,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3331), 13, + ACTIONS(3339), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -397983,15 +403518,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [118185] = 5, + [120288] = 5, ACTIONS(3), 1, sym_comment, - STATE(4078), 1, + STATE(4156), 1, sym_attribute_specifier, - ACTIONS(6016), 2, + ACTIONS(6033), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(6062), 19, + ACTIONS(6169), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -398011,7 +403546,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(6064), 25, + ACTIONS(6171), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -398037,74 +403572,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [118244] = 30, + [120347] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8201), 1, + sym_identifier, + ACTIONS(8211), 1, + sym_primitive_type, + STATE(4036), 1, + sym_alignas_qualifier, + STATE(4113), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(8208), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3976), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8206), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5094), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + ACTIONS(5096), 13, + anon_sym_AMP, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(8203), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [120418] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1852), 1, + ACTIONS(1850), 1, anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2979), 1, - anon_sym_TILDE, - ACTIONS(4298), 1, + ACTIONS(2997), 1, anon_sym_LPAREN2, - ACTIONS(5849), 1, - sym_identifier, + ACTIONS(2999), 1, + anon_sym_TILDE, ACTIONS(5861), 1, - anon_sym_COLON_COLON, - ACTIONS(5863), 1, + sym_identifier, + ACTIONS(7103), 1, anon_sym_LBRACK, - ACTIONS(5971), 1, + ACTIONS(7271), 1, anon_sym_STAR, - ACTIONS(8173), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8177), 1, + ACTIONS(7273), 1, anon_sym_AMP_AMP, - ACTIONS(8179), 1, + ACTIONS(7275), 1, anon_sym_AMP, - ACTIONS(8183), 1, - anon_sym_EQ, - STATE(3216), 1, - sym_parameter_list, - STATE(5860), 1, + ACTIONS(7277), 1, + anon_sym_COLON_COLON, + STATE(4325), 1, + sym_alignas_qualifier, + STATE(5967), 1, sym__scope_resolution, - STATE(6087), 1, - sym__function_declarator_seq, - STATE(6273), 1, + STATE(6244), 1, sym__declarator, - STATE(6569), 1, - sym__abstract_declarator, - STATE(6772), 1, - sym_abstract_reference_declarator, - STATE(7367), 1, - sym_variadic_declarator, - STATE(7368), 1, - sym_variadic_reference_declarator, - STATE(8106), 1, + STATE(8221), 1, sym_ms_based_modifier, - ACTIONS(43), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(8175), 2, - anon_sym_COMMA, - anon_sym_GT2, - STATE(6720), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(8601), 3, + ACTIONS(3341), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4215), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6092), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(5998), 11, + STATE(6145), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -398116,52 +403689,66 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [118353] = 22, + ACTIONS(3339), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [120511] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1852), 1, + ACTIONS(1850), 1, anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2977), 1, + ACTIONS(2997), 1, anon_sym_LPAREN2, - ACTIONS(2979), 1, + ACTIONS(2999), 1, anon_sym_TILDE, - ACTIONS(5849), 1, - sym_identifier, ACTIONS(5861), 1, + sym_identifier, + ACTIONS(5873), 1, anon_sym_COLON_COLON, - ACTIONS(7089), 1, + ACTIONS(7103), 1, anon_sym_LBRACK, - ACTIONS(7275), 1, + ACTIONS(7219), 1, anon_sym_STAR, - ACTIONS(7277), 1, + ACTIONS(7221), 1, anon_sym_AMP_AMP, - ACTIONS(7279), 1, + ACTIONS(7223), 1, anon_sym_AMP, - STATE(4289), 1, + STATE(4325), 1, sym_alignas_qualifier, - STATE(5860), 1, + STATE(5896), 1, sym__scope_resolution, - STATE(6167), 1, + STATE(6696), 1, sym__declarator, - STATE(8398), 1, + STATE(8381), 1, sym_ms_based_modifier, - ACTIONS(3333), 2, + ACTIONS(3341), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4131), 2, + STATE(4215), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8601), 3, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(5998), 11, + STATE(6145), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -398173,7 +403760,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3331), 13, + ACTIONS(3339), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -398187,106 +403774,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [118446] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(4092), 1, - sym_attribute_specifier, - ACTIONS(6016), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(6058), 19, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6060), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [118505] = 22, + [120604] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1852), 1, + ACTIONS(1850), 1, anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2977), 1, + ACTIONS(2997), 1, anon_sym_LPAREN2, - ACTIONS(2979), 1, + ACTIONS(2999), 1, anon_sym_TILDE, - ACTIONS(5460), 1, + ACTIONS(5861), 1, sym_identifier, - ACTIONS(7089), 1, + ACTIONS(5873), 1, + anon_sym_COLON_COLON, + ACTIONS(7103), 1, anon_sym_LBRACK, - ACTIONS(7171), 1, + ACTIONS(7219), 1, anon_sym_STAR, - ACTIONS(7173), 1, + ACTIONS(7221), 1, anon_sym_AMP_AMP, - ACTIONS(7175), 1, + ACTIONS(7223), 1, anon_sym_AMP, - ACTIONS(7177), 1, - anon_sym_COLON_COLON, - STATE(4289), 1, + STATE(4325), 1, sym_alignas_qualifier, - STATE(5850), 1, + STATE(5896), 1, sym__scope_resolution, - STATE(6670), 1, + STATE(6698), 1, sym__declarator, - STATE(8214), 1, + STATE(8381), 1, sym_ms_based_modifier, - ACTIONS(3333), 2, + ACTIONS(3341), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4131), 2, + STATE(4215), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8601), 3, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(5998), 11, + STATE(6145), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -398298,7 +403831,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3331), 13, + ACTIONS(3339), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -398312,104 +403845,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [118598] = 6, + [120697] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3615), 1, - anon_sym_LBRACE, - ACTIONS(8101), 1, + ACTIONS(7065), 1, + anon_sym_const, + ACTIONS(7848), 1, anon_sym_LPAREN2, - STATE(3830), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6188), 17, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(6190), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + ACTIONS(7862), 1, + anon_sym_LBRACK, + ACTIONS(7885), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(7887), 1, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(7889), 1, + anon_sym_AMP, + ACTIONS(8215), 1, + anon_sym___asm, + ACTIONS(8217), 1, + sym_auto, + ACTIONS(8219), 1, + anon_sym_decltype, + STATE(3010), 1, + sym_parameter_list, + STATE(4036), 1, + sym_alignas_qualifier, + STATE(4730), 1, + sym_decltype_auto, + STATE(5953), 1, + sym__function_declarator_seq, + STATE(6124), 1, + sym__abstract_declarator, + ACTIONS(7067), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4187), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5952), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8213), 11, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [118658] = 20, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(7052), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [120785] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(7059), 1, + ACTIONS(7065), 1, anon_sym_const, - ACTIONS(7842), 1, + ACTIONS(7848), 1, anon_sym_LPAREN2, - ACTIONS(7856), 1, - anon_sym_LBRACK, - ACTIONS(7886), 1, + ACTIONS(7850), 1, anon_sym_STAR, - ACTIONS(7888), 1, + ACTIONS(7852), 1, anon_sym_AMP_AMP, - ACTIONS(7890), 1, + ACTIONS(7854), 1, anon_sym_AMP, - ACTIONS(8187), 1, - anon_sym___attribute, - ACTIONS(8189), 1, + ACTIONS(7862), 1, + anon_sym_LBRACK, + ACTIONS(8217), 1, sym_auto, - ACTIONS(8191), 1, + ACTIONS(8219), 1, anon_sym_decltype, - STATE(2860), 1, + ACTIONS(8223), 1, + anon_sym___attribute, + STATE(2908), 1, sym_parameter_list, - STATE(3992), 1, + STATE(4036), 1, sym_alignas_qualifier, - STATE(4633), 1, + STATE(4730), 1, sym_decltype_auto, - STATE(5792), 1, + STATE(5953), 1, sym__function_declarator_seq, - STATE(6055), 1, + STATE(6140), 1, sym__abstract_declarator, - ACTIONS(7061), 2, + ACTIONS(7067), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4140), 2, + STATE(4206), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(5804), 5, + STATE(5952), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8185), 11, + ACTIONS(8221), 11, anon_sym_COMMA, anon_sym_SEMI, anon_sym___attribute__, @@ -398421,7 +403968,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - ACTIONS(7046), 12, + ACTIONS(7052), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -398434,10 +403981,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [118746] = 3, + [120873] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5082), 10, + ACTIONS(5090), 10, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -398448,7 +403995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_DASH_GT, - ACTIONS(5080), 36, + ACTIONS(5088), 36, anon_sym_AMP, anon_sym___extension__, anon_sym___attribute__, @@ -398485,38 +404032,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noexcept, anon_sym_throw, anon_sym_requires, - [118800] = 3, + [120927] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5728), 21, - aux_sym_preproc_elif_token1, + ACTIONS(4187), 1, + anon_sym_COLON_COLON, + ACTIONS(8225), 1, + anon_sym_LT, + STATE(2578), 1, + sym_template_argument_list, + ACTIONS(5834), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute__, + anon_sym_GT_GT, anon_sym___attribute, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_COLON, anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5730), 25, + ACTIONS(4192), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -398525,34 +404065,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [118854] = 8, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + [120987] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4167), 1, + ACTIONS(4187), 1, anon_sym_COLON_COLON, - ACTIONS(8193), 1, + ACTIONS(8227), 1, anon_sym_LT, - STATE(2355), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2547), 1, + STATE(2578), 1, sym_template_argument_list, - ACTIONS(5060), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4144), 10, + ACTIONS(4925), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -398562,8 +404105,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, anon_sym_DOT, - ACTIONS(4152), 28, + ACTIONS(4932), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -398575,6 +404120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_LT, + anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -398591,64 +404137,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [118918] = 21, + [121047] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3327), 1, - sym_ms_restrict_modifier, - ACTIONS(3331), 1, + ACTIONS(7065), 1, anon_sym_const, - ACTIONS(5012), 1, + ACTIONS(7848), 1, anon_sym_LPAREN2, - ACTIONS(8131), 1, - anon_sym_LBRACK, - ACTIONS(8195), 1, + ACTIONS(7850), 1, anon_sym_STAR, - ACTIONS(8197), 1, + ACTIONS(7852), 1, anon_sym_AMP_AMP, - ACTIONS(8199), 1, + ACTIONS(7854), 1, anon_sym_AMP, - STATE(2994), 1, + ACTIONS(7862), 1, + anon_sym_LBRACK, + ACTIONS(8215), 1, + anon_sym___attribute, + ACTIONS(8217), 1, + sym_auto, + ACTIONS(8219), 1, + anon_sym_decltype, + STATE(2908), 1, sym_parameter_list, - STATE(4043), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4289), 1, + STATE(4036), 1, sym_alignas_qualifier, - STATE(6087), 1, + STATE(4730), 1, + sym_decltype_auto, + STATE(5953), 1, sym__function_declarator_seq, - STATE(6517), 1, + STATE(6130), 1, sym__abstract_declarator, - ACTIONS(8127), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(8129), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(8133), 2, + ACTIONS(7067), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3996), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4563), 2, + STATE(4195), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6092), 5, + STATE(5952), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(5851), 7, + ACTIONS(8213), 11, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_EQ, anon_sym_final, anon_sym_override, + anon_sym_try, anon_sym_requires, - ACTIONS(8125), 12, + ACTIONS(7052), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -398661,31 +404208,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [119008] = 10, + [121135] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(67), 1, + ACTIONS(3335), 1, + sym_ms_restrict_modifier, + ACTIONS(3339), 1, anon_sym_const, - STATE(1658), 1, + ACTIONS(5020), 1, + anon_sym_LPAREN2, + ACTIONS(8147), 1, + anon_sym_LBRACK, + ACTIONS(8230), 1, + anon_sym_STAR, + ACTIONS(8232), 1, + anon_sym_AMP_AMP, + ACTIONS(8234), 1, + anon_sym_AMP, + STATE(3086), 1, + sym_parameter_list, + STATE(4069), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4325), 1, sym_alignas_qualifier, - ACTIONS(7152), 2, + STATE(6109), 1, + sym__function_declarator_seq, + STATE(6536), 1, + sym__abstract_declarator, + ACTIONS(8143), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8145), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(8149), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4188), 2, + STATE(4046), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4492), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(4249), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5442), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(8203), 4, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(7145), 12, + STATE(6099), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(5863), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8141), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -398698,83 +404277,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - ACTIONS(8201), 20, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_noexcept, - anon_sym_throw, - anon_sym_requires, - [119076] = 20, + [121225] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(67), 1, + ACTIONS(3335), 1, + sym_ms_restrict_modifier, + ACTIONS(3339), 1, anon_sym_const, - ACTIONS(7842), 1, + ACTIONS(5020), 1, anon_sym_LPAREN2, - ACTIONS(7856), 1, + ACTIONS(5871), 1, + anon_sym___attribute, + ACTIONS(8147), 1, anon_sym_LBRACK, - ACTIONS(7900), 1, + ACTIONS(8236), 1, anon_sym_STAR, - ACTIONS(7902), 1, + ACTIONS(8238), 1, anon_sym_AMP_AMP, - ACTIONS(7904), 1, + ACTIONS(8240), 1, anon_sym_AMP, - ACTIONS(8207), 1, - anon_sym___asm, - ACTIONS(8209), 1, - sym_auto, - ACTIONS(8211), 1, - anon_sym_decltype, - STATE(1658), 1, - sym_alignas_qualifier, - STATE(2504), 1, - sym_decltype_auto, - STATE(2885), 1, + STATE(3378), 1, sym_parameter_list, - STATE(5792), 1, + STATE(4069), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4325), 1, + sym_alignas_qualifier, + STATE(6109), 1, sym__function_declarator_seq, - STATE(6001), 1, + STATE(6610), 1, sym__abstract_declarator, - ACTIONS(7152), 2, + ACTIONS(8143), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8145), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(8149), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4149), 2, + STATE(4039), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4513), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(5804), 5, + STATE(6099), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8205), 11, + ACTIONS(5863), 6, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, + anon_sym_RPAREN, + anon_sym___attribute__, anon_sym_final, anon_sym_override, - anon_sym_try, anon_sym_requires, - ACTIONS(7145), 12, + ACTIONS(8141), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -398787,63 +404347,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [119164] = 20, + [121317] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7059), 1, - anon_sym_const, - ACTIONS(7842), 1, + ACTIONS(2559), 10, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(7844), 1, anon_sym_STAR, - ACTIONS(7846), 1, anon_sym_AMP_AMP, - ACTIONS(7848), 1, - anon_sym_AMP, - ACTIONS(7856), 1, - anon_sym_LBRACK, - ACTIONS(8189), 1, - sym_auto, - ACTIONS(8191), 1, - anon_sym_decltype, - ACTIONS(8207), 1, - anon_sym___asm, - STATE(2902), 1, - sym_parameter_list, - STATE(3992), 1, - sym_alignas_qualifier, - STATE(4633), 1, - sym_decltype_auto, - STATE(5792), 1, - sym__function_declarator_seq, - STATE(6072), 1, - sym__abstract_declarator, - ACTIONS(7061), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4122), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5804), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8205), 11, - anon_sym_COMMA, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(7046), 12, + anon_sym_DASH_GT, + ACTIONS(2569), 36, + anon_sym_AMP, anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -398855,10 +404383,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [119252] = 3, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [121371] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5750), 21, + ACTIONS(5776), 21, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -398880,7 +404423,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5752), 25, + ACTIONS(5778), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -398906,64 +404449,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [119306] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4167), 1, - anon_sym_COLON_COLON, - ACTIONS(8213), 1, - anon_sym_LT, - STATE(2547), 1, - sym_template_argument_list, - ACTIONS(4963), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(4970), 31, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - [119366] = 3, + [121425] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5782), 21, + ACTIONS(5800), 21, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -398985,7 +404474,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5784), 25, + ACTIONS(5802), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -399011,202 +404500,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [119420] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7059), 1, - anon_sym_const, - ACTIONS(7842), 1, - anon_sym_LPAREN2, - ACTIONS(7844), 1, - anon_sym_STAR, - ACTIONS(7846), 1, - anon_sym_AMP_AMP, - ACTIONS(7848), 1, - anon_sym_AMP, - ACTIONS(7856), 1, - anon_sym_LBRACK, - ACTIONS(8187), 1, - anon_sym___asm, - ACTIONS(8189), 1, - sym_auto, - ACTIONS(8191), 1, - anon_sym_decltype, - STATE(2902), 1, - sym_parameter_list, - STATE(3992), 1, - sym_alignas_qualifier, - STATE(4633), 1, - sym_decltype_auto, - STATE(5792), 1, - sym__function_declarator_seq, - STATE(6080), 1, - sym__abstract_declarator, - ACTIONS(7061), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4124), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5804), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8185), 11, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(7046), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [119508] = 22, + [121479] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3327), 1, + ACTIONS(3335), 1, sym_ms_restrict_modifier, - ACTIONS(3331), 1, + ACTIONS(3339), 1, anon_sym_const, - ACTIONS(5012), 1, + ACTIONS(5020), 1, anon_sym_LPAREN2, - ACTIONS(5867), 1, + ACTIONS(5879), 1, anon_sym___attribute, - ACTIONS(8131), 1, + ACTIONS(8147), 1, anon_sym_LBRACK, - ACTIONS(8216), 1, + ACTIONS(8236), 1, anon_sym_STAR, - ACTIONS(8218), 1, + ACTIONS(8238), 1, anon_sym_AMP_AMP, - ACTIONS(8220), 1, + ACTIONS(8240), 1, anon_sym_AMP, - STATE(3299), 1, + STATE(3378), 1, sym_parameter_list, - STATE(4043), 1, + STATE(4069), 1, sym_ms_unaligned_ptr_modifier, - STATE(4289), 1, + STATE(4325), 1, sym_alignas_qualifier, - STATE(6087), 1, + STATE(6109), 1, sym__function_declarator_seq, - STATE(6467), 1, + STATE(6612), 1, sym__abstract_declarator, - ACTIONS(8127), 2, + ACTIONS(8143), 2, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(8129), 2, + ACTIONS(8145), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(8133), 2, + ACTIONS(8149), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3820), 2, + STATE(3962), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4499), 2, + STATE(4532), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6092), 5, + STATE(6099), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(5865), 6, + ACTIONS(5877), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym___attribute__, anon_sym_final, anon_sym_override, anon_sym_requires, - ACTIONS(8125), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [119600] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3327), 1, - sym_ms_restrict_modifier, - ACTIONS(3331), 1, - anon_sym_const, - ACTIONS(5012), 1, - anon_sym_LPAREN2, - ACTIONS(5859), 1, - anon_sym___attribute, - ACTIONS(8131), 1, - anon_sym_LBRACK, - ACTIONS(8222), 1, - anon_sym_STAR, - ACTIONS(8224), 1, - anon_sym_AMP_AMP, - ACTIONS(8226), 1, - anon_sym_AMP, - STATE(3295), 1, - sym_parameter_list, - STATE(4043), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4289), 1, - sym_alignas_qualifier, - STATE(6087), 1, - sym__function_declarator_seq, - STATE(6413), 1, - sym__abstract_declarator, - ACTIONS(8127), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(8129), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(8133), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4000), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4438), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6092), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5851), 6, - anon_sym_COMMA, - anon_sym___attribute__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - ACTIONS(8125), 12, + ACTIONS(8141), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -399219,50 +404570,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [119692] = 20, + [121571] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(67), 1, anon_sym_const, - ACTIONS(7842), 1, + ACTIONS(7848), 1, anon_sym_LPAREN2, - ACTIONS(7856), 1, + ACTIONS(7862), 1, anon_sym_LBRACK, - ACTIONS(7900), 1, + ACTIONS(7866), 1, anon_sym_STAR, - ACTIONS(7902), 1, + ACTIONS(7868), 1, anon_sym_AMP_AMP, - ACTIONS(7904), 1, + ACTIONS(7870), 1, anon_sym_AMP, - ACTIONS(8187), 1, + ACTIONS(8215), 1, anon_sym___asm, - ACTIONS(8209), 1, + ACTIONS(8242), 1, sym_auto, - ACTIONS(8211), 1, + ACTIONS(8244), 1, anon_sym_decltype, - STATE(1658), 1, + STATE(1680), 1, sym_alignas_qualifier, - STATE(2504), 1, + STATE(2483), 1, sym_decltype_auto, - STATE(2885), 1, + STATE(3006), 1, sym_parameter_list, - STATE(5792), 1, + STATE(5953), 1, sym__function_declarator_seq, - STATE(6006), 1, + STATE(6120), 1, sym__abstract_declarator, - ACTIONS(7152), 2, + ACTIONS(7304), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4152), 2, + STATE(4209), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(5804), 5, + STATE(5952), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8185), 11, + ACTIONS(8213), 11, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, @@ -399274,7 +404625,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - ACTIONS(7145), 12, + ACTIONS(7297), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -399287,31 +404638,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [119780] = 3, + [121659] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 10, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_DASH_GT, - ACTIONS(2573), 36, + ACTIONS(67), 1, + anon_sym_const, + STATE(1680), 1, + sym_alignas_qualifier, + ACTIONS(7304), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4226), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(4306), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5539), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8248), 4, anon_sym_AMP, - anon_sym___extension__, - anon_sym___attribute__, anon_sym___attribute, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_LBRACK, - anon_sym_const, + anon_sym___asm, + ACTIONS(7297), 12, + anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -399323,32 +404675,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, + ACTIONS(8246), 20, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - anon_sym___asm, - sym_identifier, - sym_auto, - anon_sym_decltype, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_try, anon_sym_noexcept, anon_sym_throw, anon_sym_requires, - [119834] = 6, + [121727] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5697), 21, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5699), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [121781] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3623), 1, + anon_sym_LBRACE, + ACTIONS(8125), 1, + anon_sym_LPAREN2, + STATE(3957), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6262), 17, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(6264), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + 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_LT, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [121841] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3615), 1, + ACTIONS(3623), 1, anon_sym_LBRACE, - ACTIONS(8101), 1, + ACTIONS(8125), 1, anon_sym_LPAREN2, - STATE(3896), 2, + STATE(3920), 2, sym_argument_list, sym_initializer_list, - ACTIONS(6172), 17, + ACTIONS(6224), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -399366,7 +404829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6174), 25, + ACTIONS(6226), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -399392,10 +404855,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [119894] = 3, + [121901] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5651), 21, + ACTIONS(5764), 21, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -399417,7 +404880,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5653), 25, + ACTIONS(5766), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -399443,63 +404906,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [119948] = 21, + [121955] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3327), 1, + ACTIONS(3335), 1, sym_ms_restrict_modifier, - ACTIONS(3331), 1, + ACTIONS(3339), 1, anon_sym_const, - ACTIONS(5012), 1, + ACTIONS(5020), 1, anon_sym_LPAREN2, - ACTIONS(8131), 1, + ACTIONS(8147), 1, anon_sym_LBRACK, - ACTIONS(8228), 1, - anon_sym_STAR, ACTIONS(8230), 1, - anon_sym_AMP_AMP, + anon_sym_STAR, ACTIONS(8232), 1, + anon_sym_AMP_AMP, + ACTIONS(8234), 1, anon_sym_AMP, - STATE(2998), 1, + STATE(3086), 1, sym_parameter_list, - STATE(4043), 1, + STATE(4069), 1, sym_ms_unaligned_ptr_modifier, - STATE(4289), 1, + STATE(4325), 1, sym_alignas_qualifier, - STATE(6087), 1, + STATE(6109), 1, sym__function_declarator_seq, - STATE(6426), 1, + STATE(6546), 1, sym__abstract_declarator, - ACTIONS(8127), 2, + ACTIONS(8143), 2, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(8129), 2, + ACTIONS(8145), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(8133), 2, + ACTIONS(8149), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3997), 2, + STATE(3962), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4449), 2, + STATE(4502), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6092), 5, + STATE(6099), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(5851), 7, + ACTIONS(5877), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_EQ, anon_sym_final, anon_sym_override, - anon_sym_try, anon_sym_requires, - ACTIONS(8125), 12, + ACTIONS(8141), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -399512,63 +404975,164 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [120038] = 21, + [122045] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3327), 1, - sym_ms_restrict_modifier, - ACTIONS(3331), 1, + ACTIONS(5716), 21, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5718), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [122099] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5742), 21, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5744), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [122153] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7065), 1, anon_sym_const, - ACTIONS(5012), 1, + ACTIONS(7848), 1, anon_sym_LPAREN2, - ACTIONS(8131), 1, + ACTIONS(7862), 1, anon_sym_LBRACK, - ACTIONS(8195), 1, + ACTIONS(7885), 1, anon_sym_STAR, - ACTIONS(8197), 1, + ACTIONS(7887), 1, anon_sym_AMP_AMP, - ACTIONS(8199), 1, + ACTIONS(7889), 1, anon_sym_AMP, - STATE(2994), 1, + ACTIONS(8217), 1, + sym_auto, + ACTIONS(8219), 1, + anon_sym_decltype, + ACTIONS(8223), 1, + anon_sym___asm, + STATE(3010), 1, sym_parameter_list, - STATE(4043), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4289), 1, + STATE(4036), 1, sym_alignas_qualifier, - STATE(6087), 1, + STATE(4730), 1, + sym_decltype_auto, + STATE(5953), 1, sym__function_declarator_seq, - STATE(6497), 1, + STATE(6150), 1, sym__abstract_declarator, - ACTIONS(8127), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(8129), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(8133), 2, + ACTIONS(7067), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3820), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4436), 2, + STATE(4196), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6092), 5, + STATE(5952), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(5865), 7, + ACTIONS(8221), 11, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, anon_sym_final, anon_sym_override, anon_sym_requires, - ACTIONS(8125), 12, + ACTIONS(7052), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -399581,63 +405145,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [120128] = 21, + [122241] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3623), 1, + anon_sym_LBRACE, + ACTIONS(8125), 1, + anon_sym_LPAREN2, + STATE(3952), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6283), 17, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(6285), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + 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_LT, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [122301] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3327), 1, + ACTIONS(3335), 1, sym_ms_restrict_modifier, - ACTIONS(3331), 1, + ACTIONS(3339), 1, anon_sym_const, - ACTIONS(5012), 1, + ACTIONS(5020), 1, anon_sym_LPAREN2, - ACTIONS(8131), 1, + ACTIONS(5871), 1, + anon_sym___attribute, + ACTIONS(8147), 1, anon_sym_LBRACK, - ACTIONS(8228), 1, + ACTIONS(8250), 1, anon_sym_STAR, - ACTIONS(8230), 1, + ACTIONS(8252), 1, anon_sym_AMP_AMP, - ACTIONS(8232), 1, + ACTIONS(8254), 1, anon_sym_AMP, - STATE(2998), 1, + STATE(3371), 1, sym_parameter_list, - STATE(4043), 1, + STATE(4069), 1, sym_ms_unaligned_ptr_modifier, - STATE(4289), 1, + STATE(4325), 1, sym_alignas_qualifier, - STATE(6087), 1, + STATE(6109), 1, sym__function_declarator_seq, - STATE(6519), 1, + STATE(6597), 1, sym__abstract_declarator, - ACTIONS(8127), 2, + ACTIONS(8143), 2, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(8129), 2, + ACTIONS(8145), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(8133), 2, + ACTIONS(8149), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3820), 2, + STATE(4053), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4465), 2, + STATE(4618), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6092), 5, + STATE(6099), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(5865), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(5863), 6, + anon_sym_COMMA, + anon_sym___attribute__, anon_sym_final, anon_sym_override, - anon_sym_try, + anon_sym_GT2, anon_sym_requires, - ACTIONS(8125), 12, + ACTIONS(8141), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -399650,16 +405269,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [120218] = 6, + [122393] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4167), 1, + ACTIONS(4187), 1, anon_sym_COLON_COLON, - ACTIONS(8193), 1, + ACTIONS(8225), 1, anon_sym_LT, - STATE(2547), 1, + STATE(2358), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2578), 1, sym_template_argument_list, - ACTIONS(5838), 12, + ACTIONS(5068), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4164), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -399669,10 +405295,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_COLON, anon_sym_DOT, - ACTIONS(4172), 31, + ACTIONS(4172), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -399684,7 +405308,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_LT, - anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -399701,65 +405324,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_GT2, - [120278] = 20, + [122457] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(7059), 1, + ACTIONS(3335), 1, + sym_ms_restrict_modifier, + ACTIONS(3339), 1, anon_sym_const, - ACTIONS(7842), 1, + ACTIONS(5020), 1, anon_sym_LPAREN2, - ACTIONS(7856), 1, + ACTIONS(5879), 1, + anon_sym___attribute, + ACTIONS(8147), 1, anon_sym_LBRACK, - ACTIONS(7886), 1, + ACTIONS(8250), 1, anon_sym_STAR, - ACTIONS(7888), 1, + ACTIONS(8252), 1, anon_sym_AMP_AMP, - ACTIONS(7890), 1, + ACTIONS(8254), 1, anon_sym_AMP, - ACTIONS(8189), 1, - sym_auto, - ACTIONS(8191), 1, - anon_sym_decltype, - ACTIONS(8207), 1, - anon_sym___attribute, - STATE(2860), 1, + STATE(3371), 1, sym_parameter_list, - STATE(3992), 1, + STATE(4069), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4325), 1, sym_alignas_qualifier, - STATE(4633), 1, - sym_decltype_auto, - STATE(5792), 1, + STATE(6109), 1, sym__function_declarator_seq, - STATE(6051), 1, + STATE(6601), 1, sym__abstract_declarator, - ACTIONS(7061), 2, + ACTIONS(8143), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8145), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(8149), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4137), 2, + STATE(3962), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4620), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(5804), 5, + STATE(6099), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8205), 11, + ACTIONS(5877), 6, anon_sym_COMMA, - anon_sym_SEMI, anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, anon_sym_final, anon_sym_override, - anon_sym_try, + anon_sym_GT2, anon_sym_requires, - ACTIONS(7046), 12, + ACTIONS(8141), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -399772,64 +405395,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [120366] = 22, + [122549] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3327), 1, - sym_ms_restrict_modifier, - ACTIONS(3331), 1, + ACTIONS(67), 1, anon_sym_const, - ACTIONS(5012), 1, + ACTIONS(7848), 1, anon_sym_LPAREN2, - ACTIONS(5867), 1, - anon_sym___attribute, - ACTIONS(8131), 1, + ACTIONS(7862), 1, anon_sym_LBRACK, - ACTIONS(8222), 1, + ACTIONS(7866), 1, anon_sym_STAR, - ACTIONS(8224), 1, + ACTIONS(7868), 1, anon_sym_AMP_AMP, - ACTIONS(8226), 1, + ACTIONS(7870), 1, anon_sym_AMP, - STATE(3295), 1, - sym_parameter_list, - STATE(4043), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4289), 1, + ACTIONS(8223), 1, + anon_sym___asm, + ACTIONS(8242), 1, + sym_auto, + ACTIONS(8244), 1, + anon_sym_decltype, + STATE(1680), 1, sym_alignas_qualifier, - STATE(6087), 1, + STATE(2483), 1, + sym_decltype_auto, + STATE(3006), 1, + sym_parameter_list, + STATE(5953), 1, sym__function_declarator_seq, - STATE(6418), 1, + STATE(6194), 1, sym__abstract_declarator, - ACTIONS(8127), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(8129), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(8133), 2, + ACTIONS(7304), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3820), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4445), 2, + STATE(4172), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6092), 5, + STATE(5952), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(5865), 6, + ACTIONS(8221), 11, anon_sym_COMMA, - anon_sym___attribute__, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, anon_sym_final, anon_sym_override, - anon_sym_GT2, + anon_sym_try, anon_sym_requires, - ACTIONS(8125), 12, + ACTIONS(7297), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -399842,29 +405463,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [120458] = 8, + [122637] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4167), 1, + ACTIONS(4187), 1, anon_sym_COLON_COLON, - ACTIONS(7386), 1, + ACTIONS(7483), 1, anon_sym_LT, - STATE(1603), 1, + STATE(1623), 1, sym_template_argument_list, - STATE(3047), 1, + STATE(3104), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(7009), 4, + ACTIONS(7001), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(4144), 5, + ACTIONS(4164), 5, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym_const, anon_sym___asm, - ACTIONS(4152), 33, + ACTIONS(4172), 33, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -399898,119 +405519,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [120522] = 3, + [122701] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(5802), 21, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5804), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + ACTIONS(3335), 1, + sym_ms_restrict_modifier, + ACTIONS(3339), 1, + anon_sym_const, + ACTIONS(5020), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACE, + ACTIONS(8147), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [120576] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5673), 21, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5675), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, + ACTIONS(8256), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(8258), 1, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(8260), 1, + anon_sym_AMP, + STATE(3095), 1, + sym_parameter_list, + STATE(4069), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4325), 1, + sym_alignas_qualifier, + STATE(6109), 1, + sym__function_declarator_seq, + STATE(6583), 1, + sym__abstract_declarator, + ACTIONS(8143), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8145), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(8149), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4058), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4557), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6099), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(5863), 7, + anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [120630] = 6, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(8141), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [122791] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3615), 1, + ACTIONS(3623), 1, anon_sym_LBRACE, - ACTIONS(8101), 1, + ACTIONS(8125), 1, anon_sym_LPAREN2, - STATE(3853), 2, + STATE(3926), 2, sym_argument_list, sym_initializer_list, - ACTIONS(6204), 17, + ACTIONS(6309), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -400028,7 +405616,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6206), 25, + ACTIONS(6311), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -400054,64 +405642,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [120690] = 22, + [122851] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3327), 1, + ACTIONS(3335), 1, sym_ms_restrict_modifier, - ACTIONS(3331), 1, + ACTIONS(3339), 1, anon_sym_const, - ACTIONS(5012), 1, + ACTIONS(5020), 1, anon_sym_LPAREN2, - ACTIONS(5859), 1, - anon_sym___attribute, - ACTIONS(8131), 1, + ACTIONS(8147), 1, anon_sym_LBRACK, - ACTIONS(8216), 1, + ACTIONS(8256), 1, anon_sym_STAR, - ACTIONS(8218), 1, + ACTIONS(8258), 1, anon_sym_AMP_AMP, - ACTIONS(8220), 1, + ACTIONS(8260), 1, anon_sym_AMP, - STATE(3299), 1, + STATE(3095), 1, sym_parameter_list, - STATE(4043), 1, + STATE(4069), 1, sym_ms_unaligned_ptr_modifier, - STATE(4289), 1, + STATE(4325), 1, sym_alignas_qualifier, - STATE(6087), 1, + STATE(6109), 1, sym__function_declarator_seq, - STATE(6465), 1, + STATE(6588), 1, sym__abstract_declarator, - ACTIONS(8127), 2, + ACTIONS(8143), 2, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(8129), 2, + ACTIONS(8145), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(8133), 2, + ACTIONS(8149), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3989), 2, + STATE(3962), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4484), 2, + STATE(4579), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6092), 5, + STATE(6099), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(5851), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, + ACTIONS(5877), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_final, anon_sym_override, + anon_sym_try, anon_sym_requires, - ACTIONS(8125), 12, + ACTIONS(8141), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -400124,174 +405711,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [120782] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3615), 1, - anon_sym_LBRACE, - ACTIONS(8101), 1, - anon_sym_LPAREN2, - STATE(3843), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6263), 17, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(6265), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - 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_LT, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [120842] = 10, + [122941] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6358), 1, - anon_sym___attribute__, - ACTIONS(6360), 1, - anon_sym___attribute, - ACTIONS(6729), 1, - anon_sym_LBRACE, - ACTIONS(8234), 1, - anon_sym_COLON, - STATE(2551), 1, - sym__enum_base_clause, - STATE(2642), 1, - sym_enumerator_list, - STATE(2696), 1, - sym_attribute_specifier, - ACTIONS(6342), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6344), 27, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(67), 1, + anon_sym_const, + ACTIONS(7848), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, + ACTIONS(7856), 1, + sym_ms_restrict_modifier, + ACTIONS(7862), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [120909] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(8236), 1, - sym_identifier, - ACTIONS(8238), 1, - anon_sym_LPAREN2, - ACTIONS(8240), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8242), 1, + ACTIONS(8264), 1, anon_sym_AMP_AMP, - ACTIONS(8244), 1, + ACTIONS(8266), 1, anon_sym_AMP, - ACTIONS(8250), 1, - sym_primitive_type, - STATE(1658), 1, + STATE(1680), 1, sym_alignas_qualifier, - STATE(3070), 1, - sym__type_declarator, - STATE(3394), 1, - sym_pointer_type_declarator, - STATE(3761), 1, + STATE(3255), 1, + sym_parameter_list, + STATE(3758), 1, sym_ms_unaligned_ptr_modifier, - STATE(8712), 1, - sym_ms_based_modifier, - ACTIONS(69), 2, + STATE(5953), 1, + sym__function_declarator_seq, + STATE(6682), 1, + sym__abstract_declarator, + ACTIONS(7304), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(8246), 2, + ACTIONS(7858), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(7860), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(4014), 2, + STATE(4091), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4675), 2, + STATE(4732), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7850), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(8248), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3392), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - ACTIONS(67), 13, + STATE(5952), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(5863), 6, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(7297), 12, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -400303,55 +405779,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [120998] = 21, + [123030] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8252), 1, + ACTIONS(8268), 1, sym_identifier, - ACTIONS(8254), 1, + ACTIONS(8270), 1, anon_sym_LPAREN2, - ACTIONS(8256), 1, + ACTIONS(8272), 1, anon_sym_STAR, - ACTIONS(8258), 1, + ACTIONS(8274), 1, anon_sym_AMP_AMP, - ACTIONS(8260), 1, + ACTIONS(8276), 1, anon_sym_AMP, - ACTIONS(8264), 1, + ACTIONS(8282), 1, sym_primitive_type, - STATE(1658), 1, + STATE(1680), 1, sym_alignas_qualifier, - STATE(3761), 1, - sym_ms_unaligned_ptr_modifier, - STATE(5889), 1, - sym__type_declarator, - STATE(6089), 1, + STATE(1971), 1, sym_pointer_type_declarator, - STATE(8067), 1, + STATE(2243), 1, + sym__type_declarator, + STATE(3758), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8550), 1, sym_ms_based_modifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(8246), 2, + ACTIONS(8278), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(3283), 2, + STATE(3386), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4757), 2, + STATE(4783), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7850), 3, + ACTIONS(7856), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(8262), 4, + ACTIONS(8280), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(6082), 5, + STATE(1985), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -400371,55 +405847,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [121087] = 21, + [123119] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8266), 1, + ACTIONS(8284), 1, sym_identifier, - ACTIONS(8268), 1, + ACTIONS(8286), 1, anon_sym_LPAREN2, - ACTIONS(8270), 1, + ACTIONS(8288), 1, anon_sym_STAR, - ACTIONS(8272), 1, + ACTIONS(8290), 1, anon_sym_AMP_AMP, - ACTIONS(8274), 1, + ACTIONS(8292), 1, anon_sym_AMP, - ACTIONS(8278), 1, + ACTIONS(8296), 1, sym_primitive_type, - STATE(1658), 1, + STATE(1680), 1, sym_alignas_qualifier, - STATE(2889), 1, + STATE(3758), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6021), 1, sym__type_declarator, - STATE(3288), 1, + STATE(6122), 1, sym_pointer_type_declarator, - STATE(3761), 1, - sym_ms_unaligned_ptr_modifier, - STATE(8665), 1, + STATE(8097), 1, sym_ms_based_modifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(8246), 2, + ACTIONS(8278), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(3283), 2, + STATE(4095), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4647), 2, + STATE(4800), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7850), 3, + ACTIONS(7856), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(8276), 4, + ACTIONS(8294), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3285), 5, + STATE(6136), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -400439,55 +405915,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [121176] = 21, + [123208] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8266), 1, + ACTIONS(8298), 1, sym_identifier, - ACTIONS(8268), 1, + ACTIONS(8300), 1, anon_sym_LPAREN2, - ACTIONS(8270), 1, + ACTIONS(8302), 1, anon_sym_STAR, - ACTIONS(8272), 1, + ACTIONS(8304), 1, anon_sym_AMP_AMP, - ACTIONS(8274), 1, + ACTIONS(8306), 1, anon_sym_AMP, - ACTIONS(8278), 1, + ACTIONS(8310), 1, sym_primitive_type, - STATE(1658), 1, + STATE(1680), 1, sym_alignas_qualifier, - STATE(2892), 1, + STATE(2945), 1, sym__type_declarator, - STATE(3288), 1, + STATE(3374), 1, sym_pointer_type_declarator, - STATE(3761), 1, + STATE(3758), 1, sym_ms_unaligned_ptr_modifier, - STATE(8665), 1, + STATE(8189), 1, sym_ms_based_modifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(8246), 2, + ACTIONS(8278), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(3283), 2, + STATE(3386), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4707), 2, + STATE(4657), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7850), 3, + ACTIONS(7856), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(8276), 4, + ACTIONS(8308), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3285), 5, + STATE(3318), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -400507,55 +405983,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [121265] = 21, + [123297] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, + ACTIONS(4187), 1, + anon_sym_COLON_COLON, + ACTIONS(4927), 1, + anon_sym_SEMI, + ACTIONS(4936), 1, + anon_sym_LBRACK, + ACTIONS(6580), 1, + anon_sym_LT, + STATE(3998), 1, + sym_template_argument_list, + ACTIONS(4929), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(4932), 3, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(4925), 35, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, anon_sym___based, - ACTIONS(8266), 1, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [123362] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, ACTIONS(8268), 1, - anon_sym_LPAREN2, + sym_identifier, ACTIONS(8270), 1, + anon_sym_LPAREN2, + ACTIONS(8282), 1, + sym_primitive_type, + ACTIONS(8312), 1, anon_sym_STAR, - ACTIONS(8272), 1, + ACTIONS(8314), 1, anon_sym_AMP_AMP, - ACTIONS(8274), 1, + ACTIONS(8316), 1, anon_sym_AMP, - ACTIONS(8278), 1, - sym_primitive_type, - STATE(1658), 1, + STATE(1680), 1, sym_alignas_qualifier, - STATE(2892), 1, - sym__type_declarator, - STATE(3288), 1, + STATE(1971), 1, sym_pointer_type_declarator, - STATE(3761), 1, + STATE(3758), 1, sym_ms_unaligned_ptr_modifier, - STATE(8665), 1, + STATE(6872), 1, + sym__type_declarator, + STATE(8660), 1, sym_ms_based_modifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(8246), 2, + ACTIONS(8278), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(4010), 2, + STATE(3386), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4707), 2, + STATE(4753), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7850), 3, + ACTIONS(7856), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(8276), 4, + ACTIONS(8280), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3285), 5, + STATE(1985), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -400575,105 +406107,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [121354] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5629), 19, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5631), 26, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [121407] = 21, + [123451] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8236), 1, + ACTIONS(8298), 1, sym_identifier, - ACTIONS(8238), 1, + ACTIONS(8300), 1, anon_sym_LPAREN2, - ACTIONS(8240), 1, + ACTIONS(8302), 1, anon_sym_STAR, - ACTIONS(8242), 1, + ACTIONS(8304), 1, anon_sym_AMP_AMP, - ACTIONS(8244), 1, + ACTIONS(8306), 1, anon_sym_AMP, - ACTIONS(8250), 1, + ACTIONS(8310), 1, sym_primitive_type, - STATE(1658), 1, + STATE(1680), 1, sym_alignas_qualifier, - STATE(3083), 1, + STATE(2945), 1, sym__type_declarator, - STATE(3394), 1, + STATE(3374), 1, sym_pointer_type_declarator, - STATE(3761), 1, + STATE(3758), 1, sym_ms_unaligned_ptr_modifier, - STATE(8712), 1, + STATE(8189), 1, sym_ms_based_modifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(8246), 2, + ACTIONS(8278), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(3283), 2, + STATE(4075), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4617), 2, + STATE(4657), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7850), 3, + ACTIONS(7856), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(8248), 4, + ACTIONS(8308), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3392), 5, + STATE(3318), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -400693,55 +406175,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [121496] = 21, + [123540] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8236), 1, + ACTIONS(8268), 1, sym_identifier, - ACTIONS(8238), 1, + ACTIONS(8270), 1, anon_sym_LPAREN2, - ACTIONS(8240), 1, + ACTIONS(8282), 1, + sym_primitive_type, + ACTIONS(8312), 1, anon_sym_STAR, - ACTIONS(8242), 1, + ACTIONS(8314), 1, anon_sym_AMP_AMP, - ACTIONS(8244), 1, + ACTIONS(8316), 1, anon_sym_AMP, - ACTIONS(8250), 1, - sym_primitive_type, - STATE(1658), 1, + STATE(1680), 1, sym_alignas_qualifier, - STATE(3083), 1, - sym__type_declarator, - STATE(3394), 1, + STATE(1971), 1, sym_pointer_type_declarator, - STATE(3761), 1, + STATE(3758), 1, sym_ms_unaligned_ptr_modifier, - STATE(8712), 1, + STATE(6872), 1, + sym__type_declarator, + STATE(8660), 1, sym_ms_based_modifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(8246), 2, + ACTIONS(8278), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(4021), 2, + STATE(4081), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4617), 2, + STATE(4753), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7850), 3, + ACTIONS(7856), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(8248), 4, + ACTIONS(8280), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3392), 5, + STATE(1985), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -400761,55 +406243,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [121585] = 21, + [123629] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8280), 1, + ACTIONS(8318), 1, sym_identifier, - ACTIONS(8282), 1, + ACTIONS(8320), 1, anon_sym_LPAREN2, - ACTIONS(8284), 1, + ACTIONS(8322), 1, anon_sym_STAR, - ACTIONS(8286), 1, + ACTIONS(8324), 1, anon_sym_AMP_AMP, - ACTIONS(8288), 1, + ACTIONS(8326), 1, anon_sym_AMP, - ACTIONS(8292), 1, + ACTIONS(8330), 1, sym_primitive_type, - STATE(1658), 1, + STATE(1680), 1, sym_alignas_qualifier, - STATE(2185), 1, + STATE(3063), 1, sym__type_declarator, - STATE(2220), 1, + STATE(3541), 1, sym_pointer_type_declarator, - STATE(3761), 1, + STATE(3758), 1, sym_ms_unaligned_ptr_modifier, - STATE(7984), 1, + STATE(8597), 1, sym_ms_based_modifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(8246), 2, + ACTIONS(8278), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(3283), 2, + STATE(4097), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4680), 2, + STATE(4679), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7850), 3, + ACTIONS(7856), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(8290), 4, + ACTIONS(8328), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2218), 5, + STATE(3536), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -400829,55 +406311,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [121674] = 21, + [123718] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8252), 1, + ACTIONS(8284), 1, sym_identifier, - ACTIONS(8254), 1, + ACTIONS(8286), 1, anon_sym_LPAREN2, - ACTIONS(8256), 1, + ACTIONS(8288), 1, anon_sym_STAR, - ACTIONS(8258), 1, + ACTIONS(8290), 1, anon_sym_AMP_AMP, - ACTIONS(8260), 1, + ACTIONS(8292), 1, anon_sym_AMP, - ACTIONS(8264), 1, + ACTIONS(8296), 1, sym_primitive_type, - STATE(1658), 1, + STATE(1680), 1, sym_alignas_qualifier, - STATE(3761), 1, + STATE(3758), 1, sym_ms_unaligned_ptr_modifier, - STATE(5889), 1, + STATE(5968), 1, sym__type_declarator, - STATE(6089), 1, + STATE(6122), 1, sym_pointer_type_declarator, - STATE(8067), 1, + STATE(8097), 1, sym_ms_based_modifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(8246), 2, + ACTIONS(8278), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(4044), 2, + STATE(4093), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4757), 2, + STATE(4725), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7850), 3, + ACTIONS(7856), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(8262), 4, + ACTIONS(8294), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(6082), 5, + STATE(6136), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -400897,60 +406379,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [121763] = 18, + [123807] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(63), 1, - anon_sym___inline, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(7147), 1, - anon_sym___attribute__, - ACTIONS(8209), 1, - sym_auto, - ACTIONS(8211), 1, - anon_sym_decltype, - ACTIONS(8294), 1, - anon_sym_virtual, - ACTIONS(8298), 1, - anon_sym___declspec, - STATE(1658), 1, - sym_alignas_qualifier, - STATE(2504), 1, - sym_decltype_auto, - ACTIONS(6471), 2, - anon_sym_AMP, - anon_sym_LBRACK, - ACTIONS(7152), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(6473), 3, + ACTIONS(8052), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - STATE(4197), 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(8296), 8, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(7145), 12, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(8050), 32, + anon_sym_AMP, anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___based, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + anon_sym__unaligned, + anon_sym___unaligned, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -400962,108 +406419,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [121846] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8103), 1, - sym_auto, - ACTIONS(8105), 1, - anon_sym_decltype, - STATE(4096), 1, - sym_decltype_auto, - ACTIONS(5589), 17, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, + anon_sym_alignas, + anon_sym__Alignas, sym_identifier, - ACTIONS(5591), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [121905] = 21, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [123860] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8280), 1, + ACTIONS(8284), 1, sym_identifier, - ACTIONS(8282), 1, + ACTIONS(8286), 1, anon_sym_LPAREN2, - ACTIONS(8292), 1, + ACTIONS(8296), 1, sym_primitive_type, - ACTIONS(8300), 1, + ACTIONS(8332), 1, anon_sym_STAR, - ACTIONS(8302), 1, + ACTIONS(8334), 1, anon_sym_AMP_AMP, - ACTIONS(8304), 1, + ACTIONS(8336), 1, anon_sym_AMP, - STATE(1658), 1, + STATE(1680), 1, sym_alignas_qualifier, - STATE(2220), 1, - sym_pointer_type_declarator, - STATE(3761), 1, + STATE(3758), 1, sym_ms_unaligned_ptr_modifier, - STATE(6246), 1, + STATE(6122), 1, + sym_pointer_type_declarator, + STATE(6357), 1, sym__type_declarator, - STATE(8344), 1, + STATE(8378), 1, sym_ms_based_modifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(8246), 2, + ACTIONS(8278), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(4022), 2, + STATE(3386), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4624), 2, + STATE(4841), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7850), 3, + ACTIONS(7856), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(8290), 4, + ACTIONS(8294), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2218), 5, + STATE(6136), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -401083,55 +406497,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [121994] = 21, + [123949] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8236), 1, + ACTIONS(8284), 1, sym_identifier, - ACTIONS(8238), 1, + ACTIONS(8286), 1, anon_sym_LPAREN2, - ACTIONS(8240), 1, + ACTIONS(8296), 1, + sym_primitive_type, + ACTIONS(8332), 1, anon_sym_STAR, - ACTIONS(8242), 1, + ACTIONS(8334), 1, anon_sym_AMP_AMP, - ACTIONS(8244), 1, + ACTIONS(8336), 1, anon_sym_AMP, - ACTIONS(8250), 1, - sym_primitive_type, - STATE(1658), 1, + STATE(1680), 1, sym_alignas_qualifier, - STATE(3100), 1, - sym__type_declarator, - STATE(3394), 1, - sym_pointer_type_declarator, - STATE(3761), 1, + STATE(3758), 1, sym_ms_unaligned_ptr_modifier, - STATE(8712), 1, + STATE(6122), 1, + sym_pointer_type_declarator, + STATE(6357), 1, + sym__type_declarator, + STATE(8378), 1, sym_ms_based_modifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(8246), 2, + ACTIONS(8278), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(3283), 2, + STATE(4073), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4679), 2, + STATE(4841), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7850), 3, + ACTIONS(7856), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(8248), 4, + ACTIONS(8294), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3392), 5, + STATE(6136), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -401151,55 +406565,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [122083] = 21, + [124038] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8280), 1, + ACTIONS(8268), 1, sym_identifier, - ACTIONS(8282), 1, + ACTIONS(8270), 1, anon_sym_LPAREN2, - ACTIONS(8292), 1, + ACTIONS(8282), 1, sym_primitive_type, - ACTIONS(8300), 1, + ACTIONS(8338), 1, anon_sym_STAR, - ACTIONS(8302), 1, + ACTIONS(8340), 1, anon_sym_AMP_AMP, - ACTIONS(8304), 1, + ACTIONS(8342), 1, anon_sym_AMP, - STATE(1658), 1, + STATE(1680), 1, sym_alignas_qualifier, - STATE(2220), 1, + STATE(1971), 1, sym_pointer_type_declarator, - STATE(3761), 1, + STATE(3758), 1, sym_ms_unaligned_ptr_modifier, - STATE(6251), 1, + STATE(6074), 1, sym__type_declarator, - STATE(8344), 1, + STATE(8477), 1, sym_ms_based_modifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(8246), 2, + ACTIONS(8278), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(3283), 2, + STATE(3386), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4626), 2, + STATE(4794), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7850), 3, + ACTIONS(7856), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(8290), 4, + ACTIONS(8280), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2218), 5, + STATE(1985), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -401219,55 +406633,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [122172] = 21, + [124127] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8280), 1, + ACTIONS(8284), 1, sym_identifier, - ACTIONS(8282), 1, + ACTIONS(8286), 1, anon_sym_LPAREN2, - ACTIONS(8292), 1, + ACTIONS(8296), 1, sym_primitive_type, - ACTIONS(8300), 1, + ACTIONS(8332), 1, anon_sym_STAR, - ACTIONS(8302), 1, + ACTIONS(8334), 1, anon_sym_AMP_AMP, - ACTIONS(8304), 1, + ACTIONS(8336), 1, anon_sym_AMP, - STATE(1658), 1, + STATE(1680), 1, sym_alignas_qualifier, - STATE(2220), 1, - sym_pointer_type_declarator, - STATE(3761), 1, + STATE(3758), 1, sym_ms_unaligned_ptr_modifier, - STATE(6251), 1, + STATE(6122), 1, + sym_pointer_type_declarator, + STATE(6358), 1, sym__type_declarator, - STATE(8344), 1, + STATE(8378), 1, sym_ms_based_modifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(8246), 2, + ACTIONS(8278), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(4053), 2, + STATE(3386), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4626), 2, + STATE(4643), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7850), 3, + ACTIONS(7856), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(8290), 4, + ACTIONS(8294), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2218), 5, + STATE(6136), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -401287,12 +406701,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [122261] = 4, + [124216] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5454), 1, - anon_sym_COLON_COLON, - ACTIONS(5450), 19, + ACTIONS(5525), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -401312,7 +406724,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5452), 25, + ACTIONS(5527), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -401330,6 +406742,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -401338,113 +406751,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [122316] = 26, + [124269] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(2979), 1, - anon_sym_TILDE, - ACTIONS(4298), 1, - anon_sym_LPAREN2, - ACTIONS(5849), 1, + ACTIONS(8298), 1, sym_identifier, - ACTIONS(5853), 1, + ACTIONS(8300), 1, + anon_sym_LPAREN2, + ACTIONS(8302), 1, anon_sym_STAR, - ACTIONS(5855), 1, + ACTIONS(8304), 1, anon_sym_AMP_AMP, - ACTIONS(5857), 1, + ACTIONS(8306), 1, anon_sym_AMP, - ACTIONS(5861), 1, - anon_sym_COLON_COLON, - ACTIONS(5863), 1, - anon_sym_LBRACK, - ACTIONS(8173), 1, - anon_sym_DOT_DOT_DOT, - STATE(3087), 1, - sym_parameter_list, - STATE(5860), 1, - sym__scope_resolution, - STATE(6087), 1, - sym__function_declarator_seq, - STATE(6319), 1, - sym__declarator, - STATE(6573), 1, - sym__abstract_declarator, - STATE(7434), 1, - sym_variadic_declarator, - STATE(8106), 1, + ACTIONS(8310), 1, + sym_primitive_type, + STATE(1680), 1, + sym_alignas_qualifier, + STATE(2909), 1, + sym__type_declarator, + STATE(3374), 1, + sym_pointer_type_declarator, + STATE(3758), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8189), 1, sym_ms_based_modifier, - ACTIONS(8308), 2, - anon_sym___attribute__, - anon_sym___attribute, - STATE(8601), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(8306), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_GT2, - STATE(6092), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(5998), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [122415] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4167), 1, - anon_sym_COLON_COLON, - ACTIONS(6630), 1, - anon_sym_LT, - STATE(1603), 1, - sym_template_argument_list, - STATE(4175), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8310), 4, + ACTIONS(69), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(8278), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3386), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4768), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(7856), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8308), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5977), 6, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(5979), 31, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + STATE(3318), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(67), 13, anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -401456,65 +406819,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [122478] = 21, + [124358] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8252), 1, + ACTIONS(8268), 1, sym_identifier, - ACTIONS(8254), 1, + ACTIONS(8270), 1, anon_sym_LPAREN2, - ACTIONS(8256), 1, + ACTIONS(8282), 1, + sym_primitive_type, + ACTIONS(8338), 1, anon_sym_STAR, - ACTIONS(8258), 1, + ACTIONS(8340), 1, anon_sym_AMP_AMP, - ACTIONS(8260), 1, + ACTIONS(8342), 1, anon_sym_AMP, - ACTIONS(8264), 1, - sym_primitive_type, - STATE(1658), 1, + STATE(1680), 1, sym_alignas_qualifier, - STATE(3761), 1, + STATE(1971), 1, + sym_pointer_type_declarator, + STATE(3758), 1, sym_ms_unaligned_ptr_modifier, - STATE(5907), 1, + STATE(6074), 1, sym__type_declarator, - STATE(6089), 1, - sym_pointer_type_declarator, - STATE(8067), 1, + STATE(8477), 1, sym_ms_based_modifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(8246), 2, + ACTIONS(8278), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(4009), 2, + STATE(4090), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4761), 2, + STATE(4794), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7850), 3, + ACTIONS(7856), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(8262), 4, + ACTIONS(8280), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(6082), 5, + STATE(1985), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -401534,35 +406887,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [122567] = 3, + [124447] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(8043), 13, - anon_sym_DOT_DOT_DOT, + ACTIONS(4187), 1, + anon_sym_COLON_COLON, + ACTIONS(6580), 1, + anon_sym_LT, + STATE(1623), 1, + sym_template_argument_list, + STATE(4250), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(8344), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6058), 6, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(6060), 31, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_COLON_COLON, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_GT2, - ACTIONS(8041), 32, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [124510] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4187), 1, + anon_sym_COLON_COLON, + ACTIONS(7483), 1, + anon_sym_LT, + STATE(1623), 1, + sym_template_argument_list, + STATE(4250), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(8344), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4164), 6, anon_sym_AMP, - anon_sym___extension__, - anon_sym___attribute__, anon_sym___attribute, - 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_COLON, + anon_sym_LBRACK, anon_sym_const, + anon_sym___asm, + ACTIONS(4172), 31, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -401576,63 +406989,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_identifier, + anon_sym_asm, + anon_sym___asm__, + sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_template, - anon_sym_operator, anon_sym_try, anon_sym_requires, - [122620] = 21, + [124573] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(63), 1, + anon_sym___inline, + ACTIONS(67), 1, + anon_sym_const, + ACTIONS(7299), 1, + anon_sym___attribute__, + ACTIONS(8242), 1, + sym_auto, + ACTIONS(8244), 1, + anon_sym_decltype, + ACTIONS(8346), 1, + anon_sym_virtual, + ACTIONS(8350), 1, + anon_sym___declspec, + STATE(1680), 1, + sym_alignas_qualifier, + STATE(2483), 1, + sym_decltype_auto, + ACTIONS(6486), 2, + anon_sym_AMP, + anon_sym_LBRACK, + ACTIONS(7304), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(6488), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + STATE(4238), 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(8348), 8, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + ACTIONS(7297), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [124656] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8280), 1, + ACTIONS(8268), 1, sym_identifier, - ACTIONS(8282), 1, + ACTIONS(8270), 1, anon_sym_LPAREN2, - ACTIONS(8284), 1, + ACTIONS(8272), 1, anon_sym_STAR, - ACTIONS(8286), 1, + ACTIONS(8274), 1, anon_sym_AMP_AMP, - ACTIONS(8288), 1, + ACTIONS(8276), 1, anon_sym_AMP, - ACTIONS(8292), 1, + ACTIONS(8282), 1, sym_primitive_type, - STATE(1658), 1, + STATE(1680), 1, sym_alignas_qualifier, - STATE(2203), 1, - sym__type_declarator, - STATE(2220), 1, + STATE(1971), 1, sym_pointer_type_declarator, - STATE(3761), 1, + STATE(2243), 1, + sym__type_declarator, + STATE(3758), 1, sym_ms_unaligned_ptr_modifier, - STATE(7984), 1, + STATE(8550), 1, sym_ms_based_modifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(8246), 2, + ACTIONS(8278), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(4016), 2, + STATE(4088), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4610), 2, + STATE(4783), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7850), 3, + ACTIONS(7856), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(8290), 4, + ACTIONS(8280), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2218), 5, + STATE(1985), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -401652,16 +407130,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [122709] = 21, + [124745] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8252), 1, + ACTIONS(8268), 1, sym_identifier, - ACTIONS(8254), 1, + ACTIONS(8270), 1, anon_sym_LPAREN2, - ACTIONS(8264), 1, + ACTIONS(8282), 1, sym_primitive_type, ACTIONS(8312), 1, anon_sym_STAR, @@ -401669,38 +407147,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, ACTIONS(8316), 1, anon_sym_AMP, - STATE(1658), 1, + STATE(1680), 1, sym_alignas_qualifier, - STATE(3761), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6089), 1, + STATE(1971), 1, sym_pointer_type_declarator, - STATE(6225), 1, + STATE(3758), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6842), 1, sym__type_declarator, - STATE(8365), 1, + STATE(8660), 1, sym_ms_based_modifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(8246), 2, + ACTIONS(8278), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(3283), 2, + STATE(3386), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4630), 2, + STATE(4756), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7850), 3, + ACTIONS(7856), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(8262), 4, + ACTIONS(8280), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(6082), 5, + STATE(1985), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -401720,16 +407198,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [122798] = 21, + [124834] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8252), 1, + ACTIONS(8268), 1, sym_identifier, - ACTIONS(8254), 1, + ACTIONS(8270), 1, anon_sym_LPAREN2, - ACTIONS(8264), 1, + ACTIONS(8282), 1, sym_primitive_type, ACTIONS(8312), 1, anon_sym_STAR, @@ -401737,38 +407215,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, ACTIONS(8316), 1, anon_sym_AMP, - STATE(1658), 1, + STATE(1680), 1, sym_alignas_qualifier, - STATE(3761), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6089), 1, + STATE(1971), 1, sym_pointer_type_declarator, - STATE(6225), 1, + STATE(3758), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6838), 1, sym__type_declarator, - STATE(8365), 1, + STATE(8660), 1, sym_ms_based_modifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(8246), 2, + ACTIONS(8278), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(4033), 2, + STATE(4064), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4630), 2, + STATE(4748), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7850), 3, + ACTIONS(7856), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(8262), 4, + ACTIONS(8280), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(6082), 5, + STATE(1985), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -401788,62 +407266,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [122887] = 21, + [124923] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(67), 1, + ACTIONS(3335), 1, + sym_ms_restrict_modifier, + ACTIONS(3339), 1, anon_sym_const, - ACTIONS(7842), 1, + ACTIONS(5020), 1, anon_sym_LPAREN2, - ACTIONS(7850), 1, - sym_ms_restrict_modifier, - ACTIONS(7856), 1, + ACTIONS(8147), 1, anon_sym_LBRACK, - ACTIONS(8318), 1, + ACTIONS(8352), 1, anon_sym_STAR, - ACTIONS(8320), 1, + ACTIONS(8354), 1, anon_sym_AMP_AMP, - ACTIONS(8322), 1, + ACTIONS(8356), 1, anon_sym_AMP, - STATE(1658), 1, - sym_alignas_qualifier, - STATE(3273), 1, + STATE(3198), 1, sym_parameter_list, - STATE(3761), 1, + STATE(4069), 1, sym_ms_unaligned_ptr_modifier, - STATE(5792), 1, + STATE(4325), 1, + sym_alignas_qualifier, + STATE(6109), 1, sym__function_declarator_seq, - STATE(6529), 1, + STATE(6678), 1, sym__abstract_declarator, - ACTIONS(7152), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(7852), 2, + ACTIONS(8143), 2, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(7854), 2, + ACTIONS(8145), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(4034), 2, + ACTIONS(8149), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3962), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4718), 2, + STATE(4697), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(5804), 5, + STATE(6099), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(5851), 6, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(5877), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - ACTIONS(7145), 12, + ACTIONS(8141), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -401856,160 +407334,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [122976] = 21, + [125012] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(8252), 1, - sym_identifier, - ACTIONS(8254), 1, + ACTIONS(6359), 1, + anon_sym___attribute__, + ACTIONS(6361), 1, + anon_sym___attribute, + ACTIONS(6740), 1, + anon_sym_LBRACE, + ACTIONS(8358), 1, + anon_sym_COLON, + STATE(2579), 1, + sym__enum_base_clause, + STATE(2620), 1, + sym_enumerator_list, + STATE(2690), 1, + sym_attribute_specifier, + ACTIONS(6393), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(6395), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(8264), 1, - sym_primitive_type, - ACTIONS(8312), 1, anon_sym_STAR, - ACTIONS(8314), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(8316), 1, - anon_sym_AMP, - STATE(1658), 1, - sym_alignas_qualifier, - STATE(3761), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6089), 1, - sym_pointer_type_declarator, - STATE(6227), 1, - sym__type_declarator, - STATE(8365), 1, - sym_ms_based_modifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(8246), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3283), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4631), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(7850), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(8262), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(6082), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [123065] = 21, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [125079] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(7842), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(2999), 1, + anon_sym_TILDE, + ACTIONS(4310), 1, anon_sym_LPAREN2, - ACTIONS(7850), 1, - sym_ms_restrict_modifier, - ACTIONS(7856), 1, - anon_sym_LBRACK, - ACTIONS(8318), 1, + ACTIONS(5861), 1, + sym_identifier, + ACTIONS(5865), 1, anon_sym_STAR, - ACTIONS(8320), 1, + ACTIONS(5867), 1, anon_sym_AMP_AMP, - ACTIONS(8322), 1, + ACTIONS(5869), 1, anon_sym_AMP, - STATE(1658), 1, - sym_alignas_qualifier, - STATE(3273), 1, + ACTIONS(5873), 1, + anon_sym_COLON_COLON, + ACTIONS(5875), 1, + anon_sym_LBRACK, + ACTIONS(8189), 1, + anon_sym_DOT_DOT_DOT, + STATE(3109), 1, sym_parameter_list, - STATE(3761), 1, - sym_ms_unaligned_ptr_modifier, - STATE(5792), 1, + STATE(5896), 1, + sym__scope_resolution, + STATE(6109), 1, sym__function_declarator_seq, - STATE(6533), 1, + STATE(6438), 1, + sym__declarator, + STATE(6664), 1, sym__abstract_declarator, - ACTIONS(7152), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(7852), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(7854), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3283), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4722), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5804), 5, + STATE(7252), 1, + sym_variadic_declarator, + STATE(8286), 1, + sym_ms_based_modifier, + ACTIONS(8362), 2, + anon_sym___attribute__, + anon_sym___attribute, + STATE(8569), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(8360), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_GT2, + STATE(6099), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(5865), 6, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(7145), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [123154] = 10, + STATE(6145), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [125178] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6358), 1, + ACTIONS(6359), 1, anon_sym___attribute__, - ACTIONS(6360), 1, + ACTIONS(6361), 1, anon_sym___attribute, - ACTIONS(6729), 1, + ACTIONS(6740), 1, anon_sym_LBRACE, - ACTIONS(8234), 1, + ACTIONS(8358), 1, anon_sym_COLON, - STATE(2549), 1, + STATE(2580), 1, sym__enum_base_clause, - STATE(2634), 1, + STATE(2624), 1, sym_enumerator_list, - STATE(2682), 1, + STATE(2708), 1, sym_attribute_specifier, - ACTIONS(6336), 11, + ACTIONS(6316), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -402021,7 +407493,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6338), 27, + ACTIONS(6318), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -402049,55 +407521,55 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [123221] = 21, + [125245] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8280), 1, + ACTIONS(8268), 1, sym_identifier, - ACTIONS(8282), 1, + ACTIONS(8270), 1, anon_sym_LPAREN2, - ACTIONS(8284), 1, + ACTIONS(8282), 1, + sym_primitive_type, + ACTIONS(8338), 1, anon_sym_STAR, - ACTIONS(8286), 1, + ACTIONS(8340), 1, anon_sym_AMP_AMP, - ACTIONS(8288), 1, + ACTIONS(8342), 1, anon_sym_AMP, - ACTIONS(8292), 1, - sym_primitive_type, - STATE(1658), 1, + STATE(1680), 1, sym_alignas_qualifier, - STATE(2176), 1, - sym__type_declarator, - STATE(2220), 1, + STATE(1971), 1, sym_pointer_type_declarator, - STATE(3761), 1, + STATE(3758), 1, sym_ms_unaligned_ptr_modifier, - STATE(7984), 1, + STATE(6051), 1, + sym__type_declarator, + STATE(8477), 1, sym_ms_based_modifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(8246), 2, + ACTIONS(8278), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(4037), 2, + STATE(4072), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4729), 2, + STATE(4778), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7850), 3, + ACTIONS(7856), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(8290), 4, + ACTIONS(8280), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2218), 5, + STATE(1985), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -402117,55 +407589,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [123310] = 21, + [125334] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8280), 1, + ACTIONS(8268), 1, sym_identifier, - ACTIONS(8282), 1, + ACTIONS(8270), 1, anon_sym_LPAREN2, - ACTIONS(8284), 1, + ACTIONS(8272), 1, anon_sym_STAR, - ACTIONS(8286), 1, + ACTIONS(8274), 1, anon_sym_AMP_AMP, - ACTIONS(8288), 1, + ACTIONS(8276), 1, anon_sym_AMP, - ACTIONS(8292), 1, + ACTIONS(8282), 1, sym_primitive_type, - STATE(1658), 1, + STATE(1680), 1, sym_alignas_qualifier, - STATE(2203), 1, - sym__type_declarator, - STATE(2220), 1, + STATE(1971), 1, sym_pointer_type_declarator, - STATE(3761), 1, + STATE(2218), 1, + sym__type_declarator, + STATE(3758), 1, sym_ms_unaligned_ptr_modifier, - STATE(7984), 1, + STATE(8550), 1, sym_ms_based_modifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(8246), 2, + ACTIONS(8278), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(3283), 2, + STATE(3386), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4610), 2, + STATE(4749), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7850), 3, + ACTIONS(7856), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(8290), 4, + ACTIONS(8280), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2218), 5, + STATE(1985), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -402185,110 +407657,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [123399] = 8, + [125423] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4167), 1, - anon_sym_COLON_COLON, - ACTIONS(7386), 1, - anon_sym_LT, - STATE(1603), 1, - sym_template_argument_list, - STATE(4175), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8310), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4144), 6, + ACTIONS(8127), 1, + sym_auto, + ACTIONS(8129), 1, + anon_sym_decltype, + STATE(4145), 1, + sym_decltype_auto, + ACTIONS(5533), 17, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(4152), 31, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(5535), 25, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [123462] = 21, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [125482] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8252), 1, + ACTIONS(8268), 1, sym_identifier, - ACTIONS(8254), 1, + ACTIONS(8270), 1, anon_sym_LPAREN2, - ACTIONS(8264), 1, + ACTIONS(8282), 1, sym_primitive_type, - ACTIONS(8312), 1, + ACTIONS(8338), 1, anon_sym_STAR, - ACTIONS(8314), 1, + ACTIONS(8340), 1, anon_sym_AMP_AMP, - ACTIONS(8316), 1, + ACTIONS(8342), 1, anon_sym_AMP, - STATE(1658), 1, + STATE(1680), 1, sym_alignas_qualifier, - STATE(3761), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6089), 1, + STATE(1971), 1, sym_pointer_type_declarator, - STATE(6184), 1, + STATE(3758), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6062), 1, sym__type_declarator, - STATE(8365), 1, + STATE(8477), 1, sym_ms_based_modifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(8246), 2, + ACTIONS(8278), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(4030), 2, + STATE(3386), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4629), 2, + STATE(4816), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7850), 3, + ACTIONS(7856), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(8262), 4, + ACTIONS(8280), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(6082), 5, + STATE(1985), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -402308,62 +407778,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [123551] = 21, + [125571] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3327), 1, - sym_ms_restrict_modifier, - ACTIONS(3331), 1, + ACTIONS(67), 1, anon_sym_const, - ACTIONS(5012), 1, + ACTIONS(7848), 1, anon_sym_LPAREN2, - ACTIONS(8131), 1, + ACTIONS(7856), 1, + sym_ms_restrict_modifier, + ACTIONS(7862), 1, anon_sym_LBRACK, - ACTIONS(8324), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8326), 1, + ACTIONS(8264), 1, anon_sym_AMP_AMP, - ACTIONS(8328), 1, + ACTIONS(8266), 1, anon_sym_AMP, - STATE(3179), 1, + STATE(1680), 1, + sym_alignas_qualifier, + STATE(3255), 1, sym_parameter_list, - STATE(4043), 1, + STATE(3758), 1, sym_ms_unaligned_ptr_modifier, - STATE(4289), 1, - sym_alignas_qualifier, - STATE(6087), 1, + STATE(5953), 1, sym__function_declarator_seq, - STATE(6545), 1, + STATE(6686), 1, sym__abstract_declarator, - ACTIONS(8127), 2, + ACTIONS(7304), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7858), 2, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(8129), 2, + ACTIONS(7860), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(8133), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4041), 2, + STATE(3386), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4639), 2, + STATE(4738), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6092), 5, + STATE(5952), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(5851), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(5877), 6, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - ACTIONS(8125), 12, + ACTIONS(7297), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -402376,63 +407846,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [123640] = 21, + [125660] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3327), 1, - sym_ms_restrict_modifier, - ACTIONS(3331), 1, - anon_sym_const, - ACTIONS(5012), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(8284), 1, + sym_identifier, + ACTIONS(8286), 1, anon_sym_LPAREN2, - ACTIONS(8131), 1, - anon_sym_LBRACK, - ACTIONS(8324), 1, + ACTIONS(8296), 1, + sym_primitive_type, + ACTIONS(8332), 1, anon_sym_STAR, - ACTIONS(8326), 1, + ACTIONS(8334), 1, anon_sym_AMP_AMP, - ACTIONS(8328), 1, + ACTIONS(8336), 1, anon_sym_AMP, - STATE(3179), 1, - sym_parameter_list, - STATE(4043), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4289), 1, + STATE(1680), 1, sym_alignas_qualifier, - STATE(6087), 1, - sym__function_declarator_seq, - STATE(6547), 1, - sym__abstract_declarator, - ACTIONS(8127), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(8129), 2, + STATE(3758), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6122), 1, + sym_pointer_type_declarator, + STATE(6354), 1, + sym__type_declarator, + STATE(8378), 1, + sym_ms_based_modifier, + ACTIONS(69), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(8278), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(8133), 2, + STATE(4070), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4832), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(7856), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8294), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(6136), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [125749] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(8284), 1, + sym_identifier, + ACTIONS(8286), 1, + anon_sym_LPAREN2, + ACTIONS(8288), 1, + anon_sym_STAR, + ACTIONS(8290), 1, + anon_sym_AMP_AMP, + ACTIONS(8292), 1, + anon_sym_AMP, + ACTIONS(8296), 1, + sym_primitive_type, + STATE(1680), 1, + sym_alignas_qualifier, + STATE(3758), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6034), 1, + sym__type_declarator, + STATE(6122), 1, + sym_pointer_type_declarator, + STATE(8097), 1, + sym_ms_based_modifier, + ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3820), 2, + ACTIONS(8278), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3386), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4641), 2, + STATE(4814), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6092), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5865), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - ACTIONS(8125), 12, + ACTIONS(7856), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8294), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(6136), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(67), 13, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -402444,35 +407982,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [123729] = 6, + [125838] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4167), 1, - anon_sym_COLON_COLON, - ACTIONS(7386), 1, - anon_sym_LT, - STATE(1603), 1, - sym_template_argument_list, - ACTIONS(5838), 6, - anon_sym_AMP, + ACTIONS(43), 1, anon_sym___attribute, - anon_sym_COLON, - anon_sym_LBRACK, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(63), 1, + anon_sym___inline, + ACTIONS(67), 1, anon_sym_const, - anon_sym___asm, - ACTIONS(4172), 36, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(7299), 1, + anon_sym___attribute__, + ACTIONS(8242), 1, + sym_auto, + ACTIONS(8244), 1, + anon_sym_decltype, + ACTIONS(8350), 1, + anon_sym___declspec, + ACTIONS(8364), 1, + anon_sym_virtual, + STATE(1680), 1, + sym_alignas_qualifier, + STATE(2483), 1, + sym_decltype_auto, + ACTIONS(6476), 2, + anon_sym_AMP, + anon_sym_LBRACK, + ACTIONS(7304), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(6478), 3, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, + STATE(4263), 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(8348), 8, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + ACTIONS(7297), 12, anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -402484,47 +408047,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [123788] = 3, + [125921] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(8077), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(8284), 1, + sym_identifier, + ACTIONS(8286), 1, anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(8288), 1, anon_sym_STAR, + ACTIONS(8290), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(8075), 32, + ACTIONS(8292), 1, anon_sym_AMP, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___based, + ACTIONS(8296), 1, + sym_primitive_type, + STATE(1680), 1, + sym_alignas_qualifier, + STATE(3758), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5968), 1, + sym__type_declarator, + STATE(6122), 1, + sym_pointer_type_declarator, + STATE(8097), 1, + sym_ms_based_modifier, + ACTIONS(69), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(8278), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3386), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4725), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(7856), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - anon_sym__unaligned, - anon_sym___unaligned, + ACTIONS(8294), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(6136), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(67), 13, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -402537,65 +408115,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [123841] = 21, + [126010] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8252), 1, + ACTIONS(8268), 1, sym_identifier, - ACTIONS(8254), 1, + ACTIONS(8270), 1, anon_sym_LPAREN2, - ACTIONS(8256), 1, + ACTIONS(8272), 1, anon_sym_STAR, - ACTIONS(8258), 1, + ACTIONS(8274), 1, anon_sym_AMP_AMP, - ACTIONS(8260), 1, + ACTIONS(8276), 1, anon_sym_AMP, - ACTIONS(8264), 1, + ACTIONS(8282), 1, sym_primitive_type, - STATE(1658), 1, + STATE(1680), 1, sym_alignas_qualifier, - STATE(3761), 1, - sym_ms_unaligned_ptr_modifier, - STATE(5912), 1, - sym__type_declarator, - STATE(6089), 1, + STATE(1971), 1, sym_pointer_type_declarator, - STATE(8067), 1, + STATE(2212), 1, + sym__type_declarator, + STATE(3758), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8550), 1, sym_ms_based_modifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(8246), 2, + ACTIONS(8278), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(3283), 2, + STATE(4060), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4646), 2, + STATE(4675), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7850), 3, + ACTIONS(7856), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(8262), 4, + ACTIONS(8280), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(6082), 5, + STATE(1985), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -402615,55 +408183,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [123930] = 21, + [126099] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8280), 1, + ACTIONS(8318), 1, sym_identifier, - ACTIONS(8282), 1, + ACTIONS(8320), 1, anon_sym_LPAREN2, - ACTIONS(8292), 1, - sym_primitive_type, - ACTIONS(8330), 1, + ACTIONS(8322), 1, anon_sym_STAR, - ACTIONS(8332), 1, + ACTIONS(8324), 1, anon_sym_AMP_AMP, - ACTIONS(8334), 1, + ACTIONS(8326), 1, anon_sym_AMP, - STATE(1658), 1, + ACTIONS(8330), 1, + sym_primitive_type, + STATE(1680), 1, sym_alignas_qualifier, - STATE(2220), 1, + STATE(3099), 1, + sym__type_declarator, + STATE(3541), 1, sym_pointer_type_declarator, - STATE(3761), 1, + STATE(3758), 1, sym_ms_unaligned_ptr_modifier, - STATE(6749), 1, - sym__type_declarator, - STATE(8527), 1, + STATE(8597), 1, sym_ms_based_modifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(8246), 2, + ACTIONS(8278), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(4049), 2, + STATE(3386), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4650), 2, + STATE(4834), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7850), 3, + ACTIONS(7856), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(8290), 4, + ACTIONS(8328), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2218), 5, + STATE(3536), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -402683,23 +408251,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [124019] = 6, + [126188] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4167), 1, + ACTIONS(4187), 1, anon_sym_COLON_COLON, - ACTIONS(7386), 1, + ACTIONS(7483), 1, anon_sym_LT, - STATE(1603), 1, + STATE(1623), 1, sym_template_argument_list, - ACTIONS(4963), 6, + ACTIONS(4925), 6, anon_sym_AMP, anon_sym___attribute, anon_sym_COLON, anon_sym_LBRACK, anon_sym_const, anon_sym___asm, - ACTIONS(4970), 36, + ACTIONS(4932), 36, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -402736,44 +408304,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [124078] = 9, + [126247] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(4167), 1, - anon_sym_COLON_COLON, - ACTIONS(4965), 1, - anon_sym_SEMI, - ACTIONS(4974), 1, - anon_sym_LBRACK, - ACTIONS(6630), 1, - anon_sym_LT, - STATE(3962), 1, - sym_template_argument_list, - ACTIONS(4967), 2, + ACTIONS(67), 1, + anon_sym_const, + ACTIONS(7848), 1, anon_sym_LPAREN2, + ACTIONS(7862), 1, + anon_sym_LBRACK, + ACTIONS(7967), 1, + anon_sym_STAR, + ACTIONS(7969), 1, + anon_sym_AMP_AMP, + ACTIONS(7971), 1, + anon_sym_AMP, + ACTIONS(8215), 1, + anon_sym___asm, + ACTIONS(8242), 1, + sym_auto, + ACTIONS(8244), 1, + anon_sym_decltype, + STATE(1680), 1, + sym_alignas_qualifier, + STATE(2483), 1, + sym_decltype_auto, + STATE(3110), 1, + sym_parameter_list, + STATE(5953), 1, + sym__function_declarator_seq, + STATE(6236), 1, + sym__abstract_declarator, + ACTIONS(7304), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4246), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5952), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8213), 10, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(4970), 3, - anon_sym_TILDE, + anon_sym_LBRACE, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(7297), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [126334] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3335), 1, + sym_ms_restrict_modifier, + ACTIONS(3339), 1, + anon_sym_const, + ACTIONS(5020), 1, + anon_sym_LPAREN2, + ACTIONS(8147), 1, + anon_sym_LBRACK, + ACTIONS(8352), 1, anon_sym_STAR, + ACTIONS(8354), 1, anon_sym_AMP_AMP, - ACTIONS(4963), 35, + ACTIONS(8356), 1, anon_sym_AMP, + STATE(3198), 1, + sym_parameter_list, + STATE(4069), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4325), 1, + sym_alignas_qualifier, + STATE(6109), 1, + sym__function_declarator_seq, + STATE(6676), 1, + sym__abstract_declarator, + ACTIONS(8143), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8145), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(8149), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4083), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4694), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6099), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(5863), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(8141), 12, anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - 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, @@ -402785,66 +408439,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [124143] = 18, + [126423] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(63), 1, - anon_sym___inline, ACTIONS(67), 1, anon_sym_const, - ACTIONS(7147), 1, - anon_sym___attribute__, - ACTIONS(8209), 1, + ACTIONS(7848), 1, + anon_sym_LPAREN2, + ACTIONS(7862), 1, + anon_sym_LBRACK, + ACTIONS(7967), 1, + anon_sym_STAR, + ACTIONS(7969), 1, + anon_sym_AMP_AMP, + ACTIONS(7971), 1, + anon_sym_AMP, + ACTIONS(8223), 1, + anon_sym___asm, + ACTIONS(8242), 1, sym_auto, - ACTIONS(8211), 1, + ACTIONS(8244), 1, anon_sym_decltype, - ACTIONS(8298), 1, - anon_sym___declspec, - ACTIONS(8336), 1, - anon_sym_virtual, - STATE(1658), 1, + STATE(1680), 1, sym_alignas_qualifier, - STATE(2504), 1, + STATE(2483), 1, sym_decltype_auto, - ACTIONS(6453), 2, - anon_sym_AMP, - anon_sym_LBRACK, - ACTIONS(7152), 2, + STATE(3110), 1, + sym_parameter_list, + STATE(5953), 1, + sym__function_declarator_seq, + STATE(6240), 1, + sym__abstract_declarator, + ACTIONS(7304), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(6455), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - STATE(4185), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, + STATE(4260), 2, sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(8296), 8, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(7145), 12, + aux_sym__type_definition_type_repeat1, + STATE(5952), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8221), 10, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(7297), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -402857,55 +408506,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [124226] = 21, + [126510] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5519), 1, + anon_sym_COLON_COLON, + ACTIONS(5515), 19, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5517), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [126565] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8280), 1, + ACTIONS(8318), 1, sym_identifier, - ACTIONS(8282), 1, + ACTIONS(8320), 1, anon_sym_LPAREN2, - ACTIONS(8292), 1, - sym_primitive_type, - ACTIONS(8330), 1, + ACTIONS(8322), 1, anon_sym_STAR, - ACTIONS(8332), 1, + ACTIONS(8324), 1, anon_sym_AMP_AMP, - ACTIONS(8334), 1, + ACTIONS(8326), 1, anon_sym_AMP, - STATE(1658), 1, + ACTIONS(8330), 1, + sym_primitive_type, + STATE(1680), 1, sym_alignas_qualifier, - STATE(2220), 1, + STATE(3063), 1, + sym__type_declarator, + STATE(3541), 1, sym_pointer_type_declarator, - STATE(3761), 1, + STATE(3758), 1, sym_ms_unaligned_ptr_modifier, - STATE(6723), 1, - sym__type_declarator, - STATE(8527), 1, + STATE(8597), 1, sym_ms_based_modifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(8246), 2, + ACTIONS(8278), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(3283), 2, + STATE(3386), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4652), 2, + STATE(4679), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7850), 3, + ACTIONS(7856), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(8290), 4, + ACTIONS(8328), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2218), 5, + STATE(3536), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -402925,55 +408625,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [124315] = 21, + [126654] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8266), 1, + ACTIONS(8318), 1, sym_identifier, - ACTIONS(8268), 1, + ACTIONS(8320), 1, anon_sym_LPAREN2, - ACTIONS(8270), 1, + ACTIONS(8322), 1, anon_sym_STAR, - ACTIONS(8272), 1, + ACTIONS(8324), 1, anon_sym_AMP_AMP, - ACTIONS(8274), 1, + ACTIONS(8326), 1, anon_sym_AMP, - ACTIONS(8278), 1, + ACTIONS(8330), 1, sym_primitive_type, - STATE(1658), 1, + STATE(1680), 1, sym_alignas_qualifier, - STATE(2916), 1, + STATE(3135), 1, sym__type_declarator, - STATE(3288), 1, + STATE(3541), 1, sym_pointer_type_declarator, - STATE(3761), 1, + STATE(3758), 1, sym_ms_unaligned_ptr_modifier, - STATE(8665), 1, + STATE(8597), 1, sym_ms_based_modifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(8246), 2, + ACTIONS(8278), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(4011), 2, + STATE(4103), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4594), 2, + STATE(4706), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7850), 3, + ACTIONS(7856), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(8276), 4, + ACTIONS(8328), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3285), 5, + STATE(3536), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -402993,55 +408693,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [124404] = 21, + [126743] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8280), 1, + ACTIONS(8298), 1, sym_identifier, - ACTIONS(8282), 1, + ACTIONS(8300), 1, anon_sym_LPAREN2, - ACTIONS(8292), 1, - sym_primitive_type, - ACTIONS(8330), 1, + ACTIONS(8302), 1, anon_sym_STAR, - ACTIONS(8332), 1, + ACTIONS(8304), 1, anon_sym_AMP_AMP, - ACTIONS(8334), 1, + ACTIONS(8306), 1, anon_sym_AMP, - STATE(1658), 1, + ACTIONS(8310), 1, + sym_primitive_type, + STATE(1680), 1, sym_alignas_qualifier, - STATE(2220), 1, + STATE(2942), 1, + sym__type_declarator, + STATE(3374), 1, sym_pointer_type_declarator, - STATE(3761), 1, + STATE(3758), 1, sym_ms_unaligned_ptr_modifier, - STATE(6723), 1, - sym__type_declarator, - STATE(8527), 1, + STATE(8189), 1, sym_ms_based_modifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(8246), 2, + ACTIONS(8278), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(4052), 2, + STATE(4062), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4652), 2, + STATE(4695), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7850), 3, + ACTIONS(7856), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(8290), 4, + ACTIONS(8308), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2218), 5, + STATE(3318), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -403061,63 +408761,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [124493] = 21, + [126832] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(8280), 1, - sym_identifier, - ACTIONS(8282), 1, + ACTIONS(4187), 1, + anon_sym_COLON_COLON, + ACTIONS(7483), 1, + anon_sym_LT, + STATE(1623), 1, + sym_template_argument_list, + ACTIONS(5834), 6, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(4192), 36, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(8292), 1, - sym_primitive_type, - ACTIONS(8330), 1, anon_sym_STAR, - ACTIONS(8332), 1, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(8334), 1, - anon_sym_AMP, - STATE(1658), 1, - sym_alignas_qualifier, - STATE(2220), 1, - sym_pointer_type_declarator, - STATE(3761), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6753), 1, - sym__type_declarator, - STATE(8527), 1, - sym_ms_based_modifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(8246), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3283), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4655), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(7850), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(8290), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2218), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - ACTIONS(67), 13, + anon_sym_SEMI, anon_sym___extension__, - anon_sym_const, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -403129,62 +408801,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [124582] = 21, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [126891] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(8280), 1, - sym_identifier, - ACTIONS(8282), 1, + ACTIONS(8056), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(8292), 1, - sym_primitive_type, - ACTIONS(8300), 1, + anon_sym_TILDE, anon_sym_STAR, - ACTIONS(8302), 1, anon_sym_AMP_AMP, - ACTIONS(8304), 1, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(8054), 32, anon_sym_AMP, - STATE(1658), 1, - sym_alignas_qualifier, - STATE(2220), 1, - sym_pointer_type_declarator, - STATE(3761), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6238), 1, - sym__type_declarator, - STATE(8344), 1, - sym_ms_based_modifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(8246), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3283), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4583), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(7850), 3, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___based, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(8290), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2218), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - ACTIONS(67), 13, - anon_sym___extension__, + anon_sym__unaligned, + anon_sym___unaligned, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -403197,10 +408854,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [124671] = 3, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [126944] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5732), 19, + ACTIONS(5515), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -403220,7 +408887,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5734), 25, + ACTIONS(5517), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -403246,10 +408913,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [124723] = 3, + [126996] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5677), 19, + ACTIONS(5701), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -403269,7 +408936,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5679), 25, + ACTIONS(5703), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -403295,10 +408962,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [124775] = 3, + [127048] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5677), 19, + ACTIONS(5820), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -403318,7 +408985,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5679), 25, + ACTIONS(5822), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -403344,72 +409011,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [124827] = 9, + [127100] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(6971), 1, + ACTIONS(3623), 1, anon_sym_LBRACE, - ACTIONS(8338), 1, - anon_sym_COLON, - STATE(2469), 1, - sym_attribute_specifier, - STATE(2775), 1, - sym__enum_base_clause, - STATE(2882), 1, - sym_enumerator_list, - ACTIONS(5468), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(6344), 5, + ACTIONS(7992), 1, + anon_sym_LBRACK, + ACTIONS(8125), 1, anon_sym_LPAREN2, + ACTIONS(8179), 1, + sym_auto, + ACTIONS(8181), 1, + anon_sym_decltype, + STATE(1864), 1, + sym_decltype_auto, + STATE(4057), 1, + sym_new_declarator, + STATE(3863), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5881), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(5883), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(6342), 32, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [127168] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5705), 19, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_operator, - [124891] = 5, + ACTIONS(5707), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [127220] = 6, ACTIONS(3), 1, sym_comment, - STATE(4058), 1, + STATE(4160), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(8340), 4, + ACTIONS(5078), 2, + sym_primitive_type, + sym_identifier, + ACTIONS(8366), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5072), 9, + ACTIONS(5167), 9, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -403419,7 +409140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - ACTIONS(5070), 30, + ACTIONS(5164), 28, anon_sym_AMP, anon_sym___extension__, anon_sym___attribute__, @@ -403439,38 +409160,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, anon_sym_asm, anon_sym___asm__, anon_sym___asm, - sym_identifier, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - [124947] = 11, + [127278] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5780), 19, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5782), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [127330] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7027), 1, + anon_sym_LBRACE, + ACTIONS(8369), 1, + anon_sym_COLON, + STATE(2457), 1, + sym_attribute_specifier, + STATE(2847), 1, + sym__enum_base_clause, + STATE(3012), 1, + sym_enumerator_list, + ACTIONS(5489), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(6318), 5, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(6316), 32, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_operator, + [127394] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3615), 1, + ACTIONS(3623), 1, anon_sym_LBRACE, - ACTIONS(7953), 1, + ACTIONS(7992), 1, anon_sym_LBRACK, - ACTIONS(8101), 1, + ACTIONS(8125), 1, anon_sym_LPAREN2, - ACTIONS(8149), 1, + ACTIONS(8179), 1, sym_auto, - ACTIONS(8151), 1, + ACTIONS(8181), 1, anon_sym_decltype, - STATE(1884), 1, + STATE(1864), 1, sym_decltype_auto, - STATE(3976), 1, + STATE(4050), 1, sym_new_declarator, - STATE(3898), 2, + STATE(3958), 2, sym_argument_list, sym_initializer_list, - ACTIONS(5842), 9, + ACTIONS(5841), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -403480,7 +409303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(5844), 26, + ACTIONS(5843), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -403507,29 +409330,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [125015] = 9, + [127462] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6971), 1, + ACTIONS(7027), 1, anon_sym_LBRACE, - ACTIONS(8338), 1, + ACTIONS(8369), 1, anon_sym_COLON, - STATE(2509), 1, + STATE(2458), 1, sym_attribute_specifier, - STATE(2788), 1, + STATE(2845), 1, sym__enum_base_clause, - STATE(2880), 1, + STATE(2997), 1, sym_enumerator_list, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(6338), 5, + ACTIONS(6395), 5, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(6336), 32, + ACTIONS(6393), 32, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -403562,10 +409385,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_operator, - [125079] = 3, + [127526] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5637), 19, + ACTIONS(5645), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -403585,7 +409408,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5639), 25, + ACTIONS(5647), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -403611,10 +409434,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [125131] = 3, + [127578] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7065), 1, + anon_sym_const, + ACTIONS(7848), 1, + anon_sym_LPAREN2, + ACTIONS(7856), 1, + sym_ms_restrict_modifier, + ACTIONS(7862), 1, + anon_sym_LBRACK, + ACTIONS(8371), 1, + anon_sym_STAR, + ACTIONS(8373), 1, + anon_sym_AMP_AMP, + ACTIONS(8375), 1, + anon_sym_AMP, + STATE(3515), 1, + sym_parameter_list, + STATE(3758), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4036), 1, + sym_alignas_qualifier, + STATE(5953), 1, + sym__function_declarator_seq, + STATE(6700), 1, + sym__abstract_declarator, + ACTIONS(7067), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7858), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(7860), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4120), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4869), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(5863), 5, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(5952), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7052), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [127666] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7065), 1, + anon_sym_const, + ACTIONS(7848), 1, + anon_sym_LPAREN2, + ACTIONS(7856), 1, + sym_ms_restrict_modifier, + ACTIONS(7862), 1, + anon_sym_LBRACK, + ACTIONS(8371), 1, + anon_sym_STAR, + ACTIONS(8373), 1, + anon_sym_AMP_AMP, + ACTIONS(8375), 1, + anon_sym_AMP, + STATE(3515), 1, + sym_parameter_list, + STATE(3758), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4036), 1, + sym_alignas_qualifier, + STATE(5953), 1, + sym__function_declarator_seq, + STATE(6712), 1, + sym__abstract_declarator, + ACTIONS(7067), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7858), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(7860), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3386), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4873), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(5877), 5, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(5952), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7052), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [127754] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5663), 19, + ACTIONS(5768), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -403634,7 +409591,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5665), 25, + ACTIONS(5770), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -403660,10 +409617,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [125183] = 3, + [127806] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8377), 1, + sym_identifier, + ACTIONS(8387), 1, + sym_primitive_type, + STATE(4321), 1, + sym_alignas_qualifier, + STATE(4411), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(8384), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4205), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8382), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5111), 9, + anon_sym_AMP, + anon_sym___attribute__, + anon_sym___attribute, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(5109), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(8379), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [127874] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5736), 19, + ACTIONS(5772), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -403683,7 +409697,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5738), 25, + ACTIONS(5774), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -403709,10 +409723,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [125235] = 3, + [127926] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 19, + ACTIONS(5784), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -403732,7 +409746,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5657), 25, + ACTIONS(5786), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -403758,27 +409772,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [125287] = 11, + [127978] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3615), 1, - anon_sym_LBRACE, - ACTIONS(7953), 1, - anon_sym_LBRACK, - ACTIONS(8101), 1, - anon_sym_LPAREN2, - ACTIONS(8149), 1, - sym_auto, - ACTIONS(8151), 1, - anon_sym_decltype, - STATE(1884), 1, - sym_decltype_auto, - STATE(4004), 1, - sym_new_declarator, - STATE(3844), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(5869), 9, + ACTIONS(5738), 19, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -403787,10 +409785,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(5871), 26, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5740), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -403801,27 +409813,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [125355] = 3, + [128030] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2761), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2759), 42, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_typename, + anon_sym_template, + [128082] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3287), 2, + ACTIONS(2773), 2, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(3282), 42, + ACTIONS(2771), 42, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, @@ -403864,10 +409919,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_typename, anon_sym_template, - [125407] = 3, + [128134] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5659), 19, + ACTIONS(5693), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -403887,7 +409942,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5661), 25, + ACTIONS(5695), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -403913,13 +409968,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [125459] = 3, + [128186] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2701), 2, + ACTIONS(2969), 2, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2699), 42, + ACTIONS(2967), 42, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, @@ -403962,67 +410017,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_typename, anon_sym_template, - [125511] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8343), 1, - sym_identifier, - ACTIONS(8353), 1, - sym_primitive_type, - STATE(4238), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4316), 1, - sym_alignas_qualifier, - ACTIONS(8350), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4084), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8348), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5088), 9, - anon_sym_AMP, - anon_sym___attribute__, - anon_sym___attribute, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - ACTIONS(5086), 10, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(8345), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [125579] = 3, + [128238] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5754), 19, + ACTIONS(5720), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -404042,7 +410040,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5756), 25, + ACTIONS(5722), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -404068,10 +410066,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [125631] = 3, + [128290] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5758), 19, + ACTIONS(5760), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -404091,7 +410089,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5760), 25, + ACTIONS(5762), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -404117,91 +410115,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [125683] = 10, + [128342] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7059), 1, - anon_sym_const, - STATE(3992), 1, - sym_alignas_qualifier, - ACTIONS(7061), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4295), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(4337), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5688), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(8203), 4, - anon_sym_AMP, - anon_sym___attribute, + ACTIONS(3623), 1, + anon_sym_LBRACE, + ACTIONS(7992), 1, anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(7046), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(8201), 18, - anon_sym_COMMA, + ACTIONS(8125), 1, anon_sym_LPAREN2, + ACTIONS(8179), 1, + sym_auto, + ACTIONS(8181), 1, + anon_sym_decltype, + STATE(1864), 1, + sym_decltype_auto, + STATE(4043), 1, + sym_new_declarator, + STATE(3939), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5853), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(5855), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_noexcept, - anon_sym_throw, - anon_sym_requires, - [125749] = 6, + [128410] = 3, ACTIONS(3), 1, sym_comment, - STATE(4058), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5070), 2, - sym_primitive_type, - sym_identifier, - ACTIONS(8340), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5156), 9, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(3295), 2, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - ACTIONS(5159), 28, - anon_sym_AMP, + ACTIONS(3290), 42, anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, - anon_sym_LBRACK, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + 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, @@ -404216,19 +410211,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [125807] = 3, + anon_sym_typename, + anon_sym_template, + [128462] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3623), 1, + anon_sym_LBRACE, + ACTIONS(7992), 1, + anon_sym_LBRACK, + ACTIONS(8125), 1, + anon_sym_LPAREN2, + ACTIONS(8179), 1, + sym_auto, + ACTIONS(8181), 1, + anon_sym_decltype, + STATE(1864), 1, + sym_decltype_auto, + STATE(4044), 1, + sym_new_declarator, + STATE(3927), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5857), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(5859), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + 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_LT, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [128530] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5786), 19, + ACTIONS(5728), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -404248,7 +410301,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5788), 25, + ACTIONS(5730), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -404274,10 +410327,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [125859] = 3, + [128582] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5790), 19, + ACTIONS(5788), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -404297,7 +410350,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5792), 25, + ACTIONS(5790), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -404323,13 +410376,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [125911] = 3, + [128634] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2641), 2, + ACTIONS(2705), 2, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2639), 42, + ACTIONS(2703), 42, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, @@ -404372,10 +410425,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_typename, anon_sym_template, - [125963] = 3, + [128686] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5794), 19, + ACTIONS(5816), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -404395,7 +410448,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5796), 25, + ACTIONS(5818), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -404421,10 +410474,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [126015] = 3, + [128738] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5778), 19, + ACTIONS(5660), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -404444,7 +410497,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5780), 25, + ACTIONS(5662), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -404470,10 +410523,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [126067] = 3, + [128790] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5786), 19, + ACTIONS(7065), 1, + anon_sym_const, + STATE(4036), 1, + sym_alignas_qualifier, + ACTIONS(7067), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4322), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(4446), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5835), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8248), 4, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(7052), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(8246), 18, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [128856] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5804), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -404493,7 +410602,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5788), 25, + ACTIONS(5806), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -404519,10 +410628,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [126119] = 3, + [128908] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5667), 19, + ACTIONS(5681), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -404542,7 +410651,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5669), 25, + ACTIONS(5683), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -404568,10 +410677,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [126171] = 3, + [128960] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5699), 19, + ACTIONS(5808), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -404591,7 +410700,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5701), 25, + ACTIONS(5810), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -404617,10 +410726,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [126223] = 3, + [129012] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5770), 19, + ACTIONS(5753), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -404640,7 +410749,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5772), 25, + ACTIONS(5755), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -404666,10 +410775,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [126275] = 3, + [129064] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5647), 19, + ACTIONS(5666), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -404689,7 +410798,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5649), 25, + ACTIONS(5668), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -404715,150 +410824,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [126327] = 11, + [129116] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8355), 1, - sym_identifier, - ACTIONS(8365), 1, - sym_primitive_type, - STATE(4316), 1, - sym_alignas_qualifier, - STATE(4388), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8362), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4128), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8360), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5102), 9, - anon_sym_AMP, - anon_sym___attribute__, - anon_sym___attribute, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - ACTIONS(5100), 10, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(8357), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [126395] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(7842), 1, - anon_sym_LPAREN2, - ACTIONS(7856), 1, - anon_sym_LBRACK, - ACTIONS(7982), 1, - anon_sym_STAR, - ACTIONS(7984), 1, - anon_sym_AMP_AMP, - ACTIONS(7986), 1, - anon_sym_AMP, - ACTIONS(8207), 1, - anon_sym___attribute, - ACTIONS(8209), 1, - sym_auto, - ACTIONS(8211), 1, - anon_sym_decltype, - STATE(1658), 1, - sym_alignas_qualifier, - STATE(2504), 1, - sym_decltype_auto, - STATE(3007), 1, - sym_parameter_list, - STATE(5792), 1, - sym__function_declarator_seq, - STATE(6258), 1, - sym__abstract_declarator, - ACTIONS(7152), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4219), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5804), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8205), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - ACTIONS(7145), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [126481] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3615), 1, - anon_sym_LBRACE, - ACTIONS(7953), 1, - anon_sym_LBRACK, - ACTIONS(8101), 1, - anon_sym_LPAREN2, - ACTIONS(8149), 1, - sym_auto, - ACTIONS(8151), 1, - anon_sym_decltype, - STATE(1884), 1, - sym_decltype_auto, - STATE(4006), 1, - sym_new_declarator, - STATE(3840), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(5823), 9, + ACTIONS(5812), 19, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -404867,10 +410837,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(5825), 26, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5814), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -404881,24 +410865,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [126549] = 3, + [129168] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5450), 19, + ACTIONS(5796), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -404918,7 +410896,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5452), 25, + ACTIONS(5798), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -404944,76 +410922,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [126601] = 20, + [129220] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(7842), 1, - anon_sym_LPAREN2, - ACTIONS(7856), 1, - anon_sym_LBRACK, - ACTIONS(7982), 1, - anon_sym_STAR, - ACTIONS(7984), 1, - anon_sym_AMP_AMP, - ACTIONS(7986), 1, - anon_sym_AMP, - ACTIONS(8187), 1, - anon_sym___attribute, - ACTIONS(8209), 1, - sym_auto, - ACTIONS(8211), 1, - anon_sym_decltype, - STATE(1658), 1, - sym_alignas_qualifier, - STATE(2504), 1, - sym_decltype_auto, - STATE(3007), 1, - sym_parameter_list, - STATE(5792), 1, - sym__function_declarator_seq, - STATE(6236), 1, - sym__abstract_declarator, - ACTIONS(7152), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4224), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5804), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8185), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - ACTIONS(7145), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [126687] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5681), 19, + ACTIONS(5720), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -405033,7 +410945,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5683), 25, + ACTIONS(5722), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -405059,10 +410971,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [126739] = 3, + [129272] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5677), 19, + ACTIONS(5712), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -405082,7 +410994,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5679), 25, + ACTIONS(5714), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -405108,62 +411020,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [126791] = 21, + [129324] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7059), 1, - anon_sym_const, - ACTIONS(7842), 1, - anon_sym_LPAREN2, - ACTIONS(7850), 1, - sym_ms_restrict_modifier, - ACTIONS(7856), 1, - anon_sym_LBRACK, - ACTIONS(8367), 1, - anon_sym_STAR, - ACTIONS(8369), 1, - anon_sym_AMP_AMP, - ACTIONS(8371), 1, - anon_sym_AMP, - STATE(3459), 1, - sym_parameter_list, - STATE(3761), 1, - sym_ms_unaligned_ptr_modifier, - STATE(3992), 1, + ACTIONS(8389), 1, + sym_identifier, + ACTIONS(8399), 1, + sym_primitive_type, + STATE(4290), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4321), 1, sym_alignas_qualifier, - STATE(5792), 1, - sym__function_declarator_seq, - STATE(6619), 1, - sym__abstract_declarator, - ACTIONS(7061), 2, + ACTIONS(8396), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(7852), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(7854), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(4093), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4819), 2, + STATE(4122), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(5851), 5, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, + ACTIONS(8394), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5096), 9, + anon_sym_AMP, + anon_sym___attribute__, + anon_sym___attribute, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, + anon_sym_try, anon_sym_requires, - STATE(5804), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7046), 12, + ACTIONS(5094), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(8391), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [129392] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2673), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2671), 42, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_typename, + anon_sym_template, + [129444] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3093), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3091), 42, anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_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, @@ -405175,10 +411163,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [126879] = 3, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_typename, + anon_sym_template, + [129496] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5740), 19, + ACTIONS(5804), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -405198,7 +411198,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5742), 25, + ACTIONS(5806), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -405224,61 +411224,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [126931] = 21, + [129548] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(7059), 1, + ACTIONS(67), 1, anon_sym_const, - ACTIONS(7842), 1, + ACTIONS(7848), 1, anon_sym_LPAREN2, - ACTIONS(7850), 1, - sym_ms_restrict_modifier, - ACTIONS(7856), 1, + ACTIONS(7862), 1, anon_sym_LBRACK, - ACTIONS(8367), 1, + ACTIONS(8113), 1, anon_sym_STAR, - ACTIONS(8369), 1, + ACTIONS(8115), 1, anon_sym_AMP_AMP, - ACTIONS(8371), 1, + ACTIONS(8117), 1, anon_sym_AMP, - STATE(3459), 1, - sym_parameter_list, - STATE(3761), 1, - sym_ms_unaligned_ptr_modifier, - STATE(3992), 1, + ACTIONS(8215), 1, + anon_sym___attribute, + ACTIONS(8242), 1, + sym_auto, + ACTIONS(8244), 1, + anon_sym_decltype, + STATE(1680), 1, sym_alignas_qualifier, - STATE(5792), 1, + STATE(2483), 1, + sym_decltype_auto, + STATE(3112), 1, + sym_parameter_list, + STATE(5953), 1, sym__function_declarator_seq, - STATE(6623), 1, + STATE(6331), 1, sym__abstract_declarator, - ACTIONS(7061), 2, + ACTIONS(7304), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(7852), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(7854), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3283), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4822), 2, + STATE(4289), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(5865), 5, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - STATE(5804), 5, + STATE(5952), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(7046), 12, + ACTIONS(8213), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(7297), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -405291,10 +411290,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [127019] = 3, + [129634] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5685), 19, + ACTIONS(5724), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -405314,7 +411313,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5687), 25, + ACTIONS(5726), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -405340,10 +411339,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [127071] = 3, + [129686] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5692), 19, + ACTIONS(5685), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -405363,7 +411362,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5694), 25, + ACTIONS(5687), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -405389,10 +411388,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [127123] = 3, + [129738] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5798), 19, + ACTIONS(5689), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -405412,7 +411411,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5800), 25, + ACTIONS(5691), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -405438,10 +411437,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [127175] = 3, + [129790] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(67), 1, + anon_sym_const, + ACTIONS(7848), 1, + anon_sym_LPAREN2, + ACTIONS(7862), 1, + anon_sym_LBRACK, + ACTIONS(8113), 1, + anon_sym_STAR, + ACTIONS(8115), 1, + anon_sym_AMP_AMP, + ACTIONS(8117), 1, + anon_sym_AMP, + ACTIONS(8223), 1, + anon_sym___attribute, + ACTIONS(8242), 1, + sym_auto, + ACTIONS(8244), 1, + anon_sym_decltype, + STATE(1680), 1, + sym_alignas_qualifier, + STATE(2483), 1, + sym_decltype_auto, + STATE(3112), 1, + sym_parameter_list, + STATE(5953), 1, + sym__function_declarator_seq, + STATE(6335), 1, + sym__abstract_declarator, + ACTIONS(7304), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4291), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5952), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8221), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(7297), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [129876] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5774), 19, + ACTIONS(5720), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -405461,7 +411526,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5776), 25, + ACTIONS(5722), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -405487,72 +411552,212 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [127227] = 3, + [129928] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5806), 19, - aux_sym_preproc_elif_token1, + STATE(4160), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(8366), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5080), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + ACTIONS(5078), 30, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [129984] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5845), 1, + anon_sym_LPAREN2, + ACTIONS(6414), 1, + anon_sym_LBRACK, + ACTIONS(6418), 1, + anon_sym_DOT, + ACTIONS(8405), 1, + anon_sym_SLASH, + ACTIONS(8411), 1, + anon_sym_GT_EQ, + ACTIONS(8415), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8417), 1, + anon_sym_not_eq, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + ACTIONS(6420), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8048), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8401), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(8403), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8407), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8413), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8409), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + ACTIONS(6518), 9, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5808), 25, + ACTIONS(6520), 10, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [127279] = 3, + [130067] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7065), 1, + anon_sym_const, + ACTIONS(7848), 1, + anon_sym_LPAREN2, + ACTIONS(7862), 1, + anon_sym_LBRACK, + ACTIONS(8151), 1, + anon_sym_STAR, + ACTIONS(8153), 1, + anon_sym_AMP_AMP, + ACTIONS(8155), 1, + anon_sym_AMP, + ACTIONS(8217), 1, + sym_auto, + ACTIONS(8219), 1, + anon_sym_decltype, + STATE(2963), 1, + sym_parameter_list, + STATE(4036), 1, + sym_alignas_qualifier, + STATE(4730), 1, + sym_decltype_auto, + STATE(5953), 1, + sym__function_declarator_seq, + STATE(6458), 1, + sym__abstract_declarator, + ACTIONS(7067), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4356), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5952), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8221), 9, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(7052), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [130150] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2653), 2, + ACTIONS(4187), 1, anon_sym_COLON_COLON, + ACTIONS(4934), 1, + anon_sym_LBRACK, + ACTIONS(6580), 1, + anon_sym_LT, + STATE(4297), 1, + sym_template_argument_list, + ACTIONS(4929), 2, + anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - ACTIONS(2651), 42, + ACTIONS(4932), 3, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + ACTIONS(4925), 34, + anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym___based, anon_sym_static, anon_sym_register, anon_sym_inline, @@ -405575,20 +411780,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - [127331] = 3, + anon_sym_operator, + [130211] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(8419), 1, + sym_identifier, + ACTIONS(8421), 1, + anon_sym_LPAREN2, + ACTIONS(8423), 1, + anon_sym_STAR, + ACTIONS(8425), 1, + anon_sym_AMP_AMP, + ACTIONS(8427), 1, + anon_sym_AMP, + STATE(4069), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4325), 1, + sym_alignas_qualifier, + STATE(6277), 1, + sym__field_declarator, + STATE(6445), 1, + sym_operator_name, + STATE(8851), 1, + sym_ms_based_modifier, + ACTIONS(3337), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3341), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3962), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4928), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3335), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(6476), 7, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + sym_reference_field_declarator, + sym_template_method, + ACTIONS(3339), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [130296] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5810), 19, + ACTIONS(6714), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -405606,9 +411870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5812), 25, + ACTIONS(6716), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -405626,40 +411888,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [130347] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3879), 1, anon_sym_LBRACE, + ACTIONS(6805), 1, + sym_auto, + ACTIONS(6807), 1, + anon_sym_decltype, + ACTIONS(8429), 1, + anon_sym_LPAREN2, + ACTIONS(8431), 1, anon_sym_LBRACK, + STATE(2741), 1, + sym_decltype_auto, + STATE(4436), 1, + sym_new_declarator, + STATE(4862), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5841), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5843), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + 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_LT_LT, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [127383] = 3, + anon_sym_GT2, + [130414] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(3081), 2, - anon_sym_COLON_COLON, + ACTIONS(67), 1, + anon_sym_const, + ACTIONS(6783), 1, + anon_sym___asm, + ACTIONS(7848), 1, + anon_sym_LPAREN2, + ACTIONS(7862), 1, + anon_sym_LBRACK, + ACTIONS(7866), 1, + anon_sym_STAR, + ACTIONS(7868), 1, + anon_sym_AMP_AMP, + ACTIONS(7870), 1, + anon_sym_AMP, + STATE(1680), 1, + sym_alignas_qualifier, + STATE(3006), 1, + sym_parameter_list, + STATE(5953), 1, + sym__function_declarator_seq, + STATE(6163), 1, + sym__abstract_declarator, + ACTIONS(7304), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1669), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5952), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6781), 11, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3079), 42, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(7297), 12, anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_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, @@ -405671,98 +412015,185 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - [127435] = 3, + [130493] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5762), 19, + ACTIONS(5845), 1, + anon_sym_LPAREN2, + ACTIONS(6414), 1, + anon_sym_LBRACK, + ACTIONS(6418), 1, + anon_sym_DOT, + ACTIONS(8405), 1, + anon_sym_SLASH, + ACTIONS(8411), 1, + anon_sym_GT_EQ, + ACTIONS(8415), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8417), 1, + anon_sym_not_eq, + ACTIONS(8433), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8435), 1, + anon_sym_AMP_AMP, + ACTIONS(8439), 1, + anon_sym_CARET, + ACTIONS(8443), 1, + anon_sym_or, + ACTIONS(8445), 1, + anon_sym_and, + ACTIONS(8447), 1, + anon_sym_xor, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + ACTIONS(6420), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7015), 2, aux_sym_preproc_elif_token1, + sym_identifier, + ACTIONS(8048), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8401), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(8403), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8407), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8413), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8437), 2, anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(8441), 2, anon_sym_AMP, + anon_sym_bitand, + ACTIONS(8409), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5764), 25, + ACTIONS(7017), 7, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + anon_sym_QMARK, + [130592] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5845), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(6414), 1, + anon_sym_LBRACK, + ACTIONS(6418), 1, + anon_sym_DOT, + ACTIONS(8405), 1, + anon_sym_SLASH, + ACTIONS(8411), 1, + anon_sym_GT_EQ, + ACTIONS(8415), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8417), 1, + anon_sym_not_eq, + ACTIONS(8433), 1, anon_sym_PIPE_PIPE, + ACTIONS(8435), 1, anon_sym_AMP_AMP, + ACTIONS(8439), 1, anon_sym_CARET, + ACTIONS(8443), 1, + anon_sym_or, + ACTIONS(8445), 1, + anon_sym_and, + ACTIONS(8447), 1, + anon_sym_xor, + ACTIONS(8449), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8451), 1, + anon_sym_QMARK, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + ACTIONS(6420), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6662), 2, + aux_sym_preproc_elif_token1, + sym_identifier, + ACTIONS(8048), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8401), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8403), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8407), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + ACTIONS(8413), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [127487] = 11, + ACTIONS(8437), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(8441), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(8409), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6664), 5, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + [130695] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3615), 1, + ACTIONS(3879), 1, anon_sym_LBRACE, - ACTIONS(7953), 1, - anon_sym_LBRACK, - ACTIONS(8101), 1, - anon_sym_LPAREN2, - ACTIONS(8149), 1, + ACTIONS(6805), 1, sym_auto, - ACTIONS(8151), 1, + ACTIONS(6807), 1, anon_sym_decltype, - STATE(1884), 1, + ACTIONS(8429), 1, + anon_sym_LPAREN2, + ACTIONS(8431), 1, + anon_sym_LBRACK, + STATE(2741), 1, sym_decltype_auto, - STATE(3993), 1, + STATE(4421), 1, sym_new_declarator, - STATE(3865), 2, + STATE(4870), 2, sym_argument_list, sym_initializer_list, - ACTIONS(5873), 9, + ACTIONS(5857), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5875), 26, + ACTIONS(5859), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -405772,11 +412203,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -405789,10 +412216,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [127555] = 3, + anon_sym_GT2, + [130762] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5766), 19, + ACTIONS(6658), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -405810,9 +412238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5768), 25, + ACTIONS(6660), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -405830,40 +412256,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACE, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [127607] = 3, + [130813] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2713), 2, - anon_sym_COLON_COLON, + ACTIONS(67), 1, + anon_sym_const, + ACTIONS(7848), 1, + anon_sym_LPAREN2, + ACTIONS(7862), 1, + anon_sym_LBRACK, + ACTIONS(7866), 1, + anon_sym_STAR, + ACTIONS(7868), 1, + anon_sym_AMP_AMP, + ACTIONS(7870), 1, + anon_sym_AMP, + ACTIONS(8455), 1, + anon_sym___asm, + STATE(1680), 1, + sym_alignas_qualifier, + STATE(3006), 1, + sym_parameter_list, + STATE(5953), 1, + sym__function_declarator_seq, + STATE(6092), 1, + sym__abstract_declarator, + ACTIONS(7304), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1669), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5952), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8453), 11, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2711), 42, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(7297), 12, anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_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, @@ -405875,43 +412327,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - [127659] = 3, + [130892] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2957), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2955), 42, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(8419), 1, + sym_identifier, + ACTIONS(8421), 1, + anon_sym_LPAREN2, + ACTIONS(8423), 1, + anon_sym_STAR, + ACTIONS(8425), 1, + anon_sym_AMP_AMP, + ACTIONS(8427), 1, + anon_sym_AMP, + STATE(4069), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4325), 1, + sym_alignas_qualifier, + STATE(6281), 1, + sym__field_declarator, + STATE(6445), 1, + sym_operator_name, + STATE(8851), 1, + sym_ms_based_modifier, + ACTIONS(3337), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3341), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4164), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4913), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3335), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(6476), 7, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + sym_reference_field_declarator, + sym_template_method, + ACTIONS(3339), 13, anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_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, @@ -405924,72 +412392,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + [130977] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5879), 1, + anon_sym___attribute, + ACTIONS(7065), 1, + anon_sym_const, + ACTIONS(7848), 1, + anon_sym_LPAREN2, + ACTIONS(7850), 1, + anon_sym_STAR, + ACTIONS(7852), 1, + anon_sym_AMP_AMP, + ACTIONS(7854), 1, + anon_sym_AMP, + ACTIONS(7862), 1, + anon_sym_LBRACK, + STATE(2908), 1, + sym_parameter_list, + STATE(4036), 1, + sym_alignas_qualifier, + STATE(5953), 1, + sym__function_declarator_seq, + STATE(6147), 1, + sym__abstract_declarator, + ACTIONS(7067), 2, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - [127711] = 21, + STATE(3777), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5952), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(5877), 11, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(7052), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [131056] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(5012), 1, + ACTIONS(5020), 1, anon_sym_LPAREN2, - ACTIONS(5706), 1, + ACTIONS(5652), 1, anon_sym_const, - ACTIONS(8131), 1, + ACTIONS(8147), 1, anon_sym_LBRACK, - ACTIONS(8373), 1, + ACTIONS(8457), 1, anon_sym_STAR, - ACTIONS(8375), 1, + ACTIONS(8459), 1, anon_sym_AMP_AMP, - ACTIONS(8377), 1, + ACTIONS(8461), 1, anon_sym_AMP, - ACTIONS(8381), 1, + ACTIONS(8465), 1, sym_ms_restrict_modifier, - STATE(1695), 1, + STATE(1702), 1, sym_alignas_qualifier, - STATE(3370), 1, + STATE(3551), 1, sym_parameter_list, - STATE(5267), 1, + STATE(5308), 1, sym_ms_unaligned_ptr_modifier, - STATE(6087), 1, + STATE(6109), 1, sym__function_declarator_seq, - STATE(6638), 1, + STATE(6788), 1, sym__abstract_declarator, - ACTIONS(8383), 2, + ACTIONS(8467), 2, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(8385), 2, + ACTIONS(8469), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(8387), 2, + ACTIONS(8471), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4155), 2, + STATE(4176), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4871), 2, + STATE(4922), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(5851), 4, + ACTIONS(5863), 4, anon_sym_COLON, anon_sym_final, anon_sym_override, anon_sym_requires, - STATE(6092), 5, + STATE(6099), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8379), 12, + ACTIONS(8463), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -406002,132 +412520,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [127798] = 23, + [131143] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5020), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(5652), 1, + anon_sym_const, + ACTIONS(8147), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, - anon_sym_DOT, - ACTIONS(8393), 1, - anon_sym_SLASH, - ACTIONS(8397), 1, - anon_sym_CARET, - ACTIONS(8405), 1, - anon_sym_GT_EQ, - ACTIONS(8409), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8411), 1, - anon_sym_xor, - ACTIONS(8413), 1, - anon_sym_not_eq, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8045), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8389), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8391), 2, + ACTIONS(8457), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8395), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(8399), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(8401), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8407), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8403), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6449), 4, - aux_sym_preproc_elif_token1, - anon_sym_or, - anon_sym_and, - sym_identifier, - ACTIONS(6451), 9, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, + ACTIONS(8459), 1, anon_sym_AMP_AMP, - anon_sym_QMARK, - [127889] = 22, + ACTIONS(8461), 1, + anon_sym_AMP, + ACTIONS(8465), 1, + sym_ms_restrict_modifier, + STATE(1702), 1, + sym_alignas_qualifier, + STATE(3551), 1, + sym_parameter_list, + STATE(5308), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6109), 1, + sym__function_declarator_seq, + STATE(6790), 1, + sym__abstract_declarator, + ACTIONS(8467), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8469), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(8471), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4924), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5081), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(5877), 4, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(6099), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8463), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [131230] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8393), 1, - anon_sym_SLASH, - ACTIONS(8397), 1, - anon_sym_CARET, ACTIONS(8405), 1, - anon_sym_GT_EQ, - ACTIONS(8409), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8411), 1, - anon_sym_xor, - ACTIONS(8413), 1, - anon_sym_not_eq, - STATE(2525), 1, + anon_sym_SLASH, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8389), 2, + ACTIONS(8401), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8391), 2, + ACTIONS(8403), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8399), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(8401), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8407), 2, + ACTIONS(8413), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8403), 3, + ACTIONS(6518), 13, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6449), 6, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, anon_sym_or, anon_sym_and, anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, sym_identifier, - ACTIONS(6451), 9, + ACTIONS(6520), 14, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -406136,175 +412639,237 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_QMARK, - [127978] = 20, + anon_sym_LT_EQ_GT, + [131303] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(8421), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, - anon_sym_LBRACK, - ACTIONS(6431), 1, - anon_sym_DOT, - ACTIONS(8393), 1, - anon_sym_SLASH, - ACTIONS(8405), 1, - anon_sym_GT_EQ, - ACTIONS(8409), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8413), 1, - anon_sym_not_eq, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8045), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8389), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8391), 2, + ACTIONS(8473), 1, + sym_identifier, + ACTIONS(8475), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8399), 2, + ACTIONS(8477), 1, + anon_sym_AMP_AMP, + ACTIONS(8479), 1, anon_sym_AMP, - anon_sym_bitand, - ACTIONS(8401), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8407), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8403), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6449), 7, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, + STATE(4069), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4325), 1, + sym_alignas_qualifier, + STATE(6780), 1, + sym__field_declarator, + STATE(6943), 1, + sym_operator_name, + STATE(8112), 1, + sym_ms_based_modifier, + ACTIONS(3337), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3341), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4198), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4917), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3335), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(6476), 7, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + sym_reference_field_declarator, + sym_template_method, + ACTIONS(3339), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [131388] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(8419), 1, sym_identifier, - ACTIONS(6451), 10, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, + ACTIONS(8421), 1, + anon_sym_LPAREN2, + ACTIONS(8423), 1, + anon_sym_STAR, + ACTIONS(8425), 1, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_QMARK, - [128063] = 19, + ACTIONS(8427), 1, + anon_sym_AMP, + STATE(4069), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4325), 1, + sym_alignas_qualifier, + STATE(6277), 1, + sym__field_declarator, + STATE(6445), 1, + sym_operator_name, + STATE(8851), 1, + sym_ms_based_modifier, + ACTIONS(3337), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3341), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4192), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4928), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3335), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(6476), 7, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + sym_reference_field_declarator, + sym_template_method, + ACTIONS(3339), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [131473] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(3879), 1, + anon_sym_LBRACE, + ACTIONS(6805), 1, + sym_auto, + ACTIONS(6807), 1, + anon_sym_decltype, + ACTIONS(8429), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(8431), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, - anon_sym_DOT, - ACTIONS(8393), 1, - anon_sym_SLASH, - ACTIONS(8405), 1, - anon_sym_GT_EQ, - ACTIONS(8409), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8413), 1, - anon_sym_not_eq, - STATE(2525), 1, + STATE(2741), 1, + sym_decltype_auto, + STATE(4425), 1, + sym_new_declarator, + STATE(4893), 2, sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8045), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8389), 2, + sym_initializer_list, + ACTIONS(5881), 11, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8391), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5883), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8401), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8407), 2, anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8403), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6449), 9, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_AMP, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, - sym_identifier, - ACTIONS(6451), 10, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_QMARK, - [128146] = 17, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [131540] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8393), 1, - anon_sym_SLASH, ACTIONS(8405), 1, + anon_sym_SLASH, + ACTIONS(8411), 1, anon_sym_GT_EQ, - ACTIONS(8409), 1, + ACTIONS(8415), 1, anon_sym_LT_EQ_GT, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8389), 2, + ACTIONS(8401), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8391), 2, + ACTIONS(8403), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8407), 2, + ACTIONS(8413), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8403), 3, + ACTIONS(8409), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6449), 10, + ACTIONS(6518), 10, aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_AMP, @@ -406315,7 +412880,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, sym_identifier, - ACTIONS(6451), 12, + ACTIONS(6520), 12, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -406328,155 +412893,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK, - [128225] = 15, + [131619] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8393), 1, + ACTIONS(8405), 1, anon_sym_SLASH, - ACTIONS(8409), 1, + ACTIONS(8411), 1, + anon_sym_GT_EQ, + ACTIONS(8415), 1, anon_sym_LT_EQ_GT, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8045), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8389), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8391), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8407), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6449), 13, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, + ACTIONS(8417), 1, anon_sym_not_eq, - sym_identifier, - ACTIONS(6451), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + ACTIONS(8433), 1, anon_sym_PIPE_PIPE, + ACTIONS(8435), 1, anon_sym_AMP_AMP, + ACTIONS(8439), 1, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - [128300] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5827), 1, - anon_sym_LPAREN2, - ACTIONS(6429), 1, - anon_sym_LBRACK, - ACTIONS(6431), 1, - anon_sym_DOT, - ACTIONS(8393), 1, - anon_sym_SLASH, - STATE(2525), 1, + ACTIONS(8443), 1, + anon_sym_or, + ACTIONS(8445), 1, + anon_sym_and, + ACTIONS(8447), 1, + anon_sym_xor, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(7019), 2, + aux_sym_preproc_elif_token1, + sym_identifier, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8389), 2, + ACTIONS(8401), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8391), 2, + ACTIONS(8403), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6449), 13, - aux_sym_preproc_elif_token1, + ACTIONS(8407), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8413), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8437), 2, anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(8441), 2, anon_sym_AMP, + anon_sym_bitand, + ACTIONS(8409), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - sym_identifier, - ACTIONS(6451), 16, + ACTIONS(7021), 7, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - 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_LT, - anon_sym_GT_GT, anon_sym_QMARK, - anon_sym_LT_EQ_GT, - [128371] = 14, + [131718] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8393), 1, + ACTIONS(8405), 1, anon_sym_SLASH, - STATE(2525), 1, + ACTIONS(8415), 1, + anon_sym_LT_EQ_GT, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8389), 2, + ACTIONS(8401), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8391), 2, + ACTIONS(8403), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8407), 2, + ACTIONS(8413), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6449), 13, + ACTIONS(6518), 13, aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_AMP, @@ -406490,7 +413011,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, sym_identifier, - ACTIONS(6451), 14, + ACTIONS(6520), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -406504,207 +413025,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_QMARK, - anon_sym_LT_EQ_GT, - [128444] = 27, + [131793] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8393), 1, - anon_sym_SLASH, - ACTIONS(8397), 1, - anon_sym_CARET, ACTIONS(8405), 1, + anon_sym_SLASH, + ACTIONS(8411), 1, anon_sym_GT_EQ, - ACTIONS(8409), 1, + ACTIONS(8415), 1, anon_sym_LT_EQ_GT, - ACTIONS(8411), 1, - anon_sym_xor, - ACTIONS(8413), 1, + ACTIONS(8417), 1, anon_sym_not_eq, - ACTIONS(8415), 1, + ACTIONS(8433), 1, anon_sym_PIPE_PIPE, - ACTIONS(8417), 1, + ACTIONS(8435), 1, anon_sym_AMP_AMP, - ACTIONS(8419), 1, + ACTIONS(8439), 1, + anon_sym_CARET, + ACTIONS(8443), 1, anon_sym_or, - ACTIONS(8421), 1, + ACTIONS(8445), 1, anon_sym_and, - STATE(2525), 1, + ACTIONS(8447), 1, + anon_sym_xor, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7005), 2, + ACTIONS(6985), 2, aux_sym_preproc_elif_token1, sym_identifier, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8389), 2, + ACTIONS(8401), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8391), 2, + ACTIONS(8403), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8395), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(8399), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(8401), 2, + ACTIONS(8407), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8407), 2, + ACTIONS(8413), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8403), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7007), 7, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_QMARK, - [128543] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5827), 1, - anon_sym_LPAREN2, - ACTIONS(6429), 1, - anon_sym_LBRACK, - ACTIONS(6431), 1, - anon_sym_DOT, - ACTIONS(8393), 1, - anon_sym_SLASH, - ACTIONS(8397), 1, - anon_sym_CARET, - ACTIONS(8405), 1, - anon_sym_GT_EQ, - ACTIONS(8409), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8411), 1, - anon_sym_xor, - ACTIONS(8413), 1, - anon_sym_not_eq, - ACTIONS(8415), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8417), 1, - anon_sym_AMP_AMP, - ACTIONS(8419), 1, - anon_sym_or, - ACTIONS(8421), 1, - anon_sym_and, - ACTIONS(8423), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8425), 1, - anon_sym_QMARK, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7011), 2, - aux_sym_preproc_elif_token1, - sym_identifier, - ACTIONS(8045), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8389), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8391), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8395), 2, + ACTIONS(8437), 2, anon_sym_PIPE, anon_sym_bitor, - ACTIONS(8399), 2, + ACTIONS(8441), 2, anon_sym_AMP, anon_sym_bitand, - ACTIONS(8401), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8407), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8403), 3, + ACTIONS(8409), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7013), 5, + ACTIONS(6987), 7, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - [128646] = 20, + anon_sym_QMARK, + [131892] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(8427), 1, - sym_identifier, - ACTIONS(8429), 1, + ACTIONS(3335), 1, + sym_ms_restrict_modifier, + ACTIONS(3339), 1, + anon_sym_const, + ACTIONS(5020), 1, anon_sym_LPAREN2, - ACTIONS(8431), 1, + ACTIONS(8147), 1, + anon_sym_LBRACK, + ACTIONS(8481), 1, anon_sym_STAR, - ACTIONS(8433), 1, + ACTIONS(8483), 1, anon_sym_AMP_AMP, - ACTIONS(8435), 1, + ACTIONS(8485), 1, anon_sym_AMP, - STATE(4043), 1, + STATE(3021), 1, + sym_parameter_list, + STATE(4069), 1, sym_ms_unaligned_ptr_modifier, - STATE(4289), 1, + STATE(4325), 1, sym_alignas_qualifier, - STATE(6137), 1, - sym__field_declarator, - STATE(6299), 1, - sym_operator_name, - STATE(8049), 1, - sym_ms_based_modifier, - ACTIONS(3329), 2, + STATE(6109), 1, + sym__function_declarator_seq, + STATE(6787), 1, + sym__abstract_declarator, + ACTIONS(8143), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8145), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(3333), 2, + ACTIONS(8149), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3820), 2, + STATE(4224), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4898), 2, + STATE(4912), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3327), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(6399), 7, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - sym_reference_field_declarator, - sym_template_method, - ACTIONS(3331), 13, + ACTIONS(5863), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + STATE(6099), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8141), 12, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -406716,173 +413163,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [128731] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5827), 1, - anon_sym_LPAREN2, - ACTIONS(6429), 1, - anon_sym_LBRACK, - ACTIONS(6431), 1, - anon_sym_DOT, - ACTIONS(8393), 1, - anon_sym_SLASH, - ACTIONS(8397), 1, - anon_sym_CARET, - ACTIONS(8405), 1, - anon_sym_GT_EQ, - ACTIONS(8409), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8411), 1, - anon_sym_xor, - ACTIONS(8413), 1, - anon_sym_not_eq, - ACTIONS(8415), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8417), 1, - anon_sym_AMP_AMP, - ACTIONS(8419), 1, - anon_sym_or, - ACTIONS(8421), 1, - anon_sym_and, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7015), 2, - aux_sym_preproc_elif_token1, - sym_identifier, - ACTIONS(8045), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8389), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8391), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8395), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(8399), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(8401), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8407), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8403), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7017), 7, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_QMARK, - [128830] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5827), 1, - anon_sym_LPAREN2, - ACTIONS(6429), 1, - anon_sym_LBRACK, - ACTIONS(6431), 1, - anon_sym_DOT, - ACTIONS(8393), 1, - anon_sym_SLASH, - ACTIONS(8397), 1, - anon_sym_CARET, - ACTIONS(8405), 1, - anon_sym_GT_EQ, - ACTIONS(8409), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8411), 1, - anon_sym_xor, - ACTIONS(8413), 1, - anon_sym_not_eq, - ACTIONS(8415), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8417), 1, - anon_sym_AMP_AMP, - ACTIONS(8419), 1, - anon_sym_or, - ACTIONS(8421), 1, - anon_sym_and, - ACTIONS(8423), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8425), 1, - anon_sym_QMARK, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7019), 2, - aux_sym_preproc_elif_token1, - sym_identifier, - ACTIONS(8045), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8389), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8391), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8395), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(8399), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(8401), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8407), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8403), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7021), 5, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - [128933] = 11, + [131979] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3887), 1, + ACTIONS(3879), 1, anon_sym_LBRACE, - ACTIONS(6829), 1, + ACTIONS(6805), 1, sym_auto, - ACTIONS(6831), 1, + ACTIONS(6807), 1, anon_sym_decltype, - ACTIONS(8437), 1, + ACTIONS(8429), 1, anon_sym_LPAREN2, - ACTIONS(8439), 1, + ACTIONS(8431), 1, anon_sym_LBRACK, - STATE(2677), 1, + STATE(2741), 1, sym_decltype_auto, - STATE(4324), 1, + STATE(4426), 1, sym_new_declarator, - STATE(4835), 2, + STATE(4888), 2, sym_argument_list, sym_initializer_list, - ACTIONS(5823), 11, + ACTIONS(5853), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -406894,7 +413195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5825), 23, + ACTIONS(5855), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -406918,230 +413219,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [129000] = 17, + [132046] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(7059), 1, + ACTIONS(7065), 1, anon_sym_const, - ACTIONS(7842), 1, - anon_sym_LPAREN2, - ACTIONS(7844), 1, - anon_sym_STAR, - ACTIONS(7846), 1, - anon_sym_AMP_AMP, ACTIONS(7848), 1, - anon_sym_AMP, - ACTIONS(7856), 1, - anon_sym_LBRACK, - ACTIONS(8443), 1, - anon_sym___asm, - STATE(2902), 1, - sym_parameter_list, - STATE(3992), 1, - sym_alignas_qualifier, - STATE(5792), 1, - sym__function_declarator_seq, - STATE(6079), 1, - sym__abstract_declarator, - ACTIONS(7061), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3727), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5804), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8441), 11, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(7046), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [129079] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5867), 1, - anon_sym___asm, - ACTIONS(7059), 1, - anon_sym_const, - ACTIONS(7842), 1, anon_sym_LPAREN2, - ACTIONS(7844), 1, - anon_sym_STAR, - ACTIONS(7846), 1, - anon_sym_AMP_AMP, - ACTIONS(7848), 1, - anon_sym_AMP, - ACTIONS(7856), 1, + ACTIONS(7862), 1, anon_sym_LBRACK, - STATE(2902), 1, - sym_parameter_list, - STATE(3992), 1, - sym_alignas_qualifier, - STATE(5792), 1, - sym__function_declarator_seq, - STATE(6083), 1, - sym__abstract_declarator, - ACTIONS(7061), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3727), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5804), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5865), 11, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(7046), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [129158] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7059), 1, - anon_sym_const, - ACTIONS(7842), 1, - anon_sym_LPAREN2, - ACTIONS(7844), 1, + ACTIONS(7885), 1, anon_sym_STAR, - ACTIONS(7846), 1, + ACTIONS(7887), 1, anon_sym_AMP_AMP, - ACTIONS(7848), 1, + ACTIONS(7889), 1, anon_sym_AMP, - ACTIONS(7856), 1, - anon_sym_LBRACK, - ACTIONS(8447), 1, - anon_sym___asm, - STATE(2902), 1, - sym_parameter_list, - STATE(3992), 1, - sym_alignas_qualifier, - STATE(5792), 1, - sym__function_declarator_seq, - STATE(6084), 1, - sym__abstract_declarator, - ACTIONS(7061), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3727), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5804), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8445), 11, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(7046), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [129237] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6750), 1, + ACTIONS(8489), 1, anon_sym___asm, - ACTIONS(7059), 1, - anon_sym_const, - ACTIONS(7842), 1, - anon_sym_LPAREN2, - ACTIONS(7844), 1, - anon_sym_STAR, - ACTIONS(7846), 1, - anon_sym_AMP_AMP, - ACTIONS(7848), 1, - anon_sym_AMP, - ACTIONS(7856), 1, - anon_sym_LBRACK, - STATE(2902), 1, + STATE(3010), 1, sym_parameter_list, - STATE(3992), 1, + STATE(4036), 1, sym_alignas_qualifier, - STATE(5792), 1, + STATE(5953), 1, sym__function_declarator_seq, - STATE(6085), 1, + STATE(6204), 1, sym__abstract_declarator, - ACTIONS(7061), 2, + ACTIONS(7067), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3727), 2, + STATE(3777), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(5804), 5, + STATE(5952), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(6748), 11, + ACTIONS(8487), 11, anon_sym_COMMA, anon_sym_SEMI, anon_sym_COLON, @@ -407153,55 +413268,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - ACTIONS(7046), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [129316] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4167), 1, - anon_sym_COLON_COLON, - ACTIONS(4972), 1, - anon_sym_LBRACK, - ACTIONS(6630), 1, - anon_sym_LT, - STATE(4226), 1, - sym_template_argument_list, - ACTIONS(4967), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(4970), 3, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - ACTIONS(4963), 34, - anon_sym_AMP, + ACTIONS(7052), 12, anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - 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, @@ -407213,182 +413281,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_operator, - [129377] = 29, + [132125] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8393), 1, - anon_sym_SLASH, - ACTIONS(8397), 1, - anon_sym_CARET, ACTIONS(8405), 1, + anon_sym_SLASH, + ACTIONS(8411), 1, anon_sym_GT_EQ, - ACTIONS(8409), 1, + ACTIONS(8415), 1, anon_sym_LT_EQ_GT, - ACTIONS(8411), 1, - anon_sym_xor, - ACTIONS(8413), 1, + ACTIONS(8417), 1, anon_sym_not_eq, - ACTIONS(8415), 1, + ACTIONS(8433), 1, anon_sym_PIPE_PIPE, - ACTIONS(8417), 1, + ACTIONS(8435), 1, anon_sym_AMP_AMP, - ACTIONS(8419), 1, + ACTIONS(8439), 1, + anon_sym_CARET, + ACTIONS(8443), 1, anon_sym_or, - ACTIONS(8421), 1, + ACTIONS(8445), 1, anon_sym_and, - ACTIONS(8423), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8425), 1, - anon_sym_QMARK, - STATE(2525), 1, + ACTIONS(8447), 1, + anon_sym_xor, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(6947), 2, + aux_sym_preproc_elif_token1, + sym_identifier, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8389), 2, + ACTIONS(8401), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8391), 2, + ACTIONS(8403), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8395), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(8399), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(8401), 2, + ACTIONS(8407), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8407), 2, + ACTIONS(8413), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8449), 2, - aux_sym_preproc_elif_token1, - sym_identifier, - ACTIONS(8403), 3, + ACTIONS(8437), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(8441), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(8409), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(8451), 5, + ACTIONS(6949), 7, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - [129480] = 7, - ACTIONS(3), 1, - sym_comment, - STATE(4316), 1, - sym_alignas_qualifier, - ACTIONS(8456), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4128), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(5049), 10, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(8453), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(5047), 15, - anon_sym_AMP, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [129539] = 20, + anon_sym_QMARK, + [132224] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1852), 1, + ACTIONS(1850), 1, anon_sym_operator, - ACTIONS(8429), 1, + ACTIONS(8421), 1, anon_sym_LPAREN2, - ACTIONS(8459), 1, + ACTIONS(8473), 1, sym_identifier, - ACTIONS(8461), 1, + ACTIONS(8475), 1, anon_sym_STAR, - ACTIONS(8463), 1, + ACTIONS(8477), 1, anon_sym_AMP_AMP, - ACTIONS(8465), 1, + ACTIONS(8479), 1, anon_sym_AMP, - STATE(4043), 1, + STATE(4069), 1, sym_ms_unaligned_ptr_modifier, - STATE(4289), 1, + STATE(4325), 1, sym_alignas_qualifier, - STATE(6677), 1, + STATE(6815), 1, sym__field_declarator, - STATE(6800), 1, + STATE(6943), 1, sym_operator_name, - STATE(8225), 1, + STATE(8112), 1, sym_ms_based_modifier, - ACTIONS(3329), 2, + ACTIONS(3337), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(3333), 2, + ACTIONS(3341), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3820), 2, + STATE(4212), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4873), 2, + STATE(4915), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3327), 3, + ACTIONS(3335), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(6399), 7, + STATE(6476), 7, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, @@ -407396,7 +413404,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_field_declarator, sym_reference_field_declarator, sym_template_method, - ACTIONS(3331), 13, + ACTIONS(3339), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -407410,176 +413418,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [129624] = 19, + [132309] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(7059), 1, + ACTIONS(5879), 1, + anon_sym___asm, + ACTIONS(7065), 1, anon_sym_const, - ACTIONS(7842), 1, + ACTIONS(7848), 1, anon_sym_LPAREN2, - ACTIONS(7856), 1, + ACTIONS(7862), 1, anon_sym_LBRACK, - ACTIONS(8107), 1, + ACTIONS(7885), 1, anon_sym_STAR, - ACTIONS(8109), 1, + ACTIONS(7887), 1, anon_sym_AMP_AMP, - ACTIONS(8111), 1, + ACTIONS(7889), 1, anon_sym_AMP, - ACTIONS(8189), 1, - sym_auto, - ACTIONS(8191), 1, - anon_sym_decltype, - STATE(2890), 1, + STATE(3010), 1, sym_parameter_list, - STATE(3992), 1, + STATE(4036), 1, sym_alignas_qualifier, - STATE(4633), 1, - sym_decltype_auto, - STATE(5792), 1, + STATE(5953), 1, sym__function_declarator_seq, - STATE(6284), 1, + STATE(6169), 1, sym__abstract_declarator, - ACTIONS(7061), 2, + ACTIONS(7067), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4297), 2, + STATE(3777), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(5804), 5, + STATE(5952), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8185), 9, + ACTIONS(5877), 11, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, anon_sym_final, anon_sym_override, - anon_sym_try, - anon_sym_requires, - ACTIONS(7046), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [129707] = 7, - ACTIONS(3), 1, - sym_comment, - STATE(4289), 1, - sym_alignas_qualifier, - ACTIONS(8470), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4131), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(5047), 12, - anon_sym_AMP, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___based, - sym_identifier, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_template, - anon_sym_operator, - anon_sym_try, anon_sym_requires, - ACTIONS(5049), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(8467), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [129766] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(8429), 1, - anon_sym_LPAREN2, - ACTIONS(8459), 1, - sym_identifier, - ACTIONS(8461), 1, - anon_sym_STAR, - ACTIONS(8463), 1, - anon_sym_AMP_AMP, - ACTIONS(8465), 1, - anon_sym_AMP, - STATE(4043), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4289), 1, - sym_alignas_qualifier, - STATE(6677), 1, - sym__field_declarator, - STATE(6800), 1, - sym_operator_name, - STATE(8225), 1, - sym_ms_based_modifier, - ACTIONS(3329), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(3333), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4134), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4873), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3327), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(6399), 7, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - sym_reference_field_declarator, - sym_template_method, - ACTIONS(3331), 13, + ACTIONS(7052), 12, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -407591,41 +413480,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [129851] = 11, + [132388] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3887), 1, + ACTIONS(3623), 1, anon_sym_LBRACE, - ACTIONS(6829), 1, - sym_auto, - ACTIONS(6831), 1, - anon_sym_decltype, - ACTIONS(8437), 1, + ACTIONS(8177), 1, anon_sym_LPAREN2, - ACTIONS(8439), 1, - anon_sym_LBRACK, - STATE(2677), 1, - sym_decltype_auto, - STATE(4369), 1, - sym_new_declarator, - STATE(4833), 2, + STATE(3920), 2, sym_argument_list, sym_initializer_list, - ACTIONS(5873), 11, + ACTIONS(6224), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, + anon_sym___attribute, anon_sym_DOT, - ACTIONS(5875), 23, + ACTIONS(6226), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -407633,7 +413512,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -407646,51 +413531,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [129918] = 20, + [132445] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1852), 1, + ACTIONS(1850), 1, anon_sym_operator, - ACTIONS(8429), 1, - anon_sym_LPAREN2, - ACTIONS(8459), 1, + ACTIONS(8419), 1, sym_identifier, - ACTIONS(8461), 1, + ACTIONS(8421), 1, + anon_sym_LPAREN2, + ACTIONS(8423), 1, anon_sym_STAR, - ACTIONS(8463), 1, + ACTIONS(8425), 1, anon_sym_AMP_AMP, - ACTIONS(8465), 1, + ACTIONS(8427), 1, anon_sym_AMP, - STATE(4043), 1, + STATE(4069), 1, sym_ms_unaligned_ptr_modifier, - STATE(4289), 1, + STATE(4325), 1, sym_alignas_qualifier, - STATE(6693), 1, + STATE(6229), 1, sym__field_declarator, - STATE(6800), 1, + STATE(6445), 1, sym_operator_name, - STATE(8225), 1, + STATE(8851), 1, sym_ms_based_modifier, - ACTIONS(3329), 2, + ACTIONS(3337), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(3333), 2, + ACTIONS(3341), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3820), 2, + STATE(3962), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4861), 2, + STATE(4933), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3327), 3, + ACTIONS(3335), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(6399), 7, + STATE(6476), 7, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, @@ -407698,7 +413582,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_field_declarator, sym_reference_field_declarator, sym_template_method, - ACTIONS(3331), 13, + ACTIONS(3339), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -407712,202 +413596,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [130003] = 6, + [132530] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3615), 1, - anon_sym_LBRACE, - ACTIONS(8147), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - STATE(3853), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6204), 10, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute, - anon_sym_DOT, - ACTIONS(6206), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - 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_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, + ACTIONS(6414), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(6418), 1, + anon_sym_DOT, + ACTIONS(8405), 1, + anon_sym_SLASH, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [130060] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3887), 1, - anon_sym_LBRACE, - ACTIONS(6829), 1, - sym_auto, - ACTIONS(6831), 1, - anon_sym_decltype, - ACTIONS(8437), 1, - anon_sym_LPAREN2, - ACTIONS(8439), 1, - anon_sym_LBRACK, - STATE(2677), 1, - sym_decltype_auto, - STATE(4341), 1, - sym_new_declarator, - STATE(4790), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(5869), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5871), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - 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_LT_LT, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [130127] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7059), 1, - anon_sym_const, - ACTIONS(7842), 1, - anon_sym_LPAREN2, - ACTIONS(7856), 1, - anon_sym_LBRACK, - ACTIONS(7886), 1, - anon_sym_STAR, - ACTIONS(7888), 1, - anon_sym_AMP_AMP, - ACTIONS(7890), 1, - anon_sym_AMP, - ACTIONS(8443), 1, - anon_sym___attribute, - STATE(2860), 1, - sym_parameter_list, - STATE(3992), 1, - sym_alignas_qualifier, - STATE(5792), 1, - sym__function_declarator_seq, - STATE(6054), 1, - sym__abstract_declarator, - ACTIONS(7061), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3727), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5804), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8441), 11, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - ACTIONS(7046), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [130206] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3615), 1, - anon_sym_LBRACE, - ACTIONS(8147), 1, - anon_sym_LPAREN2, - STATE(3843), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6263), 10, + ACTIONS(8401), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(8403), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6518), 13, + aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute, - anon_sym_DOT, - ACTIONS(6265), 29, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + sym_identifier, + ACTIONS(6520), 16, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, @@ -407916,60 +413652,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + [132601] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5845), 1, + anon_sym_LPAREN2, + ACTIONS(6414), 1, + anon_sym_LBRACK, + ACTIONS(6418), 1, + anon_sym_DOT, + ACTIONS(8405), 1, + anon_sym_SLASH, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + ACTIONS(6420), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8048), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8403), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6518), 15, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [130263] = 17, + sym_identifier, + ACTIONS(6520), 16, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + 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_LT, + anon_sym_GT_GT, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + [132670] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - anon_sym___attribute, - ACTIONS(7059), 1, + ACTIONS(7065), 1, anon_sym_const, - ACTIONS(7842), 1, + ACTIONS(7848), 1, anon_sym_LPAREN2, - ACTIONS(7856), 1, - anon_sym_LBRACK, - ACTIONS(7886), 1, + ACTIONS(7850), 1, anon_sym_STAR, - ACTIONS(7888), 1, + ACTIONS(7852), 1, anon_sym_AMP_AMP, - ACTIONS(7890), 1, + ACTIONS(7854), 1, anon_sym_AMP, - STATE(2860), 1, + ACTIONS(7862), 1, + anon_sym_LBRACK, + ACTIONS(8489), 1, + anon_sym___attribute, + STATE(2908), 1, sym_parameter_list, - STATE(3992), 1, + STATE(4036), 1, sym_alignas_qualifier, - STATE(5792), 1, + STATE(5953), 1, sym__function_declarator_seq, - STATE(6057), 1, + STATE(6139), 1, sym__abstract_declarator, - ACTIONS(7061), 2, + ACTIONS(7067), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3727), 2, + STATE(3777), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(5804), 5, + STATE(5952), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(5865), 11, + ACTIONS(8487), 11, anon_sym_COMMA, anon_sym_SEMI, anon_sym___attribute__, @@ -407981,7 +413760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - ACTIONS(7046), 12, + ACTIONS(7052), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -407994,56 +413773,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [130342] = 17, + [132749] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(7059), 1, + ACTIONS(7065), 1, anon_sym_const, - ACTIONS(7842), 1, + ACTIONS(7848), 1, anon_sym_LPAREN2, - ACTIONS(7856), 1, + ACTIONS(7862), 1, anon_sym_LBRACK, - ACTIONS(7886), 1, + ACTIONS(7885), 1, anon_sym_STAR, - ACTIONS(7888), 1, + ACTIONS(7887), 1, anon_sym_AMP_AMP, - ACTIONS(7890), 1, + ACTIONS(7889), 1, anon_sym_AMP, - ACTIONS(8447), 1, - anon_sym___attribute, - STATE(2860), 1, + ACTIONS(8455), 1, + anon_sym___asm, + STATE(3010), 1, sym_parameter_list, - STATE(3992), 1, + STATE(4036), 1, sym_alignas_qualifier, - STATE(5792), 1, + STATE(5953), 1, sym__function_declarator_seq, - STATE(6058), 1, + STATE(6170), 1, sym__abstract_declarator, - ACTIONS(7061), 2, + ACTIONS(7067), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3727), 2, + STATE(3777), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(5804), 5, + STATE(5952), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8445), 11, + ACTIONS(8453), 11, anon_sym_COMMA, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, anon_sym_final, anon_sym_override, - anon_sym_try, anon_sym_requires, - ACTIONS(7046), 12, + ACTIONS(7052), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -408056,60 +413835,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [130421] = 21, + [132828] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(3327), 1, - sym_ms_restrict_modifier, - ACTIONS(3331), 1, + ACTIONS(6783), 1, + anon_sym___asm, + ACTIONS(7065), 1, anon_sym_const, - ACTIONS(5012), 1, + ACTIONS(7848), 1, anon_sym_LPAREN2, - ACTIONS(8131), 1, + ACTIONS(7862), 1, anon_sym_LBRACK, - ACTIONS(8473), 1, + ACTIONS(7885), 1, anon_sym_STAR, - ACTIONS(8475), 1, + ACTIONS(7887), 1, anon_sym_AMP_AMP, - ACTIONS(8477), 1, + ACTIONS(7889), 1, anon_sym_AMP, - STATE(3053), 1, + STATE(3010), 1, sym_parameter_list, - STATE(4043), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4289), 1, + STATE(4036), 1, sym_alignas_qualifier, - STATE(6087), 1, + STATE(5953), 1, sym__function_declarator_seq, - STATE(6698), 1, + STATE(6171), 1, sym__abstract_declarator, - ACTIONS(8127), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(8129), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(8133), 2, + ACTIONS(7067), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3820), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4848), 2, + STATE(3777), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(5865), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - STATE(6092), 5, + STATE(5952), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8125), 12, + ACTIONS(6781), 11, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(7052), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -408122,57 +413897,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [130508] = 17, + [132907] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(6750), 1, - anon_sym___attribute, - ACTIONS(7059), 1, - anon_sym_const, - ACTIONS(7842), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(8421), 1, anon_sym_LPAREN2, - ACTIONS(7856), 1, - anon_sym_LBRACK, - ACTIONS(7886), 1, + ACTIONS(8473), 1, + sym_identifier, + ACTIONS(8475), 1, anon_sym_STAR, - ACTIONS(7888), 1, + ACTIONS(8477), 1, anon_sym_AMP_AMP, - ACTIONS(7890), 1, + ACTIONS(8479), 1, anon_sym_AMP, - STATE(2860), 1, - sym_parameter_list, - STATE(3992), 1, + STATE(4069), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4325), 1, sym_alignas_qualifier, - STATE(5792), 1, - sym__function_declarator_seq, - STATE(6059), 1, - sym__abstract_declarator, - ACTIONS(7061), 2, + STATE(6774), 1, + sym__field_declarator, + STATE(6943), 1, + sym_operator_name, + STATE(8112), 1, + sym_ms_based_modifier, + ACTIONS(3337), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3341), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3727), 2, + STATE(3962), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4918), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(5804), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6748), 11, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - ACTIONS(7046), 12, + ACTIONS(3335), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(6476), 7, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + sym_reference_field_declarator, + sym_template_method, + ACTIONS(3339), 13, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -408184,41 +413962,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [130587] = 11, + [132992] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3887), 1, + ACTIONS(3623), 1, anon_sym_LBRACE, - ACTIONS(6829), 1, - sym_auto, - ACTIONS(6831), 1, - anon_sym_decltype, - ACTIONS(8437), 1, + ACTIONS(8177), 1, anon_sym_LPAREN2, - ACTIONS(8439), 1, - anon_sym_LBRACK, - STATE(2677), 1, - sym_decltype_auto, - STATE(4329), 1, - sym_new_declarator, - STATE(4782), 2, + STATE(3926), 2, sym_argument_list, sym_initializer_list, - ACTIONS(5842), 11, + ACTIONS(6309), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, + anon_sym___attribute, anon_sym_DOT, - ACTIONS(5844), 23, + ACTIONS(6311), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -408226,7 +413994,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -408239,141 +414013,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [130654] = 20, + [133049] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(8427), 1, - sym_identifier, - ACTIONS(8429), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(8431), 1, - anon_sym_STAR, - ACTIONS(8433), 1, - anon_sym_AMP_AMP, + ACTIONS(6414), 1, + anon_sym_LBRACK, + ACTIONS(6418), 1, + anon_sym_DOT, + ACTIONS(8405), 1, + anon_sym_SLASH, + ACTIONS(8411), 1, + anon_sym_GT_EQ, + ACTIONS(8415), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8417), 1, + anon_sym_not_eq, ACTIONS(8435), 1, - anon_sym_AMP, - STATE(4043), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4289), 1, - sym_alignas_qualifier, - STATE(6106), 1, - sym__field_declarator, - STATE(6299), 1, - sym_operator_name, - STATE(8049), 1, - sym_ms_based_modifier, - ACTIONS(3329), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(3333), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4118), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4849), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3327), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(6399), 7, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - sym_reference_field_declarator, - sym_template_method, - ACTIONS(3331), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [130739] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3331), 1, - anon_sym_const, - ACTIONS(5012), 1, - anon_sym_LPAREN2, - ACTIONS(8119), 1, - anon_sym_STAR, - ACTIONS(8121), 1, anon_sym_AMP_AMP, - ACTIONS(8123), 1, + ACTIONS(8439), 1, + anon_sym_CARET, + ACTIONS(8445), 1, + anon_sym_and, + ACTIONS(8447), 1, + anon_sym_xor, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + ACTIONS(6420), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8048), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8401), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8403), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8407), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8413), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8437), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(8441), 2, anon_sym_AMP, - ACTIONS(8131), 1, - anon_sym_LBRACK, - ACTIONS(8187), 1, - anon_sym___attribute, - ACTIONS(8479), 1, - sym_auto, - ACTIONS(8481), 1, - anon_sym_decltype, - STATE(3088), 1, - sym_parameter_list, - STATE(4289), 1, - sym_alignas_qualifier, - STATE(4924), 1, - sym_decltype_auto, - STATE(6087), 1, - sym__function_declarator_seq, - STATE(6288), 1, - sym__abstract_declarator, - ACTIONS(8133), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4263), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6092), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8185), 8, + anon_sym_bitand, + ACTIONS(6518), 3, + aux_sym_preproc_elif_token1, + anon_sym_or, + sym_identifier, + ACTIONS(8409), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6520), 8, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - ACTIONS(8125), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [130824] = 3, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_QMARK, + [133144] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6570), 17, + ACTIONS(6634), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -408391,7 +414104,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6572), 26, + ACTIONS(6636), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -408418,60 +414131,251 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [130875] = 20, + [133195] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3331), 1, - anon_sym_const, - ACTIONS(5012), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(8119), 1, + ACTIONS(6414), 1, + anon_sym_LBRACK, + ACTIONS(6418), 1, + anon_sym_DOT, + ACTIONS(8405), 1, + anon_sym_SLASH, + ACTIONS(8411), 1, + anon_sym_GT_EQ, + ACTIONS(8415), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8417), 1, + anon_sym_not_eq, + ACTIONS(8433), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8435), 1, + anon_sym_AMP_AMP, + ACTIONS(8439), 1, + anon_sym_CARET, + ACTIONS(8443), 1, + anon_sym_or, + ACTIONS(8445), 1, + anon_sym_and, + ACTIONS(8447), 1, + anon_sym_xor, + ACTIONS(8449), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8451), 1, + anon_sym_QMARK, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + ACTIONS(6420), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8048), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8401), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8403), 2, anon_sym_STAR, - ACTIONS(8121), 1, + anon_sym_PERCENT, + ACTIONS(8407), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8413), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8437), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(8441), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(8491), 2, + aux_sym_preproc_elif_token1, + sym_identifier, + ACTIONS(8409), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(8493), 5, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + [133298] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5845), 1, + anon_sym_LPAREN2, + ACTIONS(6414), 1, + anon_sym_LBRACK, + ACTIONS(6418), 1, + anon_sym_DOT, + ACTIONS(8405), 1, + anon_sym_SLASH, + ACTIONS(8411), 1, + anon_sym_GT_EQ, + ACTIONS(8415), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8417), 1, + anon_sym_not_eq, + ACTIONS(8433), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8435), 1, anon_sym_AMP_AMP, - ACTIONS(8123), 1, + ACTIONS(8439), 1, + anon_sym_CARET, + ACTIONS(8443), 1, + anon_sym_or, + ACTIONS(8445), 1, + anon_sym_and, + ACTIONS(8447), 1, + anon_sym_xor, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + ACTIONS(6420), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6993), 2, + aux_sym_preproc_elif_token1, + sym_identifier, + ACTIONS(8048), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8401), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8403), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8407), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8413), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8437), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(8441), 2, anon_sym_AMP, - ACTIONS(8131), 1, + anon_sym_bitand, + ACTIONS(8409), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6995), 7, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_QMARK, + [133397] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5845), 1, + anon_sym_LPAREN2, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(8207), 1, - anon_sym___attribute, - ACTIONS(8479), 1, - sym_auto, - ACTIONS(8481), 1, - anon_sym_decltype, - STATE(3088), 1, - sym_parameter_list, - STATE(4289), 1, + ACTIONS(6418), 1, + anon_sym_DOT, + ACTIONS(8405), 1, + anon_sym_SLASH, + ACTIONS(8411), 1, + anon_sym_GT_EQ, + ACTIONS(8415), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8417), 1, + anon_sym_not_eq, + ACTIONS(8433), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8435), 1, + anon_sym_AMP_AMP, + ACTIONS(8439), 1, + anon_sym_CARET, + ACTIONS(8443), 1, + anon_sym_or, + ACTIONS(8445), 1, + anon_sym_and, + ACTIONS(8447), 1, + anon_sym_xor, + ACTIONS(8449), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8451), 1, + anon_sym_QMARK, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + ACTIONS(6420), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6989), 2, + aux_sym_preproc_elif_token1, + sym_identifier, + ACTIONS(8048), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8401), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8403), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8407), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8413), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8437), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(8441), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(8409), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6991), 5, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + [133500] = 7, + ACTIONS(3), 1, + sym_comment, + STATE(4321), 1, sym_alignas_qualifier, - STATE(4924), 1, - sym_decltype_auto, - STATE(6087), 1, - sym__function_declarator_seq, - STATE(6286), 1, - sym__abstract_declarator, - ACTIONS(8133), 2, + ACTIONS(8498), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4261), 2, + STATE(4205), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6092), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8205), 8, + ACTIONS(5057), 10, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym___attribute__, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_final, - anon_sym_override, anon_sym_GT2, - anon_sym_requires, - ACTIONS(8125), 12, + ACTIONS(8495), 13, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -408483,107 +414387,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [130960] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3615), 1, - anon_sym_LBRACE, - ACTIONS(8147), 1, - anon_sym_LPAREN2, - STATE(3896), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6172), 10, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(5055), 15, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute, - anon_sym_DOT, - ACTIONS(6174), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - 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_LT, - anon_sym_GT_GT, - anon_sym_SEMI, anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [131017] = 17, + anon_sym___attribute, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [133559] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(67), 1, + ACTIONS(7065), 1, anon_sym_const, - ACTIONS(7842), 1, + ACTIONS(7848), 1, anon_sym_LPAREN2, - ACTIONS(7856), 1, - anon_sym_LBRACK, - ACTIONS(7900), 1, + ACTIONS(7850), 1, anon_sym_STAR, - ACTIONS(7902), 1, + ACTIONS(7852), 1, anon_sym_AMP_AMP, - ACTIONS(7904), 1, + ACTIONS(7854), 1, anon_sym_AMP, - ACTIONS(8443), 1, - anon_sym___asm, - STATE(1658), 1, - sym_alignas_qualifier, - STATE(2885), 1, + ACTIONS(7862), 1, + anon_sym_LBRACK, + ACTIONS(8455), 1, + anon_sym___attribute, + STATE(2908), 1, sym_parameter_list, - STATE(5792), 1, + STATE(4036), 1, + sym_alignas_qualifier, + STATE(5953), 1, sym__function_declarator_seq, - STATE(6005), 1, + STATE(6148), 1, sym__abstract_declarator, - ACTIONS(7152), 2, + ACTIONS(7067), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1633), 2, + STATE(3777), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(5804), 5, + STATE(5952), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8441), 11, + ACTIONS(8453), 11, anon_sym_COMMA, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - ACTIONS(7145), 12, + ACTIONS(7052), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -408596,60 +414465,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [131096] = 21, + [133638] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(2999), 1, + anon_sym_TILDE, + ACTIONS(4310), 1, + anon_sym_LPAREN2, + ACTIONS(5861), 1, + sym_identifier, + ACTIONS(5865), 1, + anon_sym_STAR, + ACTIONS(5867), 1, + anon_sym_AMP_AMP, + ACTIONS(5869), 1, + anon_sym_AMP, + ACTIONS(5873), 1, + anon_sym_COLON_COLON, + ACTIONS(5875), 1, + anon_sym_LBRACK, + STATE(3109), 1, + sym_parameter_list, + STATE(5896), 1, + sym__scope_resolution, + STATE(6109), 1, + sym__function_declarator_seq, + STATE(6438), 1, + sym__declarator, + STATE(6664), 1, + sym__abstract_declarator, + STATE(8286), 1, + sym_ms_based_modifier, + ACTIONS(8362), 2, + anon_sym___attribute__, + anon_sym___attribute, + STATE(8569), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(8360), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_GT2, + STATE(6099), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(6145), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [133731] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3327), 1, + ACTIONS(3335), 1, sym_ms_restrict_modifier, - ACTIONS(3331), 1, + ACTIONS(3339), 1, anon_sym_const, - ACTIONS(5012), 1, + ACTIONS(5020), 1, anon_sym_LPAREN2, - ACTIONS(5014), 1, + ACTIONS(5022), 1, anon_sym_STAR, - ACTIONS(5016), 1, + ACTIONS(5024), 1, anon_sym_AMP_AMP, - ACTIONS(5018), 1, + ACTIONS(5026), 1, anon_sym_AMP, - ACTIONS(8131), 1, + ACTIONS(8147), 1, anon_sym_LBRACK, - STATE(3004), 1, + STATE(3113), 1, sym_parameter_list, - STATE(4043), 1, + STATE(4069), 1, sym_ms_unaligned_ptr_modifier, - STATE(4289), 1, + STATE(4325), 1, sym_alignas_qualifier, - STATE(6087), 1, + STATE(6109), 1, sym__function_declarator_seq, - STATE(6646), 1, + STATE(6792), 1, sym__abstract_declarator, - ACTIONS(8127), 2, + ACTIONS(8143), 2, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(8129), 2, + ACTIONS(8145), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(8133), 2, + ACTIONS(8149), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4162), 2, + STATE(4211), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4854), 2, + STATE(4935), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(5851), 4, + ACTIONS(5863), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LBRACE, - STATE(6092), 5, + STATE(6099), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8125), 12, + ACTIONS(8141), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -408662,44 +414600,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [131183] = 17, + [133818] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(67), 1, anon_sym_const, - ACTIONS(5867), 1, - anon_sym___asm, - ACTIONS(7842), 1, + ACTIONS(7848), 1, anon_sym_LPAREN2, - ACTIONS(7856), 1, + ACTIONS(7862), 1, anon_sym_LBRACK, - ACTIONS(7900), 1, + ACTIONS(7866), 1, anon_sym_STAR, - ACTIONS(7902), 1, + ACTIONS(7868), 1, anon_sym_AMP_AMP, - ACTIONS(7904), 1, + ACTIONS(7870), 1, anon_sym_AMP, - STATE(1658), 1, + ACTIONS(8489), 1, + anon_sym___asm, + STATE(1680), 1, sym_alignas_qualifier, - STATE(2885), 1, + STATE(3006), 1, sym_parameter_list, - STATE(5792), 1, + STATE(5953), 1, sym__function_declarator_seq, - STATE(6007), 1, + STATE(6188), 1, sym__abstract_declarator, - ACTIONS(7152), 2, + ACTIONS(7304), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1633), 2, + STATE(1669), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(5804), 5, + STATE(5952), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(5865), 11, + ACTIONS(8487), 11, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, @@ -408711,7 +414649,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - ACTIONS(7145), 12, + ACTIONS(7297), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -408724,118 +414662,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [131262] = 17, + [133897] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(7842), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(7856), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(7900), 1, + ACTIONS(6418), 1, + anon_sym_DOT, + ACTIONS(8405), 1, + anon_sym_SLASH, + ACTIONS(8411), 1, + anon_sym_GT_EQ, + ACTIONS(8415), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8417), 1, + anon_sym_not_eq, + ACTIONS(8439), 1, + anon_sym_CARET, + ACTIONS(8447), 1, + anon_sym_xor, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + ACTIONS(6420), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8048), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8401), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8403), 2, anon_sym_STAR, - ACTIONS(7902), 1, - anon_sym_AMP_AMP, - ACTIONS(7904), 1, + anon_sym_PERCENT, + ACTIONS(8407), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8413), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8437), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(8441), 2, anon_sym_AMP, - ACTIONS(8447), 1, - anon_sym___asm, - STATE(1658), 1, - sym_alignas_qualifier, - STATE(2885), 1, - sym_parameter_list, - STATE(5792), 1, - sym__function_declarator_seq, - STATE(6008), 1, - sym__abstract_declarator, - ACTIONS(7152), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1633), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5804), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8445), 11, + anon_sym_bitand, + ACTIONS(8409), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6518), 4, + aux_sym_preproc_elif_token1, + anon_sym_or, + anon_sym_and, + sym_identifier, + ACTIONS(6520), 9, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - ACTIONS(7145), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [131341] = 17, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_QMARK, + [133988] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(67), 1, + ACTIONS(3335), 1, + sym_ms_restrict_modifier, + ACTIONS(3339), 1, anon_sym_const, - ACTIONS(6750), 1, - anon_sym___asm, - ACTIONS(7842), 1, + ACTIONS(5020), 1, anon_sym_LPAREN2, - ACTIONS(7856), 1, - anon_sym_LBRACK, - ACTIONS(7900), 1, + ACTIONS(5022), 1, anon_sym_STAR, - ACTIONS(7902), 1, + ACTIONS(5024), 1, anon_sym_AMP_AMP, - ACTIONS(7904), 1, + ACTIONS(5026), 1, anon_sym_AMP, - STATE(1658), 1, - sym_alignas_qualifier, - STATE(2885), 1, + ACTIONS(8147), 1, + anon_sym_LBRACK, + STATE(3113), 1, sym_parameter_list, - STATE(5792), 1, + STATE(4069), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4325), 1, + sym_alignas_qualifier, + STATE(6109), 1, sym__function_declarator_seq, - STATE(6009), 1, + STATE(6754), 1, sym__abstract_declarator, - ACTIONS(7152), 2, + ACTIONS(8143), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8145), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(8149), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1633), 2, + STATE(3962), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4911), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(5804), 5, + ACTIONS(5877), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6099), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(6748), 11, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - ACTIONS(7145), 12, + ACTIONS(8141), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -408848,50 +414796,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [131420] = 20, + [134075] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1852), 1, + ACTIONS(1850), 1, anon_sym_operator, - ACTIONS(8429), 1, + ACTIONS(8421), 1, anon_sym_LPAREN2, - ACTIONS(8459), 1, + ACTIONS(8473), 1, sym_identifier, - ACTIONS(8461), 1, + ACTIONS(8475), 1, anon_sym_STAR, - ACTIONS(8463), 1, + ACTIONS(8477), 1, anon_sym_AMP_AMP, - ACTIONS(8465), 1, + ACTIONS(8479), 1, anon_sym_AMP, - STATE(4043), 1, + STATE(4069), 1, sym_ms_unaligned_ptr_modifier, - STATE(4289), 1, + STATE(4325), 1, sym_alignas_qualifier, - STATE(6688), 1, + STATE(6780), 1, sym__field_declarator, - STATE(6800), 1, + STATE(6943), 1, sym_operator_name, - STATE(8225), 1, + STATE(8112), 1, sym_ms_based_modifier, - ACTIONS(3329), 2, + ACTIONS(3337), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(3333), 2, + ACTIONS(3341), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4129), 2, + STATE(3962), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4851), 2, + STATE(4917), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3327), 3, + ACTIONS(3335), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(6399), 7, + STATE(6476), 7, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, @@ -408899,7 +414847,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_field_declarator, sym_reference_field_declarator, sym_template_method, - ACTIONS(3331), 13, + ACTIONS(3339), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -408913,60 +414861,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [131505] = 21, + [134160] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(5012), 1, - anon_sym_LPAREN2, - ACTIONS(5706), 1, + ACTIONS(3339), 1, anon_sym_const, - ACTIONS(8131), 1, - anon_sym_LBRACK, - ACTIONS(8373), 1, + ACTIONS(5020), 1, + anon_sym_LPAREN2, + ACTIONS(8135), 1, anon_sym_STAR, - ACTIONS(8375), 1, + ACTIONS(8137), 1, anon_sym_AMP_AMP, - ACTIONS(8377), 1, + ACTIONS(8139), 1, anon_sym_AMP, - ACTIONS(8381), 1, - sym_ms_restrict_modifier, - STATE(1695), 1, - sym_alignas_qualifier, - STATE(3370), 1, + ACTIONS(8147), 1, + anon_sym_LBRACK, + ACTIONS(8223), 1, + anon_sym___attribute, + ACTIONS(8501), 1, + sym_auto, + ACTIONS(8503), 1, + anon_sym_decltype, + STATE(3111), 1, sym_parameter_list, - STATE(5267), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6087), 1, + STATE(4325), 1, + sym_alignas_qualifier, + STATE(4985), 1, + sym_decltype_auto, + STATE(6109), 1, sym__function_declarator_seq, - STATE(6650), 1, + STATE(6413), 1, sym__abstract_declarator, - ACTIONS(8383), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(8385), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(8387), 2, + ACTIONS(8149), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4889), 2, + STATE(4329), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(5019), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(5865), 4, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - STATE(6092), 5, + STATE(6099), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8379), 12, + ACTIONS(8221), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(8141), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -408979,127 +414926,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [131592] = 24, + [134245] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(2979), 1, - anon_sym_TILDE, - ACTIONS(4298), 1, + ACTIONS(67), 1, + anon_sym_const, + ACTIONS(5879), 1, + anon_sym___asm, + ACTIONS(7848), 1, anon_sym_LPAREN2, - ACTIONS(5849), 1, - sym_identifier, - ACTIONS(5853), 1, + ACTIONS(7862), 1, + anon_sym_LBRACK, + ACTIONS(7866), 1, anon_sym_STAR, - ACTIONS(5855), 1, + ACTIONS(7868), 1, anon_sym_AMP_AMP, - ACTIONS(5857), 1, + ACTIONS(7870), 1, anon_sym_AMP, - ACTIONS(5861), 1, - anon_sym_COLON_COLON, - ACTIONS(5863), 1, - anon_sym_LBRACK, - STATE(3087), 1, + STATE(1680), 1, + sym_alignas_qualifier, + STATE(3006), 1, sym_parameter_list, - STATE(5860), 1, - sym__scope_resolution, - STATE(6087), 1, + STATE(5953), 1, sym__function_declarator_seq, - STATE(6319), 1, - sym__declarator, - STATE(6573), 1, + STATE(6096), 1, sym__abstract_declarator, - STATE(8106), 1, - sym_ms_based_modifier, - ACTIONS(8308), 2, - anon_sym___attribute__, - anon_sym___attribute, - STATE(8601), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(8306), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_GT2, - STATE(6092), 5, + ACTIONS(7304), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1669), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5952), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - STATE(5998), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [131685] = 20, + ACTIONS(5877), 11, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(7297), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [134324] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(8427), 1, - sym_identifier, - ACTIONS(8429), 1, - anon_sym_LPAREN2, - ACTIONS(8431), 1, - anon_sym_STAR, - ACTIONS(8433), 1, - anon_sym_AMP_AMP, - ACTIONS(8435), 1, - anon_sym_AMP, - STATE(4043), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4289), 1, + STATE(4325), 1, sym_alignas_qualifier, - STATE(6137), 1, - sym__field_declarator, - STATE(6299), 1, - sym_operator_name, - STATE(8049), 1, - sym_ms_based_modifier, - ACTIONS(3329), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(3333), 2, + ACTIONS(8508), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4165), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4898), 2, + STATE(4215), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3327), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(6399), 7, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - sym_reference_field_declarator, - sym_template_method, - ACTIONS(3331), 13, + ACTIONS(5055), 12, + anon_sym_AMP, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + ACTIONS(5057), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(8505), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -409113,209 +415040,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [131770] = 27, + [134383] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8393), 1, - anon_sym_SLASH, - ACTIONS(8397), 1, - anon_sym_CARET, ACTIONS(8405), 1, - anon_sym_GT_EQ, - ACTIONS(8409), 1, - anon_sym_LT_EQ_GT, + anon_sym_SLASH, ACTIONS(8411), 1, - anon_sym_xor, - ACTIONS(8413), 1, - anon_sym_not_eq, + anon_sym_GT_EQ, ACTIONS(8415), 1, - anon_sym_PIPE_PIPE, + anon_sym_LT_EQ_GT, ACTIONS(8417), 1, - anon_sym_AMP_AMP, - ACTIONS(8419), 1, - anon_sym_or, - ACTIONS(8421), 1, - anon_sym_and, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6933), 2, - aux_sym_preproc_elif_token1, - sym_identifier, - ACTIONS(8045), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8389), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8391), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8395), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(8399), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(8401), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8407), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8403), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6935), 7, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_QMARK, - [131869] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5827), 1, - anon_sym_LPAREN2, - ACTIONS(6429), 1, - anon_sym_LBRACK, - ACTIONS(6431), 1, - anon_sym_DOT, - ACTIONS(8393), 1, - anon_sym_SLASH, - ACTIONS(8397), 1, + anon_sym_not_eq, + ACTIONS(8439), 1, anon_sym_CARET, - ACTIONS(8405), 1, - anon_sym_GT_EQ, - ACTIONS(8409), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8411), 1, + ACTIONS(8447), 1, anon_sym_xor, - ACTIONS(8413), 1, - anon_sym_not_eq, - ACTIONS(8415), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8417), 1, - anon_sym_AMP_AMP, - ACTIONS(8419), 1, - anon_sym_or, - ACTIONS(8421), 1, - anon_sym_and, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6967), 2, - aux_sym_preproc_elif_token1, - sym_identifier, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8389), 2, + ACTIONS(8401), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8391), 2, + ACTIONS(8403), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8395), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(8399), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(8401), 2, + ACTIONS(8407), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8407), 2, + ACTIONS(8413), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8403), 3, + ACTIONS(8441), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(8409), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6969), 7, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_QMARK, - [131968] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6706), 17, + ACTIONS(6518), 6, aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, anon_sym_or, anon_sym_and, anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, sym_identifier, - ACTIONS(6708), 26, + ACTIONS(6520), 9, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [132019] = 6, + [134472] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3615), 1, + ACTIONS(3623), 1, anon_sym_LBRACE, - ACTIONS(8147), 1, + ACTIONS(8177), 1, anon_sym_LPAREN2, - STATE(3830), 2, + STATE(3952), 2, sym_argument_list, sym_initializer_list, - ACTIONS(6188), 10, + ACTIONS(6283), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -409326,7 +415128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym___attribute, anon_sym_DOT, - ACTIONS(6190), 29, + ACTIONS(6285), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -409356,60 +415158,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [132076] = 21, + [134529] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(3327), 1, - sym_ms_restrict_modifier, - ACTIONS(3331), 1, + ACTIONS(7065), 1, anon_sym_const, - ACTIONS(5012), 1, + ACTIONS(7848), 1, anon_sym_LPAREN2, - ACTIONS(5014), 1, + ACTIONS(7862), 1, + anon_sym_LBRACK, + ACTIONS(8151), 1, anon_sym_STAR, - ACTIONS(5016), 1, + ACTIONS(8153), 1, anon_sym_AMP_AMP, - ACTIONS(5018), 1, + ACTIONS(8155), 1, anon_sym_AMP, - ACTIONS(8131), 1, - anon_sym_LBRACK, - STATE(3004), 1, + ACTIONS(8217), 1, + sym_auto, + ACTIONS(8219), 1, + anon_sym_decltype, + STATE(2963), 1, sym_parameter_list, - STATE(4043), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4289), 1, + STATE(4036), 1, sym_alignas_qualifier, - STATE(6087), 1, + STATE(4730), 1, + sym_decltype_auto, + STATE(5953), 1, sym__function_declarator_seq, - STATE(6687), 1, + STATE(6409), 1, sym__abstract_declarator, - ACTIONS(8127), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(8129), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(8133), 2, + ACTIONS(7067), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3820), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4855), 2, + STATE(4360), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(5865), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6092), 5, + STATE(5952), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8125), 12, + ACTIONS(8213), 9, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(7052), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -409422,35 +415222,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [132163] = 3, + [134612] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(6694), 17, - aux_sym_preproc_elif_token1, + ACTIONS(5845), 1, + anon_sym_LPAREN2, + ACTIONS(6414), 1, + anon_sym_LBRACK, + ACTIONS(6418), 1, + anon_sym_DOT, + ACTIONS(8405), 1, + anon_sym_SLASH, + ACTIONS(8411), 1, + anon_sym_GT_EQ, + ACTIONS(8415), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8417), 1, + anon_sym_not_eq, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + ACTIONS(6420), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8048), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8401), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(8403), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8407), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8413), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8441), 2, anon_sym_AMP, + anon_sym_bitand, + ACTIONS(8409), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + ACTIONS(6518), 7, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, sym_identifier, - ACTIONS(6696), 26, + ACTIONS(6520), 10, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_QMARK, + [134697] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3623), 1, + anon_sym_LBRACE, + ACTIONS(8177), 1, anon_sym_LPAREN2, + STATE(3957), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6262), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute, + anon_sym_DOT, + ACTIONS(6264), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -409461,58 +415322,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_COLON, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [132214] = 19, + [134754] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(7059), 1, + ACTIONS(6783), 1, + anon_sym___attribute, + ACTIONS(7065), 1, anon_sym_const, - ACTIONS(7842), 1, + ACTIONS(7848), 1, anon_sym_LPAREN2, - ACTIONS(7856), 1, - anon_sym_LBRACK, - ACTIONS(8107), 1, + ACTIONS(7850), 1, anon_sym_STAR, - ACTIONS(8109), 1, + ACTIONS(7852), 1, anon_sym_AMP_AMP, - ACTIONS(8111), 1, + ACTIONS(7854), 1, anon_sym_AMP, - ACTIONS(8189), 1, - sym_auto, - ACTIONS(8191), 1, - anon_sym_decltype, - STATE(2890), 1, + ACTIONS(7862), 1, + anon_sym_LBRACK, + STATE(2908), 1, sym_parameter_list, - STATE(3992), 1, + STATE(4036), 1, sym_alignas_qualifier, - STATE(4633), 1, - sym_decltype_auto, - STATE(5792), 1, + STATE(5953), 1, sym__function_declarator_seq, - STATE(6300), 1, + STATE(6151), 1, sym__abstract_declarator, - ACTIONS(7061), 2, + ACTIONS(7067), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4298), 2, + STATE(3777), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(5804), 5, + STATE(5952), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8205), 9, + ACTIONS(6781), 11, + anon_sym_COMMA, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, @@ -409521,73 +415387,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - ACTIONS(7046), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [132297] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(8427), 1, - sym_identifier, - ACTIONS(8429), 1, - anon_sym_LPAREN2, - ACTIONS(8431), 1, - anon_sym_STAR, - ACTIONS(8433), 1, - anon_sym_AMP_AMP, - ACTIONS(8435), 1, - anon_sym_AMP, - STATE(4043), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4289), 1, - sym_alignas_qualifier, - STATE(6152), 1, - sym__field_declarator, - STATE(6299), 1, - sym_operator_name, - STATE(8049), 1, - sym_ms_based_modifier, - ACTIONS(3329), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(3333), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3820), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4842), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3327), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(6399), 7, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - sym_reference_field_declarator, - sym_template_method, - ACTIONS(3331), 13, + ACTIONS(7052), 12, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -409599,263 +415400,199 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [132382] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5827), 1, - anon_sym_LPAREN2, - ACTIONS(6429), 1, - anon_sym_LBRACK, - ACTIONS(6431), 1, - anon_sym_DOT, - ACTIONS(8393), 1, - anon_sym_SLASH, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8045), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8391), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6449), 15, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - sym_identifier, - ACTIONS(6451), 16, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - 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_LT, - anon_sym_GT_GT, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - [132451] = 27, + [134833] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8393), 1, - anon_sym_SLASH, - ACTIONS(8397), 1, - anon_sym_CARET, ACTIONS(8405), 1, + anon_sym_SLASH, + ACTIONS(8411), 1, anon_sym_GT_EQ, - ACTIONS(8409), 1, + ACTIONS(8415), 1, anon_sym_LT_EQ_GT, - ACTIONS(8411), 1, - anon_sym_xor, - ACTIONS(8413), 1, + ACTIONS(8417), 1, anon_sym_not_eq, - ACTIONS(8415), 1, + ACTIONS(8433), 1, anon_sym_PIPE_PIPE, - ACTIONS(8417), 1, + ACTIONS(8435), 1, anon_sym_AMP_AMP, - ACTIONS(8419), 1, + ACTIONS(8439), 1, + anon_sym_CARET, + ACTIONS(8443), 1, anon_sym_or, - ACTIONS(8421), 1, + ACTIONS(8445), 1, anon_sym_and, - STATE(2525), 1, + ACTIONS(8447), 1, + anon_sym_xor, + ACTIONS(8449), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8451), 1, + anon_sym_QMARK, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6987), 2, + ACTIONS(6997), 2, aux_sym_preproc_elif_token1, sym_identifier, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8389), 2, + ACTIONS(8401), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8391), 2, + ACTIONS(8403), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8395), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(8399), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(8401), 2, + ACTIONS(8407), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8407), 2, + ACTIONS(8413), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8403), 3, + ACTIONS(8437), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(8441), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(8409), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6989), 7, - anon_sym_DOT_DOT_DOT, + ACTIONS(6999), 5, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_QMARK, - [132550] = 29, + [134936] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(3339), 1, + anon_sym_const, + ACTIONS(5020), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, - anon_sym_LBRACK, - ACTIONS(6431), 1, - anon_sym_DOT, - ACTIONS(8393), 1, - anon_sym_SLASH, - ACTIONS(8397), 1, - anon_sym_CARET, - ACTIONS(8405), 1, - anon_sym_GT_EQ, - ACTIONS(8409), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8411), 1, - anon_sym_xor, - ACTIONS(8413), 1, - anon_sym_not_eq, - ACTIONS(8415), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8417), 1, - anon_sym_AMP_AMP, - ACTIONS(8419), 1, - anon_sym_or, - ACTIONS(8421), 1, - anon_sym_and, - ACTIONS(8423), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8425), 1, - anon_sym_QMARK, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6524), 2, - aux_sym_preproc_elif_token1, - sym_identifier, - ACTIONS(8045), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8389), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8391), 2, + ACTIONS(8135), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8395), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(8399), 2, + ACTIONS(8137), 1, + anon_sym_AMP_AMP, + ACTIONS(8139), 1, anon_sym_AMP, - anon_sym_bitand, - ACTIONS(8401), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8407), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8403), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6526), 5, + ACTIONS(8147), 1, + anon_sym_LBRACK, + ACTIONS(8215), 1, + anon_sym___attribute, + ACTIONS(8501), 1, + sym_auto, + ACTIONS(8503), 1, + anon_sym_decltype, + STATE(3111), 1, + sym_parameter_list, + STATE(4325), 1, + sym_alignas_qualifier, + STATE(4985), 1, + sym_decltype_auto, + STATE(6109), 1, + sym__function_declarator_seq, + STATE(6411), 1, + sym__abstract_declarator, + ACTIONS(8149), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4327), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6099), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8213), 8, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - [132653] = 21, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(8141), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [135021] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3327), 1, + ACTIONS(3335), 1, sym_ms_restrict_modifier, - ACTIONS(3331), 1, + ACTIONS(3339), 1, anon_sym_const, - ACTIONS(5012), 1, + ACTIONS(5020), 1, anon_sym_LPAREN2, - ACTIONS(8131), 1, + ACTIONS(8147), 1, anon_sym_LBRACK, - ACTIONS(8473), 1, + ACTIONS(8481), 1, anon_sym_STAR, - ACTIONS(8475), 1, + ACTIONS(8483), 1, anon_sym_AMP_AMP, - ACTIONS(8477), 1, + ACTIONS(8485), 1, anon_sym_AMP, - STATE(3053), 1, + STATE(3021), 1, sym_parameter_list, - STATE(4043), 1, + STATE(4069), 1, sym_ms_unaligned_ptr_modifier, - STATE(4289), 1, + STATE(4325), 1, sym_alignas_qualifier, - STATE(6087), 1, + STATE(6109), 1, sym__function_declarator_seq, - STATE(6682), 1, + STATE(6819), 1, sym__abstract_declarator, - ACTIONS(8127), 2, + ACTIONS(8143), 2, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(8129), 2, + ACTIONS(8145), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(8133), 2, + ACTIONS(8149), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4141), 2, + STATE(3962), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4875), 2, + STATE(4914), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(5851), 4, + ACTIONS(5877), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - STATE(6092), 5, + STATE(6099), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8125), 12, + ACTIONS(8141), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -409868,86 +415605,194 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [132740] = 25, + [135108] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(67), 1, + anon_sym_const, + ACTIONS(7848), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(7862), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, - anon_sym_DOT, - ACTIONS(8393), 1, - anon_sym_SLASH, - ACTIONS(8397), 1, - anon_sym_CARET, - ACTIONS(8405), 1, - anon_sym_GT_EQ, - ACTIONS(8409), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8411), 1, - anon_sym_xor, - ACTIONS(8413), 1, - anon_sym_not_eq, - ACTIONS(8417), 1, - anon_sym_AMP_AMP, - ACTIONS(8421), 1, - anon_sym_and, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8045), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8389), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8391), 2, + ACTIONS(8183), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8395), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(8399), 2, + ACTIONS(8185), 1, + anon_sym_AMP_AMP, + ACTIONS(8187), 1, anon_sym_AMP, - anon_sym_bitand, - ACTIONS(8401), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8407), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6449), 3, - aux_sym_preproc_elif_token1, - anon_sym_or, - sym_identifier, - ACTIONS(8403), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6451), 8, + ACTIONS(8242), 1, + sym_auto, + ACTIONS(8244), 1, + anon_sym_decltype, + STATE(1680), 1, + sym_alignas_qualifier, + STATE(2483), 1, + sym_decltype_auto, + STATE(3077), 1, + sym_parameter_list, + STATE(5953), 1, + sym__function_declarator_seq, + STATE(6513), 1, + sym__abstract_declarator, + ACTIONS(7304), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4385), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5952), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8221), 8, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(7297), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [135190] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(67), 1, + anon_sym_const, + STATE(1680), 1, + sym_alignas_qualifier, + ACTIONS(7304), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1669), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8513), 4, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(7297), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(8511), 20, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_QMARK, - [132835] = 3, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [135250] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(67), 1, + anon_sym_const, + ACTIONS(7848), 1, + anon_sym_LPAREN2, + ACTIONS(7862), 1, + anon_sym_LBRACK, + ACTIONS(8183), 1, + anon_sym_STAR, + ACTIONS(8185), 1, + anon_sym_AMP_AMP, + ACTIONS(8187), 1, + anon_sym_AMP, + ACTIONS(8242), 1, + sym_auto, + ACTIONS(8244), 1, + anon_sym_decltype, + STATE(1680), 1, + sym_alignas_qualifier, + STATE(2483), 1, + sym_decltype_auto, + STATE(3077), 1, + sym_parameter_list, + STATE(5953), 1, + sym__function_declarator_seq, + STATE(6470), 1, + sym__abstract_declarator, + ACTIONS(7304), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4435), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5952), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8213), 8, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(7297), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [135332] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6505), 5, + ACTIONS(6494), 5, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym_const, anon_sym___asm, - ACTIONS(6507), 37, + ACTIONS(6496), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -409985,231 +415830,177 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noexcept, anon_sym_throw, anon_sym_requires, - [132885] = 31, + [135382] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(5827), 1, + ACTIONS(3335), 1, + sym_ms_restrict_modifier, + ACTIONS(3339), 1, + anon_sym_const, + ACTIONS(5020), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(8147), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, - anon_sym_DOT, - ACTIONS(7147), 1, - anon_sym___attribute__, - ACTIONS(8423), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8483), 1, - anon_sym_COMMA, - ACTIONS(8489), 1, - anon_sym_SLASH, - ACTIONS(8495), 1, - anon_sym_PIPE, - ACTIONS(8499), 1, - anon_sym_AMP, - ACTIONS(8505), 1, - anon_sym_GT_EQ, - ACTIONS(8509), 1, - anon_sym_SEMI, - ACTIONS(8511), 1, - anon_sym_QMARK, - ACTIONS(8513), 1, - anon_sym_LT_EQ_GT, ACTIONS(8515), 1, - anon_sym_bitor, - ACTIONS(8517), 1, - anon_sym_bitand, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - STATE(6847), 1, - aux_sym_field_declaration_repeat1, - STATE(7941), 1, - sym_attribute_specifier, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8045), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8485), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8487), 2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8491), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8493), 2, + ACTIONS(8517), 1, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8497), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8507), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8501), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8503), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [132991] = 31, + ACTIONS(8519), 1, + anon_sym_AMP, + STATE(3195), 1, + sym_parameter_list, + STATE(4069), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4325), 1, + sym_alignas_qualifier, + STATE(6109), 1, + sym__function_declarator_seq, + STATE(6880), 1, + sym__abstract_declarator, + ACTIONS(8143), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8145), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(8149), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4232), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4976), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(5863), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + STATE(6099), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8141), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [135468] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(7147), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8483), 1, + ACTIONS(8521), 1, anon_sym_COMMA, - ACTIONS(8489), 1, + ACTIONS(8527), 1, anon_sym_SLASH, - ACTIONS(8495), 1, + ACTIONS(8533), 1, anon_sym_PIPE, - ACTIONS(8499), 1, + ACTIONS(8537), 1, anon_sym_AMP, - ACTIONS(8505), 1, + ACTIONS(8543), 1, anon_sym_GT_EQ, - ACTIONS(8511), 1, + ACTIONS(8547), 1, + anon_sym_SEMI, + ACTIONS(8549), 1, anon_sym_QMARK, - ACTIONS(8513), 1, + ACTIONS(8551), 1, anon_sym_LT_EQ_GT, - ACTIONS(8515), 1, + ACTIONS(8553), 1, anon_sym_bitor, - ACTIONS(8517), 1, + ACTIONS(8555), 1, anon_sym_bitand, - ACTIONS(8519), 1, - anon_sym_SEMI, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - STATE(6821), 1, + STATE(6892), 1, aux_sym_field_declaration_repeat1, - STATE(7957), 1, + STATE(8187), 1, sym_attribute_specifier, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8485), 2, + ACTIONS(8523), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8487), 2, + ACTIONS(8525), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8491), 2, + ACTIONS(8529), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8493), 2, + ACTIONS(8531), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8497), 2, + ACTIONS(8535), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8507), 2, + ACTIONS(8545), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8501), 3, + ACTIONS(8539), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8503), 3, + ACTIONS(8541), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [133097] = 4, + [135574] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(8521), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(6178), 10, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, + ACTIONS(43), 1, anon_sym___attribute, - anon_sym_DOT, - ACTIONS(6180), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, + ACTIONS(7027), 1, + anon_sym_LBRACE, + ACTIONS(7299), 1, anon_sym___attribute__, + ACTIONS(8557), 1, anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [133149] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(4058), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8523), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5900), 5, + STATE(2458), 1, + sym_attribute_specifier, + STATE(3546), 1, + sym__enum_base_clause, + STATE(3670), 1, + sym_enumerator_list, + ACTIONS(6393), 4, anon_sym_AMP, - anon_sym___attribute, anon_sym_LBRACK, anon_sym_const, anon_sym___asm, - ACTIONS(5898), 32, + ACTIONS(6395), 31, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, @@ -410230,59 +416021,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_try, anon_sym_requires, - [133203] = 19, + [135638] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(67), 1, + ACTIONS(3335), 1, + sym_ms_restrict_modifier, + ACTIONS(3339), 1, anon_sym_const, - ACTIONS(7842), 1, + ACTIONS(5020), 1, anon_sym_LPAREN2, - ACTIONS(7856), 1, + ACTIONS(8147), 1, anon_sym_LBRACK, - ACTIONS(8167), 1, + ACTIONS(8515), 1, anon_sym_STAR, - ACTIONS(8169), 1, + ACTIONS(8517), 1, anon_sym_AMP_AMP, - ACTIONS(8171), 1, + ACTIONS(8519), 1, anon_sym_AMP, - ACTIONS(8209), 1, - sym_auto, - ACTIONS(8211), 1, - anon_sym_decltype, - STATE(1658), 1, - sym_alignas_qualifier, - STATE(2504), 1, - sym_decltype_auto, - STATE(2991), 1, + STATE(3195), 1, sym_parameter_list, - STATE(5792), 1, + STATE(4069), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4325), 1, + sym_alignas_qualifier, + STATE(6109), 1, sym__function_declarator_seq, - STATE(6367), 1, + STATE(6834), 1, sym__abstract_declarator, - ACTIONS(7152), 2, + ACTIONS(8143), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8145), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(8149), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4406), 2, + STATE(3962), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4977), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(5804), 5, + ACTIONS(5877), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + STATE(6099), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8185), 8, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - ACTIONS(7145), 12, + ACTIONS(8141), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -410295,35 +416089,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [133285] = 3, + [135724] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(8527), 6, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(7027), 1, + anon_sym_LBRACE, + ACTIONS(7299), 1, + anon_sym___attribute__, + ACTIONS(8557), 1, + anon_sym_COLON, + STATE(2457), 1, + sym_attribute_specifier, + STATE(3547), 1, + sym__enum_base_clause, + STATE(3674), 1, + sym_enumerator_list, + ACTIONS(6316), 4, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(6318), 31, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(8525), 36, - anon_sym_AMP, + anon_sym_SEMI, anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - 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_LBRACK_LBRACK, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -410337,35 +416134,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_identifier, + anon_sym_asm, + anon_sym___asm__, + sym_auto, anon_sym_decltype, - anon_sym_explicit, - anon_sym_template, - anon_sym_operator, - [133335] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [135788] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(6463), 5, + ACTIONS(5732), 1, + sym_identifier, + ACTIONS(5736), 1, + sym_primitive_type, + STATE(1702), 1, + sym_alignas_qualifier, + STATE(4384), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(8564), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4242), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8562), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5096), 8, anon_sym_AMP, + anon_sym___attribute__, anon_sym___attribute, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(6465), 37, - anon_sym_DOT_DOT_DOT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(5094), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, anon_sym_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_static, - anon_sym_RBRACK, - anon_sym_EQ, + anon_sym_LBRACK, + ACTIONS(8559), 13, + anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -410377,110 +416198,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_noexcept, - anon_sym_throw, - anon_sym_requires, - [133385] = 31, + [135854] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(7147), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8483), 1, + ACTIONS(8521), 1, anon_sym_COMMA, - ACTIONS(8489), 1, + ACTIONS(8527), 1, anon_sym_SLASH, - ACTIONS(8495), 1, + ACTIONS(8533), 1, anon_sym_PIPE, - ACTIONS(8499), 1, + ACTIONS(8537), 1, anon_sym_AMP, - ACTIONS(8505), 1, + ACTIONS(8543), 1, anon_sym_GT_EQ, - ACTIONS(8511), 1, + ACTIONS(8549), 1, anon_sym_QMARK, - ACTIONS(8513), 1, + ACTIONS(8551), 1, anon_sym_LT_EQ_GT, - ACTIONS(8515), 1, + ACTIONS(8553), 1, anon_sym_bitor, - ACTIONS(8517), 1, + ACTIONS(8555), 1, anon_sym_bitand, - ACTIONS(8529), 1, + ACTIONS(8567), 1, anon_sym_SEMI, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - STATE(6806), 1, + STATE(6883), 1, aux_sym_field_declaration_repeat1, - STATE(8787), 1, + STATE(8107), 1, sym_attribute_specifier, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8485), 2, + ACTIONS(8523), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8487), 2, + ACTIONS(8525), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8491), 2, + ACTIONS(8529), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8493), 2, + ACTIONS(8531), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8497), 2, + ACTIONS(8535), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8507), 2, + ACTIONS(8545), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8501), 3, + ACTIONS(8539), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8503), 3, + ACTIONS(8541), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [133491] = 5, + [135960] = 5, ACTIONS(3), 1, sym_comment, - STATE(4192), 1, + STATE(4264), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(8531), 4, + ACTIONS(8569), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5938), 5, + ACTIONS(5968), 5, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym_const, anon_sym___asm, - ACTIONS(5936), 32, + ACTIONS(5966), 32, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -410513,23 +416322,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [133545] = 5, + [136014] = 5, ACTIONS(3), 1, sym_comment, - STATE(4193), 1, + STATE(4248), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(8533), 4, + ACTIONS(8571), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5932), 5, + ACTIONS(5515), 5, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym_const, anon_sym___asm, - ACTIONS(5930), 32, + ACTIONS(5517), 32, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -410562,171 +416371,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [133599] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(7842), 1, - anon_sym_LPAREN2, - ACTIONS(7856), 1, - anon_sym_LBRACK, - ACTIONS(8167), 1, - anon_sym_STAR, - ACTIONS(8169), 1, - anon_sym_AMP_AMP, - ACTIONS(8171), 1, - anon_sym_AMP, - ACTIONS(8209), 1, - sym_auto, - ACTIONS(8211), 1, - anon_sym_decltype, - STATE(1658), 1, - sym_alignas_qualifier, - STATE(2504), 1, - sym_decltype_auto, - STATE(2991), 1, - sym_parameter_list, - STATE(5792), 1, - sym__function_declarator_seq, - STATE(6368), 1, - sym__abstract_declarator, - ACTIONS(7152), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4333), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5804), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8205), 8, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - ACTIONS(7145), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [133681] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8521), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8535), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(6253), 10, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute, - anon_sym_DOT, - ACTIONS(6255), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [133735] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(67), 1, - anon_sym_const, - STATE(1658), 1, - sym_alignas_qualifier, - ACTIONS(7152), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1633), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8203), 4, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(7145), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(8201), 20, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_noexcept, - anon_sym_throw, - anon_sym_requires, - [133795] = 15, + [136068] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, @@ -410737,25 +416382,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___inline, ACTIONS(67), 1, anon_sym_const, - ACTIONS(7147), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - ACTIONS(8298), 1, + ACTIONS(8350), 1, anon_sym___declspec, - ACTIONS(8537), 1, + ACTIONS(8573), 1, anon_sym_virtual, - STATE(1658), 1, + STATE(1680), 1, sym_alignas_qualifier, - ACTIONS(6731), 2, + ACTIONS(6742), 2, anon_sym_AMP, anon_sym_LBRACK, - ACTIONS(7152), 2, + ACTIONS(7304), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(6733), 3, + ACTIONS(6744), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - STATE(4186), 7, + STATE(4240), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -410763,7 +416408,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(8296), 8, + ACTIONS(8348), 8, anon_sym_extern, anon_sym_static, anon_sym_register, @@ -410772,7 +416417,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - ACTIONS(7145), 12, + ACTIONS(7297), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -410785,36 +416430,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [133869] = 15, + [136142] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7724), 1, + STATE(4259), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(8575), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5887), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, anon_sym_const, - ACTIONS(7730), 1, + anon_sym___asm, + ACTIONS(5885), 32, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [136196] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7742), 1, + anon_sym_const, + ACTIONS(7748), 1, anon_sym___inline, - ACTIONS(7733), 1, + ACTIONS(7751), 1, anon_sym___attribute, - ACTIONS(8542), 1, + ACTIONS(8580), 1, anon_sym_virtual, - ACTIONS(8548), 1, + ACTIONS(8586), 1, anon_sym___attribute__, - ACTIONS(8551), 1, + ACTIONS(8589), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8554), 1, + ACTIONS(8592), 1, anon_sym___declspec, - STATE(1658), 1, + STATE(1680), 1, sym_alignas_qualifier, - ACTIONS(6756), 2, + ACTIONS(6749), 2, anon_sym_AMP, anon_sym_LBRACK, - ACTIONS(8557), 2, + ACTIONS(8595), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(6758), 3, + ACTIONS(6751), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - STATE(4186), 7, + STATE(4240), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -410822,7 +416516,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(8545), 8, + ACTIONS(8583), 8, anon_sym_extern, anon_sym_static, anon_sym_register, @@ -410831,7 +416525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - ACTIONS(8539), 12, + ACTIONS(8577), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -410844,20 +416538,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [133943] = 3, + [136270] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6402), 5, + STATE(4245), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(8598), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5974), 5, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym_const, anon_sym___asm, - ACTIONS(6404), 37, - anon_sym_DOT_DOT_DOT, + ACTIONS(5972), 32, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, @@ -410865,8 +416565,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_static, - anon_sym_RBRACK, anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, @@ -410883,172 +416581,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, anon_sym_asm, anon_sym___asm__, - anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_try, - anon_sym_noexcept, - anon_sym_throw, anon_sym_requires, - [133993] = 8, + [136324] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(67), 1, - anon_sym_const, - STATE(1658), 1, + ACTIONS(5670), 1, + sym_identifier, + ACTIONS(5674), 1, + sym_primitive_type, + STATE(1702), 1, sym_alignas_qualifier, - ACTIONS(7152), 2, + STATE(1938), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(8603), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1633), 2, + STATE(1676), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(8562), 4, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(7145), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(8560), 20, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_noexcept, - anon_sym_throw, - anon_sym_requires, - [134053] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4167), 1, - anon_sym_COLON_COLON, - ACTIONS(8564), 1, - anon_sym_LT, - STATE(4378), 1, - sym_template_argument_list, - STATE(4409), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(4144), 3, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(8566), 4, + ACTIONS(5672), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(4152), 31, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, + ACTIONS(5111), 8, + anon_sym_AMP, anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + anon_sym___attribute, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, anon_sym_requires, - [134113] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3327), 1, - sym_ms_restrict_modifier, - ACTIONS(3331), 1, - anon_sym_const, - ACTIONS(5012), 1, + ACTIONS(5109), 9, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(8131), 1, - anon_sym_LBRACK, - ACTIONS(8568), 1, anon_sym_STAR, - ACTIONS(8570), 1, anon_sym_AMP_AMP, - ACTIONS(8572), 1, - anon_sym_AMP, - STATE(3177), 1, - sym_parameter_list, - STATE(4043), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4289), 1, - sym_alignas_qualifier, - STATE(6087), 1, - sym__function_declarator_seq, - STATE(6763), 1, - sym__abstract_declarator, - ACTIONS(8127), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(8129), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(8133), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4211), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4907), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(5851), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_GT2, - STATE(6092), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8125), 12, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + ACTIONS(8600), 13, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -411060,18 +416642,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [134199] = 4, + [136390] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5454), 1, - anon_sym_COLON_COLON, - ACTIONS(5452), 5, + ACTIONS(8608), 1, anon_sym_LPAREN2, + ACTIONS(8610), 5, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(5450), 36, + ACTIONS(8606), 36, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -411104,27 +416686,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - sym_auto, anon_sym_decltype, + anon_sym_explicit, anon_sym_template, anon_sym_operator, - [134251] = 5, + [136442] = 5, ACTIONS(3), 1, sym_comment, - STATE(4058), 1, + STATE(4248), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(8523), 4, + ACTIONS(8571), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5944), 5, + ACTIONS(5776), 5, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym_const, anon_sym___asm, - ACTIONS(5942), 32, + ACTIONS(5778), 32, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -411157,23 +416739,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [134305] = 5, + [136496] = 5, ACTIONS(3), 1, sym_comment, - STATE(4058), 1, + STATE(4160), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(8523), 4, + ACTIONS(8612), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5896), 5, + ACTIONS(5988), 5, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym_const, anon_sym___asm, - ACTIONS(5894), 32, + ACTIONS(5986), 32, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -411206,34 +416788,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [134359] = 5, + [136550] = 17, ACTIONS(3), 1, sym_comment, - STATE(4206), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8574), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5904), 5, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, + ACTIONS(67), 1, anon_sym_const, - anon_sym___asm, - ACTIONS(5902), 32, - anon_sym_COMMA, + ACTIONS(7848), 1, anon_sym_LPAREN2, + ACTIONS(7862), 1, + anon_sym_LBRACK, + ACTIONS(7967), 1, anon_sym_STAR, + ACTIONS(7969), 1, anon_sym_AMP_AMP, + ACTIONS(7971), 1, + anon_sym_AMP, + ACTIONS(8489), 1, + anon_sym___asm, + STATE(1680), 1, + sym_alignas_qualifier, + STATE(3110), 1, + sym_parameter_list, + STATE(5953), 1, + sym__function_declarator_seq, + STATE(6239), 1, + sym__abstract_declarator, + ACTIONS(7304), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1669), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5952), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8487), 10, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(7297), 12, + anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -411245,33 +416849,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [134413] = 5, + [136628] = 5, ACTIONS(3), 1, sym_comment, - STATE(4207), 1, + STATE(4255), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(8576), 4, + ACTIONS(8614), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5922), 5, + ACTIONS(5935), 5, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym_const, anon_sym___asm, - ACTIONS(5920), 32, + ACTIONS(5933), 32, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -411304,23 +416898,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [134467] = 5, + [136682] = 5, ACTIONS(3), 1, sym_comment, - STATE(4058), 1, + STATE(4160), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(8523), 4, + ACTIONS(8612), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5928), 5, + ACTIONS(5921), 5, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym_const, anon_sym___asm, - ACTIONS(5926), 32, + ACTIONS(5919), 32, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -411353,54 +416947,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [134521] = 15, + [136736] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(4187), 1, + anon_sym_COLON_COLON, + ACTIONS(6580), 1, + anon_sym_LT, + STATE(1623), 1, + sym_template_argument_list, + STATE(4388), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6058), 3, + anon_sym_AMP, anon_sym___attribute, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(63), 1, - anon_sym___inline, - ACTIONS(67), 1, anon_sym_const, - ACTIONS(7147), 1, - anon_sym___attribute__, - ACTIONS(8298), 1, - anon_sym___declspec, - ACTIONS(8537), 1, - anon_sym_virtual, - STATE(1658), 1, - sym_alignas_qualifier, - ACTIONS(6741), 2, - anon_sym_AMP, - anon_sym_LBRACK, - ACTIONS(7152), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(6743), 3, + ACTIONS(8616), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6060), 31, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - STATE(4186), 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(8296), 8, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(7145), 12, + anon_sym_SEMI, anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -411412,23 +416990,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [134595] = 5, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [136796] = 5, ACTIONS(3), 1, sym_comment, - STATE(4203), 1, + STATE(4160), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(8578), 4, + ACTIONS(8612), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5750), 5, + ACTIONS(5931), 5, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym_const, anon_sym___asm, - ACTIONS(5752), 32, + ACTIONS(5929), 32, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -411461,12 +417048,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [134649] = 4, + [136850] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7081), 1, - sym_literal_suffix, - ACTIONS(4154), 17, + ACTIONS(7081), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -411484,7 +417069,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(4146), 24, + sym_literal_suffix, + ACTIONS(7083), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -411509,38 +417095,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [134701] = 8, + [136900] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4167), 1, - anon_sym_COLON_COLON, - ACTIONS(6630), 1, - anon_sym_LT, - STATE(1603), 1, - sym_template_argument_list, - STATE(4409), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5977), 3, + ACTIONS(8618), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6248), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym___attribute, - anon_sym_const, - ACTIONS(8566), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5979), 31, + anon_sym_DOT, + ACTIONS(6250), 30, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [136952] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8618), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8620), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6298), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute, + anon_sym_DOT, + ACTIONS(6300), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [137006] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8624), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(8622), 36, + anon_sym_AMP, anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - anon_sym_EQ, + anon_sym_static, + 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, @@ -411554,44 +417234,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_auto, + sym_identifier, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [134761] = 10, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [137056] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(6971), 1, - anon_sym_LBRACE, - ACTIONS(7147), 1, - anon_sym___attribute__, - ACTIONS(8580), 1, - anon_sym_COLON, - STATE(2509), 1, - sym_attribute_specifier, - STATE(3489), 1, - sym__enum_base_clause, - STATE(3613), 1, - sym_enumerator_list, - ACTIONS(6336), 4, + STATE(4160), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(8612), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5913), 5, anon_sym_AMP, + anon_sym___attribute, anon_sym_LBRACK, anon_sym_const, anon_sym___asm, - ACTIONS(6338), 31, + ACTIONS(5911), 32, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, + anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, @@ -411612,41 +417286,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_try, anon_sym_requires, - [134825] = 10, + [137110] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(6971), 1, - anon_sym_LBRACE, - ACTIONS(7147), 1, - anon_sym___attribute__, - ACTIONS(8580), 1, - anon_sym_COLON, - STATE(2469), 1, - sym_attribute_specifier, - STATE(3490), 1, - sym__enum_base_clause, - STATE(3616), 1, - sym_enumerator_list, - ACTIONS(6342), 4, - anon_sym_AMP, - anon_sym_LBRACK, + ACTIONS(67), 1, anon_sym_const, + ACTIONS(5879), 1, anon_sym___asm, - ACTIONS(6344), 31, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(7848), 1, anon_sym_LPAREN2, + ACTIONS(7862), 1, + anon_sym_LBRACK, + ACTIONS(7967), 1, anon_sym_STAR, + ACTIONS(7969), 1, anon_sym_AMP_AMP, + ACTIONS(7971), 1, + anon_sym_AMP, + STATE(1680), 1, + sym_alignas_qualifier, + STATE(3110), 1, + sym_parameter_list, + STATE(5953), 1, + sym__function_declarator_seq, + STATE(6241), 1, + sym__abstract_declarator, + ACTIONS(7304), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1669), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5952), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(5877), 10, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym___extension__, anon_sym_LBRACK_LBRACK, - anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(7297), 12, + anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -411658,34 +417349,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [134889] = 5, + [137188] = 5, ACTIONS(3), 1, sym_comment, - STATE(4058), 1, + STATE(4160), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(8523), 4, + ACTIONS(8612), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5890), 5, + ACTIONS(5893), 5, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym_const, anon_sym___asm, - ACTIONS(5888), 32, + ACTIONS(5891), 32, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -411718,18 +417398,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [134943] = 4, + [137242] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8584), 1, + ACTIONS(5519), 1, + anon_sym_COLON_COLON, + ACTIONS(5517), 5, anon_sym_LPAREN2, - ACTIONS(8586), 5, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(8582), 36, + ACTIONS(5515), 36, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -411762,74 +417442,304 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, + sym_auto, anon_sym_decltype, - anon_sym_explicit, anon_sym_template, anon_sym_operator, - [134995] = 3, + [137294] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7036), 18, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + STATE(4160), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(8612), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5953), 5, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - sym_literal_suffix, - ACTIONS(7038), 24, - anon_sym_DOT_DOT_DOT, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(5951), 32, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_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_LT, - anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [137348] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(67), 1, + anon_sym_const, + ACTIONS(7848), 1, + anon_sym_LPAREN2, + ACTIONS(7862), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + ACTIONS(7967), 1, + anon_sym_STAR, + ACTIONS(7969), 1, + anon_sym_AMP_AMP, + ACTIONS(7971), 1, + anon_sym_AMP, + ACTIONS(8455), 1, + anon_sym___asm, + STATE(1680), 1, + sym_alignas_qualifier, + STATE(3110), 1, + sym_parameter_list, + STATE(5953), 1, + sym__function_declarator_seq, + STATE(6242), 1, + sym__abstract_declarator, + ACTIONS(7304), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1669), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5952), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8453), 10, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(7297), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [137426] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(67), 1, + anon_sym_const, + ACTIONS(6783), 1, + anon_sym___asm, + ACTIONS(7848), 1, + anon_sym_LPAREN2, + ACTIONS(7862), 1, + anon_sym_LBRACK, + ACTIONS(7967), 1, + anon_sym_STAR, + ACTIONS(7969), 1, + anon_sym_AMP_AMP, + ACTIONS(7971), 1, + anon_sym_AMP, + STATE(1680), 1, + sym_alignas_qualifier, + STATE(3110), 1, + sym_parameter_list, + STATE(5953), 1, + sym__function_declarator_seq, + STATE(6243), 1, + sym__abstract_declarator, + ACTIONS(7304), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1669), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5952), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6781), 10, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(7297), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [137504] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6502), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(6504), 37, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, anon_sym_DASH_GT, - [135045] = 5, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [137554] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(63), 1, + anon_sym___inline, + ACTIONS(67), 1, + anon_sym_const, + ACTIONS(7299), 1, + anon_sym___attribute__, + ACTIONS(8350), 1, + anon_sym___declspec, + ACTIONS(8573), 1, + anon_sym_virtual, + STATE(1680), 1, + sym_alignas_qualifier, + ACTIONS(6734), 2, + anon_sym_AMP, + anon_sym_LBRACK, + ACTIONS(7304), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(6736), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + STATE(4240), 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(8348), 8, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + ACTIONS(7297), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [137628] = 5, ACTIONS(3), 1, sym_comment, - STATE(4058), 1, + STATE(4160), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(8523), 4, + ACTIONS(8612), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5910), 5, + ACTIONS(5980), 5, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym_const, anon_sym___asm, - ACTIONS(5908), 32, + ACTIONS(5978), 32, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -411862,26 +417772,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [135099] = 5, + [137682] = 8, ACTIONS(3), 1, sym_comment, - STATE(4058), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8523), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5918), 5, + ACTIONS(67), 1, + anon_sym_const, + STATE(1680), 1, + sym_alignas_qualifier, + ACTIONS(7304), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1669), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8248), 4, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(7297), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(8246), 20, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [137742] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5845), 1, + anon_sym_LPAREN2, + ACTIONS(6414), 1, + anon_sym_LBRACK, + ACTIONS(6418), 1, + anon_sym_DOT, + ACTIONS(7299), 1, + anon_sym___attribute__, + ACTIONS(8449), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8521), 1, + anon_sym_COMMA, + ACTIONS(8527), 1, + anon_sym_SLASH, + ACTIONS(8533), 1, + anon_sym_PIPE, + ACTIONS(8537), 1, + anon_sym_AMP, + ACTIONS(8543), 1, + anon_sym_GT_EQ, + ACTIONS(8549), 1, + anon_sym_QMARK, + ACTIONS(8551), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8553), 1, + anon_sym_bitor, + ACTIONS(8555), 1, + anon_sym_bitand, + ACTIONS(8626), 1, + anon_sym_SEMI, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + STATE(6905), 1, + aux_sym_field_declaration_repeat1, + STATE(8904), 1, + sym_attribute_specifier, + ACTIONS(6420), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8048), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8523), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8525), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8529), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8531), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8535), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8545), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8539), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8541), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [137848] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6506), 5, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym_const, anon_sym___asm, - ACTIONS(5916), 32, + ACTIONS(6508), 37, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, @@ -411889,6 +417920,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_static, + anon_sym_RBRACK, anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, @@ -411905,39 +417938,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, anon_sym_asm, anon_sym___asm__, - sym_auto, - anon_sym_decltype, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, anon_sym_requires, - [135153] = 5, + [137898] = 8, ACTIONS(3), 1, sym_comment, - STATE(4203), 1, + ACTIONS(4187), 1, + anon_sym_COLON_COLON, + ACTIONS(8628), 1, + anon_sym_LT, + STATE(4388), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(8578), 4, + STATE(4456), 1, + sym_template_argument_list, + ACTIONS(4164), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(8616), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5450), 5, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(5452), 32, + ACTIONS(4172), 31, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, @@ -411952,113 +417991,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_try, anon_sym_requires, - [135207] = 11, + [137958] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5744), 1, - sym_identifier, - ACTIONS(5748), 1, - sym_primitive_type, - STATE(1695), 1, - sym_alignas_qualifier, - STATE(4393), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8593), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4210), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8591), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5088), 8, + ACTIONS(7041), 1, + sym_literal_suffix, + ACTIONS(4174), 17, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym___attribute__, - anon_sym___attribute, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(5086), 9, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(4166), 24, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LBRACK, - ACTIONS(8588), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [135273] = 11, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [138010] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5814), 1, - sym_identifier, - ACTIONS(5818), 1, - sym_primitive_type, - STATE(1695), 1, - sym_alignas_qualifier, - STATE(1946), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8599), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1655), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(5816), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5102), 8, - anon_sym_AMP, + ACTIONS(5563), 1, + anon_sym_COLON, + ACTIONS(7283), 1, anon_sym___attribute__, + ACTIONS(7285), 1, anon_sym___attribute, - sym_auto, - anon_sym_decltype, + ACTIONS(8630), 1, + anon_sym_LBRACE, + STATE(4504), 1, + sym_field_declaration_list, + STATE(4650), 1, + sym_attribute_specifier, + STATE(7232), 1, + sym_virtual_specifier, + STATE(8021), 1, + sym_base_class_clause, + ACTIONS(6037), 2, anon_sym_final, anon_sym_override, - anon_sym_requires, - ACTIONS(5100), 9, + ACTIONS(5557), 4, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(5559), 27, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - ACTIONS(8596), 13, anon_sym___extension__, - anon_sym_const, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -412070,59 +418093,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [135339] = 21, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [138077] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3327), 1, - sym_ms_restrict_modifier, - ACTIONS(3331), 1, + ACTIONS(3339), 1, anon_sym_const, - ACTIONS(5012), 1, + ACTIONS(5020), 1, anon_sym_LPAREN2, - ACTIONS(8131), 1, + ACTIONS(6805), 1, + sym_auto, + ACTIONS(6807), 1, + anon_sym_decltype, + ACTIONS(8147), 1, anon_sym_LBRACK, - ACTIONS(8568), 1, + ACTIONS(8215), 1, + anon_sym___attribute, + ACTIONS(8250), 1, anon_sym_STAR, - ACTIONS(8570), 1, + ACTIONS(8252), 1, anon_sym_AMP_AMP, - ACTIONS(8572), 1, + ACTIONS(8254), 1, anon_sym_AMP, - STATE(3177), 1, + STATE(2741), 1, + sym_decltype_auto, + STATE(3371), 1, sym_parameter_list, - STATE(4043), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4289), 1, + STATE(4325), 1, sym_alignas_qualifier, - STATE(6087), 1, + STATE(6109), 1, sym__function_declarator_seq, - STATE(6760), 1, + STATE(6562), 1, sym__abstract_declarator, - ACTIONS(8127), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(8129), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(8133), 2, + ACTIONS(8149), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3820), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4901), 2, + STATE(4609), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(5865), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_GT2, - STATE(6092), 5, + STATE(6099), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8125), 12, + ACTIONS(8213), 6, + anon_sym_COMMA, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(8141), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -412135,58 +418164,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [135425] = 21, + [138160] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3327), 1, - sym_ms_restrict_modifier, - ACTIONS(3331), 1, + ACTIONS(3339), 1, anon_sym_const, - ACTIONS(5012), 1, + ACTIONS(5020), 1, anon_sym_LPAREN2, - ACTIONS(8131), 1, + ACTIONS(8147), 1, anon_sym_LBRACK, - ACTIONS(8602), 1, + ACTIONS(8179), 1, + sym_auto, + ACTIONS(8181), 1, + anon_sym_decltype, + ACTIONS(8223), 1, + anon_sym___attribute, + ACTIONS(8236), 1, anon_sym_STAR, - ACTIONS(8604), 1, + ACTIONS(8238), 1, anon_sym_AMP_AMP, - ACTIONS(8606), 1, + ACTIONS(8240), 1, anon_sym_AMP, - STATE(3405), 1, + STATE(1864), 1, + sym_decltype_auto, + STATE(3378), 1, sym_parameter_list, - STATE(4043), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4289), 1, + STATE(4325), 1, sym_alignas_qualifier, - STATE(6087), 1, + STATE(6109), 1, sym__function_declarator_seq, - STATE(6778), 1, + STATE(6586), 1, sym__abstract_declarator, - ACTIONS(5851), 2, - anon_sym_LBRACE, - anon_sym_requires, - ACTIONS(8127), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(8129), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(8133), 2, + ACTIONS(8149), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4216), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4958), 2, + STATE(4515), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6092), 5, + STATE(6099), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8125), 12, + ACTIONS(8221), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8141), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -412199,57 +418227,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [135510] = 20, + [138243] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3331), 1, + ACTIONS(3339), 1, anon_sym_const, - ACTIONS(5012), 1, + ACTIONS(5020), 1, anon_sym_LPAREN2, - ACTIONS(8131), 1, + ACTIONS(8147), 1, anon_sym_LBRACK, - ACTIONS(8149), 1, + ACTIONS(8179), 1, sym_auto, - ACTIONS(8151), 1, + ACTIONS(8181), 1, anon_sym_decltype, - ACTIONS(8187), 1, + ACTIONS(8215), 1, anon_sym___attribute, - ACTIONS(8216), 1, + ACTIONS(8236), 1, anon_sym_STAR, - ACTIONS(8218), 1, + ACTIONS(8238), 1, anon_sym_AMP_AMP, - ACTIONS(8220), 1, + ACTIONS(8240), 1, anon_sym_AMP, - STATE(1884), 1, + STATE(1864), 1, sym_decltype_auto, - STATE(3299), 1, + STATE(3378), 1, sym_parameter_list, - STATE(4289), 1, + STATE(4325), 1, sym_alignas_qualifier, - STATE(6087), 1, + STATE(6109), 1, sym__function_declarator_seq, - STATE(6516), 1, + STATE(6582), 1, sym__abstract_declarator, - ACTIONS(8133), 2, + ACTIONS(8149), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4487), 2, + STATE(4636), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6092), 5, + STATE(6099), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8185), 6, + ACTIONS(8213), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym___attribute__, anon_sym_final, anon_sym_override, anon_sym_requires, - ACTIONS(8125), 12, + ACTIONS(8141), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -412262,15 +418290,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [135593] = 5, + [138326] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8608), 1, + ACTIONS(5170), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_DOT, + ACTIONS(5172), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(8610), 1, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, anon_sym_and, - ACTIONS(6178), 16, - aux_sym_preproc_elif_token1, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [138375] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6218), 1, + sym_identifier, + ACTIONS(6222), 1, + sym_primitive_type, + STATE(2313), 1, + sym_alignas_qualifier, + STATE(2367), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(8635), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1940), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6220), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5109), 8, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_GT2, + ACTIONS(5111), 8, + anon_sym_AMP, + anon_sym___attribute__, + anon_sym___attribute, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8632), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [138440] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7081), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -412280,87 +418403,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_or, + anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(6180), 23, + sym_literal_suffix, + ACTIONS(7083), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [135646] = 20, + [138489] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3331), 1, + ACTIONS(3335), 1, + sym_ms_restrict_modifier, + ACTIONS(3339), 1, anon_sym_const, - ACTIONS(5012), 1, + ACTIONS(5020), 1, anon_sym_LPAREN2, - ACTIONS(8131), 1, + ACTIONS(8147), 1, anon_sym_LBRACK, - ACTIONS(8149), 1, - sym_auto, - ACTIONS(8151), 1, - anon_sym_decltype, - ACTIONS(8207), 1, - anon_sym___attribute, - ACTIONS(8216), 1, + ACTIONS(8638), 1, anon_sym_STAR, - ACTIONS(8218), 1, + ACTIONS(8640), 1, anon_sym_AMP_AMP, - ACTIONS(8220), 1, + ACTIONS(8642), 1, anon_sym_AMP, - STATE(1884), 1, - sym_decltype_auto, - STATE(3299), 1, + STATE(3510), 1, sym_parameter_list, - STATE(4289), 1, + STATE(4069), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4325), 1, sym_alignas_qualifier, - STATE(6087), 1, + STATE(6109), 1, sym__function_declarator_seq, - STATE(6450), 1, + STATE(6924), 1, sym__abstract_declarator, - ACTIONS(8133), 2, + ACTIONS(5863), 2, + anon_sym_LBRACE, + anon_sym_requires, + ACTIONS(8143), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8145), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(8149), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4467), 2, + STATE(4278), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5040), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6092), 5, + STATE(6099), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8205), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(8125), 12, + ACTIONS(8141), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -412373,58 +418500,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [135729] = 21, + [138574] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3327), 1, + ACTIONS(3335), 1, sym_ms_restrict_modifier, - ACTIONS(3331), 1, + ACTIONS(3339), 1, anon_sym_const, - ACTIONS(5012), 1, + ACTIONS(5020), 1, anon_sym_LPAREN2, - ACTIONS(8131), 1, + ACTIONS(8147), 1, anon_sym_LBRACK, - ACTIONS(8602), 1, + ACTIONS(8638), 1, anon_sym_STAR, - ACTIONS(8604), 1, + ACTIONS(8640), 1, anon_sym_AMP_AMP, - ACTIONS(8606), 1, + ACTIONS(8642), 1, anon_sym_AMP, - STATE(3405), 1, + STATE(3510), 1, sym_parameter_list, - STATE(4043), 1, + STATE(4069), 1, sym_ms_unaligned_ptr_modifier, - STATE(4289), 1, + STATE(4325), 1, sym_alignas_qualifier, - STATE(6087), 1, + STATE(6109), 1, sym__function_declarator_seq, - STATE(6789), 1, + STATE(6900), 1, sym__abstract_declarator, - ACTIONS(5865), 2, + ACTIONS(5877), 2, anon_sym_LBRACE, anon_sym_requires, - ACTIONS(8127), 2, + ACTIONS(8143), 2, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(8129), 2, + ACTIONS(8145), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(8133), 2, + ACTIONS(8149), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3820), 2, + STATE(3962), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4963), 2, + STATE(5030), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6092), 5, + STATE(6099), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8125), 12, + ACTIONS(8141), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -412437,17 +418564,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [135814] = 5, + [138659] = 5, ACTIONS(3), 1, sym_comment, - STATE(4217), 1, + ACTIONS(8644), 1, + anon_sym_AMP_AMP, + ACTIONS(8646), 1, + anon_sym_and, + ACTIONS(6248), 16, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_or, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(6250), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [138712] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5192), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_DOT, + ACTIONS(5194), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [138761] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5200), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_DOT, + ACTIONS(5202), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [138810] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4282), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(8612), 4, + ACTIONS(8648), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5072), 10, + ACTIONS(5080), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -412458,7 +418725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5070), 26, + ACTIONS(5078), 26, anon_sym_AMP, anon_sym___extension__, anon_sym___attribute__, @@ -412485,125 +418752,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [135867] = 12, + [138863] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5499), 1, - anon_sym_COLON, - ACTIONS(7083), 1, - anon_sym___attribute__, - ACTIONS(7085), 1, - anon_sym___attribute, - ACTIONS(8615), 1, - anon_sym_LBRACE, - STATE(4537), 1, - sym_field_declaration_list, - STATE(4733), 1, - sym_attribute_specifier, - STATE(7096), 1, - sym_virtual_specifier, - STATE(7811), 1, - sym_base_class_clause, - ACTIONS(6020), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5493), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(5495), 27, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - sym_auto, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(1978), 1, anon_sym_decltype, - anon_sym_try, - anon_sym_requires, - [135934] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(7842), 1, + ACTIONS(2999), 1, + anon_sym_TILDE, + ACTIONS(4310), 1, anon_sym_LPAREN2, - ACTIONS(7856), 1, + ACTIONS(5861), 1, + sym_identifier, + ACTIONS(5873), 1, + anon_sym_COLON_COLON, + ACTIONS(5875), 1, anon_sym_LBRACK, - ACTIONS(7982), 1, + ACTIONS(5998), 1, anon_sym_STAR, - ACTIONS(7984), 1, + ACTIONS(6000), 1, anon_sym_AMP_AMP, - ACTIONS(7986), 1, + ACTIONS(6002), 1, anon_sym_AMP, - ACTIONS(8443), 1, - anon_sym___attribute, - STATE(1658), 1, - sym_alignas_qualifier, - STATE(3007), 1, + STATE(3357), 1, sym_parameter_list, - STATE(5792), 1, + STATE(5896), 1, + sym__scope_resolution, + STATE(6109), 1, sym__function_declarator_seq, - STATE(6223), 1, + STATE(6438), 1, + sym__declarator, + STATE(6761), 1, sym__abstract_declarator, - ACTIONS(7152), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1633), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5804), 5, + STATE(8286), 1, + sym_ms_based_modifier, + ACTIONS(8360), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(8362), 2, + anon_sym___attribute__, + anon_sym___attribute, + STATE(8569), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6099), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8441), 9, + STATE(6145), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [138954] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5140), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_DOT, + ACTIONS(5142), 29, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_requires, - ACTIONS(7145), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [136011] = 3, + [139003] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5192), 12, + ACTIONS(5180), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -412616,7 +418881,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute, anon_sym_DOT, - ACTIONS(5194), 29, + ACTIONS(5182), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -412646,10 +418911,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [136060] = 3, + [139052] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5162), 12, + ACTIONS(5144), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -412662,7 +418927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute, anon_sym_DOT, - ACTIONS(5164), 29, + ACTIONS(5146), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -412692,10 +418957,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [136109] = 3, + [139101] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5148), 12, + ACTIONS(5184), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -412708,7 +418973,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute, anon_sym_DOT, - ACTIONS(5150), 29, + ACTIONS(5186), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -412738,44 +419003,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [136158] = 17, + [139150] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8644), 1, + anon_sym_AMP_AMP, + ACTIONS(8646), 1, + anon_sym_and, + ACTIONS(8651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8653), 1, + anon_sym_or, + ACTIONS(6298), 15, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(6300), 22, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [139207] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(67), 1, anon_sym_const, - ACTIONS(5867), 1, - anon_sym___attribute, - ACTIONS(7842), 1, + ACTIONS(7848), 1, anon_sym_LPAREN2, - ACTIONS(7856), 1, + ACTIONS(7862), 1, anon_sym_LBRACK, - ACTIONS(7982), 1, + ACTIONS(8113), 1, anon_sym_STAR, - ACTIONS(7984), 1, + ACTIONS(8115), 1, anon_sym_AMP_AMP, - ACTIONS(7986), 1, + ACTIONS(8117), 1, anon_sym_AMP, - STATE(1658), 1, + ACTIONS(8489), 1, + anon_sym___attribute, + STATE(1680), 1, sym_alignas_qualifier, - STATE(3007), 1, + STATE(3112), 1, sym_parameter_list, - STATE(5792), 1, + STATE(5953), 1, sym__function_declarator_seq, - STATE(6262), 1, + STATE(6334), 1, sym__abstract_declarator, - ACTIONS(7152), 2, + ACTIONS(7304), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1633), 2, + STATE(1669), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(5804), 5, + STATE(5952), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(5865), 9, + ACTIONS(8487), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym___attribute__, @@ -412785,8 +419100,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - ACTIONS(7145), 12, + ACTIONS(7297), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [139284] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(4282), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5078), 2, + sym_primitive_type, + sym_identifier, + ACTIONS(8648), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5167), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5164), 24, + anon_sym_AMP, anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -412798,44 +419154,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [136235] = 17, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [139339] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(67), 1, anon_sym_const, - ACTIONS(7842), 1, + ACTIONS(7848), 1, anon_sym_LPAREN2, - ACTIONS(7856), 1, + ACTIONS(7862), 1, anon_sym_LBRACK, - ACTIONS(7982), 1, + ACTIONS(8113), 1, anon_sym_STAR, - ACTIONS(7984), 1, + ACTIONS(8115), 1, anon_sym_AMP_AMP, - ACTIONS(7986), 1, + ACTIONS(8117), 1, anon_sym_AMP, - ACTIONS(8447), 1, + ACTIONS(8455), 1, anon_sym___attribute, - STATE(1658), 1, + STATE(1680), 1, sym_alignas_qualifier, - STATE(3007), 1, + STATE(3112), 1, sym_parameter_list, - STATE(5792), 1, + STATE(5953), 1, sym__function_declarator_seq, - STATE(6266), 1, + STATE(6336), 1, sym__abstract_declarator, - ACTIONS(7152), 2, + ACTIONS(7304), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1633), 2, + STATE(1669), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(5804), 5, + STATE(5952), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8445), 9, + ACTIONS(8453), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym___attribute__, @@ -412845,7 +419209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - ACTIONS(7145), 12, + ACTIONS(7297), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -412858,44 +419222,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [136312] = 17, + [139416] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(67), 1, anon_sym_const, - ACTIONS(6750), 1, + ACTIONS(6783), 1, anon_sym___attribute, - ACTIONS(7842), 1, + ACTIONS(7848), 1, anon_sym_LPAREN2, - ACTIONS(7856), 1, + ACTIONS(7862), 1, anon_sym_LBRACK, - ACTIONS(7982), 1, + ACTIONS(8113), 1, anon_sym_STAR, - ACTIONS(7984), 1, + ACTIONS(8115), 1, anon_sym_AMP_AMP, - ACTIONS(7986), 1, + ACTIONS(8117), 1, anon_sym_AMP, - STATE(1658), 1, + STATE(1680), 1, sym_alignas_qualifier, - STATE(3007), 1, + STATE(3112), 1, sym_parameter_list, - STATE(5792), 1, + STATE(5953), 1, sym__function_declarator_seq, - STATE(6173), 1, + STATE(6337), 1, sym__abstract_declarator, - ACTIONS(7152), 2, + ACTIONS(7304), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1633), 2, + STATE(1669), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(5804), 5, + STATE(5952), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(6748), 9, + ACTIONS(6781), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym___attribute__, @@ -412905,7 +419269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - ACTIONS(7145), 12, + ACTIONS(7297), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -412918,173 +419282,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [136389] = 5, + [139493] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(5005), 1, - anon_sym_LBRACK, - ACTIONS(5000), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(5003), 4, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - ACTIONS(4996), 34, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, + ACTIONS(3339), 1, anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, + ACTIONS(5020), 1, + anon_sym_LPAREN2, + ACTIONS(8147), 1, + anon_sym_LBRACK, + ACTIONS(8179), 1, sym_auto, + ACTIONS(8181), 1, anon_sym_decltype, - anon_sym_operator, - [136442] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5132), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_DOT, - ACTIONS(5134), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(8230), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(8232), 1, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [136491] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5140), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(8234), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_DOT, - ACTIONS(5142), 29, - anon_sym_DOT_DOT_DOT, + STATE(1864), 1, + sym_decltype_auto, + STATE(3086), 1, + sym_parameter_list, + STATE(4325), 1, + sym_alignas_qualifier, + STATE(6109), 1, + sym__function_declarator_seq, + STATE(6626), 1, + sym__abstract_declarator, + ACTIONS(8149), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4478), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6099), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8213), 7, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [136540] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4167), 1, - anon_sym_COLON_COLON, - ACTIONS(8564), 1, - anon_sym_LT, - STATE(4378), 1, - sym_template_argument_list, - ACTIONS(4963), 4, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_const, - ACTIONS(4970), 34, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(8141), 12, anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -413096,116 +419344,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_or, - anon_sym_and, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [136595] = 3, + [139574] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5152), 12, + ACTIONS(7041), 1, + sym_literal_suffix, + ACTIONS(4174), 15, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_DOT, - ACTIONS(5154), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [136644] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4167), 1, - anon_sym_COLON_COLON, - ACTIONS(8564), 1, - anon_sym_LT, - STATE(4378), 1, - sym_template_argument_list, - ACTIONS(5838), 4, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_const, - ACTIONS(4172), 34, + anon_sym_DOT, + ACTIONS(4166), 25, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_or, - anon_sym_and, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [136699] = 3, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [139625] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 12, + ACTIONS(5196), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -413218,7 +419407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute, anon_sym_DOT, - ACTIONS(1934), 29, + ACTIONS(5198), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -413248,10 +419437,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [136748] = 3, + [139674] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5166), 12, + ACTIONS(5196), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -413264,7 +419453,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute, anon_sym_DOT, - ACTIONS(5168), 29, + ACTIONS(5198), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -413294,57 +419483,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [136797] = 19, + [139723] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3331), 1, - anon_sym_const, - ACTIONS(5012), 1, - anon_sym_LPAREN2, - ACTIONS(8131), 1, + ACTIONS(4993), 1, anon_sym_LBRACK, - ACTIONS(8228), 1, + ACTIONS(4988), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(4991), 4, anon_sym_STAR, - ACTIONS(8230), 1, anon_sym_AMP_AMP, - ACTIONS(8232), 1, - anon_sym_AMP, - ACTIONS(8479), 1, - sym_auto, - ACTIONS(8481), 1, - anon_sym_decltype, - STATE(2998), 1, - sym_parameter_list, - STATE(4289), 1, - sym_alignas_qualifier, - STATE(4924), 1, - sym_decltype_auto, - STATE(6087), 1, - sym__function_declarator_seq, - STATE(6407), 1, - sym__abstract_declarator, - ACTIONS(8133), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4572), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6092), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8205), 7, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - ACTIONS(8125), 12, + anon_sym_COLON_COLON, + ACTIONS(4984), 34, + anon_sym_AMP, anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + 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, @@ -413356,48 +419525,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [136878] = 19, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_operator, + [139776] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(3331), 1, + ACTIONS(3339), 1, anon_sym_const, - ACTIONS(5012), 1, + ACTIONS(5020), 1, anon_sym_LPAREN2, - ACTIONS(8131), 1, + ACTIONS(8147), 1, anon_sym_LBRACK, - ACTIONS(8149), 1, + ACTIONS(8179), 1, sym_auto, - ACTIONS(8151), 1, + ACTIONS(8181), 1, anon_sym_decltype, - ACTIONS(8195), 1, + ACTIONS(8230), 1, anon_sym_STAR, - ACTIONS(8197), 1, + ACTIONS(8232), 1, anon_sym_AMP_AMP, - ACTIONS(8199), 1, + ACTIONS(8234), 1, anon_sym_AMP, - STATE(1884), 1, + STATE(1864), 1, sym_decltype_auto, - STATE(2994), 1, + STATE(3086), 1, sym_parameter_list, - STATE(4289), 1, + STATE(4325), 1, sym_alignas_qualifier, - STATE(6087), 1, + STATE(6109), 1, sym__function_declarator_seq, - STATE(6507), 1, + STATE(6628), 1, sym__abstract_declarator, - ACTIONS(8133), 2, + ACTIONS(8149), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4442), 2, + STATE(4495), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6092), 5, + STATE(6099), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8205), 7, + ACTIONS(8221), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -413405,7 +419580,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - ACTIONS(8125), 12, + ACTIONS(8141), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -413418,10 +419593,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [136959] = 3, + [139857] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1940), 12, + ACTIONS(5156), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -413434,7 +419609,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute, anon_sym_DOT, - ACTIONS(1938), 29, + ACTIONS(5158), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -413464,10 +419639,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [137008] = 3, + [139906] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5180), 12, + ACTIONS(5148), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -413480,7 +419655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute, anon_sym_DOT, - ACTIONS(5182), 29, + ACTIONS(5150), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -413510,113 +419685,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [137057] = 6, + [139955] = 3, ACTIONS(3), 1, sym_comment, - STATE(4217), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5070), 2, - sym_primitive_type, - sym_identifier, - ACTIONS(8612), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5156), 10, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5159), 24, + ACTIONS(5152), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym___extension__, - anon_sym___attribute__, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, anon_sym___attribute, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [137112] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6048), 1, - sym_identifier, - ACTIONS(6056), 1, - sym_primitive_type, - STATE(2229), 1, - sym_alignas_qualifier, - STATE(4488), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8622), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4247), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8620), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5086), 8, + anon_sym_DOT, + ACTIONS(5154), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_GT2, - ACTIONS(5088), 8, - anon_sym_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym___attribute__, - anon_sym___attribute, - sym_auto, - anon_sym_decltype, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - ACTIONS(8617), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [137177] = 3, + [140004] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5170), 12, + ACTIONS(5196), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -413629,7 +419747,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute, anon_sym_DOT, - ACTIONS(5172), 29, + ACTIONS(5198), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -413659,10 +419777,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [137226] = 3, + [140053] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5188), 12, + ACTIONS(5160), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -413675,7 +419793,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute, anon_sym_DOT, - ACTIONS(5190), 29, + ACTIONS(5162), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -413705,62 +419823,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [137275] = 24, + [140102] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1852), 1, + ACTIONS(1850), 1, anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2979), 1, + ACTIONS(2999), 1, anon_sym_TILDE, - ACTIONS(4298), 1, + ACTIONS(4310), 1, anon_sym_LPAREN2, - ACTIONS(5849), 1, - sym_identifier, ACTIONS(5861), 1, + sym_identifier, + ACTIONS(5873), 1, anon_sym_COLON_COLON, - ACTIONS(5863), 1, + ACTIONS(5875), 1, anon_sym_LBRACK, - ACTIONS(6032), 1, + ACTIONS(6014), 1, anon_sym_STAR, - ACTIONS(6034), 1, + ACTIONS(6016), 1, anon_sym_AMP_AMP, - ACTIONS(6036), 1, + ACTIONS(6018), 1, anon_sym_AMP, - STATE(3223), 1, + STATE(3276), 1, sym_parameter_list, - STATE(5860), 1, + STATE(5896), 1, sym__scope_resolution, - STATE(6087), 1, + STATE(6109), 1, sym__function_declarator_seq, - STATE(6319), 1, + STATE(6438), 1, sym__declarator, - STATE(6666), 1, + STATE(6785), 1, sym__abstract_declarator, - STATE(8106), 1, + STATE(8286), 1, sym_ms_based_modifier, - ACTIONS(8306), 2, + ACTIONS(8360), 2, anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(8308), 2, + anon_sym_GT2, + ACTIONS(8362), 2, anon_sym___attribute__, anon_sym___attribute, - STATE(8601), 3, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6092), 5, + STATE(6099), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - STATE(5998), 11, + STATE(6145), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -413772,149 +419890,81 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [137366] = 3, + [140193] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7036), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, + ACTIONS(4187), 1, + anon_sym_COLON_COLON, + ACTIONS(8628), 1, anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_literal_suffix, - ACTIONS(7038), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [137415] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5184), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + STATE(4456), 1, + sym_template_argument_list, + ACTIONS(4925), 4, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, anon_sym___attribute, - anon_sym_DOT, - ACTIONS(5186), 29, - anon_sym_DOT_DOT_DOT, + anon_sym_COLON, + anon_sym_const, + ACTIONS(4932), 34, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_SEMI, + anon_sym___extension__, anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_or, anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_GT2, + anon_sym_try, anon_sym_requires, - [137464] = 19, + [140248] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3331), 1, + ACTIONS(8659), 1, + anon_sym___attribute__, + ACTIONS(8662), 1, + anon_sym___attribute, + STATE(4306), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(8657), 4, + anon_sym_AMP, + anon_sym_LBRACK, anon_sym_const, - ACTIONS(5012), 1, + anon_sym___asm, + ACTIONS(8655), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(8131), 1, - anon_sym_LBRACK, - ACTIONS(8228), 1, - anon_sym_STAR, - ACTIONS(8230), 1, anon_sym_AMP_AMP, - ACTIONS(8232), 1, - anon_sym_AMP, - ACTIONS(8479), 1, - sym_auto, - ACTIONS(8481), 1, - anon_sym_decltype, - STATE(2998), 1, - sym_parameter_list, - STATE(4289), 1, - sym_alignas_qualifier, - STATE(4924), 1, - sym_decltype_auto, - STATE(6087), 1, - sym__function_declarator_seq, - STATE(6441), 1, - sym__abstract_declarator, - ACTIONS(8133), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4451), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6092), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8185), 7, anon_sym_SEMI, + anon_sym___extension__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - ACTIONS(8125), 12, - anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -413926,112 +419976,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [137545] = 20, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [140303] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(3331), 1, + ACTIONS(3339), 1, anon_sym_const, - ACTIONS(5012), 1, + ACTIONS(5020), 1, anon_sym_LPAREN2, - ACTIONS(6829), 1, - sym_auto, - ACTIONS(6831), 1, - anon_sym_decltype, - ACTIONS(8131), 1, + ACTIONS(8147), 1, anon_sym_LBRACK, - ACTIONS(8187), 1, - anon_sym___attribute, - ACTIONS(8222), 1, + ACTIONS(8256), 1, anon_sym_STAR, - ACTIONS(8224), 1, + ACTIONS(8258), 1, anon_sym_AMP_AMP, - ACTIONS(8226), 1, + ACTIONS(8260), 1, anon_sym_AMP, - STATE(2677), 1, - sym_decltype_auto, - STATE(3295), 1, + ACTIONS(8501), 1, + sym_auto, + ACTIONS(8503), 1, + anon_sym_decltype, + STATE(3095), 1, sym_parameter_list, - STATE(4289), 1, + STATE(4325), 1, sym_alignas_qualifier, - STATE(6087), 1, + STATE(4985), 1, + sym_decltype_auto, + STATE(6109), 1, sym__function_declarator_seq, - STATE(6470), 1, + STATE(6542), 1, sym__abstract_declarator, - ACTIONS(8133), 2, + ACTIONS(8149), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4439), 2, + STATE(4570), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6092), 5, + STATE(6099), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8185), 6, - anon_sym_COMMA, - anon_sym___attribute__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - ACTIONS(8125), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [137628] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6084), 1, - sym_identifier, - ACTIONS(6088), 1, - sym_primitive_type, - STATE(2229), 1, - sym_alignas_qualifier, - STATE(2344), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8628), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1926), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(6086), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5100), 8, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, + ACTIONS(8221), 7, + anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_GT2, - ACTIONS(5102), 8, - anon_sym_AMP, - anon_sym___attribute__, - anon_sym___attribute, - sym_auto, - anon_sym_decltype, + anon_sym_EQ, anon_sym_final, anon_sym_override, + anon_sym_try, anon_sym_requires, - ACTIONS(8625), 13, + ACTIONS(8141), 12, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -414043,10 +420050,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [137693] = 3, + [140384] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5144), 12, + ACTIONS(5188), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -414059,7 +420066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute, anon_sym_DOT, - ACTIONS(5146), 29, + ACTIONS(5190), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -414089,31 +420096,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [137742] = 6, + [140433] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8635), 1, - anon_sym___attribute__, - ACTIONS(8638), 1, - anon_sym___attribute, - STATE(4249), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - ACTIONS(8633), 4, + ACTIONS(4187), 1, + anon_sym_COLON_COLON, + ACTIONS(8628), 1, + anon_sym_LT, + STATE(4456), 1, + sym_template_argument_list, + ACTIONS(5834), 4, anon_sym_AMP, - anon_sym_LBRACK, + anon_sym___attribute, + anon_sym_COLON, anon_sym_const, - anon_sym___asm, - ACTIONS(8631), 33, - anon_sym_DOT_DOT_DOT, + ACTIONS(4192), 34, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, - anon_sym_LBRACK_LBRACK, + anon_sym___attribute__, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, @@ -414128,67 +420136,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DASH_GT, + anon_sym_or, + anon_sym_and, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_try, - anon_sym_noexcept, - anon_sym_throw, anon_sym_requires, - [137797] = 4, + [140488] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(7081), 1, - sym_literal_suffix, - ACTIONS(4154), 15, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - ACTIONS(4146), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3339), 1, + anon_sym_const, + ACTIONS(5020), 1, anon_sym_LPAREN2, + ACTIONS(8147), 1, + anon_sym_LBRACK, + ACTIONS(8256), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(8258), 1, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(8260), 1, + anon_sym_AMP, + ACTIONS(8501), 1, + sym_auto, + ACTIONS(8503), 1, + anon_sym_decltype, + STATE(3095), 1, + sym_parameter_list, + STATE(4325), 1, + sym_alignas_qualifier, + STATE(4985), 1, + sym_decltype_auto, + STATE(6109), 1, + sym__function_declarator_seq, + STATE(6530), 1, + sym__abstract_declarator, + ACTIONS(8149), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4546), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6099), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8213), 7, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [137848] = 3, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(8141), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [140569] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5136), 12, + ACTIONS(1940), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -414201,7 +420223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute, anon_sym_DOT, - ACTIONS(5138), 29, + ACTIONS(1938), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -414231,10 +420253,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [137897] = 3, + [140618] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5136), 12, + ACTIONS(1936), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -414247,7 +420269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute, anon_sym_DOT, - ACTIONS(5138), 29, + ACTIONS(1934), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -414277,57 +420299,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [137946] = 20, + [140667] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6133), 1, + sym_identifier, + ACTIONS(6141), 1, + sym_primitive_type, + STATE(2313), 1, + sym_alignas_qualifier, + STATE(4560), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(8670), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4275), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8668), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5094), 8, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_GT2, + ACTIONS(5096), 8, + anon_sym_AMP, + anon_sym___attribute__, + anon_sym___attribute, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8665), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [140732] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3331), 1, + ACTIONS(3339), 1, anon_sym_const, - ACTIONS(5012), 1, + ACTIONS(5020), 1, anon_sym_LPAREN2, - ACTIONS(6829), 1, + ACTIONS(6805), 1, sym_auto, - ACTIONS(6831), 1, + ACTIONS(6807), 1, anon_sym_decltype, - ACTIONS(8131), 1, + ACTIONS(8147), 1, anon_sym_LBRACK, - ACTIONS(8207), 1, + ACTIONS(8223), 1, anon_sym___attribute, - ACTIONS(8222), 1, + ACTIONS(8250), 1, anon_sym_STAR, - ACTIONS(8224), 1, + ACTIONS(8252), 1, anon_sym_AMP_AMP, - ACTIONS(8226), 1, + ACTIONS(8254), 1, anon_sym_AMP, - STATE(2677), 1, + STATE(2741), 1, sym_decltype_auto, - STATE(3295), 1, + STATE(3371), 1, sym_parameter_list, - STATE(4289), 1, + STATE(4325), 1, sym_alignas_qualifier, - STATE(6087), 1, + STATE(6109), 1, sym__function_declarator_seq, - STATE(6522), 1, + STATE(6568), 1, sym__abstract_declarator, - ACTIONS(8133), 2, + ACTIONS(8149), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4416), 2, + STATE(4619), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6092), 5, + STATE(6099), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8205), 6, + ACTIONS(8221), 6, anon_sym_COMMA, anon_sym___attribute__, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_requires, - ACTIONS(8125), 12, + ACTIONS(8141), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -414340,123 +420416,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [138029] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(2979), 1, - anon_sym_TILDE, - ACTIONS(4298), 1, - anon_sym_LPAREN2, - ACTIONS(5849), 1, - sym_identifier, - ACTIONS(5861), 1, - anon_sym_COLON_COLON, - ACTIONS(5863), 1, - anon_sym_LBRACK, - ACTIONS(5971), 1, - anon_sym_STAR, - ACTIONS(5973), 1, - anon_sym_AMP_AMP, - ACTIONS(5975), 1, - anon_sym_AMP, - STATE(3216), 1, - sym_parameter_list, - STATE(5860), 1, - sym__scope_resolution, - STATE(6087), 1, - sym__function_declarator_seq, - STATE(6319), 1, - sym__declarator, - STATE(6658), 1, - sym__abstract_declarator, - STATE(8106), 1, - sym_ms_based_modifier, - ACTIONS(8306), 2, - anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(8308), 2, - anon_sym___attribute__, - anon_sym___attribute, - STATE(8601), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6092), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(5998), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [138120] = 19, + [140815] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(3331), 1, + ACTIONS(67), 1, anon_sym_const, - ACTIONS(5012), 1, + ACTIONS(5879), 1, + anon_sym___attribute, + ACTIONS(7848), 1, anon_sym_LPAREN2, - ACTIONS(8131), 1, + ACTIONS(7862), 1, anon_sym_LBRACK, - ACTIONS(8149), 1, - sym_auto, - ACTIONS(8151), 1, - anon_sym_decltype, - ACTIONS(8195), 1, + ACTIONS(8113), 1, anon_sym_STAR, - ACTIONS(8197), 1, + ACTIONS(8115), 1, anon_sym_AMP_AMP, - ACTIONS(8199), 1, + ACTIONS(8117), 1, anon_sym_AMP, - STATE(1884), 1, - sym_decltype_auto, - STATE(2994), 1, - sym_parameter_list, - STATE(4289), 1, + STATE(1680), 1, sym_alignas_qualifier, - STATE(6087), 1, + STATE(3112), 1, + sym_parameter_list, + STATE(5953), 1, sym__function_declarator_seq, - STATE(6405), 1, + STATE(6292), 1, sym__abstract_declarator, - ACTIONS(8133), 2, + ACTIONS(7304), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4415), 2, + STATE(1669), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6092), 5, + STATE(5952), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8185), 7, + ACTIONS(5877), 9, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - ACTIONS(8125), 12, + ACTIONS(7297), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -414469,215 +420476,576 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [138201] = 3, + [140892] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(5136), 12, + ACTIONS(5845), 1, + anon_sym_LPAREN2, + ACTIONS(6414), 1, + anon_sym_LBRACK, + ACTIONS(6418), 1, + anon_sym_DOT, + ACTIONS(8677), 1, + anon_sym_SLASH, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, + anon_sym_AMP, + ACTIONS(8691), 1, + anon_sym_GT_EQ, + ACTIONS(8695), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8697), 1, + anon_sym_bitor, + ACTIONS(8699), 1, + anon_sym_bitand, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + ACTIONS(6420), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8048), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(8675), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8679), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8683), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8693), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8687), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8689), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6520), 8, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_or, + [140980] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5845), 1, + anon_sym_LPAREN2, + ACTIONS(6414), 1, + anon_sym_LBRACK, + ACTIONS(6418), 1, + anon_sym_DOT, + ACTIONS(8677), 1, anon_sym_SLASH, + ACTIONS(8681), 1, anon_sym_PIPE, + ACTIONS(8685), 1, anon_sym_AMP, - anon_sym_GT, + ACTIONS(8691), 1, anon_sym_GT_EQ, + ACTIONS(8695), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8697), 1, + anon_sym_bitor, + ACTIONS(8699), 1, + anon_sym_bitand, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + ACTIONS(6420), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8048), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8673), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8675), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8679), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8683), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8693), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8701), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8687), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8689), 3, + anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_DOT, - ACTIONS(5138), 29, + ACTIONS(6949), 6, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + [141070] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7283), 1, + anon_sym___attribute__, + ACTIONS(7285), 1, + anon_sym___attribute, + ACTIONS(8703), 1, + anon_sym_COLON, + ACTIONS(8705), 1, + anon_sym_LBRACE, + STATE(4428), 1, + sym__enum_base_clause, + STATE(4543), 1, + sym_enumerator_list, + STATE(4720), 1, + sym_attribute_specifier, + ACTIONS(6316), 4, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(6318), 29, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [141132] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5845), 1, anon_sym_LPAREN2, + ACTIONS(6414), 1, + anon_sym_LBRACK, + ACTIONS(6418), 1, + anon_sym_DOT, + ACTIONS(7019), 1, + anon_sym___attribute, + ACTIONS(8527), 1, + anon_sym_SLASH, + ACTIONS(8533), 1, + anon_sym_PIPE, + ACTIONS(8537), 1, + anon_sym_AMP, + ACTIONS(8543), 1, + anon_sym_GT_EQ, + ACTIONS(8551), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8553), 1, + anon_sym_bitor, + ACTIONS(8555), 1, + anon_sym_bitand, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + ACTIONS(6420), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8048), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8523), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8525), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(8529), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8531), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8535), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(8545), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8539), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_not_eq, + ACTIONS(8541), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7021), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym___attribute__, - anon_sym_LBRACK, anon_sym_QMARK, + [141224] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5845), 1, + anon_sym_LPAREN2, + ACTIONS(6414), 1, + anon_sym_LBRACK, + ACTIONS(6418), 1, + anon_sym_DOT, + ACTIONS(8449), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8677), 1, + anon_sym_SLASH, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, + anon_sym_AMP, + ACTIONS(8691), 1, + anon_sym_GT_EQ, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(8697), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(8699), 1, anon_sym_bitand, - anon_sym_not_eq, + ACTIONS(8707), 1, + anon_sym_QMARK, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + ACTIONS(6420), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + ACTIONS(8673), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8675), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8679), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8683), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8693), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8701), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8687), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8689), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6999), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + [141318] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2559), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(2569), 30, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [141366] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7065), 1, + anon_sym_const, + STATE(4036), 1, + sym_alignas_qualifier, + ACTIONS(7067), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3777), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8513), 4, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(7052), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(8511), 18, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, anon_sym_requires, - [138250] = 7, + [141424] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(8608), 1, + ACTIONS(5845), 1, + anon_sym_LPAREN2, + ACTIONS(6414), 1, + anon_sym_LBRACK, + ACTIONS(6418), 1, + anon_sym_DOT, + ACTIONS(8677), 1, + anon_sym_SLASH, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, + anon_sym_AMP, + ACTIONS(8691), 1, + anon_sym_GT_EQ, + ACTIONS(8695), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8697), 1, + anon_sym_bitor, + ACTIONS(8699), 1, + anon_sym_bitand, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + ACTIONS(6420), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8048), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8673), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8675), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8679), 2, anon_sym_AMP_AMP, - ACTIONS(8610), 1, anon_sym_and, - ACTIONS(8641), 1, + ACTIONS(8683), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8693), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8701), 2, anon_sym_PIPE_PIPE, - ACTIONS(8643), 1, anon_sym_or, - ACTIONS(6253), 15, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(8687), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(6255), 22, + ACTIONS(6987), 6, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [138307] = 21, + [141514] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(6449), 1, - anon_sym_PIPE, - ACTIONS(8649), 1, + ACTIONS(6947), 1, + anon_sym___attribute, + ACTIONS(8527), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8533), 1, + anon_sym_PIPE, + ACTIONS(8537), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8543), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8551), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, + ACTIONS(8553), 1, + anon_sym_bitor, + ACTIONS(8555), 1, anon_sym_bitand, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8523), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8525), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8529), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8531), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8535), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8545), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8655), 3, + ACTIONS(8539), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8541), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6451), 11, + ACTIONS(6949), 5, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym___attribute__, anon_sym_QMARK, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - [138391] = 19, + [141606] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3331), 1, - anon_sym_const, - ACTIONS(5012), 1, + ACTIONS(2559), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(6829), 1, - sym_auto, - ACTIONS(6831), 1, - anon_sym_decltype, - ACTIONS(8131), 1, - anon_sym_LBRACK, - ACTIONS(8324), 1, + anon_sym_TILDE, anon_sym_STAR, - ACTIONS(8326), 1, anon_sym_AMP_AMP, - ACTIONS(8328), 1, - anon_sym_AMP, - STATE(2677), 1, - sym_decltype_auto, - STATE(3179), 1, - sym_parameter_list, - STATE(4289), 1, - sym_alignas_qualifier, - STATE(6087), 1, - sym__function_declarator_seq, - STATE(6542), 1, - sym__abstract_declarator, - ACTIONS(8133), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4640), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6092), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8185), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_final, - anon_sym_override, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_GT2, - anon_sym_requires, - ACTIONS(8125), 12, + ACTIONS(2569), 27, + anon_sym_AMP, anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___based, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -414689,109 +421057,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [138471] = 23, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [141654] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8649), 1, + ACTIONS(8449), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8697), 1, anon_sym_bitor, - STATE(2525), 1, + ACTIONS(8699), 1, + anon_sym_bitand, + ACTIONS(8707), 1, + anon_sym_QMARK, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8679), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8655), 3, + ACTIONS(8701), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6451), 8, - anon_sym_DOT_DOT_DOT, + ACTIONS(6664), 4, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_or, - [138559] = 17, + [141748] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(3331), 1, + ACTIONS(3339), 1, anon_sym_const, - ACTIONS(5012), 1, + ACTIONS(5020), 1, anon_sym_LPAREN2, - ACTIONS(8119), 1, + ACTIONS(8135), 1, anon_sym_STAR, - ACTIONS(8121), 1, + ACTIONS(8137), 1, anon_sym_AMP_AMP, - ACTIONS(8123), 1, + ACTIONS(8139), 1, anon_sym_AMP, - ACTIONS(8131), 1, + ACTIONS(8147), 1, anon_sym_LBRACK, - ACTIONS(8443), 1, + ACTIONS(8489), 1, anon_sym___attribute, - STATE(3088), 1, + STATE(3111), 1, sym_parameter_list, - STATE(4289), 1, + STATE(4325), 1, sym_alignas_qualifier, - STATE(6087), 1, + STATE(6109), 1, sym__function_declarator_seq, - STATE(6287), 1, + STATE(6412), 1, sym__abstract_declarator, - ACTIONS(8133), 2, + ACTIONS(8149), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4131), 2, + STATE(4215), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6092), 5, + STATE(6099), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8441), 8, + ACTIONS(8487), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym___attribute__, @@ -414800,7 +421181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - ACTIONS(8125), 12, + ACTIONS(8141), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -414813,44 +421194,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [138635] = 17, + [141824] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(3331), 1, + ACTIONS(3339), 1, anon_sym_const, - ACTIONS(5012), 1, + ACTIONS(5020), 1, anon_sym_LPAREN2, - ACTIONS(5867), 1, + ACTIONS(5879), 1, anon_sym___attribute, - ACTIONS(8119), 1, + ACTIONS(8135), 1, anon_sym_STAR, - ACTIONS(8121), 1, + ACTIONS(8137), 1, anon_sym_AMP_AMP, - ACTIONS(8123), 1, + ACTIONS(8139), 1, anon_sym_AMP, - ACTIONS(8131), 1, + ACTIONS(8147), 1, anon_sym_LBRACK, - STATE(3088), 1, + STATE(3111), 1, sym_parameter_list, - STATE(4289), 1, + STATE(4325), 1, sym_alignas_qualifier, - STATE(6087), 1, + STATE(6109), 1, sym__function_declarator_seq, - STATE(6292), 1, + STATE(6419), 1, sym__abstract_declarator, - ACTIONS(8133), 2, + ACTIONS(8149), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4131), 2, + STATE(4215), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6092), 5, + STATE(6099), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(5865), 8, + ACTIONS(5877), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym___attribute__, @@ -414859,7 +421240,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - ACTIONS(8125), 12, + ACTIONS(8141), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -414872,44 +421253,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [138711] = 17, + [141900] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(3331), 1, + ACTIONS(3339), 1, anon_sym_const, - ACTIONS(5012), 1, + ACTIONS(5020), 1, anon_sym_LPAREN2, - ACTIONS(8119), 1, + ACTIONS(8135), 1, anon_sym_STAR, - ACTIONS(8121), 1, + ACTIONS(8137), 1, anon_sym_AMP_AMP, - ACTIONS(8123), 1, + ACTIONS(8139), 1, anon_sym_AMP, - ACTIONS(8131), 1, + ACTIONS(8147), 1, anon_sym_LBRACK, - ACTIONS(8447), 1, + ACTIONS(8455), 1, anon_sym___attribute, - STATE(3088), 1, + STATE(3111), 1, sym_parameter_list, - STATE(4289), 1, + STATE(4325), 1, sym_alignas_qualifier, - STATE(6087), 1, + STATE(6109), 1, sym__function_declarator_seq, - STATE(6289), 1, + STATE(6415), 1, sym__abstract_declarator, - ACTIONS(8133), 2, + ACTIONS(8149), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4131), 2, + STATE(4215), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6092), 5, + STATE(6099), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8445), 8, + ACTIONS(8453), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym___attribute__, @@ -414918,7 +421299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - ACTIONS(8125), 12, + ACTIONS(8141), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -414931,44 +421312,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [138787] = 17, + [141976] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(3331), 1, + ACTIONS(3339), 1, anon_sym_const, - ACTIONS(5012), 1, + ACTIONS(5020), 1, anon_sym_LPAREN2, - ACTIONS(6750), 1, + ACTIONS(6783), 1, anon_sym___attribute, - ACTIONS(8119), 1, + ACTIONS(8135), 1, anon_sym_STAR, - ACTIONS(8121), 1, + ACTIONS(8137), 1, anon_sym_AMP_AMP, - ACTIONS(8123), 1, + ACTIONS(8139), 1, anon_sym_AMP, - ACTIONS(8131), 1, + ACTIONS(8147), 1, anon_sym_LBRACK, - STATE(3088), 1, + STATE(3111), 1, sym_parameter_list, - STATE(4289), 1, + STATE(4325), 1, sym_alignas_qualifier, - STATE(6087), 1, + STATE(6109), 1, sym__function_declarator_seq, - STATE(6293), 1, + STATE(6420), 1, sym__abstract_declarator, - ACTIONS(8133), 2, + ACTIONS(8149), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4131), 2, + STATE(4215), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6092), 5, + STATE(6099), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(6748), 8, + ACTIONS(6781), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym___attribute__, @@ -414977,7 +421358,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - ACTIONS(8125), 12, + ACTIONS(8141), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -414990,153 +421371,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [138863] = 17, + [142052] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8489), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8505), 1, - anon_sym_GT_EQ, - ACTIONS(8513), 1, - anon_sym_LT_EQ_GT, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8485), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8487), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8507), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6449), 3, + ACTIONS(6518), 5, anon_sym_PIPE, anon_sym_AMP, - anon_sym___attribute, - ACTIONS(8503), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6451), 16, + ACTIONS(6520), 21, anon_sym_DOT_DOT_DOT, 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_LT, + anon_sym_GT_GT, anon_sym_SEMI, - anon_sym___attribute__, + anon_sym_RBRACE, anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [138939] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5827), 1, - anon_sym_LPAREN2, - ACTIONS(6429), 1, - anon_sym_LBRACK, - ACTIONS(6431), 1, - anon_sym_DOT, - ACTIONS(6967), 1, - anon_sym___attribute, - ACTIONS(8489), 1, - anon_sym_SLASH, - ACTIONS(8495), 1, - anon_sym_PIPE, - ACTIONS(8499), 1, - anon_sym_AMP, - ACTIONS(8505), 1, - anon_sym_GT_EQ, - ACTIONS(8513), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8515), 1, - anon_sym_bitor, - ACTIONS(8517), 1, - anon_sym_bitand, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8045), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8485), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8487), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8491), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8493), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8497), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8507), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8501), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8503), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6969), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_QMARK, - [139031] = 3, + [142120] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5641), 5, + ACTIONS(7065), 1, + anon_sym_const, + STATE(4036), 1, + sym_alignas_qualifier, + ACTIONS(7067), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3777), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8248), 4, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, - anon_sym_const, anon_sym___asm, - ACTIONS(5643), 35, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(7052), 12, anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -415148,261 +421457,189 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + ACTIONS(8246), 18, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_asm, anon_sym___asm__, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_noexcept, anon_sym_throw, anon_sym_requires, - [139079] = 27, + [142178] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(7019), 1, + ACTIONS(6662), 1, anon_sym___attribute, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8489), 1, + ACTIONS(8527), 1, anon_sym_SLASH, - ACTIONS(8495), 1, + ACTIONS(8533), 1, anon_sym_PIPE, - ACTIONS(8499), 1, + ACTIONS(8537), 1, anon_sym_AMP, - ACTIONS(8505), 1, + ACTIONS(8543), 1, anon_sym_GT_EQ, - ACTIONS(8511), 1, + ACTIONS(8549), 1, anon_sym_QMARK, - ACTIONS(8513), 1, + ACTIONS(8551), 1, anon_sym_LT_EQ_GT, - ACTIONS(8515), 1, + ACTIONS(8553), 1, anon_sym_bitor, - ACTIONS(8517), 1, + ACTIONS(8555), 1, anon_sym_bitand, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8485), 2, + ACTIONS(8523), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8487), 2, + ACTIONS(8525), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8491), 2, + ACTIONS(8529), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8493), 2, + ACTIONS(8531), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8497), 2, + ACTIONS(8535), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8507), 2, + ACTIONS(8545), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7021), 3, + ACTIONS(6664), 3, anon_sym_COMMA, anon_sym_SEMI, anon_sym___attribute__, - ACTIONS(8501), 3, + ACTIONS(8539), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8503), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [139175] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5827), 1, - anon_sym_LPAREN2, - ACTIONS(6429), 1, - anon_sym_LBRACK, - ACTIONS(6431), 1, - anon_sym_DOT, - ACTIONS(8649), 1, - anon_sym_SLASH, - ACTIONS(8663), 1, - anon_sym_LT_EQ_GT, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8045), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8647), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8661), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6449), 5, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(8541), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6451), 18, - anon_sym_DOT_DOT_DOT, - 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_SEMI, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - [139247] = 27, + [142274] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8489), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8495), 1, + ACTIONS(8681), 1, anon_sym_PIPE, - ACTIONS(8499), 1, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8505), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8511), 1, - anon_sym_QMARK, - ACTIONS(8513), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8515), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8517), 1, + ACTIONS(8699), 1, anon_sym_bitand, - ACTIONS(8675), 1, - anon_sym___attribute, - STATE(2525), 1, + ACTIONS(8707), 1, + anon_sym_QMARK, + ACTIONS(8709), 1, + anon_sym_COMMA, + ACTIONS(8711), 1, + anon_sym_SEMI, + ACTIONS(8713), 1, + anon_sym_RBRACE, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + STATE(7314), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8485), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8487), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8491), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8493), 2, + ACTIONS(8679), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8497), 2, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8507), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8501), 3, + ACTIONS(8701), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8503), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(8673), 3, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - [139343] = 16, + [142374] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7059), 1, - anon_sym_const, - ACTIONS(7842), 1, + ACTIONS(5090), 10, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(7856), 1, - anon_sym_LBRACK, - ACTIONS(8107), 1, anon_sym_STAR, - ACTIONS(8109), 1, anon_sym_AMP_AMP, - ACTIONS(8111), 1, - anon_sym_AMP, - STATE(2890), 1, - sym_parameter_list, - STATE(3992), 1, - sym_alignas_qualifier, - STATE(5792), 1, - sym__function_declarator_seq, - STATE(6304), 1, - sym__abstract_declarator, - ACTIONS(7061), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3727), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5804), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5865), 9, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - ACTIONS(7046), 12, + anon_sym_GT2, + ACTIONS(5088), 30, + anon_sym_AMP, anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -415414,43 +421651,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [139417] = 14, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [142422] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8649), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8661), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6449), 5, + ACTIONS(6518), 7, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6451), 19, + ACTIONS(6520), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -415460,6 +421703,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_QMARK, @@ -415470,39 +421715,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [139487] = 12, + [142488] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8649), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8647), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6449), 7, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(8675), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8693), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6518), 5, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6451), 21, + ACTIONS(6520), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -415512,8 +421761,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_QMARK, @@ -415524,162 +421771,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [139553] = 20, + [142558] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(6449), 1, - anon_sym_PIPE, - ACTIONS(8649), 1, + ACTIONS(8527), 1, anon_sym_SLASH, - ACTIONS(8653), 1, - anon_sym_AMP, - ACTIONS(8659), 1, - anon_sym_GT_EQ, - ACTIONS(8663), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8525), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8661), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8655), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(6518), 8, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6451), 13, + anon_sym___attribute, + ACTIONS(6520), 20, anon_sym_DOT_DOT_DOT, 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_LT, + anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym___attribute__, anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, - [139635] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5082), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5080), 27, - anon_sym_AMP, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___based, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [139683] = 19, + anon_sym_bitand, + anon_sym_not_eq, + [142624] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3331), 1, + ACTIONS(7065), 1, anon_sym_const, - ACTIONS(5012), 1, + ACTIONS(7848), 1, anon_sym_LPAREN2, - ACTIONS(6829), 1, - sym_auto, - ACTIONS(6831), 1, - anon_sym_decltype, - ACTIONS(8131), 1, + ACTIONS(7862), 1, anon_sym_LBRACK, - ACTIONS(8324), 1, + ACTIONS(8151), 1, anon_sym_STAR, - ACTIONS(8326), 1, + ACTIONS(8153), 1, anon_sym_AMP_AMP, - ACTIONS(8328), 1, + ACTIONS(8155), 1, anon_sym_AMP, - STATE(2677), 1, - sym_decltype_auto, - STATE(3179), 1, + STATE(2963), 1, sym_parameter_list, - STATE(4289), 1, + STATE(4036), 1, sym_alignas_qualifier, - STATE(6087), 1, + STATE(5953), 1, sym__function_declarator_seq, - STATE(6540), 1, + STATE(6444), 1, sym__abstract_declarator, - ACTIONS(8133), 2, + ACTIONS(7067), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4638), 2, + STATE(3777), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6092), 5, + STATE(5952), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8205), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(6781), 9, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_final, anon_sym_override, - anon_sym_GT2, + anon_sym_try, anon_sym_requires, - ACTIONS(8125), 12, + ACTIONS(7052), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -415692,151 +421883,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [139763] = 14, + [142698] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8489), 1, + ACTIONS(6518), 1, + anon_sym___attribute, + ACTIONS(8527), 1, anon_sym_SLASH, - STATE(2525), 1, + ACTIONS(8533), 1, + anon_sym_PIPE, + ACTIONS(8537), 1, + anon_sym_AMP, + ACTIONS(8543), 1, + anon_sym_GT_EQ, + ACTIONS(8551), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8553), 1, + anon_sym_bitor, + ACTIONS(8555), 1, + anon_sym_bitand, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8485), 2, + ACTIONS(8523), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8487), 2, + ACTIONS(8525), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8507), 2, + ACTIONS(8531), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8535), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8545), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6449), 6, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(8539), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8541), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute, - ACTIONS(6451), 18, + ACTIONS(6520), 7, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, 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_SEMI, anon_sym___attribute__, anon_sym_QMARK, - anon_sym_LT_EQ_GT, anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - [139833] = 24, + [142788] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(6449), 1, + ACTIONS(6518), 1, anon_sym___attribute, - ACTIONS(8489), 1, + ACTIONS(8527), 1, anon_sym_SLASH, - ACTIONS(8495), 1, + ACTIONS(8533), 1, anon_sym_PIPE, - ACTIONS(8499), 1, + ACTIONS(8537), 1, anon_sym_AMP, - ACTIONS(8505), 1, + ACTIONS(8543), 1, anon_sym_GT_EQ, - ACTIONS(8513), 1, + ACTIONS(8551), 1, anon_sym_LT_EQ_GT, - ACTIONS(8515), 1, + ACTIONS(8553), 1, anon_sym_bitor, - ACTIONS(8517), 1, + ACTIONS(8555), 1, anon_sym_bitand, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8485), 2, + ACTIONS(8523), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8487), 2, + ACTIONS(8525), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8493), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8497), 2, + ACTIONS(8535), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8507), 2, + ACTIONS(8545), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8501), 3, + ACTIONS(8539), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8503), 3, + ACTIONS(8541), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6451), 7, + ACTIONS(6520), 9, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, anon_sym_QMARK, anon_sym_or, - [139923] = 10, + anon_sym_and, + [142876] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7083), 1, + ACTIONS(7283), 1, anon_sym___attribute__, - ACTIONS(7085), 1, + ACTIONS(7285), 1, anon_sym___attribute, - ACTIONS(8677), 1, + ACTIONS(8703), 1, anon_sym_COLON, - ACTIONS(8679), 1, + ACTIONS(8705), 1, anon_sym_LBRACE, - STATE(4382), 1, + STATE(4427), 1, sym__enum_base_clause, - STATE(4514), 1, + STATE(4469), 1, sym_enumerator_list, - STATE(4720), 1, + STATE(4817), 1, sym_attribute_specifier, - ACTIONS(6336), 4, + ACTIONS(6393), 4, anon_sym_AMP, anon_sym_LBRACK, anon_sym_const, anon_sym___asm, - ACTIONS(6338), 29, + ACTIONS(6395), 29, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -415866,418 +422066,252 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [139985] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4167), 1, - anon_sym_COLON_COLON, - ACTIONS(6630), 1, - anon_sym_LT, - STATE(1603), 1, - sym_template_argument_list, - STATE(1935), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5038), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5977), 4, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_const, - ACTIONS(5979), 28, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [140043] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5082), 10, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5080), 30, - anon_sym_AMP, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [140091] = 27, + [142938] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(6524), 1, - anon_sym___attribute, - ACTIONS(8423), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8489), 1, + ACTIONS(8527), 1, anon_sym_SLASH, - ACTIONS(8495), 1, - anon_sym_PIPE, - ACTIONS(8499), 1, + ACTIONS(8537), 1, anon_sym_AMP, - ACTIONS(8505), 1, + ACTIONS(8543), 1, anon_sym_GT_EQ, - ACTIONS(8511), 1, - anon_sym_QMARK, - ACTIONS(8513), 1, + ACTIONS(8551), 1, anon_sym_LT_EQ_GT, - ACTIONS(8515), 1, - anon_sym_bitor, - ACTIONS(8517), 1, + ACTIONS(8555), 1, anon_sym_bitand, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8485), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8487), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8491), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8493), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8497), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8507), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6526), 3, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - ACTIONS(8501), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8503), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [140187] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5827), 1, - anon_sym_LPAREN2, - ACTIONS(6429), 1, - anon_sym_LBRACK, - ACTIONS(6431), 1, - anon_sym_DOT, - ACTIONS(8423), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, - anon_sym_SLASH, - ACTIONS(8653), 1, - anon_sym_AMP, - ACTIONS(8659), 1, - anon_sym_GT_EQ, - ACTIONS(8663), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, + ACTIONS(6518), 2, anon_sym_PIPE, - ACTIONS(8671), 1, - anon_sym_bitor, - ACTIONS(8683), 1, - anon_sym_QMARK, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8045), 2, + anon_sym___attribute, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8523), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8525), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8535), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8545), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8539), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8541), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6526), 4, + ACTIONS(6520), 10, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_RBRACE, - [140281] = 24, + anon_sym___attribute__, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + [143022] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8649), 1, + ACTIONS(7015), 1, + anon_sym___attribute, + ACTIONS(8527), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8533), 1, + anon_sym_PIPE, + ACTIONS(8537), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8543), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8551), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8553), 1, anon_sym_bitor, - STATE(2525), 1, + ACTIONS(8555), 1, + anon_sym_bitand, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8523), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8525), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8529), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8531), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8535), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8545), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8539), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8541), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7017), 6, + ACTIONS(7017), 5, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym___attribute__, anon_sym_QMARK, - [140371] = 22, + [143114] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8649), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8697), 1, anon_sym_bitor, - STATE(2525), 1, + ACTIONS(8699), 1, + anon_sym_bitand, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8679), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8655), 3, + ACTIONS(8701), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6451), 10, + ACTIONS(7017), 6, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_QMARK, - anon_sym_or, - anon_sym_and, - [140457] = 20, + [143204] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8489), 1, + ACTIONS(8527), 1, anon_sym_SLASH, - ACTIONS(8499), 1, + ACTIONS(8537), 1, anon_sym_AMP, - ACTIONS(8505), 1, + ACTIONS(8543), 1, anon_sym_GT_EQ, - ACTIONS(8513), 1, + ACTIONS(8551), 1, anon_sym_LT_EQ_GT, - ACTIONS(8517), 1, + ACTIONS(8555), 1, anon_sym_bitand, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6449), 2, + ACTIONS(6518), 2, anon_sym_PIPE, anon_sym___attribute, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8485), 2, + ACTIONS(8523), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8487), 2, + ACTIONS(8525), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8507), 2, + ACTIONS(8545), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8501), 3, + ACTIONS(8539), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8503), 3, + ACTIONS(8541), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6451), 12, + ACTIONS(6520), 12, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -416290,213 +422324,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_bitor, anon_sym_xor, - [140539] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7059), 1, - anon_sym_const, - STATE(3992), 1, - sym_alignas_qualifier, - ACTIONS(7061), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3727), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8203), 4, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(7046), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(8201), 18, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_noexcept, - anon_sym_throw, - anon_sym_requires, - [140597] = 18, + [143286] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8649), 1, + ACTIONS(8527), 1, anon_sym_SLASH, - ACTIONS(8659), 1, + ACTIONS(8543), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8551), 1, anon_sym_LT_EQ_GT, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6449), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8523), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8525), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8661), 2, + ACTIONS(8545), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8655), 3, + ACTIONS(6518), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym___attribute, + ACTIONS(8539), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8541), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6451), 14, + ACTIONS(6520), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym___attribute__, anon_sym_QMARK, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, - [140675] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2563), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(2573), 27, - anon_sym_AMP, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___based, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [140723] = 17, + [143364] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8649), 1, + ACTIONS(8527), 1, anon_sym_SLASH, - ACTIONS(8659), 1, + ACTIONS(8543), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8551), 1, anon_sym_LT_EQ_GT, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6449), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8523), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8525), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8661), 2, + ACTIONS(8545), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8657), 3, + ACTIONS(6518), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym___attribute, + ACTIONS(8541), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6451), 17, + ACTIONS(6520), 16, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym___attribute__, anon_sym_QMARK, anon_sym_or, anon_sym_and, @@ -416504,517 +422443,225 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [140799] = 13, + [143440] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8489), 1, + ACTIONS(8527), 1, anon_sym_SLASH, - STATE(2525), 1, + ACTIONS(8551), 1, + anon_sym_LT_EQ_GT, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8485), 2, + ACTIONS(8523), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8487), 2, + ACTIONS(8525), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6449), 6, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute, - ACTIONS(6451), 20, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + ACTIONS(8545), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - [140867] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5012), 1, - anon_sym_LPAREN2, - ACTIONS(5706), 1, - anon_sym_const, - ACTIONS(5851), 1, - anon_sym_COLON, - ACTIONS(8131), 1, - anon_sym_LBRACK, - ACTIONS(8381), 1, - sym_ms_restrict_modifier, - ACTIONS(8685), 1, - anon_sym_STAR, - ACTIONS(8687), 1, - anon_sym_AMP_AMP, - ACTIONS(8689), 1, + ACTIONS(6518), 6, + anon_sym_PIPE, anon_sym_AMP, - STATE(1695), 1, - sym_alignas_qualifier, - STATE(3485), 1, - sym_parameter_list, - STATE(5267), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6087), 1, - sym__function_declarator_seq, - STATE(6903), 1, - sym__abstract_declarator, - ACTIONS(8383), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(8385), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(8387), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4304), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4996), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6092), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8379), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [140951] = 18, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute, + ACTIONS(6520), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + 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_SEMI, + anon_sym___attribute__, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [143512] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8489), 1, + ACTIONS(8527), 1, anon_sym_SLASH, - ACTIONS(8505), 1, - anon_sym_GT_EQ, - ACTIONS(8513), 1, - anon_sym_LT_EQ_GT, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8485), 2, + ACTIONS(8523), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8487), 2, + ACTIONS(8525), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8507), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6449), 3, + ACTIONS(6518), 6, anon_sym_PIPE, anon_sym_AMP, - anon_sym___attribute, - ACTIONS(8501), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8503), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6451), 13, + anon_sym___attribute, + ACTIONS(6520), 20, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, 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_LT, + anon_sym_GT_GT, anon_sym_SEMI, anon_sym___attribute__, anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, - [141029] = 24, + anon_sym_not_eq, + [143580] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8649), 1, + ACTIONS(8527), 1, anon_sym_SLASH, - ACTIONS(8653), 1, - anon_sym_AMP, - ACTIONS(8659), 1, - anon_sym_GT_EQ, - ACTIONS(8663), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, - anon_sym_bitor, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8523), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8525), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8545), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8655), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(6518), 6, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6935), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_QMARK, - [141119] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7059), 1, - anon_sym_const, - STATE(3992), 1, - sym_alignas_qualifier, - ACTIONS(7061), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3727), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8562), 4, - anon_sym_AMP, anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(7046), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(8560), 18, + ACTIONS(6520), 18, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + 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_SEMI, anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_noexcept, - anon_sym_throw, - anon_sym_requires, - [141177] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7083), 1, - anon_sym___attribute__, - ACTIONS(7085), 1, - anon_sym___attribute, - ACTIONS(8677), 1, - anon_sym_COLON, - ACTIONS(8679), 1, - anon_sym_LBRACE, - STATE(4358), 1, - sym__enum_base_clause, - STATE(4471), 1, - sym_enumerator_list, - STATE(4667), 1, - sym_attribute_specifier, - ACTIONS(6342), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(6344), 29, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [141239] = 16, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [143650] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(7059), 1, - anon_sym_const, - ACTIONS(7842), 1, + ACTIONS(5020), 1, anon_sym_LPAREN2, - ACTIONS(7856), 1, - anon_sym_LBRACK, - ACTIONS(8107), 1, - anon_sym_STAR, - ACTIONS(8109), 1, - anon_sym_AMP_AMP, - ACTIONS(8111), 1, - anon_sym_AMP, - STATE(2890), 1, - sym_parameter_list, - STATE(3992), 1, - sym_alignas_qualifier, - STATE(5792), 1, - sym__function_declarator_seq, - STATE(6305), 1, - sym__abstract_declarator, - ACTIONS(7061), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3727), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5804), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8445), 9, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - ACTIONS(7046), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [141313] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7059), 1, + ACTIONS(5652), 1, anon_sym_const, - ACTIONS(7842), 1, - anon_sym_LPAREN2, - ACTIONS(7856), 1, - anon_sym_LBRACK, - ACTIONS(8107), 1, - anon_sym_STAR, - ACTIONS(8109), 1, - anon_sym_AMP_AMP, - ACTIONS(8111), 1, - anon_sym_AMP, - STATE(2890), 1, - sym_parameter_list, - STATE(3992), 1, - sym_alignas_qualifier, - STATE(5792), 1, - sym__function_declarator_seq, - STATE(6281), 1, - sym__abstract_declarator, - ACTIONS(7061), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3727), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5804), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8441), 9, - anon_sym_SEMI, + ACTIONS(5863), 1, anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - ACTIONS(7046), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [141387] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(7842), 1, - anon_sym_LPAREN2, - ACTIONS(7856), 1, + ACTIONS(8147), 1, anon_sym_LBRACK, - ACTIONS(8209), 1, - sym_auto, - ACTIONS(8211), 1, - anon_sym_decltype, - ACTIONS(8318), 1, + ACTIONS(8465), 1, + sym_ms_restrict_modifier, + ACTIONS(8715), 1, anon_sym_STAR, - ACTIONS(8320), 1, + ACTIONS(8717), 1, anon_sym_AMP_AMP, - ACTIONS(8322), 1, + ACTIONS(8719), 1, anon_sym_AMP, - STATE(1658), 1, + STATE(1702), 1, sym_alignas_qualifier, - STATE(2504), 1, - sym_decltype_auto, - STATE(3273), 1, + STATE(3538), 1, sym_parameter_list, - STATE(5792), 1, + STATE(5308), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6109), 1, sym__function_declarator_seq, - STATE(6528), 1, + STATE(6990), 1, sym__abstract_declarator, - ACTIONS(7152), 2, + ACTIONS(8467), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8469), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(8471), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4711), 2, + STATE(4376), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5087), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(5804), 5, + STATE(6099), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8205), 6, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(7145), 12, + ACTIONS(8463), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -417027,42 +422674,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [141467] = 16, + [143734] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(7059), 1, + ACTIONS(7065), 1, anon_sym_const, - ACTIONS(7842), 1, + ACTIONS(7848), 1, anon_sym_LPAREN2, - ACTIONS(7856), 1, + ACTIONS(7862), 1, anon_sym_LBRACK, - ACTIONS(8107), 1, + ACTIONS(8151), 1, anon_sym_STAR, - ACTIONS(8109), 1, + ACTIONS(8153), 1, anon_sym_AMP_AMP, - ACTIONS(8111), 1, + ACTIONS(8155), 1, anon_sym_AMP, - STATE(2890), 1, + STATE(2963), 1, sym_parameter_list, - STATE(3992), 1, + STATE(4036), 1, sym_alignas_qualifier, - STATE(5792), 1, + STATE(5953), 1, sym__function_declarator_seq, - STATE(6278), 1, + STATE(6394), 1, sym__abstract_declarator, - ACTIONS(7061), 2, + ACTIONS(7067), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3727), 2, + STATE(3777), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(5804), 5, + STATE(5952), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(6748), 9, + ACTIONS(5877), 9, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACK_LBRACK, @@ -417072,68 +422719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - ACTIONS(7046), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [141541] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(7842), 1, - anon_sym_LPAREN2, - ACTIONS(7856), 1, - anon_sym_LBRACK, - ACTIONS(8209), 1, - sym_auto, - ACTIONS(8211), 1, - anon_sym_decltype, - ACTIONS(8318), 1, - anon_sym_STAR, - ACTIONS(8320), 1, - anon_sym_AMP_AMP, - ACTIONS(8322), 1, - anon_sym_AMP, - STATE(1658), 1, - sym_alignas_qualifier, - STATE(2504), 1, - sym_decltype_auto, - STATE(3273), 1, - sym_parameter_list, - STATE(5792), 1, - sym__function_declarator_seq, - STATE(6532), 1, - sym__abstract_declarator, - ACTIONS(7152), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4719), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5804), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8185), 6, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(7145), 12, + ACTIONS(7052), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -417146,183 +422732,177 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [141621] = 13, + [143808] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8649), 1, + ACTIONS(6518), 1, + anon_sym_PIPE, + ACTIONS(8677), 1, anon_sym_SLASH, - STATE(2525), 1, + ACTIONS(8685), 1, + anon_sym_AMP, + ACTIONS(8691), 1, + anon_sym_GT_EQ, + ACTIONS(8695), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8699), 1, + anon_sym_bitand, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6449), 5, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(8683), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8693), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8687), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6451), 21, + ACTIONS(6520), 11, anon_sym_DOT_DOT_DOT, 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_LT, - anon_sym_GT_GT, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_QMARK, - anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - [141689] = 29, + [143892] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(6518), 1, + anon_sym_PIPE, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, + ACTIONS(8699), 1, anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, - anon_sym_bitor, - ACTIONS(8683), 1, - anon_sym_QMARK, - ACTIONS(8691), 1, - anon_sym_COMMA, - ACTIONS(8693), 1, - anon_sym_SEMI, - ACTIONS(8695), 1, - anon_sym_RBRACE, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - STATE(7483), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [141789] = 21, + ACTIONS(6520), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + [143974] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5012), 1, - anon_sym_LPAREN2, - ACTIONS(5706), 1, + ACTIONS(7065), 1, anon_sym_const, - ACTIONS(5865), 1, - anon_sym_COLON, - ACTIONS(8131), 1, + ACTIONS(7848), 1, + anon_sym_LPAREN2, + ACTIONS(7862), 1, anon_sym_LBRACK, - ACTIONS(8381), 1, - sym_ms_restrict_modifier, - ACTIONS(8685), 1, + ACTIONS(8151), 1, anon_sym_STAR, - ACTIONS(8687), 1, + ACTIONS(8153), 1, anon_sym_AMP_AMP, - ACTIONS(8689), 1, + ACTIONS(8155), 1, anon_sym_AMP, - STATE(1695), 1, - sym_alignas_qualifier, - STATE(3485), 1, + STATE(2963), 1, sym_parameter_list, - STATE(5267), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6087), 1, + STATE(4036), 1, + sym_alignas_qualifier, + STATE(5953), 1, sym__function_declarator_seq, - STATE(6905), 1, + STATE(6434), 1, sym__abstract_declarator, - ACTIONS(8383), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(8385), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(8387), 2, + ACTIONS(7067), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(5009), 2, + STATE(3777), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(5019), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(6092), 5, + STATE(5952), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8379), 12, + ACTIONS(8453), 9, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(7052), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -417335,235 +422915,249 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [141873] = 21, + [144048] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8489), 1, + ACTIONS(6985), 1, + anon_sym___attribute, + ACTIONS(8527), 1, anon_sym_SLASH, - ACTIONS(8499), 1, + ACTIONS(8533), 1, + anon_sym_PIPE, + ACTIONS(8537), 1, anon_sym_AMP, - ACTIONS(8505), 1, + ACTIONS(8543), 1, anon_sym_GT_EQ, - ACTIONS(8513), 1, + ACTIONS(8551), 1, anon_sym_LT_EQ_GT, - ACTIONS(8517), 1, + ACTIONS(8553), 1, + anon_sym_bitor, + ACTIONS(8555), 1, anon_sym_bitand, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6449), 2, - anon_sym_PIPE, - anon_sym___attribute, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8485), 2, + ACTIONS(8523), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8487), 2, + ACTIONS(8525), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8497), 2, + ACTIONS(8529), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8531), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8535), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8507), 2, + ACTIONS(8545), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8501), 3, + ACTIONS(8539), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8503), 3, + ACTIONS(8541), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6451), 10, + ACTIONS(6987), 5, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, anon_sym_QMARK, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - [141957] = 24, + [144140] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8649), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8653), 1, - anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, - anon_sym_bitor, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(6518), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7007), 6, + ACTIONS(6520), 14, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_QMARK, - [142047] = 26, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + [144218] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(6989), 1, + anon_sym___attribute, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8527), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8533), 1, + anon_sym_PIPE, + ACTIONS(8537), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8543), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8549), 1, + anon_sym_QMARK, + ACTIONS(8551), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8553), 1, anon_sym_bitor, - ACTIONS(8683), 1, - anon_sym_QMARK, - STATE(2525), 1, + ACTIONS(8555), 1, + anon_sym_bitand, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8523), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8525), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8529), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8531), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8535), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8545), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(6991), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + ACTIONS(8539), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8541), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7013), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - [142141] = 8, + [144314] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(4167), 1, - anon_sym_COLON_COLON, - ACTIONS(8697), 1, - anon_sym_LT, - STATE(1844), 1, - sym_template_argument_list, - STATE(1935), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(4144), 4, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_COLON, + ACTIONS(7065), 1, anon_sym_const, - ACTIONS(5038), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4152), 28, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(7848), 1, anon_sym_LPAREN2, + ACTIONS(7862), 1, + anon_sym_LBRACK, + ACTIONS(8151), 1, anon_sym_STAR, + ACTIONS(8153), 1, anon_sym_AMP_AMP, + ACTIONS(8155), 1, + anon_sym_AMP, + STATE(2963), 1, + sym_parameter_list, + STATE(4036), 1, + sym_alignas_qualifier, + STATE(5953), 1, + sym__function_declarator_seq, + STATE(6457), 1, + sym__abstract_declarator, + ACTIONS(7067), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3777), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5952), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8487), 9, anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(7052), 12, + anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -417575,496 +423169,687 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [142199] = 25, + [144388] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(7005), 1, - anon_sym___attribute, - ACTIONS(8489), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8495), 1, - anon_sym_PIPE, - ACTIONS(8499), 1, - anon_sym_AMP, - ACTIONS(8505), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8513), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8515), 1, - anon_sym_bitor, - ACTIONS(8517), 1, - anon_sym_bitand, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(6518), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8485), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8487), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8491), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8493), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8497), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8507), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8501), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8503), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7007), 5, + ACTIONS(6520), 17, anon_sym_DOT_DOT_DOT, 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_QMARK, - [142291] = 25, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [144464] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(6933), 1, + ACTIONS(6993), 1, anon_sym___attribute, - ACTIONS(8489), 1, + ACTIONS(8527), 1, anon_sym_SLASH, - ACTIONS(8495), 1, + ACTIONS(8533), 1, anon_sym_PIPE, - ACTIONS(8499), 1, + ACTIONS(8537), 1, anon_sym_AMP, - ACTIONS(8505), 1, + ACTIONS(8543), 1, anon_sym_GT_EQ, - ACTIONS(8513), 1, + ACTIONS(8551), 1, anon_sym_LT_EQ_GT, - ACTIONS(8515), 1, + ACTIONS(8553), 1, anon_sym_bitor, - ACTIONS(8517), 1, + ACTIONS(8555), 1, anon_sym_bitand, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8485), 2, + ACTIONS(8523), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8487), 2, + ACTIONS(8525), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8491), 2, + ACTIONS(8529), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8493), 2, + ACTIONS(8531), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8497), 2, + ACTIONS(8535), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8507), 2, + ACTIONS(8545), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8501), 3, + ACTIONS(8539), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8503), 3, + ACTIONS(8541), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6935), 5, + ACTIONS(6995), 5, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_SEMI, anon_sym___attribute__, anon_sym_QMARK, - [142383] = 23, + [144556] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(6449), 1, - anon_sym___attribute, - ACTIONS(8489), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8495), 1, - anon_sym_PIPE, - ACTIONS(8499), 1, - anon_sym_AMP, - ACTIONS(8505), 1, - anon_sym_GT_EQ, - ACTIONS(8513), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8515), 1, - anon_sym_bitor, - ACTIONS(8517), 1, - anon_sym_bitand, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8485), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8487), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8497), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8507), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8501), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8503), 3, + ACTIONS(6518), 5, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6451), 9, + ACTIONS(6520), 18, anon_sym_DOT_DOT_DOT, 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_SEMI, - anon_sym___attribute__, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_or, anon_sym_and, - [142471] = 27, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [144628] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8489), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8495), 1, + ACTIONS(8681), 1, anon_sym_PIPE, - ACTIONS(8499), 1, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8505), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8511), 1, - anon_sym_QMARK, - ACTIONS(8513), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8515), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8517), 1, + ACTIONS(8699), 1, anon_sym_bitand, - ACTIONS(8701), 1, - anon_sym___attribute, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8485), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8487), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8491), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8493), 2, + ACTIONS(8679), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8497), 2, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8507), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8501), 3, + ACTIONS(8701), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8503), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(8699), 3, + ACTIONS(7021), 6, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, - anon_sym___attribute__, - [142567] = 26, + anon_sym_RBRACE, + anon_sym_QMARK, + [144718] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8527), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8533), 1, + anon_sym_PIPE, + ACTIONS(8537), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8543), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8549), 1, + anon_sym_QMARK, + ACTIONS(8551), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8553), 1, anon_sym_bitor, - ACTIONS(8683), 1, - anon_sym_QMARK, - STATE(2525), 1, + ACTIONS(8555), 1, + anon_sym_bitand, + ACTIONS(8723), 1, + anon_sym___attribute, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8523), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8525), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8529), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8531), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8535), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8545), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8539), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8541), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7021), 4, + ACTIONS(8721), 3, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_RBRACE, - [142661] = 15, + anon_sym___attribute__, + [144814] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8489), 1, + ACTIONS(6997), 1, + anon_sym___attribute, + ACTIONS(8449), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8527), 1, anon_sym_SLASH, - ACTIONS(8513), 1, + ACTIONS(8533), 1, + anon_sym_PIPE, + ACTIONS(8537), 1, + anon_sym_AMP, + ACTIONS(8543), 1, + anon_sym_GT_EQ, + ACTIONS(8549), 1, + anon_sym_QMARK, + ACTIONS(8551), 1, anon_sym_LT_EQ_GT, - STATE(2525), 1, + ACTIONS(8553), 1, + anon_sym_bitor, + ACTIONS(8555), 1, + anon_sym_bitand, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8485), 2, + ACTIONS(8523), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8487), 2, + ACTIONS(8525), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8507), 2, + ACTIONS(8529), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8531), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8535), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8545), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6449), 6, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(6999), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + ACTIONS(8539), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8541), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute, - ACTIONS(6451), 17, + [144910] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5090), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5088), 27, + anon_sym_AMP, + anon_sym___extension__, anon_sym___attribute__, - anon_sym_QMARK, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - [142733] = 24, + anon_sym___attribute, + anon_sym___based, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [144958] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(67), 1, + anon_sym_const, + ACTIONS(7848), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(7862), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, - anon_sym_DOT, - ACTIONS(8649), 1, - anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8242), 1, + sym_auto, + ACTIONS(8244), 1, + anon_sym_decltype, + ACTIONS(8262), 1, + anon_sym_STAR, + ACTIONS(8264), 1, + anon_sym_AMP_AMP, + ACTIONS(8266), 1, anon_sym_AMP, - ACTIONS(8659), 1, - anon_sym_GT_EQ, - ACTIONS(8663), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, - anon_sym_bitor, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8045), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8647), 2, + STATE(1680), 1, + sym_alignas_qualifier, + STATE(2483), 1, + sym_decltype_auto, + STATE(3255), 1, + sym_parameter_list, + STATE(5953), 1, + sym__function_declarator_seq, + STATE(6670), 1, + sym__abstract_declarator, + ACTIONS(7304), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4718), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5952), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8213), 6, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(7297), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [145038] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5792), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(5794), 35, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8651), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8661), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8667), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8655), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8657), 3, - anon_sym_GT, - anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [145086] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4187), 1, + anon_sym_COLON_COLON, + ACTIONS(8725), 1, anon_sym_LT, - ACTIONS(6969), 6, - anon_sym_DOT_DOT_DOT, + STATE(1863), 1, + sym_template_argument_list, + STATE(1959), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(4164), 4, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_const, + ACTIONS(5046), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4172), 28, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_QMARK, - [142823] = 3, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [145144] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(67), 1, + anon_sym_const, + ACTIONS(7848), 1, + anon_sym_LPAREN2, + ACTIONS(7862), 1, + anon_sym_LBRACK, + ACTIONS(8242), 1, + sym_auto, + ACTIONS(8244), 1, + anon_sym_decltype, + ACTIONS(8262), 1, + anon_sym_STAR, + ACTIONS(8264), 1, + anon_sym_AMP_AMP, + ACTIONS(8266), 1, + anon_sym_AMP, + STATE(1680), 1, + sym_alignas_qualifier, + STATE(2483), 1, + sym_decltype_auto, + STATE(3255), 1, + sym_parameter_list, + STATE(5953), 1, + sym__function_declarator_seq, + STATE(6637), 1, + sym__abstract_declarator, + ACTIONS(7304), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4735), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5952), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8221), 6, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(7297), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [145224] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 10, + ACTIONS(4187), 1, + anon_sym_COLON_COLON, + ACTIONS(6580), 1, + anon_sym_LT, + STATE(1623), 1, + sym_template_argument_list, + STATE(1959), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5046), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6058), 4, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_const, + ACTIONS(6060), 28, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(2573), 30, - anon_sym_AMP, anon_sym___extension__, anon_sym___attribute__, - anon_sym___attribute, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -418078,1338 +423863,1376 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - sym_identifier, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_try, anon_sym_requires, - [142871] = 25, + [145282] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(7015), 1, - anon_sym___attribute, - ACTIONS(8489), 1, + ACTIONS(8449), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8495), 1, + ACTIONS(8681), 1, anon_sym_PIPE, - ACTIONS(8499), 1, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8505), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8513), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8515), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8517), 1, + ACTIONS(8699), 1, anon_sym_bitand, - STATE(2525), 1, + ACTIONS(8707), 1, + anon_sym_QMARK, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8485), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8487), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8491), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8493), 2, + ACTIONS(8679), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8497), 2, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8507), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8501), 3, + ACTIONS(8701), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8503), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7017), 5, - anon_sym_DOT_DOT_DOT, + ACTIONS(6991), 4, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_QMARK, - [142963] = 27, + anon_sym_RBRACE, + [145376] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(7011), 1, - anon_sym___attribute, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8489), 1, + ACTIONS(8527), 1, anon_sym_SLASH, - ACTIONS(8495), 1, + ACTIONS(8533), 1, anon_sym_PIPE, - ACTIONS(8499), 1, + ACTIONS(8537), 1, anon_sym_AMP, - ACTIONS(8505), 1, + ACTIONS(8543), 1, anon_sym_GT_EQ, - ACTIONS(8511), 1, + ACTIONS(8549), 1, anon_sym_QMARK, - ACTIONS(8513), 1, + ACTIONS(8551), 1, anon_sym_LT_EQ_GT, - ACTIONS(8515), 1, + ACTIONS(8553), 1, anon_sym_bitor, - ACTIONS(8517), 1, + ACTIONS(8555), 1, anon_sym_bitand, - STATE(2525), 1, + ACTIONS(8729), 1, + anon_sym___attribute, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8485), 2, + ACTIONS(8523), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8487), 2, + ACTIONS(8525), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8491), 2, + ACTIONS(8529), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8493), 2, + ACTIONS(8531), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8497), 2, + ACTIONS(8535), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8507), 2, + ACTIONS(8545), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7013), 3, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - ACTIONS(8501), 3, + ACTIONS(8539), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8503), 3, + ACTIONS(8541), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [143059] = 24, + ACTIONS(8727), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + [145472] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(3339), 1, + anon_sym_const, + ACTIONS(5020), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6805), 1, + sym_auto, + ACTIONS(6807), 1, + anon_sym_decltype, + ACTIONS(8147), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, - anon_sym_DOT, - ACTIONS(8649), 1, - anon_sym_SLASH, - ACTIONS(8653), 1, - anon_sym_AMP, - ACTIONS(8659), 1, - anon_sym_GT_EQ, - ACTIONS(8663), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, - anon_sym_bitor, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8045), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8352), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8651), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8661), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8667), 2, + ACTIONS(8354), 1, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8655), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8657), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6989), 6, + ACTIONS(8356), 1, + anon_sym_AMP, + STATE(2741), 1, + sym_decltype_auto, + STATE(3198), 1, + sym_parameter_list, + STATE(4325), 1, + sym_alignas_qualifier, + STATE(6109), 1, + sym__function_declarator_seq, + STATE(6672), 1, + sym__abstract_declarator, + ACTIONS(8149), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4696), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6099), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8221), 6, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_QMARK, - [143149] = 25, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(8141), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [145552] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5020), 1, + anon_sym_LPAREN2, + ACTIONS(5652), 1, + anon_sym_const, + ACTIONS(5877), 1, + anon_sym_COLON, + ACTIONS(8147), 1, + anon_sym_LBRACK, + ACTIONS(8465), 1, + sym_ms_restrict_modifier, + ACTIONS(8715), 1, + anon_sym_STAR, + ACTIONS(8717), 1, + anon_sym_AMP_AMP, + ACTIONS(8719), 1, + anon_sym_AMP, + STATE(1702), 1, + sym_alignas_qualifier, + STATE(3538), 1, + sym_parameter_list, + STATE(5308), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6109), 1, + sym__function_declarator_seq, + STATE(6988), 1, + sym__abstract_declarator, + ACTIONS(8467), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8469), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(8471), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5054), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5081), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6099), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8463), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [145636] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(6987), 1, - anon_sym___attribute, - ACTIONS(8489), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8495), 1, + ACTIONS(8681), 1, anon_sym_PIPE, - ACTIONS(8499), 1, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8505), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8513), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8515), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8517), 1, + ACTIONS(8699), 1, anon_sym_bitand, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8485), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8487), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8491), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8493), 2, + ACTIONS(8679), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8497), 2, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8507), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8501), 3, + ACTIONS(8701), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8503), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6989), 5, + ACTIONS(6995), 6, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, - anon_sym___attribute__, + anon_sym_RBRACE, anon_sym_QMARK, - [143241] = 12, + [145726] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(3339), 1, + anon_sym_const, + ACTIONS(5020), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6805), 1, + sym_auto, + ACTIONS(6807), 1, + anon_sym_decltype, + ACTIONS(8147), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, - anon_sym_DOT, - ACTIONS(8489), 1, - anon_sym_SLASH, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8045), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8487), 2, + ACTIONS(8352), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6449), 8, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PIPE, + ACTIONS(8354), 1, + anon_sym_AMP_AMP, + ACTIONS(8356), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute, - ACTIONS(6451), 20, + STATE(2741), 1, + sym_decltype_auto, + STATE(3198), 1, + sym_parameter_list, + STATE(4325), 1, + sym_alignas_qualifier, + STATE(6109), 1, + sym__function_declarator_seq, + STATE(6669), 1, + sym__abstract_declarator, + ACTIONS(8149), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4693), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6099), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8213), 6, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - 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_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - [143307] = 27, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(8141), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [145806] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(7715), 1, - anon_sym_COMMA, - ACTIONS(8423), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8683), 1, - anon_sym_QMARK, - STATE(2525), 1, + ACTIONS(8699), 1, + anon_sym_bitand, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8703), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - ACTIONS(8655), 3, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [143402] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6979), 1, - anon_sym_LPAREN2, - ACTIONS(7659), 1, - anon_sym_LBRACK, - ACTIONS(7663), 1, - anon_sym_DOT, - ACTIONS(8705), 1, + ACTIONS(6520), 10, anon_sym_DOT_DOT_DOT, - ACTIONS(8707), 1, anon_sym_COMMA, - ACTIONS(8713), 1, - anon_sym_SLASH, - ACTIONS(8719), 1, - anon_sym_PIPE, - ACTIONS(8723), 1, - anon_sym_AMP, - ACTIONS(8729), 1, - anon_sym_LT_LT, - ACTIONS(8731), 1, - anon_sym_GT_GT, - ACTIONS(8733), 1, - anon_sym_QMARK, - ACTIONS(8735), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8737), 1, - anon_sym_bitor, - ACTIONS(8739), 1, - anon_sym_bitand, - ACTIONS(8743), 1, - anon_sym_GT2, - STATE(3545), 1, - sym_argument_list, - STATE(3546), 1, - sym_subscript_argument_list, - STATE(7181), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(7665), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8709), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8711), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8715), 2, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8717), 2, anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_or, anon_sym_and, - ACTIONS(8721), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8741), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8725), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8727), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [143499] = 6, + [145892] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3887), 1, - anon_sym_LBRACE, - ACTIONS(8437), 1, - anon_sym_LPAREN2, - STATE(4777), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6263), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(4187), 1, + anon_sym_COLON_COLON, + ACTIONS(6580), 1, anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6265), 24, + STATE(1623), 1, + sym_template_argument_list, + STATE(2358), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6058), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(5068), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6060), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [143552] = 28, + anon_sym_requires, + [145949] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6979), 1, - anon_sym_LPAREN2, - ACTIONS(7659), 1, - anon_sym_LBRACK, - ACTIONS(7663), 1, - anon_sym_DOT, - ACTIONS(8705), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8707), 1, - anon_sym_COMMA, - ACTIONS(8713), 1, - anon_sym_SLASH, - ACTIONS(8719), 1, - anon_sym_PIPE, - ACTIONS(8723), 1, + STATE(4383), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5515), 3, anon_sym_AMP, - ACTIONS(8729), 1, - anon_sym_LT_LT, - ACTIONS(8731), 1, - anon_sym_GT_GT, - ACTIONS(8733), 1, - anon_sym_QMARK, - ACTIONS(8735), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8737), 1, - anon_sym_bitor, - ACTIONS(8739), 1, - anon_sym_bitand, - ACTIONS(8745), 1, - anon_sym_GT2, - STATE(3545), 1, - sym_argument_list, - STATE(3546), 1, - sym_subscript_argument_list, - STATE(7194), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(7665), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8709), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8711), 2, + anon_sym___attribute, + anon_sym_const, + ACTIONS(8731), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5517), 31, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8715), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8717), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8721), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8741), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8725), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8727), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [143649] = 27, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [146000] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8683), 1, + ACTIONS(8699), 1, + anon_sym_bitand, + ACTIONS(8707), 1, anon_sym_QMARK, - ACTIONS(8749), 1, - anon_sym_RPAREN, - STATE(2525), 1, + ACTIONS(8711), 1, + anon_sym_SEMI, + ACTIONS(8733), 1, + anon_sym_COMMA, + ACTIONS(8736), 1, + anon_sym_RBRACE, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8679), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, + ACTIONS(8701), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8747), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(8655), 3, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [143744] = 28, + [146097] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + STATE(4282), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5921), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(8738), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5919), 31, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(6429), 1, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(6431), 1, - anon_sym_DOT, - ACTIONS(8423), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, - anon_sym_SLASH, - ACTIONS(8653), 1, - anon_sym_AMP, - ACTIONS(8659), 1, - anon_sym_GT_EQ, - ACTIONS(8663), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, - anon_sym_bitor, - ACTIONS(8683), 1, - anon_sym_QMARK, - ACTIONS(8751), 1, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [146148] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(1688), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5078), 2, + sym_primitive_type, + sym_identifier, + ACTIONS(5384), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5167), 9, anon_sym_COMMA, - ACTIONS(8753), 1, anon_sym_RPAREN, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - STATE(7223), 1, - aux_sym_argument_list_repeat1, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8045), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8647), 2, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8651), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8661), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8667), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8655), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8657), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [143841] = 28, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + ACTIONS(5164), 23, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [146201] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(6979), 1, + ACTIONS(67), 1, + anon_sym_const, + ACTIONS(7848), 1, + anon_sym_LPAREN2, + ACTIONS(7862), 1, + anon_sym_LBRACK, + ACTIONS(8183), 1, + anon_sym_STAR, + ACTIONS(8185), 1, + anon_sym_AMP_AMP, + ACTIONS(8187), 1, + anon_sym_AMP, + STATE(1680), 1, + sym_alignas_qualifier, + STATE(3077), 1, + sym_parameter_list, + STATE(5953), 1, + sym__function_declarator_seq, + STATE(6520), 1, + sym__abstract_declarator, + ACTIONS(7304), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1669), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5952), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8453), 8, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(7297), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [146274] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6935), 1, anon_sym_LPAREN2, - ACTIONS(7659), 1, + ACTIONS(7720), 1, anon_sym_LBRACK, - ACTIONS(7663), 1, + ACTIONS(7734), 1, anon_sym_DOT, - ACTIONS(8705), 1, + ACTIONS(8740), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8707), 1, + ACTIONS(8742), 1, anon_sym_COMMA, - ACTIONS(8713), 1, + ACTIONS(8748), 1, anon_sym_SLASH, - ACTIONS(8719), 1, + ACTIONS(8754), 1, anon_sym_PIPE, - ACTIONS(8723), 1, + ACTIONS(8758), 1, anon_sym_AMP, - ACTIONS(8729), 1, + ACTIONS(8764), 1, anon_sym_LT_LT, - ACTIONS(8731), 1, + ACTIONS(8766), 1, anon_sym_GT_GT, - ACTIONS(8733), 1, + ACTIONS(8768), 1, anon_sym_QMARK, - ACTIONS(8735), 1, + ACTIONS(8770), 1, anon_sym_LT_EQ_GT, - ACTIONS(8737), 1, + ACTIONS(8772), 1, anon_sym_bitor, - ACTIONS(8739), 1, + ACTIONS(8774), 1, anon_sym_bitand, - ACTIONS(8755), 1, + ACTIONS(8778), 1, anon_sym_GT2, - STATE(3545), 1, + STATE(3632), 1, sym_argument_list, - STATE(3546), 1, + STATE(3652), 1, sym_subscript_argument_list, - STATE(7189), 1, + STATE(7430), 1, aux_sym_template_argument_list_repeat1, - ACTIONS(7665), 2, + ACTIONS(7736), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8709), 2, + ACTIONS(8744), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8711), 2, + ACTIONS(8746), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8715), 2, + ACTIONS(8750), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8717), 2, + ACTIONS(8752), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8721), 2, + ACTIONS(8756), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8741), 2, + ACTIONS(8776), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8725), 3, + ACTIONS(8760), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8727), 4, + ACTIONS(8762), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [143938] = 6, + [146371] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3887), 1, - anon_sym_LBRACE, - ACTIONS(8437), 1, - anon_sym_LPAREN2, - STATE(4803), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6188), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(5519), 1, + anon_sym_COLON_COLON, + ACTIONS(5541), 4, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6190), 24, - anon_sym_DOT_DOT_DOT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_const, + ACTIONS(5543), 34, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_or, anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [143991] = 28, + anon_sym_try, + anon_sym_requires, + [146420] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6979), 1, + STATE(4282), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5931), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(8738), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5929), 31, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [146471] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6935), 1, anon_sym_LPAREN2, - ACTIONS(7659), 1, + ACTIONS(7720), 1, anon_sym_LBRACK, - ACTIONS(7663), 1, + ACTIONS(7734), 1, anon_sym_DOT, - ACTIONS(8705), 1, + ACTIONS(8740), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8707), 1, + ACTIONS(8742), 1, anon_sym_COMMA, - ACTIONS(8713), 1, + ACTIONS(8748), 1, anon_sym_SLASH, - ACTIONS(8719), 1, + ACTIONS(8754), 1, anon_sym_PIPE, - ACTIONS(8723), 1, + ACTIONS(8758), 1, anon_sym_AMP, - ACTIONS(8729), 1, + ACTIONS(8764), 1, anon_sym_LT_LT, - ACTIONS(8731), 1, + ACTIONS(8766), 1, anon_sym_GT_GT, - ACTIONS(8733), 1, + ACTIONS(8768), 1, anon_sym_QMARK, - ACTIONS(8735), 1, + ACTIONS(8770), 1, anon_sym_LT_EQ_GT, - ACTIONS(8737), 1, + ACTIONS(8772), 1, anon_sym_bitor, - ACTIONS(8739), 1, + ACTIONS(8774), 1, anon_sym_bitand, - ACTIONS(8757), 1, + ACTIONS(8780), 1, anon_sym_GT2, - STATE(3545), 1, + STATE(3632), 1, sym_argument_list, - STATE(3546), 1, + STATE(3652), 1, sym_subscript_argument_list, - STATE(7204), 1, + STATE(7529), 1, aux_sym_template_argument_list_repeat1, - ACTIONS(7665), 2, + ACTIONS(7736), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8709), 2, + ACTIONS(8744), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8711), 2, + ACTIONS(8746), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8715), 2, + ACTIONS(8750), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8717), 2, + ACTIONS(8752), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8721), 2, + ACTIONS(8756), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8741), 2, + ACTIONS(8776), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8725), 3, + ACTIONS(8760), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8727), 4, + ACTIONS(8762), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [144088] = 28, + [146568] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8683), 1, + ACTIONS(8699), 1, + anon_sym_bitand, + ACTIONS(8707), 1, anon_sym_QMARK, - ACTIONS(8759), 1, + ACTIONS(8782), 1, anon_sym_COMMA, - ACTIONS(8761), 1, + ACTIONS(8784), 1, anon_sym_RPAREN, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - STATE(7387), 1, - aux_sym_generic_expression_repeat1, - ACTIONS(6433), 2, + STATE(7272), 1, + aux_sym_argument_list_repeat1, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8679), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, + ACTIONS(8701), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [144185] = 28, + [146665] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6979), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(7659), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(7663), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8705), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8707), 1, - anon_sym_COMMA, - ACTIONS(8713), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8719), 1, + ACTIONS(8681), 1, anon_sym_PIPE, - ACTIONS(8723), 1, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8729), 1, - anon_sym_LT_LT, - ACTIONS(8731), 1, - anon_sym_GT_GT, - ACTIONS(8733), 1, - anon_sym_QMARK, - ACTIONS(8735), 1, + ACTIONS(8691), 1, + anon_sym_GT_EQ, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8737), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8739), 1, + ACTIONS(8699), 1, anon_sym_bitand, - ACTIONS(8763), 1, - anon_sym_GT2, - STATE(3545), 1, + ACTIONS(8707), 1, + anon_sym_QMARK, + ACTIONS(8782), 1, + anon_sym_COMMA, + ACTIONS(8786), 1, + anon_sym_RPAREN, + STATE(2491), 1, sym_argument_list, - STATE(3546), 1, + STATE(2492), 1, sym_subscript_argument_list, - STATE(7212), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(7665), 2, + STATE(7318), 1, + aux_sym_argument_list_repeat1, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8709), 2, + ACTIONS(8048), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8711), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8715), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8717), 2, + ACTIONS(8679), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8721), 2, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8741), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8725), 3, + ACTIONS(8693), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8701), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8727), 4, + ACTIONS(8689), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [144282] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(7842), 1, - anon_sym_LPAREN2, - ACTIONS(7856), 1, - anon_sym_LBRACK, - ACTIONS(8167), 1, - anon_sym_STAR, - ACTIONS(8169), 1, - anon_sym_AMP_AMP, - ACTIONS(8171), 1, - anon_sym_AMP, - STATE(1658), 1, - sym_alignas_qualifier, - STATE(2991), 1, - sym_parameter_list, - STATE(5792), 1, - sym__function_declarator_seq, - STATE(6389), 1, - sym__abstract_declarator, - ACTIONS(7152), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1633), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5804), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8441), 8, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - ACTIONS(7145), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [144355] = 28, + [146762] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6979), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(7659), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(7663), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8705), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8707), 1, - anon_sym_COMMA, - ACTIONS(8713), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8719), 1, + ACTIONS(8681), 1, anon_sym_PIPE, - ACTIONS(8723), 1, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8729), 1, - anon_sym_LT_LT, - ACTIONS(8731), 1, - anon_sym_GT_GT, - ACTIONS(8733), 1, - anon_sym_QMARK, - ACTIONS(8735), 1, + ACTIONS(8691), 1, + anon_sym_GT_EQ, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8737), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8739), 1, + ACTIONS(8699), 1, anon_sym_bitand, - ACTIONS(8765), 1, - anon_sym_GT2, - STATE(3545), 1, + ACTIONS(8707), 1, + anon_sym_QMARK, + ACTIONS(8788), 1, + anon_sym_COMMA, + ACTIONS(8790), 1, + anon_sym_RBRACE, + STATE(2491), 1, sym_argument_list, - STATE(3546), 1, + STATE(2492), 1, sym_subscript_argument_list, - STATE(7219), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(7665), 2, + STATE(7321), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8709), 2, + ACTIONS(8048), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8711), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8715), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8717), 2, + ACTIONS(8679), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8721), 2, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8741), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8725), 3, + ACTIONS(8693), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8701), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8727), 4, + ACTIONS(8689), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [144452] = 28, + [146859] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8683), 1, + ACTIONS(8699), 1, + anon_sym_bitand, + ACTIONS(8707), 1, anon_sym_QMARK, - ACTIONS(8751), 1, + ACTIONS(8792), 1, anon_sym_COMMA, - ACTIONS(8767), 1, - anon_sym_RPAREN, - STATE(2525), 1, + ACTIONS(8794), 1, + anon_sym_RBRACE, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - STATE(7321), 1, - aux_sym_argument_list_repeat1, - ACTIONS(6433), 2, + STATE(7607), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8679), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, + ACTIONS(8701), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [144549] = 28, + [146956] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6979), 1, + ACTIONS(6935), 1, anon_sym_LPAREN2, - ACTIONS(7659), 1, + ACTIONS(7720), 1, anon_sym_LBRACK, - ACTIONS(7663), 1, + ACTIONS(7734), 1, anon_sym_DOT, - ACTIONS(8705), 1, + ACTIONS(8740), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8707), 1, + ACTIONS(8742), 1, anon_sym_COMMA, - ACTIONS(8713), 1, + ACTIONS(8748), 1, anon_sym_SLASH, - ACTIONS(8719), 1, + ACTIONS(8754), 1, anon_sym_PIPE, - ACTIONS(8723), 1, + ACTIONS(8758), 1, anon_sym_AMP, - ACTIONS(8729), 1, + ACTIONS(8764), 1, anon_sym_LT_LT, - ACTIONS(8731), 1, + ACTIONS(8766), 1, anon_sym_GT_GT, - ACTIONS(8733), 1, + ACTIONS(8768), 1, anon_sym_QMARK, - ACTIONS(8735), 1, + ACTIONS(8770), 1, anon_sym_LT_EQ_GT, - ACTIONS(8737), 1, + ACTIONS(8772), 1, anon_sym_bitor, - ACTIONS(8739), 1, + ACTIONS(8774), 1, anon_sym_bitand, - ACTIONS(8769), 1, + ACTIONS(8796), 1, anon_sym_GT2, - STATE(3545), 1, + STATE(3632), 1, sym_argument_list, - STATE(3546), 1, + STATE(3652), 1, sym_subscript_argument_list, - STATE(7230), 1, + STATE(7326), 1, aux_sym_template_argument_list_repeat1, - ACTIONS(7665), 2, + ACTIONS(7736), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8709), 2, + ACTIONS(8744), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8711), 2, + ACTIONS(8746), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8715), 2, + ACTIONS(8750), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8717), 2, + ACTIONS(8752), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8721), 2, + ACTIONS(8756), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8741), 2, + ACTIONS(8776), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8725), 3, + ACTIONS(8760), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8727), 4, + ACTIONS(8762), 4, anon_sym_GT, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [144646] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8771), 1, - anon_sym___attribute__, - ACTIONS(8774), 1, - anon_sym___attribute, - STATE(4337), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - ACTIONS(8633), 4, + anon_sym_LT_EQ, + anon_sym_LT, + [147053] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4405), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5968), 3, anon_sym_AMP, - anon_sym_LBRACK, + anon_sym___attribute, anon_sym_const, - anon_sym___asm, - ACTIONS(8631), 31, + ACTIONS(8798), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5966), 31, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, + anon_sym___attribute__, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, @@ -419424,537 +425247,606 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_try, - anon_sym_noexcept, - anon_sym_throw, anon_sym_requires, - [144699] = 28, + [147104] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8683), 1, + ACTIONS(8699), 1, + anon_sym_bitand, + ACTIONS(8707), 1, anon_sym_QMARK, - ACTIONS(8751), 1, + ACTIONS(8782), 1, anon_sym_COMMA, - ACTIONS(8777), 1, + ACTIONS(8800), 1, anon_sym_RPAREN, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - STATE(7499), 1, + STATE(7322), 1, aux_sym_argument_list_repeat1, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8679), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, + ACTIONS(8701), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [144796] = 28, + [147201] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6979), 1, + ACTIONS(6935), 1, anon_sym_LPAREN2, - ACTIONS(7659), 1, + ACTIONS(7720), 1, anon_sym_LBRACK, - ACTIONS(7663), 1, + ACTIONS(7734), 1, anon_sym_DOT, - ACTIONS(8705), 1, + ACTIONS(8740), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8707), 1, + ACTIONS(8742), 1, anon_sym_COMMA, - ACTIONS(8713), 1, + ACTIONS(8748), 1, anon_sym_SLASH, - ACTIONS(8719), 1, + ACTIONS(8754), 1, anon_sym_PIPE, - ACTIONS(8723), 1, + ACTIONS(8758), 1, anon_sym_AMP, - ACTIONS(8729), 1, + ACTIONS(8764), 1, anon_sym_LT_LT, - ACTIONS(8731), 1, + ACTIONS(8766), 1, anon_sym_GT_GT, - ACTIONS(8733), 1, + ACTIONS(8768), 1, anon_sym_QMARK, - ACTIONS(8735), 1, + ACTIONS(8770), 1, anon_sym_LT_EQ_GT, - ACTIONS(8737), 1, + ACTIONS(8772), 1, anon_sym_bitor, - ACTIONS(8739), 1, + ACTIONS(8774), 1, anon_sym_bitand, - ACTIONS(8779), 1, + ACTIONS(8802), 1, anon_sym_GT2, - STATE(3545), 1, + STATE(3632), 1, sym_argument_list, - STATE(3546), 1, + STATE(3652), 1, sym_subscript_argument_list, - STATE(7239), 1, + STATE(7242), 1, aux_sym_template_argument_list_repeat1, - ACTIONS(7665), 2, + ACTIONS(7736), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8709), 2, + ACTIONS(8744), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8711), 2, + ACTIONS(8746), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8715), 2, + ACTIONS(8750), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8717), 2, + ACTIONS(8752), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8721), 2, + ACTIONS(8756), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8741), 2, + ACTIONS(8776), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8725), 3, + ACTIONS(8760), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8727), 4, + ACTIONS(8762), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [144893] = 28, + [147298] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(7778), 1, + anon_sym_COMMA, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8683), 1, + ACTIONS(8699), 1, + anon_sym_bitand, + ACTIONS(8707), 1, anon_sym_QMARK, - ACTIONS(8781), 1, - anon_sym_COMMA, - ACTIONS(8783), 1, - anon_sym_RBRACE, - STATE(2525), 1, + ACTIONS(8804), 1, + anon_sym_RPAREN, + ACTIONS(8806), 1, + anon_sym_SEMI, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - STATE(7322), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8679), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, + ACTIONS(8701), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [144990] = 6, + [147395] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3887), 1, + STATE(4406), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5974), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(8808), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5972), 31, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, anon_sym_LBRACE, - ACTIONS(8437), 1, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [147446] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6935), 1, anon_sym_LPAREN2, - STATE(4797), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6204), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, + ACTIONS(7720), 1, + anon_sym_LBRACK, + ACTIONS(7734), 1, anon_sym_DOT, - ACTIONS(6206), 24, + ACTIONS(8740), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(8742), 1, anon_sym_COMMA, - 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, + ACTIONS(8748), 1, + anon_sym_SLASH, + ACTIONS(8754), 1, + anon_sym_PIPE, + ACTIONS(8758), 1, + anon_sym_AMP, + ACTIONS(8764), 1, anon_sym_LT_LT, - anon_sym_LBRACK, + ACTIONS(8766), 1, + anon_sym_GT_GT, + ACTIONS(8768), 1, anon_sym_QMARK, + ACTIONS(8770), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(8772), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(8774), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(8810), 1, + anon_sym_GT2, + STATE(3632), 1, + sym_argument_list, + STATE(3652), 1, + sym_subscript_argument_list, + STATE(7633), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(7736), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [145043] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(1296), 1, - sym__fold_operator, - ACTIONS(8787), 13, + ACTIONS(8744), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(8746), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(8785), 25, - anon_sym_COMMA, + ACTIONS(8750), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8752), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8756), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8776), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8760), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8762), 4, + anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, - 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_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [145092] = 28, + anon_sym_LT, + [147543] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6979), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(7659), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(7663), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8705), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8707), 1, - anon_sym_COMMA, - ACTIONS(8713), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8719), 1, + ACTIONS(8681), 1, anon_sym_PIPE, - ACTIONS(8723), 1, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8729), 1, - anon_sym_LT_LT, - ACTIONS(8731), 1, - anon_sym_GT_GT, - ACTIONS(8733), 1, - anon_sym_QMARK, - ACTIONS(8735), 1, + ACTIONS(8691), 1, + anon_sym_GT_EQ, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8737), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8739), 1, + ACTIONS(8699), 1, anon_sym_bitand, - ACTIONS(8789), 1, - anon_sym_GT2, - STATE(3545), 1, + ACTIONS(8707), 1, + anon_sym_QMARK, + ACTIONS(8812), 1, + anon_sym_COMMA, + ACTIONS(8814), 1, + anon_sym_RBRACE, + STATE(2491), 1, sym_argument_list, - STATE(3546), 1, + STATE(2492), 1, sym_subscript_argument_list, - STATE(7503), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(7665), 2, + STATE(7337), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8709), 2, + ACTIONS(8048), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8711), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8715), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8717), 2, + ACTIONS(8679), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8721), 2, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8741), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8725), 3, + ACTIONS(8693), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8701), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8727), 4, + ACTIONS(8689), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [145189] = 28, + [147640] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6979), 1, + ACTIONS(6935), 1, anon_sym_LPAREN2, - ACTIONS(7659), 1, + ACTIONS(7720), 1, anon_sym_LBRACK, - ACTIONS(7663), 1, + ACTIONS(7734), 1, anon_sym_DOT, - ACTIONS(8705), 1, + ACTIONS(8740), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8707), 1, + ACTIONS(8742), 1, anon_sym_COMMA, - ACTIONS(8713), 1, + ACTIONS(8748), 1, anon_sym_SLASH, - ACTIONS(8719), 1, + ACTIONS(8754), 1, anon_sym_PIPE, - ACTIONS(8723), 1, + ACTIONS(8758), 1, anon_sym_AMP, - ACTIONS(8729), 1, + ACTIONS(8764), 1, anon_sym_LT_LT, - ACTIONS(8731), 1, + ACTIONS(8766), 1, anon_sym_GT_GT, - ACTIONS(8733), 1, + ACTIONS(8768), 1, anon_sym_QMARK, - ACTIONS(8735), 1, + ACTIONS(8770), 1, anon_sym_LT_EQ_GT, - ACTIONS(8737), 1, + ACTIONS(8772), 1, anon_sym_bitor, - ACTIONS(8739), 1, + ACTIONS(8774), 1, anon_sym_bitand, - ACTIONS(8791), 1, + ACTIONS(8816), 1, anon_sym_GT2, - STATE(3545), 1, + STATE(3632), 1, sym_argument_list, - STATE(3546), 1, + STATE(3652), 1, sym_subscript_argument_list, - STATE(7329), 1, + STATE(7358), 1, aux_sym_template_argument_list_repeat1, - ACTIONS(7665), 2, + ACTIONS(7736), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8709), 2, + ACTIONS(8744), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8711), 2, + ACTIONS(8746), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8715), 2, + ACTIONS(8750), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8717), 2, + ACTIONS(8752), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8721), 2, + ACTIONS(8756), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8741), 2, + ACTIONS(8776), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8725), 3, + ACTIONS(8760), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8727), 4, + ACTIONS(8762), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [145286] = 28, + [147737] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5519), 1, + anon_sym_COLON_COLON, + ACTIONS(5541), 4, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_const, + ACTIONS(5543), 34, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [147786] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(6935), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(7720), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(7734), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8740), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8742), 1, + anon_sym_COMMA, + ACTIONS(8748), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8754), 1, + anon_sym_PIPE, + ACTIONS(8758), 1, anon_sym_AMP, - ACTIONS(8659), 1, - anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8764), 1, + anon_sym_LT_LT, + ACTIONS(8766), 1, + anon_sym_GT_GT, + ACTIONS(8768), 1, + anon_sym_QMARK, + ACTIONS(8770), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8772), 1, anon_sym_bitor, - ACTIONS(8683), 1, - anon_sym_QMARK, - ACTIONS(8793), 1, - anon_sym_COMMA, - ACTIONS(8795), 1, - anon_sym_RBRACE, - STATE(2525), 1, + ACTIONS(8774), 1, + anon_sym_bitand, + ACTIONS(8818), 1, + anon_sym_GT2, + STATE(3632), 1, sym_argument_list, - STATE(2526), 1, + STATE(3652), 1, sym_subscript_argument_list, - STATE(7256), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(6433), 2, + STATE(7514), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(7736), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8744), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8746), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8661), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, + ACTIONS(8750), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8752), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8756), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8776), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8760), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8762), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [145383] = 4, + [147883] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5454), 1, - anon_sym_COLON_COLON, - ACTIONS(5617), 4, + STATE(4282), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5980), 3, anon_sym_AMP, anon_sym___attribute, - anon_sym_COLON, anon_sym_const, - ACTIONS(5619), 34, + ACTIONS(8738), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5978), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, @@ -419975,8 +425867,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_or, - anon_sym_and, sym_auto, anon_sym_decltype, anon_sym_final, @@ -419984,25 +425874,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [145432] = 3, + [147934] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4955), 4, + STATE(4282), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5988), 3, anon_sym_AMP, anon_sym___attribute, - anon_sym_COLON, anon_sym_const, - ACTIONS(4957), 35, + ACTIONS(8738), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5986), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, anon_sym___attribute__, - anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, @@ -420019,8 +425913,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_or, - anon_sym_and, sym_auto, anon_sym_decltype, anon_sym_final, @@ -420028,163 +425920,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [145479] = 28, + [147985] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8683), 1, + ACTIONS(8699), 1, + anon_sym_bitand, + ACTIONS(8707), 1, anon_sym_QMARK, - ACTIONS(8751), 1, + ACTIONS(8820), 1, anon_sym_COMMA, - ACTIONS(8797), 1, + ACTIONS(8822), 1, anon_sym_RPAREN, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - STATE(7410), 1, - aux_sym_argument_list_repeat1, - ACTIONS(6433), 2, + STATE(7349), 1, + aux_sym_generic_expression_repeat1, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8661), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8667), 2, + ACTIONS(8679), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8681), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8655), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8657), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [145576] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6979), 1, - anon_sym_LPAREN2, - ACTIONS(7659), 1, - anon_sym_LBRACK, - ACTIONS(7663), 1, - anon_sym_DOT, - ACTIONS(8705), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8707), 1, - anon_sym_COMMA, - ACTIONS(8713), 1, - anon_sym_SLASH, - ACTIONS(8719), 1, - anon_sym_PIPE, - ACTIONS(8723), 1, - anon_sym_AMP, - ACTIONS(8729), 1, + ACTIONS(8683), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8693), 2, anon_sym_LT_LT, - ACTIONS(8731), 1, anon_sym_GT_GT, - ACTIONS(8733), 1, - anon_sym_QMARK, - ACTIONS(8735), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8737), 1, - anon_sym_bitor, - ACTIONS(8739), 1, - anon_sym_bitand, - ACTIONS(8799), 1, - anon_sym_GT2, - STATE(3545), 1, - sym_argument_list, - STATE(3546), 1, - sym_subscript_argument_list, - STATE(7293), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(7665), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8709), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8711), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8715), 2, + ACTIONS(8701), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8717), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8721), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8741), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8725), 3, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8727), 4, + ACTIONS(8689), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [145673] = 3, + [148082] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4984), 4, + STATE(4416), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5935), 3, anon_sym_AMP, anon_sym___attribute, - anon_sym_COLON, anon_sym_const, - ACTIONS(4986), 35, + ACTIONS(8824), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5933), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, anon_sym___attribute__, - anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, @@ -420201,8 +426028,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_or, - anon_sym_and, sym_auto, anon_sym_decltype, anon_sym_final, @@ -420210,25 +426035,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [145720] = 3, + [148133] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4980), 4, + STATE(4417), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5887), 3, anon_sym_AMP, anon_sym___attribute, - anon_sym_COLON, anon_sym_const, - ACTIONS(4982), 35, + ACTIONS(8826), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5885), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, anon_sym___attribute__, - anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, @@ -420245,8 +426074,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_or, - anon_sym_and, sym_auto, anon_sym_decltype, anon_sym_final, @@ -420254,25 +426081,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [145767] = 3, + [148184] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5845), 1, + anon_sym_LPAREN2, + ACTIONS(6414), 1, + anon_sym_LBRACK, + ACTIONS(6418), 1, + anon_sym_DOT, + ACTIONS(8449), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8677), 1, + anon_sym_SLASH, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, + anon_sym_AMP, + ACTIONS(8691), 1, + anon_sym_GT_EQ, + ACTIONS(8695), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8697), 1, + anon_sym_bitor, + ACTIONS(8699), 1, + anon_sym_bitand, + ACTIONS(8707), 1, + anon_sym_QMARK, + ACTIONS(8820), 1, + anon_sym_COMMA, + ACTIONS(8828), 1, + anon_sym_RPAREN, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + STATE(7245), 1, + aux_sym_generic_expression_repeat1, + ACTIONS(6420), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8048), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8673), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8675), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8679), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8683), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8693), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8701), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8687), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8689), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [148281] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4992), 4, + STATE(4282), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5893), 3, anon_sym_AMP, anon_sym___attribute, - anon_sym_COLON, anon_sym_const, - ACTIONS(4994), 35, + ACTIONS(8738), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5891), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, anon_sym___attribute__, - anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, @@ -420289,8 +426189,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_or, - anon_sym_and, sym_auto, anon_sym_decltype, anon_sym_final, @@ -420298,25 +426196,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [145814] = 3, + [148332] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4951), 4, + STATE(4383), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5776), 3, anon_sym_AMP, anon_sym___attribute, - anon_sym_COLON, anon_sym_const, - ACTIONS(4953), 35, + ACTIONS(8731), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5778), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, anon_sym___attribute__, - anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, @@ -420333,8 +426235,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_or, - anon_sym_and, sym_auto, anon_sym_decltype, anon_sym_final, @@ -420342,22 +426242,207 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [145861] = 4, + [148383] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5454), 1, - anon_sym_COLON_COLON, - ACTIONS(5617), 4, + ACTIONS(5845), 1, + anon_sym_LPAREN2, + ACTIONS(6414), 1, + anon_sym_LBRACK, + ACTIONS(6418), 1, + anon_sym_DOT, + ACTIONS(8449), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8830), 1, + anon_sym_COMMA, + ACTIONS(8836), 1, + anon_sym_SLASH, + ACTIONS(8842), 1, + anon_sym_PIPE, + ACTIONS(8846), 1, + anon_sym_AMP, + ACTIONS(8852), 1, + anon_sym_GT_EQ, + ACTIONS(8856), 1, + anon_sym_RBRACK, + ACTIONS(8858), 1, + anon_sym_QMARK, + ACTIONS(8860), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8862), 1, + anon_sym_bitor, + ACTIONS(8864), 1, + anon_sym_bitand, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + STATE(7666), 1, + aux_sym_subscript_argument_list_repeat1, + ACTIONS(6420), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8048), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8832), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8834), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8838), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8840), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8844), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8854), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8848), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8850), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [148480] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7081), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + ACTIONS(7083), 21, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [148527] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6935), 1, + anon_sym_LPAREN2, + ACTIONS(7720), 1, + anon_sym_LBRACK, + ACTIONS(7734), 1, + anon_sym_DOT, + ACTIONS(8740), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8742), 1, + anon_sym_COMMA, + ACTIONS(8748), 1, + anon_sym_SLASH, + ACTIONS(8754), 1, + anon_sym_PIPE, + ACTIONS(8758), 1, + anon_sym_AMP, + ACTIONS(8764), 1, + anon_sym_LT_LT, + ACTIONS(8766), 1, + anon_sym_GT_GT, + ACTIONS(8768), 1, + anon_sym_QMARK, + ACTIONS(8770), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8772), 1, + anon_sym_bitor, + ACTIONS(8774), 1, + anon_sym_bitand, + ACTIONS(8866), 1, + anon_sym_GT2, + STATE(3632), 1, + sym_argument_list, + STATE(3652), 1, + sym_subscript_argument_list, + STATE(7556), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(7736), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8744), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8746), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8750), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8752), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8756), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8776), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8760), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8762), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [148624] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4282), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5913), 3, anon_sym_AMP, anon_sym___attribute, - anon_sym_COLON, anon_sym_const, - ACTIONS(5619), 34, + ACTIONS(8738), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5911), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, @@ -420378,8 +426463,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_or, - anon_sym_and, sym_auto, anon_sym_decltype, anon_sym_final, @@ -420387,25 +426470,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [145910] = 3, + [148675] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4959), 4, + STATE(4282), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5953), 3, anon_sym_AMP, anon_sym___attribute, - anon_sym_COLON, anon_sym_const, - ACTIONS(4961), 35, + ACTIONS(8738), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5951), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, anon_sym___attribute__, - anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, @@ -420422,8 +426509,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_or, - anon_sym_and, sym_auto, anon_sym_decltype, anon_sym_final, @@ -420431,32 +426516,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [145957] = 5, + [148726] = 28, ACTIONS(3), 1, sym_comment, - STATE(4359), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5450), 3, + ACTIONS(5845), 1, + anon_sym_LPAREN2, + ACTIONS(6414), 1, + anon_sym_LBRACK, + ACTIONS(6418), 1, + anon_sym_DOT, + ACTIONS(8449), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8677), 1, + anon_sym_SLASH, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(8801), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5452), 31, + ACTIONS(8691), 1, + anon_sym_GT_EQ, + ACTIONS(8695), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8697), 1, + anon_sym_bitor, + ACTIONS(8699), 1, + anon_sym_bitand, + ACTIONS(8707), 1, + anon_sym_QMARK, + ACTIONS(8820), 1, anon_sym_COMMA, + ACTIONS(8868), 1, anon_sym_RPAREN, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + STATE(7288), 1, + aux_sym_generic_expression_repeat1, + ACTIONS(6420), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8048), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8673), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8675), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8679), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8683), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8693), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8701), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8687), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8689), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [148823] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(67), 1, + anon_sym_const, + ACTIONS(7848), 1, anon_sym_LPAREN2, + ACTIONS(7862), 1, + anon_sym_LBRACK, + ACTIONS(8183), 1, anon_sym_STAR, + ACTIONS(8185), 1, anon_sym_AMP_AMP, + ACTIONS(8187), 1, + anon_sym_AMP, + STATE(1680), 1, + sym_alignas_qualifier, + STATE(3077), 1, + sym_parameter_list, + STATE(5953), 1, + sym__function_declarator_seq, + STATE(6501), 1, + sym__abstract_declarator, + ACTIONS(7304), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1669), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5952), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6781), 8, + anon_sym_RPAREN, anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(7297), 12, + anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -420468,78 +426642,400 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + [148896] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(1261), 1, + sym__fold_operator, + ACTIONS(8872), 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(8870), 25, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_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_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [148945] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3879), 1, + anon_sym_LBRACE, + ACTIONS(8429), 1, + anon_sym_LPAREN2, + STATE(4864), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6224), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(6226), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + 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_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [148998] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7065), 1, + anon_sym_const, + ACTIONS(7848), 1, + anon_sym_LPAREN2, + ACTIONS(7862), 1, + anon_sym_LBRACK, + ACTIONS(8217), 1, + sym_auto, + ACTIONS(8219), 1, + anon_sym_decltype, + ACTIONS(8371), 1, + anon_sym_STAR, + ACTIONS(8373), 1, + anon_sym_AMP_AMP, + ACTIONS(8375), 1, + anon_sym_AMP, + STATE(3515), 1, + sym_parameter_list, + STATE(4036), 1, + sym_alignas_qualifier, + STATE(4730), 1, + sym_decltype_auto, + STATE(5953), 1, + sym__function_declarator_seq, + STATE(6693), 1, + sym__abstract_declarator, + ACTIONS(7067), 2, anon_sym_alignas, anon_sym__Alignas, + STATE(4867), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8213), 5, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(5952), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7052), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [149077] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7065), 1, + anon_sym_const, + ACTIONS(7848), 1, + anon_sym_LPAREN2, + ACTIONS(7862), 1, + anon_sym_LBRACK, + ACTIONS(8217), 1, sym_auto, + ACTIONS(8219), 1, anon_sym_decltype, + ACTIONS(8371), 1, + anon_sym_STAR, + ACTIONS(8373), 1, + anon_sym_AMP_AMP, + ACTIONS(8375), 1, + anon_sym_AMP, + STATE(3515), 1, + sym_parameter_list, + STATE(4036), 1, + sym_alignas_qualifier, + STATE(4730), 1, + sym_decltype_auto, + STATE(5953), 1, + sym__function_declarator_seq, + STATE(6703), 1, + sym__abstract_declarator, + ACTIONS(7067), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4872), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8221), 5, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_final, anon_sym_override, + anon_sym_requires, + STATE(5952), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7052), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [149156] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5845), 1, + anon_sym_LPAREN2, + ACTIONS(6414), 1, + anon_sym_LBRACK, + ACTIONS(6418), 1, + anon_sym_DOT, + ACTIONS(8449), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8677), 1, + anon_sym_SLASH, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, + anon_sym_AMP, + ACTIONS(8691), 1, + anon_sym_GT_EQ, + ACTIONS(8695), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8697), 1, + anon_sym_bitor, + ACTIONS(8699), 1, + anon_sym_bitand, + ACTIONS(8707), 1, + anon_sym_QMARK, + ACTIONS(8782), 1, + anon_sym_COMMA, + ACTIONS(8874), 1, + anon_sym_RPAREN, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + STATE(7605), 1, + aux_sym_argument_list_repeat1, + ACTIONS(6420), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8048), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8673), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8675), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8679), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8683), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8693), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8701), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8687), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8689), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [149253] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3879), 1, + anon_sym_LBRACE, + ACTIONS(8429), 1, + anon_sym_LPAREN2, + STATE(4898), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6309), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(6311), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + 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_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [146008] = 3, + [149306] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4988), 4, + ACTIONS(3879), 1, + anon_sym_LBRACE, + ACTIONS(8429), 1, + anon_sym_LPAREN2, + STATE(4848), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6262), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_const, - ACTIONS(4990), 35, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(6264), 24, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [146055] = 8, + [149359] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7083), 1, + ACTIONS(7283), 1, anon_sym___attribute__, - ACTIONS(7085), 1, + ACTIONS(7285), 1, anon_sym___attribute, - ACTIONS(8679), 1, + ACTIONS(8705), 1, anon_sym_LBRACE, - STATE(4434), 1, + STATE(4580), 1, sym_enumerator_list, - STATE(4588), 1, + STATE(4758), 1, sym_attribute_specifier, - ACTIONS(6024), 4, + ACTIONS(6066), 4, anon_sym_AMP, anon_sym_LBRACK, anon_sym_const, anon_sym___asm, - ACTIONS(6026), 30, + ACTIONS(6068), 30, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -420570,31 +427066,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [146112] = 5, + [149416] = 8, ACTIONS(3), 1, sym_comment, - STATE(4217), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5890), 3, - anon_sym_AMP, + ACTIONS(7283), 1, + anon_sym___attribute__, + ACTIONS(7285), 1, anon_sym___attribute, + ACTIONS(8705), 1, + anon_sym_LBRACE, + STATE(4497), 1, + sym_enumerator_list, + STATE(4670), 1, + sym_attribute_specifier, + ACTIONS(6072), 4, + anon_sym_AMP, + anon_sym_LBRACK, anon_sym_const, - ACTIONS(8803), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5888), 31, + anon_sym___asm, + ACTIONS(6074), 30, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, @@ -420609,620 +427107,495 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_try, anon_sym_requires, - [146163] = 28, + [149473] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(6935), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(7720), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(7734), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8740), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8742), 1, + anon_sym_COMMA, + ACTIONS(8748), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8754), 1, + anon_sym_PIPE, + ACTIONS(8758), 1, anon_sym_AMP, - ACTIONS(8659), 1, - anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8764), 1, + anon_sym_LT_LT, + ACTIONS(8766), 1, + anon_sym_GT_GT, + ACTIONS(8768), 1, + anon_sym_QMARK, + ACTIONS(8770), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8772), 1, anon_sym_bitor, - ACTIONS(8683), 1, - anon_sym_QMARK, - ACTIONS(8759), 1, - anon_sym_COMMA, - ACTIONS(8805), 1, - anon_sym_RPAREN, - STATE(2525), 1, + ACTIONS(8774), 1, + anon_sym_bitand, + ACTIONS(8876), 1, + anon_sym_GT2, + STATE(3632), 1, sym_argument_list, - STATE(2526), 1, + STATE(3652), 1, sym_subscript_argument_list, - STATE(7233), 1, - aux_sym_generic_expression_repeat1, - ACTIONS(6433), 2, + STATE(7609), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(7736), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8744), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8746), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8661), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, + ACTIONS(8750), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8752), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8756), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8776), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8760), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8762), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [146260] = 28, + [149570] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(7778), 1, + anon_sym_COMMA, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8683), 1, + ACTIONS(8699), 1, + anon_sym_bitand, + ACTIONS(8707), 1, anon_sym_QMARK, - ACTIONS(8695), 1, - anon_sym_RBRACE, - ACTIONS(8807), 1, - anon_sym_COMMA, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - STATE(7483), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8679), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, + ACTIONS(8701), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8878), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [146357] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7036), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_literal_suffix, - ACTIONS(7038), 21, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [146404] = 28, + [149665] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8809), 1, - anon_sym_COMMA, - ACTIONS(8815), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8821), 1, + ACTIONS(8681), 1, anon_sym_PIPE, - ACTIONS(8825), 1, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8831), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8835), 1, - anon_sym_RBRACK, - ACTIONS(8837), 1, - anon_sym_QMARK, - ACTIONS(8839), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8841), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8843), 1, + ACTIONS(8699), 1, anon_sym_bitand, - STATE(2525), 1, + ACTIONS(8707), 1, + anon_sym_QMARK, + ACTIONS(8713), 1, + anon_sym_RBRACE, + ACTIONS(8880), 1, + anon_sym_COMMA, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - STATE(7170), 1, - aux_sym_subscript_argument_list_repeat1, - ACTIONS(6433), 2, + STATE(7314), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8811), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8813), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8817), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8819), 2, + ACTIONS(8679), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8823), 2, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8833), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8827), 3, + ACTIONS(8701), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8829), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [146501] = 28, + [149762] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8683), 1, + ACTIONS(8699), 1, + anon_sym_bitand, + ACTIONS(8707), 1, anon_sym_QMARK, - ACTIONS(8751), 1, + ACTIONS(8782), 1, anon_sym_COMMA, - ACTIONS(8845), 1, + ACTIONS(8882), 1, anon_sym_RPAREN, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - STATE(7413), 1, + STATE(7443), 1, aux_sym_argument_list_repeat1, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8661), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8667), 2, + ACTIONS(8679), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8681), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8655), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8657), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [146598] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5827), 1, - anon_sym_LPAREN2, - ACTIONS(6429), 1, - anon_sym_LBRACK, - ACTIONS(6431), 1, - anon_sym_DOT, - ACTIONS(8423), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, - anon_sym_SLASH, - ACTIONS(8653), 1, - anon_sym_AMP, - ACTIONS(8659), 1, - anon_sym_GT_EQ, - ACTIONS(8663), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, - anon_sym_bitor, - ACTIONS(8683), 1, - anon_sym_QMARK, - ACTIONS(8847), 1, - anon_sym_COMMA, - ACTIONS(8849), 1, - anon_sym_RBRACE, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - STATE(7414), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8045), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8647), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, + ACTIONS(8701), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [146695] = 28, + [149859] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8683), 1, + ACTIONS(8699), 1, + anon_sym_bitand, + ACTIONS(8707), 1, anon_sym_QMARK, - ACTIONS(8851), 1, + ACTIONS(8884), 1, anon_sym_COMMA, - ACTIONS(8853), 1, + ACTIONS(8886), 1, anon_sym_RBRACE, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - STATE(7178), 1, + STATE(7445), 1, aux_sym_initializer_list_repeat1, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8679), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, + ACTIONS(8701), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [146792] = 28, + [149956] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6979), 1, + ACTIONS(6935), 1, anon_sym_LPAREN2, - ACTIONS(7659), 1, + ACTIONS(7720), 1, anon_sym_LBRACK, - ACTIONS(7663), 1, + ACTIONS(7734), 1, anon_sym_DOT, - ACTIONS(8705), 1, + ACTIONS(8740), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8707), 1, + ACTIONS(8742), 1, anon_sym_COMMA, - ACTIONS(8713), 1, + ACTIONS(8748), 1, anon_sym_SLASH, - ACTIONS(8719), 1, + ACTIONS(8754), 1, anon_sym_PIPE, - ACTIONS(8723), 1, + ACTIONS(8758), 1, anon_sym_AMP, - ACTIONS(8729), 1, + ACTIONS(8764), 1, anon_sym_LT_LT, - ACTIONS(8731), 1, + ACTIONS(8766), 1, anon_sym_GT_GT, - ACTIONS(8733), 1, + ACTIONS(8768), 1, anon_sym_QMARK, - ACTIONS(8735), 1, + ACTIONS(8770), 1, anon_sym_LT_EQ_GT, - ACTIONS(8737), 1, + ACTIONS(8772), 1, anon_sym_bitor, - ACTIONS(8739), 1, + ACTIONS(8774), 1, anon_sym_bitand, - ACTIONS(8855), 1, + ACTIONS(8888), 1, anon_sym_GT2, - STATE(3545), 1, + STATE(3632), 1, sym_argument_list, - STATE(3546), 1, + STATE(3652), 1, sym_subscript_argument_list, - STATE(7552), 1, + STATE(7449), 1, aux_sym_template_argument_list_repeat1, - ACTIONS(7665), 2, + ACTIONS(7736), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8709), 2, + ACTIONS(8744), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8711), 2, + ACTIONS(8746), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8715), 2, + ACTIONS(8750), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8717), 2, + ACTIONS(8752), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8721), 2, + ACTIONS(8756), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8741), 2, + ACTIONS(8776), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8725), 3, + ACTIONS(8760), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8727), 4, + ACTIONS(8762), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [146889] = 28, + [150053] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(67), 1, + anon_sym_const, + ACTIONS(7848), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(7862), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, - anon_sym_DOT, - ACTIONS(8423), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8809), 1, - anon_sym_COMMA, - ACTIONS(8815), 1, - anon_sym_SLASH, - ACTIONS(8821), 1, - anon_sym_PIPE, - ACTIONS(8825), 1, - anon_sym_AMP, - ACTIONS(8831), 1, - anon_sym_GT_EQ, - ACTIONS(8837), 1, - anon_sym_QMARK, - ACTIONS(8839), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8841), 1, - anon_sym_bitor, - ACTIONS(8843), 1, - anon_sym_bitand, - ACTIONS(8857), 1, - anon_sym_RBRACK, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - STATE(7345), 1, - aux_sym_subscript_argument_list_repeat1, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8045), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8811), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8813), 2, + ACTIONS(8183), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8817), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8819), 2, + ACTIONS(8185), 1, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8823), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8833), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8827), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8829), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [146986] = 6, + ACTIONS(8187), 1, + anon_sym_AMP, + STATE(1680), 1, + sym_alignas_qualifier, + STATE(3077), 1, + sym_parameter_list, + STATE(5953), 1, + sym__function_declarator_seq, + STATE(6506), 1, + sym__abstract_declarator, + ACTIONS(7304), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1669), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5952), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8487), 8, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(7297), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [150126] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3887), 1, + ACTIONS(3879), 1, anon_sym_LBRACE, - ACTIONS(8437), 1, + ACTIONS(8429), 1, anon_sym_LPAREN2, - STATE(4781), 2, + STATE(4879), 2, sym_argument_list, sym_initializer_list, - ACTIONS(6172), 11, + ACTIONS(6283), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -421234,7 +427607,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6174), 24, + ACTIONS(6285), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -421259,98 +427632,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [147039] = 28, + [150179] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6979), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(7659), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(7663), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8705), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8707), 1, - anon_sym_COMMA, - ACTIONS(8713), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8719), 1, + ACTIONS(8681), 1, anon_sym_PIPE, - ACTIONS(8723), 1, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8729), 1, - anon_sym_LT_LT, - ACTIONS(8731), 1, - anon_sym_GT_GT, - ACTIONS(8733), 1, - anon_sym_QMARK, - ACTIONS(8735), 1, + ACTIONS(8691), 1, + anon_sym_GT_EQ, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8737), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8739), 1, + ACTIONS(8699), 1, anon_sym_bitand, - ACTIONS(8859), 1, - anon_sym_GT2, - STATE(3545), 1, + ACTIONS(8707), 1, + anon_sym_QMARK, + ACTIONS(8820), 1, + anon_sym_COMMA, + ACTIONS(8890), 1, + anon_sym_RPAREN, + STATE(2491), 1, sym_argument_list, - STATE(3546), 1, + STATE(2492), 1, sym_subscript_argument_list, - STATE(7417), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(7665), 2, + STATE(7476), 1, + aux_sym_generic_expression_repeat1, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8709), 2, + ACTIONS(8048), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8711), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8715), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8717), 2, + ACTIONS(8679), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8721), 2, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8741), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8725), 3, + ACTIONS(8693), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8701), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8727), 4, + ACTIONS(8689), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [147136] = 5, + [150276] = 3, ACTIONS(3), 1, sym_comment, - STATE(4379), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5938), 3, + ACTIONS(5006), 4, anon_sym_AMP, anon_sym___attribute, + anon_sym_COLON, anon_sym_const, - ACTIONS(8861), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5936), 31, + ACTIONS(5008), 35, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, anon_sym___attribute__, + anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, @@ -421367,6 +427736,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, + anon_sym_or, + anon_sym_and, sym_auto, anon_sym_decltype, anon_sym_final, @@ -421374,218 +427745,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [147187] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5827), 1, - anon_sym_LPAREN2, - ACTIONS(6429), 1, - anon_sym_LBRACK, - ACTIONS(6431), 1, - anon_sym_DOT, - ACTIONS(8423), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, - anon_sym_SLASH, - ACTIONS(8653), 1, - anon_sym_AMP, - ACTIONS(8659), 1, - anon_sym_GT_EQ, - ACTIONS(8663), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, - anon_sym_bitor, - ACTIONS(8683), 1, - anon_sym_QMARK, - ACTIONS(8703), 1, - anon_sym_SEMI, - ACTIONS(8863), 1, - anon_sym_COMMA, - ACTIONS(8866), 1, - anon_sym_RBRACE, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8045), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8647), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8651), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8661), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8655), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8657), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [147284] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7059), 1, - anon_sym_const, - ACTIONS(7842), 1, - anon_sym_LPAREN2, - ACTIONS(7856), 1, - anon_sym_LBRACK, - ACTIONS(8189), 1, - sym_auto, - ACTIONS(8191), 1, - anon_sym_decltype, - ACTIONS(8367), 1, - anon_sym_STAR, - ACTIONS(8369), 1, - anon_sym_AMP_AMP, - ACTIONS(8371), 1, - anon_sym_AMP, - STATE(3459), 1, - sym_parameter_list, - STATE(3992), 1, - sym_alignas_qualifier, - STATE(4633), 1, - sym_decltype_auto, - STATE(5792), 1, - sym__function_declarator_seq, - STATE(6616), 1, - sym__abstract_declarator, - ACTIONS(7061), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4818), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8205), 5, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - STATE(5804), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7046), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [147363] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7059), 1, - anon_sym_const, - ACTIONS(7842), 1, - anon_sym_LPAREN2, - ACTIONS(7856), 1, - anon_sym_LBRACK, - ACTIONS(8189), 1, - sym_auto, - ACTIONS(8191), 1, - anon_sym_decltype, - ACTIONS(8367), 1, - anon_sym_STAR, - ACTIONS(8369), 1, - anon_sym_AMP_AMP, - ACTIONS(8371), 1, - anon_sym_AMP, - STATE(3459), 1, - sym_parameter_list, - STATE(3992), 1, - sym_alignas_qualifier, - STATE(4633), 1, - sym_decltype_auto, - STATE(5792), 1, - sym__function_declarator_seq, - STATE(6622), 1, - sym__abstract_declarator, - ACTIONS(7061), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4821), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8185), 5, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - STATE(5804), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7046), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [147442] = 5, + [150323] = 3, ACTIONS(3), 1, sym_comment, - STATE(4381), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5932), 3, + ACTIONS(5010), 4, anon_sym_AMP, anon_sym___attribute, + anon_sym_COLON, anon_sym_const, - ACTIONS(8868), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5930), 31, + ACTIONS(5012), 35, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, anon_sym___attribute__, + anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, @@ -421602,6 +427780,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, + anon_sym_or, + anon_sym_and, sym_auto, anon_sym_decltype, anon_sym_final, @@ -421609,17 +427789,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [147493] = 4, + [150370] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5454), 1, - anon_sym_COLON_COLON, - ACTIONS(5625), 4, + ACTIONS(4998), 4, anon_sym_AMP, anon_sym___attribute, anon_sym_COLON, anon_sym_const, - ACTIONS(5627), 34, + ACTIONS(5000), 35, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -421629,6 +427807,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym___extension__, anon_sym___attribute__, + anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, @@ -421654,84 +427833,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [147542] = 28, + [150417] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(6935), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(7720), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(7734), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8740), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8742), 1, + anon_sym_COMMA, + ACTIONS(8748), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8754), 1, + anon_sym_PIPE, + ACTIONS(8758), 1, anon_sym_AMP, - ACTIONS(8659), 1, - anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8764), 1, + anon_sym_LT_LT, + ACTIONS(8766), 1, + anon_sym_GT_GT, + ACTIONS(8768), 1, + anon_sym_QMARK, + ACTIONS(8770), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8772), 1, anon_sym_bitor, - ACTIONS(8683), 1, - anon_sym_QMARK, - ACTIONS(8759), 1, - anon_sym_COMMA, - ACTIONS(8870), 1, - anon_sym_RPAREN, - STATE(2525), 1, + ACTIONS(8774), 1, + anon_sym_bitand, + ACTIONS(8892), 1, + anon_sym_GT2, + STATE(3632), 1, sym_argument_list, - STATE(2526), 1, + STATE(3652), 1, sym_subscript_argument_list, - STATE(7341), 1, - aux_sym_generic_expression_repeat1, - ACTIONS(6433), 2, + STATE(7629), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(7736), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8744), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8746), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8661), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, + ACTIONS(8750), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8752), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8756), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8776), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8760), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8762), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [147639] = 3, + [150514] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4996), 4, + ACTIONS(5014), 4, anon_sym_AMP, anon_sym___attribute, anon_sym_COLON, anon_sym_const, - ACTIONS(5003), 35, + ACTIONS(5016), 35, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -421767,29 +427946,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [147686] = 5, + [150561] = 3, ACTIONS(3), 1, sym_comment, - STATE(4217), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5944), 3, + ACTIONS(5002), 4, anon_sym_AMP, anon_sym___attribute, + anon_sym_COLON, anon_sym_const, - ACTIONS(8803), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5942), 31, + ACTIONS(5004), 35, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, anon_sym___attribute__, + anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, @@ -421806,6 +427981,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, + anon_sym_or, + anon_sym_and, sym_auto, anon_sym_decltype, anon_sym_final, @@ -421813,74 +427990,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [147737] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7081), 1, - sym_literal_suffix, - ACTIONS(4154), 17, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - ACTIONS(4146), 21, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [147786] = 5, + [150608] = 3, ACTIONS(3), 1, sym_comment, - STATE(4217), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5896), 3, + ACTIONS(4976), 4, anon_sym_AMP, anon_sym___attribute, + anon_sym_COLON, anon_sym_const, - ACTIONS(8803), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5894), 31, + ACTIONS(4978), 35, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, anon_sym___attribute__, + anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, @@ -421897,6 +428025,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, + anon_sym_or, + anon_sym_and, sym_auto, anon_sym_decltype, anon_sym_final, @@ -421904,33 +428034,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [147837] = 8, + [150655] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7083), 1, - anon_sym___attribute__, - ACTIONS(7085), 1, - anon_sym___attribute, - ACTIONS(8679), 1, - anon_sym_LBRACE, - STATE(4501), 1, - sym_enumerator_list, - STATE(4701), 1, - sym_attribute_specifier, - ACTIONS(5983), 4, + ACTIONS(4980), 4, anon_sym_AMP, - anon_sym_LBRACK, + anon_sym___attribute, + anon_sym_COLON, anon_sym_const, - anon_sym___asm, - ACTIONS(5985), 30, + ACTIONS(4982), 35, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, + anon_sym___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, @@ -421945,39 +428069,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, + anon_sym_or, + anon_sym_and, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_try, anon_sym_requires, - [147894] = 5, + [150702] = 6, ACTIONS(3), 1, sym_comment, - STATE(4392), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5904), 3, - anon_sym_AMP, + ACTIONS(8894), 1, + anon_sym___attribute__, + ACTIONS(8897), 1, anon_sym___attribute, + STATE(4446), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(8657), 4, + anon_sym_AMP, + anon_sym_LBRACK, anon_sym_const, - ACTIONS(8872), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5902), 31, + anon_sym___asm, + ACTIONS(8655), 31, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, - anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, @@ -421992,48 +428116,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_auto, - anon_sym_decltype, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, anon_sym_requires, - [147945] = 12, + [150755] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5499), 1, - anon_sym_COLON, - ACTIONS(8874), 1, - anon_sym___attribute__, - ACTIONS(8876), 1, - anon_sym___attribute, - ACTIONS(8878), 1, - anon_sym_LBRACE, - STATE(4885), 1, - sym_field_declaration_list, - STATE(4941), 1, - sym_attribute_specifier, - STATE(7016), 1, - sym_virtual_specifier, - STATE(7624), 1, - sym_base_class_clause, - ACTIONS(5493), 2, - anon_sym_AMP, + ACTIONS(67), 1, anon_sym_const, - ACTIONS(6020), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5495), 27, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(7848), 1, anon_sym_LPAREN2, + ACTIONS(7862), 1, + anon_sym_LBRACK, + ACTIONS(8183), 1, anon_sym_STAR, + ACTIONS(8185), 1, anon_sym_AMP_AMP, + ACTIONS(8187), 1, + anon_sym_AMP, + STATE(1680), 1, + sym_alignas_qualifier, + STATE(3077), 1, + sym_parameter_list, + STATE(5953), 1, + sym__function_declarator_seq, + STATE(6518), 1, + sym__abstract_declarator, + ACTIONS(7304), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1669), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5952), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(5877), 8, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(7297), 12, anon_sym___extension__, - anon_sym_LBRACK, - anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -422045,146 +428182,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [148010] = 28, + [150828] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8830), 1, + anon_sym_COMMA, + ACTIONS(8836), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8842), 1, + anon_sym_PIPE, + ACTIONS(8846), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8852), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8858), 1, + anon_sym_QMARK, + ACTIONS(8860), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8862), 1, anon_sym_bitor, - ACTIONS(8683), 1, - anon_sym_QMARK, - ACTIONS(8751), 1, - anon_sym_COMMA, - ACTIONS(8880), 1, - anon_sym_RPAREN, - STATE(2525), 1, + ACTIONS(8864), 1, + anon_sym_bitand, + ACTIONS(8900), 1, + anon_sym_RBRACK, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - STATE(7175), 1, - aux_sym_argument_list_repeat1, - ACTIONS(6433), 2, + STATE(7432), 1, + aux_sym_subscript_argument_list_repeat1, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8832), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8834), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8838), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8840), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8844), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8854), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8848), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8850), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [148107] = 8, + [150925] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(4167), 1, - anon_sym_COLON_COLON, - ACTIONS(6630), 1, - anon_sym_LT, - STATE(1603), 1, - sym_template_argument_list, - STATE(2355), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5977), 3, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(5060), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5979), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym___extension__, + ACTIONS(5563), 1, + anon_sym_COLON, + ACTIONS(8902), 1, anon_sym___attribute__, + ACTIONS(8904), 1, + anon_sym___attribute, + ACTIONS(8906), 1, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [148164] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(4394), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5922), 3, + STATE(4956), 1, + sym_field_declaration_list, + STATE(4992), 1, + sym_attribute_specifier, + STATE(7054), 1, + sym_virtual_specifier, + STATE(7990), 1, + sym_base_class_clause, + ACTIONS(5557), 2, anon_sym_AMP, - anon_sym___attribute, anon_sym_const, - ACTIONS(8882), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5920), 31, + ACTIONS(6037), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5559), 27, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -422192,8 +428284,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, anon_sym_constexpr, @@ -422211,80 +428301,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_GT2, anon_sym_try, anon_sym_requires, - [148215] = 5, + [150990] = 28, ACTIONS(3), 1, sym_comment, - STATE(4217), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5928), 3, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(8803), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5926), 31, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6935), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, + ACTIONS(7720), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, + ACTIONS(7734), 1, + anon_sym_DOT, + ACTIONS(8740), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8742), 1, + anon_sym_COMMA, + ACTIONS(8748), 1, + anon_sym_SLASH, + ACTIONS(8754), 1, + anon_sym_PIPE, + ACTIONS(8758), 1, + anon_sym_AMP, + ACTIONS(8764), 1, + anon_sym_LT_LT, + ACTIONS(8766), 1, + anon_sym_GT_GT, + ACTIONS(8768), 1, + anon_sym_QMARK, + ACTIONS(8770), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8772), 1, + anon_sym_bitor, + ACTIONS(8774), 1, + anon_sym_bitand, + ACTIONS(8908), 1, anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [148266] = 5, + STATE(3632), 1, + sym_argument_list, + STATE(3652), 1, + sym_subscript_argument_list, + STATE(7645), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(7736), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8744), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8746), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8750), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8752), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8756), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8776), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8760), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8762), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [151087] = 3, ACTIONS(3), 1, sym_comment, - STATE(4359), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5750), 3, + ACTIONS(5545), 4, anon_sym_AMP, anon_sym___attribute, + anon_sym_COLON, anon_sym_const, - ACTIONS(8801), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5752), 31, + ACTIONS(5547), 35, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, anon_sym___attribute__, + anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, @@ -422301,6 +428408,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, + anon_sym_or, + anon_sym_and, sym_auto, anon_sym_decltype, anon_sym_final, @@ -422308,260 +428417,277 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [148317] = 28, + [151134] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5845), 1, + anon_sym_LPAREN2, + ACTIONS(6414), 1, + anon_sym_LBRACK, + ACTIONS(6418), 1, + anon_sym_DOT, + ACTIONS(8449), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8677), 1, + anon_sym_SLASH, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, + anon_sym_AMP, + ACTIONS(8691), 1, + anon_sym_GT_EQ, + ACTIONS(8695), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8697), 1, + anon_sym_bitor, + ACTIONS(8699), 1, + anon_sym_bitand, + ACTIONS(8707), 1, + anon_sym_QMARK, + ACTIONS(8782), 1, + anon_sym_COMMA, + ACTIONS(8910), 1, + anon_sym_RPAREN, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + STATE(7573), 1, + aux_sym_argument_list_repeat1, + ACTIONS(6420), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8048), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8673), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8675), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8679), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8683), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8693), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8701), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8687), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8689), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [151231] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8683), 1, + ACTIONS(8699), 1, + anon_sym_bitand, + ACTIONS(8707), 1, anon_sym_QMARK, - ACTIONS(8759), 1, + ACTIONS(8912), 1, anon_sym_COMMA, - ACTIONS(8884), 1, - anon_sym_RPAREN, - STATE(2525), 1, + ACTIONS(8914), 1, + anon_sym_RBRACE, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - STATE(7438), 1, - aux_sym_generic_expression_repeat1, - ACTIONS(6433), 2, + STATE(7574), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8679), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, + ACTIONS(8701), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [148414] = 28, + [151328] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6979), 1, + ACTIONS(6935), 1, anon_sym_LPAREN2, - ACTIONS(7659), 1, + ACTIONS(7720), 1, anon_sym_LBRACK, - ACTIONS(7663), 1, + ACTIONS(7734), 1, anon_sym_DOT, - ACTIONS(8705), 1, + ACTIONS(8740), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8707), 1, + ACTIONS(8742), 1, anon_sym_COMMA, - ACTIONS(8713), 1, + ACTIONS(8748), 1, anon_sym_SLASH, - ACTIONS(8719), 1, + ACTIONS(8754), 1, anon_sym_PIPE, - ACTIONS(8723), 1, + ACTIONS(8758), 1, anon_sym_AMP, - ACTIONS(8729), 1, + ACTIONS(8764), 1, anon_sym_LT_LT, - ACTIONS(8731), 1, + ACTIONS(8766), 1, anon_sym_GT_GT, - ACTIONS(8733), 1, + ACTIONS(8768), 1, anon_sym_QMARK, - ACTIONS(8735), 1, + ACTIONS(8770), 1, anon_sym_LT_EQ_GT, - ACTIONS(8737), 1, + ACTIONS(8772), 1, anon_sym_bitor, - ACTIONS(8739), 1, + ACTIONS(8774), 1, anon_sym_bitand, - ACTIONS(8886), 1, + ACTIONS(8916), 1, anon_sym_GT2, - STATE(3545), 1, + STATE(3632), 1, sym_argument_list, - STATE(3546), 1, + STATE(3652), 1, sym_subscript_argument_list, - STATE(7156), 1, + STATE(7578), 1, aux_sym_template_argument_list_repeat1, - ACTIONS(7665), 2, + ACTIONS(7736), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8709), 2, + ACTIONS(8744), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8711), 2, + ACTIONS(8746), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8715), 2, + ACTIONS(8750), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8717), 2, + ACTIONS(8752), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8721), 2, + ACTIONS(8756), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8741), 2, + ACTIONS(8776), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8725), 3, + ACTIONS(8760), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8727), 4, + ACTIONS(8762), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [148511] = 5, + [151425] = 4, ACTIONS(3), 1, sym_comment, - STATE(4217), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5910), 3, + ACTIONS(7041), 1, + sym_literal_suffix, + ACTIONS(4174), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(8803), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5908), 31, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [148562] = 6, - ACTIONS(3), 1, - sym_comment, - STATE(1669), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5070), 2, - sym_primitive_type, - sym_identifier, - ACTIONS(5370), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5156), 9, + anon_sym___attribute, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + ACTIONS(4166), 21, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(5159), 23, - anon_sym_AMP, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [148615] = 5, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [151474] = 3, ACTIONS(3), 1, sym_comment, - STATE(4217), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5918), 3, + ACTIONS(4984), 4, anon_sym_AMP, anon_sym___attribute, + anon_sym_COLON, anon_sym_const, - ACTIONS(8803), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5916), 31, + ACTIONS(4991), 35, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, anon_sym___attribute__, + anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, @@ -422578,6 +428704,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, + anon_sym_or, + anon_sym_and, sym_auto, anon_sym_decltype, anon_sym_final, @@ -422585,222 +428713,293 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [148666] = 28, + [151521] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(6935), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(7720), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(7734), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8740), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8742), 1, + anon_sym_COMMA, + ACTIONS(8748), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8754), 1, + anon_sym_PIPE, + ACTIONS(8758), 1, anon_sym_AMP, - ACTIONS(8659), 1, - anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8764), 1, + anon_sym_LT_LT, + ACTIONS(8766), 1, + anon_sym_GT_GT, + ACTIONS(8768), 1, + anon_sym_QMARK, + ACTIONS(8770), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8772), 1, anon_sym_bitor, - ACTIONS(8683), 1, - anon_sym_QMARK, - ACTIONS(8751), 1, - anon_sym_COMMA, - ACTIONS(8888), 1, - anon_sym_RPAREN, - STATE(2525), 1, + ACTIONS(8774), 1, + anon_sym_bitand, + ACTIONS(8918), 1, + anon_sym_GT2, + STATE(3632), 1, sym_argument_list, - STATE(2526), 1, + STATE(3652), 1, sym_subscript_argument_list, - STATE(7305), 1, - aux_sym_argument_list_repeat1, - ACTIONS(6433), 2, + STATE(7298), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(7736), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8744), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8746), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8750), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8752), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8756), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8776), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8760), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8762), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [151618] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6935), 1, + anon_sym_LPAREN2, + ACTIONS(7720), 1, + anon_sym_LBRACK, + ACTIONS(7734), 1, + anon_sym_DOT, + ACTIONS(8740), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8742), 1, + anon_sym_COMMA, + ACTIONS(8748), 1, + anon_sym_SLASH, + ACTIONS(8754), 1, + anon_sym_PIPE, + ACTIONS(8758), 1, + anon_sym_AMP, + ACTIONS(8764), 1, anon_sym_LT_LT, + ACTIONS(8766), 1, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, + ACTIONS(8768), 1, + anon_sym_QMARK, + ACTIONS(8770), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8772), 1, + anon_sym_bitor, + ACTIONS(8774), 1, + anon_sym_bitand, + ACTIONS(8920), 1, + anon_sym_GT2, + STATE(3632), 1, + sym_argument_list, + STATE(3652), 1, + sym_subscript_argument_list, + STATE(7647), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(7736), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8744), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8746), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8750), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8752), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8756), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8776), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8760), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8762), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [148763] = 28, + [151715] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8683), 1, + ACTIONS(8699), 1, + anon_sym_bitand, + ACTIONS(8707), 1, anon_sym_QMARK, - ACTIONS(8890), 1, + ACTIONS(8820), 1, anon_sym_COMMA, - ACTIONS(8892), 1, - anon_sym_RBRACE, - STATE(2525), 1, + ACTIONS(8922), 1, + anon_sym_RPAREN, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - STATE(7307), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(6433), 2, + STATE(7596), 1, + aux_sym_generic_expression_repeat1, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8679), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, + ACTIONS(8701), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [148860] = 28, + [151812] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8683), 1, + ACTIONS(8699), 1, + anon_sym_bitand, + ACTIONS(8707), 1, anon_sym_QMARK, - ACTIONS(8759), 1, + ACTIONS(8820), 1, anon_sym_COMMA, - ACTIONS(8894), 1, + ACTIONS(8924), 1, anon_sym_RPAREN, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - STATE(7137), 1, + STATE(7661), 1, aux_sym_generic_expression_repeat1, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8679), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, + ACTIONS(8701), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [148957] = 3, + [151909] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5605), 4, + ACTIONS(5519), 1, + anon_sym_COLON_COLON, + ACTIONS(5521), 4, anon_sym_AMP, anon_sym___attribute, anon_sym_COLON, anon_sym_const, - ACTIONS(5607), 35, + ACTIONS(5523), 34, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -422810,7 +429009,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym___extension__, anon_sym___attribute__, - anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, @@ -422836,511 +429034,501 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [149004] = 16, + [151958] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(7842), 1, + ACTIONS(6935), 1, anon_sym_LPAREN2, - ACTIONS(7856), 1, + ACTIONS(7720), 1, anon_sym_LBRACK, - ACTIONS(8167), 1, + ACTIONS(7734), 1, + anon_sym_DOT, + ACTIONS(8740), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8742), 1, + anon_sym_COMMA, + ACTIONS(8748), 1, + anon_sym_SLASH, + ACTIONS(8754), 1, + anon_sym_PIPE, + ACTIONS(8758), 1, + anon_sym_AMP, + ACTIONS(8764), 1, + anon_sym_LT_LT, + ACTIONS(8766), 1, + anon_sym_GT_GT, + ACTIONS(8768), 1, + anon_sym_QMARK, + ACTIONS(8770), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8772), 1, + anon_sym_bitor, + ACTIONS(8774), 1, + anon_sym_bitand, + ACTIONS(8926), 1, + anon_sym_GT2, + STATE(3632), 1, + sym_argument_list, + STATE(3652), 1, + sym_subscript_argument_list, + STATE(7380), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(7736), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8744), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8746), 2, anon_sym_STAR, - ACTIONS(8169), 1, + anon_sym_PERCENT, + ACTIONS(8750), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8752), 2, anon_sym_AMP_AMP, - ACTIONS(8171), 1, - anon_sym_AMP, - STATE(1658), 1, - sym_alignas_qualifier, - STATE(2991), 1, - sym_parameter_list, - STATE(5792), 1, - sym__function_declarator_seq, - STATE(6397), 1, - sym__abstract_declarator, - ACTIONS(7152), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1633), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5804), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6748), 8, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - ACTIONS(7145), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [149077] = 28, + anon_sym_and, + ACTIONS(8756), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8776), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8760), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8762), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [152055] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(7715), 1, - anon_sym_COMMA, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8683), 1, + ACTIONS(8699), 1, + anon_sym_bitand, + ACTIONS(8707), 1, anon_sym_QMARK, - ACTIONS(8896), 1, + ACTIONS(8930), 1, anon_sym_RPAREN, - ACTIONS(8898), 1, - anon_sym_SEMI, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8679), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, + ACTIONS(8701), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8928), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [149174] = 28, + [152150] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8683), 1, + ACTIONS(8699), 1, + anon_sym_bitand, + ACTIONS(8707), 1, anon_sym_QMARK, - ACTIONS(8759), 1, + ACTIONS(8782), 1, anon_sym_COMMA, - ACTIONS(8900), 1, + ACTIONS(8932), 1, anon_sym_RPAREN, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - STATE(7436), 1, - aux_sym_generic_expression_repeat1, - ACTIONS(6433), 2, + STATE(7493), 1, + aux_sym_argument_list_repeat1, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8679), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, + ACTIONS(8701), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [149271] = 28, + [152247] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6979), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(7659), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(7663), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8705), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8707), 1, - anon_sym_COMMA, - ACTIONS(8713), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8719), 1, + ACTIONS(8681), 1, anon_sym_PIPE, - ACTIONS(8723), 1, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8729), 1, - anon_sym_LT_LT, - ACTIONS(8731), 1, - anon_sym_GT_GT, - ACTIONS(8733), 1, - anon_sym_QMARK, - ACTIONS(8735), 1, + ACTIONS(8691), 1, + anon_sym_GT_EQ, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8737), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8739), 1, + ACTIONS(8699), 1, anon_sym_bitand, - ACTIONS(8902), 1, - anon_sym_GT2, - STATE(3545), 1, + ACTIONS(8707), 1, + anon_sym_QMARK, + ACTIONS(8878), 1, + anon_sym_SEMI, + ACTIONS(8934), 1, + anon_sym_COMMA, + ACTIONS(8937), 1, + anon_sym_RBRACE, + STATE(2491), 1, sym_argument_list, - STATE(3546), 1, + STATE(2492), 1, sym_subscript_argument_list, - STATE(7325), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(7665), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8709), 2, + ACTIONS(8048), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8711), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8715), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8717), 2, + ACTIONS(8679), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8721), 2, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8741), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8725), 3, + ACTIONS(8693), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8701), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8727), 4, + ACTIONS(8689), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [149368] = 28, + [152344] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8830), 1, + anon_sym_COMMA, + ACTIONS(8836), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8842), 1, + anon_sym_PIPE, + ACTIONS(8846), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8852), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8858), 1, + anon_sym_QMARK, + ACTIONS(8860), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8862), 1, anon_sym_bitor, - ACTIONS(8683), 1, - anon_sym_QMARK, - ACTIONS(8693), 1, - anon_sym_SEMI, - ACTIONS(8904), 1, - anon_sym_COMMA, - ACTIONS(8907), 1, - anon_sym_RBRACE, - STATE(2525), 1, + ACTIONS(8864), 1, + anon_sym_bitand, + ACTIONS(8939), 1, + anon_sym_RBRACK, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + STATE(7463), 1, + aux_sym_subscript_argument_list_repeat1, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8832), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8834), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8838), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8840), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8844), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8854), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8848), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8850), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [149465] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(7842), 1, - anon_sym_LPAREN2, - ACTIONS(7856), 1, - anon_sym_LBRACK, - ACTIONS(8167), 1, - anon_sym_STAR, - ACTIONS(8169), 1, - anon_sym_AMP_AMP, - ACTIONS(8171), 1, - anon_sym_AMP, - STATE(1658), 1, - sym_alignas_qualifier, - STATE(2991), 1, - sym_parameter_list, - STATE(5792), 1, - sym__function_declarator_seq, - STATE(6391), 1, - sym__abstract_declarator, - ACTIONS(7152), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1633), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5804), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5865), 8, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - ACTIONS(7145), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [149538] = 28, + [152441] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6979), 1, + ACTIONS(6935), 1, anon_sym_LPAREN2, - ACTIONS(7659), 1, + ACTIONS(7720), 1, anon_sym_LBRACK, - ACTIONS(7663), 1, + ACTIONS(7734), 1, anon_sym_DOT, - ACTIONS(8705), 1, + ACTIONS(8740), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8707), 1, + ACTIONS(8742), 1, anon_sym_COMMA, - ACTIONS(8713), 1, + ACTIONS(8748), 1, anon_sym_SLASH, - ACTIONS(8719), 1, + ACTIONS(8754), 1, anon_sym_PIPE, - ACTIONS(8723), 1, + ACTIONS(8758), 1, anon_sym_AMP, - ACTIONS(8729), 1, + ACTIONS(8764), 1, anon_sym_LT_LT, - ACTIONS(8731), 1, + ACTIONS(8766), 1, anon_sym_GT_GT, - ACTIONS(8733), 1, + ACTIONS(8768), 1, anon_sym_QMARK, - ACTIONS(8735), 1, + ACTIONS(8770), 1, anon_sym_LT_EQ_GT, - ACTIONS(8737), 1, + ACTIONS(8772), 1, anon_sym_bitor, - ACTIONS(8739), 1, + ACTIONS(8774), 1, anon_sym_bitand, - ACTIONS(8909), 1, + ACTIONS(8941), 1, anon_sym_GT2, - STATE(3545), 1, + STATE(3632), 1, sym_argument_list, - STATE(3546), 1, + STATE(3652), 1, sym_subscript_argument_list, - STATE(7172), 1, + STATE(7367), 1, aux_sym_template_argument_list_repeat1, - ACTIONS(7665), 2, + ACTIONS(7736), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8709), 2, + ACTIONS(8744), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8711), 2, + ACTIONS(8746), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8715), 2, + ACTIONS(8750), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8717), 2, + ACTIONS(8752), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8721), 2, + ACTIONS(8756), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8741), 2, + ACTIONS(8776), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8725), 3, + ACTIONS(8760), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8727), 4, + ACTIONS(8762), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [149635] = 16, + [152538] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(7842), 1, + ACTIONS(6935), 1, anon_sym_LPAREN2, - ACTIONS(7856), 1, + ACTIONS(7720), 1, anon_sym_LBRACK, - ACTIONS(8167), 1, + ACTIONS(7734), 1, + anon_sym_DOT, + ACTIONS(8748), 1, + anon_sym_SLASH, + ACTIONS(8764), 1, + anon_sym_LT_LT, + ACTIONS(8766), 1, + anon_sym_GT_GT, + ACTIONS(8770), 1, + anon_sym_LT_EQ_GT, + STATE(3632), 1, + sym_argument_list, + STATE(3652), 1, + sym_subscript_argument_list, + ACTIONS(6518), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(7736), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8744), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8746), 2, anon_sym_STAR, - ACTIONS(8169), 1, + anon_sym_PERCENT, + ACTIONS(8776), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8762), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6520), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(8171), 1, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_GT2, + [152612] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7283), 1, + anon_sym___attribute__, + ACTIONS(7285), 1, + anon_sym___attribute, + STATE(4733), 1, + sym_attribute_specifier, + ACTIONS(6210), 4, anon_sym_AMP, - STATE(1658), 1, - sym_alignas_qualifier, - STATE(2991), 1, - sym_parameter_list, - STATE(5792), 1, - sym__function_declarator_seq, - STATE(6395), 1, - sym__abstract_declarator, - ACTIONS(7152), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1633), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5804), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8445), 8, - anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(6212), 31, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym___extension__, + anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - ACTIONS(7145), 12, - anon_sym___extension__, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -423352,528 +429540,547 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [149708] = 28, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [152664] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8809), 1, - anon_sym_COMMA, - ACTIONS(8815), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8821), 1, + ACTIONS(8681), 1, anon_sym_PIPE, - ACTIONS(8825), 1, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8831), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8837), 1, - anon_sym_QMARK, - ACTIONS(8839), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8841), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8843), 1, + ACTIONS(8699), 1, anon_sym_bitand, - ACTIONS(8911), 1, - anon_sym_RBRACK, - STATE(2525), 1, + ACTIONS(8707), 1, + anon_sym_QMARK, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - STATE(7533), 1, - aux_sym_subscript_argument_list_repeat1, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8811), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8813), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8817), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8819), 2, + ACTIONS(8679), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8823), 2, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8833), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8827), 3, + ACTIONS(8701), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8928), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8829), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [149805] = 28, + [152756] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6979), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(7659), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(7663), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8705), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8707), 1, - anon_sym_COMMA, - ACTIONS(8713), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8719), 1, + ACTIONS(8681), 1, anon_sym_PIPE, - ACTIONS(8723), 1, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8729), 1, - anon_sym_LT_LT, - ACTIONS(8731), 1, - anon_sym_GT_GT, - ACTIONS(8733), 1, - anon_sym_QMARK, - ACTIONS(8735), 1, + ACTIONS(8691), 1, + anon_sym_GT_EQ, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8737), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8739), 1, + ACTIONS(8699), 1, anon_sym_bitand, - ACTIONS(8913), 1, - anon_sym_GT2, - STATE(3545), 1, + ACTIONS(8707), 1, + anon_sym_QMARK, + ACTIONS(8943), 1, + anon_sym_COMMA, + ACTIONS(8945), 1, + anon_sym_RPAREN, + STATE(2491), 1, sym_argument_list, - STATE(3546), 1, + STATE(2492), 1, sym_subscript_argument_list, - STATE(7377), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(7665), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8709), 2, + ACTIONS(8048), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8711), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8715), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8717), 2, + ACTIONS(8679), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8721), 2, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8741), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8725), 3, + ACTIONS(8693), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8701), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8727), 4, + ACTIONS(8689), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [149902] = 5, + [152850] = 26, ACTIONS(3), 1, sym_comment, - STATE(4217), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5900), 3, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(8803), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5898), 31, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5845), 1, anon_sym_LPAREN2, + ACTIONS(6414), 1, + anon_sym_LBRACK, + ACTIONS(6418), 1, + anon_sym_DOT, + ACTIONS(8449), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8677), 1, + anon_sym_SLASH, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, + anon_sym_AMP, + ACTIONS(8691), 1, + anon_sym_GT_EQ, + ACTIONS(8695), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8697), 1, + anon_sym_bitor, + ACTIONS(8699), 1, + anon_sym_bitand, + ACTIONS(8707), 1, + anon_sym_QMARK, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + ACTIONS(6420), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8048), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8673), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8675), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8679), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [149953] = 9, + anon_sym_and, + ACTIONS(8683), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8693), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8701), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8736), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(8687), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8689), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [152942] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6979), 1, + ACTIONS(6935), 1, anon_sym_LPAREN2, - ACTIONS(7659), 1, + ACTIONS(7720), 1, anon_sym_LBRACK, - ACTIONS(7663), 1, + ACTIONS(7734), 1, anon_sym_DOT, - STATE(3545), 1, + ACTIONS(8748), 1, + anon_sym_SLASH, + ACTIONS(8764), 1, + anon_sym_LT_LT, + ACTIONS(8766), 1, + anon_sym_GT_GT, + ACTIONS(8770), 1, + anon_sym_LT_EQ_GT, + STATE(3632), 1, sym_argument_list, - STATE(3546), 1, + STATE(3652), 1, sym_subscript_argument_list, - ACTIONS(7665), 2, + ACTIONS(6518), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(7736), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6425), 10, + ACTIONS(8744), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(8746), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8776), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8760), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8762), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - ACTIONS(6427), 21, + ACTIONS(6520), 12, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - 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_LT_LT, anon_sym_QMARK, - anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, anon_sym_GT2, - [150011] = 27, + [153018] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(7715), 1, - anon_sym_COMMA, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8836), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8842), 1, + anon_sym_PIPE, + ACTIONS(8846), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8852), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8858), 1, + anon_sym_QMARK, + ACTIONS(8860), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8862), 1, anon_sym_bitor, - ACTIONS(8683), 1, - anon_sym_QMARK, - ACTIONS(8915), 1, - anon_sym_RPAREN, - STATE(2525), 1, + ACTIONS(8864), 1, + anon_sym_bitand, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8832), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8834), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8838), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8840), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8844), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8854), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8947), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(8848), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8850), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [150105] = 20, + [153110] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(6449), 1, - anon_sym_PIPE, - ACTIONS(6979), 1, + ACTIONS(6935), 1, anon_sym_LPAREN2, - ACTIONS(7659), 1, + ACTIONS(7720), 1, anon_sym_LBRACK, - ACTIONS(7663), 1, + ACTIONS(7734), 1, anon_sym_DOT, - ACTIONS(8713), 1, + ACTIONS(8748), 1, anon_sym_SLASH, - ACTIONS(8723), 1, - anon_sym_AMP, - ACTIONS(8729), 1, + ACTIONS(8764), 1, anon_sym_LT_LT, - ACTIONS(8731), 1, + ACTIONS(8766), 1, anon_sym_GT_GT, - ACTIONS(8735), 1, + ACTIONS(8770), 1, anon_sym_LT_EQ_GT, - ACTIONS(8739), 1, - anon_sym_bitand, - STATE(3545), 1, + STATE(3632), 1, sym_argument_list, - STATE(3546), 1, + STATE(3652), 1, sym_subscript_argument_list, - ACTIONS(7665), 2, + ACTIONS(7736), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8709), 2, + ACTIONS(8744), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8711), 2, + ACTIONS(8746), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8741), 2, + ACTIONS(8776), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8725), 3, + ACTIONS(6518), 6, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6520), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(8727), 4, + anon_sym_GT2, + [153182] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6935), 1, + anon_sym_LPAREN2, + ACTIONS(7720), 1, + anon_sym_LBRACK, + ACTIONS(7734), 1, + anon_sym_DOT, + STATE(3632), 1, + sym_argument_list, + STATE(3652), 1, + sym_subscript_argument_list, + ACTIONS(7736), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8776), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6422), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6451), 11, + anon_sym_GT_GT, + ACTIONS(6424), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + 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_LT_LT, anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_GT2, - [150185] = 27, + [153242] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(6935), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(7720), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(7734), 1, anon_sym_DOT, - ACTIONS(7715), 1, - anon_sym_COMMA, - ACTIONS(8423), 1, + ACTIONS(8740), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8748), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8754), 1, + anon_sym_PIPE, + ACTIONS(8758), 1, anon_sym_AMP, - ACTIONS(8659), 1, - anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8764), 1, + anon_sym_LT_LT, + ACTIONS(8766), 1, + anon_sym_GT_GT, + ACTIONS(8768), 1, + anon_sym_QMARK, + ACTIONS(8770), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8772), 1, anon_sym_bitor, - ACTIONS(8683), 1, - anon_sym_QMARK, - ACTIONS(8917), 1, - anon_sym_SEMI, - STATE(2525), 1, + ACTIONS(8774), 1, + anon_sym_bitand, + STATE(3632), 1, sym_argument_list, - STATE(2526), 1, + STATE(3652), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(7736), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8744), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8746), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8661), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, + ACTIONS(8750), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8752), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8756), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8776), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8949), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(8760), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8762), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [150279] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3331), 1, - anon_sym_const, - ACTIONS(5012), 1, - anon_sym_LPAREN2, - ACTIONS(5014), 1, - anon_sym_STAR, - ACTIONS(5016), 1, - anon_sym_AMP_AMP, - ACTIONS(5018), 1, - anon_sym_AMP, - ACTIONS(8131), 1, - anon_sym_LBRACK, - ACTIONS(8149), 1, - sym_auto, - ACTIONS(8151), 1, - anon_sym_decltype, - STATE(1884), 1, - sym_decltype_auto, - STATE(3004), 1, - sym_parameter_list, - STATE(4289), 1, - sym_alignas_qualifier, - STATE(6087), 1, - sym__function_declarator_seq, - STATE(6680), 1, - sym__abstract_declarator, - ACTIONS(8133), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4874), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8185), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6092), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8125), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [150357] = 16, + [153334] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3331), 1, + ACTIONS(3339), 1, anon_sym_const, - ACTIONS(5012), 1, + ACTIONS(5020), 1, anon_sym_LPAREN2, - ACTIONS(8131), 1, + ACTIONS(8147), 1, anon_sym_LBRACK, - ACTIONS(8195), 1, + ACTIONS(8230), 1, anon_sym_STAR, - ACTIONS(8197), 1, + ACTIONS(8232), 1, anon_sym_AMP_AMP, - ACTIONS(8199), 1, + ACTIONS(8234), 1, anon_sym_AMP, - STATE(2994), 1, + STATE(3086), 1, sym_parameter_list, - STATE(4289), 1, + STATE(4325), 1, sym_alignas_qualifier, - STATE(6087), 1, + STATE(6109), 1, sym__function_declarator_seq, - STATE(6508), 1, + STATE(6554), 1, sym__abstract_declarator, - ACTIONS(8133), 2, + ACTIONS(8149), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4131), 2, + STATE(4215), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6092), 5, + STATE(6099), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8445), 7, + ACTIONS(8487), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -423881,7 +430088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - ACTIONS(8125), 12, + ACTIONS(8141), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -423894,52 +430101,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [150429] = 17, + [153406] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3331), 1, + ACTIONS(5541), 3, + anon_sym_AMP, + anon_sym___attribute, anon_sym_const, - ACTIONS(5012), 1, + ACTIONS(5543), 35, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(8131), 1, - anon_sym_LBRACK, - ACTIONS(8222), 1, anon_sym_STAR, - ACTIONS(8224), 1, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(8226), 1, - anon_sym_AMP, - ACTIONS(8443), 1, - anon_sym___attribute, - STATE(3295), 1, - sym_parameter_list, - STATE(4289), 1, - sym_alignas_qualifier, - STATE(6087), 1, - sym__function_declarator_seq, - STATE(6464), 1, - sym__abstract_declarator, - ACTIONS(8133), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4131), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6092), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8441), 6, - anon_sym_COMMA, - anon_sym___attribute__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - ACTIONS(8125), 12, + anon_sym_SEMI, anon_sym___extension__, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -423951,352 +430133,452 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [150503] = 27, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [153452] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(7564), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(7778), 1, + anon_sym_COMMA, + ACTIONS(8449), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8677), 1, + anon_sym_SLASH, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, + anon_sym_AMP, + ACTIONS(8691), 1, + anon_sym_GT_EQ, + ACTIONS(8695), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8697), 1, + anon_sym_bitor, + ACTIONS(8699), 1, + anon_sym_bitand, + ACTIONS(8707), 1, + anon_sym_QMARK, + ACTIONS(8951), 1, + anon_sym_RPAREN, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + ACTIONS(6420), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8048), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8673), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8675), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8679), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8683), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8693), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8701), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8687), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8689), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [153546] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5845), 1, + anon_sym_LPAREN2, + ACTIONS(6414), 1, + anon_sym_LBRACK, + ACTIONS(7614), 1, + anon_sym_DOT, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8919), 1, + ACTIONS(8953), 1, anon_sym_COMMA, - ACTIONS(8925), 1, + ACTIONS(8959), 1, anon_sym_SLASH, - ACTIONS(8931), 1, + ACTIONS(8965), 1, anon_sym_PIPE, - ACTIONS(8935), 1, + ACTIONS(8969), 1, anon_sym_AMP, - ACTIONS(8941), 1, + ACTIONS(8975), 1, anon_sym_GT_EQ, - ACTIONS(8945), 1, + ACTIONS(8979), 1, anon_sym_COLON, - ACTIONS(8947), 1, + ACTIONS(8981), 1, anon_sym_QMARK, - ACTIONS(8949), 1, + ACTIONS(8983), 1, anon_sym_LT_EQ_GT, - ACTIONS(8951), 1, + ACTIONS(8985), 1, anon_sym_bitor, - ACTIONS(8953), 1, + ACTIONS(8987), 1, anon_sym_bitand, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(7566), 2, + ACTIONS(7616), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8921), 2, + ACTIONS(8955), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8923), 2, + ACTIONS(8957), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8927), 2, + ACTIONS(8961), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8929), 2, + ACTIONS(8963), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8933), 2, + ACTIONS(8967), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8943), 2, + ACTIONS(8977), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8937), 3, + ACTIONS(8971), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8939), 3, + ACTIONS(8973), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [150597] = 26, + [153640] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8836), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8842), 1, + anon_sym_PIPE, + ACTIONS(8846), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8852), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8858), 1, + anon_sym_QMARK, + ACTIONS(8860), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8862), 1, anon_sym_bitor, - ACTIONS(8683), 1, - anon_sym_QMARK, - STATE(2525), 1, + ACTIONS(8864), 1, + anon_sym_bitand, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8832), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8834), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8838), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8840), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8844), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8854), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8955), 2, + ACTIONS(8989), 2, anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(8655), 3, + anon_sym_RBRACK, + ACTIONS(8848), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8850), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [150689] = 18, + [153732] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6979), 1, + ACTIONS(6935), 1, anon_sym_LPAREN2, - ACTIONS(7659), 1, + ACTIONS(7720), 1, anon_sym_LBRACK, - ACTIONS(7663), 1, + ACTIONS(7734), 1, anon_sym_DOT, - ACTIONS(8713), 1, + ACTIONS(8740), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8748), 1, anon_sym_SLASH, - ACTIONS(8729), 1, + ACTIONS(8754), 1, + anon_sym_PIPE, + ACTIONS(8758), 1, + anon_sym_AMP, + ACTIONS(8764), 1, anon_sym_LT_LT, - ACTIONS(8731), 1, + ACTIONS(8766), 1, anon_sym_GT_GT, - ACTIONS(8735), 1, + ACTIONS(8768), 1, + anon_sym_QMARK, + ACTIONS(8770), 1, anon_sym_LT_EQ_GT, - STATE(3545), 1, + ACTIONS(8772), 1, + anon_sym_bitor, + ACTIONS(8774), 1, + anon_sym_bitand, + STATE(3632), 1, sym_argument_list, - STATE(3546), 1, + STATE(3652), 1, sym_subscript_argument_list, - ACTIONS(6449), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(7665), 2, + ACTIONS(6991), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(7736), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8709), 2, + ACTIONS(8744), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8711), 2, + ACTIONS(8746), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8741), 2, + ACTIONS(8750), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8752), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8756), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8776), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8725), 3, + ACTIONS(8760), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8727), 4, + ACTIONS(8762), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6451), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_QMARK, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_GT2, - [150765] = 9, + [153824] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6979), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(7659), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(7663), 1, + ACTIONS(6418), 1, anon_sym_DOT, - STATE(3545), 1, + ACTIONS(8449), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8677), 1, + anon_sym_SLASH, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, + anon_sym_AMP, + ACTIONS(8691), 1, + anon_sym_GT_EQ, + ACTIONS(8695), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8697), 1, + anon_sym_bitor, + ACTIONS(8699), 1, + anon_sym_bitand, + ACTIONS(8707), 1, + anon_sym_QMARK, + ACTIONS(8991), 1, + anon_sym_COMMA, + ACTIONS(8993), 1, + anon_sym_RPAREN, + STATE(2491), 1, sym_argument_list, - STATE(3546), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(7665), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6445), 10, + ACTIONS(8048), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - ACTIONS(6447), 21, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(8679), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8683), 2, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_xor, + ACTIONS(8693), 2, anon_sym_LT_LT, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, + anon_sym_GT_GT, + ACTIONS(8701), 2, + anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, + ACTIONS(8687), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_GT2, - [150823] = 24, + ACTIONS(8689), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [153918] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6979), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(7659), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(7663), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8713), 1, + ACTIONS(8449), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8836), 1, anon_sym_SLASH, - ACTIONS(8719), 1, + ACTIONS(8842), 1, anon_sym_PIPE, - ACTIONS(8723), 1, + ACTIONS(8846), 1, anon_sym_AMP, - ACTIONS(8729), 1, - anon_sym_LT_LT, - ACTIONS(8731), 1, - anon_sym_GT_GT, - ACTIONS(8735), 1, + ACTIONS(8852), 1, + anon_sym_GT_EQ, + ACTIONS(8858), 1, + anon_sym_QMARK, + ACTIONS(8860), 1, anon_sym_LT_EQ_GT, - ACTIONS(8737), 1, + ACTIONS(8862), 1, anon_sym_bitor, - ACTIONS(8739), 1, + ACTIONS(8864), 1, anon_sym_bitand, - STATE(3545), 1, + STATE(2491), 1, sym_argument_list, - STATE(3546), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(7665), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8709), 2, + ACTIONS(8048), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8832), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8711), 2, + ACTIONS(8834), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8715), 2, + ACTIONS(8838), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8717), 2, + ACTIONS(8840), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8721), 2, + ACTIONS(8844), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8741), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8725), 3, + ACTIONS(8854), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8995), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(8848), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(6989), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_GT2, - ACTIONS(8727), 4, + ACTIONS(8850), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [150911] = 17, + [154010] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(6979), 1, + ACTIONS(6935), 1, anon_sym_LPAREN2, - ACTIONS(7659), 1, + ACTIONS(7720), 1, anon_sym_LBRACK, - ACTIONS(7663), 1, + ACTIONS(7734), 1, anon_sym_DOT, - ACTIONS(8713), 1, + ACTIONS(8748), 1, anon_sym_SLASH, - ACTIONS(8729), 1, - anon_sym_LT_LT, - ACTIONS(8731), 1, - anon_sym_GT_GT, - ACTIONS(8735), 1, - anon_sym_LT_EQ_GT, - STATE(3545), 1, + STATE(3632), 1, sym_argument_list, - STATE(3546), 1, + STATE(3652), 1, sym_subscript_argument_list, - ACTIONS(6449), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(7665), 2, + ACTIONS(7736), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8709), 2, + ACTIONS(8744), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8711), 2, + ACTIONS(8746), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8741), 2, + ACTIONS(8776), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8727), 4, + ACTIONS(6518), 7, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6451), 15, + anon_sym_GT_GT, + ACTIONS(6520), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -424304,7 +430586,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -424312,427 +430596,245 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_GT2, - [150985] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7083), 1, - anon_sym___attribute__, - ACTIONS(7085), 1, - anon_sym___attribute, - STATE(4732), 1, - sym_attribute_specifier, - ACTIONS(6155), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(6157), 31, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [151037] = 27, + [154076] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(7715), 1, - anon_sym_COMMA, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8683), 1, + ACTIONS(8699), 1, + anon_sym_bitand, + ACTIONS(8707), 1, anon_sym_QMARK, - ACTIONS(8957), 1, - anon_sym_RPAREN, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8679), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, + ACTIONS(8701), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8997), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [151131] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5617), 3, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(5619), 35, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_or, - anon_sym_and, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [151177] = 16, + [154168] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6979), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(7659), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(7663), 1, + ACTIONS(7614), 1, anon_sym_DOT, - ACTIONS(8713), 1, + ACTIONS(8449), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8953), 1, + anon_sym_COMMA, + ACTIONS(8959), 1, anon_sym_SLASH, - ACTIONS(8729), 1, - anon_sym_LT_LT, - ACTIONS(8731), 1, - anon_sym_GT_GT, - ACTIONS(8735), 1, - anon_sym_LT_EQ_GT, - STATE(3545), 1, - sym_argument_list, - STATE(3546), 1, - sym_subscript_argument_list, - ACTIONS(7665), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8709), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8711), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8741), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6449), 6, + ACTIONS(8965), 1, anon_sym_PIPE, + ACTIONS(8969), 1, anon_sym_AMP, - anon_sym_GT, + ACTIONS(8975), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6451), 15, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(8981), 1, anon_sym_QMARK, - anon_sym_or, - anon_sym_and, + ACTIONS(8983), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8985), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(8987), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_GT2, - [151249] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6979), 1, - anon_sym_LPAREN2, - ACTIONS(7659), 1, - anon_sym_LBRACK, - ACTIONS(7663), 1, - anon_sym_DOT, - STATE(3545), 1, + ACTIONS(8999), 1, + anon_sym_COLON, + STATE(2491), 1, sym_argument_list, - STATE(3546), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(7665), 2, + ACTIONS(7616), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8741), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6441), 10, + ACTIONS(8955), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - ACTIONS(6443), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(8957), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(8961), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8963), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8967), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(8977), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8971), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, anon_sym_not_eq, - anon_sym_GT2, - [151309] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5012), 1, - anon_sym_LPAREN2, - ACTIONS(5706), 1, - anon_sym_const, - ACTIONS(8131), 1, - anon_sym_LBRACK, - ACTIONS(8149), 1, - sym_auto, - ACTIONS(8151), 1, - anon_sym_decltype, - ACTIONS(8373), 1, - anon_sym_STAR, - ACTIONS(8375), 1, - anon_sym_AMP_AMP, - ACTIONS(8377), 1, - anon_sym_AMP, - STATE(1695), 1, - sym_alignas_qualifier, - STATE(1884), 1, - sym_decltype_auto, - STATE(3370), 1, - sym_parameter_list, - STATE(6087), 1, - sym__function_declarator_seq, - STATE(6696), 1, - sym__abstract_declarator, - ACTIONS(8387), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4869), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8205), 4, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - STATE(6092), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8379), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [151387] = 24, + ACTIONS(8973), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [154262] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6979), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(7659), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(7663), 1, + ACTIONS(7614), 1, anon_sym_DOT, - ACTIONS(8713), 1, + ACTIONS(8449), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8953), 1, + anon_sym_COMMA, + ACTIONS(8959), 1, anon_sym_SLASH, - ACTIONS(8719), 1, + ACTIONS(8965), 1, anon_sym_PIPE, - ACTIONS(8723), 1, + ACTIONS(8969), 1, anon_sym_AMP, - ACTIONS(8729), 1, - anon_sym_LT_LT, - ACTIONS(8731), 1, - anon_sym_GT_GT, - ACTIONS(8735), 1, + ACTIONS(8975), 1, + anon_sym_GT_EQ, + ACTIONS(8981), 1, + anon_sym_QMARK, + ACTIONS(8983), 1, anon_sym_LT_EQ_GT, - ACTIONS(8737), 1, + ACTIONS(8985), 1, anon_sym_bitor, - ACTIONS(8739), 1, + ACTIONS(8987), 1, anon_sym_bitand, - STATE(3545), 1, + ACTIONS(9001), 1, + anon_sym_COLON, + STATE(2491), 1, sym_argument_list, - STATE(3546), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(7665), 2, + ACTIONS(7616), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8709), 2, + ACTIONS(8048), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8955), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8711), 2, + ACTIONS(8957), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8715), 2, + ACTIONS(8961), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8717), 2, + ACTIONS(8963), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8721), 2, + ACTIONS(8967), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8741), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8725), 3, + ACTIONS(8977), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8971), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7017), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_GT2, - ACTIONS(8727), 4, + ACTIONS(8973), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [151475] = 13, + [154356] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(6979), 1, + ACTIONS(6935), 1, anon_sym_LPAREN2, - ACTIONS(7659), 1, + ACTIONS(7720), 1, anon_sym_LBRACK, - ACTIONS(7663), 1, + ACTIONS(7734), 1, anon_sym_DOT, - ACTIONS(8713), 1, + ACTIONS(8748), 1, anon_sym_SLASH, - STATE(3545), 1, + ACTIONS(8764), 1, + anon_sym_LT_LT, + ACTIONS(8766), 1, + anon_sym_GT_GT, + STATE(3632), 1, sym_argument_list, - STATE(3546), 1, + STATE(3652), 1, sym_subscript_argument_list, - ACTIONS(7665), 2, + ACTIONS(7736), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8709), 2, + ACTIONS(8744), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8711), 2, + ACTIONS(8746), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8741), 2, + ACTIONS(8776), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6449), 7, + ACTIONS(6518), 6, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - ACTIONS(6451), 17, + ACTIONS(6520), 16, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -424740,7 +430842,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -424750,221 +430851,391 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_GT2, - [151541] = 27, + [154426] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(7715), 1, - anon_sym_COMMA, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8683), 1, + ACTIONS(8699), 1, + anon_sym_bitand, + ACTIONS(8707), 1, anon_sym_QMARK, - ACTIONS(8959), 1, + ACTIONS(9003), 1, + anon_sym_COMMA, + ACTIONS(9005), 1, anon_sym_RPAREN, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8679), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, + ACTIONS(8701), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [151635] = 26, + [154520] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3339), 1, + anon_sym_const, + ACTIONS(5020), 1, + anon_sym_LPAREN2, + ACTIONS(8147), 1, + anon_sym_LBRACK, + ACTIONS(8230), 1, + anon_sym_STAR, + ACTIONS(8232), 1, + anon_sym_AMP_AMP, + ACTIONS(8234), 1, + anon_sym_AMP, + STATE(3086), 1, + sym_parameter_list, + STATE(4325), 1, + sym_alignas_qualifier, + STATE(6109), 1, + sym__function_declarator_seq, + STATE(6546), 1, + sym__abstract_declarator, + ACTIONS(8149), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4215), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6099), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(5877), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8141), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [154592] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(6935), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(7720), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(7734), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8740), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8815), 1, + ACTIONS(8748), 1, anon_sym_SLASH, - ACTIONS(8821), 1, + ACTIONS(8754), 1, anon_sym_PIPE, - ACTIONS(8825), 1, + ACTIONS(8758), 1, anon_sym_AMP, - ACTIONS(8831), 1, - anon_sym_GT_EQ, - ACTIONS(8837), 1, + ACTIONS(8764), 1, + anon_sym_LT_LT, + ACTIONS(8766), 1, + anon_sym_GT_GT, + ACTIONS(8768), 1, anon_sym_QMARK, - ACTIONS(8839), 1, + ACTIONS(8770), 1, anon_sym_LT_EQ_GT, - ACTIONS(8841), 1, + ACTIONS(8772), 1, anon_sym_bitor, - ACTIONS(8843), 1, + ACTIONS(8774), 1, anon_sym_bitand, - STATE(2525), 1, + STATE(3632), 1, sym_argument_list, - STATE(2526), 1, + STATE(3652), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(7736), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8811), 2, + ACTIONS(8744), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8813), 2, + ACTIONS(8746), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8817), 2, + ACTIONS(8750), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8819), 2, + ACTIONS(8752), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8823), 2, + ACTIONS(8756), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8833), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8961), 2, + ACTIONS(8776), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9007), 2, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(8827), 3, + anon_sym_GT2, + ACTIONS(8760), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8829), 3, + ACTIONS(8762), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [151727] = 27, + [154684] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(3339), 1, + anon_sym_const, + ACTIONS(5020), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(5022), 1, + anon_sym_STAR, + ACTIONS(5024), 1, + anon_sym_AMP_AMP, + ACTIONS(5026), 1, + anon_sym_AMP, + ACTIONS(8147), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, - anon_sym_DOT, - ACTIONS(7715), 1, + ACTIONS(8179), 1, + sym_auto, + ACTIONS(8181), 1, + anon_sym_decltype, + STATE(1864), 1, + sym_decltype_auto, + STATE(3113), 1, + sym_parameter_list, + STATE(4325), 1, + sym_alignas_qualifier, + STATE(6109), 1, + sym__function_declarator_seq, + STATE(6810), 1, + sym__abstract_declarator, + ACTIONS(8149), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4938), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8221), 4, anon_sym_COMMA, - ACTIONS(8423), 1, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6099), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8141), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [154762] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3339), 1, + anon_sym_const, + ACTIONS(5020), 1, + anon_sym_LPAREN2, + ACTIONS(8147), 1, + anon_sym_LBRACK, + ACTIONS(8230), 1, + anon_sym_STAR, + ACTIONS(8232), 1, + anon_sym_AMP_AMP, + ACTIONS(8234), 1, + anon_sym_AMP, + STATE(3086), 1, + sym_parameter_list, + STATE(4325), 1, + sym_alignas_qualifier, + STATE(6109), 1, + sym__function_declarator_seq, + STATE(6527), 1, + sym__abstract_declarator, + ACTIONS(8149), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4215), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6099), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8453), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8141), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [154834] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5845), 1, + anon_sym_LPAREN2, + ACTIONS(6414), 1, + anon_sym_LBRACK, + ACTIONS(6418), 1, + anon_sym_DOT, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8683), 1, + ACTIONS(8699), 1, + anon_sym_bitand, + ACTIONS(8707), 1, anon_sym_QMARK, - ACTIONS(8963), 1, - anon_sym_RPAREN, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8679), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, + ACTIONS(8701), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(9009), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [151821] = 6, + [154926] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7083), 1, + ACTIONS(7283), 1, anon_sym___attribute__, - ACTIONS(7085), 1, + ACTIONS(7285), 1, anon_sym___attribute, - STATE(4660), 1, + STATE(4737), 1, sym_attribute_specifier, - ACTIONS(6058), 4, + ACTIONS(6214), 4, anon_sym_AMP, anon_sym_LBRACK, anon_sym_const, anon_sym___asm, - ACTIONS(6060), 31, + ACTIONS(6216), 31, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -424996,240 +431267,317 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [151873] = 26, + [154978] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6979), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(7659), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(7663), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8705), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8713), 1, + ACTIONS(8836), 1, anon_sym_SLASH, - ACTIONS(8719), 1, + ACTIONS(8842), 1, anon_sym_PIPE, - ACTIONS(8723), 1, + ACTIONS(8846), 1, anon_sym_AMP, - ACTIONS(8729), 1, - anon_sym_LT_LT, - ACTIONS(8731), 1, - anon_sym_GT_GT, - ACTIONS(8733), 1, + ACTIONS(8852), 1, + anon_sym_GT_EQ, + ACTIONS(8858), 1, anon_sym_QMARK, - ACTIONS(8735), 1, + ACTIONS(8860), 1, anon_sym_LT_EQ_GT, - ACTIONS(8737), 1, + ACTIONS(8862), 1, anon_sym_bitor, - ACTIONS(8739), 1, + ACTIONS(8864), 1, anon_sym_bitand, - STATE(3545), 1, + STATE(2491), 1, sym_argument_list, - STATE(3546), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6526), 2, - anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(7665), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8709), 2, + ACTIONS(7766), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(8048), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8832), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8711), 2, + ACTIONS(8834), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8715), 2, + ACTIONS(8838), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8717), 2, + ACTIONS(8840), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8721), 2, + ACTIONS(8844), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8741), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8725), 3, + ACTIONS(8854), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8848), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8727), 4, + ACTIONS(8850), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [151965] = 16, + [155070] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3331), 1, - anon_sym_const, - ACTIONS(5012), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(8131), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(8195), 1, - anon_sym_STAR, - ACTIONS(8197), 1, - anon_sym_AMP_AMP, - ACTIONS(8199), 1, - anon_sym_AMP, - STATE(2994), 1, - sym_parameter_list, - STATE(4289), 1, - sym_alignas_qualifier, - STATE(6087), 1, - sym__function_declarator_seq, - STATE(6503), 1, - sym__abstract_declarator, - ACTIONS(8133), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4131), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6092), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6748), 7, + ACTIONS(6418), 1, + anon_sym_DOT, + ACTIONS(7778), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(8449), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8677), 1, + anon_sym_SLASH, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, + anon_sym_AMP, + ACTIONS(8691), 1, + anon_sym_GT_EQ, + ACTIONS(8695), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8697), 1, + anon_sym_bitor, + ACTIONS(8699), 1, + anon_sym_bitand, + ACTIONS(8707), 1, + anon_sym_QMARK, + ACTIONS(9011), 1, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(8125), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [152037] = 27, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + ACTIONS(6420), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8048), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8673), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8675), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8679), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8683), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8693), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8701), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8687), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8689), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [155164] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(7564), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8919), 1, + ACTIONS(7778), 1, anon_sym_COMMA, - ACTIONS(8925), 1, + ACTIONS(8449), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8931), 1, + ACTIONS(8681), 1, anon_sym_PIPE, - ACTIONS(8935), 1, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8941), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8947), 1, - anon_sym_QMARK, - ACTIONS(8949), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8951), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8953), 1, + ACTIONS(8699), 1, anon_sym_bitand, - ACTIONS(8965), 1, - anon_sym_COLON, - STATE(2525), 1, + ACTIONS(8707), 1, + anon_sym_QMARK, + ACTIONS(9013), 1, + anon_sym_SEMI, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(7566), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8921), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8923), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8927), 2, + ACTIONS(8679), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8683), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8693), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8701), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8929), 2, + ACTIONS(8687), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8689), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [155258] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5845), 1, + anon_sym_LPAREN2, + ACTIONS(6414), 1, + anon_sym_LBRACK, + ACTIONS(6418), 1, + anon_sym_DOT, + ACTIONS(7778), 1, + anon_sym_COMMA, + ACTIONS(8449), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8677), 1, + anon_sym_SLASH, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, + anon_sym_AMP, + ACTIONS(8691), 1, + anon_sym_GT_EQ, + ACTIONS(8695), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8697), 1, + anon_sym_bitor, + ACTIONS(8699), 1, + anon_sym_bitand, + ACTIONS(8707), 1, + anon_sym_QMARK, + ACTIONS(9015), 1, + anon_sym_RPAREN, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + ACTIONS(6420), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8048), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8673), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8675), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8679), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8933), 2, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8943), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8937), 3, + ACTIONS(8701), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8939), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [152131] = 17, + [155352] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3331), 1, + ACTIONS(3339), 1, anon_sym_const, - ACTIONS(5012), 1, + ACTIONS(5020), 1, anon_sym_LPAREN2, - ACTIONS(5867), 1, - anon_sym___attribute, - ACTIONS(8131), 1, + ACTIONS(8147), 1, anon_sym_LBRACK, - ACTIONS(8222), 1, + ACTIONS(8230), 1, anon_sym_STAR, - ACTIONS(8224), 1, + ACTIONS(8232), 1, anon_sym_AMP_AMP, - ACTIONS(8226), 1, + ACTIONS(8234), 1, anon_sym_AMP, - STATE(3295), 1, + STATE(3086), 1, sym_parameter_list, - STATE(4289), 1, + STATE(4325), 1, sym_alignas_qualifier, - STATE(6087), 1, + STATE(6109), 1, sym__function_declarator_seq, - STATE(6418), 1, + STATE(6550), 1, sym__abstract_declarator, - ACTIONS(8133), 2, + ACTIONS(8149), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4131), 2, + STATE(4215), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6092), 5, + STATE(6099), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(5865), 6, + ACTIONS(6781), 7, anon_sym_COMMA, - anon_sym___attribute__, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - ACTIONS(8125), 12, + ACTIONS(8141), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -425242,51 +431590,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [152205] = 17, + [155424] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(3331), 1, - anon_sym_const, - ACTIONS(5012), 1, + ACTIONS(5020), 1, anon_sym_LPAREN2, - ACTIONS(8131), 1, + ACTIONS(5652), 1, + anon_sym_const, + ACTIONS(8147), 1, anon_sym_LBRACK, - ACTIONS(8222), 1, + ACTIONS(8179), 1, + sym_auto, + ACTIONS(8181), 1, + anon_sym_decltype, + ACTIONS(8457), 1, anon_sym_STAR, - ACTIONS(8224), 1, + ACTIONS(8459), 1, anon_sym_AMP_AMP, - ACTIONS(8226), 1, + ACTIONS(8461), 1, anon_sym_AMP, - ACTIONS(8447), 1, - anon_sym___attribute, - STATE(3295), 1, - sym_parameter_list, - STATE(4289), 1, + STATE(1702), 1, sym_alignas_qualifier, - STATE(6087), 1, + STATE(1864), 1, + sym_decltype_auto, + STATE(3551), 1, + sym_parameter_list, + STATE(6109), 1, sym__function_declarator_seq, - STATE(6486), 1, + STATE(6766), 1, sym__abstract_declarator, - ACTIONS(8133), 2, + ACTIONS(8471), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4131), 2, + STATE(4921), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6092), 5, + ACTIONS(8213), 4, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(6099), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8445), 6, - anon_sym_COMMA, - anon_sym___attribute__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - ACTIONS(8125), 12, + ACTIONS(8463), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -425299,119 +431649,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [152279] = 27, + [155502] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, - anon_sym_LPAREN2, - ACTIONS(6429), 1, - anon_sym_LBRACK, - ACTIONS(6431), 1, - anon_sym_DOT, - ACTIONS(8423), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, - anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(7283), 1, + anon_sym___attribute__, + ACTIONS(7285), 1, + anon_sym___attribute, + STATE(4787), 1, + sym_attribute_specifier, + ACTIONS(6104), 4, anon_sym_AMP, - ACTIONS(8659), 1, - anon_sym_GT_EQ, - ACTIONS(8663), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, - anon_sym_bitor, - ACTIONS(8683), 1, - anon_sym_QMARK, - ACTIONS(8967), 1, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(6106), 31, anon_sym_COMMA, - ACTIONS(8969), 1, - anon_sym_RPAREN, - STATE(2525), 1, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [155554] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6935), 1, + anon_sym_LPAREN2, + ACTIONS(7720), 1, + anon_sym_LBRACK, + ACTIONS(7734), 1, + anon_sym_DOT, + STATE(3632), 1, sym_argument_list, - STATE(2526), 1, + STATE(3652), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(7736), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8776), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(6410), 10, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + ACTIONS(6412), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8661), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8655), 3, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(8657), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [152373] = 15, + anon_sym_GT2, + [155614] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6979), 1, + ACTIONS(6935), 1, anon_sym_LPAREN2, - ACTIONS(7659), 1, + ACTIONS(7720), 1, anon_sym_LBRACK, - ACTIONS(7663), 1, + ACTIONS(7734), 1, anon_sym_DOT, - ACTIONS(8713), 1, - anon_sym_SLASH, - ACTIONS(8729), 1, - anon_sym_LT_LT, - ACTIONS(8731), 1, - anon_sym_GT_GT, - STATE(3545), 1, + STATE(3632), 1, sym_argument_list, - STATE(3546), 1, + STATE(3652), 1, sym_subscript_argument_list, - ACTIONS(7665), 2, + ACTIONS(7736), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8709), 2, + ACTIONS(6514), 10, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8711), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8741), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6449), 6, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6451), 16, + anon_sym_GT_GT, + ACTIONS(6516), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + 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_LT_LT, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -425420,478 +431791,449 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_GT2, - [152443] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3331), 1, - anon_sym_const, - ACTIONS(5012), 1, - anon_sym_LPAREN2, - ACTIONS(8131), 1, - anon_sym_LBRACK, - ACTIONS(8195), 1, - anon_sym_STAR, - ACTIONS(8197), 1, - anon_sym_AMP_AMP, - ACTIONS(8199), 1, - anon_sym_AMP, - STATE(2994), 1, - sym_parameter_list, - STATE(4289), 1, - sym_alignas_qualifier, - STATE(6087), 1, - sym__function_declarator_seq, - STATE(6468), 1, - sym__abstract_declarator, - ACTIONS(8133), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4131), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6092), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8441), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(8125), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [152515] = 27, + [155672] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(7564), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8919), 1, - anon_sym_COMMA, - ACTIONS(8925), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8931), 1, + ACTIONS(8681), 1, anon_sym_PIPE, - ACTIONS(8935), 1, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8941), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8947), 1, - anon_sym_QMARK, - ACTIONS(8949), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8951), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8953), 1, + ACTIONS(8699), 1, anon_sym_bitand, - ACTIONS(8971), 1, - anon_sym_COLON, - STATE(2525), 1, + ACTIONS(8707), 1, + anon_sym_QMARK, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(7566), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8921), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8923), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8927), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8929), 2, + ACTIONS(8679), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8933), 2, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8943), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8937), 3, + ACTIONS(8701), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8937), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8939), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [152609] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4167), 1, - anon_sym_COLON_COLON, - ACTIONS(8973), 1, - anon_sym_LT, - STATE(2547), 1, - sym_template_argument_list, - ACTIONS(4963), 4, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_const, - ACTIONS(4970), 31, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_or, - anon_sym_and, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [152661] = 17, + [155764] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3331), 1, - anon_sym_const, - ACTIONS(5012), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6750), 1, - anon_sym___attribute, - ACTIONS(8131), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(8222), 1, + ACTIONS(6418), 1, + anon_sym_DOT, + ACTIONS(8449), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8677), 1, + anon_sym_SLASH, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, + anon_sym_AMP, + ACTIONS(8691), 1, + anon_sym_GT_EQ, + ACTIONS(8695), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8697), 1, + anon_sym_bitor, + ACTIONS(8699), 1, + anon_sym_bitand, + ACTIONS(8707), 1, + anon_sym_QMARK, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + ACTIONS(6420), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8048), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8673), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8675), 2, anon_sym_STAR, - ACTIONS(8224), 1, + anon_sym_PERCENT, + ACTIONS(8679), 2, anon_sym_AMP_AMP, - ACTIONS(8226), 1, - anon_sym_AMP, - STATE(3295), 1, - sym_parameter_list, - STATE(4289), 1, - sym_alignas_qualifier, - STATE(6087), 1, - sym__function_declarator_seq, - STATE(6421), 1, - sym__abstract_declarator, - ACTIONS(8133), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4131), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6092), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6748), 6, + anon_sym_and, + ACTIONS(8683), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8693), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8701), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9017), 2, anon_sym_COMMA, - anon_sym___attribute__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - ACTIONS(8125), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [152735] = 27, + anon_sym_RBRACE, + ACTIONS(8687), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8689), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [155856] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(7715), 1, + ACTIONS(7778), 1, anon_sym_COMMA, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8683), 1, + ACTIONS(8699), 1, + anon_sym_bitand, + ACTIONS(8707), 1, anon_sym_QMARK, - ACTIONS(8975), 1, - anon_sym_SEMI, - STATE(2525), 1, + ACTIONS(9019), 1, + anon_sym_RPAREN, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8679), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, + ACTIONS(8701), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [152829] = 27, + [155950] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(6935), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(7720), 1, anon_sym_LBRACK, - ACTIONS(7564), 1, + ACTIONS(7734), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8748), 1, + anon_sym_SLASH, + ACTIONS(8754), 1, + anon_sym_PIPE, + ACTIONS(8758), 1, + anon_sym_AMP, + ACTIONS(8764), 1, + anon_sym_LT_LT, + ACTIONS(8766), 1, + anon_sym_GT_GT, + ACTIONS(8770), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8772), 1, + anon_sym_bitor, + ACTIONS(8774), 1, + anon_sym_bitand, + STATE(3632), 1, + sym_argument_list, + STATE(3652), 1, + sym_subscript_argument_list, + ACTIONS(7736), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8744), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8746), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8750), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8752), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8756), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8776), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8760), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6987), 4, anon_sym_DOT_DOT_DOT, - ACTIONS(8919), 1, anon_sym_COMMA, - ACTIONS(8925), 1, + anon_sym_QMARK, + anon_sym_GT2, + ACTIONS(8762), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [156038] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5845), 1, + anon_sym_LPAREN2, + ACTIONS(6414), 1, + anon_sym_LBRACK, + ACTIONS(6418), 1, + anon_sym_DOT, + ACTIONS(8449), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8931), 1, + ACTIONS(8681), 1, anon_sym_PIPE, - ACTIONS(8935), 1, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8941), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8947), 1, - anon_sym_QMARK, - ACTIONS(8949), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8951), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8953), 1, + ACTIONS(8699), 1, anon_sym_bitand, - ACTIONS(8977), 1, - anon_sym_COLON, - STATE(2525), 1, + ACTIONS(8707), 1, + anon_sym_QMARK, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(7566), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8921), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8923), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8927), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8929), 2, + ACTIONS(8679), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8933), 2, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8943), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8937), 3, + ACTIONS(8701), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9007), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8939), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [152923] = 27, + [156130] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(6935), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(7720), 1, anon_sym_LBRACK, - ACTIONS(7564), 1, + ACTIONS(7734), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8740), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8919), 1, - anon_sym_COMMA, - ACTIONS(8925), 1, + ACTIONS(8748), 1, anon_sym_SLASH, - ACTIONS(8931), 1, + ACTIONS(8754), 1, anon_sym_PIPE, - ACTIONS(8935), 1, + ACTIONS(8758), 1, anon_sym_AMP, - ACTIONS(8941), 1, - anon_sym_GT_EQ, - ACTIONS(8947), 1, + ACTIONS(8764), 1, + anon_sym_LT_LT, + ACTIONS(8766), 1, + anon_sym_GT_GT, + ACTIONS(8768), 1, anon_sym_QMARK, - ACTIONS(8949), 1, + ACTIONS(8770), 1, anon_sym_LT_EQ_GT, - ACTIONS(8951), 1, + ACTIONS(8772), 1, anon_sym_bitor, - ACTIONS(8953), 1, + ACTIONS(8774), 1, anon_sym_bitand, - ACTIONS(8979), 1, - anon_sym_COLON, - STATE(2525), 1, + STATE(3632), 1, sym_argument_list, - STATE(2526), 1, + STATE(3652), 1, sym_subscript_argument_list, - ACTIONS(7566), 2, + ACTIONS(6999), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(7736), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8921), 2, + ACTIONS(8744), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8923), 2, + ACTIONS(8746), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8927), 2, + ACTIONS(8750), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8929), 2, + ACTIONS(8752), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8933), 2, + ACTIONS(8756), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8943), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8937), 3, + ACTIONS(8776), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8760), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8939), 3, + ACTIONS(8762), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [153017] = 16, + [156222] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(3331), 1, + ACTIONS(3339), 1, anon_sym_const, - ACTIONS(5012), 1, + ACTIONS(5020), 1, anon_sym_LPAREN2, - ACTIONS(8131), 1, + ACTIONS(5879), 1, + anon_sym___attribute, + ACTIONS(8147), 1, anon_sym_LBRACK, - ACTIONS(8228), 1, + ACTIONS(8236), 1, anon_sym_STAR, - ACTIONS(8230), 1, + ACTIONS(8238), 1, anon_sym_AMP_AMP, - ACTIONS(8232), 1, + ACTIONS(8240), 1, anon_sym_AMP, - STATE(2998), 1, + STATE(3378), 1, sym_parameter_list, - STATE(4289), 1, + STATE(4325), 1, sym_alignas_qualifier, - STATE(6087), 1, + STATE(6109), 1, sym__function_declarator_seq, - STATE(6519), 1, + STATE(6612), 1, sym__abstract_declarator, - ACTIONS(8133), 2, + ACTIONS(8149), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4131), 2, + STATE(4215), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6092), 5, + STATE(6099), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(5865), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(5877), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, anon_sym_final, anon_sym_override, - anon_sym_try, anon_sym_requires, - ACTIONS(8125), 12, + ACTIONS(8141), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -425904,117 +432246,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [153089] = 26, + [156296] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(7614), 1, anon_sym_DOT, - ACTIONS(8423), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8815), 1, + ACTIONS(8959), 1, anon_sym_SLASH, - ACTIONS(8821), 1, + ACTIONS(8965), 1, anon_sym_PIPE, - ACTIONS(8825), 1, + ACTIONS(8969), 1, anon_sym_AMP, - ACTIONS(8831), 1, + ACTIONS(8975), 1, anon_sym_GT_EQ, - ACTIONS(8837), 1, - anon_sym_QMARK, - ACTIONS(8839), 1, + ACTIONS(8983), 1, anon_sym_LT_EQ_GT, - ACTIONS(8841), 1, + ACTIONS(8985), 1, anon_sym_bitor, - ACTIONS(8843), 1, + ACTIONS(8987), 1, anon_sym_bitand, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(7616), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8811), 2, + ACTIONS(8955), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8813), 2, + ACTIONS(8957), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8817), 2, + ACTIONS(8961), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8819), 2, + ACTIONS(8963), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8823), 2, + ACTIONS(8967), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8833), 2, + ACTIONS(8977), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8981), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(8827), 3, + ACTIONS(8971), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8829), 3, + ACTIONS(8973), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [153181] = 16, + ACTIONS(7017), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + [156384] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(3331), 1, + ACTIONS(3339), 1, anon_sym_const, - ACTIONS(5012), 1, + ACTIONS(5020), 1, anon_sym_LPAREN2, - ACTIONS(8131), 1, + ACTIONS(8147), 1, anon_sym_LBRACK, - ACTIONS(8228), 1, + ACTIONS(8236), 1, anon_sym_STAR, - ACTIONS(8230), 1, + ACTIONS(8238), 1, anon_sym_AMP_AMP, - ACTIONS(8232), 1, + ACTIONS(8240), 1, anon_sym_AMP, - STATE(2998), 1, + ACTIONS(8455), 1, + anon_sym___attribute, + STATE(3378), 1, sym_parameter_list, - STATE(4289), 1, + STATE(4325), 1, sym_alignas_qualifier, - STATE(6087), 1, + STATE(6109), 1, sym__function_declarator_seq, - STATE(6510), 1, + STATE(6589), 1, sym__abstract_declarator, - ACTIONS(8133), 2, + ACTIONS(8149), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4131), 2, + STATE(4215), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6092), 5, + STATE(6099), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8445), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(8453), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, anon_sym_final, anon_sym_override, - anon_sym_try, anon_sym_requires, - ACTIONS(8125), 12, + ACTIONS(8141), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [156458] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7283), 1, + anon_sym___attribute__, + ACTIONS(7285), 1, + anon_sym___attribute, + STATE(4790), 1, + sym_attribute_specifier, + ACTIONS(6108), 4, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(6110), 31, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym___extension__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -426026,169 +432403,173 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [153253] = 27, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [156510] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(7715), 1, + ACTIONS(7778), 1, anon_sym_COMMA, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8683), 1, + ACTIONS(8699), 1, + anon_sym_bitand, + ACTIONS(8707), 1, anon_sym_QMARK, - ACTIONS(8983), 1, - anon_sym_RPAREN, - STATE(2525), 1, + ACTIONS(9021), 1, + anon_sym_SEMI, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8679), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, + ACTIONS(8701), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [153347] = 27, + [156604] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(7614), 1, anon_sym_DOT, - ACTIONS(8423), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8959), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8965), 1, + anon_sym_PIPE, + ACTIONS(8969), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8975), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8983), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, - anon_sym_bitor, - ACTIONS(8683), 1, - anon_sym_QMARK, ACTIONS(8985), 1, - anon_sym_COMMA, + anon_sym_bitor, ACTIONS(8987), 1, - anon_sym_RPAREN, - STATE(2525), 1, + anon_sym_bitand, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(7616), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8955), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8957), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8961), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8963), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8967), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8977), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8971), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8973), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [153441] = 10, + ACTIONS(7021), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + [156692] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8874), 1, - anon_sym___attribute__, - ACTIONS(8876), 1, - anon_sym___attribute, - ACTIONS(8989), 1, - anon_sym_COLON, - ACTIONS(8991), 1, - anon_sym_LBRACE, - STATE(4826), 1, - sym__enum_base_clause, - STATE(4868), 1, - sym_enumerator_list, - STATE(4927), 1, - sym_attribute_specifier, - ACTIONS(6342), 2, + ACTIONS(8217), 1, + sym_auto, + ACTIONS(8219), 1, + anon_sym_decltype, + STATE(4730), 1, + sym_decltype_auto, + ACTIONS(5533), 5, anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, anon_sym_const, - ACTIONS(6344), 29, + anon_sym___asm, + ACTIONS(5535), 30, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, - anon_sym_LBRACK, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, @@ -426203,538 +432584,402 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_auto, - anon_sym_decltype, + anon_sym_asm, + anon_sym___asm__, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_try, anon_sym_requires, - [153501] = 19, + [156744] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3331), 1, - anon_sym_const, - ACTIONS(5012), 1, - anon_sym_LPAREN2, - ACTIONS(5014), 1, - anon_sym_STAR, - ACTIONS(5016), 1, - anon_sym_AMP_AMP, - ACTIONS(5018), 1, - anon_sym_AMP, - ACTIONS(8131), 1, - anon_sym_LBRACK, - ACTIONS(8149), 1, - sym_auto, - ACTIONS(8151), 1, - anon_sym_decltype, - STATE(1884), 1, - sym_decltype_auto, - STATE(3004), 1, - sym_parameter_list, - STATE(4289), 1, - sym_alignas_qualifier, - STATE(6087), 1, - sym__function_declarator_seq, - STATE(6700), 1, - sym__abstract_declarator, - ACTIONS(8133), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4891), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8205), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, + ACTIONS(4991), 2, + anon_sym_COLON_COLON, anon_sym_LBRACE, - STATE(6092), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8125), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [153579] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6979), 1, - anon_sym_LPAREN2, - ACTIONS(7659), 1, - anon_sym_LBRACK, - ACTIONS(7663), 1, - anon_sym_DOT, - ACTIONS(8713), 1, + ACTIONS(4993), 11, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(8719), 1, anon_sym_PIPE, - ACTIONS(8723), 1, anon_sym_AMP, - ACTIONS(8729), 1, - anon_sym_LT_LT, - ACTIONS(8731), 1, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym_GT_GT, - ACTIONS(8735), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8737), 1, - anon_sym_bitor, - ACTIONS(8739), 1, - anon_sym_bitand, - STATE(3545), 1, - sym_argument_list, - STATE(3546), 1, - sym_subscript_argument_list, - ACTIONS(7665), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8709), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8711), 2, + anon_sym_DOT, + ACTIONS(4986), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8715), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8717), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8721), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(8741), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8725), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7007), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + anon_sym_LT_LT, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_GT2, - ACTIONS(8727), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [153667] = 27, + [156792] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(7715), 1, + ACTIONS(7778), 1, anon_sym_COMMA, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8683), 1, + ACTIONS(8699), 1, + anon_sym_bitand, + ACTIONS(8707), 1, anon_sym_QMARK, - ACTIONS(8693), 1, + ACTIONS(9023), 1, anon_sym_SEMI, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8679), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, + ACTIONS(8701), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [153761] = 27, + [156886] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(6935), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(7720), 1, anon_sym_LBRACK, - ACTIONS(7564), 1, + ACTIONS(7734), 1, anon_sym_DOT, - ACTIONS(8423), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8919), 1, - anon_sym_COMMA, - ACTIONS(8925), 1, + ACTIONS(8748), 1, anon_sym_SLASH, - ACTIONS(8931), 1, + ACTIONS(8754), 1, anon_sym_PIPE, - ACTIONS(8935), 1, + ACTIONS(8758), 1, anon_sym_AMP, - ACTIONS(8941), 1, - anon_sym_GT_EQ, - ACTIONS(8947), 1, - anon_sym_QMARK, - ACTIONS(8949), 1, + ACTIONS(8764), 1, + anon_sym_LT_LT, + ACTIONS(8766), 1, + anon_sym_GT_GT, + ACTIONS(8770), 1, anon_sym_LT_EQ_GT, - ACTIONS(8951), 1, + ACTIONS(8772), 1, anon_sym_bitor, - ACTIONS(8953), 1, + ACTIONS(8774), 1, anon_sym_bitand, - ACTIONS(8993), 1, - anon_sym_COLON, - STATE(2525), 1, + STATE(3632), 1, sym_argument_list, - STATE(2526), 1, + STATE(3652), 1, sym_subscript_argument_list, - ACTIONS(7566), 2, + ACTIONS(7736), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8921), 2, + ACTIONS(8744), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8923), 2, + ACTIONS(8746), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8927), 2, + ACTIONS(8750), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8929), 2, + ACTIONS(8752), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8933), 2, + ACTIONS(8756), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8943), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8937), 3, + ACTIONS(8776), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8760), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8939), 3, + ACTIONS(6995), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_GT2, + ACTIONS(8762), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [153855] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7083), 1, - anon_sym___attribute__, - ACTIONS(7085), 1, - anon_sym___attribute, - STATE(4678), 1, - sym_attribute_specifier, - ACTIONS(6062), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(6064), 31, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [153907] = 26, + [156974] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8683), 1, + ACTIONS(8699), 1, + anon_sym_bitand, + ACTIONS(8707), 1, anon_sym_QMARK, - STATE(2525), 1, + ACTIONS(9025), 1, + anon_sym_COMMA, + ACTIONS(9027), 1, + anon_sym_RPAREN, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8679), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, + ACTIONS(8701), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8995), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(8655), 3, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [153999] = 27, + [157068] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(7614), 1, anon_sym_DOT, - ACTIONS(7715), 1, - anon_sym_COMMA, - ACTIONS(8423), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, - anon_sym_SLASH, - ACTIONS(8653), 1, - anon_sym_AMP, - ACTIONS(8659), 1, - anon_sym_GT_EQ, - ACTIONS(8663), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, - anon_sym_bitor, - ACTIONS(8683), 1, - anon_sym_QMARK, - ACTIONS(8997), 1, - anon_sym_SEMI, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(7616), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(6518), 8, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6520), 21, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_CARET, - anon_sym_xor, - ACTIONS(8661), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, - anon_sym_PIPE_PIPE, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, - ACTIONS(8655), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(8657), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [154093] = 26, + [157128] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6979), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(7659), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(7663), 1, + ACTIONS(7614), 1, anon_sym_DOT, - ACTIONS(8705), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8713), 1, + ACTIONS(8953), 1, + anon_sym_COMMA, + ACTIONS(8959), 1, anon_sym_SLASH, - ACTIONS(8719), 1, + ACTIONS(8965), 1, anon_sym_PIPE, - ACTIONS(8723), 1, + ACTIONS(8969), 1, anon_sym_AMP, - ACTIONS(8729), 1, - anon_sym_LT_LT, - ACTIONS(8731), 1, - anon_sym_GT_GT, - ACTIONS(8733), 1, + ACTIONS(8975), 1, + anon_sym_GT_EQ, + ACTIONS(8981), 1, anon_sym_QMARK, - ACTIONS(8735), 1, + ACTIONS(8983), 1, anon_sym_LT_EQ_GT, - ACTIONS(8737), 1, + ACTIONS(8985), 1, anon_sym_bitor, - ACTIONS(8739), 1, + ACTIONS(8987), 1, anon_sym_bitand, - STATE(3545), 1, + ACTIONS(9029), 1, + anon_sym_COLON, + STATE(2491), 1, sym_argument_list, - STATE(3546), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(7665), 2, + ACTIONS(7616), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8709), 2, + ACTIONS(8048), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8955), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8711), 2, + ACTIONS(8957), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8715), 2, + ACTIONS(8961), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8717), 2, + ACTIONS(8963), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8721), 2, + ACTIONS(8967), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8741), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8999), 2, - anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(8725), 3, + ACTIONS(8977), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8971), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8727), 4, + ACTIONS(8973), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [154185] = 5, + [157222] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(8439), 1, + ACTIONS(5845), 1, + anon_sym_LPAREN2, + ACTIONS(6414), 1, anon_sym_LBRACK, - STATE(4690), 1, - sym_new_declarator, - ACTIONS(6352), 11, + ACTIONS(7614), 1, + anon_sym_DOT, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + ACTIONS(7616), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8048), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6460), 8, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6354), 25, + ACTIONS(6462), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -426742,8 +432987,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_LBRACE, + anon_sym_GT_GT, + anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -426752,246 +432999,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [154235] = 27, + [157282] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(6935), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(7720), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(7734), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8740), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8748), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8754), 1, + anon_sym_PIPE, + ACTIONS(8758), 1, anon_sym_AMP, - ACTIONS(8659), 1, - anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8764), 1, + anon_sym_LT_LT, + ACTIONS(8766), 1, + anon_sym_GT_GT, + ACTIONS(8768), 1, + anon_sym_QMARK, + ACTIONS(8770), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8772), 1, anon_sym_bitor, - ACTIONS(8683), 1, - anon_sym_QMARK, - ACTIONS(9001), 1, - anon_sym_COMMA, - ACTIONS(9003), 1, - anon_sym_RPAREN, - STATE(2525), 1, + ACTIONS(8774), 1, + anon_sym_bitand, + STATE(3632), 1, sym_argument_list, - STATE(2526), 1, + STATE(3652), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(7736), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8744), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8746), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8661), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, + ACTIONS(8750), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8655), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8657), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [154329] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3331), 1, - anon_sym_const, - ACTIONS(5012), 1, - anon_sym_LPAREN2, - ACTIONS(8131), 1, - anon_sym_LBRACK, - ACTIONS(8228), 1, - anon_sym_STAR, - ACTIONS(8230), 1, + ACTIONS(8752), 2, anon_sym_AMP_AMP, - ACTIONS(8232), 1, - anon_sym_AMP, - STATE(2998), 1, - sym_parameter_list, - STATE(4289), 1, - sym_alignas_qualifier, - STATE(6087), 1, - sym__function_declarator_seq, - STATE(6420), 1, - sym__abstract_declarator, - ACTIONS(8133), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4131), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6092), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6748), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - ACTIONS(8125), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [154401] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5827), 1, - anon_sym_LPAREN2, - ACTIONS(6429), 1, - anon_sym_LBRACK, - ACTIONS(6431), 1, - anon_sym_DOT, - ACTIONS(7715), 1, - anon_sym_COMMA, - ACTIONS(8423), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, - anon_sym_SLASH, - ACTIONS(8653), 1, - anon_sym_AMP, - ACTIONS(8659), 1, - anon_sym_GT_EQ, - ACTIONS(8663), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, - anon_sym_bitor, - ACTIONS(8683), 1, - anon_sym_QMARK, - ACTIONS(9005), 1, - anon_sym_SEMI, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8045), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8647), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8651), 2, + anon_sym_and, + ACTIONS(8756), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8776), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9031), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(8760), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8762), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [154495] = 17, + [157374] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(3331), 1, + ACTIONS(3339), 1, anon_sym_const, - ACTIONS(5012), 1, + ACTIONS(5020), 1, anon_sym_LPAREN2, - ACTIONS(8131), 1, - anon_sym_LBRACK, - ACTIONS(8216), 1, + ACTIONS(5022), 1, anon_sym_STAR, - ACTIONS(8218), 1, + ACTIONS(5024), 1, anon_sym_AMP_AMP, - ACTIONS(8220), 1, + ACTIONS(5026), 1, anon_sym_AMP, - ACTIONS(8443), 1, - anon_sym___attribute, - STATE(3299), 1, + ACTIONS(8147), 1, + anon_sym_LBRACK, + ACTIONS(8179), 1, + sym_auto, + ACTIONS(8181), 1, + anon_sym_decltype, + STATE(1864), 1, + sym_decltype_auto, + STATE(3113), 1, sym_parameter_list, - STATE(4289), 1, + STATE(4325), 1, sym_alignas_qualifier, - STATE(6087), 1, + STATE(6109), 1, sym__function_declarator_seq, - STATE(6505), 1, + STATE(6800), 1, sym__abstract_declarator, - ACTIONS(8133), 2, + ACTIONS(8149), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4131), 2, + STATE(4934), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6092), 5, + ACTIONS(8213), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6099), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8441), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(8125), 12, + ACTIONS(8141), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -427004,210 +433124,231 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [154569] = 6, + [157452] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8189), 1, - sym_auto, - ACTIONS(8191), 1, - anon_sym_decltype, - STATE(4633), 1, - sym_decltype_auto, - ACTIONS(5589), 5, - anon_sym_AMP, - anon_sym___attribute, + ACTIONS(5044), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6008), 1, + anon_sym_LPAREN2, + ACTIONS(6011), 1, anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(5591), 30, + ACTIONS(4174), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4166), 26, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [154621] = 26, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [157504] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8683), 1, + ACTIONS(8699), 1, + anon_sym_bitand, + ACTIONS(8707), 1, anon_sym_QMARK, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8493), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8679), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, + ACTIONS(8701), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8747), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(8655), 3, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [154713] = 27, + [157596] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(7715), 1, + ACTIONS(7778), 1, anon_sym_COMMA, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8683), 1, + ACTIONS(8699), 1, + anon_sym_bitand, + ACTIONS(8707), 1, anon_sym_QMARK, - ACTIONS(9007), 1, - anon_sym_RPAREN, - STATE(2525), 1, + ACTIONS(9033), 1, + anon_sym_SEMI, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8679), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, + ACTIONS(8701), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [154807] = 6, + [157690] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(7083), 1, - anon_sym___attribute__, - ACTIONS(7085), 1, - anon_sym___attribute, - STATE(4586), 1, - sym_attribute_specifier, - ACTIONS(6090), 4, - anon_sym_AMP, - anon_sym_LBRACK, + ACTIONS(3339), 1, anon_sym_const, - anon_sym___asm, - ACTIONS(6092), 31, - anon_sym_COMMA, + ACTIONS(5020), 1, anon_sym_LPAREN2, + ACTIONS(6783), 1, + anon_sym___attribute, + ACTIONS(8147), 1, + anon_sym_LBRACK, + ACTIONS(8236), 1, anon_sym_STAR, + ACTIONS(8238), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(8240), 1, + anon_sym_AMP, + STATE(3378), 1, + sym_parameter_list, + STATE(4325), 1, + sym_alignas_qualifier, + STATE(6109), 1, + sym__function_declarator_seq, + STATE(6613), 1, + sym__abstract_declarator, + ACTIONS(8149), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4215), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6099), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6781), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8141), 12, anon_sym___extension__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -427219,822 +433360,722 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [154859] = 26, + [157764] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(6979), 1, + ACTIONS(6935), 1, anon_sym_LPAREN2, - ACTIONS(7659), 1, + ACTIONS(7720), 1, anon_sym_LBRACK, - ACTIONS(7663), 1, + ACTIONS(7734), 1, anon_sym_DOT, - ACTIONS(8705), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8713), 1, + ACTIONS(8748), 1, anon_sym_SLASH, - ACTIONS(8719), 1, + ACTIONS(8754), 1, anon_sym_PIPE, - ACTIONS(8723), 1, + ACTIONS(8758), 1, anon_sym_AMP, - ACTIONS(8729), 1, + ACTIONS(8764), 1, anon_sym_LT_LT, - ACTIONS(8731), 1, + ACTIONS(8766), 1, anon_sym_GT_GT, - ACTIONS(8733), 1, - anon_sym_QMARK, - ACTIONS(8735), 1, + ACTIONS(8770), 1, anon_sym_LT_EQ_GT, - ACTIONS(8737), 1, + ACTIONS(8772), 1, anon_sym_bitor, - ACTIONS(8739), 1, + ACTIONS(8774), 1, anon_sym_bitand, - STATE(3545), 1, + STATE(3632), 1, sym_argument_list, - STATE(3546), 1, + STATE(3652), 1, sym_subscript_argument_list, - ACTIONS(7665), 2, + ACTIONS(7736), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8709), 2, + ACTIONS(8744), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8711), 2, + ACTIONS(8746), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8715), 2, + ACTIONS(8750), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8717), 2, + ACTIONS(8752), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8721), 2, + ACTIONS(8756), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8741), 2, + ACTIONS(8776), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8955), 2, - anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(8725), 3, + ACTIONS(8760), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8727), 4, + ACTIONS(7021), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_GT2, + ACTIONS(8762), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [154951] = 26, + [157852] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6979), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(7659), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(7663), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8705), 1, + ACTIONS(7778), 1, + anon_sym_COMMA, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8713), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8719), 1, + ACTIONS(8681), 1, anon_sym_PIPE, - ACTIONS(8723), 1, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8729), 1, - anon_sym_LT_LT, - ACTIONS(8731), 1, - anon_sym_GT_GT, - ACTIONS(8733), 1, - anon_sym_QMARK, - ACTIONS(8735), 1, + ACTIONS(8691), 1, + anon_sym_GT_EQ, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8737), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8739), 1, + ACTIONS(8699), 1, anon_sym_bitand, - STATE(3545), 1, + ACTIONS(8707), 1, + anon_sym_QMARK, + ACTIONS(9035), 1, + anon_sym_RPAREN, + STATE(2491), 1, sym_argument_list, - STATE(3546), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(7021), 2, - anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(7665), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8709), 2, + ACTIONS(8048), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8711), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8715), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8717), 2, + ACTIONS(8679), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8721), 2, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8741), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8725), 3, + ACTIONS(8693), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8701), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8727), 4, + ACTIONS(8689), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [155043] = 26, + [157946] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(6979), 1, + ACTIONS(5563), 1, + anon_sym_COLON, + ACTIONS(6035), 1, + anon_sym_LBRACE, + STATE(1884), 1, + sym_attribute_specifier, + STATE(5198), 1, + sym_field_declaration_list, + STATE(7204), 1, + sym_virtual_specifier, + STATE(7976), 1, + sym_base_class_clause, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(5567), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5559), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(5557), 25, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + sym_auto, + anon_sym_decltype, + [158008] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(7659), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(7663), 1, + ACTIONS(7614), 1, anon_sym_DOT, - ACTIONS(8705), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8713), 1, + ACTIONS(8953), 1, + anon_sym_COMMA, + ACTIONS(8959), 1, anon_sym_SLASH, - ACTIONS(8719), 1, + ACTIONS(8965), 1, anon_sym_PIPE, - ACTIONS(8723), 1, + ACTIONS(8969), 1, anon_sym_AMP, - ACTIONS(8729), 1, - anon_sym_LT_LT, - ACTIONS(8731), 1, - anon_sym_GT_GT, - ACTIONS(8733), 1, + ACTIONS(8975), 1, + anon_sym_GT_EQ, + ACTIONS(8981), 1, anon_sym_QMARK, - ACTIONS(8735), 1, + ACTIONS(8983), 1, anon_sym_LT_EQ_GT, - ACTIONS(8737), 1, + ACTIONS(8985), 1, anon_sym_bitor, - ACTIONS(8739), 1, + ACTIONS(8987), 1, anon_sym_bitand, - STATE(3545), 1, + ACTIONS(9037), 1, + anon_sym_COLON, + STATE(2491), 1, sym_argument_list, - STATE(3546), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(7665), 2, + ACTIONS(7616), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8709), 2, + ACTIONS(8048), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8955), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8711), 2, + ACTIONS(8957), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8715), 2, + ACTIONS(8961), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8717), 2, + ACTIONS(8963), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8721), 2, + ACTIONS(8967), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8741), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9009), 2, - anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(8725), 3, + ACTIONS(8977), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8971), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8727), 4, + ACTIONS(8973), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [155135] = 27, + [158102] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(7778), 1, + anon_sym_COMMA, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8683), 1, + ACTIONS(8699), 1, + anon_sym_bitand, + ACTIONS(8707), 1, anon_sym_QMARK, - ACTIONS(9011), 1, - anon_sym_COMMA, - ACTIONS(9013), 1, - anon_sym_RPAREN, - STATE(2525), 1, + ACTIONS(9039), 1, + anon_sym_SEMI, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8679), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, + ACTIONS(8701), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [155229] = 26, + [158196] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6979), 1, + ACTIONS(6935), 1, anon_sym_LPAREN2, - ACTIONS(7659), 1, + ACTIONS(7720), 1, anon_sym_LBRACK, - ACTIONS(7663), 1, + ACTIONS(7734), 1, anon_sym_DOT, - ACTIONS(8705), 1, + ACTIONS(8740), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8713), 1, + ACTIONS(8748), 1, anon_sym_SLASH, - ACTIONS(8719), 1, + ACTIONS(8754), 1, anon_sym_PIPE, - ACTIONS(8723), 1, + ACTIONS(8758), 1, anon_sym_AMP, - ACTIONS(8729), 1, + ACTIONS(8764), 1, anon_sym_LT_LT, - ACTIONS(8731), 1, + ACTIONS(8766), 1, anon_sym_GT_GT, - ACTIONS(8733), 1, + ACTIONS(8768), 1, anon_sym_QMARK, - ACTIONS(8735), 1, + ACTIONS(8770), 1, anon_sym_LT_EQ_GT, - ACTIONS(8737), 1, + ACTIONS(8772), 1, anon_sym_bitor, - ACTIONS(8739), 1, + ACTIONS(8774), 1, anon_sym_bitand, - STATE(3545), 1, + STATE(3632), 1, sym_argument_list, - STATE(3546), 1, + STATE(3652), 1, sym_subscript_argument_list, - ACTIONS(7665), 2, + ACTIONS(6664), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(7736), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8709), 2, + ACTIONS(8744), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8711), 2, + ACTIONS(8746), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8715), 2, + ACTIONS(8750), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8717), 2, + ACTIONS(8752), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8721), 2, + ACTIONS(8756), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8741), 2, + ACTIONS(8776), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9009), 2, - anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(8725), 3, + ACTIONS(8760), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8727), 4, + ACTIONS(8762), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [155321] = 27, + [158288] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(7614), 1, anon_sym_DOT, - ACTIONS(7715), 1, - anon_sym_COMMA, - ACTIONS(8423), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8959), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8965), 1, + anon_sym_PIPE, + ACTIONS(8969), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8975), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8983), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8985), 1, anon_sym_bitor, - ACTIONS(8683), 1, - anon_sym_QMARK, - ACTIONS(9015), 1, - anon_sym_SEMI, - STATE(2525), 1, + ACTIONS(8987), 1, + anon_sym_bitand, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(7616), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8955), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8957), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8661), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, + ACTIONS(8961), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8655), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8657), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [155415] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6979), 1, - anon_sym_LPAREN2, - ACTIONS(7659), 1, - anon_sym_LBRACK, - ACTIONS(7663), 1, - anon_sym_DOT, - STATE(3545), 1, - sym_argument_list, - STATE(3546), 1, - sym_subscript_argument_list, - ACTIONS(7665), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8741), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6435), 10, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - ACTIONS(6437), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(8963), 2, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, anon_sym_and, - anon_sym_bitor, + ACTIONS(8967), 2, + anon_sym_CARET, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_GT2, - [155475] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6979), 1, - anon_sym_LPAREN2, - ACTIONS(7659), 1, - anon_sym_LBRACK, - ACTIONS(7663), 1, - anon_sym_DOT, - ACTIONS(8705), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8713), 1, - anon_sym_SLASH, - ACTIONS(8719), 1, - anon_sym_PIPE, - ACTIONS(8723), 1, - anon_sym_AMP, - ACTIONS(8729), 1, + ACTIONS(8977), 2, anon_sym_LT_LT, - ACTIONS(8731), 1, anon_sym_GT_GT, - ACTIONS(8733), 1, - anon_sym_QMARK, - ACTIONS(8735), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8737), 1, - anon_sym_bitor, - ACTIONS(8739), 1, - anon_sym_bitand, - STATE(3545), 1, - sym_argument_list, - STATE(3546), 1, - sym_subscript_argument_list, - ACTIONS(7013), 2, - anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(7665), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8709), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8711), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8715), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8717), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8721), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8741), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8725), 3, + ACTIONS(8971), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8727), 4, + ACTIONS(8973), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [155567] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4167), 1, - anon_sym_COLON_COLON, - ACTIONS(8973), 1, - anon_sym_LT, - STATE(2547), 1, - sym_template_argument_list, - ACTIONS(5838), 4, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_const, - ACTIONS(4172), 31, + ACTIONS(6949), 4, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_or, - anon_sym_and, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [155619] = 27, + anon_sym_COLON, + anon_sym_QMARK, + [158376] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8683), 1, + ACTIONS(8699), 1, + anon_sym_bitand, + ACTIONS(8707), 1, anon_sym_QMARK, - ACTIONS(9017), 1, - anon_sym_COMMA, - ACTIONS(9019), 1, - anon_sym_RPAREN, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8679), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, + ACTIONS(8701), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(9031), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [155713] = 27, + [158468] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(7564), 1, + ACTIONS(7614), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8919), 1, - anon_sym_COMMA, - ACTIONS(8925), 1, + ACTIONS(8959), 1, anon_sym_SLASH, - ACTIONS(8931), 1, + ACTIONS(8965), 1, anon_sym_PIPE, - ACTIONS(8935), 1, + ACTIONS(8969), 1, anon_sym_AMP, - ACTIONS(8941), 1, + ACTIONS(8975), 1, anon_sym_GT_EQ, - ACTIONS(8947), 1, + ACTIONS(8981), 1, anon_sym_QMARK, - ACTIONS(8949), 1, + ACTIONS(8983), 1, anon_sym_LT_EQ_GT, - ACTIONS(8951), 1, + ACTIONS(8985), 1, anon_sym_bitor, - ACTIONS(8953), 1, + ACTIONS(8987), 1, anon_sym_bitand, - ACTIONS(9021), 1, - anon_sym_COLON, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(7566), 2, + ACTIONS(6664), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(7616), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8921), 2, + ACTIONS(8955), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8923), 2, + ACTIONS(8957), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8927), 2, + ACTIONS(8961), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8929), 2, + ACTIONS(8963), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8933), 2, + ACTIONS(8967), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8943), 2, + ACTIONS(8977), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8937), 3, + ACTIONS(8971), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8939), 3, + ACTIONS(8973), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [155807] = 26, + [158560] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8683), 1, + ACTIONS(8699), 1, + anon_sym_bitand, + ACTIONS(8707), 1, anon_sym_QMARK, - STATE(2525), 1, + ACTIONS(9041), 1, + anon_sym_COMMA, + ACTIONS(9043), 1, + anon_sym_RPAREN, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8679), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, + ACTIONS(8701), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(9023), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(8655), 3, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [155899] = 17, + [158654] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3331), 1, - anon_sym_const, - ACTIONS(5012), 1, - anon_sym_LPAREN2, - ACTIONS(5867), 1, + ACTIONS(7283), 1, + anon_sym___attribute__, + ACTIONS(7285), 1, anon_sym___attribute, - ACTIONS(8131), 1, + STATE(4665), 1, + sym_attribute_specifier, + ACTIONS(6149), 4, + anon_sym_AMP, anon_sym_LBRACK, - ACTIONS(8216), 1, + anon_sym_const, + anon_sym___asm, + ACTIONS(6151), 31, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(8218), 1, anon_sym_AMP_AMP, - ACTIONS(8220), 1, - anon_sym_AMP, - STATE(3299), 1, - sym_parameter_list, - STATE(4289), 1, - sym_alignas_qualifier, - STATE(6087), 1, - sym__function_declarator_seq, - STATE(6467), 1, - sym__abstract_declarator, - ACTIONS(8133), 2, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - STATE(4131), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6092), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5865), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, + anon_sym_try, anon_sym_requires, - ACTIONS(8125), 12, + [158706] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7283), 1, + anon_sym___attribute__, + ACTIONS(7285), 1, + anon_sym___attribute, + STATE(4763), 1, + sym_attribute_specifier, + ACTIONS(6153), 4, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(6155), 31, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym___extension__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -428046,181 +434087,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [155973] = 26, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [158758] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8815), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8821), 1, + ACTIONS(8681), 1, anon_sym_PIPE, - ACTIONS(8825), 1, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8831), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8837), 1, - anon_sym_QMARK, - ACTIONS(8839), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8841), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8843), 1, + ACTIONS(8699), 1, anon_sym_bitand, - STATE(2525), 1, + ACTIONS(8707), 1, + anon_sym_QMARK, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7655), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8811), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8813), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8817), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8819), 2, + ACTIONS(8679), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8823), 2, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8833), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8827), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8829), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [156065] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6979), 1, - anon_sym_LPAREN2, - ACTIONS(7659), 1, - anon_sym_LBRACK, - ACTIONS(7663), 1, - anon_sym_DOT, - ACTIONS(8713), 1, - anon_sym_SLASH, - ACTIONS(8719), 1, - anon_sym_PIPE, - ACTIONS(8723), 1, - anon_sym_AMP, - ACTIONS(8729), 1, + ACTIONS(8693), 2, anon_sym_LT_LT, - ACTIONS(8731), 1, anon_sym_GT_GT, - ACTIONS(8735), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8737), 1, - anon_sym_bitor, - ACTIONS(8739), 1, - anon_sym_bitand, - STATE(3545), 1, - sym_argument_list, - STATE(3546), 1, - sym_subscript_argument_list, - ACTIONS(7665), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8709), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8711), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8715), 2, + ACTIONS(8701), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8717), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8721), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8741), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8725), 3, + ACTIONS(9031), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(6969), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_GT2, - ACTIONS(8727), 4, + ACTIONS(8689), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [156153] = 17, + [158850] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3331), 1, + ACTIONS(3339), 1, anon_sym_const, - ACTIONS(5012), 1, + ACTIONS(5020), 1, anon_sym_LPAREN2, - ACTIONS(8131), 1, + ACTIONS(8147), 1, anon_sym_LBRACK, - ACTIONS(8216), 1, + ACTIONS(8256), 1, anon_sym_STAR, - ACTIONS(8218), 1, + ACTIONS(8258), 1, anon_sym_AMP_AMP, - ACTIONS(8220), 1, + ACTIONS(8260), 1, anon_sym_AMP, - ACTIONS(8447), 1, - anon_sym___attribute, - STATE(3299), 1, + STATE(3095), 1, sym_parameter_list, - STATE(4289), 1, + STATE(4325), 1, sym_alignas_qualifier, - STATE(6087), 1, + STATE(6109), 1, sym__function_declarator_seq, - STATE(6521), 1, + STATE(6541), 1, sym__abstract_declarator, - ACTIONS(8133), 2, + ACTIONS(8149), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4131), 2, + STATE(4215), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6092), 5, + STATE(6099), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8445), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, + ACTIONS(8487), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_final, anon_sym_override, + anon_sym_try, anon_sym_requires, - ACTIONS(8125), 12, + ACTIONS(8141), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -428233,34 +434219,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [156227] = 6, + [158922] = 6, ACTIONS(3), 1, sym_comment, - STATE(2198), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5070), 2, - sym_primitive_type, - sym_identifier, - ACTIONS(6148), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5156), 8, + ACTIONS(4187), 1, + anon_sym_COLON_COLON, + ACTIONS(9045), 1, + anon_sym_LT, + STATE(2578), 1, + sym_template_argument_list, + ACTIONS(5834), 4, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_const, + ACTIONS(4192), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_GT2, - ACTIONS(5159), 23, - anon_sym_AMP, anon_sym___extension__, anon_sym___attribute__, - anon_sym___attribute, - anon_sym_const, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -428274,338 +434257,353 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, + anon_sym_or, + anon_sym_and, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [156279] = 26, + [158974] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(7614), 1, anon_sym_DOT, - ACTIONS(8423), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8815), 1, + ACTIONS(8959), 1, anon_sym_SLASH, - ACTIONS(8821), 1, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + ACTIONS(7616), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8048), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8957), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6518), 7, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, - ACTIONS(8825), 1, anon_sym_AMP, - ACTIONS(8831), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6520), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(8837), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON, anon_sym_QMARK, - ACTIONS(8839), 1, anon_sym_LT_EQ_GT, - ACTIONS(8841), 1, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [159038] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5845), 1, + anon_sym_LPAREN2, + ACTIONS(6414), 1, + anon_sym_LBRACK, + ACTIONS(6418), 1, + anon_sym_DOT, + ACTIONS(8449), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8677), 1, + anon_sym_SLASH, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, + anon_sym_AMP, + ACTIONS(8691), 1, + anon_sym_GT_EQ, + ACTIONS(8695), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8843), 1, + ACTIONS(8699), 1, anon_sym_bitand, - STATE(2525), 1, + ACTIONS(8707), 1, + anon_sym_QMARK, + ACTIONS(9047), 1, + anon_sym_COMMA, + ACTIONS(9049), 1, + anon_sym_RPAREN, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8811), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8813), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8817), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8819), 2, + ACTIONS(8679), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8823), 2, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8833), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(9025), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(8827), 3, + ACTIONS(8701), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8829), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [156371] = 24, + [159132] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(7564), 1, + ACTIONS(7614), 1, anon_sym_DOT, - ACTIONS(8925), 1, + ACTIONS(8959), 1, anon_sym_SLASH, - ACTIONS(8931), 1, + ACTIONS(8965), 1, anon_sym_PIPE, - ACTIONS(8935), 1, + ACTIONS(8969), 1, anon_sym_AMP, - ACTIONS(8941), 1, + ACTIONS(8975), 1, anon_sym_GT_EQ, - ACTIONS(8949), 1, + ACTIONS(8983), 1, anon_sym_LT_EQ_GT, - ACTIONS(8951), 1, + ACTIONS(8985), 1, anon_sym_bitor, - ACTIONS(8953), 1, + ACTIONS(8987), 1, anon_sym_bitand, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(7566), 2, + ACTIONS(7616), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8921), 2, + ACTIONS(8955), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8923), 2, + ACTIONS(8957), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8927), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8929), 2, + ACTIONS(8963), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8933), 2, + ACTIONS(8967), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8943), 2, + ACTIONS(8977), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8937), 3, + ACTIONS(8971), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8939), 3, + ACTIONS(8973), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6935), 4, + ACTIONS(6520), 6, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_PIPE_PIPE, anon_sym_COLON, anon_sym_QMARK, - [156459] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7083), 1, - anon_sym___attribute__, - ACTIONS(7085), 1, - anon_sym___attribute, - STATE(4663), 1, - sym_attribute_specifier, - ACTIONS(6117), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(6119), 31, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [156511] = 24, + anon_sym_or, + [159218] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(7564), 1, + ACTIONS(7614), 1, anon_sym_DOT, - ACTIONS(8925), 1, + ACTIONS(8959), 1, anon_sym_SLASH, - ACTIONS(8931), 1, + ACTIONS(8965), 1, anon_sym_PIPE, - ACTIONS(8935), 1, + ACTIONS(8969), 1, anon_sym_AMP, - ACTIONS(8941), 1, + ACTIONS(8975), 1, anon_sym_GT_EQ, - ACTIONS(8949), 1, + ACTIONS(8983), 1, anon_sym_LT_EQ_GT, - ACTIONS(8951), 1, + ACTIONS(8985), 1, anon_sym_bitor, - ACTIONS(8953), 1, + ACTIONS(8987), 1, anon_sym_bitand, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(7566), 2, + ACTIONS(7616), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8921), 2, + ACTIONS(8955), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8923), 2, + ACTIONS(8957), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8927), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8929), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8933), 2, + ACTIONS(8967), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8943), 2, + ACTIONS(8977), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8937), 3, + ACTIONS(8971), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8939), 3, + ACTIONS(8973), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6969), 4, + ACTIONS(6520), 8, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_COLON, anon_sym_QMARK, - [156599] = 27, + anon_sym_or, + anon_sym_and, + [159302] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(7614), 1, anon_sym_DOT, - ACTIONS(7715), 1, - anon_sym_COMMA, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8953), 1, + anon_sym_COMMA, + ACTIONS(8959), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8965), 1, + anon_sym_PIPE, + ACTIONS(8969), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8975), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8981), 1, + anon_sym_QMARK, + ACTIONS(8983), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8985), 1, anon_sym_bitor, - ACTIONS(8683), 1, - anon_sym_QMARK, - ACTIONS(9027), 1, - anon_sym_SEMI, - STATE(2525), 1, + ACTIONS(8987), 1, + anon_sym_bitand, + ACTIONS(9051), 1, + anon_sym_COLON, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(7616), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8955), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8957), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8961), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8963), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8967), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8977), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8971), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8973), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [156693] = 6, + [159396] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5036), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5946), 1, + ACTIONS(6935), 1, anon_sym_LPAREN2, - ACTIONS(5949), 1, + ACTIONS(7720), 1, anon_sym_LBRACK, - ACTIONS(4154), 9, + ACTIONS(7734), 1, + anon_sym_DOT, + STATE(3632), 1, + sym_argument_list, + STATE(3652), 1, + sym_subscript_argument_list, + ACTIONS(7736), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6433), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_DOT, - ACTIONS(4146), 26, + anon_sym_GT_GT, + ACTIONS(6435), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -428615,11 +434613,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -428630,284 +434624,246 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [156745] = 24, + anon_sym_GT2, + [159454] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(7564), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8925), 1, + ACTIONS(7778), 1, + anon_sym_COMMA, + ACTIONS(8449), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8931), 1, + ACTIONS(8681), 1, anon_sym_PIPE, - ACTIONS(8935), 1, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8941), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8949), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8951), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8953), 1, + ACTIONS(8699), 1, anon_sym_bitand, - STATE(2525), 1, + ACTIONS(8707), 1, + anon_sym_QMARK, + ACTIONS(8711), 1, + anon_sym_SEMI, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(7566), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8921), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8923), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8927), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8929), 2, + ACTIONS(8679), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8933), 2, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8943), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8937), 3, + ACTIONS(8701), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8939), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6989), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - [156833] = 10, + [159548] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(7564), 1, + ACTIONS(6518), 1, + anon_sym_PIPE, + ACTIONS(7614), 1, anon_sym_DOT, - STATE(2525), 1, + ACTIONS(8959), 1, + anon_sym_SLASH, + ACTIONS(8969), 1, + anon_sym_AMP, + ACTIONS(8975), 1, + anon_sym_GT_EQ, + ACTIONS(8983), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8987), 1, + anon_sym_bitand, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(7566), 2, + ACTIONS(7616), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6449), 8, + ACTIONS(8955), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(8957), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8967), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8977), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8971), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8973), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6451), 21, + ACTIONS(6520), 9, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - 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_LT, - anon_sym_GT_GT, anon_sym_COLON, anon_sym_QMARK, - anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - [156893] = 27, + [159630] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(7564), 1, + ACTIONS(7614), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8919), 1, + ACTIONS(8953), 1, anon_sym_COMMA, - ACTIONS(8925), 1, + ACTIONS(8959), 1, anon_sym_SLASH, - ACTIONS(8931), 1, + ACTIONS(8965), 1, anon_sym_PIPE, - ACTIONS(8935), 1, + ACTIONS(8969), 1, anon_sym_AMP, - ACTIONS(8941), 1, + ACTIONS(8975), 1, anon_sym_GT_EQ, - ACTIONS(8947), 1, + ACTIONS(8981), 1, anon_sym_QMARK, - ACTIONS(8949), 1, + ACTIONS(8983), 1, anon_sym_LT_EQ_GT, - ACTIONS(8951), 1, + ACTIONS(8985), 1, anon_sym_bitor, - ACTIONS(8953), 1, + ACTIONS(8987), 1, anon_sym_bitand, - ACTIONS(9029), 1, + ACTIONS(9053), 1, anon_sym_COLON, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(7566), 2, + ACTIONS(7616), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8921), 2, + ACTIONS(8955), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8923), 2, + ACTIONS(8957), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8927), 2, + ACTIONS(8961), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8929), 2, + ACTIONS(8963), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8933), 2, + ACTIONS(8967), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8943), 2, + ACTIONS(8977), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8937), 3, + ACTIONS(8971), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8939), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [156987] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5827), 1, - anon_sym_LPAREN2, - ACTIONS(6429), 1, - anon_sym_LBRACK, - ACTIONS(7564), 1, - anon_sym_DOT, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(7566), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8045), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6467), 8, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(8973), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6469), 21, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - 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_LT, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - [157047] = 17, + [159724] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3331), 1, + ACTIONS(3339), 1, anon_sym_const, - ACTIONS(5012), 1, + ACTIONS(5020), 1, anon_sym_LPAREN2, - ACTIONS(6750), 1, - anon_sym___attribute, - ACTIONS(8131), 1, + ACTIONS(8147), 1, anon_sym_LBRACK, - ACTIONS(8216), 1, + ACTIONS(8256), 1, anon_sym_STAR, - ACTIONS(8218), 1, + ACTIONS(8258), 1, anon_sym_AMP_AMP, - ACTIONS(8220), 1, + ACTIONS(8260), 1, anon_sym_AMP, - STATE(3299), 1, + STATE(3095), 1, sym_parameter_list, - STATE(4289), 1, + STATE(4325), 1, sym_alignas_qualifier, - STATE(6087), 1, + STATE(6109), 1, sym__function_declarator_seq, - STATE(6524), 1, + STATE(6588), 1, sym__abstract_declarator, - ACTIONS(8133), 2, + ACTIONS(8149), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4131), 2, + STATE(4215), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6092), 5, + STATE(6099), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(6748), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, + ACTIONS(5877), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_final, anon_sym_override, + anon_sym_try, anon_sym_requires, - ACTIONS(8125), 12, + ACTIONS(8141), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -428920,263 +434876,163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [157121] = 27, + [159796] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(7715), 1, - anon_sym_COMMA, - ACTIONS(8423), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8836), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8842), 1, + anon_sym_PIPE, + ACTIONS(8846), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8852), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8860), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8862), 1, anon_sym_bitor, - ACTIONS(8683), 1, - anon_sym_QMARK, - ACTIONS(9031), 1, - anon_sym_SEMI, - STATE(2525), 1, + ACTIONS(8864), 1, + anon_sym_bitand, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8832), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8834), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8838), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8840), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8844), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8854), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8848), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8850), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [157215] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7083), 1, - anon_sym___attribute__, - ACTIONS(7085), 1, - anon_sym___attribute, - STATE(4590), 1, - sym_attribute_specifier, - ACTIONS(6096), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(6098), 31, + ACTIONS(6949), 4, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [157267] = 21, + anon_sym_RBRACK, + anon_sym_QMARK, + [159884] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6449), 1, - anon_sym_PIPE, - ACTIONS(6979), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(7659), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(7663), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8713), 1, + ACTIONS(8449), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8836), 1, anon_sym_SLASH, - ACTIONS(8723), 1, + ACTIONS(8842), 1, + anon_sym_PIPE, + ACTIONS(8846), 1, anon_sym_AMP, - ACTIONS(8729), 1, - anon_sym_LT_LT, - ACTIONS(8731), 1, - anon_sym_GT_GT, - ACTIONS(8735), 1, + ACTIONS(8852), 1, + anon_sym_GT_EQ, + ACTIONS(8858), 1, + anon_sym_QMARK, + ACTIONS(8860), 1, anon_sym_LT_EQ_GT, - ACTIONS(8739), 1, + ACTIONS(8862), 1, + anon_sym_bitor, + ACTIONS(8864), 1, anon_sym_bitand, - STATE(3545), 1, + STATE(2491), 1, sym_argument_list, - STATE(3546), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(7665), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8709), 2, + ACTIONS(6664), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(8048), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8832), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8711), 2, + ACTIONS(8834), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8721), 2, + ACTIONS(8838), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8840), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8844), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8741), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8725), 3, + ACTIONS(8854), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8848), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8727), 4, + ACTIONS(8850), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6451), 9, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_QMARK, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_GT2, - [157349] = 10, + [159976] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8874), 1, - anon_sym___attribute__, - ACTIONS(8876), 1, - anon_sym___attribute, - ACTIONS(8989), 1, - anon_sym_COLON, - ACTIONS(8991), 1, - anon_sym_LBRACE, - STATE(4836), 1, - sym__enum_base_clause, - STATE(4878), 1, - sym_enumerator_list, - STATE(4937), 1, - sym_attribute_specifier, - ACTIONS(6336), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(6338), 29, + STATE(2220), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5078), 2, + sym_primitive_type, + sym_identifier, + ACTIONS(6130), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5167), 8, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [157409] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5499), 1, - anon_sym_COLON, - ACTIONS(6018), 1, - anon_sym_LBRACE, - STATE(1852), 1, - sym_attribute_specifier, - STATE(5044), 1, - sym_field_declaration_list, - STATE(7011), 1, - sym_virtual_specifier, - STATE(7844), 1, - sym_base_class_clause, - ACTIONS(43), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5503), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5495), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - ACTIONS(5493), 25, + ACTIONS(5164), 23, anon_sym_AMP, anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym___attribute__, + anon_sym___attribute, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -429191,1776 +435047,1580 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - sym_identifier, sym_auto, anon_sym_decltype, - [157471] = 26, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [160028] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(7564), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8925), 1, + ACTIONS(8836), 1, anon_sym_SLASH, - ACTIONS(8931), 1, + ACTIONS(8842), 1, anon_sym_PIPE, - ACTIONS(8935), 1, + ACTIONS(8846), 1, anon_sym_AMP, - ACTIONS(8941), 1, + ACTIONS(8852), 1, anon_sym_GT_EQ, - ACTIONS(8947), 1, - anon_sym_QMARK, - ACTIONS(8949), 1, + ACTIONS(8860), 1, anon_sym_LT_EQ_GT, - ACTIONS(8951), 1, + ACTIONS(8862), 1, anon_sym_bitor, - ACTIONS(8953), 1, + ACTIONS(8864), 1, anon_sym_bitand, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6526), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(7566), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8921), 2, + ACTIONS(8832), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8923), 2, + ACTIONS(8834), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8927), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8929), 2, + ACTIONS(8840), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8933), 2, + ACTIONS(8844), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8943), 2, + ACTIONS(8854), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8937), 3, + ACTIONS(8848), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8939), 3, + ACTIONS(8850), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [157563] = 27, + ACTIONS(6520), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_or, + [160114] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8836), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8842), 1, + anon_sym_PIPE, + ACTIONS(8846), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8852), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8860), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8862), 1, anon_sym_bitor, - ACTIONS(8683), 1, - anon_sym_QMARK, - ACTIONS(9033), 1, - anon_sym_COMMA, - ACTIONS(9035), 1, - anon_sym_RPAREN, - STATE(2525), 1, + ACTIONS(8864), 1, + anon_sym_bitand, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8832), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8834), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8844), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8854), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8848), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8850), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [157657] = 10, + ACTIONS(6520), 8, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + [160198] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6979), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(7659), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(7663), 1, + ACTIONS(6418), 1, anon_sym_DOT, - STATE(3545), 1, + ACTIONS(6518), 1, + anon_sym_PIPE, + ACTIONS(8836), 1, + anon_sym_SLASH, + ACTIONS(8846), 1, + anon_sym_AMP, + ACTIONS(8852), 1, + anon_sym_GT_EQ, + ACTIONS(8860), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8864), 1, + anon_sym_bitand, + STATE(2491), 1, sym_argument_list, - STATE(3546), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(7665), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8741), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6467), 10, + ACTIONS(8832), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(8834), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8844), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8854), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8848), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8850), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - ACTIONS(6469), 19, + ACTIONS(6520), 9, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - 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_LT_LT, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_GT2, - [157717] = 27, + [160280] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(7564), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8919), 1, - anon_sym_COMMA, - ACTIONS(8925), 1, - anon_sym_SLASH, - ACTIONS(8931), 1, + ACTIONS(6518), 1, anon_sym_PIPE, - ACTIONS(8935), 1, + ACTIONS(8836), 1, + anon_sym_SLASH, + ACTIONS(8846), 1, anon_sym_AMP, - ACTIONS(8941), 1, + ACTIONS(8852), 1, anon_sym_GT_EQ, - ACTIONS(8947), 1, - anon_sym_QMARK, - ACTIONS(8949), 1, + ACTIONS(8860), 1, anon_sym_LT_EQ_GT, - ACTIONS(8951), 1, - anon_sym_bitor, - ACTIONS(8953), 1, + ACTIONS(8864), 1, anon_sym_bitand, - ACTIONS(9037), 1, - anon_sym_COLON, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(7566), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8921), 2, + ACTIONS(8832), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8923), 2, + ACTIONS(8834), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8927), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8929), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8933), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8943), 2, + ACTIONS(8854), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8937), 3, + ACTIONS(8848), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8939), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [157811] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5003), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(5005), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(8850), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4998), 25, + ACTIONS(6520), 11, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [157859] = 12, + [160360] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(7564), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8925), 1, + ACTIONS(8836), 1, anon_sym_SLASH, - STATE(2525), 1, + ACTIONS(8852), 1, + anon_sym_GT_EQ, + ACTIONS(8860), 1, + anon_sym_LT_EQ_GT, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(7566), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(6518), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8923), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6449), 7, + ACTIONS(8832), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(8834), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8854), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8848), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8850), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6451), 19, + ACTIONS(6520), 12, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, 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_LT, - anon_sym_GT_GT, - anon_sym_COLON, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, - anon_sym_not_eq, - [157923] = 23, + [160436] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(7564), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8925), 1, + ACTIONS(8836), 1, anon_sym_SLASH, - ACTIONS(8931), 1, - anon_sym_PIPE, - ACTIONS(8935), 1, - anon_sym_AMP, - ACTIONS(8941), 1, + ACTIONS(8852), 1, anon_sym_GT_EQ, - ACTIONS(8949), 1, + ACTIONS(8860), 1, anon_sym_LT_EQ_GT, - ACTIONS(8951), 1, - anon_sym_bitor, - ACTIONS(8953), 1, - anon_sym_bitand, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(7566), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(6518), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8921), 2, + ACTIONS(8832), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8923), 2, + ACTIONS(8834), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8929), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8933), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8943), 2, + ACTIONS(8854), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8937), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8939), 3, + ACTIONS(8850), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6451), 6, + ACTIONS(6520), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, - anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_or, - [158009] = 22, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [160510] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(7564), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8925), 1, + ACTIONS(8836), 1, anon_sym_SLASH, - ACTIONS(8931), 1, - anon_sym_PIPE, - ACTIONS(8935), 1, - anon_sym_AMP, - ACTIONS(8941), 1, - anon_sym_GT_EQ, - ACTIONS(8949), 1, + ACTIONS(8860), 1, anon_sym_LT_EQ_GT, - ACTIONS(8951), 1, - anon_sym_bitor, - ACTIONS(8953), 1, - anon_sym_bitand, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(7566), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8921), 2, + ACTIONS(8832), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8923), 2, + ACTIONS(8834), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8933), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8943), 2, + ACTIONS(8854), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8937), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8939), 3, + ACTIONS(6518), 5, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6451), 8, + ACTIONS(6520), 16, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_COLON, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_or, anon_sym_and, - [158093] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4167), 1, - anon_sym_COLON_COLON, - ACTIONS(8973), 1, - anon_sym_LT, - STATE(2355), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2547), 1, - sym_template_argument_list, - ACTIONS(4144), 3, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(5060), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4152), 27, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [158149] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7083), 1, - anon_sym___attribute__, - ACTIONS(7085), 1, - anon_sym___attribute, - STATE(4699), 1, - sym_attribute_specifier, - ACTIONS(6121), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(6123), 31, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [158201] = 21, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [160580] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6449), 1, - anon_sym_PIPE, - ACTIONS(7564), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8925), 1, + ACTIONS(8836), 1, anon_sym_SLASH, - ACTIONS(8935), 1, - anon_sym_AMP, - ACTIONS(8941), 1, - anon_sym_GT_EQ, - ACTIONS(8949), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8953), 1, - anon_sym_bitand, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(7566), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8921), 2, + ACTIONS(8832), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8923), 2, + ACTIONS(8834), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8933), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8943), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8937), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8939), 3, + ACTIONS(6518), 5, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6451), 9, + ACTIONS(6520), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_COLON, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, - [158283] = 20, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [160646] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6449), 1, - anon_sym_PIPE, - ACTIONS(7564), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8925), 1, + ACTIONS(8836), 1, anon_sym_SLASH, - ACTIONS(8935), 1, - anon_sym_AMP, - ACTIONS(8941), 1, - anon_sym_GT_EQ, - ACTIONS(8949), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8953), 1, - anon_sym_bitand, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(7566), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8921), 2, + ACTIONS(8832), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8923), 2, + ACTIONS(8834), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8943), 2, + ACTIONS(8854), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8937), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8939), 3, + ACTIONS(6518), 5, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6451), 11, + ACTIONS(6520), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, - anon_sym_COLON, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, - [158363] = 24, + anon_sym_bitand, + anon_sym_not_eq, + [160714] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3339), 1, + anon_sym_const, + ACTIONS(5020), 1, + anon_sym_LPAREN2, + ACTIONS(8147), 1, + anon_sym_LBRACK, + ACTIONS(8256), 1, + anon_sym_STAR, + ACTIONS(8258), 1, + anon_sym_AMP_AMP, + ACTIONS(8260), 1, + anon_sym_AMP, + STATE(3095), 1, + sym_parameter_list, + STATE(4325), 1, + sym_alignas_qualifier, + STATE(6109), 1, + sym__function_declarator_seq, + STATE(6547), 1, + sym__abstract_declarator, + ACTIONS(8149), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4215), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6099), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8453), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(8141), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [160786] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8815), 1, + ACTIONS(8836), 1, anon_sym_SLASH, - ACTIONS(8821), 1, + ACTIONS(8842), 1, anon_sym_PIPE, - ACTIONS(8825), 1, + ACTIONS(8846), 1, anon_sym_AMP, - ACTIONS(8831), 1, + ACTIONS(8852), 1, anon_sym_GT_EQ, - ACTIONS(8839), 1, + ACTIONS(8860), 1, anon_sym_LT_EQ_GT, - ACTIONS(8841), 1, + ACTIONS(8862), 1, anon_sym_bitor, - ACTIONS(8843), 1, + ACTIONS(8864), 1, anon_sym_bitand, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8811), 2, + ACTIONS(8832), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8813), 2, + ACTIONS(8834), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8817), 2, + ACTIONS(8838), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8819), 2, + ACTIONS(8840), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8823), 2, + ACTIONS(8844), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8833), 2, + ACTIONS(8854), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8827), 3, + ACTIONS(8848), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8829), 3, + ACTIONS(8850), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6989), 4, + ACTIONS(6987), 4, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_QMARK, - [158451] = 26, + [160874] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8815), 1, + ACTIONS(8836), 1, anon_sym_SLASH, - ACTIONS(8821), 1, + ACTIONS(8842), 1, anon_sym_PIPE, - ACTIONS(8825), 1, + ACTIONS(8846), 1, anon_sym_AMP, - ACTIONS(8831), 1, + ACTIONS(8852), 1, anon_sym_GT_EQ, - ACTIONS(8837), 1, + ACTIONS(8858), 1, anon_sym_QMARK, - ACTIONS(8839), 1, + ACTIONS(8860), 1, anon_sym_LT_EQ_GT, - ACTIONS(8841), 1, + ACTIONS(8862), 1, anon_sym_bitor, - ACTIONS(8843), 1, + ACTIONS(8864), 1, anon_sym_bitand, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6526), 2, + ACTIONS(6991), 2, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8811), 2, + ACTIONS(8832), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8813), 2, + ACTIONS(8834), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8817), 2, + ACTIONS(8838), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8819), 2, + ACTIONS(8840), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8823), 2, + ACTIONS(8844), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8833), 2, + ACTIONS(8854), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8827), 3, + ACTIONS(8848), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8829), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [158543] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5827), 1, - anon_sym_LPAREN2, - ACTIONS(6429), 1, - anon_sym_LBRACK, - ACTIONS(6431), 1, - anon_sym_DOT, - ACTIONS(8815), 1, - anon_sym_SLASH, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8045), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8813), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6449), 7, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(8850), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6451), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - 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_LT, - anon_sym_GT_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - [158607] = 23, + [160966] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8815), 1, + ACTIONS(8836), 1, anon_sym_SLASH, - ACTIONS(8821), 1, + ACTIONS(8842), 1, anon_sym_PIPE, - ACTIONS(8825), 1, + ACTIONS(8846), 1, anon_sym_AMP, - ACTIONS(8831), 1, + ACTIONS(8852), 1, anon_sym_GT_EQ, - ACTIONS(8839), 1, + ACTIONS(8860), 1, anon_sym_LT_EQ_GT, - ACTIONS(8841), 1, + ACTIONS(8862), 1, anon_sym_bitor, - ACTIONS(8843), 1, + ACTIONS(8864), 1, anon_sym_bitand, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8811), 2, + ACTIONS(8832), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8813), 2, + ACTIONS(8834), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8819), 2, + ACTIONS(8838), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8840), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8823), 2, + ACTIONS(8844), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8833), 2, + ACTIONS(8854), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8827), 3, + ACTIONS(8848), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8829), 3, + ACTIONS(8850), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6451), 6, + ACTIONS(6995), 4, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_PIPE_PIPE, anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_or, - [158693] = 22, + [161054] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8815), 1, + ACTIONS(8449), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8836), 1, anon_sym_SLASH, - ACTIONS(8821), 1, + ACTIONS(8842), 1, anon_sym_PIPE, - ACTIONS(8825), 1, + ACTIONS(8846), 1, anon_sym_AMP, - ACTIONS(8831), 1, + ACTIONS(8852), 1, anon_sym_GT_EQ, - ACTIONS(8839), 1, + ACTIONS(8858), 1, + anon_sym_QMARK, + ACTIONS(8860), 1, anon_sym_LT_EQ_GT, - ACTIONS(8841), 1, + ACTIONS(8862), 1, anon_sym_bitor, - ACTIONS(8843), 1, + ACTIONS(8864), 1, anon_sym_bitand, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(6999), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8811), 2, + ACTIONS(8832), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8813), 2, + ACTIONS(8834), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8823), 2, + ACTIONS(8838), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8840), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8844), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8833), 2, + ACTIONS(8854), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8827), 3, + ACTIONS(8848), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8829), 3, + ACTIONS(8850), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6451), 8, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_or, - anon_sym_and, - [158777] = 21, + [161146] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, - anon_sym_DOT, - ACTIONS(6449), 1, + ACTIONS(6518), 1, anon_sym_PIPE, - ACTIONS(8815), 1, + ACTIONS(7614), 1, + anon_sym_DOT, + ACTIONS(8959), 1, anon_sym_SLASH, - ACTIONS(8825), 1, + ACTIONS(8969), 1, anon_sym_AMP, - ACTIONS(8831), 1, + ACTIONS(8975), 1, anon_sym_GT_EQ, - ACTIONS(8839), 1, + ACTIONS(8983), 1, anon_sym_LT_EQ_GT, - ACTIONS(8843), 1, + ACTIONS(8987), 1, anon_sym_bitand, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(7616), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8811), 2, + ACTIONS(8955), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8813), 2, + ACTIONS(8957), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8823), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8833), 2, + ACTIONS(8977), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8827), 3, + ACTIONS(8971), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8829), 3, + ACTIONS(8973), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6451), 9, + ACTIONS(6520), 11, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_RBRACK, + anon_sym_CARET, + anon_sym_COLON, anon_sym_QMARK, anon_sym_or, anon_sym_and, anon_sym_bitor, - [158859] = 20, + anon_sym_xor, + [161226] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(6449), 1, - anon_sym_PIPE, - ACTIONS(8815), 1, + ACTIONS(8836), 1, anon_sym_SLASH, - ACTIONS(8825), 1, + ACTIONS(8842), 1, + anon_sym_PIPE, + ACTIONS(8846), 1, anon_sym_AMP, - ACTIONS(8831), 1, + ACTIONS(8852), 1, anon_sym_GT_EQ, - ACTIONS(8839), 1, + ACTIONS(8860), 1, anon_sym_LT_EQ_GT, - ACTIONS(8843), 1, + ACTIONS(8862), 1, + anon_sym_bitor, + ACTIONS(8864), 1, anon_sym_bitand, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8811), 2, + ACTIONS(8832), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8813), 2, + ACTIONS(8834), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8833), 2, + ACTIONS(8838), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8840), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8844), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8854), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8827), 3, + ACTIONS(8848), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8829), 3, + ACTIONS(8850), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6451), 11, + ACTIONS(7017), 4, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - [158939] = 18, + [161314] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8815), 1, + ACTIONS(8836), 1, anon_sym_SLASH, - ACTIONS(8831), 1, + ACTIONS(8842), 1, + anon_sym_PIPE, + ACTIONS(8846), 1, + anon_sym_AMP, + ACTIONS(8852), 1, anon_sym_GT_EQ, - ACTIONS(8839), 1, + ACTIONS(8860), 1, anon_sym_LT_EQ_GT, - STATE(2525), 1, + ACTIONS(8862), 1, + anon_sym_bitor, + ACTIONS(8864), 1, + anon_sym_bitand, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6449), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8811), 2, + ACTIONS(8832), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8813), 2, + ACTIONS(8834), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8833), 2, + ACTIONS(8838), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8840), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8844), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8854), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8827), 3, + ACTIONS(8848), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8829), 3, + ACTIONS(8850), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6451), 12, + ACTIONS(7021), 4, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - [159015] = 17, + [161402] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8815), 1, + ACTIONS(7778), 1, + anon_sym_COMMA, + ACTIONS(8449), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8831), 1, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, + anon_sym_AMP, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8839), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - STATE(2525), 1, + ACTIONS(8697), 1, + anon_sym_bitor, + ACTIONS(8699), 1, + anon_sym_bitand, + ACTIONS(8707), 1, + anon_sym_QMARK, + ACTIONS(9055), 1, + anon_sym_SEMI, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6449), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8811), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8813), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8833), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8829), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6451), 15, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, + ACTIONS(8679), 2, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_or, anon_sym_and, - anon_sym_bitor, + ACTIONS(8683), 2, + anon_sym_CARET, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - [159089] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5827), 1, - anon_sym_LPAREN2, - ACTIONS(6429), 1, - anon_sym_LBRACK, - ACTIONS(6431), 1, - anon_sym_DOT, - ACTIONS(8815), 1, - anon_sym_SLASH, - ACTIONS(8839), 1, - anon_sym_LT_EQ_GT, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8045), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8811), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8813), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8833), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6449), 5, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6451), 16, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(8701), 2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + anon_sym_or, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, anon_sym_not_eq, - [159159] = 13, + ACTIONS(8689), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [161496] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(3339), 1, + anon_sym_const, + ACTIONS(5020), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(8147), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, - anon_sym_DOT, - ACTIONS(8815), 1, - anon_sym_SLASH, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8045), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8811), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8813), 2, + ACTIONS(8256), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6449), 5, - anon_sym_PIPE, + ACTIONS(8258), 1, + anon_sym_AMP_AMP, + ACTIONS(8260), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6451), 19, - anon_sym_DOT_DOT_DOT, + STATE(3095), 1, + sym_parameter_list, + STATE(4325), 1, + sym_alignas_qualifier, + STATE(6109), 1, + sym__function_declarator_seq, + STATE(6590), 1, + sym__abstract_declarator, + ACTIONS(8149), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4215), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6099), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6781), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(8141), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [161568] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7283), 1, + anon_sym___attribute__, + ACTIONS(7285), 1, + anon_sym___attribute, + STATE(4719), 1, + sym_attribute_specifier, + ACTIONS(6161), 4, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(6163), 31, anon_sym_COMMA, - anon_sym_PIPE_PIPE, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - [159225] = 14, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [161620] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(6935), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(7720), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(7734), 1, anon_sym_DOT, - ACTIONS(8815), 1, - anon_sym_SLASH, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8045), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8811), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8813), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8833), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6449), 5, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6451), 17, + ACTIONS(8740), 1, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - 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_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - [159293] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5827), 1, - anon_sym_LPAREN2, - ACTIONS(6429), 1, - anon_sym_LBRACK, - ACTIONS(6431), 1, - anon_sym_DOT, - ACTIONS(8815), 1, + ACTIONS(8748), 1, anon_sym_SLASH, - ACTIONS(8821), 1, + ACTIONS(8754), 1, anon_sym_PIPE, - ACTIONS(8825), 1, + ACTIONS(8758), 1, anon_sym_AMP, - ACTIONS(8831), 1, - anon_sym_GT_EQ, - ACTIONS(8839), 1, + ACTIONS(8764), 1, + anon_sym_LT_LT, + ACTIONS(8766), 1, + anon_sym_GT_GT, + ACTIONS(8768), 1, + anon_sym_QMARK, + ACTIONS(8770), 1, anon_sym_LT_EQ_GT, - ACTIONS(8841), 1, + ACTIONS(8772), 1, anon_sym_bitor, - ACTIONS(8843), 1, + ACTIONS(8774), 1, anon_sym_bitand, - STATE(2525), 1, + STATE(3632), 1, sym_argument_list, - STATE(2526), 1, + STATE(3652), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(7736), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8811), 2, + ACTIONS(8744), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8813), 2, + ACTIONS(8746), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8817), 2, + ACTIONS(8750), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8819), 2, + ACTIONS(8752), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8823), 2, + ACTIONS(8756), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8833), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8827), 3, + ACTIONS(8776), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9031), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(8760), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8829), 3, + ACTIONS(8762), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7007), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_QMARK, - [159381] = 26, + [161712] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(7614), 1, anon_sym_DOT, - ACTIONS(8423), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8815), 1, + ACTIONS(8959), 1, anon_sym_SLASH, - ACTIONS(8821), 1, - anon_sym_PIPE, - ACTIONS(8825), 1, - anon_sym_AMP, - ACTIONS(8831), 1, + ACTIONS(8975), 1, anon_sym_GT_EQ, - ACTIONS(8837), 1, - anon_sym_QMARK, - ACTIONS(8839), 1, + ACTIONS(8983), 1, anon_sym_LT_EQ_GT, - ACTIONS(8841), 1, - anon_sym_bitor, - ACTIONS(8843), 1, - anon_sym_bitand, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6518), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(7616), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7013), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8811), 2, + ACTIONS(8955), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8813), 2, + ACTIONS(8957), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8817), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8819), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8823), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8833), 2, + ACTIONS(8977), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8827), 3, + ACTIONS(8971), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8829), 3, + ACTIONS(8973), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [159473] = 24, + ACTIONS(6520), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + [161788] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8815), 1, + ACTIONS(8449), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8836), 1, anon_sym_SLASH, - ACTIONS(8821), 1, + ACTIONS(8842), 1, anon_sym_PIPE, - ACTIONS(8825), 1, + ACTIONS(8846), 1, anon_sym_AMP, - ACTIONS(8831), 1, + ACTIONS(8852), 1, anon_sym_GT_EQ, - ACTIONS(8839), 1, + ACTIONS(8858), 1, + anon_sym_QMARK, + ACTIONS(8860), 1, anon_sym_LT_EQ_GT, - ACTIONS(8841), 1, + ACTIONS(8862), 1, anon_sym_bitor, - ACTIONS(8843), 1, + ACTIONS(8864), 1, anon_sym_bitand, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8811), 2, + ACTIONS(8832), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8813), 2, + ACTIONS(8834), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8817), 2, + ACTIONS(8838), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8819), 2, + ACTIONS(8840), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8823), 2, + ACTIONS(8844), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8833), 2, + ACTIONS(8854), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8827), 3, + ACTIONS(8989), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(8848), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8829), 3, + ACTIONS(8850), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7017), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_QMARK, - [159561] = 26, + [161880] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(7778), 1, + anon_sym_COMMA, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8815), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8821), 1, + ACTIONS(8681), 1, anon_sym_PIPE, - ACTIONS(8825), 1, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8831), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8837), 1, - anon_sym_QMARK, - ACTIONS(8839), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8841), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8843), 1, + ACTIONS(8699), 1, anon_sym_bitand, - STATE(2525), 1, + ACTIONS(8707), 1, + anon_sym_QMARK, + ACTIONS(9057), 1, + anon_sym_SEMI, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7021), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8811), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8813), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8817), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8819), 2, + ACTIONS(8679), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8823), 2, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8833), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8827), 3, + ACTIONS(8701), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8829), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [159653] = 24, + [161974] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8815), 1, + ACTIONS(7778), 1, + anon_sym_COMMA, + ACTIONS(8449), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8821), 1, + ACTIONS(8681), 1, anon_sym_PIPE, - ACTIONS(8825), 1, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8831), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8839), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8841), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8843), 1, + ACTIONS(8699), 1, anon_sym_bitand, - STATE(2525), 1, + ACTIONS(8707), 1, + anon_sym_QMARK, + ACTIONS(9059), 1, + anon_sym_RPAREN, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8811), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8813), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8817), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8819), 2, + ACTIONS(8679), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8823), 2, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8833), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8827), 3, + ACTIONS(8701), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8829), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6935), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_QMARK, - [159741] = 18, + [162068] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(7564), 1, + ACTIONS(7614), 1, anon_sym_DOT, - ACTIONS(8925), 1, + ACTIONS(8959), 1, anon_sym_SLASH, - ACTIONS(8941), 1, + ACTIONS(8975), 1, anon_sym_GT_EQ, - ACTIONS(8949), 1, + ACTIONS(8983), 1, anon_sym_LT_EQ_GT, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6449), 2, + ACTIONS(6518), 2, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(7566), 2, + ACTIONS(7616), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8921), 2, + ACTIONS(8955), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8923), 2, + ACTIONS(8957), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8943), 2, + ACTIONS(8977), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8937), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8939), 3, + ACTIONS(8973), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6451), 12, + ACTIONS(6520), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_COLON, anon_sym_QMARK, anon_sym_or, @@ -430968,112 +436628,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_xor, anon_sym_bitand, - [159817] = 24, + anon_sym_not_eq, + [162142] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(7614), 1, anon_sym_DOT, - ACTIONS(8815), 1, + ACTIONS(8959), 1, anon_sym_SLASH, - ACTIONS(8821), 1, - anon_sym_PIPE, - ACTIONS(8825), 1, - anon_sym_AMP, - ACTIONS(8831), 1, - anon_sym_GT_EQ, - ACTIONS(8839), 1, + ACTIONS(8983), 1, anon_sym_LT_EQ_GT, - ACTIONS(8841), 1, - anon_sym_bitor, - ACTIONS(8843), 1, - anon_sym_bitand, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(7616), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8811), 2, + ACTIONS(8955), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8813), 2, + ACTIONS(8957), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8817), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8819), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8823), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8833), 2, + ACTIONS(8977), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8827), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8829), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6969), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_QMARK, - [159905] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5827), 1, - anon_sym_LPAREN2, - ACTIONS(6429), 1, - anon_sym_LBRACK, - ACTIONS(7564), 1, - anon_sym_DOT, - ACTIONS(8925), 1, - anon_sym_SLASH, - ACTIONS(8941), 1, - anon_sym_GT_EQ, - ACTIONS(8949), 1, - anon_sym_LT_EQ_GT, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6449), 2, + ACTIONS(6518), 5, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(7566), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8045), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8921), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8923), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8943), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8939), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6451), 15, + ACTIONS(6520), 16, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -431081,6 +436675,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_COLON, anon_sym_QMARK, anon_sym_or, @@ -431089,91 +436684,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [159979] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7083), 1, - anon_sym___attribute__, - ACTIONS(7085), 1, - anon_sym___attribute, - STATE(4736), 1, - sym_attribute_specifier, - ACTIONS(6125), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(6127), 31, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [160031] = 15, + [162212] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(7564), 1, + ACTIONS(7614), 1, anon_sym_DOT, - ACTIONS(8925), 1, + ACTIONS(8959), 1, anon_sym_SLASH, - ACTIONS(8949), 1, - anon_sym_LT_EQ_GT, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(7566), 2, + ACTIONS(7616), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8921), 2, + ACTIONS(8955), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8923), 2, + ACTIONS(8957), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8943), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6449), 5, + ACTIONS(6518), 5, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6451), 16, + ACTIONS(6520), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -431182,206 +436726,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_COLON, anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [160101] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7083), 1, - anon_sym___attribute__, - ACTIONS(7085), 1, - anon_sym___attribute, - STATE(4597), 1, - sym_attribute_specifier, - ACTIONS(6168), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(6170), 31, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [160153] = 26, + [162278] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(7614), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8815), 1, + ACTIONS(8953), 1, + anon_sym_COMMA, + ACTIONS(8959), 1, anon_sym_SLASH, - ACTIONS(8821), 1, + ACTIONS(8965), 1, anon_sym_PIPE, - ACTIONS(8825), 1, + ACTIONS(8969), 1, anon_sym_AMP, - ACTIONS(8831), 1, + ACTIONS(8975), 1, anon_sym_GT_EQ, - ACTIONS(8837), 1, + ACTIONS(8981), 1, anon_sym_QMARK, - ACTIONS(8839), 1, + ACTIONS(8983), 1, anon_sym_LT_EQ_GT, - ACTIONS(8841), 1, + ACTIONS(8985), 1, anon_sym_bitor, - ACTIONS(8843), 1, + ACTIONS(8987), 1, anon_sym_bitand, - STATE(2525), 1, + ACTIONS(9061), 1, + anon_sym_COLON, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(7616), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8811), 2, + ACTIONS(8955), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8813), 2, + ACTIONS(8957), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8817), 2, + ACTIONS(8961), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8819), 2, + ACTIONS(8963), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8823), 2, + ACTIONS(8967), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8833), 2, + ACTIONS(8977), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8981), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(8827), 3, + ACTIONS(8971), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8829), 3, + ACTIONS(8973), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [160245] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7083), 1, - anon_sym___attribute__, - ACTIONS(7085), 1, - anon_sym___attribute, - STATE(4739), 1, - sym_attribute_specifier, - ACTIONS(6129), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(6131), 31, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [160297] = 13, + [162372] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(7564), 1, + ACTIONS(7614), 1, anon_sym_DOT, - ACTIONS(8925), 1, + ACTIONS(8959), 1, anon_sym_SLASH, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(7566), 2, + ACTIONS(7616), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8921), 2, + ACTIONS(8955), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8923), 2, + ACTIONS(8957), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6449), 5, + ACTIONS(8977), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6518), 5, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6451), 19, + ACTIONS(6520), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -431390,8 +436849,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -431401,156 +436858,203 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [160363] = 26, + [162440] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(4187), 1, + anon_sym_COLON_COLON, + ACTIONS(9045), 1, + anon_sym_LT, + STATE(2578), 1, + sym_template_argument_list, + ACTIONS(4925), 4, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_const, + ACTIONS(4932), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [162492] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(7778), 1, + anon_sym_COMMA, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8683), 1, + ACTIONS(8699), 1, + anon_sym_bitand, + ACTIONS(8707), 1, anon_sym_QMARK, - STATE(2525), 1, + ACTIONS(9063), 1, + anon_sym_SEMI, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8679), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, + ACTIONS(8701), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8907), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(8655), 3, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [160455] = 27, + [162586] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(7564), 1, + ACTIONS(7614), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8919), 1, + ACTIONS(8878), 1, + anon_sym_COLON, + ACTIONS(8953), 1, anon_sym_COMMA, - ACTIONS(8925), 1, + ACTIONS(8959), 1, anon_sym_SLASH, - ACTIONS(8931), 1, + ACTIONS(8965), 1, anon_sym_PIPE, - ACTIONS(8935), 1, + ACTIONS(8969), 1, anon_sym_AMP, - ACTIONS(8941), 1, + ACTIONS(8975), 1, anon_sym_GT_EQ, - ACTIONS(8947), 1, + ACTIONS(8981), 1, anon_sym_QMARK, - ACTIONS(8949), 1, + ACTIONS(8983), 1, anon_sym_LT_EQ_GT, - ACTIONS(8951), 1, + ACTIONS(8985), 1, anon_sym_bitor, - ACTIONS(8953), 1, + ACTIONS(8987), 1, anon_sym_bitand, - ACTIONS(9039), 1, - anon_sym_COLON, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(7566), 2, + ACTIONS(7616), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8921), 2, + ACTIONS(8955), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8923), 2, + ACTIONS(8957), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8927), 2, + ACTIONS(8961), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8929), 2, + ACTIONS(8963), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8933), 2, + ACTIONS(8967), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8943), 2, + ACTIONS(8977), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8937), 3, + ACTIONS(8971), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8939), 3, + ACTIONS(8973), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [160549] = 9, + [162680] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(7564), 1, + ACTIONS(7614), 1, anon_sym_DOT, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(7566), 2, + ACTIONS(7616), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6425), 8, + ACTIONS(6514), 8, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -431559,7 +437063,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6427), 23, + ACTIONS(6516), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -431583,30 +437087,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [160607] = 6, + [162738] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7083), 1, + ACTIONS(8902), 1, anon_sym___attribute__, - ACTIONS(7085), 1, + ACTIONS(8904), 1, anon_sym___attribute, - STATE(4605), 1, + ACTIONS(9065), 1, + anon_sym_COLON, + ACTIONS(9067), 1, + anon_sym_LBRACE, + STATE(4895), 1, + sym__enum_base_clause, + STATE(4959), 1, + sym_enumerator_list, + STATE(4998), 1, sym_attribute_specifier, - ACTIONS(6104), 4, + ACTIONS(6316), 2, anon_sym_AMP, - anon_sym_LBRACK, anon_sym_const, - anon_sym___asm, - ACTIONS(6106), 31, + ACTIONS(6318), 29, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, @@ -431621,34 +437130,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_try, anon_sym_requires, - [160659] = 10, + [162798] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(7564), 1, + ACTIONS(7614), 1, anon_sym_DOT, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(7566), 2, + ACTIONS(7616), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6435), 8, + ACTIONS(6410), 8, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -431657,7 +437165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6437), 21, + ACTIONS(6412), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -431679,80 +437187,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [160719] = 14, + [162858] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(7564), 1, + ACTIONS(7614), 1, anon_sym_DOT, - ACTIONS(8925), 1, + ACTIONS(8449), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8953), 1, + anon_sym_COMMA, + ACTIONS(8959), 1, anon_sym_SLASH, - STATE(2525), 1, + ACTIONS(8965), 1, + anon_sym_PIPE, + ACTIONS(8969), 1, + anon_sym_AMP, + ACTIONS(8975), 1, + anon_sym_GT_EQ, + ACTIONS(8981), 1, + anon_sym_QMARK, + ACTIONS(8983), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8985), 1, + anon_sym_bitor, + ACTIONS(8987), 1, + anon_sym_bitand, + ACTIONS(9069), 1, + anon_sym_COLON, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(7566), 2, + ACTIONS(7616), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8921), 2, + ACTIONS(8955), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8923), 2, + ACTIONS(8957), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8943), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6449), 5, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6451), 17, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(8961), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8963), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8967), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(8977), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8971), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, anon_sym_not_eq, - [160787] = 10, + ACTIONS(8973), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [162952] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(7564), 1, + ACTIONS(7614), 1, anon_sym_DOT, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(7566), 2, + ACTIONS(7616), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6441), 8, + ACTIONS(6422), 8, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -431761,7 +437282,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6443), 21, + ACTIONS(6424), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -431783,23 +437304,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [160847] = 9, + [163012] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(7564), 1, + ACTIONS(7614), 1, anon_sym_DOT, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(7566), 2, + ACTIONS(7616), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6445), 8, + ACTIONS(6433), 8, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -431808,7 +437329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6447), 23, + ACTIONS(6435), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -431832,650 +437353,876 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [160905] = 24, + [163070] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6979), 1, + ACTIONS(7283), 1, + anon_sym___attribute__, + ACTIONS(7285), 1, + anon_sym___attribute, + STATE(4717), 1, + sym_attribute_specifier, + ACTIONS(6206), 4, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(6208), 31, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(7659), 1, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [163122] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6935), 1, + anon_sym_LPAREN2, + ACTIONS(7720), 1, anon_sym_LBRACK, - ACTIONS(7663), 1, + ACTIONS(7734), 1, anon_sym_DOT, - ACTIONS(8713), 1, + ACTIONS(8748), 1, anon_sym_SLASH, - ACTIONS(8719), 1, + ACTIONS(8754), 1, anon_sym_PIPE, - ACTIONS(8723), 1, + ACTIONS(8758), 1, anon_sym_AMP, - ACTIONS(8729), 1, + ACTIONS(8764), 1, anon_sym_LT_LT, - ACTIONS(8731), 1, + ACTIONS(8766), 1, anon_sym_GT_GT, - ACTIONS(8735), 1, + ACTIONS(8770), 1, anon_sym_LT_EQ_GT, - ACTIONS(8737), 1, + ACTIONS(8772), 1, anon_sym_bitor, - ACTIONS(8739), 1, + ACTIONS(8774), 1, anon_sym_bitand, - STATE(3545), 1, + STATE(3632), 1, sym_argument_list, - STATE(3546), 1, + STATE(3652), 1, sym_subscript_argument_list, - ACTIONS(7665), 2, + ACTIONS(7736), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8709), 2, + ACTIONS(8744), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8711), 2, + ACTIONS(8746), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8715), 2, + ACTIONS(8750), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8717), 2, + ACTIONS(8752), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8721), 2, + ACTIONS(8756), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8741), 2, + ACTIONS(8776), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8725), 3, + ACTIONS(8760), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(6935), 4, + ACTIONS(7017), 4, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_QMARK, anon_sym_GT2, - ACTIONS(8727), 4, + ACTIONS(8762), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [160993] = 27, + [163210] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(7715), 1, + ACTIONS(7778), 1, anon_sym_COMMA, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8683), 1, + ACTIONS(8699), 1, + anon_sym_bitand, + ACTIONS(8707), 1, anon_sym_QMARK, - ACTIONS(9041), 1, + ACTIONS(8806), 1, anon_sym_SEMI, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8679), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, + ACTIONS(8701), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [161087] = 27, + [163304] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(7715), 1, + ACTIONS(7778), 1, anon_sym_COMMA, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8683), 1, + ACTIONS(8699), 1, + anon_sym_bitand, + ACTIONS(8707), 1, anon_sym_QMARK, - ACTIONS(9043), 1, - anon_sym_SEMI, - STATE(2525), 1, + ACTIONS(9071), 1, + anon_sym_RPAREN, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8679), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, + ACTIONS(8701), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [161181] = 27, + [163398] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(7778), 1, + anon_sym_COMMA, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8683), 1, + ACTIONS(8699), 1, + anon_sym_bitand, + ACTIONS(8707), 1, anon_sym_QMARK, - ACTIONS(9045), 1, - anon_sym_COMMA, - ACTIONS(9047), 1, + ACTIONS(9073), 1, anon_sym_RPAREN, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8679), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, + ACTIONS(8701), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [161275] = 27, + [163492] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7283), 1, + anon_sym___attribute__, + ACTIONS(7285), 1, + anon_sym___attribute, + STATE(4739), 1, + sym_attribute_specifier, + ACTIONS(6165), 4, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(6167), 31, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [163544] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(6935), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(7720), 1, anon_sym_LBRACK, - ACTIONS(7564), 1, + ACTIONS(7734), 1, anon_sym_DOT, - ACTIONS(8423), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8703), 1, - anon_sym_COLON, - ACTIONS(8919), 1, - anon_sym_COMMA, - ACTIONS(8925), 1, + ACTIONS(8748), 1, anon_sym_SLASH, - ACTIONS(8931), 1, + ACTIONS(8754), 1, anon_sym_PIPE, - ACTIONS(8935), 1, + ACTIONS(8758), 1, anon_sym_AMP, - ACTIONS(8941), 1, - anon_sym_GT_EQ, - ACTIONS(8947), 1, - anon_sym_QMARK, - ACTIONS(8949), 1, + ACTIONS(8764), 1, + anon_sym_LT_LT, + ACTIONS(8766), 1, + anon_sym_GT_GT, + ACTIONS(8770), 1, anon_sym_LT_EQ_GT, - ACTIONS(8951), 1, + ACTIONS(8772), 1, anon_sym_bitor, - ACTIONS(8953), 1, + ACTIONS(8774), 1, anon_sym_bitand, - STATE(2525), 1, + STATE(3632), 1, sym_argument_list, - STATE(2526), 1, + STATE(3652), 1, sym_subscript_argument_list, - ACTIONS(7566), 2, + ACTIONS(7736), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8921), 2, + ACTIONS(8744), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8923), 2, + ACTIONS(8746), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8927), 2, + ACTIONS(8750), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8929), 2, + ACTIONS(8752), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8933), 2, + ACTIONS(8756), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8943), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8937), 3, + ACTIONS(8776), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8760), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8939), 3, + ACTIONS(6949), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_GT2, + ACTIONS(8762), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [161369] = 26, + [163632] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7283), 1, + anon_sym___attribute__, + ACTIONS(7285), 1, + anon_sym___attribute, + STATE(4742), 1, + sym_attribute_specifier, + ACTIONS(6169), 4, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(6171), 31, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [163684] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(6935), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(7720), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(7734), 1, anon_sym_DOT, - ACTIONS(8423), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8748), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + STATE(3632), 1, + sym_argument_list, + STATE(3652), 1, + sym_subscript_argument_list, + ACTIONS(7736), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8746), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8776), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6518), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(8659), 1, + anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(8663), 1, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + ACTIONS(6520), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_QMARK, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, - ACTIONS(8669), 1, + anon_sym_not_eq, + anon_sym_GT2, + [163748] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3339), 1, + anon_sym_const, + ACTIONS(5020), 1, + anon_sym_LPAREN2, + ACTIONS(8147), 1, + anon_sym_LBRACK, + ACTIONS(8250), 1, + anon_sym_STAR, + ACTIONS(8252), 1, + anon_sym_AMP_AMP, + ACTIONS(8254), 1, + anon_sym_AMP, + ACTIONS(8489), 1, + anon_sym___attribute, + STATE(3371), 1, + sym_parameter_list, + STATE(4325), 1, + sym_alignas_qualifier, + STATE(6109), 1, + sym__function_declarator_seq, + STATE(6567), 1, + sym__abstract_declarator, + ACTIONS(8149), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4215), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6099), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8487), 6, + anon_sym_COMMA, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(8141), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [163822] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5845), 1, + anon_sym_LPAREN2, + ACTIONS(6414), 1, + anon_sym_LBRACK, + ACTIONS(7614), 1, + anon_sym_DOT, + ACTIONS(8959), 1, + anon_sym_SLASH, + ACTIONS(8965), 1, anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8969), 1, + anon_sym_AMP, + ACTIONS(8975), 1, + anon_sym_GT_EQ, + ACTIONS(8983), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8985), 1, anon_sym_bitor, - ACTIONS(8683), 1, - anon_sym_QMARK, - STATE(2525), 1, + ACTIONS(8987), 1, + anon_sym_bitand, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(7616), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8955), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8957), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8961), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8963), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8967), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8977), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8866), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(8655), 3, + ACTIONS(8971), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8973), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [161461] = 26, + ACTIONS(6987), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + [163910] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(7614), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8959), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8965), 1, + anon_sym_PIPE, + ACTIONS(8969), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8975), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8981), 1, + anon_sym_QMARK, + ACTIONS(8983), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8985), 1, anon_sym_bitor, - ACTIONS(8683), 1, - anon_sym_QMARK, - STATE(2525), 1, + ACTIONS(8987), 1, + anon_sym_bitand, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6991), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(7616), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8955), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8957), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8961), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8963), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8967), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8977), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(9049), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(8655), 3, + ACTIONS(8971), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8973), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [161553] = 26, + [164002] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(6935), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(7720), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(7734), 1, anon_sym_DOT, - ACTIONS(8423), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, - anon_sym_SLASH, - ACTIONS(8653), 1, - anon_sym_AMP, - ACTIONS(8659), 1, - anon_sym_GT_EQ, - ACTIONS(8663), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, - anon_sym_bitor, - ACTIONS(8683), 1, - anon_sym_QMARK, - STATE(2525), 1, + STATE(3632), 1, sym_argument_list, - STATE(2526), 1, + STATE(3652), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(7736), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8776), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8451), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(8645), 2, + ACTIONS(6518), 10, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + ACTIONS(6520), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8661), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8655), 3, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(8657), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [161645] = 27, + anon_sym_GT2, + [164062] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(7614), 1, anon_sym_DOT, - ACTIONS(7715), 1, - anon_sym_COMMA, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8953), 1, + anon_sym_COMMA, + ACTIONS(8959), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8965), 1, + anon_sym_PIPE, + ACTIONS(8969), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8975), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8981), 1, + anon_sym_QMARK, + ACTIONS(8983), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8985), 1, anon_sym_bitor, - ACTIONS(8683), 1, - anon_sym_QMARK, - ACTIONS(9051), 1, - anon_sym_SEMI, - STATE(2525), 1, + ACTIONS(8987), 1, + anon_sym_bitand, + ACTIONS(9075), 1, + anon_sym_COLON, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(7616), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8955), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8957), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8961), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8963), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8967), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8977), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8971), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8973), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [161739] = 19, + [164156] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(5012), 1, + ACTIONS(5020), 1, anon_sym_LPAREN2, - ACTIONS(5706), 1, + ACTIONS(5652), 1, anon_sym_const, - ACTIONS(8131), 1, + ACTIONS(8147), 1, anon_sym_LBRACK, - ACTIONS(8149), 1, + ACTIONS(8179), 1, sym_auto, - ACTIONS(8151), 1, + ACTIONS(8181), 1, anon_sym_decltype, - ACTIONS(8373), 1, + ACTIONS(8457), 1, anon_sym_STAR, - ACTIONS(8375), 1, + ACTIONS(8459), 1, anon_sym_AMP_AMP, - ACTIONS(8377), 1, + ACTIONS(8461), 1, anon_sym_AMP, - STATE(1695), 1, + STATE(1702), 1, sym_alignas_qualifier, - STATE(1884), 1, + STATE(1864), 1, sym_decltype_auto, - STATE(3370), 1, + STATE(3551), 1, sym_parameter_list, - STATE(6087), 1, + STATE(6109), 1, sym__function_declarator_seq, - STATE(6703), 1, + STATE(6747), 1, sym__abstract_declarator, - ACTIONS(8387), 2, + ACTIONS(8471), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4881), 2, + STATE(4923), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(8185), 4, + ACTIONS(8221), 4, anon_sym_COLON, anon_sym_final, anon_sym_override, anon_sym_requires, - STATE(6092), 5, + STATE(6099), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8379), 12, + ACTIONS(8463), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -432488,184 +438235,248 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [161817] = 27, + [164234] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(6935), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(7720), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(7734), 1, anon_sym_DOT, - ACTIONS(7715), 1, + ACTIONS(8748), 1, + anon_sym_SLASH, + ACTIONS(8754), 1, + anon_sym_PIPE, + ACTIONS(8758), 1, + anon_sym_AMP, + ACTIONS(8764), 1, + anon_sym_LT_LT, + ACTIONS(8766), 1, + anon_sym_GT_GT, + ACTIONS(8770), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8772), 1, + anon_sym_bitor, + ACTIONS(8774), 1, + anon_sym_bitand, + STATE(3632), 1, + sym_argument_list, + STATE(3652), 1, + sym_subscript_argument_list, + ACTIONS(7736), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8744), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8746), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8752), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8756), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8776), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8760), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8762), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6520), 6, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - ACTIONS(8423), 1, + anon_sym_PIPE_PIPE, + anon_sym_QMARK, + anon_sym_or, + anon_sym_GT2, + [164320] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5845), 1, + anon_sym_LPAREN2, + ACTIONS(6414), 1, + anon_sym_LBRACK, + ACTIONS(6418), 1, + anon_sym_DOT, + ACTIONS(7778), 1, + anon_sym_COMMA, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8683), 1, + ACTIONS(8699), 1, + anon_sym_bitand, + ACTIONS(8707), 1, anon_sym_QMARK, - ACTIONS(9053), 1, + ACTIONS(9077), 1, anon_sym_SEMI, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8679), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, + ACTIONS(8701), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [161911] = 27, + [164414] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(7614), 1, anon_sym_DOT, - ACTIONS(7715), 1, - anon_sym_COMMA, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8953), 1, + anon_sym_COMMA, + ACTIONS(8959), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8965), 1, + anon_sym_PIPE, + ACTIONS(8969), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8975), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8981), 1, + anon_sym_QMARK, + ACTIONS(8983), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8985), 1, anon_sym_bitor, - ACTIONS(8683), 1, - anon_sym_QMARK, - ACTIONS(9055), 1, - anon_sym_SEMI, - STATE(2525), 1, + ACTIONS(8987), 1, + anon_sym_bitand, + ACTIONS(9079), 1, + anon_sym_COLON, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(7616), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8955), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8957), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8961), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8963), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8967), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8977), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8971), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8973), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [162005] = 16, + [164508] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(3331), 1, + ACTIONS(3339), 1, anon_sym_const, - ACTIONS(5012), 1, + ACTIONS(5020), 1, anon_sym_LPAREN2, - ACTIONS(8131), 1, + ACTIONS(5879), 1, + anon_sym___attribute, + ACTIONS(8147), 1, anon_sym_LBRACK, - ACTIONS(8195), 1, + ACTIONS(8250), 1, anon_sym_STAR, - ACTIONS(8197), 1, + ACTIONS(8252), 1, anon_sym_AMP_AMP, - ACTIONS(8199), 1, + ACTIONS(8254), 1, anon_sym_AMP, - STATE(2994), 1, + STATE(3371), 1, sym_parameter_list, - STATE(4289), 1, + STATE(4325), 1, sym_alignas_qualifier, - STATE(6087), 1, + STATE(6109), 1, sym__function_declarator_seq, - STATE(6497), 1, + STATE(6601), 1, sym__abstract_declarator, - ACTIONS(8133), 2, + ACTIONS(8149), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4131), 2, + STATE(4215), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6092), 5, + STATE(6099), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(5865), 7, + ACTIONS(5877), 6, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, + anon_sym___attribute__, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - ACTIONS(8125), 12, + ACTIONS(8141), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -432678,452 +438489,549 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [162077] = 27, + [164582] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(3339), 1, + anon_sym_const, + ACTIONS(5020), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(8147), 1, anon_sym_LBRACK, - ACTIONS(7564), 1, - anon_sym_DOT, - ACTIONS(8423), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8919), 1, + ACTIONS(8250), 1, + anon_sym_STAR, + ACTIONS(8252), 1, + anon_sym_AMP_AMP, + ACTIONS(8254), 1, + anon_sym_AMP, + ACTIONS(8455), 1, + anon_sym___attribute, + STATE(3371), 1, + sym_parameter_list, + STATE(4325), 1, + sym_alignas_qualifier, + STATE(6109), 1, + sym__function_declarator_seq, + STATE(6572), 1, + sym__abstract_declarator, + ACTIONS(8149), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4215), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6099), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8453), 6, + anon_sym_COMMA, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(8141), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [164656] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3339), 1, + anon_sym_const, + ACTIONS(5020), 1, + anon_sym_LPAREN2, + ACTIONS(6783), 1, + anon_sym___attribute, + ACTIONS(8147), 1, + anon_sym_LBRACK, + ACTIONS(8250), 1, + anon_sym_STAR, + ACTIONS(8252), 1, + anon_sym_AMP_AMP, + ACTIONS(8254), 1, + anon_sym_AMP, + STATE(3371), 1, + sym_parameter_list, + STATE(4325), 1, + sym_alignas_qualifier, + STATE(6109), 1, + sym__function_declarator_seq, + STATE(6604), 1, + sym__abstract_declarator, + ACTIONS(8149), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4215), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6099), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6781), 6, anon_sym_COMMA, - ACTIONS(8925), 1, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(8141), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [164730] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6935), 1, + anon_sym_LPAREN2, + ACTIONS(7720), 1, + anon_sym_LBRACK, + ACTIONS(7734), 1, + anon_sym_DOT, + ACTIONS(8748), 1, anon_sym_SLASH, - ACTIONS(8931), 1, + ACTIONS(8754), 1, anon_sym_PIPE, - ACTIONS(8935), 1, + ACTIONS(8758), 1, anon_sym_AMP, - ACTIONS(8941), 1, - anon_sym_GT_EQ, - ACTIONS(8947), 1, - anon_sym_QMARK, - ACTIONS(8949), 1, + ACTIONS(8764), 1, + anon_sym_LT_LT, + ACTIONS(8766), 1, + anon_sym_GT_GT, + ACTIONS(8770), 1, anon_sym_LT_EQ_GT, - ACTIONS(8951), 1, + ACTIONS(8772), 1, anon_sym_bitor, - ACTIONS(8953), 1, + ACTIONS(8774), 1, anon_sym_bitand, - ACTIONS(9057), 1, - anon_sym_COLON, - STATE(2525), 1, + STATE(3632), 1, sym_argument_list, - STATE(2526), 1, + STATE(3652), 1, sym_subscript_argument_list, - ACTIONS(7566), 2, + ACTIONS(7736), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8921), 2, + ACTIONS(8744), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8923), 2, + ACTIONS(8746), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8927), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8929), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8933), 2, + ACTIONS(8756), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8943), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8937), 3, + ACTIONS(8776), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8760), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8939), 3, + ACTIONS(8762), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [162171] = 24, + ACTIONS(6520), 8, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_GT2, + [164814] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(7564), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8925), 1, + ACTIONS(7778), 1, + anon_sym_COMMA, + ACTIONS(8449), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8931), 1, + ACTIONS(8681), 1, anon_sym_PIPE, - ACTIONS(8935), 1, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8941), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8949), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8951), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8953), 1, + ACTIONS(8699), 1, anon_sym_bitand, - STATE(2525), 1, + ACTIONS(8707), 1, + anon_sym_QMARK, + ACTIONS(9081), 1, + anon_sym_SEMI, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(7566), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8921), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8923), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8927), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8929), 2, + ACTIONS(8679), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8933), 2, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8943), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8937), 3, + ACTIONS(8701), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8939), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7007), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - [162259] = 26, + [164908] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(7564), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8925), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8931), 1, + ACTIONS(8681), 1, anon_sym_PIPE, - ACTIONS(8935), 1, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8941), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8947), 1, - anon_sym_QMARK, - ACTIONS(8949), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8951), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8953), 1, + ACTIONS(8699), 1, anon_sym_bitand, - STATE(2525), 1, + ACTIONS(8707), 1, + anon_sym_QMARK, + ACTIONS(9083), 1, + anon_sym_COMMA, + ACTIONS(9085), 1, + anon_sym_RPAREN, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(7013), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(7566), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8921), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8923), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8927), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8929), 2, + ACTIONS(8679), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8933), 2, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8943), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8937), 3, + ACTIONS(8701), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8939), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [162351] = 24, + [165002] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(7564), 1, + ACTIONS(7614), 1, anon_sym_DOT, - ACTIONS(8925), 1, + ACTIONS(8959), 1, anon_sym_SLASH, - ACTIONS(8931), 1, + ACTIONS(8965), 1, anon_sym_PIPE, - ACTIONS(8935), 1, + ACTIONS(8969), 1, anon_sym_AMP, - ACTIONS(8941), 1, + ACTIONS(8975), 1, anon_sym_GT_EQ, - ACTIONS(8949), 1, + ACTIONS(8983), 1, anon_sym_LT_EQ_GT, - ACTIONS(8951), 1, + ACTIONS(8985), 1, anon_sym_bitor, - ACTIONS(8953), 1, + ACTIONS(8987), 1, anon_sym_bitand, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(7566), 2, + ACTIONS(7616), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8921), 2, + ACTIONS(8955), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8923), 2, + ACTIONS(8957), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8927), 2, + ACTIONS(8961), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8929), 2, + ACTIONS(8963), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8933), 2, + ACTIONS(8967), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8943), 2, + ACTIONS(8977), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8937), 3, + ACTIONS(8971), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8939), 3, + ACTIONS(8973), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7017), 4, + ACTIONS(6995), 4, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_COLON, anon_sym_QMARK, - [162439] = 27, + [165090] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(7614), 1, anon_sym_DOT, - ACTIONS(7715), 1, - anon_sym_COMMA, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8953), 1, + anon_sym_COMMA, + ACTIONS(8959), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8965), 1, + anon_sym_PIPE, + ACTIONS(8969), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8975), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8981), 1, + anon_sym_QMARK, + ACTIONS(8983), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8985), 1, anon_sym_bitor, - ACTIONS(8683), 1, - anon_sym_QMARK, - ACTIONS(9059), 1, - anon_sym_RPAREN, - STATE(2525), 1, + ACTIONS(8987), 1, + anon_sym_bitand, + ACTIONS(9087), 1, + anon_sym_COLON, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(7616), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8955), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8957), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8961), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8963), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8967), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8977), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8971), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8973), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [162533] = 26, + [165184] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(6935), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(7720), 1, anon_sym_LBRACK, - ACTIONS(7564), 1, + ACTIONS(7734), 1, anon_sym_DOT, - ACTIONS(8423), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8925), 1, - anon_sym_SLASH, - ACTIONS(8931), 1, - anon_sym_PIPE, - ACTIONS(8935), 1, - anon_sym_AMP, - ACTIONS(8941), 1, - anon_sym_GT_EQ, - ACTIONS(8947), 1, - anon_sym_QMARK, - ACTIONS(8949), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8951), 1, - anon_sym_bitor, - ACTIONS(8953), 1, - anon_sym_bitand, - STATE(2525), 1, + STATE(3632), 1, sym_argument_list, - STATE(2526), 1, + STATE(3652), 1, sym_subscript_argument_list, - ACTIONS(7021), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(7566), 2, + ACTIONS(7736), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8776), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8921), 2, + ACTIONS(6460), 10, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8923), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + ACTIONS(6462), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8927), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8929), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8933), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(8943), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8937), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(8939), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [162625] = 23, + anon_sym_GT2, + [165244] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1852), 1, + ACTIONS(1850), 1, anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2979), 1, + ACTIONS(2999), 1, anon_sym_TILDE, - ACTIONS(4298), 1, + ACTIONS(4310), 1, anon_sym_LPAREN2, - ACTIONS(4300), 1, + ACTIONS(4312), 1, anon_sym_STAR, - ACTIONS(4302), 1, + ACTIONS(4314), 1, anon_sym_AMP_AMP, - ACTIONS(4304), 1, + ACTIONS(4316), 1, anon_sym_AMP, - ACTIONS(5460), 1, + ACTIONS(5481), 1, sym_identifier, - ACTIONS(5863), 1, + ACTIONS(5875), 1, anon_sym_LBRACK, - ACTIONS(6321), 1, + ACTIONS(6365), 1, anon_sym_COLON_COLON, - ACTIONS(8306), 1, + ACTIONS(8360), 1, anon_sym_RPAREN, - STATE(3004), 1, + STATE(3113), 1, sym_parameter_list, - STATE(5847), 1, + STATE(5923), 1, sym__scope_resolution, - STATE(6087), 1, + STATE(6109), 1, sym__function_declarator_seq, - STATE(6451), 1, + STATE(6634), 1, sym__declarator, - STATE(6649), 1, + STATE(6796), 1, sym__abstract_declarator, - STATE(8682), 1, + STATE(8864), 1, sym_ms_based_modifier, - STATE(8601), 3, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6092), 5, + STATE(6099), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - STATE(5998), 11, + STATE(6145), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -433135,118 +439043,341 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [162711] = 27, + [165330] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6518), 1, + anon_sym_PIPE, + ACTIONS(6935), 1, + anon_sym_LPAREN2, + ACTIONS(7720), 1, + anon_sym_LBRACK, + ACTIONS(7734), 1, + anon_sym_DOT, + ACTIONS(8748), 1, + anon_sym_SLASH, + ACTIONS(8758), 1, + anon_sym_AMP, + ACTIONS(8764), 1, + anon_sym_LT_LT, + ACTIONS(8766), 1, + anon_sym_GT_GT, + ACTIONS(8770), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8774), 1, + anon_sym_bitand, + STATE(3632), 1, + sym_argument_list, + STATE(3652), 1, + sym_subscript_argument_list, + ACTIONS(7736), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8744), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8746), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8756), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8776), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8760), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8762), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6520), 9, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_GT2, + [165412] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(7715), 1, + ACTIONS(7778), 1, anon_sym_COMMA, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8683), 1, + ACTIONS(8699), 1, + anon_sym_bitand, + ACTIONS(8707), 1, anon_sym_QMARK, - ACTIONS(8898), 1, + ACTIONS(9089), 1, anon_sym_SEMI, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8679), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, + ACTIONS(8701), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8687), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8689), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [165506] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5845), 1, + anon_sym_LPAREN2, + ACTIONS(6414), 1, + anon_sym_LBRACK, + ACTIONS(6418), 1, + anon_sym_DOT, + ACTIONS(7778), 1, + anon_sym_COMMA, + ACTIONS(8449), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8677), 1, + anon_sym_SLASH, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, + anon_sym_AMP, + ACTIONS(8691), 1, + anon_sym_GT_EQ, + ACTIONS(8695), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8697), 1, + anon_sym_bitor, + ACTIONS(8699), 1, + anon_sym_bitand, + ACTIONS(8707), 1, + anon_sym_QMARK, + ACTIONS(9091), 1, + anon_sym_SEMI, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + ACTIONS(6420), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8048), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8673), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8675), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8679), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8681), 2, + ACTIONS(8683), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8693), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8701), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [162805] = 16, + [165600] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3331), 1, + ACTIONS(4187), 1, + anon_sym_COLON_COLON, + ACTIONS(9045), 1, + anon_sym_LT, + STATE(2358), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2578), 1, + sym_template_argument_list, + ACTIONS(4164), 3, + anon_sym_AMP, + anon_sym___attribute, anon_sym_const, - ACTIONS(5012), 1, + ACTIONS(5068), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4172), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(8131), 1, - anon_sym_LBRACK, - ACTIONS(8228), 1, anon_sym_STAR, - ACTIONS(8230), 1, anon_sym_AMP_AMP, - ACTIONS(8232), 1, - anon_sym_AMP, - STATE(2998), 1, - sym_parameter_list, - STATE(4289), 1, - sym_alignas_qualifier, - STATE(6087), 1, - sym__function_declarator_seq, - STATE(6436), 1, - sym__abstract_declarator, - ACTIONS(8133), 2, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - STATE(4131), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6092), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8441), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_try, + anon_sym_GT2, anon_sym_requires, - ACTIONS(8125), 12, + [165656] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5845), 1, + anon_sym_LPAREN2, + ACTIONS(6414), 1, + anon_sym_LBRACK, + ACTIONS(7614), 1, + anon_sym_DOT, + ACTIONS(8449), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8953), 1, + anon_sym_COMMA, + ACTIONS(8959), 1, + anon_sym_SLASH, + ACTIONS(8965), 1, + anon_sym_PIPE, + ACTIONS(8969), 1, + anon_sym_AMP, + ACTIONS(8975), 1, + anon_sym_GT_EQ, + ACTIONS(8981), 1, + anon_sym_QMARK, + ACTIONS(8983), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8985), 1, + anon_sym_bitor, + ACTIONS(8987), 1, + anon_sym_bitand, + ACTIONS(9093), 1, + anon_sym_COLON, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + ACTIONS(7616), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8048), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8955), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8957), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8961), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8963), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8967), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8977), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8971), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8973), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [165750] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7283), 1, + anon_sym___attribute__, + ACTIONS(7285), 1, + anon_sym___attribute, + STATE(4797), 1, + sym_attribute_specifier, + ACTIONS(6157), 4, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(6159), 31, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym___extension__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -433258,100 +439389,306 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [162877] = 27, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [165802] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(7564), 1, + ACTIONS(7614), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8919), 1, - anon_sym_COMMA, - ACTIONS(8925), 1, + ACTIONS(8959), 1, anon_sym_SLASH, - ACTIONS(8931), 1, + ACTIONS(8965), 1, anon_sym_PIPE, - ACTIONS(8935), 1, + ACTIONS(8969), 1, anon_sym_AMP, - ACTIONS(8941), 1, + ACTIONS(8975), 1, anon_sym_GT_EQ, - ACTIONS(8947), 1, + ACTIONS(8981), 1, anon_sym_QMARK, - ACTIONS(8949), 1, + ACTIONS(8983), 1, anon_sym_LT_EQ_GT, - ACTIONS(8951), 1, + ACTIONS(8985), 1, anon_sym_bitor, - ACTIONS(8953), 1, + ACTIONS(8987), 1, anon_sym_bitand, - ACTIONS(9061), 1, - anon_sym_COLON, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(7566), 2, + ACTIONS(6999), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(7616), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8921), 2, + ACTIONS(8955), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8923), 2, + ACTIONS(8957), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8927), 2, + ACTIONS(8961), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8929), 2, + ACTIONS(8963), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8933), 2, + ACTIONS(8967), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8943), 2, + ACTIONS(8977), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8937), 3, + ACTIONS(8971), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8939), 3, + ACTIONS(8973), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [162971] = 12, + [165894] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6979), 1, + ACTIONS(7283), 1, + anon_sym___attribute__, + ACTIONS(7285), 1, + anon_sym___attribute, + STATE(4830), 1, + sym_attribute_specifier, + ACTIONS(6100), 4, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(6102), 31, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [165946] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3339), 1, + anon_sym_const, + ACTIONS(5020), 1, + anon_sym_LPAREN2, + ACTIONS(8147), 1, + anon_sym_LBRACK, + ACTIONS(8236), 1, + anon_sym_STAR, + ACTIONS(8238), 1, + anon_sym_AMP_AMP, + ACTIONS(8240), 1, + anon_sym_AMP, + ACTIONS(8489), 1, + anon_sym___attribute, + STATE(3378), 1, + sym_parameter_list, + STATE(4325), 1, + sym_alignas_qualifier, + STATE(6109), 1, + sym__function_declarator_seq, + STATE(6585), 1, + sym__abstract_declarator, + ACTIONS(8149), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4215), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6099), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8487), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8141), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [166020] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6518), 1, + anon_sym_PIPE, + ACTIONS(6935), 1, anon_sym_LPAREN2, - ACTIONS(7659), 1, + ACTIONS(7720), 1, anon_sym_LBRACK, - ACTIONS(7663), 1, + ACTIONS(7734), 1, anon_sym_DOT, - ACTIONS(8713), 1, + ACTIONS(8748), 1, anon_sym_SLASH, - STATE(3545), 1, + ACTIONS(8758), 1, + anon_sym_AMP, + ACTIONS(8764), 1, + anon_sym_LT_LT, + ACTIONS(8766), 1, + anon_sym_GT_GT, + ACTIONS(8770), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8774), 1, + anon_sym_bitand, + STATE(3632), 1, sym_argument_list, - STATE(3546), 1, + STATE(3652), 1, sym_subscript_argument_list, - ACTIONS(7665), 2, + ACTIONS(7736), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8711), 2, + ACTIONS(8744), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8746), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8741), 2, + ACTIONS(8776), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6449), 9, + ACTIONS(8760), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8762), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6520), 11, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_GT2, + [166100] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8902), 1, + anon_sym___attribute__, + ACTIONS(8904), 1, + anon_sym___attribute, + ACTIONS(9065), 1, + anon_sym_COLON, + ACTIONS(9067), 1, + anon_sym_LBRACE, + STATE(4877), 1, + sym__enum_base_clause, + STATE(4955), 1, + sym_enumerator_list, + STATE(4988), 1, + sym_attribute_specifier, + ACTIONS(6393), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(6395), 29, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [166160] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8431), 1, + anon_sym_LBRACK, + STATE(4709), 1, + sym_new_declarator, + ACTIONS(6346), 11, anon_sym_DASH, anon_sym_PLUS, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, @@ -433359,15 +439696,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_GT_GT, - ACTIONS(6451), 17, + anon_sym_DOT, + ACTIONS(6348), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_LT, + anon_sym_LBRACE, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -433376,149 +439718,234 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_GT2, - [163035] = 27, + [166210] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(7564), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8836), 1, + anon_sym_SLASH, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + ACTIONS(6420), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8048), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8834), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6518), 7, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6520), 19, anon_sym_DOT_DOT_DOT, - ACTIONS(8919), 1, anon_sym_COMMA, - ACTIONS(8925), 1, + 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_LT, + anon_sym_GT_GT, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [166274] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5845), 1, + anon_sym_LPAREN2, + ACTIONS(6414), 1, + anon_sym_LBRACK, + ACTIONS(6418), 1, + anon_sym_DOT, + ACTIONS(8449), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8836), 1, anon_sym_SLASH, - ACTIONS(8931), 1, + ACTIONS(8842), 1, anon_sym_PIPE, - ACTIONS(8935), 1, + ACTIONS(8846), 1, anon_sym_AMP, - ACTIONS(8941), 1, + ACTIONS(8852), 1, anon_sym_GT_EQ, - ACTIONS(8947), 1, + ACTIONS(8858), 1, anon_sym_QMARK, - ACTIONS(8949), 1, + ACTIONS(8860), 1, anon_sym_LT_EQ_GT, - ACTIONS(8951), 1, + ACTIONS(8862), 1, anon_sym_bitor, - ACTIONS(8953), 1, + ACTIONS(8864), 1, anon_sym_bitand, - ACTIONS(9063), 1, - anon_sym_COLON, - STATE(2525), 1, + ACTIONS(9095), 1, + anon_sym_RBRACK, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(7566), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8921), 2, + ACTIONS(8832), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8923), 2, + ACTIONS(8834), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8927), 2, + ACTIONS(8838), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8929), 2, + ACTIONS(8840), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8933), 2, + ACTIONS(8844), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8943), 2, + ACTIONS(8854), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8937), 3, + ACTIONS(8848), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8939), 3, + ACTIONS(8850), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [163129] = 10, + [166365] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(6979), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(2999), 1, + anon_sym_TILDE, + ACTIONS(4310), 1, anon_sym_LPAREN2, - ACTIONS(7659), 1, - anon_sym_LBRACK, - ACTIONS(7663), 1, - anon_sym_DOT, - STATE(3545), 1, - sym_argument_list, - STATE(3546), 1, - sym_subscript_argument_list, - ACTIONS(7665), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8741), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6449), 10, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - ACTIONS(6451), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(4312), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(4314), 1, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_GT2, - [163189] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7083), 1, - anon_sym___attribute__, - ACTIONS(7085), 1, - anon_sym___attribute, - STATE(4716), 1, - sym_attribute_specifier, - ACTIONS(6151), 4, + ACTIONS(4316), 1, anon_sym_AMP, + ACTIONS(5481), 1, + sym_identifier, + ACTIONS(5875), 1, anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(6153), 31, - anon_sym_COMMA, + ACTIONS(6365), 1, + anon_sym_COLON_COLON, + STATE(3113), 1, + sym_parameter_list, + STATE(5923), 1, + sym__scope_resolution, + STATE(6109), 1, + sym__function_declarator_seq, + STATE(6752), 1, + sym__declarator, + STATE(7023), 1, + sym__abstract_declarator, + STATE(8864), 1, + sym_ms_based_modifier, + STATE(8569), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6099), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(6145), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [166448] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(8284), 1, + sym_identifier, + ACTIONS(8286), 1, anon_sym_LPAREN2, + ACTIONS(8296), 1, + sym_primitive_type, + ACTIONS(8332), 1, anon_sym_STAR, + ACTIONS(8334), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(8336), 1, + anon_sym_AMP, + STATE(1680), 1, + sym_alignas_qualifier, + STATE(6122), 1, + sym_pointer_type_declarator, + STATE(6359), 1, + sym__type_declarator, + STATE(8378), 1, + sym_ms_based_modifier, + ACTIONS(69), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1669), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8294), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(6136), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(67), 13, anon_sym___extension__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -433530,406 +439957,391 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [163241] = 26, + [166521] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8683), 1, + ACTIONS(8699), 1, + anon_sym_bitand, + ACTIONS(8707), 1, anon_sym_QMARK, - STATE(2525), 1, + ACTIONS(9097), 1, + anon_sym_RPAREN, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8679), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, + ACTIONS(8701), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(9009), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(8655), 3, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [163333] = 23, + [166612] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6979), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(2997), 1, anon_sym_LPAREN2, - ACTIONS(7659), 1, + ACTIONS(2999), 1, + anon_sym_TILDE, + ACTIONS(5861), 1, + sym_identifier, + ACTIONS(5873), 1, + anon_sym_COLON_COLON, + ACTIONS(7103), 1, anon_sym_LBRACK, - ACTIONS(7663), 1, - anon_sym_DOT, - ACTIONS(8713), 1, - anon_sym_SLASH, - ACTIONS(8719), 1, - anon_sym_PIPE, - ACTIONS(8723), 1, - anon_sym_AMP, - ACTIONS(8729), 1, - anon_sym_LT_LT, - ACTIONS(8731), 1, - anon_sym_GT_GT, - ACTIONS(8735), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8737), 1, - anon_sym_bitor, - ACTIONS(8739), 1, - anon_sym_bitand, - STATE(3545), 1, - sym_argument_list, - STATE(3546), 1, - sym_subscript_argument_list, - ACTIONS(7665), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8709), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8711), 2, + ACTIONS(7105), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8717), 2, + ACTIONS(7107), 1, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8721), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8741), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8725), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8727), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6451), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_QMARK, - anon_sym_or, - anon_sym_GT2, - [163419] = 22, + ACTIONS(7109), 1, + anon_sym_AMP, + STATE(5300), 1, + sym_ms_call_modifier, + STATE(5896), 1, + sym__scope_resolution, + STATE(6033), 1, + sym__declarator, + STATE(7416), 1, + sym_init_declarator, + STATE(8504), 1, + sym_ms_based_modifier, + STATE(8569), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(1806), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(6145), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [166693] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6979), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(2997), 1, anon_sym_LPAREN2, - ACTIONS(7659), 1, + ACTIONS(2999), 1, + anon_sym_TILDE, + ACTIONS(5861), 1, + sym_identifier, + ACTIONS(5873), 1, + anon_sym_COLON_COLON, + ACTIONS(7103), 1, anon_sym_LBRACK, - ACTIONS(7663), 1, - anon_sym_DOT, - ACTIONS(8713), 1, - anon_sym_SLASH, - ACTIONS(8719), 1, - anon_sym_PIPE, - ACTIONS(8723), 1, - anon_sym_AMP, - ACTIONS(8729), 1, - anon_sym_LT_LT, - ACTIONS(8731), 1, - anon_sym_GT_GT, - ACTIONS(8735), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8737), 1, - anon_sym_bitor, - ACTIONS(8739), 1, - anon_sym_bitand, - STATE(3545), 1, - sym_argument_list, - STATE(3546), 1, - sym_subscript_argument_list, - ACTIONS(7665), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8709), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8711), 2, + ACTIONS(7105), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8721), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8741), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8725), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8727), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6451), 8, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, + ACTIONS(7107), 1, anon_sym_AMP_AMP, - anon_sym_QMARK, - anon_sym_or, - anon_sym_and, - anon_sym_GT2, - [163503] = 26, + ACTIONS(7109), 1, + anon_sym_AMP, + STATE(5320), 1, + sym_ms_call_modifier, + STATE(5630), 1, + sym__declarator, + STATE(5896), 1, + sym__scope_resolution, + STATE(7371), 1, + sym_init_declarator, + STATE(8504), 1, + sym_ms_based_modifier, + STATE(8569), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(1806), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(6145), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [166774] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8683), 1, + ACTIONS(8699), 1, + anon_sym_bitand, + ACTIONS(8707), 1, anon_sym_QMARK, - STATE(2525), 1, + ACTIONS(9099), 1, + anon_sym_RPAREN, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8679), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, + ACTIONS(8701), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(9009), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(8655), 3, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [163595] = 27, + [166865] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(7715), 1, - anon_sym_COMMA, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8683), 1, + ACTIONS(8699), 1, + anon_sym_bitand, + ACTIONS(8707), 1, anon_sym_QMARK, - ACTIONS(9065), 1, + ACTIONS(9101), 1, anon_sym_SEMI, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8679), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, + ACTIONS(8701), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [163689] = 17, + [166956] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8280), 1, - sym_identifier, - ACTIONS(8282), 1, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(2997), 1, anon_sym_LPAREN2, - ACTIONS(8292), 1, - sym_primitive_type, - ACTIONS(8300), 1, + ACTIONS(2999), 1, + anon_sym_TILDE, + ACTIONS(5861), 1, + sym_identifier, + ACTIONS(5873), 1, + anon_sym_COLON_COLON, + ACTIONS(7103), 1, + anon_sym_LBRACK, + ACTIONS(7105), 1, anon_sym_STAR, - ACTIONS(8302), 1, + ACTIONS(7107), 1, anon_sym_AMP_AMP, - ACTIONS(8304), 1, + ACTIONS(7109), 1, anon_sym_AMP, - STATE(1658), 1, - sym_alignas_qualifier, - STATE(2220), 1, - sym_pointer_type_declarator, - STATE(6195), 1, - sym__type_declarator, - STATE(8344), 1, + STATE(5326), 1, + sym_ms_call_modifier, + STATE(5578), 1, + sym__declarator, + STATE(5896), 1, + sym__scope_resolution, + STATE(7500), 1, + sym_init_declarator, + STATE(8504), 1, sym_ms_based_modifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1633), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8290), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2218), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [163762] = 3, + STATE(8569), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(1806), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(6145), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [167037] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5802), 5, + ACTIONS(5728), 5, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym_const, anon_sym___asm, - ACTIONS(5804), 32, + ACTIONS(5730), 32, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -433962,559 +440374,433 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [163807] = 26, + [167082] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(4893), 1, + anon_sym_RBRACK, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8836), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8842), 1, + anon_sym_PIPE, + ACTIONS(8846), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8852), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8858), 1, + anon_sym_QMARK, + ACTIONS(8860), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8862), 1, anon_sym_bitor, - ACTIONS(8683), 1, - anon_sym_QMARK, - ACTIONS(9067), 1, - anon_sym_RPAREN, - STATE(2525), 1, + ACTIONS(8864), 1, + anon_sym_bitand, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8832), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8834), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8838), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8840), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8844), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8854), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8848), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8850), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [163898] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5806), 5, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(5808), 32, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [163943] = 26, + [167173] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(4731), 1, + anon_sym_RBRACK, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8815), 1, + ACTIONS(8836), 1, anon_sym_SLASH, - ACTIONS(8821), 1, + ACTIONS(8842), 1, anon_sym_PIPE, - ACTIONS(8825), 1, + ACTIONS(8846), 1, anon_sym_AMP, - ACTIONS(8831), 1, + ACTIONS(8852), 1, anon_sym_GT_EQ, - ACTIONS(8837), 1, + ACTIONS(8858), 1, anon_sym_QMARK, - ACTIONS(8839), 1, + ACTIONS(8860), 1, anon_sym_LT_EQ_GT, - ACTIONS(8841), 1, + ACTIONS(8862), 1, anon_sym_bitor, - ACTIONS(8843), 1, + ACTIONS(8864), 1, anon_sym_bitand, - ACTIONS(9069), 1, - anon_sym_RBRACK, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8811), 2, + ACTIONS(8832), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8813), 2, + ACTIONS(8834), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8817), 2, + ACTIONS(8838), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8819), 2, + ACTIONS(8840), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8823), 2, + ACTIONS(8844), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8833), 2, + ACTIONS(8854), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8827), 3, + ACTIONS(8848), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8829), 3, + ACTIONS(8850), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [164034] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5810), 5, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(5812), 32, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [164079] = 26, + [167264] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(4895), 1, + anon_sym_RBRACK, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8836), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8842), 1, + anon_sym_PIPE, + ACTIONS(8846), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8852), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8858), 1, + anon_sym_QMARK, + ACTIONS(8860), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8862), 1, anon_sym_bitor, - ACTIONS(8683), 1, - anon_sym_QMARK, - ACTIONS(9071), 1, - anon_sym_RPAREN, - STATE(2525), 1, + ACTIONS(8864), 1, + anon_sym_bitand, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8832), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8834), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8838), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8840), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8844), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8854), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8848), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8850), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [164170] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5637), 5, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(5639), 32, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [164215] = 26, + [167355] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8683), 1, + ACTIONS(8699), 1, + anon_sym_bitand, + ACTIONS(8707), 1, anon_sym_QMARK, - ACTIONS(9073), 1, - anon_sym_RPAREN, - STATE(2525), 1, + ACTIONS(9103), 1, + anon_sym_SEMI, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8679), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, + ACTIONS(8701), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [164306] = 26, + [167446] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8683), 1, + ACTIONS(8699), 1, + anon_sym_bitand, + ACTIONS(8707), 1, anon_sym_QMARK, - ACTIONS(9075), 1, - anon_sym_RPAREN, - STATE(2525), 1, + ACTIONS(9105), 1, + anon_sym_SEMI, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8679), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, + ACTIONS(8701), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [164397] = 26, + [167537] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(7564), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8925), 1, + ACTIONS(8836), 1, anon_sym_SLASH, - ACTIONS(8931), 1, + ACTIONS(8842), 1, anon_sym_PIPE, - ACTIONS(8935), 1, + ACTIONS(8846), 1, anon_sym_AMP, - ACTIONS(8941), 1, + ACTIONS(8852), 1, anon_sym_GT_EQ, - ACTIONS(8947), 1, + ACTIONS(8858), 1, anon_sym_QMARK, - ACTIONS(8949), 1, + ACTIONS(8860), 1, anon_sym_LT_EQ_GT, - ACTIONS(8951), 1, + ACTIONS(8862), 1, anon_sym_bitor, - ACTIONS(8953), 1, + ACTIONS(8864), 1, anon_sym_bitand, - ACTIONS(9077), 1, - anon_sym_COLON, - STATE(2525), 1, + ACTIONS(9107), 1, + anon_sym_RBRACK, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(7566), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8921), 2, + ACTIONS(8832), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8923), 2, + ACTIONS(8834), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8927), 2, + ACTIONS(8838), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8929), 2, + ACTIONS(8840), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8933), 2, + ACTIONS(8844), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8943), 2, + ACTIONS(8854), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8937), 3, + ACTIONS(8848), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8939), 3, + ACTIONS(8850), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [164488] = 17, + [167628] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8266), 1, + ACTIONS(8298), 1, sym_identifier, - ACTIONS(8268), 1, + ACTIONS(8300), 1, anon_sym_LPAREN2, - ACTIONS(8270), 1, + ACTIONS(8302), 1, anon_sym_STAR, - ACTIONS(8272), 1, + ACTIONS(8304), 1, anon_sym_AMP_AMP, - ACTIONS(8274), 1, + ACTIONS(8306), 1, anon_sym_AMP, - ACTIONS(8278), 1, + ACTIONS(8310), 1, sym_primitive_type, - STATE(1658), 1, + STATE(1680), 1, sym_alignas_qualifier, - STATE(2892), 1, + STATE(2909), 1, sym__type_declarator, - STATE(3288), 1, + STATE(3374), 1, sym_pointer_type_declarator, - STATE(8665), 1, + STATE(8189), 1, sym_ms_based_modifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1633), 2, + STATE(1669), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(8276), 4, + ACTIONS(8308), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3285), 5, + STATE(3318), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -434534,618 +440820,406 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [164561] = 26, + [167701] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(7564), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8925), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8931), 1, + ACTIONS(8681), 1, anon_sym_PIPE, - ACTIONS(8935), 1, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8941), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8947), 1, - anon_sym_QMARK, - ACTIONS(8949), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8951), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8953), 1, + ACTIONS(8699), 1, anon_sym_bitand, - ACTIONS(9079), 1, - anon_sym_COLON, - STATE(2525), 1, + ACTIONS(8707), 1, + anon_sym_QMARK, + ACTIONS(9109), 1, + anon_sym_RPAREN, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(7566), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8921), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8923), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8927), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8929), 2, + ACTIONS(8679), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8933), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8943), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8937), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8939), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [164652] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5827), 1, - anon_sym_LPAREN2, - ACTIONS(6429), 1, - anon_sym_LBRACK, - ACTIONS(6431), 1, - anon_sym_DOT, - ACTIONS(8423), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, - anon_sym_SLASH, - ACTIONS(8653), 1, - anon_sym_AMP, - ACTIONS(8659), 1, - anon_sym_GT_EQ, - ACTIONS(8663), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, - anon_sym_bitor, - ACTIONS(8683), 1, - anon_sym_QMARK, - ACTIONS(9081), 1, - anon_sym_RBRACE, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8045), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8647), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, + ACTIONS(8701), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [164743] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5663), 5, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(5665), 32, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [164788] = 26, + [167792] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8683), 1, + ACTIONS(8699), 1, + anon_sym_bitand, + ACTIONS(8707), 1, anon_sym_QMARK, - ACTIONS(9083), 1, + ACTIONS(9111), 1, anon_sym_RPAREN, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8679), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, + ACTIONS(8701), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [164879] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(2977), 1, - anon_sym_LPAREN2, - ACTIONS(2979), 1, - anon_sym_TILDE, - ACTIONS(5849), 1, - sym_identifier, - ACTIONS(5861), 1, - anon_sym_COLON_COLON, - ACTIONS(7089), 1, - anon_sym_LBRACK, - ACTIONS(7275), 1, - anon_sym_STAR, - ACTIONS(7277), 1, - anon_sym_AMP_AMP, - ACTIONS(7279), 1, - anon_sym_AMP, - STATE(5251), 1, - sym_ms_call_modifier, - STATE(5632), 1, - sym__declarator, - STATE(5860), 1, - sym__scope_resolution, - STATE(7524), 1, - sym_init_declarator, - STATE(8398), 1, - sym_ms_based_modifier, - STATE(8601), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(1808), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - STATE(5998), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [164960] = 26, + [167883] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8683), 1, + ACTIONS(8699), 1, + anon_sym_bitand, + ACTIONS(8707), 1, anon_sym_QMARK, - ACTIONS(9085), 1, + ACTIONS(9113), 1, anon_sym_SEMI, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8679), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, + ACTIONS(8701), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [165051] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4167), 1, - anon_sym_COLON_COLON, - ACTIONS(8697), 1, - anon_sym_LT, - STATE(1603), 1, - sym_template_argument_list, - ACTIONS(4172), 4, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LBRACE, - ACTIONS(5838), 30, - anon_sym_AMP, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - [165102] = 26, + [167974] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8683), 1, + ACTIONS(8699), 1, + anon_sym_bitand, + ACTIONS(8707), 1, anon_sym_QMARK, - ACTIONS(9087), 1, - anon_sym_SEMI, - STATE(2525), 1, + ACTIONS(9115), 1, + anon_sym_RPAREN, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8679), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, + ACTIONS(8701), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [165193] = 26, + [168065] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(4897), 1, + anon_sym_RBRACK, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8836), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8842), 1, + anon_sym_PIPE, + ACTIONS(8846), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8852), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8858), 1, + anon_sym_QMARK, + ACTIONS(8860), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8862), 1, anon_sym_bitor, - ACTIONS(8683), 1, - anon_sym_QMARK, - ACTIONS(9089), 1, - anon_sym_SEMI, - STATE(2525), 1, + ACTIONS(8864), 1, + anon_sym_bitand, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8832), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8834), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8838), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8840), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8844), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8854), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8848), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8850), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [165284] = 26, + [168156] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(4758), 1, + anon_sym_RBRACK, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8836), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8842), 1, + anon_sym_PIPE, + ACTIONS(8846), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8852), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8858), 1, + anon_sym_QMARK, + ACTIONS(8860), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8862), 1, anon_sym_bitor, - ACTIONS(8683), 1, - anon_sym_QMARK, - ACTIONS(9091), 1, - anon_sym_RPAREN, - STATE(2525), 1, + ACTIONS(8864), 1, + anon_sym_bitand, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8832), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8834), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8838), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8840), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8844), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8854), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8848), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8850), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [165375] = 3, + [168247] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5667), 5, + ACTIONS(5742), 5, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym_const, anon_sym___asm, - ACTIONS(5669), 32, + ACTIONS(5744), 32, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -435178,16 +441252,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [165420] = 3, + [168292] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5681), 5, + ACTIONS(5796), 5, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym_const, anon_sym___asm, - ACTIONS(5683), 32, + ACTIONS(5798), 32, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -435220,246 +441294,280 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [165465] = 26, + [168337] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8683), 1, + ACTIONS(8699), 1, + anon_sym_bitand, + ACTIONS(8707), 1, anon_sym_QMARK, - ACTIONS(9093), 1, + ACTIONS(9117), 1, anon_sym_SEMI, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8679), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, + ACTIONS(8701), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [165556] = 26, + [168428] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8836), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8842), 1, + anon_sym_PIPE, + ACTIONS(8846), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8852), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8858), 1, + anon_sym_QMARK, + ACTIONS(8860), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8862), 1, anon_sym_bitor, - ACTIONS(8683), 1, - anon_sym_QMARK, - ACTIONS(9095), 1, - anon_sym_RPAREN, - STATE(2525), 1, + ACTIONS(8864), 1, + anon_sym_bitand, + ACTIONS(9119), 1, + anon_sym_RBRACK, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8832), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8834), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8838), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8840), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8844), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8854), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8848), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8850), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [165647] = 26, + [168519] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3339), 1, + anon_sym_const, + ACTIONS(5020), 1, + anon_sym_LPAREN2, + ACTIONS(6805), 1, + sym_auto, + ACTIONS(6807), 1, + anon_sym_decltype, + ACTIONS(8147), 1, + anon_sym_LBRACK, + ACTIONS(8515), 1, + anon_sym_STAR, + ACTIONS(8517), 1, + anon_sym_AMP_AMP, + ACTIONS(8519), 1, + anon_sym_AMP, + STATE(2741), 1, + sym_decltype_auto, + STATE(3195), 1, + sym_parameter_list, + STATE(4325), 1, + sym_alignas_qualifier, + STATE(6109), 1, + sym__function_declarator_seq, + STATE(6829), 1, + sym__abstract_declarator, + ACTIONS(8149), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4969), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8221), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + STATE(6099), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8141), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [168596] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8683), 1, + ACTIONS(8699), 1, + anon_sym_bitand, + ACTIONS(8707), 1, anon_sym_QMARK, - ACTIONS(9097), 1, - anon_sym_RPAREN, - STATE(2525), 1, + ACTIONS(9121), 1, + anon_sym_SEMI, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8679), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, + ACTIONS(8701), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [165738] = 17, + [168687] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(8280), 1, - sym_identifier, - ACTIONS(8282), 1, + ACTIONS(5820), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(5822), 32, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(8284), 1, anon_sym_STAR, - ACTIONS(8286), 1, anon_sym_AMP_AMP, - ACTIONS(8288), 1, - anon_sym_AMP, - ACTIONS(8292), 1, - sym_primitive_type, - STATE(1658), 1, - sym_alignas_qualifier, - STATE(2185), 1, - sym__type_declarator, - STATE(2220), 1, - sym_pointer_type_declarator, - STATE(7984), 1, - sym_ms_based_modifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1633), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8290), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2218), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - ACTIONS(67), 13, + anon_sym_SEMI, anon_sym___extension__, - anon_sym_const, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -435471,77 +441579,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [165811] = 22, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [168732] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(2979), 1, - anon_sym_TILDE, - ACTIONS(4298), 1, + ACTIONS(4863), 1, + anon_sym_RBRACK, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(4300), 1, + ACTIONS(6414), 1, + anon_sym_LBRACK, + ACTIONS(6418), 1, + anon_sym_DOT, + ACTIONS(8449), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8836), 1, + anon_sym_SLASH, + ACTIONS(8842), 1, + anon_sym_PIPE, + ACTIONS(8846), 1, + anon_sym_AMP, + ACTIONS(8852), 1, + anon_sym_GT_EQ, + ACTIONS(8858), 1, + anon_sym_QMARK, + ACTIONS(8860), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8862), 1, + anon_sym_bitor, + ACTIONS(8864), 1, + anon_sym_bitand, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + ACTIONS(6420), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8048), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8832), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8834), 2, anon_sym_STAR, - ACTIONS(4302), 1, + anon_sym_PERCENT, + ACTIONS(8838), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8840), 2, anon_sym_AMP_AMP, - ACTIONS(4304), 1, - anon_sym_AMP, - ACTIONS(5460), 1, - sym_identifier, - ACTIONS(5863), 1, - anon_sym_LBRACK, - ACTIONS(6321), 1, - anon_sym_COLON_COLON, - STATE(3004), 1, - sym_parameter_list, - STATE(5847), 1, - sym__scope_resolution, - STATE(6087), 1, - sym__function_declarator_seq, - STATE(6686), 1, - sym__declarator, - STATE(6915), 1, - sym__abstract_declarator, - STATE(8682), 1, - sym_ms_based_modifier, - STATE(8601), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6092), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(5998), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [165894] = 3, + anon_sym_and, + ACTIONS(8844), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8854), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8848), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8850), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [168823] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5699), 5, + ACTIONS(5738), 5, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym_const, anon_sym___asm, - ACTIONS(5701), 32, + ACTIONS(5740), 32, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -435574,303 +441696,401 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [165939] = 26, + [168868] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8683), 1, + ACTIONS(8699), 1, + anon_sym_bitand, + ACTIONS(8707), 1, anon_sym_QMARK, - ACTIONS(9099), 1, + ACTIONS(9123), 1, anon_sym_SEMI, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8679), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, + ACTIONS(8701), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [166030] = 26, + [168959] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8683), 1, + ACTIONS(8699), 1, + anon_sym_bitand, + ACTIONS(8707), 1, anon_sym_QMARK, - ACTIONS(9101), 1, + ACTIONS(9125), 1, anon_sym_RPAREN, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8679), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, + ACTIONS(8701), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [166121] = 26, + [169050] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4885), 1, - anon_sym_RBRACK, - ACTIONS(5827), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(8268), 1, + sym_identifier, + ACTIONS(8270), 1, + anon_sym_LPAREN2, + ACTIONS(8272), 1, + anon_sym_STAR, + ACTIONS(8274), 1, + anon_sym_AMP_AMP, + ACTIONS(8276), 1, + anon_sym_AMP, + ACTIONS(8282), 1, + sym_primitive_type, + STATE(1680), 1, + sym_alignas_qualifier, + STATE(1971), 1, + sym_pointer_type_declarator, + STATE(2243), 1, + sym__type_declarator, + STATE(8550), 1, + sym_ms_based_modifier, + ACTIONS(69), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1669), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8280), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1985), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [169123] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(7614), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8815), 1, + ACTIONS(8959), 1, anon_sym_SLASH, - ACTIONS(8821), 1, + ACTIONS(8965), 1, anon_sym_PIPE, - ACTIONS(8825), 1, + ACTIONS(8969), 1, anon_sym_AMP, - ACTIONS(8831), 1, + ACTIONS(8975), 1, anon_sym_GT_EQ, - ACTIONS(8837), 1, + ACTIONS(8981), 1, anon_sym_QMARK, - ACTIONS(8839), 1, + ACTIONS(8983), 1, anon_sym_LT_EQ_GT, - ACTIONS(8841), 1, + ACTIONS(8985), 1, anon_sym_bitor, - ACTIONS(8843), 1, + ACTIONS(8987), 1, anon_sym_bitand, - STATE(2525), 1, + ACTIONS(9127), 1, + anon_sym_COLON, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(7616), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8811), 2, + ACTIONS(8955), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8813), 2, + ACTIONS(8957), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8817), 2, + ACTIONS(8961), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8819), 2, + ACTIONS(8963), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8823), 2, + ACTIONS(8967), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8833), 2, + ACTIONS(8977), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8827), 3, + ACTIONS(8971), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8829), 3, + ACTIONS(8973), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [166212] = 26, + [169214] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(4799), 1, + anon_sym_RBRACK, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8836), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8842), 1, + anon_sym_PIPE, + ACTIONS(8846), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8852), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8858), 1, + anon_sym_QMARK, + ACTIONS(8860), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8862), 1, anon_sym_bitor, - ACTIONS(8683), 1, - anon_sym_QMARK, - ACTIONS(9103), 1, - anon_sym_RPAREN, - STATE(2525), 1, + ACTIONS(8864), 1, + anon_sym_bitand, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8832), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8834), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8838), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8840), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8844), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8854), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8848), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8850), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [166303] = 17, + [169305] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5788), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(5790), 32, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [169350] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8236), 1, + ACTIONS(8318), 1, sym_identifier, - ACTIONS(8238), 1, + ACTIONS(8320), 1, anon_sym_LPAREN2, - ACTIONS(8240), 1, + ACTIONS(8322), 1, anon_sym_STAR, - ACTIONS(8242), 1, + ACTIONS(8324), 1, anon_sym_AMP_AMP, - ACTIONS(8244), 1, + ACTIONS(8326), 1, anon_sym_AMP, - ACTIONS(8250), 1, + ACTIONS(8330), 1, sym_primitive_type, - STATE(1658), 1, + STATE(1680), 1, sym_alignas_qualifier, - STATE(3100), 1, + STATE(3099), 1, sym__type_declarator, - STATE(3394), 1, + STATE(3541), 1, sym_pointer_type_declarator, - STATE(8712), 1, + STATE(8597), 1, sym_ms_based_modifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1633), 2, + STATE(1669), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(8248), 4, + ACTIONS(8328), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3392), 5, + STATE(3536), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -435890,901 +442110,664 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [166376] = 26, + [169423] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(4780), 1, + anon_sym_RBRACK, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8836), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8842), 1, + anon_sym_PIPE, + ACTIONS(8846), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8852), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8858), 1, + anon_sym_QMARK, + ACTIONS(8860), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8862), 1, anon_sym_bitor, - ACTIONS(8683), 1, - anon_sym_QMARK, - ACTIONS(9105), 1, - anon_sym_SEMI, - STATE(2525), 1, + ACTIONS(8864), 1, + anon_sym_bitand, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8832), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8834), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8838), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8840), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8844), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8854), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8848), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8850), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [166467] = 26, + [169514] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4764), 1, - anon_sym_RBRACK, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8815), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8821), 1, + ACTIONS(8681), 1, anon_sym_PIPE, - ACTIONS(8825), 1, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8831), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8837), 1, - anon_sym_QMARK, - ACTIONS(8839), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8841), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8843), 1, + ACTIONS(8699), 1, anon_sym_bitand, - STATE(2525), 1, + ACTIONS(8707), 1, + anon_sym_QMARK, + ACTIONS(9129), 1, + anon_sym_RPAREN, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8811), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8813), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8817), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8819), 2, + ACTIONS(8679), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8823), 2, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8833), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8827), 3, + ACTIONS(8701), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8829), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [166558] = 26, + [169605] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8683), 1, + ACTIONS(8699), 1, + anon_sym_bitand, + ACTIONS(8707), 1, anon_sym_QMARK, - ACTIONS(9107), 1, - anon_sym_SEMI, - STATE(2525), 1, + ACTIONS(9131), 1, + anon_sym_RPAREN, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8679), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, + ACTIONS(8701), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [166649] = 26, + [169696] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8815), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8821), 1, + ACTIONS(8681), 1, anon_sym_PIPE, - ACTIONS(8825), 1, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8831), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8837), 1, - anon_sym_QMARK, - ACTIONS(8839), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8841), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8843), 1, + ACTIONS(8699), 1, anon_sym_bitand, - ACTIONS(9109), 1, - anon_sym_RBRACK, - STATE(2525), 1, + ACTIONS(8707), 1, + anon_sym_QMARK, + ACTIONS(9133), 1, + anon_sym_RPAREN, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8811), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8813), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8817), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8819), 2, + ACTIONS(8679), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8823), 2, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8833), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8827), 3, + ACTIONS(8701), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8829), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [166740] = 26, + [169787] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8683), 1, + ACTIONS(8699), 1, + anon_sym_bitand, + ACTIONS(8707), 1, anon_sym_QMARK, - ACTIONS(9111), 1, + ACTIONS(9135), 1, anon_sym_SEMI, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8679), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, + ACTIONS(8701), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [166831] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9113), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(6505), 5, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(6507), 30, - anon_sym_LPAREN2, - anon_sym_AMP_AMP, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_noexcept, - anon_sym_throw, - anon_sym_requires, - [166878] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(8280), 1, - sym_identifier, - ACTIONS(8282), 1, - anon_sym_LPAREN2, - ACTIONS(8292), 1, - sym_primitive_type, - ACTIONS(8300), 1, - anon_sym_STAR, - ACTIONS(8302), 1, - anon_sym_AMP_AMP, - ACTIONS(8304), 1, - anon_sym_AMP, - STATE(1658), 1, - sym_alignas_qualifier, - STATE(2220), 1, - sym_pointer_type_declarator, - STATE(6251), 1, - sym__type_declarator, - STATE(8344), 1, - sym_ms_based_modifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1633), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8290), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2218), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [166951] = 26, + [169878] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4847), 1, + ACTIONS(4869), 1, anon_sym_RBRACK, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8815), 1, + ACTIONS(8836), 1, anon_sym_SLASH, - ACTIONS(8821), 1, + ACTIONS(8842), 1, anon_sym_PIPE, - ACTIONS(8825), 1, + ACTIONS(8846), 1, anon_sym_AMP, - ACTIONS(8831), 1, + ACTIONS(8852), 1, anon_sym_GT_EQ, - ACTIONS(8837), 1, + ACTIONS(8858), 1, anon_sym_QMARK, - ACTIONS(8839), 1, + ACTIONS(8860), 1, anon_sym_LT_EQ_GT, - ACTIONS(8841), 1, + ACTIONS(8862), 1, anon_sym_bitor, - ACTIONS(8843), 1, + ACTIONS(8864), 1, anon_sym_bitand, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8811), 2, + ACTIONS(8832), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8813), 2, + ACTIONS(8834), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8817), 2, + ACTIONS(8838), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8819), 2, + ACTIONS(8840), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8823), 2, + ACTIONS(8844), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8833), 2, + ACTIONS(8854), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8827), 3, + ACTIONS(8848), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8829), 3, + ACTIONS(8850), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [167042] = 17, + [169969] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(8280), 1, - sym_identifier, - ACTIONS(8282), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(8292), 1, - sym_primitive_type, - ACTIONS(8300), 1, + ACTIONS(6414), 1, + anon_sym_LBRACK, + ACTIONS(6418), 1, + anon_sym_DOT, + ACTIONS(8449), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8677), 1, + anon_sym_SLASH, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, + anon_sym_AMP, + ACTIONS(8691), 1, + anon_sym_GT_EQ, + ACTIONS(8695), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8697), 1, + anon_sym_bitor, + ACTIONS(8699), 1, + anon_sym_bitand, + ACTIONS(8707), 1, + anon_sym_QMARK, + ACTIONS(8930), 1, + anon_sym_RPAREN, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + ACTIONS(6420), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8048), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8673), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8675), 2, anon_sym_STAR, - ACTIONS(8302), 1, + anon_sym_PERCENT, + ACTIONS(8679), 2, anon_sym_AMP_AMP, - ACTIONS(8304), 1, - anon_sym_AMP, - STATE(1658), 1, - sym_alignas_qualifier, - STATE(2220), 1, - sym_pointer_type_declarator, - STATE(6238), 1, - sym__type_declarator, - STATE(8344), 1, - sym_ms_based_modifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1633), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8290), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2218), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [167115] = 26, + anon_sym_and, + ACTIONS(8683), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8693), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8701), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8687), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8689), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [170060] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(7564), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8925), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8931), 1, + ACTIONS(8681), 1, anon_sym_PIPE, - ACTIONS(8935), 1, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8941), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8947), 1, - anon_sym_QMARK, - ACTIONS(8949), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8951), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8953), 1, + ACTIONS(8699), 1, anon_sym_bitand, - ACTIONS(9116), 1, - anon_sym_COLON, - STATE(2525), 1, + ACTIONS(8707), 1, + anon_sym_QMARK, + ACTIONS(9137), 1, + anon_sym_SEMI, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(7566), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8921), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8923), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8927), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8929), 2, + ACTIONS(8679), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8933), 2, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8943), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8937), 3, + ACTIONS(8701), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8939), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [167206] = 3, + [170151] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5647), 5, + ACTIONS(7048), 1, + anon_sym_AMP_AMP, + ACTIONS(7050), 1, anon_sym_AMP, + ACTIONS(7071), 1, + anon_sym___asm, + ACTIONS(7073), 1, + anon_sym_DASH_GT, + ACTIONS(7075), 1, + anon_sym_noexcept, + ACTIONS(7077), 1, + anon_sym_throw, + ACTIONS(7079), 1, + anon_sym_requires, + ACTIONS(9141), 1, + anon_sym___attribute__, + ACTIONS(9144), 1, anon_sym___attribute, + ACTIONS(9147), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9150), 1, anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(5649), 32, + STATE(4972), 1, + sym_ref_qualifier, + STATE(5671), 1, + sym_trailing_return_type, + STATE(5814), 1, + sym__function_attributes_end, + STATE(6850), 1, + sym_gnu_asm_expression, + ACTIONS(6037), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7069), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5540), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5730), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5927), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5323), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9139), 7, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, anon_sym_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_try, - anon_sym_requires, - [167251] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(8252), 1, - sym_identifier, - ACTIONS(8254), 1, - anon_sym_LPAREN2, - ACTIONS(8264), 1, - sym_primitive_type, - ACTIONS(8312), 1, - anon_sym_STAR, - ACTIONS(8314), 1, - anon_sym_AMP_AMP, - ACTIONS(8316), 1, - anon_sym_AMP, - STATE(1658), 1, - sym_alignas_qualifier, - STATE(6089), 1, - sym_pointer_type_declarator, - STATE(6225), 1, - sym__type_declarator, - STATE(8365), 1, - sym_ms_based_modifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1633), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8262), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(6082), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [167324] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(8252), 1, - sym_identifier, - ACTIONS(8254), 1, - anon_sym_LPAREN2, - ACTIONS(8264), 1, - sym_primitive_type, - ACTIONS(8312), 1, - anon_sym_STAR, - ACTIONS(8314), 1, - anon_sym_AMP_AMP, - ACTIONS(8316), 1, - anon_sym_AMP, - STATE(1658), 1, - sym_alignas_qualifier, - STATE(6089), 1, - sym_pointer_type_declarator, - STATE(6227), 1, - sym__type_declarator, - STATE(8365), 1, - sym_ms_based_modifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1633), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8262), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(6082), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [167397] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(8252), 1, - sym_identifier, - ACTIONS(8254), 1, - anon_sym_LPAREN2, - ACTIONS(8264), 1, - sym_primitive_type, - ACTIONS(8312), 1, - anon_sym_STAR, - ACTIONS(8314), 1, - anon_sym_AMP_AMP, - ACTIONS(8316), 1, - anon_sym_AMP, - STATE(1658), 1, - sym_alignas_qualifier, - STATE(6089), 1, - sym_pointer_type_declarator, - STATE(6276), 1, - sym__type_declarator, - STATE(8365), 1, - sym_ms_based_modifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1633), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8262), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(6082), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [167470] = 26, + [170238] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4835), 1, + ACTIONS(4837), 1, anon_sym_RBRACK, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8815), 1, + ACTIONS(8836), 1, anon_sym_SLASH, - ACTIONS(8821), 1, + ACTIONS(8842), 1, anon_sym_PIPE, - ACTIONS(8825), 1, + ACTIONS(8846), 1, anon_sym_AMP, - ACTIONS(8831), 1, + ACTIONS(8852), 1, anon_sym_GT_EQ, - ACTIONS(8837), 1, + ACTIONS(8858), 1, anon_sym_QMARK, - ACTIONS(8839), 1, + ACTIONS(8860), 1, anon_sym_LT_EQ_GT, - ACTIONS(8841), 1, + ACTIONS(8862), 1, anon_sym_bitor, - ACTIONS(8843), 1, + ACTIONS(8864), 1, anon_sym_bitand, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8811), 2, + ACTIONS(8832), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8813), 2, + ACTIONS(8834), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8817), 2, + ACTIONS(8838), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8819), 2, + ACTIONS(8840), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8823), 2, + ACTIONS(8844), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8833), 2, + ACTIONS(8854), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8827), 3, + ACTIONS(8848), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8829), 3, + ACTIONS(8850), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [167561] = 3, + [170329] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5798), 5, + ACTIONS(5720), 5, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym_const, anon_sym___asm, - ACTIONS(5800), 32, + ACTIONS(5722), 32, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -436817,309 +442800,179 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [167606] = 26, + [170374] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8683), 1, + ACTIONS(8699), 1, + anon_sym_bitand, + ACTIONS(8707), 1, anon_sym_QMARK, - ACTIONS(9118), 1, - anon_sym_SEMI, - STATE(2525), 1, + ACTIONS(9152), 1, + anon_sym_RPAREN, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8661), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8667), 2, + ACTIONS(8679), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8681), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8655), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8657), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [167697] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5827), 1, - anon_sym_LPAREN2, - ACTIONS(6429), 1, - anon_sym_LBRACK, - ACTIONS(6431), 1, - anon_sym_DOT, - ACTIONS(8423), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, - anon_sym_SLASH, - ACTIONS(8653), 1, - anon_sym_AMP, - ACTIONS(8659), 1, - anon_sym_GT_EQ, - ACTIONS(8663), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, - anon_sym_bitor, - ACTIONS(8683), 1, - anon_sym_QMARK, - ACTIONS(9120), 1, - anon_sym_SEMI, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8045), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8647), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, + ACTIONS(8701), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [167788] = 26, + [170465] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8683), 1, + ACTIONS(8699), 1, + anon_sym_bitand, + ACTIONS(8707), 1, anon_sym_QMARK, - ACTIONS(9122), 1, - anon_sym_SEMI, - STATE(2525), 1, + ACTIONS(9154), 1, + anon_sym_RPAREN, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8661), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8667), 2, + ACTIONS(8679), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8681), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8655), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8657), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [167879] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5827), 1, - anon_sym_LPAREN2, - ACTIONS(6429), 1, - anon_sym_LBRACK, - ACTIONS(6431), 1, - anon_sym_DOT, - ACTIONS(8423), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, - anon_sym_SLASH, - ACTIONS(8653), 1, - anon_sym_AMP, - ACTIONS(8659), 1, - anon_sym_GT_EQ, - ACTIONS(8663), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, - anon_sym_bitor, - ACTIONS(8683), 1, - anon_sym_QMARK, - ACTIONS(9124), 1, - anon_sym_SEMI, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8045), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8647), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, + ACTIONS(8701), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [167970] = 16, + [170556] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3331), 1, + ACTIONS(3339), 1, anon_sym_const, - ACTIONS(5012), 1, + ACTIONS(5020), 1, anon_sym_LPAREN2, - ACTIONS(8131), 1, + ACTIONS(8147), 1, anon_sym_LBRACK, - ACTIONS(8324), 1, + ACTIONS(8352), 1, anon_sym_STAR, - ACTIONS(8326), 1, + ACTIONS(8354), 1, anon_sym_AMP_AMP, - ACTIONS(8328), 1, + ACTIONS(8356), 1, anon_sym_AMP, - STATE(3179), 1, + STATE(3198), 1, sym_parameter_list, - STATE(4289), 1, + STATE(4325), 1, sym_alignas_qualifier, - STATE(6087), 1, + STATE(6109), 1, sym__function_declarator_seq, - STATE(6541), 1, + STATE(6671), 1, sym__abstract_declarator, - ACTIONS(8133), 2, + ACTIONS(8149), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4131), 2, + STATE(4215), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6092), 5, + STATE(6099), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8441), 6, + ACTIONS(8487), 6, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_requires, - ACTIONS(8125), 12, + ACTIONS(8141), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -437132,50 +442985,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [168041] = 16, + [170627] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3331), 1, + ACTIONS(3339), 1, anon_sym_const, - ACTIONS(5012), 1, + ACTIONS(5020), 1, anon_sym_LPAREN2, - ACTIONS(8131), 1, + ACTIONS(8147), 1, anon_sym_LBRACK, - ACTIONS(8324), 1, + ACTIONS(8352), 1, anon_sym_STAR, - ACTIONS(8326), 1, + ACTIONS(8354), 1, anon_sym_AMP_AMP, - ACTIONS(8328), 1, + ACTIONS(8356), 1, anon_sym_AMP, - STATE(3179), 1, + STATE(3198), 1, sym_parameter_list, - STATE(4289), 1, + STATE(4325), 1, sym_alignas_qualifier, - STATE(6087), 1, + STATE(6109), 1, sym__function_declarator_seq, - STATE(6547), 1, + STATE(6678), 1, sym__abstract_declarator, - ACTIONS(8133), 2, + ACTIONS(8149), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4131), 2, + STATE(4215), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6092), 5, + STATE(6099), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(5865), 6, + ACTIONS(5877), 6, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_requires, - ACTIONS(8125), 12, + ACTIONS(8141), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [170698] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(8298), 1, + sym_identifier, + ACTIONS(8300), 1, + anon_sym_LPAREN2, + ACTIONS(8302), 1, + anon_sym_STAR, + ACTIONS(8304), 1, + anon_sym_AMP_AMP, + ACTIONS(8306), 1, + anon_sym_AMP, + ACTIONS(8310), 1, + sym_primitive_type, + STATE(1680), 1, + sym_alignas_qualifier, + STATE(2945), 1, + sym__type_declarator, + STATE(3374), 1, + sym_pointer_type_declarator, + STATE(8189), 1, + sym_ms_based_modifier, + ACTIONS(69), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1669), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8308), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3318), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(67), 13, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -437187,49 +443096,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [168112] = 16, + [170771] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3331), 1, + ACTIONS(3339), 1, anon_sym_const, - ACTIONS(5012), 1, + ACTIONS(5020), 1, anon_sym_LPAREN2, - ACTIONS(8131), 1, + ACTIONS(8147), 1, anon_sym_LBRACK, - ACTIONS(8324), 1, + ACTIONS(8352), 1, anon_sym_STAR, - ACTIONS(8326), 1, + ACTIONS(8354), 1, anon_sym_AMP_AMP, - ACTIONS(8328), 1, + ACTIONS(8356), 1, anon_sym_AMP, - STATE(3179), 1, + STATE(3198), 1, sym_parameter_list, - STATE(4289), 1, + STATE(4325), 1, sym_alignas_qualifier, - STATE(6087), 1, + STATE(6109), 1, sym__function_declarator_seq, - STATE(6543), 1, + STATE(6673), 1, sym__abstract_declarator, - ACTIONS(8133), 2, + ACTIONS(8149), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4131), 2, + STATE(4215), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6092), 5, + STATE(6099), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8445), 6, + ACTIONS(8453), 6, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_requires, - ACTIONS(8125), 12, + ACTIONS(8141), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -437242,49 +443151,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [168183] = 16, + [170842] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3331), 1, + ACTIONS(3339), 1, anon_sym_const, - ACTIONS(5012), 1, + ACTIONS(5020), 1, anon_sym_LPAREN2, - ACTIONS(8131), 1, + ACTIONS(8147), 1, anon_sym_LBRACK, - ACTIONS(8324), 1, + ACTIONS(8352), 1, anon_sym_STAR, - ACTIONS(8326), 1, + ACTIONS(8354), 1, anon_sym_AMP_AMP, - ACTIONS(8328), 1, + ACTIONS(8356), 1, anon_sym_AMP, - STATE(3179), 1, + STATE(3198), 1, sym_parameter_list, - STATE(4289), 1, + STATE(4325), 1, sym_alignas_qualifier, - STATE(6087), 1, + STATE(6109), 1, sym__function_declarator_seq, - STATE(6548), 1, + STATE(6680), 1, sym__abstract_declarator, - ACTIONS(8133), 2, + ACTIONS(8149), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4131), 2, + STATE(4215), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6092), 5, + STATE(6099), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(6748), 6, + ACTIONS(6781), 6, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_requires, - ACTIONS(8125), 12, + ACTIONS(8141), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -437297,16 +443206,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [168254] = 3, + [170913] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(2997), 1, + anon_sym_LPAREN2, + ACTIONS(2999), 1, + anon_sym_TILDE, + ACTIONS(5861), 1, + sym_identifier, + ACTIONS(5873), 1, + anon_sym_COLON_COLON, + ACTIONS(7103), 1, + anon_sym_LBRACK, + ACTIONS(7105), 1, + anon_sym_STAR, + ACTIONS(7107), 1, + anon_sym_AMP_AMP, + ACTIONS(7109), 1, + anon_sym_AMP, + STATE(5324), 1, + sym_ms_call_modifier, + STATE(5896), 1, + sym__scope_resolution, + STATE(5991), 1, + sym__declarator, + STATE(7371), 1, + sym_init_declarator, + STATE(8504), 1, + sym_ms_based_modifier, + STATE(8569), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(1806), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(6145), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [170994] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4877), 1, + anon_sym_RBRACK, + ACTIONS(5845), 1, + anon_sym_LPAREN2, + ACTIONS(6414), 1, + anon_sym_LBRACK, + ACTIONS(6418), 1, + anon_sym_DOT, + ACTIONS(8449), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8836), 1, + anon_sym_SLASH, + ACTIONS(8842), 1, + anon_sym_PIPE, + ACTIONS(8846), 1, + anon_sym_AMP, + ACTIONS(8852), 1, + anon_sym_GT_EQ, + ACTIONS(8858), 1, + anon_sym_QMARK, + ACTIONS(8860), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8862), 1, + anon_sym_bitor, + ACTIONS(8864), 1, + anon_sym_bitand, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + ACTIONS(6420), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8048), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8832), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8834), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8838), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8840), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8844), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8854), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8848), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8850), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [171085] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5762), 5, + ACTIONS(5720), 5, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym_const, anon_sym___asm, - ACTIONS(5764), 32, + ACTIONS(5722), 32, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -437339,120 +443373,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [168299] = 26, + [171130] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8683), 1, + ACTIONS(8699), 1, + anon_sym_bitand, + ACTIONS(8707), 1, anon_sym_QMARK, - ACTIONS(9126), 1, - anon_sym_RPAREN, - STATE(2525), 1, + ACTIONS(9156), 1, + anon_sym_SEMI, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8679), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, + ACTIONS(8701), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [168390] = 21, + [171221] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1852), 1, + ACTIONS(1850), 1, anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2977), 1, + ACTIONS(2997), 1, anon_sym_LPAREN2, - ACTIONS(2979), 1, + ACTIONS(2999), 1, anon_sym_TILDE, - ACTIONS(5849), 1, - sym_identifier, ACTIONS(5861), 1, + sym_identifier, + ACTIONS(5873), 1, anon_sym_COLON_COLON, - ACTIONS(7089), 1, + ACTIONS(7103), 1, anon_sym_LBRACK, - ACTIONS(7275), 1, + ACTIONS(7105), 1, anon_sym_STAR, - ACTIONS(7277), 1, + ACTIONS(7107), 1, anon_sym_AMP_AMP, - ACTIONS(7279), 1, + ACTIONS(7109), 1, anon_sym_AMP, - STATE(5260), 1, + STATE(5299), 1, sym_ms_call_modifier, - STATE(5502), 1, - sym__declarator, - STATE(5860), 1, + STATE(5896), 1, sym__scope_resolution, - STATE(7396), 1, + STATE(6080), 1, + sym__declarator, + STATE(8033), 1, sym_init_declarator, - STATE(8398), 1, + STATE(8504), 1, sym_ms_based_modifier, - STATE(8601), 3, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - ACTIONS(1808), 6, + ACTIONS(1806), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - STATE(5998), 11, + STATE(6145), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -437464,164 +443498,233 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [168471] = 26, + [171302] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8683), 1, + ACTIONS(8699), 1, + anon_sym_bitand, + ACTIONS(8707), 1, anon_sym_QMARK, - ACTIONS(9128), 1, - anon_sym_RPAREN, - STATE(2525), 1, + ACTIONS(9158), 1, + anon_sym_SEMI, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8679), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, + ACTIONS(8701), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8687), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8689), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [171393] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5845), 1, + anon_sym_LPAREN2, + ACTIONS(6414), 1, + anon_sym_LBRACK, + ACTIONS(6418), 1, + anon_sym_DOT, + ACTIONS(8449), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8677), 1, + anon_sym_SLASH, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, + anon_sym_AMP, + ACTIONS(8691), 1, + anon_sym_GT_EQ, + ACTIONS(8695), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8697), 1, + anon_sym_bitor, + ACTIONS(8699), 1, + anon_sym_bitand, + ACTIONS(8707), 1, + anon_sym_QMARK, + ACTIONS(9160), 1, + anon_sym_SEMI, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + ACTIONS(6420), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8048), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8673), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8675), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8679), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8681), 2, + ACTIONS(8683), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8693), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8701), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [168562] = 17, + [171484] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8252), 1, - sym_identifier, - ACTIONS(8254), 1, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(2997), 1, anon_sym_LPAREN2, - ACTIONS(8256), 1, + ACTIONS(2999), 1, + anon_sym_TILDE, + ACTIONS(5861), 1, + sym_identifier, + ACTIONS(5873), 1, + anon_sym_COLON_COLON, + ACTIONS(7103), 1, + anon_sym_LBRACK, + ACTIONS(7105), 1, anon_sym_STAR, - ACTIONS(8258), 1, + ACTIONS(7107), 1, anon_sym_AMP_AMP, - ACTIONS(8260), 1, + ACTIONS(7109), 1, anon_sym_AMP, - ACTIONS(8264), 1, - sym_primitive_type, - STATE(1658), 1, - sym_alignas_qualifier, - STATE(5934), 1, - sym__type_declarator, - STATE(6089), 1, - sym_pointer_type_declarator, - STATE(8067), 1, + STATE(5301), 1, + sym_ms_call_modifier, + STATE(5896), 1, + sym__scope_resolution, + STATE(6032), 1, + sym__declarator, + STATE(7250), 1, + sym_init_declarator, + STATE(8504), 1, sym_ms_based_modifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1633), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8262), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(6082), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [168635] = 17, + STATE(8569), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(1806), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(6145), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [171565] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8266), 1, + ACTIONS(8318), 1, sym_identifier, - ACTIONS(8268), 1, + ACTIONS(8320), 1, anon_sym_LPAREN2, - ACTIONS(8270), 1, + ACTIONS(8322), 1, anon_sym_STAR, - ACTIONS(8272), 1, + ACTIONS(8324), 1, anon_sym_AMP_AMP, - ACTIONS(8274), 1, + ACTIONS(8326), 1, anon_sym_AMP, - ACTIONS(8278), 1, + ACTIONS(8330), 1, sym_primitive_type, - STATE(1658), 1, + STATE(1680), 1, sym_alignas_qualifier, - STATE(2879), 1, + STATE(3063), 1, sym__type_declarator, - STATE(3288), 1, + STATE(3541), 1, sym_pointer_type_declarator, - STATE(8665), 1, + STATE(8597), 1, sym_ms_based_modifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1633), 2, + STATE(1669), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(8276), 4, + ACTIONS(8328), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3285), 5, + STATE(3536), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -437641,323 +443744,290 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [168708] = 26, + [171638] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(7614), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8959), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8965), 1, + anon_sym_PIPE, + ACTIONS(8969), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8975), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8981), 1, + anon_sym_QMARK, + ACTIONS(8983), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8985), 1, anon_sym_bitor, - ACTIONS(8683), 1, - anon_sym_QMARK, - ACTIONS(9130), 1, - anon_sym_RPAREN, - STATE(2525), 1, + ACTIONS(8987), 1, + anon_sym_bitand, + ACTIONS(9162), 1, + anon_sym_COLON, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(7616), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8955), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8957), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8961), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8963), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8967), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8977), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8971), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8973), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [168799] = 26, + [171729] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, - anon_sym_LPAREN2, - ACTIONS(6429), 1, - anon_sym_LBRACK, - ACTIONS(6431), 1, - anon_sym_DOT, - ACTIONS(8423), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(7081), 18, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(8653), 1, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(8659), 1, + anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(8663), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(8683), 1, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + ACTIONS(7083), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, anon_sym_QMARK, - ACTIONS(9132), 1, - anon_sym_SEMI, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8045), 2, + anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [171774] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6498), 11, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(6500), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8661), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8655), 3, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(8657), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [168890] = 17, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [171819] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8280), 1, - sym_identifier, - ACTIONS(8282), 1, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(2997), 1, anon_sym_LPAREN2, - ACTIONS(8292), 1, - sym_primitive_type, - ACTIONS(8330), 1, + ACTIONS(2999), 1, + anon_sym_TILDE, + ACTIONS(5861), 1, + sym_identifier, + ACTIONS(5873), 1, + anon_sym_COLON_COLON, + ACTIONS(7103), 1, + anon_sym_LBRACK, + ACTIONS(7105), 1, anon_sym_STAR, - ACTIONS(8332), 1, + ACTIONS(7107), 1, anon_sym_AMP_AMP, - ACTIONS(8334), 1, + ACTIONS(7109), 1, anon_sym_AMP, - STATE(1658), 1, - sym_alignas_qualifier, - STATE(2220), 1, - sym_pointer_type_declarator, - STATE(6723), 1, - sym__type_declarator, - STATE(8527), 1, + STATE(5349), 1, + sym_ms_call_modifier, + STATE(5581), 1, + sym__declarator, + STATE(5896), 1, + sym__scope_resolution, + STATE(7416), 1, + sym_init_declarator, + STATE(8504), 1, sym_ms_based_modifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1633), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8290), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2218), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [168963] = 26, + STATE(8569), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(1806), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(6145), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [171900] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8683), 1, + ACTIONS(8699), 1, + anon_sym_bitand, + ACTIONS(8707), 1, anon_sym_QMARK, - ACTIONS(9134), 1, - anon_sym_SEMI, - STATE(2525), 1, + ACTIONS(9164), 1, + anon_sym_RPAREN, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8679), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, + ACTIONS(8701), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [169054] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(8280), 1, - sym_identifier, - ACTIONS(8282), 1, - anon_sym_LPAREN2, - ACTIONS(8292), 1, - sym_primitive_type, - ACTIONS(8330), 1, - anon_sym_STAR, - ACTIONS(8332), 1, - anon_sym_AMP_AMP, - ACTIONS(8334), 1, - anon_sym_AMP, - STATE(1658), 1, - sym_alignas_qualifier, - STATE(2220), 1, - sym_pointer_type_declarator, - STATE(6753), 1, - sym__type_declarator, - STATE(8527), 1, - sym_ms_based_modifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1633), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8290), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2218), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [169127] = 3, + [171991] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5766), 5, + ACTIONS(5764), 5, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym_const, anon_sym___asm, - ACTIONS(5768), 32, + ACTIONS(5766), 32, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -437990,476 +444060,276 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [169172] = 26, + [172036] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8683), 1, + ACTIONS(8699), 1, + anon_sym_bitand, + ACTIONS(8707), 1, anon_sym_QMARK, - ACTIONS(9136), 1, - anon_sym_RPAREN, - STATE(2525), 1, + ACTIONS(9166), 1, + anon_sym_SEMI, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8679), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, + ACTIONS(8701), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [169263] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(8280), 1, - sym_identifier, - ACTIONS(8282), 1, - anon_sym_LPAREN2, - ACTIONS(8292), 1, - sym_primitive_type, - ACTIONS(8330), 1, - anon_sym_STAR, - ACTIONS(8332), 1, - anon_sym_AMP_AMP, - ACTIONS(8334), 1, - anon_sym_AMP, - STATE(1658), 1, - sym_alignas_qualifier, - STATE(2220), 1, - sym_pointer_type_declarator, - STATE(6731), 1, - sym__type_declarator, - STATE(8527), 1, - sym_ms_based_modifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1633), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8290), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2218), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [169336] = 26, + [172127] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8683), 1, + ACTIONS(8699), 1, + anon_sym_bitand, + ACTIONS(8707), 1, anon_sym_QMARK, - ACTIONS(9138), 1, - anon_sym_RPAREN, - STATE(2525), 1, + ACTIONS(9168), 1, + anon_sym_SEMI, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8679), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, + ACTIONS(8701), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [169427] = 26, + [172218] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4774), 1, - anon_sym_RBRACK, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8815), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8821), 1, + ACTIONS(8681), 1, anon_sym_PIPE, - ACTIONS(8825), 1, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8831), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8837), 1, - anon_sym_QMARK, - ACTIONS(8839), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8841), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8843), 1, + ACTIONS(8699), 1, anon_sym_bitand, - STATE(2525), 1, + ACTIONS(8707), 1, + anon_sym_QMARK, + ACTIONS(9170), 1, + anon_sym_SEMI, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8811), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8813), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8817), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8819), 2, + ACTIONS(8679), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8823), 2, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8833), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8827), 3, + ACTIONS(8701), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8829), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [169518] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(2977), 1, - anon_sym_LPAREN2, - ACTIONS(2979), 1, - anon_sym_TILDE, - ACTIONS(5849), 1, - sym_identifier, - ACTIONS(5861), 1, - anon_sym_COLON_COLON, - ACTIONS(7089), 1, - anon_sym_LBRACK, - ACTIONS(7275), 1, - anon_sym_STAR, - ACTIONS(7277), 1, - anon_sym_AMP_AMP, - ACTIONS(7279), 1, - anon_sym_AMP, - STATE(5265), 1, - sym_ms_call_modifier, - STATE(5585), 1, - sym__declarator, - STATE(5860), 1, - sym__scope_resolution, - STATE(7288), 1, - sym_init_declarator, - STATE(8398), 1, - sym_ms_based_modifier, - STATE(8601), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(1808), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - STATE(5998), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [169599] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5770), 5, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(5772), 32, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [169644] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5740), 5, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(5742), 32, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [169689] = 26, + [172309] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4770), 1, - anon_sym_RBRACK, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8815), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8821), 1, + ACTIONS(8681), 1, anon_sym_PIPE, - ACTIONS(8825), 1, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8831), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8837), 1, - anon_sym_QMARK, - ACTIONS(8839), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8841), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8843), 1, + ACTIONS(8699), 1, anon_sym_bitand, - STATE(2525), 1, + ACTIONS(8707), 1, + anon_sym_QMARK, + ACTIONS(9172), 1, + anon_sym_RPAREN, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8811), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8813), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8817), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8819), 2, + ACTIONS(8679), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8823), 2, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8833), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8827), 3, + ACTIONS(8701), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8829), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [169780] = 3, + [172400] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5728), 5, + ACTIONS(5768), 5, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym_const, anon_sym___asm, - ACTIONS(5730), 32, + ACTIONS(5770), 32, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -438492,27 +444362,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [169825] = 3, + [172445] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5732), 5, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, + ACTIONS(67), 1, anon_sym_const, - anon_sym___asm, - ACTIONS(5734), 32, - anon_sym_COMMA, + ACTIONS(7848), 1, anon_sym_LPAREN2, + ACTIONS(7862), 1, + anon_sym_LBRACK, + ACTIONS(8262), 1, anon_sym_STAR, + ACTIONS(8264), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON, + ACTIONS(8266), 1, + anon_sym_AMP, + STATE(1680), 1, + sym_alignas_qualifier, + STATE(3255), 1, + sym_parameter_list, + STATE(5953), 1, + sym__function_declarator_seq, + STATE(6638), 1, + sym__abstract_declarator, + ACTIONS(7304), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1669), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5952), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8487), 6, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(7297), 12, + anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -438524,221 +444417,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [169870] = 26, + [172516] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, - anon_sym_LPAREN2, - ACTIONS(6429), 1, - anon_sym_LBRACK, - ACTIONS(6431), 1, - anon_sym_DOT, - ACTIONS(8423), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, - anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(5693), 5, anon_sym_AMP, - ACTIONS(8659), 1, - anon_sym_GT_EQ, - ACTIONS(8663), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, - anon_sym_bitor, - ACTIONS(8683), 1, - anon_sym_QMARK, - ACTIONS(9140), 1, - anon_sym_SEMI, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8045), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8647), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8651), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8661), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8655), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8657), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [169961] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5827), 1, - anon_sym_LPAREN2, - ACTIONS(6429), 1, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(6431), 1, - anon_sym_DOT, - ACTIONS(8423), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, - anon_sym_SLASH, - ACTIONS(8653), 1, - anon_sym_AMP, - ACTIONS(8659), 1, - anon_sym_GT_EQ, - ACTIONS(8663), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, - anon_sym_bitor, - ACTIONS(8683), 1, - anon_sym_QMARK, - ACTIONS(9142), 1, + anon_sym_const, + anon_sym___asm, + ACTIONS(5695), 32, anon_sym_COMMA, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8045), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8647), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8651), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8661), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8655), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8657), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [170052] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4879), 1, - anon_sym_RBRACK, - ACTIONS(5827), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, - anon_sym_LBRACK, - ACTIONS(6431), 1, - anon_sym_DOT, - ACTIONS(8423), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8815), 1, - anon_sym_SLASH, - ACTIONS(8821), 1, - anon_sym_PIPE, - ACTIONS(8825), 1, - anon_sym_AMP, - ACTIONS(8831), 1, - anon_sym_GT_EQ, - ACTIONS(8837), 1, - anon_sym_QMARK, - ACTIONS(8839), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8841), 1, - anon_sym_bitor, - ACTIONS(8843), 1, - anon_sym_bitand, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8045), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8811), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8813), 2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8817), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8819), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8823), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8833), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8827), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8829), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [170143] = 3, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [172561] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5736), 5, + ACTIONS(5772), 5, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym_const, anon_sym___asm, - ACTIONS(5738), 32, + ACTIONS(5774), 32, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -438771,647 +444501,524 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [170188] = 21, + [172606] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(2977), 1, - anon_sym_LPAREN2, - ACTIONS(2979), 1, - anon_sym_TILDE, - ACTIONS(5849), 1, - sym_identifier, - ACTIONS(5861), 1, - anon_sym_COLON_COLON, - ACTIONS(7089), 1, + ACTIONS(5816), 5, + anon_sym_AMP, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(7275), 1, + anon_sym_const, + anon_sym___asm, + ACTIONS(5818), 32, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(7277), 1, anon_sym_AMP_AMP, - ACTIONS(7279), 1, - anon_sym_AMP, - STATE(5270), 1, - sym_ms_call_modifier, - STATE(5617), 1, - sym__declarator, - STATE(5860), 1, - sym__scope_resolution, - STATE(7376), 1, - sym_init_declarator, - STATE(8398), 1, - sym_ms_based_modifier, - STATE(8601), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(1808), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - STATE(5998), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [170269] = 26, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [172651] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, - anon_sym_LPAREN2, - ACTIONS(6429), 1, - anon_sym_LBRACK, - ACTIONS(6431), 1, - anon_sym_DOT, - ACTIONS(8423), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, - anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(5716), 5, anon_sym_AMP, - ACTIONS(8659), 1, - anon_sym_GT_EQ, - ACTIONS(8663), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, - anon_sym_bitor, - ACTIONS(8683), 1, - anon_sym_QMARK, - ACTIONS(9144), 1, - anon_sym_SEMI, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8045), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8647), 2, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(5718), 32, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8651), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8661), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8667), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8655), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8657), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [170360] = 26, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [172696] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8815), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8821), 1, + ACTIONS(8681), 1, anon_sym_PIPE, - ACTIONS(8825), 1, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8831), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8837), 1, - anon_sym_QMARK, - ACTIONS(8839), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8841), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8843), 1, + ACTIONS(8699), 1, anon_sym_bitand, - ACTIONS(9146), 1, - anon_sym_RBRACK, - STATE(2525), 1, + ACTIONS(8707), 1, + anon_sym_QMARK, + ACTIONS(9174), 1, + anon_sym_SEMI, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8811), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8813), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8817), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8819), 2, + ACTIONS(8679), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8823), 2, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8833), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8827), 3, + ACTIONS(8701), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8829), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [170451] = 26, + [172787] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4772), 1, - anon_sym_RBRACK, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8815), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8821), 1, + ACTIONS(8681), 1, anon_sym_PIPE, - ACTIONS(8825), 1, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8831), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8837), 1, - anon_sym_QMARK, - ACTIONS(8839), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8841), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8843), 1, + ACTIONS(8699), 1, anon_sym_bitand, - STATE(2525), 1, + ACTIONS(8707), 1, + anon_sym_QMARK, + ACTIONS(9176), 1, + anon_sym_RPAREN, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8811), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8813), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8817), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8819), 2, + ACTIONS(8679), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8823), 2, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8833), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8827), 3, + ACTIONS(8701), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8829), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [170542] = 26, + [172878] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(8284), 1, + sym_identifier, + ACTIONS(8286), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, - anon_sym_LBRACK, - ACTIONS(6431), 1, - anon_sym_DOT, - ACTIONS(8423), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, - anon_sym_SLASH, - ACTIONS(8653), 1, - anon_sym_AMP, - ACTIONS(8659), 1, - anon_sym_GT_EQ, - ACTIONS(8663), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, - anon_sym_bitor, - ACTIONS(8683), 1, - anon_sym_QMARK, - ACTIONS(9148), 1, - anon_sym_SEMI, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8045), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8288), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8651), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8661), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8667), 2, + ACTIONS(8290), 1, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8655), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8657), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [170633] = 26, + ACTIONS(8292), 1, + anon_sym_AMP, + ACTIONS(8296), 1, + sym_primitive_type, + STATE(1680), 1, + sym_alignas_qualifier, + STATE(6034), 1, + sym__type_declarator, + STATE(6122), 1, + sym_pointer_type_declarator, + STATE(8097), 1, + sym_ms_based_modifier, + ACTIONS(69), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1669), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8294), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(6136), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [172951] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8683), 1, + ACTIONS(8699), 1, + anon_sym_bitand, + ACTIONS(8707), 1, anon_sym_QMARK, - ACTIONS(9150), 1, + ACTIONS(9178), 1, anon_sym_RPAREN, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8679), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, + ACTIONS(8701), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [170724] = 26, + [173042] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4776), 1, - anon_sym_RBRACK, - ACTIONS(5827), 1, + ACTIONS(9180), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(6502), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(6504), 30, + anon_sym_LPAREN2, + anon_sym_AMP_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [173089] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8815), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8821), 1, + ACTIONS(8681), 1, anon_sym_PIPE, - ACTIONS(8825), 1, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8831), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8837), 1, - anon_sym_QMARK, - ACTIONS(8839), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8841), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8843), 1, + ACTIONS(8699), 1, anon_sym_bitand, - STATE(2525), 1, + ACTIONS(8707), 1, + anon_sym_QMARK, + ACTIONS(9183), 1, + anon_sym_RPAREN, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8811), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8813), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8817), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8819), 2, + ACTIONS(8679), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8823), 2, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8833), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8827), 3, + ACTIONS(8701), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8829), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [170815] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(8236), 1, - sym_identifier, - ACTIONS(8238), 1, - anon_sym_LPAREN2, - ACTIONS(8240), 1, - anon_sym_STAR, - ACTIONS(8242), 1, - anon_sym_AMP_AMP, - ACTIONS(8244), 1, - anon_sym_AMP, - ACTIONS(8250), 1, - sym_primitive_type, - STATE(1658), 1, - sym_alignas_qualifier, - STATE(3083), 1, - sym__type_declarator, - STATE(3394), 1, - sym_pointer_type_declarator, - STATE(8712), 1, - sym_ms_based_modifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1633), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8248), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3392), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [170888] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(2977), 1, - anon_sym_LPAREN2, - ACTIONS(2979), 1, - anon_sym_TILDE, - ACTIONS(5849), 1, - sym_identifier, - ACTIONS(5861), 1, - anon_sym_COLON_COLON, - ACTIONS(7089), 1, - anon_sym_LBRACK, - ACTIONS(7275), 1, - anon_sym_STAR, - ACTIONS(7277), 1, - anon_sym_AMP_AMP, - ACTIONS(7279), 1, - anon_sym_AMP, - STATE(5273), 1, - sym_ms_call_modifier, - STATE(5497), 1, - sym__declarator, - STATE(5860), 1, - sym__scope_resolution, - STATE(7469), 1, - sym_init_declarator, - STATE(8398), 1, - sym_ms_based_modifier, - STATE(8601), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(1808), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - STATE(5998), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [170969] = 26, + [173180] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4877), 1, - anon_sym_RBRACK, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8815), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8821), 1, + ACTIONS(8681), 1, anon_sym_PIPE, - ACTIONS(8825), 1, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8831), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8837), 1, - anon_sym_QMARK, - ACTIONS(8839), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8841), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8843), 1, + ACTIONS(8699), 1, anon_sym_bitand, - STATE(2525), 1, + ACTIONS(8707), 1, + anon_sym_QMARK, + ACTIONS(9185), 1, + anon_sym_RPAREN, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8811), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8813), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8817), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8819), 2, + ACTIONS(8679), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8823), 2, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8833), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8827), 3, + ACTIONS(8701), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8829), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [171060] = 3, + [173271] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5778), 5, + ACTIONS(5666), 5, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym_const, anon_sym___asm, - ACTIONS(5780), 32, + ACTIONS(5668), 32, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -439444,51 +445051,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [171105] = 17, + [173316] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(8236), 1, - sym_identifier, - ACTIONS(8238), 1, + ACTIONS(5776), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(5778), 32, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(8240), 1, anon_sym_STAR, - ACTIONS(8242), 1, anon_sym_AMP_AMP, - ACTIONS(8244), 1, - anon_sym_AMP, - ACTIONS(8250), 1, - sym_primitive_type, - STATE(1658), 1, - sym_alignas_qualifier, - STATE(3102), 1, - sym__type_declarator, - STATE(3394), 1, - sym_pointer_type_declarator, - STATE(8712), 1, - sym_ms_based_modifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1633), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8248), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3392), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - ACTIONS(67), 13, + anon_sym_SEMI, anon_sym___extension__, - anon_sym_const, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -439500,51 +445083,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [171178] = 17, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [173361] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(8280), 1, - sym_identifier, - ACTIONS(8282), 1, + ACTIONS(67), 1, + anon_sym_const, + ACTIONS(7848), 1, anon_sym_LPAREN2, - ACTIONS(8284), 1, + ACTIONS(7862), 1, + anon_sym_LBRACK, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8286), 1, + ACTIONS(8264), 1, anon_sym_AMP_AMP, - ACTIONS(8288), 1, + ACTIONS(8266), 1, anon_sym_AMP, - ACTIONS(8292), 1, - sym_primitive_type, - STATE(1658), 1, + STATE(1680), 1, sym_alignas_qualifier, - STATE(2169), 1, - sym__type_declarator, - STATE(2220), 1, - sym_pointer_type_declarator, - STATE(7984), 1, - sym_ms_based_modifier, - ACTIONS(69), 2, + STATE(3255), 1, + sym_parameter_list, + STATE(5953), 1, + sym__function_declarator_seq, + STATE(6686), 1, + sym__abstract_declarator, + ACTIONS(7304), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1633), 2, + STATE(1669), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(8290), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2218), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - ACTIONS(67), 13, + STATE(5952), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(5877), 6, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(7297), 12, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -439556,146 +445148,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [171251] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5827), 1, - anon_sym_LPAREN2, - ACTIONS(6429), 1, - anon_sym_LBRACK, - ACTIONS(6431), 1, - anon_sym_DOT, - ACTIONS(8423), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, - anon_sym_SLASH, - ACTIONS(8653), 1, - anon_sym_AMP, - ACTIONS(8659), 1, - anon_sym_GT_EQ, - ACTIONS(8663), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, - anon_sym_bitor, - ACTIONS(8683), 1, - anon_sym_QMARK, - ACTIONS(9152), 1, - anon_sym_SEMI, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8045), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8647), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8651), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8661), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8655), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8657), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [171342] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5827), 1, - anon_sym_LPAREN2, - ACTIONS(6429), 1, - anon_sym_LBRACK, - ACTIONS(6431), 1, - anon_sym_DOT, - ACTIONS(8423), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, - anon_sym_SLASH, - ACTIONS(8653), 1, - anon_sym_AMP, - ACTIONS(8659), 1, - anon_sym_GT_EQ, - ACTIONS(8663), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, - anon_sym_bitor, - ACTIONS(8683), 1, - anon_sym_QMARK, - ACTIONS(9154), 1, - anon_sym_SEMI, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8045), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8647), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8651), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8661), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8655), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8657), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [171433] = 3, + [173432] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5774), 5, + ACTIONS(5780), 5, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym_const, anon_sym___asm, - ACTIONS(5776), 32, + ACTIONS(5782), 32, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -439728,55 +445190,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [171478] = 21, + [173477] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1852), 1, + ACTIONS(1850), 1, anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2977), 1, + ACTIONS(2997), 1, anon_sym_LPAREN2, - ACTIONS(2979), 1, + ACTIONS(2999), 1, anon_sym_TILDE, - ACTIONS(5849), 1, - sym_identifier, ACTIONS(5861), 1, + sym_identifier, + ACTIONS(5873), 1, anon_sym_COLON_COLON, - ACTIONS(7089), 1, + ACTIONS(7103), 1, anon_sym_LBRACK, - ACTIONS(7275), 1, + ACTIONS(7105), 1, anon_sym_STAR, - ACTIONS(7277), 1, + ACTIONS(7107), 1, anon_sym_AMP_AMP, - ACTIONS(7279), 1, + ACTIONS(7109), 1, anon_sym_AMP, - STATE(5276), 1, + STATE(5309), 1, sym_ms_call_modifier, - STATE(5515), 1, - sym__declarator, - STATE(5860), 1, + STATE(5896), 1, sym__scope_resolution, - STATE(7531), 1, + STATE(6029), 1, + sym__declarator, + STATE(7390), 1, sym_init_declarator, - STATE(8398), 1, + STATE(8504), 1, sym_ms_based_modifier, - STATE(8601), 3, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - ACTIONS(1808), 6, + ACTIONS(1806), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - STATE(5998), 11, + STATE(6145), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -439788,513 +445250,405 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [171559] = 26, + [173558] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(67), 1, + anon_sym_const, + ACTIONS(7848), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(7862), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, - anon_sym_DOT, - ACTIONS(8423), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, - anon_sym_SLASH, - ACTIONS(8653), 1, - anon_sym_AMP, - ACTIONS(8659), 1, - anon_sym_GT_EQ, - ACTIONS(8663), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, - anon_sym_bitor, - ACTIONS(8683), 1, - anon_sym_QMARK, - ACTIONS(9156), 1, - anon_sym_SEMI, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8045), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8262), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8651), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8661), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8667), 2, + ACTIONS(8264), 1, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8655), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8657), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [171650] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5827), 1, - anon_sym_LPAREN2, - ACTIONS(6429), 1, - anon_sym_LBRACK, - ACTIONS(6431), 1, - anon_sym_DOT, - ACTIONS(8423), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, - anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8266), 1, anon_sym_AMP, - ACTIONS(8659), 1, - anon_sym_GT_EQ, - ACTIONS(8663), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, - anon_sym_bitor, - ACTIONS(8683), 1, - anon_sym_QMARK, - ACTIONS(9158), 1, - anon_sym_RPAREN, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8045), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8647), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8651), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8661), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8655), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8657), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [171741] = 26, + STATE(1680), 1, + sym_alignas_qualifier, + STATE(3255), 1, + sym_parameter_list, + STATE(5953), 1, + sym__function_declarator_seq, + STATE(6639), 1, + sym__abstract_declarator, + ACTIONS(7304), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1669), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5952), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8453), 6, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(7297), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [173629] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8815), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8821), 1, + ACTIONS(8681), 1, anon_sym_PIPE, - ACTIONS(8825), 1, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8831), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8837), 1, - anon_sym_QMARK, - ACTIONS(8839), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8841), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8843), 1, + ACTIONS(8699), 1, anon_sym_bitand, - ACTIONS(9160), 1, - anon_sym_RBRACK, - STATE(2525), 1, + ACTIONS(8707), 1, + anon_sym_QMARK, + ACTIONS(9187), 1, + anon_sym_RPAREN, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8811), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8813), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8817), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8819), 2, + ACTIONS(8679), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8823), 2, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8833), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8827), 3, + ACTIONS(8701), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8829), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [171832] = 26, + [173720] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, - anon_sym_LPAREN2, - ACTIONS(6429), 1, - anon_sym_LBRACK, - ACTIONS(6431), 1, - anon_sym_DOT, - ACTIONS(8423), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, - anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(5645), 5, anon_sym_AMP, - ACTIONS(8659), 1, - anon_sym_GT_EQ, - ACTIONS(8663), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, - anon_sym_bitor, - ACTIONS(8683), 1, - anon_sym_QMARK, - ACTIONS(9162), 1, - anon_sym_RPAREN, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8045), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8647), 2, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(5647), 32, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8651), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8661), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8667), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8655), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8657), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [171923] = 26, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [173765] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(4839), 1, - anon_sym_RBRACK, - ACTIONS(5827), 1, + ACTIONS(67), 1, + anon_sym_const, + ACTIONS(7848), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(7862), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, - anon_sym_DOT, - ACTIONS(8423), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8815), 1, - anon_sym_SLASH, - ACTIONS(8821), 1, - anon_sym_PIPE, - ACTIONS(8825), 1, - anon_sym_AMP, - ACTIONS(8831), 1, - anon_sym_GT_EQ, - ACTIONS(8837), 1, - anon_sym_QMARK, - ACTIONS(8839), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8841), 1, - anon_sym_bitor, - ACTIONS(8843), 1, - anon_sym_bitand, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8045), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8811), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8813), 2, + ACTIONS(8262), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8817), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8819), 2, + ACTIONS(8264), 1, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8823), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8833), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8827), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8829), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [172014] = 3, + ACTIONS(8266), 1, + anon_sym_AMP, + STATE(1680), 1, + sym_alignas_qualifier, + STATE(3255), 1, + sym_parameter_list, + STATE(5953), 1, + sym__function_declarator_seq, + STATE(6640), 1, + sym__abstract_declarator, + ACTIONS(7304), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1669), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5952), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6781), 6, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(7297), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [173836] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6487), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(5681), 5, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6489), 26, - anon_sym_DOT_DOT_DOT, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(5683), 32, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [172059] = 26, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [173881] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8683), 1, + ACTIONS(8699), 1, + anon_sym_bitand, + ACTIONS(8707), 1, anon_sym_QMARK, - ACTIONS(9164), 1, + ACTIONS(9189), 1, anon_sym_SEMI, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8679), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, + ACTIONS(8701), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [172150] = 26, + [173972] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4782), 1, - anon_sym_RBRACK, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8815), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8821), 1, + ACTIONS(8681), 1, anon_sym_PIPE, - ACTIONS(8825), 1, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8831), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8837), 1, - anon_sym_QMARK, - ACTIONS(8839), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8841), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8843), 1, + ACTIONS(8699), 1, anon_sym_bitand, - STATE(2525), 1, + ACTIONS(8707), 1, + anon_sym_QMARK, + ACTIONS(9191), 1, + anon_sym_SEMI, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8811), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8813), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8817), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8819), 2, + ACTIONS(8679), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8823), 2, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8833), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8827), 3, + ACTIONS(8701), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8829), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [172241] = 3, + [174063] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5651), 5, + ACTIONS(5685), 5, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym_const, anon_sym___asm, - ACTIONS(5653), 32, + ACTIONS(5687), 32, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -440327,318 +445681,274 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [172286] = 26, + [174108] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(4887), 1, - anon_sym_RBRACK, - ACTIONS(5827), 1, - anon_sym_LPAREN2, - ACTIONS(6429), 1, - anon_sym_LBRACK, - ACTIONS(6431), 1, - anon_sym_DOT, - ACTIONS(8423), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8815), 1, - anon_sym_SLASH, - ACTIONS(8821), 1, - anon_sym_PIPE, - ACTIONS(8825), 1, - anon_sym_AMP, - ACTIONS(8831), 1, - anon_sym_GT_EQ, - ACTIONS(8837), 1, - anon_sym_QMARK, - ACTIONS(8839), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8841), 1, - anon_sym_bitor, - ACTIONS(8843), 1, - anon_sym_bitand, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8045), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8811), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8813), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8817), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8819), 2, + ACTIONS(7048), 1, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8823), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8833), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8827), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8829), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [172377] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5750), 5, + ACTIONS(7050), 1, anon_sym_AMP, + ACTIONS(7071), 1, + anon_sym___asm, + ACTIONS(7073), 1, + anon_sym_DASH_GT, + ACTIONS(7075), 1, + anon_sym_noexcept, + ACTIONS(7077), 1, + anon_sym_throw, + ACTIONS(9141), 1, + anon_sym___attribute__, + ACTIONS(9144), 1, anon_sym___attribute, + ACTIONS(9147), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9150), 1, anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(5752), 32, + ACTIONS(9196), 1, + anon_sym_requires, + STATE(4978), 1, + sym_ref_qualifier, + STATE(5655), 1, + sym_trailing_return_type, + STATE(5738), 1, + sym__function_attributes_end, + STATE(6850), 1, + sym_gnu_asm_expression, + ACTIONS(7069), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9193), 2, + anon_sym_final, + anon_sym_override, + STATE(5540), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5730), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5927), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5335), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9139), 7, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, anon_sym_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_try, - anon_sym_requires, - [172422] = 26, + [174195] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(4775), 1, + anon_sym_RBRACK, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8836), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8842), 1, + anon_sym_PIPE, + ACTIONS(8846), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8852), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8858), 1, + anon_sym_QMARK, + ACTIONS(8860), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8862), 1, anon_sym_bitor, - ACTIONS(8683), 1, - anon_sym_QMARK, - ACTIONS(9166), 1, - anon_sym_SEMI, - STATE(2525), 1, + ACTIONS(8864), 1, + anon_sym_bitand, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8832), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8834), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8838), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8840), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8844), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8854), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8848), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8850), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [172513] = 26, + [174286] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8683), 1, + ACTIONS(8699), 1, + anon_sym_bitand, + ACTIONS(8707), 1, anon_sym_QMARK, - ACTIONS(9168), 1, + ACTIONS(9199), 1, anon_sym_RPAREN, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8679), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, + ACTIONS(8701), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [172604] = 26, + [174377] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4802), 1, - anon_sym_RBRACK, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8815), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8821), 1, + ACTIONS(8681), 1, anon_sym_PIPE, - ACTIONS(8825), 1, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8831), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8837), 1, - anon_sym_QMARK, - ACTIONS(8839), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8841), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8843), 1, + ACTIONS(8699), 1, anon_sym_bitand, - STATE(2525), 1, + ACTIONS(8707), 1, + anon_sym_QMARK, + ACTIONS(9201), 1, + anon_sym_SEMI, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8811), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8813), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8817), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8819), 2, + ACTIONS(8679), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8823), 2, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8833), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8827), 3, + ACTIONS(8701), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8829), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [172695] = 3, + [174468] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5754), 5, + ACTIONS(5660), 5, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym_const, anon_sym___asm, - ACTIONS(5756), 32, + ACTIONS(5662), 32, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -440671,92 +445981,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [172740] = 26, + [174513] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(8268), 1, + sym_identifier, + ACTIONS(8270), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, - anon_sym_LBRACK, - ACTIONS(7564), 1, - anon_sym_DOT, - ACTIONS(8423), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8925), 1, - anon_sym_SLASH, - ACTIONS(8931), 1, - anon_sym_PIPE, - ACTIONS(8935), 1, - anon_sym_AMP, - ACTIONS(8941), 1, - anon_sym_GT_EQ, - ACTIONS(8947), 1, - anon_sym_QMARK, - ACTIONS(8949), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8951), 1, - anon_sym_bitor, - ACTIONS(8953), 1, - anon_sym_bitand, - ACTIONS(9170), 1, - anon_sym_COLON, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(7566), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8045), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8921), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8923), 2, + ACTIONS(8282), 1, + sym_primitive_type, + ACTIONS(8312), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8927), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8929), 2, + ACTIONS(8314), 1, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8933), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8943), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8937), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8939), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [172831] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5758), 5, + ACTIONS(8316), 1, anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, + STATE(1680), 1, + sym_alignas_qualifier, + STATE(1971), 1, + sym_pointer_type_declarator, + STATE(6872), 1, + sym__type_declarator, + STATE(8660), 1, + sym_ms_based_modifier, + ACTIONS(69), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1669), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8280), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1985), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(67), 13, + anon_sym___extension__, anon_sym_const, - anon_sym___asm, - ACTIONS(5760), 32, - anon_sym_COMMA, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [174586] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(8268), 1, + sym_identifier, + ACTIONS(8270), 1, anon_sym_LPAREN2, + ACTIONS(8272), 1, anon_sym_STAR, + ACTIONS(8274), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(8276), 1, + anon_sym_AMP, + ACTIONS(8282), 1, + sym_primitive_type, + STATE(1680), 1, + sym_alignas_qualifier, + STATE(1971), 1, + sym_pointer_type_declarator, + STATE(2225), 1, + sym__type_declarator, + STATE(8550), 1, + sym_ms_based_modifier, + ACTIONS(69), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1669), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8280), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1985), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(67), 13, anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -440768,355 +446093,238 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [172876] = 26, + [174659] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8683), 1, + ACTIONS(8699), 1, + anon_sym_bitand, + ACTIONS(8707), 1, anon_sym_QMARK, - ACTIONS(9172), 1, + ACTIONS(9203), 1, anon_sym_SEMI, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8679), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, + ACTIONS(8701), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [172967] = 26, + [174750] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(7614), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8815), 1, + ACTIONS(8959), 1, anon_sym_SLASH, - ACTIONS(8821), 1, + ACTIONS(8965), 1, anon_sym_PIPE, - ACTIONS(8825), 1, + ACTIONS(8969), 1, anon_sym_AMP, - ACTIONS(8831), 1, + ACTIONS(8975), 1, anon_sym_GT_EQ, - ACTIONS(8837), 1, + ACTIONS(8981), 1, anon_sym_QMARK, - ACTIONS(8839), 1, + ACTIONS(8983), 1, anon_sym_LT_EQ_GT, - ACTIONS(8841), 1, + ACTIONS(8985), 1, anon_sym_bitor, - ACTIONS(8843), 1, + ACTIONS(8987), 1, anon_sym_bitand, - ACTIONS(9174), 1, - anon_sym_RBRACK, - STATE(2525), 1, + ACTIONS(9205), 1, + anon_sym_COLON, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(7616), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8811), 2, + ACTIONS(8955), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8813), 2, + ACTIONS(8957), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8817), 2, + ACTIONS(8961), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8819), 2, + ACTIONS(8963), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8823), 2, + ACTIONS(8967), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8833), 2, + ACTIONS(8977), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8827), 3, + ACTIONS(8971), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8829), 3, + ACTIONS(8973), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [173058] = 26, + [174841] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8683), 1, + ACTIONS(8699), 1, + anon_sym_bitand, + ACTIONS(8707), 1, anon_sym_QMARK, - ACTIONS(9176), 1, + ACTIONS(9207), 1, anon_sym_RPAREN, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8661), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8667), 2, + ACTIONS(8679), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8681), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8655), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8657), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [173149] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5827), 1, - anon_sym_LPAREN2, - ACTIONS(6429), 1, - anon_sym_LBRACK, - ACTIONS(6431), 1, - anon_sym_DOT, - ACTIONS(8423), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, - anon_sym_SLASH, - ACTIONS(8653), 1, - anon_sym_AMP, - ACTIONS(8659), 1, - anon_sym_GT_EQ, - ACTIONS(8663), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, - anon_sym_bitor, - ACTIONS(8683), 1, - anon_sym_QMARK, - ACTIONS(9178), 1, - anon_sym_SEMI, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8045), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8647), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, + ACTIONS(8701), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [173240] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5450), 5, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(5452), 32, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [173285] = 17, + [174932] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8266), 1, - sym_identifier, ACTIONS(8268), 1, - anon_sym_LPAREN2, + sym_identifier, ACTIONS(8270), 1, + anon_sym_LPAREN2, + ACTIONS(8282), 1, + sym_primitive_type, + ACTIONS(8312), 1, anon_sym_STAR, - ACTIONS(8272), 1, + ACTIONS(8314), 1, anon_sym_AMP_AMP, - ACTIONS(8274), 1, + ACTIONS(8316), 1, anon_sym_AMP, - ACTIONS(8278), 1, - sym_primitive_type, - STATE(1658), 1, + STATE(1680), 1, sym_alignas_qualifier, - STATE(2889), 1, - sym__type_declarator, - STATE(3288), 1, + STATE(1971), 1, sym_pointer_type_declarator, - STATE(8665), 1, + STATE(6842), 1, + sym__type_declarator, + STATE(8660), 1, sym_ms_based_modifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1633), 2, + STATE(1669), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(8276), 4, + ACTIONS(8280), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3285), 5, + STATE(1985), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -441136,144 +446344,202 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [173358] = 26, + [175005] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(4848), 1, + anon_sym_RBRACK, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8836), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8842), 1, + anon_sym_PIPE, + ACTIONS(8846), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8852), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8858), 1, + anon_sym_QMARK, + ACTIONS(8860), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, + ACTIONS(8862), 1, + anon_sym_bitor, + ACTIONS(8864), 1, anon_sym_bitand, - ACTIONS(8669), 1, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + ACTIONS(6420), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8048), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8832), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8834), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8838), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8840), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8844), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8854), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8848), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8850), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [175096] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5845), 1, + anon_sym_LPAREN2, + ACTIONS(6414), 1, + anon_sym_LBRACK, + ACTIONS(6418), 1, + anon_sym_DOT, + ACTIONS(8449), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8677), 1, + anon_sym_SLASH, + ACTIONS(8681), 1, anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8685), 1, + anon_sym_AMP, + ACTIONS(8691), 1, + anon_sym_GT_EQ, + ACTIONS(8695), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8683), 1, + ACTIONS(8699), 1, + anon_sym_bitand, + ACTIONS(8707), 1, anon_sym_QMARK, - ACTIONS(9180), 1, + ACTIONS(9209), 1, anon_sym_SEMI, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8679), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, + ACTIONS(8701), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [173449] = 24, + [175187] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(7042), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(8268), 1, + sym_identifier, + ACTIONS(8270), 1, + anon_sym_LPAREN2, + ACTIONS(8282), 1, + sym_primitive_type, + ACTIONS(8312), 1, + anon_sym_STAR, + ACTIONS(8314), 1, anon_sym_AMP_AMP, - ACTIONS(7044), 1, + ACTIONS(8316), 1, anon_sym_AMP, - ACTIONS(7065), 1, - anon_sym___asm, - ACTIONS(7067), 1, - anon_sym_DASH_GT, - ACTIONS(7072), 1, - anon_sym_noexcept, - ACTIONS(7074), 1, - anon_sym_throw, - ACTIONS(9184), 1, - anon_sym___attribute__, - ACTIONS(9187), 1, - anon_sym___attribute, - ACTIONS(9190), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9193), 1, - anon_sym_LBRACK, - ACTIONS(9198), 1, - anon_sym_requires, - STATE(4914), 1, - sym_ref_qualifier, - STATE(5514), 1, - sym_trailing_return_type, - STATE(5670), 1, - sym__function_attributes_end, - STATE(6745), 1, - sym_gnu_asm_expression, - ACTIONS(7063), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9195), 2, - anon_sym_final, - anon_sym_override, - STATE(5428), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5606), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5733), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5877), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5278), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9182), 7, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [173536] = 3, + STATE(1680), 1, + sym_alignas_qualifier, + STATE(1971), 1, + sym_pointer_type_declarator, + STATE(6825), 1, + sym__type_declarator, + STATE(8660), 1, + sym_ms_based_modifier, + ACTIONS(69), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1669), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8280), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1985), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [175260] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5782), 5, + ACTIONS(5760), 5, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym_const, anon_sym___asm, - ACTIONS(5784), 32, + ACTIONS(5762), 32, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -441306,50 +446572,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [173581] = 16, + [175305] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(67), 1, + ACTIONS(5784), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, anon_sym_const, - ACTIONS(7842), 1, + anon_sym___asm, + ACTIONS(5786), 32, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(7856), 1, - anon_sym_LBRACK, - ACTIONS(8318), 1, anon_sym_STAR, - ACTIONS(8320), 1, anon_sym_AMP_AMP, - ACTIONS(8322), 1, - anon_sym_AMP, - STATE(1658), 1, - sym_alignas_qualifier, - STATE(3273), 1, - sym_parameter_list, - STATE(5792), 1, - sym__function_declarator_seq, - STATE(6531), 1, - sym__abstract_declarator, - ACTIONS(7152), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1633), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5804), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8441), 6, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(7145), 12, - anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -441361,276 +446604,281 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [173652] = 26, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [175350] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(2997), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(2999), 1, + anon_sym_TILDE, + ACTIONS(5861), 1, + sym_identifier, + ACTIONS(5873), 1, + anon_sym_COLON_COLON, + ACTIONS(7103), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, - anon_sym_DOT, - ACTIONS(8423), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, - anon_sym_SLASH, - ACTIONS(8653), 1, - anon_sym_AMP, - ACTIONS(8659), 1, - anon_sym_GT_EQ, - ACTIONS(8663), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, - anon_sym_bitor, - ACTIONS(8683), 1, - anon_sym_QMARK, - ACTIONS(9201), 1, - anon_sym_SEMI, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8045), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(7105), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8651), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8661), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8667), 2, + ACTIONS(7107), 1, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8655), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8657), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [173743] = 26, + ACTIONS(7109), 1, + anon_sym_AMP, + STATE(5344), 1, + sym_ms_call_modifier, + STATE(5896), 1, + sym__scope_resolution, + STATE(5976), 1, + sym__declarator, + STATE(7477), 1, + sym_init_declarator, + STATE(8504), 1, + sym_ms_based_modifier, + STATE(8569), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(1806), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(6145), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [175431] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8683), 1, + ACTIONS(8699), 1, + anon_sym_bitand, + ACTIONS(8707), 1, anon_sym_QMARK, - ACTIONS(9203), 1, + ACTIONS(9211), 1, anon_sym_SEMI, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8679), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, + ACTIONS(8701), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [173834] = 26, + [175522] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8683), 1, + ACTIONS(8699), 1, + anon_sym_bitand, + ACTIONS(8707), 1, anon_sym_QMARK, - ACTIONS(9205), 1, + ACTIONS(9213), 1, anon_sym_SEMI, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8679), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, + ACTIONS(8701), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [173925] = 26, + [175613] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4778), 1, - anon_sym_RBRACK, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8815), 1, + ACTIONS(8836), 1, anon_sym_SLASH, - ACTIONS(8821), 1, + ACTIONS(8842), 1, anon_sym_PIPE, - ACTIONS(8825), 1, + ACTIONS(8846), 1, anon_sym_AMP, - ACTIONS(8831), 1, + ACTIONS(8852), 1, anon_sym_GT_EQ, - ACTIONS(8837), 1, + ACTIONS(8858), 1, anon_sym_QMARK, - ACTIONS(8839), 1, + ACTIONS(8860), 1, anon_sym_LT_EQ_GT, - ACTIONS(8841), 1, + ACTIONS(8862), 1, anon_sym_bitor, - ACTIONS(8843), 1, + ACTIONS(8864), 1, anon_sym_bitand, - STATE(2525), 1, + ACTIONS(9215), 1, + anon_sym_RBRACK, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8811), 2, + ACTIONS(8832), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8813), 2, + ACTIONS(8834), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8817), 2, + ACTIONS(8838), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8819), 2, + ACTIONS(8840), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8823), 2, + ACTIONS(8844), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8833), 2, + ACTIONS(8854), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8827), 3, + ACTIONS(8848), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8829), 3, + ACTIONS(8850), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [174016] = 3, + [175704] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 5, + ACTIONS(5701), 5, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym_const, anon_sym___asm, - ACTIONS(5657), 32, + ACTIONS(5703), 32, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -441663,191 +446911,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [174061] = 26, + [175749] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4809), 1, - anon_sym_RBRACK, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8815), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8821), 1, + ACTIONS(8681), 1, anon_sym_PIPE, - ACTIONS(8825), 1, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8831), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8837), 1, - anon_sym_QMARK, - ACTIONS(8839), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8841), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8843), 1, + ACTIONS(8699), 1, anon_sym_bitand, - STATE(2525), 1, + ACTIONS(8707), 1, + anon_sym_QMARK, + ACTIONS(9217), 1, + anon_sym_SEMI, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8811), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8813), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8817), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8819), 2, + ACTIONS(8679), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8823), 2, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8833), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8827), 3, + ACTIONS(8701), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8829), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [174152] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(7842), 1, - anon_sym_LPAREN2, - ACTIONS(7856), 1, - anon_sym_LBRACK, - ACTIONS(8318), 1, - anon_sym_STAR, - ACTIONS(8320), 1, - anon_sym_AMP_AMP, - ACTIONS(8322), 1, - anon_sym_AMP, - STATE(1658), 1, - sym_alignas_qualifier, - STATE(3273), 1, - sym_parameter_list, - STATE(5792), 1, - sym__function_declarator_seq, - STATE(6533), 1, - sym__abstract_declarator, - ACTIONS(7152), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1633), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5804), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5865), 6, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(7145), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [174223] = 16, + [175840] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(7842), 1, - anon_sym_LPAREN2, - ACTIONS(7856), 1, - anon_sym_LBRACK, - ACTIONS(8318), 1, - anon_sym_STAR, - ACTIONS(8320), 1, - anon_sym_AMP_AMP, - ACTIONS(8322), 1, - anon_sym_AMP, - STATE(1658), 1, - sym_alignas_qualifier, - STATE(3273), 1, - sym_parameter_list, - STATE(5792), 1, - sym__function_declarator_seq, - STATE(6534), 1, - sym__abstract_declarator, - ACTIONS(7152), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1633), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5804), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8445), 6, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(7145), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [174294] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5659), 5, + ACTIONS(5689), 5, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym_const, anon_sym___asm, - ACTIONS(5661), 32, + ACTIONS(5691), 32, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -441880,115 +447018,174 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [174339] = 26, + [175885] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8683), 1, + ACTIONS(8699), 1, + anon_sym_bitand, + ACTIONS(8707), 1, anon_sym_QMARK, - ACTIONS(9207), 1, + ACTIONS(9219), 1, anon_sym_SEMI, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8679), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, + ACTIONS(8701), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [174430] = 16, + [175976] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(67), 1, + ACTIONS(3339), 1, anon_sym_const, - ACTIONS(7842), 1, + ACTIONS(5020), 1, anon_sym_LPAREN2, - ACTIONS(7856), 1, + ACTIONS(6805), 1, + sym_auto, + ACTIONS(6807), 1, + anon_sym_decltype, + ACTIONS(8147), 1, anon_sym_LBRACK, - ACTIONS(8318), 1, + ACTIONS(8515), 1, anon_sym_STAR, - ACTIONS(8320), 1, + ACTIONS(8517), 1, anon_sym_AMP_AMP, - ACTIONS(8322), 1, + ACTIONS(8519), 1, anon_sym_AMP, - STATE(1658), 1, - sym_alignas_qualifier, - STATE(3273), 1, + STATE(2741), 1, + sym_decltype_auto, + STATE(3195), 1, sym_parameter_list, - STATE(5792), 1, + STATE(4325), 1, + sym_alignas_qualifier, + STATE(6109), 1, sym__function_declarator_seq, - STATE(6535), 1, + STATE(6837), 1, sym__abstract_declarator, - ACTIONS(7152), 2, + ACTIONS(8149), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1633), 2, + STATE(4968), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(5804), 5, + ACTIONS(8213), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + STATE(6099), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(6748), 6, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(7145), 12, + ACTIONS(8141), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [176053] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(8298), 1, + sym_identifier, + ACTIONS(8300), 1, + anon_sym_LPAREN2, + ACTIONS(8302), 1, + anon_sym_STAR, + ACTIONS(8304), 1, + anon_sym_AMP_AMP, + ACTIONS(8306), 1, + anon_sym_AMP, + ACTIONS(8310), 1, + sym_primitive_type, + STATE(1680), 1, + sym_alignas_qualifier, + STATE(2968), 1, + sym__type_declarator, + STATE(3374), 1, + sym_pointer_type_declarator, + STATE(8189), 1, + sym_ms_based_modifier, + ACTIONS(69), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1669), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8308), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3318), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(67), 13, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -442000,209 +447197,253 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [174501] = 26, + [176126] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8683), 1, + ACTIONS(8699), 1, + anon_sym_bitand, + ACTIONS(8707), 1, anon_sym_QMARK, - ACTIONS(9209), 1, + ACTIONS(9221), 1, anon_sym_SEMI, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8679), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, + ACTIONS(8701), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [174592] = 26, + [176217] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(4861), 1, + anon_sym_RBRACK, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8836), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8842), 1, + anon_sym_PIPE, + ACTIONS(8846), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8852), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8858), 1, + anon_sym_QMARK, + ACTIONS(8860), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8862), 1, anon_sym_bitor, - ACTIONS(8683), 1, - anon_sym_QMARK, - ACTIONS(9211), 1, - anon_sym_SEMI, - STATE(2525), 1, + ACTIONS(8864), 1, + anon_sym_bitand, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8832), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8834), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8838), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8840), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8844), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8854), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8848), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8850), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [174683] = 24, + [176308] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7042), 1, - anon_sym_AMP_AMP, - ACTIONS(7044), 1, + ACTIONS(5800), 5, anon_sym_AMP, - ACTIONS(7065), 1, - anon_sym___asm, - ACTIONS(7067), 1, - anon_sym_DASH_GT, - ACTIONS(7072), 1, - anon_sym_noexcept, - ACTIONS(7074), 1, - anon_sym_throw, - ACTIONS(7079), 1, - anon_sym_requires, - ACTIONS(9184), 1, - anon_sym___attribute__, - ACTIONS(9187), 1, anon_sym___attribute, - ACTIONS(9190), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9193), 1, anon_sym_LBRACK, - STATE(4939), 1, - sym_ref_qualifier, - STATE(5534), 1, - sym_trailing_return_type, - STATE(5655), 1, - sym__function_attributes_end, - STATE(6745), 1, - sym_gnu_asm_expression, - ACTIONS(6020), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7063), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(5428), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5606), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5733), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5877), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5247), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9182), 7, + anon_sym_const, + anon_sym___asm, + ACTIONS(5802), 32, anon_sym_COMMA, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_try, - [174770] = 3, + anon_sym_requires, + [176353] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4881), 1, + anon_sym_RBRACK, + ACTIONS(5845), 1, + anon_sym_LPAREN2, + ACTIONS(6414), 1, + anon_sym_LBRACK, + ACTIONS(6418), 1, + anon_sym_DOT, + ACTIONS(8449), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8836), 1, + anon_sym_SLASH, + ACTIONS(8842), 1, + anon_sym_PIPE, + ACTIONS(8846), 1, + anon_sym_AMP, + ACTIONS(8852), 1, + anon_sym_GT_EQ, + ACTIONS(8858), 1, + anon_sym_QMARK, + ACTIONS(8860), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8862), 1, + anon_sym_bitor, + ACTIONS(8864), 1, + anon_sym_bitand, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + ACTIONS(6420), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8048), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8832), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8834), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8838), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8840), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8844), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8854), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8848), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8850), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [176444] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5673), 5, + ACTIONS(5515), 5, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym_const, anon_sym___asm, - ACTIONS(5675), 32, + ACTIONS(5517), 32, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -442235,173 +447476,293 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [174815] = 26, + [176489] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(2997), 1, + anon_sym_LPAREN2, + ACTIONS(2999), 1, + anon_sym_TILDE, + ACTIONS(5861), 1, + sym_identifier, + ACTIONS(5873), 1, + anon_sym_COLON_COLON, + ACTIONS(7103), 1, + anon_sym_LBRACK, + ACTIONS(7105), 1, + anon_sym_STAR, + ACTIONS(7107), 1, + anon_sym_AMP_AMP, + ACTIONS(7109), 1, + anon_sym_AMP, + STATE(5304), 1, + sym_ms_call_modifier, + STATE(5657), 1, + sym__declarator, + STATE(5896), 1, + sym__scope_resolution, + STATE(7390), 1, + sym_init_declarator, + STATE(8504), 1, + sym_ms_based_modifier, + STATE(8569), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(1806), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(6145), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [176570] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4796), 1, + ACTIONS(4859), 1, anon_sym_RBRACK, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8815), 1, + ACTIONS(8836), 1, anon_sym_SLASH, - ACTIONS(8821), 1, + ACTIONS(8842), 1, anon_sym_PIPE, - ACTIONS(8825), 1, + ACTIONS(8846), 1, anon_sym_AMP, - ACTIONS(8831), 1, + ACTIONS(8852), 1, anon_sym_GT_EQ, - ACTIONS(8837), 1, + ACTIONS(8858), 1, anon_sym_QMARK, - ACTIONS(8839), 1, + ACTIONS(8860), 1, anon_sym_LT_EQ_GT, - ACTIONS(8841), 1, + ACTIONS(8862), 1, anon_sym_bitor, - ACTIONS(8843), 1, + ACTIONS(8864), 1, anon_sym_bitand, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8811), 2, + ACTIONS(8832), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8813), 2, + ACTIONS(8834), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8817), 2, + ACTIONS(8838), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8819), 2, + ACTIONS(8840), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8823), 2, + ACTIONS(8844), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8833), 2, + ACTIONS(8854), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8827), 3, + ACTIONS(8848), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8829), 3, + ACTIONS(8850), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [174906] = 26, + [176661] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(2997), 1, + anon_sym_LPAREN2, + ACTIONS(2999), 1, + anon_sym_TILDE, + ACTIONS(5861), 1, + sym_identifier, + ACTIONS(5873), 1, + anon_sym_COLON_COLON, + ACTIONS(7103), 1, + anon_sym_LBRACK, + ACTIONS(7105), 1, + anon_sym_STAR, + ACTIONS(7107), 1, + anon_sym_AMP_AMP, + ACTIONS(7109), 1, + anon_sym_AMP, + STATE(5301), 1, + sym_ms_call_modifier, + STATE(5896), 1, + sym__scope_resolution, + STATE(6039), 1, + sym__declarator, + STATE(7250), 1, + sym_init_declarator, + STATE(8504), 1, + sym_ms_based_modifier, + STATE(8569), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(1806), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(6145), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [176742] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(4833), 1, + anon_sym_RBRACK, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8815), 1, + ACTIONS(8836), 1, anon_sym_SLASH, - ACTIONS(8821), 1, + ACTIONS(8842), 1, anon_sym_PIPE, - ACTIONS(8825), 1, + ACTIONS(8846), 1, anon_sym_AMP, - ACTIONS(8831), 1, + ACTIONS(8852), 1, anon_sym_GT_EQ, - ACTIONS(8837), 1, + ACTIONS(8858), 1, anon_sym_QMARK, - ACTIONS(8839), 1, + ACTIONS(8860), 1, anon_sym_LT_EQ_GT, - ACTIONS(8841), 1, + ACTIONS(8862), 1, anon_sym_bitor, - ACTIONS(8843), 1, + ACTIONS(8864), 1, anon_sym_bitand, - ACTIONS(9213), 1, - anon_sym_RBRACK, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8811), 2, + ACTIONS(8832), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8813), 2, + ACTIONS(8834), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8817), 2, + ACTIONS(8838), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8819), 2, + ACTIONS(8840), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8823), 2, + ACTIONS(8844), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8833), 2, + ACTIONS(8854), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8827), 3, + ACTIONS(8848), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8829), 3, + ACTIONS(8850), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [174997] = 17, + [176833] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8280), 1, + ACTIONS(8268), 1, sym_identifier, - ACTIONS(8282), 1, + ACTIONS(8270), 1, anon_sym_LPAREN2, - ACTIONS(8284), 1, + ACTIONS(8282), 1, + sym_primitive_type, + ACTIONS(8338), 1, anon_sym_STAR, - ACTIONS(8286), 1, + ACTIONS(8340), 1, anon_sym_AMP_AMP, - ACTIONS(8288), 1, + ACTIONS(8342), 1, anon_sym_AMP, - ACTIONS(8292), 1, - sym_primitive_type, - STATE(1658), 1, + STATE(1680), 1, sym_alignas_qualifier, - STATE(2203), 1, - sym__type_declarator, - STATE(2220), 1, + STATE(1971), 1, sym_pointer_type_declarator, - STATE(7984), 1, + STATE(6074), 1, + sym__type_declarator, + STATE(8477), 1, sym_ms_based_modifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1633), 2, + STATE(1669), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(8290), 4, + ACTIONS(8280), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2218), 5, + STATE(1985), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -442421,16 +447782,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [175070] = 3, + [176906] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5845), 1, + anon_sym_LPAREN2, + ACTIONS(6414), 1, + anon_sym_LBRACK, + ACTIONS(6418), 1, + anon_sym_DOT, + ACTIONS(8449), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8677), 1, + anon_sym_SLASH, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, + anon_sym_AMP, + ACTIONS(8691), 1, + anon_sym_GT_EQ, + ACTIONS(8695), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8697), 1, + anon_sym_bitor, + ACTIONS(8699), 1, + anon_sym_bitand, + ACTIONS(8707), 1, + anon_sym_QMARK, + ACTIONS(9223), 1, + anon_sym_RPAREN, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + ACTIONS(6420), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8048), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8673), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8675), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8679), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8683), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8693), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8701), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8687), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8689), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [176997] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5786), 5, + ACTIONS(5720), 5, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym_const, anon_sym___asm, - ACTIONS(5788), 32, + ACTIONS(5722), 32, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -442463,16 +447889,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [175115] = 3, + [177042] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5677), 5, + ACTIONS(5697), 5, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym_const, anon_sym___asm, - ACTIONS(5679), 32, + ACTIONS(5699), 32, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -442505,16 +447931,182 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [175160] = 3, + [177087] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5685), 5, + ACTIONS(4187), 1, + anon_sym_COLON_COLON, + ACTIONS(8725), 1, + anon_sym_LT, + STATE(1623), 1, + sym_template_argument_list, + ACTIONS(4192), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACE, + ACTIONS(5834), 30, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + [177138] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(8268), 1, + sym_identifier, + ACTIONS(8270), 1, + anon_sym_LPAREN2, + ACTIONS(8272), 1, + anon_sym_STAR, + ACTIONS(8274), 1, + anon_sym_AMP_AMP, + ACTIONS(8276), 1, + anon_sym_AMP, + ACTIONS(8282), 1, + sym_primitive_type, + STATE(1680), 1, + sym_alignas_qualifier, + STATE(1971), 1, + sym_pointer_type_declarator, + STATE(2218), 1, + sym__type_declarator, + STATE(8550), 1, + sym_ms_based_modifier, + ACTIONS(69), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1669), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8280), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1985), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [177211] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5845), 1, + anon_sym_LPAREN2, + ACTIONS(6414), 1, + anon_sym_LBRACK, + ACTIONS(6418), 1, + anon_sym_DOT, + ACTIONS(8449), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8677), 1, + anon_sym_SLASH, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, + anon_sym_AMP, + ACTIONS(8691), 1, + anon_sym_GT_EQ, + ACTIONS(8695), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8697), 1, + anon_sym_bitor, + ACTIONS(8699), 1, + anon_sym_bitand, + ACTIONS(8707), 1, + anon_sym_QMARK, + ACTIONS(9225), 1, + anon_sym_RPAREN, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + ACTIONS(6420), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8048), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8673), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8675), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8679), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8683), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8693), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8701), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8687), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8689), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [177302] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5804), 5, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym_const, anon_sym___asm, - ACTIONS(5687), 32, + ACTIONS(5806), 32, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -442547,16 +448139,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [175205] = 3, + [177347] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5845), 1, + anon_sym_LPAREN2, + ACTIONS(6414), 1, + anon_sym_LBRACK, + ACTIONS(6418), 1, + anon_sym_DOT, + ACTIONS(8449), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8677), 1, + anon_sym_SLASH, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, + anon_sym_AMP, + ACTIONS(8691), 1, + anon_sym_GT_EQ, + ACTIONS(8695), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8697), 1, + anon_sym_bitor, + ACTIONS(8699), 1, + anon_sym_bitand, + ACTIONS(8707), 1, + anon_sym_QMARK, + ACTIONS(9227), 1, + anon_sym_RPAREN, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + ACTIONS(6420), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8048), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8673), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8675), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8679), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8683), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8693), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8701), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8687), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8689), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [177438] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5692), 5, + ACTIONS(5808), 5, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym_const, anon_sym___asm, - ACTIONS(5694), 32, + ACTIONS(5810), 32, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -442589,146 +448246,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [175250] = 26, + [177483] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4883), 1, - anon_sym_RBRACK, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(7614), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8815), 1, + ACTIONS(8959), 1, anon_sym_SLASH, - ACTIONS(8821), 1, + ACTIONS(8965), 1, anon_sym_PIPE, - ACTIONS(8825), 1, + ACTIONS(8969), 1, anon_sym_AMP, - ACTIONS(8831), 1, + ACTIONS(8975), 1, anon_sym_GT_EQ, - ACTIONS(8837), 1, + ACTIONS(8981), 1, anon_sym_QMARK, - ACTIONS(8839), 1, + ACTIONS(8983), 1, anon_sym_LT_EQ_GT, - ACTIONS(8841), 1, + ACTIONS(8985), 1, anon_sym_bitor, - ACTIONS(8843), 1, + ACTIONS(8987), 1, anon_sym_bitand, - STATE(2525), 1, + ACTIONS(9229), 1, + anon_sym_COLON, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(7616), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8811), 2, + ACTIONS(8955), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8813), 2, + ACTIONS(8957), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8817), 2, + ACTIONS(8961), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8819), 2, + ACTIONS(8963), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8823), 2, + ACTIONS(8967), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8833), 2, + ACTIONS(8977), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8827), 3, + ACTIONS(8971), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8829), 3, + ACTIONS(8973), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [175341] = 26, + [177574] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8683), 1, + ACTIONS(8699), 1, + anon_sym_bitand, + ACTIONS(8707), 1, anon_sym_QMARK, - ACTIONS(9215), 1, - anon_sym_RPAREN, - STATE(2525), 1, + ACTIONS(9231), 1, + anon_sym_RBRACE, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8679), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, + ACTIONS(8701), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [175432] = 3, + [177665] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5790), 5, + ACTIONS(5812), 5, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym_const, anon_sym___asm, - ACTIONS(5792), 32, + ACTIONS(5814), 32, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -442761,117 +448418,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [175477] = 19, + [177710] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3331), 1, - anon_sym_const, - ACTIONS(5012), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6829), 1, - sym_auto, - ACTIONS(6831), 1, - anon_sym_decltype, - ACTIONS(8131), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(8568), 1, - anon_sym_STAR, - ACTIONS(8570), 1, - anon_sym_AMP_AMP, - ACTIONS(8572), 1, - anon_sym_AMP, - STATE(2677), 1, - sym_decltype_auto, - STATE(3177), 1, - sym_parameter_list, - STATE(4289), 1, - sym_alignas_qualifier, - STATE(6087), 1, - sym__function_declarator_seq, - STATE(6758), 1, - sym__abstract_declarator, - ACTIONS(8133), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4944), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8205), 3, + ACTIONS(6418), 1, + anon_sym_DOT, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_GT2, - STATE(6092), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8125), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [175554] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7826), 1, - sym_literal_suffix, - ACTIONS(4154), 17, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(8677), 1, anon_sym_SLASH, + ACTIONS(8681), 1, anon_sym_PIPE, + ACTIONS(8685), 1, anon_sym_AMP, - anon_sym_GT, + ACTIONS(8691), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(8695), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8697), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(8699), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - ACTIONS(4146), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(8707), 1, + anon_sym_QMARK, + ACTIONS(9233), 1, + anon_sym_RPAREN, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + ACTIONS(6420), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8048), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8673), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(8679), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8683), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(8693), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8701), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_not_eq, + ACTIONS(8689), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [177801] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5845), 1, + anon_sym_LPAREN2, + ACTIONS(6414), 1, anon_sym_LBRACK, + ACTIONS(7614), 1, + anon_sym_DOT, + ACTIONS(8449), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8959), 1, + anon_sym_SLASH, + ACTIONS(8965), 1, + anon_sym_PIPE, + ACTIONS(8969), 1, + anon_sym_AMP, + ACTIONS(8975), 1, + anon_sym_GT_EQ, + ACTIONS(8981), 1, anon_sym_QMARK, + ACTIONS(8983), 1, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(8985), 1, + anon_sym_bitor, + ACTIONS(8987), 1, + anon_sym_bitand, + ACTIONS(9235), 1, + anon_sym_COLON, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + ACTIONS(7616), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [175601] = 3, + ACTIONS(8048), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8955), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8957), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8961), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8963), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8967), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8977), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8971), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8973), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [177892] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5794), 5, + ACTIONS(5804), 5, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym_const, anon_sym___asm, - ACTIONS(5796), 32, + ACTIONS(5806), 32, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -442904,151 +448590,309 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [175646] = 26, + [177937] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(8268), 1, + sym_identifier, + ACTIONS(8270), 1, + anon_sym_LPAREN2, + ACTIONS(8282), 1, + sym_primitive_type, + ACTIONS(8338), 1, + anon_sym_STAR, + ACTIONS(8340), 1, + anon_sym_AMP_AMP, + ACTIONS(8342), 1, + anon_sym_AMP, + STATE(1680), 1, + sym_alignas_qualifier, + STATE(1971), 1, + sym_pointer_type_declarator, + STATE(6062), 1, + sym__type_declarator, + STATE(8477), 1, + sym_ms_based_modifier, + ACTIONS(69), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1669), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8280), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1985), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [178010] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8836), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8842), 1, + anon_sym_PIPE, + ACTIONS(8846), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8852), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8858), 1, + anon_sym_QMARK, + ACTIONS(8860), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8862), 1, anon_sym_bitor, - ACTIONS(8683), 1, - anon_sym_QMARK, - ACTIONS(9217), 1, - anon_sym_RPAREN, - STATE(2525), 1, + ACTIONS(8864), 1, + anon_sym_bitand, + ACTIONS(9237), 1, + anon_sym_RBRACK, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8832), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8834), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8838), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8840), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8844), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8854), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8848), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8850), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [175737] = 26, + [178101] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(4750), 1, + anon_sym_RBRACK, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8836), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8842), 1, + anon_sym_PIPE, + ACTIONS(8846), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8852), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8858), 1, + anon_sym_QMARK, + ACTIONS(8860), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8862), 1, anon_sym_bitor, - ACTIONS(8683), 1, - anon_sym_QMARK, - ACTIONS(9219), 1, - anon_sym_RPAREN, - STATE(2525), 1, + ACTIONS(8864), 1, + anon_sym_bitand, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8832), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8834), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8838), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8840), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8844), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8854), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8848), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8850), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [175828] = 6, + [178192] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5705), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(5707), 32, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [178237] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(2997), 1, + anon_sym_LPAREN2, + ACTIONS(2999), 1, + anon_sym_TILDE, + ACTIONS(5861), 1, + sym_identifier, + ACTIONS(5873), 1, + anon_sym_COLON_COLON, + ACTIONS(7103), 1, + anon_sym_LBRACK, + ACTIONS(7105), 1, + anon_sym_STAR, + ACTIONS(7107), 1, + anon_sym_AMP_AMP, + ACTIONS(7109), 1, + anon_sym_AMP, + STATE(5312), 1, + sym_ms_call_modifier, + STATE(5687), 1, + sym__declarator, + STATE(5896), 1, + sym__scope_resolution, + STATE(7526), 1, + sym_init_declarator, + STATE(8504), 1, + sym_ms_based_modifier, + STATE(8569), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(1806), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(6145), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [178318] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4167), 1, + ACTIONS(4187), 1, anon_sym_COLON_COLON, - ACTIONS(8697), 1, + ACTIONS(8725), 1, anon_sym_LT, - STATE(1603), 1, + STATE(1623), 1, sym_template_argument_list, - ACTIONS(4970), 4, + ACTIONS(4932), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_LBRACE, - ACTIONS(4963), 30, + ACTIONS(4925), 30, anon_sym_AMP, anon_sym___extension__, anon_sym___attribute__, @@ -443079,27 +448923,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_final, anon_sym_override, - [175879] = 3, + [178369] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5786), 5, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(5788), 32, - anon_sym_COMMA, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(8284), 1, + sym_identifier, + ACTIONS(8286), 1, anon_sym_LPAREN2, + ACTIONS(8288), 1, anon_sym_STAR, + ACTIONS(8290), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(8292), 1, + anon_sym_AMP, + ACTIONS(8296), 1, + sym_primitive_type, + STATE(1680), 1, + sym_alignas_qualifier, + STATE(5968), 1, + sym__type_declarator, + STATE(6122), 1, + sym_pointer_type_declarator, + STATE(8097), 1, + sym_ms_based_modifier, + ACTIONS(69), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1669), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8294), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(6136), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(67), 13, anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -443111,279 +448979,245 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [175924] = 26, + [178442] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8683), 1, + ACTIONS(8699), 1, + anon_sym_bitand, + ACTIONS(8707), 1, anon_sym_QMARK, - ACTIONS(9221), 1, + ACTIONS(9239), 1, anon_sym_RPAREN, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8679), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, + ACTIONS(8701), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [176015] = 26, + [178533] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(7564), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8925), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8931), 1, + ACTIONS(8681), 1, anon_sym_PIPE, - ACTIONS(8935), 1, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8941), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8947), 1, - anon_sym_QMARK, - ACTIONS(8949), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8951), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8953), 1, + ACTIONS(8699), 1, anon_sym_bitand, - ACTIONS(9223), 1, - anon_sym_COLON, - STATE(2525), 1, + ACTIONS(8707), 1, + anon_sym_QMARK, + ACTIONS(9241), 1, + anon_sym_SEMI, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(7566), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8921), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8923), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8927), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8929), 2, + ACTIONS(8679), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8933), 2, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8943), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8937), 3, + ACTIONS(8701), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8939), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [176106] = 3, + [178624] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(5677), 5, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(5679), 32, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - sym_auto, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(1978), 1, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [176151] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5677), 5, - anon_sym_AMP, - anon_sym___attribute, + ACTIONS(2997), 1, + anon_sym_LPAREN2, + ACTIONS(2999), 1, + anon_sym_TILDE, + ACTIONS(5861), 1, + sym_identifier, + ACTIONS(5873), 1, + anon_sym_COLON_COLON, + ACTIONS(7103), 1, anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(5679), 32, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(7105), 1, anon_sym_STAR, + ACTIONS(7107), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [176196] = 21, + ACTIONS(7109), 1, + anon_sym_AMP, + STATE(5345), 1, + sym_ms_call_modifier, + STATE(5719), 1, + sym__declarator, + STATE(5896), 1, + sym__scope_resolution, + STATE(7477), 1, + sym_init_declarator, + STATE(8504), 1, + sym_ms_based_modifier, + STATE(8569), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(1806), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(6145), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [178705] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1852), 1, + ACTIONS(1850), 1, anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2977), 1, + ACTIONS(2997), 1, anon_sym_LPAREN2, - ACTIONS(2979), 1, + ACTIONS(2999), 1, anon_sym_TILDE, - ACTIONS(5849), 1, - sym_identifier, ACTIONS(5861), 1, - anon_sym_COLON_COLON, - ACTIONS(7089), 1, + sym_identifier, + ACTIONS(7103), 1, anon_sym_LBRACK, - ACTIONS(7275), 1, + ACTIONS(7271), 1, anon_sym_STAR, - ACTIONS(7277), 1, + ACTIONS(7273), 1, anon_sym_AMP_AMP, - ACTIONS(7279), 1, + ACTIONS(7275), 1, anon_sym_AMP, - STATE(5246), 1, + ACTIONS(7277), 1, + anon_sym_COLON_COLON, + STATE(5301), 1, sym_ms_call_modifier, - STATE(5486), 1, + STATE(5906), 1, sym__declarator, - STATE(5860), 1, + STATE(5967), 1, sym__scope_resolution, - STATE(7346), 1, + STATE(7250), 1, sym_init_declarator, - STATE(8398), 1, + STATE(8221), 1, sym_ms_based_modifier, - STATE(8601), 3, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - ACTIONS(1808), 6, + ACTIONS(1806), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - STATE(5998), 11, + STATE(6145), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -443395,540 +449229,628 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [176277] = 3, + [178786] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(7036), 18, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(5845), 1, + anon_sym_LPAREN2, + ACTIONS(6414), 1, + anon_sym_LBRACK, + ACTIONS(6418), 1, + anon_sym_DOT, + ACTIONS(8449), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8677), 1, anon_sym_SLASH, + ACTIONS(8681), 1, anon_sym_PIPE, + ACTIONS(8685), 1, anon_sym_AMP, - anon_sym_GT, + ACTIONS(8691), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(8695), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8697), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(8699), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_literal_suffix, - ACTIONS(7038), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(8707), 1, + anon_sym_QMARK, + ACTIONS(9243), 1, + anon_sym_SEMI, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + ACTIONS(6420), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8048), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8673), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(8679), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8683), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(8693), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8701), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_not_eq, + ACTIONS(8689), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [178877] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5845), 1, + anon_sym_LPAREN2, + ACTIONS(6414), 1, anon_sym_LBRACK, - anon_sym_QMARK, + ACTIONS(6418), 1, + anon_sym_DOT, + ACTIONS(8449), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8677), 1, + anon_sym_SLASH, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, + anon_sym_AMP, + ACTIONS(8691), 1, + anon_sym_GT_EQ, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(8697), 1, + anon_sym_bitor, + ACTIONS(8699), 1, + anon_sym_bitand, + ACTIONS(8707), 1, + anon_sym_QMARK, + ACTIONS(9245), 1, + anon_sym_RPAREN, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [176322] = 26, + ACTIONS(8048), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8673), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8675), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8679), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8683), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8693), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8701), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8687), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8689), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [178968] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8683), 1, + ACTIONS(8699), 1, + anon_sym_bitand, + ACTIONS(8707), 1, anon_sym_QMARK, - ACTIONS(9225), 1, + ACTIONS(9247), 1, anon_sym_SEMI, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8679), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, + ACTIONS(8701), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [176413] = 26, + [179059] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8683), 1, + ACTIONS(8699), 1, + anon_sym_bitand, + ACTIONS(8707), 1, anon_sym_QMARK, - ACTIONS(9227), 1, + ACTIONS(9249), 1, anon_sym_SEMI, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8679), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, + ACTIONS(8701), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [176504] = 26, + [179150] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8683), 1, + ACTIONS(8699), 1, + anon_sym_bitand, + ACTIONS(8707), 1, anon_sym_QMARK, - ACTIONS(8749), 1, + ACTIONS(9251), 1, anon_sym_RPAREN, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8679), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, + ACTIONS(8701), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [176595] = 26, + [179241] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8836), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8842), 1, + anon_sym_PIPE, + ACTIONS(8846), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8852), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8858), 1, + anon_sym_QMARK, + ACTIONS(8860), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8862), 1, anon_sym_bitor, - ACTIONS(8683), 1, - anon_sym_QMARK, - ACTIONS(9229), 1, - anon_sym_SEMI, - STATE(2525), 1, + ACTIONS(8864), 1, + anon_sym_bitand, + ACTIONS(9253), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9255), 1, + anon_sym_RBRACK, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8832), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8834), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8838), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8840), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8844), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8854), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8848), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8850), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [176686] = 26, + [179332] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8683), 1, + ACTIONS(8699), 1, + anon_sym_bitand, + ACTIONS(8707), 1, anon_sym_QMARK, - ACTIONS(9231), 1, - anon_sym_SEMI, - STATE(2525), 1, + ACTIONS(9257), 1, + anon_sym_RPAREN, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8679), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, + ACTIONS(8701), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [176777] = 26, + [179423] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8683), 1, + ACTIONS(8699), 1, + anon_sym_bitand, + ACTIONS(8707), 1, anon_sym_QMARK, - ACTIONS(9233), 1, - anon_sym_RPAREN, - STATE(2525), 1, + ACTIONS(9259), 1, + anon_sym_SEMI, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8679), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, + ACTIONS(8701), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [176868] = 26, + [179514] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8815), 1, + ACTIONS(8836), 1, anon_sym_SLASH, - ACTIONS(8821), 1, + ACTIONS(8842), 1, anon_sym_PIPE, - ACTIONS(8825), 1, + ACTIONS(8846), 1, anon_sym_AMP, - ACTIONS(8831), 1, + ACTIONS(8852), 1, anon_sym_GT_EQ, - ACTIONS(8837), 1, + ACTIONS(8858), 1, anon_sym_QMARK, - ACTIONS(8839), 1, + ACTIONS(8860), 1, anon_sym_LT_EQ_GT, - ACTIONS(8841), 1, + ACTIONS(8862), 1, anon_sym_bitor, - ACTIONS(8843), 1, + ACTIONS(8864), 1, anon_sym_bitand, - ACTIONS(9235), 1, + ACTIONS(9261), 1, anon_sym_RBRACK, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8811), 2, + ACTIONS(8832), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8813), 2, + ACTIONS(8834), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8817), 2, + ACTIONS(8838), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8819), 2, + ACTIONS(8840), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8823), 2, + ACTIONS(8844), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8833), 2, + ACTIONS(8854), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8827), 3, + ACTIONS(8848), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8829), 3, + ACTIONS(8850), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [176959] = 17, + [179605] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8252), 1, + ACTIONS(8284), 1, sym_identifier, - ACTIONS(8254), 1, + ACTIONS(8286), 1, anon_sym_LPAREN2, - ACTIONS(8256), 1, + ACTIONS(8288), 1, anon_sym_STAR, - ACTIONS(8258), 1, + ACTIONS(8290), 1, anon_sym_AMP_AMP, - ACTIONS(8260), 1, + ACTIONS(8292), 1, anon_sym_AMP, - ACTIONS(8264), 1, + ACTIONS(8296), 1, sym_primitive_type, - STATE(1658), 1, + STATE(1680), 1, sym_alignas_qualifier, - STATE(5912), 1, + STATE(6028), 1, sym__type_declarator, - STATE(6089), 1, + STATE(6122), 1, sym_pointer_type_declarator, - STATE(8067), 1, + STATE(8097), 1, sym_ms_based_modifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1633), 2, + STATE(1669), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(8262), 4, + ACTIONS(8294), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(6082), 5, + STATE(6136), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -443948,246 +449870,385 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [177032] = 26, + [179678] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8683), 1, + ACTIONS(8699), 1, + anon_sym_bitand, + ACTIONS(8707), 1, anon_sym_QMARK, - ACTIONS(9237), 1, - anon_sym_RPAREN, - STATE(2525), 1, + ACTIONS(9263), 1, + anon_sym_SEMI, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8679), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, + ACTIONS(8701), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [177123] = 26, + [179769] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(8268), 1, + sym_identifier, + ACTIONS(8270), 1, + anon_sym_LPAREN2, + ACTIONS(8282), 1, + sym_primitive_type, + ACTIONS(8338), 1, + anon_sym_STAR, + ACTIONS(8340), 1, + anon_sym_AMP_AMP, + ACTIONS(8342), 1, + anon_sym_AMP, + STATE(1680), 1, + sym_alignas_qualifier, + STATE(1971), 1, + sym_pointer_type_declarator, + STATE(6047), 1, + sym__type_declarator, + STATE(8477), 1, + sym_ms_based_modifier, + ACTIONS(69), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1669), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8280), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1985), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [179842] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5712), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(5714), 32, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [179887] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8683), 1, + ACTIONS(8699), 1, + anon_sym_bitand, + ACTIONS(8707), 1, anon_sym_QMARK, - ACTIONS(9239), 1, - anon_sym_RPAREN, - STATE(2525), 1, + ACTIONS(9265), 1, + anon_sym_SEMI, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8679), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, + ACTIONS(8701), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [177214] = 26, + [179978] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8683), 1, + ACTIONS(8699), 1, + anon_sym_bitand, + ACTIONS(8707), 1, anon_sym_QMARK, - ACTIONS(9241), 1, - anon_sym_RPAREN, - STATE(2525), 1, + ACTIONS(9267), 1, + anon_sym_SEMI, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8679), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, + ACTIONS(8701), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [177305] = 17, + [180069] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(8252), 1, - sym_identifier, - ACTIONS(8254), 1, + ACTIONS(4841), 1, + anon_sym_RBRACK, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(8256), 1, + ACTIONS(6414), 1, + anon_sym_LBRACK, + ACTIONS(6418), 1, + anon_sym_DOT, + ACTIONS(8449), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8836), 1, + anon_sym_SLASH, + ACTIONS(8842), 1, + anon_sym_PIPE, + ACTIONS(8846), 1, + anon_sym_AMP, + ACTIONS(8852), 1, + anon_sym_GT_EQ, + ACTIONS(8858), 1, + anon_sym_QMARK, + ACTIONS(8860), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8862), 1, + anon_sym_bitor, + ACTIONS(8864), 1, + anon_sym_bitand, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + ACTIONS(6420), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8048), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8832), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8834), 2, anon_sym_STAR, - ACTIONS(8258), 1, + anon_sym_PERCENT, + ACTIONS(8838), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8840), 2, anon_sym_AMP_AMP, - ACTIONS(8260), 1, + anon_sym_and, + ACTIONS(8844), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8854), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8848), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8850), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [180160] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5753), 5, anon_sym_AMP, - ACTIONS(8264), 1, - sym_primitive_type, - STATE(1658), 1, - sym_alignas_qualifier, - STATE(5889), 1, - sym__type_declarator, - STATE(6089), 1, - sym_pointer_type_declarator, - STATE(8067), 1, - sym_ms_based_modifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1633), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8262), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(6082), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - ACTIONS(67), 13, - anon_sym___extension__, + anon_sym___attribute, + anon_sym_LBRACK, anon_sym_const, + anon_sym___asm, + ACTIONS(5755), 32, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -444199,443 +450260,640 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [177378] = 26, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [180205] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8683), 1, + ACTIONS(8699), 1, + anon_sym_bitand, + ACTIONS(8707), 1, anon_sym_QMARK, - ACTIONS(9243), 1, - anon_sym_RPAREN, - STATE(2525), 1, + ACTIONS(9269), 1, + anon_sym_COMMA, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8679), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, + ACTIONS(8701), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [177469] = 26, + [180296] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4821), 1, - anon_sym_RBRACK, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8815), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8821), 1, + ACTIONS(8681), 1, anon_sym_PIPE, - ACTIONS(8825), 1, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8831), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8837), 1, - anon_sym_QMARK, - ACTIONS(8839), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8841), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8843), 1, + ACTIONS(8699), 1, anon_sym_bitand, - STATE(2525), 1, + ACTIONS(8707), 1, + anon_sym_QMARK, + ACTIONS(9271), 1, + anon_sym_SEMI, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8811), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8813), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8817), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8819), 2, + ACTIONS(8679), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8823), 2, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8833), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8827), 3, + ACTIONS(8701), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8829), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [177560] = 26, + [180387] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8836), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8842), 1, + anon_sym_PIPE, + ACTIONS(8846), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8852), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8858), 1, + anon_sym_QMARK, + ACTIONS(8860), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8862), 1, anon_sym_bitor, - ACTIONS(8683), 1, - anon_sym_QMARK, - ACTIONS(9245), 1, - anon_sym_RPAREN, - STATE(2525), 1, + ACTIONS(8864), 1, + anon_sym_bitand, + ACTIONS(9273), 1, + anon_sym_RBRACK, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8832), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8834), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8838), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8840), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8844), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8854), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8848), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8850), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [180478] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7926), 1, + sym_literal_suffix, + ACTIONS(4174), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [177651] = 26, + anon_sym_GT_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + ACTIONS(4166), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [180525] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8683), 1, + ACTIONS(8699), 1, + anon_sym_bitand, + ACTIONS(8707), 1, anon_sym_QMARK, - ACTIONS(9247), 1, + ACTIONS(9275), 1, anon_sym_RPAREN, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8679), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, + ACTIONS(8701), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [177742] = 26, + [180616] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(4857), 1, + anon_sym_RBRACK, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8815), 1, + ACTIONS(8449), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8836), 1, anon_sym_SLASH, - ACTIONS(8821), 1, + ACTIONS(8842), 1, anon_sym_PIPE, - ACTIONS(8825), 1, + ACTIONS(8846), 1, anon_sym_AMP, - ACTIONS(8831), 1, + ACTIONS(8852), 1, anon_sym_GT_EQ, - ACTIONS(8837), 1, + ACTIONS(8858), 1, anon_sym_QMARK, - ACTIONS(8839), 1, + ACTIONS(8860), 1, anon_sym_LT_EQ_GT, - ACTIONS(8841), 1, + ACTIONS(8862), 1, anon_sym_bitor, - ACTIONS(8843), 1, + ACTIONS(8864), 1, anon_sym_bitand, - ACTIONS(9249), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9251), 1, - anon_sym_RBRACK, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8811), 2, + ACTIONS(8832), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8813), 2, + ACTIONS(8834), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8817), 2, + ACTIONS(8838), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8819), 2, + ACTIONS(8840), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8823), 2, + ACTIONS(8844), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8833), 2, + ACTIONS(8854), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8827), 3, + ACTIONS(8848), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8829), 3, + ACTIONS(8850), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [177833] = 26, + [180707] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(2997), 1, + anon_sym_LPAREN2, + ACTIONS(2999), 1, + anon_sym_TILDE, + ACTIONS(5861), 1, + sym_identifier, + ACTIONS(5873), 1, + anon_sym_COLON_COLON, + ACTIONS(7103), 1, + anon_sym_LBRACK, + ACTIONS(7105), 1, + anon_sym_STAR, + ACTIONS(7107), 1, + anon_sym_AMP_AMP, + ACTIONS(7109), 1, + anon_sym_AMP, + STATE(5319), 1, + sym_ms_call_modifier, + STATE(5699), 1, + sym__declarator, + STATE(5896), 1, + sym__scope_resolution, + STATE(7643), 1, + sym_init_declarator, + STATE(8504), 1, + sym_ms_based_modifier, + STATE(8569), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(1806), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(6145), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [180788] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8683), 1, + ACTIONS(8699), 1, + anon_sym_bitand, + ACTIONS(8707), 1, anon_sym_QMARK, - ACTIONS(9253), 1, + ACTIONS(9277), 1, anon_sym_RPAREN, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8679), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, + ACTIONS(8701), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [177924] = 19, + [180879] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3331), 1, + ACTIONS(5724), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, anon_sym_const, - ACTIONS(5012), 1, + anon_sym___asm, + ACTIONS(5726), 32, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(6829), 1, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, sym_auto, - ACTIONS(6831), 1, anon_sym_decltype, - ACTIONS(8131), 1, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [180924] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9279), 1, + anon_sym_LBRACK_LBRACK, + STATE(4831), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6273), 10, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + ACTIONS(2043), 24, + anon_sym_virtual, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(8568), 1, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_private, + anon_sym_template, + anon_sym_try, + anon_sym_public, + anon_sym_protected, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [180973] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(8284), 1, + sym_identifier, + ACTIONS(8286), 1, + anon_sym_LPAREN2, + ACTIONS(8296), 1, + sym_primitive_type, + ACTIONS(8332), 1, anon_sym_STAR, - ACTIONS(8570), 1, + ACTIONS(8334), 1, anon_sym_AMP_AMP, - ACTIONS(8572), 1, + ACTIONS(8336), 1, anon_sym_AMP, - STATE(2677), 1, - sym_decltype_auto, - STATE(3177), 1, - sym_parameter_list, - STATE(4289), 1, + STATE(1680), 1, sym_alignas_qualifier, - STATE(6087), 1, - sym__function_declarator_seq, - STATE(6737), 1, - sym__abstract_declarator, - ACTIONS(8133), 2, + STATE(6122), 1, + sym_pointer_type_declarator, + STATE(6357), 1, + sym__type_declarator, + STATE(8378), 1, + sym_ms_based_modifier, + ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4909), 2, + STATE(1669), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(8185), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_GT2, - STATE(6092), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8125), 12, + ACTIONS(8294), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(6136), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(67), 13, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -444647,1056 +450905,642 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [178001] = 26, + [181046] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4881), 1, - anon_sym_RBRACK, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8815), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8821), 1, + ACTIONS(8681), 1, anon_sym_PIPE, - ACTIONS(8825), 1, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8831), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8837), 1, - anon_sym_QMARK, - ACTIONS(8839), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8841), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8843), 1, + ACTIONS(8699), 1, anon_sym_bitand, - STATE(2525), 1, + ACTIONS(8707), 1, + anon_sym_QMARK, + ACTIONS(9282), 1, + anon_sym_RPAREN, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8811), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8813), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8817), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8819), 2, + ACTIONS(8679), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8823), 2, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8833), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8827), 3, + ACTIONS(8701), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8829), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [178092] = 26, + [181137] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(8318), 1, + sym_identifier, + ACTIONS(8320), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, - anon_sym_LBRACK, - ACTIONS(6431), 1, - anon_sym_DOT, - ACTIONS(8423), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, - anon_sym_SLASH, - ACTIONS(8653), 1, - anon_sym_AMP, - ACTIONS(8659), 1, - anon_sym_GT_EQ, - ACTIONS(8663), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, - anon_sym_bitor, - ACTIONS(8683), 1, - anon_sym_QMARK, - ACTIONS(9255), 1, - anon_sym_COMMA, - STATE(2525), 1, - sym_argument_list, - STATE(2526), 1, - sym_subscript_argument_list, - ACTIONS(6433), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8045), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8322), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8651), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8661), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8667), 2, + ACTIONS(8324), 1, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8655), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8657), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [178183] = 26, + ACTIONS(8326), 1, + anon_sym_AMP, + ACTIONS(8330), 1, + sym_primitive_type, + STATE(1680), 1, + sym_alignas_qualifier, + STATE(3105), 1, + sym__type_declarator, + STATE(3541), 1, + sym_pointer_type_declarator, + STATE(8597), 1, + sym_ms_based_modifier, + ACTIONS(69), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1669), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8328), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3536), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [181210] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8683), 1, + ACTIONS(8699), 1, + anon_sym_bitand, + ACTIONS(8707), 1, anon_sym_QMARK, - ACTIONS(9257), 1, + ACTIONS(9284), 1, anon_sym_COMMA, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8679), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, + ACTIONS(8701), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [178274] = 26, + [181301] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8683), 1, + ACTIONS(8699), 1, + anon_sym_bitand, + ACTIONS(8707), 1, anon_sym_QMARK, - ACTIONS(9259), 1, + ACTIONS(9286), 1, anon_sym_COMMA, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8679), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, + ACTIONS(8701), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [178365] = 26, + [181392] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8683), 1, + ACTIONS(8699), 1, + anon_sym_bitand, + ACTIONS(8707), 1, anon_sym_QMARK, - ACTIONS(9261), 1, + ACTIONS(9288), 1, anon_sym_COMMA, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8679), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, + ACTIONS(8701), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [178456] = 26, + [181483] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8683), 1, + ACTIONS(8699), 1, + anon_sym_bitand, + ACTIONS(8707), 1, anon_sym_QMARK, - ACTIONS(9263), 1, + ACTIONS(9290), 1, anon_sym_COMMA, - STATE(2525), 1, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8679), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, + ACTIONS(8701), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [178547] = 26, + [181574] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8683), 1, + ACTIONS(8699), 1, + anon_sym_bitand, + ACTIONS(8707), 1, anon_sym_QMARK, - ACTIONS(9265), 1, - anon_sym_SEMI, - STATE(2525), 1, + ACTIONS(9292), 1, + anon_sym_COMMA, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8679), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, + ACTIONS(8701), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [178638] = 5, + [181665] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9267), 1, - anon_sym_LBRACK_LBRACK, - STATE(4776), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6235), 10, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5845), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - ACTIONS(2051), 24, - anon_sym_virtual, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, + ACTIONS(6414), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_identifier, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_private, - anon_sym_template, - anon_sym_try, - anon_sym_public, - anon_sym_protected, - anon_sym_noexcept, - anon_sym_throw, - anon_sym_requires, - [178687] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6590), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(6592), 25, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [178731] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6694), 11, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(8677), 1, anon_sym_SLASH, + ACTIONS(8681), 1, anon_sym_PIPE, + ACTIONS(8685), 1, anon_sym_AMP, - anon_sym_GT, + ACTIONS(8691), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6696), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(8697), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(8699), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(8707), 1, + anon_sym_QMARK, + ACTIONS(9294), 1, + anon_sym_RPAREN, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [178775] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7042), 1, - anon_sym_AMP_AMP, - ACTIONS(7044), 1, - anon_sym_AMP, - ACTIONS(7072), 1, - anon_sym_noexcept, - ACTIONS(7074), 1, - anon_sym_throw, - ACTIONS(7079), 1, - anon_sym_requires, - ACTIONS(7083), 1, - anon_sym___attribute__, - ACTIONS(7085), 1, - anon_sym___attribute, - ACTIONS(7179), 1, - anon_sym_DASH_GT, - ACTIONS(9190), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9193), 1, - anon_sym_LBRACK, - ACTIONS(9273), 1, - anon_sym___asm, - STATE(4956), 1, - sym_ref_qualifier, - STATE(5534), 1, - sym_trailing_return_type, - STATE(5703), 1, - sym__function_attributes_end, - STATE(6745), 1, - sym_gnu_asm_expression, - ACTIONS(6020), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(9270), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(5428), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5606), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5733), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5877), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5290), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9182), 6, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - [178861] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(2977), 1, - anon_sym_LPAREN2, - ACTIONS(2979), 1, - anon_sym_TILDE, - ACTIONS(7089), 1, - anon_sym_LBRACK, - ACTIONS(7281), 1, - sym_identifier, - ACTIONS(7283), 1, - anon_sym_STAR, - ACTIONS(7285), 1, - anon_sym_AMP_AMP, - ACTIONS(7287), 1, - anon_sym_AMP, - ACTIONS(7289), 1, - anon_sym_COLON_COLON, - STATE(5262), 1, - sym_ms_call_modifier, - STATE(5807), 1, - sym__scope_resolution, - STATE(6475), 1, - sym__declarator, - STATE(8592), 1, - sym_ms_based_modifier, - STATE(8601), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(1808), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - STATE(5998), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [178939] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6606), 11, + ACTIONS(8048), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6608), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(8679), 2, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, anon_sym_and, - anon_sym_bitor, + ACTIONS(8683), 2, + anon_sym_CARET, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [178983] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6610), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, + ACTIONS(8693), 2, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6612), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(8701), 2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + anon_sym_or, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [179027] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6614), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(8689), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6616), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [179071] = 20, + [181756] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(2977), 1, - anon_sym_LPAREN2, - ACTIONS(2979), 1, - anon_sym_TILDE, - ACTIONS(2981), 1, - anon_sym_STAR, - ACTIONS(2983), 1, - anon_sym_AMP, - ACTIONS(5460), 1, + ACTIONS(8284), 1, sym_identifier, - ACTIONS(6321), 1, - anon_sym_COLON_COLON, - ACTIONS(7089), 1, - anon_sym_LBRACK, - STATE(5281), 1, - sym_ms_call_modifier, - STATE(5847), 1, - sym__scope_resolution, - STATE(6672), 1, - sym__declarator, - STATE(8682), 1, - sym_ms_based_modifier, - STATE(8601), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(1808), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - STATE(5998), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [179149] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(2977), 1, + ACTIONS(8286), 1, anon_sym_LPAREN2, - ACTIONS(2979), 1, - anon_sym_TILDE, - ACTIONS(7089), 1, - anon_sym_LBRACK, - ACTIONS(7281), 1, - sym_identifier, - ACTIONS(7283), 1, + ACTIONS(8296), 1, + sym_primitive_type, + ACTIONS(8332), 1, anon_sym_STAR, - ACTIONS(7285), 1, + ACTIONS(8334), 1, anon_sym_AMP_AMP, - ACTIONS(7287), 1, + ACTIONS(8336), 1, anon_sym_AMP, - ACTIONS(7289), 1, - anon_sym_COLON_COLON, - STATE(5283), 1, - sym_ms_call_modifier, - STATE(5807), 1, - sym__scope_resolution, - STATE(6474), 1, - sym__declarator, - STATE(8592), 1, + STATE(1680), 1, + sym_alignas_qualifier, + STATE(6122), 1, + sym_pointer_type_declarator, + STATE(6358), 1, + sym__type_declarator, + STATE(8378), 1, sym_ms_based_modifier, - STATE(8601), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(1808), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - STATE(5998), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [179227] = 25, + ACTIONS(69), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1669), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8294), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(6136), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [181829] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6414), 1, anon_sym_LBRACK, - ACTIONS(6431), 1, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(8449), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8649), 1, + ACTIONS(8677), 1, anon_sym_SLASH, - ACTIONS(8653), 1, + ACTIONS(8681), 1, + anon_sym_PIPE, + ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8659), 1, + ACTIONS(8691), 1, anon_sym_GT_EQ, - ACTIONS(8663), 1, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - ACTIONS(8665), 1, - anon_sym_bitand, - ACTIONS(8669), 1, - anon_sym_PIPE, - ACTIONS(8671), 1, + ACTIONS(8697), 1, anon_sym_bitor, - ACTIONS(8683), 1, + ACTIONS(8699), 1, + anon_sym_bitand, + ACTIONS(8707), 1, anon_sym_QMARK, - STATE(2525), 1, + ACTIONS(9296), 1, + anon_sym_SEMI, + STATE(2491), 1, sym_argument_list, - STATE(2526), 1, + STATE(2492), 1, sym_subscript_argument_list, - ACTIONS(6433), 2, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8045), 2, + ACTIONS(8048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8645), 2, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8647), 2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8651), 2, + ACTIONS(8679), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8683), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8661), 2, + ACTIONS(8693), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8667), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8681), 2, + ACTIONS(8701), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8655), 3, + ACTIONS(8687), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8657), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [179315] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4290), 1, - anon_sym_SEMI, - ACTIONS(7081), 1, - sym_literal_suffix, - ACTIONS(4154), 15, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(8689), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - ACTIONS(4146), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [179363] = 3, + [181920] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3895), 11, + ACTIONS(6630), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -445708,7 +451552,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(3891), 25, + ACTIONS(6632), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -445734,72 +451578,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [179407] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7042), 1, - anon_sym_AMP_AMP, - ACTIONS(7044), 1, - anon_sym_AMP, - ACTIONS(7072), 1, - anon_sym_noexcept, - ACTIONS(7074), 1, - anon_sym_throw, - ACTIONS(7147), 1, - anon_sym___attribute__, - ACTIONS(7160), 1, - anon_sym_DASH_GT, - ACTIONS(7301), 1, - anon_sym_requires, - ACTIONS(9193), 1, - anon_sym_LBRACK, - ACTIONS(9273), 1, - anon_sym___asm, - ACTIONS(9276), 1, - anon_sym_LBRACK_LBRACK, - STATE(4974), 1, - sym_ref_qualifier, - STATE(5453), 1, - sym_trailing_return_type, - STATE(5663), 1, - sym__function_attributes_end, - STATE(6766), 1, - sym_gnu_asm_expression, - ACTIONS(6020), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(9270), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(5384), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5458), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5606), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5877), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5301), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9182), 6, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [179493] = 3, + [181964] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6594), 11, + ACTIONS(6536), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -445811,7 +451593,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6596), 25, + ACTIONS(6538), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -445837,53 +451619,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [179537] = 20, + [182008] = 20, ACTIONS(3), 1, sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1852), 1, + ACTIONS(1850), 1, anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2977), 1, + ACTIONS(2997), 1, anon_sym_LPAREN2, - ACTIONS(2979), 1, + ACTIONS(2999), 1, anon_sym_TILDE, - ACTIONS(7089), 1, - anon_sym_LBRACK, - ACTIONS(7281), 1, - sym_identifier, - ACTIONS(7283), 1, + ACTIONS(3001), 1, anon_sym_STAR, - ACTIONS(7285), 1, - anon_sym_AMP_AMP, - ACTIONS(7287), 1, + ACTIONS(3003), 1, anon_sym_AMP, - ACTIONS(7289), 1, + ACTIONS(5481), 1, + sym_identifier, + ACTIONS(6365), 1, anon_sym_COLON_COLON, - STATE(5266), 1, + ACTIONS(7103), 1, + anon_sym_LBRACK, + STATE(5314), 1, sym_ms_call_modifier, - STATE(5807), 1, + STATE(5923), 1, sym__scope_resolution, - STATE(6431), 1, + STATE(6806), 1, sym__declarator, - STATE(8592), 1, + STATE(8864), 1, sym_ms_based_modifier, - STATE(8601), 3, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - ACTIONS(1808), 6, + ACTIONS(1806), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - STATE(5998), 11, + STATE(6145), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -445895,10 +451677,10 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [179615] = 3, + [182086] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6618), 11, + ACTIONS(6686), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -445910,7 +451692,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6620), 25, + ACTIONS(6688), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -445936,65 +451718,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [179659] = 3, + [182130] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6622), 11, + ACTIONS(4304), 1, + anon_sym_SEMI, + ACTIONS(7041), 1, + sym_literal_suffix, + ACTIONS(4174), 15, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6624), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [179703] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6714), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6716), 25, + ACTIONS(4166), 19, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -446003,125 +451751,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [179747] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9279), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(6178), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6180), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [179793] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(2977), 1, - anon_sym_LPAREN2, - ACTIONS(2979), 1, - anon_sym_TILDE, - ACTIONS(7089), 1, - anon_sym_LBRACK, - ACTIONS(7281), 1, - sym_identifier, - ACTIONS(7283), 1, - anon_sym_STAR, - ACTIONS(7285), 1, - anon_sym_AMP_AMP, - ACTIONS(7287), 1, - anon_sym_AMP, - ACTIONS(7289), 1, - anon_sym_COLON_COLON, - STATE(5271), 1, - sym_ms_call_modifier, - STATE(5807), 1, - sym__scope_resolution, - STATE(6439), 1, - sym__declarator, - STATE(8592), 1, - sym_ms_based_modifier, - STATE(8601), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(1808), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - STATE(5998), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [179871] = 3, + [182178] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6632), 11, + ACTIONS(6594), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -446133,7 +451776,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6634), 25, + ACTIONS(6596), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -446142,320 +451785,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [179915] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(2977), 1, - anon_sym_LPAREN2, - ACTIONS(2979), 1, - anon_sym_TILDE, - ACTIONS(7089), 1, - anon_sym_LBRACK, - ACTIONS(7281), 1, - sym_identifier, - ACTIONS(7283), 1, - anon_sym_STAR, - ACTIONS(7285), 1, - anon_sym_AMP_AMP, - ACTIONS(7287), 1, - anon_sym_AMP, - ACTIONS(7289), 1, - anon_sym_COLON_COLON, - STATE(5252), 1, - sym_ms_call_modifier, - STATE(5807), 1, - sym__scope_resolution, - STATE(6432), 1, - sym__declarator, - STATE(8592), 1, - sym_ms_based_modifier, - STATE(8601), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(1808), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - STATE(5998), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [179993] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3331), 1, - anon_sym_const, - ACTIONS(5012), 1, - anon_sym_LPAREN2, - ACTIONS(8131), 1, - anon_sym_LBRACK, - ACTIONS(8149), 1, - sym_auto, - ACTIONS(8151), 1, - anon_sym_decltype, - ACTIONS(8602), 1, - anon_sym_STAR, - ACTIONS(8604), 1, - anon_sym_AMP_AMP, - ACTIONS(8606), 1, - anon_sym_AMP, - STATE(1884), 1, - sym_decltype_auto, - STATE(3405), 1, - sym_parameter_list, - STATE(4289), 1, - sym_alignas_qualifier, - STATE(6087), 1, - sym__function_declarator_seq, - STATE(6788), 1, - sym__abstract_declarator, - ACTIONS(8133), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(8205), 2, - anon_sym_LBRACE, - anon_sym_requires, - STATE(4971), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6092), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8125), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [180069] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(2977), 1, - anon_sym_LPAREN2, - ACTIONS(2979), 1, - anon_sym_TILDE, - ACTIONS(7089), 1, - anon_sym_LBRACK, - ACTIONS(7281), 1, - sym_identifier, - ACTIONS(7283), 1, - anon_sym_STAR, - ACTIONS(7285), 1, - anon_sym_AMP_AMP, - ACTIONS(7287), 1, - anon_sym_AMP, - ACTIONS(7289), 1, - anon_sym_COLON_COLON, - STATE(5274), 1, - sym_ms_call_modifier, - STATE(5807), 1, - sym__scope_resolution, - STATE(6462), 1, - sym__declarator, - STATE(8592), 1, - sym_ms_based_modifier, - STATE(8601), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(1808), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - STATE(5998), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [180147] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(2977), 1, - anon_sym_LPAREN2, - ACTIONS(2979), 1, - anon_sym_TILDE, - ACTIONS(7089), 1, - anon_sym_LBRACK, - ACTIONS(7281), 1, - sym_identifier, - ACTIONS(7283), 1, - anon_sym_STAR, - ACTIONS(7285), 1, - anon_sym_AMP_AMP, - ACTIONS(7287), 1, - anon_sym_AMP, - ACTIONS(7289), 1, - anon_sym_COLON_COLON, - STATE(5279), 1, - sym_ms_call_modifier, - STATE(5807), 1, - sym__scope_resolution, - STATE(6445), 1, - sym__declarator, - STATE(8592), 1, - sym_ms_based_modifier, - STATE(8601), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(1808), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - STATE(5998), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [180225] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7042), 1, - anon_sym_AMP_AMP, - ACTIONS(7044), 1, - anon_sym_AMP, - ACTIONS(7072), 1, - anon_sym_noexcept, - ACTIONS(7074), 1, - anon_sym_throw, - ACTIONS(7147), 1, - anon_sym___attribute__, - ACTIONS(7160), 1, - anon_sym_DASH_GT, - ACTIONS(9193), 1, - anon_sym_LBRACK, - ACTIONS(9273), 1, - anon_sym___asm, - ACTIONS(9276), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9281), 1, - anon_sym_requires, - STATE(4953), 1, - sym_ref_qualifier, - STATE(5447), 1, - sym_trailing_return_type, - STATE(5678), 1, - sym__function_attributes_end, - STATE(6766), 1, - sym_gnu_asm_expression, - ACTIONS(9195), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(9270), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(5384), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5458), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5606), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5877), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5284), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9182), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [182222] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9298), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9300), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6298), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(6300), 21, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [180311] = 3, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [182270] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6636), 11, + ACTIONS(6568), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -446467,7 +451860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6638), 25, + ACTIONS(6570), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -446493,72 +451886,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [180355] = 24, + [182314] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(7042), 1, + ACTIONS(7048), 1, anon_sym_AMP_AMP, - ACTIONS(7044), 1, + ACTIONS(7050), 1, anon_sym_AMP, - ACTIONS(7065), 1, - anon_sym___asm, - ACTIONS(7072), 1, + ACTIONS(7075), 1, anon_sym_noexcept, - ACTIONS(7074), 1, + ACTIONS(7077), 1, anon_sym_throw, - ACTIONS(7083), 1, + ACTIONS(7283), 1, anon_sym___attribute__, - ACTIONS(7085), 1, + ACTIONS(7285), 1, anon_sym___attribute, - ACTIONS(7087), 1, + ACTIONS(7318), 1, anon_sym_DASH_GT, - ACTIONS(9190), 1, + ACTIONS(9147), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9193), 1, + ACTIONS(9150), 1, anon_sym_LBRACK, - ACTIONS(9198), 1, + ACTIONS(9196), 1, anon_sym_requires, - STATE(4969), 1, + ACTIONS(9305), 1, + anon_sym___asm, + STATE(5017), 1, sym_ref_qualifier, - STATE(5514), 1, + STATE(5655), 1, sym_trailing_return_type, - STATE(5953), 1, + STATE(5786), 1, sym__function_attributes_end, - STATE(6745), 1, + STATE(6850), 1, sym_gnu_asm_expression, - ACTIONS(7063), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9195), 2, + ACTIONS(9193), 2, anon_sym_final, anon_sym_override, - STATE(5428), 2, + ACTIONS(9302), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5540), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5606), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5733), 2, + STATE(5730), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5877), 2, + STATE(5927), 2, sym__function_postfix, sym_requires_clause, - STATE(5292), 3, + STATE(5366), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9182), 6, + ACTIONS(9139), 6, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_try, - [180441] = 3, + [182400] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6640), 11, + ACTIONS(6572), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -446570,7 +451963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6642), 25, + ACTIONS(6574), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -446596,10 +451989,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [180485] = 3, + [182444] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6644), 11, + ACTIONS(6722), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -446611,7 +452004,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6646), 25, + ACTIONS(6724), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -446637,10 +452030,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [180529] = 3, + [182488] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6648), 11, + ACTIONS(6710), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -446652,7 +452045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6650), 25, + ACTIONS(6712), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -446678,10 +452071,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [180573] = 3, + [182532] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(2997), 1, + anon_sym_LPAREN2, + ACTIONS(2999), 1, + anon_sym_TILDE, + ACTIONS(7103), 1, + anon_sym_LBRACK, + ACTIONS(7209), 1, + sym_identifier, + ACTIONS(7217), 1, + anon_sym_COLON_COLON, + ACTIONS(7265), 1, + anon_sym_STAR, + ACTIONS(7267), 1, + anon_sym_AMP_AMP, + ACTIONS(7269), 1, + anon_sym_AMP, + STATE(5328), 1, + sym_ms_call_modifier, + STATE(5895), 1, + sym__scope_resolution, + STATE(6566), 1, + sym__declarator, + STATE(8135), 1, + sym_ms_based_modifier, + STATE(8569), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(1806), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(6145), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [182610] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6652), 11, + ACTIONS(4174), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -446693,7 +452144,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6654), 25, + ACTIONS(4166), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -446719,10 +452170,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [180617] = 3, + [182654] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6656), 11, + ACTIONS(3903), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -446734,7 +452185,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6658), 25, + ACTIONS(3899), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -446760,10 +452211,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [180661] = 3, + [182698] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6660), 11, + ACTIONS(6602), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -446775,7 +452226,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6662), 25, + ACTIONS(6604), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -446801,10 +452252,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [180705] = 3, + [182742] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(2997), 1, + anon_sym_LPAREN2, + ACTIONS(2999), 1, + anon_sym_TILDE, + ACTIONS(7103), 1, + anon_sym_LBRACK, + ACTIONS(7209), 1, + sym_identifier, + ACTIONS(7217), 1, + anon_sym_COLON_COLON, + ACTIONS(7265), 1, + anon_sym_STAR, + ACTIONS(7267), 1, + anon_sym_AMP_AMP, + ACTIONS(7269), 1, + anon_sym_AMP, + STATE(5313), 1, + sym_ms_call_modifier, + STATE(5895), 1, + sym__scope_resolution, + STATE(6553), 1, + sym__declarator, + STATE(8135), 1, + sym_ms_based_modifier, + STATE(8569), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(1806), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(6145), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [182820] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6664), 11, + ACTIONS(6658), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -446816,7 +452325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6666), 25, + ACTIONS(6660), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -446842,10 +452351,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [180749] = 3, + [182864] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6668), 11, + ACTIONS(6544), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -446857,7 +452366,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6670), 25, + ACTIONS(6546), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -446883,25 +452392,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [180793] = 5, + [182908] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9284), 1, - anon_sym_COMMA, - ACTIONS(9286), 1, - anon_sym_RBRACK, - ACTIONS(4154), 9, + ACTIONS(6598), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4146), 25, + ACTIONS(6600), 25, anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -446910,9 +452418,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -446926,10 +452432,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [180841] = 3, + anon_sym_GT2, + [182952] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6676), 11, + ACTIONS(6694), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -446941,7 +452448,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6678), 25, + ACTIONS(6696), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -446967,10 +452474,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [180885] = 3, + [182996] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6680), 11, + ACTIONS(6670), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -446982,7 +452489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6682), 25, + ACTIONS(6672), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -447008,10 +452515,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [180929] = 3, + [183040] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6524), 11, + ACTIONS(6606), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -447023,7 +452530,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6526), 25, + ACTIONS(6608), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -447049,10 +452556,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [180973] = 3, + [183084] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6520), 11, + ACTIONS(6610), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -447064,7 +452571,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6522), 25, + ACTIONS(6612), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -447090,48 +452597,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [181017] = 16, + [183128] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(7059), 1, + ACTIONS(7065), 1, anon_sym_const, - ACTIONS(7842), 1, + ACTIONS(7848), 1, anon_sym_LPAREN2, - ACTIONS(7856), 1, + ACTIONS(7862), 1, anon_sym_LBRACK, - ACTIONS(8367), 1, + ACTIONS(8371), 1, anon_sym_STAR, - ACTIONS(8369), 1, + ACTIONS(8373), 1, anon_sym_AMP_AMP, - ACTIONS(8371), 1, + ACTIONS(8375), 1, anon_sym_AMP, - STATE(3459), 1, + STATE(3515), 1, sym_parameter_list, - STATE(3992), 1, + STATE(4036), 1, sym_alignas_qualifier, - STATE(5792), 1, + STATE(5953), 1, sym__function_declarator_seq, - STATE(6621), 1, + STATE(6702), 1, sym__abstract_declarator, - ACTIONS(7061), 2, + ACTIONS(7067), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3727), 2, + STATE(3777), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(8441), 5, + ACTIONS(8487), 5, anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_final, anon_sym_override, anon_sym_requires, - STATE(5804), 5, + STATE(5952), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(7046), 12, + ACTIONS(7052), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -447144,48 +452651,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [181087] = 16, + [183198] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6698), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(6700), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [183242] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(7059), 1, + ACTIONS(7065), 1, anon_sym_const, - ACTIONS(7842), 1, + ACTIONS(7848), 1, anon_sym_LPAREN2, - ACTIONS(7856), 1, + ACTIONS(7862), 1, anon_sym_LBRACK, - ACTIONS(8367), 1, + ACTIONS(8371), 1, anon_sym_STAR, - ACTIONS(8369), 1, + ACTIONS(8373), 1, anon_sym_AMP_AMP, - ACTIONS(8371), 1, + ACTIONS(8375), 1, anon_sym_AMP, - STATE(3459), 1, + STATE(3515), 1, sym_parameter_list, - STATE(3992), 1, + STATE(4036), 1, sym_alignas_qualifier, - STATE(5792), 1, + STATE(5953), 1, sym__function_declarator_seq, - STATE(6623), 1, + STATE(6712), 1, sym__abstract_declarator, - ACTIONS(7061), 2, + ACTIONS(7067), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3727), 2, + STATE(3777), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(5865), 5, + ACTIONS(5877), 5, anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_final, anon_sym_override, anon_sym_requires, - STATE(5804), 5, + STATE(5952), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(7046), 12, + ACTIONS(7052), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -447198,10 +452746,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [181157] = 3, + [183312] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6560), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(6562), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [183356] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6578), 11, + ACTIONS(6540), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -447213,7 +452802,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6580), 25, + ACTIONS(6542), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -447239,48 +452828,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [181201] = 16, + [183400] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(7059), 1, + ACTIONS(7065), 1, anon_sym_const, - ACTIONS(7842), 1, + ACTIONS(7848), 1, anon_sym_LPAREN2, - ACTIONS(7856), 1, + ACTIONS(7862), 1, anon_sym_LBRACK, - ACTIONS(8367), 1, + ACTIONS(8371), 1, anon_sym_STAR, - ACTIONS(8369), 1, + ACTIONS(8373), 1, anon_sym_AMP_AMP, - ACTIONS(8371), 1, + ACTIONS(8375), 1, anon_sym_AMP, - STATE(3459), 1, + STATE(3515), 1, sym_parameter_list, - STATE(3992), 1, + STATE(4036), 1, sym_alignas_qualifier, - STATE(5792), 1, + STATE(5953), 1, sym__function_declarator_seq, - STATE(6624), 1, + STATE(6716), 1, sym__abstract_declarator, - ACTIONS(7061), 2, + ACTIONS(7067), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3727), 2, + STATE(3777), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(8445), 5, + ACTIONS(8453), 5, anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_final, anon_sym_override, anon_sym_requires, - STATE(5804), 5, + STATE(5952), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(7046), 12, + ACTIONS(7052), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -447293,48 +452882,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [181271] = 16, + [183470] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(7059), 1, + ACTIONS(7065), 1, anon_sym_const, - ACTIONS(7842), 1, + ACTIONS(7848), 1, anon_sym_LPAREN2, - ACTIONS(7856), 1, + ACTIONS(7862), 1, anon_sym_LBRACK, - ACTIONS(8367), 1, + ACTIONS(8371), 1, anon_sym_STAR, - ACTIONS(8369), 1, + ACTIONS(8373), 1, anon_sym_AMP_AMP, - ACTIONS(8371), 1, + ACTIONS(8375), 1, anon_sym_AMP, - STATE(3459), 1, + STATE(3515), 1, sym_parameter_list, - STATE(3992), 1, + STATE(4036), 1, sym_alignas_qualifier, - STATE(5792), 1, + STATE(5953), 1, sym__function_declarator_seq, - STATE(6625), 1, + STATE(6720), 1, sym__abstract_declarator, - ACTIONS(7061), 2, + ACTIONS(7067), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3727), 2, + STATE(3777), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(6748), 5, + ACTIONS(6781), 5, anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_final, anon_sym_override, anon_sym_requires, - STATE(5804), 5, + STATE(5952), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(7046), 12, + ACTIONS(7052), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -447347,140 +452936,302 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [181341] = 24, + [183540] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(7042), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(2997), 1, + anon_sym_LPAREN2, + ACTIONS(2999), 1, + anon_sym_TILDE, + ACTIONS(7103), 1, + anon_sym_LBRACK, + ACTIONS(7209), 1, + sym_identifier, + ACTIONS(7217), 1, + anon_sym_COLON_COLON, + ACTIONS(7265), 1, + anon_sym_STAR, + ACTIONS(7267), 1, anon_sym_AMP_AMP, - ACTIONS(7044), 1, + ACTIONS(7269), 1, anon_sym_AMP, - ACTIONS(7065), 1, + STATE(5306), 1, + sym_ms_call_modifier, + STATE(5895), 1, + sym__scope_resolution, + STATE(6633), 1, + sym__declarator, + STATE(8135), 1, + sym_ms_based_modifier, + STATE(8569), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(1806), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(6145), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [183618] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6548), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(6550), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [183662] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7048), 1, + anon_sym_AMP_AMP, + ACTIONS(7050), 1, + anon_sym_AMP, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7072), 1, + ACTIONS(7075), 1, anon_sym_noexcept, - ACTIONS(7074), 1, + ACTIONS(7077), 1, anon_sym_throw, - ACTIONS(7079), 1, - anon_sym_requires, - ACTIONS(7083), 1, + ACTIONS(7283), 1, anon_sym___attribute__, - ACTIONS(7085), 1, + ACTIONS(7285), 1, anon_sym___attribute, - ACTIONS(7087), 1, + ACTIONS(7287), 1, anon_sym_DASH_GT, - ACTIONS(9190), 1, + ACTIONS(9147), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9193), 1, + ACTIONS(9150), 1, anon_sym_LBRACK, - STATE(4954), 1, + ACTIONS(9196), 1, + anon_sym_requires, + STATE(5043), 1, sym_ref_qualifier, - STATE(5534), 1, + STATE(5655), 1, sym_trailing_return_type, - STATE(5963), 1, + STATE(6061), 1, sym__function_attributes_end, - STATE(6745), 1, + STATE(6850), 1, sym_gnu_asm_expression, - ACTIONS(6020), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7063), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - STATE(5428), 2, + ACTIONS(9193), 2, + anon_sym_final, + anon_sym_override, + STATE(5540), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5606), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5733), 2, + STATE(5730), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5877), 2, + STATE(5927), 2, sym__function_postfix, sym_requires_clause, - STATE(5289), 3, + STATE(5370), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9182), 6, + ACTIONS(9139), 6, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [181427] = 24, + [183748] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7042), 1, - anon_sym_AMP_AMP, - ACTIONS(7044), 1, - anon_sym_AMP, - ACTIONS(7072), 1, - anon_sym_noexcept, - ACTIONS(7074), 1, - anon_sym_throw, - ACTIONS(7083), 1, + ACTIONS(8902), 1, anon_sym___attribute__, - ACTIONS(7085), 1, + ACTIONS(8904), 1, anon_sym___attribute, - ACTIONS(7179), 1, - anon_sym_DASH_GT, - ACTIONS(9190), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9193), 1, - anon_sym_LBRACK, - ACTIONS(9198), 1, - anon_sym_requires, - ACTIONS(9273), 1, - anon_sym___asm, - STATE(4966), 1, - sym_ref_qualifier, - STATE(5514), 1, - sym_trailing_return_type, - STATE(5714), 1, - sym__function_attributes_end, - STATE(6745), 1, - sym_gnu_asm_expression, - ACTIONS(9195), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(9270), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(5428), 2, + ACTIONS(9067), 1, + anon_sym_LBRACE, + STATE(4960), 1, + sym_enumerator_list, + STATE(5001), 1, sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5606), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5733), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5877), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5298), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9182), 6, + ACTIONS(6066), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(6068), 29, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, + anon_sym___extension__, + anon_sym_LBRACK, anon_sym_EQ, - [181513] = 5, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [183802] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9279), 2, + ACTIONS(6590), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(6592), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, anon_sym_and, - ACTIONS(9289), 2, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [183846] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6650), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(6652), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, - ACTIONS(6253), 11, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [183890] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9300), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6248), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -447492,12 +453243,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6255), 21, + ACTIONS(6250), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -447505,6 +453257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, @@ -447514,56 +453267,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [181561] = 8, + [183936] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(8874), 1, - anon_sym___attribute__, - ACTIONS(8876), 1, - anon_sym___attribute, - ACTIONS(8991), 1, - anon_sym_LBRACE, - STATE(4870), 1, - sym_enumerator_list, - STATE(4915), 1, - sym_attribute_specifier, - ACTIONS(6024), 2, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(2997), 1, + anon_sym_LPAREN2, + ACTIONS(2999), 1, + anon_sym_TILDE, + ACTIONS(7103), 1, + anon_sym_LBRACK, + ACTIONS(7209), 1, + sym_identifier, + ACTIONS(7217), 1, + anon_sym_COLON_COLON, + ACTIONS(7265), 1, + anon_sym_STAR, + ACTIONS(7267), 1, + anon_sym_AMP_AMP, + ACTIONS(7269), 1, anon_sym_AMP, - anon_sym_const, - ACTIONS(6026), 29, + STATE(5341), 1, + sym_ms_call_modifier, + STATE(5895), 1, + sym__scope_resolution, + STATE(6618), 1, + sym__declarator, + STATE(8135), 1, + sym_ms_based_modifier, + STATE(8569), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(1806), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(6145), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [184014] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6674), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(6676), 25, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [181615] = 3, + [184058] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6570), 11, + ACTIONS(6552), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -447575,7 +453381,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6572), 25, + ACTIONS(6554), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -447601,10 +453407,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [181659] = 3, + [184102] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6558), 11, + ACTIONS(6556), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -447616,7 +453422,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6560), 25, + ACTIONS(6558), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -447642,10 +453448,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [181703] = 3, + [184146] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4154), 11, + ACTIONS(5450), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -447657,7 +453463,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4146), 25, + ACTIONS(2729), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -447683,29 +453489,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [181747] = 7, + [184190] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(4290), 1, - anon_sym_SEMI, - ACTIONS(5036), 1, + ACTIONS(7048), 1, + anon_sym_AMP_AMP, + ACTIONS(7050), 1, + anon_sym_AMP, + ACTIONS(7075), 1, + anon_sym_noexcept, + ACTIONS(7077), 1, + anon_sym_throw, + ACTIONS(7079), 1, + anon_sym_requires, + ACTIONS(7283), 1, + anon_sym___attribute__, + ACTIONS(7285), 1, + anon_sym___attribute, + ACTIONS(7318), 1, + anon_sym_DASH_GT, + ACTIONS(9147), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5946), 1, - anon_sym_LPAREN2, - ACTIONS(5949), 1, + ACTIONS(9150), 1, anon_sym_LBRACK, - ACTIONS(4154), 9, + ACTIONS(9305), 1, + anon_sym___asm, + STATE(5024), 1, + sym_ref_qualifier, + STATE(5671), 1, + sym_trailing_return_type, + STATE(5779), 1, + sym__function_attributes_end, + STATE(6850), 1, + sym_gnu_asm_expression, + ACTIONS(6037), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(9302), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5540), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5730), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5927), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5372), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9139), 6, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + [184276] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6634), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4146), 23, + ACTIONS(6636), 25, anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -447713,9 +453577,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [184320] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6682), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(6684), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [184364] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6614), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(6616), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -447728,10 +453673,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [181799] = 3, + anon_sym_GT2, + [184408] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6706), 11, + ACTIONS(6714), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -447743,7 +453689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6708), 25, + ACTIONS(6716), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -447769,10 +453715,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [181843] = 3, + [184452] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(2997), 1, + anon_sym_LPAREN2, + ACTIONS(2999), 1, + anon_sym_TILDE, + ACTIONS(7103), 1, + anon_sym_LBRACK, + ACTIONS(7209), 1, + sym_identifier, + ACTIONS(7217), 1, + anon_sym_COLON_COLON, + ACTIONS(7265), 1, + anon_sym_STAR, + ACTIONS(7267), 1, + anon_sym_AMP_AMP, + ACTIONS(7269), 1, + anon_sym_AMP, + STATE(5353), 1, + sym_ms_call_modifier, + STATE(5895), 1, + sym__scope_resolution, + STATE(6594), 1, + sym__declarator, + STATE(8135), 1, + sym_ms_based_modifier, + STATE(8569), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(1806), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(6145), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [184530] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7048), 1, + anon_sym_AMP_AMP, + ACTIONS(7050), 1, + anon_sym_AMP, + ACTIONS(7071), 1, + anon_sym___asm, + ACTIONS(7075), 1, + anon_sym_noexcept, + ACTIONS(7077), 1, + anon_sym_throw, + ACTIONS(7079), 1, + anon_sym_requires, + ACTIONS(7283), 1, + anon_sym___attribute__, + ACTIONS(7285), 1, + anon_sym___attribute, + ACTIONS(7287), 1, + anon_sym_DASH_GT, + ACTIONS(9147), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9150), 1, + anon_sym_LBRACK, + STATE(5026), 1, + sym_ref_qualifier, + STATE(5671), 1, + sym_trailing_return_type, + STATE(6070), 1, + sym__function_attributes_end, + STATE(6850), 1, + sym_gnu_asm_expression, + ACTIONS(6037), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7069), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5540), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5730), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5927), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5358), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9139), 6, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [184616] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5442), 11, + ACTIONS(6666), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -447784,7 +453850,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(2685), 25, + ACTIONS(6668), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -447810,92 +453876,221 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [181887] = 3, + [184660] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4304), 1, + anon_sym_SEMI, + ACTIONS(5044), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6008), 1, + anon_sym_LPAREN2, + ACTIONS(6011), 1, + anon_sym_LBRACK, + ACTIONS(4174), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4166), 23, + anon_sym_DOT_DOT_DOT, + 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_LT, + anon_sym_GT_GT, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [184712] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8902), 1, + anon_sym___attribute__, + ACTIONS(8904), 1, + anon_sym___attribute, + ACTIONS(9067), 1, + anon_sym_LBRACE, + STATE(4964), 1, + sym_enumerator_list, + STATE(5010), 1, + sym_attribute_specifier, + ACTIONS(6072), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(6074), 29, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [184766] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3339), 1, + anon_sym_const, + ACTIONS(5020), 1, + anon_sym_LPAREN2, + ACTIONS(8147), 1, + anon_sym_LBRACK, + ACTIONS(8179), 1, + sym_auto, + ACTIONS(8181), 1, + anon_sym_decltype, + ACTIONS(8638), 1, + anon_sym_STAR, + ACTIONS(8640), 1, + anon_sym_AMP_AMP, + ACTIONS(8642), 1, + anon_sym_AMP, + STATE(1864), 1, + sym_decltype_auto, + STATE(3510), 1, + sym_parameter_list, + STATE(4325), 1, + sym_alignas_qualifier, + STATE(6109), 1, + sym__function_declarator_seq, + STATE(6899), 1, + sym__abstract_declarator, + ACTIONS(8149), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(8221), 2, + anon_sym_LBRACE, + anon_sym_requires, + STATE(5018), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6099), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8141), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [184842] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(6562), 11, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(5845), 1, + anon_sym_LPAREN2, + ACTIONS(6414), 1, + anon_sym_LBRACK, + ACTIONS(6418), 1, + anon_sym_DOT, + ACTIONS(8449), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8677), 1, anon_sym_SLASH, + ACTIONS(8681), 1, anon_sym_PIPE, + ACTIONS(8685), 1, anon_sym_AMP, - anon_sym_GT, + ACTIONS(8691), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6564), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, + ACTIONS(8695), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(8697), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(8699), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(8707), 1, + anon_sym_QMARK, + STATE(2491), 1, + sym_argument_list, + STATE(2492), 1, + sym_subscript_argument_list, + ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [181931] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6582), 11, + ACTIONS(8048), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8673), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6584), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(8675), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(8679), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8683), 2, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_xor, + ACTIONS(8693), 2, anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, + anon_sym_GT_GT, + ACTIONS(8701), 2, + anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, + ACTIONS(8687), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [181975] = 3, + ACTIONS(8689), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [184930] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6528), 11, + ACTIONS(6718), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -447907,7 +454102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6530), 25, + ACTIONS(6720), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -447933,97 +454128,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [182019] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8874), 1, - anon_sym___attribute__, - ACTIONS(8876), 1, - anon_sym___attribute, - ACTIONS(8991), 1, - anon_sym_LBRACE, - STATE(4884), 1, - sym_enumerator_list, - STATE(4913), 1, - sym_attribute_specifier, - ACTIONS(5983), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(5985), 29, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [182073] = 19, + [184974] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(3331), 1, + ACTIONS(3339), 1, anon_sym_const, - ACTIONS(5012), 1, + ACTIONS(5020), 1, anon_sym_LPAREN2, - ACTIONS(8131), 1, + ACTIONS(8147), 1, anon_sym_LBRACK, - ACTIONS(8149), 1, + ACTIONS(8179), 1, sym_auto, - ACTIONS(8151), 1, + ACTIONS(8181), 1, anon_sym_decltype, - ACTIONS(8602), 1, + ACTIONS(8638), 1, anon_sym_STAR, - ACTIONS(8604), 1, + ACTIONS(8640), 1, anon_sym_AMP_AMP, - ACTIONS(8606), 1, + ACTIONS(8642), 1, anon_sym_AMP, - STATE(1884), 1, + STATE(1864), 1, sym_decltype_auto, - STATE(3405), 1, + STATE(3510), 1, sym_parameter_list, - STATE(4289), 1, + STATE(4325), 1, sym_alignas_qualifier, - STATE(6087), 1, + STATE(6109), 1, sym__function_declarator_seq, - STATE(6807), 1, + STATE(6949), 1, sym__abstract_declarator, - ACTIONS(8133), 2, + ACTIONS(8149), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(8185), 2, + ACTIONS(8213), 2, anon_sym_LBRACE, anon_sym_requires, - STATE(4964), 2, + STATE(5036), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6092), 5, + STATE(6099), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8125), 12, + ACTIONS(8141), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -448036,10 +454185,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [182149] = 3, + [185050] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(7048), 1, + anon_sym_AMP_AMP, + ACTIONS(7050), 1, + anon_sym_AMP, + ACTIONS(7075), 1, + anon_sym_noexcept, + ACTIONS(7077), 1, + anon_sym_throw, + ACTIONS(7299), 1, + anon_sym___attribute__, + ACTIONS(7312), 1, + anon_sym_DASH_GT, + ACTIONS(9150), 1, + anon_sym_LBRACK, + ACTIONS(9305), 1, + anon_sym___asm, + ACTIONS(9308), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9311), 1, + anon_sym_requires, + STATE(5037), 1, + sym_ref_qualifier, + STATE(5528), 1, + sym_trailing_return_type, + STATE(5744), 1, + sym__function_attributes_end, + STATE(6870), 1, + sym_gnu_asm_expression, + ACTIONS(9193), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(9302), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5455), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5507), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5927), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5360), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9139), 6, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [185136] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6586), 11, + ACTIONS(6532), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -448051,7 +454262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6588), 25, + ACTIONS(6534), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -448077,10 +454288,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [182193] = 3, + [185180] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(2997), 1, + anon_sym_LPAREN2, + ACTIONS(2999), 1, + anon_sym_TILDE, + ACTIONS(7103), 1, + anon_sym_LBRACK, + ACTIONS(7209), 1, + sym_identifier, + ACTIONS(7217), 1, + anon_sym_COLON_COLON, + ACTIONS(7265), 1, + anon_sym_STAR, + ACTIONS(7267), 1, + anon_sym_AMP_AMP, + ACTIONS(7269), 1, + anon_sym_AMP, + STATE(5322), 1, + sym_ms_call_modifier, + STATE(5895), 1, + sym__scope_resolution, + STATE(6535), 1, + sym__declarator, + STATE(8135), 1, + sym_ms_based_modifier, + STATE(8569), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(1806), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(6145), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [185258] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6684), 11, + ACTIONS(6662), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -448092,7 +454361,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6686), 25, + ACTIONS(6664), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -448118,10 +454387,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [182237] = 3, + [185302] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6566), 11, + ACTIONS(6576), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -448133,7 +454402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6568), 25, + ACTIONS(6578), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -448159,24 +454428,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [182281] = 3, + [185346] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(7048), 1, + anon_sym_AMP_AMP, + ACTIONS(7050), 1, + anon_sym_AMP, + ACTIONS(7075), 1, + anon_sym_noexcept, + ACTIONS(7077), 1, + anon_sym_throw, + ACTIONS(7299), 1, + anon_sym___attribute__, + ACTIONS(7312), 1, + anon_sym_DASH_GT, + ACTIONS(7314), 1, + anon_sym_requires, + ACTIONS(9150), 1, + anon_sym_LBRACK, + ACTIONS(9305), 1, + anon_sym___asm, + ACTIONS(9308), 1, + anon_sym_LBRACK_LBRACK, + STATE(5028), 1, + sym_ref_qualifier, + STATE(5526), 1, + sym_trailing_return_type, + STATE(5729), 1, + sym__function_attributes_end, + STATE(6870), 1, + sym_gnu_asm_expression, + ACTIONS(6037), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(9302), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5455), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5507), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5927), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5361), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9139), 6, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [185432] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6672), 11, + ACTIONS(9314), 1, + anon_sym_COMMA, + ACTIONS(9316), 1, + anon_sym_RBRACK, + ACTIONS(4174), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6674), 25, + ACTIONS(4166), 25, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -448185,7 +454517,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -448199,134 +454533,684 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [182325] = 16, + [185480] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1852), 1, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1850), 1, anon_sym_operator, - ACTIONS(8427), 1, - sym_identifier, - ACTIONS(8429), 1, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(2997), 1, anon_sym_LPAREN2, - ACTIONS(8431), 1, + ACTIONS(2999), 1, + anon_sym_TILDE, + ACTIONS(7103), 1, + anon_sym_LBRACK, + ACTIONS(7209), 1, + sym_identifier, + ACTIONS(7217), 1, + anon_sym_COLON_COLON, + ACTIONS(7265), 1, anon_sym_STAR, - ACTIONS(8433), 1, + ACTIONS(7267), 1, anon_sym_AMP_AMP, - ACTIONS(8435), 1, + ACTIONS(7269), 1, anon_sym_AMP, - STATE(4289), 1, - sym_alignas_qualifier, - STATE(6146), 1, - sym__field_declarator, - STATE(6299), 1, - sym_operator_name, - STATE(8049), 1, + STATE(5321), 1, + sym_ms_call_modifier, + STATE(5895), 1, + sym__scope_resolution, + STATE(6529), 1, + sym__declarator, + STATE(8135), 1, sym_ms_based_modifier, - ACTIONS(3333), 2, + STATE(8569), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(1806), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(6145), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [185558] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(5028), 1, + anon_sym_COLON_COLON, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5495), 1, + anon_sym___declspec, + ACTIONS(6528), 1, + anon_sym_COLON, + ACTIONS(6530), 1, + anon_sym_LBRACE, + ACTIONS(9319), 1, + sym_identifier, + ACTIONS(9321), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9325), 1, + anon_sym_EQ, + STATE(1922), 1, + sym_template_type, + STATE(2459), 1, + sym__class_declaration, + STATE(2461), 1, + sym__class_declaration_item, + STATE(2962), 1, + sym_field_declaration_list, + STATE(5711), 1, + sym_ms_declspec_modifier, + STATE(6746), 1, + sym__scope_resolution, + STATE(7126), 1, + sym_virtual_specifier, + STATE(7712), 1, + sym_base_class_clause, + ACTIONS(5489), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4131), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6399), 7, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - sym_reference_field_declarator, - sym_template_method, - ACTIONS(3331), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [182394] = 24, + ACTIONS(5567), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(9323), 2, + anon_sym_COMMA, + anon_sym_GT2, + STATE(2440), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5713), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8569), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(5272), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + [185649] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5472), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7042), 1, + ACTIONS(7048), 1, anon_sym_AMP_AMP, - ACTIONS(7044), 1, + ACTIONS(7050), 1, anon_sym_AMP, - ACTIONS(7065), 1, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7072), 1, + ACTIONS(7075), 1, anon_sym_noexcept, - ACTIONS(7074), 1, + ACTIONS(7077), 1, anon_sym_throw, - ACTIONS(7447), 1, + ACTIONS(7299), 1, + anon_sym___attribute__, + ACTIONS(7357), 1, + anon_sym_DASH_GT, + ACTIONS(9150), 1, + anon_sym_LBRACK, + ACTIONS(9330), 1, + anon_sym_requires, + STATE(5079), 1, + sym_ref_qualifier, + STATE(6031), 1, + sym_trailing_return_type, + STATE(6264), 1, + sym__function_attributes_end, + STATE(6870), 1, + sym_gnu_asm_expression, + ACTIONS(7069), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9327), 2, + anon_sym_final, + anon_sym_override, + STATE(5455), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5507), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6017), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6149), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5380), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9139), 5, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [185734] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7048), 1, + anon_sym_AMP_AMP, + ACTIONS(7050), 1, + anon_sym_AMP, + ACTIONS(7071), 1, + anon_sym___asm, + ACTIONS(7075), 1, + anon_sym_noexcept, + ACTIONS(7077), 1, + anon_sym_throw, + ACTIONS(7375), 1, anon_sym_DASH_GT, - ACTIONS(9193), 1, + ACTIONS(9150), 1, anon_sym_LBRACK, - ACTIONS(9291), 1, + ACTIONS(9308), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9311), 1, + anon_sym_requires, + ACTIONS(9333), 1, anon_sym___attribute__, - ACTIONS(9294), 1, + ACTIONS(9336), 1, anon_sym___attribute, - ACTIONS(9300), 1, - anon_sym_requires, - STATE(5031), 1, + STATE(5066), 1, sym_ref_qualifier, - STATE(5932), 1, + STATE(5528), 1, sym_trailing_return_type, - STATE(5943), 1, + STATE(6001), 1, sym__function_attributes_end, - STATE(6766), 1, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(7063), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9297), 2, + ACTIONS(9193), 2, anon_sym_final, anon_sym_override, - STATE(5384), 2, + STATE(5455), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5458), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6012), 2, + STATE(5927), 2, sym__function_postfix, sym_requires_clause, - STATE(5318), 3, + STATE(5409), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9182), 5, + ACTIONS(9139), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_EQ, anon_sym_GT2, - [182479] = 6, + [185819] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(8874), 1, + ACTIONS(3339), 1, + anon_sym_const, + ACTIONS(5020), 1, + anon_sym_LPAREN2, + ACTIONS(5022), 1, + anon_sym_STAR, + ACTIONS(5024), 1, + anon_sym_AMP_AMP, + ACTIONS(5026), 1, + anon_sym_AMP, + ACTIONS(8147), 1, + anon_sym_LBRACK, + STATE(3113), 1, + sym_parameter_list, + STATE(4325), 1, + sym_alignas_qualifier, + STATE(6109), 1, + sym__function_declarator_seq, + STATE(6803), 1, + sym__abstract_declarator, + ACTIONS(8149), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4215), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6781), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6099), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8141), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [185888] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3339), 1, + anon_sym_const, + ACTIONS(5020), 1, + anon_sym_LPAREN2, + ACTIONS(8147), 1, + anon_sym_LBRACK, + ACTIONS(8481), 1, + anon_sym_STAR, + ACTIONS(8483), 1, + anon_sym_AMP_AMP, + ACTIONS(8485), 1, + anon_sym_AMP, + STATE(3021), 1, + sym_parameter_list, + STATE(4325), 1, + sym_alignas_qualifier, + STATE(6109), 1, + sym__function_declarator_seq, + STATE(6819), 1, + sym__abstract_declarator, + ACTIONS(8149), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4215), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(5877), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + STATE(6099), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8141), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [185957] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(8419), 1, + sym_identifier, + ACTIONS(8421), 1, + anon_sym_LPAREN2, + ACTIONS(8423), 1, + anon_sym_STAR, + ACTIONS(8425), 1, + anon_sym_AMP_AMP, + ACTIONS(8427), 1, + anon_sym_AMP, + STATE(4325), 1, + sym_alignas_qualifier, + STATE(6277), 1, + sym__field_declarator, + STATE(6445), 1, + sym_operator_name, + STATE(8851), 1, + sym_ms_based_modifier, + ACTIONS(3341), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4215), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6476), 7, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + sym_reference_field_declarator, + sym_template_method, + ACTIONS(3339), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [186026] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3339), 1, + anon_sym_const, + ACTIONS(5020), 1, + anon_sym_LPAREN2, + ACTIONS(8147), 1, + anon_sym_LBRACK, + ACTIONS(8481), 1, + anon_sym_STAR, + ACTIONS(8483), 1, + anon_sym_AMP_AMP, + ACTIONS(8485), 1, + anon_sym_AMP, + STATE(3021), 1, + sym_parameter_list, + STATE(4325), 1, + sym_alignas_qualifier, + STATE(6109), 1, + sym__function_declarator_seq, + STATE(6777), 1, + sym__abstract_declarator, + ACTIONS(8149), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4215), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6781), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + STATE(6099), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8141), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [186095] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(8421), 1, + anon_sym_LPAREN2, + ACTIONS(8473), 1, + sym_identifier, + ACTIONS(8475), 1, + anon_sym_STAR, + ACTIONS(8477), 1, + anon_sym_AMP_AMP, + ACTIONS(8479), 1, + anon_sym_AMP, + STATE(4325), 1, + sym_alignas_qualifier, + STATE(6780), 1, + sym__field_declarator, + STATE(6943), 1, + sym_operator_name, + STATE(8112), 1, + sym_ms_based_modifier, + ACTIONS(3341), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4215), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6476), 7, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + sym_reference_field_declarator, + sym_template_method, + ACTIONS(3339), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [186164] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9339), 1, + sym_identifier, + ACTIONS(9345), 1, + sym_primitive_type, + STATE(1680), 1, + sym_alignas_qualifier, + STATE(5067), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6375), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4925), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(5094), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACE, + ACTIONS(9342), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5096), 6, + anon_sym_AMP, anon_sym___attribute__, - ACTIONS(8876), 1, anon_sym___attribute, - STATE(4925), 1, - sym_attribute_specifier, - ACTIONS(6129), 2, + anon_sym___based, + sym_auto, + anon_sym_decltype, + ACTIONS(6370), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [186223] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(8421), 1, + anon_sym_LPAREN2, + ACTIONS(8473), 1, + sym_identifier, + ACTIONS(8475), 1, + anon_sym_STAR, + ACTIONS(8477), 1, + anon_sym_AMP_AMP, + ACTIONS(8479), 1, + anon_sym_AMP, + STATE(4325), 1, + sym_alignas_qualifier, + STATE(6774), 1, + sym__field_declarator, + STATE(6943), 1, + sym_operator_name, + STATE(8112), 1, + sym_ms_based_modifier, + ACTIONS(3341), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4215), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6476), 7, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + sym_reference_field_declarator, + sym_template_method, + ACTIONS(3339), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [186292] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(8421), 1, + anon_sym_LPAREN2, + ACTIONS(8473), 1, + sym_identifier, + ACTIONS(8475), 1, + anon_sym_STAR, + ACTIONS(8477), 1, + anon_sym_AMP_AMP, + ACTIONS(8479), 1, + anon_sym_AMP, + STATE(4325), 1, + sym_alignas_qualifier, + STATE(6802), 1, + sym__field_declarator, + STATE(6943), 1, + sym_operator_name, + STATE(8112), 1, + sym_ms_based_modifier, + ACTIONS(3341), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4215), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6476), 7, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + sym_reference_field_declarator, + sym_template_method, + ACTIONS(3339), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [186361] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4187), 1, + anon_sym_COLON_COLON, + ACTIONS(8725), 1, + anon_sym_LT, + STATE(1863), 1, + sym_template_argument_list, + ACTIONS(5834), 4, anon_sym_AMP, + anon_sym___attribute, + anon_sym_COLON, anon_sym_const, - ACTIONS(6131), 30, + ACTIONS(4192), 28, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -448334,9 +455218,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, + anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -448354,54 +455238,302 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, anon_sym_requires, - [182528] = 19, + [186410] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6256), 1, + anon_sym_LBRACE, + ACTIONS(9348), 1, + anon_sym_COLON, + STATE(1880), 1, + sym_attribute_specifier, + STATE(5034), 1, + sym__enum_base_clause, + STATE(5196), 1, + sym_enumerator_list, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(6395), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(6393), 25, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + sym_auto, + anon_sym_decltype, + [186465] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5020), 1, + anon_sym_LPAREN2, + ACTIONS(5652), 1, + anon_sym_const, + ACTIONS(8147), 1, + anon_sym_LBRACK, + ACTIONS(8457), 1, + anon_sym_STAR, + ACTIONS(8459), 1, + anon_sym_AMP_AMP, + ACTIONS(8461), 1, + anon_sym_AMP, + STATE(1702), 1, + sym_alignas_qualifier, + STATE(3551), 1, + sym_parameter_list, + STATE(6109), 1, + sym__function_declarator_seq, + STATE(6768), 1, + sym__abstract_declarator, + ACTIONS(8471), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1676), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8487), 4, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(6099), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8463), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [186534] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5020), 1, + anon_sym_LPAREN2, + ACTIONS(5652), 1, + anon_sym_const, + ACTIONS(8147), 1, + anon_sym_LBRACK, + ACTIONS(8457), 1, + anon_sym_STAR, + ACTIONS(8459), 1, + anon_sym_AMP_AMP, + ACTIONS(8461), 1, + anon_sym_AMP, + STATE(1702), 1, + sym_alignas_qualifier, + STATE(3551), 1, + sym_parameter_list, + STATE(6109), 1, + sym__function_declarator_seq, + STATE(6790), 1, + sym__abstract_declarator, + ACTIONS(8471), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1676), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(5877), 4, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(6099), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8463), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [186603] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5020), 1, + anon_sym_LPAREN2, + ACTIONS(5652), 1, + anon_sym_const, + ACTIONS(8147), 1, + anon_sym_LBRACK, + ACTIONS(8457), 1, + anon_sym_STAR, + ACTIONS(8459), 1, + anon_sym_AMP_AMP, + ACTIONS(8461), 1, + anon_sym_AMP, + STATE(1702), 1, + sym_alignas_qualifier, + STATE(3551), 1, + sym_parameter_list, + STATE(6109), 1, + sym__function_declarator_seq, + STATE(6772), 1, + sym__abstract_declarator, + ACTIONS(8471), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1676), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8453), 4, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(6099), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8463), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [186672] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5020), 1, + anon_sym_LPAREN2, + ACTIONS(5652), 1, + anon_sym_const, + ACTIONS(8147), 1, + anon_sym_LBRACK, + ACTIONS(8457), 1, + anon_sym_STAR, + ACTIONS(8459), 1, + anon_sym_AMP_AMP, + ACTIONS(8461), 1, + anon_sym_AMP, + STATE(1702), 1, + sym_alignas_qualifier, + STATE(3551), 1, + sym_parameter_list, + STATE(6109), 1, + sym__function_declarator_seq, + STATE(6791), 1, + sym__abstract_declarator, + ACTIONS(8471), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1676), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6781), 4, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(6099), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8463), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [186741] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5012), 1, - anon_sym_LPAREN2, - ACTIONS(5706), 1, - anon_sym_const, - ACTIONS(8131), 1, - anon_sym_LBRACK, - ACTIONS(8149), 1, - sym_auto, - ACTIONS(8151), 1, - anon_sym_decltype, - ACTIONS(8205), 1, - anon_sym_COLON, - ACTIONS(8685), 1, - anon_sym_STAR, - ACTIONS(8687), 1, - anon_sym_AMP_AMP, - ACTIONS(8689), 1, - anon_sym_AMP, - STATE(1695), 1, + ACTIONS(9350), 1, + sym_identifier, + ACTIONS(9356), 1, + sym_primitive_type, + STATE(1680), 1, sym_alignas_qualifier, - STATE(1884), 1, - sym_decltype_auto, - STATE(3485), 1, - sym_parameter_list, - STATE(6087), 1, - sym__function_declarator_seq, - STATE(6886), 1, - sym__abstract_declarator, - ACTIONS(8387), 2, + STATE(5096), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6388), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4997), 2, + STATE(1669), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6092), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8379), 12, + ACTIONS(5109), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACE, + ACTIONS(9353), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5111), 6, + anon_sym_AMP, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___based, + sym_auto, + anon_sym_decltype, + ACTIONS(6383), 13, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -448413,27 +455545,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [182603] = 9, + [186800] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6186), 1, + ACTIONS(6256), 1, anon_sym_LBRACE, - ACTIONS(9303), 1, + ACTIONS(9348), 1, anon_sym_COLON, - STATE(1841), 1, + STATE(1898), 1, sym_attribute_specifier, - STATE(4961), 1, + STATE(5035), 1, sym__enum_base_clause, - STATE(5154), 1, + STATE(5202), 1, sym_enumerator_list, ACTIONS(43), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(6338), 3, + ACTIONS(6318), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(6336), 25, + ACTIONS(6316), 25, anon_sym_AMP, anon_sym___extension__, anon_sym___based, @@ -448459,91 +455591,109 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - [182658] = 6, + [186855] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(4167), 1, - anon_sym_COLON_COLON, - ACTIONS(8697), 1, - anon_sym_LT, - STATE(1844), 1, - sym_template_argument_list, - ACTIONS(4963), 4, - anon_sym_AMP, + ACTIONS(43), 1, anon_sym___attribute, - anon_sym_COLON, - anon_sym_const, - ACTIONS(4970), 28, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7048), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, + ACTIONS(7050), 1, + anon_sym_AMP, + ACTIONS(7071), 1, + anon_sym___asm, + ACTIONS(7075), 1, + anon_sym_noexcept, + ACTIONS(7077), 1, + anon_sym_throw, + ACTIONS(7299), 1, anon_sym___attribute__, - anon_sym_LBRACE, + ACTIONS(7424), 1, + anon_sym_DASH_GT, + ACTIONS(7447), 1, + anon_sym_requires, + ACTIONS(9150), 1, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_auto, - anon_sym_decltype, + STATE(5048), 1, + sym_ref_qualifier, + STATE(6123), 1, + sym_trailing_return_type, + STATE(6207), 1, + sym__function_attributes_end, + STATE(6870), 1, + sym_gnu_asm_expression, + ACTIONS(7069), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7359), 2, anon_sym_final, anon_sym_override, - anon_sym_requires, - [182707] = 16, + STATE(5455), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5507), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6017), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6149), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5384), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9139), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + [186940] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3331), 1, - anon_sym_const, - ACTIONS(5012), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(8419), 1, + sym_identifier, + ACTIONS(8421), 1, anon_sym_LPAREN2, - ACTIONS(8131), 1, - anon_sym_LBRACK, - ACTIONS(8473), 1, + ACTIONS(8423), 1, anon_sym_STAR, - ACTIONS(8475), 1, + ACTIONS(8425), 1, anon_sym_AMP_AMP, - ACTIONS(8477), 1, + ACTIONS(8427), 1, anon_sym_AMP, - STATE(3053), 1, - sym_parameter_list, - STATE(4289), 1, + STATE(4325), 1, sym_alignas_qualifier, - STATE(6087), 1, - sym__function_declarator_seq, - STATE(6701), 1, - sym__abstract_declarator, - ACTIONS(8133), 2, + STATE(6229), 1, + sym__field_declarator, + STATE(6445), 1, + sym_operator_name, + STATE(8851), 1, + sym_ms_based_modifier, + ACTIONS(3341), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4131), 2, + STATE(4215), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(6748), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - STATE(6092), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8125), 12, + STATE(6476), 7, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + sym_reference_field_declarator, + sym_template_method, + ACTIONS(3339), 13, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -448555,47 +455705,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [182776] = 16, + [187009] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(8427), 1, - sym_identifier, - ACTIONS(8429), 1, + ACTIONS(4187), 1, + anon_sym_COLON_COLON, + ACTIONS(6580), 1, + anon_sym_LT, + STATE(1623), 1, + sym_template_argument_list, + STATE(5098), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6060), 4, anon_sym_LPAREN2, - ACTIONS(8431), 1, anon_sym_STAR, - ACTIONS(8433), 1, anon_sym_AMP_AMP, - ACTIONS(8435), 1, + anon_sym_LBRACE, + ACTIONS(6058), 27, anon_sym_AMP, - STATE(4289), 1, - sym_alignas_qualifier, - STATE(6137), 1, - sym__field_declarator, - STATE(6299), 1, - sym_operator_name, - STATE(8049), 1, - sym_ms_based_modifier, - ACTIONS(3333), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4131), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6399), 7, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - sym_reference_field_declarator, - sym_template_method, - ACTIONS(3331), 13, anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -448608,12 +455743,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [182845] = 4, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + sym_auto, + anon_sym_decltype, + [187060] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4290), 1, + ACTIONS(4304), 1, anon_sym_SEMI, - ACTIONS(4154), 9, + ACTIONS(4174), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -448623,7 +455764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(4146), 25, + ACTIONS(4166), 25, anon_sym_DOT_DOT_DOT, anon_sym_LPAREN2, anon_sym_STAR, @@ -448649,48 +455790,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [182890] = 16, + [187105] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(8429), 1, + ACTIONS(4187), 1, + anon_sym_COLON_COLON, + ACTIONS(6580), 1, + anon_sym_LT, + STATE(1623), 1, + sym_template_argument_list, + STATE(4250), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(4164), 4, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(8344), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4172), 23, anon_sym_LPAREN2, - ACTIONS(8459), 1, - sym_identifier, - ACTIONS(8461), 1, anon_sym_STAR, - ACTIONS(8463), 1, anon_sym_AMP_AMP, - ACTIONS(8465), 1, - anon_sym_AMP, - STATE(4289), 1, - sym_alignas_qualifier, - STATE(6677), 1, - sym__field_declarator, - STATE(6800), 1, - sym_operator_name, - STATE(8225), 1, - sym_ms_based_modifier, - ACTIONS(3333), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4131), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6399), 7, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - sym_reference_field_declarator, - sym_template_method, - ACTIONS(3331), 13, anon_sym___extension__, - anon_sym_const, + anon_sym_LBRACK_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -448702,31 +455828,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [182959] = 6, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [187158] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(8479), 1, + ACTIONS(5020), 1, + anon_sym_LPAREN2, + ACTIONS(5652), 1, + anon_sym_const, + ACTIONS(8147), 1, + anon_sym_LBRACK, + ACTIONS(8179), 1, sym_auto, - ACTIONS(8481), 1, + ACTIONS(8181), 1, anon_sym_decltype, - STATE(4924), 1, - sym_decltype_auto, - ACTIONS(5589), 3, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(5591), 29, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(8213), 1, + anon_sym_COLON, + ACTIONS(8715), 1, anon_sym_STAR, + ACTIONS(8717), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(8719), 1, + anon_sym_AMP, + STATE(1702), 1, + sym_alignas_qualifier, + STATE(1864), 1, + sym_decltype_auto, + STATE(3538), 1, + sym_parameter_list, + STATE(6109), 1, + sym__function_declarator_seq, + STATE(7004), 1, + sym__abstract_declarator, + ACTIONS(8471), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5078), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6099), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8463), 12, anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -448738,39 +455891,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [183008] = 7, + [187233] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(4167), 1, - anon_sym_COLON_COLON, - ACTIONS(6630), 1, - anon_sym_LT, - STATE(1603), 1, - sym_template_argument_list, - STATE(5029), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5979), 4, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(8419), 1, + sym_identifier, + ACTIONS(8421), 1, anon_sym_LPAREN2, + ACTIONS(8423), 1, anon_sym_STAR, + ACTIONS(8425), 1, anon_sym_AMP_AMP, - anon_sym_LBRACE, - ACTIONS(5977), 27, + ACTIONS(8427), 1, anon_sym_AMP, + STATE(4325), 1, + sym_alignas_qualifier, + STATE(6261), 1, + sym__field_declarator, + STATE(6445), 1, + sym_operator_name, + STATE(8851), 1, + sym_ms_based_modifier, + ACTIONS(3341), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4215), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6476), 7, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + sym_reference_field_declarator, + sym_template_method, + ACTIONS(3339), 13, anon_sym___extension__, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -448783,53 +455944,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - sym_auto, - anon_sym_decltype, - [183059] = 16, + [187302] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3331), 1, + ACTIONS(3339), 1, anon_sym_const, - ACTIONS(5012), 1, + ACTIONS(5020), 1, anon_sym_LPAREN2, - ACTIONS(5014), 1, + ACTIONS(5022), 1, anon_sym_STAR, - ACTIONS(5016), 1, + ACTIONS(5024), 1, anon_sym_AMP_AMP, - ACTIONS(5018), 1, + ACTIONS(5026), 1, anon_sym_AMP, - ACTIONS(8131), 1, + ACTIONS(8147), 1, anon_sym_LBRACK, - STATE(3004), 1, + STATE(3113), 1, sym_parameter_list, - STATE(4289), 1, + STATE(4325), 1, sym_alignas_qualifier, - STATE(6087), 1, + STATE(6109), 1, sym__function_declarator_seq, - STATE(6687), 1, + STATE(6756), 1, sym__abstract_declarator, - ACTIONS(8133), 2, + ACTIONS(8149), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4131), 2, + STATE(4215), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(5865), 4, + ACTIONS(8487), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LBRACE, - STATE(6092), 5, + STATE(6099), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8125), 12, + ACTIONS(8141), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -448842,82 +455997,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [183128] = 16, + [187371] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3331), 1, + ACTIONS(3339), 1, anon_sym_const, - ACTIONS(5012), 1, + ACTIONS(5020), 1, anon_sym_LPAREN2, - ACTIONS(5014), 1, + ACTIONS(5022), 1, anon_sym_STAR, - ACTIONS(5016), 1, + ACTIONS(5024), 1, anon_sym_AMP_AMP, - ACTIONS(5018), 1, + ACTIONS(5026), 1, anon_sym_AMP, - ACTIONS(8131), 1, + ACTIONS(8147), 1, anon_sym_LBRACK, - STATE(3004), 1, + STATE(3113), 1, sym_parameter_list, - STATE(4289), 1, + STATE(4325), 1, sym_alignas_qualifier, - STATE(6087), 1, + STATE(6109), 1, sym__function_declarator_seq, - STATE(6690), 1, + STATE(6754), 1, sym__abstract_declarator, - ACTIONS(8133), 2, + ACTIONS(8149), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4131), 2, + STATE(4215), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(6748), 4, + ACTIONS(5877), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LBRACE, - STATE(6092), 5, + STATE(6099), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8125), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [183197] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8874), 1, - anon_sym___attribute__, - ACTIONS(8876), 1, - anon_sym___attribute, - STATE(4916), 1, - sym_attribute_specifier, - ACTIONS(6151), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(6153), 30, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(8141), 12, anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -448929,203 +456050,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [183246] = 24, + [187440] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7042), 1, + ACTIONS(7048), 1, anon_sym_AMP_AMP, - ACTIONS(7044), 1, + ACTIONS(7050), 1, anon_sym_AMP, - ACTIONS(7065), 1, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7072), 1, + ACTIONS(7075), 1, anon_sym_noexcept, - ACTIONS(7074), 1, + ACTIONS(7077), 1, anon_sym_throw, - ACTIONS(7147), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - ACTIONS(7330), 1, + ACTIONS(7393), 1, anon_sym_DASH_GT, - ACTIONS(7400), 1, - anon_sym_requires, - ACTIONS(9193), 1, + ACTIONS(9150), 1, anon_sym_LBRACK, - STATE(5000), 1, + ACTIONS(9308), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9359), 1, + anon_sym_requires, + STATE(5091), 1, sym_ref_qualifier, - STATE(5909), 1, + STATE(6044), 1, sym_trailing_return_type, - STATE(6127), 1, + STATE(6157), 1, sym__function_attributes_end, - STATE(6766), 1, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(7063), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7335), 2, + ACTIONS(9193), 2, anon_sym_final, anon_sym_override, - STATE(5384), 2, + STATE(5455), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5458), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6012), 2, + STATE(5927), 2, sym__function_postfix, sym_requires_clause, - STATE(5307), 3, + STATE(5375), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9182), 5, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [183331] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8874), 1, - anon_sym___attribute__, - ACTIONS(8876), 1, - anon_sym___attribute, - STATE(4940), 1, - sym_attribute_specifier, - ACTIONS(6062), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(6064), 30, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [183380] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5629), 3, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(5631), 32, - anon_sym_COMMA, + ACTIONS(9139), 5, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON_COLON, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [183423] = 19, + [187525] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(5012), 1, + ACTIONS(5020), 1, anon_sym_LPAREN2, - ACTIONS(5706), 1, + ACTIONS(5652), 1, anon_sym_const, - ACTIONS(8131), 1, + ACTIONS(8147), 1, anon_sym_LBRACK, - ACTIONS(8149), 1, + ACTIONS(8179), 1, sym_auto, - ACTIONS(8151), 1, + ACTIONS(8181), 1, anon_sym_decltype, - ACTIONS(8185), 1, + ACTIONS(8221), 1, anon_sym_COLON, - ACTIONS(8685), 1, + ACTIONS(8715), 1, anon_sym_STAR, - ACTIONS(8687), 1, + ACTIONS(8717), 1, anon_sym_AMP_AMP, - ACTIONS(8689), 1, + ACTIONS(8719), 1, anon_sym_AMP, - STATE(1695), 1, + STATE(1702), 1, sym_alignas_qualifier, - STATE(1884), 1, + STATE(1864), 1, sym_decltype_auto, - STATE(3485), 1, + STATE(3538), 1, sym_parameter_list, - STATE(6087), 1, + STATE(6109), 1, sym__function_declarator_seq, - STATE(6857), 1, + STATE(7027), 1, sym__abstract_declarator, - ACTIONS(8387), 2, + ACTIONS(8471), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4976), 2, + STATE(5090), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6092), 5, + STATE(6099), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8379), 12, + ACTIONS(8463), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -449138,48 +456167,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [183498] = 16, + [187600] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(8429), 1, + ACTIONS(3339), 1, + anon_sym_const, + ACTIONS(5020), 1, anon_sym_LPAREN2, - ACTIONS(8459), 1, - sym_identifier, - ACTIONS(8461), 1, + ACTIONS(5022), 1, anon_sym_STAR, - ACTIONS(8463), 1, + ACTIONS(5024), 1, anon_sym_AMP_AMP, - ACTIONS(8465), 1, + ACTIONS(5026), 1, anon_sym_AMP, - STATE(4289), 1, + ACTIONS(8147), 1, + anon_sym_LBRACK, + STATE(3113), 1, + sym_parameter_list, + STATE(4325), 1, sym_alignas_qualifier, - STATE(6681), 1, - sym__field_declarator, - STATE(6800), 1, - sym_operator_name, - STATE(8225), 1, - sym_ms_based_modifier, - ACTIONS(3333), 2, + STATE(6109), 1, + sym__function_declarator_seq, + STATE(6751), 1, + sym__abstract_declarator, + ACTIONS(8149), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4131), 2, + STATE(4215), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6399), 7, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - sym_reference_field_declarator, - sym_template_method, - ACTIONS(3331), 13, + ACTIONS(8453), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6099), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8141), 12, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -449191,19 +456220,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [183567] = 6, + [187669] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(8874), 1, + ACTIONS(6031), 1, anon_sym___attribute__, - ACTIONS(8876), 1, + ACTIONS(6033), 1, anon_sym___attribute, - STATE(4926), 1, + ACTIONS(6256), 1, + anon_sym_LBRACE, + ACTIONS(9362), 1, + anon_sym_COLON, + STATE(1880), 1, sym_attribute_specifier, - ACTIONS(6117), 2, + STATE(2273), 1, + sym__enum_base_clause, + STATE(2387), 1, + sym_enumerator_list, + ACTIONS(6393), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(6119), 30, + ACTIONS(6395), 26, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -449211,9 +456248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, - anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -449231,285 +456266,200 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, anon_sym_requires, - [183616] = 10, + [187726] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(6358), 1, - anon_sym___attribute__, - ACTIONS(6360), 1, + ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(6729), 1, - anon_sym_LBRACE, - ACTIONS(9305), 1, - anon_sym_COLON, - STATE(2551), 1, - sym__enum_base_clause, - STATE(2642), 1, - sym_enumerator_list, - STATE(2696), 1, - sym_attribute_specifier, - ACTIONS(6342), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(6344), 26, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7048), 1, anon_sym_AMP_AMP, - anon_sym___extension__, + ACTIONS(7050), 1, + anon_sym_AMP, + ACTIONS(7071), 1, + anon_sym___asm, + ACTIONS(7075), 1, + anon_sym_noexcept, + ACTIONS(7077), 1, + anon_sym_throw, + ACTIONS(7299), 1, + anon_sym___attribute__, + ACTIONS(7357), 1, + anon_sym_DASH_GT, + ACTIONS(7361), 1, + anon_sym_requires, + ACTIONS(9150), 1, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_auto, - anon_sym_decltype, + STATE(5102), 1, + sym_ref_qualifier, + STATE(5975), 1, + sym_trailing_return_type, + STATE(6269), 1, + sym__function_attributes_end, + STATE(6870), 1, + sym_gnu_asm_expression, + ACTIONS(7069), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7359), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [183673] = 24, + STATE(5455), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5507), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6017), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6149), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5377), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9139), 5, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [187811] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(7042), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(7048), 1, anon_sym_AMP_AMP, - ACTIONS(7044), 1, + ACTIONS(7050), 1, anon_sym_AMP, - ACTIONS(7065), 1, - anon_sym___asm, - ACTIONS(7072), 1, + ACTIONS(7075), 1, anon_sym_noexcept, - ACTIONS(7074), 1, + ACTIONS(7077), 1, anon_sym_throw, - ACTIONS(7301), 1, + ACTIONS(7299), 1, + anon_sym___attribute__, + ACTIONS(7395), 1, anon_sym_requires, - ACTIONS(7313), 1, + ACTIONS(7443), 1, anon_sym_DASH_GT, - ACTIONS(9193), 1, + ACTIONS(9150), 1, anon_sym_LBRACK, - ACTIONS(9276), 1, + ACTIONS(9305), 1, + anon_sym___asm, + ACTIONS(9308), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9291), 1, - anon_sym___attribute__, - ACTIONS(9294), 1, - anon_sym___attribute, - STATE(5040), 1, + STATE(5103), 1, sym_ref_qualifier, - STATE(5453), 1, - sym_trailing_return_type, - STATE(5881), 1, + STATE(5883), 1, sym__function_attributes_end, - STATE(6766), 1, + STATE(6042), 1, + sym_trailing_return_type, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(6020), 2, + ACTIONS(6037), 2, anon_sym_final, anon_sym_override, - ACTIONS(7063), 2, + ACTIONS(9302), 2, anon_sym_asm, anon_sym___asm__, - STATE(5384), 2, + STATE(5455), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5458), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5606), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5877), 2, + STATE(5927), 2, sym__function_postfix, sym_requires_clause, - STATE(5312), 3, + STATE(5395), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9182), 5, + ACTIONS(9139), 5, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_EQ, - anon_sym_GT2, - [183758] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9307), 1, - sym_identifier, - ACTIONS(9313), 1, - sym_primitive_type, - STATE(1658), 1, - sym_alignas_qualifier, - STATE(4984), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6331), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1633), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(5100), 4, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(9310), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5102), 6, - anon_sym_AMP, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___based, - sym_auto, - anon_sym_decltype, - ACTIONS(6326), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [183817] = 24, + anon_sym_try, + [187896] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(7042), 1, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7048), 1, anon_sym_AMP_AMP, - ACTIONS(7044), 1, + ACTIONS(7050), 1, anon_sym_AMP, - ACTIONS(7065), 1, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7072), 1, + ACTIONS(7075), 1, anon_sym_noexcept, - ACTIONS(7074), 1, + ACTIONS(7077), 1, anon_sym_throw, - ACTIONS(7313), 1, + ACTIONS(7361), 1, + anon_sym_requires, + ACTIONS(7445), 1, anon_sym_DASH_GT, - ACTIONS(9193), 1, + ACTIONS(9150), 1, anon_sym_LBRACK, - ACTIONS(9276), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9281), 1, - anon_sym_requires, - ACTIONS(9291), 1, + ACTIONS(9333), 1, anon_sym___attribute__, - ACTIONS(9294), 1, + ACTIONS(9336), 1, anon_sym___attribute, - STATE(4989), 1, + STATE(5080), 1, sym_ref_qualifier, - STATE(5447), 1, + STATE(5975), 1, sym_trailing_return_type, - STATE(5882), 1, + STATE(6083), 1, sym__function_attributes_end, - STATE(6766), 1, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(7063), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9195), 2, + ACTIONS(7359), 2, anon_sym_final, anon_sym_override, - STATE(5384), 2, + STATE(5455), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5458), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5606), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5877), 2, + STATE(6149), 2, sym__function_postfix, sym_requires_clause, - STATE(5332), 3, + STATE(5403), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9182), 5, + ACTIONS(9139), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_EQ, anon_sym_GT2, - [183902] = 9, + [187981] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6186), 1, - anon_sym_LBRACE, - ACTIONS(9303), 1, - anon_sym_COLON, - STATE(1866), 1, - sym_attribute_specifier, - STATE(4962), 1, - sym__enum_base_clause, - STATE(5048), 1, - sym_enumerator_list, - ACTIONS(43), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(6344), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - ACTIONS(6342), 25, + ACTIONS(5519), 1, + anon_sym_COLON_COLON, + ACTIONS(5515), 3, anon_sym_AMP, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - sym_auto, - anon_sym_decltype, - [183957] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8874), 1, - anon_sym___attribute__, - ACTIONS(8876), 1, anon_sym___attribute, - STATE(4936), 1, - sym_attribute_specifier, - ACTIONS(6090), 2, - anon_sym_AMP, anon_sym_const, - ACTIONS(6092), 30, + ACTIONS(5517), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -449517,6 +456467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, + anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, @@ -449540,258 +456491,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [184006] = 16, + [188026] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5012), 1, - anon_sym_LPAREN2, - ACTIONS(5706), 1, - anon_sym_const, - ACTIONS(8131), 1, - anon_sym_LBRACK, - ACTIONS(8373), 1, - anon_sym_STAR, - ACTIONS(8375), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(7048), 1, anon_sym_AMP_AMP, - ACTIONS(8377), 1, + ACTIONS(7050), 1, anon_sym_AMP, - STATE(1695), 1, - sym_alignas_qualifier, - STATE(3370), 1, - sym_parameter_list, - STATE(6087), 1, - sym__function_declarator_seq, - STATE(6702), 1, - sym__abstract_declarator, - ACTIONS(8387), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1655), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8441), 4, - anon_sym_COLON, + ACTIONS(7075), 1, + anon_sym_noexcept, + ACTIONS(7077), 1, + anon_sym_throw, + ACTIONS(7299), 1, + anon_sym___attribute__, + ACTIONS(7443), 1, + anon_sym_DASH_GT, + ACTIONS(9150), 1, + anon_sym_LBRACK, + ACTIONS(9305), 1, + anon_sym___asm, + ACTIONS(9308), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9359), 1, + anon_sym_requires, + STATE(5056), 1, + sym_ref_qualifier, + STATE(5887), 1, + sym__function_attributes_end, + STATE(6044), 1, + sym_trailing_return_type, + STATE(6870), 1, + sym_gnu_asm_expression, + ACTIONS(9193), 2, anon_sym_final, anon_sym_override, - anon_sym_requires, - STATE(6092), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8379), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [184075] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8874), 1, - anon_sym___attribute__, - ACTIONS(8876), 1, - anon_sym___attribute, - STATE(4900), 1, + ACTIONS(9302), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5455), 2, sym_attribute_specifier, - ACTIONS(6058), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(6060), 30, + aux_sym_type_definition_repeat1, + STATE(5507), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5927), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5386), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9139), 5, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym___extension__, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [184124] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5012), 1, - anon_sym_LPAREN2, - ACTIONS(5706), 1, - anon_sym_const, - ACTIONS(8131), 1, - anon_sym_LBRACK, - ACTIONS(8373), 1, - anon_sym_STAR, - ACTIONS(8375), 1, - anon_sym_AMP_AMP, - ACTIONS(8377), 1, - anon_sym_AMP, - STATE(1695), 1, - sym_alignas_qualifier, - STATE(3370), 1, - sym_parameter_list, - STATE(6087), 1, - sym__function_declarator_seq, - STATE(6650), 1, - sym__abstract_declarator, - ACTIONS(8387), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1655), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(5865), 4, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - STATE(6092), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8379), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [184193] = 24, + [188111] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7042), 1, + ACTIONS(7048), 1, anon_sym_AMP_AMP, - ACTIONS(7044), 1, + ACTIONS(7050), 1, anon_sym_AMP, - ACTIONS(7065), 1, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7072), 1, + ACTIONS(7075), 1, anon_sym_noexcept, - ACTIONS(7074), 1, + ACTIONS(7077), 1, anon_sym_throw, - ACTIONS(7147), 1, - anon_sym___attribute__, - ACTIONS(7330), 1, + ACTIONS(7445), 1, anon_sym_DASH_GT, - ACTIONS(9193), 1, + ACTIONS(9150), 1, anon_sym_LBRACK, - ACTIONS(9300), 1, + ACTIONS(9330), 1, anon_sym_requires, - STATE(5013), 1, + ACTIONS(9333), 1, + anon_sym___attribute__, + ACTIONS(9336), 1, + anon_sym___attribute, + STATE(5073), 1, sym_ref_qualifier, - STATE(5932), 1, + STATE(6031), 1, sym_trailing_return_type, - STATE(6099), 1, + STATE(6067), 1, sym__function_attributes_end, - STATE(6766), 1, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(7063), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9297), 2, + ACTIONS(9327), 2, anon_sym_final, anon_sym_override, - STATE(5384), 2, + STATE(5455), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5458), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6012), 2, + STATE(6149), 2, sym__function_postfix, sym_requires_clause, - STATE(5329), 3, + STATE(5390), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9182), 5, + ACTIONS(9139), 5, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_EQ, - anon_sym_try, - [184278] = 16, + anon_sym_GT2, + [188196] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(8429), 1, + ACTIONS(6031), 1, + anon_sym___attribute__, + ACTIONS(6033), 1, + anon_sym___attribute, + ACTIONS(6256), 1, + anon_sym_LBRACE, + ACTIONS(9362), 1, + anon_sym_COLON, + STATE(1898), 1, + sym_attribute_specifier, + STATE(2276), 1, + sym__enum_base_clause, + STATE(2394), 1, + sym_enumerator_list, + ACTIONS(6316), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(6318), 26, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(8459), 1, - sym_identifier, - ACTIONS(8461), 1, anon_sym_STAR, - ACTIONS(8463), 1, anon_sym_AMP_AMP, - ACTIONS(8465), 1, - anon_sym_AMP, - STATE(4289), 1, - sym_alignas_qualifier, - STATE(6693), 1, - sym__field_declarator, - STATE(6800), 1, - sym_operator_name, - STATE(8225), 1, - sym_ms_based_modifier, - ACTIONS(3333), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4131), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6399), 7, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - sym_reference_field_declarator, - sym_template_method, - ACTIONS(3331), 13, + anon_sym_SEMI, anon_sym___extension__, - anon_sym_const, + anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -449803,48 +456653,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [184347] = 16, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [188253] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3331), 1, + ACTIONS(5525), 3, + anon_sym_AMP, + anon_sym___attribute, anon_sym_const, - ACTIONS(5012), 1, + ACTIONS(5527), 32, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(5014), 1, anon_sym_STAR, - ACTIONS(5016), 1, anon_sym_AMP_AMP, - ACTIONS(5018), 1, - anon_sym_AMP, - ACTIONS(8131), 1, - anon_sym_LBRACK, - STATE(3004), 1, - sym_parameter_list, - STATE(4289), 1, - sym_alignas_qualifier, - STATE(6087), 1, - sym__function_declarator_seq, - STATE(6645), 1, - sym__abstract_declarator, - ACTIONS(8133), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4131), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8445), 4, - anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6092), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8125), 12, anon_sym___extension__, + anon_sym___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -449856,48 +456691,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [184416] = 16, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [188296] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3331), 1, + ACTIONS(8902), 1, + anon_sym___attribute__, + ACTIONS(8904), 1, + anon_sym___attribute, + STATE(4987), 1, + sym_attribute_specifier, + ACTIONS(6157), 2, + anon_sym_AMP, anon_sym_const, - ACTIONS(5012), 1, + ACTIONS(6159), 30, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(8131), 1, - anon_sym_LBRACK, - ACTIONS(8473), 1, anon_sym_STAR, - ACTIONS(8475), 1, anon_sym_AMP_AMP, - ACTIONS(8477), 1, - anon_sym_AMP, - STATE(3053), 1, - sym_parameter_list, - STATE(4289), 1, - sym_alignas_qualifier, - STATE(6087), 1, - sym__function_declarator_seq, - STATE(6698), 1, - sym__abstract_declarator, - ACTIONS(8133), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4131), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(5865), 4, anon_sym_SEMI, + anon_sym___extension__, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_try, - STATE(6092), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8125), 12, - anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -449909,27 +456734,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [184485] = 10, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [188345] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6358), 1, + ACTIONS(6359), 1, anon_sym___attribute__, - ACTIONS(6360), 1, + ACTIONS(6361), 1, anon_sym___attribute, - ACTIONS(6729), 1, + ACTIONS(6740), 1, anon_sym_LBRACE, - ACTIONS(9305), 1, + ACTIONS(9364), 1, anon_sym_COLON, - STATE(2549), 1, + STATE(2579), 1, sym__enum_base_clause, - STATE(2634), 1, + STATE(2620), 1, sym_enumerator_list, - STATE(2682), 1, + STATE(2690), 1, sym_attribute_specifier, - ACTIONS(6336), 2, + ACTIONS(6393), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(6338), 26, + ACTIONS(6395), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -449956,19 +456790,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [184542] = 6, + [188402] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8874), 1, + ACTIONS(8902), 1, anon_sym___attribute__, - ACTIONS(8876), 1, + ACTIONS(8904), 1, anon_sym___attribute, - STATE(4934), 1, + STATE(5016), 1, sym_attribute_specifier, - ACTIONS(6155), 2, + ACTIONS(6100), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(6157), 30, + ACTIONS(6102), 30, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -449999,19 +456833,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [184591] = 6, + [188451] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8874), 1, - anon_sym___attribute__, - ACTIONS(8876), 1, - anon_sym___attribute, - STATE(4912), 1, - sym_attribute_specifier, - ACTIONS(6121), 2, + ACTIONS(8501), 1, + sym_auto, + ACTIONS(8503), 1, + anon_sym_decltype, + STATE(4985), 1, + sym_decltype_auto, + ACTIONS(5533), 3, anon_sym_AMP, + anon_sym___attribute, anon_sym_const, - ACTIONS(6123), 30, + ACTIONS(5535), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -450019,6 +456854,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, + anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, @@ -450035,101 +456871,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_auto, - anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_try, anon_sym_requires, - [184640] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7042), 1, - anon_sym_AMP_AMP, - ACTIONS(7044), 1, - anon_sym_AMP, - ACTIONS(7065), 1, - anon_sym___asm, - ACTIONS(7072), 1, - anon_sym_noexcept, - ACTIONS(7074), 1, - anon_sym_throw, - ACTIONS(7147), 1, - anon_sym___attribute__, - ACTIONS(7317), 1, - anon_sym_DASH_GT, - ACTIONS(9193), 1, - anon_sym_LBRACK, - ACTIONS(9276), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9316), 1, - anon_sym_requires, - STATE(4992), 1, - sym_ref_qualifier, - STATE(6023), 1, - sym__function_attributes_end, - STATE(6254), 1, - sym_trailing_return_type, - STATE(6766), 1, - sym_gnu_asm_expression, - ACTIONS(7063), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9195), 2, - anon_sym_final, - anon_sym_override, - STATE(5384), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5458), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5606), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5877), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5322), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9182), 5, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_try, - [184725] = 8, + [188500] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4167), 1, + ACTIONS(4187), 1, anon_sym_COLON_COLON, - ACTIONS(6630), 1, + ACTIONS(8725), 1, anon_sym_LT, - STATE(1603), 1, + STATE(1863), 1, sym_template_argument_list, - STATE(4175), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(4144), 4, + ACTIONS(4925), 4, anon_sym_AMP, + anon_sym___attribute, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_const, - ACTIONS(8310), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4152), 23, + ACTIONS(4932), 28, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym___extension__, - anon_sym_LBRACK_LBRACK, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -450148,48 +456919,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [184778] = 16, + [188549] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5012), 1, - anon_sym_LPAREN2, - ACTIONS(5706), 1, + ACTIONS(8902), 1, + anon_sym___attribute__, + ACTIONS(8904), 1, + anon_sym___attribute, + STATE(4997), 1, + sym_attribute_specifier, + ACTIONS(6206), 2, + anon_sym_AMP, anon_sym_const, - ACTIONS(8131), 1, - anon_sym_LBRACK, - ACTIONS(8373), 1, + ACTIONS(6208), 30, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(8375), 1, anon_sym_AMP_AMP, - ACTIONS(8377), 1, - anon_sym_AMP, - STATE(1695), 1, - sym_alignas_qualifier, - STATE(3370), 1, - sym_parameter_list, - STATE(6087), 1, - sym__function_declarator_seq, - STATE(6704), 1, - sym__abstract_declarator, - ACTIONS(8387), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1655), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8445), 4, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - STATE(6092), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8379), 12, + anon_sym_SEMI, anon_sym___extension__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -450201,43 +456953,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [184847] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9319), 1, - sym_identifier, - ACTIONS(9325), 1, - sym_primitive_type, - STATE(1658), 1, - sym_alignas_qualifier, - STATE(5038), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6391), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4865), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(5086), 4, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [188598] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6359), 1, + anon_sym___attribute__, + ACTIONS(6361), 1, + anon_sym___attribute, + ACTIONS(6740), 1, + anon_sym_LBRACE, + ACTIONS(9364), 1, + anon_sym_COLON, + STATE(2580), 1, + sym__enum_base_clause, + STATE(2624), 1, + sym_enumerator_list, + STATE(2708), 1, + sym_attribute_specifier, + ACTIONS(6316), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(6318), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_LBRACE, - ACTIONS(9322), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5088), 6, - anon_sym_AMP, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___based, - sym_auto, - anon_sym_decltype, - ACTIONS(6386), 13, anon_sym___extension__, - anon_sym_const, + anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -450249,80 +457001,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [184906] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7042), 1, - anon_sym_AMP_AMP, - ACTIONS(7044), 1, - anon_sym_AMP, - ACTIONS(7065), 1, - anon_sym___asm, - ACTIONS(7072), 1, - anon_sym_noexcept, - ACTIONS(7074), 1, - anon_sym_throw, - ACTIONS(7147), 1, - anon_sym___attribute__, - ACTIONS(7322), 1, - anon_sym_DASH_GT, - ACTIONS(9193), 1, - anon_sym_LBRACK, - ACTIONS(9328), 1, - anon_sym_requires, - STATE(5003), 1, - sym_ref_qualifier, - STATE(6034), 1, - sym_trailing_return_type, - STATE(6169), 1, - sym__function_attributes_end, - STATE(6766), 1, - sym_gnu_asm_expression, - ACTIONS(7063), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9297), 2, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - STATE(5384), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5458), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6012), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5325), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9182), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - [184991] = 6, + anon_sym_GT2, + anon_sym_requires, + [188655] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8874), 1, + ACTIONS(8902), 1, anon_sym___attribute__, - ACTIONS(8876), 1, + ACTIONS(8904), 1, anon_sym___attribute, - STATE(4899), 1, + STATE(5000), 1, sym_attribute_specifier, - ACTIONS(6096), 2, + ACTIONS(6210), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(6098), 30, + ACTIONS(6212), 30, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -450353,19 +457052,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [185040] = 6, + [188704] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8874), 1, + ACTIONS(8902), 1, anon_sym___attribute__, - ACTIONS(8876), 1, + ACTIONS(8904), 1, anon_sym___attribute, - STATE(4920), 1, + STATE(5004), 1, sym_attribute_specifier, - ACTIONS(6125), 2, + ACTIONS(6104), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(6127), 30, + ACTIONS(6106), 30, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -450396,19 +457095,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [185089] = 6, + [188753] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8874), 1, + ACTIONS(8902), 1, anon_sym___attribute__, - ACTIONS(8876), 1, + ACTIONS(8904), 1, anon_sym___attribute, - STATE(4908), 1, + STATE(5005), 1, sym_attribute_specifier, - ACTIONS(6168), 2, + ACTIONS(6108), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(6170), 30, + ACTIONS(6110), 30, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -450439,83 +457138,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [185138] = 27, + [188802] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(5020), 1, - anon_sym_COLON_COLON, - ACTIONS(5472), 1, + ACTIONS(7048), 1, + anon_sym_AMP_AMP, + ACTIONS(7050), 1, + anon_sym_AMP, + ACTIONS(7071), 1, + anon_sym___asm, + ACTIONS(7075), 1, + anon_sym_noexcept, + ACTIONS(7077), 1, + anon_sym_throw, + ACTIONS(7314), 1, + anon_sym_requires, + ACTIONS(7375), 1, + anon_sym_DASH_GT, + ACTIONS(9150), 1, + anon_sym_LBRACK, + ACTIONS(9308), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, - anon_sym___declspec, - ACTIONS(6540), 1, - anon_sym_COLON, - ACTIONS(6542), 1, - anon_sym_LBRACE, - ACTIONS(9331), 1, - sym_identifier, ACTIONS(9333), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9337), 1, - anon_sym_EQ, - STATE(1893), 1, - sym_template_type, - STATE(2409), 1, - sym__class_declaration_item, - STATE(2522), 1, - sym__class_declaration, - STATE(2917), 1, - sym_field_declaration_list, - STATE(5559), 1, - sym_ms_declspec_modifier, - STATE(6606), 1, - sym__scope_resolution, - STATE(6995), 1, - sym_virtual_specifier, - STATE(7645), 1, - sym_base_class_clause, - ACTIONS(5468), 2, anon_sym___attribute__, + ACTIONS(9336), 1, anon_sym___attribute, - ACTIONS(5476), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(5503), 2, + STATE(5093), 1, + sym_ref_qualifier, + STATE(5526), 1, + sym_trailing_return_type, + STATE(5995), 1, + sym__function_attributes_end, + STATE(6870), 1, + sym_gnu_asm_expression, + ACTIONS(6037), 2, anon_sym_final, anon_sym_override, - ACTIONS(9335), 2, - anon_sym_COMMA, - anon_sym_GT2, - STATE(2434), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5560), 2, + ACTIONS(7069), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5455), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5173), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [185229] = 6, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5927), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5392), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9139), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_EQ, + anon_sym_GT2, + [188887] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8874), 1, + ACTIONS(8902), 1, anon_sym___attribute__, - ACTIONS(8876), 1, + ACTIONS(8904), 1, anon_sym___attribute, - STATE(4905), 1, + STATE(5009), 1, sym_attribute_specifier, - ACTIONS(6104), 2, + ACTIONS(6149), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(6106), 30, + ACTIONS(6151), 30, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -450546,48 +457242,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [185278] = 16, + [188936] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5012), 1, - anon_sym_LPAREN2, - ACTIONS(5706), 1, + ACTIONS(8902), 1, + anon_sym___attribute__, + ACTIONS(8904), 1, + anon_sym___attribute, + STATE(5011), 1, + sym_attribute_specifier, + ACTIONS(6161), 2, + anon_sym_AMP, anon_sym_const, - ACTIONS(8131), 1, - anon_sym_LBRACK, - ACTIONS(8373), 1, + ACTIONS(6163), 30, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(8375), 1, anon_sym_AMP_AMP, - ACTIONS(8377), 1, - anon_sym_AMP, - STATE(1695), 1, - sym_alignas_qualifier, - STATE(3370), 1, - sym_parameter_list, - STATE(6087), 1, - sym__function_declarator_seq, - STATE(6656), 1, - sym__abstract_declarator, - ACTIONS(8387), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1655), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(6748), 4, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - STATE(6092), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8379), 12, + anon_sym_SEMI, anon_sym___extension__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -450599,27 +457276,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [185347] = 10, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [188985] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6014), 1, + ACTIONS(8902), 1, anon_sym___attribute__, - ACTIONS(6016), 1, + ACTIONS(8904), 1, anon_sym___attribute, - ACTIONS(6186), 1, - anon_sym_LBRACE, - ACTIONS(9339), 1, - anon_sym_COLON, - STATE(1841), 1, + STATE(5012), 1, sym_attribute_specifier, - STATE(2281), 1, - sym__enum_base_clause, - STATE(2329), 1, - sym_enumerator_list, - ACTIONS(6336), 2, + ACTIONS(6165), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(6338), 26, + ACTIONS(6167), 30, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -450627,7 +457305,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, + anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -450645,49 +457325,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_final, anon_sym_override, + anon_sym_GT2, + anon_sym_try, anon_sym_requires, - [185404] = 16, + [189034] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3331), 1, + ACTIONS(8902), 1, + anon_sym___attribute__, + ACTIONS(8904), 1, + anon_sym___attribute, + STATE(5013), 1, + sym_attribute_specifier, + ACTIONS(6169), 2, + anon_sym_AMP, anon_sym_const, - ACTIONS(5012), 1, + ACTIONS(6171), 30, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(5014), 1, anon_sym_STAR, - ACTIONS(5016), 1, anon_sym_AMP_AMP, - ACTIONS(5018), 1, - anon_sym_AMP, - ACTIONS(8131), 1, - anon_sym_LBRACK, - STATE(3004), 1, - sym_parameter_list, - STATE(4289), 1, - sym_alignas_qualifier, - STATE(6087), 1, - sym__function_declarator_seq, - STATE(6673), 1, - sym__abstract_declarator, - ACTIONS(8133), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4131), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8441), 4, - anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6092), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8125), 12, anon_sym___extension__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -450699,138 +457362,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [185473] = 24, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [189083] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7042), 1, + ACTIONS(7048), 1, anon_sym_AMP_AMP, - ACTIONS(7044), 1, + ACTIONS(7050), 1, anon_sym_AMP, - ACTIONS(7065), 1, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7072), 1, + ACTIONS(7075), 1, anon_sym_noexcept, - ACTIONS(7074), 1, + ACTIONS(7077), 1, anon_sym_throw, - ACTIONS(7147), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - ACTIONS(7317), 1, + ACTIONS(7393), 1, anon_sym_DASH_GT, - ACTIONS(7388), 1, + ACTIONS(7395), 1, anon_sym_requires, - ACTIONS(9193), 1, + ACTIONS(9150), 1, anon_sym_LBRACK, - ACTIONS(9276), 1, + ACTIONS(9308), 1, anon_sym_LBRACK_LBRACK, - STATE(5039), 1, + STATE(5113), 1, sym_ref_qualifier, - STATE(6011), 1, - sym__function_attributes_end, - STATE(6252), 1, + STATE(6042), 1, sym_trailing_return_type, - STATE(6766), 1, + STATE(6180), 1, + sym__function_attributes_end, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(6020), 2, + ACTIONS(6037), 2, anon_sym_final, anon_sym_override, - ACTIONS(7063), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - STATE(5384), 2, + STATE(5455), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5458), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5606), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5877), 2, + STATE(5927), 2, sym__function_postfix, sym_requires_clause, - STATE(5310), 3, + STATE(5397), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9182), 5, + ACTIONS(9139), 5, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_try, - [185558] = 24, + [189168] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7042), 1, - anon_sym_AMP_AMP, - ACTIONS(7044), 1, - anon_sym_AMP, - ACTIONS(7065), 1, - anon_sym___asm, - ACTIONS(7072), 1, - anon_sym_noexcept, - ACTIONS(7074), 1, - anon_sym_throw, - ACTIONS(7147), 1, + ACTIONS(8902), 1, anon_sym___attribute__, - ACTIONS(7322), 1, - anon_sym_DASH_GT, - ACTIONS(7337), 1, - anon_sym_requires, - ACTIONS(9193), 1, - anon_sym_LBRACK, - STATE(5041), 1, - sym_ref_qualifier, - STATE(6013), 1, - sym_trailing_return_type, - STATE(6133), 1, - sym__function_attributes_end, - STATE(6766), 1, - sym_gnu_asm_expression, - ACTIONS(7063), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7335), 2, - anon_sym_final, - anon_sym_override, - STATE(5384), 2, + ACTIONS(8904), 1, + anon_sym___attribute, + STATE(5015), 1, sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5458), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6012), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5305), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9182), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - [185643] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5454), 1, - anon_sym_COLON_COLON, - ACTIONS(5450), 3, + ACTIONS(6214), 2, anon_sym_AMP, - anon_sym___attribute, anon_sym_const, - ACTIONS(5452), 31, + ACTIONS(6216), 30, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -450838,7 +457452,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, - anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, @@ -450862,21 +457475,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [185688] = 6, + [189217] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4167), 1, - anon_sym_COLON_COLON, - ACTIONS(8697), 1, - anon_sym_LT, - STATE(1844), 1, - sym_template_argument_list, - ACTIONS(5838), 4, - anon_sym_AMP, + ACTIONS(8902), 1, + anon_sym___attribute__, + ACTIONS(8904), 1, anon_sym___attribute, - anon_sym_COLON, + STATE(4991), 1, + sym_attribute_specifier, + ACTIONS(6153), 2, + anon_sym_AMP, anon_sym_const, - ACTIONS(4172), 28, + ACTIONS(6155), 30, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -450884,9 +457495,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, - anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -450904,97 +457515,168 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_final, anon_sym_override, + anon_sym_GT2, + anon_sym_try, anon_sym_requires, - [185737] = 24, + [189266] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5472), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7042), 1, + ACTIONS(7048), 1, anon_sym_AMP_AMP, - ACTIONS(7044), 1, + ACTIONS(7050), 1, anon_sym_AMP, - ACTIONS(7065), 1, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7072), 1, + ACTIONS(7075), 1, anon_sym_noexcept, - ACTIONS(7074), 1, + ACTIONS(7077), 1, anon_sym_throw, - ACTIONS(7400), 1, - anon_sym_requires, - ACTIONS(7447), 1, + ACTIONS(7299), 1, + anon_sym___attribute__, + ACTIONS(7424), 1, anon_sym_DASH_GT, - ACTIONS(9193), 1, + ACTIONS(9150), 1, anon_sym_LBRACK, - ACTIONS(9291), 1, - anon_sym___attribute__, - ACTIONS(9294), 1, - anon_sym___attribute, - STATE(5037), 1, + ACTIONS(9366), 1, + anon_sym_requires, + STATE(5062), 1, sym_ref_qualifier, - STATE(5909), 1, + STATE(6182), 1, sym_trailing_return_type, - STATE(5976), 1, + STATE(6214), 1, sym__function_attributes_end, - STATE(6766), 1, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(7063), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7335), 2, + ACTIONS(9327), 2, anon_sym_final, anon_sym_override, - STATE(5384), 2, + STATE(5455), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5458), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6012), 2, + STATE(6149), 2, sym__function_postfix, sym_requires_clause, - STATE(5315), 3, + STATE(5396), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9182), 5, + ACTIONS(9139), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_EQ, - anon_sym_GT2, - [185822] = 10, + anon_sym_SEMI, + anon_sym_LBRACE, + [189351] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6014), 1, + ACTIONS(7071), 1, + anon_sym___asm, + ACTIONS(7073), 1, + anon_sym_DASH_GT, + ACTIONS(7075), 1, + anon_sym_noexcept, + ACTIONS(7077), 1, + anon_sym_throw, + ACTIONS(9141), 1, anon_sym___attribute__, - ACTIONS(6016), 1, + ACTIONS(9144), 1, anon_sym___attribute, - ACTIONS(6186), 1, - anon_sym_LBRACE, - ACTIONS(9339), 1, - anon_sym_COLON, - STATE(1866), 1, + ACTIONS(9147), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9150), 1, + anon_sym_LBRACK, + ACTIONS(9196), 1, + anon_sym_requires, + STATE(5655), 1, + sym_trailing_return_type, + STATE(5738), 1, + sym__function_attributes_end, + STATE(6850), 1, + sym_gnu_asm_expression, + ACTIONS(7069), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9193), 2, + anon_sym_final, + anon_sym_override, + STATE(5540), 2, sym_attribute_specifier, - STATE(2216), 1, - sym__enum_base_clause, - STATE(2311), 1, - sym_enumerator_list, - ACTIONS(6342), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(6344), 26, + aux_sym_type_definition_repeat1, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5730), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5927), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5335), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9139), 7, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [189429] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3339), 1, + anon_sym_const, + ACTIONS(5020), 1, + anon_sym_LPAREN2, + ACTIONS(8147), 1, + anon_sym_LBRACK, + ACTIONS(8515), 1, anon_sym_STAR, + ACTIONS(8517), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(8519), 1, + anon_sym_AMP, + STATE(3195), 1, + sym_parameter_list, + STATE(4325), 1, + sym_alignas_qualifier, + STATE(6109), 1, + sym__function_declarator_seq, + STATE(6853), 1, + sym__abstract_declarator, + ACTIONS(8149), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4215), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8487), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + STATE(6099), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8141), 12, anon_sym___extension__, - anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -451006,55 +457688,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [185879] = 16, + [189497] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(8427), 1, - sym_identifier, - ACTIONS(8429), 1, + ACTIONS(3339), 1, + anon_sym_const, + ACTIONS(5020), 1, anon_sym_LPAREN2, - ACTIONS(8431), 1, + ACTIONS(8147), 1, + anon_sym_LBRACK, + ACTIONS(8515), 1, anon_sym_STAR, - ACTIONS(8433), 1, + ACTIONS(8517), 1, anon_sym_AMP_AMP, - ACTIONS(8435), 1, + ACTIONS(8519), 1, anon_sym_AMP, - STATE(4289), 1, + STATE(3195), 1, + sym_parameter_list, + STATE(4325), 1, sym_alignas_qualifier, - STATE(6152), 1, - sym__field_declarator, - STATE(6299), 1, - sym_operator_name, - STATE(8049), 1, - sym_ms_based_modifier, - ACTIONS(3333), 2, + STATE(6109), 1, + sym__function_declarator_seq, + STATE(6875), 1, + sym__abstract_declarator, + ACTIONS(8149), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4131), 2, + STATE(4215), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6399), 7, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - sym_reference_field_declarator, - sym_template_method, - ACTIONS(3331), 13, + ACTIONS(8453), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + STATE(6099), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8141), 12, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -451066,14 +457740,308 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [185948] = 3, + [189565] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(125), 1, + sym_auto, + ACTIONS(127), 1, + anon_sym_decltype, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1874), 1, + anon_sym_enum, + ACTIONS(1876), 1, + anon_sym_class, + ACTIONS(1878), 1, + anon_sym_struct, + ACTIONS(1880), 1, + anon_sym_union, + ACTIONS(1882), 1, + anon_sym_typename, + ACTIONS(3019), 1, + sym_primitive_type, + ACTIONS(5028), 1, + anon_sym_COLON_COLON, + ACTIONS(9321), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9325), 1, + anon_sym_EQ, + ACTIONS(9369), 1, + sym_identifier, + STATE(2385), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2421), 1, + sym_type_specifier, + STATE(2453), 1, + sym_decltype_auto, + STATE(3138), 1, + sym_qualified_type_identifier, + STATE(6746), 1, + sym__scope_resolution, + STATE(8569), 1, + sym_dependent_type_identifier, + ACTIONS(9323), 2, + anon_sym_COMMA, + anon_sym_GT2, + STATE(2439), 2, + sym_decltype, + sym_template_type, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2558), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [189649] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7071), 1, + anon_sym___asm, + ACTIONS(7073), 1, + anon_sym_DASH_GT, + ACTIONS(7075), 1, + anon_sym_noexcept, + ACTIONS(7077), 1, + anon_sym_throw, + ACTIONS(7079), 1, + anon_sym_requires, + ACTIONS(9141), 1, + anon_sym___attribute__, + ACTIONS(9144), 1, + anon_sym___attribute, + ACTIONS(9147), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9150), 1, + anon_sym_LBRACK, + STATE(5671), 1, + sym_trailing_return_type, + STATE(5814), 1, + sym__function_attributes_end, + STATE(6850), 1, + sym_gnu_asm_expression, + ACTIONS(6037), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7069), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5540), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5730), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5927), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5323), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9139), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [189727] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7071), 1, + anon_sym___asm, + ACTIONS(7073), 1, + anon_sym_DASH_GT, + ACTIONS(7075), 1, + anon_sym_noexcept, + ACTIONS(7077), 1, + anon_sym_throw, + ACTIONS(7079), 1, + anon_sym_requires, + ACTIONS(9373), 1, + anon_sym___attribute__, + ACTIONS(9376), 1, + anon_sym___attribute, + ACTIONS(9379), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9382), 1, + anon_sym_LBRACK, + STATE(5567), 1, + sym_trailing_return_type, + STATE(5722), 1, + sym__function_attributes_end, + STATE(6850), 1, + sym_gnu_asm_expression, + ACTIONS(6037), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7069), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5540), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5730), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5934), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5329), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9371), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [189805] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7048), 1, + anon_sym_AMP_AMP, + ACTIONS(7050), 1, + anon_sym_AMP, + ACTIONS(7071), 1, + anon_sym___asm, + ACTIONS(7075), 1, + anon_sym_noexcept, + ACTIONS(7077), 1, + anon_sym_throw, + ACTIONS(7299), 1, + anon_sym___attribute__, + ACTIONS(7536), 1, + anon_sym_DASH_GT, + ACTIONS(7538), 1, + anon_sym_requires, + ACTIONS(9150), 1, + anon_sym_LBRACK, + STATE(5125), 1, + sym_ref_qualifier, + STATE(6295), 1, + sym_trailing_return_type, + STATE(6300), 1, + sym__function_attributes_end, + STATE(6870), 1, + sym_gnu_asm_expression, + ACTIONS(7069), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7359), 2, + anon_sym_final, + anon_sym_override, + STATE(5455), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5507), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6017), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6149), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5421), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9139), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + [189889] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7048), 1, + anon_sym_AMP_AMP, + ACTIONS(7050), 1, + anon_sym_AMP, + ACTIONS(7071), 1, + anon_sym___asm, + ACTIONS(7075), 1, + anon_sym_noexcept, + ACTIONS(7077), 1, + anon_sym_throw, + ACTIONS(7299), 1, + anon_sym___attribute__, + ACTIONS(7536), 1, + anon_sym_DASH_GT, + ACTIONS(9150), 1, + anon_sym_LBRACK, + ACTIONS(9384), 1, + anon_sym_requires, + STATE(5132), 1, + sym_ref_qualifier, + STATE(6305), 1, + sym_trailing_return_type, + STATE(6311), 1, + sym__function_attributes_end, + STATE(6870), 1, + sym_gnu_asm_expression, + ACTIONS(7069), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9327), 2, + anon_sym_final, + anon_sym_override, + STATE(5455), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5507), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6017), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6149), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5420), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9139), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + [189973] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5637), 3, + ACTIONS(5515), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(5639), 31, + ACTIONS(5517), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -451105,25 +458073,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [185990] = 3, + [190015] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5740), 3, - anon_sym_AMP, - anon_sym___attribute, + ACTIONS(3339), 1, anon_sym_const, - ACTIONS(5742), 31, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5020), 1, anon_sym_LPAREN2, + ACTIONS(8147), 1, + anon_sym_LBRACK, + ACTIONS(8515), 1, anon_sym_STAR, + ACTIONS(8517), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(8519), 1, + anon_sym_AMP, + STATE(3195), 1, + sym_parameter_list, + STATE(4325), 1, + sym_alignas_qualifier, + STATE(6109), 1, + sym__function_declarator_seq, + STATE(6834), 1, + sym__abstract_declarator, + ACTIONS(8149), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4215), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(5877), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + STATE(6099), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8141), 12, anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -451135,55 +458125,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [186032] = 16, + [190083] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3331), 1, + ACTIONS(3339), 1, anon_sym_const, - ACTIONS(5012), 1, + ACTIONS(5020), 1, anon_sym_LPAREN2, - ACTIONS(8131), 1, + ACTIONS(8147), 1, anon_sym_LBRACK, - ACTIONS(8568), 1, + ACTIONS(8515), 1, anon_sym_STAR, - ACTIONS(8570), 1, + ACTIONS(8517), 1, anon_sym_AMP_AMP, - ACTIONS(8572), 1, + ACTIONS(8519), 1, anon_sym_AMP, - STATE(3177), 1, + STATE(3195), 1, sym_parameter_list, - STATE(4289), 1, + STATE(4325), 1, sym_alignas_qualifier, - STATE(6087), 1, + STATE(6109), 1, sym__function_declarator_seq, - STATE(6762), 1, + STATE(6851), 1, sym__abstract_declarator, - ACTIONS(8133), 2, + ACTIONS(8149), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4131), 2, + STATE(4215), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(6748), 3, + ACTIONS(6781), 3, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_GT2, - STATE(6092), 5, + STATE(6099), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8125), 12, + ACTIONS(8141), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -451196,113 +458177,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [186100] = 24, + [190151] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7042), 1, - anon_sym_AMP_AMP, - ACTIONS(7044), 1, - anon_sym_AMP, - ACTIONS(7065), 1, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7072), 1, + ACTIONS(7073), 1, + anon_sym_DASH_GT, + ACTIONS(7075), 1, anon_sym_noexcept, - ACTIONS(7074), 1, + ACTIONS(7077), 1, anon_sym_throw, - ACTIONS(7147), 1, + ACTIONS(9373), 1, anon_sym___attribute__, - ACTIONS(7549), 1, - anon_sym_DASH_GT, - ACTIONS(9193), 1, + ACTIONS(9376), 1, + anon_sym___attribute, + ACTIONS(9379), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9382), 1, anon_sym_LBRACK, - ACTIONS(9341), 1, + ACTIONS(9390), 1, anon_sym_requires, - STATE(5100), 1, - sym_ref_qualifier, - STATE(6188), 1, + STATE(5703), 1, sym_trailing_return_type, - STATE(6211), 1, + STATE(5739), 1, sym__function_attributes_end, - STATE(6766), 1, + STATE(6850), 1, sym_gnu_asm_expression, - ACTIONS(7063), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9297), 2, + ACTIONS(9387), 2, anon_sym_final, anon_sym_override, - STATE(5384), 2, + STATE(5540), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5458), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6012), 2, + STATE(5730), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5934), 2, sym__function_postfix, sym_requires_clause, - STATE(5340), 3, + STATE(5338), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9182), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_GT2, - [186184] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5728), 3, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(5730), 31, + ACTIONS(9371), 7, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [186226] = 3, + [190229] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5677), 3, + ACTIONS(5738), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(5679), 31, + ACTIONS(5740), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -451334,14 +458273,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [186268] = 3, + [190271] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5667), 3, + ACTIONS(5515), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(5669), 31, + ACTIONS(5517), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -451373,14 +458312,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [186310] = 3, + [190313] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5750), 3, + ACTIONS(5760), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(5752), 31, + ACTIONS(5762), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -451412,66 +458351,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [186352] = 16, + [190355] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3331), 1, - anon_sym_const, - ACTIONS(5012), 1, - anon_sym_LPAREN2, - ACTIONS(8131), 1, - anon_sym_LBRACK, - ACTIONS(8568), 1, - anon_sym_STAR, - ACTIONS(8570), 1, - anon_sym_AMP_AMP, - ACTIONS(8572), 1, - anon_sym_AMP, - STATE(3177), 1, - sym_parameter_list, - STATE(4289), 1, - sym_alignas_qualifier, - STATE(6087), 1, - sym__function_declarator_seq, - STATE(6760), 1, - sym__abstract_declarator, - ACTIONS(8133), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4131), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(5865), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_GT2, - STATE(6092), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8125), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [186420] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5663), 3, + ACTIONS(5788), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(5665), 31, + ACTIONS(5790), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -451503,66 +458390,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [186462] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3331), 1, - anon_sym_const, - ACTIONS(5012), 1, - anon_sym_LPAREN2, - ACTIONS(8131), 1, - anon_sym_LBRACK, - ACTIONS(8568), 1, - anon_sym_STAR, - ACTIONS(8570), 1, - anon_sym_AMP_AMP, - ACTIONS(8572), 1, - anon_sym_AMP, - STATE(3177), 1, - sym_parameter_list, - STATE(4289), 1, - sym_alignas_qualifier, - STATE(6087), 1, - sym__function_declarator_seq, - STATE(6718), 1, - sym__abstract_declarator, - ACTIONS(8133), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4131), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8445), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_GT2, - STATE(6092), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8125), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [186530] = 3, + [190397] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5681), 3, + ACTIONS(5816), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(5683), 31, + ACTIONS(5818), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -451594,71 +458429,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [186572] = 21, + [190439] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7065), 1, - anon_sym___asm, - ACTIONS(7067), 1, - anon_sym_DASH_GT, - ACTIONS(7072), 1, - anon_sym_noexcept, - ACTIONS(7074), 1, - anon_sym_throw, - ACTIONS(9184), 1, - anon_sym___attribute__, - ACTIONS(9187), 1, - anon_sym___attribute, - ACTIONS(9190), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9193), 1, - anon_sym_LBRACK, - ACTIONS(9198), 1, - anon_sym_requires, - STATE(5514), 1, - sym_trailing_return_type, - STATE(5670), 1, - sym__function_attributes_end, - STATE(6745), 1, - sym_gnu_asm_expression, - ACTIONS(7063), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9195), 2, - anon_sym_final, - anon_sym_override, - STATE(5428), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5606), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5733), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5877), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5278), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9182), 7, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [186650] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5754), 3, + ACTIONS(5660), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(5756), 31, + ACTIONS(5662), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -451690,14 +458468,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [186692] = 3, + [190481] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5758), 3, + ACTIONS(5666), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(5760), 31, + ACTIONS(5668), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -451729,71 +458507,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [186734] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7065), 1, - anon_sym___asm, - ACTIONS(7067), 1, - anon_sym_DASH_GT, - ACTIONS(7072), 1, - anon_sym_noexcept, - ACTIONS(7074), 1, - anon_sym_throw, - ACTIONS(9346), 1, - anon_sym___attribute__, - ACTIONS(9349), 1, - anon_sym___attribute, - ACTIONS(9352), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9355), 1, - anon_sym_LBRACK, - ACTIONS(9360), 1, - anon_sym_requires, - STATE(5544), 1, - sym_trailing_return_type, - STATE(5671), 1, - sym__function_attributes_end, - STATE(6745), 1, - sym_gnu_asm_expression, - ACTIONS(7063), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9357), 2, - anon_sym_final, - anon_sym_override, - STATE(5428), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5606), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5733), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5839), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5280), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9344), 7, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [186812] = 3, + [190523] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5810), 3, + ACTIONS(5697), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(5812), 31, + ACTIONS(5699), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -451825,14 +458546,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [186854] = 3, + [190565] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 3, + ACTIONS(5705), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(5657), 31, + ACTIONS(5707), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -451864,14 +458585,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [186896] = 3, + [190607] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5782), 3, + ACTIONS(5712), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(5784), 31, + ACTIONS(5714), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -451903,14 +458624,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [186938] = 3, + [190649] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5786), 3, + ACTIONS(5716), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(5788), 31, + ACTIONS(5718), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -451942,14 +458663,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [186980] = 3, + [190691] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5450), 3, + ACTIONS(5720), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(5452), 31, + ACTIONS(5722), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -451981,14 +458702,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [187022] = 3, + [190733] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5790), 3, + ACTIONS(5701), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(5792), 31, + ACTIONS(5703), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -452020,14 +458741,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [187064] = 3, + [190775] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5641), 3, + ACTIONS(5728), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(5643), 31, + ACTIONS(5730), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -452059,14 +458780,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [187106] = 3, + [190817] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5802), 3, + ACTIONS(5720), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(5804), 31, + ACTIONS(5722), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -452098,14 +458819,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [187148] = 3, + [190859] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5770), 3, + ACTIONS(5720), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(5772), 31, + ACTIONS(5722), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -452137,14 +458858,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [187190] = 3, + [190901] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5798), 3, + ACTIONS(5792), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(5800), 31, + ACTIONS(5794), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -452176,14 +458897,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [187232] = 3, + [190943] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5794), 3, + ACTIONS(5764), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(5796), 31, + ACTIONS(5766), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -452215,14 +458936,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [187274] = 3, + [190985] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5732), 3, + ACTIONS(5768), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(5734), 31, + ACTIONS(5770), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -452254,14 +458975,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [187316] = 3, + [191027] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5736), 3, + ACTIONS(5772), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(5738), 31, + ACTIONS(5774), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -452293,14 +459014,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [187358] = 3, + [191069] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5786), 3, + ACTIONS(5776), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(5788), 31, + ACTIONS(5778), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -452332,14 +459053,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [187400] = 3, + [191111] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5762), 3, + ACTIONS(5780), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(5764), 31, + ACTIONS(5782), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -452371,14 +459092,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [187442] = 3, + [191153] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5673), 3, + ACTIONS(5784), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(5675), 31, + ACTIONS(5786), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -452410,14 +459131,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [187484] = 3, + [191195] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5766), 3, + ACTIONS(5800), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(5768), 31, + ACTIONS(5802), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -452449,14 +459170,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [187526] = 3, + [191237] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5677), 3, + ACTIONS(5804), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(5679), 31, + ACTIONS(5806), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -452488,14 +459209,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [187568] = 3, + [191279] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5774), 3, + ACTIONS(5808), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(5776), 31, + ACTIONS(5810), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -452527,14 +459248,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [187610] = 3, + [191321] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5685), 3, + ACTIONS(5812), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(5687), 31, + ACTIONS(5814), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -452566,14 +459287,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [187652] = 3, + [191363] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5647), 3, + ACTIONS(5804), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(5649), 31, + ACTIONS(5806), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -452605,14 +459326,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [187694] = 3, + [191405] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5806), 3, + ACTIONS(5753), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(5808), 31, + ACTIONS(5755), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -452644,14 +459365,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [187736] = 3, + [191447] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5659), 3, + ACTIONS(5742), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(5661), 31, + ACTIONS(5744), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -452666,148 +459387,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [187778] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7042), 1, - anon_sym_AMP_AMP, - ACTIONS(7044), 1, - anon_sym_AMP, - ACTIONS(7065), 1, - anon_sym___asm, - ACTIONS(7072), 1, - anon_sym_noexcept, - ACTIONS(7074), 1, - anon_sym_throw, - ACTIONS(7147), 1, - anon_sym___attribute__, - ACTIONS(7549), 1, - anon_sym_DASH_GT, - ACTIONS(7551), 1, - anon_sym_requires, - ACTIONS(9193), 1, - anon_sym_LBRACK, - STATE(5138), 1, - sym_ref_qualifier, - STATE(6175), 1, - sym__function_attributes_end, - STATE(6207), 1, - sym_trailing_return_type, - STATE(6766), 1, - sym_gnu_asm_expression, - ACTIONS(7063), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7335), 2, - anon_sym_final, - anon_sym_override, - STATE(5384), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5458), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6012), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5336), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9182), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_GT2, - [187862] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7065), 1, - anon_sym___asm, - ACTIONS(7067), 1, - anon_sym_DASH_GT, - ACTIONS(7072), 1, - anon_sym_noexcept, - ACTIONS(7074), 1, - anon_sym_throw, - ACTIONS(7079), 1, - anon_sym_requires, - ACTIONS(9346), 1, - anon_sym___attribute__, - ACTIONS(9349), 1, - anon_sym___attribute, - ACTIONS(9352), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9355), 1, - anon_sym_LBRACK, - STATE(5616), 1, - sym_trailing_return_type, - STATE(5658), 1, - sym__function_attributes_end, - STATE(6745), 1, - sym_gnu_asm_expression, - ACTIONS(6020), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7063), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(5428), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5606), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5733), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5839), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5248), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9344), 7, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, anon_sym_try, - [187940] = 3, + anon_sym_requires, + [191489] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5778), 3, + ACTIONS(5796), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(5780), 31, + ACTIONS(5798), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -452839,14 +459443,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [187982] = 3, + [191531] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5692), 3, + ACTIONS(5820), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(5694), 31, + ACTIONS(5822), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -452878,164 +459482,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [188024] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(125), 1, - sym_auto, - ACTIONS(127), 1, - anon_sym_decltype, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1884), 1, - anon_sym_enum, - ACTIONS(1886), 1, - anon_sym_class, - ACTIONS(1888), 1, - anon_sym_struct, - ACTIONS(1890), 1, - anon_sym_union, - ACTIONS(1914), 1, - anon_sym_typename, - ACTIONS(2999), 1, - sym_primitive_type, - ACTIONS(5020), 1, - anon_sym_COLON_COLON, - ACTIONS(9333), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9337), 1, - anon_sym_EQ, - ACTIONS(9363), 1, - sym_identifier, - STATE(2359), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2393), 1, - sym_type_specifier, - STATE(2501), 1, - sym_decltype_auto, - STATE(3015), 1, - sym_qualified_type_identifier, - STATE(6606), 1, - sym__scope_resolution, - STATE(8601), 1, - sym_dependent_type_identifier, - ACTIONS(9335), 2, - anon_sym_COMMA, - anon_sym_GT2, - STATE(2406), 2, - sym_decltype, - sym_template_type, - ACTIONS(59), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2523), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [188108] = 21, + [191573] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7065), 1, - anon_sym___asm, - ACTIONS(7067), 1, - anon_sym_DASH_GT, - ACTIONS(7072), 1, - anon_sym_noexcept, - ACTIONS(7074), 1, - anon_sym_throw, - ACTIONS(7079), 1, - anon_sym_requires, - ACTIONS(9184), 1, - anon_sym___attribute__, - ACTIONS(9187), 1, + ACTIONS(5693), 3, + anon_sym_AMP, anon_sym___attribute, - ACTIONS(9190), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9193), 1, - anon_sym_LBRACK, - STATE(5534), 1, - sym_trailing_return_type, - STATE(5655), 1, - sym__function_attributes_end, - STATE(6745), 1, - sym_gnu_asm_expression, - ACTIONS(6020), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7063), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(5428), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5606), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5733), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5877), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5247), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9182), 7, + anon_sym_const, + ACTIONS(5695), 31, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_COLON, + anon_sym___extension__, + anon_sym___attribute__, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, anon_sym_try, - [188186] = 16, + anon_sym_requires, + [191615] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3331), 1, + ACTIONS(5681), 3, + anon_sym_AMP, + anon_sym___attribute, anon_sym_const, - ACTIONS(5012), 1, + ACTIONS(5683), 31, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(8131), 1, - anon_sym_LBRACK, - ACTIONS(8568), 1, anon_sym_STAR, - ACTIONS(8570), 1, anon_sym_AMP_AMP, - ACTIONS(8572), 1, - anon_sym_AMP, - STATE(3177), 1, - sym_parameter_list, - STATE(4289), 1, - sym_alignas_qualifier, - STATE(6087), 1, - sym__function_declarator_seq, - STATE(6741), 1, - sym__abstract_declarator, - ACTIONS(8133), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4131), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8441), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_GT2, - STATE(6092), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8125), 12, + anon_sym_SEMI, anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -453047,14 +459551,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [188254] = 3, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [191657] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5677), 3, + ACTIONS(5685), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(5679), 31, + ACTIONS(5687), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -453086,14 +459599,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [188296] = 3, + [191699] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5651), 3, + ACTIONS(5689), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(5653), 31, + ACTIONS(5691), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -453125,14 +459638,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [188338] = 3, + [191741] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5450), 3, + ACTIONS(5645), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(5452), 31, + ACTIONS(5647), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -453164,14 +459677,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [188380] = 3, + [191783] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5699), 3, + ACTIONS(5724), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(5701), 31, + ACTIONS(5726), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -453203,28 +459716,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [188422] = 10, + [191825] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(7083), 1, + ACTIONS(7075), 1, + anon_sym_noexcept, + ACTIONS(7077), 1, + anon_sym_throw, + ACTIONS(7283), 1, + anon_sym___attribute__, + ACTIONS(7285), 1, + anon_sym___attribute, + ACTIONS(7318), 1, + anon_sym_DASH_GT, + ACTIONS(9379), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9382), 1, + anon_sym_LBRACK, + ACTIONS(9390), 1, + anon_sym_requires, + ACTIONS(9396), 1, + anon_sym___asm, + STATE(5703), 1, + sym_trailing_return_type, + STATE(5787), 1, + sym__function_attributes_end, + STATE(6850), 1, + sym_gnu_asm_expression, + ACTIONS(9387), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(9393), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5540), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5730), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5934), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5368), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9371), 6, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + [191902] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3339), 1, + anon_sym_const, + ACTIONS(5020), 1, + anon_sym_LPAREN2, + ACTIONS(8147), 1, + anon_sym_LBRACK, + ACTIONS(8638), 1, + anon_sym_STAR, + ACTIONS(8640), 1, + anon_sym_AMP_AMP, + ACTIONS(8642), 1, + anon_sym_AMP, + STATE(3510), 1, + sym_parameter_list, + STATE(4325), 1, + sym_alignas_qualifier, + STATE(6109), 1, + sym__function_declarator_seq, + STATE(6913), 1, + sym__abstract_declarator, + ACTIONS(8149), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(8453), 2, + anon_sym_LBRACE, + anon_sym_requires, + STATE(4215), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6099), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8141), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [191969] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7283), 1, anon_sym___attribute__, - ACTIONS(7085), 1, + ACTIONS(7285), 1, anon_sym___attribute, - ACTIONS(8679), 1, + ACTIONS(8705), 1, anon_sym_LBRACE, - ACTIONS(9365), 1, + ACTIONS(9399), 1, anon_sym_COLON, - STATE(4382), 1, + STATE(4427), 1, sym__enum_base_clause, - STATE(4514), 1, + STATE(4469), 1, sym_enumerator_list, - STATE(4720), 1, + STATE(4817), 1, sym_attribute_specifier, - ACTIONS(6336), 3, + ACTIONS(6393), 3, anon_sym_AMP, anon_sym_LBRACK, anon_sym_const, - ACTIONS(6338), 23, + ACTIONS(6395), 23, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, @@ -453248,28 +459868,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [188477] = 10, + [192024] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7083), 1, + ACTIONS(7283), 1, anon_sym___attribute__, - ACTIONS(7085), 1, + ACTIONS(7285), 1, anon_sym___attribute, - ACTIONS(8679), 1, + ACTIONS(8705), 1, anon_sym_LBRACE, - ACTIONS(9365), 1, + ACTIONS(9399), 1, anon_sym_COLON, - STATE(4358), 1, + STATE(4428), 1, sym__enum_base_clause, - STATE(4471), 1, + STATE(4543), 1, sym_enumerator_list, - STATE(4667), 1, + STATE(4720), 1, sym_attribute_specifier, - ACTIONS(6342), 3, + ACTIONS(6316), 3, anon_sym_AMP, anon_sym_LBRACK, anon_sym_const, - ACTIONS(6344), 23, + ACTIONS(6318), 23, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, @@ -453293,443 +459913,558 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [188532] = 21, + [192079] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7072), 1, + ACTIONS(7048), 1, + anon_sym_AMP_AMP, + ACTIONS(7050), 1, + anon_sym_AMP, + ACTIONS(7071), 1, + anon_sym___asm, + ACTIONS(7075), 1, anon_sym_noexcept, - ACTIONS(7074), 1, + ACTIONS(7077), 1, anon_sym_throw, - ACTIONS(7147), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - ACTIONS(7160), 1, + ACTIONS(7738), 1, anon_sym_DASH_GT, - ACTIONS(9193), 1, + ACTIONS(9150), 1, anon_sym_LBRACK, - ACTIONS(9273), 1, - anon_sym___asm, - ACTIONS(9276), 1, + ACTIONS(9308), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9281), 1, + ACTIONS(9311), 1, anon_sym_requires, - STATE(5447), 1, + STATE(5245), 1, + sym_ref_qualifier, + STATE(5528), 1, sym_trailing_return_type, - STATE(5678), 1, + STATE(6349), 1, sym__function_attributes_end, - STATE(6766), 1, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(9195), 2, + ACTIONS(7069), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9193), 2, anon_sym_final, anon_sym_override, - ACTIONS(9270), 2, + STATE(5455), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5507), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5927), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9139), 3, + anon_sym_LPAREN2, + anon_sym_LBRACE, + anon_sym_EQ, + STATE(5433), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [192162] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7048), 1, + anon_sym_AMP_AMP, + ACTIONS(7050), 1, + anon_sym_AMP, + ACTIONS(7071), 1, + anon_sym___asm, + ACTIONS(7075), 1, + anon_sym_noexcept, + ACTIONS(7077), 1, + anon_sym_throw, + ACTIONS(7799), 1, + anon_sym_DASH_GT, + ACTIONS(9150), 1, + anon_sym_LBRACK, + ACTIONS(9333), 1, + anon_sym___attribute__, + ACTIONS(9336), 1, + anon_sym___attribute, + ACTIONS(9366), 1, + anon_sym_requires, + STATE(5295), 1, + sym_ref_qualifier, + STATE(6182), 1, + sym_trailing_return_type, + STATE(6231), 1, + sym__function_attributes_end, + STATE(6870), 1, + sym_gnu_asm_expression, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - STATE(5384), 2, + ACTIONS(9327), 2, + anon_sym_final, + anon_sym_override, + STATE(5455), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5458), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5606), 2, + STATE(6017), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6149), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9139), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + STATE(5444), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [192245] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7075), 1, + anon_sym_noexcept, + ACTIONS(7077), 1, + anon_sym_throw, + ACTIONS(7079), 1, + anon_sym_requires, + ACTIONS(7283), 1, + anon_sym___attribute__, + ACTIONS(7285), 1, + anon_sym___attribute, + ACTIONS(7318), 1, + anon_sym_DASH_GT, + ACTIONS(9147), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9150), 1, + anon_sym_LBRACK, + ACTIONS(9305), 1, + anon_sym___asm, + STATE(5671), 1, + sym_trailing_return_type, + STATE(5779), 1, + sym__function_attributes_end, + STATE(6850), 1, + sym_gnu_asm_expression, + ACTIONS(6037), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(9302), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5540), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5877), 2, + STATE(5730), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5927), 2, sym__function_postfix, sym_requires_clause, - STATE(5284), 3, + STATE(5372), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9182), 6, + ACTIONS(9139), 6, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_try, - [188609] = 21, + [192322] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(7065), 1, - anon_sym___asm, - ACTIONS(7072), 1, + ACTIONS(7075), 1, anon_sym_noexcept, - ACTIONS(7074), 1, + ACTIONS(7077), 1, anon_sym_throw, - ACTIONS(7083), 1, + ACTIONS(7079), 1, + anon_sym_requires, + ACTIONS(7283), 1, anon_sym___attribute__, - ACTIONS(7085), 1, + ACTIONS(7285), 1, anon_sym___attribute, - ACTIONS(7087), 1, + ACTIONS(7318), 1, anon_sym_DASH_GT, - ACTIONS(9190), 1, + ACTIONS(9379), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9193), 1, + ACTIONS(9382), 1, anon_sym_LBRACK, - ACTIONS(9198), 1, - anon_sym_requires, - STATE(5514), 1, + ACTIONS(9396), 1, + anon_sym___asm, + STATE(5567), 1, sym_trailing_return_type, - STATE(5953), 1, + STATE(5782), 1, sym__function_attributes_end, - STATE(6745), 1, + STATE(6850), 1, sym_gnu_asm_expression, - ACTIONS(7063), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9195), 2, + ACTIONS(6037), 2, anon_sym_final, anon_sym_override, - STATE(5428), 2, + ACTIONS(9393), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5540), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5606), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5733), 2, + STATE(5730), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5877), 2, + STATE(5934), 2, sym__function_postfix, sym_requires_clause, - STATE(5292), 3, + STATE(5362), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9182), 6, + ACTIONS(9371), 6, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_try, - [188686] = 21, + [192399] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7072), 1, + ACTIONS(7075), 1, anon_sym_noexcept, - ACTIONS(7074), 1, + ACTIONS(7077), 1, anon_sym_throw, - ACTIONS(7147), 1, + ACTIONS(7283), 1, anon_sym___attribute__, - ACTIONS(7160), 1, + ACTIONS(7285), 1, + anon_sym___attribute, + ACTIONS(7318), 1, anon_sym_DASH_GT, - ACTIONS(9355), 1, - anon_sym_LBRACK, - ACTIONS(9367), 1, + ACTIONS(9147), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9373), 1, - anon_sym___asm, - ACTIONS(9376), 1, + ACTIONS(9150), 1, + anon_sym_LBRACK, + ACTIONS(9196), 1, anon_sym_requires, - STATE(5448), 1, + ACTIONS(9305), 1, + anon_sym___asm, + STATE(5655), 1, sym_trailing_return_type, - STATE(5679), 1, + STATE(5786), 1, sym__function_attributes_end, - STATE(6766), 1, + STATE(6850), 1, sym_gnu_asm_expression, - ACTIONS(9357), 2, + ACTIONS(9193), 2, anon_sym_final, anon_sym_override, - ACTIONS(9370), 2, + ACTIONS(9302), 2, anon_sym_asm, anon_sym___asm__, - STATE(5384), 2, + STATE(5540), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5458), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5606), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5839), 2, + STATE(5730), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5927), 2, sym__function_postfix, sym_requires_clause, - STATE(5286), 3, + STATE(5366), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9344), 6, + ACTIONS(9139), 6, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_try, - [188763] = 21, + [192476] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(7065), 1, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7072), 1, + ACTIONS(7075), 1, anon_sym_noexcept, - ACTIONS(7074), 1, + ACTIONS(7077), 1, anon_sym_throw, ACTIONS(7079), 1, anon_sym_requires, - ACTIONS(7083), 1, + ACTIONS(7283), 1, anon_sym___attribute__, - ACTIONS(7085), 1, + ACTIONS(7285), 1, anon_sym___attribute, - ACTIONS(7087), 1, + ACTIONS(7287), 1, anon_sym_DASH_GT, - ACTIONS(9352), 1, + ACTIONS(9379), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9355), 1, + ACTIONS(9382), 1, anon_sym_LBRACK, - STATE(5616), 1, + STATE(5567), 1, sym_trailing_return_type, - STATE(5966), 1, + STATE(6053), 1, sym__function_attributes_end, - STATE(6745), 1, + STATE(6850), 1, sym_gnu_asm_expression, - ACTIONS(6020), 2, + ACTIONS(6037), 2, anon_sym_final, anon_sym_override, - ACTIONS(7063), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - STATE(5428), 2, + STATE(5540), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5606), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5733), 2, + STATE(5730), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5839), 2, + STATE(5934), 2, sym__function_postfix, sym_requires_clause, - STATE(5296), 3, + STATE(5373), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9344), 6, + ACTIONS(9371), 6, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [188840] = 24, + [192553] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7042), 1, - anon_sym_AMP_AMP, - ACTIONS(7044), 1, - anon_sym_AMP, - ACTIONS(7065), 1, - anon_sym___asm, - ACTIONS(7072), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(7075), 1, anon_sym_noexcept, - ACTIONS(7074), 1, + ACTIONS(7077), 1, anon_sym_throw, - ACTIONS(7653), 1, - anon_sym_DASH_GT, - ACTIONS(9193), 1, - anon_sym_LBRACK, - ACTIONS(9291), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - ACTIONS(9294), 1, - anon_sym___attribute, - ACTIONS(9341), 1, + ACTIONS(7312), 1, + anon_sym_DASH_GT, + ACTIONS(7314), 1, anon_sym_requires, - STATE(5223), 1, - sym_ref_qualifier, - STATE(6123), 1, - sym__function_attributes_end, - STATE(6188), 1, + ACTIONS(9150), 1, + anon_sym_LBRACK, + ACTIONS(9305), 1, + anon_sym___asm, + ACTIONS(9308), 1, + anon_sym_LBRACK_LBRACK, + STATE(5526), 1, sym_trailing_return_type, - STATE(6766), 1, + STATE(5729), 1, + sym__function_attributes_end, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(7063), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9297), 2, + ACTIONS(6037), 2, anon_sym_final, anon_sym_override, - STATE(5384), 2, + ACTIONS(9302), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5455), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5458), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6012), 2, + STATE(5927), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9182), 3, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_GT2, - STATE(5359), 3, + STATE(5361), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - [188923] = 21, + ACTIONS(9139), 6, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [192630] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(7072), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(7075), 1, anon_sym_noexcept, - ACTIONS(7074), 1, + ACTIONS(7077), 1, anon_sym_throw, - ACTIONS(7079), 1, - anon_sym_requires, - ACTIONS(7083), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - ACTIONS(7085), 1, - anon_sym___attribute, - ACTIONS(7179), 1, + ACTIONS(7312), 1, anon_sym_DASH_GT, - ACTIONS(9352), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9355), 1, + ACTIONS(7314), 1, + anon_sym_requires, + ACTIONS(9382), 1, anon_sym_LBRACK, - ACTIONS(9373), 1, + ACTIONS(9396), 1, anon_sym___asm, - STATE(5616), 1, + ACTIONS(9401), 1, + anon_sym_LBRACK_LBRACK, + STATE(5529), 1, sym_trailing_return_type, - STATE(5706), 1, + STATE(5731), 1, sym__function_attributes_end, - STATE(6745), 1, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(6020), 2, + ACTIONS(6037), 2, anon_sym_final, anon_sym_override, - ACTIONS(9370), 2, + ACTIONS(9393), 2, anon_sym_asm, anon_sym___asm__, - STATE(5428), 2, + STATE(5455), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5606), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5733), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5839), 2, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5934), 2, sym__function_postfix, sym_requires_clause, - STATE(5295), 3, + STATE(5359), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9344), 6, + ACTIONS(9371), 6, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_COLON, anon_sym_LBRACE, anon_sym_EQ, - [189000] = 24, + anon_sym_try, + [192707] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7042), 1, + ACTIONS(7048), 1, anon_sym_AMP_AMP, - ACTIONS(7044), 1, + ACTIONS(7050), 1, anon_sym_AMP, - ACTIONS(7065), 1, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7072), 1, + ACTIONS(7075), 1, anon_sym_noexcept, - ACTIONS(7074), 1, + ACTIONS(7077), 1, anon_sym_throw, - ACTIONS(7667), 1, + ACTIONS(7447), 1, + anon_sym_requires, + ACTIONS(7799), 1, anon_sym_DASH_GT, - ACTIONS(9193), 1, + ACTIONS(9150), 1, anon_sym_LBRACK, - ACTIONS(9291), 1, + ACTIONS(9333), 1, anon_sym___attribute__, - ACTIONS(9294), 1, + ACTIONS(9336), 1, anon_sym___attribute, - ACTIONS(9328), 1, - anon_sym_requires, - STATE(5203), 1, + STATE(5229), 1, sym_ref_qualifier, - STATE(6034), 1, + STATE(6123), 1, sym_trailing_return_type, - STATE(6101), 1, + STATE(6222), 1, sym__function_attributes_end, - STATE(6766), 1, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(7063), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9297), 2, + ACTIONS(7359), 2, anon_sym_final, anon_sym_override, - STATE(5384), 2, + STATE(5455), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5458), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6012), 2, + STATE(6149), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9182), 3, + ACTIONS(9139), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - STATE(5363), 3, + STATE(5422), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - [189083] = 16, + [192790] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3331), 1, + ACTIONS(3339), 1, anon_sym_const, - ACTIONS(5012), 1, + ACTIONS(5020), 1, anon_sym_LPAREN2, - ACTIONS(8131), 1, + ACTIONS(8147), 1, anon_sym_LBRACK, - ACTIONS(8602), 1, + ACTIONS(8638), 1, anon_sym_STAR, - ACTIONS(8604), 1, + ACTIONS(8640), 1, anon_sym_AMP_AMP, - ACTIONS(8606), 1, + ACTIONS(8642), 1, anon_sym_AMP, - STATE(3405), 1, + STATE(3510), 1, sym_parameter_list, - STATE(4289), 1, + STATE(4325), 1, sym_alignas_qualifier, - STATE(6087), 1, + STATE(6109), 1, sym__function_declarator_seq, - STATE(6789), 1, + STATE(6929), 1, sym__abstract_declarator, - ACTIONS(5865), 2, + ACTIONS(6781), 2, anon_sym_LBRACE, anon_sym_requires, - ACTIONS(8133), 2, + ACTIONS(8149), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4131), 2, + STATE(4215), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6092), 5, + STATE(6099), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8125), 12, + ACTIONS(8141), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -453742,138 +460477,179 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [189150] = 21, + [192857] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(7072), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(7075), 1, anon_sym_noexcept, - ACTIONS(7074), 1, + ACTIONS(7077), 1, anon_sym_throw, - ACTIONS(7079), 1, - anon_sym_requires, - ACTIONS(7083), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - ACTIONS(7085), 1, - anon_sym___attribute, - ACTIONS(7179), 1, + ACTIONS(7312), 1, anon_sym_DASH_GT, - ACTIONS(9190), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9193), 1, + ACTIONS(9150), 1, anon_sym_LBRACK, - ACTIONS(9273), 1, + ACTIONS(9305), 1, anon_sym___asm, - STATE(5534), 1, + ACTIONS(9308), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9311), 1, + anon_sym_requires, + STATE(5528), 1, sym_trailing_return_type, - STATE(5703), 1, + STATE(5744), 1, sym__function_attributes_end, - STATE(6745), 1, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(6020), 2, + ACTIONS(9193), 2, anon_sym_final, anon_sym_override, - ACTIONS(9270), 2, + ACTIONS(9302), 2, anon_sym_asm, anon_sym___asm__, - STATE(5428), 2, + STATE(5455), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5606), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5733), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5877), 2, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5927), 2, sym__function_postfix, sym_requires_clause, - STATE(5290), 3, + STATE(5360), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9182), 6, + ACTIONS(9139), 6, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_COLON, anon_sym_LBRACE, anon_sym_EQ, - [189227] = 24, + anon_sym_try, + [192934] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7042), 1, - anon_sym_AMP_AMP, - ACTIONS(7044), 1, + ACTIONS(3879), 1, + anon_sym_LBRACE, + ACTIONS(9404), 1, + anon_sym_LPAREN2, + STATE(2357), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3585), 1, + sym_argument_list, + STATE(4852), 1, + sym_initializer_list, + ACTIONS(5515), 2, anon_sym_AMP, - ACTIONS(7065), 1, + anon_sym_const, + ACTIONS(6334), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5517), 22, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym___extension__, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [192987] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7072), 1, + ACTIONS(7075), 1, anon_sym_noexcept, - ACTIONS(7074), 1, + ACTIONS(7077), 1, anon_sym_throw, - ACTIONS(7551), 1, + ACTIONS(7079), 1, anon_sym_requires, - ACTIONS(7653), 1, - anon_sym_DASH_GT, - ACTIONS(9193), 1, - anon_sym_LBRACK, - ACTIONS(9291), 1, + ACTIONS(7283), 1, anon_sym___attribute__, - ACTIONS(9294), 1, + ACTIONS(7285), 1, anon_sym___attribute, - STATE(5192), 1, - sym_ref_qualifier, - STATE(6114), 1, - sym__function_attributes_end, - STATE(6207), 1, + ACTIONS(7287), 1, + anon_sym_DASH_GT, + ACTIONS(9147), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9150), 1, + anon_sym_LBRACK, + STATE(5671), 1, sym_trailing_return_type, - STATE(6766), 1, + STATE(6070), 1, + sym__function_attributes_end, + STATE(6850), 1, sym_gnu_asm_expression, - ACTIONS(7063), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7335), 2, + ACTIONS(6037), 2, anon_sym_final, anon_sym_override, - STATE(5384), 2, + ACTIONS(7069), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5540), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5458), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6012), 2, + STATE(5730), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5927), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9182), 3, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_GT2, - STATE(5346), 3, + STATE(5358), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - [189310] = 7, + ACTIONS(9139), 6, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [193064] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6186), 1, + ACTIONS(6256), 1, anon_sym_LBRACE, - STATE(1872), 1, + STATE(1901), 1, sym_attribute_specifier, - STATE(5050), 1, + STATE(5204), 1, sym_enumerator_list, ACTIONS(43), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5985), 3, + ACTIONS(6068), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(5983), 25, + ACTIONS(6066), 25, anon_sym_AMP, anon_sym___extension__, anon_sym___based, @@ -453899,23 +460675,23 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - [189359] = 7, + [193113] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6186), 1, + ACTIONS(6256), 1, anon_sym_LBRACE, - STATE(1887), 1, + STATE(1912), 1, sym_attribute_specifier, - STATE(5053), 1, + STATE(5207), 1, sym_enumerator_list, ACTIONS(43), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(6026), 3, + ACTIONS(6074), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(6024), 25, + ACTIONS(6072), 25, anon_sym_AMP, anon_sym___extension__, anon_sym___based, @@ -453941,96 +460717,45 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - [189408] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3331), 1, - anon_sym_const, - ACTIONS(5012), 1, - anon_sym_LPAREN2, - ACTIONS(8131), 1, - anon_sym_LBRACK, - ACTIONS(8602), 1, - anon_sym_STAR, - ACTIONS(8604), 1, - anon_sym_AMP_AMP, - ACTIONS(8606), 1, - anon_sym_AMP, - STATE(3405), 1, - sym_parameter_list, - STATE(4289), 1, - sym_alignas_qualifier, - STATE(6087), 1, - sym__function_declarator_seq, - STATE(6794), 1, - sym__abstract_declarator, - ACTIONS(6748), 2, - anon_sym_LBRACE, - anon_sym_requires, - ACTIONS(8133), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4131), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6092), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8125), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [189475] = 16, + [193162] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3331), 1, + ACTIONS(3339), 1, anon_sym_const, - ACTIONS(5012), 1, + ACTIONS(5020), 1, anon_sym_LPAREN2, - ACTIONS(8131), 1, + ACTIONS(8147), 1, anon_sym_LBRACK, - ACTIONS(8602), 1, + ACTIONS(8638), 1, anon_sym_STAR, - ACTIONS(8604), 1, + ACTIONS(8640), 1, anon_sym_AMP_AMP, - ACTIONS(8606), 1, + ACTIONS(8642), 1, anon_sym_AMP, - STATE(3405), 1, + STATE(3510), 1, sym_parameter_list, - STATE(4289), 1, + STATE(4325), 1, sym_alignas_qualifier, - STATE(6087), 1, + STATE(6109), 1, sym__function_declarator_seq, - STATE(6825), 1, + STATE(6895), 1, sym__abstract_declarator, - ACTIONS(8133), 2, + ACTIONS(8149), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(8445), 2, + ACTIONS(8487), 2, anon_sym_LBRACE, anon_sym_requires, - STATE(4131), 2, + STATE(4215), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6092), 5, + STATE(6099), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8125), 12, + ACTIONS(8141), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -454043,652 +460768,219 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [189542] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7072), 1, - anon_sym_noexcept, - ACTIONS(7074), 1, - anon_sym_throw, - ACTIONS(7083), 1, - anon_sym___attribute__, - ACTIONS(7085), 1, - anon_sym___attribute, - ACTIONS(7179), 1, - anon_sym_DASH_GT, - ACTIONS(9190), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9193), 1, - anon_sym_LBRACK, - ACTIONS(9198), 1, - anon_sym_requires, - ACTIONS(9273), 1, - anon_sym___asm, - STATE(5514), 1, - sym_trailing_return_type, - STATE(5714), 1, - sym__function_attributes_end, - STATE(6745), 1, - sym_gnu_asm_expression, - ACTIONS(9195), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(9270), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(5428), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5606), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5733), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5877), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5298), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9182), 6, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - [189619] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7072), 1, - anon_sym_noexcept, - ACTIONS(7074), 1, - anon_sym_throw, - ACTIONS(7083), 1, - anon_sym___attribute__, - ACTIONS(7085), 1, - anon_sym___attribute, - ACTIONS(7179), 1, - anon_sym_DASH_GT, - ACTIONS(9352), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9355), 1, - anon_sym_LBRACK, - ACTIONS(9360), 1, - anon_sym_requires, - ACTIONS(9373), 1, - anon_sym___asm, - STATE(5544), 1, - sym_trailing_return_type, - STATE(5715), 1, - sym__function_attributes_end, - STATE(6745), 1, - sym_gnu_asm_expression, - ACTIONS(9357), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(9370), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(5428), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5606), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5733), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5839), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5299), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9344), 6, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - [189696] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7042), 1, - anon_sym_AMP_AMP, - ACTIONS(7044), 1, - anon_sym_AMP, - ACTIONS(7065), 1, - anon_sym___asm, - ACTIONS(7072), 1, - anon_sym_noexcept, - ACTIONS(7074), 1, - anon_sym_throw, - ACTIONS(7147), 1, - anon_sym___attribute__, - ACTIONS(7745), 1, - anon_sym_DASH_GT, - ACTIONS(9193), 1, - anon_sym_LBRACK, - ACTIONS(9276), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9281), 1, - anon_sym_requires, - STATE(5210), 1, - sym_ref_qualifier, - STATE(5447), 1, - sym_trailing_return_type, - STATE(6204), 1, - sym__function_attributes_end, - STATE(6766), 1, - sym_gnu_asm_expression, - ACTIONS(7063), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9195), 2, - anon_sym_final, - anon_sym_override, - STATE(5384), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5458), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5606), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5877), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9182), 3, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_EQ, - STATE(5349), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - [189779] = 21, + [193229] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7072), 1, + ACTIONS(7075), 1, anon_sym_noexcept, - ACTIONS(7074), 1, + ACTIONS(7077), 1, anon_sym_throw, - ACTIONS(7147), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - ACTIONS(7160), 1, + ACTIONS(7312), 1, anon_sym_DASH_GT, - ACTIONS(7301), 1, - anon_sym_requires, - ACTIONS(9193), 1, + ACTIONS(9382), 1, anon_sym_LBRACK, - ACTIONS(9273), 1, + ACTIONS(9396), 1, anon_sym___asm, - ACTIONS(9276), 1, + ACTIONS(9401), 1, anon_sym_LBRACK_LBRACK, - STATE(5453), 1, + ACTIONS(9407), 1, + anon_sym_requires, + STATE(5536), 1, sym_trailing_return_type, - STATE(5663), 1, + STATE(5745), 1, sym__function_attributes_end, - STATE(6766), 1, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(6020), 2, + ACTIONS(9387), 2, anon_sym_final, anon_sym_override, - ACTIONS(9270), 2, + ACTIONS(9393), 2, anon_sym_asm, anon_sym___asm__, - STATE(5384), 2, + STATE(5455), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5458), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5606), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5877), 2, + STATE(5934), 2, sym__function_postfix, sym_requires_clause, - STATE(5301), 3, + STATE(5367), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9182), 6, + ACTIONS(9371), 6, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [189856] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7065), 1, - anon_sym___asm, - ACTIONS(7072), 1, - anon_sym_noexcept, - ACTIONS(7074), 1, - anon_sym_throw, - ACTIONS(7083), 1, - anon_sym___attribute__, - ACTIONS(7085), 1, - anon_sym___attribute, - ACTIONS(7087), 1, - anon_sym_DASH_GT, - ACTIONS(9352), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9355), 1, - anon_sym_LBRACK, - ACTIONS(9360), 1, - anon_sym_requires, - STATE(5544), 1, - sym_trailing_return_type, - STATE(5958), 1, - sym__function_attributes_end, - STATE(6745), 1, - sym_gnu_asm_expression, - ACTIONS(7063), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9357), 2, - anon_sym_final, - anon_sym_override, - STATE(5428), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5606), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5733), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5839), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5294), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9344), 6, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [189933] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7065), 1, - anon_sym___asm, - ACTIONS(7072), 1, - anon_sym_noexcept, - ACTIONS(7074), 1, - anon_sym_throw, - ACTIONS(7079), 1, - anon_sym_requires, - ACTIONS(7083), 1, - anon_sym___attribute__, - ACTIONS(7085), 1, - anon_sym___attribute, - ACTIONS(7087), 1, - anon_sym_DASH_GT, - ACTIONS(9190), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9193), 1, - anon_sym_LBRACK, - STATE(5534), 1, - sym_trailing_return_type, - STATE(5963), 1, - sym__function_attributes_end, - STATE(6745), 1, - sym_gnu_asm_expression, - ACTIONS(6020), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7063), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(5428), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5606), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5733), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5877), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5289), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9182), 6, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [190010] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3331), 1, - anon_sym_const, - ACTIONS(5012), 1, - anon_sym_LPAREN2, - ACTIONS(8131), 1, - anon_sym_LBRACK, - ACTIONS(8602), 1, - anon_sym_STAR, - ACTIONS(8604), 1, - anon_sym_AMP_AMP, - ACTIONS(8606), 1, - anon_sym_AMP, - STATE(3405), 1, - sym_parameter_list, - STATE(4289), 1, - sym_alignas_qualifier, - STATE(6087), 1, - sym__function_declarator_seq, - STATE(6837), 1, - sym__abstract_declarator, - ACTIONS(8133), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(8441), 2, - anon_sym_LBRACE, - anon_sym_requires, - STATE(4131), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6092), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8125), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [190077] = 24, + [193306] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7042), 1, + ACTIONS(7048), 1, anon_sym_AMP_AMP, - ACTIONS(7044), 1, + ACTIONS(7050), 1, anon_sym_AMP, - ACTIONS(7065), 1, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7072), 1, + ACTIONS(7075), 1, anon_sym_noexcept, - ACTIONS(7074), 1, + ACTIONS(7077), 1, anon_sym_throw, - ACTIONS(7147), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - ACTIONS(7301), 1, + ACTIONS(7314), 1, anon_sym_requires, - ACTIONS(7745), 1, + ACTIONS(7738), 1, anon_sym_DASH_GT, - ACTIONS(9193), 1, + ACTIONS(9150), 1, anon_sym_LBRACK, - ACTIONS(9276), 1, + ACTIONS(9308), 1, anon_sym_LBRACK_LBRACK, - STATE(5181), 1, + STATE(5265), 1, sym_ref_qualifier, - STATE(5453), 1, + STATE(5526), 1, sym_trailing_return_type, - STATE(6200), 1, + STATE(6345), 1, sym__function_attributes_end, - STATE(6766), 1, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(6020), 2, + ACTIONS(6037), 2, anon_sym_final, anon_sym_override, - ACTIONS(7063), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - STATE(5384), 2, + STATE(5455), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5458), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5606), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5877), 2, + STATE(5927), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9182), 3, + ACTIONS(9139), 3, anon_sym_LPAREN2, anon_sym_LBRACE, anon_sym_EQ, - STATE(5369), 3, + STATE(5438), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - [190160] = 24, + [193389] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7042), 1, + ACTIONS(7048), 1, anon_sym_AMP_AMP, - ACTIONS(7044), 1, + ACTIONS(7050), 1, anon_sym_AMP, - ACTIONS(7065), 1, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7072), 1, + ACTIONS(7075), 1, anon_sym_noexcept, - ACTIONS(7074), 1, + ACTIONS(7077), 1, anon_sym_throw, - ACTIONS(7337), 1, + ACTIONS(7538), 1, anon_sym_requires, - ACTIONS(7667), 1, + ACTIONS(7768), 1, anon_sym_DASH_GT, - ACTIONS(9193), 1, + ACTIONS(9150), 1, anon_sym_LBRACK, - ACTIONS(9291), 1, + ACTIONS(9333), 1, anon_sym___attribute__, - ACTIONS(9294), 1, + ACTIONS(9336), 1, anon_sym___attribute, - STATE(5198), 1, + STATE(5244), 1, sym_ref_qualifier, - STATE(6013), 1, - sym_trailing_return_type, - STATE(6095), 1, + STATE(6252), 1, sym__function_attributes_end, - STATE(6766), 1, + STATE(6295), 1, + sym_trailing_return_type, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(7063), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7335), 2, + ACTIONS(7359), 2, anon_sym_final, anon_sym_override, - STATE(5384), 2, + STATE(5455), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5458), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6012), 2, + STATE(6149), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9182), 3, + ACTIONS(9139), 3, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - STATE(5344), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - [190243] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7072), 1, - anon_sym_noexcept, - ACTIONS(7074), 1, - anon_sym_throw, - ACTIONS(7147), 1, - anon_sym___attribute__, - ACTIONS(7160), 1, - anon_sym_DASH_GT, - ACTIONS(7301), 1, - anon_sym_requires, - ACTIONS(9355), 1, - anon_sym_LBRACK, - ACTIONS(9367), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9373), 1, - anon_sym___asm, - STATE(5418), 1, - sym_trailing_return_type, - STATE(5664), 1, - sym__function_attributes_end, - STATE(6766), 1, - sym_gnu_asm_expression, - ACTIONS(6020), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(9370), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(5384), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5458), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5606), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5839), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5300), 3, + anon_sym_GT2, + STATE(5424), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9344), 6, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [190320] = 9, + [193472] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3887), 1, - anon_sym_LBRACE, - ACTIONS(9379), 1, - anon_sym_LPAREN2, - STATE(2332), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3598), 1, - sym_argument_list, - STATE(4839), 1, - sym_initializer_list, - ACTIONS(5450), 2, - anon_sym_AMP, + ACTIONS(3339), 1, anon_sym_const, - ACTIONS(6346), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5452), 22, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym___extension__, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [190373] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5012), 1, + ACTIONS(5020), 1, anon_sym_LPAREN2, - ACTIONS(5706), 1, - anon_sym_const, - ACTIONS(8131), 1, + ACTIONS(8147), 1, anon_sym_LBRACK, - ACTIONS(8445), 1, - anon_sym_COLON, - ACTIONS(8685), 1, + ACTIONS(8638), 1, anon_sym_STAR, - ACTIONS(8687), 1, + ACTIONS(8640), 1, anon_sym_AMP_AMP, - ACTIONS(8689), 1, + ACTIONS(8642), 1, anon_sym_AMP, - STATE(1695), 1, - sym_alignas_qualifier, - STATE(3485), 1, + STATE(3510), 1, sym_parameter_list, - STATE(6087), 1, + STATE(4325), 1, + sym_alignas_qualifier, + STATE(6109), 1, sym__function_declarator_seq, - STATE(6873), 1, + STATE(6900), 1, sym__abstract_declarator, - ACTIONS(8387), 2, + ACTIONS(5877), 2, + anon_sym_LBRACE, + anon_sym_requires, + ACTIONS(8149), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1655), 2, + STATE(4215), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6092), 5, + STATE(6099), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8379), 12, + ACTIONS(8141), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -454701,114 +460993,227 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [190439] = 24, + [193539] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(7042), 1, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7048), 1, anon_sym_AMP_AMP, - ACTIONS(7044), 1, + ACTIONS(7050), 1, anon_sym_AMP, - ACTIONS(7065), 1, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7072), 1, + ACTIONS(7075), 1, anon_sym_noexcept, - ACTIONS(7074), 1, + ACTIONS(7077), 1, anon_sym_throw, - ACTIONS(7083), 1, + ACTIONS(7768), 1, + anon_sym_DASH_GT, + ACTIONS(9150), 1, + anon_sym_LBRACK, + ACTIONS(9333), 1, anon_sym___attribute__, - ACTIONS(7085), 1, + ACTIONS(9336), 1, anon_sym___attribute, - ACTIONS(7838), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7840), 1, + ACTIONS(9384), 1, + anon_sym_requires, + STATE(5269), 1, + sym_ref_qualifier, + STATE(6257), 1, + sym__function_attributes_end, + STATE(6305), 1, + sym_trailing_return_type, + STATE(6870), 1, + sym_gnu_asm_expression, + ACTIONS(7069), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9327), 2, + anon_sym_final, + anon_sym_override, + STATE(5455), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5507), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6017), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6149), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9139), 3, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + STATE(5447), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [193622] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7071), 1, + anon_sym___asm, + ACTIONS(7075), 1, + anon_sym_noexcept, + ACTIONS(7077), 1, + anon_sym_throw, + ACTIONS(7283), 1, + anon_sym___attribute__, + ACTIONS(7285), 1, + anon_sym___attribute, + ACTIONS(7287), 1, anon_sym_DASH_GT, - ACTIONS(9193), 1, + ACTIONS(9147), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9150), 1, anon_sym_LBRACK, - ACTIONS(9328), 1, + ACTIONS(9196), 1, anon_sym_requires, - STATE(5238), 1, - sym_ref_qualifier, - STATE(6034), 1, + STATE(5655), 1, sym_trailing_return_type, - STATE(6372), 1, + STATE(6061), 1, sym__function_attributes_end, - STATE(6745), 1, + STATE(6850), 1, sym_gnu_asm_expression, - ACTIONS(7063), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9182), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - ACTIONS(9297), 2, + ACTIONS(9193), 2, anon_sym_final, anon_sym_override, - STATE(5428), 2, + STATE(5540), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5733), 2, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5730), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, + STATE(5927), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5370), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9139), 6, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [193699] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7071), 1, + anon_sym___asm, + ACTIONS(7075), 1, + anon_sym_noexcept, + ACTIONS(7077), 1, + anon_sym_throw, + ACTIONS(7283), 1, + anon_sym___attribute__, + ACTIONS(7285), 1, + anon_sym___attribute, + ACTIONS(7287), 1, + anon_sym_DASH_GT, + ACTIONS(9379), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9382), 1, + anon_sym_LBRACK, + ACTIONS(9390), 1, + anon_sym_requires, + STATE(5703), 1, + sym_trailing_return_type, + STATE(6063), 1, + sym__function_attributes_end, + STATE(6850), 1, + sym_gnu_asm_expression, + ACTIONS(7069), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9387), 2, + anon_sym_final, + anon_sym_override, + STATE(5540), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6012), 2, + STATE(5730), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5934), 2, sym__function_postfix, sym_requires_clause, - STATE(5391), 3, + STATE(5371), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - [190521] = 23, + ACTIONS(9371), 6, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [193776] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(8147), 1, + ACTIONS(8177), 1, anon_sym_LPAREN2, - ACTIONS(9382), 1, + ACTIONS(9410), 1, sym_identifier, - ACTIONS(9384), 1, + ACTIONS(9412), 1, anon_sym_COLON_COLON, - ACTIONS(9388), 1, + ACTIONS(9416), 1, sym_primitive_type, - ACTIONS(9390), 1, + ACTIONS(9418), 1, anon_sym_enum, - ACTIONS(9392), 1, + ACTIONS(9420), 1, anon_sym_class, - ACTIONS(9394), 1, + ACTIONS(9422), 1, anon_sym_struct, - ACTIONS(9396), 1, + ACTIONS(9424), 1, anon_sym_union, - ACTIONS(9398), 1, + ACTIONS(9426), 1, sym_auto, - ACTIONS(9400), 1, + ACTIONS(9428), 1, anon_sym_decltype, - ACTIONS(9402), 1, + ACTIONS(9430), 1, anon_sym_typename, - STATE(1592), 1, + STATE(1860), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1911), 1, - sym_type_specifier, - STATE(2273), 1, + STATE(1916), 1, sym_qualified_type_identifier, - STATE(2309), 1, + STATE(3864), 1, + sym_type_specifier, + STATE(4125), 1, sym_decltype_auto, - STATE(5186), 1, + STATE(5232), 1, sym_argument_list, - STATE(6580), 1, + STATE(6732), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(8569), 1, sym_dependent_type_identifier, - STATE(2174), 2, + STATE(4102), 2, sym_decltype, sym_template_type, - ACTIONS(9386), 4, + ACTIONS(9414), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2245), 7, + STATE(4108), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -454816,86 +461221,139 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [190601] = 23, + [193856] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(3164), 1, - sym_auto, - ACTIONS(3166), 1, - anon_sym_decltype, - ACTIONS(8051), 1, - sym_primitive_type, - ACTIONS(8147), 1, + ACTIONS(7048), 1, + anon_sym_AMP_AMP, + ACTIONS(7050), 1, + anon_sym_AMP, + ACTIONS(7071), 1, + anon_sym___asm, + ACTIONS(7075), 1, + anon_sym_noexcept, + ACTIONS(7077), 1, + anon_sym_throw, + ACTIONS(7283), 1, + anon_sym___attribute__, + ACTIONS(7285), 1, + anon_sym___attribute, + ACTIONS(7447), 1, + anon_sym_requires, + ACTIONS(7918), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7920), 1, + anon_sym_DASH_GT, + ACTIONS(9150), 1, + anon_sym_LBRACK, + STATE(5334), 1, + sym_ref_qualifier, + STATE(6123), 1, + sym_trailing_return_type, + STATE(6490), 1, + sym__function_attributes_end, + STATE(6850), 1, + sym_gnu_asm_expression, + ACTIONS(7069), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7359), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(9139), 2, anon_sym_LPAREN2, - ACTIONS(9404), 1, - sym_identifier, - ACTIONS(9406), 1, - anon_sym_COLON_COLON, - ACTIONS(9410), 1, - anon_sym_enum, - ACTIONS(9412), 1, - anon_sym_class, - ACTIONS(9414), 1, - anon_sym_struct, - ACTIONS(9416), 1, - anon_sym_union, - ACTIONS(9418), 1, - anon_sym_typename, - STATE(2170), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2657), 1, - sym_qualified_type_identifier, - STATE(2708), 1, - sym_decltype_auto, - STATE(4133), 1, - sym_type_specifier, - STATE(5197), 1, - sym_argument_list, - STATE(6594), 1, - sym__scope_resolution, - STATE(8601), 1, - sym_dependent_type_identifier, - STATE(2598), 2, - sym_decltype, - sym_template_type, - ACTIONS(9408), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2668), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [190681] = 8, + anon_sym_COLON, + STATE(5540), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5730), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6017), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6149), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5461), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [193938] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4167), 1, - anon_sym_COLON_COLON, - ACTIONS(8697), 1, - anon_sym_LT, - STATE(1603), 1, - sym_template_argument_list, - STATE(5029), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(7075), 1, + anon_sym_noexcept, + ACTIONS(7077), 1, + anon_sym_throw, + ACTIONS(7299), 1, + anon_sym___attribute__, + ACTIONS(7443), 1, + anon_sym_DASH_GT, + ACTIONS(9150), 1, + anon_sym_LBRACK, + ACTIONS(9305), 1, + anon_sym___asm, + ACTIONS(9308), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9359), 1, + anon_sym_requires, + STATE(5887), 1, + sym__function_attributes_end, + STATE(6044), 1, + sym_trailing_return_type, + STATE(6870), 1, + sym_gnu_asm_expression, + ACTIONS(9193), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(9302), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5455), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5507), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5927), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5386), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9139), 5, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_try, + [194014] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(1974), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(4152), 3, + ACTIONS(5919), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(9420), 4, + anon_sym_LBRACE, + ACTIONS(9432), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(4144), 21, + ACTIONS(5921), 23, anon_sym_AMP, anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, anon_sym___based, anon_sym_const, anon_sym_constexpr, @@ -454915,170 +461373,111 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - [190731] = 23, + [194058] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1846), 1, - sym_auto, - ACTIONS(1848), 1, - anon_sym_decltype, - ACTIONS(7961), 1, - sym_primitive_type, - ACTIONS(8147), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7071), 1, + anon_sym___asm, + ACTIONS(7075), 1, + anon_sym_noexcept, + ACTIONS(7077), 1, + anon_sym_throw, + ACTIONS(7299), 1, + anon_sym___attribute__, + ACTIONS(7424), 1, + anon_sym_DASH_GT, + ACTIONS(7447), 1, + anon_sym_requires, + ACTIONS(9382), 1, + anon_sym_LBRACK, + STATE(6152), 1, + sym_trailing_return_type, + STATE(6234), 1, + sym__function_attributes_end, + STATE(6870), 1, + sym_gnu_asm_expression, + ACTIONS(7069), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7359), 2, + anon_sym_final, + anon_sym_override, + STATE(5455), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5507), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6017), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6132), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5378), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9371), 5, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(9422), 1, - sym_identifier, - ACTIONS(9424), 1, - anon_sym_COLON_COLON, - ACTIONS(9428), 1, - anon_sym_enum, - ACTIONS(9430), 1, - anon_sym_class, - ACTIONS(9432), 1, - anon_sym_struct, - ACTIONS(9434), 1, - anon_sym_union, - ACTIONS(9436), 1, - anon_sym_typename, - STATE(1859), 1, - sym_decltype_auto, - STATE(1869), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1902), 1, - sym_qualified_type_identifier, - STATE(4086), 1, - sym_type_specifier, - STATE(5182), 1, - sym_argument_list, - STATE(6626), 1, - sym__scope_resolution, - STATE(8601), 1, - sym_dependent_type_identifier, - STATE(1713), 2, - sym_decltype, - sym_template_type, - ACTIONS(9426), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1879), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [190811] = 23, + anon_sym_SEMI, + anon_sym_LBRACE, + [194134] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(8147), 1, - anon_sym_LPAREN2, - ACTIONS(9438), 1, - sym_identifier, - ACTIONS(9440), 1, - anon_sym_COLON_COLON, - ACTIONS(9444), 1, - sym_primitive_type, - ACTIONS(9446), 1, - anon_sym_enum, - ACTIONS(9448), 1, - anon_sym_class, - ACTIONS(9450), 1, - anon_sym_struct, - ACTIONS(9452), 1, - anon_sym_union, - ACTIONS(9454), 1, + ACTIONS(1844), 1, sym_auto, - ACTIONS(9456), 1, + ACTIONS(1846), 1, anon_sym_decltype, - ACTIONS(9458), 1, - anon_sym_typename, - STATE(1625), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2784), 1, - sym_type_specifier, - STATE(3111), 1, - sym_decltype_auto, - STATE(3113), 1, - sym_qualified_type_identifier, - STATE(5162), 1, - sym_argument_list, - STATE(6620), 1, - sym__scope_resolution, - STATE(8601), 1, - sym_dependent_type_identifier, - STATE(3044), 2, - sym_decltype, - sym_template_type, - ACTIONS(9442), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3114), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [190891] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(8147), 1, + ACTIONS(7986), 1, + sym_primitive_type, + ACTIONS(8177), 1, anon_sym_LPAREN2, - ACTIONS(9438), 1, + ACTIONS(9435), 1, sym_identifier, - ACTIONS(9440), 1, + ACTIONS(9437), 1, anon_sym_COLON_COLON, - ACTIONS(9444), 1, - sym_primitive_type, - ACTIONS(9446), 1, + ACTIONS(9441), 1, anon_sym_enum, - ACTIONS(9448), 1, + ACTIONS(9443), 1, anon_sym_class, - ACTIONS(9450), 1, + ACTIONS(9445), 1, anon_sym_struct, - ACTIONS(9452), 1, + ACTIONS(9447), 1, anon_sym_union, - ACTIONS(9454), 1, - sym_auto, - ACTIONS(9456), 1, - anon_sym_decltype, - ACTIONS(9458), 1, + ACTIONS(9449), 1, anon_sym_typename, - STATE(1625), 1, + STATE(1887), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2826), 1, - sym_type_specifier, - STATE(3111), 1, + STATE(1888), 1, sym_decltype_auto, - STATE(3113), 1, + STATE(1916), 1, sym_qualified_type_identifier, - STATE(5206), 1, + STATE(3988), 1, + sym_type_specifier, + STATE(5235), 1, sym_argument_list, - STATE(6620), 1, + STATE(6699), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(8569), 1, sym_dependent_type_identifier, - STATE(3044), 2, + STATE(1782), 2, sym_decltype, sym_template_type, - ACTIONS(9442), 4, + ACTIONS(9439), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3114), 7, + STATE(1890), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -455086,22 +461485,22 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [190971] = 5, + [194214] = 5, ACTIONS(3), 1, sym_comment, - STATE(1918), 1, + STATE(1974), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(5926), 4, + ACTIONS(5911), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_LBRACE, - ACTIONS(9460), 4, + ACTIONS(9451), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5928), 23, + ACTIONS(5913), 23, anon_sym_AMP, anon_sym___extension__, anon_sym___attribute__, @@ -455125,22 +461524,22 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - [191015] = 5, + [194258] = 5, ACTIONS(3), 1, sym_comment, - STATE(5023), 1, + STATE(1974), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(5902), 4, + ACTIONS(5951), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_LBRACE, - ACTIONS(9463), 4, + ACTIONS(9454), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5904), 23, + ACTIONS(5953), 23, anon_sym_AMP, anon_sym___extension__, anon_sym___attribute__, @@ -455164,268 +461563,111 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - [191059] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6858), 1, - sym_identifier, - ACTIONS(6862), 1, - sym_primitive_type, - STATE(1658), 1, - sym_alignas_qualifier, - STATE(3075), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1633), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(5100), 3, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_GT2, - ACTIONS(5102), 4, - anon_sym___attribute__, - anon_sym___attribute, - sym_auto, - anon_sym_decltype, - ACTIONS(6860), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [191115] = 21, + [194302] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(7065), 1, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7072), 1, + ACTIONS(7075), 1, anon_sym_noexcept, - ACTIONS(7074), 1, + ACTIONS(7077), 1, anon_sym_throw, - ACTIONS(7313), 1, + ACTIONS(7375), 1, anon_sym_DASH_GT, - ACTIONS(9193), 1, + ACTIONS(9150), 1, anon_sym_LBRACK, - ACTIONS(9276), 1, + ACTIONS(9308), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9281), 1, + ACTIONS(9311), 1, anon_sym_requires, - ACTIONS(9291), 1, + ACTIONS(9333), 1, anon_sym___attribute__, - ACTIONS(9294), 1, + ACTIONS(9336), 1, anon_sym___attribute, - STATE(5447), 1, + STATE(5528), 1, sym_trailing_return_type, - STATE(5882), 1, + STATE(6001), 1, sym__function_attributes_end, - STATE(6766), 1, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(7063), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9195), 2, + ACTIONS(9193), 2, anon_sym_final, anon_sym_override, - STATE(5384), 2, + STATE(5455), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5458), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5606), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5877), 2, + STATE(5927), 2, sym__function_postfix, sym_requires_clause, - STATE(5332), 3, + STATE(5409), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9182), 5, + ACTIONS(9139), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_EQ, anon_sym_GT2, - [191191] = 23, + [194378] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1846), 1, - sym_auto, - ACTIONS(1848), 1, - anon_sym_decltype, - ACTIONS(7961), 1, - sym_primitive_type, - ACTIONS(8147), 1, + ACTIONS(8177), 1, anon_sym_LPAREN2, - ACTIONS(9422), 1, + ACTIONS(9457), 1, sym_identifier, - ACTIONS(9424), 1, + ACTIONS(9459), 1, anon_sym_COLON_COLON, - ACTIONS(9428), 1, + ACTIONS(9463), 1, + sym_primitive_type, + ACTIONS(9465), 1, anon_sym_enum, - ACTIONS(9430), 1, + ACTIONS(9467), 1, anon_sym_class, - ACTIONS(9432), 1, + ACTIONS(9469), 1, anon_sym_struct, - ACTIONS(9434), 1, + ACTIONS(9471), 1, anon_sym_union, - ACTIONS(9436), 1, - anon_sym_typename, - STATE(1859), 1, - sym_decltype_auto, - STATE(1869), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1902), 1, - sym_qualified_type_identifier, - STATE(3934), 1, - sym_type_specifier, - STATE(5230), 1, - sym_argument_list, - STATE(6626), 1, - sym__scope_resolution, - STATE(8601), 1, - sym_dependent_type_identifier, - STATE(1713), 2, - sym_decltype, - sym_template_type, - ACTIONS(9426), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1879), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [191271] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7065), 1, - anon_sym___asm, - ACTIONS(7072), 1, - anon_sym_noexcept, - ACTIONS(7074), 1, - anon_sym_throw, - ACTIONS(7313), 1, - anon_sym_DASH_GT, - ACTIONS(9355), 1, - anon_sym_LBRACK, - ACTIONS(9367), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9376), 1, - anon_sym_requires, - ACTIONS(9466), 1, - anon_sym___attribute__, - ACTIONS(9469), 1, - anon_sym___attribute, - STATE(5448), 1, - sym_trailing_return_type, - STATE(5883), 1, - sym__function_attributes_end, - STATE(6766), 1, - sym_gnu_asm_expression, - ACTIONS(7063), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9357), 2, - anon_sym_final, - anon_sym_override, - STATE(5384), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5458), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5606), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5839), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5333), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9344), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_EQ, - anon_sym_GT2, - [191347] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1846), 1, + ACTIONS(9473), 1, sym_auto, - ACTIONS(1848), 1, + ACTIONS(9475), 1, anon_sym_decltype, - ACTIONS(7961), 1, - sym_primitive_type, - ACTIONS(8147), 1, - anon_sym_LPAREN2, - ACTIONS(9422), 1, - sym_identifier, - ACTIONS(9424), 1, - anon_sym_COLON_COLON, - ACTIONS(9428), 1, - anon_sym_enum, - ACTIONS(9430), 1, - anon_sym_class, - ACTIONS(9432), 1, - anon_sym_struct, - ACTIONS(9434), 1, - anon_sym_union, - ACTIONS(9436), 1, + ACTIONS(9477), 1, anon_sym_typename, - STATE(1859), 1, - sym_decltype_auto, - STATE(1869), 1, + STATE(1671), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1902), 1, - sym_qualified_type_identifier, - STATE(4103), 1, + STATE(2985), 1, sym_type_specifier, - STATE(5174), 1, + STATE(3511), 1, + sym_decltype_auto, + STATE(3525), 1, + sym_qualified_type_identifier, + STATE(5237), 1, sym_argument_list, - STATE(6626), 1, + STATE(6708), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(8569), 1, sym_dependent_type_identifier, - STATE(1713), 2, + STATE(3266), 2, sym_decltype, sym_template_type, - ACTIONS(9426), 4, + ACTIONS(9461), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1879), 7, + STATE(3519), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -455433,224 +461675,313 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [191427] = 24, + [194458] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(7042), 1, + ACTIONS(5020), 1, + anon_sym_LPAREN2, + ACTIONS(5652), 1, + anon_sym_const, + ACTIONS(6781), 1, + anon_sym_COLON, + ACTIONS(8147), 1, + anon_sym_LBRACK, + ACTIONS(8715), 1, + anon_sym_STAR, + ACTIONS(8717), 1, anon_sym_AMP_AMP, - ACTIONS(7044), 1, + ACTIONS(8719), 1, anon_sym_AMP, - ACTIONS(7065), 1, + STATE(1702), 1, + sym_alignas_qualifier, + STATE(3538), 1, + sym_parameter_list, + STATE(6109), 1, + sym__function_declarator_seq, + STATE(6996), 1, + sym__abstract_declarator, + ACTIONS(8471), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1676), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6099), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8463), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [194524] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7072), 1, + ACTIONS(7075), 1, anon_sym_noexcept, - ACTIONS(7074), 1, + ACTIONS(7077), 1, anon_sym_throw, - ACTIONS(7083), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - ACTIONS(7085), 1, - anon_sym___attribute, - ACTIONS(7337), 1, - anon_sym_requires, - ACTIONS(7838), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7840), 1, + ACTIONS(7357), 1, anon_sym_DASH_GT, - ACTIONS(9193), 1, + ACTIONS(9150), 1, anon_sym_LBRACK, - STATE(5236), 1, - sym_ref_qualifier, - STATE(6013), 1, + ACTIONS(9330), 1, + anon_sym_requires, + STATE(6031), 1, sym_trailing_return_type, - STATE(6360), 1, + STATE(6264), 1, sym__function_attributes_end, - STATE(6745), 1, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(7063), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7335), 2, + ACTIONS(9327), 2, anon_sym_final, anon_sym_override, - ACTIONS(9182), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - STATE(5428), 2, + STATE(5455), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5733), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6012), 2, + STATE(6149), 2, sym__function_postfix, sym_requires_clause, - STATE(5383), 3, + STATE(5380), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - [191509] = 21, + ACTIONS(9139), 5, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [194600] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7065), 1, - anon_sym___asm, - ACTIONS(7072), 1, + ACTIONS(7075), 1, anon_sym_noexcept, - ACTIONS(7074), 1, + ACTIONS(7077), 1, anon_sym_throw, - ACTIONS(7147), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - ACTIONS(7317), 1, + ACTIONS(7443), 1, anon_sym_DASH_GT, - ACTIONS(9355), 1, + ACTIONS(9382), 1, anon_sym_LBRACK, - ACTIONS(9367), 1, + ACTIONS(9396), 1, + anon_sym___asm, + ACTIONS(9401), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9472), 1, + ACTIONS(9479), 1, anon_sym_requires, - STATE(6036), 1, + STATE(5888), 1, sym__function_attributes_end, - STATE(6260), 1, + STATE(5993), 1, sym_trailing_return_type, - STATE(6766), 1, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(7063), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9357), 2, + ACTIONS(9387), 2, anon_sym_final, anon_sym_override, - STATE(5384), 2, + ACTIONS(9393), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5455), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5458), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5606), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5839), 2, + STATE(5934), 2, sym__function_postfix, sym_requires_clause, - STATE(5323), 3, + STATE(5387), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9344), 5, - anon_sym_RPAREN, + ACTIONS(9371), 5, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_try, - [191585] = 21, + [194676] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7065), 1, + ACTIONS(7048), 1, + anon_sym_AMP_AMP, + ACTIONS(7050), 1, + anon_sym_AMP, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7072), 1, + ACTIONS(7075), 1, anon_sym_noexcept, - ACTIONS(7074), 1, + ACTIONS(7077), 1, anon_sym_throw, - ACTIONS(7147), 1, + ACTIONS(7283), 1, anon_sym___attribute__, - ACTIONS(7330), 1, + ACTIONS(7285), 1, + anon_sym___attribute, + ACTIONS(7918), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7920), 1, anon_sym_DASH_GT, - ACTIONS(7400), 1, - anon_sym_requires, - ACTIONS(9193), 1, + ACTIONS(9150), 1, anon_sym_LBRACK, - STATE(5909), 1, + ACTIONS(9366), 1, + anon_sym_requires, + STATE(5343), 1, + sym_ref_qualifier, + STATE(6182), 1, sym_trailing_return_type, - STATE(6127), 1, + STATE(6500), 1, sym__function_attributes_end, - STATE(6766), 1, + STATE(6850), 1, sym_gnu_asm_expression, - ACTIONS(7063), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7335), 2, + ACTIONS(9139), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + ACTIONS(9327), 2, anon_sym_final, anon_sym_override, - STATE(5384), 2, + STATE(5540), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5458), 2, + STATE(5730), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6012), 2, + STATE(6149), 2, sym__function_postfix, sym_requires_clause, - STATE(5307), 3, + STATE(5454), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9182), 5, + [194758] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(5075), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5966), 4, anon_sym_LPAREN2, - anon_sym_SEMI, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [191661] = 23, + ACTIONS(9482), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5968), 23, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___based, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + sym_auto, + anon_sym_decltype, + [194802] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(8147), 1, + ACTIONS(8177), 1, anon_sym_LPAREN2, - ACTIONS(9382), 1, + ACTIONS(9457), 1, sym_identifier, - ACTIONS(9384), 1, + ACTIONS(9459), 1, anon_sym_COLON_COLON, - ACTIONS(9388), 1, + ACTIONS(9463), 1, sym_primitive_type, - ACTIONS(9390), 1, + ACTIONS(9465), 1, anon_sym_enum, - ACTIONS(9392), 1, + ACTIONS(9467), 1, anon_sym_class, - ACTIONS(9394), 1, + ACTIONS(9469), 1, anon_sym_struct, - ACTIONS(9396), 1, + ACTIONS(9471), 1, anon_sym_union, - ACTIONS(9398), 1, + ACTIONS(9473), 1, sym_auto, - ACTIONS(9400), 1, + ACTIONS(9475), 1, anon_sym_decltype, - ACTIONS(9402), 1, + ACTIONS(9477), 1, anon_sym_typename, - STATE(1592), 1, + STATE(1671), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1892), 1, + STATE(3002), 1, sym_type_specifier, - STATE(2273), 1, - sym_qualified_type_identifier, - STATE(2309), 1, + STATE(3511), 1, sym_decltype_auto, - STATE(5218), 1, + STATE(3525), 1, + sym_qualified_type_identifier, + STATE(5253), 1, sym_argument_list, - STATE(6580), 1, + STATE(6708), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(8569), 1, sym_dependent_type_identifier, - STATE(2174), 2, + STATE(3266), 2, sym_decltype, sym_template_type, - ACTIONS(9386), 4, + ACTIONS(9461), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2245), 7, + STATE(3519), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -455658,22 +461989,77 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [191741] = 5, + [194882] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7071), 1, + anon_sym___asm, + ACTIONS(7075), 1, + anon_sym_noexcept, + ACTIONS(7077), 1, + anon_sym_throw, + ACTIONS(7445), 1, + anon_sym_DASH_GT, + ACTIONS(9150), 1, + anon_sym_LBRACK, + ACTIONS(9330), 1, + anon_sym_requires, + ACTIONS(9333), 1, + anon_sym___attribute__, + ACTIONS(9336), 1, + anon_sym___attribute, + STATE(6031), 1, + sym_trailing_return_type, + STATE(6067), 1, + sym__function_attributes_end, + STATE(6870), 1, + sym_gnu_asm_expression, + ACTIONS(7069), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9327), 2, + anon_sym_final, + anon_sym_override, + STATE(5455), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5507), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6017), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6149), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5390), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9139), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_EQ, + anon_sym_GT2, + [194958] = 5, ACTIONS(3), 1, sym_comment, - STATE(1918), 1, + STATE(5086), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(5888), 4, + ACTIONS(5972), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_LBRACE, - ACTIONS(9475), 4, + ACTIONS(9485), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5890), 23, + ACTIONS(5974), 23, anon_sym_AMP, anon_sym___extension__, anon_sym___attribute__, @@ -455697,95 +462083,86 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - [191785] = 16, + [195002] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(5012), 1, - anon_sym_LPAREN2, - ACTIONS(5706), 1, - anon_sym_const, - ACTIONS(5865), 1, - anon_sym_COLON, - ACTIONS(8131), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7071), 1, + anon_sym___asm, + ACTIONS(7075), 1, + anon_sym_noexcept, + ACTIONS(7077), 1, + anon_sym_throw, + ACTIONS(7299), 1, + anon_sym___attribute__, + ACTIONS(7424), 1, + anon_sym_DASH_GT, + ACTIONS(9382), 1, anon_sym_LBRACK, - ACTIONS(8685), 1, - anon_sym_STAR, - ACTIONS(8687), 1, - anon_sym_AMP_AMP, - ACTIONS(8689), 1, - anon_sym_AMP, - STATE(1695), 1, - sym_alignas_qualifier, - STATE(3485), 1, - sym_parameter_list, - STATE(6087), 1, - sym__function_declarator_seq, - STATE(6905), 1, - sym__abstract_declarator, - ACTIONS(8387), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1655), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6092), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8379), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [191851] = 16, + ACTIONS(9491), 1, + anon_sym_requires, + STATE(6111), 1, + sym_trailing_return_type, + STATE(6221), 1, + sym__function_attributes_end, + STATE(6870), 1, + sym_gnu_asm_expression, + ACTIONS(7069), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9488), 2, + anon_sym_final, + anon_sym_override, + STATE(5455), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5507), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6017), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6132), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5379), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9371), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + [195078] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5012), 1, + ACTIONS(4187), 1, + anon_sym_COLON_COLON, + ACTIONS(8725), 1, + anon_sym_LT, + STATE(1623), 1, + sym_template_argument_list, + STATE(5098), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(4172), 3, anon_sym_LPAREN2, - ACTIONS(5706), 1, - anon_sym_const, - ACTIONS(8131), 1, - anon_sym_LBRACK, - ACTIONS(8441), 1, - anon_sym_COLON, - ACTIONS(8685), 1, anon_sym_STAR, - ACTIONS(8687), 1, anon_sym_AMP_AMP, - ACTIONS(8689), 1, + ACTIONS(9494), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4164), 21, anon_sym_AMP, - STATE(1695), 1, - sym_alignas_qualifier, - STATE(3485), 1, - sym_parameter_list, - STATE(6087), 1, - sym__function_declarator_seq, - STATE(6868), 1, - sym__abstract_declarator, - ACTIONS(8387), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1655), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6092), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8379), 12, anon_sym___extension__, + anon_sym___based, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -455797,114 +462174,270 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [191917] = 24, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + sym_auto, + anon_sym_decltype, + [195128] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(7042), 1, - anon_sym_AMP_AMP, - ACTIONS(7044), 1, - anon_sym_AMP, - ACTIONS(7065), 1, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(8177), 1, + anon_sym_LPAREN2, + ACTIONS(9496), 1, + sym_identifier, + ACTIONS(9498), 1, + anon_sym_COLON_COLON, + ACTIONS(9502), 1, + sym_primitive_type, + ACTIONS(9504), 1, + anon_sym_enum, + ACTIONS(9506), 1, + anon_sym_class, + ACTIONS(9508), 1, + anon_sym_struct, + ACTIONS(9510), 1, + anon_sym_union, + ACTIONS(9512), 1, + sym_auto, + ACTIONS(9514), 1, + anon_sym_decltype, + ACTIONS(9516), 1, + anon_sym_typename, + STATE(1645), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2804), 1, + sym_type_specifier, + STATE(3157), 1, + sym_decltype_auto, + STATE(3216), 1, + sym_qualified_type_identifier, + STATE(5286), 1, + sym_argument_list, + STATE(6728), 1, + sym__scope_resolution, + STATE(8569), 1, + sym_dependent_type_identifier, + STATE(3064), 2, + sym_decltype, + sym_template_type, + ACTIONS(9500), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3158), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [195208] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(8177), 1, + anon_sym_LPAREN2, + ACTIONS(9496), 1, + sym_identifier, + ACTIONS(9498), 1, + anon_sym_COLON_COLON, + ACTIONS(9502), 1, + sym_primitive_type, + ACTIONS(9504), 1, + anon_sym_enum, + ACTIONS(9506), 1, + anon_sym_class, + ACTIONS(9508), 1, + anon_sym_struct, + ACTIONS(9510), 1, + anon_sym_union, + ACTIONS(9512), 1, + sym_auto, + ACTIONS(9514), 1, + anon_sym_decltype, + ACTIONS(9516), 1, + anon_sym_typename, + STATE(1645), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2805), 1, + sym_type_specifier, + STATE(3157), 1, + sym_decltype_auto, + STATE(3216), 1, + sym_qualified_type_identifier, + STATE(5288), 1, + sym_argument_list, + STATE(6728), 1, + sym__scope_resolution, + STATE(8569), 1, + sym_dependent_type_identifier, + STATE(3064), 2, + sym_decltype, + sym_template_type, + ACTIONS(9500), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3158), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [195288] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7072), 1, + ACTIONS(7075), 1, anon_sym_noexcept, - ACTIONS(7074), 1, + ACTIONS(7077), 1, anon_sym_throw, - ACTIONS(7083), 1, - anon_sym___attribute__, - ACTIONS(7085), 1, - anon_sym___attribute, - ACTIONS(7867), 1, + ACTIONS(7375), 1, anon_sym_DASH_GT, - ACTIONS(9190), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9193), 1, + ACTIONS(9382), 1, anon_sym_LBRACK, - ACTIONS(9478), 1, + ACTIONS(9401), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9407), 1, anon_sym_requires, - STATE(5254), 1, - sym_ref_qualifier, - STATE(6315), 1, - sym__function_attributes_end, - STATE(6471), 1, + ACTIONS(9518), 1, + anon_sym___attribute__, + ACTIONS(9521), 1, + anon_sym___attribute, + STATE(5536), 1, sym_trailing_return_type, - STATE(6745), 1, + STATE(6002), 1, + sym__function_attributes_end, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(7063), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9182), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - ACTIONS(9195), 2, + ACTIONS(9387), 2, anon_sym_final, anon_sym_override, - STATE(5428), 2, + STATE(5455), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5606), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5733), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5877), 2, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5934), 2, sym__function_postfix, sym_requires_clause, - STATE(5377), 3, + STATE(5383), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - [191999] = 23, + ACTIONS(9371), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_EQ, + anon_sym_GT2, + [195364] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(1974), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5167), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACE, + ACTIONS(9524), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5164), 23, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___based, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + sym_auto, + anon_sym_decltype, + [195408] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(8147), 1, + ACTIONS(8177), 1, anon_sym_LPAREN2, - ACTIONS(9384), 1, + ACTIONS(9410), 1, + sym_identifier, + ACTIONS(9412), 1, anon_sym_COLON_COLON, - ACTIONS(9392), 1, + ACTIONS(9416), 1, + sym_primitive_type, + ACTIONS(9418), 1, + anon_sym_enum, + ACTIONS(9420), 1, anon_sym_class, - ACTIONS(9394), 1, + ACTIONS(9422), 1, anon_sym_struct, - ACTIONS(9396), 1, + ACTIONS(9424), 1, anon_sym_union, - ACTIONS(9398), 1, + ACTIONS(9426), 1, sym_auto, - ACTIONS(9400), 1, + ACTIONS(9428), 1, anon_sym_decltype, - ACTIONS(9481), 1, - sym_identifier, - ACTIONS(9485), 1, - sym_primitive_type, - ACTIONS(9487), 1, - anon_sym_enum, - ACTIONS(9489), 1, + ACTIONS(9430), 1, anon_sym_typename, - STATE(1594), 1, + STATE(1860), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1892), 1, - sym_type_specifier, - STATE(2273), 1, + STATE(1916), 1, sym_qualified_type_identifier, - STATE(2309), 1, + STATE(3853), 1, + sym_type_specifier, + STATE(4125), 1, sym_decltype_auto, - STATE(5167), 1, + STATE(5230), 1, sym_argument_list, - STATE(6580), 1, + STATE(6732), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(8569), 1, sym_dependent_type_identifier, - STATE(2174), 2, + STATE(4102), 2, sym_decltype, sym_template_type, - ACTIONS(9483), 4, + ACTIONS(9414), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2245), 7, + STATE(4108), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -455912,111 +462445,166 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [192079] = 21, + [195488] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7065), 1, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7072), 1, + ACTIONS(7075), 1, anon_sym_noexcept, - ACTIONS(7074), 1, + ACTIONS(7077), 1, anon_sym_throw, - ACTIONS(7147), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - ACTIONS(7330), 1, + ACTIONS(7424), 1, anon_sym_DASH_GT, - ACTIONS(7400), 1, + ACTIONS(7447), 1, anon_sym_requires, - ACTIONS(9355), 1, + ACTIONS(9150), 1, anon_sym_LBRACK, - STATE(5927), 1, + STATE(6123), 1, sym_trailing_return_type, - STATE(6104), 1, + STATE(6207), 1, sym__function_attributes_end, - STATE(6766), 1, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(7063), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7335), 2, + ACTIONS(7359), 2, anon_sym_final, anon_sym_override, - STATE(5384), 2, + STATE(5455), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5458), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6032), 2, + STATE(6149), 2, sym__function_postfix, sym_requires_clause, - STATE(5308), 3, + STATE(5384), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9344), 5, + ACTIONS(9139), 5, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, + [195564] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7071), 1, + anon_sym___asm, + ACTIONS(7075), 1, + anon_sym_noexcept, + ACTIONS(7077), 1, + anon_sym_throw, + ACTIONS(7314), 1, + anon_sym_requires, + ACTIONS(7375), 1, + anon_sym_DASH_GT, + ACTIONS(9150), 1, + anon_sym_LBRACK, + ACTIONS(9308), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9333), 1, + anon_sym___attribute__, + ACTIONS(9336), 1, + anon_sym___attribute, + STATE(5526), 1, + sym_trailing_return_type, + STATE(5995), 1, + sym__function_attributes_end, + STATE(6870), 1, + sym_gnu_asm_expression, + ACTIONS(6037), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7069), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5455), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5507), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5927), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5392), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9139), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_EQ, - anon_sym_try, - [192155] = 23, + anon_sym_GT2, + [195640] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(8147), 1, + ACTIONS(8177), 1, anon_sym_LPAREN2, - ACTIONS(9384), 1, + ACTIONS(9528), 1, + sym_identifier, + ACTIONS(9530), 1, anon_sym_COLON_COLON, - ACTIONS(9392), 1, + ACTIONS(9534), 1, + sym_primitive_type, + ACTIONS(9536), 1, + anon_sym_enum, + ACTIONS(9538), 1, anon_sym_class, - ACTIONS(9394), 1, + ACTIONS(9540), 1, anon_sym_struct, - ACTIONS(9396), 1, + ACTIONS(9542), 1, anon_sym_union, - ACTIONS(9398), 1, + ACTIONS(9544), 1, sym_auto, - ACTIONS(9400), 1, + ACTIONS(9546), 1, anon_sym_decltype, - ACTIONS(9481), 1, - sym_identifier, - ACTIONS(9485), 1, - sym_primitive_type, - ACTIONS(9487), 1, - anon_sym_enum, - ACTIONS(9489), 1, + ACTIONS(9548), 1, anon_sym_typename, - STATE(1594), 1, + STATE(1612), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1911), 1, + STATE(1921), 1, sym_type_specifier, - STATE(2273), 1, - sym_qualified_type_identifier, - STATE(2309), 1, + STATE(2306), 1, sym_decltype_auto, - STATE(5208), 1, + STATE(2335), 1, + sym_qualified_type_identifier, + STATE(5275), 1, sym_argument_list, - STATE(6580), 1, + STATE(6695), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(8569), 1, sym_dependent_type_identifier, - STATE(2174), 2, + STATE(2242), 2, sym_decltype, sym_template_type, - ACTIONS(9483), 4, + ACTIONS(9532), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2245), 7, + STATE(2310), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -456024,265 +462612,169 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [192235] = 10, + [195720] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5593), 1, - sym_auto, - ACTIONS(5595), 1, - anon_sym_decltype, - STATE(1658), 1, - sym_alignas_qualifier, - STATE(1884), 1, - sym_decltype_auto, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(5241), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(9493), 3, - anon_sym_LPAREN2, - anon_sym_STAR, + ACTIONS(7048), 1, anon_sym_AMP_AMP, - ACTIONS(9491), 8, + ACTIONS(7050), 1, anon_sym_AMP, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - sym_identifier, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [192289] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7065), 1, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7072), 1, + ACTIONS(7075), 1, anon_sym_noexcept, - ACTIONS(7074), 1, + ACTIONS(7077), 1, anon_sym_throw, - ACTIONS(7147), 1, + ACTIONS(7283), 1, anon_sym___attribute__, - ACTIONS(7322), 1, - anon_sym_DASH_GT, - ACTIONS(9355), 1, - anon_sym_LBRACK, - ACTIONS(9498), 1, - anon_sym_requires, - STATE(6063), 1, - sym_trailing_return_type, - STATE(6150), 1, - sym__function_attributes_end, - STATE(6766), 1, - sym_gnu_asm_expression, - ACTIONS(7063), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9495), 2, - anon_sym_final, - anon_sym_override, - STATE(5384), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5458), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6032), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5326), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9344), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - [192365] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, + ACTIONS(7285), 1, anon_sym___attribute, - ACTIONS(7065), 1, - anon_sym___asm, - ACTIONS(7072), 1, - anon_sym_noexcept, - ACTIONS(7074), 1, - anon_sym_throw, - ACTIONS(7147), 1, - anon_sym___attribute__, - ACTIONS(7317), 1, + ACTIONS(7913), 1, anon_sym_DASH_GT, - ACTIONS(9193), 1, - anon_sym_LBRACK, - ACTIONS(9276), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9316), 1, + ACTIONS(7924), 1, anon_sym_requires, - STATE(6023), 1, + ACTIONS(9147), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9150), 1, + anon_sym_LBRACK, + STATE(5339), 1, + sym_ref_qualifier, + STATE(6431), 1, sym__function_attributes_end, - STATE(6254), 1, + STATE(6598), 1, sym_trailing_return_type, - STATE(6766), 1, + STATE(6850), 1, sym_gnu_asm_expression, - ACTIONS(7063), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9195), 2, + ACTIONS(6037), 2, anon_sym_final, anon_sym_override, - STATE(5384), 2, + ACTIONS(7069), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9139), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + STATE(5540), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5458), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5606), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5877), 2, + STATE(5730), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5927), 2, sym__function_postfix, sym_requires_clause, - STATE(5322), 3, + STATE(5451), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9182), 5, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_try, - [192441] = 21, + [195802] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7065), 1, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7072), 1, + ACTIONS(7075), 1, anon_sym_noexcept, - ACTIONS(7074), 1, + ACTIONS(7077), 1, anon_sym_throw, - ACTIONS(7147), 1, - anon_sym___attribute__, - ACTIONS(7330), 1, + ACTIONS(7445), 1, anon_sym_DASH_GT, - ACTIONS(9193), 1, + ACTIONS(9382), 1, anon_sym_LBRACK, - ACTIONS(9300), 1, + ACTIONS(9518), 1, + anon_sym___attribute__, + ACTIONS(9521), 1, + anon_sym___attribute, + ACTIONS(9550), 1, anon_sym_requires, - STATE(5932), 1, + STATE(5980), 1, sym_trailing_return_type, - STATE(6099), 1, + STATE(6048), 1, sym__function_attributes_end, - STATE(6766), 1, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(7063), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9297), 2, + ACTIONS(9488), 2, anon_sym_final, anon_sym_override, - STATE(5384), 2, + STATE(5455), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5458), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6012), 2, + STATE(6132), 2, sym__function_postfix, sym_requires_clause, - STATE(5329), 3, + STATE(5391), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9182), 5, + ACTIONS(9371), 5, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_EQ, - anon_sym_try, - [192517] = 23, + anon_sym_GT2, + [195878] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(8147), 1, + ACTIONS(8177), 1, anon_sym_LPAREN2, - ACTIONS(9501), 1, - sym_identifier, - ACTIONS(9503), 1, + ACTIONS(9530), 1, anon_sym_COLON_COLON, - ACTIONS(9507), 1, - sym_primitive_type, - ACTIONS(9509), 1, - anon_sym_enum, - ACTIONS(9511), 1, + ACTIONS(9538), 1, anon_sym_class, - ACTIONS(9513), 1, + ACTIONS(9540), 1, anon_sym_struct, - ACTIONS(9515), 1, + ACTIONS(9542), 1, anon_sym_union, - ACTIONS(9517), 1, + ACTIONS(9544), 1, sym_auto, - ACTIONS(9519), 1, + ACTIONS(9546), 1, anon_sym_decltype, - ACTIONS(9521), 1, + ACTIONS(9553), 1, + sym_identifier, + ACTIONS(9557), 1, + sym_primitive_type, + ACTIONS(9559), 1, + anon_sym_enum, + ACTIONS(9561), 1, anon_sym_typename, - STATE(1619), 1, + STATE(1614), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2718), 1, + STATE(1921), 1, sym_type_specifier, - STATE(2976), 1, + STATE(2306), 1, sym_decltype_auto, - STATE(2983), 1, + STATE(2335), 1, sym_qualified_type_identifier, - STATE(5185), 1, + STATE(5241), 1, sym_argument_list, - STATE(6633), 1, + STATE(6695), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(8569), 1, sym_dependent_type_identifier, - STATE(2924), 2, + STATE(2242), 2, sym_decltype, sym_template_type, - ACTIONS(9505), 4, + ACTIONS(9555), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2978), 7, + STATE(2310), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -456290,22 +462782,22 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [192597] = 5, + [195958] = 5, ACTIONS(3), 1, sym_comment, - STATE(5016), 1, + STATE(1974), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(5936), 4, + ACTIONS(5978), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_LBRACE, - ACTIONS(9523), 4, + ACTIONS(9563), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5938), 23, + ACTIONS(5980), 23, anon_sym_AMP, anon_sym___extension__, anon_sym___attribute__, @@ -456329,56 +462821,113 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - [192641] = 23, + [196002] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1846), 1, + ACTIONS(8177), 1, + anon_sym_LPAREN2, + ACTIONS(9530), 1, + anon_sym_COLON_COLON, + ACTIONS(9538), 1, + anon_sym_class, + ACTIONS(9540), 1, + anon_sym_struct, + ACTIONS(9542), 1, + anon_sym_union, + ACTIONS(9544), 1, sym_auto, - ACTIONS(1848), 1, + ACTIONS(9546), 1, anon_sym_decltype, - ACTIONS(7961), 1, + ACTIONS(9553), 1, + sym_identifier, + ACTIONS(9557), 1, sym_primitive_type, - ACTIONS(8147), 1, + ACTIONS(9559), 1, + anon_sym_enum, + ACTIONS(9561), 1, + anon_sym_typename, + STATE(1614), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1929), 1, + sym_type_specifier, + STATE(2306), 1, + sym_decltype_auto, + STATE(2335), 1, + sym_qualified_type_identifier, + STATE(5242), 1, + sym_argument_list, + STATE(6695), 1, + sym__scope_resolution, + STATE(8569), 1, + sym_dependent_type_identifier, + STATE(2242), 2, + sym_decltype, + sym_template_type, + ACTIONS(9555), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2310), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [196082] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(8177), 1, anon_sym_LPAREN2, - ACTIONS(9422), 1, + ACTIONS(9528), 1, sym_identifier, - ACTIONS(9424), 1, + ACTIONS(9530), 1, anon_sym_COLON_COLON, - ACTIONS(9428), 1, + ACTIONS(9534), 1, + sym_primitive_type, + ACTIONS(9536), 1, anon_sym_enum, - ACTIONS(9430), 1, + ACTIONS(9538), 1, anon_sym_class, - ACTIONS(9432), 1, + ACTIONS(9540), 1, anon_sym_struct, - ACTIONS(9434), 1, + ACTIONS(9542), 1, anon_sym_union, - ACTIONS(9436), 1, + ACTIONS(9544), 1, + sym_auto, + ACTIONS(9546), 1, + anon_sym_decltype, + ACTIONS(9548), 1, anon_sym_typename, - STATE(1859), 1, - sym_decltype_auto, - STATE(1869), 1, + STATE(1612), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1902), 1, - sym_qualified_type_identifier, - STATE(3949), 1, + STATE(1929), 1, sym_type_specifier, - STATE(5188), 1, + STATE(2306), 1, + sym_decltype_auto, + STATE(2335), 1, + sym_qualified_type_identifier, + STATE(5238), 1, sym_argument_list, - STATE(6626), 1, + STATE(6695), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(8569), 1, sym_dependent_type_identifier, - STATE(1713), 2, + STATE(2242), 2, sym_decltype, sym_template_type, - ACTIONS(9426), 4, + ACTIONS(9532), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1879), 7, + STATE(2310), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -456386,44 +462935,44 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [192721] = 16, + [196162] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5012), 1, + ACTIONS(5020), 1, anon_sym_LPAREN2, - ACTIONS(5706), 1, + ACTIONS(5652), 1, anon_sym_const, - ACTIONS(6748), 1, - anon_sym_COLON, - ACTIONS(8131), 1, + ACTIONS(8147), 1, anon_sym_LBRACK, - ACTIONS(8685), 1, + ACTIONS(8487), 1, + anon_sym_COLON, + ACTIONS(8715), 1, anon_sym_STAR, - ACTIONS(8687), 1, + ACTIONS(8717), 1, anon_sym_AMP_AMP, - ACTIONS(8689), 1, + ACTIONS(8719), 1, anon_sym_AMP, - STATE(1695), 1, + STATE(1702), 1, sym_alignas_qualifier, - STATE(3485), 1, + STATE(3538), 1, sym_parameter_list, - STATE(6087), 1, + STATE(6109), 1, sym__function_declarator_seq, - STATE(6879), 1, + STATE(7007), 1, sym__abstract_declarator, - ACTIONS(8387), 2, + ACTIONS(8471), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1655), 2, + STATE(1676), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6092), 5, + STATE(6099), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8379), 12, + ACTIONS(8463), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -456436,311 +462985,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [192787] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(8147), 1, - anon_sym_LPAREN2, - ACTIONS(9526), 1, - sym_identifier, - ACTIONS(9528), 1, - anon_sym_COLON_COLON, - ACTIONS(9532), 1, - sym_primitive_type, - ACTIONS(9534), 1, - anon_sym_enum, - ACTIONS(9536), 1, - anon_sym_class, - ACTIONS(9538), 1, - anon_sym_struct, - ACTIONS(9540), 1, - anon_sym_union, - ACTIONS(9542), 1, - sym_auto, - ACTIONS(9544), 1, - anon_sym_decltype, - ACTIONS(9546), 1, - anon_sym_typename, - STATE(1637), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2955), 1, - sym_type_specifier, - STATE(3491), 1, - sym_decltype_auto, - STATE(3507), 1, - sym_qualified_type_identifier, - STATE(5191), 1, - sym_argument_list, - STATE(6578), 1, - sym__scope_resolution, - STATE(8601), 1, - sym_dependent_type_identifier, - STATE(3329), 2, - sym_decltype, - sym_template_type, - ACTIONS(9530), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3504), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [192867] = 24, + [196228] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(7042), 1, - anon_sym_AMP_AMP, - ACTIONS(7044), 1, - anon_sym_AMP, - ACTIONS(7065), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7072), 1, + ACTIONS(7075), 1, anon_sym_noexcept, - ACTIONS(7074), 1, + ACTIONS(7077), 1, anon_sym_throw, - ACTIONS(7083), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - ACTIONS(7085), 1, - anon_sym___attribute, - ACTIONS(7867), 1, + ACTIONS(7357), 1, anon_sym_DASH_GT, - ACTIONS(7906), 1, - anon_sym_requires, - ACTIONS(9190), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9193), 1, + ACTIONS(9382), 1, anon_sym_LBRACK, - STATE(5261), 1, - sym_ref_qualifier, - STATE(6333), 1, - sym__function_attributes_end, - STATE(6455), 1, + ACTIONS(9550), 1, + anon_sym_requires, + STATE(5980), 1, sym_trailing_return_type, - STATE(6745), 1, + STATE(6270), 1, + sym__function_attributes_end, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(6020), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7063), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9182), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - STATE(5428), 2, + ACTIONS(9488), 2, + anon_sym_final, + anon_sym_override, + STATE(5455), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5606), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5733), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5877), 2, + STATE(6017), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6132), 2, sym__function_postfix, sym_requires_clause, - STATE(5373), 3, + STATE(5399), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - [192949] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(3164), 1, - sym_auto, - ACTIONS(3166), 1, - anon_sym_decltype, - ACTIONS(8051), 1, - sym_primitive_type, - ACTIONS(8147), 1, + ACTIONS(9371), 5, anon_sym_LPAREN2, - ACTIONS(9404), 1, - sym_identifier, - ACTIONS(9406), 1, - anon_sym_COLON_COLON, - ACTIONS(9410), 1, - anon_sym_enum, - ACTIONS(9412), 1, - anon_sym_class, - ACTIONS(9414), 1, - anon_sym_struct, - ACTIONS(9416), 1, - anon_sym_union, - ACTIONS(9418), 1, - anon_sym_typename, - STATE(2170), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2657), 1, - sym_qualified_type_identifier, - STATE(2708), 1, - sym_decltype_auto, - STATE(4121), 1, - sym_type_specifier, - STATE(5226), 1, - sym_argument_list, - STATE(6594), 1, - sym__scope_resolution, - STATE(8601), 1, - sym_dependent_type_identifier, - STATE(2598), 2, - sym_decltype, - sym_template_type, - ACTIONS(9408), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2668), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [193029] = 21, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [196304] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7065), 1, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7072), 1, + ACTIONS(7075), 1, anon_sym_noexcept, - ACTIONS(7074), 1, + ACTIONS(7077), 1, anon_sym_throw, - ACTIONS(7147), 1, - anon_sym___attribute__, - ACTIONS(7330), 1, + ACTIONS(7361), 1, + anon_sym_requires, + ACTIONS(7445), 1, anon_sym_DASH_GT, - ACTIONS(9355), 1, + ACTIONS(9382), 1, anon_sym_LBRACK, - ACTIONS(9548), 1, - anon_sym_requires, - STATE(5904), 1, + ACTIONS(9518), 1, + anon_sym___attribute__, + ACTIONS(9521), 1, + anon_sym___attribute, + STATE(6016), 1, sym_trailing_return_type, - STATE(6108), 1, + STATE(6084), 1, sym__function_attributes_end, - STATE(6766), 1, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(7063), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9495), 2, + ACTIONS(7359), 2, anon_sym_final, anon_sym_override, - STATE(5384), 2, + STATE(5455), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5458), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6032), 2, + STATE(6132), 2, sym__function_postfix, sym_requires_clause, - STATE(5330), 3, + STATE(5406), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9344), 5, + ACTIONS(9371), 5, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_EQ, - anon_sym_try, - [193105] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(8147), 1, - anon_sym_LPAREN2, - ACTIONS(9501), 1, - sym_identifier, - ACTIONS(9503), 1, - anon_sym_COLON_COLON, - ACTIONS(9507), 1, - sym_primitive_type, - ACTIONS(9509), 1, - anon_sym_enum, - ACTIONS(9511), 1, - anon_sym_class, - ACTIONS(9513), 1, - anon_sym_struct, - ACTIONS(9515), 1, - anon_sym_union, - ACTIONS(9517), 1, - sym_auto, - ACTIONS(9519), 1, - anon_sym_decltype, - ACTIONS(9521), 1, - anon_sym_typename, - STATE(1619), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2709), 1, - sym_type_specifier, - STATE(2976), 1, - sym_decltype_auto, - STATE(2983), 1, - sym_qualified_type_identifier, - STATE(5221), 1, - sym_argument_list, - STATE(6633), 1, - sym__scope_resolution, - STATE(8601), 1, - sym_dependent_type_identifier, - STATE(2924), 2, - sym_decltype, - sym_template_type, - ACTIONS(9505), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2978), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [193185] = 4, + anon_sym_GT2, + [196380] = 8, ACTIONS(3), 1, sym_comment, - STATE(4995), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5752), 4, + ACTIONS(9566), 1, + sym_ms_restrict_modifier, + STATE(5308), 1, + sym_ms_unaligned_ptr_modifier, + ACTIONS(7834), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(9569), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(9572), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(5081), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(7836), 22, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_LBRACE, - ACTIONS(5750), 27, - anon_sym_AMP, anon_sym___extension__, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, + anon_sym_COLON, + anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -456754,31 +463134,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - sym_auto, - anon_sym_decltype, - [193227] = 5, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [196430] = 4, ACTIONS(3), 1, sym_comment, - STATE(1918), 1, + STATE(5047), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(5942), 4, + ACTIONS(5778), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_LBRACE, - ACTIONS(9551), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5944), 23, + ACTIONS(5776), 27, anon_sym_AMP, anon_sym___extension__, anon_sym___attribute__, anon_sym___attribute, anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -456797,131 +463175,197 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - [193271] = 21, + [196472] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1844), 1, + sym_auto, + ACTIONS(1846), 1, + anon_sym_decltype, + ACTIONS(7986), 1, + sym_primitive_type, + ACTIONS(8177), 1, + anon_sym_LPAREN2, + ACTIONS(9435), 1, + sym_identifier, + ACTIONS(9437), 1, + anon_sym_COLON_COLON, + ACTIONS(9441), 1, + anon_sym_enum, + ACTIONS(9443), 1, + anon_sym_class, + ACTIONS(9445), 1, + anon_sym_struct, + ACTIONS(9447), 1, + anon_sym_union, + ACTIONS(9449), 1, + anon_sym_typename, + STATE(1887), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1888), 1, + sym_decltype_auto, + STATE(1916), 1, + sym_qualified_type_identifier, + STATE(4132), 1, + sym_type_specifier, + STATE(5280), 1, + sym_argument_list, + STATE(6699), 1, + sym__scope_resolution, + STATE(8569), 1, + sym_dependent_type_identifier, + STATE(1782), 2, + sym_decltype, + sym_template_type, + ACTIONS(9439), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1890), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [196552] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1844), 1, + sym_auto, + ACTIONS(1846), 1, + anon_sym_decltype, + ACTIONS(7986), 1, + sym_primitive_type, + ACTIONS(8177), 1, + anon_sym_LPAREN2, + ACTIONS(9435), 1, + sym_identifier, + ACTIONS(9437), 1, + anon_sym_COLON_COLON, + ACTIONS(9441), 1, + anon_sym_enum, + ACTIONS(9443), 1, + anon_sym_class, + ACTIONS(9445), 1, + anon_sym_struct, + ACTIONS(9447), 1, + anon_sym_union, + ACTIONS(9449), 1, + anon_sym_typename, + STATE(1887), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1888), 1, + sym_decltype_auto, + STATE(1916), 1, + sym_qualified_type_identifier, + STATE(4111), 1, + sym_type_specifier, + STATE(5282), 1, + sym_argument_list, + STATE(6699), 1, + sym__scope_resolution, + STATE(8569), 1, + sym_dependent_type_identifier, + STATE(1782), 2, + sym_decltype, + sym_template_type, + ACTIONS(9439), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1890), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [196632] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7065), 1, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7072), 1, + ACTIONS(7075), 1, anon_sym_noexcept, - ACTIONS(7074), 1, + ACTIONS(7077), 1, anon_sym_throw, - ACTIONS(7147), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - ACTIONS(7322), 1, + ACTIONS(7424), 1, anon_sym_DASH_GT, - ACTIONS(7337), 1, - anon_sym_requires, - ACTIONS(9193), 1, + ACTIONS(9150), 1, anon_sym_LBRACK, - STATE(6013), 1, + ACTIONS(9366), 1, + anon_sym_requires, + STATE(6182), 1, sym_trailing_return_type, - STATE(6133), 1, + STATE(6214), 1, sym__function_attributes_end, - STATE(6766), 1, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(7063), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7335), 2, + ACTIONS(9327), 2, anon_sym_final, anon_sym_override, - STATE(5384), 2, + STATE(5455), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5458), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6012), 2, + STATE(6149), 2, sym__function_postfix, sym_requires_clause, - STATE(5305), 3, + STATE(5396), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9182), 5, + ACTIONS(9139), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, - [193347] = 10, + [196708] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5593), 1, - sym_auto, - ACTIONS(5595), 1, - anon_sym_decltype, - STATE(1658), 1, - sym_alignas_qualifier, - STATE(1884), 1, - sym_decltype_auto, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(5239), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(9556), 3, + STATE(1974), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5986), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(9554), 8, - anon_sym_AMP, - anon_sym___based, + anon_sym_LBRACE, + ACTIONS(9575), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - sym_primitive_type, - sym_identifier, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [193401] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9558), 1, - sym_ms_restrict_modifier, - STATE(5267), 1, - sym_ms_unaligned_ptr_modifier, - ACTIONS(7777), 2, + ACTIONS(5988), 23, anon_sym_AMP, - anon_sym_const, - ACTIONS(9561), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(9564), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(5019), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(7779), 22, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, anon_sym___extension__, - anon_sym_COLON, - anon_sym_LBRACK, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___based, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -456935,86 +463379,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [193451] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7065), 1, - anon_sym___asm, - ACTIONS(7072), 1, - anon_sym_noexcept, - ACTIONS(7074), 1, - anon_sym_throw, - ACTIONS(7147), 1, - anon_sym___attribute__, - ACTIONS(7317), 1, - anon_sym_DASH_GT, - ACTIONS(7388), 1, - anon_sym_requires, - ACTIONS(9193), 1, - anon_sym_LBRACK, - ACTIONS(9276), 1, - anon_sym_LBRACK_LBRACK, - STATE(6011), 1, - sym__function_attributes_end, - STATE(6252), 1, - sym_trailing_return_type, - STATE(6766), 1, - sym_gnu_asm_expression, - ACTIONS(6020), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7063), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(5384), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5458), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5606), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5877), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5310), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9182), 5, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_try, - [193527] = 5, + sym_primitive_type, + sym_identifier, + sym_auto, + anon_sym_decltype, + [196752] = 16, ACTIONS(3), 1, sym_comment, - STATE(5024), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5920), 4, + ACTIONS(5020), 1, anon_sym_LPAREN2, + ACTIONS(5652), 1, + anon_sym_const, + ACTIONS(5877), 1, + anon_sym_COLON, + ACTIONS(8147), 1, + anon_sym_LBRACK, + ACTIONS(8715), 1, anon_sym_STAR, + ACTIONS(8717), 1, anon_sym_AMP_AMP, - anon_sym_LBRACE, - ACTIONS(9567), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5922), 23, + ACTIONS(8719), 1, anon_sym_AMP, + STATE(1702), 1, + sym_alignas_qualifier, + STATE(3538), 1, + sym_parameter_list, + STATE(6109), 1, + sym__function_declarator_seq, + STATE(6988), 1, + sym__abstract_declarator, + ACTIONS(8471), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1676), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6099), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8463), 12, anon_sym___extension__, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___based, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -457026,62 +463433,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - sym_auto, - anon_sym_decltype, - [193571] = 23, + [196818] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(8147), 1, + ACTIONS(8177), 1, anon_sym_LPAREN2, - ACTIONS(9526), 1, + ACTIONS(9578), 1, sym_identifier, - ACTIONS(9528), 1, + ACTIONS(9580), 1, anon_sym_COLON_COLON, - ACTIONS(9532), 1, + ACTIONS(9584), 1, sym_primitive_type, - ACTIONS(9534), 1, + ACTIONS(9586), 1, anon_sym_enum, - ACTIONS(9536), 1, + ACTIONS(9588), 1, anon_sym_class, - ACTIONS(9538), 1, + ACTIONS(9590), 1, anon_sym_struct, - ACTIONS(9540), 1, + ACTIONS(9592), 1, anon_sym_union, - ACTIONS(9542), 1, + ACTIONS(9594), 1, sym_auto, - ACTIONS(9544), 1, + ACTIONS(9596), 1, anon_sym_decltype, - ACTIONS(9546), 1, + ACTIONS(9598), 1, anon_sym_typename, - STATE(1637), 1, + STATE(1635), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2961), 1, + STATE(2798), 1, sym_type_specifier, - STATE(3491), 1, - sym_decltype_auto, - STATE(3507), 1, + STATE(3046), 1, sym_qualified_type_identifier, - STATE(5214), 1, + STATE(3082), 1, + sym_decltype_auto, + STATE(5257), 1, sym_argument_list, - STATE(6578), 1, + STATE(6713), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(8569), 1, sym_dependent_type_identifier, - STATE(3329), 2, + STATE(2951), 2, sym_decltype, sym_template_type, - ACTIONS(9530), 4, + ACTIONS(9582), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3504), 7, + STATE(3085), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -457089,22 +463490,22 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [193651] = 5, + [196898] = 5, ACTIONS(3), 1, sym_comment, - STATE(1918), 1, + STATE(5050), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(5908), 4, + ACTIONS(5933), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_LBRACE, - ACTIONS(9570), 4, + ACTIONS(9600), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5910), 23, + ACTIONS(5935), 23, anon_sym_AMP, anon_sym___extension__, anon_sym___attribute__, @@ -457128,28 +463529,45 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - [193695] = 5, + [196942] = 16, ACTIONS(3), 1, sym_comment, - STATE(1918), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5916), 4, + ACTIONS(5020), 1, anon_sym_LPAREN2, + ACTIONS(5652), 1, + anon_sym_const, + ACTIONS(8147), 1, + anon_sym_LBRACK, + ACTIONS(8453), 1, + anon_sym_COLON, + ACTIONS(8715), 1, anon_sym_STAR, + ACTIONS(8717), 1, anon_sym_AMP_AMP, - anon_sym_LBRACE, - ACTIONS(9573), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5918), 23, + ACTIONS(8719), 1, anon_sym_AMP, + STATE(1702), 1, + sym_alignas_qualifier, + STATE(3538), 1, + sym_parameter_list, + STATE(6109), 1, + sym__function_declarator_seq, + STATE(6999), 1, + sym__abstract_declarator, + ACTIONS(8471), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1676), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6099), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8463), 12, anon_sym___extension__, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___based, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -457161,294 +463579,203 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - sym_auto, - anon_sym_decltype, - [193739] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(8147), 1, - anon_sym_LPAREN2, - ACTIONS(9576), 1, - sym_identifier, - ACTIONS(9578), 1, - anon_sym_COLON_COLON, - ACTIONS(9582), 1, - sym_primitive_type, - ACTIONS(9584), 1, - anon_sym_enum, - ACTIONS(9586), 1, - anon_sym_class, - ACTIONS(9588), 1, - anon_sym_struct, - ACTIONS(9590), 1, - anon_sym_union, - ACTIONS(9592), 1, - sym_auto, - ACTIONS(9594), 1, - anon_sym_decltype, - ACTIONS(9596), 1, - anon_sym_typename, - STATE(1860), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1902), 1, - sym_qualified_type_identifier, - STATE(3823), 1, - sym_type_specifier, - STATE(4081), 1, - sym_decltype_auto, - STATE(5227), 1, - sym_argument_list, - STATE(6634), 1, - sym__scope_resolution, - STATE(8601), 1, - sym_dependent_type_identifier, - STATE(4024), 2, - sym_decltype, - sym_template_type, - ACTIONS(9580), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(4087), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [193819] = 21, + [197008] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7065), 1, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7072), 1, + ACTIONS(7075), 1, anon_sym_noexcept, - ACTIONS(7074), 1, + ACTIONS(7077), 1, anon_sym_throw, - ACTIONS(7147), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - ACTIONS(7322), 1, + ACTIONS(7393), 1, anon_sym_DASH_GT, - ACTIONS(9193), 1, + ACTIONS(9382), 1, anon_sym_LBRACK, - ACTIONS(9328), 1, + ACTIONS(9401), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9479), 1, anon_sym_requires, - STATE(6034), 1, + STATE(5993), 1, sym_trailing_return_type, - STATE(6169), 1, + STATE(6104), 1, sym__function_attributes_end, - STATE(6766), 1, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(7063), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9297), 2, + ACTIONS(9387), 2, anon_sym_final, anon_sym_override, - STATE(5384), 2, + STATE(5455), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5458), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6012), 2, + STATE(5934), 2, sym__function_postfix, sym_requires_clause, - STATE(5325), 3, + STATE(5410), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9182), 5, - anon_sym_COMMA, + ACTIONS(9371), 5, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, - [193895] = 21, + anon_sym_try, + [197084] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7065), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7072), 1, + ACTIONS(7075), 1, anon_sym_noexcept, - ACTIONS(7074), 1, + ACTIONS(7077), 1, anon_sym_throw, - ACTIONS(7447), 1, - anon_sym_DASH_GT, - ACTIONS(9193), 1, - anon_sym_LBRACK, - ACTIONS(9291), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - ACTIONS(9294), 1, - anon_sym___attribute, - ACTIONS(9300), 1, + ACTIONS(7393), 1, + anon_sym_DASH_GT, + ACTIONS(7395), 1, anon_sym_requires, - STATE(5932), 1, + ACTIONS(9150), 1, + anon_sym_LBRACK, + ACTIONS(9308), 1, + anon_sym_LBRACK_LBRACK, + STATE(6042), 1, sym_trailing_return_type, - STATE(5943), 1, + STATE(6180), 1, sym__function_attributes_end, - STATE(6766), 1, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(7063), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9297), 2, + ACTIONS(6037), 2, anon_sym_final, anon_sym_override, - STATE(5384), 2, + ACTIONS(7069), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5455), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5458), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6012), 2, + STATE(5927), 2, sym__function_postfix, sym_requires_clause, - STATE(5318), 3, + STATE(5397), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9182), 5, - anon_sym_COMMA, + ACTIONS(9139), 5, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_EQ, - anon_sym_GT2, - [193971] = 21, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_try, + [197160] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(7065), 1, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7072), 1, + ACTIONS(7075), 1, anon_sym_noexcept, - ACTIONS(7074), 1, + ACTIONS(7077), 1, anon_sym_throw, - ACTIONS(7301), 1, + ACTIONS(7314), 1, anon_sym_requires, - ACTIONS(7313), 1, + ACTIONS(7375), 1, anon_sym_DASH_GT, - ACTIONS(9193), 1, + ACTIONS(9382), 1, anon_sym_LBRACK, - ACTIONS(9276), 1, + ACTIONS(9401), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9291), 1, + ACTIONS(9518), 1, anon_sym___attribute__, - ACTIONS(9294), 1, + ACTIONS(9521), 1, anon_sym___attribute, - STATE(5453), 1, + STATE(5529), 1, sym_trailing_return_type, - STATE(5881), 1, + STATE(5996), 1, sym__function_attributes_end, - STATE(6766), 1, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(6020), 2, + ACTIONS(6037), 2, anon_sym_final, anon_sym_override, - ACTIONS(7063), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - STATE(5384), 2, + STATE(5455), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5458), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5606), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5877), 2, + STATE(5934), 2, sym__function_postfix, sym_requires_clause, - STATE(5312), 3, + STATE(5398), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9182), 5, + ACTIONS(9371), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_EQ, anon_sym_GT2, - [194047] = 5, + [197236] = 10, ACTIONS(3), 1, sym_comment, - STATE(1918), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5898), 4, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LBRACE, - ACTIONS(9598), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5900), 23, - anon_sym_AMP, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___based, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, + ACTIONS(5537), 1, sym_auto, + ACTIONS(5539), 1, anon_sym_decltype, - [194091] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(1918), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5894), 4, + STATE(1680), 1, + sym_alignas_qualifier, + STATE(1864), 1, + sym_decltype_auto, + ACTIONS(69), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5316), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(9605), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_LBRACE, - ACTIONS(9601), 4, + ACTIONS(9603), 8, + anon_sym_AMP, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5896), 23, - anon_sym_AMP, + sym_primitive_type, + sym_identifier, + ACTIONS(67), 13, anon_sym___extension__, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___based, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -457461,100 +463788,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - sym_auto, - anon_sym_decltype, - [194135] = 21, + [197290] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(5472), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7065), 1, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7072), 1, + ACTIONS(7075), 1, anon_sym_noexcept, - ACTIONS(7074), 1, + ACTIONS(7077), 1, anon_sym_throw, - ACTIONS(7447), 1, - anon_sym_DASH_GT, - ACTIONS(9355), 1, - anon_sym_LBRACK, - ACTIONS(9466), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - ACTIONS(9469), 1, - anon_sym___attribute, - ACTIONS(9548), 1, + ACTIONS(7357), 1, + anon_sym_DASH_GT, + ACTIONS(7361), 1, anon_sym_requires, - STATE(5904), 1, + ACTIONS(9150), 1, + anon_sym_LBRACK, + STATE(5975), 1, sym_trailing_return_type, - STATE(5944), 1, + STATE(6269), 1, sym__function_attributes_end, - STATE(6766), 1, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(7063), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9495), 2, + ACTIONS(7359), 2, anon_sym_final, anon_sym_override, - STATE(5384), 2, + STATE(5455), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5458), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6032), 2, + STATE(6149), 2, sym__function_postfix, sym_requires_clause, - STATE(5319), 3, + STATE(5377), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9344), 5, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(9139), 5, anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_EQ, - anon_sym_GT2, - [194211] = 11, + anon_sym_try, + [197366] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6852), 1, - sym_identifier, - ACTIONS(6856), 1, - sym_primitive_type, - STATE(1658), 1, - sym_alignas_qualifier, - STATE(5258), 1, + STATE(1974), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4986), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(5086), 3, - anon_sym_COMMA, + ACTIONS(5891), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_LBRACE, - anon_sym_GT2, - ACTIONS(5088), 4, - anon_sym___attribute__, - anon_sym___attribute, - sym_auto, - anon_sym_decltype, - ACTIONS(9604), 4, + ACTIONS(9607), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(67), 13, + ACTIONS(5893), 23, + anon_sym_AMP, anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___based, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -457567,56 +463876,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [194267] = 23, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + sym_auto, + anon_sym_decltype, + [197410] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(8147), 1, + ACTIONS(3176), 1, + sym_auto, + ACTIONS(3178), 1, + anon_sym_decltype, + ACTIONS(8024), 1, + sym_primitive_type, + ACTIONS(8177), 1, anon_sym_LPAREN2, - ACTIONS(9576), 1, + ACTIONS(9610), 1, sym_identifier, - ACTIONS(9578), 1, + ACTIONS(9612), 1, anon_sym_COLON_COLON, - ACTIONS(9582), 1, - sym_primitive_type, - ACTIONS(9584), 1, + ACTIONS(9616), 1, anon_sym_enum, - ACTIONS(9586), 1, + ACTIONS(9618), 1, anon_sym_class, - ACTIONS(9588), 1, + ACTIONS(9620), 1, anon_sym_struct, - ACTIONS(9590), 1, + ACTIONS(9622), 1, anon_sym_union, - ACTIONS(9592), 1, - sym_auto, - ACTIONS(9594), 1, - anon_sym_decltype, - ACTIONS(9596), 1, + ACTIONS(9624), 1, anon_sym_typename, - STATE(1860), 1, + STATE(2223), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1902), 1, + STATE(2685), 1, sym_qualified_type_identifier, - STATE(3822), 1, - sym_type_specifier, - STATE(4081), 1, + STATE(2733), 1, sym_decltype_auto, - STATE(5160), 1, + STATE(4186), 1, + sym_type_specifier, + STATE(5293), 1, sym_argument_list, - STATE(6634), 1, + STATE(6694), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(8569), 1, sym_dependent_type_identifier, - STATE(4024), 2, + STATE(2621), 2, sym_decltype, sym_template_type, - ACTIONS(9580), 4, + ACTIONS(9614), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4087), 7, + STATE(2747), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -457624,77 +463939,61 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [194347] = 21, + [197490] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7065), 1, - anon_sym___asm, - ACTIONS(7072), 1, - anon_sym_noexcept, - ACTIONS(7074), 1, - anon_sym_throw, - ACTIONS(7400), 1, - anon_sym_requires, - ACTIONS(7447), 1, - anon_sym_DASH_GT, - ACTIONS(9193), 1, - anon_sym_LBRACK, - ACTIONS(9291), 1, + STATE(1974), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5929), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACE, + ACTIONS(9626), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5931), 23, + anon_sym_AMP, + anon_sym___extension__, anon_sym___attribute__, - ACTIONS(9294), 1, anon_sym___attribute, - STATE(5909), 1, - sym_trailing_return_type, - STATE(5976), 1, - sym__function_attributes_end, - STATE(6766), 1, - sym_gnu_asm_expression, - ACTIONS(7063), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7335), 2, - anon_sym_final, - anon_sym_override, - STATE(5384), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5458), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6012), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5315), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9182), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_EQ, - anon_sym_GT2, - [194423] = 5, + anon_sym___based, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + sym_auto, + anon_sym_decltype, + [197534] = 5, ACTIONS(3), 1, sym_comment, - STATE(5030), 1, + STATE(5051), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(5930), 4, + ACTIONS(5885), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_LBRACE, - ACTIONS(9606), 4, + ACTIONS(9629), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5932), 23, + ACTIONS(5887), 23, anon_sym_AMP, anon_sym___extension__, anon_sym___attribute__, @@ -457718,495 +464017,316 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - [194467] = 24, + [197578] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7042), 1, - anon_sym_AMP_AMP, - ACTIONS(7044), 1, - anon_sym_AMP, - ACTIONS(7065), 1, - anon_sym___asm, - ACTIONS(7072), 1, + ACTIONS(7075), 1, anon_sym_noexcept, - ACTIONS(7074), 1, + ACTIONS(7077), 1, anon_sym_throw, - ACTIONS(7147), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - ACTIONS(7322), 1, + ACTIONS(7395), 1, + anon_sym_requires, + ACTIONS(7443), 1, anon_sym_DASH_GT, - ACTIONS(9193), 1, + ACTIONS(9150), 1, anon_sym_LBRACK, - ACTIONS(9328), 1, - anon_sym_requires, - STATE(5256), 1, - sym_ref_qualifier, - STATE(6388), 1, + ACTIONS(9305), 1, + anon_sym___asm, + ACTIONS(9308), 1, + anon_sym_LBRACK_LBRACK, + STATE(5883), 1, sym__function_attributes_end, - STATE(6562), 1, + STATE(6042), 1, sym_trailing_return_type, - STATE(6766), 1, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(7063), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7335), 2, + ACTIONS(6037), 2, anon_sym_final, anon_sym_override, - ACTIONS(9182), 2, - anon_sym_LPAREN2, - anon_sym_LBRACE, - STATE(5384), 2, + ACTIONS(9302), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5455), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5458), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6012), 2, + STATE(5927), 2, sym__function_postfix, sym_requires_clause, - STATE(5387), 3, + STATE(5395), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - [194549] = 21, + ACTIONS(9139), 5, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_try, + [197654] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7065), 1, + ACTIONS(7048), 1, + anon_sym_AMP_AMP, + ACTIONS(7050), 1, + anon_sym_AMP, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7072), 1, + ACTIONS(7075), 1, anon_sym_noexcept, - ACTIONS(7074), 1, + ACTIONS(7077), 1, anon_sym_throw, - ACTIONS(7400), 1, - anon_sym_requires, - ACTIONS(7447), 1, - anon_sym_DASH_GT, - ACTIONS(9355), 1, - anon_sym_LBRACK, - ACTIONS(9466), 1, + ACTIONS(7283), 1, anon_sym___attribute__, - ACTIONS(9469), 1, + ACTIONS(7285), 1, anon_sym___attribute, - STATE(5927), 1, - sym_trailing_return_type, - STATE(5956), 1, + ACTIONS(7913), 1, + anon_sym_DASH_GT, + ACTIONS(9147), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9150), 1, + anon_sym_LBRACK, + ACTIONS(9632), 1, + anon_sym_requires, + STATE(5340), 1, + sym_ref_qualifier, + STATE(6398), 1, sym__function_attributes_end, - STATE(6766), 1, + STATE(6575), 1, + sym_trailing_return_type, + STATE(6850), 1, sym_gnu_asm_expression, - ACTIONS(7063), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7335), 2, + ACTIONS(9139), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + ACTIONS(9193), 2, anon_sym_final, anon_sym_override, - STATE(5384), 2, + STATE(5540), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5458), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6032), 2, + STATE(5730), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5927), 2, sym__function_postfix, sym_requires_clause, - STATE(5316), 3, + STATE(5462), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9344), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_EQ, - anon_sym_GT2, - [194625] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(1918), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5156), 4, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LBRACE, - ACTIONS(9609), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5159), 23, - anon_sym_AMP, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___based, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - sym_auto, - anon_sym_decltype, - [194669] = 21, + [197736] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7065), 1, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7072), 1, + ACTIONS(7075), 1, anon_sym_noexcept, - ACTIONS(7074), 1, + ACTIONS(7077), 1, anon_sym_throw, - ACTIONS(7147), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - ACTIONS(7317), 1, + ACTIONS(7357), 1, anon_sym_DASH_GT, - ACTIONS(7388), 1, + ACTIONS(7361), 1, anon_sym_requires, - ACTIONS(9355), 1, + ACTIONS(9382), 1, anon_sym_LBRACK, - ACTIONS(9367), 1, - anon_sym_LBRACK_LBRACK, - STATE(6031), 1, - sym__function_attributes_end, - STATE(6198), 1, + STATE(6016), 1, sym_trailing_return_type, - STATE(6766), 1, + STATE(6280), 1, + sym__function_attributes_end, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(6020), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7063), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - STATE(5384), 2, + ACTIONS(7359), 2, + anon_sym_final, + anon_sym_override, + STATE(5455), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5458), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5606), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5839), 2, + STATE(6132), 2, sym__function_postfix, sym_requires_clause, - STATE(5303), 3, + STATE(5400), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9344), 5, - anon_sym_RPAREN, + ACTIONS(9371), 5, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_EQ, anon_sym_try, - [194745] = 21, + [197812] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(7065), 1, - anon_sym___asm, - ACTIONS(7072), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(7075), 1, anon_sym_noexcept, - ACTIONS(7074), 1, + ACTIONS(7077), 1, anon_sym_throw, - ACTIONS(7301), 1, + ACTIONS(7299), 1, + anon_sym___attribute__, + ACTIONS(7395), 1, anon_sym_requires, - ACTIONS(7313), 1, + ACTIONS(7443), 1, anon_sym_DASH_GT, - ACTIONS(9355), 1, + ACTIONS(9382), 1, anon_sym_LBRACK, - ACTIONS(9367), 1, + ACTIONS(9396), 1, + anon_sym___asm, + ACTIONS(9401), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9466), 1, - anon_sym___attribute__, - ACTIONS(9469), 1, - anon_sym___attribute, - STATE(5418), 1, - sym_trailing_return_type, - STATE(5921), 1, + STATE(5884), 1, sym__function_attributes_end, - STATE(6766), 1, + STATE(5994), 1, + sym_trailing_return_type, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(6020), 2, + ACTIONS(6037), 2, anon_sym_final, anon_sym_override, - ACTIONS(7063), 2, + ACTIONS(9393), 2, anon_sym_asm, anon_sym___asm__, - STATE(5384), 2, + STATE(5455), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5458), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5606), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5839), 2, + STATE(5934), 2, sym__function_postfix, sym_requires_clause, - STATE(5313), 3, + STATE(5401), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9344), 5, + ACTIONS(9371), 5, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_EQ, - anon_sym_GT2, - [194821] = 21, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_try, + [197888] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7065), 1, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7072), 1, + ACTIONS(7075), 1, anon_sym_noexcept, - ACTIONS(7074), 1, + ACTIONS(7077), 1, anon_sym_throw, - ACTIONS(7147), 1, - anon_sym___attribute__, - ACTIONS(7322), 1, - anon_sym_DASH_GT, - ACTIONS(7337), 1, + ACTIONS(7361), 1, anon_sym_requires, - ACTIONS(9355), 1, + ACTIONS(7445), 1, + anon_sym_DASH_GT, + ACTIONS(9150), 1, anon_sym_LBRACK, - STATE(6033), 1, + ACTIONS(9333), 1, + anon_sym___attribute__, + ACTIONS(9336), 1, + anon_sym___attribute, + STATE(5975), 1, sym_trailing_return_type, - STATE(6163), 1, + STATE(6083), 1, sym__function_attributes_end, - STATE(6766), 1, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(7063), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7335), 2, + ACTIONS(7359), 2, anon_sym_final, anon_sym_override, - STATE(5384), 2, + STATE(5455), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5458), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6032), 2, + STATE(6149), 2, sym__function_postfix, sym_requires_clause, - STATE(5320), 3, + STATE(5403), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9344), 5, + ACTIONS(9139), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - [194897] = 24, + anon_sym_EQ, + anon_sym_GT2, + [197964] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1978), 1, + ACTIONS(5537), 1, + sym_auto, + ACTIONS(5539), 1, anon_sym_decltype, - ACTIONS(5220), 1, - anon_sym_COLON_COLON, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, - anon_sym___declspec, - ACTIONS(6540), 1, - anon_sym_COLON, - ACTIONS(6542), 1, - anon_sym_LBRACE, - ACTIONS(9613), 1, - sym_identifier, - STATE(1893), 1, - sym_template_type, - STATE(2409), 1, - sym__class_declaration_item, - STATE(2522), 1, - sym__class_declaration, - STATE(2917), 1, - sym_field_declaration_list, - STATE(5586), 1, - sym_ms_declspec_modifier, - STATE(6627), 1, - sym__scope_resolution, - STATE(6995), 1, - sym_virtual_specifier, - STATE(7645), 1, - sym_base_class_clause, - ACTIONS(5468), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5476), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(5503), 2, - anon_sym_final, - anon_sym_override, - STATE(2781), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5588), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5225), 3, - sym_attribute_specifier, + STATE(1680), 1, sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [194978] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, - anon_sym___declspec, - ACTIONS(6540), 1, - anon_sym_COLON, - ACTIONS(6542), 1, - anon_sym_LBRACE, - ACTIONS(8081), 1, - anon_sym_COLON_COLON, - ACTIONS(9615), 1, - sym_identifier, - STATE(1893), 1, - sym_template_type, - STATE(2409), 1, - sym__class_declaration_item, - STATE(2440), 1, - sym__class_declaration, - STATE(3610), 1, - sym_field_declaration_list, - STATE(5629), 1, - sym_ms_declspec_modifier, - STATE(6615), 1, - sym__scope_resolution, - STATE(7084), 1, - sym_virtual_specifier, - STATE(7878), 1, - sym_base_class_clause, - ACTIONS(5468), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5476), 2, + STATE(1864), 1, + sym_decltype_auto, + ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5503), 2, - anon_sym_final, - anon_sym_override, - STATE(2988), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5630), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5161), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [195059] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(1881), 1, - sym_attribute_specifier, - ACTIONS(43), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(6127), 3, + STATE(5347), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(9637), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(6125), 25, + ACTIONS(9635), 8, anon_sym_AMP, - anon_sym___extension__, anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, sym_primitive_type, sym_identifier, - sym_auto, - anon_sym_decltype, - [195102] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(1882), 1, - sym_attribute_specifier, - ACTIONS(43), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(6131), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - ACTIONS(6129), 25, - anon_sym_AMP, + ACTIONS(67), 13, anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -458219,317 +464339,211 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - sym_auto, - anon_sym_decltype, - [195145] = 24, + [198018] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1978), 1, + ACTIONS(3176), 1, + sym_auto, + ACTIONS(3178), 1, anon_sym_decltype, - ACTIONS(5220), 1, - anon_sym_COLON_COLON, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, - anon_sym___declspec, - ACTIONS(6540), 1, - anon_sym_COLON, - ACTIONS(6542), 1, - anon_sym_LBRACE, - ACTIONS(9613), 1, + ACTIONS(8024), 1, + sym_primitive_type, + ACTIONS(8177), 1, + anon_sym_LPAREN2, + ACTIONS(9610), 1, sym_identifier, - STATE(1893), 1, - sym_template_type, - STATE(2409), 1, - sym__class_declaration_item, - STATE(2440), 1, - sym__class_declaration, - STATE(2917), 1, - sym_field_declaration_list, - STATE(5586), 1, - sym_ms_declspec_modifier, - STATE(6627), 1, - sym__scope_resolution, - STATE(6995), 1, - sym_virtual_specifier, - STATE(7645), 1, - sym_base_class_clause, - ACTIONS(5468), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5476), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(5503), 2, - anon_sym_final, - anon_sym_override, - STATE(2778), 2, - sym__class_name, + ACTIONS(9612), 1, + anon_sym_COLON_COLON, + ACTIONS(9616), 1, + anon_sym_enum, + ACTIONS(9618), 1, + anon_sym_class, + ACTIONS(9620), 1, + anon_sym_struct, + ACTIONS(9622), 1, + anon_sym_union, + ACTIONS(9624), 1, + anon_sym_typename, + STATE(2223), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2685), 1, sym_qualified_type_identifier, - STATE(5588), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, - sym_decltype, + STATE(2733), 1, + sym_decltype_auto, + STATE(4180), 1, + sym_type_specifier, + STATE(5247), 1, + sym_argument_list, + STATE(6694), 1, + sym__scope_resolution, + STATE(8569), 1, sym_dependent_type_identifier, - STATE(5225), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [195226] = 24, + STATE(2621), 2, + sym_decltype, + sym_template_type, + ACTIONS(9614), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2747), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [198098] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, - anon_sym___declspec, - ACTIONS(6540), 1, - anon_sym_COLON, - ACTIONS(6793), 1, - anon_sym_LBRACE, - ACTIONS(9528), 1, - anon_sym_COLON_COLON, - ACTIONS(9617), 1, + ACTIONS(8177), 1, + anon_sym_LPAREN2, + ACTIONS(9578), 1, sym_identifier, - STATE(2830), 1, - sym_template_type, - STATE(3107), 1, - sym_field_declaration_list, - STATE(3512), 1, - sym__class_declaration_item, - STATE(3513), 1, - sym__class_declaration, - STATE(5518), 1, - sym_ms_declspec_modifier, - STATE(6578), 1, - sym__scope_resolution, - STATE(7127), 1, - sym_virtual_specifier, - STATE(7665), 1, - sym_base_class_clause, - ACTIONS(5468), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5476), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(5503), 2, - anon_sym_final, - anon_sym_override, - STATE(2592), 2, - sym__class_name, + ACTIONS(9580), 1, + anon_sym_COLON_COLON, + ACTIONS(9584), 1, + sym_primitive_type, + ACTIONS(9586), 1, + anon_sym_enum, + ACTIONS(9588), 1, + anon_sym_class, + ACTIONS(9590), 1, + anon_sym_struct, + ACTIONS(9592), 1, + anon_sym_union, + ACTIONS(9594), 1, + sym_auto, + ACTIONS(9596), 1, + anon_sym_decltype, + ACTIONS(9598), 1, + anon_sym_typename, + STATE(1635), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2759), 1, + sym_type_specifier, + STATE(3046), 1, sym_qualified_type_identifier, - STATE(5519), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, - sym_decltype, + STATE(3082), 1, + sym_decltype_auto, + STATE(5274), 1, + sym_argument_list, + STATE(6713), 1, + sym__scope_resolution, + STATE(8569), 1, sym_dependent_type_identifier, - STATE(5205), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [195307] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(1886), 1, - sym_attribute_specifier, - ACTIONS(43), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(6092), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - ACTIONS(6090), 25, - anon_sym_AMP, - anon_sym___extension__, - anon_sym___based, + STATE(2951), 2, + sym_decltype, + sym_template_type, + ACTIONS(9582), 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, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - sym_auto, - anon_sym_decltype, - [195350] = 24, + STATE(3085), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [198178] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(5220), 1, - anon_sym_COLON_COLON, - ACTIONS(5472), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, - anon_sym___declspec, - ACTIONS(6540), 1, - anon_sym_COLON, - ACTIONS(6542), 1, - anon_sym_LBRACE, - ACTIONS(9613), 1, - sym_identifier, - STATE(1893), 1, - sym_template_type, - STATE(2409), 1, - sym__class_declaration_item, - STATE(2522), 1, - sym__class_declaration, - STATE(2917), 1, - sym_field_declaration_list, - STATE(5586), 1, - sym_ms_declspec_modifier, - STATE(6627), 1, - sym__scope_resolution, - STATE(6995), 1, - sym_virtual_specifier, - STATE(7645), 1, - sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(7048), 1, + anon_sym_AMP_AMP, + ACTIONS(7050), 1, + anon_sym_AMP, + ACTIONS(7071), 1, + anon_sym___asm, + ACTIONS(7075), 1, + anon_sym_noexcept, + ACTIONS(7077), 1, + anon_sym_throw, + ACTIONS(7299), 1, anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5476), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(7424), 1, + anon_sym_DASH_GT, + ACTIONS(9150), 1, + anon_sym_LBRACK, + ACTIONS(9366), 1, + anon_sym_requires, + STATE(5352), 1, + sym_ref_qualifier, + STATE(6502), 1, + sym__function_attributes_end, + STATE(6651), 1, + sym_trailing_return_type, + STATE(6870), 1, + sym_gnu_asm_expression, + ACTIONS(7069), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7359), 2, anon_sym_final, anon_sym_override, - STATE(2800), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5588), 2, + ACTIONS(9139), 2, + anon_sym_LPAREN2, + anon_sym_LBRACE, + STATE(5455), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5225), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [195431] = 5, + STATE(6017), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6149), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5458), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [198260] = 11, ACTIONS(3), 1, sym_comment, - STATE(1834), 1, - sym_attribute_specifier, - ACTIONS(43), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(6098), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - ACTIONS(6096), 25, - anon_sym_AMP, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, + ACTIONS(6854), 1, + sym_identifier, + ACTIONS(6858), 1, + sym_primitive_type, + STATE(1680), 1, + sym_alignas_qualifier, + STATE(5354), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - sym_auto, - anon_sym_decltype, - [195474] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(1842), 1, - sym_attribute_specifier, - ACTIONS(43), 2, + STATE(5110), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(5094), 3, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_GT2, + ACTIONS(5096), 4, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(6170), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - ACTIONS(6168), 25, - anon_sym_AMP, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, sym_auto, anon_sym_decltype, - [195517] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(1843), 1, - sym_attribute_specifier, - ACTIONS(43), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(6106), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - ACTIONS(6104), 25, - anon_sym_AMP, - anon_sym___extension__, - anon_sym___based, + ACTIONS(9639), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + ACTIONS(67), 13, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -458542,70 +464556,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - sym_auto, - anon_sym_decltype, - [195560] = 5, + [198316] = 11, ACTIONS(3), 1, sym_comment, - STATE(1867), 1, - sym_attribute_specifier, - ACTIONS(43), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(6060), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - ACTIONS(6058), 25, - anon_sym_AMP, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, + ACTIONS(6860), 1, + sym_identifier, + ACTIONS(6864), 1, + sym_primitive_type, + STATE(1680), 1, + sym_alignas_qualifier, + STATE(3149), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - sym_auto, - anon_sym_decltype, - [195603] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(1877), 1, - sym_attribute_specifier, - ACTIONS(43), 2, + STATE(1669), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(5109), 3, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_GT2, + ACTIONS(5111), 4, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(6064), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - ACTIONS(6062), 25, - anon_sym_AMP, - anon_sym___extension__, - anon_sym___based, + sym_auto, + anon_sym_decltype, + ACTIONS(6862), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + ACTIONS(67), 13, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -458618,6292 +464601,6555 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - sym_auto, - anon_sym_decltype, - [195646] = 24, + [198372] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(5220), 1, - anon_sym_COLON_COLON, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, - anon_sym___declspec, - ACTIONS(6540), 1, - anon_sym_COLON, - ACTIONS(6542), 1, - anon_sym_LBRACE, - ACTIONS(9613), 1, - sym_identifier, - STATE(1893), 1, - sym_template_type, - STATE(2409), 1, - sym__class_declaration_item, - STATE(2483), 1, - sym__class_declaration, - STATE(2917), 1, - sym_field_declaration_list, - STATE(5586), 1, - sym_ms_declspec_modifier, - STATE(6627), 1, - sym__scope_resolution, - STATE(6995), 1, - sym_virtual_specifier, - STATE(7645), 1, - sym_base_class_clause, - ACTIONS(5468), 2, - anon_sym___attribute__, + ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(5476), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(7071), 1, + anon_sym___asm, + ACTIONS(7075), 1, + anon_sym_noexcept, + ACTIONS(7077), 1, + anon_sym_throw, + ACTIONS(7299), 1, + anon_sym___attribute__, + ACTIONS(7393), 1, + anon_sym_DASH_GT, + ACTIONS(9150), 1, + anon_sym_LBRACK, + ACTIONS(9308), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9359), 1, + anon_sym_requires, + STATE(6044), 1, + sym_trailing_return_type, + STATE(6157), 1, + sym__function_attributes_end, + STATE(6870), 1, + sym_gnu_asm_expression, + ACTIONS(7069), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9193), 2, anon_sym_final, anon_sym_override, - STATE(2800), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5588), 2, + STATE(5455), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5225), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [195727] = 24, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5927), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5375), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9139), 5, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_try, + [198448] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1978), 1, + ACTIONS(1844), 1, + sym_auto, + ACTIONS(1846), 1, anon_sym_decltype, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, - anon_sym___declspec, - ACTIONS(6540), 1, - anon_sym_COLON, - ACTIONS(6793), 1, - anon_sym_LBRACE, - ACTIONS(9528), 1, - anon_sym_COLON_COLON, - ACTIONS(9617), 1, + ACTIONS(7986), 1, + sym_primitive_type, + ACTIONS(8177), 1, + anon_sym_LPAREN2, + ACTIONS(9435), 1, sym_identifier, - STATE(2830), 1, - sym_template_type, - STATE(3107), 1, - sym_field_declaration_list, - STATE(3512), 1, - sym__class_declaration_item, - STATE(3514), 1, - sym__class_declaration, - STATE(5518), 1, - sym_ms_declspec_modifier, - STATE(6578), 1, + ACTIONS(9437), 1, + anon_sym_COLON_COLON, + ACTIONS(9441), 1, + anon_sym_enum, + ACTIONS(9443), 1, + anon_sym_class, + ACTIONS(9445), 1, + anon_sym_struct, + ACTIONS(9447), 1, + anon_sym_union, + ACTIONS(9449), 1, + anon_sym_typename, + STATE(1887), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1888), 1, + sym_decltype_auto, + STATE(1916), 1, + sym_qualified_type_identifier, + STATE(4021), 1, + sym_type_specifier, + STATE(5296), 1, + sym_argument_list, + STATE(6699), 1, sym__scope_resolution, - STATE(7127), 1, - sym_virtual_specifier, - STATE(7665), 1, - sym_base_class_clause, - ACTIONS(5468), 2, - anon_sym___attribute__, + STATE(8569), 1, + sym_dependent_type_identifier, + STATE(1782), 2, + sym_decltype, + sym_template_type, + ACTIONS(9439), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1890), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [198528] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(5476), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(7071), 1, + anon_sym___asm, + ACTIONS(7075), 1, + anon_sym_noexcept, + ACTIONS(7077), 1, + anon_sym_throw, + ACTIONS(7299), 1, + anon_sym___attribute__, + ACTIONS(7393), 1, + anon_sym_DASH_GT, + ACTIONS(7395), 1, + anon_sym_requires, + ACTIONS(9382), 1, + anon_sym_LBRACK, + ACTIONS(9401), 1, + anon_sym_LBRACK_LBRACK, + STATE(5994), 1, + sym_trailing_return_type, + STATE(6119), 1, + sym__function_attributes_end, + STATE(6870), 1, + sym_gnu_asm_expression, + ACTIONS(6037), 2, anon_sym_final, anon_sym_override, - STATE(2592), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5519), 2, + ACTIONS(7069), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5455), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5205), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [195808] = 24, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5934), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5405), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9371), 5, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_try, + [198604] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5228), 1, + anon_sym_COLON_COLON, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(8021), 1, - anon_sym_COLON_COLON, - ACTIONS(8878), 1, + ACTIONS(6530), 1, anon_sym_LBRACE, - ACTIONS(9619), 1, + ACTIONS(9641), 1, sym_identifier, - STATE(4376), 1, + STATE(1922), 1, sym_template_type, - STATE(4877), 1, - sym_field_declaration_list, - STATE(4929), 1, + STATE(2459), 1, sym__class_declaration, - STATE(4931), 1, + STATE(2461), 1, sym__class_declaration_item, - STATE(5539), 1, + STATE(2962), 1, + sym_field_declaration_list, + STATE(5611), 1, sym_ms_declspec_modifier, - STATE(6632), 1, + STATE(6715), 1, sym__scope_resolution, - STATE(6984), 1, + STATE(7126), 1, sym_virtual_specifier, - STATE(7729), 1, + STATE(7712), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(4384), 2, + STATE(2810), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5540), 2, + STATE(5665), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5201), 3, + STATE(5268), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [195889] = 24, + [198685] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5028), 1, + anon_sym_COLON_COLON, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(6793), 1, + ACTIONS(6530), 1, anon_sym_LBRACE, - ACTIONS(9528), 1, - anon_sym_COLON_COLON, - ACTIONS(9617), 1, + ACTIONS(9643), 1, sym_identifier, - STATE(2830), 1, + STATE(1922), 1, sym_template_type, - STATE(3107), 1, - sym_field_declaration_list, - STATE(3511), 1, - sym__class_declaration, - STATE(3512), 1, + STATE(2461), 1, sym__class_declaration_item, - STATE(5518), 1, + STATE(2472), 1, + sym__class_declaration, + STATE(2962), 1, + sym_field_declaration_list, + STATE(5711), 1, sym_ms_declspec_modifier, - STATE(6578), 1, + STATE(6746), 1, sym__scope_resolution, - STATE(7127), 1, + STATE(7126), 1, sym_virtual_specifier, - STATE(7665), 1, + STATE(7712), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2592), 2, + STATE(2440), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5519), 2, + STATE(5713), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5205), 3, + STATE(5272), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [195970] = 24, + [198766] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5228), 1, + anon_sym_COLON_COLON, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(8021), 1, - anon_sym_COLON_COLON, - ACTIONS(8878), 1, + ACTIONS(6530), 1, anon_sym_LBRACE, - ACTIONS(9619), 1, + ACTIONS(9641), 1, sym_identifier, - STATE(4376), 1, + STATE(1922), 1, sym_template_type, - STATE(4877), 1, - sym_field_declaration_list, - STATE(4923), 1, - sym__class_declaration, - STATE(4931), 1, + STATE(2461), 1, sym__class_declaration_item, - STATE(5539), 1, + STATE(2480), 1, + sym__class_declaration, + STATE(2962), 1, + sym_field_declaration_list, + STATE(5611), 1, sym_ms_declspec_modifier, - STATE(6632), 1, + STATE(6715), 1, sym__scope_resolution, - STATE(6984), 1, + STATE(7126), 1, sym_virtual_specifier, - STATE(7729), 1, + STATE(7712), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(4384), 2, + STATE(2834), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5540), 2, + STATE(5665), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5201), 3, + STATE(5268), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [196051] = 24, + [198847] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5020), 1, - anon_sym_COLON_COLON, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(6540), 1, - anon_sym_COLON, - ACTIONS(6542), 1, + ACTIONS(6035), 1, anon_sym_LBRACE, - ACTIONS(9621), 1, + ACTIONS(6528), 1, + anon_sym_COLON, + ACTIONS(7984), 1, + anon_sym_COLON_COLON, + ACTIONS(9645), 1, sym_identifier, - STATE(1893), 1, + STATE(1784), 1, sym_template_type, - STATE(2409), 1, - sym__class_declaration_item, - STATE(2440), 1, + STATE(1895), 1, sym__class_declaration, - STATE(2917), 1, + STATE(1902), 1, + sym__class_declaration_item, + STATE(2382), 1, sym_field_declaration_list, - STATE(5559), 1, + STATE(5684), 1, sym_ms_declspec_modifier, - STATE(6606), 1, + STATE(6727), 1, sym__scope_resolution, - STATE(6995), 1, + STATE(7084), 1, sym_virtual_specifier, - STATE(7645), 1, + STATE(7872), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2434), 2, + STATE(2031), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5560), 2, + STATE(5689), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5173), 3, + STATE(5270), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [196132] = 24, + [198928] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5220), 1, + ACTIONS(5228), 1, anon_sym_COLON_COLON, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(6542), 1, + ACTIONS(6530), 1, anon_sym_LBRACE, - ACTIONS(9613), 1, + ACTIONS(9641), 1, sym_identifier, - STATE(1893), 1, + STATE(1922), 1, sym_template_type, - STATE(2409), 1, + STATE(2461), 1, sym__class_declaration_item, - STATE(2522), 1, + STATE(2472), 1, sym__class_declaration, - STATE(2917), 1, + STATE(2962), 1, sym_field_declaration_list, - STATE(5586), 1, + STATE(5611), 1, sym_ms_declspec_modifier, - STATE(6627), 1, + STATE(6715), 1, sym__scope_resolution, - STATE(6995), 1, + STATE(7126), 1, sym_virtual_specifier, - STATE(7645), 1, + STATE(7712), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2801), 2, + STATE(2810), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5588), 2, + STATE(5665), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5225), 3, + STATE(5268), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [196213] = 24, + [199009] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5228), 1, + anon_sym_COLON_COLON, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(6542), 1, + ACTIONS(6530), 1, anon_sym_LBRACE, - ACTIONS(8055), 1, - anon_sym_COLON_COLON, - ACTIONS(9623), 1, + ACTIONS(9641), 1, sym_identifier, - STATE(1893), 1, + STATE(1922), 1, sym_template_type, - STATE(2409), 1, + STATE(2461), 1, sym__class_declaration_item, - STATE(2522), 1, + STATE(2480), 1, sym__class_declaration, - STATE(3610), 1, + STATE(2962), 1, sym_field_declaration_list, - STATE(5612), 1, + STATE(5611), 1, sym_ms_declspec_modifier, - STATE(6592), 1, + STATE(6715), 1, sym__scope_resolution, - STATE(7084), 1, + STATE(7126), 1, sym_virtual_specifier, - STATE(7878), 1, + STATE(7712), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2988), 2, + STATE(2810), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5613), 2, + STATE(5665), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5190), 3, + STATE(5268), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [196294] = 24, + [199090] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5020), 1, + ACTIONS(5228), 1, anon_sym_COLON_COLON, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(6542), 1, + ACTIONS(6530), 1, anon_sym_LBRACE, - ACTIONS(9621), 1, + ACTIONS(9641), 1, sym_identifier, - STATE(1893), 1, + STATE(1922), 1, sym_template_type, - STATE(2409), 1, - sym__class_declaration_item, - STATE(2483), 1, + STATE(2459), 1, sym__class_declaration, - STATE(2917), 1, + STATE(2461), 1, + sym__class_declaration_item, + STATE(2962), 1, sym_field_declaration_list, - STATE(5559), 1, + STATE(5611), 1, sym_ms_declspec_modifier, - STATE(6606), 1, + STATE(6715), 1, sym__scope_resolution, - STATE(6995), 1, + STATE(7126), 1, sym_virtual_specifier, - STATE(7645), 1, + STATE(7712), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2434), 2, + STATE(2812), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5560), 2, + STATE(5665), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5173), 3, + STATE(5268), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [196375] = 24, + [199171] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5228), 1, + anon_sym_COLON_COLON, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(8021), 1, - anon_sym_COLON_COLON, - ACTIONS(8878), 1, + ACTIONS(6530), 1, anon_sym_LBRACE, - ACTIONS(9619), 1, + ACTIONS(9641), 1, sym_identifier, - STATE(4376), 1, + STATE(1922), 1, sym_template_type, - STATE(4877), 1, - sym_field_declaration_list, - STATE(4931), 1, + STATE(2461), 1, sym__class_declaration_item, - STATE(4933), 1, + STATE(2472), 1, sym__class_declaration, - STATE(5539), 1, + STATE(2962), 1, + sym_field_declaration_list, + STATE(5611), 1, sym_ms_declspec_modifier, - STATE(6632), 1, + STATE(6715), 1, sym__scope_resolution, - STATE(6984), 1, + STATE(7126), 1, sym_virtual_specifier, - STATE(7729), 1, + STATE(7712), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(4384), 2, + STATE(2812), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5540), 2, + STATE(5665), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5201), 3, + STATE(5268), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [196456] = 24, + [199252] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5220), 1, + ACTIONS(5228), 1, anon_sym_COLON_COLON, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(6542), 1, + ACTIONS(6530), 1, anon_sym_LBRACE, - ACTIONS(9613), 1, + ACTIONS(9641), 1, sym_identifier, - STATE(1893), 1, + STATE(1922), 1, sym_template_type, - STATE(2409), 1, + STATE(2461), 1, sym__class_declaration_item, - STATE(2483), 1, + STATE(2480), 1, sym__class_declaration, - STATE(2917), 1, + STATE(2962), 1, sym_field_declaration_list, - STATE(5586), 1, + STATE(5611), 1, sym_ms_declspec_modifier, - STATE(6627), 1, + STATE(6715), 1, sym__scope_resolution, - STATE(6995), 1, + STATE(7126), 1, sym_virtual_specifier, - STATE(7645), 1, + STATE(7712), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2778), 2, + STATE(2812), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5588), 2, + STATE(5665), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5225), 3, + STATE(5268), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [196537] = 24, + [199333] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7071), 1, + anon_sym___asm, + ACTIONS(7075), 1, + anon_sym_noexcept, + ACTIONS(7077), 1, + anon_sym_throw, + ACTIONS(7299), 1, + anon_sym___attribute__, + ACTIONS(7536), 1, + anon_sym_DASH_GT, + ACTIONS(7538), 1, + anon_sym_requires, + ACTIONS(9150), 1, + anon_sym_LBRACK, + STATE(6295), 1, + sym_trailing_return_type, + STATE(6300), 1, + sym__function_attributes_end, + STATE(6870), 1, + sym_gnu_asm_expression, + ACTIONS(7069), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7359), 2, + anon_sym_final, + anon_sym_override, + STATE(5455), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5507), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6017), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6149), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5421), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9139), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + [199408] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5220), 1, - anon_sym_COLON_COLON, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(6542), 1, + ACTIONS(6530), 1, anon_sym_LBRACE, - ACTIONS(9613), 1, + ACTIONS(8074), 1, + anon_sym_COLON_COLON, + ACTIONS(9647), 1, sym_identifier, - STATE(1893), 1, + STATE(1922), 1, sym_template_type, - STATE(2409), 1, - sym__class_declaration_item, - STATE(2440), 1, + STATE(2459), 1, sym__class_declaration, - STATE(2917), 1, + STATE(2461), 1, + sym__class_declaration_item, + STATE(3663), 1, sym_field_declaration_list, - STATE(5586), 1, + STATE(5603), 1, sym_ms_declspec_modifier, - STATE(6627), 1, + STATE(6743), 1, sym__scope_resolution, - STATE(6995), 1, + STATE(7228), 1, sym_virtual_specifier, - STATE(7645), 1, + STATE(8009), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2801), 2, + STATE(3041), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5588), 2, + STATE(5605), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5225), 3, + STATE(5279), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [196618] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2457), 1, - anon_sym_LBRACE, - ACTIONS(7373), 1, - anon_sym_LPAREN2, - STATE(1928), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3421), 1, - sym_argument_list, - STATE(3426), 1, - sym_initializer_list, - ACTIONS(5450), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(5886), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5452), 20, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym___extension__, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_auto, - anon_sym_decltype, - [196669] = 21, + [199489] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7065), 1, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7072), 1, + ACTIONS(7075), 1, anon_sym_noexcept, - ACTIONS(7074), 1, + ACTIONS(7077), 1, anon_sym_throw, - ACTIONS(7147), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - ACTIONS(7549), 1, + ACTIONS(7536), 1, anon_sym_DASH_GT, - ACTIONS(9193), 1, - anon_sym_LBRACK, - ACTIONS(9341), 1, + ACTIONS(7538), 1, anon_sym_requires, - STATE(6188), 1, + ACTIONS(9382), 1, + anon_sym_LBRACK, + STATE(6296), 1, sym_trailing_return_type, - STATE(6211), 1, + STATE(6301), 1, sym__function_attributes_end, - STATE(6766), 1, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(7063), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9297), 2, + ACTIONS(7359), 2, anon_sym_final, anon_sym_override, - STATE(5384), 2, + STATE(5455), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5458), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6012), 2, + STATE(6132), 2, sym__function_postfix, sym_requires_clause, - STATE(5340), 3, + STATE(5415), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9182), 4, + ACTIONS(9371), 4, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_GT2, - [196744] = 24, + [199564] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5220), 1, - anon_sym_COLON_COLON, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(6542), 1, + ACTIONS(6530), 1, anon_sym_LBRACE, - ACTIONS(9613), 1, + ACTIONS(8074), 1, + anon_sym_COLON_COLON, + ACTIONS(9647), 1, sym_identifier, - STATE(1893), 1, + STATE(1922), 1, sym_template_type, - STATE(2409), 1, + STATE(2461), 1, sym__class_declaration_item, - STATE(2522), 1, + STATE(2472), 1, sym__class_declaration, - STATE(2917), 1, + STATE(3663), 1, sym_field_declaration_list, - STATE(5586), 1, + STATE(5603), 1, sym_ms_declspec_modifier, - STATE(6627), 1, + STATE(6743), 1, sym__scope_resolution, - STATE(6995), 1, + STATE(7228), 1, sym_virtual_specifier, - STATE(7645), 1, + STATE(8009), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2770), 2, + STATE(3041), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5588), 2, + STATE(5605), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5225), 3, + STATE(5279), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [196825] = 24, + [199645] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5220), 1, - anon_sym_COLON_COLON, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(6542), 1, + ACTIONS(6530), 1, anon_sym_LBRACE, - ACTIONS(9613), 1, + ACTIONS(8074), 1, + anon_sym_COLON_COLON, + ACTIONS(9647), 1, sym_identifier, - STATE(1893), 1, + STATE(1922), 1, sym_template_type, - STATE(2409), 1, + STATE(2461), 1, sym__class_declaration_item, - STATE(2440), 1, + STATE(2480), 1, sym__class_declaration, - STATE(2917), 1, + STATE(3663), 1, sym_field_declaration_list, - STATE(5586), 1, + STATE(5603), 1, sym_ms_declspec_modifier, - STATE(6627), 1, + STATE(6743), 1, sym__scope_resolution, - STATE(6995), 1, + STATE(7228), 1, sym_virtual_specifier, - STATE(7645), 1, + STATE(8009), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2770), 2, + STATE(3041), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5588), 2, + STATE(5605), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5225), 3, + STATE(5279), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [196906] = 24, + [199726] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5220), 1, - anon_sym_COLON_COLON, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(6540), 1, - anon_sym_COLON, - ACTIONS(6542), 1, + ACTIONS(6035), 1, anon_sym_LBRACE, - ACTIONS(9613), 1, + ACTIONS(6528), 1, + anon_sym_COLON, + ACTIONS(8088), 1, + anon_sym_COLON_COLON, + ACTIONS(9649), 1, sym_identifier, - STATE(1893), 1, + STATE(1784), 1, sym_template_type, - STATE(2409), 1, - sym__class_declaration_item, - STATE(2440), 1, + STATE(1895), 1, sym__class_declaration, - STATE(2917), 1, + STATE(1902), 1, + sym__class_declaration_item, + STATE(5190), 1, sym_field_declaration_list, - STATE(5586), 1, + STATE(5692), 1, sym_ms_declspec_modifier, - STATE(6627), 1, + STATE(6724), 1, sym__scope_resolution, - STATE(6995), 1, + STATE(7203), 1, sym_virtual_specifier, - STATE(7645), 1, + STATE(7975), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2766), 2, + STATE(4535), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5588), 2, + STATE(5698), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5225), 3, + STATE(5297), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [196987] = 24, + [199807] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5220), 1, - anon_sym_COLON_COLON, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(6540), 1, - anon_sym_COLON, - ACTIONS(6542), 1, + ACTIONS(6035), 1, anon_sym_LBRACE, - ACTIONS(9613), 1, + ACTIONS(6528), 1, + anon_sym_COLON, + ACTIONS(8088), 1, + anon_sym_COLON_COLON, + ACTIONS(9649), 1, sym_identifier, - STATE(1893), 1, + STATE(1784), 1, sym_template_type, - STATE(2409), 1, + STATE(1902), 1, sym__class_declaration_item, - STATE(2483), 1, + STATE(1911), 1, sym__class_declaration, - STATE(2917), 1, + STATE(5190), 1, sym_field_declaration_list, - STATE(5586), 1, + STATE(5692), 1, sym_ms_declspec_modifier, - STATE(6627), 1, + STATE(6724), 1, sym__scope_resolution, - STATE(6995), 1, + STATE(7203), 1, sym_virtual_specifier, - STATE(7645), 1, + STATE(7975), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2770), 2, + STATE(4535), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5588), 2, + STATE(5698), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5225), 3, + STATE(5297), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [197068] = 24, + [199888] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5220), 1, - anon_sym_COLON_COLON, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(6540), 1, - anon_sym_COLON, - ACTIONS(6542), 1, + ACTIONS(6035), 1, anon_sym_LBRACE, - ACTIONS(9613), 1, + ACTIONS(6528), 1, + anon_sym_COLON, + ACTIONS(8088), 1, + anon_sym_COLON_COLON, + ACTIONS(9649), 1, sym_identifier, - STATE(1893), 1, + STATE(1784), 1, sym_template_type, - STATE(2409), 1, - sym__class_declaration_item, - STATE(2522), 1, + STATE(1861), 1, sym__class_declaration, - STATE(2917), 1, + STATE(1902), 1, + sym__class_declaration_item, + STATE(5190), 1, sym_field_declaration_list, - STATE(5586), 1, + STATE(5692), 1, sym_ms_declspec_modifier, - STATE(6627), 1, + STATE(6724), 1, sym__scope_resolution, - STATE(6995), 1, + STATE(7203), 1, sym_virtual_specifier, - STATE(7645), 1, + STATE(7975), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2833), 2, + STATE(4535), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5588), 2, + STATE(5698), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5225), 3, + STATE(5297), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [197149] = 24, + [199969] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7071), 1, + anon_sym___asm, + ACTIONS(7075), 1, + anon_sym_noexcept, + ACTIONS(7077), 1, + anon_sym_throw, + ACTIONS(7299), 1, + anon_sym___attribute__, + ACTIONS(7536), 1, + anon_sym_DASH_GT, + ACTIONS(9150), 1, + anon_sym_LBRACK, + ACTIONS(9384), 1, + anon_sym_requires, + STATE(6305), 1, + sym_trailing_return_type, + STATE(6311), 1, + sym__function_attributes_end, + STATE(6870), 1, + sym_gnu_asm_expression, + ACTIONS(7069), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9327), 2, + anon_sym_final, + anon_sym_override, + STATE(5455), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5507), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6017), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6149), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5420), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9139), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + [200044] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7071), 1, + anon_sym___asm, + ACTIONS(7075), 1, + anon_sym_noexcept, + ACTIONS(7077), 1, + anon_sym_throw, + ACTIONS(7299), 1, + anon_sym___attribute__, + ACTIONS(7536), 1, + anon_sym_DASH_GT, + ACTIONS(9382), 1, + anon_sym_LBRACK, + ACTIONS(9651), 1, + anon_sym_requires, + STATE(6306), 1, + sym_trailing_return_type, + STATE(6312), 1, + sym__function_attributes_end, + STATE(6870), 1, + sym_gnu_asm_expression, + ACTIONS(7069), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9488), 2, + anon_sym_final, + anon_sym_override, + STATE(5455), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5507), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6017), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6132), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5412), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9371), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + [200119] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5220), 1, - anon_sym_COLON_COLON, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(6540), 1, - anon_sym_COLON, - ACTIONS(6542), 1, + ACTIONS(6035), 1, anon_sym_LBRACE, - ACTIONS(9613), 1, + ACTIONS(6528), 1, + anon_sym_COLON, + ACTIONS(7984), 1, + anon_sym_COLON_COLON, + ACTIONS(9645), 1, sym_identifier, - STATE(1893), 1, + STATE(1784), 1, sym_template_type, - STATE(2409), 1, + STATE(1902), 1, sym__class_declaration_item, - STATE(2522), 1, + STATE(1911), 1, sym__class_declaration, - STATE(2917), 1, + STATE(2382), 1, sym_field_declaration_list, - STATE(5586), 1, + STATE(5684), 1, sym_ms_declspec_modifier, - STATE(6627), 1, + STATE(6727), 1, sym__scope_resolution, - STATE(6995), 1, + STATE(7084), 1, sym_virtual_specifier, - STATE(7645), 1, + STATE(7872), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2780), 2, + STATE(2031), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5588), 2, + STATE(5689), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5225), 3, + STATE(5270), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [197230] = 24, + [200200] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5220), 1, - anon_sym_COLON_COLON, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(6540), 1, - anon_sym_COLON, - ACTIONS(6542), 1, + ACTIONS(6035), 1, anon_sym_LBRACE, - ACTIONS(9613), 1, + ACTIONS(6528), 1, + anon_sym_COLON, + ACTIONS(9437), 1, + anon_sym_COLON_COLON, + ACTIONS(9654), 1, sym_identifier, - STATE(1893), 1, + STATE(1784), 1, sym_template_type, - STATE(2409), 1, - sym__class_declaration_item, - STATE(2440), 1, + STATE(1895), 1, sym__class_declaration, - STATE(2917), 1, + STATE(1902), 1, + sym__class_declaration_item, + STATE(2382), 1, sym_field_declaration_list, - STATE(5586), 1, + STATE(5712), 1, sym_ms_declspec_modifier, - STATE(6627), 1, + STATE(6699), 1, sym__scope_resolution, - STATE(6995), 1, + STATE(7084), 1, sym_virtual_specifier, - STATE(7645), 1, + STATE(7872), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2833), 2, + STATE(2031), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5588), 2, + STATE(5683), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5225), 3, + STATE(5239), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [197311] = 24, + [200281] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5220), 1, - anon_sym_COLON_COLON, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(6540), 1, - anon_sym_COLON, - ACTIONS(6542), 1, + ACTIONS(6035), 1, anon_sym_LBRACE, - ACTIONS(9613), 1, + ACTIONS(6528), 1, + anon_sym_COLON, + ACTIONS(9437), 1, + anon_sym_COLON_COLON, + ACTIONS(9654), 1, sym_identifier, - STATE(1893), 1, + STATE(1784), 1, sym_template_type, - STATE(2409), 1, + STATE(1902), 1, sym__class_declaration_item, - STATE(2440), 1, + STATE(1911), 1, sym__class_declaration, - STATE(2917), 1, + STATE(2382), 1, sym_field_declaration_list, - STATE(5586), 1, + STATE(5712), 1, sym_ms_declspec_modifier, - STATE(6627), 1, + STATE(6699), 1, sym__scope_resolution, - STATE(6995), 1, + STATE(7084), 1, sym_virtual_specifier, - STATE(7645), 1, + STATE(7872), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2780), 2, + STATE(2031), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5588), 2, + STATE(5683), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5225), 3, + STATE(5239), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [197392] = 24, + [200362] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5220), 1, - anon_sym_COLON_COLON, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(6540), 1, - anon_sym_COLON, - ACTIONS(6542), 1, + ACTIONS(6035), 1, anon_sym_LBRACE, - ACTIONS(9613), 1, + ACTIONS(6528), 1, + anon_sym_COLON, + ACTIONS(9437), 1, + anon_sym_COLON_COLON, + ACTIONS(9654), 1, sym_identifier, - STATE(1893), 1, + STATE(1784), 1, sym_template_type, - STATE(2409), 1, - sym__class_declaration_item, - STATE(2483), 1, + STATE(1861), 1, sym__class_declaration, - STATE(2917), 1, + STATE(1902), 1, + sym__class_declaration_item, + STATE(2382), 1, sym_field_declaration_list, - STATE(5586), 1, + STATE(5712), 1, sym_ms_declspec_modifier, - STATE(6627), 1, + STATE(6699), 1, sym__scope_resolution, - STATE(6995), 1, + STATE(7084), 1, sym_virtual_specifier, - STATE(7645), 1, + STATE(7872), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2780), 2, + STATE(2031), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5588), 2, + STATE(5683), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5225), 3, + STATE(5239), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [197473] = 24, + [200443] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5220), 1, - anon_sym_COLON_COLON, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(6540), 1, - anon_sym_COLON, - ACTIONS(6542), 1, + ACTIONS(6035), 1, anon_sym_LBRACE, - ACTIONS(9613), 1, + ACTIONS(6528), 1, + anon_sym_COLON, + ACTIONS(7984), 1, + anon_sym_COLON_COLON, + ACTIONS(9645), 1, sym_identifier, - STATE(1893), 1, + STATE(1784), 1, sym_template_type, - STATE(2409), 1, - sym__class_declaration_item, - STATE(2483), 1, + STATE(1861), 1, sym__class_declaration, - STATE(2917), 1, + STATE(1902), 1, + sym__class_declaration_item, + STATE(2382), 1, sym_field_declaration_list, - STATE(5586), 1, + STATE(5684), 1, sym_ms_declspec_modifier, - STATE(6627), 1, + STATE(6727), 1, sym__scope_resolution, - STATE(6995), 1, + STATE(7084), 1, sym_virtual_specifier, - STATE(7645), 1, + STATE(7872), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2833), 2, + STATE(2031), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5588), 2, + STATE(5689), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5225), 3, + STATE(5270), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [197554] = 24, + [200524] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5228), 1, + anon_sym_COLON_COLON, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(6542), 1, + ACTIONS(6530), 1, anon_sym_LBRACE, - ACTIONS(9613), 1, + ACTIONS(9641), 1, sym_identifier, - ACTIONS(9625), 1, - anon_sym_COLON_COLON, - STATE(1893), 1, + STATE(1922), 1, sym_template_type, - STATE(2409), 1, - sym__class_declaration_item, - STATE(2522), 1, + STATE(2459), 1, sym__class_declaration, - STATE(2917), 1, + STATE(2461), 1, + sym__class_declaration_item, + STATE(2962), 1, sym_field_declaration_list, - STATE(5499), 1, + STATE(5611), 1, sym_ms_declspec_modifier, - STATE(6604), 1, + STATE(6715), 1, sym__scope_resolution, - STATE(6995), 1, + STATE(7126), 1, sym_virtual_specifier, - STATE(7645), 1, + STATE(7712), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(3925), 2, + STATE(2831), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5500), 2, + STATE(5665), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5189), 3, + STATE(5268), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [197635] = 24, + [200605] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5228), 1, + anon_sym_COLON_COLON, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(6542), 1, + ACTIONS(6530), 1, anon_sym_LBRACE, - ACTIONS(9613), 1, + ACTIONS(9641), 1, sym_identifier, - ACTIONS(9625), 1, - anon_sym_COLON_COLON, - STATE(1893), 1, + STATE(1922), 1, sym_template_type, - STATE(2409), 1, + STATE(2461), 1, sym__class_declaration_item, - STATE(2440), 1, + STATE(2472), 1, sym__class_declaration, - STATE(2917), 1, + STATE(2962), 1, sym_field_declaration_list, - STATE(5499), 1, + STATE(5611), 1, sym_ms_declspec_modifier, - STATE(6604), 1, + STATE(6715), 1, sym__scope_resolution, - STATE(6995), 1, + STATE(7126), 1, sym_virtual_specifier, - STATE(7645), 1, + STATE(7712), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(3925), 2, + STATE(2831), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5500), 2, + STATE(5665), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5189), 3, + STATE(5268), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [197716] = 24, + [200686] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5228), 1, + anon_sym_COLON_COLON, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(6542), 1, + ACTIONS(6530), 1, anon_sym_LBRACE, - ACTIONS(9613), 1, + ACTIONS(9641), 1, sym_identifier, - ACTIONS(9625), 1, - anon_sym_COLON_COLON, - STATE(1893), 1, + STATE(1922), 1, sym_template_type, - STATE(2409), 1, + STATE(2461), 1, sym__class_declaration_item, - STATE(2483), 1, + STATE(2480), 1, sym__class_declaration, - STATE(2917), 1, + STATE(2962), 1, sym_field_declaration_list, - STATE(5499), 1, + STATE(5611), 1, sym_ms_declspec_modifier, - STATE(6604), 1, + STATE(6715), 1, sym__scope_resolution, - STATE(6995), 1, + STATE(7126), 1, sym_virtual_specifier, - STATE(7645), 1, + STATE(7712), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(3925), 2, + STATE(2831), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5500), 2, + STATE(5665), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5189), 3, + STATE(5268), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [197797] = 24, + [200767] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(3623), 1, + anon_sym_LBRACE, + ACTIONS(6774), 1, + anon_sym_LPAREN2, + STATE(1948), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2452), 1, + sym_argument_list, + STATE(3883), 1, + sym_initializer_list, + ACTIONS(5515), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5923), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5517), 20, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym___extension__, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + [200818] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5228), 1, + anon_sym_COLON_COLON, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(8055), 1, - anon_sym_COLON_COLON, - ACTIONS(8615), 1, + ACTIONS(6530), 1, anon_sym_LBRACE, - ACTIONS(9623), 1, + ACTIONS(9641), 1, sym_identifier, - STATE(1893), 1, + STATE(1922), 1, sym_template_type, - STATE(4423), 1, - sym_field_declaration_list, - STATE(4642), 1, + STATE(2459), 1, sym__class_declaration, - STATE(4653), 1, + STATE(2461), 1, sym__class_declaration_item, - STATE(5583), 1, + STATE(2962), 1, + sym_field_declaration_list, + STATE(5611), 1, sym_ms_declspec_modifier, - STATE(6592), 1, + STATE(6715), 1, sym__scope_resolution, - STATE(6965), 1, + STATE(7126), 1, sym_virtual_specifier, - STATE(7777), 1, + STATE(7712), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(4218), 2, + STATE(2835), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5584), 2, + STATE(5665), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5176), 3, + STATE(5268), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [197878] = 24, + [200899] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5228), 1, + anon_sym_COLON_COLON, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(6542), 1, + ACTIONS(6530), 1, anon_sym_LBRACE, - ACTIONS(8055), 1, - anon_sym_COLON_COLON, - ACTIONS(9623), 1, + ACTIONS(9641), 1, sym_identifier, - STATE(1893), 1, + STATE(1922), 1, sym_template_type, - STATE(2409), 1, + STATE(2461), 1, sym__class_declaration_item, - STATE(2440), 1, + STATE(2472), 1, sym__class_declaration, - STATE(3610), 1, + STATE(2962), 1, sym_field_declaration_list, - STATE(5612), 1, + STATE(5611), 1, sym_ms_declspec_modifier, - STATE(6592), 1, + STATE(6715), 1, sym__scope_resolution, - STATE(7084), 1, + STATE(7126), 1, sym_virtual_specifier, - STATE(7878), 1, + STATE(7712), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2988), 2, + STATE(2835), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5613), 2, + STATE(5665), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5190), 3, + STATE(5268), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [197959] = 24, + [200980] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5220), 1, + ACTIONS(5228), 1, anon_sym_COLON_COLON, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(6542), 1, + ACTIONS(6530), 1, anon_sym_LBRACE, - ACTIONS(9613), 1, + ACTIONS(9641), 1, sym_identifier, - STATE(1893), 1, + STATE(1922), 1, sym_template_type, - STATE(2409), 1, + STATE(2461), 1, sym__class_declaration_item, - STATE(2440), 1, + STATE(2480), 1, sym__class_declaration, - STATE(2917), 1, + STATE(2962), 1, sym_field_declaration_list, - STATE(5586), 1, + STATE(5611), 1, sym_ms_declspec_modifier, - STATE(6627), 1, + STATE(6715), 1, sym__scope_resolution, - STATE(6995), 1, + STATE(7126), 1, sym_virtual_specifier, - STATE(7645), 1, + STATE(7712), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2781), 2, + STATE(2835), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5588), 2, + STATE(5665), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5225), 3, + STATE(5268), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [198040] = 24, + [201061] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5228), 1, + anon_sym_COLON_COLON, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(6018), 1, - anon_sym_LBRACE, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(7959), 1, - anon_sym_COLON_COLON, - ACTIONS(9627), 1, + ACTIONS(6530), 1, + anon_sym_LBRACE, + ACTIONS(9641), 1, sym_identifier, - STATE(1816), 1, + STATE(1922), 1, sym_template_type, - STATE(1873), 1, + STATE(2459), 1, sym__class_declaration, - STATE(1874), 1, + STATE(2461), 1, sym__class_declaration_item, - STATE(2336), 1, + STATE(2962), 1, sym_field_declaration_list, - STATE(5567), 1, + STATE(5611), 1, sym_ms_declspec_modifier, - STATE(6587), 1, + STATE(6715), 1, sym__scope_resolution, - STATE(6997), 1, + STATE(7126), 1, sym_virtual_specifier, - STATE(7837), 1, + STATE(7712), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2107), 2, + STATE(2837), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5569), 2, + STATE(5665), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5202), 3, + STATE(5268), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [198121] = 24, + [201142] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5220), 1, + ACTIONS(5228), 1, anon_sym_COLON_COLON, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(6542), 1, + ACTIONS(6530), 1, anon_sym_LBRACE, - ACTIONS(9613), 1, + ACTIONS(9641), 1, sym_identifier, - STATE(1893), 1, + STATE(1922), 1, sym_template_type, - STATE(2409), 1, + STATE(2461), 1, sym__class_declaration_item, - STATE(2483), 1, + STATE(2472), 1, sym__class_declaration, - STATE(2917), 1, + STATE(2962), 1, sym_field_declaration_list, - STATE(5586), 1, + STATE(5611), 1, sym_ms_declspec_modifier, - STATE(6627), 1, + STATE(6715), 1, sym__scope_resolution, - STATE(6995), 1, + STATE(7126), 1, sym_virtual_specifier, - STATE(7645), 1, + STATE(7712), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2781), 2, + STATE(2837), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5588), 2, + STATE(5665), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5225), 3, + STATE(5268), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [198202] = 24, + [201223] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5228), 1, + anon_sym_COLON_COLON, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(6018), 1, - anon_sym_LBRACE, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(7959), 1, - anon_sym_COLON_COLON, - ACTIONS(9627), 1, + ACTIONS(6530), 1, + anon_sym_LBRACE, + ACTIONS(9641), 1, sym_identifier, - STATE(1816), 1, + STATE(1922), 1, sym_template_type, - STATE(1874), 1, + STATE(2461), 1, sym__class_declaration_item, - STATE(1875), 1, + STATE(2480), 1, sym__class_declaration, - STATE(2336), 1, + STATE(2962), 1, sym_field_declaration_list, - STATE(5567), 1, + STATE(5611), 1, sym_ms_declspec_modifier, - STATE(6587), 1, + STATE(6715), 1, sym__scope_resolution, - STATE(6997), 1, + STATE(7126), 1, sym_virtual_specifier, - STATE(7837), 1, + STATE(7712), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2107), 2, + STATE(2837), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5569), 2, + STATE(5665), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5202), 3, + STATE(5268), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [198283] = 24, + [201304] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5228), 1, + anon_sym_COLON_COLON, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(6542), 1, + ACTIONS(6530), 1, anon_sym_LBRACE, - ACTIONS(8081), 1, - anon_sym_COLON_COLON, - ACTIONS(9615), 1, + ACTIONS(9641), 1, sym_identifier, - STATE(1893), 1, + STATE(1922), 1, sym_template_type, - STATE(2409), 1, - sym__class_declaration_item, - STATE(2522), 1, + STATE(2459), 1, sym__class_declaration, - STATE(3610), 1, + STATE(2461), 1, + sym__class_declaration_item, + STATE(2962), 1, sym_field_declaration_list, - STATE(5629), 1, + STATE(5611), 1, sym_ms_declspec_modifier, - STATE(6615), 1, + STATE(6715), 1, sym__scope_resolution, - STATE(7084), 1, + STATE(7126), 1, sym_virtual_specifier, - STATE(7878), 1, + STATE(7712), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2988), 2, + STATE(2440), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5630), 2, + STATE(5665), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5161), 3, + STATE(5268), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [198364] = 24, + [201385] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5228), 1, + anon_sym_COLON_COLON, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(6018), 1, - anon_sym_LBRACE, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(7959), 1, - anon_sym_COLON_COLON, - ACTIONS(9627), 1, + ACTIONS(6530), 1, + anon_sym_LBRACE, + ACTIONS(9641), 1, sym_identifier, - STATE(1816), 1, + STATE(1922), 1, sym_template_type, - STATE(1874), 1, + STATE(2461), 1, sym__class_declaration_item, - STATE(1876), 1, + STATE(2472), 1, sym__class_declaration, - STATE(2336), 1, + STATE(2962), 1, sym_field_declaration_list, - STATE(5567), 1, + STATE(5611), 1, sym_ms_declspec_modifier, - STATE(6587), 1, + STATE(6715), 1, sym__scope_resolution, - STATE(6997), 1, + STATE(7126), 1, sym_virtual_specifier, - STATE(7837), 1, + STATE(7712), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2107), 2, + STATE(2440), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5569), 2, + STATE(5665), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5202), 3, + STATE(5268), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [198445] = 24, + [201466] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5220), 1, + ACTIONS(5228), 1, anon_sym_COLON_COLON, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(6542), 1, + ACTIONS(6530), 1, anon_sym_LBRACE, - ACTIONS(9613), 1, + ACTIONS(9641), 1, sym_identifier, - STATE(1893), 1, + STATE(1922), 1, sym_template_type, - STATE(2409), 1, - sym__class_declaration_item, - STATE(2483), 1, + STATE(2459), 1, sym__class_declaration, - STATE(2917), 1, + STATE(2461), 1, + sym__class_declaration_item, + STATE(2962), 1, sym_field_declaration_list, - STATE(5586), 1, + STATE(5611), 1, sym_ms_declspec_modifier, - STATE(6627), 1, + STATE(6715), 1, sym__scope_resolution, - STATE(6995), 1, + STATE(7126), 1, sym_virtual_specifier, - STATE(7645), 1, + STATE(7712), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2801), 2, + STATE(2843), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5588), 2, + STATE(5665), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5225), 3, + STATE(5268), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [198526] = 24, + [201547] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5228), 1, + anon_sym_COLON_COLON, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(8055), 1, - anon_sym_COLON_COLON, - ACTIONS(8615), 1, + ACTIONS(6530), 1, anon_sym_LBRACE, - ACTIONS(9623), 1, + ACTIONS(9641), 1, sym_identifier, - STATE(1893), 1, + STATE(1922), 1, sym_template_type, - STATE(4423), 1, - sym_field_declaration_list, - STATE(4653), 1, + STATE(2461), 1, sym__class_declaration_item, - STATE(4659), 1, + STATE(2472), 1, sym__class_declaration, - STATE(5583), 1, + STATE(2962), 1, + sym_field_declaration_list, + STATE(5611), 1, sym_ms_declspec_modifier, - STATE(6592), 1, + STATE(6715), 1, sym__scope_resolution, - STATE(6965), 1, + STATE(7126), 1, sym_virtual_specifier, - STATE(7777), 1, + STATE(7712), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(4218), 2, + STATE(2843), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5584), 2, + STATE(5665), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5176), 3, + STATE(5268), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [198607] = 24, + [201628] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5220), 1, + ACTIONS(5228), 1, anon_sym_COLON_COLON, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(6542), 1, + ACTIONS(6530), 1, anon_sym_LBRACE, - ACTIONS(9613), 1, + ACTIONS(9641), 1, sym_identifier, - STATE(1893), 1, + STATE(1922), 1, sym_template_type, - STATE(2409), 1, + STATE(2461), 1, sym__class_declaration_item, - STATE(2522), 1, + STATE(2480), 1, sym__class_declaration, - STATE(2917), 1, + STATE(2962), 1, sym_field_declaration_list, - STATE(5586), 1, + STATE(5611), 1, sym_ms_declspec_modifier, - STATE(6627), 1, + STATE(6715), 1, sym__scope_resolution, - STATE(6995), 1, + STATE(7126), 1, sym_virtual_specifier, - STATE(7645), 1, + STATE(7712), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2771), 2, + STATE(2843), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5588), 2, + STATE(5665), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5225), 3, + STATE(5268), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [198688] = 24, + [201709] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5020), 1, + ACTIONS(5228), 1, anon_sym_COLON_COLON, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(6542), 1, + ACTIONS(6530), 1, anon_sym_LBRACE, - ACTIONS(9621), 1, + ACTIONS(9641), 1, sym_identifier, - STATE(1893), 1, + STATE(1922), 1, sym_template_type, - STATE(2409), 1, - sym__class_declaration_item, - STATE(2522), 1, + STATE(2459), 1, sym__class_declaration, - STATE(2917), 1, + STATE(2461), 1, + sym__class_declaration_item, + STATE(2962), 1, sym_field_declaration_list, - STATE(5559), 1, + STATE(5611), 1, sym_ms_declspec_modifier, - STATE(6606), 1, + STATE(6715), 1, sym__scope_resolution, - STATE(6995), 1, + STATE(7126), 1, sym_virtual_specifier, - STATE(7645), 1, + STATE(7712), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2434), 2, + STATE(2844), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5560), 2, + STATE(5665), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5173), 3, + STATE(5268), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [198769] = 24, + [201790] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5220), 1, + ACTIONS(5228), 1, anon_sym_COLON_COLON, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(6542), 1, + ACTIONS(6530), 1, anon_sym_LBRACE, - ACTIONS(9613), 1, + ACTIONS(9641), 1, sym_identifier, - STATE(1893), 1, + STATE(1922), 1, sym_template_type, - STATE(2409), 1, + STATE(2461), 1, sym__class_declaration_item, - STATE(2440), 1, + STATE(2472), 1, sym__class_declaration, - STATE(2917), 1, + STATE(2962), 1, sym_field_declaration_list, - STATE(5586), 1, + STATE(5611), 1, sym_ms_declspec_modifier, - STATE(6627), 1, + STATE(6715), 1, sym__scope_resolution, - STATE(6995), 1, + STATE(7126), 1, sym_virtual_specifier, - STATE(7645), 1, + STATE(7712), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2771), 2, + STATE(2844), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5588), 2, + STATE(5665), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5225), 3, + STATE(5268), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [198850] = 24, + [201871] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5220), 1, + ACTIONS(5228), 1, anon_sym_COLON_COLON, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(6542), 1, + ACTIONS(6530), 1, anon_sym_LBRACE, - ACTIONS(9613), 1, + ACTIONS(9641), 1, sym_identifier, - STATE(1893), 1, + STATE(1922), 1, sym_template_type, - STATE(2409), 1, + STATE(2461), 1, sym__class_declaration_item, - STATE(2440), 1, + STATE(2480), 1, sym__class_declaration, - STATE(2917), 1, + STATE(2962), 1, sym_field_declaration_list, - STATE(5586), 1, + STATE(5611), 1, sym_ms_declspec_modifier, - STATE(6627), 1, + STATE(6715), 1, sym__scope_resolution, - STATE(6995), 1, + STATE(7126), 1, sym_virtual_specifier, - STATE(7645), 1, + STATE(7712), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2434), 2, + STATE(2844), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5588), 2, + STATE(5665), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5225), 3, + STATE(5268), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [198931] = 24, + [201952] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5220), 1, + ACTIONS(5228), 1, anon_sym_COLON_COLON, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(6542), 1, + ACTIONS(6530), 1, anon_sym_LBRACE, - ACTIONS(9613), 1, + ACTIONS(9641), 1, sym_identifier, - STATE(1893), 1, + STATE(1922), 1, sym_template_type, - STATE(2409), 1, - sym__class_declaration_item, - STATE(2522), 1, + STATE(2459), 1, sym__class_declaration, - STATE(2917), 1, + STATE(2461), 1, + sym__class_declaration_item, + STATE(2962), 1, sym_field_declaration_list, - STATE(5586), 1, + STATE(5611), 1, sym_ms_declspec_modifier, - STATE(6627), 1, + STATE(6715), 1, sym__scope_resolution, - STATE(6995), 1, + STATE(7126), 1, sym_virtual_specifier, - STATE(7645), 1, + STATE(7712), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2837), 2, + STATE(2848), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5588), 2, + STATE(5665), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5225), 3, + STATE(5268), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [199012] = 24, + [202033] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5220), 1, + ACTIONS(5228), 1, anon_sym_COLON_COLON, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(6542), 1, + ACTIONS(6530), 1, anon_sym_LBRACE, - ACTIONS(9613), 1, + ACTIONS(9641), 1, sym_identifier, - STATE(1893), 1, + STATE(1922), 1, sym_template_type, - STATE(2409), 1, + STATE(2461), 1, sym__class_declaration_item, - STATE(2483), 1, + STATE(2472), 1, sym__class_declaration, - STATE(2917), 1, + STATE(2962), 1, sym_field_declaration_list, - STATE(5586), 1, + STATE(5611), 1, sym_ms_declspec_modifier, - STATE(6627), 1, + STATE(6715), 1, sym__scope_resolution, - STATE(6995), 1, + STATE(7126), 1, sym_virtual_specifier, - STATE(7645), 1, + STATE(7712), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2771), 2, + STATE(2848), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5588), 2, + STATE(5665), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5225), 3, + STATE(5268), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [199093] = 24, + [202114] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5220), 1, + ACTIONS(5228), 1, anon_sym_COLON_COLON, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(6542), 1, + ACTIONS(6530), 1, anon_sym_LBRACE, - ACTIONS(9613), 1, + ACTIONS(9641), 1, sym_identifier, - STATE(1893), 1, + STATE(1922), 1, sym_template_type, - STATE(2409), 1, + STATE(2461), 1, sym__class_declaration_item, - STATE(2440), 1, + STATE(2480), 1, sym__class_declaration, - STATE(2917), 1, + STATE(2962), 1, sym_field_declaration_list, - STATE(5586), 1, + STATE(5611), 1, sym_ms_declspec_modifier, - STATE(6627), 1, + STATE(6715), 1, sym__scope_resolution, - STATE(6995), 1, + STATE(7126), 1, sym_virtual_specifier, - STATE(7645), 1, + STATE(7712), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2837), 2, + STATE(2848), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5588), 2, + STATE(5665), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5225), 3, + STATE(5268), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [199174] = 24, + [202195] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5220), 1, + ACTIONS(5228), 1, anon_sym_COLON_COLON, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(6542), 1, + ACTIONS(6530), 1, anon_sym_LBRACE, - ACTIONS(9613), 1, + ACTIONS(9641), 1, sym_identifier, - STATE(1893), 1, + STATE(1922), 1, sym_template_type, - STATE(2409), 1, - sym__class_declaration_item, - STATE(2483), 1, + STATE(2459), 1, sym__class_declaration, - STATE(2917), 1, + STATE(2461), 1, + sym__class_declaration_item, + STATE(2962), 1, sym_field_declaration_list, - STATE(5586), 1, + STATE(5611), 1, sym_ms_declspec_modifier, - STATE(6627), 1, + STATE(6715), 1, sym__scope_resolution, - STATE(6995), 1, + STATE(7126), 1, sym_virtual_specifier, - STATE(7645), 1, + STATE(7712), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2837), 2, + STATE(2849), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5588), 2, + STATE(5665), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5225), 3, + STATE(5268), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [199255] = 21, + [202276] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(5472), 1, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(5228), 1, + anon_sym_COLON_COLON, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7065), 1, - anon_sym___asm, - ACTIONS(7072), 1, - anon_sym_noexcept, - ACTIONS(7074), 1, - anon_sym_throw, - ACTIONS(7147), 1, + ACTIONS(5495), 1, + anon_sym___declspec, + ACTIONS(6528), 1, + anon_sym_COLON, + ACTIONS(6530), 1, + anon_sym_LBRACE, + ACTIONS(9641), 1, + sym_identifier, + STATE(1922), 1, + sym_template_type, + STATE(2461), 1, + sym__class_declaration_item, + STATE(2472), 1, + sym__class_declaration, + STATE(2962), 1, + sym_field_declaration_list, + STATE(5611), 1, + sym_ms_declspec_modifier, + STATE(6715), 1, + sym__scope_resolution, + STATE(7126), 1, + sym_virtual_specifier, + STATE(7712), 1, + sym_base_class_clause, + ACTIONS(5489), 2, anon_sym___attribute__, - ACTIONS(7549), 1, - anon_sym_DASH_GT, - ACTIONS(9355), 1, - anon_sym_LBRACK, - ACTIONS(9629), 1, - anon_sym_requires, - STATE(6189), 1, - sym_trailing_return_type, - STATE(6212), 1, - sym__function_attributes_end, - STATE(6766), 1, - sym_gnu_asm_expression, - ACTIONS(7063), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9495), 2, + anon_sym___attribute, + ACTIONS(5497), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(5384), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5458), 2, + STATE(2849), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5665), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6032), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5342), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9344), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_GT2, - [199330] = 24, + STATE(8569), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(5268), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + [202357] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5220), 1, + ACTIONS(5228), 1, anon_sym_COLON_COLON, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(6542), 1, + ACTIONS(6530), 1, anon_sym_LBRACE, - ACTIONS(9613), 1, + ACTIONS(9641), 1, sym_identifier, - STATE(1893), 1, + STATE(1922), 1, sym_template_type, - STATE(2409), 1, + STATE(2461), 1, sym__class_declaration_item, - STATE(2483), 1, + STATE(2480), 1, sym__class_declaration, - STATE(2917), 1, + STATE(2962), 1, sym_field_declaration_list, - STATE(5586), 1, + STATE(5611), 1, sym_ms_declspec_modifier, - STATE(6627), 1, + STATE(6715), 1, sym__scope_resolution, - STATE(6995), 1, + STATE(7126), 1, sym_virtual_specifier, - STATE(7645), 1, + STATE(7712), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2434), 2, + STATE(2849), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5588), 2, + STATE(5665), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5225), 3, + STATE(5268), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [199411] = 24, + [202438] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5228), 1, + anon_sym_COLON_COLON, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(8081), 1, - anon_sym_COLON_COLON, - ACTIONS(8615), 1, + ACTIONS(6530), 1, anon_sym_LBRACE, - ACTIONS(9615), 1, + ACTIONS(9641), 1, sym_identifier, - STATE(1893), 1, + STATE(1922), 1, sym_template_type, - STATE(4423), 1, - sym_field_declaration_list, - STATE(4653), 1, + STATE(2461), 1, sym__class_declaration_item, - STATE(4659), 1, + STATE(2480), 1, sym__class_declaration, - STATE(5495), 1, + STATE(2962), 1, + sym_field_declaration_list, + STATE(5611), 1, sym_ms_declspec_modifier, - STATE(6615), 1, + STATE(6715), 1, sym__scope_resolution, - STATE(6965), 1, + STATE(7126), 1, sym_virtual_specifier, - STATE(7777), 1, + STATE(7712), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(4218), 2, + STATE(2440), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5496), 2, + STATE(5665), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5164), 3, + STATE(5268), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [199492] = 24, + [202519] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5220), 1, + ACTIONS(5228), 1, anon_sym_COLON_COLON, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(6542), 1, + ACTIONS(6530), 1, anon_sym_LBRACE, - ACTIONS(9613), 1, + ACTIONS(9641), 1, sym_identifier, - STATE(1893), 1, + STATE(1922), 1, sym_template_type, - STATE(2409), 1, - sym__class_declaration_item, - STATE(2483), 1, + STATE(2459), 1, sym__class_declaration, - STATE(2917), 1, + STATE(2461), 1, + sym__class_declaration_item, + STATE(2962), 1, sym_field_declaration_list, - STATE(5586), 1, + STATE(5611), 1, sym_ms_declspec_modifier, - STATE(6627), 1, + STATE(6715), 1, sym__scope_resolution, - STATE(6995), 1, + STATE(7126), 1, sym_virtual_specifier, - STATE(7645), 1, + STATE(7712), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2766), 2, + STATE(2853), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5588), 2, + STATE(5665), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5225), 3, + STATE(5268), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [199573] = 24, + [202600] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5228), 1, + anon_sym_COLON_COLON, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(8081), 1, - anon_sym_COLON_COLON, - ACTIONS(8615), 1, + ACTIONS(6530), 1, anon_sym_LBRACE, - ACTIONS(9615), 1, + ACTIONS(9641), 1, sym_identifier, - STATE(1893), 1, + STATE(1922), 1, sym_template_type, - STATE(4423), 1, - sym_field_declaration_list, - STATE(4642), 1, - sym__class_declaration, - STATE(4653), 1, + STATE(2461), 1, sym__class_declaration_item, - STATE(5495), 1, + STATE(2472), 1, + sym__class_declaration, + STATE(2962), 1, + sym_field_declaration_list, + STATE(5611), 1, sym_ms_declspec_modifier, - STATE(6615), 1, + STATE(6715), 1, sym__scope_resolution, - STATE(6965), 1, + STATE(7126), 1, sym_virtual_specifier, - STATE(7777), 1, + STATE(7712), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(4218), 2, + STATE(2853), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5496), 2, + STATE(5665), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5164), 3, + STATE(5268), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [199654] = 24, + [202681] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5220), 1, + ACTIONS(5228), 1, anon_sym_COLON_COLON, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(6542), 1, + ACTIONS(6530), 1, anon_sym_LBRACE, - ACTIONS(9613), 1, + ACTIONS(9641), 1, sym_identifier, - STATE(1893), 1, + STATE(1922), 1, sym_template_type, - STATE(2409), 1, + STATE(2461), 1, sym__class_declaration_item, - STATE(2440), 1, + STATE(2480), 1, sym__class_declaration, - STATE(2917), 1, + STATE(2962), 1, sym_field_declaration_list, - STATE(5586), 1, + STATE(5611), 1, sym_ms_declspec_modifier, - STATE(6627), 1, + STATE(6715), 1, sym__scope_resolution, - STATE(6995), 1, + STATE(7126), 1, sym_virtual_specifier, - STATE(7645), 1, + STATE(7712), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2800), 2, + STATE(2853), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5588), 2, + STATE(5665), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5225), 3, + STATE(5268), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [199735] = 24, + [202762] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5228), 1, + anon_sym_COLON_COLON, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(6692), 1, + ACTIONS(6530), 1, anon_sym_LBRACE, - ACTIONS(9440), 1, - anon_sym_COLON_COLON, - ACTIONS(9632), 1, + ACTIONS(9641), 1, sym_identifier, - STATE(2669), 1, + STATE(1922), 1, sym_template_type, - STATE(2853), 1, - sym_field_declaration_list, - STATE(3117), 1, + STATE(2459), 1, sym__class_declaration, - STATE(3121), 1, + STATE(2461), 1, sym__class_declaration_item, - STATE(5529), 1, + STATE(2962), 1, + sym_field_declaration_list, + STATE(5611), 1, sym_ms_declspec_modifier, - STATE(6620), 1, + STATE(6715), 1, sym__scope_resolution, - STATE(6970), 1, + STATE(7126), 1, + sym_virtual_specifier, + STATE(7712), 1, + sym_base_class_clause, + ACTIONS(5489), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(5497), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(5567), 2, + anon_sym_final, + anon_sym_override, + STATE(2854), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5665), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8569), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(5268), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + [202843] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(5228), 1, + anon_sym_COLON_COLON, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5495), 1, + anon_sym___declspec, + ACTIONS(6528), 1, + anon_sym_COLON, + ACTIONS(6530), 1, + anon_sym_LBRACE, + ACTIONS(9641), 1, + sym_identifier, + STATE(1922), 1, + sym_template_type, + STATE(2461), 1, + sym__class_declaration_item, + STATE(2472), 1, + sym__class_declaration, + STATE(2962), 1, + sym_field_declaration_list, + STATE(5611), 1, + sym_ms_declspec_modifier, + STATE(6715), 1, + sym__scope_resolution, + STATE(7126), 1, sym_virtual_specifier, - STATE(7867), 1, + STATE(7712), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2503), 2, + STATE(2854), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5530), 2, + STATE(5665), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5222), 3, + STATE(5268), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [199816] = 24, + [202924] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5228), 1, + anon_sym_COLON_COLON, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(6692), 1, + ACTIONS(6530), 1, anon_sym_LBRACE, - ACTIONS(9440), 1, - anon_sym_COLON_COLON, - ACTIONS(9632), 1, + ACTIONS(9641), 1, sym_identifier, - STATE(2669), 1, + STATE(1922), 1, sym_template_type, - STATE(2853), 1, - sym_field_declaration_list, - STATE(3121), 1, + STATE(2461), 1, sym__class_declaration_item, - STATE(3123), 1, + STATE(2480), 1, sym__class_declaration, - STATE(5529), 1, + STATE(2962), 1, + sym_field_declaration_list, + STATE(5611), 1, sym_ms_declspec_modifier, - STATE(6620), 1, + STATE(6715), 1, sym__scope_resolution, - STATE(6970), 1, + STATE(7126), 1, sym_virtual_specifier, - STATE(7867), 1, + STATE(7712), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2503), 2, + STATE(2854), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5530), 2, + STATE(5665), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5222), 3, + STATE(5268), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [199897] = 24, + [203005] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(6540), 1, - anon_sym_COLON, - ACTIONS(6542), 1, + ACTIONS(6526), 1, anon_sym_LBRACE, - ACTIONS(8055), 1, + ACTIONS(6528), 1, + anon_sym_COLON, + ACTIONS(9580), 1, anon_sym_COLON_COLON, - ACTIONS(9623), 1, + ACTIONS(9656), 1, sym_identifier, - STATE(1893), 1, + STATE(2673), 1, sym_template_type, - STATE(2409), 1, - sym__class_declaration_item, - STATE(2483), 1, - sym__class_declaration, - STATE(3610), 1, + STATE(2809), 1, sym_field_declaration_list, - STATE(5612), 1, + STATE(3027), 1, + sym__class_declaration, + STATE(3035), 1, + sym__class_declaration_item, + STATE(5618), 1, sym_ms_declspec_modifier, - STATE(6592), 1, + STATE(6713), 1, sym__scope_resolution, - STATE(7084), 1, + STATE(7139), 1, sym_virtual_specifier, - STATE(7878), 1, + STATE(7762), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2988), 2, + STATE(2437), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5613), 2, + STATE(5619), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5190), 3, + STATE(5267), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [199978] = 24, + [203086] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5028), 1, + anon_sym_COLON_COLON, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(6362), 1, - anon_sym_LBRACE, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(8049), 1, - anon_sym_COLON_COLON, - ACTIONS(9634), 1, + ACTIONS(6530), 1, + anon_sym_LBRACE, + ACTIONS(9643), 1, sym_identifier, - STATE(2567), 1, + STATE(1922), 1, sym_template_type, - STATE(2618), 1, - sym_field_declaration_list, - STATE(2672), 1, - sym__class_declaration, - STATE(2673), 1, + STATE(2461), 1, sym__class_declaration_item, - STATE(5501), 1, + STATE(2480), 1, + sym__class_declaration, + STATE(2962), 1, + sym_field_declaration_list, + STATE(5711), 1, sym_ms_declspec_modifier, - STATE(6579), 1, + STATE(6746), 1, sym__scope_resolution, - STATE(6946), 1, + STATE(7126), 1, sym_virtual_specifier, - STATE(7567), 1, + STATE(7712), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2328), 2, + STATE(2440), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5568), 2, + STATE(5713), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5158), 3, + STATE(5272), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [200059] = 24, + [203167] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(6362), 1, + ACTIONS(6526), 1, anon_sym_LBRACE, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(8049), 1, + ACTIONS(9580), 1, anon_sym_COLON_COLON, - ACTIONS(9634), 1, + ACTIONS(9656), 1, sym_identifier, - STATE(2567), 1, + STATE(2673), 1, sym_template_type, - STATE(2618), 1, + STATE(2809), 1, sym_field_declaration_list, - STATE(2673), 1, + STATE(3035), 1, sym__class_declaration_item, - STATE(2675), 1, + STATE(3049), 1, sym__class_declaration, - STATE(5501), 1, + STATE(5618), 1, sym_ms_declspec_modifier, - STATE(6579), 1, + STATE(6713), 1, sym__scope_resolution, - STATE(6946), 1, + STATE(7139), 1, sym_virtual_specifier, - STATE(7567), 1, + STATE(7762), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2328), 2, + STATE(2437), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5568), 2, + STATE(5619), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5158), 3, + STATE(5267), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [200140] = 24, + [203248] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5228), 1, + anon_sym_COLON_COLON, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(6362), 1, - anon_sym_LBRACE, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(8049), 1, - anon_sym_COLON_COLON, - ACTIONS(9634), 1, + ACTIONS(6530), 1, + anon_sym_LBRACE, + ACTIONS(9641), 1, sym_identifier, - STATE(2567), 1, + STATE(1922), 1, sym_template_type, - STATE(2618), 1, - sym_field_declaration_list, - STATE(2673), 1, - sym__class_declaration_item, - STATE(2676), 1, + STATE(2459), 1, sym__class_declaration, - STATE(5501), 1, + STATE(2461), 1, + sym__class_declaration_item, + STATE(2962), 1, + sym_field_declaration_list, + STATE(5611), 1, sym_ms_declspec_modifier, - STATE(6579), 1, + STATE(6715), 1, sym__scope_resolution, - STATE(6946), 1, + STATE(7126), 1, sym_virtual_specifier, - STATE(7567), 1, + STATE(7712), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2328), 2, + STATE(2860), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5568), 2, + STATE(5665), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5158), 3, + STATE(5268), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [200221] = 24, + [203329] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5220), 1, + ACTIONS(5228), 1, anon_sym_COLON_COLON, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(6542), 1, + ACTIONS(6530), 1, anon_sym_LBRACE, - ACTIONS(9613), 1, + ACTIONS(9641), 1, sym_identifier, - STATE(1893), 1, + STATE(1922), 1, sym_template_type, - STATE(2409), 1, + STATE(2461), 1, sym__class_declaration_item, - STATE(2522), 1, + STATE(2472), 1, sym__class_declaration, - STATE(2917), 1, + STATE(2962), 1, sym_field_declaration_list, - STATE(5586), 1, + STATE(5611), 1, sym_ms_declspec_modifier, - STATE(6627), 1, + STATE(6715), 1, sym__scope_resolution, - STATE(6995), 1, + STATE(7126), 1, sym_virtual_specifier, - STATE(7645), 1, + STATE(7712), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2805), 2, + STATE(2860), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5588), 2, + STATE(5665), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5225), 3, + STATE(5268), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [200302] = 24, + [203410] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5220), 1, + ACTIONS(5228), 1, anon_sym_COLON_COLON, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(6542), 1, + ACTIONS(6530), 1, anon_sym_LBRACE, - ACTIONS(9613), 1, + ACTIONS(9641), 1, sym_identifier, - STATE(1893), 1, + STATE(1922), 1, sym_template_type, - STATE(2409), 1, + STATE(2461), 1, sym__class_declaration_item, - STATE(2440), 1, + STATE(2480), 1, sym__class_declaration, - STATE(2917), 1, + STATE(2962), 1, sym_field_declaration_list, - STATE(5586), 1, + STATE(5611), 1, sym_ms_declspec_modifier, - STATE(6627), 1, + STATE(6715), 1, sym__scope_resolution, - STATE(6995), 1, + STATE(7126), 1, sym_virtual_specifier, - STATE(7645), 1, + STATE(7712), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2805), 2, + STATE(2860), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5588), 2, + STATE(5665), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5225), 3, + STATE(5268), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [200383] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3615), 1, - anon_sym_LBRACE, - ACTIONS(6720), 1, - anon_sym_LPAREN2, - STATE(1928), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2436), 1, - sym_argument_list, - STATE(3806), 1, - sym_initializer_list, - ACTIONS(5450), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(5886), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5452), 20, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym___extension__, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_auto, - anon_sym_decltype, - [200434] = 24, + [203491] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5228), 1, + anon_sym_COLON_COLON, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(6018), 1, - anon_sym_LBRACE, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(7990), 1, - anon_sym_COLON_COLON, - ACTIONS(9636), 1, + ACTIONS(6530), 1, + anon_sym_LBRACE, + ACTIONS(9641), 1, sym_identifier, - STATE(1816), 1, + STATE(1922), 1, sym_template_type, - STATE(1873), 1, + STATE(2459), 1, sym__class_declaration, - STATE(1874), 1, + STATE(2461), 1, sym__class_declaration_item, - STATE(5147), 1, + STATE(2962), 1, sym_field_declaration_list, - STATE(5535), 1, + STATE(5611), 1, sym_ms_declspec_modifier, - STATE(6593), 1, + STATE(6715), 1, sym__scope_resolution, - STATE(7010), 1, + STATE(7126), 1, sym_virtual_specifier, - STATE(7843), 1, + STATE(7712), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(4504), 2, + STATE(2861), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5537), 2, + STATE(5665), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5194), 3, + STATE(5268), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [200515] = 24, + [203572] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5220), 1, + ACTIONS(5228), 1, anon_sym_COLON_COLON, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(6542), 1, + ACTIONS(6530), 1, anon_sym_LBRACE, - ACTIONS(9613), 1, + ACTIONS(9641), 1, sym_identifier, - STATE(1893), 1, + STATE(1922), 1, sym_template_type, - STATE(2409), 1, + STATE(2461), 1, sym__class_declaration_item, - STATE(2522), 1, + STATE(2472), 1, sym__class_declaration, - STATE(2917), 1, + STATE(2962), 1, sym_field_declaration_list, - STATE(5586), 1, + STATE(5611), 1, sym_ms_declspec_modifier, - STATE(6627), 1, + STATE(6715), 1, sym__scope_resolution, - STATE(6995), 1, + STATE(7126), 1, sym_virtual_specifier, - STATE(7645), 1, + STATE(7712), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2792), 2, + STATE(2861), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5588), 2, + STATE(5665), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5225), 3, + STATE(5268), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [200596] = 24, + [203653] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5220), 1, + ACTIONS(5228), 1, anon_sym_COLON_COLON, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(6542), 1, + ACTIONS(6530), 1, anon_sym_LBRACE, - ACTIONS(9613), 1, + ACTIONS(9641), 1, sym_identifier, - STATE(1893), 1, + STATE(1922), 1, sym_template_type, - STATE(2409), 1, + STATE(2461), 1, sym__class_declaration_item, - STATE(2440), 1, + STATE(2480), 1, sym__class_declaration, - STATE(2917), 1, + STATE(2962), 1, sym_field_declaration_list, - STATE(5586), 1, + STATE(5611), 1, sym_ms_declspec_modifier, - STATE(6627), 1, + STATE(6715), 1, sym__scope_resolution, - STATE(6995), 1, + STATE(7126), 1, sym_virtual_specifier, - STATE(7645), 1, + STATE(7712), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2792), 2, + STATE(2861), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5588), 2, + STATE(5665), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5225), 3, + STATE(5268), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [200677] = 24, + [203734] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5220), 1, - anon_sym_COLON_COLON, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(6540), 1, - anon_sym_COLON, - ACTIONS(6542), 1, + ACTIONS(5565), 1, anon_sym_LBRACE, - ACTIONS(9613), 1, + ACTIONS(6528), 1, + anon_sym_COLON, + ACTIONS(9530), 1, + anon_sym_COLON_COLON, + ACTIONS(9658), 1, sym_identifier, - STATE(1893), 1, + STATE(1943), 1, sym_template_type, - STATE(2409), 1, + STATE(2213), 1, + sym_field_declaration_list, + STATE(2260), 1, sym__class_declaration_item, - STATE(2483), 1, + STATE(2312), 1, sym__class_declaration, - STATE(2917), 1, - sym_field_declaration_list, - STATE(5586), 1, + STATE(5667), 1, sym_ms_declspec_modifier, - STATE(6627), 1, + STATE(6695), 1, sym__scope_resolution, - STATE(6995), 1, + STATE(7100), 1, sym_virtual_specifier, - STATE(7645), 1, + STATE(7921), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2792), 2, + STATE(1816), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5588), 2, + STATE(5668), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5225), 3, + STATE(5256), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [200758] = 24, + [203815] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5220), 1, - anon_sym_COLON_COLON, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(6540), 1, - anon_sym_COLON, - ACTIONS(6542), 1, + ACTIONS(5565), 1, anon_sym_LBRACE, - ACTIONS(9613), 1, + ACTIONS(6528), 1, + anon_sym_COLON, + ACTIONS(9530), 1, + anon_sym_COLON_COLON, + ACTIONS(9658), 1, sym_identifier, - STATE(1893), 1, + STATE(1943), 1, sym_template_type, - STATE(2409), 1, + STATE(2213), 1, + sym_field_declaration_list, + STATE(2260), 1, sym__class_declaration_item, - STATE(2522), 1, + STATE(2292), 1, sym__class_declaration, - STATE(2917), 1, - sym_field_declaration_list, - STATE(5586), 1, + STATE(5667), 1, sym_ms_declspec_modifier, - STATE(6627), 1, + STATE(6695), 1, sym__scope_resolution, - STATE(6995), 1, + STATE(7100), 1, sym_virtual_specifier, - STATE(7645), 1, + STATE(7921), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2766), 2, + STATE(1816), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5588), 2, + STATE(5668), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5225), 3, + STATE(5256), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [200839] = 24, + [203896] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5220), 1, - anon_sym_COLON_COLON, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(6540), 1, - anon_sym_COLON, - ACTIONS(6542), 1, + ACTIONS(5565), 1, anon_sym_LBRACE, - ACTIONS(9613), 1, + ACTIONS(6528), 1, + anon_sym_COLON, + ACTIONS(9530), 1, + anon_sym_COLON_COLON, + ACTIONS(9658), 1, sym_identifier, - STATE(1893), 1, + STATE(1943), 1, sym_template_type, - STATE(2409), 1, + STATE(2213), 1, + sym_field_declaration_list, + STATE(2260), 1, sym__class_declaration_item, - STATE(2522), 1, + STATE(2304), 1, sym__class_declaration, - STATE(2917), 1, - sym_field_declaration_list, - STATE(5586), 1, + STATE(5667), 1, sym_ms_declspec_modifier, - STATE(6627), 1, + STATE(6695), 1, sym__scope_resolution, - STATE(6995), 1, + STATE(7100), 1, sym_virtual_specifier, - STATE(7645), 1, + STATE(7921), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2793), 2, + STATE(1816), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5588), 2, + STATE(5668), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5225), 3, + STATE(5256), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [200920] = 24, + [203977] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5220), 1, - anon_sym_COLON_COLON, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(6542), 1, + ACTIONS(6530), 1, anon_sym_LBRACE, - ACTIONS(9613), 1, + ACTIONS(9641), 1, sym_identifier, - STATE(1893), 1, + ACTIONS(9660), 1, + anon_sym_COLON_COLON, + STATE(1922), 1, sym_template_type, - STATE(2409), 1, - sym__class_declaration_item, - STATE(2440), 1, + STATE(2459), 1, sym__class_declaration, - STATE(2917), 1, + STATE(2461), 1, + sym__class_declaration_item, + STATE(2962), 1, sym_field_declaration_list, - STATE(5586), 1, + STATE(5705), 1, sym_ms_declspec_modifier, - STATE(6627), 1, + STATE(6706), 1, sym__scope_resolution, - STATE(6995), 1, + STATE(7126), 1, sym_virtual_specifier, - STATE(7645), 1, + STATE(7712), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2793), 2, + STATE(4003), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5588), 2, + STATE(5710), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5225), 3, + STATE(5228), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [201001] = 24, + [204058] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(7520), 1, + ACTIONS(6530), 1, anon_sym_LBRACE, - ACTIONS(9578), 1, - anon_sym_COLON_COLON, - ACTIONS(9638), 1, + ACTIONS(9641), 1, sym_identifier, - STATE(3681), 1, + ACTIONS(9660), 1, + anon_sym_COLON_COLON, + STATE(1922), 1, sym_template_type, - STATE(3943), 1, - sym_field_declaration_list, - STATE(4102), 1, - sym__class_declaration, - STATE(4104), 1, + STATE(2461), 1, sym__class_declaration_item, - STATE(5573), 1, + STATE(2472), 1, + sym__class_declaration, + STATE(2962), 1, + sym_field_declaration_list, + STATE(5705), 1, sym_ms_declspec_modifier, - STATE(6634), 1, + STATE(6706), 1, sym__scope_resolution, - STATE(6934), 1, + STATE(7126), 1, sym_virtual_specifier, - STATE(7796), 1, + STATE(7712), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(3127), 2, + STATE(4003), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5574), 2, + STATE(5710), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5220), 3, + STATE(5228), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [201082] = 24, + [204139] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5220), 1, - anon_sym_COLON_COLON, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(6542), 1, + ACTIONS(6530), 1, anon_sym_LBRACE, - ACTIONS(9613), 1, + ACTIONS(9641), 1, sym_identifier, - STATE(1893), 1, + ACTIONS(9660), 1, + anon_sym_COLON_COLON, + STATE(1922), 1, sym_template_type, - STATE(2409), 1, + STATE(2461), 1, sym__class_declaration_item, - STATE(2483), 1, + STATE(2480), 1, sym__class_declaration, - STATE(2917), 1, + STATE(2962), 1, sym_field_declaration_list, - STATE(5586), 1, + STATE(5705), 1, sym_ms_declspec_modifier, - STATE(6627), 1, + STATE(6706), 1, sym__scope_resolution, - STATE(6995), 1, + STATE(7126), 1, sym_virtual_specifier, - STATE(7645), 1, + STATE(7712), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2793), 2, + STATE(4003), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5588), 2, + STATE(5710), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5225), 3, + STATE(5228), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [201163] = 24, + [204220] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(6018), 1, + ACTIONS(6363), 1, anon_sym_LBRACE, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(7990), 1, + ACTIONS(8022), 1, anon_sym_COLON_COLON, - ACTIONS(9636), 1, + ACTIONS(9662), 1, sym_identifier, - STATE(1816), 1, + STATE(2598), 1, sym_template_type, - STATE(1874), 1, - sym__class_declaration_item, - STATE(1875), 1, - sym__class_declaration, - STATE(5147), 1, + STATE(2614), 1, sym_field_declaration_list, - STATE(5535), 1, + STATE(2709), 1, + sym__class_declaration, + STATE(2718), 1, + sym__class_declaration_item, + STATE(5700), 1, sym_ms_declspec_modifier, - STATE(6593), 1, + STATE(6738), 1, sym__scope_resolution, - STATE(7010), 1, + STATE(7141), 1, sym_virtual_specifier, - STATE(7843), 1, + STATE(7773), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(4504), 2, + STATE(2374), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5537), 2, + STATE(5701), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5194), 3, + STATE(5271), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [201244] = 24, + [204301] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(6540), 1, - anon_sym_COLON, - ACTIONS(7520), 1, + ACTIONS(6363), 1, anon_sym_LBRACE, - ACTIONS(9578), 1, + ACTIONS(6528), 1, + anon_sym_COLON, + ACTIONS(8022), 1, anon_sym_COLON_COLON, - ACTIONS(9638), 1, + ACTIONS(9662), 1, sym_identifier, - STATE(3681), 1, + STATE(2598), 1, sym_template_type, - STATE(3943), 1, + STATE(2614), 1, sym_field_declaration_list, - STATE(4082), 1, - sym__class_declaration, - STATE(4104), 1, + STATE(2718), 1, sym__class_declaration_item, - STATE(5573), 1, + STATE(2723), 1, + sym__class_declaration, + STATE(5700), 1, sym_ms_declspec_modifier, - STATE(6634), 1, + STATE(6738), 1, sym__scope_resolution, - STATE(6934), 1, + STATE(7141), 1, sym_virtual_specifier, - STATE(7796), 1, + STATE(7773), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(3127), 2, + STATE(2374), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5574), 2, + STATE(5701), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5220), 3, + STATE(5271), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [201325] = 24, + [204382] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(6540), 1, - anon_sym_COLON, - ACTIONS(7520), 1, + ACTIONS(6363), 1, anon_sym_LBRACE, - ACTIONS(9578), 1, + ACTIONS(6528), 1, + anon_sym_COLON, + ACTIONS(8022), 1, anon_sym_COLON_COLON, - ACTIONS(9638), 1, + ACTIONS(9662), 1, sym_identifier, - STATE(3681), 1, + STATE(2598), 1, sym_template_type, - STATE(3943), 1, + STATE(2614), 1, sym_field_declaration_list, - STATE(4097), 1, + STATE(2683), 1, sym__class_declaration, - STATE(4104), 1, + STATE(2718), 1, sym__class_declaration_item, - STATE(5573), 1, + STATE(5700), 1, sym_ms_declspec_modifier, - STATE(6634), 1, + STATE(6738), 1, sym__scope_resolution, - STATE(6934), 1, + STATE(7141), 1, sym_virtual_specifier, - STATE(7796), 1, + STATE(7773), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(3127), 2, + STATE(2374), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5574), 2, + STATE(5701), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5220), 3, + STATE(5271), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [201406] = 24, + [204463] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2457), 1, + anon_sym_LBRACE, + ACTIONS(7451), 1, + anon_sym_LPAREN2, + STATE(1948), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3409), 1, + sym_argument_list, + STATE(3411), 1, + sym_initializer_list, + ACTIONS(5515), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5923), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5517), 20, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym___extension__, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + [204514] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(5501), 1, + ACTIONS(6363), 1, anon_sym_LBRACE, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(9384), 1, + ACTIONS(9612), 1, anon_sym_COLON_COLON, - ACTIONS(9640), 1, + ACTIONS(9664), 1, sym_identifier, - STATE(1945), 1, + STATE(2598), 1, sym_template_type, - STATE(2201), 1, + STATE(2614), 1, sym_field_declaration_list, - STATE(2294), 1, + STATE(2709), 1, sym__class_declaration, - STATE(2299), 1, + STATE(2718), 1, sym__class_declaration_item, - STATE(5597), 1, + STATE(5640), 1, sym_ms_declspec_modifier, - STATE(6580), 1, + STATE(6694), 1, sym__scope_resolution, - STATE(7013), 1, + STATE(7141), 1, sym_virtual_specifier, - STATE(7856), 1, + STATE(7773), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(1728), 2, + STATE(2374), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5598), 2, + STATE(5642), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5156), 3, + STATE(5289), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [201487] = 24, + [204595] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(1878), 1, + sym_attribute_specifier, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(6159), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(6157), 25, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + sym_auto, + anon_sym_decltype, + [204638] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(1883), 1, + sym_attribute_specifier, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(6102), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(6100), 25, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + sym_auto, + anon_sym_decltype, + [204681] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(6018), 1, + ACTIONS(6363), 1, anon_sym_LBRACE, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(7990), 1, + ACTIONS(9612), 1, anon_sym_COLON_COLON, - ACTIONS(9636), 1, + ACTIONS(9664), 1, sym_identifier, - STATE(1816), 1, + STATE(2598), 1, sym_template_type, - STATE(1874), 1, + STATE(2614), 1, + sym_field_declaration_list, + STATE(2718), 1, sym__class_declaration_item, - STATE(1876), 1, + STATE(2723), 1, sym__class_declaration, - STATE(5147), 1, - sym_field_declaration_list, - STATE(5535), 1, + STATE(5640), 1, sym_ms_declspec_modifier, - STATE(6593), 1, + STATE(6694), 1, sym__scope_resolution, - STATE(7010), 1, + STATE(7141), 1, sym_virtual_specifier, - STATE(7843), 1, + STATE(7773), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(4504), 2, + STATE(2374), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5537), 2, + STATE(5642), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5194), 3, + STATE(5289), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [201568] = 24, + [204762] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(5501), 1, + ACTIONS(6363), 1, anon_sym_LBRACE, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(9384), 1, + ACTIONS(9612), 1, anon_sym_COLON_COLON, - ACTIONS(9640), 1, + ACTIONS(9664), 1, sym_identifier, - STATE(1945), 1, + STATE(2598), 1, sym_template_type, - STATE(2201), 1, + STATE(2614), 1, sym_field_declaration_list, - STATE(2299), 1, - sym__class_declaration_item, - STATE(2302), 1, + STATE(2683), 1, sym__class_declaration, - STATE(5597), 1, + STATE(2718), 1, + sym__class_declaration_item, + STATE(5640), 1, sym_ms_declspec_modifier, - STATE(6580), 1, + STATE(6694), 1, sym__scope_resolution, - STATE(7013), 1, + STATE(7141), 1, sym_virtual_specifier, - STATE(7856), 1, + STATE(7773), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(1728), 2, + STATE(2374), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5598), 2, + STATE(5642), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5156), 3, + STATE(5289), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [201649] = 24, + [204843] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5220), 1, - anon_sym_COLON_COLON, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(6542), 1, + ACTIONS(6795), 1, anon_sym_LBRACE, - ACTIONS(9613), 1, + ACTIONS(9459), 1, + anon_sym_COLON_COLON, + ACTIONS(9666), 1, sym_identifier, - STATE(1893), 1, + STATE(2856), 1, sym_template_type, - STATE(2409), 1, - sym__class_declaration_item, - STATE(2522), 1, - sym__class_declaration, - STATE(2917), 1, + STATE(3013), 1, sym_field_declaration_list, - STATE(5586), 1, + STATE(3531), 1, + sym__class_declaration, + STATE(3532), 1, + sym__class_declaration_item, + STATE(5587), 1, sym_ms_declspec_modifier, - STATE(6627), 1, + STATE(6708), 1, sym__scope_resolution, - STATE(6995), 1, + STATE(7182), 1, sym_virtual_specifier, - STATE(7645), 1, + STATE(7894), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2434), 2, + STATE(2608), 2, sym__class_name, sym_qualified_type_identifier, STATE(5588), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5225), 3, + STATE(5234), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [201730] = 24, + [204924] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(5501), 1, - anon_sym_LBRACE, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(9384), 1, + ACTIONS(6795), 1, + anon_sym_LBRACE, + ACTIONS(9459), 1, anon_sym_COLON_COLON, - ACTIONS(9640), 1, + ACTIONS(9666), 1, sym_identifier, - STATE(1945), 1, + STATE(2856), 1, sym_template_type, - STATE(2201), 1, + STATE(3013), 1, sym_field_declaration_list, - STATE(2299), 1, + STATE(3532), 1, sym__class_declaration_item, - STATE(2303), 1, + STATE(3533), 1, sym__class_declaration, - STATE(5597), 1, + STATE(5587), 1, sym_ms_declspec_modifier, - STATE(6580), 1, + STATE(6708), 1, sym__scope_resolution, - STATE(7013), 1, + STATE(7182), 1, sym_virtual_specifier, - STATE(7856), 1, + STATE(7894), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(1728), 2, + STATE(2608), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5598), 2, + STATE(5588), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5156), 3, + STATE(5234), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [201811] = 24, + [205005] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(1897), 1, + sym_attribute_specifier, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(6208), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(6206), 25, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + sym_auto, + anon_sym_decltype, + [205048] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(1900), 1, + sym_attribute_specifier, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(6212), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(6210), 25, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + sym_auto, + anon_sym_decltype, + [205091] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(8055), 1, - anon_sym_COLON_COLON, - ACTIONS(8615), 1, + ACTIONS(6795), 1, anon_sym_LBRACE, - ACTIONS(9623), 1, + ACTIONS(9459), 1, + anon_sym_COLON_COLON, + ACTIONS(9666), 1, sym_identifier, - STATE(1893), 1, + STATE(2856), 1, sym_template_type, - STATE(4423), 1, + STATE(3013), 1, sym_field_declaration_list, - STATE(4653), 1, + STATE(3532), 1, sym__class_declaration_item, - STATE(4683), 1, + STATE(3534), 1, sym__class_declaration, - STATE(5583), 1, + STATE(5587), 1, sym_ms_declspec_modifier, - STATE(6592), 1, + STATE(6708), 1, sym__scope_resolution, - STATE(6965), 1, + STATE(7182), 1, sym_virtual_specifier, - STATE(7777), 1, + STATE(7894), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(4218), 2, + STATE(2608), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5584), 2, + STATE(5588), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5176), 3, + STATE(5234), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [201892] = 21, + [205172] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7065), 1, - anon_sym___asm, - ACTIONS(7072), 1, - anon_sym_noexcept, - ACTIONS(7074), 1, - anon_sym_throw, - ACTIONS(7147), 1, + STATE(1908), 1, + sym_attribute_specifier, + ACTIONS(43), 2, anon_sym___attribute__, - ACTIONS(7549), 1, - anon_sym_DASH_GT, - ACTIONS(7551), 1, - anon_sym_requires, - ACTIONS(9193), 1, - anon_sym_LBRACK, - STATE(6175), 1, - sym__function_attributes_end, - STATE(6207), 1, - sym_trailing_return_type, - STATE(6766), 1, - sym_gnu_asm_expression, - ACTIONS(7063), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7335), 2, - anon_sym_final, - anon_sym_override, - STATE(5384), 2, + anon_sym___attribute, + ACTIONS(6106), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(6104), 25, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + sym_auto, + anon_sym_decltype, + [205215] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(1909), 1, sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5458), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6012), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5336), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9182), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(6110), 3, anon_sym_LPAREN2, - anon_sym_GT2, - [201967] = 24, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(6108), 25, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + sym_auto, + anon_sym_decltype, + [205258] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5220), 1, - anon_sym_COLON_COLON, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(6542), 1, + ACTIONS(8028), 1, + anon_sym_COLON_COLON, + ACTIONS(8630), 1, anon_sym_LBRACE, - ACTIONS(9613), 1, + ACTIONS(9668), 1, sym_identifier, - STATE(1893), 1, + STATE(1922), 1, sym_template_type, - STATE(2409), 1, + STATE(4635), 1, + sym_field_declaration_list, + STATE(4678), 1, sym__class_declaration_item, - STATE(2522), 1, + STATE(4757), 1, sym__class_declaration, - STATE(2917), 1, - sym_field_declaration_list, - STATE(5586), 1, + STATE(5651), 1, sym_ms_declspec_modifier, - STATE(6627), 1, + STATE(6719), 1, sym__scope_resolution, - STATE(6995), 1, + STATE(7213), 1, sym_virtual_specifier, - STATE(7645), 1, + STATE(7996), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2778), 2, + STATE(4270), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5588), 2, + STATE(5652), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5225), 3, + STATE(5283), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [202048] = 24, + [205339] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5220), 1, - anon_sym_COLON_COLON, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(6542), 1, + ACTIONS(8028), 1, + anon_sym_COLON_COLON, + ACTIONS(8630), 1, anon_sym_LBRACE, - ACTIONS(9613), 1, + ACTIONS(9668), 1, sym_identifier, - STATE(1893), 1, + STATE(1922), 1, sym_template_type, - STATE(2409), 1, + STATE(4635), 1, + sym_field_declaration_list, + STATE(4678), 1, sym__class_declaration_item, - STATE(2483), 1, + STATE(4721), 1, sym__class_declaration, - STATE(2917), 1, - sym_field_declaration_list, - STATE(5586), 1, + STATE(5651), 1, sym_ms_declspec_modifier, - STATE(6627), 1, + STATE(6719), 1, sym__scope_resolution, - STATE(6995), 1, + STATE(7213), 1, sym_virtual_specifier, - STATE(7645), 1, + STATE(7996), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2805), 2, + STATE(4270), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5588), 2, + STATE(5652), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5225), 3, + STATE(5283), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [202129] = 24, + [205420] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(1905), 1, + sym_attribute_specifier, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(6151), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(6149), 25, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + sym_auto, + anon_sym_decltype, + [205463] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(6018), 1, - anon_sym_LBRACE, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(9424), 1, + ACTIONS(8028), 1, anon_sym_COLON_COLON, - ACTIONS(9642), 1, + ACTIONS(8630), 1, + anon_sym_LBRACE, + ACTIONS(9668), 1, sym_identifier, - STATE(1816), 1, + STATE(1922), 1, sym_template_type, - STATE(1873), 1, - sym__class_declaration, - STATE(1874), 1, - sym__class_declaration_item, - STATE(2336), 1, + STATE(4635), 1, sym_field_declaration_list, - STATE(5607), 1, + STATE(4678), 1, + sym__class_declaration_item, + STATE(4747), 1, + sym__class_declaration, + STATE(5651), 1, sym_ms_declspec_modifier, - STATE(6626), 1, + STATE(6719), 1, sym__scope_resolution, - STATE(6997), 1, + STATE(7213), 1, sym_virtual_specifier, - STATE(7837), 1, + STATE(7996), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2107), 2, + STATE(4270), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5608), 2, + STATE(5652), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5232), 3, + STATE(5283), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [202210] = 24, + [205544] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(1875), 1, + sym_attribute_specifier, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(6163), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(6161), 25, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + sym_auto, + anon_sym_decltype, + [205587] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(1872), 1, + sym_attribute_specifier, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(6167), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(6165), 25, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + sym_auto, + anon_sym_decltype, + [205630] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(1873), 1, + sym_attribute_specifier, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(6171), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(6169), 25, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + sym_auto, + anon_sym_decltype, + [205673] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(1858), 1, + sym_attribute_specifier, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(6216), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(6214), 25, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + sym_auto, + anon_sym_decltype, + [205716] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(1877), 1, + sym_attribute_specifier, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(6155), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(6153), 25, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + sym_auto, + anon_sym_decltype, + [205759] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(6362), 1, - anon_sym_LBRACE, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(9406), 1, + ACTIONS(6588), 1, + anon_sym_LBRACE, + ACTIONS(9498), 1, anon_sym_COLON_COLON, - ACTIONS(9644), 1, + ACTIONS(9670), 1, sym_identifier, - STATE(2567), 1, + STATE(2684), 1, sym_template_type, - STATE(2618), 1, + STATE(2885), 1, sym_field_declaration_list, - STATE(2672), 1, + STATE(3196), 1, sym__class_declaration, - STATE(2673), 1, + STATE(3197), 1, sym__class_declaration_item, - STATE(5509), 1, + STATE(5609), 1, sym_ms_declspec_modifier, - STATE(6594), 1, + STATE(6728), 1, sym__scope_resolution, - STATE(6946), 1, + STATE(7042), 1, sym_virtual_specifier, - STATE(7567), 1, + STATE(8040), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2328), 2, + STATE(2467), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5510), 2, + STATE(5610), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5163), 3, + STATE(5243), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [202291] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7065), 1, - anon_sym___asm, - ACTIONS(7072), 1, - anon_sym_noexcept, - ACTIONS(7074), 1, - anon_sym_throw, - ACTIONS(7147), 1, - anon_sym___attribute__, - ACTIONS(7549), 1, - anon_sym_DASH_GT, - ACTIONS(7551), 1, - anon_sym_requires, - ACTIONS(9355), 1, - anon_sym_LBRACK, - STATE(6177), 1, - sym__function_attributes_end, - STATE(6229), 1, - sym_trailing_return_type, - STATE(6766), 1, - sym_gnu_asm_expression, - ACTIONS(7063), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7335), 2, - anon_sym_final, - anon_sym_override, - STATE(5384), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5458), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6032), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5343), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9344), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_GT2, - [202366] = 24, + [205840] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(8081), 1, - anon_sym_COLON_COLON, - ACTIONS(8615), 1, + ACTIONS(6588), 1, anon_sym_LBRACE, - ACTIONS(9615), 1, + ACTIONS(9498), 1, + anon_sym_COLON_COLON, + ACTIONS(9670), 1, sym_identifier, - STATE(1893), 1, + STATE(2684), 1, sym_template_type, - STATE(4423), 1, + STATE(2885), 1, sym_field_declaration_list, - STATE(4653), 1, + STATE(3197), 1, sym__class_declaration_item, - STATE(4683), 1, + STATE(3204), 1, sym__class_declaration, - STATE(5495), 1, + STATE(5609), 1, sym_ms_declspec_modifier, - STATE(6615), 1, + STATE(6728), 1, sym__scope_resolution, - STATE(6965), 1, + STATE(7042), 1, sym_virtual_specifier, - STATE(7777), 1, + STATE(8040), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(4218), 2, + STATE(2467), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5496), 2, + STATE(5610), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5164), 3, + STATE(5243), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [202447] = 24, + [205921] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(6362), 1, - anon_sym_LBRACE, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(9406), 1, + ACTIONS(6588), 1, + anon_sym_LBRACE, + ACTIONS(9498), 1, anon_sym_COLON_COLON, - ACTIONS(9644), 1, + ACTIONS(9670), 1, sym_identifier, - STATE(2567), 1, + STATE(2684), 1, sym_template_type, - STATE(2618), 1, + STATE(2885), 1, sym_field_declaration_list, - STATE(2673), 1, + STATE(3197), 1, sym__class_declaration_item, - STATE(2675), 1, + STATE(3206), 1, sym__class_declaration, - STATE(5509), 1, + STATE(5609), 1, sym_ms_declspec_modifier, - STATE(6594), 1, + STATE(6728), 1, sym__scope_resolution, - STATE(6946), 1, + STATE(7042), 1, sym_virtual_specifier, - STATE(7567), 1, + STATE(8040), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2328), 2, + STATE(2467), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5510), 2, + STATE(5610), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5163), 3, + STATE(5243), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [202528] = 24, + [206002] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(6362), 1, - anon_sym_LBRACE, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(9406), 1, + ACTIONS(6530), 1, + anon_sym_LBRACE, + ACTIONS(8028), 1, anon_sym_COLON_COLON, - ACTIONS(9644), 1, + ACTIONS(9668), 1, sym_identifier, - STATE(2567), 1, + STATE(1922), 1, sym_template_type, - STATE(2618), 1, - sym_field_declaration_list, - STATE(2673), 1, - sym__class_declaration_item, - STATE(2676), 1, + STATE(2459), 1, sym__class_declaration, - STATE(5509), 1, + STATE(2461), 1, + sym__class_declaration_item, + STATE(3663), 1, + sym_field_declaration_list, + STATE(5685), 1, sym_ms_declspec_modifier, - STATE(6594), 1, + STATE(6719), 1, sym__scope_resolution, - STATE(6946), 1, + STATE(7228), 1, sym_virtual_specifier, - STATE(7567), 1, + STATE(8009), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2328), 2, + STATE(3041), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5510), 2, + STATE(5686), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5163), 3, + STATE(5236), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [202609] = 24, + [206083] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(6018), 1, - anon_sym_LBRACE, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(9424), 1, + ACTIONS(6530), 1, + anon_sym_LBRACE, + ACTIONS(8028), 1, anon_sym_COLON_COLON, - ACTIONS(9642), 1, + ACTIONS(9668), 1, sym_identifier, - STATE(1816), 1, + STATE(1922), 1, sym_template_type, - STATE(1874), 1, + STATE(2461), 1, sym__class_declaration_item, - STATE(1875), 1, + STATE(2472), 1, sym__class_declaration, - STATE(2336), 1, + STATE(3663), 1, sym_field_declaration_list, - STATE(5607), 1, + STATE(5685), 1, sym_ms_declspec_modifier, - STATE(6626), 1, + STATE(6719), 1, sym__scope_resolution, - STATE(6997), 1, + STATE(7228), 1, sym_virtual_specifier, - STATE(7837), 1, + STATE(8009), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2107), 2, + STATE(3041), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5608), 2, + STATE(5686), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5232), 3, + STATE(5236), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [202690] = 24, + [206164] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5220), 1, - anon_sym_COLON_COLON, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(6542), 1, + ACTIONS(6530), 1, anon_sym_LBRACE, - ACTIONS(9613), 1, + ACTIONS(8028), 1, + anon_sym_COLON_COLON, + ACTIONS(9668), 1, sym_identifier, - STATE(1893), 1, + STATE(1922), 1, sym_template_type, - STATE(2409), 1, + STATE(2461), 1, sym__class_declaration_item, - STATE(2522), 1, + STATE(2480), 1, sym__class_declaration, - STATE(2917), 1, + STATE(3663), 1, sym_field_declaration_list, - STATE(5586), 1, + STATE(5685), 1, sym_ms_declspec_modifier, - STATE(6627), 1, + STATE(6719), 1, sym__scope_resolution, - STATE(6995), 1, + STATE(7228), 1, sym_virtual_specifier, - STATE(7645), 1, + STATE(8009), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2842), 2, + STATE(3041), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5588), 2, + STATE(5686), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5225), 3, + STATE(5236), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [202771] = 24, + [206245] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(6499), 1, - anon_sym_LBRACE, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(9503), 1, + ACTIONS(8000), 1, anon_sym_COLON_COLON, - ACTIONS(9646), 1, + ACTIONS(8906), 1, + anon_sym_LBRACE, + ACTIONS(9672), 1, sym_identifier, - STATE(2630), 1, + STATE(4461), 1, sym_template_type, - STATE(2824), 1, + STATE(4950), 1, sym_field_declaration_list, - STATE(2986), 1, + STATE(4981), 1, sym__class_declaration, - STATE(2987), 1, + STATE(4982), 1, sym__class_declaration_item, - STATE(5562), 1, + STATE(5633), 1, sym_ms_declspec_modifier, - STATE(6633), 1, + STATE(6731), 1, sym__scope_resolution, - STATE(7126), 1, + STATE(7051), 1, sym_virtual_specifier, - STATE(7850), 1, + STATE(7920), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2399), 2, + STATE(4449), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5565), 2, + STATE(5634), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5157), 3, + STATE(5250), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [202852] = 24, + [206326] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(6018), 1, - anon_sym_LBRACE, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(9424), 1, + ACTIONS(8000), 1, anon_sym_COLON_COLON, - ACTIONS(9642), 1, + ACTIONS(8906), 1, + anon_sym_LBRACE, + ACTIONS(9672), 1, sym_identifier, - STATE(1816), 1, + STATE(4461), 1, sym_template_type, - STATE(1874), 1, + STATE(4950), 1, + sym_field_declaration_list, + STATE(4982), 1, sym__class_declaration_item, - STATE(1876), 1, + STATE(4983), 1, sym__class_declaration, - STATE(2336), 1, - sym_field_declaration_list, - STATE(5607), 1, + STATE(5633), 1, sym_ms_declspec_modifier, - STATE(6626), 1, + STATE(6731), 1, sym__scope_resolution, - STATE(6997), 1, + STATE(7051), 1, sym_virtual_specifier, - STATE(7837), 1, + STATE(7920), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2107), 2, + STATE(4449), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5608), 2, + STATE(5634), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5232), 3, + STATE(5250), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [202933] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(1840), 1, - sym_attribute_specifier, - ACTIONS(43), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(6153), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - ACTIONS(6151), 25, - anon_sym_AMP, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - sym_auto, - anon_sym_decltype, - [202976] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(1850), 1, - sym_attribute_specifier, - ACTIONS(43), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(6157), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - ACTIONS(6155), 25, - anon_sym_AMP, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - sym_auto, - anon_sym_decltype, - [203019] = 24, + [206407] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(6692), 1, - anon_sym_LBRACE, - ACTIONS(9440), 1, + ACTIONS(8000), 1, anon_sym_COLON_COLON, - ACTIONS(9632), 1, + ACTIONS(8906), 1, + anon_sym_LBRACE, + ACTIONS(9672), 1, sym_identifier, - STATE(2669), 1, + STATE(4461), 1, sym_template_type, - STATE(2853), 1, + STATE(4950), 1, sym_field_declaration_list, - STATE(3121), 1, + STATE(4982), 1, sym__class_declaration_item, - STATE(3124), 1, + STATE(4984), 1, sym__class_declaration, - STATE(5529), 1, + STATE(5633), 1, sym_ms_declspec_modifier, - STATE(6620), 1, + STATE(6731), 1, sym__scope_resolution, - STATE(6970), 1, + STATE(7051), 1, sym_virtual_specifier, - STATE(7867), 1, + STATE(7920), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2503), 2, + STATE(4449), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5530), 2, + STATE(5634), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5222), 3, + STATE(5250), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [203100] = 24, + [206488] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5220), 1, - anon_sym_COLON_COLON, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(6542), 1, + ACTIONS(7543), 1, anon_sym_LBRACE, - ACTIONS(9613), 1, + ACTIONS(9412), 1, + anon_sym_COLON_COLON, + ACTIONS(9674), 1, sym_identifier, - STATE(1893), 1, + STATE(3638), 1, sym_template_type, - STATE(2409), 1, - sym__class_declaration_item, - STATE(2440), 1, - sym__class_declaration, - STATE(2917), 1, + STATE(4009), 1, sym_field_declaration_list, - STATE(5586), 1, + STATE(4131), 1, + sym__class_declaration, + STATE(4136), 1, + sym__class_declaration_item, + STATE(5681), 1, sym_ms_declspec_modifier, - STATE(6627), 1, + STATE(6732), 1, sym__scope_resolution, - STATE(6995), 1, + STATE(7061), 1, sym_virtual_specifier, - STATE(7645), 1, + STATE(7717), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2842), 2, + STATE(3210), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5588), 2, + STATE(5696), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5225), 3, + STATE(5290), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [203181] = 24, + [206569] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5220), 1, - anon_sym_COLON_COLON, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(6542), 1, + ACTIONS(7543), 1, anon_sym_LBRACE, - ACTIONS(9613), 1, + ACTIONS(9412), 1, + anon_sym_COLON_COLON, + ACTIONS(9674), 1, sym_identifier, - STATE(1893), 1, + STATE(3638), 1, sym_template_type, - STATE(2409), 1, + STATE(4009), 1, + sym_field_declaration_list, + STATE(4136), 1, sym__class_declaration_item, - STATE(2483), 1, + STATE(4138), 1, sym__class_declaration, - STATE(2917), 1, - sym_field_declaration_list, - STATE(5586), 1, + STATE(5681), 1, sym_ms_declspec_modifier, - STATE(6627), 1, + STATE(6732), 1, sym__scope_resolution, - STATE(6995), 1, + STATE(7061), 1, sym_virtual_specifier, - STATE(7645), 1, + STATE(7717), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2842), 2, + STATE(3210), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5588), 2, + STATE(5696), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5225), 3, + STATE(5290), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [203262] = 24, + [206650] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(6499), 1, - anon_sym_LBRACE, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(9503), 1, + ACTIONS(7543), 1, + anon_sym_LBRACE, + ACTIONS(9412), 1, anon_sym_COLON_COLON, - ACTIONS(9646), 1, + ACTIONS(9674), 1, sym_identifier, - STATE(2630), 1, + STATE(3638), 1, sym_template_type, - STATE(2824), 1, + STATE(4009), 1, sym_field_declaration_list, - STATE(2987), 1, + STATE(4136), 1, sym__class_declaration_item, - STATE(2990), 1, + STATE(4139), 1, sym__class_declaration, - STATE(5562), 1, + STATE(5681), 1, sym_ms_declspec_modifier, - STATE(6633), 1, + STATE(6732), 1, sym__scope_resolution, - STATE(7126), 1, + STATE(7061), 1, sym_virtual_specifier, - STATE(7850), 1, + STATE(7717), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2399), 2, + STATE(3210), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5565), 2, + STATE(5696), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5157), 3, + STATE(5290), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [203343] = 24, + [206731] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(6499), 1, - anon_sym_LBRACE, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(9503), 1, + ACTIONS(8074), 1, anon_sym_COLON_COLON, - ACTIONS(9646), 1, + ACTIONS(8630), 1, + anon_sym_LBRACE, + ACTIONS(9647), 1, sym_identifier, - STATE(2630), 1, + STATE(1922), 1, sym_template_type, - STATE(2824), 1, + STATE(4635), 1, sym_field_declaration_list, - STATE(2987), 1, + STATE(4678), 1, sym__class_declaration_item, - STATE(2989), 1, + STATE(4757), 1, sym__class_declaration, - STATE(5562), 1, + STATE(5647), 1, sym_ms_declspec_modifier, - STATE(6633), 1, + STATE(6743), 1, sym__scope_resolution, - STATE(7126), 1, + STATE(7213), 1, sym_virtual_specifier, - STATE(7850), 1, + STATE(7996), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2399), 2, + STATE(4270), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5565), 2, + STATE(5582), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5157), 3, + STATE(5277), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [203424] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(1865), 1, - sym_attribute_specifier, - ACTIONS(43), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(6119), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - ACTIONS(6117), 25, - anon_sym_AMP, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - sym_auto, - anon_sym_decltype, - [203467] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(1871), 1, - sym_attribute_specifier, - ACTIONS(43), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(6123), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - ACTIONS(6121), 25, - anon_sym_AMP, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - sym_auto, - anon_sym_decltype, - [203510] = 24, + [206812] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(6542), 1, - anon_sym_LBRACE, - ACTIONS(8081), 1, + ACTIONS(8074), 1, anon_sym_COLON_COLON, - ACTIONS(9615), 1, + ACTIONS(8630), 1, + anon_sym_LBRACE, + ACTIONS(9647), 1, sym_identifier, - STATE(1893), 1, + STATE(1922), 1, sym_template_type, - STATE(2409), 1, + STATE(4635), 1, + sym_field_declaration_list, + STATE(4678), 1, sym__class_declaration_item, - STATE(2483), 1, + STATE(4721), 1, sym__class_declaration, - STATE(3610), 1, - sym_field_declaration_list, - STATE(5629), 1, + STATE(5647), 1, sym_ms_declspec_modifier, - STATE(6615), 1, + STATE(6743), 1, sym__scope_resolution, - STATE(7084), 1, + STATE(7213), 1, sym_virtual_specifier, - STATE(7878), 1, + STATE(7996), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2988), 2, + STATE(4270), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5630), 2, + STATE(5582), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5161), 3, + STATE(5277), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [203591] = 23, + [206893] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(5501), 1, - anon_sym_LBRACE, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(9384), 1, + ACTIONS(8074), 1, anon_sym_COLON_COLON, - ACTIONS(9640), 1, + ACTIONS(8630), 1, + anon_sym_LBRACE, + ACTIONS(9647), 1, sym_identifier, - STATE(1945), 1, + STATE(1922), 1, sym_template_type, - STATE(2201), 1, + STATE(4635), 1, sym_field_declaration_list, - STATE(2268), 1, + STATE(4678), 1, sym__class_declaration_item, - STATE(5601), 1, + STATE(4747), 1, + sym__class_declaration, + STATE(5647), 1, sym_ms_declspec_modifier, - STATE(6580), 1, + STATE(6743), 1, sym__scope_resolution, - STATE(7013), 1, + STATE(7213), 1, sym_virtual_specifier, - STATE(7856), 1, + STATE(7996), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(1728), 2, + STATE(4270), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5600), 2, + STATE(5582), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5952), 3, + STATE(5277), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [203669] = 23, + [206974] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5228), 1, + anon_sym_COLON_COLON, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(6499), 1, - anon_sym_LBRACE, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(9503), 1, - anon_sym_COLON_COLON, - ACTIONS(9646), 1, + ACTIONS(6530), 1, + anon_sym_LBRACE, + ACTIONS(9641), 1, sym_identifier, - STATE(2630), 1, + STATE(1922), 1, sym_template_type, - STATE(2824), 1, - sym_field_declaration_list, - STATE(3055), 1, + STATE(2459), 1, + sym__class_declaration, + STATE(2461), 1, sym__class_declaration_item, - STATE(5571), 1, + STATE(2962), 1, + sym_field_declaration_list, + STATE(5611), 1, sym_ms_declspec_modifier, - STATE(6633), 1, + STATE(6715), 1, sym__scope_resolution, STATE(7126), 1, sym_virtual_specifier, - STATE(7850), 1, + STATE(7712), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2399), 2, + STATE(2834), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5570), 2, + STATE(5665), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5952), 3, + STATE(5268), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [203747] = 23, + [207055] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5228), 1, + anon_sym_COLON_COLON, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(6362), 1, - anon_sym_LBRACE, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(8049), 1, - anon_sym_COLON_COLON, - ACTIONS(9634), 1, + ACTIONS(6530), 1, + anon_sym_LBRACE, + ACTIONS(9641), 1, sym_identifier, - STATE(2567), 1, + STATE(1922), 1, sym_template_type, - STATE(2618), 1, - sym_field_declaration_list, - STATE(2689), 1, + STATE(2461), 1, sym__class_declaration_item, - STATE(5488), 1, + STATE(2472), 1, + sym__class_declaration, + STATE(2962), 1, + sym_field_declaration_list, + STATE(5611), 1, sym_ms_declspec_modifier, - STATE(6579), 1, + STATE(6715), 1, sym__scope_resolution, - STATE(6946), 1, + STATE(7126), 1, sym_virtual_specifier, - STATE(7567), 1, + STATE(7712), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2328), 2, + STATE(2834), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5487), 2, + STATE(5665), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5952), 3, + STATE(5268), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [203825] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(9501), 1, - sym_identifier, - ACTIONS(9503), 1, - anon_sym_COLON_COLON, - ACTIONS(9507), 1, - sym_primitive_type, - ACTIONS(9509), 1, - anon_sym_enum, - ACTIONS(9511), 1, - anon_sym_class, - ACTIONS(9513), 1, - anon_sym_struct, - ACTIONS(9515), 1, - anon_sym_union, - ACTIONS(9517), 1, - sym_auto, - ACTIONS(9519), 1, - anon_sym_decltype, - ACTIONS(9521), 1, - anon_sym_typename, - STATE(1619), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2928), 1, - sym_type_specifier, - STATE(2976), 1, - sym_decltype_auto, - STATE(2983), 1, - sym_qualified_type_identifier, - STATE(6633), 1, - sym__scope_resolution, - STATE(8601), 1, - sym_dependent_type_identifier, - STATE(2924), 2, - sym_decltype, - sym_template_type, - ACTIONS(9505), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2978), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [203899] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(9576), 1, - sym_identifier, - ACTIONS(9578), 1, - anon_sym_COLON_COLON, - ACTIONS(9582), 1, - sym_primitive_type, - ACTIONS(9584), 1, - anon_sym_enum, - ACTIONS(9586), 1, - anon_sym_class, - ACTIONS(9588), 1, - anon_sym_struct, - ACTIONS(9590), 1, - anon_sym_union, - ACTIONS(9592), 1, - sym_auto, - ACTIONS(9594), 1, - anon_sym_decltype, - ACTIONS(9596), 1, - anon_sym_typename, - STATE(1860), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1902), 1, - sym_qualified_type_identifier, - STATE(3824), 1, - sym_type_specifier, - STATE(4081), 1, - sym_decltype_auto, - STATE(6634), 1, - sym__scope_resolution, - STATE(8601), 1, - sym_dependent_type_identifier, - STATE(4024), 2, - sym_decltype, - sym_template_type, - ACTIONS(9580), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(4087), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [203973] = 23, + [207136] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5028), 1, + anon_sym_COLON_COLON, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(6542), 1, + ACTIONS(6530), 1, anon_sym_LBRACE, - ACTIONS(8081), 1, - anon_sym_COLON_COLON, - ACTIONS(9615), 1, + ACTIONS(9643), 1, sym_identifier, - STATE(1893), 1, + STATE(1922), 1, sym_template_type, - STATE(2516), 1, + STATE(2459), 1, + sym__class_declaration, + STATE(2461), 1, sym__class_declaration_item, - STATE(3610), 1, + STATE(2962), 1, sym_field_declaration_list, - STATE(5639), 1, + STATE(5711), 1, sym_ms_declspec_modifier, - STATE(6615), 1, + STATE(6746), 1, sym__scope_resolution, - STATE(7084), 1, + STATE(7126), 1, sym_virtual_specifier, - STATE(7878), 1, + STATE(7712), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2988), 2, + STATE(2440), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5638), 2, + STATE(5713), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5952), 3, + STATE(5272), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [204051] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(9438), 1, - sym_identifier, - ACTIONS(9440), 1, - anon_sym_COLON_COLON, - ACTIONS(9444), 1, - sym_primitive_type, - ACTIONS(9446), 1, - anon_sym_enum, - ACTIONS(9448), 1, - anon_sym_class, - ACTIONS(9450), 1, - anon_sym_struct, - ACTIONS(9452), 1, - anon_sym_union, - ACTIONS(9454), 1, - sym_auto, - ACTIONS(9456), 1, - anon_sym_decltype, - ACTIONS(9458), 1, - anon_sym_typename, - STATE(1625), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2834), 1, - sym_type_specifier, - STATE(3111), 1, - sym_decltype_auto, - STATE(3113), 1, - sym_qualified_type_identifier, - STATE(6620), 1, - sym__scope_resolution, - STATE(8601), 1, - sym_dependent_type_identifier, - STATE(3044), 2, - sym_decltype, - sym_template_type, - ACTIONS(9442), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3114), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [204125] = 23, + [207217] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(6362), 1, + ACTIONS(6526), 1, anon_sym_LBRACE, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(9406), 1, + ACTIONS(9580), 1, anon_sym_COLON_COLON, - ACTIONS(9644), 1, + ACTIONS(9656), 1, sym_identifier, - STATE(2567), 1, + STATE(2673), 1, sym_template_type, - STATE(2618), 1, + STATE(2809), 1, sym_field_declaration_list, - STATE(2689), 1, + STATE(3035), 1, sym__class_declaration_item, - STATE(5512), 1, + STATE(3042), 1, + sym__class_declaration, + STATE(5618), 1, sym_ms_declspec_modifier, - STATE(6594), 1, + STATE(6713), 1, sym__scope_resolution, - STATE(6946), 1, + STATE(7139), 1, sym_virtual_specifier, - STATE(7567), 1, + STATE(7762), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2328), 2, + STATE(2437), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5511), 2, + STATE(5619), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5952), 3, + STATE(5267), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [204203] = 23, + [207298] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(8081), 1, - anon_sym_COLON_COLON, - ACTIONS(8615), 1, + ACTIONS(6530), 1, anon_sym_LBRACE, - ACTIONS(9615), 1, + ACTIONS(9641), 1, sym_identifier, - STATE(1893), 1, + ACTIONS(9660), 1, + anon_sym_COLON_COLON, + STATE(1922), 1, sym_template_type, - STATE(4423), 1, - sym_field_declaration_list, - STATE(4747), 1, + STATE(2503), 1, sym__class_declaration_item, - STATE(5505), 1, + STATE(2962), 1, + sym_field_declaration_list, + STATE(5599), 1, sym_ms_declspec_modifier, - STATE(6615), 1, + STATE(6706), 1, sym__scope_resolution, - STATE(6965), 1, + STATE(7126), 1, sym_virtual_specifier, - STATE(7777), 1, + STATE(7712), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(4218), 2, + STATE(4003), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5504), 2, + STATE(5598), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5952), 3, + STATE(6055), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [204281] = 21, + [207376] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7065), 1, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7072), 1, + ACTIONS(7075), 1, anon_sym_noexcept, - ACTIONS(7074), 1, + ACTIONS(7077), 1, anon_sym_throw, - ACTIONS(7653), 1, + ACTIONS(7447), 1, + anon_sym_requires, + ACTIONS(7799), 1, anon_sym_DASH_GT, - ACTIONS(9193), 1, + ACTIONS(9382), 1, anon_sym_LBRACK, - ACTIONS(9291), 1, + ACTIONS(9518), 1, anon_sym___attribute__, - ACTIONS(9294), 1, + ACTIONS(9521), 1, anon_sym___attribute, - ACTIONS(9341), 1, - anon_sym_requires, - STATE(6123), 1, - sym__function_attributes_end, - STATE(6188), 1, + STATE(6152), 1, sym_trailing_return_type, - STATE(6766), 1, + STATE(6223), 1, + sym__function_attributes_end, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(7063), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9297), 2, + ACTIONS(7359), 2, anon_sym_final, anon_sym_override, - STATE(5384), 2, + STATE(5455), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5458), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6012), 2, + STATE(6132), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9182), 3, + ACTIONS(9371), 3, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_GT2, - STATE(5359), 3, + STATE(5428), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - [204355] = 21, + [207450] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(125), 1, - sym_auto, - ACTIONS(127), 1, - anon_sym_decltype, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(3911), 1, - sym_primitive_type, - ACTIONS(7968), 1, + ACTIONS(9410), 1, sym_identifier, - ACTIONS(7970), 1, + ACTIONS(9412), 1, anon_sym_COLON_COLON, - ACTIONS(7974), 1, - anon_sym_class, - ACTIONS(7976), 1, - anon_sym_struct, - ACTIONS(7978), 1, - anon_sym_union, - ACTIONS(9650), 1, + ACTIONS(9416), 1, + sym_primitive_type, + ACTIONS(9418), 1, anon_sym_enum, - ACTIONS(9652), 1, - anon_sym_typename, - STATE(2501), 1, - sym_decltype_auto, - STATE(2809), 1, - sym_qualified_type_identifier, - STATE(5032), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6630), 1, - sym__scope_resolution, - STATE(6917), 1, - sym_type_specifier, - STATE(8601), 1, - sym_dependent_type_identifier, - STATE(2406), 2, - sym_decltype, - sym_template_type, - ACTIONS(9648), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2523), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [204429] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(9384), 1, - anon_sym_COLON_COLON, - ACTIONS(9392), 1, + ACTIONS(9420), 1, anon_sym_class, - ACTIONS(9394), 1, + ACTIONS(9422), 1, anon_sym_struct, - ACTIONS(9396), 1, + ACTIONS(9424), 1, anon_sym_union, - ACTIONS(9398), 1, + ACTIONS(9426), 1, sym_auto, - ACTIONS(9400), 1, + ACTIONS(9428), 1, anon_sym_decltype, - ACTIONS(9481), 1, - sym_identifier, - ACTIONS(9485), 1, - sym_primitive_type, - ACTIONS(9487), 1, - anon_sym_enum, - ACTIONS(9489), 1, + ACTIONS(9430), 1, anon_sym_typename, - STATE(1594), 1, + STATE(1860), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1905), 1, - sym_type_specifier, - STATE(2273), 1, + STATE(1916), 1, sym_qualified_type_identifier, - STATE(2309), 1, + STATE(3872), 1, + sym_type_specifier, + STATE(4125), 1, sym_decltype_auto, - STATE(6580), 1, + STATE(6732), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(8569), 1, sym_dependent_type_identifier, - STATE(2174), 2, + STATE(4102), 2, sym_decltype, sym_template_type, - ACTIONS(9483), 4, + ACTIONS(9414), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2245), 7, + STATE(4108), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -464911,103 +471157,52 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [204503] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(2977), 1, - anon_sym_LPAREN2, - ACTIONS(2979), 1, - anon_sym_TILDE, - ACTIONS(5849), 1, - sym_identifier, - ACTIONS(5861), 1, - anon_sym_COLON_COLON, - ACTIONS(7089), 1, - anon_sym_LBRACK, - ACTIONS(7275), 1, - anon_sym_STAR, - ACTIONS(7277), 1, - anon_sym_AMP_AMP, - ACTIONS(7279), 1, - anon_sym_AMP, - STATE(5860), 1, - sym__scope_resolution, - STATE(5937), 1, - sym__declarator, - STATE(7536), 1, - sym_init_declarator, - STATE(8398), 1, - sym_ms_based_modifier, - STATE(8601), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(5998), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [204573] = 21, + [207524] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(9526), 1, + ACTIONS(9578), 1, sym_identifier, - ACTIONS(9528), 1, + ACTIONS(9580), 1, anon_sym_COLON_COLON, - ACTIONS(9532), 1, + ACTIONS(9584), 1, sym_primitive_type, - ACTIONS(9534), 1, + ACTIONS(9586), 1, anon_sym_enum, - ACTIONS(9536), 1, + ACTIONS(9588), 1, anon_sym_class, - ACTIONS(9538), 1, + ACTIONS(9590), 1, anon_sym_struct, - ACTIONS(9540), 1, + ACTIONS(9592), 1, anon_sym_union, - ACTIONS(9542), 1, + ACTIONS(9594), 1, sym_auto, - ACTIONS(9544), 1, + ACTIONS(9596), 1, anon_sym_decltype, - ACTIONS(9546), 1, + ACTIONS(9598), 1, anon_sym_typename, - STATE(1637), 1, + STATE(1635), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3343), 1, + STATE(2934), 1, sym_type_specifier, - STATE(3491), 1, - sym_decltype_auto, - STATE(3507), 1, + STATE(3046), 1, sym_qualified_type_identifier, - STATE(6578), 1, + STATE(3082), 1, + sym_decltype_auto, + STATE(6713), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(8569), 1, sym_dependent_type_identifier, - STATE(3329), 2, + STATE(2951), 2, sym_decltype, sym_template_type, - ACTIONS(9530), 4, + ACTIONS(9582), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3504), 7, + STATE(3085), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -465015,52 +471210,52 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [204647] = 21, + [207598] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(8019), 1, + ACTIONS(9410), 1, sym_identifier, - ACTIONS(8021), 1, + ACTIONS(9412), 1, anon_sym_COLON_COLON, - ACTIONS(8025), 1, + ACTIONS(9416), 1, sym_primitive_type, - ACTIONS(8027), 1, + ACTIONS(9418), 1, anon_sym_enum, - ACTIONS(8029), 1, + ACTIONS(9420), 1, anon_sym_class, - ACTIONS(8031), 1, + ACTIONS(9422), 1, anon_sym_struct, - ACTIONS(8033), 1, + ACTIONS(9424), 1, anon_sym_union, - ACTIONS(8035), 1, + ACTIONS(9426), 1, sym_auto, - ACTIONS(8037), 1, + ACTIONS(9428), 1, anon_sym_decltype, - ACTIONS(8039), 1, + ACTIONS(9430), 1, anon_sym_typename, - STATE(4069), 1, + STATE(1860), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4852), 1, - sym_type_specifier, - STATE(4947), 1, + STATE(1916), 1, sym_qualified_type_identifier, - STATE(4948), 1, + STATE(3895), 1, + sym_type_specifier, + STATE(4125), 1, sym_decltype_auto, - STATE(6632), 1, + STATE(6732), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(8569), 1, sym_dependent_type_identifier, - STATE(4894), 2, + STATE(4102), 2, sym_decltype, sym_template_type, - ACTIONS(8023), 4, + ACTIONS(9414), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4919), 7, + STATE(4108), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -465068,105 +471263,160 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [204721] = 21, + [207672] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, - anon_sym_template, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7071), 1, + anon_sym___asm, + ACTIONS(7075), 1, + anon_sym_noexcept, + ACTIONS(7077), 1, + anon_sym_throw, + ACTIONS(7768), 1, + anon_sym_DASH_GT, + ACTIONS(9150), 1, + anon_sym_LBRACK, + ACTIONS(9333), 1, + anon_sym___attribute__, + ACTIONS(9336), 1, + anon_sym___attribute, ACTIONS(9384), 1, - anon_sym_COLON_COLON, - ACTIONS(9392), 1, - anon_sym_class, - ACTIONS(9394), 1, - anon_sym_struct, - ACTIONS(9396), 1, - anon_sym_union, - ACTIONS(9398), 1, - sym_auto, - ACTIONS(9400), 1, + anon_sym_requires, + STATE(6257), 1, + sym__function_attributes_end, + STATE(6305), 1, + sym_trailing_return_type, + STATE(6870), 1, + sym_gnu_asm_expression, + ACTIONS(7069), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9327), 2, + anon_sym_final, + anon_sym_override, + STATE(5455), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5507), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6017), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6149), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9139), 3, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + STATE(5447), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [207746] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(9481), 1, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5495), 1, + anon_sym___declspec, + ACTIONS(6528), 1, + anon_sym_COLON, + ACTIONS(6795), 1, + anon_sym_LBRACE, + ACTIONS(9459), 1, + anon_sym_COLON_COLON, + ACTIONS(9666), 1, sym_identifier, - ACTIONS(9485), 1, - sym_primitive_type, - ACTIONS(9487), 1, - anon_sym_enum, - ACTIONS(9489), 1, - anon_sym_typename, - STATE(1594), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2172), 1, - sym_type_specifier, - STATE(2273), 1, - sym_qualified_type_identifier, - STATE(2309), 1, - sym_decltype_auto, - STATE(6580), 1, + STATE(2856), 1, + sym_template_type, + STATE(3013), 1, + sym_field_declaration_list, + STATE(3577), 1, + sym__class_declaration_item, + STATE(5596), 1, + sym_ms_declspec_modifier, + STATE(6708), 1, sym__scope_resolution, - STATE(8601), 1, - sym_dependent_type_identifier, - STATE(2174), 2, + STATE(7182), 1, + sym_virtual_specifier, + STATE(7894), 1, + sym_base_class_clause, + ACTIONS(5489), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(5497), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(5567), 2, + anon_sym_final, + anon_sym_override, + STATE(2608), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5590), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8569), 2, sym_decltype, - sym_template_type, - ACTIONS(9483), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2245), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [204795] = 21, + sym_dependent_type_identifier, + STATE(6055), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + [207824] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(125), 1, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1844), 1, sym_auto, - ACTIONS(127), 1, + ACTIONS(1846), 1, anon_sym_decltype, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(3899), 1, + ACTIONS(7986), 1, + sym_primitive_type, + ACTIONS(9435), 1, sym_identifier, - ACTIONS(3907), 1, + ACTIONS(9437), 1, anon_sym_COLON_COLON, - ACTIONS(3911), 1, - sym_primitive_type, - ACTIONS(3913), 1, + ACTIONS(9441), 1, anon_sym_enum, - ACTIONS(3915), 1, + ACTIONS(9443), 1, anon_sym_class, - ACTIONS(3917), 1, + ACTIONS(9445), 1, anon_sym_struct, - ACTIONS(3919), 1, + ACTIONS(9447), 1, anon_sym_union, - ACTIONS(3921), 1, + ACTIONS(9449), 1, anon_sym_typename, - STATE(2393), 1, - sym_type_specifier, - STATE(2501), 1, - sym_decltype_auto, - STATE(2674), 1, + STATE(1887), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2809), 1, + STATE(1888), 1, + sym_decltype_auto, + STATE(1916), 1, sym_qualified_type_identifier, - STATE(6599), 1, + STATE(4010), 1, + sym_type_specifier, + STATE(6699), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(8569), 1, sym_dependent_type_identifier, - STATE(2406), 2, + STATE(1782), 2, sym_decltype, sym_template_type, - ACTIONS(3909), 4, + ACTIONS(9439), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2523), 7, + STATE(1890), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -465174,107 +471424,107 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [204869] = 23, + [207898] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5020), 1, - anon_sym_COLON_COLON, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(6542), 1, + ACTIONS(6530), 1, anon_sym_LBRACE, - ACTIONS(9621), 1, + ACTIONS(8028), 1, + anon_sym_COLON_COLON, + ACTIONS(9668), 1, sym_identifier, - STATE(1893), 1, + STATE(1922), 1, sym_template_type, - STATE(2516), 1, + STATE(2503), 1, sym__class_declaration_item, - STATE(2917), 1, + STATE(3663), 1, sym_field_declaration_list, - STATE(5564), 1, + STATE(5691), 1, sym_ms_declspec_modifier, - STATE(6606), 1, + STATE(6719), 1, sym__scope_resolution, - STATE(6995), 1, + STATE(7228), 1, sym_virtual_specifier, - STATE(7645), 1, + STATE(8009), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2434), 2, + STATE(3041), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5563), 2, + STATE(5690), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5952), 3, + STATE(6055), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [204947] = 21, + [207976] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1846), 1, - sym_auto, - ACTIONS(1848), 1, - anon_sym_decltype, - ACTIONS(7961), 1, - sym_primitive_type, - ACTIONS(9422), 1, + ACTIONS(9457), 1, sym_identifier, - ACTIONS(9424), 1, + ACTIONS(9459), 1, anon_sym_COLON_COLON, - ACTIONS(9428), 1, + ACTIONS(9463), 1, + sym_primitive_type, + ACTIONS(9465), 1, anon_sym_enum, - ACTIONS(9430), 1, + ACTIONS(9467), 1, anon_sym_class, - ACTIONS(9432), 1, + ACTIONS(9469), 1, anon_sym_struct, - ACTIONS(9434), 1, + ACTIONS(9471), 1, anon_sym_union, - ACTIONS(9436), 1, + ACTIONS(9473), 1, + sym_auto, + ACTIONS(9475), 1, + anon_sym_decltype, + ACTIONS(9477), 1, anon_sym_typename, - STATE(1859), 1, - sym_decltype_auto, - STATE(1869), 1, + STATE(1671), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1902), 1, - sym_qualified_type_identifier, - STATE(4059), 1, + STATE(2981), 1, sym_type_specifier, - STATE(6626), 1, + STATE(3511), 1, + sym_decltype_auto, + STATE(3525), 1, + sym_qualified_type_identifier, + STATE(6708), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(8569), 1, sym_dependent_type_identifier, - STATE(1713), 2, + STATE(3266), 2, sym_decltype, sym_template_type, - ACTIONS(9426), 4, + ACTIONS(9461), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1879), 7, + STATE(3519), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -465282,52 +471532,52 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [205021] = 21, + [208050] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(9438), 1, + ACTIONS(9528), 1, sym_identifier, - ACTIONS(9440), 1, + ACTIONS(9530), 1, anon_sym_COLON_COLON, - ACTIONS(9444), 1, + ACTIONS(9534), 1, sym_primitive_type, - ACTIONS(9446), 1, + ACTIONS(9536), 1, anon_sym_enum, - ACTIONS(9448), 1, + ACTIONS(9538), 1, anon_sym_class, - ACTIONS(9450), 1, + ACTIONS(9540), 1, anon_sym_struct, - ACTIONS(9452), 1, + ACTIONS(9542), 1, anon_sym_union, - ACTIONS(9454), 1, + ACTIONS(9544), 1, sym_auto, - ACTIONS(9456), 1, + ACTIONS(9546), 1, anon_sym_decltype, - ACTIONS(9458), 1, + ACTIONS(9548), 1, anon_sym_typename, - STATE(1625), 1, + STATE(1612), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2995), 1, + STATE(1924), 1, sym_type_specifier, - STATE(3111), 1, + STATE(2306), 1, sym_decltype_auto, - STATE(3113), 1, + STATE(2335), 1, sym_qualified_type_identifier, - STATE(6620), 1, + STATE(6695), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(8569), 1, sym_dependent_type_identifier, - STATE(3044), 2, + STATE(2242), 2, sym_decltype, sym_template_type, - ACTIONS(9442), 4, + ACTIONS(9532), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3114), 7, + STATE(2310), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -465335,107 +471585,107 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [205095] = 23, + [208124] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(6540), 1, + ACTIONS(6035), 1, + anon_sym_LBRACE, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(8055), 1, + ACTIONS(9437), 1, anon_sym_COLON_COLON, - ACTIONS(8615), 1, - anon_sym_LBRACE, - ACTIONS(9623), 1, + ACTIONS(9654), 1, sym_identifier, - STATE(1893), 1, + STATE(1784), 1, sym_template_type, - STATE(4423), 1, - sym_field_declaration_list, - STATE(4747), 1, + STATE(1886), 1, sym__class_declaration_item, - STATE(5590), 1, + STATE(2382), 1, + sym_field_declaration_list, + STATE(5591), 1, sym_ms_declspec_modifier, - STATE(6592), 1, + STATE(6699), 1, sym__scope_resolution, - STATE(6965), 1, + STATE(7084), 1, sym_virtual_specifier, - STATE(7777), 1, + STATE(7872), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(4218), 2, + STATE(2031), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5589), 2, + STATE(5586), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5952), 3, + STATE(6055), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [205173] = 21, + [208202] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(3134), 1, + ACTIONS(3146), 1, anon_sym_enum, - ACTIONS(3136), 1, + ACTIONS(3148), 1, anon_sym_class, - ACTIONS(3138), 1, + ACTIONS(3150), 1, anon_sym_struct, - ACTIONS(3140), 1, + ACTIONS(3152), 1, anon_sym_union, - ACTIONS(3164), 1, + ACTIONS(3176), 1, sym_auto, - ACTIONS(3166), 1, + ACTIONS(3178), 1, anon_sym_decltype, - ACTIONS(3168), 1, + ACTIONS(3180), 1, anon_sym_typename, - ACTIONS(8047), 1, + ACTIONS(8020), 1, sym_identifier, - ACTIONS(8049), 1, + ACTIONS(8022), 1, anon_sym_COLON_COLON, - ACTIONS(8051), 1, + ACTIONS(8024), 1, sym_primitive_type, - STATE(2621), 1, + STATE(2616), 1, sym_type_specifier, - STATE(2657), 1, + STATE(2685), 1, sym_qualified_type_identifier, - STATE(2708), 1, + STATE(2733), 1, sym_decltype_auto, - STATE(4239), 1, + STATE(4313), 1, aux_sym_sized_type_specifier_repeat1, - STATE(6579), 1, + STATE(6738), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(8569), 1, sym_dependent_type_identifier, - STATE(2598), 2, + STATE(2621), 2, sym_decltype, sym_template_type, - ACTIONS(3130), 4, + ACTIONS(3142), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2668), 7, + STATE(2747), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -465443,52 +471693,105 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [205247] = 21, + [208276] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1816), 1, - anon_sym_enum, - ACTIONS(1818), 1, + ACTIONS(9530), 1, + anon_sym_COLON_COLON, + ACTIONS(9538), 1, anon_sym_class, - ACTIONS(1820), 1, + ACTIONS(9540), 1, anon_sym_struct, - ACTIONS(1822), 1, + ACTIONS(9542), 1, anon_sym_union, - ACTIONS(1846), 1, + ACTIONS(9544), 1, sym_auto, - ACTIONS(1848), 1, + ACTIONS(9546), 1, anon_sym_decltype, - ACTIONS(1850), 1, - anon_sym_typename, - ACTIONS(7955), 1, + ACTIONS(9553), 1, sym_identifier, - ACTIONS(7959), 1, - anon_sym_COLON_COLON, - ACTIONS(7961), 1, + ACTIONS(9557), 1, sym_primitive_type, - STATE(1784), 1, + ACTIONS(9559), 1, + anon_sym_enum, + ACTIONS(9561), 1, + anon_sym_typename, + STATE(1614), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1920), 1, sym_type_specifier, - STATE(1859), 1, + STATE(2306), 1, sym_decltype_auto, - STATE(1902), 1, + STATE(2335), 1, sym_qualified_type_identifier, - STATE(4209), 1, + STATE(6695), 1, + sym__scope_resolution, + STATE(8569), 1, + sym_dependent_type_identifier, + STATE(2242), 2, + sym_decltype, + sym_template_type, + ACTIONS(9555), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2310), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [208350] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(9530), 1, + anon_sym_COLON_COLON, + ACTIONS(9538), 1, + anon_sym_class, + ACTIONS(9540), 1, + anon_sym_struct, + ACTIONS(9542), 1, + anon_sym_union, + ACTIONS(9544), 1, + sym_auto, + ACTIONS(9546), 1, + anon_sym_decltype, + ACTIONS(9553), 1, + sym_identifier, + ACTIONS(9557), 1, + sym_primitive_type, + ACTIONS(9559), 1, + anon_sym_enum, + ACTIONS(9561), 1, + anon_sym_typename, + STATE(1614), 1, aux_sym_sized_type_specifier_repeat1, - STATE(6587), 1, + STATE(1924), 1, + sym_type_specifier, + STATE(2306), 1, + sym_decltype_auto, + STATE(2335), 1, + sym_qualified_type_identifier, + STATE(6695), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(8569), 1, sym_dependent_type_identifier, - STATE(1713), 2, + STATE(2242), 2, sym_decltype, sym_template_type, - ACTIONS(1810), 4, + ACTIONS(9555), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1879), 7, + STATE(2310), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -465496,209 +471799,266 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [205321] = 21, + [208424] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5495), 1, + anon_sym___declspec, + ACTIONS(6528), 1, + anon_sym_COLON, + ACTIONS(6588), 1, + anon_sym_LBRACE, + ACTIONS(9498), 1, + anon_sym_COLON_COLON, + ACTIONS(9670), 1, + sym_identifier, + STATE(2684), 1, + sym_template_type, + STATE(2885), 1, + sym_field_declaration_list, + STATE(3162), 1, + sym__class_declaration_item, + STATE(5622), 1, + sym_ms_declspec_modifier, + STATE(6728), 1, + sym__scope_resolution, + STATE(7042), 1, + sym_virtual_specifier, + STATE(8040), 1, + sym_base_class_clause, + ACTIONS(5489), 2, + anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7065), 1, + ACTIONS(5497), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(5567), 2, + anon_sym_final, + anon_sym_override, + STATE(2467), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5621), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8569), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(6055), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + [208502] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7072), 1, + ACTIONS(7075), 1, anon_sym_noexcept, - ACTIONS(7074), 1, + ACTIONS(7077), 1, anon_sym_throw, - ACTIONS(7147), 1, - anon_sym___attribute__, - ACTIONS(7301), 1, + ACTIONS(7538), 1, anon_sym_requires, - ACTIONS(7745), 1, + ACTIONS(7768), 1, anon_sym_DASH_GT, - ACTIONS(9193), 1, + ACTIONS(9382), 1, anon_sym_LBRACK, - ACTIONS(9276), 1, - anon_sym_LBRACK_LBRACK, - STATE(5453), 1, - sym_trailing_return_type, - STATE(6200), 1, + ACTIONS(9518), 1, + anon_sym___attribute__, + ACTIONS(9521), 1, + anon_sym___attribute, + STATE(6253), 1, sym__function_attributes_end, - STATE(6766), 1, + STATE(6296), 1, + sym_trailing_return_type, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(6020), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7063), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - STATE(5384), 2, + ACTIONS(7359), 2, + anon_sym_final, + anon_sym_override, + STATE(5455), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5458), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5606), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5877), 2, + STATE(6132), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9182), 3, + ACTIONS(9371), 3, + anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_EQ, - STATE(5369), 3, + anon_sym_GT2, + STATE(5439), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - [205395] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(2977), 1, - anon_sym_LPAREN2, - ACTIONS(2979), 1, - anon_sym_TILDE, - ACTIONS(5849), 1, - sym_identifier, - ACTIONS(5861), 1, - anon_sym_COLON_COLON, - ACTIONS(7089), 1, - anon_sym_LBRACK, - ACTIONS(7275), 1, - anon_sym_STAR, - ACTIONS(7277), 1, - anon_sym_AMP_AMP, - ACTIONS(7279), 1, - anon_sym_AMP, - STATE(5860), 1, - sym__scope_resolution, - STATE(5902), 1, - sym__declarator, - STATE(7396), 1, - sym_init_declarator, - STATE(8398), 1, - sym_ms_based_modifier, - STATE(8601), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(5998), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [205465] = 21, + [208576] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7065), 1, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7072), 1, + ACTIONS(7075), 1, anon_sym_noexcept, - ACTIONS(7074), 1, + ACTIONS(7077), 1, anon_sym_throw, - ACTIONS(7147), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - ACTIONS(7301), 1, - anon_sym_requires, - ACTIONS(7745), 1, + ACTIONS(7738), 1, anon_sym_DASH_GT, - ACTIONS(9355), 1, + ACTIONS(9382), 1, anon_sym_LBRACK, - ACTIONS(9367), 1, + ACTIONS(9401), 1, anon_sym_LBRACK_LBRACK, - STATE(5418), 1, + ACTIONS(9407), 1, + anon_sym_requires, + STATE(5536), 1, sym_trailing_return_type, - STATE(6201), 1, + STATE(6350), 1, sym__function_attributes_end, - STATE(6766), 1, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(6020), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7063), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - STATE(5384), 2, + ACTIONS(9387), 2, + anon_sym_final, + anon_sym_override, + STATE(5455), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5458), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5606), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5839), 2, + STATE(5934), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9344), 3, + ACTIONS(9371), 3, anon_sym_LPAREN2, anon_sym_LBRACE, anon_sym_EQ, - STATE(5370), 3, + STATE(5437), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - [205539] = 21, + [208650] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1846), 1, + ACTIONS(9496), 1, + sym_identifier, + ACTIONS(9498), 1, + anon_sym_COLON_COLON, + ACTIONS(9502), 1, + sym_primitive_type, + ACTIONS(9504), 1, + anon_sym_enum, + ACTIONS(9506), 1, + anon_sym_class, + ACTIONS(9508), 1, + anon_sym_struct, + ACTIONS(9510), 1, + anon_sym_union, + ACTIONS(9512), 1, + sym_auto, + ACTIONS(9514), 1, + anon_sym_decltype, + ACTIONS(9516), 1, + anon_sym_typename, + STATE(1645), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3134), 1, + sym_type_specifier, + STATE(3157), 1, + sym_decltype_auto, + STATE(3216), 1, + sym_qualified_type_identifier, + STATE(6728), 1, + sym__scope_resolution, + STATE(8569), 1, + sym_dependent_type_identifier, + STATE(3064), 2, + sym_decltype, + sym_template_type, + ACTIONS(9500), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3158), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [208724] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(3176), 1, sym_auto, - ACTIONS(1848), 1, + ACTIONS(3178), 1, anon_sym_decltype, - ACTIONS(7961), 1, + ACTIONS(8024), 1, sym_primitive_type, - ACTIONS(9422), 1, + ACTIONS(9610), 1, sym_identifier, - ACTIONS(9424), 1, + ACTIONS(9612), 1, anon_sym_COLON_COLON, - ACTIONS(9428), 1, + ACTIONS(9616), 1, anon_sym_enum, - ACTIONS(9430), 1, + ACTIONS(9618), 1, anon_sym_class, - ACTIONS(9432), 1, + ACTIONS(9620), 1, anon_sym_struct, - ACTIONS(9434), 1, + ACTIONS(9622), 1, anon_sym_union, - ACTIONS(9436), 1, + ACTIONS(9624), 1, anon_sym_typename, - STATE(1859), 1, - sym_decltype_auto, - STATE(1869), 1, + STATE(2223), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1902), 1, + STATE(2685), 1, sym_qualified_type_identifier, - STATE(4065), 1, + STATE(2733), 1, + sym_decltype_auto, + STATE(4170), 1, sym_type_specifier, - STATE(6626), 1, + STATE(6694), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(8569), 1, sym_dependent_type_identifier, - STATE(1713), 2, + STATE(2621), 2, sym_decltype, sym_template_type, - ACTIONS(9426), 4, + ACTIONS(9614), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1879), 7, + STATE(2747), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -465706,52 +472066,105 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [205613] = 21, + [208798] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1846), 1, + ACTIONS(1814), 1, + anon_sym_enum, + ACTIONS(1816), 1, + anon_sym_class, + ACTIONS(1818), 1, + anon_sym_struct, + ACTIONS(1820), 1, + anon_sym_union, + ACTIONS(1844), 1, sym_auto, - ACTIONS(1848), 1, + ACTIONS(1846), 1, anon_sym_decltype, - ACTIONS(7988), 1, + ACTIONS(1848), 1, + anon_sym_typename, + ACTIONS(7980), 1, sym_identifier, - ACTIONS(7990), 1, + ACTIONS(7984), 1, anon_sym_COLON_COLON, - ACTIONS(7994), 1, + ACTIONS(7986), 1, sym_primitive_type, - ACTIONS(7996), 1, + STATE(1797), 1, + sym_type_specifier, + STATE(1888), 1, + sym_decltype_auto, + STATE(1916), 1, + sym_qualified_type_identifier, + STATE(4234), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(6727), 1, + sym__scope_resolution, + STATE(8569), 1, + sym_dependent_type_identifier, + STATE(1782), 2, + sym_decltype, + sym_template_type, + ACTIONS(1808), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1890), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [208872] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(8026), 1, + sym_identifier, + ACTIONS(8028), 1, + anon_sym_COLON_COLON, + ACTIONS(8032), 1, + sym_primitive_type, + ACTIONS(8034), 1, anon_sym_enum, - ACTIONS(7998), 1, + ACTIONS(8036), 1, anon_sym_class, - ACTIONS(8000), 1, + ACTIONS(8038), 1, anon_sym_struct, - ACTIONS(8002), 1, + ACTIONS(8040), 1, anon_sym_union, - ACTIONS(8004), 1, + ACTIONS(8042), 1, + sym_auto, + ACTIONS(8044), 1, + anon_sym_decltype, + ACTIONS(8046), 1, anon_sym_typename, - STATE(1784), 1, - sym_type_specifier, - STATE(1859), 1, - sym_decltype_auto, - STATE(2809), 1, + STATE(2836), 1, sym_qualified_type_identifier, - STATE(4882), 1, + STATE(4024), 1, aux_sym_sized_type_specifier_repeat1, - STATE(6593), 1, + STATE(4519), 1, + sym_type_specifier, + STATE(4672), 1, + sym_decltype_auto, + STATE(6719), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(8569), 1, sym_dependent_type_identifier, - STATE(1713), 2, + STATE(2439), 2, sym_decltype, sym_template_type, - ACTIONS(7992), 4, + ACTIONS(8030), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1879), 7, + STATE(4773), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -465759,103 +472172,160 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [205687] = 19, + [208946] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2977), 1, - anon_sym_LPAREN2, - ACTIONS(2979), 1, - anon_sym_TILDE, - ACTIONS(5849), 1, - sym_identifier, - ACTIONS(5861), 1, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5495), 1, + anon_sym___declspec, + ACTIONS(6528), 1, + anon_sym_COLON, + ACTIONS(8000), 1, anon_sym_COLON_COLON, - ACTIONS(7089), 1, - anon_sym_LBRACK, - ACTIONS(7275), 1, - anon_sym_STAR, - ACTIONS(7277), 1, - anon_sym_AMP_AMP, - ACTIONS(7279), 1, - anon_sym_AMP, - STATE(5860), 1, + ACTIONS(8906), 1, + anon_sym_LBRACE, + ACTIONS(9672), 1, + sym_identifier, + STATE(4461), 1, + sym_template_type, + STATE(4950), 1, + sym_field_declaration_list, + STATE(4994), 1, + sym__class_declaration_item, + STATE(5636), 1, + sym_ms_declspec_modifier, + STATE(6731), 1, sym__scope_resolution, - STATE(5916), 1, - sym__declarator, - STATE(7524), 1, - sym_init_declarator, - STATE(8398), 1, - sym_ms_based_modifier, - STATE(8601), 3, + STATE(7051), 1, + sym_virtual_specifier, + STATE(7920), 1, + sym_base_class_clause, + ACTIONS(5489), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(5497), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(5567), 2, + anon_sym_final, + anon_sym_override, + STATE(4449), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5635), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8569), 2, sym_decltype, - sym_template_type, sym_dependent_type_identifier, - STATE(5998), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [205757] = 21, + STATE(6055), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + [209024] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(7071), 1, + anon_sym___asm, + ACTIONS(7075), 1, + anon_sym_noexcept, + ACTIONS(7077), 1, + anon_sym_throw, + ACTIONS(7299), 1, + anon_sym___attribute__, + ACTIONS(7314), 1, + anon_sym_requires, + ACTIONS(7738), 1, + anon_sym_DASH_GT, + ACTIONS(9150), 1, + anon_sym_LBRACK, + ACTIONS(9308), 1, + anon_sym_LBRACK_LBRACK, + STATE(5526), 1, + sym_trailing_return_type, + STATE(6345), 1, + sym__function_attributes_end, + STATE(6870), 1, + sym_gnu_asm_expression, + ACTIONS(6037), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7069), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5455), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5507), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5927), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9139), 3, + anon_sym_LPAREN2, + anon_sym_LBRACE, + anon_sym_EQ, + STATE(5438), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [209098] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(9501), 1, + ACTIONS(9457), 1, sym_identifier, - ACTIONS(9503), 1, + ACTIONS(9459), 1, anon_sym_COLON_COLON, - ACTIONS(9507), 1, + ACTIONS(9463), 1, sym_primitive_type, - ACTIONS(9509), 1, + ACTIONS(9465), 1, anon_sym_enum, - ACTIONS(9511), 1, + ACTIONS(9467), 1, anon_sym_class, - ACTIONS(9513), 1, + ACTIONS(9469), 1, anon_sym_struct, - ACTIONS(9515), 1, + ACTIONS(9471), 1, anon_sym_union, - ACTIONS(9517), 1, + ACTIONS(9473), 1, sym_auto, - ACTIONS(9519), 1, + ACTIONS(9475), 1, anon_sym_decltype, - ACTIONS(9521), 1, + ACTIONS(9477), 1, anon_sym_typename, - STATE(1619), 1, + STATE(1671), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2746), 1, + STATE(3315), 1, sym_type_specifier, - STATE(2976), 1, + STATE(3511), 1, sym_decltype_auto, - STATE(2983), 1, + STATE(3525), 1, sym_qualified_type_identifier, - STATE(6633), 1, + STATE(6708), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(8569), 1, sym_dependent_type_identifier, - STATE(2924), 2, + STATE(3266), 2, sym_decltype, sym_template_type, - ACTIONS(9505), 4, + ACTIONS(9461), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2978), 7, + STATE(3519), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -465863,52 +472333,52 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [205831] = 21, + [209172] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(9382), 1, + ACTIONS(9457), 1, sym_identifier, - ACTIONS(9384), 1, + ACTIONS(9459), 1, anon_sym_COLON_COLON, - ACTIONS(9388), 1, + ACTIONS(9463), 1, sym_primitive_type, - ACTIONS(9390), 1, + ACTIONS(9465), 1, anon_sym_enum, - ACTIONS(9392), 1, + ACTIONS(9467), 1, anon_sym_class, - ACTIONS(9394), 1, + ACTIONS(9469), 1, anon_sym_struct, - ACTIONS(9396), 1, + ACTIONS(9471), 1, anon_sym_union, - ACTIONS(9398), 1, + ACTIONS(9473), 1, sym_auto, - ACTIONS(9400), 1, + ACTIONS(9475), 1, anon_sym_decltype, - ACTIONS(9402), 1, + ACTIONS(9477), 1, anon_sym_typename, - STATE(1592), 1, + STATE(1671), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1900), 1, + STATE(2998), 1, sym_type_specifier, - STATE(2273), 1, - sym_qualified_type_identifier, - STATE(2309), 1, + STATE(3511), 1, sym_decltype_auto, - STATE(6580), 1, + STATE(3525), 1, + sym_qualified_type_identifier, + STATE(6708), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(8569), 1, sym_dependent_type_identifier, - STATE(2174), 2, + STATE(3266), 2, sym_decltype, sym_template_type, - ACTIONS(9386), 4, + ACTIONS(9461), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2245), 7, + STATE(3519), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -465916,52 +472386,52 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [205905] = 21, + [209246] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(3164), 1, + ACTIONS(1844), 1, sym_auto, - ACTIONS(3166), 1, + ACTIONS(1846), 1, anon_sym_decltype, - ACTIONS(8051), 1, - sym_primitive_type, - ACTIONS(9404), 1, + ACTIONS(8086), 1, sym_identifier, - ACTIONS(9406), 1, + ACTIONS(8088), 1, anon_sym_COLON_COLON, - ACTIONS(9410), 1, + ACTIONS(8092), 1, + sym_primitive_type, + ACTIONS(8094), 1, anon_sym_enum, - ACTIONS(9412), 1, + ACTIONS(8096), 1, anon_sym_class, - ACTIONS(9414), 1, + ACTIONS(8098), 1, anon_sym_struct, - ACTIONS(9416), 1, + ACTIONS(8100), 1, anon_sym_union, - ACTIONS(9418), 1, + ACTIONS(8102), 1, anon_sym_typename, - STATE(2170), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2621), 1, + STATE(1797), 1, sym_type_specifier, - STATE(2657), 1, - sym_qualified_type_identifier, - STATE(2708), 1, + STATE(1888), 1, sym_decltype_auto, - STATE(6594), 1, + STATE(2836), 1, + sym_qualified_type_identifier, + STATE(4916), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(6724), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(8569), 1, sym_dependent_type_identifier, - STATE(2598), 2, + STATE(1782), 2, sym_decltype, sym_template_type, - ACTIONS(9408), 4, + ACTIONS(8090), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2668), 7, + STATE(1890), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -465969,52 +472439,52 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [205979] = 21, + [209320] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1846), 1, + ACTIONS(125), 1, sym_auto, - ACTIONS(1848), 1, + ACTIONS(127), 1, anon_sym_decltype, - ACTIONS(7961), 1, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(3919), 1, sym_primitive_type, - ACTIONS(9422), 1, + ACTIONS(8058), 1, sym_identifier, - ACTIONS(9424), 1, + ACTIONS(8060), 1, anon_sym_COLON_COLON, - ACTIONS(9428), 1, - anon_sym_enum, - ACTIONS(9430), 1, + ACTIONS(8064), 1, anon_sym_class, - ACTIONS(9432), 1, + ACTIONS(8066), 1, anon_sym_struct, - ACTIONS(9434), 1, + ACTIONS(8068), 1, anon_sym_union, - ACTIONS(9436), 1, + ACTIONS(9678), 1, + anon_sym_enum, + ACTIONS(9680), 1, anon_sym_typename, - STATE(1859), 1, + STATE(2453), 1, sym_decltype_auto, - STATE(1869), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1902), 1, + STATE(2836), 1, sym_qualified_type_identifier, - STATE(3950), 1, - sym_type_specifier, - STATE(6626), 1, + STATE(5109), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(6729), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(6956), 1, + sym_type_specifier, + STATE(8569), 1, sym_dependent_type_identifier, - STATE(1713), 2, + STATE(2439), 2, sym_decltype, sym_template_type, - ACTIONS(9426), 4, + ACTIONS(9676), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1879), 7, + STATE(2558), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -466022,162 +472492,107 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [206053] = 23, + [209394] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(6540), 1, - anon_sym_COLON, - ACTIONS(6542), 1, + ACTIONS(5565), 1, anon_sym_LBRACE, - ACTIONS(9613), 1, - sym_identifier, - ACTIONS(9625), 1, - anon_sym_COLON_COLON, - STATE(1893), 1, - sym_template_type, - STATE(2516), 1, - sym__class_declaration_item, - STATE(2917), 1, - sym_field_declaration_list, - STATE(5527), 1, - sym_ms_declspec_modifier, - STATE(6604), 1, - sym__scope_resolution, - STATE(6995), 1, - sym_virtual_specifier, - STATE(7645), 1, - sym_base_class_clause, - ACTIONS(5468), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5476), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(5503), 2, - anon_sym_final, - anon_sym_override, - STATE(3925), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5526), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5952), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [206131] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, - anon_sym___declspec, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(6542), 1, - anon_sym_LBRACE, - ACTIONS(8055), 1, + ACTIONS(9530), 1, anon_sym_COLON_COLON, - ACTIONS(9623), 1, + ACTIONS(9658), 1, sym_identifier, - STATE(1893), 1, + STATE(1943), 1, sym_template_type, - STATE(2516), 1, - sym__class_declaration_item, - STATE(3610), 1, + STATE(2213), 1, sym_field_declaration_list, - STATE(5624), 1, + STATE(2252), 1, + sym__class_declaration_item, + STATE(5674), 1, sym_ms_declspec_modifier, - STATE(6592), 1, + STATE(6695), 1, sym__scope_resolution, - STATE(7084), 1, + STATE(7100), 1, sym_virtual_specifier, - STATE(7878), 1, + STATE(7921), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2988), 2, + STATE(1816), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5623), 2, + STATE(5673), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5952), 3, + STATE(6055), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [206209] = 21, + [209472] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(9526), 1, + ACTIONS(9578), 1, sym_identifier, - ACTIONS(9528), 1, + ACTIONS(9580), 1, anon_sym_COLON_COLON, - ACTIONS(9532), 1, + ACTIONS(9584), 1, sym_primitive_type, - ACTIONS(9534), 1, + ACTIONS(9586), 1, anon_sym_enum, - ACTIONS(9536), 1, + ACTIONS(9588), 1, anon_sym_class, - ACTIONS(9538), 1, + ACTIONS(9590), 1, anon_sym_struct, - ACTIONS(9540), 1, + ACTIONS(9592), 1, anon_sym_union, - ACTIONS(9542), 1, + ACTIONS(9594), 1, sym_auto, - ACTIONS(9544), 1, + ACTIONS(9596), 1, anon_sym_decltype, - ACTIONS(9546), 1, + ACTIONS(9598), 1, anon_sym_typename, - STATE(1637), 1, + STATE(1635), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2891), 1, + STATE(2769), 1, sym_type_specifier, - STATE(3491), 1, - sym_decltype_auto, - STATE(3507), 1, + STATE(3046), 1, sym_qualified_type_identifier, - STATE(6578), 1, + STATE(3082), 1, + sym_decltype_auto, + STATE(6713), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(8569), 1, sym_dependent_type_identifier, - STATE(3329), 2, + STATE(2951), 2, sym_decltype, sym_template_type, - ACTIONS(9530), 4, + ACTIONS(9582), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3504), 7, + STATE(3085), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -466185,105 +472600,52 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [206283] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7065), 1, - anon_sym___asm, - ACTIONS(7072), 1, - anon_sym_noexcept, - ACTIONS(7074), 1, - anon_sym_throw, - ACTIONS(7551), 1, - anon_sym_requires, - ACTIONS(7653), 1, - anon_sym_DASH_GT, - ACTIONS(9355), 1, - anon_sym_LBRACK, - ACTIONS(9466), 1, - anon_sym___attribute__, - ACTIONS(9469), 1, - anon_sym___attribute, - STATE(6115), 1, - sym__function_attributes_end, - STATE(6229), 1, - sym_trailing_return_type, - STATE(6766), 1, - sym_gnu_asm_expression, - ACTIONS(7063), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7335), 2, - anon_sym_final, - anon_sym_override, - STATE(5384), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5458), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6032), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9344), 3, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_GT2, - STATE(5347), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - [206357] = 21, + [209546] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(125), 1, sym_auto, ACTIONS(127), 1, anon_sym_decltype, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(3911), 1, + ACTIONS(3019), 1, sym_primitive_type, - ACTIONS(7968), 1, - sym_identifier, - ACTIONS(7970), 1, - anon_sym_COLON_COLON, - ACTIONS(7974), 1, + ACTIONS(3021), 1, + anon_sym_enum, + ACTIONS(3023), 1, anon_sym_class, - ACTIONS(7976), 1, + ACTIONS(3025), 1, anon_sym_struct, - ACTIONS(7978), 1, + ACTIONS(3027), 1, anon_sym_union, - ACTIONS(9650), 1, - anon_sym_enum, - ACTIONS(9652), 1, + ACTIONS(3029), 1, anon_sym_typename, - STATE(2501), 1, + ACTIONS(5226), 1, + sym_identifier, + ACTIONS(5228), 1, + anon_sym_COLON_COLON, + STATE(2385), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2421), 1, + sym_type_specifier, + STATE(2453), 1, sym_decltype_auto, - STATE(2809), 1, + STATE(3138), 1, sym_qualified_type_identifier, - STATE(5032), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6630), 1, + STATE(6715), 1, sym__scope_resolution, - STATE(6925), 1, - sym_type_specifier, - STATE(8601), 1, + STATE(8569), 1, sym_dependent_type_identifier, - STATE(2406), 2, + STATE(2439), 2, sym_decltype, sym_template_type, - ACTIONS(9648), 4, + ACTIONS(59), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2523), 7, + STATE(2558), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -466291,107 +472653,52 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [206431] = 23, + [209620] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, - anon_sym___declspec, - ACTIONS(6018), 1, - anon_sym_LBRACE, - ACTIONS(6540), 1, - anon_sym_COLON, - ACTIONS(7990), 1, - anon_sym_COLON_COLON, - ACTIONS(9636), 1, + ACTIONS(7998), 1, sym_identifier, - STATE(1816), 1, - sym_template_type, - STATE(1854), 1, - sym__class_declaration_item, - STATE(5147), 1, - sym_field_declaration_list, - STATE(5558), 1, - sym_ms_declspec_modifier, - STATE(6593), 1, - sym__scope_resolution, - STATE(7010), 1, - sym_virtual_specifier, - STATE(7843), 1, - sym_base_class_clause, - ACTIONS(5468), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5476), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(5503), 2, - anon_sym_final, - anon_sym_override, - STATE(4504), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5557), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5952), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [206509] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(125), 1, - sym_auto, - ACTIONS(127), 1, - anon_sym_decltype, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1884), 1, + ACTIONS(8000), 1, + anon_sym_COLON_COLON, + ACTIONS(8004), 1, + sym_primitive_type, + ACTIONS(8006), 1, anon_sym_enum, - ACTIONS(1886), 1, + ACTIONS(8008), 1, anon_sym_class, - ACTIONS(1888), 1, + ACTIONS(8010), 1, anon_sym_struct, - ACTIONS(1890), 1, + ACTIONS(8012), 1, anon_sym_union, - ACTIONS(1914), 1, + ACTIONS(8014), 1, + sym_auto, + ACTIONS(8016), 1, + anon_sym_decltype, + ACTIONS(8018), 1, anon_sym_typename, - ACTIONS(2999), 1, - sym_primitive_type, - ACTIONS(5010), 1, - sym_identifier, - ACTIONS(5020), 1, - anon_sym_COLON_COLON, - STATE(2359), 1, + STATE(4150), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2393), 1, + STATE(4951), 1, sym_type_specifier, - STATE(2501), 1, - sym_decltype_auto, - STATE(3015), 1, + STATE(4975), 1, sym_qualified_type_identifier, - STATE(6606), 1, + STATE(4979), 1, + sym_decltype_auto, + STATE(6731), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(8569), 1, sym_dependent_type_identifier, - STATE(2406), 2, + STATE(4943), 2, sym_decltype, sym_template_type, - ACTIONS(59), 4, + ACTIONS(8002), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2523), 7, + STATE(4980), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -466399,103 +472706,105 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [206583] = 19, + [209694] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1978), 1, + ACTIONS(1844), 1, + sym_auto, + ACTIONS(1846), 1, anon_sym_decltype, - ACTIONS(2977), 1, - anon_sym_LPAREN2, - ACTIONS(2979), 1, - anon_sym_TILDE, - ACTIONS(5849), 1, + ACTIONS(7986), 1, + sym_primitive_type, + ACTIONS(9435), 1, sym_identifier, - ACTIONS(5861), 1, + ACTIONS(9437), 1, anon_sym_COLON_COLON, - ACTIONS(7089), 1, - anon_sym_LBRACK, - ACTIONS(7275), 1, - anon_sym_STAR, - ACTIONS(7277), 1, - anon_sym_AMP_AMP, - ACTIONS(7279), 1, - anon_sym_AMP, - STATE(5860), 1, + ACTIONS(9441), 1, + anon_sym_enum, + ACTIONS(9443), 1, + anon_sym_class, + ACTIONS(9445), 1, + anon_sym_struct, + ACTIONS(9447), 1, + anon_sym_union, + ACTIONS(9449), 1, + anon_sym_typename, + STATE(1797), 1, + sym_type_specifier, + STATE(1887), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1888), 1, + sym_decltype_auto, + STATE(1916), 1, + sym_qualified_type_identifier, + STATE(6699), 1, sym__scope_resolution, - STATE(5890), 1, - sym__declarator, - STATE(7288), 1, - sym_init_declarator, - STATE(8398), 1, - sym_ms_based_modifier, - STATE(8601), 3, + STATE(8569), 1, + sym_dependent_type_identifier, + STATE(1782), 2, sym_decltype, sym_template_type, - sym_dependent_type_identifier, - STATE(5998), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [206653] = 21, + ACTIONS(9439), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1890), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [209768] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(3164), 1, + ACTIONS(125), 1, sym_auto, - ACTIONS(3166), 1, + ACTIONS(127), 1, anon_sym_decltype, - ACTIONS(8051), 1, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(3919), 1, sym_primitive_type, - ACTIONS(9404), 1, + ACTIONS(8058), 1, sym_identifier, - ACTIONS(9406), 1, + ACTIONS(8060), 1, anon_sym_COLON_COLON, - ACTIONS(9410), 1, + ACTIONS(8062), 1, anon_sym_enum, - ACTIONS(9412), 1, + ACTIONS(8064), 1, anon_sym_class, - ACTIONS(9414), 1, + ACTIONS(8066), 1, anon_sym_struct, - ACTIONS(9416), 1, + ACTIONS(8068), 1, anon_sym_union, - ACTIONS(9418), 1, + ACTIONS(8070), 1, anon_sym_typename, - STATE(2170), 1, + STATE(2421), 1, + sym_type_specifier, + STATE(2453), 1, + sym_decltype_auto, + STATE(2695), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2657), 1, + STATE(2836), 1, sym_qualified_type_identifier, - STATE(2708), 1, - sym_decltype_auto, - STATE(4143), 1, - sym_type_specifier, - STATE(6594), 1, + STATE(6729), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(8569), 1, sym_dependent_type_identifier, - STATE(2598), 2, + STATE(2439), 2, sym_decltype, sym_template_type, - ACTIONS(9408), 4, + ACTIONS(3917), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2668), 7, + STATE(2558), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -466503,105 +472812,105 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [206727] = 21, + [209842] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7065), 1, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7072), 1, + ACTIONS(7075), 1, anon_sym_noexcept, - ACTIONS(7074), 1, + ACTIONS(7077), 1, anon_sym_throw, - ACTIONS(7337), 1, + ACTIONS(7447), 1, anon_sym_requires, - ACTIONS(7667), 1, + ACTIONS(7799), 1, anon_sym_DASH_GT, - ACTIONS(9355), 1, + ACTIONS(9150), 1, anon_sym_LBRACK, - ACTIONS(9466), 1, + ACTIONS(9333), 1, anon_sym___attribute__, - ACTIONS(9469), 1, + ACTIONS(9336), 1, anon_sym___attribute, - STATE(6033), 1, + STATE(6123), 1, sym_trailing_return_type, - STATE(6096), 1, + STATE(6222), 1, sym__function_attributes_end, - STATE(6766), 1, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(7063), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7335), 2, + ACTIONS(7359), 2, anon_sym_final, anon_sym_override, - STATE(5384), 2, + STATE(5455), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5458), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6032), 2, + STATE(6149), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9344), 3, + ACTIONS(9139), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - STATE(5368), 3, + STATE(5422), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - [206801] = 21, + [209916] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(125), 1, sym_auto, ACTIONS(127), 1, anon_sym_decltype, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(3911), 1, - sym_primitive_type, - ACTIONS(7968), 1, - sym_identifier, - ACTIONS(7970), 1, - anon_sym_COLON_COLON, - ACTIONS(7972), 1, + ACTIONS(1874), 1, anon_sym_enum, - ACTIONS(7974), 1, + ACTIONS(1876), 1, anon_sym_class, - ACTIONS(7976), 1, + ACTIONS(1878), 1, anon_sym_struct, - ACTIONS(7978), 1, + ACTIONS(1880), 1, anon_sym_union, - ACTIONS(7980), 1, + ACTIONS(1882), 1, anon_sym_typename, - STATE(2393), 1, + ACTIONS(3019), 1, + sym_primitive_type, + ACTIONS(5018), 1, + sym_identifier, + ACTIONS(5028), 1, + anon_sym_COLON_COLON, + STATE(2385), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2421), 1, sym_type_specifier, - STATE(2501), 1, + STATE(2453), 1, sym_decltype_auto, - STATE(2674), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2809), 1, + STATE(3138), 1, sym_qualified_type_identifier, - STATE(6630), 1, + STATE(6746), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(8569), 1, sym_dependent_type_identifier, - STATE(2406), 2, + STATE(2439), 2, sym_decltype, sym_template_type, - ACTIONS(3909), 4, + ACTIONS(59), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2523), 7, + STATE(2558), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -466609,376 +472918,914 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [206875] = 21, + [209990] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7065), 1, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7072), 1, + ACTIONS(7075), 1, anon_sym_noexcept, - ACTIONS(7074), 1, + ACTIONS(7077), 1, anon_sym_throw, - ACTIONS(7667), 1, + ACTIONS(7538), 1, + anon_sym_requires, + ACTIONS(7768), 1, anon_sym_DASH_GT, - ACTIONS(9193), 1, + ACTIONS(9150), 1, anon_sym_LBRACK, - ACTIONS(9291), 1, + ACTIONS(9333), 1, anon_sym___attribute__, - ACTIONS(9294), 1, + ACTIONS(9336), 1, anon_sym___attribute, - ACTIONS(9328), 1, - anon_sym_requires, - STATE(6034), 1, - sym_trailing_return_type, - STATE(6101), 1, + STATE(6252), 1, sym__function_attributes_end, - STATE(6766), 1, + STATE(6295), 1, + sym_trailing_return_type, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(7063), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9297), 2, + ACTIONS(7359), 2, anon_sym_final, anon_sym_override, - STATE(5384), 2, + STATE(5455), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5458), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6012), 2, + STATE(6149), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9182), 3, + ACTIONS(9139), 3, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - STATE(5363), 3, + anon_sym_GT2, + STATE(5424), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [210064] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(7071), 1, + anon_sym___asm, + ACTIONS(7075), 1, + anon_sym_noexcept, + ACTIONS(7077), 1, + anon_sym_throw, + ACTIONS(7299), 1, + anon_sym___attribute__, + ACTIONS(7314), 1, + anon_sym_requires, + ACTIONS(7738), 1, + anon_sym_DASH_GT, + ACTIONS(9382), 1, + anon_sym_LBRACK, + ACTIONS(9401), 1, + anon_sym_LBRACK_LBRACK, + STATE(5529), 1, + sym_trailing_return_type, + STATE(6346), 1, + sym__function_attributes_end, + STATE(6870), 1, + sym_gnu_asm_expression, + ACTIONS(6037), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7069), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5455), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5507), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5934), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9371), 3, + anon_sym_LPAREN2, + anon_sym_LBRACE, + anon_sym_EQ, + STATE(5442), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - [206949] = 23, + [210138] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(9530), 1, + anon_sym_COLON_COLON, + ACTIONS(9538), 1, + anon_sym_class, + ACTIONS(9540), 1, + anon_sym_struct, + ACTIONS(9542), 1, + anon_sym_union, + ACTIONS(9544), 1, + sym_auto, + ACTIONS(9546), 1, + anon_sym_decltype, + ACTIONS(9553), 1, + sym_identifier, + ACTIONS(9557), 1, + sym_primitive_type, + ACTIONS(9559), 1, + anon_sym_enum, + ACTIONS(9561), 1, + anon_sym_typename, + STATE(1614), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2221), 1, + sym_type_specifier, + STATE(2306), 1, + sym_decltype_auto, + STATE(2335), 1, + sym_qualified_type_identifier, + STATE(6695), 1, + sym__scope_resolution, + STATE(8569), 1, + sym_dependent_type_identifier, + STATE(2242), 2, + sym_decltype, + sym_template_type, + ACTIONS(9555), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2310), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [210212] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(6540), 1, + ACTIONS(6526), 1, + anon_sym_LBRACE, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(8021), 1, + ACTIONS(9580), 1, anon_sym_COLON_COLON, - ACTIONS(8878), 1, - anon_sym_LBRACE, - ACTIONS(9619), 1, + ACTIONS(9656), 1, sym_identifier, - STATE(4376), 1, + STATE(2673), 1, sym_template_type, - STATE(4877), 1, + STATE(2809), 1, sym_field_declaration_list, - STATE(4904), 1, + STATE(3076), 1, sym__class_declaration_item, - STATE(5542), 1, + STATE(5624), 1, sym_ms_declspec_modifier, - STATE(6632), 1, + STATE(6713), 1, sym__scope_resolution, - STATE(6984), 1, + STATE(7139), 1, sym_virtual_specifier, - STATE(7729), 1, + STATE(7762), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(4384), 2, + STATE(2437), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5541), 2, + STATE(5623), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5952), 3, + STATE(6055), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [207027] = 23, + [210290] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5228), 1, + anon_sym_COLON_COLON, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(6018), 1, - anon_sym_LBRACE, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(7959), 1, - anon_sym_COLON_COLON, - ACTIONS(9627), 1, + ACTIONS(6530), 1, + anon_sym_LBRACE, + ACTIONS(9641), 1, sym_identifier, - STATE(1816), 1, + STATE(1922), 1, sym_template_type, - STATE(1854), 1, + STATE(2503), 1, sym__class_declaration_item, - STATE(2336), 1, + STATE(2962), 1, sym_field_declaration_list, - STATE(5485), 1, + STATE(5620), 1, sym_ms_declspec_modifier, - STATE(6587), 1, + STATE(6715), 1, sym__scope_resolution, - STATE(6997), 1, + STATE(7126), 1, sym_virtual_specifier, - STATE(7837), 1, + STATE(7712), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2107), 2, + STATE(2440), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5635), 2, + STATE(5717), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5952), 3, + STATE(6055), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [207105] = 21, + [210368] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7065), 1, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7072), 1, + ACTIONS(7075), 1, anon_sym_noexcept, - ACTIONS(7074), 1, + ACTIONS(7077), 1, anon_sym_throw, - ACTIONS(7667), 1, + ACTIONS(7768), 1, anon_sym_DASH_GT, - ACTIONS(9355), 1, + ACTIONS(9382), 1, anon_sym_LBRACK, - ACTIONS(9466), 1, + ACTIONS(9518), 1, anon_sym___attribute__, - ACTIONS(9469), 1, + ACTIONS(9521), 1, anon_sym___attribute, - ACTIONS(9498), 1, + ACTIONS(9651), 1, anon_sym_requires, - STATE(6063), 1, - sym_trailing_return_type, - STATE(6102), 1, + STATE(6258), 1, sym__function_attributes_end, - STATE(6766), 1, + STATE(6306), 1, + sym_trailing_return_type, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(7063), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9495), 2, + ACTIONS(9488), 2, anon_sym_final, anon_sym_override, - STATE(5384), 2, + STATE(5455), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5458), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6032), 2, + STATE(6132), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9344), 3, + ACTIONS(9371), 3, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - STATE(5364), 3, + anon_sym_GT2, + STATE(5446), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - [207179] = 21, + [210442] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7065), 1, - anon_sym___asm, - ACTIONS(7072), 1, - anon_sym_noexcept, - ACTIONS(7074), 1, - anon_sym_throw, - ACTIONS(7147), 1, - anon_sym___attribute__, - ACTIONS(7745), 1, - anon_sym_DASH_GT, - ACTIONS(9193), 1, - anon_sym_LBRACK, - ACTIONS(9276), 1, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9281), 1, - anon_sym_requires, - STATE(5447), 1, - sym_trailing_return_type, - STATE(6204), 1, - sym__function_attributes_end, - STATE(6766), 1, - sym_gnu_asm_expression, - ACTIONS(7063), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9195), 2, + ACTIONS(5495), 1, + anon_sym___declspec, + ACTIONS(6035), 1, + anon_sym_LBRACE, + ACTIONS(6528), 1, + anon_sym_COLON, + ACTIONS(7984), 1, + anon_sym_COLON_COLON, + ACTIONS(9645), 1, + sym_identifier, + STATE(1784), 1, + sym_template_type, + STATE(1886), 1, + sym__class_declaration_item, + STATE(2382), 1, + sym_field_declaration_list, + STATE(5656), 1, + sym_ms_declspec_modifier, + STATE(6727), 1, + sym__scope_resolution, + STATE(7084), 1, + sym_virtual_specifier, + STATE(7872), 1, + sym_base_class_clause, + ACTIONS(5489), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(5497), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(5384), 2, + STATE(2031), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5650), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8569), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(6055), 3, sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5458), 2, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + [210520] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5495), 1, + anon_sym___declspec, + ACTIONS(6363), 1, + anon_sym_LBRACE, + ACTIONS(6528), 1, + anon_sym_COLON, + ACTIONS(8022), 1, + anon_sym_COLON_COLON, + ACTIONS(9662), 1, + sym_identifier, + STATE(2598), 1, + sym_template_type, + STATE(2614), 1, + sym_field_declaration_list, + STATE(2703), 1, + sym__class_declaration_item, + STATE(5706), 1, + sym_ms_declspec_modifier, + STATE(6738), 1, + sym__scope_resolution, + STATE(7141), 1, + sym_virtual_specifier, + STATE(7773), 1, + sym_base_class_clause, + ACTIONS(5489), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(5497), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(5567), 2, + anon_sym_final, + anon_sym_override, + STATE(2374), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5702), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5606), 2, + STATE(8569), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(6055), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + [210598] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(5028), 1, + anon_sym_COLON_COLON, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5495), 1, + anon_sym___declspec, + ACTIONS(6528), 1, + anon_sym_COLON, + ACTIONS(6530), 1, + anon_sym_LBRACE, + ACTIONS(9643), 1, + sym_identifier, + STATE(1922), 1, + sym_template_type, + STATE(2503), 1, + sym__class_declaration_item, + STATE(2962), 1, + sym_field_declaration_list, + STATE(5571), 1, + sym_ms_declspec_modifier, + STATE(6746), 1, + sym__scope_resolution, + STATE(7126), 1, sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5877), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9182), 3, - anon_sym_LPAREN2, + STATE(7712), 1, + sym_base_class_clause, + ACTIONS(5489), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(5497), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(5567), 2, + anon_sym_final, + anon_sym_override, + STATE(2440), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5570), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8569), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(6055), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + [210676] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(3176), 1, + sym_auto, + ACTIONS(3178), 1, + anon_sym_decltype, + ACTIONS(8024), 1, + sym_primitive_type, + ACTIONS(9610), 1, + sym_identifier, + ACTIONS(9612), 1, + anon_sym_COLON_COLON, + ACTIONS(9616), 1, + anon_sym_enum, + ACTIONS(9618), 1, + anon_sym_class, + ACTIONS(9620), 1, + anon_sym_struct, + ACTIONS(9622), 1, + anon_sym_union, + ACTIONS(9624), 1, + anon_sym_typename, + STATE(2223), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2616), 1, + sym_type_specifier, + STATE(2685), 1, + sym_qualified_type_identifier, + STATE(2733), 1, + sym_decltype_auto, + STATE(6694), 1, + sym__scope_resolution, + STATE(8569), 1, + sym_dependent_type_identifier, + STATE(2621), 2, + sym_decltype, + sym_template_type, + ACTIONS(9614), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2747), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [210750] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(9578), 1, + sym_identifier, + ACTIONS(9580), 1, + anon_sym_COLON_COLON, + ACTIONS(9584), 1, + sym_primitive_type, + ACTIONS(9586), 1, + anon_sym_enum, + ACTIONS(9588), 1, + anon_sym_class, + ACTIONS(9590), 1, + anon_sym_struct, + ACTIONS(9592), 1, + anon_sym_union, + ACTIONS(9594), 1, + sym_auto, + ACTIONS(9596), 1, + anon_sym_decltype, + ACTIONS(9598), 1, + anon_sym_typename, + STATE(1635), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2786), 1, + sym_type_specifier, + STATE(3046), 1, + sym_qualified_type_identifier, + STATE(3082), 1, + sym_decltype_auto, + STATE(6713), 1, + sym__scope_resolution, + STATE(8569), 1, + sym_dependent_type_identifier, + STATE(2951), 2, + sym_decltype, + sym_template_type, + ACTIONS(9582), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3085), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [210824] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(9528), 1, + sym_identifier, + ACTIONS(9530), 1, + anon_sym_COLON_COLON, + ACTIONS(9534), 1, + sym_primitive_type, + ACTIONS(9536), 1, + anon_sym_enum, + ACTIONS(9538), 1, + anon_sym_class, + ACTIONS(9540), 1, + anon_sym_struct, + ACTIONS(9542), 1, + anon_sym_union, + ACTIONS(9544), 1, + sym_auto, + ACTIONS(9546), 1, + anon_sym_decltype, + ACTIONS(9548), 1, + anon_sym_typename, + STATE(1612), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1920), 1, + sym_type_specifier, + STATE(2306), 1, + sym_decltype_auto, + STATE(2335), 1, + sym_qualified_type_identifier, + STATE(6695), 1, + sym__scope_resolution, + STATE(8569), 1, + sym_dependent_type_identifier, + STATE(2242), 2, + sym_decltype, + sym_template_type, + ACTIONS(9532), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2310), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [210898] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(125), 1, + sym_auto, + ACTIONS(127), 1, + anon_sym_decltype, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(3907), 1, + sym_identifier, + ACTIONS(3915), 1, + anon_sym_COLON_COLON, + ACTIONS(3919), 1, + sym_primitive_type, + ACTIONS(3921), 1, + anon_sym_enum, + ACTIONS(3923), 1, + anon_sym_class, + ACTIONS(3925), 1, + anon_sym_struct, + ACTIONS(3927), 1, + anon_sym_union, + ACTIONS(3929), 1, + anon_sym_typename, + STATE(2421), 1, + sym_type_specifier, + STATE(2453), 1, + sym_decltype_auto, + STATE(2695), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2836), 1, + sym_qualified_type_identifier, + STATE(6697), 1, + sym__scope_resolution, + STATE(8569), 1, + sym_dependent_type_identifier, + STATE(2439), 2, + sym_decltype, + sym_template_type, + ACTIONS(3917), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2558), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [210972] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5495), 1, + anon_sym___declspec, + ACTIONS(6528), 1, + anon_sym_COLON, + ACTIONS(8074), 1, + anon_sym_COLON_COLON, + ACTIONS(8630), 1, anon_sym_LBRACE, - anon_sym_EQ, - STATE(5349), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - [207253] = 23, + ACTIONS(9647), 1, + sym_identifier, + STATE(1922), 1, + sym_template_type, + STATE(4635), 1, + sym_field_declaration_list, + STATE(4700), 1, + sym__class_declaration_item, + STATE(5606), 1, + sym_ms_declspec_modifier, + STATE(6743), 1, + sym__scope_resolution, + STATE(7213), 1, + sym_virtual_specifier, + STATE(7996), 1, + sym_base_class_clause, + ACTIONS(5489), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(5497), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(5567), 2, + anon_sym_final, + anon_sym_override, + STATE(4270), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5604), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8569), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(6055), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + [211050] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(125), 1, + sym_auto, + ACTIONS(127), 1, + anon_sym_decltype, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(3919), 1, + sym_primitive_type, + ACTIONS(8058), 1, + sym_identifier, + ACTIONS(8060), 1, + anon_sym_COLON_COLON, + ACTIONS(8064), 1, + anon_sym_class, + ACTIONS(8066), 1, + anon_sym_struct, + ACTIONS(8068), 1, + anon_sym_union, + ACTIONS(9678), 1, + anon_sym_enum, + ACTIONS(9680), 1, + anon_sym_typename, + STATE(2421), 1, + sym_type_specifier, + STATE(2453), 1, + sym_decltype_auto, + STATE(2836), 1, + sym_qualified_type_identifier, + STATE(5109), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(6729), 1, + sym__scope_resolution, + STATE(8569), 1, + sym_dependent_type_identifier, + STATE(2439), 2, + sym_decltype, + sym_template_type, + ACTIONS(9676), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2558), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [211124] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(6793), 1, + ACTIONS(6530), 1, anon_sym_LBRACE, - ACTIONS(9528), 1, + ACTIONS(8074), 1, anon_sym_COLON_COLON, - ACTIONS(9617), 1, + ACTIONS(9647), 1, sym_identifier, - STATE(2830), 1, + STATE(1922), 1, sym_template_type, - STATE(3107), 1, - sym_field_declaration_list, - STATE(3411), 1, + STATE(2503), 1, sym__class_declaration_item, - STATE(5522), 1, + STATE(3663), 1, + sym_field_declaration_list, + STATE(5568), 1, sym_ms_declspec_modifier, - STATE(6578), 1, + STATE(6743), 1, sym__scope_resolution, - STATE(7127), 1, + STATE(7228), 1, sym_virtual_specifier, - STATE(7665), 1, + STATE(8009), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2592), 2, + STATE(3041), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5521), 2, + STATE(5564), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5952), 3, + STATE(6055), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [207331] = 21, + [211202] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(9438), 1, + ACTIONS(1844), 1, + sym_auto, + ACTIONS(1846), 1, + anon_sym_decltype, + ACTIONS(7986), 1, + sym_primitive_type, + ACTIONS(9435), 1, sym_identifier, - ACTIONS(9440), 1, + ACTIONS(9437), 1, anon_sym_COLON_COLON, - ACTIONS(9444), 1, - sym_primitive_type, - ACTIONS(9446), 1, + ACTIONS(9441), 1, anon_sym_enum, - ACTIONS(9448), 1, + ACTIONS(9443), 1, anon_sym_class, - ACTIONS(9450), 1, + ACTIONS(9445), 1, anon_sym_struct, - ACTIONS(9452), 1, + ACTIONS(9447), 1, anon_sym_union, - ACTIONS(9454), 1, - sym_auto, - ACTIONS(9456), 1, - anon_sym_decltype, - ACTIONS(9458), 1, + ACTIONS(9449), 1, anon_sym_typename, - STATE(1625), 1, + STATE(1887), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2840), 1, - sym_type_specifier, - STATE(3111), 1, + STATE(1888), 1, sym_decltype_auto, - STATE(3113), 1, + STATE(1916), 1, sym_qualified_type_identifier, - STATE(6620), 1, + STATE(4116), 1, + sym_type_specifier, + STATE(6699), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(8569), 1, sym_dependent_type_identifier, - STATE(3044), 2, + STATE(1782), 2, sym_decltype, sym_template_type, - ACTIONS(9442), 4, + ACTIONS(9439), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3114), 7, + STATE(1890), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -466986,52 +473833,52 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [207405] = 21, + [211276] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1846), 1, + ACTIONS(8032), 1, + sym_primitive_type, + ACTIONS(8042), 1, sym_auto, - ACTIONS(1848), 1, + ACTIONS(8044), 1, anon_sym_decltype, - ACTIONS(7961), 1, - sym_primitive_type, - ACTIONS(9422), 1, + ACTIONS(8072), 1, sym_identifier, - ACTIONS(9424), 1, + ACTIONS(8074), 1, anon_sym_COLON_COLON, - ACTIONS(9428), 1, + ACTIONS(8076), 1, anon_sym_enum, - ACTIONS(9430), 1, + ACTIONS(8078), 1, anon_sym_class, - ACTIONS(9432), 1, + ACTIONS(8080), 1, anon_sym_struct, - ACTIONS(9434), 1, + ACTIONS(8082), 1, anon_sym_union, - ACTIONS(9436), 1, + ACTIONS(8084), 1, anon_sym_typename, - STATE(1784), 1, + STATE(2836), 1, + sym_qualified_type_identifier, + STATE(4024), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4519), 1, sym_type_specifier, - STATE(1859), 1, + STATE(4672), 1, sym_decltype_auto, - STATE(1869), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1902), 1, - sym_qualified_type_identifier, - STATE(6626), 1, + STATE(6743), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(8569), 1, sym_dependent_type_identifier, - STATE(1713), 2, + STATE(2439), 2, sym_decltype, sym_template_type, - ACTIONS(9426), 4, + ACTIONS(8030), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1879), 7, + STATE(4773), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -467039,52 +473886,52 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [207479] = 21, + [211350] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(9384), 1, - anon_sym_COLON_COLON, - ACTIONS(9392), 1, - anon_sym_class, - ACTIONS(9394), 1, - anon_sym_struct, - ACTIONS(9396), 1, - anon_sym_union, - ACTIONS(9398), 1, + ACTIONS(1844), 1, sym_auto, - ACTIONS(9400), 1, + ACTIONS(1846), 1, anon_sym_decltype, - ACTIONS(9481), 1, - sym_identifier, - ACTIONS(9485), 1, + ACTIONS(7986), 1, sym_primitive_type, - ACTIONS(9487), 1, + ACTIONS(9435), 1, + sym_identifier, + ACTIONS(9437), 1, + anon_sym_COLON_COLON, + ACTIONS(9441), 1, anon_sym_enum, - ACTIONS(9489), 1, + ACTIONS(9443), 1, + anon_sym_class, + ACTIONS(9445), 1, + anon_sym_struct, + ACTIONS(9447), 1, + anon_sym_union, + ACTIONS(9449), 1, anon_sym_typename, - STATE(1594), 1, + STATE(1887), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1900), 1, - sym_type_specifier, - STATE(2273), 1, - sym_qualified_type_identifier, - STATE(2309), 1, + STATE(1888), 1, sym_decltype_auto, - STATE(6580), 1, + STATE(1916), 1, + sym_qualified_type_identifier, + STATE(4134), 1, + sym_type_specifier, + STATE(6699), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(8569), 1, sym_dependent_type_identifier, - STATE(2174), 2, + STATE(1782), 2, sym_decltype, sym_template_type, - ACTIONS(9483), 4, + ACTIONS(9439), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2245), 7, + STATE(1890), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -467092,156 +473939,213 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [207553] = 19, + [211424] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2977), 1, - anon_sym_LPAREN2, - ACTIONS(2979), 1, - anon_sym_TILDE, - ACTIONS(5849), 1, - sym_identifier, - ACTIONS(5861), 1, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5495), 1, + anon_sym___declspec, + ACTIONS(6528), 1, + anon_sym_COLON, + ACTIONS(8028), 1, anon_sym_COLON_COLON, - ACTIONS(7089), 1, - anon_sym_LBRACK, - ACTIONS(7275), 1, - anon_sym_STAR, - ACTIONS(7277), 1, - anon_sym_AMP_AMP, - ACTIONS(7279), 1, - anon_sym_AMP, - STATE(5860), 1, + ACTIONS(8630), 1, + anon_sym_LBRACE, + ACTIONS(9668), 1, + sym_identifier, + STATE(1922), 1, + sym_template_type, + STATE(4635), 1, + sym_field_declaration_list, + STATE(4700), 1, + sym__class_declaration_item, + STATE(5660), 1, + sym_ms_declspec_modifier, + STATE(6719), 1, sym__scope_resolution, - STATE(5905), 1, - sym__declarator, - STATE(7536), 1, - sym_init_declarator, - STATE(8398), 1, - sym_ms_based_modifier, - STATE(8601), 3, + STATE(7213), 1, + sym_virtual_specifier, + STATE(7996), 1, + sym_base_class_clause, + ACTIONS(5489), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(5497), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(5567), 2, + anon_sym_final, + anon_sym_override, + STATE(4270), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5659), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8569), 2, sym_decltype, - sym_template_type, sym_dependent_type_identifier, - STATE(5998), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [207623] = 21, + STATE(6055), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + [211502] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7065), 1, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7072), 1, + ACTIONS(7075), 1, anon_sym_noexcept, - ACTIONS(7074), 1, + ACTIONS(7077), 1, anon_sym_throw, - ACTIONS(7147), 1, - anon_sym___attribute__, - ACTIONS(7745), 1, + ACTIONS(7799), 1, anon_sym_DASH_GT, - ACTIONS(9355), 1, + ACTIONS(9150), 1, anon_sym_LBRACK, - ACTIONS(9367), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9376), 1, + ACTIONS(9333), 1, + anon_sym___attribute__, + ACTIONS(9336), 1, + anon_sym___attribute, + ACTIONS(9366), 1, anon_sym_requires, - STATE(5448), 1, + STATE(6182), 1, sym_trailing_return_type, - STATE(6205), 1, + STATE(6231), 1, sym__function_attributes_end, - STATE(6766), 1, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(7063), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9357), 2, + ACTIONS(9327), 2, anon_sym_final, anon_sym_override, - STATE(5384), 2, + STATE(5455), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5458), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5606), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5839), 2, + STATE(6149), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9344), 3, + ACTIONS(9139), 3, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_EQ, - STATE(5350), 3, + STATE(5444), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - [207697] = 21, + [211576] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(73), 1, + anon_sym_enum, + ACTIONS(75), 1, + anon_sym_class, + ACTIONS(77), 1, + anon_sym_struct, + ACTIONS(79), 1, + anon_sym_union, + ACTIONS(125), 1, + sym_auto, + ACTIONS(127), 1, + anon_sym_decltype, + ACTIONS(131), 1, + anon_sym_typename, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(9382), 1, + ACTIONS(3019), 1, + sym_primitive_type, + ACTIONS(5226), 1, sym_identifier, - ACTIONS(9384), 1, + ACTIONS(5228), 1, + anon_sym_COLON_COLON, + STATE(2385), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2421), 1, + sym_type_specifier, + STATE(2453), 1, + sym_decltype_auto, + STATE(3138), 1, + sym_qualified_type_identifier, + STATE(6715), 1, + sym__scope_resolution, + STATE(8569), 1, + sym_dependent_type_identifier, + STATE(2439), 2, + sym_decltype, + sym_template_type, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2558), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [211650] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(9496), 1, + sym_identifier, + ACTIONS(9498), 1, anon_sym_COLON_COLON, - ACTIONS(9388), 1, + ACTIONS(9502), 1, sym_primitive_type, - ACTIONS(9390), 1, + ACTIONS(9504), 1, anon_sym_enum, - ACTIONS(9392), 1, + ACTIONS(9506), 1, anon_sym_class, - ACTIONS(9394), 1, + ACTIONS(9508), 1, anon_sym_struct, - ACTIONS(9396), 1, + ACTIONS(9510), 1, anon_sym_union, - ACTIONS(9398), 1, + ACTIONS(9512), 1, sym_auto, - ACTIONS(9400), 1, + ACTIONS(9514), 1, anon_sym_decltype, - ACTIONS(9402), 1, + ACTIONS(9516), 1, anon_sym_typename, - STATE(1592), 1, + STATE(1645), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2172), 1, + STATE(2857), 1, sym_type_specifier, - STATE(2273), 1, - sym_qualified_type_identifier, - STATE(2309), 1, + STATE(3157), 1, sym_decltype_auto, - STATE(6580), 1, + STATE(3216), 1, + sym_qualified_type_identifier, + STATE(6728), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(8569), 1, sym_dependent_type_identifier, - STATE(2174), 2, + STATE(3064), 2, sym_decltype, sym_template_type, - ACTIONS(9386), 4, + ACTIONS(9500), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2245), 7, + STATE(3158), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -467249,52 +474153,52 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [207771] = 21, + [211724] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(125), 1, sym_auto, ACTIONS(127), 1, anon_sym_decltype, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(3911), 1, + ACTIONS(3919), 1, sym_primitive_type, - ACTIONS(7968), 1, + ACTIONS(8058), 1, sym_identifier, - ACTIONS(7970), 1, + ACTIONS(8060), 1, anon_sym_COLON_COLON, - ACTIONS(7974), 1, + ACTIONS(8064), 1, anon_sym_class, - ACTIONS(7976), 1, + ACTIONS(8066), 1, anon_sym_struct, - ACTIONS(7978), 1, + ACTIONS(8068), 1, anon_sym_union, - ACTIONS(9650), 1, + ACTIONS(9678), 1, anon_sym_enum, - ACTIONS(9652), 1, + ACTIONS(9680), 1, anon_sym_typename, - STATE(2393), 1, - sym_type_specifier, - STATE(2501), 1, + STATE(2453), 1, sym_decltype_auto, - STATE(2809), 1, + STATE(2836), 1, sym_qualified_type_identifier, - STATE(5032), 1, + STATE(5109), 1, aux_sym_sized_type_specifier_repeat1, - STATE(6630), 1, + STATE(6729), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(7012), 1, + sym_type_specifier, + STATE(8569), 1, sym_dependent_type_identifier, - STATE(2406), 2, + STATE(2439), 2, sym_decltype, sym_template_type, - ACTIONS(9648), 4, + ACTIONS(9676), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2523), 7, + STATE(2558), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -467302,52 +474206,52 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [207845] = 21, + [211798] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(9576), 1, + ACTIONS(9496), 1, sym_identifier, - ACTIONS(9578), 1, + ACTIONS(9498), 1, anon_sym_COLON_COLON, - ACTIONS(9582), 1, + ACTIONS(9502), 1, sym_primitive_type, - ACTIONS(9584), 1, + ACTIONS(9504), 1, anon_sym_enum, - ACTIONS(9586), 1, + ACTIONS(9506), 1, anon_sym_class, - ACTIONS(9588), 1, + ACTIONS(9508), 1, anon_sym_struct, - ACTIONS(9590), 1, + ACTIONS(9510), 1, anon_sym_union, - ACTIONS(9592), 1, + ACTIONS(9512), 1, sym_auto, - ACTIONS(9594), 1, + ACTIONS(9514), 1, anon_sym_decltype, - ACTIONS(9596), 1, + ACTIONS(9516), 1, anon_sym_typename, - STATE(1860), 1, + STATE(1645), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1902), 1, - sym_qualified_type_identifier, - STATE(4019), 1, + STATE(2813), 1, sym_type_specifier, - STATE(4081), 1, + STATE(3157), 1, sym_decltype_auto, - STATE(6634), 1, + STATE(3216), 1, + sym_qualified_type_identifier, + STATE(6728), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(8569), 1, sym_dependent_type_identifier, - STATE(4024), 2, + STATE(3064), 2, sym_decltype, sym_template_type, - ACTIONS(9580), 4, + ACTIONS(9500), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4087), 7, + STATE(3158), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -467355,52 +474259,162 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [207919] = 21, + [211872] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5495), 1, + anon_sym___declspec, + ACTIONS(6363), 1, + anon_sym_LBRACE, + ACTIONS(6528), 1, + anon_sym_COLON, + ACTIONS(9612), 1, + anon_sym_COLON_COLON, + ACTIONS(9664), 1, + sym_identifier, + STATE(2598), 1, + sym_template_type, + STATE(2614), 1, + sym_field_declaration_list, + STATE(2703), 1, + sym__class_declaration_item, + STATE(5648), 1, + sym_ms_declspec_modifier, + STATE(6694), 1, + sym__scope_resolution, + STATE(7141), 1, + sym_virtual_specifier, + STATE(7773), 1, + sym_base_class_clause, + ACTIONS(5489), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(5497), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(5567), 2, + anon_sym_final, + anon_sym_override, + STATE(2374), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5643), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8569), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(6055), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + [211950] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(9526), 1, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5495), 1, + anon_sym___declspec, + ACTIONS(6528), 1, + anon_sym_COLON, + ACTIONS(7543), 1, + anon_sym_LBRACE, + ACTIONS(9412), 1, + anon_sym_COLON_COLON, + ACTIONS(9674), 1, sym_identifier, + STATE(3638), 1, + sym_template_type, + STATE(4009), 1, + sym_field_declaration_list, + STATE(4159), 1, + sym__class_declaration_item, + STATE(5579), 1, + sym_ms_declspec_modifier, + STATE(6732), 1, + sym__scope_resolution, + STATE(7061), 1, + sym_virtual_specifier, + STATE(7717), 1, + sym_base_class_clause, + ACTIONS(5489), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(5497), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(5567), 2, + anon_sym_final, + anon_sym_override, + STATE(3210), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5573), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8569), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(6055), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + [212028] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, ACTIONS(9528), 1, + sym_identifier, + ACTIONS(9530), 1, anon_sym_COLON_COLON, - ACTIONS(9532), 1, - sym_primitive_type, ACTIONS(9534), 1, - anon_sym_enum, + sym_primitive_type, ACTIONS(9536), 1, - anon_sym_class, + anon_sym_enum, ACTIONS(9538), 1, - anon_sym_struct, + anon_sym_class, ACTIONS(9540), 1, - anon_sym_union, + anon_sym_struct, ACTIONS(9542), 1, - sym_auto, + anon_sym_union, ACTIONS(9544), 1, - anon_sym_decltype, + sym_auto, ACTIONS(9546), 1, + anon_sym_decltype, + ACTIONS(9548), 1, anon_sym_typename, - STATE(1637), 1, + STATE(1612), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2881), 1, + STATE(2221), 1, sym_type_specifier, - STATE(3491), 1, + STATE(2306), 1, sym_decltype_auto, - STATE(3507), 1, + STATE(2335), 1, sym_qualified_type_identifier, - STATE(6578), 1, + STATE(6695), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(8569), 1, sym_dependent_type_identifier, - STATE(3329), 2, + STATE(2242), 2, sym_decltype, sym_template_type, - ACTIONS(9530), 4, + ACTIONS(9532), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3504), 7, + STATE(2310), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -467408,103 +474422,52 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [207993] = 19, + [212102] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(2977), 1, - anon_sym_LPAREN2, - ACTIONS(2979), 1, - anon_sym_TILDE, - ACTIONS(5849), 1, + ACTIONS(9410), 1, sym_identifier, - ACTIONS(5861), 1, + ACTIONS(9412), 1, anon_sym_COLON_COLON, - ACTIONS(7089), 1, - anon_sym_LBRACK, - ACTIONS(7275), 1, - anon_sym_STAR, - ACTIONS(7277), 1, - anon_sym_AMP_AMP, - ACTIONS(7279), 1, - anon_sym_AMP, - STATE(5860), 1, - sym__scope_resolution, - STATE(5914), 1, - sym__declarator, - STATE(7346), 1, - sym_init_declarator, - STATE(8398), 1, - sym_ms_based_modifier, - STATE(8601), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(5998), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [208063] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(125), 1, - sym_auto, - ACTIONS(127), 1, - anon_sym_decltype, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(2999), 1, + ACTIONS(9416), 1, sym_primitive_type, - ACTIONS(3001), 1, + ACTIONS(9418), 1, anon_sym_enum, - ACTIONS(3003), 1, + ACTIONS(9420), 1, anon_sym_class, - ACTIONS(3005), 1, + ACTIONS(9422), 1, anon_sym_struct, - ACTIONS(3007), 1, + ACTIONS(9424), 1, anon_sym_union, - ACTIONS(3009), 1, + ACTIONS(9426), 1, + sym_auto, + ACTIONS(9428), 1, + anon_sym_decltype, + ACTIONS(9430), 1, anon_sym_typename, - ACTIONS(5218), 1, - sym_identifier, - ACTIONS(5220), 1, - anon_sym_COLON_COLON, - STATE(2359), 1, + STATE(1860), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2393), 1, + STATE(1916), 1, + sym_qualified_type_identifier, + STATE(4089), 1, sym_type_specifier, - STATE(2501), 1, + STATE(4125), 1, sym_decltype_auto, - STATE(3015), 1, - sym_qualified_type_identifier, - STATE(6627), 1, + STATE(6732), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(8569), 1, sym_dependent_type_identifier, - STATE(2406), 2, + STATE(4102), 2, sym_decltype, sym_template_type, - ACTIONS(59), 4, + ACTIONS(9414), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2523), 7, + STATE(4108), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -467512,103 +474475,52 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [208137] = 19, + [212176] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1978), 1, + ACTIONS(3176), 1, + sym_auto, + ACTIONS(3178), 1, anon_sym_decltype, - ACTIONS(2977), 1, - anon_sym_LPAREN2, - ACTIONS(2979), 1, - anon_sym_TILDE, - ACTIONS(5849), 1, - sym_identifier, - ACTIONS(7089), 1, - anon_sym_LBRACK, - ACTIONS(7291), 1, - anon_sym_STAR, - ACTIONS(7293), 1, - anon_sym_AMP_AMP, - ACTIONS(7295), 1, - anon_sym_AMP, - ACTIONS(7297), 1, - anon_sym_COLON_COLON, - STATE(5835), 1, - sym__declarator, - STATE(5838), 1, - sym__scope_resolution, - STATE(7536), 1, - sym_init_declarator, - STATE(8021), 1, - sym_ms_based_modifier, - STATE(8601), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(5998), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [208207] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(9382), 1, + ACTIONS(8024), 1, + sym_primitive_type, + ACTIONS(9610), 1, sym_identifier, - ACTIONS(9384), 1, + ACTIONS(9612), 1, anon_sym_COLON_COLON, - ACTIONS(9388), 1, - sym_primitive_type, - ACTIONS(9390), 1, + ACTIONS(9616), 1, anon_sym_enum, - ACTIONS(9392), 1, + ACTIONS(9618), 1, anon_sym_class, - ACTIONS(9394), 1, + ACTIONS(9620), 1, anon_sym_struct, - ACTIONS(9396), 1, + ACTIONS(9622), 1, anon_sym_union, - ACTIONS(9398), 1, - sym_auto, - ACTIONS(9400), 1, - anon_sym_decltype, - ACTIONS(9402), 1, + ACTIONS(9624), 1, anon_sym_typename, - STATE(1592), 1, + STATE(2223), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1905), 1, - sym_type_specifier, - STATE(2273), 1, + STATE(2685), 1, sym_qualified_type_identifier, - STATE(2309), 1, + STATE(2733), 1, sym_decltype_auto, - STATE(6580), 1, + STATE(4166), 1, + sym_type_specifier, + STATE(6694), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(8569), 1, sym_dependent_type_identifier, - STATE(2174), 2, + STATE(2621), 2, sym_decltype, sym_template_type, - ACTIONS(9386), 4, + ACTIONS(9614), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2245), 7, + STATE(2747), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -467616,529 +474528,1135 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [208281] = 21, + [212250] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7065), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7072), 1, + ACTIONS(7075), 1, anon_sym_noexcept, - ACTIONS(7074), 1, + ACTIONS(7077), 1, anon_sym_throw, - ACTIONS(7337), 1, + ACTIONS(7299), 1, + anon_sym___attribute__, + ACTIONS(7738), 1, + anon_sym_DASH_GT, + ACTIONS(9150), 1, + anon_sym_LBRACK, + ACTIONS(9308), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9311), 1, anon_sym_requires, - ACTIONS(7667), 1, + STATE(5528), 1, + sym_trailing_return_type, + STATE(6349), 1, + sym__function_attributes_end, + STATE(6870), 1, + sym_gnu_asm_expression, + ACTIONS(7069), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9193), 2, + anon_sym_final, + anon_sym_override, + STATE(5455), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5507), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5927), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9139), 3, + anon_sym_LPAREN2, + anon_sym_LBRACE, + anon_sym_EQ, + STATE(5433), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [212324] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7071), 1, + anon_sym___asm, + ACTIONS(7075), 1, + anon_sym_noexcept, + ACTIONS(7077), 1, + anon_sym_throw, + ACTIONS(7799), 1, anon_sym_DASH_GT, - ACTIONS(9193), 1, + ACTIONS(9382), 1, anon_sym_LBRACK, - ACTIONS(9291), 1, + ACTIONS(9491), 1, + anon_sym_requires, + ACTIONS(9518), 1, anon_sym___attribute__, - ACTIONS(9294), 1, + ACTIONS(9521), 1, anon_sym___attribute, - STATE(6013), 1, + STATE(6111), 1, sym_trailing_return_type, - STATE(6095), 1, + STATE(6232), 1, sym__function_attributes_end, - STATE(6766), 1, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(7063), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7335), 2, + ACTIONS(9488), 2, anon_sym_final, anon_sym_override, - STATE(5384), 2, + STATE(5455), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5458), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6012), 2, + STATE(6132), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9182), 3, + ACTIONS(9371), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - STATE(5344), 3, + STATE(5425), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - [208355] = 23, + [212398] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1844), 1, + sym_auto, + ACTIONS(1846), 1, + anon_sym_decltype, + ACTIONS(7986), 1, + sym_primitive_type, + ACTIONS(9435), 1, + sym_identifier, + ACTIONS(9437), 1, + anon_sym_COLON_COLON, + ACTIONS(9441), 1, + anon_sym_enum, + ACTIONS(9443), 1, + anon_sym_class, + ACTIONS(9445), 1, + anon_sym_struct, + ACTIONS(9447), 1, + anon_sym_union, + ACTIONS(9449), 1, + anon_sym_typename, + STATE(1887), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1888), 1, + sym_decltype_auto, + STATE(1916), 1, + sym_qualified_type_identifier, + STATE(3978), 1, + sym_type_specifier, + STATE(6699), 1, + sym__scope_resolution, + STATE(8569), 1, + sym_dependent_type_identifier, + STATE(1782), 2, + sym_decltype, + sym_template_type, + ACTIONS(9439), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1890), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [212472] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, + ACTIONS(5495), 1, anon_sym___declspec, - ACTIONS(6540), 1, - anon_sym_COLON, - ACTIONS(7520), 1, + ACTIONS(6035), 1, anon_sym_LBRACE, - ACTIONS(9578), 1, + ACTIONS(6528), 1, + anon_sym_COLON, + ACTIONS(8088), 1, anon_sym_COLON_COLON, - ACTIONS(9638), 1, + ACTIONS(9649), 1, sym_identifier, - STATE(3681), 1, + STATE(1784), 1, sym_template_type, - STATE(3943), 1, - sym_field_declaration_list, - STATE(4056), 1, + STATE(1886), 1, sym__class_declaration_item, - STATE(5576), 1, + STATE(5190), 1, + sym_field_declaration_list, + STATE(5601), 1, sym_ms_declspec_modifier, - STATE(6634), 1, + STATE(6724), 1, sym__scope_resolution, - STATE(6934), 1, + STATE(7203), 1, sym_virtual_specifier, - STATE(7796), 1, + STATE(7975), 1, sym_base_class_clause, - ACTIONS(5468), 2, + ACTIONS(5489), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5476), 2, + ACTIONS(5497), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(3127), 2, + STATE(4535), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5575), 2, + STATE(5613), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5952), 3, + STATE(6055), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [208433] = 21, + [212550] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7071), 1, + anon_sym___asm, + ACTIONS(7073), 1, + anon_sym_DASH_GT, + ACTIONS(7079), 1, + anon_sym_requires, + ACTIONS(9141), 1, + anon_sym___attribute__, + ACTIONS(9144), 1, + anon_sym___attribute, + ACTIONS(9147), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9150), 1, + anon_sym_LBRACK, + STATE(5671), 1, + sym_trailing_return_type, + STATE(5814), 1, + sym__function_attributes_end, + STATE(6850), 1, + sym_gnu_asm_expression, + ACTIONS(6037), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7069), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5540), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5730), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5927), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9139), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [212617] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(9501), 1, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(2997), 1, + anon_sym_LPAREN2, + ACTIONS(2999), 1, + anon_sym_TILDE, + ACTIONS(5481), 1, sym_identifier, - ACTIONS(9503), 1, + ACTIONS(6365), 1, anon_sym_COLON_COLON, - ACTIONS(9507), 1, - sym_primitive_type, - ACTIONS(9509), 1, - anon_sym_enum, - ACTIONS(9511), 1, - anon_sym_class, - ACTIONS(9513), 1, - anon_sym_struct, - ACTIONS(9515), 1, - anon_sym_union, - ACTIONS(9517), 1, - sym_auto, - ACTIONS(9519), 1, + ACTIONS(7103), 1, + anon_sym_LBRACK, + ACTIONS(7111), 1, + anon_sym_STAR, + ACTIONS(7113), 1, + anon_sym_AMP_AMP, + ACTIONS(7115), 1, + anon_sym_AMP, + STATE(5923), 1, + sym__scope_resolution, + STATE(6463), 1, + sym__declarator, + STATE(8339), 1, + sym_ms_based_modifier, + STATE(8569), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6145), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [212684] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(9521), 1, - anon_sym_typename, - STATE(1619), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2750), 1, - sym_type_specifier, - STATE(2976), 1, - sym_decltype_auto, - STATE(2983), 1, - sym_qualified_type_identifier, - STATE(6633), 1, + ACTIONS(2997), 1, + anon_sym_LPAREN2, + ACTIONS(2999), 1, + anon_sym_TILDE, + ACTIONS(5481), 1, + sym_identifier, + ACTIONS(6365), 1, + anon_sym_COLON_COLON, + ACTIONS(7103), 1, + anon_sym_LBRACK, + ACTIONS(7111), 1, + anon_sym_STAR, + ACTIONS(7113), 1, + anon_sym_AMP_AMP, + ACTIONS(7115), 1, + anon_sym_AMP, + STATE(5923), 1, + sym__scope_resolution, + STATE(6330), 1, + sym__declarator, + STATE(8339), 1, + sym_ms_based_modifier, + STATE(8569), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6145), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [212751] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(2997), 1, + anon_sym_LPAREN2, + ACTIONS(2999), 1, + anon_sym_TILDE, + ACTIONS(5481), 1, + sym_identifier, + ACTIONS(6365), 1, + anon_sym_COLON_COLON, + ACTIONS(7103), 1, + anon_sym_LBRACK, + ACTIONS(7111), 1, + anon_sym_STAR, + ACTIONS(7113), 1, + anon_sym_AMP_AMP, + ACTIONS(7115), 1, + anon_sym_AMP, + STATE(5923), 1, + sym__scope_resolution, + STATE(6314), 1, + sym__declarator, + STATE(8339), 1, + sym_ms_based_modifier, + STATE(8569), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6145), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [212818] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(2997), 1, + anon_sym_LPAREN2, + ACTIONS(2999), 1, + anon_sym_TILDE, + ACTIONS(5861), 1, + sym_identifier, + ACTIONS(5873), 1, + anon_sym_COLON_COLON, + ACTIONS(7103), 1, + anon_sym_LBRACK, + ACTIONS(7219), 1, + anon_sym_STAR, + ACTIONS(7221), 1, + anon_sym_AMP_AMP, + ACTIONS(7223), 1, + anon_sym_AMP, + STATE(5896), 1, + sym__scope_resolution, + STATE(6643), 1, + sym__declarator, + STATE(8381), 1, + sym_ms_based_modifier, + STATE(8569), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6145), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [212885] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(2997), 1, + anon_sym_LPAREN2, + ACTIONS(2999), 1, + anon_sym_TILDE, + ACTIONS(3001), 1, + anon_sym_STAR, + ACTIONS(3003), 1, + anon_sym_AMP, + ACTIONS(5481), 1, + sym_identifier, + ACTIONS(6365), 1, + anon_sym_COLON_COLON, + ACTIONS(7103), 1, + anon_sym_LBRACK, + STATE(5923), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(6818), 1, + sym__declarator, + STATE(8864), 1, + sym_ms_based_modifier, + STATE(8569), 3, + sym_decltype, + sym_template_type, sym_dependent_type_identifier, - STATE(2924), 2, + STATE(6145), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [212952] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(2997), 1, + anon_sym_LPAREN2, + ACTIONS(2999), 1, + anon_sym_TILDE, + ACTIONS(7103), 1, + anon_sym_LBRACK, + ACTIONS(7209), 1, + sym_identifier, + ACTIONS(7211), 1, + anon_sym_STAR, + ACTIONS(7213), 1, + anon_sym_AMP_AMP, + ACTIONS(7215), 1, + anon_sym_AMP, + ACTIONS(7217), 1, + anon_sym_COLON_COLON, + STATE(5895), 1, + sym__scope_resolution, + STATE(5972), 1, + sym__declarator, + STATE(8623), 1, + sym_ms_based_modifier, + STATE(8569), 3, sym_decltype, sym_template_type, - ACTIONS(9505), 4, + sym_dependent_type_identifier, + STATE(6145), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [213019] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(5047), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5517), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(9682), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2978), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [208507] = 23, + ACTIONS(5515), 21, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___based, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + sym_auto, + anon_sym_decltype, + [213060] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1268), 1, anon_sym_template, + ACTIONS(1850), 1, + anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, - anon_sym___declspec, - ACTIONS(6540), 1, + ACTIONS(2997), 1, + anon_sym_LPAREN2, + ACTIONS(2999), 1, + anon_sym_TILDE, + ACTIONS(7103), 1, + anon_sym_LBRACK, + ACTIONS(7209), 1, + sym_identifier, + ACTIONS(7217), 1, + anon_sym_COLON_COLON, + ACTIONS(7265), 1, + anon_sym_STAR, + ACTIONS(7267), 1, + anon_sym_AMP_AMP, + ACTIONS(7269), 1, + anon_sym_AMP, + STATE(5895), 1, + sym__scope_resolution, + STATE(6551), 1, + sym__declarator, + STATE(8135), 1, + sym_ms_based_modifier, + STATE(8569), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6145), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [213127] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(2997), 1, + anon_sym_LPAREN2, + ACTIONS(2999), 1, + anon_sym_TILDE, + ACTIONS(5861), 1, + sym_identifier, + ACTIONS(5873), 1, + anon_sym_COLON_COLON, + ACTIONS(7103), 1, + anon_sym_LBRACK, + ACTIONS(7105), 1, + anon_sym_STAR, + ACTIONS(7107), 1, + anon_sym_AMP_AMP, + ACTIONS(7109), 1, + anon_sym_AMP, + STATE(5896), 1, + sym__scope_resolution, + STATE(6205), 1, + sym__declarator, + STATE(8504), 1, + sym_ms_based_modifier, + STATE(8569), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6145), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [213194] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8050), 3, + anon_sym_AMP, + sym_ms_restrict_modifier, + anon_sym_const, + ACTIONS(8052), 26, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym___extension__, anon_sym_COLON, - ACTIONS(6692), 1, - anon_sym_LBRACE, - ACTIONS(9440), 1, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + anon_sym__unaligned, + anon_sym___unaligned, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [213231] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(2997), 1, + anon_sym_LPAREN2, + ACTIONS(2999), 1, + anon_sym_TILDE, + ACTIONS(5481), 1, + sym_identifier, + ACTIONS(6365), 1, anon_sym_COLON_COLON, - ACTIONS(9632), 1, + ACTIONS(7103), 1, + anon_sym_LBRACK, + ACTIONS(7111), 1, + anon_sym_STAR, + ACTIONS(7113), 1, + anon_sym_AMP_AMP, + ACTIONS(7115), 1, + anon_sym_AMP, + STATE(5923), 1, + sym__scope_resolution, + STATE(6309), 1, + sym__declarator, + STATE(8339), 1, + sym_ms_based_modifier, + STATE(8569), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6145), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [213298] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(2997), 1, + anon_sym_LPAREN2, + ACTIONS(2999), 1, + anon_sym_TILDE, + ACTIONS(5861), 1, sym_identifier, - STATE(2669), 1, - sym_template_type, - STATE(2853), 1, - sym_field_declaration_list, - STATE(3188), 1, - sym__class_declaration_item, - STATE(5532), 1, - sym_ms_declspec_modifier, - STATE(6620), 1, + ACTIONS(7103), 1, + anon_sym_LBRACK, + ACTIONS(7271), 1, + anon_sym_STAR, + ACTIONS(7273), 1, + anon_sym_AMP_AMP, + ACTIONS(7275), 1, + anon_sym_AMP, + ACTIONS(7277), 1, + anon_sym_COLON_COLON, + STATE(5967), 1, sym__scope_resolution, - STATE(6970), 1, - sym_virtual_specifier, - STATE(7867), 1, - sym_base_class_clause, - ACTIONS(5468), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5476), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(5503), 2, - anon_sym_final, - anon_sym_override, - STATE(2503), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5531), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(6210), 1, + sym__declarator, + STATE(8221), 1, + sym_ms_based_modifier, + STATE(8569), 3, sym_decltype, + sym_template_type, sym_dependent_type_identifier, - STATE(5952), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [208585] = 21, + STATE(6145), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [213365] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7065), 1, - anon_sym___asm, - ACTIONS(7072), 1, - anon_sym_noexcept, - ACTIONS(7074), 1, - anon_sym_throw, - ACTIONS(7653), 1, - anon_sym_DASH_GT, - ACTIONS(9355), 1, + ACTIONS(8054), 3, + anon_sym_AMP, + sym_ms_restrict_modifier, + anon_sym_const, + ACTIONS(8056), 26, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym___extension__, + anon_sym_COLON, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + anon_sym__unaligned, + anon_sym___unaligned, anon_sym_LBRACK, - ACTIONS(9466), 1, - anon_sym___attribute__, - ACTIONS(9469), 1, - anon_sym___attribute, - ACTIONS(9629), 1, - anon_sym_requires, - STATE(6124), 1, - sym__function_attributes_end, - STATE(6189), 1, - sym_trailing_return_type, - STATE(6766), 1, - sym_gnu_asm_expression, - ACTIONS(7063), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9495), 2, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_final, anon_sym_override, - STATE(5384), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5458), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6032), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9344), 3, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_GT2, - STATE(5360), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - [208659] = 21, + anon_sym_requires, + [213402] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(8059), 1, - sym_primitive_type, - ACTIONS(8069), 1, - sym_auto, - ACTIONS(8071), 1, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(8079), 1, + ACTIONS(2997), 1, + anon_sym_LPAREN2, + ACTIONS(2999), 1, + anon_sym_TILDE, + ACTIONS(7103), 1, + anon_sym_LBRACK, + ACTIONS(7209), 1, sym_identifier, - ACTIONS(8081), 1, + ACTIONS(7211), 1, + anon_sym_STAR, + ACTIONS(7213), 1, + anon_sym_AMP_AMP, + ACTIONS(7215), 1, + anon_sym_AMP, + ACTIONS(7217), 1, anon_sym_COLON_COLON, - ACTIONS(8083), 1, - anon_sym_enum, - ACTIONS(8085), 1, - anon_sym_class, - ACTIONS(8087), 1, - anon_sym_struct, - ACTIONS(8089), 1, - anon_sym_union, - ACTIONS(8091), 1, - anon_sym_typename, - STATE(2809), 1, - sym_qualified_type_identifier, - STATE(3931), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4468), 1, - sym_type_specifier, - STATE(4612), 1, - sym_decltype_auto, - STATE(6615), 1, + STATE(5895), 1, sym__scope_resolution, - STATE(8601), 1, - sym_dependent_type_identifier, - STATE(2406), 2, + STATE(6005), 1, + sym__declarator, + STATE(8623), 1, + sym_ms_based_modifier, + STATE(8569), 3, sym_decltype, sym_template_type, - ACTIONS(8057), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(4706), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [208733] = 23, + sym_dependent_type_identifier, + STATE(6145), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [213469] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1268), 1, anon_sym_template, + ACTIONS(1850), 1, + anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5220), 1, - anon_sym_COLON_COLON, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, - anon_sym___declspec, - ACTIONS(6540), 1, - anon_sym_COLON, - ACTIONS(6542), 1, - anon_sym_LBRACE, - ACTIONS(9613), 1, + ACTIONS(2997), 1, + anon_sym_LPAREN2, + ACTIONS(2999), 1, + anon_sym_TILDE, + ACTIONS(7103), 1, + anon_sym_LBRACK, + ACTIONS(7209), 1, sym_identifier, - STATE(1893), 1, - sym_template_type, - STATE(2516), 1, - sym__class_declaration_item, - STATE(2917), 1, - sym_field_declaration_list, - STATE(5516), 1, - sym_ms_declspec_modifier, - STATE(6627), 1, + ACTIONS(7217), 1, + anon_sym_COLON_COLON, + ACTIONS(7265), 1, + anon_sym_STAR, + ACTIONS(7267), 1, + anon_sym_AMP_AMP, + ACTIONS(7269), 1, + anon_sym_AMP, + STATE(5895), 1, sym__scope_resolution, - STATE(6995), 1, - sym_virtual_specifier, - STATE(7645), 1, - sym_base_class_clause, - ACTIONS(5468), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5476), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(5503), 2, - anon_sym_final, - anon_sym_override, - STATE(2434), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5508), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(6561), 1, + sym__declarator, + STATE(8135), 1, + sym_ms_based_modifier, + STATE(8569), 3, sym_decltype, + sym_template_type, sym_dependent_type_identifier, - STATE(5952), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [208811] = 21, + STATE(6145), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [213536] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(3164), 1, - sym_auto, - ACTIONS(3166), 1, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(8051), 1, - sym_primitive_type, - ACTIONS(9404), 1, + ACTIONS(2997), 1, + anon_sym_LPAREN2, + ACTIONS(2999), 1, + anon_sym_TILDE, + ACTIONS(3001), 1, + anon_sym_STAR, + ACTIONS(3003), 1, + anon_sym_AMP, + ACTIONS(5481), 1, sym_identifier, - ACTIONS(9406), 1, + ACTIONS(6365), 1, anon_sym_COLON_COLON, - ACTIONS(9410), 1, - anon_sym_enum, - ACTIONS(9412), 1, - anon_sym_class, - ACTIONS(9414), 1, - anon_sym_struct, - ACTIONS(9416), 1, - anon_sym_union, - ACTIONS(9418), 1, - anon_sym_typename, - STATE(2170), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2657), 1, - sym_qualified_type_identifier, - STATE(2708), 1, - sym_decltype_auto, - STATE(4136), 1, - sym_type_specifier, - STATE(6594), 1, + ACTIONS(7103), 1, + anon_sym_LBRACK, + STATE(5923), 1, sym__scope_resolution, - STATE(8601), 1, - sym_dependent_type_identifier, - STATE(2598), 2, + STATE(6752), 1, + sym__declarator, + STATE(8864), 1, + sym_ms_based_modifier, + STATE(8569), 3, sym_decltype, sym_template_type, - ACTIONS(9408), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2668), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [208885] = 21, + sym_dependent_type_identifier, + STATE(6145), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [213603] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(9576), 1, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(2997), 1, + anon_sym_LPAREN2, + ACTIONS(2999), 1, + anon_sym_TILDE, + ACTIONS(3001), 1, + anon_sym_STAR, + ACTIONS(3003), 1, + anon_sym_AMP, + ACTIONS(5481), 1, sym_identifier, - ACTIONS(9578), 1, + ACTIONS(6365), 1, anon_sym_COLON_COLON, - ACTIONS(9582), 1, - sym_primitive_type, - ACTIONS(9584), 1, - anon_sym_enum, - ACTIONS(9586), 1, - anon_sym_class, - ACTIONS(9588), 1, - anon_sym_struct, - ACTIONS(9590), 1, - anon_sym_union, - ACTIONS(9592), 1, - sym_auto, - ACTIONS(9594), 1, - anon_sym_decltype, - ACTIONS(9596), 1, - anon_sym_typename, - STATE(1860), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1902), 1, - sym_qualified_type_identifier, - STATE(3826), 1, - sym_type_specifier, - STATE(4081), 1, - sym_decltype_auto, - STATE(6634), 1, + ACTIONS(7103), 1, + anon_sym_LBRACK, + STATE(5923), 1, sym__scope_resolution, - STATE(8601), 1, - sym_dependent_type_identifier, - STATE(4024), 2, + STATE(6779), 1, + sym__declarator, + STATE(8864), 1, + sym_ms_based_modifier, + STATE(8569), 3, sym_decltype, sym_template_type, - ACTIONS(9580), 4, + sym_dependent_type_identifier, + STATE(6145), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [213670] = 7, + ACTIONS(3), 1, + sym_comment, + STATE(1680), 1, + sym_alignas_qualifier, + ACTIONS(69), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1669), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(9687), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(9685), 8, + anon_sym_AMP, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4087), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [208959] = 19, + sym_primitive_type, + sym_identifier, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [213715] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1852), 1, + ACTIONS(1850), 1, anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2977), 1, + ACTIONS(2997), 1, anon_sym_LPAREN2, - ACTIONS(2979), 1, + ACTIONS(2999), 1, anon_sym_TILDE, - ACTIONS(5849), 1, + ACTIONS(5481), 1, sym_identifier, - ACTIONS(5861), 1, + ACTIONS(6365), 1, anon_sym_COLON_COLON, - ACTIONS(7089), 1, + ACTIONS(7103), 1, anon_sym_LBRACK, - ACTIONS(7275), 1, + ACTIONS(7111), 1, anon_sym_STAR, - ACTIONS(7277), 1, + ACTIONS(7113), 1, anon_sym_AMP_AMP, - ACTIONS(7279), 1, + ACTIONS(7115), 1, anon_sym_AMP, - STATE(5860), 1, + STATE(5923), 1, sym__scope_resolution, - STATE(5965), 1, + STATE(6318), 1, sym__declarator, - STATE(7810), 1, - sym_init_declarator, - STATE(8398), 1, + STATE(8339), 1, sym_ms_based_modifier, - STATE(8601), 3, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(5998), 11, + STATE(6145), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -468150,311 +475668,240 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [209029] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7065), 1, - anon_sym___asm, - ACTIONS(7072), 1, - anon_sym_noexcept, - ACTIONS(7074), 1, - anon_sym_throw, - ACTIONS(7551), 1, - anon_sym_requires, - ACTIONS(7653), 1, - anon_sym_DASH_GT, - ACTIONS(9193), 1, - anon_sym_LBRACK, - ACTIONS(9291), 1, - anon_sym___attribute__, - ACTIONS(9294), 1, - anon_sym___attribute, - STATE(6114), 1, - sym__function_attributes_end, - STATE(6207), 1, - sym_trailing_return_type, - STATE(6766), 1, - sym_gnu_asm_expression, - ACTIONS(7063), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7335), 2, - anon_sym_final, - anon_sym_override, - STATE(5384), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5458), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6012), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9182), 3, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_GT2, - STATE(5346), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - [209103] = 21, + [213782] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1846), 1, - sym_auto, - ACTIONS(1848), 1, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(7961), 1, - sym_primitive_type, - ACTIONS(9422), 1, + ACTIONS(2997), 1, + anon_sym_LPAREN2, + ACTIONS(2999), 1, + anon_sym_TILDE, + ACTIONS(5481), 1, sym_identifier, - ACTIONS(9424), 1, + ACTIONS(7103), 1, + anon_sym_LBRACK, + ACTIONS(7257), 1, + anon_sym_STAR, + ACTIONS(7259), 1, + anon_sym_AMP_AMP, + ACTIONS(7261), 1, + anon_sym_AMP, + ACTIONS(7263), 1, anon_sym_COLON_COLON, - ACTIONS(9428), 1, - anon_sym_enum, - ACTIONS(9430), 1, - anon_sym_class, - ACTIONS(9432), 1, - anon_sym_struct, - ACTIONS(9434), 1, - anon_sym_union, - ACTIONS(9436), 1, - anon_sym_typename, - STATE(1859), 1, - sym_decltype_auto, - STATE(1869), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1902), 1, - sym_qualified_type_identifier, - STATE(3968), 1, - sym_type_specifier, - STATE(6626), 1, + STATE(5931), 1, sym__scope_resolution, - STATE(8601), 1, - sym_dependent_type_identifier, - STATE(1713), 2, + STATE(6767), 1, + sym__declarator, + STATE(8398), 1, + sym_ms_based_modifier, + STATE(8569), 3, sym_decltype, sym_template_type, - ACTIONS(9426), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1879), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [209177] = 21, + sym_dependent_type_identifier, + STATE(6145), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [213849] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(8053), 1, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(2997), 1, + anon_sym_LPAREN2, + ACTIONS(2999), 1, + anon_sym_TILDE, + ACTIONS(7103), 1, + anon_sym_LBRACK, + ACTIONS(7209), 1, sym_identifier, - ACTIONS(8055), 1, + ACTIONS(7211), 1, + anon_sym_STAR, + ACTIONS(7213), 1, + anon_sym_AMP_AMP, + ACTIONS(7215), 1, + anon_sym_AMP, + ACTIONS(7217), 1, anon_sym_COLON_COLON, - ACTIONS(8059), 1, - sym_primitive_type, - ACTIONS(8061), 1, - anon_sym_enum, - ACTIONS(8063), 1, - anon_sym_class, - ACTIONS(8065), 1, - anon_sym_struct, - ACTIONS(8067), 1, - anon_sym_union, - ACTIONS(8069), 1, - sym_auto, - ACTIONS(8071), 1, - anon_sym_decltype, - ACTIONS(8073), 1, - anon_sym_typename, - STATE(2809), 1, - sym_qualified_type_identifier, - STATE(3931), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4468), 1, - sym_type_specifier, - STATE(4612), 1, - sym_decltype_auto, - STATE(6592), 1, + STATE(5895), 1, sym__scope_resolution, - STATE(8601), 1, - sym_dependent_type_identifier, - STATE(2406), 2, + STATE(6007), 1, + sym__declarator, + STATE(8623), 1, + sym_ms_based_modifier, + STATE(8569), 3, sym_decltype, sym_template_type, - ACTIONS(8057), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(4706), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [209251] = 23, + sym_dependent_type_identifier, + STATE(6145), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [213916] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1268), 1, anon_sym_template, + ACTIONS(1850), 1, + anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5474), 1, - anon_sym___declspec, - ACTIONS(6018), 1, - anon_sym_LBRACE, - ACTIONS(6540), 1, - anon_sym_COLON, - ACTIONS(9424), 1, - anon_sym_COLON_COLON, - ACTIONS(9642), 1, + ACTIONS(2997), 1, + anon_sym_LPAREN2, + ACTIONS(2999), 1, + anon_sym_TILDE, + ACTIONS(7103), 1, + anon_sym_LBRACK, + ACTIONS(7209), 1, sym_identifier, - STATE(1816), 1, - sym_template_type, - STATE(1854), 1, - sym__class_declaration_item, - STATE(2336), 1, - sym_field_declaration_list, - STATE(5634), 1, - sym_ms_declspec_modifier, - STATE(6626), 1, + ACTIONS(7211), 1, + anon_sym_STAR, + ACTIONS(7213), 1, + anon_sym_AMP_AMP, + ACTIONS(7215), 1, + anon_sym_AMP, + ACTIONS(7217), 1, + anon_sym_COLON_COLON, + STATE(5895), 1, sym__scope_resolution, - STATE(6997), 1, - sym_virtual_specifier, - STATE(7837), 1, - sym_base_class_clause, - ACTIONS(5468), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5476), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(5503), 2, - anon_sym_final, - anon_sym_override, - STATE(2107), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5484), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(6022), 1, + sym__declarator, + STATE(8623), 1, + sym_ms_based_modifier, + STATE(8569), 3, sym_decltype, + sym_template_type, sym_dependent_type_identifier, - STATE(5952), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [209329] = 21, + STATE(6145), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [213983] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(73), 1, - anon_sym_enum, - ACTIONS(75), 1, - anon_sym_class, - ACTIONS(77), 1, - anon_sym_struct, - ACTIONS(79), 1, - anon_sym_union, - ACTIONS(125), 1, - sym_auto, - ACTIONS(127), 1, - anon_sym_decltype, - ACTIONS(131), 1, - anon_sym_typename, - ACTIONS(1452), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1268), 1, anon_sym_template, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(2997), 1, + anon_sym_LPAREN2, ACTIONS(2999), 1, - sym_primitive_type, - ACTIONS(5218), 1, + anon_sym_TILDE, + ACTIONS(7103), 1, + anon_sym_LBRACK, + ACTIONS(7209), 1, sym_identifier, - ACTIONS(5220), 1, + ACTIONS(7217), 1, anon_sym_COLON_COLON, - STATE(2359), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2393), 1, - sym_type_specifier, - STATE(2501), 1, - sym_decltype_auto, - STATE(3015), 1, - sym_qualified_type_identifier, - STATE(6627), 1, + ACTIONS(7265), 1, + anon_sym_STAR, + ACTIONS(7267), 1, + anon_sym_AMP_AMP, + ACTIONS(7269), 1, + anon_sym_AMP, + STATE(5895), 1, sym__scope_resolution, - STATE(8601), 1, - sym_dependent_type_identifier, - STATE(2406), 2, + STATE(6523), 1, + sym__declarator, + STATE(8135), 1, + sym_ms_based_modifier, + STATE(8569), 3, sym_decltype, sym_template_type, - ACTIONS(59), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2523), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [209403] = 18, + sym_dependent_type_identifier, + STATE(6145), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [214050] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1852), 1, + ACTIONS(1850), 1, anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2977), 1, + ACTIONS(2997), 1, anon_sym_LPAREN2, - ACTIONS(2979), 1, + ACTIONS(2999), 1, anon_sym_TILDE, - ACTIONS(5460), 1, - sym_identifier, - ACTIONS(7089), 1, + ACTIONS(7103), 1, anon_sym_LBRACK, - ACTIONS(7171), 1, + ACTIONS(7209), 1, + sym_identifier, + ACTIONS(7217), 1, + anon_sym_COLON_COLON, + ACTIONS(7265), 1, anon_sym_STAR, - ACTIONS(7173), 1, + ACTIONS(7267), 1, anon_sym_AMP_AMP, - ACTIONS(7175), 1, + ACTIONS(7269), 1, anon_sym_AMP, - ACTIONS(7177), 1, - anon_sym_COLON_COLON, - STATE(5850), 1, + STATE(5895), 1, sym__scope_resolution, - STATE(6689), 1, + STATE(6545), 1, sym__declarator, - STATE(8214), 1, + STATE(8135), 1, sym_ms_based_modifier, - STATE(8601), 3, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(5998), 11, + STATE(6145), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -468466,290 +475913,142 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [209470] = 21, + [214117] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7065), 1, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7072), 1, - anon_sym_noexcept, - ACTIONS(7074), 1, - anon_sym_throw, - ACTIONS(7083), 1, + ACTIONS(7073), 1, + anon_sym_DASH_GT, + ACTIONS(7079), 1, + anon_sym_requires, + ACTIONS(9373), 1, anon_sym___attribute__, - ACTIONS(7085), 1, + ACTIONS(9376), 1, anon_sym___attribute, - ACTIONS(7337), 1, - anon_sym_requires, - ACTIONS(7838), 1, + ACTIONS(9379), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7840), 1, - anon_sym_DASH_GT, - ACTIONS(9193), 1, + ACTIONS(9382), 1, anon_sym_LBRACK, - STATE(6013), 1, + STATE(5567), 1, sym_trailing_return_type, - STATE(6360), 1, + STATE(5722), 1, sym__function_attributes_end, - STATE(6745), 1, + STATE(6850), 1, sym_gnu_asm_expression, - ACTIONS(7063), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7335), 2, + ACTIONS(6037), 2, anon_sym_final, anon_sym_override, - ACTIONS(9182), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - STATE(5428), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5733), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6012), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5383), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - [209543] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7065), 1, - anon_sym___asm, - ACTIONS(7072), 1, - anon_sym_noexcept, - ACTIONS(7074), 1, - anon_sym_throw, - ACTIONS(7083), 1, - anon_sym___attribute__, - ACTIONS(7085), 1, - anon_sym___attribute, - ACTIONS(7337), 1, - anon_sym_requires, - ACTIONS(7838), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7840), 1, - anon_sym_DASH_GT, - ACTIONS(9355), 1, - anon_sym_LBRACK, - STATE(6033), 1, - sym_trailing_return_type, - STATE(6361), 1, - sym__function_attributes_end, - STATE(6745), 1, - sym_gnu_asm_expression, - ACTIONS(7063), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7335), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(9344), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - STATE(5428), 2, + STATE(5540), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5733), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6032), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5374), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - [209616] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7065), 1, - anon_sym___asm, - ACTIONS(7072), 1, - anon_sym_noexcept, - ACTIONS(7074), 1, - anon_sym_throw, - ACTIONS(7083), 1, - anon_sym___attribute__, - ACTIONS(7085), 1, - anon_sym___attribute, - ACTIONS(7838), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7840), 1, - anon_sym_DASH_GT, - ACTIONS(9193), 1, - anon_sym_LBRACK, - ACTIONS(9328), 1, - anon_sym_requires, - STATE(6034), 1, - sym_trailing_return_type, - STATE(6372), 1, - sym__function_attributes_end, - STATE(6745), 1, - sym_gnu_asm_expression, - ACTIONS(7063), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9182), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - ACTIONS(9297), 2, - anon_sym_final, - anon_sym_override, - STATE(5428), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5733), 2, + STATE(5730), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6012), 2, + STATE(5934), 2, sym__function_postfix, sym_requires_clause, - STATE(5391), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - [209689] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7065), 1, - anon_sym___asm, - ACTIONS(7072), 1, - anon_sym_noexcept, - ACTIONS(7074), 1, - anon_sym_throw, - ACTIONS(7083), 1, - anon_sym___attribute__, - ACTIONS(7085), 1, - anon_sym___attribute, - ACTIONS(7838), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7840), 1, - anon_sym_DASH_GT, - ACTIONS(9355), 1, - anon_sym_LBRACK, - ACTIONS(9498), 1, - anon_sym_requires, - STATE(6063), 1, - sym_trailing_return_type, - STATE(6373), 1, - sym__function_attributes_end, - STATE(6745), 1, - sym_gnu_asm_expression, - ACTIONS(7063), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9344), 2, + ACTIONS(9371), 7, + anon_sym_COMMA, anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym_COLON, - ACTIONS(9495), 2, - anon_sym_final, - anon_sym_override, - STATE(5428), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5733), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6032), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5385), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - [209762] = 7, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [214184] = 18, ACTIONS(3), 1, sym_comment, - STATE(1658), 1, - sym_alignas_qualifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1633), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(9656), 3, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(2997), 1, anon_sym_LPAREN2, + ACTIONS(2999), 1, + anon_sym_TILDE, + ACTIONS(5481), 1, + sym_identifier, + ACTIONS(6365), 1, + anon_sym_COLON_COLON, + ACTIONS(7103), 1, + anon_sym_LBRACK, + ACTIONS(7111), 1, anon_sym_STAR, + ACTIONS(7113), 1, anon_sym_AMP_AMP, - ACTIONS(9654), 8, + ACTIONS(7115), 1, anon_sym_AMP, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - sym_identifier, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [209807] = 18, + STATE(5923), 1, + sym__scope_resolution, + STATE(6380), 1, + sym__declarator, + STATE(8339), 1, + sym_ms_based_modifier, + STATE(8569), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6145), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [214251] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1852), 1, + ACTIONS(1850), 1, anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2977), 1, + ACTIONS(2997), 1, anon_sym_LPAREN2, - ACTIONS(2979), 1, + ACTIONS(2999), 1, anon_sym_TILDE, - ACTIONS(2981), 1, - anon_sym_STAR, - ACTIONS(2983), 1, - anon_sym_AMP, - ACTIONS(5460), 1, + ACTIONS(5861), 1, sym_identifier, - ACTIONS(6321), 1, + ACTIONS(5873), 1, anon_sym_COLON_COLON, - ACTIONS(7089), 1, + ACTIONS(7103), 1, anon_sym_LBRACK, - STATE(5847), 1, + ACTIONS(7219), 1, + anon_sym_STAR, + ACTIONS(7221), 1, + anon_sym_AMP_AMP, + ACTIONS(7223), 1, + anon_sym_AMP, + STATE(5896), 1, sym__scope_resolution, - STATE(6671), 1, + STATE(6735), 1, sym__declarator, - STATE(8682), 1, + STATE(8381), 1, sym_ms_based_modifier, - STATE(8601), 3, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(5998), 11, + STATE(6145), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -468761,82 +476060,93 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [209874] = 7, + [214318] = 18, ACTIONS(3), 1, sym_comment, - STATE(1658), 1, - sym_alignas_qualifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1633), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(9660), 3, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(2997), 1, anon_sym_LPAREN2, + ACTIONS(2999), 1, + anon_sym_TILDE, + ACTIONS(7103), 1, + anon_sym_LBRACK, + ACTIONS(7209), 1, + sym_identifier, + ACTIONS(7211), 1, anon_sym_STAR, + ACTIONS(7213), 1, anon_sym_AMP_AMP, - ACTIONS(9658), 8, + ACTIONS(7215), 1, anon_sym_AMP, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - sym_identifier, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [209919] = 18, + ACTIONS(7217), 1, + anon_sym_COLON_COLON, + STATE(5895), 1, + sym__scope_resolution, + STATE(5989), 1, + sym__declarator, + STATE(8623), 1, + sym_ms_based_modifier, + STATE(8569), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6145), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [214385] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(29), 1, anon_sym_AMP_AMP, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1852), 1, + ACTIONS(1850), 1, anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2977), 1, + ACTIONS(2997), 1, anon_sym_LPAREN2, - ACTIONS(2979), 1, + ACTIONS(2999), 1, anon_sym_TILDE, - ACTIONS(2981), 1, + ACTIONS(3001), 1, anon_sym_STAR, - ACTIONS(2983), 1, + ACTIONS(3003), 1, anon_sym_AMP, - ACTIONS(5460), 1, + ACTIONS(5481), 1, sym_identifier, - ACTIONS(6321), 1, + ACTIONS(6365), 1, anon_sym_COLON_COLON, - ACTIONS(7089), 1, + ACTIONS(7103), 1, anon_sym_LBRACK, - STATE(5847), 1, + STATE(5923), 1, sym__scope_resolution, - STATE(6451), 1, + STATE(6634), 1, sym__declarator, - STATE(8682), 1, + STATE(8864), 1, sym_ms_based_modifier, - STATE(8601), 3, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(5998), 11, + STATE(6145), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -468848,80 +476158,44 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [209986] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(4995), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5452), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - ACTIONS(9662), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5450), 21, - anon_sym_AMP, - anon_sym___extension__, - anon_sym___based, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - sym_auto, - anon_sym_decltype, - [210027] = 18, + [214452] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1852), 1, + ACTIONS(1850), 1, anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2977), 1, + ACTIONS(2997), 1, anon_sym_LPAREN2, - ACTIONS(2979), 1, + ACTIONS(2999), 1, anon_sym_TILDE, - ACTIONS(5849), 1, + ACTIONS(7103), 1, + anon_sym_LBRACK, + ACTIONS(7209), 1, sym_identifier, - ACTIONS(5861), 1, + ACTIONS(7217), 1, anon_sym_COLON_COLON, - ACTIONS(7089), 1, - anon_sym_LBRACK, - ACTIONS(7165), 1, + ACTIONS(7265), 1, anon_sym_STAR, - ACTIONS(7167), 1, + ACTIONS(7267), 1, anon_sym_AMP_AMP, - ACTIONS(7169), 1, + ACTIONS(7269), 1, anon_sym_AMP, - STATE(5860), 1, + STATE(5895), 1, sym__scope_resolution, - STATE(6552), 1, + STATE(6571), 1, sym__declarator, - STATE(8161), 1, + STATE(8135), 1, sym_ms_based_modifier, - STATE(8601), 3, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(5998), 11, + STATE(6145), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -468933,48 +476207,48 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [210094] = 18, + [214519] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7065), 1, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7067), 1, + ACTIONS(7073), 1, anon_sym_DASH_GT, ACTIONS(7079), 1, anon_sym_requires, - ACTIONS(9184), 1, + ACTIONS(9691), 1, anon_sym___attribute__, - ACTIONS(9187), 1, + ACTIONS(9694), 1, anon_sym___attribute, - ACTIONS(9190), 1, + ACTIONS(9697), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9193), 1, + ACTIONS(9700), 1, anon_sym_LBRACK, - STATE(5534), 1, + STATE(5666), 1, sym_trailing_return_type, - STATE(5655), 1, + STATE(5724), 1, sym__function_attributes_end, - STATE(6745), 1, + STATE(6850), 1, sym_gnu_asm_expression, - ACTIONS(6020), 2, + ACTIONS(6037), 2, anon_sym_final, anon_sym_override, - ACTIONS(7063), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - STATE(5428), 2, + STATE(5540), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5606), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5733), 2, + STATE(5730), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5877), 2, + STATE(5924), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9182), 7, + ACTIONS(9689), 7, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -468982,44 +476256,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [210161] = 18, + [214586] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1852), 1, + ACTIONS(1850), 1, anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2977), 1, + ACTIONS(2997), 1, anon_sym_LPAREN2, - ACTIONS(2979), 1, + ACTIONS(2999), 1, anon_sym_TILDE, - ACTIONS(7089), 1, - anon_sym_LBRACK, - ACTIONS(7281), 1, + ACTIONS(5481), 1, sym_identifier, - ACTIONS(7283), 1, + ACTIONS(7103), 1, + anon_sym_LBRACK, + ACTIONS(7257), 1, anon_sym_STAR, - ACTIONS(7285), 1, + ACTIONS(7259), 1, anon_sym_AMP_AMP, - ACTIONS(7287), 1, + ACTIONS(7261), 1, anon_sym_AMP, - ACTIONS(7289), 1, + ACTIONS(7263), 1, anon_sym_COLON_COLON, - STATE(5807), 1, + STATE(5931), 1, sym__scope_resolution, - STATE(6504), 1, + STATE(6808), 1, sym__declarator, - STATE(8592), 1, + STATE(8398), 1, sym_ms_based_modifier, - STATE(8601), 3, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(5998), 11, + STATE(6145), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -469031,142 +476305,96 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [210228] = 18, + [214653] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(7065), 1, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7067), 1, - anon_sym_DASH_GT, - ACTIONS(7079), 1, - anon_sym_requires, - ACTIONS(9346), 1, + ACTIONS(7075), 1, + anon_sym_noexcept, + ACTIONS(7077), 1, + anon_sym_throw, + ACTIONS(7283), 1, anon_sym___attribute__, - ACTIONS(9349), 1, + ACTIONS(7285), 1, anon_sym___attribute, - ACTIONS(9352), 1, + ACTIONS(7447), 1, + anon_sym_requires, + ACTIONS(7918), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9355), 1, + ACTIONS(7920), 1, + anon_sym_DASH_GT, + ACTIONS(9150), 1, anon_sym_LBRACK, - STATE(5616), 1, + STATE(6123), 1, sym_trailing_return_type, - STATE(5658), 1, + STATE(6490), 1, sym__function_attributes_end, - STATE(6745), 1, + STATE(6850), 1, sym_gnu_asm_expression, - ACTIONS(6020), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7063), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - STATE(5428), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5606), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5733), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5839), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9344), 7, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [210295] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7065), 1, - anon_sym___asm, - ACTIONS(7067), 1, - anon_sym_DASH_GT, - ACTIONS(7079), 1, - anon_sym_requires, - ACTIONS(9667), 1, - anon_sym___attribute__, - ACTIONS(9670), 1, - anon_sym___attribute, - ACTIONS(9673), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9676), 1, - anon_sym_LBRACK, - STATE(5491), 1, - sym_trailing_return_type, - STATE(5660), 1, - sym__function_attributes_end, - STATE(6745), 1, - sym_gnu_asm_expression, - ACTIONS(6020), 2, + ACTIONS(7359), 2, anon_sym_final, anon_sym_override, - ACTIONS(7063), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(5428), 2, + ACTIONS(9139), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + STATE(5540), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5606), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5733), 2, + STATE(5730), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5876), 2, + STATE(6017), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6149), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9665), 7, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [210362] = 18, + STATE(5461), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [214726] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1852), 1, + ACTIONS(1850), 1, anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2977), 1, + ACTIONS(2997), 1, anon_sym_LPAREN2, - ACTIONS(2979), 1, + ACTIONS(2999), 1, anon_sym_TILDE, - ACTIONS(5849), 1, - sym_identifier, ACTIONS(5861), 1, + sym_identifier, + ACTIONS(5873), 1, anon_sym_COLON_COLON, - ACTIONS(7089), 1, - anon_sym_LBRACK, - ACTIONS(7275), 1, + ACTIONS(7097), 1, anon_sym_STAR, - ACTIONS(7277), 1, + ACTIONS(7099), 1, anon_sym_AMP_AMP, - ACTIONS(7279), 1, + ACTIONS(7101), 1, anon_sym_AMP, - STATE(5860), 1, + ACTIONS(7103), 1, + anon_sym_LBRACK, + STATE(5896), 1, sym__scope_resolution, - STATE(6149), 1, + STATE(6438), 1, sym__declarator, - STATE(8398), 1, + STATE(8286), 1, sym_ms_based_modifier, - STATE(8601), 3, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(5998), 11, + STATE(6145), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -469178,399 +476406,451 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [210429] = 18, + [214793] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(2977), 1, - anon_sym_LPAREN2, - ACTIONS(2979), 1, - anon_sym_TILDE, - ACTIONS(2981), 1, - anon_sym_STAR, - ACTIONS(2983), 1, - anon_sym_AMP, - ACTIONS(5460), 1, - sym_identifier, - ACTIONS(6321), 1, - anon_sym_COLON_COLON, - ACTIONS(7089), 1, + ACTIONS(7071), 1, + anon_sym___asm, + ACTIONS(7073), 1, + anon_sym_DASH_GT, + ACTIONS(9141), 1, + anon_sym___attribute__, + ACTIONS(9144), 1, + anon_sym___attribute, + ACTIONS(9147), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9150), 1, anon_sym_LBRACK, - STATE(5847), 1, - sym__scope_resolution, - STATE(6660), 1, - sym__declarator, - STATE(8682), 1, - sym_ms_based_modifier, - STATE(8601), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(5998), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [210496] = 18, + ACTIONS(9196), 1, + anon_sym_requires, + STATE(5655), 1, + sym_trailing_return_type, + STATE(5738), 1, + sym__function_attributes_end, + STATE(6850), 1, + sym_gnu_asm_expression, + ACTIONS(7069), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9193), 2, + anon_sym_final, + anon_sym_override, + STATE(5540), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5730), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5927), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9139), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [214860] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(2977), 1, - anon_sym_LPAREN2, - ACTIONS(2979), 1, - anon_sym_TILDE, - ACTIONS(7089), 1, - anon_sym_LBRACK, - ACTIONS(7281), 1, - sym_identifier, + ACTIONS(7071), 1, + anon_sym___asm, + ACTIONS(7075), 1, + anon_sym_noexcept, + ACTIONS(7077), 1, + anon_sym_throw, ACTIONS(7283), 1, - anon_sym_STAR, + anon_sym___attribute__, ACTIONS(7285), 1, - anon_sym_AMP_AMP, - ACTIONS(7287), 1, - anon_sym_AMP, - ACTIONS(7289), 1, - anon_sym_COLON_COLON, - STATE(5807), 1, - sym__scope_resolution, - STATE(6448), 1, - sym__declarator, - STATE(8592), 1, - sym_ms_based_modifier, - STATE(8601), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(5998), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [210563] = 18, + anon_sym___attribute, + ACTIONS(7447), 1, + anon_sym_requires, + ACTIONS(7918), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7920), 1, + anon_sym_DASH_GT, + ACTIONS(9382), 1, + anon_sym_LBRACK, + STATE(6152), 1, + sym_trailing_return_type, + STATE(6491), 1, + sym__function_attributes_end, + STATE(6850), 1, + sym_gnu_asm_expression, + ACTIONS(7069), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7359), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(9371), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + STATE(5540), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5730), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6017), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6132), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5463), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [214933] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(2977), 1, - anon_sym_LPAREN2, - ACTIONS(2979), 1, - anon_sym_TILDE, - ACTIONS(7089), 1, + ACTIONS(7071), 1, + anon_sym___asm, + ACTIONS(7073), 1, + anon_sym_DASH_GT, + ACTIONS(9373), 1, + anon_sym___attribute__, + ACTIONS(9376), 1, + anon_sym___attribute, + ACTIONS(9379), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9382), 1, anon_sym_LBRACK, - ACTIONS(7281), 1, - sym_identifier, - ACTIONS(7283), 1, - anon_sym_STAR, - ACTIONS(7285), 1, - anon_sym_AMP_AMP, - ACTIONS(7287), 1, - anon_sym_AMP, - ACTIONS(7289), 1, - anon_sym_COLON_COLON, - STATE(5807), 1, - sym__scope_resolution, - STATE(6518), 1, - sym__declarator, - STATE(8592), 1, - sym_ms_based_modifier, - STATE(8601), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(5998), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [210630] = 21, + ACTIONS(9390), 1, + anon_sym_requires, + STATE(5703), 1, + sym_trailing_return_type, + STATE(5739), 1, + sym__function_attributes_end, + STATE(6850), 1, + sym_gnu_asm_expression, + ACTIONS(7069), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9387), 2, + anon_sym_final, + anon_sym_override, + STATE(5540), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5730), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5934), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9371), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [215000] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(7065), 1, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7072), 1, + ACTIONS(7075), 1, anon_sym_noexcept, - ACTIONS(7074), 1, + ACTIONS(7077), 1, anon_sym_throw, - ACTIONS(7083), 1, + ACTIONS(7283), 1, anon_sym___attribute__, - ACTIONS(7085), 1, + ACTIONS(7285), 1, anon_sym___attribute, - ACTIONS(7867), 1, + ACTIONS(7913), 1, anon_sym_DASH_GT, - ACTIONS(9190), 1, + ACTIONS(7924), 1, + anon_sym_requires, + ACTIONS(9147), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9193), 1, + ACTIONS(9150), 1, anon_sym_LBRACK, - ACTIONS(9478), 1, - anon_sym_requires, - STATE(6315), 1, + STATE(6431), 1, sym__function_attributes_end, - STATE(6471), 1, + STATE(6598), 1, sym_trailing_return_type, - STATE(6745), 1, + STATE(6850), 1, sym_gnu_asm_expression, - ACTIONS(7063), 2, + ACTIONS(6037), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9182), 2, + ACTIONS(9139), 2, anon_sym_LPAREN2, anon_sym_COLON, - ACTIONS(9195), 2, - anon_sym_final, - anon_sym_override, - STATE(5428), 2, + STATE(5540), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5606), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5733), 2, + STATE(5730), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5877), 2, + STATE(5927), 2, sym__function_postfix, sym_requires_clause, - STATE(5377), 3, + STATE(5451), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - [210703] = 21, + [215073] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(7065), 1, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7072), 1, + ACTIONS(7075), 1, anon_sym_noexcept, - ACTIONS(7074), 1, + ACTIONS(7077), 1, anon_sym_throw, - ACTIONS(7083), 1, + ACTIONS(7283), 1, anon_sym___attribute__, - ACTIONS(7085), 1, + ACTIONS(7285), 1, anon_sym___attribute, - ACTIONS(7867), 1, + ACTIONS(7913), 1, anon_sym_DASH_GT, - ACTIONS(9352), 1, + ACTIONS(9147), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9355), 1, + ACTIONS(9150), 1, anon_sym_LBRACK, - ACTIONS(9678), 1, + ACTIONS(9632), 1, anon_sym_requires, - STATE(6316), 1, + STATE(6398), 1, sym__function_attributes_end, - STATE(6476), 1, + STATE(6575), 1, sym_trailing_return_type, - STATE(6745), 1, + STATE(6850), 1, sym_gnu_asm_expression, - ACTIONS(7063), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9344), 2, + ACTIONS(9139), 2, anon_sym_LPAREN2, anon_sym_COLON, - ACTIONS(9357), 2, + ACTIONS(9193), 2, anon_sym_final, anon_sym_override, - STATE(5428), 2, + STATE(5540), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5606), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5733), 2, + STATE(5730), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5839), 2, + STATE(5927), 2, sym__function_postfix, sym_requires_clause, - STATE(5379), 3, + STATE(5462), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - [210776] = 21, + [215146] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(7071), 1, + anon_sym___asm, + ACTIONS(7073), 1, + anon_sym_DASH_GT, + ACTIONS(9691), 1, + anon_sym___attribute__, + ACTIONS(9694), 1, anon_sym___attribute, - ACTIONS(5472), 1, + ACTIONS(9697), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7065), 1, + ACTIONS(9700), 1, + anon_sym_LBRACK, + ACTIONS(9705), 1, + anon_sym_requires, + STATE(5708), 1, + sym_trailing_return_type, + STATE(5740), 1, + sym__function_attributes_end, + STATE(6850), 1, + sym_gnu_asm_expression, + ACTIONS(7069), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9702), 2, + anon_sym_final, + anon_sym_override, + STATE(5540), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5730), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5924), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9689), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [215213] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7072), 1, + ACTIONS(7075), 1, anon_sym_noexcept, - ACTIONS(7074), 1, + ACTIONS(7077), 1, anon_sym_throw, - ACTIONS(7147), 1, + ACTIONS(7283), 1, anon_sym___attribute__, - ACTIONS(7322), 1, + ACTIONS(7285), 1, + anon_sym___attribute, + ACTIONS(7913), 1, anon_sym_DASH_GT, - ACTIONS(9193), 1, - anon_sym_LBRACK, - ACTIONS(9328), 1, + ACTIONS(7924), 1, anon_sym_requires, - STATE(6388), 1, + ACTIONS(9379), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9382), 1, + anon_sym_LBRACK, + STATE(6432), 1, sym__function_attributes_end, - STATE(6562), 1, + STATE(6600), 1, sym_trailing_return_type, - STATE(6766), 1, + STATE(6850), 1, sym_gnu_asm_expression, - ACTIONS(7063), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7335), 2, + ACTIONS(6037), 2, anon_sym_final, anon_sym_override, - ACTIONS(9182), 2, + ACTIONS(7069), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9371), 2, anon_sym_LPAREN2, - anon_sym_LBRACE, - STATE(5384), 2, + anon_sym_COLON, + STATE(5540), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5458), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6012), 2, + STATE(5730), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5934), 2, sym__function_postfix, sym_requires_clause, - STATE(5387), 3, + STATE(5467), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - [210849] = 21, + [215286] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7065), 1, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7072), 1, + ACTIONS(7075), 1, anon_sym_noexcept, - ACTIONS(7074), 1, + ACTIONS(7077), 1, anon_sym_throw, - ACTIONS(7147), 1, + ACTIONS(7283), 1, anon_sym___attribute__, - ACTIONS(7322), 1, + ACTIONS(7285), 1, + anon_sym___attribute, + ACTIONS(7913), 1, anon_sym_DASH_GT, - ACTIONS(9355), 1, + ACTIONS(9379), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9382), 1, anon_sym_LBRACK, - ACTIONS(9498), 1, + ACTIONS(9708), 1, anon_sym_requires, - STATE(6384), 1, + STATE(6399), 1, sym__function_attributes_end, - STATE(6565), 1, + STATE(6580), 1, sym_trailing_return_type, - STATE(6766), 1, + STATE(6850), 1, sym_gnu_asm_expression, - ACTIONS(7063), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7335), 2, + ACTIONS(9371), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + ACTIONS(9387), 2, anon_sym_final, anon_sym_override, - ACTIONS(9344), 2, - anon_sym_LPAREN2, - anon_sym_LBRACE, - STATE(5384), 2, + STATE(5540), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5458), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6032), 2, + STATE(5730), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5934), 2, sym__function_postfix, sym_requires_clause, - STATE(5390), 3, + STATE(5466), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - [210922] = 18, + [215359] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1852), 1, + ACTIONS(1850), 1, anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2977), 1, + ACTIONS(2997), 1, anon_sym_LPAREN2, - ACTIONS(2979), 1, + ACTIONS(2999), 1, anon_sym_TILDE, - ACTIONS(7089), 1, + ACTIONS(7103), 1, anon_sym_LBRACK, - ACTIONS(7281), 1, + ACTIONS(7209), 1, sym_identifier, - ACTIONS(7283), 1, + ACTIONS(7217), 1, + anon_sym_COLON_COLON, + ACTIONS(7265), 1, anon_sym_STAR, - ACTIONS(7285), 1, + ACTIONS(7267), 1, anon_sym_AMP_AMP, - ACTIONS(7287), 1, + ACTIONS(7269), 1, anon_sym_AMP, - ACTIONS(7289), 1, - anon_sym_COLON_COLON, - STATE(5807), 1, + STATE(5895), 1, sym__scope_resolution, - STATE(6451), 1, + STATE(6632), 1, sym__declarator, - STATE(8592), 1, + STATE(8135), 1, sym_ms_based_modifier, - STATE(8601), 3, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(5998), 11, + STATE(6145), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -469582,329 +476862,148 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [210989] = 6, + [215426] = 21, ACTIONS(3), 1, sym_comment, - STATE(1918), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5156), 3, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_GT2, - ACTIONS(5159), 4, + ACTIONS(7071), 1, + anon_sym___asm, + ACTIONS(7075), 1, + anon_sym_noexcept, + ACTIONS(7077), 1, + anon_sym_throw, + ACTIONS(7283), 1, anon_sym___attribute__, + ACTIONS(7285), 1, anon_sym___attribute, - sym_auto, - anon_sym_decltype, - ACTIONS(5877), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5070), 17, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [211032] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(2977), 1, - anon_sym_LPAREN2, - ACTIONS(2979), 1, - anon_sym_TILDE, - ACTIONS(2981), 1, - anon_sym_STAR, - ACTIONS(2983), 1, - anon_sym_AMP, - ACTIONS(5460), 1, - sym_identifier, - ACTIONS(6321), 1, - anon_sym_COLON_COLON, - ACTIONS(7089), 1, + ACTIONS(7918), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7920), 1, + anon_sym_DASH_GT, + ACTIONS(9150), 1, anon_sym_LBRACK, - STATE(5847), 1, - sym__scope_resolution, - STATE(6679), 1, - sym__declarator, - STATE(8682), 1, - sym_ms_based_modifier, - STATE(8601), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(5998), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [211099] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(2977), 1, + ACTIONS(9366), 1, + anon_sym_requires, + STATE(6182), 1, + sym_trailing_return_type, + STATE(6500), 1, + sym__function_attributes_end, + STATE(6850), 1, + sym_gnu_asm_expression, + ACTIONS(7069), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9139), 2, anon_sym_LPAREN2, - ACTIONS(2979), 1, - anon_sym_TILDE, - ACTIONS(7089), 1, - anon_sym_LBRACK, - ACTIONS(7281), 1, - sym_identifier, - ACTIONS(7283), 1, - anon_sym_STAR, - ACTIONS(7285), 1, - anon_sym_AMP_AMP, - ACTIONS(7287), 1, - anon_sym_AMP, - ACTIONS(7289), 1, - anon_sym_COLON_COLON, - STATE(5807), 1, - sym__scope_resolution, - STATE(6461), 1, - sym__declarator, - STATE(8592), 1, - sym_ms_based_modifier, - STATE(8601), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(5998), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [211166] = 21, + anon_sym_COLON, + ACTIONS(9327), 2, + anon_sym_final, + anon_sym_override, + STATE(5540), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5730), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6017), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6149), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5454), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [215499] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(7065), 1, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7072), 1, + ACTIONS(7075), 1, anon_sym_noexcept, - ACTIONS(7074), 1, + ACTIONS(7077), 1, anon_sym_throw, - ACTIONS(7083), 1, + ACTIONS(7283), 1, anon_sym___attribute__, - ACTIONS(7085), 1, + ACTIONS(7285), 1, anon_sym___attribute, - ACTIONS(7867), 1, - anon_sym_DASH_GT, - ACTIONS(7906), 1, - anon_sym_requires, - ACTIONS(9352), 1, + ACTIONS(7918), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9355), 1, + ACTIONS(7920), 1, + anon_sym_DASH_GT, + ACTIONS(9382), 1, anon_sym_LBRACK, - STATE(6334), 1, - sym__function_attributes_end, - STATE(6457), 1, + ACTIONS(9491), 1, + anon_sym_requires, + STATE(6111), 1, sym_trailing_return_type, - STATE(6745), 1, + STATE(6505), 1, + sym__function_attributes_end, + STATE(6850), 1, sym_gnu_asm_expression, - ACTIONS(6020), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7063), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9344), 2, + ACTIONS(9371), 2, anon_sym_LPAREN2, anon_sym_COLON, - STATE(5428), 2, + ACTIONS(9488), 2, + anon_sym_final, + anon_sym_override, + STATE(5540), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5606), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5733), 2, + STATE(5730), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5839), 2, + STATE(6017), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6132), 2, sym__function_postfix, sym_requires_clause, - STATE(5372), 3, + STATE(5471), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - [211239] = 18, + [215572] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1852), 1, + ACTIONS(1850), 1, anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2977), 1, + ACTIONS(2997), 1, anon_sym_LPAREN2, - ACTIONS(2979), 1, + ACTIONS(2999), 1, anon_sym_TILDE, - ACTIONS(7089), 1, - anon_sym_LBRACK, - ACTIONS(7281), 1, + ACTIONS(5481), 1, sym_identifier, - ACTIONS(7283), 1, - anon_sym_STAR, - ACTIONS(7285), 1, - anon_sym_AMP_AMP, - ACTIONS(7287), 1, - anon_sym_AMP, - ACTIONS(7289), 1, + ACTIONS(6365), 1, anon_sym_COLON_COLON, - STATE(5807), 1, - sym__scope_resolution, - STATE(6483), 1, - sym__declarator, - STATE(8592), 1, - sym_ms_based_modifier, - STATE(8601), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(5998), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [211306] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(2977), 1, - anon_sym_LPAREN2, - ACTIONS(2979), 1, - anon_sym_TILDE, - ACTIONS(5849), 1, - sym_identifier, - ACTIONS(7089), 1, + ACTIONS(7103), 1, anon_sym_LBRACK, - ACTIONS(7291), 1, + ACTIONS(7111), 1, anon_sym_STAR, - ACTIONS(7293), 1, + ACTIONS(7113), 1, anon_sym_AMP_AMP, - ACTIONS(7295), 1, - anon_sym_AMP, - ACTIONS(7297), 1, - anon_sym_COLON_COLON, - STATE(5838), 1, - sym__scope_resolution, - STATE(6135), 1, - sym__declarator, - STATE(8021), 1, - sym_ms_based_modifier, - STATE(8601), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(5998), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [211373] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(2977), 1, - anon_sym_LPAREN2, - ACTIONS(2979), 1, - anon_sym_TILDE, - ACTIONS(2981), 1, - anon_sym_STAR, - ACTIONS(2983), 1, + ACTIONS(7115), 1, anon_sym_AMP, - ACTIONS(5460), 1, - sym_identifier, - ACTIONS(6321), 1, - anon_sym_COLON_COLON, - ACTIONS(7089), 1, - anon_sym_LBRACK, - STATE(5847), 1, + STATE(5923), 1, sym__scope_resolution, - STATE(6639), 1, + STATE(6341), 1, sym__declarator, - STATE(8682), 1, + STATE(8339), 1, sym_ms_based_modifier, - STATE(8601), 3, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(5998), 11, + STATE(6145), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -469916,44 +477015,44 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [211440] = 18, + [215639] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1852), 1, + ACTIONS(1850), 1, anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2977), 1, + ACTIONS(2997), 1, anon_sym_LPAREN2, - ACTIONS(2979), 1, + ACTIONS(2999), 1, anon_sym_TILDE, - ACTIONS(7089), 1, + ACTIONS(7103), 1, anon_sym_LBRACK, - ACTIONS(7281), 1, + ACTIONS(7209), 1, sym_identifier, - ACTIONS(7283), 1, + ACTIONS(7211), 1, anon_sym_STAR, - ACTIONS(7285), 1, + ACTIONS(7213), 1, anon_sym_AMP_AMP, - ACTIONS(7287), 1, + ACTIONS(7215), 1, anon_sym_AMP, - ACTIONS(7289), 1, + ACTIONS(7217), 1, anon_sym_COLON_COLON, - STATE(5807), 1, + STATE(5895), 1, sym__scope_resolution, - STATE(6495), 1, + STATE(6019), 1, sym__declarator, - STATE(8592), 1, + STATE(8623), 1, sym_ms_based_modifier, - STATE(8601), 3, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(5998), 11, + STATE(6145), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -469965,44 +477064,44 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [211507] = 18, + [215706] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1852), 1, + ACTIONS(1850), 1, anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2977), 1, + ACTIONS(2997), 1, anon_sym_LPAREN2, - ACTIONS(2979), 1, + ACTIONS(2999), 1, anon_sym_TILDE, - ACTIONS(7089), 1, + ACTIONS(7103), 1, anon_sym_LBRACK, - ACTIONS(7281), 1, + ACTIONS(7209), 1, sym_identifier, - ACTIONS(7283), 1, + ACTIONS(7211), 1, anon_sym_STAR, - ACTIONS(7285), 1, + ACTIONS(7213), 1, anon_sym_AMP_AMP, - ACTIONS(7287), 1, + ACTIONS(7215), 1, anon_sym_AMP, - ACTIONS(7289), 1, + ACTIONS(7217), 1, anon_sym_COLON_COLON, - STATE(5807), 1, + STATE(5895), 1, sym__scope_resolution, - STATE(6482), 1, + STATE(6318), 1, sym__declarator, - STATE(8592), 1, + STATE(8623), 1, sym_ms_based_modifier, - STATE(8601), 3, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(5998), 11, + STATE(6145), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -470014,58 +477113,33 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [211574] = 3, + [215773] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8075), 3, - anon_sym_AMP, - sym_ms_restrict_modifier, - anon_sym_const, - ACTIONS(8077), 26, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym___extension__, - anon_sym_COLON, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - anon_sym__unaligned, - anon_sym___unaligned, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, + STATE(1680), 1, + sym_alignas_qualifier, + ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [211611] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8041), 3, - anon_sym_AMP, - sym_ms_restrict_modifier, - anon_sym_const, - ACTIONS(8043), 26, + STATE(1669), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(9713), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, + ACTIONS(9711), 8, + anon_sym_AMP, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + sym_identifier, + ACTIONS(67), 13, anon_sym___extension__, - anon_sym_COLON, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - anon_sym__unaligned, - anon_sym___unaligned, - anon_sym_LBRACK, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -470077,49 +477151,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [211648] = 18, + [215818] = 18, ACTIONS(3), 1, sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1852), 1, + ACTIONS(1850), 1, anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2977), 1, + ACTIONS(2997), 1, anon_sym_LPAREN2, - ACTIONS(2979), 1, + ACTIONS(2999), 1, anon_sym_TILDE, - ACTIONS(5849), 1, + ACTIONS(3001), 1, + anon_sym_STAR, + ACTIONS(3003), 1, + anon_sym_AMP, + ACTIONS(5481), 1, sym_identifier, - ACTIONS(5861), 1, + ACTIONS(6365), 1, anon_sym_COLON_COLON, - ACTIONS(7089), 1, + ACTIONS(7103), 1, anon_sym_LBRACK, - ACTIONS(7165), 1, - anon_sym_STAR, - ACTIONS(7167), 1, - anon_sym_AMP_AMP, - ACTIONS(7169), 1, - anon_sym_AMP, - STATE(5860), 1, + STATE(5923), 1, sym__scope_resolution, - STATE(6608), 1, + STATE(6804), 1, sym__declarator, - STATE(8161), 1, + STATE(8864), 1, sym_ms_based_modifier, - STATE(8601), 3, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(5998), 11, + STATE(6145), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -470131,44 +477200,44 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [211715] = 18, + [215885] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1852), 1, + ACTIONS(1850), 1, anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2977), 1, + ACTIONS(2997), 1, anon_sym_LPAREN2, - ACTIONS(2979), 1, + ACTIONS(2999), 1, anon_sym_TILDE, - ACTIONS(7089), 1, + ACTIONS(7103), 1, anon_sym_LBRACK, - ACTIONS(7281), 1, + ACTIONS(7209), 1, sym_identifier, - ACTIONS(7283), 1, + ACTIONS(7211), 1, anon_sym_STAR, - ACTIONS(7285), 1, + ACTIONS(7213), 1, anon_sym_AMP_AMP, - ACTIONS(7287), 1, + ACTIONS(7215), 1, anon_sym_AMP, - ACTIONS(7289), 1, + ACTIONS(7217), 1, anon_sym_COLON_COLON, - STATE(5807), 1, + STATE(5895), 1, sym__scope_resolution, - STATE(6437), 1, + STATE(6013), 1, sym__declarator, - STATE(8592), 1, + STATE(8623), 1, sym_ms_based_modifier, - STATE(8601), 3, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(5998), 11, + STATE(6145), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -470180,93 +477249,96 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [211782] = 18, + [215952] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(2977), 1, - anon_sym_LPAREN2, - ACTIONS(2979), 1, - anon_sym_TILDE, - ACTIONS(7089), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7071), 1, + anon_sym___asm, + ACTIONS(7075), 1, + anon_sym_noexcept, + ACTIONS(7077), 1, + anon_sym_throw, + ACTIONS(7299), 1, + anon_sym___attribute__, + ACTIONS(7424), 1, + anon_sym_DASH_GT, + ACTIONS(9150), 1, anon_sym_LBRACK, - ACTIONS(7281), 1, - sym_identifier, - ACTIONS(7283), 1, - anon_sym_STAR, - ACTIONS(7285), 1, - anon_sym_AMP_AMP, - ACTIONS(7287), 1, - anon_sym_AMP, - ACTIONS(7289), 1, - anon_sym_COLON_COLON, - STATE(5807), 1, - sym__scope_resolution, - STATE(6444), 1, - sym__declarator, - STATE(8592), 1, - sym_ms_based_modifier, - STATE(8601), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(5998), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [211849] = 18, + ACTIONS(9366), 1, + anon_sym_requires, + STATE(6502), 1, + sym__function_attributes_end, + STATE(6651), 1, + sym_trailing_return_type, + STATE(6870), 1, + sym_gnu_asm_expression, + ACTIONS(7069), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7359), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(9139), 2, + anon_sym_LPAREN2, + anon_sym_LBRACE, + STATE(5455), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5507), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6017), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6149), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5458), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [216025] = 18, ACTIONS(3), 1, sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1852), 1, + ACTIONS(1850), 1, anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2977), 1, + ACTIONS(2997), 1, anon_sym_LPAREN2, - ACTIONS(2979), 1, + ACTIONS(2999), 1, anon_sym_TILDE, - ACTIONS(5460), 1, - sym_identifier, - ACTIONS(7089), 1, - anon_sym_LBRACK, - ACTIONS(7171), 1, + ACTIONS(3001), 1, anon_sym_STAR, - ACTIONS(7173), 1, - anon_sym_AMP_AMP, - ACTIONS(7175), 1, + ACTIONS(3003), 1, anon_sym_AMP, - ACTIONS(7177), 1, + ACTIONS(5481), 1, + sym_identifier, + ACTIONS(6365), 1, anon_sym_COLON_COLON, - STATE(5850), 1, + ACTIONS(7103), 1, + anon_sym_LBRACK, + STATE(5923), 1, sym__scope_resolution, - STATE(6642), 1, + STATE(6820), 1, sym__declarator, - STATE(8214), 1, + STATE(8864), 1, sym_ms_based_modifier, - STATE(8601), 3, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(5998), 11, + STATE(6145), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -470278,93 +477350,96 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [211916] = 18, + [216092] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(2977), 1, - anon_sym_LPAREN2, - ACTIONS(2979), 1, - anon_sym_TILDE, - ACTIONS(7089), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7071), 1, + anon_sym___asm, + ACTIONS(7075), 1, + anon_sym_noexcept, + ACTIONS(7077), 1, + anon_sym_throw, + ACTIONS(7299), 1, + anon_sym___attribute__, + ACTIONS(7424), 1, + anon_sym_DASH_GT, + ACTIONS(9382), 1, anon_sym_LBRACK, - ACTIONS(7281), 1, - sym_identifier, - ACTIONS(7283), 1, - anon_sym_STAR, - ACTIONS(7285), 1, - anon_sym_AMP_AMP, - ACTIONS(7287), 1, - anon_sym_AMP, - ACTIONS(7289), 1, - anon_sym_COLON_COLON, - STATE(5807), 1, - sym__scope_resolution, - STATE(6459), 1, - sym__declarator, - STATE(8592), 1, - sym_ms_based_modifier, - STATE(8601), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(5998), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [211983] = 18, + ACTIONS(9491), 1, + anon_sym_requires, + STATE(6478), 1, + sym__function_attributes_end, + STATE(6674), 1, + sym_trailing_return_type, + STATE(6870), 1, + sym_gnu_asm_expression, + ACTIONS(7069), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7359), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(9371), 2, + anon_sym_LPAREN2, + anon_sym_LBRACE, + STATE(5455), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5507), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6017), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6132), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5460), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [216165] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1852), 1, + ACTIONS(1850), 1, anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2977), 1, + ACTIONS(2997), 1, anon_sym_LPAREN2, - ACTIONS(2979), 1, + ACTIONS(2999), 1, anon_sym_TILDE, - ACTIONS(7089), 1, + ACTIONS(7103), 1, anon_sym_LBRACK, - ACTIONS(7281), 1, + ACTIONS(7209), 1, sym_identifier, - ACTIONS(7283), 1, + ACTIONS(7217), 1, + anon_sym_COLON_COLON, + ACTIONS(7265), 1, anon_sym_STAR, - ACTIONS(7285), 1, + ACTIONS(7267), 1, anon_sym_AMP_AMP, - ACTIONS(7287), 1, + ACTIONS(7269), 1, anon_sym_AMP, - ACTIONS(7289), 1, - anon_sym_COLON_COLON, - STATE(5807), 1, + STATE(5895), 1, sym__scope_resolution, - STATE(6489), 1, + STATE(6533), 1, sym__declarator, - STATE(8592), 1, + STATE(8135), 1, sym_ms_based_modifier, - STATE(8601), 3, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(5998), 11, + STATE(6145), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -470376,93 +477451,81 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [212050] = 18, + [216232] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1978), 1, + STATE(1974), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5167), 3, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_GT2, + ACTIONS(5164), 4, + anon_sym___attribute__, + anon_sym___attribute, + sym_auto, anon_sym_decltype, - ACTIONS(2977), 1, - anon_sym_LPAREN2, - ACTIONS(2979), 1, - anon_sym_TILDE, - ACTIONS(5849), 1, - sym_identifier, - ACTIONS(5861), 1, - anon_sym_COLON_COLON, - ACTIONS(7089), 1, - anon_sym_LBRACK, - ACTIONS(7105), 1, - anon_sym_STAR, - ACTIONS(7107), 1, - anon_sym_AMP_AMP, - ACTIONS(7109), 1, - anon_sym_AMP, - STATE(5860), 1, - sym__scope_resolution, - STATE(6319), 1, - sym__declarator, - STATE(8106), 1, - sym_ms_based_modifier, - STATE(8601), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(5998), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [212117] = 18, + ACTIONS(5955), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5078), 17, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [216275] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1852), 1, + ACTIONS(1850), 1, anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2977), 1, + ACTIONS(2997), 1, anon_sym_LPAREN2, - ACTIONS(2979), 1, + ACTIONS(2999), 1, anon_sym_TILDE, - ACTIONS(7089), 1, + ACTIONS(7103), 1, anon_sym_LBRACK, - ACTIONS(7281), 1, + ACTIONS(7209), 1, sym_identifier, - ACTIONS(7283), 1, + ACTIONS(7217), 1, + anon_sym_COLON_COLON, + ACTIONS(7265), 1, anon_sym_STAR, - ACTIONS(7285), 1, + ACTIONS(7267), 1, anon_sym_AMP_AMP, - ACTIONS(7287), 1, + ACTIONS(7269), 1, anon_sym_AMP, - ACTIONS(7289), 1, - anon_sym_COLON_COLON, - STATE(5807), 1, + STATE(5895), 1, sym__scope_resolution, - STATE(6442), 1, + STATE(6634), 1, sym__declarator, - STATE(8592), 1, + STATE(8135), 1, sym_ms_based_modifier, - STATE(8601), 3, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(5998), 11, + STATE(6145), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -470474,2860 +477537,2750 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [212184] = 18, + [216342] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7065), 1, - anon_sym___asm, - ACTIONS(7067), 1, - anon_sym_DASH_GT, - ACTIONS(9184), 1, - anon_sym___attribute__, - ACTIONS(9187), 1, + ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(9190), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9193), 1, + ACTIONS(7299), 1, + anon_sym___attribute__, + ACTIONS(7312), 1, + anon_sym_DASH_GT, + ACTIONS(9150), 1, anon_sym_LBRACK, - ACTIONS(9198), 1, + ACTIONS(9305), 1, + anon_sym___asm, + ACTIONS(9308), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9311), 1, anon_sym_requires, - STATE(5514), 1, + STATE(5528), 1, sym_trailing_return_type, - STATE(5670), 1, + STATE(5744), 1, sym__function_attributes_end, - STATE(6745), 1, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(7063), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9195), 2, + ACTIONS(9193), 2, anon_sym_final, anon_sym_override, - STATE(5428), 2, + ACTIONS(9302), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5455), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5606), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5733), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5877), 2, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5927), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9182), 7, + ACTIONS(9139), 6, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_COLON, anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [212251] = 18, + [216408] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7065), 1, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7067), 1, - anon_sym_DASH_GT, - ACTIONS(9346), 1, + ACTIONS(7079), 1, + anon_sym_requires, + ACTIONS(7283), 1, anon_sym___attribute__, - ACTIONS(9349), 1, + ACTIONS(7285), 1, anon_sym___attribute, - ACTIONS(9352), 1, + ACTIONS(7287), 1, + anon_sym_DASH_GT, + ACTIONS(9147), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9355), 1, + ACTIONS(9150), 1, anon_sym_LBRACK, - ACTIONS(9360), 1, - anon_sym_requires, - STATE(5544), 1, - sym_trailing_return_type, STATE(5671), 1, + sym_trailing_return_type, + STATE(6070), 1, sym__function_attributes_end, - STATE(6745), 1, + STATE(6850), 1, sym_gnu_asm_expression, - ACTIONS(7063), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9357), 2, + ACTIONS(6037), 2, anon_sym_final, anon_sym_override, - STATE(5428), 2, + ACTIONS(7069), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5540), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5606), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5733), 2, + STATE(5730), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5839), 2, + STATE(5927), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9344), 7, - anon_sym_COMMA, + ACTIONS(9139), 6, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [212318] = 18, + [216474] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(2977), 1, - anon_sym_LPAREN2, - ACTIONS(2979), 1, - anon_sym_TILDE, - ACTIONS(7089), 1, - anon_sym_LBRACK, - ACTIONS(7281), 1, - sym_identifier, + ACTIONS(7071), 1, + anon_sym___asm, + ACTIONS(7079), 1, + anon_sym_requires, ACTIONS(7283), 1, - anon_sym_STAR, + anon_sym___attribute__, ACTIONS(7285), 1, - anon_sym_AMP_AMP, + anon_sym___attribute, ACTIONS(7287), 1, - anon_sym_AMP, - ACTIONS(7289), 1, - anon_sym_COLON_COLON, - STATE(5807), 1, - sym__scope_resolution, - STATE(6478), 1, - sym__declarator, - STATE(8592), 1, - sym_ms_based_modifier, - STATE(8601), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(5998), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [212385] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7065), 1, - anon_sym___asm, - ACTIONS(7067), 1, anon_sym_DASH_GT, - ACTIONS(9667), 1, - anon_sym___attribute__, - ACTIONS(9670), 1, - anon_sym___attribute, - ACTIONS(9673), 1, + ACTIONS(9379), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9676), 1, + ACTIONS(9382), 1, anon_sym_LBRACK, - ACTIONS(9684), 1, - anon_sym_requires, - STATE(5554), 1, + STATE(5567), 1, sym_trailing_return_type, - STATE(5672), 1, + STATE(6053), 1, sym__function_attributes_end, - STATE(6745), 1, + STATE(6850), 1, sym_gnu_asm_expression, - ACTIONS(7063), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9681), 2, + ACTIONS(6037), 2, anon_sym_final, anon_sym_override, - STATE(5428), 2, + ACTIONS(7069), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5540), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5606), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5733), 2, + STATE(5730), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5876), 2, + STATE(5934), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9665), 7, - anon_sym_COMMA, + ACTIONS(9371), 6, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [212452] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(2977), 1, - anon_sym_LPAREN2, - ACTIONS(2979), 1, - anon_sym_TILDE, - ACTIONS(2981), 1, - anon_sym_STAR, - ACTIONS(2983), 1, - anon_sym_AMP, - ACTIONS(5460), 1, - sym_identifier, - ACTIONS(6321), 1, - anon_sym_COLON_COLON, - ACTIONS(7089), 1, - anon_sym_LBRACK, - STATE(5847), 1, - sym__scope_resolution, - STATE(6686), 1, - sym__declarator, - STATE(8682), 1, - sym_ms_based_modifier, - STATE(8601), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(5998), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [212519] = 21, + [216540] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7065), 1, - anon_sym___asm, - ACTIONS(7072), 1, - anon_sym_noexcept, - ACTIONS(7074), 1, - anon_sym_throw, - ACTIONS(7083), 1, - anon_sym___attribute__, - ACTIONS(7085), 1, + ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7867), 1, + ACTIONS(7299), 1, + anon_sym___attribute__, + ACTIONS(7312), 1, anon_sym_DASH_GT, - ACTIONS(7906), 1, + ACTIONS(7314), 1, anon_sym_requires, - ACTIONS(9190), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9193), 1, + ACTIONS(9700), 1, anon_sym_LBRACK, - STATE(6333), 1, - sym__function_attributes_end, - STATE(6455), 1, + ACTIONS(9715), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9721), 1, + anon_sym___asm, + STATE(5530), 1, sym_trailing_return_type, - STATE(6745), 1, + STATE(5732), 1, + sym__function_attributes_end, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(6020), 2, + ACTIONS(6037), 2, anon_sym_final, anon_sym_override, - ACTIONS(7063), 2, + ACTIONS(9718), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9182), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - STATE(5428), 2, + STATE(5455), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5606), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5733), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5877), 2, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5924), 2, sym__function_postfix, sym_requires_clause, - STATE(5373), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - [212592] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(2977), 1, + ACTIONS(9689), 6, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(2979), 1, - anon_sym_TILDE, - ACTIONS(7089), 1, - anon_sym_LBRACK, - ACTIONS(7281), 1, - sym_identifier, - ACTIONS(7283), 1, - anon_sym_STAR, - ACTIONS(7285), 1, - anon_sym_AMP_AMP, - ACTIONS(7287), 1, - anon_sym_AMP, - ACTIONS(7289), 1, - anon_sym_COLON_COLON, - STATE(5807), 1, - sym__scope_resolution, - STATE(6501), 1, - sym__declarator, - STATE(8592), 1, - sym_ms_based_modifier, - STATE(8601), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(5998), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [212659] = 18, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [216606] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7147), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - ACTIONS(7160), 1, + ACTIONS(7312), 1, anon_sym_DASH_GT, - ACTIONS(9355), 1, + ACTIONS(9382), 1, anon_sym_LBRACK, - ACTIONS(9367), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9373), 1, + ACTIONS(9396), 1, anon_sym___asm, - ACTIONS(9376), 1, + ACTIONS(9401), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9407), 1, anon_sym_requires, - STATE(5448), 1, + STATE(5536), 1, sym_trailing_return_type, - STATE(5679), 1, + STATE(5745), 1, sym__function_attributes_end, - STATE(6766), 1, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(9357), 2, + ACTIONS(9387), 2, anon_sym_final, anon_sym_override, - ACTIONS(9370), 2, + ACTIONS(9393), 2, anon_sym_asm, anon_sym___asm__, - STATE(5384), 2, + STATE(5455), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5458), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5606), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5839), 2, + STATE(5934), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9344), 6, + ACTIONS(9371), 6, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [212725] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5454), 1, - anon_sym_COLON_COLON, - ACTIONS(5627), 1, - anon_sym_LBRACE, - ACTIONS(5450), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(5452), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym___extension__, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [212765] = 18, + [216672] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7147), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - ACTIONS(7160), 1, + ACTIONS(7312), 1, anon_sym_DASH_GT, - ACTIONS(9676), 1, + ACTIONS(7314), 1, + anon_sym_requires, + ACTIONS(9382), 1, anon_sym_LBRACK, - ACTIONS(9687), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9693), 1, + ACTIONS(9396), 1, anon_sym___asm, - ACTIONS(9696), 1, - anon_sym_requires, - STATE(5450), 1, + ACTIONS(9401), 1, + anon_sym_LBRACK_LBRACK, + STATE(5529), 1, sym_trailing_return_type, - STATE(5680), 1, + STATE(5731), 1, sym__function_attributes_end, - STATE(6766), 1, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(9681), 2, + ACTIONS(6037), 2, anon_sym_final, anon_sym_override, - ACTIONS(9690), 2, + ACTIONS(9393), 2, anon_sym_asm, anon_sym___asm__, - STATE(5384), 2, + STATE(5455), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5458), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5606), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5876), 2, + STATE(5934), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9665), 6, + ACTIONS(9371), 6, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [212831] = 18, + [216738] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(7079), 1, anon_sym_requires, - ACTIONS(7083), 1, + ACTIONS(7283), 1, anon_sym___attribute__, - ACTIONS(7085), 1, + ACTIONS(7285), 1, anon_sym___attribute, - ACTIONS(7179), 1, + ACTIONS(7318), 1, anon_sym_DASH_GT, - ACTIONS(9190), 1, + ACTIONS(9697), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9193), 1, + ACTIONS(9700), 1, anon_sym_LBRACK, - ACTIONS(9273), 1, + ACTIONS(9721), 1, anon_sym___asm, - STATE(5534), 1, + STATE(5666), 1, sym_trailing_return_type, - STATE(5703), 1, + STATE(5783), 1, sym__function_attributes_end, - STATE(6745), 1, + STATE(6850), 1, sym_gnu_asm_expression, - ACTIONS(6020), 2, + ACTIONS(6037), 2, anon_sym_final, anon_sym_override, - ACTIONS(9270), 2, + ACTIONS(9718), 2, anon_sym_asm, anon_sym___asm__, - STATE(5428), 2, + STATE(5540), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5606), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5733), 2, + STATE(5730), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5877), 2, + STATE(5924), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9182), 6, + ACTIONS(9689), 6, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACE, anon_sym_EQ, - [212897] = 18, + [216804] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7147), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - ACTIONS(7160), 1, + ACTIONS(7312), 1, anon_sym_DASH_GT, - ACTIONS(7301), 1, + ACTIONS(7314), 1, anon_sym_requires, - ACTIONS(9193), 1, + ACTIONS(9150), 1, anon_sym_LBRACK, - ACTIONS(9273), 1, + ACTIONS(9305), 1, anon_sym___asm, - ACTIONS(9276), 1, + ACTIONS(9308), 1, anon_sym_LBRACK_LBRACK, - STATE(5453), 1, + STATE(5526), 1, sym_trailing_return_type, - STATE(5663), 1, + STATE(5729), 1, sym__function_attributes_end, - STATE(6766), 1, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(6020), 2, + ACTIONS(6037), 2, anon_sym_final, anon_sym_override, - ACTIONS(9270), 2, + ACTIONS(9302), 2, anon_sym_asm, anon_sym___asm__, - STATE(5384), 2, + STATE(5455), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5458), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5606), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5877), 2, + STATE(5927), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9182), 6, + ACTIONS(9139), 6, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [212963] = 18, + [216870] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7065), 1, - anon_sym___asm, - ACTIONS(7079), 1, - anon_sym_requires, - ACTIONS(7083), 1, + ACTIONS(7283), 1, anon_sym___attribute__, - ACTIONS(7085), 1, + ACTIONS(7285), 1, anon_sym___attribute, - ACTIONS(7087), 1, + ACTIONS(7318), 1, anon_sym_DASH_GT, - ACTIONS(9352), 1, + ACTIONS(9147), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9355), 1, + ACTIONS(9150), 1, anon_sym_LBRACK, - STATE(5616), 1, + ACTIONS(9196), 1, + anon_sym_requires, + ACTIONS(9305), 1, + anon_sym___asm, + STATE(5655), 1, sym_trailing_return_type, - STATE(5966), 1, + STATE(5786), 1, sym__function_attributes_end, - STATE(6745), 1, + STATE(6850), 1, sym_gnu_asm_expression, - ACTIONS(6020), 2, + ACTIONS(9193), 2, anon_sym_final, anon_sym_override, - ACTIONS(7063), 2, + ACTIONS(9302), 2, anon_sym_asm, anon_sym___asm__, - STATE(5428), 2, + STATE(5540), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5606), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5733), 2, + STATE(5730), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5839), 2, + STATE(5927), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9344), 6, + ACTIONS(9139), 6, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_try, - [213029] = 18, + [216936] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7079), 1, - anon_sym_requires, - ACTIONS(7083), 1, + ACTIONS(5519), 1, + anon_sym_COLON_COLON, + ACTIONS(5523), 1, + anon_sym_LBRACE, + ACTIONS(5515), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5517), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym___extension__, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [216976] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7283), 1, anon_sym___attribute__, - ACTIONS(7085), 1, + ACTIONS(7285), 1, anon_sym___attribute, - ACTIONS(7179), 1, + ACTIONS(7318), 1, anon_sym_DASH_GT, - ACTIONS(9352), 1, + ACTIONS(9379), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9355), 1, + ACTIONS(9382), 1, anon_sym_LBRACK, - ACTIONS(9373), 1, + ACTIONS(9390), 1, + anon_sym_requires, + ACTIONS(9396), 1, anon_sym___asm, - STATE(5616), 1, + STATE(5703), 1, sym_trailing_return_type, - STATE(5706), 1, + STATE(5787), 1, sym__function_attributes_end, - STATE(6745), 1, + STATE(6850), 1, sym_gnu_asm_expression, - ACTIONS(6020), 2, + ACTIONS(9387), 2, anon_sym_final, anon_sym_override, - ACTIONS(9370), 2, + ACTIONS(9393), 2, anon_sym_asm, anon_sym___asm__, - STATE(5428), 2, + STATE(5540), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5606), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5733), 2, + STATE(5730), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5839), 2, + STATE(5934), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9344), 6, + ACTIONS(9371), 6, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACE, anon_sym_EQ, - [213095] = 18, + [217042] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7065), 1, - anon_sym___asm, - ACTIONS(7083), 1, - anon_sym___attribute__, - ACTIONS(7085), 1, + ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7087), 1, + ACTIONS(7299), 1, + anon_sym___attribute__, + ACTIONS(7312), 1, anon_sym_DASH_GT, - ACTIONS(9190), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9193), 1, + ACTIONS(9700), 1, anon_sym_LBRACK, - ACTIONS(9198), 1, + ACTIONS(9715), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9721), 1, + anon_sym___asm, + ACTIONS(9724), 1, anon_sym_requires, - STATE(5514), 1, + STATE(5537), 1, sym_trailing_return_type, - STATE(5953), 1, + STATE(5746), 1, sym__function_attributes_end, - STATE(6745), 1, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(7063), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9195), 2, + ACTIONS(9702), 2, anon_sym_final, anon_sym_override, - STATE(5428), 2, + ACTIONS(9718), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5455), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5606), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5733), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5877), 2, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5924), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9182), 6, + ACTIONS(9689), 6, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_COLON, anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [213161] = 18, + [217108] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7065), 1, - anon_sym___asm, - ACTIONS(7083), 1, + ACTIONS(7283), 1, anon_sym___attribute__, - ACTIONS(7085), 1, + ACTIONS(7285), 1, anon_sym___attribute, - ACTIONS(7087), 1, + ACTIONS(7318), 1, anon_sym_DASH_GT, - ACTIONS(9352), 1, + ACTIONS(9697), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9355), 1, + ACTIONS(9700), 1, anon_sym_LBRACK, - ACTIONS(9360), 1, + ACTIONS(9705), 1, anon_sym_requires, - STATE(5544), 1, + ACTIONS(9721), 1, + anon_sym___asm, + STATE(5708), 1, sym_trailing_return_type, - STATE(5958), 1, + STATE(5788), 1, sym__function_attributes_end, - STATE(6745), 1, + STATE(6850), 1, sym_gnu_asm_expression, - ACTIONS(7063), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9357), 2, + ACTIONS(9702), 2, anon_sym_final, anon_sym_override, - STATE(5428), 2, + ACTIONS(9718), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5540), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5606), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5733), 2, + STATE(5730), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5839), 2, + STATE(5924), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9344), 6, + ACTIONS(9689), 6, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_try, - [213227] = 18, + [217174] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7065), 1, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7079), 1, - anon_sym_requires, - ACTIONS(7083), 1, + ACTIONS(7283), 1, anon_sym___attribute__, - ACTIONS(7085), 1, + ACTIONS(7285), 1, anon_sym___attribute, - ACTIONS(7087), 1, + ACTIONS(7287), 1, anon_sym_DASH_GT, - ACTIONS(9190), 1, + ACTIONS(9147), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9193), 1, + ACTIONS(9150), 1, anon_sym_LBRACK, - STATE(5534), 1, + ACTIONS(9196), 1, + anon_sym_requires, + STATE(5655), 1, sym_trailing_return_type, - STATE(5963), 1, + STATE(6061), 1, sym__function_attributes_end, - STATE(6745), 1, + STATE(6850), 1, sym_gnu_asm_expression, - ACTIONS(6020), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7063), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - STATE(5428), 2, + ACTIONS(9193), 2, + anon_sym_final, + anon_sym_override, + STATE(5540), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5606), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5733), 2, + STATE(5730), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5877), 2, + STATE(5927), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9182), 6, + ACTIONS(9139), 6, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [213293] = 18, + [217240] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7065), 1, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7083), 1, + ACTIONS(7283), 1, anon_sym___attribute__, - ACTIONS(7085), 1, + ACTIONS(7285), 1, anon_sym___attribute, - ACTIONS(7087), 1, + ACTIONS(7287), 1, anon_sym_DASH_GT, - ACTIONS(9673), 1, + ACTIONS(9379), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9676), 1, + ACTIONS(9382), 1, anon_sym_LBRACK, - ACTIONS(9684), 1, + ACTIONS(9390), 1, anon_sym_requires, - STATE(5554), 1, + STATE(5703), 1, sym_trailing_return_type, - STATE(5950), 1, + STATE(6063), 1, sym__function_attributes_end, - STATE(6745), 1, + STATE(6850), 1, sym_gnu_asm_expression, - ACTIONS(7063), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9681), 2, + ACTIONS(9387), 2, anon_sym_final, anon_sym_override, - STATE(5428), 2, + STATE(5540), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5606), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5733), 2, + STATE(5730), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5876), 2, + STATE(5934), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9665), 6, + ACTIONS(9371), 6, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [213359] = 18, + [217306] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7079), 1, - anon_sym_requires, - ACTIONS(7083), 1, + ACTIONS(7071), 1, + anon_sym___asm, + ACTIONS(7283), 1, anon_sym___attribute__, - ACTIONS(7085), 1, + ACTIONS(7285), 1, anon_sym___attribute, - ACTIONS(7179), 1, + ACTIONS(7287), 1, anon_sym_DASH_GT, - ACTIONS(9673), 1, + ACTIONS(9697), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9676), 1, + ACTIONS(9700), 1, anon_sym_LBRACK, - ACTIONS(9693), 1, - anon_sym___asm, - STATE(5491), 1, + ACTIONS(9705), 1, + anon_sym_requires, + STATE(5708), 1, sym_trailing_return_type, - STATE(5709), 1, + STATE(6077), 1, sym__function_attributes_end, - STATE(6745), 1, + STATE(6850), 1, sym_gnu_asm_expression, - ACTIONS(6020), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(9690), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - STATE(5428), 2, + ACTIONS(9702), 2, + anon_sym_final, + anon_sym_override, + STATE(5540), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5606), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5733), 2, + STATE(5730), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5876), 2, + STATE(5924), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9665), 6, - anon_sym_COMMA, + ACTIONS(9689), 6, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACE, anon_sym_EQ, - [213425] = 18, + anon_sym_try, + [217372] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7065), 1, - anon_sym___asm, ACTIONS(7079), 1, anon_sym_requires, - ACTIONS(7083), 1, + ACTIONS(7283), 1, anon_sym___attribute__, - ACTIONS(7085), 1, + ACTIONS(7285), 1, anon_sym___attribute, - ACTIONS(7087), 1, + ACTIONS(7318), 1, anon_sym_DASH_GT, - ACTIONS(9673), 1, + ACTIONS(9379), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9676), 1, + ACTIONS(9382), 1, anon_sym_LBRACK, - STATE(5491), 1, + ACTIONS(9396), 1, + anon_sym___asm, + STATE(5567), 1, sym_trailing_return_type, - STATE(5941), 1, + STATE(5782), 1, sym__function_attributes_end, - STATE(6745), 1, + STATE(6850), 1, sym_gnu_asm_expression, - ACTIONS(6020), 2, + ACTIONS(6037), 2, anon_sym_final, anon_sym_override, - ACTIONS(7063), 2, + ACTIONS(9393), 2, anon_sym_asm, anon_sym___asm__, - STATE(5428), 2, + STATE(5540), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5606), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5733), 2, + STATE(5730), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5876), 2, + STATE(5934), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9665), 6, + ACTIONS(9371), 6, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_try, - [213491] = 18, + [217438] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7083), 1, + ACTIONS(7071), 1, + anon_sym___asm, + ACTIONS(7079), 1, + anon_sym_requires, + ACTIONS(7283), 1, anon_sym___attribute__, - ACTIONS(7085), 1, + ACTIONS(7285), 1, anon_sym___attribute, - ACTIONS(7179), 1, + ACTIONS(7287), 1, anon_sym_DASH_GT, - ACTIONS(9190), 1, + ACTIONS(9697), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9193), 1, + ACTIONS(9700), 1, anon_sym_LBRACK, - ACTIONS(9198), 1, - anon_sym_requires, - ACTIONS(9273), 1, - anon_sym___asm, - STATE(5514), 1, + STATE(5666), 1, sym_trailing_return_type, - STATE(5714), 1, + STATE(6075), 1, sym__function_attributes_end, - STATE(6745), 1, + STATE(6850), 1, sym_gnu_asm_expression, - ACTIONS(9195), 2, + ACTIONS(6037), 2, anon_sym_final, anon_sym_override, - ACTIONS(9270), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - STATE(5428), 2, + STATE(5540), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5606), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5733), 2, + STATE(5730), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5877), 2, + STATE(5924), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9182), 6, - anon_sym_COMMA, + ACTIONS(9689), 6, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACE, anon_sym_EQ, - [213557] = 18, + anon_sym_try, + [217504] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7083), 1, + ACTIONS(7079), 1, + anon_sym_requires, + ACTIONS(7283), 1, anon_sym___attribute__, - ACTIONS(7085), 1, + ACTIONS(7285), 1, anon_sym___attribute, - ACTIONS(7179), 1, + ACTIONS(7318), 1, anon_sym_DASH_GT, - ACTIONS(9352), 1, + ACTIONS(9147), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9355), 1, + ACTIONS(9150), 1, anon_sym_LBRACK, - ACTIONS(9360), 1, - anon_sym_requires, - ACTIONS(9373), 1, + ACTIONS(9305), 1, anon_sym___asm, - STATE(5544), 1, + STATE(5671), 1, sym_trailing_return_type, - STATE(5715), 1, + STATE(5779), 1, sym__function_attributes_end, - STATE(6745), 1, + STATE(6850), 1, sym_gnu_asm_expression, - ACTIONS(9357), 2, + ACTIONS(6037), 2, anon_sym_final, anon_sym_override, - ACTIONS(9370), 2, + ACTIONS(9302), 2, anon_sym_asm, anon_sym___asm__, - STATE(5428), 2, + STATE(5540), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5606), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5733), 2, + STATE(5730), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5839), 2, + STATE(5927), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9344), 6, + ACTIONS(9139), 6, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACE, anon_sym_EQ, - [213623] = 18, + [217570] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7083), 1, - anon_sym___attribute__, - ACTIONS(7085), 1, + ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7179), 1, + ACTIONS(7071), 1, + anon_sym___asm, + ACTIONS(7299), 1, + anon_sym___attribute__, + ACTIONS(7393), 1, anon_sym_DASH_GT, - ACTIONS(9673), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9676), 1, + ACTIONS(9382), 1, anon_sym_LBRACK, - ACTIONS(9684), 1, + ACTIONS(9401), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9479), 1, anon_sym_requires, - ACTIONS(9693), 1, - anon_sym___asm, - STATE(5554), 1, + STATE(5993), 1, sym_trailing_return_type, - STATE(5716), 1, + STATE(6104), 1, sym__function_attributes_end, - STATE(6745), 1, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(9681), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(9690), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - STATE(5428), 2, + ACTIONS(9387), 2, + anon_sym_final, + anon_sym_override, + STATE(5455), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5606), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5733), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5876), 2, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5934), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9665), 6, - anon_sym_COMMA, + ACTIONS(9371), 5, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_COLON, anon_sym_LBRACE, - anon_sym_EQ, - [213689] = 18, + anon_sym_try, + [217635] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7147), 1, - anon_sym___attribute__, - ACTIONS(7160), 1, - anon_sym_DASH_GT, - ACTIONS(7301), 1, + ACTIONS(7071), 1, + anon_sym___asm, + ACTIONS(7314), 1, anon_sym_requires, - ACTIONS(9676), 1, + ACTIONS(7375), 1, + anon_sym_DASH_GT, + ACTIONS(9150), 1, anon_sym_LBRACK, - ACTIONS(9687), 1, + ACTIONS(9308), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9693), 1, - anon_sym___asm, - STATE(5419), 1, + ACTIONS(9333), 1, + anon_sym___attribute__, + ACTIONS(9336), 1, + anon_sym___attribute, + STATE(5526), 1, sym_trailing_return_type, - STATE(5665), 1, + STATE(5995), 1, sym__function_attributes_end, - STATE(6766), 1, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(6020), 2, + ACTIONS(6037), 2, anon_sym_final, anon_sym_override, - ACTIONS(9690), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - STATE(5384), 2, + STATE(5455), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5458), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5606), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5876), 2, + STATE(5927), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9665), 6, + ACTIONS(9139), 5, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_EQ, - anon_sym_try, - [213755] = 18, + anon_sym_GT2, + [217700] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7147), 1, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7071), 1, + anon_sym___asm, + ACTIONS(7299), 1, anon_sym___attribute__, - ACTIONS(7160), 1, + ACTIONS(7357), 1, anon_sym_DASH_GT, - ACTIONS(7301), 1, + ACTIONS(7361), 1, anon_sym_requires, - ACTIONS(9355), 1, + ACTIONS(9382), 1, anon_sym_LBRACK, - ACTIONS(9367), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9373), 1, - anon_sym___asm, - STATE(5418), 1, + STATE(6016), 1, sym_trailing_return_type, - STATE(5664), 1, + STATE(6280), 1, sym__function_attributes_end, - STATE(6766), 1, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(6020), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(9370), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - STATE(5384), 2, + ACTIONS(7359), 2, + anon_sym_final, + anon_sym_override, + STATE(5455), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5458), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5606), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5839), 2, + STATE(6132), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9344), 6, - anon_sym_COMMA, + ACTIONS(9371), 5, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [213821] = 18, + [217765] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7147), 1, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7071), 1, + anon_sym___asm, + ACTIONS(7299), 1, anon_sym___attribute__, - ACTIONS(7160), 1, + ACTIONS(7424), 1, anon_sym_DASH_GT, - ACTIONS(9193), 1, - anon_sym_LBRACK, - ACTIONS(9273), 1, - anon_sym___asm, - ACTIONS(9276), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9281), 1, + ACTIONS(7447), 1, anon_sym_requires, - STATE(5447), 1, + ACTIONS(9700), 1, + anon_sym_LBRACK, + STATE(6155), 1, sym_trailing_return_type, - STATE(5678), 1, + STATE(6291), 1, sym__function_attributes_end, - STATE(6766), 1, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(9195), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(9270), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - STATE(5384), 2, + ACTIONS(7359), 2, + anon_sym_final, + anon_sym_override, + STATE(5455), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5458), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5606), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5877), 2, + STATE(6133), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9182), 6, + ACTIONS(9689), 5, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [213887] = 18, + [217830] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7065), 1, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7147), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - ACTIONS(7317), 1, + ACTIONS(7424), 1, anon_sym_DASH_GT, - ACTIONS(7388), 1, - anon_sym_requires, - ACTIONS(9676), 1, + ACTIONS(9700), 1, anon_sym_LBRACK, - ACTIONS(9687), 1, - anon_sym_LBRACK_LBRACK, - STATE(6043), 1, - sym__function_attributes_end, - STATE(6228), 1, + ACTIONS(9730), 1, + anon_sym_requires, + STATE(6176), 1, sym_trailing_return_type, - STATE(6766), 1, + STATE(6225), 1, + sym__function_attributes_end, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(6020), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7063), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - STATE(5384), 2, + ACTIONS(9727), 2, + anon_sym_final, + anon_sym_override, + STATE(5455), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5458), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5606), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5876), 2, + STATE(6133), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9665), 5, + ACTIONS(9689), 5, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_try, - [213952] = 18, + [217895] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7065), 1, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7147), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - ACTIONS(7330), 1, + ACTIONS(7357), 1, anon_sym_DASH_GT, - ACTIONS(7400), 1, - anon_sym_requires, - ACTIONS(9193), 1, + ACTIONS(9382), 1, anon_sym_LBRACK, - STATE(5909), 1, + ACTIONS(9550), 1, + anon_sym_requires, + STATE(5980), 1, sym_trailing_return_type, - STATE(6127), 1, + STATE(6270), 1, sym__function_attributes_end, - STATE(6766), 1, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(7063), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7335), 2, + ACTIONS(9488), 2, anon_sym_final, anon_sym_override, - STATE(5384), 2, + STATE(5455), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5458), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6012), 2, + STATE(6132), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9182), 5, + ACTIONS(9371), 5, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [214017] = 18, + [217960] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7065), 1, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7147), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - ACTIONS(7322), 1, + ACTIONS(7424), 1, anon_sym_DASH_GT, - ACTIONS(7337), 1, - anon_sym_requires, - ACTIONS(9355), 1, + ACTIONS(9150), 1, anon_sym_LBRACK, - STATE(6033), 1, + ACTIONS(9366), 1, + anon_sym_requires, + STATE(6182), 1, sym_trailing_return_type, - STATE(6163), 1, + STATE(6214), 1, sym__function_attributes_end, - STATE(6766), 1, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(7063), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7335), 2, + ACTIONS(9327), 2, anon_sym_final, anon_sym_override, - STATE(5384), 2, + STATE(5455), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5458), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6032), 2, + STATE(6149), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9344), 5, + ACTIONS(9139), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, - [214082] = 18, + [218025] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7065), 1, + ACTIONS(5523), 1, + anon_sym_LBRACE, + ACTIONS(5515), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5517), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym___extension__, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [218062] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7147), 1, - anon_sym___attribute__, - ACTIONS(7317), 1, + ACTIONS(7375), 1, anon_sym_DASH_GT, - ACTIONS(7388), 1, - anon_sym_requires, - ACTIONS(9193), 1, + ACTIONS(9700), 1, anon_sym_LBRACK, - ACTIONS(9276), 1, + ACTIONS(9715), 1, anon_sym_LBRACK_LBRACK, - STATE(6011), 1, - sym__function_attributes_end, - STATE(6252), 1, + ACTIONS(9724), 1, + anon_sym_requires, + ACTIONS(9733), 1, + anon_sym___attribute__, + ACTIONS(9736), 1, + anon_sym___attribute, + STATE(5537), 1, sym_trailing_return_type, - STATE(6766), 1, + STATE(6003), 1, + sym__function_attributes_end, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(6020), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7063), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - STATE(5384), 2, + ACTIONS(9702), 2, + anon_sym_final, + anon_sym_override, + STATE(5455), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5458), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5606), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5877), 2, + STATE(5924), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9182), 5, + ACTIONS(9689), 5, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_try, - [214147] = 18, + anon_sym_EQ, + anon_sym_GT2, + [218127] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7065), 1, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7147), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - ACTIONS(7330), 1, + ACTIONS(7424), 1, anon_sym_DASH_GT, - ACTIONS(7400), 1, + ACTIONS(7447), 1, anon_sym_requires, - ACTIONS(9355), 1, + ACTIONS(9382), 1, anon_sym_LBRACK, - STATE(5927), 1, + STATE(6152), 1, sym_trailing_return_type, - STATE(6104), 1, + STATE(6234), 1, sym__function_attributes_end, - STATE(6766), 1, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(7063), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7335), 2, + ACTIONS(7359), 2, anon_sym_final, anon_sym_override, - STATE(5384), 2, + STATE(5455), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5458), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6032), 2, + STATE(6132), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9344), 5, + ACTIONS(9371), 5, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [214212] = 18, + [218192] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7065), 1, - anon_sym___asm, - ACTIONS(7147), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - ACTIONS(7330), 1, + ACTIONS(7443), 1, anon_sym_DASH_GT, - ACTIONS(7400), 1, - anon_sym_requires, - ACTIONS(9676), 1, + ACTIONS(9150), 1, anon_sym_LBRACK, - STATE(5940), 1, - sym_trailing_return_type, - STATE(6117), 1, + ACTIONS(9305), 1, + anon_sym___asm, + ACTIONS(9308), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9359), 1, + anon_sym_requires, + STATE(5887), 1, sym__function_attributes_end, - STATE(6766), 1, + STATE(6044), 1, + sym_trailing_return_type, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(7063), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7335), 2, + ACTIONS(9193), 2, anon_sym_final, anon_sym_override, - STATE(5384), 2, + ACTIONS(9302), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5455), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5458), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6041), 2, + STATE(5927), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9665), 5, + ACTIONS(9139), 5, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_EQ, anon_sym_try, - [214277] = 18, + [218257] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7065), 1, - anon_sym___asm, - ACTIONS(7147), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - ACTIONS(7322), 1, + ACTIONS(7443), 1, anon_sym_DASH_GT, - ACTIONS(7337), 1, - anon_sym_requires, - ACTIONS(9193), 1, + ACTIONS(9382), 1, anon_sym_LBRACK, - STATE(6013), 1, - sym_trailing_return_type, - STATE(6133), 1, + ACTIONS(9396), 1, + anon_sym___asm, + ACTIONS(9401), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9479), 1, + anon_sym_requires, + STATE(5888), 1, sym__function_attributes_end, - STATE(6766), 1, + STATE(5993), 1, + sym_trailing_return_type, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(7063), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7335), 2, + ACTIONS(9387), 2, anon_sym_final, anon_sym_override, - STATE(5384), 2, + ACTIONS(9393), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5455), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5458), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6012), 2, + STATE(5934), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9182), 5, + ACTIONS(9371), 5, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, - [214342] = 18, + anon_sym_try, + [218322] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7065), 1, - anon_sym___asm, - ACTIONS(7147), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - ACTIONS(7317), 1, + ACTIONS(7443), 1, anon_sym_DASH_GT, - ACTIONS(7388), 1, - anon_sym_requires, - ACTIONS(9355), 1, + ACTIONS(9700), 1, anon_sym_LBRACK, - ACTIONS(9367), 1, + ACTIONS(9715), 1, anon_sym_LBRACK_LBRACK, - STATE(6031), 1, + ACTIONS(9721), 1, + anon_sym___asm, + ACTIONS(9739), 1, + anon_sym_requires, + STATE(5889), 1, sym__function_attributes_end, - STATE(6198), 1, + STATE(6046), 1, sym_trailing_return_type, - STATE(6766), 1, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(6020), 2, + ACTIONS(9702), 2, anon_sym_final, anon_sym_override, - ACTIONS(7063), 2, + ACTIONS(9718), 2, anon_sym_asm, anon_sym___asm__, - STATE(5384), 2, + STATE(5455), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5458), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5606), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5839), 2, + STATE(5924), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9344), 5, - anon_sym_RPAREN, + ACTIONS(9689), 5, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_try, - [214407] = 18, + [218387] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7065), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7301), 1, - anon_sym_requires, - ACTIONS(7313), 1, + ACTIONS(7299), 1, + anon_sym___attribute__, + ACTIONS(7357), 1, anon_sym_DASH_GT, - ACTIONS(9193), 1, + ACTIONS(7361), 1, + anon_sym_requires, + ACTIONS(9150), 1, anon_sym_LBRACK, - ACTIONS(9276), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9291), 1, - anon_sym___attribute__, - ACTIONS(9294), 1, - anon_sym___attribute, - STATE(5453), 1, + STATE(5975), 1, sym_trailing_return_type, - STATE(5881), 1, + STATE(6269), 1, sym__function_attributes_end, - STATE(6766), 1, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(6020), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7063), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - STATE(5384), 2, + ACTIONS(7359), 2, + anon_sym_final, + anon_sym_override, + STATE(5455), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5458), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5606), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5877), 2, + STATE(6149), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9182), 5, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(9139), 5, anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_EQ, - anon_sym_GT2, - [214472] = 18, + anon_sym_try, + [218452] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7065), 1, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7301), 1, - anon_sym_requires, - ACTIONS(7313), 1, + ACTIONS(7445), 1, anon_sym_DASH_GT, - ACTIONS(9355), 1, + ACTIONS(9150), 1, anon_sym_LBRACK, - ACTIONS(9367), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9466), 1, + ACTIONS(9330), 1, + anon_sym_requires, + ACTIONS(9333), 1, anon_sym___attribute__, - ACTIONS(9469), 1, + ACTIONS(9336), 1, anon_sym___attribute, - STATE(5418), 1, + STATE(6031), 1, sym_trailing_return_type, - STATE(5921), 1, + STATE(6067), 1, sym__function_attributes_end, - STATE(6766), 1, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(6020), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7063), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - STATE(5384), 2, + ACTIONS(9327), 2, + anon_sym_final, + anon_sym_override, + STATE(5455), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5458), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5606), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5839), 2, + STATE(6149), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9344), 5, + ACTIONS(9139), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_EQ, anon_sym_GT2, - [214537] = 18, + [218517] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7065), 1, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7301), 1, - anon_sym_requires, - ACTIONS(7313), 1, + ACTIONS(7445), 1, anon_sym_DASH_GT, - ACTIONS(9676), 1, + ACTIONS(9382), 1, anon_sym_LBRACK, - ACTIONS(9687), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9699), 1, + ACTIONS(9518), 1, anon_sym___attribute__, - ACTIONS(9702), 1, + ACTIONS(9521), 1, anon_sym___attribute, - STATE(5419), 1, + ACTIONS(9550), 1, + anon_sym_requires, + STATE(5980), 1, sym_trailing_return_type, - STATE(5922), 1, + STATE(6048), 1, sym__function_attributes_end, - STATE(6766), 1, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(6020), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7063), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - STATE(5384), 2, + ACTIONS(9488), 2, + anon_sym_final, + anon_sym_override, + STATE(5455), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5458), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5606), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5876), 2, + STATE(6132), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9665), 5, + ACTIONS(9371), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_EQ, anon_sym_GT2, - [214602] = 18, + [218582] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7065), 1, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7400), 1, - anon_sym_requires, - ACTIONS(7447), 1, + ACTIONS(7445), 1, anon_sym_DASH_GT, - ACTIONS(9193), 1, + ACTIONS(9700), 1, anon_sym_LBRACK, - ACTIONS(9291), 1, + ACTIONS(9733), 1, anon_sym___attribute__, - ACTIONS(9294), 1, + ACTIONS(9736), 1, anon_sym___attribute, - STATE(5909), 1, + ACTIONS(9742), 1, + anon_sym_requires, + STATE(5992), 1, sym_trailing_return_type, - STATE(5976), 1, + STATE(6049), 1, sym__function_attributes_end, - STATE(6766), 1, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(7063), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7335), 2, + ACTIONS(9727), 2, anon_sym_final, anon_sym_override, - STATE(5384), 2, + STATE(5455), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5458), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6012), 2, + STATE(6133), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9182), 5, + ACTIONS(9689), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_EQ, anon_sym_GT2, - [214667] = 18, + [218647] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7065), 1, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7400), 1, + ACTIONS(7314), 1, anon_sym_requires, - ACTIONS(7447), 1, + ACTIONS(7375), 1, anon_sym_DASH_GT, - ACTIONS(9355), 1, + ACTIONS(9382), 1, anon_sym_LBRACK, - ACTIONS(9466), 1, + ACTIONS(9401), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9518), 1, anon_sym___attribute__, - ACTIONS(9469), 1, + ACTIONS(9521), 1, anon_sym___attribute, - STATE(5927), 1, + STATE(5529), 1, sym_trailing_return_type, - STATE(5956), 1, + STATE(5996), 1, sym__function_attributes_end, - STATE(6766), 1, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(7063), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7335), 2, + ACTIONS(6037), 2, anon_sym_final, anon_sym_override, - STATE(5384), 2, + ACTIONS(7069), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5455), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5458), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6032), 2, + STATE(5934), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9344), 5, + ACTIONS(9371), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_EQ, anon_sym_GT2, - [214732] = 18, + [218712] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7065), 1, - anon_sym___asm, - ACTIONS(7400), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(7299), 1, + anon_sym___attribute__, + ACTIONS(7395), 1, anon_sym_requires, - ACTIONS(7447), 1, + ACTIONS(7443), 1, anon_sym_DASH_GT, - ACTIONS(9676), 1, + ACTIONS(9150), 1, anon_sym_LBRACK, - ACTIONS(9699), 1, - anon_sym___attribute__, - ACTIONS(9702), 1, - anon_sym___attribute, - STATE(5940), 1, - sym_trailing_return_type, - STATE(5957), 1, + ACTIONS(9305), 1, + anon_sym___asm, + ACTIONS(9308), 1, + anon_sym_LBRACK_LBRACK, + STATE(5883), 1, sym__function_attributes_end, - STATE(6766), 1, + STATE(6042), 1, + sym_trailing_return_type, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(7063), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7335), 2, + ACTIONS(6037), 2, anon_sym_final, anon_sym_override, - STATE(5384), 2, + ACTIONS(9302), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5455), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5458), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6041), 2, + STATE(5927), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9665), 5, + ACTIONS(9139), 5, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_EQ, - anon_sym_GT2, - [214797] = 18, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_try, + [218777] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7065), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7447), 1, - anon_sym_DASH_GT, - ACTIONS(9193), 1, - anon_sym_LBRACK, - ACTIONS(9291), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - ACTIONS(9294), 1, - anon_sym___attribute, - ACTIONS(9300), 1, + ACTIONS(7393), 1, + anon_sym_DASH_GT, + ACTIONS(7395), 1, anon_sym_requires, - STATE(5932), 1, + ACTIONS(9150), 1, + anon_sym_LBRACK, + ACTIONS(9308), 1, + anon_sym_LBRACK_LBRACK, + STATE(6042), 1, sym_trailing_return_type, - STATE(5943), 1, + STATE(6180), 1, sym__function_attributes_end, - STATE(6766), 1, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(7063), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9297), 2, + ACTIONS(6037), 2, anon_sym_final, anon_sym_override, - STATE(5384), 2, + ACTIONS(7069), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5455), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5458), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6012), 2, + STATE(5927), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9182), 5, - anon_sym_COMMA, + ACTIONS(9139), 5, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_EQ, - anon_sym_GT2, - [214862] = 18, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_try, + [218842] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7065), 1, - anon_sym___asm, - ACTIONS(7447), 1, - anon_sym_DASH_GT, - ACTIONS(9355), 1, - anon_sym_LBRACK, - ACTIONS(9466), 1, - anon_sym___attribute__, - ACTIONS(9469), 1, + ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(9548), 1, + ACTIONS(7299), 1, + anon_sym___attribute__, + ACTIONS(7395), 1, anon_sym_requires, - STATE(5904), 1, - sym_trailing_return_type, - STATE(5944), 1, + ACTIONS(7443), 1, + anon_sym_DASH_GT, + ACTIONS(9382), 1, + anon_sym_LBRACK, + ACTIONS(9396), 1, + anon_sym___asm, + ACTIONS(9401), 1, + anon_sym_LBRACK_LBRACK, + STATE(5884), 1, sym__function_attributes_end, - STATE(6766), 1, + STATE(5994), 1, + sym_trailing_return_type, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(7063), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9495), 2, + ACTIONS(6037), 2, anon_sym_final, anon_sym_override, - STATE(5384), 2, + ACTIONS(9393), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5455), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5458), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6032), 2, + STATE(5934), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9344), 5, + ACTIONS(9371), 5, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_EQ, - anon_sym_GT2, - [214927] = 18, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_try, + [218907] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5472), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7065), 1, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7447), 1, + ACTIONS(7299), 1, + anon_sym___attribute__, + ACTIONS(7424), 1, anon_sym_DASH_GT, - ACTIONS(9676), 1, + ACTIONS(9382), 1, anon_sym_LBRACK, - ACTIONS(9699), 1, - anon_sym___attribute__, - ACTIONS(9702), 1, - anon_sym___attribute, - ACTIONS(9708), 1, + ACTIONS(9491), 1, anon_sym_requires, - STATE(5935), 1, + STATE(6111), 1, sym_trailing_return_type, - STATE(5945), 1, + STATE(6221), 1, sym__function_attributes_end, - STATE(6766), 1, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(7063), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9705), 2, + ACTIONS(9488), 2, anon_sym_final, anon_sym_override, - STATE(5384), 2, + STATE(5455), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5458), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6041), 2, + STATE(6132), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9665), 5, + ACTIONS(9371), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_EQ, - anon_sym_GT2, - [214992] = 18, + anon_sym_SEMI, + anon_sym_LBRACE, + [218972] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7065), 1, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7147), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - ACTIONS(7322), 1, + ACTIONS(7393), 1, anon_sym_DASH_GT, - ACTIONS(7337), 1, + ACTIONS(7395), 1, anon_sym_requires, - ACTIONS(9676), 1, + ACTIONS(9382), 1, anon_sym_LBRACK, - STATE(6042), 1, + ACTIONS(9401), 1, + anon_sym_LBRACK_LBRACK, + STATE(5994), 1, sym_trailing_return_type, STATE(6119), 1, sym__function_attributes_end, - STATE(6766), 1, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(7063), 2, + ACTIONS(6037), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7335), 2, + STATE(5455), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5507), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5934), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9371), 5, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_try, + [219037] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7071), 1, + anon_sym___asm, + ACTIONS(7314), 1, + anon_sym_requires, + ACTIONS(7375), 1, + anon_sym_DASH_GT, + ACTIONS(9700), 1, + anon_sym_LBRACK, + ACTIONS(9715), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9733), 1, + anon_sym___attribute__, + ACTIONS(9736), 1, + anon_sym___attribute, + STATE(5530), 1, + sym_trailing_return_type, + STATE(5997), 1, + sym__function_attributes_end, + STATE(6870), 1, + sym_gnu_asm_expression, + ACTIONS(6037), 2, anon_sym_final, anon_sym_override, - STATE(5384), 2, + ACTIONS(7069), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5455), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5458), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6041), 2, + STATE(5924), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9665), 5, + ACTIONS(9689), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - [215057] = 18, + anon_sym_EQ, + anon_sym_GT2, + [219102] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7065), 1, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7147), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - ACTIONS(7317), 1, + ACTIONS(7357), 1, anon_sym_DASH_GT, - ACTIONS(9193), 1, + ACTIONS(9700), 1, anon_sym_LBRACK, - ACTIONS(9276), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9316), 1, + ACTIONS(9742), 1, anon_sym_requires, - STATE(6023), 1, - sym__function_attributes_end, - STATE(6254), 1, + STATE(5992), 1, sym_trailing_return_type, - STATE(6766), 1, + STATE(6272), 1, + sym__function_attributes_end, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(7063), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9195), 2, + ACTIONS(9727), 2, anon_sym_final, anon_sym_override, - STATE(5384), 2, + STATE(5455), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5458), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5606), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5877), 2, + STATE(6133), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9182), 5, - anon_sym_RPAREN, + ACTIONS(9689), 5, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_EQ, anon_sym_try, - [215122] = 18, + [219167] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7065), 1, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7147), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - ACTIONS(7317), 1, + ACTIONS(7357), 1, anon_sym_DASH_GT, - ACTIONS(9355), 1, - anon_sym_LBRACK, - ACTIONS(9367), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9472), 1, + ACTIONS(7361), 1, anon_sym_requires, - STATE(6036), 1, - sym__function_attributes_end, - STATE(6260), 1, + ACTIONS(9700), 1, + anon_sym_LBRACK, + STATE(6015), 1, sym_trailing_return_type, - STATE(6766), 1, + STATE(6289), 1, + sym__function_attributes_end, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(7063), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9357), 2, + ACTIONS(7359), 2, anon_sym_final, anon_sym_override, - STATE(5384), 2, + STATE(5455), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5458), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5606), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5839), 2, + STATE(6133), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9344), 5, - anon_sym_RPAREN, + ACTIONS(9689), 5, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_EQ, anon_sym_try, - [215187] = 18, + [219232] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7065), 1, - anon_sym___asm, - ACTIONS(7147), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - ACTIONS(7317), 1, + ACTIONS(7395), 1, + anon_sym_requires, + ACTIONS(7443), 1, anon_sym_DASH_GT, - ACTIONS(9676), 1, + ACTIONS(9700), 1, anon_sym_LBRACK, - ACTIONS(9687), 1, + ACTIONS(9715), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9711), 1, - anon_sym_requires, - STATE(6040), 1, + ACTIONS(9721), 1, + anon_sym___asm, + STATE(5885), 1, sym__function_attributes_end, - STATE(6261), 1, + STATE(6023), 1, sym_trailing_return_type, - STATE(6766), 1, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(7063), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9681), 2, + ACTIONS(6037), 2, anon_sym_final, anon_sym_override, - STATE(5384), 2, + ACTIONS(9718), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5455), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5458), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5606), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5876), 2, + STATE(5924), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9665), 5, - anon_sym_RPAREN, + ACTIONS(9689), 5, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_try, - [215252] = 18, + [219297] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7065), 1, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7147), 1, - anon_sym___attribute__, - ACTIONS(7322), 1, + ACTIONS(7361), 1, + anon_sym_requires, + ACTIONS(7445), 1, anon_sym_DASH_GT, - ACTIONS(9193), 1, + ACTIONS(9150), 1, anon_sym_LBRACK, - ACTIONS(9328), 1, - anon_sym_requires, - STATE(6034), 1, + ACTIONS(9333), 1, + anon_sym___attribute__, + ACTIONS(9336), 1, + anon_sym___attribute, + STATE(5975), 1, sym_trailing_return_type, - STATE(6169), 1, + STATE(6083), 1, sym__function_attributes_end, - STATE(6766), 1, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(7063), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9297), 2, + ACTIONS(7359), 2, anon_sym_final, anon_sym_override, - STATE(5384), 2, + STATE(5455), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5458), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6012), 2, + STATE(6149), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9182), 5, + ACTIONS(9139), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - [215317] = 18, + anon_sym_EQ, + anon_sym_GT2, + [219362] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7065), 1, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7147), 1, - anon_sym___attribute__, - ACTIONS(7322), 1, + ACTIONS(7361), 1, + anon_sym_requires, + ACTIONS(7445), 1, anon_sym_DASH_GT, - ACTIONS(9355), 1, + ACTIONS(9382), 1, anon_sym_LBRACK, - ACTIONS(9498), 1, - anon_sym_requires, - STATE(6063), 1, + ACTIONS(9518), 1, + anon_sym___attribute__, + ACTIONS(9521), 1, + anon_sym___attribute, + STATE(6016), 1, sym_trailing_return_type, - STATE(6150), 1, + STATE(6084), 1, sym__function_attributes_end, - STATE(6766), 1, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(7063), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9495), 2, + ACTIONS(7359), 2, anon_sym_final, anon_sym_override, - STATE(5384), 2, + STATE(5455), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5458), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6032), 2, + STATE(6132), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9344), 5, + ACTIONS(9371), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - [215382] = 18, + anon_sym_EQ, + anon_sym_GT2, + [219427] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7065), 1, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7147), 1, - anon_sym___attribute__, - ACTIONS(7322), 1, + ACTIONS(7375), 1, anon_sym_DASH_GT, - ACTIONS(9676), 1, + ACTIONS(9150), 1, anon_sym_LBRACK, - ACTIONS(9714), 1, + ACTIONS(9308), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9311), 1, anon_sym_requires, - STATE(6064), 1, + ACTIONS(9333), 1, + anon_sym___attribute__, + ACTIONS(9336), 1, + anon_sym___attribute, + STATE(5528), 1, sym_trailing_return_type, - STATE(6118), 1, + STATE(6001), 1, sym__function_attributes_end, - STATE(6766), 1, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(7063), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9705), 2, + ACTIONS(9193), 2, anon_sym_final, anon_sym_override, - STATE(5384), 2, + STATE(5455), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5458), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6041), 2, + STATE(5927), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9665), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - [215447] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5627), 1, - anon_sym_LBRACE, - ACTIONS(5450), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(5452), 24, - anon_sym_DOT_DOT_DOT, + ACTIONS(9139), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym___extension__, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_auto, - anon_sym_decltype, + anon_sym_EQ, anon_sym_GT2, - [215484] = 18, + [219492] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7065), 1, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7147), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - ACTIONS(7330), 1, + ACTIONS(7393), 1, anon_sym_DASH_GT, - ACTIONS(9193), 1, - anon_sym_LBRACK, - ACTIONS(9300), 1, + ACTIONS(7395), 1, anon_sym_requires, - STATE(5932), 1, + ACTIONS(9700), 1, + anon_sym_LBRACK, + ACTIONS(9715), 1, + anon_sym_LBRACK_LBRACK, + STATE(6023), 1, sym_trailing_return_type, - STATE(6099), 1, + STATE(6102), 1, sym__function_attributes_end, - STATE(6766), 1, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(7063), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9297), 2, + ACTIONS(6037), 2, anon_sym_final, anon_sym_override, - STATE(5384), 2, + ACTIONS(7069), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5455), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5458), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6012), 2, + STATE(5924), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9182), 5, + ACTIONS(9689), 5, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_EQ, anon_sym_try, - [215549] = 18, + [219557] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7065), 1, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7147), 1, - anon_sym___attribute__, - ACTIONS(7330), 1, + ACTIONS(7361), 1, + anon_sym_requires, + ACTIONS(7445), 1, anon_sym_DASH_GT, - ACTIONS(9355), 1, + ACTIONS(9700), 1, anon_sym_LBRACK, - ACTIONS(9548), 1, - anon_sym_requires, - STATE(5904), 1, + ACTIONS(9733), 1, + anon_sym___attribute__, + ACTIONS(9736), 1, + anon_sym___attribute, + STATE(6015), 1, sym_trailing_return_type, - STATE(6108), 1, + STATE(6087), 1, sym__function_attributes_end, - STATE(6766), 1, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(7063), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9495), 2, + ACTIONS(7359), 2, anon_sym_final, anon_sym_override, - STATE(5384), 2, + STATE(5455), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5458), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6032), 2, + STATE(6133), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9344), 5, + ACTIONS(9689), 5, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_EQ, - anon_sym_try, - [215614] = 18, + anon_sym_GT2, + [219622] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7065), 1, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7147), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - ACTIONS(7330), 1, + ACTIONS(7393), 1, anon_sym_DASH_GT, - ACTIONS(9676), 1, + ACTIONS(9150), 1, anon_sym_LBRACK, - ACTIONS(9708), 1, + ACTIONS(9308), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9359), 1, anon_sym_requires, - STATE(5935), 1, + STATE(6044), 1, sym_trailing_return_type, - STATE(6112), 1, + STATE(6157), 1, sym__function_attributes_end, - STATE(6766), 1, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(7063), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9705), 2, + ACTIONS(9193), 2, anon_sym_final, anon_sym_override, - STATE(5384), 2, + STATE(5455), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5458), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6041), 2, + STATE(5927), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9665), 5, + ACTIONS(9139), 5, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_EQ, anon_sym_try, - [215679] = 18, + [219687] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7065), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7313), 1, + ACTIONS(7299), 1, + anon_sym___attribute__, + ACTIONS(7357), 1, anon_sym_DASH_GT, - ACTIONS(9193), 1, + ACTIONS(9150), 1, anon_sym_LBRACK, - ACTIONS(9276), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9281), 1, + ACTIONS(9330), 1, anon_sym_requires, - ACTIONS(9291), 1, - anon_sym___attribute__, - ACTIONS(9294), 1, - anon_sym___attribute, - STATE(5447), 1, + STATE(6031), 1, sym_trailing_return_type, - STATE(5882), 1, + STATE(6264), 1, sym__function_attributes_end, - STATE(6766), 1, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(7063), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9195), 2, + ACTIONS(9327), 2, anon_sym_final, anon_sym_override, - STATE(5384), 2, + STATE(5455), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5458), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5606), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5877), 2, + STATE(6149), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9182), 5, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(9139), 5, anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_EQ, - anon_sym_GT2, - [215744] = 18, + anon_sym_try, + [219752] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7065), 1, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7313), 1, + ACTIONS(7375), 1, anon_sym_DASH_GT, - ACTIONS(9355), 1, + ACTIONS(9382), 1, anon_sym_LBRACK, - ACTIONS(9367), 1, + ACTIONS(9401), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9376), 1, + ACTIONS(9407), 1, anon_sym_requires, - ACTIONS(9466), 1, + ACTIONS(9518), 1, anon_sym___attribute__, - ACTIONS(9469), 1, + ACTIONS(9521), 1, anon_sym___attribute, - STATE(5448), 1, + STATE(5536), 1, sym_trailing_return_type, - STATE(5883), 1, + STATE(6002), 1, sym__function_attributes_end, - STATE(6766), 1, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(7063), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9357), 2, + ACTIONS(9387), 2, anon_sym_final, anon_sym_override, - STATE(5384), 2, + STATE(5455), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5458), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5606), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5839), 2, + STATE(5934), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9344), 5, + ACTIONS(9371), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_EQ, anon_sym_GT2, - [215809] = 18, + [219817] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7065), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7313), 1, + ACTIONS(7299), 1, + anon_sym___attribute__, + ACTIONS(7393), 1, anon_sym_DASH_GT, - ACTIONS(9676), 1, + ACTIONS(9700), 1, anon_sym_LBRACK, - ACTIONS(9687), 1, + ACTIONS(9715), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9696), 1, + ACTIONS(9739), 1, anon_sym_requires, - ACTIONS(9699), 1, - anon_sym___attribute__, - ACTIONS(9702), 1, - anon_sym___attribute, - STATE(5450), 1, + STATE(6046), 1, sym_trailing_return_type, - STATE(5892), 1, + STATE(6106), 1, sym__function_attributes_end, - STATE(6766), 1, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(7063), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9681), 2, + ACTIONS(9702), 2, anon_sym_final, anon_sym_override, - STATE(5384), 2, + STATE(5455), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5458), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5606), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5876), 2, + STATE(5924), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9665), 5, - anon_sym_COMMA, + ACTIONS(9689), 5, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_EQ, - anon_sym_GT2, - [215874] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(8280), 1, - sym_identifier, - ACTIONS(8282), 1, - anon_sym_LPAREN2, - ACTIONS(8292), 1, - sym_primitive_type, - ACTIONS(8300), 1, - anon_sym_STAR, - ACTIONS(8302), 1, - anon_sym_AMP_AMP, - ACTIONS(8304), 1, - anon_sym_AMP, - STATE(2220), 1, - sym_pointer_type_declarator, - STATE(5799), 1, - sym_ms_call_modifier, - STATE(6765), 1, - sym__type_declarator, - STATE(8344), 1, - sym_ms_based_modifier, - ACTIONS(8290), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2218), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - ACTIONS(55), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [215932] = 18, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_try, + [219882] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7065), 1, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7147), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - ACTIONS(7549), 1, + ACTIONS(7424), 1, anon_sym_DASH_GT, - ACTIONS(7551), 1, + ACTIONS(7447), 1, anon_sym_requires, - ACTIONS(9193), 1, + ACTIONS(9150), 1, anon_sym_LBRACK, - STATE(6175), 1, - sym__function_attributes_end, - STATE(6207), 1, + STATE(6123), 1, sym_trailing_return_type, - STATE(6766), 1, + STATE(6207), 1, + sym__function_attributes_end, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(7063), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7335), 2, + ACTIONS(7359), 2, anon_sym_final, anon_sym_override, - STATE(5384), 2, + STATE(5455), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5458), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6012), 2, + STATE(6149), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9182), 4, - anon_sym_DOT_DOT_DOT, + ACTIONS(9139), 5, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_GT2, - [215996] = 18, + anon_sym_SEMI, + anon_sym_LBRACE, + [219947] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7065), 1, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7147), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - ACTIONS(7549), 1, + ACTIONS(7536), 1, anon_sym_DASH_GT, - ACTIONS(7551), 1, - anon_sym_requires, - ACTIONS(9355), 1, + ACTIONS(9700), 1, anon_sym_LBRACK, - STATE(6177), 1, - sym__function_attributes_end, - STATE(6229), 1, + ACTIONS(9745), 1, + anon_sym_requires, + STATE(6307), 1, sym_trailing_return_type, - STATE(6766), 1, + STATE(6313), 1, + sym__function_attributes_end, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(7063), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7335), 2, + ACTIONS(9727), 2, anon_sym_final, anon_sym_override, - STATE(5384), 2, + STATE(5455), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5458), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6032), 2, + STATE(6133), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9344), 4, + ACTIONS(9689), 4, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_GT2, - [216060] = 15, + [220011] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8280), 1, + ACTIONS(8268), 1, sym_identifier, + ACTIONS(8270), 1, + anon_sym_LPAREN2, ACTIONS(8282), 1, + sym_primitive_type, + ACTIONS(8338), 1, + anon_sym_STAR, + ACTIONS(8340), 1, + anon_sym_AMP_AMP, + ACTIONS(8342), 1, + anon_sym_AMP, + STATE(1971), 1, + sym_pointer_type_declarator, + STATE(5914), 1, + sym_ms_call_modifier, + STATE(6852), 1, + sym__type_declarator, + STATE(8477), 1, + sym_ms_based_modifier, + ACTIONS(8280), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1985), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(55), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [220069] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(8268), 1, + sym_identifier, + ACTIONS(8270), 1, anon_sym_LPAREN2, - ACTIONS(8292), 1, + ACTIONS(8282), 1, sym_primitive_type, - ACTIONS(8300), 1, + ACTIONS(8338), 1, anon_sym_STAR, - ACTIONS(8302), 1, + ACTIONS(8340), 1, anon_sym_AMP_AMP, - ACTIONS(8304), 1, + ACTIONS(8342), 1, anon_sym_AMP, - STATE(2220), 1, + STATE(1971), 1, sym_pointer_type_declarator, - STATE(5814), 1, + STATE(5957), 1, sym_ms_call_modifier, - STATE(6721), 1, + STATE(6833), 1, sym__type_declarator, - STATE(8344), 1, + STATE(8477), 1, sym_ms_based_modifier, - ACTIONS(8290), 4, + ACTIONS(8280), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2218), 5, + STATE(1985), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -473340,83 +480293,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [216118] = 18, + [220127] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7065), 1, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7147), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - ACTIONS(7549), 1, + ACTIONS(7536), 1, anon_sym_DASH_GT, - ACTIONS(9193), 1, - anon_sym_LBRACK, - ACTIONS(9341), 1, + ACTIONS(7538), 1, anon_sym_requires, - STATE(6188), 1, + ACTIONS(9700), 1, + anon_sym_LBRACK, + STATE(6297), 1, sym_trailing_return_type, - STATE(6211), 1, + STATE(6302), 1, sym__function_attributes_end, - STATE(6766), 1, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(7063), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9297), 2, + ACTIONS(7359), 2, anon_sym_final, anon_sym_override, - STATE(5384), 2, + STATE(5455), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5458), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6012), 2, + STATE(6133), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9182), 4, + ACTIONS(9689), 4, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_GT2, - [216182] = 15, + [220191] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8280), 1, + ACTIONS(8268), 1, sym_identifier, - ACTIONS(8282), 1, + ACTIONS(8270), 1, anon_sym_LPAREN2, - ACTIONS(8292), 1, + ACTIONS(8282), 1, sym_primitive_type, - ACTIONS(8300), 1, + ACTIONS(8338), 1, anon_sym_STAR, - ACTIONS(8302), 1, + ACTIONS(8340), 1, anon_sym_AMP_AMP, - ACTIONS(8304), 1, + ACTIONS(8342), 1, anon_sym_AMP, - STATE(2220), 1, + STATE(1971), 1, sym_pointer_type_declarator, - STATE(5878), 1, + STATE(5877), 1, sym_ms_call_modifier, - STATE(6735), 1, + STATE(6867), 1, sym__type_declarator, - STATE(8344), 1, + STATE(8477), 1, sym_ms_based_modifier, - ACTIONS(8290), 4, + ACTIONS(8280), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2218), 5, + STATE(1985), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -473429,83 +480382,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [216240] = 18, + [220249] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7065), 1, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7147), 1, + ACTIONS(7299), 1, + anon_sym___attribute__, + ACTIONS(7536), 1, + anon_sym_DASH_GT, + ACTIONS(7538), 1, + anon_sym_requires, + ACTIONS(9150), 1, + anon_sym_LBRACK, + STATE(6295), 1, + sym_trailing_return_type, + STATE(6300), 1, + sym__function_attributes_end, + STATE(6870), 1, + sym_gnu_asm_expression, + ACTIONS(7069), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7359), 2, + anon_sym_final, + anon_sym_override, + STATE(5455), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5507), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6017), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6149), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9139), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + [220313] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7071), 1, + anon_sym___asm, + ACTIONS(7299), 1, anon_sym___attribute__, - ACTIONS(7549), 1, + ACTIONS(7536), 1, anon_sym_DASH_GT, - ACTIONS(9355), 1, + ACTIONS(9150), 1, anon_sym_LBRACK, - ACTIONS(9629), 1, + ACTIONS(9384), 1, anon_sym_requires, - STATE(6189), 1, + STATE(6305), 1, sym_trailing_return_type, - STATE(6212), 1, + STATE(6311), 1, sym__function_attributes_end, - STATE(6766), 1, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(7063), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9495), 2, + ACTIONS(9327), 2, anon_sym_final, anon_sym_override, - STATE(5384), 2, + STATE(5455), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5458), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6032), 2, + STATE(6149), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9344), 4, + ACTIONS(9139), 4, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_GT2, - [216304] = 15, + [220377] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8280), 1, + ACTIONS(8268), 1, sym_identifier, - ACTIONS(8282), 1, + ACTIONS(8270), 1, anon_sym_LPAREN2, - ACTIONS(8292), 1, + ACTIONS(8282), 1, sym_primitive_type, - ACTIONS(8300), 1, + ACTIONS(8338), 1, anon_sym_STAR, - ACTIONS(8302), 1, + ACTIONS(8340), 1, anon_sym_AMP_AMP, - ACTIONS(8304), 1, + ACTIONS(8342), 1, anon_sym_AMP, - STATE(2220), 1, + STATE(1971), 1, sym_pointer_type_declarator, - STATE(5845), 1, + STATE(5898), 1, sym_ms_call_modifier, - STATE(6769), 1, + STATE(6841), 1, sym__type_declarator, - STATE(8344), 1, + STATE(8477), 1, sym_ms_based_modifier, - ACTIONS(8290), 4, + ACTIONS(8280), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2218), 5, + STATE(1985), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -473518,479 +480517,483 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [216362] = 18, + [220435] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7065), 1, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7147), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - ACTIONS(7549), 1, + ACTIONS(7536), 1, anon_sym_DASH_GT, - ACTIONS(9676), 1, + ACTIONS(9382), 1, anon_sym_LBRACK, - ACTIONS(9717), 1, + ACTIONS(9651), 1, anon_sym_requires, - STATE(6190), 1, + STATE(6306), 1, sym_trailing_return_type, - STATE(6213), 1, + STATE(6312), 1, sym__function_attributes_end, - STATE(6766), 1, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(7063), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9705), 2, + ACTIONS(9488), 2, anon_sym_final, anon_sym_override, - STATE(5384), 2, + STATE(5455), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5458), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6041), 2, + STATE(6132), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9665), 4, + ACTIONS(9371), 4, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_GT2, - [216426] = 18, + [220499] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7065), 1, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7147), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - ACTIONS(7549), 1, + ACTIONS(7536), 1, anon_sym_DASH_GT, - ACTIONS(7551), 1, + ACTIONS(7538), 1, anon_sym_requires, - ACTIONS(9676), 1, + ACTIONS(9382), 1, anon_sym_LBRACK, - STATE(6178), 1, - sym__function_attributes_end, - STATE(6239), 1, + STATE(6296), 1, sym_trailing_return_type, - STATE(6766), 1, + STATE(6301), 1, + sym__function_attributes_end, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(7063), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7335), 2, + ACTIONS(7359), 2, anon_sym_final, anon_sym_override, - STATE(5384), 2, + STATE(5455), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5458), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6041), 2, + STATE(6132), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9665), 4, + ACTIONS(9371), 4, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_GT2, - [216490] = 18, + [220563] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7065), 1, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7337), 1, + ACTIONS(7447), 1, anon_sym_requires, - ACTIONS(7667), 1, + ACTIONS(7799), 1, anon_sym_DASH_GT, - ACTIONS(9355), 1, + ACTIONS(9382), 1, anon_sym_LBRACK, - ACTIONS(9466), 1, + ACTIONS(9518), 1, anon_sym___attribute__, - ACTIONS(9469), 1, + ACTIONS(9521), 1, anon_sym___attribute, - STATE(6033), 1, + STATE(6152), 1, sym_trailing_return_type, - STATE(6096), 1, + STATE(6223), 1, sym__function_attributes_end, - STATE(6766), 1, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(7063), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7335), 2, + ACTIONS(7359), 2, anon_sym_final, anon_sym_override, - STATE(5384), 2, + STATE(5455), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5458), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6032), 2, + STATE(6132), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9344), 3, + ACTIONS(9371), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - [216553] = 12, + [220626] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(7842), 1, - anon_sym_LPAREN2, - ACTIONS(7856), 1, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(2020), 1, anon_sym_LBRACK, - ACTIONS(7886), 1, - anon_sym_STAR, - ACTIONS(7888), 1, - anon_sym_AMP_AMP, - ACTIONS(7890), 1, - anon_sym_AMP, - ACTIONS(8308), 1, - anon_sym___attribute, - STATE(2860), 1, - sym_parameter_list, - STATE(5792), 1, - sym__function_declarator_seq, - STATE(6053), 1, - sym__abstract_declarator, - STATE(5804), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8306), 11, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, + ACTIONS(9580), 1, + anon_sym_COLON_COLON, + ACTIONS(9656), 1, + sym_identifier, + ACTIONS(9748), 1, + anon_sym_LPAREN2, + ACTIONS(9750), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_try, + ACTIONS(9754), 1, anon_sym_requires, - [216604] = 18, + STATE(2673), 1, + sym_template_type, + STATE(3424), 1, + sym_requirement_seq, + STATE(5494), 1, + sym_lambda_capture_specifier, + STATE(6713), 1, + sym__scope_resolution, + STATE(7755), 1, + sym_requires_parameter_list, + ACTIONS(9752), 2, + sym_true, + sym_false, + STATE(8569), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(3425), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [220687] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7065), 1, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7551), 1, + ACTIONS(7538), 1, anon_sym_requires, - ACTIONS(7653), 1, + ACTIONS(7768), 1, anon_sym_DASH_GT, - ACTIONS(9355), 1, + ACTIONS(9382), 1, anon_sym_LBRACK, - ACTIONS(9466), 1, + ACTIONS(9518), 1, anon_sym___attribute__, - ACTIONS(9469), 1, + ACTIONS(9521), 1, anon_sym___attribute, - STATE(6115), 1, + STATE(6253), 1, sym__function_attributes_end, - STATE(6229), 1, + STATE(6296), 1, sym_trailing_return_type, - STATE(6766), 1, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(7063), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7335), 2, + ACTIONS(7359), 2, anon_sym_final, anon_sym_override, - STATE(5384), 2, + STATE(5455), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5458), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6032), 2, + STATE(6132), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9344), 3, + ACTIONS(9371), 3, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_GT2, - [216667] = 18, + [220750] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7065), 1, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7551), 1, - anon_sym_requires, - ACTIONS(7653), 1, + ACTIONS(7799), 1, anon_sym_DASH_GT, - ACTIONS(9676), 1, + ACTIONS(9700), 1, anon_sym_LBRACK, - ACTIONS(9699), 1, + ACTIONS(9730), 1, + anon_sym_requires, + ACTIONS(9733), 1, anon_sym___attribute__, - ACTIONS(9702), 1, + ACTIONS(9736), 1, anon_sym___attribute, - STATE(6116), 1, - sym__function_attributes_end, - STATE(6239), 1, + STATE(6176), 1, sym_trailing_return_type, - STATE(6766), 1, + STATE(6233), 1, + sym__function_attributes_end, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(7063), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7335), 2, + ACTIONS(9727), 2, anon_sym_final, anon_sym_override, - STATE(5384), 2, + STATE(5455), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5458), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6041), 2, + STATE(6133), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9665), 3, + ACTIONS(9689), 3, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_GT2, - [216730] = 18, + [220813] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7065), 1, - anon_sym___asm, - ACTIONS(7147), 1, - anon_sym___attribute__, - ACTIONS(7745), 1, - anon_sym_DASH_GT, - ACTIONS(9193), 1, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(2020), 1, anon_sym_LBRACK, - ACTIONS(9276), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9281), 1, + ACTIONS(9498), 1, + anon_sym_COLON_COLON, + ACTIONS(9670), 1, + sym_identifier, + ACTIONS(9756), 1, + anon_sym_LPAREN2, + ACTIONS(9758), 1, + anon_sym_LBRACE, + ACTIONS(9762), 1, anon_sym_requires, - STATE(5447), 1, - sym_trailing_return_type, - STATE(6204), 1, - sym__function_attributes_end, - STATE(6766), 1, - sym_gnu_asm_expression, - ACTIONS(7063), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9195), 2, - anon_sym_final, - anon_sym_override, - STATE(5384), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5458), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5606), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5877), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9182), 3, + STATE(2684), 1, + sym_template_type, + STATE(3704), 1, + sym_requirement_seq, + STATE(5495), 1, + sym_lambda_capture_specifier, + STATE(6728), 1, + sym__scope_resolution, + STATE(7904), 1, + sym_requires_parameter_list, + ACTIONS(9760), 2, + sym_true, + sym_false, + STATE(8569), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(3716), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [220874] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(2020), 1, + anon_sym_LBRACK, + ACTIONS(9437), 1, + anon_sym_COLON_COLON, + ACTIONS(9654), 1, + sym_identifier, + ACTIONS(9764), 1, anon_sym_LPAREN2, + ACTIONS(9766), 1, anon_sym_LBRACE, - anon_sym_EQ, - [216793] = 18, + ACTIONS(9770), 1, + anon_sym_requires, + STATE(1784), 1, + sym_template_type, + STATE(3268), 1, + sym_requirement_seq, + STATE(5479), 1, + sym_lambda_capture_specifier, + STATE(6699), 1, + sym__scope_resolution, + STATE(7742), 1, + sym_requires_parameter_list, + ACTIONS(9768), 2, + sym_true, + sym_false, + STATE(8569), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4253), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [220935] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7065), 1, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7147), 1, - anon_sym___attribute__, - ACTIONS(7745), 1, + ACTIONS(7447), 1, + anon_sym_requires, + ACTIONS(7799), 1, anon_sym_DASH_GT, - ACTIONS(9355), 1, + ACTIONS(9700), 1, anon_sym_LBRACK, - ACTIONS(9367), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9376), 1, - anon_sym_requires, - STATE(5448), 1, + ACTIONS(9733), 1, + anon_sym___attribute__, + ACTIONS(9736), 1, + anon_sym___attribute, + STATE(6155), 1, sym_trailing_return_type, - STATE(6205), 1, + STATE(6224), 1, sym__function_attributes_end, - STATE(6766), 1, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(7063), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9357), 2, + ACTIONS(7359), 2, anon_sym_final, anon_sym_override, - STATE(5384), 2, + STATE(5455), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5458), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5606), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5839), 2, + STATE(6133), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9344), 3, + ACTIONS(9689), 3, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_EQ, - [216856] = 18, + [220998] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7065), 1, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7147), 1, - anon_sym___attribute__, - ACTIONS(7745), 1, + ACTIONS(7538), 1, + anon_sym_requires, + ACTIONS(7768), 1, anon_sym_DASH_GT, - ACTIONS(9676), 1, + ACTIONS(9150), 1, anon_sym_LBRACK, - ACTIONS(9687), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9696), 1, - anon_sym_requires, - STATE(5450), 1, - sym_trailing_return_type, - STATE(6206), 1, + ACTIONS(9333), 1, + anon_sym___attribute__, + ACTIONS(9336), 1, + anon_sym___attribute, + STATE(6252), 1, sym__function_attributes_end, - STATE(6766), 1, + STATE(6295), 1, + sym_trailing_return_type, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(7063), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9681), 2, + ACTIONS(7359), 2, anon_sym_final, anon_sym_override, - STATE(5384), 2, + STATE(5455), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5458), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5606), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5876), 2, + STATE(6149), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9665), 3, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_EQ, - [216919] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(2020), 1, - anon_sym_LBRACK, - ACTIONS(9384), 1, - anon_sym_COLON_COLON, - ACTIONS(9640), 1, - sym_identifier, - ACTIONS(9720), 1, + ACTIONS(9139), 3, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(9722), 1, - anon_sym_LBRACE, - ACTIONS(9726), 1, - anon_sym_requires, - STATE(1945), 1, - sym_template_type, - STATE(2527), 1, - sym_requirement_seq, - STATE(5402), 1, - sym_lambda_capture_specifier, - STATE(6580), 1, - sym__scope_resolution, - STATE(7921), 1, - sym_requires_parameter_list, - ACTIONS(9724), 2, - sym_true, - sym_false, - STATE(8601), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(2472), 8, - sym__class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym__requirement_clause_constraint, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, - sym_qualified_type_identifier, - [216980] = 12, + anon_sym_GT2, + [221061] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(7842), 1, + ACTIONS(7848), 1, anon_sym_LPAREN2, - ACTIONS(7856), 1, + ACTIONS(7862), 1, anon_sym_LBRACK, - ACTIONS(7900), 1, + ACTIONS(7866), 1, anon_sym_STAR, - ACTIONS(7902), 1, + ACTIONS(7868), 1, anon_sym_AMP_AMP, - ACTIONS(7904), 1, + ACTIONS(7870), 1, anon_sym_AMP, - ACTIONS(8308), 1, + ACTIONS(8362), 1, anon_sym___asm, - STATE(2885), 1, + STATE(3006), 1, sym_parameter_list, - STATE(5792), 1, + STATE(5953), 1, sym__function_declarator_seq, - STATE(6004), 1, + STATE(6185), 1, sym__abstract_declarator, - STATE(5804), 5, + STATE(5952), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8306), 11, + ACTIONS(8360), 11, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, @@ -474002,42 +481005,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [217031] = 17, + [221112] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, ACTIONS(2020), 1, anon_sym_LBRACK, - ACTIONS(9424), 1, + ACTIONS(9459), 1, anon_sym_COLON_COLON, - ACTIONS(9642), 1, + ACTIONS(9666), 1, sym_identifier, - ACTIONS(9728), 1, + ACTIONS(9772), 1, anon_sym_LPAREN2, - ACTIONS(9730), 1, + ACTIONS(9774), 1, anon_sym_LBRACE, - ACTIONS(9734), 1, + ACTIONS(9778), 1, anon_sym_requires, - STATE(1816), 1, + STATE(2856), 1, sym_template_type, - STATE(3240), 1, + STATE(3924), 1, sym_requirement_seq, - STATE(5399), 1, + STATE(5492), 1, sym_lambda_capture_specifier, - STATE(6626), 1, + STATE(6708), 1, sym__scope_resolution, - STATE(7633), 1, + STATE(7783), 1, sym_requires_parameter_list, - ACTIONS(9732), 2, + ACTIONS(9776), 2, sym_true, sym_false, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(4183), 8, + STATE(3938), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -474046,86 +481049,177 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [217092] = 17, + [221173] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(2020), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(7071), 1, + anon_sym___asm, + ACTIONS(7299), 1, + anon_sym___attribute__, + ACTIONS(7738), 1, + anon_sym_DASH_GT, + ACTIONS(9150), 1, anon_sym_LBRACK, - ACTIONS(9578), 1, - anon_sym_COLON_COLON, - ACTIONS(9638), 1, - sym_identifier, - ACTIONS(9728), 1, + ACTIONS(9308), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9311), 1, + anon_sym_requires, + STATE(5528), 1, + sym_trailing_return_type, + STATE(6349), 1, + sym__function_attributes_end, + STATE(6870), 1, + sym_gnu_asm_expression, + ACTIONS(7069), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9193), 2, + anon_sym_final, + anon_sym_override, + STATE(5455), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5507), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5927), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9139), 3, + anon_sym_LPAREN2, + anon_sym_LBRACE, + anon_sym_EQ, + [221236] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(7071), 1, + anon_sym___asm, + ACTIONS(7299), 1, + anon_sym___attribute__, + ACTIONS(7738), 1, + anon_sym_DASH_GT, + ACTIONS(9382), 1, + anon_sym_LBRACK, + ACTIONS(9401), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9407), 1, + anon_sym_requires, + STATE(5536), 1, + sym_trailing_return_type, + STATE(6350), 1, + sym__function_attributes_end, + STATE(6870), 1, + sym_gnu_asm_expression, + ACTIONS(7069), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9387), 2, + anon_sym_final, + anon_sym_override, + STATE(5455), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5507), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5934), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9371), 3, anon_sym_LPAREN2, - ACTIONS(9730), 1, anon_sym_LBRACE, - ACTIONS(9734), 1, + anon_sym_EQ, + [221299] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7071), 1, + anon_sym___asm, + ACTIONS(7799), 1, + anon_sym_DASH_GT, + ACTIONS(9150), 1, + anon_sym_LBRACK, + ACTIONS(9333), 1, + anon_sym___attribute__, + ACTIONS(9336), 1, + anon_sym___attribute, + ACTIONS(9366), 1, anon_sym_requires, - STATE(3240), 1, - sym_requirement_seq, - STATE(3681), 1, - sym_template_type, - STATE(5399), 1, - sym_lambda_capture_specifier, - STATE(6634), 1, - sym__scope_resolution, - STATE(7633), 1, - sym_requires_parameter_list, - ACTIONS(9736), 2, - sym_true, - sym_false, - STATE(8601), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(4257), 8, - sym__class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym__requirement_clause_constraint, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, - sym_qualified_type_identifier, - [217153] = 17, + STATE(6182), 1, + sym_trailing_return_type, + STATE(6231), 1, + sym__function_attributes_end, + STATE(6870), 1, + sym_gnu_asm_expression, + ACTIONS(7069), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9327), 2, + anon_sym_final, + anon_sym_override, + STATE(5455), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5507), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6017), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6149), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9139), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + [221362] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, ACTIONS(2020), 1, anon_sym_LBRACK, - ACTIONS(9440), 1, + ACTIONS(9412), 1, anon_sym_COLON_COLON, - ACTIONS(9632), 1, + ACTIONS(9674), 1, sym_identifier, - ACTIONS(9738), 1, + ACTIONS(9764), 1, anon_sym_LPAREN2, - ACTIONS(9740), 1, + ACTIONS(9766), 1, anon_sym_LBRACE, - ACTIONS(9744), 1, + ACTIONS(9770), 1, anon_sym_requires, - STATE(2669), 1, - sym_template_type, - STATE(3589), 1, + STATE(3268), 1, sym_requirement_seq, - STATE(5395), 1, + STATE(3638), 1, + sym_template_type, + STATE(5479), 1, sym_lambda_capture_specifier, - STATE(6620), 1, + STATE(6732), 1, sym__scope_resolution, - STATE(7672), 1, + STATE(7742), 1, sym_requires_parameter_list, - ACTIONS(9742), 2, + ACTIONS(9780), 2, sym_true, sym_false, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(3559), 8, + STATE(4288), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -474134,441 +481228,435 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [217214] = 18, + [221423] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7065), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7337), 1, + ACTIONS(7299), 1, + anon_sym___attribute__, + ACTIONS(7314), 1, anon_sym_requires, - ACTIONS(7667), 1, + ACTIONS(7738), 1, anon_sym_DASH_GT, - ACTIONS(9193), 1, + ACTIONS(9150), 1, anon_sym_LBRACK, - ACTIONS(9291), 1, - anon_sym___attribute__, - ACTIONS(9294), 1, - anon_sym___attribute, - STATE(6013), 1, + ACTIONS(9308), 1, + anon_sym_LBRACK_LBRACK, + STATE(5526), 1, sym_trailing_return_type, - STATE(6095), 1, + STATE(6345), 1, sym__function_attributes_end, - STATE(6766), 1, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(7063), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7335), 2, + ACTIONS(6037), 2, anon_sym_final, anon_sym_override, - STATE(5384), 2, + ACTIONS(7069), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5455), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5458), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6012), 2, + STATE(5927), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9182), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - [217277] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7842), 1, + ACTIONS(9139), 3, anon_sym_LPAREN2, - ACTIONS(7844), 1, - anon_sym_STAR, - ACTIONS(7846), 1, - anon_sym_AMP_AMP, - ACTIONS(7848), 1, - anon_sym_AMP, - ACTIONS(7856), 1, - anon_sym_LBRACK, - ACTIONS(8308), 1, - anon_sym___asm, - STATE(2902), 1, - sym_parameter_list, - STATE(5792), 1, - sym__function_declarator_seq, - STATE(6078), 1, - sym__abstract_declarator, - STATE(5804), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8306), 11, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [217328] = 18, + [221486] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7065), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7653), 1, + ACTIONS(7299), 1, + anon_sym___attribute__, + ACTIONS(7738), 1, anon_sym_DASH_GT, - ACTIONS(9193), 1, + ACTIONS(9700), 1, anon_sym_LBRACK, - ACTIONS(9291), 1, - anon_sym___attribute__, - ACTIONS(9294), 1, - anon_sym___attribute, - ACTIONS(9341), 1, + ACTIONS(9715), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9724), 1, anon_sym_requires, - STATE(6123), 1, - sym__function_attributes_end, - STATE(6188), 1, + STATE(5537), 1, sym_trailing_return_type, - STATE(6766), 1, + STATE(6351), 1, + sym__function_attributes_end, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(7063), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9297), 2, + ACTIONS(9702), 2, anon_sym_final, anon_sym_override, - STATE(5384), 2, + STATE(5455), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5458), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6012), 2, + STATE(5924), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9182), 3, - anon_sym_COMMA, + ACTIONS(9689), 3, anon_sym_LPAREN2, - anon_sym_GT2, - [217391] = 18, + anon_sym_LBRACE, + anon_sym_EQ, + [221549] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7065), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7653), 1, - anon_sym_DASH_GT, - ACTIONS(9355), 1, - anon_sym_LBRACK, - ACTIONS(9466), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - ACTIONS(9469), 1, - anon_sym___attribute, - ACTIONS(9629), 1, + ACTIONS(7314), 1, anon_sym_requires, - STATE(6124), 1, - sym__function_attributes_end, - STATE(6189), 1, + ACTIONS(7738), 1, + anon_sym_DASH_GT, + ACTIONS(9382), 1, + anon_sym_LBRACK, + ACTIONS(9401), 1, + anon_sym_LBRACK_LBRACK, + STATE(5529), 1, sym_trailing_return_type, - STATE(6766), 1, + STATE(6346), 1, + sym__function_attributes_end, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(7063), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9495), 2, + ACTIONS(6037), 2, anon_sym_final, anon_sym_override, - STATE(5384), 2, + ACTIONS(7069), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5455), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5458), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6032), 2, + STATE(5934), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9344), 3, - anon_sym_COMMA, + ACTIONS(9371), 3, anon_sym_LPAREN2, - anon_sym_GT2, - [217454] = 18, + anon_sym_LBRACE, + anon_sym_EQ, + [221612] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7065), 1, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7653), 1, + ACTIONS(7538), 1, + anon_sym_requires, + ACTIONS(7768), 1, anon_sym_DASH_GT, - ACTIONS(9676), 1, + ACTIONS(9700), 1, anon_sym_LBRACK, - ACTIONS(9699), 1, + ACTIONS(9733), 1, anon_sym___attribute__, - ACTIONS(9702), 1, + ACTIONS(9736), 1, anon_sym___attribute, - ACTIONS(9717), 1, - anon_sym_requires, - STATE(6125), 1, + STATE(6254), 1, sym__function_attributes_end, - STATE(6190), 1, + STATE(6297), 1, sym_trailing_return_type, - STATE(6766), 1, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(7063), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9705), 2, + ACTIONS(7359), 2, anon_sym_final, anon_sym_override, - STATE(5384), 2, + STATE(5455), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5458), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6041), 2, + STATE(6133), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9665), 3, + ACTIONS(9689), 3, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_GT2, - [217517] = 18, + [221675] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7065), 1, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7667), 1, + ACTIONS(7768), 1, anon_sym_DASH_GT, - ACTIONS(9193), 1, + ACTIONS(9150), 1, anon_sym_LBRACK, - ACTIONS(9291), 1, + ACTIONS(9333), 1, anon_sym___attribute__, - ACTIONS(9294), 1, + ACTIONS(9336), 1, anon_sym___attribute, - ACTIONS(9328), 1, + ACTIONS(9384), 1, anon_sym_requires, - STATE(6034), 1, - sym_trailing_return_type, - STATE(6101), 1, + STATE(6257), 1, sym__function_attributes_end, - STATE(6766), 1, + STATE(6305), 1, + sym_trailing_return_type, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(7063), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9297), 2, + ACTIONS(9327), 2, anon_sym_final, anon_sym_override, - STATE(5384), 2, + STATE(5455), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5458), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6012), 2, + STATE(6149), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9182), 3, + ACTIONS(9139), 3, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - [217580] = 18, + anon_sym_GT2, + [221738] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7848), 1, + anon_sym_LPAREN2, + ACTIONS(7862), 1, + anon_sym_LBRACK, + ACTIONS(7885), 1, + anon_sym_STAR, + ACTIONS(7887), 1, + anon_sym_AMP_AMP, + ACTIONS(7889), 1, + anon_sym_AMP, + ACTIONS(8362), 1, + anon_sym___asm, + STATE(3010), 1, + sym_parameter_list, + STATE(5953), 1, + sym__function_declarator_seq, + STATE(6143), 1, + sym__abstract_declarator, + STATE(5952), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8360), 11, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [221789] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7065), 1, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7147), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - ACTIONS(7301), 1, + ACTIONS(7314), 1, anon_sym_requires, - ACTIONS(7745), 1, + ACTIONS(7738), 1, anon_sym_DASH_GT, - ACTIONS(9193), 1, + ACTIONS(9700), 1, anon_sym_LBRACK, - ACTIONS(9276), 1, + ACTIONS(9715), 1, anon_sym_LBRACK_LBRACK, - STATE(5453), 1, + STATE(5530), 1, sym_trailing_return_type, - STATE(6200), 1, + STATE(6347), 1, sym__function_attributes_end, - STATE(6766), 1, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(6020), 2, + ACTIONS(6037), 2, anon_sym_final, anon_sym_override, - ACTIONS(7063), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - STATE(5384), 2, + STATE(5455), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5458), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5606), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5877), 2, + STATE(5924), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9182), 3, + ACTIONS(9689), 3, anon_sym_LPAREN2, anon_sym_LBRACE, anon_sym_EQ, - [217643] = 18, + [221852] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7065), 1, - anon_sym___asm, - ACTIONS(7667), 1, - anon_sym_DASH_GT, - ACTIONS(9355), 1, + ACTIONS(7848), 1, + anon_sym_LPAREN2, + ACTIONS(7850), 1, + anon_sym_STAR, + ACTIONS(7852), 1, + anon_sym_AMP_AMP, + ACTIONS(7854), 1, + anon_sym_AMP, + ACTIONS(7862), 1, anon_sym_LBRACK, - ACTIONS(9466), 1, - anon_sym___attribute__, - ACTIONS(9469), 1, + ACTIONS(8362), 1, anon_sym___attribute, - ACTIONS(9498), 1, - anon_sym_requires, - STATE(6063), 1, - sym_trailing_return_type, - STATE(6102), 1, - sym__function_attributes_end, - STATE(6766), 1, - sym_gnu_asm_expression, - ACTIONS(7063), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9495), 2, + STATE(2908), 1, + sym_parameter_list, + STATE(5953), 1, + sym__function_declarator_seq, + STATE(6135), 1, + sym__abstract_declarator, + STATE(5952), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8360), 11, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_final, anon_sym_override, - STATE(5384), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5458), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6032), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9344), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - [217706] = 18, + anon_sym_try, + anon_sym_requires, + [221903] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7065), 1, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7667), 1, + ACTIONS(7799), 1, anon_sym_DASH_GT, - ACTIONS(9676), 1, + ACTIONS(9382), 1, anon_sym_LBRACK, - ACTIONS(9699), 1, + ACTIONS(9491), 1, + anon_sym_requires, + ACTIONS(9518), 1, anon_sym___attribute__, - ACTIONS(9702), 1, + ACTIONS(9521), 1, anon_sym___attribute, - ACTIONS(9714), 1, - anon_sym_requires, - STATE(6064), 1, + STATE(6111), 1, sym_trailing_return_type, - STATE(6103), 1, + STATE(6232), 1, sym__function_attributes_end, - STATE(6766), 1, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(7063), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9705), 2, + ACTIONS(9488), 2, anon_sym_final, anon_sym_override, - STATE(5384), 2, + STATE(5455), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5458), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6041), 2, + STATE(6132), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9665), 3, + ACTIONS(9371), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - [217769] = 17, + [221966] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, ACTIONS(2020), 1, anon_sym_LBRACK, - ACTIONS(9406), 1, + ACTIONS(9530), 1, anon_sym_COLON_COLON, - ACTIONS(9644), 1, + ACTIONS(9658), 1, sym_identifier, - ACTIONS(9746), 1, + ACTIONS(9782), 1, anon_sym_LPAREN2, - ACTIONS(9748), 1, + ACTIONS(9784), 1, anon_sym_LBRACE, - ACTIONS(9752), 1, + ACTIONS(9788), 1, anon_sym_requires, - STATE(2567), 1, + STATE(1943), 1, sym_template_type, - STATE(4248), 1, + STATE(2486), 1, sym_requirement_seq, - STATE(5401), 1, + STATE(5485), 1, sym_lambda_capture_specifier, - STATE(6594), 1, + STATE(6695), 1, sym__scope_resolution, - STATE(7874), 1, + STATE(7805), 1, sym_requires_parameter_list, - ACTIONS(9750), 2, + ACTIONS(9786), 2, sym_true, sym_false, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(4825), 8, + STATE(2489), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -474577,266 +481665,177 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [217830] = 18, + [222027] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7065), 1, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7551), 1, - anon_sym_requires, - ACTIONS(7653), 1, + ACTIONS(7768), 1, anon_sym_DASH_GT, - ACTIONS(9193), 1, + ACTIONS(9700), 1, anon_sym_LBRACK, - ACTIONS(9291), 1, + ACTIONS(9733), 1, anon_sym___attribute__, - ACTIONS(9294), 1, + ACTIONS(9736), 1, anon_sym___attribute, - STATE(6114), 1, + ACTIONS(9745), 1, + anon_sym_requires, + STATE(6259), 1, sym__function_attributes_end, - STATE(6207), 1, + STATE(6307), 1, sym_trailing_return_type, - STATE(6766), 1, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(7063), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7335), 2, + ACTIONS(9727), 2, anon_sym_final, anon_sym_override, - STATE(5384), 2, + STATE(5455), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5458), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6012), 2, + STATE(6133), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9182), 3, + ACTIONS(9689), 3, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_GT2, - [217893] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(2020), 1, - anon_sym_LBRACK, - ACTIONS(9528), 1, - anon_sym_COLON_COLON, - ACTIONS(9617), 1, - sym_identifier, - ACTIONS(9754), 1, - anon_sym_LPAREN2, - ACTIONS(9756), 1, - anon_sym_LBRACE, - ACTIONS(9760), 1, - anon_sym_requires, - STATE(2830), 1, - sym_template_type, - STATE(3916), 1, - sym_requirement_seq, - STATE(5415), 1, - sym_lambda_capture_specifier, - STATE(6578), 1, - sym__scope_resolution, - STATE(7583), 1, - sym_requires_parameter_list, - ACTIONS(9758), 2, - sym_true, - sym_false, - STATE(8601), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(3837), 8, - sym__class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym__requirement_clause_constraint, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, - sym_qualified_type_identifier, - [217954] = 18, + [222090] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7065), 1, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7337), 1, - anon_sym_requires, - ACTIONS(7667), 1, + ACTIONS(7768), 1, anon_sym_DASH_GT, - ACTIONS(9676), 1, + ACTIONS(9382), 1, anon_sym_LBRACK, - ACTIONS(9699), 1, + ACTIONS(9518), 1, anon_sym___attribute__, - ACTIONS(9702), 1, + ACTIONS(9521), 1, anon_sym___attribute, - STATE(6042), 1, - sym_trailing_return_type, - STATE(6097), 1, + ACTIONS(9651), 1, + anon_sym_requires, + STATE(6258), 1, sym__function_attributes_end, - STATE(6766), 1, + STATE(6306), 1, + sym_trailing_return_type, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(7063), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7335), 2, + ACTIONS(9488), 2, anon_sym_final, anon_sym_override, - STATE(5384), 2, + STATE(5455), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5458), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6041), 2, + STATE(6132), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9665), 3, + ACTIONS(9371), 3, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - [218017] = 18, + anon_sym_GT2, + [222153] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7065), 1, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7147), 1, - anon_sym___attribute__, - ACTIONS(7301), 1, + ACTIONS(7447), 1, anon_sym_requires, - ACTIONS(7745), 1, + ACTIONS(7799), 1, anon_sym_DASH_GT, - ACTIONS(9355), 1, + ACTIONS(9150), 1, anon_sym_LBRACK, - ACTIONS(9367), 1, - anon_sym_LBRACK_LBRACK, - STATE(5418), 1, + ACTIONS(9333), 1, + anon_sym___attribute__, + ACTIONS(9336), 1, + anon_sym___attribute, + STATE(6123), 1, sym_trailing_return_type, - STATE(6201), 1, + STATE(6222), 1, sym__function_attributes_end, - STATE(6766), 1, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(6020), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7063), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - STATE(5384), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5458), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5606), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5839), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9344), 3, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_EQ, - [218080] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7065), 1, - anon_sym___asm, - ACTIONS(7147), 1, - anon_sym___attribute__, - ACTIONS(7301), 1, - anon_sym_requires, - ACTIONS(7745), 1, - anon_sym_DASH_GT, - ACTIONS(9676), 1, - anon_sym_LBRACK, - ACTIONS(9687), 1, - anon_sym_LBRACK_LBRACK, - STATE(5419), 1, - sym_trailing_return_type, - STATE(6202), 1, - sym__function_attributes_end, - STATE(6766), 1, - sym_gnu_asm_expression, - ACTIONS(6020), 2, + ACTIONS(7359), 2, anon_sym_final, anon_sym_override, - ACTIONS(7063), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(5384), 2, + STATE(5455), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5458), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5606), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5876), 2, + STATE(6149), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9665), 3, + ACTIONS(9139), 3, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_EQ, - [218143] = 17, + [222216] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, ACTIONS(2020), 1, anon_sym_LBRACK, - ACTIONS(9503), 1, + ACTIONS(9612), 1, anon_sym_COLON_COLON, - ACTIONS(9646), 1, + ACTIONS(9664), 1, sym_identifier, - ACTIONS(9762), 1, + ACTIONS(9790), 1, anon_sym_LPAREN2, - ACTIONS(9764), 1, + ACTIONS(9792), 1, anon_sym_LBRACE, - ACTIONS(9768), 1, + ACTIONS(9796), 1, anon_sym_requires, - STATE(2630), 1, + STATE(2598), 1, sym_template_type, - STATE(3475), 1, + STATE(4308), 1, sym_requirement_seq, - STATE(5414), 1, + STATE(5489), 1, sym_lambda_capture_specifier, - STATE(6633), 1, + STATE(6694), 1, sym__scope_resolution, - STATE(7862), 1, + STATE(7962), 1, sym_requires_parameter_list, - ACTIONS(9766), 2, + ACTIONS(9794), 2, sym_true, sym_false, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(3478), 8, + STATE(4849), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -474845,1515 +481844,1558 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [218204] = 18, + [222277] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(7065), 1, - anon_sym___asm, - ACTIONS(7083), 1, - anon_sym___attribute__, - ACTIONS(7085), 1, + ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7867), 1, - anon_sym_DASH_GT, - ACTIONS(7906), 1, - anon_sym_requires, - ACTIONS(9673), 1, + ACTIONS(7299), 1, + anon_sym___attribute__, + ACTIONS(7918), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9676), 1, - anon_sym_LBRACK, - STATE(6335), 1, - sym__function_attributes_end, - STATE(6458), 1, - sym_trailing_return_type, - STATE(6745), 1, - sym_gnu_asm_expression, - ACTIONS(6020), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7063), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9665), 2, + ACTIONS(8521), 1, + anon_sym_COMMA, + ACTIONS(9798), 1, anon_sym_LPAREN2, + ACTIONS(9800), 1, + anon_sym_SEMI, + ACTIONS(9802), 1, anon_sym_COLON, - STATE(5428), 2, + ACTIONS(9804), 1, + anon_sym_LBRACE, + ACTIONS(9806), 1, + anon_sym_LBRACK, + ACTIONS(9808), 1, + anon_sym_EQ, + ACTIONS(9810), 1, + anon_sym_try, + STATE(2184), 1, + sym_compound_statement, + STATE(2185), 1, + sym_default_method_clause, + STATE(2186), 1, + sym_delete_method_clause, + STATE(2187), 1, + sym_pure_virtual_clause, + STATE(2188), 1, + sym_try_statement, + STATE(2902), 1, + sym_parameter_list, + STATE(6468), 1, + sym__function_declarator_seq, + STATE(6901), 1, + aux_sym_field_declaration_repeat1, + STATE(6922), 1, + sym_initializer_list, + STATE(6928), 1, + sym_bitfield_clause, + STATE(8238), 1, sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5606), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5733), 2, + STATE(6430), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5876), 2, - sym__function_postfix, - sym_requires_clause, - [218266] = 18, + [222351] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7065), 1, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7083), 1, + ACTIONS(7283), 1, anon_sym___attribute__, - ACTIONS(7085), 1, + ACTIONS(7285), 1, anon_sym___attribute, - ACTIONS(7867), 1, + ACTIONS(7913), 1, anon_sym_DASH_GT, - ACTIONS(7906), 1, + ACTIONS(7924), 1, anon_sym_requires, - ACTIONS(9352), 1, + ACTIONS(9379), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9355), 1, + ACTIONS(9382), 1, anon_sym_LBRACK, - STATE(6334), 1, + STATE(6432), 1, sym__function_attributes_end, - STATE(6457), 1, + STATE(6600), 1, sym_trailing_return_type, - STATE(6745), 1, + STATE(6850), 1, sym_gnu_asm_expression, - ACTIONS(6020), 2, + ACTIONS(6037), 2, anon_sym_final, anon_sym_override, - ACTIONS(7063), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9344), 2, + ACTIONS(9371), 2, anon_sym_LPAREN2, anon_sym_COLON, - STATE(5428), 2, + STATE(5540), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5606), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5733), 2, + STATE(5730), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5839), 2, + STATE(5934), 2, sym__function_postfix, sym_requires_clause, - [218328] = 18, + [222413] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(7065), 1, - anon_sym___asm, - ACTIONS(7083), 1, - anon_sym___attribute__, - ACTIONS(7085), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(8421), 1, + anon_sym_LPAREN2, + ACTIONS(8473), 1, + sym_identifier, + ACTIONS(8475), 1, + anon_sym_STAR, + ACTIONS(8477), 1, + anon_sym_AMP_AMP, + ACTIONS(8479), 1, + anon_sym_AMP, + STATE(6059), 1, + sym_ms_call_modifier, + STATE(6799), 1, + sym__field_declarator, + STATE(6943), 1, + sym_operator_name, + STATE(8112), 1, + sym_ms_based_modifier, + ACTIONS(1806), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(6476), 7, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + sym_reference_field_declarator, + sym_template_method, + [222467] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7337), 1, - anon_sym_requires, - ACTIONS(7838), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7840), 1, - anon_sym_DASH_GT, - ACTIONS(9676), 1, + ACTIONS(7299), 1, + anon_sym___attribute__, + ACTIONS(9814), 2, anon_sym_LBRACK, - STATE(6042), 1, - sym_trailing_return_type, - STATE(6363), 1, - sym__function_attributes_end, - STATE(6745), 1, - sym_gnu_asm_expression, - ACTIONS(7063), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7335), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(9665), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - STATE(5428), 2, + anon_sym___asm, + STATE(4306), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5733), 2, + STATE(5548), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6041), 2, - sym__function_postfix, - sym_requires_clause, - [218390] = 18, + ACTIONS(9812), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [222509] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7065), 1, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7083), 1, + ACTIONS(7283), 1, anon_sym___attribute__, - ACTIONS(7085), 1, + ACTIONS(7285), 1, anon_sym___attribute, - ACTIONS(7867), 1, - anon_sym_DASH_GT, - ACTIONS(9190), 1, + ACTIONS(7918), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9193), 1, + ACTIONS(7920), 1, + anon_sym_DASH_GT, + ACTIONS(9382), 1, anon_sym_LBRACK, - ACTIONS(9478), 1, + ACTIONS(9491), 1, anon_sym_requires, - STATE(6315), 1, - sym__function_attributes_end, - STATE(6471), 1, + STATE(6111), 1, sym_trailing_return_type, - STATE(6745), 1, + STATE(6505), 1, + sym__function_attributes_end, + STATE(6850), 1, sym_gnu_asm_expression, - ACTIONS(7063), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9182), 2, + ACTIONS(9371), 2, anon_sym_LPAREN2, anon_sym_COLON, - ACTIONS(9195), 2, + ACTIONS(9488), 2, anon_sym_final, anon_sym_override, - STATE(5428), 2, + STATE(5540), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5606), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5733), 2, + STATE(5730), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5877), 2, + STATE(6017), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6132), 2, sym__function_postfix, sym_requires_clause, - [218452] = 24, + [222571] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7147), 1, - anon_sym___attribute__, - ACTIONS(7838), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8483), 1, + ACTIONS(7299), 1, + anon_sym___attribute__, + ACTIONS(9818), 2, + anon_sym_LBRACK, + anon_sym___asm, + STATE(4306), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5539), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9816), 15, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - ACTIONS(9770), 1, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(9772), 1, anon_sym_SEMI, - ACTIONS(9774), 1, - anon_sym_COLON, - ACTIONS(9776), 1, anon_sym_LBRACE, - ACTIONS(9778), 1, - anon_sym_LBRACK, - ACTIONS(9780), 1, anon_sym_EQ, - ACTIONS(9782), 1, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, anon_sym_try, - STATE(2123), 1, - sym_compound_statement, - STATE(2125), 1, - sym_default_method_clause, - STATE(2126), 1, - sym_delete_method_clause, - STATE(2128), 1, - sym_pure_virtual_clause, - STATE(2130), 1, - sym_try_statement, - STATE(2863), 1, - sym_parameter_list, - STATE(6381), 1, - sym__function_declarator_seq, - STATE(6777), 1, - aux_sym_field_declaration_repeat1, - STATE(6845), 1, - sym_bitfield_clause, - STATE(6846), 1, - sym_initializer_list, - STATE(8478), 1, + anon_sym_requires, + [222613] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7071), 1, + anon_sym___asm, + ACTIONS(7299), 1, + anon_sym___attribute__, + ACTIONS(7424), 1, + anon_sym_DASH_GT, + ACTIONS(9150), 1, + anon_sym_LBRACK, + ACTIONS(9366), 1, + anon_sym_requires, + STATE(6502), 1, + sym__function_attributes_end, + STATE(6651), 1, + sym_trailing_return_type, + STATE(6870), 1, + sym_gnu_asm_expression, + ACTIONS(7069), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7359), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(9139), 2, + anon_sym_LPAREN2, + anon_sym_LBRACE, + STATE(5455), 2, sym_attribute_specifier, - STATE(6298), 2, + aux_sym_type_definition_repeat1, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [218526] = 18, + STATE(6017), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6149), 2, + sym__function_postfix, + sym_requires_clause, + [222675] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7065), 1, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7083), 1, + ACTIONS(7283), 1, anon_sym___attribute__, - ACTIONS(7085), 1, + ACTIONS(7285), 1, anon_sym___attribute, - ACTIONS(7867), 1, + ACTIONS(7913), 1, anon_sym_DASH_GT, - ACTIONS(9352), 1, + ACTIONS(9147), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9355), 1, + ACTIONS(9150), 1, anon_sym_LBRACK, - ACTIONS(9678), 1, + ACTIONS(9632), 1, anon_sym_requires, - STATE(6316), 1, + STATE(6398), 1, sym__function_attributes_end, - STATE(6476), 1, + STATE(6575), 1, sym_trailing_return_type, - STATE(6745), 1, + STATE(6850), 1, sym_gnu_asm_expression, - ACTIONS(7063), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9344), 2, + ACTIONS(9139), 2, anon_sym_LPAREN2, anon_sym_COLON, - ACTIONS(9357), 2, + ACTIONS(9193), 2, anon_sym_final, anon_sym_override, - STATE(5428), 2, + STATE(5540), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5606), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5733), 2, + STATE(5730), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5839), 2, + STATE(5927), 2, sym__function_postfix, sym_requires_clause, - [218588] = 24, + [222737] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7147), 1, - anon_sym___attribute__, - ACTIONS(7838), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8483), 1, - anon_sym_COMMA, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - ACTIONS(9774), 1, - anon_sym_COLON, - ACTIONS(9778), 1, - anon_sym_LBRACK, - ACTIONS(9784), 1, - anon_sym_SEMI, - ACTIONS(9786), 1, - anon_sym_LBRACE, - ACTIONS(9788), 1, - anon_sym_EQ, - ACTIONS(9790), 1, - anon_sym_try, - STATE(1719), 1, - sym_delete_method_clause, - STATE(1770), 1, - sym_pure_virtual_clause, - STATE(1785), 1, - sym_try_statement, - STATE(1799), 1, - sym_compound_statement, - STATE(1824), 1, - sym_default_method_clause, - STATE(2863), 1, - sym_parameter_list, - STATE(6381), 1, - sym__function_declarator_seq, - STATE(6798), 1, - sym_bitfield_clause, - STATE(6802), 1, - sym_initializer_list, - STATE(6815), 1, - aux_sym_field_declaration_repeat1, - STATE(8595), 1, - sym_attribute_specifier, - STATE(6298), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [218662] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7065), 1, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7083), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - ACTIONS(7085), 1, - anon_sym___attribute, - ACTIONS(7867), 1, + ACTIONS(7424), 1, anon_sym_DASH_GT, - ACTIONS(9673), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9676), 1, + ACTIONS(9382), 1, anon_sym_LBRACK, - ACTIONS(9792), 1, + ACTIONS(9491), 1, anon_sym_requires, - STATE(6317), 1, + STATE(6478), 1, sym__function_attributes_end, - STATE(6477), 1, + STATE(6674), 1, sym_trailing_return_type, - STATE(6745), 1, + STATE(6870), 1, sym_gnu_asm_expression, - ACTIONS(7063), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9665), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - ACTIONS(9681), 2, + ACTIONS(7359), 2, anon_sym_final, anon_sym_override, - STATE(5428), 2, + ACTIONS(9371), 2, + anon_sym_LPAREN2, + anon_sym_LBRACE, + STATE(5455), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5606), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5733), 2, + STATE(5507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5876), 2, + STATE(6017), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6132), 2, sym__function_postfix, sym_requires_clause, - [218724] = 18, + [222799] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7065), 1, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7083), 1, + ACTIONS(7283), 1, anon_sym___attribute__, - ACTIONS(7085), 1, + ACTIONS(7285), 1, anon_sym___attribute, - ACTIONS(7838), 1, + ACTIONS(7447), 1, + anon_sym_requires, + ACTIONS(7918), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7840), 1, + ACTIONS(7920), 1, anon_sym_DASH_GT, - ACTIONS(9193), 1, + ACTIONS(9150), 1, anon_sym_LBRACK, - ACTIONS(9328), 1, - anon_sym_requires, - STATE(6034), 1, + STATE(6123), 1, sym_trailing_return_type, - STATE(6372), 1, + STATE(6490), 1, sym__function_attributes_end, - STATE(6745), 1, + STATE(6850), 1, sym_gnu_asm_expression, - ACTIONS(7063), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9182), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - ACTIONS(9297), 2, + ACTIONS(7359), 2, anon_sym_final, anon_sym_override, - STATE(5428), 2, + ACTIONS(9139), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + STATE(5540), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5733), 2, + STATE(5730), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6012), 2, + STATE(6149), 2, sym__function_postfix, sym_requires_clause, - [218786] = 8, + [222861] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7147), 1, + ACTIONS(7071), 1, + anon_sym___asm, + ACTIONS(7299), 1, anon_sym___attribute__, - ACTIONS(9797), 2, + ACTIONS(7424), 1, + anon_sym_DASH_GT, + ACTIONS(9700), 1, anon_sym_LBRACK, - anon_sym___asm, - STATE(4249), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5471), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(9795), 15, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(9730), 1, + anon_sym_requires, + STATE(6514), 1, + sym__function_attributes_end, + STATE(6647), 1, + sym_trailing_return_type, + STATE(6870), 1, + sym_gnu_asm_expression, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - anon_sym_DASH_GT, + ACTIONS(7359), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [218828] = 18, + ACTIONS(9689), 2, + anon_sym_LPAREN2, + anon_sym_LBRACE, + STATE(5455), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5507), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6017), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6133), 2, + sym__function_postfix, + sym_requires_clause, + [222923] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7065), 1, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7083), 1, + ACTIONS(7283), 1, anon_sym___attribute__, - ACTIONS(7085), 1, + ACTIONS(7285), 1, anon_sym___attribute, - ACTIONS(7337), 1, + ACTIONS(7447), 1, anon_sym_requires, - ACTIONS(7838), 1, + ACTIONS(7918), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7840), 1, + ACTIONS(7920), 1, anon_sym_DASH_GT, - ACTIONS(9193), 1, + ACTIONS(9382), 1, anon_sym_LBRACK, - STATE(6013), 1, + STATE(6152), 1, sym_trailing_return_type, - STATE(6360), 1, + STATE(6491), 1, sym__function_attributes_end, - STATE(6745), 1, + STATE(6850), 1, sym_gnu_asm_expression, - ACTIONS(7063), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7335), 2, + ACTIONS(7359), 2, anon_sym_final, anon_sym_override, - ACTIONS(9182), 2, + ACTIONS(9371), 2, anon_sym_LPAREN2, anon_sym_COLON, - STATE(5428), 2, + STATE(5540), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5733), 2, + STATE(5730), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6012), 2, + STATE(6132), 2, sym__function_postfix, sym_requires_clause, - [218890] = 18, + [222985] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7065), 1, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7083), 1, + ACTIONS(7283), 1, anon_sym___attribute__, - ACTIONS(7085), 1, + ACTIONS(7285), 1, anon_sym___attribute, - ACTIONS(7337), 1, + ACTIONS(7913), 1, + anon_sym_DASH_GT, + ACTIONS(9379), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9382), 1, + anon_sym_LBRACK, + ACTIONS(9708), 1, + anon_sym_requires, + STATE(6399), 1, + sym__function_attributes_end, + STATE(6580), 1, + sym_trailing_return_type, + STATE(6850), 1, + sym_gnu_asm_expression, + ACTIONS(7069), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9371), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + ACTIONS(9387), 2, + anon_sym_final, + anon_sym_override, + STATE(5540), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5730), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5934), 2, + sym__function_postfix, + sym_requires_clause, + [223047] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7071), 1, + anon_sym___asm, + ACTIONS(7283), 1, + anon_sym___attribute__, + ACTIONS(7285), 1, + anon_sym___attribute, + ACTIONS(7447), 1, anon_sym_requires, - ACTIONS(7838), 1, + ACTIONS(7918), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7840), 1, + ACTIONS(7920), 1, anon_sym_DASH_GT, - ACTIONS(9355), 1, + ACTIONS(9700), 1, anon_sym_LBRACK, - STATE(6033), 1, + STATE(6155), 1, sym_trailing_return_type, - STATE(6361), 1, + STATE(6494), 1, sym__function_attributes_end, - STATE(6745), 1, + STATE(6850), 1, sym_gnu_asm_expression, - ACTIONS(7063), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7335), 2, + ACTIONS(7359), 2, anon_sym_final, anon_sym_override, - ACTIONS(9344), 2, + ACTIONS(9689), 2, anon_sym_LPAREN2, anon_sym_COLON, - STATE(5428), 2, + STATE(5540), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5733), 2, + STATE(5730), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6032), 2, + STATE(6133), 2, sym__function_postfix, sym_requires_clause, - [218952] = 8, + [223109] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7147), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - ACTIONS(9801), 2, - anon_sym_LBRACK, - anon_sym___asm, - STATE(4249), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5442), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(9799), 15, - anon_sym_DOT_DOT_DOT, + ACTIONS(7918), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8521), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(9798), 1, anon_sym_LPAREN2, + ACTIONS(9802), 1, + anon_sym_COLON, + ACTIONS(9806), 1, + anon_sym_LBRACK, + ACTIONS(9820), 1, anon_sym_SEMI, + ACTIONS(9822), 1, anon_sym_LBRACE, + ACTIONS(9824), 1, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, + ACTIONS(9826), 1, anon_sym_try, - anon_sym_requires, - [218994] = 18, + STATE(2044), 1, + sym_compound_statement, + STATE(2045), 1, + sym_default_method_clause, + STATE(2046), 1, + sym_delete_method_clause, + STATE(2047), 1, + sym_pure_virtual_clause, + STATE(2048), 1, + sym_try_statement, + STATE(2902), 1, + sym_parameter_list, + STATE(6468), 1, + sym__function_declarator_seq, + STATE(6939), 1, + sym_bitfield_clause, + STATE(6940), 1, + sym_initializer_list, + STATE(6947), 1, + aux_sym_field_declaration_repeat1, + STATE(8074), 1, + sym_attribute_specifier, + STATE(6430), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [223183] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7065), 1, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7083), 1, + ACTIONS(7283), 1, anon_sym___attribute__, - ACTIONS(7085), 1, + ACTIONS(7285), 1, anon_sym___attribute, - ACTIONS(7838), 1, + ACTIONS(7918), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7840), 1, + ACTIONS(7920), 1, anon_sym_DASH_GT, - ACTIONS(9676), 1, + ACTIONS(9150), 1, anon_sym_LBRACK, - ACTIONS(9714), 1, + ACTIONS(9366), 1, anon_sym_requires, - STATE(6064), 1, + STATE(6182), 1, sym_trailing_return_type, - STATE(6351), 1, + STATE(6500), 1, sym__function_attributes_end, - STATE(6745), 1, + STATE(6850), 1, sym_gnu_asm_expression, - ACTIONS(7063), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9665), 2, + ACTIONS(9139), 2, anon_sym_LPAREN2, anon_sym_COLON, - ACTIONS(9705), 2, + ACTIONS(9327), 2, anon_sym_final, anon_sym_override, - STATE(5428), 2, + STATE(5540), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5733), 2, + STATE(5730), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6041), 2, + STATE(6149), 2, sym__function_postfix, sym_requires_clause, - [219056] = 18, + [223245] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7065), 1, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7147), 1, + ACTIONS(7283), 1, anon_sym___attribute__, - ACTIONS(7322), 1, + ACTIONS(7285), 1, + anon_sym___attribute, + ACTIONS(7913), 1, anon_sym_DASH_GT, - ACTIONS(9193), 1, + ACTIONS(9697), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9700), 1, anon_sym_LBRACK, - ACTIONS(9328), 1, + ACTIONS(9828), 1, anon_sym_requires, - STATE(6388), 1, + STATE(6400), 1, sym__function_attributes_end, - STATE(6562), 1, + STATE(6596), 1, sym_trailing_return_type, - STATE(6766), 1, + STATE(6850), 1, sym_gnu_asm_expression, - ACTIONS(7063), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7335), 2, + ACTIONS(9689), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + ACTIONS(9702), 2, anon_sym_final, anon_sym_override, - ACTIONS(9182), 2, - anon_sym_LPAREN2, - anon_sym_LBRACE, - STATE(5384), 2, + STATE(5540), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5458), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6012), 2, + STATE(5730), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5924), 2, sym__function_postfix, sym_requires_clause, - [219118] = 18, + [223307] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7065), 1, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7147), 1, + ACTIONS(7283), 1, anon_sym___attribute__, - ACTIONS(7322), 1, + ACTIONS(7285), 1, + anon_sym___attribute, + ACTIONS(7913), 1, anon_sym_DASH_GT, - ACTIONS(9355), 1, - anon_sym_LBRACK, - ACTIONS(9498), 1, + ACTIONS(7924), 1, anon_sym_requires, - STATE(6384), 1, + ACTIONS(9697), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9700), 1, + anon_sym_LBRACK, + STATE(6433), 1, sym__function_attributes_end, - STATE(6565), 1, + STATE(6602), 1, sym_trailing_return_type, - STATE(6766), 1, + STATE(6850), 1, sym_gnu_asm_expression, - ACTIONS(7063), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7335), 2, + ACTIONS(6037), 2, anon_sym_final, anon_sym_override, - ACTIONS(9344), 2, + ACTIONS(7069), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9689), 2, anon_sym_LPAREN2, - anon_sym_LBRACE, - STATE(5384), 2, + anon_sym_COLON, + STATE(5540), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5458), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6032), 2, + STATE(5730), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5924), 2, sym__function_postfix, sym_requires_clause, - [219180] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(8429), 1, - anon_sym_LPAREN2, - ACTIONS(8459), 1, - sym_identifier, - ACTIONS(8461), 1, - anon_sym_STAR, - ACTIONS(8463), 1, - anon_sym_AMP_AMP, - ACTIONS(8465), 1, - anon_sym_AMP, - STATE(5962), 1, - sym_ms_call_modifier, - STATE(6663), 1, - sym__field_declarator, - STATE(6800), 1, - sym_operator_name, - STATE(8225), 1, - sym_ms_based_modifier, - ACTIONS(1808), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - STATE(6399), 7, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - sym_reference_field_declarator, - sym_template_method, - [219234] = 24, + [223369] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7147), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - ACTIONS(7838), 1, + ACTIONS(7918), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8483), 1, + ACTIONS(8521), 1, anon_sym_COMMA, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(9774), 1, + ACTIONS(9802), 1, anon_sym_COLON, - ACTIONS(9778), 1, + ACTIONS(9806), 1, anon_sym_LBRACK, - ACTIONS(9803), 1, + ACTIONS(9831), 1, anon_sym_SEMI, - ACTIONS(9805), 1, + ACTIONS(9833), 1, anon_sym_LBRACE, - ACTIONS(9807), 1, + ACTIONS(9835), 1, anon_sym_EQ, - ACTIONS(9809), 1, + ACTIONS(9837), 1, anon_sym_try, - STATE(1960), 1, + STATE(1760), 1, + sym_compound_statement, + STATE(1769), 1, sym_default_method_clause, - STATE(1961), 1, + STATE(1770), 1, sym_delete_method_clause, - STATE(1962), 1, + STATE(1771), 1, sym_pure_virtual_clause, - STATE(1963), 1, + STATE(1772), 1, sym_try_statement, - STATE(2110), 1, - sym_compound_statement, - STATE(2863), 1, + STATE(2902), 1, sym_parameter_list, - STATE(6381), 1, + STATE(6468), 1, sym__function_declarator_seq, - STATE(6781), 1, + STATE(6882), 1, + sym_bitfield_clause, + STATE(6907), 1, sym_initializer_list, - STATE(6791), 1, + STATE(6915), 1, aux_sym_field_declaration_repeat1, - STATE(6842), 1, - sym_bitfield_clause, - STATE(8589), 1, + STATE(8349), 1, sym_attribute_specifier, - STATE(6298), 2, + STATE(6430), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [219308] = 18, + [223443] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(5472), 1, + ACTIONS(7848), 1, + anon_sym_LPAREN2, + ACTIONS(7862), 1, + anon_sym_LBRACK, + ACTIONS(7967), 1, + anon_sym_STAR, + ACTIONS(7969), 1, + anon_sym_AMP_AMP, + ACTIONS(7971), 1, + anon_sym_AMP, + ACTIONS(8362), 1, + anon_sym___asm, + STATE(3110), 1, + sym_parameter_list, + STATE(5953), 1, + sym__function_declarator_seq, + STATE(6238), 1, + sym__abstract_declarator, + STATE(5952), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8360), 10, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(7065), 1, + anon_sym_LBRACE, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [223493] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7147), 1, + ACTIONS(7283), 1, anon_sym___attribute__, - ACTIONS(7322), 1, + ACTIONS(7285), 1, + anon_sym___attribute, + ACTIONS(7913), 1, anon_sym_DASH_GT, - ACTIONS(9676), 1, - anon_sym_LBRACK, - ACTIONS(9714), 1, + ACTIONS(7924), 1, anon_sym_requires, - STATE(6362), 1, + ACTIONS(9147), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9150), 1, + anon_sym_LBRACK, + STATE(6431), 1, sym__function_attributes_end, - STATE(6567), 1, + STATE(6598), 1, sym_trailing_return_type, - STATE(6766), 1, + STATE(6850), 1, sym_gnu_asm_expression, - ACTIONS(7063), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7335), 2, + ACTIONS(6037), 2, anon_sym_final, anon_sym_override, - ACTIONS(9665), 2, + ACTIONS(7069), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9139), 2, anon_sym_LPAREN2, - anon_sym_LBRACE, - STATE(5384), 2, + anon_sym_COLON, + STATE(5540), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5458), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6041), 2, + STATE(5730), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5927), 2, sym__function_postfix, sym_requires_clause, - [219370] = 18, + [223555] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7065), 1, + ACTIONS(7071), 1, anon_sym___asm, - ACTIONS(7083), 1, + ACTIONS(7283), 1, anon_sym___attribute__, - ACTIONS(7085), 1, + ACTIONS(7285), 1, anon_sym___attribute, - ACTIONS(7838), 1, + ACTIONS(7918), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7840), 1, + ACTIONS(7920), 1, anon_sym_DASH_GT, - ACTIONS(9355), 1, + ACTIONS(9700), 1, anon_sym_LBRACK, - ACTIONS(9498), 1, + ACTIONS(9730), 1, anon_sym_requires, - STATE(6063), 1, + STATE(6176), 1, sym_trailing_return_type, - STATE(6373), 1, + STATE(6509), 1, sym__function_attributes_end, - STATE(6745), 1, + STATE(6850), 1, sym_gnu_asm_expression, - ACTIONS(7063), 2, + ACTIONS(7069), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9344), 2, + ACTIONS(9689), 2, anon_sym_LPAREN2, anon_sym_COLON, - ACTIONS(9495), 2, + ACTIONS(9727), 2, anon_sym_final, anon_sym_override, - STATE(5428), 2, + STATE(5540), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5733), 2, + STATE(5730), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5925), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6032), 2, + STATE(6133), 2, sym__function_postfix, sym_requires_clause, - [219432] = 18, + [223617] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(7065), 1, - anon_sym___asm, - ACTIONS(7083), 1, - anon_sym___attribute__, - ACTIONS(7085), 1, - anon_sym___attribute, - ACTIONS(7867), 1, - anon_sym_DASH_GT, - ACTIONS(7906), 1, - anon_sym_requires, - ACTIONS(9190), 1, + ACTIONS(5034), 1, + anon_sym_LT, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9193), 1, - anon_sym_LBRACK, - STATE(6333), 1, - sym__function_attributes_end, - STATE(6455), 1, - sym_trailing_return_type, - STATE(6745), 1, - sym_gnu_asm_expression, - ACTIONS(6020), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7063), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9182), 2, + ACTIONS(7075), 1, + anon_sym_noexcept, + ACTIONS(7077), 1, + anon_sym_throw, + ACTIONS(9798), 1, anon_sym_LPAREN2, - anon_sym_COLON, - STATE(5428), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5606), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5733), 2, + ACTIONS(9839), 1, + anon_sym_LBRACE, + ACTIONS(9843), 1, + anon_sym_DASH_GT, + STATE(5476), 1, + sym_template_parameter_list, + STATE(5649), 1, + sym_compound_statement, + STATE(5929), 1, + sym_parameter_list, + STATE(7736), 1, + sym_lambda_declarator, + STATE(8588), 1, + sym_trailing_return_type, + STATE(5946), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5877), 2, - sym__function_postfix, - sym_requires_clause, - [219494] = 17, + STATE(6072), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(6944), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9841), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [223676] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7072), 1, + ACTIONS(7075), 1, anon_sym_noexcept, - ACTIONS(7074), 1, + ACTIONS(7077), 1, anon_sym_throw, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(9813), 1, + ACTIONS(9843), 1, anon_sym_DASH_GT, - ACTIONS(9815), 1, + ACTIONS(9845), 1, + anon_sym_LBRACE, + ACTIONS(9847), 1, anon_sym_requires, - STATE(3268), 1, + STATE(3624), 1, sym_compound_statement, - STATE(5538), 1, + STATE(5628), 1, sym_requires_clause, - STATE(5874), 1, + STATE(5929), 1, sym_parameter_list, - STATE(7652), 1, + STATE(7943), 1, sym_lambda_declarator, - STATE(8493), 1, + STATE(8588), 1, sym_trailing_return_type, - STATE(5866), 2, + STATE(5946), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5969), 2, + STATE(6072), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(6805), 3, + STATE(6944), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9811), 4, + ACTIONS(9841), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [219553] = 17, + [223735] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5472), 1, + ACTIONS(5034), 1, + anon_sym_LT, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7072), 1, + ACTIONS(7075), 1, anon_sym_noexcept, - ACTIONS(7074), 1, + ACTIONS(7077), 1, anon_sym_throw, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(9813), 1, + ACTIONS(9843), 1, anon_sym_DASH_GT, - ACTIONS(9815), 1, - anon_sym_requires, - ACTIONS(9817), 1, + ACTIONS(9849), 1, anon_sym_LBRACE, - STATE(5551), 1, - sym_requires_clause, - STATE(5874), 1, - sym_parameter_list, - STATE(5931), 1, + STATE(1639), 1, sym_compound_statement, - STATE(7610), 1, + STATE(5475), 1, + sym_template_parameter_list, + STATE(5929), 1, + sym_parameter_list, + STATE(8004), 1, sym_lambda_declarator, - STATE(8493), 1, + STATE(8588), 1, sym_trailing_return_type, - STATE(5866), 2, + STATE(5946), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5969), 2, + STATE(6072), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(6805), 3, + STATE(6944), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9811), 4, + ACTIONS(9841), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [219612] = 17, + [223794] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5026), 1, - anon_sym_LT, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7072), 1, + ACTIONS(7075), 1, anon_sym_noexcept, - ACTIONS(7074), 1, + ACTIONS(7077), 1, anon_sym_throw, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(9813), 1, + ACTIONS(9843), 1, anon_sym_DASH_GT, - ACTIONS(9819), 1, + ACTIONS(9847), 1, + anon_sym_requires, + ACTIONS(9849), 1, anon_sym_LBRACE, - STATE(3617), 1, + STATE(1631), 1, sym_compound_statement, - STATE(5412), 1, - sym_template_parameter_list, - STATE(5874), 1, + STATE(5585), 1, + sym_requires_clause, + STATE(5929), 1, sym_parameter_list, - STATE(7676), 1, + STATE(8052), 1, sym_lambda_declarator, - STATE(8493), 1, + STATE(8588), 1, sym_trailing_return_type, - STATE(5866), 2, + STATE(5946), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5969), 2, + STATE(6072), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(6805), 3, + STATE(6944), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9811), 4, + ACTIONS(9841), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [219671] = 17, + [223853] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(5026), 1, - anon_sym_LT, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7072), 1, + ACTIONS(7075), 1, anon_sym_noexcept, - ACTIONS(7074), 1, + ACTIONS(7077), 1, anon_sym_throw, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(9813), 1, + ACTIONS(9839), 1, + anon_sym_LBRACE, + ACTIONS(9843), 1, anon_sym_DASH_GT, - STATE(1620), 1, + ACTIONS(9847), 1, + anon_sym_requires, + STATE(5565), 1, sym_compound_statement, - STATE(5397), 1, - sym_template_parameter_list, - STATE(5874), 1, + STATE(5607), 1, + sym_requires_clause, + STATE(5929), 1, sym_parameter_list, - STATE(7805), 1, + STATE(7817), 1, sym_lambda_declarator, - STATE(8493), 1, + STATE(8588), 1, sym_trailing_return_type, - STATE(5866), 2, + STATE(5946), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5969), 2, + STATE(6072), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(6805), 3, + STATE(6944), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9811), 4, + ACTIONS(9841), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [219730] = 17, + [223912] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(5472), 1, + ACTIONS(5034), 1, + anon_sym_LT, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7072), 1, + ACTIONS(7075), 1, anon_sym_noexcept, - ACTIONS(7074), 1, + ACTIONS(7077), 1, anon_sym_throw, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(9813), 1, + ACTIONS(9843), 1, anon_sym_DASH_GT, - ACTIONS(9815), 1, - anon_sym_requires, - STATE(1618), 1, + STATE(3353), 1, sym_compound_statement, - STATE(5547), 1, - sym_requires_clause, - STATE(5874), 1, + STATE(5478), 1, + sym_template_parameter_list, + STATE(5929), 1, sym_parameter_list, - STATE(7563), 1, + STATE(7691), 1, sym_lambda_declarator, - STATE(8493), 1, + STATE(8588), 1, sym_trailing_return_type, - STATE(5866), 2, + STATE(5946), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5969), 2, + STATE(6072), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(6805), 3, + STATE(6944), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9811), 4, + ACTIONS(9841), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [219789] = 17, + [223971] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5472), 1, + ACTIONS(57), 1, + anon_sym_LBRACE, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7072), 1, + ACTIONS(7075), 1, anon_sym_noexcept, - ACTIONS(7074), 1, + ACTIONS(7077), 1, anon_sym_throw, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(9813), 1, + ACTIONS(9843), 1, anon_sym_DASH_GT, - ACTIONS(9815), 1, + ACTIONS(9847), 1, anon_sym_requires, - ACTIONS(9821), 1, - anon_sym_LBRACE, - STATE(3268), 1, + STATE(3306), 1, sym_compound_statement, - STATE(5631), 1, + STATE(5632), 1, sym_requires_clause, - STATE(5874), 1, + STATE(5929), 1, sym_parameter_list, - STATE(7854), 1, + STATE(8010), 1, sym_lambda_declarator, - STATE(8493), 1, + STATE(8588), 1, sym_trailing_return_type, - STATE(5866), 2, + STATE(5946), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5969), 2, + STATE(6072), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(6805), 3, + STATE(6944), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9811), 4, + ACTIONS(9841), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [219848] = 17, + [224030] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5026), 1, + ACTIONS(5034), 1, anon_sym_LT, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7072), 1, + ACTIONS(7075), 1, anon_sym_noexcept, - ACTIONS(7074), 1, + ACTIONS(7077), 1, anon_sym_throw, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(9813), 1, + ACTIONS(9843), 1, anon_sym_DASH_GT, - ACTIONS(9821), 1, + ACTIONS(9851), 1, anon_sym_LBRACE, - STATE(3302), 1, + STATE(3353), 1, sym_compound_statement, - STATE(5398), 1, + STATE(5491), 1, sym_template_parameter_list, - STATE(5874), 1, + STATE(5929), 1, sym_parameter_list, - STATE(7891), 1, + STATE(7995), 1, sym_lambda_declarator, - STATE(8493), 1, + STATE(8588), 1, sym_trailing_return_type, - STATE(5866), 2, + STATE(5946), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5969), 2, + STATE(6072), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(6805), 3, + STATE(6944), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9811), 4, + ACTIONS(9841), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [219907] = 17, + [224089] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5026), 1, + ACTIONS(57), 1, + anon_sym_LBRACE, + ACTIONS(5034), 1, anon_sym_LT, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7072), 1, + ACTIONS(7075), 1, anon_sym_noexcept, - ACTIONS(7074), 1, + ACTIONS(7077), 1, anon_sym_throw, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(9813), 1, + ACTIONS(9843), 1, anon_sym_DASH_GT, - ACTIONS(9823), 1, - anon_sym_LBRACE, - STATE(5405), 1, - sym_template_parameter_list, - STATE(5605), 1, + STATE(1639), 1, sym_compound_statement, - STATE(5874), 1, + STATE(5481), 1, + sym_template_parameter_list, + STATE(5929), 1, sym_parameter_list, - STATE(7872), 1, + STATE(7723), 1, sym_lambda_declarator, - STATE(8493), 1, + STATE(8588), 1, sym_trailing_return_type, - STATE(5866), 2, + STATE(5946), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5969), 2, + STATE(6072), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(6805), 3, + STATE(6944), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9811), 4, + ACTIONS(9841), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [219966] = 17, + [224148] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5026), 1, - anon_sym_LT, - ACTIONS(5472), 1, + ACTIONS(57), 1, + anon_sym_LBRACE, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7072), 1, + ACTIONS(7075), 1, anon_sym_noexcept, - ACTIONS(7074), 1, + ACTIONS(7077), 1, anon_sym_throw, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(9813), 1, + ACTIONS(9843), 1, anon_sym_DASH_GT, - ACTIONS(9825), 1, - anon_sym_LBRACE, - STATE(4237), 1, + ACTIONS(9847), 1, + anon_sym_requires, + STATE(1631), 1, sym_compound_statement, - STATE(5403), 1, - sym_template_parameter_list, - STATE(5874), 1, + STATE(5641), 1, + sym_requires_clause, + STATE(5929), 1, sym_parameter_list, - STATE(7890), 1, + STATE(7737), 1, sym_lambda_declarator, - STATE(8493), 1, + STATE(8588), 1, sym_trailing_return_type, - STATE(5866), 2, + STATE(5946), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5969), 2, + STATE(6072), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(6805), 3, + STATE(6944), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9811), 4, + ACTIONS(9841), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [220025] = 17, + [224207] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5026), 1, + ACTIONS(5034), 1, anon_sym_LT, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7072), 1, + ACTIONS(7075), 1, anon_sym_noexcept, - ACTIONS(7074), 1, + ACTIONS(7077), 1, anon_sym_throw, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(9813), 1, + ACTIONS(9843), 1, anon_sym_DASH_GT, - ACTIONS(9827), 1, + ACTIONS(9853), 1, anon_sym_LBRACE, - STATE(2413), 1, - sym_compound_statement, - STATE(5413), 1, + STATE(5483), 1, sym_template_parameter_list, - STATE(5874), 1, + STATE(5929), 1, sym_parameter_list, - STATE(7667), 1, + STATE(6018), 1, + sym_compound_statement, + STATE(7775), 1, sym_lambda_declarator, - STATE(8493), 1, + STATE(8588), 1, sym_trailing_return_type, - STATE(5866), 2, + STATE(5946), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5969), 2, + STATE(6072), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(6805), 3, + STATE(6944), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9811), 4, + ACTIONS(9841), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [220084] = 17, + [224266] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7072), 1, + ACTIONS(7075), 1, anon_sym_noexcept, - ACTIONS(7074), 1, + ACTIONS(7077), 1, anon_sym_throw, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(9813), 1, + ACTIONS(9843), 1, anon_sym_DASH_GT, - ACTIONS(9815), 1, + ACTIONS(9847), 1, anon_sym_requires, - ACTIONS(9825), 1, + ACTIONS(9853), 1, anon_sym_LBRACE, - STATE(4240), 1, - sym_compound_statement, - STATE(5592), 1, + STATE(5658), 1, sym_requires_clause, - STATE(5874), 1, + STATE(5929), 1, sym_parameter_list, - STATE(7803), 1, + STATE(6038), 1, + sym_compound_statement, + STATE(7784), 1, sym_lambda_declarator, - STATE(8493), 1, + STATE(8588), 1, sym_trailing_return_type, - STATE(5866), 2, + STATE(5946), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5969), 2, + STATE(6072), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(6805), 3, + STATE(6944), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9811), 4, + ACTIONS(9841), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [220143] = 17, + [224325] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5026), 1, - anon_sym_LT, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7072), 1, + ACTIONS(7075), 1, anon_sym_noexcept, - ACTIONS(7074), 1, + ACTIONS(7077), 1, anon_sym_throw, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(9813), 1, + ACTIONS(9843), 1, anon_sym_DASH_GT, - ACTIONS(9829), 1, + ACTIONS(9847), 1, + anon_sym_requires, + ACTIONS(9855), 1, anon_sym_LBRACE, - STATE(1620), 1, + STATE(3502), 1, sym_compound_statement, - STATE(5410), 1, - sym_template_parameter_list, - STATE(5874), 1, + STATE(5615), 1, + sym_requires_clause, + STATE(5929), 1, sym_parameter_list, - STATE(7795), 1, + STATE(7934), 1, sym_lambda_declarator, - STATE(8493), 1, + STATE(8588), 1, sym_trailing_return_type, - STATE(5866), 2, + STATE(5946), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5969), 2, + STATE(6072), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(6805), 3, + STATE(6944), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9811), 4, + ACTIONS(9841), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [220202] = 17, + [224384] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5472), 1, + ACTIONS(5034), 1, + anon_sym_LT, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7072), 1, + ACTIONS(7075), 1, anon_sym_noexcept, - ACTIONS(7074), 1, + ACTIONS(7077), 1, anon_sym_throw, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(9813), 1, + ACTIONS(9843), 1, anon_sym_DASH_GT, - ACTIONS(9815), 1, - anon_sym_requires, - ACTIONS(9823), 1, + ACTIONS(9857), 1, anon_sym_LBRACE, - STATE(5528), 1, - sym_requires_clause, - STATE(5625), 1, + STATE(2497), 1, sym_compound_statement, - STATE(5874), 1, + STATE(5487), 1, + sym_template_parameter_list, + STATE(5929), 1, sym_parameter_list, - STATE(7893), 1, + STATE(7824), 1, sym_lambda_declarator, - STATE(8493), 1, + STATE(8588), 1, sym_trailing_return_type, - STATE(5866), 2, + STATE(5946), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5969), 2, + STATE(6072), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(6805), 3, + STATE(6944), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9811), 4, + ACTIONS(9841), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [220261] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7842), 1, - anon_sym_LPAREN2, - ACTIONS(7856), 1, - anon_sym_LBRACK, - ACTIONS(7982), 1, - anon_sym_STAR, - ACTIONS(7984), 1, - anon_sym_AMP_AMP, - ACTIONS(7986), 1, - anon_sym_AMP, - ACTIONS(8308), 1, - anon_sym___attribute, - STATE(3007), 1, - sym_parameter_list, - STATE(5792), 1, - sym__function_declarator_seq, - STATE(6220), 1, - sym__abstract_declarator, - STATE(5804), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8306), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [220310] = 3, + [224443] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9833), 3, + ACTIONS(9861), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9831), 20, + ACTIONS(9859), 20, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -476374,414 +483416,447 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noexcept, anon_sym_throw, anon_sym_requires, - [220341] = 17, + [224474] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7072), 1, + ACTIONS(7075), 1, anon_sym_noexcept, - ACTIONS(7074), 1, + ACTIONS(7077), 1, anon_sym_throw, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(9813), 1, + ACTIONS(9843), 1, anon_sym_DASH_GT, - ACTIONS(9815), 1, + ACTIONS(9847), 1, anon_sym_requires, - ACTIONS(9835), 1, + ACTIONS(9857), 1, anon_sym_LBRACE, - STATE(3917), 1, + STATE(2560), 1, sym_compound_statement, - STATE(5627), 1, + STATE(5612), 1, sym_requires_clause, - STATE(5874), 1, + STATE(5929), 1, sym_parameter_list, - STATE(7613), 1, + STATE(7956), 1, sym_lambda_declarator, - STATE(8493), 1, + STATE(8588), 1, sym_trailing_return_type, - STATE(5866), 2, + STATE(5946), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5969), 2, + STATE(6072), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(6805), 3, + STATE(6944), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9811), 4, + ACTIONS(9841), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [220400] = 17, + [224533] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(5026), 1, + ACTIONS(7848), 1, + anon_sym_LPAREN2, + ACTIONS(7862), 1, + anon_sym_LBRACK, + ACTIONS(8113), 1, + anon_sym_STAR, + ACTIONS(8115), 1, + anon_sym_AMP_AMP, + ACTIONS(8117), 1, + anon_sym_AMP, + ACTIONS(8362), 1, + anon_sym___attribute, + STATE(3112), 1, + sym_parameter_list, + STATE(5953), 1, + sym__function_declarator_seq, + STATE(6333), 1, + sym__abstract_declarator, + STATE(5952), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8360), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [224582] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5034), 1, anon_sym_LT, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7072), 1, + ACTIONS(7075), 1, anon_sym_noexcept, - ACTIONS(7074), 1, + ACTIONS(7077), 1, anon_sym_throw, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(9813), 1, + ACTIONS(9843), 1, anon_sym_DASH_GT, - STATE(3302), 1, + ACTIONS(9863), 1, + anon_sym_LBRACE, + STATE(4280), 1, sym_compound_statement, - STATE(5393), 1, + STATE(5490), 1, sym_template_parameter_list, - STATE(5874), 1, + STATE(5929), 1, sym_parameter_list, - STATE(7574), 1, + STATE(7968), 1, sym_lambda_declarator, - STATE(8493), 1, + STATE(8588), 1, sym_trailing_return_type, - STATE(5866), 2, + STATE(5946), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5969), 2, + STATE(6072), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(6805), 3, + STATE(6944), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9811), 4, + ACTIONS(9841), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [220459] = 17, + [224641] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7072), 1, + ACTIONS(7075), 1, anon_sym_noexcept, - ACTIONS(7074), 1, + ACTIONS(7077), 1, anon_sym_throw, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(9813), 1, + ACTIONS(9843), 1, anon_sym_DASH_GT, - ACTIONS(9815), 1, + ACTIONS(9847), 1, anon_sym_requires, - ACTIONS(9829), 1, + ACTIONS(9863), 1, anon_sym_LBRACE, - STATE(1618), 1, + STATE(4299), 1, sym_compound_statement, - STATE(5517), 1, + STATE(5661), 1, sym_requires_clause, - STATE(5874), 1, + STATE(5929), 1, sym_parameter_list, - STATE(7824), 1, + STATE(7703), 1, sym_lambda_declarator, - STATE(8493), 1, + STATE(8588), 1, sym_trailing_return_type, - STATE(5866), 2, + STATE(5946), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5969), 2, + STATE(6072), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(6805), 3, + STATE(6944), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9811), 4, + ACTIONS(9841), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [220518] = 17, + [224700] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5026), 1, - anon_sym_LT, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7072), 1, + ACTIONS(7075), 1, anon_sym_noexcept, - ACTIONS(7074), 1, + ACTIONS(7077), 1, anon_sym_throw, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(9813), 1, + ACTIONS(9843), 1, anon_sym_DASH_GT, - ACTIONS(9817), 1, + ACTIONS(9847), 1, + anon_sym_requires, + ACTIONS(9851), 1, anon_sym_LBRACE, - STATE(5394), 1, - sym_template_parameter_list, - STATE(5874), 1, - sym_parameter_list, - STATE(5933), 1, + STATE(3306), 1, sym_compound_statement, - STATE(7601), 1, + STATE(5654), 1, + sym_requires_clause, + STATE(5929), 1, + sym_parameter_list, + STATE(7941), 1, sym_lambda_declarator, - STATE(8493), 1, + STATE(8588), 1, sym_trailing_return_type, - STATE(5866), 2, + STATE(5946), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5969), 2, + STATE(6072), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(6805), 3, + STATE(6944), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9811), 4, + ACTIONS(9841), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [220577] = 17, + [224759] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5472), 1, + ACTIONS(5034), 1, + anon_sym_LT, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7072), 1, + ACTIONS(7075), 1, anon_sym_noexcept, - ACTIONS(7074), 1, + ACTIONS(7077), 1, anon_sym_throw, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(9813), 1, + ACTIONS(9843), 1, anon_sym_DASH_GT, - ACTIONS(9815), 1, - anon_sym_requires, - ACTIONS(9819), 1, + ACTIONS(9865), 1, anon_sym_LBRACE, - STATE(3684), 1, + STATE(3937), 1, sym_compound_statement, - STATE(5506), 1, - sym_requires_clause, - STATE(5874), 1, + STATE(5493), 1, + sym_template_parameter_list, + STATE(5929), 1, sym_parameter_list, - STATE(7709), 1, + STATE(7793), 1, sym_lambda_declarator, - STATE(8493), 1, + STATE(8588), 1, sym_trailing_return_type, - STATE(5866), 2, + STATE(5946), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5969), 2, + STATE(6072), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(6805), 3, + STATE(6944), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9811), 4, + ACTIONS(9841), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [220636] = 17, + [224818] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7072), 1, + ACTIONS(7075), 1, anon_sym_noexcept, - ACTIONS(7074), 1, + ACTIONS(7077), 1, anon_sym_throw, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(9813), 1, + ACTIONS(9843), 1, anon_sym_DASH_GT, - ACTIONS(9815), 1, + ACTIONS(9847), 1, anon_sym_requires, - ACTIONS(9827), 1, + ACTIONS(9865), 1, anon_sym_LBRACE, - STATE(2432), 1, + STATE(3909), 1, sym_compound_statement, - STATE(5545), 1, + STATE(5694), 1, sym_requires_clause, - STATE(5874), 1, + STATE(5929), 1, sym_parameter_list, - STATE(7578), 1, + STATE(7820), 1, sym_lambda_declarator, - STATE(8493), 1, + STATE(8588), 1, sym_trailing_return_type, - STATE(5866), 2, + STATE(5946), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5969), 2, + STATE(6072), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(6805), 3, + STATE(6944), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9811), 4, + ACTIONS(9841), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [220695] = 17, + [224877] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5026), 1, + ACTIONS(5034), 1, anon_sym_LT, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7072), 1, + ACTIONS(7075), 1, anon_sym_noexcept, - ACTIONS(7074), 1, + ACTIONS(7077), 1, anon_sym_throw, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(9813), 1, + ACTIONS(9843), 1, anon_sym_DASH_GT, - ACTIONS(9837), 1, + ACTIONS(9855), 1, anon_sym_LBRACE, - STATE(3518), 1, + STATE(3439), 1, sym_compound_statement, - STATE(5416), 1, + STATE(5484), 1, sym_template_parameter_list, - STATE(5874), 1, + STATE(5929), 1, sym_parameter_list, - STATE(7879), 1, + STATE(7857), 1, sym_lambda_declarator, - STATE(8493), 1, + STATE(8588), 1, sym_trailing_return_type, - STATE(5866), 2, + STATE(5946), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5969), 2, + STATE(6072), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(6805), 3, + STATE(6944), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9811), 4, + ACTIONS(9841), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [220754] = 17, + [224936] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5026), 1, + ACTIONS(5034), 1, anon_sym_LT, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7072), 1, + ACTIONS(7075), 1, anon_sym_noexcept, - ACTIONS(7074), 1, + ACTIONS(7077), 1, anon_sym_throw, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(9813), 1, + ACTIONS(9843), 1, anon_sym_DASH_GT, - ACTIONS(9835), 1, + ACTIONS(9845), 1, anon_sym_LBRACE, - STATE(3921), 1, + STATE(3736), 1, sym_compound_statement, - STATE(5408), 1, + STATE(5473), 1, sym_template_parameter_list, - STATE(5874), 1, + STATE(5929), 1, sym_parameter_list, - STATE(7587), 1, + STATE(7909), 1, sym_lambda_declarator, - STATE(8493), 1, + STATE(8588), 1, sym_trailing_return_type, - STATE(5866), 2, + STATE(5946), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5969), 2, + STATE(6072), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(6805), 3, + STATE(6944), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9811), 4, + ACTIONS(9841), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [220813] = 17, + [224995] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7072), 1, - anon_sym_noexcept, - ACTIONS(7074), 1, - anon_sym_throw, - ACTIONS(9770), 1, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(2020), 1, + anon_sym_LBRACK, + ACTIONS(8028), 1, + anon_sym_COLON_COLON, + ACTIONS(9668), 1, + sym_identifier, + ACTIONS(9867), 1, anon_sym_LPAREN2, - ACTIONS(9813), 1, - anon_sym_DASH_GT, - ACTIONS(9815), 1, + ACTIONS(9871), 1, anon_sym_requires, - ACTIONS(9837), 1, - anon_sym_LBRACE, - STATE(3442), 1, - sym_compound_statement, - STATE(5561), 1, - sym_requires_clause, - STATE(5874), 1, - sym_parameter_list, - STATE(7851), 1, - sym_lambda_declarator, - STATE(8493), 1, - sym_trailing_return_type, - STATE(5866), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5969), 2, - sym_lambda_specifier, - aux_sym_lambda_declarator_repeat1, - STATE(6805), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9811), 4, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - [220872] = 14, + STATE(1922), 1, + sym_template_type, + STATE(5472), 1, + sym_lambda_capture_specifier, + STATE(6719), 1, + sym__scope_resolution, + ACTIONS(9869), 2, + sym_true, + sym_false, + STATE(8569), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(5639), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [225047] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, ACTIONS(2020), 1, anon_sym_LBRACK, - ACTIONS(9384), 1, + ACTIONS(8000), 1, anon_sym_COLON_COLON, - ACTIONS(9640), 1, + ACTIONS(9672), 1, sym_identifier, - ACTIONS(9726), 1, - anon_sym_requires, - ACTIONS(9839), 1, + ACTIONS(9873), 1, anon_sym_LPAREN2, - STATE(1945), 1, + ACTIONS(9877), 1, + anon_sym_requires, + STATE(4461), 1, sym_template_type, - STATE(5402), 1, + STATE(5482), 1, sym_lambda_capture_specifier, - STATE(6580), 1, + STATE(6731), 1, sym__scope_resolution, - ACTIONS(9841), 2, + ACTIONS(9875), 2, sym_true, sym_false, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(2459), 8, + STATE(6006), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -476790,129 +483865,150 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [220924] = 7, + [225099] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(7301), 1, - anon_sym_requires, - ACTIONS(6020), 2, - anon_sym_final, - anon_sym_override, - STATE(5606), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5876), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9676), 3, - anon_sym___attribute, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(2020), 1, anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9665), 12, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(9770), 1, + anon_sym_requires, + ACTIONS(9879), 1, + sym_identifier, + ACTIONS(9881), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [220962] = 7, + ACTIONS(9883), 1, + anon_sym_COLON_COLON, + STATE(1784), 1, + sym_template_type, + STATE(5479), 1, + sym_lambda_capture_specifier, + STATE(6722), 1, + sym__scope_resolution, + ACTIONS(9885), 2, + sym_true, + sym_false, + STATE(8569), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(6192), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [225151] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(7301), 1, - anon_sym_requires, - ACTIONS(6020), 2, - anon_sym_final, - anon_sym_override, - STATE(5606), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5846), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9845), 3, - anon_sym___attribute, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(2020), 1, anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9843), 12, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(9770), 1, + anon_sym_requires, + ACTIONS(9879), 1, + sym_identifier, + ACTIONS(9881), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [221000] = 7, + ACTIONS(9883), 1, + anon_sym_COLON_COLON, + STATE(1784), 1, + sym_template_type, + STATE(5479), 1, + sym_lambda_capture_specifier, + STATE(6722), 1, + sym__scope_resolution, + ACTIONS(9887), 2, + sym_true, + sym_false, + STATE(8569), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(6172), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [225203] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(7301), 1, - anon_sym_requires, - ACTIONS(6020), 2, - anon_sym_final, - anon_sym_override, - STATE(5606), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5836), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9849), 3, - anon_sym___attribute, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(2020), 1, anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9847), 12, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(9770), 1, + anon_sym_requires, + ACTIONS(9879), 1, + sym_identifier, + ACTIONS(9881), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [221038] = 14, + ACTIONS(9883), 1, + anon_sym_COLON_COLON, + STATE(1784), 1, + sym_template_type, + STATE(5479), 1, + sym_lambda_capture_specifier, + STATE(6722), 1, + sym__scope_resolution, + ACTIONS(9889), 2, + sym_true, + sym_false, + STATE(8569), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(3303), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [225255] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, ACTIONS(2020), 1, anon_sym_LBRACK, - ACTIONS(3907), 1, + ACTIONS(9612), 1, anon_sym_COLON_COLON, - ACTIONS(9615), 1, + ACTIONS(9664), 1, sym_identifier, - ACTIONS(9851), 1, - anon_sym_LPAREN2, - ACTIONS(9855), 1, + ACTIONS(9796), 1, anon_sym_requires, - STATE(1893), 1, + ACTIONS(9891), 1, + anon_sym_LPAREN2, + STATE(2598), 1, sym_template_type, - STATE(5396), 1, + STATE(5489), 1, sym_lambda_capture_specifier, - STATE(6599), 1, + STATE(6694), 1, sym__scope_resolution, - ACTIONS(9853), 2, + ACTIONS(9893), 2, sym_true, sym_false, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6210), 8, + STATE(4880), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -476921,36 +484017,36 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [221090] = 14, + [225307] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, ACTIONS(2020), 1, anon_sym_LBRACK, - ACTIONS(9578), 1, + ACTIONS(9612), 1, anon_sym_COLON_COLON, - ACTIONS(9638), 1, + ACTIONS(9664), 1, sym_identifier, - ACTIONS(9734), 1, + ACTIONS(9796), 1, anon_sym_requires, - ACTIONS(9857), 1, + ACTIONS(9891), 1, anon_sym_LPAREN2, - STATE(3681), 1, + STATE(2598), 1, sym_template_type, - STATE(5399), 1, + STATE(5489), 1, sym_lambda_capture_specifier, - STATE(6634), 1, + STATE(6694), 1, sym__scope_resolution, - ACTIONS(9859), 2, + ACTIONS(9895), 2, sym_true, sym_false, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(3214), 8, + STATE(4287), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -476959,36 +484055,36 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [221142] = 14, + [225359] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, ACTIONS(2020), 1, anon_sym_LBRACK, - ACTIONS(7970), 1, + ACTIONS(9459), 1, anon_sym_COLON_COLON, - ACTIONS(9623), 1, + ACTIONS(9666), 1, sym_identifier, - ACTIONS(9851), 1, - anon_sym_LPAREN2, - ACTIONS(9855), 1, + ACTIONS(9778), 1, anon_sym_requires, - STATE(1893), 1, + ACTIONS(9897), 1, + anon_sym_LPAREN2, + STATE(2856), 1, sym_template_type, - STATE(5396), 1, + STATE(5492), 1, sym_lambda_capture_specifier, - STATE(6630), 1, + STATE(6708), 1, sym__scope_resolution, - ACTIONS(9861), 2, + ACTIONS(9899), 2, sym_true, sym_false, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5425), 8, + STATE(3875), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -476997,36 +484093,36 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [221194] = 14, + [225411] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, ACTIONS(2020), 1, anon_sym_LBRACK, - ACTIONS(7970), 1, + ACTIONS(9459), 1, anon_sym_COLON_COLON, - ACTIONS(9623), 1, + ACTIONS(9666), 1, sym_identifier, - ACTIONS(9851), 1, - anon_sym_LPAREN2, - ACTIONS(9855), 1, + ACTIONS(9778), 1, anon_sym_requires, - STATE(1893), 1, + ACTIONS(9897), 1, + anon_sym_LPAREN2, + STATE(2856), 1, sym_template_type, - STATE(5396), 1, + STATE(5492), 1, sym_lambda_capture_specifier, - STATE(6630), 1, + STATE(6708), 1, sym__scope_resolution, - ACTIONS(9863), 2, + ACTIONS(9901), 2, sym_true, sym_false, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(1612), 8, + STATE(3878), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -477035,64 +484131,74 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [221246] = 4, + [225463] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(9865), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(6178), 3, - anon_sym___attribute, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(2020), 1, anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(6180), 17, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(8074), 1, + anon_sym_COLON_COLON, + ACTIONS(9647), 1, + sym_identifier, + ACTIONS(9867), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_or, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, + ACTIONS(9871), 1, anon_sym_requires, - [221278] = 14, + STATE(1922), 1, + sym_template_type, + STATE(5472), 1, + sym_lambda_capture_specifier, + STATE(6743), 1, + sym__scope_resolution, + ACTIONS(9903), 2, + sym_true, + sym_false, + STATE(8569), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(6620), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [225515] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, ACTIONS(2020), 1, anon_sym_LBRACK, - ACTIONS(3907), 1, + ACTIONS(3915), 1, anon_sym_COLON_COLON, - ACTIONS(9615), 1, + ACTIONS(9647), 1, sym_identifier, - ACTIONS(9851), 1, + ACTIONS(9905), 1, anon_sym_LPAREN2, - ACTIONS(9855), 1, + ACTIONS(9909), 1, anon_sym_requires, - STATE(1893), 1, + STATE(1922), 1, sym_template_type, - STATE(5396), 1, + STATE(5474), 1, sym_lambda_capture_specifier, - STATE(6599), 1, + STATE(6697), 1, sym__scope_resolution, - ACTIONS(9863), 2, + ACTIONS(9907), 2, sym_true, sym_false, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(1612), 8, + STATE(6363), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -477101,58 +484207,25 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [221330] = 5, + [225567] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9865), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(9867), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(6253), 3, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + STATE(4831), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9818), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(6255), 15, + ACTIONS(9816), 16, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [221364] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7083), 1, - anon_sym___attribute__, - ACTIONS(7085), 1, - anon_sym___attribute, - ACTIONS(7838), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9801), 2, - anon_sym_LBRACK, - anon_sym___asm, - STATE(4337), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5688), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(9799), 13, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, anon_sym_LBRACE, anon_sym_EQ, anon_sym_asm, @@ -477160,38 +484233,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_try, anon_sym_requires, - [221404] = 14, + [225601] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, ACTIONS(2020), 1, anon_sym_LBRACK, - ACTIONS(9384), 1, + ACTIONS(8022), 1, anon_sym_COLON_COLON, - ACTIONS(9640), 1, + ACTIONS(9662), 1, sym_identifier, - ACTIONS(9726), 1, + ACTIONS(9796), 1, anon_sym_requires, - ACTIONS(9839), 1, + ACTIONS(9891), 1, anon_sym_LPAREN2, - STATE(1945), 1, + STATE(2598), 1, sym_template_type, - STATE(5402), 1, + STATE(5489), 1, sym_lambda_capture_specifier, - STATE(6580), 1, + STATE(6738), 1, sym__scope_resolution, - ACTIONS(9869), 2, + ACTIONS(9911), 2, sym_true, sym_false, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(2460), 8, + STATE(6360), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -477200,36 +484274,36 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [221456] = 14, + [225653] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, ACTIONS(2020), 1, anon_sym_LBRACK, - ACTIONS(9528), 1, + ACTIONS(3915), 1, anon_sym_COLON_COLON, - ACTIONS(9617), 1, + ACTIONS(9647), 1, sym_identifier, - ACTIONS(9760), 1, + ACTIONS(9770), 1, anon_sym_requires, - ACTIONS(9871), 1, + ACTIONS(9881), 1, anon_sym_LPAREN2, - STATE(2830), 1, + STATE(1922), 1, sym_template_type, - STATE(5415), 1, + STATE(5477), 1, sym_lambda_capture_specifier, - STATE(6578), 1, + STATE(6697), 1, sym__scope_resolution, - ACTIONS(9873), 2, + ACTIONS(9913), 2, sym_true, sym_false, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(3839), 8, + STATE(6973), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -477238,36 +484312,36 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [221508] = 14, + [225705] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, ACTIONS(2020), 1, anon_sym_LBRACK, - ACTIONS(9406), 1, + ACTIONS(8074), 1, anon_sym_COLON_COLON, - ACTIONS(9644), 1, + ACTIONS(9647), 1, sym_identifier, - ACTIONS(9752), 1, - anon_sym_requires, - ACTIONS(9875), 1, + ACTIONS(9867), 1, anon_sym_LPAREN2, - STATE(2567), 1, + ACTIONS(9871), 1, + anon_sym_requires, + STATE(1922), 1, sym_template_type, - STATE(5401), 1, + STATE(5472), 1, sym_lambda_capture_specifier, - STATE(6594), 1, + STATE(6743), 1, sym__scope_resolution, - ACTIONS(9877), 2, + ACTIONS(9915), 2, sym_true, sym_false, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(4222), 8, + STATE(6540), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -477276,36 +484350,36 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [221560] = 14, + [225757] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, ACTIONS(2020), 1, anon_sym_LBRACK, - ACTIONS(3907), 1, + ACTIONS(8074), 1, anon_sym_COLON_COLON, - ACTIONS(9615), 1, + ACTIONS(9647), 1, sym_identifier, - ACTIONS(9734), 1, - anon_sym_requires, - ACTIONS(9857), 1, + ACTIONS(9867), 1, anon_sym_LPAREN2, - STATE(1893), 1, + ACTIONS(9871), 1, + anon_sym_requires, + STATE(1922), 1, sym_template_type, - STATE(5409), 1, + STATE(5472), 1, sym_lambda_capture_specifier, - STATE(6599), 1, + STATE(6743), 1, sym__scope_resolution, - ACTIONS(9879), 2, + ACTIONS(9869), 2, sym_true, sym_false, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6878), 8, + STATE(5639), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -477314,36 +484388,36 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [221612] = 14, + [225809] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, ACTIONS(2020), 1, anon_sym_LBRACK, - ACTIONS(3907), 1, + ACTIONS(9412), 1, anon_sym_COLON_COLON, - ACTIONS(9615), 1, + ACTIONS(9674), 1, sym_identifier, - ACTIONS(9734), 1, + ACTIONS(9770), 1, anon_sym_requires, - ACTIONS(9857), 1, + ACTIONS(9881), 1, anon_sym_LPAREN2, - STATE(1893), 1, + STATE(3638), 1, sym_template_type, - STATE(5409), 1, + STATE(5479), 1, sym_lambda_capture_specifier, - STATE(6599), 1, + STATE(6732), 1, sym__scope_resolution, - ACTIONS(9859), 2, + ACTIONS(9917), 2, sym_true, sym_false, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(3214), 8, + STATE(4279), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -477352,36 +484426,36 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [221664] = 14, + [225861] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, ACTIONS(2020), 1, anon_sym_LBRACK, - ACTIONS(8055), 1, + ACTIONS(9412), 1, anon_sym_COLON_COLON, - ACTIONS(9623), 1, + ACTIONS(9674), 1, sym_identifier, + ACTIONS(9770), 1, + anon_sym_requires, ACTIONS(9881), 1, anon_sym_LPAREN2, - ACTIONS(9885), 1, - anon_sym_requires, - STATE(1893), 1, + STATE(3638), 1, sym_template_type, - STATE(5400), 1, + STATE(5479), 1, sym_lambda_capture_specifier, - STATE(6592), 1, + STATE(6732), 1, sym__scope_resolution, - ACTIONS(9883), 2, + ACTIONS(9889), 2, sym_true, sym_false, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5520), 8, + STATE(3303), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -477390,36 +484464,36 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [221716] = 14, + [225913] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, ACTIONS(2020), 1, anon_sym_LBRACK, - ACTIONS(8055), 1, + ACTIONS(3915), 1, anon_sym_COLON_COLON, - ACTIONS(9623), 1, + ACTIONS(9647), 1, sym_identifier, - ACTIONS(9881), 1, + ACTIONS(9905), 1, anon_sym_LPAREN2, - ACTIONS(9885), 1, + ACTIONS(9909), 1, anon_sym_requires, - STATE(1893), 1, + STATE(1922), 1, sym_template_type, - STATE(5400), 1, + STATE(5480), 1, sym_lambda_capture_specifier, - STATE(6592), 1, + STATE(6697), 1, sym__scope_resolution, - ACTIONS(9887), 2, + ACTIONS(9919), 2, sym_true, sym_false, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5578), 8, + STATE(5970), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -477428,36 +484502,36 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [221768] = 14, + [225965] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, ACTIONS(2020), 1, anon_sym_LBRACK, - ACTIONS(8055), 1, + ACTIONS(3915), 1, anon_sym_COLON_COLON, - ACTIONS(9623), 1, + ACTIONS(9647), 1, sym_identifier, - ACTIONS(9881), 1, + ACTIONS(9905), 1, anon_sym_LPAREN2, - ACTIONS(9885), 1, + ACTIONS(9909), 1, anon_sym_requires, - STATE(1893), 1, + STATE(1922), 1, sym_template_type, - STATE(5400), 1, + STATE(5480), 1, sym_lambda_capture_specifier, - STATE(6592), 1, + STATE(6697), 1, sym__scope_resolution, - ACTIONS(9889), 2, + ACTIONS(9921), 2, sym_true, sym_false, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5579), 8, + STATE(1637), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -477466,36 +484540,36 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [221820] = 14, + [226017] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, ACTIONS(2020), 1, anon_sym_LBRACK, - ACTIONS(9851), 1, - anon_sym_LPAREN2, - ACTIONS(9855), 1, - anon_sym_requires, - ACTIONS(9891), 1, - sym_identifier, - ACTIONS(9893), 1, + ACTIONS(9530), 1, anon_sym_COLON_COLON, - STATE(2260), 1, + ACTIONS(9658), 1, + sym_identifier, + ACTIONS(9788), 1, + anon_sym_requires, + ACTIONS(9923), 1, + anon_sym_LPAREN2, + STATE(1943), 1, sym_template_type, - STATE(5404), 1, + STATE(5485), 1, sym_lambda_capture_specifier, - STATE(6612), 1, + STATE(6695), 1, sym__scope_resolution, - ACTIONS(9895), 2, + ACTIONS(9925), 2, sym_true, sym_false, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(2271), 8, + STATE(2528), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -477504,65 +484578,36 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [221872] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9899), 1, - anon_sym_LPAREN2, - STATE(5771), 1, - sym_preproc_argument_list, - ACTIONS(9901), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(9897), 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, - [221906] = 14, + [226069] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, ACTIONS(2020), 1, anon_sym_LBRACK, - ACTIONS(8021), 1, + ACTIONS(9530), 1, anon_sym_COLON_COLON, - ACTIONS(9619), 1, + ACTIONS(9658), 1, sym_identifier, - ACTIONS(9903), 1, - anon_sym_LPAREN2, - ACTIONS(9907), 1, + ACTIONS(9788), 1, anon_sym_requires, - STATE(4376), 1, + ACTIONS(9923), 1, + anon_sym_LPAREN2, + STATE(1943), 1, sym_template_type, - STATE(5411), 1, + STATE(5485), 1, sym_lambda_capture_specifier, - STATE(6632), 1, + STATE(6695), 1, sym__scope_resolution, - ACTIONS(9905), 2, + ACTIONS(9927), 2, sym_true, sym_false, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5926), 8, + STATE(2529), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -477571,36 +484616,36 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [221958] = 14, + [226121] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, ACTIONS(2020), 1, anon_sym_LBRACK, - ACTIONS(8021), 1, + ACTIONS(3915), 1, anon_sym_COLON_COLON, - ACTIONS(9619), 1, + ACTIONS(9647), 1, sym_identifier, - ACTIONS(9903), 1, + ACTIONS(9905), 1, anon_sym_LPAREN2, - ACTIONS(9907), 1, + ACTIONS(9909), 1, anon_sym_requires, - STATE(4376), 1, + STATE(1922), 1, sym_template_type, - STATE(5411), 1, + STATE(5480), 1, sym_lambda_capture_specifier, - STATE(6632), 1, + STATE(6697), 1, sym__scope_resolution, - ACTIONS(9909), 2, + ACTIONS(9929), 2, sym_true, sym_false, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5898), 8, + STATE(6000), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -477609,103 +484654,107 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [222010] = 14, + [226173] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(2020), 1, - anon_sym_LBRACK, - ACTIONS(3907), 1, - anon_sym_COLON_COLON, - ACTIONS(9615), 1, - sym_identifier, - ACTIONS(9851), 1, + ACTIONS(7848), 1, anon_sym_LPAREN2, - ACTIONS(9855), 1, + ACTIONS(7862), 1, + anon_sym_LBRACK, + ACTIONS(8151), 1, + anon_sym_STAR, + ACTIONS(8153), 1, + anon_sym_AMP_AMP, + ACTIONS(8155), 1, + anon_sym_AMP, + STATE(2963), 1, + sym_parameter_list, + STATE(5953), 1, + sym__function_declarator_seq, + STATE(6454), 1, + sym__abstract_declarator, + STATE(5952), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8360), 9, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_try, anon_sym_requires, - STATE(1893), 1, - sym_template_type, - STATE(5404), 1, - sym_lambda_capture_specifier, - STATE(6599), 1, - sym__scope_resolution, - ACTIONS(9911), 2, - sym_true, - sym_false, - STATE(8601), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(6265), 8, - sym__class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym__requirement_clause_constraint, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, - sym_qualified_type_identifier, - [222062] = 5, + [226219] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - STATE(4776), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(9797), 3, - anon_sym___attribute, + ACTIONS(5020), 1, + anon_sym_LPAREN2, + ACTIONS(8135), 1, + anon_sym_STAR, + ACTIONS(8137), 1, + anon_sym_AMP_AMP, + ACTIONS(8139), 1, + anon_sym_AMP, + ACTIONS(8147), 1, anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9795), 16, - anon_sym_DOT_DOT_DOT, + ACTIONS(8362), 1, + anon_sym___attribute, + STATE(3111), 1, + sym_parameter_list, + STATE(6109), 1, + sym__function_declarator_seq, + STATE(6417), 1, + sym__abstract_declarator, + STATE(6099), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8360), 8, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, anon_sym___attribute__, - anon_sym_LBRACE, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DASH_GT, anon_sym_final, anon_sym_override, anon_sym_GT2, - anon_sym_try, anon_sym_requires, - [222096] = 14, + [226267] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, ACTIONS(2020), 1, anon_sym_LBRACK, - ACTIONS(8081), 1, + ACTIONS(8060), 1, anon_sym_COLON_COLON, - ACTIONS(9615), 1, + ACTIONS(9668), 1, sym_identifier, - ACTIONS(9881), 1, + ACTIONS(9905), 1, anon_sym_LPAREN2, - ACTIONS(9885), 1, + ACTIONS(9909), 1, anon_sym_requires, - STATE(1893), 1, + STATE(1922), 1, sym_template_type, - STATE(5400), 1, + STATE(5480), 1, sym_lambda_capture_specifier, - STATE(6615), 1, + STATE(6729), 1, sym__scope_resolution, - ACTIONS(9913), 2, + ACTIONS(9931), 2, sym_true, sym_false, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6484), 8, + STATE(5535), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -477714,36 +484763,36 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [222148] = 14, + [226319] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, ACTIONS(2020), 1, anon_sym_LBRACK, - ACTIONS(7970), 1, + ACTIONS(3915), 1, anon_sym_COLON_COLON, - ACTIONS(9623), 1, + ACTIONS(9647), 1, sym_identifier, - ACTIONS(9851), 1, + ACTIONS(9905), 1, anon_sym_LPAREN2, - ACTIONS(9855), 1, + ACTIONS(9909), 1, anon_sym_requires, - STATE(1893), 1, + STATE(1922), 1, sym_template_type, - STATE(5396), 1, + STATE(5474), 1, sym_lambda_capture_specifier, - STATE(6630), 1, + STATE(6697), 1, sym__scope_resolution, - ACTIONS(9915), 2, + ACTIONS(9933), 2, sym_true, sym_false, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5427), 8, + STATE(6339), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -477752,36 +484801,36 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [222200] = 14, + [226371] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, ACTIONS(2020), 1, anon_sym_LBRACK, - ACTIONS(3907), 1, + ACTIONS(3915), 1, anon_sym_COLON_COLON, - ACTIONS(9615), 1, + ACTIONS(9647), 1, sym_identifier, - ACTIONS(9851), 1, + ACTIONS(9905), 1, anon_sym_LPAREN2, - ACTIONS(9855), 1, + ACTIONS(9909), 1, anon_sym_requires, - STATE(1893), 1, + STATE(1922), 1, sym_template_type, - STATE(5404), 1, + STATE(5474), 1, sym_lambda_capture_specifier, - STATE(6599), 1, + STATE(6697), 1, sym__scope_resolution, - ACTIONS(9863), 2, + ACTIONS(9921), 2, sym_true, sym_false, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(1612), 8, + STATE(1637), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -477790,25 +484839,25 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [222252] = 7, + [226423] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9281), 1, + ACTIONS(7314), 1, anon_sym_requires, - ACTIONS(9195), 2, + ACTIONS(6037), 2, anon_sym_final, anon_sym_override, - STATE(5606), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5877), 2, + STATE(5927), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9193), 3, + ACTIONS(9150), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9182), 12, + ACTIONS(9139), 12, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -477821,25 +484870,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [222290] = 7, + [226461] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(9376), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(8272), 1, + anon_sym_STAR, + ACTIONS(9935), 1, + sym_identifier, + ACTIONS(9937), 1, + anon_sym_TILDE, + ACTIONS(9939), 1, + anon_sym_COLON_COLON, + ACTIONS(9941), 1, + anon_sym_template, + ACTIONS(9943), 1, + anon_sym_operator, + STATE(1919), 1, + sym_template_type, + STATE(1930), 1, + sym_dependent_type_identifier, + STATE(1932), 1, + sym_qualified_type_identifier, + STATE(2617), 1, + sym_template_function, + STATE(2653), 1, + sym_destructor_name, + STATE(2658), 1, + sym_dependent_identifier, + STATE(2662), 1, + sym_qualified_identifier, + STATE(2665), 1, + sym_operator_name, + STATE(2672), 1, + sym_pointer_type_declarator, + STATE(5525), 1, + sym__scope_resolution, + STATE(7057), 1, + sym_operator_cast, + STATE(7073), 1, + sym_qualified_operator_cast_identifier, + STATE(8550), 1, + sym_ms_based_modifier, + STATE(8569), 1, + sym_decltype, + [226531] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7314), 1, anon_sym_requires, - ACTIONS(9357), 2, + ACTIONS(6037), 2, anon_sym_final, anon_sym_override, - STATE(5606), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5839), 2, + STATE(5934), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9355), 3, + ACTIONS(9382), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9344), 12, + ACTIONS(9371), 12, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -477852,25 +484948,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [222328] = 7, + [226569] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9696), 1, + ACTIONS(9311), 1, anon_sym_requires, - ACTIONS(9681), 2, + ACTIONS(9193), 2, anon_sym_final, anon_sym_override, - STATE(5606), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5876), 2, + STATE(5927), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9676), 3, + ACTIONS(9150), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9665), 12, + ACTIONS(9139), 12, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -477883,63 +484979,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [222366] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(2020), 1, - anon_sym_LBRACK, - ACTIONS(3907), 1, - anon_sym_COLON_COLON, - ACTIONS(9615), 1, - sym_identifier, - ACTIONS(9851), 1, - anon_sym_LPAREN2, - ACTIONS(9855), 1, - anon_sym_requires, - STATE(1893), 1, - sym_template_type, - STATE(5404), 1, - sym_lambda_capture_specifier, - STATE(6599), 1, - sym__scope_resolution, - ACTIONS(9917), 2, - sym_true, - sym_false, - STATE(8601), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(6264), 8, - sym__class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym__requirement_clause_constraint, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, - sym_qualified_type_identifier, - [222418] = 7, + [226607] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9922), 1, + ACTIONS(9407), 1, anon_sym_requires, - ACTIONS(9919), 2, + ACTIONS(9387), 2, anon_sym_final, anon_sym_override, - STATE(5606), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5846), 2, + STATE(5934), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9845), 3, + ACTIONS(9382), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9843), 12, + ACTIONS(9371), 12, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -477952,63 +485010,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [222456] = 14, + [226645] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(2020), 1, + ACTIONS(7314), 1, + anon_sym_requires, + ACTIONS(6037), 2, + anon_sym_final, + anon_sym_override, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5924), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9700), 3, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(9851), 1, + anon_sym___asm, + ACTIONS(9689), 12, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(9855), 1, - anon_sym_requires, - ACTIONS(9891), 1, - sym_identifier, - ACTIONS(9893), 1, - anon_sym_COLON_COLON, - STATE(2260), 1, - sym_template_type, - STATE(5404), 1, - sym_lambda_capture_specifier, - STATE(6612), 1, - sym__scope_resolution, - ACTIONS(9925), 2, - sym_true, - sym_false, - STATE(8601), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(2215), 8, - sym__class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym__requirement_clause_constraint, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, - sym_qualified_type_identifier, - [222508] = 7, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [226683] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9930), 1, + ACTIONS(7314), 1, anon_sym_requires, - ACTIONS(9927), 2, + ACTIONS(6037), 2, anon_sym_final, anon_sym_override, - STATE(5606), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5836), 2, + STATE(5874), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9849), 3, + ACTIONS(9947), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9847), 12, + ACTIONS(9945), 12, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -478021,25 +485072,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [222546] = 7, + [226721] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7301), 1, + ACTIONS(7314), 1, anon_sym_requires, - ACTIONS(6020), 2, + ACTIONS(6037), 2, anon_sym_final, anon_sym_override, - STATE(5606), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5839), 2, + STATE(5912), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9355), 3, + ACTIONS(9951), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9344), 12, + ACTIONS(9949), 12, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -478052,36 +485103,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [222584] = 14, + [226759] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, ACTIONS(2020), 1, anon_sym_LBRACK, - ACTIONS(8049), 1, + ACTIONS(3915), 1, anon_sym_COLON_COLON, - ACTIONS(9634), 1, + ACTIONS(9647), 1, sym_identifier, - ACTIONS(9752), 1, + ACTIONS(9770), 1, anon_sym_requires, - ACTIONS(9875), 1, + ACTIONS(9881), 1, anon_sym_LPAREN2, - STATE(2567), 1, + STATE(1922), 1, sym_template_type, - STATE(5401), 1, + STATE(5477), 1, sym_lambda_capture_specifier, - STATE(6579), 1, + STATE(6697), 1, sym__scope_resolution, - ACTIONS(9933), 2, + ACTIONS(9889), 2, sym_true, sym_false, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6235), 8, + STATE(3303), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -478090,36 +485141,36 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [222636] = 14, + [226811] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, ACTIONS(2020), 1, anon_sym_LBRACK, - ACTIONS(8049), 1, + ACTIONS(8060), 1, anon_sym_COLON_COLON, - ACTIONS(9634), 1, + ACTIONS(9668), 1, sym_identifier, - ACTIONS(9752), 1, - anon_sym_requires, - ACTIONS(9875), 1, + ACTIONS(9905), 1, anon_sym_LPAREN2, - STATE(2567), 1, + ACTIONS(9909), 1, + anon_sym_requires, + STATE(1922), 1, sym_template_type, - STATE(5401), 1, + STATE(5480), 1, sym_lambda_capture_specifier, - STATE(6579), 1, + STATE(6729), 1, sym__scope_resolution, - ACTIONS(9877), 2, + ACTIONS(9921), 2, sym_true, sym_false, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(4222), 8, + STATE(1637), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -478128,101 +485179,240 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [222688] = 14, + [226863] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(2020), 1, + ACTIONS(9953), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6248), 3, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(9503), 1, - anon_sym_COLON_COLON, - ACTIONS(9646), 1, - sym_identifier, - ACTIONS(9768), 1, + anon_sym___asm, + ACTIONS(6250), 17, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_or, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, anon_sym_requires, - ACTIONS(9935), 1, + [226895] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9953), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9955), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6298), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(6300), 15, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - STATE(2630), 1, - sym_template_type, - STATE(5414), 1, - sym_lambda_capture_specifier, - STATE(6633), 1, - sym__scope_resolution, - ACTIONS(9937), 2, - sym_true, - sym_false, - STATE(8601), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(3526), 8, - sym__class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym__requirement_clause_constraint, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, - sym_qualified_type_identifier, - [222740] = 14, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [226929] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(2020), 1, + ACTIONS(9724), 1, + anon_sym_requires, + ACTIONS(9702), 2, + anon_sym_final, + anon_sym_override, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5924), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9700), 3, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(9851), 1, + anon_sym___asm, + ACTIONS(9689), 12, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(9855), 1, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [226967] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9960), 1, anon_sym_requires, - ACTIONS(9891), 1, - sym_identifier, - ACTIONS(9893), 1, - anon_sym_COLON_COLON, - STATE(2260), 1, - sym_template_type, - STATE(5404), 1, - sym_lambda_capture_specifier, - STATE(6612), 1, - sym__scope_resolution, - ACTIONS(9863), 2, - sym_true, - sym_false, - STATE(8601), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(1612), 8, - sym__class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym__requirement_clause_constraint, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, - sym_qualified_type_identifier, - [222792] = 5, + ACTIONS(9957), 2, + anon_sym_final, + anon_sym_override, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5874), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9947), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9945), 12, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [227005] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5472), 1, + ACTIONS(9966), 1, + anon_sym_requires, + ACTIONS(9963), 2, + anon_sym_final, + anon_sym_override, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5912), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9951), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9949), 12, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [227043] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + STATE(4831), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9814), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9812), 16, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [227077] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7283), 1, + anon_sym___attribute__, + ACTIONS(7285), 1, + anon_sym___attribute, + ACTIONS(7918), 1, anon_sym_LBRACK_LBRACK, - STATE(4776), 2, + ACTIONS(9818), 2, + anon_sym_LBRACK, + anon_sym___asm, + STATE(4446), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5835), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(9801), 3, + ACTIONS(9816), 13, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [227117] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7283), 1, + anon_sym___attribute__, + ACTIONS(7285), 1, anon_sym___attribute, + ACTIONS(7918), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9814), 2, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9799), 16, - anon_sym_DOT_DOT_DOT, + STATE(4446), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5806), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9812), 13, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACE, anon_sym_EQ, anon_sym_asm, @@ -478230,39 +485420,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_try, anon_sym_requires, - [222826] = 14, + [227157] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, ACTIONS(2020), 1, anon_sym_LBRACK, - ACTIONS(3907), 1, - anon_sym_COLON_COLON, - ACTIONS(9615), 1, - sym_identifier, - ACTIONS(9851), 1, + ACTIONS(9905), 1, anon_sym_LPAREN2, - ACTIONS(9855), 1, + ACTIONS(9909), 1, anon_sym_requires, - STATE(1893), 1, + ACTIONS(9969), 1, + sym_identifier, + ACTIONS(9971), 1, + anon_sym_COLON_COLON, + STATE(2311), 1, sym_template_type, - STATE(5396), 1, + STATE(5474), 1, sym_lambda_capture_specifier, - STATE(6599), 1, + STATE(6705), 1, sym__scope_resolution, - ACTIONS(9939), 2, + ACTIONS(9973), 2, sym_true, sym_false, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6234), 8, + STATE(2325), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -478271,204 +485460,36 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [222878] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(8284), 1, - anon_sym_STAR, - ACTIONS(9941), 1, - sym_identifier, - ACTIONS(9943), 1, - anon_sym_TILDE, - ACTIONS(9945), 1, - anon_sym_COLON_COLON, - ACTIONS(9947), 1, - anon_sym_template, - ACTIONS(9949), 1, - anon_sym_operator, - STATE(1906), 1, - sym_template_type, - STATE(1908), 1, - sym_dependent_type_identifier, - STATE(1909), 1, - sym_qualified_type_identifier, - STATE(2776), 1, - sym_operator_name, - STATE(2782), 1, - sym_destructor_name, - STATE(2786), 1, - sym_dependent_identifier, - STATE(2822), 1, - sym_qualified_identifier, - STATE(2836), 1, - sym_pointer_type_declarator, - STATE(2838), 1, - sym_template_function, - STATE(5460), 1, - sym__scope_resolution, - STATE(6940), 1, - sym_operator_cast, - STATE(6969), 1, - sym_qualified_operator_cast_identifier, - STATE(7984), 1, - sym_ms_based_modifier, - STATE(8601), 1, - sym_decltype, - [222948] = 14, + [227209] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, ACTIONS(2020), 1, anon_sym_LBRACK, - ACTIONS(9440), 1, - anon_sym_COLON_COLON, - ACTIONS(9632), 1, - sym_identifier, - ACTIONS(9744), 1, - anon_sym_requires, - ACTIONS(9951), 1, - anon_sym_LPAREN2, - STATE(2669), 1, - sym_template_type, - STATE(5395), 1, - sym_lambda_capture_specifier, - STATE(6620), 1, - sym__scope_resolution, - ACTIONS(9953), 2, - sym_true, - sym_false, - STATE(8601), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(3642), 8, - sym__class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym__requirement_clause_constraint, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, - sym_qualified_type_identifier, - [223000] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(141), 1, - anon_sym_operator, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(2979), 1, - anon_sym_TILDE, - ACTIONS(3971), 1, + ACTIONS(8028), 1, anon_sym_COLON_COLON, - ACTIONS(8300), 1, - anon_sym_STAR, - ACTIONS(9955), 1, + ACTIONS(9668), 1, sym_identifier, - ACTIONS(9957), 1, - anon_sym_template, - STATE(1906), 1, - sym_template_type, - STATE(1908), 1, - sym_dependent_type_identifier, - STATE(1909), 1, - sym_qualified_type_identifier, - STATE(2776), 1, - sym_operator_name, - STATE(2782), 1, - sym_destructor_name, - STATE(2786), 1, - sym_dependent_identifier, - STATE(2822), 1, - sym_qualified_identifier, - STATE(2836), 1, - sym_pointer_type_declarator, - STATE(2838), 1, - sym_template_function, - STATE(5462), 1, - sym__scope_resolution, - STATE(6940), 1, - sym_operator_cast, - STATE(6969), 1, - sym_qualified_operator_cast_identifier, - STATE(8344), 1, - sym_ms_based_modifier, - STATE(8601), 1, - sym_decltype, - [223070] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5012), 1, + ACTIONS(9867), 1, anon_sym_LPAREN2, - ACTIONS(8119), 1, - anon_sym_STAR, - ACTIONS(8121), 1, - anon_sym_AMP_AMP, - ACTIONS(8123), 1, - anon_sym_AMP, - ACTIONS(8131), 1, - anon_sym_LBRACK, - ACTIONS(8308), 1, - anon_sym___attribute, - STATE(3088), 1, - sym_parameter_list, - STATE(6087), 1, - sym__function_declarator_seq, - STATE(6291), 1, - sym__abstract_declarator, - STATE(6092), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8306), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [223118] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(2020), 1, - anon_sym_LBRACK, - ACTIONS(9734), 1, + ACTIONS(9871), 1, anon_sym_requires, - ACTIONS(9857), 1, - anon_sym_LPAREN2, - ACTIONS(9959), 1, - sym_identifier, - ACTIONS(9961), 1, - anon_sym_COLON_COLON, - STATE(1816), 1, + STATE(1922), 1, sym_template_type, - STATE(5399), 1, + STATE(5472), 1, sym_lambda_capture_specifier, - STATE(6618), 1, + STATE(6719), 1, sym__scope_resolution, - ACTIONS(9963), 2, + ACTIONS(9975), 2, sym_true, sym_false, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6019), 8, + STATE(5672), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -478477,36 +485498,36 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [223170] = 14, + [227261] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, ACTIONS(2020), 1, anon_sym_LBRACK, - ACTIONS(9734), 1, + ACTIONS(9498), 1, + anon_sym_COLON_COLON, + ACTIONS(9670), 1, + sym_identifier, + ACTIONS(9762), 1, anon_sym_requires, - ACTIONS(9857), 1, + ACTIONS(9977), 1, anon_sym_LPAREN2, - ACTIONS(9959), 1, - sym_identifier, - ACTIONS(9961), 1, - anon_sym_COLON_COLON, - STATE(1816), 1, + STATE(2684), 1, sym_template_type, - STATE(5399), 1, + STATE(5495), 1, sym_lambda_capture_specifier, - STATE(6618), 1, + STATE(6728), 1, sym__scope_resolution, - ACTIONS(9859), 2, + ACTIONS(9979), 2, sym_true, sym_false, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(3214), 8, + STATE(3697), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -478515,36 +485536,36 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [223222] = 14, + [227313] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, ACTIONS(2020), 1, anon_sym_LBRACK, - ACTIONS(9528), 1, + ACTIONS(9498), 1, anon_sym_COLON_COLON, - ACTIONS(9617), 1, + ACTIONS(9670), 1, sym_identifier, - ACTIONS(9760), 1, + ACTIONS(9762), 1, anon_sym_requires, - ACTIONS(9871), 1, + ACTIONS(9977), 1, anon_sym_LPAREN2, - STATE(2830), 1, + STATE(2684), 1, sym_template_type, - STATE(5415), 1, + STATE(5495), 1, sym_lambda_capture_specifier, - STATE(6578), 1, + STATE(6728), 1, sym__scope_resolution, - ACTIONS(9965), 2, + ACTIONS(9981), 2, sym_true, sym_false, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(3838), 8, + STATE(3671), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -478553,36 +485574,36 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [223274] = 14, + [227365] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, ACTIONS(2020), 1, anon_sym_LBRACK, - ACTIONS(9440), 1, + ACTIONS(9580), 1, anon_sym_COLON_COLON, - ACTIONS(9632), 1, + ACTIONS(9656), 1, sym_identifier, - ACTIONS(9744), 1, + ACTIONS(9754), 1, anon_sym_requires, - ACTIONS(9951), 1, + ACTIONS(9983), 1, anon_sym_LPAREN2, - STATE(2669), 1, + STATE(2673), 1, sym_template_type, - STATE(5395), 1, + STATE(5494), 1, sym_lambda_capture_specifier, - STATE(6620), 1, + STATE(6713), 1, sym__scope_resolution, - ACTIONS(9967), 2, + ACTIONS(9985), 2, sym_true, sym_false, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(3674), 8, + STATE(3574), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -478591,29 +485612,54 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [223326] = 8, + [227417] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7083), 1, - anon_sym___attribute__, - ACTIONS(7085), 1, - anon_sym___attribute, - ACTIONS(7838), 1, + ACTIONS(9989), 1, + anon_sym_LPAREN2, + STATE(5789), 1, + sym_preproc_argument_list, + ACTIONS(9991), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9987), 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, + [227451] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9797), 2, - anon_sym_LBRACK, - anon_sym___asm, - STATE(4337), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5747), 2, + STATE(4831), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(9795), 13, + ACTIONS(9995), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9993), 16, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_COLON, + anon_sym___attribute__, anon_sym_LBRACE, anon_sym_EQ, anon_sym_asm, @@ -478621,38 +485667,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_try, anon_sym_requires, - [223366] = 14, + [227485] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, ACTIONS(2020), 1, anon_sym_LBRACK, - ACTIONS(8049), 1, + ACTIONS(9580), 1, anon_sym_COLON_COLON, - ACTIONS(9634), 1, + ACTIONS(9656), 1, sym_identifier, - ACTIONS(9752), 1, + ACTIONS(9754), 1, anon_sym_requires, - ACTIONS(9875), 1, + ACTIONS(9983), 1, anon_sym_LPAREN2, - STATE(2567), 1, + STATE(2673), 1, sym_template_type, - STATE(5401), 1, + STATE(5494), 1, sym_lambda_capture_specifier, - STATE(6579), 1, + STATE(6713), 1, sym__scope_resolution, - ACTIONS(9969), 2, + ACTIONS(9997), 2, sym_true, sym_false, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6230), 8, + STATE(3467), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -478661,100 +485708,36 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [223418] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7842), 1, - anon_sym_LPAREN2, - ACTIONS(7856), 1, - anon_sym_LBRACK, - ACTIONS(8107), 1, - anon_sym_STAR, - ACTIONS(8109), 1, - anon_sym_AMP_AMP, - ACTIONS(8111), 1, - anon_sym_AMP, - STATE(2890), 1, - sym_parameter_list, - STATE(5792), 1, - sym__function_declarator_seq, - STATE(6347), 1, - sym__abstract_declarator, - STATE(5804), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8306), 9, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [223464] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - STATE(4776), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(9973), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9971), 16, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [223498] = 14, + [227537] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, ACTIONS(2020), 1, anon_sym_LBRACK, - ACTIONS(9734), 1, + ACTIONS(9437), 1, + anon_sym_COLON_COLON, + ACTIONS(9654), 1, + sym_identifier, + ACTIONS(9770), 1, anon_sym_requires, - ACTIONS(9857), 1, + ACTIONS(9881), 1, anon_sym_LPAREN2, - ACTIONS(9959), 1, - sym_identifier, - ACTIONS(9961), 1, - anon_sym_COLON_COLON, - STATE(1816), 1, + STATE(1784), 1, sym_template_type, - STATE(5399), 1, + STATE(5479), 1, sym_lambda_capture_specifier, - STATE(6618), 1, + STATE(6699), 1, sym__scope_resolution, - ACTIONS(9975), 2, + ACTIONS(9999), 2, sym_true, sym_false, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6020), 8, + STATE(4252), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -478763,36 +485746,36 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [223550] = 14, + [227589] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, ACTIONS(2020), 1, anon_sym_LBRACK, - ACTIONS(9424), 1, - anon_sym_COLON_COLON, - ACTIONS(9642), 1, - sym_identifier, - ACTIONS(9734), 1, - anon_sym_requires, - ACTIONS(9857), 1, + ACTIONS(9905), 1, anon_sym_LPAREN2, - STATE(1816), 1, + ACTIONS(9909), 1, + anon_sym_requires, + ACTIONS(9969), 1, + sym_identifier, + ACTIONS(9971), 1, + anon_sym_COLON_COLON, + STATE(2311), 1, sym_template_type, - STATE(5399), 1, + STATE(5474), 1, sym_lambda_capture_specifier, - STATE(6626), 1, + STATE(6705), 1, sym__scope_resolution, - ACTIONS(9977), 2, + ACTIONS(10001), 2, sym_true, sym_false, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(4174), 8, + STATE(2271), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -478801,36 +485784,36 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [223602] = 14, + [227641] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, ACTIONS(2020), 1, anon_sym_LBRACK, - ACTIONS(9424), 1, - anon_sym_COLON_COLON, - ACTIONS(9642), 1, - sym_identifier, - ACTIONS(9734), 1, - anon_sym_requires, - ACTIONS(9857), 1, + ACTIONS(9905), 1, anon_sym_LPAREN2, - STATE(1816), 1, + ACTIONS(9909), 1, + anon_sym_requires, + ACTIONS(9969), 1, + sym_identifier, + ACTIONS(9971), 1, + anon_sym_COLON_COLON, + STATE(2311), 1, sym_template_type, - STATE(5399), 1, + STATE(5474), 1, sym_lambda_capture_specifier, - STATE(6626), 1, + STATE(6705), 1, sym__scope_resolution, - ACTIONS(9859), 2, + ACTIONS(9921), 2, sym_true, sym_false, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(3214), 8, + STATE(1637), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -478839,36 +485822,83 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [223654] = 14, + [227693] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(141), 1, + anon_sym_operator, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(2999), 1, + anon_sym_TILDE, + ACTIONS(3979), 1, + anon_sym_COLON_COLON, + ACTIONS(8338), 1, + anon_sym_STAR, + ACTIONS(10003), 1, + sym_identifier, + ACTIONS(10005), 1, + anon_sym_template, + STATE(1919), 1, + sym_template_type, + STATE(1930), 1, + sym_dependent_type_identifier, + STATE(1932), 1, + sym_qualified_type_identifier, + STATE(2617), 1, + sym_template_function, + STATE(2653), 1, + sym_destructor_name, + STATE(2658), 1, + sym_dependent_identifier, + STATE(2662), 1, + sym_qualified_identifier, + STATE(2665), 1, + sym_operator_name, + STATE(2672), 1, + sym_pointer_type_declarator, + STATE(5553), 1, + sym__scope_resolution, + STATE(7057), 1, + sym_operator_cast, + STATE(7073), 1, + sym_qualified_operator_cast_identifier, + STATE(8477), 1, + sym_ms_based_modifier, + STATE(8569), 1, + sym_decltype, + [227763] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, ACTIONS(2020), 1, anon_sym_LBRACK, - ACTIONS(9406), 1, + ACTIONS(9437), 1, anon_sym_COLON_COLON, - ACTIONS(9644), 1, + ACTIONS(9654), 1, sym_identifier, - ACTIONS(9752), 1, + ACTIONS(9770), 1, anon_sym_requires, - ACTIONS(9875), 1, + ACTIONS(9881), 1, anon_sym_LPAREN2, - STATE(2567), 1, + STATE(1784), 1, sym_template_type, - STATE(5401), 1, + STATE(5479), 1, sym_lambda_capture_specifier, - STATE(6594), 1, + STATE(6699), 1, sym__scope_resolution, - ACTIONS(9979), 2, + ACTIONS(9889), 2, sym_true, sym_false, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(4795), 8, + STATE(3303), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -478877,36 +485907,36 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [223706] = 14, + [227815] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, ACTIONS(2020), 1, anon_sym_LBRACK, - ACTIONS(8081), 1, + ACTIONS(8028), 1, anon_sym_COLON_COLON, - ACTIONS(9615), 1, + ACTIONS(9668), 1, sym_identifier, - ACTIONS(9881), 1, + ACTIONS(9867), 1, anon_sym_LPAREN2, - ACTIONS(9885), 1, + ACTIONS(9871), 1, anon_sym_requires, - STATE(1893), 1, + STATE(1922), 1, sym_template_type, - STATE(5400), 1, + STATE(5472), 1, sym_lambda_capture_specifier, - STATE(6615), 1, + STATE(6719), 1, sym__scope_resolution, - ACTIONS(9981), 2, + ACTIONS(10007), 2, sym_true, sym_false, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6487), 8, + STATE(5638), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -478915,36 +485945,36 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [223758] = 14, + [227867] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, ACTIONS(2020), 1, anon_sym_LBRACK, - ACTIONS(9578), 1, + ACTIONS(3915), 1, anon_sym_COLON_COLON, - ACTIONS(9638), 1, + ACTIONS(9647), 1, sym_identifier, - ACTIONS(9734), 1, + ACTIONS(9770), 1, anon_sym_requires, - ACTIONS(9857), 1, + ACTIONS(9881), 1, anon_sym_LPAREN2, - STATE(3681), 1, + STATE(1922), 1, sym_template_type, - STATE(5399), 1, + STATE(5477), 1, sym_lambda_capture_specifier, - STATE(6634), 1, + STATE(6697), 1, sym__scope_resolution, - ACTIONS(9983), 2, + ACTIONS(10009), 2, sym_true, sym_false, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(4214), 8, + STATE(7034), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -478953,7 +485983,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [223810] = 23, + [227919] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -478962,105 +485992,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2979), 1, + ACTIONS(2999), 1, anon_sym_TILDE, - ACTIONS(2993), 1, + ACTIONS(3013), 1, anon_sym_COLON_COLON, - ACTIONS(8300), 1, + ACTIONS(8338), 1, anon_sym_STAR, - ACTIONS(9985), 1, + ACTIONS(10011), 1, sym_identifier, - ACTIONS(9987), 1, + ACTIONS(10013), 1, anon_sym_template, - STATE(1906), 1, + STATE(1919), 1, sym_template_type, - STATE(1908), 1, + STATE(1930), 1, sym_dependent_type_identifier, - STATE(1909), 1, + STATE(1932), 1, sym_qualified_type_identifier, - STATE(2776), 1, - sym_operator_name, - STATE(2782), 1, + STATE(2617), 1, + sym_template_function, + STATE(2653), 1, sym_destructor_name, - STATE(2786), 1, + STATE(2658), 1, sym_dependent_identifier, - STATE(2822), 1, + STATE(2662), 1, sym_qualified_identifier, - STATE(2836), 1, + STATE(2665), 1, + sym_operator_name, + STATE(2672), 1, sym_pointer_type_declarator, - STATE(2838), 1, - sym_template_function, - STATE(5478), 1, + STATE(5557), 1, sym__scope_resolution, - STATE(6940), 1, + STATE(7057), 1, sym_operator_cast, - STATE(6969), 1, + STATE(7073), 1, sym_qualified_operator_cast_identifier, - STATE(8344), 1, + STATE(8477), 1, sym_ms_based_modifier, - STATE(8601), 1, + STATE(8569), 1, sym_decltype, - [223880] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7301), 1, - anon_sym_requires, - ACTIONS(6020), 2, - anon_sym_final, - anon_sym_override, - STATE(5606), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5877), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9193), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9182), 12, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [223918] = 14, + [227989] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, ACTIONS(2020), 1, anon_sym_LBRACK, - ACTIONS(8021), 1, + ACTIONS(8000), 1, anon_sym_COLON_COLON, - ACTIONS(9619), 1, + ACTIONS(9672), 1, sym_identifier, - ACTIONS(9903), 1, + ACTIONS(9873), 1, anon_sym_LPAREN2, - ACTIONS(9907), 1, + ACTIONS(9877), 1, anon_sym_requires, - STATE(4376), 1, + STATE(4461), 1, sym_template_type, - STATE(5411), 1, + STATE(5482), 1, sym_lambda_capture_specifier, - STATE(6632), 1, + STATE(6731), 1, sym__scope_resolution, - ACTIONS(9989), 2, + ACTIONS(10015), 2, sym_true, sym_false, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5885), 8, + STATE(6020), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -479069,36 +486068,36 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [223970] = 14, + [228041] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, ACTIONS(2020), 1, anon_sym_LBRACK, - ACTIONS(8081), 1, + ACTIONS(8000), 1, anon_sym_COLON_COLON, - ACTIONS(9615), 1, + ACTIONS(9672), 1, sym_identifier, - ACTIONS(9881), 1, + ACTIONS(9873), 1, anon_sym_LPAREN2, - ACTIONS(9885), 1, + ACTIONS(9877), 1, anon_sym_requires, - STATE(1893), 1, + STATE(4461), 1, sym_template_type, - STATE(5400), 1, + STATE(5482), 1, sym_lambda_capture_specifier, - STATE(6615), 1, + STATE(6731), 1, sym__scope_resolution, - ACTIONS(9889), 2, + ACTIONS(10017), 2, sym_true, sym_false, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5579), 8, + STATE(5986), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -479107,36 +486106,36 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [224022] = 14, + [228093] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, ACTIONS(2020), 1, anon_sym_LBRACK, - ACTIONS(3907), 1, + ACTIONS(8022), 1, anon_sym_COLON_COLON, - ACTIONS(9615), 1, + ACTIONS(9662), 1, sym_identifier, - ACTIONS(9734), 1, + ACTIONS(9796), 1, anon_sym_requires, - ACTIONS(9857), 1, + ACTIONS(9891), 1, anon_sym_LPAREN2, - STATE(1893), 1, + STATE(2598), 1, sym_template_type, - STATE(5409), 1, + STATE(5489), 1, sym_lambda_capture_specifier, - STATE(6599), 1, + STATE(6738), 1, sym__scope_resolution, - ACTIONS(9991), 2, + ACTIONS(10019), 2, sym_true, sym_false, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6881), 8, + STATE(6385), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -479145,36 +486144,36 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [224074] = 14, + [228145] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, ACTIONS(2020), 1, anon_sym_LBRACK, - ACTIONS(9503), 1, + ACTIONS(8022), 1, anon_sym_COLON_COLON, - ACTIONS(9646), 1, + ACTIONS(9662), 1, sym_identifier, - ACTIONS(9768), 1, + ACTIONS(9796), 1, anon_sym_requires, - ACTIONS(9935), 1, + ACTIONS(9891), 1, anon_sym_LPAREN2, - STATE(2630), 1, + STATE(2598), 1, sym_template_type, - STATE(5414), 1, + STATE(5489), 1, sym_lambda_capture_specifier, - STATE(6633), 1, + STATE(6738), 1, sym__scope_resolution, - ACTIONS(9993), 2, + ACTIONS(9895), 2, sym_true, sym_false, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - STATE(3524), 8, + STATE(4287), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -479183,261 +486182,132 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [224126] = 18, + [228197] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6018), 1, - anon_sym_LBRACE, - ACTIONS(6540), 1, - anon_sym_COLON, - ACTIONS(9424), 1, + ACTIONS(2020), 1, + anon_sym_LBRACK, + ACTIONS(8060), 1, anon_sym_COLON_COLON, - ACTIONS(9642), 1, + ACTIONS(9668), 1, sym_identifier, - STATE(1816), 1, + ACTIONS(9905), 1, + anon_sym_LPAREN2, + ACTIONS(9909), 1, + anon_sym_requires, + STATE(1922), 1, sym_template_type, - STATE(1880), 1, - sym__class_declaration_item, - STATE(2336), 1, - sym_field_declaration_list, - STATE(6626), 1, + STATE(5480), 1, + sym_lambda_capture_specifier, + STATE(6729), 1, sym__scope_resolution, - STATE(6997), 1, - sym_virtual_specifier, - STATE(7837), 1, - sym_base_class_clause, - ACTIONS(5503), 2, - anon_sym_final, - anon_sym_override, - STATE(2107), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4776), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + ACTIONS(10021), 2, + sym_true, + sym_false, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - [224185] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6018), 1, - anon_sym_LBRACE, - ACTIONS(6540), 1, - anon_sym_COLON, - ACTIONS(7959), 1, - anon_sym_COLON_COLON, - ACTIONS(9627), 1, - sym_identifier, - STATE(1816), 1, - sym_template_type, - STATE(1883), 1, - sym__class_declaration_item, - STATE(2336), 1, - sym_field_declaration_list, - STATE(6587), 1, - sym__scope_resolution, - STATE(6997), 1, - sym_virtual_specifier, - STATE(7837), 1, - sym_base_class_clause, - ACTIONS(5503), 2, - anon_sym_final, - anon_sym_override, - STATE(2107), 2, + STATE(5534), 8, sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, sym_qualified_type_identifier, - STATE(5552), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, - sym_decltype, - sym_dependent_type_identifier, - [224244] = 19, + [228249] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(113), 1, - anon_sym___asm, - ACTIONS(1932), 1, - anon_sym_LBRACE, - ACTIONS(9995), 1, + ACTIONS(10023), 1, anon_sym_COMMA, - ACTIONS(9997), 1, - anon_sym_LPAREN2, - ACTIONS(9999), 1, - anon_sym_SEMI, - ACTIONS(10001), 1, - anon_sym_LBRACK, - ACTIONS(10003), 1, - anon_sym_EQ, - ACTIONS(10007), 1, - anon_sym_try, - STATE(605), 1, - sym_compound_statement, - STATE(619), 1, - sym_try_statement, - STATE(2962), 1, - sym_parameter_list, - STATE(5979), 1, - sym__function_declarator_seq, - STATE(7380), 1, - sym_gnu_asm_expression, - STATE(7381), 1, - aux_sym_declaration_repeat1, - ACTIONS(10005), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(5949), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7680), 2, - sym_argument_list, - sym_initializer_list, - [224305] = 18, + ACTIONS(10025), 1, + anon_sym_RPAREN, + ACTIONS(10031), 1, + anon_sym_SLASH, + ACTIONS(10033), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10035), 1, + anon_sym_AMP_AMP, + ACTIONS(10037), 1, + anon_sym_PIPE, + ACTIONS(10039), 1, + anon_sym_CARET, + ACTIONS(10041), 1, + anon_sym_AMP, + STATE(7487), 1, + aux_sym_preproc_argument_list_repeat1, + ACTIONS(10027), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10029), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(10043), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10045), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10047), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(10049), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [228304] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6362), 1, - anon_sym_LBRACE, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(8049), 1, - anon_sym_COLON_COLON, - ACTIONS(9634), 1, - sym_identifier, - STATE(2567), 1, - sym_template_type, - STATE(2618), 1, - sym_field_declaration_list, - STATE(2702), 1, - sym__class_declaration_item, - STATE(6579), 1, - sym__scope_resolution, - STATE(6946), 1, - sym_virtual_specifier, - STATE(7567), 1, - sym_base_class_clause, - ACTIONS(5503), 2, - anon_sym_final, - anon_sym_override, - STATE(2328), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4776), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, - sym_decltype, - sym_dependent_type_identifier, - [224364] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6362), 1, + ACTIONS(6530), 1, anon_sym_LBRACE, - ACTIONS(6540), 1, - anon_sym_COLON, - ACTIONS(8049), 1, + ACTIONS(8074), 1, anon_sym_COLON_COLON, - ACTIONS(9634), 1, + ACTIONS(9647), 1, sym_identifier, - STATE(2567), 1, + STATE(1922), 1, sym_template_type, - STATE(2618), 1, - sym_field_declaration_list, - STATE(2706), 1, + STATE(2515), 1, sym__class_declaration_item, - STATE(6579), 1, - sym__scope_resolution, - STATE(6946), 1, - sym_virtual_specifier, - STATE(7567), 1, - sym_base_class_clause, - ACTIONS(5503), 2, - anon_sym_final, - anon_sym_override, - STATE(2328), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5489), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, - sym_decltype, - sym_dependent_type_identifier, - [224423] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6362), 1, - anon_sym_LBRACE, - ACTIONS(6540), 1, - anon_sym_COLON, - ACTIONS(8049), 1, - anon_sym_COLON_COLON, - ACTIONS(9634), 1, - sym_identifier, - STATE(2567), 1, - sym_template_type, - STATE(2618), 1, + STATE(3663), 1, sym_field_declaration_list, - STATE(2650), 1, - sym__class_declaration_item, - STATE(6579), 1, + STATE(6743), 1, sym__scope_resolution, - STATE(6946), 1, + STATE(7228), 1, sym_virtual_specifier, - STATE(7567), 1, + STATE(8009), 1, sym_base_class_clause, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2328), 2, + STATE(3041), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4776), 2, + STATE(4831), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - [224482] = 3, + [228363] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5162), 3, + ACTIONS(5156), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(5164), 18, + ACTIONS(5158), 18, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -479456,44 +486326,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [224511] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7079), 1, - anon_sym_requires, - ACTIONS(6020), 2, - anon_sym_final, - anon_sym_override, - STATE(5606), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5846), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9845), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9843), 11, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_try, - [224548] = 3, + [228392] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5132), 3, + ACTIONS(5160), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(5134), 18, + ACTIONS(5162), 18, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -479512,43 +486352,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [224577] = 3, + [228421] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5140), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(5142), 18, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, + ACTIONS(7079), 1, + anon_sym_requires, + ACTIONS(6037), 2, anon_sym_final, anon_sym_override, - anon_sym_try, - anon_sym_requires, - [224606] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10011), 3, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5924), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9700), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(10009), 18, - anon_sym_DOT_DOT_DOT, + ACTIONS(9689), 11, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, @@ -479558,1182 +486381,919 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [224635] = 18, + [228458] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(8081), 1, - anon_sym_COLON_COLON, - ACTIONS(8615), 1, + ACTIONS(6530), 1, anon_sym_LBRACE, - ACTIONS(9615), 1, - sym_identifier, - STATE(1893), 1, - sym_template_type, - STATE(4423), 1, - sym_field_declaration_list, - STATE(4731), 1, - sym__class_declaration_item, - STATE(6615), 1, - sym__scope_resolution, - STATE(6965), 1, - sym_virtual_specifier, - STATE(7777), 1, - sym_base_class_clause, - ACTIONS(5503), 2, - anon_sym_final, - anon_sym_override, - STATE(4218), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5504), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, - sym_decltype, - sym_dependent_type_identifier, - [224694] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6540), 1, - anon_sym_COLON, - ACTIONS(8081), 1, + ACTIONS(8074), 1, anon_sym_COLON_COLON, - ACTIONS(8615), 1, - anon_sym_LBRACE, - ACTIONS(9615), 1, + ACTIONS(9647), 1, sym_identifier, - STATE(1893), 1, + STATE(1922), 1, sym_template_type, - STATE(4423), 1, - sym_field_declaration_list, - STATE(4746), 1, + STATE(2522), 1, sym__class_declaration_item, - STATE(6615), 1, + STATE(3663), 1, + sym_field_declaration_list, + STATE(6743), 1, sym__scope_resolution, - STATE(6965), 1, + STATE(7228), 1, sym_virtual_specifier, - STATE(7777), 1, + STATE(8009), 1, sym_base_class_clause, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(4218), 2, + STATE(3041), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4776), 2, + STATE(5626), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - [224753] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(113), 1, - anon_sym___asm, - ACTIONS(9790), 1, - anon_sym_try, - ACTIONS(9995), 1, - anon_sym_COMMA, - ACTIONS(9997), 1, - anon_sym_LPAREN2, - ACTIONS(10001), 1, - anon_sym_LBRACK, - ACTIONS(10003), 1, - anon_sym_EQ, - ACTIONS(10013), 1, - anon_sym_SEMI, - ACTIONS(10015), 1, - anon_sym_LBRACE, - STATE(1821), 1, - sym_compound_statement, - STATE(1822), 1, - sym_try_statement, - STATE(2962), 1, - sym_parameter_list, - STATE(5979), 1, - sym__function_declarator_seq, - STATE(7488), 1, - sym_gnu_asm_expression, - STATE(7489), 1, - aux_sym_declaration_repeat1, - ACTIONS(10005), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(5949), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7680), 2, - sym_argument_list, - sym_initializer_list, - [224814] = 15, + [228517] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1852), 1, + ACTIONS(141), 1, anon_sym_operator, - ACTIONS(8427), 1, - sym_identifier, - ACTIONS(8429), 1, - anon_sym_LPAREN2, - ACTIONS(8431), 1, - anon_sym_STAR, - ACTIONS(8433), 1, - anon_sym_AMP_AMP, - ACTIONS(8435), 1, - anon_sym_AMP, - ACTIONS(10017), 1, - anon_sym_SEMI, - STATE(5389), 1, - sym__field_declarator, - STATE(6299), 1, - sym_operator_name, - STATE(8041), 1, - sym_attribute_specifier, - STATE(8049), 1, - sym_ms_based_modifier, - ACTIONS(43), 2, - anon_sym___attribute__, - anon_sym___attribute, - STATE(6399), 7, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - sym_reference_field_declarator, - sym_template_method, - [224867] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1452), 1, - anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6540), 1, - anon_sym_COLON, - ACTIONS(6542), 1, - anon_sym_LBRACE, - ACTIONS(9613), 1, - sym_identifier, - ACTIONS(9625), 1, + ACTIONS(2999), 1, + anon_sym_TILDE, + ACTIONS(5491), 1, anon_sym_COLON_COLON, - STATE(1893), 1, - sym_template_type, - STATE(2511), 1, - sym__class_declaration_item, - STATE(2917), 1, - sym_field_declaration_list, - STATE(6604), 1, - sym__scope_resolution, - STATE(6995), 1, - sym_virtual_specifier, - STATE(7645), 1, - sym_base_class_clause, - ACTIONS(5503), 2, - anon_sym_final, - anon_sym_override, - STATE(3925), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5526), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, - sym_decltype, - sym_dependent_type_identifier, - [224926] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6540), 1, - anon_sym_COLON, - ACTIONS(6542), 1, - anon_sym_LBRACE, - ACTIONS(9613), 1, + ACTIONS(8338), 1, + anon_sym_STAR, + ACTIONS(10051), 1, sym_identifier, - ACTIONS(9625), 1, - anon_sym_COLON_COLON, - STATE(1893), 1, - sym_template_type, - STATE(2515), 1, - sym__class_declaration_item, - STATE(2917), 1, - sym_field_declaration_list, - STATE(6604), 1, - sym__scope_resolution, - STATE(6995), 1, - sym_virtual_specifier, - STATE(7645), 1, - sym_base_class_clause, - ACTIONS(5503), 2, - anon_sym_final, - anon_sym_override, - STATE(3925), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4776), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, - sym_decltype, - sym_dependent_type_identifier, - [224985] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1452), 1, + ACTIONS(10053), 1, anon_sym_template, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6362), 1, - anon_sym_LBRACE, - ACTIONS(6540), 1, - anon_sym_COLON, - ACTIONS(8049), 1, - anon_sym_COLON_COLON, - ACTIONS(9634), 1, - sym_identifier, - STATE(2567), 1, - sym_template_type, - STATE(2618), 1, - sym_field_declaration_list, - STATE(2684), 1, - sym__class_declaration_item, - STATE(6579), 1, + STATE(2617), 1, + sym_template_function, + STATE(2653), 1, + sym_destructor_name, + STATE(2658), 1, + sym_dependent_identifier, + STATE(2662), 1, + sym_qualified_identifier, + STATE(2665), 1, + sym_operator_name, + STATE(2672), 1, + sym_pointer_type_declarator, + STATE(5569), 1, sym__scope_resolution, - STATE(6946), 1, - sym_virtual_specifier, - STATE(7567), 1, - sym_base_class_clause, - ACTIONS(5503), 2, - anon_sym_final, - anon_sym_override, - STATE(2328), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5487), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(7057), 1, + sym_operator_cast, + STATE(7073), 1, + sym_qualified_operator_cast_identifier, + STATE(8477), 1, + sym_ms_based_modifier, + STATE(8569), 3, sym_decltype, - sym_dependent_type_identifier, - [225044] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(113), 1, - anon_sym___asm, - ACTIONS(9995), 1, - anon_sym_COMMA, - ACTIONS(9997), 1, - anon_sym_LPAREN2, - ACTIONS(10001), 1, - anon_sym_LBRACK, - ACTIONS(10003), 1, - anon_sym_EQ, - ACTIONS(10019), 1, - anon_sym_SEMI, - ACTIONS(10021), 1, - anon_sym_LBRACE, - ACTIONS(10023), 1, - anon_sym_try, - STATE(306), 1, - sym_compound_statement, - STATE(307), 1, - sym_try_statement, - STATE(2962), 1, - sym_parameter_list, - STATE(5979), 1, - sym__function_declarator_seq, - STATE(7260), 1, - sym_gnu_asm_expression, - STATE(7262), 1, - aux_sym_declaration_repeat1, - ACTIONS(10005), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(5949), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7680), 2, - sym_argument_list, - sym_initializer_list, - [225105] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5184), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(5186), 18, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [225134] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6540), 1, - anon_sym_COLON, - ACTIONS(8081), 1, - anon_sym_COLON_COLON, - ACTIONS(8615), 1, - anon_sym_LBRACE, - ACTIONS(9615), 1, - sym_identifier, - STATE(1893), 1, sym_template_type, - STATE(4423), 1, - sym_field_declaration_list, - STATE(4730), 1, - sym__class_declaration_item, - STATE(6615), 1, - sym__scope_resolution, - STATE(6965), 1, - sym_virtual_specifier, - STATE(7777), 1, - sym_base_class_clause, - ACTIONS(5503), 2, - anon_sym_final, - anon_sym_override, - STATE(4218), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4776), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, - sym_decltype, sym_dependent_type_identifier, - [225193] = 18, + [228580] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6540), 1, - anon_sym_COLON, - ACTIONS(8081), 1, + ACTIONS(5028), 1, anon_sym_COLON_COLON, - ACTIONS(8615), 1, - anon_sym_LBRACE, - ACTIONS(9615), 1, - sym_identifier, - STATE(1893), 1, - sym_template_type, - STATE(4423), 1, - sym_field_declaration_list, - STATE(4743), 1, - sym__class_declaration_item, - STATE(6615), 1, - sym__scope_resolution, - STATE(6965), 1, - sym_virtual_specifier, - STATE(7777), 1, - sym_base_class_clause, - ACTIONS(5503), 2, - anon_sym_final, - anon_sym_override, - STATE(4218), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5507), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, - sym_decltype, - sym_dependent_type_identifier, - [225252] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7072), 1, - anon_sym_noexcept, - ACTIONS(7074), 1, - anon_sym_throw, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - ACTIONS(9813), 1, - anon_sym_DASH_GT, - ACTIONS(9819), 1, - anon_sym_LBRACE, - STATE(3656), 1, - sym_compound_statement, - STATE(5874), 1, - sym_parameter_list, - STATE(7725), 1, - sym_lambda_declarator, - STATE(8493), 1, - sym_trailing_return_type, - STATE(5866), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5969), 2, - sym_lambda_specifier, - aux_sym_lambda_declarator_repeat1, - STATE(6805), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9811), 4, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - [225305] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(8081), 1, - anon_sym_COLON_COLON, - ACTIONS(8615), 1, + ACTIONS(6530), 1, anon_sym_LBRACE, - ACTIONS(9615), 1, + ACTIONS(9643), 1, sym_identifier, - STATE(1893), 1, + STATE(1922), 1, sym_template_type, - STATE(4423), 1, - sym_field_declaration_list, - STATE(4606), 1, + STATE(2515), 1, sym__class_declaration_item, - STATE(6615), 1, + STATE(2962), 1, + sym_field_declaration_list, + STATE(6746), 1, sym__scope_resolution, - STATE(6965), 1, + STATE(7126), 1, sym_virtual_specifier, - STATE(7777), 1, + STATE(7712), 1, sym_base_class_clause, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(4218), 2, + STATE(2440), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4776), 2, + STATE(4831), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - [225364] = 18, + [228639] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5220), 1, + ACTIONS(5028), 1, anon_sym_COLON_COLON, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(6542), 1, + ACTIONS(6530), 1, anon_sym_LBRACE, - ACTIONS(9613), 1, + ACTIONS(9643), 1, sym_identifier, - STATE(1893), 1, + STATE(1922), 1, sym_template_type, - STATE(2489), 1, + STATE(2522), 1, sym__class_declaration_item, - STATE(2917), 1, + STATE(2962), 1, sym_field_declaration_list, - STATE(6627), 1, + STATE(6746), 1, sym__scope_resolution, - STATE(6995), 1, + STATE(7126), 1, sym_virtual_specifier, - STATE(7645), 1, + STATE(7712), 1, sym_base_class_clause, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2434), 2, + STATE(2440), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4776), 2, + STATE(5580), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - [225423] = 18, + [228698] = 5, + ACTIONS(9987), 1, + anon_sym_LF, + ACTIONS(10055), 1, + anon_sym_LPAREN2, + ACTIONS(10057), 1, + sym_comment, + STATE(5925), 1, + sym_preproc_argument_list, + ACTIONS(9991), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + [228731] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6362), 1, - anon_sym_LBRACE, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(9406), 1, + ACTIONS(7543), 1, + anon_sym_LBRACE, + ACTIONS(9412), 1, anon_sym_COLON_COLON, - ACTIONS(9644), 1, + ACTIONS(9674), 1, sym_identifier, - STATE(2567), 1, + STATE(3638), 1, sym_template_type, - STATE(2618), 1, + STATE(4009), 1, sym_field_declaration_list, - STATE(2684), 1, + STATE(4141), 1, sym__class_declaration_item, - STATE(6594), 1, + STATE(6732), 1, sym__scope_resolution, - STATE(6946), 1, + STATE(7061), 1, sym_virtual_specifier, - STATE(7567), 1, + STATE(7717), 1, sym_base_class_clause, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2328), 2, + STATE(3210), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5511), 2, + STATE(4831), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - [225482] = 18, + [228790] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5144), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(5146), 18, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(6362), 1, anon_sym_LBRACE, - ACTIONS(6540), 1, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [228819] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10061), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(10059), 18, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_COLON, - ACTIONS(9406), 1, - anon_sym_COLON_COLON, - ACTIONS(9644), 1, - sym_identifier, - STATE(2567), 1, - sym_template_type, - STATE(2618), 1, - sym_field_declaration_list, - STATE(2688), 1, - sym__class_declaration_item, - STATE(6594), 1, - sym__scope_resolution, - STATE(6946), 1, - sym_virtual_specifier, - STATE(7567), 1, - sym_base_class_clause, - ACTIONS(5503), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - STATE(2328), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4776), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, - sym_decltype, - sym_dependent_type_identifier, - [225541] = 18, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [228848] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5148), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(5150), 18, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(6362), 1, anon_sym_LBRACE, - ACTIONS(6540), 1, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [228877] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5152), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(5154), 18, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_COLON, - ACTIONS(9406), 1, - anon_sym_COLON_COLON, - ACTIONS(9644), 1, - sym_identifier, - STATE(2567), 1, - sym_template_type, - STATE(2618), 1, - sym_field_declaration_list, - STATE(2702), 1, - sym__class_declaration_item, - STATE(6594), 1, - sym__scope_resolution, - STATE(6946), 1, - sym_virtual_specifier, - STATE(7567), 1, - sym_base_class_clause, - ACTIONS(5503), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, anon_sym_final, anon_sym_override, - STATE(2328), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4776), 2, + anon_sym_try, + anon_sym_requires, + [228906] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(113), 1, + anon_sym___asm, + ACTIONS(9826), 1, + anon_sym_try, + ACTIONS(10063), 1, + anon_sym_COMMA, + ACTIONS(10065), 1, + anon_sym_LPAREN2, + ACTIONS(10067), 1, + anon_sym_SEMI, + ACTIONS(10069), 1, + anon_sym_LBRACE, + ACTIONS(10071), 1, + anon_sym_LBRACK, + ACTIONS(10073), 1, + anon_sym_EQ, + STATE(1995), 1, + sym_try_statement, + STATE(2210), 1, + sym_compound_statement, + STATE(2989), 1, + sym_parameter_list, + STATE(6203), 1, + sym__function_declarator_seq, + STATE(7603), 1, + sym_gnu_asm_expression, + STATE(7613), 1, + aux_sym_declaration_repeat1, + ACTIONS(10075), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6081), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, - sym_decltype, - sym_dependent_type_identifier, - [225600] = 18, + STATE(7980), 2, + sym_argument_list, + sym_initializer_list, + [228967] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6362), 1, - anon_sym_LBRACE, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(9406), 1, + ACTIONS(7543), 1, + anon_sym_LBRACE, + ACTIONS(9412), 1, anon_sym_COLON_COLON, - ACTIONS(9644), 1, + ACTIONS(9674), 1, sym_identifier, - STATE(2567), 1, + STATE(3638), 1, sym_template_type, - STATE(2618), 1, + STATE(4009), 1, sym_field_declaration_list, - STATE(2706), 1, + STATE(4153), 1, sym__class_declaration_item, - STATE(6594), 1, + STATE(6732), 1, sym__scope_resolution, - STATE(6946), 1, + STATE(7061), 1, sym_virtual_specifier, - STATE(7567), 1, + STATE(7717), 1, sym_base_class_clause, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2328), 2, + STATE(3210), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5513), 2, + STATE(5589), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - [225659] = 18, + [229026] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5028), 1, + anon_sym_COLON_COLON, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6362), 1, - anon_sym_LBRACE, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(9406), 1, - anon_sym_COLON_COLON, - ACTIONS(9644), 1, + ACTIONS(6530), 1, + anon_sym_LBRACE, + ACTIONS(9643), 1, sym_identifier, - STATE(2567), 1, + STATE(1922), 1, sym_template_type, - STATE(2618), 1, - sym_field_declaration_list, - STATE(2650), 1, + STATE(2531), 1, sym__class_declaration_item, - STATE(6594), 1, + STATE(2962), 1, + sym_field_declaration_list, + STATE(6746), 1, sym__scope_resolution, - STATE(6946), 1, + STATE(7126), 1, sym_virtual_specifier, - STATE(7567), 1, + STATE(7712), 1, sym_base_class_clause, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2328), 2, + STATE(2440), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4776), 2, + STATE(4831), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - [225718] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9360), 1, - anon_sym_requires, - ACTIONS(9357), 2, - anon_sym_final, - anon_sym_override, - STATE(5606), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5839), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9355), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9344), 11, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_try, - [225755] = 19, + [229085] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, ACTIONS(113), 1, anon_sym___asm, - ACTIONS(9782), 1, - anon_sym_try, - ACTIONS(9995), 1, + ACTIONS(10063), 1, anon_sym_COMMA, - ACTIONS(9997), 1, + ACTIONS(10065), 1, anon_sym_LPAREN2, - ACTIONS(10001), 1, + ACTIONS(10071), 1, anon_sym_LBRACK, - ACTIONS(10003), 1, + ACTIONS(10073), 1, anon_sym_EQ, - ACTIONS(10025), 1, + ACTIONS(10077), 1, anon_sym_SEMI, - ACTIONS(10027), 1, + ACTIONS(10079), 1, anon_sym_LBRACE, - STATE(2153), 1, + ACTIONS(10081), 1, + anon_sym_try, + STATE(311), 1, sym_compound_statement, - STATE(2154), 1, + STATE(312), 1, sym_try_statement, - STATE(2962), 1, + STATE(2989), 1, sym_parameter_list, - STATE(5979), 1, + STATE(6203), 1, sym__function_declarator_seq, - STATE(7541), 1, + STATE(7536), 1, sym_gnu_asm_expression, - STATE(7542), 1, + STATE(7537), 1, aux_sym_declaration_repeat1, - ACTIONS(10005), 2, + ACTIONS(10075), 2, anon_sym_asm, anon_sym___asm__, - STATE(5949), 2, + STATE(6081), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7680), 2, + STATE(7980), 2, sym_argument_list, sym_initializer_list, - [225816] = 18, + [229146] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5220), 1, - anon_sym_COLON_COLON, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(6542), 1, + ACTIONS(8074), 1, + anon_sym_COLON_COLON, + ACTIONS(8630), 1, anon_sym_LBRACE, - ACTIONS(9613), 1, + ACTIONS(9647), 1, sym_identifier, - STATE(1893), 1, + STATE(1922), 1, sym_template_type, - STATE(2492), 1, - sym__class_declaration_item, - STATE(2917), 1, + STATE(4635), 1, sym_field_declaration_list, - STATE(6627), 1, + STATE(4690), 1, + sym__class_declaration_item, + STATE(6743), 1, sym__scope_resolution, - STATE(6995), 1, + STATE(7213), 1, sym_virtual_specifier, - STATE(7645), 1, + STATE(7996), 1, sym_base_class_clause, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2434), 2, + STATE(4270), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5599), 2, + STATE(4831), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - [225875] = 15, + [229205] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5472), 1, + ACTIONS(10085), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(10083), 18, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [229234] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7079), 1, + anon_sym_requires, + ACTIONS(6037), 2, + anon_sym_final, + anon_sym_override, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5927), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9150), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9139), 11, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [229271] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7072), 1, + ACTIONS(7075), 1, anon_sym_noexcept, - ACTIONS(7074), 1, + ACTIONS(7077), 1, anon_sym_throw, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(9813), 1, + ACTIONS(9843), 1, anon_sym_DASH_GT, - ACTIONS(9829), 1, + ACTIONS(9849), 1, anon_sym_LBRACE, - STATE(1606), 1, + STATE(1629), 1, sym_compound_statement, - STATE(5874), 1, + STATE(5929), 1, sym_parameter_list, - STATE(7839), 1, + STATE(7997), 1, sym_lambda_declarator, - STATE(8493), 1, + STATE(8588), 1, sym_trailing_return_type, - STATE(5866), 2, + STATE(5946), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5969), 2, + STATE(6072), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(6805), 3, + STATE(6944), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9811), 4, + ACTIONS(9841), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [225928] = 18, + [229324] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6540), 1, - anon_sym_COLON, - ACTIONS(6793), 1, + ACTIONS(6035), 1, anon_sym_LBRACE, - ACTIONS(9528), 1, + ACTIONS(6528), 1, + anon_sym_COLON, + ACTIONS(9437), 1, anon_sym_COLON_COLON, - ACTIONS(9617), 1, + ACTIONS(9654), 1, sym_identifier, - STATE(2830), 1, + STATE(1784), 1, sym_template_type, - STATE(3107), 1, - sym_field_declaration_list, - STATE(3403), 1, + STATE(1907), 1, sym__class_declaration_item, - STATE(6578), 1, + STATE(2382), 1, + sym_field_declaration_list, + STATE(6699), 1, sym__scope_resolution, - STATE(7127), 1, + STATE(7084), 1, sym_virtual_specifier, - STATE(7665), 1, + STATE(7872), 1, sym_base_class_clause, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2592), 2, + STATE(2031), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5521), 2, + STATE(4831), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - [225987] = 18, + [229383] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(6793), 1, + ACTIONS(6795), 1, anon_sym_LBRACE, - ACTIONS(9528), 1, + ACTIONS(9459), 1, anon_sym_COLON_COLON, - ACTIONS(9617), 1, + ACTIONS(9666), 1, sym_identifier, - STATE(2830), 1, + STATE(2856), 1, sym_template_type, - STATE(3107), 1, + STATE(3013), 1, sym_field_declaration_list, - STATE(3536), 1, + STATE(3571), 1, sym__class_declaration_item, - STATE(6578), 1, + STATE(6708), 1, sym__scope_resolution, - STATE(7127), 1, + STATE(7182), 1, sym_virtual_specifier, - STATE(7665), 1, + STATE(7894), 1, sym_base_class_clause, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2592), 2, + STATE(2608), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4776), 2, + STATE(5590), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - [226046] = 5, + [229442] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(10029), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(10031), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(6253), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(6255), 14, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(6528), 1, + anon_sym_COLON, + ACTIONS(6795), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, + ACTIONS(9459), 1, + anon_sym_COLON_COLON, + ACTIONS(9666), 1, + sym_identifier, + STATE(2856), 1, + sym_template_type, + STATE(3013), 1, + sym_field_declaration_list, + STATE(3575), 1, + sym__class_declaration_item, + STATE(6708), 1, + sym__scope_resolution, + STATE(7182), 1, + sym_virtual_specifier, + STATE(7894), 1, + sym_base_class_clause, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - anon_sym_try, - anon_sym_requires, - [226079] = 18, + STATE(2608), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4831), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8569), 2, + sym_decltype, + sym_dependent_type_identifier, + [229501] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(6793), 1, + ACTIONS(7543), 1, anon_sym_LBRACE, - ACTIONS(9528), 1, + ACTIONS(9412), 1, anon_sym_COLON_COLON, - ACTIONS(9617), 1, + ACTIONS(9674), 1, sym_identifier, - STATE(2830), 1, + STATE(3638), 1, sym_template_type, - STATE(3107), 1, + STATE(4009), 1, sym_field_declaration_list, - STATE(3461), 1, + STATE(4157), 1, sym__class_declaration_item, - STATE(6578), 1, + STATE(6732), 1, sym__scope_resolution, - STATE(7127), 1, + STATE(7061), 1, sym_virtual_specifier, - STATE(7665), 1, + STATE(7717), 1, sym_base_class_clause, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2592), 2, + STATE(3210), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4776), 2, + STATE(4831), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - [226138] = 18, + [229560] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(6793), 1, + ACTIONS(6795), 1, anon_sym_LBRACE, - ACTIONS(9528), 1, + ACTIONS(9459), 1, anon_sym_COLON_COLON, - ACTIONS(9617), 1, + ACTIONS(9666), 1, sym_identifier, - STATE(2830), 1, + STATE(2856), 1, sym_template_type, - STATE(3107), 1, + STATE(3013), 1, sym_field_declaration_list, - STATE(3432), 1, + STATE(3468), 1, sym__class_declaration_item, - STATE(6578), 1, + STATE(6708), 1, sym__scope_resolution, - STATE(7127), 1, + STATE(7182), 1, sym_virtual_specifier, - STATE(7665), 1, + STATE(7894), 1, sym_base_class_clause, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2592), 2, + STATE(2608), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5523), 2, + STATE(4831), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - [226197] = 18, + [229619] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6540), 1, - anon_sym_COLON, - ACTIONS(6793), 1, + ACTIONS(6035), 1, anon_sym_LBRACE, - ACTIONS(9528), 1, + ACTIONS(6528), 1, + anon_sym_COLON, + ACTIONS(9437), 1, anon_sym_COLON_COLON, - ACTIONS(9617), 1, + ACTIONS(9654), 1, sym_identifier, - STATE(2830), 1, + STATE(1784), 1, sym_template_type, - STATE(3107), 1, - sym_field_declaration_list, - STATE(3440), 1, + STATE(1913), 1, sym__class_declaration_item, - STATE(6578), 1, + STATE(2382), 1, + sym_field_declaration_list, + STATE(6699), 1, sym__scope_resolution, - STATE(7127), 1, + STATE(7084), 1, sym_virtual_specifier, - STATE(7665), 1, + STATE(7872), 1, sym_base_class_clause, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2592), 2, + STATE(2031), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4776), 2, + STATE(5653), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - [226256] = 10, + [229678] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(10033), 1, + ACTIONS(10087), 1, sym_identifier, - ACTIONS(10035), 1, + ACTIONS(10089), 1, anon_sym_RPAREN, - ACTIONS(10037), 1, + ACTIONS(10091), 1, anon_sym_LPAREN2, - ACTIONS(10039), 1, + ACTIONS(10093), 1, anon_sym_defined, - ACTIONS(10045), 1, + ACTIONS(10099), 1, sym_number_literal, - ACTIONS(10041), 2, + ACTIONS(10095), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10043), 2, + ACTIONS(10097), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10047), 5, + ACTIONS(10101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(5546), 7, + STATE(5563), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -480741,388 +487301,352 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [226299] = 15, + [229721] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(8427), 1, - sym_identifier, - ACTIONS(8429), 1, + ACTIONS(6037), 2, + anon_sym_final, + anon_sym_override, + STATE(5645), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + ACTIONS(10105), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(10103), 14, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(8431), 1, - anon_sym_STAR, - ACTIONS(8433), 1, - anon_sym_AMP_AMP, - ACTIONS(8435), 1, - anon_sym_AMP, - ACTIONS(10049), 1, anon_sym_SEMI, - STATE(5376), 1, - sym__field_declarator, - STATE(6299), 1, - sym_operator_name, - STATE(8037), 1, - sym_attribute_specifier, - STATE(8049), 1, - sym_ms_based_modifier, - ACTIONS(43), 2, anon_sym___attribute__, - anon_sym___attribute, - STATE(6399), 7, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - sym_reference_field_declarator, - sym_template_method, - [226352] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6540), 1, anon_sym_COLON, - ACTIONS(6542), 1, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(9613), 1, - sym_identifier, - ACTIONS(9625), 1, - anon_sym_COLON_COLON, - STATE(1893), 1, - sym_template_type, - STATE(2489), 1, - sym__class_declaration_item, - STATE(2917), 1, - sym_field_declaration_list, - STATE(6604), 1, - sym__scope_resolution, - STATE(6995), 1, - sym_virtual_specifier, - STATE(7645), 1, - sym_base_class_clause, - ACTIONS(5503), 2, - anon_sym_final, - anon_sym_override, - STATE(3925), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4776), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, - sym_decltype, - sym_dependent_type_identifier, - [226411] = 18, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [229754] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6540), 1, - anon_sym_COLON, - ACTIONS(6542), 1, - anon_sym_LBRACE, - ACTIONS(9613), 1, - sym_identifier, - ACTIONS(9625), 1, - anon_sym_COLON_COLON, - STATE(1893), 1, - sym_template_type, - STATE(2492), 1, - sym__class_declaration_item, - STATE(2917), 1, - sym_field_declaration_list, - STATE(6604), 1, - sym__scope_resolution, - STATE(6995), 1, - sym_virtual_specifier, - STATE(7645), 1, - sym_base_class_clause, - ACTIONS(5503), 2, + ACTIONS(9196), 1, + anon_sym_requires, + ACTIONS(9193), 2, anon_sym_final, anon_sym_override, - STATE(3925), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5549), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, - sym_decltype, - sym_dependent_type_identifier, - [226470] = 15, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5927), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9150), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9139), 11, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [229791] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7072), 1, - anon_sym_noexcept, - ACTIONS(7074), 1, - anon_sym_throw, - ACTIONS(9770), 1, + ACTIONS(5170), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(5172), 18, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(9813), 1, - anon_sym_DASH_GT, - ACTIONS(9823), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - STATE(5492), 1, - sym_compound_statement, - STATE(5874), 1, - sym_parameter_list, - STATE(7904), 1, - sym_lambda_declarator, - STATE(8493), 1, - sym_trailing_return_type, - STATE(5866), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5969), 2, - sym_lambda_specifier, - aux_sym_lambda_declarator_repeat1, - STATE(6805), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9811), 4, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - [226523] = 18, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [229820] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(6692), 1, + ACTIONS(6795), 1, anon_sym_LBRACE, - ACTIONS(9440), 1, + ACTIONS(9459), 1, anon_sym_COLON_COLON, - ACTIONS(9632), 1, + ACTIONS(9666), 1, sym_identifier, - STATE(2669), 1, + STATE(2856), 1, sym_template_type, - STATE(2853), 1, + STATE(3013), 1, sym_field_declaration_list, - STATE(3154), 1, + STATE(3507), 1, sym__class_declaration_item, - STATE(6620), 1, + STATE(6708), 1, sym__scope_resolution, - STATE(6970), 1, + STATE(7182), 1, sym_virtual_specifier, - STATE(7867), 1, + STATE(7894), 1, sym_base_class_clause, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2503), 2, + STATE(2608), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5531), 2, + STATE(5600), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - [226582] = 18, + [229879] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(8419), 1, + sym_identifier, + ACTIONS(8421), 1, + anon_sym_LPAREN2, + ACTIONS(8423), 1, + anon_sym_STAR, + ACTIONS(8425), 1, + anon_sym_AMP_AMP, + ACTIONS(8427), 1, + anon_sym_AMP, + ACTIONS(10107), 1, + anon_sym_SEMI, + STATE(5464), 1, + sym__field_declarator, + STATE(6445), 1, + sym_operator_name, + STATE(8631), 1, + sym_attribute_specifier, + STATE(8851), 1, + sym_ms_based_modifier, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + STATE(6476), 7, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + sym_reference_field_declarator, + sym_template_method, + [229932] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(6692), 1, + ACTIONS(6530), 1, anon_sym_LBRACE, - ACTIONS(9440), 1, - anon_sym_COLON_COLON, - ACTIONS(9632), 1, + ACTIONS(9641), 1, sym_identifier, - STATE(2669), 1, + ACTIONS(9660), 1, + anon_sym_COLON_COLON, + STATE(1922), 1, sym_template_type, - STATE(2853), 1, - sym_field_declaration_list, - STATE(3175), 1, + STATE(2515), 1, sym__class_declaration_item, - STATE(6620), 1, + STATE(2962), 1, + sym_field_declaration_list, + STATE(6706), 1, sym__scope_resolution, - STATE(6970), 1, + STATE(7126), 1, sym_virtual_specifier, - STATE(7867), 1, + STATE(7712), 1, sym_base_class_clause, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2503), 2, + STATE(4003), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4776), 2, + STATE(4831), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - [226641] = 18, + [229991] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(6692), 1, + ACTIONS(6530), 1, anon_sym_LBRACE, - ACTIONS(9440), 1, - anon_sym_COLON_COLON, - ACTIONS(9632), 1, + ACTIONS(9641), 1, sym_identifier, - STATE(2669), 1, + ACTIONS(9660), 1, + anon_sym_COLON_COLON, + STATE(1922), 1, sym_template_type, - STATE(2853), 1, - sym_field_declaration_list, - STATE(3176), 1, + STATE(2522), 1, sym__class_declaration_item, - STATE(6620), 1, + STATE(2962), 1, + sym_field_declaration_list, + STATE(6706), 1, sym__scope_resolution, - STATE(6970), 1, + STATE(7126), 1, sym_virtual_specifier, - STATE(7867), 1, + STATE(7712), 1, sym_base_class_clause, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2503), 2, + STATE(4003), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4776), 2, + STATE(5616), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - [226700] = 18, + [230050] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(6692), 1, + ACTIONS(6795), 1, anon_sym_LBRACE, - ACTIONS(9440), 1, + ACTIONS(9459), 1, anon_sym_COLON_COLON, - ACTIONS(9632), 1, + ACTIONS(9666), 1, sym_identifier, - STATE(2669), 1, + STATE(2856), 1, sym_template_type, - STATE(2853), 1, + STATE(3013), 1, sym_field_declaration_list, - STATE(3182), 1, + STATE(3449), 1, sym__class_declaration_item, - STATE(6620), 1, + STATE(6708), 1, sym__scope_resolution, - STATE(6970), 1, + STATE(7182), 1, sym_virtual_specifier, - STATE(7867), 1, + STATE(7894), 1, sym_base_class_clause, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2503), 2, + STATE(2608), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5533), 2, + STATE(4831), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - [226759] = 18, + [230109] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6540), 1, - anon_sym_COLON, - ACTIONS(6692), 1, + ACTIONS(6035), 1, anon_sym_LBRACE, - ACTIONS(9440), 1, + ACTIONS(6528), 1, + anon_sym_COLON, + ACTIONS(8088), 1, anon_sym_COLON_COLON, - ACTIONS(9632), 1, + ACTIONS(9649), 1, sym_identifier, - STATE(2669), 1, + STATE(1784), 1, sym_template_type, - STATE(2853), 1, - sym_field_declaration_list, - STATE(3200), 1, + STATE(1913), 1, sym__class_declaration_item, - STATE(6620), 1, + STATE(5190), 1, + sym_field_declaration_list, + STATE(6724), 1, sym__scope_resolution, - STATE(6970), 1, + STATE(7203), 1, sym_virtual_specifier, - STATE(7867), 1, + STATE(7975), 1, sym_base_class_clause, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2503), 2, + STATE(4535), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4776), 2, + STATE(5680), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - [226818] = 7, + [230168] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(7079), 1, anon_sym_requires, - ACTIONS(6020), 2, + ACTIONS(6037), 2, anon_sym_final, anon_sym_override, - STATE(5606), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5839), 2, + STATE(5912), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9355), 3, + ACTIONS(9951), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9344), 11, + ACTIONS(9949), 11, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -481134,594 +487658,451 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_asm, anon_sym___asm__, anon_sym_try, - [226855] = 18, + [230205] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6018), 1, - anon_sym_LBRACE, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(7990), 1, + ACTIONS(6530), 1, + anon_sym_LBRACE, + ACTIONS(8074), 1, anon_sym_COLON_COLON, - ACTIONS(9636), 1, + ACTIONS(9647), 1, sym_identifier, - STATE(1816), 1, + STATE(1922), 1, sym_template_type, - STATE(1848), 1, + STATE(2544), 1, sym__class_declaration_item, - STATE(5147), 1, + STATE(3663), 1, sym_field_declaration_list, - STATE(6593), 1, + STATE(6743), 1, sym__scope_resolution, - STATE(7010), 1, + STATE(7228), 1, sym_virtual_specifier, - STATE(7843), 1, + STATE(8009), 1, sym_base_class_clause, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(4504), 2, + STATE(3041), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5557), 2, + STATE(5564), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - [226914] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10055), 2, - anon_sym_final, - anon_sym_override, - STATE(5536), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - ACTIONS(10053), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(10051), 14, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [226947] = 18, + [230264] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6018), 1, - anon_sym_LBRACE, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(7990), 1, + ACTIONS(8074), 1, anon_sym_COLON_COLON, - ACTIONS(9636), 1, + ACTIONS(8630), 1, + anon_sym_LBRACE, + ACTIONS(9647), 1, sym_identifier, - STATE(1816), 1, + STATE(1922), 1, sym_template_type, - STATE(1853), 1, - sym__class_declaration_item, - STATE(5147), 1, + STATE(4635), 1, sym_field_declaration_list, - STATE(6593), 1, + STATE(4785), 1, + sym__class_declaration_item, + STATE(6743), 1, sym__scope_resolution, - STATE(7010), 1, + STATE(7213), 1, sym_virtual_specifier, - STATE(7843), 1, + STATE(7996), 1, sym_base_class_clause, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(4504), 2, + STATE(4270), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4776), 2, + STATE(4831), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - [227006] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7072), 1, - anon_sym_noexcept, - ACTIONS(7074), 1, - anon_sym_throw, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - ACTIONS(9813), 1, - anon_sym_DASH_GT, - STATE(3258), 1, - sym_compound_statement, - STATE(5874), 1, - sym_parameter_list, - STATE(7694), 1, - sym_lambda_declarator, - STATE(8493), 1, - sym_trailing_return_type, - STATE(5866), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5969), 2, - sym_lambda_specifier, - aux_sym_lambda_declarator_repeat1, - STATE(6805), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9811), 4, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - [227059] = 18, + [230323] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(8021), 1, - anon_sym_COLON_COLON, - ACTIONS(8878), 1, + ACTIONS(6530), 1, anon_sym_LBRACE, - ACTIONS(9619), 1, + ACTIONS(8074), 1, + anon_sym_COLON_COLON, + ACTIONS(9647), 1, sym_identifier, - STATE(4376), 1, + STATE(1922), 1, sym_template_type, - STATE(4877), 1, - sym_field_declaration_list, - STATE(4932), 1, + STATE(2456), 1, sym__class_declaration_item, - STATE(6632), 1, + STATE(3663), 1, + sym_field_declaration_list, + STATE(6743), 1, sym__scope_resolution, - STATE(6984), 1, + STATE(7228), 1, sym_virtual_specifier, - STATE(7729), 1, + STATE(8009), 1, sym_base_class_clause, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(4384), 2, + STATE(3041), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5541), 2, + STATE(4831), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - [227118] = 18, + [230382] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(8021), 1, + ACTIONS(8074), 1, anon_sym_COLON_COLON, - ACTIONS(8878), 1, + ACTIONS(8630), 1, anon_sym_LBRACE, - ACTIONS(9619), 1, + ACTIONS(9647), 1, sym_identifier, - STATE(4376), 1, + STATE(1922), 1, sym_template_type, - STATE(4877), 1, + STATE(4635), 1, sym_field_declaration_list, - STATE(4945), 1, + STATE(4793), 1, sym__class_declaration_item, - STATE(6632), 1, + STATE(6743), 1, sym__scope_resolution, - STATE(6984), 1, + STATE(7213), 1, sym_virtual_specifier, - STATE(7729), 1, + STATE(7996), 1, sym_base_class_clause, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(4384), 2, + STATE(4270), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4776), 2, + STATE(5629), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - [227177] = 18, + [230441] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7075), 1, + anon_sym_noexcept, + ACTIONS(7077), 1, + anon_sym_throw, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(9839), 1, + anon_sym_LBRACE, + ACTIONS(9843), 1, + anon_sym_DASH_GT, + STATE(5576), 1, + sym_compound_statement, + STATE(5929), 1, + sym_parameter_list, + STATE(7859), 1, + sym_lambda_declarator, + STATE(8588), 1, + sym_trailing_return_type, + STATE(5946), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6072), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(6944), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9841), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [230494] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10087), 1, + sym_identifier, + ACTIONS(10091), 1, + anon_sym_LPAREN2, + ACTIONS(10093), 1, + anon_sym_defined, + ACTIONS(10109), 1, + anon_sym_RPAREN, + ACTIONS(10111), 1, + sym_number_literal, + ACTIONS(10095), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10097), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10101), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5693), 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, + [230537] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(8021), 1, - anon_sym_COLON_COLON, - ACTIONS(8878), 1, + ACTIONS(6588), 1, anon_sym_LBRACE, - ACTIONS(9619), 1, + ACTIONS(9498), 1, + anon_sym_COLON_COLON, + ACTIONS(9670), 1, sym_identifier, - STATE(4376), 1, + STATE(2684), 1, sym_template_type, - STATE(4877), 1, + STATE(2885), 1, sym_field_declaration_list, - STATE(4918), 1, + STATE(3221), 1, sym__class_declaration_item, - STATE(6632), 1, + STATE(6728), 1, sym__scope_resolution, - STATE(6984), 1, + STATE(7042), 1, sym_virtual_specifier, - STATE(7729), 1, + STATE(8040), 1, sym_base_class_clause, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(4384), 2, + STATE(2467), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4776), 2, + STATE(5621), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - [227236] = 18, + [230596] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(8021), 1, - anon_sym_COLON_COLON, - ACTIONS(8878), 1, + ACTIONS(6588), 1, anon_sym_LBRACE, - ACTIONS(9619), 1, + ACTIONS(9498), 1, + anon_sym_COLON_COLON, + ACTIONS(9670), 1, sym_identifier, - STATE(4376), 1, + STATE(2684), 1, sym_template_type, - STATE(4877), 1, + STATE(2885), 1, sym_field_declaration_list, - STATE(4928), 1, + STATE(3240), 1, sym__class_declaration_item, - STATE(6632), 1, + STATE(6728), 1, sym__scope_resolution, - STATE(6984), 1, + STATE(7042), 1, sym_virtual_specifier, - STATE(7729), 1, + STATE(8040), 1, sym_base_class_clause, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(4384), 2, + STATE(2467), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5543), 2, + STATE(4831), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - [227295] = 18, + [230655] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5228), 1, + anon_sym_COLON_COLON, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(8021), 1, - anon_sym_COLON_COLON, - ACTIONS(8878), 1, + ACTIONS(6530), 1, anon_sym_LBRACE, - ACTIONS(9619), 1, + ACTIONS(9641), 1, sym_identifier, - STATE(4376), 1, + STATE(1922), 1, sym_template_type, - STATE(4877), 1, - sym_field_declaration_list, - STATE(4910), 1, + STATE(2544), 1, sym__class_declaration_item, - STATE(6632), 1, + STATE(2962), 1, + sym_field_declaration_list, + STATE(6715), 1, sym__scope_resolution, - STATE(6984), 1, + STATE(7126), 1, sym_virtual_specifier, - STATE(7729), 1, + STATE(7712), 1, sym_base_class_clause, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(4384), 2, + STATE(2440), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4776), 2, + STATE(5717), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - [227354] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9684), 1, - anon_sym_requires, - ACTIONS(9681), 2, - anon_sym_final, - anon_sym_override, - STATE(5606), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5876), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9676), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9665), 11, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_try, - [227391] = 15, + [230714] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7072), 1, + ACTIONS(7075), 1, anon_sym_noexcept, - ACTIONS(7074), 1, + ACTIONS(7077), 1, anon_sym_throw, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(9813), 1, + ACTIONS(9843), 1, anon_sym_DASH_GT, - ACTIONS(9827), 1, - anon_sym_LBRACE, - STATE(2462), 1, - sym_compound_statement, - STATE(5874), 1, - sym_parameter_list, - STATE(7643), 1, - sym_lambda_declarator, - STATE(8493), 1, - sym_trailing_return_type, - STATE(5866), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5969), 2, - sym_lambda_specifier, - aux_sym_lambda_declarator_repeat1, - STATE(6805), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9811), 4, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - [227444] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10058), 1, - anon_sym_COMMA, - ACTIONS(10060), 1, - anon_sym_RPAREN, - ACTIONS(10066), 1, - anon_sym_SLASH, - ACTIONS(10068), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10070), 1, - anon_sym_AMP_AMP, - ACTIONS(10072), 1, - anon_sym_PIPE, - ACTIONS(10074), 1, - anon_sym_CARET, - ACTIONS(10076), 1, - anon_sym_AMP, - STATE(7348), 1, - aux_sym_preproc_argument_list_repeat1, - ACTIONS(10062), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10064), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(10078), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(10080), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(10082), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(10084), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [227499] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, + ACTIONS(9857), 1, anon_sym_LBRACE, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7072), 1, - anon_sym_noexcept, - ACTIONS(7074), 1, - anon_sym_throw, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - ACTIONS(9813), 1, - anon_sym_DASH_GT, - STATE(1606), 1, + STATE(2557), 1, sym_compound_statement, - STATE(5874), 1, + STATE(5929), 1, sym_parameter_list, - STATE(7577), 1, + STATE(8036), 1, sym_lambda_declarator, - STATE(8493), 1, + STATE(8588), 1, sym_trailing_return_type, - STATE(5866), 2, + STATE(5946), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5969), 2, + STATE(6072), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(6805), 3, + STATE(6944), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9811), 4, + ACTIONS(9841), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [227552] = 18, + [230767] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6018), 1, + ACTIONS(6035), 1, anon_sym_LBRACE, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(9424), 1, + ACTIONS(8088), 1, anon_sym_COLON_COLON, - ACTIONS(9642), 1, - sym_identifier, - STATE(1816), 1, - sym_template_type, - STATE(1849), 1, - sym__class_declaration_item, - STATE(2336), 1, - sym_field_declaration_list, - STATE(6626), 1, - sym__scope_resolution, - STATE(6997), 1, - sym_virtual_specifier, - STATE(7837), 1, - sym_base_class_clause, - ACTIONS(5503), 2, - anon_sym_final, - anon_sym_override, - STATE(2107), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4776), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, - sym_decltype, - sym_dependent_type_identifier, - [227611] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6540), 1, - anon_sym_COLON, - ACTIONS(6542), 1, - anon_sym_LBRACE, - ACTIONS(9613), 1, + ACTIONS(9649), 1, sym_identifier, - ACTIONS(9625), 1, - anon_sym_COLON_COLON, - STATE(1893), 1, + STATE(1784), 1, sym_template_type, - STATE(2518), 1, + STATE(1907), 1, sym__class_declaration_item, - STATE(2917), 1, + STATE(5190), 1, sym_field_declaration_list, - STATE(6604), 1, + STATE(6724), 1, sym__scope_resolution, - STATE(6995), 1, + STATE(7203), 1, sym_virtual_specifier, - STATE(7645), 1, + STATE(7975), 1, sym_base_class_clause, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(3925), 2, + STATE(4535), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4776), 2, + STATE(4831), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - [227670] = 3, + [230826] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10088), 3, + ACTIONS(10115), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(10086), 18, + ACTIONS(10113), 18, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -481740,1023 +488121,1146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [227699] = 15, + [230855] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7072), 1, + ACTIONS(7075), 1, anon_sym_noexcept, - ACTIONS(7074), 1, + ACTIONS(7077), 1, anon_sym_throw, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(9813), 1, + ACTIONS(9843), 1, anon_sym_DASH_GT, - ACTIONS(9817), 1, + ACTIONS(9855), 1, anon_sym_LBRACE, - STATE(5874), 1, - sym_parameter_list, - STATE(5908), 1, + STATE(3421), 1, sym_compound_statement, - STATE(7617), 1, + STATE(5929), 1, + sym_parameter_list, + STATE(7819), 1, sym_lambda_declarator, - STATE(8493), 1, + STATE(8588), 1, sym_trailing_return_type, - STATE(5866), 2, + STATE(5946), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5969), 2, + STATE(6072), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(6805), 3, + STATE(6944), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9811), 4, + ACTIONS(9841), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [227752] = 18, + [230908] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6018), 1, - anon_sym_LBRACE, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(7959), 1, - anon_sym_COLON_COLON, - ACTIONS(9627), 1, + ACTIONS(6530), 1, + anon_sym_LBRACE, + ACTIONS(9641), 1, sym_identifier, - STATE(1816), 1, + ACTIONS(9660), 1, + anon_sym_COLON_COLON, + STATE(1922), 1, sym_template_type, - STATE(1849), 1, + STATE(2531), 1, sym__class_declaration_item, - STATE(2336), 1, + STATE(2962), 1, sym_field_declaration_list, - STATE(6587), 1, + STATE(6706), 1, sym__scope_resolution, - STATE(6997), 1, + STATE(7126), 1, sym_virtual_specifier, - STATE(7837), 1, + STATE(7712), 1, sym_base_class_clause, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2107), 2, + STATE(4003), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4776), 2, + STATE(4831), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - [227811] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10092), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(10090), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [227840] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10094), 1, - anon_sym_requires, - ACTIONS(9919), 2, - anon_sym_final, - anon_sym_override, - STATE(5606), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5846), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9845), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9843), 11, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_try, - [227877] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10097), 1, - anon_sym_requires, - ACTIONS(9927), 2, - anon_sym_final, - anon_sym_override, - STATE(5606), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5836), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9849), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9847), 11, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_try, - [227914] = 4, + [230967] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(10102), 1, - anon_sym_LPAREN2, - ACTIONS(10104), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(10100), 17, - anon_sym_DOT_DOT_DOT, + ACTIONS(10023), 1, anon_sym_COMMA, + ACTIONS(10031), 1, + anon_sym_SLASH, + ACTIONS(10033), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10035), 1, + anon_sym_AMP_AMP, + ACTIONS(10037), 1, + anon_sym_PIPE, + ACTIONS(10039), 1, + anon_sym_CARET, + ACTIONS(10041), 1, + anon_sym_AMP, + ACTIONS(10117), 1, anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [227945] = 18, + STATE(7444), 1, + aux_sym_preproc_argument_list_repeat1, + ACTIONS(10027), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10029), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(10043), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10045), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10047), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(10049), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [231022] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6018), 1, + ACTIONS(6526), 1, anon_sym_LBRACE, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(7990), 1, + ACTIONS(9580), 1, anon_sym_COLON_COLON, - ACTIONS(9636), 1, + ACTIONS(9656), 1, sym_identifier, - STATE(1816), 1, + STATE(2673), 1, sym_template_type, - STATE(1880), 1, - sym__class_declaration_item, - STATE(5147), 1, + STATE(2809), 1, sym_field_declaration_list, - STATE(6593), 1, + STATE(3068), 1, + sym__class_declaration_item, + STATE(6713), 1, sym__scope_resolution, - STATE(7010), 1, + STATE(7139), 1, sym_virtual_specifier, - STATE(7843), 1, + STATE(7762), 1, sym_base_class_clause, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(4504), 2, + STATE(2437), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4776), 2, + STATE(5623), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - [228004] = 18, + [231081] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6018), 1, + ACTIONS(6526), 1, anon_sym_LBRACE, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(7990), 1, + ACTIONS(9580), 1, anon_sym_COLON_COLON, - ACTIONS(9636), 1, + ACTIONS(9656), 1, sym_identifier, - STATE(1816), 1, + STATE(2673), 1, sym_template_type, - STATE(1883), 1, - sym__class_declaration_item, - STATE(5147), 1, + STATE(2809), 1, sym_field_declaration_list, - STATE(6593), 1, + STATE(3072), 1, + sym__class_declaration_item, + STATE(6713), 1, sym__scope_resolution, - STATE(7010), 1, + STATE(7139), 1, sym_virtual_specifier, - STATE(7843), 1, + STATE(7762), 1, sym_base_class_clause, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(4504), 2, + STATE(2437), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5566), 2, + STATE(4831), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - [228063] = 18, + [231140] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5020), 1, + ACTIONS(5228), 1, anon_sym_COLON_COLON, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(6542), 1, + ACTIONS(6530), 1, anon_sym_LBRACE, - ACTIONS(9621), 1, + ACTIONS(9641), 1, sym_identifier, - STATE(1893), 1, + STATE(1922), 1, sym_template_type, - STATE(2511), 1, + STATE(2522), 1, sym__class_declaration_item, - STATE(2917), 1, + STATE(2962), 1, sym_field_declaration_list, - STATE(6606), 1, + STATE(6715), 1, sym__scope_resolution, - STATE(6995), 1, + STATE(7126), 1, sym_virtual_specifier, - STATE(7645), 1, + STATE(7712), 1, sym_base_class_clause, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2434), 2, + STATE(2440), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5563), 2, + STATE(5646), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - [228122] = 18, + [231199] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5020), 1, - anon_sym_COLON_COLON, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(6542), 1, + ACTIONS(6588), 1, anon_sym_LBRACE, - ACTIONS(9621), 1, + ACTIONS(9498), 1, + anon_sym_COLON_COLON, + ACTIONS(9670), 1, sym_identifier, - STATE(1893), 1, + STATE(2684), 1, sym_template_type, - STATE(2515), 1, - sym__class_declaration_item, - STATE(2917), 1, + STATE(2885), 1, sym_field_declaration_list, - STATE(6606), 1, + STATE(3169), 1, + sym__class_declaration_item, + STATE(6728), 1, sym__scope_resolution, - STATE(6995), 1, + STATE(7042), 1, sym_virtual_specifier, - STATE(7645), 1, + STATE(8040), 1, sym_base_class_clause, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2434), 2, + STATE(2467), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4776), 2, + STATE(4831), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - [228181] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7072), 1, - anon_sym_noexcept, - ACTIONS(7074), 1, - anon_sym_throw, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - ACTIONS(9813), 1, - anon_sym_DASH_GT, - ACTIONS(9837), 1, - anon_sym_LBRACE, - STATE(3479), 1, - sym_compound_statement, - STATE(5874), 1, - sym_parameter_list, - STATE(7841), 1, - sym_lambda_declarator, - STATE(8493), 1, - sym_trailing_return_type, - STATE(5866), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5969), 2, - sym_lambda_specifier, - aux_sym_lambda_declarator_repeat1, - STATE(6805), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9811), 4, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - [228234] = 18, + [231258] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6499), 1, - anon_sym_LBRACE, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(9503), 1, + ACTIONS(6588), 1, + anon_sym_LBRACE, + ACTIONS(9498), 1, anon_sym_COLON_COLON, - ACTIONS(9646), 1, + ACTIONS(9670), 1, sym_identifier, - STATE(2630), 1, + STATE(2684), 1, sym_template_type, - STATE(2824), 1, + STATE(2885), 1, sym_field_declaration_list, - STATE(3049), 1, + STATE(3155), 1, sym__class_declaration_item, - STATE(6633), 1, + STATE(6728), 1, sym__scope_resolution, - STATE(7126), 1, + STATE(7042), 1, sym_virtual_specifier, - STATE(7850), 1, + STATE(8040), 1, sym_base_class_clause, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2399), 2, + STATE(2467), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5570), 2, + STATE(5625), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - [228293] = 18, + [231317] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5020), 1, - anon_sym_COLON_COLON, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6540), 1, - anon_sym_COLON, - ACTIONS(6542), 1, + ACTIONS(6526), 1, anon_sym_LBRACE, - ACTIONS(9621), 1, + ACTIONS(6528), 1, + anon_sym_COLON, + ACTIONS(9580), 1, + anon_sym_COLON_COLON, + ACTIONS(9656), 1, sym_identifier, - STATE(1893), 1, + STATE(2673), 1, sym_template_type, - STATE(2489), 1, - sym__class_declaration_item, - STATE(2917), 1, + STATE(2809), 1, sym_field_declaration_list, - STATE(6606), 1, + STATE(3114), 1, + sym__class_declaration_item, + STATE(6713), 1, sym__scope_resolution, - STATE(6995), 1, + STATE(7139), 1, sym_virtual_specifier, - STATE(7645), 1, + STATE(7762), 1, sym_base_class_clause, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2434), 2, + STATE(2437), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4776), 2, + STATE(4831), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - [228352] = 18, + [231376] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5020), 1, - anon_sym_COLON_COLON, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6540), 1, - anon_sym_COLON, - ACTIONS(6542), 1, + ACTIONS(6526), 1, anon_sym_LBRACE, - ACTIONS(9621), 1, + ACTIONS(6528), 1, + anon_sym_COLON, + ACTIONS(9580), 1, + anon_sym_COLON_COLON, + ACTIONS(9656), 1, sym_identifier, - STATE(1893), 1, + STATE(2673), 1, sym_template_type, - STATE(2492), 1, - sym__class_declaration_item, - STATE(2917), 1, + STATE(2809), 1, sym_field_declaration_list, - STATE(6606), 1, + STATE(3090), 1, + sym__class_declaration_item, + STATE(6713), 1, sym__scope_resolution, - STATE(6995), 1, + STATE(7139), 1, sym_virtual_specifier, - STATE(7645), 1, + STATE(7762), 1, sym_base_class_clause, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2434), 2, + STATE(2437), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5640), 2, + STATE(5627), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - [228411] = 18, + [231435] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6499), 1, - anon_sym_LBRACE, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(9503), 1, + ACTIONS(6588), 1, + anon_sym_LBRACE, + ACTIONS(9498), 1, anon_sym_COLON_COLON, - ACTIONS(9646), 1, + ACTIONS(9670), 1, sym_identifier, - STATE(2630), 1, + STATE(2684), 1, sym_template_type, - STATE(2824), 1, + STATE(2885), 1, sym_field_declaration_list, - STATE(3054), 1, + STATE(3161), 1, sym__class_declaration_item, - STATE(6633), 1, + STATE(6728), 1, sym__scope_resolution, - STATE(7126), 1, + STATE(7042), 1, sym_virtual_specifier, - STATE(7850), 1, + STATE(8040), 1, sym_base_class_clause, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2399), 2, + STATE(2467), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4776), 2, + STATE(4831), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - [228470] = 18, + [231494] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6018), 1, - anon_sym_LBRACE, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(7990), 1, + ACTIONS(6530), 1, + anon_sym_LBRACE, + ACTIONS(8074), 1, anon_sym_COLON_COLON, - ACTIONS(9636), 1, + ACTIONS(9647), 1, sym_identifier, - STATE(1816), 1, + STATE(1922), 1, sym_template_type, - STATE(1849), 1, + STATE(2531), 1, sym__class_declaration_item, - STATE(5147), 1, + STATE(3663), 1, sym_field_declaration_list, - STATE(6593), 1, + STATE(6743), 1, sym__scope_resolution, - STATE(7010), 1, + STATE(7228), 1, sym_virtual_specifier, - STATE(7843), 1, + STATE(8009), 1, sym_base_class_clause, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(4504), 2, + STATE(3041), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4776), 2, + STATE(4831), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - [228529] = 18, + [231553] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6018), 1, + ACTIONS(6526), 1, anon_sym_LBRACE, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(7959), 1, + ACTIONS(9580), 1, anon_sym_COLON_COLON, - ACTIONS(9627), 1, + ACTIONS(9656), 1, sym_identifier, - STATE(1816), 1, + STATE(2673), 1, sym_template_type, - STATE(1848), 1, - sym__class_declaration_item, - STATE(2336), 1, + STATE(2809), 1, sym_field_declaration_list, - STATE(6587), 1, + STATE(3103), 1, + sym__class_declaration_item, + STATE(6713), 1, sym__scope_resolution, - STATE(6997), 1, + STATE(7139), 1, sym_virtual_specifier, - STATE(7837), 1, + STATE(7762), 1, sym_base_class_clause, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2107), 2, + STATE(2437), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5635), 2, + STATE(4831), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - [228588] = 18, + [231612] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7075), 1, + anon_sym_noexcept, + ACTIONS(7077), 1, + anon_sym_throw, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(9843), 1, + anon_sym_DASH_GT, + ACTIONS(9845), 1, + anon_sym_LBRACE, + STATE(3629), 1, + sym_compound_statement, + STATE(5929), 1, + sym_parameter_list, + STATE(7958), 1, + sym_lambda_declarator, + STATE(8588), 1, + sym_trailing_return_type, + STATE(5946), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6072), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(6944), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9841), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [231665] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6362), 1, - anon_sym_LBRACE, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(8049), 1, + ACTIONS(8074), 1, anon_sym_COLON_COLON, - ACTIONS(9634), 1, + ACTIONS(8630), 1, + anon_sym_LBRACE, + ACTIONS(9647), 1, sym_identifier, - STATE(2567), 1, + STATE(1922), 1, sym_template_type, - STATE(2618), 1, + STATE(4635), 1, sym_field_declaration_list, - STATE(2688), 1, + STATE(4765), 1, sym__class_declaration_item, - STATE(6579), 1, + STATE(6743), 1, sym__scope_resolution, - STATE(6946), 1, + STATE(7213), 1, sym_virtual_specifier, - STATE(7567), 1, + STATE(7996), 1, sym_base_class_clause, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2328), 2, + STATE(4270), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4776), 2, + STATE(4831), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - [228647] = 18, + [231724] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(113), 1, + anon_sym___asm, + ACTIONS(10063), 1, + anon_sym_COMMA, + ACTIONS(10065), 1, + anon_sym_LPAREN2, + ACTIONS(10071), 1, + anon_sym_LBRACK, + ACTIONS(10073), 1, + anon_sym_EQ, + ACTIONS(10119), 1, + anon_sym_SEMI, + ACTIONS(10121), 1, + anon_sym_LBRACE, + ACTIONS(10123), 1, + anon_sym_try, + STATE(795), 1, + sym_compound_statement, + STATE(797), 1, + sym_try_statement, + STATE(2989), 1, + sym_parameter_list, + STATE(6203), 1, + sym__function_declarator_seq, + STATE(7409), 1, + sym_gnu_asm_expression, + STATE(7417), 1, + aux_sym_declaration_repeat1, + ACTIONS(10075), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6081), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7980), 2, + sym_argument_list, + sym_initializer_list, + [231785] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5180), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(5182), 18, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [231814] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_LBRACE, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7075), 1, + anon_sym_noexcept, + ACTIONS(7077), 1, + anon_sym_throw, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(9843), 1, + anon_sym_DASH_GT, + STATE(3295), 1, + sym_compound_statement, + STATE(5929), 1, + sym_parameter_list, + STATE(7695), 1, + sym_lambda_declarator, + STATE(8588), 1, + sym_trailing_return_type, + STATE(5946), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6072), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(6944), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9841), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [231867] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6018), 1, - anon_sym_LBRACE, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(7959), 1, + ACTIONS(8000), 1, anon_sym_COLON_COLON, - ACTIONS(9627), 1, + ACTIONS(8906), 1, + anon_sym_LBRACE, + ACTIONS(9672), 1, sym_identifier, - STATE(1816), 1, + STATE(4461), 1, sym_template_type, - STATE(1853), 1, - sym__class_declaration_item, - STATE(2336), 1, + STATE(4950), 1, sym_field_declaration_list, - STATE(6587), 1, + STATE(4990), 1, + sym__class_declaration_item, + STATE(6731), 1, sym__scope_resolution, - STATE(6997), 1, + STATE(7051), 1, sym_virtual_specifier, - STATE(7837), 1, + STATE(7920), 1, sym_base_class_clause, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2107), 2, + STATE(4449), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4776), 2, + STATE(5635), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - [228706] = 18, + [231926] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6499), 1, - anon_sym_LBRACE, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(9503), 1, + ACTIONS(8000), 1, anon_sym_COLON_COLON, - ACTIONS(9646), 1, + ACTIONS(8906), 1, + anon_sym_LBRACE, + ACTIONS(9672), 1, sym_identifier, - STATE(2630), 1, + STATE(4461), 1, sym_template_type, - STATE(2824), 1, + STATE(4950), 1, sym_field_declaration_list, - STATE(3000), 1, + STATE(4993), 1, sym__class_declaration_item, - STATE(6633), 1, + STATE(6731), 1, sym__scope_resolution, - STATE(7126), 1, + STATE(7051), 1, sym_virtual_specifier, - STATE(7850), 1, + STATE(7920), 1, sym_base_class_clause, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2399), 2, + STATE(4449), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4776), 2, + STATE(4831), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - [228765] = 18, + [231985] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6499), 1, - anon_sym_LBRACE, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(9503), 1, + ACTIONS(8000), 1, anon_sym_COLON_COLON, - ACTIONS(9646), 1, + ACTIONS(8906), 1, + anon_sym_LBRACE, + ACTIONS(9672), 1, sym_identifier, - STATE(2630), 1, + STATE(4461), 1, sym_template_type, - STATE(2824), 1, + STATE(4950), 1, sym_field_declaration_list, - STATE(3003), 1, + STATE(5003), 1, sym__class_declaration_item, - STATE(6633), 1, + STATE(6731), 1, sym__scope_resolution, - STATE(7126), 1, + STATE(7051), 1, sym_virtual_specifier, - STATE(7850), 1, + STATE(7920), 1, sym_base_class_clause, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2399), 2, + STATE(4449), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5572), 2, + STATE(4831), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - [228824] = 18, + [232044] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6499), 1, - anon_sym_LBRACE, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(9503), 1, + ACTIONS(8000), 1, anon_sym_COLON_COLON, - ACTIONS(9646), 1, + ACTIONS(8906), 1, + anon_sym_LBRACE, + ACTIONS(9672), 1, sym_identifier, - STATE(2630), 1, + STATE(4461), 1, sym_template_type, - STATE(2824), 1, + STATE(4950), 1, sym_field_declaration_list, - STATE(3028), 1, + STATE(5006), 1, sym__class_declaration_item, - STATE(6633), 1, + STATE(6731), 1, sym__scope_resolution, - STATE(7126), 1, + STATE(7051), 1, sym_virtual_specifier, - STATE(7850), 1, + STATE(7920), 1, sym_base_class_clause, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2399), 2, + STATE(4449), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4776), 2, + STATE(5637), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - [228883] = 18, + [232103] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(7520), 1, - anon_sym_LBRACE, - ACTIONS(9578), 1, + ACTIONS(8000), 1, anon_sym_COLON_COLON, - ACTIONS(9638), 1, + ACTIONS(8906), 1, + anon_sym_LBRACE, + ACTIONS(9672), 1, sym_identifier, - STATE(3681), 1, + STATE(4461), 1, sym_template_type, - STATE(3943), 1, + STATE(4950), 1, sym_field_declaration_list, - STATE(4090), 1, + STATE(5014), 1, sym__class_declaration_item, - STATE(6634), 1, + STATE(6731), 1, sym__scope_resolution, - STATE(6934), 1, + STATE(7051), 1, sym_virtual_specifier, - STATE(7796), 1, + STATE(7920), 1, sym_base_class_clause, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(3127), 2, + STATE(4449), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5575), 2, + STATE(4831), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - [228942] = 18, + [232162] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10125), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6248), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(6250), 16, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_or, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [232193] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5184), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(5186), 18, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [232222] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6540), 1, - anon_sym_COLON, - ACTIONS(7520), 1, + ACTIONS(6363), 1, anon_sym_LBRACE, - ACTIONS(9578), 1, + ACTIONS(6528), 1, + anon_sym_COLON, + ACTIONS(9612), 1, anon_sym_COLON_COLON, - ACTIONS(9638), 1, + ACTIONS(9664), 1, sym_identifier, - STATE(3681), 1, + STATE(2598), 1, sym_template_type, - STATE(3943), 1, + STATE(2614), 1, sym_field_declaration_list, - STATE(4055), 1, + STATE(2693), 1, sym__class_declaration_item, - STATE(6634), 1, + STATE(6694), 1, sym__scope_resolution, - STATE(6934), 1, + STATE(7141), 1, sym_virtual_specifier, - STATE(7796), 1, + STATE(7773), 1, sym_base_class_clause, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(3127), 2, + STATE(2374), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4776), 2, + STATE(5643), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - [229001] = 18, + [232281] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_LBRACE, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7075), 1, + anon_sym_noexcept, + ACTIONS(7077), 1, + anon_sym_throw, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(9843), 1, + anon_sym_DASH_GT, + STATE(1629), 1, + sym_compound_statement, + STATE(5929), 1, + sym_parameter_list, + STATE(7752), 1, + sym_lambda_declarator, + STATE(8588), 1, + sym_trailing_return_type, + STATE(5946), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6072), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(6944), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9841), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [232334] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6540), 1, - anon_sym_COLON, - ACTIONS(7520), 1, + ACTIONS(6363), 1, anon_sym_LBRACE, - ACTIONS(9578), 1, + ACTIONS(6528), 1, + anon_sym_COLON, + ACTIONS(9612), 1, anon_sym_COLON_COLON, - ACTIONS(9638), 1, + ACTIONS(9664), 1, sym_identifier, - STATE(3681), 1, + STATE(2598), 1, sym_template_type, - STATE(3943), 1, + STATE(2614), 1, sym_field_declaration_list, - STATE(4074), 1, + STATE(2702), 1, sym__class_declaration_item, - STATE(6634), 1, + STATE(6694), 1, sym__scope_resolution, - STATE(6934), 1, + STATE(7141), 1, sym_virtual_specifier, - STATE(7796), 1, + STATE(7773), 1, sym_base_class_clause, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(3127), 2, + STATE(2374), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4776), 2, + STATE(4831), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - [229060] = 18, + [232393] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6540), 1, - anon_sym_COLON, - ACTIONS(7520), 1, + ACTIONS(6363), 1, anon_sym_LBRACE, - ACTIONS(9578), 1, + ACTIONS(6528), 1, + anon_sym_COLON, + ACTIONS(9612), 1, anon_sym_COLON_COLON, - ACTIONS(9638), 1, + ACTIONS(9664), 1, sym_identifier, - STATE(3681), 1, + STATE(2598), 1, sym_template_type, - STATE(3943), 1, + STATE(2614), 1, sym_field_declaration_list, - STATE(4079), 1, + STATE(2721), 1, sym__class_declaration_item, - STATE(6634), 1, + STATE(6694), 1, sym__scope_resolution, - STATE(6934), 1, + STATE(7141), 1, sym_virtual_specifier, - STATE(7796), 1, + STATE(7773), 1, sym_base_class_clause, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(3127), 2, + STATE(2374), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5582), 2, + STATE(4831), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - [229119] = 3, + [232452] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5192), 3, + ACTIONS(5188), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(5194), 18, + ACTIONS(5190), 18, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -482775,41 +489279,165 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [229148] = 4, + [232481] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10031), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(6178), 3, + ACTIONS(10131), 2, + anon_sym_final, + anon_sym_override, + STATE(5645), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + ACTIONS(10129), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(6180), 16, + ACTIONS(10127), 14, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_or, anon_sym_asm, anon_sym___asm__, - anon_sym_final, - anon_sym_override, + anon_sym_GT2, anon_sym_try, anon_sym_requires, - [229179] = 3, + [232514] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5148), 3, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(5228), 1, + anon_sym_COLON_COLON, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6528), 1, + anon_sym_COLON, + ACTIONS(6530), 1, + anon_sym_LBRACE, + ACTIONS(9641), 1, + sym_identifier, + STATE(1922), 1, + sym_template_type, + STATE(2531), 1, + sym__class_declaration_item, + STATE(2962), 1, + sym_field_declaration_list, + STATE(6715), 1, + sym__scope_resolution, + STATE(7126), 1, + sym_virtual_specifier, + STATE(7712), 1, + sym_base_class_clause, + ACTIONS(5567), 2, + anon_sym_final, + anon_sym_override, + STATE(2440), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4831), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8569), 2, + sym_decltype, + sym_dependent_type_identifier, + [232573] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6528), 1, + anon_sym_COLON, + ACTIONS(8074), 1, + anon_sym_COLON_COLON, + ACTIONS(8630), 1, + anon_sym_LBRACE, + ACTIONS(9647), 1, + sym_identifier, + STATE(1922), 1, + sym_template_type, + STATE(4635), 1, + sym_field_declaration_list, + STATE(4780), 1, + sym__class_declaration_item, + STATE(6743), 1, + sym__scope_resolution, + STATE(7213), 1, + sym_virtual_specifier, + STATE(7996), 1, + sym_base_class_clause, + ACTIONS(5567), 2, + anon_sym_final, + anon_sym_override, + STATE(4270), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5604), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8569), 2, + sym_decltype, + sym_dependent_type_identifier, + [232632] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6363), 1, + anon_sym_LBRACE, + ACTIONS(6528), 1, + anon_sym_COLON, + ACTIONS(9612), 1, + anon_sym_COLON_COLON, + ACTIONS(9664), 1, + sym_identifier, + STATE(2598), 1, + sym_template_type, + STATE(2614), 1, + sym_field_declaration_list, + STATE(2725), 1, + sym__class_declaration_item, + STATE(6694), 1, + sym__scope_resolution, + STATE(7141), 1, + sym_virtual_specifier, + STATE(7773), 1, + sym_base_class_clause, + ACTIONS(5567), 2, + anon_sym_final, + anon_sym_override, + STATE(2374), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5664), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8569), 2, + sym_decltype, + sym_dependent_type_identifier, + [232691] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5192), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(5150), 18, + ACTIONS(5194), 18, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -482828,958 +489456,1041 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [229208] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10058), 1, - anon_sym_COMMA, - ACTIONS(10066), 1, - anon_sym_SLASH, - ACTIONS(10068), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10070), 1, - anon_sym_AMP_AMP, - ACTIONS(10072), 1, - anon_sym_PIPE, - ACTIONS(10074), 1, - anon_sym_CARET, - ACTIONS(10076), 1, - anon_sym_AMP, - ACTIONS(10106), 1, - anon_sym_RPAREN, - STATE(7149), 1, - aux_sym_preproc_argument_list_repeat1, - ACTIONS(10062), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10064), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(10078), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(10080), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(10082), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(10084), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [229263] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10058), 1, - anon_sym_COMMA, - ACTIONS(10066), 1, - anon_sym_SLASH, - ACTIONS(10068), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10070), 1, - anon_sym_AMP_AMP, - ACTIONS(10072), 1, - anon_sym_PIPE, - ACTIONS(10074), 1, - anon_sym_CARET, - ACTIONS(10076), 1, - anon_sym_AMP, - ACTIONS(10108), 1, - anon_sym_RPAREN, - STATE(7226), 1, - aux_sym_preproc_argument_list_repeat1, - ACTIONS(10062), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10064), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(10078), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(10080), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(10082), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(10084), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [229318] = 18, + [232720] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6540), 1, - anon_sym_COLON, - ACTIONS(7520), 1, + ACTIONS(6035), 1, anon_sym_LBRACE, - ACTIONS(9578), 1, + ACTIONS(6528), 1, + anon_sym_COLON, + ACTIONS(7984), 1, anon_sym_COLON_COLON, - ACTIONS(9638), 1, + ACTIONS(9645), 1, sym_identifier, - STATE(3681), 1, + STATE(1784), 1, sym_template_type, - STATE(3943), 1, - sym_field_declaration_list, - STATE(4089), 1, + STATE(1907), 1, sym__class_declaration_item, - STATE(6634), 1, + STATE(2382), 1, + sym_field_declaration_list, + STATE(6727), 1, sym__scope_resolution, - STATE(6934), 1, + STATE(7084), 1, sym_virtual_specifier, - STATE(7796), 1, + STATE(7872), 1, sym_base_class_clause, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(3127), 2, + STATE(2031), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4776), 2, + STATE(4831), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - [229377] = 18, + [232779] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(8055), 1, + ACTIONS(8028), 1, anon_sym_COLON_COLON, - ACTIONS(8615), 1, + ACTIONS(8630), 1, anon_sym_LBRACE, - ACTIONS(9623), 1, + ACTIONS(9668), 1, sym_identifier, - STATE(1893), 1, + STATE(1922), 1, sym_template_type, - STATE(4423), 1, + STATE(4635), 1, sym_field_declaration_list, - STATE(4731), 1, + STATE(4780), 1, sym__class_declaration_item, - STATE(6592), 1, + STATE(6719), 1, sym__scope_resolution, - STATE(6965), 1, + STATE(7213), 1, sym_virtual_specifier, - STATE(7777), 1, + STATE(7996), 1, sym_base_class_clause, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(4218), 2, + STATE(4270), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5589), 2, + STATE(5659), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - [229436] = 18, + [232838] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(8055), 1, + ACTIONS(8028), 1, anon_sym_COLON_COLON, - ACTIONS(8615), 1, + ACTIONS(8630), 1, anon_sym_LBRACE, - ACTIONS(9623), 1, + ACTIONS(9668), 1, sym_identifier, - STATE(1893), 1, + STATE(1922), 1, sym_template_type, - STATE(4423), 1, + STATE(4635), 1, sym_field_declaration_list, - STATE(4746), 1, + STATE(4690), 1, sym__class_declaration_item, - STATE(6592), 1, + STATE(6719), 1, sym__scope_resolution, - STATE(6965), 1, + STATE(7213), 1, sym_virtual_specifier, - STATE(7777), 1, + STATE(7996), 1, sym_base_class_clause, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(4218), 2, + STATE(4270), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4776), 2, + STATE(4831), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - [229495] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(113), 1, - anon_sym___asm, - ACTIONS(9995), 1, - anon_sym_COMMA, - ACTIONS(9997), 1, - anon_sym_LPAREN2, - ACTIONS(10001), 1, - anon_sym_LBRACK, - ACTIONS(10003), 1, - anon_sym_EQ, - ACTIONS(10110), 1, - anon_sym_SEMI, - ACTIONS(10112), 1, - anon_sym_LBRACE, - ACTIONS(10114), 1, - anon_sym_try, - STATE(662), 1, - sym_compound_statement, - STATE(663), 1, - sym_try_statement, - STATE(2962), 1, - sym_parameter_list, - STATE(5979), 1, - sym__function_declarator_seq, - STATE(7310), 1, - sym_gnu_asm_expression, - STATE(7311), 1, - aux_sym_declaration_repeat1, - ACTIONS(10005), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(5949), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7680), 2, - sym_argument_list, - sym_initializer_list, - [229556] = 18, + [232897] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5220), 1, - anon_sym_COLON_COLON, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6540), 1, - anon_sym_COLON, - ACTIONS(6542), 1, + ACTIONS(6035), 1, anon_sym_LBRACE, - ACTIONS(9613), 1, + ACTIONS(6528), 1, + anon_sym_COLON, + ACTIONS(9437), 1, + anon_sym_COLON_COLON, + ACTIONS(9654), 1, sym_identifier, - STATE(1893), 1, + STATE(1784), 1, sym_template_type, - STATE(2511), 1, + STATE(1874), 1, sym__class_declaration_item, - STATE(2917), 1, + STATE(2382), 1, sym_field_declaration_list, - STATE(6627), 1, + STATE(6699), 1, sym__scope_resolution, - STATE(6995), 1, + STATE(7084), 1, sym_virtual_specifier, - STATE(7645), 1, + STATE(7872), 1, sym_base_class_clause, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2434), 2, + STATE(2031), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5508), 2, + STATE(4831), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - [229615] = 5, - ACTIONS(9897), 1, - anon_sym_LF, - ACTIONS(10116), 1, + [232956] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7075), 1, + anon_sym_noexcept, + ACTIONS(7077), 1, + anon_sym_throw, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(10118), 1, + ACTIONS(9843), 1, + anon_sym_DASH_GT, + ACTIONS(9851), 1, + anon_sym_LBRACE, + STATE(3295), 1, + sym_compound_statement, + STATE(5929), 1, + sym_parameter_list, + STATE(7868), 1, + sym_lambda_declarator, + STATE(8588), 1, + sym_trailing_return_type, + STATE(5946), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6072), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(6944), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9841), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [233009] = 7, + ACTIONS(3), 1, sym_comment, - STATE(5865), 1, - sym_preproc_argument_list, - ACTIONS(9901), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [229648] = 18, + ACTIONS(9390), 1, + anon_sym_requires, + ACTIONS(9387), 2, + anon_sym_final, + anon_sym_override, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5934), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9382), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9371), 11, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [233046] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5220), 1, - anon_sym_COLON_COLON, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6540), 1, - anon_sym_COLON, - ACTIONS(6542), 1, + ACTIONS(6035), 1, anon_sym_LBRACE, - ACTIONS(9613), 1, + ACTIONS(6528), 1, + anon_sym_COLON, + ACTIONS(7984), 1, + anon_sym_COLON_COLON, + ACTIONS(9645), 1, sym_identifier, - STATE(1893), 1, + STATE(1784), 1, sym_template_type, - STATE(2515), 1, + STATE(1913), 1, sym__class_declaration_item, - STATE(2917), 1, + STATE(2382), 1, sym_field_declaration_list, - STATE(6627), 1, + STATE(6727), 1, sym__scope_resolution, - STATE(6995), 1, + STATE(7084), 1, sym_virtual_specifier, - STATE(7645), 1, + STATE(7872), 1, sym_base_class_clause, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2434), 2, + STATE(2031), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4776), 2, + STATE(5716), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - [229707] = 18, + [233105] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(113), 1, + anon_sym___asm, + ACTIONS(10063), 1, + anon_sym_COMMA, + ACTIONS(10065), 1, + anon_sym_LPAREN2, + ACTIONS(10071), 1, + anon_sym_LBRACK, + ACTIONS(10073), 1, + anon_sym_EQ, + ACTIONS(10134), 1, + anon_sym_SEMI, + ACTIONS(10136), 1, + anon_sym_LBRACE, + ACTIONS(10138), 1, + anon_sym_try, + STATE(673), 1, + sym_compound_statement, + STATE(809), 1, + sym_try_statement, + STATE(2989), 1, + sym_parameter_list, + STATE(6203), 1, + sym__function_declarator_seq, + STATE(7433), 1, + sym_gnu_asm_expression, + STATE(7434), 1, + aux_sym_declaration_repeat1, + ACTIONS(10075), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6081), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7980), 2, + sym_argument_list, + sym_initializer_list, + [233166] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7075), 1, + anon_sym_noexcept, + ACTIONS(7077), 1, + anon_sym_throw, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(9843), 1, + anon_sym_DASH_GT, + ACTIONS(9853), 1, + anon_sym_LBRACE, + STATE(5929), 1, + sym_parameter_list, + STATE(6008), 1, + sym_compound_statement, + STATE(7792), 1, + sym_lambda_declarator, + STATE(8588), 1, + sym_trailing_return_type, + STATE(5946), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6072), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(6944), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9841), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [233219] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(8055), 1, + ACTIONS(8028), 1, anon_sym_COLON_COLON, - ACTIONS(8615), 1, + ACTIONS(8630), 1, anon_sym_LBRACE, - ACTIONS(9623), 1, + ACTIONS(9668), 1, sym_identifier, - STATE(1893), 1, + STATE(1922), 1, sym_template_type, - STATE(4423), 1, + STATE(4635), 1, sym_field_declaration_list, - STATE(4730), 1, + STATE(4785), 1, sym__class_declaration_item, - STATE(6592), 1, + STATE(6719), 1, sym__scope_resolution, - STATE(6965), 1, + STATE(7213), 1, sym_virtual_specifier, - STATE(7777), 1, + STATE(7996), 1, sym_base_class_clause, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(4218), 2, + STATE(4270), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4776), 2, + STATE(4831), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - [229766] = 18, + [233278] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(8055), 1, + ACTIONS(8028), 1, anon_sym_COLON_COLON, - ACTIONS(8615), 1, + ACTIONS(8630), 1, anon_sym_LBRACE, - ACTIONS(9623), 1, + ACTIONS(9668), 1, sym_identifier, - STATE(1893), 1, + STATE(1922), 1, sym_template_type, - STATE(4423), 1, + STATE(4635), 1, sym_field_declaration_list, - STATE(4743), 1, + STATE(4793), 1, sym__class_declaration_item, - STATE(6592), 1, + STATE(6719), 1, sym__scope_resolution, - STATE(6965), 1, + STATE(7213), 1, sym_virtual_specifier, - STATE(7777), 1, + STATE(7996), 1, sym_base_class_clause, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(4218), 2, + STATE(4270), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5596), 2, + STATE(5662), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, - sym_decltype, - sym_dependent_type_identifier, - [229825] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(141), 1, - anon_sym_operator, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(2979), 1, - anon_sym_TILDE, - ACTIONS(5470), 1, - anon_sym_COLON_COLON, - ACTIONS(8300), 1, - anon_sym_STAR, - ACTIONS(10120), 1, - sym_identifier, - ACTIONS(10122), 1, - anon_sym_template, - STATE(2776), 1, - sym_operator_name, - STATE(2782), 1, - sym_destructor_name, - STATE(2786), 1, - sym_dependent_identifier, - STATE(2822), 1, - sym_qualified_identifier, - STATE(2836), 1, - sym_pointer_type_declarator, - STATE(2838), 1, - sym_template_function, - STATE(5591), 1, - sym__scope_resolution, - STATE(6940), 1, - sym_operator_cast, - STATE(6969), 1, - sym_qualified_operator_cast_identifier, - STATE(8344), 1, - sym_ms_based_modifier, - STATE(8601), 3, + STATE(8569), 2, sym_decltype, - sym_template_type, sym_dependent_type_identifier, - [229888] = 15, + [233337] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7072), 1, + ACTIONS(7075), 1, anon_sym_noexcept, - ACTIONS(7074), 1, + ACTIONS(7077), 1, anon_sym_throw, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(9813), 1, + ACTIONS(9843), 1, anon_sym_DASH_GT, - ACTIONS(9825), 1, + ACTIONS(9863), 1, anon_sym_LBRACE, - STATE(4227), 1, + STATE(4300), 1, sym_compound_statement, - STATE(5874), 1, + STATE(5929), 1, sym_parameter_list, - STATE(7664), 1, + STATE(7726), 1, sym_lambda_declarator, - STATE(8493), 1, + STATE(8588), 1, sym_trailing_return_type, - STATE(5866), 2, + STATE(5946), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5969), 2, + STATE(6072), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(6805), 3, + STATE(6944), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9811), 4, + ACTIONS(9841), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [229941] = 10, + [233390] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(10033), 1, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6528), 1, + anon_sym_COLON, + ACTIONS(8028), 1, + anon_sym_COLON_COLON, + ACTIONS(8630), 1, + anon_sym_LBRACE, + ACTIONS(9668), 1, sym_identifier, - ACTIONS(10037), 1, - anon_sym_LPAREN2, - ACTIONS(10039), 1, - anon_sym_defined, - ACTIONS(10124), 1, - anon_sym_RPAREN, - ACTIONS(10126), 1, - sym_number_literal, - ACTIONS(10041), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(10043), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10047), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(5581), 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, - [229984] = 3, + STATE(1922), 1, + sym_template_type, + STATE(4635), 1, + sym_field_declaration_list, + STATE(4765), 1, + sym__class_declaration_item, + STATE(6719), 1, + sym__scope_resolution, + STATE(7213), 1, + sym_virtual_specifier, + STATE(7996), 1, + sym_base_class_clause, + ACTIONS(5567), 2, + anon_sym_final, + anon_sym_override, + STATE(4270), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4831), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8569), 2, + sym_decltype, + sym_dependent_type_identifier, + [233449] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1940), 3, + ACTIONS(10142), 1, + anon_sym_LPAREN2, + ACTIONS(10144), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(1938), 18, + ACTIONS(10140), 17, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_or, - anon_sym_and, anon_sym_asm, anon_sym___asm__, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_try, anon_sym_requires, - [230013] = 3, + [233480] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(1934), 18, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(6363), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, + ACTIONS(6528), 1, + anon_sym_COLON, + ACTIONS(9612), 1, + anon_sym_COLON_COLON, + ACTIONS(9664), 1, + sym_identifier, + STATE(2598), 1, + sym_template_type, + STATE(2614), 1, + sym_field_declaration_list, + STATE(2743), 1, + sym__class_declaration_item, + STATE(6694), 1, + sym__scope_resolution, + STATE(7141), 1, + sym_virtual_specifier, + STATE(7773), 1, + sym_base_class_clause, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - anon_sym_try, - anon_sym_requires, - [230042] = 18, + STATE(2374), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4831), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8569), 2, + sym_decltype, + sym_dependent_type_identifier, + [233539] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5228), 1, + anon_sym_COLON_COLON, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(8055), 1, - anon_sym_COLON_COLON, - ACTIONS(8615), 1, + ACTIONS(6530), 1, anon_sym_LBRACE, - ACTIONS(9623), 1, + ACTIONS(9641), 1, sym_identifier, - STATE(1893), 1, + STATE(1922), 1, sym_template_type, - STATE(4423), 1, - sym_field_declaration_list, - STATE(4606), 1, + STATE(2456), 1, sym__class_declaration_item, - STATE(6592), 1, + STATE(2962), 1, + sym_field_declaration_list, + STATE(6715), 1, sym__scope_resolution, - STATE(6965), 1, + STATE(7126), 1, sym_virtual_specifier, - STATE(7777), 1, + STATE(7712), 1, sym_base_class_clause, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(4218), 2, + STATE(2440), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4776), 2, + STATE(4831), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - [230101] = 18, + [233598] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7079), 1, + anon_sym_requires, + ACTIONS(6037), 2, + anon_sym_final, + anon_sym_override, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5874), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9947), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9945), 11, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [233635] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5501), 1, + ACTIONS(5565), 1, anon_sym_LBRACE, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(9384), 1, + ACTIONS(9530), 1, anon_sym_COLON_COLON, - ACTIONS(9640), 1, + ACTIONS(9658), 1, sym_identifier, - STATE(1945), 1, + STATE(1943), 1, sym_template_type, - STATE(2201), 1, + STATE(2213), 1, sym_field_declaration_list, - STATE(2262), 1, + STATE(2289), 1, sym__class_declaration_item, - STATE(6580), 1, + STATE(6695), 1, sym__scope_resolution, - STATE(7013), 1, + STATE(7100), 1, sym_virtual_specifier, - STATE(7856), 1, + STATE(7921), 1, sym_base_class_clause, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(1728), 2, + STATE(1816), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5600), 2, + STATE(5673), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - [230160] = 18, + [233694] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5501), 1, + ACTIONS(5565), 1, anon_sym_LBRACE, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(9384), 1, + ACTIONS(9530), 1, anon_sym_COLON_COLON, - ACTIONS(9640), 1, + ACTIONS(9658), 1, sym_identifier, - STATE(1945), 1, + STATE(1943), 1, sym_template_type, - STATE(2201), 1, + STATE(2213), 1, sym_field_declaration_list, - STATE(2267), 1, + STATE(2314), 1, sym__class_declaration_item, - STATE(6580), 1, + STATE(6695), 1, sym__scope_resolution, - STATE(7013), 1, + STATE(7100), 1, sym_virtual_specifier, - STATE(7856), 1, + STATE(7921), 1, sym_base_class_clause, - ACTIONS(5503), 2, + ACTIONS(5567), 2, + anon_sym_final, + anon_sym_override, + STATE(1816), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4831), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8569), 2, + sym_decltype, + sym_dependent_type_identifier, + [233753] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10087), 1, + sym_identifier, + ACTIONS(10091), 1, + anon_sym_LPAREN2, + ACTIONS(10093), 1, + anon_sym_defined, + ACTIONS(10146), 1, + anon_sym_RPAREN, + ACTIONS(10148), 1, + sym_number_literal, + ACTIONS(10095), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10097), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10101), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5617), 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, + [233796] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10152), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(10150), 18, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - STATE(1728), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4776), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, - sym_decltype, - sym_dependent_type_identifier, - [230219] = 18, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [233825] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(5220), 1, - anon_sym_COLON_COLON, - ACTIONS(5472), 1, + ACTIONS(7079), 1, + anon_sym_requires, + ACTIONS(6037), 2, + anon_sym_final, + anon_sym_override, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5934), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9382), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9371), 11, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(6540), 1, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [233862] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10125), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(10154), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6298), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(6300), 14, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_COLON, - ACTIONS(6542), 1, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(9613), 1, - sym_identifier, - STATE(1893), 1, - sym_template_type, - STATE(2518), 1, - sym__class_declaration_item, - STATE(2917), 1, - sym_field_declaration_list, - STATE(6627), 1, - sym__scope_resolution, - STATE(6995), 1, - sym_virtual_specifier, - STATE(7645), 1, - sym_base_class_clause, - ACTIONS(5503), 2, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, anon_sym_final, anon_sym_override, - STATE(2434), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4776), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, - sym_decltype, - sym_dependent_type_identifier, - [230278] = 18, + anon_sym_try, + anon_sym_requires, + [233895] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5501), 1, + ACTIONS(5565), 1, anon_sym_LBRACE, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(9384), 1, + ACTIONS(9530), 1, anon_sym_COLON_COLON, - ACTIONS(9640), 1, + ACTIONS(9658), 1, sym_identifier, - STATE(1945), 1, + STATE(1943), 1, sym_template_type, - STATE(2201), 1, + STATE(2213), 1, sym_field_declaration_list, - STATE(2241), 1, + STATE(2275), 1, sym__class_declaration_item, - STATE(6580), 1, + STATE(6695), 1, sym__scope_resolution, - STATE(7013), 1, + STATE(7100), 1, sym_virtual_specifier, - STATE(7856), 1, + STATE(7921), 1, sym_base_class_clause, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(1728), 2, + STATE(1816), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4776), 2, + STATE(4831), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - [230337] = 18, + [233954] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5501), 1, + ACTIONS(5565), 1, anon_sym_LBRACE, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(9384), 1, + ACTIONS(9530), 1, anon_sym_COLON_COLON, - ACTIONS(9640), 1, + ACTIONS(9658), 1, sym_identifier, - STATE(1945), 1, + STATE(1943), 1, sym_template_type, - STATE(2201), 1, + STATE(2213), 1, sym_field_declaration_list, - STATE(2249), 1, + STATE(2250), 1, sym__class_declaration_item, - STATE(6580), 1, + STATE(6695), 1, sym__scope_resolution, - STATE(7013), 1, + STATE(7100), 1, sym_virtual_specifier, - STATE(7856), 1, + STATE(7921), 1, sym_base_class_clause, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(1728), 2, + STATE(1816), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5602), 2, + STATE(5675), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - [230396] = 18, + [234013] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5501), 1, + ACTIONS(5565), 1, anon_sym_LBRACE, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(9384), 1, + ACTIONS(9530), 1, anon_sym_COLON_COLON, - ACTIONS(9640), 1, + ACTIONS(9658), 1, sym_identifier, - STATE(1945), 1, + STATE(1943), 1, sym_template_type, - STATE(2201), 1, + STATE(2213), 1, sym_field_declaration_list, - STATE(2223), 1, + STATE(2340), 1, sym__class_declaration_item, - STATE(6580), 1, + STATE(6695), 1, sym__scope_resolution, - STATE(7013), 1, + STATE(7100), 1, sym_virtual_specifier, - STATE(7856), 1, + STATE(7921), 1, sym_base_class_clause, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(1728), 2, + STATE(1816), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4776), 2, + STATE(4831), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - [230455] = 7, + [234072] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7079), 1, - anon_sym_requires, - ACTIONS(6020), 2, - anon_sym_final, - anon_sym_override, - STATE(5606), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5877), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9193), 3, + ACTIONS(5196), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9182), 11, + ACTIONS(5198), 18, anon_sym_COMMA, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_or, + anon_sym_and, anon_sym_asm, anon_sym___asm__, + anon_sym_final, + anon_sym_override, anon_sym_try, - [230492] = 3, + anon_sym_requires, + [234101] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5144), 3, + ACTIONS(10158), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(5146), 18, + ACTIONS(10156), 18, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_or, - anon_sym_and, anon_sym_asm, anon_sym___asm__, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_try, anon_sym_requires, - [230521] = 3, + [234130] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5180), 3, + ACTIONS(5196), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(5182), 18, + ACTIONS(5198), 18, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -483798,1759 +490509,1588 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [230550] = 5, + [234159] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6020), 2, - anon_sym_final, - anon_sym_override, - STATE(5536), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - ACTIONS(10130), 3, + ACTIONS(5196), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(10128), 14, + ACTIONS(5198), 18, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_or, + anon_sym_and, anon_sym_asm, anon_sym___asm__, - anon_sym_GT2, + anon_sym_final, + anon_sym_override, anon_sym_try, anon_sym_requires, - [230583] = 18, + [234188] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6018), 1, + ACTIONS(6035), 1, anon_sym_LBRACE, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(9424), 1, + ACTIONS(8088), 1, anon_sym_COLON_COLON, - ACTIONS(9642), 1, + ACTIONS(9649), 1, sym_identifier, - STATE(1816), 1, + STATE(1784), 1, sym_template_type, - STATE(1848), 1, + STATE(1874), 1, sym__class_declaration_item, - STATE(2336), 1, + STATE(5190), 1, sym_field_declaration_list, - STATE(6626), 1, + STATE(6724), 1, sym__scope_resolution, - STATE(6997), 1, + STATE(7203), 1, sym_virtual_specifier, - STATE(7837), 1, + STATE(7975), 1, sym_base_class_clause, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2107), 2, + STATE(4535), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5484), 2, + STATE(4831), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - [230642] = 18, + [234247] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6018), 1, - anon_sym_LBRACE, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(9424), 1, + ACTIONS(7543), 1, + anon_sym_LBRACE, + ACTIONS(9412), 1, anon_sym_COLON_COLON, - ACTIONS(9642), 1, + ACTIONS(9674), 1, sym_identifier, - STATE(1816), 1, + STATE(3638), 1, sym_template_type, - STATE(1853), 1, - sym__class_declaration_item, - STATE(2336), 1, + STATE(4009), 1, sym_field_declaration_list, - STATE(6626), 1, + STATE(4148), 1, + sym__class_declaration_item, + STATE(6732), 1, sym__scope_resolution, - STATE(6997), 1, + STATE(7061), 1, sym_virtual_specifier, - STATE(7837), 1, + STATE(7717), 1, sym_base_class_clause, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2107), 2, + STATE(3210), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4776), 2, + STATE(5573), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - [230701] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5136), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(5138), 18, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [230730] = 3, + [234306] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5136), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(5138), 18, - anon_sym_COMMA, + ACTIONS(7848), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [230759] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5136), 3, - anon_sym___attribute, + ACTIONS(7862), 1, anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(5138), 18, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + ACTIONS(8183), 1, + anon_sym_STAR, + ACTIONS(8185), 1, anon_sym_AMP_AMP, + ACTIONS(8187), 1, + anon_sym_AMP, + STATE(3077), 1, + sym_parameter_list, + STATE(5953), 1, + sym__function_declarator_seq, + STATE(6469), 1, + sym__abstract_declarator, + STATE(5952), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8360), 8, + anon_sym_RPAREN, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - [230788] = 18, + [234351] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6540), 1, - anon_sym_COLON, - ACTIONS(6542), 1, + ACTIONS(6035), 1, anon_sym_LBRACE, - ACTIONS(8055), 1, + ACTIONS(6528), 1, + anon_sym_COLON, + ACTIONS(9437), 1, anon_sym_COLON_COLON, - ACTIONS(9623), 1, + ACTIONS(9654), 1, sym_identifier, - STATE(1893), 1, + STATE(1784), 1, sym_template_type, - STATE(2511), 1, + STATE(1885), 1, sym__class_declaration_item, - STATE(3610), 1, + STATE(2382), 1, sym_field_declaration_list, - STATE(6592), 1, + STATE(6699), 1, sym__scope_resolution, STATE(7084), 1, sym_virtual_specifier, - STATE(7878), 1, + STATE(7872), 1, sym_base_class_clause, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2988), 2, + STATE(2031), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5623), 2, + STATE(4831), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - [230847] = 18, + [234410] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6540), 1, - anon_sym_COLON, - ACTIONS(6542), 1, + ACTIONS(6035), 1, anon_sym_LBRACE, - ACTIONS(8055), 1, + ACTIONS(6528), 1, + anon_sym_COLON, + ACTIONS(7984), 1, anon_sym_COLON_COLON, - ACTIONS(9623), 1, + ACTIONS(9645), 1, sym_identifier, - STATE(1893), 1, + STATE(1784), 1, sym_template_type, - STATE(2515), 1, + STATE(1882), 1, sym__class_declaration_item, - STATE(3610), 1, + STATE(2382), 1, sym_field_declaration_list, - STATE(6592), 1, + STATE(6727), 1, sym__scope_resolution, STATE(7084), 1, sym_virtual_specifier, - STATE(7878), 1, + STATE(7872), 1, sym_base_class_clause, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2988), 2, + STATE(2031), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4776), 2, + STATE(5650), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - [230906] = 18, + [234469] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(6542), 1, + ACTIONS(6530), 1, anon_sym_LBRACE, - ACTIONS(8081), 1, + ACTIONS(8028), 1, anon_sym_COLON_COLON, - ACTIONS(9615), 1, + ACTIONS(9668), 1, sym_identifier, - STATE(1893), 1, + STATE(1922), 1, sym_template_type, - STATE(2518), 1, + STATE(2544), 1, sym__class_declaration_item, - STATE(3610), 1, + STATE(3663), 1, sym_field_declaration_list, - STATE(6615), 1, + STATE(6719), 1, sym__scope_resolution, - STATE(7084), 1, + STATE(7228), 1, sym_virtual_specifier, - STATE(7878), 1, + STATE(8009), 1, sym_base_class_clause, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2988), 2, + STATE(3041), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4776), 2, + STATE(5690), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - [230965] = 7, + [234528] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(9198), 1, - anon_sym_requires, - ACTIONS(9195), 2, - anon_sym_final, - anon_sym_override, - STATE(5606), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5877), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9193), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9182), 11, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(6528), 1, + anon_sym_COLON, + ACTIONS(6530), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_try, - [231002] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7079), 1, - anon_sym_requires, - ACTIONS(6020), 2, + ACTIONS(8028), 1, + anon_sym_COLON_COLON, + ACTIONS(9668), 1, + sym_identifier, + STATE(1922), 1, + sym_template_type, + STATE(2456), 1, + sym__class_declaration_item, + STATE(3663), 1, + sym_field_declaration_list, + STATE(6719), 1, + sym__scope_resolution, + STATE(7228), 1, + sym_virtual_specifier, + STATE(8009), 1, + sym_base_class_clause, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(5606), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5876), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9676), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9665), 11, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_try, - [231039] = 19, + STATE(3041), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4831), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8569), 2, + sym_decltype, + sym_dependent_type_identifier, + [234587] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, ACTIONS(113), 1, anon_sym___asm, - ACTIONS(9809), 1, + ACTIONS(9810), 1, anon_sym_try, - ACTIONS(9995), 1, + ACTIONS(10063), 1, anon_sym_COMMA, - ACTIONS(9997), 1, + ACTIONS(10065), 1, anon_sym_LPAREN2, - ACTIONS(10001), 1, + ACTIONS(10071), 1, anon_sym_LBRACK, - ACTIONS(10003), 1, + ACTIONS(10073), 1, anon_sym_EQ, - ACTIONS(10132), 1, + ACTIONS(10160), 1, anon_sym_SEMI, - ACTIONS(10134), 1, + ACTIONS(10162), 1, anon_sym_LBRACE, - STATE(1989), 1, + STATE(2010), 1, sym_compound_statement, - STATE(1991), 1, + STATE(2032), 1, sym_try_statement, - STATE(2962), 1, + STATE(2989), 1, sym_parameter_list, - STATE(5979), 1, + STATE(6203), 1, sym__function_declarator_seq, - STATE(7397), 1, + STATE(7561), 1, sym_gnu_asm_expression, - STATE(7398), 1, + STATE(7562), 1, aux_sym_declaration_repeat1, - ACTIONS(10005), 2, + ACTIONS(10075), 2, anon_sym_asm, anon_sym___asm__, - STATE(5949), 2, + STATE(6081), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7680), 2, + STATE(7980), 2, sym_argument_list, sym_initializer_list, - [231100] = 3, + [234648] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(5152), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(5154), 18, - anon_sym_COMMA, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(8419), 1, + sym_identifier, + ACTIONS(8421), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + ACTIONS(8423), 1, + anon_sym_STAR, + ACTIONS(8425), 1, anon_sym_AMP_AMP, + ACTIONS(8427), 1, + anon_sym_AMP, + ACTIONS(10164), 1, anon_sym_SEMI, + STATE(5468), 1, + sym__field_declarator, + STATE(6445), 1, + sym_operator_name, + STATE(8190), 1, + sym_attribute_specifier, + STATE(8851), 1, + sym_ms_based_modifier, + ACTIONS(43), 2, anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [231129] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10138), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(10136), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [231158] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10142), 3, anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(10140), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [231187] = 7, + STATE(6476), 7, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + sym_reference_field_declarator, + sym_template_method, + [234701] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7079), 1, - anon_sym_requires, - ACTIONS(6020), 2, - anon_sym_final, - anon_sym_override, - STATE(5606), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5836), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9849), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9847), 11, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(6035), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_try, - [231224] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5166), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(5168), 18, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, + ACTIONS(6528), 1, anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, + ACTIONS(7984), 1, + anon_sym_COLON_COLON, + ACTIONS(9645), 1, + sym_identifier, + STATE(1784), 1, + sym_template_type, + STATE(1885), 1, + sym__class_declaration_item, + STATE(2382), 1, + sym_field_declaration_list, + STATE(6727), 1, + sym__scope_resolution, + STATE(7084), 1, + sym_virtual_specifier, + STATE(7872), 1, + sym_base_class_clause, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - anon_sym_try, - anon_sym_requires, - [231253] = 18, + STATE(2031), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4831), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8569), 2, + sym_decltype, + sym_dependent_type_identifier, + [234760] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(6542), 1, + ACTIONS(6530), 1, anon_sym_LBRACE, - ACTIONS(8055), 1, + ACTIONS(8028), 1, anon_sym_COLON_COLON, - ACTIONS(9623), 1, + ACTIONS(9668), 1, sym_identifier, - STATE(1893), 1, + STATE(1922), 1, sym_template_type, - STATE(2489), 1, + STATE(2515), 1, sym__class_declaration_item, - STATE(3610), 1, + STATE(3663), 1, sym_field_declaration_list, - STATE(6592), 1, + STATE(6719), 1, sym__scope_resolution, - STATE(7084), 1, + STATE(7228), 1, sym_virtual_specifier, - STATE(7878), 1, + STATE(8009), 1, sym_base_class_clause, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2988), 2, + STATE(3041), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4776), 2, + STATE(4831), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - [231312] = 18, + [234819] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(6542), 1, + ACTIONS(6530), 1, anon_sym_LBRACE, - ACTIONS(8055), 1, + ACTIONS(8028), 1, anon_sym_COLON_COLON, - ACTIONS(9623), 1, + ACTIONS(9668), 1, sym_identifier, - STATE(1893), 1, + STATE(1922), 1, sym_template_type, - STATE(2492), 1, + STATE(2522), 1, sym__class_declaration_item, - STATE(3610), 1, + STATE(3663), 1, sym_field_declaration_list, - STATE(6592), 1, + STATE(6719), 1, sym__scope_resolution, - STATE(7084), 1, + STATE(7228), 1, sym_virtual_specifier, - STATE(7878), 1, + STATE(8009), 1, sym_base_class_clause, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2988), 2, + STATE(3041), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5633), 2, + STATE(5697), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - [231371] = 3, + [234878] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5170), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(5172), 18, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(6035), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, + ACTIONS(6528), 1, + anon_sym_COLON, + ACTIONS(8088), 1, + anon_sym_COLON_COLON, + ACTIONS(9649), 1, + sym_identifier, + STATE(1784), 1, + sym_template_type, + STATE(1882), 1, + sym__class_declaration_item, + STATE(5190), 1, + sym_field_declaration_list, + STATE(6724), 1, + sym__scope_resolution, + STATE(7203), 1, + sym_virtual_specifier, + STATE(7975), 1, + sym_base_class_clause, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - anon_sym_try, - anon_sym_requires, - [231400] = 3, + STATE(4535), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5613), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8569), 2, + sym_decltype, + sym_dependent_type_identifier, + [234937] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5188), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(5190), 18, + ACTIONS(10023), 1, anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(10031), 1, + anon_sym_SLASH, + ACTIONS(10033), 1, anon_sym_PIPE_PIPE, + ACTIONS(10035), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [231429] = 15, + ACTIONS(10037), 1, + anon_sym_PIPE, + ACTIONS(10039), 1, + anon_sym_CARET, + ACTIONS(10041), 1, + anon_sym_AMP, + ACTIONS(10166), 1, + anon_sym_RPAREN, + STATE(7601), 1, + aux_sym_preproc_argument_list_repeat1, + ACTIONS(10027), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10029), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(10043), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10045), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10047), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(10049), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [234992] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7072), 1, + ACTIONS(7075), 1, anon_sym_noexcept, - ACTIONS(7074), 1, + ACTIONS(7077), 1, anon_sym_throw, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(9813), 1, + ACTIONS(9843), 1, anon_sym_DASH_GT, - ACTIONS(9835), 1, + ACTIONS(9865), 1, anon_sym_LBRACE, - STATE(3903), 1, + STATE(3857), 1, sym_compound_statement, - STATE(5874), 1, + STATE(5929), 1, sym_parameter_list, - STATE(7626), 1, + STATE(7847), 1, sym_lambda_declarator, - STATE(8493), 1, + STATE(8588), 1, sym_trailing_return_type, - STATE(5866), 2, + STATE(5946), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5969), 2, + STATE(6072), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(6805), 3, + STATE(6944), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9811), 4, + ACTIONS(9841), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [231482] = 11, + [235045] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7842), 1, - anon_sym_LPAREN2, - ACTIONS(7856), 1, + ACTIONS(5200), 3, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(8167), 1, - anon_sym_STAR, - ACTIONS(8169), 1, + anon_sym___asm, + ACTIONS(5202), 18, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(8171), 1, - anon_sym_AMP, - STATE(2991), 1, - sym_parameter_list, - STATE(5792), 1, - sym__function_declarator_seq, - STATE(6392), 1, - sym__abstract_declarator, - STATE(5804), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8306), 8, - anon_sym_RPAREN, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - [231527] = 18, + [235074] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(6542), 1, + ACTIONS(7543), 1, anon_sym_LBRACE, - ACTIONS(8081), 1, + ACTIONS(9412), 1, anon_sym_COLON_COLON, - ACTIONS(9615), 1, + ACTIONS(9674), 1, sym_identifier, - STATE(1893), 1, + STATE(3638), 1, sym_template_type, - STATE(2511), 1, - sym__class_declaration_item, - STATE(3610), 1, + STATE(4009), 1, sym_field_declaration_list, - STATE(6615), 1, + STATE(4130), 1, + sym__class_declaration_item, + STATE(6732), 1, sym__scope_resolution, - STATE(7084), 1, + STATE(7061), 1, sym_virtual_specifier, - STATE(7878), 1, + STATE(7717), 1, sym_base_class_clause, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2988), 2, + STATE(3210), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5638), 2, + STATE(4831), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - [231586] = 18, + [235133] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(6542), 1, + ACTIONS(6530), 1, anon_sym_LBRACE, - ACTIONS(8081), 1, + ACTIONS(8028), 1, anon_sym_COLON_COLON, - ACTIONS(9615), 1, + ACTIONS(9668), 1, sym_identifier, - STATE(1893), 1, + STATE(1922), 1, sym_template_type, - STATE(2515), 1, + STATE(2531), 1, sym__class_declaration_item, - STATE(3610), 1, + STATE(3663), 1, sym_field_declaration_list, - STATE(6615), 1, + STATE(6719), 1, sym__scope_resolution, - STATE(7084), 1, + STATE(7228), 1, sym_virtual_specifier, - STATE(7878), 1, + STATE(8009), 1, sym_base_class_clause, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2988), 2, + STATE(3041), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4776), 2, + STATE(4831), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - [231645] = 15, + [235192] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5472), 1, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7072), 1, - anon_sym_noexcept, - ACTIONS(7074), 1, - anon_sym_throw, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - ACTIONS(9813), 1, - anon_sym_DASH_GT, - ACTIONS(9821), 1, + ACTIONS(6035), 1, anon_sym_LBRACE, - STATE(3258), 1, - sym_compound_statement, - STATE(5874), 1, - sym_parameter_list, - STATE(7655), 1, - sym_lambda_declarator, - STATE(8493), 1, - sym_trailing_return_type, - STATE(5866), 2, + ACTIONS(6528), 1, + anon_sym_COLON, + ACTIONS(8088), 1, + anon_sym_COLON_COLON, + ACTIONS(9649), 1, + sym_identifier, + STATE(1784), 1, + sym_template_type, + STATE(1885), 1, + sym__class_declaration_item, + STATE(5190), 1, + sym_field_declaration_list, + STATE(6724), 1, + sym__scope_resolution, + STATE(7203), 1, + sym_virtual_specifier, + STATE(7975), 1, + sym_base_class_clause, + ACTIONS(5567), 2, + anon_sym_final, + anon_sym_override, + STATE(4535), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4831), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5969), 2, - sym_lambda_specifier, - aux_sym_lambda_declarator_repeat1, - STATE(6805), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9811), 4, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - [231698] = 19, + STATE(8569), 2, + sym_decltype, + sym_dependent_type_identifier, + [235251] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, ACTIONS(113), 1, anon_sym___asm, - ACTIONS(9995), 1, + ACTIONS(9837), 1, + anon_sym_try, + ACTIONS(10063), 1, anon_sym_COMMA, - ACTIONS(9997), 1, + ACTIONS(10065), 1, anon_sym_LPAREN2, - ACTIONS(10001), 1, + ACTIONS(10071), 1, anon_sym_LBRACK, - ACTIONS(10003), 1, + ACTIONS(10073), 1, anon_sym_EQ, - ACTIONS(10144), 1, + ACTIONS(10168), 1, anon_sym_SEMI, - ACTIONS(10146), 1, + ACTIONS(10170), 1, anon_sym_LBRACE, - ACTIONS(10148), 1, - anon_sym_try, - STATE(651), 1, - sym_try_statement, - STATE(730), 1, + STATE(1780), 1, sym_compound_statement, - STATE(2962), 1, + STATE(1781), 1, + sym_try_statement, + STATE(2989), 1, sym_parameter_list, - STATE(5979), 1, + STATE(6203), 1, sym__function_declarator_seq, - STATE(7295), 1, + STATE(7677), 1, sym_gnu_asm_expression, - STATE(7522), 1, + STATE(7679), 1, aux_sym_declaration_repeat1, - ACTIONS(10005), 2, + ACTIONS(10075), 2, anon_sym_asm, anon_sym___asm__, - STATE(5949), 2, + STATE(6081), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7680), 2, + STATE(7980), 2, sym_argument_list, sym_initializer_list, - [231759] = 18, + [235312] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6540), 1, - anon_sym_COLON, - ACTIONS(6542), 1, + ACTIONS(6363), 1, anon_sym_LBRACE, - ACTIONS(8055), 1, + ACTIONS(6528), 1, + anon_sym_COLON, + ACTIONS(8022), 1, anon_sym_COLON_COLON, - ACTIONS(9623), 1, + ACTIONS(9662), 1, sym_identifier, - STATE(1893), 1, + STATE(2598), 1, sym_template_type, - STATE(2518), 1, - sym__class_declaration_item, - STATE(3610), 1, + STATE(2614), 1, sym_field_declaration_list, - STATE(6592), 1, + STATE(2693), 1, + sym__class_declaration_item, + STATE(6738), 1, sym__scope_resolution, - STATE(7084), 1, + STATE(7141), 1, sym_virtual_specifier, - STATE(7878), 1, + STATE(7773), 1, sym_base_class_clause, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2988), 2, + STATE(2374), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4776), 2, + STATE(5702), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - [231818] = 18, + [235371] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6018), 1, + ACTIONS(6363), 1, anon_sym_LBRACE, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(9424), 1, + ACTIONS(8022), 1, anon_sym_COLON_COLON, - ACTIONS(9642), 1, + ACTIONS(9662), 1, sym_identifier, - STATE(1816), 1, + STATE(2598), 1, sym_template_type, - STATE(1883), 1, - sym__class_declaration_item, - STATE(2336), 1, + STATE(2614), 1, sym_field_declaration_list, - STATE(6626), 1, + STATE(2702), 1, + sym__class_declaration_item, + STATE(6738), 1, sym__scope_resolution, - STATE(6997), 1, + STATE(7141), 1, sym_virtual_specifier, - STATE(7837), 1, + STATE(7773), 1, sym_base_class_clause, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2107), 2, + STATE(2374), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5548), 2, + STATE(4831), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - [231877] = 18, + [235430] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6018), 1, + ACTIONS(6363), 1, anon_sym_LBRACE, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(7959), 1, + ACTIONS(8022), 1, anon_sym_COLON_COLON, - ACTIONS(9627), 1, + ACTIONS(9662), 1, sym_identifier, - STATE(1816), 1, + STATE(2598), 1, sym_template_type, - STATE(1880), 1, - sym__class_declaration_item, - STATE(2336), 1, + STATE(2614), 1, sym_field_declaration_list, - STATE(6587), 1, + STATE(2721), 1, + sym__class_declaration_item, + STATE(6738), 1, sym__scope_resolution, - STATE(6997), 1, + STATE(7141), 1, sym_virtual_specifier, - STATE(7837), 1, + STATE(7773), 1, sym_base_class_clause, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2107), 2, + STATE(2374), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4776), 2, + STATE(4831), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - [231936] = 10, + [235489] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10033), 1, - sym_identifier, - ACTIONS(10037), 1, + ACTIONS(9705), 1, + anon_sym_requires, + ACTIONS(9702), 2, + anon_sym_final, + anon_sym_override, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5924), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9700), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9689), 11, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(10039), 1, - anon_sym_defined, - ACTIONS(10150), 1, - anon_sym_RPAREN, - ACTIONS(10152), 1, - sym_number_literal, - ACTIONS(10041), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(10043), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10047), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(5580), 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, - [231979] = 15, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [235526] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(8427), 1, - sym_identifier, - ACTIONS(8429), 1, + ACTIONS(5140), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(5142), 18, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(8431), 1, - anon_sym_STAR, - ACTIONS(8433), 1, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(8435), 1, - anon_sym_AMP, - ACTIONS(10154), 1, anon_sym_SEMI, - STATE(5378), 1, - sym__field_declarator, - STATE(6299), 1, - sym_operator_name, - STATE(8049), 1, - sym_ms_based_modifier, - STATE(8617), 1, - sym_attribute_specifier, - ACTIONS(43), 2, anon_sym___attribute__, - anon_sym___attribute, - STATE(6399), 7, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - sym_reference_field_declarator, - sym_template_method, - [232032] = 18, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [235555] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6540), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(6542), 1, + ACTIONS(6530), 1, anon_sym_LBRACE, - ACTIONS(8081), 1, - anon_sym_COLON_COLON, - ACTIONS(9615), 1, + ACTIONS(9641), 1, sym_identifier, - STATE(1893), 1, + ACTIONS(9660), 1, + anon_sym_COLON_COLON, + STATE(1922), 1, sym_template_type, - STATE(2489), 1, + STATE(2544), 1, sym__class_declaration_item, - STATE(3610), 1, + STATE(2962), 1, sym_field_declaration_list, - STATE(6615), 1, + STATE(6706), 1, sym__scope_resolution, - STATE(7084), 1, + STATE(7126), 1, sym_virtual_specifier, - STATE(7878), 1, + STATE(7712), 1, sym_base_class_clause, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2988), 2, + STATE(4003), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4776), 2, + STATE(5598), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - [232091] = 18, + [235614] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6540), 1, - anon_sym_COLON, - ACTIONS(6542), 1, + ACTIONS(6363), 1, anon_sym_LBRACE, - ACTIONS(8081), 1, + ACTIONS(6528), 1, + anon_sym_COLON, + ACTIONS(8022), 1, anon_sym_COLON_COLON, - ACTIONS(9615), 1, + ACTIONS(9662), 1, sym_identifier, - STATE(1893), 1, + STATE(2598), 1, sym_template_type, - STATE(2492), 1, - sym__class_declaration_item, - STATE(3610), 1, + STATE(2614), 1, sym_field_declaration_list, - STATE(6615), 1, + STATE(2725), 1, + sym__class_declaration_item, + STATE(6738), 1, sym__scope_resolution, - STATE(7084), 1, + STATE(7141), 1, sym_virtual_specifier, - STATE(7878), 1, + STATE(7773), 1, sym_base_class_clause, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2988), 2, + STATE(2374), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5614), 2, + STATE(5707), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - [232150] = 18, + [235673] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5020), 1, - anon_sym_COLON_COLON, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6540), 1, - anon_sym_COLON, - ACTIONS(6542), 1, + ACTIONS(6363), 1, anon_sym_LBRACE, - ACTIONS(9621), 1, + ACTIONS(6528), 1, + anon_sym_COLON, + ACTIONS(8022), 1, + anon_sym_COLON_COLON, + ACTIONS(9662), 1, sym_identifier, - STATE(1893), 1, + STATE(2598), 1, sym_template_type, - STATE(2518), 1, - sym__class_declaration_item, - STATE(2917), 1, + STATE(2614), 1, sym_field_declaration_list, - STATE(6606), 1, + STATE(2743), 1, + sym__class_declaration_item, + STATE(6738), 1, sym__scope_resolution, - STATE(6995), 1, + STATE(7141), 1, sym_virtual_specifier, - STATE(7645), 1, + STATE(7773), 1, sym_base_class_clause, - ACTIONS(5503), 2, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - STATE(2434), 2, + STATE(2374), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4776), 2, + STATE(4831), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8601), 2, - sym_decltype, - sym_dependent_type_identifier, - [232209] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(4535), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4543), 1, - anon_sym_EQ, - ACTIONS(10156), 1, - sym_identifier, - ACTIONS(10158), 1, - anon_sym_STAR, - ACTIONS(10160), 1, - anon_sym_AMP, - ACTIONS(10162), 1, - anon_sym_COLON_COLON, - ACTIONS(10164), 1, - anon_sym_RBRACK, - ACTIONS(10166), 1, - sym_this, - STATE(5858), 1, - sym__scope_resolution, - STATE(7699), 1, - sym_lambda_default_capture, - STATE(8601), 3, + STATE(8569), 2, sym_decltype, - sym_template_type, sym_dependent_type_identifier, - STATE(7222), 5, - sym__lambda_capture_identifier, - sym_lambda_capture_initializer, - sym__lambda_capture, - sym_identifier_parameter_pack_expansion, - sym_qualified_identifier, - [232261] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10066), 1, - anon_sym_SLASH, - ACTIONS(10076), 1, - anon_sym_AMP, - ACTIONS(10170), 1, - anon_sym_PIPE, - ACTIONS(10062), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10064), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(10078), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(10080), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(10082), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(10084), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10168), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - [232305] = 10, + [235732] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10066), 1, - anon_sym_SLASH, - ACTIONS(10062), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10064), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(10078), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(10080), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(10082), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(10084), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10170), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(10168), 5, + ACTIONS(10172), 1, + anon_sym_requires, + ACTIONS(9957), 2, + anon_sym_final, + anon_sym_override, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5874), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9947), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9945), 11, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - [232347] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(8280), 1, - sym_identifier, - ACTIONS(8282), 1, anon_sym_LPAREN2, - ACTIONS(8292), 1, - sym_primitive_type, - ACTIONS(8300), 1, - anon_sym_STAR, - ACTIONS(8302), 1, - anon_sym_AMP_AMP, - ACTIONS(8304), 1, - anon_sym_AMP, - STATE(2220), 1, - sym_pointer_type_declarator, - STATE(6424), 1, - sym__type_declarator, - STATE(6909), 1, - sym__type_definition_declarators, - STATE(8344), 1, - sym_ms_based_modifier, - ACTIONS(8290), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2218), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - [232397] = 9, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [235769] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10066), 1, - anon_sym_SLASH, - ACTIONS(10062), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10064), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(10080), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(10082), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(10084), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10170), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(10168), 7, + ACTIONS(10175), 1, + anon_sym_requires, + ACTIONS(9963), 2, + anon_sym_final, + anon_sym_override, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5912), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9951), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9949), 11, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [232437] = 7, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [235806] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(10066), 1, - anon_sym_SLASH, - ACTIONS(10062), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10064), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(10084), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10170), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(10168), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [232473] = 15, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6528), 1, + anon_sym_COLON, + ACTIONS(6530), 1, + anon_sym_LBRACE, + ACTIONS(9641), 1, + sym_identifier, + ACTIONS(9660), 1, + anon_sym_COLON_COLON, + STATE(1922), 1, + sym_template_type, + STATE(2456), 1, + sym__class_declaration_item, + STATE(2962), 1, + sym_field_declaration_list, + STATE(6706), 1, + sym__scope_resolution, + STATE(7126), 1, + sym_virtual_specifier, + STATE(7712), 1, + sym_base_class_clause, + ACTIONS(5567), 2, + anon_sym_final, + anon_sym_override, + STATE(4003), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4831), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8569), 2, + sym_decltype, + sym_dependent_type_identifier, + [235865] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(4535), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4543), 1, - anon_sym_EQ, - ACTIONS(10156), 1, - sym_identifier, - ACTIONS(10158), 1, - anon_sym_STAR, - ACTIONS(10160), 1, - anon_sym_AMP, - ACTIONS(10162), 1, + ACTIONS(5028), 1, anon_sym_COLON_COLON, - ACTIONS(10166), 1, - sym_this, - ACTIONS(10172), 1, - anon_sym_RBRACK, - STATE(5858), 1, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6528), 1, + anon_sym_COLON, + ACTIONS(6530), 1, + anon_sym_LBRACE, + ACTIONS(9643), 1, + sym_identifier, + STATE(1922), 1, + sym_template_type, + STATE(2544), 1, + sym__class_declaration_item, + STATE(2962), 1, + sym_field_declaration_list, + STATE(6746), 1, sym__scope_resolution, - STATE(7699), 1, - sym_lambda_default_capture, - STATE(8601), 3, + STATE(7126), 1, + sym_virtual_specifier, + STATE(7712), 1, + sym_base_class_clause, + ACTIONS(5567), 2, + anon_sym_final, + anon_sym_override, + STATE(2440), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5570), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8569), 2, sym_decltype, - sym_template_type, sym_dependent_type_identifier, - STATE(7222), 5, - sym__lambda_capture_identifier, - sym_lambda_capture_initializer, - sym__lambda_capture, - sym_identifier_parameter_pack_expansion, - sym_qualified_identifier, - [232525] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10176), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(10174), 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, - [232553] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10066), 1, - anon_sym_SLASH, - ACTIONS(10062), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10064), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(10170), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(10168), 11, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [232587] = 14, + [235924] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(8280), 1, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6035), 1, + anon_sym_LBRACE, + ACTIONS(6528), 1, + anon_sym_COLON, + ACTIONS(9437), 1, + anon_sym_COLON_COLON, + ACTIONS(9654), 1, sym_identifier, - ACTIONS(8282), 1, - anon_sym_LPAREN2, - ACTIONS(8292), 1, - sym_primitive_type, - ACTIONS(8300), 1, - anon_sym_STAR, - ACTIONS(8302), 1, - anon_sym_AMP_AMP, - ACTIONS(8304), 1, - anon_sym_AMP, - STATE(2220), 1, - sym_pointer_type_declarator, - STATE(6424), 1, - sym__type_declarator, - STATE(6906), 1, - sym__type_definition_declarators, - STATE(8344), 1, - sym_ms_based_modifier, - ACTIONS(8290), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2218), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - [232637] = 15, + STATE(1784), 1, + sym_template_type, + STATE(1882), 1, + sym__class_declaration_item, + STATE(2382), 1, + sym_field_declaration_list, + STATE(6699), 1, + sym__scope_resolution, + STATE(7084), 1, + sym_virtual_specifier, + STATE(7872), 1, + sym_base_class_clause, + ACTIONS(5567), 2, + anon_sym_final, + anon_sym_override, + STATE(2031), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5586), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8569), 2, + sym_decltype, + sym_dependent_type_identifier, + [235983] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(4535), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4543), 1, - anon_sym_EQ, - ACTIONS(10156), 1, - sym_identifier, - ACTIONS(10158), 1, - anon_sym_STAR, - ACTIONS(10160), 1, - anon_sym_AMP, - ACTIONS(10162), 1, + ACTIONS(5028), 1, anon_sym_COLON_COLON, - ACTIONS(10166), 1, - sym_this, - ACTIONS(10178), 1, - anon_sym_RBRACK, - STATE(5858), 1, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6528), 1, + anon_sym_COLON, + ACTIONS(6530), 1, + anon_sym_LBRACE, + ACTIONS(9643), 1, + sym_identifier, + STATE(1922), 1, + sym_template_type, + STATE(2456), 1, + sym__class_declaration_item, + STATE(2962), 1, + sym_field_declaration_list, + STATE(6746), 1, sym__scope_resolution, - STATE(7699), 1, - sym_lambda_default_capture, - STATE(8601), 3, + STATE(7126), 1, + sym_virtual_specifier, + STATE(7712), 1, + sym_base_class_clause, + ACTIONS(5567), 2, + anon_sym_final, + anon_sym_override, + STATE(2440), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4831), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8569), 2, sym_decltype, - sym_template_type, sym_dependent_type_identifier, - STATE(7222), 5, - sym__lambda_capture_identifier, - sym_lambda_capture_initializer, - sym__lambda_capture, - sym_identifier_parameter_pack_expansion, - sym_qualified_identifier, - [232689] = 9, + [236042] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(10180), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(8419), 1, sym_identifier, - ACTIONS(10182), 1, + ACTIONS(8421), 1, anon_sym_LPAREN2, - ACTIONS(10184), 1, - anon_sym_defined, - ACTIONS(10190), 1, - sym_number_literal, - ACTIONS(10186), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(10188), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10192), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(5880), 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, - [232729] = 9, + ACTIONS(8423), 1, + anon_sym_STAR, + ACTIONS(8425), 1, + anon_sym_AMP_AMP, + ACTIONS(8427), 1, + anon_sym_AMP, + ACTIONS(10178), 1, + anon_sym_SEMI, + STATE(5450), 1, + sym__field_declarator, + STATE(6445), 1, + sym_operator_name, + STATE(8843), 1, + sym_attribute_specifier, + STATE(8851), 1, + sym_ms_based_modifier, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + STATE(6476), 7, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + sym_reference_field_declarator, + sym_template_method, + [236095] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7067), 1, - anon_sym_DASH_GT, - ACTIONS(7079), 1, - anon_sym_requires, - STATE(5534), 1, - sym_trailing_return_type, - ACTIONS(6020), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(9193), 2, + ACTIONS(1940), 3, anon_sym___attribute, anon_sym_LBRACK, - STATE(5606), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5877), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9182), 9, + anon_sym___asm, + ACTIONS(1938), 18, anon_sym_COMMA, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, anon_sym_try, - [232769] = 21, + anon_sym_requires, + [236124] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, + ACTIONS(1268), 1, + anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(8284), 1, - anon_sym_STAR, - ACTIONS(9943), 1, - anon_sym_TILDE, - ACTIONS(10194), 1, - sym_identifier, - ACTIONS(10196), 1, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6035), 1, + anon_sym_LBRACE, + ACTIONS(6528), 1, + anon_sym_COLON, + ACTIONS(7984), 1, anon_sym_COLON_COLON, - ACTIONS(10198), 1, - anon_sym_template, - ACTIONS(10200), 1, - anon_sym_operator, - STATE(1906), 1, + ACTIONS(9645), 1, + sym_identifier, + STATE(1784), 1, sym_template_type, - STATE(1908), 1, - sym_dependent_type_identifier, - STATE(1909), 1, - sym_qualified_type_identifier, - STATE(2776), 1, - sym_operator_name, - STATE(2782), 1, - sym_destructor_name, - STATE(2786), 1, - sym_dependent_identifier, - STATE(2822), 1, - sym_qualified_identifier, - STATE(2836), 1, - sym_pointer_type_declarator, - STATE(2838), 1, - sym_template_function, - STATE(5654), 1, + STATE(1874), 1, + sym__class_declaration_item, + STATE(2382), 1, + sym_field_declaration_list, + STATE(6727), 1, sym__scope_resolution, - STATE(7984), 1, - sym_ms_based_modifier, - STATE(8601), 1, + STATE(7084), 1, + sym_virtual_specifier, + STATE(7872), 1, + sym_base_class_clause, + ACTIONS(5567), 2, + anon_sym_final, + anon_sym_override, + STATE(2031), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4831), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8569), 2, sym_decltype, - [232833] = 9, + sym_dependent_type_identifier, + [236183] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7067), 1, - anon_sym_DASH_GT, - ACTIONS(7079), 1, - anon_sym_requires, - STATE(5616), 1, - sym_trailing_return_type, - ACTIONS(6020), 2, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(5228), 1, + anon_sym_COLON_COLON, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6528), 1, + anon_sym_COLON, + ACTIONS(6530), 1, + anon_sym_LBRACE, + ACTIONS(9641), 1, + sym_identifier, + STATE(1922), 1, + sym_template_type, + STATE(2515), 1, + sym__class_declaration_item, + STATE(2962), 1, + sym_field_declaration_list, + STATE(6715), 1, + sym__scope_resolution, + STATE(7126), 1, + sym_virtual_specifier, + STATE(7712), 1, + sym_base_class_clause, + ACTIONS(5567), 2, anon_sym_final, anon_sym_override, - ACTIONS(9355), 2, + STATE(2440), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4831), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8569), 2, + sym_decltype, + sym_dependent_type_identifier, + [236242] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 3, anon_sym___attribute, anon_sym_LBRACK, - STATE(5606), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5839), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9344), 9, + anon_sym___asm, + ACTIONS(1934), 18, anon_sym_COMMA, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, anon_sym_try, - [232873] = 9, + anon_sym_requires, + [236271] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(10033), 1, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(113), 1, + anon_sym___asm, + ACTIONS(1872), 1, + anon_sym_LBRACE, + ACTIONS(10063), 1, + anon_sym_COMMA, + ACTIONS(10065), 1, + anon_sym_LPAREN2, + ACTIONS(10071), 1, + anon_sym_LBRACK, + ACTIONS(10073), 1, + anon_sym_EQ, + ACTIONS(10180), 1, + anon_sym_SEMI, + ACTIONS(10182), 1, + anon_sym_try, + STATE(497), 1, + sym_try_statement, + STATE(660), 1, + sym_compound_statement, + STATE(2989), 1, + sym_parameter_list, + STATE(6203), 1, + sym__function_declarator_seq, + STATE(7254), 1, + sym_gnu_asm_expression, + STATE(7266), 1, + aux_sym_declaration_repeat1, + ACTIONS(10075), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6081), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7980), 2, + sym_argument_list, + sym_initializer_list, + [236332] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10184), 1, sym_identifier, - ACTIONS(10037), 1, + ACTIONS(10186), 1, anon_sym_LPAREN2, - ACTIONS(10039), 1, + ACTIONS(10188), 1, anon_sym_defined, - ACTIONS(10202), 1, + ACTIONS(10194), 1, sym_number_literal, - ACTIONS(10041), 2, + ACTIONS(10190), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10043), 2, + ACTIONS(10192), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10047), 5, + ACTIONS(10196), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(5793), 7, + STATE(5964), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -485558,59 +492098,71 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [232913] = 9, + [236372] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(10180), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(8272), 1, + anon_sym_STAR, + ACTIONS(10198), 1, sym_identifier, - ACTIONS(10182), 1, - anon_sym_LPAREN2, - ACTIONS(10184), 1, - anon_sym_defined, - ACTIONS(10204), 1, - sym_number_literal, - ACTIONS(10186), 2, - anon_sym_BANG, + ACTIONS(10200), 1, anon_sym_TILDE, - ACTIONS(10188), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10192), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(5867), 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, - [232953] = 9, + ACTIONS(10202), 1, + anon_sym_COLON_COLON, + ACTIONS(10204), 1, + anon_sym_template, + ACTIONS(10206), 1, + anon_sym_operator, + STATE(1919), 1, + sym_template_type, + STATE(1930), 1, + sym_dependent_type_identifier, + STATE(1932), 1, + sym_qualified_type_identifier, + STATE(2498), 1, + sym_pointer_type_declarator, + STATE(2499), 1, + sym_template_function, + STATE(2506), 1, + sym_destructor_name, + STATE(2507), 1, + sym_dependent_identifier, + STATE(2510), 1, + sym_qualified_identifier, + STATE(2511), 1, + sym_operator_name, + STATE(5721), 1, + sym__scope_resolution, + STATE(8550), 1, + sym_ms_based_modifier, + STATE(8569), 1, + sym_decltype, + [236436] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7067), 1, + ACTIONS(7073), 1, anon_sym_DASH_GT, ACTIONS(7079), 1, anon_sym_requires, - STATE(5491), 1, + STATE(5666), 1, sym_trailing_return_type, - ACTIONS(6020), 2, + ACTIONS(6037), 2, anon_sym_final, anon_sym_override, - ACTIONS(9676), 2, + ACTIONS(9700), 2, anon_sym___attribute, anon_sym_LBRACK, - STATE(5606), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5876), 2, + STATE(5924), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9665), 9, + ACTIONS(9689), 9, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -485620,71 +492172,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [232993] = 21, + [236476] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, + ACTIONS(1268), 1, + anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(8270), 1, - anon_sym_STAR, - ACTIONS(10206), 1, - sym_identifier, + ACTIONS(4543), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4549), 1, + anon_sym_RBRACK, + ACTIONS(4551), 1, + anon_sym_EQ, ACTIONS(10208), 1, - anon_sym_TILDE, + sym_identifier, ACTIONS(10210), 1, - anon_sym_COLON_COLON, + anon_sym_STAR, ACTIONS(10212), 1, - anon_sym_template, + anon_sym_AMP, ACTIONS(10214), 1, - anon_sym_operator, - STATE(1906), 1, + anon_sym_COLON_COLON, + ACTIONS(10216), 1, + sym_this, + STATE(5956), 1, + sym__scope_resolution, + STATE(7761), 1, + sym_lambda_default_capture, + STATE(8569), 3, + sym_decltype, sym_template_type, - STATE(1908), 1, sym_dependent_type_identifier, - STATE(1909), 1, - sym_qualified_type_identifier, - STATE(3225), 1, - sym_pointer_type_declarator, - STATE(3228), 1, - sym_template_function, - STATE(3229), 1, - sym_destructor_name, - STATE(3232), 1, - sym_dependent_identifier, - STATE(3234), 1, + STATE(7462), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, sym_qualified_identifier, - STATE(3238), 1, - sym_operator_name, - STATE(5659), 1, - sym__scope_resolution, - STATE(8601), 1, - sym_decltype, - STATE(8665), 1, - sym_ms_based_modifier, - [233057] = 9, + [236528] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7067), 1, + ACTIONS(7073), 1, anon_sym_DASH_GT, ACTIONS(7079), 1, anon_sym_requires, - STATE(5621), 1, + STATE(5602), 1, sym_trailing_return_type, - ACTIONS(6020), 2, + ACTIONS(6037), 2, anon_sym_final, anon_sym_override, - ACTIONS(9845), 2, + ACTIONS(9947), 2, anon_sym___attribute, anon_sym_LBRACK, - STATE(5606), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5846), 2, + STATE(5874), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9843), 9, + ACTIONS(9945), 9, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -485694,30 +492240,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [233097] = 9, + [236568] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10180), 1, + ACTIONS(10184), 1, sym_identifier, - ACTIONS(10182), 1, + ACTIONS(10186), 1, anon_sym_LPAREN2, - ACTIONS(10184), 1, + ACTIONS(10188), 1, anon_sym_defined, - ACTIONS(10216), 1, + ACTIONS(10218), 1, sym_number_literal, - ACTIONS(10186), 2, + ACTIONS(10190), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10188), 2, + ACTIONS(10192), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10192), 5, + ACTIONS(10196), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(5872), 7, + STATE(5920), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -485725,28 +492271,102 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [233137] = 9, + [236608] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(4543), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4551), 1, + anon_sym_EQ, + ACTIONS(10208), 1, + sym_identifier, + ACTIONS(10210), 1, + anon_sym_STAR, + ACTIONS(10212), 1, + anon_sym_AMP, + ACTIONS(10214), 1, + anon_sym_COLON_COLON, + ACTIONS(10216), 1, + sym_this, + ACTIONS(10220), 1, + anon_sym_RBRACK, + STATE(5956), 1, + sym__scope_resolution, + STATE(7761), 1, + sym_lambda_default_capture, + STATE(8569), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7462), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + [236660] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(4543), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4551), 1, + anon_sym_EQ, + ACTIONS(10208), 1, + sym_identifier, + ACTIONS(10210), 1, + anon_sym_STAR, + ACTIONS(10212), 1, + anon_sym_AMP, + ACTIONS(10214), 1, + anon_sym_COLON_COLON, + ACTIONS(10216), 1, + sym_this, + ACTIONS(10222), 1, + anon_sym_RBRACK, + STATE(5956), 1, + sym__scope_resolution, + STATE(7761), 1, + sym_lambda_default_capture, + STATE(8569), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7462), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + [236712] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7160), 1, + ACTIONS(7312), 1, anon_sym_DASH_GT, - ACTIONS(7301), 1, + ACTIONS(7314), 1, anon_sym_requires, - STATE(5453), 1, + STATE(5526), 1, sym_trailing_return_type, - ACTIONS(6020), 2, + ACTIONS(6037), 2, anon_sym_final, anon_sym_override, - ACTIONS(9193), 2, + ACTIONS(9150), 2, anon_sym_LBRACK, anon_sym___asm, - STATE(5606), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5877), 2, + STATE(5927), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9182), 9, + ACTIONS(9139), 9, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -485756,28 +492376,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_asm, anon_sym___asm__, anon_sym_try, - [233177] = 9, + [236752] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7160), 1, + ACTIONS(7312), 1, anon_sym_DASH_GT, - ACTIONS(7301), 1, + ACTIONS(7314), 1, anon_sym_requires, - STATE(5418), 1, + STATE(5529), 1, sym_trailing_return_type, - ACTIONS(6020), 2, + ACTIONS(6037), 2, anon_sym_final, anon_sym_override, - ACTIONS(9355), 2, + ACTIONS(9382), 2, anon_sym_LBRACK, anon_sym___asm, - STATE(5606), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5839), 2, + STATE(5934), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9344), 9, + ACTIONS(9371), 9, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -485787,28 +492407,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_asm, anon_sym___asm__, anon_sym_try, - [233217] = 9, + [236792] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7918), 1, + anon_sym_LBRACK_LBRACK, + STATE(5804), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9818), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9816), 14, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [236824] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7160), 1, + ACTIONS(7312), 1, anon_sym_DASH_GT, - ACTIONS(7301), 1, + ACTIONS(7314), 1, anon_sym_requires, - STATE(5419), 1, + STATE(5530), 1, sym_trailing_return_type, - ACTIONS(6020), 2, + ACTIONS(6037), 2, anon_sym_final, anon_sym_override, - ACTIONS(9676), 2, + ACTIONS(9700), 2, anon_sym_LBRACK, anon_sym___asm, - STATE(5606), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5876), 2, + STATE(5924), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9665), 9, + ACTIONS(9689), 9, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -485818,28 +492465,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_asm, anon_sym___asm__, anon_sym_try, - [233257] = 9, + [236864] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7160), 1, + ACTIONS(7312), 1, anon_sym_DASH_GT, - ACTIONS(7301), 1, + ACTIONS(7314), 1, anon_sym_requires, - STATE(5420), 1, + STATE(5531), 1, sym_trailing_return_type, - ACTIONS(6020), 2, + ACTIONS(6037), 2, anon_sym_final, anon_sym_override, - ACTIONS(9845), 2, + ACTIONS(9947), 2, anon_sym_LBRACK, anon_sym___asm, - STATE(5606), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5846), 2, + STATE(5874), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9843), 9, + ACTIONS(9945), 9, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -485849,30 +492496,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_asm, anon_sym___asm__, anon_sym_try, - [233297] = 9, + [236904] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10180), 1, + ACTIONS(10184), 1, sym_identifier, - ACTIONS(10182), 1, + ACTIONS(10186), 1, anon_sym_LPAREN2, - ACTIONS(10184), 1, + ACTIONS(10188), 1, anon_sym_defined, - ACTIONS(10218), 1, + ACTIONS(10224), 1, sym_number_literal, - ACTIONS(10186), 2, + ACTIONS(10190), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10188), 2, + ACTIONS(10192), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10192), 5, + ACTIONS(10196), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(5808), 7, + STATE(5919), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -485880,101 +492527,101 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [233337] = 15, + [236944] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(4535), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4541), 1, - anon_sym_RBRACK, ACTIONS(4543), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4551), 1, anon_sym_EQ, - ACTIONS(10156), 1, + ACTIONS(10208), 1, sym_identifier, - ACTIONS(10158), 1, + ACTIONS(10210), 1, anon_sym_STAR, - ACTIONS(10160), 1, + ACTIONS(10212), 1, anon_sym_AMP, - ACTIONS(10162), 1, + ACTIONS(10214), 1, anon_sym_COLON_COLON, - ACTIONS(10166), 1, + ACTIONS(10216), 1, sym_this, - STATE(5858), 1, + ACTIONS(10226), 1, + anon_sym_RBRACK, + STATE(5956), 1, sym__scope_resolution, - STATE(7699), 1, + STATE(7761), 1, sym_lambda_default_capture, - STATE(8601), 3, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(7222), 5, + STATE(7462), 5, sym__lambda_capture_identifier, sym_lambda_capture_initializer, sym__lambda_capture, sym_identifier_parameter_pack_expansion, sym_qualified_identifier, - [233389] = 14, + [236996] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(8280), 1, - sym_identifier, - ACTIONS(8282), 1, - anon_sym_LPAREN2, - ACTIONS(8292), 1, - sym_primitive_type, - ACTIONS(8300), 1, - anon_sym_STAR, - ACTIONS(8302), 1, + ACTIONS(10031), 1, + anon_sym_SLASH, + ACTIONS(10033), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10035), 1, anon_sym_AMP_AMP, - ACTIONS(8304), 1, + ACTIONS(10037), 1, + anon_sym_PIPE, + ACTIONS(10039), 1, + anon_sym_CARET, + ACTIONS(10041), 1, anon_sym_AMP, - STATE(2220), 1, - sym_pointer_type_declarator, - STATE(6424), 1, - sym__type_declarator, - STATE(6866), 1, - sym__type_definition_declarators, - STATE(8344), 1, - sym_ms_based_modifier, - ACTIONS(8290), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2218), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - [233439] = 9, + ACTIONS(10027), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10029), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(10043), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10045), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10047), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(10049), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10228), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [237046] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7067), 1, + ACTIONS(7073), 1, anon_sym_DASH_GT, - ACTIONS(9198), 1, + ACTIONS(9196), 1, anon_sym_requires, - STATE(5514), 1, + STATE(5655), 1, sym_trailing_return_type, - ACTIONS(9193), 2, + ACTIONS(9150), 2, anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(9195), 2, + ACTIONS(9193), 2, anon_sym_final, anon_sym_override, - STATE(5606), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5877), 2, + STATE(5927), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9182), 9, + ACTIONS(9139), 9, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -485984,28 +492631,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [233479] = 9, + [237086] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5020), 1, + anon_sym_LPAREN2, + ACTIONS(8147), 1, + anon_sym_LBRACK, + ACTIONS(8250), 1, + anon_sym_STAR, + ACTIONS(8252), 1, + anon_sym_AMP_AMP, + ACTIONS(8254), 1, + anon_sym_AMP, + ACTIONS(8362), 1, + anon_sym___attribute, + STATE(3371), 1, + sym_parameter_list, + STATE(6109), 1, + sym__function_declarator_seq, + STATE(6599), 1, + sym__abstract_declarator, + STATE(6099), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8360), 6, + anon_sym_COMMA, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [237132] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7067), 1, + ACTIONS(7073), 1, anon_sym_DASH_GT, - ACTIONS(9360), 1, + ACTIONS(9390), 1, anon_sym_requires, - STATE(5544), 1, + STATE(5703), 1, sym_trailing_return_type, - ACTIONS(9355), 2, + ACTIONS(9382), 2, anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(9357), 2, + ACTIONS(9387), 2, anon_sym_final, anon_sym_override, - STATE(5606), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5839), 2, + STATE(5934), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9344), 9, + ACTIONS(9371), 9, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -486015,28 +492696,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [233519] = 9, + [237172] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7067), 1, + ACTIONS(7073), 1, anon_sym_DASH_GT, - ACTIONS(9684), 1, + ACTIONS(9705), 1, anon_sym_requires, - STATE(5554), 1, + STATE(5708), 1, sym_trailing_return_type, - ACTIONS(9676), 2, + ACTIONS(9700), 2, anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(9681), 2, + ACTIONS(9702), 2, anon_sym_final, anon_sym_override, - STATE(5606), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5876), 2, + STATE(5924), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9665), 9, + ACTIONS(9689), 9, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -486046,28 +492727,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [233559] = 9, + [237212] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7067), 1, + ACTIONS(7073), 1, anon_sym_DASH_GT, - ACTIONS(10094), 1, + ACTIONS(10172), 1, anon_sym_requires, - STATE(5555), 1, + STATE(5709), 1, sym_trailing_return_type, - ACTIONS(9845), 2, + ACTIONS(9947), 2, anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(9919), 2, + ACTIONS(9957), 2, anon_sym_final, anon_sym_override, - STATE(5606), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5846), 2, + STATE(5874), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9843), 9, + ACTIONS(9945), 9, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -486077,16 +492758,465 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [233599] = 3, + [237252] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5020), 1, + anon_sym_LPAREN2, + ACTIONS(8147), 1, + anon_sym_LBRACK, + ACTIONS(8236), 1, + anon_sym_STAR, + ACTIONS(8238), 1, + anon_sym_AMP_AMP, + ACTIONS(8240), 1, + anon_sym_AMP, + ACTIONS(8362), 1, + anon_sym___attribute, + STATE(3378), 1, + sym_parameter_list, + STATE(6109), 1, + sym__function_declarator_seq, + STATE(6611), 1, + sym__abstract_declarator, + STATE(6099), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8360), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [237298] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(8322), 1, + anon_sym_STAR, + ACTIONS(10230), 1, + sym_identifier, + ACTIONS(10232), 1, + anon_sym_TILDE, + ACTIONS(10234), 1, + anon_sym_COLON_COLON, + ACTIONS(10236), 1, + anon_sym_template, + ACTIONS(10238), 1, + anon_sym_operator, + STATE(2581), 1, + sym_template_type, + STATE(2582), 1, + sym_dependent_type_identifier, + STATE(2644), 1, + sym_qualified_type_identifier, + STATE(3584), 1, + sym_pointer_type_declarator, + STATE(3588), 1, + sym_template_function, + STATE(3590), 1, + sym_destructor_name, + STATE(3592), 1, + sym_dependent_identifier, + STATE(3596), 1, + sym_qualified_identifier, + STATE(3598), 1, + sym_operator_name, + STATE(5742), 1, + sym__scope_resolution, + STATE(8569), 1, + sym_decltype, + STATE(8597), 1, + sym_ms_based_modifier, + [237362] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7312), 1, + anon_sym_DASH_GT, + ACTIONS(9311), 1, + anon_sym_requires, + STATE(5528), 1, + sym_trailing_return_type, + ACTIONS(9150), 2, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9193), 2, + anon_sym_final, + anon_sym_override, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5927), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9139), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [237402] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7312), 1, + anon_sym_DASH_GT, + ACTIONS(9407), 1, + anon_sym_requires, + STATE(5536), 1, + sym_trailing_return_type, + ACTIONS(9382), 2, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9387), 2, + anon_sym_final, + anon_sym_override, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5934), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9371), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [237442] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7312), 1, + anon_sym_DASH_GT, + ACTIONS(9724), 1, + anon_sym_requires, + STATE(5537), 1, + sym_trailing_return_type, + ACTIONS(9700), 2, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9702), 2, + anon_sym_final, + anon_sym_override, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5924), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9689), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [237482] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7312), 1, + anon_sym_DASH_GT, + ACTIONS(9960), 1, + anon_sym_requires, + STATE(5538), 1, + sym_trailing_return_type, + ACTIONS(9947), 2, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9957), 2, + anon_sym_final, + anon_sym_override, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5874), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9945), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [237522] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(4543), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4551), 1, + anon_sym_EQ, + ACTIONS(10208), 1, + sym_identifier, + ACTIONS(10210), 1, + anon_sym_STAR, + ACTIONS(10212), 1, + anon_sym_AMP, + ACTIONS(10214), 1, + anon_sym_COLON_COLON, + ACTIONS(10216), 1, + sym_this, + ACTIONS(10240), 1, + anon_sym_RBRACK, + STATE(5956), 1, + sym__scope_resolution, + STATE(7761), 1, + sym_lambda_default_capture, + STATE(8569), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7462), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + [237574] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10244), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10242), 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, + [237602] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(8302), 1, + anon_sym_STAR, + ACTIONS(10246), 1, + sym_identifier, + ACTIONS(10248), 1, + anon_sym_TILDE, + ACTIONS(10250), 1, + anon_sym_COLON_COLON, + ACTIONS(10252), 1, + anon_sym_template, + ACTIONS(10254), 1, + anon_sym_operator, + STATE(1919), 1, + sym_template_type, + STATE(1930), 1, + sym_dependent_type_identifier, + STATE(1932), 1, + sym_qualified_type_identifier, + STATE(3553), 1, + sym_pointer_type_declarator, + STATE(3554), 1, + sym_template_function, + STATE(3555), 1, + sym_destructor_name, + STATE(3556), 1, + sym_dependent_identifier, + STATE(3557), 1, + sym_qualified_identifier, + STATE(3558), 1, + sym_operator_name, + STATE(5749), 1, + sym__scope_resolution, + STATE(8189), 1, + sym_ms_based_modifier, + STATE(8569), 1, + sym_decltype, + [237666] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10184), 1, + sym_identifier, + ACTIONS(10186), 1, + anon_sym_LPAREN2, + ACTIONS(10188), 1, + anon_sym_defined, + ACTIONS(10256), 1, + sym_number_literal, + ACTIONS(10190), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10192), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10196), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5936), 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, + [237706] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7081), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7083), 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, + [237734] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10184), 1, + sym_identifier, + ACTIONS(10186), 1, + anon_sym_LPAREN2, + ACTIONS(10188), 1, + anon_sym_defined, + ACTIONS(10258), 1, + sym_number_literal, + ACTIONS(10190), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10192), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10196), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5876), 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, + [237774] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10184), 1, + sym_identifier, + ACTIONS(10186), 1, + anon_sym_LPAREN2, + ACTIONS(10188), 1, + anon_sym_defined, + ACTIONS(10260), 1, + sym_number_literal, + ACTIONS(10190), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10192), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10196), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5938), 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, + [237814] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10264), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10262), 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, + [237842] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10222), 5, + ACTIONS(10268), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(10220), 15, + ACTIONS(10266), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -486102,16 +493232,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [233627] = 3, + [237870] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7036), 5, + ACTIONS(10272), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(7038), 15, + ACTIONS(10270), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -486127,422 +493257,247 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [233655] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(4535), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4543), 1, - anon_sym_EQ, - ACTIONS(10156), 1, - sym_identifier, - ACTIONS(10158), 1, - anon_sym_STAR, - ACTIONS(10160), 1, - anon_sym_AMP, - ACTIONS(10162), 1, - anon_sym_COLON_COLON, - ACTIONS(10166), 1, - sym_this, - ACTIONS(10224), 1, - anon_sym_RBRACK, - STATE(5858), 1, - sym__scope_resolution, - STATE(7699), 1, - sym_lambda_default_capture, - STATE(8601), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(7222), 5, - sym__lambda_capture_identifier, - sym_lambda_capture_initializer, - sym__lambda_capture, - sym_identifier_parameter_pack_expansion, - sym_qualified_identifier, - [233707] = 21, + [237898] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(8284), 1, - anon_sym_STAR, - ACTIONS(10226), 1, + ACTIONS(10087), 1, sym_identifier, - ACTIONS(10228), 1, - anon_sym_TILDE, - ACTIONS(10230), 1, - anon_sym_COLON_COLON, - ACTIONS(10232), 1, - anon_sym_template, - ACTIONS(10234), 1, - anon_sym_operator, - STATE(1813), 1, - sym_template_type, - STATE(1814), 1, - sym_dependent_type_identifier, - STATE(1888), 1, - sym_qualified_type_identifier, - STATE(2414), 1, - sym_pointer_type_declarator, - STATE(2415), 1, - sym_template_function, - STATE(2416), 1, - sym_destructor_name, - STATE(2417), 1, - sym_dependent_identifier, - STATE(2418), 1, - sym_qualified_identifier, - STATE(2419), 1, - sym_operator_name, - STATE(5676), 1, - sym__scope_resolution, - STATE(7984), 1, - sym_ms_based_modifier, - STATE(8601), 1, - sym_decltype, - [233771] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7160), 1, - anon_sym_DASH_GT, - ACTIONS(9281), 1, - anon_sym_requires, - STATE(5447), 1, - sym_trailing_return_type, - ACTIONS(9193), 2, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9195), 2, - anon_sym_final, - anon_sym_override, - STATE(5606), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5877), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9182), 9, - anon_sym_COMMA, + ACTIONS(10091), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_try, - [233811] = 9, + ACTIONS(10093), 1, + anon_sym_defined, + ACTIONS(10274), 1, + sym_number_literal, + ACTIONS(10095), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10097), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10101), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5852), 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, + [237938] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7160), 1, - anon_sym_DASH_GT, - ACTIONS(9376), 1, - anon_sym_requires, - STATE(5448), 1, - sym_trailing_return_type, - ACTIONS(9355), 2, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9357), 2, - anon_sym_final, - anon_sym_override, - STATE(5606), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5839), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9344), 9, - anon_sym_COMMA, + ACTIONS(10087), 1, + sym_identifier, + ACTIONS(10091), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_try, - [233851] = 9, + ACTIONS(10093), 1, + anon_sym_defined, + ACTIONS(10276), 1, + sym_number_literal, + ACTIONS(10095), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10097), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10101), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5853), 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, + [237978] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7160), 1, - anon_sym_DASH_GT, - ACTIONS(9696), 1, - anon_sym_requires, - STATE(5450), 1, - sym_trailing_return_type, - ACTIONS(9676), 2, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9681), 2, - anon_sym_final, - anon_sym_override, - STATE(5606), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5876), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9665), 9, - anon_sym_COMMA, + ACTIONS(10087), 1, + sym_identifier, + ACTIONS(10091), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_try, - [233891] = 9, + ACTIONS(10093), 1, + anon_sym_defined, + ACTIONS(10278), 1, + sym_number_literal, + ACTIONS(10095), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10097), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10101), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5854), 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, + [238018] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7160), 1, - anon_sym_DASH_GT, - ACTIONS(9922), 1, - anon_sym_requires, - STATE(5452), 1, - sym_trailing_return_type, - ACTIONS(9845), 2, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9919), 2, - anon_sym_final, - anon_sym_override, - STATE(5606), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5846), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9843), 9, - anon_sym_COMMA, + ACTIONS(10087), 1, + sym_identifier, + ACTIONS(10091), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_try, - [233931] = 15, + ACTIONS(10093), 1, + anon_sym_defined, + ACTIONS(10280), 1, + sym_number_literal, + ACTIONS(10095), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10097), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10101), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5855), 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, + [238058] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(4535), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4543), 1, - anon_sym_EQ, - ACTIONS(10156), 1, + ACTIONS(10087), 1, sym_identifier, - ACTIONS(10158), 1, - anon_sym_STAR, - ACTIONS(10160), 1, - anon_sym_AMP, - ACTIONS(10162), 1, - anon_sym_COLON_COLON, - ACTIONS(10166), 1, - sym_this, - ACTIONS(10236), 1, - anon_sym_RBRACK, - STATE(5858), 1, - sym__scope_resolution, - STATE(7699), 1, - sym_lambda_default_capture, - STATE(8601), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(7222), 5, - sym__lambda_capture_identifier, - sym_lambda_capture_initializer, - sym__lambda_capture, - sym_identifier_parameter_pack_expansion, - sym_qualified_identifier, - [233983] = 15, + ACTIONS(10091), 1, + anon_sym_LPAREN2, + ACTIONS(10093), 1, + anon_sym_defined, + ACTIONS(10282), 1, + sym_number_literal, + ACTIONS(10095), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10097), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10101), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5856), 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, + [238098] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(4535), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4543), 1, - anon_sym_EQ, - ACTIONS(10156), 1, + ACTIONS(10087), 1, sym_identifier, - ACTIONS(10158), 1, - anon_sym_STAR, - ACTIONS(10160), 1, - anon_sym_AMP, - ACTIONS(10162), 1, - anon_sym_COLON_COLON, - ACTIONS(10166), 1, - sym_this, - ACTIONS(10238), 1, - anon_sym_RBRACK, - STATE(5858), 1, - sym__scope_resolution, - STATE(7699), 1, - sym_lambda_default_capture, - STATE(8601), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(7222), 5, - sym__lambda_capture_identifier, - sym_lambda_capture_initializer, - sym__lambda_capture, - sym_identifier_parameter_pack_expansion, - sym_qualified_identifier, - [234035] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5012), 1, + ACTIONS(10091), 1, anon_sym_LPAREN2, - ACTIONS(8131), 1, - anon_sym_LBRACK, - ACTIONS(8222), 1, - anon_sym_STAR, - ACTIONS(8224), 1, - anon_sym_AMP_AMP, - ACTIONS(8226), 1, - anon_sym_AMP, - ACTIONS(8308), 1, - anon_sym___attribute, - STATE(3295), 1, - sym_parameter_list, - STATE(6087), 1, - sym__function_declarator_seq, - STATE(6417), 1, - sym__abstract_declarator, - STATE(6092), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8306), 6, - anon_sym_COMMA, - anon_sym___attribute__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [234081] = 15, + ACTIONS(10093), 1, + anon_sym_defined, + ACTIONS(10284), 1, + sym_number_literal, + ACTIONS(10095), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10097), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10101), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5857), 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, + [238138] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(4535), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4543), 1, - anon_sym_EQ, - ACTIONS(10156), 1, + ACTIONS(10087), 1, sym_identifier, - ACTIONS(10158), 1, - anon_sym_STAR, - ACTIONS(10160), 1, - anon_sym_AMP, - ACTIONS(10162), 1, - anon_sym_COLON_COLON, - ACTIONS(10166), 1, - sym_this, - ACTIONS(10240), 1, - anon_sym_RBRACK, - STATE(5858), 1, - sym__scope_resolution, - STATE(7699), 1, - sym_lambda_default_capture, - STATE(8601), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(7222), 5, - sym__lambda_capture_identifier, - sym_lambda_capture_initializer, - sym__lambda_capture, - sym_identifier_parameter_pack_expansion, - sym_qualified_identifier, - [234133] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(2979), 1, + ACTIONS(10091), 1, + anon_sym_LPAREN2, + ACTIONS(10093), 1, + anon_sym_defined, + ACTIONS(10286), 1, + sym_number_literal, + ACTIONS(10095), 2, + anon_sym_BANG, anon_sym_TILDE, - ACTIONS(5028), 1, - anon_sym_COLON_COLON, - ACTIONS(8300), 1, - anon_sym_STAR, - ACTIONS(10242), 1, - sym_identifier, - ACTIONS(10244), 1, - anon_sym_template, - STATE(1906), 1, - sym_template_type, - STATE(1908), 1, - sym_dependent_type_identifier, - STATE(1909), 1, - sym_qualified_type_identifier, - STATE(2776), 1, - sym_operator_name, - STATE(2782), 1, - sym_destructor_name, - STATE(2786), 1, - sym_dependent_identifier, - STATE(2822), 1, - sym_qualified_identifier, - STATE(2836), 1, - sym_pointer_type_declarator, - STATE(2838), 1, - sym_template_function, - STATE(5685), 1, - sym__scope_resolution, - STATE(8344), 1, - sym_ms_based_modifier, - STATE(8601), 1, - sym_decltype, - [234197] = 9, + ACTIONS(10097), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10101), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5858), 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, + [238178] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10180), 1, + ACTIONS(10087), 1, sym_identifier, - ACTIONS(10182), 1, + ACTIONS(10091), 1, anon_sym_LPAREN2, - ACTIONS(10184), 1, + ACTIONS(10093), 1, anon_sym_defined, - ACTIONS(10246), 1, + ACTIONS(10288), 1, sym_number_literal, - ACTIONS(10186), 2, + ACTIONS(10095), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10188), 2, + ACTIONS(10097), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10192), 5, + ACTIONS(10101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(5840), 7, + STATE(5859), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -486550,564 +493505,395 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [234237] = 5, + [238218] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10248), 1, - anon_sym_LBRACK_LBRACK, - STATE(5687), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(2051), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(6235), 14, - anon_sym_COMMA, + ACTIONS(10087), 1, + sym_identifier, + ACTIONS(10091), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [234269] = 5, + ACTIONS(10093), 1, + anon_sym_defined, + ACTIONS(10290), 1, + sym_number_literal, + ACTIONS(10095), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10097), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10101), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5860), 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, + [238258] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7838), 1, - anon_sym_LBRACK_LBRACK, - STATE(5687), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(9797), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9795), 14, - anon_sym_COMMA, + ACTIONS(10087), 1, + sym_identifier, + ACTIONS(10091), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [234301] = 15, + ACTIONS(10093), 1, + anon_sym_defined, + ACTIONS(10292), 1, + sym_number_literal, + ACTIONS(10095), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10097), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10101), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5861), 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, + [238298] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(4535), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4543), 1, - anon_sym_EQ, - ACTIONS(10156), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(8268), 1, sym_identifier, - ACTIONS(10158), 1, + ACTIONS(8270), 1, + anon_sym_LPAREN2, + ACTIONS(8282), 1, + sym_primitive_type, + ACTIONS(8338), 1, anon_sym_STAR, - ACTIONS(10160), 1, + ACTIONS(8340), 1, + anon_sym_AMP_AMP, + ACTIONS(8342), 1, anon_sym_AMP, - ACTIONS(10162), 1, - anon_sym_COLON_COLON, - ACTIONS(10166), 1, - sym_this, - ACTIONS(10251), 1, - anon_sym_RBRACK, - STATE(5858), 1, - sym__scope_resolution, - STATE(7699), 1, - sym_lambda_default_capture, - STATE(8601), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(7222), 5, - sym__lambda_capture_identifier, - sym_lambda_capture_initializer, - sym__lambda_capture, - sym_identifier_parameter_pack_expansion, - sym_qualified_identifier, - [234353] = 15, + STATE(1971), 1, + sym_pointer_type_declarator, + STATE(6526), 1, + sym__type_declarator, + STATE(7026), 1, + sym__type_definition_declarators, + STATE(8477), 1, + sym_ms_based_modifier, + ACTIONS(8280), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1985), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [238348] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(4535), 1, - anon_sym_DOT_DOT_DOT, ACTIONS(4543), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4551), 1, anon_sym_EQ, - ACTIONS(10156), 1, + ACTIONS(10208), 1, sym_identifier, - ACTIONS(10158), 1, + ACTIONS(10210), 1, anon_sym_STAR, - ACTIONS(10160), 1, + ACTIONS(10212), 1, anon_sym_AMP, - ACTIONS(10162), 1, + ACTIONS(10214), 1, anon_sym_COLON_COLON, - ACTIONS(10166), 1, + ACTIONS(10216), 1, sym_this, - ACTIONS(10253), 1, + ACTIONS(10294), 1, anon_sym_RBRACK, - STATE(5858), 1, + STATE(5956), 1, sym__scope_resolution, - STATE(7699), 1, + STATE(7761), 1, sym_lambda_default_capture, - STATE(8601), 3, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(7222), 5, + STATE(7462), 5, sym__lambda_capture_identifier, sym_lambda_capture_initializer, sym__lambda_capture, sym_identifier_parameter_pack_expansion, sym_qualified_identifier, - [234405] = 15, + [238400] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, - anon_sym_template, + ACTIONS(53), 1, + anon_sym___based, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(4535), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4543), 1, - anon_sym_EQ, - ACTIONS(10156), 1, - sym_identifier, - ACTIONS(10158), 1, + ACTIONS(8322), 1, anon_sym_STAR, - ACTIONS(10160), 1, - anon_sym_AMP, - ACTIONS(10162), 1, + ACTIONS(10232), 1, + anon_sym_TILDE, + ACTIONS(10238), 1, + anon_sym_operator, + ACTIONS(10296), 1, + sym_identifier, + ACTIONS(10298), 1, anon_sym_COLON_COLON, - ACTIONS(10166), 1, - sym_this, - ACTIONS(10255), 1, - anon_sym_RBRACK, - STATE(5858), 1, - sym__scope_resolution, - STATE(7699), 1, - sym_lambda_default_capture, - STATE(8601), 3, - sym_decltype, + ACTIONS(10300), 1, + anon_sym_template, + STATE(1919), 1, sym_template_type, + STATE(1930), 1, sym_dependent_type_identifier, - STATE(7222), 5, - sym__lambda_capture_identifier, - sym_lambda_capture_initializer, - sym__lambda_capture, - sym_identifier_parameter_pack_expansion, + STATE(1932), 1, + sym_qualified_type_identifier, + STATE(3584), 1, + sym_pointer_type_declarator, + STATE(3588), 1, + sym_template_function, + STATE(3590), 1, + sym_destructor_name, + STATE(3592), 1, + sym_dependent_identifier, + STATE(3596), 1, sym_qualified_identifier, - [234457] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5012), 1, - anon_sym_LPAREN2, - ACTIONS(8131), 1, - anon_sym_LBRACK, - ACTIONS(8195), 1, - anon_sym_STAR, - ACTIONS(8197), 1, - anon_sym_AMP_AMP, - ACTIONS(8199), 1, - anon_sym_AMP, - STATE(2994), 1, - sym_parameter_list, - STATE(6087), 1, - sym__function_declarator_seq, - STATE(6409), 1, - sym__abstract_declarator, - STATE(6092), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8306), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [234501] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(4535), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4543), 1, - anon_sym_EQ, - ACTIONS(10156), 1, - sym_identifier, - ACTIONS(10158), 1, - anon_sym_STAR, - ACTIONS(10160), 1, - anon_sym_AMP, - ACTIONS(10162), 1, - anon_sym_COLON_COLON, - ACTIONS(10166), 1, - sym_this, - ACTIONS(10257), 1, - anon_sym_RBRACK, - STATE(5858), 1, + STATE(3598), 1, + sym_operator_name, + STATE(5769), 1, sym__scope_resolution, - STATE(7699), 1, - sym_lambda_default_capture, - STATE(8601), 3, + STATE(8569), 1, sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(7222), 5, - sym__lambda_capture_identifier, - sym_lambda_capture_initializer, - sym__lambda_capture, - sym_identifier_parameter_pack_expansion, - sym_qualified_identifier, - [234553] = 14, + STATE(8597), 1, + sym_ms_based_modifier, + [238464] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8280), 1, + ACTIONS(8268), 1, sym_identifier, - ACTIONS(8282), 1, + ACTIONS(8270), 1, anon_sym_LPAREN2, - ACTIONS(8292), 1, + ACTIONS(8282), 1, sym_primitive_type, - ACTIONS(8300), 1, + ACTIONS(8338), 1, anon_sym_STAR, - ACTIONS(8302), 1, + ACTIONS(8340), 1, anon_sym_AMP_AMP, - ACTIONS(8304), 1, + ACTIONS(8342), 1, anon_sym_AMP, - STATE(2220), 1, + STATE(1971), 1, sym_pointer_type_declarator, - STATE(6424), 1, + STATE(6526), 1, sym__type_declarator, - STATE(6918), 1, + STATE(7030), 1, sym__type_definition_declarators, - STATE(8344), 1, + STATE(8477), 1, sym_ms_based_modifier, - ACTIONS(8290), 4, + ACTIONS(8280), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2218), 5, + STATE(1985), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, sym_reference_type_declarator, - [234603] = 15, + [238514] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(4535), 1, - anon_sym_DOT_DOT_DOT, ACTIONS(4543), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4551), 1, anon_sym_EQ, - ACTIONS(10156), 1, + ACTIONS(10208), 1, sym_identifier, - ACTIONS(10158), 1, + ACTIONS(10210), 1, anon_sym_STAR, - ACTIONS(10160), 1, + ACTIONS(10212), 1, anon_sym_AMP, - ACTIONS(10162), 1, + ACTIONS(10214), 1, anon_sym_COLON_COLON, - ACTIONS(10166), 1, + ACTIONS(10216), 1, sym_this, - ACTIONS(10259), 1, + ACTIONS(10302), 1, anon_sym_RBRACK, - STATE(5858), 1, + STATE(5956), 1, sym__scope_resolution, - STATE(7699), 1, + STATE(7761), 1, sym_lambda_default_capture, - STATE(8601), 3, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(7222), 5, + STATE(7462), 5, sym__lambda_capture_identifier, sym_lambda_capture_initializer, sym__lambda_capture, sym_identifier_parameter_pack_expansion, sym_qualified_identifier, - [234655] = 14, + [238566] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8280), 1, + ACTIONS(8268), 1, sym_identifier, - ACTIONS(8282), 1, + ACTIONS(8270), 1, anon_sym_LPAREN2, - ACTIONS(8292), 1, + ACTIONS(8282), 1, sym_primitive_type, - ACTIONS(8300), 1, + ACTIONS(8338), 1, anon_sym_STAR, - ACTIONS(8302), 1, + ACTIONS(8340), 1, anon_sym_AMP_AMP, - ACTIONS(8304), 1, + ACTIONS(8342), 1, anon_sym_AMP, - STATE(2220), 1, + STATE(1971), 1, sym_pointer_type_declarator, - STATE(6424), 1, + STATE(6526), 1, sym__type_declarator, - STATE(6848), 1, + STATE(6957), 1, sym__type_definition_declarators, - STATE(8344), 1, + STATE(8477), 1, sym_ms_based_modifier, - ACTIONS(8290), 4, + ACTIONS(8280), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2218), 5, + STATE(1985), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, sym_reference_type_declarator, - [234705] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10263), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(10261), 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, - [234733] = 15, + [238616] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(4535), 1, - anon_sym_DOT_DOT_DOT, ACTIONS(4543), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4551), 1, anon_sym_EQ, - ACTIONS(10156), 1, + ACTIONS(10208), 1, sym_identifier, - ACTIONS(10158), 1, + ACTIONS(10210), 1, anon_sym_STAR, - ACTIONS(10160), 1, + ACTIONS(10212), 1, anon_sym_AMP, - ACTIONS(10162), 1, + ACTIONS(10214), 1, anon_sym_COLON_COLON, - ACTIONS(10166), 1, + ACTIONS(10216), 1, sym_this, - ACTIONS(10265), 1, + ACTIONS(10304), 1, anon_sym_RBRACK, - STATE(5858), 1, + STATE(5956), 1, sym__scope_resolution, - STATE(7699), 1, + STATE(7761), 1, sym_lambda_default_capture, - STATE(8601), 3, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(7222), 5, + STATE(7462), 5, sym__lambda_capture_identifier, sym_lambda_capture_initializer, sym__lambda_capture, sym_identifier_parameter_pack_expansion, sym_qualified_identifier, - [234785] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10269), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(10267), 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, - [234813] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10033), 1, - sym_identifier, - ACTIONS(10037), 1, - anon_sym_LPAREN2, - ACTIONS(10039), 1, - anon_sym_defined, - ACTIONS(10271), 1, - sym_number_literal, - ACTIONS(10041), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(10043), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10047), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(5766), 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, - [234853] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7079), 1, - anon_sym_requires, - ACTIONS(7179), 1, - anon_sym_DASH_GT, - STATE(5534), 1, - sym_trailing_return_type, - ACTIONS(6020), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(9193), 2, - anon_sym_LBRACK, - anon_sym___asm, - STATE(5606), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5877), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9182), 9, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [234893] = 21, + [238668] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(8270), 1, + ACTIONS(8272), 1, anon_sym_STAR, - ACTIONS(10273), 1, - sym_identifier, - ACTIONS(10275), 1, + ACTIONS(10200), 1, anon_sym_TILDE, - ACTIONS(10277), 1, + ACTIONS(10206), 1, + anon_sym_operator, + ACTIONS(10306), 1, + sym_identifier, + ACTIONS(10308), 1, anon_sym_COLON_COLON, - ACTIONS(10279), 1, + ACTIONS(10310), 1, anon_sym_template, - ACTIONS(10281), 1, - anon_sym_operator, - STATE(1813), 1, + STATE(1919), 1, sym_template_type, - STATE(1814), 1, + STATE(1930), 1, sym_dependent_type_identifier, - STATE(1888), 1, + STATE(1932), 1, sym_qualified_type_identifier, - STATE(3527), 1, + STATE(2498), 1, sym_pointer_type_declarator, - STATE(3529), 1, + STATE(2499), 1, sym_template_function, - STATE(3530), 1, + STATE(2506), 1, sym_destructor_name, - STATE(3531), 1, + STATE(2507), 1, sym_dependent_identifier, - STATE(3532), 1, + STATE(2510), 1, sym_qualified_identifier, - STATE(3533), 1, + STATE(2511), 1, sym_operator_name, - STATE(5702), 1, + STATE(5774), 1, sym__scope_resolution, - STATE(8601), 1, - sym_decltype, - STATE(8665), 1, + STATE(8550), 1, sym_ms_based_modifier, - [234957] = 9, + STATE(8569), 1, + sym_decltype, + [238732] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(7079), 1, anon_sym_requires, - ACTIONS(7179), 1, + ACTIONS(7318), 1, anon_sym_DASH_GT, - STATE(5616), 1, + STATE(5671), 1, sym_trailing_return_type, - ACTIONS(6020), 2, + ACTIONS(6037), 2, anon_sym_final, anon_sym_override, - ACTIONS(9355), 2, + ACTIONS(9150), 2, anon_sym_LBRACK, anon_sym___asm, - STATE(5606), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5839), 2, + STATE(5927), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9344), 9, + ACTIONS(9139), 9, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -487117,30 +493903,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [234997] = 9, + [238772] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10033), 1, + ACTIONS(10184), 1, sym_identifier, - ACTIONS(10037), 1, + ACTIONS(10186), 1, anon_sym_LPAREN2, - ACTIONS(10039), 1, + ACTIONS(10188), 1, anon_sym_defined, - ACTIONS(10283), 1, + ACTIONS(10312), 1, sym_number_literal, - ACTIONS(10041), 2, + ACTIONS(10190), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10043), 2, + ACTIONS(10192), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10047), 5, + ACTIONS(10196), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(5767), 7, + STATE(5962), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -487148,86 +493934,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [235037] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10287), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(10285), 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, - [235065] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7079), 1, - anon_sym_requires, - ACTIONS(7179), 1, - anon_sym_DASH_GT, - STATE(5491), 1, - sym_trailing_return_type, - ACTIONS(6020), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(9676), 2, - anon_sym_LBRACK, - anon_sym___asm, - STATE(5606), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5876), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9665), 9, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [235105] = 9, + [238812] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10033), 1, + ACTIONS(10184), 1, sym_identifier, - ACTIONS(10037), 1, + ACTIONS(10186), 1, anon_sym_LPAREN2, - ACTIONS(10039), 1, + ACTIONS(10188), 1, anon_sym_defined, - ACTIONS(10289), 1, + ACTIONS(10314), 1, sym_number_literal, - ACTIONS(10041), 2, + ACTIONS(10190), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10043), 2, + ACTIONS(10192), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10047), 5, + ACTIONS(10196), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(5774), 7, + STATE(5960), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -487235,30 +493965,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [235145] = 9, + [238852] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10033), 1, + ACTIONS(10184), 1, sym_identifier, - ACTIONS(10037), 1, + ACTIONS(10186), 1, anon_sym_LPAREN2, - ACTIONS(10039), 1, + ACTIONS(10188), 1, anon_sym_defined, - ACTIONS(10291), 1, + ACTIONS(10316), 1, sym_number_literal, - ACTIONS(10041), 2, + ACTIONS(10190), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10043), 2, + ACTIONS(10192), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10047), 5, + ACTIONS(10196), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(5780), 7, + STATE(5932), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -487266,28 +493996,28 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [235185] = 9, + [238892] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(7079), 1, anon_sym_requires, - ACTIONS(7179), 1, + ACTIONS(7318), 1, anon_sym_DASH_GT, - STATE(5621), 1, + STATE(5567), 1, sym_trailing_return_type, - ACTIONS(6020), 2, + ACTIONS(6037), 2, anon_sym_final, anon_sym_override, - ACTIONS(9845), 2, + ACTIONS(9382), 2, anon_sym_LBRACK, anon_sym___asm, - STATE(5606), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5846), 2, + STATE(5934), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9843), 9, + ACTIONS(9371), 9, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -487297,30 +494027,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [235225] = 9, + [238932] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10033), 1, + ACTIONS(10184), 1, sym_identifier, - ACTIONS(10037), 1, + ACTIONS(10186), 1, anon_sym_LPAREN2, - ACTIONS(10039), 1, + ACTIONS(10188), 1, anon_sym_defined, - ACTIONS(10293), 1, + ACTIONS(10318), 1, sym_number_literal, - ACTIONS(10041), 2, + ACTIONS(10190), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10043), 2, + ACTIONS(10192), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10047), 5, + ACTIONS(10196), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(5722), 7, + STATE(5930), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -487328,90 +494058,170 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [235265] = 9, + [238972] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(10033), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(2999), 1, + anon_sym_TILDE, + ACTIONS(4318), 1, + anon_sym_COLON_COLON, + ACTIONS(8338), 1, + anon_sym_STAR, + ACTIONS(10320), 1, sym_identifier, - ACTIONS(10037), 1, + ACTIONS(10322), 1, + anon_sym_template, + STATE(1919), 1, + sym_template_type, + STATE(1930), 1, + sym_dependent_type_identifier, + STATE(1932), 1, + sym_qualified_type_identifier, + STATE(2617), 1, + sym_template_function, + STATE(2653), 1, + sym_destructor_name, + STATE(2658), 1, + sym_dependent_identifier, + STATE(2662), 1, + sym_qualified_identifier, + STATE(2665), 1, + sym_operator_name, + STATE(2672), 1, + sym_pointer_type_declarator, + STATE(5781), 1, + sym__scope_resolution, + STATE(8477), 1, + sym_ms_based_modifier, + STATE(8569), 1, + sym_decltype, + [239036] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7079), 1, + anon_sym_requires, + ACTIONS(7318), 1, + anon_sym_DASH_GT, + STATE(5666), 1, + sym_trailing_return_type, + ACTIONS(6037), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(9700), 2, + anon_sym_LBRACK, + anon_sym___asm, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5924), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9689), 9, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(10039), 1, - anon_sym_defined, - ACTIONS(10295), 1, - sym_number_literal, - ACTIONS(10041), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(10043), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10047), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(5642), 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, - [235305] = 9, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + [239076] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10180), 1, - sym_identifier, - ACTIONS(10182), 1, + ACTIONS(7079), 1, + anon_sym_requires, + ACTIONS(7318), 1, + anon_sym_DASH_GT, + STATE(5602), 1, + sym_trailing_return_type, + ACTIONS(6037), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(9947), 2, + anon_sym_LBRACK, + anon_sym___asm, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5874), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9945), 9, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(10184), 1, - anon_sym_defined, - ACTIONS(10297), 1, - sym_number_literal, - ACTIONS(10186), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(10188), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10192), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(5844), 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, - [235345] = 9, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + [239116] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(4543), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4551), 1, + anon_sym_EQ, + ACTIONS(10208), 1, + sym_identifier, + ACTIONS(10210), 1, + anon_sym_STAR, + ACTIONS(10212), 1, + anon_sym_AMP, + ACTIONS(10214), 1, + anon_sym_COLON_COLON, + ACTIONS(10216), 1, + sym_this, + ACTIONS(10324), 1, + anon_sym_RBRACK, + STATE(5956), 1, + sym__scope_resolution, + STATE(7761), 1, + sym_lambda_default_capture, + STATE(8569), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7462), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + [239168] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7179), 1, + ACTIONS(7318), 1, anon_sym_DASH_GT, - ACTIONS(9198), 1, + ACTIONS(9196), 1, anon_sym_requires, - STATE(5514), 1, + STATE(5655), 1, sym_trailing_return_type, - ACTIONS(9193), 2, + ACTIONS(9150), 2, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9195), 2, + ACTIONS(9193), 2, anon_sym_final, anon_sym_override, - STATE(5606), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5877), 2, + STATE(5927), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9182), 9, + ACTIONS(9139), 9, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -487421,28 +494231,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [235385] = 9, + [239208] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7179), 1, + ACTIONS(7318), 1, anon_sym_DASH_GT, - ACTIONS(9360), 1, + ACTIONS(9390), 1, anon_sym_requires, - STATE(5544), 1, + STATE(5703), 1, sym_trailing_return_type, - ACTIONS(9355), 2, + ACTIONS(9382), 2, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9357), 2, + ACTIONS(9387), 2, anon_sym_final, anon_sym_override, - STATE(5606), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5839), 2, + STATE(5934), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9344), 9, + ACTIONS(9371), 9, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -487452,28 +494262,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [235425] = 9, + [239248] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7179), 1, + ACTIONS(7318), 1, anon_sym_DASH_GT, - ACTIONS(9684), 1, + ACTIONS(9705), 1, anon_sym_requires, - STATE(5554), 1, + STATE(5708), 1, sym_trailing_return_type, - ACTIONS(9676), 2, + ACTIONS(9700), 2, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9681), 2, + ACTIONS(9702), 2, anon_sym_final, anon_sym_override, - STATE(5606), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5876), 2, + STATE(5924), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9665), 9, + ACTIONS(9689), 9, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -487483,28 +494293,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [235465] = 9, + [239288] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7179), 1, + ACTIONS(7318), 1, anon_sym_DASH_GT, - ACTIONS(10094), 1, + ACTIONS(10172), 1, anon_sym_requires, - STATE(5555), 1, + STATE(5709), 1, sym_trailing_return_type, - ACTIONS(9845), 2, + ACTIONS(9947), 2, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9919), 2, + ACTIONS(9957), 2, anon_sym_final, anon_sym_override, - STATE(5606), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5846), 2, + STATE(5874), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9843), 9, + ACTIONS(9945), 9, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -487514,123 +494324,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [235505] = 9, + [239328] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10033), 1, - sym_identifier, - ACTIONS(10037), 1, - anon_sym_LPAREN2, - ACTIONS(10039), 1, - anon_sym_defined, - ACTIONS(10299), 1, - sym_number_literal, - ACTIONS(10041), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(10043), 2, + ACTIONS(10328), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10326), 15, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10047), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(5643), 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, - [235545] = 9, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [239356] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(10033), 1, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(4543), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4551), 1, + anon_sym_EQ, + ACTIONS(10208), 1, sym_identifier, - ACTIONS(10037), 1, - anon_sym_LPAREN2, - ACTIONS(10039), 1, - anon_sym_defined, - ACTIONS(10301), 1, - sym_number_literal, - ACTIONS(10041), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(10043), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10047), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(5645), 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, - [235585] = 9, + ACTIONS(10210), 1, + anon_sym_STAR, + ACTIONS(10212), 1, + anon_sym_AMP, + ACTIONS(10214), 1, + anon_sym_COLON_COLON, + ACTIONS(10216), 1, + sym_this, + ACTIONS(10330), 1, + anon_sym_RBRACK, + STATE(5956), 1, + sym__scope_resolution, + STATE(7761), 1, + sym_lambda_default_capture, + STATE(8569), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7462), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + [239408] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(10033), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(8268), 1, sym_identifier, - ACTIONS(10037), 1, + ACTIONS(8270), 1, anon_sym_LPAREN2, - ACTIONS(10039), 1, - anon_sym_defined, - ACTIONS(10303), 1, - sym_number_literal, - ACTIONS(10041), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(10043), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10047), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(5646), 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, - [235625] = 9, + ACTIONS(8282), 1, + sym_primitive_type, + ACTIONS(8338), 1, + anon_sym_STAR, + ACTIONS(8340), 1, + anon_sym_AMP_AMP, + ACTIONS(8342), 1, + anon_sym_AMP, + STATE(1971), 1, + sym_pointer_type_declarator, + STATE(6526), 1, + sym__type_declarator, + STATE(6986), 1, + sym__type_definition_declarators, + STATE(8477), 1, + sym_ms_based_modifier, + ACTIONS(8280), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1985), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [239458] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10033), 1, + ACTIONS(10184), 1, sym_identifier, - ACTIONS(10037), 1, + ACTIONS(10186), 1, anon_sym_LPAREN2, - ACTIONS(10039), 1, + ACTIONS(10188), 1, anon_sym_defined, - ACTIONS(10305), 1, + ACTIONS(10332), 1, sym_number_literal, - ACTIONS(10041), 2, + ACTIONS(10190), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10043), 2, + ACTIONS(10192), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10047), 5, + ACTIONS(10196), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(5649), 7, + STATE(5941), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -487638,131 +494453,102 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [235665] = 9, + [239498] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(10033), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(8268), 1, sym_identifier, - ACTIONS(10037), 1, + ACTIONS(8270), 1, anon_sym_LPAREN2, - ACTIONS(10039), 1, - anon_sym_defined, - ACTIONS(10307), 1, - sym_number_literal, - ACTIONS(10041), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(10043), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10047), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(5871), 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, - [235705] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10066), 1, - anon_sym_SLASH, - ACTIONS(10074), 1, - anon_sym_CARET, - ACTIONS(10076), 1, - anon_sym_AMP, - ACTIONS(10170), 1, - anon_sym_PIPE, - ACTIONS(10062), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10064), 2, + ACTIONS(8282), 1, + sym_primitive_type, + ACTIONS(8338), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(10078), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(10080), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(10082), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(10084), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10168), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, + ACTIONS(8340), 1, anon_sym_AMP_AMP, - [235751] = 14, + ACTIONS(8342), 1, + anon_sym_AMP, + STATE(1971), 1, + sym_pointer_type_declarator, + STATE(6526), 1, + sym__type_declarator, + STATE(6960), 1, + sym__type_definition_declarators, + STATE(8477), 1, + sym_ms_based_modifier, + ACTIONS(8280), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1985), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [239548] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8280), 1, + ACTIONS(8268), 1, sym_identifier, - ACTIONS(8282), 1, + ACTIONS(8270), 1, anon_sym_LPAREN2, - ACTIONS(8292), 1, + ACTIONS(8282), 1, sym_primitive_type, - ACTIONS(8300), 1, + ACTIONS(8338), 1, anon_sym_STAR, - ACTIONS(8302), 1, + ACTIONS(8340), 1, anon_sym_AMP_AMP, - ACTIONS(8304), 1, + ACTIONS(8342), 1, anon_sym_AMP, - STATE(2220), 1, + STATE(1971), 1, sym_pointer_type_declarator, - STATE(6424), 1, + STATE(6526), 1, sym__type_declarator, - STATE(6912), 1, + STATE(7032), 1, sym__type_definition_declarators, - STATE(8344), 1, + STATE(8477), 1, sym_ms_based_modifier, - ACTIONS(8290), 4, + ACTIONS(8280), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2218), 5, + STATE(1985), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, sym_reference_type_declarator, - [235801] = 9, + [239598] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10180), 1, + ACTIONS(10184), 1, sym_identifier, - ACTIONS(10182), 1, + ACTIONS(10186), 1, anon_sym_LPAREN2, - ACTIONS(10184), 1, + ACTIONS(10188), 1, anon_sym_defined, - ACTIONS(10309), 1, + ACTIONS(10334), 1, sym_number_literal, - ACTIONS(10186), 2, + ACTIONS(10190), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10188), 2, + ACTIONS(10192), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10192), 5, + ACTIONS(10196), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(5823), 7, + STATE(5875), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -487770,73 +494556,73 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [235841] = 21, + [239638] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(8284), 1, + ACTIONS(8272), 1, anon_sym_STAR, - ACTIONS(10228), 1, + ACTIONS(9937), 1, anon_sym_TILDE, - ACTIONS(10234), 1, - anon_sym_operator, - ACTIONS(10311), 1, + ACTIONS(10336), 1, sym_identifier, - ACTIONS(10313), 1, + ACTIONS(10338), 1, anon_sym_COLON_COLON, - ACTIONS(10315), 1, + ACTIONS(10340), 1, anon_sym_template, - STATE(1906), 1, + ACTIONS(10342), 1, + anon_sym_operator, + STATE(1919), 1, sym_template_type, - STATE(1908), 1, + STATE(1930), 1, sym_dependent_type_identifier, - STATE(1909), 1, + STATE(1932), 1, sym_qualified_type_identifier, - STATE(2414), 1, - sym_pointer_type_declarator, - STATE(2415), 1, + STATE(2617), 1, sym_template_function, - STATE(2416), 1, + STATE(2653), 1, sym_destructor_name, - STATE(2417), 1, + STATE(2658), 1, sym_dependent_identifier, - STATE(2418), 1, + STATE(2662), 1, sym_qualified_identifier, - STATE(2419), 1, + STATE(2665), 1, sym_operator_name, - STATE(5725), 1, + STATE(2672), 1, + sym_pointer_type_declarator, + STATE(5796), 1, sym__scope_resolution, - STATE(7984), 1, + STATE(8550), 1, sym_ms_based_modifier, - STATE(8601), 1, + STATE(8569), 1, sym_decltype, - [235905] = 9, + [239702] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10180), 1, + ACTIONS(10184), 1, sym_identifier, - ACTIONS(10182), 1, + ACTIONS(10186), 1, anon_sym_LPAREN2, - ACTIONS(10184), 1, + ACTIONS(10188), 1, anon_sym_defined, - ACTIONS(10317), 1, + ACTIONS(10344), 1, sym_number_literal, - ACTIONS(10186), 2, + ACTIONS(10190), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10188), 2, + ACTIONS(10192), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10192), 5, + ACTIONS(10196), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(5825), 7, + STATE(5937), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -487844,30 +494630,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [235945] = 9, + [239742] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10180), 1, + ACTIONS(10184), 1, sym_identifier, - ACTIONS(10182), 1, + ACTIONS(10186), 1, anon_sym_LPAREN2, - ACTIONS(10184), 1, + ACTIONS(10188), 1, anon_sym_defined, - ACTIONS(10319), 1, + ACTIONS(10346), 1, sym_number_literal, - ACTIONS(10186), 2, + ACTIONS(10190), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10188), 2, + ACTIONS(10192), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10192), 5, + ACTIONS(10196), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(5833), 7, + STATE(5902), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -487875,66 +494661,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [235985] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(8280), 1, - sym_identifier, - ACTIONS(8282), 1, - anon_sym_LPAREN2, - ACTIONS(8292), 1, - sym_primitive_type, - ACTIONS(8300), 1, - anon_sym_STAR, - ACTIONS(8302), 1, - anon_sym_AMP_AMP, - ACTIONS(8304), 1, - anon_sym_AMP, - STATE(2220), 1, - sym_pointer_type_declarator, - STATE(6424), 1, - sym__type_declarator, - STATE(6901), 1, - sym__type_definition_declarators, - STATE(8344), 1, - sym_ms_based_modifier, - ACTIONS(8290), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2218), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - [236035] = 9, + [239782] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10180), 1, + ACTIONS(10184), 1, sym_identifier, - ACTIONS(10182), 1, + ACTIONS(10186), 1, anon_sym_LPAREN2, - ACTIONS(10184), 1, + ACTIONS(10188), 1, anon_sym_defined, - ACTIONS(10321), 1, + ACTIONS(10348), 1, sym_number_literal, - ACTIONS(10186), 2, + ACTIONS(10190), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10188), 2, + ACTIONS(10192), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10192), 5, + ACTIONS(10196), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(5834), 7, + STATE(5910), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -487942,111 +494692,172 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [236075] = 9, + [239822] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(10180), 1, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(4543), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4551), 1, + anon_sym_EQ, + ACTIONS(10208), 1, sym_identifier, - ACTIONS(10182), 1, - anon_sym_LPAREN2, - ACTIONS(10184), 1, - anon_sym_defined, - ACTIONS(10323), 1, - sym_number_literal, - ACTIONS(10186), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(10188), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10192), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(5842), 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, - [236115] = 3, + ACTIONS(10210), 1, + anon_sym_STAR, + ACTIONS(10212), 1, + anon_sym_AMP, + ACTIONS(10214), 1, + anon_sym_COLON_COLON, + ACTIONS(10216), 1, + sym_this, + ACTIONS(10350), 1, + anon_sym_RBRACK, + STATE(5956), 1, + sym__scope_resolution, + STATE(7761), 1, + sym_lambda_default_capture, + STATE(8569), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7462), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + [239874] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(10327), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(10325), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(2999), 1, + anon_sym_TILDE, + ACTIONS(5036), 1, + anon_sym_COLON_COLON, + ACTIONS(8338), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [236143] = 14, + ACTIONS(10352), 1, + sym_identifier, + ACTIONS(10354), 1, + anon_sym_template, + STATE(1919), 1, + sym_template_type, + STATE(1930), 1, + sym_dependent_type_identifier, + STATE(1932), 1, + sym_qualified_type_identifier, + STATE(2617), 1, + sym_template_function, + STATE(2653), 1, + sym_destructor_name, + STATE(2658), 1, + sym_dependent_identifier, + STATE(2662), 1, + sym_qualified_identifier, + STATE(2665), 1, + sym_operator_name, + STATE(2672), 1, + sym_pointer_type_declarator, + STATE(5801), 1, + sym__scope_resolution, + STATE(8477), 1, + sym_ms_based_modifier, + STATE(8569), 1, + sym_decltype, + [239938] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8280), 1, + ACTIONS(8268), 1, sym_identifier, - ACTIONS(8282), 1, + ACTIONS(8270), 1, anon_sym_LPAREN2, - ACTIONS(8292), 1, + ACTIONS(8282), 1, sym_primitive_type, - ACTIONS(8300), 1, + ACTIONS(8338), 1, anon_sym_STAR, - ACTIONS(8302), 1, + ACTIONS(8340), 1, anon_sym_AMP_AMP, - ACTIONS(8304), 1, + ACTIONS(8342), 1, anon_sym_AMP, - STATE(2220), 1, + STATE(1971), 1, sym_pointer_type_declarator, - STATE(6424), 1, + STATE(6526), 1, sym__type_declarator, - STATE(6849), 1, + STATE(6975), 1, sym__type_definition_declarators, - STATE(8344), 1, + STATE(8477), 1, sym_ms_based_modifier, - ACTIONS(8290), 4, + ACTIONS(8280), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2218), 5, + STATE(1985), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, sym_reference_type_declarator, - [236193] = 5, + [239988] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(4543), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4551), 1, + anon_sym_EQ, + ACTIONS(10208), 1, + sym_identifier, + ACTIONS(10210), 1, + anon_sym_STAR, + ACTIONS(10212), 1, + anon_sym_AMP, + ACTIONS(10214), 1, + anon_sym_COLON_COLON, + ACTIONS(10216), 1, + sym_this, + ACTIONS(10356), 1, + anon_sym_RBRACK, + STATE(5956), 1, + sym__scope_resolution, + STATE(7761), 1, + sym_lambda_default_capture, + STATE(8569), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7462), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + [240040] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7838), 1, + ACTIONS(10358), 1, anon_sym_LBRACK_LBRACK, - STATE(5687), 2, + STATE(5804), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(9801), 3, + ACTIONS(2043), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9799), 14, + ACTIONS(6273), 14, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -488061,213 +494872,203 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [236225] = 15, + [240072] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(4535), 1, + ACTIONS(4543), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(4549), 1, + anon_sym_RBRACK, + ACTIONS(4551), 1, + anon_sym_EQ, + ACTIONS(10210), 1, + anon_sym_STAR, + ACTIONS(10212), 1, + anon_sym_AMP, + ACTIONS(10214), 1, + anon_sym_COLON_COLON, + ACTIONS(10216), 1, + sym_this, + ACTIONS(10361), 1, + sym_identifier, + STATE(5956), 1, + sym__scope_resolution, + STATE(7761), 1, + sym_lambda_default_capture, + STATE(8569), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7462), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + [240124] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7918), 1, + anon_sym_LBRACK_LBRACK, + STATE(5804), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9995), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9993), 14, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [240156] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, ACTIONS(4543), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4551), 1, anon_sym_EQ, - ACTIONS(10156), 1, + ACTIONS(10208), 1, sym_identifier, - ACTIONS(10158), 1, + ACTIONS(10210), 1, anon_sym_STAR, - ACTIONS(10160), 1, + ACTIONS(10212), 1, anon_sym_AMP, - ACTIONS(10162), 1, + ACTIONS(10214), 1, anon_sym_COLON_COLON, - ACTIONS(10166), 1, + ACTIONS(10216), 1, sym_this, - ACTIONS(10329), 1, + ACTIONS(10363), 1, anon_sym_RBRACK, - STATE(5858), 1, + STATE(5956), 1, sym__scope_resolution, - STATE(7699), 1, + STATE(7761), 1, sym_lambda_default_capture, - STATE(8601), 3, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(7222), 5, + STATE(7462), 5, sym__lambda_capture_identifier, sym_lambda_capture_initializer, sym__lambda_capture, sym_identifier_parameter_pack_expansion, sym_qualified_identifier, - [236277] = 14, + [240208] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8280), 1, + ACTIONS(8268), 1, sym_identifier, - ACTIONS(8282), 1, + ACTIONS(8270), 1, anon_sym_LPAREN2, - ACTIONS(8292), 1, + ACTIONS(8282), 1, sym_primitive_type, - ACTIONS(8300), 1, + ACTIONS(8338), 1, anon_sym_STAR, - ACTIONS(8302), 1, + ACTIONS(8340), 1, anon_sym_AMP_AMP, - ACTIONS(8304), 1, + ACTIONS(8342), 1, anon_sym_AMP, - STATE(2220), 1, + STATE(1971), 1, sym_pointer_type_declarator, - STATE(6424), 1, + STATE(6526), 1, sym__type_declarator, - STATE(6913), 1, + STATE(7018), 1, sym__type_definition_declarators, - STATE(8344), 1, + STATE(8477), 1, sym_ms_based_modifier, - ACTIONS(8290), 4, + ACTIONS(8280), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2218), 5, + STATE(1985), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, sym_reference_type_declarator, - [236327] = 14, + [240258] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8280), 1, + ACTIONS(8268), 1, sym_identifier, - ACTIONS(8282), 1, + ACTIONS(8270), 1, anon_sym_LPAREN2, - ACTIONS(8292), 1, + ACTIONS(8282), 1, sym_primitive_type, - ACTIONS(8300), 1, + ACTIONS(8338), 1, anon_sym_STAR, - ACTIONS(8302), 1, + ACTIONS(8340), 1, anon_sym_AMP_AMP, - ACTIONS(8304), 1, + ACTIONS(8342), 1, anon_sym_AMP, - STATE(2220), 1, + STATE(1971), 1, sym_pointer_type_declarator, - STATE(6424), 1, + STATE(6526), 1, sym__type_declarator, - STATE(6920), 1, + STATE(7003), 1, sym__type_definition_declarators, - STATE(8344), 1, + STATE(8477), 1, sym_ms_based_modifier, - ACTIONS(8290), 4, + ACTIONS(8280), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2218), 5, + STATE(1985), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, sym_reference_type_declarator, - [236377] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(8270), 1, - anon_sym_STAR, - ACTIONS(10275), 1, - anon_sym_TILDE, - ACTIONS(10281), 1, - anon_sym_operator, - ACTIONS(10331), 1, - sym_identifier, - ACTIONS(10333), 1, - anon_sym_COLON_COLON, - ACTIONS(10335), 1, - anon_sym_template, - STATE(1906), 1, - sym_template_type, - STATE(1908), 1, - sym_dependent_type_identifier, - STATE(1909), 1, - sym_qualified_type_identifier, - STATE(3527), 1, - sym_pointer_type_declarator, - STATE(3529), 1, - sym_template_function, - STATE(3530), 1, - sym_destructor_name, - STATE(3531), 1, - sym_dependent_identifier, - STATE(3532), 1, - sym_qualified_identifier, - STATE(3533), 1, - sym_operator_name, - STATE(5737), 1, - sym__scope_resolution, - STATE(8601), 1, - sym_decltype, - STATE(8665), 1, - sym_ms_based_modifier, - [236441] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10180), 1, - sym_identifier, - ACTIONS(10182), 1, - anon_sym_LPAREN2, - ACTIONS(10184), 1, - anon_sym_defined, - ACTIONS(10337), 1, - sym_number_literal, - ACTIONS(10186), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(10188), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10192), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(5854), 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, - [236481] = 9, + [240308] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10180), 1, + ACTIONS(10087), 1, sym_identifier, - ACTIONS(10182), 1, + ACTIONS(10091), 1, anon_sym_LPAREN2, - ACTIONS(10184), 1, + ACTIONS(10093), 1, anon_sym_defined, - ACTIONS(10339), 1, + ACTIONS(10365), 1, sym_number_literal, - ACTIONS(10186), 2, + ACTIONS(10095), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10188), 2, + ACTIONS(10097), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10192), 5, + ACTIONS(10101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(5856), 7, + STATE(5735), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -488275,64 +495076,63 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [236521] = 12, + [240348] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5012), 1, + ACTIONS(5020), 1, anon_sym_LPAREN2, - ACTIONS(8131), 1, + ACTIONS(8147), 1, anon_sym_LBRACK, - ACTIONS(8216), 1, + ACTIONS(8230), 1, anon_sym_STAR, - ACTIONS(8218), 1, + ACTIONS(8232), 1, anon_sym_AMP_AMP, - ACTIONS(8220), 1, + ACTIONS(8234), 1, anon_sym_AMP, - ACTIONS(8308), 1, - anon_sym___attribute, - STATE(3299), 1, + STATE(3086), 1, sym_parameter_list, - STATE(6087), 1, + STATE(6109), 1, sym__function_declarator_seq, - STATE(6466), 1, + STATE(6539), 1, sym__abstract_declarator, - STATE(6092), 5, + STATE(6099), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8306), 6, + ACTIONS(8360), 7, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym___attribute__, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_final, anon_sym_override, anon_sym_requires, - [236567] = 9, + [240392] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10180), 1, + ACTIONS(10184), 1, sym_identifier, - ACTIONS(10182), 1, + ACTIONS(10186), 1, anon_sym_LPAREN2, - ACTIONS(10184), 1, + ACTIONS(10188), 1, anon_sym_defined, - ACTIONS(10341), 1, + ACTIONS(10367), 1, sym_number_literal, - ACTIONS(10186), 2, + ACTIONS(10190), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10188), 2, + ACTIONS(10192), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10192), 5, + ACTIONS(10196), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(5826), 7, + STATE(5945), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -488340,589 +495140,467 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [236607] = 9, + [240432] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(10180), 1, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(4543), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4551), 1, + anon_sym_EQ, + ACTIONS(10208), 1, sym_identifier, - ACTIONS(10182), 1, - anon_sym_LPAREN2, - ACTIONS(10184), 1, - anon_sym_defined, - ACTIONS(10343), 1, - sym_number_literal, - ACTIONS(10186), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(10188), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10192), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(5821), 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, - [236647] = 9, + ACTIONS(10210), 1, + anon_sym_STAR, + ACTIONS(10212), 1, + anon_sym_AMP, + ACTIONS(10214), 1, + anon_sym_COLON_COLON, + ACTIONS(10216), 1, + sym_this, + ACTIONS(10369), 1, + anon_sym_RBRACK, + STATE(5956), 1, + sym__scope_resolution, + STATE(7761), 1, + sym_lambda_default_capture, + STATE(8569), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7462), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + [240484] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10180), 1, - sym_identifier, - ACTIONS(10182), 1, + ACTIONS(7073), 1, + anon_sym_DASH_GT, + ACTIONS(7079), 1, + anon_sym_requires, + STATE(5567), 1, + sym_trailing_return_type, + ACTIONS(6037), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(9382), 2, + anon_sym___attribute, + anon_sym_LBRACK, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5934), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9371), 9, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(10184), 1, - anon_sym_defined, - ACTIONS(10345), 1, - sym_number_literal, - ACTIONS(10186), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(10188), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10192), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(5824), 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, - [236687] = 14, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [240524] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8280), 1, + ACTIONS(8268), 1, sym_identifier, - ACTIONS(8282), 1, + ACTIONS(8270), 1, anon_sym_LPAREN2, - ACTIONS(8292), 1, + ACTIONS(8282), 1, sym_primitive_type, - ACTIONS(8300), 1, + ACTIONS(8338), 1, anon_sym_STAR, - ACTIONS(8302), 1, + ACTIONS(8340), 1, anon_sym_AMP_AMP, - ACTIONS(8304), 1, + ACTIONS(8342), 1, anon_sym_AMP, - STATE(2220), 1, + STATE(1971), 1, sym_pointer_type_declarator, - STATE(6424), 1, + STATE(6526), 1, sym__type_declarator, - STATE(6927), 1, + STATE(7009), 1, sym__type_definition_declarators, - STATE(8344), 1, + STATE(8477), 1, sym_ms_based_modifier, - ACTIONS(8290), 4, + ACTIONS(8280), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2218), 5, + STATE(1985), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, sym_reference_type_declarator, - [236737] = 14, + [240574] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8280), 1, - sym_identifier, - ACTIONS(8282), 1, - anon_sym_LPAREN2, - ACTIONS(8292), 1, - sym_primitive_type, - ACTIONS(8300), 1, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(8272), 1, anon_sym_STAR, - ACTIONS(8302), 1, - anon_sym_AMP_AMP, - ACTIONS(8304), 1, - anon_sym_AMP, - STATE(2220), 1, + ACTIONS(10200), 1, + anon_sym_TILDE, + ACTIONS(10206), 1, + anon_sym_operator, + ACTIONS(10371), 1, + sym_identifier, + ACTIONS(10373), 1, + anon_sym_COLON_COLON, + ACTIONS(10375), 1, + anon_sym_template, + STATE(1919), 1, + sym_template_type, + STATE(1930), 1, + sym_dependent_type_identifier, + STATE(1932), 1, + sym_qualified_type_identifier, + STATE(2498), 1, sym_pointer_type_declarator, - STATE(6424), 1, - sym__type_declarator, - STATE(6921), 1, - sym__type_definition_declarators, - STATE(8344), 1, + STATE(2499), 1, + sym_template_function, + STATE(2506), 1, + sym_destructor_name, + STATE(2507), 1, + sym_dependent_identifier, + STATE(2510), 1, + sym_qualified_identifier, + STATE(2511), 1, + sym_operator_name, + STATE(5816), 1, + sym__scope_resolution, + STATE(8550), 1, sym_ms_based_modifier, - ACTIONS(8290), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2218), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - [236787] = 14, + STATE(8569), 1, + sym_decltype, + [240638] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8280), 1, + ACTIONS(8268), 1, sym_identifier, - ACTIONS(8282), 1, + ACTIONS(8270), 1, anon_sym_LPAREN2, - ACTIONS(8292), 1, + ACTIONS(8282), 1, sym_primitive_type, - ACTIONS(8300), 1, + ACTIONS(8338), 1, anon_sym_STAR, - ACTIONS(8302), 1, + ACTIONS(8340), 1, anon_sym_AMP_AMP, - ACTIONS(8304), 1, + ACTIONS(8342), 1, anon_sym_AMP, - STATE(2220), 1, + STATE(1971), 1, sym_pointer_type_declarator, - STATE(6424), 1, + STATE(6526), 1, sym__type_declarator, - STATE(6907), 1, + STATE(7014), 1, sym__type_definition_declarators, - STATE(8344), 1, + STATE(8477), 1, sym_ms_based_modifier, - ACTIONS(8290), 4, + ACTIONS(8280), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2218), 5, + STATE(1985), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, sym_reference_type_declarator, - [236837] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7838), 1, - anon_sym_LBRACK_LBRACK, - STATE(5687), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(9973), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9971), 14, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [236869] = 15, + [240688] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(4535), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4543), 1, - anon_sym_EQ, - ACTIONS(10156), 1, - sym_identifier, - ACTIONS(10158), 1, - anon_sym_STAR, - ACTIONS(10160), 1, - anon_sym_AMP, - ACTIONS(10162), 1, - anon_sym_COLON_COLON, - ACTIONS(10166), 1, - sym_this, - ACTIONS(10347), 1, - anon_sym_RBRACK, - STATE(5858), 1, - sym__scope_resolution, - STATE(7699), 1, - sym_lambda_default_capture, - STATE(8601), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(7222), 5, - sym__lambda_capture_identifier, - sym_lambda_capture_initializer, - sym__lambda_capture, - sym_identifier_parameter_pack_expansion, - sym_qualified_identifier, - [236921] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(4535), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4543), 1, - anon_sym_EQ, - ACTIONS(10156), 1, + ACTIONS(10087), 1, sym_identifier, - ACTIONS(10158), 1, - anon_sym_STAR, - ACTIONS(10160), 1, - anon_sym_AMP, - ACTIONS(10162), 1, - anon_sym_COLON_COLON, - ACTIONS(10166), 1, - sym_this, - ACTIONS(10349), 1, - anon_sym_RBRACK, - STATE(5858), 1, - sym__scope_resolution, - STATE(7699), 1, - sym_lambda_default_capture, - STATE(8601), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(7222), 5, - sym__lambda_capture_identifier, - sym_lambda_capture_initializer, - sym__lambda_capture, - sym_identifier_parameter_pack_expansion, - sym_qualified_identifier, - [236973] = 21, + ACTIONS(10091), 1, + anon_sym_LPAREN2, + ACTIONS(10093), 1, + anon_sym_defined, + ACTIONS(10377), 1, + sym_number_literal, + ACTIONS(10095), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10097), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10101), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5966), 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, + [240728] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(8240), 1, + ACTIONS(8272), 1, anon_sym_STAR, - ACTIONS(10351), 1, - sym_identifier, - ACTIONS(10353), 1, + ACTIONS(10200), 1, anon_sym_TILDE, - ACTIONS(10355), 1, + ACTIONS(10206), 1, + anon_sym_operator, + ACTIONS(10379), 1, + sym_identifier, + ACTIONS(10381), 1, anon_sym_COLON_COLON, - ACTIONS(10357), 1, + ACTIONS(10383), 1, anon_sym_template, - ACTIONS(10359), 1, - anon_sym_operator, - STATE(2534), 1, + STATE(1805), 1, sym_template_type, - STATE(2556), 1, + STATE(1806), 1, sym_dependent_type_identifier, - STATE(2615), 1, + STATE(1865), 1, sym_qualified_type_identifier, - STATE(3544), 1, - sym_operator_name, - STATE(3641), 1, + STATE(2498), 1, sym_pointer_type_declarator, - STATE(3652), 1, + STATE(2499), 1, sym_template_function, - STATE(3653), 1, + STATE(2506), 1, sym_destructor_name, - STATE(3665), 1, + STATE(2507), 1, sym_dependent_identifier, - STATE(3680), 1, + STATE(2510), 1, sym_qualified_identifier, - STATE(5750), 1, + STATE(2511), 1, + sym_operator_name, + STATE(5819), 1, sym__scope_resolution, - STATE(8601), 1, - sym_decltype, - STATE(8712), 1, + STATE(8550), 1, sym_ms_based_modifier, - [237037] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(4535), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4541), 1, - anon_sym_RBRACK, - ACTIONS(4543), 1, - anon_sym_EQ, - ACTIONS(10158), 1, - anon_sym_STAR, - ACTIONS(10160), 1, - anon_sym_AMP, - ACTIONS(10162), 1, - anon_sym_COLON_COLON, - ACTIONS(10166), 1, - sym_this, - ACTIONS(10361), 1, - sym_identifier, - STATE(5858), 1, - sym__scope_resolution, - STATE(7699), 1, - sym_lambda_default_capture, - STATE(8601), 3, + STATE(8569), 1, sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(7222), 5, - sym__lambda_capture_identifier, - sym_lambda_capture_initializer, - sym__lambda_capture, - sym_identifier_parameter_pack_expansion, - sym_qualified_identifier, - [237089] = 14, + [240792] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8280), 1, + ACTIONS(8268), 1, sym_identifier, - ACTIONS(8282), 1, + ACTIONS(8270), 1, anon_sym_LPAREN2, - ACTIONS(8292), 1, + ACTIONS(8282), 1, sym_primitive_type, - ACTIONS(8300), 1, + ACTIONS(8338), 1, anon_sym_STAR, - ACTIONS(8302), 1, + ACTIONS(8340), 1, anon_sym_AMP_AMP, - ACTIONS(8304), 1, + ACTIONS(8342), 1, anon_sym_AMP, - STATE(2220), 1, + STATE(1971), 1, sym_pointer_type_declarator, - STATE(6424), 1, + STATE(6526), 1, sym__type_declarator, - STATE(6856), 1, + STATE(6958), 1, sym__type_definition_declarators, - STATE(8344), 1, + STATE(8477), 1, sym_ms_based_modifier, - ACTIONS(8290), 4, + ACTIONS(8280), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2218), 5, + STATE(1985), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, sym_reference_type_declarator, - [237139] = 11, + [240842] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(5012), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(8268), 1, + sym_identifier, + ACTIONS(8270), 1, anon_sym_LPAREN2, - ACTIONS(8131), 1, - anon_sym_LBRACK, - ACTIONS(8228), 1, + ACTIONS(8282), 1, + sym_primitive_type, + ACTIONS(8338), 1, anon_sym_STAR, - ACTIONS(8230), 1, + ACTIONS(8340), 1, anon_sym_AMP_AMP, - ACTIONS(8232), 1, + ACTIONS(8342), 1, anon_sym_AMP, - STATE(2998), 1, - sym_parameter_list, - STATE(6087), 1, - sym__function_declarator_seq, - STATE(6452), 1, - sym__abstract_declarator, - STATE(6092), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8306), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [237183] = 14, + STATE(1971), 1, + sym_pointer_type_declarator, + STATE(6526), 1, + sym__type_declarator, + STATE(6997), 1, + sym__type_definition_declarators, + STATE(8477), 1, + sym_ms_based_modifier, + ACTIONS(8280), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1985), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [240892] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8280), 1, + ACTIONS(8268), 1, sym_identifier, - ACTIONS(8282), 1, + ACTIONS(8270), 1, anon_sym_LPAREN2, - ACTIONS(8292), 1, + ACTIONS(8282), 1, sym_primitive_type, - ACTIONS(8300), 1, + ACTIONS(8338), 1, anon_sym_STAR, - ACTIONS(8302), 1, + ACTIONS(8340), 1, anon_sym_AMP_AMP, - ACTIONS(8304), 1, + ACTIONS(8342), 1, anon_sym_AMP, - STATE(2220), 1, + STATE(1971), 1, sym_pointer_type_declarator, - STATE(6424), 1, + STATE(6526), 1, sym__type_declarator, - STATE(6883), 1, + STATE(6966), 1, sym__type_definition_declarators, - STATE(8344), 1, + STATE(8477), 1, sym_ms_based_modifier, - ACTIONS(8290), 4, + ACTIONS(8280), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2218), 5, + STATE(1985), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, sym_reference_type_declarator, - [237233] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10180), 1, - sym_identifier, - ACTIONS(10182), 1, - anon_sym_LPAREN2, - ACTIONS(10184), 1, - anon_sym_defined, - ACTIONS(10363), 1, - sym_number_literal, - ACTIONS(10186), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(10188), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10192), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(5843), 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, - [237273] = 14, + [240942] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8280), 1, + ACTIONS(8268), 1, sym_identifier, - ACTIONS(8282), 1, + ACTIONS(8270), 1, anon_sym_LPAREN2, - ACTIONS(8292), 1, + ACTIONS(8282), 1, sym_primitive_type, - ACTIONS(8300), 1, + ACTIONS(8338), 1, anon_sym_STAR, - ACTIONS(8302), 1, + ACTIONS(8340), 1, anon_sym_AMP_AMP, - ACTIONS(8304), 1, + ACTIONS(8342), 1, anon_sym_AMP, - STATE(2220), 1, + STATE(1971), 1, sym_pointer_type_declarator, - STATE(6424), 1, + STATE(6526), 1, sym__type_declarator, - STATE(6858), 1, + STATE(6989), 1, sym__type_definition_declarators, - STATE(8344), 1, + STATE(8477), 1, sym_ms_based_modifier, - ACTIONS(8290), 4, + ACTIONS(8280), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2218), 5, + STATE(1985), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, sym_reference_type_declarator, - [237323] = 14, + [240992] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8280), 1, + ACTIONS(8268), 1, sym_identifier, - ACTIONS(8282), 1, + ACTIONS(8270), 1, anon_sym_LPAREN2, - ACTIONS(8292), 1, + ACTIONS(8282), 1, sym_primitive_type, - ACTIONS(8300), 1, + ACTIONS(8338), 1, anon_sym_STAR, - ACTIONS(8302), 1, + ACTIONS(8340), 1, anon_sym_AMP_AMP, - ACTIONS(8304), 1, + ACTIONS(8342), 1, anon_sym_AMP, - STATE(2220), 1, + STATE(1971), 1, sym_pointer_type_declarator, - STATE(6424), 1, + STATE(6526), 1, sym__type_declarator, - STATE(6895), 1, + STATE(6982), 1, sym__type_definition_declarators, - STATE(8344), 1, + STATE(8477), 1, sym_ms_based_modifier, - ACTIONS(8290), 4, + ACTIONS(8280), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2218), 5, + STATE(1985), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, sym_reference_type_declarator, - [237373] = 9, + [241042] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10180), 1, + ACTIONS(10184), 1, sym_identifier, - ACTIONS(10182), 1, + ACTIONS(10186), 1, anon_sym_LPAREN2, - ACTIONS(10184), 1, + ACTIONS(10188), 1, anon_sym_defined, - ACTIONS(10365), 1, + ACTIONS(10385), 1, sym_number_literal, - ACTIONS(10186), 2, + ACTIONS(10190), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10188), 2, + ACTIONS(10192), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10192), 5, + ACTIONS(10196), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(5837), 7, + STATE(5921), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -488930,141 +495608,166 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [237413] = 15, + [241082] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(4535), 1, - anon_sym_DOT_DOT_DOT, ACTIONS(4543), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4551), 1, anon_sym_EQ, - ACTIONS(10156), 1, + ACTIONS(10208), 1, sym_identifier, - ACTIONS(10158), 1, + ACTIONS(10210), 1, anon_sym_STAR, - ACTIONS(10160), 1, + ACTIONS(10212), 1, anon_sym_AMP, - ACTIONS(10162), 1, + ACTIONS(10214), 1, anon_sym_COLON_COLON, - ACTIONS(10166), 1, + ACTIONS(10216), 1, sym_this, - ACTIONS(10367), 1, + ACTIONS(10387), 1, anon_sym_RBRACK, - STATE(5858), 1, + STATE(5956), 1, sym__scope_resolution, - STATE(7699), 1, + STATE(7761), 1, sym_lambda_default_capture, - STATE(8601), 3, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(7222), 5, + STATE(7462), 5, sym__lambda_capture_identifier, sym_lambda_capture_initializer, sym__lambda_capture, sym_identifier_parameter_pack_expansion, sym_qualified_identifier, - [237465] = 15, + [241134] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(4535), 1, - anon_sym_DOT_DOT_DOT, ACTIONS(4543), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4551), 1, anon_sym_EQ, - ACTIONS(10156), 1, + ACTIONS(10208), 1, sym_identifier, - ACTIONS(10158), 1, + ACTIONS(10210), 1, anon_sym_STAR, - ACTIONS(10160), 1, + ACTIONS(10212), 1, anon_sym_AMP, - ACTIONS(10162), 1, + ACTIONS(10214), 1, anon_sym_COLON_COLON, - ACTIONS(10166), 1, + ACTIONS(10216), 1, sym_this, - ACTIONS(10369), 1, + ACTIONS(10389), 1, anon_sym_RBRACK, - STATE(5858), 1, + STATE(5956), 1, sym__scope_resolution, - STATE(7699), 1, + STATE(7761), 1, sym_lambda_default_capture, - STATE(8601), 3, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(7222), 5, + STATE(7462), 5, sym__lambda_capture_identifier, sym_lambda_capture_initializer, sym__lambda_capture, sym_identifier_parameter_pack_expansion, sym_qualified_identifier, - [237517] = 15, + [241186] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(4535), 1, - anon_sym_DOT_DOT_DOT, ACTIONS(4543), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4551), 1, anon_sym_EQ, - ACTIONS(10156), 1, + ACTIONS(10208), 1, sym_identifier, - ACTIONS(10158), 1, + ACTIONS(10210), 1, anon_sym_STAR, - ACTIONS(10160), 1, + ACTIONS(10212), 1, anon_sym_AMP, - ACTIONS(10162), 1, + ACTIONS(10214), 1, anon_sym_COLON_COLON, - ACTIONS(10166), 1, + ACTIONS(10216), 1, sym_this, - ACTIONS(10371), 1, + ACTIONS(10391), 1, anon_sym_RBRACK, - STATE(5858), 1, + STATE(5956), 1, sym__scope_resolution, - STATE(7699), 1, + STATE(7761), 1, sym_lambda_default_capture, - STATE(8601), 3, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(7222), 5, + STATE(7462), 5, sym__lambda_capture_identifier, sym_lambda_capture_initializer, sym__lambda_capture, sym_identifier_parameter_pack_expansion, sym_qualified_identifier, - [237569] = 9, + [241238] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10180), 1, + ACTIONS(10395), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10393), 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, + [241266] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10184), 1, sym_identifier, - ACTIONS(10182), 1, + ACTIONS(10186), 1, anon_sym_LPAREN2, - ACTIONS(10184), 1, + ACTIONS(10188), 1, anon_sym_defined, - ACTIONS(10373), 1, + ACTIONS(10397), 1, sym_number_literal, - ACTIONS(10186), 2, + ACTIONS(10190), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10188), 2, + ACTIONS(10192), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10192), 5, + ACTIONS(10196), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(5801), 7, + STATE(5963), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -489072,186 +495775,242 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [237609] = 21, + [241306] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(4543), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4551), 1, + anon_sym_EQ, + ACTIONS(10208), 1, + sym_identifier, + ACTIONS(10210), 1, + anon_sym_STAR, + ACTIONS(10212), 1, + anon_sym_AMP, + ACTIONS(10214), 1, + anon_sym_COLON_COLON, + ACTIONS(10216), 1, + sym_this, + ACTIONS(10399), 1, + anon_sym_RBRACK, + STATE(5956), 1, + sym__scope_resolution, + STATE(7761), 1, + sym_lambda_default_capture, + STATE(8569), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7462), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + [241358] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(4543), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4551), 1, + anon_sym_EQ, + ACTIONS(10208), 1, + sym_identifier, + ACTIONS(10210), 1, + anon_sym_STAR, + ACTIONS(10212), 1, + anon_sym_AMP, + ACTIONS(10214), 1, + anon_sym_COLON_COLON, + ACTIONS(10216), 1, + sym_this, + ACTIONS(10401), 1, + anon_sym_RBRACK, + STATE(5956), 1, + sym__scope_resolution, + STATE(7761), 1, + sym_lambda_default_capture, + STATE(8569), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7462), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + [241410] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(8270), 1, + ACTIONS(8302), 1, anon_sym_STAR, - ACTIONS(10275), 1, + ACTIONS(10248), 1, anon_sym_TILDE, - ACTIONS(10281), 1, + ACTIONS(10254), 1, anon_sym_operator, - ACTIONS(10375), 1, + ACTIONS(10403), 1, sym_identifier, - ACTIONS(10377), 1, + ACTIONS(10405), 1, anon_sym_COLON_COLON, - ACTIONS(10379), 1, + ACTIONS(10407), 1, anon_sym_template, - STATE(1906), 1, + STATE(1919), 1, sym_template_type, - STATE(1908), 1, + STATE(1930), 1, sym_dependent_type_identifier, - STATE(1909), 1, + STATE(1932), 1, sym_qualified_type_identifier, - STATE(3527), 1, + STATE(3553), 1, sym_pointer_type_declarator, - STATE(3529), 1, + STATE(3554), 1, sym_template_function, - STATE(3530), 1, + STATE(3555), 1, sym_destructor_name, - STATE(3531), 1, + STATE(3556), 1, sym_dependent_identifier, - STATE(3532), 1, + STATE(3557), 1, sym_qualified_identifier, - STATE(3533), 1, + STATE(3558), 1, sym_operator_name, - STATE(5763), 1, + STATE(5833), 1, sym__scope_resolution, - STATE(8601), 1, - sym_decltype, - STATE(8665), 1, + STATE(8189), 1, sym_ms_based_modifier, - [237673] = 14, + STATE(8569), 1, + sym_decltype, + [241474] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10066), 1, - anon_sym_SLASH, - ACTIONS(10068), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10070), 1, - anon_sym_AMP_AMP, - ACTIONS(10072), 1, - anon_sym_PIPE, - ACTIONS(10074), 1, - anon_sym_CARET, - ACTIONS(10076), 1, - anon_sym_AMP, - ACTIONS(10062), 2, + ACTIONS(10184), 1, + sym_identifier, + ACTIONS(10186), 1, + anon_sym_LPAREN2, + ACTIONS(10188), 1, + anon_sym_defined, + ACTIONS(10409), 1, + sym_number_literal, + ACTIONS(10190), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10192), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10064), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(10078), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(10080), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(10082), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(10084), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10381), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [237723] = 3, + ACTIONS(10196), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5905), 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, + [241514] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10385), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(10383), 15, + ACTIONS(7918), 1, + anon_sym_LBRACK_LBRACK, + STATE(5804), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9814), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9812), 14, 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, - [237751] = 5, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [241546] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(10066), 1, - anon_sym_SLASH, - ACTIONS(10064), 2, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(4543), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4551), 1, + anon_sym_EQ, + ACTIONS(10208), 1, + sym_identifier, + ACTIONS(10210), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(10170), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(10168), 13, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [237783] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10170), 5, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(10212), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(10168), 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, - [237811] = 9, + ACTIONS(10214), 1, + anon_sym_COLON_COLON, + ACTIONS(10216), 1, + sym_this, + ACTIONS(10411), 1, + anon_sym_RBRACK, + STATE(5956), 1, + sym__scope_resolution, + STATE(7761), 1, + sym_lambda_default_capture, + STATE(8569), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7462), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + [241598] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10180), 1, + ACTIONS(10184), 1, sym_identifier, - ACTIONS(10182), 1, + ACTIONS(10186), 1, anon_sym_LPAREN2, - ACTIONS(10184), 1, + ACTIONS(10188), 1, anon_sym_defined, - ACTIONS(10387), 1, + ACTIONS(10413), 1, sym_number_literal, - ACTIONS(10186), 2, + ACTIONS(10190), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10188), 2, + ACTIONS(10192), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10192), 5, + ACTIONS(10196), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(5831), 7, + STATE(5908), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -489259,67 +496018,136 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [237851] = 15, + [241638] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5020), 1, + anon_sym_LPAREN2, + ACTIONS(8147), 1, + anon_sym_LBRACK, + ACTIONS(8256), 1, + anon_sym_STAR, + ACTIONS(8258), 1, + anon_sym_AMP_AMP, + ACTIONS(8260), 1, + anon_sym_AMP, + STATE(3095), 1, + sym_parameter_list, + STATE(6109), 1, + sym__function_declarator_seq, + STATE(6584), 1, + sym__abstract_declarator, + STATE(6099), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8360), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [241682] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(4535), 1, - anon_sym_DOT_DOT_DOT, ACTIONS(4543), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4551), 1, anon_sym_EQ, - ACTIONS(10156), 1, + ACTIONS(10208), 1, sym_identifier, - ACTIONS(10158), 1, + ACTIONS(10210), 1, anon_sym_STAR, - ACTIONS(10160), 1, + ACTIONS(10212), 1, anon_sym_AMP, - ACTIONS(10162), 1, + ACTIONS(10214), 1, anon_sym_COLON_COLON, - ACTIONS(10166), 1, + ACTIONS(10216), 1, sym_this, - ACTIONS(10389), 1, + ACTIONS(10415), 1, anon_sym_RBRACK, - STATE(5858), 1, + STATE(5956), 1, sym__scope_resolution, - STATE(7699), 1, + STATE(7761), 1, sym_lambda_default_capture, - STATE(8601), 3, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(7222), 5, + STATE(7462), 5, sym__lambda_capture_identifier, sym_lambda_capture_initializer, sym__lambda_capture, sym_identifier_parameter_pack_expansion, sym_qualified_identifier, - [237903] = 9, + [241734] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(10033), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(8268), 1, sym_identifier, - ACTIONS(10037), 1, + ACTIONS(8270), 1, anon_sym_LPAREN2, - ACTIONS(10039), 1, + ACTIONS(8282), 1, + sym_primitive_type, + ACTIONS(8338), 1, + anon_sym_STAR, + ACTIONS(8340), 1, + anon_sym_AMP_AMP, + ACTIONS(8342), 1, + anon_sym_AMP, + STATE(1971), 1, + sym_pointer_type_declarator, + STATE(6526), 1, + sym__type_declarator, + STATE(6979), 1, + sym__type_definition_declarators, + STATE(8477), 1, + sym_ms_based_modifier, + ACTIONS(8280), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1985), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [241784] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10087), 1, + sym_identifier, + ACTIONS(10091), 1, + anon_sym_LPAREN2, + ACTIONS(10093), 1, anon_sym_defined, - ACTIONS(10391), 1, + ACTIONS(10417), 1, sym_number_literal, - ACTIONS(10041), 2, + ACTIONS(10095), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10043), 2, + ACTIONS(10097), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10047), 5, + ACTIONS(10101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(5699), 7, + STATE(5903), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -489327,256 +496155,252 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [237943] = 3, + [241824] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(10395), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(10393), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(4543), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4551), 1, + anon_sym_EQ, + ACTIONS(10208), 1, + sym_identifier, + ACTIONS(10210), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [237971] = 21, + ACTIONS(10212), 1, + anon_sym_AMP, + ACTIONS(10214), 1, + anon_sym_COLON_COLON, + ACTIONS(10216), 1, + sym_this, + ACTIONS(10419), 1, + anon_sym_RBRACK, + STATE(5956), 1, + sym__scope_resolution, + STATE(7761), 1, + sym_lambda_default_capture, + STATE(8569), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7462), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + [241876] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, + ACTIONS(1268), 1, + anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(8284), 1, - anon_sym_STAR, - ACTIONS(10228), 1, - anon_sym_TILDE, - ACTIONS(10234), 1, - anon_sym_operator, - ACTIONS(10397), 1, + ACTIONS(4543), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4551), 1, + anon_sym_EQ, + ACTIONS(10208), 1, sym_identifier, - ACTIONS(10399), 1, + ACTIONS(10210), 1, + anon_sym_STAR, + ACTIONS(10212), 1, + anon_sym_AMP, + ACTIONS(10214), 1, anon_sym_COLON_COLON, - ACTIONS(10401), 1, - anon_sym_template, - STATE(1906), 1, + ACTIONS(10216), 1, + sym_this, + ACTIONS(10421), 1, + anon_sym_RBRACK, + STATE(5956), 1, + sym__scope_resolution, + STATE(7761), 1, + sym_lambda_default_capture, + STATE(8569), 3, + sym_decltype, sym_template_type, - STATE(1908), 1, sym_dependent_type_identifier, - STATE(1909), 1, - sym_qualified_type_identifier, - STATE(2414), 1, - sym_pointer_type_declarator, - STATE(2415), 1, - sym_template_function, - STATE(2416), 1, - sym_destructor_name, - STATE(2417), 1, - sym_dependent_identifier, - STATE(2418), 1, + STATE(7462), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, sym_qualified_identifier, - STATE(2419), 1, - sym_operator_name, - STATE(5772), 1, - sym__scope_resolution, - STATE(7984), 1, - sym_ms_based_modifier, - STATE(8601), 1, - sym_decltype, - [238035] = 21, + [241928] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(8240), 1, + ACTIONS(8302), 1, anon_sym_STAR, - ACTIONS(10353), 1, - anon_sym_TILDE, - ACTIONS(10359), 1, - anon_sym_operator, - ACTIONS(10403), 1, + ACTIONS(10423), 1, sym_identifier, - ACTIONS(10405), 1, + ACTIONS(10425), 1, + anon_sym_TILDE, + ACTIONS(10427), 1, anon_sym_COLON_COLON, - ACTIONS(10407), 1, + ACTIONS(10429), 1, anon_sym_template, - STATE(1906), 1, + ACTIONS(10431), 1, + anon_sym_operator, + STATE(1805), 1, sym_template_type, - STATE(1908), 1, + STATE(1806), 1, sym_dependent_type_identifier, - STATE(1909), 1, + STATE(1865), 1, sym_qualified_type_identifier, - STATE(3544), 1, + STATE(3257), 1, + sym_dependent_identifier, + STATE(3263), 1, + sym_qualified_identifier, + STATE(3264), 1, sym_operator_name, - STATE(3641), 1, + STATE(3332), 1, + sym_destructor_name, + STATE(3382), 1, sym_pointer_type_declarator, - STATE(3652), 1, + STATE(3391), 1, sym_template_function, - STATE(3653), 1, - sym_destructor_name, - STATE(3665), 1, - sym_dependent_identifier, - STATE(3680), 1, - sym_qualified_identifier, - STATE(5773), 1, + STATE(5844), 1, sym__scope_resolution, - STATE(8601), 1, - sym_decltype, - STATE(8712), 1, + STATE(8189), 1, sym_ms_based_modifier, - [238099] = 13, + STATE(8569), 1, + sym_decltype, + [241992] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10066), 1, - anon_sym_SLASH, - ACTIONS(10070), 1, - anon_sym_AMP_AMP, - ACTIONS(10072), 1, - anon_sym_PIPE, - ACTIONS(10074), 1, - anon_sym_CARET, - ACTIONS(10076), 1, - anon_sym_AMP, - ACTIONS(10062), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10064), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(10078), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(10080), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(10082), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(10084), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10168), 3, + ACTIONS(7073), 1, + anon_sym_DASH_GT, + ACTIONS(7079), 1, + anon_sym_requires, + STATE(5671), 1, + sym_trailing_return_type, + ACTIONS(6037), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(9150), 2, + anon_sym___attribute, + anon_sym_LBRACK, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5927), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9139), 9, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - [238147] = 21, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [242032] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(8284), 1, + ACTIONS(8302), 1, anon_sym_STAR, - ACTIONS(10228), 1, + ACTIONS(10248), 1, anon_sym_TILDE, - ACTIONS(10234), 1, + ACTIONS(10254), 1, anon_sym_operator, - ACTIONS(10409), 1, + ACTIONS(10433), 1, sym_identifier, - ACTIONS(10411), 1, + ACTIONS(10435), 1, anon_sym_COLON_COLON, - ACTIONS(10413), 1, + ACTIONS(10437), 1, anon_sym_template, - STATE(1906), 1, + STATE(1805), 1, sym_template_type, - STATE(1908), 1, + STATE(1806), 1, sym_dependent_type_identifier, - STATE(1909), 1, + STATE(1865), 1, sym_qualified_type_identifier, - STATE(2414), 1, + STATE(3553), 1, sym_pointer_type_declarator, - STATE(2415), 1, + STATE(3554), 1, sym_template_function, - STATE(2416), 1, + STATE(3555), 1, sym_destructor_name, - STATE(2417), 1, + STATE(3556), 1, sym_dependent_identifier, - STATE(2418), 1, + STATE(3557), 1, sym_qualified_identifier, - STATE(2419), 1, + STATE(3558), 1, sym_operator_name, - STATE(5775), 1, + STATE(5846), 1, sym__scope_resolution, - STATE(7984), 1, + STATE(8189), 1, sym_ms_based_modifier, - STATE(8601), 1, + STATE(8569), 1, sym_decltype, - [238211] = 15, + [242096] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(4535), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4543), 1, - anon_sym_EQ, - ACTIONS(10156), 1, + ACTIONS(10184), 1, sym_identifier, - ACTIONS(10158), 1, - anon_sym_STAR, - ACTIONS(10160), 1, - anon_sym_AMP, - ACTIONS(10162), 1, - anon_sym_COLON_COLON, - ACTIONS(10166), 1, - sym_this, - ACTIONS(10415), 1, - anon_sym_RBRACK, - STATE(5858), 1, - sym__scope_resolution, - STATE(7699), 1, - sym_lambda_default_capture, - STATE(8601), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(7222), 5, - sym__lambda_capture_identifier, - sym_lambda_capture_initializer, - sym__lambda_capture, - sym_identifier_parameter_pack_expansion, - sym_qualified_identifier, - [238263] = 9, + ACTIONS(10186), 1, + anon_sym_LPAREN2, + ACTIONS(10188), 1, + anon_sym_defined, + ACTIONS(10439), 1, + sym_number_literal, + ACTIONS(10190), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10192), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10196), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5954), 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, + [242136] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10180), 1, + ACTIONS(10184), 1, sym_identifier, - ACTIONS(10182), 1, + ACTIONS(10186), 1, anon_sym_LPAREN2, - ACTIONS(10184), 1, + ACTIONS(10188), 1, anon_sym_defined, - ACTIONS(10417), 1, + ACTIONS(10441), 1, sym_number_literal, - ACTIONS(10186), 2, + ACTIONS(10190), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10188), 2, + ACTIONS(10192), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10192), 5, + ACTIONS(10196), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(5857), 7, + STATE(5928), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -489584,30 +496408,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [238303] = 9, + [242176] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10180), 1, + ACTIONS(10184), 1, sym_identifier, - ACTIONS(10182), 1, + ACTIONS(10186), 1, anon_sym_LPAREN2, - ACTIONS(10184), 1, + ACTIONS(10188), 1, anon_sym_defined, - ACTIONS(10419), 1, + ACTIONS(10443), 1, sym_number_literal, - ACTIONS(10186), 2, + ACTIONS(10190), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10188), 2, + ACTIONS(10192), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10192), 5, + ACTIONS(10196), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(5798), 7, + STATE(5878), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -489615,30 +496439,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [238343] = 9, + [242216] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10180), 1, + ACTIONS(10184), 1, sym_identifier, - ACTIONS(10182), 1, + ACTIONS(10186), 1, anon_sym_LPAREN2, - ACTIONS(10184), 1, + ACTIONS(10188), 1, anon_sym_defined, - ACTIONS(10421), 1, + ACTIONS(10445), 1, sym_number_literal, - ACTIONS(10186), 2, + ACTIONS(10190), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10188), 2, + ACTIONS(10192), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10192), 5, + ACTIONS(10196), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(5805), 7, + STATE(5894), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -489646,138 +496470,437 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [238383] = 12, + [242256] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10449), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10447), 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, + [242284] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10031), 1, + anon_sym_SLASH, + ACTIONS(10029), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(10453), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10451), 13, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [242316] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10453), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10451), 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, + [242344] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10031), 1, + anon_sym_SLASH, + ACTIONS(10035), 1, + anon_sym_AMP_AMP, + ACTIONS(10037), 1, + anon_sym_PIPE, + ACTIONS(10039), 1, + anon_sym_CARET, + ACTIONS(10041), 1, + anon_sym_AMP, + ACTIONS(10027), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10029), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(10043), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10045), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10047), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(10049), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10451), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + [242392] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10066), 1, + ACTIONS(10031), 1, anon_sym_SLASH, - ACTIONS(10072), 1, + ACTIONS(10037), 1, anon_sym_PIPE, - ACTIONS(10074), 1, + ACTIONS(10039), 1, anon_sym_CARET, - ACTIONS(10076), 1, + ACTIONS(10041), 1, anon_sym_AMP, - ACTIONS(10062), 2, + ACTIONS(10027), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10064), 2, + ACTIONS(10029), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(10078), 2, + ACTIONS(10043), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10080), 2, + ACTIONS(10045), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(10082), 2, + ACTIONS(10047), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(10084), 2, + ACTIONS(10049), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10168), 4, + ACTIONS(10451), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - [238429] = 21, + [242438] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1852), 1, - anon_sym_operator, + ACTIONS(10031), 1, + anon_sym_SLASH, + ACTIONS(10039), 1, + anon_sym_CARET, + ACTIONS(10041), 1, + anon_sym_AMP, + ACTIONS(10453), 1, + anon_sym_PIPE, + ACTIONS(10027), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10029), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(10043), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10045), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10047), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(10049), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10451), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [242484] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10031), 1, + anon_sym_SLASH, + ACTIONS(10041), 1, + anon_sym_AMP, + ACTIONS(10453), 1, + anon_sym_PIPE, + ACTIONS(10027), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10029), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(10043), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10045), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10047), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(10049), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10451), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + [242528] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10031), 1, + anon_sym_SLASH, + ACTIONS(10027), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10029), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(10043), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10045), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10047), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(10049), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10453), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(10451), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + [242570] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10031), 1, + anon_sym_SLASH, + ACTIONS(10027), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10029), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(10045), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10047), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(10049), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10453), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(10451), 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, + [242610] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10031), 1, + anon_sym_SLASH, + ACTIONS(10027), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10029), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(10049), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10453), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10451), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [242646] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10031), 1, + anon_sym_SLASH, + ACTIONS(10027), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10029), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(10453), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10451), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [242680] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2979), 1, - anon_sym_TILDE, - ACTIONS(4306), 1, - anon_sym_COLON_COLON, - ACTIONS(8300), 1, - anon_sym_STAR, - ACTIONS(10423), 1, + ACTIONS(4543), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4551), 1, + anon_sym_EQ, + ACTIONS(10208), 1, sym_identifier, - ACTIONS(10425), 1, - anon_sym_template, - STATE(1906), 1, + ACTIONS(10210), 1, + anon_sym_STAR, + ACTIONS(10212), 1, + anon_sym_AMP, + ACTIONS(10214), 1, + anon_sym_COLON_COLON, + ACTIONS(10216), 1, + sym_this, + ACTIONS(10455), 1, + anon_sym_RBRACK, + STATE(5956), 1, + sym__scope_resolution, + STATE(7761), 1, + sym_lambda_default_capture, + STATE(8569), 3, + sym_decltype, sym_template_type, - STATE(1908), 1, sym_dependent_type_identifier, - STATE(1909), 1, - sym_qualified_type_identifier, - STATE(2776), 1, - sym_operator_name, - STATE(2782), 1, - sym_destructor_name, - STATE(2786), 1, - sym_dependent_identifier, - STATE(2822), 1, + STATE(7462), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, sym_qualified_identifier, - STATE(2836), 1, - sym_pointer_type_declarator, - STATE(2838), 1, - sym_template_function, - STATE(5781), 1, - sym__scope_resolution, - STATE(8344), 1, - sym_ms_based_modifier, - STATE(8601), 1, - sym_decltype, - [238493] = 9, + [242732] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(10180), 1, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(4543), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4551), 1, + anon_sym_EQ, + ACTIONS(10208), 1, sym_identifier, - ACTIONS(10182), 1, - anon_sym_LPAREN2, - ACTIONS(10184), 1, - anon_sym_defined, - ACTIONS(10427), 1, - sym_number_literal, - ACTIONS(10186), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(10188), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10192), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(5879), 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, - [238533] = 9, + ACTIONS(10210), 1, + anon_sym_STAR, + ACTIONS(10212), 1, + anon_sym_AMP, + ACTIONS(10214), 1, + anon_sym_COLON_COLON, + ACTIONS(10216), 1, + sym_this, + ACTIONS(10457), 1, + anon_sym_RBRACK, + STATE(5956), 1, + sym__scope_resolution, + STATE(7761), 1, + sym_lambda_default_capture, + STATE(8569), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7462), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + [242784] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10033), 1, + ACTIONS(10087), 1, sym_identifier, - ACTIONS(10037), 1, + ACTIONS(10091), 1, anon_sym_LPAREN2, - ACTIONS(10039), 1, + ACTIONS(10093), 1, anon_sym_defined, - ACTIONS(10429), 1, + ACTIONS(10459), 1, sym_number_literal, - ACTIONS(10041), 2, + ACTIONS(10095), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10043), 2, + ACTIONS(10097), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10047), 5, + ACTIONS(10101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(5764), 7, + STATE(5756), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -489785,30 +496908,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [238573] = 9, + [242824] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10180), 1, + ACTIONS(10184), 1, sym_identifier, - ACTIONS(10182), 1, + ACTIONS(10186), 1, anon_sym_LPAREN2, - ACTIONS(10184), 1, + ACTIONS(10188), 1, anon_sym_defined, - ACTIONS(10431), 1, + ACTIONS(10461), 1, sym_number_literal, - ACTIONS(10186), 2, + ACTIONS(10190), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10188), 2, + ACTIONS(10192), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10192), 5, + ACTIONS(10196), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(5815), 7, + STATE(5955), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -489816,583 +496939,428 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [238613] = 15, + [242864] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(4535), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4543), 1, - anon_sym_EQ, - ACTIONS(10156), 1, - sym_identifier, - ACTIONS(10158), 1, - anon_sym_STAR, - ACTIONS(10160), 1, + ACTIONS(10465), 5, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(10162), 1, - anon_sym_COLON_COLON, - ACTIONS(10166), 1, - sym_this, - ACTIONS(10433), 1, - anon_sym_RBRACK, - STATE(5858), 1, - sym__scope_resolution, - STATE(7699), 1, - sym_lambda_default_capture, - STATE(8601), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(7222), 5, - sym__lambda_capture_identifier, - sym_lambda_capture_initializer, - sym__lambda_capture, - sym_identifier_parameter_pack_expansion, - sym_qualified_identifier, - [238665] = 15, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10463), 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, + [242892] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(4535), 1, - anon_sym_DOT_DOT_DOT, ACTIONS(4543), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4551), 1, anon_sym_EQ, - ACTIONS(10156), 1, + ACTIONS(10208), 1, sym_identifier, - ACTIONS(10158), 1, + ACTIONS(10210), 1, anon_sym_STAR, - ACTIONS(10160), 1, + ACTIONS(10212), 1, anon_sym_AMP, - ACTIONS(10162), 1, + ACTIONS(10214), 1, anon_sym_COLON_COLON, - ACTIONS(10166), 1, + ACTIONS(10216), 1, sym_this, - ACTIONS(10435), 1, + ACTIONS(10467), 1, anon_sym_RBRACK, - STATE(5858), 1, + STATE(5956), 1, sym__scope_resolution, - STATE(7699), 1, + STATE(7761), 1, sym_lambda_default_capture, - STATE(8601), 3, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(7222), 5, + STATE(7462), 5, sym__lambda_capture_identifier, sym_lambda_capture_initializer, sym__lambda_capture, sym_identifier_parameter_pack_expansion, sym_qualified_identifier, - [238717] = 15, + [242944] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(4535), 1, - anon_sym_DOT_DOT_DOT, ACTIONS(4543), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4551), 1, anon_sym_EQ, - ACTIONS(10156), 1, + ACTIONS(10208), 1, sym_identifier, - ACTIONS(10158), 1, + ACTIONS(10210), 1, anon_sym_STAR, - ACTIONS(10160), 1, + ACTIONS(10212), 1, anon_sym_AMP, - ACTIONS(10162), 1, + ACTIONS(10214), 1, anon_sym_COLON_COLON, - ACTIONS(10166), 1, + ACTIONS(10216), 1, sym_this, - ACTIONS(10437), 1, + ACTIONS(10469), 1, anon_sym_RBRACK, - STATE(5858), 1, + STATE(5956), 1, sym__scope_resolution, - STATE(7699), 1, + STATE(7761), 1, sym_lambda_default_capture, - STATE(8601), 3, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(7222), 5, + STATE(7462), 5, sym__lambda_capture_identifier, sym_lambda_capture_initializer, sym__lambda_capture, sym_identifier_parameter_pack_expansion, sym_qualified_identifier, - [238769] = 21, + [242996] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(8270), 1, + ACTIONS(8302), 1, anon_sym_STAR, - ACTIONS(10208), 1, + ACTIONS(10425), 1, anon_sym_TILDE, - ACTIONS(10214), 1, + ACTIONS(10431), 1, anon_sym_operator, - ACTIONS(10439), 1, + ACTIONS(10471), 1, sym_identifier, - ACTIONS(10441), 1, + ACTIONS(10473), 1, anon_sym_COLON_COLON, - ACTIONS(10443), 1, + ACTIONS(10475), 1, anon_sym_template, - STATE(1813), 1, + STATE(1919), 1, sym_template_type, - STATE(1814), 1, + STATE(1930), 1, sym_dependent_type_identifier, - STATE(1888), 1, + STATE(1932), 1, sym_qualified_type_identifier, - STATE(3225), 1, - sym_pointer_type_declarator, - STATE(3228), 1, - sym_template_function, - STATE(3229), 1, - sym_destructor_name, - STATE(3232), 1, + STATE(3257), 1, sym_dependent_identifier, - STATE(3234), 1, + STATE(3263), 1, sym_qualified_identifier, - STATE(3238), 1, + STATE(3264), 1, sym_operator_name, - STATE(5788), 1, + STATE(3332), 1, + sym_destructor_name, + STATE(3382), 1, + sym_pointer_type_declarator, + STATE(3391), 1, + sym_template_function, + STATE(5869), 1, sym__scope_resolution, - STATE(8601), 1, - sym_decltype, - STATE(8665), 1, + STATE(8189), 1, sym_ms_based_modifier, - [238833] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(4535), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4543), 1, - anon_sym_EQ, - ACTIONS(10156), 1, - sym_identifier, - ACTIONS(10158), 1, - anon_sym_STAR, - ACTIONS(10160), 1, - anon_sym_AMP, - ACTIONS(10162), 1, - anon_sym_COLON_COLON, - ACTIONS(10166), 1, - sym_this, - ACTIONS(10445), 1, - anon_sym_RBRACK, - STATE(5858), 1, - sym__scope_resolution, - STATE(7699), 1, - sym_lambda_default_capture, - STATE(8601), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(7222), 5, - sym__lambda_capture_identifier, - sym_lambda_capture_initializer, - sym__lambda_capture, - sym_identifier_parameter_pack_expansion, - sym_qualified_identifier, - [238885] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(4535), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4543), 1, - anon_sym_EQ, - ACTIONS(10156), 1, - sym_identifier, - ACTIONS(10158), 1, - anon_sym_STAR, - ACTIONS(10160), 1, - anon_sym_AMP, - ACTIONS(10162), 1, - anon_sym_COLON_COLON, - ACTIONS(10166), 1, - sym_this, - ACTIONS(10447), 1, - anon_sym_RBRACK, - STATE(5858), 1, - sym__scope_resolution, - STATE(7699), 1, - sym_lambda_default_capture, - STATE(8601), 3, + STATE(8569), 1, sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(7222), 5, - sym__lambda_capture_identifier, - sym_lambda_capture_initializer, - sym__lambda_capture, - sym_identifier_parameter_pack_expansion, - sym_qualified_identifier, - [238937] = 14, + [243060] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8280), 1, + ACTIONS(8268), 1, sym_identifier, - ACTIONS(8282), 1, + ACTIONS(8270), 1, anon_sym_LPAREN2, - ACTIONS(8292), 1, + ACTIONS(8282), 1, sym_primitive_type, - ACTIONS(8300), 1, + ACTIONS(8338), 1, anon_sym_STAR, - ACTIONS(8302), 1, + ACTIONS(8340), 1, anon_sym_AMP_AMP, - ACTIONS(8304), 1, + ACTIONS(8342), 1, anon_sym_AMP, - STATE(2220), 1, + STATE(1971), 1, sym_pointer_type_declarator, - STATE(6424), 1, + STATE(6526), 1, sym__type_declarator, - STATE(6899), 1, + STATE(6963), 1, sym__type_definition_declarators, - STATE(8344), 1, + STATE(8477), 1, sym_ms_based_modifier, - ACTIONS(8290), 4, + ACTIONS(8280), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2218), 5, + STATE(1985), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, sym_reference_type_declarator, - [238987] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10451), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(10449), 16, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [239014] = 14, - ACTIONS(3), 1, + [243110] = 3, + ACTIONS(7083), 1, + anon_sym_LF, + ACTIONS(10057), 1, sym_comment, - ACTIONS(10066), 1, + ACTIONS(7081), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(10068), 1, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, - ACTIONS(10070), 1, anon_sym_AMP_AMP, - ACTIONS(10072), 1, anon_sym_PIPE, - ACTIONS(10074), 1, anon_sym_CARET, - ACTIONS(10076), 1, anon_sym_AMP, - ACTIONS(10453), 1, - anon_sym_RPAREN, - ACTIONS(10062), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10064), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(10078), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10080), 2, anon_sym_GT, - anon_sym_LT, - ACTIONS(10082), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(10084), 2, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [239063] = 13, + [243137] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8252), 1, + ACTIONS(8268), 1, sym_identifier, - ACTIONS(8254), 1, + ACTIONS(8270), 1, anon_sym_LPAREN2, - ACTIONS(8256), 1, + ACTIONS(8282), 1, + sym_primitive_type, + ACTIONS(8312), 1, anon_sym_STAR, - ACTIONS(8258), 1, + ACTIONS(8314), 1, anon_sym_AMP_AMP, - ACTIONS(8260), 1, + ACTIONS(8316), 1, anon_sym_AMP, - ACTIONS(8264), 1, - sym_primitive_type, - STATE(5920), 1, - sym__type_declarator, - STATE(6089), 1, + STATE(1971), 1, sym_pointer_type_declarator, - STATE(8067), 1, + STATE(6879), 1, + sym__type_declarator, + STATE(8660), 1, sym_ms_based_modifier, - ACTIONS(8262), 4, + ACTIONS(8280), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(6082), 5, + STATE(1985), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, sym_reference_type_declarator, - [239110] = 5, + [243184] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10455), 1, - anon_sym_LBRACK_LBRACK, - STATE(5795), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(2051), 3, + ACTIONS(4187), 1, + anon_sym_COLON_COLON, + ACTIONS(7483), 1, + anon_sym_LT, + STATE(6052), 1, + sym_template_argument_list, + ACTIONS(8123), 4, anon_sym___attribute, + anon_sym_COLON, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(6235), 13, + ACTIONS(5044), 12, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, - anon_sym_using, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_RBRACK, anon_sym_EQ, anon_sym_asm, anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [239141] = 18, + [243217] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(2979), 1, - anon_sym_TILDE, - ACTIONS(8300), 1, - anon_sym_STAR, - ACTIONS(10458), 1, - sym_identifier, - ACTIONS(10460), 1, - anon_sym_COLON_COLON, - ACTIONS(10462), 1, - anon_sym_template, - STATE(2776), 1, - sym_operator_name, - STATE(2782), 1, - sym_destructor_name, - STATE(2786), 1, - sym_dependent_identifier, - STATE(2822), 1, - sym_qualified_identifier, - STATE(2836), 1, - sym_pointer_type_declarator, - STATE(2838), 1, - sym_template_function, - STATE(5796), 1, - sym__scope_resolution, - STATE(8344), 1, - sym_ms_based_modifier, - STATE(8601), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [239198] = 3, - ACTIONS(10118), 1, + ACTIONS(9951), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9949), 16, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [243244] = 8, + ACTIONS(10057), 1, sym_comment, - ACTIONS(10383), 1, + ACTIONS(10451), 1, anon_sym_LF, - ACTIONS(10385), 18, + ACTIONS(10477), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(10481), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10485), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10479), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(10483), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10453), 5, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [239225] = 12, - ACTIONS(10118), 1, + [243281] = 12, + ACTIONS(10057), 1, sym_comment, - ACTIONS(10464), 1, + ACTIONS(10487), 1, anon_sym_LF, - ACTIONS(10470), 1, + ACTIONS(10489), 1, anon_sym_PIPE_PIPE, - ACTIONS(10472), 1, + ACTIONS(10491), 1, anon_sym_AMP_AMP, - ACTIONS(10474), 1, + ACTIONS(10493), 1, anon_sym_PIPE, - ACTIONS(10476), 1, + ACTIONS(10495), 1, anon_sym_CARET, - ACTIONS(10478), 1, + ACTIONS(10497), 1, anon_sym_AMP, - ACTIONS(10466), 2, + ACTIONS(10477), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10480), 2, + ACTIONS(10481), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10484), 2, + ACTIONS(10485), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10468), 3, + ACTIONS(10479), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10482), 4, + ACTIONS(10483), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [239270] = 13, + [243326] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8280), 1, + ACTIONS(8268), 1, sym_identifier, - ACTIONS(8282), 1, + ACTIONS(8270), 1, anon_sym_LPAREN2, - ACTIONS(8292), 1, + ACTIONS(8282), 1, sym_primitive_type, - ACTIONS(8300), 1, + ACTIONS(8338), 1, anon_sym_STAR, - ACTIONS(8302), 1, + ACTIONS(8340), 1, anon_sym_AMP_AMP, - ACTIONS(8304), 1, + ACTIONS(8342), 1, anon_sym_AMP, - STATE(2220), 1, + STATE(1971), 1, sym_pointer_type_declarator, - STATE(6774), 1, + STATE(6869), 1, sym__type_declarator, - STATE(8344), 1, + STATE(8477), 1, sym_ms_based_modifier, - ACTIONS(8290), 4, + ACTIONS(8280), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2218), 5, + STATE(1985), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, sym_reference_type_declarator, - [239317] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10486), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(6477), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(6479), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LT, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACK, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [239346] = 12, - ACTIONS(10118), 1, + [243373] = 12, + ACTIONS(10057), 1, sym_comment, - ACTIONS(10470), 1, + ACTIONS(10489), 1, anon_sym_PIPE_PIPE, - ACTIONS(10472), 1, + ACTIONS(10491), 1, anon_sym_AMP_AMP, - ACTIONS(10474), 1, + ACTIONS(10493), 1, anon_sym_PIPE, - ACTIONS(10476), 1, + ACTIONS(10495), 1, anon_sym_CARET, - ACTIONS(10478), 1, + ACTIONS(10497), 1, anon_sym_AMP, - ACTIONS(10488), 1, + ACTIONS(10499), 1, anon_sym_LF, - ACTIONS(10466), 2, + ACTIONS(10477), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10480), 2, + ACTIONS(10481), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10484), 2, + ACTIONS(10485), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10468), 3, + ACTIONS(10479), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10482), 4, + ACTIONS(10483), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [239391] = 3, - ACTIONS(10118), 1, + [243418] = 3, + ACTIONS(10057), 1, sym_comment, - ACTIONS(10325), 1, + ACTIONS(10463), 1, anon_sym_LF, - ACTIONS(10327), 18, + ACTIONS(10465), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -490411,48 +497379,360 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [239418] = 13, + [243445] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8280), 1, + ACTIONS(8298), 1, sym_identifier, - ACTIONS(8282), 1, - anon_sym_LPAREN2, - ACTIONS(8292), 1, - sym_primitive_type, ACTIONS(8300), 1, - anon_sym_STAR, + anon_sym_LPAREN2, ACTIONS(8302), 1, - anon_sym_AMP_AMP, + anon_sym_STAR, ACTIONS(8304), 1, + anon_sym_AMP_AMP, + ACTIONS(8306), 1, anon_sym_AMP, - STATE(2220), 1, - sym_pointer_type_declarator, - STATE(6560), 1, + ACTIONS(8310), 1, + sym_primitive_type, + STATE(2970), 1, sym__type_declarator, - STATE(8344), 1, + STATE(3374), 1, + sym_pointer_type_declarator, + STATE(8189), 1, sym_ms_based_modifier, - ACTIONS(8290), 4, + ACTIONS(8308), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2218), 5, + STATE(3318), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, sym_reference_type_declarator, - [239465] = 3, + [243492] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10503), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(10501), 16, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [243519] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7395), 1, + anon_sym_requires, + ACTIONS(7443), 1, + anon_sym_DASH_GT, + STATE(6042), 1, + sym_trailing_return_type, + ACTIONS(6037), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(9150), 2, + anon_sym_LBRACK, + anon_sym___asm, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5927), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9139), 8, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [243558] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7395), 1, + anon_sym_requires, + ACTIONS(7443), 1, + anon_sym_DASH_GT, + STATE(5994), 1, + sym_trailing_return_type, + ACTIONS(6037), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(9382), 2, + anon_sym_LBRACK, + anon_sym___asm, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5934), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9371), 8, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [243597] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7395), 1, + anon_sym_requires, + ACTIONS(7443), 1, + anon_sym_DASH_GT, + STATE(6023), 1, + sym_trailing_return_type, + ACTIONS(6037), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(9700), 2, + anon_sym_LBRACK, + anon_sym___asm, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5924), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9689), 8, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [243636] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7395), 1, + anon_sym_requires, + ACTIONS(7443), 1, + anon_sym_DASH_GT, + STATE(5971), 1, + sym_trailing_return_type, + ACTIONS(6037), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(9947), 2, + anon_sym_LBRACK, + anon_sym___asm, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5874), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9945), 8, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [243675] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7443), 1, + anon_sym_DASH_GT, + ACTIONS(9359), 1, + anon_sym_requires, + STATE(6044), 1, + sym_trailing_return_type, + ACTIONS(9150), 2, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9193), 2, + anon_sym_final, + anon_sym_override, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5927), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9139), 8, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [243714] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7443), 1, + anon_sym_DASH_GT, + ACTIONS(9479), 1, + anon_sym_requires, + STATE(5993), 1, + sym_trailing_return_type, + ACTIONS(9382), 2, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9387), 2, + anon_sym_final, + anon_sym_override, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5934), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9371), 8, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [243753] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7443), 1, + anon_sym_DASH_GT, + ACTIONS(9739), 1, + anon_sym_requires, + STATE(6046), 1, + sym_trailing_return_type, + ACTIONS(9700), 2, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9702), 2, + anon_sym_final, + anon_sym_override, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5924), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9689), 8, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [243792] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7443), 1, + anon_sym_DASH_GT, + ACTIONS(10505), 1, + anon_sym_requires, + STATE(5969), 1, + sym_trailing_return_type, + ACTIONS(9947), 2, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9957), 2, + anon_sym_final, + anon_sym_override, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5874), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9945), 8, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [243831] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10510), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(10508), 16, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [243858] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10514), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(10512), 16, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [243885] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10492), 3, + ACTIONS(10518), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(10490), 16, + ACTIONS(10516), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -490469,219 +497749,245 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [239492] = 12, - ACTIONS(10118), 1, + [243912] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4187), 1, + anon_sym_COLON_COLON, + ACTIONS(8725), 1, + anon_sym_LT, + STATE(2745), 1, + sym_template_argument_list, + ACTIONS(4925), 2, + anon_sym___attribute, + anon_sym_COLON, + ACTIONS(4932), 14, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_or, + anon_sym_and, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [243945] = 12, + ACTIONS(10057), 1, sym_comment, - ACTIONS(10470), 1, + ACTIONS(10489), 1, anon_sym_PIPE_PIPE, - ACTIONS(10472), 1, + ACTIONS(10491), 1, anon_sym_AMP_AMP, - ACTIONS(10474), 1, + ACTIONS(10493), 1, anon_sym_PIPE, - ACTIONS(10476), 1, + ACTIONS(10495), 1, anon_sym_CARET, - ACTIONS(10478), 1, + ACTIONS(10497), 1, anon_sym_AMP, - ACTIONS(10494), 1, + ACTIONS(10520), 1, anon_sym_LF, - ACTIONS(10466), 2, + ACTIONS(10477), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10480), 2, + ACTIONS(10481), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10484), 2, + ACTIONS(10485), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10468), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(10482), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [239537] = 3, - ACTIONS(10118), 1, - sym_comment, - ACTIONS(10261), 1, - anon_sym_LF, - ACTIONS(10263), 18, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(10479), 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(10483), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [239564] = 18, + [243990] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1852), 1, + ACTIONS(1850), 1, anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2979), 1, + ACTIONS(2999), 1, anon_sym_TILDE, - ACTIONS(7289), 1, + ACTIONS(7217), 1, anon_sym_COLON_COLON, - ACTIONS(8300), 1, + ACTIONS(8338), 1, anon_sym_STAR, - ACTIONS(10496), 1, + ACTIONS(10522), 1, sym_identifier, - ACTIONS(10498), 1, + ACTIONS(10524), 1, anon_sym_template, - STATE(2776), 1, - sym_operator_name, - STATE(2782), 1, + STATE(2617), 1, + sym_template_function, + STATE(2653), 1, sym_destructor_name, - STATE(2786), 1, + STATE(2658), 1, sym_dependent_identifier, - STATE(2822), 1, + STATE(2662), 1, sym_qualified_identifier, - STATE(2836), 1, + STATE(2665), 1, + sym_operator_name, + STATE(2672), 1, sym_pointer_type_declarator, - STATE(2838), 1, - sym_template_function, - STATE(5807), 1, + STATE(5895), 1, sym__scope_resolution, - STATE(8344), 1, + STATE(8477), 1, sym_ms_based_modifier, - STATE(8601), 3, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - [239621] = 3, - ACTIONS(10118), 1, + [244047] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(10267), 1, - anon_sym_LF, - ACTIONS(10269), 18, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(2999), 1, + anon_sym_TILDE, + ACTIONS(5873), 1, + anon_sym_COLON_COLON, + ACTIONS(8288), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [239648] = 6, + ACTIONS(10526), 1, + sym_identifier, + ACTIONS(10528), 1, + anon_sym_template, + STATE(5896), 1, + sym__scope_resolution, + STATE(6095), 1, + sym_pointer_type_declarator, + STATE(6100), 1, + sym_template_function, + STATE(6154), 1, + sym_dependent_identifier, + STATE(6158), 1, + sym_operator_name, + STATE(6181), 1, + sym_qualified_identifier, + STATE(6197), 1, + sym_destructor_name, + STATE(8097), 1, + sym_ms_based_modifier, + STATE(8569), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [244104] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4167), 1, - anon_sym_COLON_COLON, - ACTIONS(8697), 1, - anon_sym_LT, - STATE(2670), 1, - sym_template_argument_list, - ACTIONS(4963), 2, + ACTIONS(10530), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(6464), 3, anon_sym___attribute, - anon_sym_COLON, - ACTIONS(4970), 14, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(6466), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_LT, anon_sym_SEMI, anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_or, - anon_sym_and, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [239681] = 13, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [244133] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8280), 1, + ACTIONS(8268), 1, sym_identifier, - ACTIONS(8282), 1, + ACTIONS(8270), 1, anon_sym_LPAREN2, - ACTIONS(8292), 1, + ACTIONS(8282), 1, sym_primitive_type, - ACTIONS(8300), 1, + ACTIONS(8338), 1, anon_sym_STAR, - ACTIONS(8302), 1, + ACTIONS(8340), 1, anon_sym_AMP_AMP, - ACTIONS(8304), 1, + ACTIONS(8342), 1, anon_sym_AMP, - STATE(2220), 1, + STATE(1971), 1, sym_pointer_type_declarator, - STATE(6219), 1, + STATE(6874), 1, sym__type_declarator, - STATE(8344), 1, + STATE(8477), 1, sym_ms_based_modifier, - ACTIONS(8290), 4, + ACTIONS(8280), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2218), 5, + STATE(1985), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, sym_reference_type_declarator, - [239728] = 3, - ACTIONS(10118), 1, + [244180] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(10285), 1, - anon_sym_LF, - ACTIONS(10287), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [239755] = 3, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7075), 1, + anon_sym_noexcept, + ACTIONS(7077), 1, + anon_sym_throw, + ACTIONS(10532), 1, + anon_sym_LBRACE, + ACTIONS(10534), 1, + anon_sym_DASH_GT, + ACTIONS(10536), 1, + anon_sym_requires, + STATE(7426), 1, + sym_trailing_return_type, + STATE(8062), 1, + sym_requires_clause, + STATE(6522), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(6798), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6753), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9841), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [244227] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10502), 3, + ACTIONS(10540), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(10500), 16, + ACTIONS(10538), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -490698,14 +498004,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [239782] = 3, + [244254] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10506), 3, + ACTIONS(10544), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(10504), 16, + ACTIONS(10542), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -490722,81 +498028,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [239809] = 13, + [244281] = 6, + ACTIONS(10057), 1, + sym_comment, + ACTIONS(10451), 1, + anon_sym_LF, + ACTIONS(10477), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10485), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10479), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10453), 11, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [244314] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(8280), 1, - sym_identifier, - ACTIONS(8282), 1, - anon_sym_LPAREN2, - ACTIONS(8292), 1, - sym_primitive_type, - ACTIONS(8300), 1, + ACTIONS(10031), 1, + anon_sym_SLASH, + ACTIONS(10033), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10035), 1, + anon_sym_AMP_AMP, + ACTIONS(10037), 1, + anon_sym_PIPE, + ACTIONS(10039), 1, + anon_sym_CARET, + ACTIONS(10041), 1, + anon_sym_AMP, + ACTIONS(10546), 1, + anon_sym_RPAREN, + ACTIONS(10027), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10029), 2, anon_sym_STAR, - ACTIONS(8302), 1, + anon_sym_PERCENT, + ACTIONS(10043), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10045), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10047), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(10049), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [244363] = 3, + ACTIONS(10057), 1, + sym_comment, + ACTIONS(10266), 1, + anon_sym_LF, + ACTIONS(10268), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(8304), 1, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - STATE(2220), 1, - sym_pointer_type_declarator, - STATE(6743), 1, - sym__type_declarator, - STATE(8344), 1, - sym_ms_based_modifier, - ACTIONS(8290), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2218), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - [239856] = 12, - ACTIONS(10118), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + [244390] = 12, + ACTIONS(10057), 1, sym_comment, - ACTIONS(10470), 1, + ACTIONS(10489), 1, anon_sym_PIPE_PIPE, - ACTIONS(10472), 1, + ACTIONS(10491), 1, anon_sym_AMP_AMP, - ACTIONS(10474), 1, + ACTIONS(10493), 1, anon_sym_PIPE, - ACTIONS(10476), 1, + ACTIONS(10495), 1, anon_sym_CARET, - ACTIONS(10478), 1, + ACTIONS(10497), 1, anon_sym_AMP, - ACTIONS(10508), 1, + ACTIONS(10548), 1, anon_sym_LF, - ACTIONS(10466), 2, + ACTIONS(10477), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10480), 2, + ACTIONS(10481), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10484), 2, + ACTIONS(10485), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10468), 3, + ACTIONS(10479), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10482), 4, + ACTIONS(10483), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [239901] = 3, + [244435] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(113), 1, + anon_sym___asm, + ACTIONS(3623), 1, + anon_sym_LBRACE, + ACTIONS(7918), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10063), 1, + anon_sym_COMMA, + ACTIONS(10065), 1, + anon_sym_LPAREN2, + ACTIONS(10071), 1, + anon_sym_LBRACK, + ACTIONS(10073), 1, + anon_sym_EQ, + ACTIONS(10550), 1, + anon_sym_SEMI, + ACTIONS(10552), 1, + anon_sym_COLON, + STATE(3001), 1, + sym_parameter_list, + STATE(6203), 1, + sym__function_declarator_seq, + STATE(7302), 1, + sym_gnu_asm_expression, + STATE(7303), 1, + aux_sym_declaration_repeat1, + ACTIONS(10075), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6435), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7980), 2, + sym_argument_list, + sym_initializer_list, + [244490] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9193), 3, + ACTIONS(10556), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9182), 16, + ACTIONS(10554), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -490813,41 +498209,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [239928] = 6, - ACTIONS(3), 1, + [244517] = 12, + ACTIONS(10057), 1, sym_comment, - ACTIONS(4167), 1, - anon_sym_COLON_COLON, - ACTIONS(8697), 1, - anon_sym_LT, - STATE(2670), 1, - sym_template_argument_list, - ACTIONS(5838), 2, - anon_sym___attribute, - anon_sym_COLON, - ACTIONS(4172), 14, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(10489), 1, anon_sym_PIPE_PIPE, + ACTIONS(10491), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_or, - anon_sym_and, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [239961] = 3, + ACTIONS(10493), 1, + anon_sym_PIPE, + ACTIONS(10495), 1, + anon_sym_CARET, + ACTIONS(10497), 1, + anon_sym_AMP, + ACTIONS(10558), 1, + anon_sym_LF, + ACTIONS(10477), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10481), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10485), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10479), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10483), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [244562] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10512), 3, + ACTIONS(10562), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(10510), 16, + ACTIONS(10560), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -490864,14 +498266,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [239988] = 3, + [244589] = 5, + ACTIONS(10057), 1, + sym_comment, + ACTIONS(10451), 1, + anon_sym_LF, + ACTIONS(10477), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10479), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10453), 13, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + [244620] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7075), 1, + anon_sym_noexcept, + ACTIONS(7077), 1, + anon_sym_throw, + ACTIONS(10534), 1, + anon_sym_DASH_GT, + ACTIONS(10536), 1, + anon_sym_requires, + ACTIONS(10564), 1, + anon_sym_LBRACE, + STATE(7464), 1, + sym_trailing_return_type, + STATE(8163), 1, + sym_requires_clause, + STATE(6522), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(6764), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6765), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9841), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [244667] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10516), 3, + ACTIONS(10568), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(10514), 16, + ACTIONS(10566), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -490888,14 +498350,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [240015] = 3, + [244694] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10520), 3, + ACTIONS(10572), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(10518), 16, + ACTIONS(10570), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -490912,114 +498374,208 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [240042] = 6, - ACTIONS(10118), 1, + [244721] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(10168), 1, - anon_sym_LF, - ACTIONS(10466), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10484), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10468), 3, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(8268), 1, + sym_identifier, + ACTIONS(8270), 1, + anon_sym_LPAREN2, + ACTIONS(8282), 1, + sym_primitive_type, + ACTIONS(8338), 1, + anon_sym_STAR, + ACTIONS(8340), 1, + anon_sym_AMP_AMP, + ACTIONS(8342), 1, + anon_sym_AMP, + STATE(1971), 1, + sym_pointer_type_declarator, + STATE(6877), 1, + sym__type_declarator, + STATE(8477), 1, + sym_ms_based_modifier, + ACTIONS(8280), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1985), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [244768] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7075), 1, + anon_sym_noexcept, + ACTIONS(7077), 1, + anon_sym_throw, + ACTIONS(10534), 1, + anon_sym_DASH_GT, + ACTIONS(10536), 1, + anon_sym_requires, + ACTIONS(10574), 1, + anon_sym_LBRACE, + STATE(7668), 1, + sym_trailing_return_type, + STATE(8483), 1, + sym_requires_clause, + STATE(5899), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(6809), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6759), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9841), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [244815] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(8284), 1, + sym_identifier, + ACTIONS(8286), 1, + anon_sym_LPAREN2, + ACTIONS(8288), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(10170), 11, - anon_sym_PIPE_PIPE, + ACTIONS(8290), 1, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(8292), 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, - [240075] = 3, + ACTIONS(8296), 1, + sym_primitive_type, + STATE(5974), 1, + sym__type_declarator, + STATE(6122), 1, + sym_pointer_type_declarator, + STATE(8097), 1, + sym_ms_based_modifier, + ACTIONS(8294), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(6136), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [244862] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10524), 3, + ACTIONS(4187), 1, + anon_sym_COLON_COLON, + ACTIONS(7483), 1, + anon_sym_LT, + STATE(6052), 1, + sym_template_argument_list, + ACTIONS(4934), 4, anon_sym___attribute, + anon_sym_COLON, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(10522), 16, + ACTIONS(4927), 12, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, - anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - anon_sym_final, - anon_sym_override, anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [240102] = 4, - ACTIONS(10118), 1, + [244895] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(10168), 1, - anon_sym_LF, - ACTIONS(10468), 3, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(8318), 1, + sym_identifier, + ACTIONS(8320), 1, + anon_sym_LPAREN2, + ACTIONS(8322), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(10170), 15, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(8324), 1, + anon_sym_AMP_AMP, + ACTIONS(8326), 1, + anon_sym_AMP, + ACTIONS(8330), 1, + sym_primitive_type, + STATE(3023), 1, + sym__type_declarator, + STATE(3541), 1, + sym_pointer_type_declarator, + STATE(8597), 1, + sym_ms_based_modifier, + ACTIONS(8328), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3536), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [244942] = 12, + ACTIONS(10057), 1, + sym_comment, + ACTIONS(10489), 1, anon_sym_PIPE_PIPE, + ACTIONS(10491), 1, anon_sym_AMP_AMP, + ACTIONS(10493), 1, anon_sym_PIPE, + ACTIONS(10495), 1, anon_sym_CARET, + ACTIONS(10497), 1, anon_sym_AMP, + ACTIONS(10576), 1, + anon_sym_LF, + ACTIONS(10477), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10481), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, + ACTIONS(10485), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [240131] = 5, - ACTIONS(10118), 1, - sym_comment, - ACTIONS(10168), 1, - anon_sym_LF, - ACTIONS(10466), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10468), 3, + ACTIONS(10479), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10170), 13, - 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(10483), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [240162] = 3, - ACTIONS(10118), 1, + [244987] = 3, + ACTIONS(10057), 1, sym_comment, - ACTIONS(10168), 1, + ACTIONS(10270), 1, anon_sym_LF, - ACTIONS(10170), 18, + ACTIONS(10272), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -491038,42 +498594,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [240189] = 7, - ACTIONS(10118), 1, + [245014] = 12, + ACTIONS(10057), 1, sym_comment, - ACTIONS(10168), 1, + ACTIONS(10489), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10491), 1, + anon_sym_AMP_AMP, + ACTIONS(10493), 1, + anon_sym_PIPE, + ACTIONS(10495), 1, + anon_sym_CARET, + ACTIONS(10497), 1, + anon_sym_AMP, + ACTIONS(10578), 1, anon_sym_LF, - ACTIONS(10466), 2, + ACTIONS(10477), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10484), 2, + ACTIONS(10481), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10485), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10468), 3, + ACTIONS(10479), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10482), 4, + ACTIONS(10483), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10170), 7, - anon_sym_PIPE_PIPE, + [245059] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(8268), 1, + sym_identifier, + ACTIONS(8270), 1, + anon_sym_LPAREN2, + ACTIONS(8282), 1, + sym_primitive_type, + ACTIONS(8338), 1, + anon_sym_STAR, + ACTIONS(8340), 1, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(8342), 1, anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [240224] = 3, + STATE(1971), 1, + sym_pointer_type_declarator, + STATE(6649), 1, + sym__type_declarator, + STATE(8477), 1, + sym_ms_based_modifier, + ACTIONS(8280), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1985), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [245106] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(2999), 1, + anon_sym_TILDE, + ACTIONS(6365), 1, + anon_sym_COLON_COLON, + ACTIONS(8338), 1, + anon_sym_STAR, + ACTIONS(10051), 1, + sym_identifier, + ACTIONS(10053), 1, + anon_sym_template, + STATE(2617), 1, + sym_template_function, + STATE(2653), 1, + sym_destructor_name, + STATE(2658), 1, + sym_dependent_identifier, + STATE(2662), 1, + sym_qualified_identifier, + STATE(2665), 1, + sym_operator_name, + STATE(2672), 1, + sym_pointer_type_declarator, + STATE(5923), 1, + sym__scope_resolution, + STATE(8477), 1, + sym_ms_based_modifier, + STATE(8569), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [245163] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10528), 3, + ACTIONS(9947), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(10526), 16, + ACTIONS(9945), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -491090,12 +498724,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [240251] = 3, - ACTIONS(7038), 1, - anon_sym_LF, - ACTIONS(10118), 1, + [245190] = 3, + ACTIONS(10057), 1, sym_comment, - ACTIONS(7036), 18, + ACTIONS(10326), 1, + anon_sym_LF, + ACTIONS(10328), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -491114,38 +498748,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [240278] = 3, + [245217] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(10532), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(10530), 16, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [240305] = 3, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(2999), 1, + anon_sym_TILDE, + ACTIONS(8338), 1, + anon_sym_STAR, + ACTIONS(10580), 1, + sym_identifier, + ACTIONS(10582), 1, + anon_sym_COLON_COLON, + ACTIONS(10584), 1, + anon_sym_template, + STATE(2617), 1, + sym_template_function, + STATE(2653), 1, + sym_destructor_name, + STATE(2658), 1, + sym_dependent_identifier, + STATE(2662), 1, + sym_qualified_identifier, + STATE(2665), 1, + sym_operator_name, + STATE(2672), 1, + sym_pointer_type_declarator, + STATE(5926), 1, + sym__scope_resolution, + STATE(8477), 1, + sym_ms_based_modifier, + STATE(8569), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [245274] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10536), 3, + ACTIONS(9382), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(10534), 16, + ACTIONS(9371), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -491162,174 +498811,210 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [240332] = 12, - ACTIONS(10118), 1, + [245301] = 12, + ACTIONS(10057), 1, sym_comment, - ACTIONS(10470), 1, + ACTIONS(10489), 1, anon_sym_PIPE_PIPE, - ACTIONS(10472), 1, + ACTIONS(10491), 1, anon_sym_AMP_AMP, - ACTIONS(10474), 1, + ACTIONS(10493), 1, anon_sym_PIPE, - ACTIONS(10476), 1, + ACTIONS(10495), 1, anon_sym_CARET, - ACTIONS(10478), 1, + ACTIONS(10497), 1, anon_sym_AMP, - ACTIONS(10538), 1, + ACTIONS(10586), 1, anon_sym_LF, - ACTIONS(10466), 2, + ACTIONS(10477), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10480), 2, + ACTIONS(10481), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10484), 2, + ACTIONS(10485), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10468), 3, + ACTIONS(10479), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10482), 4, + ACTIONS(10483), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [240377] = 3, + [245346] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(10542), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(10540), 16, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, + ACTIONS(7075), 1, + anon_sym_noexcept, + ACTIONS(7077), 1, + anon_sym_throw, + ACTIONS(10534), 1, + anon_sym_DASH_GT, + ACTIONS(10536), 1, anon_sym_requires, - [240404] = 12, - ACTIONS(10118), 1, + ACTIONS(10588), 1, + anon_sym_LBRACE, + STATE(7569), 1, + sym_trailing_return_type, + STATE(8294), 1, + sym_requires_clause, + STATE(5911), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(6784), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6775), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9841), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [245393] = 10, + ACTIONS(10057), 1, sym_comment, - ACTIONS(10168), 1, + ACTIONS(10451), 1, anon_sym_LF, - ACTIONS(10170), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10472), 1, - anon_sym_AMP_AMP, - ACTIONS(10474), 1, - anon_sym_PIPE, - ACTIONS(10476), 1, + ACTIONS(10495), 1, anon_sym_CARET, - ACTIONS(10478), 1, + ACTIONS(10497), 1, anon_sym_AMP, - ACTIONS(10466), 2, + ACTIONS(10477), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10480), 2, + ACTIONS(10481), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10484), 2, + ACTIONS(10485), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10468), 3, + ACTIONS(10453), 3, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + ACTIONS(10479), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10482), 4, + ACTIONS(10483), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [240449] = 11, - ACTIONS(10118), 1, + [245434] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(10168), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(2999), 1, + anon_sym_TILDE, + ACTIONS(7263), 1, + anon_sym_COLON_COLON, + ACTIONS(8312), 1, + anon_sym_STAR, + ACTIONS(10051), 1, + sym_identifier, + ACTIONS(10053), 1, + anon_sym_template, + STATE(2617), 1, + sym_template_function, + STATE(2653), 1, + sym_destructor_name, + STATE(2658), 1, + sym_dependent_identifier, + STATE(2662), 1, + sym_qualified_identifier, + STATE(2665), 1, + sym_operator_name, + STATE(2672), 1, + sym_pointer_type_declarator, + STATE(5931), 1, + sym__scope_resolution, + STATE(8660), 1, + sym_ms_based_modifier, + STATE(8569), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [245491] = 11, + ACTIONS(10057), 1, + sym_comment, + ACTIONS(10451), 1, anon_sym_LF, - ACTIONS(10474), 1, + ACTIONS(10493), 1, anon_sym_PIPE, - ACTIONS(10476), 1, + ACTIONS(10495), 1, anon_sym_CARET, - ACTIONS(10478), 1, + ACTIONS(10497), 1, anon_sym_AMP, - ACTIONS(10170), 2, + ACTIONS(10453), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(10466), 2, + ACTIONS(10477), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10480), 2, + ACTIONS(10481), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10484), 2, + ACTIONS(10485), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10468), 3, + ACTIONS(10479), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10482), 4, + ACTIONS(10483), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [240492] = 17, + [245534] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, - anon_sym___asm, - ACTIONS(3615), 1, - anon_sym_LBRACE, - ACTIONS(7838), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9995), 1, + ACTIONS(4187), 1, + anon_sym_COLON_COLON, + ACTIONS(8725), 1, + anon_sym_LT, + STATE(2745), 1, + sym_template_argument_list, + ACTIONS(5834), 2, + anon_sym___attribute, + anon_sym_COLON, + ACTIONS(4192), 14, anon_sym_COMMA, - ACTIONS(9997), 1, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(10001), 1, - anon_sym_LBRACK, - ACTIONS(10003), 1, - anon_sym_EQ, - ACTIONS(10544), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, - ACTIONS(10546), 1, - anon_sym_COLON, - STATE(2956), 1, - sym_parameter_list, - STATE(5979), 1, - sym__function_declarator_seq, - STATE(7162), 1, - sym_gnu_asm_expression, - STATE(7163), 1, - aux_sym_declaration_repeat1, - ACTIONS(10005), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(6341), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7680), 2, - sym_argument_list, - sym_initializer_list, - [240547] = 3, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_or, + anon_sym_and, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [245567] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10550), 3, + ACTIONS(9700), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(10548), 16, + ACTIONS(9689), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -491346,298 +499031,166 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [240574] = 12, - ACTIONS(10118), 1, + [245594] = 3, + ACTIONS(10057), 1, sym_comment, - ACTIONS(10470), 1, + ACTIONS(10242), 1, + anon_sym_LF, + ACTIONS(10244), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, - ACTIONS(10472), 1, anon_sym_AMP_AMP, - ACTIONS(10474), 1, anon_sym_PIPE, - ACTIONS(10476), 1, anon_sym_CARET, - ACTIONS(10478), 1, anon_sym_AMP, - ACTIONS(10552), 1, - anon_sym_LF, - ACTIONS(10466), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10480), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10484), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10468), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(10482), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [240619] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(2979), 1, - anon_sym_TILDE, - ACTIONS(7297), 1, - anon_sym_COLON_COLON, - ACTIONS(8312), 1, - anon_sym_STAR, - ACTIONS(10554), 1, - sym_identifier, - ACTIONS(10556), 1, - anon_sym_template, - STATE(5838), 1, - sym__scope_resolution, - STATE(6024), 1, - sym_pointer_type_declarator, - STATE(6025), 1, - sym_template_function, - STATE(6026), 1, - sym_destructor_name, - STATE(6027), 1, - sym_dependent_identifier, - STATE(6028), 1, - sym_qualified_identifier, - STATE(6029), 1, - sym_operator_name, - STATE(8365), 1, - sym_ms_based_modifier, - STATE(8601), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [240676] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9676), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9665), 16, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [240703] = 12, - ACTIONS(10118), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + [245621] = 12, + ACTIONS(10057), 1, sym_comment, - ACTIONS(10470), 1, + ACTIONS(10489), 1, anon_sym_PIPE_PIPE, - ACTIONS(10472), 1, + ACTIONS(10491), 1, anon_sym_AMP_AMP, - ACTIONS(10474), 1, + ACTIONS(10493), 1, anon_sym_PIPE, - ACTIONS(10476), 1, + ACTIONS(10495), 1, anon_sym_CARET, - ACTIONS(10478), 1, + ACTIONS(10497), 1, anon_sym_AMP, - ACTIONS(10558), 1, + ACTIONS(10590), 1, anon_sym_LF, - ACTIONS(10466), 2, + ACTIONS(10477), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10480), 2, + ACTIONS(10481), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10484), 2, + ACTIONS(10485), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10468), 3, + ACTIONS(10479), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10482), 4, + ACTIONS(10483), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [240748] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10562), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(10560), 16, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [240775] = 10, - ACTIONS(10118), 1, + [245666] = 7, + ACTIONS(10057), 1, sym_comment, - ACTIONS(10168), 1, + ACTIONS(10451), 1, anon_sym_LF, - ACTIONS(10476), 1, - anon_sym_CARET, - ACTIONS(10478), 1, - anon_sym_AMP, - ACTIONS(10466), 2, + ACTIONS(10477), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10480), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(10484), 2, + ACTIONS(10485), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10170), 3, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - ACTIONS(10468), 3, + ACTIONS(10479), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10482), 4, + ACTIONS(10483), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [240816] = 12, - ACTIONS(10118), 1, - sym_comment, - ACTIONS(10470), 1, + ACTIONS(10453), 7, anon_sym_PIPE_PIPE, - ACTIONS(10472), 1, anon_sym_AMP_AMP, - ACTIONS(10474), 1, anon_sym_PIPE, - ACTIONS(10476), 1, anon_sym_CARET, - ACTIONS(10478), 1, anon_sym_AMP, - ACTIONS(10564), 1, - anon_sym_LF, - ACTIONS(10466), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10480), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10484), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10468), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(10482), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [240861] = 12, - ACTIONS(10118), 1, + [245701] = 12, + ACTIONS(10057), 1, sym_comment, - ACTIONS(10470), 1, + ACTIONS(10489), 1, anon_sym_PIPE_PIPE, - ACTIONS(10472), 1, + ACTIONS(10491), 1, anon_sym_AMP_AMP, - ACTIONS(10474), 1, + ACTIONS(10493), 1, anon_sym_PIPE, - ACTIONS(10476), 1, + ACTIONS(10495), 1, anon_sym_CARET, - ACTIONS(10478), 1, + ACTIONS(10497), 1, anon_sym_AMP, - ACTIONS(10566), 1, + ACTIONS(10592), 1, anon_sym_LF, - ACTIONS(10466), 2, + ACTIONS(10477), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10480), 2, + ACTIONS(10481), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10484), 2, + ACTIONS(10485), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10468), 3, + ACTIONS(10479), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10482), 4, + ACTIONS(10483), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [240906] = 13, + [245746] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8280), 1, + ACTIONS(8284), 1, sym_identifier, - ACTIONS(8282), 1, + ACTIONS(8286), 1, anon_sym_LPAREN2, - ACTIONS(8292), 1, + ACTIONS(8296), 1, sym_primitive_type, - ACTIONS(8300), 1, + ACTIONS(8332), 1, anon_sym_STAR, - ACTIONS(8302), 1, + ACTIONS(8334), 1, anon_sym_AMP_AMP, - ACTIONS(8304), 1, + ACTIONS(8336), 1, anon_sym_AMP, - STATE(2220), 1, + STATE(6122), 1, sym_pointer_type_declarator, - STATE(6734), 1, + STATE(6355), 1, sym__type_declarator, - STATE(8344), 1, + STATE(8378), 1, sym_ms_based_modifier, - ACTIONS(8290), 4, + ACTIONS(8294), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2218), 5, + STATE(6136), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, sym_reference_type_declarator, - [240953] = 3, + [245793] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9849), 3, + ACTIONS(10596), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9847), 16, + ACTIONS(10594), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -491654,217 +499207,315 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [240980] = 18, - ACTIONS(3), 1, + [245820] = 9, + ACTIONS(10057), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(2979), 1, - anon_sym_TILDE, - ACTIONS(6321), 1, - anon_sym_COLON_COLON, - ACTIONS(8300), 1, + ACTIONS(10451), 1, + anon_sym_LF, + ACTIONS(10497), 1, + anon_sym_AMP, + ACTIONS(10477), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10481), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10485), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10479), 3, anon_sym_STAR, - ACTIONS(10120), 1, - sym_identifier, - ACTIONS(10122), 1, - anon_sym_template, - STATE(2776), 1, - sym_operator_name, - STATE(2782), 1, - sym_destructor_name, - STATE(2786), 1, - sym_dependent_identifier, - STATE(2822), 1, - sym_qualified_identifier, - STATE(2836), 1, - sym_pointer_type_declarator, - STATE(2838), 1, - sym_template_function, - STATE(5847), 1, - sym__scope_resolution, - STATE(8344), 1, - sym_ms_based_modifier, - STATE(8601), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [241037] = 13, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10453), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(10483), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [245859] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8252), 1, + ACTIONS(8268), 1, sym_identifier, - ACTIONS(8254), 1, + ACTIONS(8270), 1, anon_sym_LPAREN2, - ACTIONS(8264), 1, - sym_primitive_type, - ACTIONS(8312), 1, + ACTIONS(8272), 1, anon_sym_STAR, - ACTIONS(8314), 1, + ACTIONS(8274), 1, anon_sym_AMP_AMP, - ACTIONS(8316), 1, + ACTIONS(8276), 1, anon_sym_AMP, - STATE(6089), 1, + ACTIONS(8282), 1, + sym_primitive_type, + STATE(1971), 1, sym_pointer_type_declarator, - STATE(6216), 1, + STATE(2240), 1, sym__type_declarator, - STATE(8365), 1, + STATE(8550), 1, sym_ms_based_modifier, - ACTIONS(8262), 4, + ACTIONS(8280), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(6082), 5, + STATE(1985), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, sym_reference_type_declarator, - [241084] = 6, + [245906] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4167), 1, - anon_sym_COLON_COLON, - ACTIONS(7386), 1, - anon_sym_LT, - STATE(5954), 1, - sym_template_argument_list, - ACTIONS(4972), 4, + ACTIONS(10598), 1, + anon_sym_LBRACK_LBRACK, + STATE(5943), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(2043), 3, anon_sym___attribute, - anon_sym_COLON, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(4965), 12, + ACTIONS(6273), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, + anon_sym_using, anon_sym_LBRACE, + anon_sym_RBRACK, anon_sym_EQ, anon_sym_asm, anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [241117] = 18, + [245937] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(2979), 1, - anon_sym_TILDE, - ACTIONS(7177), 1, - anon_sym_COLON_COLON, - ACTIONS(8330), 1, + ACTIONS(5020), 1, + anon_sym_LPAREN2, + ACTIONS(8147), 1, + anon_sym_LBRACK, + ACTIONS(8352), 1, anon_sym_STAR, - ACTIONS(10120), 1, - sym_identifier, - ACTIONS(10122), 1, - anon_sym_template, - STATE(2776), 1, - sym_operator_name, - STATE(2782), 1, - sym_destructor_name, - STATE(2786), 1, - sym_dependent_identifier, - STATE(2822), 1, - sym_qualified_identifier, - STATE(2836), 1, - sym_pointer_type_declarator, - STATE(2838), 1, - sym_template_function, - STATE(5850), 1, - sym__scope_resolution, - STATE(8527), 1, - sym_ms_based_modifier, - STATE(8601), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [241174] = 11, + ACTIONS(8354), 1, + anon_sym_AMP_AMP, + ACTIONS(8356), 1, + anon_sym_AMP, + STATE(3198), 1, + sym_parameter_list, + STATE(6109), 1, + sym__function_declarator_seq, + STATE(6677), 1, + sym__abstract_declarator, + STATE(6099), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8360), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [245980] = 12, + ACTIONS(10057), 1, + sym_comment, + ACTIONS(10489), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10491), 1, + anon_sym_AMP_AMP, + ACTIONS(10493), 1, + anon_sym_PIPE, + ACTIONS(10495), 1, + anon_sym_CARET, + ACTIONS(10497), 1, + anon_sym_AMP, + ACTIONS(10601), 1, + anon_sym_LF, + ACTIONS(10477), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10481), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10485), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10479), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10483), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [246025] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5012), 1, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7075), 1, + anon_sym_noexcept, + ACTIONS(7077), 1, + anon_sym_throw, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(8131), 1, + ACTIONS(9843), 1, + anon_sym_DASH_GT, + ACTIONS(10603), 1, + anon_sym_LBRACE, + STATE(5915), 1, + sym_parameter_list, + STATE(8531), 1, + sym_trailing_return_type, + STATE(4831), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6086), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(6897), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9841), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [246072] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7848), 1, + anon_sym_LPAREN2, + ACTIONS(7862), 1, anon_sym_LBRACK, - ACTIONS(8324), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8326), 1, + ACTIONS(8264), 1, anon_sym_AMP_AMP, - ACTIONS(8328), 1, + ACTIONS(8266), 1, anon_sym_AMP, - STATE(3179), 1, + STATE(3255), 1, sym_parameter_list, - STATE(6087), 1, + STATE(5953), 1, sym__function_declarator_seq, - STATE(6546), 1, + STATE(6684), 1, sym__abstract_declarator, - STATE(6092), 5, + STATE(5952), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8306), 6, - anon_sym_DOT_DOT_DOT, + ACTIONS(8360), 6, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [246115] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10607), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(10605), 16, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, anon_sym_final, anon_sym_override, anon_sym_GT2, + anon_sym_try, anon_sym_requires, - [241217] = 13, + [246142] = 3, + ACTIONS(10057), 1, + sym_comment, + ACTIONS(10447), 1, + anon_sym_LF, + ACTIONS(10449), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + [246169] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8236), 1, + ACTIONS(8268), 1, sym_identifier, - ACTIONS(8238), 1, + ACTIONS(8270), 1, anon_sym_LPAREN2, - ACTIONS(8240), 1, + ACTIONS(8282), 1, + sym_primitive_type, + ACTIONS(8338), 1, anon_sym_STAR, - ACTIONS(8242), 1, + ACTIONS(8340), 1, anon_sym_AMP_AMP, - ACTIONS(8244), 1, + ACTIONS(8342), 1, anon_sym_AMP, - ACTIONS(8250), 1, - sym_primitive_type, - STATE(3077), 1, - sym__type_declarator, - STATE(3394), 1, + STATE(1971), 1, sym_pointer_type_declarator, - STATE(8712), 1, + STATE(6054), 1, + sym__type_declarator, + STATE(8477), 1, sym_ms_based_modifier, - ACTIONS(8248), 4, + ACTIONS(8280), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3392), 5, + STATE(1985), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, sym_reference_type_declarator, - [241264] = 3, - ACTIONS(10118), 1, + [246216] = 3, + ACTIONS(10057), 1, sym_comment, - ACTIONS(10220), 1, + ACTIONS(10262), 1, anon_sym_LF, - ACTIONS(10222), 18, + ACTIONS(10264), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -491883,44 +499534,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [241291] = 9, - ACTIONS(10118), 1, + [246243] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(10168), 1, - anon_sym_LF, - ACTIONS(10478), 1, - anon_sym_AMP, - ACTIONS(10466), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10480), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(10484), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10468), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(10170), 4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(10482), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [241330] = 3, + ACTIONS(10611), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(10609), 16, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [246270] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10570), 3, + ACTIONS(10615), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(10568), 16, + ACTIONS(10613), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -491937,213 +499582,177 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [241357] = 8, - ACTIONS(10118), 1, + [246297] = 12, + ACTIONS(10057), 1, sym_comment, - ACTIONS(10168), 1, + ACTIONS(10489), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10491), 1, + anon_sym_AMP_AMP, + ACTIONS(10493), 1, + anon_sym_PIPE, + ACTIONS(10495), 1, + anon_sym_CARET, + ACTIONS(10497), 1, + anon_sym_AMP, + ACTIONS(10617), 1, anon_sym_LF, - ACTIONS(10466), 2, + ACTIONS(10477), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10480), 2, + ACTIONS(10481), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10484), 2, + ACTIONS(10485), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10468), 3, + ACTIONS(10479), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10482), 4, + ACTIONS(10483), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10170), 5, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - [241394] = 12, - ACTIONS(10118), 1, + [246342] = 12, + ACTIONS(10057), 1, sym_comment, - ACTIONS(10470), 1, + ACTIONS(10489), 1, anon_sym_PIPE_PIPE, - ACTIONS(10472), 1, + ACTIONS(10491), 1, anon_sym_AMP_AMP, - ACTIONS(10474), 1, + ACTIONS(10493), 1, anon_sym_PIPE, - ACTIONS(10476), 1, + ACTIONS(10495), 1, anon_sym_CARET, - ACTIONS(10478), 1, + ACTIONS(10497), 1, anon_sym_AMP, - ACTIONS(10572), 1, + ACTIONS(10619), 1, anon_sym_LF, - ACTIONS(10466), 2, + ACTIONS(10477), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10480), 2, + ACTIONS(10481), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10484), 2, + ACTIONS(10485), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10468), 3, + ACTIONS(10479), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10482), 4, + ACTIONS(10483), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [241439] = 18, + [246387] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1852), 1, + ACTIONS(1850), 1, anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2979), 1, + ACTIONS(2999), 1, anon_sym_TILDE, - ACTIONS(8300), 1, + ACTIONS(8338), 1, anon_sym_STAR, - ACTIONS(10162), 1, + ACTIONS(10214), 1, anon_sym_COLON_COLON, - ACTIONS(10574), 1, + ACTIONS(10621), 1, sym_identifier, - ACTIONS(10576), 1, + ACTIONS(10623), 1, anon_sym_template, - STATE(2776), 1, - sym_operator_name, - STATE(2782), 1, + STATE(2617), 1, + sym_template_function, + STATE(2653), 1, sym_destructor_name, - STATE(2786), 1, + STATE(2658), 1, sym_dependent_identifier, - STATE(2822), 1, + STATE(2662), 1, sym_qualified_identifier, - STATE(2836), 1, + STATE(2665), 1, + sym_operator_name, + STATE(2672), 1, sym_pointer_type_declarator, - STATE(2838), 1, - sym_template_function, - STATE(5858), 1, + STATE(5956), 1, sym__scope_resolution, - STATE(8344), 1, + STATE(8477), 1, sym_ms_based_modifier, - STATE(8601), 3, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - [241496] = 6, + [246444] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(4167), 1, - anon_sym_COLON_COLON, - ACTIONS(7386), 1, - anon_sym_LT, - STATE(5954), 1, - sym_template_argument_list, - ACTIONS(8093), 4, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(8268), 1, + sym_identifier, + ACTIONS(8270), 1, + anon_sym_LPAREN2, + ACTIONS(8282), 1, + sym_primitive_type, + ACTIONS(8338), 1, + anon_sym_STAR, + ACTIONS(8340), 1, + anon_sym_AMP_AMP, + ACTIONS(8342), 1, + anon_sym_AMP, + STATE(1971), 1, + sym_pointer_type_declarator, + STATE(6835), 1, + sym__type_declarator, + STATE(8477), 1, + sym_ms_based_modifier, + ACTIONS(8280), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1985), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [246491] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10627), 3, anon_sym___attribute, - anon_sym_COLON, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(5036), 12, + ACTIONS(10625), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [241529] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(2979), 1, - anon_sym_TILDE, - ACTIONS(5861), 1, - anon_sym_COLON_COLON, - ACTIONS(8256), 1, - anon_sym_STAR, - ACTIONS(10554), 1, - sym_identifier, - ACTIONS(10556), 1, - anon_sym_template, - STATE(5860), 1, - sym__scope_resolution, - STATE(6024), 1, - sym_pointer_type_declarator, - STATE(6025), 1, - sym_template_function, - STATE(6026), 1, - sym_destructor_name, - STATE(6027), 1, - sym_dependent_identifier, - STATE(6028), 1, - sym_qualified_identifier, - STATE(6029), 1, - sym_operator_name, - STATE(8067), 1, - sym_ms_based_modifier, - STATE(8601), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [241586] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7842), 1, - anon_sym_LPAREN2, - ACTIONS(7856), 1, - anon_sym_LBRACK, - ACTIONS(8318), 1, - anon_sym_STAR, - ACTIONS(8320), 1, - anon_sym_AMP_AMP, - ACTIONS(8322), 1, - anon_sym_AMP, - STATE(3273), 1, - sym_parameter_list, - STATE(5792), 1, - sym__function_declarator_seq, - STATE(6530), 1, - sym__abstract_declarator, - STATE(5804), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8306), 6, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, anon_sym_final, anon_sym_override, + anon_sym_GT2, + anon_sym_try, anon_sym_requires, - [241629] = 3, + [246518] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10580), 3, + ACTIONS(10631), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(10578), 16, + ACTIONS(10629), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -492160,76 +499769,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [241656] = 13, - ACTIONS(3), 1, + [246545] = 12, + ACTIONS(10057), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(8280), 1, - sym_identifier, - ACTIONS(8282), 1, - anon_sym_LPAREN2, - ACTIONS(8284), 1, - anon_sym_STAR, - ACTIONS(8286), 1, + ACTIONS(10451), 1, + anon_sym_LF, + ACTIONS(10453), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10491), 1, anon_sym_AMP_AMP, - ACTIONS(8288), 1, + ACTIONS(10493), 1, + anon_sym_PIPE, + ACTIONS(10495), 1, + anon_sym_CARET, + ACTIONS(10497), 1, anon_sym_AMP, - ACTIONS(8292), 1, - sym_primitive_type, - STATE(2194), 1, - sym__type_declarator, - STATE(2220), 1, - sym_pointer_type_declarator, - STATE(7984), 1, - sym_ms_based_modifier, - ACTIONS(8290), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2218), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - [241703] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7072), 1, - anon_sym_noexcept, - ACTIONS(7074), 1, - anon_sym_throw, - ACTIONS(10582), 1, - anon_sym_LBRACE, - ACTIONS(10584), 1, - anon_sym_DASH_GT, - ACTIONS(10586), 1, - anon_sym_requires, - STATE(7188), 1, - sym_trailing_return_type, - STATE(8327), 1, - sym_requires_clause, - STATE(6402), 2, - sym_lambda_specifier, - aux_sym_lambda_declarator_repeat1, - STATE(6665), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6676), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9811), 4, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - [241750] = 3, - ACTIONS(10118), 1, + ACTIONS(10477), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10481), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10485), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10479), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10483), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [246590] = 3, + ACTIONS(10057), 1, sym_comment, ACTIONS(10393), 1, anon_sym_LF, @@ -492252,147 +499826,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [241777] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7072), 1, - anon_sym_noexcept, - ACTIONS(7074), 1, - anon_sym_throw, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - ACTIONS(9813), 1, - anon_sym_DASH_GT, - ACTIONS(10588), 1, - anon_sym_LBRACE, - STATE(5875), 1, - sym_parameter_list, - STATE(8505), 1, - sym_trailing_return_type, - STATE(4776), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5975), 2, - sym_lambda_specifier, - aux_sym_lambda_declarator_repeat1, - STATE(6844), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9811), 4, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - [241824] = 12, - ACTIONS(10118), 1, + [246617] = 4, + ACTIONS(10057), 1, sym_comment, - ACTIONS(10470), 1, + ACTIONS(10451), 1, + anon_sym_LF, + ACTIONS(10479), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10453), 15, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE_PIPE, - ACTIONS(10472), 1, anon_sym_AMP_AMP, - ACTIONS(10474), 1, anon_sym_PIPE, - ACTIONS(10476), 1, anon_sym_CARET, - ACTIONS(10478), 1, anon_sym_AMP, - ACTIONS(10590), 1, - anon_sym_LF, - ACTIONS(10466), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10480), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10484), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10468), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(10482), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [241869] = 13, - ACTIONS(3), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + [246646] = 12, + ACTIONS(10057), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(8280), 1, - sym_identifier, - ACTIONS(8282), 1, - anon_sym_LPAREN2, - ACTIONS(8292), 1, - sym_primitive_type, - ACTIONS(8330), 1, - anon_sym_STAR, - ACTIONS(8332), 1, + ACTIONS(10489), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10491), 1, anon_sym_AMP_AMP, - ACTIONS(8334), 1, + ACTIONS(10493), 1, + anon_sym_PIPE, + ACTIONS(10495), 1, + anon_sym_CARET, + ACTIONS(10497), 1, anon_sym_AMP, - STATE(2220), 1, - sym_pointer_type_declarator, - STATE(6727), 1, - sym__type_declarator, - STATE(8527), 1, - sym_ms_based_modifier, - ACTIONS(8290), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2218), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - [241916] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7072), 1, - anon_sym_noexcept, - ACTIONS(7074), 1, - anon_sym_throw, - ACTIONS(10584), 1, - anon_sym_DASH_GT, - ACTIONS(10586), 1, - anon_sym_requires, - ACTIONS(10592), 1, - anon_sym_LBRACE, - STATE(7474), 1, - sym_trailing_return_type, - STATE(8330), 1, - sym_requires_clause, - STATE(6402), 2, - sym_lambda_specifier, - aux_sym_lambda_declarator_repeat1, - STATE(6668), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6669), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9811), 4, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - [241963] = 3, - ACTIONS(10118), 1, + ACTIONS(10633), 1, + anon_sym_LF, + ACTIONS(10477), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10481), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10485), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10479), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10483), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [246691] = 3, + ACTIONS(10057), 1, sym_comment, - ACTIONS(10174), 1, + ACTIONS(10451), 1, anon_sym_LF, - ACTIONS(10176), 18, + ACTIONS(10453), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -492411,417 +499908,463 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [241990] = 14, + [246718] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9150), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9139), 16, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [246745] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(10066), 1, + ACTIONS(10031), 1, anon_sym_SLASH, - ACTIONS(10068), 1, + ACTIONS(10033), 1, anon_sym_PIPE_PIPE, - ACTIONS(10070), 1, + ACTIONS(10035), 1, anon_sym_AMP_AMP, - ACTIONS(10072), 1, + ACTIONS(10037), 1, anon_sym_PIPE, - ACTIONS(10074), 1, + ACTIONS(10039), 1, anon_sym_CARET, - ACTIONS(10076), 1, + ACTIONS(10041), 1, anon_sym_AMP, - ACTIONS(10594), 1, + ACTIONS(10635), 1, anon_sym_RPAREN, - ACTIONS(10062), 2, + ACTIONS(10027), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10064), 2, + ACTIONS(10029), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(10078), 2, + ACTIONS(10043), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10080), 2, + ACTIONS(10045), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(10082), 2, + ACTIONS(10047), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(10084), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [242039] = 12, - ACTIONS(10118), 1, - sym_comment, - ACTIONS(10470), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10472), 1, - anon_sym_AMP_AMP, - ACTIONS(10474), 1, - anon_sym_PIPE, - ACTIONS(10476), 1, - anon_sym_CARET, - ACTIONS(10478), 1, - anon_sym_AMP, - ACTIONS(10596), 1, - anon_sym_LF, - ACTIONS(10466), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10480), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(10484), 2, + ACTIONS(10049), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10468), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(10482), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [242084] = 13, + [246794] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8266), 1, - sym_identifier, - ACTIONS(8268), 1, - anon_sym_LPAREN2, - ACTIONS(8270), 1, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(2999), 1, + anon_sym_TILDE, + ACTIONS(7277), 1, + anon_sym_COLON_COLON, + ACTIONS(8332), 1, anon_sym_STAR, - ACTIONS(8272), 1, - anon_sym_AMP_AMP, - ACTIONS(8274), 1, - anon_sym_AMP, - ACTIONS(8278), 1, - sym_primitive_type, - STATE(2925), 1, - sym__type_declarator, - STATE(3288), 1, + ACTIONS(10526), 1, + sym_identifier, + ACTIONS(10528), 1, + anon_sym_template, + STATE(5967), 1, + sym__scope_resolution, + STATE(6095), 1, sym_pointer_type_declarator, - STATE(8665), 1, + STATE(6100), 1, + sym_template_function, + STATE(6154), 1, + sym_dependent_identifier, + STATE(6158), 1, + sym_operator_name, + STATE(6181), 1, + sym_qualified_identifier, + STATE(6197), 1, + sym_destructor_name, + STATE(8378), 1, sym_ms_based_modifier, - ACTIONS(8276), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3285), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - [242131] = 13, + STATE(8569), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [246851] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5472), 1, + ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7072), 1, - anon_sym_noexcept, - ACTIONS(7074), 1, - anon_sym_throw, - ACTIONS(10584), 1, - anon_sym_DASH_GT, - ACTIONS(10586), 1, - anon_sym_requires, - ACTIONS(10598), 1, - anon_sym_LBRACE, - STATE(7514), 1, - sym_trailing_return_type, - STATE(8488), 1, - sym_requires_clause, - STATE(5864), 2, - sym_lambda_specifier, - aux_sym_lambda_declarator_repeat1, - STATE(6697), 2, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(10637), 1, + anon_sym_LBRACK, + STATE(6113), 1, + sym_parameter_list, + ACTIONS(6202), 2, + anon_sym___attribute, + anon_sym___asm, + STATE(6057), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6695), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9811), 4, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - [242178] = 13, + ACTIONS(6204), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [246887] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7072), 1, - anon_sym_noexcept, - ACTIONS(7074), 1, - anon_sym_throw, - ACTIONS(10584), 1, - anon_sym_DASH_GT, - ACTIONS(10586), 1, + ACTIONS(10639), 1, anon_sym_requires, - ACTIONS(10600), 1, - anon_sym_LBRACE, - STATE(7208), 1, - sym_trailing_return_type, - STATE(7927), 1, + ACTIONS(9951), 2, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9963), 2, + anon_sym_final, + anon_sym_override, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5912), 2, + sym__function_postfix, sym_requires_clause, - STATE(5869), 2, - sym_lambda_specifier, - aux_sym_lambda_declarator_repeat1, - STATE(6643), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6707), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9811), 4, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - [242225] = 3, + ACTIONS(9949), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [246921] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9845), 3, - anon_sym___attribute, + ACTIONS(6248), 2, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9843), 16, + ACTIONS(10642), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6250), 14, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, + anon_sym_or, anon_sym_asm, anon_sym___asm__, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_try, anon_sym_requires, - [242252] = 3, + [246949] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9355), 3, + ACTIONS(7395), 1, + anon_sym_requires, + ACTIONS(6037), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(9951), 2, + anon_sym_LBRACK, + anon_sym___asm, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5912), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9949), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [246983] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(113), 1, + anon_sym___asm, + ACTIONS(894), 1, + anon_sym_LBRACE, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(10063), 1, + anon_sym_COMMA, + ACTIONS(10071), 1, + anon_sym_LBRACK, + ACTIONS(10138), 1, + anon_sym_try, + ACTIONS(10644), 1, + anon_sym_SEMI, + STATE(686), 1, + sym_compound_statement, + STATE(687), 1, + sym_try_statement, + STATE(3108), 1, + sym_parameter_list, + STATE(6203), 1, + sym__function_declarator_seq, + STATE(7456), 1, + sym_gnu_asm_expression, + STATE(7457), 1, + aux_sym_declaration_repeat1, + ACTIONS(10075), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6081), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [247037] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6464), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9344), 16, + ACTIONS(6466), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_LT, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_RBRACK, anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - anon_sym_final, - anon_sym_override, anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [242279] = 13, + [247063] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(8280), 1, - sym_identifier, - ACTIONS(8282), 1, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(8292), 1, - sym_primitive_type, - ACTIONS(8300), 1, - anon_sym_STAR, - ACTIONS(8302), 1, - anon_sym_AMP_AMP, - ACTIONS(8304), 1, - anon_sym_AMP, - STATE(2220), 1, - sym_pointer_type_declarator, - STATE(6717), 1, - sym__type_declarator, - STATE(8344), 1, - sym_ms_based_modifier, - ACTIONS(8290), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2218), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - [242326] = 12, - ACTIONS(10118), 1, - sym_comment, - ACTIONS(10470), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10472), 1, - anon_sym_AMP_AMP, - ACTIONS(10474), 1, - anon_sym_PIPE, - ACTIONS(10476), 1, - anon_sym_CARET, - ACTIONS(10478), 1, - anon_sym_AMP, - ACTIONS(10602), 1, - anon_sym_LF, - ACTIONS(10466), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10480), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(10484), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10468), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(10482), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [242371] = 12, - ACTIONS(10118), 1, - sym_comment, - ACTIONS(10470), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10472), 1, - anon_sym_AMP_AMP, - ACTIONS(10474), 1, - anon_sym_PIPE, - ACTIONS(10476), 1, - anon_sym_CARET, - ACTIONS(10478), 1, - anon_sym_AMP, - ACTIONS(10604), 1, - anon_sym_LF, - ACTIONS(10466), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10480), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(10484), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10468), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(10482), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [242416] = 9, + ACTIONS(10637), 1, + anon_sym_LBRACK, + STATE(6113), 1, + sym_parameter_list, + ACTIONS(6198), 2, + anon_sym___attribute, + anon_sym___asm, + STATE(6057), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6200), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [247099] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7301), 1, + ACTIONS(7361), 1, anon_sym_requires, - ACTIONS(7313), 1, - anon_sym_DASH_GT, - STATE(5418), 1, - sym_trailing_return_type, - ACTIONS(6020), 2, + ACTIONS(9382), 1, + anon_sym___attribute, + ACTIONS(7359), 2, anon_sym_final, anon_sym_override, - ACTIONS(9355), 2, - anon_sym___attribute, - anon_sym_LBRACK, - STATE(5606), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5839), 2, + STATE(6132), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9344), 7, + ACTIONS(9371), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_GT2, - [242454] = 9, + anon_sym_try, + [247133] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(7313), 1, - anon_sym_DASH_GT, - ACTIONS(9376), 1, - anon_sym_requires, - STATE(5448), 1, - sym_trailing_return_type, - ACTIONS(9355), 2, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(113), 1, + anon_sym___asm, + ACTIONS(3623), 1, + anon_sym_LBRACE, + ACTIONS(10063), 1, + anon_sym_COMMA, + ACTIONS(10065), 1, + anon_sym_LPAREN2, + ACTIONS(10071), 1, + anon_sym_LBRACK, + ACTIONS(10073), 1, + anon_sym_EQ, + ACTIONS(10180), 1, + anon_sym_SEMI, + STATE(2989), 1, + sym_parameter_list, + STATE(6203), 1, + sym__function_declarator_seq, + STATE(7254), 1, + sym_gnu_asm_expression, + STATE(7266), 1, + aux_sym_declaration_repeat1, + ACTIONS(10075), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6081), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7980), 2, + sym_argument_list, + sym_initializer_list, + [247185] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5160), 1, anon_sym___attribute, + ACTIONS(5162), 17, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(9357), 2, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, anon_sym_final, anon_sym_override, - STATE(5606), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5839), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9344), 7, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [247211] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6678), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(6680), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_LT, + anon_sym_SEMI, anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACK, anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, anon_sym_GT2, - [242492] = 9, + anon_sym_try, + [247237] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7313), 1, - anon_sym_DASH_GT, - ACTIONS(9696), 1, - anon_sym_requires, - STATE(5450), 1, - sym_trailing_return_type, - ACTIONS(9676), 2, + ACTIONS(1936), 1, anon_sym___attribute, + ACTIONS(1934), 17, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(9681), 2, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [247263] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9700), 1, + anon_sym___attribute, + ACTIONS(9742), 1, + anon_sym_requires, + ACTIONS(9727), 2, anon_sym_final, anon_sym_override, - STATE(5606), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5876), 2, + STATE(6133), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9665), 7, + ACTIONS(9689), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_GT2, - [242530] = 3, + anon_sym_try, + [247297] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5136), 1, + ACTIONS(5200), 1, anon_sym___attribute, - ACTIONS(5138), 17, + ACTIONS(5202), 17, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -492839,71 +500382,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [242556] = 5, + [247323] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6253), 1, + ACTIONS(5180), 1, anon_sym___attribute, - ACTIONS(10606), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(10608), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(6255), 13, + ACTIONS(5182), 17, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, + anon_sym_or, + anon_sym_and, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_try, anon_sym_requires, - [242586] = 14, + [247349] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(3907), 1, - anon_sym_COLON_COLON, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9615), 1, - sym_identifier, - ACTIONS(10610), 1, - anon_sym_virtual, - STATE(1893), 1, - sym_template_type, - STATE(6404), 1, - sym_access_specifier, - STATE(6599), 1, - sym__scope_resolution, - STATE(5923), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7314), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(8601), 2, - sym_decltype, - sym_dependent_type_identifier, - ACTIONS(10612), 3, - anon_sym_private, - anon_sym_public, - anon_sym_protected, - [242634] = 3, + ACTIONS(9951), 1, + anon_sym___attribute, + ACTIONS(10649), 1, + anon_sym_requires, + ACTIONS(10646), 2, + anon_sym_final, + anon_sym_override, + STATE(6017), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6190), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9949), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + [247383] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5136), 1, + ACTIONS(5144), 1, anon_sym___attribute, - ACTIONS(5138), 17, + ACTIONS(5146), 17, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -492921,23 +500455,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [242660] = 7, + [247409] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7400), 1, + ACTIONS(7361), 1, anon_sym_requires, - ACTIONS(9849), 1, + ACTIONS(9150), 1, anon_sym___attribute, - ACTIONS(7335), 2, + ACTIONS(7359), 2, anon_sym_final, anon_sym_override, - STATE(5925), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6048), 2, + STATE(6149), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9847), 10, + ACTIONS(9139), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -492948,115 +500482,342 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_try, - [242694] = 8, + [247443] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9770), 1, + ACTIONS(5184), 1, + anon_sym___attribute, + ACTIONS(5186), 17, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(10614), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, - STATE(6056), 1, - sym_parameter_list, - ACTIONS(6164), 2, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [247469] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3959), 3, anon_sym___attribute, + anon_sym_LBRACK, anon_sym___asm, - STATE(5960), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6166), 10, + ACTIONS(3961), 15, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - anon_sym_GT2, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [247495] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9359), 1, + anon_sym_requires, + ACTIONS(9150), 2, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9193), 2, + anon_sym_final, + anon_sym_override, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5927), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9139), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [247529] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(113), 1, + anon_sym___asm, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(9826), 1, anon_sym_try, - [242730] = 16, + ACTIONS(10063), 1, + anon_sym_COMMA, + ACTIONS(10071), 1, + anon_sym_LBRACK, + ACTIONS(10652), 1, + anon_sym_SEMI, + ACTIONS(10654), 1, + anon_sym_LBRACE, + STATE(2113), 1, + sym_compound_statement, + STATE(2115), 1, + sym_try_statement, + STATE(3108), 1, + sym_parameter_list, + STATE(6203), 1, + sym__function_declarator_seq, + STATE(7667), 1, + sym_gnu_asm_expression, + STATE(7671), 1, + aux_sym_declaration_repeat1, + ACTIONS(10075), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6081), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [247583] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7314), 1, + anon_sym_requires, + ACTIONS(7375), 1, + anon_sym_DASH_GT, + STATE(5526), 1, + sym_trailing_return_type, + ACTIONS(6037), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(9150), 2, + anon_sym___attribute, + anon_sym_LBRACK, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5927), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9139), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + [247621] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, ACTIONS(113), 1, anon_sym___asm, - ACTIONS(3615), 1, + ACTIONS(3623), 1, anon_sym_LBRACE, - ACTIONS(9995), 1, + ACTIONS(10063), 1, anon_sym_COMMA, - ACTIONS(9997), 1, + ACTIONS(10065), 1, anon_sym_LPAREN2, - ACTIONS(10001), 1, + ACTIONS(10071), 1, anon_sym_LBRACK, - ACTIONS(10003), 1, + ACTIONS(10073), 1, anon_sym_EQ, - ACTIONS(10110), 1, + ACTIONS(10119), 1, anon_sym_SEMI, - STATE(2962), 1, + STATE(2989), 1, sym_parameter_list, - STATE(5979), 1, + STATE(6203), 1, sym__function_declarator_seq, - STATE(7310), 1, + STATE(7409), 1, sym_gnu_asm_expression, - STATE(7311), 1, + STATE(7417), 1, aux_sym_declaration_repeat1, - ACTIONS(10005), 2, + ACTIONS(10075), 2, anon_sym_asm, anon_sym___asm__, - STATE(5949), 2, + STATE(6081), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7680), 2, + STATE(7980), 2, sym_argument_list, sym_initializer_list, - [242782] = 3, + [247673] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5192), 1, + ACTIONS(9947), 1, anon_sym___attribute, - ACTIONS(5194), 17, + ACTIONS(10659), 1, + anon_sym_requires, + ACTIONS(10656), 2, + anon_sym_final, + anon_sym_override, + STATE(6017), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6186), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9945), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, - anon_sym_or, - anon_sym_and, + anon_sym_GT2, + anon_sym_try, + [247707] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9739), 1, + anon_sym_requires, + ACTIONS(9700), 2, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9702), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5924), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9689), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_asm, + anon_sym___asm__, anon_sym_try, + [247741] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7395), 1, anon_sym_requires, - [242808] = 9, + ACTIONS(6037), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(9700), 2, + anon_sym_LBRACK, + anon_sym___asm, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5924), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9689), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [247775] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7313), 1, + ACTIONS(7314), 1, + anon_sym_requires, + ACTIONS(7375), 1, anon_sym_DASH_GT, - ACTIONS(9922), 1, + STATE(5529), 1, + sym_trailing_return_type, + ACTIONS(6037), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(9382), 2, + anon_sym___attribute, + anon_sym_LBRACK, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5934), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9371), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + [247813] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7314), 1, anon_sym_requires, - STATE(5452), 1, + ACTIONS(7375), 1, + anon_sym_DASH_GT, + STATE(5530), 1, sym_trailing_return_type, - ACTIONS(9845), 2, + ACTIONS(6037), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(9700), 2, anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(9919), 2, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5924), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9689), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + [247851] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7314), 1, + anon_sym_requires, + ACTIONS(7375), 1, + anon_sym_DASH_GT, + STATE(5531), 1, + sym_trailing_return_type, + ACTIONS(6037), 2, anon_sym_final, anon_sym_override, - STATE(5606), 2, + ACTIONS(9947), 2, + anon_sym___attribute, + anon_sym_LBRACK, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5846), 2, + STATE(5874), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9843), 7, + ACTIONS(9945), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -493064,37 +500825,379 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_EQ, anon_sym_GT2, - [242846] = 5, + [247889] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7386), 1, - anon_sym_LT, - STATE(5954), 1, - sym_template_argument_list, - ACTIONS(6513), 3, + ACTIONS(7848), 1, + anon_sym_LPAREN2, + ACTIONS(7862), 1, + anon_sym_LBRACK, + ACTIONS(8371), 1, + anon_sym_STAR, + ACTIONS(8373), 1, + anon_sym_AMP_AMP, + ACTIONS(8375), 1, + anon_sym_AMP, + STATE(3515), 1, + sym_parameter_list, + STATE(5953), 1, + sym__function_declarator_seq, + STATE(6701), 1, + sym__abstract_declarator, + ACTIONS(8360), 5, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(5952), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [247931] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7375), 1, + anon_sym_DASH_GT, + ACTIONS(9311), 1, + anon_sym_requires, + STATE(5528), 1, + sym_trailing_return_type, + ACTIONS(9150), 2, anon_sym___attribute, anon_sym_LBRACK, + ACTIONS(9193), 2, + anon_sym_final, + anon_sym_override, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5927), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9139), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + [247969] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6298), 2, + anon_sym_LBRACK, anon_sym___asm, - ACTIONS(6515), 13, + ACTIONS(10642), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(10662), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6300), 12, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [247999] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7375), 1, + anon_sym_DASH_GT, + ACTIONS(9407), 1, + anon_sym_requires, + STATE(5536), 1, + sym_trailing_return_type, + ACTIONS(9382), 2, + anon_sym___attribute, + anon_sym_LBRACK, + ACTIONS(9387), 2, + anon_sym_final, + anon_sym_override, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5934), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9371), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + [248037] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7375), 1, + anon_sym_DASH_GT, + ACTIONS(9724), 1, + anon_sym_requires, + STATE(5537), 1, + sym_trailing_return_type, + ACTIONS(9700), 2, + anon_sym___attribute, + anon_sym_LBRACK, + ACTIONS(9702), 2, + anon_sym_final, + anon_sym_override, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5924), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9689), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + [248075] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7375), 1, + anon_sym_DASH_GT, + ACTIONS(9960), 1, + anon_sym_requires, + STATE(5538), 1, + sym_trailing_return_type, + ACTIONS(9947), 2, + anon_sym___attribute, + anon_sym_LBRACK, + ACTIONS(9957), 2, + anon_sym_final, + anon_sym_override, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5874), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9945), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + [248113] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5188), 1, + anon_sym___attribute, + ACTIONS(5190), 17, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, - anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [248139] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(113), 1, + anon_sym___asm, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(9810), 1, + anon_sym_try, + ACTIONS(10063), 1, + anon_sym_COMMA, + ACTIONS(10071), 1, + anon_sym_LBRACK, + ACTIONS(10664), 1, + anon_sym_SEMI, + ACTIONS(10666), 1, + anon_sym_LBRACE, + STATE(1988), 1, + sym_compound_statement, + STATE(1998), 1, + sym_try_statement, + STATE(3108), 1, + sym_parameter_list, + STATE(6203), 1, + sym__function_declarator_seq, + STATE(7582), 1, + sym_gnu_asm_expression, + STATE(7583), 1, + aux_sym_declaration_repeat1, + ACTIONS(10075), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6081), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [248193] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6298), 1, + anon_sym___attribute, + ACTIONS(10668), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(10670), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6300), 13, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [248223] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(113), 1, + anon_sym___asm, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(9837), 1, + anon_sym_try, + ACTIONS(10063), 1, + anon_sym_COMMA, + ACTIONS(10071), 1, + anon_sym_LBRACK, + ACTIONS(10672), 1, + anon_sym_SEMI, + ACTIONS(10674), 1, + anon_sym_LBRACE, + STATE(1803), 1, + sym_compound_statement, + STATE(1804), 1, + sym_try_statement, + STATE(3108), 1, + sym_parameter_list, + STATE(6203), 1, + sym__function_declarator_seq, + STATE(7427), 1, + sym_gnu_asm_expression, + STATE(7455), 1, + aux_sym_declaration_repeat1, + ACTIONS(10075), 2, anon_sym_asm, anon_sym___asm__, + STATE(6081), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [248277] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5148), 1, + anon_sym___attribute, + ACTIONS(5150), 17, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [248303] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5152), 1, + anon_sym___attribute, + ACTIONS(5154), 17, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [248329] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7361), 1, + anon_sym_requires, + ACTIONS(9951), 1, + anon_sym___attribute, + ACTIONS(7359), 2, + anon_sym_final, + anon_sym_override, + STATE(6017), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6190), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9949), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_GT2, anon_sym_try, - [242876] = 3, + [248363] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5162), 1, + ACTIONS(5140), 1, anon_sym___attribute, - ACTIONS(5164), 17, + ACTIONS(5142), 17, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -493112,108 +501215,182 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [242902] = 7, + [248389] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9150), 1, + anon_sym___attribute, + ACTIONS(9330), 1, + anon_sym_requires, + ACTIONS(9327), 2, + anon_sym_final, + anon_sym_override, + STATE(6017), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6149), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9139), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + [248423] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(113), 1, + anon_sym___asm, + ACTIONS(297), 1, + anon_sym_LBRACE, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(10063), 1, + anon_sym_COMMA, + ACTIONS(10071), 1, + anon_sym_LBRACK, + ACTIONS(10081), 1, + anon_sym_try, + ACTIONS(10676), 1, + anon_sym_SEMI, + STATE(330), 1, + sym_compound_statement, + STATE(331), 1, + sym_try_statement, + STATE(3108), 1, + sym_parameter_list, + STATE(6203), 1, + sym__function_declarator_seq, + STATE(7654), 1, + sym_gnu_asm_expression, + STATE(7655), 1, + aux_sym_declaration_repeat1, + ACTIONS(10075), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6081), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [248477] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9849), 1, - anon_sym___attribute, - ACTIONS(10619), 1, + ACTIONS(7395), 1, anon_sym_requires, - ACTIONS(10616), 2, + ACTIONS(6037), 2, anon_sym_final, anon_sym_override, - STATE(5925), 2, + ACTIONS(9150), 2, + anon_sym_LBRACK, + anon_sym___asm, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6048), 2, + STATE(5927), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9847), 10, + ACTIONS(9139), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_GT2, + anon_sym_asm, + anon_sym___asm__, anon_sym_try, - [242936] = 3, + [248511] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1940), 1, + ACTIONS(7361), 1, + anon_sym_requires, + ACTIONS(9947), 1, anon_sym___attribute, - ACTIONS(1938), 17, + ACTIONS(7359), 2, + anon_sym_final, + anon_sym_override, + STATE(6017), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6186), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9945), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_final, - anon_sym_override, anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [242962] = 3, + [248545] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6698), 3, + ACTIONS(7361), 1, + anon_sym_requires, + ACTIONS(9700), 1, anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(6700), 15, + ACTIONS(7359), 2, + anon_sym_final, + anon_sym_override, + STATE(6017), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6133), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9689), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_LT, anon_sym_SEMI, anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [242988] = 3, + [248579] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5148), 1, + ACTIONS(10105), 1, anon_sym___attribute, - ACTIONS(5150), 17, + ACTIONS(7359), 2, + anon_sym_final, + anon_sym_override, + STATE(6040), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + ACTIONS(10103), 13, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_final, - anon_sym_override, anon_sym_GT2, anon_sym_try, anon_sym_requires, - [243014] = 3, + [248609] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5184), 1, + ACTIONS(5192), 1, anon_sym___attribute, - ACTIONS(5186), 17, + ACTIONS(5194), 17, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -493231,235 +501408,165 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [243040] = 3, + [248635] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(3947), 3, - anon_sym___attribute, - anon_sym_LBRACK, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(57), 1, + anon_sym_LBRACE, + ACTIONS(113), 1, anon_sym___asm, - ACTIONS(3949), 15, - anon_sym_COMMA, + ACTIONS(9798), 1, anon_sym_LPAREN2, + ACTIONS(10063), 1, + anon_sym_COMMA, + ACTIONS(10071), 1, + anon_sym_LBRACK, + ACTIONS(10182), 1, + anon_sym_try, + ACTIONS(10678), 1, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + STATE(617), 1, + sym_compound_statement, + STATE(620), 1, + sym_try_statement, + STATE(3108), 1, + sym_parameter_list, + STATE(6203), 1, + sym__function_declarator_seq, + STATE(7674), 1, + sym_gnu_asm_expression, + STATE(7678), 1, + aux_sym_declaration_repeat1, + ACTIONS(10075), 2, anon_sym_asm, anon_sym___asm__, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [243066] = 3, + STATE(6081), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [248689] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(6248), 1, anon_sym___attribute, - ACTIONS(1934), 17, + ACTIONS(10670), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6250), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, - anon_sym_and, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_try, anon_sym_requires, - [243092] = 16, + [248717] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(113), 1, - anon_sym___asm, - ACTIONS(3615), 1, - anon_sym_LBRACE, - ACTIONS(9995), 1, - anon_sym_COMMA, - ACTIONS(9997), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(10001), 1, + ACTIONS(10637), 1, anon_sym_LBRACK, - ACTIONS(10003), 1, - anon_sym_EQ, - ACTIONS(10019), 1, - anon_sym_SEMI, - STATE(2962), 1, + STATE(6113), 1, sym_parameter_list, - STATE(5979), 1, - sym__function_declarator_seq, - STATE(7260), 1, - sym_gnu_asm_expression, - STATE(7262), 1, - aux_sym_declaration_repeat1, - ACTIONS(10005), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(5949), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7680), 2, - sym_argument_list, - sym_initializer_list, - [243144] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6477), 3, + ACTIONS(6090), 2, anon_sym___attribute, - anon_sym_LBRACK, anon_sym___asm, - ACTIONS(6479), 15, + STATE(6057), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6092), 10, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LT, anon_sym_SEMI, anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_RBRACK, anon_sym_EQ, anon_sym_asm, anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [243170] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9676), 1, - anon_sym___attribute, - ACTIONS(9708), 1, - anon_sym_requires, - ACTIONS(9705), 2, - anon_sym_final, - anon_sym_override, - STATE(5925), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6041), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9665), 10, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_try, - [243204] = 16, + [248753] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, ACTIONS(113), 1, anon_sym___asm, - ACTIONS(3615), 1, + ACTIONS(866), 1, anon_sym_LBRACE, - ACTIONS(9995), 1, - anon_sym_COMMA, - ACTIONS(9997), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(10001), 1, + ACTIONS(10063), 1, + anon_sym_COMMA, + ACTIONS(10071), 1, anon_sym_LBRACK, - ACTIONS(10003), 1, - anon_sym_EQ, - ACTIONS(10544), 1, + ACTIONS(10123), 1, + anon_sym_try, + ACTIONS(10680), 1, anon_sym_SEMI, - STATE(2962), 1, + STATE(704), 1, + sym_compound_statement, + STATE(706), 1, + sym_try_statement, + STATE(3108), 1, sym_parameter_list, - STATE(5979), 1, + STATE(6203), 1, sym__function_declarator_seq, - STATE(7162), 1, + STATE(7404), 1, sym_gnu_asm_expression, - STATE(7163), 1, + STATE(7407), 1, aux_sym_declaration_repeat1, - ACTIONS(10005), 2, + ACTIONS(10075), 2, anon_sym_asm, anon_sym___asm__, - STATE(5949), 2, + STATE(6081), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7680), 2, - sym_argument_list, - sym_initializer_list, - [243256] = 7, + [248807] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7400), 1, + ACTIONS(7395), 1, anon_sym_requires, - ACTIONS(9193), 1, - anon_sym___attribute, - ACTIONS(7335), 2, + ACTIONS(6037), 2, anon_sym_final, anon_sym_override, - STATE(5925), 2, + ACTIONS(9947), 2, + anon_sym_LBRACK, + anon_sym___asm, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6012), 2, + STATE(5874), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9182), 10, + ACTIONS(9945), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_try, - [243290] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - ACTIONS(10614), 1, - anon_sym_LBRACK, - STATE(6056), 1, - sym_parameter_list, - ACTIONS(6066), 2, - anon_sym___attribute, - anon_sym___asm, - STATE(5960), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6068), 10, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym___attribute__, anon_sym_LBRACE, - anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - anon_sym_GT2, anon_sym_try, - [243326] = 3, + [248841] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5132), 1, + ACTIONS(5196), 1, anon_sym___attribute, - ACTIONS(5134), 17, + ACTIONS(5198), 17, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -493477,70 +501584,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [243352] = 7, + [248867] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7400), 1, - anon_sym_requires, - ACTIONS(9355), 1, + ACTIONS(5196), 1, anon_sym___attribute, - ACTIONS(7335), 2, - anon_sym_final, - anon_sym_override, - STATE(5925), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6032), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9344), 10, + ACTIONS(5198), 17, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, - anon_sym_GT2, - anon_sym_try, - [243386] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7842), 1, - anon_sym_LPAREN2, - ACTIONS(7856), 1, - anon_sym_LBRACK, - ACTIONS(8367), 1, - anon_sym_STAR, - ACTIONS(8369), 1, - anon_sym_AMP_AMP, - ACTIONS(8371), 1, - anon_sym_AMP, - STATE(3459), 1, - sym_parameter_list, - STATE(5792), 1, - sym__function_declarator_seq, - STATE(6575), 1, - sym__abstract_declarator, - ACTIONS(8306), 5, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, + anon_sym_or, + anon_sym_and, anon_sym_final, anon_sym_override, + anon_sym_GT2, + anon_sym_try, anon_sym_requires, - STATE(5804), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [243428] = 3, + [248893] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5152), 1, + ACTIONS(5196), 1, anon_sym___attribute, - ACTIONS(5154), 17, + ACTIONS(5198), 17, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -493558,24 +501630,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [243454] = 8, + [248919] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(3915), 1, + anon_sym_COLON_COLON, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9647), 1, + sym_identifier, + ACTIONS(10682), 1, + anon_sym_virtual, + STATE(1922), 1, + sym_template_type, + STATE(6581), 1, + sym_access_specifier, + STATE(6697), 1, + sym__scope_resolution, + STATE(6041), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7286), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8569), 2, + sym_decltype, + sym_dependent_type_identifier, + ACTIONS(10684), 3, + anon_sym_private, + anon_sym_public, + anon_sym_protected, + [248967] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(10614), 1, + ACTIONS(10637), 1, anon_sym_LBRACK, - STATE(6056), 1, + STATE(6113), 1, sym_parameter_list, - ACTIONS(6100), 2, + ACTIONS(6145), 2, anon_sym___attribute, anon_sym___asm, - STATE(5960), 2, + STATE(6057), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(6102), 10, + ACTIONS(6147), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -493586,228 +501692,193 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [243490] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5140), 1, - anon_sym___attribute, - ACTIONS(5142), 17, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [243516] = 16, + [249003] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, ACTIONS(113), 1, anon_sym___asm, - ACTIONS(3615), 1, + ACTIONS(3623), 1, anon_sym_LBRACE, - ACTIONS(9995), 1, + ACTIONS(10063), 1, anon_sym_COMMA, - ACTIONS(9997), 1, + ACTIONS(10065), 1, anon_sym_LPAREN2, - ACTIONS(9999), 1, - anon_sym_SEMI, - ACTIONS(10001), 1, + ACTIONS(10071), 1, anon_sym_LBRACK, - ACTIONS(10003), 1, + ACTIONS(10073), 1, anon_sym_EQ, - STATE(2962), 1, + ACTIONS(10134), 1, + anon_sym_SEMI, + STATE(2989), 1, sym_parameter_list, - STATE(5979), 1, + STATE(6203), 1, sym__function_declarator_seq, - STATE(7380), 1, + STATE(7433), 1, sym_gnu_asm_expression, - STATE(7381), 1, + STATE(7434), 1, aux_sym_declaration_repeat1, - ACTIONS(10005), 2, + ACTIONS(10075), 2, anon_sym_asm, anon_sym___asm__, - STATE(5949), 2, + STATE(6081), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7680), 2, + STATE(7980), 2, sym_argument_list, sym_initializer_list, - [243568] = 9, + [249055] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(7301), 1, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(3915), 1, + anon_sym_COLON_COLON, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9647), 1, + sym_identifier, + ACTIONS(10686), 1, + anon_sym_virtual, + STATE(1922), 1, + sym_template_type, + STATE(6627), 1, + sym_access_specifier, + STATE(6697), 1, + sym__scope_resolution, + STATE(6037), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7233), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8569), 2, + sym_decltype, + sym_dependent_type_identifier, + ACTIONS(10684), 3, + anon_sym_private, + anon_sym_public, + anon_sym_protected, + [249103] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9382), 1, + anon_sym___attribute, + ACTIONS(9550), 1, anon_sym_requires, - ACTIONS(7313), 1, - anon_sym_DASH_GT, - STATE(5453), 1, - sym_trailing_return_type, - ACTIONS(6020), 2, + ACTIONS(9488), 2, anon_sym_final, anon_sym_override, - ACTIONS(9193), 2, - anon_sym___attribute, - anon_sym_LBRACK, - STATE(5606), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5877), 2, + STATE(6132), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9182), 7, + ACTIONS(9371), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_GT2, - [243606] = 16, + anon_sym_try, + [249137] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, ACTIONS(113), 1, anon_sym___asm, - ACTIONS(3615), 1, + ACTIONS(3623), 1, anon_sym_LBRACE, - ACTIONS(9995), 1, + ACTIONS(10063), 1, anon_sym_COMMA, - ACTIONS(9997), 1, + ACTIONS(10065), 1, anon_sym_LPAREN2, - ACTIONS(10001), 1, + ACTIONS(10071), 1, anon_sym_LBRACK, - ACTIONS(10003), 1, + ACTIONS(10073), 1, anon_sym_EQ, - ACTIONS(10144), 1, + ACTIONS(10550), 1, anon_sym_SEMI, - STATE(2962), 1, + STATE(2989), 1, sym_parameter_list, - STATE(5979), 1, + STATE(6203), 1, sym__function_declarator_seq, - STATE(7295), 1, + STATE(7302), 1, sym_gnu_asm_expression, - STATE(7522), 1, + STATE(7303), 1, aux_sym_declaration_repeat1, - ACTIONS(10005), 2, + ACTIONS(10075), 2, anon_sym_asm, anon_sym___asm__, - STATE(5949), 2, + STATE(6081), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7680), 2, + STATE(7980), 2, sym_argument_list, sym_initializer_list, - [243658] = 14, + [249189] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(3907), 1, - anon_sym_COLON_COLON, - ACTIONS(5472), 1, + ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9615), 1, - sym_identifier, - ACTIONS(10622), 1, - anon_sym_virtual, - STATE(1893), 1, - sym_template_type, - STATE(6488), 1, - sym_access_specifier, - STATE(6599), 1, - sym__scope_resolution, - STATE(4776), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6990), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(8601), 2, - sym_decltype, - sym_dependent_type_identifier, - ACTIONS(10612), 3, - anon_sym_private, - anon_sym_public, - anon_sym_protected, - [243706] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5144), 1, - anon_sym___attribute, - ACTIONS(5146), 17, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, + ACTIONS(113), 1, + anon_sym___asm, + ACTIONS(3623), 1, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [243732] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5188), 1, - anon_sym___attribute, - ACTIONS(5190), 17, + ACTIONS(10063), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(10065), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, + ACTIONS(10071), 1, anon_sym_LBRACK, + ACTIONS(10073), 1, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [243758] = 8, + ACTIONS(10077), 1, + anon_sym_SEMI, + STATE(2989), 1, + sym_parameter_list, + STATE(6203), 1, + sym__function_declarator_seq, + STATE(7536), 1, + sym_gnu_asm_expression, + STATE(7537), 1, + aux_sym_declaration_repeat1, + ACTIONS(10075), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6081), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7980), 2, + sym_argument_list, + sym_initializer_list, + [249241] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(10614), 1, + ACTIONS(10637), 1, anon_sym_LBRACK, - STATE(6056), 1, + STATE(6113), 1, sym_parameter_list, - ACTIONS(6133), 2, + ACTIONS(6112), 2, anon_sym___attribute, anon_sym___asm, - STATE(5960), 2, + STATE(6057), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(6135), 10, + ACTIONS(6114), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -493818,216 +501889,242 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [243794] = 9, + [249277] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7301), 1, - anon_sym_requires, - ACTIONS(7313), 1, - anon_sym_DASH_GT, - STATE(5419), 1, - sym_trailing_return_type, - ACTIONS(6020), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(9676), 2, + ACTIONS(7483), 1, + anon_sym_LT, + STATE(6052), 1, + sym_template_argument_list, + ACTIONS(6426), 3, anon_sym___attribute, anon_sym_LBRACK, - STATE(5606), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5876), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9665), 7, + anon_sym___asm, + ACTIONS(6428), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, anon_sym_GT2, - [243832] = 9, + anon_sym_try, + [249307] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7301), 1, - anon_sym_requires, - ACTIONS(7313), 1, - anon_sym_DASH_GT, - STATE(5420), 1, - sym_trailing_return_type, - ACTIONS(6020), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(9845), 2, + ACTIONS(5170), 1, anon_sym___attribute, - anon_sym_LBRACK, - STATE(5606), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5846), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9843), 7, + ACTIONS(5172), 17, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [243870] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(3907), 1, - anon_sym_COLON_COLON, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9615), 1, - sym_identifier, - ACTIONS(10624), 1, - anon_sym_virtual, - STATE(1893), 1, - sym_template_type, - STATE(6520), 1, - sym_access_specifier, - STATE(6599), 1, - sym__scope_resolution, - STATE(4776), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7548), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(8601), 2, - sym_decltype, - sym_dependent_type_identifier, - ACTIONS(10612), 3, - anon_sym_private, - anon_sym_public, - anon_sym_protected, - [243918] = 14, + anon_sym_try, + anon_sym_requires, + [249333] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(3907), 1, + ACTIONS(3915), 1, anon_sym_COLON_COLON, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9615), 1, + ACTIONS(9647), 1, sym_identifier, - ACTIONS(10626), 1, + ACTIONS(10688), 1, anon_sym_virtual, - STATE(1893), 1, + STATE(1922), 1, sym_template_type, - STATE(6502), 1, + STATE(6525), 1, sym_access_specifier, - STATE(6599), 1, + STATE(6697), 1, sym__scope_resolution, - STATE(5917), 2, + STATE(4831), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7009), 2, + STATE(7148), 2, sym__class_name, sym_qualified_type_identifier, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - ACTIONS(10612), 3, + ACTIONS(10684), 3, anon_sym_private, anon_sym_public, anon_sym_protected, - [243966] = 5, + [249381] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10130), 1, + ACTIONS(5156), 1, anon_sym___attribute, - ACTIONS(7335), 2, - anon_sym_final, - anon_sym_override, - STATE(5938), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - ACTIONS(10128), 13, - anon_sym_DOT_DOT_DOT, + ACTIONS(5158), 17, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, - anon_sym_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_final, + anon_sym_override, anon_sym_GT2, anon_sym_try, anon_sym_requires, - [243996] = 4, + [249407] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6178), 1, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(113), 1, + anon_sym___asm, + ACTIONS(3623), 1, + anon_sym_LBRACE, + ACTIONS(10063), 1, + anon_sym_COMMA, + ACTIONS(10065), 1, + anon_sym_LPAREN2, + ACTIONS(10071), 1, + anon_sym_LBRACK, + ACTIONS(10550), 1, + anon_sym_SEMI, + ACTIONS(10690), 1, + anon_sym_EQ, + STATE(2989), 1, + sym_parameter_list, + STATE(6203), 1, + sym__function_declarator_seq, + STATE(7302), 1, + sym_gnu_asm_expression, + STATE(7303), 1, + aux_sym_declaration_repeat1, + STATE(7411), 1, + sym_initializer_list, + STATE(7980), 1, + sym_argument_list, + ACTIONS(10075), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6081), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [249461] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10129), 1, anon_sym___attribute, - ACTIONS(10608), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(6180), 15, + ACTIONS(10692), 2, + anon_sym_final, + anon_sym_override, + STATE(6040), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + ACTIONS(10127), 13, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, anon_sym_SEMI, anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, - anon_sym_or, - anon_sym_final, - anon_sym_override, anon_sym_GT2, anon_sym_try, anon_sym_requires, - [244024] = 7, + [249491] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(3915), 1, + anon_sym_COLON_COLON, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9647), 1, + sym_identifier, + ACTIONS(10695), 1, + anon_sym_virtual, + STATE(1922), 1, + sym_template_type, + STATE(6577), 1, + sym_access_specifier, + STATE(6697), 1, + sym__scope_resolution, + STATE(4831), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7267), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8569), 2, + sym_decltype, + sym_dependent_type_identifier, + ACTIONS(10684), 3, + anon_sym_private, + anon_sym_public, + anon_sym_protected, + [249539] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7400), 1, + ACTIONS(7395), 1, anon_sym_requires, - ACTIONS(9676), 1, - anon_sym___attribute, - ACTIONS(7335), 2, + ACTIONS(6037), 2, anon_sym_final, anon_sym_override, - STATE(5925), 2, + ACTIONS(9382), 2, + anon_sym_LBRACK, + anon_sym___asm, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6041), 2, + STATE(5934), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9665), 10, + ACTIONS(9371), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_GT2, + anon_sym_asm, + anon_sym___asm__, anon_sym_try, - [244058] = 3, + [249573] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3951), 3, + ACTIONS(3943), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(3953), 15, + ACTIONS(3945), 15, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -494043,62 +502140,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [244084] = 7, + [249599] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9193), 1, - anon_sym___attribute, - ACTIONS(9300), 1, + ACTIONS(9479), 1, anon_sym_requires, - ACTIONS(9297), 2, + ACTIONS(9382), 2, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9387), 2, anon_sym_final, anon_sym_override, - STATE(5925), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6012), 2, + STATE(5934), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9182), 10, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_try, - [244118] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5136), 1, - anon_sym___attribute, - ACTIONS(5138), 17, + ACTIONS(9371), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, + anon_sym_asm, + anon_sym___asm__, anon_sym_try, - anon_sym_requires, - [244144] = 3, + [249633] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5170), 1, + ACTIONS(1940), 1, anon_sym___attribute, - ACTIONS(5172), 17, + ACTIONS(1938), 17, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -494116,273 +502190,212 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [244170] = 7, + [249659] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9355), 1, - anon_sym___attribute, - ACTIONS(9548), 1, + ACTIONS(10505), 1, anon_sym_requires, - ACTIONS(9495), 2, + ACTIONS(9947), 2, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9957), 2, anon_sym_final, anon_sym_override, - STATE(5925), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6032), 2, + STATE(5874), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9344), 10, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_try, - [244204] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5180), 1, - anon_sym___attribute, - ACTIONS(5182), 17, + ACTIONS(9945), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, + anon_sym_asm, + anon_sym___asm__, anon_sym_try, - anon_sym_requires, - [244230] = 8, + [249693] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - ACTIONS(10614), 1, + ACTIONS(6098), 1, anon_sym_LBRACK, - STATE(6056), 1, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + STATE(1942), 1, sym_parameter_list, - ACTIONS(6038), 2, + ACTIONS(6145), 2, anon_sym___attribute, anon_sym___asm, - STATE(5960), 2, + STATE(6165), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(6040), 10, + ACTIONS(6147), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACE, - anon_sym_EQ, + anon_sym_RBRACK, anon_sym_asm, anon_sym___asm__, - anon_sym_GT2, anon_sym_try, - [244266] = 7, + [249728] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9845), 1, + ACTIONS(7445), 1, + anon_sym_DASH_GT, + ACTIONS(9700), 1, anon_sym___attribute, - ACTIONS(10631), 1, + ACTIONS(9742), 1, anon_sym_requires, - ACTIONS(10628), 2, + STATE(5992), 1, + sym_trailing_return_type, + ACTIONS(9727), 2, anon_sym_final, anon_sym_override, - STATE(5925), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6045), 2, + STATE(6133), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9843), 10, + ACTIONS(9689), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, anon_sym___attribute__, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, anon_sym_GT2, - anon_sym_try, - [244300] = 9, + [249765] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7313), 1, + ACTIONS(7445), 1, anon_sym_DASH_GT, - ACTIONS(9281), 1, + ACTIONS(9947), 1, + anon_sym___attribute, + ACTIONS(10659), 1, anon_sym_requires, - STATE(5447), 1, + STATE(5983), 1, sym_trailing_return_type, - ACTIONS(9193), 2, - anon_sym___attribute, - anon_sym_LBRACK, - ACTIONS(9195), 2, + ACTIONS(10656), 2, anon_sym_final, anon_sym_override, - STATE(5606), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5877), 2, + STATE(6186), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9182), 7, + ACTIONS(9945), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_GT2, - [244338] = 17, + [249802] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10697), 1, + sym_identifier, + ACTIONS(5395), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + STATE(6069), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(10699), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(10701), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [249833] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(113), 1, - anon_sym___asm, - ACTIONS(3615), 1, - anon_sym_LBRACE, - ACTIONS(9995), 1, - anon_sym_COMMA, - ACTIONS(9997), 1, - anon_sym_LPAREN2, - ACTIONS(10001), 1, + ACTIONS(6098), 1, anon_sym_LBRACK, - ACTIONS(10544), 1, - anon_sym_SEMI, - ACTIONS(10634), 1, - anon_sym_EQ, - STATE(2962), 1, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + STATE(1942), 1, sym_parameter_list, - STATE(5979), 1, - sym__function_declarator_seq, - STATE(7162), 1, - sym_gnu_asm_expression, - STATE(7163), 1, - aux_sym_declaration_repeat1, - STATE(7373), 1, - sym_initializer_list, - STATE(7680), 1, - sym_argument_list, - ACTIONS(10005), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(5949), 2, + ACTIONS(6090), 2, + anon_sym___attribute, + anon_sym___asm, + STATE(6165), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [244392] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10053), 1, - anon_sym___attribute, - ACTIONS(10636), 2, - anon_sym_final, - anon_sym_override, - STATE(5938), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - ACTIONS(10051), 13, - anon_sym_DOT_DOT_DOT, + ACTIONS(6092), 9, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, - anon_sym_COLON, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_GT2, + anon_sym_RBRACK, + anon_sym_asm, + anon_sym___asm__, anon_sym_try, - anon_sym_requires, - [244422] = 3, + [249868] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5166), 1, + ACTIONS(4991), 1, + anon_sym_COLON_COLON, + ACTIONS(4993), 4, anon_sym___attribute, - ACTIONS(5168), 17, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [244448] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7400), 1, - anon_sym_requires, - ACTIONS(9845), 1, - anon_sym___attribute, - ACTIONS(7335), 2, - anon_sym_final, - anon_sym_override, - STATE(5925), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6045), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9843), 10, + anon_sym___asm, + ACTIONS(4986), 12, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [244482] = 9, + [249895] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(7079), 1, anon_sym_requires, - ACTIONS(7087), 1, + ACTIONS(7287), 1, anon_sym_DASH_GT, - ACTIONS(9845), 1, + ACTIONS(9700), 1, anon_sym_LBRACK, - STATE(5621), 1, + STATE(5666), 1, sym_trailing_return_type, - ACTIONS(6020), 2, + ACTIONS(6037), 2, anon_sym_final, anon_sym_override, - STATE(5606), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5846), 2, + STATE(5924), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9843), 7, + ACTIONS(9689), 7, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_COLON, @@ -494390,172 +502403,164 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [244519] = 9, + [249932] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7447), 1, - anon_sym_DASH_GT, - ACTIONS(9193), 1, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6098), 1, + anon_sym_LBRACK, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + STATE(1942), 1, + sym_parameter_list, + ACTIONS(6198), 2, anon_sym___attribute, - ACTIONS(9300), 1, - anon_sym_requires, - STATE(5932), 1, - sym_trailing_return_type, - ACTIONS(9297), 2, - anon_sym_final, - anon_sym_override, - STATE(5925), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6012), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9182), 7, + anon_sym___asm, + STATE(6165), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6200), 9, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - [244556] = 9, + anon_sym_LBRACE, + anon_sym_RBRACK, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [249967] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7447), 1, - anon_sym_DASH_GT, - ACTIONS(9355), 1, + ACTIONS(10705), 2, + anon_sym___attribute__, anon_sym___attribute, - ACTIONS(9548), 1, - anon_sym_requires, - STATE(5904), 1, - sym_trailing_return_type, - ACTIONS(9495), 2, + ACTIONS(10710), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(10708), 3, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + STATE(6055), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + ACTIONS(10703), 7, + anon_sym_COLON, + anon_sym___declspec, + sym_identifier, + anon_sym_decltype, anon_sym_final, anon_sym_override, - STATE(5925), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6032), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9344), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - [244593] = 9, + anon_sym_template, + [249998] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7447), 1, - anon_sym_DASH_GT, - ACTIONS(9676), 1, - anon_sym___attribute, - ACTIONS(9708), 1, + ACTIONS(7079), 1, anon_sym_requires, - STATE(5935), 1, + ACTIONS(7287), 1, + anon_sym_DASH_GT, + ACTIONS(9150), 1, + anon_sym_LBRACK, + STATE(5671), 1, sym_trailing_return_type, - ACTIONS(9705), 2, + ACTIONS(6037), 2, anon_sym_final, anon_sym_override, - STATE(5925), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6041), 2, + STATE(5927), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9665), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(9139), 7, anon_sym_LPAREN2, - anon_sym___attribute__, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_EQ, - anon_sym_GT2, - [244630] = 9, + anon_sym_try, + [250035] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7447), 1, - anon_sym_DASH_GT, - ACTIONS(9845), 1, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + STATE(5943), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6244), 3, anon_sym___attribute, - ACTIONS(10631), 1, - anon_sym_requires, - STATE(5895), 1, - sym_trailing_return_type, - ACTIONS(10628), 2, - anon_sym_final, - anon_sym_override, - STATE(5925), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6045), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9843), 7, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(6246), 11, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym___attribute__, - anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, anon_sym_GT2, - [244667] = 11, + anon_sym_try, + [250064] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5012), 1, + ACTIONS(5020), 1, anon_sym_LPAREN2, - ACTIONS(8131), 1, - anon_sym_LBRACK, - ACTIONS(8373), 1, + ACTIONS(5022), 1, anon_sym_STAR, - ACTIONS(8375), 1, + ACTIONS(5024), 1, anon_sym_AMP_AMP, - ACTIONS(8377), 1, + ACTIONS(5026), 1, anon_sym_AMP, - STATE(3370), 1, + ACTIONS(8147), 1, + anon_sym_LBRACK, + STATE(3113), 1, sym_parameter_list, - STATE(6087), 1, + STATE(6109), 1, sym__function_declarator_seq, - STATE(6640), 1, + STATE(6796), 1, sym__abstract_declarator, - ACTIONS(8306), 4, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - STATE(6092), 5, + ACTIONS(8360), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6099), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [244708] = 12, + [250105] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1852), 1, + ACTIONS(1850), 1, anon_sym_operator, - ACTIONS(8427), 1, - sym_identifier, - ACTIONS(8429), 1, + ACTIONS(8421), 1, anon_sym_LPAREN2, - ACTIONS(8431), 1, + ACTIONS(8473), 1, + sym_identifier, + ACTIONS(8475), 1, anon_sym_STAR, - ACTIONS(8433), 1, + ACTIONS(8477), 1, anon_sym_AMP_AMP, - ACTIONS(8435), 1, + ACTIONS(8479), 1, anon_sym_AMP, - STATE(5991), 1, + STATE(6755), 1, sym__field_declarator, - STATE(6299), 1, + STATE(6943), 1, sym_operator_name, - STATE(8049), 1, + STATE(8112), 1, sym_ms_based_modifier, - STATE(6399), 7, + STATE(6476), 7, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, @@ -494563,30 +502568,30 @@ static const uint16_t ts_small_parse_table[] = { sym_array_field_declarator, sym_reference_field_declarator, sym_template_method, - [244751] = 12, + [250148] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1852), 1, + ACTIONS(1850), 1, anon_sym_operator, - ACTIONS(8427), 1, + ACTIONS(8419), 1, sym_identifier, - ACTIONS(8429), 1, + ACTIONS(8421), 1, anon_sym_LPAREN2, - ACTIONS(8431), 1, + ACTIONS(8423), 1, anon_sym_STAR, - ACTIONS(8433), 1, + ACTIONS(8425), 1, anon_sym_AMP_AMP, - ACTIONS(8435), 1, + ACTIONS(8427), 1, anon_sym_AMP, - STATE(6107), 1, + STATE(6144), 1, sym__field_declarator, - STATE(6299), 1, + STATE(6445), 1, sym_operator_name, - STATE(8049), 1, + STATE(8851), 1, sym_ms_based_modifier, - STATE(6399), 7, + STATE(6476), 7, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, @@ -494594,177 +502599,82 @@ static const uint16_t ts_small_parse_table[] = { sym_array_field_declarator, sym_reference_field_declarator, sym_template_method, - [244794] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - STATE(5795), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(10641), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(10639), 11, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [244823] = 9, + [250191] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7087), 1, + ACTIONS(7287), 1, anon_sym_DASH_GT, - ACTIONS(9845), 1, + ACTIONS(9382), 1, anon_sym_LBRACK, - ACTIONS(10094), 1, + ACTIONS(9390), 1, anon_sym_requires, - STATE(5555), 1, + STATE(5703), 1, sym_trailing_return_type, - ACTIONS(9919), 2, + ACTIONS(9387), 2, anon_sym_final, anon_sym_override, - STATE(5606), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5846), 2, + STATE(5934), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9843), 7, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [244860] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5999), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(5997), 14, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(9371), 7, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_RBRACK, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, anon_sym_try, - [244885] = 6, + [250228] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10645), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(10650), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(10648), 3, - anon_sym_COLON_COLON, + ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - STATE(5952), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - ACTIONS(10643), 7, - anon_sym_COLON, - anon_sym___declspec, - sym_identifier, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_template, - [244916] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7087), 1, - anon_sym_DASH_GT, - ACTIONS(9355), 1, + ACTIONS(6098), 1, anon_sym_LBRACK, - ACTIONS(9360), 1, - anon_sym_requires, - STATE(5544), 1, - sym_trailing_return_type, - ACTIONS(9357), 2, - anon_sym_final, - anon_sym_override, - STATE(5606), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5839), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9344), 7, + ACTIONS(9798), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [244953] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5003), 1, - anon_sym_COLON_COLON, - ACTIONS(5005), 4, + STATE(1942), 1, + sym_parameter_list, + ACTIONS(6112), 2, anon_sym___attribute, - anon_sym_COLON, - anon_sym_LBRACK, anon_sym___asm, - ACTIONS(4998), 12, + STATE(6165), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6114), 9, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, + anon_sym_RBRACK, anon_sym_asm, anon_sym___asm__, - anon_sym_GT2, anon_sym_try, - [244980] = 9, + [250263] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7087), 1, + ACTIONS(7287), 1, anon_sym_DASH_GT, - ACTIONS(9193), 1, + ACTIONS(9700), 1, anon_sym_LBRACK, - ACTIONS(9198), 1, + ACTIONS(9705), 1, anon_sym_requires, - STATE(5514), 1, + STATE(5708), 1, sym_trailing_return_type, - ACTIONS(9195), 2, + ACTIONS(9702), 2, anon_sym_final, anon_sym_override, - STATE(5606), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5877), 2, + STATE(5924), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9182), 7, + ACTIONS(9689), 7, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_COLON, @@ -494772,27 +502682,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [245017] = 9, + [250300] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(7400), 1, - anon_sym_requires, - ACTIONS(7447), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(8419), 1, + sym_identifier, + ACTIONS(8421), 1, + anon_sym_LPAREN2, + ACTIONS(8423), 1, + anon_sym_STAR, + ACTIONS(8425), 1, + anon_sym_AMP_AMP, + ACTIONS(8427), 1, + anon_sym_AMP, + STATE(6249), 1, + sym__field_declarator, + STATE(6445), 1, + sym_operator_name, + STATE(8851), 1, + sym_ms_based_modifier, + STATE(6476), 7, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + sym_reference_field_declarator, + sym_template_method, + [250343] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(4543), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10208), 1, + sym_identifier, + ACTIONS(10210), 1, + anon_sym_STAR, + ACTIONS(10214), 1, + anon_sym_COLON_COLON, + ACTIONS(10713), 1, + anon_sym_AMP, + ACTIONS(10715), 1, + sym_this, + STATE(5956), 1, + sym__scope_resolution, + STATE(8569), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7284), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + [250386] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7445), 1, anon_sym_DASH_GT, - ACTIONS(9676), 1, + ACTIONS(9150), 1, anon_sym___attribute, - STATE(5940), 1, + ACTIONS(9330), 1, + anon_sym_requires, + STATE(6031), 1, sym_trailing_return_type, - ACTIONS(7335), 2, + ACTIONS(9327), 2, anon_sym_final, anon_sym_override, - STATE(5925), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6041), 2, + STATE(6149), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9665), 7, + ACTIONS(9139), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -494800,27 +502772,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_EQ, anon_sym_GT2, - [245054] = 9, + [250423] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7400), 1, - anon_sym_requires, - ACTIONS(7447), 1, + ACTIONS(7445), 1, anon_sym_DASH_GT, - ACTIONS(9845), 1, + ACTIONS(9382), 1, anon_sym___attribute, - STATE(5888), 1, + ACTIONS(9550), 1, + anon_sym_requires, + STATE(5980), 1, sym_trailing_return_type, - ACTIONS(7335), 2, + ACTIONS(9488), 2, anon_sym_final, anon_sym_override, - STATE(5925), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6045), 2, + STATE(6132), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9843), 7, + ACTIONS(9371), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -494828,27 +502800,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_EQ, anon_sym_GT2, - [245091] = 9, + [250460] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7087), 1, - anon_sym_DASH_GT, - ACTIONS(9676), 1, + ACTIONS(5020), 1, + anon_sym_LPAREN2, + ACTIONS(8147), 1, anon_sym_LBRACK, - ACTIONS(9684), 1, + ACTIONS(8481), 1, + anon_sym_STAR, + ACTIONS(8483), 1, + anon_sym_AMP_AMP, + ACTIONS(8485), 1, + anon_sym_AMP, + STATE(3021), 1, + sym_parameter_list, + STATE(6109), 1, + sym__function_declarator_seq, + STATE(6749), 1, + sym__abstract_declarator, + ACTIONS(8360), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + STATE(6099), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [250501] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10717), 1, + sym_identifier, + ACTIONS(5411), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + STATE(6069), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(10720), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(10723), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [250532] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7079), 1, anon_sym_requires, - STATE(5554), 1, + ACTIONS(7287), 1, + anon_sym_DASH_GT, + ACTIONS(9382), 1, + anon_sym_LBRACK, + STATE(5567), 1, sym_trailing_return_type, - ACTIONS(9681), 2, + ACTIONS(6037), 2, anon_sym_final, anon_sym_override, - STATE(5606), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5876), 2, + STATE(5934), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9665), 7, + ACTIONS(9371), 7, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_COLON, @@ -494856,137 +502883,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [245128] = 6, + [250569] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10653), 1, + ACTIONS(10726), 1, sym_identifier, - ACTIONS(5396), 3, - anon_sym_COMMA, + ACTIONS(10728), 2, anon_sym_RPAREN, anon_sym_COLON, - STATE(5970), 3, + STATE(6263), 2, sym_string_literal, sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(10655), 5, + STATE(7186), 2, + sym__string, + sym_concatenated_string, + ACTIONS(119), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(10657), 5, + ACTIONS(159), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [245159] = 5, + [250602] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - STATE(5795), 2, + ACTIONS(7075), 1, + anon_sym_noexcept, + ACTIONS(7077), 1, + anon_sym_throw, + ACTIONS(9843), 1, + anon_sym_DASH_GT, + ACTIONS(10603), 1, + anon_sym_LBRACE, + STATE(8531), 1, + sym_trailing_return_type, + STATE(6522), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(6889), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(6249), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(6251), 11, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [245188] = 11, + STATE(6897), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9841), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [250643] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5012), 1, + ACTIONS(5020), 1, anon_sym_LPAREN2, - ACTIONS(8131), 1, + ACTIONS(8147), 1, anon_sym_LBRACK, - ACTIONS(8473), 1, + ACTIONS(8457), 1, anon_sym_STAR, - ACTIONS(8475), 1, + ACTIONS(8459), 1, anon_sym_AMP_AMP, - ACTIONS(8477), 1, + ACTIONS(8461), 1, anon_sym_AMP, - STATE(3053), 1, + STATE(3551), 1, sym_parameter_list, - STATE(6087), 1, + STATE(6109), 1, sym__function_declarator_seq, - STATE(6684), 1, + STATE(6789), 1, sym__abstract_declarator, - ACTIONS(8306), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - STATE(6092), 5, + ACTIONS(8360), 4, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(6099), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [245229] = 12, + [250684] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(8429), 1, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6098), 1, + anon_sym_LBRACK, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(8459), 1, - sym_identifier, - ACTIONS(8461), 1, - anon_sym_STAR, - ACTIONS(8463), 1, - anon_sym_AMP_AMP, - ACTIONS(8465), 1, - anon_sym_AMP, - STATE(6710), 1, - sym__field_declarator, - STATE(6800), 1, - sym_operator_name, - STATE(8225), 1, - sym_ms_based_modifier, - STATE(6399), 7, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - sym_reference_field_declarator, - sym_template_method, - [245272] = 9, + STATE(1942), 1, + sym_parameter_list, + ACTIONS(6202), 2, + anon_sym___attribute, + anon_sym___asm, + STATE(6165), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6204), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_RBRACK, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [250719] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(7079), 1, anon_sym_requires, - ACTIONS(7087), 1, + ACTIONS(7287), 1, anon_sym_DASH_GT, - ACTIONS(9355), 1, + ACTIONS(9947), 1, anon_sym_LBRACK, - STATE(5616), 1, + STATE(5602), 1, sym_trailing_return_type, - ACTIONS(6020), 2, + ACTIONS(6037), 2, anon_sym_final, anon_sym_override, - STATE(5606), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5839), 2, + STATE(5874), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9344), 7, + ACTIONS(9945), 7, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_COLON, @@ -494994,91 +503024,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [245309] = 12, + [250756] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(8429), 1, + ACTIONS(7287), 1, + anon_sym_DASH_GT, + ACTIONS(9150), 1, + anon_sym_LBRACK, + ACTIONS(9196), 1, + anon_sym_requires, + STATE(5655), 1, + sym_trailing_return_type, + ACTIONS(9193), 2, + anon_sym_final, + anon_sym_override, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5927), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9139), 7, anon_sym_LPAREN2, - ACTIONS(8459), 1, - sym_identifier, - ACTIONS(8461), 1, - anon_sym_STAR, - ACTIONS(8463), 1, - anon_sym_AMP_AMP, - ACTIONS(8465), 1, - anon_sym_AMP, - STATE(6715), 1, - sym__field_declarator, - STATE(6800), 1, - sym_operator_name, - STATE(8225), 1, - sym_ms_based_modifier, - STATE(6399), 7, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - sym_reference_field_declarator, - sym_template_method, - [245352] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(113), 1, - anon_sym___asm, - ACTIONS(3615), 1, anon_sym_LBRACE, - ACTIONS(9997), 1, - anon_sym_LPAREN2, - ACTIONS(10001), 1, - anon_sym_LBRACK, - ACTIONS(10003), 1, anon_sym_EQ, - STATE(2962), 1, - sym_parameter_list, - STATE(5979), 1, - sym__function_declarator_seq, - STATE(7760), 1, - sym_gnu_asm_expression, - ACTIONS(10005), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(10659), 2, - anon_sym_COMMA, - anon_sym_SEMI, - STATE(5949), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7680), 2, - sym_argument_list, - sym_initializer_list, - [245399] = 9, + anon_sym_try, + [250793] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7079), 1, - anon_sym_requires, - ACTIONS(7087), 1, + ACTIONS(7287), 1, anon_sym_DASH_GT, - ACTIONS(9676), 1, + ACTIONS(9947), 1, anon_sym_LBRACK, - STATE(5491), 1, + ACTIONS(10172), 1, + anon_sym_requires, + STATE(5709), 1, sym_trailing_return_type, - ACTIONS(6020), 2, + ACTIONS(9957), 2, anon_sym_final, anon_sym_override, - STATE(5606), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5876), 2, + STATE(5874), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9665), 7, + ACTIONS(9945), 7, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_COLON, @@ -495086,227 +503080,193 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [245436] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10661), 1, - sym_identifier, - ACTIONS(5390), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - STATE(5959), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(10655), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(10657), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [245467] = 12, + [250830] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(4535), 1, + ACTIONS(4543), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(10156), 1, + ACTIONS(10208), 1, sym_identifier, - ACTIONS(10158), 1, + ACTIONS(10210), 1, anon_sym_STAR, - ACTIONS(10162), 1, + ACTIONS(10214), 1, anon_sym_COLON_COLON, - ACTIONS(10663), 1, + ACTIONS(10713), 1, anon_sym_AMP, - ACTIONS(10665), 1, + ACTIONS(10730), 1, sym_this, - STATE(5858), 1, + STATE(5956), 1, sym__scope_resolution, - STATE(8601), 3, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(7445), 5, + STATE(8034), 5, sym__lambda_capture_identifier, sym_lambda_capture_initializer, sym__lambda_capture, sym_identifier_parameter_pack_expansion, sym_qualified_identifier, - [245510] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7072), 1, - anon_sym_noexcept, - ACTIONS(7074), 1, - anon_sym_throw, - ACTIONS(9813), 1, - anon_sym_DASH_GT, - ACTIONS(10588), 1, - anon_sym_LBRACE, - STATE(8505), 1, - sym_trailing_return_type, - STATE(6402), 2, - sym_lambda_specifier, - aux_sym_lambda_declarator_repeat1, - STATE(6822), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6844), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9811), 4, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - [245551] = 6, + [250873] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10667), 1, - sym_identifier, - ACTIONS(5403), 3, + ACTIONS(6006), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(6004), 14, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_COLON, - STATE(5970), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(10670), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(10673), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [245582] = 11, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [250898] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(5012), 1, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(113), 1, + anon_sym___asm, + ACTIONS(3623), 1, + anon_sym_LBRACE, + ACTIONS(10065), 1, anon_sym_LPAREN2, - ACTIONS(5014), 1, - anon_sym_STAR, - ACTIONS(5016), 1, - anon_sym_AMP_AMP, - ACTIONS(5018), 1, - anon_sym_AMP, - ACTIONS(8131), 1, + ACTIONS(10071), 1, anon_sym_LBRACK, - STATE(3004), 1, + ACTIONS(10073), 1, + anon_sym_EQ, + STATE(2989), 1, sym_parameter_list, - STATE(6087), 1, + STATE(6203), 1, sym__function_declarator_seq, - STATE(6649), 1, - sym__abstract_declarator, - ACTIONS(8306), 4, + STATE(7741), 1, + sym_gnu_asm_expression, + ACTIONS(10075), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10732), 2, + anon_sym_COMMA, + anon_sym_SEMI, + STATE(6081), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7980), 2, + sym_argument_list, + sym_initializer_list, + [250945] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + STATE(5943), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(10736), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(10734), 11, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACE, - STATE(6092), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [245623] = 9, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [250974] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7079), 1, + ACTIONS(7361), 1, anon_sym_requires, - ACTIONS(7087), 1, + ACTIONS(7445), 1, anon_sym_DASH_GT, - ACTIONS(9193), 1, - anon_sym_LBRACK, - STATE(5534), 1, + ACTIONS(9150), 1, + anon_sym___attribute, + STATE(5975), 1, sym_trailing_return_type, - ACTIONS(6020), 2, + ACTIONS(7359), 2, anon_sym_final, anon_sym_override, - STATE(5606), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5877), 2, + STATE(6149), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9182), 7, + ACTIONS(9139), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, + anon_sym___attribute__, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_try, - [245660] = 12, + anon_sym_GT2, + [251011] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(4535), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(10156), 1, - sym_identifier, - ACTIONS(10158), 1, - anon_sym_STAR, - ACTIONS(10162), 1, - anon_sym_COLON_COLON, - ACTIONS(10663), 1, - anon_sym_AMP, - ACTIONS(10676), 1, - sym_this, - STATE(5858), 1, - sym__scope_resolution, - STATE(8601), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(7750), 5, - sym__lambda_capture_identifier, - sym_lambda_capture_initializer, - sym__lambda_capture, - sym_identifier_parameter_pack_expansion, - sym_qualified_identifier, - [245703] = 9, + ACTIONS(7361), 1, + anon_sym_requires, + ACTIONS(7445), 1, + anon_sym_DASH_GT, + ACTIONS(9382), 1, + anon_sym___attribute, + STATE(6016), 1, + sym_trailing_return_type, + ACTIONS(7359), 2, + anon_sym_final, + anon_sym_override, + STATE(6017), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6132), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9371), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + [251048] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7400), 1, + ACTIONS(7361), 1, anon_sym_requires, - ACTIONS(7447), 1, + ACTIONS(7445), 1, anon_sym_DASH_GT, - ACTIONS(9193), 1, + ACTIONS(9700), 1, anon_sym___attribute, - STATE(5909), 1, + STATE(6015), 1, sym_trailing_return_type, - ACTIONS(7335), 2, + ACTIONS(7359), 2, anon_sym_final, anon_sym_override, - STATE(5925), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6012), 2, + STATE(6133), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9182), 7, + ACTIONS(9689), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -495314,57 +503274,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_EQ, anon_sym_GT2, - [245740] = 11, + [251085] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5472), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(8421), 1, + anon_sym_LPAREN2, + ACTIONS(8473), 1, + sym_identifier, + ACTIONS(8475), 1, + anon_sym_STAR, + ACTIONS(8477), 1, + anon_sym_AMP_AMP, + ACTIONS(8479), 1, + anon_sym_AMP, + STATE(6757), 1, + sym__field_declarator, + STATE(6943), 1, + sym_operator_name, + STATE(8112), 1, + sym_ms_based_modifier, + STATE(6476), 7, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + sym_reference_field_declarator, + sym_template_method, + [251128] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7072), 1, + ACTIONS(7075), 1, anon_sym_noexcept, - ACTIONS(7074), 1, + ACTIONS(7077), 1, anon_sym_throw, - ACTIONS(9813), 1, + ACTIONS(9843), 1, anon_sym_DASH_GT, - ACTIONS(10678), 1, + ACTIONS(10738), 1, anon_sym_LBRACE, - STATE(8729), 1, + STATE(8225), 1, sym_trailing_return_type, - STATE(6402), 2, + STATE(6522), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(6784), 2, + STATE(6917), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6787), 3, + STATE(6932), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9811), 4, + ACTIONS(9841), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [245781] = 9, + [251169] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7400), 1, + ACTIONS(7361), 1, anon_sym_requires, - ACTIONS(7447), 1, + ACTIONS(7445), 1, anon_sym_DASH_GT, - ACTIONS(9355), 1, + ACTIONS(9947), 1, anon_sym___attribute, - STATE(5927), 1, + STATE(6010), 1, sym_trailing_return_type, - ACTIONS(7335), 2, + ACTIONS(7359), 2, anon_sym_final, anon_sym_override, - STATE(5925), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6032), 2, + STATE(6186), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9344), 7, + ACTIONS(9945), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -495372,40 +503363,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_EQ, anon_sym_GT2, - [245818] = 7, + [251206] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10680), 1, + ACTIONS(10740), 1, sym_identifier, - ACTIONS(10682), 2, + ACTIONS(5401), 3, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(6144), 2, + STATE(6050), 3, sym_string_literal, sym_raw_string_literal, - STATE(6936), 2, - sym__string, - sym_concatenated_string, - ACTIONS(119), 5, + aux_sym_concatenated_string_repeat1, + ACTIONS(10699), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(159), 5, + ACTIONS(10701), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [245851] = 3, + [251237] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6208), 3, + ACTIONS(5943), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(6210), 13, + ACTIONS(5945), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -495419,35 +503409,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [245875] = 3, + [251261] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(10686), 3, - anon_sym___attribute, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(8028), 1, + anon_sym_COLON_COLON, + ACTIONS(10742), 1, + sym_identifier, + ACTIONS(10744), 1, + sym_primitive_type, + STATE(4024), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(6719), 1, + sym__scope_resolution, + STATE(4731), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + STATE(8569), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(8030), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [251301] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(9580), 1, + anon_sym_COLON_COLON, + ACTIONS(10746), 1, + sym_identifier, + ACTIONS(10748), 1, + sym_primitive_type, + STATE(1635), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(6713), 1, + sym__scope_resolution, + STATE(2904), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + STATE(8569), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(9582), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [251341] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(10752), 1, anon_sym_LBRACK, + ACTIONS(10754), 1, anon_sym___asm, - ACTIONS(10684), 13, + STATE(3006), 1, + sym_parameter_list, + STATE(5959), 1, + sym__function_declarator_seq, + ACTIONS(10750), 11, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [251373] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10596), 1, + anon_sym___attribute, + ACTIONS(10594), 15, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, + anon_sym_final, + anon_sym_override, anon_sym_GT2, anon_sym_try, - [245899] = 3, + anon_sym_requires, + [251397] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(9498), 1, + anon_sym_COLON_COLON, + ACTIONS(10756), 1, + sym_identifier, + ACTIONS(10758), 1, + sym_primitive_type, + STATE(1645), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(6728), 1, + sym__scope_resolution, + STATE(2910), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + STATE(8569), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(9500), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [251437] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6269), 3, + ACTIONS(4934), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(6271), 13, + ACTIONS(4927), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -495461,14 +503563,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [245923] = 3, + [251461] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(10752), 1, + anon_sym_LBRACK, + ACTIONS(10762), 1, + anon_sym___asm, + STATE(3006), 1, + sym_parameter_list, + STATE(5959), 1, + sym__function_declarator_seq, + ACTIONS(10760), 11, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [251493] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10503), 1, + anon_sym___attribute, + ACTIONS(10501), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [251517] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(8060), 1, + anon_sym_COLON_COLON, + ACTIONS(10764), 1, + sym_identifier, + ACTIONS(10766), 1, + sym_primitive_type, + STATE(2695), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(6729), 1, + sym__scope_resolution, + STATE(2464), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + STATE(8569), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(3917), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [251557] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10611), 1, + anon_sym___attribute, + ACTIONS(10609), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [251581] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6273), 3, + ACTIONS(4934), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(6275), 13, + ACTIONS(4927), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -495482,14 +503680,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [245947] = 3, + [251605] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6286), 3, + ACTIONS(5958), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(6288), 13, + ACTIONS(5960), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -495503,143 +503701,193 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [245971] = 9, + [251629] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7317), 1, + ACTIONS(7393), 1, anon_sym_DASH_GT, - ACTIONS(7388), 1, + ACTIONS(7395), 1, anon_sym_requires, - ACTIONS(9193), 1, + ACTIONS(9947), 1, anon_sym_LBRACK, - STATE(6252), 1, + STATE(5971), 1, sym_trailing_return_type, - ACTIONS(6020), 2, + ACTIONS(6037), 2, anon_sym_final, anon_sym_override, - STATE(5606), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5877), 2, + STATE(5874), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9182), 6, + ACTIONS(9945), 6, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_try, - [246007] = 3, + [251665] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9193), 1, + ACTIONS(10770), 3, anon_sym___attribute, - ACTIONS(9182), 15, - anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(10768), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_final, - anon_sym_override, + anon_sym_asm, + anon_sym___asm__, anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [246031] = 7, + [251689] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7337), 1, + ACTIONS(7393), 1, + anon_sym_DASH_GT, + ACTIONS(9700), 1, + anon_sym_LBRACK, + ACTIONS(9739), 1, anon_sym_requires, - ACTIONS(9193), 1, - anon_sym___attribute, - ACTIONS(7335), 2, + STATE(6046), 1, + sym_trailing_return_type, + ACTIONS(9702), 2, anon_sym_final, anon_sym_override, - STATE(5925), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6012), 2, + STATE(5924), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9182), 8, - anon_sym_COMMA, + ACTIONS(9689), 6, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, - [246063] = 11, + anon_sym_try, + [251725] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(3907), 1, + ACTIONS(5028), 1, anon_sym_COLON_COLON, - ACTIONS(10688), 1, + ACTIONS(10772), 1, sym_identifier, - ACTIONS(10690), 1, + ACTIONS(10774), 1, sym_primitive_type, - STATE(2674), 1, + STATE(2385), 1, aux_sym_sized_type_specifier_repeat1, - STATE(6599), 1, + STATE(6746), 1, sym__scope_resolution, - STATE(2474), 2, + STATE(2464), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - STATE(8601), 3, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - ACTIONS(3909), 4, + ACTIONS(59), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - [246103] = 11, + [251765] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7393), 1, + anon_sym_DASH_GT, + ACTIONS(9947), 1, + anon_sym_LBRACK, + ACTIONS(10505), 1, + anon_sym_requires, + STATE(5969), 1, + sym_trailing_return_type, + ACTIONS(9957), 2, + anon_sym_final, + anon_sym_override, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5874), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9945), 6, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, + [251801] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10572), 1, + anon_sym___attribute, + ACTIONS(10570), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [251825] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(9440), 1, + ACTIONS(8074), 1, anon_sym_COLON_COLON, - ACTIONS(10692), 1, + ACTIONS(10742), 1, sym_identifier, - ACTIONS(10694), 1, + ACTIONS(10744), 1, sym_primitive_type, - STATE(1625), 1, + STATE(4024), 1, aux_sym_sized_type_specifier_repeat1, - STATE(6620), 1, + STATE(6743), 1, sym__scope_resolution, - STATE(2959), 2, + STATE(4731), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - STATE(8601), 3, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - ACTIONS(9442), 4, + ACTIONS(8030), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - [246143] = 3, + [251865] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10580), 1, + ACTIONS(10615), 1, anon_sym___attribute, - ACTIONS(10578), 15, + ACTIONS(10613), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -495655,33 +503903,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [246167] = 3, + [251889] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(6222), 3, - anon_sym___attribute, + ACTIONS(5020), 1, + anon_sym_LPAREN2, + ACTIONS(8147), 1, anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(6224), 13, + ACTIONS(8515), 1, + anon_sym_STAR, + ACTIONS(8517), 1, + anon_sym_AMP_AMP, + ACTIONS(8519), 1, + anon_sym_AMP, + STATE(3195), 1, + sym_parameter_list, + STATE(6109), 1, + sym__function_declarator_seq, + STATE(6878), 1, + sym__abstract_declarator, + ACTIONS(8360), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + STATE(6099), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [251929] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9700), 1, + anon_sym___attribute, + ACTIONS(9730), 1, + anon_sym_requires, + ACTIONS(9727), 2, + anon_sym_final, + anon_sym_override, + STATE(6017), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6133), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9689), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [246191] = 3, + anon_sym_LBRACK, + [251961] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10570), 1, + ACTIONS(10607), 1, anon_sym___attribute, - ACTIONS(10568), 15, + ACTIONS(10605), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -495697,123 +503978,358 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [246215] = 14, + [251985] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3615), 1, + ACTIONS(5907), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(5909), 13, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(7838), 1, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [252009] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7393), 1, + anon_sym_DASH_GT, + ACTIONS(9150), 1, + anon_sym_LBRACK, + ACTIONS(9359), 1, + anon_sym_requires, + STATE(6044), 1, + sym_trailing_return_type, + ACTIONS(9193), 2, + anon_sym_final, + anon_sym_override, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5927), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9139), 6, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(9770), 1, + anon_sym_LBRACE, + anon_sym_try, + [252045] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7447), 1, + anon_sym_requires, + ACTIONS(9951), 1, + anon_sym___attribute, + ACTIONS(7359), 2, + anon_sym_final, + anon_sym_override, + STATE(6017), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6190), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9949), 8, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(9774), 1, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_COLON, - ACTIONS(9778), 1, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(10698), 1, + [252077] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10778), 3, anon_sym___attribute, - ACTIONS(10700), 1, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(10776), 13, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_EQ, - STATE(2863), 1, - sym_parameter_list, - STATE(6381), 1, - sym__function_declarator_seq, - STATE(7031), 1, - sym_bitfield_clause, - STATE(7050), 1, - sym_initializer_list, - STATE(6298), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(10696), 3, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [252101] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9150), 1, + anon_sym___attribute, + ACTIONS(9366), 1, + anon_sym_requires, + ACTIONS(9327), 2, + anon_sym_final, + anon_sym_override, + STATE(6017), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6149), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9139), 8, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, - [246261] = 11, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + [252133] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(8021), 1, + ACTIONS(9530), 1, anon_sym_COLON_COLON, - ACTIONS(10702), 1, + ACTIONS(10780), 1, sym_identifier, - ACTIONS(10704), 1, + ACTIONS(10782), 1, sym_primitive_type, - STATE(4069), 1, + STATE(1612), 1, aux_sym_sized_type_specifier_repeat1, - STATE(6632), 1, + STATE(6695), 1, sym__scope_resolution, - STATE(4906), 2, + STATE(2262), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - STATE(8601), 3, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - ACTIONS(8023), 4, + ACTIONS(9532), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - [246301] = 9, + [252173] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7393), 1, + anon_sym_DASH_GT, + ACTIONS(7395), 1, + anon_sym_requires, + ACTIONS(9700), 1, + anon_sym_LBRACK, + STATE(6023), 1, + sym_trailing_return_type, + ACTIONS(6037), 2, + anon_sym_final, + anon_sym_override, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5924), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9689), 6, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, + [252209] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(10752), 1, + anon_sym_LBRACK, + ACTIONS(10786), 1, + anon_sym___asm, + STATE(3006), 1, + sym_parameter_list, + STATE(5959), 1, + sym__function_declarator_seq, + ACTIONS(10784), 11, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [252241] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7393), 1, + anon_sym_DASH_GT, + ACTIONS(7395), 1, + anon_sym_requires, + ACTIONS(9150), 1, + anon_sym_LBRACK, + STATE(6042), 1, + sym_trailing_return_type, + ACTIONS(6037), 2, + anon_sym_final, + anon_sym_override, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5927), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9139), 6, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, + [252277] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5947), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(5949), 13, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [252301] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7447), 1, + anon_sym_requires, + ACTIONS(9382), 1, + anon_sym___attribute, + ACTIONS(7359), 2, + anon_sym_final, + anon_sym_override, + STATE(6017), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6132), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9371), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + [252333] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(10752), 1, + anon_sym_LBRACK, + ACTIONS(10786), 1, + anon_sym___asm, + STATE(3010), 1, + sym_parameter_list, + STATE(5959), 1, + sym__function_declarator_seq, + ACTIONS(10784), 11, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [252365] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9150), 1, + anon_sym___attribute, + ACTIONS(9139), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [252389] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7317), 1, - anon_sym_DASH_GT, - ACTIONS(9193), 1, - anon_sym_LBRACK, - ACTIONS(9316), 1, + ACTIONS(7447), 1, anon_sym_requires, - STATE(6254), 1, - sym_trailing_return_type, - ACTIONS(9195), 2, + ACTIONS(9150), 1, + anon_sym___attribute, + ACTIONS(7359), 2, anon_sym_final, anon_sym_override, - STATE(5606), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5877), 2, + STATE(6149), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9182), 6, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_try, - [246337] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10708), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(10706), 13, + ACTIONS(9139), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [246361] = 3, + anon_sym_LBRACK, + [252421] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10712), 3, + ACTIONS(5982), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(10710), 13, + ACTIONS(5984), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -495827,73 +504343,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [246385] = 12, + [252445] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1852), 1, + ACTIONS(1850), 1, anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(10275), 1, + ACTIONS(10248), 1, anon_sym_TILDE, - ACTIONS(10714), 1, + ACTIONS(10788), 1, sym_identifier, - ACTIONS(10716), 1, + ACTIONS(10790), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(10719), 1, + ACTIONS(10793), 1, anon_sym_COLON_COLON, - ACTIONS(10721), 1, + ACTIONS(10795), 1, anon_sym_template, - STATE(6350), 1, + STATE(6406), 1, sym__scope_resolution, - STATE(7892), 1, + STATE(7928), 1, sym_operator_name, - STATE(8601), 3, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(3441), 4, + STATE(3501), 4, sym_template_method, sym_destructor_name, sym_dependent_field_identifier, sym_qualified_field_identifier, - [246427] = 11, + [252487] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(9384), 1, + ACTIONS(8000), 1, anon_sym_COLON_COLON, - ACTIONS(10723), 1, + ACTIONS(10797), 1, sym_identifier, - ACTIONS(10725), 1, + ACTIONS(10799), 1, sym_primitive_type, - STATE(1594), 1, + STATE(4150), 1, aux_sym_sized_type_specifier_repeat1, - STATE(6580), 1, + STATE(6731), 1, sym__scope_resolution, - STATE(2231), 2, + STATE(4999), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - STATE(8601), 3, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - ACTIONS(9483), 4, + ACTIONS(8002), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - [246467] = 3, + [252527] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(10752), 1, + anon_sym_LBRACK, + ACTIONS(10786), 1, + anon_sym___attribute, + STATE(2908), 1, + sym_parameter_list, + STATE(5959), 1, + sym__function_declarator_seq, + ACTIONS(10784), 11, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [252559] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8093), 3, + ACTIONS(5903), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(5036), 13, + ACTIONS(5905), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -495907,12 +504448,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [246491] = 3, + [252583] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10562), 1, + ACTIONS(9700), 1, anon_sym___attribute, - ACTIONS(10560), 15, + ACTIONS(9689), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -495928,255 +504469,228 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [246515] = 11, + [252607] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(9424), 1, - anon_sym_COLON_COLON, - ACTIONS(10727), 1, - sym_identifier, - ACTIONS(10729), 1, - sym_primitive_type, - STATE(1869), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6626), 1, - sym__scope_resolution, - STATE(1870), 2, - sym_sized_type_specifier, - sym_qualified_type_identifier, - STATE(8601), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(9426), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [246555] = 7, + ACTIONS(9947), 1, + anon_sym___attribute, + ACTIONS(9945), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [252631] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(10733), 1, + ACTIONS(10752), 1, anon_sym_LBRACK, - ACTIONS(10735), 1, - anon_sym___asm, - STATE(2885), 1, + ACTIONS(10803), 1, + anon_sym___attribute, + STATE(2908), 1, sym_parameter_list, - STATE(5813), 1, + STATE(5959), 1, sym__function_declarator_seq, - ACTIONS(10731), 11, + ACTIONS(10801), 11, anon_sym_COMMA, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - [246587] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(9578), 1, - anon_sym_COLON_COLON, - ACTIONS(10737), 1, - sym_identifier, - ACTIONS(10739), 1, - sym_primitive_type, - STATE(1860), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6634), 1, - sym__scope_resolution, - STATE(3985), 2, - sym_sized_type_specifier, - sym_qualified_type_identifier, - STATE(8601), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(9580), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [246627] = 7, + [252663] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(10733), 1, + ACTIONS(10752), 1, anon_sym_LBRACK, - ACTIONS(10743), 1, - anon_sym___asm, - STATE(2885), 1, + ACTIONS(10807), 1, + anon_sym___attribute, + STATE(2908), 1, sym_parameter_list, - STATE(5813), 1, + STATE(5959), 1, sym__function_declarator_seq, - ACTIONS(10741), 11, + ACTIONS(10805), 11, anon_sym_COMMA, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - [246659] = 7, + [252695] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - ACTIONS(10733), 1, + ACTIONS(5990), 3, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(10747), 1, anon_sym___asm, - STATE(2885), 1, - sym_parameter_list, - STATE(5813), 1, - sym__function_declarator_seq, - ACTIONS(10745), 11, + ACTIONS(5992), 13, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_asm, anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [252719] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10544), 1, + anon_sym___attribute, + ACTIONS(10542), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_try, anon_sym_requires, - [246691] = 7, + [252743] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - ACTIONS(10733), 1, + ACTIONS(10811), 3, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(10751), 1, anon_sym___asm, - STATE(2885), 1, - sym_parameter_list, - STATE(5813), 1, - sym__function_declarator_seq, - ACTIONS(10749), 11, + ACTIONS(10809), 13, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - anon_sym_final, - anon_sym_override, + anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [246723] = 7, + [252767] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(10733), 1, + ACTIONS(10752), 1, anon_sym_LBRACK, - ACTIONS(10755), 1, - anon_sym___asm, - STATE(2885), 1, + ACTIONS(10815), 1, + anon_sym___attribute, + STATE(2908), 1, sym_parameter_list, - STATE(5813), 1, + STATE(5959), 1, sym__function_declarator_seq, - ACTIONS(10753), 11, + ACTIONS(10813), 11, anon_sym_COMMA, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - [246755] = 7, + [252799] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(10733), 1, + ACTIONS(10752), 1, anon_sym_LBRACK, - ACTIONS(10759), 1, - anon_sym___asm, - STATE(2885), 1, + ACTIONS(10819), 1, + anon_sym___attribute, + STATE(2908), 1, sym_parameter_list, - STATE(5813), 1, + STATE(5959), 1, sym__function_declarator_seq, - ACTIONS(10757), 11, + ACTIONS(10817), 11, anon_sym_COMMA, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - [246787] = 7, + [252831] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - ACTIONS(10733), 1, - anon_sym_LBRACK, - ACTIONS(10763), 1, - anon_sym___asm, - STATE(2885), 1, - sym_parameter_list, - STATE(5813), 1, - sym__function_declarator_seq, - ACTIONS(10761), 11, + ACTIONS(10556), 1, + anon_sym___attribute, + ACTIONS(10554), 15, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, + anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_try, anon_sym_requires, - [246819] = 7, + [252855] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(10733), 1, + ACTIONS(10752), 1, anon_sym_LBRACK, - ACTIONS(10767), 1, + ACTIONS(10803), 1, anon_sym___asm, - STATE(2885), 1, + STATE(3010), 1, sym_parameter_list, - STATE(5813), 1, + STATE(5959), 1, sym__function_declarator_seq, - ACTIONS(10765), 11, + ACTIONS(10801), 11, anon_sym_COMMA, anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, @@ -496184,179 +504698,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_final, anon_sym_override, - anon_sym_try, anon_sym_requires, - [246851] = 3, + [252887] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10771), 3, - anon_sym___attribute, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(10752), 1, anon_sym_LBRACK, + ACTIONS(10807), 1, anon_sym___asm, - ACTIONS(10769), 13, + STATE(3010), 1, + sym_parameter_list, + STATE(5959), 1, + sym__function_declarator_seq, + ACTIONS(10805), 11, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [246875] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7317), 1, - anon_sym_DASH_GT, - ACTIONS(7388), 1, - anon_sym_requires, - ACTIONS(9355), 1, - anon_sym_LBRACK, - STATE(6198), 1, - sym_trailing_return_type, - ACTIONS(6020), 2, anon_sym_final, anon_sym_override, - STATE(5606), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5839), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9344), 6, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_try, - [246911] = 3, + anon_sym_requires, + [252919] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(9355), 1, - anon_sym___attribute, - ACTIONS(9344), 15, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3623), 1, + anon_sym_LBRACE, + ACTIONS(7918), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9798), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, + ACTIONS(9802), 1, anon_sym_COLON, - anon_sym_LBRACE, + ACTIONS(9806), 1, anon_sym_LBRACK, + ACTIONS(10823), 1, + anon_sym___attribute, + ACTIONS(10825), 1, anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [246935] = 7, + STATE(2902), 1, + sym_parameter_list, + STATE(6468), 1, + sym__function_declarator_seq, + STATE(7158), 1, + sym_bitfield_clause, + STATE(7159), 1, + sym_initializer_list, + STATE(6430), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(10821), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + [252965] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7337), 1, - anon_sym_requires, - ACTIONS(9355), 1, + ACTIONS(8123), 3, anon_sym___attribute, - ACTIONS(7335), 2, - anon_sym_final, - anon_sym_override, - STATE(5925), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6032), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9344), 8, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(5044), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, - [246967] = 11, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [252989] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(8049), 1, + ACTIONS(9412), 1, anon_sym_COLON_COLON, - ACTIONS(10773), 1, + ACTIONS(10827), 1, sym_identifier, - ACTIONS(10775), 1, + ACTIONS(10829), 1, sym_primitive_type, - STATE(4239), 1, + STATE(1860), 1, aux_sym_sized_type_specifier_repeat1, - STATE(6579), 1, + STATE(6732), 1, sym__scope_resolution, - STATE(2698), 2, + STATE(4037), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - STATE(8601), 3, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - ACTIONS(3130), 4, + ACTIONS(9414), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - [247007] = 3, + [253029] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10512), 1, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(10752), 1, + anon_sym_LBRACK, + ACTIONS(10762), 1, anon_sym___attribute, - ACTIONS(10510), 15, - anon_sym_DOT_DOT_DOT, + STATE(2908), 1, + sym_parameter_list, + STATE(5959), 1, + sym__function_declarator_seq, + ACTIONS(10760), 11, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_try, anon_sym_requires, - [247031] = 3, + [253061] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10532), 1, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(10752), 1, + anon_sym_LBRACK, + ACTIONS(10754), 1, anon_sym___attribute, - ACTIONS(10530), 15, - anon_sym_DOT_DOT_DOT, + STATE(2908), 1, + sym_parameter_list, + STATE(5959), 1, + sym__function_declarator_seq, + ACTIONS(10750), 11, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_try, anon_sym_requires, - [247055] = 3, + [253093] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10536), 1, + ACTIONS(9382), 1, anon_sym___attribute, - ACTIONS(10534), 15, + ACTIONS(9371), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -496372,186 +504877,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [247079] = 3, + [253117] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10542), 1, - anon_sym___attribute, - ACTIONS(10540), 15, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(9798), 1, anon_sym_LPAREN2, + ACTIONS(10752), 1, + anon_sym_LBRACK, + ACTIONS(10819), 1, + anon_sym___asm, + STATE(3010), 1, + sym_parameter_list, + STATE(5959), 1, + sym__function_declarator_seq, + ACTIONS(10817), 11, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, anon_sym_requires, - [247103] = 4, + [253149] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6178), 1, - anon_sym___attribute, - ACTIONS(10777), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(6180), 13, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(9798), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACE, + ACTIONS(10752), 1, anon_sym_LBRACK, - anon_sym_or, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [247129] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6253), 1, + ACTIONS(10833), 1, anon_sym___attribute, - ACTIONS(10777), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(10779), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(6255), 11, + STATE(2908), 1, + sym_parameter_list, + STATE(5959), 1, + sym__function_declarator_seq, + ACTIONS(10831), 11, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_EQ, anon_sym_final, anon_sym_override, + anon_sym_try, anon_sym_requires, - [247157] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(5020), 1, - anon_sym_COLON_COLON, - ACTIONS(10781), 1, - sym_identifier, - ACTIONS(10783), 1, - sym_primitive_type, - STATE(2359), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6606), 1, - sym__scope_resolution, - STATE(2474), 2, - sym_sized_type_specifier, - sym_qualified_type_identifier, - STATE(8601), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(59), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [247197] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(9384), 1, - anon_sym_COLON_COLON, - ACTIONS(10785), 1, - sym_identifier, - ACTIONS(10787), 1, - sym_primitive_type, - STATE(1592), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6580), 1, - sym__scope_resolution, - STATE(2231), 2, - sym_sized_type_specifier, - sym_qualified_type_identifier, - STATE(8601), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(9386), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [247237] = 9, + [253181] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7317), 1, - anon_sym_DASH_GT, - ACTIONS(9355), 1, - anon_sym_LBRACK, - ACTIONS(9472), 1, + ACTIONS(7447), 1, anon_sym_requires, - STATE(6260), 1, - sym_trailing_return_type, - ACTIONS(9357), 2, + ACTIONS(9700), 1, + anon_sym___attribute, + ACTIONS(7359), 2, anon_sym_final, anon_sym_override, - STATE(5606), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5839), 2, + STATE(6133), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9344), 6, + ACTIONS(9689), 8, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, + anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACE, - anon_sym_try, - [247273] = 3, + anon_sym_LBRACK, + [253213] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4972), 3, + ACTIONS(10631), 1, anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(4965), 13, + ACTIONS(10629), 15, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, + anon_sym_final, + anon_sym_override, anon_sym_GT2, anon_sym_try, - [247297] = 3, + anon_sym_requires, + [253237] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4972), 3, + ACTIONS(4934), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(4965), 13, + ACTIONS(4927), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -496565,35 +504994,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [247321] = 3, + [253261] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4972), 3, + ACTIONS(7447), 1, + anon_sym_requires, + ACTIONS(9947), 1, anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(4965), 13, + ACTIONS(7359), 2, + anon_sym_final, + anon_sym_override, + STATE(6017), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6186), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9945), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [247345] = 3, + anon_sym_LBRACK, + [253293] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4972), 3, + ACTIONS(10837), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(4965), 13, + ACTIONS(10835), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -496607,35 +505040,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [247369] = 3, + [253317] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4972), 3, - anon_sym___attribute, + ACTIONS(7393), 1, + anon_sym_DASH_GT, + ACTIONS(9382), 1, anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(4965), 13, - anon_sym_COMMA, + ACTIONS(9479), 1, + anon_sym_requires, + STATE(5993), 1, + sym_trailing_return_type, + ACTIONS(9387), 2, + anon_sym_final, + anon_sym_override, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5934), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9371), 6, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, anon_sym_try, - [247393] = 3, + [253353] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4972), 3, + ACTIONS(4934), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(4965), 13, + ACTIONS(4927), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -496649,68 +505088,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [247417] = 11, + [253377] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(8081), 1, + ACTIONS(9612), 1, anon_sym_COLON_COLON, - ACTIONS(10789), 1, + ACTIONS(10839), 1, sym_identifier, - ACTIONS(10791), 1, + ACTIONS(10841), 1, sym_primitive_type, - STATE(3931), 1, + STATE(2223), 1, aux_sym_sized_type_specifier_repeat1, - STATE(6615), 1, + STATE(6694), 1, sym__scope_resolution, - STATE(4695), 2, + STATE(2714), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - STATE(8601), 3, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - ACTIONS(8057), 4, + ACTIONS(9614), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - [247457] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7317), 1, - anon_sym_DASH_GT, - ACTIONS(7388), 1, - anon_sym_requires, - ACTIONS(9676), 1, - anon_sym_LBRACK, - STATE(6228), 1, - sym_trailing_return_type, - ACTIONS(6020), 2, - anon_sym_final, - anon_sym_override, - STATE(5606), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5876), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9665), 6, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_try, - [247493] = 3, + [253417] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9676), 1, + ACTIONS(10518), 1, anon_sym___attribute, - ACTIONS(9665), 15, + ACTIONS(10516), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -496726,64 +505138,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [247517] = 7, + [253441] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7337), 1, - anon_sym_requires, - ACTIONS(9676), 1, + ACTIONS(6646), 3, anon_sym___attribute, - ACTIONS(7335), 2, - anon_sym_final, - anon_sym_override, - STATE(5925), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6041), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9665), 8, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(6648), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, - [247549] = 7, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [253465] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9355), 1, - anon_sym___attribute, - ACTIONS(9498), 1, - anon_sym_requires, - ACTIONS(9495), 2, - anon_sym_final, - anon_sym_override, - STATE(5925), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6032), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9344), 8, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(7984), 1, + anon_sym_COLON_COLON, + ACTIONS(10843), 1, + sym_identifier, + ACTIONS(10845), 1, + sym_primitive_type, + STATE(4234), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(6727), 1, + sym__scope_resolution, + STATE(1899), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + STATE(8569), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(1808), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [253505] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9798), 1, anon_sym_LPAREN2, + ACTIONS(10752), 1, + anon_sym_LBRACK, + ACTIONS(10833), 1, + anon_sym___asm, + STATE(3006), 1, + sym_parameter_list, + STATE(5959), 1, + sym__function_declarator_seq, + ACTIONS(10831), 11, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, - [247581] = 3, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [253537] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10795), 3, + ACTIONS(10849), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(10793), 13, + ACTIONS(10847), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -496797,79 +505234,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [247605] = 9, + [253561] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7317), 1, - anon_sym_DASH_GT, - ACTIONS(9676), 1, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + STATE(5943), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6244), 3, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(9711), 1, - anon_sym_requires, - STATE(6261), 1, - sym_trailing_return_type, - ACTIONS(9681), 2, - anon_sym_final, - anon_sym_override, - STATE(5606), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5876), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9665), 6, + anon_sym___asm, + ACTIONS(6246), 10, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, + anon_sym___attribute__, anon_sym_LBRACE, + anon_sym_RBRACK, + anon_sym_asm, + anon_sym___asm__, anon_sym_try, - [247641] = 11, + [253589] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(7970), 1, + ACTIONS(5228), 1, anon_sym_COLON_COLON, - ACTIONS(10688), 1, + ACTIONS(10772), 1, sym_identifier, - ACTIONS(10690), 1, + ACTIONS(10774), 1, sym_primitive_type, - STATE(5032), 1, + STATE(2385), 1, aux_sym_sized_type_specifier_repeat1, - STATE(6630), 1, + STATE(6715), 1, sym__scope_resolution, - STATE(2474), 2, + STATE(2464), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - STATE(8601), 3, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - ACTIONS(9648), 4, + ACTIONS(59), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - [247681] = 7, + [253629] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9193), 1, + ACTIONS(10627), 1, anon_sym___attribute, - ACTIONS(9328), 1, - anon_sym_requires, - ACTIONS(9297), 2, - anon_sym_final, - anon_sym_override, - STATE(5925), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6012), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9182), 8, + ACTIONS(10625), 15, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -496878,170 +505301,173 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACE, anon_sym_LBRACK, - [247713] = 11, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [253653] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(9530), 1, + anon_sym_COLON_COLON, + ACTIONS(10851), 1, + sym_identifier, + ACTIONS(10853), 1, + sym_primitive_type, + STATE(1614), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(6695), 1, + sym__scope_resolution, + STATE(2262), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + STATE(8569), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(9555), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [253693] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5012), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(8131), 1, + ACTIONS(10752), 1, anon_sym_LBRACK, - ACTIONS(8568), 1, - anon_sym_STAR, - ACTIONS(8570), 1, - anon_sym_AMP_AMP, - ACTIONS(8572), 1, - anon_sym_AMP, - STATE(3177), 1, + ACTIONS(10762), 1, + anon_sym___asm, + STATE(3010), 1, sym_parameter_list, - STATE(6087), 1, + STATE(5959), 1, sym__function_declarator_seq, - STATE(6755), 1, - sym__abstract_declarator, - ACTIONS(8306), 3, - anon_sym_DOT_DOT_DOT, + ACTIONS(10760), 11, anon_sym_COMMA, - anon_sym_GT2, - STATE(6092), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [247753] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7317), 1, - anon_sym_DASH_GT, - ACTIONS(9845), 1, - anon_sym_LBRACK, - ACTIONS(10797), 1, - anon_sym_requires, - STATE(6263), 1, - sym_trailing_return_type, - ACTIONS(9919), 2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, anon_sym_final, anon_sym_override, - STATE(5606), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5846), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9843), 6, - anon_sym_RPAREN, + anon_sym_requires, + [253725] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9798), 1, anon_sym_LPAREN2, + ACTIONS(10752), 1, + anon_sym_LBRACK, + ACTIONS(10754), 1, + anon_sym___asm, + STATE(3010), 1, + sym_parameter_list, + STATE(5959), 1, + sym__function_declarator_seq, + ACTIONS(10750), 11, + anon_sym_COMMA, anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_try, - [247789] = 3, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [253757] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9845), 1, - anon_sym___attribute, - ACTIONS(9843), 15, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(9798), 1, anon_sym_LPAREN2, + ACTIONS(10752), 1, + anon_sym_LBRACK, + ACTIONS(10833), 1, + anon_sym___asm, + STATE(3010), 1, + sym_parameter_list, + STATE(5959), 1, + sym__function_declarator_seq, + ACTIONS(10831), 11, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, anon_sym_requires, - [247813] = 7, + [253789] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7337), 1, - anon_sym_requires, - ACTIONS(9845), 1, + ACTIONS(6248), 1, anon_sym___attribute, - ACTIONS(7335), 2, - anon_sym_final, - anon_sym_override, - STATE(5925), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6045), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9843), 8, + ACTIONS(10855), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6250), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, anon_sym_LBRACE, anon_sym_LBRACK, - [247845] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7317), 1, - anon_sym_DASH_GT, - ACTIONS(7388), 1, - anon_sym_requires, - ACTIONS(9845), 1, - anon_sym_LBRACK, - STATE(6197), 1, - sym_trailing_return_type, - ACTIONS(6020), 2, + anon_sym_or, anon_sym_final, anon_sym_override, - STATE(5606), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5846), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9843), 6, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_try, - [247881] = 11, + anon_sym_requires, + [253815] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(8055), 1, + ACTIONS(8060), 1, anon_sym_COLON_COLON, - ACTIONS(10789), 1, + ACTIONS(10764), 1, sym_identifier, - ACTIONS(10791), 1, + ACTIONS(10766), 1, sym_primitive_type, - STATE(3931), 1, + STATE(5109), 1, aux_sym_sized_type_specifier_repeat1, - STATE(6592), 1, + STATE(6729), 1, sym__scope_resolution, - STATE(4695), 2, + STATE(2464), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - STATE(8601), 3, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - ACTIONS(8057), 4, + ACTIONS(9676), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - [247921] = 3, + [253855] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9849), 1, + ACTIONS(10540), 1, anon_sym___attribute, - ACTIONS(9847), 15, + ACTIONS(10538), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -497057,59 +505483,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [247945] = 7, + [253879] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7337), 1, - anon_sym_requires, - ACTIONS(9849), 1, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(9459), 1, + anon_sym_COLON_COLON, + ACTIONS(10857), 1, + sym_identifier, + ACTIONS(10859), 1, + sym_primitive_type, + STATE(1671), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(6708), 1, + sym__scope_resolution, + STATE(3172), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + STATE(8569), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(9461), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [253919] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9947), 1, anon_sym___attribute, - ACTIONS(7335), 2, + ACTIONS(10861), 1, + anon_sym_requires, + ACTIONS(10656), 2, anon_sym_final, anon_sym_override, - STATE(5925), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6048), 2, + STATE(6186), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9847), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - [247977] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10502), 1, - anon_sym___attribute, - ACTIONS(10500), 15, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [248001] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10550), 1, - anon_sym___attribute, - ACTIONS(10548), 15, - anon_sym_DOT_DOT_DOT, + ACTIONS(9945), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -497118,18 +505537,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [248025] = 3, + [253951] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10506), 1, + ACTIONS(10510), 1, anon_sym___attribute, - ACTIONS(10504), 15, + ACTIONS(10508), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -497145,14 +505558,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [248049] = 3, + [253975] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6218), 3, + ACTIONS(5994), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(6220), 13, + ACTIONS(5996), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -497166,139 +505579,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [248073] = 7, + [253999] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(10733), 1, + ACTIONS(10752), 1, anon_sym_LBRACK, - ACTIONS(10735), 1, - anon_sym___attribute, - STATE(2860), 1, + ACTIONS(10803), 1, + anon_sym___asm, + STATE(3006), 1, sym_parameter_list, - STATE(5813), 1, + STATE(5959), 1, sym__function_declarator_seq, - ACTIONS(10731), 11, + ACTIONS(10801), 11, anon_sym_COMMA, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - [248105] = 7, + [254031] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - ACTIONS(10733), 1, + ACTIONS(7393), 1, + anon_sym_DASH_GT, + ACTIONS(7395), 1, + anon_sym_requires, + ACTIONS(9382), 1, anon_sym_LBRACK, - ACTIONS(10743), 1, - anon_sym___attribute, - STATE(2860), 1, - sym_parameter_list, - STATE(5813), 1, - sym__function_declarator_seq, - ACTIONS(10741), 11, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + STATE(5994), 1, + sym_trailing_return_type, + ACTIONS(6037), 2, anon_sym_final, anon_sym_override, - anon_sym_try, - anon_sym_requires, - [248137] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9770), 1, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5934), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9371), 6, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(10733), 1, - anon_sym_LBRACK, - ACTIONS(10747), 1, - anon_sym___attribute, - STATE(2860), 1, - sym_parameter_list, - STATE(5813), 1, - sym__function_declarator_seq, - ACTIONS(10745), 11, - anon_sym_COMMA, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, anon_sym_try, - anon_sym_requires, - [248169] = 7, + [254067] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - ACTIONS(10733), 1, - anon_sym_LBRACK, - ACTIONS(10751), 1, + ACTIONS(4934), 3, anon_sym___attribute, - STATE(2860), 1, - sym_parameter_list, - STATE(5813), 1, - sym__function_declarator_seq, - ACTIONS(10749), 11, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(4927), 13, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_final, - anon_sym_override, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [248201] = 7, + [254091] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - ACTIONS(10733), 1, - anon_sym_LBRACK, - ACTIONS(10755), 1, + ACTIONS(9382), 1, anon_sym___attribute, - STATE(2860), 1, - sym_parameter_list, - STATE(5813), 1, - sym__function_declarator_seq, - ACTIONS(10753), 11, + ACTIONS(9491), 1, + anon_sym_requires, + ACTIONS(9488), 2, + anon_sym_final, + anon_sym_override, + STATE(6017), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6132), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9371), 8, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [248233] = 3, + anon_sym_LBRACK, + [254123] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6295), 3, + ACTIONS(5939), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(6297), 13, + ACTIONS(5941), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -497312,194 +505698,210 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [248257] = 7, + [254147] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - ACTIONS(10733), 1, - anon_sym_LBRACK, - ACTIONS(10759), 1, - anon_sym___attribute, - STATE(2860), 1, - sym_parameter_list, - STATE(5813), 1, - sym__function_declarator_seq, - ACTIONS(10757), 11, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [248289] = 7, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(3915), 1, + anon_sym_COLON_COLON, + ACTIONS(10764), 1, + sym_identifier, + ACTIONS(10766), 1, + sym_primitive_type, + STATE(2695), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(6697), 1, + sym__scope_resolution, + STATE(2464), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + STATE(8569), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(3917), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [254187] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(10733), 1, + ACTIONS(10752), 1, anon_sym_LBRACK, - ACTIONS(10763), 1, - anon_sym___attribute, - STATE(2860), 1, + ACTIONS(10807), 1, + anon_sym___asm, + STATE(3006), 1, sym_parameter_list, - STATE(5813), 1, + STATE(5959), 1, sym__function_declarator_seq, - ACTIONS(10761), 11, + ACTIONS(10805), 11, anon_sym_COMMA, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - [248321] = 7, + [254219] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - ACTIONS(10733), 1, - anon_sym_LBRACK, - ACTIONS(10767), 1, + ACTIONS(9951), 1, anon_sym___attribute, - STATE(2860), 1, - sym_parameter_list, - STATE(5813), 1, - sym__function_declarator_seq, - ACTIONS(10765), 11, + ACTIONS(9949), 15, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_try, anon_sym_requires, - [248353] = 11, + [254243] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(9406), 1, + ACTIONS(9437), 1, anon_sym_COLON_COLON, - ACTIONS(10775), 1, + ACTIONS(10845), 1, sym_primitive_type, - ACTIONS(10800), 1, + ACTIONS(10864), 1, sym_identifier, - STATE(2170), 1, + STATE(1887), 1, aux_sym_sized_type_specifier_repeat1, - STATE(6594), 1, + STATE(6699), 1, sym__scope_resolution, - STATE(2698), 2, + STATE(1899), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - STATE(8601), 3, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - ACTIONS(9408), 4, + ACTIONS(9439), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - [248393] = 3, + [254283] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10804), 3, - anon_sym___attribute, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(10752), 1, anon_sym_LBRACK, + ACTIONS(10815), 1, anon_sym___asm, - ACTIONS(10802), 13, + STATE(3006), 1, + sym_parameter_list, + STATE(5959), 1, + sym__function_declarator_seq, + ACTIONS(10813), 11, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - anon_sym_GT2, + anon_sym_final, + anon_sym_override, anon_sym_try, - [248417] = 3, + anon_sym_requires, + [254315] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10808), 3, + ACTIONS(10514), 1, anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(10806), 13, + ACTIONS(10512), 15, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, + anon_sym_final, + anon_sym_override, anon_sym_GT2, anon_sym_try, - [248441] = 7, + anon_sym_requires, + [254339] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9676), 1, + ACTIONS(10568), 1, anon_sym___attribute, - ACTIONS(9714), 1, - anon_sym_requires, - ACTIONS(9705), 2, + ACTIONS(10566), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_final, anon_sym_override, - STATE(5925), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6041), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9665), 8, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [254363] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5925), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(5927), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, - [248473] = 7, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [254387] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9845), 1, + ACTIONS(6298), 1, anon_sym___attribute, - ACTIONS(10810), 1, - anon_sym_requires, - ACTIONS(10628), 2, - anon_sym_final, - anon_sym_override, - STATE(5925), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6045), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9843), 8, + ACTIONS(10855), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(10866), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6300), 11, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -497508,73 +505910,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACE, anon_sym_LBRACK, - [248505] = 11, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [254415] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(7970), 1, + ACTIONS(8088), 1, anon_sym_COLON_COLON, - ACTIONS(10688), 1, + ACTIONS(10868), 1, sym_identifier, - ACTIONS(10690), 1, + ACTIONS(10870), 1, sym_primitive_type, - STATE(2674), 1, + STATE(4916), 1, aux_sym_sized_type_specifier_repeat1, - STATE(6630), 1, + STATE(6724), 1, sym__scope_resolution, - STATE(2474), 2, + STATE(1899), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - STATE(8601), 3, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - ACTIONS(3909), 4, + ACTIONS(8090), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - [248545] = 3, + [254455] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10815), 3, - anon_sym___attribute, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(10752), 1, anon_sym_LBRACK, + ACTIONS(10819), 1, anon_sym___asm, - ACTIONS(10813), 13, + STATE(3006), 1, + sym_parameter_list, + STATE(5959), 1, + sym__function_declarator_seq, + ACTIONS(10817), 11, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - anon_sym_GT2, + anon_sym_final, + anon_sym_override, anon_sym_try, - [248569] = 7, + anon_sym_requires, + [254487] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9849), 1, + ACTIONS(9951), 1, anon_sym___attribute, - ACTIONS(10817), 1, + ACTIONS(10872), 1, anon_sym_requires, - ACTIONS(10616), 2, + ACTIONS(10646), 2, anon_sym_final, anon_sym_override, - STATE(5925), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6048), 2, + STATE(6190), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9847), 8, + ACTIONS(9949), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -497583,14 +505992,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACE, anon_sym_LBRACK, - [248601] = 3, + [254519] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5962), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(5964), 13, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [254543] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6544), 3, + ACTIONS(4934), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(6546), 13, + ACTIONS(4927), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -497604,160 +506034,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [248625] = 11, + [254567] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(7959), 1, + ACTIONS(8022), 1, anon_sym_COLON_COLON, - ACTIONS(10729), 1, + ACTIONS(10841), 1, sym_primitive_type, - ACTIONS(10820), 1, - sym_identifier, - STATE(4209), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6587), 1, - sym__scope_resolution, - STATE(1870), 2, - sym_sized_type_specifier, - sym_qualified_type_identifier, - STATE(8601), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(1810), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [248665] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(5220), 1, - anon_sym_COLON_COLON, - ACTIONS(10781), 1, + ACTIONS(10875), 1, sym_identifier, - ACTIONS(10783), 1, - sym_primitive_type, - STATE(2359), 1, + STATE(4313), 1, aux_sym_sized_type_specifier_repeat1, - STATE(6627), 1, + STATE(6738), 1, sym__scope_resolution, - STATE(2474), 2, + STATE(2714), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - STATE(8601), 3, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - ACTIONS(59), 4, + ACTIONS(3142), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - [248705] = 3, + [254607] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10516), 1, + ACTIONS(10879), 3, anon_sym___attribute, - ACTIONS(10514), 15, - anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(10877), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [248729] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - ACTIONS(10733), 1, - anon_sym_LBRACK, - ACTIONS(10735), 1, - anon_sym___asm, - STATE(2902), 1, - sym_parameter_list, - STATE(5813), 1, - sym__function_declarator_seq, - ACTIONS(10731), 11, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [248761] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10520), 1, - anon_sym___attribute, - ACTIONS(10518), 15, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [248785] = 3, + [254631] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10524), 1, + ACTIONS(10883), 3, anon_sym___attribute, - ACTIONS(10522), 15, - anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(10881), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_final, - anon_sym_override, + anon_sym_asm, + anon_sym___asm__, anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [248809] = 3, + [254655] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10824), 3, + ACTIONS(10887), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(10822), 13, + ACTIONS(10885), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -497771,12 +506126,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [248833] = 3, + [254679] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10528), 1, + ACTIONS(10562), 1, anon_sym___attribute, - ACTIONS(10526), 15, + ACTIONS(10560), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -497792,45 +506147,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [248857] = 7, + [254703] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - ACTIONS(10733), 1, + ACTIONS(10891), 3, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(10743), 1, anon_sym___asm, - STATE(2902), 1, - sym_parameter_list, - STATE(5813), 1, - sym__function_declarator_seq, - ACTIONS(10741), 11, + ACTIONS(10889), 13, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [248889] = 7, + anon_sym_GT2, + anon_sym_try, + [254727] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(10733), 1, + ACTIONS(10752), 1, anon_sym_LBRACK, - ACTIONS(10747), 1, + ACTIONS(10815), 1, anon_sym___asm, - STATE(2902), 1, + STATE(3010), 1, sym_parameter_list, - STATE(5813), 1, + STATE(5959), 1, sym__function_declarator_seq, - ACTIONS(10745), 11, + ACTIONS(10813), 11, anon_sym_COMMA, anon_sym_SEMI, anon_sym_COLON, @@ -497842,490 +506193,616 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [248921] = 7, + [254759] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(10733), 1, + ACTIONS(10071), 1, anon_sym_LBRACK, - ACTIONS(10751), 1, + ACTIONS(10895), 1, anon_sym___asm, - STATE(2902), 1, + STATE(2989), 1, sym_parameter_list, - STATE(5813), 1, + STATE(6203), 1, sym__function_declarator_seq, - ACTIONS(10749), 11, + STATE(6081), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(10893), 7, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [248953] = 7, + anon_sym_try, + [254794] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(7918), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(10733), 1, + ACTIONS(10071), 1, anon_sym_LBRACK, - ACTIONS(10755), 1, + ACTIONS(10899), 1, anon_sym___asm, - STATE(2902), 1, + STATE(3001), 1, sym_parameter_list, - STATE(5813), 1, + STATE(6203), 1, sym__function_declarator_seq, - ACTIONS(10753), 11, + STATE(6435), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(10897), 7, anon_sym_COMMA, anon_sym_SEMI, anon_sym_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [248985] = 3, + [254829] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6277), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(6279), 13, + ACTIONS(7424), 1, + anon_sym_DASH_GT, + ACTIONS(7447), 1, + anon_sym_requires, + STATE(6152), 1, + sym_trailing_return_type, + ACTIONS(7359), 2, + anon_sym_final, + anon_sym_override, + STATE(6017), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6132), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9371), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [249009] = 3, + anon_sym_LBRACK, + [254862] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6192), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(6194), 13, + ACTIONS(7424), 1, + anon_sym_DASH_GT, + ACTIONS(9366), 1, + anon_sym_requires, + STATE(6182), 1, + sym_trailing_return_type, + ACTIONS(9327), 2, + anon_sym_final, + anon_sym_override, + STATE(6017), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6149), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9139), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [249033] = 7, + anon_sym_LBRACK, + [254895] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(10726), 1, + sym_identifier, + STATE(6263), 2, + sym_string_literal, + sym_raw_string_literal, + STATE(7287), 2, + sym__string, + sym_concatenated_string, + ACTIONS(119), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(159), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [254924] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7918), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(10733), 1, + ACTIONS(10071), 1, anon_sym_LBRACK, - ACTIONS(10759), 1, + ACTIONS(10895), 1, anon_sym___asm, - STATE(2902), 1, + STATE(3001), 1, sym_parameter_list, - STATE(5813), 1, + STATE(6203), 1, sym__function_declarator_seq, - ACTIONS(10757), 11, + STATE(6435), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(10893), 7, anon_sym_COMMA, anon_sym_SEMI, anon_sym_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [249065] = 7, + [254959] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(10726), 1, + sym_identifier, + STATE(6263), 2, + sym_string_literal, + sym_raw_string_literal, + STATE(7686), 2, + sym__string, + sym_concatenated_string, + ACTIONS(119), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(159), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [254988] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10726), 1, + sym_identifier, + STATE(6263), 2, + sym_string_literal, + sym_raw_string_literal, + STATE(7365), 2, + sym__string, + sym_concatenated_string, + ACTIONS(119), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(159), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [255017] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(10733), 1, + ACTIONS(10071), 1, anon_sym_LBRACK, - ACTIONS(10763), 1, + ACTIONS(10903), 1, anon_sym___asm, - STATE(2902), 1, + STATE(2989), 1, sym_parameter_list, - STATE(5813), 1, + STATE(6203), 1, sym__function_declarator_seq, - ACTIONS(10761), 11, + STATE(6081), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(10901), 7, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_asm, anon_sym___asm__, + anon_sym_try, + [255052] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7424), 1, + anon_sym_DASH_GT, + ACTIONS(9491), 1, + anon_sym_requires, + STATE(6111), 1, + sym_trailing_return_type, + ACTIONS(9488), 2, anon_sym_final, anon_sym_override, - anon_sym_requires, - [249097] = 7, + STATE(6017), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6132), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9371), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + [255085] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(10733), 1, + ACTIONS(10071), 1, anon_sym_LBRACK, - ACTIONS(10767), 1, + ACTIONS(10899), 1, anon_sym___asm, - STATE(2902), 1, + STATE(2989), 1, sym_parameter_list, - STATE(5813), 1, + STATE(6203), 1, sym__function_declarator_seq, - ACTIONS(10765), 11, + STATE(6081), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(10897), 7, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [249129] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(9528), 1, - anon_sym_COLON_COLON, - ACTIONS(10826), 1, - sym_identifier, - ACTIONS(10828), 1, - sym_primitive_type, - STATE(1637), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6578), 1, - sym__scope_resolution, - STATE(3134), 2, - sym_sized_type_specifier, - sym_qualified_type_identifier, - STATE(8601), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(9530), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [249169] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10451), 1, - anon_sym___attribute, - ACTIONS(10449), 15, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [249193] = 3, + [255120] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6196), 3, - anon_sym___attribute, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(10071), 1, anon_sym_LBRACK, + ACTIONS(10907), 1, anon_sym___asm, - ACTIONS(6198), 13, + STATE(2989), 1, + sym_parameter_list, + STATE(6203), 1, + sym__function_declarator_seq, + STATE(6081), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(10905), 7, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - anon_sym_GT2, anon_sym_try, - [249217] = 3, + [255155] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6200), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(6202), 13, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(7357), 1, + anon_sym_DASH_GT, + ACTIONS(7361), 1, + anon_sym_requires, + STATE(5975), 1, + sym_trailing_return_type, + ACTIONS(7359), 2, + anon_sym_final, + anon_sym_override, + STATE(6017), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6149), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9139), 6, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, anon_sym_try, - [249241] = 11, + [255188] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(9503), 1, - anon_sym_COLON_COLON, - ACTIONS(10830), 1, + ACTIONS(10909), 1, sym_identifier, - ACTIONS(10832), 1, - sym_primitive_type, - STATE(1619), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6633), 1, - sym__scope_resolution, - STATE(2851), 2, - sym_sized_type_specifier, - sym_qualified_type_identifier, - STATE(8601), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(9505), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [249281] = 11, + ACTIONS(10911), 1, + aux_sym_preproc_if_token2, + ACTIONS(10913), 1, + aux_sym_preproc_else_token1, + ACTIONS(10915), 1, + aux_sym_preproc_elif_token1, + STATE(6537), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(6538), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(6859), 1, + sym_enumerator, + ACTIONS(10917), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(8497), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + STATE(8501), 3, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + sym_preproc_elifdef_in_enumerator_list_no_comma, + [255227] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, - anon_sym_template, + ACTIONS(1850), 1, + anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(7990), 1, - anon_sym_COLON_COLON, - ACTIONS(10834), 1, + ACTIONS(10232), 1, + anon_sym_TILDE, + ACTIONS(10919), 1, sym_identifier, - ACTIONS(10836), 1, - sym_primitive_type, - STATE(4882), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6593), 1, + ACTIONS(10921), 1, + anon_sym_COLON_COLON, + ACTIONS(10923), 1, + anon_sym_template, + STATE(6466), 1, sym__scope_resolution, - STATE(1870), 2, - sym_sized_type_specifier, - sym_qualified_type_identifier, - STATE(8601), 3, + STATE(7702), 1, + sym_operator_name, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - ACTIONS(7992), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [249321] = 3, + STATE(3711), 4, + sym_template_method, + sym_destructor_name, + sym_dependent_field_identifier, + sym_qualified_field_identifier, + [255266] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10492), 1, + ACTIONS(7447), 1, + anon_sym_requires, + ACTIONS(7799), 1, + anon_sym_DASH_GT, + ACTIONS(9150), 1, anon_sym___attribute, - ACTIONS(10490), 15, - anon_sym_DOT_DOT_DOT, + STATE(6123), 1, + sym_trailing_return_type, + ACTIONS(7359), 2, + anon_sym_final, + anon_sym_override, + STATE(6017), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6149), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9139), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [249345] = 6, + [255301] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10680), 1, - sym_identifier, - STATE(6144), 2, - sym_string_literal, - sym_raw_string_literal, - STATE(7391), 2, - sym__string, - sym_concatenated_string, - ACTIONS(119), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(159), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [249374] = 9, + ACTIONS(7424), 1, + anon_sym_DASH_GT, + ACTIONS(9730), 1, + anon_sym_requires, + STATE(6176), 1, + sym_trailing_return_type, + ACTIONS(9727), 2, + anon_sym_final, + anon_sym_override, + STATE(6017), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6133), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9689), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + [255334] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7337), 1, + ACTIONS(7447), 1, anon_sym_requires, - ACTIONS(7667), 1, + ACTIONS(7799), 1, anon_sym_DASH_GT, - ACTIONS(9193), 1, + ACTIONS(9382), 1, anon_sym___attribute, - STATE(6013), 1, + STATE(6152), 1, sym_trailing_return_type, - ACTIONS(7335), 2, + ACTIONS(7359), 2, anon_sym_final, anon_sym_override, - STATE(5925), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6012), 2, + STATE(6132), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9182), 5, + ACTIONS(9371), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym___attribute__, anon_sym_LBRACK, - [249409] = 9, + [255369] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7337), 1, + ACTIONS(7447), 1, anon_sym_requires, - ACTIONS(7667), 1, + ACTIONS(7799), 1, anon_sym_DASH_GT, - ACTIONS(9355), 1, + ACTIONS(9700), 1, anon_sym___attribute, - STATE(6033), 1, + STATE(6155), 1, sym_trailing_return_type, - ACTIONS(7335), 2, + ACTIONS(7359), 2, anon_sym_final, anon_sym_override, - STATE(5925), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6032), 2, + STATE(6133), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9344), 5, + ACTIONS(9689), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym___attribute__, anon_sym_LBRACK, - [249444] = 9, + [255404] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7337), 1, + ACTIONS(7447), 1, anon_sym_requires, - ACTIONS(7667), 1, + ACTIONS(7799), 1, anon_sym_DASH_GT, - ACTIONS(9676), 1, + ACTIONS(9947), 1, anon_sym___attribute, - STATE(6042), 1, + STATE(6115), 1, sym_trailing_return_type, - ACTIONS(7335), 2, + ACTIONS(7359), 2, anon_sym_final, anon_sym_override, - STATE(5925), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6041), 2, + STATE(6186), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9665), 5, + ACTIONS(9945), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym___attribute__, anon_sym_LBRACK, - [249479] = 9, + [255439] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7337), 1, - anon_sym_requires, - ACTIONS(7667), 1, + ACTIONS(7424), 1, anon_sym_DASH_GT, - ACTIONS(9845), 1, - anon_sym___attribute, - STATE(6046), 1, + ACTIONS(10861), 1, + anon_sym_requires, + STATE(6195), 1, sym_trailing_return_type, - ACTIONS(7335), 2, + ACTIONS(10656), 2, anon_sym_final, anon_sym_override, - STATE(5925), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6045), 2, + STATE(6186), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9843), 5, + ACTIONS(9945), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym___attribute__, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + [255472] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10909), 1, + sym_identifier, + ACTIONS(10913), 1, + aux_sym_preproc_else_token1, + ACTIONS(10915), 1, + aux_sym_preproc_elif_token1, + ACTIONS(10925), 1, + aux_sym_preproc_if_token2, + STATE(6524), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(6528), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(6859), 1, + sym_enumerator, + ACTIONS(10917), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(8138), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + STATE(8183), 3, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + sym_preproc_elifdef_in_enumerator_list_no_comma, + [255511] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5020), 1, + anon_sym_LPAREN2, + ACTIONS(8147), 1, anon_sym_LBRACK, - [249514] = 9, + ACTIONS(8638), 1, + anon_sym_STAR, + ACTIONS(8640), 1, + anon_sym_AMP_AMP, + ACTIONS(8642), 1, + anon_sym_AMP, + STATE(3510), 1, + sym_parameter_list, + STATE(6109), 1, + sym__function_declarator_seq, + STATE(6936), 1, + sym__abstract_declarator, + ACTIONS(8360), 2, + anon_sym_LBRACE, + anon_sym_requires, + STATE(6099), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [255550] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7838), 1, + ACTIONS(7918), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(10001), 1, + ACTIONS(10071), 1, anon_sym_LBRACK, - ACTIONS(10840), 1, + ACTIONS(10903), 1, anon_sym___asm, - STATE(2956), 1, + STATE(3001), 1, sym_parameter_list, - STATE(5979), 1, + STATE(6203), 1, sym__function_declarator_seq, - STATE(6341), 2, + STATE(6435), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(10838), 7, + ACTIONS(10901), 7, anon_sym_COMMA, anon_sym_SEMI, anon_sym_COLON, @@ -498333,274 +506810,441 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [249549] = 8, + [255585] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7330), 1, - anon_sym_DASH_GT, - ACTIONS(9548), 1, - anon_sym_requires, - STATE(5904), 1, - sym_trailing_return_type, - ACTIONS(9495), 2, - anon_sym_final, - anon_sym_override, - STATE(5925), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6032), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9344), 6, + ACTIONS(7918), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9798), 1, anon_sym_LPAREN2, + ACTIONS(9806), 1, + anon_sym_LBRACK, + ACTIONS(10929), 1, + anon_sym___attribute, + STATE(2902), 1, + sym_parameter_list, + STATE(6468), 1, + sym__function_declarator_seq, + STATE(6430), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(10927), 7, + anon_sym_COMMA, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_try, - [249582] = 9, + [255620] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7667), 1, + ACTIONS(7799), 1, anon_sym_DASH_GT, - ACTIONS(9193), 1, + ACTIONS(9150), 1, anon_sym___attribute, - ACTIONS(9328), 1, + ACTIONS(9366), 1, anon_sym_requires, - STATE(6034), 1, + STATE(6182), 1, sym_trailing_return_type, - ACTIONS(9297), 2, + ACTIONS(9327), 2, anon_sym_final, anon_sym_override, - STATE(5925), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6012), 2, + STATE(6149), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9182), 5, + ACTIONS(9139), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym___attribute__, anon_sym_LBRACK, - [249617] = 9, + [255655] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7667), 1, + ACTIONS(7799), 1, anon_sym_DASH_GT, - ACTIONS(9355), 1, + ACTIONS(9382), 1, anon_sym___attribute, - ACTIONS(9498), 1, + ACTIONS(9491), 1, anon_sym_requires, - STATE(6063), 1, + STATE(6111), 1, sym_trailing_return_type, - ACTIONS(9495), 2, + ACTIONS(9488), 2, anon_sym_final, anon_sym_override, - STATE(5925), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6032), 2, + STATE(6132), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9344), 5, + ACTIONS(9371), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym___attribute__, anon_sym_LBRACK, - [249652] = 9, + [255690] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7667), 1, + ACTIONS(7799), 1, anon_sym_DASH_GT, - ACTIONS(9676), 1, + ACTIONS(9700), 1, anon_sym___attribute, - ACTIONS(9714), 1, + ACTIONS(9730), 1, anon_sym_requires, - STATE(6064), 1, + STATE(6176), 1, sym_trailing_return_type, - ACTIONS(9705), 2, + ACTIONS(9727), 2, anon_sym_final, anon_sym_override, - STATE(5925), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6041), 2, + STATE(6133), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9665), 5, + ACTIONS(9689), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym___attribute__, anon_sym_LBRACK, - [249687] = 9, + [255725] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7667), 1, + ACTIONS(7799), 1, anon_sym_DASH_GT, - ACTIONS(9845), 1, + ACTIONS(9947), 1, anon_sym___attribute, - ACTIONS(10810), 1, + ACTIONS(10861), 1, anon_sym_requires, - STATE(6067), 1, + STATE(6195), 1, sym_trailing_return_type, - ACTIONS(10628), 2, + ACTIONS(10656), 2, anon_sym_final, anon_sym_override, - STATE(5925), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6045), 2, + STATE(6186), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9843), 5, + ACTIONS(9945), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym___attribute__, anon_sym_LBRACK, - [249722] = 8, + [255760] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7330), 1, + ACTIONS(7424), 1, anon_sym_DASH_GT, - ACTIONS(7400), 1, + ACTIONS(7447), 1, anon_sym_requires, - STATE(5940), 1, + STATE(6155), 1, sym_trailing_return_type, - ACTIONS(7335), 2, + ACTIONS(7359), 2, anon_sym_final, anon_sym_override, - STATE(5925), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6041), 2, + STATE(6133), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9665), 6, + ACTIONS(9689), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_try, - [249755] = 11, + [255793] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(10228), 1, - anon_sym_TILDE, - ACTIONS(10842), 1, + ACTIONS(10909), 1, sym_identifier, - ACTIONS(10844), 1, - anon_sym_COLON_COLON, - ACTIONS(10846), 1, - anon_sym_template, - STATE(6302), 1, - sym__scope_resolution, - STATE(7700), 1, - sym_operator_name, - STATE(8601), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(2449), 4, - sym_template_method, - sym_destructor_name, - sym_dependent_field_identifier, - sym_qualified_field_identifier, - [249794] = 9, + ACTIONS(10913), 1, + aux_sym_preproc_else_token1, + ACTIONS(10915), 1, + aux_sym_preproc_elif_token1, + ACTIONS(10931), 1, + aux_sym_preproc_if_token2, + STATE(6531), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(6636), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(6859), 1, + sym_enumerator, + ACTIONS(10917), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(8737), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + STATE(8795), 3, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + sym_preproc_elifdef_in_enumerator_list_no_comma, + [255832] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(10752), 1, + anon_sym_LBRACK, + ACTIONS(10786), 1, + anon_sym___asm, + STATE(3110), 1, + sym_parameter_list, + STATE(5959), 1, + sym__function_declarator_seq, + ACTIONS(10784), 10, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [255863] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7838), 1, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(10752), 1, + anon_sym_LBRACK, + ACTIONS(10803), 1, + anon_sym___asm, + STATE(3110), 1, + sym_parameter_list, + STATE(5959), 1, + sym__function_declarator_seq, + ACTIONS(10801), 10, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(9770), 1, + anon_sym_LBRACE, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [255894] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(9778), 1, + ACTIONS(10752), 1, anon_sym_LBRACK, - ACTIONS(10850), 1, - anon_sym___attribute, - STATE(2863), 1, + ACTIONS(10807), 1, + anon_sym___asm, + STATE(3110), 1, sym_parameter_list, - STATE(6381), 1, + STATE(5959), 1, sym__function_declarator_seq, - STATE(6298), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(10848), 7, + ACTIONS(10805), 10, anon_sym_COMMA, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, anon_sym_try, - [249829] = 9, + anon_sym_requires, + [255925] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7838), 1, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(10752), 1, + anon_sym_LBRACK, + ACTIONS(10815), 1, + anon_sym___asm, + STATE(3110), 1, + sym_parameter_list, + STATE(5959), 1, + sym__function_declarator_seq, + ACTIONS(10813), 10, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(9770), 1, + anon_sym_LBRACE, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [255956] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(9778), 1, + ACTIONS(10752), 1, anon_sym_LBRACK, - ACTIONS(10854), 1, - anon_sym___attribute, - STATE(2863), 1, + ACTIONS(10819), 1, + anon_sym___asm, + STATE(3110), 1, + sym_parameter_list, + STATE(5959), 1, + sym__function_declarator_seq, + ACTIONS(10817), 10, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [255987] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(10752), 1, + anon_sym_LBRACK, + ACTIONS(10762), 1, + anon_sym___asm, + STATE(3110), 1, + sym_parameter_list, + STATE(5959), 1, + sym__function_declarator_seq, + ACTIONS(10760), 10, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [256018] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(10752), 1, + anon_sym_LBRACK, + ACTIONS(10754), 1, + anon_sym___asm, + STATE(3110), 1, + sym_parameter_list, + STATE(5959), 1, + sym__function_declarator_seq, + ACTIONS(10750), 10, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [256049] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(10752), 1, + anon_sym_LBRACK, + ACTIONS(10833), 1, + anon_sym___asm, + STATE(3110), 1, + sym_parameter_list, + STATE(5959), 1, + sym__function_declarator_seq, + ACTIONS(10831), 10, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [256080] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7918), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(10071), 1, + anon_sym_LBRACK, + ACTIONS(10935), 1, + anon_sym___asm, + STATE(3001), 1, sym_parameter_list, - STATE(6381), 1, + STATE(6203), 1, sym__function_declarator_seq, - STATE(6298), 2, + STATE(6435), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(10852), 7, + ACTIONS(10933), 7, anon_sym_COMMA, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_COLON, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_try, - [249864] = 8, + anon_sym_asm, + anon_sym___asm__, + [256115] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7330), 1, + ACTIONS(7424), 1, anon_sym_DASH_GT, - ACTIONS(9708), 1, + ACTIONS(7447), 1, anon_sym_requires, - STATE(5935), 1, + STATE(6123), 1, sym_trailing_return_type, - ACTIONS(9705), 2, + ACTIONS(7359), 2, anon_sym_final, anon_sym_override, - STATE(5925), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6041), 2, + STATE(6149), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9665), 6, + ACTIONS(9139), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_try, - [249897] = 6, + [256148] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10680), 1, + ACTIONS(10726), 1, sym_identifier, - STATE(6144), 2, + STATE(6263), 2, sym_string_literal, sym_raw_string_literal, - STATE(7247), 2, + STATE(7508), 2, sym__string, sym_concatenated_string, ACTIONS(119), 5, @@ -498615,40 +507259,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [249926] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7322), 1, - anon_sym_DASH_GT, - ACTIONS(7337), 1, - anon_sym_requires, - STATE(6013), 1, - sym_trailing_return_type, - ACTIONS(7335), 2, - anon_sym_final, - anon_sym_override, - STATE(5925), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6012), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9182), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - [249959] = 6, + [256177] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10680), 1, + ACTIONS(10726), 1, sym_identifier, - STATE(6144), 2, + STATE(6263), 2, sym_string_literal, sym_raw_string_literal, - STATE(7320), 2, + STATE(7627), 2, sym__string, sym_concatenated_string, ACTIONS(119), 5, @@ -498663,219 +507282,328 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [249988] = 8, + [256206] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10909), 1, + sym_identifier, + ACTIONS(10913), 1, + aux_sym_preproc_else_token1, + ACTIONS(10915), 1, + aux_sym_preproc_elif_token1, + ACTIONS(10937), 1, + aux_sym_preproc_if_token2, + STATE(6548), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(6549), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(6859), 1, + sym_enumerator, + ACTIONS(10917), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(8495), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + STATE(8502), 3, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + sym_preproc_elifdef_in_enumerator_list_no_comma, + [256245] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7918), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(9806), 1, + anon_sym_LBRACK, + ACTIONS(10941), 1, + anon_sym___attribute, + STATE(2902), 1, + sym_parameter_list, + STATE(6468), 1, + sym__function_declarator_seq, + STATE(6430), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(10939), 7, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [256280] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7330), 1, + ACTIONS(7357), 1, anon_sym_DASH_GT, - ACTIONS(10631), 1, + ACTIONS(9330), 1, anon_sym_requires, - STATE(5895), 1, + STATE(6031), 1, sym_trailing_return_type, - ACTIONS(10628), 2, + ACTIONS(9327), 2, anon_sym_final, anon_sym_override, - STATE(5925), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6045), 2, + STATE(6149), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9843), 6, + ACTIONS(9139), 6, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, anon_sym_try, - [250021] = 9, + [256313] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7551), 1, + ACTIONS(7538), 1, anon_sym_requires, - ACTIONS(7653), 1, + ACTIONS(7768), 1, anon_sym_DASH_GT, - ACTIONS(9193), 1, + ACTIONS(9150), 1, anon_sym___attribute, - STATE(6207), 1, + STATE(6295), 1, sym_trailing_return_type, - ACTIONS(7335), 2, + ACTIONS(7359), 2, anon_sym_final, anon_sym_override, - STATE(5925), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6012), 2, + STATE(6149), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9182), 5, + ACTIONS(9139), 5, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym___attribute__, anon_sym_LBRACK, anon_sym_GT2, - [250056] = 9, + [256348] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7551), 1, + ACTIONS(7538), 1, anon_sym_requires, - ACTIONS(7653), 1, + ACTIONS(7768), 1, anon_sym_DASH_GT, - ACTIONS(9355), 1, + ACTIONS(9382), 1, anon_sym___attribute, - STATE(6229), 1, + STATE(6296), 1, sym_trailing_return_type, - ACTIONS(7335), 2, + ACTIONS(7359), 2, anon_sym_final, anon_sym_override, - STATE(5925), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6032), 2, + STATE(6132), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9344), 5, + ACTIONS(9371), 5, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym___attribute__, anon_sym_LBRACK, anon_sym_GT2, - [250091] = 9, + [256383] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7551), 1, + ACTIONS(7538), 1, anon_sym_requires, - ACTIONS(7653), 1, + ACTIONS(7768), 1, anon_sym_DASH_GT, - ACTIONS(9676), 1, + ACTIONS(9700), 1, anon_sym___attribute, - STATE(6239), 1, + STATE(6297), 1, sym_trailing_return_type, - ACTIONS(7335), 2, + ACTIONS(7359), 2, anon_sym_final, anon_sym_override, - STATE(5925), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6041), 2, + STATE(6133), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9665), 5, + ACTIONS(9689), 5, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym___attribute__, anon_sym_LBRACK, anon_sym_GT2, - [250126] = 9, + [256418] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7551), 1, + ACTIONS(7538), 1, anon_sym_requires, - ACTIONS(7653), 1, + ACTIONS(7768), 1, anon_sym_DASH_GT, - ACTIONS(9845), 1, + ACTIONS(9947), 1, anon_sym___attribute, - STATE(6253), 1, + STATE(6298), 1, sym_trailing_return_type, - ACTIONS(7335), 2, + ACTIONS(7359), 2, + anon_sym_final, + anon_sym_override, + STATE(6017), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6186), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9945), 5, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_GT2, + [256453] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7918), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(10071), 1, + anon_sym_LBRACK, + ACTIONS(10907), 1, + anon_sym___asm, + STATE(3001), 1, + sym_parameter_list, + STATE(6203), 1, + sym__function_declarator_seq, + STATE(6435), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(10905), 7, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + [256488] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7768), 1, + anon_sym_DASH_GT, + ACTIONS(9150), 1, + anon_sym___attribute, + ACTIONS(9384), 1, + anon_sym_requires, + STATE(6305), 1, + sym_trailing_return_type, + ACTIONS(9327), 2, anon_sym_final, anon_sym_override, - STATE(5925), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6045), 2, + STATE(6149), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9843), 5, + ACTIONS(9139), 5, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym___attribute__, anon_sym_LBRACK, anon_sym_GT2, - [250161] = 8, + [256523] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7330), 1, + ACTIONS(7768), 1, anon_sym_DASH_GT, - ACTIONS(7400), 1, + ACTIONS(9382), 1, + anon_sym___attribute, + ACTIONS(9651), 1, anon_sym_requires, - STATE(5888), 1, + STATE(6306), 1, sym_trailing_return_type, - ACTIONS(7335), 2, + ACTIONS(9488), 2, anon_sym_final, anon_sym_override, - STATE(5925), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6045), 2, + STATE(6132), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9843), 6, + ACTIONS(9371), 5, + anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, + anon_sym___attribute__, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_try, - [250194] = 8, + anon_sym_GT2, + [256558] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7322), 1, + ACTIONS(7768), 1, anon_sym_DASH_GT, - ACTIONS(10810), 1, + ACTIONS(9700), 1, + anon_sym___attribute, + ACTIONS(9745), 1, anon_sym_requires, - STATE(6067), 1, + STATE(6307), 1, sym_trailing_return_type, - ACTIONS(10628), 2, + ACTIONS(9727), 2, anon_sym_final, anon_sym_override, - STATE(5925), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6045), 2, + STATE(6133), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9843), 6, + ACTIONS(9689), 5, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, + anon_sym___attribute__, anon_sym_LBRACK, - [250227] = 8, + anon_sym_GT2, + [256593] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7322), 1, + ACTIONS(7768), 1, anon_sym_DASH_GT, - ACTIONS(7337), 1, + ACTIONS(9947), 1, + anon_sym___attribute, + ACTIONS(10943), 1, anon_sym_requires, - STATE(6046), 1, + STATE(6308), 1, sym_trailing_return_type, - ACTIONS(7335), 2, + ACTIONS(10656), 2, anon_sym_final, anon_sym_override, - STATE(5925), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6045), 2, + STATE(6186), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9843), 6, + ACTIONS(9945), 5, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, + anon_sym___attribute__, anon_sym_LBRACK, - [250260] = 6, + anon_sym_GT2, + [256628] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10680), 1, + ACTIONS(10726), 1, sym_identifier, - STATE(6144), 2, + STATE(6263), 2, sym_string_literal, sym_raw_string_literal, - STATE(8172), 2, + STATE(7292), 2, sym__string, sym_concatenated_string, ACTIONS(119), 5, @@ -498890,15 +507618,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [250289] = 6, + [256657] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10680), 1, + ACTIONS(7918), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(9806), 1, + anon_sym_LBRACK, + ACTIONS(10948), 1, + anon_sym___attribute, + STATE(2902), 1, + sym_parameter_list, + STATE(6468), 1, + sym__function_declarator_seq, + STATE(6430), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(10946), 7, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [256692] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10726), 1, sym_identifier, - STATE(6144), 2, + STATE(6263), 2, sym_string_literal, sym_raw_string_literal, - STATE(7291), 2, + STATE(7325), 2, sym__string, sym_concatenated_string, ACTIONS(119), 5, @@ -498913,119 +507667,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [250318] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7653), 1, - anon_sym_DASH_GT, - ACTIONS(9193), 1, - anon_sym___attribute, - ACTIONS(9341), 1, - anon_sym_requires, - STATE(6188), 1, - sym_trailing_return_type, - ACTIONS(9297), 2, - anon_sym_final, - anon_sym_override, - STATE(5925), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6012), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9182), 5, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_GT2, - [250353] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7653), 1, - anon_sym_DASH_GT, - ACTIONS(9355), 1, - anon_sym___attribute, - ACTIONS(9629), 1, - anon_sym_requires, - STATE(6189), 1, - sym_trailing_return_type, - ACTIONS(9495), 2, - anon_sym_final, - anon_sym_override, - STATE(5925), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6032), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9344), 5, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_GT2, - [250388] = 9, + [256721] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7653), 1, - anon_sym_DASH_GT, - ACTIONS(9676), 1, - anon_sym___attribute, - ACTIONS(9717), 1, - anon_sym_requires, - STATE(6190), 1, - sym_trailing_return_type, - ACTIONS(9705), 2, - anon_sym_final, - anon_sym_override, - STATE(5925), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6041), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9665), 5, + STATE(6088), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(5917), 3, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_GT2, - [250423] = 9, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(10699), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(10701), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [256748] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7653), 1, + ACTIONS(7357), 1, anon_sym_DASH_GT, - ACTIONS(9845), 1, - anon_sym___attribute, - ACTIONS(10856), 1, + ACTIONS(9550), 1, anon_sym_requires, - STATE(6191), 1, + STATE(5980), 1, sym_trailing_return_type, - ACTIONS(10628), 2, + ACTIONS(9488), 2, anon_sym_final, anon_sym_override, - STATE(5925), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6045), 2, + STATE(6132), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9843), 5, - anon_sym_COMMA, + ACTIONS(9371), 6, anon_sym_LPAREN2, - anon_sym___attribute__, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_GT2, - [250458] = 6, + anon_sym_EQ, + anon_sym_try, + [256781] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10680), 1, + ACTIONS(10726), 1, sym_identifier, - STATE(6144), 2, + STATE(6263), 2, sym_string_literal, sym_raw_string_literal, - STATE(7154), 2, + STATE(7425), 2, sym__string, sym_concatenated_string, ACTIONS(119), 5, @@ -499040,40 +507737,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [250487] = 8, + [256810] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7330), 1, - anon_sym_DASH_GT, - ACTIONS(7400), 1, - anon_sym_requires, - STATE(5927), 1, - sym_trailing_return_type, - ACTIONS(7335), 2, - anon_sym_final, - anon_sym_override, - STATE(5925), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6032), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9344), 6, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_try, - [250520] = 6, + ACTIONS(10726), 1, + sym_identifier, + STATE(6263), 2, + sym_string_literal, + sym_raw_string_literal, + STATE(7448), 2, + sym__string, + sym_concatenated_string, + ACTIONS(119), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(159), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [256839] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10680), 1, + ACTIONS(10726), 1, sym_identifier, - STATE(6144), 2, + STATE(6263), 2, sym_string_literal, sym_raw_string_literal, - STATE(7187), 2, + STATE(7364), 2, sym__string, sym_concatenated_string, ACTIONS(119), 5, @@ -499088,15 +507783,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [250549] = 6, + [256868] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10680), 1, + ACTIONS(10726), 1, sym_identifier, - STATE(6144), 2, + STATE(6263), 2, sym_string_literal, sym_raw_string_literal, - STATE(7308), 2, + STATE(7517), 2, sym__string, sym_concatenated_string, ACTIONS(119), 5, @@ -499111,40 +507806,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [250578] = 8, + [256897] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7330), 1, + ACTIONS(7357), 1, anon_sym_DASH_GT, - ACTIONS(7400), 1, + ACTIONS(7361), 1, anon_sym_requires, - STATE(5909), 1, + STATE(6016), 1, sym_trailing_return_type, - ACTIONS(7335), 2, + ACTIONS(7359), 2, anon_sym_final, anon_sym_override, - STATE(5925), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6012), 2, + STATE(6132), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9182), 6, + ACTIONS(9371), 6, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, anon_sym_try, - [250611] = 6, + [256930] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10680), 1, + ACTIONS(7357), 1, + anon_sym_DASH_GT, + ACTIONS(9742), 1, + anon_sym_requires, + STATE(5992), 1, + sym_trailing_return_type, + ACTIONS(9727), 2, + anon_sym_final, + anon_sym_override, + STATE(6017), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6133), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9689), 6, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_try, + [256963] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10726), 1, sym_identifier, - STATE(6144), 2, + STATE(6263), 2, sym_string_literal, sym_raw_string_literal, - STATE(7328), 2, + STATE(7555), 2, sym__string, sym_concatenated_string, ACTIONS(119), 5, @@ -499159,68 +507879,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [250640] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(10353), 1, - anon_sym_TILDE, - ACTIONS(10859), 1, - sym_identifier, - ACTIONS(10861), 1, - anon_sym_COLON_COLON, - ACTIONS(10863), 1, - anon_sym_template, - STATE(6285), 1, - sym__scope_resolution, - STATE(7745), 1, - sym_operator_name, - STATE(8601), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(3611), 4, - sym_template_method, - sym_destructor_name, - sym_dependent_field_identifier, - sym_qualified_field_identifier, - [250679] = 8, + [256992] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7322), 1, + ACTIONS(7357), 1, anon_sym_DASH_GT, - ACTIONS(7337), 1, + ACTIONS(10659), 1, anon_sym_requires, - STATE(6033), 1, + STATE(5983), 1, sym_trailing_return_type, - ACTIONS(7335), 2, + ACTIONS(10656), 2, anon_sym_final, anon_sym_override, - STATE(5925), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6032), 2, + STATE(6186), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9344), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(9945), 6, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_LBRACK, - [250712] = 6, + anon_sym_EQ, + anon_sym_try, + [257025] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10680), 1, + ACTIONS(10726), 1, sym_identifier, - STATE(6144), 2, + STATE(6263), 2, sym_string_literal, sym_raw_string_literal, - STATE(7416), 2, + STATE(7577), 2, sym__string, sym_concatenated_string, ACTIONS(119), 5, @@ -499235,41 +507927,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [250741] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7838), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - ACTIONS(10001), 1, - anon_sym_LBRACK, - ACTIONS(10867), 1, - anon_sym___asm, - STATE(2956), 1, - sym_parameter_list, - STATE(5979), 1, - sym__function_declarator_seq, - STATE(6341), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(10865), 7, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [250776] = 6, + [257054] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10680), 1, + ACTIONS(10726), 1, sym_identifier, - STATE(6144), 2, + STATE(6263), 2, sym_string_literal, sym_raw_string_literal, - STATE(7485), 2, + STATE(7669), 2, sym__string, sym_concatenated_string, ACTIONS(119), 5, @@ -499284,41 +507950,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [250805] = 9, + [257083] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7838), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - ACTIONS(9778), 1, - anon_sym_LBRACK, - ACTIONS(10871), 1, - anon_sym___attribute, - STATE(2863), 1, - sym_parameter_list, - STATE(6381), 1, - sym__function_declarator_seq, - STATE(6298), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(10869), 7, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [250840] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10680), 1, + ACTIONS(10726), 1, sym_identifier, - STATE(6144), 2, + STATE(6263), 2, sym_string_literal, sym_raw_string_literal, - STATE(7502), 2, + STATE(7280), 2, sym__string, sym_concatenated_string, ACTIONS(119), 5, @@ -499333,170 +507973,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [250869] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7322), 1, - anon_sym_DASH_GT, - ACTIONS(9328), 1, - anon_sym_requires, - STATE(6034), 1, - sym_trailing_return_type, - ACTIONS(9297), 2, - anon_sym_final, - anon_sym_override, - STATE(5925), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6012), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9182), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - [250902] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5012), 1, - anon_sym_LPAREN2, - ACTIONS(8131), 1, - anon_sym_LBRACK, - ACTIONS(8602), 1, - anon_sym_STAR, - ACTIONS(8604), 1, - anon_sym_AMP_AMP, - ACTIONS(8606), 1, - anon_sym_AMP, - STATE(3405), 1, - sym_parameter_list, - STATE(6087), 1, - sym__function_declarator_seq, - STATE(6779), 1, - sym__abstract_declarator, - ACTIONS(8306), 2, - anon_sym_LBRACE, - anon_sym_requires, - STATE(6092), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [250941] = 9, + [257112] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7838), 1, + ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(10001), 1, + ACTIONS(10071), 1, anon_sym_LBRACK, - ACTIONS(10875), 1, + ACTIONS(10935), 1, anon_sym___asm, - STATE(2956), 1, + STATE(2989), 1, sym_parameter_list, - STATE(5979), 1, + STATE(6203), 1, sym__function_declarator_seq, - STATE(6341), 2, + STATE(6081), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(10873), 7, + ACTIONS(10933), 7, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, anon_sym_LBRACE, anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [250976] = 9, + anon_sym_try, + [257147] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, + ACTIONS(7918), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(10001), 1, + ACTIONS(9806), 1, anon_sym_LBRACK, - ACTIONS(10840), 1, - anon_sym___asm, - STATE(2962), 1, + ACTIONS(10952), 1, + anon_sym___attribute, + STATE(2902), 1, sym_parameter_list, - STATE(5979), 1, + STATE(6468), 1, sym__function_declarator_seq, - STATE(5949), 2, + STATE(6430), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(10838), 7, + ACTIONS(10950), 7, anon_sym_COMMA, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, anon_sym_try, - [251011] = 11, + [257182] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1852), 1, + ACTIONS(1850), 1, anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(10228), 1, + ACTIONS(10200), 1, anon_sym_TILDE, - ACTIONS(10842), 1, + ACTIONS(10954), 1, sym_identifier, - ACTIONS(10877), 1, + ACTIONS(10956), 1, anon_sym_COLON_COLON, - ACTIONS(10879), 1, + ACTIONS(10958), 1, anon_sym_template, - STATE(6277), 1, + STATE(6446), 1, sym__scope_resolution, - STATE(7632), 1, + STATE(7753), 1, sym_operator_name, - STATE(8601), 3, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(2449), 4, + STATE(2553), 4, sym_template_method, sym_destructor_name, sym_dependent_field_identifier, sym_qualified_field_identifier, - [251050] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(5967), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(5914), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(10655), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(10657), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [251077] = 6, + [257221] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10680), 1, + ACTIONS(10726), 1, sym_identifier, - STATE(6144), 2, + STATE(6263), 2, sym_string_literal, sym_raw_string_literal, - STATE(8428), 2, + STATE(8618), 2, sym__string, sym_concatenated_string, ACTIONS(119), 5, @@ -499511,146 +508076,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [251106] = 9, + [257250] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7838), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9770), 1, + ACTIONS(7357), 1, + anon_sym_DASH_GT, + ACTIONS(7361), 1, + anon_sym_requires, + STATE(6015), 1, + sym_trailing_return_type, + ACTIONS(7359), 2, + anon_sym_final, + anon_sym_override, + STATE(6017), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6133), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9689), 6, anon_sym_LPAREN2, - ACTIONS(9778), 1, - anon_sym_LBRACK, - ACTIONS(10883), 1, - anon_sym___attribute, - STATE(2863), 1, - sym_parameter_list, - STATE(6381), 1, - sym__function_declarator_seq, - STATE(6298), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(10881), 7, - anon_sym_COMMA, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [251141] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - ACTIONS(10001), 1, anon_sym_LBRACK, - ACTIONS(10887), 1, - anon_sym___asm, - STATE(2962), 1, - sym_parameter_list, - STATE(5979), 1, - sym__function_declarator_seq, - STATE(5949), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(10885), 7, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, anon_sym_try, - [251176] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10889), 1, - sym_identifier, - ACTIONS(10891), 1, - aux_sym_preproc_if_token2, - ACTIONS(10893), 1, - aux_sym_preproc_else_token1, - ACTIONS(10895), 1, - aux_sym_preproc_elif_token1, - STATE(6411), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(6412), 1, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(6732), 1, - sym_enumerator, - ACTIONS(10897), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(8202), 3, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - sym_preproc_elifdef_in_enumerator_list, - STATE(8213), 3, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - sym_preproc_elifdef_in_enumerator_list_no_comma, - [251215] = 9, + [257283] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, + ACTIONS(7918), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(10001), 1, + ACTIONS(9806), 1, anon_sym_LBRACK, - ACTIONS(10867), 1, - anon_sym___asm, - STATE(2962), 1, + ACTIONS(10962), 1, + anon_sym___attribute, + STATE(2902), 1, sym_parameter_list, - STATE(5979), 1, + STATE(6468), 1, sym__function_declarator_seq, - STATE(5949), 2, + STATE(6430), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(10865), 7, + ACTIONS(10960), 7, anon_sym_COMMA, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, anon_sym_try, - [251250] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7322), 1, - anon_sym_DASH_GT, - ACTIONS(9714), 1, - anon_sym_requires, - STATE(6064), 1, - sym_trailing_return_type, - ACTIONS(9705), 2, - anon_sym_final, - anon_sym_override, - STATE(5925), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6041), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9665), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - [251283] = 6, + [257318] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10680), 1, + ACTIONS(10726), 1, sym_identifier, - STATE(6144), 2, + STATE(6263), 2, sym_string_literal, sym_raw_string_literal, - STATE(7557), 2, + STATE(8068), 2, sym__string, sym_concatenated_string, ACTIONS(119), 5, @@ -499665,66 +508150,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [251312] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7838), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - ACTIONS(9778), 1, - anon_sym_LBRACK, - ACTIONS(10901), 1, - anon_sym___attribute, - STATE(2863), 1, - sym_parameter_list, - STATE(6381), 1, - sym__function_declarator_seq, - STATE(6298), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(10899), 7, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [251347] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7330), 1, - anon_sym_DASH_GT, - ACTIONS(9300), 1, - anon_sym_requires, - STATE(5932), 1, - sym_trailing_return_type, - ACTIONS(9297), 2, - anon_sym_final, - anon_sym_override, - STATE(5925), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6012), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9182), 6, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_try, - [251380] = 6, + [257347] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10680), 1, + ACTIONS(10726), 1, sym_identifier, - STATE(6144), 2, + STATE(6263), 2, sym_string_literal, sym_raw_string_literal, - STATE(7366), 2, + STATE(8193), 2, sym__string, sym_concatenated_string, ACTIONS(119), 5, @@ -499739,97 +508173,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [251409] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7838), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - ACTIONS(10001), 1, - anon_sym_LBRACK, - ACTIONS(10905), 1, - anon_sym___asm, - STATE(2956), 1, - sym_parameter_list, - STATE(5979), 1, - sym__function_declarator_seq, - STATE(6341), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(10903), 7, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [251444] = 11, + [257376] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(10889), 1, - sym_identifier, - ACTIONS(10893), 1, - aux_sym_preproc_else_token1, - ACTIONS(10895), 1, - aux_sym_preproc_elif_token1, - ACTIONS(10907), 1, - aux_sym_preproc_if_token2, - STATE(6427), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(6428), 1, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(6732), 1, - sym_enumerator, - ACTIONS(10897), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(8504), 3, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - sym_preproc_elifdef_in_enumerator_list, - STATE(8573), 3, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - sym_preproc_elifdef_in_enumerator_list_no_comma, - [251483] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10889), 1, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(10248), 1, + anon_sym_TILDE, + ACTIONS(10788), 1, sym_identifier, - ACTIONS(10893), 1, - aux_sym_preproc_else_token1, - ACTIONS(10895), 1, - aux_sym_preproc_elif_token1, - ACTIONS(10909), 1, - aux_sym_preproc_if_token2, - STATE(6494), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(6496), 1, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(6732), 1, - sym_enumerator, - ACTIONS(10897), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(8523), 3, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - sym_preproc_elifdef_in_enumerator_list, - STATE(8524), 3, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - sym_preproc_elifdef_in_enumerator_list_no_comma, - [251522] = 6, + ACTIONS(10793), 1, + anon_sym_COLON_COLON, + ACTIONS(10795), 1, + anon_sym_template, + STATE(6406), 1, + sym__scope_resolution, + STATE(7928), 1, + sym_operator_name, + STATE(8569), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(3501), 4, + sym_template_method, + sym_destructor_name, + sym_dependent_field_identifier, + sym_qualified_field_identifier, + [257415] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10680), 1, + ACTIONS(10726), 1, sym_identifier, - STATE(6144), 2, + STATE(6263), 2, sym_string_literal, sym_raw_string_literal, - STATE(7954), 2, + STATE(8266), 2, sym__string, sym_concatenated_string, ACTIONS(119), 5, @@ -499844,15 +508224,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [251551] = 6, + [257444] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10680), 1, + ACTIONS(10726), 1, sym_identifier, - STATE(6144), 2, + STATE(6263), 2, sym_string_literal, sym_raw_string_literal, - STATE(8078), 2, + STATE(8708), 2, sym__string, sym_concatenated_string, ACTIONS(119), 5, @@ -499867,15 +508247,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [251580] = 6, + [257473] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10680), 1, + ACTIONS(10726), 1, sym_identifier, - STATE(6144), 2, + STATE(6263), 2, sym_string_literal, sym_raw_string_literal, - STATE(8151), 2, + STATE(8329), 2, sym__string, sym_concatenated_string, ACTIONS(119), 5, @@ -499890,15 +508270,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [251609] = 6, + [257502] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10680), 1, + ACTIONS(10726), 1, sym_identifier, - STATE(6144), 2, + STATE(6263), 2, sym_string_literal, sym_raw_string_literal, - STATE(8204), 2, + STATE(8375), 2, sym__string, sym_concatenated_string, ACTIONS(119), 5, @@ -499913,301 +508293,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [251638] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10889), 1, - sym_identifier, - ACTIONS(10893), 1, - aux_sym_preproc_else_token1, - ACTIONS(10895), 1, - aux_sym_preproc_elif_token1, - ACTIONS(10911), 1, - aux_sym_preproc_if_token2, - STATE(6514), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(6523), 1, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(6732), 1, - sym_enumerator, - ACTIONS(10897), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(8472), 3, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - sym_preproc_elifdef_in_enumerator_list_no_comma, - STATE(8837), 3, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - sym_preproc_elifdef_in_enumerator_list, - [251677] = 8, + [257531] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7322), 1, + ACTIONS(7357), 1, anon_sym_DASH_GT, - ACTIONS(7337), 1, + ACTIONS(7361), 1, anon_sym_requires, - STATE(6042), 1, + STATE(6010), 1, sym_trailing_return_type, - ACTIONS(7335), 2, + ACTIONS(7359), 2, anon_sym_final, anon_sym_override, - STATE(5925), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6041), 2, + STATE(6186), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9665), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(9945), 6, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_LBRACK, - [251710] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10680), 1, - sym_identifier, - STATE(6144), 2, - sym_string_literal, - sym_raw_string_literal, - STATE(8250), 2, - sym__string, - sym_concatenated_string, - ACTIONS(119), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(159), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [251739] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10680), 1, - sym_identifier, - STATE(6144), 2, - sym_string_literal, - sym_raw_string_literal, - STATE(7201), 2, - sym__string, - sym_concatenated_string, - ACTIONS(119), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(159), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [251768] = 11, + anon_sym_EQ, + anon_sym_try, + [257564] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1852), 1, + ACTIONS(1850), 1, anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(10275), 1, + ACTIONS(10200), 1, anon_sym_TILDE, - ACTIONS(10714), 1, + ACTIONS(10954), 1, sym_identifier, - ACTIONS(10719), 1, + ACTIONS(10964), 1, anon_sym_COLON_COLON, - ACTIONS(10721), 1, + ACTIONS(10966), 1, anon_sym_template, - STATE(6350), 1, + STATE(6447), 1, sym__scope_resolution, - STATE(7892), 1, + STATE(7806), 1, sym_operator_name, - STATE(8601), 3, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(3441), 4, + STATE(2553), 4, sym_template_method, sym_destructor_name, sym_dependent_field_identifier, sym_qualified_field_identifier, - [251807] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - ACTIONS(10001), 1, - anon_sym_LBRACK, - ACTIONS(10875), 1, - anon_sym___asm, - STATE(2962), 1, - sym_parameter_list, - STATE(5979), 1, - sym__function_declarator_seq, - STATE(5949), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(10873), 7, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_try, - [251842] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - ACTIONS(10001), 1, - anon_sym_LBRACK, - ACTIONS(10905), 1, - anon_sym___asm, - STATE(2962), 1, - sym_parameter_list, - STATE(5979), 1, - sym__function_declarator_seq, - STATE(5949), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(10903), 7, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_try, - [251877] = 8, + [257603] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7322), 1, + ACTIONS(7424), 1, anon_sym_DASH_GT, - ACTIONS(9498), 1, + ACTIONS(7447), 1, anon_sym_requires, - STATE(6063), 1, + STATE(6115), 1, sym_trailing_return_type, - ACTIONS(9495), 2, + ACTIONS(7359), 2, anon_sym_final, anon_sym_override, - STATE(5925), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6032), 2, + STATE(6186), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9344), 6, + ACTIONS(9945), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_LBRACK, - [251910] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10680), 1, - sym_identifier, - STATE(6144), 2, - sym_string_literal, - sym_raw_string_literal, - STATE(7252), 2, - sym__string, - sym_concatenated_string, - ACTIONS(119), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(159), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [251939] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7838), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - ACTIONS(10001), 1, - anon_sym_LBRACK, - ACTIONS(10887), 1, - anon_sym___asm, - STATE(2956), 1, - sym_parameter_list, - STATE(5979), 1, - sym__function_declarator_seq, - STATE(6341), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(10885), 7, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [251974] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(8081), 1, - anon_sym_COLON_COLON, - ACTIONS(8679), 1, - anon_sym_LBRACE, - ACTIONS(9615), 1, - sym_identifier, - STATE(1893), 1, - sym_template_type, - STATE(4577), 1, - sym_enumerator_list, - STATE(6615), 1, - sym__scope_resolution, - ACTIONS(10913), 2, - anon_sym_class, - anon_sym_struct, - STATE(4949), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(8601), 2, - sym_decltype, - sym_dependent_type_identifier, - [252014] = 7, + [257636] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(10733), 1, + ACTIONS(10752), 1, anon_sym_LBRACK, - ACTIONS(10767), 1, + ACTIONS(10762), 1, anon_sym___attribute, - STATE(3007), 1, + STATE(3112), 1, sym_parameter_list, - STATE(5813), 1, + STATE(5959), 1, sym__function_declarator_seq, - ACTIONS(10765), 9, + ACTIONS(10760), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym___attribute__, @@ -500217,1253 +508394,980 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [252044] = 11, + [257666] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(894), 1, - anon_sym_LBRACE, - ACTIONS(8093), 1, + ACTIONS(8123), 1, anon_sym_LBRACK, - ACTIONS(10915), 1, + ACTIONS(10666), 1, + anon_sym_LBRACE, + ACTIONS(10968), 1, anon_sym_SEMI, - ACTIONS(10917), 1, + ACTIONS(10970), 1, anon_sym_COLON, - ACTIONS(10919), 1, + ACTIONS(10972), 1, anon_sym_EQ, - ACTIONS(10921), 1, + ACTIONS(10974), 1, anon_sym_try, - STATE(696), 1, + STATE(2108), 1, sym_compound_statement, - STATE(7585), 1, + STATE(7964), 1, sym_field_initializer_list, - ACTIONS(5036), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(650), 4, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - sym_pure_virtual_clause, - [252082] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7549), 1, - anon_sym_DASH_GT, - ACTIONS(7551), 1, - anon_sym_requires, - STATE(6229), 1, - sym_trailing_return_type, - ACTIONS(7335), 2, - anon_sym_final, - anon_sym_override, - STATE(5925), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6032), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9344), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_GT2, - [252114] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - ACTIONS(10733), 1, - anon_sym_LBRACK, - ACTIONS(10743), 1, - anon_sym___attribute, - STATE(3007), 1, - sym_parameter_list, - STATE(5813), 1, - sym__function_declarator_seq, - ACTIONS(10741), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [252144] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7549), 1, - anon_sym_DASH_GT, - ACTIONS(7551), 1, - anon_sym_requires, - STATE(6239), 1, - sym_trailing_return_type, - ACTIONS(7335), 2, - anon_sym_final, - anon_sym_override, - STATE(5925), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6041), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9665), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_GT2, - [252176] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7549), 1, - anon_sym_DASH_GT, - ACTIONS(7551), 1, - anon_sym_requires, - STATE(6253), 1, - sym_trailing_return_type, - ACTIONS(7335), 2, - anon_sym_final, - anon_sym_override, - STATE(5925), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6045), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9843), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_GT2, - [252208] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(5987), 1, - anon_sym_LBRACE, - ACTIONS(9384), 1, - anon_sym_COLON_COLON, - ACTIONS(9640), 1, - sym_identifier, - STATE(1945), 1, - sym_template_type, - STATE(2200), 1, - sym_enumerator_list, - STATE(6580), 1, - sym__scope_resolution, - ACTIONS(10923), 2, - anon_sym_class, - anon_sym_struct, - STATE(2528), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(8601), 2, - sym_decltype, - sym_dependent_type_identifier, - [252248] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(6850), 1, - anon_sym_LBRACE, - ACTIONS(9440), 1, - anon_sym_COLON_COLON, - ACTIONS(9632), 1, - sym_identifier, - STATE(2669), 1, - sym_template_type, - STATE(2852), 1, - sym_enumerator_list, - STATE(6620), 1, - sym__scope_resolution, - ACTIONS(10925), 2, - anon_sym_class, - anon_sym_struct, - STATE(2671), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(8601), 2, - sym_decltype, - sym_dependent_type_identifier, - [252288] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(3907), 1, - anon_sym_COLON_COLON, - ACTIONS(9615), 1, - sym_identifier, - STATE(1893), 1, - sym_template_type, - STATE(6572), 1, - sym_access_specifier, - STATE(6599), 1, - sym__scope_resolution, - STATE(7548), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(8601), 2, - sym_decltype, - sym_dependent_type_identifier, - ACTIONS(10612), 3, - anon_sym_private, - anon_sym_public, - anon_sym_protected, - [252326] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5012), 1, + ACTIONS(5044), 2, anon_sym_LPAREN2, - ACTIONS(8131), 1, - anon_sym_LBRACK, - ACTIONS(8306), 1, - anon_sym_COLON, - ACTIONS(8685), 1, - anon_sym_STAR, - ACTIONS(8687), 1, - anon_sym_AMP_AMP, - ACTIONS(8689), 1, - anon_sym_AMP, - STATE(3485), 1, - sym_parameter_list, - STATE(6087), 1, - sym__function_declarator_seq, - STATE(6863), 1, - sym__abstract_declarator, - STATE(6092), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [252364] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(6971), 1, - anon_sym_LBRACE, - ACTIONS(8055), 1, - anon_sym_COLON_COLON, - ACTIONS(9623), 1, - sym_identifier, - STATE(1893), 1, - sym_template_type, - STATE(3608), 1, - sym_enumerator_list, - STATE(6592), 1, - sym__scope_resolution, - ACTIONS(10927), 2, - anon_sym_class, - anon_sym_struct, - STATE(6512), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(8601), 2, - sym_decltype, - sym_dependent_type_identifier, - [252404] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6066), 1, - anon_sym___asm, - ACTIONS(7838), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - ACTIONS(10614), 1, - anon_sym_LBRACK, - STATE(6056), 1, - sym_parameter_list, - STATE(6308), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6068), 7, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [252436] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(3907), 1, - anon_sym_COLON_COLON, - ACTIONS(9615), 1, - sym_identifier, - STATE(1893), 1, - sym_template_type, - STATE(6527), 1, - sym_access_specifier, - STATE(6599), 1, - sym__scope_resolution, - STATE(7068), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(8601), 2, - sym_decltype, - sym_dependent_type_identifier, - ACTIONS(10612), 3, - anon_sym_private, - anon_sym_public, - anon_sym_protected, - [252474] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(8021), 1, - anon_sym_COLON_COLON, - ACTIONS(8991), 1, - anon_sym_LBRACE, - ACTIONS(9619), 1, - sym_identifier, - STATE(4376), 1, - sym_template_type, - STATE(4856), 1, - sym_enumerator_list, - STATE(6632), 1, - sym__scope_resolution, - ACTIONS(10929), 2, - anon_sym_class, - anon_sym_struct, - STATE(4503), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(8601), 2, - sym_decltype, - sym_dependent_type_identifier, - [252514] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9193), 1, - anon_sym___attribute, - ACTIONS(9341), 1, - anon_sym_requires, - ACTIONS(9297), 2, - anon_sym_final, - anon_sym_override, - STATE(5925), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6012), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9182), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_GT2, - [252544] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9355), 1, - anon_sym___attribute, - ACTIONS(9629), 1, - anon_sym_requires, - ACTIONS(9495), 2, - anon_sym_final, - anon_sym_override, - STATE(5925), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6032), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9344), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_GT2, - [252574] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9676), 1, - anon_sym___attribute, - ACTIONS(9717), 1, - anon_sym_requires, - ACTIONS(9705), 2, - anon_sym_final, - anon_sym_override, - STATE(5925), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6041), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9665), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_GT2, - [252604] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9845), 1, - anon_sym___attribute, - ACTIONS(10856), 1, - anon_sym_requires, - ACTIONS(10628), 2, - anon_sym_final, - anon_sym_override, - STATE(5925), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6045), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9843), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_GT2, - [252634] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9849), 1, - anon_sym___attribute, - ACTIONS(10931), 1, - anon_sym_requires, - ACTIONS(10616), 2, - anon_sym_final, - anon_sym_override, - STATE(5925), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6048), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9847), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_GT2, - [252664] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(6186), 1, - anon_sym_LBRACE, - ACTIONS(9424), 1, - anon_sym_COLON_COLON, - ACTIONS(9642), 1, - sym_identifier, - STATE(1816), 1, - sym_template_type, - STATE(2335), 1, - sym_enumerator_list, - STATE(6626), 1, - sym__scope_resolution, - ACTIONS(10934), 2, - anon_sym_class, - anon_sym_struct, - STATE(3877), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(8601), 2, - sym_decltype, - sym_dependent_type_identifier, - [252704] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(7951), 1, - anon_sym_LBRACE, - ACTIONS(9578), 1, - anon_sym_COLON_COLON, - ACTIONS(9638), 1, - sym_identifier, - STATE(3681), 1, - sym_template_type, - STATE(3942), 1, - sym_enumerator_list, - STATE(6634), 1, - sym__scope_resolution, - ACTIONS(10936), 2, - anon_sym_class, - anon_sym_struct, - STATE(3576), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(8601), 2, - sym_decltype, - sym_dependent_type_identifier, - [252744] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(6186), 1, - anon_sym_LBRACE, - ACTIONS(7990), 1, - anon_sym_COLON_COLON, - ACTIONS(9636), 1, - sym_identifier, - STATE(1816), 1, - sym_template_type, - STATE(5146), 1, - sym_enumerator_list, - STATE(6593), 1, - sym__scope_resolution, - ACTIONS(10938), 2, - anon_sym_class, - anon_sym_struct, - STATE(4846), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(8601), 2, - sym_decltype, - sym_dependent_type_identifier, - [252784] = 8, + STATE(2109), 4, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + sym_pure_virtual_clause, + [257704] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6038), 1, + ACTIONS(7538), 1, + anon_sym_requires, + ACTIONS(9150), 1, anon_sym___attribute, - ACTIONS(6046), 1, - anon_sym_LBRACK, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - STATE(2298), 1, - sym_parameter_list, - STATE(6307), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6040), 7, + ACTIONS(7359), 2, + anon_sym_final, + anon_sym_override, + STATE(6017), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6149), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9139), 6, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, + anon_sym_LPAREN2, anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACK, - anon_sym_try, - [252816] = 7, + anon_sym_LBRACK, + anon_sym_GT2, + [257734] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7551), 1, + ACTIONS(7538), 1, anon_sym_requires, - ACTIONS(9193), 1, + ACTIONS(9382), 1, anon_sym___attribute, - ACTIONS(7335), 2, + ACTIONS(7359), 2, anon_sym_final, anon_sym_override, - STATE(5925), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6012), 2, + STATE(6132), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9182), 6, + ACTIONS(9371), 6, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym___attribute__, anon_sym_LBRACK, anon_sym_GT2, - [252846] = 7, + [257764] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7388), 1, + ACTIONS(7538), 1, anon_sym_requires, - ACTIONS(9849), 1, - anon_sym_LBRACK, - ACTIONS(6020), 2, + ACTIONS(9700), 1, + anon_sym___attribute, + ACTIONS(7359), 2, anon_sym_final, anon_sym_override, - STATE(5606), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5836), 2, + STATE(6133), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9847), 6, - anon_sym_RPAREN, + ACTIONS(9689), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_try, - [252876] = 7, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_GT2, + [257794] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7388), 1, + ACTIONS(7538), 1, anon_sym_requires, - ACTIONS(9676), 1, - anon_sym_LBRACK, - ACTIONS(6020), 2, + ACTIONS(9947), 1, + anon_sym___attribute, + ACTIONS(7359), 2, anon_sym_final, anon_sym_override, - STATE(5606), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5876), 2, + STATE(6186), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9665), 6, - anon_sym_RPAREN, + ACTIONS(9945), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_try, - [252906] = 9, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_GT2, + [257824] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7301), 1, + ACTIONS(7538), 1, anon_sym_requires, - ACTIONS(7745), 1, - anon_sym_DASH_GT, - ACTIONS(9193), 1, - anon_sym_LBRACK, - STATE(5453), 1, - sym_trailing_return_type, - ACTIONS(6020), 2, + ACTIONS(9951), 1, + anon_sym___attribute, + ACTIONS(7359), 2, anon_sym_final, anon_sym_override, - STATE(5606), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5877), 2, + STATE(6190), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9182), 4, + ACTIONS(9949), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - [252940] = 9, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_GT2, + [257854] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7301), 1, - anon_sym_requires, - ACTIONS(7745), 1, + ACTIONS(7536), 1, anon_sym_DASH_GT, - ACTIONS(9355), 1, - anon_sym_LBRACK, - STATE(5418), 1, + ACTIONS(7538), 1, + anon_sym_requires, + STATE(6295), 1, sym_trailing_return_type, - ACTIONS(6020), 2, + ACTIONS(7359), 2, anon_sym_final, anon_sym_override, - STATE(5606), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5839), 2, + STATE(6149), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9344), 4, + ACTIONS(9139), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - [252974] = 9, + anon_sym_LBRACK, + anon_sym_GT2, + [257886] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7301), 1, - anon_sym_requires, - ACTIONS(7745), 1, + ACTIONS(7536), 1, anon_sym_DASH_GT, - ACTIONS(9676), 1, - anon_sym_LBRACK, - STATE(5419), 1, + ACTIONS(7538), 1, + anon_sym_requires, + STATE(6296), 1, sym_trailing_return_type, - ACTIONS(6020), 2, + ACTIONS(7359), 2, anon_sym_final, anon_sym_override, - STATE(5606), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5876), 2, + STATE(6132), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9665), 4, + ACTIONS(9371), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - [253008] = 9, + anon_sym_LBRACK, + anon_sym_GT2, + [257918] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7301), 1, - anon_sym_requires, - ACTIONS(7745), 1, + ACTIONS(7536), 1, anon_sym_DASH_GT, - ACTIONS(9845), 1, - anon_sym_LBRACK, - STATE(5420), 1, + ACTIONS(7538), 1, + anon_sym_requires, + STATE(6297), 1, sym_trailing_return_type, - ACTIONS(6020), 2, + ACTIONS(7359), 2, anon_sym_final, anon_sym_override, - STATE(5606), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5846), 2, + STATE(6133), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9843), 4, + ACTIONS(9689), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - [253042] = 9, + anon_sym_LBRACK, + anon_sym_GT2, + [257950] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7745), 1, + ACTIONS(7536), 1, anon_sym_DASH_GT, - ACTIONS(9193), 1, - anon_sym_LBRACK, - ACTIONS(9281), 1, + ACTIONS(7538), 1, anon_sym_requires, - STATE(5447), 1, + STATE(6298), 1, sym_trailing_return_type, - ACTIONS(9195), 2, + ACTIONS(7359), 2, anon_sym_final, anon_sym_override, - STATE(5606), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5877), 2, + STATE(6186), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9182), 4, + ACTIONS(9945), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK, + anon_sym_GT2, + [257982] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8123), 1, + anon_sym_LBRACK, + ACTIONS(10674), 1, anon_sym_LBRACE, + ACTIONS(10970), 1, + anon_sym_COLON, + ACTIONS(10976), 1, + anon_sym_SEMI, + ACTIONS(10978), 1, anon_sym_EQ, - [253076] = 9, + ACTIONS(10980), 1, + anon_sym_try, + STATE(1763), 1, + sym_compound_statement, + STATE(7906), 1, + sym_field_initializer_list, + ACTIONS(5044), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(1764), 4, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + sym_pure_virtual_clause, + [258020] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7745), 1, - anon_sym_DASH_GT, - ACTIONS(9355), 1, - anon_sym_LBRACK, - ACTIONS(9376), 1, + ACTIONS(9150), 1, + anon_sym___attribute, + ACTIONS(9384), 1, anon_sym_requires, - STATE(5448), 1, - sym_trailing_return_type, - ACTIONS(9357), 2, + ACTIONS(9327), 2, anon_sym_final, anon_sym_override, - STATE(5606), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5839), 2, + STATE(6149), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9344), 4, + ACTIONS(9139), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - [253110] = 9, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_GT2, + [258050] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7745), 1, - anon_sym_DASH_GT, - ACTIONS(9676), 1, - anon_sym_LBRACK, - ACTIONS(9696), 1, + ACTIONS(9382), 1, + anon_sym___attribute, + ACTIONS(9651), 1, anon_sym_requires, - STATE(5450), 1, - sym_trailing_return_type, - ACTIONS(9681), 2, + ACTIONS(9488), 2, anon_sym_final, anon_sym_override, - STATE(5606), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5876), 2, + STATE(6132), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9665), 4, + ACTIONS(9371), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - [253144] = 9, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_GT2, + [258080] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7745), 1, - anon_sym_DASH_GT, - ACTIONS(9845), 1, - anon_sym_LBRACK, - ACTIONS(9922), 1, + ACTIONS(9700), 1, + anon_sym___attribute, + ACTIONS(9745), 1, anon_sym_requires, - STATE(5452), 1, - sym_trailing_return_type, - ACTIONS(9919), 2, + ACTIONS(9727), 2, anon_sym_final, anon_sym_override, - STATE(5606), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5846), 2, + STATE(6133), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9843), 4, + ACTIONS(9689), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - [253178] = 7, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_GT2, + [258110] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7551), 1, - anon_sym_requires, - ACTIONS(9355), 1, + ACTIONS(9947), 1, anon_sym___attribute, - ACTIONS(7335), 2, + ACTIONS(10943), 1, + anon_sym_requires, + ACTIONS(10656), 2, anon_sym_final, anon_sym_override, - STATE(5925), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6032), 2, + STATE(6186), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9344), 6, + ACTIONS(9945), 6, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym___attribute__, anon_sym_LBRACK, anon_sym_GT2, - [253208] = 12, + [258140] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(9951), 1, anon_sym___attribute, + ACTIONS(10982), 1, + anon_sym_requires, + ACTIONS(10646), 2, + anon_sym_final, + anon_sym_override, + STATE(6017), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6190), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9949), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_GT2, + [258170] = 13, + ACTIONS(3), 1, + sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7147), 1, - anon_sym___attribute__, - ACTIONS(9770), 1, + ACTIONS(113), 1, + anon_sym___asm, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(10001), 1, + ACTIONS(10063), 1, + anon_sym_COMMA, + ACTIONS(10071), 1, anon_sym_LBRACK, - ACTIONS(10942), 1, - anon_sym_EQ, - STATE(2981), 1, + ACTIONS(10644), 1, + anon_sym_SEMI, + STATE(3108), 1, sym_parameter_list, - STATE(5979), 1, + STATE(6203), 1, sym__function_declarator_seq, - ACTIONS(10940), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(5949), 2, + STATE(7456), 1, + sym_gnu_asm_expression, + STATE(7457), 1, + aux_sym_declaration_repeat1, + ACTIONS(10075), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6081), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6759), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [253248] = 8, + [258212] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7549), 1, + ACTIONS(7536), 1, anon_sym_DASH_GT, - ACTIONS(9341), 1, + ACTIONS(9384), 1, anon_sym_requires, - STATE(6188), 1, + STATE(6305), 1, sym_trailing_return_type, - ACTIONS(9297), 2, + ACTIONS(9327), 2, anon_sym_final, anon_sym_override, - STATE(5925), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6012), 2, + STATE(6149), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9182), 5, + ACTIONS(9139), 5, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_GT2, - [253280] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6178), 1, - anon_sym_LBRACK, - ACTIONS(10944), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(6180), 11, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_or, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [253304] = 8, + [258244] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7549), 1, + ACTIONS(7536), 1, anon_sym_DASH_GT, - ACTIONS(9629), 1, + ACTIONS(9651), 1, anon_sym_requires, - STATE(6189), 1, + STATE(6306), 1, sym_trailing_return_type, - ACTIONS(9495), 2, + ACTIONS(9488), 2, anon_sym_final, anon_sym_override, - STATE(5925), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6032), 2, + STATE(6132), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9344), 5, + ACTIONS(9371), 5, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_GT2, - [253336] = 8, + [258276] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7549), 1, + ACTIONS(7536), 1, anon_sym_DASH_GT, - ACTIONS(9717), 1, + ACTIONS(9745), 1, anon_sym_requires, - STATE(6190), 1, + STATE(6307), 1, sym_trailing_return_type, - ACTIONS(9705), 2, + ACTIONS(9727), 2, anon_sym_final, anon_sym_override, - STATE(5925), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6041), 2, + STATE(6133), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9665), 5, + ACTIONS(9689), 5, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_GT2, - [253368] = 8, + [258308] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7549), 1, + ACTIONS(7536), 1, anon_sym_DASH_GT, - ACTIONS(10856), 1, + ACTIONS(10943), 1, anon_sym_requires, - STATE(6191), 1, + STATE(6308), 1, sym_trailing_return_type, - ACTIONS(10628), 2, + ACTIONS(10656), 2, anon_sym_final, anon_sym_override, - STATE(5925), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6045), 2, + STATE(6186), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9843), 5, + ACTIONS(9945), 5, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_GT2, - [253400] = 11, + [258340] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(113), 1, + anon_sym___asm, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(10063), 1, + anon_sym_COMMA, + ACTIONS(10071), 1, + anon_sym_LBRACK, + ACTIONS(10985), 1, + anon_sym_SEMI, + STATE(3108), 1, + sym_parameter_list, + STATE(6203), 1, + sym__function_declarator_seq, + STATE(7329), 1, + sym_gnu_asm_expression, + STATE(7330), 1, + aux_sym_declaration_repeat1, + ACTIONS(10075), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6081), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [258382] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(8093), 1, + ACTIONS(8123), 1, anon_sym_LBRACK, - ACTIONS(10917), 1, + ACTIONS(10674), 1, + anon_sym_LBRACE, + ACTIONS(10970), 1, anon_sym_COLON, - ACTIONS(10946), 1, + ACTIONS(10978), 1, + anon_sym_EQ, + ACTIONS(10980), 1, + anon_sym_try, + ACTIONS(10987), 1, anon_sym_SEMI, - ACTIONS(10948), 1, + STATE(1785), 1, + sym_compound_statement, + STATE(7944), 1, + sym_field_initializer_list, + ACTIONS(5044), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(1786), 4, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + sym_pure_virtual_clause, + [258420] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(866), 1, anon_sym_LBRACE, - ACTIONS(10950), 1, + ACTIONS(8123), 1, + anon_sym_LBRACK, + ACTIONS(10970), 1, + anon_sym_COLON, + ACTIONS(10989), 1, + anon_sym_SEMI, + ACTIONS(10991), 1, anon_sym_EQ, - ACTIONS(10952), 1, + ACTIONS(10993), 1, anon_sym_try, - STATE(2031), 1, + STATE(772), 1, sym_compound_statement, - STATE(7886), 1, + STATE(7780), 1, sym_field_initializer_list, - ACTIONS(5036), 2, + ACTIONS(5044), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(2032), 4, + STATE(773), 4, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, sym_pure_virtual_clause, - [253438] = 12, + [258458] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(6729), 1, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(10071), 1, + anon_sym_LBRACK, + ACTIONS(10899), 1, + anon_sym___asm, + STATE(3108), 1, + sym_parameter_list, + STATE(6203), 1, + sym__function_declarator_seq, + STATE(6081), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(10897), 6, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(9406), 1, - anon_sym_COLON_COLON, - ACTIONS(9644), 1, - sym_identifier, - STATE(2567), 1, - sym_template_type, - STATE(2614), 1, - sym_enumerator_list, - STATE(6594), 1, - sym__scope_resolution, - ACTIONS(10954), 2, - anon_sym_class, - anon_sym_struct, - STATE(4035), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(8601), 2, - sym_decltype, - sym_dependent_type_identifier, - [253478] = 8, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [258492] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6133), 1, - anon_sym___asm, - ACTIONS(7838), 1, + ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(10614), 1, + ACTIONS(10071), 1, anon_sym_LBRACK, - STATE(6056), 1, + ACTIONS(10895), 1, + anon_sym___asm, + STATE(3108), 1, sym_parameter_list, - STATE(6308), 2, + STATE(6203), 1, + sym__function_declarator_seq, + STATE(6081), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(6135), 7, + ACTIONS(10893), 6, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, anon_sym_LBRACE, - anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [253510] = 11, + anon_sym_try, + [258526] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(8093), 1, + ACTIONS(57), 1, + anon_sym_LBRACE, + ACTIONS(8123), 1, anon_sym_LBRACK, - ACTIONS(10917), 1, + ACTIONS(10970), 1, anon_sym_COLON, - ACTIONS(10956), 1, + ACTIONS(10995), 1, anon_sym_SEMI, - ACTIONS(10958), 1, - anon_sym_LBRACE, - ACTIONS(10960), 1, + ACTIONS(10997), 1, anon_sym_EQ, - ACTIONS(10962), 1, + ACTIONS(10999), 1, anon_sym_try, - STATE(2119), 1, + STATE(650), 1, sym_compound_statement, - STATE(7791), 1, + STATE(7881), 1, sym_field_initializer_list, - ACTIONS(5036), 2, + ACTIONS(5044), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(2121), 4, + STATE(503), 4, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, sym_pure_virtual_clause, - [253548] = 11, + [258564] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8093), 1, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(10071), 1, anon_sym_LBRACK, - ACTIONS(10917), 1, - anon_sym_COLON, - ACTIONS(10964), 1, + ACTIONS(10903), 1, + anon_sym___asm, + STATE(3108), 1, + sym_parameter_list, + STATE(6203), 1, + sym__function_declarator_seq, + STATE(6081), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(10901), 6, + anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(10966), 1, anon_sym_LBRACE, - ACTIONS(10968), 1, - anon_sym_EQ, - ACTIONS(10970), 1, + anon_sym_asm, + anon_sym___asm__, anon_sym_try, - STATE(1796), 1, - sym_compound_statement, - STATE(7674), 1, - sym_field_initializer_list, - ACTIONS(5036), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(1797), 4, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - sym_pure_virtual_clause, - [253586] = 8, + [258598] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6046), 1, - anon_sym_LBRACK, - ACTIONS(6133), 1, - anon_sym___attribute, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - STATE(2298), 1, + ACTIONS(10071), 1, + anon_sym_LBRACK, + ACTIONS(10935), 1, + anon_sym___asm, + STATE(3108), 1, sym_parameter_list, - STATE(6307), 2, + STATE(6203), 1, + sym__function_declarator_seq, + STATE(6081), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(6135), 7, + ACTIONS(10933), 6, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_LBRACE, - anon_sym_RBRACK, + anon_sym_asm, + anon_sym___asm__, anon_sym_try, - [253618] = 7, + [258632] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(10733), 1, + ACTIONS(10071), 1, anon_sym_LBRACK, - ACTIONS(10747), 1, - anon_sym___attribute, - STATE(3007), 1, + ACTIONS(10907), 1, + anon_sym___asm, + STATE(3108), 1, sym_parameter_list, - STATE(5813), 1, + STATE(6203), 1, sym__function_declarator_seq, - ACTIONS(10745), 9, + STATE(6081), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(10905), 6, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [253648] = 12, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [258666] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5020), 1, + ACTIONS(6801), 1, + anon_sym_LBRACE, + ACTIONS(9580), 1, anon_sym_COLON_COLON, - ACTIONS(6971), 1, + ACTIONS(9656), 1, + sym_identifier, + STATE(2673), 1, + sym_template_type, + STATE(2808), 1, + sym_enumerator_list, + STATE(6713), 1, + sym__scope_resolution, + ACTIONS(11001), 2, + anon_sym_class, + anon_sym_struct, + STATE(2611), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8569), 2, + sym_decltype, + sym_dependent_type_identifier, + [258706] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(6070), 1, anon_sym_LBRACE, - ACTIONS(9621), 1, + ACTIONS(9530), 1, + anon_sym_COLON_COLON, + ACTIONS(9658), 1, sym_identifier, - STATE(1893), 1, + STATE(1943), 1, sym_template_type, - STATE(2875), 1, + STATE(2228), 1, sym_enumerator_list, - STATE(6606), 1, + STATE(6695), 1, sym__scope_resolution, - ACTIONS(10972), 2, + ACTIONS(11003), 2, anon_sym_class, anon_sym_struct, - STATE(3301), 2, + STATE(2391), 2, sym__class_name, sym_qualified_type_identifier, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - [253688] = 11, + [258746] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(297), 1, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(3915), 1, + anon_sym_COLON_COLON, + ACTIONS(9647), 1, + sym_identifier, + STATE(1922), 1, + sym_template_type, + STATE(6663), 1, + sym_access_specifier, + STATE(6697), 1, + sym__scope_resolution, + STATE(7118), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8569), 2, + sym_decltype, + sym_dependent_type_identifier, + ACTIONS(10684), 3, + anon_sym_private, + anon_sym_public, + anon_sym_protected, + [258784] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(866), 1, anon_sym_LBRACE, - ACTIONS(8093), 1, + ACTIONS(8123), 1, anon_sym_LBRACK, - ACTIONS(10917), 1, + ACTIONS(10970), 1, anon_sym_COLON, - ACTIONS(10974), 1, + ACTIONS(10991), 1, + anon_sym_EQ, + ACTIONS(10993), 1, + anon_sym_try, + ACTIONS(11005), 1, anon_sym_SEMI, - ACTIONS(10976), 1, + STATE(803), 1, + sym_compound_statement, + STATE(7945), 1, + sym_field_initializer_list, + ACTIONS(5044), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(805), 4, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + sym_pure_virtual_clause, + [258822] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(894), 1, + anon_sym_LBRACE, + ACTIONS(8123), 1, + anon_sym_LBRACK, + ACTIONS(10970), 1, + anon_sym_COLON, + ACTIONS(11007), 1, + anon_sym_SEMI, + ACTIONS(11009), 1, anon_sym_EQ, - ACTIONS(10978), 1, + ACTIONS(11011), 1, anon_sym_try, - STATE(284), 1, + STATE(707), 1, sym_compound_statement, - STATE(7686), 1, + STATE(7785), 1, sym_field_initializer_list, - ACTIONS(5036), 2, + ACTIONS(5044), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(285), 4, + STATE(666), 4, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, sym_pure_virtual_clause, - [253726] = 7, + [258860] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(894), 1, + anon_sym_LBRACE, + ACTIONS(8123), 1, + anon_sym_LBRACK, + ACTIONS(10970), 1, + anon_sym_COLON, + ACTIONS(11009), 1, + anon_sym_EQ, + ACTIONS(11011), 1, + anon_sym_try, + ACTIONS(11013), 1, + anon_sym_SEMI, + STATE(718), 1, + sym_compound_statement, + STATE(7821), 1, + sym_field_initializer_list, + ACTIONS(5044), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(719), 4, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + sym_pure_virtual_clause, + [258898] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8123), 1, + anon_sym_LBRACK, + ACTIONS(10666), 1, + anon_sym_LBRACE, + ACTIONS(10970), 1, + anon_sym_COLON, + ACTIONS(10972), 1, + anon_sym_EQ, + ACTIONS(10974), 1, + anon_sym_try, + ACTIONS(11015), 1, + anon_sym_SEMI, + STATE(2145), 1, + sym_compound_statement, + STATE(7704), 1, + sym_field_initializer_list, + ACTIONS(5044), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(2146), 4, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + sym_pure_virtual_clause, + [258936] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(113), 1, + anon_sym___asm, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(10063), 1, + anon_sym_COMMA, + ACTIONS(10071), 1, + anon_sym_LBRACK, + ACTIONS(10676), 1, + anon_sym_SEMI, + STATE(3108), 1, + sym_parameter_list, + STATE(6203), 1, + sym__function_declarator_seq, + STATE(7654), 1, + sym_gnu_asm_expression, + STATE(7655), 1, + aux_sym_declaration_repeat1, + ACTIONS(10075), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6081), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [258978] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(10733), 1, + ACTIONS(10752), 1, anon_sym_LBRACK, - ACTIONS(10751), 1, + ACTIONS(10786), 1, anon_sym___attribute, - STATE(3007), 1, + STATE(3112), 1, sym_parameter_list, - STATE(5813), 1, + STATE(5959), 1, sym__function_declarator_seq, - ACTIONS(10749), 9, + ACTIONS(10784), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym___attribute__, @@ -501473,508 +509377,928 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [253756] = 11, + [259008] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8093), 1, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(10752), 1, anon_sym_LBRACK, - ACTIONS(10917), 1, - anon_sym_COLON, - ACTIONS(10966), 1, - anon_sym_LBRACE, - ACTIONS(10968), 1, + ACTIONS(10803), 1, + anon_sym___attribute, + STATE(3112), 1, + sym_parameter_list, + STATE(5959), 1, + sym__function_declarator_seq, + ACTIONS(10801), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_EQ, - ACTIONS(10970), 1, - anon_sym_try, - ACTIONS(10980), 1, - anon_sym_SEMI, - STATE(1827), 1, - sym_compound_statement, - STATE(7710), 1, - sym_field_initializer_list, - ACTIONS(5036), 2, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [259038] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9798), 1, anon_sym_LPAREN2, + ACTIONS(10752), 1, + anon_sym_LBRACK, + ACTIONS(10807), 1, + anon_sym___attribute, + STATE(3112), 1, + sym_parameter_list, + STATE(5959), 1, + sym__function_declarator_seq, + ACTIONS(10805), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - STATE(1828), 4, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - sym_pure_virtual_clause, - [253794] = 8, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [259068] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6164), 1, - anon_sym___asm, - ACTIONS(7838), 1, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(10752), 1, + anon_sym_LBRACK, + ACTIONS(10815), 1, + anon_sym___attribute, + STATE(3112), 1, + sym_parameter_list, + STATE(5959), 1, + sym__function_declarator_seq, + ACTIONS(10813), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - ACTIONS(9770), 1, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [259098] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(10614), 1, + ACTIONS(10752), 1, anon_sym_LBRACK, - STATE(6056), 1, + ACTIONS(10819), 1, + anon_sym___attribute, + STATE(3112), 1, sym_parameter_list, - STATE(6308), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6166), 7, + STATE(5959), 1, + sym__function_declarator_seq, + ACTIONS(10817), 9, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [253826] = 12, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [259128] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(10752), 1, + anon_sym_LBRACK, + ACTIONS(10754), 1, + anon_sym___attribute, + STATE(3112), 1, + sym_parameter_list, + STATE(5959), 1, + sym__function_declarator_seq, + ACTIONS(10750), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [259158] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(10752), 1, + anon_sym_LBRACK, + ACTIONS(10833), 1, + anon_sym___attribute, + STATE(3112), 1, + sym_parameter_list, + STATE(5959), 1, + sym__function_declarator_seq, + ACTIONS(10831), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [259188] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(6186), 1, + ACTIONS(6070), 1, anon_sym_LBRACE, - ACTIONS(7959), 1, + ACTIONS(9530), 1, anon_sym_COLON_COLON, - ACTIONS(9627), 1, + ACTIONS(9658), 1, sym_identifier, - STATE(1816), 1, + STATE(1943), 1, sym_template_type, - STATE(2335), 1, + STATE(2228), 1, sym_enumerator_list, - STATE(6587), 1, + STATE(6695), 1, sym__scope_resolution, - ACTIONS(10982), 2, + ACTIONS(11017), 2, anon_sym_class, anon_sym_struct, - STATE(4890), 2, + STATE(2554), 2, sym__class_name, sym_qualified_type_identifier, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - [253866] = 8, + [259228] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6100), 1, - anon_sym___asm, - ACTIONS(7838), 1, + ACTIONS(11019), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6250), 12, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, anon_sym_LBRACK_LBRACK, - ACTIONS(9770), 1, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + anon_sym_or, + anon_sym_DASH_GT, + anon_sym_noexcept, + anon_sym_throw, + [259250] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(3915), 1, + anon_sym_COLON_COLON, + ACTIONS(9647), 1, + sym_identifier, + STATE(1922), 1, + sym_template_type, + STATE(6675), 1, + sym_access_specifier, + STATE(6697), 1, + sym__scope_resolution, + STATE(7398), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8569), 2, + sym_decltype, + sym_dependent_type_identifier, + ACTIONS(10684), 3, + anon_sym_private, + anon_sym_public, + anon_sym_protected, + [259288] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(113), 1, + anon_sym___asm, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(10614), 1, + ACTIONS(10063), 1, + anon_sym_COMMA, + ACTIONS(10071), 1, anon_sym_LBRACK, - STATE(6056), 1, + ACTIONS(10678), 1, + anon_sym_SEMI, + STATE(3108), 1, sym_parameter_list, - STATE(6308), 2, + STATE(6203), 1, + sym__function_declarator_seq, + STATE(7674), 1, + sym_gnu_asm_expression, + STATE(7678), 1, + aux_sym_declaration_repeat1, + ACTIONS(10075), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6081), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(6102), 7, - anon_sym_COMMA, + [259330] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(297), 1, + anon_sym_LBRACE, + ACTIONS(8123), 1, + anon_sym_LBRACK, + ACTIONS(10970), 1, + anon_sym_COLON, + ACTIONS(11021), 1, anon_sym_SEMI, + ACTIONS(11023), 1, + anon_sym_EQ, + ACTIONS(11025), 1, + anon_sym_try, + STATE(314), 1, + sym_compound_statement, + STATE(7959), 1, + sym_field_initializer_list, + ACTIONS(5044), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(315), 4, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + sym_pure_virtual_clause, + [259368] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5601), 1, + sym_identifier, + ACTIONS(5603), 13, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_COLON, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [259390] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7314), 1, + anon_sym_requires, + ACTIONS(7738), 1, + anon_sym_DASH_GT, + ACTIONS(9150), 1, + anon_sym_LBRACK, + STATE(5526), 1, + sym_trailing_return_type, + ACTIONS(6037), 2, + anon_sym_final, + anon_sym_override, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5927), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9139), 4, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [253898] = 7, + [259424] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7388), 1, + ACTIONS(7314), 1, anon_sym_requires, - ACTIONS(9845), 1, + ACTIONS(7738), 1, + anon_sym_DASH_GT, + ACTIONS(9382), 1, anon_sym_LBRACK, - ACTIONS(6020), 2, + STATE(5529), 1, + sym_trailing_return_type, + ACTIONS(6037), 2, anon_sym_final, anon_sym_override, - STATE(5606), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5846), 2, + STATE(5934), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9843), 6, - anon_sym_RPAREN, + ACTIONS(9371), 4, anon_sym_LPAREN2, - anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_try, - [253928] = 7, + anon_sym_EQ, + [259458] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7551), 1, + ACTIONS(7314), 1, anon_sym_requires, - ACTIONS(9676), 1, - anon_sym___attribute, - ACTIONS(7335), 2, + ACTIONS(7738), 1, + anon_sym_DASH_GT, + ACTIONS(9700), 1, + anon_sym_LBRACK, + STATE(5530), 1, + sym_trailing_return_type, + ACTIONS(6037), 2, anon_sym_final, anon_sym_override, - STATE(5925), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6041), 2, + STATE(5924), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9665), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(9689), 4, anon_sym_LPAREN2, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_GT2, - [253958] = 5, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + [259492] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6253), 1, - anon_sym___attribute, - ACTIONS(10984), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(10986), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(6255), 9, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym___attribute__, + ACTIONS(7314), 1, + anon_sym_requires, + ACTIONS(7738), 1, + anon_sym_DASH_GT, + ACTIONS(9947), 1, anon_sym_LBRACK, + STATE(5531), 1, + sym_trailing_return_type, + ACTIONS(6037), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5874), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9945), 4, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + [259526] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7738), 1, + anon_sym_DASH_GT, + ACTIONS(9150), 1, + anon_sym_LBRACK, + ACTIONS(9311), 1, anon_sym_requires, - [253984] = 11, + STATE(5528), 1, + sym_trailing_return_type, + ACTIONS(9193), 2, + anon_sym_final, + anon_sym_override, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5927), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9139), 4, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + [259560] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8093), 1, + ACTIONS(7738), 1, + anon_sym_DASH_GT, + ACTIONS(9382), 1, anon_sym_LBRACK, - ACTIONS(10917), 1, - anon_sym_COLON, - ACTIONS(10958), 1, + ACTIONS(9407), 1, + anon_sym_requires, + STATE(5536), 1, + sym_trailing_return_type, + ACTIONS(9387), 2, + anon_sym_final, + anon_sym_override, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5934), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9371), 4, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(10960), 1, anon_sym_EQ, - ACTIONS(10962), 1, - anon_sym_try, - ACTIONS(10988), 1, - anon_sym_SEMI, - STATE(2041), 1, - sym_compound_statement, - STATE(7825), 1, - sym_field_initializer_list, - ACTIONS(5036), 2, + [259594] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7738), 1, + anon_sym_DASH_GT, + ACTIONS(9700), 1, + anon_sym_LBRACK, + ACTIONS(9724), 1, + anon_sym_requires, + STATE(5537), 1, + sym_trailing_return_type, + ACTIONS(9702), 2, + anon_sym_final, + anon_sym_override, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5924), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9689), 4, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(2134), 4, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - sym_pure_virtual_clause, - [254022] = 11, + anon_sym_LBRACE, + anon_sym_EQ, + [259628] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(866), 1, + ACTIONS(7738), 1, + anon_sym_DASH_GT, + ACTIONS(9947), 1, + anon_sym_LBRACK, + ACTIONS(9960), 1, + anon_sym_requires, + STATE(5538), 1, + sym_trailing_return_type, + ACTIONS(9957), 2, + anon_sym_final, + anon_sym_override, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5874), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9945), 4, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(8093), 1, + anon_sym_EQ, + [259662] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8123), 1, anon_sym_LBRACK, - ACTIONS(10917), 1, + ACTIONS(10654), 1, + anon_sym_LBRACE, + ACTIONS(10970), 1, anon_sym_COLON, - ACTIONS(10990), 1, + ACTIONS(11027), 1, anon_sym_SEMI, - ACTIONS(10992), 1, + ACTIONS(11029), 1, anon_sym_EQ, - ACTIONS(10994), 1, + ACTIONS(11031), 1, anon_sym_try, - STATE(653), 1, + STATE(1987), 1, sym_compound_statement, - STATE(7594), 1, + STATE(7891), 1, sym_field_initializer_list, - ACTIONS(5036), 2, + ACTIONS(5044), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(655), 4, + STATE(2011), 4, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, sym_pure_virtual_clause, - [254060] = 11, + [259700] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5641), 1, + sym_identifier, + ACTIONS(5643), 13, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [259722] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6090), 1, + anon_sym___asm, + ACTIONS(7918), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(10637), 1, + anon_sym_LBRACK, + STATE(6113), 1, + sym_parameter_list, + STATE(6418), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6092), 7, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + [259754] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6198), 1, + anon_sym___asm, + ACTIONS(7918), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(10637), 1, + anon_sym_LBRACK, + STATE(6113), 1, + sym_parameter_list, + STATE(6418), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6200), 7, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + [259786] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(3907), 1, - anon_sym_COLON_COLON, - ACTIONS(9615), 1, + ACTIONS(7027), 1, + anon_sym_LBRACE, + ACTIONS(9641), 1, sym_identifier, - STATE(1893), 1, + ACTIONS(9660), 1, + anon_sym_COLON_COLON, + STATE(1922), 1, sym_template_type, - STATE(6549), 1, - sym_access_specifier, - STATE(6599), 1, + STATE(2954), 1, + sym_enumerator_list, + STATE(6706), 1, sym__scope_resolution, - STATE(6990), 2, + ACTIONS(11033), 2, + anon_sym_class, + anon_sym_struct, + STATE(4117), 2, sym__class_name, sym_qualified_type_identifier, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - ACTIONS(10612), 3, - anon_sym_private, - anon_sym_public, - anon_sym_protected, - [254098] = 5, + [259826] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6253), 1, - anon_sym_LBRACK, - ACTIONS(10944), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(10996), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(6255), 9, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, + ACTIONS(6202), 1, + anon_sym___asm, + ACTIONS(7918), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [254124] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6178), 1, - anon_sym___attribute, - ACTIONS(10986), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(6180), 11, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_or, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [254148] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(10733), 1, + ACTIONS(10637), 1, anon_sym_LBRACK, - ACTIONS(10755), 1, - anon_sym___attribute, - STATE(3007), 1, + STATE(6113), 1, sym_parameter_list, - STATE(5813), 1, - sym__function_declarator_seq, - ACTIONS(10753), 9, + STATE(6418), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6204), 7, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [254178] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9193), 1, - anon_sym_LBRACK, - ACTIONS(9316), 1, - anon_sym_requires, - ACTIONS(9195), 2, - anon_sym_final, - anon_sym_override, - STATE(5606), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5877), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9182), 6, - anon_sym_RPAREN, + anon_sym_asm, + anon_sym___asm__, + [259858] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6112), 1, + anon_sym___asm, + ACTIONS(7918), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9798), 1, anon_sym_LPAREN2, + ACTIONS(10637), 1, + anon_sym_LBRACK, + STATE(6113), 1, + sym_parameter_list, + STATE(6418), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6114), 7, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, + anon_sym_COLON, anon_sym_LBRACE, - anon_sym_try, - [254208] = 8, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + [259890] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, + ACTIONS(6145), 1, + anon_sym___asm, + ACTIONS(7918), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6046), 1, - anon_sym_LBRACK, - ACTIONS(6100), 1, - anon_sym___attribute, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - STATE(2298), 1, + ACTIONS(10637), 1, + anon_sym_LBRACK, + STATE(6113), 1, sym_parameter_list, - STATE(6307), 2, + STATE(6418), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(6102), 7, + ACTIONS(6147), 7, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, - anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACE, - anon_sym_RBRACK, - anon_sym_try, - [254240] = 7, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + [259922] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7551), 1, - anon_sym_requires, - ACTIONS(9845), 1, + ACTIONS(6298), 1, anon_sym___attribute, - ACTIONS(7335), 2, - anon_sym_final, - anon_sym_override, - STATE(5925), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6045), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9843), 6, + ACTIONS(11035), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11037), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6300), 9, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym___attribute__, anon_sym_LBRACK, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [254270] = 12, + anon_sym_requires, + [259948] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(3915), 1, + anon_sym_COLON_COLON, + ACTIONS(9647), 1, + sym_identifier, + STATE(1922), 1, + sym_template_type, + STATE(6641), 1, + sym_access_specifier, + STATE(6697), 1, + sym__scope_resolution, + STATE(7267), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8569), 2, + sym_decltype, + sym_dependent_type_identifier, + ACTIONS(10684), 3, + anon_sym_private, + anon_sym_public, + anon_sym_protected, + [259986] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(6971), 1, + ACTIONS(7027), 1, anon_sym_LBRACE, - ACTIONS(8081), 1, + ACTIONS(8074), 1, anon_sym_COLON_COLON, - ACTIONS(9615), 1, + ACTIONS(9647), 1, sym_identifier, - STATE(1893), 1, + STATE(1922), 1, sym_template_type, - STATE(3608), 1, + STATE(3661), 1, sym_enumerator_list, - STATE(6615), 1, + STATE(6743), 1, sym__scope_resolution, - ACTIONS(10998), 2, + ACTIONS(11039), 2, anon_sym_class, anon_sym_struct, - STATE(3939), 2, + STATE(3412), 2, sym__class_name, sym_qualified_type_identifier, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - [254310] = 12, + [260026] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11019), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(11041), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6300), 10, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + anon_sym_DASH_GT, + anon_sym_noexcept, + anon_sym_throw, + [260050] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(6971), 1, + ACTIONS(6740), 1, anon_sym_LBRACE, - ACTIONS(9613), 1, - sym_identifier, - ACTIONS(9625), 1, + ACTIONS(8022), 1, anon_sym_COLON_COLON, - STATE(1893), 1, + ACTIONS(9662), 1, + sym_identifier, + STATE(2598), 1, sym_template_type, - STATE(2875), 1, + STATE(2613), 1, sym_enumerator_list, - STATE(6604), 1, + STATE(6738), 1, sym__scope_resolution, - ACTIONS(11000), 2, + ACTIONS(11043), 2, anon_sym_class, anon_sym_struct, - STATE(4060), 2, + STATE(4949), 2, sym__class_name, sym_qualified_type_identifier, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - [254350] = 11, + [260090] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(866), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(8093), 1, + ACTIONS(8123), 1, anon_sym_LBRACK, - ACTIONS(10917), 1, + ACTIONS(10970), 1, anon_sym_COLON, - ACTIONS(10992), 1, + ACTIONS(10997), 1, anon_sym_EQ, - ACTIONS(10994), 1, + ACTIONS(10999), 1, anon_sym_try, - ACTIONS(11002), 1, + ACTIONS(11045), 1, anon_sym_SEMI, - STATE(765), 1, + STATE(572), 1, sym_compound_statement, - STATE(7866), 1, + STATE(7802), 1, sym_field_initializer_list, - ACTIONS(5036), 2, + ACTIONS(5044), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(766), 4, + STATE(573), 4, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, sym_pure_virtual_clause, - [254388] = 12, + [260128] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5987), 1, + ACTIONS(6740), 1, anon_sym_LBRACE, - ACTIONS(9384), 1, + ACTIONS(9612), 1, anon_sym_COLON_COLON, - ACTIONS(9640), 1, + ACTIONS(9664), 1, sym_identifier, - STATE(1945), 1, + STATE(2598), 1, sym_template_type, - STATE(2200), 1, + STATE(2613), 1, sym_enumerator_list, - STATE(6580), 1, + STATE(6694), 1, + sym__scope_resolution, + ACTIONS(11047), 2, + anon_sym_class, + anon_sym_struct, + STATE(4084), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8569), 2, + sym_decltype, + sym_dependent_type_identifier, + [260168] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(7007), 1, + anon_sym_LBRACE, + ACTIONS(9459), 1, + anon_sym_COLON_COLON, + ACTIONS(9666), 1, + sym_identifier, + STATE(2856), 1, + sym_template_type, + STATE(3125), 1, + sym_enumerator_list, + STATE(6708), 1, sym__scope_resolution, - ACTIONS(11004), 2, + ACTIONS(11049), 2, anon_sym_class, anon_sym_struct, - STATE(2321), 2, + STATE(2863), 2, sym__class_name, sym_qualified_type_identifier, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - [254428] = 3, + [260208] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7299), 1, + anon_sym___attribute__, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(10071), 1, + anon_sym_LBRACK, + ACTIONS(11053), 1, + anon_sym_EQ, + STATE(3028), 1, + sym_parameter_list, + STATE(6203), 1, + sym__function_declarator_seq, + ACTIONS(11051), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(6081), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6827), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [260248] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5478), 1, + ACTIONS(5470), 1, sym_identifier, - ACTIONS(5480), 13, + ACTIONS(5472), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, @@ -501988,142 +510312,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [254450] = 12, + [260270] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5220), 1, - anon_sym_COLON_COLON, - ACTIONS(6971), 1, + ACTIONS(6256), 1, anon_sym_LBRACE, - ACTIONS(9613), 1, + ACTIONS(8088), 1, + anon_sym_COLON_COLON, + ACTIONS(9649), 1, sym_identifier, - STATE(1893), 1, + STATE(1784), 1, sym_template_type, - STATE(2875), 1, + STATE(5189), 1, sym_enumerator_list, - STATE(6627), 1, + STATE(6724), 1, sym__scope_resolution, - ACTIONS(11006), 2, + ACTIONS(11055), 2, anon_sym_class, anon_sym_struct, - STATE(2980), 2, + STATE(4920), 2, sym__class_name, sym_qualified_type_identifier, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - [254490] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6046), 1, - anon_sym_LBRACK, - ACTIONS(6066), 1, - anon_sym___attribute, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - STATE(2298), 1, - sym_parameter_list, - STATE(6307), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6068), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACK, - anon_sym_try, - [254522] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(894), 1, - anon_sym_LBRACE, - ACTIONS(8093), 1, - anon_sym_LBRACK, - ACTIONS(10917), 1, - anon_sym_COLON, - ACTIONS(10919), 1, - anon_sym_EQ, - ACTIONS(10921), 1, - anon_sym_try, - ACTIONS(11008), 1, - anon_sym_SEMI, - STATE(708), 1, - sym_compound_statement, - STATE(7614), 1, - sym_field_initializer_list, - ACTIONS(5036), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(709), 4, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - sym_pure_virtual_clause, - [254560] = 7, + [260310] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(7388), 1, - anon_sym_requires, - ACTIONS(9193), 1, - anon_sym_LBRACK, - ACTIONS(6020), 2, - anon_sym_final, - anon_sym_override, - STATE(5606), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5877), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9182), 6, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(8028), 1, + anon_sym_COLON_COLON, + ACTIONS(8705), 1, anon_sym_LBRACE, - anon_sym_try, - [254590] = 12, + ACTIONS(9668), 1, + sym_identifier, + STATE(1922), 1, + sym_template_type, + STATE(4633), 1, + sym_enumerator_list, + STATE(6719), 1, + sym__scope_resolution, + ACTIONS(11057), 2, + anon_sym_class, + anon_sym_struct, + STATE(4342), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8569), 2, + sym_decltype, + sym_dependent_type_identifier, + [260350] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(7025), 1, + ACTIONS(7027), 1, anon_sym_LBRACE, - ACTIONS(9528), 1, + ACTIONS(8028), 1, anon_sym_COLON_COLON, - ACTIONS(9617), 1, + ACTIONS(9668), 1, sym_identifier, - STATE(2830), 1, + STATE(1922), 1, sym_template_type, - STATE(3106), 1, + STATE(3661), 1, sym_enumerator_list, - STATE(6578), 1, + STATE(6719), 1, sym__scope_resolution, - ACTIONS(11010), 2, + ACTIONS(11059), 2, anon_sym_class, anon_sym_struct, - STATE(2832), 2, + STATE(4231), 2, sym__class_name, sym_qualified_type_identifier, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - [254630] = 3, + [260390] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5482), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7299), 1, + anon_sym___attribute__, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(10071), 1, + anon_sym_LBRACK, + ACTIONS(11061), 1, + anon_sym_EQ, + STATE(3028), 1, + sym_parameter_list, + STATE(6203), 1, + sym__function_declarator_seq, + ACTIONS(11051), 2, + anon_sym_COMMA, + anon_sym_GT2, + STATE(6081), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6827), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [260430] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5477), 1, sym_identifier, - ACTIONS(5484), 13, + ACTIONS(5479), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, @@ -502137,811 +510443,891 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [254652] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6046), 1, - anon_sym_LBRACK, - ACTIONS(6164), 1, - anon_sym___attribute, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - STATE(2298), 1, - sym_parameter_list, - STATE(6307), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6166), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACK, - anon_sym_try, - [254684] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7388), 1, - anon_sym_requires, - ACTIONS(9355), 1, - anon_sym_LBRACK, - ACTIONS(6020), 2, - anon_sym_final, - anon_sym_override, - STATE(5606), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5839), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9344), 6, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_try, - [254714] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7551), 1, - anon_sym_requires, - ACTIONS(9849), 1, - anon_sym___attribute, - ACTIONS(7335), 2, - anon_sym_final, - anon_sym_override, - STATE(5925), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6048), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9847), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_GT2, - [254744] = 7, + [260452] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(9355), 1, - anon_sym_LBRACK, - ACTIONS(9472), 1, - anon_sym_requires, - ACTIONS(9357), 2, - anon_sym_final, - anon_sym_override, - STATE(5606), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5839), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9344), 6, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(6852), 1, anon_sym_LBRACE, - anon_sym_try, - [254774] = 12, + ACTIONS(9498), 1, + anon_sym_COLON_COLON, + ACTIONS(9670), 1, + sym_identifier, + STATE(2684), 1, + sym_template_type, + STATE(2881), 1, + sym_enumerator_list, + STATE(6728), 1, + sym__scope_resolution, + ACTIONS(11063), 2, + anon_sym_class, + anon_sym_struct, + STATE(2697), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8569), 2, + sym_decltype, + sym_dependent_type_identifier, + [260492] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(6971), 1, + ACTIONS(7027), 1, anon_sym_LBRACE, - ACTIONS(8055), 1, + ACTIONS(8028), 1, anon_sym_COLON_COLON, - ACTIONS(9623), 1, + ACTIONS(9668), 1, sym_identifier, - STATE(1893), 1, + STATE(1922), 1, sym_template_type, - STATE(3608), 1, + STATE(3661), 1, sym_enumerator_list, - STATE(6592), 1, + STATE(6719), 1, sym__scope_resolution, - ACTIONS(11012), 2, + ACTIONS(11065), 2, anon_sym_class, anon_sym_struct, - STATE(4201), 2, + STATE(6595), 2, sym__class_name, sym_qualified_type_identifier, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - [254814] = 12, + [260532] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(6797), 1, + ACTIONS(6256), 1, anon_sym_LBRACE, - ACTIONS(9503), 1, + ACTIONS(9437), 1, anon_sym_COLON_COLON, - ACTIONS(9646), 1, + ACTIONS(9654), 1, sym_identifier, - STATE(2630), 1, + STATE(1784), 1, sym_template_type, - STATE(2823), 1, + STATE(2381), 1, sym_enumerator_list, - STATE(6633), 1, + STATE(6699), 1, sym__scope_resolution, - ACTIONS(11014), 2, + ACTIONS(11067), 2, anon_sym_class, anon_sym_struct, - STATE(2593), 2, + STATE(3868), 2, sym__class_name, sym_qualified_type_identifier, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - [254854] = 11, + [260572] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(297), 1, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(5228), 1, + anon_sym_COLON_COLON, + ACTIONS(7027), 1, anon_sym_LBRACE, - ACTIONS(8093), 1, - anon_sym_LBRACK, - ACTIONS(10917), 1, - anon_sym_COLON, - ACTIONS(10976), 1, - anon_sym_EQ, - ACTIONS(10978), 1, - anon_sym_try, - ACTIONS(11016), 1, - anon_sym_SEMI, - STATE(309), 1, - sym_compound_statement, - STATE(7581), 1, - sym_field_initializer_list, - ACTIONS(5036), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(310), 4, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - sym_pure_virtual_clause, - [254892] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - ACTIONS(10733), 1, - anon_sym_LBRACK, - ACTIONS(10735), 1, - anon_sym___attribute, - STATE(3007), 1, - sym_parameter_list, - STATE(5813), 1, - sym__function_declarator_seq, - ACTIONS(10731), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [254922] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5489), 1, + ACTIONS(9641), 1, sym_identifier, - ACTIONS(5491), 13, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [254944] = 7, + STATE(1922), 1, + sym_template_type, + STATE(2954), 1, + sym_enumerator_list, + STATE(6715), 1, + sym__scope_resolution, + ACTIONS(11069), 2, + anon_sym_class, + anon_sym_struct, + STATE(3071), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8569), 2, + sym_decltype, + sym_dependent_type_identifier, + [260612] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(9676), 1, - anon_sym_LBRACK, - ACTIONS(9711), 1, - anon_sym_requires, - ACTIONS(9681), 2, - anon_sym_final, - anon_sym_override, - STATE(5606), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5876), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9665), 6, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(8000), 1, + anon_sym_COLON_COLON, + ACTIONS(9067), 1, anon_sym_LBRACE, - anon_sym_try, - [254974] = 7, + ACTIONS(9672), 1, + sym_identifier, + STATE(4461), 1, + sym_template_type, + STATE(4948), 1, + sym_enumerator_list, + STATE(6731), 1, + sym__scope_resolution, + ACTIONS(11071), 2, + anon_sym_class, + anon_sym_struct, + STATE(4638), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8569), 2, + sym_decltype, + sym_dependent_type_identifier, + [260652] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(9845), 1, - anon_sym_LBRACK, - ACTIONS(10797), 1, - anon_sym_requires, - ACTIONS(9919), 2, - anon_sym_final, - anon_sym_override, - STATE(5606), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5846), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9843), 6, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, + ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_try, - [255004] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9770), 1, + ACTIONS(113), 1, + anon_sym___asm, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(10733), 1, + ACTIONS(10063), 1, + anon_sym_COMMA, + ACTIONS(10071), 1, anon_sym_LBRACK, - ACTIONS(10759), 1, - anon_sym___attribute, - STATE(3007), 1, + ACTIONS(10680), 1, + anon_sym_SEMI, + STATE(3108), 1, sym_parameter_list, - STATE(5813), 1, + STATE(6203), 1, sym__function_declarator_seq, - ACTIONS(10757), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [255034] = 7, + STATE(7404), 1, + sym_gnu_asm_expression, + STATE(7407), 1, + aux_sym_declaration_repeat1, + ACTIONS(10075), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6081), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [260694] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9849), 1, - anon_sym_LBRACK, - ACTIONS(11018), 1, - anon_sym_requires, - ACTIONS(9927), 2, - anon_sym_final, - anon_sym_override, - STATE(5606), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5836), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9847), 6, - anon_sym_RPAREN, + ACTIONS(5020), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_try, - [255064] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11021), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(11023), 2, + ACTIONS(8147), 1, + anon_sym_LBRACK, + ACTIONS(8360), 1, + anon_sym_COLON, + ACTIONS(8715), 1, + anon_sym_STAR, + ACTIONS(8717), 1, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(6255), 10, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - anon_sym_DASH_GT, - anon_sym_noexcept, - anon_sym_throw, - [255088] = 3, + ACTIONS(8719), 1, + anon_sym_AMP, + STATE(3538), 1, + sym_parameter_list, + STATE(6109), 1, + sym__function_declarator_seq, + STATE(7035), 1, + sym__abstract_declarator, + STATE(6099), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [260732] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(11023), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(6180), 12, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_LBRACK_LBRACK, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(7965), 1, anon_sym_LBRACE, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - anon_sym_or, - anon_sym_DASH_GT, - anon_sym_noexcept, - anon_sym_throw, - [255110] = 7, + ACTIONS(9412), 1, + anon_sym_COLON_COLON, + ACTIONS(9674), 1, + sym_identifier, + STATE(3638), 1, + sym_template_type, + STATE(4007), 1, + sym_enumerator_list, + STATE(6732), 1, + sym__scope_resolution, + ACTIONS(11073), 2, + anon_sym_class, + anon_sym_struct, + STATE(3606), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8569), 2, + sym_decltype, + sym_dependent_type_identifier, + [260772] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - ACTIONS(10733), 1, - anon_sym_LBRACK, - ACTIONS(10763), 1, - anon_sym___attribute, - STATE(3007), 1, - sym_parameter_list, - STATE(5813), 1, - sym__function_declarator_seq, - ACTIONS(10761), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [255140] = 12, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(6256), 1, + anon_sym_LBRACE, + ACTIONS(7984), 1, + anon_sym_COLON_COLON, + ACTIONS(9645), 1, + sym_identifier, + STATE(1784), 1, + sym_template_type, + STATE(2381), 1, + sym_enumerator_list, + STATE(6727), 1, + sym__scope_resolution, + ACTIONS(11075), 2, + anon_sym_class, + anon_sym_struct, + STATE(4939), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8569), 2, + sym_decltype, + sym_dependent_type_identifier, + [260812] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(6729), 1, - anon_sym_LBRACE, - ACTIONS(8049), 1, + ACTIONS(8074), 1, anon_sym_COLON_COLON, - ACTIONS(9634), 1, + ACTIONS(8705), 1, + anon_sym_LBRACE, + ACTIONS(9647), 1, sym_identifier, - STATE(2567), 1, + STATE(1922), 1, sym_template_type, - STATE(2614), 1, + STATE(4633), 1, sym_enumerator_list, - STATE(6579), 1, + STATE(6743), 1, sym__scope_resolution, - ACTIONS(11025), 2, + ACTIONS(11077), 2, anon_sym_class, anon_sym_struct, - STATE(4876), 2, + STATE(5019), 2, sym__class_name, sym_qualified_type_identifier, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - [255180] = 8, + [260852] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7549), 1, - anon_sym_DASH_GT, - ACTIONS(7551), 1, - anon_sym_requires, - STATE(6207), 1, - sym_trailing_return_type, - ACTIONS(7335), 2, - anon_sym_final, - anon_sym_override, - STATE(5925), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6012), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9182), 5, + ACTIONS(6248), 1, + anon_sym___attribute, + ACTIONS(11037), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6250), 11, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym___attribute__, anon_sym_LBRACK, + anon_sym_or, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [255212] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5577), 1, - sym_identifier, - ACTIONS(5579), 13, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [255234] = 12, + anon_sym_requires, + [260876] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(8055), 1, + ACTIONS(3915), 1, anon_sym_COLON_COLON, - ACTIONS(8679), 1, - anon_sym_LBRACE, - ACTIONS(9623), 1, + ACTIONS(9647), 1, sym_identifier, - STATE(1893), 1, + STATE(1922), 1, sym_template_type, - STATE(4577), 1, - sym_enumerator_list, - STATE(6592), 1, + STATE(6652), 1, + sym_access_specifier, + STATE(6697), 1, sym__scope_resolution, - ACTIONS(11027), 2, - anon_sym_class, - anon_sym_struct, - STATE(4279), 2, + STATE(7148), 2, sym__class_name, sym_qualified_type_identifier, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - [255274] = 11, + ACTIONS(10684), 3, + anon_sym_private, + anon_sym_public, + anon_sym_protected, + [260914] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(297), 1, anon_sym_LBRACE, - ACTIONS(8093), 1, + ACTIONS(8123), 1, anon_sym_LBRACK, - ACTIONS(10917), 1, + ACTIONS(10970), 1, anon_sym_COLON, - ACTIONS(11029), 1, - anon_sym_SEMI, - ACTIONS(11031), 1, + ACTIONS(11023), 1, anon_sym_EQ, - ACTIONS(11033), 1, + ACTIONS(11025), 1, anon_sym_try, - STATE(503), 1, + ACTIONS(11079), 1, + anon_sym_SEMI, + STATE(289), 1, sym_compound_statement, - STATE(7832), 1, + STATE(7811), 1, sym_field_initializer_list, - ACTIONS(5036), 2, + ACTIONS(5044), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(523), 4, + STATE(290), 4, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, sym_pure_virtual_clause, - [255312] = 11, + [260952] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(3907), 1, + ACTIONS(5028), 1, anon_sym_COLON_COLON, - ACTIONS(9615), 1, + ACTIONS(7027), 1, + anon_sym_LBRACE, + ACTIONS(9643), 1, sym_identifier, - STATE(1893), 1, + STATE(1922), 1, sym_template_type, - STATE(6557), 1, - sym_access_specifier, - STATE(6599), 1, + STATE(2954), 1, + sym_enumerator_list, + STATE(6746), 1, sym__scope_resolution, - STATE(7159), 2, + ACTIONS(11081), 2, + anon_sym_class, + anon_sym_struct, + STATE(3320), 2, sym__class_name, sym_qualified_type_identifier, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - ACTIONS(10612), 3, - anon_sym_private, - anon_sym_public, - anon_sym_protected, - [255350] = 12, + [260992] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7147), 1, - anon_sym___attribute__, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - ACTIONS(10001), 1, + ACTIONS(8123), 1, anon_sym_LBRACK, - ACTIONS(11035), 1, + ACTIONS(10654), 1, + anon_sym_LBRACE, + ACTIONS(10970), 1, + anon_sym_COLON, + ACTIONS(11029), 1, anon_sym_EQ, - STATE(2981), 1, - sym_parameter_list, - STATE(5979), 1, - sym__function_declarator_seq, - ACTIONS(10940), 2, - anon_sym_COMMA, - anon_sym_GT2, - STATE(5949), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6759), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [255390] = 11, + ACTIONS(11031), 1, + anon_sym_try, + ACTIONS(11083), 1, + anon_sym_SEMI, + STATE(2141), 1, + sym_compound_statement, + STATE(8002), 1, + sym_field_initializer_list, + ACTIONS(5044), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(2165), 4, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + sym_pure_virtual_clause, + [261030] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(894), 1, anon_sym_LBRACE, - ACTIONS(8093), 1, + ACTIONS(8123), 1, anon_sym_LBRACK, - ACTIONS(10917), 1, + ACTIONS(10970), 1, anon_sym_COLON, - ACTIONS(11031), 1, + ACTIONS(11009), 1, anon_sym_EQ, - ACTIONS(11033), 1, + ACTIONS(11011), 1, anon_sym_try, - ACTIONS(11037), 1, - anon_sym_SEMI, - STATE(510), 1, + STATE(707), 1, sym_compound_statement, - STATE(7755), 1, + STATE(7785), 1, sym_field_initializer_list, - ACTIONS(5036), 2, + ACTIONS(5044), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(512), 4, + STATE(666), 4, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, sym_pure_virtual_clause, - [255428] = 11, + [261065] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8093), 1, - anon_sym_LBRACK, - ACTIONS(10917), 1, + ACTIONS(4187), 1, + anon_sym_COLON_COLON, + ACTIONS(6580), 1, + anon_sym_LT, + STATE(2705), 1, + sym_template_argument_list, + ACTIONS(4934), 3, anon_sym_COLON, - ACTIONS(10948), 1, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(4927), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_asm, + anon_sym___asm__, + [261092] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(10950), 1, + ACTIONS(8123), 1, + anon_sym_LBRACK, + ACTIONS(10970), 1, + anon_sym_COLON, + ACTIONS(10997), 1, anon_sym_EQ, - ACTIONS(10952), 1, + ACTIONS(10999), 1, anon_sym_try, - ACTIONS(11039), 1, - anon_sym_SEMI, - STATE(2085), 1, + STATE(650), 1, sym_compound_statement, - STATE(7836), 1, + STATE(7881), 1, sym_field_initializer_list, - ACTIONS(5036), 2, + ACTIONS(5044), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(2086), 4, + STATE(503), 4, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, sym_pure_virtual_clause, - [255466] = 8, + [261127] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6038), 1, - anon_sym___asm, - ACTIONS(7838), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9770), 1, + ACTIONS(17), 1, + sym_preproc_directive, + ACTIONS(11085), 1, + sym_identifier, + ACTIONS(11087), 1, + aux_sym_preproc_if_token1, + ACTIONS(11091), 1, + anon_sym_RBRACE, + ACTIONS(11089), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(8019), 2, + sym_preproc_call, + sym_enumerator, + STATE(8828), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(6403), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [261160] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(10614), 1, + ACTIONS(10752), 1, anon_sym_LBRACK, - STATE(6056), 1, + STATE(2963), 1, sym_parameter_list, - STATE(6308), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6040), 7, - anon_sym_COMMA, + STATE(5959), 1, + sym__function_declarator_seq, + ACTIONS(10760), 9, anon_sym_SEMI, anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [255498] = 12, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [261187] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(866), 1, + anon_sym_LBRACE, + ACTIONS(8123), 1, + anon_sym_LBRACK, + ACTIONS(10970), 1, + anon_sym_COLON, + ACTIONS(10991), 1, + anon_sym_EQ, + ACTIONS(10993), 1, + anon_sym_try, + STATE(772), 1, + sym_compound_statement, + STATE(7780), 1, + sym_field_initializer_list, + ACTIONS(5044), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(773), 4, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + sym_pure_virtual_clause, + [261222] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1852), 1, + ACTIONS(1850), 1, anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(10877), 1, + ACTIONS(11093), 1, + sym_identifier, + ACTIONS(11095), 1, anon_sym_COLON_COLON, - ACTIONS(10879), 1, + ACTIONS(11097), 1, anon_sym_template, - ACTIONS(11041), 1, - sym_identifier, - STATE(2365), 1, + STATE(2399), 1, + sym_dependent_field_identifier, + STATE(2409), 1, sym_qualified_field_identifier, - STATE(2401), 1, + STATE(2438), 1, sym_template_method, - STATE(2402), 1, - sym_dependent_field_identifier, - STATE(6277), 1, + STATE(6396), 1, sym__scope_resolution, - STATE(7632), 1, + STATE(7923), 1, sym_operator_name, - STATE(8601), 3, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - [255537] = 6, + [261261] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(7913), 1, + anon_sym_DASH_GT, + ACTIONS(9150), 1, + anon_sym_LBRACK, + ACTIONS(9632), 1, + anon_sym_requires, + STATE(6575), 1, + sym_trailing_return_type, + ACTIONS(9193), 2, + anon_sym_final, + anon_sym_override, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5927), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9139), 3, anon_sym_LPAREN2, - ACTIONS(10733), 1, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + [261294] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7913), 1, + anon_sym_DASH_GT, + ACTIONS(9382), 1, anon_sym_LBRACK, - STATE(2890), 1, - sym_parameter_list, - STATE(5813), 1, - sym__function_declarator_seq, - ACTIONS(10765), 9, - anon_sym_SEMI, + ACTIONS(9708), 1, + anon_sym_requires, + STATE(6580), 1, + sym_trailing_return_type, + ACTIONS(9387), 2, + anon_sym_final, + anon_sym_override, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5934), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9371), 3, + anon_sym_LPAREN2, anon_sym_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + [261327] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7913), 1, + anon_sym_DASH_GT, + ACTIONS(9700), 1, + anon_sym_LBRACK, + ACTIONS(9828), 1, + anon_sym_requires, + STATE(6596), 1, + sym_trailing_return_type, + ACTIONS(9702), 2, anon_sym_final, anon_sym_override, - anon_sym_try, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5924), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9689), 3, + anon_sym_LPAREN2, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + [261360] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7913), 1, + anon_sym_DASH_GT, + ACTIONS(9947), 1, + anon_sym_LBRACK, + ACTIONS(11099), 1, anon_sym_requires, - [255564] = 9, + STATE(6606), 1, + sym_trailing_return_type, + ACTIONS(9957), 2, + anon_sym_final, + anon_sym_override, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5874), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9945), 3, + anon_sym_LPAREN2, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + [261393] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(17), 1, - sym_preproc_directive, - ACTIONS(11043), 1, - sym_identifier, - ACTIONS(11045), 1, - aux_sym_preproc_if_token1, - ACTIONS(11049), 1, - anon_sym_RBRACE, - ACTIONS(11047), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(7884), 2, - sym_preproc_call, - sym_enumerator, - STATE(8675), 2, - sym_preproc_if_in_enumerator_list_no_comma, - sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(6295), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [255597] = 9, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(10071), 1, + anon_sym_LBRACK, + ACTIONS(10935), 1, + anon_sym___attribute, + STATE(3028), 1, + sym_parameter_list, + STATE(6203), 1, + sym__function_declarator_seq, + STATE(6081), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(10933), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_EQ, + anon_sym_GT2, + [261426] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5020), 1, + anon_sym_LPAREN2, + ACTIONS(5022), 1, + anon_sym_STAR, + ACTIONS(5024), 1, + anon_sym_AMP_AMP, + ACTIONS(5026), 1, + anon_sym_AMP, + ACTIONS(8147), 1, + anon_sym_LBRACK, + STATE(3113), 1, + sym_parameter_list, + STATE(6109), 1, + sym__function_declarator_seq, + STATE(7023), 1, + sym__abstract_declarator, + STATE(6099), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [261461] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(11043), 1, + ACTIONS(11085), 1, sym_identifier, - ACTIONS(11045), 1, + ACTIONS(11087), 1, aux_sym_preproc_if_token1, - ACTIONS(11051), 1, + ACTIONS(11102), 1, anon_sym_RBRACE, - ACTIONS(11047), 2, + ACTIONS(11089), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(7609), 2, + STATE(7896), 2, sym_preproc_call, sym_enumerator, - STATE(8039), 2, + STATE(8333), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(6435), 3, + STATE(6569), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [255630] = 6, + [261494] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - ACTIONS(10733), 1, + ACTIONS(57), 1, + anon_sym_LBRACE, + ACTIONS(8123), 1, anon_sym_LBRACK, - STATE(2890), 1, - sym_parameter_list, - STATE(5813), 1, - sym__function_declarator_seq, - ACTIONS(10749), 9, - anon_sym_SEMI, + ACTIONS(10970), 1, anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, + ACTIONS(10997), 1, anon_sym_EQ, - anon_sym_final, - anon_sym_override, + ACTIONS(10999), 1, anon_sym_try, - anon_sym_requires, - [255657] = 10, + STATE(572), 1, + sym_compound_statement, + STATE(7802), 1, + sym_field_initializer_list, + ACTIONS(5044), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(573), 4, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + sym_pure_virtual_clause, + [261529] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5012), 1, + ACTIONS(5020), 1, anon_sym_LPAREN2, - ACTIONS(5014), 1, + ACTIONS(8147), 1, + anon_sym_LBRACK, + ACTIONS(8481), 1, anon_sym_STAR, - ACTIONS(5016), 1, + ACTIONS(8483), 1, anon_sym_AMP_AMP, - ACTIONS(5018), 1, + ACTIONS(8485), 1, anon_sym_AMP, - ACTIONS(8131), 1, - anon_sym_LBRACK, - STATE(3004), 1, + STATE(3021), 1, sym_parameter_list, - STATE(6087), 1, + STATE(6109), 1, sym__function_declarator_seq, - STATE(6915), 1, + STATE(6811), 1, sym__abstract_declarator, - STATE(6092), 5, + STATE(6099), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [255692] = 5, + [261564] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(11055), 1, - anon_sym_LT, - STATE(6369), 1, - sym_template_argument_list, - ACTIONS(11057), 2, - anon_sym___attribute, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(10793), 1, + anon_sym_COLON_COLON, + ACTIONS(10795), 1, + anon_sym_template, + ACTIONS(11104), 1, + sym_identifier, + STATE(3524), 1, + sym_template_method, + STATE(3526), 1, + sym_dependent_field_identifier, + STATE(3528), 1, + sym_qualified_field_identifier, + STATE(6406), 1, + sym__scope_resolution, + STATE(7928), 1, + sym_operator_name, + STATE(8569), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [261603] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(11095), 1, + anon_sym_COLON_COLON, + ACTIONS(11106), 1, + sym_identifier, + STATE(6396), 1, + sym__scope_resolution, + STATE(7501), 1, + sym_field_initializer, + STATE(7923), 1, + sym_operator_name, + STATE(7189), 2, + sym_template_method, + sym_qualified_field_identifier, + STATE(8569), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [261640] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(10071), 1, anon_sym_LBRACK, - ACTIONS(11053), 9, + ACTIONS(10907), 1, + anon_sym___attribute, + STATE(3028), 1, + sym_parameter_list, + STATE(6203), 1, + sym__function_declarator_seq, + STATE(6081), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(10905), 5, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, + anon_sym_RPAREN, anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, anon_sym_EQ, - anon_sym_try, - [255717] = 6, + anon_sym_GT2, + [261673] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(10733), 1, + ACTIONS(10752), 1, anon_sym_LBRACK, - STATE(2890), 1, + STATE(2963), 1, sym_parameter_list, - STATE(5813), 1, + STATE(5959), 1, sym__function_declarator_seq, - ACTIONS(10753), 9, + ACTIONS(10784), 9, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACK_LBRACK, @@ -502951,47 +511337,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [255744] = 12, + [261700] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(10861), 1, - anon_sym_COLON_COLON, - ACTIONS(10863), 1, - anon_sym_template, - ACTIONS(11059), 1, - sym_identifier, - STATE(3555), 1, - sym_template_method, - STATE(3560), 1, - sym_dependent_field_identifier, - STATE(3571), 1, - sym_qualified_field_identifier, - STATE(6285), 1, - sym__scope_resolution, - STATE(7745), 1, - sym_operator_name, - STATE(8601), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [255783] = 7, + sym_comment, + ACTIONS(4187), 1, + anon_sym_COLON_COLON, + ACTIONS(6580), 1, + anon_sym_LT, + STATE(6052), 1, + sym_template_argument_list, + ACTIONS(4934), 2, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(4927), 8, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [261727] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(10735), 1, + ACTIONS(10786), 1, anon_sym___attribute, - ACTIONS(11061), 1, + ACTIONS(11108), 1, anon_sym_LBRACK, - STATE(3088), 1, + STATE(3111), 1, sym_parameter_list, - STATE(6049), 1, + STATE(6153), 1, sym__function_declarator_seq, - ACTIONS(10731), 8, + ACTIONS(10784), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym___attribute__, @@ -503000,20 +511380,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [255812] = 7, + [261756] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(10751), 1, + ACTIONS(10815), 1, anon_sym___attribute, - ACTIONS(11061), 1, + ACTIONS(11108), 1, anon_sym_LBRACK, - STATE(3088), 1, + STATE(3111), 1, sym_parameter_list, - STATE(6049), 1, + STATE(6153), 1, sym__function_declarator_seq, - ACTIONS(10749), 8, + ACTIONS(10813), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym___attribute__, @@ -503022,20 +511402,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [255841] = 7, + [261785] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(10755), 1, + ACTIONS(10819), 1, anon_sym___attribute, - ACTIONS(11061), 1, + ACTIONS(11108), 1, anon_sym_LBRACK, - STATE(3088), 1, + STATE(3111), 1, sym_parameter_list, - STATE(6049), 1, + STATE(6153), 1, sym__function_declarator_seq, - ACTIONS(10753), 8, + ACTIONS(10817), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym___attribute__, @@ -503044,42 +511424,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [255870] = 7, + [261814] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(5020), 1, anon_sym_LPAREN2, - ACTIONS(10763), 1, - anon_sym___attribute, - ACTIONS(11061), 1, + ACTIONS(5022), 1, + anon_sym_STAR, + ACTIONS(5024), 1, + anon_sym_AMP_AMP, + ACTIONS(5026), 1, + anon_sym_AMP, + ACTIONS(8147), 1, anon_sym_LBRACK, - STATE(3088), 1, + STATE(3113), 1, sym_parameter_list, - STATE(6049), 1, + STATE(6109), 1, sym__function_declarator_seq, - ACTIONS(10761), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [255899] = 7, + STATE(7019), 1, + sym__abstract_declarator, + STATE(6099), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [261849] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(10743), 1, + ACTIONS(10754), 1, anon_sym___attribute, - ACTIONS(11061), 1, + ACTIONS(11108), 1, anon_sym_LBRACK, - STATE(3088), 1, + STATE(3111), 1, sym_parameter_list, - STATE(6049), 1, + STATE(6153), 1, sym__function_declarator_seq, - ACTIONS(10741), 8, + ACTIONS(10750), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym___attribute__, @@ -503088,20 +511471,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [255928] = 7, + [261878] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(10747), 1, + ACTIONS(10803), 1, anon_sym___attribute, - ACTIONS(11061), 1, + ACTIONS(11108), 1, anon_sym_LBRACK, - STATE(3088), 1, + STATE(3111), 1, sym_parameter_list, - STATE(6049), 1, + STATE(6153), 1, sym__function_declarator_seq, - ACTIONS(10745), 8, + ACTIONS(10801), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym___attribute__, @@ -503110,20 +511493,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [255957] = 7, + [261907] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(10759), 1, + ACTIONS(10807), 1, anon_sym___attribute, - ACTIONS(11061), 1, + ACTIONS(11108), 1, anon_sym_LBRACK, - STATE(3088), 1, + STATE(3111), 1, sym_parameter_list, - STATE(6049), 1, + STATE(6153), 1, sym__function_declarator_seq, - ACTIONS(10757), 8, + ACTIONS(10805), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym___attribute__, @@ -503132,20 +511515,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [255986] = 7, + [261936] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(7918), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6244), 2, + anon_sym_LBRACK, + anon_sym___asm, + STATE(5804), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6246), 8, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + [261961] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(10767), 1, + ACTIONS(10762), 1, anon_sym___attribute, - ACTIONS(11061), 1, + ACTIONS(11108), 1, anon_sym_LBRACK, - STATE(3088), 1, + STATE(3111), 1, sym_parameter_list, - STATE(6049), 1, + STATE(6153), 1, sym__function_declarator_seq, - ACTIONS(10765), 8, + ACTIONS(10760), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym___attribute__, @@ -503154,1209 +511557,904 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [256015] = 9, + [261990] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(10001), 1, - anon_sym_LBRACK, - ACTIONS(10875), 1, + ACTIONS(10833), 1, anon_sym___attribute, - STATE(2981), 1, + ACTIONS(11108), 1, + anon_sym_LBRACK, + STATE(3111), 1, sym_parameter_list, - STATE(5979), 1, + STATE(6153), 1, sym__function_declarator_seq, - STATE(5949), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(10873), 5, + ACTIONS(10831), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym___attribute__, anon_sym_EQ, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [256048] = 9, + anon_sym_requires, + [262019] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(11043), 1, + ACTIONS(11085), 1, sym_identifier, - ACTIONS(11045), 1, + ACTIONS(11087), 1, aux_sym_preproc_if_token1, - ACTIONS(11063), 1, + ACTIONS(11110), 1, anon_sym_RBRACE, - ACTIONS(11047), 2, + ACTIONS(11089), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(7898), 2, + STATE(7930), 2, sym_preproc_call, sym_enumerator, - STATE(8730), 2, + STATE(8449), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(6435), 3, + STATE(6443), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [256081] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(8093), 1, - anon_sym_LBRACK, - ACTIONS(10917), 1, - anon_sym_COLON, - ACTIONS(11031), 1, - anon_sym_EQ, - ACTIONS(11033), 1, - anon_sym_try, - STATE(503), 1, - sym_compound_statement, - STATE(7832), 1, - sym_field_initializer_list, - ACTIONS(5036), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(523), 4, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - sym_pure_virtual_clause, - [256116] = 9, + [262052] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(11043), 1, + ACTIONS(11085), 1, sym_identifier, - ACTIONS(11045), 1, + ACTIONS(11087), 1, aux_sym_preproc_if_token1, - ACTIONS(11065), 1, + ACTIONS(11112), 1, anon_sym_RBRACE, - ACTIONS(11047), 2, + ACTIONS(11089), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(7809), 2, + STATE(7772), 2, sym_preproc_call, sym_enumerator, - STATE(8367), 2, + STATE(8475), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(6325), 3, + STATE(6424), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [256149] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7838), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(11069), 2, - anon_sym___attribute, - anon_sym_LBRACK, - STATE(5687), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(11067), 8, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [256174] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11055), 1, - anon_sym_LT, - STATE(6357), 1, - sym_template_argument_list, - ACTIONS(11073), 2, - anon_sym___attribute, - anon_sym_LBRACK, - ACTIONS(11071), 9, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [256199] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - ACTIONS(10733), 1, - anon_sym_LBRACK, - STATE(2890), 1, - sym_parameter_list, - STATE(5813), 1, - sym__function_declarator_seq, - ACTIONS(10731), 9, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [256226] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - ACTIONS(10001), 1, - anon_sym_LBRACK, - ACTIONS(10840), 1, - anon_sym___attribute, - STATE(2981), 1, - sym_parameter_list, - STATE(5979), 1, - sym__function_declarator_seq, - STATE(5949), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(10838), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_GT2, - [256259] = 12, + [262085] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(10844), 1, - anon_sym_COLON_COLON, - ACTIONS(10846), 1, - anon_sym_template, - ACTIONS(11041), 1, + ACTIONS(17), 1, + sym_preproc_directive, + ACTIONS(11085), 1, sym_identifier, - STATE(2365), 1, - sym_qualified_field_identifier, - STATE(2401), 1, - sym_template_method, - STATE(2402), 1, - sym_dependent_field_identifier, - STATE(6302), 1, - sym__scope_resolution, - STATE(7700), 1, - sym_operator_name, - STATE(8601), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [256298] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5012), 1, - anon_sym_LPAREN2, - ACTIONS(8131), 1, - anon_sym_LBRACK, - ACTIONS(8473), 1, - anon_sym_STAR, - ACTIONS(8475), 1, - anon_sym_AMP_AMP, - ACTIONS(8477), 1, - anon_sym_AMP, - STATE(3053), 1, - sym_parameter_list, - STATE(6087), 1, - sym__function_declarator_seq, - STATE(6678), 1, - sym__abstract_declarator, - STATE(6092), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [256333] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - ACTIONS(10733), 1, - anon_sym_LBRACK, - STATE(2890), 1, - sym_parameter_list, - STATE(5813), 1, - sym__function_declarator_seq, - ACTIONS(10757), 9, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [256360] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - ACTIONS(10733), 1, - anon_sym_LBRACK, - STATE(2890), 1, - sym_parameter_list, - STATE(5813), 1, - sym__function_declarator_seq, - ACTIONS(10761), 9, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [256387] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(894), 1, - anon_sym_LBRACE, - ACTIONS(8093), 1, - anon_sym_LBRACK, - ACTIONS(10917), 1, - anon_sym_COLON, - ACTIONS(10919), 1, - anon_sym_EQ, - ACTIONS(10921), 1, - anon_sym_try, - STATE(696), 1, - sym_compound_statement, - STATE(7585), 1, - sym_field_initializer_list, - ACTIONS(5036), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(650), 4, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - sym_pure_virtual_clause, - [256422] = 5, + ACTIONS(11087), 1, + aux_sym_preproc_if_token1, + ACTIONS(11114), 1, + anon_sym_RBRACE, + ACTIONS(11089), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(7828), 2, + sym_preproc_call, + sym_enumerator, + STATE(8106), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(6569), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [262118] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6249), 2, - anon_sym___attribute, - anon_sym_LBRACK, - STATE(5795), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6251), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACK, - anon_sym_try, - [256447] = 5, + ACTIONS(17), 1, + sym_preproc_directive, + ACTIONS(11085), 1, + sym_identifier, + ACTIONS(11087), 1, + aux_sym_preproc_if_token1, + ACTIONS(11116), 1, + anon_sym_RBRACE, + ACTIONS(11089), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(7827), 2, + sym_preproc_call, + sym_enumerator, + STATE(8104), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(6569), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [262151] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7838), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6249), 2, - anon_sym_LBRACK, - anon_sym___asm, - STATE(5687), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6251), 8, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [256472] = 9, + ACTIONS(17), 1, + sym_preproc_directive, + ACTIONS(11085), 1, + sym_identifier, + ACTIONS(11087), 1, + aux_sym_preproc_if_token1, + ACTIONS(11118), 1, + anon_sym_RBRACE, + ACTIONS(11089), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(7854), 2, + sym_preproc_call, + sym_enumerator, + STATE(8423), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(6452), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [262184] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(11043), 1, + ACTIONS(11085), 1, sym_identifier, - ACTIONS(11045), 1, + ACTIONS(11087), 1, aux_sym_preproc_if_token1, - ACTIONS(11075), 1, + ACTIONS(11120), 1, anon_sym_RBRACE, - ACTIONS(11047), 2, + ACTIONS(11089), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(7616), 2, + STATE(7982), 2, sym_preproc_call, sym_enumerator, - STATE(8127), 2, + STATE(8626), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(6320), 3, + STATE(6429), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [256505] = 10, + [262217] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(297), 1, - anon_sym_LBRACE, - ACTIONS(8093), 1, + ACTIONS(4187), 1, + anon_sym_COLON_COLON, + ACTIONS(6580), 1, + anon_sym_LT, + STATE(6052), 1, + sym_template_argument_list, + ACTIONS(8123), 2, anon_sym_LBRACK, - ACTIONS(10917), 1, - anon_sym_COLON, - ACTIONS(10976), 1, - anon_sym_EQ, - ACTIONS(10978), 1, - anon_sym_try, - STATE(284), 1, - sym_compound_statement, - STATE(7686), 1, - sym_field_initializer_list, - ACTIONS(5036), 2, + anon_sym___asm, + ACTIONS(5044), 8, + anon_sym_COMMA, anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - STATE(285), 4, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - sym_pure_virtual_clause, - [256540] = 10, + anon_sym_LBRACE, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [262244] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5012), 1, - anon_sym_LPAREN2, - ACTIONS(5014), 1, - anon_sym_STAR, - ACTIONS(5016), 1, - anon_sym_AMP_AMP, - ACTIONS(5018), 1, - anon_sym_AMP, - ACTIONS(8131), 1, + ACTIONS(7913), 1, + anon_sym_DASH_GT, + ACTIONS(7924), 1, + anon_sym_requires, + ACTIONS(9150), 1, anon_sym_LBRACK, - STATE(3004), 1, - sym_parameter_list, - STATE(6087), 1, - sym__function_declarator_seq, - STATE(6928), 1, - sym__abstract_declarator, - STATE(6092), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [256575] = 9, + STATE(6598), 1, + sym_trailing_return_type, + ACTIONS(6037), 2, + anon_sym_final, + anon_sym_override, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5927), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9139), 3, + anon_sym_LPAREN2, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + [262277] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(11043), 1, + ACTIONS(11085), 1, sym_identifier, - ACTIONS(11045), 1, + ACTIONS(11087), 1, aux_sym_preproc_if_token1, - ACTIONS(11077), 1, + ACTIONS(11122), 1, anon_sym_RBRACE, - ACTIONS(11047), 2, + ACTIONS(11089), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(7615), 2, + STATE(8028), 2, sym_preproc_call, sym_enumerator, - STATE(8200), 2, + STATE(8865), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(6329), 3, + STATE(6569), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [256608] = 9, + [262310] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, + ACTIONS(7918), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - ACTIONS(10001), 1, - anon_sym_LBRACK, - ACTIONS(10887), 1, + ACTIONS(11126), 2, anon_sym___attribute, - STATE(2981), 1, - sym_parameter_list, - STATE(5979), 1, - sym__function_declarator_seq, - STATE(5949), 2, + anon_sym_LBRACK, + STATE(5804), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(10885), 5, + ACTIONS(11124), 8, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACE, anon_sym_EQ, - anon_sym_GT2, - [256641] = 9, + anon_sym_try, + [262335] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7867), 1, + ACTIONS(7913), 1, anon_sym_DASH_GT, - ACTIONS(9193), 1, - anon_sym_LBRACK, - ACTIONS(9478), 1, + ACTIONS(7924), 1, anon_sym_requires, - STATE(6471), 1, + ACTIONS(9382), 1, + anon_sym_LBRACK, + STATE(6600), 1, sym_trailing_return_type, - ACTIONS(9195), 2, + ACTIONS(6037), 2, anon_sym_final, anon_sym_override, - STATE(5606), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5877), 2, + STATE(5934), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9182), 3, + ACTIONS(9371), 3, anon_sym_LPAREN2, anon_sym_COLON, anon_sym_LBRACK_LBRACK, - [256674] = 9, + [262368] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7867), 1, + ACTIONS(7913), 1, anon_sym_DASH_GT, - ACTIONS(9355), 1, - anon_sym_LBRACK, - ACTIONS(9678), 1, + ACTIONS(7924), 1, anon_sym_requires, - STATE(6476), 1, + ACTIONS(9700), 1, + anon_sym_LBRACK, + STATE(6602), 1, sym_trailing_return_type, - ACTIONS(9357), 2, + ACTIONS(6037), 2, anon_sym_final, anon_sym_override, - STATE(5606), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5839), 2, + STATE(5924), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9344), 3, + ACTIONS(9689), 3, anon_sym_LPAREN2, anon_sym_COLON, anon_sym_LBRACK_LBRACK, - [256707] = 9, + [262401] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7867), 1, + ACTIONS(7913), 1, anon_sym_DASH_GT, - ACTIONS(9676), 1, - anon_sym_LBRACK, - ACTIONS(9792), 1, + ACTIONS(7924), 1, anon_sym_requires, - STATE(6477), 1, + ACTIONS(9947), 1, + anon_sym_LBRACK, + STATE(6603), 1, sym_trailing_return_type, - ACTIONS(9681), 2, + ACTIONS(6037), 2, anon_sym_final, anon_sym_override, - STATE(5606), 2, + STATE(5593), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5876), 2, + STATE(5874), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9665), 3, + ACTIONS(9945), 3, anon_sym_LPAREN2, anon_sym_COLON, anon_sym_LBRACK_LBRACK, - [256740] = 9, + [262434] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7867), 1, - anon_sym_DASH_GT, - ACTIONS(9845), 1, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(10752), 1, anon_sym_LBRACK, - ACTIONS(11079), 1, - anon_sym_requires, - STATE(6479), 1, - sym_trailing_return_type, - ACTIONS(9919), 2, + STATE(2963), 1, + sym_parameter_list, + STATE(5959), 1, + sym__function_declarator_seq, + ACTIONS(10750), 9, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_final, anon_sym_override, - STATE(5606), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5846), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9843), 3, + anon_sym_try, + anon_sym_requires, + [262461] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7918), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10736), 2, + anon_sym_LBRACK, + anon_sym___asm, + STATE(5804), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(10734), 8, + anon_sym_COMMA, anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - [256773] = 11, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + [262486] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(11082), 1, - sym_identifier, - ACTIONS(11084), 1, + ACTIONS(4589), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10214), 1, anon_sym_COLON_COLON, - STATE(6322), 1, + ACTIONS(11128), 1, + sym_identifier, + STATE(5956), 1, sym__scope_resolution, - STATE(7748), 1, - sym_operator_name, - STATE(7776), 1, - sym_field_initializer, - STATE(6975), 2, - sym_template_method, - sym_qualified_field_identifier, - STATE(8601), 3, + ACTIONS(4591), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(7916), 2, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - [256810] = 9, + [262521] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(10001), 1, + ACTIONS(10071), 1, anon_sym_LBRACK, - ACTIONS(10867), 1, + ACTIONS(10899), 1, anon_sym___attribute, - STATE(2981), 1, + STATE(3028), 1, sym_parameter_list, - STATE(5979), 1, + STATE(6203), 1, sym__function_declarator_seq, - STATE(5949), 2, + STATE(6081), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(10865), 5, + ACTIONS(10897), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym___attribute__, anon_sym_EQ, anon_sym_GT2, - [256843] = 9, + [262554] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(17), 1, - sym_preproc_directive, - ACTIONS(11043), 1, - sym_identifier, - ACTIONS(11045), 1, - aux_sym_preproc_if_token1, - ACTIONS(11086), 1, - anon_sym_RBRACE, - ACTIONS(11047), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(7671), 2, - sym_preproc_call, - sym_enumerator, - STATE(8439), 2, - sym_preproc_if_in_enumerator_list_no_comma, - sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(6435), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [256876] = 9, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(10071), 1, + anon_sym_LBRACK, + ACTIONS(10895), 1, + anon_sym___attribute, + STATE(3028), 1, + sym_parameter_list, + STATE(6203), 1, + sym__function_declarator_seq, + STATE(6081), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(10893), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_EQ, + anon_sym_GT2, + [262587] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(11043), 1, + ACTIONS(11085), 1, sym_identifier, - ACTIONS(11045), 1, + ACTIONS(11087), 1, aux_sym_preproc_if_token1, - ACTIONS(11088), 1, + ACTIONS(11130), 1, anon_sym_RBRACE, - ACTIONS(11047), 2, + ACTIONS(11089), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(7599), 2, + STATE(7727), 2, sym_preproc_call, sym_enumerator, - STATE(7953), 2, + STATE(8886), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(6324), 3, + STATE(6440), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [256909] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(11084), 1, - anon_sym_COLON_COLON, - ACTIONS(11090), 1, - sym_identifier, - ACTIONS(11092), 1, - anon_sym_template, - STATE(2365), 1, - sym_qualified_field_identifier, - STATE(2401), 1, - sym_template_method, - STATE(2402), 1, - sym_dependent_field_identifier, - STATE(6322), 1, - sym__scope_resolution, - STATE(7748), 1, - sym_operator_name, - STATE(8601), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [256948] = 9, + [262620] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(11043), 1, + ACTIONS(11085), 1, sym_identifier, - ACTIONS(11045), 1, + ACTIONS(11087), 1, aux_sym_preproc_if_token1, - ACTIONS(11094), 1, + ACTIONS(11132), 1, anon_sym_RBRACE, - ACTIONS(11047), 2, + ACTIONS(11089), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(7595), 2, + STATE(7740), 2, sym_preproc_call, sym_enumerator, - STATE(7949), 2, + STATE(8214), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(6280), 3, + STATE(6569), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [256981] = 9, + [262653] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11136), 1, + anon_sym_LT, + STATE(6475), 1, + sym_template_argument_list, + ACTIONS(11138), 2, + anon_sym___attribute, + anon_sym_LBRACK, + ACTIONS(11134), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [262678] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(11043), 1, + ACTIONS(11085), 1, sym_identifier, - ACTIONS(11045), 1, + ACTIONS(11087), 1, aux_sym_preproc_if_token1, - ACTIONS(11096), 1, + ACTIONS(11140), 1, anon_sym_RBRACE, - ACTIONS(11047), 2, + ACTIONS(11089), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(7620), 2, + STATE(8030), 2, sym_preproc_call, sym_enumerator, - STATE(8153), 2, + STATE(8868), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(6435), 3, + STATE(6456), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [257014] = 9, + [262711] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(11043), 1, + ACTIONS(11085), 1, sym_identifier, - ACTIONS(11045), 1, + ACTIONS(11087), 1, aux_sym_preproc_if_token1, - ACTIONS(11098), 1, + ACTIONS(11142), 1, anon_sym_RBRACE, - ACTIONS(11047), 2, + ACTIONS(11089), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(7831), 2, + STATE(7950), 2, sym_preproc_call, sym_enumerator, - STATE(8438), 2, + STATE(8526), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(6435), 3, + STATE(6569), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [257047] = 10, + [262744] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(8093), 1, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(10752), 1, anon_sym_LBRACK, - ACTIONS(10917), 1, + STATE(2963), 1, + sym_parameter_list, + STATE(5959), 1, + sym__function_declarator_seq, + ACTIONS(10831), 9, + anon_sym_SEMI, anon_sym_COLON, - ACTIONS(11031), 1, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_EQ, - ACTIONS(11033), 1, + anon_sym_final, + anon_sym_override, anon_sym_try, - STATE(510), 1, - sym_compound_statement, - STATE(7755), 1, - sym_field_initializer_list, - ACTIONS(5036), 2, + anon_sym_requires, + [262771] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11136), 1, + anon_sym_LT, + STATE(6507), 1, + sym_template_argument_list, + ACTIONS(11146), 2, + anon_sym___attribute, + anon_sym_LBRACK, + ACTIONS(11144), 9, + anon_sym_COMMA, anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACK_LBRACK, - STATE(512), 4, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - sym_pure_virtual_clause, - [257082] = 10, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [262796] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, - anon_sym_template, + ACTIONS(1850), 1, + anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(4551), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(10162), 1, + ACTIONS(10956), 1, anon_sym_COLON_COLON, - ACTIONS(11100), 1, + ACTIONS(10958), 1, + anon_sym_template, + ACTIONS(11148), 1, sym_identifier, - STATE(5858), 1, + STATE(2399), 1, + sym_dependent_field_identifier, + STATE(2409), 1, + sym_qualified_field_identifier, + STATE(2438), 1, + sym_template_method, + STATE(6446), 1, sym__scope_resolution, - ACTIONS(4553), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(7778), 2, - sym_identifier_parameter_pack_expansion, - sym_qualified_identifier, - STATE(8601), 3, + STATE(7753), 1, + sym_operator_name, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - [257117] = 9, + [262835] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(17), 1, - sym_preproc_directive, - ACTIONS(11043), 1, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(10964), 1, + anon_sym_COLON_COLON, + ACTIONS(10966), 1, + anon_sym_template, + ACTIONS(11148), 1, sym_identifier, - ACTIONS(11045), 1, - aux_sym_preproc_if_token1, - ACTIONS(11102), 1, - anon_sym_RBRACE, - ACTIONS(11047), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(7696), 2, - sym_preproc_call, - sym_enumerator, - STATE(8007), 2, - sym_preproc_if_in_enumerator_list_no_comma, - sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(6337), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [257150] = 9, + STATE(2399), 1, + sym_dependent_field_identifier, + STATE(2409), 1, + sym_qualified_field_identifier, + STATE(2438), 1, + sym_template_method, + STATE(6447), 1, + sym__scope_resolution, + STATE(7806), 1, + sym_operator_name, + STATE(8569), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [262874] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(11043), 1, + ACTIONS(11085), 1, sym_identifier, - ACTIONS(11045), 1, + ACTIONS(11087), 1, aux_sym_preproc_if_token1, - ACTIONS(11104), 1, + ACTIONS(11150), 1, anon_sym_RBRACE, - ACTIONS(11047), 2, + ACTIONS(11089), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(7842), 2, + STATE(7735), 2, sym_preproc_call, sym_enumerator, - STATE(8485), 2, + STATE(8180), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(6435), 3, + STATE(6569), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [257183] = 9, + [262907] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7867), 1, - anon_sym_DASH_GT, - ACTIONS(7906), 1, - anon_sym_requires, - ACTIONS(9193), 1, + ACTIONS(894), 1, + anon_sym_LBRACE, + ACTIONS(8123), 1, anon_sym_LBRACK, - STATE(6455), 1, - sym_trailing_return_type, - ACTIONS(6020), 2, - anon_sym_final, - anon_sym_override, - STATE(5606), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5877), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9182), 3, - anon_sym_LPAREN2, + ACTIONS(10970), 1, anon_sym_COLON, + ACTIONS(11009), 1, + anon_sym_EQ, + ACTIONS(11011), 1, + anon_sym_try, + STATE(718), 1, + sym_compound_statement, + STATE(7821), 1, + sym_field_initializer_list, + ACTIONS(5044), 2, + anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - [257216] = 10, + STATE(719), 4, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + sym_pure_virtual_clause, + [262942] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(866), 1, + ACTIONS(297), 1, anon_sym_LBRACE, - ACTIONS(8093), 1, + ACTIONS(8123), 1, anon_sym_LBRACK, - ACTIONS(10917), 1, + ACTIONS(10970), 1, anon_sym_COLON, - ACTIONS(10992), 1, + ACTIONS(11023), 1, anon_sym_EQ, - ACTIONS(10994), 1, + ACTIONS(11025), 1, anon_sym_try, - STATE(765), 1, + STATE(314), 1, sym_compound_statement, - STATE(7866), 1, + STATE(7959), 1, sym_field_initializer_list, - ACTIONS(5036), 2, + ACTIONS(5044), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(766), 4, + STATE(315), 4, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, sym_pure_virtual_clause, - [257251] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(17), 1, - sym_preproc_directive, - ACTIONS(11043), 1, - sym_identifier, - ACTIONS(11045), 1, - aux_sym_preproc_if_token1, - ACTIONS(11106), 1, - anon_sym_RBRACE, - ACTIONS(11047), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(7853), 2, - sym_preproc_call, - sym_enumerator, - STATE(8544), 2, - sym_preproc_if_in_enumerator_list_no_comma, - sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(6336), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [257284] = 9, + [262977] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7867), 1, - anon_sym_DASH_GT, - ACTIONS(7906), 1, - anon_sym_requires, - ACTIONS(9355), 1, - anon_sym_LBRACK, - STATE(6457), 1, - sym_trailing_return_type, - ACTIONS(6020), 2, - anon_sym_final, - anon_sym_override, - STATE(5606), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5839), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9344), 3, - anon_sym_LPAREN2, - anon_sym_COLON, + ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - [257317] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7867), 1, - anon_sym_DASH_GT, - ACTIONS(7906), 1, - anon_sym_requires, - ACTIONS(9676), 1, - anon_sym_LBRACK, - STATE(6458), 1, - sym_trailing_return_type, - ACTIONS(6020), 2, - anon_sym_final, - anon_sym_override, - STATE(5606), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5876), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9665), 3, + ACTIONS(9798), 1, anon_sym_LPAREN2, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - [257350] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7867), 1, - anon_sym_DASH_GT, - ACTIONS(7906), 1, - anon_sym_requires, - ACTIONS(9845), 1, + ACTIONS(10071), 1, anon_sym_LBRACK, - STATE(6460), 1, - sym_trailing_return_type, - ACTIONS(6020), 2, - anon_sym_final, - anon_sym_override, - STATE(5606), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5846), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9843), 3, - anon_sym_LPAREN2, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - [257383] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(17), 1, - sym_preproc_directive, - ACTIONS(11043), 1, - sym_identifier, - ACTIONS(11045), 1, - aux_sym_preproc_if_token1, - ACTIONS(11108), 1, - anon_sym_RBRACE, - ACTIONS(11047), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(7565), 2, - sym_preproc_call, - sym_enumerator, - STATE(8238), 2, - sym_preproc_if_in_enumerator_list_no_comma, - sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(6435), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [257416] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(17), 1, - sym_preproc_directive, - ACTIONS(11043), 1, - sym_identifier, - ACTIONS(11045), 1, - aux_sym_preproc_if_token1, - ACTIONS(11110), 1, - anon_sym_RBRACE, - ACTIONS(11047), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(7607), 2, - sym_preproc_call, - sym_enumerator, - STATE(8012), 2, - sym_preproc_if_in_enumerator_list_no_comma, - sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(6435), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [257449] = 9, + ACTIONS(10903), 1, + anon_sym___attribute, + STATE(3028), 1, + sym_parameter_list, + STATE(6203), 1, + sym__function_declarator_seq, + STATE(6081), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(10901), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_EQ, + anon_sym_GT2, + [263010] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(11043), 1, + ACTIONS(11085), 1, sym_identifier, - ACTIONS(11045), 1, + ACTIONS(11087), 1, aux_sym_preproc_if_token1, - ACTIONS(11112), 1, + ACTIONS(11152), 1, anon_sym_RBRACE, - ACTIONS(11047), 2, + ACTIONS(11089), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(7896), 2, + STATE(7729), 2, sym_preproc_call, sym_enumerator, - STATE(8723), 2, + STATE(8928), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(6346), 3, + STATE(6569), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [257482] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(11082), 1, - sym_identifier, - ACTIONS(11084), 1, - anon_sym_COLON_COLON, - STATE(6322), 1, - sym__scope_resolution, - STATE(7437), 1, - sym_field_initializer, - STATE(7748), 1, - sym_operator_name, - STATE(6975), 2, - sym_template_method, - sym_qualified_field_identifier, - STATE(8601), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [257519] = 10, + [263043] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(894), 1, - anon_sym_LBRACE, - ACTIONS(8093), 1, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(10752), 1, anon_sym_LBRACK, - ACTIONS(10917), 1, + STATE(2963), 1, + sym_parameter_list, + STATE(5959), 1, + sym__function_declarator_seq, + ACTIONS(10801), 9, + anon_sym_SEMI, anon_sym_COLON, - ACTIONS(10919), 1, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_EQ, - ACTIONS(10921), 1, + anon_sym_final, + anon_sym_override, anon_sym_try, - STATE(708), 1, - sym_compound_statement, - STATE(7614), 1, - sym_field_initializer_list, - ACTIONS(5036), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(709), 4, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - sym_pure_virtual_clause, - [257554] = 5, + anon_sym_requires, + [263070] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7838), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10641), 2, - anon_sym_LBRACK, - anon_sym___asm, - STATE(5687), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(10639), 8, - anon_sym_COMMA, + ACTIONS(9798), 1, anon_sym_LPAREN2, + ACTIONS(10752), 1, + anon_sym_LBRACK, + STATE(2963), 1, + sym_parameter_list, + STATE(5959), 1, + sym__function_declarator_seq, + ACTIONS(10805), 9, anon_sym_SEMI, anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [257579] = 10, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [263097] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(297), 1, anon_sym_LBRACE, - ACTIONS(8093), 1, + ACTIONS(8123), 1, anon_sym_LBRACK, - ACTIONS(10917), 1, + ACTIONS(10970), 1, anon_sym_COLON, - ACTIONS(10976), 1, + ACTIONS(11023), 1, anon_sym_EQ, - ACTIONS(10978), 1, + ACTIONS(11025), 1, anon_sym_try, - STATE(309), 1, + STATE(289), 1, sym_compound_statement, - STATE(7581), 1, + STATE(7811), 1, sym_field_initializer_list, - ACTIONS(5036), 2, + ACTIONS(5044), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(310), 4, + STATE(290), 4, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, sym_pure_virtual_clause, - [257614] = 9, + [263132] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(11043), 1, + ACTIONS(11085), 1, sym_identifier, - ACTIONS(11045), 1, + ACTIONS(11087), 1, aux_sym_preproc_if_token1, - ACTIONS(11114), 1, + ACTIONS(11154), 1, anon_sym_RBRACE, - ACTIONS(11047), 2, + ACTIONS(11089), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(7719), 2, + STATE(7711), 2, sym_preproc_call, sym_enumerator, - STATE(8070), 2, + STATE(8463), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(6435), 3, + STATE(6569), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [257647] = 6, + [263165] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(10752), 1, + anon_sym_LBRACK, + STATE(2963), 1, + sym_parameter_list, + STATE(5959), 1, + sym__function_declarator_seq, + ACTIONS(10813), 9, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [263192] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(10733), 1, + ACTIONS(10752), 1, anon_sym_LBRACK, - STATE(2890), 1, + STATE(2963), 1, sym_parameter_list, - STATE(5813), 1, + STATE(5959), 1, sym__function_declarator_seq, - ACTIONS(10741), 9, + ACTIONS(10817), 9, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACK_LBRACK, @@ -504366,474 +512464,234 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [257674] = 10, + [263219] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(866), 1, anon_sym_LBRACE, - ACTIONS(8093), 1, + ACTIONS(8123), 1, anon_sym_LBRACK, - ACTIONS(10917), 1, + ACTIONS(10970), 1, anon_sym_COLON, - ACTIONS(10992), 1, + ACTIONS(10991), 1, anon_sym_EQ, - ACTIONS(10994), 1, + ACTIONS(10993), 1, anon_sym_try, - STATE(653), 1, + STATE(803), 1, sym_compound_statement, - STATE(7594), 1, + STATE(7945), 1, sym_field_initializer_list, - ACTIONS(5036), 2, + ACTIONS(5044), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(655), 4, + STATE(805), 4, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, sym_pure_virtual_clause, - [257709] = 9, + [263254] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(11043), 1, + ACTIONS(11085), 1, sym_identifier, - ACTIONS(11045), 1, + ACTIONS(11087), 1, aux_sym_preproc_if_token1, - ACTIONS(11116), 1, + ACTIONS(11156), 1, anon_sym_RBRACE, - ACTIONS(11047), 2, + ACTIONS(11089), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(7852), 2, + STATE(7878), 2, sym_preproc_call, sym_enumerator, - STATE(8664), 2, + STATE(8260), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(6435), 3, + STATE(6461), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [257742] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - ACTIONS(10733), 1, - anon_sym_LBRACK, - STATE(2890), 1, - sym_parameter_list, - STATE(5813), 1, - sym__function_declarator_seq, - ACTIONS(10745), 9, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [257769] = 9, + [263287] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(11043), 1, + ACTIONS(11085), 1, sym_identifier, - ACTIONS(11045), 1, + ACTIONS(11087), 1, aux_sym_preproc_if_token1, - ACTIONS(11118), 1, + ACTIONS(11158), 1, anon_sym_RBRACE, - ACTIONS(11047), 2, + ACTIONS(11089), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(7688), 2, + STATE(7981), 2, sym_preproc_call, sym_enumerator, - STATE(7978), 2, + STATE(8619), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(6343), 3, + STATE(6569), 3, sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [257802] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - ACTIONS(10001), 1, - anon_sym_LBRACK, - ACTIONS(10905), 1, - anon_sym___attribute, - STATE(2981), 1, - sym_parameter_list, - STATE(5979), 1, - sym__function_declarator_seq, - STATE(5949), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(10903), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_GT2, - [257835] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(10719), 1, - anon_sym_COLON_COLON, - ACTIONS(10721), 1, - anon_sym_template, - ACTIONS(11120), 1, - sym_identifier, - STATE(3390), 1, - sym_template_method, - STATE(3418), 1, - sym_qualified_field_identifier, - STATE(3454), 1, - sym_dependent_field_identifier, - STATE(6350), 1, - sym__scope_resolution, - STATE(7892), 1, - sym_operator_name, - STATE(8601), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [257874] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7840), 1, - anon_sym_DASH_GT, - ACTIONS(10810), 1, - anon_sym_requires, - STATE(6067), 1, - sym_trailing_return_type, - ACTIONS(10628), 2, - anon_sym_final, - anon_sym_override, - STATE(5925), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6045), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9843), 3, - anon_sym_LPAREN2, - anon_sym_COLON, - anon_sym_LBRACK, - [257904] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(6971), 1, - anon_sym_LBRACE, - ACTIONS(9613), 1, - sym_identifier, - ACTIONS(9625), 1, - anon_sym_COLON_COLON, - STATE(1893), 1, - sym_template_type, - STATE(2876), 1, - sym_enumerator_list, - STATE(6604), 1, - sym__scope_resolution, - STATE(4057), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(8601), 2, - sym_decltype, - sym_dependent_type_identifier, - [257940] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(6971), 1, - anon_sym_LBRACE, - ACTIONS(8055), 1, - anon_sym_COLON_COLON, - ACTIONS(9623), 1, - sym_identifier, - STATE(1893), 1, - sym_template_type, - STATE(3692), 1, - sym_enumerator_list, - STATE(6592), 1, - sym__scope_resolution, - STATE(6408), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(8601), 2, - sym_decltype, - sym_dependent_type_identifier, - [257976] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(7951), 1, - anon_sym_LBRACE, - ACTIONS(9578), 1, - anon_sym_COLON_COLON, - ACTIONS(9638), 1, - sym_identifier, - STATE(3681), 1, - sym_template_type, - STATE(3951), 1, - sym_enumerator_list, - STATE(6634), 1, - sym__scope_resolution, - STATE(3592), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(8601), 2, - sym_decltype, - sym_dependent_type_identifier, - [258012] = 11, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [263320] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, + ACTIONS(1850), 1, + anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(6186), 1, - anon_sym_LBRACE, - ACTIONS(9424), 1, + ACTIONS(11095), 1, anon_sym_COLON_COLON, - ACTIONS(9642), 1, + ACTIONS(11106), 1, sym_identifier, - STATE(1816), 1, - sym_template_type, - STATE(2334), 1, - sym_enumerator_list, - STATE(6626), 1, + STATE(6396), 1, sym__scope_resolution, - STATE(3878), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(8601), 2, + STATE(7774), 1, + sym_field_initializer, + STATE(7923), 1, + sym_operator_name, + STATE(7189), 2, + sym_template_method, + sym_qualified_field_identifier, + STATE(8569), 3, sym_decltype, + sym_template_type, sym_dependent_type_identifier, - [258048] = 3, + [263357] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(8015), 6, - anon_sym_AMP, - anon_sym___based, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - ACTIONS(8017), 6, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(113), 1, + anon_sym___asm, + ACTIONS(9798), 1, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, + ACTIONS(10071), 1, anon_sym_LBRACK, - [258068] = 3, + STATE(3108), 1, + sym_parameter_list, + STATE(6203), 1, + sym__function_declarator_seq, + STATE(7733), 1, + sym_gnu_asm_expression, + ACTIONS(10075), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(11160), 2, + anon_sym_COMMA, + anon_sym_SEMI, + STATE(6081), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [263394] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6501), 2, - anon_sym___attribute, + ACTIONS(17), 1, + sym_preproc_directive, + ACTIONS(11085), 1, + sym_identifier, + ACTIONS(11087), 1, + aux_sym_preproc_if_token1, + ACTIONS(11162), 1, + anon_sym_RBRACE, + ACTIONS(11089), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(7810), 2, + sym_preproc_call, + sym_enumerator, + STATE(8895), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(6423), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [263427] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4187), 1, + anon_sym_COLON_COLON, + ACTIONS(6580), 1, + anon_sym_LT, + STATE(2705), 1, + sym_template_argument_list, + ACTIONS(8123), 3, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(6503), 10, + anon_sym___asm, + ACTIONS(5044), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [258088] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7337), 1, - anon_sym_requires, - ACTIONS(7840), 1, - anon_sym_DASH_GT, - STATE(6013), 1, - sym_trailing_return_type, - ACTIONS(7335), 2, - anon_sym_final, - anon_sym_override, - STATE(5925), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6012), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9182), 3, - anon_sym_LPAREN2, - anon_sym_COLON, - anon_sym_LBRACK, - [258118] = 11, + anon_sym_asm, + anon_sym___asm__, + [263454] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, - anon_sym_template, + ACTIONS(1850), 1, + anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(6971), 1, - anon_sym_LBRACE, - ACTIONS(8081), 1, + ACTIONS(10921), 1, anon_sym_COLON_COLON, - ACTIONS(9615), 1, + ACTIONS(10923), 1, + anon_sym_template, + ACTIONS(11164), 1, sym_identifier, - STATE(1893), 1, - sym_template_type, - STATE(3692), 1, - sym_enumerator_list, - STATE(6615), 1, + STATE(3612), 1, + sym_template_method, + STATE(3614), 1, + sym_dependent_field_identifier, + STATE(3615), 1, + sym_qualified_field_identifier, + STATE(6466), 1, sym__scope_resolution, - STATE(3947), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(8601), 2, + STATE(7702), 1, + sym_operator_name, + STATE(8569), 3, sym_decltype, + sym_template_type, sym_dependent_type_identifier, - [258154] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7337), 1, - anon_sym_requires, - ACTIONS(7840), 1, - anon_sym_DASH_GT, - STATE(6033), 1, - sym_trailing_return_type, - ACTIONS(7335), 2, - anon_sym_final, - anon_sym_override, - STATE(5925), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6032), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9344), 3, - anon_sym_LPAREN2, - anon_sym_COLON, - anon_sym_LBRACK, - [258184] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7337), 1, - anon_sym_requires, - ACTIONS(7840), 1, - anon_sym_DASH_GT, - STATE(6042), 1, - sym_trailing_return_type, - ACTIONS(7335), 2, - anon_sym_final, - anon_sym_override, - STATE(5925), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6041), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9665), 3, - anon_sym_LPAREN2, - anon_sym_COLON, - anon_sym_LBRACK, - [258214] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7322), 1, - anon_sym_DASH_GT, - ACTIONS(10810), 1, - anon_sym_requires, - STATE(6568), 1, - sym_trailing_return_type, - ACTIONS(7335), 2, - anon_sym_final, - anon_sym_override, - STATE(5925), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6045), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9843), 3, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_LBRACK, - [258244] = 8, + [263493] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7337), 1, - anon_sym_requires, - ACTIONS(7840), 1, - anon_sym_DASH_GT, - STATE(6046), 1, - sym_trailing_return_type, - ACTIONS(7335), 2, - anon_sym_final, - anon_sym_override, - STATE(5925), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6045), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9843), 3, - anon_sym_LPAREN2, - anon_sym_COLON, - anon_sym_LBRACK, - [258274] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(8081), 1, - anon_sym_COLON_COLON, - ACTIONS(8679), 1, - anon_sym_LBRACE, - ACTIONS(9615), 1, + ACTIONS(17), 1, + sym_preproc_directive, + ACTIONS(11085), 1, sym_identifier, - STATE(1893), 1, - sym_template_type, - STATE(4491), 1, - sym_enumerator_list, - STATE(6615), 1, - sym__scope_resolution, - STATE(4950), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(8601), 2, - sym_decltype, - sym_dependent_type_identifier, - [258310] = 3, + ACTIONS(11087), 1, + aux_sym_preproc_if_token1, + ACTIONS(11166), 1, + anon_sym_RBRACE, + ACTIONS(11089), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(7991), 2, + sym_preproc_call, + sym_enumerator, + STATE(8677), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(6448), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [263526] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11124), 2, + ACTIONS(11170), 2, anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(11122), 10, + ACTIONS(11168), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -504844,43 +512702,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [258330] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(6186), 1, - anon_sym_LBRACE, - ACTIONS(7990), 1, - anon_sym_COLON_COLON, - ACTIONS(9636), 1, - sym_identifier, - STATE(1816), 1, - sym_template_type, - STATE(5153), 1, - sym_enumerator_list, - STATE(6593), 1, - sym__scope_resolution, - STATE(4867), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(8601), 2, - sym_decltype, - sym_dependent_type_identifier, - [258366] = 6, + [263546] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(10733), 1, + ACTIONS(10752), 1, anon_sym_LBRACK, - STATE(2991), 1, + STATE(3077), 1, sym_parameter_list, - STATE(5813), 1, + STATE(5959), 1, sym__function_declarator_seq, - ACTIONS(10753), 8, + ACTIONS(10805), 8, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, @@ -504889,18 +512722,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [258392] = 6, + [263572] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(10733), 1, + ACTIONS(10752), 1, anon_sym_LBRACK, - STATE(2991), 1, + STATE(3077), 1, sym_parameter_list, - STATE(5813), 1, + STATE(5959), 1, sym__function_declarator_seq, - ACTIONS(10731), 8, + ACTIONS(10784), 8, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, @@ -504909,13 +512742,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [258418] = 3, + [263598] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6348), 2, + ACTIONS(11174), 2, anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(6350), 10, + ACTIONS(11172), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -504926,260 +512759,213 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [258438] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7840), 1, - anon_sym_DASH_GT, - ACTIONS(9328), 1, - anon_sym_requires, - STATE(6034), 1, - sym_trailing_return_type, - ACTIONS(9297), 2, - anon_sym_final, - anon_sym_override, - STATE(5925), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6012), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9182), 3, - anon_sym_LPAREN2, - anon_sym_COLON, - anon_sym_LBRACK, - [258468] = 11, + [263618] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(6729), 1, + ACTIONS(7027), 1, anon_sym_LBRACE, - ACTIONS(9406), 1, + ACTIONS(8074), 1, anon_sym_COLON_COLON, - ACTIONS(9644), 1, + ACTIONS(9647), 1, sym_identifier, - STATE(2567), 1, + STATE(1922), 1, sym_template_type, - STATE(2633), 1, + STATE(3668), 1, sym_enumerator_list, - STATE(6594), 1, + STATE(6743), 1, sym__scope_resolution, - STATE(4007), 2, + STATE(3414), 2, sym__class_name, sym_qualified_type_identifier, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - [258504] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7840), 1, - anon_sym_DASH_GT, - ACTIONS(9498), 1, - anon_sym_requires, - STATE(6063), 1, - sym_trailing_return_type, - ACTIONS(9495), 2, - anon_sym_final, - anon_sym_override, - STATE(5925), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6032), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9344), 3, - anon_sym_LPAREN2, - anon_sym_COLON, - anon_sym_LBRACK, - [258534] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7840), 1, - anon_sym_DASH_GT, - ACTIONS(9714), 1, - anon_sym_requires, - STATE(6064), 1, - sym_trailing_return_type, - ACTIONS(9705), 2, - anon_sym_final, - anon_sym_override, - STATE(5925), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6041), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9665), 3, - anon_sym_LPAREN2, - anon_sym_COLON, - anon_sym_LBRACK, - [258564] = 11, + [263654] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(8021), 1, - anon_sym_COLON_COLON, - ACTIONS(8991), 1, + ACTIONS(6070), 1, anon_sym_LBRACE, - ACTIONS(9619), 1, + ACTIONS(9530), 1, + anon_sym_COLON_COLON, + ACTIONS(9658), 1, sym_identifier, - STATE(4376), 1, + STATE(1943), 1, sym_template_type, - STATE(4862), 1, + STATE(2245), 1, sym_enumerator_list, - STATE(6632), 1, + STATE(6695), 1, sym__scope_resolution, - STATE(4454), 2, + STATE(2342), 2, sym__class_name, sym_qualified_type_identifier, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - [258600] = 11, + [263690] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5020), 1, - anon_sym_COLON_COLON, - ACTIONS(6971), 1, + ACTIONS(7007), 1, anon_sym_LBRACE, - ACTIONS(9621), 1, + ACTIONS(9459), 1, + anon_sym_COLON_COLON, + ACTIONS(9666), 1, sym_identifier, - STATE(1893), 1, + STATE(2856), 1, sym_template_type, - STATE(2876), 1, + STATE(3143), 1, sym_enumerator_list, - STATE(6606), 1, + STATE(6708), 1, sym__scope_resolution, - STATE(3303), 2, + STATE(2832), 2, sym__class_name, sym_qualified_type_identifier, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - [258636] = 11, + [263726] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6342), 2, + anon_sym___attribute, + anon_sym_LBRACK, + ACTIONS(6344), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [263746] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11146), 2, + anon_sym___attribute, + anon_sym_LBRACK, + ACTIONS(11144), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [263766] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5987), 1, + ACTIONS(6070), 1, anon_sym_LBRACE, - ACTIONS(9384), 1, + ACTIONS(9530), 1, anon_sym_COLON_COLON, - ACTIONS(9640), 1, + ACTIONS(9658), 1, sym_identifier, - STATE(1945), 1, + STATE(1943), 1, sym_template_type, - STATE(2190), 1, + STATE(2245), 1, sym_enumerator_list, - STATE(6580), 1, + STATE(6695), 1, sym__scope_resolution, - STATE(2322), 2, + STATE(2563), 2, sym__class_name, sym_qualified_type_identifier, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - [258672] = 8, + [263802] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7322), 1, + ACTIONS(7424), 1, anon_sym_DASH_GT, - ACTIONS(9328), 1, + ACTIONS(9730), 1, anon_sym_requires, - STATE(6562), 1, + STATE(6647), 1, sym_trailing_return_type, - ACTIONS(7335), 2, + ACTIONS(7359), 2, anon_sym_final, anon_sym_override, - STATE(5925), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6012), 2, + STATE(6133), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9182), 3, + ACTIONS(9689), 3, anon_sym_LPAREN2, anon_sym_LBRACE, anon_sym_LBRACK, - [258702] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11128), 2, - anon_sym___attribute, - anon_sym_LBRACK, - ACTIONS(11126), 10, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [258722] = 11, + [263832] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(6186), 1, - anon_sym_LBRACE, - ACTIONS(7959), 1, + ACTIONS(8028), 1, anon_sym_COLON_COLON, - ACTIONS(9627), 1, + ACTIONS(8705), 1, + anon_sym_LBRACE, + ACTIONS(9668), 1, sym_identifier, - STATE(1816), 1, + STATE(1922), 1, sym_template_type, - STATE(2334), 1, + STATE(4600), 1, sym_enumerator_list, - STATE(6587), 1, + STATE(6719), 1, sym__scope_resolution, - STATE(4897), 2, + STATE(4318), 2, sym__class_name, sym_qualified_type_identifier, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - [258758] = 3, + [263868] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11132), 2, - anon_sym___attribute, + ACTIONS(6580), 1, + anon_sym_LT, + STATE(6052), 1, + sym_template_argument_list, + ACTIONS(6426), 2, anon_sym_LBRACK, - ACTIONS(11130), 10, + anon_sym___asm, + ACTIONS(6428), 8, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, anon_sym_try, - [258778] = 3, + [263892] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11136), 2, + ACTIONS(11178), 2, anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(11134), 10, + ACTIONS(11176), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -505190,90 +512976,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [258798] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(7025), 1, - anon_sym_LBRACE, - ACTIONS(9528), 1, - anon_sym_COLON_COLON, - ACTIONS(9617), 1, - sym_identifier, - STATE(2830), 1, - sym_template_type, - STATE(3016), 1, - sym_enumerator_list, - STATE(6578), 1, - sym__scope_resolution, - STATE(2831), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(8601), 2, - sym_decltype, - sym_dependent_type_identifier, - [258834] = 11, + [263912] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(6971), 1, + ACTIONS(7027), 1, anon_sym_LBRACE, - ACTIONS(8055), 1, + ACTIONS(8028), 1, anon_sym_COLON_COLON, - ACTIONS(9623), 1, + ACTIONS(9668), 1, sym_identifier, - STATE(1893), 1, + STATE(1922), 1, sym_template_type, - STATE(3692), 1, + STATE(3668), 1, sym_enumerator_list, - STATE(6592), 1, + STATE(6719), 1, sym__scope_resolution, - STATE(4202), 2, + STATE(4233), 2, sym__class_name, sym_qualified_type_identifier, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - [258870] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7322), 1, - anon_sym_DASH_GT, - ACTIONS(9714), 1, - anon_sym_requires, - STATE(6567), 1, - sym_trailing_return_type, - ACTIONS(7335), 2, - anon_sym_final, - anon_sym_override, - STATE(5925), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6041), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9665), 3, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_LBRACK, - [258900] = 6, + [263948] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(10733), 1, + ACTIONS(10752), 1, anon_sym_LBRACK, - STATE(2991), 1, + STATE(3077), 1, sym_parameter_list, - STATE(5813), 1, + STATE(5959), 1, sym__function_declarator_seq, - ACTIONS(10741), 8, + ACTIONS(10801), 8, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, @@ -505282,1007 +513021,522 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [258926] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(6729), 1, - anon_sym_LBRACE, - ACTIONS(8049), 1, - anon_sym_COLON_COLON, - ACTIONS(9634), 1, - sym_identifier, - STATE(2567), 1, - sym_template_type, - STATE(2633), 1, - sym_enumerator_list, - STATE(6579), 1, - sym__scope_resolution, - STATE(4863), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(8601), 2, - sym_decltype, - sym_dependent_type_identifier, - [258962] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(5987), 1, - anon_sym_LBRACE, - ACTIONS(9384), 1, - anon_sym_COLON_COLON, - ACTIONS(9640), 1, - sym_identifier, - STATE(1945), 1, - sym_template_type, - STATE(2190), 1, - sym_enumerator_list, - STATE(6580), 1, - sym__scope_resolution, - STATE(2463), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(8601), 2, - sym_decltype, - sym_dependent_type_identifier, - [258998] = 8, + [263974] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7322), 1, + ACTIONS(7424), 1, anon_sym_DASH_GT, - ACTIONS(9498), 1, + ACTIONS(9366), 1, anon_sym_requires, - STATE(6565), 1, + STATE(6651), 1, sym_trailing_return_type, - ACTIONS(7335), 2, + ACTIONS(7359), 2, anon_sym_final, anon_sym_override, - STATE(5925), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6032), 2, + STATE(6149), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9344), 3, + ACTIONS(9139), 3, anon_sym_LPAREN2, anon_sym_LBRACE, anon_sym_LBRACK, - [259028] = 6, + [264004] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(8119), 6, + anon_sym_AMP, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + ACTIONS(8121), 6, anon_sym_LPAREN2, - ACTIONS(10733), 1, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, anon_sym_LBRACK, - STATE(2991), 1, - sym_parameter_list, - STATE(5813), 1, - sym__function_declarator_seq, - ACTIONS(10749), 8, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [259054] = 11, + [264024] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(8055), 1, - anon_sym_COLON_COLON, - ACTIONS(8679), 1, + ACTIONS(6852), 1, anon_sym_LBRACE, - ACTIONS(9623), 1, + ACTIONS(9498), 1, + anon_sym_COLON_COLON, + ACTIONS(9670), 1, sym_identifier, - STATE(1893), 1, + STATE(2684), 1, sym_template_type, - STATE(4491), 1, + STATE(2888), 1, sym_enumerator_list, - STATE(6592), 1, + STATE(6728), 1, sym__scope_resolution, - STATE(4296), 2, + STATE(2688), 2, sym__class_name, sym_qualified_type_identifier, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - [259090] = 6, + [264060] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - ACTIONS(10733), 1, - anon_sym_LBRACK, - STATE(2991), 1, - sym_parameter_list, - STATE(5813), 1, - sym__function_declarator_seq, - ACTIONS(10757), 8, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, + ACTIONS(7447), 1, + anon_sym_requires, + ACTIONS(7920), 1, + anon_sym_DASH_GT, + STATE(6123), 1, + sym_trailing_return_type, + ACTIONS(7359), 2, anon_sym_final, anon_sym_override, - anon_sym_try, - anon_sym_requires, - [259116] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9770), 1, + STATE(6017), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6149), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9139), 3, anon_sym_LPAREN2, - ACTIONS(10733), 1, + anon_sym_COLON, anon_sym_LBRACK, - STATE(2991), 1, - sym_parameter_list, - STATE(5813), 1, - sym__function_declarator_seq, - ACTIONS(10745), 8, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [259142] = 11, + [264090] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5220), 1, - anon_sym_COLON_COLON, - ACTIONS(6971), 1, + ACTIONS(6256), 1, anon_sym_LBRACE, - ACTIONS(9613), 1, + ACTIONS(7984), 1, + anon_sym_COLON_COLON, + ACTIONS(9645), 1, sym_identifier, - STATE(1893), 1, + STATE(1784), 1, sym_template_type, - STATE(2876), 1, + STATE(2386), 1, sym_enumerator_list, - STATE(6627), 1, + STATE(6727), 1, sym__scope_resolution, - STATE(3062), 2, + STATE(4946), 2, sym__class_name, sym_qualified_type_identifier, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - [259178] = 4, + [264126] = 4, ACTIONS(3), 1, sym_comment, - STATE(5967), 2, + STATE(6088), 2, sym_string_literal, sym_raw_string_literal, - ACTIONS(10655), 5, + ACTIONS(10699), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(10657), 5, + ACTIONS(10701), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [259200] = 6, + [264148] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(7447), 1, + anon_sym_requires, + ACTIONS(7920), 1, + anon_sym_DASH_GT, + STATE(6152), 1, + sym_trailing_return_type, + ACTIONS(7359), 2, + anon_sym_final, + anon_sym_override, + STATE(6017), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6132), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9371), 3, anon_sym_LPAREN2, - ACTIONS(10733), 1, + anon_sym_COLON, anon_sym_LBRACK, - STATE(2991), 1, - sym_parameter_list, - STATE(5813), 1, - sym__function_declarator_seq, - ACTIONS(10761), 8, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, + [264178] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7447), 1, + anon_sym_requires, + ACTIONS(7920), 1, + anon_sym_DASH_GT, + STATE(6155), 1, + sym_trailing_return_type, + ACTIONS(7359), 2, anon_sym_final, anon_sym_override, - anon_sym_try, - anon_sym_requires, - [259226] = 11, + STATE(6017), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6133), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9689), 3, + anon_sym_LPAREN2, + anon_sym_COLON, + anon_sym_LBRACK, + [264208] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(6850), 1, + ACTIONS(6740), 1, anon_sym_LBRACE, - ACTIONS(9440), 1, + ACTIONS(9612), 1, anon_sym_COLON_COLON, - ACTIONS(9632), 1, + ACTIONS(9664), 1, sym_identifier, - STATE(2669), 1, + STATE(2598), 1, sym_template_type, - STATE(2866), 1, + STATE(2619), 1, sym_enumerator_list, - STATE(6620), 1, + STATE(6694), 1, sym__scope_resolution, - STATE(2680), 2, + STATE(4086), 2, sym__class_name, sym_qualified_type_identifier, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - [259262] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - ACTIONS(10733), 1, - anon_sym_LBRACK, - STATE(2991), 1, - sym_parameter_list, - STATE(5813), 1, - sym__function_declarator_seq, - ACTIONS(10765), 8, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [259288] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11140), 2, - anon_sym___attribute, - anon_sym_LBRACK, - ACTIONS(11138), 10, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [259308] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11073), 2, - anon_sym___attribute, - anon_sym_LBRACK, - ACTIONS(11071), 10, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [259328] = 11, + [264244] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(6797), 1, + ACTIONS(7027), 1, anon_sym_LBRACE, - ACTIONS(9503), 1, + ACTIONS(8028), 1, anon_sym_COLON_COLON, - ACTIONS(9646), 1, + ACTIONS(9668), 1, sym_identifier, - STATE(2630), 1, + STATE(1922), 1, sym_template_type, - STATE(2803), 1, + STATE(3668), 1, sym_enumerator_list, - STATE(6633), 1, + STATE(6719), 1, sym__scope_resolution, - STATE(2605), 2, + STATE(6605), 2, sym__class_name, sym_qualified_type_identifier, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - [259364] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11144), 2, - anon_sym___attribute, - anon_sym_LBRACK, - ACTIONS(11142), 10, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [259384] = 4, + [264280] = 8, ACTIONS(3), 1, sym_comment, - STATE(6402), 2, - sym_lambda_specifier, - aux_sym_lambda_declarator_repeat1, - ACTIONS(11148), 4, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - ACTIONS(11146), 6, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_DASH_GT, - anon_sym_noexcept, - anon_sym_throw, + ACTIONS(7447), 1, anon_sym_requires, - [259406] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11153), 2, - anon_sym___attribute, - anon_sym_LBRACK, - ACTIONS(11151), 10, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(7920), 1, + anon_sym_DASH_GT, + STATE(6115), 1, + sym_trailing_return_type, + ACTIONS(7359), 2, + anon_sym_final, + anon_sym_override, + STATE(6017), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6186), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9945), 3, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [259426] = 10, + anon_sym_LBRACK, + [264310] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(3907), 1, + ACTIONS(6740), 1, + anon_sym_LBRACE, + ACTIONS(8022), 1, anon_sym_COLON_COLON, - ACTIONS(9615), 1, + ACTIONS(9662), 1, sym_identifier, - ACTIONS(11155), 1, - anon_sym_virtual, - STATE(1893), 1, + STATE(2598), 1, sym_template_type, - STATE(6599), 1, + STATE(2619), 1, + sym_enumerator_list, + STATE(6738), 1, sym__scope_resolution, - STATE(7548), 2, + STATE(4954), 2, sym__class_name, sym_qualified_type_identifier, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - [259459] = 6, + [264346] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - ACTIONS(11061), 1, + ACTIONS(11182), 2, + anon_sym___attribute, anon_sym_LBRACK, - STATE(2994), 1, - sym_parameter_list, - STATE(6049), 1, - sym__function_declarator_seq, - ACTIONS(10753), 7, + ACTIONS(11180), 10, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [259484] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(10460), 1, - anon_sym_COLON_COLON, - ACTIONS(11157), 1, - sym_identifier, - STATE(5796), 1, - sym__scope_resolution, - STATE(8281), 1, - sym_qualified_identifier, - ACTIONS(11159), 2, - anon_sym_enum, - anon_sym_namespace, - STATE(8601), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [259515] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9770), 1, anon_sym_LPAREN2, - ACTIONS(11061), 1, - anon_sym_LBRACK, - STATE(2998), 1, - sym_parameter_list, - STATE(6049), 1, - sym__function_declarator_seq, - ACTIONS(10731), 7, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [259540] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(6971), 1, - anon_sym_LBRACE, - ACTIONS(7147), 1, anon_sym___attribute__, - ACTIONS(11161), 1, anon_sym_COLON, - STATE(2469), 1, - sym_attribute_specifier, - STATE(3490), 1, - sym__enum_base_clause, - STATE(3616), 1, - sym_enumerator_list, - ACTIONS(6344), 4, - anon_sym_COMMA, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [259571] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - ACTIONS(11061), 1, - anon_sym_LBRACK, - STATE(2994), 1, - sym_parameter_list, - STATE(6049), 1, - sym__function_declarator_seq, - ACTIONS(10745), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [259596] = 9, + anon_sym_EQ, + anon_sym_try, + [264366] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(10460), 1, + ACTIONS(8000), 1, anon_sym_COLON_COLON, - ACTIONS(11163), 1, + ACTIONS(9067), 1, + anon_sym_LBRACE, + ACTIONS(9672), 1, sym_identifier, - STATE(5796), 1, - sym__scope_resolution, - STATE(8743), 1, - sym_qualified_identifier, - ACTIONS(11165), 2, - anon_sym_enum, - anon_sym_namespace, - STATE(8601), 3, - sym_decltype, + STATE(4461), 1, sym_template_type, - sym_dependent_type_identifier, - [259627] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11043), 1, - sym_identifier, - ACTIONS(11167), 1, - aux_sym_preproc_if_token2, - ACTIONS(11169), 1, - aux_sym_preproc_else_token1, - ACTIONS(11171), 1, - aux_sym_preproc_elif_token1, - STATE(6705), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(8666), 1, - sym_enumerator, - ACTIONS(11173), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(8160), 3, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - sym_preproc_elifdef_in_enumerator_list, - [259658] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10889), 1, - sym_identifier, - ACTIONS(11175), 1, - aux_sym_preproc_if_token2, - ACTIONS(11177), 1, - aux_sym_preproc_else_token1, - ACTIONS(11179), 1, - aux_sym_preproc_elif_token1, - ACTIONS(11181), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(6706), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(8179), 3, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - sym_preproc_elifdef_in_enumerator_list_no_comma, - [259687] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - ACTIONS(10743), 1, - anon_sym___attribute, - ACTIONS(11061), 1, - anon_sym_LBRACK, - STATE(3295), 1, - sym_parameter_list, - STATE(6049), 1, - sym__function_declarator_seq, - ACTIONS(10741), 6, - anon_sym_COMMA, - anon_sym___attribute__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [259714] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10891), 1, - aux_sym_preproc_if_token2, - ACTIONS(11043), 1, - sym_identifier, - ACTIONS(11169), 1, - aux_sym_preproc_else_token1, - ACTIONS(11171), 1, - aux_sym_preproc_elif_token1, - STATE(6411), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(8666), 1, - sym_enumerator, - ACTIONS(11173), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(8202), 3, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - sym_preproc_elifdef_in_enumerator_list, - [259745] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(10460), 1, - anon_sym_COLON_COLON, - ACTIONS(11183), 1, - sym_identifier, - STATE(5796), 1, + STATE(4953), 1, + sym_enumerator_list, + STATE(6731), 1, sym__scope_resolution, - STATE(8530), 1, - sym_qualified_identifier, - ACTIONS(11185), 2, - anon_sym_enum, - anon_sym_namespace, - STATE(8601), 3, + STATE(4595), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8569), 2, sym_decltype, - sym_template_type, sym_dependent_type_identifier, - [259776] = 9, + [264402] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(10460), 1, + ACTIONS(5028), 1, anon_sym_COLON_COLON, - ACTIONS(11187), 1, + ACTIONS(7027), 1, + anon_sym_LBRACE, + ACTIONS(9643), 1, sym_identifier, - STATE(5796), 1, + STATE(1922), 1, + sym_template_type, + STATE(2961), 1, + sym_enumerator_list, + STATE(6746), 1, sym__scope_resolution, - STATE(8677), 1, - sym_qualified_identifier, - ACTIONS(11189), 2, - anon_sym_enum, - anon_sym_namespace, - STATE(8601), 3, + STATE(3322), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8569), 2, sym_decltype, - sym_template_type, sym_dependent_type_identifier, - [259807] = 7, + [264438] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - ACTIONS(10747), 1, - anon_sym___attribute, - ACTIONS(11061), 1, - anon_sym_LBRACK, - STATE(3295), 1, - sym_parameter_list, - STATE(6049), 1, - sym__function_declarator_seq, - ACTIONS(10745), 6, - anon_sym_COMMA, - anon_sym___attribute__, + ACTIONS(7920), 1, + anon_sym_DASH_GT, + ACTIONS(9366), 1, + anon_sym_requires, + STATE(6182), 1, + sym_trailing_return_type, + ACTIONS(9327), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [259834] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9770), 1, + STATE(6017), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6149), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9139), 3, anon_sym_LPAREN2, - ACTIONS(10759), 1, - anon_sym___attribute, - ACTIONS(11061), 1, + anon_sym_COLON, anon_sym_LBRACK, - STATE(3295), 1, - sym_parameter_list, - STATE(6049), 1, - sym__function_declarator_seq, - ACTIONS(10757), 6, - anon_sym_COMMA, - anon_sym___attribute__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [259861] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(10460), 1, - anon_sym_COLON_COLON, - ACTIONS(11191), 1, - sym_identifier, - STATE(5796), 1, - sym__scope_resolution, - STATE(7965), 1, - sym_qualified_identifier, - ACTIONS(11193), 2, - anon_sym_enum, - anon_sym_namespace, - STATE(8601), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [259892] = 6, + [264468] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - ACTIONS(11061), 1, - anon_sym_LBRACK, - STATE(2998), 1, - sym_parameter_list, - STATE(6049), 1, - sym__function_declarator_seq, - ACTIONS(10765), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(7920), 1, + anon_sym_DASH_GT, + ACTIONS(9491), 1, + anon_sym_requires, + STATE(6111), 1, + sym_trailing_return_type, + ACTIONS(9488), 2, anon_sym_final, anon_sym_override, - anon_sym_try, - anon_sym_requires, - [259917] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9770), 1, + STATE(6017), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6132), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9371), 3, anon_sym_LPAREN2, - ACTIONS(10767), 1, - anon_sym___attribute, - ACTIONS(11061), 1, + anon_sym_COLON, anon_sym_LBRACK, - STATE(3295), 1, - sym_parameter_list, - STATE(6049), 1, - sym__function_declarator_seq, - ACTIONS(10765), 6, - anon_sym_COMMA, - anon_sym___attribute__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [259944] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10889), 1, - sym_identifier, - ACTIONS(11177), 1, - aux_sym_preproc_else_token1, - ACTIONS(11179), 1, - aux_sym_preproc_elif_token1, - ACTIONS(11195), 1, - aux_sym_preproc_if_token2, - ACTIONS(11181), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(6412), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(8213), 3, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - sym_preproc_elifdef_in_enumerator_list_no_comma, - [259973] = 8, + [264498] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(10001), 1, + ACTIONS(10752), 1, anon_sym_LBRACK, - STATE(3033), 1, + STATE(3077), 1, sym_parameter_list, - STATE(5979), 1, + STATE(5959), 1, sym__function_declarator_seq, - STATE(5949), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(10838), 4, + ACTIONS(10831), 8, anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_try, - [260002] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6046), 1, - anon_sym_LBRACK, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - ACTIONS(11197), 1, - anon_sym_COMMA, - ACTIONS(11201), 1, - anon_sym___attribute, - STATE(2298), 1, - sym_parameter_list, - STATE(6897), 1, - aux_sym__type_definition_declarators_repeat1, - ACTIONS(11199), 2, - anon_sym_SEMI, - anon_sym___attribute__, - STATE(6307), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [260035] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(10460), 1, - anon_sym_COLON_COLON, - ACTIONS(11203), 1, - sym_identifier, - STATE(5796), 1, - sym__scope_resolution, - STATE(8235), 1, - sym_qualified_identifier, - ACTIONS(11205), 2, - anon_sym_enum, - anon_sym_namespace, - STATE(8601), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [260066] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - ACTIONS(11061), 1, - anon_sym_LBRACK, - STATE(2998), 1, - sym_parameter_list, - STATE(6049), 1, - sym__function_declarator_seq, - ACTIONS(10741), 7, - anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_EQ, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - [260091] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11043), 1, - sym_identifier, - ACTIONS(11169), 1, - aux_sym_preproc_else_token1, - ACTIONS(11171), 1, - aux_sym_preproc_elif_token1, - ACTIONS(11207), 1, - aux_sym_preproc_if_token2, - STATE(6705), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(8666), 1, - sym_enumerator, - ACTIONS(11173), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(8663), 3, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - sym_preproc_elifdef_in_enumerator_list, - [260122] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10889), 1, - sym_identifier, - ACTIONS(11177), 1, - aux_sym_preproc_else_token1, - ACTIONS(11179), 1, - aux_sym_preproc_elif_token1, - ACTIONS(11209), 1, - aux_sym_preproc_if_token2, - ACTIONS(11181), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(6706), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(8688), 3, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - sym_preproc_elifdef_in_enumerator_list_no_comma, - [260151] = 9, + [264524] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10911), 1, - aux_sym_preproc_if_token2, - ACTIONS(11043), 1, - sym_identifier, - ACTIONS(11169), 1, - aux_sym_preproc_else_token1, - ACTIONS(11171), 1, - aux_sym_preproc_elif_token1, - STATE(6514), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(8666), 1, - sym_enumerator, - ACTIONS(11173), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(8837), 3, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - sym_preproc_elifdef_in_enumerator_list, - [260182] = 9, + ACTIONS(7424), 1, + anon_sym_DASH_GT, + ACTIONS(9491), 1, + anon_sym_requires, + STATE(6674), 1, + sym_trailing_return_type, + ACTIONS(7359), 2, + anon_sym_final, + anon_sym_override, + STATE(6017), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6132), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9371), 3, + anon_sym_LPAREN2, + anon_sym_LBRACE, + anon_sym_LBRACK, + [264554] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(10460), 1, + ACTIONS(7965), 1, + anon_sym_LBRACE, + ACTIONS(9412), 1, anon_sym_COLON_COLON, - ACTIONS(11211), 1, + ACTIONS(9674), 1, sym_identifier, - STATE(5796), 1, + STATE(3638), 1, + sym_template_type, + STATE(4018), 1, + sym_enumerator_list, + STATE(6732), 1, sym__scope_resolution, - STATE(8351), 1, - sym_qualified_identifier, - ACTIONS(11213), 2, - anon_sym_enum, - anon_sym_namespace, - STATE(8601), 3, + STATE(3719), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8569), 2, sym_decltype, - sym_template_type, sym_dependent_type_identifier, - [260213] = 11, + [264590] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, + ACTIONS(11186), 2, + anon_sym___attribute, + anon_sym_LBRACK, + ACTIONS(11184), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(894), 1, anon_sym_LBRACE, - ACTIONS(9770), 1, + anon_sym_EQ, + anon_sym_try, + [264610] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7920), 1, + anon_sym_DASH_GT, + ACTIONS(9730), 1, + anon_sym_requires, + STATE(6176), 1, + sym_trailing_return_type, + ACTIONS(9727), 2, + anon_sym_final, + anon_sym_override, + STATE(6017), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6133), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9689), 3, anon_sym_LPAREN2, - ACTIONS(10001), 1, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(10114), 1, - anon_sym_try, - STATE(679), 1, - sym_compound_statement, - STATE(680), 1, - sym_try_statement, - STATE(3033), 1, - sym_parameter_list, - STATE(5979), 1, - sym__function_declarator_seq, - STATE(5949), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [260248] = 11, + [264640] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(866), 1, - anon_sym_LBRACE, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(10001), 1, + ACTIONS(10752), 1, anon_sym_LBRACK, - ACTIONS(10148), 1, - anon_sym_try, - STATE(717), 1, - sym_compound_statement, - STATE(718), 1, - sym_try_statement, - STATE(3033), 1, + STATE(3077), 1, sym_parameter_list, - STATE(5979), 1, + STATE(5959), 1, sym__function_declarator_seq, - STATE(5949), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [260283] = 3, + ACTIONS(10813), 8, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [264666] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4984), 2, + ACTIONS(6437), 2, anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(4986), 9, + ACTIONS(6439), 10, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, @@ -506291,14 +513545,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [260302] = 3, + [264686] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4980), 2, + ACTIONS(11190), 2, anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(4982), 9, + ACTIONS(11188), 10, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, @@ -506307,78 +513562,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [260321] = 8, + [264706] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11215), 1, + ACTIONS(7920), 1, + anon_sym_DASH_GT, + ACTIONS(10861), 1, + anon_sym_requires, + STATE(6195), 1, + sym_trailing_return_type, + ACTIONS(10656), 2, + anon_sym_final, + anon_sym_override, + STATE(6017), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6186), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9945), 3, + anon_sym_LPAREN2, + anon_sym_COLON, + anon_sym_LBRACK, + [264736] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(8074), 1, + anon_sym_COLON_COLON, + ACTIONS(8705), 1, + anon_sym_LBRACE, + ACTIONS(9647), 1, sym_identifier, - ACTIONS(11218), 1, - aux_sym_preproc_if_token1, - ACTIONS(11224), 1, - sym_preproc_directive, - ACTIONS(11227), 1, - anon_sym_RBRACE, - ACTIONS(11221), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(8762), 2, - sym_preproc_call, - sym_enumerator, - STATE(6435), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [260350] = 6, + STATE(1922), 1, + sym_template_type, + STATE(4600), 1, + sym_enumerator_list, + STATE(6743), 1, + sym__scope_resolution, + STATE(5020), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8569), 2, + sym_decltype, + sym_dependent_type_identifier, + [264772] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(6580), 1, + anon_sym_LT, + STATE(2705), 1, + sym_template_argument_list, + ACTIONS(6426), 2, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(6428), 8, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(11061), 1, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_asm, + anon_sym___asm__, + [264796] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(5228), 1, + anon_sym_COLON_COLON, + ACTIONS(7027), 1, + anon_sym_LBRACE, + ACTIONS(9641), 1, + sym_identifier, + STATE(1922), 1, + sym_template_type, + STATE(2961), 1, + sym_enumerator_list, + STATE(6715), 1, + sym__scope_resolution, + STATE(3037), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8569), 2, + sym_decltype, + sym_dependent_type_identifier, + [264832] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(10752), 1, anon_sym_LBRACK, - STATE(2998), 1, + STATE(3077), 1, sym_parameter_list, - STATE(6049), 1, + STATE(5959), 1, sym__function_declarator_seq, - ACTIONS(10749), 7, + ACTIONS(10817), 8, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - [260375] = 11, + [264858] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9770), 1, + ACTIONS(7424), 1, + anon_sym_DASH_GT, + ACTIONS(10861), 1, + anon_sym_requires, + STATE(6653), 1, + sym_trailing_return_type, + ACTIONS(7359), 2, + anon_sym_final, + anon_sym_override, + STATE(6017), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6186), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9945), 3, anon_sym_LPAREN2, - ACTIONS(9809), 1, - anon_sym_try, - ACTIONS(10001), 1, - anon_sym_LBRACK, - ACTIONS(10948), 1, anon_sym_LBRACE, - STATE(2072), 1, - sym_compound_statement, - STATE(2073), 1, - sym_try_statement, - STATE(3033), 1, - sym_parameter_list, - STATE(5979), 1, - sym__function_declarator_seq, - STATE(5949), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [260410] = 3, + anon_sym_LBRACK, + [264888] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4992), 2, + ACTIONS(11194), 2, anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(4994), 9, + ACTIONS(11192), 10, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, @@ -506387,292 +513712,332 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [260429] = 11, + [264908] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - ACTIONS(9809), 1, - anon_sym_try, - ACTIONS(10001), 1, - anon_sym_LBRACK, - ACTIONS(10948), 1, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(6256), 1, anon_sym_LBRACE, - STATE(2081), 1, - sym_compound_statement, - STATE(2082), 1, - sym_try_statement, - STATE(3033), 1, - sym_parameter_list, - STATE(5979), 1, - sym__function_declarator_seq, - STATE(5949), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [260464] = 9, + ACTIONS(9437), 1, + anon_sym_COLON_COLON, + ACTIONS(9654), 1, + sym_identifier, + STATE(1784), 1, + sym_template_type, + STATE(2386), 1, + sym_enumerator_list, + STATE(6699), 1, + sym__scope_resolution, + STATE(3870), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8569), 2, + sym_decltype, + sym_dependent_type_identifier, + [264944] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(10460), 1, + ACTIONS(6256), 1, + anon_sym_LBRACE, + ACTIONS(8088), 1, anon_sym_COLON_COLON, - ACTIONS(11229), 1, + ACTIONS(9649), 1, sym_identifier, - STATE(5796), 1, + STATE(1784), 1, + sym_template_type, + STATE(5195), 1, + sym_enumerator_list, + STATE(6724), 1, sym__scope_resolution, - STATE(8701), 1, - sym_qualified_identifier, - ACTIONS(11231), 2, - anon_sym_enum, - anon_sym_namespace, - STATE(8601), 3, + STATE(4926), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8569), 2, sym_decltype, - sym_template_type, sym_dependent_type_identifier, - [260495] = 6, + [264980] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(11061), 1, + ACTIONS(10752), 1, anon_sym_LBRACK, - STATE(2998), 1, + STATE(3077), 1, sym_parameter_list, - STATE(6049), 1, + STATE(5959), 1, sym__function_declarator_seq, - ACTIONS(10753), 7, + ACTIONS(10760), 8, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - [260520] = 11, + [265006] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9770), 1, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(6801), 1, + anon_sym_LBRACE, + ACTIONS(9580), 1, + anon_sym_COLON_COLON, + ACTIONS(9656), 1, + sym_identifier, + STATE(2673), 1, + sym_template_type, + STATE(2841), 1, + sym_enumerator_list, + STATE(6713), 1, + sym__scope_resolution, + STATE(2654), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8569), 2, + sym_decltype, + sym_dependent_type_identifier, + [265042] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(9782), 1, - anon_sym_try, - ACTIONS(10001), 1, + ACTIONS(10752), 1, anon_sym_LBRACK, - ACTIONS(10958), 1, - anon_sym_LBRACE, - STATE(2009), 1, - sym_compound_statement, - STATE(2019), 1, - sym_try_statement, - STATE(3033), 1, + STATE(3077), 1, sym_parameter_list, - STATE(5979), 1, + STATE(5959), 1, sym__function_declarator_seq, - STATE(5949), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [260555] = 2, + ACTIONS(10750), 8, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [265068] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4310), 11, - anon_sym_LPAREN2, - anon_sym_LT, - anon_sym_LBRACK_LBRACK, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(7027), 1, anon_sym_LBRACE, + ACTIONS(9641), 1, + sym_identifier, + ACTIONS(9660), 1, + anon_sym_COLON_COLON, + STATE(1922), 1, + sym_template_type, + STATE(2961), 1, + sym_enumerator_list, + STATE(6706), 1, + sym__scope_resolution, + STATE(4115), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8569), 2, + sym_decltype, + sym_dependent_type_identifier, + [265104] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(6522), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + ACTIONS(11198), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, + ACTIONS(11196), 6, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_DASH_GT, anon_sym_noexcept, anon_sym_throw, - [260572] = 11, + anon_sym_requires, + [265126] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - ACTIONS(9809), 1, - anon_sym_try, - ACTIONS(10001), 1, - anon_sym_LBRACK, - ACTIONS(10948), 1, + ACTIONS(866), 1, anon_sym_LBRACE, - STATE(2141), 1, - sym_compound_statement, - STATE(2142), 1, - sym_try_statement, - STATE(3033), 1, - sym_parameter_list, - STATE(5979), 1, - sym__function_declarator_seq, - STATE(5949), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [260607] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(9782), 1, - anon_sym_try, - ACTIONS(10001), 1, + ACTIONS(10071), 1, anon_sym_LBRACK, - ACTIONS(10958), 1, - anon_sym_LBRACE, - STATE(2030), 1, + ACTIONS(10123), 1, + anon_sym_try, + STATE(759), 1, sym_compound_statement, - STATE(2033), 1, + STATE(760), 1, sym_try_statement, - STATE(3033), 1, + STATE(3044), 1, sym_parameter_list, - STATE(5979), 1, + STATE(6203), 1, sym__function_declarator_seq, - STATE(5949), 2, + STATE(6081), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [260642] = 3, + [265161] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4955), 2, - anon_sym___attribute, - anon_sym_LBRACK, - ACTIONS(4957), 9, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [260661] = 8, + ACTIONS(11085), 1, + sym_identifier, + ACTIONS(11201), 1, + aux_sym_preproc_if_token2, + ACTIONS(11203), 1, + aux_sym_preproc_else_token1, + ACTIONS(11205), 1, + aux_sym_preproc_elif_token1, + STATE(6821), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(8369), 1, + sym_enumerator, + ACTIONS(11207), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(8342), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + [265192] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - ACTIONS(10001), 1, - anon_sym_LBRACK, - STATE(3033), 1, - sym_parameter_list, - STATE(5979), 1, - sym__function_declarator_seq, - STATE(5949), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(10903), 4, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_try, - [260690] = 11, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(3915), 1, + anon_sym_COLON_COLON, + ACTIONS(9647), 1, + sym_identifier, + ACTIONS(11209), 1, + anon_sym_virtual, + STATE(1922), 1, + sym_template_type, + STATE(6697), 1, + sym__scope_resolution, + STATE(7118), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8569), 2, + sym_decltype, + sym_dependent_type_identifier, + [265225] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(866), 1, - anon_sym_LBRACE, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - ACTIONS(10001), 1, + ACTIONS(6098), 1, anon_sym_LBRACK, - ACTIONS(10148), 1, - anon_sym_try, - STATE(706), 1, - sym_compound_statement, - STATE(715), 1, - sym_try_statement, - STATE(3033), 1, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(11211), 1, + anon_sym_COMMA, + ACTIONS(11215), 1, + anon_sym___attribute, + STATE(1942), 1, sym_parameter_list, - STATE(5979), 1, - sym__function_declarator_seq, - STATE(5949), 2, + STATE(6959), 1, + aux_sym__type_definition_declarators_repeat1, + ACTIONS(11213), 2, + anon_sym_SEMI, + anon_sym___attribute__, + STATE(6165), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [260725] = 7, + [265258] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7906), 1, - anon_sym_requires, - ACTIONS(9193), 1, - anon_sym_LBRACK, - ACTIONS(6020), 2, - anon_sym_final, - anon_sym_override, - STATE(5606), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5877), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9182), 3, + ACTIONS(9798), 1, anon_sym_LPAREN2, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - [260752] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - ACTIONS(10735), 1, - anon_sym___attribute, - ACTIONS(11061), 1, + ACTIONS(11108), 1, anon_sym_LBRACK, - STATE(3299), 1, + STATE(3086), 1, sym_parameter_list, - STATE(6049), 1, + STATE(6153), 1, sym__function_declarator_seq, - ACTIONS(10731), 6, + ACTIONS(10750), 7, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym___attribute__, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_final, anon_sym_override, anon_sym_requires, - [260779] = 8, + [265283] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10909), 1, + sym_identifier, + ACTIONS(11217), 1, + aux_sym_preproc_if_token2, + ACTIONS(11219), 1, + aux_sym_preproc_else_token1, + ACTIONS(11221), 1, + aux_sym_preproc_elif_token1, + ACTIONS(11223), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(6771), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(8309), 3, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + sym_preproc_elifdef_in_enumerator_list_no_comma, + [265312] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9770), 1, + ACTIONS(866), 1, + anon_sym_LBRACE, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(10001), 1, + ACTIONS(10071), 1, anon_sym_LBRACK, - STATE(3033), 1, + ACTIONS(10123), 1, + anon_sym_try, + STATE(713), 1, + sym_compound_statement, + STATE(715), 1, + sym_try_statement, + STATE(3044), 1, sym_parameter_list, - STATE(5979), 1, + STATE(6203), 1, sym__function_declarator_seq, - STATE(5949), 2, + STATE(6081), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(10865), 4, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_try, - [260808] = 6, + [265347] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(11061), 1, + ACTIONS(11108), 1, anon_sym_LBRACK, - STATE(2998), 1, + STATE(3095), 1, sym_parameter_list, - STATE(6049), 1, + STATE(6153), 1, sym__function_declarator_seq, - ACTIONS(10745), 7, + ACTIONS(10784), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, @@ -506680,337 +514045,335 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [260833] = 8, + [265372] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(11233), 1, + ACTIONS(11085), 1, sym_identifier, - ACTIONS(11235), 1, - anon_sym_COLON, - ACTIONS(11237), 1, - sym_system_lib_string, - STATE(7364), 1, - sym_string_literal, - STATE(7365), 1, - sym_module_name, - STATE(7375), 1, - sym_module_partition, - ACTIONS(6846), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [260862] = 9, + ACTIONS(11203), 1, + aux_sym_preproc_else_token1, + ACTIONS(11205), 1, + aux_sym_preproc_elif_token1, + ACTIONS(11225), 1, + aux_sym_preproc_if_token2, + STATE(6821), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(8369), 1, + sym_enumerator, + ACTIONS(11207), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(8418), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + [265403] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(4551), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(10162), 1, + ACTIONS(10582), 1, anon_sym_COLON_COLON, - ACTIONS(11100), 1, + ACTIONS(11227), 1, sym_identifier, - STATE(5858), 1, + STATE(5926), 1, sym__scope_resolution, - STATE(7778), 2, - sym_identifier_parameter_pack_expansion, + STATE(8207), 1, sym_qualified_identifier, - STATE(8601), 3, + ACTIONS(11229), 2, + anon_sym_enum, + anon_sym_namespace, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - [260893] = 7, + [265434] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7906), 1, - anon_sym_requires, - ACTIONS(9355), 1, - anon_sym_LBRACK, - ACTIONS(6020), 2, - anon_sym_final, - anon_sym_override, - STATE(5606), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5839), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9344), 3, - anon_sym_LPAREN2, - anon_sym_COLON, + ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - [260920] = 9, + ACTIONS(297), 1, + anon_sym_LBRACE, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(10071), 1, + anon_sym_LBRACK, + ACTIONS(10081), 1, + anon_sym_try, + STATE(357), 1, + sym_compound_statement, + STATE(358), 1, + sym_try_statement, + STATE(3044), 1, + sym_parameter_list, + STATE(6203), 1, + sym__function_declarator_seq, + STATE(6081), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [265469] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(10460), 1, + ACTIONS(10582), 1, anon_sym_COLON_COLON, - ACTIONS(11239), 1, + ACTIONS(11231), 1, sym_identifier, - STATE(5796), 1, + STATE(5926), 1, sym__scope_resolution, - STATE(8706), 1, + STATE(8251), 1, sym_qualified_identifier, - ACTIONS(11241), 2, + ACTIONS(11233), 2, anon_sym_enum, anon_sym_namespace, - STATE(8601), 3, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - [260951] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7906), 1, - anon_sym_requires, - ACTIONS(9676), 1, - anon_sym_LBRACK, - ACTIONS(6020), 2, - anon_sym_final, - anon_sym_override, - STATE(5606), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5876), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9665), 3, - anon_sym_LPAREN2, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - [260978] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7906), 1, - anon_sym_requires, - ACTIONS(9845), 1, - anon_sym_LBRACK, - ACTIONS(6020), 2, - anon_sym_final, - anon_sym_override, - STATE(5606), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5846), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9843), 3, - anon_sym_LPAREN2, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - [261005] = 11, + [265500] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(9790), 1, + ACTIONS(9837), 1, anon_sym_try, - ACTIONS(10001), 1, + ACTIONS(10071), 1, anon_sym_LBRACK, - ACTIONS(10966), 1, + ACTIONS(10674), 1, anon_sym_LBRACE, - STATE(1712), 1, + STATE(1807), 1, sym_compound_statement, - STATE(1714), 1, + STATE(1809), 1, sym_try_statement, - STATE(3033), 1, + STATE(3044), 1, sym_parameter_list, - STATE(5979), 1, + STATE(6203), 1, sym__function_declarator_seq, - STATE(5949), 2, + STATE(6081), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [261040] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7906), 1, - anon_sym_requires, - ACTIONS(9849), 1, - anon_sym_LBRACK, - ACTIONS(6020), 2, - anon_sym_final, - anon_sym_override, - STATE(5606), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5836), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9847), 3, - anon_sym_LPAREN2, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - [261067] = 11, + [265535] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(297), 1, - anon_sym_LBRACE, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(10001), 1, + ACTIONS(11108), 1, anon_sym_LBRACK, - ACTIONS(10023), 1, - anon_sym_try, - STATE(325), 1, - sym_compound_statement, - STATE(326), 1, - sym_try_statement, - STATE(3033), 1, + STATE(3086), 1, sym_parameter_list, - STATE(5979), 1, + STATE(6153), 1, sym__function_declarator_seq, - STATE(5949), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [261102] = 11, + ACTIONS(10801), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [265560] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - ACTIONS(9790), 1, - anon_sym_try, - ACTIONS(10001), 1, - anon_sym_LBRACK, - ACTIONS(10966), 1, - anon_sym_LBRACE, - STATE(1715), 1, - sym_compound_statement, - STATE(1729), 1, - sym_try_statement, - STATE(3033), 1, - sym_parameter_list, - STATE(5979), 1, - sym__function_declarator_seq, - STATE(5949), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [261137] = 9, + ACTIONS(11085), 1, + sym_identifier, + ACTIONS(11203), 1, + aux_sym_preproc_else_token1, + ACTIONS(11205), 1, + aux_sym_preproc_elif_token1, + ACTIONS(11235), 1, + aux_sym_preproc_if_token2, + STATE(6821), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(8369), 1, + sym_enumerator, + ACTIONS(11207), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(8164), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + [265591] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(10460), 1, - anon_sym_COLON_COLON, - ACTIONS(11243), 1, + ACTIONS(10909), 1, sym_identifier, - STATE(5796), 1, - sym__scope_resolution, - STATE(8048), 1, - sym_qualified_identifier, - ACTIONS(11245), 2, - anon_sym_enum, - anon_sym_namespace, - STATE(8601), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [261168] = 7, + ACTIONS(11219), 1, + aux_sym_preproc_else_token1, + ACTIONS(11221), 1, + aux_sym_preproc_elif_token1, + ACTIONS(11237), 1, + aux_sym_preproc_if_token2, + ACTIONS(11223), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(6771), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(8436), 3, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + sym_preproc_elifdef_in_enumerator_list_no_comma, + [265620] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(10751), 1, - anon_sym___attribute, - ACTIONS(11061), 1, + ACTIONS(11108), 1, anon_sym_LBRACK, - STATE(3295), 1, + STATE(3086), 1, sym_parameter_list, - STATE(6049), 1, + STATE(6153), 1, sym__function_declarator_seq, - ACTIONS(10749), 6, + ACTIONS(10805), 7, anon_sym_COMMA, - anon_sym___attribute__, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [261195] = 7, + [265645] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - ACTIONS(10743), 1, - anon_sym___attribute, - ACTIONS(11061), 1, + ACTIONS(6248), 1, anon_sym_LBRACK, - STATE(3299), 1, - sym_parameter_list, - STATE(6049), 1, - sym__function_declarator_seq, - ACTIONS(10741), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, + ACTIONS(11239), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6250), 8, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_or, anon_sym_final, anon_sym_override, anon_sym_requires, - [261222] = 7, + [265666] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(10747), 1, - anon_sym___attribute, - ACTIONS(11061), 1, + ACTIONS(11108), 1, anon_sym_LBRACK, - STATE(3299), 1, + STATE(3095), 1, sym_parameter_list, - STATE(6049), 1, + STATE(6153), 1, sym__function_declarator_seq, - ACTIONS(10745), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, + ACTIONS(10813), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_final, anon_sym_override, + anon_sym_try, anon_sym_requires, - [261249] = 7, + [265691] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(10759), 1, - anon_sym___attribute, - ACTIONS(11061), 1, + ACTIONS(11108), 1, anon_sym_LBRACK, - STATE(3299), 1, + STATE(3095), 1, sym_parameter_list, - STATE(6049), 1, + STATE(6153), 1, sym__function_declarator_seq, - ACTIONS(10757), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, + ACTIONS(10817), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_final, anon_sym_override, + anon_sym_try, anon_sym_requires, - [261276] = 6, + [265716] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(10911), 1, + aux_sym_preproc_if_token2, + ACTIONS(11085), 1, + sym_identifier, + ACTIONS(11203), 1, + aux_sym_preproc_else_token1, + ACTIONS(11205), 1, + aux_sym_preproc_elif_token1, + STATE(6537), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(8369), 1, + sym_enumerator, + ACTIONS(11207), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(8497), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + [265747] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10909), 1, + sym_identifier, + ACTIONS(11219), 1, + aux_sym_preproc_else_token1, + ACTIONS(11221), 1, + aux_sym_preproc_elif_token1, + ACTIONS(11241), 1, + aux_sym_preproc_if_token2, + ACTIONS(11223), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(6538), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(8501), 3, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + sym_preproc_elifdef_in_enumerator_list_no_comma, + [265776] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(11061), 1, + ACTIONS(9837), 1, + anon_sym_try, + ACTIONS(10071), 1, anon_sym_LBRACK, - STATE(2994), 1, + ACTIONS(10674), 1, + anon_sym_LBRACE, + STATE(1836), 1, + sym_compound_statement, + STATE(1841), 1, + sym_try_statement, + STATE(3044), 1, sym_parameter_list, - STATE(6049), 1, + STATE(6203), 1, + sym__function_declarator_seq, + STATE(6081), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [265811] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(11108), 1, + anon_sym_LBRACK, + STATE(3086), 1, + sym_parameter_list, + STATE(6153), 1, sym__function_declarator_seq, - ACTIONS(10749), 7, + ACTIONS(10760), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -507018,770 +514381,849 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [261301] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9193), 1, - anon_sym_LBRACK, - ACTIONS(9478), 1, - anon_sym_requires, - ACTIONS(9195), 2, - anon_sym_final, - anon_sym_override, - STATE(5606), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5877), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9182), 3, - anon_sym_LPAREN2, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - [261328] = 7, + [265836] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(10755), 1, - anon_sym___attribute, - ACTIONS(11061), 1, + ACTIONS(11108), 1, anon_sym_LBRACK, - STATE(3295), 1, + STATE(3095), 1, sym_parameter_list, - STATE(6049), 1, + STATE(6153), 1, sym__function_declarator_seq, - ACTIONS(10753), 6, - anon_sym_COMMA, - anon_sym___attribute__, + ACTIONS(10750), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_final, anon_sym_override, - anon_sym_GT2, + anon_sym_try, anon_sym_requires, - [261355] = 7, + [265861] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9355), 1, - anon_sym_LBRACK, - ACTIONS(9678), 1, - anon_sym_requires, - ACTIONS(9357), 2, - anon_sym_final, - anon_sym_override, - STATE(5606), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5839), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9344), 3, - anon_sym_LPAREN2, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - [261382] = 3, + ACTIONS(11085), 1, + sym_identifier, + ACTIONS(11203), 1, + aux_sym_preproc_else_token1, + ACTIONS(11205), 1, + aux_sym_preproc_elif_token1, + ACTIONS(11243), 1, + aux_sym_preproc_if_token2, + STATE(6821), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(8369), 1, + sym_enumerator, + ACTIONS(11207), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(8515), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + [265892] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4951), 2, - anon_sym___attribute, + ACTIONS(10909), 1, + sym_identifier, + ACTIONS(11219), 1, + aux_sym_preproc_else_token1, + ACTIONS(11221), 1, + aux_sym_preproc_elif_token1, + ACTIONS(11245), 1, + aux_sym_preproc_if_token2, + ACTIONS(11223), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(6771), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(8523), 3, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + sym_preproc_elifdef_in_enumerator_list_no_comma, + [265921] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(11108), 1, anon_sym_LBRACK, - ACTIONS(4953), 9, + STATE(3086), 1, + sym_parameter_list, + STATE(6153), 1, + sym__function_declarator_seq, + ACTIONS(10831), 7, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [261401] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11233), 1, - sym_identifier, - ACTIONS(11235), 1, - anon_sym_COLON, - ACTIONS(11247), 1, - sym_system_lib_string, - STATE(7261), 1, - sym_string_literal, - STATE(7264), 1, - sym_module_name, - STATE(7266), 1, - sym_module_partition, - ACTIONS(6846), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [261430] = 11, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [265946] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(297), 1, + ACTIONS(894), 1, anon_sym_LBRACE, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(10001), 1, + ACTIONS(10071), 1, anon_sym_LBRACK, - ACTIONS(10023), 1, + ACTIONS(10138), 1, anon_sym_try, - STATE(327), 1, + STATE(700), 1, sym_compound_statement, - STATE(328), 1, + STATE(701), 1, sym_try_statement, - STATE(3033), 1, + STATE(3044), 1, sym_parameter_list, - STATE(5979), 1, + STATE(6203), 1, sym__function_declarator_seq, - STATE(5949), 2, + STATE(6081), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [261465] = 11, + [265981] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(10001), 1, + ACTIONS(10071), 1, anon_sym_LBRACK, - ACTIONS(10007), 1, + STATE(3044), 1, + sym_parameter_list, + STATE(6203), 1, + sym__function_declarator_seq, + STATE(6081), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(10901), 4, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_try, - STATE(623), 1, + [266010] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(9810), 1, + anon_sym_try, + ACTIONS(10071), 1, + anon_sym_LBRACK, + ACTIONS(10666), 1, + anon_sym_LBRACE, + STATE(2020), 1, sym_compound_statement, - STATE(624), 1, + STATE(2021), 1, sym_try_statement, - STATE(3033), 1, + STATE(3044), 1, sym_parameter_list, - STATE(5979), 1, + STATE(6203), 1, sym__function_declarator_seq, - STATE(5949), 2, + STATE(6081), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [261500] = 7, + [266045] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9676), 1, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(11108), 1, anon_sym_LBRACK, - ACTIONS(9792), 1, - anon_sym_requires, - ACTIONS(9681), 2, + STATE(3086), 1, + sym_parameter_list, + STATE(6153), 1, + sym__function_declarator_seq, + ACTIONS(10813), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_final, anon_sym_override, - STATE(5606), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5876), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9665), 3, - anon_sym_LPAREN2, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - [261527] = 7, + anon_sym_requires, + [266070] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9845), 1, - anon_sym_LBRACK, - ACTIONS(11079), 1, - anon_sym_requires, - ACTIONS(9919), 2, - anon_sym_final, - anon_sym_override, - STATE(5606), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5846), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9843), 3, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(10582), 1, + anon_sym_COLON_COLON, + ACTIONS(11247), 1, + sym_identifier, + STATE(5926), 1, + sym__scope_resolution, + STATE(8276), 1, + sym_qualified_identifier, + ACTIONS(11249), 2, + anon_sym_enum, + anon_sym_namespace, + STATE(8569), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [266101] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4322), 11, anon_sym_LPAREN2, - anon_sym_COLON, + anon_sym_LT, anon_sym_LBRACK_LBRACK, - [261554] = 11, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + anon_sym_DASH_GT, + anon_sym_noexcept, + anon_sym_throw, + [266118] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(10582), 1, + anon_sym_COLON_COLON, + ACTIONS(11251), 1, + sym_identifier, + STATE(5926), 1, + sym__scope_resolution, + STATE(8743), 1, + sym_qualified_identifier, + ACTIONS(11253), 2, + anon_sym_enum, + anon_sym_namespace, + STATE(8569), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [266149] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(4589), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10214), 1, + anon_sym_COLON_COLON, + ACTIONS(11128), 1, + sym_identifier, + STATE(5956), 1, + sym__scope_resolution, + STATE(7916), 2, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + STATE(8569), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [266180] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11085), 1, + sym_identifier, + ACTIONS(11203), 1, + aux_sym_preproc_else_token1, + ACTIONS(11205), 1, + aux_sym_preproc_elif_token1, + ACTIONS(11255), 1, + aux_sym_preproc_if_token2, + STATE(6524), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(8369), 1, + sym_enumerator, + ACTIONS(11207), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(8138), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + [266211] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10937), 1, + aux_sym_preproc_if_token2, + ACTIONS(11085), 1, + sym_identifier, + ACTIONS(11203), 1, + aux_sym_preproc_else_token1, + ACTIONS(11205), 1, + aux_sym_preproc_elif_token1, + STATE(6548), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(8369), 1, + sym_enumerator, + ACTIONS(11207), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(8495), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + [266242] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(9782), 1, + ACTIONS(9810), 1, anon_sym_try, - ACTIONS(10001), 1, + ACTIONS(10071), 1, anon_sym_LBRACK, - ACTIONS(10958), 1, + ACTIONS(10666), 1, anon_sym_LBRACE, - STATE(2084), 1, + STATE(2107), 1, sym_compound_statement, - STATE(2091), 1, + STATE(2112), 1, sym_try_statement, - STATE(3033), 1, + STATE(3044), 1, sym_parameter_list, - STATE(5979), 1, + STATE(6203), 1, sym__function_declarator_seq, - STATE(5949), 2, + STATE(6081), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [261589] = 7, + [266277] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9849), 1, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(10786), 1, + anon_sym___attribute, + ACTIONS(11108), 1, anon_sym_LBRACK, - ACTIONS(11249), 1, - anon_sym_requires, - ACTIONS(9927), 2, + STATE(3371), 1, + sym_parameter_list, + STATE(6153), 1, + sym__function_declarator_seq, + ACTIONS(10784), 6, + anon_sym_COMMA, + anon_sym___attribute__, anon_sym_final, anon_sym_override, - STATE(5606), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5836), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9847), 3, - anon_sym_LPAREN2, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - [261616] = 8, + anon_sym_GT2, + anon_sym_requires, + [266304] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10889), 1, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(10582), 1, + anon_sym_COLON_COLON, + ACTIONS(11257), 1, sym_identifier, - ACTIONS(11177), 1, - aux_sym_preproc_else_token1, - ACTIONS(11179), 1, - aux_sym_preproc_elif_token1, - ACTIONS(11252), 1, - aux_sym_preproc_if_token2, - ACTIONS(11181), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(6523), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(8472), 3, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - sym_preproc_elifdef_in_enumerator_list_no_comma, - [261645] = 9, + STATE(5926), 1, + sym__scope_resolution, + STATE(8401), 1, + sym_qualified_identifier, + ACTIONS(11259), 2, + anon_sym_enum, + anon_sym_namespace, + STATE(8569), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [266335] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(10460), 1, + ACTIONS(10582), 1, anon_sym_COLON_COLON, - ACTIONS(11254), 1, + ACTIONS(11261), 1, sym_identifier, - STATE(5796), 1, + STATE(5926), 1, sym__scope_resolution, - STATE(8457), 1, + STATE(8807), 1, sym_qualified_identifier, - ACTIONS(11256), 2, + ACTIONS(11263), 2, anon_sym_enum, anon_sym_namespace, - STATE(8601), 3, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - [261676] = 11, + [266366] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, + ACTIONS(11265), 11, + anon_sym_LPAREN2, + anon_sym_LT, anon_sym_LBRACK_LBRACK, - ACTIONS(894), 1, anon_sym_LBRACE, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - ACTIONS(10001), 1, - anon_sym_LBRACK, - ACTIONS(10114), 1, - anon_sym_try, - STATE(692), 1, - sym_compound_statement, - STATE(693), 1, - sym_try_statement, - STATE(3033), 1, - sym_parameter_list, - STATE(5979), 1, - sym__function_declarator_seq, - STATE(5949), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [261711] = 11, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + anon_sym_DASH_GT, + anon_sym_noexcept, + anon_sym_throw, + [266383] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(10001), 1, - anon_sym_LBRACK, - ACTIONS(10007), 1, + ACTIONS(9826), 1, anon_sym_try, - STATE(517), 1, + ACTIONS(10071), 1, + anon_sym_LBRACK, + ACTIONS(10654), 1, + anon_sym_LBRACE, + STATE(2120), 1, sym_compound_statement, - STATE(518), 1, + STATE(2122), 1, sym_try_statement, - STATE(3033), 1, + STATE(3044), 1, sym_parameter_list, - STATE(5979), 1, + STATE(6203), 1, sym__function_declarator_seq, - STATE(5949), 2, + STATE(6081), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [261746] = 5, + [266418] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6253), 1, - anon_sym_LBRACK, - ACTIONS(11258), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(11260), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(6255), 6, + ACTIONS(9798), 1, anon_sym_LPAREN2, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, + ACTIONS(10815), 1, + anon_sym___attribute, + ACTIONS(11108), 1, + anon_sym_LBRACK, + STATE(3371), 1, + sym_parameter_list, + STATE(6153), 1, + sym__function_declarator_seq, + ACTIONS(10813), 6, + anon_sym_COMMA, + anon_sym___attribute__, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [261769] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11043), 1, - sym_identifier, - ACTIONS(11169), 1, - aux_sym_preproc_else_token1, - ACTIONS(11171), 1, - aux_sym_preproc_elif_token1, - ACTIONS(11262), 1, - aux_sym_preproc_if_token2, - STATE(6494), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(8666), 1, - sym_enumerator, - ACTIONS(11173), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(8523), 3, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - sym_preproc_elifdef_in_enumerator_list, - [261800] = 7, + [266445] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(10763), 1, + ACTIONS(10819), 1, anon_sym___attribute, - ACTIONS(11061), 1, + ACTIONS(11108), 1, anon_sym_LBRACK, - STATE(3295), 1, + STATE(3371), 1, sym_parameter_list, - STATE(6049), 1, + STATE(6153), 1, sym__function_declarator_seq, - ACTIONS(10761), 6, + ACTIONS(10817), 6, anon_sym_COMMA, anon_sym___attribute__, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_requires, - [261827] = 4, + [266472] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6178), 1, - anon_sym_LBRACK, - ACTIONS(11260), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(6180), 8, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_or, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [261848] = 10, + ACTIONS(11267), 1, + sym_identifier, + ACTIONS(11270), 1, + aux_sym_preproc_if_token1, + ACTIONS(11276), 1, + sym_preproc_directive, + ACTIONS(11279), 1, + anon_sym_RBRACE, + ACTIONS(11273), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(8186), 2, + sym_preproc_call, + sym_enumerator, + STATE(6569), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [266501] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(3907), 1, + ACTIONS(10582), 1, anon_sym_COLON_COLON, - ACTIONS(9615), 1, + ACTIONS(11281), 1, sym_identifier, - ACTIONS(11264), 1, - anon_sym_virtual, - STATE(1893), 1, - sym_template_type, - STATE(6599), 1, + STATE(5926), 1, sym__scope_resolution, - STATE(7068), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(8601), 2, + STATE(8303), 1, + sym_qualified_identifier, + ACTIONS(11283), 2, + anon_sym_enum, + anon_sym_namespace, + STATE(8569), 3, sym_decltype, + sym_template_type, sym_dependent_type_identifier, - [261881] = 11, + [266532] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(9790), 1, + ACTIONS(9826), 1, anon_sym_try, - ACTIONS(10001), 1, + ACTIONS(10071), 1, anon_sym_LBRACK, - ACTIONS(10966), 1, + ACTIONS(10654), 1, anon_sym_LBRACE, - STATE(1724), 1, + STATE(2206), 1, sym_compound_statement, - STATE(1727), 1, + STATE(2207), 1, sym_try_statement, - STATE(3033), 1, + STATE(3044), 1, sym_parameter_list, - STATE(5979), 1, + STATE(6203), 1, sym__function_declarator_seq, - STATE(5949), 2, + STATE(6081), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [261916] = 3, + [266567] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4959), 2, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(10754), 1, anon_sym___attribute, + ACTIONS(11108), 1, anon_sym_LBRACK, - ACTIONS(4961), 9, + STATE(3371), 1, + sym_parameter_list, + STATE(6153), 1, + sym__function_declarator_seq, + ACTIONS(10750), 6, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [261935] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11266), 11, - anon_sym_LPAREN2, - anon_sym_LT, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - anon_sym_DASH_GT, - anon_sym_noexcept, - anon_sym_throw, - [261952] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [266594] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4988), 2, - anon_sym___attribute, + ACTIONS(9150), 1, anon_sym_LBRACK, - ACTIONS(4990), 9, - anon_sym_COMMA, + ACTIONS(9632), 1, + anon_sym_requires, + ACTIONS(9193), 2, + anon_sym_final, + anon_sym_override, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5927), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9139), 3, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, anon_sym_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [261971] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - ACTIONS(10001), 1, - anon_sym_LBRACK, - STATE(3033), 1, - sym_parameter_list, - STATE(5979), 1, - sym__function_declarator_seq, - STATE(5949), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(10885), 4, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_try, - [262000] = 9, + [266621] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(11043), 1, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(10582), 1, + anon_sym_COLON_COLON, + ACTIONS(11285), 1, sym_identifier, - ACTIONS(11169), 1, - aux_sym_preproc_else_token1, - ACTIONS(11171), 1, - aux_sym_preproc_elif_token1, - ACTIONS(11268), 1, - aux_sym_preproc_if_token2, - STATE(6705), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(8666), 1, - sym_enumerator, - ACTIONS(11173), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(8387), 3, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - sym_preproc_elifdef_in_enumerator_list, - [262031] = 11, + STATE(5926), 1, + sym__scope_resolution, + STATE(8403), 1, + sym_qualified_identifier, + ACTIONS(11287), 2, + anon_sym_enum, + anon_sym_namespace, + STATE(8569), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [266652] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(894), 1, - anon_sym_LBRACE, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - ACTIONS(10001), 1, + ACTIONS(9382), 1, anon_sym_LBRACK, - ACTIONS(10114), 1, - anon_sym_try, - STATE(677), 1, - sym_compound_statement, - STATE(678), 1, - sym_try_statement, - STATE(3033), 1, - sym_parameter_list, - STATE(5979), 1, - sym__function_declarator_seq, - STATE(5949), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [262066] = 8, + ACTIONS(9708), 1, + anon_sym_requires, + ACTIONS(9387), 2, + anon_sym_final, + anon_sym_override, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5934), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9371), 3, + anon_sym_LPAREN2, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + [266679] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10889), 1, + ACTIONS(10909), 1, sym_identifier, - ACTIONS(11177), 1, + ACTIONS(11219), 1, aux_sym_preproc_else_token1, - ACTIONS(11179), 1, + ACTIONS(11221), 1, aux_sym_preproc_elif_token1, - ACTIONS(11270), 1, + ACTIONS(11289), 1, aux_sym_preproc_if_token2, - ACTIONS(11181), 2, + ACTIONS(11223), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(6706), 2, + STATE(6549), 2, sym_enumerator, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(8433), 3, + STATE(8502), 3, sym_preproc_else_in_enumerator_list_no_comma, sym_preproc_elif_in_enumerator_list_no_comma, sym_preproc_elifdef_in_enumerator_list_no_comma, - [262095] = 6, + [266708] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - ACTIONS(11061), 1, - anon_sym_LBRACK, - STATE(2994), 1, - sym_parameter_list, - STATE(6049), 1, - sym__function_declarator_seq, - ACTIONS(10757), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [262120] = 2, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(3915), 1, + anon_sym_COLON_COLON, + ACTIONS(9647), 1, + sym_identifier, + ACTIONS(11291), 1, + anon_sym_virtual, + STATE(1922), 1, + sym_template_type, + STATE(6697), 1, + sym__scope_resolution, + STATE(7398), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8569), 2, + sym_decltype, + sym_dependent_type_identifier, + [266741] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(11272), 11, - anon_sym_LPAREN2, - anon_sym_LT, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - anon_sym_DASH_GT, - anon_sym_noexcept, - anon_sym_throw, - [262137] = 9, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(10582), 1, + anon_sym_COLON_COLON, + ACTIONS(11293), 1, + sym_identifier, + STATE(5926), 1, + sym__scope_resolution, + STATE(8649), 1, + sym_qualified_identifier, + ACTIONS(11295), 2, + anon_sym_enum, + anon_sym_namespace, + STATE(8569), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [266772] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(10460), 1, + ACTIONS(10582), 1, anon_sym_COLON_COLON, - ACTIONS(11274), 1, + ACTIONS(11297), 1, sym_identifier, - STATE(5796), 1, + STATE(5926), 1, sym__scope_resolution, - STATE(8197), 1, + STATE(8812), 1, sym_qualified_identifier, - ACTIONS(11276), 2, + ACTIONS(11299), 2, anon_sym_enum, anon_sym_namespace, - STATE(8601), 3, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - [262168] = 2, + [266803] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11278), 11, + ACTIONS(9700), 1, + anon_sym_LBRACK, + ACTIONS(9828), 1, + anon_sym_requires, + ACTIONS(9702), 2, + anon_sym_final, + anon_sym_override, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5924), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9689), 3, anon_sym_LPAREN2, - anon_sym_LT, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - anon_sym_DASH_GT, - anon_sym_noexcept, - anon_sym_throw, - [262185] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, + anon_sym_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(297), 1, - anon_sym_LBRACE, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - ACTIONS(10001), 1, - anon_sym_LBRACK, - ACTIONS(10023), 1, - anon_sym_try, - STATE(351), 1, - sym_compound_statement, - STATE(352), 1, - sym_try_statement, - STATE(3033), 1, - sym_parameter_list, - STATE(5979), 1, - sym__function_declarator_seq, - STATE(5949), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [262220] = 10, + [266830] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(3907), 1, + ACTIONS(3915), 1, anon_sym_COLON_COLON, - ACTIONS(9615), 1, + ACTIONS(9647), 1, sym_identifier, - ACTIONS(11280), 1, + ACTIONS(11301), 1, anon_sym_virtual, - STATE(1893), 1, + STATE(1922), 1, sym_template_type, - STATE(6599), 1, + STATE(6697), 1, sym__scope_resolution, - STATE(6990), 2, + STATE(7267), 2, sym__class_name, sym_qualified_type_identifier, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - [262253] = 6, + [266863] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(11061), 1, + ACTIONS(10786), 1, + anon_sym___attribute, + ACTIONS(11108), 1, anon_sym_LBRACK, - STATE(2994), 1, + STATE(3378), 1, sym_parameter_list, - STATE(6049), 1, + STATE(6153), 1, sym__function_declarator_seq, - ACTIONS(10765), 7, + ACTIONS(10784), 6, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [266890] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(11108), 1, + anon_sym_LBRACK, + STATE(3095), 1, + sym_parameter_list, + STATE(6153), 1, + sym__function_declarator_seq, + ACTIONS(10801), 7, anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_EQ, anon_sym_final, anon_sym_override, + anon_sym_try, anon_sym_requires, - [262278] = 11, + [266915] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(10001), 1, + ACTIONS(11108), 1, anon_sym_LBRACK, - ACTIONS(10007), 1, + STATE(3095), 1, + sym_parameter_list, + STATE(6153), 1, + sym__function_declarator_seq, + ACTIONS(10805), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, anon_sym_try, - STATE(562), 1, - sym_compound_statement, - STATE(618), 1, - sym_try_statement, - STATE(3033), 1, + anon_sym_requires, + [266940] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(10815), 1, + anon_sym___attribute, + ACTIONS(11108), 1, + anon_sym_LBRACK, + STATE(3378), 1, sym_parameter_list, - STATE(5979), 1, + STATE(6153), 1, sym__function_declarator_seq, - STATE(5949), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [262313] = 7, + ACTIONS(10813), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [266967] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(10751), 1, + ACTIONS(10819), 1, anon_sym___attribute, - ACTIONS(11061), 1, + ACTIONS(11108), 1, anon_sym_LBRACK, - STATE(3299), 1, + STATE(3378), 1, sym_parameter_list, - STATE(6049), 1, + STATE(6153), 1, sym__function_declarator_seq, - ACTIONS(10749), 6, + ACTIONS(10817), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym___attribute__, anon_sym_final, anon_sym_override, anon_sym_requires, - [262340] = 2, + [266994] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11282), 11, + ACTIONS(11303), 11, anon_sym_LPAREN2, anon_sym_LT, anon_sym_LBRACK_LBRACK, @@ -507793,77 +515235,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_noexcept, anon_sym_throw, - [262357] = 6, + [267011] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(11061), 1, + ACTIONS(11108), 1, anon_sym_LBRACK, - STATE(2994), 1, + STATE(3095), 1, sym_parameter_list, - STATE(6049), 1, + STATE(6153), 1, sym__function_declarator_seq, - ACTIONS(10731), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(10760), 7, anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_EQ, anon_sym_final, anon_sym_override, + anon_sym_try, anon_sym_requires, - [262382] = 6, + [267036] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(11061), 1, + ACTIONS(10754), 1, + anon_sym___attribute, + ACTIONS(11108), 1, anon_sym_LBRACK, - STATE(2994), 1, + STATE(3378), 1, sym_parameter_list, - STATE(6049), 1, + STATE(6153), 1, sym__function_declarator_seq, - ACTIONS(10761), 7, + ACTIONS(10750), 6, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, + anon_sym___attribute__, anon_sym_final, anon_sym_override, anon_sym_requires, - [262407] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - ACTIONS(10001), 1, - anon_sym_LBRACK, - STATE(3033), 1, - sym_parameter_list, - STATE(5979), 1, - sym__function_declarator_seq, - STATE(5949), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(10873), 4, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_try, - [262436] = 6, + [267063] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(11061), 1, + ACTIONS(11108), 1, anon_sym_LBRACK, - STATE(2998), 1, + STATE(3095), 1, sym_parameter_list, - STATE(6049), 1, + STATE(6153), 1, sym__function_declarator_seq, - ACTIONS(10761), 7, + ACTIONS(10831), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, @@ -507871,918 +515293,1104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [262461] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11043), 1, - sym_identifier, - ACTIONS(11169), 1, - aux_sym_preproc_else_token1, - ACTIONS(11171), 1, - aux_sym_preproc_elif_token1, - ACTIONS(11284), 1, - aux_sym_preproc_if_token2, - STATE(6427), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(8666), 1, - sym_enumerator, - ACTIONS(11173), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(8504), 3, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - sym_preproc_elifdef_in_enumerator_list, - [262492] = 9, + [267088] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(5006), 2, anon_sym___attribute, - ACTIONS(6971), 1, - anon_sym_LBRACE, - ACTIONS(7147), 1, + anon_sym_LBRACK, + ACTIONS(5008), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym___attribute__, - ACTIONS(11161), 1, anon_sym_COLON, - STATE(2509), 1, - sym_attribute_specifier, - STATE(3489), 1, - sym__enum_base_clause, - STATE(3613), 1, - sym_enumerator_list, - ACTIONS(6338), 4, - anon_sym_COMMA, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [262523] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(10460), 1, - anon_sym_COLON_COLON, - ACTIONS(11286), 1, - sym_identifier, - STATE(5796), 1, - sym__scope_resolution, - STATE(8442), 1, - sym_qualified_identifier, - ACTIONS(11288), 2, - anon_sym_enum, - anon_sym_namespace, - STATE(8601), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [262554] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11043), 1, - sym_identifier, - ACTIONS(11169), 1, - aux_sym_preproc_else_token1, - ACTIONS(11171), 1, - aux_sym_preproc_elif_token1, - ACTIONS(11290), 1, - aux_sym_preproc_if_token2, - STATE(6705), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(8666), 1, - sym_enumerator, - ACTIONS(11173), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(8247), 3, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - sym_preproc_elifdef_in_enumerator_list, - [262585] = 9, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [267107] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(10460), 1, + ACTIONS(10582), 1, anon_sym_COLON_COLON, - ACTIONS(11292), 1, + ACTIONS(11305), 1, sym_identifier, - STATE(5796), 1, + STATE(5926), 1, sym__scope_resolution, - STATE(8372), 1, + STATE(8072), 1, sym_qualified_identifier, - ACTIONS(11294), 2, + ACTIONS(11307), 2, anon_sym_enum, anon_sym_namespace, - STATE(8601), 3, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - [262616] = 7, + [267138] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - ACTIONS(10755), 1, - anon_sym___attribute, - ACTIONS(11061), 1, - anon_sym_LBRACK, - STATE(3299), 1, - sym_parameter_list, - STATE(6049), 1, - sym__function_declarator_seq, - ACTIONS(10753), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_final, - anon_sym_override, + ACTIONS(7924), 1, anon_sym_requires, - [262643] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - ACTIONS(11061), 1, + ACTIONS(9150), 1, anon_sym_LBRACK, - STATE(2994), 1, - sym_parameter_list, - STATE(6049), 1, - sym__function_declarator_seq, - ACTIONS(10741), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(6037), 2, anon_sym_final, anon_sym_override, - anon_sym_requires, - [262668] = 11, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5927), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9139), 3, + anon_sym_LPAREN2, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + [267165] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(866), 1, + ACTIONS(297), 1, anon_sym_LBRACE, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(10001), 1, + ACTIONS(10071), 1, anon_sym_LBRACK, - ACTIONS(10148), 1, + ACTIONS(10081), 1, anon_sym_try, - STATE(753), 1, + STATE(333), 1, sym_compound_statement, - STATE(754), 1, + STATE(334), 1, sym_try_statement, - STATE(3033), 1, + STATE(3044), 1, sym_parameter_list, - STATE(5979), 1, + STATE(6203), 1, sym__function_declarator_seq, - STATE(5949), 2, + STATE(6081), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [262703] = 6, + [267200] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(7027), 1, + anon_sym_LBRACE, + ACTIONS(7299), 1, + anon_sym___attribute__, + ACTIONS(11309), 1, + anon_sym_COLON, + STATE(2458), 1, + sym_attribute_specifier, + STATE(3546), 1, + sym__enum_base_clause, + STATE(3670), 1, + sym_enumerator_list, + ACTIONS(6395), 4, + anon_sym_COMMA, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [267231] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9947), 1, + anon_sym_LBRACK, + ACTIONS(11099), 1, + anon_sym_requires, + ACTIONS(9957), 2, + anon_sym_final, + anon_sym_override, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5874), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9945), 3, anon_sym_LPAREN2, - ACTIONS(11061), 1, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + [267258] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(10803), 1, + anon_sym___attribute, + ACTIONS(11108), 1, anon_sym_LBRACK, - STATE(2998), 1, + STATE(3371), 1, sym_parameter_list, - STATE(6049), 1, + STATE(6153), 1, sym__function_declarator_seq, - ACTIONS(10757), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(10801), 6, + anon_sym_COMMA, + anon_sym___attribute__, anon_sym_final, anon_sym_override, - anon_sym_try, + anon_sym_GT2, anon_sym_requires, - [262728] = 10, + [267285] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(3907), 1, - anon_sym_COLON_COLON, - ACTIONS(9615), 1, - sym_identifier, - ACTIONS(11296), 1, - anon_sym_virtual, - STATE(1893), 1, - sym_template_type, - STATE(6599), 1, - sym__scope_resolution, - STATE(7159), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(8601), 2, - sym_decltype, - sym_dependent_type_identifier, - [262761] = 7, + ACTIONS(7924), 1, + anon_sym_requires, + ACTIONS(9382), 1, + anon_sym_LBRACK, + ACTIONS(6037), 2, + anon_sym_final, + anon_sym_override, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5934), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9371), 3, + anon_sym_LPAREN2, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + [267312] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(10763), 1, + ACTIONS(10807), 1, anon_sym___attribute, - ACTIONS(11061), 1, + ACTIONS(11108), 1, anon_sym_LBRACK, - STATE(3299), 1, + STATE(3371), 1, sym_parameter_list, - STATE(6049), 1, + STATE(6153), 1, sym__function_declarator_seq, - ACTIONS(10761), 6, + ACTIONS(10805), 6, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym___attribute__, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [262788] = 7, + [267339] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(7924), 1, + anon_sym_requires, + ACTIONS(9700), 1, + anon_sym_LBRACK, + ACTIONS(6037), 2, + anon_sym_final, + anon_sym_override, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5924), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9689), 3, anon_sym_LPAREN2, - ACTIONS(10735), 1, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + [267366] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(10762), 1, anon_sym___attribute, - ACTIONS(11061), 1, + ACTIONS(11108), 1, anon_sym_LBRACK, - STATE(3295), 1, + STATE(3371), 1, sym_parameter_list, - STATE(6049), 1, + STATE(6153), 1, sym__function_declarator_seq, - ACTIONS(10731), 6, + ACTIONS(10760), 6, anon_sym_COMMA, anon_sym___attribute__, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_requires, - [262815] = 8, + [267393] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10889), 1, - sym_identifier, - ACTIONS(11177), 1, - aux_sym_preproc_else_token1, - ACTIONS(11179), 1, - aux_sym_preproc_elif_token1, - ACTIONS(11298), 1, - aux_sym_preproc_if_token2, - ACTIONS(11181), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(6706), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(8257), 3, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - sym_preproc_elifdef_in_enumerator_list_no_comma, - [262844] = 7, + ACTIONS(7924), 1, + anon_sym_requires, + ACTIONS(9947), 1, + anon_sym_LBRACK, + ACTIONS(6037), 2, + anon_sym_final, + anon_sym_override, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5874), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9945), 3, + anon_sym_LPAREN2, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + [267420] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(7924), 1, + anon_sym_requires, + ACTIONS(9951), 1, + anon_sym_LBRACK, + ACTIONS(6037), 2, + anon_sym_final, + anon_sym_override, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5912), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9949), 3, + anon_sym_LPAREN2, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + [267447] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(10767), 1, + ACTIONS(10833), 1, anon_sym___attribute, - ACTIONS(11061), 1, + ACTIONS(11108), 1, anon_sym_LBRACK, - STATE(3299), 1, + STATE(3371), 1, sym_parameter_list, - STATE(6049), 1, + STATE(6153), 1, sym__function_declarator_seq, - ACTIONS(10765), 6, + ACTIONS(10831), 6, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym___attribute__, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [262871] = 5, + [267474] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(11304), 1, - anon_sym_delete, - ACTIONS(11306), 1, - anon_sym_new, - ACTIONS(11302), 3, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_COLON_COLON, - ACTIONS(11300), 5, - anon_sym___based, - sym_identifier, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(7027), 1, + anon_sym_LBRACE, + ACTIONS(7299), 1, + anon_sym___attribute__, + ACTIONS(11309), 1, + anon_sym_COLON, + STATE(2457), 1, + sym_attribute_specifier, + STATE(3547), 1, + sym__enum_base_clause, + STATE(3674), 1, + sym_enumerator_list, + ACTIONS(6318), 4, + anon_sym_COMMA, + sym_auto, anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [262893] = 9, + anon_sym_GT2, + [267505] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(9951), 1, + anon_sym_LBRACK, + ACTIONS(11311), 1, + anon_sym_requires, + ACTIONS(9963), 2, + anon_sym_final, + anon_sym_override, + STATE(5593), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5912), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9949), 3, + anon_sym_LPAREN2, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + [267532] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5010), 2, anon_sym___attribute, - ACTIONS(7147), 1, - anon_sym___attribute__, - ACTIONS(9770), 1, + anon_sym_LBRACK, + ACTIONS(5012), 9, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(11061), 1, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [267551] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4998), 2, + anon_sym___attribute, anon_sym_LBRACK, - STATE(3223), 1, - sym_parameter_list, - STATE(6049), 1, - sym__function_declarator_seq, - ACTIONS(10940), 2, + ACTIONS(5000), 9, anon_sym_COMMA, - anon_sym_RPAREN, - STATE(6768), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [262923] = 9, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [267570] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(3907), 1, - anon_sym_COLON_COLON, - ACTIONS(9615), 1, - sym_identifier, - STATE(1893), 1, - sym_template_type, - STATE(6599), 1, - sym__scope_resolution, - STATE(7122), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(8601), 2, - sym_decltype, - sym_dependent_type_identifier, - [262953] = 6, + ACTIONS(5014), 2, + anon_sym___attribute, + anon_sym_LBRACK, + ACTIONS(5016), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [267589] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(10733), 1, + ACTIONS(10803), 1, + anon_sym___attribute, + ACTIONS(11108), 1, anon_sym_LBRACK, - STATE(3273), 1, + STATE(3378), 1, sym_parameter_list, - STATE(5813), 1, + STATE(6153), 1, sym__function_declarator_seq, - ACTIONS(10731), 6, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(10801), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, anon_sym_final, anon_sym_override, anon_sym_requires, - [262977] = 6, + [267616] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(10733), 1, + ACTIONS(10807), 1, + anon_sym___attribute, + ACTIONS(11108), 1, anon_sym_LBRACK, - STATE(3273), 1, + STATE(3378), 1, sym_parameter_list, - STATE(5813), 1, + STATE(6153), 1, sym__function_declarator_seq, - ACTIONS(10741), 6, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(10805), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, anon_sym_final, anon_sym_override, anon_sym_requires, - [263001] = 6, + [267643] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(10733), 1, + ACTIONS(10762), 1, + anon_sym___attribute, + ACTIONS(11108), 1, anon_sym_LBRACK, - STATE(3273), 1, + STATE(3378), 1, sym_parameter_list, - STATE(5813), 1, + STATE(6153), 1, sym__function_declarator_seq, - ACTIONS(10745), 6, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(10760), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, anon_sym_final, anon_sym_override, anon_sym_requires, - [263025] = 6, + [267670] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(10733), 1, + ACTIONS(10833), 1, + anon_sym___attribute, + ACTIONS(11108), 1, anon_sym_LBRACK, - STATE(3273), 1, + STATE(3378), 1, sym_parameter_list, - STATE(5813), 1, + STATE(6153), 1, sym__function_declarator_seq, - ACTIONS(10749), 6, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(10831), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, anon_sym_final, anon_sym_override, anon_sym_requires, - [263049] = 6, + [267697] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(11314), 11, anon_sym_LPAREN2, - ACTIONS(10733), 1, + anon_sym_LT, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + anon_sym_DASH_GT, + anon_sym_noexcept, + anon_sym_throw, + [267714] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5002), 2, + anon_sym___attribute, anon_sym_LBRACK, - STATE(3273), 1, - sym_parameter_list, - STATE(5813), 1, - sym__function_declarator_seq, - ACTIONS(10753), 6, + ACTIONS(5004), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [263073] = 6, + anon_sym_try, + [267733] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(4976), 2, + anon_sym___attribute, + anon_sym_LBRACK, + ACTIONS(4978), 9, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(10733), 1, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [267752] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4980), 2, + anon_sym___attribute, anon_sym_LBRACK, - STATE(3273), 1, - sym_parameter_list, - STATE(5813), 1, - sym__function_declarator_seq, - ACTIONS(10757), 6, + ACTIONS(4982), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [263097] = 6, + anon_sym_try, + [267771] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(57), 1, + anon_sym_LBRACE, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(10733), 1, + ACTIONS(10071), 1, anon_sym_LBRACK, - STATE(3273), 1, + ACTIONS(10182), 1, + anon_sym_try, + STATE(483), 1, + sym_try_statement, + STATE(662), 1, + sym_compound_statement, + STATE(3044), 1, sym_parameter_list, - STATE(5813), 1, + STATE(6203), 1, sym__function_declarator_seq, - ACTIONS(10761), 6, + STATE(6081), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [267806] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11085), 1, + sym_identifier, + ACTIONS(11203), 1, + aux_sym_preproc_else_token1, + ACTIONS(11205), 1, + aux_sym_preproc_elif_token1, + ACTIONS(11316), 1, + aux_sym_preproc_if_token2, + STATE(6531), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(8369), 1, + sym_enumerator, + ACTIONS(11207), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(8737), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + [267837] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6298), 1, + anon_sym_LBRACK, + ACTIONS(11239), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(11318), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6300), 6, + anon_sym_LPAREN2, + anon_sym_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, anon_sym_final, anon_sym_override, anon_sym_requires, - [263121] = 6, + [267860] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(11320), 1, + sym_identifier, + ACTIONS(11322), 1, + anon_sym_COLON, + ACTIONS(11324), 1, + sym_system_lib_string, + STATE(7378), 1, + sym_string_literal, + STATE(7382), 1, + sym_module_name, + STATE(7383), 1, + sym_module_partition, + ACTIONS(6870), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [267889] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(10582), 1, + anon_sym_COLON_COLON, + ACTIONS(11326), 1, + sym_identifier, + STATE(5926), 1, + sym__scope_resolution, + STATE(8566), 1, + sym_qualified_identifier, + ACTIONS(11328), 2, + anon_sym_enum, + anon_sym_namespace, + STATE(8569), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [267920] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(10733), 1, + ACTIONS(10071), 1, anon_sym_LBRACK, - STATE(3273), 1, + STATE(3044), 1, sym_parameter_list, - STATE(5813), 1, + STATE(6203), 1, sym__function_declarator_seq, - ACTIONS(10765), 6, - anon_sym_LBRACK_LBRACK, + STATE(6081), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(10897), 4, + anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [263145] = 6, + anon_sym_try, + [267949] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9328), 1, - anon_sym_requires, - ACTIONS(7335), 2, - anon_sym_final, - anon_sym_override, - STATE(5925), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6012), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9182), 3, + ACTIONS(11330), 11, anon_sym_LPAREN2, + anon_sym_LT, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, - [263169] = 7, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + anon_sym_DASH_GT, + anon_sym_noexcept, + anon_sym_throw, + [267966] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(11320), 1, + sym_identifier, + ACTIONS(11322), 1, + anon_sym_COLON, + ACTIONS(11332), 1, + sym_system_lib_string, + STATE(7499), 1, + sym_string_literal, + STATE(7519), 1, + sym_module_name, + STATE(7525), 1, + sym_module_partition, + ACTIONS(6870), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [267995] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(10743), 1, - anon_sym___attribute, - ACTIONS(11061), 1, + ACTIONS(11108), 1, anon_sym_LBRACK, - STATE(3087), 1, + STATE(3086), 1, sym_parameter_list, - STATE(6049), 1, + STATE(6153), 1, sym__function_declarator_seq, - ACTIONS(10741), 5, + ACTIONS(10784), 7, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_GT2, - [263195] = 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [268020] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(3915), 1, + anon_sym_COLON_COLON, + ACTIONS(9647), 1, + sym_identifier, + ACTIONS(11334), 1, + anon_sym_virtual, + STATE(1922), 1, + sym_template_type, + STATE(6697), 1, + sym__scope_resolution, + STATE(7148), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8569), 2, + sym_decltype, + sym_dependent_type_identifier, + [268053] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(10759), 1, - anon_sym___attribute, - ACTIONS(11061), 1, + ACTIONS(11108), 1, anon_sym_LBRACK, - STATE(3087), 1, + STATE(3086), 1, sym_parameter_list, - STATE(6049), 1, + STATE(6153), 1, sym__function_declarator_seq, - ACTIONS(10757), 5, + ACTIONS(10817), 7, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_GT2, - [263221] = 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [268078] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(10582), 1, + anon_sym_COLON_COLON, + ACTIONS(11336), 1, + sym_identifier, + STATE(5926), 1, + sym__scope_resolution, + STATE(8829), 1, + sym_qualified_identifier, + ACTIONS(11338), 2, + anon_sym_enum, + anon_sym_namespace, + STATE(8569), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [268109] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(10767), 1, - anon_sym___attribute, - ACTIONS(11061), 1, + ACTIONS(10071), 1, anon_sym_LBRACK, - STATE(3087), 1, + STATE(3044), 1, sym_parameter_list, - STATE(6049), 1, + STATE(6203), 1, sym__function_declarator_seq, - ACTIONS(10765), 5, - anon_sym_COMMA, + STATE(6081), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(10933), 4, anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_GT2, - [263247] = 6, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_try, + [268138] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(10582), 1, + anon_sym_COLON_COLON, + ACTIONS(11340), 1, + sym_identifier, + STATE(5926), 1, + sym__scope_resolution, + STATE(8254), 1, + sym_qualified_identifier, + ACTIONS(11342), 2, + anon_sym_enum, + anon_sym_namespace, + STATE(8569), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [268169] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(57), 1, + anon_sym_LBRACE, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(11061), 1, + ACTIONS(10071), 1, anon_sym_LBRACK, - STATE(3179), 1, + ACTIONS(10182), 1, + anon_sym_try, + STATE(530), 1, + sym_compound_statement, + STATE(531), 1, + sym_try_statement, + STATE(3044), 1, sym_parameter_list, - STATE(6049), 1, + STATE(6203), 1, sym__function_declarator_seq, - ACTIONS(10731), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [263271] = 6, + STATE(6081), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [268204] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(894), 1, + anon_sym_LBRACE, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(11061), 1, + ACTIONS(10071), 1, anon_sym_LBRACK, - STATE(3179), 1, + ACTIONS(10138), 1, + anon_sym_try, + STATE(688), 1, + sym_compound_statement, + STATE(689), 1, + sym_try_statement, + STATE(3044), 1, sym_parameter_list, - STATE(6049), 1, + STATE(6203), 1, sym__function_declarator_seq, - ACTIONS(10749), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [263295] = 6, + STATE(6081), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [268239] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(11061), 1, + ACTIONS(10071), 1, anon_sym_LBRACK, - STATE(3179), 1, + STATE(3044), 1, sym_parameter_list, - STATE(6049), 1, + STATE(6203), 1, sym__function_declarator_seq, - ACTIONS(10753), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [263319] = 6, + STATE(6081), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(10893), 4, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_try, + [268268] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(11061), 1, + ACTIONS(10071), 1, anon_sym_LBRACK, - STATE(3179), 1, + STATE(3044), 1, sym_parameter_list, - STATE(6049), 1, + STATE(6203), 1, sym__function_declarator_seq, - ACTIONS(10761), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [263343] = 5, + STATE(6081), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(10905), 4, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_try, + [268297] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11308), 1, - anon_sym_delete, - ACTIONS(11310), 1, - anon_sym_new, - ACTIONS(11302), 3, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_COLON_COLON, - ACTIONS(11300), 5, - anon_sym___based, + ACTIONS(10909), 1, sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [263365] = 6, + ACTIONS(11219), 1, + aux_sym_preproc_else_token1, + ACTIONS(11221), 1, + aux_sym_preproc_elif_token1, + ACTIONS(11344), 1, + aux_sym_preproc_if_token2, + ACTIONS(11223), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(6771), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(8447), 3, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + sym_preproc_elifdef_in_enumerator_list_no_comma, + [268326] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(11061), 1, + ACTIONS(10752), 1, anon_sym_LBRACK, - STATE(3179), 1, + STATE(3255), 1, sym_parameter_list, - STATE(6049), 1, + STATE(5959), 1, sym__function_declarator_seq, - ACTIONS(10741), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(10817), 6, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [263389] = 6, + [268350] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(11061), 1, + ACTIONS(10752), 1, anon_sym_LBRACK, - STATE(3179), 1, + STATE(3255), 1, sym_parameter_list, - STATE(6049), 1, + STATE(5959), 1, sym__function_declarator_seq, - ACTIONS(10745), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(10813), 6, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [263413] = 6, + [268374] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(11061), 1, + ACTIONS(10752), 1, anon_sym_LBRACK, - STATE(3179), 1, + STATE(3255), 1, sym_parameter_list, - STATE(6049), 1, + STATE(5959), 1, sym__function_declarator_seq, - ACTIONS(10757), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(10750), 6, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [263437] = 6, + [268398] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(11061), 1, + ACTIONS(10752), 1, anon_sym_LBRACK, - STATE(3179), 1, + STATE(3255), 1, sym_parameter_list, - STATE(6049), 1, + STATE(5959), 1, sym__function_declarator_seq, - ACTIONS(10765), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(10831), 6, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [263461] = 9, + [268422] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(3907), 1, + ACTIONS(3915), 1, anon_sym_COLON_COLON, - ACTIONS(9615), 1, + ACTIONS(9647), 1, sym_identifier, - STATE(1893), 1, + STATE(1922), 1, sym_template_type, - STATE(6599), 1, + STATE(6697), 1, sym__scope_resolution, - STATE(7068), 2, + STATE(7398), 2, sym__class_name, sym_qualified_type_identifier, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - [263491] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11312), 1, - anon_sym_delete, - ACTIONS(11314), 1, - anon_sym_new, - ACTIONS(11302), 3, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_COLON_COLON, - ACTIONS(11300), 5, - anon_sym___based, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [263513] = 9, + [268452] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(11316), 1, + ACTIONS(11346), 1, sym_identifier, - ACTIONS(11318), 1, + ACTIONS(11348), 1, anon_sym_COLON_COLON, - STATE(2753), 1, + STATE(2775), 1, sym_template_type, - STATE(6589), 1, + STATE(6687), 1, sym__scope_resolution, - STATE(2738), 2, + STATE(2780), 2, sym__class_name, sym_qualified_type_identifier, - STATE(8601), 2, + STATE(8569), 2, sym_decltype, sym_dependent_type_identifier, - [263543] = 10, + [268482] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3615), 1, + ACTIONS(3623), 1, anon_sym_LBRACE, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(10001), 1, + ACTIONS(10071), 1, anon_sym_LBRACK, - ACTIONS(11320), 1, + ACTIONS(11350), 1, anon_sym_EQ, - STATE(3270), 1, + STATE(3394), 1, sym_parameter_list, - STATE(5979), 1, + STATE(6203), 1, sym__function_declarator_seq, - STATE(8445), 1, + STATE(8487), 1, sym_initializer_list, - STATE(5949), 2, + STATE(6081), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [263575] = 5, + [268514] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11322), 1, + ACTIONS(11356), 1, anon_sym_delete, - ACTIONS(11324), 1, - anon_sym_new, - ACTIONS(11302), 3, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_COLON_COLON, - ACTIONS(11300), 5, - anon_sym___based, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [263597] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11326), 10, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - anon_sym_DASH_GT, - anon_sym_noexcept, - anon_sym_throw, - anon_sym_requires, - [263613] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11324), 1, + ACTIONS(11358), 1, anon_sym_new, - ACTIONS(11328), 1, - anon_sym_delete, - ACTIONS(11302), 3, + ACTIONS(11354), 3, anon_sym_TILDE, anon_sym_STAR, anon_sym_COLON_COLON, - ACTIONS(11300), 5, + ACTIONS(11352), 5, anon_sym___based, sym_identifier, anon_sym_decltype, anon_sym_template, anon_sym_operator, - [263635] = 5, + [268536] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11330), 1, + ACTIONS(11360), 1, anon_sym_delete, - ACTIONS(11332), 1, + ACTIONS(11362), 1, anon_sym_new, - ACTIONS(11302), 3, + ACTIONS(11354), 3, anon_sym_TILDE, anon_sym_STAR, anon_sym_COLON_COLON, - ACTIONS(11300), 5, + ACTIONS(11352), 5, anon_sym___based, sym_identifier, anon_sym_decltype, anon_sym_template, anon_sym_operator, - [263657] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(3907), 1, - anon_sym_COLON_COLON, - ACTIONS(9615), 1, - sym_identifier, - STATE(1893), 1, - sym_template_type, - STATE(6599), 1, - sym__scope_resolution, - STATE(7497), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(8601), 2, - sym_decltype, - sym_dependent_type_identifier, - [263687] = 6, + [268558] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11336), 1, + ACTIONS(11366), 1, anon_sym_LBRACK, - STATE(7093), 1, - sym_gnu_asm_input_operand, - STATE(8516), 1, + STATE(7060), 1, + sym_gnu_asm_output_operand, + STATE(8394), 1, sym_string_literal, - ACTIONS(11334), 2, + ACTIONS(11364), 2, anon_sym_RPAREN, anon_sym_COLON, ACTIONS(119), 5, @@ -508791,88 +516399,257 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [263711] = 5, + [268582] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10861), 1, + anon_sym_requires, + ACTIONS(7359), 2, + anon_sym_final, + anon_sym_override, + STATE(6017), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6186), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9945), 3, + anon_sym_LPAREN2, + anon_sym_LBRACE, + anon_sym_LBRACK, + [268606] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11338), 1, + ACTIONS(11368), 1, anon_sym_delete, - ACTIONS(11340), 1, + ACTIONS(11370), 1, anon_sym_new, - ACTIONS(11302), 3, + ACTIONS(11354), 3, anon_sym_TILDE, anon_sym_STAR, anon_sym_COLON_COLON, - ACTIONS(11300), 5, + ACTIONS(11352), 5, anon_sym___based, sym_identifier, anon_sym_decltype, anon_sym_template, anon_sym_operator, - [263733] = 8, + [268628] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6046), 1, + ACTIONS(6098), 1, anon_sym_LBRACK, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(11344), 1, + ACTIONS(11374), 1, anon_sym___attribute, - STATE(2298), 1, + STATE(1942), 1, sym_parameter_list, - STATE(6307), 2, + STATE(6165), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(11342), 3, + ACTIONS(11372), 3, anon_sym_COMMA, anon_sym_SEMI, anon_sym___attribute__, - [263761] = 5, + [268656] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11346), 1, + ACTIONS(11376), 1, anon_sym_delete, - ACTIONS(11348), 1, + ACTIONS(11378), 1, anon_sym_new, - ACTIONS(11302), 3, + ACTIONS(11354), 3, anon_sym_TILDE, anon_sym_STAR, anon_sym_COLON_COLON, - ACTIONS(11300), 5, + ACTIONS(11352), 5, anon_sym___based, sym_identifier, anon_sym_decltype, anon_sym_template, anon_sym_operator, - [263783] = 6, + [268678] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9498), 1, + ACTIONS(9491), 1, anon_sym_requires, - ACTIONS(7335), 2, + ACTIONS(7359), 2, + anon_sym_final, + anon_sym_override, + STATE(6017), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6132), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9371), 3, + anon_sym_LPAREN2, + anon_sym_LBRACE, + anon_sym_LBRACK, + [268702] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(3915), 1, + anon_sym_COLON_COLON, + ACTIONS(9647), 1, + sym_identifier, + STATE(1922), 1, + sym_template_type, + STATE(6697), 1, + sym__scope_resolution, + STATE(7118), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8569), 2, + sym_decltype, + sym_dependent_type_identifier, + [268732] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10872), 1, + anon_sym_requires, + ACTIONS(7359), 2, anon_sym_final, anon_sym_override, - STATE(5925), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6032), 2, + STATE(6190), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9344), 3, + ACTIONS(9949), 3, anon_sym_LPAREN2, anon_sym_LBRACE, anon_sym_LBRACK, - [263807] = 6, + [268756] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(10803), 1, + anon_sym___attribute, + ACTIONS(11108), 1, + anon_sym_LBRACK, + STATE(3109), 1, + sym_parameter_list, + STATE(6153), 1, + sym__function_declarator_seq, + ACTIONS(10801), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_EQ, + anon_sym_GT2, + [268782] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11352), 1, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(10762), 1, + anon_sym___attribute, + ACTIONS(11108), 1, anon_sym_LBRACK, - STATE(7028), 1, - sym_gnu_asm_output_operand, - STATE(8022), 1, + STATE(3109), 1, + sym_parameter_list, + STATE(6153), 1, + sym__function_declarator_seq, + ACTIONS(10760), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_EQ, + anon_sym_GT2, + [268808] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11358), 1, + anon_sym_new, + ACTIONS(11380), 1, + anon_sym_delete, + ACTIONS(11354), 3, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + ACTIONS(11352), 5, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [268830] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(10833), 1, + anon_sym___attribute, + ACTIONS(11108), 1, + anon_sym_LBRACK, + STATE(3109), 1, + sym_parameter_list, + STATE(6153), 1, + sym__function_declarator_seq, + ACTIONS(10831), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_EQ, + anon_sym_GT2, + [268856] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(7299), 1, + anon_sym___attribute__, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(11108), 1, + anon_sym_LBRACK, + STATE(3357), 1, + sym_parameter_list, + STATE(6153), 1, + sym__function_declarator_seq, + ACTIONS(11051), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(6832), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [268886] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11382), 1, + anon_sym_delete, + ACTIONS(11384), 1, + anon_sym_new, + ACTIONS(11354), 3, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + ACTIONS(11352), 5, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [268908] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11388), 1, + anon_sym_LBRACK, + STATE(7119), 1, + sym_gnu_asm_input_operand, + STATE(8380), 1, sym_string_literal, - ACTIONS(11350), 2, + ACTIONS(11386), 2, anon_sym_RPAREN, anon_sym_COLON, ACTIONS(119), 5, @@ -508881,2041 +516658,2233 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [263831] = 5, + [268932] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(7299), 1, + anon_sym___attribute__, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(11108), 1, + anon_sym_LBRACK, + STATE(3276), 1, + sym_parameter_list, + STATE(6153), 1, + sym__function_declarator_seq, + ACTIONS(11051), 2, + anon_sym_COMMA, + anon_sym_GT2, + STATE(6832), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [268962] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11390), 10, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + anon_sym_DASH_GT, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [268978] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(3915), 1, + anon_sym_COLON_COLON, + ACTIONS(9647), 1, + sym_identifier, + STATE(1922), 1, + sym_template_type, + STATE(6697), 1, + sym__scope_resolution, + STATE(7058), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8569), 2, + sym_decltype, + sym_dependent_type_identifier, + [269008] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(10807), 1, + anon_sym___attribute, + ACTIONS(11108), 1, + anon_sym_LBRACK, + STATE(3109), 1, + sym_parameter_list, + STATE(6153), 1, + sym__function_declarator_seq, + ACTIONS(10805), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_EQ, + anon_sym_GT2, + [269034] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11306), 1, + ACTIONS(11392), 1, + anon_sym_delete, + ACTIONS(11394), 1, anon_sym_new, - ACTIONS(11354), 1, + ACTIONS(11354), 3, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + ACTIONS(11352), 5, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [269056] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11396), 1, anon_sym_delete, - ACTIONS(11302), 3, + ACTIONS(11398), 1, + anon_sym_new, + ACTIONS(11354), 3, anon_sym_TILDE, anon_sym_STAR, anon_sym_COLON_COLON, - ACTIONS(11300), 5, + ACTIONS(11352), 5, anon_sym___based, sym_identifier, anon_sym_decltype, anon_sym_template, anon_sym_operator, - [263853] = 6, + [269078] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9714), 1, + ACTIONS(9366), 1, anon_sym_requires, - ACTIONS(7335), 2, + ACTIONS(7359), 2, anon_sym_final, anon_sym_override, - STATE(5925), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6041), 2, + STATE(6149), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9665), 3, + ACTIONS(9139), 3, anon_sym_LPAREN2, anon_sym_LBRACE, anon_sym_LBRACK, - [263877] = 5, + [269102] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11356), 1, + ACTIONS(11400), 1, anon_sym_delete, - ACTIONS(11358), 1, + ACTIONS(11402), 1, anon_sym_new, - ACTIONS(11302), 3, + ACTIONS(11354), 3, anon_sym_TILDE, anon_sym_STAR, anon_sym_COLON_COLON, - ACTIONS(11300), 5, + ACTIONS(11352), 5, anon_sym___based, sym_identifier, anon_sym_decltype, anon_sym_template, anon_sym_operator, - [263899] = 6, + [269124] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10810), 1, - anon_sym_requires, - ACTIONS(7335), 2, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(11108), 1, + anon_sym_LBRACK, + STATE(3198), 1, + sym_parameter_list, + STATE(6153), 1, + sym__function_declarator_seq, + ACTIONS(10784), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_final, anon_sym_override, - STATE(5925), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6045), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9843), 3, + anon_sym_GT2, + anon_sym_requires, + [269148] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9798), 1, anon_sym_LPAREN2, + ACTIONS(10752), 1, + anon_sym_LBRACK, + STATE(3255), 1, + sym_parameter_list, + STATE(5959), 1, + sym__function_declarator_seq, + ACTIONS(10784), 6, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [269172] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(11108), 1, + anon_sym_LBRACK, + STATE(3198), 1, + sym_parameter_list, + STATE(6153), 1, + sym__function_declarator_seq, + ACTIONS(10813), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [269196] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(11108), 1, anon_sym_LBRACK, - [263923] = 6, + STATE(3198), 1, + sym_parameter_list, + STATE(6153), 1, + sym__function_declarator_seq, + ACTIONS(10817), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [269220] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10817), 1, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(11108), 1, + anon_sym_LBRACK, + STATE(3198), 1, + sym_parameter_list, + STATE(6153), 1, + sym__function_declarator_seq, + ACTIONS(10750), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, anon_sym_requires, - ACTIONS(7335), 2, + [269244] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9730), 1, + anon_sym_requires, + ACTIONS(7359), 2, anon_sym_final, anon_sym_override, - STATE(5925), 2, + STATE(6017), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6048), 2, + STATE(6133), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9847), 3, + ACTIONS(9689), 3, anon_sym_LPAREN2, anon_sym_LBRACE, anon_sym_LBRACK, - [263947] = 9, + [269268] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7147), 1, - anon_sym___attribute__, - ACTIONS(9770), 1, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(3915), 1, + anon_sym_COLON_COLON, + ACTIONS(9647), 1, + sym_identifier, + STATE(1922), 1, + sym_template_type, + STATE(6697), 1, + sym__scope_resolution, + STATE(7591), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8569), 2, + sym_decltype, + sym_dependent_type_identifier, + [269298] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(11061), 1, + ACTIONS(11108), 1, anon_sym_LBRACK, - STATE(3216), 1, + STATE(3198), 1, sym_parameter_list, - STATE(6049), 1, + STATE(6153), 1, sym__function_declarator_seq, - ACTIONS(10940), 2, + ACTIONS(10801), 6, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - STATE(6768), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [263977] = 5, + anon_sym_requires, + [269322] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11360), 1, - anon_sym_delete, - ACTIONS(11362), 1, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(11108), 1, + anon_sym_LBRACK, + STATE(3198), 1, + sym_parameter_list, + STATE(6153), 1, + sym__function_declarator_seq, + ACTIONS(10805), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [269346] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(11108), 1, + anon_sym_LBRACK, + STATE(3198), 1, + sym_parameter_list, + STATE(6153), 1, + sym__function_declarator_seq, + ACTIONS(10760), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [269370] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11358), 1, anon_sym_new, - ACTIONS(11302), 3, + ACTIONS(11404), 1, + anon_sym_delete, + ACTIONS(11354), 3, anon_sym_TILDE, anon_sym_STAR, anon_sym_COLON_COLON, - ACTIONS(11300), 5, + ACTIONS(11352), 5, anon_sym___based, sym_identifier, anon_sym_decltype, anon_sym_template, anon_sym_operator, - [263999] = 5, + [269392] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11340), 1, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(11108), 1, + anon_sym_LBRACK, + STATE(3198), 1, + sym_parameter_list, + STATE(6153), 1, + sym__function_declarator_seq, + ACTIONS(10831), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [269416] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11384), 1, anon_sym_new, - ACTIONS(11364), 1, + ACTIONS(11406), 1, anon_sym_delete, - ACTIONS(11302), 3, + ACTIONS(11354), 3, anon_sym_TILDE, anon_sym_STAR, anon_sym_COLON_COLON, - ACTIONS(11300), 5, + ACTIONS(11352), 5, anon_sym___based, sym_identifier, anon_sym_decltype, anon_sym_template, anon_sym_operator, - [264021] = 9, + [269438] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(3907), 1, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(10752), 1, + anon_sym_LBRACK, + STATE(3255), 1, + sym_parameter_list, + STATE(5959), 1, + sym__function_declarator_seq, + ACTIONS(10801), 6, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [269462] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11378), 1, + anon_sym_new, + ACTIONS(11408), 1, + anon_sym_delete, + ACTIONS(11354), 3, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_COLON_COLON, - ACTIONS(9615), 1, + ACTIONS(11352), 5, + anon_sym___based, sym_identifier, - STATE(1893), 1, - sym_template_type, - STATE(6599), 1, - sym__scope_resolution, - STATE(7159), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(8601), 2, - sym_decltype, - sym_dependent_type_identifier, - [264051] = 7, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [269484] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(10747), 1, - anon_sym___attribute, - ACTIONS(11061), 1, + ACTIONS(10752), 1, anon_sym_LBRACK, - STATE(3087), 1, + STATE(3255), 1, sym_parameter_list, - STATE(6049), 1, + STATE(5959), 1, sym__function_declarator_seq, - ACTIONS(10745), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, + ACTIONS(10805), 6, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_EQ, - anon_sym_GT2, - [264077] = 5, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [269508] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11340), 1, - anon_sym_new, - ACTIONS(11366), 1, + ACTIONS(11410), 1, anon_sym_delete, - ACTIONS(11302), 3, + ACTIONS(11412), 1, + anon_sym_new, + ACTIONS(11354), 3, anon_sym_TILDE, anon_sym_STAR, anon_sym_COLON_COLON, - ACTIONS(11300), 5, + ACTIONS(11352), 5, anon_sym___based, sym_identifier, anon_sym_decltype, anon_sym_template, anon_sym_operator, - [264099] = 6, + [269530] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(10733), 1, + ACTIONS(10752), 1, anon_sym_LBRACK, - STATE(3459), 1, + STATE(3255), 1, sym_parameter_list, - STATE(5813), 1, + STATE(5959), 1, sym__function_declarator_seq, - ACTIONS(10745), 5, - anon_sym_COLON, + ACTIONS(10760), 6, anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_final, anon_sym_override, anon_sym_requires, - [264122] = 6, + [269554] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4167), 1, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(11348), 1, anon_sym_COLON_COLON, - ACTIONS(6630), 1, - anon_sym_LT, - STATE(2864), 1, - sym_template_argument_list, - ACTIONS(4972), 2, - anon_sym_COLON, - anon_sym_LBRACK, - ACTIONS(4965), 4, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, + ACTIONS(11414), 1, + sym_identifier, + ACTIONS(11416), 1, + anon_sym_template, + STATE(2757), 1, + sym_dependent_type_identifier, + STATE(2768), 1, + sym_template_type, + STATE(2802), 1, + sym_qualified_type_identifier, + STATE(6687), 1, + sym__scope_resolution, + STATE(8569), 1, + sym_decltype, + [269585] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(10582), 1, + anon_sym_COLON_COLON, + ACTIONS(11418), 1, + sym_identifier, + STATE(5926), 1, + sym__scope_resolution, + STATE(8808), 1, + sym_qualified_identifier, + STATE(8569), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [269612] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5234), 1, + anon_sym_LBRACE, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - [264145] = 5, + ACTIONS(11420), 1, + sym_identifier, + ACTIONS(11422), 1, + anon_sym_COLON_COLON, + ACTIONS(11424), 1, + anon_sym_inline, + STATE(565), 1, + sym_declaration_list, + STATE(6826), 1, + sym_attribute_declaration, + STATE(7947), 1, + sym_nested_namespace_specifier, + STATE(8622), 1, + sym__namespace_specifier, + [269643] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(11368), 1, + ACTIONS(5232), 1, + anon_sym_LBRACE, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11422), 1, + anon_sym_COLON_COLON, + ACTIONS(11424), 1, + anon_sym_inline, + ACTIONS(11426), 1, sym_identifier, - ACTIONS(11372), 1, - sym_system_lib_string, - STATE(8368), 2, - sym_preproc_call_expression, - sym_string_literal, - ACTIONS(11370), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [264166] = 10, + STATE(785), 1, + sym_declaration_list, + STATE(6831), 1, + sym_attribute_declaration, + STATE(8027), 1, + sym_nested_namespace_specifier, + STATE(8622), 1, + sym__namespace_specifier, + [269674] = 8, ACTIONS(3), 1, sym_comment, + ACTIONS(1268), 1, + anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(9528), 1, + ACTIONS(10582), 1, anon_sym_COLON_COLON, - ACTIONS(11374), 1, + ACTIONS(11428), 1, sym_identifier, - ACTIONS(11376), 1, - anon_sym_template, - STATE(2783), 1, - sym_dependent_type_identifier, - STATE(2794), 1, - sym_template_type, - STATE(2846), 1, - sym_qualified_type_identifier, - STATE(6578), 1, + STATE(5926), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(8095), 1, + sym_qualified_identifier, + STATE(8569), 3, sym_decltype, - [264197] = 10, + sym_template_type, + sym_dependent_type_identifier, + [269701] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5232), 1, + anon_sym_LBRACE, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11422), 1, + anon_sym_COLON_COLON, + ACTIONS(11424), 1, + anon_sym_inline, + ACTIONS(11430), 1, + sym_identifier, + STATE(769), 1, + sym_declaration_list, + STATE(6839), 1, + sym_attribute_declaration, + STATE(7739), 1, + sym_nested_namespace_specifier, + STATE(8622), 1, + sym__namespace_specifier, + [269732] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(10752), 1, + anon_sym_LBRACK, + STATE(3515), 1, + sym_parameter_list, + STATE(5959), 1, + sym__function_declarator_seq, + ACTIONS(10784), 5, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [269755] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(8049), 1, + ACTIONS(9612), 1, anon_sym_COLON_COLON, - ACTIONS(11378), 1, + ACTIONS(11432), 1, sym_identifier, - ACTIONS(11380), 1, + ACTIONS(11434), 1, anon_sym_template, - STATE(2534), 1, + STATE(2581), 1, sym_template_type, - STATE(2556), 1, + STATE(2582), 1, sym_dependent_type_identifier, - STATE(2615), 1, + STATE(2644), 1, sym_qualified_type_identifier, - STATE(6579), 1, + STATE(6694), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(8569), 1, sym_decltype, - [264228] = 10, + [269786] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(9384), 1, + ACTIONS(9530), 1, anon_sym_COLON_COLON, - ACTIONS(11382), 1, + ACTIONS(11436), 1, sym_identifier, - ACTIONS(11384), 1, + ACTIONS(11438), 1, anon_sym_template, - STATE(1921), 1, + STATE(1944), 1, sym_template_type, - STATE(1923), 1, + STATE(1955), 1, sym_dependent_type_identifier, - STATE(2040), 1, + STATE(2123), 1, sym_qualified_type_identifier, - STATE(6580), 1, + STATE(6695), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(8569), 1, sym_decltype, - [264259] = 8, + [269817] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(10071), 1, + anon_sym_LBRACK, + STATE(3394), 1, + sym_parameter_list, + STATE(6203), 1, + sym__function_declarator_seq, + ACTIONS(10933), 2, + anon_sym_LBRACE, + anon_sym_EQ, + STATE(6081), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [269844] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(10460), 1, + ACTIONS(3915), 1, anon_sym_COLON_COLON, - ACTIONS(11386), 1, + ACTIONS(11440), 1, sym_identifier, - STATE(5796), 1, - sym__scope_resolution, - STATE(8027), 1, - sym_qualified_identifier, - STATE(8601), 3, - sym_decltype, + STATE(1919), 1, sym_template_type, + STATE(1930), 1, sym_dependent_type_identifier, - [264286] = 8, + STATE(1932), 1, + sym_qualified_type_identifier, + STATE(6697), 1, + sym__scope_resolution, + STATE(8569), 1, + sym_decltype, + [269875] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(10071), 1, + anon_sym_LBRACK, + STATE(3394), 1, + sym_parameter_list, + STATE(6203), 1, + sym__function_declarator_seq, + ACTIONS(10905), 2, + anon_sym_LBRACE, + anon_sym_EQ, + STATE(6081), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [269902] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, - anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(10460), 1, + ACTIONS(9437), 1, anon_sym_COLON_COLON, - ACTIONS(11243), 1, + ACTIONS(11442), 1, sym_identifier, - STATE(5796), 1, - sym__scope_resolution, - STATE(8048), 1, - sym_qualified_identifier, - STATE(8601), 3, - sym_decltype, + ACTIONS(11444), 1, + anon_sym_template, + STATE(1805), 1, sym_template_type, + STATE(1806), 1, sym_dependent_type_identifier, - [264313] = 8, + STATE(1865), 1, + sym_qualified_type_identifier, + STATE(6699), 1, + sym__scope_resolution, + STATE(8569), 1, + sym_decltype, + [269933] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(10752), 1, + anon_sym_LBRACK, + STATE(3515), 1, + sym_parameter_list, + STATE(5959), 1, + sym__function_declarator_seq, + ACTIONS(10801), 5, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [269956] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(10752), 1, + anon_sym_LBRACK, + STATE(3515), 1, + sym_parameter_list, + STATE(5959), 1, + sym__function_declarator_seq, + ACTIONS(10805), 5, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [269979] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(10752), 1, + anon_sym_LBRACK, + STATE(3515), 1, + sym_parameter_list, + STATE(5959), 1, + sym__function_declarator_seq, + ACTIONS(10813), 5, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [270002] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(10752), 1, + anon_sym_LBRACK, + STATE(3515), 1, + sym_parameter_list, + STATE(5959), 1, + sym__function_declarator_seq, + ACTIONS(10817), 5, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [270025] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(10460), 1, + ACTIONS(10582), 1, anon_sym_COLON_COLON, - ACTIONS(11274), 1, + ACTIONS(11297), 1, sym_identifier, - STATE(5796), 1, + STATE(5926), 1, sym__scope_resolution, - STATE(8197), 1, + STATE(8812), 1, sym_qualified_identifier, - STATE(8601), 3, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - [264340] = 8, + [270052] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, - anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(10460), 1, + ACTIONS(9971), 1, anon_sym_COLON_COLON, - ACTIONS(11229), 1, + ACTIONS(11446), 1, sym_identifier, - STATE(5796), 1, + ACTIONS(11448), 1, + anon_sym_template, + STATE(2277), 1, + sym_dependent_type_identifier, + STATE(2316), 1, + sym_template_type, + STATE(2331), 1, + sym_qualified_type_identifier, + STATE(6705), 1, sym__scope_resolution, - STATE(8701), 1, - sym_qualified_identifier, - STATE(8601), 3, + STATE(8569), 1, sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [264367] = 8, + [270083] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, - anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(10460), 1, + ACTIONS(9660), 1, anon_sym_COLON_COLON, - ACTIONS(11388), 1, + ACTIONS(11450), 1, sym_identifier, - STATE(5796), 1, - sym__scope_resolution, - STATE(8827), 1, - sym_qualified_identifier, - STATE(8601), 3, - sym_decltype, + ACTIONS(11452), 1, + anon_sym_template, + STATE(1919), 1, sym_template_type, + STATE(1930), 1, sym_dependent_type_identifier, - [264394] = 10, + STATE(2905), 1, + sym_qualified_type_identifier, + STATE(6706), 1, + sym__scope_resolution, + STATE(8569), 1, + sym_decltype, + [270114] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5234), 1, anon_sym_LBRACE, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(11390), 1, - sym_identifier, - ACTIONS(11392), 1, + ACTIONS(11422), 1, anon_sym_COLON_COLON, - ACTIONS(11394), 1, + ACTIONS(11424), 1, anon_sym_inline, - STATE(363), 1, + ACTIONS(11454), 1, + sym_identifier, + STATE(603), 1, sym_declaration_list, - STATE(6733), 1, + STATE(6847), 1, sym_attribute_declaration, - STATE(7880), 1, + STATE(7986), 1, sym_nested_namespace_specifier, - STATE(7980), 1, + STATE(8622), 1, sym__namespace_specifier, - [264425] = 10, + [270145] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(7959), 1, + ACTIONS(9459), 1, anon_sym_COLON_COLON, - ACTIONS(11396), 1, + ACTIONS(11456), 1, sym_identifier, - ACTIONS(11398), 1, + ACTIONS(11458), 1, anon_sym_template, - STATE(1813), 1, + STATE(2850), 1, sym_template_type, - STATE(1814), 1, + STATE(2855), 1, sym_dependent_type_identifier, - STATE(1888), 1, + STATE(2907), 1, sym_qualified_type_identifier, - STATE(6587), 1, + STATE(6708), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(8569), 1, sym_decltype, - [264456] = 5, + [270176] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11400), 1, + ACTIONS(11460), 1, + sym_identifier, + ACTIONS(11464), 1, + sym_system_lib_string, + STATE(8255), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(11462), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [270197] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5236), 1, + anon_sym_LBRACE, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11422), 1, + anon_sym_COLON_COLON, + ACTIONS(11424), 1, + anon_sym_inline, + ACTIONS(11466), 1, + sym_identifier, + STATE(288), 1, + sym_declaration_list, + STATE(6828), 1, + sym_attribute_declaration, + STATE(7795), 1, + sym_nested_namespace_specifier, + STATE(8622), 1, + sym__namespace_specifier, + [270228] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11468), 1, sym_identifier, - ACTIONS(11402), 1, + ACTIONS(11470), 1, sym_system_lib_string, - STATE(8460), 2, + STATE(8070), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(11370), 5, + ACTIONS(11462), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [264477] = 10, + [270249] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(10752), 1, + anon_sym_LBRACK, + STATE(3515), 1, + sym_parameter_list, + STATE(5959), 1, + sym__function_declarator_seq, + ACTIONS(10760), 5, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [270272] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(11318), 1, + ACTIONS(9580), 1, anon_sym_COLON_COLON, - ACTIONS(11404), 1, + ACTIONS(11472), 1, sym_identifier, - ACTIONS(11406), 1, + ACTIONS(11474), 1, anon_sym_template, - STATE(2726), 1, + STATE(2655), 1, sym_template_type, - STATE(2727), 1, + STATE(2656), 1, sym_dependent_type_identifier, - STATE(2760), 1, + STATE(2716), 1, sym_qualified_type_identifier, - STATE(6589), 1, + STATE(6713), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(8569), 1, sym_decltype, - [264508] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5232), 1, - anon_sym_LBRACE, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(11392), 1, - anon_sym_COLON_COLON, - ACTIONS(11394), 1, - anon_sym_inline, - ACTIONS(11408), 1, - sym_identifier, - STATE(547), 1, - sym_declaration_list, - STATE(6771), 1, - sym_attribute_declaration, - STATE(7570), 1, - sym_nested_namespace_specifier, - STATE(7980), 1, - sym__namespace_specifier, - [264539] = 8, + [270303] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(10460), 1, + ACTIONS(10582), 1, anon_sym_COLON_COLON, - ACTIONS(11163), 1, + ACTIONS(11285), 1, sym_identifier, - STATE(5796), 1, + STATE(5926), 1, sym__scope_resolution, - STATE(8743), 1, + STATE(8403), 1, sym_qualified_identifier, - STATE(8601), 3, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - [264566] = 10, + [270330] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(8055), 1, + ACTIONS(5228), 1, anon_sym_COLON_COLON, - ACTIONS(11410), 1, + ACTIONS(11450), 1, sym_identifier, - ACTIONS(11412), 1, + ACTIONS(11452), 1, anon_sym_template, - STATE(1906), 1, + STATE(1919), 1, sym_template_type, - STATE(1908), 1, + STATE(1930), 1, sym_dependent_type_identifier, - STATE(2874), 1, + STATE(1932), 1, sym_qualified_type_identifier, - STATE(6592), 1, + STATE(6715), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(8569), 1, sym_decltype, - [264597] = 10, + [270361] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(10752), 1, + anon_sym_LBRACK, + STATE(3515), 1, + sym_parameter_list, + STATE(5959), 1, + sym__function_declarator_seq, + ACTIONS(10750), 5, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [270384] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5230), 1, + anon_sym_LBRACE, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11422), 1, + anon_sym_COLON_COLON, + ACTIONS(11424), 1, + anon_sym_inline, + ACTIONS(11476), 1, + sym_identifier, + STATE(804), 1, + sym_declaration_list, + STATE(6873), 1, + sym_attribute_declaration, + STATE(8025), 1, + sym_nested_namespace_specifier, + STATE(8622), 1, + sym__namespace_specifier, + [270415] = 8, ACTIONS(3), 1, sym_comment, + ACTIONS(1268), 1, + anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(7990), 1, + ACTIONS(10582), 1, anon_sym_COLON_COLON, - ACTIONS(11414), 1, + ACTIONS(11478), 1, sym_identifier, - ACTIONS(11416), 1, - anon_sym_template, - STATE(1813), 1, - sym_template_type, - STATE(1814), 1, - sym_dependent_type_identifier, - STATE(1888), 1, - sym_qualified_type_identifier, - STATE(6593), 1, + STATE(5926), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(8542), 1, + sym_qualified_identifier, + STATE(8569), 3, sym_decltype, - [264628] = 10, + sym_template_type, + sym_dependent_type_identifier, + [270442] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(9406), 1, + ACTIONS(8028), 1, anon_sym_COLON_COLON, - ACTIONS(11380), 1, - anon_sym_template, - ACTIONS(11418), 1, + ACTIONS(11480), 1, sym_identifier, - STATE(2534), 1, + ACTIONS(11482), 1, + anon_sym_template, + STATE(1919), 1, sym_template_type, - STATE(2556), 1, + STATE(1930), 1, sym_dependent_type_identifier, - STATE(2615), 1, + STATE(2905), 1, sym_qualified_type_identifier, - STATE(6594), 1, + STATE(6719), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(8569), 1, sym_decltype, - [264659] = 8, + [270473] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(10752), 1, + anon_sym_LBRACK, + STATE(3515), 1, + sym_parameter_list, + STATE(5959), 1, + sym__function_declarator_seq, + ACTIONS(10831), 5, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [270496] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(10460), 1, + ACTIONS(10582), 1, anon_sym_COLON_COLON, - ACTIONS(11420), 1, + ACTIONS(11484), 1, sym_identifier, - STATE(5796), 1, + STATE(5926), 1, sym__scope_resolution, - STATE(8234), 1, + STATE(8551), 1, sym_qualified_identifier, - STATE(8601), 3, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - [264686] = 8, + [270523] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, - anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(10460), 1, + ACTIONS(9883), 1, anon_sym_COLON_COLON, - ACTIONS(11191), 1, + ACTIONS(11486), 1, sym_identifier, - STATE(5796), 1, - sym__scope_resolution, - STATE(7965), 1, - sym_qualified_identifier, - STATE(8601), 3, - sym_decltype, + ACTIONS(11488), 1, + anon_sym_template, + STATE(1805), 1, sym_template_type, + STATE(1806), 1, sym_dependent_type_identifier, - [264713] = 8, + STATE(1865), 1, + sym_qualified_type_identifier, + STATE(6722), 1, + sym__scope_resolution, + STATE(8569), 1, + sym_decltype, + [270554] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(10460), 1, + ACTIONS(10582), 1, anon_sym_COLON_COLON, - ACTIONS(11422), 1, + ACTIONS(11261), 1, sym_identifier, - STATE(5796), 1, + STATE(5926), 1, sym__scope_resolution, - STATE(8104), 1, + STATE(8807), 1, sym_qualified_identifier, - STATE(8601), 3, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - [264740] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5222), 1, - anon_sym_LBRACE, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(11392), 1, - anon_sym_COLON_COLON, - ACTIONS(11394), 1, - anon_sym_inline, - ACTIONS(11424), 1, - sym_identifier, - STATE(786), 1, - sym_declaration_list, - STATE(6736), 1, - sym_attribute_declaration, - STATE(7869), 1, - sym_nested_namespace_specifier, - STATE(7980), 1, - sym__namespace_specifier, - [264771] = 10, + [270581] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, - anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(3907), 1, + ACTIONS(8088), 1, anon_sym_COLON_COLON, - ACTIONS(11426), 1, + ACTIONS(11490), 1, sym_identifier, - STATE(1906), 1, + ACTIONS(11492), 1, + anon_sym_template, + STATE(1805), 1, sym_template_type, - STATE(1908), 1, + STATE(1806), 1, sym_dependent_type_identifier, - STATE(1909), 1, + STATE(1865), 1, sym_qualified_type_identifier, - STATE(6599), 1, + STATE(6724), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(8569), 1, sym_decltype, - [264802] = 8, + [270612] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(10460), 1, + ACTIONS(10582), 1, anon_sym_COLON_COLON, - ACTIONS(11211), 1, + ACTIONS(11494), 1, sym_identifier, - STATE(5796), 1, + STATE(5926), 1, sym__scope_resolution, - STATE(8351), 1, + STATE(8963), 1, sym_qualified_identifier, - STATE(8601), 3, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - [264829] = 8, + [270639] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(10460), 1, + ACTIONS(10582), 1, anon_sym_COLON_COLON, - ACTIONS(11428), 1, + ACTIONS(11496), 1, sym_identifier, - STATE(5796), 1, + STATE(5926), 1, sym__scope_resolution, - STATE(8467), 1, + STATE(8831), 1, sym_qualified_identifier, - STATE(8601), 3, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - [264856] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5234), 1, - anon_sym_LBRACE, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(11392), 1, - anon_sym_COLON_COLON, - ACTIONS(11394), 1, - anon_sym_inline, - ACTIONS(11430), 1, - sym_identifier, - STATE(296), 1, - sym_declaration_list, - STATE(6730), 1, - sym_attribute_declaration, - STATE(7675), 1, - sym_nested_namespace_specifier, - STATE(7980), 1, - sym__namespace_specifier, - [264887] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11432), 1, - sym_identifier, - ACTIONS(11434), 1, - sym_system_lib_string, - STATE(8174), 2, - sym_preproc_call_expression, - sym_string_literal, - ACTIONS(11370), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [264908] = 10, + [270666] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(9625), 1, + ACTIONS(7984), 1, anon_sym_COLON_COLON, - ACTIONS(11436), 1, - sym_identifier, - ACTIONS(11438), 1, + ACTIONS(11444), 1, anon_sym_template, - STATE(1906), 1, + ACTIONS(11498), 1, + sym_identifier, + STATE(1805), 1, sym_template_type, - STATE(1908), 1, + STATE(1806), 1, sym_dependent_type_identifier, - STATE(2874), 1, + STATE(1865), 1, sym_qualified_type_identifier, - STATE(6604), 1, + STATE(6727), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(8569), 1, sym_decltype, - [264939] = 8, + [270697] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, - anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(10460), 1, + ACTIONS(9498), 1, anon_sym_COLON_COLON, - ACTIONS(11440), 1, + ACTIONS(11500), 1, sym_identifier, - STATE(5796), 1, - sym__scope_resolution, - STATE(8392), 1, - sym_qualified_identifier, - STATE(8601), 3, - sym_decltype, + ACTIONS(11502), 1, + anon_sym_template, + STATE(2699), 1, sym_template_type, + STATE(2700), 1, sym_dependent_type_identifier, - [264966] = 10, + STATE(2800), 1, + sym_qualified_type_identifier, + STATE(6728), 1, + sym__scope_resolution, + STATE(8569), 1, + sym_decltype, + [270728] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5020), 1, + ACTIONS(8060), 1, anon_sym_COLON_COLON, - ACTIONS(11442), 1, + ACTIONS(11480), 1, sym_identifier, - ACTIONS(11444), 1, + ACTIONS(11482), 1, anon_sym_template, - STATE(1906), 1, + STATE(1919), 1, sym_template_type, - STATE(1908), 1, + STATE(1930), 1, sym_dependent_type_identifier, - STATE(1909), 1, + STATE(1932), 1, sym_qualified_type_identifier, - STATE(6606), 1, + STATE(6729), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(8569), 1, sym_decltype, - [264997] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - ACTIONS(10001), 1, - anon_sym_LBRACK, - STATE(3270), 1, - sym_parameter_list, - STATE(5979), 1, - sym__function_declarator_seq, - ACTIONS(10885), 2, - anon_sym_LBRACE, - anon_sym_EQ, - STATE(5949), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [265024] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - ACTIONS(10001), 1, - anon_sym_LBRACK, - STATE(3270), 1, - sym_parameter_list, - STATE(5979), 1, - sym__function_declarator_seq, - ACTIONS(10865), 2, - anon_sym_LBRACE, - anon_sym_EQ, - STATE(5949), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [265051] = 8, + [270759] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(10001), 1, + ACTIONS(10071), 1, anon_sym_LBRACK, - STATE(3270), 1, + STATE(3394), 1, sym_parameter_list, - STATE(5979), 1, + STATE(6203), 1, sym__function_declarator_seq, - ACTIONS(10903), 2, + ACTIONS(10897), 2, anon_sym_LBRACE, anon_sym_EQ, - STATE(5949), 2, + STATE(6081), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [265078] = 10, + [270786] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5230), 1, - anon_sym_LBRACE, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(11392), 1, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(8000), 1, anon_sym_COLON_COLON, - ACTIONS(11394), 1, - anon_sym_inline, - ACTIONS(11446), 1, + ACTIONS(11504), 1, sym_identifier, - STATE(764), 1, - sym_declaration_list, - STATE(6740), 1, - sym_attribute_declaration, - STATE(7858), 1, - sym_nested_namespace_specifier, - STATE(7980), 1, - sym__namespace_specifier, - [265109] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - ACTIONS(10001), 1, - anon_sym_LBRACK, - STATE(3270), 1, - sym_parameter_list, - STATE(5979), 1, - sym__function_declarator_seq, - ACTIONS(10873), 2, - anon_sym_LBRACE, - anon_sym_EQ, - STATE(5949), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [265136] = 10, + ACTIONS(11506), 1, + anon_sym_template, + STATE(4387), 1, + sym_template_type, + STATE(4403), 1, + sym_dependent_type_identifier, + STATE(4479), 1, + sym_qualified_type_identifier, + STATE(6731), 1, + sym__scope_resolution, + STATE(8569), 1, + sym_decltype, + [270817] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(9893), 1, + ACTIONS(9412), 1, anon_sym_COLON_COLON, - ACTIONS(11448), 1, + ACTIONS(11508), 1, sym_identifier, - ACTIONS(11450), 1, + ACTIONS(11510), 1, anon_sym_template, - STATE(2291), 1, + STATE(3643), 1, sym_template_type, - STATE(2292), 1, + STATE(3648), 1, sym_dependent_type_identifier, - STATE(2296), 1, + STATE(3746), 1, sym_qualified_type_identifier, - STATE(6612), 1, + STATE(6732), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(8569), 1, sym_decltype, - [265167] = 8, + [270848] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11512), 1, + sym_identifier, + ACTIONS(11514), 1, + sym_system_lib_string, + STATE(8930), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(11462), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [270869] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(10460), 1, + ACTIONS(10582), 1, anon_sym_COLON_COLON, - ACTIONS(11452), 1, + ACTIONS(11251), 1, sym_identifier, - STATE(5796), 1, + STATE(5926), 1, sym__scope_resolution, - STATE(8044), 1, + STATE(8743), 1, sym_qualified_identifier, - STATE(8601), 3, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - [265194] = 8, + [270896] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(10001), 1, + ACTIONS(10071), 1, anon_sym_LBRACK, - STATE(3270), 1, + STATE(3394), 1, sym_parameter_list, - STATE(5979), 1, + STATE(6203), 1, sym__function_declarator_seq, - ACTIONS(10838), 2, + ACTIONS(10893), 2, anon_sym_LBRACE, anon_sym_EQ, - STATE(5949), 2, + STATE(6081), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [265221] = 10, + [270923] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, - anon_sym_template, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(8081), 1, - anon_sym_COLON_COLON, - ACTIONS(11426), 1, + ACTIONS(11516), 1, sym_identifier, - STATE(1906), 1, - sym_template_type, - STATE(1908), 1, - sym_dependent_type_identifier, - STATE(2874), 1, - sym_qualified_type_identifier, - STATE(6615), 1, - sym__scope_resolution, - STATE(8601), 1, - sym_decltype, - [265252] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - ACTIONS(10733), 1, - anon_sym_LBRACK, - STATE(3459), 1, - sym_parameter_list, - STATE(5813), 1, - sym__function_declarator_seq, - ACTIONS(10731), 5, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [265275] = 8, + ACTIONS(11518), 1, + sym_system_lib_string, + STATE(8087), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(11462), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [270944] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(10460), 1, + ACTIONS(10582), 1, anon_sym_COLON_COLON, - ACTIONS(11183), 1, + ACTIONS(11305), 1, sym_identifier, - STATE(5796), 1, + STATE(5926), 1, sym__scope_resolution, - STATE(8530), 1, + STATE(8072), 1, sym_qualified_identifier, - STATE(8601), 3, + STATE(8569), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - [265302] = 10, + [270971] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(9961), 1, + ACTIONS(8022), 1, anon_sym_COLON_COLON, - ACTIONS(11454), 1, - sym_identifier, - ACTIONS(11456), 1, + ACTIONS(11434), 1, anon_sym_template, - STATE(1813), 1, + ACTIONS(11520), 1, + sym_identifier, + STATE(2581), 1, sym_template_type, - STATE(1814), 1, + STATE(2582), 1, sym_dependent_type_identifier, - STATE(1888), 1, + STATE(2644), 1, sym_qualified_type_identifier, - STATE(6618), 1, + STATE(6738), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(8569), 1, sym_decltype, - [265333] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - ACTIONS(10733), 1, - anon_sym_LBRACK, - STATE(3459), 1, - sym_parameter_list, - STATE(5813), 1, - sym__function_declarator_seq, - ACTIONS(10741), 5, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [265356] = 10, + [271002] = 8, ACTIONS(3), 1, sym_comment, + ACTIONS(1268), 1, + anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(9440), 1, + ACTIONS(10582), 1, anon_sym_COLON_COLON, - ACTIONS(11458), 1, + ACTIONS(11326), 1, sym_identifier, - ACTIONS(11460), 1, - anon_sym_template, - STATE(2658), 1, - sym_template_type, - STATE(2659), 1, - sym_dependent_type_identifier, - STATE(2728), 1, - sym_qualified_type_identifier, - STATE(6620), 1, + STATE(5926), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(8566), 1, + sym_qualified_identifier, + STATE(8569), 3, sym_decltype, - [265387] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - ACTIONS(10733), 1, - anon_sym_LBRACK, - STATE(3459), 1, - sym_parameter_list, - STATE(5813), 1, - sym__function_declarator_seq, - ACTIONS(10749), 5, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [265410] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - ACTIONS(10733), 1, - anon_sym_LBRACK, - STATE(3459), 1, - sym_parameter_list, - STATE(5813), 1, - sym__function_declarator_seq, - ACTIONS(10753), 5, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [265433] = 6, + sym_template_type, + sym_dependent_type_identifier, + [271029] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - ACTIONS(10733), 1, - anon_sym_LBRACK, - STATE(3459), 1, - sym_parameter_list, - STATE(5813), 1, - sym__function_declarator_seq, - ACTIONS(10757), 5, - anon_sym_COLON, + ACTIONS(5236), 1, + anon_sym_LBRACE, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [265456] = 6, + ACTIONS(11422), 1, + anon_sym_COLON_COLON, + ACTIONS(11424), 1, + anon_sym_inline, + ACTIONS(11522), 1, + sym_identifier, + STATE(301), 1, + sym_declaration_list, + STATE(6836), 1, + sym_attribute_declaration, + STATE(7867), 1, + sym_nested_namespace_specifier, + STATE(8622), 1, + sym__namespace_specifier, + [271060] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - ACTIONS(10733), 1, - anon_sym_LBRACK, - STATE(3459), 1, - sym_parameter_list, - STATE(5813), 1, - sym__function_declarator_seq, - ACTIONS(10761), 5, - anon_sym_COLON, + ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [265479] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(10733), 1, + ACTIONS(10071), 1, anon_sym_LBRACK, - STATE(3459), 1, + STATE(3394), 1, sym_parameter_list, - STATE(5813), 1, + STATE(6203), 1, sym__function_declarator_seq, - ACTIONS(10765), 5, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [265502] = 10, + ACTIONS(10901), 2, + anon_sym_LBRACE, + anon_sym_EQ, + STATE(6081), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [271087] = 8, ACTIONS(3), 1, sym_comment, + ACTIONS(1268), 1, + anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(9424), 1, + ACTIONS(10582), 1, anon_sym_COLON_COLON, - ACTIONS(11398), 1, - anon_sym_template, - ACTIONS(11462), 1, + ACTIONS(11227), 1, sym_identifier, - STATE(1813), 1, - sym_template_type, - STATE(1814), 1, - sym_dependent_type_identifier, - STATE(1888), 1, - sym_qualified_type_identifier, - STATE(6626), 1, + STATE(5926), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(8207), 1, + sym_qualified_identifier, + STATE(8569), 3, sym_decltype, - [265533] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(5220), 1, - anon_sym_COLON_COLON, - ACTIONS(11436), 1, - sym_identifier, - ACTIONS(11438), 1, - anon_sym_template, - STATE(1906), 1, sym_template_type, - STATE(1908), 1, sym_dependent_type_identifier, - STATE(1909), 1, - sym_qualified_type_identifier, - STATE(6627), 1, - sym__scope_resolution, - STATE(8601), 1, - sym_decltype, - [265564] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5230), 1, - anon_sym_LBRACE, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(11392), 1, - anon_sym_COLON_COLON, - ACTIONS(11394), 1, - anon_sym_inline, - ACTIONS(11464), 1, - sym_identifier, - STATE(779), 1, - sym_declaration_list, - STATE(6764), 1, - sym_attribute_declaration, - STATE(7894), 1, - sym_nested_namespace_specifier, - STATE(7980), 1, - sym__namespace_specifier, - [265595] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5222), 1, - anon_sym_LBRACE, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(11392), 1, - anon_sym_COLON_COLON, - ACTIONS(11394), 1, - anon_sym_inline, - ACTIONS(11466), 1, - sym_identifier, - STATE(785), 1, - sym_declaration_list, - STATE(6761), 1, - sym_attribute_declaration, - STATE(7727), 1, - sym_nested_namespace_specifier, - STATE(7980), 1, - sym__namespace_specifier, - [265626] = 10, + [271114] = 10, ACTIONS(3), 1, sym_comment, + ACTIONS(1268), 1, + anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(7970), 1, + ACTIONS(8074), 1, anon_sym_COLON_COLON, - ACTIONS(11410), 1, + ACTIONS(11440), 1, sym_identifier, - ACTIONS(11412), 1, - anon_sym_template, - STATE(1906), 1, + STATE(1919), 1, sym_template_type, - STATE(1908), 1, + STATE(1930), 1, sym_dependent_type_identifier, - STATE(1909), 1, + STATE(2905), 1, sym_qualified_type_identifier, - STATE(6630), 1, + STATE(6743), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(8569), 1, sym_decltype, - [265657] = 10, + [271145] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5232), 1, + ACTIONS(5230), 1, anon_sym_LBRACE, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(11392), 1, + ACTIONS(11422), 1, anon_sym_COLON_COLON, - ACTIONS(11394), 1, + ACTIONS(11424), 1, anon_sym_inline, - ACTIONS(11468), 1, + ACTIONS(11524), 1, sym_identifier, - STATE(649), 1, + STATE(796), 1, sym_declaration_list, - STATE(6719), 1, + STATE(6844), 1, sym_attribute_declaration, - STATE(7622), 1, + STATE(7953), 1, sym_nested_namespace_specifier, - STATE(7980), 1, + STATE(8622), 1, sym__namespace_specifier, - [265688] = 10, + [271176] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(8021), 1, - anon_sym_COLON_COLON, - ACTIONS(11470), 1, - sym_identifier, - ACTIONS(11472), 1, + ACTIONS(1268), 1, anon_sym_template, - STATE(4346), 1, - sym_template_type, - STATE(4354), 1, - sym_dependent_type_identifier, - STATE(4425), 1, - sym_qualified_type_identifier, - STATE(6632), 1, - sym__scope_resolution, - STATE(8601), 1, - sym_decltype, - [265719] = 10, - ACTIONS(3), 1, - sym_comment, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(9503), 1, + ACTIONS(10582), 1, anon_sym_COLON_COLON, - ACTIONS(11474), 1, + ACTIONS(11526), 1, sym_identifier, - ACTIONS(11476), 1, - anon_sym_template, - STATE(2611), 1, - sym_dependent_type_identifier, - STATE(2626), 1, - sym_template_type, - STATE(2655), 1, - sym_qualified_type_identifier, - STATE(6633), 1, + STATE(5926), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(8159), 1, + sym_qualified_identifier, + STATE(8569), 3, sym_decltype, - [265750] = 10, + sym_template_type, + sym_dependent_type_identifier, + [271203] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(9578), 1, + ACTIONS(5028), 1, anon_sym_COLON_COLON, - ACTIONS(11478), 1, + ACTIONS(11528), 1, sym_identifier, - ACTIONS(11480), 1, + ACTIONS(11530), 1, anon_sym_template, - STATE(3600), 1, + STATE(1919), 1, sym_template_type, - STATE(3601), 1, + STATE(1930), 1, sym_dependent_type_identifier, - STATE(3751), 1, + STATE(1932), 1, sym_qualified_type_identifier, - STATE(6634), 1, + STATE(6746), 1, sym__scope_resolution, - STATE(8601), 1, + STATE(8569), 1, sym_decltype, - [265781] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11482), 1, - sym_identifier, - ACTIONS(11484), 1, - sym_system_lib_string, - STATE(8397), 2, - sym_preproc_call_expression, - sym_string_literal, - ACTIONS(11370), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [265802] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4167), 1, - anon_sym_COLON_COLON, - ACTIONS(6630), 1, - anon_sym_LT, - STATE(2864), 1, - sym_template_argument_list, - ACTIONS(8093), 2, - anon_sym_COLON, - anon_sym_LBRACK, - ACTIONS(5036), 4, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - [265825] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11488), 3, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_COLON_COLON, - ACTIONS(11486), 5, - anon_sym___based, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [265841] = 6, + [271234] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(11061), 1, + ACTIONS(11108), 1, anon_sym_LBRACK, - STATE(3370), 1, + STATE(3551), 1, sym_parameter_list, - STATE(6049), 1, + STATE(6153), 1, sym__function_declarator_seq, - ACTIONS(10741), 4, + ACTIONS(10817), 4, anon_sym_COLON, anon_sym_final, anon_sym_override, anon_sym_requires, - [265863] = 8, + [271256] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(10001), 1, + ACTIONS(10762), 1, + anon_sym___attribute, + ACTIONS(11108), 1, anon_sym_LBRACK, - ACTIONS(11490), 1, - anon_sym_SEMI, - STATE(3033), 1, + STATE(3276), 1, sym_parameter_list, - STATE(5979), 1, + STATE(6153), 1, sym__function_declarator_seq, - STATE(5949), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [265889] = 6, + ACTIONS(10760), 3, + anon_sym_COMMA, + anon_sym___attribute__, + anon_sym_GT2, + [271280] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(11061), 1, + ACTIONS(11108), 1, anon_sym_LBRACK, - STATE(3370), 1, + STATE(3021), 1, sym_parameter_list, - STATE(6049), 1, + STATE(6153), 1, sym__function_declarator_seq, - ACTIONS(10745), 4, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [265911] = 8, + ACTIONS(10805), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [271302] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7838), 1, + ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(10001), 1, + ACTIONS(10071), 1, anon_sym_LBRACK, - ACTIONS(10885), 1, - anon_sym_COLON, - STATE(3487), 1, + ACTIONS(11532), 1, + anon_sym_SEMI, + STATE(3044), 1, sym_parameter_list, - STATE(5979), 1, + STATE(6203), 1, sym__function_declarator_seq, - STATE(6341), 2, + STATE(6081), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [265937] = 8, + [271328] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(11108), 1, + anon_sym_LBRACK, + STATE(3113), 1, + sym_parameter_list, + STATE(6153), 1, + sym__function_declarator_seq, + ACTIONS(10750), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + [271350] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7838), 1, + ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(10001), 1, + ACTIONS(10071), 1, anon_sym_LBRACK, - ACTIONS(10865), 1, - anon_sym_COLON, - STATE(3487), 1, + ACTIONS(11534), 1, + anon_sym_RPAREN, + STATE(3044), 1, sym_parameter_list, - STATE(5979), 1, + STATE(6203), 1, sym__function_declarator_seq, - STATE(6341), 2, + STATE(6081), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [265963] = 8, + [271376] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10584), 1, + ACTIONS(10534), 1, anon_sym_DASH_GT, - ACTIONS(10586), 1, + ACTIONS(10536), 1, anon_sym_requires, - ACTIONS(10592), 1, + ACTIONS(11536), 1, anon_sym_LBRACE, - STATE(7474), 1, + STATE(7352), 1, sym_trailing_return_type, - STATE(8330), 1, + STATE(8166), 1, sym_requires_clause, - STATE(4776), 2, + STATE(6797), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [265989] = 8, + [271402] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(11108), 1, + anon_sym_LBRACK, + STATE(3113), 1, + sym_parameter_list, + STATE(6153), 1, + sym__function_declarator_seq, + ACTIONS(10760), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + [271424] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4167), 1, - anon_sym_COLON_COLON, - ACTIONS(6630), 1, - anon_sym_LT, - ACTIONS(11492), 1, - anon_sym_SEMI, - ACTIONS(11494), 1, - anon_sym_EQ, - STATE(1603), 1, - sym_template_argument_list, - STATE(7071), 2, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(9806), 1, + anon_sym_LBRACK, + ACTIONS(11538), 1, + anon_sym_RPAREN, + STATE(3044), 1, + sym_parameter_list, + STATE(6468), 1, + sym__function_declarator_seq, + STATE(6910), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [266015] = 6, + [271450] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(11061), 1, + ACTIONS(11108), 1, anon_sym_LBRACK, - STATE(3004), 1, + STATE(3113), 1, sym_parameter_list, - STATE(6049), 1, + STATE(6153), 1, sym__function_declarator_seq, - ACTIONS(10761), 4, + ACTIONS(10813), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LBRACE, - [266037] = 6, + [271472] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(11061), 1, + ACTIONS(9806), 1, anon_sym_LBRACK, - STATE(3004), 1, + ACTIONS(10939), 1, + anon_sym_RPAREN, + STATE(3044), 1, sym_parameter_list, - STATE(6049), 1, + STATE(6468), 1, sym__function_declarator_seq, - ACTIONS(10741), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, + STATE(6910), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [271498] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10534), 1, + anon_sym_DASH_GT, + ACTIONS(10536), 1, + anon_sym_requires, + ACTIONS(11540), 1, anon_sym_LBRACE, - [266059] = 3, + STATE(7351), 1, + sym_trailing_return_type, + STATE(8155), 1, + sym_requires_clause, + STATE(4831), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [271524] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11498), 3, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_COLON_COLON, - ACTIONS(11496), 5, - anon_sym___based, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [266075] = 7, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10532), 1, + anon_sym_LBRACE, + ACTIONS(10534), 1, + anon_sym_DASH_GT, + ACTIONS(10536), 1, + anon_sym_requires, + STATE(7426), 1, + sym_trailing_return_type, + STATE(8062), 1, + sym_requires_clause, + STATE(6798), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [271550] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(10743), 1, + ACTIONS(10833), 1, anon_sym___attribute, - ACTIONS(11061), 1, + ACTIONS(11108), 1, anon_sym_LBRACK, - STATE(3223), 1, + STATE(3276), 1, sym_parameter_list, - STATE(6049), 1, + STATE(6153), 1, sym__function_declarator_seq, - ACTIONS(10741), 3, + ACTIONS(10831), 3, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym___attribute__, - [266099] = 6, + anon_sym_GT2, + [271574] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(11061), 1, + ACTIONS(10807), 1, + anon_sym___attribute, + ACTIONS(11108), 1, anon_sym_LBRACK, - STATE(3004), 1, + STATE(3357), 1, sym_parameter_list, - STATE(6049), 1, + STATE(6153), 1, sym__function_declarator_seq, - ACTIONS(10745), 4, + ACTIONS(10805), 3, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - [266121] = 6, + anon_sym___attribute__, + [271598] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(11061), 1, + ACTIONS(10762), 1, + anon_sym___attribute, + ACTIONS(11108), 1, anon_sym_LBRACK, - STATE(3370), 1, + STATE(3357), 1, sym_parameter_list, - STATE(6049), 1, + STATE(6153), 1, sym__function_declarator_seq, - ACTIONS(10757), 4, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [266143] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4167), 1, - anon_sym_COLON_COLON, - ACTIONS(6630), 1, - anon_sym_LT, - ACTIONS(8093), 1, - anon_sym_LBRACK, - STATE(5954), 1, - sym_template_argument_list, - ACTIONS(5036), 4, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_try, - [266165] = 8, + ACTIONS(10760), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + [271622] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7838), 1, + ACTIONS(7918), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(10001), 1, + ACTIONS(10071), 1, anon_sym_LBRACK, - ACTIONS(10903), 1, + ACTIONS(10897), 1, anon_sym_COLON, - STATE(3487), 1, + STATE(3545), 1, sym_parameter_list, - STATE(5979), 1, + STATE(6203), 1, sym__function_declarator_seq, - STATE(6341), 2, + STATE(6435), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [266191] = 6, + [271648] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4167), 1, - anon_sym_COLON_COLON, - ACTIONS(4972), 1, - anon_sym_LBRACK, - ACTIONS(6630), 1, - anon_sym_LT, - STATE(5954), 1, - sym_template_argument_list, - ACTIONS(4965), 4, - anon_sym_LPAREN2, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(10534), 1, + anon_sym_DASH_GT, + ACTIONS(10536), 1, + anon_sym_requires, + ACTIONS(11542), 1, anon_sym_LBRACE, - anon_sym_try, - [266213] = 7, + STATE(7422), 1, + sym_trailing_return_type, + STATE(8918), 1, + sym_requires_clause, + STATE(4831), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [271674] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10534), 1, + anon_sym_DASH_GT, + ACTIONS(10536), 1, + anon_sym_requires, + ACTIONS(11542), 1, + anon_sym_LBRACE, + STATE(7422), 1, + sym_trailing_return_type, + STATE(8918), 1, + sym_requires_clause, + STATE(6758), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [271700] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(10759), 1, - anon_sym___attribute, - ACTIONS(11061), 1, + ACTIONS(11108), 1, anon_sym_LBRACK, - STATE(3223), 1, + STATE(3551), 1, sym_parameter_list, - STATE(6049), 1, + STATE(6153), 1, sym__function_declarator_seq, - ACTIONS(10757), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - [266237] = 7, + ACTIONS(10784), 4, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [271722] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(7918), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(10759), 1, - anon_sym___attribute, - ACTIONS(11061), 1, + ACTIONS(10071), 1, anon_sym_LBRACK, - STATE(3216), 1, + ACTIONS(11544), 1, + anon_sym_COLON, + STATE(3545), 1, sym_parameter_list, - STATE(6049), 1, + STATE(6203), 1, sym__function_declarator_seq, - ACTIONS(10757), 3, - anon_sym_COMMA, - anon_sym___attribute__, - anon_sym_GT2, - [266261] = 6, + STATE(6435), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [271748] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(11061), 1, + ACTIONS(11108), 1, anon_sym_LBRACK, - STATE(3370), 1, + STATE(3551), 1, sym_parameter_list, - STATE(6049), 1, + STATE(6153), 1, sym__function_declarator_seq, - ACTIONS(10765), 4, + ACTIONS(10813), 4, anon_sym_COLON, anon_sym_final, anon_sym_override, anon_sym_requires, - [266283] = 8, + [271770] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4167), 1, + ACTIONS(4187), 1, anon_sym_COLON_COLON, - ACTIONS(6630), 1, + ACTIONS(6580), 1, anon_sym_LT, - ACTIONS(11500), 1, + ACTIONS(11546), 1, anon_sym_SEMI, - ACTIONS(11502), 1, + ACTIONS(11548), 1, anon_sym_EQ, - STATE(1603), 1, + STATE(1623), 1, sym_template_argument_list, - STATE(7034), 2, + STATE(7163), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [266309] = 7, + [271796] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - ACTIONS(10747), 1, - anon_sym___attribute, - ACTIONS(11061), 1, - anon_sym_LBRACK, - STATE(3216), 1, - sym_parameter_list, - STATE(6049), 1, - sym__function_declarator_seq, - ACTIONS(10745), 3, - anon_sym_COMMA, - anon_sym___attribute__, - anon_sym_GT2, - [266333] = 4, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4187), 1, + anon_sym_COLON_COLON, + ACTIONS(6580), 1, + anon_sym_LT, + ACTIONS(11550), 1, + anon_sym_SEMI, + ACTIONS(11552), 1, + anon_sym_EQ, + STATE(1623), 1, + sym_template_argument_list, + STATE(7227), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [271822] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11506), 1, + ACTIONS(11554), 1, + sym_identifier, + ACTIONS(11559), 1, aux_sym_preproc_elif_token1, - ACTIONS(11508), 1, - anon_sym_EQ, - ACTIONS(11504), 6, - anon_sym_COMMA, + STATE(6771), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + ACTIONS(11557), 4, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - sym_identifier, - [266351] = 8, + [271842] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(10001), 1, + ACTIONS(11108), 1, anon_sym_LBRACK, - ACTIONS(11510), 1, - anon_sym_SEMI, - STATE(3033), 1, + STATE(3551), 1, sym_parameter_list, - STATE(5979), 1, + STATE(6153), 1, sym__function_declarator_seq, - STATE(5949), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [266377] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6513), 1, - anon_sym_LBRACK, - ACTIONS(6630), 1, - anon_sym_LT, - STATE(2864), 1, - sym_template_argument_list, - ACTIONS(6515), 5, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, + ACTIONS(10750), 4, anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - [266397] = 8, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [271864] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7838), 1, + ACTIONS(7918), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(10001), 1, + ACTIONS(10071), 1, anon_sym_LBRACK, - ACTIONS(10873), 1, + ACTIONS(10933), 1, anon_sym_COLON, - STATE(3487), 1, + STATE(3545), 1, sym_parameter_list, - STATE(5979), 1, + STATE(6203), 1, sym__function_declarator_seq, - STATE(6341), 2, + STATE(6435), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [266423] = 8, + [271890] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(9778), 1, + ACTIONS(9806), 1, anon_sym_LBRACK, - ACTIONS(11512), 1, + ACTIONS(10927), 1, anon_sym_RPAREN, - STATE(3033), 1, + STATE(3044), 1, sym_parameter_list, - STATE(6381), 1, + STATE(6468), 1, sym__function_declarator_seq, - STATE(6811), 2, + STATE(6910), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [266449] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - ACTIONS(10767), 1, - anon_sym___attribute, - ACTIONS(11061), 1, - anon_sym_LBRACK, - STATE(3223), 1, - sym_parameter_list, - STATE(6049), 1, - sym__function_declarator_seq, - ACTIONS(10765), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - [266473] = 8, + [271916] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10584), 1, + ACTIONS(10534), 1, anon_sym_DASH_GT, - ACTIONS(10586), 1, + ACTIONS(10536), 1, anon_sym_requires, - ACTIONS(11514), 1, + ACTIONS(10564), 1, anon_sym_LBRACE, - STATE(7471), 1, + STATE(7464), 1, sym_trailing_return_type, - STATE(8318), 1, + STATE(8163), 1, sym_requires_clause, - STATE(4776), 2, + STATE(6764), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [266499] = 7, + [271942] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(11563), 3, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + ACTIONS(11561), 5, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [271958] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(10747), 1, - anon_sym___attribute, - ACTIONS(11061), 1, + ACTIONS(11108), 1, anon_sym_LBRACK, - STATE(3223), 1, + STATE(3021), 1, sym_parameter_list, - STATE(6049), 1, + STATE(6153), 1, sym__function_declarator_seq, - ACTIONS(10745), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - [266523] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10584), 1, - anon_sym_DASH_GT, - ACTIONS(10586), 1, - anon_sym_requires, - ACTIONS(11516), 1, - anon_sym_LBRACE, - STATE(7382), 1, - sym_trailing_return_type, - STATE(8545), 1, - sym_requires_clause, - STATE(4776), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [266549] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10584), 1, - anon_sym_DASH_GT, - ACTIONS(10586), 1, - anon_sym_requires, - ACTIONS(11518), 1, - anon_sym_LBRACE, - STATE(7441), 1, - sym_trailing_return_type, - STATE(8075), 1, - sym_requires_clause, - STATE(4776), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [266575] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10584), 1, - anon_sym_DASH_GT, - ACTIONS(10586), 1, - anon_sym_requires, - ACTIONS(11518), 1, + ACTIONS(10831), 4, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(7441), 1, - sym_trailing_return_type, - STATE(8075), 1, - sym_requires_clause, - STATE(6714), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [266601] = 8, + anon_sym_EQ, + anon_sym_try, + [271980] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7838), 1, + ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - ACTIONS(10001), 1, - anon_sym_LBRACK, - ACTIONS(10838), 1, - anon_sym_COLON, - STATE(3487), 1, - sym_parameter_list, - STATE(5979), 1, - sym__function_declarator_seq, - STATE(6341), 2, + ACTIONS(4187), 1, + anon_sym_COLON_COLON, + ACTIONS(6580), 1, + anon_sym_LT, + ACTIONS(11565), 1, + anon_sym_SEMI, + ACTIONS(11567), 1, + anon_sym_EQ, + STATE(1623), 1, + sym_template_argument_list, + STATE(7214), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [266627] = 8, + [272006] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(10001), 1, + ACTIONS(10071), 1, anon_sym_LBRACK, - ACTIONS(11520), 1, + ACTIONS(11569), 1, anon_sym_SEMI, - STATE(3033), 1, + STATE(3044), 1, sym_parameter_list, - STATE(5979), 1, + STATE(6203), 1, sym__function_declarator_seq, - STATE(5949), 2, + STATE(6081), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [266653] = 8, + [272032] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(10001), 1, + ACTIONS(9806), 1, anon_sym_LBRACK, - ACTIONS(11522), 1, + ACTIONS(10950), 1, anon_sym_RPAREN, - STATE(3033), 1, + STATE(3044), 1, sym_parameter_list, - STATE(5979), 1, + STATE(6468), 1, sym__function_declarator_seq, - STATE(5949), 2, + STATE(6910), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [266679] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - ACTIONS(11061), 1, - anon_sym_LBRACK, - STATE(3004), 1, - sym_parameter_list, - STATE(6049), 1, - sym__function_declarator_seq, - ACTIONS(10749), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - [266701] = 5, + [272058] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11336), 1, + ACTIONS(11388), 1, anon_sym_LBRACK, - STATE(7145), 1, + STATE(7670), 1, sym_gnu_asm_input_operand, - STATE(8516), 1, + STATE(8380), 1, sym_string_literal, ACTIONS(119), 5, anon_sym_L_DQUOTE, @@ -510923,2430 +518892,2560 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [266721] = 5, + [272078] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(11352), 1, + ACTIONS(4187), 1, + anon_sym_COLON_COLON, + ACTIONS(6119), 1, + anon_sym_COMMA, + ACTIONS(6580), 1, + anon_sym_LT, + ACTIONS(11571), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11573), 1, + anon_sym_RBRACK, + ACTIONS(11576), 1, + anon_sym_EQ, + STATE(1623), 1, + sym_template_argument_list, + STATE(7542), 1, + aux_sym_structured_binding_declarator_repeat1, + [272106] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(10803), 1, + anon_sym___attribute, + ACTIONS(11108), 1, anon_sym_LBRACK, - STATE(7350), 1, - sym_gnu_asm_output_operand, - STATE(8022), 1, - sym_string_literal, - ACTIONS(119), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [266741] = 8, + STATE(3276), 1, + sym_parameter_list, + STATE(6153), 1, + sym__function_declarator_seq, + ACTIONS(10801), 3, + anon_sym_COMMA, + anon_sym___attribute__, + anon_sym_GT2, + [272130] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10584), 1, + ACTIONS(10534), 1, anon_sym_DASH_GT, - ACTIONS(10586), 1, + ACTIONS(10536), 1, anon_sym_requires, - ACTIONS(11514), 1, + ACTIONS(10564), 1, anon_sym_LBRACE, - STATE(7471), 1, + STATE(7464), 1, sym_trailing_return_type, - STATE(8318), 1, + STATE(8163), 1, sym_requires_clause, - STATE(6667), 2, + STATE(4831), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [266767] = 8, + [272156] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(10807), 1, + anon_sym___attribute, + ACTIONS(11108), 1, + anon_sym_LBRACK, + STATE(3276), 1, + sym_parameter_list, + STATE(6153), 1, + sym__function_declarator_seq, + ACTIONS(10805), 3, + anon_sym_COMMA, + anon_sym___attribute__, + anon_sym_GT2, + [272180] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7918), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(9778), 1, + ACTIONS(10071), 1, anon_sym_LBRACK, - ACTIONS(10869), 1, - anon_sym_RPAREN, - STATE(3033), 1, + ACTIONS(10905), 1, + anon_sym_COLON, + STATE(3545), 1, sym_parameter_list, - STATE(6381), 1, + STATE(6203), 1, sym__function_declarator_seq, - STATE(6811), 2, + STATE(6435), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [266793] = 6, + [272206] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(11061), 1, + ACTIONS(11108), 1, anon_sym_LBRACK, - STATE(3053), 1, + STATE(3021), 1, sym_parameter_list, - STATE(6049), 1, + STATE(6153), 1, sym__function_declarator_seq, - ACTIONS(11524), 4, + ACTIONS(10801), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [266815] = 8, + [272228] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(10001), 1, + ACTIONS(11108), 1, anon_sym_LBRACK, - ACTIONS(11526), 1, - anon_sym_SEMI, - STATE(3033), 1, + STATE(3551), 1, sym_parameter_list, - STATE(5979), 1, + STATE(6153), 1, sym__function_declarator_seq, - STATE(5949), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [266841] = 6, + ACTIONS(10801), 4, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [272250] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(11061), 1, + ACTIONS(11108), 1, anon_sym_LBRACK, - STATE(3004), 1, + STATE(3551), 1, sym_parameter_list, - STATE(6049), 1, + STATE(6153), 1, + sym__function_declarator_seq, + ACTIONS(10805), 4, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [272272] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(11108), 1, + anon_sym_LBRACK, + STATE(3551), 1, + sym_parameter_list, + STATE(6153), 1, + sym__function_declarator_seq, + ACTIONS(10760), 4, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [272294] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(11108), 1, + anon_sym_LBRACK, + STATE(3551), 1, + sym_parameter_list, + STATE(6153), 1, + sym__function_declarator_seq, + ACTIONS(10831), 4, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [272316] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(11108), 1, + anon_sym_LBRACK, + STATE(3113), 1, + sym_parameter_list, + STATE(6153), 1, sym__function_declarator_seq, - ACTIONS(10753), 4, + ACTIONS(10801), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LBRACE, - [266863] = 8, + [272338] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(9778), 1, + ACTIONS(10071), 1, anon_sym_LBRACK, - ACTIONS(10881), 1, - anon_sym_RPAREN, - STATE(3033), 1, + ACTIONS(11578), 1, + anon_sym_SEMI, + STATE(3044), 1, sym_parameter_list, - STATE(6381), 1, + STATE(6203), 1, sym__function_declarator_seq, - STATE(6811), 2, + STATE(6081), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [266889] = 6, + [272364] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(11582), 3, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + ACTIONS(11580), 5, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [272380] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(11061), 1, + ACTIONS(10833), 1, + anon_sym___attribute, + ACTIONS(11108), 1, anon_sym_LBRACK, - STATE(3053), 1, + STATE(3357), 1, sym_parameter_list, - STATE(6049), 1, + STATE(6153), 1, sym__function_declarator_seq, - ACTIONS(10741), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [266911] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4167), 1, - anon_sym_COLON_COLON, - ACTIONS(6073), 1, + ACTIONS(10831), 3, anon_sym_COMMA, - ACTIONS(6630), 1, - anon_sym_LT, - ACTIONS(11528), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11530), 1, - anon_sym_RBRACK, - ACTIONS(11533), 1, - anon_sym_EQ, - STATE(1603), 1, - sym_template_argument_list, - STATE(7258), 1, - aux_sym_structured_binding_declarator_repeat1, - [266939] = 6, + anon_sym_RPAREN, + anon_sym___attribute__, + [272404] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(11061), 1, + ACTIONS(11108), 1, anon_sym_LBRACK, - STATE(3053), 1, + STATE(3113), 1, sym_parameter_list, - STATE(6049), 1, + STATE(6153), 1, sym__function_declarator_seq, - ACTIONS(10745), 4, + ACTIONS(10805), 4, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [266961] = 8, + [272426] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4167), 1, - anon_sym_COLON_COLON, - ACTIONS(6630), 1, - anon_sym_LT, - ACTIONS(11535), 1, - anon_sym_SEMI, - ACTIONS(11537), 1, - anon_sym_EQ, - STATE(1603), 1, - sym_template_argument_list, - STATE(7097), 2, + ACTIONS(10534), 1, + anon_sym_DASH_GT, + ACTIONS(10536), 1, + anon_sym_requires, + ACTIONS(11584), 1, + anon_sym_LBRACE, + STATE(7559), 1, + sym_trailing_return_type, + STATE(8474), 1, + sym_requires_clause, + STATE(4831), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [272452] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10534), 1, + anon_sym_DASH_GT, + ACTIONS(10536), 1, + anon_sym_requires, + ACTIONS(11536), 1, + anon_sym_LBRACE, + STATE(7352), 1, + sym_trailing_return_type, + STATE(8166), 1, + sym_requires_clause, + STATE(4831), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [266987] = 8, + [272478] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(10001), 1, + ACTIONS(9806), 1, anon_sym_LBRACK, - ACTIONS(11539), 1, + ACTIONS(11586), 1, anon_sym_RPAREN, - STATE(3033), 1, + STATE(3044), 1, sym_parameter_list, - STATE(5979), 1, + STATE(6468), 1, sym__function_declarator_seq, - STATE(5949), 2, + STATE(6910), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [267013] = 6, + [272504] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(11061), 1, + ACTIONS(11108), 1, anon_sym_LBRACK, - STATE(3004), 1, + STATE(3113), 1, sym_parameter_list, - STATE(6049), 1, + STATE(6153), 1, sym__function_declarator_seq, - ACTIONS(10757), 4, + ACTIONS(10784), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LBRACE, - [267035] = 8, + [272526] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - ACTIONS(9778), 1, - anon_sym_LBRACK, - ACTIONS(10848), 1, - anon_sym_RPAREN, - STATE(3033), 1, - sym_parameter_list, - STATE(6381), 1, - sym__function_declarator_seq, - STATE(6811), 2, + ACTIONS(4187), 1, + anon_sym_COLON_COLON, + ACTIONS(6580), 1, + anon_sym_LT, + ACTIONS(11588), 1, + anon_sym_SEMI, + ACTIONS(11590), 1, + anon_sym_EQ, + STATE(1623), 1, + sym_template_argument_list, + STATE(7209), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [267061] = 8, + [272552] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7838), 1, + ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(10001), 1, + ACTIONS(9806), 1, anon_sym_LBRACK, - ACTIONS(11541), 1, - anon_sym_COLON, - STATE(3487), 1, + ACTIONS(10946), 1, + anon_sym_RPAREN, + STATE(3044), 1, sym_parameter_list, - STATE(5979), 1, + STATE(6468), 1, sym__function_declarator_seq, - STATE(6341), 2, + STATE(6910), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [267087] = 6, + [272578] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(11061), 1, + ACTIONS(11108), 1, anon_sym_LBRACK, - STATE(3004), 1, + STATE(3113), 1, sym_parameter_list, - STATE(6049), 1, + STATE(6153), 1, sym__function_declarator_seq, - ACTIONS(10765), 4, + ACTIONS(10831), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LBRACE, - [267109] = 8, + [272600] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(10001), 1, + ACTIONS(10071), 1, anon_sym_LBRACK, - ACTIONS(11543), 1, + ACTIONS(11592), 1, anon_sym_SEMI, - STATE(3033), 1, + STATE(3044), 1, sym_parameter_list, - STATE(5979), 1, + STATE(6203), 1, sym__function_declarator_seq, - STATE(5949), 2, + STATE(6081), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [267135] = 8, + [272626] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4167), 1, - anon_sym_COLON_COLON, - ACTIONS(6630), 1, - anon_sym_LT, - ACTIONS(11545), 1, - anon_sym_SEMI, - ACTIONS(11547), 1, - anon_sym_EQ, - STATE(1603), 1, - sym_template_argument_list, - STATE(7046), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [267161] = 8, + ACTIONS(11366), 1, + anon_sym_LBRACK, + STATE(7506), 1, + sym_gnu_asm_output_operand, + STATE(8394), 1, + sym_string_literal, + ACTIONS(119), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [272646] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(9778), 1, + ACTIONS(10071), 1, anon_sym_LBRACK, - ACTIONS(10899), 1, + ACTIONS(11594), 1, anon_sym_RPAREN, - STATE(3033), 1, + STATE(3044), 1, sym_parameter_list, - STATE(6381), 1, + STATE(6203), 1, sym__function_declarator_seq, - STATE(6811), 2, + STATE(6081), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [267187] = 8, + [272672] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4167), 1, + ACTIONS(4187), 1, anon_sym_COLON_COLON, - ACTIONS(6630), 1, + ACTIONS(6580), 1, anon_sym_LT, - ACTIONS(11549), 1, + ACTIONS(11596), 1, anon_sym_SEMI, - ACTIONS(11551), 1, + ACTIONS(11598), 1, anon_sym_EQ, - STATE(1603), 1, + STATE(1623), 1, sym_template_argument_list, - STATE(7118), 2, + STATE(7225), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [267213] = 8, + [272698] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5472), 1, + ACTIONS(7918), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10582), 1, - anon_sym_LBRACE, - ACTIONS(10584), 1, - anon_sym_DASH_GT, - ACTIONS(10586), 1, - anon_sym_requires, - STATE(7188), 1, - sym_trailing_return_type, - STATE(8327), 1, - sym_requires_clause, - STATE(6665), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [267239] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(11061), 1, + ACTIONS(10071), 1, anon_sym_LBRACK, - STATE(3370), 1, + ACTIONS(10893), 1, + anon_sym_COLON, + STATE(3545), 1, sym_parameter_list, - STATE(6049), 1, + STATE(6203), 1, sym__function_declarator_seq, - ACTIONS(10731), 4, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [267261] = 8, + STATE(6435), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [272724] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10582), 1, + ACTIONS(10532), 1, anon_sym_LBRACE, - ACTIONS(10584), 1, + ACTIONS(10534), 1, anon_sym_DASH_GT, - ACTIONS(10586), 1, + ACTIONS(10536), 1, anon_sym_requires, - STATE(7188), 1, + STATE(7426), 1, sym_trailing_return_type, - STATE(8327), 1, + STATE(8062), 1, sym_requires_clause, - STATE(4776), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [267287] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - ACTIONS(11061), 1, - anon_sym_LBRACK, - STATE(3053), 1, - sym_parameter_list, - STATE(6049), 1, - sym__function_declarator_seq, - ACTIONS(10757), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [267309] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - ACTIONS(10001), 1, - anon_sym_LBRACK, - ACTIONS(11553), 1, - anon_sym_SEMI, - STATE(3033), 1, - sym_parameter_list, - STATE(5979), 1, - sym__function_declarator_seq, - STATE(5949), 2, + STATE(4831), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [267335] = 6, + [272750] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(11061), 1, + ACTIONS(11108), 1, anon_sym_LBRACK, - STATE(3004), 1, + STATE(3113), 1, sym_parameter_list, - STATE(6049), 1, + STATE(6153), 1, sym__function_declarator_seq, - ACTIONS(10731), 4, + ACTIONS(10817), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LBRACE, - [267357] = 6, + [272772] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(11061), 1, + ACTIONS(11108), 1, anon_sym_LBRACK, - STATE(3053), 1, + STATE(3021), 1, sym_parameter_list, - STATE(6049), 1, + STATE(6153), 1, sym__function_declarator_seq, - ACTIONS(10765), 4, + ACTIONS(11600), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [267379] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - ACTIONS(11061), 1, - anon_sym_LBRACK, - STATE(3370), 1, - sym_parameter_list, - STATE(6049), 1, - sym__function_declarator_seq, - ACTIONS(10749), 4, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [267401] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - ACTIONS(11061), 1, - anon_sym_LBRACK, - STATE(3370), 1, - sym_parameter_list, - STATE(6049), 1, - sym__function_declarator_seq, - ACTIONS(10753), 4, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [267423] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - ACTIONS(11061), 1, - anon_sym_LBRACK, - STATE(3370), 1, - sym_parameter_list, - STATE(6049), 1, - sym__function_declarator_seq, - ACTIONS(10761), 4, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [267445] = 6, + [272794] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11555), 1, - sym_identifier, - ACTIONS(11560), 1, + ACTIONS(11604), 1, aux_sym_preproc_elif_token1, - STATE(6705), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(8666), 1, - sym_enumerator, - ACTIONS(11558), 4, + ACTIONS(11606), 1, + anon_sym_EQ, + ACTIONS(11602), 6, + anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - [267467] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11562), 1, sym_identifier, - ACTIONS(11567), 1, - aux_sym_preproc_elif_token1, - STATE(6706), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - ACTIONS(11565), 4, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - [267487] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10584), 1, - anon_sym_DASH_GT, - ACTIONS(10586), 1, - anon_sym_requires, - ACTIONS(10592), 1, - anon_sym_LBRACE, - STATE(7474), 1, - sym_trailing_return_type, - STATE(8330), 1, - sym_requires_clause, - STATE(6668), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [267513] = 8, + [272812] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4167), 1, + ACTIONS(4187), 1, anon_sym_COLON_COLON, - ACTIONS(6630), 1, + ACTIONS(6580), 1, anon_sym_LT, - ACTIONS(11569), 1, + ACTIONS(11608), 1, anon_sym_SEMI, - ACTIONS(11571), 1, + ACTIONS(11610), 1, anon_sym_EQ, - STATE(1603), 1, + STATE(1623), 1, sym_template_argument_list, - STATE(7075), 2, + STATE(7194), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [267539] = 8, + [272838] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4167), 1, + ACTIONS(4187), 1, anon_sym_COLON_COLON, - ACTIONS(6630), 1, + ACTIONS(6580), 1, anon_sym_LT, - ACTIONS(11573), 1, + ACTIONS(11612), 1, anon_sym_SEMI, - ACTIONS(11575), 1, + ACTIONS(11614), 1, anon_sym_EQ, - STATE(1603), 1, + STATE(1623), 1, sym_template_argument_list, - STATE(7079), 2, + STATE(7223), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [267565] = 8, + [272864] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(9778), 1, + ACTIONS(9806), 1, anon_sym_LBRACK, - ACTIONS(11577), 1, + ACTIONS(10960), 1, anon_sym_RPAREN, - STATE(3033), 1, + STATE(3044), 1, sym_parameter_list, - STATE(6381), 1, + STATE(6468), 1, sym__function_declarator_seq, - STATE(6811), 2, + STATE(6910), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [267591] = 8, + [272890] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, + ACTIONS(7918), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(10001), 1, + ACTIONS(10071), 1, anon_sym_LBRACK, - ACTIONS(11579), 1, - anon_sym_SEMI, - STATE(3033), 1, + ACTIONS(10901), 1, + anon_sym_COLON, + STATE(3545), 1, sym_parameter_list, - STATE(5979), 1, + STATE(6203), 1, sym__function_declarator_seq, - STATE(5949), 2, + STATE(6435), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [267617] = 7, + [272916] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(10743), 1, - anon_sym___attribute, - ACTIONS(11061), 1, + ACTIONS(10071), 1, anon_sym_LBRACK, - STATE(3216), 1, + ACTIONS(11616), 1, + anon_sym_SEMI, + STATE(3044), 1, sym_parameter_list, - STATE(6049), 1, + STATE(6203), 1, sym__function_declarator_seq, - ACTIONS(10741), 3, - anon_sym_COMMA, - anon_sym___attribute__, - anon_sym_GT2, - [267641] = 8, + STATE(6081), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [272942] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(10001), 1, + ACTIONS(10071), 1, anon_sym_LBRACK, - ACTIONS(11581), 1, + ACTIONS(11618), 1, anon_sym_SEMI, - STATE(3033), 1, + STATE(3044), 1, sym_parameter_list, - STATE(5979), 1, + STATE(6203), 1, sym__function_declarator_seq, - STATE(5949), 2, + STATE(6081), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [267667] = 8, + [272968] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10584), 1, - anon_sym_DASH_GT, - ACTIONS(10586), 1, - anon_sym_requires, - ACTIONS(11583), 1, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(11108), 1, + anon_sym_LBRACK, + STATE(3021), 1, + sym_parameter_list, + STATE(6153), 1, + sym__function_declarator_seq, + ACTIONS(10760), 4, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(7427), 1, - sym_trailing_return_type, - STATE(8109), 1, - sym_requires_clause, - STATE(4776), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [267693] = 8, + anon_sym_EQ, + anon_sym_try, + [272990] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(9778), 1, + ACTIONS(10071), 1, anon_sym_LBRACK, - ACTIONS(10852), 1, - anon_sym_RPAREN, - STATE(3033), 1, + ACTIONS(11620), 1, + anon_sym_SEMI, + STATE(3044), 1, sym_parameter_list, - STATE(6381), 1, + STATE(6203), 1, sym__function_declarator_seq, - STATE(6811), 2, + STATE(6081), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [267719] = 7, + [273016] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(11622), 1, + sym_identifier, + ACTIONS(11627), 1, + aux_sym_preproc_elif_token1, + STATE(6821), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(8369), 1, + sym_enumerator, + ACTIONS(11625), 4, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + [273038] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(10767), 1, + ACTIONS(10803), 1, anon_sym___attribute, - ACTIONS(11061), 1, + ACTIONS(11108), 1, anon_sym_LBRACK, - STATE(3216), 1, + STATE(3357), 1, sym_parameter_list, - STATE(6049), 1, + STATE(6153), 1, sym__function_declarator_seq, - ACTIONS(10765), 3, + ACTIONS(10801), 3, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym___attribute__, - anon_sym_GT2, - [267743] = 7, + [273062] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6046), 1, - anon_sym_LBRACK, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(11585), 1, - anon_sym_RPAREN, - STATE(2298), 1, + ACTIONS(10071), 1, + anon_sym_LBRACK, + ACTIONS(11629), 1, + anon_sym_SEMI, + STATE(3044), 1, sym_parameter_list, - STATE(6307), 2, + STATE(6203), 1, + sym__function_declarator_seq, + STATE(6081), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [267766] = 6, + [273088] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(11631), 1, anon_sym_LPAREN2, - ACTIONS(11061), 1, + STATE(6845), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(11633), 4, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + anon_sym___volatile__, + [273105] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6098), 1, anon_sym_LBRACK, - STATE(3177), 1, + ACTIONS(6147), 1, + anon_sym_COLON, + ACTIONS(7918), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + STATE(1942), 1, sym_parameter_list, - STATE(6049), 1, - sym__function_declarator_seq, - ACTIONS(10761), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_GT2, - [267787] = 8, + STATE(6920), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [273128] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5232), 1, + ACTIONS(5234), 1, anon_sym_LBRACE, - ACTIONS(11392), 1, + ACTIONS(11422), 1, anon_sym_COLON_COLON, - ACTIONS(11394), 1, + ACTIONS(11424), 1, anon_sym_inline, - ACTIONS(11408), 1, + ACTIONS(11635), 1, sym_identifier, - STATE(547), 1, + STATE(586), 1, sym_declaration_list, - STATE(7570), 1, + STATE(7696), 1, sym_nested_namespace_specifier, - STATE(7980), 1, + STATE(8622), 1, sym__namespace_specifier, - [267812] = 5, + [273153] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7147), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - STATE(4249), 2, + STATE(4306), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - ACTIONS(11587), 3, + ACTIONS(11637), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_GT2, - [267831] = 7, + [273172] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6046), 1, - anon_sym_LBRACK, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - ACTIONS(11589), 1, - anon_sym_RPAREN, - STATE(2298), 1, - sym_parameter_list, - STATE(6307), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [267854] = 4, + ACTIONS(5236), 1, + anon_sym_LBRACE, + ACTIONS(11422), 1, + anon_sym_COLON_COLON, + ACTIONS(11424), 1, + anon_sym_inline, + ACTIONS(11522), 1, + sym_identifier, + STATE(301), 1, + sym_declaration_list, + STATE(7867), 1, + sym_nested_namespace_specifier, + STATE(8622), 1, + sym__namespace_specifier, + [273197] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11591), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - STATE(6725), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(11593), 4, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - anon_sym___volatile__, - [267871] = 7, + ACTIONS(11108), 1, + anon_sym_LBRACK, + STATE(3195), 1, + sym_parameter_list, + STATE(6153), 1, + sym__function_declarator_seq, + ACTIONS(10817), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + [273218] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6046), 1, - anon_sym_LBRACK, - ACTIONS(6166), 1, - anon_sym_COLON, - ACTIONS(7838), 1, + ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - STATE(2298), 1, + ACTIONS(10071), 1, + anon_sym_LBRACK, + STATE(2972), 1, sym_parameter_list, - STATE(6782), 2, + STATE(6203), 1, + sym__function_declarator_seq, + STATE(6081), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [267894] = 7, + [273241] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4167), 1, + ACTIONS(5232), 1, + anon_sym_LBRACE, + ACTIONS(11422), 1, anon_sym_COLON_COLON, - ACTIONS(6630), 1, - anon_sym_LT, - ACTIONS(11528), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11595), 1, - anon_sym_EQ, - STATE(1603), 1, - sym_template_argument_list, - ACTIONS(6230), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [267917] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11597), 1, - anon_sym_LPAREN2, - STATE(6725), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(11599), 4, + ACTIONS(11424), 1, anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - anon_sym___volatile__, - [267934] = 4, + ACTIONS(11639), 1, + sym_identifier, + STATE(682), 1, + sym_declaration_list, + STATE(7721), 1, + sym_nested_namespace_specifier, + STATE(8622), 1, + sym__namespace_specifier, + [273266] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11602), 1, - anon_sym_LPAREN2, - STATE(6738), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(11593), 4, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - anon_sym___volatile__, - [267951] = 7, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(7299), 1, + anon_sym___attribute__, + STATE(4306), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(11637), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT2, + [273285] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6046), 1, - anon_sym_LBRACK, - ACTIONS(6135), 1, - anon_sym_COLON, - ACTIONS(7838), 1, + ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9770), 1, + ACTIONS(6098), 1, + anon_sym_LBRACK, + ACTIONS(9798), 1, anon_sym_LPAREN2, - STATE(2298), 1, + ACTIONS(11641), 1, + anon_sym_RPAREN, + STATE(1942), 1, sym_parameter_list, - STATE(6782), 2, + STATE(6165), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [267974] = 5, + [273308] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11604), 1, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(11108), 1, anon_sym_LBRACK, - ACTIONS(11606), 1, - anon_sym_EQ, - ACTIONS(11608), 1, - anon_sym_DOT, - STATE(6756), 4, - sym_subscript_designator, - sym_subscript_range_designator, - sym_field_designator, - aux_sym_initializer_pair_repeat1, - [267993] = 4, + STATE(3195), 1, + sym_parameter_list, + STATE(6153), 1, + sym__function_declarator_seq, + ACTIONS(10760), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + [273329] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10492), 1, - anon_sym___attribute, - ACTIONS(11610), 1, - anon_sym_EQ, - ACTIONS(10490), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym___attribute__, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6098), 1, anon_sym_LBRACK, - [268010] = 8, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(11643), 1, + anon_sym_RPAREN, + STATE(1942), 1, + sym_parameter_list, + STATE(6165), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [273352] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5234), 1, + ACTIONS(5236), 1, anon_sym_LBRACE, - ACTIONS(11392), 1, + ACTIONS(11422), 1, anon_sym_COLON_COLON, - ACTIONS(11394), 1, + ACTIONS(11424), 1, anon_sym_inline, - ACTIONS(11612), 1, + ACTIONS(11645), 1, sym_identifier, - STATE(319), 1, + STATE(324), 1, sym_declaration_list, - STATE(7604), 1, + STATE(7973), 1, sym_nested_namespace_specifier, - STATE(7980), 1, + STATE(8622), 1, sym__namespace_specifier, - [268035] = 7, + [273377] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(11108), 1, + anon_sym_LBRACK, + STATE(3195), 1, + sym_parameter_list, + STATE(6153), 1, + sym__function_declarator_seq, + ACTIONS(10784), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + [273398] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6040), 1, + ACTIONS(6092), 1, anon_sym_COLON, - ACTIONS(6046), 1, + ACTIONS(6098), 1, anon_sym_LBRACK, - ACTIONS(7838), 1, + ACTIONS(7918), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - STATE(2298), 1, + STATE(1942), 1, sym_parameter_list, - STATE(6782), 2, + STATE(6920), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [268058] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11616), 1, - anon_sym_COMMA, - ACTIONS(11618), 1, - aux_sym_preproc_elif_token1, - ACTIONS(11614), 5, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_identifier, - [268075] = 8, + [273421] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5234), 1, + ACTIONS(5232), 1, anon_sym_LBRACE, - ACTIONS(11392), 1, + ACTIONS(11422), 1, anon_sym_COLON_COLON, - ACTIONS(11394), 1, + ACTIONS(11424), 1, anon_sym_inline, - ACTIONS(11430), 1, + ACTIONS(11426), 1, sym_identifier, - STATE(296), 1, + STATE(785), 1, sym_declaration_list, - STATE(7675), 1, + STATE(8027), 1, sym_nested_namespace_specifier, - STATE(7980), 1, + STATE(8622), 1, sym__namespace_specifier, - [268100] = 7, + [273446] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4187), 1, + anon_sym_COLON_COLON, + ACTIONS(6580), 1, + anon_sym_LT, + ACTIONS(11571), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11576), 1, + anon_sym_EQ, + STATE(1623), 1, + sym_template_argument_list, + ACTIONS(6278), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [273469] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6046), 1, + ACTIONS(6098), 1, anon_sym_LBRACK, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(11620), 1, + ACTIONS(11647), 1, anon_sym_RPAREN, - STATE(2298), 1, + STATE(1942), 1, sym_parameter_list, - STATE(6307), 2, + STATE(6165), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [268123] = 7, + [273492] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6046), 1, + ACTIONS(6098), 1, anon_sym_LBRACK, - ACTIONS(9770), 1, + ACTIONS(6114), 1, + anon_sym_COLON, + ACTIONS(7918), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(11622), 1, - anon_sym_RPAREN, - STATE(2298), 1, + STATE(1942), 1, sym_parameter_list, - STATE(6307), 2, + STATE(6920), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [268146] = 8, + [273515] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11649), 1, + anon_sym_LPAREN2, + STATE(6871), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(11633), 4, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + anon_sym___volatile__, + [273532] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5222), 1, + ACTIONS(5230), 1, anon_sym_LBRACE, - ACTIONS(11392), 1, + ACTIONS(11422), 1, anon_sym_COLON_COLON, - ACTIONS(11394), 1, + ACTIONS(11424), 1, anon_sym_inline, - ACTIONS(11466), 1, + ACTIONS(11476), 1, sym_identifier, - STATE(785), 1, + STATE(804), 1, sym_declaration_list, - STATE(7727), 1, + STATE(8025), 1, sym_nested_namespace_specifier, - STATE(7980), 1, + STATE(8622), 1, sym__namespace_specifier, - [268171] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - ACTIONS(11061), 1, - anon_sym_LBRACK, - STATE(3177), 1, - sym_parameter_list, - STATE(6049), 1, - sym__function_declarator_seq, - ACTIONS(10753), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_GT2, - [268192] = 4, + [273557] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11624), 1, + ACTIONS(11651), 1, anon_sym_LPAREN2, - STATE(6725), 2, + STATE(6848), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(11593), 4, + ACTIONS(11633), 4, anon_sym_inline, anon_sym_volatile, anon_sym_goto, anon_sym___volatile__, - [268209] = 4, + [273574] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11626), 1, + ACTIONS(10611), 1, + anon_sym___attribute, + ACTIONS(11653), 1, + anon_sym_EQ, + ACTIONS(10609), 5, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - STATE(6742), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(11593), 4, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - anon_sym___volatile__, - [268226] = 8, + anon_sym___attribute__, + anon_sym_LBRACK, + [273591] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5230), 1, + ACTIONS(5234), 1, anon_sym_LBRACE, - ACTIONS(11392), 1, + ACTIONS(11420), 1, + sym_identifier, + ACTIONS(11422), 1, anon_sym_COLON_COLON, - ACTIONS(11394), 1, + ACTIONS(11424), 1, anon_sym_inline, - ACTIONS(11464), 1, - sym_identifier, - STATE(779), 1, + STATE(565), 1, sym_declaration_list, - STATE(7894), 1, + STATE(7947), 1, sym_nested_namespace_specifier, - STATE(7980), 1, + STATE(8622), 1, sym__namespace_specifier, - [268251] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - ACTIONS(11061), 1, - anon_sym_LBRACK, - STATE(3177), 1, - sym_parameter_list, - STATE(6049), 1, - sym__function_declarator_seq, - ACTIONS(10749), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_GT2, - [268272] = 4, + [273616] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11628), 1, + ACTIONS(11655), 1, anon_sym_LPAREN2, - STATE(6725), 2, + STATE(6848), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(11593), 4, + ACTIONS(11657), 4, anon_sym_inline, anon_sym_volatile, anon_sym_goto, anon_sym___volatile__, - [268289] = 7, + [273633] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11660), 1, + anon_sym_LBRACK, + ACTIONS(11662), 1, + anon_sym_EQ, + ACTIONS(11664), 1, + anon_sym_DOT, + STATE(6863), 4, + sym_subscript_designator, + sym_subscript_range_designator, + sym_field_designator, + aux_sym_initializer_pair_repeat1, + [273652] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7283), 1, + anon_sym___attribute__, + ACTIONS(7285), 1, + anon_sym___attribute, + ACTIONS(7918), 1, + anon_sym_LBRACK_LBRACK, + STATE(5541), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5835), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [273673] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(11108), 1, + anon_sym_LBRACK, + STATE(3195), 1, + sym_parameter_list, + STATE(6153), 1, + sym__function_declarator_seq, + ACTIONS(10831), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + [273694] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6046), 1, + ACTIONS(6098), 1, anon_sym_LBRACK, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(11630), 1, + ACTIONS(11666), 1, anon_sym_RPAREN, - STATE(2298), 1, + STATE(1942), 1, sym_parameter_list, - STATE(6307), 2, + STATE(6165), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [268312] = 7, + [273717] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(10001), 1, + ACTIONS(11108), 1, anon_sym_LBRACK, - STATE(2877), 1, + STATE(3195), 1, sym_parameter_list, - STATE(5979), 1, + STATE(6153), 1, sym__function_declarator_seq, - STATE(5949), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [268335] = 6, + ACTIONS(10813), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + [273738] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7083), 1, - anon_sym___attribute__, - ACTIONS(7085), 1, + ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7838), 1, - anon_sym_LBRACK_LBRACK, - STATE(5468), 2, + ACTIONS(7299), 1, + anon_sym___attribute__, + STATE(4306), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5688), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [268356] = 4, + ACTIONS(11668), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT2, + [273757] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11632), 1, + ACTIONS(11670), 1, anon_sym_LPAREN2, - STATE(6725), 2, + STATE(6856), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(11593), 4, + ACTIONS(11633), 4, anon_sym_inline, anon_sym_volatile, anon_sym_goto, anon_sym___volatile__, - [268373] = 4, + [273774] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11634), 1, + ACTIONS(11672), 1, anon_sym_LPAREN2, - STATE(6748), 2, + STATE(6848), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(11593), 4, + ACTIONS(11633), 4, anon_sym_inline, anon_sym_volatile, anon_sym_goto, anon_sym___volatile__, - [268390] = 4, + [273791] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11636), 1, + ACTIONS(11674), 1, anon_sym_LPAREN2, - STATE(6725), 2, + STATE(6858), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(11593), 4, + ACTIONS(11633), 4, anon_sym_inline, anon_sym_volatile, anon_sym_goto, anon_sym___volatile__, - [268407] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6046), 1, - anon_sym_LBRACK, - ACTIONS(6068), 1, - anon_sym_COLON, - ACTIONS(7838), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - STATE(2298), 1, - sym_parameter_list, - STATE(6782), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [268430] = 4, + [273808] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11638), 1, + ACTIONS(11676), 1, anon_sym_LPAREN2, - STATE(6751), 2, + STATE(6848), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(11593), 4, + ACTIONS(11633), 4, anon_sym_inline, anon_sym_volatile, anon_sym_goto, anon_sym___volatile__, - [268447] = 4, + [273825] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11680), 1, + anon_sym_COMMA, + ACTIONS(11682), 1, + aux_sym_preproc_elif_token1, + ACTIONS(11678), 5, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_identifier, + [273842] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11640), 1, + ACTIONS(11684), 1, anon_sym_LPAREN2, - STATE(6725), 2, + STATE(6861), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(11593), 4, + ACTIONS(11633), 4, anon_sym_inline, anon_sym_volatile, anon_sym_goto, anon_sym___volatile__, - [268464] = 4, + [273859] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11642), 1, + ACTIONS(11686), 1, anon_sym_LPAREN2, - STATE(6754), 2, + STATE(6848), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(11593), 4, + ACTIONS(11633), 4, anon_sym_inline, anon_sym_volatile, anon_sym_goto, anon_sym___volatile__, - [268481] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6046), 1, - anon_sym_LBRACK, - ACTIONS(6102), 1, - anon_sym_COLON, - ACTIONS(7838), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - STATE(2298), 1, - sym_parameter_list, - STATE(6782), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [268504] = 4, + [273876] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11644), 1, + ACTIONS(11688), 1, anon_sym_LPAREN2, - STATE(6725), 2, + STATE(6864), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(11593), 4, + ACTIONS(11633), 4, anon_sym_inline, anon_sym_volatile, anon_sym_goto, anon_sym___volatile__, - [268521] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - ACTIONS(11061), 1, - anon_sym_LBRACK, - STATE(3177), 1, - sym_parameter_list, - STATE(6049), 1, - sym__function_declarator_seq, - ACTIONS(10745), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_GT2, - [268542] = 5, + [273893] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11646), 1, + ACTIONS(11690), 1, anon_sym_LBRACK, - ACTIONS(11649), 1, + ACTIONS(11693), 1, anon_sym_EQ, - ACTIONS(11651), 1, + ACTIONS(11695), 1, anon_sym_DOT, - STATE(6756), 4, + STATE(6863), 4, sym_subscript_designator, sym_subscript_range_designator, sym_field_designator, aux_sym_initializer_pair_repeat1, - [268561] = 7, + [273912] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11698), 1, + anon_sym_LPAREN2, + STATE(6848), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(11633), 4, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + anon_sym___volatile__, + [273929] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3615), 1, + ACTIONS(3623), 1, anon_sym_LBRACE, - ACTIONS(4167), 1, + ACTIONS(4187), 1, anon_sym_COLON_COLON, - ACTIONS(6630), 1, + ACTIONS(6580), 1, anon_sym_LT, - ACTIONS(8147), 1, + ACTIONS(8177), 1, anon_sym_LPAREN2, - STATE(2324), 1, + STATE(2361), 1, sym_template_argument_list, - STATE(7139), 2, + STATE(7361), 2, sym_argument_list, sym_initializer_list, - [268584] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - ACTIONS(11061), 1, - anon_sym_LBRACK, - STATE(3177), 1, - sym_parameter_list, - STATE(6049), 1, - sym__function_declarator_seq, - ACTIONS(10731), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_GT2, - [268605] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7147), 1, - anon_sym___attribute__, - STATE(4249), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - ACTIONS(11654), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_GT2, - [268624] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - ACTIONS(11061), 1, - anon_sym_LBRACK, - STATE(3177), 1, - sym_parameter_list, - STATE(6049), 1, - sym__function_declarator_seq, - ACTIONS(10757), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_GT2, - [268645] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5222), 1, - anon_sym_LBRACE, - ACTIONS(11392), 1, - anon_sym_COLON_COLON, - ACTIONS(11394), 1, - anon_sym_inline, - ACTIONS(11656), 1, - sym_identifier, - STATE(670), 1, - sym_declaration_list, - STATE(7600), 1, - sym_nested_namespace_specifier, - STATE(7980), 1, - sym__namespace_specifier, - [268670] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - ACTIONS(11061), 1, - anon_sym_LBRACK, - STATE(3177), 1, - sym_parameter_list, - STATE(6049), 1, - sym__function_declarator_seq, - ACTIONS(10765), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_GT2, - [268691] = 6, + [273952] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(11700), 1, anon_sym_LPAREN2, - ACTIONS(11061), 1, - anon_sym_LBRACK, - STATE(3177), 1, - sym_parameter_list, - STATE(6049), 1, - sym__function_declarator_seq, - ACTIONS(10741), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_GT2, - [268712] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5230), 1, - anon_sym_LBRACE, - ACTIONS(11392), 1, - anon_sym_COLON_COLON, - ACTIONS(11394), 1, + STATE(6868), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(11633), 4, anon_sym_inline, - ACTIONS(11658), 1, - sym_identifier, - STATE(687), 1, - sym_declaration_list, - STATE(7827), 1, - sym_nested_namespace_specifier, - STATE(7980), 1, - sym__namespace_specifier, - [268737] = 7, + anon_sym_volatile, + anon_sym_goto, + anon_sym___volatile__, + [273969] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6046), 1, + ACTIONS(6098), 1, anon_sym_LBRACK, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(11660), 1, + ACTIONS(11702), 1, anon_sym_RPAREN, - STATE(2298), 1, + STATE(1942), 1, sym_parameter_list, - STATE(6307), 2, + STATE(6165), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [268760] = 6, + [273992] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7147), 1, - anon_sym___attribute__, - STATE(5381), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5442), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [268781] = 5, + ACTIONS(11704), 1, + anon_sym_LPAREN2, + STATE(6848), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(11633), 4, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + anon_sym___volatile__, + [274009] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6513), 1, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6098), 1, anon_sym_LBRACK, - ACTIONS(6630), 1, - anon_sym_LT, - STATE(5954), 1, - sym_template_argument_list, - ACTIONS(6515), 4, + ACTIONS(9798), 1, anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_try, - [268800] = 5, + ACTIONS(11706), 1, + anon_sym_RPAREN, + STATE(1942), 1, + sym_parameter_list, + STATE(6165), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [274032] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7147), 1, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7299), 1, anon_sym___attribute__, - STATE(4249), 2, + STATE(5453), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - ACTIONS(11654), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_GT2, - [268819] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6046), 1, - anon_sym_LBRACK, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - ACTIONS(11662), 1, - anon_sym_RPAREN, - STATE(2298), 1, - sym_parameter_list, - STATE(6307), 2, + STATE(5539), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [268842] = 4, + [274053] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11664), 1, + ACTIONS(11708), 1, anon_sym_LPAREN2, - STATE(6722), 2, + STATE(6848), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(11593), 4, + ACTIONS(11633), 4, anon_sym_inline, anon_sym_volatile, anon_sym_goto, anon_sym___volatile__, - [268859] = 8, + [274070] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5232), 1, + ACTIONS(6098), 1, + anon_sym_LBRACK, + ACTIONS(6204), 1, + anon_sym_COLON, + ACTIONS(7918), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + STATE(1942), 1, + sym_parameter_list, + STATE(6920), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [274093] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5230), 1, anon_sym_LBRACE, - ACTIONS(11392), 1, + ACTIONS(11422), 1, anon_sym_COLON_COLON, - ACTIONS(11394), 1, + ACTIONS(11424), 1, anon_sym_inline, - ACTIONS(11666), 1, + ACTIONS(11710), 1, sym_identifier, - STATE(620), 1, + STATE(680), 1, sym_declaration_list, - STATE(7922), 1, + STATE(7710), 1, sym_nested_namespace_specifier, - STATE(7980), 1, + STATE(8622), 1, sym__namespace_specifier, - [268884] = 4, + [274118] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10492), 1, - anon_sym___attribute, - ACTIONS(11668), 1, - anon_sym_EQ, - ACTIONS(10490), 5, - anon_sym_COMMA, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6098), 1, + anon_sym_LBRACK, + ACTIONS(9798), 1, anon_sym_LPAREN2, - anon_sym___attribute__, + ACTIONS(11712), 1, + anon_sym_RPAREN, + STATE(1942), 1, + sym_parameter_list, + STATE(6165), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [274141] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(11108), 1, anon_sym_LBRACK, + STATE(3195), 1, + sym_parameter_list, + STATE(6153), 1, + sym__function_declarator_seq, + ACTIONS(10750), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_GT2, - [268901] = 7, + [274162] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4167), 1, + ACTIONS(4187), 1, anon_sym_COLON_COLON, - ACTIONS(6630), 1, + ACTIONS(6580), 1, anon_sym_LT, - ACTIONS(11528), 1, + ACTIONS(11571), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11533), 1, + ACTIONS(11714), 1, anon_sym_EQ, - STATE(1603), 1, + STATE(1623), 1, sym_template_argument_list, - ACTIONS(6244), 2, + ACTIONS(6268), 2, anon_sym_COMMA, anon_sym_RBRACK, - [268924] = 7, + [274185] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6046), 1, + ACTIONS(6098), 1, anon_sym_LBRACK, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(11670), 1, + ACTIONS(11716), 1, anon_sym_RPAREN, - STATE(2298), 1, + STATE(1942), 1, sym_parameter_list, - STATE(6307), 2, + STATE(6165), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [268947] = 4, + [274208] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11672), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - STATE(6746), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(11593), 4, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - anon_sym___volatile__, - [268964] = 3, + ACTIONS(11108), 1, + anon_sym_LBRACK, + STATE(3195), 1, + sym_parameter_list, + STATE(6153), 1, + sym__function_declarator_seq, + ACTIONS(10805), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + [274229] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11674), 2, - anon_sym_RBRACE, - sym_identifier, - ACTIONS(11676), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - [268978] = 7, + ACTIONS(6098), 1, + anon_sym_LBRACK, + ACTIONS(6200), 1, + anon_sym_COLON, + ACTIONS(7918), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + STATE(1942), 1, + sym_parameter_list, + STATE(6920), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [274252] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(11108), 1, + anon_sym_LBRACK, + STATE(3195), 1, + sym_parameter_list, + STATE(6153), 1, + sym__function_declarator_seq, + ACTIONS(10801), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + [274273] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10611), 1, + anon_sym___attribute, + ACTIONS(11718), 1, + anon_sym_EQ, + ACTIONS(10609), 5, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_GT2, + [274290] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7147), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - ACTIONS(8483), 1, + ACTIONS(8521), 1, anon_sym_COMMA, - ACTIONS(11678), 1, + ACTIONS(11720), 1, anon_sym_SEMI, - STATE(6864), 1, + STATE(6938), 1, aux_sym_field_declaration_repeat1, - STATE(8783), 1, + STATE(8596), 1, sym_attribute_specifier, - [269000] = 6, + [274312] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - ACTIONS(11061), 1, - anon_sym_LBRACK, - STATE(3405), 1, - sym_parameter_list, - STATE(6049), 1, - sym__function_declarator_seq, - ACTIONS(10741), 2, - anon_sym_LBRACE, - anon_sym_requires, - [269020] = 6, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(7299), 1, + anon_sym___attribute__, + ACTIONS(8521), 1, + anon_sym_COMMA, + ACTIONS(11722), 1, + anon_sym_SEMI, + STATE(7033), 1, + aux_sym_field_declaration_repeat1, + STATE(8719), 1, + sym_attribute_specifier, + [274334] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - ACTIONS(11061), 1, - anon_sym_LBRACK, - STATE(3405), 1, - sym_parameter_list, - STATE(6049), 1, - sym__function_declarator_seq, - ACTIONS(10745), 2, + ACTIONS(9826), 1, + anon_sym_try, + ACTIONS(10654), 1, anon_sym_LBRACE, - anon_sym_requires, - [269040] = 3, + ACTIONS(11724), 1, + anon_sym_SEMI, + ACTIONS(11726), 1, + anon_sym_EQ, + STATE(2024), 2, + sym_compound_statement, + sym_try_statement, + [274354] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11627), 1, + aux_sym_preproc_elif_token1, + ACTIONS(11625), 5, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_identifier, + [274368] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11680), 2, + ACTIONS(11728), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(11682), 4, + ACTIONS(11730), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [269054] = 7, + [274382] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7147), 1, - anon_sym___attribute__, - ACTIONS(8483), 1, - anon_sym_COMMA, - ACTIONS(11684), 1, - anon_sym_SEMI, - STATE(6823), 1, - aux_sym_field_declaration_repeat1, - STATE(8576), 1, - sym_attribute_specifier, - [269076] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6249), 1, - anon_sym_LBRACK, - ACTIONS(7838), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6251), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - STATE(5687), 2, + ACTIONS(9843), 1, + anon_sym_DASH_GT, + ACTIONS(11732), 1, + anon_sym_LBRACE, + STATE(8262), 1, + sym_trailing_return_type, + STATE(4831), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [269094] = 7, + [274402] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7147), 1, - anon_sym___attribute__, - ACTIONS(8483), 1, - anon_sym_COMMA, - ACTIONS(11686), 1, + ACTIONS(866), 1, + anon_sym_LBRACE, + ACTIONS(10123), 1, + anon_sym_try, + ACTIONS(11734), 1, anon_sym_SEMI, - STATE(6864), 1, - aux_sym_field_declaration_repeat1, - STATE(8695), 1, - sym_attribute_specifier, - [269116] = 6, + ACTIONS(11736), 1, + anon_sym_EQ, + STATE(776), 2, + sym_compound_statement, + sym_try_statement, + [274422] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9813), 1, + ACTIONS(9843), 1, anon_sym_DASH_GT, - ACTIONS(11688), 1, + ACTIONS(10738), 1, anon_sym_LBRACE, - STATE(8349), 1, + STATE(8225), 1, sym_trailing_return_type, - STATE(4776), 2, + STATE(4831), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [269136] = 6, + [274442] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(9837), 1, + anon_sym_try, + ACTIONS(10674), 1, anon_sym_LBRACE, - ACTIONS(10007), 1, + ACTIONS(11738), 1, + anon_sym_SEMI, + ACTIONS(11740), 1, + anon_sym_EQ, + STATE(1767), 2, + sym_compound_statement, + sym_try_statement, + [274462] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9837), 1, anon_sym_try, - ACTIONS(11690), 1, + ACTIONS(10674), 1, + anon_sym_LBRACE, + ACTIONS(11742), 1, anon_sym_SEMI, - ACTIONS(11692), 1, + ACTIONS(11744), 1, anon_sym_EQ, - STATE(602), 2, + STATE(1792), 2, sym_compound_statement, sym_try_statement, - [269156] = 6, + [274482] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9782), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(7299), 1, + anon_sym___attribute__, + ACTIONS(8521), 1, + anon_sym_COMMA, + ACTIONS(11746), 1, + anon_sym_SEMI, + STATE(7033), 1, + aux_sym_field_declaration_repeat1, + STATE(8283), 1, + sym_attribute_specifier, + [274504] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11748), 2, + anon_sym_RBRACE, + sym_identifier, + ACTIONS(11750), 4, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + [274518] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11752), 2, + anon_sym_RBRACE, + sym_identifier, + ACTIONS(11754), 4, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + [274532] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(11108), 1, + anon_sym_LBRACK, + STATE(3510), 1, + sym_parameter_list, + STATE(6153), 1, + sym__function_declarator_seq, + ACTIONS(10813), 2, + anon_sym_LBRACE, + anon_sym_requires, + [274552] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9826), 1, anon_sym_try, - ACTIONS(10958), 1, + ACTIONS(10654), 1, anon_sym_LBRACE, - ACTIONS(11694), 1, + ACTIONS(11756), 1, anon_sym_SEMI, - ACTIONS(11696), 1, + ACTIONS(11758), 1, anon_sym_EQ, - STATE(2021), 2, + STATE(2002), 2, sym_compound_statement, sym_try_statement, - [269176] = 6, + [274572] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5472), 1, + ACTIONS(5493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9813), 1, + ACTIONS(9843), 1, anon_sym_DASH_GT, - ACTIONS(11688), 1, + ACTIONS(10738), 1, anon_sym_LBRACE, - STATE(8349), 1, + STATE(8225), 1, sym_trailing_return_type, - STATE(6790), 2, + STATE(6917), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [269196] = 6, + [274592] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(7299), 1, + anon_sym___attribute__, + ACTIONS(8521), 1, + anon_sym_COMMA, + ACTIONS(11760), 1, + anon_sym_SEMI, + STATE(7033), 1, + aux_sym_field_declaration_repeat1, + STATE(8792), 1, + sym_attribute_specifier, + [274614] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(11061), 1, + ACTIONS(11108), 1, anon_sym_LBRACK, - STATE(3405), 1, + STATE(3510), 1, sym_parameter_list, - STATE(6049), 1, + STATE(6153), 1, sym__function_declarator_seq, - ACTIONS(10731), 2, + ACTIONS(10817), 2, anon_sym_LBRACE, anon_sym_requires, - [269216] = 6, + [274634] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(11061), 1, + ACTIONS(11108), 1, anon_sym_LBRACK, - STATE(3405), 1, + STATE(3510), 1, sym_parameter_list, - STATE(6049), 1, + STATE(6153), 1, sym__function_declarator_seq, - ACTIONS(10757), 2, + ACTIONS(10760), 2, anon_sym_LBRACE, anon_sym_requires, - [269236] = 6, + [274654] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9813), 1, - anon_sym_DASH_GT, - ACTIONS(11698), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(7299), 1, + anon_sym___attribute__, + ACTIONS(8521), 1, + anon_sym_COMMA, + ACTIONS(11762), 1, + anon_sym_SEMI, + STATE(7033), 1, + aux_sym_field_declaration_repeat1, + STATE(8414), 1, + sym_attribute_specifier, + [274676] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11764), 2, + anon_sym_RBRACE, + sym_identifier, + ACTIONS(11766), 4, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + [274690] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9810), 1, + anon_sym_try, + ACTIONS(10666), 1, anon_sym_LBRACE, - STATE(8189), 1, - sym_trailing_return_type, - STATE(4776), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [269256] = 7, + ACTIONS(11768), 1, + anon_sym_SEMI, + ACTIONS(11770), 1, + anon_sym_EQ, + STATE(2148), 2, + sym_compound_statement, + sym_try_statement, + [274710] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7147), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - ACTIONS(8483), 1, + ACTIONS(8521), 1, anon_sym_COMMA, - ACTIONS(11700), 1, + ACTIONS(11772), 1, anon_sym_SEMI, - STATE(6864), 1, + STATE(7033), 1, aux_sym_field_declaration_repeat1, - STATE(8329), 1, + STATE(8215), 1, sym_attribute_specifier, - [269278] = 7, + [274732] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7147), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - ACTIONS(8483), 1, + ACTIONS(8521), 1, anon_sym_COMMA, - ACTIONS(11702), 1, + ACTIONS(11774), 1, anon_sym_SEMI, - STATE(6864), 1, + STATE(7033), 1, aux_sym_field_declaration_repeat1, - STATE(8375), 1, + STATE(8806), 1, sym_attribute_specifier, - [269300] = 6, + [274754] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(894), 1, + ACTIONS(11776), 2, + anon_sym_RBRACE, + sym_identifier, + ACTIONS(11778), 4, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + [274768] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(7299), 1, + anon_sym___attribute__, + ACTIONS(8521), 1, + anon_sym_COMMA, + ACTIONS(11780), 1, + anon_sym_SEMI, + STATE(6948), 1, + aux_sym_field_declaration_repeat1, + STATE(8605), 1, + sym_attribute_specifier, + [274790] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(297), 1, anon_sym_LBRACE, - ACTIONS(10114), 1, + ACTIONS(10081), 1, anon_sym_try, - ACTIONS(11704), 1, + ACTIONS(11782), 1, anon_sym_SEMI, - ACTIONS(11706), 1, + ACTIONS(11784), 1, anon_sym_EQ, - STATE(699), 2, + STATE(317), 2, sym_compound_statement, sym_try_statement, - [269320] = 6, + [274810] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - ACTIONS(11061), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(7299), 1, + anon_sym___attribute__, + ACTIONS(8521), 1, + anon_sym_COMMA, + ACTIONS(11786), 1, + anon_sym_SEMI, + STATE(7033), 1, + aux_sym_field_declaration_repeat1, + STATE(8875), 1, + sym_attribute_specifier, + [274832] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11126), 1, anon_sym_LBRACK, - STATE(3405), 1, - sym_parameter_list, - STATE(6049), 1, - sym__function_declarator_seq, - ACTIONS(10765), 2, - anon_sym_LBRACE, - anon_sym_requires, - [269340] = 3, + ACTIONS(11124), 2, + anon_sym_RPAREN, + anon_sym_LPAREN2, + STATE(5943), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [274850] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11708), 2, + ACTIONS(11788), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(11710), 4, + ACTIONS(11790), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [269354] = 6, + [274864] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9809), 1, - anon_sym_try, - ACTIONS(10948), 1, + STATE(8379), 1, + sym_string_literal, + ACTIONS(119), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [274878] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(11108), 1, + anon_sym_LBRACK, + STATE(3510), 1, + sym_parameter_list, + STATE(6153), 1, + sym__function_declarator_seq, + ACTIONS(10750), 2, anon_sym_LBRACE, - ACTIONS(11712), 1, + anon_sym_requires, + [274898] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(7299), 1, + anon_sym___attribute__, + ACTIONS(8521), 1, + anon_sym_COMMA, + ACTIONS(11792), 1, anon_sym_SEMI, - ACTIONS(11714), 1, - anon_sym_EQ, - STATE(2088), 2, - sym_compound_statement, - sym_try_statement, - [269374] = 7, + STATE(6898), 1, + aux_sym_field_declaration_repeat1, + STATE(8149), 1, + sym_attribute_specifier, + [274920] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7147), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - ACTIONS(8483), 1, + ACTIONS(8521), 1, anon_sym_COMMA, - ACTIONS(11716), 1, + ACTIONS(11794), 1, anon_sym_SEMI, - STATE(6864), 1, + STATE(7033), 1, aux_sym_field_declaration_repeat1, - STATE(8066), 1, + STATE(8636), 1, sym_attribute_specifier, - [269396] = 7, + [274942] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7147), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - ACTIONS(8483), 1, + ACTIONS(8521), 1, anon_sym_COMMA, - ACTIONS(11718), 1, + ACTIONS(11796), 1, anon_sym_SEMI, - STATE(6797), 1, + STATE(7033), 1, aux_sym_field_declaration_repeat1, - STATE(8441), 1, + STATE(8292), 1, sym_attribute_specifier, - [269418] = 6, + [274964] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(866), 1, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9843), 1, + anon_sym_DASH_GT, + ACTIONS(11798), 1, anon_sym_LBRACE, - ACTIONS(10148), 1, - anon_sym_try, - ACTIONS(11720), 1, + STATE(8076), 1, + sym_trailing_return_type, + STATE(4831), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [274984] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(7299), 1, + anon_sym___attribute__, + ACTIONS(8521), 1, + anon_sym_COMMA, + ACTIONS(11800), 1, anon_sym_SEMI, - ACTIONS(11722), 1, - anon_sym_EQ, - STATE(769), 2, - sym_compound_statement, - sym_try_statement, - [269438] = 5, + STATE(7033), 1, + aux_sym_field_declaration_repeat1, + STATE(8237), 1, + sym_attribute_specifier, + [275006] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6630), 1, - anon_sym_LT, - ACTIONS(11073), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - STATE(6357), 1, + ACTIONS(7483), 1, + anon_sym_LT, + STATE(3998), 1, sym_template_argument_list, - ACTIONS(11071), 3, + ACTIONS(6428), 3, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - [269456] = 6, + [275024] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(297), 1, - anon_sym_LBRACE, - ACTIONS(10023), 1, - anon_sym_try, - ACTIONS(11724), 1, - anon_sym_SEMI, - ACTIONS(11726), 1, - anon_sym_EQ, - STATE(283), 2, - sym_compound_statement, - sym_try_statement, - [269476] = 7, + ACTIONS(6244), 1, + anon_sym_LBRACK, + ACTIONS(7918), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6246), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + STATE(5804), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [275042] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7147), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - ACTIONS(8483), 1, + ACTIONS(8521), 1, anon_sym_COMMA, - ACTIONS(11728), 1, + ACTIONS(11802), 1, anon_sym_SEMI, - STATE(6820), 1, + STATE(6909), 1, aux_sym_field_declaration_repeat1, - STATE(8463), 1, + STATE(8579), 1, sym_attribute_specifier, - [269498] = 7, + [275064] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7147), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - ACTIONS(8483), 1, + ACTIONS(8521), 1, anon_sym_COMMA, - ACTIONS(11730), 1, + ACTIONS(11804), 1, anon_sym_SEMI, - STATE(6818), 1, + STATE(6904), 1, aux_sym_field_declaration_repeat1, - STATE(7956), 1, + STATE(8336), 1, sym_attribute_specifier, - [269520] = 6, + [275086] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(297), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(10023), 1, + ACTIONS(10182), 1, anon_sym_try, - ACTIONS(11732), 1, + ACTIONS(11806), 1, anon_sym_SEMI, - ACTIONS(11734), 1, + ACTIONS(11808), 1, anon_sym_EQ, - STATE(288), 2, + STATE(508), 2, sym_compound_statement, sym_try_statement, - [269540] = 6, + [275106] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9813), 1, - anon_sym_DASH_GT, - ACTIONS(10588), 1, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(11108), 1, + anon_sym_LBRACK, + STATE(3510), 1, + sym_parameter_list, + STATE(6153), 1, + sym__function_declarator_seq, + ACTIONS(10801), 2, anon_sym_LBRACE, - STATE(8505), 1, - sym_trailing_return_type, - STATE(6822), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [269560] = 7, + anon_sym_requires, + [275126] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11764), 2, + anon_sym_RBRACE, + sym_identifier, + ACTIONS(11766), 4, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + [275140] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(894), 1, + anon_sym_LBRACE, + ACTIONS(10138), 1, + anon_sym_try, + ACTIONS(11810), 1, + anon_sym_SEMI, + ACTIONS(11812), 1, + anon_sym_EQ, + STATE(721), 2, + sym_compound_statement, + sym_try_statement, + [275160] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(297), 1, + anon_sym_LBRACE, + ACTIONS(10081), 1, + anon_sym_try, + ACTIONS(11814), 1, + anon_sym_SEMI, + ACTIONS(11816), 1, + anon_sym_EQ, + STATE(293), 2, + sym_compound_statement, + sym_try_statement, + [275180] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7147), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - ACTIONS(8483), 1, + ACTIONS(8521), 1, anon_sym_COMMA, - ACTIONS(11736), 1, + ACTIONS(11818), 1, anon_sym_SEMI, - STATE(6864), 1, + STATE(6941), 1, aux_sym_field_declaration_repeat1, - STATE(8611), 1, + STATE(8249), 1, sym_attribute_specifier, - [269582] = 6, + [275202] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(11061), 1, + ACTIONS(11108), 1, anon_sym_LBRACK, - STATE(3405), 1, + STATE(3510), 1, sym_parameter_list, - STATE(6049), 1, + STATE(6153), 1, sym__function_declarator_seq, - ACTIONS(10753), 2, + ACTIONS(10831), 2, anon_sym_LBRACE, anon_sym_requires, - [269602] = 6, + [275222] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9790), 1, - anon_sym_try, - ACTIONS(10966), 1, - anon_sym_LBRACE, - ACTIONS(11738), 1, - anon_sym_SEMI, - ACTIONS(11740), 1, - anon_sym_EQ, - STATE(1832), 2, - sym_compound_statement, - sym_try_statement, - [269622] = 3, + ACTIONS(6580), 1, + anon_sym_LT, + ACTIONS(11138), 1, + anon_sym_LBRACK, + STATE(6475), 1, + sym_template_argument_list, + ACTIONS(11134), 3, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + [275240] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11680), 2, + ACTIONS(11728), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(11682), 4, + ACTIONS(11730), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [269636] = 3, + [275254] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9843), 1, + anon_sym_DASH_GT, + ACTIONS(11798), 1, + anon_sym_LBRACE, + STATE(8076), 1, + sym_trailing_return_type, + STATE(6887), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [275274] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(894), 1, + anon_sym_LBRACE, + ACTIONS(10138), 1, + anon_sym_try, + ACTIONS(11820), 1, + anon_sym_SEMI, + ACTIONS(11822), 1, + anon_sym_EQ, + STATE(709), 2, + sym_compound_statement, + sym_try_statement, + [275294] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(866), 1, + anon_sym_LBRACE, + ACTIONS(10123), 1, + anon_sym_try, + ACTIONS(11824), 1, + anon_sym_SEMI, + ACTIONS(11826), 1, + anon_sym_EQ, + STATE(807), 2, + sym_compound_statement, + sym_try_statement, + [275314] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6426), 1, + anon_sym_LBRACK, + ACTIONS(6580), 1, + anon_sym_LT, + STATE(3998), 1, + sym_template_argument_list, + ACTIONS(6428), 3, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + [275332] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(11108), 1, + anon_sym_LBRACK, + STATE(3510), 1, + sym_parameter_list, + STATE(6153), 1, + sym__function_declarator_seq, + ACTIONS(10805), 2, + anon_sym_LBRACE, + anon_sym_requires, + [275352] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11227), 2, + ACTIONS(11279), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(11742), 4, + ACTIONS(11828), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [269650] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(11069), 1, - anon_sym_LBRACK, - ACTIONS(11067), 2, - anon_sym_RPAREN, - anon_sym_LPAREN2, - STATE(5795), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [269668] = 7, + [275366] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7147), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - ACTIONS(8483), 1, + ACTIONS(8521), 1, anon_sym_COMMA, - ACTIONS(11744), 1, + ACTIONS(11830), 1, anon_sym_SEMI, - STATE(6783), 1, + STATE(7033), 1, aux_sym_field_declaration_repeat1, - STATE(8112), 1, + STATE(8348), 1, sym_attribute_specifier, - [269690] = 7, + [275388] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7147), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - ACTIONS(8483), 1, + ACTIONS(8521), 1, anon_sym_COMMA, - ACTIONS(11746), 1, + ACTIONS(11832), 1, anon_sym_SEMI, - STATE(6864), 1, + STATE(6946), 1, aux_sym_field_declaration_repeat1, - STATE(7960), 1, + STATE(8327), 1, sym_attribute_specifier, - [269712] = 7, + [275410] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7147), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - ACTIONS(8483), 1, + ACTIONS(8521), 1, anon_sym_COMMA, - ACTIONS(11748), 1, + ACTIONS(11834), 1, anon_sym_SEMI, - STATE(6864), 1, + STATE(6918), 1, aux_sym_field_declaration_repeat1, - STATE(7961), 1, + STATE(8503), 1, sym_attribute_specifier, - [269734] = 7, + [275432] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7147), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - ACTIONS(8483), 1, + ACTIONS(8521), 1, anon_sym_COMMA, - ACTIONS(11750), 1, + ACTIONS(11836), 1, anon_sym_SEMI, - STATE(6864), 1, + STATE(7033), 1, aux_sym_field_declaration_repeat1, - STATE(8477), 1, + STATE(8206), 1, sym_attribute_specifier, - [269756] = 6, + [275454] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9782), 1, + ACTIONS(9810), 1, anon_sym_try, - ACTIONS(10958), 1, + ACTIONS(10666), 1, anon_sym_LBRACE, - ACTIONS(11752), 1, + ACTIONS(11838), 1, anon_sym_SEMI, - ACTIONS(11754), 1, + ACTIONS(11840), 1, anon_sym_EQ, - STATE(2132), 2, + STATE(2118), 2, sym_compound_statement, sym_try_statement, - [269776] = 3, + [275474] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11756), 2, - anon_sym_RBRACE, - sym_identifier, - ACTIONS(11758), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - [269790] = 7, + ACTIONS(6580), 1, + anon_sym_LT, + ACTIONS(11146), 1, + anon_sym_LBRACK, + STATE(6507), 1, + sym_template_argument_list, + ACTIONS(11144), 3, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + [275492] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9843), 1, + anon_sym_DASH_GT, + ACTIONS(10603), 1, + anon_sym_LBRACE, + STATE(8531), 1, + sym_trailing_return_type, + STATE(6889), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [275512] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7147), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - ACTIONS(8483), 1, + ACTIONS(8521), 1, anon_sym_COMMA, - ACTIONS(11760), 1, + ACTIONS(11842), 1, anon_sym_SEMI, - STATE(6864), 1, + STATE(6916), 1, aux_sym_field_declaration_repeat1, - STATE(7971), 1, + STATE(8198), 1, sym_attribute_specifier, - [269812] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(8028), 1, - sym_string_literal, - ACTIONS(119), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [269826] = 7, + [275534] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7147), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - ACTIONS(8483), 1, + ACTIONS(8521), 1, anon_sym_COMMA, - ACTIONS(11762), 1, + ACTIONS(11844), 1, anon_sym_SEMI, - STATE(6864), 1, + STATE(7033), 1, aux_sym_field_declaration_repeat1, - STATE(8071), 1, + STATE(8234), 1, sym_attribute_specifier, - [269848] = 7, + [275556] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7147), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - ACTIONS(8483), 1, + ACTIONS(8521), 1, anon_sym_COMMA, - ACTIONS(11764), 1, + ACTIONS(11846), 1, anon_sym_SEMI, - STATE(6864), 1, + STATE(7033), 1, aux_sym_field_declaration_repeat1, - STATE(8114), 1, + STATE(8913), 1, sym_attribute_specifier, - [269870] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9813), 1, - anon_sym_DASH_GT, - ACTIONS(10678), 1, - anon_sym_LBRACE, - STATE(8729), 1, - sym_trailing_return_type, - STATE(4776), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [269890] = 7, + [275578] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7147), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - ACTIONS(8483), 1, + ACTIONS(8521), 1, anon_sym_COMMA, - ACTIONS(11766), 1, + ACTIONS(11848), 1, anon_sym_SEMI, - STATE(6864), 1, + STATE(7033), 1, aux_sym_field_declaration_repeat1, - STATE(8393), 1, + STATE(8537), 1, sym_attribute_specifier, - [269912] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11768), 2, - anon_sym_RBRACE, - sym_identifier, - ACTIONS(11770), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - [269926] = 6, + [275600] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(11061), 1, + ACTIONS(11108), 1, anon_sym_LBRACK, - STATE(3405), 1, + STATE(3510), 1, sym_parameter_list, - STATE(6049), 1, + STATE(6153), 1, sym__function_declarator_seq, - ACTIONS(10761), 2, + ACTIONS(10784), 2, anon_sym_LBRACE, anon_sym_requires, - [269946] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7147), 1, - anon_sym___attribute__, - ACTIONS(8483), 1, - anon_sym_COMMA, - ACTIONS(11772), 1, - anon_sym_SEMI, - STATE(6864), 1, - aux_sym_field_declaration_repeat1, - STATE(8117), 1, - sym_attribute_specifier, - [269968] = 6, + [275620] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(894), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(10114), 1, + ACTIONS(10182), 1, anon_sym_try, - ACTIONS(11774), 1, + ACTIONS(11850), 1, anon_sym_SEMI, - ACTIONS(11776), 1, + ACTIONS(11852), 1, anon_sym_EQ, - STATE(711), 2, + STATE(610), 2, sym_compound_statement, sym_try_statement, - [269988] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6630), 1, - anon_sym_LT, - ACTIONS(11057), 1, - anon_sym_LBRACK, - STATE(6369), 1, - sym_template_argument_list, - ACTIONS(11053), 3, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - [270006] = 3, + [275640] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11778), 2, + ACTIONS(11854), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(11780), 4, + ACTIONS(11856), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [270020] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7147), 1, - anon_sym___attribute__, - ACTIONS(8483), 1, - anon_sym_COMMA, - ACTIONS(11782), 1, - anon_sym_SEMI, - STATE(6826), 1, - aux_sym_field_declaration_repeat1, - STATE(7999), 1, - sym_attribute_specifier, - [270042] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11560), 1, - aux_sym_preproc_elif_token1, - ACTIONS(11558), 5, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_identifier, - [270056] = 3, + [275654] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11784), 2, + ACTIONS(11858), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(11786), 4, + ACTIONS(11860), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [270070] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(10007), 1, - anon_sym_try, - ACTIONS(11788), 1, - anon_sym_SEMI, - ACTIONS(11790), 1, - anon_sym_EQ, - STATE(476), 2, - sym_compound_statement, - sym_try_statement, - [270090] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9790), 1, - anon_sym_try, - ACTIONS(10966), 1, - anon_sym_LBRACE, - ACTIONS(11792), 1, - anon_sym_SEMI, - ACTIONS(11794), 1, - anon_sym_EQ, - STATE(1802), 2, - sym_compound_statement, - sym_try_statement, - [270110] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(866), 1, - anon_sym_LBRACE, - ACTIONS(10148), 1, - anon_sym_try, - ACTIONS(11796), 1, - anon_sym_SEMI, - ACTIONS(11798), 1, - anon_sym_EQ, - STATE(660), 2, - sym_compound_statement, - sym_try_statement, - [270130] = 3, + [275668] = 3, ACTIONS(3), 1, sym_comment, - STATE(8278), 1, + STATE(8819), 1, sym_string_literal, ACTIONS(119), 5, anon_sym_L_DQUOTE, @@ -513354,20624 +521453,20807 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [270144] = 6, + [275682] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(11061), 1, + ACTIONS(11108), 1, anon_sym_LBRACK, - STATE(3405), 1, + ACTIONS(11862), 1, + anon_sym_RPAREN, + STATE(3113), 1, sym_parameter_list, - STATE(6049), 1, + STATE(6153), 1, sym__function_declarator_seq, - ACTIONS(10749), 2, - anon_sym_LBRACE, - anon_sym_requires, - [270164] = 3, + [275701] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11800), 2, - anon_sym_RBRACE, - sym_identifier, - ACTIONS(11802), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - [270178] = 6, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(7299), 1, + anon_sym___attribute__, + ACTIONS(11864), 1, + anon_sym_SEMI, + STATE(4306), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [275718] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9809), 1, - anon_sym_try, - ACTIONS(10948), 1, - anon_sym_LBRACE, - ACTIONS(11804), 1, + ACTIONS(8242), 1, + sym_auto, + ACTIONS(8244), 1, + anon_sym_decltype, + STATE(2483), 1, + sym_decltype_auto, + ACTIONS(11866), 2, + anon_sym_COMMA, + anon_sym_GT2, + [275735] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(7299), 1, + anon_sym___attribute__, + ACTIONS(11868), 1, anon_sym_SEMI, - ACTIONS(11806), 1, - anon_sym_EQ, - STATE(1952), 2, - sym_compound_statement, - sym_try_statement, - [270198] = 3, + STATE(6967), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [275752] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11768), 2, - anon_sym_RBRACE, - sym_identifier, - ACTIONS(11770), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - [270212] = 5, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(7299), 1, + anon_sym___attribute__, + ACTIONS(11870), 1, + anon_sym_SEMI, + STATE(7015), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [275769] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6513), 1, - anon_sym_LBRACK, - ACTIONS(7386), 1, - anon_sym_LT, - STATE(3962), 1, - sym_template_argument_list, - ACTIONS(6515), 3, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - [270230] = 7, + ACTIONS(11211), 1, + anon_sym_COMMA, + ACTIONS(11874), 1, + anon_sym___attribute, + STATE(7013), 1, + aux_sym__type_definition_declarators_repeat1, + ACTIONS(11872), 2, + anon_sym_SEMI, + anon_sym___attribute__, + [275786] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7147), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - ACTIONS(8483), 1, - anon_sym_COMMA, - ACTIONS(11808), 1, + ACTIONS(11876), 1, anon_sym_SEMI, - STATE(6792), 1, - aux_sym_field_declaration_repeat1, - STATE(8483), 1, + STATE(7002), 2, sym_attribute_specifier, - [270252] = 5, + aux_sym_type_definition_repeat1, + [275803] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6513), 1, - anon_sym_LBRACK, - ACTIONS(6630), 1, - anon_sym_LT, - STATE(3962), 1, - sym_template_argument_list, - ACTIONS(6515), 3, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - [270270] = 6, + ACTIONS(10909), 1, + sym_identifier, + ACTIONS(11878), 1, + aux_sym_preproc_if_token2, + STATE(6859), 1, + sym_enumerator, + STATE(7231), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(7236), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + [275822] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5472), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9813), 1, - anon_sym_DASH_GT, - ACTIONS(10678), 1, - anon_sym_LBRACE, - STATE(8729), 1, - sym_trailing_return_type, - STATE(6784), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [270290] = 7, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(7299), 1, + anon_sym___attribute__, + ACTIONS(11880), 1, + anon_sym_SEMI, + STATE(4306), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [275839] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7147), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - ACTIONS(8483), 1, + ACTIONS(11882), 1, + anon_sym_SEMI, + STATE(6977), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [275856] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8177), 1, + anon_sym_LPAREN2, + ACTIONS(11886), 1, + anon_sym_COLON_COLON, + STATE(7846), 1, + sym_argument_list, + ACTIONS(11884), 2, anon_sym_COMMA, - ACTIONS(11810), 1, + anon_sym_RBRACK_RBRACK, + [275873] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(7299), 1, + anon_sym___attribute__, + ACTIONS(11888), 1, anon_sym_SEMI, - STATE(6813), 1, - aux_sym_field_declaration_repeat1, - STATE(8753), 1, + STATE(4306), 2, sym_attribute_specifier, - [270312] = 7, + aux_sym_type_definition_repeat1, + [275890] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7147), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - ACTIONS(8483), 1, - anon_sym_COMMA, - ACTIONS(11812), 1, + ACTIONS(11890), 1, anon_sym_SEMI, - STATE(6814), 1, - aux_sym_field_declaration_repeat1, - STATE(8770), 1, + STATE(6965), 2, sym_attribute_specifier, - [270334] = 7, + aux_sym_type_definition_repeat1, + [275907] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7147), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - ACTIONS(8483), 1, - anon_sym_COMMA, - ACTIONS(11814), 1, + ACTIONS(11892), 1, anon_sym_SEMI, - STATE(6864), 1, - aux_sym_field_declaration_repeat1, - STATE(7969), 1, + STATE(4306), 2, sym_attribute_specifier, - [270356] = 5, + aux_sym_type_definition_repeat1, + [275924] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11894), 5, + anon_sym_LPAREN2, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + anon_sym___volatile__, + [275935] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7147), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - ACTIONS(11816), 1, + ACTIONS(11896), 1, anon_sym_SEMI, - STATE(6908), 2, + STATE(4306), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [270373] = 5, + [275952] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11900), 1, + anon_sym_DOT, + STATE(6971), 1, + aux_sym_module_name_repeat1, + ACTIONS(11898), 3, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + [275967] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11904), 1, + anon_sym_DOT, + STATE(6971), 1, + aux_sym_module_name_repeat1, + ACTIONS(11902), 3, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + [275982] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11422), 1, + anon_sym_COLON_COLON, + ACTIONS(11424), 1, + anon_sym_inline, + ACTIONS(11907), 1, + sym_identifier, + STATE(8608), 1, + sym_nested_namespace_specifier, + STATE(8622), 1, + sym__namespace_specifier, + [276001] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6300), 1, + anon_sym_LBRACE, + ACTIONS(11909), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11911), 2, + anon_sym_AMP_AMP, + anon_sym_and, + [276016] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(11913), 1, + sym_identifier, + STATE(1923), 1, + sym_template_type, + STATE(2423), 1, + sym_template_method, + STATE(7753), 1, + sym_operator_name, + [276035] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7147), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - ACTIONS(11818), 1, + ACTIONS(11915), 1, anon_sym_SEMI, - STATE(6929), 2, + STATE(7001), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [270390] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9333), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9337), 1, - anon_sym_EQ, - ACTIONS(11820), 1, - sym_identifier, - ACTIONS(9335), 2, - anon_sym_COMMA, - anon_sym_GT2, - [270407] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11392), 1, - anon_sym_COLON_COLON, - ACTIONS(11394), 1, - anon_sym_inline, - ACTIONS(11822), 1, - sym_identifier, - STATE(7980), 1, - sym__namespace_specifier, - STATE(8354), 1, - sym_nested_namespace_specifier, - [270426] = 6, + [276052] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1852), 1, + ACTIONS(1850), 1, anon_sym_operator, - ACTIONS(11824), 1, + ACTIONS(11913), 1, sym_identifier, - STATE(1910), 1, + STATE(1923), 1, sym_template_type, - STATE(3437), 1, + STATE(2423), 1, sym_template_method, - STATE(7892), 1, + STATE(7806), 1, sym_operator_name, - [270445] = 5, + [276071] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7147), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - ACTIONS(11826), 1, + ACTIONS(11917), 1, anon_sym_SEMI, - STATE(4249), 2, + STATE(4306), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [270462] = 5, + [276088] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7147), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - ACTIONS(11828), 1, + ACTIONS(11919), 1, anon_sym_SEMI, - STATE(4249), 2, + STATE(4306), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [270479] = 5, + [276105] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4167), 1, - anon_sym_COLON_COLON, - ACTIONS(6630), 1, - anon_sym_LT, - STATE(1604), 1, - sym_template_argument_list, - ACTIONS(4965), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [270496] = 5, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(7299), 1, + anon_sym___attribute__, + ACTIONS(11921), 1, + anon_sym_SEMI, + STATE(6955), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [276122] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7147), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - ACTIONS(11830), 1, + ACTIONS(11923), 1, anon_sym_SEMI, - STATE(6885), 2, + STATE(4306), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [270513] = 6, + [276139] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(8177), 1, anon_sym_LPAREN2, - ACTIONS(10753), 1, - anon_sym_COLON, - ACTIONS(11061), 1, - anon_sym_LBRACK, - STATE(3485), 1, - sym_parameter_list, - STATE(6049), 1, - sym__function_declarator_seq, - [270532] = 5, + ACTIONS(11927), 1, + anon_sym_COLON_COLON, + STATE(7946), 1, + sym_argument_list, + ACTIONS(11925), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [276156] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7147), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - ACTIONS(11832), 1, + ACTIONS(11929), 1, anon_sym_SEMI, - STATE(6898), 2, + STATE(6969), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [270549] = 3, + [276173] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11836), 1, - anon_sym_COLON_COLON, - ACTIONS(11834), 4, - anon_sym_virtual, + ACTIONS(9321), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9325), 1, + anon_sym_EQ, + ACTIONS(11931), 1, sym_identifier, - anon_sym_decltype, - anon_sym_template, - [270562] = 6, + ACTIONS(9323), 2, + anon_sym_COMMA, + anon_sym_GT2, + [276190] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11392), 1, + ACTIONS(4187), 1, anon_sym_COLON_COLON, - ACTIONS(11394), 1, - anon_sym_inline, - ACTIONS(11838), 1, - sym_identifier, - STATE(7980), 1, - sym__namespace_specifier, - STATE(8341), 1, - sym_nested_namespace_specifier, - [270581] = 4, + ACTIONS(6580), 1, + anon_sym_LT, + STATE(1624), 1, + sym_template_argument_list, + ACTIONS(4927), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [276207] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11842), 1, - anon_sym_DOT, - STATE(6872), 1, - aux_sym_module_name_repeat1, - ACTIONS(11840), 3, + ACTIONS(11933), 2, + anon_sym_class, + anon_sym_typename, + STATE(7954), 3, + sym_type_parameter_declaration, + sym_variadic_type_parameter_declaration, + sym_optional_type_parameter_declaration, + [276220] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(7299), 1, + anon_sym___attribute__, + ACTIONS(11935), 1, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - [270596] = 6, + STATE(7006), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [276237] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1852), 1, + ACTIONS(1850), 1, anon_sym_operator, - ACTIONS(11844), 1, + ACTIONS(11937), 1, sym_identifier, - STATE(1910), 1, + STATE(1923), 1, sym_template_type, - STATE(2405), 1, + STATE(3576), 1, sym_template_method, - STATE(7748), 1, + STATE(7928), 1, sym_operator_name, - [270615] = 6, + [276256] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(10745), 1, + ACTIONS(10760), 1, anon_sym_COLON, - ACTIONS(11061), 1, + ACTIONS(11108), 1, anon_sym_LBRACK, - STATE(3485), 1, + STATE(3538), 1, sym_parameter_list, - STATE(6049), 1, + STATE(6153), 1, sym__function_declarator_seq, - [270634] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11846), 1, - anon_sym_COMMA, - ACTIONS(11851), 1, - anon_sym___attribute, - STATE(6864), 1, - aux_sym_field_declaration_repeat1, - ACTIONS(11849), 2, - anon_sym_SEMI, - anon_sym___attribute__, - [270651] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11853), 1, - anon_sym_COMMA, - ACTIONS(11858), 1, - anon_sym___attribute, - STATE(6865), 1, - aux_sym__type_definition_declarators_repeat1, - ACTIONS(11856), 2, - anon_sym_SEMI, - anon_sym___attribute__, - [270668] = 5, + [276275] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7147), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - ACTIONS(11860), 1, + ACTIONS(11939), 1, anon_sym_SEMI, - STATE(6900), 2, + STATE(6998), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [270685] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8147), 1, - anon_sym_LPAREN2, - ACTIONS(11864), 1, - anon_sym_COLON_COLON, - STATE(7908), 1, - sym_argument_list, - ACTIONS(11862), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [270702] = 6, + [276292] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(10749), 1, + ACTIONS(10801), 1, anon_sym_COLON, - ACTIONS(11061), 1, - anon_sym_LBRACK, - STATE(3485), 1, - sym_parameter_list, - STATE(6049), 1, - sym__function_declarator_seq, - [270721] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11866), 2, - anon_sym_class, - anon_sym_typename, - STATE(7730), 3, - sym_type_parameter_declaration, - sym_variadic_type_parameter_declaration, - sym_optional_type_parameter_declaration, - [270734] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - ACTIONS(11061), 1, + ACTIONS(11108), 1, anon_sym_LBRACK, - ACTIONS(11868), 1, - anon_sym_RPAREN, - STATE(3004), 1, + STATE(3538), 1, sym_parameter_list, - STATE(6049), 1, + STATE(6153), 1, sym__function_declarator_seq, - [270753] = 5, + [276311] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7147), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - ACTIONS(11870), 1, + ACTIONS(11941), 1, anon_sym_SEMI, - STATE(4249), 2, + STATE(4306), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [270770] = 4, + [276328] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11874), 1, - anon_sym_DOT, - STATE(6872), 1, - aux_sym_module_name_repeat1, - ACTIONS(11872), 3, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - [270785] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - ACTIONS(10761), 1, + ACTIONS(11322), 1, anon_sym_COLON, - ACTIONS(11061), 1, - anon_sym_LBRACK, - STATE(3485), 1, - sym_parameter_list, - STATE(6049), 1, - sym__function_declarator_seq, - [270804] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6513), 1, - anon_sym_LBRACK, - ACTIONS(6630), 1, - anon_sym_LT, - STATE(3695), 1, - sym_template_argument_list, - ACTIONS(6515), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - [270821] = 6, + ACTIONS(11943), 1, + anon_sym_SEMI, + STATE(7549), 1, + sym_module_partition, + STATE(8419), 1, + sym_attribute_declaration, + [276347] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11392), 1, + ACTIONS(11422), 1, anon_sym_COLON_COLON, - ACTIONS(11394), 1, + ACTIONS(11424), 1, anon_sym_inline, - ACTIONS(11877), 1, + ACTIONS(11945), 1, sym_identifier, - STATE(7980), 1, + STATE(8622), 1, sym__namespace_specifier, - STATE(8246), 1, + STATE(8750), 1, sym_nested_namespace_specifier, - [270840] = 6, + [276366] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11392), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(7299), 1, + anon_sym___attribute__, + ACTIONS(11947), 1, + anon_sym_SEMI, + STATE(4306), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [276383] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11422), 1, anon_sym_COLON_COLON, - ACTIONS(11394), 1, + ACTIONS(11424), 1, anon_sym_inline, - ACTIONS(11879), 1, + ACTIONS(11949), 1, sym_identifier, - STATE(7980), 1, + STATE(7600), 1, sym__namespace_specifier, - STATE(7982), 1, + STATE(7969), 1, sym_nested_namespace_specifier, - [270859] = 5, + [276402] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4167), 1, - anon_sym_COLON_COLON, - ACTIONS(6630), 1, - anon_sym_LT, - STATE(2324), 1, - sym_template_argument_list, - ACTIONS(6312), 2, + ACTIONS(9798), 1, anon_sym_LPAREN2, - anon_sym_LBRACE, - [270876] = 3, + ACTIONS(10831), 1, + anon_sym_COLON, + ACTIONS(11108), 1, + anon_sym_LBRACK, + STATE(3538), 1, + sym_parameter_list, + STATE(6153), 1, + sym__function_declarator_seq, + [276421] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11881), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(6180), 3, - anon_sym_PIPE_PIPE, - anon_sym_LBRACE, - anon_sym_or, - [270889] = 6, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(7299), 1, + anon_sym___attribute__, + ACTIONS(11951), 1, + anon_sym_SEMI, + STATE(6962), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [276438] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(7299), 1, + anon_sym___attribute__, + ACTIONS(11953), 1, + anon_sym_SEMI, + STATE(4306), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [276455] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(10765), 1, + ACTIONS(10750), 1, anon_sym_COLON, - ACTIONS(11061), 1, + ACTIONS(11108), 1, anon_sym_LBRACK, - STATE(3485), 1, + STATE(3538), 1, sym_parameter_list, - STATE(6049), 1, + STATE(6153), 1, sym__function_declarator_seq, - [270908] = 6, + [276474] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11392), 1, + ACTIONS(11422), 1, anon_sym_COLON_COLON, - ACTIONS(11394), 1, + ACTIONS(11424), 1, anon_sym_inline, - ACTIONS(11883), 1, + ACTIONS(11949), 1, sym_identifier, - STATE(7392), 1, + STATE(7635), 1, sym__namespace_specifier, - STATE(7698), 1, + STATE(7999), 1, sym_nested_namespace_specifier, - [270927] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6255), 1, - anon_sym_LBRACE, - ACTIONS(11881), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(11885), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - [270942] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(11887), 1, - sym_identifier, - STATE(1910), 1, - sym_template_type, - STATE(3581), 1, - sym_template_method, - STATE(7745), 1, - sym_operator_name, - [270961] = 5, + [276493] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7147), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - ACTIONS(11889), 1, + ACTIONS(11955), 1, anon_sym_SEMI, - STATE(6894), 2, + STATE(4306), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [270978] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11392), 1, - anon_sym_COLON_COLON, - ACTIONS(11394), 1, - anon_sym_inline, - ACTIONS(11883), 1, - sym_identifier, - STATE(7297), 1, - sym__namespace_specifier, - STATE(7596), 1, - sym_nested_namespace_specifier, - [270997] = 5, + [276510] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7147), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - ACTIONS(11891), 1, + ACTIONS(11957), 1, anon_sym_SEMI, - STATE(4249), 2, + STATE(4306), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [271014] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - ACTIONS(10731), 1, - anon_sym_COLON, - ACTIONS(11061), 1, - anon_sym_LBRACK, - STATE(3485), 1, - sym_parameter_list, - STATE(6049), 1, - sym__function_declarator_seq, - [271033] = 5, + [276527] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7147), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - ACTIONS(11893), 1, + ACTIONS(11959), 1, anon_sym_SEMI, - STATE(4249), 2, + STATE(7011), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [271050] = 5, + [276544] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6513), 1, - anon_sym_LBRACK, - ACTIONS(6630), 1, - anon_sym_LT, - STATE(4226), 1, - sym_template_argument_list, - ACTIONS(6515), 2, + ACTIONS(9798), 1, anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - [271067] = 2, + ACTIONS(10784), 1, + anon_sym_COLON, + ACTIONS(11108), 1, + anon_sym_LBRACK, + STATE(3538), 1, + sym_parameter_list, + STATE(6153), 1, + sym__function_declarator_seq, + [276563] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11895), 5, - anon_sym_LPAREN2, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - anon_sym___volatile__, - [271078] = 5, + ACTIONS(11963), 1, + anon_sym_COLON_COLON, + ACTIONS(11961), 4, + anon_sym_virtual, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + [276576] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7147), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - ACTIONS(11897), 1, + ACTIONS(11965), 1, anon_sym_SEMI, - STATE(4249), 2, + STATE(4306), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [271095] = 6, + [276593] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10889), 1, - sym_identifier, - ACTIONS(11899), 1, - aux_sym_preproc_if_token2, - STATE(6732), 1, - sym_enumerator, - STATE(7058), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(7059), 1, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - [271114] = 6, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(10813), 1, + anon_sym_COLON, + ACTIONS(11108), 1, + anon_sym_LBRACK, + STATE(3538), 1, + sym_parameter_list, + STATE(6153), 1, + sym__function_declarator_seq, + [276612] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(11901), 1, + ACTIONS(11422), 1, + anon_sym_COLON_COLON, + ACTIONS(11424), 1, + anon_sym_inline, + ACTIONS(11967), 1, sym_identifier, - STATE(1910), 1, - sym_template_type, - STATE(2405), 1, - sym_template_method, - STATE(7700), 1, - sym_operator_name, - [271133] = 5, + STATE(8534), 1, + sym_nested_namespace_specifier, + STATE(8622), 1, + sym__namespace_specifier, + [276631] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7147), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - ACTIONS(11903), 1, + ACTIONS(11969), 1, anon_sym_SEMI, - STATE(4249), 2, + STATE(6978), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [271150] = 5, + [276648] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7147), 1, - anon_sym___attribute__, - ACTIONS(11905), 1, - anon_sym_SEMI, - STATE(4249), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [271167] = 5, + ACTIONS(6426), 1, + anon_sym_LBRACK, + ACTIONS(6580), 1, + anon_sym_LT, + STATE(4297), 1, + sym_template_argument_list, + ACTIONS(6428), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + [276665] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7147), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - ACTIONS(11907), 1, + ACTIONS(11971), 1, anon_sym_SEMI, - STATE(6902), 2, + STATE(4306), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [271184] = 6, + [276682] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(11235), 1, - anon_sym_COLON, - ACTIONS(11909), 1, - anon_sym_SEMI, - STATE(7324), 1, - sym_module_partition, - STATE(8142), 1, - sym_attribute_declaration, - [271203] = 5, + ACTIONS(8242), 1, + sym_auto, + ACTIONS(8244), 1, + anon_sym_decltype, + STATE(2483), 1, + sym_decltype_auto, + ACTIONS(11973), 2, + anon_sym_COMMA, + anon_sym_GT2, + [276699] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11197), 1, + ACTIONS(11975), 1, anon_sym_COMMA, - ACTIONS(11913), 1, + ACTIONS(11980), 1, anon_sym___attribute, - STATE(6865), 1, + STATE(7013), 1, aux_sym__type_definition_declarators_repeat1, - ACTIONS(11911), 2, + ACTIONS(11978), 2, anon_sym_SEMI, anon_sym___attribute__, - [271220] = 5, + [276716] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7147), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - ACTIONS(11915), 1, + ACTIONS(11982), 1, anon_sym_SEMI, - STATE(4249), 2, + STATE(6994), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [271237] = 5, + [276733] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7147), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - ACTIONS(11917), 1, + ACTIONS(11984), 1, anon_sym_SEMI, - STATE(6922), 2, + STATE(4306), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [271254] = 5, + [276750] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7147), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - ACTIONS(11919), 1, + ACTIONS(11986), 1, anon_sym_SEMI, - STATE(4249), 2, + STATE(4306), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [271271] = 5, + [276767] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7147), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - ACTIONS(11921), 1, + ACTIONS(11988), 1, anon_sym_SEMI, - STATE(6853), 2, + STATE(4306), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [271288] = 5, + [276784] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7147), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - ACTIONS(11923), 1, + ACTIONS(11990), 1, anon_sym_SEMI, - STATE(4249), 2, + STATE(7016), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [271305] = 6, + [276801] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(10741), 1, - anon_sym_COLON, - ACTIONS(11061), 1, + ACTIONS(11108), 1, anon_sym_LBRACK, - STATE(3485), 1, + ACTIONS(11992), 1, + anon_sym_RPAREN, + STATE(3113), 1, sym_parameter_list, - STATE(6049), 1, + STATE(6153), 1, sym__function_declarator_seq, - [271324] = 6, + [276820] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(11900), 1, + anon_sym_DOT, + STATE(6970), 1, + aux_sym_module_name_repeat1, + ACTIONS(11994), 3, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + [276835] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6426), 1, + anon_sym_LBRACK, + ACTIONS(6580), 1, + anon_sym_LT, + STATE(3803), 1, + sym_template_argument_list, + ACTIONS(6428), 2, anon_sym_LPAREN2, - ACTIONS(11061), 1, + anon_sym_LBRACK_LBRACK, + [276852] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(11108), 1, anon_sym_LBRACK, - ACTIONS(11925), 1, + ACTIONS(11996), 1, anon_sym_RPAREN, - STATE(3004), 1, + STATE(3113), 1, sym_parameter_list, - STATE(6049), 1, + STATE(6153), 1, sym__function_declarator_seq, - [271343] = 6, + [276871] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(10757), 1, - anon_sym_COLON, - ACTIONS(11061), 1, + ACTIONS(11108), 1, anon_sym_LBRACK, - STATE(3485), 1, + ACTIONS(11998), 1, + anon_sym_RPAREN, + STATE(3113), 1, sym_parameter_list, - STATE(6049), 1, + STATE(6153), 1, sym__function_declarator_seq, - [271362] = 5, + [276890] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7147), 1, - anon_sym___attribute__, - ACTIONS(11927), 1, - anon_sym_SEMI, - STATE(6854), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [271379] = 5, + ACTIONS(4187), 1, + anon_sym_COLON_COLON, + ACTIONS(6580), 1, + anon_sym_LT, + STATE(2361), 1, + sym_template_argument_list, + ACTIONS(6354), 2, + anon_sym_LPAREN2, + anon_sym_LBRACE, + [276907] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7147), 1, - anon_sym___attribute__, - ACTIONS(11929), 1, - anon_sym_SEMI, - STATE(6871), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [271396] = 5, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(12000), 1, + sym_identifier, + STATE(1923), 1, + sym_template_type, + STATE(2423), 1, + sym_template_method, + STATE(7923), 1, + sym_operator_name, + [276926] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7147), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - ACTIONS(11931), 1, + ACTIONS(12002), 1, anon_sym_SEMI, - STATE(4249), 2, + STATE(6991), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [271413] = 5, + [276943] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7147), 1, - anon_sym___attribute__, - ACTIONS(11933), 1, - anon_sym_SEMI, - STATE(6911), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [271430] = 5, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + ACTIONS(10817), 1, + anon_sym_COLON, + ACTIONS(11108), 1, + anon_sym_LBRACK, + STATE(3538), 1, + sym_parameter_list, + STATE(6153), 1, + sym__function_declarator_seq, + [276962] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7147), 1, - anon_sym___attribute__, - ACTIONS(11935), 1, + ACTIONS(11422), 1, + anon_sym_COLON_COLON, + ACTIONS(11424), 1, + anon_sym_inline, + ACTIONS(12004), 1, + sym_identifier, + STATE(8622), 1, + sym__namespace_specifier, + STATE(8699), 1, + sym_nested_namespace_specifier, + [276981] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11322), 1, + anon_sym_COLON, + ACTIONS(12006), 1, anon_sym_SEMI, - STATE(4249), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [271447] = 5, + STATE(7386), 1, + sym_module_partition, + STATE(8540), 1, + sym_attribute_declaration, + [277000] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7147), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - ACTIONS(11937), 1, + ACTIONS(12008), 1, anon_sym_SEMI, - STATE(4249), 2, + STATE(7017), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [271464] = 5, + [277017] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(12010), 1, + sym_identifier, + STATE(1923), 1, + sym_template_type, + STATE(3628), 1, + sym_template_method, + STATE(7702), 1, + sym_operator_name, + [277036] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7147), 1, + ACTIONS(7299), 1, anon_sym___attribute__, - ACTIONS(11939), 1, + ACTIONS(12012), 1, anon_sym_SEMI, - STATE(6890), 2, + STATE(6980), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [271481] = 5, + [277053] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(12014), 1, + anon_sym_COMMA, + ACTIONS(12019), 1, anon_sym___attribute, - ACTIONS(7147), 1, - anon_sym___attribute__, - ACTIONS(11941), 1, + STATE(7033), 1, + aux_sym_field_declaration_repeat1, + ACTIONS(12017), 2, anon_sym_SEMI, - STATE(6893), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [271498] = 5, + anon_sym___attribute__, + [277070] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8147), 1, - anon_sym_LPAREN2, - ACTIONS(11945), 1, - anon_sym_COLON_COLON, - STATE(7849), 1, - sym_argument_list, - ACTIONS(11943), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [271515] = 6, + ACTIONS(11911), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6250), 3, + anon_sym_PIPE_PIPE, + anon_sym_LBRACE, + anon_sym_or, + [277083] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(11061), 1, + ACTIONS(10805), 1, + anon_sym_COLON, + ACTIONS(11108), 1, anon_sym_LBRACK, - ACTIONS(11947), 1, - anon_sym_RPAREN, - STATE(3004), 1, + STATE(3538), 1, sym_parameter_list, - STATE(6049), 1, + STATE(6153), 1, sym__function_declarator_seq, - [271534] = 6, + [277102] = 4, + ACTIONS(10057), 1, + sym_comment, + ACTIONS(12021), 1, + anon_sym_SQUOTE, + STATE(7120), 1, + aux_sym_char_literal_repeat1, + ACTIONS(12023), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [277116] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(11235), 1, - anon_sym_COLON, - ACTIONS(11949), 1, + ACTIONS(4187), 1, + anon_sym_COLON_COLON, + ACTIONS(6580), 1, + anon_sym_LT, + ACTIONS(12025), 1, anon_sym_SEMI, - STATE(7271), 1, - sym_module_partition, - STATE(8732), 1, - sym_attribute_declaration, - [271553] = 5, + STATE(1623), 1, + sym_template_argument_list, + [277132] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8209), 1, - sym_auto, - ACTIONS(8211), 1, - anon_sym_decltype, - STATE(2504), 1, - sym_decltype_auto, - ACTIONS(11951), 2, + ACTIONS(4187), 1, + anon_sym_COLON_COLON, + ACTIONS(6580), 1, + anon_sym_LT, + ACTIONS(12027), 1, + anon_sym_SEMI, + STATE(1623), 1, + sym_template_argument_list, + [277148] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11085), 1, + sym_identifier, + ACTIONS(11878), 1, + aux_sym_preproc_if_token2, + STATE(7231), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(8369), 1, + sym_enumerator, + [277164] = 5, + ACTIONS(10057), 1, + sym_comment, + ACTIONS(12029), 1, + anon_sym_DQUOTE, + ACTIONS(12031), 1, + aux_sym_string_literal_token1, + ACTIONS(12033), 1, + sym_escape_sequence, + STATE(7044), 1, + aux_sym_string_literal_repeat1, + [277180] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12035), 1, anon_sym_COMMA, - anon_sym_GT2, - [271570] = 5, + STATE(7041), 1, + aux_sym_gnu_asm_clobber_list_repeat1, + ACTIONS(12038), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [277194] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7147), 1, - anon_sym___attribute__, - ACTIONS(11953), 1, - anon_sym_SEMI, - STATE(6919), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [271587] = 5, + ACTIONS(5563), 1, + anon_sym_COLON, + ACTIONS(6588), 1, + anon_sym_LBRACE, + STATE(2899), 1, + sym_field_declaration_list, + STATE(7787), 1, + sym_base_class_clause, + [277210] = 4, + ACTIONS(10057), 1, + sym_comment, + ACTIONS(12040), 1, + anon_sym_SQUOTE, + STATE(7120), 1, + aux_sym_char_literal_repeat1, + ACTIONS(12023), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [277224] = 5, + ACTIONS(10057), 1, + sym_comment, + ACTIONS(12042), 1, + anon_sym_DQUOTE, + ACTIONS(12044), 1, + aux_sym_string_literal_token1, + ACTIONS(12046), 1, + sym_escape_sequence, + STATE(7124), 1, + aux_sym_string_literal_repeat1, + [277240] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7147), 1, - anon_sym___attribute__, - ACTIONS(11955), 1, - anon_sym_SEMI, - STATE(4249), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [271604] = 5, + ACTIONS(5034), 1, + anon_sym_LT, + ACTIONS(12048), 1, + sym_identifier, + STATE(849), 1, + sym_template_parameter_list, + STATE(1923), 1, + sym_template_type, + [277256] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7147), 1, - anon_sym___attribute__, - ACTIONS(11957), 1, - anon_sym_SEMI, - STATE(6887), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [271621] = 5, + ACTIONS(5563), 1, + anon_sym_COLON, + ACTIONS(6588), 1, + anon_sym_LBRACE, + STATE(2897), 1, + sym_field_declaration_list, + STATE(7833), 1, + sym_base_class_clause, + [277272] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7147), 1, - anon_sym___attribute__, - ACTIONS(11959), 1, - anon_sym_SEMI, - STATE(6910), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [271638] = 5, + ACTIONS(8742), 1, + anon_sym_COMMA, + ACTIONS(12050), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12052), 1, + anon_sym_GT2, + STATE(7653), 1, + aux_sym_template_argument_list_repeat1, + [277288] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7147), 1, - anon_sym___attribute__, - ACTIONS(11961), 1, - anon_sym_SEMI, - STATE(4249), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [271655] = 4, + ACTIONS(10909), 1, + sym_identifier, + ACTIONS(12054), 1, + aux_sym_preproc_if_token2, + STATE(7236), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + [277302] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11842), 1, - anon_sym_DOT, - STATE(6861), 1, - aux_sym_module_name_repeat1, - ACTIONS(11963), 3, - anon_sym_SEMI, + ACTIONS(5563), 1, anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - [271670] = 5, + ACTIONS(6035), 1, + anon_sym_LBRACE, + STATE(2366), 1, + sym_field_declaration_list, + STATE(7746), 1, + sym_base_class_clause, + [277318] = 5, + ACTIONS(10057), 1, + sym_comment, + ACTIONS(12056), 1, + anon_sym_DQUOTE, + ACTIONS(12058), 1, + aux_sym_string_literal_token1, + ACTIONS(12060), 1, + sym_escape_sequence, + STATE(7052), 1, + aux_sym_string_literal_repeat1, + [277334] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7147), 1, - anon_sym___attribute__, - ACTIONS(11965), 1, - anon_sym_SEMI, - STATE(4249), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [271687] = 5, + ACTIONS(5563), 1, + anon_sym_COLON, + ACTIONS(8906), 1, + anon_sym_LBRACE, + STATE(4957), 1, + sym_field_declaration_list, + STATE(7994), 1, + sym_base_class_clause, + [277350] = 5, + ACTIONS(10057), 1, + sym_comment, + ACTIONS(12044), 1, + aux_sym_string_literal_token1, + ACTIONS(12046), 1, + sym_escape_sequence, + ACTIONS(12062), 1, + anon_sym_DQUOTE, + STATE(7124), 1, + aux_sym_string_literal_repeat1, + [277366] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8209), 1, - sym_auto, - ACTIONS(8211), 1, - anon_sym_decltype, - STATE(2504), 1, - sym_decltype_auto, - ACTIONS(11967), 2, + ACTIONS(12064), 1, + anon_sym_LPAREN2, + ACTIONS(12066), 1, + anon_sym_LBRACE, + STATE(6004), 1, + sym_requirement_seq, + STATE(7929), 1, + sym_requires_parameter_list, + [277382] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5563), 1, + anon_sym_COLON, + ACTIONS(8906), 1, + anon_sym_LBRACE, + STATE(4961), 1, + sym_field_declaration_list, + STATE(8031), 1, + sym_base_class_clause, + [277398] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8742), 1, anon_sym_COMMA, + ACTIONS(12050), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12068), 1, anon_sym_GT2, - [271704] = 6, + STATE(7316), 1, + aux_sym_template_argument_list_repeat1, + [277414] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(11901), 1, - sym_identifier, - STATE(1910), 1, - sym_template_type, - STATE(2405), 1, - sym_template_method, - STATE(7632), 1, - sym_operator_name, - [271723] = 5, + ACTIONS(8742), 1, + anon_sym_COMMA, + ACTIONS(12050), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12070), 1, + anon_sym_GT2, + STATE(7368), 1, + aux_sym_template_argument_list_repeat1, + [277430] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7147), 1, - anon_sym___attribute__, - ACTIONS(11969), 1, + ACTIONS(12072), 4, anon_sym_SEMI, - STATE(6924), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [271740] = 6, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [277440] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - ACTIONS(11061), 1, - anon_sym_LBRACK, - ACTIONS(11971), 1, + ACTIONS(12074), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12076), 1, + anon_sym_COMMA, + ACTIONS(12078), 1, + anon_sym_LBRACE, + STATE(7393), 1, + aux_sym_base_class_clause_repeat1, + [277456] = 5, + ACTIONS(10057), 1, + sym_comment, + ACTIONS(12080), 1, + anon_sym_DQUOTE, + ACTIONS(12082), 1, + aux_sym_string_literal_token1, + ACTIONS(12084), 1, + sym_escape_sequence, + STATE(7063), 1, + aux_sym_string_literal_repeat1, + [277472] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12086), 1, + anon_sym_COMMA, + STATE(7110), 1, + aux_sym_gnu_asm_output_operand_list_repeat1, + ACTIONS(12088), 2, anon_sym_RPAREN, - STATE(3004), 1, - sym_parameter_list, - STATE(6049), 1, - sym__function_declarator_seq, - [271759] = 5, + anon_sym_COLON, + [277486] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7147), 1, - anon_sym___attribute__, - ACTIONS(11973), 1, - anon_sym_SEMI, - STATE(4249), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [271776] = 5, + ACTIONS(5563), 1, + anon_sym_COLON, + ACTIONS(7543), 1, + anon_sym_LBRACE, + STATE(4006), 1, + sym_field_declaration_list, + STATE(7732), 1, + sym_base_class_clause, + [277502] = 4, + ACTIONS(10057), 1, + sym_comment, + ACTIONS(12090), 1, + anon_sym_SQUOTE, + STATE(7120), 1, + aux_sym_char_literal_repeat1, + ACTIONS(12023), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [277516] = 5, + ACTIONS(10057), 1, + sym_comment, + ACTIONS(12044), 1, + aux_sym_string_literal_token1, + ACTIONS(12046), 1, + sym_escape_sequence, + ACTIONS(12092), 1, + anon_sym_DQUOTE, + STATE(7124), 1, + aux_sym_string_literal_repeat1, + [277532] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5499), 1, + ACTIONS(5563), 1, anon_sym_COLON, - ACTIONS(6018), 1, + ACTIONS(7543), 1, anon_sym_LBRACE, - STATE(2330), 1, + STATE(4019), 1, sym_field_declaration_list, - STATE(7597), 1, + STATE(7744), 1, sym_base_class_clause, - [271792] = 5, + [277548] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4167), 1, - anon_sym_COLON_COLON, - ACTIONS(6630), 1, + ACTIONS(8742), 1, + anon_sym_COMMA, + ACTIONS(12050), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12094), 1, + anon_sym_GT2, + STATE(7381), 1, + aux_sym_template_argument_list_repeat1, + [277564] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6580), 1, anon_sym_LT, - ACTIONS(11975), 1, - anon_sym_SEMI, - STATE(1603), 1, + STATE(1624), 1, sym_template_argument_list, - [271808] = 4, + ACTIONS(6428), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [277578] = 5, + ACTIONS(10057), 1, + sym_comment, + ACTIONS(12096), 1, + anon_sym_DQUOTE, + ACTIONS(12098), 1, + aux_sym_string_literal_token1, + ACTIONS(12100), 1, + sym_escape_sequence, + STATE(7069), 1, + aux_sym_string_literal_repeat1, + [277594] = 4, + ACTIONS(10057), 1, + sym_comment, + ACTIONS(12102), 1, + anon_sym_SQUOTE, + STATE(7120), 1, + aux_sym_char_literal_repeat1, + ACTIONS(12023), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [277608] = 5, + ACTIONS(10057), 1, + sym_comment, + ACTIONS(12044), 1, + aux_sym_string_literal_token1, + ACTIONS(12046), 1, + sym_escape_sequence, + ACTIONS(12104), 1, + anon_sym_DQUOTE, + STATE(7124), 1, + aux_sym_string_literal_repeat1, + [277624] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11977), 1, - anon_sym___except, - ACTIONS(11979), 1, - anon_sym___finally, - STATE(592), 2, - sym_seh_except_clause, - sym_seh_finally_clause, - [271822] = 5, + ACTIONS(8742), 1, + anon_sym_COMMA, + ACTIONS(12050), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12106), 1, + anon_sym_GT2, + STATE(7431), 1, + aux_sym_template_argument_list_repeat1, + [277640] = 5, + ACTIONS(10057), 1, + sym_comment, + ACTIONS(12108), 1, + anon_sym_DQUOTE, + ACTIONS(12110), 1, + aux_sym_string_literal_token1, + ACTIONS(12112), 1, + sym_escape_sequence, + STATE(7103), 1, + aux_sym_string_literal_repeat1, + [277656] = 5, + ACTIONS(10057), 1, + sym_comment, + ACTIONS(12114), 1, + anon_sym_DQUOTE, + ACTIONS(12116), 1, + aux_sym_string_literal_token1, + ACTIONS(12118), 1, + sym_escape_sequence, + STATE(7075), 1, + aux_sym_string_literal_repeat1, + [277672] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8707), 1, + ACTIONS(12072), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [277682] = 4, + ACTIONS(10057), 1, + sym_comment, + ACTIONS(12120), 1, + anon_sym_SQUOTE, + STATE(7120), 1, + aux_sym_char_literal_repeat1, + ACTIONS(12023), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [277696] = 5, + ACTIONS(10057), 1, + sym_comment, + ACTIONS(12044), 1, + aux_sym_string_literal_token1, + ACTIONS(12046), 1, + sym_escape_sequence, + ACTIONS(12122), 1, + anon_sym_DQUOTE, + STATE(7124), 1, + aux_sym_string_literal_repeat1, + [277712] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8742), 1, + anon_sym_COMMA, + ACTIONS(12050), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12124), 1, + anon_sym_GT2, + STATE(7495), 1, + aux_sym_template_argument_list_repeat1, + [277728] = 5, + ACTIONS(10057), 1, + sym_comment, + ACTIONS(12126), 1, + anon_sym_DQUOTE, + ACTIONS(12128), 1, + aux_sym_string_literal_token1, + ACTIONS(12130), 1, + sym_escape_sequence, + STATE(7079), 1, + aux_sym_string_literal_repeat1, + [277744] = 5, + ACTIONS(10057), 1, + sym_comment, + ACTIONS(12132), 1, + aux_sym_preproc_include_token2, + ACTIONS(12134), 1, + anon_sym_LPAREN, + ACTIONS(12136), 1, + sym_preproc_arg, + STATE(7974), 1, + sym_preproc_params, + [277760] = 5, + ACTIONS(10057), 1, + sym_comment, + ACTIONS(12044), 1, + aux_sym_string_literal_token1, + ACTIONS(12046), 1, + sym_escape_sequence, + ACTIONS(12138), 1, + anon_sym_DQUOTE, + STATE(7124), 1, + aux_sym_string_literal_repeat1, + [277776] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8742), 1, + anon_sym_COMMA, + ACTIONS(12050), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12140), 1, + anon_sym_GT2, + STATE(7518), 1, + aux_sym_template_argument_list_repeat1, + [277792] = 5, + ACTIONS(10057), 1, + sym_comment, + ACTIONS(12142), 1, + anon_sym_DQUOTE, + ACTIONS(12144), 1, + aux_sym_string_literal_token1, + ACTIONS(12146), 1, + sym_escape_sequence, + STATE(7082), 1, + aux_sym_string_literal_repeat1, + [277808] = 5, + ACTIONS(10057), 1, + sym_comment, + ACTIONS(12044), 1, + aux_sym_string_literal_token1, + ACTIONS(12046), 1, + sym_escape_sequence, + ACTIONS(12148), 1, + anon_sym_DQUOTE, + STATE(7124), 1, + aux_sym_string_literal_repeat1, + [277824] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8742), 1, anon_sym_COMMA, - ACTIONS(11981), 1, + ACTIONS(12050), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11983), 1, + ACTIONS(12150), 1, anon_sym_GT2, - STATE(7300), 1, + STATE(7560), 1, aux_sym_template_argument_list_repeat1, - [271838] = 5, + [277840] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5499), 1, + ACTIONS(5563), 1, anon_sym_COLON, - ACTIONS(7520), 1, + ACTIONS(6035), 1, anon_sym_LBRACE, - STATE(3955), 1, + STATE(2389), 1, sym_field_declaration_list, - STATE(7865), 1, + STATE(7908), 1, sym_base_class_clause, - [271854] = 4, + [277856] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11985), 1, - anon_sym_COMMA, - STATE(7092), 1, - aux_sym_gnu_asm_input_operand_list_repeat1, - ACTIONS(11987), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [271868] = 4, + ACTIONS(3879), 1, + anon_sym_LBRACE, + ACTIONS(6935), 1, + anon_sym_LPAREN2, + STATE(3585), 1, + sym_argument_list, + STATE(4852), 1, + sym_initializer_list, + [277872] = 5, + ACTIONS(10057), 1, + sym_comment, + ACTIONS(12152), 1, + anon_sym_DQUOTE, + ACTIONS(12154), 1, + aux_sym_string_literal_token1, + ACTIONS(12156), 1, + sym_escape_sequence, + STATE(7087), 1, + aux_sym_string_literal_repeat1, + [277888] = 5, + ACTIONS(10057), 1, + sym_comment, + ACTIONS(12044), 1, + aux_sym_string_literal_token1, + ACTIONS(12046), 1, + sym_escape_sequence, + ACTIONS(12158), 1, + anon_sym_DQUOTE, + STATE(7124), 1, + aux_sym_string_literal_repeat1, + [277904] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11989), 1, + ACTIONS(8742), 1, anon_sym_COMMA, - STATE(7107), 1, - aux_sym_gnu_asm_clobber_list_repeat1, - ACTIONS(11991), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [271882] = 5, - ACTIONS(10118), 1, + ACTIONS(12050), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12160), 1, + anon_sym_GT2, + STATE(7610), 1, + aux_sym_template_argument_list_repeat1, + [277920] = 5, + ACTIONS(10057), 1, + sym_comment, + ACTIONS(12162), 1, + anon_sym_DQUOTE, + ACTIONS(12164), 1, + aux_sym_string_literal_token1, + ACTIONS(12166), 1, + sym_escape_sequence, + STATE(7115), 1, + aux_sym_string_literal_repeat1, + [277936] = 5, + ACTIONS(10057), 1, sym_comment, - ACTIONS(11993), 1, + ACTIONS(12168), 1, anon_sym_DQUOTE, - ACTIONS(11995), 1, + ACTIONS(12170), 1, + aux_sym_string_literal_token1, + ACTIONS(12172), 1, + sym_escape_sequence, + STATE(7091), 1, + aux_sym_string_literal_repeat1, + [277952] = 5, + ACTIONS(10057), 1, + sym_comment, + ACTIONS(12044), 1, aux_sym_string_literal_token1, - ACTIONS(11997), 1, + ACTIONS(12046), 1, sym_escape_sequence, - STATE(7039), 1, + ACTIONS(12174), 1, + anon_sym_DQUOTE, + STATE(7124), 1, aux_sym_string_literal_repeat1, - [271898] = 5, + [277968] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8707), 1, + ACTIONS(8742), 1, anon_sym_COMMA, - ACTIONS(11981), 1, + ACTIONS(12050), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11999), 1, + ACTIONS(12176), 1, anon_sym_GT2, - STATE(7195), 1, + STATE(7630), 1, aux_sym_template_argument_list_repeat1, - [271914] = 5, + [277984] = 5, + ACTIONS(10057), 1, + sym_comment, + ACTIONS(12178), 1, + anon_sym_DQUOTE, + ACTIONS(12180), 1, + aux_sym_string_literal_token1, + ACTIONS(12182), 1, + sym_escape_sequence, + STATE(7094), 1, + aux_sym_string_literal_repeat1, + [278000] = 5, + ACTIONS(10057), 1, + sym_comment, + ACTIONS(12044), 1, + aux_sym_string_literal_token1, + ACTIONS(12046), 1, + sym_escape_sequence, + ACTIONS(12184), 1, + anon_sym_DQUOTE, + STATE(7124), 1, + aux_sym_string_literal_repeat1, + [278016] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8707), 1, + ACTIONS(8742), 1, anon_sym_COMMA, - ACTIONS(11981), 1, + ACTIONS(12050), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12001), 1, + ACTIONS(12186), 1, anon_sym_GT2, - STATE(7240), 1, + STATE(7649), 1, aux_sym_template_argument_list_repeat1, - [271930] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12003), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [271940] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11872), 4, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_DOT, - [271950] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(12005), 1, - anon_sym_EQ, - STATE(7062), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [271964] = 5, - ACTIONS(10118), 1, + [278032] = 5, + ACTIONS(10057), 1, sym_comment, - ACTIONS(12007), 1, + ACTIONS(12188), 1, anon_sym_DQUOTE, - ACTIONS(12009), 1, + ACTIONS(12190), 1, aux_sym_string_literal_token1, - ACTIONS(12011), 1, + ACTIONS(12192), 1, sym_escape_sequence, - STATE(6945), 1, + STATE(7097), 1, aux_sym_string_literal_repeat1, - [271980] = 4, - ACTIONS(10118), 1, + [278048] = 5, + ACTIONS(10057), 1, sym_comment, - ACTIONS(12013), 1, - anon_sym_SQUOTE, - STATE(7020), 1, - aux_sym_char_literal_repeat1, - ACTIONS(12015), 2, - aux_sym_char_literal_token1, + ACTIONS(12044), 1, + aux_sym_string_literal_token1, + ACTIONS(12046), 1, + sym_escape_sequence, + ACTIONS(12194), 1, + anon_sym_DQUOTE, + STATE(7124), 1, + aux_sym_string_literal_repeat1, + [278064] = 5, + ACTIONS(10057), 1, + sym_comment, + ACTIONS(12196), 1, + anon_sym_DQUOTE, + ACTIONS(12198), 1, + aux_sym_string_literal_token1, + ACTIONS(12200), 1, sym_escape_sequence, - [271994] = 5, - ACTIONS(10118), 1, + STATE(7099), 1, + aux_sym_string_literal_repeat1, + [278080] = 5, + ACTIONS(10057), 1, sym_comment, - ACTIONS(11995), 1, + ACTIONS(12044), 1, aux_sym_string_literal_token1, - ACTIONS(11997), 1, + ACTIONS(12046), 1, sym_escape_sequence, - ACTIONS(12017), 1, + ACTIONS(12202), 1, anon_sym_DQUOTE, - STATE(7039), 1, + STATE(7124), 1, aux_sym_string_literal_repeat1, - [272010] = 5, + [278096] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5499), 1, + ACTIONS(5563), 1, anon_sym_COLON, - ACTIONS(6362), 1, + ACTIONS(5565), 1, anon_sym_LBRACE, - STATE(2638), 1, + STATE(2216), 1, sym_field_declaration_list, - STATE(7606), 1, + STATE(7693), 1, sym_base_class_clause, - [272026] = 5, - ACTIONS(10118), 1, + [278112] = 5, + ACTIONS(10057), 1, sym_comment, - ACTIONS(12019), 1, + ACTIONS(12204), 1, anon_sym_DQUOTE, - ACTIONS(12021), 1, + ACTIONS(12206), 1, aux_sym_string_literal_token1, - ACTIONS(12023), 1, + ACTIONS(12208), 1, sym_escape_sequence, - STATE(6993), 1, + STATE(7112), 1, aux_sym_string_literal_repeat1, - [272042] = 4, - ACTIONS(10118), 1, + [278128] = 4, + ACTIONS(10057), 1, sym_comment, - ACTIONS(12025), 1, + ACTIONS(12210), 1, anon_sym_SQUOTE, - STATE(7020), 1, + STATE(7120), 1, aux_sym_char_literal_repeat1, - ACTIONS(12015), 2, + ACTIONS(12023), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [272056] = 5, - ACTIONS(10118), 1, - sym_comment, - ACTIONS(12027), 1, - anon_sym_DQUOTE, - ACTIONS(12029), 1, - aux_sym_string_literal_token1, - ACTIONS(12031), 1, - sym_escape_sequence, - STATE(6958), 1, - aux_sym_string_literal_repeat1, - [272072] = 5, - ACTIONS(10118), 1, + [278142] = 5, + ACTIONS(10057), 1, sym_comment, - ACTIONS(11995), 1, + ACTIONS(12044), 1, aux_sym_string_literal_token1, - ACTIONS(11997), 1, + ACTIONS(12046), 1, sym_escape_sequence, - ACTIONS(12033), 1, + ACTIONS(12212), 1, anon_sym_DQUOTE, - STATE(7039), 1, + STATE(7124), 1, aux_sym_string_literal_repeat1, - [272088] = 3, + [278158] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8701), 1, - anon_sym___attribute, - ACTIONS(8699), 3, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - [272100] = 5, - ACTIONS(10118), 1, + ACTIONS(5230), 1, + anon_sym_LBRACE, + ACTIONS(12214), 1, + anon_sym_COLON_COLON, + ACTIONS(12216), 1, + anon_sym_EQ, + STATE(671), 1, + sym_declaration_list, + [278174] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(11995), 1, - aux_sym_string_literal_token1, - ACTIONS(11997), 1, - sym_escape_sequence, - ACTIONS(12035), 1, - anon_sym_DQUOTE, - STATE(7039), 1, - aux_sym_string_literal_repeat1, - [272116] = 5, - ACTIONS(10118), 1, + ACTIONS(9792), 1, + anon_sym_LBRACE, + ACTIONS(12064), 1, + anon_sym_LPAREN2, + STATE(4308), 1, + sym_requirement_seq, + STATE(7962), 1, + sym_requires_parameter_list, + [278190] = 4, + ACTIONS(10057), 1, sym_comment, - ACTIONS(12037), 1, - aux_sym_preproc_include_token2, - ACTIONS(12039), 1, - anon_sym_LPAREN, - ACTIONS(12041), 1, - sym_preproc_arg, - STATE(7779), 1, - sym_preproc_params, - [272132] = 5, + ACTIONS(12218), 1, + anon_sym_SQUOTE, + STATE(7120), 1, + aux_sym_char_literal_repeat1, + ACTIONS(12023), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [278204] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(10917), 1, + ACTIONS(10970), 1, anon_sym_COLON, - STATE(7180), 1, + STATE(7523), 1, sym_compound_statement, - STATE(7572), 1, + STATE(8026), 1, sym_field_initializer_list, - [272148] = 5, + [278220] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(10917), 1, + ACTIONS(12220), 1, + sym_identifier, + ACTIONS(12222), 1, + anon_sym_SEMI, + ACTIONS(12224), 1, anon_sym_COLON, - STATE(7316), 1, - sym_compound_statement, - STATE(7740), 1, - sym_field_initializer_list, - [272164] = 5, + STATE(7029), 1, + sym_module_name, + [278236] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3887), 1, - anon_sym_LBRACE, - ACTIONS(6979), 1, + ACTIONS(8177), 1, anon_sym_LPAREN2, - STATE(3598), 1, + STATE(7743), 1, sym_argument_list, - STATE(4839), 1, - sym_initializer_list, - [272180] = 4, - ACTIONS(10118), 1, + ACTIONS(12226), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [278250] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12086), 1, + anon_sym_COMMA, + STATE(7180), 1, + aux_sym_gnu_asm_output_operand_list_repeat1, + ACTIONS(12228), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [278264] = 4, + ACTIONS(10057), 1, sym_comment, - ACTIONS(12043), 1, + ACTIONS(12230), 1, anon_sym_SQUOTE, - STATE(7020), 1, + STATE(7120), 1, aux_sym_char_literal_repeat1, - ACTIONS(12015), 2, + ACTIONS(12023), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [272194] = 5, - ACTIONS(10118), 1, + [278278] = 5, + ACTIONS(10057), 1, sym_comment, - ACTIONS(11995), 1, + ACTIONS(12044), 1, aux_sym_string_literal_token1, - ACTIONS(11997), 1, + ACTIONS(12046), 1, sym_escape_sequence, - ACTIONS(12045), 1, + ACTIONS(12232), 1, anon_sym_DQUOTE, - STATE(7039), 1, + STATE(7124), 1, aux_sym_string_literal_repeat1, - [272210] = 5, - ACTIONS(10118), 1, + [278294] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(12039), 1, - anon_sym_LPAREN, - ACTIONS(12047), 1, - aux_sym_preproc_include_token2, - ACTIONS(12049), 1, - sym_preproc_arg, - STATE(7885), 1, - sym_preproc_params, - [272226] = 5, - ACTIONS(10118), 1, + ACTIONS(4187), 1, + anon_sym_COLON_COLON, + ACTIONS(6580), 1, + anon_sym_LT, + ACTIONS(12234), 1, + anon_sym_SEMI, + STATE(1623), 1, + sym_template_argument_list, + [278310] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12236), 1, + anon_sym___except, + ACTIONS(12238), 1, + anon_sym___finally, + STATE(511), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [278324] = 5, + ACTIONS(10057), 1, sym_comment, - ACTIONS(11995), 1, + ACTIONS(12044), 1, aux_sym_string_literal_token1, - ACTIONS(11997), 1, + ACTIONS(12046), 1, sym_escape_sequence, - ACTIONS(12051), 1, + ACTIONS(12240), 1, anon_sym_DQUOTE, - STATE(7039), 1, + STATE(7124), 1, aux_sym_string_literal_repeat1, - [272242] = 5, + [278340] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8707), 1, + ACTIONS(5034), 1, + anon_sym_LT, + ACTIONS(12048), 1, + sym_identifier, + STATE(848), 1, + sym_template_parameter_list, + STATE(1923), 1, + sym_template_type, + [278356] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12242), 1, + anon_sym___except, + ACTIONS(12244), 1, + anon_sym___finally, + STATE(570), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [278370] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12076), 1, anon_sym_COMMA, - ACTIONS(11981), 1, + ACTIONS(12246), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12053), 1, - anon_sym_GT2, - STATE(7418), 1, - aux_sym_template_argument_list_repeat1, - [272258] = 4, + ACTIONS(12248), 1, + anon_sym_LBRACE, + STATE(7261), 1, + aux_sym_base_class_clause_repeat1, + [278386] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12055), 1, + ACTIONS(12250), 1, anon_sym_COMMA, - STATE(6962), 1, - aux_sym_gnu_asm_clobber_list_repeat1, - ACTIONS(12058), 2, + STATE(7183), 1, + aux_sym_gnu_asm_input_operand_list_repeat1, + ACTIONS(12252), 2, anon_sym_RPAREN, anon_sym_COLON, - [272272] = 4, - ACTIONS(10118), 1, + [278400] = 4, + ACTIONS(10057), 1, sym_comment, - ACTIONS(12060), 1, + ACTIONS(12254), 1, anon_sym_SQUOTE, - STATE(7020), 1, + STATE(7120), 1, aux_sym_char_literal_repeat1, - ACTIONS(12015), 2, + ACTIONS(12256), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [272286] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5026), 1, - anon_sym_LT, - ACTIONS(12062), 1, - sym_identifier, - STATE(836), 1, - sym_template_parameter_list, - STATE(1910), 1, - sym_template_type, - [272302] = 5, + [278414] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5499), 1, + ACTIONS(5563), 1, anon_sym_COLON, - ACTIONS(8615), 1, + ACTIONS(5565), 1, anon_sym_LBRACE, - STATE(4541), 1, + STATE(2230), 1, sym_field_declaration_list, - STATE(7812), 1, + STATE(7714), 1, sym_base_class_clause, - [272318] = 5, - ACTIONS(10118), 1, + [278430] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11548), 1, + anon_sym_EQ, + STATE(7163), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [278444] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8742), 1, + anon_sym_COMMA, + ACTIONS(12050), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12259), 1, + anon_sym_GT2, + STATE(7327), 1, + aux_sym_template_argument_list_repeat1, + [278460] = 5, + ACTIONS(10057), 1, sym_comment, - ACTIONS(11995), 1, + ACTIONS(12261), 1, + anon_sym_DQUOTE, + ACTIONS(12263), 1, aux_sym_string_literal_token1, - ACTIONS(11997), 1, + ACTIONS(12266), 1, sym_escape_sequence, - ACTIONS(12064), 1, - anon_sym_DQUOTE, - STATE(7039), 1, + STATE(7124), 1, aux_sym_string_literal_repeat1, - [272334] = 5, - ACTIONS(10118), 1, + [278476] = 5, + ACTIONS(10057), 1, sym_comment, - ACTIONS(11995), 1, + ACTIONS(12269), 1, + anon_sym_DQUOTE, + ACTIONS(12271), 1, aux_sym_string_literal_token1, - ACTIONS(11997), 1, + ACTIONS(12273), 1, sym_escape_sequence, - ACTIONS(12066), 1, - anon_sym_DQUOTE, - STATE(7039), 1, + STATE(7143), 1, aux_sym_string_literal_repeat1, - [272350] = 5, - ACTIONS(10118), 1, - sym_comment, - ACTIONS(12039), 1, - anon_sym_LPAREN, - ACTIONS(12068), 1, - aux_sym_preproc_include_token2, - ACTIONS(12070), 1, - sym_preproc_arg, - STATE(7797), 1, - sym_preproc_params, - [272366] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12003), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [272376] = 5, + [278492] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5499), 1, + ACTIONS(5563), 1, anon_sym_COLON, - ACTIONS(6692), 1, + ACTIONS(6530), 1, anon_sym_LBRACE, - STATE(2862), 1, + STATE(2918), 1, sym_field_declaration_list, - STATE(7889), 1, + STATE(7965), 1, sym_base_class_clause, - [272392] = 5, + [278508] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12072), 1, - anon_sym_LPAREN2, - ACTIONS(12074), 1, + ACTIONS(5232), 1, anon_sym_LBRACE, - STATE(1611), 1, - sym_requirement_seq, - STATE(7788), 1, - sym_requires_parameter_list, - [272408] = 4, - ACTIONS(10118), 1, - sym_comment, - ACTIONS(12076), 1, - anon_sym_SQUOTE, - STATE(7020), 1, - aux_sym_char_literal_repeat1, - ACTIONS(12015), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [272422] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(11537), 1, + ACTIONS(12214), 1, + anon_sym_COLON_COLON, + ACTIONS(12275), 1, anon_sym_EQ, - STATE(7097), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [272436] = 5, + STATE(793), 1, + sym_declaration_list, + [278524] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1954), 1, - anon_sym_LBRACE, - ACTIONS(5827), 1, - anon_sym_LPAREN2, - STATE(2436), 1, - sym_argument_list, - STATE(2500), 1, - sym_initializer_list, - [272452] = 4, + ACTIONS(4187), 1, + anon_sym_COLON_COLON, + ACTIONS(6580), 1, + anon_sym_LT, + ACTIONS(12277), 1, + anon_sym_SEMI, + STATE(1623), 1, + sym_template_argument_list, + [278540] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3615), 1, - anon_sym_LBRACE, - ACTIONS(8147), 1, - anon_sym_LPAREN2, - STATE(7144), 2, - sym_argument_list, - sym_initializer_list, - [272466] = 5, - ACTIONS(10118), 1, + ACTIONS(9843), 1, + anon_sym_DASH_GT, + ACTIONS(12279), 1, + anon_sym_SEMI, + ACTIONS(12281), 1, + anon_sym_noexcept, + STATE(8085), 1, + sym_trailing_return_type, + [278556] = 5, + ACTIONS(10057), 1, sym_comment, - ACTIONS(12039), 1, + ACTIONS(12134), 1, anon_sym_LPAREN, - ACTIONS(12078), 1, + ACTIONS(12283), 1, aux_sym_preproc_include_token2, - ACTIONS(12080), 1, + ACTIONS(12285), 1, sym_preproc_arg, - STATE(7681), 1, + STATE(7840), 1, sym_preproc_params, - [272482] = 5, + [278572] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12082), 1, - sym_identifier, - ACTIONS(12084), 1, - anon_sym_SEMI, - ACTIONS(12086), 1, - anon_sym_COLON, - STATE(6916), 1, - sym_module_name, - [272498] = 5, - ACTIONS(10118), 1, - sym_comment, - ACTIONS(11995), 1, - aux_sym_string_literal_token1, - ACTIONS(11997), 1, - sym_escape_sequence, - ACTIONS(12088), 1, - anon_sym_DQUOTE, - STATE(7039), 1, - aux_sym_string_literal_repeat1, - [272514] = 5, + ACTIONS(2457), 1, + anon_sym_LBRACE, + ACTIONS(6886), 1, + anon_sym_LPAREN2, + STATE(3409), 1, + sym_argument_list, + STATE(3411), 1, + sym_initializer_list, + [278588] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8707), 1, + ACTIONS(8742), 1, anon_sym_COMMA, - ACTIONS(11981), 1, + ACTIONS(12050), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12090), 1, + ACTIONS(12287), 1, anon_sym_GT2, - STATE(7213), 1, + STATE(7535), 1, aux_sym_template_argument_list_repeat1, - [272530] = 5, + [278604] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5026), 1, - anon_sym_LT, - ACTIONS(12062), 1, - sym_identifier, - STATE(833), 1, - sym_template_parameter_list, - STATE(1910), 1, - sym_template_type, - [272546] = 5, - ACTIONS(10118), 1, + ACTIONS(9750), 1, + anon_sym_LBRACE, + ACTIONS(12064), 1, + anon_sym_LPAREN2, + STATE(3424), 1, + sym_requirement_seq, + STATE(7755), 1, + sym_requires_parameter_list, + [278620] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(12092), 1, + ACTIONS(57), 1, + anon_sym_LBRACE, + ACTIONS(10970), 1, + anon_sym_COLON, + STATE(7566), 1, + sym_compound_statement, + STATE(7942), 1, + sym_field_initializer_list, + [278636] = 5, + ACTIONS(10057), 1, + sym_comment, + ACTIONS(12289), 1, anon_sym_DQUOTE, - ACTIONS(12094), 1, + ACTIONS(12291), 1, aux_sym_string_literal_token1, - ACTIONS(12096), 1, + ACTIONS(12293), 1, sym_escape_sequence, - STATE(7064), 1, + STATE(7145), 1, aux_sym_string_literal_repeat1, - [272562] = 5, + [278652] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, - anon_sym_LBRACE, - ACTIONS(6864), 1, + ACTIONS(8177), 1, anon_sym_LPAREN2, - STATE(3421), 1, + STATE(7937), 1, sym_argument_list, - STATE(3426), 1, - sym_initializer_list, - [272578] = 4, - ACTIONS(10118), 1, + ACTIONS(12295), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [278666] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(12098), 1, - anon_sym_SQUOTE, - STATE(7020), 1, - aux_sym_char_literal_repeat1, - ACTIONS(12015), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [272592] = 5, + ACTIONS(5034), 1, + anon_sym_LT, + ACTIONS(12048), 1, + sym_identifier, + STATE(1923), 1, + sym_template_type, + STATE(6985), 1, + sym_template_parameter_list, + [278682] = 5, + ACTIONS(10057), 1, + sym_comment, + ACTIONS(12134), 1, + anon_sym_LPAREN, + ACTIONS(12297), 1, + aux_sym_preproc_include_token2, + ACTIONS(12299), 1, + sym_preproc_arg, + STATE(7796), 1, + sym_preproc_params, + [278698] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5499), 1, + ACTIONS(5563), 1, anon_sym_COLON, - ACTIONS(8878), 1, + ACTIONS(6526), 1, anon_sym_LBRACE, - STATE(4844), 1, + STATE(2877), 1, sym_field_declaration_list, - STATE(7625), 1, + STATE(7886), 1, sym_base_class_clause, - [272608] = 5, + [278714] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9730), 1, + ACTIONS(2493), 1, anon_sym_LBRACE, - ACTIONS(12072), 1, + ACTIONS(6935), 1, anon_sym_LPAREN2, - STATE(3240), 1, - sym_requirement_seq, - STATE(7633), 1, - sym_requires_parameter_list, - [272624] = 5, + STATE(3585), 1, + sym_argument_list, + STATE(3618), 1, + sym_initializer_list, + [278730] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9748), 1, + ACTIONS(5563), 1, + anon_sym_COLON, + ACTIONS(6363), 1, anon_sym_LBRACE, - ACTIONS(12072), 1, - anon_sym_LPAREN2, - STATE(4248), 1, - sym_requirement_seq, - STATE(7874), 1, - sym_requires_parameter_list, - [272640] = 5, - ACTIONS(10118), 1, + STATE(2623), 1, + sym_field_declaration_list, + STATE(7814), 1, + sym_base_class_clause, + [278746] = 4, + ACTIONS(10057), 1, + sym_comment, + ACTIONS(12301), 1, + anon_sym_SQUOTE, + STATE(7120), 1, + aux_sym_char_literal_repeat1, + ACTIONS(12023), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [278760] = 5, + ACTIONS(10057), 1, sym_comment, - ACTIONS(11995), 1, + ACTIONS(12044), 1, aux_sym_string_literal_token1, - ACTIONS(11997), 1, + ACTIONS(12046), 1, sym_escape_sequence, - ACTIONS(12100), 1, + ACTIONS(12303), 1, anon_sym_DQUOTE, - STATE(7039), 1, + STATE(7124), 1, aux_sym_string_literal_repeat1, - [272656] = 4, - ACTIONS(10118), 1, + [278776] = 4, + ACTIONS(10057), 1, sym_comment, - ACTIONS(12102), 1, + ACTIONS(12305), 1, anon_sym_SQUOTE, - STATE(7020), 1, + STATE(7120), 1, aux_sym_char_literal_repeat1, - ACTIONS(12015), 2, + ACTIONS(12023), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [272670] = 5, - ACTIONS(10118), 1, + [278790] = 5, + ACTIONS(10057), 1, sym_comment, - ACTIONS(12104), 1, - anon_sym_DQUOTE, - ACTIONS(12106), 1, + ACTIONS(12044), 1, aux_sym_string_literal_token1, - ACTIONS(12108), 1, + ACTIONS(12046), 1, sym_escape_sequence, - STATE(6978), 1, + ACTIONS(12307), 1, + anon_sym_DQUOTE, + STATE(7124), 1, aux_sym_string_literal_repeat1, - [272686] = 5, + [278806] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12110), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12112), 1, - anon_sym_COMMA, - ACTIONS(12114), 1, + ACTIONS(12064), 1, + anon_sym_LPAREN2, + ACTIONS(12309), 1, anon_sym_LBRACE, - STATE(7304), 1, - aux_sym_base_class_clause_repeat1, - [272702] = 5, + STATE(1638), 1, + sym_requirement_seq, + STATE(8000), 1, + sym_requires_parameter_list, + [278822] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(5236), 1, anon_sym_LBRACE, - ACTIONS(10917), 1, - anon_sym_COLON, - STATE(7405), 1, - sym_compound_statement, - STATE(7757), 1, - sym_field_initializer_list, - [272718] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4167), 1, + ACTIONS(12214), 1, anon_sym_COLON_COLON, - ACTIONS(6630), 1, - anon_sym_LT, - ACTIONS(12116), 1, - anon_sym_SEMI, - STATE(1603), 1, - sym_template_argument_list, - [272734] = 5, - ACTIONS(10118), 1, + ACTIONS(12311), 1, + anon_sym_EQ, + STATE(309), 1, + sym_declaration_list, + [278838] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(11995), 1, - aux_sym_string_literal_token1, - ACTIONS(11997), 1, - sym_escape_sequence, - ACTIONS(12118), 1, - anon_sym_DQUOTE, - STATE(7039), 1, - aux_sym_string_literal_repeat1, - [272750] = 5, + ACTIONS(12076), 1, + anon_sym_COMMA, + ACTIONS(12313), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12315), 1, + anon_sym_LBRACE, + STATE(7259), 1, + aux_sym_base_class_clause_repeat1, + [278854] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12072), 1, + ACTIONS(3623), 1, + anon_sym_LBRACE, + ACTIONS(5845), 1, anon_sym_LPAREN2, - ACTIONS(12120), 1, + STATE(2452), 1, + sym_argument_list, + STATE(3883), 1, + sym_initializer_list, + [278870] = 5, + ACTIONS(10057), 1, + sym_comment, + ACTIONS(12134), 1, + anon_sym_LPAREN, + ACTIONS(12317), 1, + aux_sym_preproc_include_token2, + ACTIONS(12319), 1, + sym_preproc_arg, + STATE(7983), 1, + sym_preproc_params, + [278886] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9784), 1, anon_sym_LBRACE, - STATE(5918), 1, + ACTIONS(12064), 1, + anon_sym_LPAREN2, + STATE(2486), 1, sym_requirement_seq, - STATE(7813), 1, + STATE(7805), 1, sym_requires_parameter_list, - [272766] = 5, + [278902] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5499), 1, - anon_sym_COLON, - ACTIONS(6542), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - STATE(2895), 1, - sym_field_declaration_list, - STATE(7794), 1, - sym_base_class_clause, - [272782] = 4, - ACTIONS(10118), 1, - sym_comment, - ACTIONS(12122), 1, - anon_sym_SQUOTE, - STATE(7020), 1, - aux_sym_char_literal_repeat1, - ACTIONS(12015), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [272796] = 5, + ACTIONS(10970), 1, + anon_sym_COLON, + STATE(7553), 1, + sym_compound_statement, + STATE(7812), 1, + sym_field_initializer_list, + [278918] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5499), 1, - anon_sym_COLON, - ACTIONS(6018), 1, - anon_sym_LBRACE, - STATE(2351), 1, - sym_field_declaration_list, - STATE(7903), 1, - sym_base_class_clause, - [272812] = 5, - ACTIONS(10118), 1, + ACTIONS(4187), 1, + anon_sym_COLON_COLON, + ACTIONS(6580), 1, + anon_sym_LT, + ACTIONS(12321), 1, + anon_sym_SEMI, + STATE(1623), 1, + sym_template_argument_list, + [278934] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(12124), 1, - anon_sym_DQUOTE, - ACTIONS(12126), 1, - aux_sym_string_literal_token1, - ACTIONS(12128), 1, - sym_escape_sequence, - STATE(7015), 1, - aux_sym_string_literal_repeat1, - [272828] = 5, + ACTIONS(12323), 1, + anon_sym___except, + ACTIONS(12325), 1, + anon_sym___finally, + STATE(938), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [278948] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5026), 1, + ACTIONS(5034), 1, anon_sym_LT, - ACTIONS(12062), 1, + ACTIONS(12048), 1, sym_identifier, - STATE(832), 1, + STATE(850), 1, sym_template_parameter_list, - STATE(1910), 1, + STATE(1923), 1, sym_template_type, - [272844] = 5, + [278964] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9740), 1, + ACTIONS(5563), 1, + anon_sym_COLON, + ACTIONS(6363), 1, anon_sym_LBRACE, - ACTIONS(12072), 1, - anon_sym_LPAREN2, - STATE(3589), 1, - sym_requirement_seq, - STATE(7672), 1, - sym_requires_parameter_list, - [272860] = 5, + STATE(2626), 1, + sym_field_declaration_list, + STATE(7831), 1, + sym_base_class_clause, + [278980] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5234), 1, - anon_sym_LBRACE, - ACTIONS(12130), 1, - anon_sym_COLON_COLON, - ACTIONS(12132), 1, - anon_sym_EQ, - STATE(304), 1, - sym_declaration_list, - [272876] = 5, - ACTIONS(10118), 1, + ACTIONS(8742), 1, + anon_sym_COMMA, + ACTIONS(12050), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12327), 1, + anon_sym_GT2, + STATE(7451), 1, + aux_sym_template_argument_list_repeat1, + [278996] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(12134), 1, - anon_sym_DQUOTE, - ACTIONS(12136), 1, - aux_sym_string_literal_token1, - ACTIONS(12138), 1, - sym_escape_sequence, - STATE(6967), 1, - aux_sym_string_literal_repeat1, - [272892] = 5, + ACTIONS(12331), 1, + anon_sym___attribute, + ACTIONS(12329), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + [279008] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5499), 1, - anon_sym_COLON, - ACTIONS(6542), 1, - anon_sym_LBRACE, - STATE(2929), 1, - sym_field_declaration_list, - STATE(7746), 1, - sym_base_class_clause, - [272908] = 5, + ACTIONS(12335), 1, + anon_sym___attribute, + ACTIONS(12333), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + [279020] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4167), 1, + ACTIONS(4187), 1, anon_sym_COLON_COLON, - ACTIONS(6630), 1, + ACTIONS(6580), 1, anon_sym_LT, - ACTIONS(12140), 1, + ACTIONS(12337), 1, anon_sym_SEMI, - STATE(1603), 1, + STATE(1623), 1, sym_template_argument_list, - [272924] = 5, + [279036] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4167), 1, + ACTIONS(4187), 1, anon_sym_COLON_COLON, - ACTIONS(6630), 1, + ACTIONS(6580), 1, anon_sym_LT, - ACTIONS(12142), 1, + ACTIONS(12339), 1, anon_sym_SEMI, - STATE(1603), 1, + STATE(1623), 1, sym_template_argument_list, - [272940] = 5, + [279052] = 5, + ACTIONS(10057), 1, + sym_comment, + ACTIONS(12134), 1, + anon_sym_LPAREN, + ACTIONS(12341), 1, + aux_sym_preproc_include_token2, + ACTIONS(12343), 1, + sym_preproc_arg, + STATE(7879), 1, + sym_preproc_params, + [279068] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(12345), 1, + anon_sym_EQ, + STATE(5943), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [279082] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(12347), 1, + anon_sym_EQ, + STATE(7218), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [279096] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(10917), 1, + ACTIONS(10970), 1, anon_sym_COLON, - STATE(7269), 1, + STATE(7308), 1, sym_compound_statement, - STATE(7673), 1, + STATE(7856), 1, sym_field_initializer_list, - [272956] = 5, - ACTIONS(10118), 1, - sym_comment, - ACTIONS(12144), 1, - anon_sym_DQUOTE, - ACTIONS(12146), 1, - aux_sym_string_literal_token1, - ACTIONS(12148), 1, - sym_escape_sequence, - STATE(7053), 1, - aux_sym_string_literal_repeat1, - [272972] = 5, + [279112] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9813), 1, - anon_sym_DASH_GT, - ACTIONS(12150), 1, + ACTIONS(4187), 1, + anon_sym_COLON_COLON, + ACTIONS(6580), 1, + anon_sym_LT, + ACTIONS(12349), 1, anon_sym_SEMI, - ACTIONS(12152), 1, - anon_sym_noexcept, - STATE(8102), 1, - sym_trailing_return_type, - [272988] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12112), 1, - anon_sym_COMMA, - ACTIONS(12154), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12156), 1, - anon_sym_LBRACE, - STATE(7539), 1, - aux_sym_base_class_clause_repeat1, - [273004] = 5, + STATE(1623), 1, + sym_template_argument_list, + [279128] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5499), 1, - anon_sym_COLON, - ACTIONS(6018), 1, - anon_sym_LBRACE, - STATE(5045), 1, - sym_field_declaration_list, - STATE(7845), 1, - sym_base_class_clause, - [273020] = 5, + ACTIONS(5034), 1, + anon_sym_LT, + ACTIONS(12048), 1, + sym_identifier, + STATE(853), 1, + sym_template_parameter_list, + STATE(1923), 1, + sym_template_type, + [279144] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5499), 1, + ACTIONS(5563), 1, anon_sym_COLON, - ACTIONS(6018), 1, + ACTIONS(6530), 1, anon_sym_LBRACE, - STATE(5051), 1, + STATE(2982), 1, sym_field_declaration_list, - STATE(7846), 1, + STATE(7832), 1, sym_base_class_clause, - [273036] = 5, + [279160] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4167), 1, + ACTIONS(4187), 1, anon_sym_COLON_COLON, - ACTIONS(6630), 1, + ACTIONS(6580), 1, anon_sym_LT, - ACTIONS(12158), 1, + ACTIONS(12351), 1, anon_sym_SEMI, - STATE(1603), 1, + STATE(1623), 1, sym_template_argument_list, - [273052] = 5, + [279176] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5499), 1, - anon_sym_COLON, - ACTIONS(5501), 1, + ACTIONS(12353), 1, + anon_sym___except, + ACTIONS(12355), 1, + anon_sym___finally, + STATE(253), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [279190] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, anon_sym_LBRACE, - STATE(2193), 1, - sym_field_declaration_list, - STATE(7641), 1, - sym_base_class_clause, - [273068] = 5, + ACTIONS(10970), 1, + anon_sym_COLON, + STATE(7437), 1, + sym_compound_statement, + STATE(7873), 1, + sym_field_initializer_list, + [279206] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4167), 1, - anon_sym_COLON_COLON, - ACTIONS(6630), 1, + ACTIONS(12357), 1, + anon_sym___except, + ACTIONS(12359), 1, + anon_sym___finally, + STATE(511), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [279220] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5034), 1, anon_sym_LT, - ACTIONS(12160), 1, - anon_sym_SEMI, - STATE(1603), 1, - sym_template_argument_list, - [273084] = 5, - ACTIONS(10118), 1, + ACTIONS(12048), 1, + sym_identifier, + STATE(852), 1, + sym_template_parameter_list, + STATE(1923), 1, + sym_template_type, + [279236] = 5, + ACTIONS(10057), 1, sym_comment, - ACTIONS(11995), 1, + ACTIONS(12361), 1, + anon_sym_DQUOTE, + ACTIONS(12363), 1, aux_sym_string_literal_token1, - ACTIONS(11997), 1, + ACTIONS(12365), 1, sym_escape_sequence, - ACTIONS(12162), 1, - anon_sym_DQUOTE, - STATE(7039), 1, + STATE(7185), 1, aux_sym_string_literal_repeat1, - [273100] = 5, + [279252] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5499), 1, + ACTIONS(5563), 1, anon_sym_COLON, - ACTIONS(8878), 1, + ACTIONS(6526), 1, anon_sym_LBRACE, - STATE(4886), 1, + STATE(2811), 1, sym_field_declaration_list, - STATE(7684), 1, + STATE(7985), 1, sym_base_class_clause, - [273116] = 4, - ACTIONS(10118), 1, - sym_comment, - ACTIONS(12164), 1, - anon_sym_SQUOTE, - STATE(7020), 1, - aux_sym_char_literal_repeat1, - ACTIONS(12015), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [273130] = 5, - ACTIONS(10118), 1, - sym_comment, - ACTIONS(11995), 1, - aux_sym_string_literal_token1, - ACTIONS(11997), 1, - sym_escape_sequence, - ACTIONS(12166), 1, - anon_sym_DQUOTE, - STATE(7039), 1, - aux_sym_string_literal_repeat1, - [273146] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4167), 1, - anon_sym_COLON_COLON, - ACTIONS(6630), 1, - anon_sym_LT, - ACTIONS(12168), 1, - anon_sym_SEMI, - STATE(1603), 1, - sym_template_argument_list, - [273162] = 4, - ACTIONS(10118), 1, + [279268] = 5, + ACTIONS(10057), 1, sym_comment, - ACTIONS(12170), 1, - anon_sym_SQUOTE, - STATE(7020), 1, - aux_sym_char_literal_repeat1, - ACTIONS(12172), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [273176] = 5, + ACTIONS(12134), 1, + anon_sym_LPAREN, + ACTIONS(12367), 1, + aux_sym_preproc_include_token2, + ACTIONS(12369), 1, + sym_preproc_arg, + STATE(7911), 1, + sym_preproc_params, + [279284] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3615), 1, + ACTIONS(2623), 1, anon_sym_LBRACE, - ACTIONS(5827), 1, + ACTIONS(6886), 1, anon_sym_LPAREN2, - STATE(2436), 1, + STATE(3409), 1, sym_argument_list, - STATE(3806), 1, + STATE(3904), 1, sym_initializer_list, - [273192] = 5, + [279300] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9722), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(12072), 1, - anon_sym_LPAREN2, - STATE(2527), 1, - sym_requirement_seq, - STATE(7921), 1, - sym_requires_parameter_list, - [273208] = 5, + ACTIONS(10970), 1, + anon_sym_COLON, + STATE(7567), 1, + sym_compound_statement, + STATE(7890), 1, + sym_field_initializer_list, + [279316] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12072), 1, - anon_sym_LPAREN2, - ACTIONS(12175), 1, - anon_sym_LBRACE, - STATE(5604), 1, - sym_requirement_seq, - STATE(7870), 1, - sym_requires_parameter_list, - [273224] = 5, + ACTIONS(5034), 1, + anon_sym_LT, + ACTIONS(12048), 1, + sym_identifier, + STATE(854), 1, + sym_template_parameter_list, + STATE(1923), 1, + sym_template_type, + [279332] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5499), 1, + ACTIONS(12371), 1, + anon_sym_COMMA, + STATE(7180), 1, + aux_sym_gnu_asm_output_operand_list_repeat1, + ACTIONS(12374), 2, + anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(5501), 1, - anon_sym_LBRACE, - STATE(2206), 1, - sym_field_declaration_list, - STATE(7619), 1, - sym_base_class_clause, - [273240] = 5, + [279346] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8707), 1, + ACTIONS(8742), 1, anon_sym_COMMA, - ACTIONS(11981), 1, + ACTIONS(12050), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12177), 1, + ACTIONS(12376), 1, anon_sym_GT2, - STATE(7157), 1, + STATE(7634), 1, aux_sym_template_argument_list_repeat1, - [273256] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12179), 1, - anon_sym___except, - ACTIONS(12181), 1, - anon_sym___finally, - STATE(911), 2, - sym_seh_except_clause, - sym_seh_finally_clause, - [273270] = 5, + [279362] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5230), 1, + ACTIONS(5563), 1, + anon_sym_COLON, + ACTIONS(6795), 1, anon_sym_LBRACE, - ACTIONS(12130), 1, - anon_sym_COLON_COLON, - ACTIONS(12183), 1, - anon_sym_EQ, - STATE(792), 1, - sym_declaration_list, - [273286] = 4, + STATE(3150), 1, + sym_field_declaration_list, + STATE(7932), 1, + sym_base_class_clause, + [279378] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12185), 1, + ACTIONS(12250), 1, anon_sym_COMMA, - STATE(7120), 1, - aux_sym_gnu_asm_output_operand_list_repeat1, - ACTIONS(12187), 2, + STATE(7235), 1, + aux_sym_gnu_asm_input_operand_list_repeat1, + ACTIONS(12378), 2, anon_sym_RPAREN, anon_sym_COLON, - [273300] = 4, + [279392] = 4, + ACTIONS(10057), 1, + sym_comment, + ACTIONS(12380), 1, + anon_sym_SQUOTE, + STATE(7120), 1, + aux_sym_char_literal_repeat1, + ACTIONS(12023), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [279406] = 5, + ACTIONS(10057), 1, + sym_comment, + ACTIONS(12044), 1, + aux_sym_string_literal_token1, + ACTIONS(12046), 1, + sym_escape_sequence, + ACTIONS(12382), 1, + anon_sym_DQUOTE, + STATE(7124), 1, + aux_sym_string_literal_repeat1, + [279422] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6630), 1, - anon_sym_LT, - STATE(1604), 1, - sym_template_argument_list, - ACTIONS(6515), 2, + ACTIONS(12384), 1, anon_sym_COMMA, - anon_sym_RBRACK, - [273314] = 5, + STATE(7237), 1, + aux_sym_gnu_asm_clobber_list_repeat1, + ACTIONS(12386), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [279436] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8707), 1, - anon_sym_COMMA, - ACTIONS(11981), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12189), 1, - anon_sym_GT2, - STATE(7220), 1, - aux_sym_template_argument_list_repeat1, - [273330] = 3, + ACTIONS(57), 1, + anon_sym_LBRACE, + ACTIONS(10970), 1, + anon_sym_COLON, + STATE(7685), 1, + sym_compound_statement, + STATE(7907), 1, + sym_field_initializer_list, + [279452] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12193), 1, - anon_sym___attribute, - ACTIONS(12191), 3, - anon_sym_COMMA, + ACTIONS(9774), 1, + anon_sym_LBRACE, + ACTIONS(12064), 1, + anon_sym_LPAREN2, + STATE(3924), 1, + sym_requirement_seq, + STATE(7783), 1, + sym_requires_parameter_list, + [279468] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3623), 1, + anon_sym_LBRACE, + ACTIONS(8177), 1, + anon_sym_LPAREN2, + STATE(7290), 2, + sym_argument_list, + sym_initializer_list, + [279482] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4187), 1, + anon_sym_COLON_COLON, + ACTIONS(6580), 1, + anon_sym_LT, + ACTIONS(12388), 1, anon_sym_SEMI, - anon_sym___attribute__, - [273342] = 5, + STATE(1623), 1, + sym_template_argument_list, + [279498] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4167), 1, + ACTIONS(4187), 1, anon_sym_COLON_COLON, - ACTIONS(6630), 1, + ACTIONS(6580), 1, anon_sym_LT, - ACTIONS(12195), 1, + ACTIONS(12390), 1, anon_sym_SEMI, - STATE(1603), 1, + STATE(1623), 1, sym_template_argument_list, - [273358] = 5, + [279514] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(10917), 1, + ACTIONS(5563), 1, anon_sym_COLON, - STATE(7493), 1, - sym_compound_statement, - STATE(7773), 1, - sym_field_initializer_list, - [273374] = 4, + ACTIONS(6795), 1, + anon_sym_LBRACE, + STATE(3047), 1, + sym_field_declaration_list, + STATE(7951), 1, + sym_base_class_clause, + [279530] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8742), 1, + anon_sym_COMMA, + ACTIONS(12050), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12392), 1, + anon_sym_GT2, + STATE(7579), 1, + aux_sym_template_argument_list_repeat1, + [279546] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(12197), 1, + ACTIONS(12394), 1, anon_sym_EQ, - STATE(5795), 2, + STATE(5943), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [273388] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12199), 1, - anon_sym___except, - ACTIONS(12201), 1, - anon_sym___finally, - STATE(502), 2, - sym_seh_except_clause, - sym_seh_finally_clause, - [273402] = 4, + [279560] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(12203), 1, + ACTIONS(12396), 1, anon_sym_using, - STATE(5795), 2, + STATE(5943), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [273416] = 4, + [279574] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11902), 4, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_DOT, + [279584] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(11551), 1, + ACTIONS(12398), 1, anon_sym_EQ, - STATE(7118), 2, + STATE(7221), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [273430] = 5, - ACTIONS(10118), 1, + [279598] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(12205), 1, - anon_sym_DQUOTE, - ACTIONS(12207), 1, - aux_sym_string_literal_token1, - ACTIONS(12209), 1, - sym_escape_sequence, - STATE(6987), 1, - aux_sym_string_literal_repeat1, - [273446] = 5, - ACTIONS(10118), 1, + ACTIONS(4187), 1, + anon_sym_COLON_COLON, + ACTIONS(4927), 1, + anon_sym_SEMI, + ACTIONS(6580), 1, + anon_sym_LT, + STATE(1724), 1, + sym_template_argument_list, + [279614] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(12211), 1, - anon_sym_DQUOTE, - ACTIONS(12213), 1, - aux_sym_string_literal_token1, - ACTIONS(12216), 1, - sym_escape_sequence, - STATE(7039), 1, - aux_sym_string_literal_repeat1, - [273462] = 5, + ACTIONS(4187), 1, + anon_sym_COLON_COLON, + ACTIONS(6580), 1, + anon_sym_LT, + ACTIONS(12400), 1, + anon_sym_SEMI, + STATE(1623), 1, + sym_template_argument_list, + [279630] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8707), 1, - anon_sym_COMMA, - ACTIONS(11981), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12219), 1, - anon_sym_GT2, - STATE(7182), 1, - aux_sym_template_argument_list_repeat1, - [273478] = 5, - ACTIONS(10118), 1, + ACTIONS(4187), 1, + anon_sym_COLON_COLON, + ACTIONS(6580), 1, + anon_sym_LT, + ACTIONS(12402), 1, + anon_sym_SEMI, + STATE(1623), 1, + sym_template_argument_list, + [279646] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(12221), 1, - anon_sym_DQUOTE, - ACTIONS(12223), 1, - aux_sym_string_literal_token1, - ACTIONS(12225), 1, - sym_escape_sequence, - STATE(6960), 1, - aux_sym_string_literal_repeat1, - [273494] = 5, + ACTIONS(1954), 1, + anon_sym_LBRACE, + ACTIONS(5845), 1, + anon_sym_LPAREN2, + STATE(2452), 1, + sym_argument_list, + STATE(2460), 1, + sym_initializer_list, + [279662] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5222), 1, + ACTIONS(5234), 1, anon_sym_LBRACE, - ACTIONS(12130), 1, + ACTIONS(12214), 1, anon_sym_COLON_COLON, - ACTIONS(12227), 1, + ACTIONS(12404), 1, anon_sym_EQ, - STATE(658), 1, + STATE(505), 1, sym_declaration_list, - [273510] = 5, + [279678] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5026), 1, - anon_sym_LT, - ACTIONS(12062), 1, - sym_identifier, - STATE(837), 1, - sym_template_parameter_list, - STATE(1910), 1, - sym_template_type, - [273526] = 5, + ACTIONS(5563), 1, + anon_sym_COLON, + ACTIONS(6035), 1, + anon_sym_LBRACE, + STATE(5199), 1, + sym_field_declaration_list, + STATE(7977), 1, + sym_base_class_clause, + [279694] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5499), 1, + ACTIONS(5563), 1, anon_sym_COLON, - ACTIONS(6362), 1, + ACTIONS(6035), 1, anon_sym_LBRACE, - STATE(2578), 1, + STATE(5205), 1, sym_field_declaration_list, - STATE(7621), 1, + STATE(7979), 1, sym_base_class_clause, - [273542] = 3, + [279710] = 5, + ACTIONS(10057), 1, + sym_comment, + ACTIONS(12406), 1, + anon_sym_DQUOTE, + ACTIONS(12408), 1, + aux_sym_string_literal_token1, + ACTIONS(12410), 1, + sym_escape_sequence, + STATE(7217), 1, + aux_sym_string_literal_repeat1, + [279726] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12229), 1, + ACTIONS(12412), 1, sym_identifier, - ACTIONS(12231), 3, + ACTIONS(12414), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_GT2, - [273554] = 4, + [279738] = 5, + ACTIONS(10057), 1, + sym_comment, + ACTIONS(12134), 1, + anon_sym_LPAREN, + ACTIONS(12416), 1, + aux_sym_preproc_include_token2, + ACTIONS(12418), 1, + sym_preproc_arg, + STATE(8006), 1, + sym_preproc_params, + [279754] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12420), 1, + anon_sym___except, + ACTIONS(12422), 1, + anon_sym___finally, + STATE(420), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [279768] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(12233), 1, + ACTIONS(12424), 1, anon_sym_EQ, - STATE(5795), 2, + STATE(5943), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [273568] = 4, + [279782] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(11502), 1, - anon_sym_EQ, - STATE(7034), 2, + ACTIONS(12426), 1, + anon_sym_using, + STATE(5943), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [273582] = 4, + [279796] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8147), 1, - anon_sym_LPAREN2, - STATE(7564), 1, - sym_argument_list, - ACTIONS(12235), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [273596] = 5, - ACTIONS(10118), 1, - sym_comment, - ACTIONS(12237), 1, - anon_sym_DQUOTE, - ACTIONS(12239), 1, - aux_sym_string_literal_token1, - ACTIONS(12241), 1, - sym_escape_sequence, - STATE(7130), 1, - aux_sym_string_literal_repeat1, - [273612] = 3, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11610), 1, + anon_sym_EQ, + STATE(7194), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [279810] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12245), 1, + ACTIONS(8723), 1, anon_sym___attribute, - ACTIONS(12243), 3, + ACTIONS(8721), 3, anon_sym_COMMA, anon_sym_SEMI, anon_sym___attribute__, - [273624] = 4, - ACTIONS(10118), 1, - sym_comment, - ACTIONS(12247), 1, - anon_sym_SQUOTE, - STATE(7020), 1, - aux_sym_char_literal_repeat1, - ACTIONS(12015), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [273638] = 5, + [279822] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5026), 1, - anon_sym_LT, - ACTIONS(12062), 1, - sym_identifier, - STATE(835), 1, - sym_template_parameter_list, - STATE(1910), 1, - sym_template_type, - [273654] = 5, - ACTIONS(10118), 1, - sym_comment, - ACTIONS(11995), 1, - aux_sym_string_literal_token1, - ACTIONS(11997), 1, - sym_escape_sequence, - ACTIONS(12249), 1, - anon_sym_DQUOTE, - STATE(7039), 1, - aux_sym_string_literal_repeat1, - [273670] = 4, + ACTIONS(5563), 1, + anon_sym_COLON, + ACTIONS(8630), 1, + anon_sym_LBRACE, + STATE(4516), 1, + sym_field_declaration_list, + STATE(8022), 1, + sym_base_class_clause, + [279838] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(12251), 1, + ACTIONS(12428), 1, anon_sym_EQ, - STATE(5795), 2, + STATE(5943), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [273684] = 4, + [279852] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(11547), 1, + ACTIONS(11590), 1, anon_sym_EQ, - STATE(7046), 2, + STATE(7209), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [273698] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8707), 1, - anon_sym_COMMA, - ACTIONS(11981), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12253), 1, - anon_sym_GT2, - STATE(7330), 1, - aux_sym_template_argument_list_repeat1, - [273714] = 5, - ACTIONS(10118), 1, - sym_comment, - ACTIONS(12039), 1, - anon_sym_LPAREN, - ACTIONS(12255), 1, - aux_sym_preproc_include_token2, - ACTIONS(12257), 1, - sym_preproc_arg, - STATE(7897), 1, - sym_preproc_params, - [273730] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11043), 1, - sym_identifier, - ACTIONS(12259), 1, - aux_sym_preproc_if_token2, - STATE(6705), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(8666), 1, - sym_enumerator, - [273746] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10889), 1, - sym_identifier, - ACTIONS(12261), 1, - aux_sym_preproc_if_token2, - STATE(6706), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - [273760] = 5, - ACTIONS(10118), 1, + [279866] = 4, + ACTIONS(10057), 1, sym_comment, - ACTIONS(12263), 1, - anon_sym_DQUOTE, - ACTIONS(12265), 1, - aux_sym_string_literal_token1, - ACTIONS(12267), 1, + ACTIONS(12430), 1, + anon_sym_SQUOTE, + STATE(7120), 1, + aux_sym_char_literal_repeat1, + ACTIONS(12023), 2, + aux_sym_char_literal_token1, sym_escape_sequence, - STATE(7089), 1, - aux_sym_string_literal_repeat1, - [273776] = 5, - ACTIONS(10118), 1, + [279880] = 5, + ACTIONS(10057), 1, sym_comment, - ACTIONS(12269), 1, - anon_sym_DQUOTE, - ACTIONS(12271), 1, + ACTIONS(12044), 1, aux_sym_string_literal_token1, - ACTIONS(12273), 1, + ACTIONS(12046), 1, sym_escape_sequence, + ACTIONS(12432), 1, + anon_sym_DQUOTE, STATE(7124), 1, aux_sym_string_literal_repeat1, - [273792] = 4, + [279896] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(12275), 1, + ACTIONS(12434), 1, anon_sym_EQ, - STATE(5795), 2, + STATE(5943), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [273806] = 4, + [279910] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(11494), 1, + ACTIONS(11567), 1, anon_sym_EQ, - STATE(7071), 2, + STATE(7214), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [273820] = 5, - ACTIONS(10118), 1, - sym_comment, - ACTIONS(11995), 1, - aux_sym_string_literal_token1, - ACTIONS(11997), 1, - sym_escape_sequence, - ACTIONS(12277), 1, - anon_sym_DQUOTE, - STATE(7039), 1, - aux_sym_string_literal_repeat1, - [273836] = 5, + [279924] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(10917), 1, - anon_sym_COLON, - STATE(7448), 1, - sym_compound_statement, - STATE(7753), 1, - sym_field_initializer_list, - [273852] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, + ACTIONS(12064), 1, + anon_sym_LPAREN2, + ACTIONS(12436), 1, anon_sym_LBRACE, - ACTIONS(10917), 1, - anon_sym_COLON, - STATE(7167), 1, - sym_compound_statement, - STATE(7717), 1, - sym_field_initializer_list, - [273868] = 4, + STATE(5644), 1, + sym_requirement_seq, + STATE(7718), 1, + sym_requires_parameter_list, + [279940] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(12279), 1, - anon_sym_using, - STATE(5795), 2, + ACTIONS(12438), 1, + anon_sym_EQ, + STATE(5943), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [273882] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12112), 1, - anon_sym_COMMA, - ACTIONS(12281), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12283), 1, - anon_sym_LBRACE, - STATE(7545), 1, - aux_sym_base_class_clause_repeat1, - [273898] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8707), 1, - anon_sym_COMMA, - ACTIONS(11981), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12285), 1, - anon_sym_GT2, - STATE(7190), 1, - aux_sym_template_argument_list_repeat1, - [273914] = 5, + [279954] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5026), 1, - anon_sym_LT, - ACTIONS(12062), 1, - sym_identifier, - STATE(834), 1, - sym_template_parameter_list, - STATE(1910), 1, - sym_template_type, - [273930] = 4, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11614), 1, + anon_sym_EQ, + STATE(7223), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [279968] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(12287), 1, + ACTIONS(12440), 1, anon_sym_EQ, - STATE(5795), 2, + STATE(5943), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [273944] = 4, + [279982] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(11571), 1, + ACTIONS(11598), 1, anon_sym_EQ, - STATE(7075), 2, + STATE(7225), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [273958] = 5, - ACTIONS(10118), 1, - sym_comment, - ACTIONS(12289), 1, - anon_sym_DQUOTE, - ACTIONS(12291), 1, - aux_sym_string_literal_token1, - ACTIONS(12293), 1, - sym_escape_sequence, - STATE(6950), 1, - aux_sym_string_literal_repeat1, - [273974] = 5, - ACTIONS(10118), 1, - sym_comment, - ACTIONS(11995), 1, - aux_sym_string_literal_token1, - ACTIONS(11997), 1, - sym_escape_sequence, - ACTIONS(12295), 1, - anon_sym_DQUOTE, - STATE(7039), 1, - aux_sym_string_literal_repeat1, - [273990] = 4, + [279996] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(12297), 1, + ACTIONS(12442), 1, anon_sym_EQ, - STATE(5795), 2, + STATE(5943), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [274004] = 4, + [280010] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(11575), 1, + ACTIONS(11552), 1, anon_sym_EQ, - STATE(7079), 2, + STATE(7227), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [274018] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4167), 1, - anon_sym_COLON_COLON, - ACTIONS(6630), 1, - anon_sym_LT, - ACTIONS(12299), 1, - anon_sym_SEMI, - STATE(1603), 1, - sym_template_argument_list, - [274034] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11043), 1, - sym_identifier, - ACTIONS(11899), 1, - aux_sym_preproc_if_token2, - STATE(7058), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(8666), 1, - sym_enumerator, - [274050] = 4, + [280024] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(12301), 1, + ACTIONS(12444), 1, anon_sym_EQ, - STATE(5795), 2, + STATE(5943), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [274064] = 5, - ACTIONS(10118), 1, - sym_comment, - ACTIONS(12039), 1, - anon_sym_LPAREN, - ACTIONS(12303), 1, - aux_sym_preproc_include_token2, - ACTIONS(12305), 1, - sym_preproc_arg, - STATE(7588), 1, - sym_preproc_params, - [274080] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8707), 1, - anon_sym_COMMA, - ACTIONS(11981), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12307), 1, - anon_sym_GT2, - STATE(7326), 1, - aux_sym_template_argument_list_repeat1, - [274096] = 5, - ACTIONS(10118), 1, - sym_comment, - ACTIONS(12309), 1, - anon_sym_DQUOTE, - ACTIONS(12311), 1, - aux_sym_string_literal_token1, - ACTIONS(12313), 1, - sym_escape_sequence, - STATE(6966), 1, - aux_sym_string_literal_repeat1, - [274112] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8707), 1, - anon_sym_COMMA, - ACTIONS(11981), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12315), 1, - anon_sym_GT2, - STATE(7205), 1, - aux_sym_template_argument_list_repeat1, - [274128] = 5, + [280038] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5499), 1, + ACTIONS(5563), 1, anon_sym_COLON, - ACTIONS(6542), 1, + ACTIONS(6530), 1, anon_sym_LBRACE, - STATE(3615), 1, + STATE(3673), 1, sym_field_declaration_list, - STATE(7882), 1, + STATE(8012), 1, sym_base_class_clause, - [274144] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12317), 1, - anon_sym___except, - ACTIONS(12319), 1, - anon_sym___finally, - STATE(502), 2, - sym_seh_except_clause, - sym_seh_finally_clause, - [274158] = 5, + [280054] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5499), 1, + ACTIONS(5563), 1, anon_sym_COLON, - ACTIONS(6542), 1, + ACTIONS(6530), 1, anon_sym_LBRACE, - STATE(3619), 1, + STATE(3677), 1, sym_field_declaration_list, - STATE(7883), 1, + STATE(8013), 1, sym_base_class_clause, - [274174] = 4, - ACTIONS(10118), 1, - sym_comment, - ACTIONS(12321), 1, - anon_sym_SQUOTE, - STATE(7020), 1, - aux_sym_char_literal_repeat1, - ACTIONS(12015), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [274188] = 5, - ACTIONS(10118), 1, - sym_comment, - ACTIONS(12039), 1, - anon_sym_LPAREN, - ACTIONS(12323), 1, - aux_sym_preproc_include_token2, - ACTIONS(12325), 1, - sym_preproc_arg, - STATE(7678), 1, - sym_preproc_params, - [274204] = 5, - ACTIONS(10118), 1, - sym_comment, - ACTIONS(11995), 1, - aux_sym_string_literal_token1, - ACTIONS(11997), 1, - sym_escape_sequence, - ACTIONS(12327), 1, - anon_sym_DQUOTE, - STATE(7039), 1, - aux_sym_string_literal_repeat1, - [274220] = 5, + [280070] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2499), 1, - anon_sym_LBRACE, - ACTIONS(6979), 1, - anon_sym_LPAREN2, - STATE(3541), 1, - sym_initializer_list, - STATE(3598), 1, - sym_argument_list, - [274236] = 4, + ACTIONS(4187), 1, + anon_sym_COLON_COLON, + ACTIONS(6580), 1, + anon_sym_LT, + ACTIONS(12446), 1, + anon_sym_SEMI, + STATE(1623), 1, + sym_template_argument_list, + [280086] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10889), 1, + ACTIONS(11085), 1, sym_identifier, - ACTIONS(12329), 1, + ACTIONS(12448), 1, aux_sym_preproc_if_token2, - STATE(7059), 2, + STATE(6821), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(8369), 1, sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - [274250] = 4, + [280102] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12331), 1, - anon_sym_COMMA, - STATE(7092), 1, - aux_sym_gnu_asm_input_operand_list_repeat1, - ACTIONS(12334), 2, - anon_sym_RPAREN, + ACTIONS(5563), 1, anon_sym_COLON, - [274264] = 4, + ACTIONS(8630), 1, + anon_sym_LBRACE, + STATE(4605), 1, + sym_field_declaration_list, + STATE(7715), 1, + sym_base_class_clause, + [280118] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11985), 1, + ACTIONS(12076), 1, anon_sym_COMMA, - STATE(6935), 1, - aux_sym_gnu_asm_input_operand_list_repeat1, - ACTIONS(12336), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [274278] = 5, + ACTIONS(12450), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12452), 1, + anon_sym_LBRACE, + STATE(7399), 1, + aux_sym_base_class_clause_repeat1, + [280134] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8707), 1, + ACTIONS(8742), 1, anon_sym_COMMA, - ACTIONS(11981), 1, + ACTIONS(12050), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12338), 1, + ACTIONS(12454), 1, anon_sym_GT2, - STATE(7231), 1, + STATE(7379), 1, aux_sym_template_argument_list_repeat1, - [274294] = 5, + [280150] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5499), 1, + ACTIONS(12456), 1, + anon_sym_COMMA, + STATE(7235), 1, + aux_sym_gnu_asm_input_operand_list_repeat1, + ACTIONS(12459), 2, + anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(7520), 1, - anon_sym_LBRACE, - STATE(3960), 1, - sym_field_declaration_list, - STATE(7573), 1, - sym_base_class_clause, - [274310] = 5, + [280164] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10909), 1, + sym_identifier, + ACTIONS(12461), 1, + aux_sym_preproc_if_token2, + STATE(6771), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + [280178] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5499), 1, + ACTIONS(12384), 1, + anon_sym_COMMA, + STATE(7041), 1, + aux_sym_gnu_asm_clobber_list_repeat1, + ACTIONS(12463), 2, + anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(8615), 1, - anon_sym_LBRACE, - STATE(4539), 1, - sym_field_declaration_list, - STATE(7833), 1, - sym_base_class_clause, - [274326] = 4, + [280192] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5034), 1, + anon_sym_LT, + ACTIONS(12048), 1, + sym_identifier, + STATE(851), 1, + sym_template_parameter_list, + STATE(1923), 1, + sym_template_type, + [280208] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(12340), 1, - anon_sym_EQ, - STATE(5795), 2, + ACTIONS(12465), 1, + anon_sym_using, + STATE(5943), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [274340] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4167), 1, - anon_sym_COLON_COLON, - ACTIONS(4965), 1, - anon_sym_SEMI, - ACTIONS(6630), 1, - anon_sym_LT, - STATE(1701), 1, - sym_template_argument_list, - [274356] = 5, + [280222] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2609), 1, + ACTIONS(9766), 1, anon_sym_LBRACE, - ACTIONS(6864), 1, + ACTIONS(12064), 1, anon_sym_LPAREN2, - STATE(3421), 1, - sym_argument_list, - STATE(3912), 1, - sym_initializer_list, - [274372] = 5, + STATE(3268), 1, + sym_requirement_seq, + STATE(7742), 1, + sym_requires_parameter_list, + [280238] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4167), 1, - anon_sym_COLON_COLON, - ACTIONS(6630), 1, - anon_sym_LT, - ACTIONS(12342), 1, - anon_sym_SEMI, - STATE(1603), 1, - sym_template_argument_list, - [274388] = 5, + ACTIONS(9758), 1, + anon_sym_LBRACE, + ACTIONS(12064), 1, + anon_sym_LPAREN2, + STATE(3704), 1, + sym_requirement_seq, + STATE(7904), 1, + sym_requires_parameter_list, + [280254] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8707), 1, + ACTIONS(8742), 1, anon_sym_COMMA, - ACTIONS(11981), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12344), 1, + ACTIONS(12467), 1, anon_sym_GT2, - STATE(7504), 1, + STATE(7446), 1, aux_sym_template_argument_list_repeat1, - [274404] = 5, - ACTIONS(10118), 1, + [280267] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(12346), 1, - anon_sym_DQUOTE, - ACTIONS(12348), 1, - aux_sym_string_literal_token1, - ACTIONS(12350), 1, + ACTIONS(12469), 1, + anon_sym_RPAREN, + ACTIONS(12471), 1, + anon_sym_COLON, + STATE(8299), 1, + sym_gnu_asm_goto_list, + [280280] = 3, + ACTIONS(10057), 1, + sym_comment, + STATE(7106), 1, + aux_sym_char_literal_repeat1, + ACTIONS(12473), 2, + aux_sym_char_literal_token1, sym_escape_sequence, - STATE(6952), 1, - aux_sym_string_literal_repeat1, - [274420] = 5, + [280291] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4167), 1, - anon_sym_COLON_COLON, - ACTIONS(6630), 1, - anon_sym_LT, - ACTIONS(12352), 1, - anon_sym_SEMI, - STATE(1603), 1, - sym_template_argument_list, - [274436] = 4, + ACTIONS(8820), 1, + anon_sym_COMMA, + ACTIONS(12475), 1, + anon_sym_RPAREN, + STATE(7344), 1, + aux_sym_generic_expression_repeat1, + [280304] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8147), 1, - anon_sym_LPAREN2, - STATE(7742), 1, - sym_argument_list, - ACTIONS(12354), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [274450] = 5, + ACTIONS(12477), 1, + anon_sym_catch, + STATE(364), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [280315] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4167), 1, - anon_sym_COLON_COLON, - ACTIONS(6630), 1, - anon_sym_LT, - ACTIONS(12356), 1, - anon_sym_SEMI, - STATE(1603), 1, - sym_template_argument_list, - [274466] = 5, + ACTIONS(12479), 1, + sym_identifier, + STATE(1923), 1, + sym_template_type, + STATE(2675), 1, + sym_template_function, + [280328] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8707), 1, + ACTIONS(12481), 3, anon_sym_COMMA, - ACTIONS(11981), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12358), 1, + anon_sym_RPAREN, anon_sym_GT2, - STATE(7173), 1, - aux_sym_template_argument_list_repeat1, - [274482] = 4, + [280337] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11989), 1, - anon_sym_COMMA, - STATE(6962), 1, - aux_sym_gnu_asm_clobber_list_repeat1, - ACTIONS(12360), 2, + ACTIONS(12483), 1, anon_sym_RPAREN, + ACTIONS(12485), 1, anon_sym_COLON, - [274496] = 5, - ACTIONS(10118), 1, - sym_comment, - ACTIONS(12362), 1, - anon_sym_DQUOTE, - ACTIONS(12364), 1, - aux_sym_string_literal_token1, - ACTIONS(12366), 1, - sym_escape_sequence, - STATE(6937), 1, - aux_sym_string_literal_repeat1, - [274512] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12368), 1, - anon_sym___except, - ACTIONS(12370), 1, - anon_sym___finally, - STATE(413), 2, - sym_seh_except_clause, - sym_seh_finally_clause, - [274526] = 5, + STATE(7269), 1, + sym_gnu_asm_clobber_list, + [280350] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4167), 1, - anon_sym_COLON_COLON, - ACTIONS(6630), 1, - anon_sym_LT, - ACTIONS(12372), 1, + ACTIONS(10063), 1, + anon_sym_COMMA, + ACTIONS(12487), 1, anon_sym_SEMI, - STATE(1603), 1, - sym_template_argument_list, - [274542] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5499), 1, - anon_sym_COLON, - ACTIONS(6692), 1, - anon_sym_LBRACE, - STATE(2848), 1, - sym_field_declaration_list, - STATE(7899), 1, - sym_base_class_clause, - [274558] = 5, + STATE(7304), 1, + aux_sym_declaration_repeat1, + [280363] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5499), 1, - anon_sym_COLON, - ACTIONS(6793), 1, + ACTIONS(12076), 1, + anon_sym_COMMA, + ACTIONS(12248), 1, anon_sym_LBRACE, - STATE(2984), 1, - sym_field_declaration_list, - STATE(7721), 1, - sym_base_class_clause, - [274574] = 5, + STATE(7261), 1, + aux_sym_base_class_clause_repeat1, + [280376] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5499), 1, - anon_sym_COLON, - ACTIONS(6499), 1, - anon_sym_LBRACE, - STATE(2816), 1, - sym_field_declaration_list, - STATE(7612), 1, - sym_base_class_clause, - [274590] = 5, + ACTIONS(12489), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT2, + [280385] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5026), 1, - anon_sym_LT, - ACTIONS(12062), 1, + ACTIONS(12491), 1, sym_identifier, - STATE(1910), 1, + STATE(1923), 1, sym_template_type, - STATE(6869), 1, - sym_template_parameter_list, - [274606] = 5, + STATE(2675), 1, + sym_template_function, + [280398] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5026), 1, - anon_sym_LT, - ACTIONS(12062), 1, - sym_identifier, - STATE(838), 1, - sym_template_parameter_list, - STATE(1910), 1, - sym_template_type, - [274622] = 4, + ACTIONS(10063), 1, + anon_sym_COMMA, + ACTIONS(12493), 1, + anon_sym_SEMI, + STATE(7683), 1, + aux_sym_declaration_repeat1, + [280411] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12374), 1, - anon_sym_COMMA, - STATE(7116), 1, - aux_sym_gnu_asm_output_operand_list_repeat1, - ACTIONS(12377), 2, + ACTIONS(12495), 1, anon_sym_RPAREN, + ACTIONS(12497), 1, anon_sym_COLON, - [274636] = 5, - ACTIONS(10118), 1, + STATE(7271), 1, + sym_gnu_asm_input_operand_list, + [280424] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(12379), 1, - anon_sym_DQUOTE, - ACTIONS(12381), 1, - aux_sym_string_literal_token1, - ACTIONS(12383), 1, - sym_escape_sequence, - STATE(7074), 1, - aux_sym_string_literal_repeat1, - [274652] = 4, + ACTIONS(12499), 1, + anon_sym_default, + ACTIONS(12501), 1, + anon_sym_delete, + ACTIONS(12503), 1, + aux_sym_pure_virtual_clause_token1, + [280437] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(12385), 1, - anon_sym_EQ, - STATE(5795), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [274666] = 5, + ACTIONS(12505), 1, + anon_sym_default, + ACTIONS(12507), 1, + anon_sym_delete, + ACTIONS(12509), 1, + aux_sym_pure_virtual_clause_token1, + [280450] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8707), 1, + ACTIONS(8937), 1, + anon_sym_RBRACE, + ACTIONS(12511), 1, anon_sym_COMMA, - ACTIONS(11981), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12387), 1, - anon_sym_GT2, - STATE(7553), 1, - aux_sym_template_argument_list_repeat1, - [274682] = 4, + STATE(7258), 1, + aux_sym_initializer_list_repeat1, + [280463] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12185), 1, + ACTIONS(12076), 1, anon_sym_COMMA, - STATE(7116), 1, - aux_sym_gnu_asm_output_operand_list_repeat1, - ACTIONS(12389), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [274696] = 5, + ACTIONS(12248), 1, + anon_sym_LBRACE, + STATE(7309), 1, + aux_sym_base_class_clause_repeat1, + [280476] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9756), 1, - anon_sym_LBRACE, - ACTIONS(12072), 1, - anon_sym_LPAREN2, - STATE(3916), 1, - sym_requirement_seq, - STATE(7583), 1, - sym_requires_parameter_list, - [274712] = 5, + ACTIONS(12514), 1, + anon_sym_COMMA, + ACTIONS(12517), 1, + anon_sym_GT2, + STATE(7260), 1, + aux_sym_template_parameter_list_repeat1, + [280489] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12112), 1, + ACTIONS(12076), 1, anon_sym_COMMA, - ACTIONS(12391), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12393), 1, + ACTIONS(12078), 1, anon_sym_LBRACE, - STATE(7150), 1, + STATE(7309), 1, aux_sym_base_class_clause_repeat1, - [274728] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12395), 1, - anon_sym___except, - ACTIONS(12397), 1, - anon_sym___finally, - STATE(268), 2, - sym_seh_except_clause, - sym_seh_finally_clause, - [274742] = 5, - ACTIONS(10118), 1, - sym_comment, - ACTIONS(11995), 1, - aux_sym_string_literal_token1, - ACTIONS(11997), 1, - sym_escape_sequence, - ACTIONS(12399), 1, - anon_sym_DQUOTE, - STATE(7039), 1, - aux_sym_string_literal_repeat1, - [274758] = 5, - ACTIONS(10118), 1, - sym_comment, - ACTIONS(12401), 1, - anon_sym_DQUOTE, - ACTIONS(12403), 1, - aux_sym_string_literal_token1, - ACTIONS(12405), 1, - sym_escape_sequence, - STATE(7018), 1, - aux_sym_string_literal_repeat1, - [274774] = 5, + [280502] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5499), 1, - anon_sym_COLON, - ACTIONS(6499), 1, + ACTIONS(12076), 1, + anon_sym_COMMA, + ACTIONS(12078), 1, anon_sym_LBRACE, - STATE(2815), 1, - sym_field_declaration_list, - STATE(7772), 1, - sym_base_class_clause, - [274790] = 5, + STATE(7393), 1, + aux_sym_base_class_clause_repeat1, + [280515] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5499), 1, - anon_sym_COLON, - ACTIONS(6793), 1, - anon_sym_LBRACE, - STATE(3097), 1, - sym_field_declaration_list, - STATE(7693), 1, - sym_base_class_clause, - [274806] = 4, + ACTIONS(12519), 1, + anon_sym_COMMA, + ACTIONS(12522), 1, + anon_sym_RBRACK_RBRACK, + STATE(7263), 1, + aux_sym_attribute_declaration_repeat1, + [280528] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(12407), 1, - anon_sym_using, - STATE(5795), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [274820] = 5, + ACTIONS(12524), 1, + sym_identifier, + STATE(1923), 1, + sym_template_type, + STATE(2675), 1, + sym_template_function, + [280541] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8707), 1, + ACTIONS(10063), 1, anon_sym_COMMA, - ACTIONS(11981), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12409), 1, - anon_sym_GT2, - STATE(7390), 1, - aux_sym_template_argument_list_repeat1, - [274836] = 5, - ACTIONS(10118), 1, - sym_comment, - ACTIONS(11995), 1, - aux_sym_string_literal_token1, - ACTIONS(11997), 1, - sym_escape_sequence, - ACTIONS(12411), 1, - anon_sym_DQUOTE, - STATE(7039), 1, - aux_sym_string_literal_repeat1, - [274852] = 4, + ACTIONS(12526), 1, + anon_sym_SEMI, + STATE(7684), 1, + aux_sym_declaration_repeat1, + [280554] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(12413), 1, - anon_sym_EQ, - STATE(7054), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [274866] = 5, + ACTIONS(10063), 1, + anon_sym_COMMA, + ACTIONS(12528), 1, + anon_sym_SEMI, + STATE(7684), 1, + aux_sym_declaration_repeat1, + [280567] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5232), 1, + ACTIONS(12530), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12532), 2, + anon_sym_COMMA, anon_sym_LBRACE, - ACTIONS(12130), 1, - anon_sym_COLON_COLON, - ACTIONS(12415), 1, - anon_sym_EQ, - STATE(516), 1, - sym_declaration_list, - [274882] = 5, + [280578] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4167), 1, - anon_sym_COLON_COLON, - ACTIONS(6630), 1, - anon_sym_LT, - ACTIONS(12417), 1, + ACTIONS(10063), 1, + anon_sym_COMMA, + ACTIONS(12534), 1, anon_sym_SEMI, - STATE(1603), 1, - sym_template_argument_list, - [274898] = 4, - ACTIONS(10118), 1, + STATE(7684), 1, + aux_sym_declaration_repeat1, + [280591] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(12419), 1, - anon_sym_SQUOTE, - STATE(7020), 1, - aux_sym_char_literal_repeat1, - ACTIONS(12015), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [274912] = 5, + ACTIONS(12471), 1, + anon_sym_COLON, + ACTIONS(12536), 1, + anon_sym_RPAREN, + STATE(8680), 1, + sym_gnu_asm_goto_list, + [280604] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9764), 1, - anon_sym_LBRACE, - ACTIONS(12072), 1, - anon_sym_LPAREN2, - STATE(3475), 1, - sym_requirement_seq, - STATE(7862), 1, - sym_requires_parameter_list, - [274928] = 4, + ACTIONS(2607), 1, + anon_sym_while, + ACTIONS(12538), 1, + anon_sym_else, + STATE(350), 1, + sym_else_clause, + [280617] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12421), 1, - anon_sym_COMMA, - ACTIONS(12423), 1, - anon_sym_RBRACK_RBRACK, - STATE(7184), 1, - aux_sym_attribute_declaration_repeat1, - [274941] = 4, + ACTIONS(12485), 1, + anon_sym_COLON, + ACTIONS(12540), 1, + anon_sym_RPAREN, + STATE(7278), 1, + sym_gnu_asm_clobber_list, + [280630] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8759), 1, + ACTIONS(8782), 1, anon_sym_COMMA, - ACTIONS(12425), 1, + ACTIONS(12542), 1, anon_sym_RPAREN, - STATE(7243), 1, - aux_sym_generic_expression_repeat1, - [274954] = 4, + STATE(7403), 1, + aux_sym_argument_list_repeat1, + [280643] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12544), 1, + sym_identifier, + STATE(1923), 1, + sym_template_type, + STATE(3542), 1, + sym_template_function, + [280656] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12421), 1, + ACTIONS(12546), 1, anon_sym_COMMA, - ACTIONS(12427), 1, + ACTIONS(12548), 1, anon_sym_RBRACK_RBRACK, - STATE(7395), 1, + STATE(7263), 1, aux_sym_attribute_declaration_repeat1, - [274967] = 3, + [280669] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12429), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12431), 2, - anon_sym_COMMA, - anon_sym_LBRACE, - [274978] = 4, + ACTIONS(6694), 1, + anon_sym___attribute, + ACTIONS(6696), 2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [280680] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8751), 1, + ACTIONS(8782), 1, anon_sym_COMMA, - ACTIONS(8880), 1, + ACTIONS(8786), 1, anon_sym_RPAREN, - STATE(7175), 1, + STATE(7318), 1, aux_sym_argument_list_repeat1, - [274991] = 4, + [280693] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6698), 1, + anon_sym___attribute, + ACTIONS(6700), 2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [280704] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12471), 1, + anon_sym_COLON, + ACTIONS(12550), 1, + anon_sym_RPAREN, + STATE(8800), 1, + sym_gnu_asm_goto_list, + [280717] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5222), 1, + ACTIONS(5230), 1, anon_sym_LBRACE, - ACTIONS(12130), 1, + ACTIONS(12214), 1, anon_sym_COLON_COLON, - STATE(669), 1, + STATE(679), 1, sym_declaration_list, - [275004] = 2, + [280730] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12433), 3, - anon_sym_COMMA, + ACTIONS(12552), 1, anon_sym_RPAREN, + ACTIONS(12554), 1, anon_sym_COLON, - [275013] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12435), 1, - anon_sym_COMMA, - ACTIONS(12437), 1, - anon_sym_LBRACE, - STATE(7459), 1, - aux_sym_field_initializer_list_repeat1, - [275026] = 3, + STATE(7255), 1, + sym_gnu_asm_output_operand_list, + [280743] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12439), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12441), 2, + ACTIONS(12556), 1, anon_sym_COMMA, - anon_sym_LBRACE, - [275037] = 2, + ACTIONS(12559), 1, + anon_sym_RBRACK, + STATE(7281), 1, + aux_sym_structured_binding_declarator_repeat1, + [280756] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12443), 3, + ACTIONS(8742), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [275046] = 4, + ACTIONS(12561), 1, + anon_sym_GT2, + STATE(7320), 1, + aux_sym_template_argument_list_repeat1, + [280769] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8851), 1, + ACTIONS(8788), 1, anon_sym_COMMA, - ACTIONS(8853), 1, + ACTIONS(8790), 1, anon_sym_RBRACE, - STATE(7178), 1, + STATE(7321), 1, aux_sym_initializer_list_repeat1, - [275059] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12445), 1, - sym_identifier, - STATE(1910), 1, - sym_template_type, - STATE(3519), 1, - sym_template_function, - [275072] = 3, + [280782] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6586), 1, - anon_sym___attribute, - ACTIONS(6588), 2, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [275083] = 4, + ACTIONS(12563), 1, + anon_sym_COMMA, + ACTIONS(12565), 1, + anon_sym_RBRACK, + STATE(7436), 1, + aux_sym_lambda_capture_specifier_repeat1, + [280795] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10058), 1, + ACTIONS(12567), 1, anon_sym_COMMA, - ACTIONS(12447), 1, - anon_sym_RPAREN, - STATE(7487), 1, - aux_sym_preproc_argument_list_repeat1, - [275096] = 4, + ACTIONS(12570), 1, + anon_sym_RBRACK, + STATE(7285), 1, + aux_sym_lambda_capture_specifier_repeat1, + [280808] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12112), 1, + ACTIONS(12572), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12574), 2, anon_sym_COMMA, - ACTIONS(12449), 1, anon_sym_LBRACE, - STATE(7318), 1, - aux_sym_base_class_clause_repeat1, - [275109] = 4, + [280819] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8707), 1, - anon_sym_COMMA, - ACTIONS(12451), 1, - anon_sym_GT2, - STATE(7158), 1, - aux_sym_template_argument_list_repeat1, - [275122] = 4, + ACTIONS(12554), 1, + anon_sym_COLON, + ACTIONS(12576), 1, + anon_sym_RPAREN, + STATE(7363), 1, + sym_gnu_asm_output_operand_list, + [280832] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12453), 1, + ACTIONS(8820), 1, anon_sym_COMMA, - ACTIONS(12455), 1, + ACTIONS(12578), 1, anon_sym_RPAREN, - STATE(7257), 1, - aux_sym_gnu_asm_goto_list_repeat1, - [275135] = 4, + STATE(7344), 1, + aux_sym_generic_expression_repeat1, + [280845] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5234), 1, + anon_sym_LBRACE, + ACTIONS(12214), 1, + anon_sym_COLON_COLON, + STATE(502), 1, + sym_declaration_list, + [280858] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8751), 1, + ACTIONS(12580), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12582), 2, anon_sym_COMMA, - ACTIONS(8797), 1, - anon_sym_RPAREN, - STATE(7410), 1, - aux_sym_argument_list_repeat1, - [275148] = 4, + anon_sym_LBRACE, + [280869] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12457), 1, - anon_sym_RPAREN, - ACTIONS(12459), 1, + ACTIONS(6532), 1, + anon_sym___attribute, + ACTIONS(6534), 2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [280880] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12554), 1, anon_sym_COLON, - STATE(7186), 1, + ACTIONS(12584), 1, + anon_sym_RPAREN, + STATE(7324), 1, sym_gnu_asm_output_operand_list, - [275161] = 4, + [280893] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8707), 1, + ACTIONS(8742), 1, anon_sym_COMMA, - ACTIONS(12461), 1, + ACTIONS(12586), 1, anon_sym_GT2, - STATE(7191), 1, + STATE(7369), 1, aux_sym_template_argument_list_repeat1, - [275174] = 4, + [280906] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8707), 1, + ACTIONS(6536), 1, + anon_sym___attribute, + ACTIONS(6538), 2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [280917] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8812), 1, anon_sym_COMMA, - ACTIONS(12463), 1, - anon_sym_GT2, - STATE(7411), 1, - aux_sym_template_argument_list_repeat1, - [275187] = 4, + ACTIONS(8814), 1, + anon_sym_RBRACE, + STATE(7337), 1, + aux_sym_initializer_list_repeat1, + [280930] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8707), 1, + ACTIONS(8742), 1, anon_sym_COMMA, - ACTIONS(12465), 1, + ACTIONS(12588), 1, anon_sym_GT2, - STATE(7411), 1, + STATE(7328), 1, aux_sym_template_argument_list_repeat1, - [275200] = 4, + [280943] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8707), 1, + ACTIONS(12590), 1, anon_sym_COMMA, - ACTIONS(12467), 1, + ACTIONS(12592), 1, + anon_sym_RPAREN, + STATE(7688), 1, + aux_sym_parameter_list_repeat1, + [280956] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8742), 1, + anon_sym_COMMA, + ACTIONS(12594), 1, anon_sym_GT2, - STATE(7411), 1, + STATE(7446), 1, aux_sym_template_argument_list_repeat1, - [275213] = 3, + [280969] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12469), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12471), 2, - anon_sym_COMMA, - anon_sym_LBRACE, - [275224] = 4, + ACTIONS(12471), 1, + anon_sym_COLON, + ACTIONS(12596), 1, + anon_sym_RPAREN, + STATE(8360), 1, + sym_gnu_asm_goto_list, + [280982] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12473), 1, - sym_identifier, - STATE(1910), 1, - sym_template_type, - STATE(2435), 1, - sym_template_function, - [275237] = 4, + ACTIONS(6544), 1, + anon_sym___attribute, + ACTIONS(6546), 2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [280993] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8809), 1, - anon_sym_COMMA, - ACTIONS(8911), 1, - anon_sym_RBRACK, - STATE(7533), 1, - aux_sym_subscript_argument_list_repeat1, - [275250] = 4, + ACTIONS(12598), 1, + anon_sym_catch, + STATE(417), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [281004] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9995), 1, + ACTIONS(10063), 1, anon_sym_COMMA, - ACTIONS(12475), 1, + ACTIONS(12600), 1, anon_sym_SEMI, - STATE(7198), 1, + STATE(7331), 1, aux_sym_declaration_repeat1, - [275263] = 4, + [281017] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9995), 1, + ACTIONS(10063), 1, anon_sym_COMMA, - ACTIONS(12477), 1, + ACTIONS(12602), 1, anon_sym_SEMI, - STATE(7521), 1, + STATE(7684), 1, aux_sym_declaration_repeat1, - [275276] = 4, + [281030] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9995), 1, + ACTIONS(10063), 1, anon_sym_COMMA, - ACTIONS(12479), 1, + ACTIONS(12604), 1, anon_sym_SEMI, - STATE(7521), 1, + STATE(7684), 1, aux_sym_declaration_repeat1, - [275289] = 4, + [281043] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12112), 1, - anon_sym_COMMA, - ACTIONS(12449), 1, - anon_sym_LBRACE, - STATE(7509), 1, - aux_sym_base_class_clause_repeat1, - [275302] = 4, + ACTIONS(6548), 1, + anon_sym___attribute, + ACTIONS(6550), 2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [281054] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12481), 1, + ACTIONS(12590), 1, anon_sym_COMMA, - ACTIONS(12483), 1, + ACTIONS(12606), 1, anon_sym_RPAREN, - STATE(7199), 1, + STATE(7333), 1, aux_sym_parameter_list_repeat1, - [275315] = 3, + [281067] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12485), 1, - anon_sym_catch, - STATE(1862), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [275326] = 3, + ACTIONS(12608), 3, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_DOT, + [281076] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12487), 1, + ACTIONS(12610), 1, anon_sym_catch, - STATE(388), 2, + STATE(1910), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [275337] = 4, + [281087] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12489), 1, - sym_identifier, - STATE(1910), 1, - sym_template_type, - STATE(3254), 1, - sym_template_function, - [275350] = 4, + ACTIONS(12574), 1, + anon_sym_LBRACE, + ACTIONS(12612), 1, + anon_sym_COMMA, + STATE(7309), 1, + aux_sym_base_class_clause_repeat1, + [281100] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6556), 1, + anon_sym___attribute, + ACTIONS(6558), 2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [281111] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12615), 1, + anon_sym_LPAREN2, + ACTIONS(12617), 1, + anon_sym_constexpr, + STATE(212), 1, + sym_condition_clause, + [281124] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12485), 1, + anon_sym_COLON, + ACTIONS(12619), 1, + anon_sym_RPAREN, + STATE(7527), 1, + sym_gnu_asm_clobber_list, + [281137] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8809), 1, + ACTIONS(12546), 1, anon_sym_COMMA, - ACTIONS(12491), 1, - anon_sym_RBRACK, + ACTIONS(12621), 1, + anon_sym_RBRACK_RBRACK, STATE(7465), 1, - aux_sym_subscript_argument_list_repeat1, - [275363] = 4, + aux_sym_attribute_declaration_repeat1, + [281150] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8707), 1, + ACTIONS(4496), 1, + anon_sym_RBRACE, + ACTIONS(12623), 1, anon_sym_COMMA, - ACTIONS(12493), 1, - anon_sym_GT2, - STATE(7174), 1, - aux_sym_template_argument_list_repeat1, - [275376] = 4, + STATE(7258), 1, + aux_sym_initializer_list_repeat1, + [281163] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8707), 1, - anon_sym_COMMA, - ACTIONS(12495), 1, - anon_sym_GT2, - STATE(7411), 1, - aux_sym_template_argument_list_repeat1, - [275389] = 4, + ACTIONS(12625), 1, + sym_identifier, + ACTIONS(12627), 1, + anon_sym_using, + STATE(7313), 1, + sym_attribute, + [281176] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8707), 1, + ACTIONS(8742), 1, anon_sym_COMMA, - ACTIONS(12497), 1, + ACTIONS(12629), 1, anon_sym_GT2, - STATE(7411), 1, + STATE(7446), 1, aux_sym_template_argument_list_repeat1, - [275402] = 4, + [281189] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8707), 1, + ACTIONS(7577), 1, + anon_sym_EQ, + ACTIONS(7575), 2, anon_sym_COMMA, - ACTIONS(12499), 1, anon_sym_GT2, - STATE(7411), 1, - aux_sym_template_argument_list_repeat1, - [275415] = 4, + [281200] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8751), 1, + ACTIONS(8782), 1, anon_sym_COMMA, - ACTIONS(12501), 1, + ACTIONS(12631), 1, anon_sym_RPAREN, - STATE(7279), 1, + STATE(7403), 1, aux_sym_argument_list_repeat1, - [275428] = 4, + [281213] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5222), 1, + ACTIONS(5230), 1, anon_sym_LBRACE, - ACTIONS(12130), 1, + ACTIONS(12214), 1, anon_sym_COLON_COLON, - STATE(685), 1, + STATE(693), 1, sym_declaration_list, - [275441] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12503), 1, - sym_identifier, - STATE(1790), 1, - sym_template_type, - STATE(3519), 1, - sym_template_function, - [275454] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4521), 1, - anon_sym_RBRACE, - ACTIONS(12505), 1, - anon_sym_COMMA, - STATE(7289), 1, - aux_sym_initializer_list_repeat1, - [275467] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8707), 1, - anon_sym_COMMA, - ACTIONS(12507), 1, - anon_sym_GT2, - STATE(7183), 1, - aux_sym_template_argument_list_repeat1, - [275480] = 3, + [281226] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12509), 1, - anon_sym_catch, - STATE(445), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [275491] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8707), 1, - anon_sym_COMMA, - ACTIONS(12511), 1, - anon_sym_GT2, - STATE(7411), 1, - aux_sym_template_argument_list_repeat1, - [275504] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8707), 1, + ACTIONS(8742), 1, anon_sym_COMMA, - ACTIONS(12513), 1, + ACTIONS(12633), 1, anon_sym_GT2, - STATE(7411), 1, + STATE(7446), 1, aux_sym_template_argument_list_repeat1, - [275517] = 4, + [281239] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8707), 1, + ACTIONS(4523), 1, + anon_sym_RBRACE, + ACTIONS(12635), 1, anon_sym_COMMA, - ACTIONS(12515), 1, - anon_sym_GT2, - STATE(7411), 1, - aux_sym_template_argument_list_repeat1, - [275530] = 4, + STATE(7258), 1, + aux_sym_initializer_list_repeat1, + [281252] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12421), 1, + ACTIONS(8782), 1, anon_sym_COMMA, - ACTIONS(12517), 1, - anon_sym_RBRACK_RBRACK, - STATE(7395), 1, - aux_sym_attribute_declaration_repeat1, - [275543] = 4, + ACTIONS(12637), 1, + anon_sym_RPAREN, + STATE(7403), 1, + aux_sym_argument_list_repeat1, + [281265] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12519), 1, - anon_sym_COMMA, - ACTIONS(12521), 1, - anon_sym_RPAREN, - STATE(7470), 1, - aux_sym_throw_specifier_repeat1, - [275556] = 4, + ACTIONS(5232), 1, + anon_sym_LBRACE, + ACTIONS(12214), 1, + anon_sym_COLON_COLON, + STATE(745), 1, + sym_declaration_list, + [281278] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12523), 1, - anon_sym_RPAREN, - ACTIONS(12525), 1, + ACTIONS(12497), 1, anon_sym_COLON, - STATE(7215), 1, + ACTIONS(12639), 1, + anon_sym_RPAREN, + STATE(7341), 1, sym_gnu_asm_input_operand_list, - [275569] = 4, + [281291] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12459), 1, + ACTIONS(12554), 1, anon_sym_COLON, - ACTIONS(12527), 1, + ACTIONS(12641), 1, anon_sym_RPAREN, - STATE(7216), 1, + STATE(7342), 1, sym_gnu_asm_output_operand_list, - [275582] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10586), 1, - anon_sym_requires, - ACTIONS(11514), 1, - anon_sym_LBRACE, - STATE(8318), 1, - sym_requires_clause, - [275595] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8707), 1, - anon_sym_COMMA, - ACTIONS(12529), 1, - anon_sym_GT2, - STATE(7411), 1, - aux_sym_template_argument_list_repeat1, - [275608] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8707), 1, - anon_sym_COMMA, - ACTIONS(12531), 1, - anon_sym_GT2, - STATE(7411), 1, - aux_sym_template_argument_list_repeat1, - [275621] = 4, + [281304] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8707), 1, + ACTIONS(8742), 1, anon_sym_COMMA, - ACTIONS(12533), 1, + ACTIONS(12643), 1, anon_sym_GT2, - STATE(7411), 1, + STATE(7446), 1, aux_sym_template_argument_list_repeat1, - [275634] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12535), 1, - sym_identifier, - STATE(1790), 1, - sym_template_type, - STATE(2435), 1, - sym_template_function, - [275647] = 4, + [281317] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8707), 1, + ACTIONS(8742), 1, anon_sym_COMMA, - ACTIONS(12537), 1, + ACTIONS(12645), 1, anon_sym_GT2, - STATE(7196), 1, + STATE(7446), 1, aux_sym_template_argument_list_repeat1, - [275660] = 4, + [281330] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8707), 1, + ACTIONS(8742), 1, anon_sym_COMMA, - ACTIONS(12539), 1, + ACTIONS(12647), 1, anon_sym_GT2, - STATE(7411), 1, + STATE(7446), 1, aux_sym_template_argument_list_repeat1, - [275673] = 4, + [281343] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8707), 1, + ACTIONS(10063), 1, anon_sym_COMMA, - ACTIONS(12541), 1, - anon_sym_GT2, - STATE(7411), 1, - aux_sym_template_argument_list_repeat1, - [275686] = 4, + ACTIONS(12649), 1, + anon_sym_SEMI, + STATE(7343), 1, + aux_sym_declaration_repeat1, + [281356] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8707), 1, + ACTIONS(10063), 1, anon_sym_COMMA, - ACTIONS(12543), 1, - anon_sym_GT2, - STATE(7411), 1, - aux_sym_template_argument_list_repeat1, - [275699] = 4, + ACTIONS(12651), 1, + anon_sym_SEMI, + STATE(7684), 1, + aux_sym_declaration_repeat1, + [281369] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8751), 1, + ACTIONS(10063), 1, anon_sym_COMMA, - ACTIONS(8888), 1, - anon_sym_RPAREN, - STATE(7305), 1, - aux_sym_argument_list_repeat1, - [275712] = 4, + ACTIONS(12653), 1, + anon_sym_SEMI, + STATE(7684), 1, + aux_sym_declaration_repeat1, + [281382] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9995), 1, + ACTIONS(12546), 1, anon_sym_COMMA, - ACTIONS(12545), 1, - anon_sym_SEMI, - STATE(7521), 1, - aux_sym_declaration_repeat1, - [275725] = 4, + ACTIONS(12655), 1, + anon_sym_RBRACK_RBRACK, + STATE(7599), 1, + aux_sym_attribute_declaration_repeat1, + [281395] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12481), 1, + ACTIONS(12590), 1, anon_sym_COMMA, - ACTIONS(12547), 1, + ACTIONS(12657), 1, anon_sym_RPAREN, - STATE(7454), 1, + STATE(7359), 1, aux_sym_parameter_list_repeat1, - [275738] = 3, + [281408] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12485), 1, + ACTIONS(12610), 1, anon_sym_catch, - STATE(1855), 2, + STATE(1869), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [275749] = 4, + [281419] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12459), 1, + ACTIONS(12485), 1, anon_sym_COLON, - ACTIONS(12549), 1, + ACTIONS(12659), 1, anon_sym_RPAREN, - STATE(7290), 1, - sym_gnu_asm_output_operand_list, - [275762] = 4, + STATE(7625), 1, + sym_gnu_asm_clobber_list, + [281432] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12551), 1, - sym_identifier, - STATE(1910), 1, - sym_template_type, - STATE(2774), 1, - sym_template_function, - [275775] = 4, + ACTIONS(12661), 1, + anon_sym_COMMA, + ACTIONS(12664), 1, + anon_sym_RPAREN, + STATE(7336), 1, + aux_sym_requires_parameter_list_repeat1, + [281445] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8707), 1, + ACTIONS(4519), 1, + anon_sym_RBRACE, + ACTIONS(12666), 1, anon_sym_COMMA, - ACTIONS(12553), 1, - anon_sym_GT2, - STATE(7206), 1, - aux_sym_template_argument_list_repeat1, - [275788] = 4, + STATE(7258), 1, + aux_sym_initializer_list_repeat1, + [281458] = 3, + ACTIONS(10057), 1, + sym_comment, + STATE(7111), 1, + aux_sym_char_literal_repeat1, + ACTIONS(12668), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [281469] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8707), 1, - anon_sym_COMMA, - ACTIONS(12555), 1, - anon_sym_GT2, - STATE(7411), 1, - aux_sym_template_argument_list_repeat1, - [275801] = 4, + ACTIONS(9843), 1, + anon_sym_DASH_GT, + ACTIONS(12670), 1, + anon_sym_SEMI, + STATE(8393), 1, + sym_trailing_return_type, + [281482] = 4, + ACTIONS(10057), 1, + sym_comment, + ACTIONS(12672), 1, + aux_sym_preproc_include_token2, + ACTIONS(12674), 1, + anon_sym_LPAREN2, + STATE(8517), 1, + sym_preproc_argument_list, + [281495] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8707), 1, + ACTIONS(12485), 1, + anon_sym_COLON, + ACTIONS(12676), 1, + anon_sym_RPAREN, + STATE(7346), 1, + sym_gnu_asm_clobber_list, + [281508] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12497), 1, + anon_sym_COLON, + ACTIONS(12678), 1, + anon_sym_RPAREN, + STATE(7347), 1, + sym_gnu_asm_input_operand_list, + [281521] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10063), 1, anon_sym_COMMA, - ACTIONS(12557), 1, - anon_sym_GT2, - STATE(7411), 1, - aux_sym_template_argument_list_repeat1, - [275814] = 4, + ACTIONS(12680), 1, + anon_sym_SEMI, + STATE(7684), 1, + aux_sym_declaration_repeat1, + [281534] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8707), 1, + ACTIONS(12682), 1, anon_sym_COMMA, - ACTIONS(12559), 1, - anon_sym_GT2, - STATE(7411), 1, - aux_sym_template_argument_list_repeat1, - [275827] = 4, + ACTIONS(12685), 1, + anon_sym_RPAREN, + STATE(7344), 1, + aux_sym_generic_expression_repeat1, + [281547] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5234), 1, - anon_sym_LBRACE, - ACTIONS(12130), 1, - anon_sym_COLON_COLON, - STATE(318), 1, - sym_declaration_list, - [275840] = 4, + ACTIONS(10063), 1, + anon_sym_COMMA, + ACTIONS(12687), 1, + anon_sym_SEMI, + STATE(7684), 1, + aux_sym_declaration_repeat1, + [281560] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10586), 1, - anon_sym_requires, - ACTIONS(10592), 1, - anon_sym_LBRACE, - STATE(8330), 1, - sym_requires_clause, - [275853] = 4, + ACTIONS(12471), 1, + anon_sym_COLON, + ACTIONS(12689), 1, + anon_sym_RPAREN, + STATE(8126), 1, + sym_gnu_asm_goto_list, + [281573] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8890), 1, - anon_sym_COMMA, - ACTIONS(8892), 1, - anon_sym_RBRACE, - STATE(7307), 1, - aux_sym_initializer_list_repeat1, - [275866] = 4, + ACTIONS(12485), 1, + anon_sym_COLON, + ACTIONS(12691), 1, + anon_sym_RPAREN, + STATE(7348), 1, + sym_gnu_asm_clobber_list, + [281586] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12561), 1, - sym_identifier, - STATE(1910), 1, - sym_template_type, - STATE(2435), 1, - sym_template_function, - [275879] = 4, + ACTIONS(12471), 1, + anon_sym_COLON, + ACTIONS(12693), 1, + anon_sym_RPAREN, + STATE(8136), 1, + sym_gnu_asm_goto_list, + [281599] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8707), 1, + ACTIONS(8820), 1, anon_sym_COMMA, - ACTIONS(12563), 1, - anon_sym_GT2, - STATE(7214), 1, - aux_sym_template_argument_list_repeat1, - [275892] = 4, + ACTIONS(12695), 1, + anon_sym_RPAREN, + STATE(7344), 1, + aux_sym_generic_expression_repeat1, + [281612] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8707), 1, + ACTIONS(12697), 1, anon_sym_COMMA, - ACTIONS(12565), 1, - anon_sym_GT2, - STATE(7411), 1, - aux_sym_template_argument_list_repeat1, - [275905] = 4, + ACTIONS(12700), 1, + anon_sym_RPAREN, + STATE(7350), 1, + aux_sym_throw_specifier_repeat1, + [281625] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8707), 1, - anon_sym_COMMA, - ACTIONS(12567), 1, - anon_sym_GT2, - STATE(7411), 1, - aux_sym_template_argument_list_repeat1, - [275918] = 4, + ACTIONS(10536), 1, + anon_sym_requires, + ACTIONS(12702), 1, + anon_sym_LBRACE, + STATE(8465), 1, + sym_requires_clause, + [281638] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8707), 1, - anon_sym_COMMA, - ACTIONS(12569), 1, - anon_sym_GT2, - STATE(7411), 1, - aux_sym_template_argument_list_repeat1, - [275931] = 4, + ACTIONS(10536), 1, + anon_sym_requires, + ACTIONS(11584), 1, + anon_sym_LBRACE, + STATE(8474), 1, + sym_requires_clause, + [281651] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12571), 1, - anon_sym_RPAREN, - ACTIONS(12573), 1, - anon_sym_COLON, - STATE(7224), 1, - sym_gnu_asm_clobber_list, - [275944] = 4, + ACTIONS(8830), 1, + anon_sym_COMMA, + ACTIONS(8939), 1, + anon_sym_RBRACK, + STATE(7463), 1, + aux_sym_subscript_argument_list_repeat1, + [281664] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12525), 1, + ACTIONS(12497), 1, anon_sym_COLON, - ACTIONS(12575), 1, + ACTIONS(12704), 1, anon_sym_RPAREN, - STATE(7225), 1, + STATE(7637), 1, sym_gnu_asm_input_operand_list, - [275957] = 4, + [281677] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12577), 1, - sym_identifier, - STATE(2557), 1, - sym_template_type, - STATE(3689), 1, - sym_template_function, - [275970] = 4, + ACTIONS(6173), 1, + anon_sym_COMMA, + ACTIONS(12706), 1, + anon_sym_RBRACK, + STATE(7542), 1, + aux_sym_structured_binding_declarator_repeat1, + [281690] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8707), 1, + ACTIONS(8742), 1, anon_sym_COMMA, - ACTIONS(12579), 1, + ACTIONS(12708), 1, anon_sym_GT2, - STATE(7221), 1, + STATE(7539), 1, aux_sym_template_argument_list_repeat1, - [275983] = 4, + [281703] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8707), 1, - anon_sym_COMMA, - ACTIONS(12581), 1, - anon_sym_GT2, - STATE(7411), 1, - aux_sym_template_argument_list_repeat1, - [275996] = 4, + ACTIONS(2617), 1, + anon_sym_while, + ACTIONS(12538), 1, + anon_sym_else, + STATE(385), 1, + sym_else_clause, + [281716] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8707), 1, + ACTIONS(8742), 1, anon_sym_COMMA, - ACTIONS(12583), 1, + ACTIONS(12710), 1, anon_sym_GT2, - STATE(7411), 1, + STATE(7446), 1, aux_sym_template_argument_list_repeat1, - [276009] = 4, + [281729] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8707), 1, + ACTIONS(12712), 1, anon_sym_COMMA, - ACTIONS(12585), 1, - anon_sym_GT2, - STATE(7411), 1, - aux_sym_template_argument_list_repeat1, - [276022] = 4, + ACTIONS(12715), 1, + anon_sym_RPAREN, + STATE(7359), 1, + aux_sym_parameter_list_repeat1, + [281742] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12587), 1, + ACTIONS(12546), 1, anon_sym_COMMA, - ACTIONS(12589), 1, - anon_sym_RBRACK, - STATE(7265), 1, - aux_sym_lambda_capture_specifier_repeat1, - [276035] = 4, + ACTIONS(12717), 1, + anon_sym_RBRACK_RBRACK, + STATE(7480), 1, + aux_sym_attribute_declaration_repeat1, + [281755] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8751), 1, + ACTIONS(12719), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12721), 2, anon_sym_COMMA, - ACTIONS(12591), 1, - anon_sym_RPAREN, - STATE(7279), 1, - aux_sym_argument_list_repeat1, - [276048] = 4, + anon_sym_LBRACE, + [281766] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12593), 1, + ACTIONS(12723), 3, + anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(12595), 1, anon_sym_COLON, - STATE(8098), 1, - sym_gnu_asm_goto_list, - [276061] = 4, + [281775] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12573), 1, + ACTIONS(12497), 1, anon_sym_COLON, - ACTIONS(12597), 1, + ACTIONS(12725), 1, anon_sym_RPAREN, - STATE(7228), 1, - sym_gnu_asm_clobber_list, - [276074] = 4, + STATE(7534), 1, + sym_gnu_asm_input_operand_list, + [281788] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10058), 1, + ACTIONS(12727), 3, anon_sym_COMMA, - ACTIONS(12599), 1, anon_sym_RPAREN, - STATE(7487), 1, - aux_sym_preproc_argument_list_repeat1, - [276087] = 4, + anon_sym_COLON, + [281797] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12554), 1, + anon_sym_COLON, + ACTIONS(12729), 1, + anon_sym_RPAREN, + STATE(7545), 1, + sym_gnu_asm_output_operand_list, + [281810] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12601), 1, + ACTIONS(12731), 1, sym_identifier, - STATE(1910), 1, + STATE(1923), 1, sym_template_type, - STATE(2774), 1, + STATE(3388), 1, sym_template_function, - [276100] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12595), 1, - anon_sym_COLON, - ACTIONS(12603), 1, - anon_sym_RPAREN, - STATE(8143), 1, - sym_gnu_asm_goto_list, - [276113] = 4, + [281823] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8707), 1, + ACTIONS(8742), 1, anon_sym_COMMA, - ACTIONS(12605), 1, + ACTIONS(12733), 1, anon_sym_GT2, - STATE(7232), 1, + STATE(7446), 1, aux_sym_template_argument_list_repeat1, - [276126] = 4, + [281836] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8707), 1, + ACTIONS(8742), 1, anon_sym_COMMA, - ACTIONS(12607), 1, + ACTIONS(12735), 1, anon_sym_GT2, - STATE(7411), 1, + STATE(7446), 1, aux_sym_template_argument_list_repeat1, - [276139] = 4, + [281849] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8707), 1, + ACTIONS(8742), 1, anon_sym_COMMA, - ACTIONS(12609), 1, + ACTIONS(12737), 1, anon_sym_GT2, - STATE(7411), 1, + STATE(7446), 1, aux_sym_template_argument_list_repeat1, - [276152] = 4, + [281862] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8707), 1, + ACTIONS(10063), 1, anon_sym_COMMA, - ACTIONS(12611), 1, - anon_sym_GT2, - STATE(7411), 1, - aux_sym_template_argument_list_repeat1, - [276165] = 4, + ACTIONS(12739), 1, + anon_sym_SEMI, + STATE(7684), 1, + aux_sym_declaration_repeat1, + [281875] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8759), 1, + ACTIONS(10063), 1, anon_sym_COMMA, - ACTIONS(12613), 1, - anon_sym_RPAREN, - STATE(7243), 1, - aux_sym_generic_expression_repeat1, - [276178] = 4, + ACTIONS(12741), 1, + anon_sym_SEMI, + STATE(7418), 1, + aux_sym_declaration_repeat1, + [281888] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12615), 1, + ACTIONS(12546), 1, anon_sym_COMMA, - ACTIONS(12617), 1, - anon_sym_RPAREN, - STATE(7494), 1, - aux_sym_preproc_params_repeat1, - [276191] = 4, - ACTIONS(3), 1, + ACTIONS(12743), 1, + anon_sym_RBRACK_RBRACK, + STATE(7524), 1, + aux_sym_attribute_declaration_repeat1, + [281901] = 4, + ACTIONS(10057), 1, sym_comment, - ACTIONS(12595), 1, - anon_sym_COLON, - ACTIONS(12619), 1, - anon_sym_RPAREN, - STATE(7981), 1, - sym_gnu_asm_goto_list, - [276204] = 4, + ACTIONS(12674), 1, + anon_sym_LPAREN2, + ACTIONS(12745), 1, + aux_sym_preproc_include_token2, + STATE(8517), 1, + sym_preproc_argument_list, + [281914] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8707), 1, + ACTIONS(8742), 1, anon_sym_COMMA, - ACTIONS(12621), 1, + ACTIONS(12747), 1, anon_sym_GT2, - STATE(7303), 1, + STATE(7385), 1, aux_sym_template_argument_list_repeat1, - [276217] = 4, + [281927] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12623), 1, - sym_identifier, - STATE(1910), 1, - sym_template_type, - STATE(3519), 1, - sym_template_function, - [276230] = 4, + ACTIONS(12749), 3, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_DOT, + [281936] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8707), 1, + ACTIONS(12485), 1, + anon_sym_COLON, + ACTIONS(12751), 1, + anon_sym_RPAREN, + STATE(7299), 1, + sym_gnu_asm_clobber_list, + [281949] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12546), 1, anon_sym_COMMA, - ACTIONS(12625), 1, - anon_sym_GT2, - STATE(7241), 1, - aux_sym_template_argument_list_repeat1, - [276243] = 4, + ACTIONS(12753), 1, + anon_sym_RBRACK_RBRACK, + STATE(7414), 1, + aux_sym_attribute_declaration_repeat1, + [281962] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8707), 1, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(12755), 1, + anon_sym_SEMI, + STATE(8199), 1, + sym_attribute_declaration, + [281975] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8742), 1, anon_sym_COMMA, - ACTIONS(12627), 1, + ACTIONS(12757), 1, anon_sym_GT2, - STATE(7411), 1, + STATE(7446), 1, aux_sym_template_argument_list_repeat1, - [276256] = 4, + [281988] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8707), 1, + ACTIONS(8742), 1, anon_sym_COMMA, - ACTIONS(12629), 1, + ACTIONS(12759), 1, anon_sym_GT2, - STATE(7411), 1, + STATE(7446), 1, aux_sym_template_argument_list_repeat1, - [276269] = 4, + [282001] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8707), 1, + ACTIONS(8742), 1, anon_sym_COMMA, - ACTIONS(12631), 1, + ACTIONS(12761), 1, anon_sym_GT2, - STATE(7411), 1, + STATE(7446), 1, aux_sym_template_argument_list_repeat1, - [276282] = 4, + [282014] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12633), 1, - sym_identifier, - STATE(1910), 1, - sym_template_type, - STATE(2774), 1, - sym_template_function, - [276295] = 4, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(12763), 1, + anon_sym_SEMI, + STATE(8488), 1, + sym_attribute_declaration, + [282027] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12635), 1, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(12765), 1, + anon_sym_SEMI, + STATE(8359), 1, + sym_attribute_declaration, + [282040] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12767), 1, anon_sym_COMMA, - ACTIONS(12638), 1, - anon_sym_RPAREN, - STATE(7243), 1, - aux_sym_generic_expression_repeat1, - [276308] = 4, + ACTIONS(12770), 1, + anon_sym_LBRACE, + STATE(7384), 1, + aux_sym_field_initializer_list_repeat1, + [282053] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12640), 1, - sym_identifier, - STATE(1910), 1, - sym_template_type, - STATE(3689), 1, - sym_template_function, - [276321] = 4, + ACTIONS(8742), 1, + anon_sym_COMMA, + ACTIONS(12772), 1, + anon_sym_GT2, + STATE(7446), 1, + aux_sym_template_argument_list_repeat1, + [282066] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12642), 1, - sym_identifier, - STATE(1910), 1, - sym_template_type, - STATE(2435), 1, - sym_template_function, - [276334] = 4, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(12774), 1, + anon_sym_SEMI, + STATE(8589), 1, + sym_attribute_declaration, + [282079] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12644), 1, - sym_identifier, - STATE(1910), 1, - sym_template_type, - STATE(2774), 1, - sym_template_function, - [276347] = 4, + ACTIONS(12610), 1, + anon_sym_catch, + STATE(1862), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [282090] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12459), 1, - anon_sym_COLON, - ACTIONS(12646), 1, - anon_sym_RPAREN, - STATE(7319), 1, - sym_gnu_asm_output_operand_list, - [276360] = 2, + ACTIONS(12776), 1, + anon_sym_catch, + STATE(226), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [282101] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12648), 3, + ACTIONS(12778), 1, anon_sym_COMMA, + ACTIONS(12780), 1, anon_sym_RPAREN, - anon_sym_COLON, - [276369] = 4, + STATE(7662), 1, + aux_sym_requires_parameter_list_repeat1, + [282114] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12650), 1, - sym_identifier, - ACTIONS(12652), 1, - anon_sym_using, - STATE(7501), 1, - sym_attribute, - [276382] = 4, + ACTIONS(10063), 1, + anon_sym_COMMA, + ACTIONS(12782), 1, + anon_sym_SEMI, + STATE(7435), 1, + aux_sym_declaration_repeat1, + [282127] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5230), 1, - anon_sym_LBRACE, - ACTIONS(12130), 1, - anon_sym_COLON_COLON, - STATE(747), 1, - sym_declaration_list, - [276395] = 4, + ACTIONS(12497), 1, + anon_sym_COLON, + ACTIONS(12784), 1, + anon_sym_RPAREN, + STATE(7312), 1, + sym_gnu_asm_input_operand_list, + [282140] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8707), 1, - anon_sym_COMMA, - ACTIONS(12654), 1, - anon_sym_GT2, - STATE(7333), 1, - aux_sym_template_argument_list_repeat1, - [276408] = 2, + ACTIONS(12625), 1, + sym_identifier, + ACTIONS(12627), 1, + anon_sym_using, + STATE(7360), 1, + sym_attribute, + [282153] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12656), 3, + ACTIONS(12076), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [276417] = 4, + ACTIONS(12786), 1, + anon_sym_LBRACE, + STATE(7309), 1, + aux_sym_base_class_clause_repeat1, + [282166] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12658), 1, + ACTIONS(12615), 1, anon_sym_LPAREN2, - ACTIONS(12660), 1, + ACTIONS(12788), 1, anon_sym_constexpr, - STATE(180), 1, + STATE(177), 1, sym_condition_clause, - [276430] = 3, - ACTIONS(10118), 1, + [282179] = 3, + ACTIONS(10057), 1, sym_comment, - STATE(7017), 1, + STATE(7142), 1, aux_sym_char_literal_repeat1, - ACTIONS(12662), 2, + ACTIONS(12790), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [276441] = 4, + [282190] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12573), 1, - anon_sym_COLON, - ACTIONS(12664), 1, - anon_sym_RPAREN, - STATE(7393), 1, - sym_gnu_asm_clobber_list, - [276454] = 4, + ACTIONS(12615), 1, + anon_sym_LPAREN2, + ACTIONS(12792), 1, + anon_sym_constexpr, + STATE(223), 1, + sym_condition_clause, + [282203] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4511), 1, - anon_sym_RBRACE, - ACTIONS(12666), 1, + ACTIONS(12076), 1, anon_sym_COMMA, - STATE(7289), 1, - aux_sym_initializer_list_repeat1, - [276467] = 4, + ACTIONS(12315), 1, + anon_sym_LBRACE, + STATE(7259), 1, + aux_sym_base_class_clause_repeat1, + [282216] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12453), 1, + ACTIONS(12794), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12796), 2, anon_sym_COMMA, - ACTIONS(12668), 1, - anon_sym_RPAREN, - STATE(7274), 1, - aux_sym_gnu_asm_goto_list_repeat1, - [276480] = 4, + anon_sym_LBRACE, + [282227] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6108), 1, + ACTIONS(12076), 1, anon_sym_COMMA, - ACTIONS(12670), 1, - anon_sym_RBRACK, - STATE(7440), 1, - aux_sym_structured_binding_declarator_repeat1, - [276493] = 3, + ACTIONS(12315), 1, + anon_sym_LBRACE, + STATE(7309), 1, + aux_sym_base_class_clause_repeat1, + [282240] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7506), 1, - anon_sym_EQ, - ACTIONS(7504), 2, - anon_sym_COMMA, - anon_sym_GT2, - [276504] = 4, + ACTIONS(12798), 1, + sym_identifier, + STATE(1923), 1, + sym_template_type, + STATE(2675), 1, + sym_template_function, + [282253] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6590), 1, + anon_sym___attribute, + ACTIONS(6592), 2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [282264] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9995), 1, + ACTIONS(8947), 1, + anon_sym_RBRACK, + ACTIONS(12800), 1, anon_sym_COMMA, - ACTIONS(12672), 1, - anon_sym_SEMI, - STATE(7342), 1, - aux_sym_declaration_repeat1, - [276517] = 4, + STATE(7402), 1, + aux_sym_subscript_argument_list_repeat1, + [282277] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(12674), 1, - anon_sym_SEMI, - STATE(8217), 1, - sym_attribute_declaration, - [276530] = 4, + ACTIONS(9009), 1, + anon_sym_RPAREN, + ACTIONS(12803), 1, + anon_sym_COMMA, + STATE(7403), 1, + aux_sym_argument_list_repeat1, + [282290] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9995), 1, + ACTIONS(10063), 1, anon_sym_COMMA, - ACTIONS(12676), 1, + ACTIONS(12806), 1, anon_sym_SEMI, - STATE(7521), 1, + STATE(7571), 1, aux_sym_declaration_repeat1, - [276543] = 4, + [282303] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9995), 1, + ACTIONS(12076), 1, anon_sym_COMMA, - ACTIONS(12678), 1, - anon_sym_SEMI, - STATE(7521), 1, - aux_sym_declaration_repeat1, - [276556] = 4, + ACTIONS(12786), 1, + anon_sym_LBRACE, + STATE(7594), 1, + aux_sym_base_class_clause_repeat1, + [282316] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(12680), 1, - anon_sym_SEMI, - STATE(8256), 1, - sym_attribute_declaration, - [276569] = 4, + ACTIONS(12050), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12808), 2, + anon_sym_COMMA, + anon_sym_GT2, + [282327] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12587), 1, + ACTIONS(10063), 1, anon_sym_COMMA, - ACTIONS(12682), 1, - anon_sym_RBRACK, - STATE(7446), 1, - aux_sym_lambda_capture_specifier_repeat1, - [276582] = 4, + ACTIONS(12810), 1, + anon_sym_SEMI, + STATE(7684), 1, + aux_sym_declaration_repeat1, + [282340] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(12684), 1, + ACTIONS(10063), 1, + anon_sym_COMMA, + ACTIONS(12812), 1, anon_sym_SEMI, - STATE(8307), 1, - sym_attribute_declaration, - [276595] = 4, + STATE(7684), 1, + aux_sym_declaration_repeat1, + [282353] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12481), 1, + ACTIONS(10063), 1, anon_sym_COMMA, - ACTIONS(12686), 1, - anon_sym_RPAREN, - STATE(7343), 1, - aux_sym_parameter_list_repeat1, - [276608] = 4, + ACTIONS(12814), 1, + anon_sym_SEMI, + STATE(7408), 1, + aux_sym_declaration_repeat1, + [282366] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12688), 1, + ACTIONS(12816), 1, anon_sym_default, - ACTIONS(12690), 1, + ACTIONS(12818), 1, anon_sym_delete, - ACTIONS(12692), 1, + ACTIONS(12820), 1, aux_sym_pure_virtual_clause_token1, - [276621] = 3, + [282379] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12694), 1, - anon_sym_catch, - STATE(228), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [276632] = 4, + ACTIONS(12824), 1, + anon_sym_RPAREN, + ACTIONS(12822), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [282390] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12696), 1, - sym_identifier, - STATE(1910), 1, - sym_template_type, - STATE(2774), 1, - sym_template_function, - [276645] = 4, + ACTIONS(8742), 1, + anon_sym_COMMA, + ACTIONS(12826), 1, + anon_sym_GT2, + STATE(7446), 1, + aux_sym_template_argument_list_repeat1, + [282403] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(12698), 1, - anon_sym_SEMI, - STATE(8369), 1, - sym_attribute_declaration, - [276658] = 4, + ACTIONS(12828), 1, + anon_sym_COMMA, + ACTIONS(12830), 1, + anon_sym_RPAREN, + STATE(7421), 1, + aux_sym_throw_specifier_repeat1, + [282416] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12421), 1, + ACTIONS(12546), 1, anon_sym_COMMA, - ACTIONS(12700), 1, + ACTIONS(12832), 1, anon_sym_RBRACK_RBRACK, - STATE(7296), 1, + STATE(7263), 1, aux_sym_attribute_declaration_repeat1, - [276671] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5232), 1, - anon_sym_LBRACE, - ACTIONS(12130), 1, - anon_sym_COLON_COLON, - STATE(527), 1, - sym_declaration_list, - [276684] = 4, + [282429] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12702), 1, + ACTIONS(8782), 1, anon_sym_COMMA, - ACTIONS(12705), 1, + ACTIONS(8882), 1, anon_sym_RPAREN, - STATE(7274), 1, - aux_sym_gnu_asm_goto_list_repeat1, - [276697] = 2, + STATE(7443), 1, + aux_sym_argument_list_repeat1, + [282442] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12707), 3, + ACTIONS(10063), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [276706] = 2, + ACTIONS(12834), 1, + anon_sym_SEMI, + STATE(7541), 1, + aux_sym_declaration_repeat1, + [282455] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12709), 3, + ACTIONS(10063), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [276715] = 4, + ACTIONS(12836), 1, + anon_sym_SEMI, + STATE(7684), 1, + aux_sym_declaration_repeat1, + [282468] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8809), 1, + ACTIONS(10063), 1, anon_sym_COMMA, - ACTIONS(8857), 1, - anon_sym_RBRACK, - STATE(7345), 1, - aux_sym_subscript_argument_list_repeat1, - [276728] = 4, + ACTIONS(12838), 1, + anon_sym_SEMI, + STATE(7684), 1, + aux_sym_declaration_repeat1, + [282481] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12615), 1, + ACTIONS(12590), 1, anon_sym_COMMA, - ACTIONS(12711), 1, + ACTIONS(12840), 1, anon_sym_RPAREN, - STATE(7234), 1, - aux_sym_preproc_params_repeat1, - [276741] = 4, + STATE(7359), 1, + aux_sym_parameter_list_repeat1, + [282494] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9023), 1, - anon_sym_RPAREN, - ACTIONS(12713), 1, + ACTIONS(8884), 1, anon_sym_COMMA, - STATE(7279), 1, - aux_sym_argument_list_repeat1, - [276754] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12716), 1, - sym_identifier, - STATE(1910), 1, - sym_template_type, - STATE(2774), 1, - sym_template_function, - [276767] = 4, + ACTIONS(8886), 1, + anon_sym_RBRACE, + STATE(7445), 1, + aux_sym_initializer_list_repeat1, + [282507] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12587), 1, + ACTIONS(12828), 1, anon_sym_COMMA, - ACTIONS(12718), 1, - anon_sym_RBRACK, - STATE(7446), 1, - aux_sym_lambda_capture_specifier_repeat1, - [276780] = 4, - ACTIONS(10118), 1, + ACTIONS(12842), 1, + anon_sym_RPAREN, + STATE(7350), 1, + aux_sym_throw_specifier_repeat1, + [282520] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(12720), 1, - aux_sym_preproc_include_token2, - ACTIONS(12722), 1, - anon_sym_LPAREN2, - STATE(7932), 1, - sym_preproc_argument_list, - [276793] = 4, + ACTIONS(10536), 1, + anon_sym_requires, + ACTIONS(11540), 1, + anon_sym_LBRACE, + STATE(8155), 1, + sym_requires_clause, + [282533] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12724), 1, - anon_sym_COMMA, - ACTIONS(12726), 1, - anon_sym_GT2, - STATE(7560), 1, - aux_sym_template_parameter_list_repeat1, - [276806] = 3, + ACTIONS(12844), 1, + sym_identifier, + STATE(1808), 1, + sym_template_type, + STATE(3542), 1, + sym_template_function, + [282546] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12485), 1, + ACTIONS(12598), 1, anon_sym_catch, - STATE(1845), 2, + STATE(453), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [276817] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12728), 3, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - [276826] = 4, + [282557] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12573), 1, + ACTIONS(12554), 1, anon_sym_COLON, - ACTIONS(12730), 1, + ACTIONS(12846), 1, anon_sym_RPAREN, - STATE(7352), 1, - sym_gnu_asm_clobber_list, - [276839] = 4, + STATE(7447), 1, + sym_gnu_asm_output_operand_list, + [282570] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12525), 1, - anon_sym_COLON, - ACTIONS(12732), 1, - anon_sym_RPAREN, - STATE(7353), 1, - sym_gnu_asm_input_operand_list, - [276852] = 4, + ACTIONS(10536), 1, + anon_sym_requires, + ACTIONS(11536), 1, + anon_sym_LBRACE, + STATE(8166), 1, + sym_requires_clause, + [282583] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9995), 1, + ACTIONS(10063), 1, anon_sym_COMMA, - ACTIONS(12734), 1, + ACTIONS(12848), 1, anon_sym_SEMI, - STATE(7312), 1, + STATE(7265), 1, aux_sym_declaration_repeat1, - [276865] = 4, + [282596] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8866), 1, - anon_sym_RBRACE, - ACTIONS(12736), 1, + ACTIONS(8742), 1, anon_sym_COMMA, - STATE(7289), 1, - aux_sym_initializer_list_repeat1, - [276878] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12525), 1, - anon_sym_COLON, - ACTIONS(12739), 1, - anon_sym_RPAREN, - STATE(7404), 1, - sym_gnu_asm_input_operand_list, - [276891] = 4, + ACTIONS(12850), 1, + anon_sym_GT2, + STATE(7453), 1, + aux_sym_template_argument_list_repeat1, + [282609] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12459), 1, - anon_sym_COLON, - ACTIONS(12741), 1, - anon_sym_RPAREN, - STATE(7407), 1, - sym_gnu_asm_output_operand_list, - [276904] = 4, + ACTIONS(8742), 1, + anon_sym_COMMA, + ACTIONS(12852), 1, + anon_sym_GT2, + STATE(7440), 1, + aux_sym_template_argument_list_repeat1, + [282622] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12743), 1, - sym_identifier, - STATE(1910), 1, - sym_template_type, - STATE(2774), 1, - sym_template_function, - [276917] = 4, + ACTIONS(8742), 1, + anon_sym_COMMA, + ACTIONS(12854), 1, + anon_sym_GT2, + STATE(7446), 1, + aux_sym_template_argument_list_repeat1, + [282635] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8707), 1, + ACTIONS(8742), 1, anon_sym_COMMA, - ACTIONS(12745), 1, + ACTIONS(12856), 1, anon_sym_GT2, - STATE(7411), 1, + STATE(7446), 1, aux_sym_template_argument_list_repeat1, - [276930] = 2, + [282648] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12130), 3, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - [276939] = 4, + ACTIONS(8830), 1, + anon_sym_COMMA, + ACTIONS(12858), 1, + anon_sym_RBRACK, + STATE(7402), 1, + aux_sym_subscript_argument_list_repeat1, + [282661] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9995), 1, + ACTIONS(10063), 1, anon_sym_COMMA, - ACTIONS(12747), 1, + ACTIONS(12860), 1, anon_sym_SEMI, - STATE(7517), 1, + STATE(7458), 1, aux_sym_declaration_repeat1, - [276952] = 4, + [282674] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12421), 1, + ACTIONS(10063), 1, anon_sym_COMMA, - ACTIONS(12749), 1, - anon_sym_RBRACK_RBRACK, - STATE(7395), 1, - aux_sym_attribute_declaration_repeat1, - [276965] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12753), 1, - anon_sym_COLON_COLON, - ACTIONS(12751), 2, + ACTIONS(12862), 1, anon_sym_SEMI, - anon_sym_LBRACE, - [276976] = 4, + STATE(7684), 1, + aux_sym_declaration_repeat1, + [282687] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8751), 1, + ACTIONS(10063), 1, anon_sym_COMMA, - ACTIONS(8767), 1, - anon_sym_RPAREN, - STATE(7321), 1, - aux_sym_argument_list_repeat1, - [276989] = 4, + ACTIONS(12864), 1, + anon_sym_SEMI, + STATE(7684), 1, + aux_sym_declaration_repeat1, + [282700] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8695), 1, - anon_sym_RBRACE, - ACTIONS(8807), 1, + ACTIONS(12563), 1, anon_sym_COMMA, - STATE(7483), 1, - aux_sym_initializer_list_repeat1, - [277002] = 4, + ACTIONS(12866), 1, + anon_sym_RBRACK, + STATE(7285), 1, + aux_sym_lambda_capture_specifier_repeat1, + [282713] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8707), 1, - anon_sym_COMMA, - ACTIONS(12755), 1, - anon_sym_GT2, - STATE(7411), 1, - aux_sym_template_argument_list_repeat1, - [277015] = 4, - ACTIONS(3), 1, + ACTIONS(12477), 1, + anon_sym_catch, + STATE(449), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [282724] = 4, + ACTIONS(10057), 1, sym_comment, - ACTIONS(8781), 1, - anon_sym_COMMA, - ACTIONS(8783), 1, - anon_sym_RBRACE, - STATE(7322), 1, - aux_sym_initializer_list_repeat1, - [277028] = 4, + ACTIONS(12674), 1, + anon_sym_LPAREN2, + ACTIONS(12868), 1, + aux_sym_preproc_include_token2, + STATE(8517), 1, + sym_preproc_argument_list, + [282737] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12112), 1, + ACTIONS(12870), 1, anon_sym_COMMA, - ACTIONS(12283), 1, - anon_sym_LBRACE, - STATE(7545), 1, - aux_sym_base_class_clause_repeat1, - [277041] = 4, + ACTIONS(12872), 1, + anon_sym_RPAREN, + STATE(7511), 1, + aux_sym_preproc_params_repeat1, + [282750] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8707), 1, + ACTIONS(8742), 1, anon_sym_COMMA, - ACTIONS(12757), 1, + ACTIONS(12874), 1, anon_sym_GT2, - STATE(7411), 1, + STATE(7446), 1, aux_sym_template_argument_list_repeat1, - [277054] = 4, + [282763] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12112), 1, + ACTIONS(12876), 1, + sym_identifier, + STATE(1923), 1, + sym_template_type, + STATE(2504), 1, + sym_template_function, + [282776] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12590), 1, anon_sym_COMMA, - ACTIONS(12283), 1, - anon_sym_LBRACE, - STATE(7318), 1, - aux_sym_base_class_clause_repeat1, - [277067] = 4, + ACTIONS(12878), 1, + anon_sym_RPAREN, + STATE(7419), 1, + aux_sym_parameter_list_repeat1, + [282789] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8751), 1, + ACTIONS(8782), 1, anon_sym_COMMA, - ACTIONS(12759), 1, + ACTIONS(12880), 1, anon_sym_RPAREN, - STATE(7279), 1, + STATE(7403), 1, aux_sym_argument_list_repeat1, - [277080] = 4, + [282802] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5234), 1, - anon_sym_LBRACE, - ACTIONS(12130), 1, - anon_sym_COLON_COLON, - STATE(340), 1, - sym_declaration_list, - [277093] = 4, + ACTIONS(10023), 1, + anon_sym_COMMA, + ACTIONS(12882), 1, + anon_sym_RPAREN, + STATE(7488), 1, + aux_sym_preproc_argument_list_repeat1, + [282815] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4523), 1, + ACTIONS(4539), 1, anon_sym_RBRACE, - ACTIONS(12761), 1, + ACTIONS(12884), 1, anon_sym_COMMA, - STATE(7289), 1, + STATE(7258), 1, aux_sym_initializer_list_repeat1, - [277106] = 4, + [282828] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12886), 1, + anon_sym_COMMA, + ACTIONS(12889), 1, + anon_sym_GT2, + STATE(7446), 1, + aux_sym_template_argument_list_repeat1, + [282841] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12459), 1, + ACTIONS(12497), 1, anon_sym_COLON, - ACTIONS(12763), 1, + ACTIONS(12891), 1, anon_sym_RPAREN, - STATE(7327), 1, + STATE(7468), 1, + sym_gnu_asm_input_operand_list, + [282854] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12554), 1, + anon_sym_COLON, + ACTIONS(12893), 1, + anon_sym_RPAREN, + STATE(7469), 1, sym_gnu_asm_output_operand_list, - [277119] = 4, + [282867] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8707), 1, + ACTIONS(8742), 1, anon_sym_COMMA, - ACTIONS(12765), 1, + ACTIONS(12895), 1, anon_sym_GT2, - STATE(7331), 1, + STATE(7446), 1, aux_sym_template_argument_list_repeat1, - [277132] = 4, + [282880] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12625), 1, + sym_identifier, + ACTIONS(12627), 1, + anon_sym_using, + STATE(7621), 1, + sym_attribute, + [282893] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9995), 1, + ACTIONS(8742), 1, anon_sym_COMMA, - ACTIONS(12767), 1, - anon_sym_SEMI, - STATE(7332), 1, - aux_sym_declaration_repeat1, - [277145] = 4, + ACTIONS(12897), 1, + anon_sym_GT2, + STATE(7446), 1, + aux_sym_template_argument_list_repeat1, + [282906] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12615), 1, + anon_sym_LPAREN2, + ACTIONS(12899), 1, + anon_sym_constexpr, + STATE(187), 1, + sym_condition_clause, + [282919] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9995), 1, + ACTIONS(8742), 1, anon_sym_COMMA, - ACTIONS(12769), 1, - anon_sym_SEMI, - STATE(7521), 1, - aux_sym_declaration_repeat1, - [277158] = 4, + ACTIONS(12901), 1, + anon_sym_GT2, + STATE(7446), 1, + aux_sym_template_argument_list_repeat1, + [282932] = 3, + ACTIONS(10057), 1, + sym_comment, + STATE(7102), 1, + aux_sym_char_literal_repeat1, + ACTIONS(12903), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [282943] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9995), 1, + ACTIONS(10063), 1, anon_sym_COMMA, - ACTIONS(12771), 1, + ACTIONS(12905), 1, anon_sym_SEMI, - STATE(7521), 1, + STATE(7684), 1, aux_sym_declaration_repeat1, - [277171] = 4, + [282956] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6515), 1, + ACTIONS(10063), 1, + anon_sym_COMMA, + ACTIONS(12907), 1, anon_sym_SEMI, - ACTIONS(6630), 1, - anon_sym_LT, - STATE(1701), 1, - sym_template_argument_list, - [277184] = 3, + STATE(7470), 1, + aux_sym_declaration_repeat1, + [282969] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12775), 2, + ACTIONS(10063), 1, anon_sym_COMMA, - anon_sym_LBRACE, - [277195] = 4, + ACTIONS(12909), 1, + anon_sym_SEMI, + STATE(7684), 1, + aux_sym_declaration_repeat1, + [282982] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9813), 1, - anon_sym_DASH_GT, - ACTIONS(12777), 1, + ACTIONS(10063), 1, + anon_sym_COMMA, + ACTIONS(12911), 1, anon_sym_SEMI, - STATE(8051), 1, - sym_trailing_return_type, - [277208] = 3, + STATE(7684), 1, + aux_sym_declaration_repeat1, + [282995] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12779), 1, + ACTIONS(12477), 1, anon_sym_catch, - STATE(438), 2, + STATE(451), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [277219] = 3, + [283006] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12781), 1, - anon_sym_EQ, - ACTIONS(11504), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [277230] = 4, + ACTIONS(12625), 1, + sym_identifier, + ACTIONS(12627), 1, + anon_sym_using, + STATE(7992), 1, + sym_attribute, + [283019] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12775), 1, - anon_sym_LBRACE, - ACTIONS(12783), 1, - anon_sym_COMMA, - STATE(7318), 1, - aux_sym_base_class_clause_repeat1, - [277243] = 4, + ACTIONS(12913), 1, + anon_sym_default, + ACTIONS(12915), 1, + anon_sym_delete, + ACTIONS(12917), 1, + aux_sym_pure_virtual_clause_token1, + [283032] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12525), 1, - anon_sym_COLON, - ACTIONS(12786), 1, - anon_sym_RPAREN, - STATE(7354), 1, - sym_gnu_asm_input_operand_list, - [277256] = 4, + ACTIONS(12563), 1, + anon_sym_COMMA, + ACTIONS(12919), 1, + anon_sym_RBRACK, + STATE(7558), 1, + aux_sym_lambda_capture_specifier_repeat1, + [283045] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12459), 1, - anon_sym_COLON, - ACTIONS(12788), 1, - anon_sym_RPAREN, - STATE(7356), 1, - sym_gnu_asm_output_operand_list, - [277269] = 4, + ACTIONS(8830), 1, + anon_sym_COMMA, + ACTIONS(12921), 1, + anon_sym_RBRACK, + STATE(7402), 1, + aux_sym_subscript_argument_list_repeat1, + [283058] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8751), 1, - anon_sym_COMMA, - ACTIONS(12790), 1, - anon_sym_RPAREN, - STATE(7279), 1, - aux_sym_argument_list_repeat1, - [277282] = 4, + ACTIONS(10536), 1, + anon_sym_requires, + ACTIONS(11542), 1, + anon_sym_LBRACE, + STATE(8918), 1, + sym_requires_clause, + [283071] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4515), 1, - anon_sym_RBRACE, - ACTIONS(12792), 1, + ACTIONS(12546), 1, anon_sym_COMMA, - STATE(7289), 1, - aux_sym_initializer_list_repeat1, - [277295] = 2, + ACTIONS(12923), 1, + anon_sym_RBRACK_RBRACK, + STATE(7263), 1, + aux_sym_attribute_declaration_repeat1, + [283084] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12794), 3, + ACTIONS(12925), 3, anon_sym_SEMI, anon_sym_COLON_COLON, anon_sym_LBRACE, - [277304] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(12796), 1, - anon_sym_SEMI, - STATE(8072), 1, - sym_attribute_declaration, - [277317] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8707), 1, - anon_sym_COMMA, - ACTIONS(12798), 1, - anon_sym_GT2, - STATE(7411), 1, - aux_sym_template_argument_list_repeat1, - [277330] = 4, + [283093] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8707), 1, + ACTIONS(12927), 1, anon_sym_COMMA, - ACTIONS(12800), 1, + ACTIONS(12929), 1, anon_sym_GT2, - STATE(7411), 1, - aux_sym_template_argument_list_repeat1, - [277343] = 4, + STATE(7619), 1, + aux_sym_template_parameter_list_repeat1, + [283106] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12525), 1, + ACTIONS(12485), 1, anon_sym_COLON, - ACTIONS(12802), 1, + ACTIONS(12931), 1, anon_sym_RPAREN, - STATE(7336), 1, - sym_gnu_asm_input_operand_list, - [277356] = 4, + STATE(7473), 1, + sym_gnu_asm_clobber_list, + [283119] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12459), 1, + ACTIONS(12497), 1, anon_sym_COLON, - ACTIONS(12804), 1, + ACTIONS(12933), 1, anon_sym_RPAREN, - STATE(7337), 1, - sym_gnu_asm_output_operand_list, - [277369] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8707), 1, - anon_sym_COMMA, - ACTIONS(12806), 1, - anon_sym_GT2, - STATE(7411), 1, - aux_sym_template_argument_list_repeat1, - [277382] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8707), 1, - anon_sym_COMMA, - ACTIONS(12808), 1, - anon_sym_GT2, - STATE(7411), 1, - aux_sym_template_argument_list_repeat1, - [277395] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8707), 1, - anon_sym_COMMA, - ACTIONS(12810), 1, - anon_sym_GT2, - STATE(7411), 1, - aux_sym_template_argument_list_repeat1, - [277408] = 4, + STATE(7474), 1, + sym_gnu_asm_input_operand_list, + [283132] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9995), 1, + ACTIONS(10063), 1, anon_sym_COMMA, - ACTIONS(12812), 1, + ACTIONS(12935), 1, anon_sym_SEMI, - STATE(7521), 1, + STATE(7684), 1, aux_sym_declaration_repeat1, - [277421] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8707), 1, - anon_sym_COMMA, - ACTIONS(12814), 1, - anon_sym_GT2, - STATE(7411), 1, - aux_sym_template_argument_list_repeat1, - [277434] = 3, + [283145] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12779), 1, + ACTIONS(12937), 1, anon_sym_catch, - STATE(439), 2, + STATE(1868), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [277445] = 4, + [283156] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2615), 1, - anon_sym_while, - ACTIONS(12816), 1, - anon_sym_else, - STATE(380), 1, - sym_else_clause, - [277458] = 4, + ACTIONS(12939), 1, + sym_identifier, + STATE(1808), 1, + sym_template_type, + STATE(3388), 1, + sym_template_function, + [283169] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12573), 1, + ACTIONS(12471), 1, anon_sym_COLON, - ACTIONS(12818), 1, + ACTIONS(12941), 1, anon_sym_RPAREN, - STATE(7338), 1, - sym_gnu_asm_clobber_list, - [277471] = 4, + STATE(8197), 1, + sym_gnu_asm_goto_list, + [283182] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12525), 1, + ACTIONS(12485), 1, anon_sym_COLON, - ACTIONS(12820), 1, + ACTIONS(12943), 1, anon_sym_RPAREN, - STATE(7339), 1, - sym_gnu_asm_input_operand_list, - [277484] = 4, + STATE(7475), 1, + sym_gnu_asm_clobber_list, + [283195] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12595), 1, + ACTIONS(12471), 1, anon_sym_COLON, - ACTIONS(12822), 1, + ACTIONS(12945), 1, anon_sym_RPAREN, - STATE(8325), 1, + STATE(8200), 1, sym_gnu_asm_goto_list, - [277497] = 4, + [283208] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12573), 1, - anon_sym_COLON, - ACTIONS(12824), 1, + ACTIONS(8820), 1, + anon_sym_COMMA, + ACTIONS(12947), 1, anon_sym_RPAREN, - STATE(7340), 1, - sym_gnu_asm_clobber_list, - [277510] = 4, + STATE(7344), 1, + aux_sym_generic_expression_repeat1, + [283221] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12595), 1, - anon_sym_COLON, - ACTIONS(12826), 1, + ACTIONS(10063), 1, + anon_sym_COMMA, + ACTIONS(12949), 1, + anon_sym_SEMI, + STATE(7268), 1, + aux_sym_declaration_repeat1, + [283234] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12625), 1, + sym_identifier, + ACTIONS(12627), 1, + anon_sym_using, + STATE(7377), 1, + sym_attribute, + [283247] = 3, + ACTIONS(10057), 1, + sym_comment, + STATE(7144), 1, + aux_sym_char_literal_repeat1, + ACTIONS(12951), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [283258] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12546), 1, + anon_sym_COMMA, + ACTIONS(12953), 1, + anon_sym_RBRACK_RBRACK, + STATE(7263), 1, + aux_sym_attribute_declaration_repeat1, + [283271] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8782), 1, + anon_sym_COMMA, + ACTIONS(8874), 1, anon_sym_RPAREN, - STATE(8334), 1, - sym_gnu_asm_goto_list, - [277523] = 4, + STATE(7605), 1, + aux_sym_argument_list_repeat1, + [283284] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8759), 1, + ACTIONS(8782), 1, anon_sym_COMMA, - ACTIONS(12828), 1, + ACTIONS(8784), 1, anon_sym_RPAREN, - STATE(7243), 1, - aux_sym_generic_expression_repeat1, - [277536] = 4, + STATE(7272), 1, + aux_sym_argument_list_repeat1, + [283297] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9995), 1, + ACTIONS(10063), 1, anon_sym_COMMA, - ACTIONS(12830), 1, + ACTIONS(12955), 1, anon_sym_SEMI, - STATE(7521), 1, + STATE(7684), 1, aux_sym_declaration_repeat1, - [277549] = 4, + [283310] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12957), 1, + anon_sym_default, + ACTIONS(12959), 1, + anon_sym_delete, + ACTIONS(12961), 1, + aux_sym_pure_virtual_clause_token1, + [283323] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12963), 1, + sym_identifier, + STATE(1808), 1, + sym_template_type, + STATE(2504), 1, + sym_template_function, + [283336] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5236), 1, + anon_sym_LBRACE, + ACTIONS(12214), 1, + anon_sym_COLON_COLON, + STATE(323), 1, + sym_declaration_list, + [283349] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12481), 1, + ACTIONS(10023), 1, anon_sym_COMMA, - ACTIONS(12832), 1, + ACTIONS(12965), 1, anon_sym_RPAREN, - STATE(7454), 1, - aux_sym_parameter_list_repeat1, - [277562] = 3, + STATE(7488), 1, + aux_sym_preproc_argument_list_repeat1, + [283362] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10228), 1, + anon_sym_RPAREN, + ACTIONS(12967), 1, + anon_sym_COMMA, + STATE(7488), 1, + aux_sym_preproc_argument_list_repeat1, + [283375] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8742), 1, + anon_sym_COMMA, + ACTIONS(12970), 1, + anon_sym_GT2, + STATE(7496), 1, + aux_sym_template_argument_list_repeat1, + [283388] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12694), 1, + ACTIONS(12972), 1, anon_sym_catch, - STATE(230), 2, + STATE(231), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [277573] = 4, + [283399] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8809), 1, + ACTIONS(8792), 1, anon_sym_COMMA, - ACTIONS(12834), 1, - anon_sym_RBRACK, - STATE(7465), 1, - aux_sym_subscript_argument_list_repeat1, - [277586] = 4, + ACTIONS(8794), 1, + anon_sym_RBRACE, + STATE(7607), 1, + aux_sym_initializer_list_repeat1, + [283412] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9995), 1, + ACTIONS(12974), 1, anon_sym_COMMA, - ACTIONS(12836), 1, + ACTIONS(12976), 1, + anon_sym_LBRACE, + STATE(7384), 1, + aux_sym_field_initializer_list_repeat1, + [283425] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8782), 1, + anon_sym_COMMA, + ACTIONS(12978), 1, + anon_sym_RPAREN, + STATE(7403), 1, + aux_sym_argument_list_repeat1, + [283438] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12615), 1, + anon_sym_LPAREN2, + ACTIONS(12980), 1, + anon_sym_constexpr, + STATE(179), 1, + sym_condition_clause, + [283451] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8742), 1, + anon_sym_COMMA, + ACTIONS(12982), 1, + anon_sym_GT2, + STATE(7446), 1, + aux_sym_template_argument_list_repeat1, + [283464] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8742), 1, + anon_sym_COMMA, + ACTIONS(12984), 1, + anon_sym_GT2, + STATE(7446), 1, + aux_sym_template_argument_list_repeat1, + [283477] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12625), 1, + sym_identifier, + ACTIONS(12627), 1, + anon_sym_using, + STATE(7504), 1, + sym_attribute, + [283490] = 3, + ACTIONS(10057), 1, + sym_comment, + STATE(7184), 1, + aux_sym_char_literal_repeat1, + ACTIONS(12986), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [283501] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(12988), 1, anon_sym_SEMI, - STATE(7383), 1, + STATE(8467), 1, + sym_attribute_declaration, + [283514] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10063), 1, + anon_sym_COMMA, + ACTIONS(12990), 1, + anon_sym_SEMI, + STATE(7618), 1, aux_sym_declaration_repeat1, - [277599] = 3, + [283527] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12838), 1, - sym_identifier, - ACTIONS(12840), 2, + ACTIONS(12974), 1, anon_sym_COMMA, - anon_sym_GT2, - [277610] = 4, + ACTIONS(12992), 1, + anon_sym_LBRACE, + STATE(7492), 1, + aux_sym_field_initializer_list_repeat1, + [283540] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12994), 1, + anon_sym_default, + ACTIONS(12996), 1, + anon_sym_delete, + ACTIONS(12998), 1, + aux_sym_pure_virtual_clause_token1, + [283553] = 4, + ACTIONS(10057), 1, + sym_comment, + ACTIONS(12674), 1, + anon_sym_LPAREN2, + ACTIONS(13000), 1, + aux_sym_preproc_include_token2, + STATE(8517), 1, + sym_preproc_argument_list, + [283566] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10058), 1, + ACTIONS(12546), 1, anon_sym_COMMA, - ACTIONS(12842), 1, - anon_sym_RPAREN, - STATE(7487), 1, - aux_sym_preproc_argument_list_repeat1, - [277623] = 4, + ACTIONS(13002), 1, + anon_sym_RBRACK_RBRACK, + STATE(7543), 1, + aux_sym_attribute_declaration_repeat1, + [283579] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12844), 1, + ACTIONS(13004), 1, anon_sym_COMMA, - ACTIONS(12847), 1, + ACTIONS(13006), 1, anon_sym_RPAREN, - STATE(7349), 1, - aux_sym_throw_specifier_repeat1, - [277636] = 2, + STATE(7528), 1, + aux_sym_gnu_asm_goto_list_repeat1, + [283592] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12849), 3, + ACTIONS(13008), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [277645] = 4, + [283601] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12525), 1, - anon_sym_COLON, - ACTIONS(12851), 1, - anon_sym_RPAREN, - STATE(7286), 1, - sym_gnu_asm_input_operand_list, - [277658] = 4, + ACTIONS(13010), 1, + sym_identifier, + STATE(1923), 1, + sym_template_type, + STATE(6161), 1, + sym_template_function, + [283614] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12595), 1, + ACTIONS(12554), 1, anon_sym_COLON, - ACTIONS(12853), 1, + ACTIONS(13012), 1, anon_sym_RPAREN, - STATE(8077), 1, - sym_gnu_asm_goto_list, - [277671] = 4, + STATE(7626), 1, + sym_gnu_asm_output_operand_list, + [283627] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12573), 1, - anon_sym_COLON, - ACTIONS(12855), 1, - anon_sym_RPAREN, - STATE(7421), 1, - sym_gnu_asm_clobber_list, - [277684] = 4, + ACTIONS(13014), 1, + sym_identifier, + STATE(1923), 1, + sym_template_type, + STATE(2675), 1, + sym_template_function, + [283640] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12573), 1, - anon_sym_COLON, - ACTIONS(12857), 1, - anon_sym_RPAREN, - STATE(7370), 1, - sym_gnu_asm_clobber_list, - [277697] = 4, + ACTIONS(8742), 1, + anon_sym_COMMA, + ACTIONS(13016), 1, + anon_sym_GT2, + STATE(7639), 1, + aux_sym_template_argument_list_repeat1, + [283653] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12650), 1, - sym_identifier, - ACTIONS(12652), 1, - anon_sym_using, - STATE(7136), 1, - sym_attribute, - [277710] = 4, + ACTIONS(12870), 1, + anon_sym_COMMA, + ACTIONS(13018), 1, + anon_sym_RPAREN, + STATE(7690), 1, + aux_sym_preproc_params_repeat1, + [283666] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12525), 1, + ACTIONS(12497), 1, anon_sym_COLON, - ACTIONS(12859), 1, + ACTIONS(13020), 1, anon_sym_RPAREN, - STATE(7374), 1, + STATE(7376), 1, sym_gnu_asm_input_operand_list, - [277723] = 4, + [283679] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12658), 1, - anon_sym_LPAREN2, - ACTIONS(12861), 1, - anon_sym_constexpr, - STATE(176), 1, - sym_condition_clause, - [277736] = 3, - ACTIONS(10118), 1, + ACTIONS(8742), 1, + anon_sym_COMMA, + ACTIONS(13022), 1, + anon_sym_GT2, + STATE(7520), 1, + aux_sym_template_argument_list_repeat1, + [283692] = 4, + ACTIONS(3), 1, sym_comment, - STATE(6948), 1, + ACTIONS(8742), 1, + anon_sym_COMMA, + ACTIONS(13024), 1, + anon_sym_GT2, + STATE(7446), 1, + aux_sym_template_argument_list_repeat1, + [283705] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12625), 1, + sym_identifier, + ACTIONS(12627), 1, + anon_sym_using, + STATE(7622), 1, + sym_attribute, + [283718] = 3, + ACTIONS(10057), 1, + sym_comment, + STATE(7216), 1, aux_sym_char_literal_repeat1, - ACTIONS(12863), 2, + ACTIONS(13026), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [277747] = 4, + [283729] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12865), 1, - anon_sym_COMMA, - ACTIONS(12867), 1, + ACTIONS(12554), 1, + anon_sym_COLON, + ACTIONS(13028), 1, anon_sym_RPAREN, - STATE(7433), 1, - aux_sym_requires_parameter_list_repeat1, - [277760] = 3, + STATE(7391), 1, + sym_gnu_asm_output_operand_list, + [283742] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6622), 1, - anon_sym___attribute, - ACTIONS(6624), 2, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [277771] = 3, + ACTIONS(8742), 1, + anon_sym_COMMA, + ACTIONS(13030), 1, + anon_sym_GT2, + STATE(7446), 1, + aux_sym_template_argument_list_repeat1, + [283755] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6714), 1, - anon_sym___attribute, - ACTIONS(6716), 2, - anon_sym___attribute__, + ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - [277782] = 4, + ACTIONS(13032), 1, + anon_sym_SEMI, + STATE(8484), 1, + sym_attribute_declaration, + [283768] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12421), 1, + ACTIONS(8742), 1, anon_sym_COMMA, - ACTIONS(12869), 1, - anon_sym_RBRACK_RBRACK, - STATE(7385), 1, - aux_sym_attribute_declaration_repeat1, - [277795] = 4, + ACTIONS(13034), 1, + anon_sym_GT2, + STATE(7446), 1, + aux_sym_template_argument_list_repeat1, + [283781] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13036), 1, + anon_sym_catch, + STATE(888), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [283792] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12871), 1, + ACTIONS(13038), 1, anon_sym_default, - ACTIONS(12873), 1, + ACTIONS(13040), 1, anon_sym_delete, - ACTIONS(12875), 1, + ACTIONS(13042), 1, aux_sym_pure_virtual_clause_token1, - [277808] = 4, + [283805] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12598), 1, + anon_sym_catch, + STATE(450), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [283816] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12546), 1, + anon_sym_COMMA, + ACTIONS(13044), 1, + anon_sym_RBRACK_RBRACK, + STATE(7263), 1, + aux_sym_attribute_declaration_repeat1, + [283829] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(12877), 1, + ACTIONS(13046), 1, anon_sym_SEMI, - STATE(7986), 1, + STATE(8498), 1, sym_attribute_declaration, - [277821] = 4, + [283842] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(12879), 1, + ACTIONS(10063), 1, + anon_sym_COMMA, + ACTIONS(13048), 1, anon_sym_SEMI, - STATE(7939), 1, - sym_attribute_declaration, - [277834] = 4, + STATE(7563), 1, + aux_sym_declaration_repeat1, + [283855] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12459), 1, + ACTIONS(12471), 1, anon_sym_COLON, - ACTIONS(12881), 1, + ACTIONS(13050), 1, anon_sym_RPAREN, - STATE(7287), 1, - sym_gnu_asm_output_operand_list, - [277847] = 2, + STATE(8964), 1, + sym_gnu_asm_goto_list, + [283868] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12883), 3, + ACTIONS(13052), 1, anon_sym_COMMA, + ACTIONS(13055), 1, anon_sym_RPAREN, - anon_sym_GT2, - [277856] = 2, + STATE(7528), 1, + aux_sym_gnu_asm_goto_list_repeat1, + [283881] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12883), 3, + ACTIONS(8742), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(13057), 1, anon_sym_GT2, - [277865] = 3, + STATE(7446), 1, + aux_sym_template_argument_list_repeat1, + [283894] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12885), 1, - anon_sym_catch, - STATE(872), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [277876] = 4, + ACTIONS(13059), 1, + sym_identifier, + STATE(1923), 1, + sym_template_type, + STATE(2675), 1, + sym_template_function, + [283907] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12595), 1, - anon_sym_COLON, - ACTIONS(12887), 1, - anon_sym_RPAREN, - STATE(7964), 1, - sym_gnu_asm_goto_list, - [277889] = 3, - ACTIONS(10118), 1, + ACTIONS(13061), 3, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_DOT, + [283916] = 4, + ACTIONS(3), 1, sym_comment, - STATE(6996), 1, + ACTIONS(12625), 1, + sym_identifier, + ACTIONS(12627), 1, + anon_sym_using, + STATE(7372), 1, + sym_attribute, + [283929] = 3, + ACTIONS(10057), 1, + sym_comment, + STATE(7043), 1, aux_sym_char_literal_repeat1, - ACTIONS(12889), 2, + ACTIONS(13063), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [277900] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12421), 1, - anon_sym_COMMA, - ACTIONS(12891), 1, - anon_sym_RBRACK_RBRACK, - STATE(7395), 1, - aux_sym_attribute_declaration_repeat1, - [277913] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12895), 1, - anon_sym_RPAREN, - ACTIONS(12893), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [277924] = 4, + [283940] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12573), 1, + ACTIONS(12485), 1, anon_sym_COLON, - ACTIONS(12897), 1, + ACTIONS(13065), 1, anon_sym_RPAREN, - STATE(7384), 1, + STATE(7616), 1, sym_gnu_asm_clobber_list, - [277937] = 4, + [283953] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(12899), 1, + ACTIONS(8742), 1, + anon_sym_COMMA, + ACTIONS(13067), 1, + anon_sym_GT2, + STATE(7446), 1, + aux_sym_template_argument_list_repeat1, + [283966] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10063), 1, + anon_sym_COMMA, + ACTIONS(13069), 1, anon_sym_SEMI, - STATE(8453), 1, - sym_attribute_declaration, - [277950] = 4, + STATE(7657), 1, + aux_sym_declaration_repeat1, + [283979] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9995), 1, + ACTIONS(10063), 1, anon_sym_COMMA, - ACTIONS(12901), 1, + ACTIONS(13071), 1, anon_sym_SEMI, - STATE(7400), 1, + STATE(7684), 1, aux_sym_declaration_repeat1, - [277963] = 4, + [283992] = 3, + ACTIONS(10057), 1, + sym_comment, + STATE(7036), 1, + aux_sym_char_literal_repeat1, + ACTIONS(13073), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [284003] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8707), 1, + ACTIONS(8742), 1, anon_sym_COMMA, - ACTIONS(12903), 1, + ACTIONS(13075), 1, anon_sym_GT2, - STATE(7411), 1, + STATE(7446), 1, aux_sym_template_argument_list_repeat1, - [277976] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12907), 1, - anon_sym_RPAREN, - ACTIONS(12905), 2, - anon_sym_DOT_DOT_DOT, - sym_identifier, - [277987] = 4, + [284016] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12909), 1, + ACTIONS(13077), 1, sym_identifier, - STATE(1910), 1, + STATE(1923), 1, sym_template_type, - STATE(2774), 1, + STATE(2504), 1, sym_template_function, - [278000] = 4, + [284029] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9995), 1, + ACTIONS(10063), 1, anon_sym_COMMA, - ACTIONS(12911), 1, + ACTIONS(13079), 1, anon_sym_SEMI, - STATE(7491), 1, + STATE(7684), 1, aux_sym_declaration_repeat1, - [278013] = 4, + [284042] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9995), 1, + ACTIONS(6173), 1, anon_sym_COMMA, - ACTIONS(12913), 1, - anon_sym_SEMI, - STATE(7521), 1, - aux_sym_declaration_repeat1, - [278026] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10586), 1, - anon_sym_requires, - ACTIONS(12915), 1, - anon_sym_LBRACE, - STATE(8100), 1, - sym_requires_clause, - [278039] = 4, + ACTIONS(13081), 1, + anon_sym_RBRACK, + STATE(7281), 1, + aux_sym_structured_binding_declarator_repeat1, + [284055] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9995), 1, + ACTIONS(12546), 1, anon_sym_COMMA, - ACTIONS(12917), 1, - anon_sym_SEMI, - STATE(7521), 1, - aux_sym_declaration_repeat1, - [278052] = 4, + ACTIONS(13083), 1, + anon_sym_RBRACK_RBRACK, + STATE(7263), 1, + aux_sym_attribute_declaration_repeat1, + [284068] = 3, + ACTIONS(10057), 1, + sym_comment, + STATE(7062), 1, + aux_sym_char_literal_repeat1, + ACTIONS(13085), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [284079] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12595), 1, + ACTIONS(12497), 1, anon_sym_COLON, - ACTIONS(12919), 1, + ACTIONS(13087), 1, anon_sym_RPAREN, - STATE(7975), 1, - sym_gnu_asm_goto_list, - [278065] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12421), 1, - anon_sym_COMMA, - ACTIONS(12921), 1, - anon_sym_RBRACK_RBRACK, - STATE(7395), 1, - aux_sym_attribute_declaration_repeat1, - [278078] = 4, + STATE(7617), 1, + sym_gnu_asm_input_operand_list, + [284092] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8751), 1, + ACTIONS(8782), 1, anon_sym_COMMA, - ACTIONS(8845), 1, + ACTIONS(8910), 1, anon_sym_RPAREN, - STATE(7413), 1, + STATE(7573), 1, aux_sym_argument_list_repeat1, - [278091] = 4, + [284105] = 3, + ACTIONS(10057), 1, + sym_comment, + STATE(7068), 1, + aux_sym_char_literal_repeat1, + ACTIONS(13089), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [284116] = 3, + ACTIONS(10057), 1, + sym_comment, + STATE(7074), 1, + aux_sym_char_literal_repeat1, + ACTIONS(13091), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [284127] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13093), 1, + anon_sym_SEMI, + STATE(8755), 1, + sym_attribute_declaration, + [284140] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8759), 1, + ACTIONS(12590), 1, anon_sym_COMMA, - ACTIONS(12923), 1, + ACTIONS(13095), 1, anon_sym_RPAREN, - STATE(7243), 1, - aux_sym_generic_expression_repeat1, - [278104] = 4, + STATE(7663), 1, + aux_sym_parameter_list_repeat1, + [284153] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12937), 1, + anon_sym_catch, + STATE(1903), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [284164] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8847), 1, + ACTIONS(8912), 1, anon_sym_COMMA, - ACTIONS(8849), 1, + ACTIONS(8914), 1, anon_sym_RBRACE, - STATE(7414), 1, + STATE(7574), 1, aux_sym_initializer_list_repeat1, - [278117] = 2, + [284177] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8703), 3, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, - [278126] = 4, + ACTIONS(12776), 1, + anon_sym_catch, + STATE(229), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [284188] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8707), 1, + ACTIONS(8742), 1, anon_sym_COMMA, - ACTIONS(12925), 1, + ACTIONS(13097), 1, anon_sym_GT2, - STATE(7411), 1, + STATE(7564), 1, aux_sym_template_argument_list_repeat1, - [278139] = 4, + [284201] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12459), 1, + ACTIONS(12554), 1, anon_sym_COLON, - ACTIONS(12927), 1, + ACTIONS(13099), 1, anon_sym_RPAREN, - STATE(7415), 1, + STATE(7576), 1, sym_gnu_asm_output_operand_list, - [278152] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12753), 1, - anon_sym_COLON_COLON, - ACTIONS(12929), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - [278163] = 4, + [284214] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12595), 1, - anon_sym_COLON, - ACTIONS(12931), 1, - anon_sym_RPAREN, - STATE(8218), 1, - sym_gnu_asm_goto_list, - [278176] = 4, + ACTIONS(8742), 1, + anon_sym_COMMA, + ACTIONS(13101), 1, + anon_sym_GT2, + STATE(7446), 1, + aux_sym_template_argument_list_repeat1, + [284227] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8707), 1, + ACTIONS(8742), 1, anon_sym_COMMA, - ACTIONS(12933), 1, + ACTIONS(13103), 1, anon_sym_GT2, - STATE(7419), 1, + STATE(7580), 1, aux_sym_template_argument_list_repeat1, - [278189] = 4, + [284240] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12935), 1, + ACTIONS(12563), 1, anon_sym_COMMA, - ACTIONS(12938), 1, - anon_sym_RBRACK_RBRACK, - STATE(7395), 1, - aux_sym_attribute_declaration_repeat1, - [278202] = 4, + ACTIONS(13105), 1, + anon_sym_RBRACK, + STATE(7285), 1, + aux_sym_lambda_capture_specifier_repeat1, + [284253] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9995), 1, - anon_sym_COMMA, - ACTIONS(12940), 1, - anon_sym_SEMI, - STATE(7263), 1, - aux_sym_declaration_repeat1, - [278215] = 4, + ACTIONS(10536), 1, + anon_sym_requires, + ACTIONS(13107), 1, + anon_sym_LBRACE, + STATE(8663), 1, + sym_requires_clause, + [284266] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9995), 1, + ACTIONS(8742), 1, anon_sym_COMMA, - ACTIONS(12942), 1, - anon_sym_SEMI, - STATE(7420), 1, - aux_sym_declaration_repeat1, - [278228] = 4, + ACTIONS(13109), 1, + anon_sym_GT2, + STATE(7446), 1, + aux_sym_template_argument_list_repeat1, + [284279] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9995), 1, + ACTIONS(10063), 1, anon_sym_COMMA, - ACTIONS(12944), 1, + ACTIONS(13111), 1, anon_sym_SEMI, - STATE(7521), 1, + STATE(7584), 1, aux_sym_declaration_repeat1, - [278241] = 4, + [284292] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12481), 1, + ACTIONS(10063), 1, anon_sym_COMMA, - ACTIONS(12946), 1, - anon_sym_RPAREN, - STATE(7534), 1, - aux_sym_parameter_list_repeat1, - [278254] = 4, + ACTIONS(13113), 1, + anon_sym_SEMI, + STATE(7684), 1, + aux_sym_declaration_repeat1, + [284305] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9995), 1, + ACTIONS(10063), 1, anon_sym_COMMA, - ACTIONS(12948), 1, + ACTIONS(13115), 1, anon_sym_SEMI, - STATE(7521), 1, + STATE(7684), 1, aux_sym_declaration_repeat1, - [278267] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12650), 1, - sym_identifier, - ACTIONS(12652), 1, - anon_sym_using, - STATE(7507), 1, - sym_attribute, - [278280] = 4, + [284318] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12658), 1, - anon_sym_LPAREN2, - ACTIONS(12950), 1, - anon_sym_constexpr, - STATE(188), 1, - sym_condition_clause, - [278293] = 3, - ACTIONS(10118), 1, - sym_comment, - STATE(7051), 1, - aux_sym_char_literal_repeat1, - ACTIONS(12952), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [278304] = 4, + ACTIONS(8742), 1, + anon_sym_COMMA, + ACTIONS(13117), 1, + anon_sym_GT2, + STATE(7446), 1, + aux_sym_template_argument_list_repeat1, + [284331] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12573), 1, - anon_sym_COLON, - ACTIONS(12954), 1, - anon_sym_RPAREN, - STATE(7235), 1, - sym_gnu_asm_clobber_list, - [278317] = 3, + ACTIONS(5234), 1, + anon_sym_LBRACE, + ACTIONS(12214), 1, + anon_sym_COLON_COLON, + STATE(584), 1, + sym_declaration_list, + [284344] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12956), 1, + ACTIONS(12972), 1, anon_sym_catch, - STATE(1677), 2, + STATE(376), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [278328] = 4, + [284355] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12658), 1, - anon_sym_LPAREN2, - ACTIONS(12958), 1, - anon_sym_constexpr, - STATE(207), 1, - sym_condition_clause, - [278341] = 4, + ACTIONS(13119), 1, + anon_sym_catch, + STATE(1698), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [284366] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12525), 1, + ACTIONS(12497), 1, anon_sym_COLON, - ACTIONS(12960), 1, + ACTIONS(13121), 1, anon_sym_RPAREN, - STATE(7255), 1, + STATE(7249), 1, sym_gnu_asm_input_operand_list, - [278354] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11981), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12962), 2, - anon_sym_COMMA, - anon_sym_GT2, - [278365] = 4, + [284379] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12964), 1, - anon_sym_default, - ACTIONS(12966), 1, - anon_sym_delete, - ACTIONS(12968), 1, - aux_sym_pure_virtual_clause_token1, - [278378] = 4, + ACTIONS(10536), 1, + anon_sym_requires, + ACTIONS(10564), 1, + anon_sym_LBRACE, + STATE(8163), 1, + sym_requires_clause, + [284392] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8751), 1, + ACTIONS(8742), 1, anon_sym_COMMA, - ACTIONS(12970), 1, - anon_sym_RPAREN, - STATE(7279), 1, - aux_sym_argument_list_repeat1, - [278391] = 4, + ACTIONS(13123), 1, + anon_sym_GT2, + STATE(7656), 1, + aux_sym_template_argument_list_repeat1, + [284405] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12972), 1, + ACTIONS(10063), 1, anon_sym_COMMA, - ACTIONS(12975), 1, - anon_sym_GT2, - STATE(7411), 1, - aux_sym_template_argument_list_repeat1, - [278404] = 4, + ACTIONS(13125), 1, + anon_sym_SEMI, + STATE(7684), 1, + aux_sym_declaration_repeat1, + [284418] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8707), 1, + ACTIONS(8830), 1, anon_sym_COMMA, - ACTIONS(12977), 1, - anon_sym_GT2, - STATE(7411), 1, - aux_sym_template_argument_list_repeat1, - [278417] = 4, + ACTIONS(8856), 1, + anon_sym_RBRACK, + STATE(7666), 1, + aux_sym_subscript_argument_list_repeat1, + [284431] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8751), 1, + ACTIONS(8782), 1, anon_sym_COMMA, - ACTIONS(12979), 1, + ACTIONS(13127), 1, anon_sym_RPAREN, - STATE(7279), 1, + STATE(7403), 1, aux_sym_argument_list_repeat1, - [278430] = 4, + [284444] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4525), 1, + ACTIONS(4533), 1, anon_sym_RBRACE, - ACTIONS(12981), 1, + ACTIONS(13129), 1, anon_sym_COMMA, - STATE(7289), 1, + STATE(7258), 1, aux_sym_initializer_list_repeat1, - [278443] = 4, + [284457] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12972), 1, + anon_sym_catch, + STATE(394), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [284468] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12525), 1, + ACTIONS(12497), 1, anon_sym_COLON, - ACTIONS(12983), 1, + ACTIONS(13131), 1, anon_sym_RPAREN, - STATE(7429), 1, + STATE(7588), 1, sym_gnu_asm_input_operand_list, - [278456] = 4, + [284481] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12459), 1, + ACTIONS(12554), 1, anon_sym_COLON, - ACTIONS(12985), 1, + ACTIONS(13133), 1, anon_sym_RPAREN, - STATE(7430), 1, + STATE(7589), 1, sym_gnu_asm_output_operand_list, - [278469] = 4, + [284494] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8707), 1, + ACTIONS(8742), 1, anon_sym_COMMA, - ACTIONS(12987), 1, + ACTIONS(13135), 1, anon_sym_GT2, - STATE(7411), 1, + STATE(7446), 1, aux_sym_template_argument_list_repeat1, - [278482] = 4, + [284507] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8707), 1, + ACTIONS(8742), 1, anon_sym_COMMA, - ACTIONS(12989), 1, + ACTIONS(13137), 1, anon_sym_GT2, - STATE(7411), 1, + STATE(7446), 1, aux_sym_template_argument_list_repeat1, - [278495] = 4, + [284520] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8707), 1, + ACTIONS(8742), 1, anon_sym_COMMA, - ACTIONS(12991), 1, + ACTIONS(13139), 1, anon_sym_GT2, - STATE(7411), 1, + STATE(7446), 1, aux_sym_template_argument_list_repeat1, - [278508] = 4, + [284533] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13143), 1, + anon_sym_RPAREN, + ACTIONS(13141), 2, + anon_sym_DOT_DOT_DOT, + sym_identifier, + [284544] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9995), 1, + ACTIONS(10063), 1, anon_sym_COMMA, - ACTIONS(12993), 1, + ACTIONS(13145), 1, anon_sym_SEMI, - STATE(7521), 1, + STATE(7590), 1, aux_sym_declaration_repeat1, - [278521] = 4, + [284557] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12595), 1, - anon_sym_COLON, - ACTIONS(12995), 1, - anon_sym_RPAREN, - STATE(8150), 1, - sym_gnu_asm_goto_list, - [278534] = 3, + ACTIONS(10063), 1, + anon_sym_COMMA, + ACTIONS(13147), 1, + anon_sym_SEMI, + STATE(7684), 1, + aux_sym_declaration_repeat1, + [284570] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10063), 1, + anon_sym_COMMA, + ACTIONS(13149), 1, + anon_sym_SEMI, + STATE(7684), 1, + aux_sym_declaration_repeat1, + [284583] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12956), 1, + ACTIONS(13119), 1, anon_sym_catch, - STATE(1686), 2, + STATE(1710), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [278545] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12650), 1, - sym_identifier, - ACTIONS(12652), 1, - anon_sym_using, - STATE(7272), 1, - sym_attribute, - [278558] = 3, - ACTIONS(10118), 1, - sym_comment, - STATE(6957), 1, - aux_sym_char_literal_repeat1, - ACTIONS(12997), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [278569] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12999), 1, - anon_sym_default, - ACTIONS(13001), 1, - anon_sym_delete, - ACTIONS(13003), 1, - aux_sym_pure_virtual_clause_token1, - [278582] = 2, + [284594] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13005), 3, + ACTIONS(13151), 3, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_GT2, - [278591] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10586), 1, - anon_sym_requires, - ACTIONS(13007), 1, - anon_sym_LBRACE, - STATE(8156), 1, - sym_requires_clause, - [278604] = 4, + anon_sym_COLON, + [284603] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13009), 1, - anon_sym_default, - ACTIONS(13011), 1, - anon_sym_delete, - ACTIONS(13013), 1, - aux_sym_pure_virtual_clause_token1, - [278617] = 4, + ACTIONS(8878), 3, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + [284612] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12573), 1, + ACTIONS(12485), 1, anon_sym_COLON, - ACTIONS(13015), 1, + ACTIONS(13153), 1, anon_sym_RPAREN, - STATE(7431), 1, + STATE(7592), 1, sym_gnu_asm_clobber_list, - [278630] = 4, + [284625] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12525), 1, + ACTIONS(12497), 1, anon_sym_COLON, - ACTIONS(13017), 1, + ACTIONS(13155), 1, anon_sym_RPAREN, - STATE(7432), 1, + STATE(7593), 1, sym_gnu_asm_input_operand_list, - [278643] = 4, + [284638] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10063), 1, + anon_sym_COMMA, + ACTIONS(13157), 1, + anon_sym_SEMI, + STATE(7684), 1, + aux_sym_declaration_repeat1, + [284651] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13159), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(13161), 2, + anon_sym_COMMA, + anon_sym_LBRACE, + [284662] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12595), 1, + ACTIONS(12471), 1, anon_sym_COLON, - ACTIONS(13019), 1, + ACTIONS(13163), 1, anon_sym_RPAREN, - STATE(8137), 1, + STATE(8573), 1, sym_gnu_asm_goto_list, - [278656] = 4, + [284675] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12573), 1, + ACTIONS(12485), 1, anon_sym_COLON, - ACTIONS(13021), 1, + ACTIONS(13165), 1, anon_sym_RPAREN, - STATE(7435), 1, + STATE(7595), 1, sym_gnu_asm_clobber_list, - [278669] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12865), 1, - anon_sym_COMMA, - ACTIONS(13023), 1, - anon_sym_RPAREN, - STATE(7451), 1, - aux_sym_requires_parameter_list_repeat1, - [278682] = 2, + [284688] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13025), 3, + ACTIONS(12076), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_GT2, - [278691] = 4, + ACTIONS(13167), 1, + anon_sym_LBRACE, + STATE(7309), 1, + aux_sym_base_class_clause_repeat1, + [284701] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12595), 1, + ACTIONS(12471), 1, anon_sym_COLON, - ACTIONS(13027), 1, + ACTIONS(13169), 1, anon_sym_RPAREN, - STATE(8141), 1, + STATE(8576), 1, sym_gnu_asm_goto_list, - [278704] = 4, + [284714] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8759), 1, + ACTIONS(8820), 1, anon_sym_COMMA, - ACTIONS(13029), 1, + ACTIONS(13171), 1, anon_sym_RPAREN, - STATE(7243), 1, + STATE(7344), 1, aux_sym_generic_expression_repeat1, - [278717] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12435), 1, - anon_sym_COMMA, - ACTIONS(13031), 1, - anon_sym_LBRACE, - STATE(7143), 1, - aux_sym_field_initializer_list_repeat1, - [278730] = 4, + [284727] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8759), 1, - anon_sym_COMMA, - ACTIONS(13033), 1, - anon_sym_RPAREN, - STATE(7243), 1, - aux_sym_generic_expression_repeat1, - [278743] = 4, + ACTIONS(13173), 1, + sym_identifier, + STATE(2583), 1, + sym_template_type, + STATE(3634), 1, + sym_template_function, + [284740] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6108), 1, - anon_sym_COMMA, - ACTIONS(13035), 1, - anon_sym_RBRACK, - STATE(7258), 1, - aux_sym_structured_binding_declarator_repeat1, - [278756] = 4, + ACTIONS(12214), 3, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + [284749] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13037), 1, + ACTIONS(12546), 1, anon_sym_COMMA, - ACTIONS(13040), 1, - anon_sym_RBRACK, - STATE(7440), 1, - aux_sym_structured_binding_declarator_repeat1, - [278769] = 4, + ACTIONS(13175), 1, + anon_sym_RBRACK_RBRACK, + STATE(7263), 1, + aux_sym_attribute_declaration_repeat1, + [284762] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10586), 1, - anon_sym_requires, - ACTIONS(11583), 1, + ACTIONS(13179), 1, + anon_sym_COLON_COLON, + ACTIONS(13177), 2, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(8109), 1, - sym_requires_clause, - [278782] = 4, + [284773] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12650), 1, - sym_identifier, - ACTIONS(12652), 1, - anon_sym_using, - STATE(7362), 1, - sym_attribute, - [278795] = 3, - ACTIONS(10118), 1, - sym_comment, - STATE(7134), 1, - aux_sym_char_literal_repeat1, - ACTIONS(13042), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [278806] = 4, + ACTIONS(10023), 1, + anon_sym_COMMA, + ACTIONS(13181), 1, + anon_sym_RPAREN, + STATE(7488), 1, + aux_sym_preproc_argument_list_repeat1, + [284786] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13044), 1, + ACTIONS(13183), 1, + sym_identifier, + ACTIONS(13185), 2, anon_sym_COMMA, - ACTIONS(13047), 1, anon_sym_GT2, - STATE(7444), 1, - aux_sym_template_parameter_list_repeat1, - [278819] = 4, + [284797] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12587), 1, + ACTIONS(10063), 1, anon_sym_COMMA, - ACTIONS(13049), 1, - anon_sym_RBRACK, - STATE(7281), 1, - aux_sym_lambda_capture_specifier_repeat1, - [278832] = 4, + ACTIONS(13187), 1, + anon_sym_SEMI, + STATE(7675), 1, + aux_sym_declaration_repeat1, + [284810] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13051), 1, + ACTIONS(8782), 1, anon_sym_COMMA, - ACTIONS(13054), 1, - anon_sym_RBRACK, - STATE(7446), 1, - aux_sym_lambda_capture_specifier_repeat1, - [278845] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13056), 1, - anon_sym_default, - ACTIONS(13058), 1, - anon_sym_delete, - ACTIONS(13060), 1, - aux_sym_pure_virtual_clause_token1, - [278858] = 3, + ACTIONS(8800), 1, + anon_sym_RPAREN, + STATE(7322), 1, + aux_sym_argument_list_repeat1, + [284823] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12487), 1, - anon_sym_catch, - STATE(370), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [278869] = 4, - ACTIONS(10118), 1, - sym_comment, - ACTIONS(12722), 1, - anon_sym_LPAREN2, - ACTIONS(13062), 1, - aux_sym_preproc_include_token2, - STATE(7932), 1, - sym_preproc_argument_list, - [278882] = 4, + ACTIONS(8782), 1, + anon_sym_COMMA, + ACTIONS(13189), 1, + anon_sym_RPAREN, + STATE(7403), 1, + aux_sym_argument_list_repeat1, + [284836] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5232), 1, + ACTIONS(5236), 1, anon_sym_LBRACE, - ACTIONS(12130), 1, + ACTIONS(12214), 1, anon_sym_COLON_COLON, - STATE(495), 1, + STATE(345), 1, sym_declaration_list, - [278895] = 4, + [284849] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13064), 1, + ACTIONS(4535), 1, + anon_sym_RBRACE, + ACTIONS(13191), 1, anon_sym_COMMA, - ACTIONS(13067), 1, - anon_sym_RPAREN, - STATE(7451), 1, - aux_sym_requires_parameter_list_repeat1, - [278908] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12650), 1, - sym_identifier, - ACTIONS(12652), 1, - anon_sym_using, - STATE(7456), 1, - sym_attribute, - [278921] = 3, - ACTIONS(10118), 1, - sym_comment, - STATE(6983), 1, - aux_sym_char_literal_repeat1, - ACTIONS(13069), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [278932] = 4, + STATE(7258), 1, + aux_sym_initializer_list_repeat1, + [284862] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13071), 1, + ACTIONS(8742), 1, anon_sym_COMMA, - ACTIONS(13074), 1, - anon_sym_RPAREN, - STATE(7454), 1, - aux_sym_parameter_list_repeat1, - [278945] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13076), 1, - anon_sym_default, - ACTIONS(13078), 1, - anon_sym_delete, - ACTIONS(13080), 1, - aux_sym_pure_virtual_clause_token1, - [278958] = 4, + ACTIONS(13193), 1, + anon_sym_GT2, + STATE(7611), 1, + aux_sym_template_argument_list_repeat1, + [284875] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12421), 1, + ACTIONS(8742), 1, anon_sym_COMMA, - ACTIONS(13082), 1, - anon_sym_RBRACK_RBRACK, - STATE(7480), 1, - aux_sym_attribute_declaration_repeat1, - [278971] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12650), 1, - sym_identifier, - ACTIONS(12652), 1, - anon_sym_using, - STATE(7479), 1, - sym_attribute, - [278984] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12487), 1, - anon_sym_catch, - STATE(233), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [278995] = 4, + ACTIONS(13195), 1, + anon_sym_GT2, + STATE(7446), 1, + aux_sym_template_argument_list_repeat1, + [284888] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13084), 1, + ACTIONS(8742), 1, anon_sym_COMMA, - ACTIONS(13087), 1, - anon_sym_LBRACE, - STATE(7459), 1, - aux_sym_field_initializer_list_repeat1, - [279008] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12650), 1, - sym_identifier, - ACTIONS(12652), 1, - anon_sym_using, - STATE(7526), 1, - sym_attribute, - [279021] = 3, - ACTIONS(10118), 1, - sym_comment, - STATE(6972), 1, - aux_sym_char_literal_repeat1, - ACTIONS(13089), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [279032] = 3, - ACTIONS(10118), 1, - sym_comment, - STATE(6988), 1, - aux_sym_char_literal_repeat1, - ACTIONS(13091), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [279043] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12956), 1, - anon_sym_catch, - STATE(1690), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [279054] = 3, - ACTIONS(10118), 1, - sym_comment, - STATE(6963), 1, - aux_sym_char_literal_repeat1, - ACTIONS(13093), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [279065] = 4, + ACTIONS(13197), 1, + anon_sym_GT2, + STATE(7446), 1, + aux_sym_template_argument_list_repeat1, + [284901] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9025), 1, - anon_sym_RBRACK, - ACTIONS(13095), 1, + ACTIONS(8742), 1, anon_sym_COMMA, - STATE(7465), 1, - aux_sym_subscript_argument_list_repeat1, - [279078] = 3, - ACTIONS(10118), 1, - sym_comment, - STATE(6944), 1, - aux_sym_char_literal_repeat1, - ACTIONS(13098), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [279089] = 3, - ACTIONS(10118), 1, - sym_comment, - STATE(7087), 1, - aux_sym_char_literal_repeat1, - ACTIONS(13100), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [279100] = 3, + ACTIONS(13199), 1, + anon_sym_GT2, + STATE(7446), 1, + aux_sym_template_argument_list_repeat1, + [284914] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6648), 1, - anon_sym___attribute, - ACTIONS(6650), 2, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [279111] = 4, + ACTIONS(8713), 1, + anon_sym_RBRACE, + ACTIONS(8880), 1, + anon_sym_COMMA, + STATE(7314), 1, + aux_sym_initializer_list_repeat1, + [284927] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9995), 1, + ACTIONS(10063), 1, anon_sym_COMMA, - ACTIONS(13102), 1, + ACTIONS(13201), 1, anon_sym_SEMI, - STATE(7490), 1, + STATE(7684), 1, aux_sym_declaration_repeat1, - [279124] = 4, + [284940] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12519), 1, + ACTIONS(13203), 3, anon_sym_COMMA, - ACTIONS(13104), 1, anon_sym_RPAREN, - STATE(7349), 1, - aux_sym_throw_specifier_repeat1, - [279137] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10586), 1, - anon_sym_requires, - ACTIONS(11516), 1, - anon_sym_LBRACE, - STATE(8545), 1, - sym_requires_clause, - [279150] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13106), 1, - sym_identifier, - STATE(1910), 1, - sym_template_type, - STATE(2774), 1, - sym_template_function, - [279163] = 4, + anon_sym_GT2, + [284949] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12658), 1, - anon_sym_LPAREN2, - ACTIONS(13108), 1, - anon_sym_constexpr, - STATE(186), 1, - sym_condition_clause, - [279176] = 4, + ACTIONS(13203), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT2, + [284958] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10586), 1, - anon_sym_requires, - ACTIONS(11518), 1, - anon_sym_LBRACE, - STATE(8075), 1, - sym_requires_clause, - [279189] = 3, + ACTIONS(12471), 1, + anon_sym_COLON, + ACTIONS(13205), 1, + anon_sym_RPAREN, + STATE(8512), 1, + sym_gnu_asm_goto_list, + [284971] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6652), 1, - anon_sym___attribute, - ACTIONS(6654), 2, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [279200] = 4, + ACTIONS(12485), 1, + anon_sym_COLON, + ACTIONS(13207), 1, + anon_sym_RPAREN, + STATE(7641), 1, + sym_gnu_asm_clobber_list, + [284984] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12658), 1, - anon_sym_LPAREN2, - ACTIONS(13110), 1, - anon_sym_constexpr, - STATE(215), 1, - sym_condition_clause, - [279213] = 2, + ACTIONS(10063), 1, + anon_sym_COMMA, + ACTIONS(13209), 1, + anon_sym_SEMI, + STATE(7684), 1, + aux_sym_declaration_repeat1, + [284997] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13112), 3, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - [279222] = 2, + ACTIONS(12927), 1, + anon_sym_COMMA, + ACTIONS(13211), 1, + anon_sym_GT2, + STATE(7260), 1, + aux_sym_template_parameter_list_repeat1, + [285010] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13114), 3, - anon_sym_LBRACK, + ACTIONS(13213), 1, anon_sym_EQ, - anon_sym_DOT, - [279231] = 4, + ACTIONS(11602), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [285021] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12421), 1, + ACTIONS(12546), 1, anon_sym_COMMA, - ACTIONS(13116), 1, + ACTIONS(13215), 1, anon_sym_RBRACK_RBRACK, - STATE(7372), 1, + STATE(7274), 1, aux_sym_attribute_declaration_repeat1, - [279244] = 4, + [285034] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12421), 1, + ACTIONS(12546), 1, anon_sym_COMMA, - ACTIONS(13118), 1, + ACTIONS(13217), 1, anon_sym_RBRACK_RBRACK, - STATE(7395), 1, + STATE(7659), 1, aux_sym_attribute_declaration_repeat1, - [279257] = 4, + [285047] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8809), 1, + ACTIONS(13219), 3, anon_sym_COMMA, - ACTIONS(8835), 1, - anon_sym_RBRACK, - STATE(7170), 1, - aux_sym_subscript_argument_list_repeat1, - [279270] = 4, + anon_sym_RPAREN, + anon_sym_COLON, + [285056] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8751), 1, - anon_sym_COMMA, - ACTIONS(8777), 1, - anon_sym_RPAREN, - STATE(7499), 1, - aux_sym_argument_list_repeat1, - [279283] = 4, + ACTIONS(13221), 1, + sym_identifier, + STATE(1923), 1, + sym_template_type, + STATE(2675), 1, + sym_template_function, + [285069] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4346), 1, - anon_sym_RBRACE, - ACTIONS(13120), 1, - anon_sym_COMMA, - STATE(7289), 1, - aux_sym_initializer_list_repeat1, - [279296] = 4, - ACTIONS(10118), 1, + ACTIONS(12471), 1, + anon_sym_COLON, + ACTIONS(13223), 1, + anon_sym_RPAREN, + STATE(8269), 1, + sym_gnu_asm_goto_list, + [285082] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(12722), 1, - anon_sym_LPAREN2, - ACTIONS(13122), 1, - aux_sym_preproc_include_token2, - STATE(7932), 1, - sym_preproc_argument_list, - [279309] = 4, + ACTIONS(12497), 1, + anon_sym_COLON, + ACTIONS(13225), 1, + anon_sym_RPAREN, + STATE(7335), 1, + sym_gnu_asm_input_operand_list, + [285095] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12459), 1, + ACTIONS(12554), 1, anon_sym_COLON, - ACTIONS(13124), 1, + ACTIONS(13227), 1, anon_sym_RPAREN, - STATE(7500), 1, + STATE(7354), 1, sym_gnu_asm_output_operand_list, - [279322] = 4, + [285108] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8707), 1, + ACTIONS(8742), 1, anon_sym_COMMA, - ACTIONS(13126), 1, + ACTIONS(13229), 1, anon_sym_GT2, - STATE(7505), 1, + STATE(7631), 1, aux_sym_template_argument_list_repeat1, - [279335] = 4, + [285121] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10381), 1, - anon_sym_RPAREN, - ACTIONS(13128), 1, + ACTIONS(8742), 1, anon_sym_COMMA, - STATE(7487), 1, - aux_sym_preproc_argument_list_repeat1, - [279348] = 4, + ACTIONS(13231), 1, + anon_sym_GT2, + STATE(7446), 1, + aux_sym_template_argument_list_repeat1, + [285134] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9995), 1, + ACTIONS(8742), 1, anon_sym_COMMA, - ACTIONS(13131), 1, - anon_sym_SEMI, - STATE(7506), 1, - aux_sym_declaration_repeat1, - [279361] = 4, + ACTIONS(13233), 1, + anon_sym_GT2, + STATE(7446), 1, + aux_sym_template_argument_list_repeat1, + [285147] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9995), 1, + ACTIONS(8742), 1, anon_sym_COMMA, - ACTIONS(13133), 1, - anon_sym_SEMI, - STATE(7521), 1, - aux_sym_declaration_repeat1, - [279374] = 4, + ACTIONS(13235), 1, + anon_sym_GT2, + STATE(7446), 1, + aux_sym_template_argument_list_repeat1, + [285160] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9995), 1, - anon_sym_COMMA, - ACTIONS(13135), 1, - anon_sym_SEMI, - STATE(7521), 1, - aux_sym_declaration_repeat1, - [279387] = 4, + ACTIONS(6606), 1, + anon_sym___attribute, + ACTIONS(6608), 2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [285171] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9995), 1, + ACTIONS(8742), 1, anon_sym_COMMA, - ACTIONS(13137), 1, - anon_sym_SEMI, - STATE(7521), 1, - aux_sym_declaration_repeat1, - [279400] = 4, - ACTIONS(10118), 1, - sym_comment, - ACTIONS(12722), 1, - anon_sym_LPAREN2, - ACTIONS(13139), 1, - aux_sym_preproc_include_token2, - STATE(7932), 1, - sym_preproc_argument_list, - [279413] = 3, + ACTIONS(13237), 1, + anon_sym_GT2, + STATE(7446), 1, + aux_sym_template_argument_list_repeat1, + [285184] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13141), 1, - anon_sym_catch, - STATE(1836), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [279424] = 4, + ACTIONS(8742), 1, + anon_sym_COMMA, + ACTIONS(13239), 1, + anon_sym_GT2, + STATE(7446), 1, + aux_sym_template_argument_list_repeat1, + [285197] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13143), 1, - anon_sym_COMMA, - ACTIONS(13146), 1, - anon_sym_RPAREN, - STATE(7494), 1, - aux_sym_preproc_params_repeat1, - [279437] = 3, + ACTIONS(13179), 1, + anon_sym_COLON_COLON, + ACTIONS(13241), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + [285208] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6656), 1, + ACTIONS(6610), 1, anon_sym___attribute, - ACTIONS(6658), 2, + ACTIONS(6612), 2, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [279448] = 3, + [285219] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6660), 1, - anon_sym___attribute, - ACTIONS(6662), 2, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [279459] = 3, + ACTIONS(12485), 1, + anon_sym_COLON, + ACTIONS(13243), 1, + anon_sym_RPAREN, + STATE(7243), 1, + sym_gnu_asm_clobber_list, + [285232] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13148), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(13150), 2, - anon_sym_COMMA, - anon_sym_LBRACE, - [279470] = 4, + ACTIONS(13119), 1, + anon_sym_catch, + STATE(1709), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [285243] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12481), 1, + ACTIONS(8742), 1, anon_sym_COMMA, - ACTIONS(13152), 1, - anon_sym_RPAREN, - STATE(7523), 1, - aux_sym_parameter_list_repeat1, - [279483] = 4, + ACTIONS(13245), 1, + anon_sym_GT2, + STATE(7446), 1, + aux_sym_template_argument_list_repeat1, + [285256] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8751), 1, - anon_sym_COMMA, - ACTIONS(13154), 1, - anon_sym_RPAREN, - STATE(7279), 1, - aux_sym_argument_list_repeat1, - [279496] = 4, + ACTIONS(6428), 1, + anon_sym_SEMI, + ACTIONS(6580), 1, + anon_sym_LT, + STATE(1724), 1, + sym_template_argument_list, + [285269] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12525), 1, + ACTIONS(12471), 1, anon_sym_COLON, - ACTIONS(13156), 1, + ACTIONS(13247), 1, anon_sym_RPAREN, - STATE(7511), 1, - sym_gnu_asm_input_operand_list, - [279509] = 4, + STATE(8154), 1, + sym_gnu_asm_goto_list, + [285282] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12421), 1, + ACTIONS(8830), 1, anon_sym_COMMA, - ACTIONS(13158), 1, - anon_sym_RBRACK_RBRACK, - STATE(7547), 1, - aux_sym_attribute_declaration_repeat1, - [279522] = 4, + ACTIONS(8900), 1, + anon_sym_RBRACK, + STATE(7432), 1, + aux_sym_subscript_argument_list_repeat1, + [285295] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12459), 1, - anon_sym_COLON, - ACTIONS(13160), 1, - anon_sym_RPAREN, - STATE(7512), 1, - sym_gnu_asm_output_operand_list, - [279535] = 4, + ACTIONS(10063), 1, + anon_sym_COMMA, + ACTIONS(13249), 1, + anon_sym_SEMI, + STATE(7680), 1, + aux_sym_declaration_repeat1, + [285308] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8707), 1, + ACTIONS(13251), 1, + sym_identifier, + STATE(1923), 1, + sym_template_type, + STATE(3542), 1, + sym_template_function, + [285321] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8742), 1, anon_sym_COMMA, - ACTIONS(13162), 1, + ACTIONS(13253), 1, anon_sym_GT2, - STATE(7411), 1, + STATE(7446), 1, aux_sym_template_argument_list_repeat1, - [279548] = 4, + [285334] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8707), 1, + ACTIONS(8742), 1, anon_sym_COMMA, - ACTIONS(13164), 1, + ACTIONS(13255), 1, anon_sym_GT2, - STATE(7411), 1, + STATE(7650), 1, aux_sym_template_argument_list_repeat1, - [279561] = 4, + [285347] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8707), 1, + ACTIONS(8742), 1, anon_sym_COMMA, - ACTIONS(13166), 1, + ACTIONS(13257), 1, anon_sym_GT2, - STATE(7411), 1, + STATE(7446), 1, aux_sym_template_argument_list_repeat1, - [279574] = 4, + [285360] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9995), 1, - anon_sym_COMMA, - ACTIONS(13168), 1, - anon_sym_SEMI, - STATE(7521), 1, - aux_sym_declaration_repeat1, - [279587] = 4, + ACTIONS(13259), 1, + sym_identifier, + STATE(1923), 1, + sym_template_type, + STATE(2675), 1, + sym_template_function, + [285373] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12421), 1, + ACTIONS(8742), 1, anon_sym_COMMA, - ACTIONS(13170), 1, - anon_sym_RBRACK_RBRACK, - STATE(7138), 1, - aux_sym_attribute_declaration_repeat1, - [279600] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13141), 1, - anon_sym_catch, - STATE(1838), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [279611] = 4, + ACTIONS(13261), 1, + anon_sym_GT2, + STATE(7446), 1, + aux_sym_template_argument_list_repeat1, + [285386] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12112), 1, + ACTIONS(8742), 1, anon_sym_COMMA, - ACTIONS(13172), 1, - anon_sym_LBRACE, - STATE(7318), 1, - aux_sym_base_class_clause_repeat1, - [279624] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6668), 1, - anon_sym___attribute, - ACTIONS(6670), 2, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [279635] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12573), 1, - anon_sym_COLON, - ACTIONS(13174), 1, - anon_sym_RPAREN, - STATE(7513), 1, - sym_gnu_asm_clobber_list, - [279648] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12525), 1, - anon_sym_COLON, - ACTIONS(13176), 1, - anon_sym_RPAREN, - STATE(7515), 1, - sym_gnu_asm_input_operand_list, - [279661] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12595), 1, - anon_sym_COLON, - ACTIONS(13178), 1, - anon_sym_RPAREN, - STATE(8496), 1, - sym_gnu_asm_goto_list, - [279674] = 4, + ACTIONS(13263), 1, + anon_sym_GT2, + STATE(7446), 1, + aux_sym_template_argument_list_repeat1, + [285399] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10582), 1, + ACTIONS(5232), 1, anon_sym_LBRACE, - ACTIONS(10586), 1, - anon_sym_requires, - STATE(8327), 1, - sym_requires_clause, - [279687] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12573), 1, - anon_sym_COLON, - ACTIONS(13180), 1, - anon_sym_RPAREN, - STATE(7516), 1, - sym_gnu_asm_clobber_list, - [279700] = 4, + ACTIONS(12214), 1, + anon_sym_COLON_COLON, + STATE(678), 1, + sym_declaration_list, + [285412] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12595), 1, - anon_sym_COLON, - ACTIONS(13182), 1, - anon_sym_RPAREN, - STATE(8498), 1, - sym_gnu_asm_goto_list, - [279713] = 4, + ACTIONS(12615), 1, + anon_sym_LPAREN2, + ACTIONS(13265), 1, + anon_sym_constexpr, + STATE(190), 1, + sym_condition_clause, + [285425] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9995), 1, + ACTIONS(8742), 1, anon_sym_COMMA, - ACTIONS(13184), 1, - anon_sym_SEMI, - STATE(7521), 1, - aux_sym_declaration_repeat1, - [279726] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12509), 1, - anon_sym_catch, - STATE(409), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [279737] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6672), 1, - anon_sym___attribute, - ACTIONS(6674), 2, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [279748] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6680), 1, - anon_sym___attribute, - ACTIONS(6682), 2, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [279759] = 4, + ACTIONS(13267), 1, + anon_sym_GT2, + STATE(7446), 1, + aux_sym_template_argument_list_repeat1, + [285438] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13186), 1, + ACTIONS(10063), 1, anon_sym_COMMA, - ACTIONS(13189), 1, + ACTIONS(13269), 1, anon_sym_SEMI, - STATE(7521), 1, + STATE(7370), 1, aux_sym_declaration_repeat1, - [279772] = 4, + [285451] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9995), 1, + ACTIONS(10063), 1, anon_sym_COMMA, - ACTIONS(13191), 1, + ACTIONS(13271), 1, anon_sym_SEMI, - STATE(7521), 1, + STATE(7684), 1, aux_sym_declaration_repeat1, - [279785] = 4, + [285464] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12481), 1, + ACTIONS(8742), 1, anon_sym_COMMA, - ACTIONS(13193), 1, - anon_sym_RPAREN, - STATE(7454), 1, - aux_sym_parameter_list_repeat1, - [279798] = 4, + ACTIONS(13273), 1, + anon_sym_GT2, + STATE(7446), 1, + aux_sym_template_argument_list_repeat1, + [285477] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9995), 1, + ACTIONS(10063), 1, anon_sym_COMMA, - ACTIONS(13195), 1, + ACTIONS(13275), 1, anon_sym_SEMI, - STATE(7525), 1, + STATE(7684), 1, aux_sym_declaration_repeat1, - [279811] = 4, + [285490] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9995), 1, - anon_sym_COMMA, - ACTIONS(13197), 1, - anon_sym_SEMI, - STATE(7521), 1, - aux_sym_declaration_repeat1, - [279824] = 4, + ACTIONS(13277), 1, + sym_identifier, + STATE(1923), 1, + sym_template_type, + STATE(2675), 1, + sym_template_function, + [285503] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12421), 1, + ACTIONS(12546), 1, anon_sym_COMMA, - ACTIONS(13199), 1, + ACTIONS(13279), 1, anon_sym_RBRACK_RBRACK, - STATE(7535), 1, + STATE(7263), 1, aux_sym_attribute_declaration_repeat1, - [279837] = 3, + [285516] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12779), 1, - anon_sym_catch, - STATE(359), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [279848] = 3, + ACTIONS(8782), 1, + anon_sym_COMMA, + ACTIONS(8932), 1, + anon_sym_RPAREN, + STATE(7493), 1, + aux_sym_argument_list_repeat1, + [285529] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12694), 1, - anon_sym_catch, - STATE(225), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [279859] = 3, + ACTIONS(8820), 1, + anon_sym_COMMA, + ACTIONS(13281), 1, + anon_sym_RPAREN, + STATE(7344), 1, + aux_sym_generic_expression_repeat1, + [285542] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12509), 1, - anon_sym_catch, - STATE(447), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [279870] = 3, + ACTIONS(12778), 1, + anon_sym_COMMA, + ACTIONS(13283), 1, + anon_sym_RPAREN, + STATE(7336), 1, + aux_sym_requires_parameter_list_repeat1, + [285555] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13141), 1, - anon_sym_catch, - STATE(1846), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [279881] = 4, + ACTIONS(12590), 1, + anon_sym_COMMA, + ACTIONS(13285), 1, + anon_sym_RPAREN, + STATE(7359), 1, + aux_sym_parameter_list_repeat1, + [285568] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9995), 1, + ACTIONS(13287), 3, anon_sym_COMMA, - ACTIONS(13201), 1, - anon_sym_SEMI, - STATE(7543), 1, - aux_sym_declaration_repeat1, - [279894] = 4, + anon_sym_RPAREN, + anon_sym_COLON, + [285577] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13203), 1, - sym_identifier, - STATE(1910), 1, - sym_template_type, - STATE(6068), 1, - sym_template_function, - [279907] = 4, + ACTIONS(12776), 1, + anon_sym_catch, + STATE(230), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [285588] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8809), 1, + ACTIONS(8830), 1, anon_sym_COMMA, - ACTIONS(13205), 1, + ACTIONS(13289), 1, anon_sym_RBRACK, - STATE(7465), 1, + STATE(7402), 1, aux_sym_subscript_argument_list_repeat1, - [279920] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12481), 1, - anon_sym_COMMA, - ACTIONS(13207), 1, - anon_sym_RPAREN, - STATE(7454), 1, - aux_sym_parameter_list_repeat1, - [279933] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12421), 1, - anon_sym_COMMA, - ACTIONS(13209), 1, - anon_sym_RBRACK_RBRACK, - STATE(7395), 1, - aux_sym_attribute_declaration_repeat1, - [279946] = 4, + [285601] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9995), 1, + ACTIONS(10063), 1, anon_sym_COMMA, - ACTIONS(13211), 1, + ACTIONS(13291), 1, anon_sym_SEMI, - STATE(7164), 1, + STATE(7689), 1, aux_sym_declaration_repeat1, - [279959] = 4, + [285614] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13213), 1, - sym_identifier, - STATE(1790), 1, - sym_template_type, - STATE(3254), 1, - sym_template_function, - [279972] = 4, + ACTIONS(10532), 1, + anon_sym_LBRACE, + ACTIONS(10536), 1, + anon_sym_requires, + STATE(8062), 1, + sym_requires_clause, + [285627] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12554), 1, + anon_sym_COLON, + ACTIONS(13293), 1, + anon_sym_RPAREN, + STATE(7568), 1, + sym_gnu_asm_output_operand_list, + [285640] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12112), 1, + ACTIONS(13295), 3, anon_sym_COMMA, - ACTIONS(12114), 1, - anon_sym_LBRACE, - STATE(7304), 1, - aux_sym_base_class_clause_repeat1, - [279985] = 4, + anon_sym_RPAREN, + anon_sym_COLON, + [285649] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12112), 1, + ACTIONS(10063), 1, anon_sym_COMMA, - ACTIONS(12114), 1, - anon_sym_LBRACE, - STATE(7318), 1, - aux_sym_base_class_clause_repeat1, - [279998] = 4, + ACTIONS(13297), 1, + anon_sym_SEMI, + STATE(7684), 1, + aux_sym_declaration_repeat1, + [285662] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8707), 1, + ACTIONS(8742), 1, anon_sym_COMMA, - ACTIONS(13215), 1, + ACTIONS(13299), 1, anon_sym_GT2, - STATE(7554), 1, + STATE(7412), 1, aux_sym_template_argument_list_repeat1, - [280011] = 4, + [285675] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9995), 1, - anon_sym_COMMA, - ACTIONS(13217), 1, - anon_sym_SEMI, - STATE(7555), 1, - aux_sym_declaration_repeat1, - [280024] = 4, + ACTIONS(13301), 1, + sym_identifier, + STATE(1923), 1, + sym_template_type, + STATE(3634), 1, + sym_template_function, + [285688] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9995), 1, + ACTIONS(10063), 1, anon_sym_COMMA, - ACTIONS(13219), 1, + ACTIONS(13303), 1, anon_sym_SEMI, - STATE(7521), 1, + STATE(7345), 1, aux_sym_declaration_repeat1, - [280037] = 4, + [285701] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9995), 1, + ACTIONS(10063), 1, anon_sym_COMMA, - ACTIONS(13221), 1, + ACTIONS(13305), 1, anon_sym_SEMI, - STATE(7521), 1, + STATE(7684), 1, aux_sym_declaration_repeat1, - [280050] = 4, + [285714] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13223), 1, + ACTIONS(13307), 1, sym_identifier, - STATE(1910), 1, + STATE(1923), 1, sym_template_type, - STATE(2774), 1, + STATE(2504), 1, sym_template_function, - [280063] = 4, + [285727] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12112), 1, + ACTIONS(10063), 1, anon_sym_COMMA, - ACTIONS(12393), 1, - anon_sym_LBRACE, - STATE(7318), 1, - aux_sym_base_class_clause_repeat1, - [280076] = 4, + ACTIONS(13309), 1, + anon_sym_SEMI, + STATE(7483), 1, + aux_sym_declaration_repeat1, + [285740] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12112), 1, + ACTIONS(10063), 1, anon_sym_COMMA, - ACTIONS(12393), 1, - anon_sym_LBRACE, - STATE(7150), 1, - aux_sym_base_class_clause_repeat1, - [280089] = 4, + ACTIONS(13311), 1, + anon_sym_SEMI, + STATE(7684), 1, + aux_sym_declaration_repeat1, + [285753] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12421), 1, + ACTIONS(10063), 1, anon_sym_COMMA, - ACTIONS(13225), 1, - anon_sym_RBRACK_RBRACK, - STATE(7395), 1, - aux_sym_attribute_declaration_repeat1, - [280102] = 3, + ACTIONS(13313), 1, + anon_sym_SEMI, + STATE(7684), 1, + aux_sym_declaration_repeat1, + [285766] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13227), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(13229), 2, + ACTIONS(10063), 1, anon_sym_COMMA, - anon_sym_LBRACE, - [280113] = 4, + ACTIONS(13315), 1, + anon_sym_SEMI, + STATE(7684), 1, + aux_sym_declaration_repeat1, + [285779] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8751), 1, + ACTIONS(13004), 1, anon_sym_COMMA, - ACTIONS(8753), 1, + ACTIONS(13317), 1, anon_sym_RPAREN, - STATE(7223), 1, - aux_sym_argument_list_repeat1, - [280126] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5230), 1, - anon_sym_LBRACE, - ACTIONS(12130), 1, - anon_sym_COLON_COLON, - STATE(684), 1, - sym_declaration_list, - [280139] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8793), 1, - anon_sym_COMMA, - ACTIONS(8795), 1, - anon_sym_RBRACE, - STATE(7256), 1, - aux_sym_initializer_list_repeat1, - [280152] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8707), 1, - anon_sym_COMMA, - ACTIONS(13231), 1, - anon_sym_GT2, - STATE(7411), 1, - aux_sym_template_argument_list_repeat1, - [280165] = 4, + STATE(7505), 1, + aux_sym_gnu_asm_goto_list_repeat1, + [285792] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8707), 1, - anon_sym_COMMA, - ACTIONS(13233), 1, - anon_sym_GT2, - STATE(7411), 1, - aux_sym_template_argument_list_repeat1, - [280178] = 4, + ACTIONS(13319), 1, + sym_identifier, + STATE(1923), 1, + sym_template_type, + STATE(2675), 1, + sym_template_function, + [285805] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8707), 1, + ACTIONS(10063), 1, anon_sym_COMMA, - ACTIONS(13235), 1, - anon_sym_GT2, - STATE(7411), 1, - aux_sym_template_argument_list_repeat1, - [280191] = 4, + ACTIONS(13321), 1, + anon_sym_SEMI, + STATE(7684), 1, + aux_sym_declaration_repeat1, + [285818] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9995), 1, + ACTIONS(13323), 1, anon_sym_COMMA, - ACTIONS(13237), 1, + ACTIONS(13326), 1, anon_sym_SEMI, - STATE(7521), 1, + STATE(7684), 1, aux_sym_declaration_repeat1, - [280204] = 4, + [285831] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2625), 1, - anon_sym_while, - ACTIONS(12816), 1, - anon_sym_else, - STATE(344), 1, - sym_else_clause, - [280217] = 4, + ACTIONS(12937), 1, + anon_sym_catch, + STATE(1871), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [285842] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12459), 1, + ACTIONS(12554), 1, anon_sym_COLON, - ACTIONS(13239), 1, + ACTIONS(13328), 1, anon_sym_RPAREN, - STATE(7351), 1, + STATE(7512), 1, sym_gnu_asm_output_operand_list, - [280230] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8707), 1, - anon_sym_COMMA, - ACTIONS(13241), 1, - anon_sym_GT2, - STATE(7412), 1, - aux_sym_template_argument_list_repeat1, - [280243] = 4, + [285855] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12650), 1, + ACTIONS(12625), 1, sym_identifier, - ACTIONS(12652), 1, + ACTIONS(12627), 1, anon_sym_using, - STATE(7690), 1, + STATE(7332), 1, sym_attribute, - [280256] = 4, + [285868] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12724), 1, + ACTIONS(12590), 1, anon_sym_COMMA, - ACTIONS(13243), 1, - anon_sym_GT2, - STATE(7444), 1, - aux_sym_template_parameter_list_repeat1, - [280269] = 3, + ACTIONS(13330), 1, + anon_sym_RPAREN, + STATE(7359), 1, + aux_sym_parameter_list_repeat1, + [285881] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13245), 1, - sym_identifier, - STATE(1790), 1, - sym_template_type, - [280279] = 2, + ACTIONS(10063), 1, + anon_sym_COMMA, + ACTIONS(13332), 1, + anon_sym_SEMI, + STATE(7684), 1, + aux_sym_declaration_repeat1, + [285894] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13247), 2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - [280287] = 3, + ACTIONS(13334), 1, + anon_sym_COMMA, + ACTIONS(13337), 1, + anon_sym_RPAREN, + STATE(7690), 1, + aux_sym_preproc_params_repeat1, + [285907] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_LBRACE, - STATE(1608), 1, + STATE(3312), 1, sym_compound_statement, - [280297] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13249), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [280305] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13251), 1, - anon_sym_COMMA, - ACTIONS(13253), 1, - anon_sym_RBRACE, - [280315] = 3, + [285917] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13255), 1, - anon_sym_LPAREN2, - STATE(8322), 1, - sym_parenthesized_expression, - [280325] = 3, + ACTIONS(5565), 1, + anon_sym_LBRACE, + STATE(2230), 1, + sym_field_declaration_list, + [285927] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6362), 1, + ACTIONS(5565), 1, anon_sym_LBRACE, - STATE(2638), 1, + STATE(2231), 1, sym_field_declaration_list, - [280335] = 3, + [285937] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(13339), 1, anon_sym_LPAREN2, - STATE(7792), 1, - sym_parameter_list, - [280345] = 2, + STATE(7864), 1, + sym_parenthesized_expression, + [285947] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9023), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [280353] = 3, + ACTIONS(57), 1, + anon_sym_LBRACE, + STATE(3265), 1, + sym_compound_statement, + [285957] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5232), 1, + ACTIONS(5234), 1, anon_sym_LBRACE, - STATE(629), 1, + STATE(504), 1, sym_declaration_list, - [280363] = 3, + [285967] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1668), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - STATE(902), 1, + STATE(7490), 1, sym_compound_statement, - [280373] = 3, + [285977] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - STATE(7529), 1, - sym_compound_statement, - [280383] = 3, + ACTIONS(12220), 1, + sym_identifier, + STATE(6992), 1, + sym_module_name, + [285987] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7520), 1, - anon_sym_LBRACE, - STATE(3971), 1, - sym_field_declaration_list, - [280393] = 3, + ACTIONS(4591), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [285995] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - STATE(3277), 1, - sym_compound_statement, - [280403] = 3, + ACTIONS(8804), 1, + anon_sym_RPAREN, + ACTIONS(8806), 1, + anon_sym_SEMI, + [286005] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(866), 1, - anon_sym_LBRACE, - STATE(530), 1, - sym_compound_statement, - [280413] = 3, + ACTIONS(13341), 1, + anon_sym_LT, + STATE(2361), 1, + sym_template_argument_list, + [286015] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13257), 1, + ACTIONS(13343), 1, anon_sym_LT, - STATE(2670), 1, + STATE(3720), 1, sym_template_argument_list, - [280423] = 3, + [286025] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(9863), 1, anon_sym_LBRACE, - STATE(1621), 1, + STATE(4301), 1, sym_compound_statement, - [280433] = 3, + [286035] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9827), 1, + ACTIONS(10666), 1, anon_sym_LBRACE, - STATE(2408), 1, + STATE(2200), 1, sym_compound_statement, - [280443] = 3, + [286045] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13255), 1, + ACTIONS(12615), 1, anon_sym_LPAREN2, - STATE(7768), 1, - sym_parenthesized_expression, - [280453] = 2, + STATE(213), 1, + sym_condition_clause, + [286055] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8907), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [280461] = 3, + ACTIONS(13345), 1, + sym_identifier, + STATE(4451), 1, + sym_template_type, + [286065] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(297), 1, + ACTIONS(3623), 1, anon_sym_LBRACE, - STATE(333), 1, - sym_compound_statement, - [280471] = 3, - ACTIONS(3), 1, + STATE(3883), 1, + sym_initializer_list, + [286075] = 3, + ACTIONS(10057), 1, sym_comment, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - STATE(7682), 1, - sym_parameter_list, - [280481] = 3, + ACTIONS(13347), 1, + aux_sym_preproc_include_token2, + ACTIONS(13349), 1, + sym_preproc_arg, + [286085] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9756), 1, + ACTIONS(297), 1, anon_sym_LBRACE, - STATE(3873), 1, - sym_requirement_seq, - [280491] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8866), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [280499] = 3, + STATE(243), 1, + sym_compound_statement, + [286095] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(894), 1, + ACTIONS(5230), 1, anon_sym_LBRACE, - STATE(707), 1, - sym_compound_statement, - [280509] = 2, + STATE(694), 1, + sym_declaration_list, + [286105] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9049), 2, + ACTIONS(13351), 1, anon_sym_COMMA, + ACTIONS(13353), 1, anon_sym_RBRACE, - [280517] = 3, + [286115] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9835), 1, + ACTIONS(6530), 1, anon_sym_LBRACE, - STATE(3804), 1, - sym_compound_statement, - [280527] = 3, - ACTIONS(10118), 1, - sym_comment, - ACTIONS(13259), 1, - aux_sym_preproc_include_token2, - ACTIONS(13261), 1, - sym_preproc_arg, - [280537] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13263), 1, - anon_sym_LT, - STATE(2591), 1, - sym_template_argument_list, - [280547] = 2, + STATE(2918), 1, + sym_field_declaration_list, + [286125] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13265), 2, + ACTIONS(12664), 2, anon_sym_COMMA, - anon_sym_GT2, - [280555] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13267), 1, - sym_identifier, - ACTIONS(13269), 1, - anon_sym_LPAREN2, - [280565] = 3, + anon_sym_RPAREN, + [286133] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13271), 1, - sym_identifier, - STATE(3623), 1, - sym_template_type, - [280575] = 3, + ACTIONS(5565), 1, + anon_sym_LBRACE, + STATE(2227), 1, + sym_field_declaration_list, + [286143] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13273), 1, - anon_sym_LT, - STATE(2324), 1, - sym_template_argument_list, - [280585] = 3, + ACTIONS(8630), 1, + anon_sym_LBRACE, + STATE(4544), 1, + sym_field_declaration_list, + [286153] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(866), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - STATE(733), 1, + STATE(501), 1, sym_compound_statement, - [280595] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11051), 1, - anon_sym_RBRACE, - ACTIONS(13251), 1, - anon_sym_COMMA, - [280605] = 2, + [286163] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12751), 2, - anon_sym_SEMI, + ACTIONS(7543), 1, anon_sym_LBRACE, - [280613] = 3, + STATE(4006), 1, + sym_field_declaration_list, + [286173] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6018), 1, + ACTIONS(12436), 1, anon_sym_LBRACE, - STATE(2343), 1, - sym_field_declaration_list, - [280623] = 3, + STATE(5704), 1, + sym_requirement_seq, + [286183] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(297), 1, + ACTIONS(894), 1, anon_sym_LBRACE, - STATE(250), 1, + STATE(462), 1, sym_compound_statement, - [280633] = 3, + [286193] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11096), 1, - anon_sym_RBRACE, - ACTIONS(13251), 1, - anon_sym_COMMA, - [280643] = 3, + ACTIONS(12214), 1, + anon_sym_COLON_COLON, + ACTIONS(13355), 1, + anon_sym_SEMI, + [286203] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5222), 1, + ACTIONS(5232), 1, anon_sym_LBRACE, - STATE(686), 1, + STATE(746), 1, sym_declaration_list, - [280653] = 3, + [286213] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9817), 1, - anon_sym_LBRACE, - STATE(5919), 1, - sym_compound_statement, - [280663] = 3, + ACTIONS(6580), 1, + anon_sym_LT, + STATE(1623), 1, + sym_template_argument_list, + [286223] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_LBRACE, - STATE(428), 1, + STATE(1632), 1, sym_compound_statement, - [280673] = 3, + [286233] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8697), 1, + ACTIONS(6803), 1, anon_sym_LT, - STATE(2670), 1, + STATE(2801), 1, sym_template_argument_list, - [280683] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5234), 1, - anon_sym_LBRACE, - STATE(341), 1, - sym_declaration_list, - [280693] = 3, + [286243] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6362), 1, - anon_sym_LBRACE, - STATE(2578), 1, - sym_field_declaration_list, - [280703] = 3, + ACTIONS(13343), 1, + anon_sym_LT, + STATE(3518), 1, + sym_template_argument_list, + [286253] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6362), 1, + ACTIONS(9863), 1, anon_sym_LBRACE, - STATE(2579), 1, - sym_field_declaration_list, - [280713] = 3, + STATE(4274), 1, + sym_compound_statement, + [286263] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13251), 1, - anon_sym_COMMA, - ACTIONS(13275), 1, + ACTIONS(11132), 1, anon_sym_RBRACE, - [280723] = 3, + ACTIONS(13351), 1, + anon_sym_COMMA, + [286273] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3615), 1, + ACTIONS(1954), 1, anon_sym_LBRACE, - STATE(3806), 1, + STATE(2460), 1, sym_initializer_list, - [280733] = 3, + [286283] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13251), 1, + ACTIONS(13351), 1, anon_sym_COMMA, - ACTIONS(13277), 1, + ACTIONS(13357), 1, anon_sym_RBRACE, - [280743] = 3, + [286293] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9817), 1, + ACTIONS(297), 1, anon_sym_LBRACE, - STATE(5913), 1, + STATE(255), 1, sym_compound_statement, - [280753] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8147), 1, - anon_sym_LPAREN2, - STATE(8461), 1, - sym_argument_list, - [280763] = 3, + [286303] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6499), 1, + ACTIONS(7543), 1, anon_sym_LBRACE, - STATE(2835), 1, + STATE(4019), 1, sym_field_declaration_list, - [280773] = 3, + [286313] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9835), 1, + ACTIONS(7543), 1, anon_sym_LBRACE, - STATE(3915), 1, - sym_compound_statement, - [280783] = 3, + STATE(4023), 1, + sym_field_declaration_list, + [286323] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(894), 1, - anon_sym_LBRACE, - STATE(724), 1, - sym_compound_statement, - [280793] = 3, + ACTIONS(13359), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [286331] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11104), 1, - anon_sym_RBRACE, - ACTIONS(13251), 1, - anon_sym_COMMA, - [280803] = 3, + ACTIONS(13361), 1, + sym_identifier, + STATE(2659), 1, + sym_template_type, + [286341] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11086), 1, - anon_sym_RBRACE, - ACTIONS(13251), 1, + ACTIONS(13351), 1, anon_sym_COMMA, - [280813] = 3, + ACTIONS(13363), 1, + anon_sym_RBRACE, + [286351] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9817), 1, + ACTIONS(9839), 1, anon_sym_LBRACE, - STATE(5899), 1, + STATE(5566), 1, sym_compound_statement, - [280823] = 3, + [286361] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(894), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - STATE(600), 1, + STATE(1630), 1, sym_compound_statement, - [280833] = 3, + [286371] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12700), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [286379] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5501), 1, + ACTIONS(5232), 1, anon_sym_LBRACE, - STATE(2175), 1, - sym_field_declaration_list, - [280843] = 3, + STATE(794), 1, + sym_declaration_list, + [286389] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13251), 1, + ACTIONS(13351), 1, anon_sym_COMMA, - ACTIONS(13279), 1, + ACTIONS(13365), 1, anon_sym_RBRACE, - [280853] = 3, + [286399] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6362), 1, - anon_sym_LBRACE, - STATE(2581), 1, - sym_field_declaration_list, - [280863] = 3, + ACTIONS(11160), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [286407] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5232), 1, + ACTIONS(9766), 1, anon_sym_LBRACE, - STATE(494), 1, - sym_declaration_list, - [280873] = 3, + STATE(3314), 1, + sym_requirement_seq, + [286417] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10948), 1, - anon_sym_LBRACE, - STATE(1937), 1, - sym_compound_statement, - [280883] = 3, + ACTIONS(13367), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [286425] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8878), 1, + ACTIONS(7543), 1, anon_sym_LBRACE, - STATE(4886), 1, + STATE(4000), 1, sym_field_declaration_list, - [280893] = 3, + [286435] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8878), 1, + ACTIONS(2457), 1, anon_sym_LBRACE, - STATE(4888), 1, - sym_field_declaration_list, - [280903] = 3, + STATE(3411), 1, + sym_initializer_list, + [286445] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9835), 1, + ACTIONS(6035), 1, anon_sym_LBRACE, - STATE(3875), 1, - sym_compound_statement, - [280913] = 3, + STATE(2373), 1, + sym_field_declaration_list, + [286455] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(297), 1, - anon_sym_LBRACE, - STATE(238), 1, - sym_compound_statement, - [280923] = 3, + ACTIONS(13369), 1, + sym_identifier, + STATE(1808), 1, + sym_template_type, + [286465] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12130), 1, - anon_sym_COLON_COLON, - ACTIONS(13281), 1, - anon_sym_SEMI, - [280933] = 3, + ACTIONS(9045), 1, + anon_sym_LT, + STATE(2578), 1, + sym_template_argument_list, + [286475] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13283), 1, - sym_identifier, - STATE(1790), 1, - sym_template_type, - [280943] = 3, + ACTIONS(57), 1, + anon_sym_LBRACE, + STATE(436), 1, + sym_compound_statement, + [286485] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12715), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [286493] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6004), 1, + ACTIONS(6064), 1, anon_sym_LT, - STATE(1603), 1, + STATE(1623), 1, sym_template_argument_list, - [280953] = 3, + [286503] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(894), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - STATE(567), 1, + STATE(1634), 1, sym_compound_statement, - [280963] = 3, + [286513] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13285), 1, + ACTIONS(13371), 1, anon_sym_LT, - STATE(2403), 1, + STATE(2411), 1, sym_template_argument_list, - [280973] = 3, + [286523] = 3, + ACTIONS(10057), 1, + sym_comment, + ACTIONS(13373), 1, + aux_sym_preproc_include_token2, + ACTIONS(13375), 1, + sym_preproc_arg, + [286533] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9730), 1, + ACTIONS(9750), 1, anon_sym_LBRACE, - STATE(3217), 1, + STATE(3488), 1, sym_requirement_seq, - [280983] = 3, + [286543] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5501), 1, + ACTIONS(2623), 1, anon_sym_LBRACE, - STATE(2206), 1, - sym_field_declaration_list, - [280993] = 3, + STATE(3904), 1, + sym_initializer_list, + [286553] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(894), 1, - anon_sym_LBRACE, - STATE(450), 1, - sym_compound_statement, - [281003] = 3, - ACTIONS(10118), 1, + ACTIONS(13377), 1, + sym_identifier, + STATE(3699), 1, + sym_template_type, + [286563] = 3, + ACTIONS(10057), 1, sym_comment, - ACTIONS(13287), 1, + ACTIONS(13379), 1, aux_sym_preproc_include_token2, - ACTIONS(13289), 1, + ACTIONS(13381), 1, sym_preproc_arg, - [281013] = 3, + [286573] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13291), 1, + ACTIONS(13383), 1, sym_identifier, - STATE(2662), 1, + STATE(2583), 1, sym_template_type, - [281023] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13293), 1, - anon_sym_LT, - STATE(2687), 1, - sym_template_argument_list, - [281033] = 3, + [286583] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12130), 1, - anon_sym_COLON_COLON, - ACTIONS(13295), 1, - anon_sym_SEMI, - [281043] = 2, + ACTIONS(13385), 2, + anon_sym_COMMA, + anon_sym_GT2, + [286591] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12847), 2, + ACTIONS(12919), 1, + anon_sym_RBRACK, + ACTIONS(13387), 1, anon_sym_COMMA, - anon_sym_RPAREN, - [281051] = 3, + [286601] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5501), 1, + ACTIONS(6526), 1, anon_sym_LBRACE, - STATE(2186), 1, + STATE(2877), 1, sym_field_declaration_list, - [281061] = 3, + [286611] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6630), 1, - anon_sym_LT, - STATE(2324), 1, - sym_template_argument_list, - [281071] = 3, + ACTIONS(9009), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [286619] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13389), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [286627] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9827), 1, + ACTIONS(6530), 1, anon_sym_LBRACE, - STATE(2479), 1, - sym_compound_statement, - [281081] = 3, + STATE(2982), 1, + sym_field_declaration_list, + [286637] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8147), 1, + ACTIONS(12615), 1, anon_sym_LPAREN2, - STATE(8476), 1, - sym_argument_list, - [281091] = 3, + STATE(217), 1, + sym_condition_clause, + [286647] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6542), 1, + ACTIONS(297), 1, anon_sym_LBRACE, - STATE(2895), 1, - sym_field_declaration_list, - [281101] = 3, - ACTIONS(10118), 1, - sym_comment, - ACTIONS(13297), 1, - aux_sym_preproc_include_token2, - ACTIONS(13299), 1, - sym_preproc_arg, - [281111] = 3, + STATE(249), 1, + sym_compound_statement, + [286657] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(866), 1, anon_sym_LBRACE, - STATE(429), 1, + STATE(471), 1, sym_compound_statement, - [281121] = 2, + [286667] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13301), 2, - anon_sym_COMMA, - anon_sym_LBRACE, - [281129] = 3, + ACTIONS(12220), 1, + sym_identifier, + STATE(7778), 1, + sym_module_name, + [286677] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2499), 1, - anon_sym_LBRACE, - STATE(3541), 1, - sym_initializer_list, - [281139] = 2, + ACTIONS(12214), 1, + anon_sym_COLON_COLON, + ACTIONS(13391), 1, + anon_sym_SEMI, + [286687] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12471), 2, + ACTIONS(13393), 2, anon_sym_COMMA, anon_sym_LBRACE, - [281147] = 3, + [286695] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13303), 1, - sym_identifier, - STATE(2250), 1, - sym_template_type, - [281157] = 3, + ACTIONS(11116), 1, + anon_sym_RBRACE, + ACTIONS(13351), 1, + anon_sym_COMMA, + [286705] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(6363), 1, anon_sym_LBRACE, - STATE(3259), 1, - sym_compound_statement, - [281167] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12658), 1, - anon_sym_LPAREN2, - STATE(7857), 1, - sym_condition_clause, - [281177] = 3, + STATE(2623), 1, + sym_field_declaration_list, + [286715] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12658), 1, - anon_sym_LPAREN2, - STATE(177), 1, - sym_condition_clause, - [281187] = 3, + ACTIONS(12770), 2, + anon_sym_COMMA, + anon_sym_LBRACE, + [286723] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9821), 1, + ACTIONS(9853), 1, anon_sym_LBRACE, - STATE(3300), 1, + STATE(5977), 1, sym_compound_statement, - [281197] = 3, + [286733] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(1668), 1, anon_sym_LBRACE, - STATE(7528), 1, + STATE(913), 1, sym_compound_statement, - [281207] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13305), 1, - sym_identifier, - STATE(1910), 1, - sym_template_type, - [281217] = 3, + [286743] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13293), 1, + ACTIONS(8725), 1, anon_sym_LT, - STATE(3399), 1, + STATE(2745), 1, sym_template_argument_list, - [281227] = 3, + [286753] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8147), 1, - anon_sym_LPAREN2, - STATE(8797), 1, - sym_argument_list, - [281237] = 3, + ACTIONS(13395), 2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + [286761] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(13397), 2, + anon_sym_COMMA, anon_sym_LBRACE, - STATE(7123), 1, - sym_compound_statement, - [281247] = 3, + [286769] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12658), 1, - anon_sym_LPAREN2, - STATE(181), 1, - sym_condition_clause, - [281257] = 3, + ACTIONS(866), 1, + anon_sym_LBRACE, + STATE(802), 1, + sym_compound_statement, + [286779] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12082), 1, - sym_identifier, - STATE(7562), 1, - sym_module_name, - [281267] = 3, + ACTIONS(8947), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [286787] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8564), 1, - anon_sym_LT, - STATE(4378), 1, - sym_template_argument_list, - [281277] = 3, + ACTIONS(12615), 1, + anon_sym_LPAREN2, + STATE(197), 1, + sym_condition_clause, + [286797] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9825), 1, + ACTIONS(9774), 1, anon_sym_LBRACE, - STATE(4244), 1, - sym_compound_statement, - [281287] = 3, + STATE(3846), 1, + sym_requirement_seq, + [286807] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6793), 1, + ACTIONS(9853), 1, anon_sym_LBRACE, - STATE(3097), 1, - sym_field_declaration_list, - [281297] = 3, - ACTIONS(10118), 1, - sym_comment, - ACTIONS(13307), 1, - aux_sym_preproc_include_token2, - ACTIONS(13309), 1, - sym_preproc_arg, - [281307] = 3, + STATE(6009), 1, + sym_compound_statement, + [286817] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9827), 1, + ACTIONS(894), 1, anon_sym_LBRACE, - STATE(2433), 1, + STATE(717), 1, sym_compound_statement, - [281317] = 3, + [286827] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13311), 1, - sym_identifier, - ACTIONS(13313), 1, - anon_sym_RPAREN, - [281327] = 3, + ACTIONS(6588), 1, + anon_sym_LBRACE, + STATE(2897), 1, + sym_field_declaration_list, + [286837] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13255), 1, - anon_sym_LPAREN2, - STATE(8108), 1, - sym_parenthesized_expression, - [281337] = 3, + ACTIONS(6588), 1, + anon_sym_LBRACE, + STATE(2879), 1, + sym_field_declaration_list, + [286847] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(12615), 1, anon_sym_LPAREN2, - STATE(7627), 1, - sym_parameter_list, - [281347] = 3, + STATE(7767), 1, + sym_condition_clause, + [286857] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13251), 1, + ACTIONS(12796), 2, anon_sym_COMMA, - ACTIONS(13315), 1, - anon_sym_RBRACE, - [281357] = 3, + anon_sym_LBRACE, + [286865] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9740), 1, - anon_sym_LBRACE, - STATE(3649), 1, - sym_requirement_seq, - [281367] = 3, + ACTIONS(12615), 1, + anon_sym_LPAREN2, + STATE(178), 1, + sym_condition_clause, + [286875] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_LBRACE, - STATE(7344), 1, + STATE(7388), 1, sym_compound_statement, - [281377] = 3, + [286885] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10966), 1, + ACTIONS(9853), 1, anon_sym_LBRACE, - STATE(1823), 1, + STATE(6036), 1, sym_compound_statement, - [281387] = 3, + [286895] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5234), 1, + ACTIONS(9865), 1, anon_sym_LBRACE, - STATE(320), 1, - sym_declaration_list, - [281397] = 3, + STATE(3854), 1, + sym_compound_statement, + [286905] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9819), 1, - anon_sym_LBRACE, - STATE(3687), 1, - sym_compound_statement, - [281407] = 3, + ACTIONS(13399), 1, + sym_identifier, + STATE(1923), 1, + sym_template_type, + [286915] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13255), 1, - anon_sym_LPAREN2, - STATE(7647), 1, - sym_parenthesized_expression, - [281417] = 3, - ACTIONS(10118), 1, + ACTIONS(5236), 1, + anon_sym_LBRACE, + STATE(310), 1, + sym_declaration_list, + [286925] = 3, + ACTIONS(10057), 1, sym_comment, - ACTIONS(13317), 1, + ACTIONS(13401), 1, aux_sym_preproc_include_token2, - ACTIONS(13319), 1, + ACTIONS(13403), 1, sym_preproc_arg, - [281427] = 3, + [286935] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13273), 1, + ACTIONS(13405), 1, anon_sym_LT, - STATE(1941), 1, + STATE(2661), 1, sym_template_argument_list, - [281437] = 2, + [286945] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12893), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [281445] = 3, - ACTIONS(10118), 1, + ACTIONS(8177), 1, + anon_sym_LPAREN2, + STATE(8203), 1, + sym_argument_list, + [286955] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(13321), 1, - aux_sym_preproc_include_token2, - ACTIONS(13323), 1, - sym_preproc_arg, - [281455] = 3, + ACTIONS(8937), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [286963] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_LBRACE, - STATE(282), 1, + STATE(7170), 1, sym_compound_statement, - [281465] = 3, + [286973] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12082), 1, - sym_identifier, - STATE(6896), 1, - sym_module_name, - [281475] = 3, + ACTIONS(12615), 1, + anon_sym_LPAREN2, + STATE(180), 1, + sym_condition_clause, + [286983] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8878), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - STATE(4858), 1, - sym_field_declaration_list, - [281485] = 3, - ACTIONS(10118), 1, - sym_comment, - ACTIONS(13325), 1, - aux_sym_preproc_include_token2, - ACTIONS(13327), 1, - sym_preproc_arg, - [281495] = 3, + STATE(489), 1, + sym_compound_statement, + [286993] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(297), 1, + ACTIONS(866), 1, anon_sym_LBRACE, - STATE(308), 1, + STATE(540), 1, sym_compound_statement, - [281505] = 3, + [287003] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13329), 1, - anon_sym_LT, - STATE(1844), 1, - sym_template_argument_list, - [281515] = 3, + ACTIONS(10674), 1, + anon_sym_LBRACE, + STATE(1726), 1, + sym_compound_statement, + [287013] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11114), 1, - anon_sym_RBRACE, - ACTIONS(13251), 1, - anon_sym_COMMA, - [281525] = 3, + ACTIONS(9784), 1, + anon_sym_LBRACE, + STATE(2548), 1, + sym_requirement_seq, + [287023] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12130), 1, - anon_sym_COLON_COLON, - ACTIONS(13331), 1, - anon_sym_SEMI, - [281535] = 2, + ACTIONS(13341), 1, + anon_sym_LT, + STATE(2411), 1, + sym_template_argument_list, + [287033] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12938), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [281543] = 3, + ACTIONS(13343), 1, + anon_sym_LT, + STATE(2740), 1, + sym_template_argument_list, + [287043] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13255), 1, + ACTIONS(13339), 1, anon_sym_LPAREN2, - STATE(8517), 1, + STATE(8645), 1, sym_parenthesized_expression, - [281553] = 3, + [287053] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6793), 1, - anon_sym_LBRACE, - STATE(2984), 1, - sym_field_declaration_list, - [281563] = 3, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + STATE(8001), 1, + sym_parameter_list, + [287063] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6793), 1, + ACTIONS(11114), 1, + anon_sym_RBRACE, + ACTIONS(13351), 1, + anon_sym_COMMA, + [287073] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(297), 1, anon_sym_LBRACE, - STATE(2972), 1, - sym_field_declaration_list, - [281573] = 3, + STATE(313), 1, + sym_compound_statement, + [287083] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_LBRACE, - STATE(3300), 1, + STATE(7665), 1, sym_compound_statement, - [281583] = 3, + [287093] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(297), 1, + ACTIONS(6363), 1, anon_sym_LBRACE, - STATE(249), 1, - sym_compound_statement, - [281593] = 3, + STATE(2626), 1, + sym_field_declaration_list, + [287103] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11110), 1, - anon_sym_RBRACE, - ACTIONS(13251), 1, - anon_sym_COMMA, - [281603] = 3, + ACTIONS(6363), 1, + anon_sym_LBRACE, + STATE(2627), 1, + sym_field_declaration_list, + [287113] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7386), 1, - anon_sym_LT, - STATE(1603), 1, - sym_template_argument_list, - [281613] = 2, + ACTIONS(13339), 1, + anon_sym_LPAREN2, + STATE(7749), 1, + sym_parenthesized_expression, + [287123] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12929), 2, - anon_sym_SEMI, + ACTIONS(3879), 1, anon_sym_LBRACE, - [281621] = 3, + STATE(4852), 1, + sym_initializer_list, + [287133] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12589), 1, - anon_sym_RBRACK, - ACTIONS(13333), 1, - anon_sym_COMMA, - [281631] = 3, + ACTIONS(9839), 1, + anon_sym_LBRACE, + STATE(5577), 1, + sym_compound_statement, + [287143] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13273), 1, + ACTIONS(13405), 1, anon_sym_LT, - STATE(2403), 1, + STATE(3373), 1, sym_template_argument_list, - [281641] = 3, + [287153] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12658), 1, - anon_sym_LPAREN2, - STATE(7859), 1, - sym_condition_clause, - [281651] = 3, + ACTIONS(9855), 1, + anon_sym_LBRACE, + STATE(3559), 1, + sym_compound_statement, + [287163] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12658), 1, - anon_sym_LPAREN2, - STATE(189), 1, - sym_condition_clause, - [281661] = 3, + ACTIONS(9865), 1, + anon_sym_LBRACE, + STATE(3859), 1, + sym_compound_statement, + [287173] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(894), 1, anon_sym_LBRACE, - STATE(7527), 1, + STATE(737), 1, sym_compound_statement, - [281671] = 3, + [287183] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13335), 1, - sym_identifier, - STATE(1910), 1, - sym_template_type, - [281681] = 3, + ACTIONS(8628), 1, + anon_sym_LT, + STATE(4456), 1, + sym_template_argument_list, + [287193] = 3, + ACTIONS(10057), 1, + sym_comment, + ACTIONS(13407), 1, + aux_sym_preproc_include_token2, + ACTIONS(13409), 1, + sym_preproc_arg, + [287203] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8147), 1, + ACTIONS(9857), 1, + anon_sym_LBRACE, + STATE(2561), 1, + sym_compound_statement, + [287213] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8177), 1, anon_sym_LPAREN2, - STATE(8085), 1, + STATE(8616), 1, sym_argument_list, - [281691] = 3, + [287223] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(894), 1, anon_sym_LBRACE, - STATE(6932), 1, + STATE(580), 1, sym_compound_statement, - [281701] = 3, + [287233] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12658), 1, - anon_sym_LPAREN2, - STATE(194), 1, - sym_condition_clause, - [281711] = 3, + ACTIONS(13351), 1, + anon_sym_COMMA, + ACTIONS(13411), 1, + anon_sym_RBRACE, + [287243] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12658), 1, - anon_sym_LPAREN2, - STATE(208), 1, - sym_condition_clause, - [281721] = 3, + ACTIONS(13351), 1, + anon_sym_COMMA, + ACTIONS(13413), 1, + anon_sym_RBRACE, + [287253] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13415), 1, + sym_identifier, + STATE(1808), 1, + sym_template_type, + [287263] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7483), 1, + anon_sym_LT, + STATE(1623), 1, + sym_template_argument_list, + [287273] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9819), 1, + ACTIONS(6363), 1, anon_sym_LBRACE, - STATE(3660), 1, - sym_compound_statement, - [281731] = 3, + STATE(2629), 1, + sym_field_declaration_list, + [287283] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10966), 1, + ACTIONS(6530), 1, anon_sym_LBRACE, - STATE(1805), 1, - sym_compound_statement, - [281741] = 2, + STATE(2944), 1, + sym_field_declaration_list, + [287293] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13337), 2, - anon_sym_COMMA, - anon_sym_GT2, - [281749] = 3, + ACTIONS(6588), 1, + anon_sym_LBRACE, + STATE(2884), 1, + sym_field_declaration_list, + [287303] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12658), 1, - anon_sym_LPAREN2, - STATE(200), 1, - sym_condition_clause, - [281759] = 3, + ACTIONS(13417), 1, + sym_identifier, + STATE(1966), 1, + sym_template_type, + [287313] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13255), 1, + ACTIONS(12615), 1, anon_sym_LPAREN2, - STATE(7575), 1, - sym_parenthesized_expression, - [281769] = 3, + STATE(214), 1, + sym_condition_clause, + [287323] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13255), 1, + ACTIONS(12615), 1, anon_sym_LPAREN2, - STATE(8166), 1, - sym_parenthesized_expression, - [281779] = 3, + STATE(7926), 1, + sym_condition_clause, + [287333] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(12615), 1, anon_sym_LPAREN2, - STATE(7635), 1, - sym_parameter_list, - [281789] = 3, + STATE(188), 1, + sym_condition_clause, + [287343] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(866), 1, + ACTIONS(10666), 1, anon_sym_LBRACE, - STATE(491), 1, + STATE(1945), 1, sym_compound_statement, - [281799] = 3, + [287353] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_LBRACE, - STATE(7200), 1, + STATE(7246), 1, sym_compound_statement, - [281809] = 3, + [287363] = 3, + ACTIONS(10057), 1, + sym_comment, + ACTIONS(13419), 1, + aux_sym_preproc_include_token2, + ACTIONS(13421), 1, + sym_preproc_arg, + [287373] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1668), 1, - anon_sym_LBRACE, - STATE(897), 1, - sym_compound_statement, - [281819] = 3, + ACTIONS(13423), 1, + sym_identifier, + STATE(1923), 1, + sym_template_type, + [287383] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13251), 1, - anon_sym_COMMA, - ACTIONS(13339), 1, - anon_sym_RBRACE, - [281829] = 3, + ACTIONS(13425), 1, + sym_identifier, + ACTIONS(13427), 1, + anon_sym_LPAREN2, + [287393] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13255), 1, + ACTIONS(8177), 1, anon_sym_LPAREN2, - STATE(7695), 1, - sym_parenthesized_expression, - [281839] = 3, + STATE(8725), 1, + sym_argument_list, + [287403] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6793), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - STATE(3017), 1, - sym_field_declaration_list, - [281849] = 2, + STATE(7117), 1, + sym_compound_statement, + [287413] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12615), 1, + anon_sym_LPAREN2, + STATE(193), 1, + sym_condition_clause, + [287423] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13341), 2, + ACTIONS(13429), 2, anon_sym_COMMA, - anon_sym_GT2, - [281857] = 3, + anon_sym_RBRACK_RBRACK, + [287431] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1668), 1, + ACTIONS(9865), 1, anon_sym_LBRACE, - STATE(882), 1, + STATE(3906), 1, sym_compound_statement, - [281867] = 3, + [287441] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13343), 1, - anon_sym_LPAREN2, - ACTIONS(13345), 1, - sym_raw_string_delimiter, - [281877] = 3, + ACTIONS(13431), 1, + anon_sym_LT, + STATE(1863), 1, + sym_template_argument_list, + [287451] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9819), 1, + ACTIONS(10654), 1, anon_sym_LBRACE, - STATE(3624), 1, + STATE(1964), 1, sym_compound_statement, - [281887] = 3, + [287461] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12658), 1, - anon_sym_LPAREN2, - STATE(7571), 1, - sym_condition_clause, - [281897] = 3, + ACTIONS(6580), 1, + anon_sym_LT, + STATE(2756), 1, + sym_template_argument_list, + [287471] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5222), 1, - anon_sym_LBRACE, - STATE(671), 1, - sym_declaration_list, - [281907] = 3, + ACTIONS(13339), 1, + anon_sym_LPAREN2, + STATE(8530), 1, + sym_parenthesized_expression, + [287481] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_LBRACE, - STATE(7284), 1, + STATE(7172), 1, sym_compound_statement, - [281917] = 3, + [287491] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8878), 1, - anon_sym_LBRACE, - STATE(4844), 1, - sym_field_declaration_list, - [281927] = 2, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + STATE(7719), 1, + sym_parameter_list, + [287501] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13347), 2, + ACTIONS(11152), 1, + anon_sym_RBRACE, + ACTIONS(13351), 1, anon_sym_COMMA, - anon_sym_GT2, - [281935] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13349), 2, - anon_sym_DOT_DOT_DOT, - sym_identifier, - [281943] = 3, + [287511] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8147), 1, - anon_sym_LPAREN2, - STATE(8740), 1, - sym_argument_list, - [281953] = 3, + ACTIONS(894), 1, + anon_sym_LBRACE, + STATE(605), 1, + sym_compound_statement, + [287521] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_LBRACE, - STATE(7026), 1, + STATE(7334), 1, sym_compound_statement, - [281963] = 3, + [287531] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1668), 1, + ACTIONS(9855), 1, anon_sym_LBRACE, - STATE(923), 1, + STATE(3580), 1, sym_compound_statement, - [281973] = 2, + [287541] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13040), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [281981] = 3, + ACTIONS(13339), 1, + anon_sym_LPAREN2, + STATE(7730), 1, + sym_parenthesized_expression, + [287551] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13263), 1, - anon_sym_LT, - STATE(3321), 1, - sym_template_argument_list, - [281991] = 3, + ACTIONS(9839), 1, + anon_sym_LBRACE, + STATE(5595), 1, + sym_compound_statement, + [287561] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13255), 1, - anon_sym_LPAREN2, - STATE(8171), 1, - sym_parenthesized_expression, - [282001] = 3, + ACTIONS(13433), 1, + sym_identifier, + STATE(1808), 1, + sym_template_type, + [287571] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(12615), 1, anon_sym_LPAREN2, - STATE(7623), 1, - sym_parameter_list, - [282011] = 3, - ACTIONS(10118), 1, - sym_comment, - ACTIONS(13351), 1, - aux_sym_preproc_include_token2, - ACTIONS(13353), 1, - sym_preproc_arg, - [282021] = 3, + STATE(7776), 1, + sym_condition_clause, + [287581] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_LBRACE, - STATE(7334), 1, + STATE(7387), 1, sym_compound_statement, - [282031] = 3, + [287591] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13255), 1, + ACTIONS(12615), 1, anon_sym_LPAREN2, - STATE(7631), 1, - sym_parenthesized_expression, - [282041] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13355), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [282049] = 3, + STATE(191), 1, + sym_condition_clause, + [287601] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1954), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - STATE(2500), 1, - sym_initializer_list, - [282059] = 2, + STATE(540), 1, + sym_compound_statement, + [287611] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13047), 2, - anon_sym_COMMA, - anon_sym_GT2, - [282067] = 3, + ACTIONS(8177), 1, + anon_sym_LPAREN2, + STATE(8794), 1, + sym_argument_list, + [287621] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13293), 1, - anon_sym_LT, - STATE(3557), 1, - sym_template_argument_list, - [282077] = 3, + ACTIONS(57), 1, + anon_sym_LBRACE, + STATE(7154), 1, + sym_compound_statement, + [287631] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6542), 1, + ACTIONS(5236), 1, anon_sym_LBRACE, - STATE(2967), 1, - sym_field_declaration_list, - [282087] = 3, + STATE(325), 1, + sym_declaration_list, + [287641] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(9851), 1, anon_sym_LBRACE, - STATE(7369), 1, + STATE(3265), 1, sym_compound_statement, - [282097] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6630), 1, - anon_sym_LT, - STATE(2403), 1, - sym_template_argument_list, - [282107] = 3, + [287651] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8147), 1, + ACTIONS(13339), 1, anon_sym_LPAREN2, - STATE(7963), 1, - sym_argument_list, - [282117] = 2, + STATE(8116), 1, + sym_parenthesized_expression, + [287661] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13054), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [282125] = 2, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + STATE(7838), 1, + sym_parameter_list, + [287671] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7963), 2, + ACTIONS(13337), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [282133] = 3, + anon_sym_RPAREN, + [287679] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13357), 1, - sym_identifier, - STATE(4398), 1, - sym_template_type, - [282143] = 3, + ACTIONS(6035), 1, + anon_sym_LBRACE, + STATE(2389), 1, + sym_field_declaration_list, + [287689] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_LBRACE, - STATE(7168), 1, + STATE(7459), 1, sym_compound_statement, - [282153] = 3, - ACTIONS(10118), 1, + [287699] = 3, + ACTIONS(10057), 1, sym_comment, - ACTIONS(13359), 1, + ACTIONS(13435), 1, aux_sym_preproc_include_token2, - ACTIONS(13361), 1, + ACTIONS(13437), 1, sym_preproc_arg, - [282163] = 3, + [287709] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - STATE(498), 1, - sym_compound_statement, - [282173] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9770), 1, + ACTIONS(13439), 1, anon_sym_LPAREN2, - STATE(7723), 1, - sym_parameter_list, - [282183] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - STATE(7422), 1, - sym_compound_statement, - [282193] = 2, + ACTIONS(13441), 1, + sym_raw_string_delimiter, + [287719] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13067), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [282201] = 3, + ACTIONS(13443), 1, + sym_identifier, + ACTIONS(13445), 1, + anon_sym_LPAREN2, + [287729] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13255), 1, + ACTIONS(13339), 1, anon_sym_LPAREN2, - STATE(7734), 1, + STATE(7855), 1, sym_parenthesized_expression, - [282211] = 2, + [287739] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13363), 2, + ACTIONS(11158), 1, + anon_sym_RBRACE, + ACTIONS(13351), 1, anon_sym_COMMA, - anon_sym_SEMI, - [282219] = 2, - ACTIONS(3), 1, + [287749] = 3, + ACTIONS(10057), 1, sym_comment, - ACTIONS(13365), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [282227] = 3, - ACTIONS(3), 1, + ACTIONS(13447), 1, + aux_sym_preproc_include_token2, + ACTIONS(13449), 1, + sym_preproc_arg, + [287759] = 3, + ACTIONS(10057), 1, sym_comment, - ACTIONS(13367), 1, - sym_identifier, - STATE(2632), 1, - sym_template_type, - [282237] = 3, + ACTIONS(13451), 1, + aux_sym_preproc_include_token2, + ACTIONS(13453), 1, + sym_preproc_arg, + [287769] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_LBRACE, - STATE(7463), 1, + STATE(542), 1, sym_compound_statement, - [282247] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13369), 1, - sym_identifier, - STATE(2787), 1, - sym_template_type, - [282257] = 3, + [287779] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8147), 1, + ACTIONS(12615), 1, anon_sym_LPAREN2, - STATE(8347), 1, - sym_argument_list, - [282267] = 2, + STATE(174), 1, + sym_condition_clause, + [287789] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13074), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [282275] = 3, + ACTIONS(2493), 1, + anon_sym_LBRACE, + STATE(3618), 1, + sym_initializer_list, + [287799] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - STATE(7458), 1, - sym_compound_statement, - [282285] = 3, + ACTIONS(13455), 1, + sym_identifier, + STATE(2293), 1, + sym_template_type, + [287809] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(6526), 1, anon_sym_LBRACE, - STATE(530), 1, - sym_compound_statement, - [282295] = 3, + STATE(2811), 1, + sym_field_declaration_list, + [287819] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6499), 1, + ACTIONS(6526), 1, anon_sym_LBRACE, - STATE(2816), 1, + STATE(2840), 1, sym_field_declaration_list, - [282305] = 3, - ACTIONS(10118), 1, + [287829] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(13371), 1, - aux_sym_preproc_include_token2, - ACTIONS(13373), 1, - sym_preproc_arg, - [282315] = 3, + ACTIONS(57), 1, + anon_sym_LBRACE, + STATE(7521), 1, + sym_compound_statement, + [287839] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(8177), 1, anon_sym_LPAREN2, - STATE(7835), 1, - sym_parameter_list, - [282325] = 3, + STATE(8396), 1, + sym_argument_list, + [287849] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6499), 1, - anon_sym_LBRACE, - STATE(2820), 1, - sym_field_declaration_list, - [282335] = 3, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + STATE(7955), 1, + sym_parameter_list, + [287859] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_LBRACE, - STATE(7508), 1, + STATE(7585), 1, sym_compound_statement, - [282345] = 3, + [287869] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(10654), 1, anon_sym_LBRACE, - STATE(491), 1, + STATE(2142), 1, sym_compound_statement, - [282355] = 2, + [287879] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13375), 2, - anon_sym_COMMA, - anon_sym_LBRACE, - [282363] = 2, + ACTIONS(13339), 1, + anon_sym_LPAREN2, + STATE(7961), 1, + sym_parenthesized_expression, + [287889] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13087), 2, - anon_sym_COMMA, - anon_sym_LBRACE, - [282371] = 3, + ACTIONS(12048), 1, + sym_identifier, + STATE(1923), 1, + sym_template_type, + [287899] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8615), 1, + ACTIONS(6795), 1, anon_sym_LBRACE, - STATE(4541), 1, + STATE(3150), 1, sym_field_declaration_list, - [282381] = 2, + [287909] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6230), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [282389] = 3, - ACTIONS(10118), 1, + ACTIONS(8725), 1, + anon_sym_LT, + STATE(1623), 1, + sym_template_argument_list, + [287919] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(13377), 1, - aux_sym_preproc_include_token2, - ACTIONS(13379), 1, - sym_preproc_arg, - [282399] = 3, + ACTIONS(13351), 1, + anon_sym_COMMA, + ACTIONS(13457), 1, + anon_sym_RBRACE, + [287929] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_LBRACE, - STATE(7530), 1, + STATE(7638), 1, sym_compound_statement, - [282409] = 3, + [287939] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8147), 1, + ACTIONS(8177), 1, anon_sym_LPAREN2, - STATE(8651), 1, + STATE(8810), 1, sym_argument_list, - [282419] = 2, + [287949] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13381), 2, - anon_sym_COMMA, + ACTIONS(6035), 1, anon_sym_LBRACE, - [282427] = 3, + STATE(2366), 1, + sym_field_declaration_list, + [287959] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - STATE(406), 1, - sym_compound_statement, - [282437] = 3, + ACTIONS(13459), 1, + sym_identifier, + STATE(2720), 1, + sym_template_type, + [287969] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - STATE(7901), 1, + STATE(7988), 1, sym_parameter_list, - [282447] = 2, + [287979] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9025), 2, + ACTIONS(13461), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [282455] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8147), 1, - anon_sym_LPAREN2, - STATE(8006), 1, - sym_argument_list, - [282465] = 3, + anon_sym_GT2, + [287987] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8147), 1, - anon_sym_LPAREN2, - STATE(8452), 1, - sym_argument_list, - [282475] = 3, + ACTIONS(13463), 1, + sym_identifier, + ACTIONS(13465), 1, + anon_sym_RPAREN, + [287997] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12074), 1, + ACTIONS(9758), 1, anon_sym_LBRACE, - STATE(1616), 1, + STATE(3735), 1, sym_requirement_seq, - [282485] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12062), 1, - sym_identifier, - STATE(1910), 1, - sym_template_type, - [282495] = 3, + [288007] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6542), 1, - anon_sym_LBRACE, - STATE(2929), 1, - sym_field_declaration_list, - [282505] = 3, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + STATE(7804), 1, + sym_parameter_list, + [288017] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10958), 1, + ACTIONS(10674), 1, anon_sym_LBRACE, - STATE(2156), 1, + STATE(1783), 1, sym_compound_statement, - [282515] = 3, + [288027] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(866), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - STATE(473), 1, + STATE(7551), 1, sym_compound_statement, - [282525] = 3, - ACTIONS(10118), 1, - sym_comment, - ACTIONS(13383), 1, - aux_sym_preproc_include_token2, - ACTIONS(13385), 1, - sym_preproc_arg, - [282535] = 3, + [288037] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6542), 1, + ACTIONS(6035), 1, anon_sym_LBRACE, - STATE(2931), 1, + STATE(2392), 1, sym_field_declaration_list, - [282545] = 3, + [288047] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9829), 1, + ACTIONS(9845), 1, anon_sym_LBRACE, - STATE(1622), 1, + STATE(3627), 1, sym_compound_statement, - [282555] = 3, + [288057] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7520), 1, - anon_sym_LBRACE, - STATE(3955), 1, - sym_field_declaration_list, - [282565] = 3, - ACTIONS(10118), 1, + ACTIONS(13467), 2, + anon_sym_COMMA, + anon_sym_GT2, + [288065] = 3, + ACTIONS(10057), 1, sym_comment, - ACTIONS(13387), 1, + ACTIONS(13469), 1, aux_sym_preproc_include_token2, - ACTIONS(13389), 1, + ACTIONS(13471), 1, sym_preproc_arg, - [282575] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - STATE(7035), 1, - sym_compound_statement, - [282585] = 3, + [288075] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7386), 1, + ACTIONS(13341), 1, anon_sym_LT, - STATE(2731), 1, + STATE(1972), 1, sym_template_argument_list, - [282595] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4553), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [282603] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12130), 1, - anon_sym_COLON_COLON, - ACTIONS(13391), 1, - anon_sym_SEMI, - [282613] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12658), 1, - anon_sym_LPAREN2, - STATE(220), 1, - sym_condition_clause, - [282623] = 3, + [288085] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9825), 1, + ACTIONS(866), 1, anon_sym_LBRACE, - STATE(4228), 1, + STATE(577), 1, sym_compound_statement, - [282633] = 3, + [288095] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3887), 1, - anon_sym_LBRACE, - STATE(4839), 1, - sym_initializer_list, - [282643] = 3, + ACTIONS(13473), 1, + sym_identifier, + STATE(2773), 1, + sym_template_type, + [288105] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_LBRACE, - STATE(1622), 1, + STATE(7471), 1, sym_compound_statement, - [282653] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12658), 1, - anon_sym_LPAREN2, - STATE(7847), 1, - sym_condition_clause, - [282663] = 3, + [288115] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6630), 1, - anon_sym_LT, - STATE(1603), 1, - sym_template_argument_list, - [282673] = 3, + ACTIONS(6268), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [288123] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12658), 1, + ACTIONS(8177), 1, anon_sym_LPAREN2, - STATE(174), 1, - sym_condition_clause, - [282683] = 3, + STATE(8326), 1, + sym_argument_list, + [288133] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11098), 1, - anon_sym_RBRACE, - ACTIONS(13251), 1, + ACTIONS(13475), 2, anon_sym_COMMA, - [282693] = 2, + anon_sym_RBRACK, + [288141] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10659), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [282701] = 3, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + STATE(7849), 1, + sym_parameter_list, + [288151] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8615), 1, + ACTIONS(8906), 1, anon_sym_LBRACE, - STATE(4539), 1, + STATE(4957), 1, sym_field_declaration_list, - [282711] = 3, + [288161] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8615), 1, + ACTIONS(5565), 1, anon_sym_LBRACE, - STATE(4546), 1, + STATE(2216), 1, sym_field_declaration_list, - [282721] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12120), 1, - anon_sym_LBRACE, - STATE(5939), 1, - sym_requirement_seq, - [282731] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2457), 1, - anon_sym_LBRACE, - STATE(3426), 1, - sym_initializer_list, - [282741] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13393), 1, - sym_identifier, - STATE(1936), 1, - sym_template_type, - [282751] = 2, + [288171] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8747), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [282759] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - STATE(7518), 1, - sym_compound_statement, - [282769] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12658), 1, + ACTIONS(8177), 1, anon_sym_LPAREN2, - STATE(205), 1, - sym_condition_clause, - [282779] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13146), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [282787] = 3, + STATE(8584), 1, + sym_argument_list, + [288181] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6816), 1, + ACTIONS(6580), 1, anon_sym_LT, - STATE(2747), 1, + STATE(2411), 1, sym_template_argument_list, - [282797] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13395), 1, - sym_identifier, - ACTIONS(13397), 1, - anon_sym_LPAREN2, - [282807] = 3, - ACTIONS(10118), 1, + [288191] = 3, + ACTIONS(10057), 1, sym_comment, - ACTIONS(13399), 1, + ACTIONS(13477), 1, aux_sym_preproc_include_token2, - ACTIONS(13401), 1, + ACTIONS(13479), 1, sym_preproc_arg, - [282817] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13403), 1, - sym_identifier, - STATE(1790), 1, - sym_template_type, - [282827] = 3, + [288201] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9829), 1, - anon_sym_LBRACE, - STATE(1608), 1, - sym_compound_statement, - [282837] = 3, + ACTIONS(8177), 1, + anon_sym_LPAREN2, + STATE(8689), 1, + sym_argument_list, + [288211] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10958), 1, + ACTIONS(894), 1, anon_sym_LBRACE, - STATE(2049), 1, + STATE(543), 1, sym_compound_statement, - [282847] = 2, + [288221] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13405), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [282855] = 3, + ACTIONS(13339), 1, + anon_sym_LPAREN2, + STATE(8176), 1, + sym_parenthesized_expression, + [288231] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5230), 1, - anon_sym_LBRACE, - STATE(748), 1, - sym_declaration_list, - [282865] = 2, + ACTIONS(13405), 1, + anon_sym_LT, + STATE(3537), 1, + sym_template_argument_list, + [288241] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13150), 2, - anon_sym_COMMA, + ACTIONS(12066), 1, anon_sym_LBRACE, - [282873] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13407), 1, - sym_identifier, - STATE(1910), 1, - sym_template_type, - [282883] = 3, - ACTIONS(10118), 1, - sym_comment, - ACTIONS(13409), 1, - aux_sym_preproc_include_token2, - ACTIONS(13411), 1, - sym_preproc_arg, - [282893] = 3, + STATE(6011), 1, + sym_requirement_seq, + [288251] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13251), 1, - anon_sym_COMMA, - ACTIONS(13413), 1, + ACTIONS(11142), 1, anon_sym_RBRACE, - [282903] = 3, + ACTIONS(13351), 1, + anon_sym_COMMA, + [288261] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(6795), 1, anon_sym_LBRACE, - STATE(479), 1, - sym_compound_statement, - [282913] = 3, + STATE(3047), 1, + sym_field_declaration_list, + [288271] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8615), 1, + ACTIONS(6795), 1, anon_sym_LBRACE, - STATE(4459), 1, + STATE(3022), 1, sym_field_declaration_list, - [282923] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12658), 1, - anon_sym_LPAREN2, - STATE(7783), 1, - sym_condition_clause, - [282933] = 3, + [288281] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10966), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - STATE(1706), 1, + STATE(7114), 1, sym_compound_statement, - [282943] = 3, + [288291] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10948), 1, + ACTIONS(9855), 1, anon_sym_LBRACE, - STATE(2166), 1, + STATE(3461), 1, sym_compound_statement, - [282953] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6018), 1, - anon_sym_LBRACE, - STATE(2351), 1, - sym_field_declaration_list, - [282963] = 3, + [288301] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12658), 1, + ACTIONS(12615), 1, anon_sym_LPAREN2, - STATE(178), 1, + STATE(7913), 1, sym_condition_clause, - [282973] = 3, + [288311] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9829), 1, - anon_sym_LBRACE, - STATE(1621), 1, - sym_compound_statement, - [282983] = 3, + ACTIONS(12615), 1, + anon_sym_LPAREN2, + STATE(185), 1, + sym_condition_clause, + [288321] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8147), 1, - anon_sym_LPAREN2, - STATE(8698), 1, - sym_argument_list, - [282993] = 3, + ACTIONS(13481), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [288329] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9837), 1, + ACTIONS(12532), 2, + anon_sym_COMMA, anon_sym_LBRACE, - STATE(3501), 1, - sym_compound_statement, - [283003] = 3, + [288337] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13251), 1, + ACTIONS(8736), 2, anon_sym_COMMA, - ACTIONS(13415), 1, anon_sym_RBRACE, - [283013] = 3, + [288345] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6018), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - STATE(5045), 1, - sym_field_declaration_list, - [283023] = 3, + STATE(7301), 1, + sym_compound_statement, + [288355] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6018), 1, + ACTIONS(9851), 1, anon_sym_LBRACE, - STATE(5051), 1, - sym_field_declaration_list, - [283033] = 3, + STATE(3307), 1, + sym_compound_statement, + [288365] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6018), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - STATE(5052), 1, - sym_field_declaration_list, - [283043] = 3, + STATE(7575), 1, + sym_compound_statement, + [288375] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6018), 1, + ACTIONS(9845), 1, anon_sym_LBRACE, - STATE(5054), 1, - sym_field_declaration_list, - [283053] = 3, + STATE(3631), 1, + sym_compound_statement, + [288385] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(866), 1, + ACTIONS(10674), 1, anon_sym_LBRACE, - STATE(564), 1, + STATE(1818), 1, sym_compound_statement, - [283063] = 3, + [288395] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(866), 1, anon_sym_LBRACE, - STATE(7109), 1, + STATE(729), 1, sym_compound_statement, - [283073] = 2, + [288405] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13417), 2, + ACTIONS(13483), 2, anon_sym_COMMA, anon_sym_RBRACK_RBRACK, - [283081] = 3, + [288413] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6499), 1, + ACTIONS(5234), 1, anon_sym_LBRACE, - STATE(2815), 1, - sym_field_declaration_list, - [283091] = 3, + STATE(606), 1, + sym_declaration_list, + [288423] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9837), 1, + ACTIONS(13485), 1, + sym_identifier, + STATE(1923), 1, + sym_template_type, + [288433] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1668), 1, anon_sym_LBRACE, - STATE(3357), 1, + STATE(932), 1, sym_compound_statement, - [283101] = 3, + [288443] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13251), 1, + ACTIONS(13351), 1, anon_sym_COMMA, - ACTIONS(13419), 1, - anon_sym_RBRACE, - [283111] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11108), 1, + ACTIONS(13487), 1, anon_sym_RBRACE, - ACTIONS(13251), 1, - anon_sym_COMMA, - [283121] = 3, + [288453] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9821), 1, + ACTIONS(6795), 1, anon_sym_LBRACE, - STATE(3259), 1, - sym_compound_statement, - [283131] = 3, + STATE(3065), 1, + sym_field_declaration_list, + [288463] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12658), 1, - anon_sym_LPAREN2, - STATE(211), 1, - sym_condition_clause, - [283141] = 3, + ACTIONS(13489), 1, + anon_sym_LT, + STATE(2745), 1, + sym_template_argument_list, + [288473] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5501), 1, + ACTIONS(5230), 1, anon_sym_LBRACE, - STATE(2193), 1, - sym_field_declaration_list, - [283151] = 3, + STATE(672), 1, + sym_declaration_list, + [288483] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(297), 1, - anon_sym_LBRACE, - STATE(265), 1, - sym_compound_statement, - [283161] = 3, + ACTIONS(13491), 2, + anon_sym_COMMA, + anon_sym_GT2, + [288491] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5230), 1, + ACTIONS(1668), 1, anon_sym_LBRACE, - STATE(770), 1, - sym_declaration_list, - [283171] = 3, + STATE(901), 1, + sym_compound_statement, + [288501] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(894), 1, + ACTIONS(9857), 1, anon_sym_LBRACE, - STATE(560), 1, + STATE(2559), 1, sym_compound_statement, - [283181] = 3, + [288511] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12658), 1, + ACTIONS(8177), 1, anon_sym_LPAREN2, - STATE(199), 1, - sym_condition_clause, - [283191] = 3, + STATE(8547), 1, + sym_argument_list, + [288521] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13421), 1, - sym_identifier, - STATE(2730), 1, - sym_template_type, - [283201] = 3, + ACTIONS(9845), 1, + anon_sym_LBRACE, + STATE(3725), 1, + sym_compound_statement, + [288531] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9764), 1, + ACTIONS(297), 1, anon_sym_LBRACE, - STATE(3431), 1, - sym_requirement_seq, - [283211] = 3, + STATE(339), 1, + sym_compound_statement, + [288541] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8896), 1, - anon_sym_RPAREN, - ACTIONS(8898), 1, - anon_sym_SEMI, - [283221] = 3, + ACTIONS(13161), 2, + anon_sym_COMMA, + anon_sym_LBRACE, + [288549] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7520), 1, + ACTIONS(1668), 1, anon_sym_LBRACE, - STATE(3960), 1, - sym_field_declaration_list, - [283231] = 3, + STATE(919), 1, + sym_compound_statement, + [288559] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7520), 1, + ACTIONS(9792), 1, anon_sym_LBRACE, - STATE(3961), 1, - sym_field_declaration_list, - [283241] = 3, + STATE(4284), 1, + sym_requirement_seq, + [288569] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(866), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - STATE(652), 1, + STATE(7208), 1, sym_compound_statement, - [283251] = 3, + [288579] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6692), 1, + ACTIONS(10666), 1, anon_sym_LBRACE, - STATE(2862), 1, - sym_field_declaration_list, - [283261] = 3, + STATE(2144), 1, + sym_compound_statement, + [288589] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2609), 1, + ACTIONS(6530), 1, anon_sym_LBRACE, - STATE(3912), 1, - sym_initializer_list, - [283271] = 3, - ACTIONS(3), 1, + STATE(2987), 1, + sym_field_declaration_list, + [288599] = 3, + ACTIONS(10057), 1, sym_comment, - ACTIONS(5222), 1, - anon_sym_LBRACE, - STATE(659), 1, - sym_declaration_list, - [283281] = 3, + ACTIONS(13493), 1, + aux_sym_preproc_include_token2, + ACTIONS(13495), 1, + sym_preproc_arg, + [288609] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12175), 1, - anon_sym_LBRACE, - STATE(5622), 1, - sym_requirement_seq, - [283291] = 3, + ACTIONS(12615), 1, + anon_sym_LPAREN2, + STATE(206), 1, + sym_condition_clause, + [288619] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(9863), 1, anon_sym_LBRACE, - STATE(7085), 1, + STATE(4303), 1, sym_compound_statement, - [283301] = 3, + [288629] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9823), 1, + ACTIONS(13177), 2, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(5626), 1, - sym_compound_statement, - [283311] = 3, - ACTIONS(3), 1, + [288637] = 3, + ACTIONS(10057), 1, sym_comment, - ACTIONS(8973), 1, - anon_sym_LT, - STATE(2547), 1, - sym_template_argument_list, - [283321] = 3, + ACTIONS(13497), 1, + aux_sym_preproc_include_token2, + ACTIONS(13499), 1, + sym_preproc_arg, + [288647] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9748), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - STATE(4233), 1, - sym_requirement_seq, - [283331] = 3, + STATE(435), 1, + sym_compound_statement, + [288657] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13423), 1, + ACTIONS(8177), 1, anon_sym_LPAREN2, - ACTIONS(13425), 1, - sym_raw_string_delimiter, - [283341] = 3, + STATE(8063), 1, + sym_argument_list, + [288667] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13427), 1, - sym_identifier, - STATE(2557), 1, - sym_template_type, - [283351] = 3, - ACTIONS(3), 1, + ACTIONS(5236), 1, + anon_sym_LBRACE, + STATE(346), 1, + sym_declaration_list, + [288677] = 3, + ACTIONS(10057), 1, sym_comment, - ACTIONS(6630), 1, - anon_sym_LT, - STATE(2731), 1, - sym_template_argument_list, - [283361] = 3, + ACTIONS(13501), 1, + aux_sym_preproc_include_token2, + ACTIONS(13503), 1, + sym_preproc_arg, + [288687] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6542), 1, + ACTIONS(6035), 1, anon_sym_LBRACE, - STATE(3615), 1, + STATE(5199), 1, sym_field_declaration_list, - [283371] = 3, + [288697] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9837), 1, + ACTIONS(6035), 1, anon_sym_LBRACE, - STATE(3443), 1, - sym_compound_statement, - [283381] = 3, + STATE(5205), 1, + sym_field_declaration_list, + [288707] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5234), 1, + ACTIONS(6035), 1, anon_sym_LBRACE, - STATE(305), 1, - sym_declaration_list, - [283391] = 3, + STATE(5206), 1, + sym_field_declaration_list, + [288717] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6542), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - STATE(3619), 1, - sym_field_declaration_list, - [283401] = 3, + STATE(415), 1, + sym_compound_statement, + [288727] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6542), 1, + ACTIONS(6035), 1, anon_sym_LBRACE, - STATE(3620), 1, + STATE(5208), 1, sym_field_declaration_list, - [283411] = 3, + [288737] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6542), 1, - anon_sym_LBRACE, - STATE(3622), 1, - sym_field_declaration_list, - [283421] = 3, + ACTIONS(12822), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [288745] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13351), 1, + anon_sym_COMMA, + ACTIONS(13505), 1, + anon_sym_RBRACE, + [288755] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11063), 1, + ACTIONS(11122), 1, anon_sym_RBRACE, - ACTIONS(13251), 1, + ACTIONS(13351), 1, anon_sym_COMMA, - [283431] = 3, - ACTIONS(10118), 1, + [288765] = 3, + ACTIONS(10057), 1, sym_comment, - ACTIONS(13429), 1, + ACTIONS(13507), 1, aux_sym_preproc_include_token2, - ACTIONS(13431), 1, + ACTIONS(13509), 1, sym_preproc_arg, - [283441] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10948), 1, - anon_sym_LBRACE, - STATE(2080), 1, - sym_compound_statement, - [283451] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8697), 1, - anon_sym_LT, - STATE(1603), 1, - sym_template_argument_list, - [283461] = 3, + [288775] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6692), 1, - anon_sym_LBRACE, - STATE(2848), 1, - sym_field_declaration_list, - [283471] = 3, + ACTIONS(13511), 1, + sym_identifier, + STATE(2851), 1, + sym_template_type, + [288785] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6692), 1, + ACTIONS(6526), 1, anon_sym_LBRACE, - STATE(2849), 1, + STATE(2814), 1, sym_field_declaration_list, - [283481] = 3, + [288795] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9825), 1, - anon_sym_LBRACE, - STATE(4241), 1, - sym_compound_statement, - [283491] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9821), 1, + ACTIONS(5234), 1, anon_sym_LBRACE, - STATE(3277), 1, - sym_compound_statement, - [283501] = 3, + STATE(506), 1, + sym_declaration_list, + [288805] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13263), 1, + ACTIONS(8725), 1, anon_sym_LT, - STATE(3436), 1, + STATE(1863), 1, sym_template_argument_list, - [283511] = 3, + [288815] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9823), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - STATE(5493), 1, + STATE(274), 1, sym_compound_statement, - [283521] = 3, + [288825] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5230), 1, - anon_sym_LBRACE, - STATE(688), 1, - sym_declaration_list, - [283531] = 2, + ACTIONS(12517), 2, + anon_sym_COMMA, + anon_sym_GT2, + [288833] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13229), 2, - anon_sym_COMMA, + ACTIONS(8906), 1, anon_sym_LBRACE, - [283539] = 3, + STATE(4961), 1, + sym_field_declaration_list, + [288843] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11116), 1, + ACTIONS(11150), 1, anon_sym_RBRACE, - ACTIONS(13251), 1, + ACTIONS(13351), 1, anon_sym_COMMA, - [283549] = 3, - ACTIONS(10118), 1, - sym_comment, - ACTIONS(13433), 1, - aux_sym_preproc_include_token2, - ACTIONS(13435), 1, - sym_preproc_arg, - [283559] = 3, + [288853] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13251), 1, + ACTIONS(12522), 2, anon_sym_COMMA, - ACTIONS(13437), 1, - anon_sym_RBRACE, - [283569] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6692), 1, - anon_sym_LBRACE, - STATE(2867), 1, - sym_field_declaration_list, - [283579] = 3, + anon_sym_RBRACK_RBRACK, + [288861] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13439), 1, - anon_sym_LPAREN2, - ACTIONS(13441), 1, - sym_raw_string_delimiter, - [283589] = 3, + ACTIONS(12214), 1, + anon_sym_COLON_COLON, + ACTIONS(13513), 1, + anon_sym_SEMI, + [288871] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10958), 1, + ACTIONS(8906), 1, anon_sym_LBRACE, - STATE(1920), 1, - sym_compound_statement, - [283599] = 3, + STATE(4962), 1, + sym_field_declaration_list, + [288881] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6018), 1, + ACTIONS(9851), 1, anon_sym_LBRACE, - STATE(2330), 1, - sym_field_declaration_list, - [283609] = 3, + STATE(3312), 1, + sym_compound_statement, + [288891] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6018), 1, + ACTIONS(8630), 1, anon_sym_LBRACE, - STATE(2364), 1, + STATE(4516), 1, sym_field_declaration_list, - [283619] = 3, + [288901] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9823), 1, + ACTIONS(9849), 1, anon_sym_LBRACE, - STATE(5503), 1, + STATE(1634), 1, sym_compound_statement, - [283629] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13443), 1, - anon_sym_LPAREN2, - ACTIONS(13445), 1, - sym_raw_string_delimiter, - [283639] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13447), 1, - anon_sym_LPAREN2, - ACTIONS(13449), 1, - sym_raw_string_delimiter, - [283649] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13451), 1, - anon_sym_LPAREN2, - ACTIONS(13453), 1, - sym_raw_string_delimiter, - [283659] = 2, + [288911] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13455), 2, + ACTIONS(9017), 2, anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [283667] = 3, + anon_sym_RBRACE, + [288919] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8697), 1, - anon_sym_LT, - STATE(1844), 1, - sym_template_argument_list, - [283677] = 3, + ACTIONS(13241), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + [288927] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13457), 1, - anon_sym_LPAREN2, - ACTIONS(13459), 1, - sym_raw_string_delimiter, - [283687] = 3, + ACTIONS(12309), 1, + anon_sym_LBRACE, + STATE(1627), 1, + sym_requirement_seq, + [288937] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13461), 1, - anon_sym_LPAREN2, - ACTIONS(13463), 1, - sym_raw_string_delimiter, - [283697] = 3, + ACTIONS(297), 1, + anon_sym_LBRACE, + STATE(237), 1, + sym_compound_statement, + [288947] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13465), 1, - anon_sym_LPAREN2, - ACTIONS(13467), 1, - sym_raw_string_delimiter, - [283707] = 3, + ACTIONS(10654), 1, + anon_sym_LBRACE, + STATE(2001), 1, + sym_compound_statement, + [288957] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13469), 1, - anon_sym_LPAREN2, - ACTIONS(13471), 1, - sym_raw_string_delimiter, - [283717] = 3, + ACTIONS(12214), 1, + anon_sym_COLON_COLON, + ACTIONS(13515), 1, + anon_sym_SEMI, + [288967] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13473), 1, - anon_sym_LPAREN2, - ACTIONS(13475), 1, - sym_raw_string_delimiter, - [283727] = 3, + ACTIONS(9849), 1, + anon_sym_LBRACE, + STATE(1632), 1, + sym_compound_statement, + [288977] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13477), 1, + ACTIONS(13517), 1, anon_sym_LPAREN2, - ACTIONS(13479), 1, + ACTIONS(13519), 1, sym_raw_string_delimiter, - [283737] = 3, - ACTIONS(3), 1, + [288987] = 3, + ACTIONS(10057), 1, sym_comment, - ACTIONS(13481), 1, - anon_sym_LPAREN2, - ACTIONS(13483), 1, - sym_raw_string_delimiter, - [283747] = 3, + ACTIONS(13521), 1, + aux_sym_preproc_include_token2, + ACTIONS(13523), 1, + sym_preproc_arg, + [288997] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13485), 1, - anon_sym_LPAREN2, - ACTIONS(13487), 1, - sym_raw_string_delimiter, - [283757] = 3, + ACTIONS(7483), 1, + anon_sym_LT, + STATE(2756), 1, + sym_template_argument_list, + [289007] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13489), 1, + ACTIONS(13339), 1, anon_sym_LPAREN2, - ACTIONS(13491), 1, - sym_raw_string_delimiter, - [283767] = 3, + STATE(7803), 1, + sym_parenthesized_expression, + [289017] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13493), 1, - anon_sym_LPAREN2, - ACTIONS(13495), 1, - sym_raw_string_delimiter, - [283777] = 3, + ACTIONS(6530), 1, + anon_sym_LBRACE, + STATE(3673), 1, + sym_field_declaration_list, + [289027] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13497), 1, - anon_sym_LPAREN2, - ACTIONS(13499), 1, - sym_raw_string_delimiter, - [283787] = 3, + ACTIONS(57), 1, + anon_sym_LBRACE, + STATE(3307), 1, + sym_compound_statement, + [289037] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9722), 1, + ACTIONS(6530), 1, anon_sym_LBRACE, - STATE(2428), 1, - sym_requirement_seq, - [283797] = 3, + STATE(3677), 1, + sym_field_declaration_list, + [289047] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5232), 1, + ACTIONS(6530), 1, anon_sym_LBRACE, - STATE(496), 1, - sym_declaration_list, - [283807] = 2, + STATE(3678), 1, + sym_field_declaration_list, + [289057] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13501), 1, - aux_sym_preproc_if_token2, - [283814] = 2, + ACTIONS(6530), 1, + anon_sym_LBRACE, + STATE(3681), 1, + sym_field_declaration_list, + [289067] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13503), 1, - anon_sym_RPAREN, - [283821] = 2, + ACTIONS(13339), 1, + anon_sym_LPAREN2, + STATE(8256), 1, + sym_parenthesized_expression, + [289077] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13505), 1, - anon_sym_SEMI, - [283828] = 2, + ACTIONS(12615), 1, + anon_sym_LPAREN2, + STATE(7978), 1, + sym_condition_clause, + [289087] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13507), 1, - aux_sym_preproc_if_token2, - [283835] = 2, + ACTIONS(13525), 2, + anon_sym_DOT_DOT_DOT, + sym_identifier, + [289095] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10592), 1, + ACTIONS(866), 1, anon_sym_LBRACE, - [283842] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13509), 1, - anon_sym_SEMI, - [283849] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13511), 1, - anon_sym_RPAREN, - [283856] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13513), 1, - anon_sym_LT_LT_EQ, - [283863] = 2, + STATE(501), 1, + sym_compound_statement, + [289105] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8971), 1, - anon_sym_COLON, - [283870] = 2, - ACTIONS(10118), 1, - sym_comment, - ACTIONS(10393), 1, - aux_sym_preproc_include_token2, - [283877] = 2, + ACTIONS(9798), 1, + anon_sym_LPAREN2, + STATE(7768), 1, + sym_parameter_list, + [289115] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13515), 1, - anon_sym_DQUOTE, - [283884] = 2, + ACTIONS(11102), 1, + anon_sym_RBRACE, + ACTIONS(13351), 1, + anon_sym_COMMA, + [289125] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13517), 1, - aux_sym_preproc_if_token2, - [283891] = 2, + ACTIONS(12559), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [289133] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13519), 1, - aux_sym_preproc_if_token2, - [283898] = 2, + ACTIONS(8630), 1, + anon_sym_LBRACE, + STATE(4605), 1, + sym_field_declaration_list, + [289143] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13521), 1, - anon_sym_RPAREN, - [283905] = 2, + ACTIONS(8630), 1, + anon_sym_LBRACE, + STATE(4607), 1, + sym_field_declaration_list, + [289153] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9055), 1, - anon_sym_SEMI, - [283912] = 2, - ACTIONS(10118), 1, + ACTIONS(13527), 2, + anon_sym_COMMA, + anon_sym_LBRACE, + [289161] = 3, + ACTIONS(10057), 1, sym_comment, - ACTIONS(13523), 1, + ACTIONS(13529), 1, aux_sym_preproc_include_token2, - [283919] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13525), 1, - anon_sym_SEMI, - [283926] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13513), 1, - anon_sym_EQ, - [283933] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13527), 1, - anon_sym_SEMI, - [283940] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9239), 1, - anon_sym_RPAREN, - [283947] = 2, + ACTIONS(13531), 1, + sym_preproc_arg, + [289171] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8915), 1, - anon_sym_RPAREN, - [283954] = 2, + ACTIONS(5230), 1, + anon_sym_LBRACE, + STATE(681), 1, + sym_declaration_list, + [289181] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13529), 1, - sym_identifier, - [283961] = 2, - ACTIONS(10118), 1, - sym_comment, - ACTIONS(13531), 1, - aux_sym_preproc_include_token2, - [283968] = 2, + ACTIONS(57), 1, + anon_sym_LBRACE, + STATE(7424), 1, + sym_compound_statement, + [289191] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9101), 1, - anon_sym_RPAREN, - [283975] = 2, + ACTIONS(5232), 1, + anon_sym_LBRACE, + STATE(683), 1, + sym_declaration_list, + [289201] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8783), 1, + ACTIONS(13351), 1, + anon_sym_COMMA, + ACTIONS(13533), 1, anon_sym_RBRACE, - [283982] = 2, + [289211] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13533), 1, - anon_sym_SEMI, - [283989] = 2, + ACTIONS(6580), 1, + anon_sym_LT, + STATE(2361), 1, + sym_template_argument_list, + [289221] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11051), 1, + ACTIONS(11154), 1, anon_sym_RBRACE, - [283996] = 2, + ACTIONS(13351), 1, + anon_sym_COMMA, + [289231] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8957), 1, - anon_sym_RPAREN, - [284003] = 2, + ACTIONS(8906), 1, + anon_sym_LBRACE, + STATE(4965), 1, + sym_field_declaration_list, + [289241] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(13535), 1, - anon_sym_SEMI, - [284010] = 2, + anon_sym_LPAREN2, + ACTIONS(13537), 1, + sym_raw_string_delimiter, + [289251] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8892), 1, - anon_sym_RBRACE, - [284017] = 2, + ACTIONS(10732), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [289259] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11096), 1, - anon_sym_RBRACE, - [284024] = 2, + ACTIONS(12570), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [289267] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13537), 1, - anon_sym_RPAREN, - [284031] = 2, + ACTIONS(8928), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [289275] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13539), 1, - sym_raw_string_delimiter, - [284038] = 2, + ACTIONS(9857), 1, + anon_sym_LBRACE, + STATE(2536), 1, + sym_compound_statement, + [289285] = 3, ACTIONS(3), 1, sym_comment, + ACTIONS(13539), 1, + anon_sym_LPAREN2, ACTIONS(13541), 1, - anon_sym_SEMI, - [284045] = 2, + sym_raw_string_delimiter, + [289295] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(13543), 1, - anon_sym_SEMI, - [284052] = 2, - ACTIONS(3), 1, - sym_comment, + anon_sym_LPAREN2, ACTIONS(13545), 1, - anon_sym_COMMA, - [284059] = 2, + sym_raw_string_delimiter, + [289305] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(13547), 1, - sym_identifier, - [284066] = 2, - ACTIONS(3), 1, - sym_comment, + anon_sym_LPAREN2, ACTIONS(13549), 1, - anon_sym_SEMI, - [284073] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13551), 1, - anon_sym_SEMI, - [284080] = 2, + sym_raw_string_delimiter, + [289315] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13513), 1, - anon_sym_not_eq, - [284087] = 2, + ACTIONS(6588), 1, + anon_sym_LBRACE, + STATE(2899), 1, + sym_field_declaration_list, + [289325] = 3, ACTIONS(3), 1, sym_comment, + ACTIONS(13551), 1, + anon_sym_LPAREN2, ACTIONS(13553), 1, - anon_sym_RPAREN, - [284094] = 2, + sym_raw_string_delimiter, + [289335] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(13555), 1, - anon_sym_RPAREN, - [284101] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12299), 1, - anon_sym_SEMI, - [284108] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13513), 1, - anon_sym_DOT_STAR, - [284115] = 2, - ACTIONS(3), 1, - sym_comment, + anon_sym_LPAREN2, ACTIONS(13557), 1, - anon_sym_COLON, - [284122] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13513), 1, - anon_sym_GT_GT_EQ, - [284129] = 2, + sym_raw_string_delimiter, + [289345] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(13559), 1, - anon_sym_SEMI, - [284136] = 2, - ACTIONS(3), 1, - sym_comment, + anon_sym_LPAREN2, ACTIONS(13561), 1, - anon_sym_EQ, - [284143] = 2, + sym_raw_string_delimiter, + [289355] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(13563), 1, - anon_sym_SEMI, - [284150] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13565), 1, anon_sym_LPAREN2, - [284157] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9130), 1, - anon_sym_RPAREN, - [284164] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8849), 1, - anon_sym_RBRACE, - [284171] = 2, + ACTIONS(13565), 1, + sym_raw_string_delimiter, + [289365] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(13567), 1, - anon_sym_RPAREN, - [284178] = 2, - ACTIONS(3), 1, - sym_comment, + anon_sym_LPAREN2, ACTIONS(13569), 1, - anon_sym_SEMI, - [284185] = 2, + sym_raw_string_delimiter, + [289375] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(13571), 1, anon_sym_LPAREN2, - [284192] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11114), 1, - anon_sym_RBRACE, - [284199] = 2, - ACTIONS(3), 1, - sym_comment, ACTIONS(13573), 1, - sym_identifier, - [284206] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12753), 1, - anon_sym_COLON_COLON, - [284213] = 2, + sym_raw_string_delimiter, + [289385] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(13575), 1, - anon_sym_RPAREN, - [284220] = 2, - ACTIONS(3), 1, - sym_comment, + anon_sym_LPAREN2, ACTIONS(13577), 1, - anon_sym_SEMI, - [284227] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8977), 1, - anon_sym_COLON, - [284234] = 2, + sym_raw_string_delimiter, + [289395] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(13579), 1, - anon_sym_STAR, - [284241] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13513), 1, - anon_sym_CARET_EQ, - [284248] = 2, - ACTIONS(3), 1, - sym_comment, + anon_sym_LPAREN2, ACTIONS(13581), 1, - anon_sym_SEMI, - [284255] = 2, + sym_raw_string_delimiter, + [289405] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(13583), 1, - anon_sym_DQUOTE, - [284262] = 2, - ACTIONS(3), 1, - sym_comment, + anon_sym_LPAREN2, ACTIONS(13585), 1, - anon_sym_RPAREN, - [284269] = 2, + sym_raw_string_delimiter, + [289415] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(13587), 1, - anon_sym_RPAREN, - [284276] = 2, - ACTIONS(3), 1, - sym_comment, + anon_sym_LPAREN2, ACTIONS(13589), 1, - anon_sym_DQUOTE, - [284283] = 2, + sym_raw_string_delimiter, + [289425] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(13591), 1, - anon_sym_DQUOTE, - [284290] = 2, + anon_sym_LPAREN2, + ACTIONS(13593), 1, + sym_raw_string_delimiter, + [289435] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13593), 1, - anon_sym_DQUOTE, - [284297] = 2, + ACTIONS(9849), 1, + anon_sym_LBRACE, + STATE(1630), 1, + sym_compound_statement, + [289445] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7975), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [289453] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13595), 1, - anon_sym_SEMI, - [284304] = 2, + sym_identifier, + [289460] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13597), 1, anon_sym_RPAREN, - [284311] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13513), 1, - anon_sym_DASH_GT_STAR, - [284318] = 2, + [289467] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13599), 1, - anon_sym_SEMI, - [284325] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8917), 1, - anon_sym_SEMI, - [284332] = 2, + anon_sym_DQUOTE, + [289474] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13601), 1, - anon_sym_RPAREN, - [284339] = 2, + anon_sym_or, + [289481] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13603), 1, - anon_sym_SEMI, - [284346] = 2, + sym_identifier, + [289488] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13605), 1, - anon_sym_RPAREN, - [284353] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13513), 1, - anon_sym_DASH, - [284360] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13513), 1, - anon_sym_PLUS, - [284367] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6975), 1, anon_sym_SEMI, - [284374] = 2, + [289495] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13607), 1, - sym_identifier, - [284381] = 2, + anon_sym_SEMI, + [289502] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13609), 1, - sym_identifier, - [284388] = 2, + anon_sym_RPAREN, + [289509] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11536), 1, + anon_sym_LBRACE, + [289516] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13611), 1, anon_sym_RPAREN, - [284395] = 2, - ACTIONS(3), 1, + [289523] = 2, + ACTIONS(10057), 1, sym_comment, - ACTIONS(11110), 1, - anon_sym_RBRACE, - [284402] = 2, + ACTIONS(10262), 1, + aux_sym_preproc_include_token2, + [289530] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13613), 1, - anon_sym_RPAREN, - [284409] = 2, + anon_sym_SEMI, + [289537] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13615), 1, - anon_sym_RPAREN, - [284416] = 2, + anon_sym_SEMI, + [289544] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13617), 1, - anon_sym_RPAREN, - [284423] = 2, + aux_sym_preproc_if_token2, + [289551] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9039), 1, - anon_sym_COLON, - [284430] = 2, + ACTIONS(13619), 1, + anon_sym_RPAREN, + [289558] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13275), 1, - anon_sym_RBRACE, - [284437] = 2, - ACTIONS(3), 1, + ACTIONS(13621), 1, + sym_raw_string_delimiter, + [289565] = 2, + ACTIONS(10057), 1, sym_comment, - ACTIONS(13619), 1, - anon_sym_COLON, - [284444] = 2, + ACTIONS(13000), 1, + aux_sym_preproc_include_token2, + [289572] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9071), 1, - anon_sym_RPAREN, - [284451] = 2, + ACTIONS(13623), 1, + sym_identifier, + [289579] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13621), 1, - sym_identifier, - [284458] = 2, + ACTIONS(12337), 1, + anon_sym_SEMI, + [289586] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13623), 1, - aux_sym_preproc_if_token2, - [284465] = 2, + ACTIONS(13601), 1, + anon_sym_and, + [289593] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13625), 1, - sym_identifier, - [284472] = 2, + anon_sym_SEMI, + [289600] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13627), 1, - anon_sym_RPAREN, - [284479] = 2, + anon_sym_SEMI, + [289607] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13513), 1, - anon_sym_STAR, - [284486] = 2, + ACTIONS(11732), 1, + anon_sym_LBRACE, + [289614] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13629), 1, - sym_identifier, - [284493] = 2, + anon_sym_SEMI, + [289621] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13631), 1, - anon_sym_STAR, - [284500] = 2, + anon_sym_LPAREN2, + [289628] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13633), 1, - anon_sym_LPAREN2, - [284507] = 2, + anon_sym_SEMI, + [289635] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13635), 1, anon_sym_SEMI, - [284514] = 2, + [289642] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13601), 1, + anon_sym_bitor, + [289649] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13637), 1, - anon_sym_RPAREN, - [284521] = 2, + sym_auto, + [289656] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4790), 1, + ACTIONS(8711), 1, anon_sym_SEMI, - [284528] = 2, + [289663] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13639), 1, + ACTIONS(9053), 1, + anon_sym_COLON, + [289670] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12670), 1, anon_sym_SEMI, - [284535] = 2, + [289677] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12140), 1, + ACTIONS(7023), 1, anon_sym_SEMI, - [284542] = 2, + [289684] = 2, + ACTIONS(10057), 1, + sym_comment, + ACTIONS(12672), 1, + aux_sym_preproc_include_token2, + [289691] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9129), 1, + anon_sym_RPAREN, + [289698] = 2, + ACTIONS(10057), 1, + sym_comment, + ACTIONS(13639), 1, + aux_sym_preproc_include_token2, + [289705] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13641), 1, - anon_sym_LPAREN2, - [284549] = 2, + anon_sym_DQUOTE, + [289712] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13643), 1, - sym_auto, - [284556] = 2, + anon_sym_RPAREN, + [289719] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13513), 1, - anon_sym_AMP_EQ, - [284563] = 2, - ACTIONS(10118), 1, - sym_comment, - ACTIONS(10220), 1, - aux_sym_preproc_include_token2, - [284570] = 2, - ACTIONS(10118), 1, - sym_comment, ACTIONS(13645), 1, - aux_sym_preproc_include_token2, - [284577] = 2, + anon_sym_RPAREN, + [289726] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8965), 1, - anon_sym_COLON, - [284584] = 2, + ACTIONS(13601), 1, + anon_sym_xor, + [289733] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13647), 1, + anon_sym_RPAREN, + [289740] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13647), 1, + ACTIONS(12339), 1, anon_sym_SEMI, - [284591] = 2, + [289747] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13649), 1, - anon_sym_COLON, - [284598] = 2, + sym_identifier, + [289754] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13651), 1, - anon_sym_COLON, - [284605] = 2, + anon_sym_STAR, + [289761] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13653), 1, - anon_sym_SEMI, - [284612] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8963), 1, anon_sym_RPAREN, - [284619] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13277), 1, - anon_sym_RBRACE, - [284626] = 2, + [289768] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13655), 1, - anon_sym_SEMI, - [284633] = 2, + aux_sym_preproc_if_token2, + [289775] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13657), 1, anon_sym_SEMI, - [284640] = 2, - ACTIONS(10118), 1, + [289782] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(13659), 1, - aux_sym_preproc_include_token2, - [284647] = 2, + anon_sym_SEMI, + [289789] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13661), 1, anon_sym_LPAREN2, - [284654] = 2, + [289796] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12158), 1, - anon_sym_SEMI, - [284661] = 2, + ACTIONS(13663), 1, + aux_sym_preproc_if_token2, + [289803] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13663), 1, - sym_identifier, - [284668] = 2, + ACTIONS(13411), 1, + anon_sym_RBRACE, + [289810] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13665), 1, - anon_sym_DQUOTE, - [284675] = 2, + anon_sym_private, + [289817] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13667), 1, - anon_sym_SEMI, - [284682] = 2, + ACTIONS(13413), 1, + anon_sym_RBRACE, + [289824] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12417), 1, + ACTIONS(13667), 1, anon_sym_SEMI, - [284689] = 2, + [289831] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13669), 1, - anon_sym_STAR, - [284696] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13513), 1, - anon_sym_PIPE_EQ, - [284703] = 2, + anon_sym_SEMI, + [289838] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13671), 1, - anon_sym_SEMI, - [284710] = 2, - ACTIONS(3), 1, + aux_sym_preproc_if_token2, + [289845] = 2, + ACTIONS(10057), 1, sym_comment, ACTIONS(13673), 1, - anon_sym_SEMI, - [284717] = 2, + aux_sym_preproc_include_token2, + [289852] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13675), 1, - anon_sym_RPAREN, - [284724] = 2, + anon_sym_DQUOTE, + [289859] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13677), 1, - anon_sym_RPAREN, - [284731] = 2, + anon_sym_STAR, + [289866] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13679), 1, - sym_identifier, - [284738] = 2, + anon_sym_RPAREN, + [289873] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13681), 1, - anon_sym_SEMI, - [284745] = 2, - ACTIONS(3), 1, + sym_auto, + [289880] = 2, + ACTIONS(10057), 1, sym_comment, ACTIONS(13683), 1, - anon_sym_SEMI, - [284752] = 2, + aux_sym_preproc_include_token2, + [289887] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13685), 1, anon_sym_SEMI, - [284759] = 2, + [289894] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13687), 1, - anon_sym_SEMI, - [284766] = 2, + anon_sym_RPAREN, + [289901] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13689), 1, - anon_sym_DQUOTE, - [284773] = 2, + sym_identifier, + [289908] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13691), 1, - anon_sym_RPAREN, - [284780] = 2, + sym_identifier, + [289915] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13693), 1, - anon_sym_SEMI, - [284787] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13695), 1, anon_sym_DQUOTE, - [284794] = 2, + [289922] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13697), 1, + ACTIONS(13695), 1, anon_sym_SEMI, - [284801] = 2, - ACTIONS(3), 1, + [289929] = 2, + ACTIONS(10057), 1, sym_comment, - ACTIONS(13513), 1, - anon_sym_LT_EQ, - [284808] = 2, + ACTIONS(13697), 1, + aux_sym_preproc_include_token2, + [289936] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13699), 1, - anon_sym_SEMI, - [284815] = 2, + anon_sym_DQUOTE, + [289943] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13701), 1, - anon_sym_STAR, - [284822] = 2, + sym_auto, + [289950] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13703), 1, - sym_auto, - [284829] = 2, + aux_sym_preproc_if_token2, + [289957] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13705), 1, - sym_identifier, - [284836] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13339), 1, - anon_sym_RBRACE, - [284843] = 2, + anon_sym_RPAREN, + [289964] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13707), 1, anon_sym_SEMI, - [284850] = 2, + [289971] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13709), 1, anon_sym_SEMI, - [284857] = 2, + [289978] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13711), 1, sym_identifier, - [284864] = 2, + [289985] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13713), 1, - anon_sym_SEMI, - [284871] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11583), 1, - anon_sym_LBRACE, - [284878] = 2, + anon_sym_RPAREN, + [289992] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8979), 1, - anon_sym_COLON, - [284885] = 2, + ACTIONS(4756), 1, + anon_sym_SEMI, + [289999] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13715), 1, - anon_sym_RPAREN, - [284892] = 2, + anon_sym_SEMI, + [290006] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13717), 1, anon_sym_RPAREN, - [284899] = 2, + [290013] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13719), 1, - sym_raw_string_delimiter, - [284906] = 2, + anon_sym_SEMI, + [290020] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13721), 1, - anon_sym_RPAREN, - [284913] = 2, + anon_sym_STAR, + [290027] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13723), 1, anon_sym_RPAREN, - [284920] = 2, + [290034] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13725), 1, - anon_sym_SEMI, - [284927] = 2, + anon_sym_DQUOTE, + [290041] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13727), 1, - sym_identifier, - [284934] = 2, + aux_sym_preproc_if_token2, + [290048] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13513), 1, - anon_sym_LT, - [284941] = 2, + ACTIONS(13729), 1, + anon_sym_COLON, + [290055] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13729), 1, + ACTIONS(7121), 1, anon_sym_RPAREN, - [284948] = 2, + [290062] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13731), 1, - anon_sym_SEMI, - [284955] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7722), 1, sym_identifier, - [284962] = 2, + [290069] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13733), 1, - anon_sym_SEMI, - [284969] = 2, + anon_sym_RPAREN, + [290076] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13735), 1, anon_sym_RPAREN, - [284976] = 2, + [290083] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9013), 1, + anon_sym_SEMI, + [290090] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13737), 1, - anon_sym_DQUOTE, - [284983] = 2, + anon_sym_COLON, + [290097] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13739), 1, - anon_sym_DQUOTE, - [284990] = 2, + sym_auto, + [290104] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13741), 1, - anon_sym_DQUOTE, - [284997] = 2, - ACTIONS(10118), 1, + ACTIONS(9019), 1, + anon_sym_RPAREN, + [290111] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(10325), 1, - aux_sym_preproc_include_token2, - [285004] = 2, + ACTIONS(13741), 1, + anon_sym_RPAREN, + [290118] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13743), 1, - aux_sym_preproc_if_token2, - [285011] = 2, + anon_sym_SEMI, + [290125] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13745), 1, - sym_identifier, - [285018] = 2, + aux_sym_preproc_if_token2, + [290132] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13747), 1, - anon_sym_COLON, - [285025] = 2, + anon_sym_RPAREN, + [290139] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13749), 1, - anon_sym_RPAREN, - [285032] = 2, + sym_identifier, + [290146] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13751), 1, - anon_sym_RPAREN, - [285039] = 2, - ACTIONS(10118), 1, + anon_sym_COLON, + [290153] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(13753), 1, - aux_sym_preproc_include_token2, - [285046] = 2, + anon_sym_RPAREN, + [290160] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13755), 1, + ACTIONS(12702), 1, anon_sym_LBRACE, - [285053] = 2, + [290167] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13757), 1, - sym_identifier, - [285060] = 2, + ACTIONS(13601), 1, + anon_sym_bitand, + [290174] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12777), 1, - anon_sym_SEMI, - [285067] = 2, + ACTIONS(13755), 1, + anon_sym_LPAREN2, + [290181] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9233), 1, + ACTIONS(13757), 1, anon_sym_RPAREN, - [285074] = 2, + [290188] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11975), 1, + ACTIONS(12349), 1, anon_sym_SEMI, - [285081] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8695), 1, - anon_sym_RBRACE, - [285088] = 2, + [290195] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13759), 1, - anon_sym_STAR, - [285095] = 2, + anon_sym_DQUOTE, + [290202] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13761), 1, - anon_sym_SEMI, - [285102] = 2, - ACTIONS(3), 1, + sym_identifier, + [290209] = 2, + ACTIONS(10057), 1, sym_comment, ACTIONS(13763), 1, - anon_sym_SEMI, - [285109] = 2, + aux_sym_preproc_include_token2, + [290216] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13007), 1, + ACTIONS(11542), 1, anon_sym_LBRACE, - [285116] = 2, + [290223] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13765), 1, - anon_sym_SEMI, - [285123] = 2, + aux_sym_preproc_if_token2, + [290230] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13767), 1, - sym_this, - [285130] = 2, + anon_sym_RPAREN, + [290237] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11584), 1, + anon_sym_LBRACE, + [290244] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13769), 1, - anon_sym_SEMI, - [285137] = 2, + anon_sym_RPAREN, + [290251] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13771), 1, - anon_sym_EQ, - [285144] = 2, + anon_sym_RPAREN, + [290258] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13773), 1, - anon_sym_SEMI, - [285151] = 2, + sym_identifier, + [290265] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13775), 1, - anon_sym_SEMI, - [285158] = 2, + anon_sym_RPAREN, + [290272] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13777), 1, - aux_sym_preproc_if_token2, - [285165] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13779), 1, anon_sym_SEMI, - [285172] = 2, + [290279] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6999), 1, - anon_sym_SEMI, - [285179] = 2, + ACTIONS(13779), 1, + anon_sym_RPAREN, + [290286] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13781), 1, - anon_sym_RPAREN, - [285186] = 2, + anon_sym_SEMI, + [290293] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13783), 1, - sym_identifier, - [285193] = 2, + aux_sym_preproc_if_token2, + [290300] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13785), 1, - anon_sym_LPAREN2, - [285200] = 2, + anon_sym_RPAREN, + [290307] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13787), 1, - anon_sym_RPAREN, - [285207] = 2, - ACTIONS(3), 1, + anon_sym_SEMI, + [290314] = 2, + ACTIONS(10057), 1, sym_comment, ACTIONS(13789), 1, - anon_sym_LPAREN2, - [285214] = 2, + aux_sym_preproc_include_token2, + [290321] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9138), 1, - anon_sym_RPAREN, - [285221] = 2, + ACTIONS(9001), 1, + anon_sym_COLON, + [290328] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7029), 1, + anon_sym_SEMI, + [290335] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13363), 1, + anon_sym_RBRACE, + [290342] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13791), 1, anon_sym_RPAREN, - [285228] = 2, + [290349] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13793), 1, - anon_sym_LBRACE, - [285235] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11086), 1, - anon_sym_RBRACE, - [285242] = 2, + anon_sym_DQUOTE, + [290356] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13795), 1, - anon_sym_DQUOTE, - [285249] = 2, + aux_sym_preproc_if_token2, + [290363] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13797), 1, anon_sym_DQUOTE, - [285256] = 2, + [290370] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13601), 1, + anon_sym_not_eq, + [290377] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13351), 1, + anon_sym_COMMA, + [290384] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13799), 1, - sym_identifier, - [285263] = 2, + anon_sym_SEMI, + [290391] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13801), 1, - anon_sym_SEMI, - [285270] = 2, + sym_identifier, + [290398] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13803), 1, - anon_sym_SEMI, - [285277] = 2, + anon_sym_STAR, + [290405] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13805), 1, - anon_sym_DQUOTE, - [285284] = 2, + anon_sym_SEMI, + [290412] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9059), 1, + anon_sym_RPAREN, + [290419] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13807), 1, - anon_sym_DQUOTE, - [285291] = 2, + anon_sym_SEMI, + [290426] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13809), 1, anon_sym_RPAREN, - [285298] = 2, + [290433] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13811), 1, - sym_identifier, - [285305] = 2, + sym_raw_string_delimiter, + [290440] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13813), 1, - anon_sym_RPAREN, - [285312] = 2, + anon_sym_DQUOTE, + [290447] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13513), 1, - anon_sym_LT_LT, - [285319] = 2, - ACTIONS(10118), 1, - sym_comment, ACTIONS(13815), 1, - aux_sym_preproc_include_token2, - [285326] = 2, + anon_sym_SEMI, + [290454] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13817), 1, anon_sym_RPAREN, - [285333] = 2, + [290461] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13819), 1, - anon_sym_RPAREN, - [285340] = 2, + anon_sym_SEMI, + [290468] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13821), 1, anon_sym_SEMI, - [285347] = 2, + [290475] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13823), 1, anon_sym_RPAREN, - [285354] = 2, + [290482] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13601), 1, + anon_sym_LT_LT, + [290489] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13825), 1, - anon_sym_RPAREN, - [285361] = 2, + sym_identifier, + [290496] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13827), 1, - anon_sym_DQUOTE, - [285368] = 2, + anon_sym_RPAREN, + [290503] = 2, ACTIONS(3), 1, sym_comment, + ACTIONS(13601), 1, + anon_sym_DOT_STAR, + [290510] = 2, + ACTIONS(10057), 1, + sym_comment, ACTIONS(13829), 1, - sym_identifier, - [285375] = 2, + aux_sym_preproc_include_token2, + [290517] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4680), 1, - anon_sym_DOT_DOT_DOT, - [285382] = 2, + ACTIONS(13831), 1, + anon_sym_SEMI, + [290524] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13831), 1, - anon_sym_LPAREN2, - [285389] = 2, + ACTIONS(12351), 1, + anon_sym_SEMI, + [290531] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7281), 1, + anon_sym_RPAREN, + [290538] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13833), 1, - anon_sym_LPAREN2, - [285396] = 2, + anon_sym_SEMI, + [290545] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13835), 1, - anon_sym_RPAREN, - [285403] = 2, + sym_identifier, + [290552] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13837), 1, - anon_sym_RPAREN, - [285410] = 2, + anon_sym_LPAREN2, + [290559] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13839), 1, - sym_raw_string_delimiter, - [285417] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13279), 1, - anon_sym_RBRACE, - [285424] = 2, + anon_sym_RPAREN, + [290566] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13841), 1, sym_identifier, - [285431] = 2, + [290573] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9215), 1, - anon_sym_RPAREN, - [285438] = 2, + ACTIONS(13365), 1, + anon_sym_RBRACE, + [290580] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13843), 1, - anon_sym_LBRACE, - [285445] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11595), 1, - anon_sym_EQ, - [285452] = 2, + anon_sym_SEMI, + [290587] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13845), 1, - anon_sym_DQUOTE, - [285459] = 2, + sym_identifier, + [290594] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13847), 1, anon_sym_SEMI, - [285466] = 2, + [290601] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13601), 1, + anon_sym_GT_GT, + [290608] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13849), 1, - aux_sym_preproc_if_token2, - [285473] = 2, + sym_identifier, + [290615] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13851), 1, - anon_sym_STAR, - [285480] = 2, + aux_sym_preproc_if_token2, + [290622] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13853), 1, - anon_sym_SEMI, - [285487] = 2, - ACTIONS(3), 1, + anon_sym_STAR, + [290629] = 2, + ACTIONS(10057), 1, sym_comment, ACTIONS(13855), 1, - anon_sym_SEMI, - [285494] = 2, + aux_sym_preproc_include_token2, + [290636] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4827), 1, - anon_sym_SEMI, - [285501] = 2, + ACTIONS(13601), 1, + anon_sym_DASH_GT_STAR, + [290643] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13857), 1, - sym_identifier, - [285508] = 2, + anon_sym_RPAREN, + [290650] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11798), 1, + anon_sym_LBRACE, + [290657] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13859), 1, anon_sym_SEMI, - [285515] = 2, - ACTIONS(3), 1, + [290664] = 2, + ACTIONS(10057), 1, sym_comment, ACTIONS(13861), 1, - anon_sym_SEMI, - [285522] = 2, + aux_sym_preproc_include_token2, + [290671] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10530), 1, + sym_identifier, + [290678] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13863), 1, + anon_sym_RPAREN, + [290685] = 2, + ACTIONS(10057), 1, + sym_comment, + ACTIONS(10463), 1, + aux_sym_preproc_include_token2, + [290692] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9057), 1, anon_sym_SEMI, - [285529] = 2, + [290699] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13865), 1, anon_sym_RPAREN, - [285536] = 2, + [290706] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11963), 1, + anon_sym_COLON, + [290713] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13867), 1, - anon_sym_RBRACE, - [285543] = 2, + anon_sym_SEMI, + [290720] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13869), 1, - anon_sym_SEMI, - [285550] = 2, + anon_sym_DQUOTE, + [290727] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13871), 1, - anon_sym_RPAREN, - [285557] = 2, + anon_sym_LPAREN2, + [290734] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13873), 1, - sym_identifier, - [285564] = 2, - ACTIONS(10118), 1, - sym_comment, - ACTIONS(13062), 1, - aux_sym_preproc_include_token2, - [285571] = 2, + anon_sym_SEMI, + [290741] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13875), 1, - anon_sym_LPAREN2, - [285578] = 2, + anon_sym_SEMI, + [290748] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13877), 1, - anon_sym_RPAREN, - [285585] = 2, - ACTIONS(5484), 1, - aux_sym_preproc_include_token2, - ACTIONS(10118), 1, - sym_comment, - [285592] = 2, + aux_sym_preproc_if_token2, + [290755] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8975), 1, + ACTIONS(7037), 1, anon_sym_SEMI, - [285599] = 2, + [290762] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13879), 1, - aux_sym_preproc_if_token2, - [285606] = 2, + anon_sym_DQUOTE, + [290769] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13881), 1, + anon_sym_DQUOTE, + [290776] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9063), 1, anon_sym_SEMI, - [285613] = 2, + [290783] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13883), 1, - anon_sym_RPAREN, - [285620] = 2, + aux_sym_preproc_if_token2, + [290790] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13885), 1, - sym_raw_string_delimiter, - [285627] = 2, + sym_identifier, + [290797] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9133), 1, + anon_sym_RPAREN, + [290804] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13887), 1, sym_identifier, - [285634] = 2, + [290811] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8794), 1, + anon_sym_RBRACE, + [290818] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13889), 1, anon_sym_SEMI, - [285641] = 2, + [290825] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13891), 1, anon_sym_RPAREN, - [285648] = 2, + [290832] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4617), 1, - anon_sym_DOT_DOT_DOT, - [285655] = 2, + ACTIONS(11546), 1, + anon_sym_SEMI, + [290839] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13893), 1, - sym_auto, - [285662] = 2, + anon_sym_COLON, + [290846] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13895), 1, - anon_sym_RPAREN, - [285669] = 2, + anon_sym_DQUOTE, + [290853] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13897), 1, - anon_sym_LBRACE, - [285676] = 2, + ACTIONS(11588), 1, + anon_sym_SEMI, + [290860] = 2, + ACTIONS(10057), 1, + sym_comment, + ACTIONS(12745), 1, + aux_sym_preproc_include_token2, + [290867] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4611), 1, - anon_sym_DOT_DOT_DOT, - [285683] = 2, + ACTIONS(13897), 1, + anon_sym_SEMI, + [290874] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13899), 1, - anon_sym_RPAREN, - [285690] = 2, + anon_sym_SEMI, + [290881] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4614), 1, - anon_sym_DOT_DOT_DOT, - [285697] = 2, + ACTIONS(13901), 1, + aux_sym_preproc_if_token2, + [290888] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13901), 1, - sym_identifier, - [285704] = 2, + ACTIONS(9015), 1, + anon_sym_RPAREN, + [290895] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4622), 1, - anon_sym_DOT_DOT_DOT, - [285711] = 2, + ACTIONS(11158), 1, + anon_sym_RBRACE, + [290902] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13903), 1, - anon_sym_SEMI, - [285718] = 2, + sym_identifier, + [290909] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13905), 1, anon_sym_LBRACE, - [285725] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12372), 1, - anon_sym_SEMI, - [285732] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4625), 1, - anon_sym_DOT_DOT_DOT, - [285739] = 2, + [290916] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13907), 1, - sym_identifier, - [285746] = 2, + anon_sym_RPAREN, + [290923] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11104), 1, - anon_sym_RBRACE, - [285753] = 2, + ACTIONS(9011), 1, + anon_sym_SEMI, + [290930] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13909), 1, - anon_sym_DQUOTE, - [285760] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13911), 1, aux_sym_preproc_if_token2, - [285767] = 2, + [290937] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4628), 1, - anon_sym_DOT_DOT_DOT, - [285774] = 2, + ACTIONS(13911), 1, + anon_sym_RPAREN, + [290944] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13913), 1, - anon_sym_RPAREN, - [285781] = 2, + sym_raw_string_delimiter, + [290951] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13915), 1, - sym_raw_string_delimiter, - [285788] = 2, - ACTIONS(10118), 1, + anon_sym_RBRACE, + [290958] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(13917), 1, - aux_sym_preproc_include_token2, - [285795] = 2, + anon_sym_RPAREN, + [290965] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13919), 1, - sym_identifier, - [285802] = 2, + anon_sym_COLON, + [290972] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4631), 1, - anon_sym_DOT_DOT_DOT, - [285809] = 2, + ACTIONS(13921), 1, + anon_sym_SEMI, + [290979] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11836), 1, - anon_sym_COLON, - [285816] = 2, + ACTIONS(9154), 1, + anon_sym_RPAREN, + [290986] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13921), 1, - anon_sym_DQUOTE, - [285823] = 2, + ACTIONS(13923), 1, + anon_sym_SEMI, + [290993] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13923), 1, - anon_sym_DQUOTE, - [285830] = 2, + ACTIONS(6943), 1, + anon_sym_SEMI, + [291000] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13925), 1, - anon_sym_RPAREN, - [285837] = 2, + anon_sym_DQUOTE, + [291007] = 2, ACTIONS(3), 1, sym_comment, + ACTIONS(11565), 1, + anon_sym_SEMI, + [291014] = 2, + ACTIONS(10057), 1, + sym_comment, ACTIONS(13927), 1, - aux_sym_preproc_if_token2, - [285844] = 2, + aux_sym_preproc_include_token2, + [291021] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13929), 1, - anon_sym_STAR, - [285851] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7299), 1, anon_sym_RPAREN, - [285858] = 2, - ACTIONS(10118), 1, + [291028] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(13931), 1, - aux_sym_preproc_include_token2, - [285865] = 2, + sym_identifier, + [291035] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13933), 1, + ACTIONS(9021), 1, anon_sym_SEMI, - [285872] = 2, + [291042] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13933), 1, + anon_sym_COLON, + [291049] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13935), 1, - anon_sym_RPAREN, - [285879] = 2, + anon_sym_LPAREN2, + [291056] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13937), 1, - aux_sym_preproc_if_token2, - [285886] = 2, + anon_sym_SEMI, + [291063] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13939), 1, - sym_identifier, - [285893] = 2, + aux_sym_preproc_if_token2, + [291070] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13941), 1, anon_sym_RPAREN, - [285900] = 2, + [291077] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13943), 1, - aux_sym_preproc_if_token2, - [285907] = 2, + anon_sym_STAR, + [291084] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13945), 1, anon_sym_RPAREN, - [285914] = 2, + [291091] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13947), 1, anon_sym_RPAREN, - [285921] = 2, + [291098] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13949), 1, - anon_sym_STAR, - [285928] = 2, + anon_sym_RPAREN, + [291105] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13951), 1, - anon_sym_RPAREN, - [285935] = 2, + anon_sym_SEMI, + [291112] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13953), 1, - anon_sym_LPAREN2, - [285942] = 2, + aux_sym_preproc_if_token2, + [291119] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13955), 1, - anon_sym_RPAREN, - [285949] = 2, + anon_sym_SEMI, + [291126] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13957), 1, aux_sym_preproc_if_token2, - [285956] = 2, + [291133] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13959), 1, - anon_sym_RPAREN, - [285963] = 2, + ACTIONS(10564), 1, + anon_sym_LBRACE, + [291140] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4634), 1, - anon_sym_DOT_DOT_DOT, - [285970] = 2, + ACTIONS(13959), 1, + sym_identifier, + [291147] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13961), 1, - anon_sym_RPAREN, - [285977] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13963), 1, aux_sym_preproc_if_token2, - [285984] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12356), 1, - anon_sym_SEMI, - [285991] = 2, + [291154] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11573), 1, - anon_sym_SEMI, - [285998] = 2, + ACTIONS(13963), 1, + anon_sym_RPAREN, + [291161] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13965), 1, - anon_sym_RPAREN, - [286005] = 2, + anon_sym_SEMI, + [291168] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13967), 1, anon_sym_RPAREN, - [286012] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13253), 1, - anon_sym_RBRACE, - [286019] = 2, + [291175] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13969), 1, - aux_sym_preproc_if_token2, - [286026] = 2, + anon_sym_LPAREN2, + [291182] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13971), 1, anon_sym_RPAREN, - [286033] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10486), 1, - sym_identifier, - [286040] = 2, + [291189] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13973), 1, anon_sym_RPAREN, - [286047] = 2, + [291196] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11596), 1, + anon_sym_SEMI, + [291203] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13975), 1, anon_sym_RPAREN, - [286054] = 2, - ACTIONS(10118), 1, + [291210] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(13977), 1, - aux_sym_preproc_include_token2, - [286061] = 2, + ACTIONS(13601), 1, + anon_sym_DASH, + [291217] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8993), 1, - anon_sym_COLON, - [286068] = 2, + ACTIONS(13977), 1, + sym_identifier, + [291224] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13979), 1, - anon_sym_SEMI, - [286075] = 2, + sym_this, + [291231] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13981), 1, - aux_sym_preproc_if_token2, - [286082] = 2, + sym_identifier, + [291238] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13983), 1, - anon_sym_SEMI, - [286089] = 2, + aux_sym_preproc_if_token2, + [291245] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13985), 1, - sym_auto, - [286096] = 2, + anon_sym_SEMI, + [291252] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8806), 1, + anon_sym_SEMI, + [291259] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13987), 1, anon_sym_RPAREN, - [286103] = 2, + [291266] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13989), 1, - sym_raw_string_delimiter, - [286110] = 2, + anon_sym_RPAREN, + [291273] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13991), 1, - anon_sym_SEMI, - [286117] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13993), 1, sym_identifier, - [286124] = 2, + [291280] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13513), 1, - anon_sym_GT_GT, - [286131] = 2, + ACTIONS(13993), 1, + anon_sym_RBRACK, + [291287] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13995), 1, - anon_sym_COLON, - [286138] = 2, + anon_sym_DQUOTE, + [291294] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13997), 1, - anon_sym_SEMI, - [286145] = 2, + anon_sym_DQUOTE, + [291301] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13999), 1, - aux_sym_preproc_if_token2, - [286152] = 2, + ACTIONS(11714), 1, + anon_sym_EQ, + [291308] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6995), 1, - anon_sym_SEMI, - [286159] = 2, + ACTIONS(13601), 1, + anon_sym_LT_LT_EQ, + [291315] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14001), 1, - anon_sym_LPAREN2, - [286166] = 2, + ACTIONS(13999), 1, + anon_sym_COMMA, + [291322] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4637), 1, - anon_sym_DOT_DOT_DOT, - [286173] = 2, + ACTIONS(14001), 1, + aux_sym_preproc_if_token2, + [291329] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14003), 1, - sym_identifier, - [286180] = 2, + anon_sym_DQUOTE, + [291336] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14005), 1, - aux_sym_preproc_if_token2, - [286187] = 2, + anon_sym_LPAREN2, + [291343] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14007), 1, - anon_sym_RPAREN, - [286194] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4601), 1, - anon_sym_DOT_DOT_DOT, - [286201] = 2, + sym_identifier, + [291350] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14009), 1, - anon_sym_RPAREN, - [286208] = 2, + anon_sym_SEMI, + [291357] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14011), 1, - sym_raw_string_delimiter, - [286215] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13513), 1, - anon_sym_STAR_EQ, - [286222] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9037), 1, - anon_sym_COLON, - [286229] = 2, + anon_sym_RPAREN, + [291364] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14013), 1, - aux_sym_preproc_if_token2, - [286236] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14015), 1, anon_sym_SEMI, - [286243] = 2, + [291371] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4604), 1, - anon_sym_DOT_DOT_DOT, - [286250] = 2, + ACTIONS(14015), 1, + anon_sym_RPAREN, + [291378] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14017), 1, - anon_sym_LPAREN2, - [286257] = 2, + anon_sym_RPAREN, + [291385] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14019), 1, - anon_sym_SEMI, - [286264] = 2, + sym_raw_string_delimiter, + [291392] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14021), 1, - sym_identifier, - [286271] = 2, + anon_sym_COLON, + [291399] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14023), 1, - anon_sym_RPAREN, - [286278] = 2, + sym_identifier, + [291406] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13457), 1, + anon_sym_RBRACE, + [291413] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9077), 1, + anon_sym_SEMI, + [291420] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13601), 1, + anon_sym_PLUS, + [291427] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14025), 1, - aux_sym_preproc_if_token2, - [286285] = 2, + anon_sym_SEMI, + [291434] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14027), 1, - sym_raw_string_delimiter, - [286292] = 2, + anon_sym_COLON, + [291441] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8804), 1, + anon_sym_RPAREN, + [291448] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14029), 1, - anon_sym_LPAREN2, - [286299] = 2, + anon_sym_STAR, + [291455] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14031), 1, - anon_sym_LPAREN2, - [286306] = 2, + sym_identifier, + [291462] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13601), 1, + anon_sym_STAR, + [291469] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14033), 1, - anon_sym_RPAREN, - [286313] = 2, + aux_sym_preproc_if_token2, + [291476] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11492), 1, + ACTIONS(14035), 1, anon_sym_SEMI, - [286320] = 2, + [291483] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14035), 1, - anon_sym_LPAREN2, - [286327] = 2, + ACTIONS(13601), 1, + anon_sym_GT_EQ, + [291490] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7891), 1, + sym_identifier, + [291497] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14037), 1, - anon_sym_RPAREN, - [286334] = 2, + anon_sym_SEMI, + [291504] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14039), 1, - sym_raw_string_delimiter, - [286341] = 2, + anon_sym_RPAREN, + [291511] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14041), 1, - anon_sym_RPAREN, - [286348] = 2, + anon_sym_SEMI, + [291518] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14043), 1, - aux_sym_preproc_if_token2, - [286355] = 2, - ACTIONS(3), 1, + anon_sym_SEMI, + [291525] = 2, + ACTIONS(10057), 1, sym_comment, ACTIONS(14045), 1, + aux_sym_preproc_include_token2, + [291532] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9073), 1, anon_sym_RPAREN, - [286362] = 2, + [291539] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14047), 1, - sym_raw_string_delimiter, - [286369] = 2, + anon_sym_LPAREN2, + [291546] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13601), 1, + anon_sym_EQ, + [291553] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14049), 1, - sym_identifier, - [286376] = 2, + anon_sym_RPAREN, + [291560] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14051), 1, - anon_sym_DQUOTE, - [286383] = 2, + anon_sym_COLON, + [291567] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14053), 1, anon_sym_RPAREN, - [286390] = 2, + [291574] = 2, + ACTIONS(5479), 1, + aux_sym_preproc_include_token2, + ACTIONS(10057), 1, + sym_comment, + [291581] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14055), 1, - sym_raw_string_delimiter, - [286397] = 2, + anon_sym_RPAREN, + [291588] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14057), 1, - anon_sym_RPAREN, - [286404] = 2, + anon_sym_SEMI, + [291595] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14059), 1, - sym_raw_string_delimiter, - [286411] = 2, + anon_sym_RPAREN, + [291602] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14061), 1, anon_sym_RPAREN, - [286418] = 2, + [291609] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14063), 1, - sym_raw_string_delimiter, - [286425] = 2, + anon_sym_RPAREN, + [291616] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14065), 1, anon_sym_RPAREN, - [286432] = 2, + [291623] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14067), 1, - sym_raw_string_delimiter, - [286439] = 2, + anon_sym_RPAREN, + [291630] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14069), 1, anon_sym_RPAREN, - [286446] = 2, + [291637] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14071), 1, - sym_raw_string_delimiter, - [286453] = 2, + anon_sym_DQUOTE, + [291644] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14073), 1, - anon_sym_RPAREN, - [286460] = 2, + anon_sym_DQUOTE, + [291651] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14075), 1, - sym_raw_string_delimiter, - [286467] = 2, + anon_sym_RPAREN, + [291658] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14077), 1, - sym_identifier, - [286474] = 2, + ACTIONS(11680), 1, + anon_sym_COMMA, + [291665] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14079), 1, + ACTIONS(14077), 1, anon_sym_RPAREN, - [286481] = 2, + [291672] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6927), 1, - anon_sym_SEMI, - [286488] = 2, - ACTIONS(3), 1, + ACTIONS(14079), 1, + sym_identifier, + [291679] = 2, + ACTIONS(10057), 1, sym_comment, ACTIONS(14081), 1, - anon_sym_LPAREN2, - [286495] = 2, + aux_sym_preproc_include_token2, + [291686] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13601), 1, + anon_sym_COMMA, + [291693] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14083), 1, - anon_sym_SEMI, - [286502] = 2, + sym_identifier, + [291700] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14085), 1, - anon_sym_LPAREN2, - [286509] = 2, + anon_sym_RPAREN, + [291707] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14087), 1, - anon_sym_LPAREN2, - [286516] = 2, + sym_raw_string_delimiter, + [291714] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14089), 1, - anon_sym_LPAREN2, - [286523] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9031), 1, anon_sym_SEMI, - [286530] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13513), 1, - anon_sym_or, - [286537] = 2, + [291721] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14091), 1, - anon_sym_LPAREN2, - [286544] = 2, + anon_sym_STAR, + [291728] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14093), 1, - anon_sym_SEMI, - [286551] = 2, + anon_sym_LPAREN2, + [291735] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14095), 1, anon_sym_LPAREN2, - [286558] = 2, + [291742] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14097), 1, - anon_sym_SEMI, - [286565] = 2, + anon_sym_STAR, + [291749] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14099), 1, anon_sym_RPAREN, - [286572] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11516), 1, - anon_sym_LBRACE, - [286579] = 2, + [291756] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14101), 1, - anon_sym_RPAREN, - [286586] = 2, + sym_identifier, + [291763] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14103), 1, anon_sym_RPAREN, - [286593] = 2, + [291770] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14105), 1, - anon_sym_DQUOTE, - [286600] = 2, + anon_sym_RBRACE, + [291777] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14107), 1, - anon_sym_SEMI, - [286607] = 2, + anon_sym_RPAREN, + [291784] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14109), 1, - sym_identifier, - [286614] = 2, - ACTIONS(10118), 1, + anon_sym_SLASH, + [291791] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(14111), 1, - aux_sym_preproc_include_token2, - [286621] = 2, + anon_sym_LPAREN2, + [291798] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14113), 1, anon_sym_RPAREN, - [286628] = 2, + [291805] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14115), 1, - aux_sym_preproc_if_token2, - [286635] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11514), 1, - anon_sym_LBRACE, - [286642] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9075), 1, anon_sym_RPAREN, - [286649] = 2, + [291812] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14117), 1, + ACTIONS(7003), 1, anon_sym_SEMI, - [286656] = 2, + [291819] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11518), 1, - anon_sym_LBRACE, - [286663] = 2, + ACTIONS(14117), 1, + anon_sym_RPAREN, + [291826] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14119), 1, - anon_sym_while, - [286670] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8853), 1, - anon_sym_RBRACE, - [286677] = 2, + anon_sym_SEMI, + [291833] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14121), 1, anon_sym_LPAREN2, - [286684] = 2, + [291840] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14123), 1, - anon_sym_RPAREN, - [286691] = 2, + sym_raw_string_delimiter, + [291847] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14125), 1, - aux_sym_preproc_if_token2, - [286698] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9128), 1, anon_sym_RPAREN, - [286705] = 2, + [291854] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14127), 1, - anon_sym_COLON, - [286712] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8959), 1, anon_sym_RPAREN, - [286719] = 2, + [291861] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14129), 1, - anon_sym_EQ, - [286726] = 2, + anon_sym_STAR, + [291868] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14131), 1, - sym_raw_string_content, - [286733] = 2, + anon_sym_RPAREN, + [291875] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14133), 1, + sym_identifier, + [291882] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11612), 1, anon_sym_SEMI, - [286740] = 2, + [291889] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14135), 1, + ACTIONS(9091), 1, anon_sym_SEMI, - [286747] = 2, + [291896] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14137), 1, + ACTIONS(12388), 1, + anon_sym_SEMI, + [291903] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13601), 1, + anon_sym_PERCENT, + [291910] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14135), 1, anon_sym_LPAREN2, - [286754] = 2, + [291917] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9277), 1, + anon_sym_RPAREN, + [291924] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9069), 1, + anon_sym_COLON, + [291931] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14137), 1, + anon_sym_RPAREN, + [291938] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14139), 1, - anon_sym_STAR, - [286761] = 2, + sym_identifier, + [291945] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14141), 1, - anon_sym_private, - [286768] = 2, + sym_raw_string_delimiter, + [291952] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14143), 1, - anon_sym_SEMI, - [286775] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14145), 1, anon_sym_RPAREN, - [286782] = 2, + [291959] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14147), 1, + ACTIONS(14145), 1, anon_sym_SEMI, - [286789] = 2, + [291966] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11698), 1, - anon_sym_LBRACE, - [286796] = 2, + ACTIONS(14147), 1, + sym_identifier, + [291973] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14149), 1, - aux_sym_preproc_if_token2, - [286803] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12142), 1, anon_sym_SEMI, - [286810] = 2, + [291980] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14151), 1, - anon_sym_RBRACE, - [286817] = 2, + anon_sym_LPAREN2, + [291987] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14153), 1, - sym_identifier, - [286824] = 2, + anon_sym_RPAREN, + [291994] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14155), 1, - anon_sym_SEMI, - [286831] = 2, + sym_raw_string_delimiter, + [292001] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14157), 1, - anon_sym_RPAREN, - [286838] = 2, + aux_sym_preproc_if_token2, + [292008] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14159), 1, - sym_identifier, - [286845] = 2, + anon_sym_SEMI, + [292015] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14161), 1, anon_sym_RPAREN, - [286852] = 2, + [292022] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14163), 1, - anon_sym_COMMA, - [286859] = 2, - ACTIONS(10118), 1, + sym_raw_string_delimiter, + [292029] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(14165), 1, - aux_sym_preproc_include_token2, - [286866] = 2, + aux_sym_preproc_if_token2, + [292036] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11152), 1, + anon_sym_RBRACE, + [292043] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14167), 1, - anon_sym_SEMI, - [286873] = 2, + anon_sym_RPAREN, + [292050] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14169), 1, - aux_sym_preproc_if_token2, - [286880] = 2, + sym_raw_string_delimiter, + [292057] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14171), 1, - anon_sym_LPAREN2, - [286887] = 2, + anon_sym_RPAREN, + [292064] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14173), 1, - anon_sym_LPAREN2, - [286894] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9168), 1, - anon_sym_RPAREN, - [286901] = 2, + sym_raw_string_delimiter, + [292071] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14175), 1, - anon_sym_STAR, - [286908] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9029), 1, - anon_sym_COLON, - [286915] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11098), 1, - anon_sym_RBRACE, - [286922] = 2, - ACTIONS(10118), 1, - sym_comment, - ACTIONS(13122), 1, - aux_sym_preproc_include_token2, - [286929] = 2, + anon_sym_RPAREN, + [292078] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14177), 1, - anon_sym_SEMI, - [286936] = 2, - ACTIONS(10118), 1, - sym_comment, - ACTIONS(10285), 1, - aux_sym_preproc_include_token2, - [286943] = 2, + sym_raw_string_delimiter, + [292085] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14179), 1, - sym_identifier, - [286950] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11500), 1, - anon_sym_SEMI, - [286957] = 2, + anon_sym_RPAREN, + [292092] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14181), 1, - sym_identifier, - [286964] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13513), 1, - anon_sym_GT_EQ, - [286971] = 2, + sym_raw_string_delimiter, + [292099] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14183), 1, - anon_sym_SEMI, - [286978] = 2, + anon_sym_RPAREN, + [292106] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14185), 1, - anon_sym_RPAREN, - [286985] = 2, + sym_raw_string_delimiter, + [292113] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14187), 1, - anon_sym_SEMI, - [286992] = 2, + anon_sym_RPAREN, + [292120] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14189), 1, - anon_sym_RPAREN, - [286999] = 2, + sym_raw_string_delimiter, + [292127] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14191), 1, - sym_identifier, - [287006] = 2, - ACTIONS(10118), 1, + aux_sym_preproc_if_token2, + [292134] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(14193), 1, - aux_sym_preproc_include_token2, - [287013] = 2, + aux_sym_preproc_if_token2, + [292141] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14195), 1, + ACTIONS(9239), 1, anon_sym_RPAREN, - [287020] = 2, + [292148] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14195), 1, + anon_sym_LPAREN2, + [292155] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8914), 1, + anon_sym_RBRACE, + [292162] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14197), 1, - anon_sym_RPAREN, - [287027] = 2, + anon_sym_LPAREN2, + [292169] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14199), 1, - anon_sym_RPAREN, - [287034] = 2, - ACTIONS(10118), 1, + anon_sym_LPAREN2, + [292176] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(14201), 1, - aux_sym_preproc_include_token2, - [287041] = 2, + anon_sym_LPAREN2, + [292183] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9033), 1, + anon_sym_SEMI, + [292190] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14203), 1, - anon_sym_COLON, - [287048] = 2, + anon_sym_RBRACE, + [292197] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14205), 1, - anon_sym_COLON, - [287055] = 2, + anon_sym_LPAREN2, + [292204] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14207), 1, aux_sym_preproc_if_token2, - [287062] = 2, + [292211] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14209), 1, anon_sym_LPAREN2, - [287069] = 2, + [292218] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14211), 1, + ACTIONS(11142), 1, anon_sym_RBRACE, - [287076] = 2, + [292225] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14211), 1, + anon_sym_SEMI, + [292232] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14213), 1, - anon_sym_RPAREN, - [287083] = 2, + anon_sym_SEMI, + [292239] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14215), 1, - ts_builtin_sym_end, - [287090] = 2, + anon_sym_RPAREN, + [292246] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12160), 1, + ACTIONS(14217), 1, anon_sym_SEMI, - [287097] = 2, + [292253] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14217), 1, + ACTIONS(9089), 1, anon_sym_SEMI, - [287104] = 2, + [292260] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14219), 1, - aux_sym_preproc_if_token2, - [287111] = 2, + sym_auto, + [292267] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14221), 1, - sym_raw_string_content, - [287118] = 2, + anon_sym_SEMI, + [292274] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14223), 1, + ACTIONS(9183), 1, anon_sym_RPAREN, - [287125] = 2, - ACTIONS(10118), 1, + [292281] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(13139), 1, - aux_sym_preproc_include_token2, - [287132] = 2, + ACTIONS(14223), 1, + anon_sym_DQUOTE, + [292288] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14225), 1, - anon_sym_STAR, - [287139] = 2, + anon_sym_SEMI, + [292295] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14227), 1, + ACTIONS(9081), 1, anon_sym_SEMI, - [287146] = 2, + [292302] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14227), 1, + anon_sym_RPAREN, + [292309] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14229), 1, anon_sym_RPAREN, - [287153] = 2, + [292316] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4851), 1, - anon_sym_SEMI, - [287160] = 2, + ACTIONS(13353), 1, + anon_sym_RBRACE, + [292323] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14231), 1, - anon_sym_DQUOTE, - [287167] = 2, + anon_sym_while, + [292330] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14233), 1, - anon_sym_SEMI, - [287174] = 2, + anon_sym_LBRACE, + [292337] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14235), 1, - sym_identifier, - [287181] = 2, - ACTIONS(10118), 1, + anon_sym_LPAREN2, + [292344] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(14237), 1, - aux_sym_preproc_include_token2, - [287188] = 2, + anon_sym_SEMI, + [292351] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14239), 1, - sym_auto, - [287195] = 2, + ACTIONS(13601), 1, + anon_sym_PIPE_PIPE, + [292358] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14241), 1, - aux_sym_preproc_if_token2, - [287202] = 2, + ACTIONS(14239), 1, + anon_sym_SEMI, + [292365] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7027), 1, - anon_sym_SEMI, - [287209] = 2, + ACTIONS(13601), 1, + anon_sym_AMP_AMP, + [292372] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7273), 1, + ACTIONS(14241), 1, anon_sym_RPAREN, - [287216] = 2, + [292379] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14243), 1, - anon_sym_RPAREN, - [287223] = 2, + anon_sym_EQ, + [292386] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8945), 1, - anon_sym_COLON, - [287230] = 2, + ACTIONS(14245), 1, + sym_raw_string_content, + [292393] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9021), 1, - anon_sym_COLON, - [287237] = 2, + ACTIONS(13107), 1, + anon_sym_LBRACE, + [292400] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14245), 1, - anon_sym_RPAREN, - [287244] = 2, + ACTIONS(11116), 1, + anon_sym_RBRACE, + [292407] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14247), 1, - anon_sym_RPAREN, - [287251] = 2, + sym_identifier, + [292414] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14249), 1, - anon_sym_RPAREN, - [287258] = 2, + anon_sym_STAR, + [292421] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14251), 1, - anon_sym_DQUOTE, - [287265] = 2, + anon_sym_SEMI, + [292428] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14253), 1, - anon_sym_LPAREN2, - [287272] = 2, + sym_identifier, + [292435] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14255), 1, - anon_sym_RPAREN, - [287279] = 2, + anon_sym_SEMI, + [292442] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14257), 1, - anon_sym_RPAREN, - [287286] = 2, + anon_sym_SEMI, + [292449] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14259), 1, - anon_sym_DQUOTE, - [287293] = 2, + anon_sym_RPAREN, + [292456] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10532), 1, + anon_sym_LBRACE, + [292463] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14261), 1, - anon_sym_RPAREN, - [287300] = 2, + anon_sym_SEMI, + [292470] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14263), 1, - aux_sym_preproc_if_token2, - [287307] = 2, - ACTIONS(10118), 1, + anon_sym_RBRACE, + [292477] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(14265), 1, - aux_sym_preproc_include_token2, - [287314] = 2, + sym_identifier, + [292484] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14267), 1, + ACTIONS(12824), 1, anon_sym_RPAREN, - [287321] = 2, + [292491] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14267), 1, + anon_sym_SEMI, + [292498] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14269), 1, - aux_sym_preproc_if_token2, - [287328] = 2, + sym_identifier, + [292505] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14271), 1, - anon_sym_SEMI, - [287335] = 2, + anon_sym_RPAREN, + [292512] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14273), 1, - anon_sym_LPAREN2, - [287342] = 2, + anon_sym_COMMA, + [292519] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14275), 1, - anon_sym_RPAREN, - [287349] = 2, + anon_sym_SEMI, + [292526] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9027), 1, + ACTIONS(4739), 1, anon_sym_SEMI, - [287356] = 2, + [292533] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14277), 1, - sym_identifier, - [287363] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9059), 1, - anon_sym_RPAREN, - [287370] = 2, + anon_sym_SEMI, + [292540] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14279), 1, - sym_identifier, - [287377] = 2, + aux_sym_preproc_if_token2, + [292547] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14281), 1, - aux_sym_preproc_if_token2, - [287384] = 2, + sym_auto, + [292554] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14283), 1, - anon_sym_RPAREN, - [287391] = 2, + aux_sym_preproc_if_token2, + [292561] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14285), 1, anon_sym_SEMI, - [287398] = 2, + [292568] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14287), 1, - anon_sym_SEMI, - [287405] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9243), 1, - anon_sym_RPAREN, - [287412] = 2, + ACTIONS(9029), 1, + anon_sym_COLON, + [292575] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13413), 1, - anon_sym_RBRACE, - [287419] = 2, + ACTIONS(9079), 1, + anon_sym_COLON, + [292582] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13315), 1, - anon_sym_RBRACE, - [287426] = 2, + ACTIONS(14287), 1, + aux_sym_preproc_if_token2, + [292589] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14289), 1, - anon_sym_SEMI, - [287433] = 2, + aux_sym_preproc_if_token2, + [292596] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14291), 1, anon_sym_SEMI, - [287440] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11549), 1, - anon_sym_SEMI, - [287447] = 2, + [292603] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14293), 1, - sym_raw_string_delimiter, - [287454] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9007), 1, - anon_sym_RPAREN, - [287461] = 2, + anon_sym_STAR, + [292610] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12895), 1, - anon_sym_RPAREN, - [287468] = 2, - ACTIONS(3), 1, + ACTIONS(9039), 1, + anon_sym_SEMI, + [292617] = 2, + ACTIONS(10057), 1, sym_comment, ACTIONS(14295), 1, - anon_sym_RPAREN, - [287475] = 2, + aux_sym_preproc_include_token2, + [292624] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14297), 1, anon_sym_SEMI, - [287482] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14299), 1, - anon_sym_while, - [287489] = 2, + [292631] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7185), 1, - anon_sym_RPAREN, - [287496] = 2, + ACTIONS(6468), 1, + sym_identifier, + [292638] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9041), 1, - anon_sym_SEMI, - [287503] = 2, + ACTIONS(14299), 1, + sym_auto, + [292645] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14301), 1, sym_identifier, - [287510] = 2, + [292652] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14303), 1, anon_sym_RPAREN, - [287517] = 2, + [292659] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14305), 1, - anon_sym_SEMI, - [287524] = 2, + anon_sym_RPAREN, + [292666] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14307), 1, sym_identifier, - [287531] = 2, + [292673] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9035), 1, + anon_sym_RPAREN, + [292680] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14309), 1, - anon_sym_SEMI, - [287538] = 2, + aux_sym_preproc_if_token2, + [292687] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14311), 1, - anon_sym_SEMI, - [287545] = 2, + ACTIONS(8814), 1, + anon_sym_RBRACE, + [292694] = 2, + ACTIONS(10057), 1, + sym_comment, + ACTIONS(10326), 1, + aux_sym_preproc_include_token2, + [292701] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11545), 1, + ACTIONS(14311), 1, anon_sym_SEMI, - [287552] = 2, + [292708] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14313), 1, - anon_sym_DQUOTE, - [287559] = 2, + anon_sym_COLON, + [292715] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8983), 1, - anon_sym_RPAREN, - [287566] = 2, - ACTIONS(10118), 1, + ACTIONS(14315), 1, + anon_sym_SEMI, + [292722] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(12720), 1, - aux_sym_preproc_include_token2, - [287573] = 2, + ACTIONS(13601), 1, + anon_sym_GT_GT_EQ, + [292729] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14315), 1, + ACTIONS(9178), 1, anon_sym_RPAREN, - [287580] = 2, + [292736] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14317), 1, - sym_raw_string_content, - [287587] = 2, + aux_sym_preproc_if_token2, + [292743] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14319), 1, - anon_sym_SEMI, - [287594] = 2, + anon_sym_RPAREN, + [292750] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14321), 1, anon_sym_COLON, - [287601] = 2, - ACTIONS(5491), 1, - aux_sym_preproc_include_token2, - ACTIONS(10118), 1, + [292757] = 2, + ACTIONS(3), 1, sym_comment, - [287608] = 2, + ACTIONS(13487), 1, + anon_sym_RBRACE, + [292764] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14323), 1, - anon_sym_SEMI, - [287615] = 2, + ACTIONS(9093), 1, + anon_sym_COLON, + [292771] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12342), 1, + ACTIONS(14323), 1, anon_sym_SEMI, - [287622] = 2, + [292778] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14325), 1, - anon_sym_SEMI, - [287629] = 2, + anon_sym_RPAREN, + [292785] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14327), 1, - aux_sym_preproc_if_token2, - [287636] = 2, + anon_sym_SEMI, + [292792] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14329), 1, - anon_sym_SEMI, - [287643] = 2, + ACTIONS(10738), 1, + anon_sym_LBRACE, + [292799] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9005), 1, - anon_sym_SEMI, - [287650] = 2, + ACTIONS(14329), 1, + anon_sym_RPAREN, + [292806] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14331), 1, - aux_sym_preproc_if_token2, - [287657] = 2, + anon_sym_LPAREN2, + [292813] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14333), 1, anon_sym_SEMI, - [287664] = 2, + [292820] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7003), 1, + ACTIONS(9023), 1, anon_sym_SEMI, - [287671] = 2, + [292827] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6929), 1, - anon_sym_SEMI, - [287678] = 2, + ACTIONS(7832), 1, + sym_identifier, + [292834] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14335), 1, - anon_sym_STAR, - [287685] = 2, + anon_sym_SEMI, + [292841] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14337), 1, anon_sym_SEMI, - [287692] = 2, + [292848] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14339), 1, anon_sym_SEMI, - [287699] = 2, + [292855] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14341), 1, anon_sym_SEMI, - [287706] = 2, + [292862] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14343), 1, - anon_sym_RBRACK, - [287713] = 2, + anon_sym_DQUOTE, + [292869] = 2, ACTIONS(3), 1, sym_comment, + ACTIONS(12390), 1, + anon_sym_SEMI, + [292876] = 2, + ACTIONS(10057), 1, + sym_comment, ACTIONS(14345), 1, - anon_sym_DQUOTE, - [287720] = 2, + aux_sym_preproc_include_token2, + [292883] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14347), 1, - anon_sym_SEMI, - [287727] = 2, + anon_sym_RPAREN, + [292890] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8951), 1, + anon_sym_RPAREN, + [292897] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14349), 1, - anon_sym_SEMI, - [287734] = 2, + anon_sym_LBRACE, + [292904] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14351), 1, anon_sym_RPAREN, - [287741] = 2, + [292911] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13415), 1, - anon_sym_RBRACE, - [287748] = 2, + ACTIONS(7534), 1, + sym_identifier, + [292918] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14353), 1, - sym_identifier, - [287755] = 2, + anon_sym_SEMI, + [292925] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14355), 1, - sym_identifier, - [287762] = 2, + anon_sym_STAR, + [292932] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10582), 1, - anon_sym_LBRACE, - [287769] = 2, + ACTIONS(12400), 1, + anon_sym_SEMI, + [292939] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14357), 1, - sym_identifier, - [287776] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9053), 1, - anon_sym_SEMI, - [287783] = 2, + anon_sym_DQUOTE, + [292946] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14359), 1, - anon_sym_SEMI, - [287790] = 2, + sym_identifier, + [292953] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14361), 1, - sym_auto, - [287797] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10588), 1, - anon_sym_LBRACE, - [287804] = 2, - ACTIONS(3), 1, + anon_sym_RBRACE, + [292960] = 2, + ACTIONS(10057), 1, sym_comment, ACTIONS(14363), 1, - anon_sym_SEMI, - [287811] = 2, + aux_sym_preproc_include_token2, + [292967] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14365), 1, - anon_sym_DQUOTE, - [287818] = 2, + aux_sym_preproc_if_token2, + [292974] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14367), 1, - anon_sym_RPAREN, - [287825] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9067), 1, - anon_sym_RPAREN, - [287832] = 2, + anon_sym_SEMI, + [292981] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14369), 1, anon_sym_RPAREN, - [287839] = 2, - ACTIONS(3), 1, + [292988] = 2, + ACTIONS(10057), 1, sym_comment, ACTIONS(14371), 1, - sym_identifier, - [287846] = 2, + aux_sym_preproc_include_token2, + [292995] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14373), 1, - sym_identifier, - [287853] = 2, + ACTIONS(7033), 1, + anon_sym_SEMI, + [293002] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7558), 1, - sym_identifier, - [287860] = 2, + ACTIONS(14373), 1, + aux_sym_preproc_if_token2, + [293009] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14375), 1, - anon_sym_LBRACE, - [287867] = 2, + anon_sym_RPAREN, + [293016] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14377), 1, anon_sym_RPAREN, - [287874] = 2, + [293023] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14379), 1, - aux_sym_preproc_if_token2, - [287881] = 2, + sym_identifier, + [293030] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10678), 1, - anon_sym_LBRACE, - [287888] = 2, - ACTIONS(10118), 1, - sym_comment, ACTIONS(14381), 1, - aux_sym_preproc_include_token2, - [287895] = 2, + sym_identifier, + [293037] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12402), 1, + anon_sym_SEMI, + [293044] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14383), 1, - anon_sym_SLASH, - [287902] = 2, + aux_sym_preproc_if_token2, + [293051] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13601), 1, + anon_sym_PIPE, + [293058] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5519), 1, + anon_sym_COLON_COLON, + [293065] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14385), 1, - anon_sym_LPAREN2, - [287909] = 2, + anon_sym_DQUOTE, + [293072] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14387), 1, - anon_sym_LPAREN2, - [287916] = 2, + anon_sym_DQUOTE, + [293079] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14389), 1, - anon_sym_LPAREN2, - [287923] = 2, + ACTIONS(9225), 1, + anon_sym_RPAREN, + [293086] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14391), 1, - anon_sym_LPAREN2, - [287930] = 2, + ACTIONS(14389), 1, + anon_sym_RPAREN, + [293093] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13513), 1, - anon_sym_and, - [287937] = 2, + ACTIONS(14391), 1, + sym_identifier, + [293100] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14393), 1, - anon_sym_LPAREN2, - [287944] = 2, + sym_raw_string_content, + [293107] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14395), 1, - aux_sym_preproc_if_token2, - [287951] = 2, + anon_sym_RPAREN, + [293114] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7562), 1, + sym_identifier, + [293121] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14397), 1, - anon_sym_RPAREN, - [287958] = 2, + anon_sym_LPAREN2, + [293128] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14399), 1, - anon_sym_LPAREN2, - [287965] = 2, + anon_sym_SEMI, + [293135] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14401), 1, - anon_sym_SEMI, - [287972] = 2, + aux_sym_preproc_if_token2, + [293142] = 2, + ACTIONS(10057), 1, + sym_comment, + ACTIONS(10393), 1, + aux_sym_preproc_include_token2, + [293149] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14403), 1, aux_sym_preproc_if_token2, - [287979] = 2, + [293156] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14405), 1, - anon_sym_while, - [287986] = 2, + ACTIONS(9071), 1, + anon_sym_RPAREN, + [293163] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13513), 1, - anon_sym_bitor, - [287993] = 2, + ACTIONS(14405), 1, + anon_sym_RPAREN, + [293170] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14407), 1, - anon_sym_LPAREN2, - [288000] = 2, + anon_sym_RPAREN, + [293177] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13513), 1, - anon_sym_PERCENT, - [288007] = 2, + ACTIONS(14409), 1, + anon_sym_SEMI, + [293184] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14409), 1, - aux_sym_preproc_if_token2, - [288014] = 2, + ACTIONS(13601), 1, + anon_sym_STAR_EQ, + [293191] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10603), 1, + anon_sym_LBRACE, + [293198] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14411), 1, - aux_sym_preproc_if_token2, - [288021] = 2, + anon_sym_SEMI, + [293205] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14413), 1, - anon_sym_EQ, - [288028] = 2, + sym_identifier, + [293212] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14415), 1, - sym_raw_string_content, - [288035] = 2, + aux_sym_preproc_if_token2, + [293219] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14417), 1, - anon_sym_STAR, - [288042] = 2, + ACTIONS(9282), 1, + anon_sym_RPAREN, + [293226] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14419), 1, - aux_sym_preproc_if_token2, - [288049] = 2, + ACTIONS(8713), 1, + anon_sym_RBRACE, + [293233] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14421), 1, - anon_sym_RPAREN, - [288056] = 2, + ACTIONS(13601), 1, + anon_sym_CARET, + [293240] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12116), 1, + ACTIONS(14417), 1, anon_sym_SEMI, - [288063] = 2, + [293247] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14423), 1, - anon_sym_RPAREN, - [288070] = 2, + ACTIONS(14419), 1, + anon_sym_SEMI, + [293254] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14425), 1, - anon_sym_COMMA, - [288077] = 2, + ACTIONS(14421), 1, + anon_sym_STAR, + [293261] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9065), 1, + ACTIONS(14423), 1, anon_sym_SEMI, - [288084] = 2, + [293268] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9015), 1, + ACTIONS(14425), 1, anon_sym_SEMI, - [288091] = 2, + [293275] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13601), 1, + anon_sym_AMP, + [293282] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13601), 1, + anon_sym_SLASH_EQ, + [293289] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14427), 1, - anon_sym_RPAREN, - [288098] = 2, + aux_sym_preproc_if_token2, + [293296] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14429), 1, + ACTIONS(9037), 1, anon_sym_COLON, - [288105] = 2, + [293303] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14431), 1, + ACTIONS(14429), 1, anon_sym_SEMI, - [288112] = 2, + [293310] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14433), 1, + ACTIONS(14431), 1, anon_sym_SEMI, - [288119] = 2, + [293317] = 2, + ACTIONS(10057), 1, + sym_comment, + ACTIONS(14433), 1, + aux_sym_preproc_include_token2, + [293324] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14435), 1, - anon_sym_LPAREN2, - [288126] = 2, + anon_sym_RPAREN, + [293331] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14437), 1, - anon_sym_LPAREN2, - [288133] = 2, + anon_sym_SEMI, + [293338] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9223), 1, + anon_sym_RPAREN, + [293345] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14439), 1, - anon_sym_LPAREN2, - [288140] = 2, + sym_identifier, + [293352] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14441), 1, anon_sym_RPAREN, - [288147] = 2, + [293359] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14443), 1, - anon_sym_LPAREN2, - [288154] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11108), 1, - anon_sym_RBRACE, - [288161] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12915), 1, - anon_sym_LBRACE, - [288168] = 2, + anon_sym_DQUOTE, + [293366] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14445), 1, - anon_sym_while, - [288175] = 2, + anon_sym_SEMI, + [293373] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14447), 1, - sym_auto, - [288182] = 2, + aux_sym_preproc_if_token2, + [293380] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14449), 1, - anon_sym_LPAREN2, - [288189] = 2, - ACTIONS(10118), 1, + aux_sym_preproc_if_token2, + [293387] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(14451), 1, - aux_sym_preproc_include_token2, - [288196] = 2, + anon_sym_STAR, + [293394] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14453), 1, anon_sym_RPAREN, - [288203] = 2, + [293401] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14455), 1, - anon_sym_EQ, - [288210] = 2, + anon_sym_RPAREN, + [293408] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13505), 1, + anon_sym_RBRACE, + [293415] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14457), 1, - sym_raw_string_content, - [288217] = 2, + sym_identifier, + [293422] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14459), 1, - anon_sym_RPAREN, - [288224] = 2, + sym_identifier, + [293429] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13179), 1, + anon_sym_COLON_COLON, + [293436] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14461), 1, - anon_sym_COMMA, - [288231] = 2, + anon_sym_STAR, + [293443] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14463), 1, - anon_sym_RPAREN, - [288238] = 2, + anon_sym_DQUOTE, + [293450] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14465), 1, - anon_sym_RPAREN, - [288245] = 2, + anon_sym_SEMI, + [293457] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11122), 1, + anon_sym_RBRACE, + [293464] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14467), 1, + anon_sym_LPAREN2, + [293471] = 2, + ACTIONS(10057), 1, + sym_comment, + ACTIONS(14469), 1, + aux_sym_preproc_include_token2, + [293478] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7316), 1, anon_sym_RPAREN, - [288252] = 2, + [293485] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14469), 1, - anon_sym_COLON, - [288259] = 2, + ACTIONS(9055), 1, + anon_sym_SEMI, + [293492] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14471), 1, - sym_identifier, - [288266] = 2, + anon_sym_SEMI, + [293499] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14473), 1, - anon_sym_LPAREN2, - [288273] = 2, + anon_sym_RPAREN, + [293506] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14475), 1, - anon_sym_LPAREN2, - [288280] = 2, + anon_sym_RPAREN, + [293513] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14477), 1, - anon_sym_LPAREN2, - [288287] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13513), 1, - anon_sym_PIPE_PIPE, - [288294] = 2, + anon_sym_RPAREN, + [293520] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14479), 1, - anon_sym_LPAREN2, - [288301] = 2, + anon_sym_RPAREN, + [293527] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14481), 1, - sym_identifier, - [288308] = 2, + anon_sym_SEMI, + [293534] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14483), 1, - aux_sym_preproc_if_token2, - [288315] = 2, + anon_sym_SEMI, + [293541] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14485), 1, - anon_sym_while, - [288322] = 2, - ACTIONS(3), 1, + sym_raw_string_delimiter, + [293548] = 2, + ACTIONS(5472), 1, + aux_sym_preproc_include_token2, + ACTIONS(10057), 1, sym_comment, - ACTIONS(14487), 1, - anon_sym_LPAREN2, - [288329] = 2, + [293555] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14489), 1, + ACTIONS(14487), 1, anon_sym_RPAREN, - [288336] = 2, + [293562] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6481), 1, - sym_identifier, - [288343] = 2, + ACTIONS(14489), 1, + anon_sym_LPAREN2, + [293569] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14491), 1, - anon_sym_EQ, - [288350] = 2, + anon_sym_LPAREN2, + [293576] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14493), 1, - sym_raw_string_content, - [288357] = 2, + anon_sym_LPAREN2, + [293583] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14495), 1, - aux_sym_preproc_if_token2, - [288364] = 2, + anon_sym_LPAREN2, + [293590] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14497), 1, - anon_sym_COMMA, - [288371] = 2, + anon_sym_SEMI, + [293597] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14499), 1, - anon_sym_RPAREN, - [288378] = 2, + anon_sym_LPAREN2, + [293604] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14501), 1, - anon_sym_SEMI, - [288385] = 2, + anon_sym_RPAREN, + [293611] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14503), 1, anon_sym_RPAREN, - [288392] = 2, + [293618] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11550), 1, + anon_sym_SEMI, + [293625] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14505), 1, - anon_sym_COLON, - [288399] = 2, + anon_sym_DQUOTE, + [293632] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14507), 1, - anon_sym_SEMI, - [288406] = 2, + sym_identifier, + [293639] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14509), 1, - anon_sym_LPAREN2, - [288413] = 2, + anon_sym_while, + [293646] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14511), 1, - anon_sym_LPAREN2, - [288420] = 2, + ts_builtin_sym_end, + [293653] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14513), 1, anon_sym_LPAREN2, - [288427] = 2, + [293660] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14515), 1, sym_identifier, - [288434] = 2, + [293667] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14517), 1, - anon_sym_LPAREN2, - [288441] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13513), 1, - anon_sym_AMP_AMP, - [288448] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7524), 1, - sym_identifier, - [288455] = 2, + anon_sym_RBRACK, + [293674] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14519), 1, - anon_sym_LPAREN2, - [288462] = 2, + anon_sym_DQUOTE, + [293681] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14521), 1, - anon_sym_RPAREN, - [288469] = 2, + anon_sym_EQ, + [293688] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14523), 1, - anon_sym_SEMI, - [288476] = 2, + sym_raw_string_content, + [293695] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14525), 1, - anon_sym_EQ, - [288483] = 2, + anon_sym_STAR, + [293702] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14527), 1, - sym_raw_string_content, - [288490] = 2, + sym_identifier, + [293709] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14529), 1, - anon_sym_STAR, - [288497] = 2, + ACTIONS(13601), 1, + anon_sym_EQ_EQ, + [293716] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14531), 1, - anon_sym_COMMA, - [288504] = 2, + ACTIONS(14529), 1, + anon_sym_LBRACE, + [293723] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13513), 1, - anon_sym_SLASH_EQ, - [288511] = 2, + ACTIONS(14531), 1, + anon_sym_RPAREN, + [293730] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14533), 1, - anon_sym_SEMI, - [288518] = 2, + anon_sym_COMMA, + [293737] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14535), 1, - anon_sym_RPAREN, - [288525] = 2, + sym_identifier, + [293744] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14537), 1, - anon_sym_COLON, - [288532] = 2, + anon_sym_SEMI, + [293751] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14539), 1, - anon_sym_COLON, - [288539] = 2, + anon_sym_RPAREN, + [293758] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14541), 1, - anon_sym_LPAREN2, - [288546] = 2, - ACTIONS(3), 1, + anon_sym_COLON, + [293765] = 2, + ACTIONS(10057), 1, sym_comment, ACTIONS(14543), 1, - anon_sym_LPAREN2, - [288553] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5454), 1, - anon_sym_COLON_COLON, - [288560] = 2, + aux_sym_preproc_include_token2, + [293772] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14545), 1, - anon_sym_LPAREN2, - [288567] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14547), 1, sym_identifier, - [288574] = 2, + [293779] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13513), 1, - anon_sym_PIPE, - [288581] = 2, + ACTIONS(14547), 1, + anon_sym_LPAREN2, + [293786] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14549), 1, - anon_sym_RPAREN, - [288588] = 2, + anon_sym_LPAREN2, + [293793] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14551), 1, - anon_sym_RPAREN, - [288595] = 2, + anon_sym_LPAREN2, + [293800] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14553), 1, - anon_sym_EQ, - [288602] = 2, + anon_sym_RPAREN, + [293807] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14555), 1, - sym_raw_string_content, - [288609] = 2, + anon_sym_LPAREN2, + [293814] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8896), 1, - anon_sym_RPAREN, - [288616] = 2, + ACTIONS(11150), 1, + anon_sym_RBRACE, + [293821] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14557), 1, - anon_sym_RPAREN, - [288623] = 2, + anon_sym_SEMI, + [293828] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14559), 1, - anon_sym_SEMI, - [288630] = 2, + anon_sym_while, + [293835] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14561), 1, anon_sym_RPAREN, - [288637] = 2, + [293842] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14563), 1, - anon_sym_RBRACE, - [288644] = 2, + anon_sym_LPAREN2, + [293849] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14565), 1, - anon_sym_LPAREN2, - [288651] = 2, + anon_sym_RPAREN, + [293856] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14567), 1, - anon_sym_LPAREN2, - [288658] = 2, + anon_sym_RPAREN, + [293863] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14569), 1, - anon_sym_LPAREN2, - [288665] = 2, + anon_sym_EQ, + [293870] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14571), 1, - anon_sym_SEMI, - [288672] = 2, + sym_raw_string_content, + [293877] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13601), 1, + anon_sym_BANG_EQ, + [293884] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14573), 1, - sym_raw_string_content, - [288679] = 2, + anon_sym_COMMA, + [293891] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14575), 1, anon_sym_SEMI, - [288686] = 2, + [293898] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14577), 1, anon_sym_RPAREN, - [288693] = 2, + [293905] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14579), 1, anon_sym_RPAREN, - [288700] = 2, - ACTIONS(10118), 1, + [293912] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(14581), 1, - aux_sym_preproc_include_token2, - [288707] = 2, + anon_sym_COLON, + [293919] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13601), 1, + anon_sym_PERCENT_EQ, + [293926] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14583), 1, anon_sym_LPAREN2, - [288714] = 2, + [293933] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14585), 1, anon_sym_LPAREN2, - [288721] = 2, + [293940] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14587), 1, anon_sym_LPAREN2, - [288728] = 2, + [293947] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14589), 1, - anon_sym_SEMI, - [288735] = 2, + sym_identifier, + [293954] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14591), 1, - sym_raw_string_content, - [288742] = 2, + anon_sym_LPAREN2, + [293961] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14593), 1, anon_sym_RPAREN, - [288749] = 2, + [293968] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14595), 1, - anon_sym_RPAREN, - [288756] = 2, + anon_sym_SEMI, + [293975] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14597), 1, - anon_sym_LPAREN2, - [288763] = 2, + anon_sym_while, + [293982] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14599), 1, anon_sym_LPAREN2, - [288770] = 2, + [293989] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14601), 1, - anon_sym_LPAREN2, - [288777] = 2, + anon_sym_RPAREN, + [293996] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14603), 1, - sym_raw_string_content, - [288784] = 2, + anon_sym_LPAREN2, + [294003] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14605), 1, - anon_sym_RPAREN, - [288791] = 2, + anon_sym_EQ, + [294010] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14607), 1, - anon_sym_LPAREN2, - [288798] = 2, + sym_raw_string_content, + [294017] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14609), 1, - sym_raw_string_content, - [288805] = 2, + anon_sym_SEMI, + [294024] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14611), 1, - anon_sym_RPAREN, - [288812] = 2, + anon_sym_COMMA, + [294031] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14613), 1, - anon_sym_LPAREN2, - [288819] = 2, + anon_sym_RPAREN, + [294038] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14615), 1, - sym_raw_string_content, - [288826] = 2, + anon_sym_LPAREN2, + [294045] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14617), 1, anon_sym_RPAREN, - [288833] = 2, + [294052] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14619), 1, - sym_raw_string_content, - [288840] = 2, + anon_sym_COLON, + [294059] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13601), 1, + anon_sym_PLUS_EQ, + [294066] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14621), 1, - anon_sym_RPAREN, - [288847] = 2, + anon_sym_LPAREN2, + [294073] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14623), 1, - sym_raw_string_content, - [288854] = 2, + anon_sym_LPAREN2, + [294080] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14625), 1, - anon_sym_RPAREN, - [288861] = 2, + anon_sym_LPAREN2, + [294087] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14627), 1, - sym_raw_string_content, - [288868] = 2, + anon_sym_RPAREN, + [294094] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14629), 1, - anon_sym_RPAREN, - [288875] = 2, + anon_sym_LPAREN2, + [294101] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14631), 1, - sym_raw_string_content, - [288882] = 2, + anon_sym_DQUOTE, + [294108] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14633), 1, - anon_sym_RPAREN, - [288889] = 2, + anon_sym_SEMI, + [294115] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14635), 1, - sym_raw_string_content, - [288896] = 2, + anon_sym_LPAREN2, + [294122] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14637), 1, - anon_sym_RPAREN, - [288903] = 2, + anon_sym_LPAREN2, + [294129] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14639), 1, - anon_sym_RPAREN, - [288910] = 2, + anon_sym_SEMI, + [294136] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14641), 1, - sym_identifier, - [288917] = 2, + anon_sym_EQ, + [294143] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14643), 1, - anon_sym_LPAREN2, - [288924] = 2, + sym_raw_string_content, + [294150] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14645), 1, - anon_sym_LPAREN2, - [288931] = 2, + anon_sym_RPAREN, + [294157] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14647), 1, - sym_identifier, - [288938] = 2, + anon_sym_COMMA, + [294164] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14649), 1, - anon_sym_SEMI, - [288945] = 2, + anon_sym_RPAREN, + [294171] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14651), 1, - anon_sym_RBRACK, - [288952] = 2, + anon_sym_SEMI, + [294178] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13513), 1, - anon_sym_COMMA, - [288959] = 2, + ACTIONS(14653), 1, + anon_sym_RPAREN, + [294185] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9043), 1, + ACTIONS(14655), 1, + anon_sym_COLON, + [294192] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14657), 1, anon_sym_SEMI, - [288966] = 2, - ACTIONS(10118), 1, + [294199] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(14653), 1, - aux_sym_preproc_include_token2, - [288973] = 2, + ACTIONS(14659), 1, + anon_sym_LPAREN2, + [294206] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14655), 1, - sym_identifier, - [288980] = 2, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + [294213] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13513), 1, - anon_sym_xor, - [288987] = 2, + ACTIONS(13601), 1, + anon_sym_GT, + [294220] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14657), 1, + ACTIONS(14663), 1, + anon_sym_LPAREN2, + [294227] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14665), 1, + anon_sym_EQ, + [294234] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14667), 1, aux_sym_preproc_if_token2, - [288994] = 2, + [294241] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13419), 1, - anon_sym_RBRACE, - [289001] = 2, + ACTIONS(14669), 1, + anon_sym_LPAREN2, + [294248] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14659), 1, - anon_sym_STAR, - [289008] = 2, + ACTIONS(14671), 1, + anon_sym_RPAREN, + [294255] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11616), 1, - anon_sym_COMMA, - [289015] = 2, + ACTIONS(14673), 1, + anon_sym_EQ, + [294262] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14661), 1, - sym_identifier, - [289022] = 2, + ACTIONS(14675), 1, + sym_raw_string_content, + [294269] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9217), 1, + ACTIONS(14677), 1, anon_sym_RPAREN, - [289029] = 2, + [294276] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14663), 1, + ACTIONS(12234), 1, + anon_sym_SEMI, + [294283] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14679), 1, + aux_sym_preproc_if_token2, + [294290] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14681), 1, anon_sym_RPAREN, - [289036] = 2, + [294297] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9051), 1, + ACTIONS(14683), 1, anon_sym_SEMI, - [289043] = 2, + [294304] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14665), 1, - sym_identifier, - [289050] = 2, + ACTIONS(14685), 1, + anon_sym_LPAREN2, + [294311] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14667), 1, + ACTIONS(14687), 1, + anon_sym_LPAREN2, + [294318] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14689), 1, + anon_sym_LPAREN2, + [294325] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14691), 1, + anon_sym_SEMI, + [294332] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14693), 1, sym_raw_string_content, - [289057] = 2, + [294339] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14669), 1, - anon_sym_DQUOTE, - [289064] = 2, + ACTIONS(14695), 1, + anon_sym_RPAREN, + [294346] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14671), 1, + ACTIONS(14697), 1, sym_identifier, - [289071] = 2, + [294353] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11063), 1, - anon_sym_RBRACE, - [289078] = 2, - ACTIONS(10118), 1, - sym_comment, - ACTIONS(14673), 1, - aux_sym_preproc_include_token2, - [289085] = 2, + ACTIONS(14699), 1, + anon_sym_RPAREN, + [294360] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11569), 1, + ACTIONS(14701), 1, anon_sym_SEMI, - [289092] = 2, + [294367] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14675), 1, + ACTIONS(14703), 1, anon_sym_LPAREN2, - [289099] = 2, + [294374] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14677), 1, + ACTIONS(14705), 1, anon_sym_LPAREN2, - [289106] = 2, + [294381] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14679), 1, - aux_sym_preproc_if_token2, - [289113] = 2, + ACTIONS(14707), 1, + anon_sym_LPAREN2, + [294388] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14681), 1, - anon_sym_RBRACE, - [289120] = 2, + ACTIONS(14709), 1, + sym_auto, + [294395] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14683), 1, - anon_sym_STAR, - [289127] = 2, + ACTIONS(14711), 1, + sym_raw_string_content, + [294402] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13513), 1, - anon_sym_CARET, - [289134] = 2, + ACTIONS(14713), 1, + anon_sym_RPAREN, + [294409] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14685), 1, + ACTIONS(14715), 1, anon_sym_RPAREN, - [289141] = 2, + [294416] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14687), 1, - anon_sym_DOT_DOT_DOT, - [289148] = 2, + ACTIONS(14717), 1, + anon_sym_LPAREN2, + [294423] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14690), 1, - anon_sym_RPAREN, - [289155] = 2, + ACTIONS(14719), 1, + anon_sym_LPAREN2, + [294430] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14692), 1, - sym_identifier, - [289162] = 2, + ACTIONS(14721), 1, + anon_sym_LPAREN2, + [294437] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14694), 1, - aux_sym_preproc_if_token2, - [289169] = 2, + ACTIONS(14723), 1, + sym_raw_string_content, + [294444] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14696), 1, - sym_identifier, - [289176] = 2, + ACTIONS(14725), 1, + anon_sym_RPAREN, + [294451] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13513), 1, - anon_sym_AMP, - [289183] = 2, + ACTIONS(14727), 1, + anon_sym_LPAREN2, + [294458] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14698), 1, - anon_sym_RPAREN, - [289190] = 2, + ACTIONS(14729), 1, + sym_raw_string_content, + [294465] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14700), 1, + ACTIONS(14731), 1, anon_sym_RPAREN, - [289197] = 2, + [294472] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14702), 1, - sym_identifier, - [289204] = 2, + ACTIONS(14733), 1, + anon_sym_LPAREN2, + [294479] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14704), 1, - anon_sym_DOT_DOT_DOT, - [289211] = 2, + ACTIONS(14735), 1, + sym_raw_string_content, + [294486] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14706), 1, - anon_sym_SEMI, - [289218] = 2, + ACTIONS(14737), 1, + anon_sym_RPAREN, + [294493] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8898), 1, - anon_sym_SEMI, - [289225] = 2, + ACTIONS(14739), 1, + sym_raw_string_content, + [294500] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14741), 1, + anon_sym_RPAREN, + [294507] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14743), 1, + sym_raw_string_content, + [294514] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14708), 1, + ACTIONS(14745), 1, anon_sym_RPAREN, - [289232] = 2, + [294521] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14710), 1, + ACTIONS(14747), 1, + sym_raw_string_content, + [294528] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14749), 1, anon_sym_RPAREN, - [289239] = 2, + [294535] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14751), 1, + sym_raw_string_content, + [294542] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14712), 1, + ACTIONS(14753), 1, anon_sym_RPAREN, - [289246] = 2, + [294549] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14755), 1, + sym_raw_string_content, + [294556] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14714), 1, + ACTIONS(14757), 1, anon_sym_RPAREN, - [289253] = 2, + [294563] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12352), 1, + ACTIONS(14759), 1, anon_sym_SEMI, - [289260] = 2, + [294570] = 2, + ACTIONS(10057), 1, + sym_comment, + ACTIONS(14761), 1, + aux_sym_preproc_include_token2, + [294577] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14716), 1, - sym_auto, - [289267] = 2, + ACTIONS(14763), 1, + anon_sym_LPAREN2, + [294584] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14718), 1, - anon_sym_RPAREN, - [289274] = 2, + ACTIONS(14765), 1, + anon_sym_LPAREN2, + [294591] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9057), 1, - anon_sym_COLON, - [289281] = 2, + ACTIONS(14767), 1, + sym_identifier, + [294598] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9063), 1, - anon_sym_COLON, - [289288] = 2, + ACTIONS(14769), 1, + anon_sym_LPAREN2, + [294605] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11535), 1, - anon_sym_SEMI, - [289295] = 2, + ACTIONS(14771), 1, + sym_identifier, + [294612] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14720), 1, + ACTIONS(14773), 1, anon_sym_SEMI, - [289302] = 2, + [294619] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14722), 1, + ACTIONS(14775), 1, anon_sym_SEMI, - [289309] = 2, + [294626] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13601), 1, + anon_sym_AMP_EQ, + [294633] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14724), 1, + ACTIONS(14777), 1, anon_sym_RPAREN, - [289316] = 2, + [294640] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14726), 1, - anon_sym_SEMI, - [289323] = 2, + ACTIONS(14779), 1, + aux_sym_preproc_if_token2, + [294647] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8693), 1, - anon_sym_SEMI, - [289330] = 2, + ACTIONS(14781), 1, + anon_sym_DQUOTE, + [294654] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14728), 1, - anon_sym_STAR, - [289337] = 2, + ACTIONS(14783), 1, + sym_raw_string_delimiter, + [294661] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14730), 1, + ACTIONS(14785), 1, aux_sym_preproc_if_token2, - [289344] = 2, + [294668] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14787), 1, + anon_sym_DQUOTE, + [294675] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14789), 1, + anon_sym_RPAREN, + [294682] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14791), 1, + anon_sym_RPAREN, + [294689] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9131), 1, + anon_sym_RPAREN, + [294696] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14793), 1, + anon_sym_LPAREN2, + [294703] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14732), 1, + ACTIONS(14795), 1, sym_identifier, - [289351] = 2, + [294710] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13513), 1, - anon_sym_EQ_EQ, - [289358] = 2, + ACTIONS(14797), 1, + sym_raw_string_content, + [294717] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14734), 1, + ACTIONS(14799), 1, anon_sym_SEMI, - [289365] = 2, + [294724] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13513), 1, - anon_sym_BANG_EQ, - [289372] = 2, + ACTIONS(12321), 1, + anon_sym_SEMI, + [294731] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9097), 1, + ACTIONS(12277), 1, + anon_sym_SEMI, + [294738] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14801), 1, anon_sym_RPAREN, - [289379] = 2, + [294745] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8795), 1, - anon_sym_RBRACE, - [289386] = 2, + ACTIONS(14803), 1, + anon_sym_RPAREN, + [294752] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14736), 1, - aux_sym_preproc_if_token2, - [289393] = 2, + ACTIONS(14805), 1, + anon_sym_RPAREN, + [294759] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14738), 1, - sym_auto, - [289400] = 2, + ACTIONS(12446), 1, + anon_sym_SEMI, + [294766] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14807), 1, + sym_identifier, + [294773] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14809), 1, + anon_sym_RPAREN, + [294780] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14811), 1, + anon_sym_SEMI, + [294787] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14740), 1, + ACTIONS(14813), 1, anon_sym_DQUOTE, - [289407] = 2, + [294794] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11116), 1, - anon_sym_RBRACE, - [289414] = 2, + ACTIONS(14815), 1, + aux_sym_preproc_if_token2, + [294801] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13513), 1, - anon_sym_GT, - [289421] = 2, - ACTIONS(10118), 1, + ACTIONS(14817), 1, + aux_sym_preproc_if_token2, + [294808] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(14742), 1, - aux_sym_preproc_include_token2, - [289428] = 2, + ACTIONS(14819), 1, + anon_sym_LPAREN2, + [294815] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14744), 1, - sym_identifier, - [289435] = 2, + ACTIONS(14821), 1, + anon_sym_LPAREN2, + [294822] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14746), 1, - anon_sym_RPAREN, - [289442] = 2, + ACTIONS(14823), 1, + anon_sym_LPAREN2, + [294829] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14748), 1, - anon_sym_SEMI, - [289449] = 2, + ACTIONS(9199), 1, + anon_sym_RPAREN, + [294836] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11688), 1, + ACTIONS(14825), 1, anon_sym_LBRACE, - [289456] = 2, + [294843] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13437), 1, + ACTIONS(14827), 1, + anon_sym_RPAREN, + [294850] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4676), 1, + anon_sym_DOT_DOT_DOT, + [294857] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14829), 1, + sym_raw_string_content, + [294864] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14831), 1, + aux_sym_preproc_if_token2, + [294871] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11102), 1, anon_sym_RBRACE, - [289463] = 2, + [294878] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14750), 1, - anon_sym_LPAREN2, - [289470] = 2, + ACTIONS(11608), 1, + anon_sym_SEMI, + [294885] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14833), 1, + anon_sym_RPAREN, + [294892] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14752), 1, + ACTIONS(12027), 1, anon_sym_SEMI, - [289477] = 2, + [294899] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14754), 1, - anon_sym_COLON, - [289484] = 2, + ACTIONS(4618), 1, + anon_sym_DOT_DOT_DOT, + [294906] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9061), 1, - anon_sym_COLON, - [289491] = 2, + ACTIONS(14835), 1, + anon_sym_EQ, + [294913] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4626), 1, + anon_sym_DOT_DOT_DOT, + [294920] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14756), 1, + ACTIONS(14837), 1, anon_sym_RPAREN, - [289498] = 2, + [294927] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4629), 1, + anon_sym_DOT_DOT_DOT, + [294934] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14758), 1, + ACTIONS(9075), 1, + anon_sym_COLON, + [294941] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4634), 1, + anon_sym_DOT_DOT_DOT, + [294948] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4615), 1, + anon_sym_DOT_DOT_DOT, + [294955] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4623), 1, + anon_sym_DOT_DOT_DOT, + [294962] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13601), 1, + anon_sym_CARET_EQ, + [294969] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4609), 1, + anon_sym_DOT_DOT_DOT, + [294976] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14839), 1, anon_sym_SEMI, - [289505] = 2, + [294983] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14760), 1, - anon_sym_LPAREN2, - [289512] = 2, + ACTIONS(4640), 1, + anon_sym_DOT_DOT_DOT, + [294990] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14762), 1, - anon_sym_LPAREN2, - [289519] = 2, + ACTIONS(4643), 1, + anon_sym_DOT_DOT_DOT, + [294997] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14764), 1, - sym_identifier, - [289526] = 2, + ACTIONS(4612), 1, + anon_sym_DOT_DOT_DOT, + [295004] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4637), 1, + anon_sym_DOT_DOT_DOT, + [295011] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14766), 1, + ACTIONS(9207), 1, anon_sym_RPAREN, - [289533] = 2, + [295018] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9073), 1, + ACTIONS(14841), 1, anon_sym_RPAREN, - [289540] = 2, + [295025] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14768), 1, - anon_sym_DQUOTE, - [289547] = 2, + ACTIONS(14843), 1, + sym_identifier, + [295032] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12168), 1, - anon_sym_SEMI, - [289554] = 2, + ACTIONS(14845), 1, + anon_sym_STAR, + [295039] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13601), 1, + anon_sym_PIPE_EQ, + [295046] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14847), 1, + aux_sym_preproc_if_token2, + [295053] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14770), 1, + ACTIONS(14849), 1, sym_identifier, - [289561] = 2, + [295060] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14772), 1, - sym_raw_string_content, - [289568] = 2, + ACTIONS(14851), 1, + anon_sym_RPAREN, + [295067] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14774), 1, + ACTIONS(14853), 1, sym_identifier, - [289575] = 2, + [295074] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13513), 1, - anon_sym_PERCENT_EQ, - [289582] = 2, + ACTIONS(9294), 1, + anon_sym_RPAREN, + [295081] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14855), 1, + sym_identifier, + [295088] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14857), 1, + anon_sym_SEMI, + [295095] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8790), 1, + anon_sym_RBRACE, + [295102] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13601), 1, + anon_sym_LT_EQ, + [295109] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14776), 1, + ACTIONS(14859), 1, anon_sym_RPAREN, - [289589] = 2, + [295116] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14778), 1, + ACTIONS(14861), 1, + anon_sym_RPAREN, + [295123] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14863), 1, + anon_sym_STAR, + [295130] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13533), 1, + anon_sym_RBRACE, + [295137] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14865), 1, sym_identifier, - [289596] = 2, + [295144] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9087), 1, + anon_sym_COLON, + [295151] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11154), 1, + anon_sym_RBRACE, + [295158] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9185), 1, + anon_sym_RPAREN, + [295165] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14780), 1, + ACTIONS(14867), 1, anon_sym_LPAREN2, - [289603] = 2, + [295172] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14782), 1, + ACTIONS(14869), 1, anon_sym_LPAREN2, - [289610] = 2, + [295179] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14784), 1, + ACTIONS(14871), 1, sym_identifier, - [289617] = 2, + [295186] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13601), 1, + anon_sym_LT, + [295193] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14786), 1, + ACTIONS(8886), 1, + anon_sym_RBRACE, + [295200] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14873), 1, anon_sym_SEMI, - [289624] = 2, + [295207] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14788), 1, + ACTIONS(14875), 1, aux_sym_preproc_if_token2, - [289631] = 2, + [295214] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14790), 1, + ACTIONS(14877), 1, sym_identifier, - [289638] = 2, + [295221] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14792), 1, + ACTIONS(14879), 1, sym_raw_string_content, - [289645] = 2, + [295228] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14794), 1, - aux_sym_preproc_if_token2, - [289652] = 2, + ACTIONS(14881), 1, + sym_auto, + [295235] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14796), 1, - anon_sym_RPAREN, - [289659] = 2, + ACTIONS(14883), 1, + sym_identifier, + [295242] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14798), 1, + ACTIONS(9061), 1, + anon_sym_COLON, + [295249] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14885), 1, anon_sym_RPAREN, - [289666] = 2, + [295256] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14800), 1, + ACTIONS(14887), 1, anon_sym_LPAREN2, - [289673] = 2, + [295263] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14802), 1, + ACTIONS(14889), 1, + anon_sym_LPAREN2, + [295270] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14891), 1, sym_identifier, - [289680] = 2, + [295277] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13251), 1, - anon_sym_COMMA, - [289687] = 2, + ACTIONS(11132), 1, + anon_sym_RBRACE, + [295284] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14804), 1, - anon_sym_RPAREN, - [289694] = 2, + ACTIONS(14893), 1, + anon_sym_SEMI, + [295291] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14806), 1, + ACTIONS(14895), 1, sym_identifier, - [289701] = 2, + [295298] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14808), 1, + ACTIONS(14897), 1, sym_raw_string_content, - [289708] = 2, + [295305] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14810), 1, - anon_sym_RPAREN, - [289715] = 2, + ACTIONS(4785), 1, + anon_sym_SEMI, + [295312] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13513), 1, - anon_sym_PLUS_EQ, - [289722] = 2, + ACTIONS(14899), 1, + anon_sym_RBRACE, + [295319] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14901), 1, + anon_sym_SEMI, + [295326] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14812), 1, + ACTIONS(14903), 1, anon_sym_LPAREN2, - [289729] = 2, + [295333] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14814), 1, + ACTIONS(14905), 1, sym_identifier, - [289736] = 2, + [295340] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14816), 1, - anon_sym_SEMI, - [289743] = 2, + ACTIONS(11114), 1, + anon_sym_RBRACE, + [295347] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14818), 1, - aux_sym_preproc_if_token2, - [289750] = 2, + ACTIONS(14907), 1, + anon_sym_COLON, + [295354] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14820), 1, + ACTIONS(14909), 1, sym_identifier, - [289757] = 2, + [295361] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14822), 1, + ACTIONS(14911), 1, sym_raw_string_content, - [289764] = 2, + [295368] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7832), 1, - sym_identifier, - [289771] = 2, + ACTIONS(14913), 1, + anon_sym_DOT_DOT_DOT, + [295375] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14916), 1, + sym_auto, + [295382] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14824), 1, + ACTIONS(14918), 1, anon_sym_LPAREN2, - [289778] = 2, + [295389] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14826), 1, + ACTIONS(14920), 1, sym_identifier, - [289785] = 2, + [295396] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14828), 1, - sym_identifier, - [289792] = 2, + ACTIONS(14922), 1, + anon_sym_RPAREN, + [295403] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14924), 1, + anon_sym_SEMI, + [295410] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14830), 1, + ACTIONS(14926), 1, sym_identifier, - [289799] = 2, + [295417] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14832), 1, + ACTIONS(14928), 1, sym_raw_string_content, - [289806] = 2, + [295424] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14834), 1, - anon_sym_SEMI, - [289813] = 2, + ACTIONS(14930), 1, + sym_identifier, + [295431] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14932), 1, + anon_sym_LPAREN2, + [295438] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14934), 1, + sym_identifier, + [295445] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14936), 1, + anon_sym_DOT_DOT_DOT, + [295452] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14836), 1, + ACTIONS(14938), 1, sym_identifier, - [289820] = 2, + [295459] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14838), 1, + ACTIONS(14940), 1, sym_raw_string_content, - [289827] = 2, + [295466] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14840), 1, + ACTIONS(14942), 1, anon_sym_SEMI, - [289834] = 2, + [295473] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14842), 1, + ACTIONS(14944), 1, + sym_identifier, + [295480] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14946), 1, sym_raw_string_content, - [289841] = 2, + [295487] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14844), 1, - anon_sym_DQUOTE, - [289848] = 2, + ACTIONS(9051), 1, + anon_sym_COLON, + [295494] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14846), 1, + ACTIONS(14948), 1, sym_raw_string_content, - [289855] = 2, + [295501] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14848), 1, - anon_sym_SEMI, - [289862] = 2, + ACTIONS(11540), 1, + anon_sym_LBRACE, + [295508] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14850), 1, + ACTIONS(14950), 1, sym_raw_string_content, - [289869] = 2, + [295515] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14852), 1, - anon_sym_RPAREN, - [289876] = 2, + ACTIONS(8999), 1, + anon_sym_COLON, + [295522] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14854), 1, + ACTIONS(14952), 1, sym_raw_string_content, - [289883] = 2, + [295529] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14856), 1, - anon_sym_RPAREN, - [289890] = 2, + ACTIONS(14954), 1, + anon_sym_SEMI, + [295536] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14858), 1, + ACTIONS(14956), 1, sym_raw_string_content, - [289897] = 2, + [295543] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14860), 1, - sym_identifier, - [289904] = 2, + ACTIONS(7011), 1, + anon_sym_SEMI, + [295550] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14862), 1, + ACTIONS(14958), 1, sym_raw_string_content, - [289911] = 2, + [295557] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14864), 1, - anon_sym_DQUOTE, - [289918] = 2, + ACTIONS(14960), 1, + anon_sym_LBRACE, + [295564] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14866), 1, + ACTIONS(14962), 1, sym_raw_string_content, - [289925] = 2, + [295571] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14868), 1, - anon_sym_RPAREN, - [289932] = 2, + ACTIONS(13357), 1, + anon_sym_RBRACE, + [295578] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14870), 1, + ACTIONS(14964), 1, sym_raw_string_content, - [289939] = 2, + [295585] = 2, + ACTIONS(10057), 1, + sym_comment, + ACTIONS(12868), 1, + aux_sym_preproc_include_token2, + [295592] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13513), 1, - anon_sym_bitand, - [289946] = 2, + ACTIONS(14966), 1, + sym_raw_string_content, + [295599] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13601), 1, + anon_sym_DASH_EQ, + [295606] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14872), 1, + ACTIONS(14968), 1, sym_raw_string_content, - [289953] = 2, + [295613] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14874), 1, + ACTIONS(14970), 1, anon_sym_LPAREN2, - [289960] = 2, + [295620] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14876), 1, + ACTIONS(14972), 1, anon_sym_LPAREN2, - [289967] = 2, + [295627] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14878), 1, - sym_auto, - [289974] = 2, + ACTIONS(14974), 1, + aux_sym_preproc_if_token2, + [295634] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14880), 1, + ACTIONS(14976), 1, anon_sym_LPAREN2, - [289981] = 2, + [295641] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14882), 1, + ACTIONS(14978), 1, anon_sym_LPAREN2, - [289988] = 2, + [295648] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14884), 1, - anon_sym_SEMI, - [289995] = 2, + ACTIONS(8979), 1, + anon_sym_COLON, + [295655] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14886), 1, + ACTIONS(14980), 1, anon_sym_LPAREN2, - [290002] = 2, + [295662] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14888), 1, + ACTIONS(14982), 1, anon_sym_LPAREN2, - [290009] = 2, + [295669] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14890), 1, - anon_sym_RPAREN, - [290016] = 2, + ACTIONS(14984), 1, + anon_sym_while, + [295676] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14892), 1, + ACTIONS(14986), 1, anon_sym_LPAREN2, - [290023] = 2, + [295683] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14894), 1, + ACTIONS(14988), 1, anon_sym_LPAREN2, - [290030] = 2, + [295690] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13513), 1, - anon_sym_DASH_EQ, - [290037] = 2, + ACTIONS(14990), 1, + anon_sym_SEMI, + [295697] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14896), 1, + ACTIONS(14992), 1, anon_sym_LPAREN2, - [290044] = 2, + [295704] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14898), 1, + ACTIONS(14994), 1, anon_sym_LPAREN2, - [290051] = 2, + [295711] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14900), 1, - anon_sym_DQUOTE, - [290058] = 2, + ACTIONS(14996), 1, + sym_identifier, + [295718] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14902), 1, + ACTIONS(14998), 1, anon_sym_LPAREN2, - [290065] = 2, + [295725] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14904), 1, + ACTIONS(15000), 1, anon_sym_LPAREN2, - [290072] = 2, + [295732] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14906), 1, + ACTIONS(15002), 1, anon_sym_LPAREN2, - [290079] = 2, + [295739] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14908), 1, + ACTIONS(15004), 1, anon_sym_LPAREN2, - [290086] = 2, + [295746] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14910), 1, + ACTIONS(15006), 1, anon_sym_LPAREN2, - [290093] = 2, + [295753] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14912), 1, + ACTIONS(15008), 1, anon_sym_LPAREN2, - [290100] = 2, + [295760] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14914), 1, + ACTIONS(15010), 1, anon_sym_LPAREN2, - [290107] = 2, + [295767] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14916), 1, + ACTIONS(15012), 1, anon_sym_LPAREN2, - [290114] = 2, + [295774] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14918), 1, + ACTIONS(15014), 1, anon_sym_LPAREN2, - [290121] = 2, + [295781] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14920), 1, + ACTIONS(15016), 1, anon_sym_LPAREN2, - [290128] = 2, + [295788] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14922), 1, + ACTIONS(15018), 1, anon_sym_LPAREN2, - [290135] = 2, + [295795] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12195), 1, - anon_sym_SEMI, - [290142] = 2, + ACTIONS(15020), 1, + anon_sym_DQUOTE, + [295802] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14924), 1, - anon_sym_RBRACE, - [290149] = 2, - ACTIONS(3), 1, + ACTIONS(15022), 1, + anon_sym_RPAREN, + [295809] = 2, + ACTIONS(10057), 1, sym_comment, - ACTIONS(14926), 1, - anon_sym_LPAREN2, - [290156] = 2, + ACTIONS(15024), 1, + aux_sym_preproc_include_token2, + [295816] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14928), 1, - aux_sym_preproc_if_token2, - [290163] = 2, + ACTIONS(12025), 1, + anon_sym_SEMI, + [295823] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8997), 1, - anon_sym_SEMI, - [290170] = 2, + ACTIONS(15026), 1, + anon_sym_RPAREN, + [295830] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14930), 1, + ACTIONS(15028), 1, anon_sym_LPAREN2, - [290177] = 2, + [295837] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14932), 1, + ACTIONS(15030), 1, anon_sym_LPAREN2, - [290184] = 2, + [295844] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14934), 1, + ACTIONS(15032), 1, anon_sym_LPAREN2, - [290191] = 2, + [295851] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14936), 1, + ACTIONS(15034), 1, anon_sym_LPAREN2, - [290198] = 2, + [295858] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14938), 1, + ACTIONS(15036), 1, anon_sym_LPAREN2, - [290205] = 2, + [295865] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14940), 1, - aux_sym_preproc_if_token2, + ACTIONS(15038), 1, + anon_sym_SEMI, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(2365)] = 0, - [SMALL_STATE(2366)] = 71, - [SMALL_STATE(2367)] = 142, - [SMALL_STATE(2368)] = 213, - [SMALL_STATE(2369)] = 284, - [SMALL_STATE(2370)] = 361, - [SMALL_STATE(2371)] = 440, - [SMALL_STATE(2372)] = 511, - [SMALL_STATE(2373)] = 590, - [SMALL_STATE(2374)] = 661, - [SMALL_STATE(2375)] = 732, - [SMALL_STATE(2376)] = 811, - [SMALL_STATE(2377)] = 890, - [SMALL_STATE(2378)] = 973, - [SMALL_STATE(2379)] = 1044, - [SMALL_STATE(2380)] = 1129, - [SMALL_STATE(2381)] = 1214, - [SMALL_STATE(2382)] = 1297, - [SMALL_STATE(2383)] = 1368, - [SMALL_STATE(2384)] = 1445, - [SMALL_STATE(2385)] = 1530, - [SMALL_STATE(2386)] = 1625, - [SMALL_STATE(2387)] = 1696, - [SMALL_STATE(2388)] = 1771, - [SMALL_STATE(2389)] = 1856, - [SMALL_STATE(2390)] = 1927, - [SMALL_STATE(2391)] = 1998, - [SMALL_STATE(2392)] = 2069, - [SMALL_STATE(2393)] = 2140, - [SMALL_STATE(2394)] = 2217, - [SMALL_STATE(2395)] = 2312, - [SMALL_STATE(2396)] = 2385, - [SMALL_STATE(2397)] = 2456, - [SMALL_STATE(2398)] = 2527, - [SMALL_STATE(2399)] = 2612, - [SMALL_STATE(2400)] = 2701, - [SMALL_STATE(2401)] = 2772, - [SMALL_STATE(2402)] = 2843, - [SMALL_STATE(2403)] = 2914, - [SMALL_STATE(2404)] = 2985, - [SMALL_STATE(2405)] = 3056, - [SMALL_STATE(2406)] = 3127, - [SMALL_STATE(2407)] = 3200, - [SMALL_STATE(2408)] = 3275, - [SMALL_STATE(2409)] = 3345, - [SMALL_STATE(2410)] = 3415, - [SMALL_STATE(2411)] = 3485, - [SMALL_STATE(2412)] = 3555, - [SMALL_STATE(2413)] = 3625, - [SMALL_STATE(2414)] = 3695, - [SMALL_STATE(2415)] = 3765, - [SMALL_STATE(2416)] = 3835, - [SMALL_STATE(2417)] = 3905, - [SMALL_STATE(2418)] = 3975, - [SMALL_STATE(2419)] = 4045, - [SMALL_STATE(2420)] = 4115, - [SMALL_STATE(2421)] = 4185, - [SMALL_STATE(2422)] = 4255, - [SMALL_STATE(2423)] = 4325, - [SMALL_STATE(2424)] = 4395, - [SMALL_STATE(2425)] = 4465, - [SMALL_STATE(2426)] = 4535, - [SMALL_STATE(2427)] = 4605, - [SMALL_STATE(2428)] = 4675, - [SMALL_STATE(2429)] = 4745, - [SMALL_STATE(2430)] = 4815, - [SMALL_STATE(2431)] = 4885, - [SMALL_STATE(2432)] = 4955, - [SMALL_STATE(2433)] = 5025, - [SMALL_STATE(2434)] = 5095, - [SMALL_STATE(2435)] = 5181, - [SMALL_STATE(2436)] = 5251, - [SMALL_STATE(2437)] = 5321, - [SMALL_STATE(2438)] = 5391, - [SMALL_STATE(2439)] = 5469, - [SMALL_STATE(2440)] = 5539, - [SMALL_STATE(2441)] = 5609, - [SMALL_STATE(2442)] = 5679, - [SMALL_STATE(2443)] = 5749, - [SMALL_STATE(2444)] = 5819, - [SMALL_STATE(2445)] = 5889, - [SMALL_STATE(2446)] = 5959, - [SMALL_STATE(2447)] = 6029, - [SMALL_STATE(2448)] = 6099, - [SMALL_STATE(2449)] = 6169, - [SMALL_STATE(2450)] = 6239, - [SMALL_STATE(2451)] = 6309, - [SMALL_STATE(2452)] = 6379, - [SMALL_STATE(2453)] = 6449, - [SMALL_STATE(2454)] = 6519, - [SMALL_STATE(2455)] = 6589, - [SMALL_STATE(2456)] = 6659, - [SMALL_STATE(2457)] = 6729, - [SMALL_STATE(2458)] = 6799, - [SMALL_STATE(2459)] = 6869, - [SMALL_STATE(2460)] = 6943, - [SMALL_STATE(2461)] = 7013, - [SMALL_STATE(2462)] = 7083, - [SMALL_STATE(2463)] = 7153, - [SMALL_STATE(2464)] = 7237, - [SMALL_STATE(2465)] = 7307, - [SMALL_STATE(2466)] = 7377, - [SMALL_STATE(2467)] = 7447, - [SMALL_STATE(2468)] = 7517, - [SMALL_STATE(2469)] = 7587, - [SMALL_STATE(2470)] = 7657, - [SMALL_STATE(2471)] = 7727, - [SMALL_STATE(2472)] = 7797, - [SMALL_STATE(2473)] = 7875, - [SMALL_STATE(2474)] = 7955, - [SMALL_STATE(2475)] = 8025, - [SMALL_STATE(2476)] = 8095, - [SMALL_STATE(2477)] = 8165, - [SMALL_STATE(2478)] = 8235, - [SMALL_STATE(2479)] = 8305, - [SMALL_STATE(2480)] = 8375, - [SMALL_STATE(2481)] = 8445, - [SMALL_STATE(2482)] = 8515, - [SMALL_STATE(2483)] = 8585, - [SMALL_STATE(2484)] = 8655, - [SMALL_STATE(2485)] = 8725, - [SMALL_STATE(2486)] = 8795, - [SMALL_STATE(2487)] = 8865, - [SMALL_STATE(2488)] = 8935, - [SMALL_STATE(2489)] = 9005, - [SMALL_STATE(2490)] = 9075, - [SMALL_STATE(2491)] = 9145, - [SMALL_STATE(2492)] = 9215, - [SMALL_STATE(2493)] = 9285, - [SMALL_STATE(2494)] = 9355, - [SMALL_STATE(2495)] = 9425, - [SMALL_STATE(2496)] = 9495, - [SMALL_STATE(2497)] = 9565, - [SMALL_STATE(2498)] = 9635, - [SMALL_STATE(2499)] = 9705, - [SMALL_STATE(2500)] = 9775, - [SMALL_STATE(2501)] = 9845, - [SMALL_STATE(2502)] = 9915, - [SMALL_STATE(2503)] = 9985, - [SMALL_STATE(2504)] = 10073, - [SMALL_STATE(2505)] = 10143, - [SMALL_STATE(2506)] = 10213, - [SMALL_STATE(2507)] = 10283, - [SMALL_STATE(2508)] = 10353, - [SMALL_STATE(2509)] = 10423, - [SMALL_STATE(2510)] = 10493, - [SMALL_STATE(2511)] = 10563, - [SMALL_STATE(2512)] = 10633, - [SMALL_STATE(2513)] = 10703, - [SMALL_STATE(2514)] = 10773, - [SMALL_STATE(2515)] = 10843, - [SMALL_STATE(2516)] = 10913, - [SMALL_STATE(2517)] = 10983, - [SMALL_STATE(2518)] = 11053, - [SMALL_STATE(2519)] = 11123, - [SMALL_STATE(2520)] = 11193, - [SMALL_STATE(2521)] = 11263, - [SMALL_STATE(2522)] = 11333, - [SMALL_STATE(2523)] = 11403, - [SMALL_STATE(2524)] = 11473, - [SMALL_STATE(2525)] = 11543, - [SMALL_STATE(2526)] = 11613, - [SMALL_STATE(2527)] = 11683, - [SMALL_STATE(2528)] = 11753, - [SMALL_STATE(2529)] = 11837, - [SMALL_STATE(2530)] = 11907, - [SMALL_STATE(2531)] = 11977, - [SMALL_STATE(2532)] = 12047, - [SMALL_STATE(2533)] = 12117, - [SMALL_STATE(2534)] = 12187, - [SMALL_STATE(2535)] = 12258, - [SMALL_STATE(2536)] = 12331, - [SMALL_STATE(2537)] = 12400, - [SMALL_STATE(2538)] = 12481, - [SMALL_STATE(2539)] = 12550, - [SMALL_STATE(2540)] = 12619, - [SMALL_STATE(2541)] = 12688, - [SMALL_STATE(2542)] = 12757, - [SMALL_STATE(2543)] = 12826, - [SMALL_STATE(2544)] = 12895, - [SMALL_STATE(2545)] = 12970, - [SMALL_STATE(2546)] = 13043, - [SMALL_STATE(2547)] = 13116, - [SMALL_STATE(2548)] = 13185, - [SMALL_STATE(2549)] = 13258, - [SMALL_STATE(2550)] = 13337, - [SMALL_STATE(2551)] = 13424, - [SMALL_STATE(2552)] = 13503, - [SMALL_STATE(2553)] = 13576, - [SMALL_STATE(2554)] = 13649, - [SMALL_STATE(2555)] = 13722, - [SMALL_STATE(2556)] = 13797, - [SMALL_STATE(2557)] = 13868, - [SMALL_STATE(2558)] = 13937, - [SMALL_STATE(2559)] = 14024, - [SMALL_STATE(2560)] = 14099, - [SMALL_STATE(2561)] = 14168, - [SMALL_STATE(2562)] = 14237, - [SMALL_STATE(2563)] = 14306, - [SMALL_STATE(2564)] = 14375, - [SMALL_STATE(2565)] = 14494, - [SMALL_STATE(2566)] = 14613, - [SMALL_STATE(2567)] = 14688, - [SMALL_STATE(2568)] = 14759, - [SMALL_STATE(2569)] = 14838, - [SMALL_STATE(2570)] = 14911, - [SMALL_STATE(2571)] = 14984, - [SMALL_STATE(2572)] = 15057, - [SMALL_STATE(2573)] = 15130, - [SMALL_STATE(2574)] = 15203, - [SMALL_STATE(2575)] = 15290, - [SMALL_STATE(2576)] = 15362, - [SMALL_STATE(2577)] = 15430, - [SMALL_STATE(2578)] = 15504, - [SMALL_STATE(2579)] = 15578, - [SMALL_STATE(2580)] = 15652, - [SMALL_STATE(2581)] = 15726, - [SMALL_STATE(2582)] = 15800, - [SMALL_STATE(2583)] = 15868, - [SMALL_STATE(2584)] = 15936, - [SMALL_STATE(2585)] = 16008, - [SMALL_STATE(2586)] = 16080, - [SMALL_STATE(2587)] = 16158, - [SMALL_STATE(2588)] = 16230, - [SMALL_STATE(2589)] = 16304, - [SMALL_STATE(2590)] = 16376, - [SMALL_STATE(2591)] = 16444, - [SMALL_STATE(2592)] = 16512, - [SMALL_STATE(2593)] = 16598, - [SMALL_STATE(2594)] = 16680, - [SMALL_STATE(2595)] = 16752, - [SMALL_STATE(2596)] = 16828, - [SMALL_STATE(2597)] = 16900, - [SMALL_STATE(2598)] = 16972, - [SMALL_STATE(2599)] = 17042, - [SMALL_STATE(2600)] = 17114, - [SMALL_STATE(2601)] = 17186, - [SMALL_STATE(2602)] = 17260, - [SMALL_STATE(2603)] = 17332, - [SMALL_STATE(2604)] = 17404, - [SMALL_STATE(2605)] = 17476, - [SMALL_STATE(2606)] = 17558, - [SMALL_STATE(2607)] = 17630, - [SMALL_STATE(2608)] = 17702, - [SMALL_STATE(2609)] = 17774, - [SMALL_STATE(2610)] = 17846, - [SMALL_STATE(2611)] = 17922, - [SMALL_STATE(2612)] = 17992, - [SMALL_STATE(2613)] = 18064, - [SMALL_STATE(2614)] = 18138, - [SMALL_STATE(2615)] = 18212, - [SMALL_STATE(2616)] = 18280, - [SMALL_STATE(2617)] = 18352, - [SMALL_STATE(2618)] = 18424, - [SMALL_STATE(2619)] = 18498, - [SMALL_STATE(2620)] = 18566, - [SMALL_STATE(2621)] = 18634, - [SMALL_STATE(2622)] = 18708, - [SMALL_STATE(2623)] = 18780, - [SMALL_STATE(2624)] = 18852, - [SMALL_STATE(2625)] = 18928, - [SMALL_STATE(2626)] = 18996, - [SMALL_STATE(2627)] = 19066, - [SMALL_STATE(2628)] = 19134, - [SMALL_STATE(2629)] = 19210, - [SMALL_STATE(2630)] = 19282, - [SMALL_STATE(2631)] = 19352, - [SMALL_STATE(2632)] = 19426, - [SMALL_STATE(2633)] = 19494, - [SMALL_STATE(2634)] = 19568, - [SMALL_STATE(2635)] = 19642, - [SMALL_STATE(2636)] = 19710, - [SMALL_STATE(2637)] = 19778, - [SMALL_STATE(2638)] = 19852, - [SMALL_STATE(2639)] = 19926, - [SMALL_STATE(2640)] = 19994, - [SMALL_STATE(2641)] = 20062, - [SMALL_STATE(2642)] = 20134, - [SMALL_STATE(2643)] = 20208, - [SMALL_STATE(2644)] = 20280, - [SMALL_STATE(2645)] = 20347, - [SMALL_STATE(2646)] = 20414, - [SMALL_STATE(2647)] = 20481, - [SMALL_STATE(2648)] = 20548, - [SMALL_STATE(2649)] = 20615, - [SMALL_STATE(2650)] = 20682, - [SMALL_STATE(2651)] = 20749, - [SMALL_STATE(2652)] = 20816, - [SMALL_STATE(2653)] = 20883, - [SMALL_STATE(2654)] = 20950, - [SMALL_STATE(2655)] = 21067, - [SMALL_STATE(2656)] = 21134, - [SMALL_STATE(2657)] = 21251, - [SMALL_STATE(2658)] = 21318, - [SMALL_STATE(2659)] = 21387, - [SMALL_STATE(2660)] = 21456, - [SMALL_STATE(2661)] = 21527, - [SMALL_STATE(2662)] = 21598, - [SMALL_STATE(2663)] = 21665, - [SMALL_STATE(2664)] = 21782, - [SMALL_STATE(2665)] = 21899, - [SMALL_STATE(2666)] = 21966, - [SMALL_STATE(2667)] = 22033, - [SMALL_STATE(2668)] = 22100, - [SMALL_STATE(2669)] = 22167, - [SMALL_STATE(2670)] = 22236, - [SMALL_STATE(2671)] = 22303, - [SMALL_STATE(2672)] = 22384, - [SMALL_STATE(2673)] = 22451, - [SMALL_STATE(2674)] = 22518, - [SMALL_STATE(2675)] = 22601, - [SMALL_STATE(2676)] = 22668, - [SMALL_STATE(2677)] = 22735, - [SMALL_STATE(2678)] = 22802, - [SMALL_STATE(2679)] = 22885, - [SMALL_STATE(2680)] = 22952, - [SMALL_STATE(2681)] = 23033, - [SMALL_STATE(2682)] = 23100, - [SMALL_STATE(2683)] = 23167, - [SMALL_STATE(2684)] = 23234, - [SMALL_STATE(2685)] = 23301, - [SMALL_STATE(2686)] = 23368, - [SMALL_STATE(2687)] = 23435, - [SMALL_STATE(2688)] = 23502, - [SMALL_STATE(2689)] = 23569, - [SMALL_STATE(2690)] = 23636, - [SMALL_STATE(2691)] = 23707, - [SMALL_STATE(2692)] = 23774, - [SMALL_STATE(2693)] = 23841, - [SMALL_STATE(2694)] = 23908, - [SMALL_STATE(2695)] = 23975, - [SMALL_STATE(2696)] = 24046, - [SMALL_STATE(2697)] = 24113, - [SMALL_STATE(2698)] = 24184, - [SMALL_STATE(2699)] = 24251, - [SMALL_STATE(2700)] = 24318, - [SMALL_STATE(2701)] = 24385, - [SMALL_STATE(2702)] = 24452, - [SMALL_STATE(2703)] = 24519, - [SMALL_STATE(2704)] = 24590, - [SMALL_STATE(2705)] = 24657, - [SMALL_STATE(2706)] = 24724, - [SMALL_STATE(2707)] = 24791, - [SMALL_STATE(2708)] = 24858, - [SMALL_STATE(2709)] = 24925, - [SMALL_STATE(2710)] = 25007, - [SMALL_STATE(2711)] = 25077, - [SMALL_STATE(2712)] = 25147, - [SMALL_STATE(2713)] = 25217, - [SMALL_STATE(2714)] = 25287, - [SMALL_STATE(2715)] = 25357, - [SMALL_STATE(2716)] = 25427, - [SMALL_STATE(2717)] = 25497, - [SMALL_STATE(2718)] = 25567, - [SMALL_STATE(2719)] = 25649, - [SMALL_STATE(2720)] = 25715, - [SMALL_STATE(2721)] = 25781, - [SMALL_STATE(2722)] = 25847, - [SMALL_STATE(2723)] = 25923, - [SMALL_STATE(2724)] = 25989, - [SMALL_STATE(2725)] = 26081, - [SMALL_STATE(2726)] = 26147, - [SMALL_STATE(2727)] = 26215, - [SMALL_STATE(2728)] = 26283, - [SMALL_STATE(2729)] = 26349, - [SMALL_STATE(2730)] = 26441, - [SMALL_STATE(2731)] = 26507, - [SMALL_STATE(2732)] = 26573, - [SMALL_STATE(2733)] = 26643, - [SMALL_STATE(2734)] = 26713, - [SMALL_STATE(2735)] = 26779, - [SMALL_STATE(2736)] = 26845, - [SMALL_STATE(2737)] = 26937, - [SMALL_STATE(2738)] = 27003, - [SMALL_STATE(2739)] = 27069, - [SMALL_STATE(2740)] = 27135, - [SMALL_STATE(2741)] = 27201, - [SMALL_STATE(2742)] = 27267, - [SMALL_STATE(2743)] = 27359, - [SMALL_STATE(2744)] = 27425, - [SMALL_STATE(2745)] = 27497, - [SMALL_STATE(2746)] = 27589, - [SMALL_STATE(2747)] = 27671, - [SMALL_STATE(2748)] = 27737, - [SMALL_STATE(2749)] = 27829, - [SMALL_STATE(2750)] = 27905, - [SMALL_STATE(2751)] = 27987, - [SMALL_STATE(2752)] = 28053, - [SMALL_STATE(2753)] = 28119, - [SMALL_STATE(2754)] = 28187, - [SMALL_STATE(2755)] = 28257, - [SMALL_STATE(2756)] = 28327, - [SMALL_STATE(2757)] = 28399, - [SMALL_STATE(2758)] = 28469, - [SMALL_STATE(2759)] = 28561, - [SMALL_STATE(2760)] = 28627, - [SMALL_STATE(2761)] = 28693, - [SMALL_STATE(2762)] = 28769, - [SMALL_STATE(2763)] = 28834, - [SMALL_STATE(2764)] = 28899, - [SMALL_STATE(2765)] = 28964, - [SMALL_STATE(2766)] = 29029, - [SMALL_STATE(2767)] = 29112, - [SMALL_STATE(2768)] = 29177, - [SMALL_STATE(2769)] = 29242, - [SMALL_STATE(2770)] = 29307, - [SMALL_STATE(2771)] = 29390, - [SMALL_STATE(2772)] = 29473, - [SMALL_STATE(2773)] = 29582, - [SMALL_STATE(2774)] = 29691, - [SMALL_STATE(2775)] = 29756, - [SMALL_STATE(2776)] = 29829, - [SMALL_STATE(2777)] = 29894, - [SMALL_STATE(2778)] = 29959, - [SMALL_STATE(2779)] = 30042, - [SMALL_STATE(2780)] = 30113, - [SMALL_STATE(2781)] = 30196, - [SMALL_STATE(2782)] = 30279, - [SMALL_STATE(2783)] = 30344, - [SMALL_STATE(2784)] = 30411, - [SMALL_STATE(2785)] = 30492, - [SMALL_STATE(2786)] = 30557, - [SMALL_STATE(2787)] = 30622, - [SMALL_STATE(2788)] = 30687, - [SMALL_STATE(2789)] = 30760, - [SMALL_STATE(2790)] = 30835, - [SMALL_STATE(2791)] = 30944, - [SMALL_STATE(2792)] = 31057, - [SMALL_STATE(2793)] = 31140, - [SMALL_STATE(2794)] = 31223, - [SMALL_STATE(2795)] = 31290, - [SMALL_STATE(2796)] = 31395, - [SMALL_STATE(2797)] = 31496, - [SMALL_STATE(2798)] = 31595, - [SMALL_STATE(2799)] = 31692, - [SMALL_STATE(2800)] = 31787, - [SMALL_STATE(2801)] = 31870, - [SMALL_STATE(2802)] = 31953, - [SMALL_STATE(2803)] = 32044, - [SMALL_STATE(2804)] = 32115, - [SMALL_STATE(2805)] = 32186, - [SMALL_STATE(2806)] = 32269, - [SMALL_STATE(2807)] = 32334, - [SMALL_STATE(2808)] = 32421, - [SMALL_STATE(2809)] = 32530, - [SMALL_STATE(2810)] = 32595, - [SMALL_STATE(2811)] = 32670, - [SMALL_STATE(2812)] = 32741, - [SMALL_STATE(2813)] = 32854, - [SMALL_STATE(2814)] = 32963, - [SMALL_STATE(2815)] = 33034, - [SMALL_STATE(2816)] = 33105, - [SMALL_STATE(2817)] = 33176, - [SMALL_STATE(2818)] = 33257, - [SMALL_STATE(2819)] = 33340, - [SMALL_STATE(2820)] = 33425, - [SMALL_STATE(2821)] = 33496, - [SMALL_STATE(2822)] = 33609, - [SMALL_STATE(2823)] = 33674, - [SMALL_STATE(2824)] = 33745, - [SMALL_STATE(2825)] = 33816, - [SMALL_STATE(2826)] = 33881, - [SMALL_STATE(2827)] = 33962, - [SMALL_STATE(2828)] = 34027, - [SMALL_STATE(2829)] = 34098, - [SMALL_STATE(2830)] = 34163, - [SMALL_STATE(2831)] = 34230, - [SMALL_STATE(2832)] = 34309, - [SMALL_STATE(2833)] = 34388, - [SMALL_STATE(2834)] = 34471, - [SMALL_STATE(2835)] = 34552, - [SMALL_STATE(2836)] = 34623, - [SMALL_STATE(2837)] = 34688, - [SMALL_STATE(2838)] = 34771, - [SMALL_STATE(2839)] = 34836, - [SMALL_STATE(2840)] = 34911, - [SMALL_STATE(2841)] = 34992, - [SMALL_STATE(2842)] = 35057, - [SMALL_STATE(2843)] = 35140, - [SMALL_STATE(2844)] = 35218, - [SMALL_STATE(2845)] = 35288, - [SMALL_STATE(2846)] = 35400, - [SMALL_STATE(2847)] = 35464, - [SMALL_STATE(2848)] = 35576, - [SMALL_STATE(2849)] = 35646, - [SMALL_STATE(2850)] = 35716, - [SMALL_STATE(2851)] = 35786, - [SMALL_STATE(2852)] = 35850, - [SMALL_STATE(2853)] = 35920, - [SMALL_STATE(2854)] = 35990, - [SMALL_STATE(2855)] = 36054, - [SMALL_STATE(2856)] = 36118, - [SMALL_STATE(2857)] = 36182, - [SMALL_STATE(2858)] = 36258, - [SMALL_STATE(2859)] = 36328, - [SMALL_STATE(2860)] = 36396, - [SMALL_STATE(2861)] = 36514, - [SMALL_STATE(2862)] = 36578, - [SMALL_STATE(2863)] = 36648, - [SMALL_STATE(2864)] = 36766, - [SMALL_STATE(2865)] = 36832, - [SMALL_STATE(2866)] = 36902, - [SMALL_STATE(2867)] = 36972, - [SMALL_STATE(2868)] = 37042, - [SMALL_STATE(2869)] = 37116, - [SMALL_STATE(2870)] = 37186, - [SMALL_STATE(2871)] = 37252, - [SMALL_STATE(2872)] = 37316, - [SMALL_STATE(2873)] = 37380, - [SMALL_STATE(2874)] = 37450, - [SMALL_STATE(2875)] = 37514, - [SMALL_STATE(2876)] = 37581, - [SMALL_STATE(2877)] = 37648, - [SMALL_STATE(2878)] = 37765, - [SMALL_STATE(2879)] = 37874, - [SMALL_STATE(2880)] = 37947, - [SMALL_STATE(2881)] = 38014, - [SMALL_STATE(2882)] = 38093, - [SMALL_STATE(2883)] = 38160, - [SMALL_STATE(2884)] = 38269, - [SMALL_STATE(2885)] = 38382, - [SMALL_STATE(2886)] = 38499, - [SMALL_STATE(2887)] = 38562, - [SMALL_STATE(2888)] = 38671, - [SMALL_STATE(2889)] = 38780, - [SMALL_STATE(2890)] = 38853, - [SMALL_STATE(2891)] = 38970, - [SMALL_STATE(2892)] = 39049, - [SMALL_STATE(2893)] = 39122, - [SMALL_STATE(2894)] = 39231, - [SMALL_STATE(2895)] = 39298, - [SMALL_STATE(2896)] = 39365, - [SMALL_STATE(2897)] = 39428, - [SMALL_STATE(2898)] = 39537, - [SMALL_STATE(2899)] = 39646, - [SMALL_STATE(2900)] = 39755, - [SMALL_STATE(2901)] = 39864, - [SMALL_STATE(2902)] = 39935, - [SMALL_STATE(2903)] = 40052, - [SMALL_STATE(2904)] = 40161, - [SMALL_STATE(2905)] = 40270, - [SMALL_STATE(2906)] = 40333, - [SMALL_STATE(2907)] = 40396, - [SMALL_STATE(2908)] = 40505, - [SMALL_STATE(2909)] = 40614, - [SMALL_STATE(2910)] = 40727, - [SMALL_STATE(2911)] = 40800, - [SMALL_STATE(2912)] = 40909, - [SMALL_STATE(2913)] = 41070, - [SMALL_STATE(2914)] = 41175, - [SMALL_STATE(2915)] = 41276, - [SMALL_STATE(2916)] = 41355, - [SMALL_STATE(2917)] = 41428, - [SMALL_STATE(2918)] = 41495, - [SMALL_STATE(2919)] = 41568, - [SMALL_STATE(2920)] = 41729, - [SMALL_STATE(2921)] = 41838, - [SMALL_STATE(2922)] = 41947, - [SMALL_STATE(2923)] = 42044, - [SMALL_STATE(2924)] = 42139, - [SMALL_STATE(2925)] = 42204, - [SMALL_STATE(2926)] = 42277, - [SMALL_STATE(2927)] = 42386, - [SMALL_STATE(2928)] = 42449, - [SMALL_STATE(2929)] = 42518, - [SMALL_STATE(2930)] = 42585, - [SMALL_STATE(2931)] = 42648, - [SMALL_STATE(2932)] = 42715, - [SMALL_STATE(2933)] = 42824, - [SMALL_STATE(2934)] = 42933, - [SMALL_STATE(2935)] = 43046, - [SMALL_STATE(2936)] = 43113, - [SMALL_STATE(2937)] = 43182, - [SMALL_STATE(2938)] = 43291, - [SMALL_STATE(2939)] = 43354, - [SMALL_STATE(2940)] = 43463, - [SMALL_STATE(2941)] = 43572, - [SMALL_STATE(2942)] = 43681, - [SMALL_STATE(2943)] = 43842, - [SMALL_STATE(2944)] = 43951, - [SMALL_STATE(2945)] = 44060, - [SMALL_STATE(2946)] = 44131, - [SMALL_STATE(2947)] = 44240, - [SMALL_STATE(2948)] = 44309, - [SMALL_STATE(2949)] = 44418, - [SMALL_STATE(2950)] = 44527, - [SMALL_STATE(2951)] = 44592, - [SMALL_STATE(2952)] = 44701, - [SMALL_STATE(2953)] = 44772, - [SMALL_STATE(2954)] = 44841, - [SMALL_STATE(2955)] = 44950, - [SMALL_STATE(2956)] = 45029, - [SMALL_STATE(2957)] = 45146, - [SMALL_STATE(2958)] = 45213, - [SMALL_STATE(2959)] = 45322, - [SMALL_STATE(2960)] = 45385, - [SMALL_STATE(2961)] = 45494, - [SMALL_STATE(2962)] = 45573, - [SMALL_STATE(2963)] = 45690, - [SMALL_STATE(2964)] = 45781, - [SMALL_STATE(2965)] = 45870, - [SMALL_STATE(2966)] = 45937, - [SMALL_STATE(2967)] = 46022, - [SMALL_STATE(2968)] = 46089, - [SMALL_STATE(2969)] = 46170, - [SMALL_STATE(2970)] = 46279, - [SMALL_STATE(2971)] = 46362, - [SMALL_STATE(2972)] = 46431, - [SMALL_STATE(2973)] = 46499, - [SMALL_STATE(2974)] = 46563, - [SMALL_STATE(2975)] = 46631, - [SMALL_STATE(2976)] = 46693, - [SMALL_STATE(2977)] = 46755, - [SMALL_STATE(2978)] = 46817, - [SMALL_STATE(2979)] = 46879, - [SMALL_STATE(2980)] = 46947, - [SMALL_STATE(2981)] = 47021, - [SMALL_STATE(2982)] = 47137, - [SMALL_STATE(2983)] = 47203, - [SMALL_STATE(2984)] = 47265, - [SMALL_STATE(2985)] = 47333, - [SMALL_STATE(2986)] = 47403, - [SMALL_STATE(2987)] = 47465, - [SMALL_STATE(2988)] = 47527, - [SMALL_STATE(2989)] = 47607, - [SMALL_STATE(2990)] = 47669, - [SMALL_STATE(2991)] = 47731, - [SMALL_STATE(2992)] = 47847, - [SMALL_STATE(2993)] = 47909, - [SMALL_STATE(2994)] = 47971, - [SMALL_STATE(2995)] = 48087, - [SMALL_STATE(2996)] = 48155, - [SMALL_STATE(2997)] = 48217, - [SMALL_STATE(2998)] = 48279, - [SMALL_STATE(2999)] = 48395, - [SMALL_STATE(3000)] = 48457, - [SMALL_STATE(3001)] = 48519, - [SMALL_STATE(3002)] = 48581, - [SMALL_STATE(3003)] = 48643, - [SMALL_STATE(3004)] = 48705, - [SMALL_STATE(3005)] = 48821, - [SMALL_STATE(3006)] = 48887, - [SMALL_STATE(3007)] = 48995, - [SMALL_STATE(3008)] = 49111, - [SMALL_STATE(3009)] = 49173, - [SMALL_STATE(3010)] = 49237, - [SMALL_STATE(3011)] = 49311, - [SMALL_STATE(3012)] = 49377, - [SMALL_STATE(3013)] = 49439, - [SMALL_STATE(3014)] = 49551, - [SMALL_STATE(3015)] = 49619, - [SMALL_STATE(3016)] = 49681, - [SMALL_STATE(3017)] = 49749, - [SMALL_STATE(3018)] = 49817, - [SMALL_STATE(3019)] = 49921, - [SMALL_STATE(3020)] = 49983, - [SMALL_STATE(3021)] = 50045, - [SMALL_STATE(3022)] = 50145, - [SMALL_STATE(3023)] = 50207, - [SMALL_STATE(3024)] = 50303, - [SMALL_STATE(3025)] = 50397, - [SMALL_STATE(3026)] = 50459, - [SMALL_STATE(3027)] = 50549, - [SMALL_STATE(3028)] = 50611, - [SMALL_STATE(3029)] = 50673, - [SMALL_STATE(3030)] = 50761, - [SMALL_STATE(3031)] = 50845, - [SMALL_STATE(3032)] = 50917, - [SMALL_STATE(3033)] = 50979, - [SMALL_STATE(3034)] = 51095, - [SMALL_STATE(3035)] = 51203, - [SMALL_STATE(3036)] = 51265, - [SMALL_STATE(3037)] = 51373, - [SMALL_STATE(3038)] = 51451, - [SMALL_STATE(3039)] = 51531, - [SMALL_STATE(3040)] = 51613, - [SMALL_STATE(3041)] = 51721, - [SMALL_STATE(3042)] = 51833, - [SMALL_STATE(3043)] = 51899, - [SMALL_STATE(3044)] = 52007, - [SMALL_STATE(3045)] = 52071, - [SMALL_STATE(3046)] = 52137, - [SMALL_STATE(3047)] = 52199, - [SMALL_STATE(3048)] = 52265, - [SMALL_STATE(3049)] = 52327, - [SMALL_STATE(3050)] = 52389, - [SMALL_STATE(3051)] = 52451, - [SMALL_STATE(3052)] = 52563, - [SMALL_STATE(3053)] = 52625, - [SMALL_STATE(3054)] = 52741, - [SMALL_STATE(3055)] = 52803, - [SMALL_STATE(3056)] = 52865, - [SMALL_STATE(3057)] = 52931, - [SMALL_STATE(3058)] = 52997, - [SMALL_STATE(3059)] = 53063, - [SMALL_STATE(3060)] = 53131, - [SMALL_STATE(3061)] = 53199, - [SMALL_STATE(3062)] = 53261, - [SMALL_STATE(3063)] = 53335, - [SMALL_STATE(3064)] = 53399, - [SMALL_STATE(3065)] = 53465, - [SMALL_STATE(3066)] = 53531, - [SMALL_STATE(3067)] = 53595, - [SMALL_STATE(3068)] = 53661, - [SMALL_STATE(3069)] = 53731, - [SMALL_STATE(3070)] = 53797, - [SMALL_STATE(3071)] = 53869, - [SMALL_STATE(3072)] = 53935, - [SMALL_STATE(3073)] = 54001, - [SMALL_STATE(3074)] = 54067, - [SMALL_STATE(3075)] = 54133, - [SMALL_STATE(3076)] = 54199, - [SMALL_STATE(3077)] = 54267, - [SMALL_STATE(3078)] = 54339, - [SMALL_STATE(3079)] = 54401, - [SMALL_STATE(3080)] = 54469, - [SMALL_STATE(3081)] = 54535, - [SMALL_STATE(3082)] = 54599, - [SMALL_STATE(3083)] = 54663, - [SMALL_STATE(3084)] = 54735, - [SMALL_STATE(3085)] = 54801, - [SMALL_STATE(3086)] = 54867, - [SMALL_STATE(3087)] = 54933, - [SMALL_STATE(3088)] = 55049, - [SMALL_STATE(3089)] = 55165, - [SMALL_STATE(3090)] = 55229, - [SMALL_STATE(3091)] = 55297, - [SMALL_STATE(3092)] = 55359, - [SMALL_STATE(3093)] = 55423, - [SMALL_STATE(3094)] = 55487, - [SMALL_STATE(3095)] = 55551, - [SMALL_STATE(3096)] = 55615, - [SMALL_STATE(3097)] = 55677, - [SMALL_STATE(3098)] = 55745, - [SMALL_STATE(3099)] = 55809, - [SMALL_STATE(3100)] = 55873, - [SMALL_STATE(3101)] = 55945, - [SMALL_STATE(3102)] = 56009, - [SMALL_STATE(3103)] = 56081, - [SMALL_STATE(3104)] = 56147, - [SMALL_STATE(3105)] = 56215, - [SMALL_STATE(3106)] = 56279, - [SMALL_STATE(3107)] = 56347, - [SMALL_STATE(3108)] = 56415, - [SMALL_STATE(3109)] = 56483, - [SMALL_STATE(3110)] = 56547, - [SMALL_STATE(3111)] = 56640, - [SMALL_STATE(3112)] = 56701, - [SMALL_STATE(3113)] = 56812, - [SMALL_STATE(3114)] = 56873, - [SMALL_STATE(3115)] = 56934, - [SMALL_STATE(3116)] = 56995, - [SMALL_STATE(3117)] = 57060, - [SMALL_STATE(3118)] = 57121, - [SMALL_STATE(3119)] = 57182, - [SMALL_STATE(3120)] = 57257, - [SMALL_STATE(3121)] = 57324, - [SMALL_STATE(3122)] = 57385, - [SMALL_STATE(3123)] = 57450, - [SMALL_STATE(3124)] = 57511, - [SMALL_STATE(3125)] = 57572, - [SMALL_STATE(3126)] = 57633, - [SMALL_STATE(3127)] = 57740, - [SMALL_STATE(3128)] = 57817, - [SMALL_STATE(3129)] = 57886, - [SMALL_STATE(3130)] = 57949, - [SMALL_STATE(3131)] = 58014, - [SMALL_STATE(3132)] = 58075, - [SMALL_STATE(3133)] = 58136, - [SMALL_STATE(3134)] = 58199, - [SMALL_STATE(3135)] = 58260, - [SMALL_STATE(3136)] = 58325, - [SMALL_STATE(3137)] = 58400, - [SMALL_STATE(3138)] = 58469, - [SMALL_STATE(3139)] = 58580, - [SMALL_STATE(3140)] = 58655, - [SMALL_STATE(3141)] = 58720, - [SMALL_STATE(3142)] = 58781, - [SMALL_STATE(3143)] = 58842, - [SMALL_STATE(3144)] = 58903, - [SMALL_STATE(3145)] = 58964, - [SMALL_STATE(3146)] = 59071, - [SMALL_STATE(3147)] = 59132, - [SMALL_STATE(3148)] = 59205, - [SMALL_STATE(3149)] = 59266, - [SMALL_STATE(3150)] = 59327, - [SMALL_STATE(3151)] = 59394, - [SMALL_STATE(3152)] = 59463, - [SMALL_STATE(3153)] = 59528, - [SMALL_STATE(3154)] = 59593, - [SMALL_STATE(3155)] = 59654, - [SMALL_STATE(3156)] = 59731, - [SMALL_STATE(3157)] = 59806, - [SMALL_STATE(3158)] = 59867, - [SMALL_STATE(3159)] = 59970, - [SMALL_STATE(3160)] = 60069, - [SMALL_STATE(3161)] = 60164, - [SMALL_STATE(3162)] = 60231, - [SMALL_STATE(3163)] = 60292, - [SMALL_STATE(3164)] = 60379, - [SMALL_STATE(3165)] = 60462, - [SMALL_STATE(3166)] = 60541, - [SMALL_STATE(3167)] = 60622, - [SMALL_STATE(3168)] = 60689, - [SMALL_STATE(3169)] = 60754, - [SMALL_STATE(3170)] = 60815, - [SMALL_STATE(3171)] = 60882, - [SMALL_STATE(3172)] = 60957, - [SMALL_STATE(3173)] = 61018, - [SMALL_STATE(3174)] = 61079, - [SMALL_STATE(3175)] = 61146, - [SMALL_STATE(3176)] = 61207, - [SMALL_STATE(3177)] = 61268, - [SMALL_STATE(3178)] = 61383, - [SMALL_STATE(3179)] = 61444, - [SMALL_STATE(3180)] = 61559, - [SMALL_STATE(3181)] = 61620, - [SMALL_STATE(3182)] = 61683, - [SMALL_STATE(3183)] = 61744, - [SMALL_STATE(3184)] = 61851, - [SMALL_STATE(3185)] = 61962, - [SMALL_STATE(3186)] = 62023, - [SMALL_STATE(3187)] = 62096, - [SMALL_STATE(3188)] = 62163, - [SMALL_STATE(3189)] = 62224, - [SMALL_STATE(3190)] = 62299, - [SMALL_STATE(3191)] = 62368, - [SMALL_STATE(3192)] = 62429, - [SMALL_STATE(3193)] = 62490, - [SMALL_STATE(3194)] = 62559, - [SMALL_STATE(3195)] = 62620, - [SMALL_STATE(3196)] = 62681, - [SMALL_STATE(3197)] = 62742, - [SMALL_STATE(3198)] = 62817, - [SMALL_STATE(3199)] = 62878, - [SMALL_STATE(3200)] = 62945, - [SMALL_STATE(3201)] = 63006, - [SMALL_STATE(3202)] = 63113, - [SMALL_STATE(3203)] = 63180, - [SMALL_STATE(3204)] = 63241, - [SMALL_STATE(3205)] = 63348, - [SMALL_STATE(3206)] = 63411, - [SMALL_STATE(3207)] = 63478, - [SMALL_STATE(3208)] = 63539, - [SMALL_STATE(3209)] = 63628, - [SMALL_STATE(3210)] = 63706, - [SMALL_STATE(3211)] = 63766, - [SMALL_STATE(3212)] = 63826, - [SMALL_STATE(3213)] = 63890, - [SMALL_STATE(3214)] = 63950, - [SMALL_STATE(3215)] = 64010, - [SMALL_STATE(3216)] = 64166, - [SMALL_STATE(3217)] = 64280, - [SMALL_STATE(3218)] = 64340, - [SMALL_STATE(3219)] = 64452, - [SMALL_STATE(3220)] = 64512, - [SMALL_STATE(3221)] = 64668, - [SMALL_STATE(3222)] = 64742, - [SMALL_STATE(3223)] = 64802, - [SMALL_STATE(3224)] = 64916, - [SMALL_STATE(3225)] = 65024, - [SMALL_STATE(3226)] = 65084, - [SMALL_STATE(3227)] = 65144, - [SMALL_STATE(3228)] = 65204, - [SMALL_STATE(3229)] = 65264, - [SMALL_STATE(3230)] = 65324, - [SMALL_STATE(3231)] = 65480, - [SMALL_STATE(3232)] = 65540, - [SMALL_STATE(3233)] = 65600, - [SMALL_STATE(3234)] = 65666, - [SMALL_STATE(3235)] = 65726, - [SMALL_STATE(3236)] = 65788, - [SMALL_STATE(3237)] = 65944, - [SMALL_STATE(3238)] = 66014, - [SMALL_STATE(3239)] = 66074, - [SMALL_STATE(3240)] = 66230, - [SMALL_STATE(3241)] = 66290, - [SMALL_STATE(3242)] = 66350, - [SMALL_STATE(3243)] = 66414, - [SMALL_STATE(3244)] = 66480, - [SMALL_STATE(3245)] = 66636, - [SMALL_STATE(3246)] = 66696, - [SMALL_STATE(3247)] = 66756, - [SMALL_STATE(3248)] = 66816, - [SMALL_STATE(3249)] = 66876, - [SMALL_STATE(3250)] = 66948, - [SMALL_STATE(3251)] = 67008, - [SMALL_STATE(3252)] = 67112, - [SMALL_STATE(3253)] = 67178, - [SMALL_STATE(3254)] = 67242, - [SMALL_STATE(3255)] = 67302, - [SMALL_STATE(3256)] = 67362, - [SMALL_STATE(3257)] = 67422, - [SMALL_STATE(3258)] = 67536, - [SMALL_STATE(3259)] = 67596, - [SMALL_STATE(3260)] = 67656, - [SMALL_STATE(3261)] = 67722, - [SMALL_STATE(3262)] = 67784, - [SMALL_STATE(3263)] = 67844, - [SMALL_STATE(3264)] = 67908, - [SMALL_STATE(3265)] = 67968, - [SMALL_STATE(3266)] = 68028, - [SMALL_STATE(3267)] = 68088, - [SMALL_STATE(3268)] = 68148, - [SMALL_STATE(3269)] = 68208, - [SMALL_STATE(3270)] = 68286, - [SMALL_STATE(3271)] = 68400, - [SMALL_STATE(3272)] = 68464, - [SMALL_STATE(3273)] = 68620, - [SMALL_STATE(3274)] = 68734, - [SMALL_STATE(3275)] = 68804, - [SMALL_STATE(3276)] = 68864, - [SMALL_STATE(3277)] = 68924, - [SMALL_STATE(3278)] = 68984, - [SMALL_STATE(3279)] = 69044, - [SMALL_STATE(3280)] = 69152, - [SMALL_STATE(3281)] = 69256, - [SMALL_STATE(3282)] = 69326, - [SMALL_STATE(3283)] = 69406, - [SMALL_STATE(3284)] = 69474, - [SMALL_STATE(3285)] = 69534, - [SMALL_STATE(3286)] = 69594, - [SMALL_STATE(3287)] = 69654, - [SMALL_STATE(3288)] = 69762, - [SMALL_STATE(3289)] = 69822, - [SMALL_STATE(3290)] = 69894, - [SMALL_STATE(3291)] = 70050, - [SMALL_STATE(3292)] = 70110, - [SMALL_STATE(3293)] = 70176, - [SMALL_STATE(3294)] = 70236, - [SMALL_STATE(3295)] = 70296, - [SMALL_STATE(3296)] = 70410, - [SMALL_STATE(3297)] = 70484, - [SMALL_STATE(3298)] = 70550, - [SMALL_STATE(3299)] = 70614, - [SMALL_STATE(3300)] = 70728, - [SMALL_STATE(3301)] = 70788, - [SMALL_STATE(3302)] = 70860, - [SMALL_STATE(3303)] = 70920, - [SMALL_STATE(3304)] = 70992, - [SMALL_STATE(3305)] = 71064, - [SMALL_STATE(3306)] = 71170, - [SMALL_STATE(3307)] = 71244, - [SMALL_STATE(3308)] = 71318, - [SMALL_STATE(3309)] = 71424, - [SMALL_STATE(3310)] = 71496, - [SMALL_STATE(3311)] = 71602, - [SMALL_STATE(3312)] = 71712, - [SMALL_STATE(3313)] = 71788, - [SMALL_STATE(3314)] = 71862, - [SMALL_STATE(3315)] = 71964, - [SMALL_STATE(3316)] = 72062, - [SMALL_STATE(3317)] = 72156, - [SMALL_STATE(3318)] = 72248, - [SMALL_STATE(3319)] = 72336, - [SMALL_STATE(3320)] = 72422, - [SMALL_STATE(3321)] = 72504, - [SMALL_STATE(3322)] = 72566, - [SMALL_STATE(3323)] = 72646, - [SMALL_STATE(3324)] = 72720, - [SMALL_STATE(3325)] = 72826, - [SMALL_STATE(3326)] = 72936, - [SMALL_STATE(3327)] = 73042, - [SMALL_STATE(3328)] = 73152, - [SMALL_STATE(3329)] = 73220, - [SMALL_STATE(3330)] = 73282, - [SMALL_STATE(3331)] = 73356, - [SMALL_STATE(3332)] = 73432, - [SMALL_STATE(3333)] = 73506, - [SMALL_STATE(3334)] = 73580, - [SMALL_STATE(3335)] = 73680, - [SMALL_STATE(3336)] = 73742, - [SMALL_STATE(3337)] = 73802, - [SMALL_STATE(3338)] = 73898, - [SMALL_STATE(3339)] = 73958, - [SMALL_STATE(3340)] = 74032, - [SMALL_STATE(3341)] = 74092, - [SMALL_STATE(3342)] = 74184, - [SMALL_STATE(3343)] = 74274, - [SMALL_STATE(3344)] = 74340, - [SMALL_STATE(3345)] = 74400, - [SMALL_STATE(3346)] = 74556, - [SMALL_STATE(3347)] = 74642, - [SMALL_STATE(3348)] = 74746, - [SMALL_STATE(3349)] = 74830, - [SMALL_STATE(3350)] = 74912, - [SMALL_STATE(3351)] = 74990, - [SMALL_STATE(3352)] = 75070, - [SMALL_STATE(3353)] = 75174, - [SMALL_STATE(3354)] = 75278, - [SMALL_STATE(3355)] = 75337, - [SMALL_STATE(3356)] = 75396, - [SMALL_STATE(3357)] = 75455, - [SMALL_STATE(3358)] = 75514, - [SMALL_STATE(3359)] = 75573, - [SMALL_STATE(3360)] = 75632, - [SMALL_STATE(3361)] = 75693, - [SMALL_STATE(3362)] = 75762, - [SMALL_STATE(3363)] = 75825, - [SMALL_STATE(3364)] = 75888, - [SMALL_STATE(3365)] = 75947, - [SMALL_STATE(3366)] = 76006, - [SMALL_STATE(3367)] = 76067, - [SMALL_STATE(3368)] = 76132, - [SMALL_STATE(3369)] = 76195, - [SMALL_STATE(3370)] = 76258, - [SMALL_STATE(3371)] = 76371, - [SMALL_STATE(3372)] = 76468, - [SMALL_STATE(3373)] = 76565, - [SMALL_STATE(3374)] = 76624, - [SMALL_STATE(3375)] = 76687, - [SMALL_STATE(3376)] = 76750, - [SMALL_STATE(3377)] = 76809, - [SMALL_STATE(3378)] = 76872, - [SMALL_STATE(3379)] = 76935, - [SMALL_STATE(3380)] = 76998, - [SMALL_STATE(3381)] = 77057, - [SMALL_STATE(3382)] = 77116, - [SMALL_STATE(3383)] = 77175, - [SMALL_STATE(3384)] = 77234, - [SMALL_STATE(3385)] = 77293, - [SMALL_STATE(3386)] = 77356, - [SMALL_STATE(3387)] = 77415, - [SMALL_STATE(3388)] = 77480, - [SMALL_STATE(3389)] = 77539, - [SMALL_STATE(3390)] = 77602, - [SMALL_STATE(3391)] = 77661, - [SMALL_STATE(3392)] = 77720, - [SMALL_STATE(3393)] = 77779, - [SMALL_STATE(3394)] = 77838, - [SMALL_STATE(3395)] = 77897, - [SMALL_STATE(3396)] = 77960, - [SMALL_STATE(3397)] = 78019, - [SMALL_STATE(3398)] = 78078, - [SMALL_STATE(3399)] = 78147, - [SMALL_STATE(3400)] = 78208, - [SMALL_STATE(3401)] = 78267, - [SMALL_STATE(3402)] = 78326, - [SMALL_STATE(3403)] = 78389, - [SMALL_STATE(3404)] = 78448, - [SMALL_STATE(3405)] = 78507, - [SMALL_STATE(3406)] = 78620, - [SMALL_STATE(3407)] = 78679, - [SMALL_STATE(3408)] = 78738, - [SMALL_STATE(3409)] = 78797, - [SMALL_STATE(3410)] = 78856, - [SMALL_STATE(3411)] = 78915, - [SMALL_STATE(3412)] = 78974, - [SMALL_STATE(3413)] = 79033, - [SMALL_STATE(3414)] = 79092, - [SMALL_STATE(3415)] = 79151, - [SMALL_STATE(3416)] = 79210, - [SMALL_STATE(3417)] = 79275, - [SMALL_STATE(3418)] = 79334, - [SMALL_STATE(3419)] = 79393, - [SMALL_STATE(3420)] = 79452, - [SMALL_STATE(3421)] = 79511, - [SMALL_STATE(3422)] = 79570, - [SMALL_STATE(3423)] = 79629, - [SMALL_STATE(3424)] = 79688, - [SMALL_STATE(3425)] = 79747, - [SMALL_STATE(3426)] = 79806, - [SMALL_STATE(3427)] = 79865, - [SMALL_STATE(3428)] = 79924, - [SMALL_STATE(3429)] = 79983, - [SMALL_STATE(3430)] = 80042, - [SMALL_STATE(3431)] = 80101, - [SMALL_STATE(3432)] = 80160, - [SMALL_STATE(3433)] = 80219, - [SMALL_STATE(3434)] = 80278, - [SMALL_STATE(3435)] = 80337, - [SMALL_STATE(3436)] = 80406, - [SMALL_STATE(3437)] = 80465, - [SMALL_STATE(3438)] = 80524, - [SMALL_STATE(3439)] = 80583, - [SMALL_STATE(3440)] = 80642, - [SMALL_STATE(3441)] = 80701, - [SMALL_STATE(3442)] = 80760, - [SMALL_STATE(3443)] = 80819, - [SMALL_STATE(3444)] = 80878, - [SMALL_STATE(3445)] = 80937, - [SMALL_STATE(3446)] = 80996, - [SMALL_STATE(3447)] = 81055, - [SMALL_STATE(3448)] = 81114, - [SMALL_STATE(3449)] = 81173, - [SMALL_STATE(3450)] = 81232, - [SMALL_STATE(3451)] = 81291, - [SMALL_STATE(3452)] = 81350, - [SMALL_STATE(3453)] = 81409, - [SMALL_STATE(3454)] = 81468, - [SMALL_STATE(3455)] = 81527, - [SMALL_STATE(3456)] = 81592, - [SMALL_STATE(3457)] = 81657, - [SMALL_STATE(3458)] = 81716, - [SMALL_STATE(3459)] = 81775, - [SMALL_STATE(3460)] = 81888, - [SMALL_STATE(3461)] = 81955, - [SMALL_STATE(3462)] = 82014, - [SMALL_STATE(3463)] = 82073, - [SMALL_STATE(3464)] = 82140, - [SMALL_STATE(3465)] = 82199, - [SMALL_STATE(3466)] = 82258, - [SMALL_STATE(3467)] = 82317, - [SMALL_STATE(3468)] = 82376, - [SMALL_STATE(3469)] = 82435, - [SMALL_STATE(3470)] = 82494, - [SMALL_STATE(3471)] = 82553, - [SMALL_STATE(3472)] = 82618, - [SMALL_STATE(3473)] = 82681, - [SMALL_STATE(3474)] = 82778, - [SMALL_STATE(3475)] = 82837, - [SMALL_STATE(3476)] = 82896, - [SMALL_STATE(3477)] = 82955, - [SMALL_STATE(3478)] = 83052, - [SMALL_STATE(3479)] = 83119, - [SMALL_STATE(3480)] = 83178, - [SMALL_STATE(3481)] = 83237, - [SMALL_STATE(3482)] = 83296, - [SMALL_STATE(3483)] = 83355, - [SMALL_STATE(3484)] = 83414, - [SMALL_STATE(3485)] = 83473, - [SMALL_STATE(3486)] = 83586, - [SMALL_STATE(3487)] = 83683, - [SMALL_STATE(3488)] = 83796, - [SMALL_STATE(3489)] = 83855, - [SMALL_STATE(3490)] = 83924, - [SMALL_STATE(3491)] = 83993, - [SMALL_STATE(3492)] = 84052, - [SMALL_STATE(3493)] = 84149, - [SMALL_STATE(3494)] = 84214, - [SMALL_STATE(3495)] = 84277, - [SMALL_STATE(3496)] = 84336, - [SMALL_STATE(3497)] = 84395, - [SMALL_STATE(3498)] = 84454, - [SMALL_STATE(3499)] = 84513, - [SMALL_STATE(3500)] = 84572, - [SMALL_STATE(3501)] = 84631, - [SMALL_STATE(3502)] = 84690, - [SMALL_STATE(3503)] = 84749, - [SMALL_STATE(3504)] = 84808, - [SMALL_STATE(3505)] = 84867, - [SMALL_STATE(3506)] = 84926, - [SMALL_STATE(3507)] = 84987, - [SMALL_STATE(3508)] = 85046, - [SMALL_STATE(3509)] = 85105, - [SMALL_STATE(3510)] = 85164, - [SMALL_STATE(3511)] = 85223, - [SMALL_STATE(3512)] = 85282, - [SMALL_STATE(3513)] = 85341, - [SMALL_STATE(3514)] = 85400, - [SMALL_STATE(3515)] = 85459, - [SMALL_STATE(3516)] = 85518, - [SMALL_STATE(3517)] = 85577, - [SMALL_STATE(3518)] = 85644, - [SMALL_STATE(3519)] = 85703, - [SMALL_STATE(3520)] = 85762, - [SMALL_STATE(3521)] = 85821, - [SMALL_STATE(3522)] = 85880, - [SMALL_STATE(3523)] = 85939, - [SMALL_STATE(3524)] = 85998, - [SMALL_STATE(3525)] = 86061, - [SMALL_STATE(3526)] = 86120, - [SMALL_STATE(3527)] = 86179, - [SMALL_STATE(3528)] = 86238, - [SMALL_STATE(3529)] = 86297, - [SMALL_STATE(3530)] = 86356, - [SMALL_STATE(3531)] = 86415, - [SMALL_STATE(3532)] = 86474, - [SMALL_STATE(3533)] = 86533, - [SMALL_STATE(3534)] = 86592, - [SMALL_STATE(3535)] = 86651, - [SMALL_STATE(3536)] = 86714, - [SMALL_STATE(3537)] = 86773, - [SMALL_STATE(3538)] = 86831, - [SMALL_STATE(3539)] = 86889, - [SMALL_STATE(3540)] = 86947, - [SMALL_STATE(3541)] = 87005, - [SMALL_STATE(3542)] = 87063, - [SMALL_STATE(3543)] = 87121, - [SMALL_STATE(3544)] = 87223, - [SMALL_STATE(3545)] = 87281, - [SMALL_STATE(3546)] = 87339, - [SMALL_STATE(3547)] = 87397, - [SMALL_STATE(3548)] = 87455, - [SMALL_STATE(3549)] = 87513, - [SMALL_STATE(3550)] = 87587, - [SMALL_STATE(3551)] = 87659, - [SMALL_STATE(3552)] = 87717, - [SMALL_STATE(3553)] = 87775, - [SMALL_STATE(3554)] = 87875, - [SMALL_STATE(3555)] = 87973, - [SMALL_STATE(3556)] = 88031, - [SMALL_STATE(3557)] = 88125, - [SMALL_STATE(3558)] = 88183, - [SMALL_STATE(3559)] = 88241, - [SMALL_STATE(3560)] = 88307, - [SMALL_STATE(3561)] = 88365, - [SMALL_STATE(3562)] = 88423, - [SMALL_STATE(3563)] = 88513, - [SMALL_STATE(3564)] = 88599, - [SMALL_STATE(3565)] = 88657, - [SMALL_STATE(3566)] = 88715, - [SMALL_STATE(3567)] = 88777, - [SMALL_STATE(3568)] = 88835, - [SMALL_STATE(3569)] = 88897, - [SMALL_STATE(3570)] = 88955, - [SMALL_STATE(3571)] = 89039, - [SMALL_STATE(3572)] = 89097, - [SMALL_STATE(3573)] = 89203, - [SMALL_STATE(3574)] = 89261, - [SMALL_STATE(3575)] = 89335, - [SMALL_STATE(3576)] = 89393, - [SMALL_STATE(3577)] = 89463, - [SMALL_STATE(3578)] = 89521, - [SMALL_STATE(3579)] = 89593, - [SMALL_STATE(3580)] = 89651, - [SMALL_STATE(3581)] = 89709, - [SMALL_STATE(3582)] = 89767, - [SMALL_STATE(3583)] = 89873, - [SMALL_STATE(3584)] = 89931, - [SMALL_STATE(3585)] = 90011, - [SMALL_STATE(3586)] = 90069, - [SMALL_STATE(3587)] = 90127, - [SMALL_STATE(3588)] = 90185, - [SMALL_STATE(3589)] = 90245, - [SMALL_STATE(3590)] = 90303, - [SMALL_STATE(3591)] = 90361, - [SMALL_STATE(3592)] = 90467, - [SMALL_STATE(3593)] = 90537, - [SMALL_STATE(3594)] = 90595, - [SMALL_STATE(3595)] = 90653, - [SMALL_STATE(3596)] = 90729, - [SMALL_STATE(3597)] = 90787, - [SMALL_STATE(3598)] = 90845, - [SMALL_STATE(3599)] = 90903, - [SMALL_STATE(3600)] = 90961, - [SMALL_STATE(3601)] = 91021, - [SMALL_STATE(3602)] = 91081, - [SMALL_STATE(3603)] = 91143, - [SMALL_STATE(3604)] = 91201, - [SMALL_STATE(3605)] = 91259, - [SMALL_STATE(3606)] = 91317, - [SMALL_STATE(3607)] = 91419, - [SMALL_STATE(3608)] = 91481, - [SMALL_STATE(3609)] = 91545, - [SMALL_STATE(3610)] = 91603, - [SMALL_STATE(3611)] = 91667, - [SMALL_STATE(3612)] = 91725, - [SMALL_STATE(3613)] = 91783, - [SMALL_STATE(3614)] = 91847, - [SMALL_STATE(3615)] = 91911, - [SMALL_STATE(3616)] = 91975, - [SMALL_STATE(3617)] = 92039, - [SMALL_STATE(3618)] = 92097, - [SMALL_STATE(3619)] = 92161, - [SMALL_STATE(3620)] = 92225, - [SMALL_STATE(3621)] = 92289, - [SMALL_STATE(3622)] = 92353, - [SMALL_STATE(3623)] = 92417, - [SMALL_STATE(3624)] = 92475, - [SMALL_STATE(3625)] = 92533, - [SMALL_STATE(3626)] = 92591, - [SMALL_STATE(3627)] = 92653, - [SMALL_STATE(3628)] = 92711, - [SMALL_STATE(3629)] = 92769, - [SMALL_STATE(3630)] = 92875, - [SMALL_STATE(3631)] = 92933, - [SMALL_STATE(3632)] = 92991, - [SMALL_STATE(3633)] = 93093, - [SMALL_STATE(3634)] = 93151, - [SMALL_STATE(3635)] = 93209, - [SMALL_STATE(3636)] = 93267, - [SMALL_STATE(3637)] = 93325, - [SMALL_STATE(3638)] = 93383, - [SMALL_STATE(3639)] = 93445, - [SMALL_STATE(3640)] = 93523, - [SMALL_STATE(3641)] = 93581, - [SMALL_STATE(3642)] = 93639, - [SMALL_STATE(3643)] = 93701, - [SMALL_STATE(3644)] = 93759, - [SMALL_STATE(3645)] = 93821, - [SMALL_STATE(3646)] = 93879, - [SMALL_STATE(3647)] = 93949, - [SMALL_STATE(3648)] = 94051, - [SMALL_STATE(3649)] = 94109, - [SMALL_STATE(3650)] = 94167, - [SMALL_STATE(3651)] = 94225, - [SMALL_STATE(3652)] = 94283, - [SMALL_STATE(3653)] = 94341, - [SMALL_STATE(3654)] = 94399, - [SMALL_STATE(3655)] = 94457, - [SMALL_STATE(3656)] = 94515, - [SMALL_STATE(3657)] = 94573, - [SMALL_STATE(3658)] = 94631, - [SMALL_STATE(3659)] = 94689, - [SMALL_STATE(3660)] = 94747, - [SMALL_STATE(3661)] = 94805, - [SMALL_STATE(3662)] = 94863, - [SMALL_STATE(3663)] = 94935, - [SMALL_STATE(3664)] = 95007, - [SMALL_STATE(3665)] = 95067, - [SMALL_STATE(3666)] = 95125, - [SMALL_STATE(3667)] = 95183, - [SMALL_STATE(3668)] = 95241, - [SMALL_STATE(3669)] = 95343, - [SMALL_STATE(3670)] = 95401, - [SMALL_STATE(3671)] = 95459, - [SMALL_STATE(3672)] = 95529, - [SMALL_STATE(3673)] = 95587, - [SMALL_STATE(3674)] = 95645, - [SMALL_STATE(3675)] = 95703, - [SMALL_STATE(3676)] = 95769, - [SMALL_STATE(3677)] = 95827, - [SMALL_STATE(3678)] = 95885, - [SMALL_STATE(3679)] = 95947, - [SMALL_STATE(3680)] = 96005, - [SMALL_STATE(3681)] = 96063, - [SMALL_STATE(3682)] = 96123, - [SMALL_STATE(3683)] = 96181, - [SMALL_STATE(3684)] = 96239, - [SMALL_STATE(3685)] = 96297, - [SMALL_STATE(3686)] = 96355, - [SMALL_STATE(3687)] = 96413, - [SMALL_STATE(3688)] = 96471, - [SMALL_STATE(3689)] = 96529, - [SMALL_STATE(3690)] = 96587, - [SMALL_STATE(3691)] = 96645, - [SMALL_STATE(3692)] = 96715, - [SMALL_STATE(3693)] = 96779, - [SMALL_STATE(3694)] = 96842, - [SMALL_STATE(3695)] = 96945, - [SMALL_STATE(3696)] = 97006, - [SMALL_STATE(3697)] = 97109, - [SMALL_STATE(3698)] = 97212, - [SMALL_STATE(3699)] = 97269, - [SMALL_STATE(3700)] = 97372, - [SMALL_STATE(3701)] = 97475, - [SMALL_STATE(3702)] = 97578, - [SMALL_STATE(3703)] = 97681, - [SMALL_STATE(3704)] = 97784, - [SMALL_STATE(3705)] = 97879, - [SMALL_STATE(3706)] = 97982, - [SMALL_STATE(3707)] = 98043, - [SMALL_STATE(3708)] = 98138, - [SMALL_STATE(3709)] = 98201, - [SMALL_STATE(3710)] = 98258, - [SMALL_STATE(3711)] = 98361, - [SMALL_STATE(3712)] = 98464, - [SMALL_STATE(3713)] = 98521, - [SMALL_STATE(3714)] = 98624, - [SMALL_STATE(3715)] = 98683, - [SMALL_STATE(3716)] = 98786, - [SMALL_STATE(3717)] = 98889, - [SMALL_STATE(3718)] = 98992, - [SMALL_STATE(3719)] = 99095, - [SMALL_STATE(3720)] = 99152, - [SMALL_STATE(3721)] = 99255, - [SMALL_STATE(3722)] = 99358, - [SMALL_STATE(3723)] = 99461, - [SMALL_STATE(3724)] = 99564, - [SMALL_STATE(3725)] = 99667, - [SMALL_STATE(3726)] = 99770, - [SMALL_STATE(3727)] = 99873, - [SMALL_STATE(3728)] = 99938, - [SMALL_STATE(3729)] = 100041, - [SMALL_STATE(3730)] = 100144, - [SMALL_STATE(3731)] = 100247, - [SMALL_STATE(3732)] = 100350, - [SMALL_STATE(3733)] = 100453, - [SMALL_STATE(3734)] = 100556, - [SMALL_STATE(3735)] = 100659, - [SMALL_STATE(3736)] = 100762, - [SMALL_STATE(3737)] = 100865, - [SMALL_STATE(3738)] = 100926, - [SMALL_STATE(3739)] = 101029, - [SMALL_STATE(3740)] = 101132, - [SMALL_STATE(3741)] = 101235, - [SMALL_STATE(3742)] = 101338, - [SMALL_STATE(3743)] = 101395, - [SMALL_STATE(3744)] = 101452, - [SMALL_STATE(3745)] = 101555, - [SMALL_STATE(3746)] = 101658, - [SMALL_STATE(3747)] = 101761, - [SMALL_STATE(3748)] = 101864, - [SMALL_STATE(3749)] = 101921, - [SMALL_STATE(3750)] = 101978, - [SMALL_STATE(3751)] = 102049, - [SMALL_STATE(3752)] = 102106, - [SMALL_STATE(3753)] = 102209, - [SMALL_STATE(3754)] = 102312, - [SMALL_STATE(3755)] = 102415, - [SMALL_STATE(3756)] = 102486, - [SMALL_STATE(3757)] = 102589, - [SMALL_STATE(3758)] = 102692, - [SMALL_STATE(3759)] = 102749, - [SMALL_STATE(3760)] = 102812, - [SMALL_STATE(3761)] = 102883, - [SMALL_STATE(3762)] = 102940, - [SMALL_STATE(3763)] = 103043, - [SMALL_STATE(3764)] = 103146, - [SMALL_STATE(3765)] = 103203, - [SMALL_STATE(3766)] = 103306, - [SMALL_STATE(3767)] = 103375, - [SMALL_STATE(3768)] = 103478, - [SMALL_STATE(3769)] = 103581, - [SMALL_STATE(3770)] = 103684, - [SMALL_STATE(3771)] = 103747, - [SMALL_STATE(3772)] = 103804, - [SMALL_STATE(3773)] = 103861, - [SMALL_STATE(3774)] = 103964, - [SMALL_STATE(3775)] = 104067, - [SMALL_STATE(3776)] = 104170, - [SMALL_STATE(3777)] = 104273, - [SMALL_STATE(3778)] = 104376, - [SMALL_STATE(3779)] = 104479, - [SMALL_STATE(3780)] = 104582, - [SMALL_STATE(3781)] = 104685, - [SMALL_STATE(3782)] = 104788, - [SMALL_STATE(3783)] = 104857, - [SMALL_STATE(3784)] = 104960, - [SMALL_STATE(3785)] = 105063, - [SMALL_STATE(3786)] = 105166, - [SMALL_STATE(3787)] = 105269, - [SMALL_STATE(3788)] = 105372, - [SMALL_STATE(3789)] = 105475, - [SMALL_STATE(3790)] = 105578, - [SMALL_STATE(3791)] = 105681, - [SMALL_STATE(3792)] = 105738, - [SMALL_STATE(3793)] = 105841, - [SMALL_STATE(3794)] = 105944, - [SMALL_STATE(3795)] = 106047, - [SMALL_STATE(3796)] = 106150, - [SMALL_STATE(3797)] = 106253, - [SMALL_STATE(3798)] = 106324, - [SMALL_STATE(3799)] = 106383, - [SMALL_STATE(3800)] = 106483, - [SMALL_STATE(3801)] = 106539, - [SMALL_STATE(3802)] = 106595, - [SMALL_STATE(3803)] = 106651, - [SMALL_STATE(3804)] = 106707, - [SMALL_STATE(3805)] = 106763, - [SMALL_STATE(3806)] = 106819, - [SMALL_STATE(3807)] = 106875, - [SMALL_STATE(3808)] = 106945, - [SMALL_STATE(3809)] = 107001, - [SMALL_STATE(3810)] = 107057, - [SMALL_STATE(3811)] = 107113, - [SMALL_STATE(3812)] = 107169, - [SMALL_STATE(3813)] = 107225, - [SMALL_STATE(3814)] = 107281, - [SMALL_STATE(3815)] = 107337, - [SMALL_STATE(3816)] = 107393, - [SMALL_STATE(3817)] = 107449, - [SMALL_STATE(3818)] = 107515, - [SMALL_STATE(3819)] = 107579, - [SMALL_STATE(3820)] = 107679, - [SMALL_STATE(3821)] = 107743, - [SMALL_STATE(3822)] = 107799, - [SMALL_STATE(3823)] = 107871, - [SMALL_STATE(3824)] = 107943, - [SMALL_STATE(3825)] = 108015, - [SMALL_STATE(3826)] = 108107, - [SMALL_STATE(3827)] = 108179, - [SMALL_STATE(3828)] = 108235, - [SMALL_STATE(3829)] = 108291, - [SMALL_STATE(3830)] = 108347, - [SMALL_STATE(3831)] = 108403, - [SMALL_STATE(3832)] = 108459, - [SMALL_STATE(3833)] = 108515, - [SMALL_STATE(3834)] = 108571, - [SMALL_STATE(3835)] = 108627, - [SMALL_STATE(3836)] = 108727, - [SMALL_STATE(3837)] = 108783, - [SMALL_STATE(3838)] = 108843, - [SMALL_STATE(3839)] = 108901, - [SMALL_STATE(3840)] = 108957, - [SMALL_STATE(3841)] = 109013, - [SMALL_STATE(3842)] = 109069, - [SMALL_STATE(3843)] = 109169, - [SMALL_STATE(3844)] = 109225, - [SMALL_STATE(3845)] = 109281, - [SMALL_STATE(3846)] = 109337, - [SMALL_STATE(3847)] = 109393, - [SMALL_STATE(3848)] = 109449, - [SMALL_STATE(3849)] = 109549, - [SMALL_STATE(3850)] = 109605, - [SMALL_STATE(3851)] = 109705, - [SMALL_STATE(3852)] = 109761, - [SMALL_STATE(3853)] = 109817, - [SMALL_STATE(3854)] = 109873, - [SMALL_STATE(3855)] = 109929, - [SMALL_STATE(3856)] = 109985, - [SMALL_STATE(3857)] = 110085, - [SMALL_STATE(3858)] = 110141, - [SMALL_STATE(3859)] = 110197, - [SMALL_STATE(3860)] = 110253, - [SMALL_STATE(3861)] = 110309, - [SMALL_STATE(3862)] = 110365, - [SMALL_STATE(3863)] = 110421, - [SMALL_STATE(3864)] = 110477, - [SMALL_STATE(3865)] = 110533, - [SMALL_STATE(3866)] = 110589, - [SMALL_STATE(3867)] = 110645, - [SMALL_STATE(3868)] = 110701, - [SMALL_STATE(3869)] = 110757, - [SMALL_STATE(3870)] = 110857, - [SMALL_STATE(3871)] = 110913, - [SMALL_STATE(3872)] = 110969, - [SMALL_STATE(3873)] = 111061, - [SMALL_STATE(3874)] = 111117, - [SMALL_STATE(3875)] = 111173, - [SMALL_STATE(3876)] = 111229, - [SMALL_STATE(3877)] = 111329, - [SMALL_STATE(3878)] = 111399, - [SMALL_STATE(3879)] = 111469, - [SMALL_STATE(3880)] = 111569, - [SMALL_STATE(3881)] = 111625, - [SMALL_STATE(3882)] = 111725, - [SMALL_STATE(3883)] = 111825, - [SMALL_STATE(3884)] = 111919, - [SMALL_STATE(3885)] = 112013, - [SMALL_STATE(3886)] = 112069, - [SMALL_STATE(3887)] = 112169, - [SMALL_STATE(3888)] = 112225, - [SMALL_STATE(3889)] = 112281, - [SMALL_STATE(3890)] = 112337, - [SMALL_STATE(3891)] = 112437, - [SMALL_STATE(3892)] = 112537, - [SMALL_STATE(3893)] = 112593, - [SMALL_STATE(3894)] = 112649, - [SMALL_STATE(3895)] = 112749, - [SMALL_STATE(3896)] = 112805, - [SMALL_STATE(3897)] = 112861, - [SMALL_STATE(3898)] = 112917, - [SMALL_STATE(3899)] = 112973, - [SMALL_STATE(3900)] = 113029, - [SMALL_STATE(3901)] = 113085, - [SMALL_STATE(3902)] = 113141, - [SMALL_STATE(3903)] = 113197, - [SMALL_STATE(3904)] = 113253, - [SMALL_STATE(3905)] = 113353, - [SMALL_STATE(3906)] = 113417, - [SMALL_STATE(3907)] = 113473, - [SMALL_STATE(3908)] = 113529, - [SMALL_STATE(3909)] = 113585, - [SMALL_STATE(3910)] = 113649, - [SMALL_STATE(3911)] = 113749, - [SMALL_STATE(3912)] = 113849, - [SMALL_STATE(3913)] = 113905, - [SMALL_STATE(3914)] = 113961, - [SMALL_STATE(3915)] = 114017, - [SMALL_STATE(3916)] = 114073, - [SMALL_STATE(3917)] = 114129, - [SMALL_STATE(3918)] = 114185, - [SMALL_STATE(3919)] = 114241, - [SMALL_STATE(3920)] = 114297, - [SMALL_STATE(3921)] = 114353, - [SMALL_STATE(3922)] = 114409, - [SMALL_STATE(3923)] = 114465, - [SMALL_STATE(3924)] = 114521, - [SMALL_STATE(3925)] = 114621, - [SMALL_STATE(3926)] = 114692, - [SMALL_STATE(3927)] = 114785, - [SMALL_STATE(3928)] = 114878, - [SMALL_STATE(3929)] = 114971, - [SMALL_STATE(3930)] = 115026, - [SMALL_STATE(3931)] = 115119, - [SMALL_STATE(3932)] = 115190, - [SMALL_STATE(3933)] = 115283, - [SMALL_STATE(3934)] = 115338, - [SMALL_STATE(3935)] = 115409, - [SMALL_STATE(3936)] = 115502, - [SMALL_STATE(3937)] = 115595, - [SMALL_STATE(3938)] = 115666, - [SMALL_STATE(3939)] = 115759, - [SMALL_STATE(3940)] = 115828, - [SMALL_STATE(3941)] = 115921, - [SMALL_STATE(3942)] = 116014, - [SMALL_STATE(3943)] = 116073, - [SMALL_STATE(3944)] = 116132, - [SMALL_STATE(3945)] = 116225, - [SMALL_STATE(3946)] = 116318, - [SMALL_STATE(3947)] = 116411, - [SMALL_STATE(3948)] = 116480, - [SMALL_STATE(3949)] = 116573, - [SMALL_STATE(3950)] = 116644, - [SMALL_STATE(3951)] = 116715, - [SMALL_STATE(3952)] = 116774, - [SMALL_STATE(3953)] = 116833, - [SMALL_STATE(3954)] = 116888, - [SMALL_STATE(3955)] = 116947, - [SMALL_STATE(3956)] = 117006, - [SMALL_STATE(3957)] = 117065, - [SMALL_STATE(3958)] = 117156, - [SMALL_STATE(3959)] = 117249, - [SMALL_STATE(3960)] = 117308, - [SMALL_STATE(3961)] = 117367, - [SMALL_STATE(3962)] = 117426, - [SMALL_STATE(3963)] = 117487, - [SMALL_STATE(3964)] = 117580, - [SMALL_STATE(3965)] = 117673, - [SMALL_STATE(3966)] = 117728, - [SMALL_STATE(3967)] = 117837, - [SMALL_STATE(3968)] = 117928, - [SMALL_STATE(3969)] = 117999, - [SMALL_STATE(3970)] = 118092, - [SMALL_STATE(3971)] = 118185, - [SMALL_STATE(3972)] = 118244, - [SMALL_STATE(3973)] = 118353, - [SMALL_STATE(3974)] = 118446, - [SMALL_STATE(3975)] = 118505, - [SMALL_STATE(3976)] = 118598, - [SMALL_STATE(3977)] = 118658, - [SMALL_STATE(3978)] = 118746, - [SMALL_STATE(3979)] = 118800, - [SMALL_STATE(3980)] = 118854, - [SMALL_STATE(3981)] = 118918, - [SMALL_STATE(3982)] = 119008, - [SMALL_STATE(3983)] = 119076, - [SMALL_STATE(3984)] = 119164, - [SMALL_STATE(3985)] = 119252, - [SMALL_STATE(3986)] = 119306, - [SMALL_STATE(3987)] = 119366, - [SMALL_STATE(3988)] = 119420, - [SMALL_STATE(3989)] = 119508, - [SMALL_STATE(3990)] = 119600, - [SMALL_STATE(3991)] = 119692, - [SMALL_STATE(3992)] = 119780, - [SMALL_STATE(3993)] = 119834, - [SMALL_STATE(3994)] = 119894, - [SMALL_STATE(3995)] = 119948, - [SMALL_STATE(3996)] = 120038, - [SMALL_STATE(3997)] = 120128, - [SMALL_STATE(3998)] = 120218, - [SMALL_STATE(3999)] = 120278, - [SMALL_STATE(4000)] = 120366, - [SMALL_STATE(4001)] = 120458, - [SMALL_STATE(4002)] = 120522, - [SMALL_STATE(4003)] = 120576, - [SMALL_STATE(4004)] = 120630, - [SMALL_STATE(4005)] = 120690, - [SMALL_STATE(4006)] = 120782, - [SMALL_STATE(4007)] = 120842, - [SMALL_STATE(4008)] = 120909, - [SMALL_STATE(4009)] = 120998, - [SMALL_STATE(4010)] = 121087, - [SMALL_STATE(4011)] = 121176, - [SMALL_STATE(4012)] = 121265, - [SMALL_STATE(4013)] = 121354, - [SMALL_STATE(4014)] = 121407, - [SMALL_STATE(4015)] = 121496, - [SMALL_STATE(4016)] = 121585, - [SMALL_STATE(4017)] = 121674, - [SMALL_STATE(4018)] = 121763, - [SMALL_STATE(4019)] = 121846, - [SMALL_STATE(4020)] = 121905, - [SMALL_STATE(4021)] = 121994, - [SMALL_STATE(4022)] = 122083, - [SMALL_STATE(4023)] = 122172, - [SMALL_STATE(4024)] = 122261, - [SMALL_STATE(4025)] = 122316, - [SMALL_STATE(4026)] = 122415, - [SMALL_STATE(4027)] = 122478, - [SMALL_STATE(4028)] = 122567, - [SMALL_STATE(4029)] = 122620, - [SMALL_STATE(4030)] = 122709, - [SMALL_STATE(4031)] = 122798, - [SMALL_STATE(4032)] = 122887, - [SMALL_STATE(4033)] = 122976, - [SMALL_STATE(4034)] = 123065, - [SMALL_STATE(4035)] = 123154, - [SMALL_STATE(4036)] = 123221, - [SMALL_STATE(4037)] = 123310, - [SMALL_STATE(4038)] = 123399, - [SMALL_STATE(4039)] = 123462, - [SMALL_STATE(4040)] = 123551, - [SMALL_STATE(4041)] = 123640, - [SMALL_STATE(4042)] = 123729, - [SMALL_STATE(4043)] = 123788, - [SMALL_STATE(4044)] = 123841, - [SMALL_STATE(4045)] = 123930, - [SMALL_STATE(4046)] = 124019, - [SMALL_STATE(4047)] = 124078, - [SMALL_STATE(4048)] = 124143, - [SMALL_STATE(4049)] = 124226, - [SMALL_STATE(4050)] = 124315, - [SMALL_STATE(4051)] = 124404, - [SMALL_STATE(4052)] = 124493, - [SMALL_STATE(4053)] = 124582, - [SMALL_STATE(4054)] = 124671, - [SMALL_STATE(4055)] = 124723, - [SMALL_STATE(4056)] = 124775, - [SMALL_STATE(4057)] = 124827, - [SMALL_STATE(4058)] = 124891, - [SMALL_STATE(4059)] = 124947, - [SMALL_STATE(4060)] = 125015, - [SMALL_STATE(4061)] = 125079, - [SMALL_STATE(4062)] = 125131, - [SMALL_STATE(4063)] = 125183, - [SMALL_STATE(4064)] = 125235, - [SMALL_STATE(4065)] = 125287, - [SMALL_STATE(4066)] = 125355, - [SMALL_STATE(4067)] = 125407, - [SMALL_STATE(4068)] = 125459, - [SMALL_STATE(4069)] = 125511, - [SMALL_STATE(4070)] = 125579, - [SMALL_STATE(4071)] = 125631, - [SMALL_STATE(4072)] = 125683, - [SMALL_STATE(4073)] = 125749, - [SMALL_STATE(4074)] = 125807, - [SMALL_STATE(4075)] = 125859, - [SMALL_STATE(4076)] = 125911, - [SMALL_STATE(4077)] = 125963, - [SMALL_STATE(4078)] = 126015, - [SMALL_STATE(4079)] = 126067, - [SMALL_STATE(4080)] = 126119, - [SMALL_STATE(4081)] = 126171, - [SMALL_STATE(4082)] = 126223, - [SMALL_STATE(4083)] = 126275, - [SMALL_STATE(4084)] = 126327, - [SMALL_STATE(4085)] = 126395, - [SMALL_STATE(4086)] = 126481, - [SMALL_STATE(4087)] = 126549, - [SMALL_STATE(4088)] = 126601, - [SMALL_STATE(4089)] = 126687, - [SMALL_STATE(4090)] = 126739, - [SMALL_STATE(4091)] = 126791, - [SMALL_STATE(4092)] = 126879, - [SMALL_STATE(4093)] = 126931, - [SMALL_STATE(4094)] = 127019, - [SMALL_STATE(4095)] = 127071, - [SMALL_STATE(4096)] = 127123, - [SMALL_STATE(4097)] = 127175, - [SMALL_STATE(4098)] = 127227, - [SMALL_STATE(4099)] = 127279, - [SMALL_STATE(4100)] = 127331, - [SMALL_STATE(4101)] = 127383, - [SMALL_STATE(4102)] = 127435, - [SMALL_STATE(4103)] = 127487, - [SMALL_STATE(4104)] = 127555, - [SMALL_STATE(4105)] = 127607, - [SMALL_STATE(4106)] = 127659, - [SMALL_STATE(4107)] = 127711, - [SMALL_STATE(4108)] = 127798, - [SMALL_STATE(4109)] = 127889, - [SMALL_STATE(4110)] = 127978, - [SMALL_STATE(4111)] = 128063, - [SMALL_STATE(4112)] = 128146, - [SMALL_STATE(4113)] = 128225, - [SMALL_STATE(4114)] = 128300, - [SMALL_STATE(4115)] = 128371, - [SMALL_STATE(4116)] = 128444, - [SMALL_STATE(4117)] = 128543, - [SMALL_STATE(4118)] = 128646, - [SMALL_STATE(4119)] = 128731, - [SMALL_STATE(4120)] = 128830, - [SMALL_STATE(4121)] = 128933, - [SMALL_STATE(4122)] = 129000, - [SMALL_STATE(4123)] = 129079, - [SMALL_STATE(4124)] = 129158, - [SMALL_STATE(4125)] = 129237, - [SMALL_STATE(4126)] = 129316, - [SMALL_STATE(4127)] = 129377, - [SMALL_STATE(4128)] = 129480, - [SMALL_STATE(4129)] = 129539, - [SMALL_STATE(4130)] = 129624, - [SMALL_STATE(4131)] = 129707, - [SMALL_STATE(4132)] = 129766, - [SMALL_STATE(4133)] = 129851, - [SMALL_STATE(4134)] = 129918, - [SMALL_STATE(4135)] = 130003, - [SMALL_STATE(4136)] = 130060, - [SMALL_STATE(4137)] = 130127, - [SMALL_STATE(4138)] = 130206, - [SMALL_STATE(4139)] = 130263, - [SMALL_STATE(4140)] = 130342, - [SMALL_STATE(4141)] = 130421, - [SMALL_STATE(4142)] = 130508, - [SMALL_STATE(4143)] = 130587, - [SMALL_STATE(4144)] = 130654, - [SMALL_STATE(4145)] = 130739, - [SMALL_STATE(4146)] = 130824, - [SMALL_STATE(4147)] = 130875, - [SMALL_STATE(4148)] = 130960, - [SMALL_STATE(4149)] = 131017, - [SMALL_STATE(4150)] = 131096, - [SMALL_STATE(4151)] = 131183, - [SMALL_STATE(4152)] = 131262, - [SMALL_STATE(4153)] = 131341, - [SMALL_STATE(4154)] = 131420, - [SMALL_STATE(4155)] = 131505, - [SMALL_STATE(4156)] = 131592, - [SMALL_STATE(4157)] = 131685, - [SMALL_STATE(4158)] = 131770, - [SMALL_STATE(4159)] = 131869, - [SMALL_STATE(4160)] = 131968, - [SMALL_STATE(4161)] = 132019, - [SMALL_STATE(4162)] = 132076, - [SMALL_STATE(4163)] = 132163, - [SMALL_STATE(4164)] = 132214, - [SMALL_STATE(4165)] = 132297, - [SMALL_STATE(4166)] = 132382, - [SMALL_STATE(4167)] = 132451, - [SMALL_STATE(4168)] = 132550, - [SMALL_STATE(4169)] = 132653, - [SMALL_STATE(4170)] = 132740, - [SMALL_STATE(4171)] = 132835, - [SMALL_STATE(4172)] = 132885, - [SMALL_STATE(4173)] = 132991, - [SMALL_STATE(4174)] = 133097, - [SMALL_STATE(4175)] = 133149, - [SMALL_STATE(4176)] = 133203, - [SMALL_STATE(4177)] = 133285, - [SMALL_STATE(4178)] = 133335, - [SMALL_STATE(4179)] = 133385, - [SMALL_STATE(4180)] = 133491, - [SMALL_STATE(4181)] = 133545, - [SMALL_STATE(4182)] = 133599, - [SMALL_STATE(4183)] = 133681, - [SMALL_STATE(4184)] = 133735, - [SMALL_STATE(4185)] = 133795, - [SMALL_STATE(4186)] = 133869, - [SMALL_STATE(4187)] = 133943, - [SMALL_STATE(4188)] = 133993, - [SMALL_STATE(4189)] = 134053, - [SMALL_STATE(4190)] = 134113, - [SMALL_STATE(4191)] = 134199, - [SMALL_STATE(4192)] = 134251, - [SMALL_STATE(4193)] = 134305, - [SMALL_STATE(4194)] = 134359, - [SMALL_STATE(4195)] = 134413, - [SMALL_STATE(4196)] = 134467, - [SMALL_STATE(4197)] = 134521, - [SMALL_STATE(4198)] = 134595, - [SMALL_STATE(4199)] = 134649, - [SMALL_STATE(4200)] = 134701, - [SMALL_STATE(4201)] = 134761, - [SMALL_STATE(4202)] = 134825, - [SMALL_STATE(4203)] = 134889, - [SMALL_STATE(4204)] = 134943, - [SMALL_STATE(4205)] = 134995, - [SMALL_STATE(4206)] = 135045, - [SMALL_STATE(4207)] = 135099, - [SMALL_STATE(4208)] = 135153, - [SMALL_STATE(4209)] = 135207, - [SMALL_STATE(4210)] = 135273, - [SMALL_STATE(4211)] = 135339, - [SMALL_STATE(4212)] = 135425, - [SMALL_STATE(4213)] = 135510, - [SMALL_STATE(4214)] = 135593, - [SMALL_STATE(4215)] = 135646, - [SMALL_STATE(4216)] = 135729, - [SMALL_STATE(4217)] = 135814, - [SMALL_STATE(4218)] = 135867, - [SMALL_STATE(4219)] = 135934, - [SMALL_STATE(4220)] = 136011, - [SMALL_STATE(4221)] = 136060, - [SMALL_STATE(4222)] = 136109, - [SMALL_STATE(4223)] = 136158, - [SMALL_STATE(4224)] = 136235, - [SMALL_STATE(4225)] = 136312, - [SMALL_STATE(4226)] = 136389, - [SMALL_STATE(4227)] = 136442, - [SMALL_STATE(4228)] = 136491, - [SMALL_STATE(4229)] = 136540, - [SMALL_STATE(4230)] = 136595, - [SMALL_STATE(4231)] = 136644, - [SMALL_STATE(4232)] = 136699, - [SMALL_STATE(4233)] = 136748, - [SMALL_STATE(4234)] = 136797, - [SMALL_STATE(4235)] = 136878, - [SMALL_STATE(4236)] = 136959, - [SMALL_STATE(4237)] = 137008, - [SMALL_STATE(4238)] = 137057, - [SMALL_STATE(4239)] = 137112, - [SMALL_STATE(4240)] = 137177, - [SMALL_STATE(4241)] = 137226, - [SMALL_STATE(4242)] = 137275, - [SMALL_STATE(4243)] = 137366, - [SMALL_STATE(4244)] = 137415, - [SMALL_STATE(4245)] = 137464, - [SMALL_STATE(4246)] = 137545, - [SMALL_STATE(4247)] = 137628, - [SMALL_STATE(4248)] = 137693, - [SMALL_STATE(4249)] = 137742, - [SMALL_STATE(4250)] = 137797, - [SMALL_STATE(4251)] = 137848, - [SMALL_STATE(4252)] = 137897, - [SMALL_STATE(4253)] = 137946, - [SMALL_STATE(4254)] = 138029, - [SMALL_STATE(4255)] = 138120, - [SMALL_STATE(4256)] = 138201, - [SMALL_STATE(4257)] = 138250, - [SMALL_STATE(4258)] = 138307, - [SMALL_STATE(4259)] = 138391, - [SMALL_STATE(4260)] = 138471, - [SMALL_STATE(4261)] = 138559, - [SMALL_STATE(4262)] = 138635, - [SMALL_STATE(4263)] = 138711, - [SMALL_STATE(4264)] = 138787, - [SMALL_STATE(4265)] = 138863, - [SMALL_STATE(4266)] = 138939, - [SMALL_STATE(4267)] = 139031, - [SMALL_STATE(4268)] = 139079, - [SMALL_STATE(4269)] = 139175, - [SMALL_STATE(4270)] = 139247, - [SMALL_STATE(4271)] = 139343, - [SMALL_STATE(4272)] = 139417, - [SMALL_STATE(4273)] = 139487, - [SMALL_STATE(4274)] = 139553, - [SMALL_STATE(4275)] = 139635, - [SMALL_STATE(4276)] = 139683, - [SMALL_STATE(4277)] = 139763, - [SMALL_STATE(4278)] = 139833, - [SMALL_STATE(4279)] = 139923, - [SMALL_STATE(4280)] = 139985, - [SMALL_STATE(4281)] = 140043, - [SMALL_STATE(4282)] = 140091, - [SMALL_STATE(4283)] = 140187, - [SMALL_STATE(4284)] = 140281, - [SMALL_STATE(4285)] = 140371, - [SMALL_STATE(4286)] = 140457, - [SMALL_STATE(4287)] = 140539, - [SMALL_STATE(4288)] = 140597, - [SMALL_STATE(4289)] = 140675, - [SMALL_STATE(4290)] = 140723, - [SMALL_STATE(4291)] = 140799, - [SMALL_STATE(4292)] = 140867, - [SMALL_STATE(4293)] = 140951, - [SMALL_STATE(4294)] = 141029, - [SMALL_STATE(4295)] = 141119, - [SMALL_STATE(4296)] = 141177, - [SMALL_STATE(4297)] = 141239, - [SMALL_STATE(4298)] = 141313, - [SMALL_STATE(4299)] = 141387, - [SMALL_STATE(4300)] = 141467, - [SMALL_STATE(4301)] = 141541, - [SMALL_STATE(4302)] = 141621, - [SMALL_STATE(4303)] = 141689, - [SMALL_STATE(4304)] = 141789, - [SMALL_STATE(4305)] = 141873, - [SMALL_STATE(4306)] = 141957, - [SMALL_STATE(4307)] = 142047, - [SMALL_STATE(4308)] = 142141, - [SMALL_STATE(4309)] = 142199, - [SMALL_STATE(4310)] = 142291, - [SMALL_STATE(4311)] = 142383, - [SMALL_STATE(4312)] = 142471, - [SMALL_STATE(4313)] = 142567, - [SMALL_STATE(4314)] = 142661, - [SMALL_STATE(4315)] = 142733, - [SMALL_STATE(4316)] = 142823, - [SMALL_STATE(4317)] = 142871, - [SMALL_STATE(4318)] = 142963, - [SMALL_STATE(4319)] = 143059, - [SMALL_STATE(4320)] = 143149, - [SMALL_STATE(4321)] = 143241, - [SMALL_STATE(4322)] = 143307, - [SMALL_STATE(4323)] = 143402, - [SMALL_STATE(4324)] = 143499, - [SMALL_STATE(4325)] = 143552, - [SMALL_STATE(4326)] = 143649, - [SMALL_STATE(4327)] = 143744, - [SMALL_STATE(4328)] = 143841, - [SMALL_STATE(4329)] = 143938, - [SMALL_STATE(4330)] = 143991, - [SMALL_STATE(4331)] = 144088, - [SMALL_STATE(4332)] = 144185, - [SMALL_STATE(4333)] = 144282, - [SMALL_STATE(4334)] = 144355, - [SMALL_STATE(4335)] = 144452, - [SMALL_STATE(4336)] = 144549, - [SMALL_STATE(4337)] = 144646, - [SMALL_STATE(4338)] = 144699, - [SMALL_STATE(4339)] = 144796, - [SMALL_STATE(4340)] = 144893, - [SMALL_STATE(4341)] = 144990, - [SMALL_STATE(4342)] = 145043, - [SMALL_STATE(4343)] = 145092, - [SMALL_STATE(4344)] = 145189, - [SMALL_STATE(4345)] = 145286, - [SMALL_STATE(4346)] = 145383, - [SMALL_STATE(4347)] = 145432, - [SMALL_STATE(4348)] = 145479, - [SMALL_STATE(4349)] = 145576, - [SMALL_STATE(4350)] = 145673, - [SMALL_STATE(4351)] = 145720, - [SMALL_STATE(4352)] = 145767, - [SMALL_STATE(4353)] = 145814, - [SMALL_STATE(4354)] = 145861, - [SMALL_STATE(4355)] = 145910, - [SMALL_STATE(4356)] = 145957, - [SMALL_STATE(4357)] = 146008, - [SMALL_STATE(4358)] = 146055, - [SMALL_STATE(4359)] = 146112, - [SMALL_STATE(4360)] = 146163, - [SMALL_STATE(4361)] = 146260, - [SMALL_STATE(4362)] = 146357, - [SMALL_STATE(4363)] = 146404, - [SMALL_STATE(4364)] = 146501, - [SMALL_STATE(4365)] = 146598, - [SMALL_STATE(4366)] = 146695, - [SMALL_STATE(4367)] = 146792, - [SMALL_STATE(4368)] = 146889, - [SMALL_STATE(4369)] = 146986, - [SMALL_STATE(4370)] = 147039, - [SMALL_STATE(4371)] = 147136, - [SMALL_STATE(4372)] = 147187, - [SMALL_STATE(4373)] = 147284, - [SMALL_STATE(4374)] = 147363, - [SMALL_STATE(4375)] = 147442, - [SMALL_STATE(4376)] = 147493, - [SMALL_STATE(4377)] = 147542, - [SMALL_STATE(4378)] = 147639, - [SMALL_STATE(4379)] = 147686, - [SMALL_STATE(4380)] = 147737, - [SMALL_STATE(4381)] = 147786, - [SMALL_STATE(4382)] = 147837, - [SMALL_STATE(4383)] = 147894, - [SMALL_STATE(4384)] = 147945, - [SMALL_STATE(4385)] = 148010, - [SMALL_STATE(4386)] = 148107, - [SMALL_STATE(4387)] = 148164, - [SMALL_STATE(4388)] = 148215, - [SMALL_STATE(4389)] = 148266, - [SMALL_STATE(4390)] = 148317, - [SMALL_STATE(4391)] = 148414, - [SMALL_STATE(4392)] = 148511, - [SMALL_STATE(4393)] = 148562, - [SMALL_STATE(4394)] = 148615, - [SMALL_STATE(4395)] = 148666, - [SMALL_STATE(4396)] = 148763, - [SMALL_STATE(4397)] = 148860, - [SMALL_STATE(4398)] = 148957, - [SMALL_STATE(4399)] = 149004, - [SMALL_STATE(4400)] = 149077, - [SMALL_STATE(4401)] = 149174, - [SMALL_STATE(4402)] = 149271, - [SMALL_STATE(4403)] = 149368, - [SMALL_STATE(4404)] = 149465, - [SMALL_STATE(4405)] = 149538, - [SMALL_STATE(4406)] = 149635, - [SMALL_STATE(4407)] = 149708, - [SMALL_STATE(4408)] = 149805, - [SMALL_STATE(4409)] = 149902, - [SMALL_STATE(4410)] = 149953, - [SMALL_STATE(4411)] = 150011, - [SMALL_STATE(4412)] = 150105, - [SMALL_STATE(4413)] = 150185, - [SMALL_STATE(4414)] = 150279, - [SMALL_STATE(4415)] = 150357, - [SMALL_STATE(4416)] = 150429, - [SMALL_STATE(4417)] = 150503, - [SMALL_STATE(4418)] = 150597, - [SMALL_STATE(4419)] = 150689, - [SMALL_STATE(4420)] = 150765, - [SMALL_STATE(4421)] = 150823, - [SMALL_STATE(4422)] = 150911, - [SMALL_STATE(4423)] = 150985, - [SMALL_STATE(4424)] = 151037, - [SMALL_STATE(4425)] = 151131, - [SMALL_STATE(4426)] = 151177, - [SMALL_STATE(4427)] = 151249, - [SMALL_STATE(4428)] = 151309, - [SMALL_STATE(4429)] = 151387, - [SMALL_STATE(4430)] = 151475, - [SMALL_STATE(4431)] = 151541, - [SMALL_STATE(4432)] = 151635, - [SMALL_STATE(4433)] = 151727, - [SMALL_STATE(4434)] = 151821, - [SMALL_STATE(4435)] = 151873, - [SMALL_STATE(4436)] = 151965, - [SMALL_STATE(4437)] = 152037, - [SMALL_STATE(4438)] = 152131, - [SMALL_STATE(4439)] = 152205, - [SMALL_STATE(4440)] = 152279, - [SMALL_STATE(4441)] = 152373, - [SMALL_STATE(4442)] = 152443, - [SMALL_STATE(4443)] = 152515, - [SMALL_STATE(4444)] = 152609, - [SMALL_STATE(4445)] = 152661, - [SMALL_STATE(4446)] = 152735, - [SMALL_STATE(4447)] = 152829, - [SMALL_STATE(4448)] = 152923, - [SMALL_STATE(4449)] = 153017, - [SMALL_STATE(4450)] = 153089, - [SMALL_STATE(4451)] = 153181, - [SMALL_STATE(4452)] = 153253, - [SMALL_STATE(4453)] = 153347, - [SMALL_STATE(4454)] = 153441, - [SMALL_STATE(4455)] = 153501, - [SMALL_STATE(4456)] = 153579, - [SMALL_STATE(4457)] = 153667, - [SMALL_STATE(4458)] = 153761, - [SMALL_STATE(4459)] = 153855, - [SMALL_STATE(4460)] = 153907, - [SMALL_STATE(4461)] = 153999, - [SMALL_STATE(4462)] = 154093, - [SMALL_STATE(4463)] = 154185, - [SMALL_STATE(4464)] = 154235, - [SMALL_STATE(4465)] = 154329, - [SMALL_STATE(4466)] = 154401, - [SMALL_STATE(4467)] = 154495, - [SMALL_STATE(4468)] = 154569, - [SMALL_STATE(4469)] = 154621, - [SMALL_STATE(4470)] = 154713, - [SMALL_STATE(4471)] = 154807, - [SMALL_STATE(4472)] = 154859, - [SMALL_STATE(4473)] = 154951, - [SMALL_STATE(4474)] = 155043, - [SMALL_STATE(4475)] = 155135, - [SMALL_STATE(4476)] = 155229, - [SMALL_STATE(4477)] = 155321, - [SMALL_STATE(4478)] = 155415, - [SMALL_STATE(4479)] = 155475, - [SMALL_STATE(4480)] = 155567, - [SMALL_STATE(4481)] = 155619, - [SMALL_STATE(4482)] = 155713, - [SMALL_STATE(4483)] = 155807, - [SMALL_STATE(4484)] = 155899, - [SMALL_STATE(4485)] = 155973, - [SMALL_STATE(4486)] = 156065, - [SMALL_STATE(4487)] = 156153, - [SMALL_STATE(4488)] = 156227, - [SMALL_STATE(4489)] = 156279, - [SMALL_STATE(4490)] = 156371, - [SMALL_STATE(4491)] = 156459, - [SMALL_STATE(4492)] = 156511, - [SMALL_STATE(4493)] = 156599, - [SMALL_STATE(4494)] = 156693, - [SMALL_STATE(4495)] = 156745, - [SMALL_STATE(4496)] = 156833, - [SMALL_STATE(4497)] = 156893, - [SMALL_STATE(4498)] = 156987, - [SMALL_STATE(4499)] = 157047, - [SMALL_STATE(4500)] = 157121, - [SMALL_STATE(4501)] = 157215, - [SMALL_STATE(4502)] = 157267, - [SMALL_STATE(4503)] = 157349, - [SMALL_STATE(4504)] = 157409, - [SMALL_STATE(4505)] = 157471, - [SMALL_STATE(4506)] = 157563, - [SMALL_STATE(4507)] = 157657, - [SMALL_STATE(4508)] = 157717, - [SMALL_STATE(4509)] = 157811, - [SMALL_STATE(4510)] = 157859, - [SMALL_STATE(4511)] = 157923, - [SMALL_STATE(4512)] = 158009, - [SMALL_STATE(4513)] = 158093, - [SMALL_STATE(4514)] = 158149, - [SMALL_STATE(4515)] = 158201, - [SMALL_STATE(4516)] = 158283, - [SMALL_STATE(4517)] = 158363, - [SMALL_STATE(4518)] = 158451, - [SMALL_STATE(4519)] = 158543, - [SMALL_STATE(4520)] = 158607, - [SMALL_STATE(4521)] = 158693, - [SMALL_STATE(4522)] = 158777, - [SMALL_STATE(4523)] = 158859, - [SMALL_STATE(4524)] = 158939, - [SMALL_STATE(4525)] = 159015, - [SMALL_STATE(4526)] = 159089, - [SMALL_STATE(4527)] = 159159, - [SMALL_STATE(4528)] = 159225, - [SMALL_STATE(4529)] = 159293, - [SMALL_STATE(4530)] = 159381, - [SMALL_STATE(4531)] = 159473, - [SMALL_STATE(4532)] = 159561, - [SMALL_STATE(4533)] = 159653, - [SMALL_STATE(4534)] = 159741, - [SMALL_STATE(4535)] = 159817, - [SMALL_STATE(4536)] = 159905, - [SMALL_STATE(4537)] = 159979, - [SMALL_STATE(4538)] = 160031, - [SMALL_STATE(4539)] = 160101, - [SMALL_STATE(4540)] = 160153, - [SMALL_STATE(4541)] = 160245, - [SMALL_STATE(4542)] = 160297, - [SMALL_STATE(4543)] = 160363, - [SMALL_STATE(4544)] = 160455, - [SMALL_STATE(4545)] = 160549, - [SMALL_STATE(4546)] = 160607, - [SMALL_STATE(4547)] = 160659, - [SMALL_STATE(4548)] = 160719, - [SMALL_STATE(4549)] = 160787, - [SMALL_STATE(4550)] = 160847, - [SMALL_STATE(4551)] = 160905, - [SMALL_STATE(4552)] = 160993, - [SMALL_STATE(4553)] = 161087, - [SMALL_STATE(4554)] = 161181, - [SMALL_STATE(4555)] = 161275, - [SMALL_STATE(4556)] = 161369, - [SMALL_STATE(4557)] = 161461, - [SMALL_STATE(4558)] = 161553, - [SMALL_STATE(4559)] = 161645, - [SMALL_STATE(4560)] = 161739, - [SMALL_STATE(4561)] = 161817, - [SMALL_STATE(4562)] = 161911, - [SMALL_STATE(4563)] = 162005, - [SMALL_STATE(4564)] = 162077, - [SMALL_STATE(4565)] = 162171, - [SMALL_STATE(4566)] = 162259, - [SMALL_STATE(4567)] = 162351, - [SMALL_STATE(4568)] = 162439, - [SMALL_STATE(4569)] = 162533, - [SMALL_STATE(4570)] = 162625, - [SMALL_STATE(4571)] = 162711, - [SMALL_STATE(4572)] = 162805, - [SMALL_STATE(4573)] = 162877, - [SMALL_STATE(4574)] = 162971, - [SMALL_STATE(4575)] = 163035, - [SMALL_STATE(4576)] = 163129, - [SMALL_STATE(4577)] = 163189, - [SMALL_STATE(4578)] = 163241, - [SMALL_STATE(4579)] = 163333, - [SMALL_STATE(4580)] = 163419, - [SMALL_STATE(4581)] = 163503, - [SMALL_STATE(4582)] = 163595, - [SMALL_STATE(4583)] = 163689, - [SMALL_STATE(4584)] = 163762, - [SMALL_STATE(4585)] = 163807, - [SMALL_STATE(4586)] = 163898, - [SMALL_STATE(4587)] = 163943, - [SMALL_STATE(4588)] = 164034, - [SMALL_STATE(4589)] = 164079, - [SMALL_STATE(4590)] = 164170, - [SMALL_STATE(4591)] = 164215, - [SMALL_STATE(4592)] = 164306, - [SMALL_STATE(4593)] = 164397, - [SMALL_STATE(4594)] = 164488, - [SMALL_STATE(4595)] = 164561, - [SMALL_STATE(4596)] = 164652, - [SMALL_STATE(4597)] = 164743, - [SMALL_STATE(4598)] = 164788, - [SMALL_STATE(4599)] = 164879, - [SMALL_STATE(4600)] = 164960, - [SMALL_STATE(4601)] = 165051, - [SMALL_STATE(4602)] = 165102, - [SMALL_STATE(4603)] = 165193, - [SMALL_STATE(4604)] = 165284, - [SMALL_STATE(4605)] = 165375, - [SMALL_STATE(4606)] = 165420, - [SMALL_STATE(4607)] = 165465, - [SMALL_STATE(4608)] = 165556, - [SMALL_STATE(4609)] = 165647, - [SMALL_STATE(4610)] = 165738, - [SMALL_STATE(4611)] = 165811, - [SMALL_STATE(4612)] = 165894, - [SMALL_STATE(4613)] = 165939, - [SMALL_STATE(4614)] = 166030, - [SMALL_STATE(4615)] = 166121, - [SMALL_STATE(4616)] = 166212, - [SMALL_STATE(4617)] = 166303, - [SMALL_STATE(4618)] = 166376, - [SMALL_STATE(4619)] = 166467, - [SMALL_STATE(4620)] = 166558, - [SMALL_STATE(4621)] = 166649, - [SMALL_STATE(4622)] = 166740, - [SMALL_STATE(4623)] = 166831, - [SMALL_STATE(4624)] = 166878, - [SMALL_STATE(4625)] = 166951, - [SMALL_STATE(4626)] = 167042, - [SMALL_STATE(4627)] = 167115, - [SMALL_STATE(4628)] = 167206, - [SMALL_STATE(4629)] = 167251, - [SMALL_STATE(4630)] = 167324, - [SMALL_STATE(4631)] = 167397, - [SMALL_STATE(4632)] = 167470, - [SMALL_STATE(4633)] = 167561, - [SMALL_STATE(4634)] = 167606, - [SMALL_STATE(4635)] = 167697, - [SMALL_STATE(4636)] = 167788, - [SMALL_STATE(4637)] = 167879, - [SMALL_STATE(4638)] = 167970, - [SMALL_STATE(4639)] = 168041, - [SMALL_STATE(4640)] = 168112, - [SMALL_STATE(4641)] = 168183, - [SMALL_STATE(4642)] = 168254, - [SMALL_STATE(4643)] = 168299, - [SMALL_STATE(4644)] = 168390, - [SMALL_STATE(4645)] = 168471, - [SMALL_STATE(4646)] = 168562, - [SMALL_STATE(4647)] = 168635, - [SMALL_STATE(4648)] = 168708, - [SMALL_STATE(4649)] = 168799, - [SMALL_STATE(4650)] = 168890, - [SMALL_STATE(4651)] = 168963, - [SMALL_STATE(4652)] = 169054, - [SMALL_STATE(4653)] = 169127, - [SMALL_STATE(4654)] = 169172, - [SMALL_STATE(4655)] = 169263, - [SMALL_STATE(4656)] = 169336, - [SMALL_STATE(4657)] = 169427, - [SMALL_STATE(4658)] = 169518, - [SMALL_STATE(4659)] = 169599, - [SMALL_STATE(4660)] = 169644, - [SMALL_STATE(4661)] = 169689, - [SMALL_STATE(4662)] = 169780, - [SMALL_STATE(4663)] = 169825, - [SMALL_STATE(4664)] = 169870, - [SMALL_STATE(4665)] = 169961, - [SMALL_STATE(4666)] = 170052, - [SMALL_STATE(4667)] = 170143, - [SMALL_STATE(4668)] = 170188, - [SMALL_STATE(4669)] = 170269, - [SMALL_STATE(4670)] = 170360, - [SMALL_STATE(4671)] = 170451, - [SMALL_STATE(4672)] = 170542, - [SMALL_STATE(4673)] = 170633, - [SMALL_STATE(4674)] = 170724, - [SMALL_STATE(4675)] = 170815, - [SMALL_STATE(4676)] = 170888, - [SMALL_STATE(4677)] = 170969, - [SMALL_STATE(4678)] = 171060, - [SMALL_STATE(4679)] = 171105, - [SMALL_STATE(4680)] = 171178, - [SMALL_STATE(4681)] = 171251, - [SMALL_STATE(4682)] = 171342, - [SMALL_STATE(4683)] = 171433, - [SMALL_STATE(4684)] = 171478, - [SMALL_STATE(4685)] = 171559, - [SMALL_STATE(4686)] = 171650, - [SMALL_STATE(4687)] = 171741, - [SMALL_STATE(4688)] = 171832, - [SMALL_STATE(4689)] = 171923, - [SMALL_STATE(4690)] = 172014, - [SMALL_STATE(4691)] = 172059, - [SMALL_STATE(4692)] = 172150, - [SMALL_STATE(4693)] = 172241, - [SMALL_STATE(4694)] = 172286, - [SMALL_STATE(4695)] = 172377, - [SMALL_STATE(4696)] = 172422, - [SMALL_STATE(4697)] = 172513, - [SMALL_STATE(4698)] = 172604, - [SMALL_STATE(4699)] = 172695, - [SMALL_STATE(4700)] = 172740, - [SMALL_STATE(4701)] = 172831, - [SMALL_STATE(4702)] = 172876, - [SMALL_STATE(4703)] = 172967, - [SMALL_STATE(4704)] = 173058, - [SMALL_STATE(4705)] = 173149, - [SMALL_STATE(4706)] = 173240, - [SMALL_STATE(4707)] = 173285, - [SMALL_STATE(4708)] = 173358, - [SMALL_STATE(4709)] = 173449, - [SMALL_STATE(4710)] = 173536, - [SMALL_STATE(4711)] = 173581, - [SMALL_STATE(4712)] = 173652, - [SMALL_STATE(4713)] = 173743, - [SMALL_STATE(4714)] = 173834, - [SMALL_STATE(4715)] = 173925, - [SMALL_STATE(4716)] = 174016, - [SMALL_STATE(4717)] = 174061, - [SMALL_STATE(4718)] = 174152, - [SMALL_STATE(4719)] = 174223, - [SMALL_STATE(4720)] = 174294, - [SMALL_STATE(4721)] = 174339, - [SMALL_STATE(4722)] = 174430, - [SMALL_STATE(4723)] = 174501, - [SMALL_STATE(4724)] = 174592, - [SMALL_STATE(4725)] = 174683, - [SMALL_STATE(4726)] = 174770, - [SMALL_STATE(4727)] = 174815, - [SMALL_STATE(4728)] = 174906, - [SMALL_STATE(4729)] = 174997, - [SMALL_STATE(4730)] = 175070, - [SMALL_STATE(4731)] = 175115, - [SMALL_STATE(4732)] = 175160, - [SMALL_STATE(4733)] = 175205, - [SMALL_STATE(4734)] = 175250, - [SMALL_STATE(4735)] = 175341, - [SMALL_STATE(4736)] = 175432, - [SMALL_STATE(4737)] = 175477, - [SMALL_STATE(4738)] = 175554, - [SMALL_STATE(4739)] = 175601, - [SMALL_STATE(4740)] = 175646, - [SMALL_STATE(4741)] = 175737, - [SMALL_STATE(4742)] = 175828, - [SMALL_STATE(4743)] = 175879, - [SMALL_STATE(4744)] = 175924, - [SMALL_STATE(4745)] = 176015, - [SMALL_STATE(4746)] = 176106, - [SMALL_STATE(4747)] = 176151, - [SMALL_STATE(4748)] = 176196, - [SMALL_STATE(4749)] = 176277, - [SMALL_STATE(4750)] = 176322, - [SMALL_STATE(4751)] = 176413, - [SMALL_STATE(4752)] = 176504, - [SMALL_STATE(4753)] = 176595, - [SMALL_STATE(4754)] = 176686, - [SMALL_STATE(4755)] = 176777, - [SMALL_STATE(4756)] = 176868, - [SMALL_STATE(4757)] = 176959, - [SMALL_STATE(4758)] = 177032, - [SMALL_STATE(4759)] = 177123, - [SMALL_STATE(4760)] = 177214, - [SMALL_STATE(4761)] = 177305, - [SMALL_STATE(4762)] = 177378, - [SMALL_STATE(4763)] = 177469, - [SMALL_STATE(4764)] = 177560, - [SMALL_STATE(4765)] = 177651, - [SMALL_STATE(4766)] = 177742, - [SMALL_STATE(4767)] = 177833, - [SMALL_STATE(4768)] = 177924, - [SMALL_STATE(4769)] = 178001, - [SMALL_STATE(4770)] = 178092, - [SMALL_STATE(4771)] = 178183, - [SMALL_STATE(4772)] = 178274, - [SMALL_STATE(4773)] = 178365, - [SMALL_STATE(4774)] = 178456, - [SMALL_STATE(4775)] = 178547, - [SMALL_STATE(4776)] = 178638, - [SMALL_STATE(4777)] = 178687, - [SMALL_STATE(4778)] = 178731, - [SMALL_STATE(4779)] = 178775, - [SMALL_STATE(4780)] = 178861, - [SMALL_STATE(4781)] = 178939, - [SMALL_STATE(4782)] = 178983, - [SMALL_STATE(4783)] = 179027, - [SMALL_STATE(4784)] = 179071, - [SMALL_STATE(4785)] = 179149, - [SMALL_STATE(4786)] = 179227, - [SMALL_STATE(4787)] = 179315, - [SMALL_STATE(4788)] = 179363, - [SMALL_STATE(4789)] = 179407, - [SMALL_STATE(4790)] = 179493, - [SMALL_STATE(4791)] = 179537, - [SMALL_STATE(4792)] = 179615, - [SMALL_STATE(4793)] = 179659, - [SMALL_STATE(4794)] = 179703, - [SMALL_STATE(4795)] = 179747, - [SMALL_STATE(4796)] = 179793, - [SMALL_STATE(4797)] = 179871, - [SMALL_STATE(4798)] = 179915, - [SMALL_STATE(4799)] = 179993, - [SMALL_STATE(4800)] = 180069, - [SMALL_STATE(4801)] = 180147, - [SMALL_STATE(4802)] = 180225, - [SMALL_STATE(4803)] = 180311, - [SMALL_STATE(4804)] = 180355, - [SMALL_STATE(4805)] = 180441, - [SMALL_STATE(4806)] = 180485, - [SMALL_STATE(4807)] = 180529, - [SMALL_STATE(4808)] = 180573, - [SMALL_STATE(4809)] = 180617, - [SMALL_STATE(4810)] = 180661, - [SMALL_STATE(4811)] = 180705, - [SMALL_STATE(4812)] = 180749, - [SMALL_STATE(4813)] = 180793, - [SMALL_STATE(4814)] = 180841, - [SMALL_STATE(4815)] = 180885, - [SMALL_STATE(4816)] = 180929, - [SMALL_STATE(4817)] = 180973, - [SMALL_STATE(4818)] = 181017, - [SMALL_STATE(4819)] = 181087, - [SMALL_STATE(4820)] = 181157, - [SMALL_STATE(4821)] = 181201, - [SMALL_STATE(4822)] = 181271, - [SMALL_STATE(4823)] = 181341, - [SMALL_STATE(4824)] = 181427, - [SMALL_STATE(4825)] = 181513, - [SMALL_STATE(4826)] = 181561, - [SMALL_STATE(4827)] = 181615, - [SMALL_STATE(4828)] = 181659, - [SMALL_STATE(4829)] = 181703, - [SMALL_STATE(4830)] = 181747, - [SMALL_STATE(4831)] = 181799, - [SMALL_STATE(4832)] = 181843, - [SMALL_STATE(4833)] = 181887, - [SMALL_STATE(4834)] = 181931, - [SMALL_STATE(4835)] = 181975, - [SMALL_STATE(4836)] = 182019, - [SMALL_STATE(4837)] = 182073, - [SMALL_STATE(4838)] = 182149, - [SMALL_STATE(4839)] = 182193, - [SMALL_STATE(4840)] = 182237, - [SMALL_STATE(4841)] = 182281, - [SMALL_STATE(4842)] = 182325, - [SMALL_STATE(4843)] = 182394, - [SMALL_STATE(4844)] = 182479, - [SMALL_STATE(4845)] = 182528, - [SMALL_STATE(4846)] = 182603, - [SMALL_STATE(4847)] = 182658, - [SMALL_STATE(4848)] = 182707, - [SMALL_STATE(4849)] = 182776, - [SMALL_STATE(4850)] = 182845, - [SMALL_STATE(4851)] = 182890, - [SMALL_STATE(4852)] = 182959, - [SMALL_STATE(4853)] = 183008, - [SMALL_STATE(4854)] = 183059, - [SMALL_STATE(4855)] = 183128, - [SMALL_STATE(4856)] = 183197, - [SMALL_STATE(4857)] = 183246, - [SMALL_STATE(4858)] = 183331, - [SMALL_STATE(4859)] = 183380, - [SMALL_STATE(4860)] = 183423, - [SMALL_STATE(4861)] = 183498, - [SMALL_STATE(4862)] = 183567, - [SMALL_STATE(4863)] = 183616, - [SMALL_STATE(4864)] = 183673, - [SMALL_STATE(4865)] = 183758, - [SMALL_STATE(4866)] = 183817, - [SMALL_STATE(4867)] = 183902, - [SMALL_STATE(4868)] = 183957, - [SMALL_STATE(4869)] = 184006, - [SMALL_STATE(4870)] = 184075, - [SMALL_STATE(4871)] = 184124, - [SMALL_STATE(4872)] = 184193, - [SMALL_STATE(4873)] = 184278, - [SMALL_STATE(4874)] = 184347, - [SMALL_STATE(4875)] = 184416, - [SMALL_STATE(4876)] = 184485, - [SMALL_STATE(4877)] = 184542, - [SMALL_STATE(4878)] = 184591, - [SMALL_STATE(4879)] = 184640, - [SMALL_STATE(4880)] = 184725, - [SMALL_STATE(4881)] = 184778, - [SMALL_STATE(4882)] = 184847, - [SMALL_STATE(4883)] = 184906, - [SMALL_STATE(4884)] = 184991, - [SMALL_STATE(4885)] = 185040, - [SMALL_STATE(4886)] = 185089, - [SMALL_STATE(4887)] = 185138, - [SMALL_STATE(4888)] = 185229, - [SMALL_STATE(4889)] = 185278, - [SMALL_STATE(4890)] = 185347, - [SMALL_STATE(4891)] = 185404, - [SMALL_STATE(4892)] = 185473, - [SMALL_STATE(4893)] = 185558, - [SMALL_STATE(4894)] = 185643, - [SMALL_STATE(4895)] = 185688, - [SMALL_STATE(4896)] = 185737, - [SMALL_STATE(4897)] = 185822, - [SMALL_STATE(4898)] = 185879, - [SMALL_STATE(4899)] = 185948, - [SMALL_STATE(4900)] = 185990, - [SMALL_STATE(4901)] = 186032, - [SMALL_STATE(4902)] = 186100, - [SMALL_STATE(4903)] = 186184, - [SMALL_STATE(4904)] = 186226, - [SMALL_STATE(4905)] = 186268, - [SMALL_STATE(4906)] = 186310, - [SMALL_STATE(4907)] = 186352, - [SMALL_STATE(4908)] = 186420, - [SMALL_STATE(4909)] = 186462, - [SMALL_STATE(4910)] = 186530, - [SMALL_STATE(4911)] = 186572, - [SMALL_STATE(4912)] = 186650, - [SMALL_STATE(4913)] = 186692, - [SMALL_STATE(4914)] = 186734, - [SMALL_STATE(4915)] = 186812, - [SMALL_STATE(4916)] = 186854, - [SMALL_STATE(4917)] = 186896, - [SMALL_STATE(4918)] = 186938, - [SMALL_STATE(4919)] = 186980, - [SMALL_STATE(4920)] = 187022, - [SMALL_STATE(4921)] = 187064, - [SMALL_STATE(4922)] = 187106, - [SMALL_STATE(4923)] = 187148, - [SMALL_STATE(4924)] = 187190, - [SMALL_STATE(4925)] = 187232, - [SMALL_STATE(4926)] = 187274, - [SMALL_STATE(4927)] = 187316, - [SMALL_STATE(4928)] = 187358, - [SMALL_STATE(4929)] = 187400, - [SMALL_STATE(4930)] = 187442, - [SMALL_STATE(4931)] = 187484, - [SMALL_STATE(4932)] = 187526, - [SMALL_STATE(4933)] = 187568, - [SMALL_STATE(4934)] = 187610, - [SMALL_STATE(4935)] = 187652, - [SMALL_STATE(4936)] = 187694, - [SMALL_STATE(4937)] = 187736, - [SMALL_STATE(4938)] = 187778, - [SMALL_STATE(4939)] = 187862, - [SMALL_STATE(4940)] = 187940, - [SMALL_STATE(4941)] = 187982, - [SMALL_STATE(4942)] = 188024, - [SMALL_STATE(4943)] = 188108, - [SMALL_STATE(4944)] = 188186, - [SMALL_STATE(4945)] = 188254, - [SMALL_STATE(4946)] = 188296, - [SMALL_STATE(4947)] = 188338, - [SMALL_STATE(4948)] = 188380, - [SMALL_STATE(4949)] = 188422, - [SMALL_STATE(4950)] = 188477, - [SMALL_STATE(4951)] = 188532, - [SMALL_STATE(4952)] = 188609, - [SMALL_STATE(4953)] = 188686, - [SMALL_STATE(4954)] = 188763, - [SMALL_STATE(4955)] = 188840, - [SMALL_STATE(4956)] = 188923, - [SMALL_STATE(4957)] = 189000, - [SMALL_STATE(4958)] = 189083, - [SMALL_STATE(4959)] = 189150, - [SMALL_STATE(4960)] = 189227, - [SMALL_STATE(4961)] = 189310, - [SMALL_STATE(4962)] = 189359, - [SMALL_STATE(4963)] = 189408, - [SMALL_STATE(4964)] = 189475, - [SMALL_STATE(4965)] = 189542, - [SMALL_STATE(4966)] = 189619, - [SMALL_STATE(4967)] = 189696, - [SMALL_STATE(4968)] = 189779, - [SMALL_STATE(4969)] = 189856, - [SMALL_STATE(4970)] = 189933, - [SMALL_STATE(4971)] = 190010, - [SMALL_STATE(4972)] = 190077, - [SMALL_STATE(4973)] = 190160, - [SMALL_STATE(4974)] = 190243, - [SMALL_STATE(4975)] = 190320, - [SMALL_STATE(4976)] = 190373, - [SMALL_STATE(4977)] = 190439, - [SMALL_STATE(4978)] = 190521, - [SMALL_STATE(4979)] = 190601, - [SMALL_STATE(4980)] = 190681, - [SMALL_STATE(4981)] = 190731, - [SMALL_STATE(4982)] = 190811, - [SMALL_STATE(4983)] = 190891, - [SMALL_STATE(4984)] = 190971, - [SMALL_STATE(4985)] = 191015, - [SMALL_STATE(4986)] = 191059, - [SMALL_STATE(4987)] = 191115, - [SMALL_STATE(4988)] = 191191, - [SMALL_STATE(4989)] = 191271, - [SMALL_STATE(4990)] = 191347, - [SMALL_STATE(4991)] = 191427, - [SMALL_STATE(4992)] = 191509, - [SMALL_STATE(4993)] = 191585, - [SMALL_STATE(4994)] = 191661, - [SMALL_STATE(4995)] = 191741, - [SMALL_STATE(4996)] = 191785, - [SMALL_STATE(4997)] = 191851, - [SMALL_STATE(4998)] = 191917, - [SMALL_STATE(4999)] = 191999, - [SMALL_STATE(5000)] = 192079, - [SMALL_STATE(5001)] = 192155, - [SMALL_STATE(5002)] = 192235, - [SMALL_STATE(5003)] = 192289, - [SMALL_STATE(5004)] = 192365, - [SMALL_STATE(5005)] = 192441, - [SMALL_STATE(5006)] = 192517, - [SMALL_STATE(5007)] = 192597, - [SMALL_STATE(5008)] = 192641, - [SMALL_STATE(5009)] = 192721, - [SMALL_STATE(5010)] = 192787, - [SMALL_STATE(5011)] = 192867, - [SMALL_STATE(5012)] = 192949, - [SMALL_STATE(5013)] = 193029, - [SMALL_STATE(5014)] = 193105, - [SMALL_STATE(5015)] = 193185, - [SMALL_STATE(5016)] = 193227, - [SMALL_STATE(5017)] = 193271, - [SMALL_STATE(5018)] = 193347, - [SMALL_STATE(5019)] = 193401, - [SMALL_STATE(5020)] = 193451, - [SMALL_STATE(5021)] = 193527, - [SMALL_STATE(5022)] = 193571, - [SMALL_STATE(5023)] = 193651, - [SMALL_STATE(5024)] = 193695, - [SMALL_STATE(5025)] = 193739, - [SMALL_STATE(5026)] = 193819, - [SMALL_STATE(5027)] = 193895, - [SMALL_STATE(5028)] = 193971, - [SMALL_STATE(5029)] = 194047, - [SMALL_STATE(5030)] = 194091, - [SMALL_STATE(5031)] = 194135, - [SMALL_STATE(5032)] = 194211, - [SMALL_STATE(5033)] = 194267, - [SMALL_STATE(5034)] = 194347, - [SMALL_STATE(5035)] = 194423, - [SMALL_STATE(5036)] = 194467, - [SMALL_STATE(5037)] = 194549, - [SMALL_STATE(5038)] = 194625, - [SMALL_STATE(5039)] = 194669, - [SMALL_STATE(5040)] = 194745, - [SMALL_STATE(5041)] = 194821, - [SMALL_STATE(5042)] = 194897, - [SMALL_STATE(5043)] = 194978, - [SMALL_STATE(5044)] = 195059, - [SMALL_STATE(5045)] = 195102, - [SMALL_STATE(5046)] = 195145, - [SMALL_STATE(5047)] = 195226, - [SMALL_STATE(5048)] = 195307, - [SMALL_STATE(5049)] = 195350, - [SMALL_STATE(5050)] = 195431, - [SMALL_STATE(5051)] = 195474, - [SMALL_STATE(5052)] = 195517, - [SMALL_STATE(5053)] = 195560, - [SMALL_STATE(5054)] = 195603, - [SMALL_STATE(5055)] = 195646, - [SMALL_STATE(5056)] = 195727, - [SMALL_STATE(5057)] = 195808, - [SMALL_STATE(5058)] = 195889, - [SMALL_STATE(5059)] = 195970, - [SMALL_STATE(5060)] = 196051, - [SMALL_STATE(5061)] = 196132, - [SMALL_STATE(5062)] = 196213, - [SMALL_STATE(5063)] = 196294, - [SMALL_STATE(5064)] = 196375, - [SMALL_STATE(5065)] = 196456, - [SMALL_STATE(5066)] = 196537, - [SMALL_STATE(5067)] = 196618, - [SMALL_STATE(5068)] = 196669, - [SMALL_STATE(5069)] = 196744, - [SMALL_STATE(5070)] = 196825, - [SMALL_STATE(5071)] = 196906, - [SMALL_STATE(5072)] = 196987, - [SMALL_STATE(5073)] = 197068, - [SMALL_STATE(5074)] = 197149, - [SMALL_STATE(5075)] = 197230, - [SMALL_STATE(5076)] = 197311, - [SMALL_STATE(5077)] = 197392, - [SMALL_STATE(5078)] = 197473, - [SMALL_STATE(5079)] = 197554, - [SMALL_STATE(5080)] = 197635, - [SMALL_STATE(5081)] = 197716, - [SMALL_STATE(5082)] = 197797, - [SMALL_STATE(5083)] = 197878, - [SMALL_STATE(5084)] = 197959, - [SMALL_STATE(5085)] = 198040, - [SMALL_STATE(5086)] = 198121, - [SMALL_STATE(5087)] = 198202, - [SMALL_STATE(5088)] = 198283, - [SMALL_STATE(5089)] = 198364, - [SMALL_STATE(5090)] = 198445, - [SMALL_STATE(5091)] = 198526, - [SMALL_STATE(5092)] = 198607, - [SMALL_STATE(5093)] = 198688, - [SMALL_STATE(5094)] = 198769, - [SMALL_STATE(5095)] = 198850, - [SMALL_STATE(5096)] = 198931, - [SMALL_STATE(5097)] = 199012, - [SMALL_STATE(5098)] = 199093, - [SMALL_STATE(5099)] = 199174, - [SMALL_STATE(5100)] = 199255, - [SMALL_STATE(5101)] = 199330, - [SMALL_STATE(5102)] = 199411, - [SMALL_STATE(5103)] = 199492, - [SMALL_STATE(5104)] = 199573, - [SMALL_STATE(5105)] = 199654, - [SMALL_STATE(5106)] = 199735, - [SMALL_STATE(5107)] = 199816, - [SMALL_STATE(5108)] = 199897, - [SMALL_STATE(5109)] = 199978, - [SMALL_STATE(5110)] = 200059, - [SMALL_STATE(5111)] = 200140, - [SMALL_STATE(5112)] = 200221, - [SMALL_STATE(5113)] = 200302, - [SMALL_STATE(5114)] = 200383, - [SMALL_STATE(5115)] = 200434, - [SMALL_STATE(5116)] = 200515, - [SMALL_STATE(5117)] = 200596, - [SMALL_STATE(5118)] = 200677, - [SMALL_STATE(5119)] = 200758, - [SMALL_STATE(5120)] = 200839, - [SMALL_STATE(5121)] = 200920, - [SMALL_STATE(5122)] = 201001, - [SMALL_STATE(5123)] = 201082, - [SMALL_STATE(5124)] = 201163, - [SMALL_STATE(5125)] = 201244, - [SMALL_STATE(5126)] = 201325, - [SMALL_STATE(5127)] = 201406, - [SMALL_STATE(5128)] = 201487, - [SMALL_STATE(5129)] = 201568, - [SMALL_STATE(5130)] = 201649, - [SMALL_STATE(5131)] = 201730, - [SMALL_STATE(5132)] = 201811, - [SMALL_STATE(5133)] = 201892, - [SMALL_STATE(5134)] = 201967, - [SMALL_STATE(5135)] = 202048, - [SMALL_STATE(5136)] = 202129, - [SMALL_STATE(5137)] = 202210, - [SMALL_STATE(5138)] = 202291, - [SMALL_STATE(5139)] = 202366, - [SMALL_STATE(5140)] = 202447, - [SMALL_STATE(5141)] = 202528, - [SMALL_STATE(5142)] = 202609, - [SMALL_STATE(5143)] = 202690, - [SMALL_STATE(5144)] = 202771, - [SMALL_STATE(5145)] = 202852, - [SMALL_STATE(5146)] = 202933, - [SMALL_STATE(5147)] = 202976, - [SMALL_STATE(5148)] = 203019, - [SMALL_STATE(5149)] = 203100, - [SMALL_STATE(5150)] = 203181, - [SMALL_STATE(5151)] = 203262, - [SMALL_STATE(5152)] = 203343, - [SMALL_STATE(5153)] = 203424, - [SMALL_STATE(5154)] = 203467, - [SMALL_STATE(5155)] = 203510, - [SMALL_STATE(5156)] = 203591, - [SMALL_STATE(5157)] = 203669, - [SMALL_STATE(5158)] = 203747, - [SMALL_STATE(5159)] = 203825, - [SMALL_STATE(5160)] = 203899, - [SMALL_STATE(5161)] = 203973, - [SMALL_STATE(5162)] = 204051, - [SMALL_STATE(5163)] = 204125, - [SMALL_STATE(5164)] = 204203, - [SMALL_STATE(5165)] = 204281, - [SMALL_STATE(5166)] = 204355, - [SMALL_STATE(5167)] = 204429, - [SMALL_STATE(5168)] = 204503, - [SMALL_STATE(5169)] = 204573, - [SMALL_STATE(5170)] = 204647, - [SMALL_STATE(5171)] = 204721, - [SMALL_STATE(5172)] = 204795, - [SMALL_STATE(5173)] = 204869, - [SMALL_STATE(5174)] = 204947, - [SMALL_STATE(5175)] = 205021, - [SMALL_STATE(5176)] = 205095, - [SMALL_STATE(5177)] = 205173, - [SMALL_STATE(5178)] = 205247, - [SMALL_STATE(5179)] = 205321, - [SMALL_STATE(5180)] = 205395, - [SMALL_STATE(5181)] = 205465, - [SMALL_STATE(5182)] = 205539, - [SMALL_STATE(5183)] = 205613, - [SMALL_STATE(5184)] = 205687, - [SMALL_STATE(5185)] = 205757, - [SMALL_STATE(5186)] = 205831, - [SMALL_STATE(5187)] = 205905, - [SMALL_STATE(5188)] = 205979, - [SMALL_STATE(5189)] = 206053, - [SMALL_STATE(5190)] = 206131, - [SMALL_STATE(5191)] = 206209, - [SMALL_STATE(5192)] = 206283, - [SMALL_STATE(5193)] = 206357, - [SMALL_STATE(5194)] = 206431, - [SMALL_STATE(5195)] = 206509, - [SMALL_STATE(5196)] = 206583, - [SMALL_STATE(5197)] = 206653, - [SMALL_STATE(5198)] = 206727, - [SMALL_STATE(5199)] = 206801, - [SMALL_STATE(5200)] = 206875, - [SMALL_STATE(5201)] = 206949, - [SMALL_STATE(5202)] = 207027, - [SMALL_STATE(5203)] = 207105, - [SMALL_STATE(5204)] = 207179, - [SMALL_STATE(5205)] = 207253, - [SMALL_STATE(5206)] = 207331, - [SMALL_STATE(5207)] = 207405, - [SMALL_STATE(5208)] = 207479, - [SMALL_STATE(5209)] = 207553, - [SMALL_STATE(5210)] = 207623, - [SMALL_STATE(5211)] = 207697, - [SMALL_STATE(5212)] = 207771, - [SMALL_STATE(5213)] = 207845, - [SMALL_STATE(5214)] = 207919, - [SMALL_STATE(5215)] = 207993, - [SMALL_STATE(5216)] = 208063, - [SMALL_STATE(5217)] = 208137, - [SMALL_STATE(5218)] = 208207, - [SMALL_STATE(5219)] = 208281, - [SMALL_STATE(5220)] = 208355, - [SMALL_STATE(5221)] = 208433, - [SMALL_STATE(5222)] = 208507, - [SMALL_STATE(5223)] = 208585, - [SMALL_STATE(5224)] = 208659, - [SMALL_STATE(5225)] = 208733, - [SMALL_STATE(5226)] = 208811, - [SMALL_STATE(5227)] = 208885, - [SMALL_STATE(5228)] = 208959, - [SMALL_STATE(5229)] = 209029, - [SMALL_STATE(5230)] = 209103, - [SMALL_STATE(5231)] = 209177, - [SMALL_STATE(5232)] = 209251, - [SMALL_STATE(5233)] = 209329, - [SMALL_STATE(5234)] = 209403, - [SMALL_STATE(5235)] = 209470, - [SMALL_STATE(5236)] = 209543, - [SMALL_STATE(5237)] = 209616, - [SMALL_STATE(5238)] = 209689, - [SMALL_STATE(5239)] = 209762, - [SMALL_STATE(5240)] = 209807, - [SMALL_STATE(5241)] = 209874, - [SMALL_STATE(5242)] = 209919, - [SMALL_STATE(5243)] = 209986, - [SMALL_STATE(5244)] = 210027, - [SMALL_STATE(5245)] = 210094, - [SMALL_STATE(5246)] = 210161, - [SMALL_STATE(5247)] = 210228, - [SMALL_STATE(5248)] = 210295, - [SMALL_STATE(5249)] = 210362, - [SMALL_STATE(5250)] = 210429, - [SMALL_STATE(5251)] = 210496, - [SMALL_STATE(5252)] = 210563, - [SMALL_STATE(5253)] = 210630, - [SMALL_STATE(5254)] = 210703, - [SMALL_STATE(5255)] = 210776, - [SMALL_STATE(5256)] = 210849, - [SMALL_STATE(5257)] = 210922, - [SMALL_STATE(5258)] = 210989, - [SMALL_STATE(5259)] = 211032, - [SMALL_STATE(5260)] = 211099, - [SMALL_STATE(5261)] = 211166, - [SMALL_STATE(5262)] = 211239, - [SMALL_STATE(5263)] = 211306, - [SMALL_STATE(5264)] = 211373, - [SMALL_STATE(5265)] = 211440, - [SMALL_STATE(5266)] = 211507, - [SMALL_STATE(5267)] = 211574, - [SMALL_STATE(5268)] = 211611, - [SMALL_STATE(5269)] = 211648, - [SMALL_STATE(5270)] = 211715, - [SMALL_STATE(5271)] = 211782, - [SMALL_STATE(5272)] = 211849, - [SMALL_STATE(5273)] = 211916, - [SMALL_STATE(5274)] = 211983, - [SMALL_STATE(5275)] = 212050, - [SMALL_STATE(5276)] = 212117, - [SMALL_STATE(5277)] = 212184, - [SMALL_STATE(5278)] = 212251, - [SMALL_STATE(5279)] = 212318, - [SMALL_STATE(5280)] = 212385, - [SMALL_STATE(5281)] = 212452, - [SMALL_STATE(5282)] = 212519, - [SMALL_STATE(5283)] = 212592, - [SMALL_STATE(5284)] = 212659, - [SMALL_STATE(5285)] = 212725, - [SMALL_STATE(5286)] = 212765, - [SMALL_STATE(5287)] = 212831, - [SMALL_STATE(5288)] = 212897, - [SMALL_STATE(5289)] = 212963, - [SMALL_STATE(5290)] = 213029, - [SMALL_STATE(5291)] = 213095, - [SMALL_STATE(5292)] = 213161, - [SMALL_STATE(5293)] = 213227, - [SMALL_STATE(5294)] = 213293, - [SMALL_STATE(5295)] = 213359, - [SMALL_STATE(5296)] = 213425, - [SMALL_STATE(5297)] = 213491, - [SMALL_STATE(5298)] = 213557, - [SMALL_STATE(5299)] = 213623, - [SMALL_STATE(5300)] = 213689, - [SMALL_STATE(5301)] = 213755, - [SMALL_STATE(5302)] = 213821, - [SMALL_STATE(5303)] = 213887, - [SMALL_STATE(5304)] = 213952, - [SMALL_STATE(5305)] = 214017, - [SMALL_STATE(5306)] = 214082, - [SMALL_STATE(5307)] = 214147, - [SMALL_STATE(5308)] = 214212, - [SMALL_STATE(5309)] = 214277, - [SMALL_STATE(5310)] = 214342, - [SMALL_STATE(5311)] = 214407, - [SMALL_STATE(5312)] = 214472, - [SMALL_STATE(5313)] = 214537, - [SMALL_STATE(5314)] = 214602, - [SMALL_STATE(5315)] = 214667, - [SMALL_STATE(5316)] = 214732, - [SMALL_STATE(5317)] = 214797, - [SMALL_STATE(5318)] = 214862, - [SMALL_STATE(5319)] = 214927, - [SMALL_STATE(5320)] = 214992, - [SMALL_STATE(5321)] = 215057, - [SMALL_STATE(5322)] = 215122, - [SMALL_STATE(5323)] = 215187, - [SMALL_STATE(5324)] = 215252, - [SMALL_STATE(5325)] = 215317, - [SMALL_STATE(5326)] = 215382, - [SMALL_STATE(5327)] = 215447, - [SMALL_STATE(5328)] = 215484, - [SMALL_STATE(5329)] = 215549, - [SMALL_STATE(5330)] = 215614, - [SMALL_STATE(5331)] = 215679, - [SMALL_STATE(5332)] = 215744, - [SMALL_STATE(5333)] = 215809, - [SMALL_STATE(5334)] = 215874, - [SMALL_STATE(5335)] = 215932, - [SMALL_STATE(5336)] = 215996, - [SMALL_STATE(5337)] = 216060, - [SMALL_STATE(5338)] = 216118, - [SMALL_STATE(5339)] = 216182, - [SMALL_STATE(5340)] = 216240, - [SMALL_STATE(5341)] = 216304, - [SMALL_STATE(5342)] = 216362, - [SMALL_STATE(5343)] = 216426, - [SMALL_STATE(5344)] = 216490, - [SMALL_STATE(5345)] = 216553, - [SMALL_STATE(5346)] = 216604, - [SMALL_STATE(5347)] = 216667, - [SMALL_STATE(5348)] = 216730, - [SMALL_STATE(5349)] = 216793, - [SMALL_STATE(5350)] = 216856, - [SMALL_STATE(5351)] = 216919, - [SMALL_STATE(5352)] = 216980, - [SMALL_STATE(5353)] = 217031, - [SMALL_STATE(5354)] = 217092, - [SMALL_STATE(5355)] = 217153, - [SMALL_STATE(5356)] = 217214, - [SMALL_STATE(5357)] = 217277, - [SMALL_STATE(5358)] = 217328, - [SMALL_STATE(5359)] = 217391, - [SMALL_STATE(5360)] = 217454, - [SMALL_STATE(5361)] = 217517, - [SMALL_STATE(5362)] = 217580, - [SMALL_STATE(5363)] = 217643, - [SMALL_STATE(5364)] = 217706, - [SMALL_STATE(5365)] = 217769, - [SMALL_STATE(5366)] = 217830, - [SMALL_STATE(5367)] = 217893, - [SMALL_STATE(5368)] = 217954, - [SMALL_STATE(5369)] = 218017, - [SMALL_STATE(5370)] = 218080, - [SMALL_STATE(5371)] = 218143, - [SMALL_STATE(5372)] = 218204, - [SMALL_STATE(5373)] = 218266, - [SMALL_STATE(5374)] = 218328, - [SMALL_STATE(5375)] = 218390, - [SMALL_STATE(5376)] = 218452, - [SMALL_STATE(5377)] = 218526, - [SMALL_STATE(5378)] = 218588, - [SMALL_STATE(5379)] = 218662, - [SMALL_STATE(5380)] = 218724, - [SMALL_STATE(5381)] = 218786, - [SMALL_STATE(5382)] = 218828, - [SMALL_STATE(5383)] = 218890, - [SMALL_STATE(5384)] = 218952, - [SMALL_STATE(5385)] = 218994, - [SMALL_STATE(5386)] = 219056, - [SMALL_STATE(5387)] = 219118, - [SMALL_STATE(5388)] = 219180, - [SMALL_STATE(5389)] = 219234, - [SMALL_STATE(5390)] = 219308, - [SMALL_STATE(5391)] = 219370, - [SMALL_STATE(5392)] = 219432, - [SMALL_STATE(5393)] = 219494, - [SMALL_STATE(5394)] = 219553, - [SMALL_STATE(5395)] = 219612, - [SMALL_STATE(5396)] = 219671, - [SMALL_STATE(5397)] = 219730, - [SMALL_STATE(5398)] = 219789, - [SMALL_STATE(5399)] = 219848, - [SMALL_STATE(5400)] = 219907, - [SMALL_STATE(5401)] = 219966, - [SMALL_STATE(5402)] = 220025, - [SMALL_STATE(5403)] = 220084, - [SMALL_STATE(5404)] = 220143, - [SMALL_STATE(5405)] = 220202, - [SMALL_STATE(5406)] = 220261, - [SMALL_STATE(5407)] = 220310, - [SMALL_STATE(5408)] = 220341, - [SMALL_STATE(5409)] = 220400, - [SMALL_STATE(5410)] = 220459, - [SMALL_STATE(5411)] = 220518, - [SMALL_STATE(5412)] = 220577, - [SMALL_STATE(5413)] = 220636, - [SMALL_STATE(5414)] = 220695, - [SMALL_STATE(5415)] = 220754, - [SMALL_STATE(5416)] = 220813, - [SMALL_STATE(5417)] = 220872, - [SMALL_STATE(5418)] = 220924, - [SMALL_STATE(5419)] = 220962, - [SMALL_STATE(5420)] = 221000, - [SMALL_STATE(5421)] = 221038, - [SMALL_STATE(5422)] = 221090, - [SMALL_STATE(5423)] = 221142, - [SMALL_STATE(5424)] = 221194, - [SMALL_STATE(5425)] = 221246, - [SMALL_STATE(5426)] = 221278, - [SMALL_STATE(5427)] = 221330, - [SMALL_STATE(5428)] = 221364, - [SMALL_STATE(5429)] = 221404, - [SMALL_STATE(5430)] = 221456, - [SMALL_STATE(5431)] = 221508, - [SMALL_STATE(5432)] = 221560, - [SMALL_STATE(5433)] = 221612, - [SMALL_STATE(5434)] = 221664, - [SMALL_STATE(5435)] = 221716, - [SMALL_STATE(5436)] = 221768, - [SMALL_STATE(5437)] = 221820, - [SMALL_STATE(5438)] = 221872, - [SMALL_STATE(5439)] = 221906, - [SMALL_STATE(5440)] = 221958, - [SMALL_STATE(5441)] = 222010, - [SMALL_STATE(5442)] = 222062, - [SMALL_STATE(5443)] = 222096, - [SMALL_STATE(5444)] = 222148, - [SMALL_STATE(5445)] = 222200, - [SMALL_STATE(5446)] = 222252, - [SMALL_STATE(5447)] = 222290, - [SMALL_STATE(5448)] = 222328, - [SMALL_STATE(5449)] = 222366, - [SMALL_STATE(5450)] = 222418, - [SMALL_STATE(5451)] = 222456, - [SMALL_STATE(5452)] = 222508, - [SMALL_STATE(5453)] = 222546, - [SMALL_STATE(5454)] = 222584, - [SMALL_STATE(5455)] = 222636, - [SMALL_STATE(5456)] = 222688, - [SMALL_STATE(5457)] = 222740, - [SMALL_STATE(5458)] = 222792, - [SMALL_STATE(5459)] = 222826, - [SMALL_STATE(5460)] = 222878, - [SMALL_STATE(5461)] = 222948, - [SMALL_STATE(5462)] = 223000, - [SMALL_STATE(5463)] = 223070, - [SMALL_STATE(5464)] = 223118, - [SMALL_STATE(5465)] = 223170, - [SMALL_STATE(5466)] = 223222, - [SMALL_STATE(5467)] = 223274, - [SMALL_STATE(5468)] = 223326, - [SMALL_STATE(5469)] = 223366, - [SMALL_STATE(5470)] = 223418, - [SMALL_STATE(5471)] = 223464, - [SMALL_STATE(5472)] = 223498, - [SMALL_STATE(5473)] = 223550, - [SMALL_STATE(5474)] = 223602, - [SMALL_STATE(5475)] = 223654, - [SMALL_STATE(5476)] = 223706, - [SMALL_STATE(5477)] = 223758, - [SMALL_STATE(5478)] = 223810, - [SMALL_STATE(5479)] = 223880, - [SMALL_STATE(5480)] = 223918, - [SMALL_STATE(5481)] = 223970, - [SMALL_STATE(5482)] = 224022, - [SMALL_STATE(5483)] = 224074, - [SMALL_STATE(5484)] = 224126, - [SMALL_STATE(5485)] = 224185, - [SMALL_STATE(5486)] = 224244, - [SMALL_STATE(5487)] = 224305, - [SMALL_STATE(5488)] = 224364, - [SMALL_STATE(5489)] = 224423, - [SMALL_STATE(5490)] = 224482, - [SMALL_STATE(5491)] = 224511, - [SMALL_STATE(5492)] = 224548, - [SMALL_STATE(5493)] = 224577, - [SMALL_STATE(5494)] = 224606, - [SMALL_STATE(5495)] = 224635, - [SMALL_STATE(5496)] = 224694, - [SMALL_STATE(5497)] = 224753, - [SMALL_STATE(5498)] = 224814, - [SMALL_STATE(5499)] = 224867, - [SMALL_STATE(5500)] = 224926, - [SMALL_STATE(5501)] = 224985, - [SMALL_STATE(5502)] = 225044, - [SMALL_STATE(5503)] = 225105, - [SMALL_STATE(5504)] = 225134, - [SMALL_STATE(5505)] = 225193, - [SMALL_STATE(5506)] = 225252, - [SMALL_STATE(5507)] = 225305, - [SMALL_STATE(5508)] = 225364, - [SMALL_STATE(5509)] = 225423, - [SMALL_STATE(5510)] = 225482, - [SMALL_STATE(5511)] = 225541, - [SMALL_STATE(5512)] = 225600, - [SMALL_STATE(5513)] = 225659, - [SMALL_STATE(5514)] = 225718, - [SMALL_STATE(5515)] = 225755, - [SMALL_STATE(5516)] = 225816, - [SMALL_STATE(5517)] = 225875, - [SMALL_STATE(5518)] = 225928, - [SMALL_STATE(5519)] = 225987, - [SMALL_STATE(5520)] = 226046, - [SMALL_STATE(5521)] = 226079, - [SMALL_STATE(5522)] = 226138, - [SMALL_STATE(5523)] = 226197, - [SMALL_STATE(5524)] = 226256, - [SMALL_STATE(5525)] = 226299, - [SMALL_STATE(5526)] = 226352, - [SMALL_STATE(5527)] = 226411, - [SMALL_STATE(5528)] = 226470, - [SMALL_STATE(5529)] = 226523, - [SMALL_STATE(5530)] = 226582, - [SMALL_STATE(5531)] = 226641, - [SMALL_STATE(5532)] = 226700, - [SMALL_STATE(5533)] = 226759, - [SMALL_STATE(5534)] = 226818, - [SMALL_STATE(5535)] = 226855, - [SMALL_STATE(5536)] = 226914, - [SMALL_STATE(5537)] = 226947, - [SMALL_STATE(5538)] = 227006, - [SMALL_STATE(5539)] = 227059, - [SMALL_STATE(5540)] = 227118, - [SMALL_STATE(5541)] = 227177, - [SMALL_STATE(5542)] = 227236, - [SMALL_STATE(5543)] = 227295, - [SMALL_STATE(5544)] = 227354, - [SMALL_STATE(5545)] = 227391, - [SMALL_STATE(5546)] = 227444, - [SMALL_STATE(5547)] = 227499, - [SMALL_STATE(5548)] = 227552, - [SMALL_STATE(5549)] = 227611, - [SMALL_STATE(5550)] = 227670, - [SMALL_STATE(5551)] = 227699, - [SMALL_STATE(5552)] = 227752, - [SMALL_STATE(5553)] = 227811, - [SMALL_STATE(5554)] = 227840, - [SMALL_STATE(5555)] = 227877, - [SMALL_STATE(5556)] = 227914, - [SMALL_STATE(5557)] = 227945, - [SMALL_STATE(5558)] = 228004, - [SMALL_STATE(5559)] = 228063, - [SMALL_STATE(5560)] = 228122, - [SMALL_STATE(5561)] = 228181, - [SMALL_STATE(5562)] = 228234, - [SMALL_STATE(5563)] = 228293, - [SMALL_STATE(5564)] = 228352, - [SMALL_STATE(5565)] = 228411, - [SMALL_STATE(5566)] = 228470, - [SMALL_STATE(5567)] = 228529, - [SMALL_STATE(5568)] = 228588, - [SMALL_STATE(5569)] = 228647, - [SMALL_STATE(5570)] = 228706, - [SMALL_STATE(5571)] = 228765, - [SMALL_STATE(5572)] = 228824, - [SMALL_STATE(5573)] = 228883, - [SMALL_STATE(5574)] = 228942, - [SMALL_STATE(5575)] = 229001, - [SMALL_STATE(5576)] = 229060, - [SMALL_STATE(5577)] = 229119, - [SMALL_STATE(5578)] = 229148, - [SMALL_STATE(5579)] = 229179, - [SMALL_STATE(5580)] = 229208, - [SMALL_STATE(5581)] = 229263, - [SMALL_STATE(5582)] = 229318, - [SMALL_STATE(5583)] = 229377, - [SMALL_STATE(5584)] = 229436, - [SMALL_STATE(5585)] = 229495, - [SMALL_STATE(5586)] = 229556, - [SMALL_STATE(5587)] = 229615, - [SMALL_STATE(5588)] = 229648, - [SMALL_STATE(5589)] = 229707, - [SMALL_STATE(5590)] = 229766, - [SMALL_STATE(5591)] = 229825, - [SMALL_STATE(5592)] = 229888, - [SMALL_STATE(5593)] = 229941, - [SMALL_STATE(5594)] = 229984, - [SMALL_STATE(5595)] = 230013, - [SMALL_STATE(5596)] = 230042, - [SMALL_STATE(5597)] = 230101, - [SMALL_STATE(5598)] = 230160, - [SMALL_STATE(5599)] = 230219, - [SMALL_STATE(5600)] = 230278, - [SMALL_STATE(5601)] = 230337, - [SMALL_STATE(5602)] = 230396, - [SMALL_STATE(5603)] = 230455, - [SMALL_STATE(5604)] = 230492, - [SMALL_STATE(5605)] = 230521, - [SMALL_STATE(5606)] = 230550, - [SMALL_STATE(5607)] = 230583, - [SMALL_STATE(5608)] = 230642, - [SMALL_STATE(5609)] = 230701, - [SMALL_STATE(5610)] = 230730, - [SMALL_STATE(5611)] = 230759, - [SMALL_STATE(5612)] = 230788, - [SMALL_STATE(5613)] = 230847, - [SMALL_STATE(5614)] = 230906, - [SMALL_STATE(5615)] = 230965, - [SMALL_STATE(5616)] = 231002, - [SMALL_STATE(5617)] = 231039, - [SMALL_STATE(5618)] = 231100, - [SMALL_STATE(5619)] = 231129, - [SMALL_STATE(5620)] = 231158, - [SMALL_STATE(5621)] = 231187, - [SMALL_STATE(5622)] = 231224, - [SMALL_STATE(5623)] = 231253, - [SMALL_STATE(5624)] = 231312, - [SMALL_STATE(5625)] = 231371, - [SMALL_STATE(5626)] = 231400, - [SMALL_STATE(5627)] = 231429, - [SMALL_STATE(5628)] = 231482, - [SMALL_STATE(5629)] = 231527, - [SMALL_STATE(5630)] = 231586, - [SMALL_STATE(5631)] = 231645, - [SMALL_STATE(5632)] = 231698, - [SMALL_STATE(5633)] = 231759, - [SMALL_STATE(5634)] = 231818, - [SMALL_STATE(5635)] = 231877, - [SMALL_STATE(5636)] = 231936, - [SMALL_STATE(5637)] = 231979, - [SMALL_STATE(5638)] = 232032, - [SMALL_STATE(5639)] = 232091, - [SMALL_STATE(5640)] = 232150, - [SMALL_STATE(5641)] = 232209, - [SMALL_STATE(5642)] = 232261, - [SMALL_STATE(5643)] = 232305, - [SMALL_STATE(5644)] = 232347, - [SMALL_STATE(5645)] = 232397, - [SMALL_STATE(5646)] = 232437, - [SMALL_STATE(5647)] = 232473, - [SMALL_STATE(5648)] = 232525, - [SMALL_STATE(5649)] = 232553, - [SMALL_STATE(5650)] = 232587, - [SMALL_STATE(5651)] = 232637, - [SMALL_STATE(5652)] = 232689, - [SMALL_STATE(5653)] = 232729, - [SMALL_STATE(5654)] = 232769, - [SMALL_STATE(5655)] = 232833, - [SMALL_STATE(5656)] = 232873, - [SMALL_STATE(5657)] = 232913, - [SMALL_STATE(5658)] = 232953, - [SMALL_STATE(5659)] = 232993, - [SMALL_STATE(5660)] = 233057, - [SMALL_STATE(5661)] = 233097, - [SMALL_STATE(5662)] = 233137, - [SMALL_STATE(5663)] = 233177, - [SMALL_STATE(5664)] = 233217, - [SMALL_STATE(5665)] = 233257, - [SMALL_STATE(5666)] = 233297, - [SMALL_STATE(5667)] = 233337, - [SMALL_STATE(5668)] = 233389, - [SMALL_STATE(5669)] = 233439, - [SMALL_STATE(5670)] = 233479, - [SMALL_STATE(5671)] = 233519, - [SMALL_STATE(5672)] = 233559, - [SMALL_STATE(5673)] = 233599, - [SMALL_STATE(5674)] = 233627, - [SMALL_STATE(5675)] = 233655, - [SMALL_STATE(5676)] = 233707, - [SMALL_STATE(5677)] = 233771, - [SMALL_STATE(5678)] = 233811, - [SMALL_STATE(5679)] = 233851, - [SMALL_STATE(5680)] = 233891, - [SMALL_STATE(5681)] = 233931, - [SMALL_STATE(5682)] = 233983, - [SMALL_STATE(5683)] = 234035, - [SMALL_STATE(5684)] = 234081, - [SMALL_STATE(5685)] = 234133, - [SMALL_STATE(5686)] = 234197, - [SMALL_STATE(5687)] = 234237, - [SMALL_STATE(5688)] = 234269, - [SMALL_STATE(5689)] = 234301, - [SMALL_STATE(5690)] = 234353, - [SMALL_STATE(5691)] = 234405, - [SMALL_STATE(5692)] = 234457, - [SMALL_STATE(5693)] = 234501, - [SMALL_STATE(5694)] = 234553, - [SMALL_STATE(5695)] = 234603, - [SMALL_STATE(5696)] = 234655, - [SMALL_STATE(5697)] = 234705, - [SMALL_STATE(5698)] = 234733, - [SMALL_STATE(5699)] = 234785, - [SMALL_STATE(5700)] = 234813, - [SMALL_STATE(5701)] = 234853, - [SMALL_STATE(5702)] = 234893, - [SMALL_STATE(5703)] = 234957, - [SMALL_STATE(5704)] = 234997, - [SMALL_STATE(5705)] = 235037, - [SMALL_STATE(5706)] = 235065, - [SMALL_STATE(5707)] = 235105, - [SMALL_STATE(5708)] = 235145, - [SMALL_STATE(5709)] = 235185, - [SMALL_STATE(5710)] = 235225, - [SMALL_STATE(5711)] = 235265, - [SMALL_STATE(5712)] = 235305, - [SMALL_STATE(5713)] = 235345, - [SMALL_STATE(5714)] = 235385, - [SMALL_STATE(5715)] = 235425, - [SMALL_STATE(5716)] = 235465, - [SMALL_STATE(5717)] = 235505, - [SMALL_STATE(5718)] = 235545, - [SMALL_STATE(5719)] = 235585, - [SMALL_STATE(5720)] = 235625, - [SMALL_STATE(5721)] = 235665, - [SMALL_STATE(5722)] = 235705, - [SMALL_STATE(5723)] = 235751, - [SMALL_STATE(5724)] = 235801, - [SMALL_STATE(5725)] = 235841, - [SMALL_STATE(5726)] = 235905, - [SMALL_STATE(5727)] = 235945, - [SMALL_STATE(5728)] = 235985, - [SMALL_STATE(5729)] = 236035, - [SMALL_STATE(5730)] = 236075, - [SMALL_STATE(5731)] = 236115, - [SMALL_STATE(5732)] = 236143, - [SMALL_STATE(5733)] = 236193, - [SMALL_STATE(5734)] = 236225, - [SMALL_STATE(5735)] = 236277, - [SMALL_STATE(5736)] = 236327, - [SMALL_STATE(5737)] = 236377, - [SMALL_STATE(5738)] = 236441, - [SMALL_STATE(5739)] = 236481, - [SMALL_STATE(5740)] = 236521, - [SMALL_STATE(5741)] = 236567, - [SMALL_STATE(5742)] = 236607, - [SMALL_STATE(5743)] = 236647, - [SMALL_STATE(5744)] = 236687, - [SMALL_STATE(5745)] = 236737, - [SMALL_STATE(5746)] = 236787, - [SMALL_STATE(5747)] = 236837, - [SMALL_STATE(5748)] = 236869, - [SMALL_STATE(5749)] = 236921, - [SMALL_STATE(5750)] = 236973, - [SMALL_STATE(5751)] = 237037, - [SMALL_STATE(5752)] = 237089, - [SMALL_STATE(5753)] = 237139, - [SMALL_STATE(5754)] = 237183, - [SMALL_STATE(5755)] = 237233, - [SMALL_STATE(5756)] = 237273, - [SMALL_STATE(5757)] = 237323, - [SMALL_STATE(5758)] = 237373, - [SMALL_STATE(5759)] = 237413, - [SMALL_STATE(5760)] = 237465, - [SMALL_STATE(5761)] = 237517, - [SMALL_STATE(5762)] = 237569, - [SMALL_STATE(5763)] = 237609, - [SMALL_STATE(5764)] = 237673, - [SMALL_STATE(5765)] = 237723, - [SMALL_STATE(5766)] = 237751, - [SMALL_STATE(5767)] = 237783, - [SMALL_STATE(5768)] = 237811, - [SMALL_STATE(5769)] = 237851, - [SMALL_STATE(5770)] = 237903, - [SMALL_STATE(5771)] = 237943, - [SMALL_STATE(5772)] = 237971, - [SMALL_STATE(5773)] = 238035, - [SMALL_STATE(5774)] = 238099, - [SMALL_STATE(5775)] = 238147, - [SMALL_STATE(5776)] = 238211, - [SMALL_STATE(5777)] = 238263, - [SMALL_STATE(5778)] = 238303, - [SMALL_STATE(5779)] = 238343, - [SMALL_STATE(5780)] = 238383, - [SMALL_STATE(5781)] = 238429, - [SMALL_STATE(5782)] = 238493, - [SMALL_STATE(5783)] = 238533, - [SMALL_STATE(5784)] = 238573, - [SMALL_STATE(5785)] = 238613, - [SMALL_STATE(5786)] = 238665, - [SMALL_STATE(5787)] = 238717, - [SMALL_STATE(5788)] = 238769, - [SMALL_STATE(5789)] = 238833, - [SMALL_STATE(5790)] = 238885, - [SMALL_STATE(5791)] = 238937, - [SMALL_STATE(5792)] = 238987, - [SMALL_STATE(5793)] = 239014, - [SMALL_STATE(5794)] = 239063, - [SMALL_STATE(5795)] = 239110, - [SMALL_STATE(5796)] = 239141, - [SMALL_STATE(5797)] = 239198, - [SMALL_STATE(5798)] = 239225, - [SMALL_STATE(5799)] = 239270, - [SMALL_STATE(5800)] = 239317, - [SMALL_STATE(5801)] = 239346, - [SMALL_STATE(5802)] = 239391, - [SMALL_STATE(5803)] = 239418, - [SMALL_STATE(5804)] = 239465, - [SMALL_STATE(5805)] = 239492, - [SMALL_STATE(5806)] = 239537, - [SMALL_STATE(5807)] = 239564, - [SMALL_STATE(5808)] = 239621, - [SMALL_STATE(5809)] = 239648, - [SMALL_STATE(5810)] = 239681, - [SMALL_STATE(5811)] = 239728, - [SMALL_STATE(5812)] = 239755, - [SMALL_STATE(5813)] = 239782, - [SMALL_STATE(5814)] = 239809, - [SMALL_STATE(5815)] = 239856, - [SMALL_STATE(5816)] = 239901, - [SMALL_STATE(5817)] = 239928, - [SMALL_STATE(5818)] = 239961, - [SMALL_STATE(5819)] = 239988, - [SMALL_STATE(5820)] = 240015, - [SMALL_STATE(5821)] = 240042, - [SMALL_STATE(5822)] = 240075, - [SMALL_STATE(5823)] = 240102, - [SMALL_STATE(5824)] = 240131, - [SMALL_STATE(5825)] = 240162, - [SMALL_STATE(5826)] = 240189, - [SMALL_STATE(5827)] = 240224, - [SMALL_STATE(5828)] = 240251, - [SMALL_STATE(5829)] = 240278, - [SMALL_STATE(5830)] = 240305, - [SMALL_STATE(5831)] = 240332, - [SMALL_STATE(5832)] = 240377, - [SMALL_STATE(5833)] = 240404, - [SMALL_STATE(5834)] = 240449, - [SMALL_STATE(5835)] = 240492, - [SMALL_STATE(5836)] = 240547, - [SMALL_STATE(5837)] = 240574, - [SMALL_STATE(5838)] = 240619, - [SMALL_STATE(5839)] = 240676, - [SMALL_STATE(5840)] = 240703, - [SMALL_STATE(5841)] = 240748, - [SMALL_STATE(5842)] = 240775, - [SMALL_STATE(5843)] = 240816, - [SMALL_STATE(5844)] = 240861, - [SMALL_STATE(5845)] = 240906, - [SMALL_STATE(5846)] = 240953, - [SMALL_STATE(5847)] = 240980, - [SMALL_STATE(5848)] = 241037, - [SMALL_STATE(5849)] = 241084, - [SMALL_STATE(5850)] = 241117, - [SMALL_STATE(5851)] = 241174, - [SMALL_STATE(5852)] = 241217, - [SMALL_STATE(5853)] = 241264, - [SMALL_STATE(5854)] = 241291, - [SMALL_STATE(5855)] = 241330, - [SMALL_STATE(5856)] = 241357, - [SMALL_STATE(5857)] = 241394, - [SMALL_STATE(5858)] = 241439, - [SMALL_STATE(5859)] = 241496, - [SMALL_STATE(5860)] = 241529, - [SMALL_STATE(5861)] = 241586, - [SMALL_STATE(5862)] = 241629, - [SMALL_STATE(5863)] = 241656, - [SMALL_STATE(5864)] = 241703, - [SMALL_STATE(5865)] = 241750, - [SMALL_STATE(5866)] = 241777, - [SMALL_STATE(5867)] = 241824, - [SMALL_STATE(5868)] = 241869, - [SMALL_STATE(5869)] = 241916, - [SMALL_STATE(5870)] = 241963, - [SMALL_STATE(5871)] = 241990, - [SMALL_STATE(5872)] = 242039, - [SMALL_STATE(5873)] = 242084, - [SMALL_STATE(5874)] = 242131, - [SMALL_STATE(5875)] = 242178, - [SMALL_STATE(5876)] = 242225, - [SMALL_STATE(5877)] = 242252, - [SMALL_STATE(5878)] = 242279, - [SMALL_STATE(5879)] = 242326, - [SMALL_STATE(5880)] = 242371, - [SMALL_STATE(5881)] = 242416, - [SMALL_STATE(5882)] = 242454, - [SMALL_STATE(5883)] = 242492, - [SMALL_STATE(5884)] = 242530, - [SMALL_STATE(5885)] = 242556, - [SMALL_STATE(5886)] = 242586, - [SMALL_STATE(5887)] = 242634, - [SMALL_STATE(5888)] = 242660, - [SMALL_STATE(5889)] = 242694, - [SMALL_STATE(5890)] = 242730, - [SMALL_STATE(5891)] = 242782, - [SMALL_STATE(5892)] = 242808, - [SMALL_STATE(5893)] = 242846, - [SMALL_STATE(5894)] = 242876, - [SMALL_STATE(5895)] = 242902, - [SMALL_STATE(5896)] = 242936, - [SMALL_STATE(5897)] = 242962, - [SMALL_STATE(5898)] = 242988, - [SMALL_STATE(5899)] = 243014, - [SMALL_STATE(5900)] = 243040, - [SMALL_STATE(5901)] = 243066, - [SMALL_STATE(5902)] = 243092, - [SMALL_STATE(5903)] = 243144, - [SMALL_STATE(5904)] = 243170, - [SMALL_STATE(5905)] = 243204, - [SMALL_STATE(5906)] = 243256, - [SMALL_STATE(5907)] = 243290, - [SMALL_STATE(5908)] = 243326, - [SMALL_STATE(5909)] = 243352, - [SMALL_STATE(5910)] = 243386, - [SMALL_STATE(5911)] = 243428, - [SMALL_STATE(5912)] = 243454, - [SMALL_STATE(5913)] = 243490, - [SMALL_STATE(5914)] = 243516, - [SMALL_STATE(5915)] = 243568, - [SMALL_STATE(5916)] = 243606, - [SMALL_STATE(5917)] = 243658, - [SMALL_STATE(5918)] = 243706, - [SMALL_STATE(5919)] = 243732, - [SMALL_STATE(5920)] = 243758, - [SMALL_STATE(5921)] = 243794, - [SMALL_STATE(5922)] = 243832, - [SMALL_STATE(5923)] = 243870, - [SMALL_STATE(5924)] = 243918, - [SMALL_STATE(5925)] = 243966, - [SMALL_STATE(5926)] = 243996, - [SMALL_STATE(5927)] = 244024, - [SMALL_STATE(5928)] = 244058, - [SMALL_STATE(5929)] = 244084, - [SMALL_STATE(5930)] = 244118, - [SMALL_STATE(5931)] = 244144, - [SMALL_STATE(5932)] = 244170, - [SMALL_STATE(5933)] = 244204, - [SMALL_STATE(5934)] = 244230, - [SMALL_STATE(5935)] = 244266, - [SMALL_STATE(5936)] = 244300, - [SMALL_STATE(5937)] = 244338, - [SMALL_STATE(5938)] = 244392, - [SMALL_STATE(5939)] = 244422, - [SMALL_STATE(5940)] = 244448, - [SMALL_STATE(5941)] = 244482, - [SMALL_STATE(5942)] = 244519, - [SMALL_STATE(5943)] = 244556, - [SMALL_STATE(5944)] = 244593, - [SMALL_STATE(5945)] = 244630, - [SMALL_STATE(5946)] = 244667, - [SMALL_STATE(5947)] = 244708, - [SMALL_STATE(5948)] = 244751, - [SMALL_STATE(5949)] = 244794, - [SMALL_STATE(5950)] = 244823, - [SMALL_STATE(5951)] = 244860, - [SMALL_STATE(5952)] = 244885, - [SMALL_STATE(5953)] = 244916, - [SMALL_STATE(5954)] = 244953, - [SMALL_STATE(5955)] = 244980, - [SMALL_STATE(5956)] = 245017, - [SMALL_STATE(5957)] = 245054, - [SMALL_STATE(5958)] = 245091, - [SMALL_STATE(5959)] = 245128, - [SMALL_STATE(5960)] = 245159, - [SMALL_STATE(5961)] = 245188, - [SMALL_STATE(5962)] = 245229, - [SMALL_STATE(5963)] = 245272, - [SMALL_STATE(5964)] = 245309, - [SMALL_STATE(5965)] = 245352, - [SMALL_STATE(5966)] = 245399, - [SMALL_STATE(5967)] = 245436, - [SMALL_STATE(5968)] = 245467, - [SMALL_STATE(5969)] = 245510, - [SMALL_STATE(5970)] = 245551, - [SMALL_STATE(5971)] = 245582, - [SMALL_STATE(5972)] = 245623, - [SMALL_STATE(5973)] = 245660, - [SMALL_STATE(5974)] = 245703, - [SMALL_STATE(5975)] = 245740, - [SMALL_STATE(5976)] = 245781, - [SMALL_STATE(5977)] = 245818, - [SMALL_STATE(5978)] = 245851, - [SMALL_STATE(5979)] = 245875, - [SMALL_STATE(5980)] = 245899, - [SMALL_STATE(5981)] = 245923, - [SMALL_STATE(5982)] = 245947, - [SMALL_STATE(5983)] = 245971, - [SMALL_STATE(5984)] = 246007, - [SMALL_STATE(5985)] = 246031, - [SMALL_STATE(5986)] = 246063, - [SMALL_STATE(5987)] = 246103, - [SMALL_STATE(5988)] = 246143, - [SMALL_STATE(5989)] = 246167, - [SMALL_STATE(5990)] = 246191, - [SMALL_STATE(5991)] = 246215, - [SMALL_STATE(5992)] = 246261, - [SMALL_STATE(5993)] = 246301, - [SMALL_STATE(5994)] = 246337, - [SMALL_STATE(5995)] = 246361, - [SMALL_STATE(5996)] = 246385, - [SMALL_STATE(5997)] = 246427, - [SMALL_STATE(5998)] = 246467, - [SMALL_STATE(5999)] = 246491, - [SMALL_STATE(6000)] = 246515, - [SMALL_STATE(6001)] = 246555, - [SMALL_STATE(6002)] = 246587, - [SMALL_STATE(6003)] = 246627, - [SMALL_STATE(6004)] = 246659, - [SMALL_STATE(6005)] = 246691, - [SMALL_STATE(6006)] = 246723, - [SMALL_STATE(6007)] = 246755, - [SMALL_STATE(6008)] = 246787, - [SMALL_STATE(6009)] = 246819, - [SMALL_STATE(6010)] = 246851, - [SMALL_STATE(6011)] = 246875, - [SMALL_STATE(6012)] = 246911, - [SMALL_STATE(6013)] = 246935, - [SMALL_STATE(6014)] = 246967, - [SMALL_STATE(6015)] = 247007, - [SMALL_STATE(6016)] = 247031, - [SMALL_STATE(6017)] = 247055, - [SMALL_STATE(6018)] = 247079, - [SMALL_STATE(6019)] = 247103, - [SMALL_STATE(6020)] = 247129, - [SMALL_STATE(6021)] = 247157, - [SMALL_STATE(6022)] = 247197, - [SMALL_STATE(6023)] = 247237, - [SMALL_STATE(6024)] = 247273, - [SMALL_STATE(6025)] = 247297, - [SMALL_STATE(6026)] = 247321, - [SMALL_STATE(6027)] = 247345, - [SMALL_STATE(6028)] = 247369, - [SMALL_STATE(6029)] = 247393, - [SMALL_STATE(6030)] = 247417, - [SMALL_STATE(6031)] = 247457, - [SMALL_STATE(6032)] = 247493, - [SMALL_STATE(6033)] = 247517, - [SMALL_STATE(6034)] = 247549, - [SMALL_STATE(6035)] = 247581, - [SMALL_STATE(6036)] = 247605, - [SMALL_STATE(6037)] = 247641, - [SMALL_STATE(6038)] = 247681, - [SMALL_STATE(6039)] = 247713, - [SMALL_STATE(6040)] = 247753, - [SMALL_STATE(6041)] = 247789, - [SMALL_STATE(6042)] = 247813, - [SMALL_STATE(6043)] = 247845, - [SMALL_STATE(6044)] = 247881, - [SMALL_STATE(6045)] = 247921, - [SMALL_STATE(6046)] = 247945, - [SMALL_STATE(6047)] = 247977, - [SMALL_STATE(6048)] = 248001, - [SMALL_STATE(6049)] = 248025, - [SMALL_STATE(6050)] = 248049, - [SMALL_STATE(6051)] = 248073, - [SMALL_STATE(6052)] = 248105, - [SMALL_STATE(6053)] = 248137, - [SMALL_STATE(6054)] = 248169, - [SMALL_STATE(6055)] = 248201, - [SMALL_STATE(6056)] = 248233, - [SMALL_STATE(6057)] = 248257, - [SMALL_STATE(6058)] = 248289, - [SMALL_STATE(6059)] = 248321, - [SMALL_STATE(6060)] = 248353, - [SMALL_STATE(6061)] = 248393, - [SMALL_STATE(6062)] = 248417, - [SMALL_STATE(6063)] = 248441, - [SMALL_STATE(6064)] = 248473, - [SMALL_STATE(6065)] = 248505, - [SMALL_STATE(6066)] = 248545, - [SMALL_STATE(6067)] = 248569, - [SMALL_STATE(6068)] = 248601, - [SMALL_STATE(6069)] = 248625, - [SMALL_STATE(6070)] = 248665, - [SMALL_STATE(6071)] = 248705, - [SMALL_STATE(6072)] = 248729, - [SMALL_STATE(6073)] = 248761, - [SMALL_STATE(6074)] = 248785, - [SMALL_STATE(6075)] = 248809, - [SMALL_STATE(6076)] = 248833, - [SMALL_STATE(6077)] = 248857, - [SMALL_STATE(6078)] = 248889, - [SMALL_STATE(6079)] = 248921, - [SMALL_STATE(6080)] = 248953, - [SMALL_STATE(6081)] = 248985, - [SMALL_STATE(6082)] = 249009, - [SMALL_STATE(6083)] = 249033, - [SMALL_STATE(6084)] = 249065, - [SMALL_STATE(6085)] = 249097, - [SMALL_STATE(6086)] = 249129, - [SMALL_STATE(6087)] = 249169, - [SMALL_STATE(6088)] = 249193, - [SMALL_STATE(6089)] = 249217, - [SMALL_STATE(6090)] = 249241, - [SMALL_STATE(6091)] = 249281, - [SMALL_STATE(6092)] = 249321, - [SMALL_STATE(6093)] = 249345, - [SMALL_STATE(6094)] = 249374, - [SMALL_STATE(6095)] = 249409, - [SMALL_STATE(6096)] = 249444, - [SMALL_STATE(6097)] = 249479, - [SMALL_STATE(6098)] = 249514, - [SMALL_STATE(6099)] = 249549, - [SMALL_STATE(6100)] = 249582, - [SMALL_STATE(6101)] = 249617, - [SMALL_STATE(6102)] = 249652, - [SMALL_STATE(6103)] = 249687, - [SMALL_STATE(6104)] = 249722, - [SMALL_STATE(6105)] = 249755, - [SMALL_STATE(6106)] = 249794, - [SMALL_STATE(6107)] = 249829, - [SMALL_STATE(6108)] = 249864, - [SMALL_STATE(6109)] = 249897, - [SMALL_STATE(6110)] = 249926, - [SMALL_STATE(6111)] = 249959, - [SMALL_STATE(6112)] = 249988, - [SMALL_STATE(6113)] = 250021, - [SMALL_STATE(6114)] = 250056, - [SMALL_STATE(6115)] = 250091, - [SMALL_STATE(6116)] = 250126, - [SMALL_STATE(6117)] = 250161, - [SMALL_STATE(6118)] = 250194, - [SMALL_STATE(6119)] = 250227, - [SMALL_STATE(6120)] = 250260, - [SMALL_STATE(6121)] = 250289, - [SMALL_STATE(6122)] = 250318, - [SMALL_STATE(6123)] = 250353, - [SMALL_STATE(6124)] = 250388, - [SMALL_STATE(6125)] = 250423, - [SMALL_STATE(6126)] = 250458, - [SMALL_STATE(6127)] = 250487, - [SMALL_STATE(6128)] = 250520, - [SMALL_STATE(6129)] = 250549, - [SMALL_STATE(6130)] = 250578, - [SMALL_STATE(6131)] = 250611, - [SMALL_STATE(6132)] = 250640, - [SMALL_STATE(6133)] = 250679, - [SMALL_STATE(6134)] = 250712, - [SMALL_STATE(6135)] = 250741, - [SMALL_STATE(6136)] = 250776, - [SMALL_STATE(6137)] = 250805, - [SMALL_STATE(6138)] = 250840, - [SMALL_STATE(6139)] = 250869, - [SMALL_STATE(6140)] = 250902, - [SMALL_STATE(6141)] = 250941, - [SMALL_STATE(6142)] = 250976, - [SMALL_STATE(6143)] = 251011, - [SMALL_STATE(6144)] = 251050, - [SMALL_STATE(6145)] = 251077, - [SMALL_STATE(6146)] = 251106, - [SMALL_STATE(6147)] = 251141, - [SMALL_STATE(6148)] = 251176, - [SMALL_STATE(6149)] = 251215, - [SMALL_STATE(6150)] = 251250, - [SMALL_STATE(6151)] = 251283, - [SMALL_STATE(6152)] = 251312, - [SMALL_STATE(6153)] = 251347, - [SMALL_STATE(6154)] = 251380, - [SMALL_STATE(6155)] = 251409, - [SMALL_STATE(6156)] = 251444, - [SMALL_STATE(6157)] = 251483, - [SMALL_STATE(6158)] = 251522, - [SMALL_STATE(6159)] = 251551, - [SMALL_STATE(6160)] = 251580, - [SMALL_STATE(6161)] = 251609, - [SMALL_STATE(6162)] = 251638, - [SMALL_STATE(6163)] = 251677, - [SMALL_STATE(6164)] = 251710, - [SMALL_STATE(6165)] = 251739, - [SMALL_STATE(6166)] = 251768, - [SMALL_STATE(6167)] = 251807, - [SMALL_STATE(6168)] = 251842, - [SMALL_STATE(6169)] = 251877, - [SMALL_STATE(6170)] = 251910, - [SMALL_STATE(6171)] = 251939, - [SMALL_STATE(6172)] = 251974, - [SMALL_STATE(6173)] = 252014, - [SMALL_STATE(6174)] = 252044, - [SMALL_STATE(6175)] = 252082, - [SMALL_STATE(6176)] = 252114, - [SMALL_STATE(6177)] = 252144, - [SMALL_STATE(6178)] = 252176, - [SMALL_STATE(6179)] = 252208, - [SMALL_STATE(6180)] = 252248, - [SMALL_STATE(6181)] = 252288, - [SMALL_STATE(6182)] = 252326, - [SMALL_STATE(6183)] = 252364, - [SMALL_STATE(6184)] = 252404, - [SMALL_STATE(6185)] = 252436, - [SMALL_STATE(6186)] = 252474, - [SMALL_STATE(6187)] = 252514, - [SMALL_STATE(6188)] = 252544, - [SMALL_STATE(6189)] = 252574, - [SMALL_STATE(6190)] = 252604, - [SMALL_STATE(6191)] = 252634, - [SMALL_STATE(6192)] = 252664, - [SMALL_STATE(6193)] = 252704, - [SMALL_STATE(6194)] = 252744, - [SMALL_STATE(6195)] = 252784, - [SMALL_STATE(6196)] = 252816, - [SMALL_STATE(6197)] = 252846, - [SMALL_STATE(6198)] = 252876, - [SMALL_STATE(6199)] = 252906, - [SMALL_STATE(6200)] = 252940, - [SMALL_STATE(6201)] = 252974, - [SMALL_STATE(6202)] = 253008, - [SMALL_STATE(6203)] = 253042, - [SMALL_STATE(6204)] = 253076, - [SMALL_STATE(6205)] = 253110, - [SMALL_STATE(6206)] = 253144, - [SMALL_STATE(6207)] = 253178, - [SMALL_STATE(6208)] = 253208, - [SMALL_STATE(6209)] = 253248, - [SMALL_STATE(6210)] = 253280, - [SMALL_STATE(6211)] = 253304, - [SMALL_STATE(6212)] = 253336, - [SMALL_STATE(6213)] = 253368, - [SMALL_STATE(6214)] = 253400, - [SMALL_STATE(6215)] = 253438, - [SMALL_STATE(6216)] = 253478, - [SMALL_STATE(6217)] = 253510, - [SMALL_STATE(6218)] = 253548, - [SMALL_STATE(6219)] = 253586, - [SMALL_STATE(6220)] = 253618, - [SMALL_STATE(6221)] = 253648, - [SMALL_STATE(6222)] = 253688, - [SMALL_STATE(6223)] = 253726, - [SMALL_STATE(6224)] = 253756, - [SMALL_STATE(6225)] = 253794, - [SMALL_STATE(6226)] = 253826, - [SMALL_STATE(6227)] = 253866, - [SMALL_STATE(6228)] = 253898, - [SMALL_STATE(6229)] = 253928, - [SMALL_STATE(6230)] = 253958, - [SMALL_STATE(6231)] = 253984, - [SMALL_STATE(6232)] = 254022, - [SMALL_STATE(6233)] = 254060, - [SMALL_STATE(6234)] = 254098, - [SMALL_STATE(6235)] = 254124, - [SMALL_STATE(6236)] = 254148, - [SMALL_STATE(6237)] = 254178, - [SMALL_STATE(6238)] = 254208, - [SMALL_STATE(6239)] = 254240, - [SMALL_STATE(6240)] = 254270, - [SMALL_STATE(6241)] = 254310, - [SMALL_STATE(6242)] = 254350, - [SMALL_STATE(6243)] = 254388, - [SMALL_STATE(6244)] = 254428, - [SMALL_STATE(6245)] = 254450, - [SMALL_STATE(6246)] = 254490, - [SMALL_STATE(6247)] = 254522, - [SMALL_STATE(6248)] = 254560, - [SMALL_STATE(6249)] = 254590, - [SMALL_STATE(6250)] = 254630, - [SMALL_STATE(6251)] = 254652, - [SMALL_STATE(6252)] = 254684, - [SMALL_STATE(6253)] = 254714, - [SMALL_STATE(6254)] = 254744, - [SMALL_STATE(6255)] = 254774, - [SMALL_STATE(6256)] = 254814, - [SMALL_STATE(6257)] = 254854, - [SMALL_STATE(6258)] = 254892, - [SMALL_STATE(6259)] = 254922, - [SMALL_STATE(6260)] = 254944, - [SMALL_STATE(6261)] = 254974, - [SMALL_STATE(6262)] = 255004, - [SMALL_STATE(6263)] = 255034, - [SMALL_STATE(6264)] = 255064, - [SMALL_STATE(6265)] = 255088, - [SMALL_STATE(6266)] = 255110, - [SMALL_STATE(6267)] = 255140, - [SMALL_STATE(6268)] = 255180, - [SMALL_STATE(6269)] = 255212, - [SMALL_STATE(6270)] = 255234, - [SMALL_STATE(6271)] = 255274, - [SMALL_STATE(6272)] = 255312, - [SMALL_STATE(6273)] = 255350, - [SMALL_STATE(6274)] = 255390, - [SMALL_STATE(6275)] = 255428, - [SMALL_STATE(6276)] = 255466, - [SMALL_STATE(6277)] = 255498, - [SMALL_STATE(6278)] = 255537, - [SMALL_STATE(6279)] = 255564, - [SMALL_STATE(6280)] = 255597, - [SMALL_STATE(6281)] = 255630, - [SMALL_STATE(6282)] = 255657, - [SMALL_STATE(6283)] = 255692, - [SMALL_STATE(6284)] = 255717, - [SMALL_STATE(6285)] = 255744, - [SMALL_STATE(6286)] = 255783, - [SMALL_STATE(6287)] = 255812, - [SMALL_STATE(6288)] = 255841, - [SMALL_STATE(6289)] = 255870, - [SMALL_STATE(6290)] = 255899, - [SMALL_STATE(6291)] = 255928, - [SMALL_STATE(6292)] = 255957, - [SMALL_STATE(6293)] = 255986, - [SMALL_STATE(6294)] = 256015, - [SMALL_STATE(6295)] = 256048, - [SMALL_STATE(6296)] = 256081, - [SMALL_STATE(6297)] = 256116, - [SMALL_STATE(6298)] = 256149, - [SMALL_STATE(6299)] = 256174, - [SMALL_STATE(6300)] = 256199, - [SMALL_STATE(6301)] = 256226, - [SMALL_STATE(6302)] = 256259, - [SMALL_STATE(6303)] = 256298, - [SMALL_STATE(6304)] = 256333, - [SMALL_STATE(6305)] = 256360, - [SMALL_STATE(6306)] = 256387, - [SMALL_STATE(6307)] = 256422, - [SMALL_STATE(6308)] = 256447, - [SMALL_STATE(6309)] = 256472, - [SMALL_STATE(6310)] = 256505, - [SMALL_STATE(6311)] = 256540, - [SMALL_STATE(6312)] = 256575, - [SMALL_STATE(6313)] = 256608, - [SMALL_STATE(6314)] = 256641, - [SMALL_STATE(6315)] = 256674, - [SMALL_STATE(6316)] = 256707, - [SMALL_STATE(6317)] = 256740, - [SMALL_STATE(6318)] = 256773, - [SMALL_STATE(6319)] = 256810, - [SMALL_STATE(6320)] = 256843, - [SMALL_STATE(6321)] = 256876, - [SMALL_STATE(6322)] = 256909, - [SMALL_STATE(6323)] = 256948, - [SMALL_STATE(6324)] = 256981, - [SMALL_STATE(6325)] = 257014, - [SMALL_STATE(6326)] = 257047, - [SMALL_STATE(6327)] = 257082, - [SMALL_STATE(6328)] = 257117, - [SMALL_STATE(6329)] = 257150, - [SMALL_STATE(6330)] = 257183, - [SMALL_STATE(6331)] = 257216, - [SMALL_STATE(6332)] = 257251, - [SMALL_STATE(6333)] = 257284, - [SMALL_STATE(6334)] = 257317, - [SMALL_STATE(6335)] = 257350, - [SMALL_STATE(6336)] = 257383, - [SMALL_STATE(6337)] = 257416, - [SMALL_STATE(6338)] = 257449, - [SMALL_STATE(6339)] = 257482, - [SMALL_STATE(6340)] = 257519, - [SMALL_STATE(6341)] = 257554, - [SMALL_STATE(6342)] = 257579, - [SMALL_STATE(6343)] = 257614, - [SMALL_STATE(6344)] = 257647, - [SMALL_STATE(6345)] = 257674, - [SMALL_STATE(6346)] = 257709, - [SMALL_STATE(6347)] = 257742, - [SMALL_STATE(6348)] = 257769, - [SMALL_STATE(6349)] = 257802, - [SMALL_STATE(6350)] = 257835, - [SMALL_STATE(6351)] = 257874, - [SMALL_STATE(6352)] = 257904, - [SMALL_STATE(6353)] = 257940, - [SMALL_STATE(6354)] = 257976, - [SMALL_STATE(6355)] = 258012, - [SMALL_STATE(6356)] = 258048, - [SMALL_STATE(6357)] = 258068, - [SMALL_STATE(6358)] = 258088, - [SMALL_STATE(6359)] = 258118, - [SMALL_STATE(6360)] = 258154, - [SMALL_STATE(6361)] = 258184, - [SMALL_STATE(6362)] = 258214, - [SMALL_STATE(6363)] = 258244, - [SMALL_STATE(6364)] = 258274, - [SMALL_STATE(6365)] = 258310, - [SMALL_STATE(6366)] = 258330, - [SMALL_STATE(6367)] = 258366, - [SMALL_STATE(6368)] = 258392, - [SMALL_STATE(6369)] = 258418, - [SMALL_STATE(6370)] = 258438, - [SMALL_STATE(6371)] = 258468, - [SMALL_STATE(6372)] = 258504, - [SMALL_STATE(6373)] = 258534, - [SMALL_STATE(6374)] = 258564, - [SMALL_STATE(6375)] = 258600, - [SMALL_STATE(6376)] = 258636, - [SMALL_STATE(6377)] = 258672, - [SMALL_STATE(6378)] = 258702, - [SMALL_STATE(6379)] = 258722, - [SMALL_STATE(6380)] = 258758, - [SMALL_STATE(6381)] = 258778, - [SMALL_STATE(6382)] = 258798, - [SMALL_STATE(6383)] = 258834, - [SMALL_STATE(6384)] = 258870, - [SMALL_STATE(6385)] = 258900, - [SMALL_STATE(6386)] = 258926, - [SMALL_STATE(6387)] = 258962, - [SMALL_STATE(6388)] = 258998, - [SMALL_STATE(6389)] = 259028, - [SMALL_STATE(6390)] = 259054, - [SMALL_STATE(6391)] = 259090, - [SMALL_STATE(6392)] = 259116, - [SMALL_STATE(6393)] = 259142, - [SMALL_STATE(6394)] = 259178, - [SMALL_STATE(6395)] = 259200, - [SMALL_STATE(6396)] = 259226, - [SMALL_STATE(6397)] = 259262, - [SMALL_STATE(6398)] = 259288, - [SMALL_STATE(6399)] = 259308, - [SMALL_STATE(6400)] = 259328, - [SMALL_STATE(6401)] = 259364, - [SMALL_STATE(6402)] = 259384, - [SMALL_STATE(6403)] = 259406, - [SMALL_STATE(6404)] = 259426, - [SMALL_STATE(6405)] = 259459, - [SMALL_STATE(6406)] = 259484, - [SMALL_STATE(6407)] = 259515, - [SMALL_STATE(6408)] = 259540, - [SMALL_STATE(6409)] = 259571, - [SMALL_STATE(6410)] = 259596, - [SMALL_STATE(6411)] = 259627, - [SMALL_STATE(6412)] = 259658, - [SMALL_STATE(6413)] = 259687, - [SMALL_STATE(6414)] = 259714, - [SMALL_STATE(6415)] = 259745, - [SMALL_STATE(6416)] = 259776, - [SMALL_STATE(6417)] = 259807, - [SMALL_STATE(6418)] = 259834, - [SMALL_STATE(6419)] = 259861, - [SMALL_STATE(6420)] = 259892, - [SMALL_STATE(6421)] = 259917, - [SMALL_STATE(6422)] = 259944, - [SMALL_STATE(6423)] = 259973, - [SMALL_STATE(6424)] = 260002, - [SMALL_STATE(6425)] = 260035, - [SMALL_STATE(6426)] = 260066, - [SMALL_STATE(6427)] = 260091, - [SMALL_STATE(6428)] = 260122, - [SMALL_STATE(6429)] = 260151, - [SMALL_STATE(6430)] = 260182, - [SMALL_STATE(6431)] = 260213, - [SMALL_STATE(6432)] = 260248, - [SMALL_STATE(6433)] = 260283, - [SMALL_STATE(6434)] = 260302, - [SMALL_STATE(6435)] = 260321, - [SMALL_STATE(6436)] = 260350, - [SMALL_STATE(6437)] = 260375, - [SMALL_STATE(6438)] = 260410, - [SMALL_STATE(6439)] = 260429, - [SMALL_STATE(6440)] = 260464, - [SMALL_STATE(6441)] = 260495, - [SMALL_STATE(6442)] = 260520, - [SMALL_STATE(6443)] = 260555, - [SMALL_STATE(6444)] = 260572, - [SMALL_STATE(6445)] = 260607, - [SMALL_STATE(6446)] = 260642, - [SMALL_STATE(6447)] = 260661, - [SMALL_STATE(6448)] = 260690, - [SMALL_STATE(6449)] = 260725, - [SMALL_STATE(6450)] = 260752, - [SMALL_STATE(6451)] = 260779, - [SMALL_STATE(6452)] = 260808, - [SMALL_STATE(6453)] = 260833, - [SMALL_STATE(6454)] = 260862, - [SMALL_STATE(6455)] = 260893, - [SMALL_STATE(6456)] = 260920, - [SMALL_STATE(6457)] = 260951, - [SMALL_STATE(6458)] = 260978, - [SMALL_STATE(6459)] = 261005, - [SMALL_STATE(6460)] = 261040, - [SMALL_STATE(6461)] = 261067, - [SMALL_STATE(6462)] = 261102, - [SMALL_STATE(6463)] = 261137, - [SMALL_STATE(6464)] = 261168, - [SMALL_STATE(6465)] = 261195, - [SMALL_STATE(6466)] = 261222, - [SMALL_STATE(6467)] = 261249, - [SMALL_STATE(6468)] = 261276, - [SMALL_STATE(6469)] = 261301, - [SMALL_STATE(6470)] = 261328, - [SMALL_STATE(6471)] = 261355, - [SMALL_STATE(6472)] = 261382, - [SMALL_STATE(6473)] = 261401, - [SMALL_STATE(6474)] = 261430, - [SMALL_STATE(6475)] = 261465, - [SMALL_STATE(6476)] = 261500, - [SMALL_STATE(6477)] = 261527, - [SMALL_STATE(6478)] = 261554, - [SMALL_STATE(6479)] = 261589, - [SMALL_STATE(6480)] = 261616, - [SMALL_STATE(6481)] = 261645, - [SMALL_STATE(6482)] = 261676, - [SMALL_STATE(6483)] = 261711, - [SMALL_STATE(6484)] = 261746, - [SMALL_STATE(6485)] = 261769, - [SMALL_STATE(6486)] = 261800, - [SMALL_STATE(6487)] = 261827, - [SMALL_STATE(6488)] = 261848, - [SMALL_STATE(6489)] = 261881, - [SMALL_STATE(6490)] = 261916, - [SMALL_STATE(6491)] = 261935, - [SMALL_STATE(6492)] = 261952, - [SMALL_STATE(6493)] = 261971, - [SMALL_STATE(6494)] = 262000, - [SMALL_STATE(6495)] = 262031, - [SMALL_STATE(6496)] = 262066, - [SMALL_STATE(6497)] = 262095, - [SMALL_STATE(6498)] = 262120, - [SMALL_STATE(6499)] = 262137, - [SMALL_STATE(6500)] = 262168, - [SMALL_STATE(6501)] = 262185, - [SMALL_STATE(6502)] = 262220, - [SMALL_STATE(6503)] = 262253, - [SMALL_STATE(6504)] = 262278, - [SMALL_STATE(6505)] = 262313, - [SMALL_STATE(6506)] = 262340, - [SMALL_STATE(6507)] = 262357, - [SMALL_STATE(6508)] = 262382, - [SMALL_STATE(6509)] = 262407, - [SMALL_STATE(6510)] = 262436, - [SMALL_STATE(6511)] = 262461, - [SMALL_STATE(6512)] = 262492, - [SMALL_STATE(6513)] = 262523, - [SMALL_STATE(6514)] = 262554, - [SMALL_STATE(6515)] = 262585, - [SMALL_STATE(6516)] = 262616, - [SMALL_STATE(6517)] = 262643, - [SMALL_STATE(6518)] = 262668, - [SMALL_STATE(6519)] = 262703, - [SMALL_STATE(6520)] = 262728, - [SMALL_STATE(6521)] = 262761, - [SMALL_STATE(6522)] = 262788, - [SMALL_STATE(6523)] = 262815, - [SMALL_STATE(6524)] = 262844, - [SMALL_STATE(6525)] = 262871, - [SMALL_STATE(6526)] = 262893, - [SMALL_STATE(6527)] = 262923, - [SMALL_STATE(6528)] = 262953, - [SMALL_STATE(6529)] = 262977, - [SMALL_STATE(6530)] = 263001, - [SMALL_STATE(6531)] = 263025, - [SMALL_STATE(6532)] = 263049, - [SMALL_STATE(6533)] = 263073, - [SMALL_STATE(6534)] = 263097, - [SMALL_STATE(6535)] = 263121, - [SMALL_STATE(6536)] = 263145, - [SMALL_STATE(6537)] = 263169, - [SMALL_STATE(6538)] = 263195, - [SMALL_STATE(6539)] = 263221, - [SMALL_STATE(6540)] = 263247, - [SMALL_STATE(6541)] = 263271, - [SMALL_STATE(6542)] = 263295, - [SMALL_STATE(6543)] = 263319, - [SMALL_STATE(6544)] = 263343, - [SMALL_STATE(6545)] = 263365, - [SMALL_STATE(6546)] = 263389, - [SMALL_STATE(6547)] = 263413, - [SMALL_STATE(6548)] = 263437, - [SMALL_STATE(6549)] = 263461, - [SMALL_STATE(6550)] = 263491, - [SMALL_STATE(6551)] = 263513, - [SMALL_STATE(6552)] = 263543, - [SMALL_STATE(6553)] = 263575, - [SMALL_STATE(6554)] = 263597, - [SMALL_STATE(6555)] = 263613, - [SMALL_STATE(6556)] = 263635, - [SMALL_STATE(6557)] = 263657, - [SMALL_STATE(6558)] = 263687, - [SMALL_STATE(6559)] = 263711, - [SMALL_STATE(6560)] = 263733, - [SMALL_STATE(6561)] = 263761, - [SMALL_STATE(6562)] = 263783, - [SMALL_STATE(6563)] = 263807, - [SMALL_STATE(6564)] = 263831, - [SMALL_STATE(6565)] = 263853, - [SMALL_STATE(6566)] = 263877, - [SMALL_STATE(6567)] = 263899, - [SMALL_STATE(6568)] = 263923, - [SMALL_STATE(6569)] = 263947, - [SMALL_STATE(6570)] = 263977, - [SMALL_STATE(6571)] = 263999, - [SMALL_STATE(6572)] = 264021, - [SMALL_STATE(6573)] = 264051, - [SMALL_STATE(6574)] = 264077, - [SMALL_STATE(6575)] = 264099, - [SMALL_STATE(6576)] = 264122, - [SMALL_STATE(6577)] = 264145, - [SMALL_STATE(6578)] = 264166, - [SMALL_STATE(6579)] = 264197, - [SMALL_STATE(6580)] = 264228, - [SMALL_STATE(6581)] = 264259, - [SMALL_STATE(6582)] = 264286, - [SMALL_STATE(6583)] = 264313, - [SMALL_STATE(6584)] = 264340, - [SMALL_STATE(6585)] = 264367, - [SMALL_STATE(6586)] = 264394, - [SMALL_STATE(6587)] = 264425, - [SMALL_STATE(6588)] = 264456, - [SMALL_STATE(6589)] = 264477, - [SMALL_STATE(6590)] = 264508, - [SMALL_STATE(6591)] = 264539, - [SMALL_STATE(6592)] = 264566, - [SMALL_STATE(6593)] = 264597, - [SMALL_STATE(6594)] = 264628, - [SMALL_STATE(6595)] = 264659, - [SMALL_STATE(6596)] = 264686, - [SMALL_STATE(6597)] = 264713, - [SMALL_STATE(6598)] = 264740, - [SMALL_STATE(6599)] = 264771, - [SMALL_STATE(6600)] = 264802, - [SMALL_STATE(6601)] = 264829, - [SMALL_STATE(6602)] = 264856, - [SMALL_STATE(6603)] = 264887, - [SMALL_STATE(6604)] = 264908, - [SMALL_STATE(6605)] = 264939, - [SMALL_STATE(6606)] = 264966, - [SMALL_STATE(6607)] = 264997, - [SMALL_STATE(6608)] = 265024, - [SMALL_STATE(6609)] = 265051, - [SMALL_STATE(6610)] = 265078, - [SMALL_STATE(6611)] = 265109, - [SMALL_STATE(6612)] = 265136, - [SMALL_STATE(6613)] = 265167, - [SMALL_STATE(6614)] = 265194, - [SMALL_STATE(6615)] = 265221, - [SMALL_STATE(6616)] = 265252, - [SMALL_STATE(6617)] = 265275, - [SMALL_STATE(6618)] = 265302, - [SMALL_STATE(6619)] = 265333, - [SMALL_STATE(6620)] = 265356, - [SMALL_STATE(6621)] = 265387, - [SMALL_STATE(6622)] = 265410, - [SMALL_STATE(6623)] = 265433, - [SMALL_STATE(6624)] = 265456, - [SMALL_STATE(6625)] = 265479, - [SMALL_STATE(6626)] = 265502, - [SMALL_STATE(6627)] = 265533, - [SMALL_STATE(6628)] = 265564, - [SMALL_STATE(6629)] = 265595, - [SMALL_STATE(6630)] = 265626, - [SMALL_STATE(6631)] = 265657, - [SMALL_STATE(6632)] = 265688, - [SMALL_STATE(6633)] = 265719, - [SMALL_STATE(6634)] = 265750, - [SMALL_STATE(6635)] = 265781, - [SMALL_STATE(6636)] = 265802, - [SMALL_STATE(6637)] = 265825, - [SMALL_STATE(6638)] = 265841, - [SMALL_STATE(6639)] = 265863, - [SMALL_STATE(6640)] = 265889, - [SMALL_STATE(6641)] = 265911, - [SMALL_STATE(6642)] = 265937, - [SMALL_STATE(6643)] = 265963, - [SMALL_STATE(6644)] = 265989, - [SMALL_STATE(6645)] = 266015, - [SMALL_STATE(6646)] = 266037, - [SMALL_STATE(6647)] = 266059, - [SMALL_STATE(6648)] = 266075, - [SMALL_STATE(6649)] = 266099, - [SMALL_STATE(6650)] = 266121, - [SMALL_STATE(6651)] = 266143, - [SMALL_STATE(6652)] = 266165, - [SMALL_STATE(6653)] = 266191, - [SMALL_STATE(6654)] = 266213, - [SMALL_STATE(6655)] = 266237, - [SMALL_STATE(6656)] = 266261, - [SMALL_STATE(6657)] = 266283, - [SMALL_STATE(6658)] = 266309, - [SMALL_STATE(6659)] = 266333, - [SMALL_STATE(6660)] = 266351, - [SMALL_STATE(6661)] = 266377, - [SMALL_STATE(6662)] = 266397, - [SMALL_STATE(6663)] = 266423, - [SMALL_STATE(6664)] = 266449, - [SMALL_STATE(6665)] = 266473, - [SMALL_STATE(6666)] = 266499, - [SMALL_STATE(6667)] = 266523, - [SMALL_STATE(6668)] = 266549, - [SMALL_STATE(6669)] = 266575, - [SMALL_STATE(6670)] = 266601, - [SMALL_STATE(6671)] = 266627, - [SMALL_STATE(6672)] = 266653, - [SMALL_STATE(6673)] = 266679, - [SMALL_STATE(6674)] = 266701, - [SMALL_STATE(6675)] = 266721, - [SMALL_STATE(6676)] = 266741, - [SMALL_STATE(6677)] = 266767, - [SMALL_STATE(6678)] = 266793, - [SMALL_STATE(6679)] = 266815, - [SMALL_STATE(6680)] = 266841, - [SMALL_STATE(6681)] = 266863, - [SMALL_STATE(6682)] = 266889, - [SMALL_STATE(6683)] = 266911, - [SMALL_STATE(6684)] = 266939, - [SMALL_STATE(6685)] = 266961, - [SMALL_STATE(6686)] = 266987, - [SMALL_STATE(6687)] = 267013, - [SMALL_STATE(6688)] = 267035, - [SMALL_STATE(6689)] = 267061, - [SMALL_STATE(6690)] = 267087, - [SMALL_STATE(6691)] = 267109, - [SMALL_STATE(6692)] = 267135, - [SMALL_STATE(6693)] = 267161, - [SMALL_STATE(6694)] = 267187, - [SMALL_STATE(6695)] = 267213, - [SMALL_STATE(6696)] = 267239, - [SMALL_STATE(6697)] = 267261, - [SMALL_STATE(6698)] = 267287, - [SMALL_STATE(6699)] = 267309, - [SMALL_STATE(6700)] = 267335, - [SMALL_STATE(6701)] = 267357, - [SMALL_STATE(6702)] = 267379, - [SMALL_STATE(6703)] = 267401, - [SMALL_STATE(6704)] = 267423, - [SMALL_STATE(6705)] = 267445, - [SMALL_STATE(6706)] = 267467, - [SMALL_STATE(6707)] = 267487, - [SMALL_STATE(6708)] = 267513, - [SMALL_STATE(6709)] = 267539, - [SMALL_STATE(6710)] = 267565, - [SMALL_STATE(6711)] = 267591, - [SMALL_STATE(6712)] = 267617, - [SMALL_STATE(6713)] = 267641, - [SMALL_STATE(6714)] = 267667, - [SMALL_STATE(6715)] = 267693, - [SMALL_STATE(6716)] = 267719, - [SMALL_STATE(6717)] = 267743, - [SMALL_STATE(6718)] = 267766, - [SMALL_STATE(6719)] = 267787, - [SMALL_STATE(6720)] = 267812, - [SMALL_STATE(6721)] = 267831, - [SMALL_STATE(6722)] = 267854, - [SMALL_STATE(6723)] = 267871, - [SMALL_STATE(6724)] = 267894, - [SMALL_STATE(6725)] = 267917, - [SMALL_STATE(6726)] = 267934, - [SMALL_STATE(6727)] = 267951, - [SMALL_STATE(6728)] = 267974, - [SMALL_STATE(6729)] = 267993, - [SMALL_STATE(6730)] = 268010, - [SMALL_STATE(6731)] = 268035, - [SMALL_STATE(6732)] = 268058, - [SMALL_STATE(6733)] = 268075, - [SMALL_STATE(6734)] = 268100, - [SMALL_STATE(6735)] = 268123, - [SMALL_STATE(6736)] = 268146, - [SMALL_STATE(6737)] = 268171, - [SMALL_STATE(6738)] = 268192, - [SMALL_STATE(6739)] = 268209, - [SMALL_STATE(6740)] = 268226, - [SMALL_STATE(6741)] = 268251, - [SMALL_STATE(6742)] = 268272, - [SMALL_STATE(6743)] = 268289, - [SMALL_STATE(6744)] = 268312, - [SMALL_STATE(6745)] = 268335, - [SMALL_STATE(6746)] = 268356, - [SMALL_STATE(6747)] = 268373, - [SMALL_STATE(6748)] = 268390, - [SMALL_STATE(6749)] = 268407, - [SMALL_STATE(6750)] = 268430, - [SMALL_STATE(6751)] = 268447, - [SMALL_STATE(6752)] = 268464, - [SMALL_STATE(6753)] = 268481, - [SMALL_STATE(6754)] = 268504, - [SMALL_STATE(6755)] = 268521, - [SMALL_STATE(6756)] = 268542, - [SMALL_STATE(6757)] = 268561, - [SMALL_STATE(6758)] = 268584, - [SMALL_STATE(6759)] = 268605, - [SMALL_STATE(6760)] = 268624, - [SMALL_STATE(6761)] = 268645, - [SMALL_STATE(6762)] = 268670, - [SMALL_STATE(6763)] = 268691, - [SMALL_STATE(6764)] = 268712, - [SMALL_STATE(6765)] = 268737, - [SMALL_STATE(6766)] = 268760, - [SMALL_STATE(6767)] = 268781, - [SMALL_STATE(6768)] = 268800, - [SMALL_STATE(6769)] = 268819, - [SMALL_STATE(6770)] = 268842, - [SMALL_STATE(6771)] = 268859, - [SMALL_STATE(6772)] = 268884, - [SMALL_STATE(6773)] = 268901, - [SMALL_STATE(6774)] = 268924, - [SMALL_STATE(6775)] = 268947, - [SMALL_STATE(6776)] = 268964, - [SMALL_STATE(6777)] = 268978, - [SMALL_STATE(6778)] = 269000, - [SMALL_STATE(6779)] = 269020, - [SMALL_STATE(6780)] = 269040, - [SMALL_STATE(6781)] = 269054, - [SMALL_STATE(6782)] = 269076, - [SMALL_STATE(6783)] = 269094, - [SMALL_STATE(6784)] = 269116, - [SMALL_STATE(6785)] = 269136, - [SMALL_STATE(6786)] = 269156, - [SMALL_STATE(6787)] = 269176, - [SMALL_STATE(6788)] = 269196, - [SMALL_STATE(6789)] = 269216, - [SMALL_STATE(6790)] = 269236, - [SMALL_STATE(6791)] = 269256, - [SMALL_STATE(6792)] = 269278, - [SMALL_STATE(6793)] = 269300, - [SMALL_STATE(6794)] = 269320, - [SMALL_STATE(6795)] = 269340, - [SMALL_STATE(6796)] = 269354, - [SMALL_STATE(6797)] = 269374, - [SMALL_STATE(6798)] = 269396, - [SMALL_STATE(6799)] = 269418, - [SMALL_STATE(6800)] = 269438, - [SMALL_STATE(6801)] = 269456, - [SMALL_STATE(6802)] = 269476, - [SMALL_STATE(6803)] = 269498, - [SMALL_STATE(6804)] = 269520, - [SMALL_STATE(6805)] = 269540, - [SMALL_STATE(6806)] = 269560, - [SMALL_STATE(6807)] = 269582, - [SMALL_STATE(6808)] = 269602, - [SMALL_STATE(6809)] = 269622, - [SMALL_STATE(6810)] = 269636, - [SMALL_STATE(6811)] = 269650, - [SMALL_STATE(6812)] = 269668, - [SMALL_STATE(6813)] = 269690, - [SMALL_STATE(6814)] = 269712, - [SMALL_STATE(6815)] = 269734, - [SMALL_STATE(6816)] = 269756, - [SMALL_STATE(6817)] = 269776, - [SMALL_STATE(6818)] = 269790, - [SMALL_STATE(6819)] = 269812, - [SMALL_STATE(6820)] = 269826, - [SMALL_STATE(6821)] = 269848, - [SMALL_STATE(6822)] = 269870, - [SMALL_STATE(6823)] = 269890, - [SMALL_STATE(6824)] = 269912, - [SMALL_STATE(6825)] = 269926, - [SMALL_STATE(6826)] = 269946, - [SMALL_STATE(6827)] = 269968, - [SMALL_STATE(6828)] = 269988, - [SMALL_STATE(6829)] = 270006, - [SMALL_STATE(6830)] = 270020, - [SMALL_STATE(6831)] = 270042, - [SMALL_STATE(6832)] = 270056, - [SMALL_STATE(6833)] = 270070, - [SMALL_STATE(6834)] = 270090, - [SMALL_STATE(6835)] = 270110, - [SMALL_STATE(6836)] = 270130, - [SMALL_STATE(6837)] = 270144, - [SMALL_STATE(6838)] = 270164, - [SMALL_STATE(6839)] = 270178, - [SMALL_STATE(6840)] = 270198, - [SMALL_STATE(6841)] = 270212, - [SMALL_STATE(6842)] = 270230, - [SMALL_STATE(6843)] = 270252, - [SMALL_STATE(6844)] = 270270, - [SMALL_STATE(6845)] = 270290, - [SMALL_STATE(6846)] = 270312, - [SMALL_STATE(6847)] = 270334, - [SMALL_STATE(6848)] = 270356, - [SMALL_STATE(6849)] = 270373, - [SMALL_STATE(6850)] = 270390, - [SMALL_STATE(6851)] = 270407, - [SMALL_STATE(6852)] = 270426, - [SMALL_STATE(6853)] = 270445, - [SMALL_STATE(6854)] = 270462, - [SMALL_STATE(6855)] = 270479, - [SMALL_STATE(6856)] = 270496, - [SMALL_STATE(6857)] = 270513, - [SMALL_STATE(6858)] = 270532, - [SMALL_STATE(6859)] = 270549, - [SMALL_STATE(6860)] = 270562, - [SMALL_STATE(6861)] = 270581, - [SMALL_STATE(6862)] = 270596, - [SMALL_STATE(6863)] = 270615, - [SMALL_STATE(6864)] = 270634, - [SMALL_STATE(6865)] = 270651, - [SMALL_STATE(6866)] = 270668, - [SMALL_STATE(6867)] = 270685, - [SMALL_STATE(6868)] = 270702, - [SMALL_STATE(6869)] = 270721, - [SMALL_STATE(6870)] = 270734, - [SMALL_STATE(6871)] = 270753, - [SMALL_STATE(6872)] = 270770, - [SMALL_STATE(6873)] = 270785, - [SMALL_STATE(6874)] = 270804, - [SMALL_STATE(6875)] = 270821, - [SMALL_STATE(6876)] = 270840, - [SMALL_STATE(6877)] = 270859, - [SMALL_STATE(6878)] = 270876, - [SMALL_STATE(6879)] = 270889, - [SMALL_STATE(6880)] = 270908, - [SMALL_STATE(6881)] = 270927, - [SMALL_STATE(6882)] = 270942, - [SMALL_STATE(6883)] = 270961, - [SMALL_STATE(6884)] = 270978, - [SMALL_STATE(6885)] = 270997, - [SMALL_STATE(6886)] = 271014, - [SMALL_STATE(6887)] = 271033, - [SMALL_STATE(6888)] = 271050, - [SMALL_STATE(6889)] = 271067, - [SMALL_STATE(6890)] = 271078, - [SMALL_STATE(6891)] = 271095, - [SMALL_STATE(6892)] = 271114, - [SMALL_STATE(6893)] = 271133, - [SMALL_STATE(6894)] = 271150, - [SMALL_STATE(6895)] = 271167, - [SMALL_STATE(6896)] = 271184, - [SMALL_STATE(6897)] = 271203, - [SMALL_STATE(6898)] = 271220, - [SMALL_STATE(6899)] = 271237, - [SMALL_STATE(6900)] = 271254, - [SMALL_STATE(6901)] = 271271, - [SMALL_STATE(6902)] = 271288, - [SMALL_STATE(6903)] = 271305, - [SMALL_STATE(6904)] = 271324, - [SMALL_STATE(6905)] = 271343, - [SMALL_STATE(6906)] = 271362, - [SMALL_STATE(6907)] = 271379, - [SMALL_STATE(6908)] = 271396, - [SMALL_STATE(6909)] = 271413, - [SMALL_STATE(6910)] = 271430, - [SMALL_STATE(6911)] = 271447, - [SMALL_STATE(6912)] = 271464, - [SMALL_STATE(6913)] = 271481, - [SMALL_STATE(6914)] = 271498, - [SMALL_STATE(6915)] = 271515, - [SMALL_STATE(6916)] = 271534, - [SMALL_STATE(6917)] = 271553, - [SMALL_STATE(6918)] = 271570, - [SMALL_STATE(6919)] = 271587, - [SMALL_STATE(6920)] = 271604, - [SMALL_STATE(6921)] = 271621, - [SMALL_STATE(6922)] = 271638, - [SMALL_STATE(6923)] = 271655, - [SMALL_STATE(6924)] = 271670, - [SMALL_STATE(6925)] = 271687, - [SMALL_STATE(6926)] = 271704, - [SMALL_STATE(6927)] = 271723, - [SMALL_STATE(6928)] = 271740, - [SMALL_STATE(6929)] = 271759, - [SMALL_STATE(6930)] = 271776, - [SMALL_STATE(6931)] = 271792, - [SMALL_STATE(6932)] = 271808, - [SMALL_STATE(6933)] = 271822, - [SMALL_STATE(6934)] = 271838, - [SMALL_STATE(6935)] = 271854, - [SMALL_STATE(6936)] = 271868, - [SMALL_STATE(6937)] = 271882, - [SMALL_STATE(6938)] = 271898, - [SMALL_STATE(6939)] = 271914, - [SMALL_STATE(6940)] = 271930, - [SMALL_STATE(6941)] = 271940, - [SMALL_STATE(6942)] = 271950, - [SMALL_STATE(6943)] = 271964, - [SMALL_STATE(6944)] = 271980, - [SMALL_STATE(6945)] = 271994, - [SMALL_STATE(6946)] = 272010, - [SMALL_STATE(6947)] = 272026, - [SMALL_STATE(6948)] = 272042, - [SMALL_STATE(6949)] = 272056, - [SMALL_STATE(6950)] = 272072, - [SMALL_STATE(6951)] = 272088, - [SMALL_STATE(6952)] = 272100, - [SMALL_STATE(6953)] = 272116, - [SMALL_STATE(6954)] = 272132, - [SMALL_STATE(6955)] = 272148, - [SMALL_STATE(6956)] = 272164, - [SMALL_STATE(6957)] = 272180, - [SMALL_STATE(6958)] = 272194, - [SMALL_STATE(6959)] = 272210, - [SMALL_STATE(6960)] = 272226, - [SMALL_STATE(6961)] = 272242, - [SMALL_STATE(6962)] = 272258, - [SMALL_STATE(6963)] = 272272, - [SMALL_STATE(6964)] = 272286, - [SMALL_STATE(6965)] = 272302, - [SMALL_STATE(6966)] = 272318, - [SMALL_STATE(6967)] = 272334, - [SMALL_STATE(6968)] = 272350, - [SMALL_STATE(6969)] = 272366, - [SMALL_STATE(6970)] = 272376, - [SMALL_STATE(6971)] = 272392, - [SMALL_STATE(6972)] = 272408, - [SMALL_STATE(6973)] = 272422, - [SMALL_STATE(6974)] = 272436, - [SMALL_STATE(6975)] = 272452, - [SMALL_STATE(6976)] = 272466, - [SMALL_STATE(6977)] = 272482, - [SMALL_STATE(6978)] = 272498, - [SMALL_STATE(6979)] = 272514, - [SMALL_STATE(6980)] = 272530, - [SMALL_STATE(6981)] = 272546, - [SMALL_STATE(6982)] = 272562, - [SMALL_STATE(6983)] = 272578, - [SMALL_STATE(6984)] = 272592, - [SMALL_STATE(6985)] = 272608, - [SMALL_STATE(6986)] = 272624, - [SMALL_STATE(6987)] = 272640, - [SMALL_STATE(6988)] = 272656, - [SMALL_STATE(6989)] = 272670, - [SMALL_STATE(6990)] = 272686, - [SMALL_STATE(6991)] = 272702, - [SMALL_STATE(6992)] = 272718, - [SMALL_STATE(6993)] = 272734, - [SMALL_STATE(6994)] = 272750, - [SMALL_STATE(6995)] = 272766, - [SMALL_STATE(6996)] = 272782, - [SMALL_STATE(6997)] = 272796, - [SMALL_STATE(6998)] = 272812, - [SMALL_STATE(6999)] = 272828, - [SMALL_STATE(7000)] = 272844, - [SMALL_STATE(7001)] = 272860, - [SMALL_STATE(7002)] = 272876, - [SMALL_STATE(7003)] = 272892, - [SMALL_STATE(7004)] = 272908, - [SMALL_STATE(7005)] = 272924, - [SMALL_STATE(7006)] = 272940, - [SMALL_STATE(7007)] = 272956, - [SMALL_STATE(7008)] = 272972, - [SMALL_STATE(7009)] = 272988, - [SMALL_STATE(7010)] = 273004, - [SMALL_STATE(7011)] = 273020, - [SMALL_STATE(7012)] = 273036, - [SMALL_STATE(7013)] = 273052, - [SMALL_STATE(7014)] = 273068, - [SMALL_STATE(7015)] = 273084, - [SMALL_STATE(7016)] = 273100, - [SMALL_STATE(7017)] = 273116, - [SMALL_STATE(7018)] = 273130, - [SMALL_STATE(7019)] = 273146, - [SMALL_STATE(7020)] = 273162, - [SMALL_STATE(7021)] = 273176, - [SMALL_STATE(7022)] = 273192, - [SMALL_STATE(7023)] = 273208, - [SMALL_STATE(7024)] = 273224, - [SMALL_STATE(7025)] = 273240, - [SMALL_STATE(7026)] = 273256, - [SMALL_STATE(7027)] = 273270, - [SMALL_STATE(7028)] = 273286, - [SMALL_STATE(7029)] = 273300, - [SMALL_STATE(7030)] = 273314, - [SMALL_STATE(7031)] = 273330, - [SMALL_STATE(7032)] = 273342, - [SMALL_STATE(7033)] = 273358, - [SMALL_STATE(7034)] = 273374, - [SMALL_STATE(7035)] = 273388, - [SMALL_STATE(7036)] = 273402, - [SMALL_STATE(7037)] = 273416, - [SMALL_STATE(7038)] = 273430, - [SMALL_STATE(7039)] = 273446, - [SMALL_STATE(7040)] = 273462, - [SMALL_STATE(7041)] = 273478, - [SMALL_STATE(7042)] = 273494, - [SMALL_STATE(7043)] = 273510, - [SMALL_STATE(7044)] = 273526, - [SMALL_STATE(7045)] = 273542, - [SMALL_STATE(7046)] = 273554, - [SMALL_STATE(7047)] = 273568, - [SMALL_STATE(7048)] = 273582, - [SMALL_STATE(7049)] = 273596, - [SMALL_STATE(7050)] = 273612, - [SMALL_STATE(7051)] = 273624, - [SMALL_STATE(7052)] = 273638, - [SMALL_STATE(7053)] = 273654, - [SMALL_STATE(7054)] = 273670, - [SMALL_STATE(7055)] = 273684, - [SMALL_STATE(7056)] = 273698, - [SMALL_STATE(7057)] = 273714, - [SMALL_STATE(7058)] = 273730, - [SMALL_STATE(7059)] = 273746, - [SMALL_STATE(7060)] = 273760, - [SMALL_STATE(7061)] = 273776, - [SMALL_STATE(7062)] = 273792, - [SMALL_STATE(7063)] = 273806, - [SMALL_STATE(7064)] = 273820, - [SMALL_STATE(7065)] = 273836, - [SMALL_STATE(7066)] = 273852, - [SMALL_STATE(7067)] = 273868, - [SMALL_STATE(7068)] = 273882, - [SMALL_STATE(7069)] = 273898, - [SMALL_STATE(7070)] = 273914, - [SMALL_STATE(7071)] = 273930, - [SMALL_STATE(7072)] = 273944, - [SMALL_STATE(7073)] = 273958, - [SMALL_STATE(7074)] = 273974, - [SMALL_STATE(7075)] = 273990, - [SMALL_STATE(7076)] = 274004, - [SMALL_STATE(7077)] = 274018, - [SMALL_STATE(7078)] = 274034, - [SMALL_STATE(7079)] = 274050, - [SMALL_STATE(7080)] = 274064, - [SMALL_STATE(7081)] = 274080, - [SMALL_STATE(7082)] = 274096, - [SMALL_STATE(7083)] = 274112, - [SMALL_STATE(7084)] = 274128, - [SMALL_STATE(7085)] = 274144, - [SMALL_STATE(7086)] = 274158, - [SMALL_STATE(7087)] = 274174, - [SMALL_STATE(7088)] = 274188, - [SMALL_STATE(7089)] = 274204, - [SMALL_STATE(7090)] = 274220, - [SMALL_STATE(7091)] = 274236, - [SMALL_STATE(7092)] = 274250, - [SMALL_STATE(7093)] = 274264, - [SMALL_STATE(7094)] = 274278, - [SMALL_STATE(7095)] = 274294, - [SMALL_STATE(7096)] = 274310, - [SMALL_STATE(7097)] = 274326, - [SMALL_STATE(7098)] = 274340, - [SMALL_STATE(7099)] = 274356, - [SMALL_STATE(7100)] = 274372, - [SMALL_STATE(7101)] = 274388, - [SMALL_STATE(7102)] = 274404, - [SMALL_STATE(7103)] = 274420, - [SMALL_STATE(7104)] = 274436, - [SMALL_STATE(7105)] = 274450, - [SMALL_STATE(7106)] = 274466, - [SMALL_STATE(7107)] = 274482, - [SMALL_STATE(7108)] = 274496, - [SMALL_STATE(7109)] = 274512, - [SMALL_STATE(7110)] = 274526, - [SMALL_STATE(7111)] = 274542, - [SMALL_STATE(7112)] = 274558, - [SMALL_STATE(7113)] = 274574, - [SMALL_STATE(7114)] = 274590, - [SMALL_STATE(7115)] = 274606, - [SMALL_STATE(7116)] = 274622, - [SMALL_STATE(7117)] = 274636, - [SMALL_STATE(7118)] = 274652, - [SMALL_STATE(7119)] = 274666, - [SMALL_STATE(7120)] = 274682, - [SMALL_STATE(7121)] = 274696, - [SMALL_STATE(7122)] = 274712, - [SMALL_STATE(7123)] = 274728, - [SMALL_STATE(7124)] = 274742, - [SMALL_STATE(7125)] = 274758, - [SMALL_STATE(7126)] = 274774, - [SMALL_STATE(7127)] = 274790, - [SMALL_STATE(7128)] = 274806, - [SMALL_STATE(7129)] = 274820, - [SMALL_STATE(7130)] = 274836, - [SMALL_STATE(7131)] = 274852, - [SMALL_STATE(7132)] = 274866, - [SMALL_STATE(7133)] = 274882, - [SMALL_STATE(7134)] = 274898, - [SMALL_STATE(7135)] = 274912, - [SMALL_STATE(7136)] = 274928, - [SMALL_STATE(7137)] = 274941, - [SMALL_STATE(7138)] = 274954, - [SMALL_STATE(7139)] = 274967, - [SMALL_STATE(7140)] = 274978, - [SMALL_STATE(7141)] = 274991, - [SMALL_STATE(7142)] = 275004, - [SMALL_STATE(7143)] = 275013, - [SMALL_STATE(7144)] = 275026, - [SMALL_STATE(7145)] = 275037, - [SMALL_STATE(7146)] = 275046, - [SMALL_STATE(7147)] = 275059, - [SMALL_STATE(7148)] = 275072, - [SMALL_STATE(7149)] = 275083, - [SMALL_STATE(7150)] = 275096, - [SMALL_STATE(7151)] = 275109, - [SMALL_STATE(7152)] = 275122, - [SMALL_STATE(7153)] = 275135, - [SMALL_STATE(7154)] = 275148, - [SMALL_STATE(7155)] = 275161, - [SMALL_STATE(7156)] = 275174, - [SMALL_STATE(7157)] = 275187, - [SMALL_STATE(7158)] = 275200, - [SMALL_STATE(7159)] = 275213, - [SMALL_STATE(7160)] = 275224, - [SMALL_STATE(7161)] = 275237, - [SMALL_STATE(7162)] = 275250, - [SMALL_STATE(7163)] = 275263, - [SMALL_STATE(7164)] = 275276, - [SMALL_STATE(7165)] = 275289, - [SMALL_STATE(7166)] = 275302, - [SMALL_STATE(7167)] = 275315, - [SMALL_STATE(7168)] = 275326, - [SMALL_STATE(7169)] = 275337, - [SMALL_STATE(7170)] = 275350, - [SMALL_STATE(7171)] = 275363, - [SMALL_STATE(7172)] = 275376, - [SMALL_STATE(7173)] = 275389, - [SMALL_STATE(7174)] = 275402, - [SMALL_STATE(7175)] = 275415, - [SMALL_STATE(7176)] = 275428, - [SMALL_STATE(7177)] = 275441, - [SMALL_STATE(7178)] = 275454, - [SMALL_STATE(7179)] = 275467, - [SMALL_STATE(7180)] = 275480, - [SMALL_STATE(7181)] = 275491, - [SMALL_STATE(7182)] = 275504, - [SMALL_STATE(7183)] = 275517, - [SMALL_STATE(7184)] = 275530, - [SMALL_STATE(7185)] = 275543, - [SMALL_STATE(7186)] = 275556, - [SMALL_STATE(7187)] = 275569, - [SMALL_STATE(7188)] = 275582, - [SMALL_STATE(7189)] = 275595, - [SMALL_STATE(7190)] = 275608, - [SMALL_STATE(7191)] = 275621, - [SMALL_STATE(7192)] = 275634, - [SMALL_STATE(7193)] = 275647, - [SMALL_STATE(7194)] = 275660, - [SMALL_STATE(7195)] = 275673, - [SMALL_STATE(7196)] = 275686, - [SMALL_STATE(7197)] = 275699, - [SMALL_STATE(7198)] = 275712, - [SMALL_STATE(7199)] = 275725, - [SMALL_STATE(7200)] = 275738, - [SMALL_STATE(7201)] = 275749, - [SMALL_STATE(7202)] = 275762, - [SMALL_STATE(7203)] = 275775, - [SMALL_STATE(7204)] = 275788, - [SMALL_STATE(7205)] = 275801, - [SMALL_STATE(7206)] = 275814, - [SMALL_STATE(7207)] = 275827, - [SMALL_STATE(7208)] = 275840, - [SMALL_STATE(7209)] = 275853, - [SMALL_STATE(7210)] = 275866, - [SMALL_STATE(7211)] = 275879, - [SMALL_STATE(7212)] = 275892, - [SMALL_STATE(7213)] = 275905, - [SMALL_STATE(7214)] = 275918, - [SMALL_STATE(7215)] = 275931, - [SMALL_STATE(7216)] = 275944, - [SMALL_STATE(7217)] = 275957, - [SMALL_STATE(7218)] = 275970, - [SMALL_STATE(7219)] = 275983, - [SMALL_STATE(7220)] = 275996, - [SMALL_STATE(7221)] = 276009, - [SMALL_STATE(7222)] = 276022, - [SMALL_STATE(7223)] = 276035, - [SMALL_STATE(7224)] = 276048, - [SMALL_STATE(7225)] = 276061, - [SMALL_STATE(7226)] = 276074, - [SMALL_STATE(7227)] = 276087, - [SMALL_STATE(7228)] = 276100, - [SMALL_STATE(7229)] = 276113, - [SMALL_STATE(7230)] = 276126, - [SMALL_STATE(7231)] = 276139, - [SMALL_STATE(7232)] = 276152, - [SMALL_STATE(7233)] = 276165, - [SMALL_STATE(7234)] = 276178, - [SMALL_STATE(7235)] = 276191, - [SMALL_STATE(7236)] = 276204, - [SMALL_STATE(7237)] = 276217, - [SMALL_STATE(7238)] = 276230, - [SMALL_STATE(7239)] = 276243, - [SMALL_STATE(7240)] = 276256, - [SMALL_STATE(7241)] = 276269, - [SMALL_STATE(7242)] = 276282, - [SMALL_STATE(7243)] = 276295, - [SMALL_STATE(7244)] = 276308, - [SMALL_STATE(7245)] = 276321, - [SMALL_STATE(7246)] = 276334, - [SMALL_STATE(7247)] = 276347, - [SMALL_STATE(7248)] = 276360, - [SMALL_STATE(7249)] = 276369, - [SMALL_STATE(7250)] = 276382, - [SMALL_STATE(7251)] = 276395, - [SMALL_STATE(7252)] = 276408, - [SMALL_STATE(7253)] = 276417, - [SMALL_STATE(7254)] = 276430, - [SMALL_STATE(7255)] = 276441, - [SMALL_STATE(7256)] = 276454, - [SMALL_STATE(7257)] = 276467, - [SMALL_STATE(7258)] = 276480, - [SMALL_STATE(7259)] = 276493, - [SMALL_STATE(7260)] = 276504, - [SMALL_STATE(7261)] = 276517, - [SMALL_STATE(7262)] = 276530, - [SMALL_STATE(7263)] = 276543, - [SMALL_STATE(7264)] = 276556, - [SMALL_STATE(7265)] = 276569, - [SMALL_STATE(7266)] = 276582, - [SMALL_STATE(7267)] = 276595, - [SMALL_STATE(7268)] = 276608, - [SMALL_STATE(7269)] = 276621, - [SMALL_STATE(7270)] = 276632, - [SMALL_STATE(7271)] = 276645, - [SMALL_STATE(7272)] = 276658, - [SMALL_STATE(7273)] = 276671, - [SMALL_STATE(7274)] = 276684, - [SMALL_STATE(7275)] = 276697, - [SMALL_STATE(7276)] = 276706, - [SMALL_STATE(7277)] = 276715, - [SMALL_STATE(7278)] = 276728, - [SMALL_STATE(7279)] = 276741, - [SMALL_STATE(7280)] = 276754, - [SMALL_STATE(7281)] = 276767, - [SMALL_STATE(7282)] = 276780, - [SMALL_STATE(7283)] = 276793, - [SMALL_STATE(7284)] = 276806, - [SMALL_STATE(7285)] = 276817, - [SMALL_STATE(7286)] = 276826, - [SMALL_STATE(7287)] = 276839, - [SMALL_STATE(7288)] = 276852, - [SMALL_STATE(7289)] = 276865, - [SMALL_STATE(7290)] = 276878, - [SMALL_STATE(7291)] = 276891, - [SMALL_STATE(7292)] = 276904, - [SMALL_STATE(7293)] = 276917, - [SMALL_STATE(7294)] = 276930, - [SMALL_STATE(7295)] = 276939, - [SMALL_STATE(7296)] = 276952, - [SMALL_STATE(7297)] = 276965, - [SMALL_STATE(7298)] = 276976, - [SMALL_STATE(7299)] = 276989, - [SMALL_STATE(7300)] = 277002, - [SMALL_STATE(7301)] = 277015, - [SMALL_STATE(7302)] = 277028, - [SMALL_STATE(7303)] = 277041, - [SMALL_STATE(7304)] = 277054, - [SMALL_STATE(7305)] = 277067, - [SMALL_STATE(7306)] = 277080, - [SMALL_STATE(7307)] = 277093, - [SMALL_STATE(7308)] = 277106, - [SMALL_STATE(7309)] = 277119, - [SMALL_STATE(7310)] = 277132, - [SMALL_STATE(7311)] = 277145, - [SMALL_STATE(7312)] = 277158, - [SMALL_STATE(7313)] = 277171, - [SMALL_STATE(7314)] = 277184, - [SMALL_STATE(7315)] = 277195, - [SMALL_STATE(7316)] = 277208, - [SMALL_STATE(7317)] = 277219, - [SMALL_STATE(7318)] = 277230, - [SMALL_STATE(7319)] = 277243, - [SMALL_STATE(7320)] = 277256, - [SMALL_STATE(7321)] = 277269, - [SMALL_STATE(7322)] = 277282, - [SMALL_STATE(7323)] = 277295, - [SMALL_STATE(7324)] = 277304, - [SMALL_STATE(7325)] = 277317, - [SMALL_STATE(7326)] = 277330, - [SMALL_STATE(7327)] = 277343, - [SMALL_STATE(7328)] = 277356, - [SMALL_STATE(7329)] = 277369, - [SMALL_STATE(7330)] = 277382, - [SMALL_STATE(7331)] = 277395, - [SMALL_STATE(7332)] = 277408, - [SMALL_STATE(7333)] = 277421, - [SMALL_STATE(7334)] = 277434, - [SMALL_STATE(7335)] = 277445, - [SMALL_STATE(7336)] = 277458, - [SMALL_STATE(7337)] = 277471, - [SMALL_STATE(7338)] = 277484, - [SMALL_STATE(7339)] = 277497, - [SMALL_STATE(7340)] = 277510, - [SMALL_STATE(7341)] = 277523, - [SMALL_STATE(7342)] = 277536, - [SMALL_STATE(7343)] = 277549, - [SMALL_STATE(7344)] = 277562, - [SMALL_STATE(7345)] = 277573, - [SMALL_STATE(7346)] = 277586, - [SMALL_STATE(7347)] = 277599, - [SMALL_STATE(7348)] = 277610, - [SMALL_STATE(7349)] = 277623, - [SMALL_STATE(7350)] = 277636, - [SMALL_STATE(7351)] = 277645, - [SMALL_STATE(7352)] = 277658, - [SMALL_STATE(7353)] = 277671, - [SMALL_STATE(7354)] = 277684, - [SMALL_STATE(7355)] = 277697, - [SMALL_STATE(7356)] = 277710, - [SMALL_STATE(7357)] = 277723, - [SMALL_STATE(7358)] = 277736, - [SMALL_STATE(7359)] = 277747, - [SMALL_STATE(7360)] = 277760, - [SMALL_STATE(7361)] = 277771, - [SMALL_STATE(7362)] = 277782, - [SMALL_STATE(7363)] = 277795, - [SMALL_STATE(7364)] = 277808, - [SMALL_STATE(7365)] = 277821, - [SMALL_STATE(7366)] = 277834, - [SMALL_STATE(7367)] = 277847, - [SMALL_STATE(7368)] = 277856, - [SMALL_STATE(7369)] = 277865, - [SMALL_STATE(7370)] = 277876, - [SMALL_STATE(7371)] = 277889, - [SMALL_STATE(7372)] = 277900, - [SMALL_STATE(7373)] = 277913, - [SMALL_STATE(7374)] = 277924, - [SMALL_STATE(7375)] = 277937, - [SMALL_STATE(7376)] = 277950, - [SMALL_STATE(7377)] = 277963, - [SMALL_STATE(7378)] = 277976, - [SMALL_STATE(7379)] = 277987, - [SMALL_STATE(7380)] = 278000, - [SMALL_STATE(7381)] = 278013, - [SMALL_STATE(7382)] = 278026, - [SMALL_STATE(7383)] = 278039, - [SMALL_STATE(7384)] = 278052, - [SMALL_STATE(7385)] = 278065, - [SMALL_STATE(7386)] = 278078, - [SMALL_STATE(7387)] = 278091, - [SMALL_STATE(7388)] = 278104, - [SMALL_STATE(7389)] = 278117, - [SMALL_STATE(7390)] = 278126, - [SMALL_STATE(7391)] = 278139, - [SMALL_STATE(7392)] = 278152, - [SMALL_STATE(7393)] = 278163, - [SMALL_STATE(7394)] = 278176, - [SMALL_STATE(7395)] = 278189, - [SMALL_STATE(7396)] = 278202, - [SMALL_STATE(7397)] = 278215, - [SMALL_STATE(7398)] = 278228, - [SMALL_STATE(7399)] = 278241, - [SMALL_STATE(7400)] = 278254, - [SMALL_STATE(7401)] = 278267, - [SMALL_STATE(7402)] = 278280, - [SMALL_STATE(7403)] = 278293, - [SMALL_STATE(7404)] = 278304, - [SMALL_STATE(7405)] = 278317, - [SMALL_STATE(7406)] = 278328, - [SMALL_STATE(7407)] = 278341, - [SMALL_STATE(7408)] = 278354, - [SMALL_STATE(7409)] = 278365, - [SMALL_STATE(7410)] = 278378, - [SMALL_STATE(7411)] = 278391, - [SMALL_STATE(7412)] = 278404, - [SMALL_STATE(7413)] = 278417, - [SMALL_STATE(7414)] = 278430, - [SMALL_STATE(7415)] = 278443, - [SMALL_STATE(7416)] = 278456, - [SMALL_STATE(7417)] = 278469, - [SMALL_STATE(7418)] = 278482, - [SMALL_STATE(7419)] = 278495, - [SMALL_STATE(7420)] = 278508, - [SMALL_STATE(7421)] = 278521, - [SMALL_STATE(7422)] = 278534, - [SMALL_STATE(7423)] = 278545, - [SMALL_STATE(7424)] = 278558, - [SMALL_STATE(7425)] = 278569, - [SMALL_STATE(7426)] = 278582, - [SMALL_STATE(7427)] = 278591, - [SMALL_STATE(7428)] = 278604, - [SMALL_STATE(7429)] = 278617, - [SMALL_STATE(7430)] = 278630, - [SMALL_STATE(7431)] = 278643, - [SMALL_STATE(7432)] = 278656, - [SMALL_STATE(7433)] = 278669, - [SMALL_STATE(7434)] = 278682, - [SMALL_STATE(7435)] = 278691, - [SMALL_STATE(7436)] = 278704, - [SMALL_STATE(7437)] = 278717, - [SMALL_STATE(7438)] = 278730, - [SMALL_STATE(7439)] = 278743, - [SMALL_STATE(7440)] = 278756, - [SMALL_STATE(7441)] = 278769, - [SMALL_STATE(7442)] = 278782, - [SMALL_STATE(7443)] = 278795, - [SMALL_STATE(7444)] = 278806, - [SMALL_STATE(7445)] = 278819, - [SMALL_STATE(7446)] = 278832, - [SMALL_STATE(7447)] = 278845, - [SMALL_STATE(7448)] = 278858, - [SMALL_STATE(7449)] = 278869, - [SMALL_STATE(7450)] = 278882, - [SMALL_STATE(7451)] = 278895, - [SMALL_STATE(7452)] = 278908, - [SMALL_STATE(7453)] = 278921, - [SMALL_STATE(7454)] = 278932, - [SMALL_STATE(7455)] = 278945, - [SMALL_STATE(7456)] = 278958, - [SMALL_STATE(7457)] = 278971, - [SMALL_STATE(7458)] = 278984, - [SMALL_STATE(7459)] = 278995, - [SMALL_STATE(7460)] = 279008, - [SMALL_STATE(7461)] = 279021, - [SMALL_STATE(7462)] = 279032, - [SMALL_STATE(7463)] = 279043, - [SMALL_STATE(7464)] = 279054, - [SMALL_STATE(7465)] = 279065, - [SMALL_STATE(7466)] = 279078, - [SMALL_STATE(7467)] = 279089, - [SMALL_STATE(7468)] = 279100, - [SMALL_STATE(7469)] = 279111, - [SMALL_STATE(7470)] = 279124, - [SMALL_STATE(7471)] = 279137, - [SMALL_STATE(7472)] = 279150, - [SMALL_STATE(7473)] = 279163, - [SMALL_STATE(7474)] = 279176, - [SMALL_STATE(7475)] = 279189, - [SMALL_STATE(7476)] = 279200, - [SMALL_STATE(7477)] = 279213, - [SMALL_STATE(7478)] = 279222, - [SMALL_STATE(7479)] = 279231, - [SMALL_STATE(7480)] = 279244, - [SMALL_STATE(7481)] = 279257, - [SMALL_STATE(7482)] = 279270, - [SMALL_STATE(7483)] = 279283, - [SMALL_STATE(7484)] = 279296, - [SMALL_STATE(7485)] = 279309, - [SMALL_STATE(7486)] = 279322, - [SMALL_STATE(7487)] = 279335, - [SMALL_STATE(7488)] = 279348, - [SMALL_STATE(7489)] = 279361, - [SMALL_STATE(7490)] = 279374, - [SMALL_STATE(7491)] = 279387, - [SMALL_STATE(7492)] = 279400, - [SMALL_STATE(7493)] = 279413, - [SMALL_STATE(7494)] = 279424, - [SMALL_STATE(7495)] = 279437, - [SMALL_STATE(7496)] = 279448, - [SMALL_STATE(7497)] = 279459, - [SMALL_STATE(7498)] = 279470, - [SMALL_STATE(7499)] = 279483, - [SMALL_STATE(7500)] = 279496, - [SMALL_STATE(7501)] = 279509, - [SMALL_STATE(7502)] = 279522, - [SMALL_STATE(7503)] = 279535, - [SMALL_STATE(7504)] = 279548, - [SMALL_STATE(7505)] = 279561, - [SMALL_STATE(7506)] = 279574, - [SMALL_STATE(7507)] = 279587, - [SMALL_STATE(7508)] = 279600, - [SMALL_STATE(7509)] = 279611, - [SMALL_STATE(7510)] = 279624, - [SMALL_STATE(7511)] = 279635, - [SMALL_STATE(7512)] = 279648, - [SMALL_STATE(7513)] = 279661, - [SMALL_STATE(7514)] = 279674, - [SMALL_STATE(7515)] = 279687, - [SMALL_STATE(7516)] = 279700, - [SMALL_STATE(7517)] = 279713, - [SMALL_STATE(7518)] = 279726, - [SMALL_STATE(7519)] = 279737, - [SMALL_STATE(7520)] = 279748, - [SMALL_STATE(7521)] = 279759, - [SMALL_STATE(7522)] = 279772, - [SMALL_STATE(7523)] = 279785, - [SMALL_STATE(7524)] = 279798, - [SMALL_STATE(7525)] = 279811, - [SMALL_STATE(7526)] = 279824, - [SMALL_STATE(7527)] = 279837, - [SMALL_STATE(7528)] = 279848, - [SMALL_STATE(7529)] = 279859, - [SMALL_STATE(7530)] = 279870, - [SMALL_STATE(7531)] = 279881, - [SMALL_STATE(7532)] = 279894, - [SMALL_STATE(7533)] = 279907, - [SMALL_STATE(7534)] = 279920, - [SMALL_STATE(7535)] = 279933, - [SMALL_STATE(7536)] = 279946, - [SMALL_STATE(7537)] = 279959, - [SMALL_STATE(7538)] = 279972, - [SMALL_STATE(7539)] = 279985, - [SMALL_STATE(7540)] = 279998, - [SMALL_STATE(7541)] = 280011, - [SMALL_STATE(7542)] = 280024, - [SMALL_STATE(7543)] = 280037, - [SMALL_STATE(7544)] = 280050, - [SMALL_STATE(7545)] = 280063, - [SMALL_STATE(7546)] = 280076, - [SMALL_STATE(7547)] = 280089, - [SMALL_STATE(7548)] = 280102, - [SMALL_STATE(7549)] = 280113, - [SMALL_STATE(7550)] = 280126, - [SMALL_STATE(7551)] = 280139, - [SMALL_STATE(7552)] = 280152, - [SMALL_STATE(7553)] = 280165, - [SMALL_STATE(7554)] = 280178, - [SMALL_STATE(7555)] = 280191, - [SMALL_STATE(7556)] = 280204, - [SMALL_STATE(7557)] = 280217, - [SMALL_STATE(7558)] = 280230, - [SMALL_STATE(7559)] = 280243, - [SMALL_STATE(7560)] = 280256, - [SMALL_STATE(7561)] = 280269, - [SMALL_STATE(7562)] = 280279, - [SMALL_STATE(7563)] = 280287, - [SMALL_STATE(7564)] = 280297, - [SMALL_STATE(7565)] = 280305, - [SMALL_STATE(7566)] = 280315, - [SMALL_STATE(7567)] = 280325, - [SMALL_STATE(7568)] = 280335, - [SMALL_STATE(7569)] = 280345, - [SMALL_STATE(7570)] = 280353, - [SMALL_STATE(7571)] = 280363, - [SMALL_STATE(7572)] = 280373, - [SMALL_STATE(7573)] = 280383, - [SMALL_STATE(7574)] = 280393, - [SMALL_STATE(7575)] = 280403, - [SMALL_STATE(7576)] = 280413, - [SMALL_STATE(7577)] = 280423, - [SMALL_STATE(7578)] = 280433, - [SMALL_STATE(7579)] = 280443, - [SMALL_STATE(7580)] = 280453, - [SMALL_STATE(7581)] = 280461, - [SMALL_STATE(7582)] = 280471, - [SMALL_STATE(7583)] = 280481, - [SMALL_STATE(7584)] = 280491, - [SMALL_STATE(7585)] = 280499, - [SMALL_STATE(7586)] = 280509, - [SMALL_STATE(7587)] = 280517, - [SMALL_STATE(7588)] = 280527, - [SMALL_STATE(7589)] = 280537, - [SMALL_STATE(7590)] = 280547, - [SMALL_STATE(7591)] = 280555, - [SMALL_STATE(7592)] = 280565, - [SMALL_STATE(7593)] = 280575, - [SMALL_STATE(7594)] = 280585, - [SMALL_STATE(7595)] = 280595, - [SMALL_STATE(7596)] = 280605, - [SMALL_STATE(7597)] = 280613, - [SMALL_STATE(7598)] = 280623, - [SMALL_STATE(7599)] = 280633, - [SMALL_STATE(7600)] = 280643, - [SMALL_STATE(7601)] = 280653, - [SMALL_STATE(7602)] = 280663, - [SMALL_STATE(7603)] = 280673, - [SMALL_STATE(7604)] = 280683, - [SMALL_STATE(7605)] = 280693, - [SMALL_STATE(7606)] = 280703, - [SMALL_STATE(7607)] = 280713, - [SMALL_STATE(7608)] = 280723, - [SMALL_STATE(7609)] = 280733, - [SMALL_STATE(7610)] = 280743, - [SMALL_STATE(7611)] = 280753, - [SMALL_STATE(7612)] = 280763, - [SMALL_STATE(7613)] = 280773, - [SMALL_STATE(7614)] = 280783, - [SMALL_STATE(7615)] = 280793, - [SMALL_STATE(7616)] = 280803, - [SMALL_STATE(7617)] = 280813, - [SMALL_STATE(7618)] = 280823, - [SMALL_STATE(7619)] = 280833, - [SMALL_STATE(7620)] = 280843, - [SMALL_STATE(7621)] = 280853, - [SMALL_STATE(7622)] = 280863, - [SMALL_STATE(7623)] = 280873, - [SMALL_STATE(7624)] = 280883, - [SMALL_STATE(7625)] = 280893, - [SMALL_STATE(7626)] = 280903, - [SMALL_STATE(7627)] = 280913, - [SMALL_STATE(7628)] = 280923, - [SMALL_STATE(7629)] = 280933, - [SMALL_STATE(7630)] = 280943, - [SMALL_STATE(7631)] = 280953, - [SMALL_STATE(7632)] = 280963, - [SMALL_STATE(7633)] = 280973, - [SMALL_STATE(7634)] = 280983, - [SMALL_STATE(7635)] = 280993, - [SMALL_STATE(7636)] = 281003, - [SMALL_STATE(7637)] = 281013, - [SMALL_STATE(7638)] = 281023, - [SMALL_STATE(7639)] = 281033, - [SMALL_STATE(7640)] = 281043, - [SMALL_STATE(7641)] = 281051, - [SMALL_STATE(7642)] = 281061, - [SMALL_STATE(7643)] = 281071, - [SMALL_STATE(7644)] = 281081, - [SMALL_STATE(7645)] = 281091, - [SMALL_STATE(7646)] = 281101, - [SMALL_STATE(7647)] = 281111, - [SMALL_STATE(7648)] = 281121, - [SMALL_STATE(7649)] = 281129, - [SMALL_STATE(7650)] = 281139, - [SMALL_STATE(7651)] = 281147, - [SMALL_STATE(7652)] = 281157, - [SMALL_STATE(7653)] = 281167, - [SMALL_STATE(7654)] = 281177, - [SMALL_STATE(7655)] = 281187, - [SMALL_STATE(7656)] = 281197, - [SMALL_STATE(7657)] = 281207, - [SMALL_STATE(7658)] = 281217, - [SMALL_STATE(7659)] = 281227, - [SMALL_STATE(7660)] = 281237, - [SMALL_STATE(7661)] = 281247, - [SMALL_STATE(7662)] = 281257, - [SMALL_STATE(7663)] = 281267, - [SMALL_STATE(7664)] = 281277, - [SMALL_STATE(7665)] = 281287, - [SMALL_STATE(7666)] = 281297, - [SMALL_STATE(7667)] = 281307, - [SMALL_STATE(7668)] = 281317, - [SMALL_STATE(7669)] = 281327, - [SMALL_STATE(7670)] = 281337, - [SMALL_STATE(7671)] = 281347, - [SMALL_STATE(7672)] = 281357, - [SMALL_STATE(7673)] = 281367, - [SMALL_STATE(7674)] = 281377, - [SMALL_STATE(7675)] = 281387, - [SMALL_STATE(7676)] = 281397, - [SMALL_STATE(7677)] = 281407, - [SMALL_STATE(7678)] = 281417, - [SMALL_STATE(7679)] = 281427, - [SMALL_STATE(7680)] = 281437, - [SMALL_STATE(7681)] = 281445, - [SMALL_STATE(7682)] = 281455, - [SMALL_STATE(7683)] = 281465, - [SMALL_STATE(7684)] = 281475, - [SMALL_STATE(7685)] = 281485, - [SMALL_STATE(7686)] = 281495, - [SMALL_STATE(7687)] = 281505, - [SMALL_STATE(7688)] = 281515, - [SMALL_STATE(7689)] = 281525, - [SMALL_STATE(7690)] = 281535, - [SMALL_STATE(7691)] = 281543, - [SMALL_STATE(7692)] = 281553, - [SMALL_STATE(7693)] = 281563, - [SMALL_STATE(7694)] = 281573, - [SMALL_STATE(7695)] = 281583, - [SMALL_STATE(7696)] = 281593, - [SMALL_STATE(7697)] = 281603, - [SMALL_STATE(7698)] = 281613, - [SMALL_STATE(7699)] = 281621, - [SMALL_STATE(7700)] = 281631, - [SMALL_STATE(7701)] = 281641, - [SMALL_STATE(7702)] = 281651, - [SMALL_STATE(7703)] = 281661, - [SMALL_STATE(7704)] = 281671, - [SMALL_STATE(7705)] = 281681, - [SMALL_STATE(7706)] = 281691, - [SMALL_STATE(7707)] = 281701, - [SMALL_STATE(7708)] = 281711, - [SMALL_STATE(7709)] = 281721, - [SMALL_STATE(7710)] = 281731, - [SMALL_STATE(7711)] = 281741, - [SMALL_STATE(7712)] = 281749, - [SMALL_STATE(7713)] = 281759, - [SMALL_STATE(7714)] = 281769, - [SMALL_STATE(7715)] = 281779, - [SMALL_STATE(7716)] = 281789, - [SMALL_STATE(7717)] = 281799, - [SMALL_STATE(7718)] = 281809, - [SMALL_STATE(7719)] = 281819, - [SMALL_STATE(7720)] = 281829, - [SMALL_STATE(7721)] = 281839, - [SMALL_STATE(7722)] = 281849, - [SMALL_STATE(7723)] = 281857, - [SMALL_STATE(7724)] = 281867, - [SMALL_STATE(7725)] = 281877, - [SMALL_STATE(7726)] = 281887, - [SMALL_STATE(7727)] = 281897, - [SMALL_STATE(7728)] = 281907, - [SMALL_STATE(7729)] = 281917, - [SMALL_STATE(7730)] = 281927, - [SMALL_STATE(7731)] = 281935, - [SMALL_STATE(7732)] = 281943, - [SMALL_STATE(7733)] = 281953, - [SMALL_STATE(7734)] = 281963, - [SMALL_STATE(7735)] = 281973, - [SMALL_STATE(7736)] = 281981, - [SMALL_STATE(7737)] = 281991, - [SMALL_STATE(7738)] = 282001, - [SMALL_STATE(7739)] = 282011, - [SMALL_STATE(7740)] = 282021, - [SMALL_STATE(7741)] = 282031, - [SMALL_STATE(7742)] = 282041, - [SMALL_STATE(7743)] = 282049, - [SMALL_STATE(7744)] = 282059, - [SMALL_STATE(7745)] = 282067, - [SMALL_STATE(7746)] = 282077, - [SMALL_STATE(7747)] = 282087, - [SMALL_STATE(7748)] = 282097, - [SMALL_STATE(7749)] = 282107, - [SMALL_STATE(7750)] = 282117, - [SMALL_STATE(7751)] = 282125, - [SMALL_STATE(7752)] = 282133, - [SMALL_STATE(7753)] = 282143, - [SMALL_STATE(7754)] = 282153, - [SMALL_STATE(7755)] = 282163, - [SMALL_STATE(7756)] = 282173, - [SMALL_STATE(7757)] = 282183, - [SMALL_STATE(7758)] = 282193, - [SMALL_STATE(7759)] = 282201, - [SMALL_STATE(7760)] = 282211, - [SMALL_STATE(7761)] = 282219, - [SMALL_STATE(7762)] = 282227, - [SMALL_STATE(7763)] = 282237, - [SMALL_STATE(7764)] = 282247, - [SMALL_STATE(7765)] = 282257, - [SMALL_STATE(7766)] = 282267, - [SMALL_STATE(7767)] = 282275, - [SMALL_STATE(7768)] = 282285, - [SMALL_STATE(7769)] = 282295, - [SMALL_STATE(7770)] = 282305, - [SMALL_STATE(7771)] = 282315, - [SMALL_STATE(7772)] = 282325, - [SMALL_STATE(7773)] = 282335, - [SMALL_STATE(7774)] = 282345, - [SMALL_STATE(7775)] = 282355, - [SMALL_STATE(7776)] = 282363, - [SMALL_STATE(7777)] = 282371, - [SMALL_STATE(7778)] = 282381, - [SMALL_STATE(7779)] = 282389, - [SMALL_STATE(7780)] = 282399, - [SMALL_STATE(7781)] = 282409, - [SMALL_STATE(7782)] = 282419, - [SMALL_STATE(7783)] = 282427, - [SMALL_STATE(7784)] = 282437, - [SMALL_STATE(7785)] = 282447, - [SMALL_STATE(7786)] = 282455, - [SMALL_STATE(7787)] = 282465, - [SMALL_STATE(7788)] = 282475, - [SMALL_STATE(7789)] = 282485, - [SMALL_STATE(7790)] = 282495, - [SMALL_STATE(7791)] = 282505, - [SMALL_STATE(7792)] = 282515, - [SMALL_STATE(7793)] = 282525, - [SMALL_STATE(7794)] = 282535, - [SMALL_STATE(7795)] = 282545, - [SMALL_STATE(7796)] = 282555, - [SMALL_STATE(7797)] = 282565, - [SMALL_STATE(7798)] = 282575, - [SMALL_STATE(7799)] = 282585, - [SMALL_STATE(7800)] = 282595, - [SMALL_STATE(7801)] = 282603, - [SMALL_STATE(7802)] = 282613, - [SMALL_STATE(7803)] = 282623, - [SMALL_STATE(7804)] = 282633, - [SMALL_STATE(7805)] = 282643, - [SMALL_STATE(7806)] = 282653, - [SMALL_STATE(7807)] = 282663, - [SMALL_STATE(7808)] = 282673, - [SMALL_STATE(7809)] = 282683, - [SMALL_STATE(7810)] = 282693, - [SMALL_STATE(7811)] = 282701, - [SMALL_STATE(7812)] = 282711, - [SMALL_STATE(7813)] = 282721, - [SMALL_STATE(7814)] = 282731, - [SMALL_STATE(7815)] = 282741, - [SMALL_STATE(7816)] = 282751, - [SMALL_STATE(7817)] = 282759, - [SMALL_STATE(7818)] = 282769, - [SMALL_STATE(7819)] = 282779, - [SMALL_STATE(7820)] = 282787, - [SMALL_STATE(7821)] = 282797, - [SMALL_STATE(7822)] = 282807, - [SMALL_STATE(7823)] = 282817, - [SMALL_STATE(7824)] = 282827, - [SMALL_STATE(7825)] = 282837, - [SMALL_STATE(7826)] = 282847, - [SMALL_STATE(7827)] = 282855, - [SMALL_STATE(7828)] = 282865, - [SMALL_STATE(7829)] = 282873, - [SMALL_STATE(7830)] = 282883, - [SMALL_STATE(7831)] = 282893, - [SMALL_STATE(7832)] = 282903, - [SMALL_STATE(7833)] = 282913, - [SMALL_STATE(7834)] = 282923, - [SMALL_STATE(7835)] = 282933, - [SMALL_STATE(7836)] = 282943, - [SMALL_STATE(7837)] = 282953, - [SMALL_STATE(7838)] = 282963, - [SMALL_STATE(7839)] = 282973, - [SMALL_STATE(7840)] = 282983, - [SMALL_STATE(7841)] = 282993, - [SMALL_STATE(7842)] = 283003, - [SMALL_STATE(7843)] = 283013, - [SMALL_STATE(7844)] = 283023, - [SMALL_STATE(7845)] = 283033, - [SMALL_STATE(7846)] = 283043, - [SMALL_STATE(7847)] = 283053, - [SMALL_STATE(7848)] = 283063, - [SMALL_STATE(7849)] = 283073, - [SMALL_STATE(7850)] = 283081, - [SMALL_STATE(7851)] = 283091, - [SMALL_STATE(7852)] = 283101, - [SMALL_STATE(7853)] = 283111, - [SMALL_STATE(7854)] = 283121, - [SMALL_STATE(7855)] = 283131, - [SMALL_STATE(7856)] = 283141, - [SMALL_STATE(7857)] = 283151, - [SMALL_STATE(7858)] = 283161, - [SMALL_STATE(7859)] = 283171, - [SMALL_STATE(7860)] = 283181, - [SMALL_STATE(7861)] = 283191, - [SMALL_STATE(7862)] = 283201, - [SMALL_STATE(7863)] = 283211, - [SMALL_STATE(7864)] = 283221, - [SMALL_STATE(7865)] = 283231, - [SMALL_STATE(7866)] = 283241, - [SMALL_STATE(7867)] = 283251, - [SMALL_STATE(7868)] = 283261, - [SMALL_STATE(7869)] = 283271, - [SMALL_STATE(7870)] = 283281, - [SMALL_STATE(7871)] = 283291, - [SMALL_STATE(7872)] = 283301, - [SMALL_STATE(7873)] = 283311, - [SMALL_STATE(7874)] = 283321, - [SMALL_STATE(7875)] = 283331, - [SMALL_STATE(7876)] = 283341, - [SMALL_STATE(7877)] = 283351, - [SMALL_STATE(7878)] = 283361, - [SMALL_STATE(7879)] = 283371, - [SMALL_STATE(7880)] = 283381, - [SMALL_STATE(7881)] = 283391, - [SMALL_STATE(7882)] = 283401, - [SMALL_STATE(7883)] = 283411, - [SMALL_STATE(7884)] = 283421, - [SMALL_STATE(7885)] = 283431, - [SMALL_STATE(7886)] = 283441, - [SMALL_STATE(7887)] = 283451, - [SMALL_STATE(7888)] = 283461, - [SMALL_STATE(7889)] = 283471, - [SMALL_STATE(7890)] = 283481, - [SMALL_STATE(7891)] = 283491, - [SMALL_STATE(7892)] = 283501, - [SMALL_STATE(7893)] = 283511, - [SMALL_STATE(7894)] = 283521, - [SMALL_STATE(7895)] = 283531, - [SMALL_STATE(7896)] = 283539, - [SMALL_STATE(7897)] = 283549, - [SMALL_STATE(7898)] = 283559, - [SMALL_STATE(7899)] = 283569, - [SMALL_STATE(7900)] = 283579, - [SMALL_STATE(7901)] = 283589, - [SMALL_STATE(7902)] = 283599, - [SMALL_STATE(7903)] = 283609, - [SMALL_STATE(7904)] = 283619, - [SMALL_STATE(7905)] = 283629, - [SMALL_STATE(7906)] = 283639, - [SMALL_STATE(7907)] = 283649, - [SMALL_STATE(7908)] = 283659, - [SMALL_STATE(7909)] = 283667, - [SMALL_STATE(7910)] = 283677, - [SMALL_STATE(7911)] = 283687, - [SMALL_STATE(7912)] = 283697, - [SMALL_STATE(7913)] = 283707, - [SMALL_STATE(7914)] = 283717, - [SMALL_STATE(7915)] = 283727, - [SMALL_STATE(7916)] = 283737, - [SMALL_STATE(7917)] = 283747, - [SMALL_STATE(7918)] = 283757, - [SMALL_STATE(7919)] = 283767, - [SMALL_STATE(7920)] = 283777, - [SMALL_STATE(7921)] = 283787, - [SMALL_STATE(7922)] = 283797, - [SMALL_STATE(7923)] = 283807, - [SMALL_STATE(7924)] = 283814, - [SMALL_STATE(7925)] = 283821, - [SMALL_STATE(7926)] = 283828, - [SMALL_STATE(7927)] = 283835, - [SMALL_STATE(7928)] = 283842, - [SMALL_STATE(7929)] = 283849, - [SMALL_STATE(7930)] = 283856, - [SMALL_STATE(7931)] = 283863, - [SMALL_STATE(7932)] = 283870, - [SMALL_STATE(7933)] = 283877, - [SMALL_STATE(7934)] = 283884, - [SMALL_STATE(7935)] = 283891, - [SMALL_STATE(7936)] = 283898, - [SMALL_STATE(7937)] = 283905, - [SMALL_STATE(7938)] = 283912, - [SMALL_STATE(7939)] = 283919, - [SMALL_STATE(7940)] = 283926, - [SMALL_STATE(7941)] = 283933, - [SMALL_STATE(7942)] = 283940, - [SMALL_STATE(7943)] = 283947, - [SMALL_STATE(7944)] = 283954, - [SMALL_STATE(7945)] = 283961, - [SMALL_STATE(7946)] = 283968, - [SMALL_STATE(7947)] = 283975, - [SMALL_STATE(7948)] = 283982, - [SMALL_STATE(7949)] = 283989, - [SMALL_STATE(7950)] = 283996, - [SMALL_STATE(7951)] = 284003, - [SMALL_STATE(7952)] = 284010, - [SMALL_STATE(7953)] = 284017, - [SMALL_STATE(7954)] = 284024, - [SMALL_STATE(7955)] = 284031, - [SMALL_STATE(7956)] = 284038, - [SMALL_STATE(7957)] = 284045, - [SMALL_STATE(7958)] = 284052, - [SMALL_STATE(7959)] = 284059, - [SMALL_STATE(7960)] = 284066, - [SMALL_STATE(7961)] = 284073, - [SMALL_STATE(7962)] = 284080, - [SMALL_STATE(7963)] = 284087, - [SMALL_STATE(7964)] = 284094, - [SMALL_STATE(7965)] = 284101, - [SMALL_STATE(7966)] = 284108, - [SMALL_STATE(7967)] = 284115, - [SMALL_STATE(7968)] = 284122, - [SMALL_STATE(7969)] = 284129, - [SMALL_STATE(7970)] = 284136, - [SMALL_STATE(7971)] = 284143, - [SMALL_STATE(7972)] = 284150, - [SMALL_STATE(7973)] = 284157, - [SMALL_STATE(7974)] = 284164, - [SMALL_STATE(7975)] = 284171, - [SMALL_STATE(7976)] = 284178, - [SMALL_STATE(7977)] = 284185, - [SMALL_STATE(7978)] = 284192, - [SMALL_STATE(7979)] = 284199, - [SMALL_STATE(7980)] = 284206, - [SMALL_STATE(7981)] = 284213, - [SMALL_STATE(7982)] = 284220, - [SMALL_STATE(7983)] = 284227, - [SMALL_STATE(7984)] = 284234, - [SMALL_STATE(7985)] = 284241, - [SMALL_STATE(7986)] = 284248, - [SMALL_STATE(7987)] = 284255, - [SMALL_STATE(7988)] = 284262, - [SMALL_STATE(7989)] = 284269, - [SMALL_STATE(7990)] = 284276, - [SMALL_STATE(7991)] = 284283, - [SMALL_STATE(7992)] = 284290, - [SMALL_STATE(7993)] = 284297, - [SMALL_STATE(7994)] = 284304, - [SMALL_STATE(7995)] = 284311, - [SMALL_STATE(7996)] = 284318, - [SMALL_STATE(7997)] = 284325, - [SMALL_STATE(7998)] = 284332, - [SMALL_STATE(7999)] = 284339, - [SMALL_STATE(8000)] = 284346, - [SMALL_STATE(8001)] = 284353, - [SMALL_STATE(8002)] = 284360, - [SMALL_STATE(8003)] = 284367, - [SMALL_STATE(8004)] = 284374, - [SMALL_STATE(8005)] = 284381, - [SMALL_STATE(8006)] = 284388, - [SMALL_STATE(8007)] = 284395, - [SMALL_STATE(8008)] = 284402, - [SMALL_STATE(8009)] = 284409, - [SMALL_STATE(8010)] = 284416, - [SMALL_STATE(8011)] = 284423, - [SMALL_STATE(8012)] = 284430, - [SMALL_STATE(8013)] = 284437, - [SMALL_STATE(8014)] = 284444, - [SMALL_STATE(8015)] = 284451, - [SMALL_STATE(8016)] = 284458, - [SMALL_STATE(8017)] = 284465, - [SMALL_STATE(8018)] = 284472, - [SMALL_STATE(8019)] = 284479, - [SMALL_STATE(8020)] = 284486, - [SMALL_STATE(8021)] = 284493, - [SMALL_STATE(8022)] = 284500, - [SMALL_STATE(8023)] = 284507, - [SMALL_STATE(8024)] = 284514, - [SMALL_STATE(8025)] = 284521, - [SMALL_STATE(8026)] = 284528, - [SMALL_STATE(8027)] = 284535, - [SMALL_STATE(8028)] = 284542, - [SMALL_STATE(8029)] = 284549, - [SMALL_STATE(8030)] = 284556, - [SMALL_STATE(8031)] = 284563, - [SMALL_STATE(8032)] = 284570, - [SMALL_STATE(8033)] = 284577, - [SMALL_STATE(8034)] = 284584, - [SMALL_STATE(8035)] = 284591, - [SMALL_STATE(8036)] = 284598, - [SMALL_STATE(8037)] = 284605, - [SMALL_STATE(8038)] = 284612, - [SMALL_STATE(8039)] = 284619, - [SMALL_STATE(8040)] = 284626, - [SMALL_STATE(8041)] = 284633, - [SMALL_STATE(8042)] = 284640, - [SMALL_STATE(8043)] = 284647, - [SMALL_STATE(8044)] = 284654, - [SMALL_STATE(8045)] = 284661, - [SMALL_STATE(8046)] = 284668, - [SMALL_STATE(8047)] = 284675, - [SMALL_STATE(8048)] = 284682, - [SMALL_STATE(8049)] = 284689, - [SMALL_STATE(8050)] = 284696, - [SMALL_STATE(8051)] = 284703, - [SMALL_STATE(8052)] = 284710, - [SMALL_STATE(8053)] = 284717, - [SMALL_STATE(8054)] = 284724, - [SMALL_STATE(8055)] = 284731, - [SMALL_STATE(8056)] = 284738, - [SMALL_STATE(8057)] = 284745, - [SMALL_STATE(8058)] = 284752, - [SMALL_STATE(8059)] = 284759, - [SMALL_STATE(8060)] = 284766, - [SMALL_STATE(8061)] = 284773, - [SMALL_STATE(8062)] = 284780, - [SMALL_STATE(8063)] = 284787, - [SMALL_STATE(8064)] = 284794, - [SMALL_STATE(8065)] = 284801, - [SMALL_STATE(8066)] = 284808, - [SMALL_STATE(8067)] = 284815, - [SMALL_STATE(8068)] = 284822, - [SMALL_STATE(8069)] = 284829, - [SMALL_STATE(8070)] = 284836, - [SMALL_STATE(8071)] = 284843, - [SMALL_STATE(8072)] = 284850, - [SMALL_STATE(8073)] = 284857, - [SMALL_STATE(8074)] = 284864, - [SMALL_STATE(8075)] = 284871, - [SMALL_STATE(8076)] = 284878, - [SMALL_STATE(8077)] = 284885, - [SMALL_STATE(8078)] = 284892, - [SMALL_STATE(8079)] = 284899, - [SMALL_STATE(8080)] = 284906, - [SMALL_STATE(8081)] = 284913, - [SMALL_STATE(8082)] = 284920, - [SMALL_STATE(8083)] = 284927, - [SMALL_STATE(8084)] = 284934, - [SMALL_STATE(8085)] = 284941, - [SMALL_STATE(8086)] = 284948, - [SMALL_STATE(8087)] = 284955, - [SMALL_STATE(8088)] = 284962, - [SMALL_STATE(8089)] = 284969, - [SMALL_STATE(8090)] = 284976, - [SMALL_STATE(8091)] = 284983, - [SMALL_STATE(8092)] = 284990, - [SMALL_STATE(8093)] = 284997, - [SMALL_STATE(8094)] = 285004, - [SMALL_STATE(8095)] = 285011, - [SMALL_STATE(8096)] = 285018, - [SMALL_STATE(8097)] = 285025, - [SMALL_STATE(8098)] = 285032, - [SMALL_STATE(8099)] = 285039, - [SMALL_STATE(8100)] = 285046, - [SMALL_STATE(8101)] = 285053, - [SMALL_STATE(8102)] = 285060, - [SMALL_STATE(8103)] = 285067, - [SMALL_STATE(8104)] = 285074, - [SMALL_STATE(8105)] = 285081, - [SMALL_STATE(8106)] = 285088, - [SMALL_STATE(8107)] = 285095, - [SMALL_STATE(8108)] = 285102, - [SMALL_STATE(8109)] = 285109, - [SMALL_STATE(8110)] = 285116, - [SMALL_STATE(8111)] = 285123, - [SMALL_STATE(8112)] = 285130, - [SMALL_STATE(8113)] = 285137, - [SMALL_STATE(8114)] = 285144, - [SMALL_STATE(8115)] = 285151, - [SMALL_STATE(8116)] = 285158, - [SMALL_STATE(8117)] = 285165, - [SMALL_STATE(8118)] = 285172, - [SMALL_STATE(8119)] = 285179, - [SMALL_STATE(8120)] = 285186, - [SMALL_STATE(8121)] = 285193, - [SMALL_STATE(8122)] = 285200, - [SMALL_STATE(8123)] = 285207, - [SMALL_STATE(8124)] = 285214, - [SMALL_STATE(8125)] = 285221, - [SMALL_STATE(8126)] = 285228, - [SMALL_STATE(8127)] = 285235, - [SMALL_STATE(8128)] = 285242, - [SMALL_STATE(8129)] = 285249, - [SMALL_STATE(8130)] = 285256, - [SMALL_STATE(8131)] = 285263, - [SMALL_STATE(8132)] = 285270, - [SMALL_STATE(8133)] = 285277, - [SMALL_STATE(8134)] = 285284, - [SMALL_STATE(8135)] = 285291, - [SMALL_STATE(8136)] = 285298, - [SMALL_STATE(8137)] = 285305, - [SMALL_STATE(8138)] = 285312, - [SMALL_STATE(8139)] = 285319, - [SMALL_STATE(8140)] = 285326, - [SMALL_STATE(8141)] = 285333, - [SMALL_STATE(8142)] = 285340, - [SMALL_STATE(8143)] = 285347, - [SMALL_STATE(8144)] = 285354, - [SMALL_STATE(8145)] = 285361, - [SMALL_STATE(8146)] = 285368, - [SMALL_STATE(8147)] = 285375, - [SMALL_STATE(8148)] = 285382, - [SMALL_STATE(8149)] = 285389, - [SMALL_STATE(8150)] = 285396, - [SMALL_STATE(8151)] = 285403, - [SMALL_STATE(8152)] = 285410, - [SMALL_STATE(8153)] = 285417, - [SMALL_STATE(8154)] = 285424, - [SMALL_STATE(8155)] = 285431, - [SMALL_STATE(8156)] = 285438, - [SMALL_STATE(8157)] = 285445, - [SMALL_STATE(8158)] = 285452, - [SMALL_STATE(8159)] = 285459, - [SMALL_STATE(8160)] = 285466, - [SMALL_STATE(8161)] = 285473, - [SMALL_STATE(8162)] = 285480, - [SMALL_STATE(8163)] = 285487, - [SMALL_STATE(8164)] = 285494, - [SMALL_STATE(8165)] = 285501, - [SMALL_STATE(8166)] = 285508, - [SMALL_STATE(8167)] = 285515, - [SMALL_STATE(8168)] = 285522, - [SMALL_STATE(8169)] = 285529, - [SMALL_STATE(8170)] = 285536, - [SMALL_STATE(8171)] = 285543, - [SMALL_STATE(8172)] = 285550, - [SMALL_STATE(8173)] = 285557, - [SMALL_STATE(8174)] = 285564, - [SMALL_STATE(8175)] = 285571, - [SMALL_STATE(8176)] = 285578, - [SMALL_STATE(8177)] = 285585, - [SMALL_STATE(8178)] = 285592, - [SMALL_STATE(8179)] = 285599, - [SMALL_STATE(8180)] = 285606, - [SMALL_STATE(8181)] = 285613, - [SMALL_STATE(8182)] = 285620, - [SMALL_STATE(8183)] = 285627, - [SMALL_STATE(8184)] = 285634, - [SMALL_STATE(8185)] = 285641, - [SMALL_STATE(8186)] = 285648, - [SMALL_STATE(8187)] = 285655, - [SMALL_STATE(8188)] = 285662, - [SMALL_STATE(8189)] = 285669, - [SMALL_STATE(8190)] = 285676, - [SMALL_STATE(8191)] = 285683, - [SMALL_STATE(8192)] = 285690, - [SMALL_STATE(8193)] = 285697, - [SMALL_STATE(8194)] = 285704, - [SMALL_STATE(8195)] = 285711, - [SMALL_STATE(8196)] = 285718, - [SMALL_STATE(8197)] = 285725, - [SMALL_STATE(8198)] = 285732, - [SMALL_STATE(8199)] = 285739, - [SMALL_STATE(8200)] = 285746, - [SMALL_STATE(8201)] = 285753, - [SMALL_STATE(8202)] = 285760, - [SMALL_STATE(8203)] = 285767, - [SMALL_STATE(8204)] = 285774, - [SMALL_STATE(8205)] = 285781, - [SMALL_STATE(8206)] = 285788, - [SMALL_STATE(8207)] = 285795, - [SMALL_STATE(8208)] = 285802, - [SMALL_STATE(8209)] = 285809, - [SMALL_STATE(8210)] = 285816, - [SMALL_STATE(8211)] = 285823, - [SMALL_STATE(8212)] = 285830, - [SMALL_STATE(8213)] = 285837, - [SMALL_STATE(8214)] = 285844, - [SMALL_STATE(8215)] = 285851, - [SMALL_STATE(8216)] = 285858, - [SMALL_STATE(8217)] = 285865, - [SMALL_STATE(8218)] = 285872, - [SMALL_STATE(8219)] = 285879, - [SMALL_STATE(8220)] = 285886, - [SMALL_STATE(8221)] = 285893, - [SMALL_STATE(8222)] = 285900, - [SMALL_STATE(8223)] = 285907, - [SMALL_STATE(8224)] = 285914, - [SMALL_STATE(8225)] = 285921, - [SMALL_STATE(8226)] = 285928, - [SMALL_STATE(8227)] = 285935, - [SMALL_STATE(8228)] = 285942, - [SMALL_STATE(8229)] = 285949, - [SMALL_STATE(8230)] = 285956, - [SMALL_STATE(8231)] = 285963, - [SMALL_STATE(8232)] = 285970, - [SMALL_STATE(8233)] = 285977, - [SMALL_STATE(8234)] = 285984, - [SMALL_STATE(8235)] = 285991, - [SMALL_STATE(8236)] = 285998, - [SMALL_STATE(8237)] = 286005, - [SMALL_STATE(8238)] = 286012, - [SMALL_STATE(8239)] = 286019, - [SMALL_STATE(8240)] = 286026, - [SMALL_STATE(8241)] = 286033, - [SMALL_STATE(8242)] = 286040, - [SMALL_STATE(8243)] = 286047, - [SMALL_STATE(8244)] = 286054, - [SMALL_STATE(8245)] = 286061, - [SMALL_STATE(8246)] = 286068, - [SMALL_STATE(8247)] = 286075, - [SMALL_STATE(8248)] = 286082, - [SMALL_STATE(8249)] = 286089, - [SMALL_STATE(8250)] = 286096, - [SMALL_STATE(8251)] = 286103, - [SMALL_STATE(8252)] = 286110, - [SMALL_STATE(8253)] = 286117, - [SMALL_STATE(8254)] = 286124, - [SMALL_STATE(8255)] = 286131, - [SMALL_STATE(8256)] = 286138, - [SMALL_STATE(8257)] = 286145, - [SMALL_STATE(8258)] = 286152, - [SMALL_STATE(8259)] = 286159, - [SMALL_STATE(8260)] = 286166, - [SMALL_STATE(8261)] = 286173, - [SMALL_STATE(8262)] = 286180, - [SMALL_STATE(8263)] = 286187, - [SMALL_STATE(8264)] = 286194, - [SMALL_STATE(8265)] = 286201, - [SMALL_STATE(8266)] = 286208, - [SMALL_STATE(8267)] = 286215, - [SMALL_STATE(8268)] = 286222, - [SMALL_STATE(8269)] = 286229, - [SMALL_STATE(8270)] = 286236, - [SMALL_STATE(8271)] = 286243, - [SMALL_STATE(8272)] = 286250, - [SMALL_STATE(8273)] = 286257, - [SMALL_STATE(8274)] = 286264, - [SMALL_STATE(8275)] = 286271, - [SMALL_STATE(8276)] = 286278, - [SMALL_STATE(8277)] = 286285, - [SMALL_STATE(8278)] = 286292, - [SMALL_STATE(8279)] = 286299, - [SMALL_STATE(8280)] = 286306, - [SMALL_STATE(8281)] = 286313, - [SMALL_STATE(8282)] = 286320, - [SMALL_STATE(8283)] = 286327, - [SMALL_STATE(8284)] = 286334, - [SMALL_STATE(8285)] = 286341, - [SMALL_STATE(8286)] = 286348, - [SMALL_STATE(8287)] = 286355, - [SMALL_STATE(8288)] = 286362, - [SMALL_STATE(8289)] = 286369, - [SMALL_STATE(8290)] = 286376, - [SMALL_STATE(8291)] = 286383, - [SMALL_STATE(8292)] = 286390, - [SMALL_STATE(8293)] = 286397, - [SMALL_STATE(8294)] = 286404, - [SMALL_STATE(8295)] = 286411, - [SMALL_STATE(8296)] = 286418, - [SMALL_STATE(8297)] = 286425, - [SMALL_STATE(8298)] = 286432, - [SMALL_STATE(8299)] = 286439, - [SMALL_STATE(8300)] = 286446, - [SMALL_STATE(8301)] = 286453, - [SMALL_STATE(8302)] = 286460, - [SMALL_STATE(8303)] = 286467, - [SMALL_STATE(8304)] = 286474, - [SMALL_STATE(8305)] = 286481, - [SMALL_STATE(8306)] = 286488, - [SMALL_STATE(8307)] = 286495, - [SMALL_STATE(8308)] = 286502, - [SMALL_STATE(8309)] = 286509, - [SMALL_STATE(8310)] = 286516, - [SMALL_STATE(8311)] = 286523, - [SMALL_STATE(8312)] = 286530, - [SMALL_STATE(8313)] = 286537, - [SMALL_STATE(8314)] = 286544, - [SMALL_STATE(8315)] = 286551, - [SMALL_STATE(8316)] = 286558, - [SMALL_STATE(8317)] = 286565, - [SMALL_STATE(8318)] = 286572, - [SMALL_STATE(8319)] = 286579, - [SMALL_STATE(8320)] = 286586, - [SMALL_STATE(8321)] = 286593, - [SMALL_STATE(8322)] = 286600, - [SMALL_STATE(8323)] = 286607, - [SMALL_STATE(8324)] = 286614, - [SMALL_STATE(8325)] = 286621, - [SMALL_STATE(8326)] = 286628, - [SMALL_STATE(8327)] = 286635, - [SMALL_STATE(8328)] = 286642, - [SMALL_STATE(8329)] = 286649, - [SMALL_STATE(8330)] = 286656, - [SMALL_STATE(8331)] = 286663, - [SMALL_STATE(8332)] = 286670, - [SMALL_STATE(8333)] = 286677, - [SMALL_STATE(8334)] = 286684, - [SMALL_STATE(8335)] = 286691, - [SMALL_STATE(8336)] = 286698, - [SMALL_STATE(8337)] = 286705, - [SMALL_STATE(8338)] = 286712, - [SMALL_STATE(8339)] = 286719, - [SMALL_STATE(8340)] = 286726, - [SMALL_STATE(8341)] = 286733, - [SMALL_STATE(8342)] = 286740, - [SMALL_STATE(8343)] = 286747, - [SMALL_STATE(8344)] = 286754, - [SMALL_STATE(8345)] = 286761, - [SMALL_STATE(8346)] = 286768, - [SMALL_STATE(8347)] = 286775, - [SMALL_STATE(8348)] = 286782, - [SMALL_STATE(8349)] = 286789, - [SMALL_STATE(8350)] = 286796, - [SMALL_STATE(8351)] = 286803, - [SMALL_STATE(8352)] = 286810, - [SMALL_STATE(8353)] = 286817, - [SMALL_STATE(8354)] = 286824, - [SMALL_STATE(8355)] = 286831, - [SMALL_STATE(8356)] = 286838, - [SMALL_STATE(8357)] = 286845, - [SMALL_STATE(8358)] = 286852, - [SMALL_STATE(8359)] = 286859, - [SMALL_STATE(8360)] = 286866, - [SMALL_STATE(8361)] = 286873, - [SMALL_STATE(8362)] = 286880, - [SMALL_STATE(8363)] = 286887, - [SMALL_STATE(8364)] = 286894, - [SMALL_STATE(8365)] = 286901, - [SMALL_STATE(8366)] = 286908, - [SMALL_STATE(8367)] = 286915, - [SMALL_STATE(8368)] = 286922, - [SMALL_STATE(8369)] = 286929, - [SMALL_STATE(8370)] = 286936, - [SMALL_STATE(8371)] = 286943, - [SMALL_STATE(8372)] = 286950, - [SMALL_STATE(8373)] = 286957, - [SMALL_STATE(8374)] = 286964, - [SMALL_STATE(8375)] = 286971, - [SMALL_STATE(8376)] = 286978, - [SMALL_STATE(8377)] = 286985, - [SMALL_STATE(8378)] = 286992, - [SMALL_STATE(8379)] = 286999, - [SMALL_STATE(8380)] = 287006, - [SMALL_STATE(8381)] = 287013, - [SMALL_STATE(8382)] = 287020, - [SMALL_STATE(8383)] = 287027, - [SMALL_STATE(8384)] = 287034, - [SMALL_STATE(8385)] = 287041, - [SMALL_STATE(8386)] = 287048, - [SMALL_STATE(8387)] = 287055, - [SMALL_STATE(8388)] = 287062, - [SMALL_STATE(8389)] = 287069, - [SMALL_STATE(8390)] = 287076, - [SMALL_STATE(8391)] = 287083, - [SMALL_STATE(8392)] = 287090, - [SMALL_STATE(8393)] = 287097, - [SMALL_STATE(8394)] = 287104, - [SMALL_STATE(8395)] = 287111, - [SMALL_STATE(8396)] = 287118, - [SMALL_STATE(8397)] = 287125, - [SMALL_STATE(8398)] = 287132, - [SMALL_STATE(8399)] = 287139, - [SMALL_STATE(8400)] = 287146, - [SMALL_STATE(8401)] = 287153, - [SMALL_STATE(8402)] = 287160, - [SMALL_STATE(8403)] = 287167, - [SMALL_STATE(8404)] = 287174, - [SMALL_STATE(8405)] = 287181, - [SMALL_STATE(8406)] = 287188, - [SMALL_STATE(8407)] = 287195, - [SMALL_STATE(8408)] = 287202, - [SMALL_STATE(8409)] = 287209, - [SMALL_STATE(8410)] = 287216, - [SMALL_STATE(8411)] = 287223, - [SMALL_STATE(8412)] = 287230, - [SMALL_STATE(8413)] = 287237, - [SMALL_STATE(8414)] = 287244, - [SMALL_STATE(8415)] = 287251, - [SMALL_STATE(8416)] = 287258, - [SMALL_STATE(8417)] = 287265, - [SMALL_STATE(8418)] = 287272, - [SMALL_STATE(8419)] = 287279, - [SMALL_STATE(8420)] = 287286, - [SMALL_STATE(8421)] = 287293, - [SMALL_STATE(8422)] = 287300, - [SMALL_STATE(8423)] = 287307, - [SMALL_STATE(8424)] = 287314, - [SMALL_STATE(8425)] = 287321, - [SMALL_STATE(8426)] = 287328, - [SMALL_STATE(8427)] = 287335, - [SMALL_STATE(8428)] = 287342, - [SMALL_STATE(8429)] = 287349, - [SMALL_STATE(8430)] = 287356, - [SMALL_STATE(8431)] = 287363, - [SMALL_STATE(8432)] = 287370, - [SMALL_STATE(8433)] = 287377, - [SMALL_STATE(8434)] = 287384, - [SMALL_STATE(8435)] = 287391, - [SMALL_STATE(8436)] = 287398, - [SMALL_STATE(8437)] = 287405, - [SMALL_STATE(8438)] = 287412, - [SMALL_STATE(8439)] = 287419, - [SMALL_STATE(8440)] = 287426, - [SMALL_STATE(8441)] = 287433, - [SMALL_STATE(8442)] = 287440, - [SMALL_STATE(8443)] = 287447, - [SMALL_STATE(8444)] = 287454, - [SMALL_STATE(8445)] = 287461, - [SMALL_STATE(8446)] = 287468, - [SMALL_STATE(8447)] = 287475, - [SMALL_STATE(8448)] = 287482, - [SMALL_STATE(8449)] = 287489, - [SMALL_STATE(8450)] = 287496, - [SMALL_STATE(8451)] = 287503, - [SMALL_STATE(8452)] = 287510, - [SMALL_STATE(8453)] = 287517, - [SMALL_STATE(8454)] = 287524, - [SMALL_STATE(8455)] = 287531, - [SMALL_STATE(8456)] = 287538, - [SMALL_STATE(8457)] = 287545, - [SMALL_STATE(8458)] = 287552, - [SMALL_STATE(8459)] = 287559, - [SMALL_STATE(8460)] = 287566, - [SMALL_STATE(8461)] = 287573, - [SMALL_STATE(8462)] = 287580, - [SMALL_STATE(8463)] = 287587, - [SMALL_STATE(8464)] = 287594, - [SMALL_STATE(8465)] = 287601, - [SMALL_STATE(8466)] = 287608, - [SMALL_STATE(8467)] = 287615, - [SMALL_STATE(8468)] = 287622, - [SMALL_STATE(8469)] = 287629, - [SMALL_STATE(8470)] = 287636, - [SMALL_STATE(8471)] = 287643, - [SMALL_STATE(8472)] = 287650, - [SMALL_STATE(8473)] = 287657, - [SMALL_STATE(8474)] = 287664, - [SMALL_STATE(8475)] = 287671, - [SMALL_STATE(8476)] = 287678, - [SMALL_STATE(8477)] = 287685, - [SMALL_STATE(8478)] = 287692, - [SMALL_STATE(8479)] = 287699, - [SMALL_STATE(8480)] = 287706, - [SMALL_STATE(8481)] = 287713, - [SMALL_STATE(8482)] = 287720, - [SMALL_STATE(8483)] = 287727, - [SMALL_STATE(8484)] = 287734, - [SMALL_STATE(8485)] = 287741, - [SMALL_STATE(8486)] = 287748, - [SMALL_STATE(8487)] = 287755, - [SMALL_STATE(8488)] = 287762, - [SMALL_STATE(8489)] = 287769, - [SMALL_STATE(8490)] = 287776, - [SMALL_STATE(8491)] = 287783, - [SMALL_STATE(8492)] = 287790, - [SMALL_STATE(8493)] = 287797, - [SMALL_STATE(8494)] = 287804, - [SMALL_STATE(8495)] = 287811, - [SMALL_STATE(8496)] = 287818, - [SMALL_STATE(8497)] = 287825, - [SMALL_STATE(8498)] = 287832, - [SMALL_STATE(8499)] = 287839, - [SMALL_STATE(8500)] = 287846, - [SMALL_STATE(8501)] = 287853, - [SMALL_STATE(8502)] = 287860, - [SMALL_STATE(8503)] = 287867, - [SMALL_STATE(8504)] = 287874, - [SMALL_STATE(8505)] = 287881, - [SMALL_STATE(8506)] = 287888, - [SMALL_STATE(8507)] = 287895, - [SMALL_STATE(8508)] = 287902, - [SMALL_STATE(8509)] = 287909, - [SMALL_STATE(8510)] = 287916, - [SMALL_STATE(8511)] = 287923, - [SMALL_STATE(8512)] = 287930, - [SMALL_STATE(8513)] = 287937, - [SMALL_STATE(8514)] = 287944, - [SMALL_STATE(8515)] = 287951, - [SMALL_STATE(8516)] = 287958, - [SMALL_STATE(8517)] = 287965, - [SMALL_STATE(8518)] = 287972, - [SMALL_STATE(8519)] = 287979, - [SMALL_STATE(8520)] = 287986, - [SMALL_STATE(8521)] = 287993, - [SMALL_STATE(8522)] = 288000, - [SMALL_STATE(8523)] = 288007, - [SMALL_STATE(8524)] = 288014, - [SMALL_STATE(8525)] = 288021, - [SMALL_STATE(8526)] = 288028, - [SMALL_STATE(8527)] = 288035, - [SMALL_STATE(8528)] = 288042, - [SMALL_STATE(8529)] = 288049, - [SMALL_STATE(8530)] = 288056, - [SMALL_STATE(8531)] = 288063, - [SMALL_STATE(8532)] = 288070, - [SMALL_STATE(8533)] = 288077, - [SMALL_STATE(8534)] = 288084, - [SMALL_STATE(8535)] = 288091, - [SMALL_STATE(8536)] = 288098, - [SMALL_STATE(8537)] = 288105, - [SMALL_STATE(8538)] = 288112, - [SMALL_STATE(8539)] = 288119, - [SMALL_STATE(8540)] = 288126, - [SMALL_STATE(8541)] = 288133, - [SMALL_STATE(8542)] = 288140, - [SMALL_STATE(8543)] = 288147, - [SMALL_STATE(8544)] = 288154, - [SMALL_STATE(8545)] = 288161, - [SMALL_STATE(8546)] = 288168, - [SMALL_STATE(8547)] = 288175, - [SMALL_STATE(8548)] = 288182, - [SMALL_STATE(8549)] = 288189, - [SMALL_STATE(8550)] = 288196, - [SMALL_STATE(8551)] = 288203, - [SMALL_STATE(8552)] = 288210, - [SMALL_STATE(8553)] = 288217, - [SMALL_STATE(8554)] = 288224, - [SMALL_STATE(8555)] = 288231, - [SMALL_STATE(8556)] = 288238, - [SMALL_STATE(8557)] = 288245, - [SMALL_STATE(8558)] = 288252, - [SMALL_STATE(8559)] = 288259, - [SMALL_STATE(8560)] = 288266, - [SMALL_STATE(8561)] = 288273, - [SMALL_STATE(8562)] = 288280, - [SMALL_STATE(8563)] = 288287, - [SMALL_STATE(8564)] = 288294, - [SMALL_STATE(8565)] = 288301, - [SMALL_STATE(8566)] = 288308, - [SMALL_STATE(8567)] = 288315, - [SMALL_STATE(8568)] = 288322, - [SMALL_STATE(8569)] = 288329, - [SMALL_STATE(8570)] = 288336, - [SMALL_STATE(8571)] = 288343, - [SMALL_STATE(8572)] = 288350, - [SMALL_STATE(8573)] = 288357, - [SMALL_STATE(8574)] = 288364, - [SMALL_STATE(8575)] = 288371, - [SMALL_STATE(8576)] = 288378, - [SMALL_STATE(8577)] = 288385, - [SMALL_STATE(8578)] = 288392, - [SMALL_STATE(8579)] = 288399, - [SMALL_STATE(8580)] = 288406, - [SMALL_STATE(8581)] = 288413, - [SMALL_STATE(8582)] = 288420, - [SMALL_STATE(8583)] = 288427, - [SMALL_STATE(8584)] = 288434, - [SMALL_STATE(8585)] = 288441, - [SMALL_STATE(8586)] = 288448, - [SMALL_STATE(8587)] = 288455, - [SMALL_STATE(8588)] = 288462, - [SMALL_STATE(8589)] = 288469, - [SMALL_STATE(8590)] = 288476, - [SMALL_STATE(8591)] = 288483, - [SMALL_STATE(8592)] = 288490, - [SMALL_STATE(8593)] = 288497, - [SMALL_STATE(8594)] = 288504, - [SMALL_STATE(8595)] = 288511, - [SMALL_STATE(8596)] = 288518, - [SMALL_STATE(8597)] = 288525, - [SMALL_STATE(8598)] = 288532, - [SMALL_STATE(8599)] = 288539, - [SMALL_STATE(8600)] = 288546, - [SMALL_STATE(8601)] = 288553, - [SMALL_STATE(8602)] = 288560, - [SMALL_STATE(8603)] = 288567, - [SMALL_STATE(8604)] = 288574, - [SMALL_STATE(8605)] = 288581, - [SMALL_STATE(8606)] = 288588, - [SMALL_STATE(8607)] = 288595, - [SMALL_STATE(8608)] = 288602, - [SMALL_STATE(8609)] = 288609, - [SMALL_STATE(8610)] = 288616, - [SMALL_STATE(8611)] = 288623, - [SMALL_STATE(8612)] = 288630, - [SMALL_STATE(8613)] = 288637, - [SMALL_STATE(8614)] = 288644, - [SMALL_STATE(8615)] = 288651, - [SMALL_STATE(8616)] = 288658, - [SMALL_STATE(8617)] = 288665, - [SMALL_STATE(8618)] = 288672, - [SMALL_STATE(8619)] = 288679, - [SMALL_STATE(8620)] = 288686, - [SMALL_STATE(8621)] = 288693, - [SMALL_STATE(8622)] = 288700, - [SMALL_STATE(8623)] = 288707, - [SMALL_STATE(8624)] = 288714, - [SMALL_STATE(8625)] = 288721, - [SMALL_STATE(8626)] = 288728, - [SMALL_STATE(8627)] = 288735, - [SMALL_STATE(8628)] = 288742, - [SMALL_STATE(8629)] = 288749, - [SMALL_STATE(8630)] = 288756, - [SMALL_STATE(8631)] = 288763, - [SMALL_STATE(8632)] = 288770, - [SMALL_STATE(8633)] = 288777, - [SMALL_STATE(8634)] = 288784, - [SMALL_STATE(8635)] = 288791, - [SMALL_STATE(8636)] = 288798, - [SMALL_STATE(8637)] = 288805, - [SMALL_STATE(8638)] = 288812, - [SMALL_STATE(8639)] = 288819, - [SMALL_STATE(8640)] = 288826, - [SMALL_STATE(8641)] = 288833, - [SMALL_STATE(8642)] = 288840, - [SMALL_STATE(8643)] = 288847, - [SMALL_STATE(8644)] = 288854, - [SMALL_STATE(8645)] = 288861, - [SMALL_STATE(8646)] = 288868, - [SMALL_STATE(8647)] = 288875, - [SMALL_STATE(8648)] = 288882, - [SMALL_STATE(8649)] = 288889, - [SMALL_STATE(8650)] = 288896, - [SMALL_STATE(8651)] = 288903, - [SMALL_STATE(8652)] = 288910, - [SMALL_STATE(8653)] = 288917, - [SMALL_STATE(8654)] = 288924, - [SMALL_STATE(8655)] = 288931, - [SMALL_STATE(8656)] = 288938, - [SMALL_STATE(8657)] = 288945, - [SMALL_STATE(8658)] = 288952, - [SMALL_STATE(8659)] = 288959, - [SMALL_STATE(8660)] = 288966, - [SMALL_STATE(8661)] = 288973, - [SMALL_STATE(8662)] = 288980, - [SMALL_STATE(8663)] = 288987, - [SMALL_STATE(8664)] = 288994, - [SMALL_STATE(8665)] = 289001, - [SMALL_STATE(8666)] = 289008, - [SMALL_STATE(8667)] = 289015, - [SMALL_STATE(8668)] = 289022, - [SMALL_STATE(8669)] = 289029, - [SMALL_STATE(8670)] = 289036, - [SMALL_STATE(8671)] = 289043, - [SMALL_STATE(8672)] = 289050, - [SMALL_STATE(8673)] = 289057, - [SMALL_STATE(8674)] = 289064, - [SMALL_STATE(8675)] = 289071, - [SMALL_STATE(8676)] = 289078, - [SMALL_STATE(8677)] = 289085, - [SMALL_STATE(8678)] = 289092, - [SMALL_STATE(8679)] = 289099, - [SMALL_STATE(8680)] = 289106, - [SMALL_STATE(8681)] = 289113, - [SMALL_STATE(8682)] = 289120, - [SMALL_STATE(8683)] = 289127, - [SMALL_STATE(8684)] = 289134, - [SMALL_STATE(8685)] = 289141, - [SMALL_STATE(8686)] = 289148, - [SMALL_STATE(8687)] = 289155, - [SMALL_STATE(8688)] = 289162, - [SMALL_STATE(8689)] = 289169, - [SMALL_STATE(8690)] = 289176, - [SMALL_STATE(8691)] = 289183, - [SMALL_STATE(8692)] = 289190, - [SMALL_STATE(8693)] = 289197, - [SMALL_STATE(8694)] = 289204, - [SMALL_STATE(8695)] = 289211, - [SMALL_STATE(8696)] = 289218, - [SMALL_STATE(8697)] = 289225, - [SMALL_STATE(8698)] = 289232, - [SMALL_STATE(8699)] = 289239, - [SMALL_STATE(8700)] = 289246, - [SMALL_STATE(8701)] = 289253, - [SMALL_STATE(8702)] = 289260, - [SMALL_STATE(8703)] = 289267, - [SMALL_STATE(8704)] = 289274, - [SMALL_STATE(8705)] = 289281, - [SMALL_STATE(8706)] = 289288, - [SMALL_STATE(8707)] = 289295, - [SMALL_STATE(8708)] = 289302, - [SMALL_STATE(8709)] = 289309, - [SMALL_STATE(8710)] = 289316, - [SMALL_STATE(8711)] = 289323, - [SMALL_STATE(8712)] = 289330, - [SMALL_STATE(8713)] = 289337, - [SMALL_STATE(8714)] = 289344, - [SMALL_STATE(8715)] = 289351, - [SMALL_STATE(8716)] = 289358, - [SMALL_STATE(8717)] = 289365, - [SMALL_STATE(8718)] = 289372, - [SMALL_STATE(8719)] = 289379, - [SMALL_STATE(8720)] = 289386, - [SMALL_STATE(8721)] = 289393, - [SMALL_STATE(8722)] = 289400, - [SMALL_STATE(8723)] = 289407, - [SMALL_STATE(8724)] = 289414, - [SMALL_STATE(8725)] = 289421, - [SMALL_STATE(8726)] = 289428, - [SMALL_STATE(8727)] = 289435, - [SMALL_STATE(8728)] = 289442, - [SMALL_STATE(8729)] = 289449, - [SMALL_STATE(8730)] = 289456, - [SMALL_STATE(8731)] = 289463, - [SMALL_STATE(8732)] = 289470, - [SMALL_STATE(8733)] = 289477, - [SMALL_STATE(8734)] = 289484, - [SMALL_STATE(8735)] = 289491, - [SMALL_STATE(8736)] = 289498, - [SMALL_STATE(8737)] = 289505, - [SMALL_STATE(8738)] = 289512, - [SMALL_STATE(8739)] = 289519, - [SMALL_STATE(8740)] = 289526, - [SMALL_STATE(8741)] = 289533, - [SMALL_STATE(8742)] = 289540, - [SMALL_STATE(8743)] = 289547, - [SMALL_STATE(8744)] = 289554, - [SMALL_STATE(8745)] = 289561, - [SMALL_STATE(8746)] = 289568, - [SMALL_STATE(8747)] = 289575, - [SMALL_STATE(8748)] = 289582, - [SMALL_STATE(8749)] = 289589, - [SMALL_STATE(8750)] = 289596, - [SMALL_STATE(8751)] = 289603, - [SMALL_STATE(8752)] = 289610, - [SMALL_STATE(8753)] = 289617, - [SMALL_STATE(8754)] = 289624, - [SMALL_STATE(8755)] = 289631, - [SMALL_STATE(8756)] = 289638, - [SMALL_STATE(8757)] = 289645, - [SMALL_STATE(8758)] = 289652, - [SMALL_STATE(8759)] = 289659, - [SMALL_STATE(8760)] = 289666, - [SMALL_STATE(8761)] = 289673, - [SMALL_STATE(8762)] = 289680, - [SMALL_STATE(8763)] = 289687, - [SMALL_STATE(8764)] = 289694, - [SMALL_STATE(8765)] = 289701, - [SMALL_STATE(8766)] = 289708, - [SMALL_STATE(8767)] = 289715, - [SMALL_STATE(8768)] = 289722, - [SMALL_STATE(8769)] = 289729, - [SMALL_STATE(8770)] = 289736, - [SMALL_STATE(8771)] = 289743, - [SMALL_STATE(8772)] = 289750, - [SMALL_STATE(8773)] = 289757, - [SMALL_STATE(8774)] = 289764, - [SMALL_STATE(8775)] = 289771, - [SMALL_STATE(8776)] = 289778, - [SMALL_STATE(8777)] = 289785, - [SMALL_STATE(8778)] = 289792, - [SMALL_STATE(8779)] = 289799, - [SMALL_STATE(8780)] = 289806, - [SMALL_STATE(8781)] = 289813, - [SMALL_STATE(8782)] = 289820, - [SMALL_STATE(8783)] = 289827, - [SMALL_STATE(8784)] = 289834, - [SMALL_STATE(8785)] = 289841, - [SMALL_STATE(8786)] = 289848, - [SMALL_STATE(8787)] = 289855, - [SMALL_STATE(8788)] = 289862, - [SMALL_STATE(8789)] = 289869, - [SMALL_STATE(8790)] = 289876, - [SMALL_STATE(8791)] = 289883, - [SMALL_STATE(8792)] = 289890, - [SMALL_STATE(8793)] = 289897, - [SMALL_STATE(8794)] = 289904, - [SMALL_STATE(8795)] = 289911, - [SMALL_STATE(8796)] = 289918, - [SMALL_STATE(8797)] = 289925, - [SMALL_STATE(8798)] = 289932, - [SMALL_STATE(8799)] = 289939, - [SMALL_STATE(8800)] = 289946, - [SMALL_STATE(8801)] = 289953, - [SMALL_STATE(8802)] = 289960, - [SMALL_STATE(8803)] = 289967, - [SMALL_STATE(8804)] = 289974, - [SMALL_STATE(8805)] = 289981, - [SMALL_STATE(8806)] = 289988, - [SMALL_STATE(8807)] = 289995, - [SMALL_STATE(8808)] = 290002, - [SMALL_STATE(8809)] = 290009, - [SMALL_STATE(8810)] = 290016, - [SMALL_STATE(8811)] = 290023, - [SMALL_STATE(8812)] = 290030, - [SMALL_STATE(8813)] = 290037, - [SMALL_STATE(8814)] = 290044, - [SMALL_STATE(8815)] = 290051, - [SMALL_STATE(8816)] = 290058, - [SMALL_STATE(8817)] = 290065, - [SMALL_STATE(8818)] = 290072, - [SMALL_STATE(8819)] = 290079, - [SMALL_STATE(8820)] = 290086, - [SMALL_STATE(8821)] = 290093, - [SMALL_STATE(8822)] = 290100, - [SMALL_STATE(8823)] = 290107, - [SMALL_STATE(8824)] = 290114, - [SMALL_STATE(8825)] = 290121, - [SMALL_STATE(8826)] = 290128, - [SMALL_STATE(8827)] = 290135, - [SMALL_STATE(8828)] = 290142, - [SMALL_STATE(8829)] = 290149, - [SMALL_STATE(8830)] = 290156, - [SMALL_STATE(8831)] = 290163, - [SMALL_STATE(8832)] = 290170, - [SMALL_STATE(8833)] = 290177, - [SMALL_STATE(8834)] = 290184, - [SMALL_STATE(8835)] = 290191, - [SMALL_STATE(8836)] = 290198, - [SMALL_STATE(8837)] = 290205, + [SMALL_STATE(2397)] = 0, + [SMALL_STATE(2398)] = 71, + [SMALL_STATE(2399)] = 148, + [SMALL_STATE(2400)] = 219, + [SMALL_STATE(2401)] = 294, + [SMALL_STATE(2402)] = 379, + [SMALL_STATE(2403)] = 464, + [SMALL_STATE(2404)] = 539, + [SMALL_STATE(2405)] = 610, + [SMALL_STATE(2406)] = 681, + [SMALL_STATE(2407)] = 752, + [SMALL_STATE(2408)] = 823, + [SMALL_STATE(2409)] = 906, + [SMALL_STATE(2410)] = 977, + [SMALL_STATE(2411)] = 1048, + [SMALL_STATE(2412)] = 1119, + [SMALL_STATE(2413)] = 1190, + [SMALL_STATE(2414)] = 1261, + [SMALL_STATE(2415)] = 1340, + [SMALL_STATE(2416)] = 1419, + [SMALL_STATE(2417)] = 1490, + [SMALL_STATE(2418)] = 1575, + [SMALL_STATE(2419)] = 1648, + [SMALL_STATE(2420)] = 1727, + [SMALL_STATE(2421)] = 1798, + [SMALL_STATE(2422)] = 1875, + [SMALL_STATE(2423)] = 1970, + [SMALL_STATE(2424)] = 2041, + [SMALL_STATE(2425)] = 2136, + [SMALL_STATE(2426)] = 2215, + [SMALL_STATE(2427)] = 2286, + [SMALL_STATE(2428)] = 2357, + [SMALL_STATE(2429)] = 2428, + [SMALL_STATE(2430)] = 2499, + [SMALL_STATE(2431)] = 2570, + [SMALL_STATE(2432)] = 2641, + [SMALL_STATE(2433)] = 2726, + [SMALL_STATE(2434)] = 2803, + [SMALL_STATE(2435)] = 2886, + [SMALL_STATE(2436)] = 2971, + [SMALL_STATE(2437)] = 3042, + [SMALL_STATE(2438)] = 3131, + [SMALL_STATE(2439)] = 3202, + [SMALL_STATE(2440)] = 3275, + [SMALL_STATE(2441)] = 3361, + [SMALL_STATE(2442)] = 3431, + [SMALL_STATE(2443)] = 3501, + [SMALL_STATE(2444)] = 3571, + [SMALL_STATE(2445)] = 3641, + [SMALL_STATE(2446)] = 3711, + [SMALL_STATE(2447)] = 3781, + [SMALL_STATE(2448)] = 3851, + [SMALL_STATE(2449)] = 3921, + [SMALL_STATE(2450)] = 3991, + [SMALL_STATE(2451)] = 4061, + [SMALL_STATE(2452)] = 4131, + [SMALL_STATE(2453)] = 4201, + [SMALL_STATE(2454)] = 4271, + [SMALL_STATE(2455)] = 4341, + [SMALL_STATE(2456)] = 4411, + [SMALL_STATE(2457)] = 4481, + [SMALL_STATE(2458)] = 4551, + [SMALL_STATE(2459)] = 4621, + [SMALL_STATE(2460)] = 4691, + [SMALL_STATE(2461)] = 4761, + [SMALL_STATE(2462)] = 4831, + [SMALL_STATE(2463)] = 4901, + [SMALL_STATE(2464)] = 4981, + [SMALL_STATE(2465)] = 5051, + [SMALL_STATE(2466)] = 5129, + [SMALL_STATE(2467)] = 5199, + [SMALL_STATE(2468)] = 5287, + [SMALL_STATE(2469)] = 5357, + [SMALL_STATE(2470)] = 5427, + [SMALL_STATE(2471)] = 5497, + [SMALL_STATE(2472)] = 5567, + [SMALL_STATE(2473)] = 5637, + [SMALL_STATE(2474)] = 5707, + [SMALL_STATE(2475)] = 5777, + [SMALL_STATE(2476)] = 5847, + [SMALL_STATE(2477)] = 5917, + [SMALL_STATE(2478)] = 5987, + [SMALL_STATE(2479)] = 6057, + [SMALL_STATE(2480)] = 6127, + [SMALL_STATE(2481)] = 6197, + [SMALL_STATE(2482)] = 6267, + [SMALL_STATE(2483)] = 6337, + [SMALL_STATE(2484)] = 6407, + [SMALL_STATE(2485)] = 6477, + [SMALL_STATE(2486)] = 6547, + [SMALL_STATE(2487)] = 6617, + [SMALL_STATE(2488)] = 6687, + [SMALL_STATE(2489)] = 6757, + [SMALL_STATE(2490)] = 6835, + [SMALL_STATE(2491)] = 6905, + [SMALL_STATE(2492)] = 6975, + [SMALL_STATE(2493)] = 7045, + [SMALL_STATE(2494)] = 7115, + [SMALL_STATE(2495)] = 7185, + [SMALL_STATE(2496)] = 7255, + [SMALL_STATE(2497)] = 7325, + [SMALL_STATE(2498)] = 7395, + [SMALL_STATE(2499)] = 7465, + [SMALL_STATE(2500)] = 7535, + [SMALL_STATE(2501)] = 7605, + [SMALL_STATE(2502)] = 7675, + [SMALL_STATE(2503)] = 7745, + [SMALL_STATE(2504)] = 7815, + [SMALL_STATE(2505)] = 7885, + [SMALL_STATE(2506)] = 7955, + [SMALL_STATE(2507)] = 8025, + [SMALL_STATE(2508)] = 8095, + [SMALL_STATE(2509)] = 8165, + [SMALL_STATE(2510)] = 8235, + [SMALL_STATE(2511)] = 8305, + [SMALL_STATE(2512)] = 8375, + [SMALL_STATE(2513)] = 8445, + [SMALL_STATE(2514)] = 8515, + [SMALL_STATE(2515)] = 8585, + [SMALL_STATE(2516)] = 8655, + [SMALL_STATE(2517)] = 8725, + [SMALL_STATE(2518)] = 8795, + [SMALL_STATE(2519)] = 8865, + [SMALL_STATE(2520)] = 8935, + [SMALL_STATE(2521)] = 9005, + [SMALL_STATE(2522)] = 9075, + [SMALL_STATE(2523)] = 9145, + [SMALL_STATE(2524)] = 9215, + [SMALL_STATE(2525)] = 9285, + [SMALL_STATE(2526)] = 9355, + [SMALL_STATE(2527)] = 9425, + [SMALL_STATE(2528)] = 9495, + [SMALL_STATE(2529)] = 9569, + [SMALL_STATE(2530)] = 9639, + [SMALL_STATE(2531)] = 9709, + [SMALL_STATE(2532)] = 9779, + [SMALL_STATE(2533)] = 9849, + [SMALL_STATE(2534)] = 9919, + [SMALL_STATE(2535)] = 9989, + [SMALL_STATE(2536)] = 10059, + [SMALL_STATE(2537)] = 10129, + [SMALL_STATE(2538)] = 10199, + [SMALL_STATE(2539)] = 10269, + [SMALL_STATE(2540)] = 10339, + [SMALL_STATE(2541)] = 10409, + [SMALL_STATE(2542)] = 10479, + [SMALL_STATE(2543)] = 10549, + [SMALL_STATE(2544)] = 10619, + [SMALL_STATE(2545)] = 10689, + [SMALL_STATE(2546)] = 10759, + [SMALL_STATE(2547)] = 10829, + [SMALL_STATE(2548)] = 10899, + [SMALL_STATE(2549)] = 10969, + [SMALL_STATE(2550)] = 11039, + [SMALL_STATE(2551)] = 11109, + [SMALL_STATE(2552)] = 11179, + [SMALL_STATE(2553)] = 11249, + [SMALL_STATE(2554)] = 11319, + [SMALL_STATE(2555)] = 11403, + [SMALL_STATE(2556)] = 11473, + [SMALL_STATE(2557)] = 11543, + [SMALL_STATE(2558)] = 11613, + [SMALL_STATE(2559)] = 11683, + [SMALL_STATE(2560)] = 11753, + [SMALL_STATE(2561)] = 11823, + [SMALL_STATE(2562)] = 11893, + [SMALL_STATE(2563)] = 11963, + [SMALL_STATE(2564)] = 12047, + [SMALL_STATE(2565)] = 12117, + [SMALL_STATE(2566)] = 12187, + [SMALL_STATE(2567)] = 12260, + [SMALL_STATE(2568)] = 12333, + [SMALL_STATE(2569)] = 12406, + [SMALL_STATE(2570)] = 12475, + [SMALL_STATE(2571)] = 12544, + [SMALL_STATE(2572)] = 12613, + [SMALL_STATE(2573)] = 12682, + [SMALL_STATE(2574)] = 12751, + [SMALL_STATE(2575)] = 12820, + [SMALL_STATE(2576)] = 12889, + [SMALL_STATE(2577)] = 12964, + [SMALL_STATE(2578)] = 13051, + [SMALL_STATE(2579)] = 13120, + [SMALL_STATE(2580)] = 13199, + [SMALL_STATE(2581)] = 13278, + [SMALL_STATE(2582)] = 13349, + [SMALL_STATE(2583)] = 13420, + [SMALL_STATE(2584)] = 13489, + [SMALL_STATE(2585)] = 13558, + [SMALL_STATE(2586)] = 13627, + [SMALL_STATE(2587)] = 13714, + [SMALL_STATE(2588)] = 13783, + [SMALL_STATE(2589)] = 13858, + [SMALL_STATE(2590)] = 13931, + [SMALL_STATE(2591)] = 14004, + [SMALL_STATE(2592)] = 14077, + [SMALL_STATE(2593)] = 14164, + [SMALL_STATE(2594)] = 14237, + [SMALL_STATE(2595)] = 14318, + [SMALL_STATE(2596)] = 14393, + [SMALL_STATE(2597)] = 14468, + [SMALL_STATE(2598)] = 14541, + [SMALL_STATE(2599)] = 14612, + [SMALL_STATE(2600)] = 14691, + [SMALL_STATE(2601)] = 14764, + [SMALL_STATE(2602)] = 14837, + [SMALL_STATE(2603)] = 14956, + [SMALL_STATE(2604)] = 15075, + [SMALL_STATE(2605)] = 15148, + [SMALL_STATE(2606)] = 15221, + [SMALL_STATE(2607)] = 15290, + [SMALL_STATE(2608)] = 15362, + [SMALL_STATE(2609)] = 15448, + [SMALL_STATE(2610)] = 15520, + [SMALL_STATE(2611)] = 15592, + [SMALL_STATE(2612)] = 15674, + [SMALL_STATE(2613)] = 15748, + [SMALL_STATE(2614)] = 15822, + [SMALL_STATE(2615)] = 15896, + [SMALL_STATE(2616)] = 15964, + [SMALL_STATE(2617)] = 16038, + [SMALL_STATE(2618)] = 16106, + [SMALL_STATE(2619)] = 16180, + [SMALL_STATE(2620)] = 16254, + [SMALL_STATE(2621)] = 16328, + [SMALL_STATE(2622)] = 16398, + [SMALL_STATE(2623)] = 16472, + [SMALL_STATE(2624)] = 16546, + [SMALL_STATE(2625)] = 16620, + [SMALL_STATE(2626)] = 16694, + [SMALL_STATE(2627)] = 16768, + [SMALL_STATE(2628)] = 16842, + [SMALL_STATE(2629)] = 16916, + [SMALL_STATE(2630)] = 16990, + [SMALL_STATE(2631)] = 17068, + [SMALL_STATE(2632)] = 17140, + [SMALL_STATE(2633)] = 17214, + [SMALL_STATE(2634)] = 17286, + [SMALL_STATE(2635)] = 17358, + [SMALL_STATE(2636)] = 17430, + [SMALL_STATE(2637)] = 17502, + [SMALL_STATE(2638)] = 17574, + [SMALL_STATE(2639)] = 17646, + [SMALL_STATE(2640)] = 17718, + [SMALL_STATE(2641)] = 17790, + [SMALL_STATE(2642)] = 17866, + [SMALL_STATE(2643)] = 17938, + [SMALL_STATE(2644)] = 18010, + [SMALL_STATE(2645)] = 18078, + [SMALL_STATE(2646)] = 18150, + [SMALL_STATE(2647)] = 18218, + [SMALL_STATE(2648)] = 18290, + [SMALL_STATE(2649)] = 18358, + [SMALL_STATE(2650)] = 18426, + [SMALL_STATE(2651)] = 18494, + [SMALL_STATE(2652)] = 18562, + [SMALL_STATE(2653)] = 18630, + [SMALL_STATE(2654)] = 18698, + [SMALL_STATE(2655)] = 18780, + [SMALL_STATE(2656)] = 18850, + [SMALL_STATE(2657)] = 18920, + [SMALL_STATE(2658)] = 18996, + [SMALL_STATE(2659)] = 19064, + [SMALL_STATE(2660)] = 19132, + [SMALL_STATE(2661)] = 19204, + [SMALL_STATE(2662)] = 19272, + [SMALL_STATE(2663)] = 19340, + [SMALL_STATE(2664)] = 19414, + [SMALL_STATE(2665)] = 19490, + [SMALL_STATE(2666)] = 19558, + [SMALL_STATE(2667)] = 19630, + [SMALL_STATE(2668)] = 19698, + [SMALL_STATE(2669)] = 19770, + [SMALL_STATE(2670)] = 19838, + [SMALL_STATE(2671)] = 19914, + [SMALL_STATE(2672)] = 19982, + [SMALL_STATE(2673)] = 20050, + [SMALL_STATE(2674)] = 20120, + [SMALL_STATE(2675)] = 20192, + [SMALL_STATE(2676)] = 20260, + [SMALL_STATE(2677)] = 20328, + [SMALL_STATE(2678)] = 20400, + [SMALL_STATE(2679)] = 20472, + [SMALL_STATE(2680)] = 20544, + [SMALL_STATE(2681)] = 20616, + [SMALL_STATE(2682)] = 20688, + [SMALL_STATE(2683)] = 20756, + [SMALL_STATE(2684)] = 20823, + [SMALL_STATE(2685)] = 20892, + [SMALL_STATE(2686)] = 20959, + [SMALL_STATE(2687)] = 21026, + [SMALL_STATE(2688)] = 21093, + [SMALL_STATE(2689)] = 21174, + [SMALL_STATE(2690)] = 21241, + [SMALL_STATE(2691)] = 21308, + [SMALL_STATE(2692)] = 21375, + [SMALL_STATE(2693)] = 21442, + [SMALL_STATE(2694)] = 21509, + [SMALL_STATE(2695)] = 21576, + [SMALL_STATE(2696)] = 21659, + [SMALL_STATE(2697)] = 21726, + [SMALL_STATE(2698)] = 21807, + [SMALL_STATE(2699)] = 21874, + [SMALL_STATE(2700)] = 21943, + [SMALL_STATE(2701)] = 22012, + [SMALL_STATE(2702)] = 22095, + [SMALL_STATE(2703)] = 22162, + [SMALL_STATE(2704)] = 22229, + [SMALL_STATE(2705)] = 22296, + [SMALL_STATE(2706)] = 22365, + [SMALL_STATE(2707)] = 22432, + [SMALL_STATE(2708)] = 22499, + [SMALL_STATE(2709)] = 22566, + [SMALL_STATE(2710)] = 22633, + [SMALL_STATE(2711)] = 22750, + [SMALL_STATE(2712)] = 22821, + [SMALL_STATE(2713)] = 22938, + [SMALL_STATE(2714)] = 23055, + [SMALL_STATE(2715)] = 23122, + [SMALL_STATE(2716)] = 23189, + [SMALL_STATE(2717)] = 23256, + [SMALL_STATE(2718)] = 23323, + [SMALL_STATE(2719)] = 23390, + [SMALL_STATE(2720)] = 23457, + [SMALL_STATE(2721)] = 23524, + [SMALL_STATE(2722)] = 23591, + [SMALL_STATE(2723)] = 23658, + [SMALL_STATE(2724)] = 23725, + [SMALL_STATE(2725)] = 23792, + [SMALL_STATE(2726)] = 23859, + [SMALL_STATE(2727)] = 23926, + [SMALL_STATE(2728)] = 23997, + [SMALL_STATE(2729)] = 24064, + [SMALL_STATE(2730)] = 24131, + [SMALL_STATE(2731)] = 24202, + [SMALL_STATE(2732)] = 24273, + [SMALL_STATE(2733)] = 24340, + [SMALL_STATE(2734)] = 24407, + [SMALL_STATE(2735)] = 24474, + [SMALL_STATE(2736)] = 24545, + [SMALL_STATE(2737)] = 24616, + [SMALL_STATE(2738)] = 24683, + [SMALL_STATE(2739)] = 24800, + [SMALL_STATE(2740)] = 24867, + [SMALL_STATE(2741)] = 24934, + [SMALL_STATE(2742)] = 25001, + [SMALL_STATE(2743)] = 25068, + [SMALL_STATE(2744)] = 25135, + [SMALL_STATE(2745)] = 25202, + [SMALL_STATE(2746)] = 25269, + [SMALL_STATE(2747)] = 25336, + [SMALL_STATE(2748)] = 25403, + [SMALL_STATE(2749)] = 25470, + [SMALL_STATE(2750)] = 25562, + [SMALL_STATE(2751)] = 25632, + [SMALL_STATE(2752)] = 25704, + [SMALL_STATE(2753)] = 25770, + [SMALL_STATE(2754)] = 25846, + [SMALL_STATE(2755)] = 25922, + [SMALL_STATE(2756)] = 26014, + [SMALL_STATE(2757)] = 26080, + [SMALL_STATE(2758)] = 26148, + [SMALL_STATE(2759)] = 26240, + [SMALL_STATE(2760)] = 26322, + [SMALL_STATE(2761)] = 26388, + [SMALL_STATE(2762)] = 26454, + [SMALL_STATE(2763)] = 26524, + [SMALL_STATE(2764)] = 26616, + [SMALL_STATE(2765)] = 26708, + [SMALL_STATE(2766)] = 26780, + [SMALL_STATE(2767)] = 26846, + [SMALL_STATE(2768)] = 26918, + [SMALL_STATE(2769)] = 26986, + [SMALL_STATE(2770)] = 27068, + [SMALL_STATE(2771)] = 27138, + [SMALL_STATE(2772)] = 27208, + [SMALL_STATE(2773)] = 27278, + [SMALL_STATE(2774)] = 27344, + [SMALL_STATE(2775)] = 27420, + [SMALL_STATE(2776)] = 27488, + [SMALL_STATE(2777)] = 27558, + [SMALL_STATE(2778)] = 27628, + [SMALL_STATE(2779)] = 27698, + [SMALL_STATE(2780)] = 27764, + [SMALL_STATE(2781)] = 27830, + [SMALL_STATE(2782)] = 27896, + [SMALL_STATE(2783)] = 27962, + [SMALL_STATE(2784)] = 28032, + [SMALL_STATE(2785)] = 28124, + [SMALL_STATE(2786)] = 28190, + [SMALL_STATE(2787)] = 28272, + [SMALL_STATE(2788)] = 28338, + [SMALL_STATE(2789)] = 28404, + [SMALL_STATE(2790)] = 28476, + [SMALL_STATE(2791)] = 28542, + [SMALL_STATE(2792)] = 28634, + [SMALL_STATE(2793)] = 28700, + [SMALL_STATE(2794)] = 28770, + [SMALL_STATE(2795)] = 28836, + [SMALL_STATE(2796)] = 28902, + [SMALL_STATE(2797)] = 28972, + [SMALL_STATE(2798)] = 29038, + [SMALL_STATE(2799)] = 29120, + [SMALL_STATE(2800)] = 29190, + [SMALL_STATE(2801)] = 29256, + [SMALL_STATE(2802)] = 29322, + [SMALL_STATE(2803)] = 29388, + [SMALL_STATE(2804)] = 29458, + [SMALL_STATE(2805)] = 29539, + [SMALL_STATE(2806)] = 29620, + [SMALL_STATE(2807)] = 29695, + [SMALL_STATE(2808)] = 29760, + [SMALL_STATE(2809)] = 29831, + [SMALL_STATE(2810)] = 29902, + [SMALL_STATE(2811)] = 29985, + [SMALL_STATE(2812)] = 30056, + [SMALL_STATE(2813)] = 30139, + [SMALL_STATE(2814)] = 30220, + [SMALL_STATE(2815)] = 30291, + [SMALL_STATE(2816)] = 30400, + [SMALL_STATE(2817)] = 30513, + [SMALL_STATE(2818)] = 30618, + [SMALL_STATE(2819)] = 30719, + [SMALL_STATE(2820)] = 30818, + [SMALL_STATE(2821)] = 30915, + [SMALL_STATE(2822)] = 31010, + [SMALL_STATE(2823)] = 31101, + [SMALL_STATE(2824)] = 31188, + [SMALL_STATE(2825)] = 31297, + [SMALL_STATE(2826)] = 31410, + [SMALL_STATE(2827)] = 31519, + [SMALL_STATE(2828)] = 31632, + [SMALL_STATE(2829)] = 31703, + [SMALL_STATE(2830)] = 31768, + [SMALL_STATE(2831)] = 31843, + [SMALL_STATE(2832)] = 31926, + [SMALL_STATE(2833)] = 32005, + [SMALL_STATE(2834)] = 32070, + [SMALL_STATE(2835)] = 32153, + [SMALL_STATE(2836)] = 32236, + [SMALL_STATE(2837)] = 32301, + [SMALL_STATE(2838)] = 32384, + [SMALL_STATE(2839)] = 32493, + [SMALL_STATE(2840)] = 32602, + [SMALL_STATE(2841)] = 32673, + [SMALL_STATE(2842)] = 32744, + [SMALL_STATE(2843)] = 32815, + [SMALL_STATE(2844)] = 32898, + [SMALL_STATE(2845)] = 32981, + [SMALL_STATE(2846)] = 33054, + [SMALL_STATE(2847)] = 33125, + [SMALL_STATE(2848)] = 33198, + [SMALL_STATE(2849)] = 33281, + [SMALL_STATE(2850)] = 33364, + [SMALL_STATE(2851)] = 33431, + [SMALL_STATE(2852)] = 33496, + [SMALL_STATE(2853)] = 33561, + [SMALL_STATE(2854)] = 33644, + [SMALL_STATE(2855)] = 33727, + [SMALL_STATE(2856)] = 33794, + [SMALL_STATE(2857)] = 33861, + [SMALL_STATE(2858)] = 33942, + [SMALL_STATE(2859)] = 34007, + [SMALL_STATE(2860)] = 34078, + [SMALL_STATE(2861)] = 34161, + [SMALL_STATE(2862)] = 34244, + [SMALL_STATE(2863)] = 34319, + [SMALL_STATE(2864)] = 34398, + [SMALL_STATE(2865)] = 34463, + [SMALL_STATE(2866)] = 34528, + [SMALL_STATE(2867)] = 34609, + [SMALL_STATE(2868)] = 34692, + [SMALL_STATE(2869)] = 34777, + [SMALL_STATE(2870)] = 34842, + [SMALL_STATE(2871)] = 34907, + [SMALL_STATE(2872)] = 34972, + [SMALL_STATE(2873)] = 35037, + [SMALL_STATE(2874)] = 35102, + [SMALL_STATE(2875)] = 35167, + [SMALL_STATE(2876)] = 35232, + [SMALL_STATE(2877)] = 35303, + [SMALL_STATE(2878)] = 35374, + [SMALL_STATE(2879)] = 35444, + [SMALL_STATE(2880)] = 35514, + [SMALL_STATE(2881)] = 35584, + [SMALL_STATE(2882)] = 35654, + [SMALL_STATE(2883)] = 35724, + [SMALL_STATE(2884)] = 35788, + [SMALL_STATE(2885)] = 35858, + [SMALL_STATE(2886)] = 35928, + [SMALL_STATE(2887)] = 35998, + [SMALL_STATE(2888)] = 36064, + [SMALL_STATE(2889)] = 36134, + [SMALL_STATE(2890)] = 36212, + [SMALL_STATE(2891)] = 36280, + [SMALL_STATE(2892)] = 36350, + [SMALL_STATE(2893)] = 36462, + [SMALL_STATE(2894)] = 36526, + [SMALL_STATE(2895)] = 36596, + [SMALL_STATE(2896)] = 36670, + [SMALL_STATE(2897)] = 36782, + [SMALL_STATE(2898)] = 36852, + [SMALL_STATE(2899)] = 36928, + [SMALL_STATE(2900)] = 36998, + [SMALL_STATE(2901)] = 37062, + [SMALL_STATE(2902)] = 37126, + [SMALL_STATE(2903)] = 37244, + [SMALL_STATE(2904)] = 37308, + [SMALL_STATE(2905)] = 37372, + [SMALL_STATE(2906)] = 37436, + [SMALL_STATE(2907)] = 37500, + [SMALL_STATE(2908)] = 37564, + [SMALL_STATE(2909)] = 37682, + [SMALL_STATE(2910)] = 37755, + [SMALL_STATE(2911)] = 37818, + [SMALL_STATE(2912)] = 37927, + [SMALL_STATE(2913)] = 38036, + [SMALL_STATE(2914)] = 38109, + [SMALL_STATE(2915)] = 38172, + [SMALL_STATE(2916)] = 38239, + [SMALL_STATE(2917)] = 38306, + [SMALL_STATE(2918)] = 38371, + [SMALL_STATE(2919)] = 38438, + [SMALL_STATE(2920)] = 38547, + [SMALL_STATE(2921)] = 38656, + [SMALL_STATE(2922)] = 38723, + [SMALL_STATE(2923)] = 38794, + [SMALL_STATE(2924)] = 38903, + [SMALL_STATE(2925)] = 38976, + [SMALL_STATE(2926)] = 39085, + [SMALL_STATE(2927)] = 39246, + [SMALL_STATE(2928)] = 39355, + [SMALL_STATE(2929)] = 39418, + [SMALL_STATE(2930)] = 39527, + [SMALL_STATE(2931)] = 39636, + [SMALL_STATE(2932)] = 39745, + [SMALL_STATE(2933)] = 39854, + [SMALL_STATE(2934)] = 39963, + [SMALL_STATE(2935)] = 40032, + [SMALL_STATE(2936)] = 40141, + [SMALL_STATE(2937)] = 40250, + [SMALL_STATE(2938)] = 40359, + [SMALL_STATE(2939)] = 40422, + [SMALL_STATE(2940)] = 40531, + [SMALL_STATE(2941)] = 40640, + [SMALL_STATE(2942)] = 40749, + [SMALL_STATE(2943)] = 40822, + [SMALL_STATE(2944)] = 40931, + [SMALL_STATE(2945)] = 40998, + [SMALL_STATE(2946)] = 41071, + [SMALL_STATE(2947)] = 41180, + [SMALL_STATE(2948)] = 41289, + [SMALL_STATE(2949)] = 41402, + [SMALL_STATE(2950)] = 41511, + [SMALL_STATE(2951)] = 41672, + [SMALL_STATE(2952)] = 41737, + [SMALL_STATE(2953)] = 41800, + [SMALL_STATE(2954)] = 41909, + [SMALL_STATE(2955)] = 41976, + [SMALL_STATE(2956)] = 42085, + [SMALL_STATE(2957)] = 42194, + [SMALL_STATE(2958)] = 42303, + [SMALL_STATE(2959)] = 42412, + [SMALL_STATE(2960)] = 42521, + [SMALL_STATE(2961)] = 42584, + [SMALL_STATE(2962)] = 42651, + [SMALL_STATE(2963)] = 42718, + [SMALL_STATE(2964)] = 42835, + [SMALL_STATE(2965)] = 42944, + [SMALL_STATE(2966)] = 43053, + [SMALL_STATE(2967)] = 43162, + [SMALL_STATE(2968)] = 43271, + [SMALL_STATE(2969)] = 43344, + [SMALL_STATE(2970)] = 43423, + [SMALL_STATE(2971)] = 43496, + [SMALL_STATE(2972)] = 43605, + [SMALL_STATE(2973)] = 43722, + [SMALL_STATE(2974)] = 43831, + [SMALL_STATE(2975)] = 43940, + [SMALL_STATE(2976)] = 44045, + [SMALL_STATE(2977)] = 44154, + [SMALL_STATE(2978)] = 44263, + [SMALL_STATE(2979)] = 44372, + [SMALL_STATE(2980)] = 44439, + [SMALL_STATE(2981)] = 44548, + [SMALL_STATE(2982)] = 44627, + [SMALL_STATE(2983)] = 44694, + [SMALL_STATE(2984)] = 44795, + [SMALL_STATE(2985)] = 44892, + [SMALL_STATE(2986)] = 44971, + [SMALL_STATE(2987)] = 45040, + [SMALL_STATE(2988)] = 45107, + [SMALL_STATE(2989)] = 45202, + [SMALL_STATE(2990)] = 45319, + [SMALL_STATE(2991)] = 45410, + [SMALL_STATE(2992)] = 45571, + [SMALL_STATE(2993)] = 45660, + [SMALL_STATE(2994)] = 45745, + [SMALL_STATE(2995)] = 45826, + [SMALL_STATE(2996)] = 45935, + [SMALL_STATE(2997)] = 46044, + [SMALL_STATE(2998)] = 46111, + [SMALL_STATE(2999)] = 46190, + [SMALL_STATE(3000)] = 46273, + [SMALL_STATE(3001)] = 46344, + [SMALL_STATE(3002)] = 46461, + [SMALL_STATE(3003)] = 46540, + [SMALL_STATE(3004)] = 46653, + [SMALL_STATE(3005)] = 46726, + [SMALL_STATE(3006)] = 46797, + [SMALL_STATE(3007)] = 46914, + [SMALL_STATE(3008)] = 46983, + [SMALL_STATE(3009)] = 47046, + [SMALL_STATE(3010)] = 47109, + [SMALL_STATE(3011)] = 47226, + [SMALL_STATE(3012)] = 47339, + [SMALL_STATE(3013)] = 47406, + [SMALL_STATE(3014)] = 47474, + [SMALL_STATE(3015)] = 47538, + [SMALL_STATE(3016)] = 47646, + [SMALL_STATE(3017)] = 47708, + [SMALL_STATE(3018)] = 47816, + [SMALL_STATE(3019)] = 47894, + [SMALL_STATE(3020)] = 47974, + [SMALL_STATE(3021)] = 48056, + [SMALL_STATE(3022)] = 48172, + [SMALL_STATE(3023)] = 48240, + [SMALL_STATE(3024)] = 48312, + [SMALL_STATE(3025)] = 48374, + [SMALL_STATE(3026)] = 48442, + [SMALL_STATE(3027)] = 48504, + [SMALL_STATE(3028)] = 48566, + [SMALL_STATE(3029)] = 48682, + [SMALL_STATE(3030)] = 48744, + [SMALL_STATE(3031)] = 48810, + [SMALL_STATE(3032)] = 48876, + [SMALL_STATE(3033)] = 48944, + [SMALL_STATE(3034)] = 49006, + [SMALL_STATE(3035)] = 49118, + [SMALL_STATE(3036)] = 49180, + [SMALL_STATE(3037)] = 49246, + [SMALL_STATE(3038)] = 49320, + [SMALL_STATE(3039)] = 49428, + [SMALL_STATE(3040)] = 49494, + [SMALL_STATE(3041)] = 49556, + [SMALL_STATE(3042)] = 49636, + [SMALL_STATE(3043)] = 49698, + [SMALL_STATE(3044)] = 49764, + [SMALL_STATE(3045)] = 49880, + [SMALL_STATE(3046)] = 49942, + [SMALL_STATE(3047)] = 50004, + [SMALL_STATE(3048)] = 50072, + [SMALL_STATE(3049)] = 50134, + [SMALL_STATE(3050)] = 50196, + [SMALL_STATE(3051)] = 50308, + [SMALL_STATE(3052)] = 50372, + [SMALL_STATE(3053)] = 50438, + [SMALL_STATE(3054)] = 50508, + [SMALL_STATE(3055)] = 50570, + [SMALL_STATE(3056)] = 50632, + [SMALL_STATE(3057)] = 50694, + [SMALL_STATE(3058)] = 50756, + [SMALL_STATE(3059)] = 50864, + [SMALL_STATE(3060)] = 50928, + [SMALL_STATE(3061)] = 50994, + [SMALL_STATE(3062)] = 51060, + [SMALL_STATE(3063)] = 51128, + [SMALL_STATE(3064)] = 51200, + [SMALL_STATE(3065)] = 51264, + [SMALL_STATE(3066)] = 51332, + [SMALL_STATE(3067)] = 51398, + [SMALL_STATE(3068)] = 51464, + [SMALL_STATE(3069)] = 51526, + [SMALL_STATE(3070)] = 51588, + [SMALL_STATE(3071)] = 51650, + [SMALL_STATE(3072)] = 51724, + [SMALL_STATE(3073)] = 51786, + [SMALL_STATE(3074)] = 51850, + [SMALL_STATE(3075)] = 51916, + [SMALL_STATE(3076)] = 52020, + [SMALL_STATE(3077)] = 52082, + [SMALL_STATE(3078)] = 52198, + [SMALL_STATE(3079)] = 52260, + [SMALL_STATE(3080)] = 52322, + [SMALL_STATE(3081)] = 52422, + [SMALL_STATE(3082)] = 52488, + [SMALL_STATE(3083)] = 52550, + [SMALL_STATE(3084)] = 52646, + [SMALL_STATE(3085)] = 52708, + [SMALL_STATE(3086)] = 52770, + [SMALL_STATE(3087)] = 52886, + [SMALL_STATE(3088)] = 52948, + [SMALL_STATE(3089)] = 53042, + [SMALL_STATE(3090)] = 53108, + [SMALL_STATE(3091)] = 53170, + [SMALL_STATE(3092)] = 53240, + [SMALL_STATE(3093)] = 53352, + [SMALL_STATE(3094)] = 53440, + [SMALL_STATE(3095)] = 53524, + [SMALL_STATE(3096)] = 53640, + [SMALL_STATE(3097)] = 53702, + [SMALL_STATE(3098)] = 53764, + [SMALL_STATE(3099)] = 53832, + [SMALL_STATE(3100)] = 53904, + [SMALL_STATE(3101)] = 53972, + [SMALL_STATE(3102)] = 54036, + [SMALL_STATE(3103)] = 54104, + [SMALL_STATE(3104)] = 54166, + [SMALL_STATE(3105)] = 54232, + [SMALL_STATE(3106)] = 54304, + [SMALL_STATE(3107)] = 54368, + [SMALL_STATE(3108)] = 54432, + [SMALL_STATE(3109)] = 54548, + [SMALL_STATE(3110)] = 54664, + [SMALL_STATE(3111)] = 54780, + [SMALL_STATE(3112)] = 54896, + [SMALL_STATE(3113)] = 55012, + [SMALL_STATE(3114)] = 55128, + [SMALL_STATE(3115)] = 55190, + [SMALL_STATE(3116)] = 55252, + [SMALL_STATE(3117)] = 55316, + [SMALL_STATE(3118)] = 55390, + [SMALL_STATE(3119)] = 55452, + [SMALL_STATE(3120)] = 55516, + [SMALL_STATE(3121)] = 55578, + [SMALL_STATE(3122)] = 55644, + [SMALL_STATE(3123)] = 55710, + [SMALL_STATE(3124)] = 55774, + [SMALL_STATE(3125)] = 55838, + [SMALL_STATE(3126)] = 55906, + [SMALL_STATE(3127)] = 56014, + [SMALL_STATE(3128)] = 56078, + [SMALL_STATE(3129)] = 56142, + [SMALL_STATE(3130)] = 56208, + [SMALL_STATE(3131)] = 56270, + [SMALL_STATE(3132)] = 56334, + [SMALL_STATE(3133)] = 56402, + [SMALL_STATE(3134)] = 56468, + [SMALL_STATE(3135)] = 56536, + [SMALL_STATE(3136)] = 56608, + [SMALL_STATE(3137)] = 56670, + [SMALL_STATE(3138)] = 56734, + [SMALL_STATE(3139)] = 56796, + [SMALL_STATE(3140)] = 56864, + [SMALL_STATE(3141)] = 56936, + [SMALL_STATE(3142)] = 57002, + [SMALL_STATE(3143)] = 57068, + [SMALL_STATE(3144)] = 57136, + [SMALL_STATE(3145)] = 57198, + [SMALL_STATE(3146)] = 57266, + [SMALL_STATE(3147)] = 57332, + [SMALL_STATE(3148)] = 57398, + [SMALL_STATE(3149)] = 57466, + [SMALL_STATE(3150)] = 57532, + [SMALL_STATE(3151)] = 57600, + [SMALL_STATE(3152)] = 57664, + [SMALL_STATE(3153)] = 57754, + [SMALL_STATE(3154)] = 57829, + [SMALL_STATE(3155)] = 57896, + [SMALL_STATE(3156)] = 57957, + [SMALL_STATE(3157)] = 58018, + [SMALL_STATE(3158)] = 58079, + [SMALL_STATE(3159)] = 58140, + [SMALL_STATE(3160)] = 58201, + [SMALL_STATE(3161)] = 58262, + [SMALL_STATE(3162)] = 58323, + [SMALL_STATE(3163)] = 58384, + [SMALL_STATE(3164)] = 58491, + [SMALL_STATE(3165)] = 58552, + [SMALL_STATE(3166)] = 58619, + [SMALL_STATE(3167)] = 58680, + [SMALL_STATE(3168)] = 58741, + [SMALL_STATE(3169)] = 58802, + [SMALL_STATE(3170)] = 58863, + [SMALL_STATE(3171)] = 58924, + [SMALL_STATE(3172)] = 58985, + [SMALL_STATE(3173)] = 59046, + [SMALL_STATE(3174)] = 59115, + [SMALL_STATE(3175)] = 59176, + [SMALL_STATE(3176)] = 59237, + [SMALL_STATE(3177)] = 59348, + [SMALL_STATE(3178)] = 59413, + [SMALL_STATE(3179)] = 59476, + [SMALL_STATE(3180)] = 59541, + [SMALL_STATE(3181)] = 59618, + [SMALL_STATE(3182)] = 59687, + [SMALL_STATE(3183)] = 59790, + [SMALL_STATE(3184)] = 59889, + [SMALL_STATE(3185)] = 59984, + [SMALL_STATE(3186)] = 60077, + [SMALL_STATE(3187)] = 60166, + [SMALL_STATE(3188)] = 60253, + [SMALL_STATE(3189)] = 60336, + [SMALL_STATE(3190)] = 60415, + [SMALL_STATE(3191)] = 60496, + [SMALL_STATE(3192)] = 60563, + [SMALL_STATE(3193)] = 60630, + [SMALL_STATE(3194)] = 60695, + [SMALL_STATE(3195)] = 60758, + [SMALL_STATE(3196)] = 60873, + [SMALL_STATE(3197)] = 60934, + [SMALL_STATE(3198)] = 60995, + [SMALL_STATE(3199)] = 61110, + [SMALL_STATE(3200)] = 61177, + [SMALL_STATE(3201)] = 61288, + [SMALL_STATE(3202)] = 61349, + [SMALL_STATE(3203)] = 61410, + [SMALL_STATE(3204)] = 61471, + [SMALL_STATE(3205)] = 61532, + [SMALL_STATE(3206)] = 61599, + [SMALL_STATE(3207)] = 61660, + [SMALL_STATE(3208)] = 61721, + [SMALL_STATE(3209)] = 61796, + [SMALL_STATE(3210)] = 61871, + [SMALL_STATE(3211)] = 61948, + [SMALL_STATE(3212)] = 62015, + [SMALL_STATE(3213)] = 62084, + [SMALL_STATE(3214)] = 62147, + [SMALL_STATE(3215)] = 62258, + [SMALL_STATE(3216)] = 62325, + [SMALL_STATE(3217)] = 62386, + [SMALL_STATE(3218)] = 62461, + [SMALL_STATE(3219)] = 62522, + [SMALL_STATE(3220)] = 62629, + [SMALL_STATE(3221)] = 62690, + [SMALL_STATE(3222)] = 62751, + [SMALL_STATE(3223)] = 62814, + [SMALL_STATE(3224)] = 62879, + [SMALL_STATE(3225)] = 62944, + [SMALL_STATE(3226)] = 63017, + [SMALL_STATE(3227)] = 63092, + [SMALL_STATE(3228)] = 63153, + [SMALL_STATE(3229)] = 63214, + [SMALL_STATE(3230)] = 63275, + [SMALL_STATE(3231)] = 63382, + [SMALL_STATE(3232)] = 63451, + [SMALL_STATE(3233)] = 63558, + [SMALL_STATE(3234)] = 63619, + [SMALL_STATE(3235)] = 63688, + [SMALL_STATE(3236)] = 63749, + [SMALL_STATE(3237)] = 63824, + [SMALL_STATE(3238)] = 63931, + [SMALL_STATE(3239)] = 63992, + [SMALL_STATE(3240)] = 64057, + [SMALL_STATE(3241)] = 64118, + [SMALL_STATE(3242)] = 64179, + [SMALL_STATE(3243)] = 64240, + [SMALL_STATE(3244)] = 64313, + [SMALL_STATE(3245)] = 64378, + [SMALL_STATE(3246)] = 64439, + [SMALL_STATE(3247)] = 64506, + [SMALL_STATE(3248)] = 64573, + [SMALL_STATE(3249)] = 64638, + [SMALL_STATE(3250)] = 64699, + [SMALL_STATE(3251)] = 64760, + [SMALL_STATE(3252)] = 64835, + [SMALL_STATE(3253)] = 64941, + [SMALL_STATE(3254)] = 65097, + [SMALL_STATE(3255)] = 65201, + [SMALL_STATE(3256)] = 65315, + [SMALL_STATE(3257)] = 65471, + [SMALL_STATE(3258)] = 65531, + [SMALL_STATE(3259)] = 65609, + [SMALL_STATE(3260)] = 65705, + [SMALL_STATE(3261)] = 65809, + [SMALL_STATE(3262)] = 65901, + [SMALL_STATE(3263)] = 65991, + [SMALL_STATE(3264)] = 66051, + [SMALL_STATE(3265)] = 66111, + [SMALL_STATE(3266)] = 66171, + [SMALL_STATE(3267)] = 66233, + [SMALL_STATE(3268)] = 66305, + [SMALL_STATE(3269)] = 66365, + [SMALL_STATE(3270)] = 66469, + [SMALL_STATE(3271)] = 66535, + [SMALL_STATE(3272)] = 66621, + [SMALL_STATE(3273)] = 66733, + [SMALL_STATE(3274)] = 66837, + [SMALL_STATE(3275)] = 66907, + [SMALL_STATE(3276)] = 66991, + [SMALL_STATE(3277)] = 67105, + [SMALL_STATE(3278)] = 67261, + [SMALL_STATE(3279)] = 67337, + [SMALL_STATE(3280)] = 67397, + [SMALL_STATE(3281)] = 67457, + [SMALL_STATE(3282)] = 67517, + [SMALL_STATE(3283)] = 67577, + [SMALL_STATE(3284)] = 67685, + [SMALL_STATE(3285)] = 67767, + [SMALL_STATE(3286)] = 67827, + [SMALL_STATE(3287)] = 67887, + [SMALL_STATE(3288)] = 67947, + [SMALL_STATE(3289)] = 68103, + [SMALL_STATE(3290)] = 68181, + [SMALL_STATE(3291)] = 68241, + [SMALL_STATE(3292)] = 68301, + [SMALL_STATE(3293)] = 68409, + [SMALL_STATE(3294)] = 68469, + [SMALL_STATE(3295)] = 68583, + [SMALL_STATE(3296)] = 68643, + [SMALL_STATE(3297)] = 68703, + [SMALL_STATE(3298)] = 68859, + [SMALL_STATE(3299)] = 68923, + [SMALL_STATE(3300)] = 68983, + [SMALL_STATE(3301)] = 69043, + [SMALL_STATE(3302)] = 69103, + [SMALL_STATE(3303)] = 69163, + [SMALL_STATE(3304)] = 69223, + [SMALL_STATE(3305)] = 69303, + [SMALL_STATE(3306)] = 69363, + [SMALL_STATE(3307)] = 69423, + [SMALL_STATE(3308)] = 69483, + [SMALL_STATE(3309)] = 69543, + [SMALL_STATE(3310)] = 69603, + [SMALL_STATE(3311)] = 69677, + [SMALL_STATE(3312)] = 69833, + [SMALL_STATE(3313)] = 69893, + [SMALL_STATE(3314)] = 69953, + [SMALL_STATE(3315)] = 70013, + [SMALL_STATE(3316)] = 70079, + [SMALL_STATE(3317)] = 70139, + [SMALL_STATE(3318)] = 70295, + [SMALL_STATE(3319)] = 70355, + [SMALL_STATE(3320)] = 70421, + [SMALL_STATE(3321)] = 70493, + [SMALL_STATE(3322)] = 70567, + [SMALL_STATE(3323)] = 70639, + [SMALL_STATE(3324)] = 70703, + [SMALL_STATE(3325)] = 70769, + [SMALL_STATE(3326)] = 70835, + [SMALL_STATE(3327)] = 70895, + [SMALL_STATE(3328)] = 70967, + [SMALL_STATE(3329)] = 71073, + [SMALL_STATE(3330)] = 71147, + [SMALL_STATE(3331)] = 71221, + [SMALL_STATE(3332)] = 71281, + [SMALL_STATE(3333)] = 71341, + [SMALL_STATE(3334)] = 71447, + [SMALL_STATE(3335)] = 71557, + [SMALL_STATE(3336)] = 71633, + [SMALL_STATE(3337)] = 71707, + [SMALL_STATE(3338)] = 71809, + [SMALL_STATE(3339)] = 71907, + [SMALL_STATE(3340)] = 72001, + [SMALL_STATE(3341)] = 72093, + [SMALL_STATE(3342)] = 72181, + [SMALL_STATE(3343)] = 72267, + [SMALL_STATE(3344)] = 72349, + [SMALL_STATE(3345)] = 72427, + [SMALL_STATE(3346)] = 72507, + [SMALL_STATE(3347)] = 72581, + [SMALL_STATE(3348)] = 72641, + [SMALL_STATE(3349)] = 72747, + [SMALL_STATE(3350)] = 72857, + [SMALL_STATE(3351)] = 72963, + [SMALL_STATE(3352)] = 73073, + [SMALL_STATE(3353)] = 73229, + [SMALL_STATE(3354)] = 73289, + [SMALL_STATE(3355)] = 73349, + [SMALL_STATE(3356)] = 73417, + [SMALL_STATE(3357)] = 73487, + [SMALL_STATE(3358)] = 73601, + [SMALL_STATE(3359)] = 73661, + [SMALL_STATE(3360)] = 73725, + [SMALL_STATE(3361)] = 73829, + [SMALL_STATE(3362)] = 73903, + [SMALL_STATE(3363)] = 73973, + [SMALL_STATE(3364)] = 74053, + [SMALL_STATE(3365)] = 74127, + [SMALL_STATE(3366)] = 74235, + [SMALL_STATE(3367)] = 74299, + [SMALL_STATE(3368)] = 74365, + [SMALL_STATE(3369)] = 74425, + [SMALL_STATE(3370)] = 74485, + [SMALL_STATE(3371)] = 74545, + [SMALL_STATE(3372)] = 74659, + [SMALL_STATE(3373)] = 74719, + [SMALL_STATE(3374)] = 74781, + [SMALL_STATE(3375)] = 74841, + [SMALL_STATE(3376)] = 74915, + [SMALL_STATE(3377)] = 74979, + [SMALL_STATE(3378)] = 75041, + [SMALL_STATE(3379)] = 75155, + [SMALL_STATE(3380)] = 75215, + [SMALL_STATE(3381)] = 75275, + [SMALL_STATE(3382)] = 75349, + [SMALL_STATE(3383)] = 75409, + [SMALL_STATE(3384)] = 75469, + [SMALL_STATE(3385)] = 75531, + [SMALL_STATE(3386)] = 75591, + [SMALL_STATE(3387)] = 75659, + [SMALL_STATE(3388)] = 75723, + [SMALL_STATE(3389)] = 75783, + [SMALL_STATE(3390)] = 75849, + [SMALL_STATE(3391)] = 75921, + [SMALL_STATE(3392)] = 75981, + [SMALL_STATE(3393)] = 76137, + [SMALL_STATE(3394)] = 76199, + [SMALL_STATE(3395)] = 76313, + [SMALL_STATE(3396)] = 76413, + [SMALL_STATE(3397)] = 76485, + [SMALL_STATE(3398)] = 76544, + [SMALL_STATE(3399)] = 76603, + [SMALL_STATE(3400)] = 76662, + [SMALL_STATE(3401)] = 76721, + [SMALL_STATE(3402)] = 76780, + [SMALL_STATE(3403)] = 76839, + [SMALL_STATE(3404)] = 76898, + [SMALL_STATE(3405)] = 76957, + [SMALL_STATE(3406)] = 77016, + [SMALL_STATE(3407)] = 77081, + [SMALL_STATE(3408)] = 77140, + [SMALL_STATE(3409)] = 77237, + [SMALL_STATE(3410)] = 77296, + [SMALL_STATE(3411)] = 77393, + [SMALL_STATE(3412)] = 77452, + [SMALL_STATE(3413)] = 77525, + [SMALL_STATE(3414)] = 77622, + [SMALL_STATE(3415)] = 77695, + [SMALL_STATE(3416)] = 77792, + [SMALL_STATE(3417)] = 77857, + [SMALL_STATE(3418)] = 77920, + [SMALL_STATE(3419)] = 77987, + [SMALL_STATE(3420)] = 78046, + [SMALL_STATE(3421)] = 78105, + [SMALL_STATE(3422)] = 78164, + [SMALL_STATE(3423)] = 78229, + [SMALL_STATE(3424)] = 78288, + [SMALL_STATE(3425)] = 78347, + [SMALL_STATE(3426)] = 78414, + [SMALL_STATE(3427)] = 78473, + [SMALL_STATE(3428)] = 78532, + [SMALL_STATE(3429)] = 78591, + [SMALL_STATE(3430)] = 78650, + [SMALL_STATE(3431)] = 78709, + [SMALL_STATE(3432)] = 78768, + [SMALL_STATE(3433)] = 78827, + [SMALL_STATE(3434)] = 78886, + [SMALL_STATE(3435)] = 78945, + [SMALL_STATE(3436)] = 79010, + [SMALL_STATE(3437)] = 79107, + [SMALL_STATE(3438)] = 79204, + [SMALL_STATE(3439)] = 79263, + [SMALL_STATE(3440)] = 79322, + [SMALL_STATE(3441)] = 79381, + [SMALL_STATE(3442)] = 79440, + [SMALL_STATE(3443)] = 79499, + [SMALL_STATE(3444)] = 79558, + [SMALL_STATE(3445)] = 79617, + [SMALL_STATE(3446)] = 79676, + [SMALL_STATE(3447)] = 79735, + [SMALL_STATE(3448)] = 79794, + [SMALL_STATE(3449)] = 79853, + [SMALL_STATE(3450)] = 79912, + [SMALL_STATE(3451)] = 79971, + [SMALL_STATE(3452)] = 80032, + [SMALL_STATE(3453)] = 80091, + [SMALL_STATE(3454)] = 80154, + [SMALL_STATE(3455)] = 80213, + [SMALL_STATE(3456)] = 80272, + [SMALL_STATE(3457)] = 80331, + [SMALL_STATE(3458)] = 80390, + [SMALL_STATE(3459)] = 80449, + [SMALL_STATE(3460)] = 80508, + [SMALL_STATE(3461)] = 80567, + [SMALL_STATE(3462)] = 80626, + [SMALL_STATE(3463)] = 80685, + [SMALL_STATE(3464)] = 80744, + [SMALL_STATE(3465)] = 80807, + [SMALL_STATE(3466)] = 80866, + [SMALL_STATE(3467)] = 80925, + [SMALL_STATE(3468)] = 80984, + [SMALL_STATE(3469)] = 81043, + [SMALL_STATE(3470)] = 81102, + [SMALL_STATE(3471)] = 81161, + [SMALL_STATE(3472)] = 81220, + [SMALL_STATE(3473)] = 81283, + [SMALL_STATE(3474)] = 81342, + [SMALL_STATE(3475)] = 81401, + [SMALL_STATE(3476)] = 81460, + [SMALL_STATE(3477)] = 81519, + [SMALL_STATE(3478)] = 81578, + [SMALL_STATE(3479)] = 81647, + [SMALL_STATE(3480)] = 81710, + [SMALL_STATE(3481)] = 81773, + [SMALL_STATE(3482)] = 81832, + [SMALL_STATE(3483)] = 81891, + [SMALL_STATE(3484)] = 81954, + [SMALL_STATE(3485)] = 82017, + [SMALL_STATE(3486)] = 82076, + [SMALL_STATE(3487)] = 82135, + [SMALL_STATE(3488)] = 82194, + [SMALL_STATE(3489)] = 82253, + [SMALL_STATE(3490)] = 82316, + [SMALL_STATE(3491)] = 82379, + [SMALL_STATE(3492)] = 82442, + [SMALL_STATE(3493)] = 82505, + [SMALL_STATE(3494)] = 82568, + [SMALL_STATE(3495)] = 82631, + [SMALL_STATE(3496)] = 82690, + [SMALL_STATE(3497)] = 82753, + [SMALL_STATE(3498)] = 82812, + [SMALL_STATE(3499)] = 82871, + [SMALL_STATE(3500)] = 82934, + [SMALL_STATE(3501)] = 82993, + [SMALL_STATE(3502)] = 83052, + [SMALL_STATE(3503)] = 83111, + [SMALL_STATE(3504)] = 83170, + [SMALL_STATE(3505)] = 83229, + [SMALL_STATE(3506)] = 83288, + [SMALL_STATE(3507)] = 83347, + [SMALL_STATE(3508)] = 83406, + [SMALL_STATE(3509)] = 83465, + [SMALL_STATE(3510)] = 83524, + [SMALL_STATE(3511)] = 83637, + [SMALL_STATE(3512)] = 83696, + [SMALL_STATE(3513)] = 83761, + [SMALL_STATE(3514)] = 83826, + [SMALL_STATE(3515)] = 83885, + [SMALL_STATE(3516)] = 83998, + [SMALL_STATE(3517)] = 84057, + [SMALL_STATE(3518)] = 84116, + [SMALL_STATE(3519)] = 84177, + [SMALL_STATE(3520)] = 84236, + [SMALL_STATE(3521)] = 84295, + [SMALL_STATE(3522)] = 84364, + [SMALL_STATE(3523)] = 84425, + [SMALL_STATE(3524)] = 84484, + [SMALL_STATE(3525)] = 84543, + [SMALL_STATE(3526)] = 84602, + [SMALL_STATE(3527)] = 84661, + [SMALL_STATE(3528)] = 84720, + [SMALL_STATE(3529)] = 84779, + [SMALL_STATE(3530)] = 84838, + [SMALL_STATE(3531)] = 84903, + [SMALL_STATE(3532)] = 84962, + [SMALL_STATE(3533)] = 85021, + [SMALL_STATE(3534)] = 85080, + [SMALL_STATE(3535)] = 85139, + [SMALL_STATE(3536)] = 85198, + [SMALL_STATE(3537)] = 85257, + [SMALL_STATE(3538)] = 85316, + [SMALL_STATE(3539)] = 85429, + [SMALL_STATE(3540)] = 85488, + [SMALL_STATE(3541)] = 85547, + [SMALL_STATE(3542)] = 85606, + [SMALL_STATE(3543)] = 85665, + [SMALL_STATE(3544)] = 85732, + [SMALL_STATE(3545)] = 85791, + [SMALL_STATE(3546)] = 85904, + [SMALL_STATE(3547)] = 85973, + [SMALL_STATE(3548)] = 86042, + [SMALL_STATE(3549)] = 86101, + [SMALL_STATE(3550)] = 86162, + [SMALL_STATE(3551)] = 86221, + [SMALL_STATE(3552)] = 86334, + [SMALL_STATE(3553)] = 86393, + [SMALL_STATE(3554)] = 86452, + [SMALL_STATE(3555)] = 86511, + [SMALL_STATE(3556)] = 86570, + [SMALL_STATE(3557)] = 86629, + [SMALL_STATE(3558)] = 86688, + [SMALL_STATE(3559)] = 86747, + [SMALL_STATE(3560)] = 86806, + [SMALL_STATE(3561)] = 86865, + [SMALL_STATE(3562)] = 86924, + [SMALL_STATE(3563)] = 86983, + [SMALL_STATE(3564)] = 87042, + [SMALL_STATE(3565)] = 87101, + [SMALL_STATE(3566)] = 87160, + [SMALL_STATE(3567)] = 87219, + [SMALL_STATE(3568)] = 87278, + [SMALL_STATE(3569)] = 87337, + [SMALL_STATE(3570)] = 87404, + [SMALL_STATE(3571)] = 87463, + [SMALL_STATE(3572)] = 87522, + [SMALL_STATE(3573)] = 87581, + [SMALL_STATE(3574)] = 87640, + [SMALL_STATE(3575)] = 87703, + [SMALL_STATE(3576)] = 87762, + [SMALL_STATE(3577)] = 87821, + [SMALL_STATE(3578)] = 87880, + [SMALL_STATE(3579)] = 87939, + [SMALL_STATE(3580)] = 87998, + [SMALL_STATE(3581)] = 88057, + [SMALL_STATE(3582)] = 88115, + [SMALL_STATE(3583)] = 88213, + [SMALL_STATE(3584)] = 88271, + [SMALL_STATE(3585)] = 88329, + [SMALL_STATE(3586)] = 88387, + [SMALL_STATE(3587)] = 88445, + [SMALL_STATE(3588)] = 88503, + [SMALL_STATE(3589)] = 88561, + [SMALL_STATE(3590)] = 88619, + [SMALL_STATE(3591)] = 88677, + [SMALL_STATE(3592)] = 88735, + [SMALL_STATE(3593)] = 88793, + [SMALL_STATE(3594)] = 88893, + [SMALL_STATE(3595)] = 88951, + [SMALL_STATE(3596)] = 89009, + [SMALL_STATE(3597)] = 89067, + [SMALL_STATE(3598)] = 89129, + [SMALL_STATE(3599)] = 89187, + [SMALL_STATE(3600)] = 89245, + [SMALL_STATE(3601)] = 89303, + [SMALL_STATE(3602)] = 89361, + [SMALL_STATE(3603)] = 89419, + [SMALL_STATE(3604)] = 89477, + [SMALL_STATE(3605)] = 89535, + [SMALL_STATE(3606)] = 89595, + [SMALL_STATE(3607)] = 89665, + [SMALL_STATE(3608)] = 89759, + [SMALL_STATE(3609)] = 89855, + [SMALL_STATE(3610)] = 89945, + [SMALL_STATE(3611)] = 90041, + [SMALL_STATE(3612)] = 90127, + [SMALL_STATE(3613)] = 90185, + [SMALL_STATE(3614)] = 90269, + [SMALL_STATE(3615)] = 90327, + [SMALL_STATE(3616)] = 90385, + [SMALL_STATE(3617)] = 90443, + [SMALL_STATE(3618)] = 90523, + [SMALL_STATE(3619)] = 90581, + [SMALL_STATE(3620)] = 90651, + [SMALL_STATE(3621)] = 90709, + [SMALL_STATE(3622)] = 90767, + [SMALL_STATE(3623)] = 90825, + [SMALL_STATE(3624)] = 90927, + [SMALL_STATE(3625)] = 90985, + [SMALL_STATE(3626)] = 91047, + [SMALL_STATE(3627)] = 91105, + [SMALL_STATE(3628)] = 91163, + [SMALL_STATE(3629)] = 91221, + [SMALL_STATE(3630)] = 91279, + [SMALL_STATE(3631)] = 91341, + [SMALL_STATE(3632)] = 91399, + [SMALL_STATE(3633)] = 91457, + [SMALL_STATE(3634)] = 91515, + [SMALL_STATE(3635)] = 91573, + [SMALL_STATE(3636)] = 91635, + [SMALL_STATE(3637)] = 91693, + [SMALL_STATE(3638)] = 91759, + [SMALL_STATE(3639)] = 91819, + [SMALL_STATE(3640)] = 91895, + [SMALL_STATE(3641)] = 91997, + [SMALL_STATE(3642)] = 92075, + [SMALL_STATE(3643)] = 92147, + [SMALL_STATE(3644)] = 92207, + [SMALL_STATE(3645)] = 92313, + [SMALL_STATE(3646)] = 92419, + [SMALL_STATE(3647)] = 92491, + [SMALL_STATE(3648)] = 92549, + [SMALL_STATE(3649)] = 92609, + [SMALL_STATE(3650)] = 92667, + [SMALL_STATE(3651)] = 92725, + [SMALL_STATE(3652)] = 92783, + [SMALL_STATE(3653)] = 92841, + [SMALL_STATE(3654)] = 92947, + [SMALL_STATE(3655)] = 93005, + [SMALL_STATE(3656)] = 93063, + [SMALL_STATE(3657)] = 93121, + [SMALL_STATE(3658)] = 93179, + [SMALL_STATE(3659)] = 93237, + [SMALL_STATE(3660)] = 93339, + [SMALL_STATE(3661)] = 93397, + [SMALL_STATE(3662)] = 93461, + [SMALL_STATE(3663)] = 93519, + [SMALL_STATE(3664)] = 93583, + [SMALL_STATE(3665)] = 93641, + [SMALL_STATE(3666)] = 93699, + [SMALL_STATE(3667)] = 93757, + [SMALL_STATE(3668)] = 93827, + [SMALL_STATE(3669)] = 93891, + [SMALL_STATE(3670)] = 93949, + [SMALL_STATE(3671)] = 94013, + [SMALL_STATE(3672)] = 94071, + [SMALL_STATE(3673)] = 94135, + [SMALL_STATE(3674)] = 94199, + [SMALL_STATE(3675)] = 94263, + [SMALL_STATE(3676)] = 94321, + [SMALL_STATE(3677)] = 94385, + [SMALL_STATE(3678)] = 94449, + [SMALL_STATE(3679)] = 94513, + [SMALL_STATE(3680)] = 94571, + [SMALL_STATE(3681)] = 94635, + [SMALL_STATE(3682)] = 94699, + [SMALL_STATE(3683)] = 94757, + [SMALL_STATE(3684)] = 94815, + [SMALL_STATE(3685)] = 94873, + [SMALL_STATE(3686)] = 94931, + [SMALL_STATE(3687)] = 94989, + [SMALL_STATE(3688)] = 95047, + [SMALL_STATE(3689)] = 95105, + [SMALL_STATE(3690)] = 95163, + [SMALL_STATE(3691)] = 95221, + [SMALL_STATE(3692)] = 95279, + [SMALL_STATE(3693)] = 95337, + [SMALL_STATE(3694)] = 95395, + [SMALL_STATE(3695)] = 95453, + [SMALL_STATE(3696)] = 95511, + [SMALL_STATE(3697)] = 95569, + [SMALL_STATE(3698)] = 95631, + [SMALL_STATE(3699)] = 95691, + [SMALL_STATE(3700)] = 95749, + [SMALL_STATE(3701)] = 95811, + [SMALL_STATE(3702)] = 95873, + [SMALL_STATE(3703)] = 95945, + [SMALL_STATE(3704)] = 96003, + [SMALL_STATE(3705)] = 96061, + [SMALL_STATE(3706)] = 96119, + [SMALL_STATE(3707)] = 96193, + [SMALL_STATE(3708)] = 96265, + [SMALL_STATE(3709)] = 96323, + [SMALL_STATE(3710)] = 96381, + [SMALL_STATE(3711)] = 96487, + [SMALL_STATE(3712)] = 96545, + [SMALL_STATE(3713)] = 96607, + [SMALL_STATE(3714)] = 96665, + [SMALL_STATE(3715)] = 96723, + [SMALL_STATE(3716)] = 96781, + [SMALL_STATE(3717)] = 96847, + [SMALL_STATE(3718)] = 96949, + [SMALL_STATE(3719)] = 97007, + [SMALL_STATE(3720)] = 97077, + [SMALL_STATE(3721)] = 97135, + [SMALL_STATE(3722)] = 97193, + [SMALL_STATE(3723)] = 97251, + [SMALL_STATE(3724)] = 97309, + [SMALL_STATE(3725)] = 97379, + [SMALL_STATE(3726)] = 97437, + [SMALL_STATE(3727)] = 97495, + [SMALL_STATE(3728)] = 97553, + [SMALL_STATE(3729)] = 97615, + [SMALL_STATE(3730)] = 97673, + [SMALL_STATE(3731)] = 97731, + [SMALL_STATE(3732)] = 97789, + [SMALL_STATE(3733)] = 97863, + [SMALL_STATE(3734)] = 97921, + [SMALL_STATE(3735)] = 97979, + [SMALL_STATE(3736)] = 98037, + [SMALL_STATE(3737)] = 98095, + [SMALL_STATE(3738)] = 98197, + [SMALL_STATE(3739)] = 98255, + [SMALL_STATE(3740)] = 98318, + [SMALL_STATE(3741)] = 98421, + [SMALL_STATE(3742)] = 98524, + [SMALL_STATE(3743)] = 98581, + [SMALL_STATE(3744)] = 98684, + [SMALL_STATE(3745)] = 98741, + [SMALL_STATE(3746)] = 98810, + [SMALL_STATE(3747)] = 98867, + [SMALL_STATE(3748)] = 98936, + [SMALL_STATE(3749)] = 99039, + [SMALL_STATE(3750)] = 99142, + [SMALL_STATE(3751)] = 99245, + [SMALL_STATE(3752)] = 99302, + [SMALL_STATE(3753)] = 99363, + [SMALL_STATE(3754)] = 99466, + [SMALL_STATE(3755)] = 99523, + [SMALL_STATE(3756)] = 99626, + [SMALL_STATE(3757)] = 99697, + [SMALL_STATE(3758)] = 99800, + [SMALL_STATE(3759)] = 99857, + [SMALL_STATE(3760)] = 99928, + [SMALL_STATE(3761)] = 99985, + [SMALL_STATE(3762)] = 100088, + [SMALL_STATE(3763)] = 100191, + [SMALL_STATE(3764)] = 100294, + [SMALL_STATE(3765)] = 100397, + [SMALL_STATE(3766)] = 100500, + [SMALL_STATE(3767)] = 100603, + [SMALL_STATE(3768)] = 100706, + [SMALL_STATE(3769)] = 100809, + [SMALL_STATE(3770)] = 100912, + [SMALL_STATE(3771)] = 101015, + [SMALL_STATE(3772)] = 101118, + [SMALL_STATE(3773)] = 101221, + [SMALL_STATE(3774)] = 101324, + [SMALL_STATE(3775)] = 101427, + [SMALL_STATE(3776)] = 101486, + [SMALL_STATE(3777)] = 101589, + [SMALL_STATE(3778)] = 101654, + [SMALL_STATE(3779)] = 101757, + [SMALL_STATE(3780)] = 101820, + [SMALL_STATE(3781)] = 101923, + [SMALL_STATE(3782)] = 102026, + [SMALL_STATE(3783)] = 102129, + [SMALL_STATE(3784)] = 102232, + [SMALL_STATE(3785)] = 102335, + [SMALL_STATE(3786)] = 102438, + [SMALL_STATE(3787)] = 102541, + [SMALL_STATE(3788)] = 102644, + [SMALL_STATE(3789)] = 102705, + [SMALL_STATE(3790)] = 102808, + [SMALL_STATE(3791)] = 102867, + [SMALL_STATE(3792)] = 102970, + [SMALL_STATE(3793)] = 103027, + [SMALL_STATE(3794)] = 103084, + [SMALL_STATE(3795)] = 103187, + [SMALL_STATE(3796)] = 103250, + [SMALL_STATE(3797)] = 103353, + [SMALL_STATE(3798)] = 103456, + [SMALL_STATE(3799)] = 103559, + [SMALL_STATE(3800)] = 103662, + [SMALL_STATE(3801)] = 103765, + [SMALL_STATE(3802)] = 103822, + [SMALL_STATE(3803)] = 103925, + [SMALL_STATE(3804)] = 103986, + [SMALL_STATE(3805)] = 104043, + [SMALL_STATE(3806)] = 104146, + [SMALL_STATE(3807)] = 104241, + [SMALL_STATE(3808)] = 104312, + [SMALL_STATE(3809)] = 104407, + [SMALL_STATE(3810)] = 104510, + [SMALL_STATE(3811)] = 104567, + [SMALL_STATE(3812)] = 104670, + [SMALL_STATE(3813)] = 104733, + [SMALL_STATE(3814)] = 104836, + [SMALL_STATE(3815)] = 104939, + [SMALL_STATE(3816)] = 105042, + [SMALL_STATE(3817)] = 105145, + [SMALL_STATE(3818)] = 105248, + [SMALL_STATE(3819)] = 105351, + [SMALL_STATE(3820)] = 105454, + [SMALL_STATE(3821)] = 105557, + [SMALL_STATE(3822)] = 105660, + [SMALL_STATE(3823)] = 105763, + [SMALL_STATE(3824)] = 105866, + [SMALL_STATE(3825)] = 105969, + [SMALL_STATE(3826)] = 106072, + [SMALL_STATE(3827)] = 106175, + [SMALL_STATE(3828)] = 106278, + [SMALL_STATE(3829)] = 106381, + [SMALL_STATE(3830)] = 106484, + [SMALL_STATE(3831)] = 106587, + [SMALL_STATE(3832)] = 106644, + [SMALL_STATE(3833)] = 106715, + [SMALL_STATE(3834)] = 106818, + [SMALL_STATE(3835)] = 106875, + [SMALL_STATE(3836)] = 106978, + [SMALL_STATE(3837)] = 107081, + [SMALL_STATE(3838)] = 107184, + [SMALL_STATE(3839)] = 107287, + [SMALL_STATE(3840)] = 107390, + [SMALL_STATE(3841)] = 107493, + [SMALL_STATE(3842)] = 107596, + [SMALL_STATE(3843)] = 107699, + [SMALL_STATE(3844)] = 107802, + [SMALL_STATE(3845)] = 107859, + [SMALL_STATE(3846)] = 107962, + [SMALL_STATE(3847)] = 108018, + [SMALL_STATE(3848)] = 108074, + [SMALL_STATE(3849)] = 108140, + [SMALL_STATE(3850)] = 108196, + [SMALL_STATE(3851)] = 108252, + [SMALL_STATE(3852)] = 108322, + [SMALL_STATE(3853)] = 108378, + [SMALL_STATE(3854)] = 108450, + [SMALL_STATE(3855)] = 108506, + [SMALL_STATE(3856)] = 108562, + [SMALL_STATE(3857)] = 108618, + [SMALL_STATE(3858)] = 108674, + [SMALL_STATE(3859)] = 108730, + [SMALL_STATE(3860)] = 108786, + [SMALL_STATE(3861)] = 108886, + [SMALL_STATE(3862)] = 108942, + [SMALL_STATE(3863)] = 108998, + [SMALL_STATE(3864)] = 109054, + [SMALL_STATE(3865)] = 109126, + [SMALL_STATE(3866)] = 109182, + [SMALL_STATE(3867)] = 109238, + [SMALL_STATE(3868)] = 109338, + [SMALL_STATE(3869)] = 109408, + [SMALL_STATE(3870)] = 109464, + [SMALL_STATE(3871)] = 109534, + [SMALL_STATE(3872)] = 109590, + [SMALL_STATE(3873)] = 109662, + [SMALL_STATE(3874)] = 109718, + [SMALL_STATE(3875)] = 109774, + [SMALL_STATE(3876)] = 109832, + [SMALL_STATE(3877)] = 109932, + [SMALL_STATE(3878)] = 109988, + [SMALL_STATE(3879)] = 110044, + [SMALL_STATE(3880)] = 110100, + [SMALL_STATE(3881)] = 110156, + [SMALL_STATE(3882)] = 110256, + [SMALL_STATE(3883)] = 110356, + [SMALL_STATE(3884)] = 110412, + [SMALL_STATE(3885)] = 110506, + [SMALL_STATE(3886)] = 110600, + [SMALL_STATE(3887)] = 110656, + [SMALL_STATE(3888)] = 110712, + [SMALL_STATE(3889)] = 110768, + [SMALL_STATE(3890)] = 110868, + [SMALL_STATE(3891)] = 110924, + [SMALL_STATE(3892)] = 111024, + [SMALL_STATE(3893)] = 111080, + [SMALL_STATE(3894)] = 111136, + [SMALL_STATE(3895)] = 111192, + [SMALL_STATE(3896)] = 111264, + [SMALL_STATE(3897)] = 111364, + [SMALL_STATE(3898)] = 111464, + [SMALL_STATE(3899)] = 111520, + [SMALL_STATE(3900)] = 111576, + [SMALL_STATE(3901)] = 111676, + [SMALL_STATE(3902)] = 111776, + [SMALL_STATE(3903)] = 111868, + [SMALL_STATE(3904)] = 111924, + [SMALL_STATE(3905)] = 111980, + [SMALL_STATE(3906)] = 112080, + [SMALL_STATE(3907)] = 112136, + [SMALL_STATE(3908)] = 112192, + [SMALL_STATE(3909)] = 112292, + [SMALL_STATE(3910)] = 112348, + [SMALL_STATE(3911)] = 112404, + [SMALL_STATE(3912)] = 112460, + [SMALL_STATE(3913)] = 112516, + [SMALL_STATE(3914)] = 112572, + [SMALL_STATE(3915)] = 112636, + [SMALL_STATE(3916)] = 112692, + [SMALL_STATE(3917)] = 112748, + [SMALL_STATE(3918)] = 112804, + [SMALL_STATE(3919)] = 112860, + [SMALL_STATE(3920)] = 112916, + [SMALL_STATE(3921)] = 112972, + [SMALL_STATE(3922)] = 113028, + [SMALL_STATE(3923)] = 113084, + [SMALL_STATE(3924)] = 113184, + [SMALL_STATE(3925)] = 113240, + [SMALL_STATE(3926)] = 113296, + [SMALL_STATE(3927)] = 113352, + [SMALL_STATE(3928)] = 113408, + [SMALL_STATE(3929)] = 113508, + [SMALL_STATE(3930)] = 113564, + [SMALL_STATE(3931)] = 113620, + [SMALL_STATE(3932)] = 113720, + [SMALL_STATE(3933)] = 113776, + [SMALL_STATE(3934)] = 113832, + [SMALL_STATE(3935)] = 113888, + [SMALL_STATE(3936)] = 113944, + [SMALL_STATE(3937)] = 114000, + [SMALL_STATE(3938)] = 114056, + [SMALL_STATE(3939)] = 114116, + [SMALL_STATE(3940)] = 114172, + [SMALL_STATE(3941)] = 114264, + [SMALL_STATE(3942)] = 114320, + [SMALL_STATE(3943)] = 114376, + [SMALL_STATE(3944)] = 114432, + [SMALL_STATE(3945)] = 114488, + [SMALL_STATE(3946)] = 114544, + [SMALL_STATE(3947)] = 114608, + [SMALL_STATE(3948)] = 114664, + [SMALL_STATE(3949)] = 114720, + [SMALL_STATE(3950)] = 114776, + [SMALL_STATE(3951)] = 114832, + [SMALL_STATE(3952)] = 114888, + [SMALL_STATE(3953)] = 114944, + [SMALL_STATE(3954)] = 115000, + [SMALL_STATE(3955)] = 115100, + [SMALL_STATE(3956)] = 115200, + [SMALL_STATE(3957)] = 115256, + [SMALL_STATE(3958)] = 115312, + [SMALL_STATE(3959)] = 115368, + [SMALL_STATE(3960)] = 115424, + [SMALL_STATE(3961)] = 115524, + [SMALL_STATE(3962)] = 115580, + [SMALL_STATE(3963)] = 115644, + [SMALL_STATE(3964)] = 115744, + [SMALL_STATE(3965)] = 115800, + [SMALL_STATE(3966)] = 115856, + [SMALL_STATE(3967)] = 115912, + [SMALL_STATE(3968)] = 115968, + [SMALL_STATE(3969)] = 116024, + [SMALL_STATE(3970)] = 116124, + [SMALL_STATE(3971)] = 116180, + [SMALL_STATE(3972)] = 116236, + [SMALL_STATE(3973)] = 116300, + [SMALL_STATE(3974)] = 116393, + [SMALL_STATE(3975)] = 116486, + [SMALL_STATE(3976)] = 116579, + [SMALL_STATE(3977)] = 116650, + [SMALL_STATE(3978)] = 116743, + [SMALL_STATE(3979)] = 116814, + [SMALL_STATE(3980)] = 116905, + [SMALL_STATE(3981)] = 116998, + [SMALL_STATE(3982)] = 117091, + [SMALL_STATE(3983)] = 117184, + [SMALL_STATE(3984)] = 117275, + [SMALL_STATE(3985)] = 117330, + [SMALL_STATE(3986)] = 117423, + [SMALL_STATE(3987)] = 117482, + [SMALL_STATE(3988)] = 117541, + [SMALL_STATE(3989)] = 117612, + [SMALL_STATE(3990)] = 117705, + [SMALL_STATE(3991)] = 117764, + [SMALL_STATE(3992)] = 117857, + [SMALL_STATE(3993)] = 117950, + [SMALL_STATE(3994)] = 118009, + [SMALL_STATE(3995)] = 118102, + [SMALL_STATE(3996)] = 118211, + [SMALL_STATE(3997)] = 118304, + [SMALL_STATE(3998)] = 118397, + [SMALL_STATE(3999)] = 118458, + [SMALL_STATE(4000)] = 118551, + [SMALL_STATE(4001)] = 118610, + [SMALL_STATE(4002)] = 118703, + [SMALL_STATE(4003)] = 118758, + [SMALL_STATE(4004)] = 118829, + [SMALL_STATE(4005)] = 118884, + [SMALL_STATE(4006)] = 118977, + [SMALL_STATE(4007)] = 119036, + [SMALL_STATE(4008)] = 119095, + [SMALL_STATE(4009)] = 119188, + [SMALL_STATE(4010)] = 119247, + [SMALL_STATE(4011)] = 119318, + [SMALL_STATE(4012)] = 119377, + [SMALL_STATE(4013)] = 119470, + [SMALL_STATE(4014)] = 119563, + [SMALL_STATE(4015)] = 119656, + [SMALL_STATE(4016)] = 119749, + [SMALL_STATE(4017)] = 119804, + [SMALL_STATE(4018)] = 119913, + [SMALL_STATE(4019)] = 119972, + [SMALL_STATE(4020)] = 120031, + [SMALL_STATE(4021)] = 120124, + [SMALL_STATE(4022)] = 120195, + [SMALL_STATE(4023)] = 120288, + [SMALL_STATE(4024)] = 120347, + [SMALL_STATE(4025)] = 120418, + [SMALL_STATE(4026)] = 120511, + [SMALL_STATE(4027)] = 120604, + [SMALL_STATE(4028)] = 120697, + [SMALL_STATE(4029)] = 120785, + [SMALL_STATE(4030)] = 120873, + [SMALL_STATE(4031)] = 120927, + [SMALL_STATE(4032)] = 120987, + [SMALL_STATE(4033)] = 121047, + [SMALL_STATE(4034)] = 121135, + [SMALL_STATE(4035)] = 121225, + [SMALL_STATE(4036)] = 121317, + [SMALL_STATE(4037)] = 121371, + [SMALL_STATE(4038)] = 121425, + [SMALL_STATE(4039)] = 121479, + [SMALL_STATE(4040)] = 121571, + [SMALL_STATE(4041)] = 121659, + [SMALL_STATE(4042)] = 121727, + [SMALL_STATE(4043)] = 121781, + [SMALL_STATE(4044)] = 121841, + [SMALL_STATE(4045)] = 121901, + [SMALL_STATE(4046)] = 121955, + [SMALL_STATE(4047)] = 122045, + [SMALL_STATE(4048)] = 122099, + [SMALL_STATE(4049)] = 122153, + [SMALL_STATE(4050)] = 122241, + [SMALL_STATE(4051)] = 122301, + [SMALL_STATE(4052)] = 122393, + [SMALL_STATE(4053)] = 122457, + [SMALL_STATE(4054)] = 122549, + [SMALL_STATE(4055)] = 122637, + [SMALL_STATE(4056)] = 122701, + [SMALL_STATE(4057)] = 122791, + [SMALL_STATE(4058)] = 122851, + [SMALL_STATE(4059)] = 122941, + [SMALL_STATE(4060)] = 123030, + [SMALL_STATE(4061)] = 123119, + [SMALL_STATE(4062)] = 123208, + [SMALL_STATE(4063)] = 123297, + [SMALL_STATE(4064)] = 123362, + [SMALL_STATE(4065)] = 123451, + [SMALL_STATE(4066)] = 123540, + [SMALL_STATE(4067)] = 123629, + [SMALL_STATE(4068)] = 123718, + [SMALL_STATE(4069)] = 123807, + [SMALL_STATE(4070)] = 123860, + [SMALL_STATE(4071)] = 123949, + [SMALL_STATE(4072)] = 124038, + [SMALL_STATE(4073)] = 124127, + [SMALL_STATE(4074)] = 124216, + [SMALL_STATE(4075)] = 124269, + [SMALL_STATE(4076)] = 124358, + [SMALL_STATE(4077)] = 124447, + [SMALL_STATE(4078)] = 124510, + [SMALL_STATE(4079)] = 124573, + [SMALL_STATE(4080)] = 124656, + [SMALL_STATE(4081)] = 124745, + [SMALL_STATE(4082)] = 124834, + [SMALL_STATE(4083)] = 124923, + [SMALL_STATE(4084)] = 125012, + [SMALL_STATE(4085)] = 125079, + [SMALL_STATE(4086)] = 125178, + [SMALL_STATE(4087)] = 125245, + [SMALL_STATE(4088)] = 125334, + [SMALL_STATE(4089)] = 125423, + [SMALL_STATE(4090)] = 125482, + [SMALL_STATE(4091)] = 125571, + [SMALL_STATE(4092)] = 125660, + [SMALL_STATE(4093)] = 125749, + [SMALL_STATE(4094)] = 125838, + [SMALL_STATE(4095)] = 125921, + [SMALL_STATE(4096)] = 126010, + [SMALL_STATE(4097)] = 126099, + [SMALL_STATE(4098)] = 126188, + [SMALL_STATE(4099)] = 126247, + [SMALL_STATE(4100)] = 126334, + [SMALL_STATE(4101)] = 126423, + [SMALL_STATE(4102)] = 126510, + [SMALL_STATE(4103)] = 126565, + [SMALL_STATE(4104)] = 126654, + [SMALL_STATE(4105)] = 126743, + [SMALL_STATE(4106)] = 126832, + [SMALL_STATE(4107)] = 126891, + [SMALL_STATE(4108)] = 126944, + [SMALL_STATE(4109)] = 126996, + [SMALL_STATE(4110)] = 127048, + [SMALL_STATE(4111)] = 127100, + [SMALL_STATE(4112)] = 127168, + [SMALL_STATE(4113)] = 127220, + [SMALL_STATE(4114)] = 127278, + [SMALL_STATE(4115)] = 127330, + [SMALL_STATE(4116)] = 127394, + [SMALL_STATE(4117)] = 127462, + [SMALL_STATE(4118)] = 127526, + [SMALL_STATE(4119)] = 127578, + [SMALL_STATE(4120)] = 127666, + [SMALL_STATE(4121)] = 127754, + [SMALL_STATE(4122)] = 127806, + [SMALL_STATE(4123)] = 127874, + [SMALL_STATE(4124)] = 127926, + [SMALL_STATE(4125)] = 127978, + [SMALL_STATE(4126)] = 128030, + [SMALL_STATE(4127)] = 128082, + [SMALL_STATE(4128)] = 128134, + [SMALL_STATE(4129)] = 128186, + [SMALL_STATE(4130)] = 128238, + [SMALL_STATE(4131)] = 128290, + [SMALL_STATE(4132)] = 128342, + [SMALL_STATE(4133)] = 128410, + [SMALL_STATE(4134)] = 128462, + [SMALL_STATE(4135)] = 128530, + [SMALL_STATE(4136)] = 128582, + [SMALL_STATE(4137)] = 128634, + [SMALL_STATE(4138)] = 128686, + [SMALL_STATE(4139)] = 128738, + [SMALL_STATE(4140)] = 128790, + [SMALL_STATE(4141)] = 128856, + [SMALL_STATE(4142)] = 128908, + [SMALL_STATE(4143)] = 128960, + [SMALL_STATE(4144)] = 129012, + [SMALL_STATE(4145)] = 129064, + [SMALL_STATE(4146)] = 129116, + [SMALL_STATE(4147)] = 129168, + [SMALL_STATE(4148)] = 129220, + [SMALL_STATE(4149)] = 129272, + [SMALL_STATE(4150)] = 129324, + [SMALL_STATE(4151)] = 129392, + [SMALL_STATE(4152)] = 129444, + [SMALL_STATE(4153)] = 129496, + [SMALL_STATE(4154)] = 129548, + [SMALL_STATE(4155)] = 129634, + [SMALL_STATE(4156)] = 129686, + [SMALL_STATE(4157)] = 129738, + [SMALL_STATE(4158)] = 129790, + [SMALL_STATE(4159)] = 129876, + [SMALL_STATE(4160)] = 129928, + [SMALL_STATE(4161)] = 129984, + [SMALL_STATE(4162)] = 130067, + [SMALL_STATE(4163)] = 130150, + [SMALL_STATE(4164)] = 130211, + [SMALL_STATE(4165)] = 130296, + [SMALL_STATE(4166)] = 130347, + [SMALL_STATE(4167)] = 130414, + [SMALL_STATE(4168)] = 130493, + [SMALL_STATE(4169)] = 130592, + [SMALL_STATE(4170)] = 130695, + [SMALL_STATE(4171)] = 130762, + [SMALL_STATE(4172)] = 130813, + [SMALL_STATE(4173)] = 130892, + [SMALL_STATE(4174)] = 130977, + [SMALL_STATE(4175)] = 131056, + [SMALL_STATE(4176)] = 131143, + [SMALL_STATE(4177)] = 131230, + [SMALL_STATE(4178)] = 131303, + [SMALL_STATE(4179)] = 131388, + [SMALL_STATE(4180)] = 131473, + [SMALL_STATE(4181)] = 131540, + [SMALL_STATE(4182)] = 131619, + [SMALL_STATE(4183)] = 131718, + [SMALL_STATE(4184)] = 131793, + [SMALL_STATE(4185)] = 131892, + [SMALL_STATE(4186)] = 131979, + [SMALL_STATE(4187)] = 132046, + [SMALL_STATE(4188)] = 132125, + [SMALL_STATE(4189)] = 132224, + [SMALL_STATE(4190)] = 132309, + [SMALL_STATE(4191)] = 132388, + [SMALL_STATE(4192)] = 132445, + [SMALL_STATE(4193)] = 132530, + [SMALL_STATE(4194)] = 132601, + [SMALL_STATE(4195)] = 132670, + [SMALL_STATE(4196)] = 132749, + [SMALL_STATE(4197)] = 132828, + [SMALL_STATE(4198)] = 132907, + [SMALL_STATE(4199)] = 132992, + [SMALL_STATE(4200)] = 133049, + [SMALL_STATE(4201)] = 133144, + [SMALL_STATE(4202)] = 133195, + [SMALL_STATE(4203)] = 133298, + [SMALL_STATE(4204)] = 133397, + [SMALL_STATE(4205)] = 133500, + [SMALL_STATE(4206)] = 133559, + [SMALL_STATE(4207)] = 133638, + [SMALL_STATE(4208)] = 133731, + [SMALL_STATE(4209)] = 133818, + [SMALL_STATE(4210)] = 133897, + [SMALL_STATE(4211)] = 133988, + [SMALL_STATE(4212)] = 134075, + [SMALL_STATE(4213)] = 134160, + [SMALL_STATE(4214)] = 134245, + [SMALL_STATE(4215)] = 134324, + [SMALL_STATE(4216)] = 134383, + [SMALL_STATE(4217)] = 134472, + [SMALL_STATE(4218)] = 134529, + [SMALL_STATE(4219)] = 134612, + [SMALL_STATE(4220)] = 134697, + [SMALL_STATE(4221)] = 134754, + [SMALL_STATE(4222)] = 134833, + [SMALL_STATE(4223)] = 134936, + [SMALL_STATE(4224)] = 135021, + [SMALL_STATE(4225)] = 135108, + [SMALL_STATE(4226)] = 135190, + [SMALL_STATE(4227)] = 135250, + [SMALL_STATE(4228)] = 135332, + [SMALL_STATE(4229)] = 135382, + [SMALL_STATE(4230)] = 135468, + [SMALL_STATE(4231)] = 135574, + [SMALL_STATE(4232)] = 135638, + [SMALL_STATE(4233)] = 135724, + [SMALL_STATE(4234)] = 135788, + [SMALL_STATE(4235)] = 135854, + [SMALL_STATE(4236)] = 135960, + [SMALL_STATE(4237)] = 136014, + [SMALL_STATE(4238)] = 136068, + [SMALL_STATE(4239)] = 136142, + [SMALL_STATE(4240)] = 136196, + [SMALL_STATE(4241)] = 136270, + [SMALL_STATE(4242)] = 136324, + [SMALL_STATE(4243)] = 136390, + [SMALL_STATE(4244)] = 136442, + [SMALL_STATE(4245)] = 136496, + [SMALL_STATE(4246)] = 136550, + [SMALL_STATE(4247)] = 136628, + [SMALL_STATE(4248)] = 136682, + [SMALL_STATE(4249)] = 136736, + [SMALL_STATE(4250)] = 136796, + [SMALL_STATE(4251)] = 136850, + [SMALL_STATE(4252)] = 136900, + [SMALL_STATE(4253)] = 136952, + [SMALL_STATE(4254)] = 137006, + [SMALL_STATE(4255)] = 137056, + [SMALL_STATE(4256)] = 137110, + [SMALL_STATE(4257)] = 137188, + [SMALL_STATE(4258)] = 137242, + [SMALL_STATE(4259)] = 137294, + [SMALL_STATE(4260)] = 137348, + [SMALL_STATE(4261)] = 137426, + [SMALL_STATE(4262)] = 137504, + [SMALL_STATE(4263)] = 137554, + [SMALL_STATE(4264)] = 137628, + [SMALL_STATE(4265)] = 137682, + [SMALL_STATE(4266)] = 137742, + [SMALL_STATE(4267)] = 137848, + [SMALL_STATE(4268)] = 137898, + [SMALL_STATE(4269)] = 137958, + [SMALL_STATE(4270)] = 138010, + [SMALL_STATE(4271)] = 138077, + [SMALL_STATE(4272)] = 138160, + [SMALL_STATE(4273)] = 138243, + [SMALL_STATE(4274)] = 138326, + [SMALL_STATE(4275)] = 138375, + [SMALL_STATE(4276)] = 138440, + [SMALL_STATE(4277)] = 138489, + [SMALL_STATE(4278)] = 138574, + [SMALL_STATE(4279)] = 138659, + [SMALL_STATE(4280)] = 138712, + [SMALL_STATE(4281)] = 138761, + [SMALL_STATE(4282)] = 138810, + [SMALL_STATE(4283)] = 138863, + [SMALL_STATE(4284)] = 138954, + [SMALL_STATE(4285)] = 139003, + [SMALL_STATE(4286)] = 139052, + [SMALL_STATE(4287)] = 139101, + [SMALL_STATE(4288)] = 139150, + [SMALL_STATE(4289)] = 139207, + [SMALL_STATE(4290)] = 139284, + [SMALL_STATE(4291)] = 139339, + [SMALL_STATE(4292)] = 139416, + [SMALL_STATE(4293)] = 139493, + [SMALL_STATE(4294)] = 139574, + [SMALL_STATE(4295)] = 139625, + [SMALL_STATE(4296)] = 139674, + [SMALL_STATE(4297)] = 139723, + [SMALL_STATE(4298)] = 139776, + [SMALL_STATE(4299)] = 139857, + [SMALL_STATE(4300)] = 139906, + [SMALL_STATE(4301)] = 139955, + [SMALL_STATE(4302)] = 140004, + [SMALL_STATE(4303)] = 140053, + [SMALL_STATE(4304)] = 140102, + [SMALL_STATE(4305)] = 140193, + [SMALL_STATE(4306)] = 140248, + [SMALL_STATE(4307)] = 140303, + [SMALL_STATE(4308)] = 140384, + [SMALL_STATE(4309)] = 140433, + [SMALL_STATE(4310)] = 140488, + [SMALL_STATE(4311)] = 140569, + [SMALL_STATE(4312)] = 140618, + [SMALL_STATE(4313)] = 140667, + [SMALL_STATE(4314)] = 140732, + [SMALL_STATE(4315)] = 140815, + [SMALL_STATE(4316)] = 140892, + [SMALL_STATE(4317)] = 140980, + [SMALL_STATE(4318)] = 141070, + [SMALL_STATE(4319)] = 141132, + [SMALL_STATE(4320)] = 141224, + [SMALL_STATE(4321)] = 141318, + [SMALL_STATE(4322)] = 141366, + [SMALL_STATE(4323)] = 141424, + [SMALL_STATE(4324)] = 141514, + [SMALL_STATE(4325)] = 141606, + [SMALL_STATE(4326)] = 141654, + [SMALL_STATE(4327)] = 141748, + [SMALL_STATE(4328)] = 141824, + [SMALL_STATE(4329)] = 141900, + [SMALL_STATE(4330)] = 141976, + [SMALL_STATE(4331)] = 142052, + [SMALL_STATE(4332)] = 142120, + [SMALL_STATE(4333)] = 142178, + [SMALL_STATE(4334)] = 142274, + [SMALL_STATE(4335)] = 142374, + [SMALL_STATE(4336)] = 142422, + [SMALL_STATE(4337)] = 142488, + [SMALL_STATE(4338)] = 142558, + [SMALL_STATE(4339)] = 142624, + [SMALL_STATE(4340)] = 142698, + [SMALL_STATE(4341)] = 142788, + [SMALL_STATE(4342)] = 142876, + [SMALL_STATE(4343)] = 142938, + [SMALL_STATE(4344)] = 143022, + [SMALL_STATE(4345)] = 143114, + [SMALL_STATE(4346)] = 143204, + [SMALL_STATE(4347)] = 143286, + [SMALL_STATE(4348)] = 143364, + [SMALL_STATE(4349)] = 143440, + [SMALL_STATE(4350)] = 143512, + [SMALL_STATE(4351)] = 143580, + [SMALL_STATE(4352)] = 143650, + [SMALL_STATE(4353)] = 143734, + [SMALL_STATE(4354)] = 143808, + [SMALL_STATE(4355)] = 143892, + [SMALL_STATE(4356)] = 143974, + [SMALL_STATE(4357)] = 144048, + [SMALL_STATE(4358)] = 144140, + [SMALL_STATE(4359)] = 144218, + [SMALL_STATE(4360)] = 144314, + [SMALL_STATE(4361)] = 144388, + [SMALL_STATE(4362)] = 144464, + [SMALL_STATE(4363)] = 144556, + [SMALL_STATE(4364)] = 144628, + [SMALL_STATE(4365)] = 144718, + [SMALL_STATE(4366)] = 144814, + [SMALL_STATE(4367)] = 144910, + [SMALL_STATE(4368)] = 144958, + [SMALL_STATE(4369)] = 145038, + [SMALL_STATE(4370)] = 145086, + [SMALL_STATE(4371)] = 145144, + [SMALL_STATE(4372)] = 145224, + [SMALL_STATE(4373)] = 145282, + [SMALL_STATE(4374)] = 145376, + [SMALL_STATE(4375)] = 145472, + [SMALL_STATE(4376)] = 145552, + [SMALL_STATE(4377)] = 145636, + [SMALL_STATE(4378)] = 145726, + [SMALL_STATE(4379)] = 145806, + [SMALL_STATE(4380)] = 145892, + [SMALL_STATE(4381)] = 145949, + [SMALL_STATE(4382)] = 146000, + [SMALL_STATE(4383)] = 146097, + [SMALL_STATE(4384)] = 146148, + [SMALL_STATE(4385)] = 146201, + [SMALL_STATE(4386)] = 146274, + [SMALL_STATE(4387)] = 146371, + [SMALL_STATE(4388)] = 146420, + [SMALL_STATE(4389)] = 146471, + [SMALL_STATE(4390)] = 146568, + [SMALL_STATE(4391)] = 146665, + [SMALL_STATE(4392)] = 146762, + [SMALL_STATE(4393)] = 146859, + [SMALL_STATE(4394)] = 146956, + [SMALL_STATE(4395)] = 147053, + [SMALL_STATE(4396)] = 147104, + [SMALL_STATE(4397)] = 147201, + [SMALL_STATE(4398)] = 147298, + [SMALL_STATE(4399)] = 147395, + [SMALL_STATE(4400)] = 147446, + [SMALL_STATE(4401)] = 147543, + [SMALL_STATE(4402)] = 147640, + [SMALL_STATE(4403)] = 147737, + [SMALL_STATE(4404)] = 147786, + [SMALL_STATE(4405)] = 147883, + [SMALL_STATE(4406)] = 147934, + [SMALL_STATE(4407)] = 147985, + [SMALL_STATE(4408)] = 148082, + [SMALL_STATE(4409)] = 148133, + [SMALL_STATE(4410)] = 148184, + [SMALL_STATE(4411)] = 148281, + [SMALL_STATE(4412)] = 148332, + [SMALL_STATE(4413)] = 148383, + [SMALL_STATE(4414)] = 148480, + [SMALL_STATE(4415)] = 148527, + [SMALL_STATE(4416)] = 148624, + [SMALL_STATE(4417)] = 148675, + [SMALL_STATE(4418)] = 148726, + [SMALL_STATE(4419)] = 148823, + [SMALL_STATE(4420)] = 148896, + [SMALL_STATE(4421)] = 148945, + [SMALL_STATE(4422)] = 148998, + [SMALL_STATE(4423)] = 149077, + [SMALL_STATE(4424)] = 149156, + [SMALL_STATE(4425)] = 149253, + [SMALL_STATE(4426)] = 149306, + [SMALL_STATE(4427)] = 149359, + [SMALL_STATE(4428)] = 149416, + [SMALL_STATE(4429)] = 149473, + [SMALL_STATE(4430)] = 149570, + [SMALL_STATE(4431)] = 149665, + [SMALL_STATE(4432)] = 149762, + [SMALL_STATE(4433)] = 149859, + [SMALL_STATE(4434)] = 149956, + [SMALL_STATE(4435)] = 150053, + [SMALL_STATE(4436)] = 150126, + [SMALL_STATE(4437)] = 150179, + [SMALL_STATE(4438)] = 150276, + [SMALL_STATE(4439)] = 150323, + [SMALL_STATE(4440)] = 150370, + [SMALL_STATE(4441)] = 150417, + [SMALL_STATE(4442)] = 150514, + [SMALL_STATE(4443)] = 150561, + [SMALL_STATE(4444)] = 150608, + [SMALL_STATE(4445)] = 150655, + [SMALL_STATE(4446)] = 150702, + [SMALL_STATE(4447)] = 150755, + [SMALL_STATE(4448)] = 150828, + [SMALL_STATE(4449)] = 150925, + [SMALL_STATE(4450)] = 150990, + [SMALL_STATE(4451)] = 151087, + [SMALL_STATE(4452)] = 151134, + [SMALL_STATE(4453)] = 151231, + [SMALL_STATE(4454)] = 151328, + [SMALL_STATE(4455)] = 151425, + [SMALL_STATE(4456)] = 151474, + [SMALL_STATE(4457)] = 151521, + [SMALL_STATE(4458)] = 151618, + [SMALL_STATE(4459)] = 151715, + [SMALL_STATE(4460)] = 151812, + [SMALL_STATE(4461)] = 151909, + [SMALL_STATE(4462)] = 151958, + [SMALL_STATE(4463)] = 152055, + [SMALL_STATE(4464)] = 152150, + [SMALL_STATE(4465)] = 152247, + [SMALL_STATE(4466)] = 152344, + [SMALL_STATE(4467)] = 152441, + [SMALL_STATE(4468)] = 152538, + [SMALL_STATE(4469)] = 152612, + [SMALL_STATE(4470)] = 152664, + [SMALL_STATE(4471)] = 152756, + [SMALL_STATE(4472)] = 152850, + [SMALL_STATE(4473)] = 152942, + [SMALL_STATE(4474)] = 153018, + [SMALL_STATE(4475)] = 153110, + [SMALL_STATE(4476)] = 153182, + [SMALL_STATE(4477)] = 153242, + [SMALL_STATE(4478)] = 153334, + [SMALL_STATE(4479)] = 153406, + [SMALL_STATE(4480)] = 153452, + [SMALL_STATE(4481)] = 153546, + [SMALL_STATE(4482)] = 153640, + [SMALL_STATE(4483)] = 153732, + [SMALL_STATE(4484)] = 153824, + [SMALL_STATE(4485)] = 153918, + [SMALL_STATE(4486)] = 154010, + [SMALL_STATE(4487)] = 154076, + [SMALL_STATE(4488)] = 154168, + [SMALL_STATE(4489)] = 154262, + [SMALL_STATE(4490)] = 154356, + [SMALL_STATE(4491)] = 154426, + [SMALL_STATE(4492)] = 154520, + [SMALL_STATE(4493)] = 154592, + [SMALL_STATE(4494)] = 154684, + [SMALL_STATE(4495)] = 154762, + [SMALL_STATE(4496)] = 154834, + [SMALL_STATE(4497)] = 154926, + [SMALL_STATE(4498)] = 154978, + [SMALL_STATE(4499)] = 155070, + [SMALL_STATE(4500)] = 155164, + [SMALL_STATE(4501)] = 155258, + [SMALL_STATE(4502)] = 155352, + [SMALL_STATE(4503)] = 155424, + [SMALL_STATE(4504)] = 155502, + [SMALL_STATE(4505)] = 155554, + [SMALL_STATE(4506)] = 155614, + [SMALL_STATE(4507)] = 155672, + [SMALL_STATE(4508)] = 155764, + [SMALL_STATE(4509)] = 155856, + [SMALL_STATE(4510)] = 155950, + [SMALL_STATE(4511)] = 156038, + [SMALL_STATE(4512)] = 156130, + [SMALL_STATE(4513)] = 156222, + [SMALL_STATE(4514)] = 156296, + [SMALL_STATE(4515)] = 156384, + [SMALL_STATE(4516)] = 156458, + [SMALL_STATE(4517)] = 156510, + [SMALL_STATE(4518)] = 156604, + [SMALL_STATE(4519)] = 156692, + [SMALL_STATE(4520)] = 156744, + [SMALL_STATE(4521)] = 156792, + [SMALL_STATE(4522)] = 156886, + [SMALL_STATE(4523)] = 156974, + [SMALL_STATE(4524)] = 157068, + [SMALL_STATE(4525)] = 157128, + [SMALL_STATE(4526)] = 157222, + [SMALL_STATE(4527)] = 157282, + [SMALL_STATE(4528)] = 157374, + [SMALL_STATE(4529)] = 157452, + [SMALL_STATE(4530)] = 157504, + [SMALL_STATE(4531)] = 157596, + [SMALL_STATE(4532)] = 157690, + [SMALL_STATE(4533)] = 157764, + [SMALL_STATE(4534)] = 157852, + [SMALL_STATE(4535)] = 157946, + [SMALL_STATE(4536)] = 158008, + [SMALL_STATE(4537)] = 158102, + [SMALL_STATE(4538)] = 158196, + [SMALL_STATE(4539)] = 158288, + [SMALL_STATE(4540)] = 158376, + [SMALL_STATE(4541)] = 158468, + [SMALL_STATE(4542)] = 158560, + [SMALL_STATE(4543)] = 158654, + [SMALL_STATE(4544)] = 158706, + [SMALL_STATE(4545)] = 158758, + [SMALL_STATE(4546)] = 158850, + [SMALL_STATE(4547)] = 158922, + [SMALL_STATE(4548)] = 158974, + [SMALL_STATE(4549)] = 159038, + [SMALL_STATE(4550)] = 159132, + [SMALL_STATE(4551)] = 159218, + [SMALL_STATE(4552)] = 159302, + [SMALL_STATE(4553)] = 159396, + [SMALL_STATE(4554)] = 159454, + [SMALL_STATE(4555)] = 159548, + [SMALL_STATE(4556)] = 159630, + [SMALL_STATE(4557)] = 159724, + [SMALL_STATE(4558)] = 159796, + [SMALL_STATE(4559)] = 159884, + [SMALL_STATE(4560)] = 159976, + [SMALL_STATE(4561)] = 160028, + [SMALL_STATE(4562)] = 160114, + [SMALL_STATE(4563)] = 160198, + [SMALL_STATE(4564)] = 160280, + [SMALL_STATE(4565)] = 160360, + [SMALL_STATE(4566)] = 160436, + [SMALL_STATE(4567)] = 160510, + [SMALL_STATE(4568)] = 160580, + [SMALL_STATE(4569)] = 160646, + [SMALL_STATE(4570)] = 160714, + [SMALL_STATE(4571)] = 160786, + [SMALL_STATE(4572)] = 160874, + [SMALL_STATE(4573)] = 160966, + [SMALL_STATE(4574)] = 161054, + [SMALL_STATE(4575)] = 161146, + [SMALL_STATE(4576)] = 161226, + [SMALL_STATE(4577)] = 161314, + [SMALL_STATE(4578)] = 161402, + [SMALL_STATE(4579)] = 161496, + [SMALL_STATE(4580)] = 161568, + [SMALL_STATE(4581)] = 161620, + [SMALL_STATE(4582)] = 161712, + [SMALL_STATE(4583)] = 161788, + [SMALL_STATE(4584)] = 161880, + [SMALL_STATE(4585)] = 161974, + [SMALL_STATE(4586)] = 162068, + [SMALL_STATE(4587)] = 162142, + [SMALL_STATE(4588)] = 162212, + [SMALL_STATE(4589)] = 162278, + [SMALL_STATE(4590)] = 162372, + [SMALL_STATE(4591)] = 162440, + [SMALL_STATE(4592)] = 162492, + [SMALL_STATE(4593)] = 162586, + [SMALL_STATE(4594)] = 162680, + [SMALL_STATE(4595)] = 162738, + [SMALL_STATE(4596)] = 162798, + [SMALL_STATE(4597)] = 162858, + [SMALL_STATE(4598)] = 162952, + [SMALL_STATE(4599)] = 163012, + [SMALL_STATE(4600)] = 163070, + [SMALL_STATE(4601)] = 163122, + [SMALL_STATE(4602)] = 163210, + [SMALL_STATE(4603)] = 163304, + [SMALL_STATE(4604)] = 163398, + [SMALL_STATE(4605)] = 163492, + [SMALL_STATE(4606)] = 163544, + [SMALL_STATE(4607)] = 163632, + [SMALL_STATE(4608)] = 163684, + [SMALL_STATE(4609)] = 163748, + [SMALL_STATE(4610)] = 163822, + [SMALL_STATE(4611)] = 163910, + [SMALL_STATE(4612)] = 164002, + [SMALL_STATE(4613)] = 164062, + [SMALL_STATE(4614)] = 164156, + [SMALL_STATE(4615)] = 164234, + [SMALL_STATE(4616)] = 164320, + [SMALL_STATE(4617)] = 164414, + [SMALL_STATE(4618)] = 164508, + [SMALL_STATE(4619)] = 164582, + [SMALL_STATE(4620)] = 164656, + [SMALL_STATE(4621)] = 164730, + [SMALL_STATE(4622)] = 164814, + [SMALL_STATE(4623)] = 164908, + [SMALL_STATE(4624)] = 165002, + [SMALL_STATE(4625)] = 165090, + [SMALL_STATE(4626)] = 165184, + [SMALL_STATE(4627)] = 165244, + [SMALL_STATE(4628)] = 165330, + [SMALL_STATE(4629)] = 165412, + [SMALL_STATE(4630)] = 165506, + [SMALL_STATE(4631)] = 165600, + [SMALL_STATE(4632)] = 165656, + [SMALL_STATE(4633)] = 165750, + [SMALL_STATE(4634)] = 165802, + [SMALL_STATE(4635)] = 165894, + [SMALL_STATE(4636)] = 165946, + [SMALL_STATE(4637)] = 166020, + [SMALL_STATE(4638)] = 166100, + [SMALL_STATE(4639)] = 166160, + [SMALL_STATE(4640)] = 166210, + [SMALL_STATE(4641)] = 166274, + [SMALL_STATE(4642)] = 166365, + [SMALL_STATE(4643)] = 166448, + [SMALL_STATE(4644)] = 166521, + [SMALL_STATE(4645)] = 166612, + [SMALL_STATE(4646)] = 166693, + [SMALL_STATE(4647)] = 166774, + [SMALL_STATE(4648)] = 166865, + [SMALL_STATE(4649)] = 166956, + [SMALL_STATE(4650)] = 167037, + [SMALL_STATE(4651)] = 167082, + [SMALL_STATE(4652)] = 167173, + [SMALL_STATE(4653)] = 167264, + [SMALL_STATE(4654)] = 167355, + [SMALL_STATE(4655)] = 167446, + [SMALL_STATE(4656)] = 167537, + [SMALL_STATE(4657)] = 167628, + [SMALL_STATE(4658)] = 167701, + [SMALL_STATE(4659)] = 167792, + [SMALL_STATE(4660)] = 167883, + [SMALL_STATE(4661)] = 167974, + [SMALL_STATE(4662)] = 168065, + [SMALL_STATE(4663)] = 168156, + [SMALL_STATE(4664)] = 168247, + [SMALL_STATE(4665)] = 168292, + [SMALL_STATE(4666)] = 168337, + [SMALL_STATE(4667)] = 168428, + [SMALL_STATE(4668)] = 168519, + [SMALL_STATE(4669)] = 168596, + [SMALL_STATE(4670)] = 168687, + [SMALL_STATE(4671)] = 168732, + [SMALL_STATE(4672)] = 168823, + [SMALL_STATE(4673)] = 168868, + [SMALL_STATE(4674)] = 168959, + [SMALL_STATE(4675)] = 169050, + [SMALL_STATE(4676)] = 169123, + [SMALL_STATE(4677)] = 169214, + [SMALL_STATE(4678)] = 169305, + [SMALL_STATE(4679)] = 169350, + [SMALL_STATE(4680)] = 169423, + [SMALL_STATE(4681)] = 169514, + [SMALL_STATE(4682)] = 169605, + [SMALL_STATE(4683)] = 169696, + [SMALL_STATE(4684)] = 169787, + [SMALL_STATE(4685)] = 169878, + [SMALL_STATE(4686)] = 169969, + [SMALL_STATE(4687)] = 170060, + [SMALL_STATE(4688)] = 170151, + [SMALL_STATE(4689)] = 170238, + [SMALL_STATE(4690)] = 170329, + [SMALL_STATE(4691)] = 170374, + [SMALL_STATE(4692)] = 170465, + [SMALL_STATE(4693)] = 170556, + [SMALL_STATE(4694)] = 170627, + [SMALL_STATE(4695)] = 170698, + [SMALL_STATE(4696)] = 170771, + [SMALL_STATE(4697)] = 170842, + [SMALL_STATE(4698)] = 170913, + [SMALL_STATE(4699)] = 170994, + [SMALL_STATE(4700)] = 171085, + [SMALL_STATE(4701)] = 171130, + [SMALL_STATE(4702)] = 171221, + [SMALL_STATE(4703)] = 171302, + [SMALL_STATE(4704)] = 171393, + [SMALL_STATE(4705)] = 171484, + [SMALL_STATE(4706)] = 171565, + [SMALL_STATE(4707)] = 171638, + [SMALL_STATE(4708)] = 171729, + [SMALL_STATE(4709)] = 171774, + [SMALL_STATE(4710)] = 171819, + [SMALL_STATE(4711)] = 171900, + [SMALL_STATE(4712)] = 171991, + [SMALL_STATE(4713)] = 172036, + [SMALL_STATE(4714)] = 172127, + [SMALL_STATE(4715)] = 172218, + [SMALL_STATE(4716)] = 172309, + [SMALL_STATE(4717)] = 172400, + [SMALL_STATE(4718)] = 172445, + [SMALL_STATE(4719)] = 172516, + [SMALL_STATE(4720)] = 172561, + [SMALL_STATE(4721)] = 172606, + [SMALL_STATE(4722)] = 172651, + [SMALL_STATE(4723)] = 172696, + [SMALL_STATE(4724)] = 172787, + [SMALL_STATE(4725)] = 172878, + [SMALL_STATE(4726)] = 172951, + [SMALL_STATE(4727)] = 173042, + [SMALL_STATE(4728)] = 173089, + [SMALL_STATE(4729)] = 173180, + [SMALL_STATE(4730)] = 173271, + [SMALL_STATE(4731)] = 173316, + [SMALL_STATE(4732)] = 173361, + [SMALL_STATE(4733)] = 173432, + [SMALL_STATE(4734)] = 173477, + [SMALL_STATE(4735)] = 173558, + [SMALL_STATE(4736)] = 173629, + [SMALL_STATE(4737)] = 173720, + [SMALL_STATE(4738)] = 173765, + [SMALL_STATE(4739)] = 173836, + [SMALL_STATE(4740)] = 173881, + [SMALL_STATE(4741)] = 173972, + [SMALL_STATE(4742)] = 174063, + [SMALL_STATE(4743)] = 174108, + [SMALL_STATE(4744)] = 174195, + [SMALL_STATE(4745)] = 174286, + [SMALL_STATE(4746)] = 174377, + [SMALL_STATE(4747)] = 174468, + [SMALL_STATE(4748)] = 174513, + [SMALL_STATE(4749)] = 174586, + [SMALL_STATE(4750)] = 174659, + [SMALL_STATE(4751)] = 174750, + [SMALL_STATE(4752)] = 174841, + [SMALL_STATE(4753)] = 174932, + [SMALL_STATE(4754)] = 175005, + [SMALL_STATE(4755)] = 175096, + [SMALL_STATE(4756)] = 175187, + [SMALL_STATE(4757)] = 175260, + [SMALL_STATE(4758)] = 175305, + [SMALL_STATE(4759)] = 175350, + [SMALL_STATE(4760)] = 175431, + [SMALL_STATE(4761)] = 175522, + [SMALL_STATE(4762)] = 175613, + [SMALL_STATE(4763)] = 175704, + [SMALL_STATE(4764)] = 175749, + [SMALL_STATE(4765)] = 175840, + [SMALL_STATE(4766)] = 175885, + [SMALL_STATE(4767)] = 175976, + [SMALL_STATE(4768)] = 176053, + [SMALL_STATE(4769)] = 176126, + [SMALL_STATE(4770)] = 176217, + [SMALL_STATE(4771)] = 176308, + [SMALL_STATE(4772)] = 176353, + [SMALL_STATE(4773)] = 176444, + [SMALL_STATE(4774)] = 176489, + [SMALL_STATE(4775)] = 176570, + [SMALL_STATE(4776)] = 176661, + [SMALL_STATE(4777)] = 176742, + [SMALL_STATE(4778)] = 176833, + [SMALL_STATE(4779)] = 176906, + [SMALL_STATE(4780)] = 176997, + [SMALL_STATE(4781)] = 177042, + [SMALL_STATE(4782)] = 177087, + [SMALL_STATE(4783)] = 177138, + [SMALL_STATE(4784)] = 177211, + [SMALL_STATE(4785)] = 177302, + [SMALL_STATE(4786)] = 177347, + [SMALL_STATE(4787)] = 177438, + [SMALL_STATE(4788)] = 177483, + [SMALL_STATE(4789)] = 177574, + [SMALL_STATE(4790)] = 177665, + [SMALL_STATE(4791)] = 177710, + [SMALL_STATE(4792)] = 177801, + [SMALL_STATE(4793)] = 177892, + [SMALL_STATE(4794)] = 177937, + [SMALL_STATE(4795)] = 178010, + [SMALL_STATE(4796)] = 178101, + [SMALL_STATE(4797)] = 178192, + [SMALL_STATE(4798)] = 178237, + [SMALL_STATE(4799)] = 178318, + [SMALL_STATE(4800)] = 178369, + [SMALL_STATE(4801)] = 178442, + [SMALL_STATE(4802)] = 178533, + [SMALL_STATE(4803)] = 178624, + [SMALL_STATE(4804)] = 178705, + [SMALL_STATE(4805)] = 178786, + [SMALL_STATE(4806)] = 178877, + [SMALL_STATE(4807)] = 178968, + [SMALL_STATE(4808)] = 179059, + [SMALL_STATE(4809)] = 179150, + [SMALL_STATE(4810)] = 179241, + [SMALL_STATE(4811)] = 179332, + [SMALL_STATE(4812)] = 179423, + [SMALL_STATE(4813)] = 179514, + [SMALL_STATE(4814)] = 179605, + [SMALL_STATE(4815)] = 179678, + [SMALL_STATE(4816)] = 179769, + [SMALL_STATE(4817)] = 179842, + [SMALL_STATE(4818)] = 179887, + [SMALL_STATE(4819)] = 179978, + [SMALL_STATE(4820)] = 180069, + [SMALL_STATE(4821)] = 180160, + [SMALL_STATE(4822)] = 180205, + [SMALL_STATE(4823)] = 180296, + [SMALL_STATE(4824)] = 180387, + [SMALL_STATE(4825)] = 180478, + [SMALL_STATE(4826)] = 180525, + [SMALL_STATE(4827)] = 180616, + [SMALL_STATE(4828)] = 180707, + [SMALL_STATE(4829)] = 180788, + [SMALL_STATE(4830)] = 180879, + [SMALL_STATE(4831)] = 180924, + [SMALL_STATE(4832)] = 180973, + [SMALL_STATE(4833)] = 181046, + [SMALL_STATE(4834)] = 181137, + [SMALL_STATE(4835)] = 181210, + [SMALL_STATE(4836)] = 181301, + [SMALL_STATE(4837)] = 181392, + [SMALL_STATE(4838)] = 181483, + [SMALL_STATE(4839)] = 181574, + [SMALL_STATE(4840)] = 181665, + [SMALL_STATE(4841)] = 181756, + [SMALL_STATE(4842)] = 181829, + [SMALL_STATE(4843)] = 181920, + [SMALL_STATE(4844)] = 181964, + [SMALL_STATE(4845)] = 182008, + [SMALL_STATE(4846)] = 182086, + [SMALL_STATE(4847)] = 182130, + [SMALL_STATE(4848)] = 182178, + [SMALL_STATE(4849)] = 182222, + [SMALL_STATE(4850)] = 182270, + [SMALL_STATE(4851)] = 182314, + [SMALL_STATE(4852)] = 182400, + [SMALL_STATE(4853)] = 182444, + [SMALL_STATE(4854)] = 182488, + [SMALL_STATE(4855)] = 182532, + [SMALL_STATE(4856)] = 182610, + [SMALL_STATE(4857)] = 182654, + [SMALL_STATE(4858)] = 182698, + [SMALL_STATE(4859)] = 182742, + [SMALL_STATE(4860)] = 182820, + [SMALL_STATE(4861)] = 182864, + [SMALL_STATE(4862)] = 182908, + [SMALL_STATE(4863)] = 182952, + [SMALL_STATE(4864)] = 182996, + [SMALL_STATE(4865)] = 183040, + [SMALL_STATE(4866)] = 183084, + [SMALL_STATE(4867)] = 183128, + [SMALL_STATE(4868)] = 183198, + [SMALL_STATE(4869)] = 183242, + [SMALL_STATE(4870)] = 183312, + [SMALL_STATE(4871)] = 183356, + [SMALL_STATE(4872)] = 183400, + [SMALL_STATE(4873)] = 183470, + [SMALL_STATE(4874)] = 183540, + [SMALL_STATE(4875)] = 183618, + [SMALL_STATE(4876)] = 183662, + [SMALL_STATE(4877)] = 183748, + [SMALL_STATE(4878)] = 183802, + [SMALL_STATE(4879)] = 183846, + [SMALL_STATE(4880)] = 183890, + [SMALL_STATE(4881)] = 183936, + [SMALL_STATE(4882)] = 184014, + [SMALL_STATE(4883)] = 184058, + [SMALL_STATE(4884)] = 184102, + [SMALL_STATE(4885)] = 184146, + [SMALL_STATE(4886)] = 184190, + [SMALL_STATE(4887)] = 184276, + [SMALL_STATE(4888)] = 184320, + [SMALL_STATE(4889)] = 184364, + [SMALL_STATE(4890)] = 184408, + [SMALL_STATE(4891)] = 184452, + [SMALL_STATE(4892)] = 184530, + [SMALL_STATE(4893)] = 184616, + [SMALL_STATE(4894)] = 184660, + [SMALL_STATE(4895)] = 184712, + [SMALL_STATE(4896)] = 184766, + [SMALL_STATE(4897)] = 184842, + [SMALL_STATE(4898)] = 184930, + [SMALL_STATE(4899)] = 184974, + [SMALL_STATE(4900)] = 185050, + [SMALL_STATE(4901)] = 185136, + [SMALL_STATE(4902)] = 185180, + [SMALL_STATE(4903)] = 185258, + [SMALL_STATE(4904)] = 185302, + [SMALL_STATE(4905)] = 185346, + [SMALL_STATE(4906)] = 185432, + [SMALL_STATE(4907)] = 185480, + [SMALL_STATE(4908)] = 185558, + [SMALL_STATE(4909)] = 185649, + [SMALL_STATE(4910)] = 185734, + [SMALL_STATE(4911)] = 185819, + [SMALL_STATE(4912)] = 185888, + [SMALL_STATE(4913)] = 185957, + [SMALL_STATE(4914)] = 186026, + [SMALL_STATE(4915)] = 186095, + [SMALL_STATE(4916)] = 186164, + [SMALL_STATE(4917)] = 186223, + [SMALL_STATE(4918)] = 186292, + [SMALL_STATE(4919)] = 186361, + [SMALL_STATE(4920)] = 186410, + [SMALL_STATE(4921)] = 186465, + [SMALL_STATE(4922)] = 186534, + [SMALL_STATE(4923)] = 186603, + [SMALL_STATE(4924)] = 186672, + [SMALL_STATE(4925)] = 186741, + [SMALL_STATE(4926)] = 186800, + [SMALL_STATE(4927)] = 186855, + [SMALL_STATE(4928)] = 186940, + [SMALL_STATE(4929)] = 187009, + [SMALL_STATE(4930)] = 187060, + [SMALL_STATE(4931)] = 187105, + [SMALL_STATE(4932)] = 187158, + [SMALL_STATE(4933)] = 187233, + [SMALL_STATE(4934)] = 187302, + [SMALL_STATE(4935)] = 187371, + [SMALL_STATE(4936)] = 187440, + [SMALL_STATE(4937)] = 187525, + [SMALL_STATE(4938)] = 187600, + [SMALL_STATE(4939)] = 187669, + [SMALL_STATE(4940)] = 187726, + [SMALL_STATE(4941)] = 187811, + [SMALL_STATE(4942)] = 187896, + [SMALL_STATE(4943)] = 187981, + [SMALL_STATE(4944)] = 188026, + [SMALL_STATE(4945)] = 188111, + [SMALL_STATE(4946)] = 188196, + [SMALL_STATE(4947)] = 188253, + [SMALL_STATE(4948)] = 188296, + [SMALL_STATE(4949)] = 188345, + [SMALL_STATE(4950)] = 188402, + [SMALL_STATE(4951)] = 188451, + [SMALL_STATE(4952)] = 188500, + [SMALL_STATE(4953)] = 188549, + [SMALL_STATE(4954)] = 188598, + [SMALL_STATE(4955)] = 188655, + [SMALL_STATE(4956)] = 188704, + [SMALL_STATE(4957)] = 188753, + [SMALL_STATE(4958)] = 188802, + [SMALL_STATE(4959)] = 188887, + [SMALL_STATE(4960)] = 188936, + [SMALL_STATE(4961)] = 188985, + [SMALL_STATE(4962)] = 189034, + [SMALL_STATE(4963)] = 189083, + [SMALL_STATE(4964)] = 189168, + [SMALL_STATE(4965)] = 189217, + [SMALL_STATE(4966)] = 189266, + [SMALL_STATE(4967)] = 189351, + [SMALL_STATE(4968)] = 189429, + [SMALL_STATE(4969)] = 189497, + [SMALL_STATE(4970)] = 189565, + [SMALL_STATE(4971)] = 189649, + [SMALL_STATE(4972)] = 189727, + [SMALL_STATE(4973)] = 189805, + [SMALL_STATE(4974)] = 189889, + [SMALL_STATE(4975)] = 189973, + [SMALL_STATE(4976)] = 190015, + [SMALL_STATE(4977)] = 190083, + [SMALL_STATE(4978)] = 190151, + [SMALL_STATE(4979)] = 190229, + [SMALL_STATE(4980)] = 190271, + [SMALL_STATE(4981)] = 190313, + [SMALL_STATE(4982)] = 190355, + [SMALL_STATE(4983)] = 190397, + [SMALL_STATE(4984)] = 190439, + [SMALL_STATE(4985)] = 190481, + [SMALL_STATE(4986)] = 190523, + [SMALL_STATE(4987)] = 190565, + [SMALL_STATE(4988)] = 190607, + [SMALL_STATE(4989)] = 190649, + [SMALL_STATE(4990)] = 190691, + [SMALL_STATE(4991)] = 190733, + [SMALL_STATE(4992)] = 190775, + [SMALL_STATE(4993)] = 190817, + [SMALL_STATE(4994)] = 190859, + [SMALL_STATE(4995)] = 190901, + [SMALL_STATE(4996)] = 190943, + [SMALL_STATE(4997)] = 190985, + [SMALL_STATE(4998)] = 191027, + [SMALL_STATE(4999)] = 191069, + [SMALL_STATE(5000)] = 191111, + [SMALL_STATE(5001)] = 191153, + [SMALL_STATE(5002)] = 191195, + [SMALL_STATE(5003)] = 191237, + [SMALL_STATE(5004)] = 191279, + [SMALL_STATE(5005)] = 191321, + [SMALL_STATE(5006)] = 191363, + [SMALL_STATE(5007)] = 191405, + [SMALL_STATE(5008)] = 191447, + [SMALL_STATE(5009)] = 191489, + [SMALL_STATE(5010)] = 191531, + [SMALL_STATE(5011)] = 191573, + [SMALL_STATE(5012)] = 191615, + [SMALL_STATE(5013)] = 191657, + [SMALL_STATE(5014)] = 191699, + [SMALL_STATE(5015)] = 191741, + [SMALL_STATE(5016)] = 191783, + [SMALL_STATE(5017)] = 191825, + [SMALL_STATE(5018)] = 191902, + [SMALL_STATE(5019)] = 191969, + [SMALL_STATE(5020)] = 192024, + [SMALL_STATE(5021)] = 192079, + [SMALL_STATE(5022)] = 192162, + [SMALL_STATE(5023)] = 192245, + [SMALL_STATE(5024)] = 192322, + [SMALL_STATE(5025)] = 192399, + [SMALL_STATE(5026)] = 192476, + [SMALL_STATE(5027)] = 192553, + [SMALL_STATE(5028)] = 192630, + [SMALL_STATE(5029)] = 192707, + [SMALL_STATE(5030)] = 192790, + [SMALL_STATE(5031)] = 192857, + [SMALL_STATE(5032)] = 192934, + [SMALL_STATE(5033)] = 192987, + [SMALL_STATE(5034)] = 193064, + [SMALL_STATE(5035)] = 193113, + [SMALL_STATE(5036)] = 193162, + [SMALL_STATE(5037)] = 193229, + [SMALL_STATE(5038)] = 193306, + [SMALL_STATE(5039)] = 193389, + [SMALL_STATE(5040)] = 193472, + [SMALL_STATE(5041)] = 193539, + [SMALL_STATE(5042)] = 193622, + [SMALL_STATE(5043)] = 193699, + [SMALL_STATE(5044)] = 193776, + [SMALL_STATE(5045)] = 193856, + [SMALL_STATE(5046)] = 193938, + [SMALL_STATE(5047)] = 194014, + [SMALL_STATE(5048)] = 194058, + [SMALL_STATE(5049)] = 194134, + [SMALL_STATE(5050)] = 194214, + [SMALL_STATE(5051)] = 194258, + [SMALL_STATE(5052)] = 194302, + [SMALL_STATE(5053)] = 194378, + [SMALL_STATE(5054)] = 194458, + [SMALL_STATE(5055)] = 194524, + [SMALL_STATE(5056)] = 194600, + [SMALL_STATE(5057)] = 194676, + [SMALL_STATE(5058)] = 194758, + [SMALL_STATE(5059)] = 194802, + [SMALL_STATE(5060)] = 194882, + [SMALL_STATE(5061)] = 194958, + [SMALL_STATE(5062)] = 195002, + [SMALL_STATE(5063)] = 195078, + [SMALL_STATE(5064)] = 195128, + [SMALL_STATE(5065)] = 195208, + [SMALL_STATE(5066)] = 195288, + [SMALL_STATE(5067)] = 195364, + [SMALL_STATE(5068)] = 195408, + [SMALL_STATE(5069)] = 195488, + [SMALL_STATE(5070)] = 195564, + [SMALL_STATE(5071)] = 195640, + [SMALL_STATE(5072)] = 195720, + [SMALL_STATE(5073)] = 195802, + [SMALL_STATE(5074)] = 195878, + [SMALL_STATE(5075)] = 195958, + [SMALL_STATE(5076)] = 196002, + [SMALL_STATE(5077)] = 196082, + [SMALL_STATE(5078)] = 196162, + [SMALL_STATE(5079)] = 196228, + [SMALL_STATE(5080)] = 196304, + [SMALL_STATE(5081)] = 196380, + [SMALL_STATE(5082)] = 196430, + [SMALL_STATE(5083)] = 196472, + [SMALL_STATE(5084)] = 196552, + [SMALL_STATE(5085)] = 196632, + [SMALL_STATE(5086)] = 196708, + [SMALL_STATE(5087)] = 196752, + [SMALL_STATE(5088)] = 196818, + [SMALL_STATE(5089)] = 196898, + [SMALL_STATE(5090)] = 196942, + [SMALL_STATE(5091)] = 197008, + [SMALL_STATE(5092)] = 197084, + [SMALL_STATE(5093)] = 197160, + [SMALL_STATE(5094)] = 197236, + [SMALL_STATE(5095)] = 197290, + [SMALL_STATE(5096)] = 197366, + [SMALL_STATE(5097)] = 197410, + [SMALL_STATE(5098)] = 197490, + [SMALL_STATE(5099)] = 197534, + [SMALL_STATE(5100)] = 197578, + [SMALL_STATE(5101)] = 197654, + [SMALL_STATE(5102)] = 197736, + [SMALL_STATE(5103)] = 197812, + [SMALL_STATE(5104)] = 197888, + [SMALL_STATE(5105)] = 197964, + [SMALL_STATE(5106)] = 198018, + [SMALL_STATE(5107)] = 198098, + [SMALL_STATE(5108)] = 198178, + [SMALL_STATE(5109)] = 198260, + [SMALL_STATE(5110)] = 198316, + [SMALL_STATE(5111)] = 198372, + [SMALL_STATE(5112)] = 198448, + [SMALL_STATE(5113)] = 198528, + [SMALL_STATE(5114)] = 198604, + [SMALL_STATE(5115)] = 198685, + [SMALL_STATE(5116)] = 198766, + [SMALL_STATE(5117)] = 198847, + [SMALL_STATE(5118)] = 198928, + [SMALL_STATE(5119)] = 199009, + [SMALL_STATE(5120)] = 199090, + [SMALL_STATE(5121)] = 199171, + [SMALL_STATE(5122)] = 199252, + [SMALL_STATE(5123)] = 199333, + [SMALL_STATE(5124)] = 199408, + [SMALL_STATE(5125)] = 199489, + [SMALL_STATE(5126)] = 199564, + [SMALL_STATE(5127)] = 199645, + [SMALL_STATE(5128)] = 199726, + [SMALL_STATE(5129)] = 199807, + [SMALL_STATE(5130)] = 199888, + [SMALL_STATE(5131)] = 199969, + [SMALL_STATE(5132)] = 200044, + [SMALL_STATE(5133)] = 200119, + [SMALL_STATE(5134)] = 200200, + [SMALL_STATE(5135)] = 200281, + [SMALL_STATE(5136)] = 200362, + [SMALL_STATE(5137)] = 200443, + [SMALL_STATE(5138)] = 200524, + [SMALL_STATE(5139)] = 200605, + [SMALL_STATE(5140)] = 200686, + [SMALL_STATE(5141)] = 200767, + [SMALL_STATE(5142)] = 200818, + [SMALL_STATE(5143)] = 200899, + [SMALL_STATE(5144)] = 200980, + [SMALL_STATE(5145)] = 201061, + [SMALL_STATE(5146)] = 201142, + [SMALL_STATE(5147)] = 201223, + [SMALL_STATE(5148)] = 201304, + [SMALL_STATE(5149)] = 201385, + [SMALL_STATE(5150)] = 201466, + [SMALL_STATE(5151)] = 201547, + [SMALL_STATE(5152)] = 201628, + [SMALL_STATE(5153)] = 201709, + [SMALL_STATE(5154)] = 201790, + [SMALL_STATE(5155)] = 201871, + [SMALL_STATE(5156)] = 201952, + [SMALL_STATE(5157)] = 202033, + [SMALL_STATE(5158)] = 202114, + [SMALL_STATE(5159)] = 202195, + [SMALL_STATE(5160)] = 202276, + [SMALL_STATE(5161)] = 202357, + [SMALL_STATE(5162)] = 202438, + [SMALL_STATE(5163)] = 202519, + [SMALL_STATE(5164)] = 202600, + [SMALL_STATE(5165)] = 202681, + [SMALL_STATE(5166)] = 202762, + [SMALL_STATE(5167)] = 202843, + [SMALL_STATE(5168)] = 202924, + [SMALL_STATE(5169)] = 203005, + [SMALL_STATE(5170)] = 203086, + [SMALL_STATE(5171)] = 203167, + [SMALL_STATE(5172)] = 203248, + [SMALL_STATE(5173)] = 203329, + [SMALL_STATE(5174)] = 203410, + [SMALL_STATE(5175)] = 203491, + [SMALL_STATE(5176)] = 203572, + [SMALL_STATE(5177)] = 203653, + [SMALL_STATE(5178)] = 203734, + [SMALL_STATE(5179)] = 203815, + [SMALL_STATE(5180)] = 203896, + [SMALL_STATE(5181)] = 203977, + [SMALL_STATE(5182)] = 204058, + [SMALL_STATE(5183)] = 204139, + [SMALL_STATE(5184)] = 204220, + [SMALL_STATE(5185)] = 204301, + [SMALL_STATE(5186)] = 204382, + [SMALL_STATE(5187)] = 204463, + [SMALL_STATE(5188)] = 204514, + [SMALL_STATE(5189)] = 204595, + [SMALL_STATE(5190)] = 204638, + [SMALL_STATE(5191)] = 204681, + [SMALL_STATE(5192)] = 204762, + [SMALL_STATE(5193)] = 204843, + [SMALL_STATE(5194)] = 204924, + [SMALL_STATE(5195)] = 205005, + [SMALL_STATE(5196)] = 205048, + [SMALL_STATE(5197)] = 205091, + [SMALL_STATE(5198)] = 205172, + [SMALL_STATE(5199)] = 205215, + [SMALL_STATE(5200)] = 205258, + [SMALL_STATE(5201)] = 205339, + [SMALL_STATE(5202)] = 205420, + [SMALL_STATE(5203)] = 205463, + [SMALL_STATE(5204)] = 205544, + [SMALL_STATE(5205)] = 205587, + [SMALL_STATE(5206)] = 205630, + [SMALL_STATE(5207)] = 205673, + [SMALL_STATE(5208)] = 205716, + [SMALL_STATE(5209)] = 205759, + [SMALL_STATE(5210)] = 205840, + [SMALL_STATE(5211)] = 205921, + [SMALL_STATE(5212)] = 206002, + [SMALL_STATE(5213)] = 206083, + [SMALL_STATE(5214)] = 206164, + [SMALL_STATE(5215)] = 206245, + [SMALL_STATE(5216)] = 206326, + [SMALL_STATE(5217)] = 206407, + [SMALL_STATE(5218)] = 206488, + [SMALL_STATE(5219)] = 206569, + [SMALL_STATE(5220)] = 206650, + [SMALL_STATE(5221)] = 206731, + [SMALL_STATE(5222)] = 206812, + [SMALL_STATE(5223)] = 206893, + [SMALL_STATE(5224)] = 206974, + [SMALL_STATE(5225)] = 207055, + [SMALL_STATE(5226)] = 207136, + [SMALL_STATE(5227)] = 207217, + [SMALL_STATE(5228)] = 207298, + [SMALL_STATE(5229)] = 207376, + [SMALL_STATE(5230)] = 207450, + [SMALL_STATE(5231)] = 207524, + [SMALL_STATE(5232)] = 207598, + [SMALL_STATE(5233)] = 207672, + [SMALL_STATE(5234)] = 207746, + [SMALL_STATE(5235)] = 207824, + [SMALL_STATE(5236)] = 207898, + [SMALL_STATE(5237)] = 207976, + [SMALL_STATE(5238)] = 208050, + [SMALL_STATE(5239)] = 208124, + [SMALL_STATE(5240)] = 208202, + [SMALL_STATE(5241)] = 208276, + [SMALL_STATE(5242)] = 208350, + [SMALL_STATE(5243)] = 208424, + [SMALL_STATE(5244)] = 208502, + [SMALL_STATE(5245)] = 208576, + [SMALL_STATE(5246)] = 208650, + [SMALL_STATE(5247)] = 208724, + [SMALL_STATE(5248)] = 208798, + [SMALL_STATE(5249)] = 208872, + [SMALL_STATE(5250)] = 208946, + [SMALL_STATE(5251)] = 209024, + [SMALL_STATE(5252)] = 209098, + [SMALL_STATE(5253)] = 209172, + [SMALL_STATE(5254)] = 209246, + [SMALL_STATE(5255)] = 209320, + [SMALL_STATE(5256)] = 209394, + [SMALL_STATE(5257)] = 209472, + [SMALL_STATE(5258)] = 209546, + [SMALL_STATE(5259)] = 209620, + [SMALL_STATE(5260)] = 209694, + [SMALL_STATE(5261)] = 209768, + [SMALL_STATE(5262)] = 209842, + [SMALL_STATE(5263)] = 209916, + [SMALL_STATE(5264)] = 209990, + [SMALL_STATE(5265)] = 210064, + [SMALL_STATE(5266)] = 210138, + [SMALL_STATE(5267)] = 210212, + [SMALL_STATE(5268)] = 210290, + [SMALL_STATE(5269)] = 210368, + [SMALL_STATE(5270)] = 210442, + [SMALL_STATE(5271)] = 210520, + [SMALL_STATE(5272)] = 210598, + [SMALL_STATE(5273)] = 210676, + [SMALL_STATE(5274)] = 210750, + [SMALL_STATE(5275)] = 210824, + [SMALL_STATE(5276)] = 210898, + [SMALL_STATE(5277)] = 210972, + [SMALL_STATE(5278)] = 211050, + [SMALL_STATE(5279)] = 211124, + [SMALL_STATE(5280)] = 211202, + [SMALL_STATE(5281)] = 211276, + [SMALL_STATE(5282)] = 211350, + [SMALL_STATE(5283)] = 211424, + [SMALL_STATE(5284)] = 211502, + [SMALL_STATE(5285)] = 211576, + [SMALL_STATE(5286)] = 211650, + [SMALL_STATE(5287)] = 211724, + [SMALL_STATE(5288)] = 211798, + [SMALL_STATE(5289)] = 211872, + [SMALL_STATE(5290)] = 211950, + [SMALL_STATE(5291)] = 212028, + [SMALL_STATE(5292)] = 212102, + [SMALL_STATE(5293)] = 212176, + [SMALL_STATE(5294)] = 212250, + [SMALL_STATE(5295)] = 212324, + [SMALL_STATE(5296)] = 212398, + [SMALL_STATE(5297)] = 212472, + [SMALL_STATE(5298)] = 212550, + [SMALL_STATE(5299)] = 212617, + [SMALL_STATE(5300)] = 212684, + [SMALL_STATE(5301)] = 212751, + [SMALL_STATE(5302)] = 212818, + [SMALL_STATE(5303)] = 212885, + [SMALL_STATE(5304)] = 212952, + [SMALL_STATE(5305)] = 213019, + [SMALL_STATE(5306)] = 213060, + [SMALL_STATE(5307)] = 213127, + [SMALL_STATE(5308)] = 213194, + [SMALL_STATE(5309)] = 213231, + [SMALL_STATE(5310)] = 213298, + [SMALL_STATE(5311)] = 213365, + [SMALL_STATE(5312)] = 213402, + [SMALL_STATE(5313)] = 213469, + [SMALL_STATE(5314)] = 213536, + [SMALL_STATE(5315)] = 213603, + [SMALL_STATE(5316)] = 213670, + [SMALL_STATE(5317)] = 213715, + [SMALL_STATE(5318)] = 213782, + [SMALL_STATE(5319)] = 213849, + [SMALL_STATE(5320)] = 213916, + [SMALL_STATE(5321)] = 213983, + [SMALL_STATE(5322)] = 214050, + [SMALL_STATE(5323)] = 214117, + [SMALL_STATE(5324)] = 214184, + [SMALL_STATE(5325)] = 214251, + [SMALL_STATE(5326)] = 214318, + [SMALL_STATE(5327)] = 214385, + [SMALL_STATE(5328)] = 214452, + [SMALL_STATE(5329)] = 214519, + [SMALL_STATE(5330)] = 214586, + [SMALL_STATE(5331)] = 214653, + [SMALL_STATE(5332)] = 214726, + [SMALL_STATE(5333)] = 214793, + [SMALL_STATE(5334)] = 214860, + [SMALL_STATE(5335)] = 214933, + [SMALL_STATE(5336)] = 215000, + [SMALL_STATE(5337)] = 215073, + [SMALL_STATE(5338)] = 215146, + [SMALL_STATE(5339)] = 215213, + [SMALL_STATE(5340)] = 215286, + [SMALL_STATE(5341)] = 215359, + [SMALL_STATE(5342)] = 215426, + [SMALL_STATE(5343)] = 215499, + [SMALL_STATE(5344)] = 215572, + [SMALL_STATE(5345)] = 215639, + [SMALL_STATE(5346)] = 215706, + [SMALL_STATE(5347)] = 215773, + [SMALL_STATE(5348)] = 215818, + [SMALL_STATE(5349)] = 215885, + [SMALL_STATE(5350)] = 215952, + [SMALL_STATE(5351)] = 216025, + [SMALL_STATE(5352)] = 216092, + [SMALL_STATE(5353)] = 216165, + [SMALL_STATE(5354)] = 216232, + [SMALL_STATE(5355)] = 216275, + [SMALL_STATE(5356)] = 216342, + [SMALL_STATE(5357)] = 216408, + [SMALL_STATE(5358)] = 216474, + [SMALL_STATE(5359)] = 216540, + [SMALL_STATE(5360)] = 216606, + [SMALL_STATE(5361)] = 216672, + [SMALL_STATE(5362)] = 216738, + [SMALL_STATE(5363)] = 216804, + [SMALL_STATE(5364)] = 216870, + [SMALL_STATE(5365)] = 216936, + [SMALL_STATE(5366)] = 216976, + [SMALL_STATE(5367)] = 217042, + [SMALL_STATE(5368)] = 217108, + [SMALL_STATE(5369)] = 217174, + [SMALL_STATE(5370)] = 217240, + [SMALL_STATE(5371)] = 217306, + [SMALL_STATE(5372)] = 217372, + [SMALL_STATE(5373)] = 217438, + [SMALL_STATE(5374)] = 217504, + [SMALL_STATE(5375)] = 217570, + [SMALL_STATE(5376)] = 217635, + [SMALL_STATE(5377)] = 217700, + [SMALL_STATE(5378)] = 217765, + [SMALL_STATE(5379)] = 217830, + [SMALL_STATE(5380)] = 217895, + [SMALL_STATE(5381)] = 217960, + [SMALL_STATE(5382)] = 218025, + [SMALL_STATE(5383)] = 218062, + [SMALL_STATE(5384)] = 218127, + [SMALL_STATE(5385)] = 218192, + [SMALL_STATE(5386)] = 218257, + [SMALL_STATE(5387)] = 218322, + [SMALL_STATE(5388)] = 218387, + [SMALL_STATE(5389)] = 218452, + [SMALL_STATE(5390)] = 218517, + [SMALL_STATE(5391)] = 218582, + [SMALL_STATE(5392)] = 218647, + [SMALL_STATE(5393)] = 218712, + [SMALL_STATE(5394)] = 218777, + [SMALL_STATE(5395)] = 218842, + [SMALL_STATE(5396)] = 218907, + [SMALL_STATE(5397)] = 218972, + [SMALL_STATE(5398)] = 219037, + [SMALL_STATE(5399)] = 219102, + [SMALL_STATE(5400)] = 219167, + [SMALL_STATE(5401)] = 219232, + [SMALL_STATE(5402)] = 219297, + [SMALL_STATE(5403)] = 219362, + [SMALL_STATE(5404)] = 219427, + [SMALL_STATE(5405)] = 219492, + [SMALL_STATE(5406)] = 219557, + [SMALL_STATE(5407)] = 219622, + [SMALL_STATE(5408)] = 219687, + [SMALL_STATE(5409)] = 219752, + [SMALL_STATE(5410)] = 219817, + [SMALL_STATE(5411)] = 219882, + [SMALL_STATE(5412)] = 219947, + [SMALL_STATE(5413)] = 220011, + [SMALL_STATE(5414)] = 220069, + [SMALL_STATE(5415)] = 220127, + [SMALL_STATE(5416)] = 220191, + [SMALL_STATE(5417)] = 220249, + [SMALL_STATE(5418)] = 220313, + [SMALL_STATE(5419)] = 220377, + [SMALL_STATE(5420)] = 220435, + [SMALL_STATE(5421)] = 220499, + [SMALL_STATE(5422)] = 220563, + [SMALL_STATE(5423)] = 220626, + [SMALL_STATE(5424)] = 220687, + [SMALL_STATE(5425)] = 220750, + [SMALL_STATE(5426)] = 220813, + [SMALL_STATE(5427)] = 220874, + [SMALL_STATE(5428)] = 220935, + [SMALL_STATE(5429)] = 220998, + [SMALL_STATE(5430)] = 221061, + [SMALL_STATE(5431)] = 221112, + [SMALL_STATE(5432)] = 221173, + [SMALL_STATE(5433)] = 221236, + [SMALL_STATE(5434)] = 221299, + [SMALL_STATE(5435)] = 221362, + [SMALL_STATE(5436)] = 221423, + [SMALL_STATE(5437)] = 221486, + [SMALL_STATE(5438)] = 221549, + [SMALL_STATE(5439)] = 221612, + [SMALL_STATE(5440)] = 221675, + [SMALL_STATE(5441)] = 221738, + [SMALL_STATE(5442)] = 221789, + [SMALL_STATE(5443)] = 221852, + [SMALL_STATE(5444)] = 221903, + [SMALL_STATE(5445)] = 221966, + [SMALL_STATE(5446)] = 222027, + [SMALL_STATE(5447)] = 222090, + [SMALL_STATE(5448)] = 222153, + [SMALL_STATE(5449)] = 222216, + [SMALL_STATE(5450)] = 222277, + [SMALL_STATE(5451)] = 222351, + [SMALL_STATE(5452)] = 222413, + [SMALL_STATE(5453)] = 222467, + [SMALL_STATE(5454)] = 222509, + [SMALL_STATE(5455)] = 222571, + [SMALL_STATE(5456)] = 222613, + [SMALL_STATE(5457)] = 222675, + [SMALL_STATE(5458)] = 222737, + [SMALL_STATE(5459)] = 222799, + [SMALL_STATE(5460)] = 222861, + [SMALL_STATE(5461)] = 222923, + [SMALL_STATE(5462)] = 222985, + [SMALL_STATE(5463)] = 223047, + [SMALL_STATE(5464)] = 223109, + [SMALL_STATE(5465)] = 223183, + [SMALL_STATE(5466)] = 223245, + [SMALL_STATE(5467)] = 223307, + [SMALL_STATE(5468)] = 223369, + [SMALL_STATE(5469)] = 223443, + [SMALL_STATE(5470)] = 223493, + [SMALL_STATE(5471)] = 223555, + [SMALL_STATE(5472)] = 223617, + [SMALL_STATE(5473)] = 223676, + [SMALL_STATE(5474)] = 223735, + [SMALL_STATE(5475)] = 223794, + [SMALL_STATE(5476)] = 223853, + [SMALL_STATE(5477)] = 223912, + [SMALL_STATE(5478)] = 223971, + [SMALL_STATE(5479)] = 224030, + [SMALL_STATE(5480)] = 224089, + [SMALL_STATE(5481)] = 224148, + [SMALL_STATE(5482)] = 224207, + [SMALL_STATE(5483)] = 224266, + [SMALL_STATE(5484)] = 224325, + [SMALL_STATE(5485)] = 224384, + [SMALL_STATE(5486)] = 224443, + [SMALL_STATE(5487)] = 224474, + [SMALL_STATE(5488)] = 224533, + [SMALL_STATE(5489)] = 224582, + [SMALL_STATE(5490)] = 224641, + [SMALL_STATE(5491)] = 224700, + [SMALL_STATE(5492)] = 224759, + [SMALL_STATE(5493)] = 224818, + [SMALL_STATE(5494)] = 224877, + [SMALL_STATE(5495)] = 224936, + [SMALL_STATE(5496)] = 224995, + [SMALL_STATE(5497)] = 225047, + [SMALL_STATE(5498)] = 225099, + [SMALL_STATE(5499)] = 225151, + [SMALL_STATE(5500)] = 225203, + [SMALL_STATE(5501)] = 225255, + [SMALL_STATE(5502)] = 225307, + [SMALL_STATE(5503)] = 225359, + [SMALL_STATE(5504)] = 225411, + [SMALL_STATE(5505)] = 225463, + [SMALL_STATE(5506)] = 225515, + [SMALL_STATE(5507)] = 225567, + [SMALL_STATE(5508)] = 225601, + [SMALL_STATE(5509)] = 225653, + [SMALL_STATE(5510)] = 225705, + [SMALL_STATE(5511)] = 225757, + [SMALL_STATE(5512)] = 225809, + [SMALL_STATE(5513)] = 225861, + [SMALL_STATE(5514)] = 225913, + [SMALL_STATE(5515)] = 225965, + [SMALL_STATE(5516)] = 226017, + [SMALL_STATE(5517)] = 226069, + [SMALL_STATE(5518)] = 226121, + [SMALL_STATE(5519)] = 226173, + [SMALL_STATE(5520)] = 226219, + [SMALL_STATE(5521)] = 226267, + [SMALL_STATE(5522)] = 226319, + [SMALL_STATE(5523)] = 226371, + [SMALL_STATE(5524)] = 226423, + [SMALL_STATE(5525)] = 226461, + [SMALL_STATE(5526)] = 226531, + [SMALL_STATE(5527)] = 226569, + [SMALL_STATE(5528)] = 226607, + [SMALL_STATE(5529)] = 226645, + [SMALL_STATE(5530)] = 226683, + [SMALL_STATE(5531)] = 226721, + [SMALL_STATE(5532)] = 226759, + [SMALL_STATE(5533)] = 226811, + [SMALL_STATE(5534)] = 226863, + [SMALL_STATE(5535)] = 226895, + [SMALL_STATE(5536)] = 226929, + [SMALL_STATE(5537)] = 226967, + [SMALL_STATE(5538)] = 227005, + [SMALL_STATE(5539)] = 227043, + [SMALL_STATE(5540)] = 227077, + [SMALL_STATE(5541)] = 227117, + [SMALL_STATE(5542)] = 227157, + [SMALL_STATE(5543)] = 227209, + [SMALL_STATE(5544)] = 227261, + [SMALL_STATE(5545)] = 227313, + [SMALL_STATE(5546)] = 227365, + [SMALL_STATE(5547)] = 227417, + [SMALL_STATE(5548)] = 227451, + [SMALL_STATE(5549)] = 227485, + [SMALL_STATE(5550)] = 227537, + [SMALL_STATE(5551)] = 227589, + [SMALL_STATE(5552)] = 227641, + [SMALL_STATE(5553)] = 227693, + [SMALL_STATE(5554)] = 227763, + [SMALL_STATE(5555)] = 227815, + [SMALL_STATE(5556)] = 227867, + [SMALL_STATE(5557)] = 227919, + [SMALL_STATE(5558)] = 227989, + [SMALL_STATE(5559)] = 228041, + [SMALL_STATE(5560)] = 228093, + [SMALL_STATE(5561)] = 228145, + [SMALL_STATE(5562)] = 228197, + [SMALL_STATE(5563)] = 228249, + [SMALL_STATE(5564)] = 228304, + [SMALL_STATE(5565)] = 228363, + [SMALL_STATE(5566)] = 228392, + [SMALL_STATE(5567)] = 228421, + [SMALL_STATE(5568)] = 228458, + [SMALL_STATE(5569)] = 228517, + [SMALL_STATE(5570)] = 228580, + [SMALL_STATE(5571)] = 228639, + [SMALL_STATE(5572)] = 228698, + [SMALL_STATE(5573)] = 228731, + [SMALL_STATE(5574)] = 228790, + [SMALL_STATE(5575)] = 228819, + [SMALL_STATE(5576)] = 228848, + [SMALL_STATE(5577)] = 228877, + [SMALL_STATE(5578)] = 228906, + [SMALL_STATE(5579)] = 228967, + [SMALL_STATE(5580)] = 229026, + [SMALL_STATE(5581)] = 229085, + [SMALL_STATE(5582)] = 229146, + [SMALL_STATE(5583)] = 229205, + [SMALL_STATE(5584)] = 229234, + [SMALL_STATE(5585)] = 229271, + [SMALL_STATE(5586)] = 229324, + [SMALL_STATE(5587)] = 229383, + [SMALL_STATE(5588)] = 229442, + [SMALL_STATE(5589)] = 229501, + [SMALL_STATE(5590)] = 229560, + [SMALL_STATE(5591)] = 229619, + [SMALL_STATE(5592)] = 229678, + [SMALL_STATE(5593)] = 229721, + [SMALL_STATE(5594)] = 229754, + [SMALL_STATE(5595)] = 229791, + [SMALL_STATE(5596)] = 229820, + [SMALL_STATE(5597)] = 229879, + [SMALL_STATE(5598)] = 229932, + [SMALL_STATE(5599)] = 229991, + [SMALL_STATE(5600)] = 230050, + [SMALL_STATE(5601)] = 230109, + [SMALL_STATE(5602)] = 230168, + [SMALL_STATE(5603)] = 230205, + [SMALL_STATE(5604)] = 230264, + [SMALL_STATE(5605)] = 230323, + [SMALL_STATE(5606)] = 230382, + [SMALL_STATE(5607)] = 230441, + [SMALL_STATE(5608)] = 230494, + [SMALL_STATE(5609)] = 230537, + [SMALL_STATE(5610)] = 230596, + [SMALL_STATE(5611)] = 230655, + [SMALL_STATE(5612)] = 230714, + [SMALL_STATE(5613)] = 230767, + [SMALL_STATE(5614)] = 230826, + [SMALL_STATE(5615)] = 230855, + [SMALL_STATE(5616)] = 230908, + [SMALL_STATE(5617)] = 230967, + [SMALL_STATE(5618)] = 231022, + [SMALL_STATE(5619)] = 231081, + [SMALL_STATE(5620)] = 231140, + [SMALL_STATE(5621)] = 231199, + [SMALL_STATE(5622)] = 231258, + [SMALL_STATE(5623)] = 231317, + [SMALL_STATE(5624)] = 231376, + [SMALL_STATE(5625)] = 231435, + [SMALL_STATE(5626)] = 231494, + [SMALL_STATE(5627)] = 231553, + [SMALL_STATE(5628)] = 231612, + [SMALL_STATE(5629)] = 231665, + [SMALL_STATE(5630)] = 231724, + [SMALL_STATE(5631)] = 231785, + [SMALL_STATE(5632)] = 231814, + [SMALL_STATE(5633)] = 231867, + [SMALL_STATE(5634)] = 231926, + [SMALL_STATE(5635)] = 231985, + [SMALL_STATE(5636)] = 232044, + [SMALL_STATE(5637)] = 232103, + [SMALL_STATE(5638)] = 232162, + [SMALL_STATE(5639)] = 232193, + [SMALL_STATE(5640)] = 232222, + [SMALL_STATE(5641)] = 232281, + [SMALL_STATE(5642)] = 232334, + [SMALL_STATE(5643)] = 232393, + [SMALL_STATE(5644)] = 232452, + [SMALL_STATE(5645)] = 232481, + [SMALL_STATE(5646)] = 232514, + [SMALL_STATE(5647)] = 232573, + [SMALL_STATE(5648)] = 232632, + [SMALL_STATE(5649)] = 232691, + [SMALL_STATE(5650)] = 232720, + [SMALL_STATE(5651)] = 232779, + [SMALL_STATE(5652)] = 232838, + [SMALL_STATE(5653)] = 232897, + [SMALL_STATE(5654)] = 232956, + [SMALL_STATE(5655)] = 233009, + [SMALL_STATE(5656)] = 233046, + [SMALL_STATE(5657)] = 233105, + [SMALL_STATE(5658)] = 233166, + [SMALL_STATE(5659)] = 233219, + [SMALL_STATE(5660)] = 233278, + [SMALL_STATE(5661)] = 233337, + [SMALL_STATE(5662)] = 233390, + [SMALL_STATE(5663)] = 233449, + [SMALL_STATE(5664)] = 233480, + [SMALL_STATE(5665)] = 233539, + [SMALL_STATE(5666)] = 233598, + [SMALL_STATE(5667)] = 233635, + [SMALL_STATE(5668)] = 233694, + [SMALL_STATE(5669)] = 233753, + [SMALL_STATE(5670)] = 233796, + [SMALL_STATE(5671)] = 233825, + [SMALL_STATE(5672)] = 233862, + [SMALL_STATE(5673)] = 233895, + [SMALL_STATE(5674)] = 233954, + [SMALL_STATE(5675)] = 234013, + [SMALL_STATE(5676)] = 234072, + [SMALL_STATE(5677)] = 234101, + [SMALL_STATE(5678)] = 234130, + [SMALL_STATE(5679)] = 234159, + [SMALL_STATE(5680)] = 234188, + [SMALL_STATE(5681)] = 234247, + [SMALL_STATE(5682)] = 234306, + [SMALL_STATE(5683)] = 234351, + [SMALL_STATE(5684)] = 234410, + [SMALL_STATE(5685)] = 234469, + [SMALL_STATE(5686)] = 234528, + [SMALL_STATE(5687)] = 234587, + [SMALL_STATE(5688)] = 234648, + [SMALL_STATE(5689)] = 234701, + [SMALL_STATE(5690)] = 234760, + [SMALL_STATE(5691)] = 234819, + [SMALL_STATE(5692)] = 234878, + [SMALL_STATE(5693)] = 234937, + [SMALL_STATE(5694)] = 234992, + [SMALL_STATE(5695)] = 235045, + [SMALL_STATE(5696)] = 235074, + [SMALL_STATE(5697)] = 235133, + [SMALL_STATE(5698)] = 235192, + [SMALL_STATE(5699)] = 235251, + [SMALL_STATE(5700)] = 235312, + [SMALL_STATE(5701)] = 235371, + [SMALL_STATE(5702)] = 235430, + [SMALL_STATE(5703)] = 235489, + [SMALL_STATE(5704)] = 235526, + [SMALL_STATE(5705)] = 235555, + [SMALL_STATE(5706)] = 235614, + [SMALL_STATE(5707)] = 235673, + [SMALL_STATE(5708)] = 235732, + [SMALL_STATE(5709)] = 235769, + [SMALL_STATE(5710)] = 235806, + [SMALL_STATE(5711)] = 235865, + [SMALL_STATE(5712)] = 235924, + [SMALL_STATE(5713)] = 235983, + [SMALL_STATE(5714)] = 236042, + [SMALL_STATE(5715)] = 236095, + [SMALL_STATE(5716)] = 236124, + [SMALL_STATE(5717)] = 236183, + [SMALL_STATE(5718)] = 236242, + [SMALL_STATE(5719)] = 236271, + [SMALL_STATE(5720)] = 236332, + [SMALL_STATE(5721)] = 236372, + [SMALL_STATE(5722)] = 236436, + [SMALL_STATE(5723)] = 236476, + [SMALL_STATE(5724)] = 236528, + [SMALL_STATE(5725)] = 236568, + [SMALL_STATE(5726)] = 236608, + [SMALL_STATE(5727)] = 236660, + [SMALL_STATE(5728)] = 236712, + [SMALL_STATE(5729)] = 236752, + [SMALL_STATE(5730)] = 236792, + [SMALL_STATE(5731)] = 236824, + [SMALL_STATE(5732)] = 236864, + [SMALL_STATE(5733)] = 236904, + [SMALL_STATE(5734)] = 236944, + [SMALL_STATE(5735)] = 236996, + [SMALL_STATE(5736)] = 237046, + [SMALL_STATE(5737)] = 237086, + [SMALL_STATE(5738)] = 237132, + [SMALL_STATE(5739)] = 237172, + [SMALL_STATE(5740)] = 237212, + [SMALL_STATE(5741)] = 237252, + [SMALL_STATE(5742)] = 237298, + [SMALL_STATE(5743)] = 237362, + [SMALL_STATE(5744)] = 237402, + [SMALL_STATE(5745)] = 237442, + [SMALL_STATE(5746)] = 237482, + [SMALL_STATE(5747)] = 237522, + [SMALL_STATE(5748)] = 237574, + [SMALL_STATE(5749)] = 237602, + [SMALL_STATE(5750)] = 237666, + [SMALL_STATE(5751)] = 237706, + [SMALL_STATE(5752)] = 237734, + [SMALL_STATE(5753)] = 237774, + [SMALL_STATE(5754)] = 237814, + [SMALL_STATE(5755)] = 237842, + [SMALL_STATE(5756)] = 237870, + [SMALL_STATE(5757)] = 237898, + [SMALL_STATE(5758)] = 237938, + [SMALL_STATE(5759)] = 237978, + [SMALL_STATE(5760)] = 238018, + [SMALL_STATE(5761)] = 238058, + [SMALL_STATE(5762)] = 238098, + [SMALL_STATE(5763)] = 238138, + [SMALL_STATE(5764)] = 238178, + [SMALL_STATE(5765)] = 238218, + [SMALL_STATE(5766)] = 238258, + [SMALL_STATE(5767)] = 238298, + [SMALL_STATE(5768)] = 238348, + [SMALL_STATE(5769)] = 238400, + [SMALL_STATE(5770)] = 238464, + [SMALL_STATE(5771)] = 238514, + [SMALL_STATE(5772)] = 238566, + [SMALL_STATE(5773)] = 238616, + [SMALL_STATE(5774)] = 238668, + [SMALL_STATE(5775)] = 238732, + [SMALL_STATE(5776)] = 238772, + [SMALL_STATE(5777)] = 238812, + [SMALL_STATE(5778)] = 238852, + [SMALL_STATE(5779)] = 238892, + [SMALL_STATE(5780)] = 238932, + [SMALL_STATE(5781)] = 238972, + [SMALL_STATE(5782)] = 239036, + [SMALL_STATE(5783)] = 239076, + [SMALL_STATE(5784)] = 239116, + [SMALL_STATE(5785)] = 239168, + [SMALL_STATE(5786)] = 239208, + [SMALL_STATE(5787)] = 239248, + [SMALL_STATE(5788)] = 239288, + [SMALL_STATE(5789)] = 239328, + [SMALL_STATE(5790)] = 239356, + [SMALL_STATE(5791)] = 239408, + [SMALL_STATE(5792)] = 239458, + [SMALL_STATE(5793)] = 239498, + [SMALL_STATE(5794)] = 239548, + [SMALL_STATE(5795)] = 239598, + [SMALL_STATE(5796)] = 239638, + [SMALL_STATE(5797)] = 239702, + [SMALL_STATE(5798)] = 239742, + [SMALL_STATE(5799)] = 239782, + [SMALL_STATE(5800)] = 239822, + [SMALL_STATE(5801)] = 239874, + [SMALL_STATE(5802)] = 239938, + [SMALL_STATE(5803)] = 239988, + [SMALL_STATE(5804)] = 240040, + [SMALL_STATE(5805)] = 240072, + [SMALL_STATE(5806)] = 240124, + [SMALL_STATE(5807)] = 240156, + [SMALL_STATE(5808)] = 240208, + [SMALL_STATE(5809)] = 240258, + [SMALL_STATE(5810)] = 240308, + [SMALL_STATE(5811)] = 240348, + [SMALL_STATE(5812)] = 240392, + [SMALL_STATE(5813)] = 240432, + [SMALL_STATE(5814)] = 240484, + [SMALL_STATE(5815)] = 240524, + [SMALL_STATE(5816)] = 240574, + [SMALL_STATE(5817)] = 240638, + [SMALL_STATE(5818)] = 240688, + [SMALL_STATE(5819)] = 240728, + [SMALL_STATE(5820)] = 240792, + [SMALL_STATE(5821)] = 240842, + [SMALL_STATE(5822)] = 240892, + [SMALL_STATE(5823)] = 240942, + [SMALL_STATE(5824)] = 240992, + [SMALL_STATE(5825)] = 241042, + [SMALL_STATE(5826)] = 241082, + [SMALL_STATE(5827)] = 241134, + [SMALL_STATE(5828)] = 241186, + [SMALL_STATE(5829)] = 241238, + [SMALL_STATE(5830)] = 241266, + [SMALL_STATE(5831)] = 241306, + [SMALL_STATE(5832)] = 241358, + [SMALL_STATE(5833)] = 241410, + [SMALL_STATE(5834)] = 241474, + [SMALL_STATE(5835)] = 241514, + [SMALL_STATE(5836)] = 241546, + [SMALL_STATE(5837)] = 241598, + [SMALL_STATE(5838)] = 241638, + [SMALL_STATE(5839)] = 241682, + [SMALL_STATE(5840)] = 241734, + [SMALL_STATE(5841)] = 241784, + [SMALL_STATE(5842)] = 241824, + [SMALL_STATE(5843)] = 241876, + [SMALL_STATE(5844)] = 241928, + [SMALL_STATE(5845)] = 241992, + [SMALL_STATE(5846)] = 242032, + [SMALL_STATE(5847)] = 242096, + [SMALL_STATE(5848)] = 242136, + [SMALL_STATE(5849)] = 242176, + [SMALL_STATE(5850)] = 242216, + [SMALL_STATE(5851)] = 242256, + [SMALL_STATE(5852)] = 242284, + [SMALL_STATE(5853)] = 242316, + [SMALL_STATE(5854)] = 242344, + [SMALL_STATE(5855)] = 242392, + [SMALL_STATE(5856)] = 242438, + [SMALL_STATE(5857)] = 242484, + [SMALL_STATE(5858)] = 242528, + [SMALL_STATE(5859)] = 242570, + [SMALL_STATE(5860)] = 242610, + [SMALL_STATE(5861)] = 242646, + [SMALL_STATE(5862)] = 242680, + [SMALL_STATE(5863)] = 242732, + [SMALL_STATE(5864)] = 242784, + [SMALL_STATE(5865)] = 242824, + [SMALL_STATE(5866)] = 242864, + [SMALL_STATE(5867)] = 242892, + [SMALL_STATE(5868)] = 242944, + [SMALL_STATE(5869)] = 242996, + [SMALL_STATE(5870)] = 243060, + [SMALL_STATE(5871)] = 243110, + [SMALL_STATE(5872)] = 243137, + [SMALL_STATE(5873)] = 243184, + [SMALL_STATE(5874)] = 243217, + [SMALL_STATE(5875)] = 243244, + [SMALL_STATE(5876)] = 243281, + [SMALL_STATE(5877)] = 243326, + [SMALL_STATE(5878)] = 243373, + [SMALL_STATE(5879)] = 243418, + [SMALL_STATE(5880)] = 243445, + [SMALL_STATE(5881)] = 243492, + [SMALL_STATE(5882)] = 243519, + [SMALL_STATE(5883)] = 243558, + [SMALL_STATE(5884)] = 243597, + [SMALL_STATE(5885)] = 243636, + [SMALL_STATE(5886)] = 243675, + [SMALL_STATE(5887)] = 243714, + [SMALL_STATE(5888)] = 243753, + [SMALL_STATE(5889)] = 243792, + [SMALL_STATE(5890)] = 243831, + [SMALL_STATE(5891)] = 243858, + [SMALL_STATE(5892)] = 243885, + [SMALL_STATE(5893)] = 243912, + [SMALL_STATE(5894)] = 243945, + [SMALL_STATE(5895)] = 243990, + [SMALL_STATE(5896)] = 244047, + [SMALL_STATE(5897)] = 244104, + [SMALL_STATE(5898)] = 244133, + [SMALL_STATE(5899)] = 244180, + [SMALL_STATE(5900)] = 244227, + [SMALL_STATE(5901)] = 244254, + [SMALL_STATE(5902)] = 244281, + [SMALL_STATE(5903)] = 244314, + [SMALL_STATE(5904)] = 244363, + [SMALL_STATE(5905)] = 244390, + [SMALL_STATE(5906)] = 244435, + [SMALL_STATE(5907)] = 244490, + [SMALL_STATE(5908)] = 244517, + [SMALL_STATE(5909)] = 244562, + [SMALL_STATE(5910)] = 244589, + [SMALL_STATE(5911)] = 244620, + [SMALL_STATE(5912)] = 244667, + [SMALL_STATE(5913)] = 244694, + [SMALL_STATE(5914)] = 244721, + [SMALL_STATE(5915)] = 244768, + [SMALL_STATE(5916)] = 244815, + [SMALL_STATE(5917)] = 244862, + [SMALL_STATE(5918)] = 244895, + [SMALL_STATE(5919)] = 244942, + [SMALL_STATE(5920)] = 244987, + [SMALL_STATE(5921)] = 245014, + [SMALL_STATE(5922)] = 245059, + [SMALL_STATE(5923)] = 245106, + [SMALL_STATE(5924)] = 245163, + [SMALL_STATE(5925)] = 245190, + [SMALL_STATE(5926)] = 245217, + [SMALL_STATE(5927)] = 245274, + [SMALL_STATE(5928)] = 245301, + [SMALL_STATE(5929)] = 245346, + [SMALL_STATE(5930)] = 245393, + [SMALL_STATE(5931)] = 245434, + [SMALL_STATE(5932)] = 245491, + [SMALL_STATE(5933)] = 245534, + [SMALL_STATE(5934)] = 245567, + [SMALL_STATE(5935)] = 245594, + [SMALL_STATE(5936)] = 245621, + [SMALL_STATE(5937)] = 245666, + [SMALL_STATE(5938)] = 245701, + [SMALL_STATE(5939)] = 245746, + [SMALL_STATE(5940)] = 245793, + [SMALL_STATE(5941)] = 245820, + [SMALL_STATE(5942)] = 245859, + [SMALL_STATE(5943)] = 245906, + [SMALL_STATE(5944)] = 245937, + [SMALL_STATE(5945)] = 245980, + [SMALL_STATE(5946)] = 246025, + [SMALL_STATE(5947)] = 246072, + [SMALL_STATE(5948)] = 246115, + [SMALL_STATE(5949)] = 246142, + [SMALL_STATE(5950)] = 246169, + [SMALL_STATE(5951)] = 246216, + [SMALL_STATE(5952)] = 246243, + [SMALL_STATE(5953)] = 246270, + [SMALL_STATE(5954)] = 246297, + [SMALL_STATE(5955)] = 246342, + [SMALL_STATE(5956)] = 246387, + [SMALL_STATE(5957)] = 246444, + [SMALL_STATE(5958)] = 246491, + [SMALL_STATE(5959)] = 246518, + [SMALL_STATE(5960)] = 246545, + [SMALL_STATE(5961)] = 246590, + [SMALL_STATE(5962)] = 246617, + [SMALL_STATE(5963)] = 246646, + [SMALL_STATE(5964)] = 246691, + [SMALL_STATE(5965)] = 246718, + [SMALL_STATE(5966)] = 246745, + [SMALL_STATE(5967)] = 246794, + [SMALL_STATE(5968)] = 246851, + [SMALL_STATE(5969)] = 246887, + [SMALL_STATE(5970)] = 246921, + [SMALL_STATE(5971)] = 246949, + [SMALL_STATE(5972)] = 246983, + [SMALL_STATE(5973)] = 247037, + [SMALL_STATE(5974)] = 247063, + [SMALL_STATE(5975)] = 247099, + [SMALL_STATE(5976)] = 247133, + [SMALL_STATE(5977)] = 247185, + [SMALL_STATE(5978)] = 247211, + [SMALL_STATE(5979)] = 247237, + [SMALL_STATE(5980)] = 247263, + [SMALL_STATE(5981)] = 247297, + [SMALL_STATE(5982)] = 247323, + [SMALL_STATE(5983)] = 247349, + [SMALL_STATE(5984)] = 247383, + [SMALL_STATE(5985)] = 247409, + [SMALL_STATE(5986)] = 247443, + [SMALL_STATE(5987)] = 247469, + [SMALL_STATE(5988)] = 247495, + [SMALL_STATE(5989)] = 247529, + [SMALL_STATE(5990)] = 247583, + [SMALL_STATE(5991)] = 247621, + [SMALL_STATE(5992)] = 247673, + [SMALL_STATE(5993)] = 247707, + [SMALL_STATE(5994)] = 247741, + [SMALL_STATE(5995)] = 247775, + [SMALL_STATE(5996)] = 247813, + [SMALL_STATE(5997)] = 247851, + [SMALL_STATE(5998)] = 247889, + [SMALL_STATE(5999)] = 247931, + [SMALL_STATE(6000)] = 247969, + [SMALL_STATE(6001)] = 247999, + [SMALL_STATE(6002)] = 248037, + [SMALL_STATE(6003)] = 248075, + [SMALL_STATE(6004)] = 248113, + [SMALL_STATE(6005)] = 248139, + [SMALL_STATE(6006)] = 248193, + [SMALL_STATE(6007)] = 248223, + [SMALL_STATE(6008)] = 248277, + [SMALL_STATE(6009)] = 248303, + [SMALL_STATE(6010)] = 248329, + [SMALL_STATE(6011)] = 248363, + [SMALL_STATE(6012)] = 248389, + [SMALL_STATE(6013)] = 248423, + [SMALL_STATE(6014)] = 248477, + [SMALL_STATE(6015)] = 248511, + [SMALL_STATE(6016)] = 248545, + [SMALL_STATE(6017)] = 248579, + [SMALL_STATE(6018)] = 248609, + [SMALL_STATE(6019)] = 248635, + [SMALL_STATE(6020)] = 248689, + [SMALL_STATE(6021)] = 248717, + [SMALL_STATE(6022)] = 248753, + [SMALL_STATE(6023)] = 248807, + [SMALL_STATE(6024)] = 248841, + [SMALL_STATE(6025)] = 248867, + [SMALL_STATE(6026)] = 248893, + [SMALL_STATE(6027)] = 248919, + [SMALL_STATE(6028)] = 248967, + [SMALL_STATE(6029)] = 249003, + [SMALL_STATE(6030)] = 249055, + [SMALL_STATE(6031)] = 249103, + [SMALL_STATE(6032)] = 249137, + [SMALL_STATE(6033)] = 249189, + [SMALL_STATE(6034)] = 249241, + [SMALL_STATE(6035)] = 249277, + [SMALL_STATE(6036)] = 249307, + [SMALL_STATE(6037)] = 249333, + [SMALL_STATE(6038)] = 249381, + [SMALL_STATE(6039)] = 249407, + [SMALL_STATE(6040)] = 249461, + [SMALL_STATE(6041)] = 249491, + [SMALL_STATE(6042)] = 249539, + [SMALL_STATE(6043)] = 249573, + [SMALL_STATE(6044)] = 249599, + [SMALL_STATE(6045)] = 249633, + [SMALL_STATE(6046)] = 249659, + [SMALL_STATE(6047)] = 249693, + [SMALL_STATE(6048)] = 249728, + [SMALL_STATE(6049)] = 249765, + [SMALL_STATE(6050)] = 249802, + [SMALL_STATE(6051)] = 249833, + [SMALL_STATE(6052)] = 249868, + [SMALL_STATE(6053)] = 249895, + [SMALL_STATE(6054)] = 249932, + [SMALL_STATE(6055)] = 249967, + [SMALL_STATE(6056)] = 249998, + [SMALL_STATE(6057)] = 250035, + [SMALL_STATE(6058)] = 250064, + [SMALL_STATE(6059)] = 250105, + [SMALL_STATE(6060)] = 250148, + [SMALL_STATE(6061)] = 250191, + [SMALL_STATE(6062)] = 250228, + [SMALL_STATE(6063)] = 250263, + [SMALL_STATE(6064)] = 250300, + [SMALL_STATE(6065)] = 250343, + [SMALL_STATE(6066)] = 250386, + [SMALL_STATE(6067)] = 250423, + [SMALL_STATE(6068)] = 250460, + [SMALL_STATE(6069)] = 250501, + [SMALL_STATE(6070)] = 250532, + [SMALL_STATE(6071)] = 250569, + [SMALL_STATE(6072)] = 250602, + [SMALL_STATE(6073)] = 250643, + [SMALL_STATE(6074)] = 250684, + [SMALL_STATE(6075)] = 250719, + [SMALL_STATE(6076)] = 250756, + [SMALL_STATE(6077)] = 250793, + [SMALL_STATE(6078)] = 250830, + [SMALL_STATE(6079)] = 250873, + [SMALL_STATE(6080)] = 250898, + [SMALL_STATE(6081)] = 250945, + [SMALL_STATE(6082)] = 250974, + [SMALL_STATE(6083)] = 251011, + [SMALL_STATE(6084)] = 251048, + [SMALL_STATE(6085)] = 251085, + [SMALL_STATE(6086)] = 251128, + [SMALL_STATE(6087)] = 251169, + [SMALL_STATE(6088)] = 251206, + [SMALL_STATE(6089)] = 251237, + [SMALL_STATE(6090)] = 251261, + [SMALL_STATE(6091)] = 251301, + [SMALL_STATE(6092)] = 251341, + [SMALL_STATE(6093)] = 251373, + [SMALL_STATE(6094)] = 251397, + [SMALL_STATE(6095)] = 251437, + [SMALL_STATE(6096)] = 251461, + [SMALL_STATE(6097)] = 251493, + [SMALL_STATE(6098)] = 251517, + [SMALL_STATE(6099)] = 251557, + [SMALL_STATE(6100)] = 251581, + [SMALL_STATE(6101)] = 251605, + [SMALL_STATE(6102)] = 251629, + [SMALL_STATE(6103)] = 251665, + [SMALL_STATE(6104)] = 251689, + [SMALL_STATE(6105)] = 251725, + [SMALL_STATE(6106)] = 251765, + [SMALL_STATE(6107)] = 251801, + [SMALL_STATE(6108)] = 251825, + [SMALL_STATE(6109)] = 251865, + [SMALL_STATE(6110)] = 251889, + [SMALL_STATE(6111)] = 251929, + [SMALL_STATE(6112)] = 251961, + [SMALL_STATE(6113)] = 251985, + [SMALL_STATE(6114)] = 252009, + [SMALL_STATE(6115)] = 252045, + [SMALL_STATE(6116)] = 252077, + [SMALL_STATE(6117)] = 252101, + [SMALL_STATE(6118)] = 252133, + [SMALL_STATE(6119)] = 252173, + [SMALL_STATE(6120)] = 252209, + [SMALL_STATE(6121)] = 252241, + [SMALL_STATE(6122)] = 252277, + [SMALL_STATE(6123)] = 252301, + [SMALL_STATE(6124)] = 252333, + [SMALL_STATE(6125)] = 252365, + [SMALL_STATE(6126)] = 252389, + [SMALL_STATE(6127)] = 252421, + [SMALL_STATE(6128)] = 252445, + [SMALL_STATE(6129)] = 252487, + [SMALL_STATE(6130)] = 252527, + [SMALL_STATE(6131)] = 252559, + [SMALL_STATE(6132)] = 252583, + [SMALL_STATE(6133)] = 252607, + [SMALL_STATE(6134)] = 252631, + [SMALL_STATE(6135)] = 252663, + [SMALL_STATE(6136)] = 252695, + [SMALL_STATE(6137)] = 252719, + [SMALL_STATE(6138)] = 252743, + [SMALL_STATE(6139)] = 252767, + [SMALL_STATE(6140)] = 252799, + [SMALL_STATE(6141)] = 252831, + [SMALL_STATE(6142)] = 252855, + [SMALL_STATE(6143)] = 252887, + [SMALL_STATE(6144)] = 252919, + [SMALL_STATE(6145)] = 252965, + [SMALL_STATE(6146)] = 252989, + [SMALL_STATE(6147)] = 253029, + [SMALL_STATE(6148)] = 253061, + [SMALL_STATE(6149)] = 253093, + [SMALL_STATE(6150)] = 253117, + [SMALL_STATE(6151)] = 253149, + [SMALL_STATE(6152)] = 253181, + [SMALL_STATE(6153)] = 253213, + [SMALL_STATE(6154)] = 253237, + [SMALL_STATE(6155)] = 253261, + [SMALL_STATE(6156)] = 253293, + [SMALL_STATE(6157)] = 253317, + [SMALL_STATE(6158)] = 253353, + [SMALL_STATE(6159)] = 253377, + [SMALL_STATE(6160)] = 253417, + [SMALL_STATE(6161)] = 253441, + [SMALL_STATE(6162)] = 253465, + [SMALL_STATE(6163)] = 253505, + [SMALL_STATE(6164)] = 253537, + [SMALL_STATE(6165)] = 253561, + [SMALL_STATE(6166)] = 253589, + [SMALL_STATE(6167)] = 253629, + [SMALL_STATE(6168)] = 253653, + [SMALL_STATE(6169)] = 253693, + [SMALL_STATE(6170)] = 253725, + [SMALL_STATE(6171)] = 253757, + [SMALL_STATE(6172)] = 253789, + [SMALL_STATE(6173)] = 253815, + [SMALL_STATE(6174)] = 253855, + [SMALL_STATE(6175)] = 253879, + [SMALL_STATE(6176)] = 253919, + [SMALL_STATE(6177)] = 253951, + [SMALL_STATE(6178)] = 253975, + [SMALL_STATE(6179)] = 253999, + [SMALL_STATE(6180)] = 254031, + [SMALL_STATE(6181)] = 254067, + [SMALL_STATE(6182)] = 254091, + [SMALL_STATE(6183)] = 254123, + [SMALL_STATE(6184)] = 254147, + [SMALL_STATE(6185)] = 254187, + [SMALL_STATE(6186)] = 254219, + [SMALL_STATE(6187)] = 254243, + [SMALL_STATE(6188)] = 254283, + [SMALL_STATE(6189)] = 254315, + [SMALL_STATE(6190)] = 254339, + [SMALL_STATE(6191)] = 254363, + [SMALL_STATE(6192)] = 254387, + [SMALL_STATE(6193)] = 254415, + [SMALL_STATE(6194)] = 254455, + [SMALL_STATE(6195)] = 254487, + [SMALL_STATE(6196)] = 254519, + [SMALL_STATE(6197)] = 254543, + [SMALL_STATE(6198)] = 254567, + [SMALL_STATE(6199)] = 254607, + [SMALL_STATE(6200)] = 254631, + [SMALL_STATE(6201)] = 254655, + [SMALL_STATE(6202)] = 254679, + [SMALL_STATE(6203)] = 254703, + [SMALL_STATE(6204)] = 254727, + [SMALL_STATE(6205)] = 254759, + [SMALL_STATE(6206)] = 254794, + [SMALL_STATE(6207)] = 254829, + [SMALL_STATE(6208)] = 254862, + [SMALL_STATE(6209)] = 254895, + [SMALL_STATE(6210)] = 254924, + [SMALL_STATE(6211)] = 254959, + [SMALL_STATE(6212)] = 254988, + [SMALL_STATE(6213)] = 255017, + [SMALL_STATE(6214)] = 255052, + [SMALL_STATE(6215)] = 255085, + [SMALL_STATE(6216)] = 255120, + [SMALL_STATE(6217)] = 255155, + [SMALL_STATE(6218)] = 255188, + [SMALL_STATE(6219)] = 255227, + [SMALL_STATE(6220)] = 255266, + [SMALL_STATE(6221)] = 255301, + [SMALL_STATE(6222)] = 255334, + [SMALL_STATE(6223)] = 255369, + [SMALL_STATE(6224)] = 255404, + [SMALL_STATE(6225)] = 255439, + [SMALL_STATE(6226)] = 255472, + [SMALL_STATE(6227)] = 255511, + [SMALL_STATE(6228)] = 255550, + [SMALL_STATE(6229)] = 255585, + [SMALL_STATE(6230)] = 255620, + [SMALL_STATE(6231)] = 255655, + [SMALL_STATE(6232)] = 255690, + [SMALL_STATE(6233)] = 255725, + [SMALL_STATE(6234)] = 255760, + [SMALL_STATE(6235)] = 255793, + [SMALL_STATE(6236)] = 255832, + [SMALL_STATE(6237)] = 255863, + [SMALL_STATE(6238)] = 255894, + [SMALL_STATE(6239)] = 255925, + [SMALL_STATE(6240)] = 255956, + [SMALL_STATE(6241)] = 255987, + [SMALL_STATE(6242)] = 256018, + [SMALL_STATE(6243)] = 256049, + [SMALL_STATE(6244)] = 256080, + [SMALL_STATE(6245)] = 256115, + [SMALL_STATE(6246)] = 256148, + [SMALL_STATE(6247)] = 256177, + [SMALL_STATE(6248)] = 256206, + [SMALL_STATE(6249)] = 256245, + [SMALL_STATE(6250)] = 256280, + [SMALL_STATE(6251)] = 256313, + [SMALL_STATE(6252)] = 256348, + [SMALL_STATE(6253)] = 256383, + [SMALL_STATE(6254)] = 256418, + [SMALL_STATE(6255)] = 256453, + [SMALL_STATE(6256)] = 256488, + [SMALL_STATE(6257)] = 256523, + [SMALL_STATE(6258)] = 256558, + [SMALL_STATE(6259)] = 256593, + [SMALL_STATE(6260)] = 256628, + [SMALL_STATE(6261)] = 256657, + [SMALL_STATE(6262)] = 256692, + [SMALL_STATE(6263)] = 256721, + [SMALL_STATE(6264)] = 256748, + [SMALL_STATE(6265)] = 256781, + [SMALL_STATE(6266)] = 256810, + [SMALL_STATE(6267)] = 256839, + [SMALL_STATE(6268)] = 256868, + [SMALL_STATE(6269)] = 256897, + [SMALL_STATE(6270)] = 256930, + [SMALL_STATE(6271)] = 256963, + [SMALL_STATE(6272)] = 256992, + [SMALL_STATE(6273)] = 257025, + [SMALL_STATE(6274)] = 257054, + [SMALL_STATE(6275)] = 257083, + [SMALL_STATE(6276)] = 257112, + [SMALL_STATE(6277)] = 257147, + [SMALL_STATE(6278)] = 257182, + [SMALL_STATE(6279)] = 257221, + [SMALL_STATE(6280)] = 257250, + [SMALL_STATE(6281)] = 257283, + [SMALL_STATE(6282)] = 257318, + [SMALL_STATE(6283)] = 257347, + [SMALL_STATE(6284)] = 257376, + [SMALL_STATE(6285)] = 257415, + [SMALL_STATE(6286)] = 257444, + [SMALL_STATE(6287)] = 257473, + [SMALL_STATE(6288)] = 257502, + [SMALL_STATE(6289)] = 257531, + [SMALL_STATE(6290)] = 257564, + [SMALL_STATE(6291)] = 257603, + [SMALL_STATE(6292)] = 257636, + [SMALL_STATE(6293)] = 257666, + [SMALL_STATE(6294)] = 257704, + [SMALL_STATE(6295)] = 257734, + [SMALL_STATE(6296)] = 257764, + [SMALL_STATE(6297)] = 257794, + [SMALL_STATE(6298)] = 257824, + [SMALL_STATE(6299)] = 257854, + [SMALL_STATE(6300)] = 257886, + [SMALL_STATE(6301)] = 257918, + [SMALL_STATE(6302)] = 257950, + [SMALL_STATE(6303)] = 257982, + [SMALL_STATE(6304)] = 258020, + [SMALL_STATE(6305)] = 258050, + [SMALL_STATE(6306)] = 258080, + [SMALL_STATE(6307)] = 258110, + [SMALL_STATE(6308)] = 258140, + [SMALL_STATE(6309)] = 258170, + [SMALL_STATE(6310)] = 258212, + [SMALL_STATE(6311)] = 258244, + [SMALL_STATE(6312)] = 258276, + [SMALL_STATE(6313)] = 258308, + [SMALL_STATE(6314)] = 258340, + [SMALL_STATE(6315)] = 258382, + [SMALL_STATE(6316)] = 258420, + [SMALL_STATE(6317)] = 258458, + [SMALL_STATE(6318)] = 258492, + [SMALL_STATE(6319)] = 258526, + [SMALL_STATE(6320)] = 258564, + [SMALL_STATE(6321)] = 258598, + [SMALL_STATE(6322)] = 258632, + [SMALL_STATE(6323)] = 258666, + [SMALL_STATE(6324)] = 258706, + [SMALL_STATE(6325)] = 258746, + [SMALL_STATE(6326)] = 258784, + [SMALL_STATE(6327)] = 258822, + [SMALL_STATE(6328)] = 258860, + [SMALL_STATE(6329)] = 258898, + [SMALL_STATE(6330)] = 258936, + [SMALL_STATE(6331)] = 258978, + [SMALL_STATE(6332)] = 259008, + [SMALL_STATE(6333)] = 259038, + [SMALL_STATE(6334)] = 259068, + [SMALL_STATE(6335)] = 259098, + [SMALL_STATE(6336)] = 259128, + [SMALL_STATE(6337)] = 259158, + [SMALL_STATE(6338)] = 259188, + [SMALL_STATE(6339)] = 259228, + [SMALL_STATE(6340)] = 259250, + [SMALL_STATE(6341)] = 259288, + [SMALL_STATE(6342)] = 259330, + [SMALL_STATE(6343)] = 259368, + [SMALL_STATE(6344)] = 259390, + [SMALL_STATE(6345)] = 259424, + [SMALL_STATE(6346)] = 259458, + [SMALL_STATE(6347)] = 259492, + [SMALL_STATE(6348)] = 259526, + [SMALL_STATE(6349)] = 259560, + [SMALL_STATE(6350)] = 259594, + [SMALL_STATE(6351)] = 259628, + [SMALL_STATE(6352)] = 259662, + [SMALL_STATE(6353)] = 259700, + [SMALL_STATE(6354)] = 259722, + [SMALL_STATE(6355)] = 259754, + [SMALL_STATE(6356)] = 259786, + [SMALL_STATE(6357)] = 259826, + [SMALL_STATE(6358)] = 259858, + [SMALL_STATE(6359)] = 259890, + [SMALL_STATE(6360)] = 259922, + [SMALL_STATE(6361)] = 259948, + [SMALL_STATE(6362)] = 259986, + [SMALL_STATE(6363)] = 260026, + [SMALL_STATE(6364)] = 260050, + [SMALL_STATE(6365)] = 260090, + [SMALL_STATE(6366)] = 260128, + [SMALL_STATE(6367)] = 260168, + [SMALL_STATE(6368)] = 260208, + [SMALL_STATE(6369)] = 260248, + [SMALL_STATE(6370)] = 260270, + [SMALL_STATE(6371)] = 260310, + [SMALL_STATE(6372)] = 260350, + [SMALL_STATE(6373)] = 260390, + [SMALL_STATE(6374)] = 260430, + [SMALL_STATE(6375)] = 260452, + [SMALL_STATE(6376)] = 260492, + [SMALL_STATE(6377)] = 260532, + [SMALL_STATE(6378)] = 260572, + [SMALL_STATE(6379)] = 260612, + [SMALL_STATE(6380)] = 260652, + [SMALL_STATE(6381)] = 260694, + [SMALL_STATE(6382)] = 260732, + [SMALL_STATE(6383)] = 260772, + [SMALL_STATE(6384)] = 260812, + [SMALL_STATE(6385)] = 260852, + [SMALL_STATE(6386)] = 260876, + [SMALL_STATE(6387)] = 260914, + [SMALL_STATE(6388)] = 260952, + [SMALL_STATE(6389)] = 260992, + [SMALL_STATE(6390)] = 261030, + [SMALL_STATE(6391)] = 261065, + [SMALL_STATE(6392)] = 261092, + [SMALL_STATE(6393)] = 261127, + [SMALL_STATE(6394)] = 261160, + [SMALL_STATE(6395)] = 261187, + [SMALL_STATE(6396)] = 261222, + [SMALL_STATE(6397)] = 261261, + [SMALL_STATE(6398)] = 261294, + [SMALL_STATE(6399)] = 261327, + [SMALL_STATE(6400)] = 261360, + [SMALL_STATE(6401)] = 261393, + [SMALL_STATE(6402)] = 261426, + [SMALL_STATE(6403)] = 261461, + [SMALL_STATE(6404)] = 261494, + [SMALL_STATE(6405)] = 261529, + [SMALL_STATE(6406)] = 261564, + [SMALL_STATE(6407)] = 261603, + [SMALL_STATE(6408)] = 261640, + [SMALL_STATE(6409)] = 261673, + [SMALL_STATE(6410)] = 261700, + [SMALL_STATE(6411)] = 261727, + [SMALL_STATE(6412)] = 261756, + [SMALL_STATE(6413)] = 261785, + [SMALL_STATE(6414)] = 261814, + [SMALL_STATE(6415)] = 261849, + [SMALL_STATE(6416)] = 261878, + [SMALL_STATE(6417)] = 261907, + [SMALL_STATE(6418)] = 261936, + [SMALL_STATE(6419)] = 261961, + [SMALL_STATE(6420)] = 261990, + [SMALL_STATE(6421)] = 262019, + [SMALL_STATE(6422)] = 262052, + [SMALL_STATE(6423)] = 262085, + [SMALL_STATE(6424)] = 262118, + [SMALL_STATE(6425)] = 262151, + [SMALL_STATE(6426)] = 262184, + [SMALL_STATE(6427)] = 262217, + [SMALL_STATE(6428)] = 262244, + [SMALL_STATE(6429)] = 262277, + [SMALL_STATE(6430)] = 262310, + [SMALL_STATE(6431)] = 262335, + [SMALL_STATE(6432)] = 262368, + [SMALL_STATE(6433)] = 262401, + [SMALL_STATE(6434)] = 262434, + [SMALL_STATE(6435)] = 262461, + [SMALL_STATE(6436)] = 262486, + [SMALL_STATE(6437)] = 262521, + [SMALL_STATE(6438)] = 262554, + [SMALL_STATE(6439)] = 262587, + [SMALL_STATE(6440)] = 262620, + [SMALL_STATE(6441)] = 262653, + [SMALL_STATE(6442)] = 262678, + [SMALL_STATE(6443)] = 262711, + [SMALL_STATE(6444)] = 262744, + [SMALL_STATE(6445)] = 262771, + [SMALL_STATE(6446)] = 262796, + [SMALL_STATE(6447)] = 262835, + [SMALL_STATE(6448)] = 262874, + [SMALL_STATE(6449)] = 262907, + [SMALL_STATE(6450)] = 262942, + [SMALL_STATE(6451)] = 262977, + [SMALL_STATE(6452)] = 263010, + [SMALL_STATE(6453)] = 263043, + [SMALL_STATE(6454)] = 263070, + [SMALL_STATE(6455)] = 263097, + [SMALL_STATE(6456)] = 263132, + [SMALL_STATE(6457)] = 263165, + [SMALL_STATE(6458)] = 263192, + [SMALL_STATE(6459)] = 263219, + [SMALL_STATE(6460)] = 263254, + [SMALL_STATE(6461)] = 263287, + [SMALL_STATE(6462)] = 263320, + [SMALL_STATE(6463)] = 263357, + [SMALL_STATE(6464)] = 263394, + [SMALL_STATE(6465)] = 263427, + [SMALL_STATE(6466)] = 263454, + [SMALL_STATE(6467)] = 263493, + [SMALL_STATE(6468)] = 263526, + [SMALL_STATE(6469)] = 263546, + [SMALL_STATE(6470)] = 263572, + [SMALL_STATE(6471)] = 263598, + [SMALL_STATE(6472)] = 263618, + [SMALL_STATE(6473)] = 263654, + [SMALL_STATE(6474)] = 263690, + [SMALL_STATE(6475)] = 263726, + [SMALL_STATE(6476)] = 263746, + [SMALL_STATE(6477)] = 263766, + [SMALL_STATE(6478)] = 263802, + [SMALL_STATE(6479)] = 263832, + [SMALL_STATE(6480)] = 263868, + [SMALL_STATE(6481)] = 263892, + [SMALL_STATE(6482)] = 263912, + [SMALL_STATE(6483)] = 263948, + [SMALL_STATE(6484)] = 263974, + [SMALL_STATE(6485)] = 264004, + [SMALL_STATE(6486)] = 264024, + [SMALL_STATE(6487)] = 264060, + [SMALL_STATE(6488)] = 264090, + [SMALL_STATE(6489)] = 264126, + [SMALL_STATE(6490)] = 264148, + [SMALL_STATE(6491)] = 264178, + [SMALL_STATE(6492)] = 264208, + [SMALL_STATE(6493)] = 264244, + [SMALL_STATE(6494)] = 264280, + [SMALL_STATE(6495)] = 264310, + [SMALL_STATE(6496)] = 264346, + [SMALL_STATE(6497)] = 264366, + [SMALL_STATE(6498)] = 264402, + [SMALL_STATE(6499)] = 264438, + [SMALL_STATE(6500)] = 264468, + [SMALL_STATE(6501)] = 264498, + [SMALL_STATE(6502)] = 264524, + [SMALL_STATE(6503)] = 264554, + [SMALL_STATE(6504)] = 264590, + [SMALL_STATE(6505)] = 264610, + [SMALL_STATE(6506)] = 264640, + [SMALL_STATE(6507)] = 264666, + [SMALL_STATE(6508)] = 264686, + [SMALL_STATE(6509)] = 264706, + [SMALL_STATE(6510)] = 264736, + [SMALL_STATE(6511)] = 264772, + [SMALL_STATE(6512)] = 264796, + [SMALL_STATE(6513)] = 264832, + [SMALL_STATE(6514)] = 264858, + [SMALL_STATE(6515)] = 264888, + [SMALL_STATE(6516)] = 264908, + [SMALL_STATE(6517)] = 264944, + [SMALL_STATE(6518)] = 264980, + [SMALL_STATE(6519)] = 265006, + [SMALL_STATE(6520)] = 265042, + [SMALL_STATE(6521)] = 265068, + [SMALL_STATE(6522)] = 265104, + [SMALL_STATE(6523)] = 265126, + [SMALL_STATE(6524)] = 265161, + [SMALL_STATE(6525)] = 265192, + [SMALL_STATE(6526)] = 265225, + [SMALL_STATE(6527)] = 265258, + [SMALL_STATE(6528)] = 265283, + [SMALL_STATE(6529)] = 265312, + [SMALL_STATE(6530)] = 265347, + [SMALL_STATE(6531)] = 265372, + [SMALL_STATE(6532)] = 265403, + [SMALL_STATE(6533)] = 265434, + [SMALL_STATE(6534)] = 265469, + [SMALL_STATE(6535)] = 265500, + [SMALL_STATE(6536)] = 265535, + [SMALL_STATE(6537)] = 265560, + [SMALL_STATE(6538)] = 265591, + [SMALL_STATE(6539)] = 265620, + [SMALL_STATE(6540)] = 265645, + [SMALL_STATE(6541)] = 265666, + [SMALL_STATE(6542)] = 265691, + [SMALL_STATE(6543)] = 265716, + [SMALL_STATE(6544)] = 265747, + [SMALL_STATE(6545)] = 265776, + [SMALL_STATE(6546)] = 265811, + [SMALL_STATE(6547)] = 265836, + [SMALL_STATE(6548)] = 265861, + [SMALL_STATE(6549)] = 265892, + [SMALL_STATE(6550)] = 265921, + [SMALL_STATE(6551)] = 265946, + [SMALL_STATE(6552)] = 265981, + [SMALL_STATE(6553)] = 266010, + [SMALL_STATE(6554)] = 266045, + [SMALL_STATE(6555)] = 266070, + [SMALL_STATE(6556)] = 266101, + [SMALL_STATE(6557)] = 266118, + [SMALL_STATE(6558)] = 266149, + [SMALL_STATE(6559)] = 266180, + [SMALL_STATE(6560)] = 266211, + [SMALL_STATE(6561)] = 266242, + [SMALL_STATE(6562)] = 266277, + [SMALL_STATE(6563)] = 266304, + [SMALL_STATE(6564)] = 266335, + [SMALL_STATE(6565)] = 266366, + [SMALL_STATE(6566)] = 266383, + [SMALL_STATE(6567)] = 266418, + [SMALL_STATE(6568)] = 266445, + [SMALL_STATE(6569)] = 266472, + [SMALL_STATE(6570)] = 266501, + [SMALL_STATE(6571)] = 266532, + [SMALL_STATE(6572)] = 266567, + [SMALL_STATE(6573)] = 266594, + [SMALL_STATE(6574)] = 266621, + [SMALL_STATE(6575)] = 266652, + [SMALL_STATE(6576)] = 266679, + [SMALL_STATE(6577)] = 266708, + [SMALL_STATE(6578)] = 266741, + [SMALL_STATE(6579)] = 266772, + [SMALL_STATE(6580)] = 266803, + [SMALL_STATE(6581)] = 266830, + [SMALL_STATE(6582)] = 266863, + [SMALL_STATE(6583)] = 266890, + [SMALL_STATE(6584)] = 266915, + [SMALL_STATE(6585)] = 266940, + [SMALL_STATE(6586)] = 266967, + [SMALL_STATE(6587)] = 266994, + [SMALL_STATE(6588)] = 267011, + [SMALL_STATE(6589)] = 267036, + [SMALL_STATE(6590)] = 267063, + [SMALL_STATE(6591)] = 267088, + [SMALL_STATE(6592)] = 267107, + [SMALL_STATE(6593)] = 267138, + [SMALL_STATE(6594)] = 267165, + [SMALL_STATE(6595)] = 267200, + [SMALL_STATE(6596)] = 267231, + [SMALL_STATE(6597)] = 267258, + [SMALL_STATE(6598)] = 267285, + [SMALL_STATE(6599)] = 267312, + [SMALL_STATE(6600)] = 267339, + [SMALL_STATE(6601)] = 267366, + [SMALL_STATE(6602)] = 267393, + [SMALL_STATE(6603)] = 267420, + [SMALL_STATE(6604)] = 267447, + [SMALL_STATE(6605)] = 267474, + [SMALL_STATE(6606)] = 267505, + [SMALL_STATE(6607)] = 267532, + [SMALL_STATE(6608)] = 267551, + [SMALL_STATE(6609)] = 267570, + [SMALL_STATE(6610)] = 267589, + [SMALL_STATE(6611)] = 267616, + [SMALL_STATE(6612)] = 267643, + [SMALL_STATE(6613)] = 267670, + [SMALL_STATE(6614)] = 267697, + [SMALL_STATE(6615)] = 267714, + [SMALL_STATE(6616)] = 267733, + [SMALL_STATE(6617)] = 267752, + [SMALL_STATE(6618)] = 267771, + [SMALL_STATE(6619)] = 267806, + [SMALL_STATE(6620)] = 267837, + [SMALL_STATE(6621)] = 267860, + [SMALL_STATE(6622)] = 267889, + [SMALL_STATE(6623)] = 267920, + [SMALL_STATE(6624)] = 267949, + [SMALL_STATE(6625)] = 267966, + [SMALL_STATE(6626)] = 267995, + [SMALL_STATE(6627)] = 268020, + [SMALL_STATE(6628)] = 268053, + [SMALL_STATE(6629)] = 268078, + [SMALL_STATE(6630)] = 268109, + [SMALL_STATE(6631)] = 268138, + [SMALL_STATE(6632)] = 268169, + [SMALL_STATE(6633)] = 268204, + [SMALL_STATE(6634)] = 268239, + [SMALL_STATE(6635)] = 268268, + [SMALL_STATE(6636)] = 268297, + [SMALL_STATE(6637)] = 268326, + [SMALL_STATE(6638)] = 268350, + [SMALL_STATE(6639)] = 268374, + [SMALL_STATE(6640)] = 268398, + [SMALL_STATE(6641)] = 268422, + [SMALL_STATE(6642)] = 268452, + [SMALL_STATE(6643)] = 268482, + [SMALL_STATE(6644)] = 268514, + [SMALL_STATE(6645)] = 268536, + [SMALL_STATE(6646)] = 268558, + [SMALL_STATE(6647)] = 268582, + [SMALL_STATE(6648)] = 268606, + [SMALL_STATE(6649)] = 268628, + [SMALL_STATE(6650)] = 268656, + [SMALL_STATE(6651)] = 268678, + [SMALL_STATE(6652)] = 268702, + [SMALL_STATE(6653)] = 268732, + [SMALL_STATE(6654)] = 268756, + [SMALL_STATE(6655)] = 268782, + [SMALL_STATE(6656)] = 268808, + [SMALL_STATE(6657)] = 268830, + [SMALL_STATE(6658)] = 268856, + [SMALL_STATE(6659)] = 268886, + [SMALL_STATE(6660)] = 268908, + [SMALL_STATE(6661)] = 268932, + [SMALL_STATE(6662)] = 268962, + [SMALL_STATE(6663)] = 268978, + [SMALL_STATE(6664)] = 269008, + [SMALL_STATE(6665)] = 269034, + [SMALL_STATE(6666)] = 269056, + [SMALL_STATE(6667)] = 269078, + [SMALL_STATE(6668)] = 269102, + [SMALL_STATE(6669)] = 269124, + [SMALL_STATE(6670)] = 269148, + [SMALL_STATE(6671)] = 269172, + [SMALL_STATE(6672)] = 269196, + [SMALL_STATE(6673)] = 269220, + [SMALL_STATE(6674)] = 269244, + [SMALL_STATE(6675)] = 269268, + [SMALL_STATE(6676)] = 269298, + [SMALL_STATE(6677)] = 269322, + [SMALL_STATE(6678)] = 269346, + [SMALL_STATE(6679)] = 269370, + [SMALL_STATE(6680)] = 269392, + [SMALL_STATE(6681)] = 269416, + [SMALL_STATE(6682)] = 269438, + [SMALL_STATE(6683)] = 269462, + [SMALL_STATE(6684)] = 269484, + [SMALL_STATE(6685)] = 269508, + [SMALL_STATE(6686)] = 269530, + [SMALL_STATE(6687)] = 269554, + [SMALL_STATE(6688)] = 269585, + [SMALL_STATE(6689)] = 269612, + [SMALL_STATE(6690)] = 269643, + [SMALL_STATE(6691)] = 269674, + [SMALL_STATE(6692)] = 269701, + [SMALL_STATE(6693)] = 269732, + [SMALL_STATE(6694)] = 269755, + [SMALL_STATE(6695)] = 269786, + [SMALL_STATE(6696)] = 269817, + [SMALL_STATE(6697)] = 269844, + [SMALL_STATE(6698)] = 269875, + [SMALL_STATE(6699)] = 269902, + [SMALL_STATE(6700)] = 269933, + [SMALL_STATE(6701)] = 269956, + [SMALL_STATE(6702)] = 269979, + [SMALL_STATE(6703)] = 270002, + [SMALL_STATE(6704)] = 270025, + [SMALL_STATE(6705)] = 270052, + [SMALL_STATE(6706)] = 270083, + [SMALL_STATE(6707)] = 270114, + [SMALL_STATE(6708)] = 270145, + [SMALL_STATE(6709)] = 270176, + [SMALL_STATE(6710)] = 270197, + [SMALL_STATE(6711)] = 270228, + [SMALL_STATE(6712)] = 270249, + [SMALL_STATE(6713)] = 270272, + [SMALL_STATE(6714)] = 270303, + [SMALL_STATE(6715)] = 270330, + [SMALL_STATE(6716)] = 270361, + [SMALL_STATE(6717)] = 270384, + [SMALL_STATE(6718)] = 270415, + [SMALL_STATE(6719)] = 270442, + [SMALL_STATE(6720)] = 270473, + [SMALL_STATE(6721)] = 270496, + [SMALL_STATE(6722)] = 270523, + [SMALL_STATE(6723)] = 270554, + [SMALL_STATE(6724)] = 270581, + [SMALL_STATE(6725)] = 270612, + [SMALL_STATE(6726)] = 270639, + [SMALL_STATE(6727)] = 270666, + [SMALL_STATE(6728)] = 270697, + [SMALL_STATE(6729)] = 270728, + [SMALL_STATE(6730)] = 270759, + [SMALL_STATE(6731)] = 270786, + [SMALL_STATE(6732)] = 270817, + [SMALL_STATE(6733)] = 270848, + [SMALL_STATE(6734)] = 270869, + [SMALL_STATE(6735)] = 270896, + [SMALL_STATE(6736)] = 270923, + [SMALL_STATE(6737)] = 270944, + [SMALL_STATE(6738)] = 270971, + [SMALL_STATE(6739)] = 271002, + [SMALL_STATE(6740)] = 271029, + [SMALL_STATE(6741)] = 271060, + [SMALL_STATE(6742)] = 271087, + [SMALL_STATE(6743)] = 271114, + [SMALL_STATE(6744)] = 271145, + [SMALL_STATE(6745)] = 271176, + [SMALL_STATE(6746)] = 271203, + [SMALL_STATE(6747)] = 271234, + [SMALL_STATE(6748)] = 271256, + [SMALL_STATE(6749)] = 271280, + [SMALL_STATE(6750)] = 271302, + [SMALL_STATE(6751)] = 271328, + [SMALL_STATE(6752)] = 271350, + [SMALL_STATE(6753)] = 271376, + [SMALL_STATE(6754)] = 271402, + [SMALL_STATE(6755)] = 271424, + [SMALL_STATE(6756)] = 271450, + [SMALL_STATE(6757)] = 271472, + [SMALL_STATE(6758)] = 271498, + [SMALL_STATE(6759)] = 271524, + [SMALL_STATE(6760)] = 271550, + [SMALL_STATE(6761)] = 271574, + [SMALL_STATE(6762)] = 271598, + [SMALL_STATE(6763)] = 271622, + [SMALL_STATE(6764)] = 271648, + [SMALL_STATE(6765)] = 271674, + [SMALL_STATE(6766)] = 271700, + [SMALL_STATE(6767)] = 271722, + [SMALL_STATE(6768)] = 271748, + [SMALL_STATE(6769)] = 271770, + [SMALL_STATE(6770)] = 271796, + [SMALL_STATE(6771)] = 271822, + [SMALL_STATE(6772)] = 271842, + [SMALL_STATE(6773)] = 271864, + [SMALL_STATE(6774)] = 271890, + [SMALL_STATE(6775)] = 271916, + [SMALL_STATE(6776)] = 271942, + [SMALL_STATE(6777)] = 271958, + [SMALL_STATE(6778)] = 271980, + [SMALL_STATE(6779)] = 272006, + [SMALL_STATE(6780)] = 272032, + [SMALL_STATE(6781)] = 272058, + [SMALL_STATE(6782)] = 272078, + [SMALL_STATE(6783)] = 272106, + [SMALL_STATE(6784)] = 272130, + [SMALL_STATE(6785)] = 272156, + [SMALL_STATE(6786)] = 272180, + [SMALL_STATE(6787)] = 272206, + [SMALL_STATE(6788)] = 272228, + [SMALL_STATE(6789)] = 272250, + [SMALL_STATE(6790)] = 272272, + [SMALL_STATE(6791)] = 272294, + [SMALL_STATE(6792)] = 272316, + [SMALL_STATE(6793)] = 272338, + [SMALL_STATE(6794)] = 272364, + [SMALL_STATE(6795)] = 272380, + [SMALL_STATE(6796)] = 272404, + [SMALL_STATE(6797)] = 272426, + [SMALL_STATE(6798)] = 272452, + [SMALL_STATE(6799)] = 272478, + [SMALL_STATE(6800)] = 272504, + [SMALL_STATE(6801)] = 272526, + [SMALL_STATE(6802)] = 272552, + [SMALL_STATE(6803)] = 272578, + [SMALL_STATE(6804)] = 272600, + [SMALL_STATE(6805)] = 272626, + [SMALL_STATE(6806)] = 272646, + [SMALL_STATE(6807)] = 272672, + [SMALL_STATE(6808)] = 272698, + [SMALL_STATE(6809)] = 272724, + [SMALL_STATE(6810)] = 272750, + [SMALL_STATE(6811)] = 272772, + [SMALL_STATE(6812)] = 272794, + [SMALL_STATE(6813)] = 272812, + [SMALL_STATE(6814)] = 272838, + [SMALL_STATE(6815)] = 272864, + [SMALL_STATE(6816)] = 272890, + [SMALL_STATE(6817)] = 272916, + [SMALL_STATE(6818)] = 272942, + [SMALL_STATE(6819)] = 272968, + [SMALL_STATE(6820)] = 272990, + [SMALL_STATE(6821)] = 273016, + [SMALL_STATE(6822)] = 273038, + [SMALL_STATE(6823)] = 273062, + [SMALL_STATE(6824)] = 273088, + [SMALL_STATE(6825)] = 273105, + [SMALL_STATE(6826)] = 273128, + [SMALL_STATE(6827)] = 273153, + [SMALL_STATE(6828)] = 273172, + [SMALL_STATE(6829)] = 273197, + [SMALL_STATE(6830)] = 273218, + [SMALL_STATE(6831)] = 273241, + [SMALL_STATE(6832)] = 273266, + [SMALL_STATE(6833)] = 273285, + [SMALL_STATE(6834)] = 273308, + [SMALL_STATE(6835)] = 273329, + [SMALL_STATE(6836)] = 273352, + [SMALL_STATE(6837)] = 273377, + [SMALL_STATE(6838)] = 273398, + [SMALL_STATE(6839)] = 273421, + [SMALL_STATE(6840)] = 273446, + [SMALL_STATE(6841)] = 273469, + [SMALL_STATE(6842)] = 273492, + [SMALL_STATE(6843)] = 273515, + [SMALL_STATE(6844)] = 273532, + [SMALL_STATE(6845)] = 273557, + [SMALL_STATE(6846)] = 273574, + [SMALL_STATE(6847)] = 273591, + [SMALL_STATE(6848)] = 273616, + [SMALL_STATE(6849)] = 273633, + [SMALL_STATE(6850)] = 273652, + [SMALL_STATE(6851)] = 273673, + [SMALL_STATE(6852)] = 273694, + [SMALL_STATE(6853)] = 273717, + [SMALL_STATE(6854)] = 273738, + [SMALL_STATE(6855)] = 273757, + [SMALL_STATE(6856)] = 273774, + [SMALL_STATE(6857)] = 273791, + [SMALL_STATE(6858)] = 273808, + [SMALL_STATE(6859)] = 273825, + [SMALL_STATE(6860)] = 273842, + [SMALL_STATE(6861)] = 273859, + [SMALL_STATE(6862)] = 273876, + [SMALL_STATE(6863)] = 273893, + [SMALL_STATE(6864)] = 273912, + [SMALL_STATE(6865)] = 273929, + [SMALL_STATE(6866)] = 273952, + [SMALL_STATE(6867)] = 273969, + [SMALL_STATE(6868)] = 273992, + [SMALL_STATE(6869)] = 274009, + [SMALL_STATE(6870)] = 274032, + [SMALL_STATE(6871)] = 274053, + [SMALL_STATE(6872)] = 274070, + [SMALL_STATE(6873)] = 274093, + [SMALL_STATE(6874)] = 274118, + [SMALL_STATE(6875)] = 274141, + [SMALL_STATE(6876)] = 274162, + [SMALL_STATE(6877)] = 274185, + [SMALL_STATE(6878)] = 274208, + [SMALL_STATE(6879)] = 274229, + [SMALL_STATE(6880)] = 274252, + [SMALL_STATE(6881)] = 274273, + [SMALL_STATE(6882)] = 274290, + [SMALL_STATE(6883)] = 274312, + [SMALL_STATE(6884)] = 274334, + [SMALL_STATE(6885)] = 274354, + [SMALL_STATE(6886)] = 274368, + [SMALL_STATE(6887)] = 274382, + [SMALL_STATE(6888)] = 274402, + [SMALL_STATE(6889)] = 274422, + [SMALL_STATE(6890)] = 274442, + [SMALL_STATE(6891)] = 274462, + [SMALL_STATE(6892)] = 274482, + [SMALL_STATE(6893)] = 274504, + [SMALL_STATE(6894)] = 274518, + [SMALL_STATE(6895)] = 274532, + [SMALL_STATE(6896)] = 274552, + [SMALL_STATE(6897)] = 274572, + [SMALL_STATE(6898)] = 274592, + [SMALL_STATE(6899)] = 274614, + [SMALL_STATE(6900)] = 274634, + [SMALL_STATE(6901)] = 274654, + [SMALL_STATE(6902)] = 274676, + [SMALL_STATE(6903)] = 274690, + [SMALL_STATE(6904)] = 274710, + [SMALL_STATE(6905)] = 274732, + [SMALL_STATE(6906)] = 274754, + [SMALL_STATE(6907)] = 274768, + [SMALL_STATE(6908)] = 274790, + [SMALL_STATE(6909)] = 274810, + [SMALL_STATE(6910)] = 274832, + [SMALL_STATE(6911)] = 274850, + [SMALL_STATE(6912)] = 274864, + [SMALL_STATE(6913)] = 274878, + [SMALL_STATE(6914)] = 274898, + [SMALL_STATE(6915)] = 274920, + [SMALL_STATE(6916)] = 274942, + [SMALL_STATE(6917)] = 274964, + [SMALL_STATE(6918)] = 274984, + [SMALL_STATE(6919)] = 275006, + [SMALL_STATE(6920)] = 275024, + [SMALL_STATE(6921)] = 275042, + [SMALL_STATE(6922)] = 275064, + [SMALL_STATE(6923)] = 275086, + [SMALL_STATE(6924)] = 275106, + [SMALL_STATE(6925)] = 275126, + [SMALL_STATE(6926)] = 275140, + [SMALL_STATE(6927)] = 275160, + [SMALL_STATE(6928)] = 275180, + [SMALL_STATE(6929)] = 275202, + [SMALL_STATE(6930)] = 275222, + [SMALL_STATE(6931)] = 275240, + [SMALL_STATE(6932)] = 275254, + [SMALL_STATE(6933)] = 275274, + [SMALL_STATE(6934)] = 275294, + [SMALL_STATE(6935)] = 275314, + [SMALL_STATE(6936)] = 275332, + [SMALL_STATE(6937)] = 275352, + [SMALL_STATE(6938)] = 275366, + [SMALL_STATE(6939)] = 275388, + [SMALL_STATE(6940)] = 275410, + [SMALL_STATE(6941)] = 275432, + [SMALL_STATE(6942)] = 275454, + [SMALL_STATE(6943)] = 275474, + [SMALL_STATE(6944)] = 275492, + [SMALL_STATE(6945)] = 275512, + [SMALL_STATE(6946)] = 275534, + [SMALL_STATE(6947)] = 275556, + [SMALL_STATE(6948)] = 275578, + [SMALL_STATE(6949)] = 275600, + [SMALL_STATE(6950)] = 275620, + [SMALL_STATE(6951)] = 275640, + [SMALL_STATE(6952)] = 275654, + [SMALL_STATE(6953)] = 275668, + [SMALL_STATE(6954)] = 275682, + [SMALL_STATE(6955)] = 275701, + [SMALL_STATE(6956)] = 275718, + [SMALL_STATE(6957)] = 275735, + [SMALL_STATE(6958)] = 275752, + [SMALL_STATE(6959)] = 275769, + [SMALL_STATE(6960)] = 275786, + [SMALL_STATE(6961)] = 275803, + [SMALL_STATE(6962)] = 275822, + [SMALL_STATE(6963)] = 275839, + [SMALL_STATE(6964)] = 275856, + [SMALL_STATE(6965)] = 275873, + [SMALL_STATE(6966)] = 275890, + [SMALL_STATE(6967)] = 275907, + [SMALL_STATE(6968)] = 275924, + [SMALL_STATE(6969)] = 275935, + [SMALL_STATE(6970)] = 275952, + [SMALL_STATE(6971)] = 275967, + [SMALL_STATE(6972)] = 275982, + [SMALL_STATE(6973)] = 276001, + [SMALL_STATE(6974)] = 276016, + [SMALL_STATE(6975)] = 276035, + [SMALL_STATE(6976)] = 276052, + [SMALL_STATE(6977)] = 276071, + [SMALL_STATE(6978)] = 276088, + [SMALL_STATE(6979)] = 276105, + [SMALL_STATE(6980)] = 276122, + [SMALL_STATE(6981)] = 276139, + [SMALL_STATE(6982)] = 276156, + [SMALL_STATE(6983)] = 276173, + [SMALL_STATE(6984)] = 276190, + [SMALL_STATE(6985)] = 276207, + [SMALL_STATE(6986)] = 276220, + [SMALL_STATE(6987)] = 276237, + [SMALL_STATE(6988)] = 276256, + [SMALL_STATE(6989)] = 276275, + [SMALL_STATE(6990)] = 276292, + [SMALL_STATE(6991)] = 276311, + [SMALL_STATE(6992)] = 276328, + [SMALL_STATE(6993)] = 276347, + [SMALL_STATE(6994)] = 276366, + [SMALL_STATE(6995)] = 276383, + [SMALL_STATE(6996)] = 276402, + [SMALL_STATE(6997)] = 276421, + [SMALL_STATE(6998)] = 276438, + [SMALL_STATE(6999)] = 276455, + [SMALL_STATE(7000)] = 276474, + [SMALL_STATE(7001)] = 276493, + [SMALL_STATE(7002)] = 276510, + [SMALL_STATE(7003)] = 276527, + [SMALL_STATE(7004)] = 276544, + [SMALL_STATE(7005)] = 276563, + [SMALL_STATE(7006)] = 276576, + [SMALL_STATE(7007)] = 276593, + [SMALL_STATE(7008)] = 276612, + [SMALL_STATE(7009)] = 276631, + [SMALL_STATE(7010)] = 276648, + [SMALL_STATE(7011)] = 276665, + [SMALL_STATE(7012)] = 276682, + [SMALL_STATE(7013)] = 276699, + [SMALL_STATE(7014)] = 276716, + [SMALL_STATE(7015)] = 276733, + [SMALL_STATE(7016)] = 276750, + [SMALL_STATE(7017)] = 276767, + [SMALL_STATE(7018)] = 276784, + [SMALL_STATE(7019)] = 276801, + [SMALL_STATE(7020)] = 276820, + [SMALL_STATE(7021)] = 276835, + [SMALL_STATE(7022)] = 276852, + [SMALL_STATE(7023)] = 276871, + [SMALL_STATE(7024)] = 276890, + [SMALL_STATE(7025)] = 276907, + [SMALL_STATE(7026)] = 276926, + [SMALL_STATE(7027)] = 276943, + [SMALL_STATE(7028)] = 276962, + [SMALL_STATE(7029)] = 276981, + [SMALL_STATE(7030)] = 277000, + [SMALL_STATE(7031)] = 277017, + [SMALL_STATE(7032)] = 277036, + [SMALL_STATE(7033)] = 277053, + [SMALL_STATE(7034)] = 277070, + [SMALL_STATE(7035)] = 277083, + [SMALL_STATE(7036)] = 277102, + [SMALL_STATE(7037)] = 277116, + [SMALL_STATE(7038)] = 277132, + [SMALL_STATE(7039)] = 277148, + [SMALL_STATE(7040)] = 277164, + [SMALL_STATE(7041)] = 277180, + [SMALL_STATE(7042)] = 277194, + [SMALL_STATE(7043)] = 277210, + [SMALL_STATE(7044)] = 277224, + [SMALL_STATE(7045)] = 277240, + [SMALL_STATE(7046)] = 277256, + [SMALL_STATE(7047)] = 277272, + [SMALL_STATE(7048)] = 277288, + [SMALL_STATE(7049)] = 277302, + [SMALL_STATE(7050)] = 277318, + [SMALL_STATE(7051)] = 277334, + [SMALL_STATE(7052)] = 277350, + [SMALL_STATE(7053)] = 277366, + [SMALL_STATE(7054)] = 277382, + [SMALL_STATE(7055)] = 277398, + [SMALL_STATE(7056)] = 277414, + [SMALL_STATE(7057)] = 277430, + [SMALL_STATE(7058)] = 277440, + [SMALL_STATE(7059)] = 277456, + [SMALL_STATE(7060)] = 277472, + [SMALL_STATE(7061)] = 277486, + [SMALL_STATE(7062)] = 277502, + [SMALL_STATE(7063)] = 277516, + [SMALL_STATE(7064)] = 277532, + [SMALL_STATE(7065)] = 277548, + [SMALL_STATE(7066)] = 277564, + [SMALL_STATE(7067)] = 277578, + [SMALL_STATE(7068)] = 277594, + [SMALL_STATE(7069)] = 277608, + [SMALL_STATE(7070)] = 277624, + [SMALL_STATE(7071)] = 277640, + [SMALL_STATE(7072)] = 277656, + [SMALL_STATE(7073)] = 277672, + [SMALL_STATE(7074)] = 277682, + [SMALL_STATE(7075)] = 277696, + [SMALL_STATE(7076)] = 277712, + [SMALL_STATE(7077)] = 277728, + [SMALL_STATE(7078)] = 277744, + [SMALL_STATE(7079)] = 277760, + [SMALL_STATE(7080)] = 277776, + [SMALL_STATE(7081)] = 277792, + [SMALL_STATE(7082)] = 277808, + [SMALL_STATE(7083)] = 277824, + [SMALL_STATE(7084)] = 277840, + [SMALL_STATE(7085)] = 277856, + [SMALL_STATE(7086)] = 277872, + [SMALL_STATE(7087)] = 277888, + [SMALL_STATE(7088)] = 277904, + [SMALL_STATE(7089)] = 277920, + [SMALL_STATE(7090)] = 277936, + [SMALL_STATE(7091)] = 277952, + [SMALL_STATE(7092)] = 277968, + [SMALL_STATE(7093)] = 277984, + [SMALL_STATE(7094)] = 278000, + [SMALL_STATE(7095)] = 278016, + [SMALL_STATE(7096)] = 278032, + [SMALL_STATE(7097)] = 278048, + [SMALL_STATE(7098)] = 278064, + [SMALL_STATE(7099)] = 278080, + [SMALL_STATE(7100)] = 278096, + [SMALL_STATE(7101)] = 278112, + [SMALL_STATE(7102)] = 278128, + [SMALL_STATE(7103)] = 278142, + [SMALL_STATE(7104)] = 278158, + [SMALL_STATE(7105)] = 278174, + [SMALL_STATE(7106)] = 278190, + [SMALL_STATE(7107)] = 278204, + [SMALL_STATE(7108)] = 278220, + [SMALL_STATE(7109)] = 278236, + [SMALL_STATE(7110)] = 278250, + [SMALL_STATE(7111)] = 278264, + [SMALL_STATE(7112)] = 278278, + [SMALL_STATE(7113)] = 278294, + [SMALL_STATE(7114)] = 278310, + [SMALL_STATE(7115)] = 278324, + [SMALL_STATE(7116)] = 278340, + [SMALL_STATE(7117)] = 278356, + [SMALL_STATE(7118)] = 278370, + [SMALL_STATE(7119)] = 278386, + [SMALL_STATE(7120)] = 278400, + [SMALL_STATE(7121)] = 278414, + [SMALL_STATE(7122)] = 278430, + [SMALL_STATE(7123)] = 278444, + [SMALL_STATE(7124)] = 278460, + [SMALL_STATE(7125)] = 278476, + [SMALL_STATE(7126)] = 278492, + [SMALL_STATE(7127)] = 278508, + [SMALL_STATE(7128)] = 278524, + [SMALL_STATE(7129)] = 278540, + [SMALL_STATE(7130)] = 278556, + [SMALL_STATE(7131)] = 278572, + [SMALL_STATE(7132)] = 278588, + [SMALL_STATE(7133)] = 278604, + [SMALL_STATE(7134)] = 278620, + [SMALL_STATE(7135)] = 278636, + [SMALL_STATE(7136)] = 278652, + [SMALL_STATE(7137)] = 278666, + [SMALL_STATE(7138)] = 278682, + [SMALL_STATE(7139)] = 278698, + [SMALL_STATE(7140)] = 278714, + [SMALL_STATE(7141)] = 278730, + [SMALL_STATE(7142)] = 278746, + [SMALL_STATE(7143)] = 278760, + [SMALL_STATE(7144)] = 278776, + [SMALL_STATE(7145)] = 278790, + [SMALL_STATE(7146)] = 278806, + [SMALL_STATE(7147)] = 278822, + [SMALL_STATE(7148)] = 278838, + [SMALL_STATE(7149)] = 278854, + [SMALL_STATE(7150)] = 278870, + [SMALL_STATE(7151)] = 278886, + [SMALL_STATE(7152)] = 278902, + [SMALL_STATE(7153)] = 278918, + [SMALL_STATE(7154)] = 278934, + [SMALL_STATE(7155)] = 278948, + [SMALL_STATE(7156)] = 278964, + [SMALL_STATE(7157)] = 278980, + [SMALL_STATE(7158)] = 278996, + [SMALL_STATE(7159)] = 279008, + [SMALL_STATE(7160)] = 279020, + [SMALL_STATE(7161)] = 279036, + [SMALL_STATE(7162)] = 279052, + [SMALL_STATE(7163)] = 279068, + [SMALL_STATE(7164)] = 279082, + [SMALL_STATE(7165)] = 279096, + [SMALL_STATE(7166)] = 279112, + [SMALL_STATE(7167)] = 279128, + [SMALL_STATE(7168)] = 279144, + [SMALL_STATE(7169)] = 279160, + [SMALL_STATE(7170)] = 279176, + [SMALL_STATE(7171)] = 279190, + [SMALL_STATE(7172)] = 279206, + [SMALL_STATE(7173)] = 279220, + [SMALL_STATE(7174)] = 279236, + [SMALL_STATE(7175)] = 279252, + [SMALL_STATE(7176)] = 279268, + [SMALL_STATE(7177)] = 279284, + [SMALL_STATE(7178)] = 279300, + [SMALL_STATE(7179)] = 279316, + [SMALL_STATE(7180)] = 279332, + [SMALL_STATE(7181)] = 279346, + [SMALL_STATE(7182)] = 279362, + [SMALL_STATE(7183)] = 279378, + [SMALL_STATE(7184)] = 279392, + [SMALL_STATE(7185)] = 279406, + [SMALL_STATE(7186)] = 279422, + [SMALL_STATE(7187)] = 279436, + [SMALL_STATE(7188)] = 279452, + [SMALL_STATE(7189)] = 279468, + [SMALL_STATE(7190)] = 279482, + [SMALL_STATE(7191)] = 279498, + [SMALL_STATE(7192)] = 279514, + [SMALL_STATE(7193)] = 279530, + [SMALL_STATE(7194)] = 279546, + [SMALL_STATE(7195)] = 279560, + [SMALL_STATE(7196)] = 279574, + [SMALL_STATE(7197)] = 279584, + [SMALL_STATE(7198)] = 279598, + [SMALL_STATE(7199)] = 279614, + [SMALL_STATE(7200)] = 279630, + [SMALL_STATE(7201)] = 279646, + [SMALL_STATE(7202)] = 279662, + [SMALL_STATE(7203)] = 279678, + [SMALL_STATE(7204)] = 279694, + [SMALL_STATE(7205)] = 279710, + [SMALL_STATE(7206)] = 279726, + [SMALL_STATE(7207)] = 279738, + [SMALL_STATE(7208)] = 279754, + [SMALL_STATE(7209)] = 279768, + [SMALL_STATE(7210)] = 279782, + [SMALL_STATE(7211)] = 279796, + [SMALL_STATE(7212)] = 279810, + [SMALL_STATE(7213)] = 279822, + [SMALL_STATE(7214)] = 279838, + [SMALL_STATE(7215)] = 279852, + [SMALL_STATE(7216)] = 279866, + [SMALL_STATE(7217)] = 279880, + [SMALL_STATE(7218)] = 279896, + [SMALL_STATE(7219)] = 279910, + [SMALL_STATE(7220)] = 279924, + [SMALL_STATE(7221)] = 279940, + [SMALL_STATE(7222)] = 279954, + [SMALL_STATE(7223)] = 279968, + [SMALL_STATE(7224)] = 279982, + [SMALL_STATE(7225)] = 279996, + [SMALL_STATE(7226)] = 280010, + [SMALL_STATE(7227)] = 280024, + [SMALL_STATE(7228)] = 280038, + [SMALL_STATE(7229)] = 280054, + [SMALL_STATE(7230)] = 280070, + [SMALL_STATE(7231)] = 280086, + [SMALL_STATE(7232)] = 280102, + [SMALL_STATE(7233)] = 280118, + [SMALL_STATE(7234)] = 280134, + [SMALL_STATE(7235)] = 280150, + [SMALL_STATE(7236)] = 280164, + [SMALL_STATE(7237)] = 280178, + [SMALL_STATE(7238)] = 280192, + [SMALL_STATE(7239)] = 280208, + [SMALL_STATE(7240)] = 280222, + [SMALL_STATE(7241)] = 280238, + [SMALL_STATE(7242)] = 280254, + [SMALL_STATE(7243)] = 280267, + [SMALL_STATE(7244)] = 280280, + [SMALL_STATE(7245)] = 280291, + [SMALL_STATE(7246)] = 280304, + [SMALL_STATE(7247)] = 280315, + [SMALL_STATE(7248)] = 280328, + [SMALL_STATE(7249)] = 280337, + [SMALL_STATE(7250)] = 280350, + [SMALL_STATE(7251)] = 280363, + [SMALL_STATE(7252)] = 280376, + [SMALL_STATE(7253)] = 280385, + [SMALL_STATE(7254)] = 280398, + [SMALL_STATE(7255)] = 280411, + [SMALL_STATE(7256)] = 280424, + [SMALL_STATE(7257)] = 280437, + [SMALL_STATE(7258)] = 280450, + [SMALL_STATE(7259)] = 280463, + [SMALL_STATE(7260)] = 280476, + [SMALL_STATE(7261)] = 280489, + [SMALL_STATE(7262)] = 280502, + [SMALL_STATE(7263)] = 280515, + [SMALL_STATE(7264)] = 280528, + [SMALL_STATE(7265)] = 280541, + [SMALL_STATE(7266)] = 280554, + [SMALL_STATE(7267)] = 280567, + [SMALL_STATE(7268)] = 280578, + [SMALL_STATE(7269)] = 280591, + [SMALL_STATE(7270)] = 280604, + [SMALL_STATE(7271)] = 280617, + [SMALL_STATE(7272)] = 280630, + [SMALL_STATE(7273)] = 280643, + [SMALL_STATE(7274)] = 280656, + [SMALL_STATE(7275)] = 280669, + [SMALL_STATE(7276)] = 280680, + [SMALL_STATE(7277)] = 280693, + [SMALL_STATE(7278)] = 280704, + [SMALL_STATE(7279)] = 280717, + [SMALL_STATE(7280)] = 280730, + [SMALL_STATE(7281)] = 280743, + [SMALL_STATE(7282)] = 280756, + [SMALL_STATE(7283)] = 280769, + [SMALL_STATE(7284)] = 280782, + [SMALL_STATE(7285)] = 280795, + [SMALL_STATE(7286)] = 280808, + [SMALL_STATE(7287)] = 280819, + [SMALL_STATE(7288)] = 280832, + [SMALL_STATE(7289)] = 280845, + [SMALL_STATE(7290)] = 280858, + [SMALL_STATE(7291)] = 280869, + [SMALL_STATE(7292)] = 280880, + [SMALL_STATE(7293)] = 280893, + [SMALL_STATE(7294)] = 280906, + [SMALL_STATE(7295)] = 280917, + [SMALL_STATE(7296)] = 280930, + [SMALL_STATE(7297)] = 280943, + [SMALL_STATE(7298)] = 280956, + [SMALL_STATE(7299)] = 280969, + [SMALL_STATE(7300)] = 280982, + [SMALL_STATE(7301)] = 280993, + [SMALL_STATE(7302)] = 281004, + [SMALL_STATE(7303)] = 281017, + [SMALL_STATE(7304)] = 281030, + [SMALL_STATE(7305)] = 281043, + [SMALL_STATE(7306)] = 281054, + [SMALL_STATE(7307)] = 281067, + [SMALL_STATE(7308)] = 281076, + [SMALL_STATE(7309)] = 281087, + [SMALL_STATE(7310)] = 281100, + [SMALL_STATE(7311)] = 281111, + [SMALL_STATE(7312)] = 281124, + [SMALL_STATE(7313)] = 281137, + [SMALL_STATE(7314)] = 281150, + [SMALL_STATE(7315)] = 281163, + [SMALL_STATE(7316)] = 281176, + [SMALL_STATE(7317)] = 281189, + [SMALL_STATE(7318)] = 281200, + [SMALL_STATE(7319)] = 281213, + [SMALL_STATE(7320)] = 281226, + [SMALL_STATE(7321)] = 281239, + [SMALL_STATE(7322)] = 281252, + [SMALL_STATE(7323)] = 281265, + [SMALL_STATE(7324)] = 281278, + [SMALL_STATE(7325)] = 281291, + [SMALL_STATE(7326)] = 281304, + [SMALL_STATE(7327)] = 281317, + [SMALL_STATE(7328)] = 281330, + [SMALL_STATE(7329)] = 281343, + [SMALL_STATE(7330)] = 281356, + [SMALL_STATE(7331)] = 281369, + [SMALL_STATE(7332)] = 281382, + [SMALL_STATE(7333)] = 281395, + [SMALL_STATE(7334)] = 281408, + [SMALL_STATE(7335)] = 281419, + [SMALL_STATE(7336)] = 281432, + [SMALL_STATE(7337)] = 281445, + [SMALL_STATE(7338)] = 281458, + [SMALL_STATE(7339)] = 281469, + [SMALL_STATE(7340)] = 281482, + [SMALL_STATE(7341)] = 281495, + [SMALL_STATE(7342)] = 281508, + [SMALL_STATE(7343)] = 281521, + [SMALL_STATE(7344)] = 281534, + [SMALL_STATE(7345)] = 281547, + [SMALL_STATE(7346)] = 281560, + [SMALL_STATE(7347)] = 281573, + [SMALL_STATE(7348)] = 281586, + [SMALL_STATE(7349)] = 281599, + [SMALL_STATE(7350)] = 281612, + [SMALL_STATE(7351)] = 281625, + [SMALL_STATE(7352)] = 281638, + [SMALL_STATE(7353)] = 281651, + [SMALL_STATE(7354)] = 281664, + [SMALL_STATE(7355)] = 281677, + [SMALL_STATE(7356)] = 281690, + [SMALL_STATE(7357)] = 281703, + [SMALL_STATE(7358)] = 281716, + [SMALL_STATE(7359)] = 281729, + [SMALL_STATE(7360)] = 281742, + [SMALL_STATE(7361)] = 281755, + [SMALL_STATE(7362)] = 281766, + [SMALL_STATE(7363)] = 281775, + [SMALL_STATE(7364)] = 281788, + [SMALL_STATE(7365)] = 281797, + [SMALL_STATE(7366)] = 281810, + [SMALL_STATE(7367)] = 281823, + [SMALL_STATE(7368)] = 281836, + [SMALL_STATE(7369)] = 281849, + [SMALL_STATE(7370)] = 281862, + [SMALL_STATE(7371)] = 281875, + [SMALL_STATE(7372)] = 281888, + [SMALL_STATE(7373)] = 281901, + [SMALL_STATE(7374)] = 281914, + [SMALL_STATE(7375)] = 281927, + [SMALL_STATE(7376)] = 281936, + [SMALL_STATE(7377)] = 281949, + [SMALL_STATE(7378)] = 281962, + [SMALL_STATE(7379)] = 281975, + [SMALL_STATE(7380)] = 281988, + [SMALL_STATE(7381)] = 282001, + [SMALL_STATE(7382)] = 282014, + [SMALL_STATE(7383)] = 282027, + [SMALL_STATE(7384)] = 282040, + [SMALL_STATE(7385)] = 282053, + [SMALL_STATE(7386)] = 282066, + [SMALL_STATE(7387)] = 282079, + [SMALL_STATE(7388)] = 282090, + [SMALL_STATE(7389)] = 282101, + [SMALL_STATE(7390)] = 282114, + [SMALL_STATE(7391)] = 282127, + [SMALL_STATE(7392)] = 282140, + [SMALL_STATE(7393)] = 282153, + [SMALL_STATE(7394)] = 282166, + [SMALL_STATE(7395)] = 282179, + [SMALL_STATE(7396)] = 282190, + [SMALL_STATE(7397)] = 282203, + [SMALL_STATE(7398)] = 282216, + [SMALL_STATE(7399)] = 282227, + [SMALL_STATE(7400)] = 282240, + [SMALL_STATE(7401)] = 282253, + [SMALL_STATE(7402)] = 282264, + [SMALL_STATE(7403)] = 282277, + [SMALL_STATE(7404)] = 282290, + [SMALL_STATE(7405)] = 282303, + [SMALL_STATE(7406)] = 282316, + [SMALL_STATE(7407)] = 282327, + [SMALL_STATE(7408)] = 282340, + [SMALL_STATE(7409)] = 282353, + [SMALL_STATE(7410)] = 282366, + [SMALL_STATE(7411)] = 282379, + [SMALL_STATE(7412)] = 282390, + [SMALL_STATE(7413)] = 282403, + [SMALL_STATE(7414)] = 282416, + [SMALL_STATE(7415)] = 282429, + [SMALL_STATE(7416)] = 282442, + [SMALL_STATE(7417)] = 282455, + [SMALL_STATE(7418)] = 282468, + [SMALL_STATE(7419)] = 282481, + [SMALL_STATE(7420)] = 282494, + [SMALL_STATE(7421)] = 282507, + [SMALL_STATE(7422)] = 282520, + [SMALL_STATE(7423)] = 282533, + [SMALL_STATE(7424)] = 282546, + [SMALL_STATE(7425)] = 282557, + [SMALL_STATE(7426)] = 282570, + [SMALL_STATE(7427)] = 282583, + [SMALL_STATE(7428)] = 282596, + [SMALL_STATE(7429)] = 282609, + [SMALL_STATE(7430)] = 282622, + [SMALL_STATE(7431)] = 282635, + [SMALL_STATE(7432)] = 282648, + [SMALL_STATE(7433)] = 282661, + [SMALL_STATE(7434)] = 282674, + [SMALL_STATE(7435)] = 282687, + [SMALL_STATE(7436)] = 282700, + [SMALL_STATE(7437)] = 282713, + [SMALL_STATE(7438)] = 282724, + [SMALL_STATE(7439)] = 282737, + [SMALL_STATE(7440)] = 282750, + [SMALL_STATE(7441)] = 282763, + [SMALL_STATE(7442)] = 282776, + [SMALL_STATE(7443)] = 282789, + [SMALL_STATE(7444)] = 282802, + [SMALL_STATE(7445)] = 282815, + [SMALL_STATE(7446)] = 282828, + [SMALL_STATE(7447)] = 282841, + [SMALL_STATE(7448)] = 282854, + [SMALL_STATE(7449)] = 282867, + [SMALL_STATE(7450)] = 282880, + [SMALL_STATE(7451)] = 282893, + [SMALL_STATE(7452)] = 282906, + [SMALL_STATE(7453)] = 282919, + [SMALL_STATE(7454)] = 282932, + [SMALL_STATE(7455)] = 282943, + [SMALL_STATE(7456)] = 282956, + [SMALL_STATE(7457)] = 282969, + [SMALL_STATE(7458)] = 282982, + [SMALL_STATE(7459)] = 282995, + [SMALL_STATE(7460)] = 283006, + [SMALL_STATE(7461)] = 283019, + [SMALL_STATE(7462)] = 283032, + [SMALL_STATE(7463)] = 283045, + [SMALL_STATE(7464)] = 283058, + [SMALL_STATE(7465)] = 283071, + [SMALL_STATE(7466)] = 283084, + [SMALL_STATE(7467)] = 283093, + [SMALL_STATE(7468)] = 283106, + [SMALL_STATE(7469)] = 283119, + [SMALL_STATE(7470)] = 283132, + [SMALL_STATE(7471)] = 283145, + [SMALL_STATE(7472)] = 283156, + [SMALL_STATE(7473)] = 283169, + [SMALL_STATE(7474)] = 283182, + [SMALL_STATE(7475)] = 283195, + [SMALL_STATE(7476)] = 283208, + [SMALL_STATE(7477)] = 283221, + [SMALL_STATE(7478)] = 283234, + [SMALL_STATE(7479)] = 283247, + [SMALL_STATE(7480)] = 283258, + [SMALL_STATE(7481)] = 283271, + [SMALL_STATE(7482)] = 283284, + [SMALL_STATE(7483)] = 283297, + [SMALL_STATE(7484)] = 283310, + [SMALL_STATE(7485)] = 283323, + [SMALL_STATE(7486)] = 283336, + [SMALL_STATE(7487)] = 283349, + [SMALL_STATE(7488)] = 283362, + [SMALL_STATE(7489)] = 283375, + [SMALL_STATE(7490)] = 283388, + [SMALL_STATE(7491)] = 283399, + [SMALL_STATE(7492)] = 283412, + [SMALL_STATE(7493)] = 283425, + [SMALL_STATE(7494)] = 283438, + [SMALL_STATE(7495)] = 283451, + [SMALL_STATE(7496)] = 283464, + [SMALL_STATE(7497)] = 283477, + [SMALL_STATE(7498)] = 283490, + [SMALL_STATE(7499)] = 283501, + [SMALL_STATE(7500)] = 283514, + [SMALL_STATE(7501)] = 283527, + [SMALL_STATE(7502)] = 283540, + [SMALL_STATE(7503)] = 283553, + [SMALL_STATE(7504)] = 283566, + [SMALL_STATE(7505)] = 283579, + [SMALL_STATE(7506)] = 283592, + [SMALL_STATE(7507)] = 283601, + [SMALL_STATE(7508)] = 283614, + [SMALL_STATE(7509)] = 283627, + [SMALL_STATE(7510)] = 283640, + [SMALL_STATE(7511)] = 283653, + [SMALL_STATE(7512)] = 283666, + [SMALL_STATE(7513)] = 283679, + [SMALL_STATE(7514)] = 283692, + [SMALL_STATE(7515)] = 283705, + [SMALL_STATE(7516)] = 283718, + [SMALL_STATE(7517)] = 283729, + [SMALL_STATE(7518)] = 283742, + [SMALL_STATE(7519)] = 283755, + [SMALL_STATE(7520)] = 283768, + [SMALL_STATE(7521)] = 283781, + [SMALL_STATE(7522)] = 283792, + [SMALL_STATE(7523)] = 283805, + [SMALL_STATE(7524)] = 283816, + [SMALL_STATE(7525)] = 283829, + [SMALL_STATE(7526)] = 283842, + [SMALL_STATE(7527)] = 283855, + [SMALL_STATE(7528)] = 283868, + [SMALL_STATE(7529)] = 283881, + [SMALL_STATE(7530)] = 283894, + [SMALL_STATE(7531)] = 283907, + [SMALL_STATE(7532)] = 283916, + [SMALL_STATE(7533)] = 283929, + [SMALL_STATE(7534)] = 283940, + [SMALL_STATE(7535)] = 283953, + [SMALL_STATE(7536)] = 283966, + [SMALL_STATE(7537)] = 283979, + [SMALL_STATE(7538)] = 283992, + [SMALL_STATE(7539)] = 284003, + [SMALL_STATE(7540)] = 284016, + [SMALL_STATE(7541)] = 284029, + [SMALL_STATE(7542)] = 284042, + [SMALL_STATE(7543)] = 284055, + [SMALL_STATE(7544)] = 284068, + [SMALL_STATE(7545)] = 284079, + [SMALL_STATE(7546)] = 284092, + [SMALL_STATE(7547)] = 284105, + [SMALL_STATE(7548)] = 284116, + [SMALL_STATE(7549)] = 284127, + [SMALL_STATE(7550)] = 284140, + [SMALL_STATE(7551)] = 284153, + [SMALL_STATE(7552)] = 284164, + [SMALL_STATE(7553)] = 284177, + [SMALL_STATE(7554)] = 284188, + [SMALL_STATE(7555)] = 284201, + [SMALL_STATE(7556)] = 284214, + [SMALL_STATE(7557)] = 284227, + [SMALL_STATE(7558)] = 284240, + [SMALL_STATE(7559)] = 284253, + [SMALL_STATE(7560)] = 284266, + [SMALL_STATE(7561)] = 284279, + [SMALL_STATE(7562)] = 284292, + [SMALL_STATE(7563)] = 284305, + [SMALL_STATE(7564)] = 284318, + [SMALL_STATE(7565)] = 284331, + [SMALL_STATE(7566)] = 284344, + [SMALL_STATE(7567)] = 284355, + [SMALL_STATE(7568)] = 284366, + [SMALL_STATE(7569)] = 284379, + [SMALL_STATE(7570)] = 284392, + [SMALL_STATE(7571)] = 284405, + [SMALL_STATE(7572)] = 284418, + [SMALL_STATE(7573)] = 284431, + [SMALL_STATE(7574)] = 284444, + [SMALL_STATE(7575)] = 284457, + [SMALL_STATE(7576)] = 284468, + [SMALL_STATE(7577)] = 284481, + [SMALL_STATE(7578)] = 284494, + [SMALL_STATE(7579)] = 284507, + [SMALL_STATE(7580)] = 284520, + [SMALL_STATE(7581)] = 284533, + [SMALL_STATE(7582)] = 284544, + [SMALL_STATE(7583)] = 284557, + [SMALL_STATE(7584)] = 284570, + [SMALL_STATE(7585)] = 284583, + [SMALL_STATE(7586)] = 284594, + [SMALL_STATE(7587)] = 284603, + [SMALL_STATE(7588)] = 284612, + [SMALL_STATE(7589)] = 284625, + [SMALL_STATE(7590)] = 284638, + [SMALL_STATE(7591)] = 284651, + [SMALL_STATE(7592)] = 284662, + [SMALL_STATE(7593)] = 284675, + [SMALL_STATE(7594)] = 284688, + [SMALL_STATE(7595)] = 284701, + [SMALL_STATE(7596)] = 284714, + [SMALL_STATE(7597)] = 284727, + [SMALL_STATE(7598)] = 284740, + [SMALL_STATE(7599)] = 284749, + [SMALL_STATE(7600)] = 284762, + [SMALL_STATE(7601)] = 284773, + [SMALL_STATE(7602)] = 284786, + [SMALL_STATE(7603)] = 284797, + [SMALL_STATE(7604)] = 284810, + [SMALL_STATE(7605)] = 284823, + [SMALL_STATE(7606)] = 284836, + [SMALL_STATE(7607)] = 284849, + [SMALL_STATE(7608)] = 284862, + [SMALL_STATE(7609)] = 284875, + [SMALL_STATE(7610)] = 284888, + [SMALL_STATE(7611)] = 284901, + [SMALL_STATE(7612)] = 284914, + [SMALL_STATE(7613)] = 284927, + [SMALL_STATE(7614)] = 284940, + [SMALL_STATE(7615)] = 284949, + [SMALL_STATE(7616)] = 284958, + [SMALL_STATE(7617)] = 284971, + [SMALL_STATE(7618)] = 284984, + [SMALL_STATE(7619)] = 284997, + [SMALL_STATE(7620)] = 285010, + [SMALL_STATE(7621)] = 285021, + [SMALL_STATE(7622)] = 285034, + [SMALL_STATE(7623)] = 285047, + [SMALL_STATE(7624)] = 285056, + [SMALL_STATE(7625)] = 285069, + [SMALL_STATE(7626)] = 285082, + [SMALL_STATE(7627)] = 285095, + [SMALL_STATE(7628)] = 285108, + [SMALL_STATE(7629)] = 285121, + [SMALL_STATE(7630)] = 285134, + [SMALL_STATE(7631)] = 285147, + [SMALL_STATE(7632)] = 285160, + [SMALL_STATE(7633)] = 285171, + [SMALL_STATE(7634)] = 285184, + [SMALL_STATE(7635)] = 285197, + [SMALL_STATE(7636)] = 285208, + [SMALL_STATE(7637)] = 285219, + [SMALL_STATE(7638)] = 285232, + [SMALL_STATE(7639)] = 285243, + [SMALL_STATE(7640)] = 285256, + [SMALL_STATE(7641)] = 285269, + [SMALL_STATE(7642)] = 285282, + [SMALL_STATE(7643)] = 285295, + [SMALL_STATE(7644)] = 285308, + [SMALL_STATE(7645)] = 285321, + [SMALL_STATE(7646)] = 285334, + [SMALL_STATE(7647)] = 285347, + [SMALL_STATE(7648)] = 285360, + [SMALL_STATE(7649)] = 285373, + [SMALL_STATE(7650)] = 285386, + [SMALL_STATE(7651)] = 285399, + [SMALL_STATE(7652)] = 285412, + [SMALL_STATE(7653)] = 285425, + [SMALL_STATE(7654)] = 285438, + [SMALL_STATE(7655)] = 285451, + [SMALL_STATE(7656)] = 285464, + [SMALL_STATE(7657)] = 285477, + [SMALL_STATE(7658)] = 285490, + [SMALL_STATE(7659)] = 285503, + [SMALL_STATE(7660)] = 285516, + [SMALL_STATE(7661)] = 285529, + [SMALL_STATE(7662)] = 285542, + [SMALL_STATE(7663)] = 285555, + [SMALL_STATE(7664)] = 285568, + [SMALL_STATE(7665)] = 285577, + [SMALL_STATE(7666)] = 285588, + [SMALL_STATE(7667)] = 285601, + [SMALL_STATE(7668)] = 285614, + [SMALL_STATE(7669)] = 285627, + [SMALL_STATE(7670)] = 285640, + [SMALL_STATE(7671)] = 285649, + [SMALL_STATE(7672)] = 285662, + [SMALL_STATE(7673)] = 285675, + [SMALL_STATE(7674)] = 285688, + [SMALL_STATE(7675)] = 285701, + [SMALL_STATE(7676)] = 285714, + [SMALL_STATE(7677)] = 285727, + [SMALL_STATE(7678)] = 285740, + [SMALL_STATE(7679)] = 285753, + [SMALL_STATE(7680)] = 285766, + [SMALL_STATE(7681)] = 285779, + [SMALL_STATE(7682)] = 285792, + [SMALL_STATE(7683)] = 285805, + [SMALL_STATE(7684)] = 285818, + [SMALL_STATE(7685)] = 285831, + [SMALL_STATE(7686)] = 285842, + [SMALL_STATE(7687)] = 285855, + [SMALL_STATE(7688)] = 285868, + [SMALL_STATE(7689)] = 285881, + [SMALL_STATE(7690)] = 285894, + [SMALL_STATE(7691)] = 285907, + [SMALL_STATE(7692)] = 285917, + [SMALL_STATE(7693)] = 285927, + [SMALL_STATE(7694)] = 285937, + [SMALL_STATE(7695)] = 285947, + [SMALL_STATE(7696)] = 285957, + [SMALL_STATE(7697)] = 285967, + [SMALL_STATE(7698)] = 285977, + [SMALL_STATE(7699)] = 285987, + [SMALL_STATE(7700)] = 285995, + [SMALL_STATE(7701)] = 286005, + [SMALL_STATE(7702)] = 286015, + [SMALL_STATE(7703)] = 286025, + [SMALL_STATE(7704)] = 286035, + [SMALL_STATE(7705)] = 286045, + [SMALL_STATE(7706)] = 286055, + [SMALL_STATE(7707)] = 286065, + [SMALL_STATE(7708)] = 286075, + [SMALL_STATE(7709)] = 286085, + [SMALL_STATE(7710)] = 286095, + [SMALL_STATE(7711)] = 286105, + [SMALL_STATE(7712)] = 286115, + [SMALL_STATE(7713)] = 286125, + [SMALL_STATE(7714)] = 286133, + [SMALL_STATE(7715)] = 286143, + [SMALL_STATE(7716)] = 286153, + [SMALL_STATE(7717)] = 286163, + [SMALL_STATE(7718)] = 286173, + [SMALL_STATE(7719)] = 286183, + [SMALL_STATE(7720)] = 286193, + [SMALL_STATE(7721)] = 286203, + [SMALL_STATE(7722)] = 286213, + [SMALL_STATE(7723)] = 286223, + [SMALL_STATE(7724)] = 286233, + [SMALL_STATE(7725)] = 286243, + [SMALL_STATE(7726)] = 286253, + [SMALL_STATE(7727)] = 286263, + [SMALL_STATE(7728)] = 286273, + [SMALL_STATE(7729)] = 286283, + [SMALL_STATE(7730)] = 286293, + [SMALL_STATE(7731)] = 286303, + [SMALL_STATE(7732)] = 286313, + [SMALL_STATE(7733)] = 286323, + [SMALL_STATE(7734)] = 286331, + [SMALL_STATE(7735)] = 286341, + [SMALL_STATE(7736)] = 286351, + [SMALL_STATE(7737)] = 286361, + [SMALL_STATE(7738)] = 286371, + [SMALL_STATE(7739)] = 286379, + [SMALL_STATE(7740)] = 286389, + [SMALL_STATE(7741)] = 286399, + [SMALL_STATE(7742)] = 286407, + [SMALL_STATE(7743)] = 286417, + [SMALL_STATE(7744)] = 286425, + [SMALL_STATE(7745)] = 286435, + [SMALL_STATE(7746)] = 286445, + [SMALL_STATE(7747)] = 286455, + [SMALL_STATE(7748)] = 286465, + [SMALL_STATE(7749)] = 286475, + [SMALL_STATE(7750)] = 286485, + [SMALL_STATE(7751)] = 286493, + [SMALL_STATE(7752)] = 286503, + [SMALL_STATE(7753)] = 286513, + [SMALL_STATE(7754)] = 286523, + [SMALL_STATE(7755)] = 286533, + [SMALL_STATE(7756)] = 286543, + [SMALL_STATE(7757)] = 286553, + [SMALL_STATE(7758)] = 286563, + [SMALL_STATE(7759)] = 286573, + [SMALL_STATE(7760)] = 286583, + [SMALL_STATE(7761)] = 286591, + [SMALL_STATE(7762)] = 286601, + [SMALL_STATE(7763)] = 286611, + [SMALL_STATE(7764)] = 286619, + [SMALL_STATE(7765)] = 286627, + [SMALL_STATE(7766)] = 286637, + [SMALL_STATE(7767)] = 286647, + [SMALL_STATE(7768)] = 286657, + [SMALL_STATE(7769)] = 286667, + [SMALL_STATE(7770)] = 286677, + [SMALL_STATE(7771)] = 286687, + [SMALL_STATE(7772)] = 286695, + [SMALL_STATE(7773)] = 286705, + [SMALL_STATE(7774)] = 286715, + [SMALL_STATE(7775)] = 286723, + [SMALL_STATE(7776)] = 286733, + [SMALL_STATE(7777)] = 286743, + [SMALL_STATE(7778)] = 286753, + [SMALL_STATE(7779)] = 286761, + [SMALL_STATE(7780)] = 286769, + [SMALL_STATE(7781)] = 286779, + [SMALL_STATE(7782)] = 286787, + [SMALL_STATE(7783)] = 286797, + [SMALL_STATE(7784)] = 286807, + [SMALL_STATE(7785)] = 286817, + [SMALL_STATE(7786)] = 286827, + [SMALL_STATE(7787)] = 286837, + [SMALL_STATE(7788)] = 286847, + [SMALL_STATE(7789)] = 286857, + [SMALL_STATE(7790)] = 286865, + [SMALL_STATE(7791)] = 286875, + [SMALL_STATE(7792)] = 286885, + [SMALL_STATE(7793)] = 286895, + [SMALL_STATE(7794)] = 286905, + [SMALL_STATE(7795)] = 286915, + [SMALL_STATE(7796)] = 286925, + [SMALL_STATE(7797)] = 286935, + [SMALL_STATE(7798)] = 286945, + [SMALL_STATE(7799)] = 286955, + [SMALL_STATE(7800)] = 286963, + [SMALL_STATE(7801)] = 286973, + [SMALL_STATE(7802)] = 286983, + [SMALL_STATE(7803)] = 286993, + [SMALL_STATE(7804)] = 287003, + [SMALL_STATE(7805)] = 287013, + [SMALL_STATE(7806)] = 287023, + [SMALL_STATE(7807)] = 287033, + [SMALL_STATE(7808)] = 287043, + [SMALL_STATE(7809)] = 287053, + [SMALL_STATE(7810)] = 287063, + [SMALL_STATE(7811)] = 287073, + [SMALL_STATE(7812)] = 287083, + [SMALL_STATE(7813)] = 287093, + [SMALL_STATE(7814)] = 287103, + [SMALL_STATE(7815)] = 287113, + [SMALL_STATE(7816)] = 287123, + [SMALL_STATE(7817)] = 287133, + [SMALL_STATE(7818)] = 287143, + [SMALL_STATE(7819)] = 287153, + [SMALL_STATE(7820)] = 287163, + [SMALL_STATE(7821)] = 287173, + [SMALL_STATE(7822)] = 287183, + [SMALL_STATE(7823)] = 287193, + [SMALL_STATE(7824)] = 287203, + [SMALL_STATE(7825)] = 287213, + [SMALL_STATE(7826)] = 287223, + [SMALL_STATE(7827)] = 287233, + [SMALL_STATE(7828)] = 287243, + [SMALL_STATE(7829)] = 287253, + [SMALL_STATE(7830)] = 287263, + [SMALL_STATE(7831)] = 287273, + [SMALL_STATE(7832)] = 287283, + [SMALL_STATE(7833)] = 287293, + [SMALL_STATE(7834)] = 287303, + [SMALL_STATE(7835)] = 287313, + [SMALL_STATE(7836)] = 287323, + [SMALL_STATE(7837)] = 287333, + [SMALL_STATE(7838)] = 287343, + [SMALL_STATE(7839)] = 287353, + [SMALL_STATE(7840)] = 287363, + [SMALL_STATE(7841)] = 287373, + [SMALL_STATE(7842)] = 287383, + [SMALL_STATE(7843)] = 287393, + [SMALL_STATE(7844)] = 287403, + [SMALL_STATE(7845)] = 287413, + [SMALL_STATE(7846)] = 287423, + [SMALL_STATE(7847)] = 287431, + [SMALL_STATE(7848)] = 287441, + [SMALL_STATE(7849)] = 287451, + [SMALL_STATE(7850)] = 287461, + [SMALL_STATE(7851)] = 287471, + [SMALL_STATE(7852)] = 287481, + [SMALL_STATE(7853)] = 287491, + [SMALL_STATE(7854)] = 287501, + [SMALL_STATE(7855)] = 287511, + [SMALL_STATE(7856)] = 287521, + [SMALL_STATE(7857)] = 287531, + [SMALL_STATE(7858)] = 287541, + [SMALL_STATE(7859)] = 287551, + [SMALL_STATE(7860)] = 287561, + [SMALL_STATE(7861)] = 287571, + [SMALL_STATE(7862)] = 287581, + [SMALL_STATE(7863)] = 287591, + [SMALL_STATE(7864)] = 287601, + [SMALL_STATE(7865)] = 287611, + [SMALL_STATE(7866)] = 287621, + [SMALL_STATE(7867)] = 287631, + [SMALL_STATE(7868)] = 287641, + [SMALL_STATE(7869)] = 287651, + [SMALL_STATE(7870)] = 287661, + [SMALL_STATE(7871)] = 287671, + [SMALL_STATE(7872)] = 287679, + [SMALL_STATE(7873)] = 287689, + [SMALL_STATE(7874)] = 287699, + [SMALL_STATE(7875)] = 287709, + [SMALL_STATE(7876)] = 287719, + [SMALL_STATE(7877)] = 287729, + [SMALL_STATE(7878)] = 287739, + [SMALL_STATE(7879)] = 287749, + [SMALL_STATE(7880)] = 287759, + [SMALL_STATE(7881)] = 287769, + [SMALL_STATE(7882)] = 287779, + [SMALL_STATE(7883)] = 287789, + [SMALL_STATE(7884)] = 287799, + [SMALL_STATE(7885)] = 287809, + [SMALL_STATE(7886)] = 287819, + [SMALL_STATE(7887)] = 287829, + [SMALL_STATE(7888)] = 287839, + [SMALL_STATE(7889)] = 287849, + [SMALL_STATE(7890)] = 287859, + [SMALL_STATE(7891)] = 287869, + [SMALL_STATE(7892)] = 287879, + [SMALL_STATE(7893)] = 287889, + [SMALL_STATE(7894)] = 287899, + [SMALL_STATE(7895)] = 287909, + [SMALL_STATE(7896)] = 287919, + [SMALL_STATE(7897)] = 287929, + [SMALL_STATE(7898)] = 287939, + [SMALL_STATE(7899)] = 287949, + [SMALL_STATE(7900)] = 287959, + [SMALL_STATE(7901)] = 287969, + [SMALL_STATE(7902)] = 287979, + [SMALL_STATE(7903)] = 287987, + [SMALL_STATE(7904)] = 287997, + [SMALL_STATE(7905)] = 288007, + [SMALL_STATE(7906)] = 288017, + [SMALL_STATE(7907)] = 288027, + [SMALL_STATE(7908)] = 288037, + [SMALL_STATE(7909)] = 288047, + [SMALL_STATE(7910)] = 288057, + [SMALL_STATE(7911)] = 288065, + [SMALL_STATE(7912)] = 288075, + [SMALL_STATE(7913)] = 288085, + [SMALL_STATE(7914)] = 288095, + [SMALL_STATE(7915)] = 288105, + [SMALL_STATE(7916)] = 288115, + [SMALL_STATE(7917)] = 288123, + [SMALL_STATE(7918)] = 288133, + [SMALL_STATE(7919)] = 288141, + [SMALL_STATE(7920)] = 288151, + [SMALL_STATE(7921)] = 288161, + [SMALL_STATE(7922)] = 288171, + [SMALL_STATE(7923)] = 288181, + [SMALL_STATE(7924)] = 288191, + [SMALL_STATE(7925)] = 288201, + [SMALL_STATE(7926)] = 288211, + [SMALL_STATE(7927)] = 288221, + [SMALL_STATE(7928)] = 288231, + [SMALL_STATE(7929)] = 288241, + [SMALL_STATE(7930)] = 288251, + [SMALL_STATE(7931)] = 288261, + [SMALL_STATE(7932)] = 288271, + [SMALL_STATE(7933)] = 288281, + [SMALL_STATE(7934)] = 288291, + [SMALL_STATE(7935)] = 288301, + [SMALL_STATE(7936)] = 288311, + [SMALL_STATE(7937)] = 288321, + [SMALL_STATE(7938)] = 288329, + [SMALL_STATE(7939)] = 288337, + [SMALL_STATE(7940)] = 288345, + [SMALL_STATE(7941)] = 288355, + [SMALL_STATE(7942)] = 288365, + [SMALL_STATE(7943)] = 288375, + [SMALL_STATE(7944)] = 288385, + [SMALL_STATE(7945)] = 288395, + [SMALL_STATE(7946)] = 288405, + [SMALL_STATE(7947)] = 288413, + [SMALL_STATE(7948)] = 288423, + [SMALL_STATE(7949)] = 288433, + [SMALL_STATE(7950)] = 288443, + [SMALL_STATE(7951)] = 288453, + [SMALL_STATE(7952)] = 288463, + [SMALL_STATE(7953)] = 288473, + [SMALL_STATE(7954)] = 288483, + [SMALL_STATE(7955)] = 288491, + [SMALL_STATE(7956)] = 288501, + [SMALL_STATE(7957)] = 288511, + [SMALL_STATE(7958)] = 288521, + [SMALL_STATE(7959)] = 288531, + [SMALL_STATE(7960)] = 288541, + [SMALL_STATE(7961)] = 288549, + [SMALL_STATE(7962)] = 288559, + [SMALL_STATE(7963)] = 288569, + [SMALL_STATE(7964)] = 288579, + [SMALL_STATE(7965)] = 288589, + [SMALL_STATE(7966)] = 288599, + [SMALL_STATE(7967)] = 288609, + [SMALL_STATE(7968)] = 288619, + [SMALL_STATE(7969)] = 288629, + [SMALL_STATE(7970)] = 288637, + [SMALL_STATE(7971)] = 288647, + [SMALL_STATE(7972)] = 288657, + [SMALL_STATE(7973)] = 288667, + [SMALL_STATE(7974)] = 288677, + [SMALL_STATE(7975)] = 288687, + [SMALL_STATE(7976)] = 288697, + [SMALL_STATE(7977)] = 288707, + [SMALL_STATE(7978)] = 288717, + [SMALL_STATE(7979)] = 288727, + [SMALL_STATE(7980)] = 288737, + [SMALL_STATE(7981)] = 288745, + [SMALL_STATE(7982)] = 288755, + [SMALL_STATE(7983)] = 288765, + [SMALL_STATE(7984)] = 288775, + [SMALL_STATE(7985)] = 288785, + [SMALL_STATE(7986)] = 288795, + [SMALL_STATE(7987)] = 288805, + [SMALL_STATE(7988)] = 288815, + [SMALL_STATE(7989)] = 288825, + [SMALL_STATE(7990)] = 288833, + [SMALL_STATE(7991)] = 288843, + [SMALL_STATE(7992)] = 288853, + [SMALL_STATE(7993)] = 288861, + [SMALL_STATE(7994)] = 288871, + [SMALL_STATE(7995)] = 288881, + [SMALL_STATE(7996)] = 288891, + [SMALL_STATE(7997)] = 288901, + [SMALL_STATE(7998)] = 288911, + [SMALL_STATE(7999)] = 288919, + [SMALL_STATE(8000)] = 288927, + [SMALL_STATE(8001)] = 288937, + [SMALL_STATE(8002)] = 288947, + [SMALL_STATE(8003)] = 288957, + [SMALL_STATE(8004)] = 288967, + [SMALL_STATE(8005)] = 288977, + [SMALL_STATE(8006)] = 288987, + [SMALL_STATE(8007)] = 288997, + [SMALL_STATE(8008)] = 289007, + [SMALL_STATE(8009)] = 289017, + [SMALL_STATE(8010)] = 289027, + [SMALL_STATE(8011)] = 289037, + [SMALL_STATE(8012)] = 289047, + [SMALL_STATE(8013)] = 289057, + [SMALL_STATE(8014)] = 289067, + [SMALL_STATE(8015)] = 289077, + [SMALL_STATE(8016)] = 289087, + [SMALL_STATE(8017)] = 289095, + [SMALL_STATE(8018)] = 289105, + [SMALL_STATE(8019)] = 289115, + [SMALL_STATE(8020)] = 289125, + [SMALL_STATE(8021)] = 289133, + [SMALL_STATE(8022)] = 289143, + [SMALL_STATE(8023)] = 289153, + [SMALL_STATE(8024)] = 289161, + [SMALL_STATE(8025)] = 289171, + [SMALL_STATE(8026)] = 289181, + [SMALL_STATE(8027)] = 289191, + [SMALL_STATE(8028)] = 289201, + [SMALL_STATE(8029)] = 289211, + [SMALL_STATE(8030)] = 289221, + [SMALL_STATE(8031)] = 289231, + [SMALL_STATE(8032)] = 289241, + [SMALL_STATE(8033)] = 289251, + [SMALL_STATE(8034)] = 289259, + [SMALL_STATE(8035)] = 289267, + [SMALL_STATE(8036)] = 289275, + [SMALL_STATE(8037)] = 289285, + [SMALL_STATE(8038)] = 289295, + [SMALL_STATE(8039)] = 289305, + [SMALL_STATE(8040)] = 289315, + [SMALL_STATE(8041)] = 289325, + [SMALL_STATE(8042)] = 289335, + [SMALL_STATE(8043)] = 289345, + [SMALL_STATE(8044)] = 289355, + [SMALL_STATE(8045)] = 289365, + [SMALL_STATE(8046)] = 289375, + [SMALL_STATE(8047)] = 289385, + [SMALL_STATE(8048)] = 289395, + [SMALL_STATE(8049)] = 289405, + [SMALL_STATE(8050)] = 289415, + [SMALL_STATE(8051)] = 289425, + [SMALL_STATE(8052)] = 289435, + [SMALL_STATE(8053)] = 289445, + [SMALL_STATE(8054)] = 289453, + [SMALL_STATE(8055)] = 289460, + [SMALL_STATE(8056)] = 289467, + [SMALL_STATE(8057)] = 289474, + [SMALL_STATE(8058)] = 289481, + [SMALL_STATE(8059)] = 289488, + [SMALL_STATE(8060)] = 289495, + [SMALL_STATE(8061)] = 289502, + [SMALL_STATE(8062)] = 289509, + [SMALL_STATE(8063)] = 289516, + [SMALL_STATE(8064)] = 289523, + [SMALL_STATE(8065)] = 289530, + [SMALL_STATE(8066)] = 289537, + [SMALL_STATE(8067)] = 289544, + [SMALL_STATE(8068)] = 289551, + [SMALL_STATE(8069)] = 289558, + [SMALL_STATE(8070)] = 289565, + [SMALL_STATE(8071)] = 289572, + [SMALL_STATE(8072)] = 289579, + [SMALL_STATE(8073)] = 289586, + [SMALL_STATE(8074)] = 289593, + [SMALL_STATE(8075)] = 289600, + [SMALL_STATE(8076)] = 289607, + [SMALL_STATE(8077)] = 289614, + [SMALL_STATE(8078)] = 289621, + [SMALL_STATE(8079)] = 289628, + [SMALL_STATE(8080)] = 289635, + [SMALL_STATE(8081)] = 289642, + [SMALL_STATE(8082)] = 289649, + [SMALL_STATE(8083)] = 289656, + [SMALL_STATE(8084)] = 289663, + [SMALL_STATE(8085)] = 289670, + [SMALL_STATE(8086)] = 289677, + [SMALL_STATE(8087)] = 289684, + [SMALL_STATE(8088)] = 289691, + [SMALL_STATE(8089)] = 289698, + [SMALL_STATE(8090)] = 289705, + [SMALL_STATE(8091)] = 289712, + [SMALL_STATE(8092)] = 289719, + [SMALL_STATE(8093)] = 289726, + [SMALL_STATE(8094)] = 289733, + [SMALL_STATE(8095)] = 289740, + [SMALL_STATE(8096)] = 289747, + [SMALL_STATE(8097)] = 289754, + [SMALL_STATE(8098)] = 289761, + [SMALL_STATE(8099)] = 289768, + [SMALL_STATE(8100)] = 289775, + [SMALL_STATE(8101)] = 289782, + [SMALL_STATE(8102)] = 289789, + [SMALL_STATE(8103)] = 289796, + [SMALL_STATE(8104)] = 289803, + [SMALL_STATE(8105)] = 289810, + [SMALL_STATE(8106)] = 289817, + [SMALL_STATE(8107)] = 289824, + [SMALL_STATE(8108)] = 289831, + [SMALL_STATE(8109)] = 289838, + [SMALL_STATE(8110)] = 289845, + [SMALL_STATE(8111)] = 289852, + [SMALL_STATE(8112)] = 289859, + [SMALL_STATE(8113)] = 289866, + [SMALL_STATE(8114)] = 289873, + [SMALL_STATE(8115)] = 289880, + [SMALL_STATE(8116)] = 289887, + [SMALL_STATE(8117)] = 289894, + [SMALL_STATE(8118)] = 289901, + [SMALL_STATE(8119)] = 289908, + [SMALL_STATE(8120)] = 289915, + [SMALL_STATE(8121)] = 289922, + [SMALL_STATE(8122)] = 289929, + [SMALL_STATE(8123)] = 289936, + [SMALL_STATE(8124)] = 289943, + [SMALL_STATE(8125)] = 289950, + [SMALL_STATE(8126)] = 289957, + [SMALL_STATE(8127)] = 289964, + [SMALL_STATE(8128)] = 289971, + [SMALL_STATE(8129)] = 289978, + [SMALL_STATE(8130)] = 289985, + [SMALL_STATE(8131)] = 289992, + [SMALL_STATE(8132)] = 289999, + [SMALL_STATE(8133)] = 290006, + [SMALL_STATE(8134)] = 290013, + [SMALL_STATE(8135)] = 290020, + [SMALL_STATE(8136)] = 290027, + [SMALL_STATE(8137)] = 290034, + [SMALL_STATE(8138)] = 290041, + [SMALL_STATE(8139)] = 290048, + [SMALL_STATE(8140)] = 290055, + [SMALL_STATE(8141)] = 290062, + [SMALL_STATE(8142)] = 290069, + [SMALL_STATE(8143)] = 290076, + [SMALL_STATE(8144)] = 290083, + [SMALL_STATE(8145)] = 290090, + [SMALL_STATE(8146)] = 290097, + [SMALL_STATE(8147)] = 290104, + [SMALL_STATE(8148)] = 290111, + [SMALL_STATE(8149)] = 290118, + [SMALL_STATE(8150)] = 290125, + [SMALL_STATE(8151)] = 290132, + [SMALL_STATE(8152)] = 290139, + [SMALL_STATE(8153)] = 290146, + [SMALL_STATE(8154)] = 290153, + [SMALL_STATE(8155)] = 290160, + [SMALL_STATE(8156)] = 290167, + [SMALL_STATE(8157)] = 290174, + [SMALL_STATE(8158)] = 290181, + [SMALL_STATE(8159)] = 290188, + [SMALL_STATE(8160)] = 290195, + [SMALL_STATE(8161)] = 290202, + [SMALL_STATE(8162)] = 290209, + [SMALL_STATE(8163)] = 290216, + [SMALL_STATE(8164)] = 290223, + [SMALL_STATE(8165)] = 290230, + [SMALL_STATE(8166)] = 290237, + [SMALL_STATE(8167)] = 290244, + [SMALL_STATE(8168)] = 290251, + [SMALL_STATE(8169)] = 290258, + [SMALL_STATE(8170)] = 290265, + [SMALL_STATE(8171)] = 290272, + [SMALL_STATE(8172)] = 290279, + [SMALL_STATE(8173)] = 290286, + [SMALL_STATE(8174)] = 290293, + [SMALL_STATE(8175)] = 290300, + [SMALL_STATE(8176)] = 290307, + [SMALL_STATE(8177)] = 290314, + [SMALL_STATE(8178)] = 290321, + [SMALL_STATE(8179)] = 290328, + [SMALL_STATE(8180)] = 290335, + [SMALL_STATE(8181)] = 290342, + [SMALL_STATE(8182)] = 290349, + [SMALL_STATE(8183)] = 290356, + [SMALL_STATE(8184)] = 290363, + [SMALL_STATE(8185)] = 290370, + [SMALL_STATE(8186)] = 290377, + [SMALL_STATE(8187)] = 290384, + [SMALL_STATE(8188)] = 290391, + [SMALL_STATE(8189)] = 290398, + [SMALL_STATE(8190)] = 290405, + [SMALL_STATE(8191)] = 290412, + [SMALL_STATE(8192)] = 290419, + [SMALL_STATE(8193)] = 290426, + [SMALL_STATE(8194)] = 290433, + [SMALL_STATE(8195)] = 290440, + [SMALL_STATE(8196)] = 290447, + [SMALL_STATE(8197)] = 290454, + [SMALL_STATE(8198)] = 290461, + [SMALL_STATE(8199)] = 290468, + [SMALL_STATE(8200)] = 290475, + [SMALL_STATE(8201)] = 290482, + [SMALL_STATE(8202)] = 290489, + [SMALL_STATE(8203)] = 290496, + [SMALL_STATE(8204)] = 290503, + [SMALL_STATE(8205)] = 290510, + [SMALL_STATE(8206)] = 290517, + [SMALL_STATE(8207)] = 290524, + [SMALL_STATE(8208)] = 290531, + [SMALL_STATE(8209)] = 290538, + [SMALL_STATE(8210)] = 290545, + [SMALL_STATE(8211)] = 290552, + [SMALL_STATE(8212)] = 290559, + [SMALL_STATE(8213)] = 290566, + [SMALL_STATE(8214)] = 290573, + [SMALL_STATE(8215)] = 290580, + [SMALL_STATE(8216)] = 290587, + [SMALL_STATE(8217)] = 290594, + [SMALL_STATE(8218)] = 290601, + [SMALL_STATE(8219)] = 290608, + [SMALL_STATE(8220)] = 290615, + [SMALL_STATE(8221)] = 290622, + [SMALL_STATE(8222)] = 290629, + [SMALL_STATE(8223)] = 290636, + [SMALL_STATE(8224)] = 290643, + [SMALL_STATE(8225)] = 290650, + [SMALL_STATE(8226)] = 290657, + [SMALL_STATE(8227)] = 290664, + [SMALL_STATE(8228)] = 290671, + [SMALL_STATE(8229)] = 290678, + [SMALL_STATE(8230)] = 290685, + [SMALL_STATE(8231)] = 290692, + [SMALL_STATE(8232)] = 290699, + [SMALL_STATE(8233)] = 290706, + [SMALL_STATE(8234)] = 290713, + [SMALL_STATE(8235)] = 290720, + [SMALL_STATE(8236)] = 290727, + [SMALL_STATE(8237)] = 290734, + [SMALL_STATE(8238)] = 290741, + [SMALL_STATE(8239)] = 290748, + [SMALL_STATE(8240)] = 290755, + [SMALL_STATE(8241)] = 290762, + [SMALL_STATE(8242)] = 290769, + [SMALL_STATE(8243)] = 290776, + [SMALL_STATE(8244)] = 290783, + [SMALL_STATE(8245)] = 290790, + [SMALL_STATE(8246)] = 290797, + [SMALL_STATE(8247)] = 290804, + [SMALL_STATE(8248)] = 290811, + [SMALL_STATE(8249)] = 290818, + [SMALL_STATE(8250)] = 290825, + [SMALL_STATE(8251)] = 290832, + [SMALL_STATE(8252)] = 290839, + [SMALL_STATE(8253)] = 290846, + [SMALL_STATE(8254)] = 290853, + [SMALL_STATE(8255)] = 290860, + [SMALL_STATE(8256)] = 290867, + [SMALL_STATE(8257)] = 290874, + [SMALL_STATE(8258)] = 290881, + [SMALL_STATE(8259)] = 290888, + [SMALL_STATE(8260)] = 290895, + [SMALL_STATE(8261)] = 290902, + [SMALL_STATE(8262)] = 290909, + [SMALL_STATE(8263)] = 290916, + [SMALL_STATE(8264)] = 290923, + [SMALL_STATE(8265)] = 290930, + [SMALL_STATE(8266)] = 290937, + [SMALL_STATE(8267)] = 290944, + [SMALL_STATE(8268)] = 290951, + [SMALL_STATE(8269)] = 290958, + [SMALL_STATE(8270)] = 290965, + [SMALL_STATE(8271)] = 290972, + [SMALL_STATE(8272)] = 290979, + [SMALL_STATE(8273)] = 290986, + [SMALL_STATE(8274)] = 290993, + [SMALL_STATE(8275)] = 291000, + [SMALL_STATE(8276)] = 291007, + [SMALL_STATE(8277)] = 291014, + [SMALL_STATE(8278)] = 291021, + [SMALL_STATE(8279)] = 291028, + [SMALL_STATE(8280)] = 291035, + [SMALL_STATE(8281)] = 291042, + [SMALL_STATE(8282)] = 291049, + [SMALL_STATE(8283)] = 291056, + [SMALL_STATE(8284)] = 291063, + [SMALL_STATE(8285)] = 291070, + [SMALL_STATE(8286)] = 291077, + [SMALL_STATE(8287)] = 291084, + [SMALL_STATE(8288)] = 291091, + [SMALL_STATE(8289)] = 291098, + [SMALL_STATE(8290)] = 291105, + [SMALL_STATE(8291)] = 291112, + [SMALL_STATE(8292)] = 291119, + [SMALL_STATE(8293)] = 291126, + [SMALL_STATE(8294)] = 291133, + [SMALL_STATE(8295)] = 291140, + [SMALL_STATE(8296)] = 291147, + [SMALL_STATE(8297)] = 291154, + [SMALL_STATE(8298)] = 291161, + [SMALL_STATE(8299)] = 291168, + [SMALL_STATE(8300)] = 291175, + [SMALL_STATE(8301)] = 291182, + [SMALL_STATE(8302)] = 291189, + [SMALL_STATE(8303)] = 291196, + [SMALL_STATE(8304)] = 291203, + [SMALL_STATE(8305)] = 291210, + [SMALL_STATE(8306)] = 291217, + [SMALL_STATE(8307)] = 291224, + [SMALL_STATE(8308)] = 291231, + [SMALL_STATE(8309)] = 291238, + [SMALL_STATE(8310)] = 291245, + [SMALL_STATE(8311)] = 291252, + [SMALL_STATE(8312)] = 291259, + [SMALL_STATE(8313)] = 291266, + [SMALL_STATE(8314)] = 291273, + [SMALL_STATE(8315)] = 291280, + [SMALL_STATE(8316)] = 291287, + [SMALL_STATE(8317)] = 291294, + [SMALL_STATE(8318)] = 291301, + [SMALL_STATE(8319)] = 291308, + [SMALL_STATE(8320)] = 291315, + [SMALL_STATE(8321)] = 291322, + [SMALL_STATE(8322)] = 291329, + [SMALL_STATE(8323)] = 291336, + [SMALL_STATE(8324)] = 291343, + [SMALL_STATE(8325)] = 291350, + [SMALL_STATE(8326)] = 291357, + [SMALL_STATE(8327)] = 291364, + [SMALL_STATE(8328)] = 291371, + [SMALL_STATE(8329)] = 291378, + [SMALL_STATE(8330)] = 291385, + [SMALL_STATE(8331)] = 291392, + [SMALL_STATE(8332)] = 291399, + [SMALL_STATE(8333)] = 291406, + [SMALL_STATE(8334)] = 291413, + [SMALL_STATE(8335)] = 291420, + [SMALL_STATE(8336)] = 291427, + [SMALL_STATE(8337)] = 291434, + [SMALL_STATE(8338)] = 291441, + [SMALL_STATE(8339)] = 291448, + [SMALL_STATE(8340)] = 291455, + [SMALL_STATE(8341)] = 291462, + [SMALL_STATE(8342)] = 291469, + [SMALL_STATE(8343)] = 291476, + [SMALL_STATE(8344)] = 291483, + [SMALL_STATE(8345)] = 291490, + [SMALL_STATE(8346)] = 291497, + [SMALL_STATE(8347)] = 291504, + [SMALL_STATE(8348)] = 291511, + [SMALL_STATE(8349)] = 291518, + [SMALL_STATE(8350)] = 291525, + [SMALL_STATE(8351)] = 291532, + [SMALL_STATE(8352)] = 291539, + [SMALL_STATE(8353)] = 291546, + [SMALL_STATE(8354)] = 291553, + [SMALL_STATE(8355)] = 291560, + [SMALL_STATE(8356)] = 291567, + [SMALL_STATE(8357)] = 291574, + [SMALL_STATE(8358)] = 291581, + [SMALL_STATE(8359)] = 291588, + [SMALL_STATE(8360)] = 291595, + [SMALL_STATE(8361)] = 291602, + [SMALL_STATE(8362)] = 291609, + [SMALL_STATE(8363)] = 291616, + [SMALL_STATE(8364)] = 291623, + [SMALL_STATE(8365)] = 291630, + [SMALL_STATE(8366)] = 291637, + [SMALL_STATE(8367)] = 291644, + [SMALL_STATE(8368)] = 291651, + [SMALL_STATE(8369)] = 291658, + [SMALL_STATE(8370)] = 291665, + [SMALL_STATE(8371)] = 291672, + [SMALL_STATE(8372)] = 291679, + [SMALL_STATE(8373)] = 291686, + [SMALL_STATE(8374)] = 291693, + [SMALL_STATE(8375)] = 291700, + [SMALL_STATE(8376)] = 291707, + [SMALL_STATE(8377)] = 291714, + [SMALL_STATE(8378)] = 291721, + [SMALL_STATE(8379)] = 291728, + [SMALL_STATE(8380)] = 291735, + [SMALL_STATE(8381)] = 291742, + [SMALL_STATE(8382)] = 291749, + [SMALL_STATE(8383)] = 291756, + [SMALL_STATE(8384)] = 291763, + [SMALL_STATE(8385)] = 291770, + [SMALL_STATE(8386)] = 291777, + [SMALL_STATE(8387)] = 291784, + [SMALL_STATE(8388)] = 291791, + [SMALL_STATE(8389)] = 291798, + [SMALL_STATE(8390)] = 291805, + [SMALL_STATE(8391)] = 291812, + [SMALL_STATE(8392)] = 291819, + [SMALL_STATE(8393)] = 291826, + [SMALL_STATE(8394)] = 291833, + [SMALL_STATE(8395)] = 291840, + [SMALL_STATE(8396)] = 291847, + [SMALL_STATE(8397)] = 291854, + [SMALL_STATE(8398)] = 291861, + [SMALL_STATE(8399)] = 291868, + [SMALL_STATE(8400)] = 291875, + [SMALL_STATE(8401)] = 291882, + [SMALL_STATE(8402)] = 291889, + [SMALL_STATE(8403)] = 291896, + [SMALL_STATE(8404)] = 291903, + [SMALL_STATE(8405)] = 291910, + [SMALL_STATE(8406)] = 291917, + [SMALL_STATE(8407)] = 291924, + [SMALL_STATE(8408)] = 291931, + [SMALL_STATE(8409)] = 291938, + [SMALL_STATE(8410)] = 291945, + [SMALL_STATE(8411)] = 291952, + [SMALL_STATE(8412)] = 291959, + [SMALL_STATE(8413)] = 291966, + [SMALL_STATE(8414)] = 291973, + [SMALL_STATE(8415)] = 291980, + [SMALL_STATE(8416)] = 291987, + [SMALL_STATE(8417)] = 291994, + [SMALL_STATE(8418)] = 292001, + [SMALL_STATE(8419)] = 292008, + [SMALL_STATE(8420)] = 292015, + [SMALL_STATE(8421)] = 292022, + [SMALL_STATE(8422)] = 292029, + [SMALL_STATE(8423)] = 292036, + [SMALL_STATE(8424)] = 292043, + [SMALL_STATE(8425)] = 292050, + [SMALL_STATE(8426)] = 292057, + [SMALL_STATE(8427)] = 292064, + [SMALL_STATE(8428)] = 292071, + [SMALL_STATE(8429)] = 292078, + [SMALL_STATE(8430)] = 292085, + [SMALL_STATE(8431)] = 292092, + [SMALL_STATE(8432)] = 292099, + [SMALL_STATE(8433)] = 292106, + [SMALL_STATE(8434)] = 292113, + [SMALL_STATE(8435)] = 292120, + [SMALL_STATE(8436)] = 292127, + [SMALL_STATE(8437)] = 292134, + [SMALL_STATE(8438)] = 292141, + [SMALL_STATE(8439)] = 292148, + [SMALL_STATE(8440)] = 292155, + [SMALL_STATE(8441)] = 292162, + [SMALL_STATE(8442)] = 292169, + [SMALL_STATE(8443)] = 292176, + [SMALL_STATE(8444)] = 292183, + [SMALL_STATE(8445)] = 292190, + [SMALL_STATE(8446)] = 292197, + [SMALL_STATE(8447)] = 292204, + [SMALL_STATE(8448)] = 292211, + [SMALL_STATE(8449)] = 292218, + [SMALL_STATE(8450)] = 292225, + [SMALL_STATE(8451)] = 292232, + [SMALL_STATE(8452)] = 292239, + [SMALL_STATE(8453)] = 292246, + [SMALL_STATE(8454)] = 292253, + [SMALL_STATE(8455)] = 292260, + [SMALL_STATE(8456)] = 292267, + [SMALL_STATE(8457)] = 292274, + [SMALL_STATE(8458)] = 292281, + [SMALL_STATE(8459)] = 292288, + [SMALL_STATE(8460)] = 292295, + [SMALL_STATE(8461)] = 292302, + [SMALL_STATE(8462)] = 292309, + [SMALL_STATE(8463)] = 292316, + [SMALL_STATE(8464)] = 292323, + [SMALL_STATE(8465)] = 292330, + [SMALL_STATE(8466)] = 292337, + [SMALL_STATE(8467)] = 292344, + [SMALL_STATE(8468)] = 292351, + [SMALL_STATE(8469)] = 292358, + [SMALL_STATE(8470)] = 292365, + [SMALL_STATE(8471)] = 292372, + [SMALL_STATE(8472)] = 292379, + [SMALL_STATE(8473)] = 292386, + [SMALL_STATE(8474)] = 292393, + [SMALL_STATE(8475)] = 292400, + [SMALL_STATE(8476)] = 292407, + [SMALL_STATE(8477)] = 292414, + [SMALL_STATE(8478)] = 292421, + [SMALL_STATE(8479)] = 292428, + [SMALL_STATE(8480)] = 292435, + [SMALL_STATE(8481)] = 292442, + [SMALL_STATE(8482)] = 292449, + [SMALL_STATE(8483)] = 292456, + [SMALL_STATE(8484)] = 292463, + [SMALL_STATE(8485)] = 292470, + [SMALL_STATE(8486)] = 292477, + [SMALL_STATE(8487)] = 292484, + [SMALL_STATE(8488)] = 292491, + [SMALL_STATE(8489)] = 292498, + [SMALL_STATE(8490)] = 292505, + [SMALL_STATE(8491)] = 292512, + [SMALL_STATE(8492)] = 292519, + [SMALL_STATE(8493)] = 292526, + [SMALL_STATE(8494)] = 292533, + [SMALL_STATE(8495)] = 292540, + [SMALL_STATE(8496)] = 292547, + [SMALL_STATE(8497)] = 292554, + [SMALL_STATE(8498)] = 292561, + [SMALL_STATE(8499)] = 292568, + [SMALL_STATE(8500)] = 292575, + [SMALL_STATE(8501)] = 292582, + [SMALL_STATE(8502)] = 292589, + [SMALL_STATE(8503)] = 292596, + [SMALL_STATE(8504)] = 292603, + [SMALL_STATE(8505)] = 292610, + [SMALL_STATE(8506)] = 292617, + [SMALL_STATE(8507)] = 292624, + [SMALL_STATE(8508)] = 292631, + [SMALL_STATE(8509)] = 292638, + [SMALL_STATE(8510)] = 292645, + [SMALL_STATE(8511)] = 292652, + [SMALL_STATE(8512)] = 292659, + [SMALL_STATE(8513)] = 292666, + [SMALL_STATE(8514)] = 292673, + [SMALL_STATE(8515)] = 292680, + [SMALL_STATE(8516)] = 292687, + [SMALL_STATE(8517)] = 292694, + [SMALL_STATE(8518)] = 292701, + [SMALL_STATE(8519)] = 292708, + [SMALL_STATE(8520)] = 292715, + [SMALL_STATE(8521)] = 292722, + [SMALL_STATE(8522)] = 292729, + [SMALL_STATE(8523)] = 292736, + [SMALL_STATE(8524)] = 292743, + [SMALL_STATE(8525)] = 292750, + [SMALL_STATE(8526)] = 292757, + [SMALL_STATE(8527)] = 292764, + [SMALL_STATE(8528)] = 292771, + [SMALL_STATE(8529)] = 292778, + [SMALL_STATE(8530)] = 292785, + [SMALL_STATE(8531)] = 292792, + [SMALL_STATE(8532)] = 292799, + [SMALL_STATE(8533)] = 292806, + [SMALL_STATE(8534)] = 292813, + [SMALL_STATE(8535)] = 292820, + [SMALL_STATE(8536)] = 292827, + [SMALL_STATE(8537)] = 292834, + [SMALL_STATE(8538)] = 292841, + [SMALL_STATE(8539)] = 292848, + [SMALL_STATE(8540)] = 292855, + [SMALL_STATE(8541)] = 292862, + [SMALL_STATE(8542)] = 292869, + [SMALL_STATE(8543)] = 292876, + [SMALL_STATE(8544)] = 292883, + [SMALL_STATE(8545)] = 292890, + [SMALL_STATE(8546)] = 292897, + [SMALL_STATE(8547)] = 292904, + [SMALL_STATE(8548)] = 292911, + [SMALL_STATE(8549)] = 292918, + [SMALL_STATE(8550)] = 292925, + [SMALL_STATE(8551)] = 292932, + [SMALL_STATE(8552)] = 292939, + [SMALL_STATE(8553)] = 292946, + [SMALL_STATE(8554)] = 292953, + [SMALL_STATE(8555)] = 292960, + [SMALL_STATE(8556)] = 292967, + [SMALL_STATE(8557)] = 292974, + [SMALL_STATE(8558)] = 292981, + [SMALL_STATE(8559)] = 292988, + [SMALL_STATE(8560)] = 292995, + [SMALL_STATE(8561)] = 293002, + [SMALL_STATE(8562)] = 293009, + [SMALL_STATE(8563)] = 293016, + [SMALL_STATE(8564)] = 293023, + [SMALL_STATE(8565)] = 293030, + [SMALL_STATE(8566)] = 293037, + [SMALL_STATE(8567)] = 293044, + [SMALL_STATE(8568)] = 293051, + [SMALL_STATE(8569)] = 293058, + [SMALL_STATE(8570)] = 293065, + [SMALL_STATE(8571)] = 293072, + [SMALL_STATE(8572)] = 293079, + [SMALL_STATE(8573)] = 293086, + [SMALL_STATE(8574)] = 293093, + [SMALL_STATE(8575)] = 293100, + [SMALL_STATE(8576)] = 293107, + [SMALL_STATE(8577)] = 293114, + [SMALL_STATE(8578)] = 293121, + [SMALL_STATE(8579)] = 293128, + [SMALL_STATE(8580)] = 293135, + [SMALL_STATE(8581)] = 293142, + [SMALL_STATE(8582)] = 293149, + [SMALL_STATE(8583)] = 293156, + [SMALL_STATE(8584)] = 293163, + [SMALL_STATE(8585)] = 293170, + [SMALL_STATE(8586)] = 293177, + [SMALL_STATE(8587)] = 293184, + [SMALL_STATE(8588)] = 293191, + [SMALL_STATE(8589)] = 293198, + [SMALL_STATE(8590)] = 293205, + [SMALL_STATE(8591)] = 293212, + [SMALL_STATE(8592)] = 293219, + [SMALL_STATE(8593)] = 293226, + [SMALL_STATE(8594)] = 293233, + [SMALL_STATE(8595)] = 293240, + [SMALL_STATE(8596)] = 293247, + [SMALL_STATE(8597)] = 293254, + [SMALL_STATE(8598)] = 293261, + [SMALL_STATE(8599)] = 293268, + [SMALL_STATE(8600)] = 293275, + [SMALL_STATE(8601)] = 293282, + [SMALL_STATE(8602)] = 293289, + [SMALL_STATE(8603)] = 293296, + [SMALL_STATE(8604)] = 293303, + [SMALL_STATE(8605)] = 293310, + [SMALL_STATE(8606)] = 293317, + [SMALL_STATE(8607)] = 293324, + [SMALL_STATE(8608)] = 293331, + [SMALL_STATE(8609)] = 293338, + [SMALL_STATE(8610)] = 293345, + [SMALL_STATE(8611)] = 293352, + [SMALL_STATE(8612)] = 293359, + [SMALL_STATE(8613)] = 293366, + [SMALL_STATE(8614)] = 293373, + [SMALL_STATE(8615)] = 293380, + [SMALL_STATE(8616)] = 293387, + [SMALL_STATE(8617)] = 293394, + [SMALL_STATE(8618)] = 293401, + [SMALL_STATE(8619)] = 293408, + [SMALL_STATE(8620)] = 293415, + [SMALL_STATE(8621)] = 293422, + [SMALL_STATE(8622)] = 293429, + [SMALL_STATE(8623)] = 293436, + [SMALL_STATE(8624)] = 293443, + [SMALL_STATE(8625)] = 293450, + [SMALL_STATE(8626)] = 293457, + [SMALL_STATE(8627)] = 293464, + [SMALL_STATE(8628)] = 293471, + [SMALL_STATE(8629)] = 293478, + [SMALL_STATE(8630)] = 293485, + [SMALL_STATE(8631)] = 293492, + [SMALL_STATE(8632)] = 293499, + [SMALL_STATE(8633)] = 293506, + [SMALL_STATE(8634)] = 293513, + [SMALL_STATE(8635)] = 293520, + [SMALL_STATE(8636)] = 293527, + [SMALL_STATE(8637)] = 293534, + [SMALL_STATE(8638)] = 293541, + [SMALL_STATE(8639)] = 293548, + [SMALL_STATE(8640)] = 293555, + [SMALL_STATE(8641)] = 293562, + [SMALL_STATE(8642)] = 293569, + [SMALL_STATE(8643)] = 293576, + [SMALL_STATE(8644)] = 293583, + [SMALL_STATE(8645)] = 293590, + [SMALL_STATE(8646)] = 293597, + [SMALL_STATE(8647)] = 293604, + [SMALL_STATE(8648)] = 293611, + [SMALL_STATE(8649)] = 293618, + [SMALL_STATE(8650)] = 293625, + [SMALL_STATE(8651)] = 293632, + [SMALL_STATE(8652)] = 293639, + [SMALL_STATE(8653)] = 293646, + [SMALL_STATE(8654)] = 293653, + [SMALL_STATE(8655)] = 293660, + [SMALL_STATE(8656)] = 293667, + [SMALL_STATE(8657)] = 293674, + [SMALL_STATE(8658)] = 293681, + [SMALL_STATE(8659)] = 293688, + [SMALL_STATE(8660)] = 293695, + [SMALL_STATE(8661)] = 293702, + [SMALL_STATE(8662)] = 293709, + [SMALL_STATE(8663)] = 293716, + [SMALL_STATE(8664)] = 293723, + [SMALL_STATE(8665)] = 293730, + [SMALL_STATE(8666)] = 293737, + [SMALL_STATE(8667)] = 293744, + [SMALL_STATE(8668)] = 293751, + [SMALL_STATE(8669)] = 293758, + [SMALL_STATE(8670)] = 293765, + [SMALL_STATE(8671)] = 293772, + [SMALL_STATE(8672)] = 293779, + [SMALL_STATE(8673)] = 293786, + [SMALL_STATE(8674)] = 293793, + [SMALL_STATE(8675)] = 293800, + [SMALL_STATE(8676)] = 293807, + [SMALL_STATE(8677)] = 293814, + [SMALL_STATE(8678)] = 293821, + [SMALL_STATE(8679)] = 293828, + [SMALL_STATE(8680)] = 293835, + [SMALL_STATE(8681)] = 293842, + [SMALL_STATE(8682)] = 293849, + [SMALL_STATE(8683)] = 293856, + [SMALL_STATE(8684)] = 293863, + [SMALL_STATE(8685)] = 293870, + [SMALL_STATE(8686)] = 293877, + [SMALL_STATE(8687)] = 293884, + [SMALL_STATE(8688)] = 293891, + [SMALL_STATE(8689)] = 293898, + [SMALL_STATE(8690)] = 293905, + [SMALL_STATE(8691)] = 293912, + [SMALL_STATE(8692)] = 293919, + [SMALL_STATE(8693)] = 293926, + [SMALL_STATE(8694)] = 293933, + [SMALL_STATE(8695)] = 293940, + [SMALL_STATE(8696)] = 293947, + [SMALL_STATE(8697)] = 293954, + [SMALL_STATE(8698)] = 293961, + [SMALL_STATE(8699)] = 293968, + [SMALL_STATE(8700)] = 293975, + [SMALL_STATE(8701)] = 293982, + [SMALL_STATE(8702)] = 293989, + [SMALL_STATE(8703)] = 293996, + [SMALL_STATE(8704)] = 294003, + [SMALL_STATE(8705)] = 294010, + [SMALL_STATE(8706)] = 294017, + [SMALL_STATE(8707)] = 294024, + [SMALL_STATE(8708)] = 294031, + [SMALL_STATE(8709)] = 294038, + [SMALL_STATE(8710)] = 294045, + [SMALL_STATE(8711)] = 294052, + [SMALL_STATE(8712)] = 294059, + [SMALL_STATE(8713)] = 294066, + [SMALL_STATE(8714)] = 294073, + [SMALL_STATE(8715)] = 294080, + [SMALL_STATE(8716)] = 294087, + [SMALL_STATE(8717)] = 294094, + [SMALL_STATE(8718)] = 294101, + [SMALL_STATE(8719)] = 294108, + [SMALL_STATE(8720)] = 294115, + [SMALL_STATE(8721)] = 294122, + [SMALL_STATE(8722)] = 294129, + [SMALL_STATE(8723)] = 294136, + [SMALL_STATE(8724)] = 294143, + [SMALL_STATE(8725)] = 294150, + [SMALL_STATE(8726)] = 294157, + [SMALL_STATE(8727)] = 294164, + [SMALL_STATE(8728)] = 294171, + [SMALL_STATE(8729)] = 294178, + [SMALL_STATE(8730)] = 294185, + [SMALL_STATE(8731)] = 294192, + [SMALL_STATE(8732)] = 294199, + [SMALL_STATE(8733)] = 294206, + [SMALL_STATE(8734)] = 294213, + [SMALL_STATE(8735)] = 294220, + [SMALL_STATE(8736)] = 294227, + [SMALL_STATE(8737)] = 294234, + [SMALL_STATE(8738)] = 294241, + [SMALL_STATE(8739)] = 294248, + [SMALL_STATE(8740)] = 294255, + [SMALL_STATE(8741)] = 294262, + [SMALL_STATE(8742)] = 294269, + [SMALL_STATE(8743)] = 294276, + [SMALL_STATE(8744)] = 294283, + [SMALL_STATE(8745)] = 294290, + [SMALL_STATE(8746)] = 294297, + [SMALL_STATE(8747)] = 294304, + [SMALL_STATE(8748)] = 294311, + [SMALL_STATE(8749)] = 294318, + [SMALL_STATE(8750)] = 294325, + [SMALL_STATE(8751)] = 294332, + [SMALL_STATE(8752)] = 294339, + [SMALL_STATE(8753)] = 294346, + [SMALL_STATE(8754)] = 294353, + [SMALL_STATE(8755)] = 294360, + [SMALL_STATE(8756)] = 294367, + [SMALL_STATE(8757)] = 294374, + [SMALL_STATE(8758)] = 294381, + [SMALL_STATE(8759)] = 294388, + [SMALL_STATE(8760)] = 294395, + [SMALL_STATE(8761)] = 294402, + [SMALL_STATE(8762)] = 294409, + [SMALL_STATE(8763)] = 294416, + [SMALL_STATE(8764)] = 294423, + [SMALL_STATE(8765)] = 294430, + [SMALL_STATE(8766)] = 294437, + [SMALL_STATE(8767)] = 294444, + [SMALL_STATE(8768)] = 294451, + [SMALL_STATE(8769)] = 294458, + [SMALL_STATE(8770)] = 294465, + [SMALL_STATE(8771)] = 294472, + [SMALL_STATE(8772)] = 294479, + [SMALL_STATE(8773)] = 294486, + [SMALL_STATE(8774)] = 294493, + [SMALL_STATE(8775)] = 294500, + [SMALL_STATE(8776)] = 294507, + [SMALL_STATE(8777)] = 294514, + [SMALL_STATE(8778)] = 294521, + [SMALL_STATE(8779)] = 294528, + [SMALL_STATE(8780)] = 294535, + [SMALL_STATE(8781)] = 294542, + [SMALL_STATE(8782)] = 294549, + [SMALL_STATE(8783)] = 294556, + [SMALL_STATE(8784)] = 294563, + [SMALL_STATE(8785)] = 294570, + [SMALL_STATE(8786)] = 294577, + [SMALL_STATE(8787)] = 294584, + [SMALL_STATE(8788)] = 294591, + [SMALL_STATE(8789)] = 294598, + [SMALL_STATE(8790)] = 294605, + [SMALL_STATE(8791)] = 294612, + [SMALL_STATE(8792)] = 294619, + [SMALL_STATE(8793)] = 294626, + [SMALL_STATE(8794)] = 294633, + [SMALL_STATE(8795)] = 294640, + [SMALL_STATE(8796)] = 294647, + [SMALL_STATE(8797)] = 294654, + [SMALL_STATE(8798)] = 294661, + [SMALL_STATE(8799)] = 294668, + [SMALL_STATE(8800)] = 294675, + [SMALL_STATE(8801)] = 294682, + [SMALL_STATE(8802)] = 294689, + [SMALL_STATE(8803)] = 294696, + [SMALL_STATE(8804)] = 294703, + [SMALL_STATE(8805)] = 294710, + [SMALL_STATE(8806)] = 294717, + [SMALL_STATE(8807)] = 294724, + [SMALL_STATE(8808)] = 294731, + [SMALL_STATE(8809)] = 294738, + [SMALL_STATE(8810)] = 294745, + [SMALL_STATE(8811)] = 294752, + [SMALL_STATE(8812)] = 294759, + [SMALL_STATE(8813)] = 294766, + [SMALL_STATE(8814)] = 294773, + [SMALL_STATE(8815)] = 294780, + [SMALL_STATE(8816)] = 294787, + [SMALL_STATE(8817)] = 294794, + [SMALL_STATE(8818)] = 294801, + [SMALL_STATE(8819)] = 294808, + [SMALL_STATE(8820)] = 294815, + [SMALL_STATE(8821)] = 294822, + [SMALL_STATE(8822)] = 294829, + [SMALL_STATE(8823)] = 294836, + [SMALL_STATE(8824)] = 294843, + [SMALL_STATE(8825)] = 294850, + [SMALL_STATE(8826)] = 294857, + [SMALL_STATE(8827)] = 294864, + [SMALL_STATE(8828)] = 294871, + [SMALL_STATE(8829)] = 294878, + [SMALL_STATE(8830)] = 294885, + [SMALL_STATE(8831)] = 294892, + [SMALL_STATE(8832)] = 294899, + [SMALL_STATE(8833)] = 294906, + [SMALL_STATE(8834)] = 294913, + [SMALL_STATE(8835)] = 294920, + [SMALL_STATE(8836)] = 294927, + [SMALL_STATE(8837)] = 294934, + [SMALL_STATE(8838)] = 294941, + [SMALL_STATE(8839)] = 294948, + [SMALL_STATE(8840)] = 294955, + [SMALL_STATE(8841)] = 294962, + [SMALL_STATE(8842)] = 294969, + [SMALL_STATE(8843)] = 294976, + [SMALL_STATE(8844)] = 294983, + [SMALL_STATE(8845)] = 294990, + [SMALL_STATE(8846)] = 294997, + [SMALL_STATE(8847)] = 295004, + [SMALL_STATE(8848)] = 295011, + [SMALL_STATE(8849)] = 295018, + [SMALL_STATE(8850)] = 295025, + [SMALL_STATE(8851)] = 295032, + [SMALL_STATE(8852)] = 295039, + [SMALL_STATE(8853)] = 295046, + [SMALL_STATE(8854)] = 295053, + [SMALL_STATE(8855)] = 295060, + [SMALL_STATE(8856)] = 295067, + [SMALL_STATE(8857)] = 295074, + [SMALL_STATE(8858)] = 295081, + [SMALL_STATE(8859)] = 295088, + [SMALL_STATE(8860)] = 295095, + [SMALL_STATE(8861)] = 295102, + [SMALL_STATE(8862)] = 295109, + [SMALL_STATE(8863)] = 295116, + [SMALL_STATE(8864)] = 295123, + [SMALL_STATE(8865)] = 295130, + [SMALL_STATE(8866)] = 295137, + [SMALL_STATE(8867)] = 295144, + [SMALL_STATE(8868)] = 295151, + [SMALL_STATE(8869)] = 295158, + [SMALL_STATE(8870)] = 295165, + [SMALL_STATE(8871)] = 295172, + [SMALL_STATE(8872)] = 295179, + [SMALL_STATE(8873)] = 295186, + [SMALL_STATE(8874)] = 295193, + [SMALL_STATE(8875)] = 295200, + [SMALL_STATE(8876)] = 295207, + [SMALL_STATE(8877)] = 295214, + [SMALL_STATE(8878)] = 295221, + [SMALL_STATE(8879)] = 295228, + [SMALL_STATE(8880)] = 295235, + [SMALL_STATE(8881)] = 295242, + [SMALL_STATE(8882)] = 295249, + [SMALL_STATE(8883)] = 295256, + [SMALL_STATE(8884)] = 295263, + [SMALL_STATE(8885)] = 295270, + [SMALL_STATE(8886)] = 295277, + [SMALL_STATE(8887)] = 295284, + [SMALL_STATE(8888)] = 295291, + [SMALL_STATE(8889)] = 295298, + [SMALL_STATE(8890)] = 295305, + [SMALL_STATE(8891)] = 295312, + [SMALL_STATE(8892)] = 295319, + [SMALL_STATE(8893)] = 295326, + [SMALL_STATE(8894)] = 295333, + [SMALL_STATE(8895)] = 295340, + [SMALL_STATE(8896)] = 295347, + [SMALL_STATE(8897)] = 295354, + [SMALL_STATE(8898)] = 295361, + [SMALL_STATE(8899)] = 295368, + [SMALL_STATE(8900)] = 295375, + [SMALL_STATE(8901)] = 295382, + [SMALL_STATE(8902)] = 295389, + [SMALL_STATE(8903)] = 295396, + [SMALL_STATE(8904)] = 295403, + [SMALL_STATE(8905)] = 295410, + [SMALL_STATE(8906)] = 295417, + [SMALL_STATE(8907)] = 295424, + [SMALL_STATE(8908)] = 295431, + [SMALL_STATE(8909)] = 295438, + [SMALL_STATE(8910)] = 295445, + [SMALL_STATE(8911)] = 295452, + [SMALL_STATE(8912)] = 295459, + [SMALL_STATE(8913)] = 295466, + [SMALL_STATE(8914)] = 295473, + [SMALL_STATE(8915)] = 295480, + [SMALL_STATE(8916)] = 295487, + [SMALL_STATE(8917)] = 295494, + [SMALL_STATE(8918)] = 295501, + [SMALL_STATE(8919)] = 295508, + [SMALL_STATE(8920)] = 295515, + [SMALL_STATE(8921)] = 295522, + [SMALL_STATE(8922)] = 295529, + [SMALL_STATE(8923)] = 295536, + [SMALL_STATE(8924)] = 295543, + [SMALL_STATE(8925)] = 295550, + [SMALL_STATE(8926)] = 295557, + [SMALL_STATE(8927)] = 295564, + [SMALL_STATE(8928)] = 295571, + [SMALL_STATE(8929)] = 295578, + [SMALL_STATE(8930)] = 295585, + [SMALL_STATE(8931)] = 295592, + [SMALL_STATE(8932)] = 295599, + [SMALL_STATE(8933)] = 295606, + [SMALL_STATE(8934)] = 295613, + [SMALL_STATE(8935)] = 295620, + [SMALL_STATE(8936)] = 295627, + [SMALL_STATE(8937)] = 295634, + [SMALL_STATE(8938)] = 295641, + [SMALL_STATE(8939)] = 295648, + [SMALL_STATE(8940)] = 295655, + [SMALL_STATE(8941)] = 295662, + [SMALL_STATE(8942)] = 295669, + [SMALL_STATE(8943)] = 295676, + [SMALL_STATE(8944)] = 295683, + [SMALL_STATE(8945)] = 295690, + [SMALL_STATE(8946)] = 295697, + [SMALL_STATE(8947)] = 295704, + [SMALL_STATE(8948)] = 295711, + [SMALL_STATE(8949)] = 295718, + [SMALL_STATE(8950)] = 295725, + [SMALL_STATE(8951)] = 295732, + [SMALL_STATE(8952)] = 295739, + [SMALL_STATE(8953)] = 295746, + [SMALL_STATE(8954)] = 295753, + [SMALL_STATE(8955)] = 295760, + [SMALL_STATE(8956)] = 295767, + [SMALL_STATE(8957)] = 295774, + [SMALL_STATE(8958)] = 295781, + [SMALL_STATE(8959)] = 295788, + [SMALL_STATE(8960)] = 295795, + [SMALL_STATE(8961)] = 295802, + [SMALL_STATE(8962)] = 295809, + [SMALL_STATE(8963)] = 295816, + [SMALL_STATE(8964)] = 295823, + [SMALL_STATE(8965)] = 295830, + [SMALL_STATE(8966)] = 295837, + [SMALL_STATE(8967)] = 295844, + [SMALL_STATE(8968)] = 295851, + [SMALL_STATE(8969)] = 295858, + [SMALL_STATE(8970)] = 295865, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -533979,6940 +542261,6989 @@ static const TSParseActionEntry ts_parse_actions[] = { [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 0, 0, 0), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6588), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8693), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5712), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8404), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7666), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5242), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3705), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3120), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2660), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8417), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6456), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6553), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7457), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8279), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7644), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3743), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5751), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3132), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3009), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7977), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2537), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6245), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5130), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5095), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5101), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7473), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7834), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8385), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7818), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8427), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8436), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8107), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8020), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7972), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8148), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8679), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6726), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4787), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7371), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7117), - [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4850), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3870), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2501), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8343), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4204), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5233), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6977), - [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6453), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), - [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7767), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6631), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8829), - [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8746), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), - [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7724), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5008), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5353), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6635), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8289), - [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8105), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5758), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8303), - [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7793), - [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3740), - [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2690), - [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6513), - [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), - [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3081), - [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7476), - [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7806), - [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6709), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8553), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5837), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8476), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7708), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5327), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3833), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3211), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2727), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8820), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6534), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6650), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7315), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8738), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7825), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3831), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2385), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5805), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3168), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3051), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8709), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2594), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6378), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5148), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5149), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5162), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7652), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8015), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8153), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7835), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8578), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8922), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8217), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8413), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8282), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8703), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8721), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6824), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4847), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7338), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7101), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4930), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3918), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2453), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8102), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4243), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5285), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7108), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6621), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7697), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6707), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8789), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8790), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), + [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7875), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5112), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5427), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6733), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8409), + [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8593), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5825), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8054), + [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7966), + [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), + [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3802), + [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2730), + [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6629), + [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), + [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3101), + [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7396), + [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7935), + [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8337), - [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7802), - [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), - [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8310), - [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), - [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8342), - [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8348), - [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8371), - [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7871), - [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8626), - [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8165), - [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4250), - [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3889), - [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), - [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7817), - [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), - [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6610), - [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8654), - [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8655), - [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), - [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), - [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), - [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), - [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), - [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6603), - [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8499), - [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5777), - [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), - [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8500), + [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7782), + [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), + [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8443), + [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), + [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8706), + [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8728), + [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8479), + [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7852), + [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8196), + [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8620), + [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4294), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3898), + [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), + [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7940), + [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), + [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6692), + [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8787), + [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8788), + [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), + [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), + [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), + [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6736), + [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8565), + [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5847), + [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), + [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8574), [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), - [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5755), - [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8274), - [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7685), - [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), - [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3711), - [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2695), - [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6515), + [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5812), + [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8486), + [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7924), + [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), + [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3814), + [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2731), + [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6631), [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3089), - [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7253), - [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7653), - [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), - [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8255), - [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7808), - [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), - [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8653), - [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), - [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8056), - [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8058), - [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8565), - [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7660), - [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8426), - [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), - [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7656), - [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), - [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6586), - [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8738), - [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8739), - [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), - [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), - [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), - [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), - [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), - [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), - [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), - [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), - [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), - [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), - [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), - [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), - [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), - [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), - [369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 2, 0, 10), - [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), - [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), - [375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 3, 0, 10), - [377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 3, 0, 81), - [379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 4, 0, 81), - [381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(875), - [384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6603), - [387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8499), - [390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(5777), + [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3116), + [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7494), + [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7788), + [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), + [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8525), + [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7936), + [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), + [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8786), + [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), + [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8273), + [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8343), + [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8610), + [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7800), + [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8271), + [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), + [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7791), + [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), + [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6710), + [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8871), + [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8872), + [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), + [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), + [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), + [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), + [347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 2, 0, 10), + [349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 4, 0, 81), + [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), + [353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 3, 0, 81), + [355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 3, 0, 10), + [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), + [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), + [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), + [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), + [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), + [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), + [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), + [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), + [381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(892), + [384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6736), + [387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8565), + [390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(5847), [393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), - [395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8500), - [398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7685), - [401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(126), - [404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1215), - [407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1321), - [410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1215), - [413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(441), - [416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(5242), - [419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(901), - [422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(274), - [425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(234), - [428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3711), - [431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3120), - [434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2695), - [437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8417), - [440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6515), - [443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6553), - [446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7457), - [449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8279), - [452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7644), - [455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3743), + [395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8574), + [398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7924), + [401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(123), + [404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1265), + [407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1413), + [410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1265), + [413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(455), + [416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(5327), + [419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(927), + [422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(272), + [425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(233), + [428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3814), + [431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3211), + [434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2731), + [437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8820), + [440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6631), + [443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6650), + [446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7315), + [449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8738), + [452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7825), + [455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3831), [458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(50), - [461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2359), - [464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(5751), - [467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3132), - [470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3089), - [473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1658), - [476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7977), - [479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2537), - [482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6245), - [485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(5130), - [488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(5095), - [491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(5101), - [494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7253), - [497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7653), - [500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1459), - [503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8255), - [506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7808), - [509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(221), - [512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8653), - [515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1022), - [518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8056), - [521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8058), - [524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8565), - [527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7660), - [530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8426), - [533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1277), - [536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1138), - [539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7972), - [542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8148), - [545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8679), - [548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6726), - [551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(4250), - [554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7371), - [557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7117), - [560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3889), - [563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3870), - [566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2501), - [569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8343), - [572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(4204), - [575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(5233), - [578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1559), - [581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(826), - [584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7656), - [587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1280), - [590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1183), - [593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6586), - [596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8738), - [599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8739), - [602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1187), - [605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1452), - [608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7724), - [611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1327), - [614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(5008), - [617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(5353), + [461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2385), + [464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(5805), + [467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3168), + [470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3116), + [473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1680), + [476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8709), + [479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2594), + [482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6378), + [485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(5148), + [488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(5149), + [491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(5162), + [494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7494), + [497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7788), + [500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1484), + [503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8525), + [506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7936), + [509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(220), + [512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8786), + [515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1029), + [518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8273), + [521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8343), + [524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8610), + [527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7800), + [530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8271), + [533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1428), + [536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1133), + [539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8282), + [542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8703), + [545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8721), + [548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6824), + [551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(4294), + [554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7338), + [557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7101), + [560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3898), + [563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3918), + [566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2453), + [569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8102), + [572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(4243), + [575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(5285), + [578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1583), + [581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(842), + [584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7791), + [587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1267), + [590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1198), + [593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6710), + [596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8871), + [599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8872), + [602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1201), + [605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1477), + [608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7875), + [611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1284), + [614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(5112), + [617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(5427), [620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 1, 0, 0), [622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), - [624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(879), - [627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6588), - [630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8693), - [633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(5712), - [636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8404), - [639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7666), - [642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(126), - [645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1215), - [648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1321), - [651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1215), - [654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(441), - [657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(5242), - [660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(901), - [663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(483), - [666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(232), - [669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3705), - [672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3120), - [675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2660), - [678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8417), - [681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6456), - [684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6553), - [687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7457), - [690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8279), - [693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7644), - [696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3743), - [699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(84), - [702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2359), - [705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(5751), - [708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3132), - [711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3009), - [714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1658), - [717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7977), - [720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2537), - [723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6245), - [726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(5130), - [729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(5095), - [732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(5101), - [735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7473), - [738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7834), - [741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1318), - [744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8385), - [747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7818), - [750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(175), - [753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8427), - [756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1007), - [759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8436), - [762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8107), - [765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8020), - [768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1277), - [771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1138), - [774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7972), - [777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8148), - [780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8679), - [783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6726), - [786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4787), - [789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7371), - [792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7117), - [795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4850), - [798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3870), - [801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2501), - [804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8343), - [807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4204), - [810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(5233), - [813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(63), - [816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6977), - [819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6453), - [822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1552), - [825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(826), - [828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7767), - [831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1280), - [834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1168), - [837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6631), - [840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8829), - [843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8746), - [846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1123), - [849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1325), - [852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7724), - [855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1327), - [858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(5008), - [861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(5353), - [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), + [624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(903), + [627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6709), + [630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8553), + [633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(5837), + [636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8476), + [639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7708), + [642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(123), + [645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1265), + [648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1413), + [651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1265), + [654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(455), + [657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(5327), + [660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(927), + [663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(651), + [666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(235), + [669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3833), + [672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3211), + [675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2727), + [678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8820), + [681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6534), + [684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6650), + [687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7315), + [690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8738), + [693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7825), + [696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3831), + [699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(80), + [702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2385), + [705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(5805), + [708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3168), + [711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3051), + [714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1680), + [717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8709), + [720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2594), + [723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6378), + [726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(5148), + [729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(5149), + [732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(5162), + [735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7652), + [738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8015), + [741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1297), + [744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8153), + [747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7835), + [750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(203), + [753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8578), + [756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1046), + [759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8922), + [762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8217), + [765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8413), + [768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1428), + [771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1133), + [774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8282), + [777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8703), + [780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8721), + [783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6824), + [786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4847), + [789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7338), + [792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7101), + [795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4930), + [798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3918), + [801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2453), + [804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8102), + [807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4243), + [810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(5285), + [813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(72), + [816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7108), + [819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6621), + [822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1582), + [825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(842), + [828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7697), + [831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1267), + [834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1138), + [837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6707), + [840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8789), + [843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8790), + [846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1203), + [849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1272), + [852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7875), + [855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1284), + [858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(5112), + [861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(5427), + [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), - [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6577), - [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8095), - [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5779), + [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), + [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6711), + [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8210), + [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5850), [878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 1, 0, 0), - [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8005), - [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7830), - [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), - [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3728), - [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2697), - [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6406), - [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3093), - [898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7357), - [900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7701), - [902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), - [904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8464), - [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7654), + [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8119), + [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7754), + [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), + [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3822), + [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2735), + [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6563), + [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3123), + [898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7394), + [900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7836), + [902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), + [904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8281), + [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7790), [908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), - [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8737), - [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), - [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8270), - [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8273), - [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8015), - [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7706), - [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8468), - [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), - [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7703), - [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), - [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6598), - [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8760), - [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8752), - [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), - [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), - [940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(876), - [943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6577), - [946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8095), - [949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(5779), - [952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8005), - [955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7830), - [958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(541), - [961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(235), - [964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3728), - [967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2697), - [970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6406), - [973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(61), - [976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3093), - [979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7357), - [982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7701), - [985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1466), - [988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8464), - [991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7654), + [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8870), + [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), + [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8586), + [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8599), + [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8129), + [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7844), + [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8325), + [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), + [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7839), + [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), + [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6744), + [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8893), + [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8885), + [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), + [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), + [940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(893), + [943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6711), + [946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8210), + [949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(5850), + [952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8119), + [955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7754), + [958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(640), + [961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(228), + [964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3822), + [967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2735), + [970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6563), + [973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(59), + [976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3123), + [979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7394), + [982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7836), + [985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1491), + [988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8281), + [991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7790), [994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(222), - [997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8737), - [1000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1006), - [1003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8270), - [1006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8273), - [1009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8015), - [1012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7706), - [1015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8468), - [1018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1563), - [1021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7703), - [1024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1171), - [1027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6598), - [1030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8760), - [1033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8752), - [1036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1178), - [1039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1460), - [1042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [1044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [1046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [1048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(873), - [1051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6635), - [1054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8289), - [1057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(5758), - [1060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8303), - [1063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7793), - [1066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(488), - [1069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(229), - [1072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3740), - [1075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2690), - [1078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6513), - [1081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(39), - [1084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), - [1086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3081), - [1089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7476), - [1092] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7806), - [1095] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1428), - [1098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8337), - [1101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7802), - [1104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(217), - [1107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8310), - [1110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1024), - [1113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8342), - [1116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8348), - [1119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8371), - [1122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7871), - [1125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8626), - [1128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1558), - [1131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7817), - [1134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1145), - [1137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6610), - [1140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8654), - [1143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8655), - [1146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1174), - [1149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1429), - [1152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [1154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), - [1156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), - [1158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [1160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [1162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [1164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [1166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [1168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 2, 0, 0), - [1170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [1172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [1174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [1176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [1178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), - [1180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), - [1182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [1184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), - [1186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), - [1188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [1190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [1192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), - [1194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [1196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [1198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7848), - [1200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8447), - [1202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7683), - [1204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6473), - [1206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [1208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [1210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [1212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [1214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [1216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4236), - [1218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4232), - [1220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), - [1222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), - [1224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), - [1226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), - [1228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [1230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [1232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5594), - [1234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5595), - [1236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [1238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [1240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5896), - [1242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5901), - [1244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), - [1246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [1248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(933), - [1251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), - [1253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(160), - [1256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1215), - [1259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1215), - [1262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1330), - [1265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), - [1267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1330), - [1270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(274), - [1273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(435), - [1276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3711), - [1279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2136), - [1282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3132), - [1285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8417), - [1288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6553), - [1291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7355), - [1294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8279), - [1297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(50), - [1300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2359), - [1303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5667), - [1306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1658), - [1309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7977), - [1312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2537), - [1315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6245), - [1318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5130), - [1321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5095), - [1324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5101), - [1327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7253), - [1330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7653), - [1333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7808), - [1336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(221), - [1339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8653), - [1342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1022), - [1345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8056), - [1348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8058), - [1351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8565), - [1354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7660), - [1357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8426), - [1360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1277), - [1363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1138), - [1366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7972), - [1369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8148), - [1372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8679), - [1375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6726), - [1378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4250), - [1381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7371), - [1384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7117), - [1387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3889), - [1390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3870), - [1393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2501), - [1396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8343), - [1399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5233), - [1402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7789), - [1405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7656), - [1408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1280), - [1411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1183), - [1414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1187), - [1417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1452), - [1420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7724), - [1423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1327), - [1426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5008), - [1429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5353), - [1432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), - [1434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 2, 0, 0), - [1436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [1440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 2, 0, 0), - [1442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), - [1444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), - [1446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), - [1448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7355), - [1450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5667), - [1452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7789), - [1454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, 0, 14), - [1456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, 0, 14), + [997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8870), + [1000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1037), + [1003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8586), + [1006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8599), + [1009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8129), + [1012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7844), + [1015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8325), + [1018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1584), + [1021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7839), + [1024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1161), + [1027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6744), + [1030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8893), + [1033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8885), + [1036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1164), + [1039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1485), + [1042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [1044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [1046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [1048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 2, 0, 0), + [1050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [1052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [1054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), + [1056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3279), + [1058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [1060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [1062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [1064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [1066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [1068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [1070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(891), + [1073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6733), + [1076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8409), + [1079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(5825), + [1082] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8054), + [1085] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7966), + [1088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(612), + [1091] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(234), + [1094] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3802), + [1097] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2730), + [1100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6629), + [1103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(39), + [1106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), + [1108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3101), + [1111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7396), + [1114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7935), + [1117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1454), + [1120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8337), + [1123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7782), + [1126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(215), + [1129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8443), + [1132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1047), + [1135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8706), + [1138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8728), + [1141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8479), + [1144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7852), + [1147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8196), + [1150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1581), + [1153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7940), + [1156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1219), + [1159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6692), + [1162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8787), + [1165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8788), + [1168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1131), + [1171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1455), + [1174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [1176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), + [1178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), + [1180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), + [1182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), + [1184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [1186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [1188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [1190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [1192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [1194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [1196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [1198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [1200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4311), + [1202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4312), + [1204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [1206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3971), + [1208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), + [1210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), + [1212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [1214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [1216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7963), + [1218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8604), + [1220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7698), + [1222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6625), + [1224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), + [1226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), + [1228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [1230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [1232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5715), + [1234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5718), + [1236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [1238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [1240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6045), + [1242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5979), + [1244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [1246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [1248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), + [1250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, 0, 14), + [1252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [1256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, 0, 14), + [1258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), + [1260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), + [1262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), + [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7392), + [1266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5723), + [1268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7893), + [1270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(890), + [1273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), + [1275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(164), + [1278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1265), + [1281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1265), + [1284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1259), + [1287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), + [1289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1259), + [1292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(272), + [1295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(457), + [1298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3814), + [1301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2095), + [1304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3168), + [1307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8820), + [1310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6650), + [1313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7392), + [1316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8738), + [1319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(50), + [1322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2385), + [1325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5723), + [1328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1680), + [1331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8709), + [1334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2594), + [1337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6378), + [1340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5148), + [1343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5149), + [1346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5162), + [1349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7494), + [1352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7788), + [1355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7936), + [1358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(220), + [1361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8786), + [1364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1029), + [1367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8273), + [1370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8343), + [1373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8610), + [1376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7800), + [1379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8271), + [1382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1428), + [1385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1133), + [1388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8282), + [1391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8703), + [1394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8721), + [1397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6824), + [1400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4294), + [1403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7338), + [1406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7101), + [1409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3898), + [1412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3918), + [1415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2453), + [1418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8102), + [1421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5285), + [1424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7893), + [1427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7791), + [1430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1267), + [1433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1198), + [1436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1201), + [1439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1477), + [1442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7875), + [1445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1284), + [1448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5112), + [1451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5427), + [1454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 2, 0, 0), + [1456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 2, 0, 0), [1458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, 0, 0), [1460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, 0, 0), - [1462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, 0, 14), - [1464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, 0, 14), - [1466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), - [1468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), - [1470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(977), - [1473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(400), - [1476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(446), - [1479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3705), - [1482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(84), - [1485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7473), - [1488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7834), - [1491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7818), - [1494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(175), - [1497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8427), - [1500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1007), - [1503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8436), - [1506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8107), - [1509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8020), - [1512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7848), - [1515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8447), - [1518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7767), - [1521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1168), - [1524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1123), - [1527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1325), - [1530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), - [1532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), - [1534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(975), - [1537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(541), - [1540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(436), - [1543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3728), - [1546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(61), - [1549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7357), - [1552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7701), - [1555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7654), - [1558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(222), - [1561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8737), - [1564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1006), - [1567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8270), - [1570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8273), - [1573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8015), - [1576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7706), - [1579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8468), - [1582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7703), - [1585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1171), - [1588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1178), - [1591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1460), - [1594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), - [1596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), - [1598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(927), - [1601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(488), - [1604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(449), - [1607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3740), - [1610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(39), - [1613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7476), - [1616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7806), - [1619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7802), - [1622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(217), - [1625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8310), - [1628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1024), - [1631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8342), - [1634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8348), - [1637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8371), - [1640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7871), - [1643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8626), - [1646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7817), - [1649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1145), - [1652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1174), - [1655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1429), - [1658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), - [1660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), - [1662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [1462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, 0, 14), + [1464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, 0, 14), + [1466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(899), + [1469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(408), + [1472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(452), + [1475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3833), + [1478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(80), + [1481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7652), + [1484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8015), + [1487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7835), + [1490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(203), + [1493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8578), + [1496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1046), + [1499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8922), + [1502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8217), + [1505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8413), + [1508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7963), + [1511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8604), + [1514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7697), + [1517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1138), + [1520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1203), + [1523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1272), + [1526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), + [1528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), + [1530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(889), + [1533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(612), + [1536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(456), + [1539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3802), + [1542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(39), + [1545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7396), + [1548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7935), + [1551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7782), + [1554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(215), + [1557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8443), + [1560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1047), + [1563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8706), + [1566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8728), + [1569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8479), + [1572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7852), + [1575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8196), + [1578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7940), + [1581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1219), + [1584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1131), + [1587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1455), + [1590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), + [1592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), + [1594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), + [1596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), + [1598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(897), + [1601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(640), + [1604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(447), + [1607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3822), + [1610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(59), + [1613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7394), + [1616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7836), + [1619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7790), + [1622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(222), + [1625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8870), + [1628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1037), + [1631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8586), + [1634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8599), + [1637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8129), + [1640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7844), + [1643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8325), + [1646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7839), + [1649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1161), + [1652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1164), + [1655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1485), + [1658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), + [1660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), + [1662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), [1664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), - [1666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3720), - [1668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [1670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7402), - [1672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7726), - [1674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7702), - [1676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), - [1678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8750), + [1666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3818), + [1668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [1670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7452), + [1672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7861), + [1674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7837), + [1676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [1678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8883), [1680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), - [1682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8479), - [1684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8482), - [1686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8101), - [1688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7733), - [1690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8110), - [1692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7747), - [1694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), - [1696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), - [1698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), - [1700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(957), - [1703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(910), - [1706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(444), - [1709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3720), - [1712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(66), - [1715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7402), - [1718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7726), - [1721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7702), - [1724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(185), - [1727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8750), - [1730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1025), - [1733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8479), - [1736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8482), - [1739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8101), - [1742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7733), - [1745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8110), - [1748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7747), - [1751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1153), - [1754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1156), - [1757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1467), - [1760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), - [1762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8036), - [1764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), - [1766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7406), - [1768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7708), - [1770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8510), - [1772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7798), - [1774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), - [1776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [1778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), - [1780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3724), - [1782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8671), - [1784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7401), - [1786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8379), - [1788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), - [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4342), - [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [1798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), - [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [1802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), - [1804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), - [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6566), - [1808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6356), - [1810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4209), - [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5751), - [1814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5067), - [1816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6226), - [1818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5085), - [1820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5087), - [1822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5089), - [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [1826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), - [1828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8313), - [1830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8801), - [1832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8832), - [1834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6770), - [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), - [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7358), - [1840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7073), - [1842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3373), - [1844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3356), - [1846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), - [1848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8315), - [1850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5178), - [1852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3069), - [1854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), - [1856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7875), - [1858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), - [1860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5006), - [1862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5371), - [1864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), - [1866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8502), - [1868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [1870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [1872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), - [1874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [1876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), - [1878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), - [1880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6556), - [1882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3010), - [1884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6221), - [1886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5093), - [1888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5060), - [1890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5063), - [1892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [1894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), - [1896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8562), - [1898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8810), - [1900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8835), - [1902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6747), - [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), - [1906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7453), - [1908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7002), - [1910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3908), - [1912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3906), - [1914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5195), - [1916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), - [1918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7911), - [1920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), - [1922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5022), - [1924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5367), - [1926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), - [1928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7399), - [1930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4623), - [1932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [1682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8290), + [1684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8310), + [1686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8216), + [1688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7866), + [1690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8412), + [1692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7887), + [1694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), + [1696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), + [1698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), + [1700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), + [1702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7311), + [1704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), + [1706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8252), + [1708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7705), + [1710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8643), + [1712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7933), + [1714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(896), + [1717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(937), + [1720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(444), + [1723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3818), + [1726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(65), + [1729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7452), + [1732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7861), + [1735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7837), + [1738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(201), + [1741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8883), + [1744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1025), + [1747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8290), + [1750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8310), + [1753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8216), + [1756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7866), + [1759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8412), + [1762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7887), + [1765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1214), + [1768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1154), + [1771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1492), + [1774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), + [1776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [1778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), + [1780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3820), + [1782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8804), + [1784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7450), + [1786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), + [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4420), + [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [1796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), + [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [1800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), + [1802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), + [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6665), + [1806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6485), + [1808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4234), + [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5805), + [1812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5187), + [1814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6383), + [1816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5117), + [1818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5133), + [1820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5137), + [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [1824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), + [1826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8446), + [1828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8934), + [1830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8965), + [1832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6843), + [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), + [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7395), + [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7125), + [1840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3401), + [1842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3399), + [1844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1888), + [1846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8448), + [1848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5248), + [1850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3089), + [1852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), + [1854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8005), + [1856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), + [1858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5088), + [1860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5423), + [1862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8202), + [1864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), + [1866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7297), + [1868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4727), + [1870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), + [1872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [1874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6388), + [1876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5226), + [1878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5115), + [1880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5170), + [1882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5263), + [1884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), + [1886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8926), + [1888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [1890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [1892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), + [1894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [1896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), + [1898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6666), + [1900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3117), + [1902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [1904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), + [1906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8695), + [1908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8943), + [1910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8968), + [1912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6860), + [1914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), + [1916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7516), + [1918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7059), + [1920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3886), + [1922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3865), + [1924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), + [1926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8042), + [1928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), + [1930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5053), + [1932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5431), [1934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3, 0, 0), [1936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3, 0, 0), [1938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2, 0, 0), [1940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2, 0, 0), [1942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 4, 0, 45), [1944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 4, 0, 45), - [1946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), - [1948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [1950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), - [1952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6544), - [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [1956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6974), - [1958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), - [1960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8511), - [1962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8804), - [1964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8833), - [1966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6739), - [1968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), - [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7467), - [1972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6989), - [1974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2461), - [1976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2451), - [1978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8363), - [1980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), - [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7907), - [1984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), - [1986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4999), - [1988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5351), - [1990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), - [1992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), - [1994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [1996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), - [1998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6559), - [2000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), - [2002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), - [2004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7403), - [2006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6981), - [2008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), - [2010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7900), - [2012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), - [2014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4994), - [2016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), - [2018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [2020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5667), - [2022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), - [2024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), - [2026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6440), - [2028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7021), - [2030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2184), - [2033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(160), - [2036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1215), - [2039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1215), - [2042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1330), - [2045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(488), - [2048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1343), - [2051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), - [2053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(6553), - [2056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7355), - [2059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(39), - [2062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(5667), - [2065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7021), - [2068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7476), - [2071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7806), - [2074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1428), - [2077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8337), - [2080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7802), - [2083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(217), - [2086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8310), - [2089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1024), - [2092] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8342), - [2095] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8348), - [2098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8371), - [2101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7871), - [2104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8626), - [2107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1277), - [2110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1138), - [2113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7972), - [2116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8148), - [2119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8679), - [2122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(6726), - [2125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(4250), - [2128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7371), - [2131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7117), - [2134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3889), - [2137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3870), - [2140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8363), - [2143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7789), - [2146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7817), - [2149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1280), - [2152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1145), - [2155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1174), - [2158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1429), - [2161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7724), - [2164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1327), - [2167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(5008), - [2170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(5353), - [2173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), - [2175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6415), - [2177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2179), - [2180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(274), - [2183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(50), - [2186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7253), - [2189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7653), - [2192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1459), - [2195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8255), - [2198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7808), - [2201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(221), - [2204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8653), - [2207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1022), - [2210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8056), - [2213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8058), - [2216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8565), - [2219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7660), - [2222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8426), - [2225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7656), - [2228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1183), - [2231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1187), - [2234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1452), - [2237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), - [2239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6463), - [2241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2188), - [2244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(541), - [2247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(61), - [2250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7357), - [2253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7701), - [2256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1466), - [2259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8464), - [2262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7654), - [2265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(222), - [2268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8737), - [2271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1006), - [2274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8270), - [2277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8273), - [2280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8015), - [2283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7706), - [2286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8468), - [2289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7703), - [2292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1171), - [2295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1178), - [2298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1460), - [2301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2188), - [2303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6410), - [2305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), - [2307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), - [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [2311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), - [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6574), - [2315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), - [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), - [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7466), - [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7108), - [2323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), - [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7918), - [2327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), - [2329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2178), - [2332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(400), - [2335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(84), - [2338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7473), - [2341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7834), - [2344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1318), - [2347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8385), - [2350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7818), - [2353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(175), - [2356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8427), - [2359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1007), - [2362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8436), - [2365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8107), - [2368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8020), - [2371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7848), - [2374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8447), - [2377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7767), - [2380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1168), - [2383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1123), - [2386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1325), - [2389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), - [2391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), - [2393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2199), - [2396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(910), - [2399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(66), - [2402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7402), - [2405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7726), - [2408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1451), - [2411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8036), - [2414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7702), - [2417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(185), - [2420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8750), + [1946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), + [1948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [1950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), + [1952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6645), + [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [1956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7201), + [1958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), + [1960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8644), + [1962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8937), + [1964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8966), + [1966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6855), + [1968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), + [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7548), + [1972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7040), + [1974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2443), + [1976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2564), + [1978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8078), + [1980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), + [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8039), + [1984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), + [1986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5074), + [1988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5445), + [1990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), + [1992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), + [1994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [1996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), + [1998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6656), + [2000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), + [2002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), + [2004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7454), + [2006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7071), + [2008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), + [2010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8032), + [2012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), + [2014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5071), + [2016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), + [2018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [2020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5723), + [2022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2241), + [2025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(164), + [2028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1265), + [2031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1265), + [2034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1259), + [2037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(612), + [2040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1260), + [2043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), + [2045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(6650), + [2048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7392), + [2051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(39), + [2054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(5723), + [2057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7149), + [2060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7396), + [2063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7935), + [2066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1454), + [2069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8337), + [2072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7782), + [2075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(215), + [2078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8443), + [2081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1047), + [2084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8706), + [2087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8728), + [2090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8479), + [2093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7852), + [2096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8196), + [2099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1428), + [2102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1133), + [2105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8282), + [2108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8703), + [2111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8721), + [2114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(6824), + [2117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(4294), + [2120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7338), + [2123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7101), + [2126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3898), + [2129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3918), + [2132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8078), + [2135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7893), + [2138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7940), + [2141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1267), + [2144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1219), + [2147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1131), + [2150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1455), + [2153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7875), + [2156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1284), + [2159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(5112), + [2162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(5427), + [2165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2239), + [2167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), + [2169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6592), + [2171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7149), + [2173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2238), + [2176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(272), + [2179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(50), + [2182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7494), + [2185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7788), + [2188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1484), + [2191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8525), + [2194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7936), + [2197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(220), + [2200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8786), + [2203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1029), + [2206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8273), + [2209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8343), + [2212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8610), + [2215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7800), + [2218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8271), + [2221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7791), + [2224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1198), + [2227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1201), + [2230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1477), + [2233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), + [2235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6532), + [2237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2222), + [2240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(640), + [2243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(59), + [2246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7394), + [2249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7836), + [2252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1491), + [2255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8281), + [2258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7790), + [2261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(222), + [2264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8870), + [2267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1037), + [2270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8586), + [2273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8599), + [2276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8129), + [2279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7844), + [2282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8325), + [2285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7839), + [2288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1161), + [2291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1164), + [2294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1485), + [2297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), + [2299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6564), + [2301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), + [2303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), + [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [2307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), + [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6644), + [2311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), + [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), + [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7547), + [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7093), + [2319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), + [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8049), + [2323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), + [2325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), + [2327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6622), + [2329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2239), + [2332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(408), + [2335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(80), + [2338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7652), + [2341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8015), + [2344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1297), + [2347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8153), + [2350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7835), + [2353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(203), + [2356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8578), + [2359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1046), + [2362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8922), + [2365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8217), + [2368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8413), + [2371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7963), + [2374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8604), + [2377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7697), + [2380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1138), + [2383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1203), + [2386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1272), + [2389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2215), + [2391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), + [2393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2215), + [2396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(937), + [2399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(65), + [2402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7452), + [2405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7861), + [2408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1476), + [2411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8252), + [2414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7837), + [2417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(201), + [2420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8883), [2423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1025), - [2426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8479), - [2429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8482), - [2432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8101), - [2435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7733), - [2438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8110), - [2441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7747), - [2444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1153), - [2447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1156), - [2450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1467), - [2453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), - [2455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), - [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [2459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6982), - [2461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2171), - [2464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7406), - [2467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7708), - [2470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8510), - [2473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7798), + [2426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8290), + [2429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8310), + [2432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8216), + [2435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7866), + [2438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8412), + [2441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7887), + [2444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1214), + [2447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1154), + [2450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1492), + [2453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), + [2455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), + [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [2459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7131), + [2461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2248), + [2464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7311), + [2467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7705), + [2470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8643), + [2473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7933), [2476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), [2478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), - [2480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7670), - [2483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 9), - [2485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 9), - [2487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7670), - [2489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2286), - [2491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), - [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [2495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), - [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6570), - [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [2501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7090), - [2503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), - [2505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8582), - [2507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8813), - [2509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8836), - [2511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6752), - [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), - [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7461), - [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7049), - [2519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3651), - [2521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3650), - [2523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), - [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7913), - [2527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), - [2529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4982), - [2531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5355), - [2533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), - [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [2537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), - [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6571), - [2541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), - [2543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), - [2545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), - [2547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_try_statement, 3, 0, 9), - [2549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_try_statement, 3, 0, 9), - [2551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(2106), - [2554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(160), - [2557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1215), - [2560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1330), - [2563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), - [2565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1330), - [2568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1343), - [2571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3747), - [2573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), - [2575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(6553), - [2578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(5667), - [2581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(7021), - [2584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8363), - [2587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(7789), + [2480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7809), + [2483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2326), + [2485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), + [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [2489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), + [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6648), + [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [2495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7140), + [2497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), + [2499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8715), + [2501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8946), + [2503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8969), + [2505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6866), + [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), + [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7533), + [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7072), + [2513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3636), + [2515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3620), + [2517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), + [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8044), + [2521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), + [2523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5064), + [2525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5426), + [2527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 9), + [2529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 9), + [2531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7809), + [2533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), + [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [2537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), + [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6679), + [2541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), + [2543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), + [2545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), + [2547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(2003), + [2550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(164), + [2553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1265), + [2556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1259), + [2559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), + [2561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1259), + [2564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1260), + [2567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3823), + [2569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), + [2571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(6650), + [2574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(5723), + [2577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(7149), + [2580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8078), + [2583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(7893), + [2586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_try_statement, 3, 0, 9), + [2588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_try_statement, 3, 0, 9), [2590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_try_statement, 4, 0, 46), [2592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_try_statement, 4, 0, 46), - [2594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7582), - [2597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3773), - [2599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7582), - [2601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3713), - [2603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3730), - [2605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2202), - [2607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), - [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [2611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7099), - [2613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 106), - [2615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 106), - [2617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), - [2619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 3, 0, 169), - [2621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 3, 0, 169), - [2623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 51), - [2625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 51), - [2627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3, 0, 0), - [2629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3, 0, 0), - [2631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, 0, 159), - [2633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, 0, 159), - [2635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_range_loop, 5, 0, 160), - [2637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_range_loop, 5, 0, 160), - [2639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, 0, 88), - [2641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, 0, 88), - [2643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 5, 0, 176), - [2645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 5, 0, 176), - [2647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_statement, 2, 0, 0), - [2649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_statement, 2, 0, 0), - [2651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, 0, 137), - [2653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, 0, 137), - [2655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_except_clause, 3, 0, 187), - [2657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_except_clause, 3, 0, 187), - [2659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_finally_clause, 2, 0, 9), - [2661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_finally_clause, 2, 0, 9), - [2663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), - [2665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 154), - [2667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 154), - [2669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), - [2671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), - [2673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_leave_statement, 2, 0, 0), - [2675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_leave_statement, 2, 0, 0), - [2677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 0), - [2679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), - [2681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, 0, 54), - [2683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, 0, 54), - [2685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 2, 0, 0), - [2687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0), - [2689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0), - [2691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_co_return_statement, 3, 0, 0), - [2693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_co_return_statement, 3, 0, 0), - [2695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_co_yield_statement, 3, 0, 0), - [2697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_co_yield_statement, 3, 0, 0), - [2699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, 0, 137), - [2701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, 0, 137), - [2703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 3, 0, 68), - [2705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 3, 0, 68), - [2707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, 0, 52), - [2709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, 0, 52), - [2711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 4, 0, 88), - [2713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 4, 0, 88), - [2715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 2, 0, 0), - [2717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 2, 0, 0), - [2719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_try_statement, 3, 0, 9), - [2721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_try_statement, 3, 0, 9), - [2723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, 0, 155), - [2725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, 0, 155), - [2727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 107), - [2729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 107), - [2731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), - [2733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), - [2735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_co_return_statement, 2, 0, 0), - [2737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_co_return_statement, 2, 0, 0), - [2739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 52), - [2741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 52), - [2743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), - [2745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), - [2747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, 0, 0), - [2749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, 0, 0), - [2751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, 0, 53), - [2753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, 0, 53), - [2755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 0), - [2757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 0), - [2759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, 0, 119), - [2761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, 0, 119), - [2763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), - [2765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), - [2767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, 0, 120), - [2769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, 0, 120), - [2771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_definition, 3, 0, 78), - [2773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_definition, 3, 0, 78), - [2775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 2, 0, 25), - [2777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 2, 0, 25), - [2779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 2, 0, 26), - [2781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 2, 0, 26), - [2783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__empty_declaration, 2, 0, 0), - [2785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__empty_declaration, 2, 0, 0), - [2787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_declaration, 2, 0, 26), - [2789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_declaration, 2, 0, 26), - [2791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_definition, 2, 0, 25), - [2793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_definition, 2, 0, 25), - [2795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_include, 3, 0, 36), - [2797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_include, 3, 0, 36), - [2799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 3, 0, 10), - [2801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 3, 0, 10), - [2803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 3, 0, 10), - [2805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 3, 0, 10), - [2807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 3, 0, 37), - [2809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 3, 0, 37), - [2811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_linkage_specification, 3, 0, 44), - [2813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_linkage_specification, 3, 0, 44), - [2815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_declaration, 3, 0, 0), - [2817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_declaration, 3, 0, 0), - [2819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 3, 0, 46), - [2821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 3, 0, 46), - [2823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_instantiation, 3, 0, 5), - [2825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_instantiation, 3, 0, 5), - [2827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_declaration, 3, 0, 59), - [2829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_declaration, 3, 0, 59), - [2831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2, 0, 0), - [2833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2, 0, 0), - [2835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 3, 0, 62), - [2837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 3, 0, 62), - [2839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 3, 0, 48), - [2841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 3, 0, 48), - [2843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, 0, 69), - [2845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, 0, 69), - [2847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 3, 0, 71), - [2849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 3, 0, 71), - [2851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 3, 0, 78), - [2853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 3, 0, 78), - [2855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 3, 0, 5), - [2857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 3, 0, 5), - [2859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_declaration, 3, 0, 5), - [2861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_declaration, 3, 0, 5), - [2863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 4, 0, 79), - [2865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 4, 0, 79), - [2867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 4, 0, 80), - [2869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 4, 0, 80), - [2871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 4, 0, 81), - [2873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 4, 0, 81), - [2875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, 0, 82), - [2877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, 0, 82), - [2879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, 0, 10), - [2881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, 0, 10), - [2883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_declaration, 4, 0, 0), - [2885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_declaration, 4, 0, 0), - [2887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 4, 0, 95), - [2889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 4, 0, 95), - [2891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 4, 0, 96), - [2893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 4, 0, 96), - [2895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 4, 0, 97), - [2897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 4, 0, 97), - [2899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_instantiation, 4, 0, 60), - [2901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_instantiation, 4, 0, 60), - [2903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_declaration, 4, 0, 59), - [2905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_declaration, 4, 0, 59), - [2907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3, 0, 0), - [2909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3, 0, 0), - [2911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, 0, 117), - [2913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, 0, 117), - [2915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, 0, 122), - [2917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, 0, 122), - [2919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_method_clause, 3, 0, 0), - [2921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_method_clause, 3, 0, 0), - [2923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_method_clause, 3, 0, 0), - [2925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_method_clause, 3, 0, 0), - [2927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pure_virtual_clause, 3, 0, 0), - [2929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pure_virtual_clause, 3, 0, 0), - [2931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_declaration, 4, 0, 127), - [2933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_declaration, 4, 0, 127), - [2935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 4, 0, 130), - [2937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 4, 0, 130), - [2939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 5, 0, 131), - [2941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 5, 0, 131), - [2943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, 0, 132), - [2945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, 0, 132), - [2947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, 0, 81), - [2949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, 0, 81), - [2951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 5, 0, 133), - [2953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 5, 0, 133), - [2955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alias_declaration, 5, 0, 138), - [2957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias_declaration, 5, 0, 138), - [2959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3807), - [2961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8154), - [2963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5762), - [2965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), - [2967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8674), - [2969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), - [2971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5686), - [2973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8220), - [2975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7646), - [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4784), - [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8045), - [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), - [2983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5242), - [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [2987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3105), - [2989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3732), - [2991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6416), - [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5478), - [2995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8373), - [2997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3098), - [2999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2661), - [3001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6241), - [3003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5079), - [3005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5080), - [3007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5081), - [3009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5216), - [3011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8209), - [3013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7070), - [3015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), - [3017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8768), - [3019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 5, 0, 144), - [3021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 5, 0, 144), - [3023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 5, 0, 145), - [3025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 5, 0, 145), - [3027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_alias_definition, 5, 0, 170), - [3029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_alias_definition, 5, 0, 170), - [3031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_alias_definition, 5, 0, 171), - [3033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_alias_definition, 5, 0, 171), - [3035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_assert_declaration, 5, 0, 172), - [3037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_assert_declaration, 5, 0, 172), - [3039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concept_definition, 5, 0, 10), - [3041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concept_definition, 5, 0, 10), - [3043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), SHIFT(2106), - [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [3048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), SHIFT(1343), - [3051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), SHIFT(6553), - [3054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), SHIFT(7021), - [3057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), SHIFT(8363), - [3060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), SHIFT(7789), - [3063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, 0, 178), - [3065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, 0, 178), - [3067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_declaration, 5, 0, 0), - [3069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_declaration, 5, 0, 0), - [3071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_declaration, 5, 0, 182), - [3073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_declaration, 5, 0, 182), - [3075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, 0, 183), - [3077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, 0, 183), - [3079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alias_declaration, 6, 0, 185), - [3081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias_declaration, 6, 0, 185), - [3083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_assert_declaration, 7, 0, 215), - [3085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_assert_declaration, 7, 0, 215), - [3087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7715), - [3089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_friend_declaration, 2, 0, 0), - [3091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_friend_declaration, 2, 0, 0), - [3093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_declaration, 2, 0, 26), - [3095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_declaration, 2, 0, 26), - [3097] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7715), - [3100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 2, 0, 9), - [3102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 2, 0, 9), - [3104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_declaration, 3, 0, 5), - [3106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_declaration, 3, 0, 5), - [3108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_friend_declaration, 4, 0, 0), - [3110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_friend_declaration, 4, 0, 0), - [3112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_friend_declaration, 5, 0, 0), - [3114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_friend_declaration, 5, 0, 0), - [3116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), - [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [3122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), - [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [3126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), - [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6561), - [3130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4239), - [3132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4975), - [3134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6267), - [3136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5109), - [3138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5110), - [3140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5111), - [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [3144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), - [3146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8541), - [3148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8807), - [3150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8834), - [3152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6775), - [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4738), - [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7443), - [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6947), - [3160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4829), - [3162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4820), - [3164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2708), - [3166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8564), - [3168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5177), - [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [3172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), - [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7910), - [3176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), - [3178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5012), - [3180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5365), - [3182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), - [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [3186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), - [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [3190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), - [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [3194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), - [3196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), - [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [3200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), - [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [3206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), - [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [3210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), - [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [3214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), - [3216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), - [3218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), - [3220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 2, 0, 10), - [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [3224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, 0, 81), - [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [3228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 3, 0, 10), - [3230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, 0, 81), - [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), - [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), - [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [3240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7568), - [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), - [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6446), - [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), - [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [3252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(2106), - [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [3257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(1343), - [3260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(6553), - [3263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(7021), - [3266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(8363), - [3269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(7789), - [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), - [3274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_init_statement, 1, 0, 0), SHIFT(2106), - [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [3279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_init_statement, 1, 0, 0), SHIFT(1343), - [3282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_init_statement, 1, 0, 0), - [3284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_init_statement, 1, 0, 0), SHIFT(6553), - [3287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_statement, 1, 0, 0), - [3289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_init_statement, 1, 0, 0), SHIFT(7021), - [3292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_init_statement, 1, 0, 0), SHIFT(8363), - [3295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_init_statement, 1, 0, 0), SHIFT(7789), - [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), - [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), - [3302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7568), - [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4347), - [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), - [3309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 2, 0, 3), - [3311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 2, 0, 3), - [3313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__block_item, 1, 0, 0), REDUCE(sym_statement, 1, 0, 0), - [3316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__block_item, 1, 0, 0), REDUCE(sym_statement, 1, 0, 0), - [3319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_friend_declaration, 3, 0, 0), - [3321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_friend_declaration, 3, 0, 0), - [3323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), - [3325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), - [3327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4043), - [3329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4028), - [3331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4289), - [3333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8309), - [3335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), - [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [3341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), - [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [3345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3722), - [3347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3726), - [3349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(2202), - [3352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1382), - [3355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(6556), - [3358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(7099), - [3361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [3363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), - [3365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), - [3367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), - [3369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5114), - [3371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_expression_statement, 1, 0, 0), - [3373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_expression_statement, 1, 0, 0), - [3375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 4, 0, 57), - [3377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 4, 0, 57), - [3379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 5, 0, 47), - [3381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 5, 0, 47), - [3383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 5, 0, 165), - [3385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 5, 0, 165), - [3387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 5, 0, 110), - [3389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 5, 0, 110), - [3391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 5, 0, 47), - [3393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 5, 0, 47), - [3395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 5, 0, 111), - [3397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 5, 0, 111), - [3399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 5, 0, 112), - [3401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 5, 0, 112), - [3403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_declaration, 4, 0, 0), - [3405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_declaration, 4, 0, 0), - [3407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 4, 0, 47), - [3409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 4, 0, 47), - [3411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 4, 0, 110), - [3413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 4, 0, 110), - [3415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 6, 0, 165), - [3417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 6, 0, 165), - [3419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__top_level_item, 1, 0, 0), REDUCE(sym__top_level_statement, 1, 0, 0), - [3422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__top_level_item, 1, 0, 0), REDUCE(sym__top_level_statement, 1, 0, 0), - [3425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_declaration, 2, 0, 0), - [3427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_declaration, 2, 0, 0), - [3429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_module_fragment_declaration, 2, 0, 0), - [3431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_module_fragment_declaration, 2, 0, 0), - [3433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 4, 0, 47), - [3435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 4, 0, 47), - [3437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 4, 0, 111), - [3439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 4, 0, 111), - [3441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_module_fragment_declaration, 4, 0, 0), - [3443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_module_fragment_declaration, 4, 0, 0), - [3445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 4, 0, 10), - [3447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 4, 0, 10), - [3449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3807), - [3452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8154), - [3455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5762), - [3458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), - [3460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8674), - [3463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7646), - [3466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4784), - [3469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8045), - [3472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2878), - [3475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5242), - [3478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5242), - [3481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(587), - [3484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3105), - [3487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3732), - [3490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3120), - [3493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3132), - [3496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8417), - [3499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6416), - [3502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5478), - [3505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7401), - [3508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8279), - [3511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7644), - [3514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2359), - [3517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8373), - [3520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1658), - [3523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3098), - [3526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7977), - [3529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2661), - [3532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6241), - [3535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5079), - [3538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5080), - [3541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5081), - [3544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2501), - [3547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8343), - [3550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4204), - [3553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5216), - [3556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8209), - [3559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7070), - [3562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(826), - [3565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1636), - [3568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8768), - [3571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 4, 0, 10), - [3573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 4, 0, 10), - [3575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 4, 0, 112), - [3577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 4, 0, 112), - [3579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 4, 0, 56), - [3581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 4, 0, 56), - [3583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_expression_statement, 2, 0, 0), - [3585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_expression_statement, 2, 0, 0), - [3587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_declaration, 3, 0, 0), - [3589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_declaration, 3, 0, 0), - [3591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 3, 0, 10), - [3593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 3, 0, 10), - [3595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 3, 0, 56), - [3597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 3, 0, 56), - [3599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 3, 0, 10), - [3601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 3, 0, 10), - [3603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 3, 0, 57), - [3605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 3, 0, 57), - [3607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), - [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [3611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), - [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6550), - [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [3617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), - [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4199), - [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7464), - [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7061), - [3625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), - [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7905), - [3629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), - [3631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5033), - [3633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5354), - [3635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8004), - [3637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5652), - [3639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8661), - [3641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7770), - [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [3645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3063), - [3647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3716), - [3649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6481), - [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4917), - [3653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3066), - [3655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6980), - [3657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), - [3659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8751), - [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), - [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [3671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8207), - [3673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5778), - [3675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 1, 0, 0), - [3677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8777), - [3679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7754), - [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [3683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2973), - [3685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3734), - [3687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6425), - [3689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3101), - [3691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6999), - [3693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), - [3695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8775), - [3697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 2, 0, 0), - [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), - [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), - [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), - [3711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8004), - [3714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5652), - [3717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8661), - [3720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7770), - [3723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(804), - [3726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3063), - [3729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3716), - [3732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6481), - [3735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), - [3737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3066), - [3740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6980), - [3743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1650), - [3746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8751), - [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), - [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), - [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), - [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), - [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), - [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), - [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), - [3767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8207), - [3770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5778), - [3773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8777), - [3776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7754), - [3779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(812), - [3782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2973), - [3785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3734), - [3788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6425), - [3791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3101), - [3794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6999), - [3797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1646), - [3800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8775), - [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4726), - [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4710), - [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), - [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4930), - [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), - [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), - [3823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), - [3825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), - [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [3829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), - [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6555), - [3833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), - [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4380), - [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7462), - [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7060), - [3841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), - [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7917), - [3845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), - [3847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), - [3849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2300), - [3851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), - [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [3855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), - [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6525), - [3859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), - [3861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), - [3863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), - [3865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4981), - [3867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2239), - [3869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), - [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [3873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), - [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6564), - [3877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), - [3879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), - [3881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), - [3883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), - [3885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), - [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [3889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6956), - [3891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pack_expansion, 2, 0, 28), - [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [3895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pack_expansion, 2, 0, 28), - [3897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [3899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3398), - [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), - [3903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3344), - [3905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), - [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6599), - [3909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2674), - [3911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2982), - [3913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6240), - [3915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5088), - [3917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5043), - [3919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5155), - [3921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5172), - [3923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3205), - [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8501), - [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5903), - [3929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5903), - [3931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5800), - [3933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8241), - [3935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(2208), - [3938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1297), - [3941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(6561), - [3944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(6956), - [3947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 3, 0, 0), - [3949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 3, 0, 0), - [3951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 4, 0, 0), - [3953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 4, 0, 0), - [3955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(2204), - [3958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1234), - [3961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(6566), - [3964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(6982), - [3967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2843), - [3969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8781), - [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5462), - [3973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8776), - [3975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5437), - [3977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8764), - [3979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8761), - [3981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8778), - [3983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8769), - [3985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8755), - [3987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3095), - [3989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7052), - [3991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), - [3993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8772), - [3995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3099), - [3997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6964), - [3999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), - [4001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8744), - [4003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3092), - [4005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7043), - [4007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), - [4009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8356), - [4011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3082), - [4013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7115), - [4015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), - [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [4019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), - [4021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), - [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), - [4025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), - [4027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8561), - [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [4031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), - [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6062), - [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [4037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), - [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), - [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [4043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), - [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6398), - [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [4049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), - [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5812), - [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6017), - [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [4059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), - [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6018), - [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [4065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), - [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), - [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5830), - [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [4075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), - [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6050), - [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5982), - [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [4085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), - [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5832), - [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [4091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), - [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), - [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6401), - [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5995), - [4103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), - [4106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), - [4109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), - [4111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), - [4113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), - [4115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), - [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5827), - [4121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), - [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [4125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), - [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6047), - [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), - [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6076), - [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), - [4141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7756), - [4144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), - [4146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), - [4148] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), - [4152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), - [4154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), - [4156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), - [4159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), - [4162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(385), - [4165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), - [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6647), - [4169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 1), - [4172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_name, 1, 0, 1), - [4174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2641), - [4176] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), - [4180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), - [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [4184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1670), - [4187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(148), - [4190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1315), - [4193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1242), - [4196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(6559), - [4199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(5667), - [4202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(142), - [4205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1247), - [4208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1241), - [4211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1241), - [4214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7756), - [4216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), - [4218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), - [4220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), - [4222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), - [4224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(2300), - [4227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(169), - [4230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1528), - [4233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1528), - [4236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1514), - [4239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(6525), - [4242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1529), - [4245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1190), - [4248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(7972), - [4251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8148), - [4254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8679), - [4257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(6726), - [4260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(4250), - [4263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(7371), - [4266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(7117), - [4269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(3889), - [4272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(3870), - [4275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1530), - [4278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(7724), - [4281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1531), - [4284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(4981), - [4287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(5353), - [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [4292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), - [4294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3189), - [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4171), - [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), - [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4570), - [4304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4570), - [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5781), - [4308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), - [4310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 2, 0, 0), - [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [4314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_capture_specifier, 2, 0, 0), - [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), - [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), - [4324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6551), - [4326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), - [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7952), - [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), - [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [4334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), - [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), - [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8332), - [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4832), - [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3742), - [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4230), - [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8719), - [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), - [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4221), - [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), - [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7947), - [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), - [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), - [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3868), - [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), - [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3852), - [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7974), - [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), - [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), - [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), - [4380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), - [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), - [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5618), - [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5490), - [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3712), - [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5911), - [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5894), - [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [4406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(411), - [4409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), - [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7102), - [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7915), - [4415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), - [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [4419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(2106), - [4422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(160), - [4425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1215), - [4428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1215), - [4431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1330), - [4434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(2759), - [4437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1343), - [4440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(6553), - [4443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1204), - [4446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), - [4448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(5667), - [4451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(7021), - [4454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1277), - [4457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1138), - [4460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(7972), - [4463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(8148), - [4466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(8679), - [4469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(6726), - [4472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(4250), - [4475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(7371), - [4478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(7117), - [4481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(3889), - [4484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(3870), - [4487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(8363), - [4490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(6551), - [4493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(7789), - [4496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1280), - [4499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(7724), - [4502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1327), - [4505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(5008), - [4508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(5353), - [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3434), - [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), - [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3814), - [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), - [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), - [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4783), - [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), - [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), - [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), - [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4805), - [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), - [4533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), - [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8083), - [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6443), - [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7800), - [4545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4813), - [4547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2266), - [4549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), - [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8173), - [4553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_default_capture, 1, 0, 0), - [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [4559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8023), - [4561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), - [4563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8026), - [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4163), - [4571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8399), - [4573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), - [4575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8403), - [4577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8162), - [4579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), - [4581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8184), - [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), - [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), - [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3855), - [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4778), - [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), - [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), - [4601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(7985), - [4604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8050), - [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), - [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), - [4611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8267), - [4614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8594), - [4617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(7940), - [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), - [4622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8747), - [4625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8767), - [4628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8812), - [4631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(7930), - [4634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(7968), - [4637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8030), - [4640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 1, 197), - [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [4644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), - [4646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), - [4648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), - [4650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), - [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [4654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), - [4656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), - [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [4660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 1, 81), - [4662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 1, 158), - [4664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), - [4666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), - [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [4670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 1, 108), - [4672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), - [4674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 2, 1, 0), - [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [4678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 2, 1, 108), - [4680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8658), - [4683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), - [4685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), - [4687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), - [4689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), - [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5550), - [4695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8002), - [4698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8019), - [4701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8507), - [4704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8522), - [4707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8563), - [4710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8585), - [4713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8604), - [4716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8683), - [4719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8690), - [4722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8715), - [4725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8717), - [4728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8724), - [4731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8374), - [4734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8065), - [4737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8084), - [4740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8138), - [4743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8662), - [4746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8254), - [4749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8312), - [4752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8512), - [4755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8520), - [4758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8799), - [4761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(7962), - [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5994), - [4766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8809), - [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6074), - [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), - [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6073), - [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5855), - [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), - [4780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8446), - [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), - [4784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8381), - [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8123), - [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5647), - [4794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8009), - [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), - [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [4800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8018), - [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6380), - [4804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7994), - [4806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8001), - [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6016), - [4811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8382), - [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [4817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8692), - [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5829), - [4823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8355), - [4825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8735), - [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), - [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8587), - [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), - [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6066), - [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8521), - [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5981), - [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8333), - [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8548), - [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6403), - [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5820), - [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5822), - [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5990), - [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), - [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5989), - [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8568), - [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5689), - [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5749), - [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5759), - [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5769), - [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5691), - [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5641), - [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5776), - [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5675), - [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5748), - [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5787), - [4913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), - [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5651), - [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5682), - [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5734), - [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5684), - [4923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), - [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5695), - [4927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), - [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5698), - [4931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3638), - [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5681), - [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5690), - [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5693), - [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5761), - [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5760), - [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5785), - [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5786), - [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5790), - [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5789), - [4951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 4, 1, 0), - [4953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 4, 1, 0), - [4955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 2, 0, 0), - [4957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 2, 0, 0), - [4959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 4, 3, 0), - [4961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 4, 3, 0), - [4963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 0, 34), - [4965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_identifier, 2, 0, 33), - [4967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_qualified_identifier, 2, 0, 33), REDUCE(sym_qualified_type_identifier, 2, 0, 34), - [4970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type_identifier, 2, 0, 34), - [4972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 0, 33), - [4974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 0, 33), REDUCE(sym_qualified_type_identifier, 2, 0, 34), - [4977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 0, 33), SHIFT(399), - [4980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 3, 3, 0), - [4982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 3, 3, 0), - [4984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 3, 1, 0), - [4986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 3, 1, 0), - [4988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 4, 2, 0), - [4990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 4, 2, 0), - [4992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 3, 2, 0), - [4994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 3, 2, 0), - [4996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_type, 2, 0, 16), - [4998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_function, 2, 0, 17), - [5000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_template_type, 2, 0, 16), REDUCE(sym_template_function, 2, 0, 17), - [5003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_type, 2, 0, 16), - [5005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_function, 2, 0, 17), - [5007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_template_type, 2, 0, 16), REDUCE(sym_template_function, 2, 0, 17), - [5010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3031), - [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4150), - [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5971), - [5018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5971), - [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6606), - [5022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), - [5024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3574), - [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5685), - [5030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 0, 33), SHIFT(371), - [5033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(371), - [5036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), - [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), - [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7038), - [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7906), - [5044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(407), - [5047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), - [5049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), - [5051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1590), - [5054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(8615), - [5057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(410), - [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), - [5062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), - [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [5066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7007), - [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7914), - [5070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), - [5072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), - [5074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(1585), - [5077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(386), - [5080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alignas_qualifier, 4, 0, 0), - [5082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alignas_qualifier, 4, 0, 0), - [5084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2354), - [5086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), - [5088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), - [5090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), - [5092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), - [5094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8615), - [5096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), - [5098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2331), - [5100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), - [5102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), - [5104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), - [5106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2317), - [5108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(2256), - [5111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), - [5113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), - [5115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(2277), - [5118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2278), - [5120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), - [5122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2548), - [5124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), - [5126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2552), - [5128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8600), - [5130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2535), - [5132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 4, 0, 128), - [5134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 4, 0, 128), - [5136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fold_expression, 3, 0, 40), - [5138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fold_expression, 3, 0, 40), - [5140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 4, 0, 129), - [5142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 4, 0, 129), - [5144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requires_expression, 2, 0, 21), - [5146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_expression, 2, 0, 21), - [5148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constraint_conjunction, 3, 0, 55), - [5150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint_conjunction, 3, 0, 55), - [5152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requirement_seq, 2, 0, 0), - [5154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requirement_seq, 2, 0, 0), - [5156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), - [5159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), - [5162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requirement_seq, 3, 0, 0), - [5164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requirement_seq, 3, 0, 0), - [5166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requires_expression, 3, 0, 67), - [5168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_expression, 3, 0, 67), - [5170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 3, 0, 74), - [5172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 3, 0, 74), - [5174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2554), - [5176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), - [5178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2573), - [5180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 2, 0, 32), - [5182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 2, 0, 32), - [5184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 5, 0, 181), - [5186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 5, 0, 181), - [5188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 3, 0, 75), - [5190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 3, 0, 75), - [5192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__requirement_clause_constraint, 3, 0, 0), - [5194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__requirement_clause_constraint, 3, 0, 0), - [5196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2607), - [5198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), - [5200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2608), - [5202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8635), - [5204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2606), - [5206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2597), - [5208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), - [5210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2596), - [5212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1651), - [5215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(8600), - [5218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2868), - [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6627), - [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [5224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1660), - [5227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(8635), - [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [5236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2857), - [5238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5096), - [5240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5098), - [5242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5099), - [5244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1658), - [5247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7977), - [5250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(1634), - [5253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2712), - [5255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1688), - [5257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2713), - [5259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8631), - [5261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2711), - [5263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5116), - [5265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5117), - [5267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5118), - [5269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2732), - [5271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), - [5273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2754), - [5275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5134), - [5277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5046), - [5279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5065), - [5281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5120), - [5283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5121), - [5285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5123), - [5287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5049), - [5289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5105), - [5291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5055), - [5293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5069), - [5295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5070), - [5297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5072), - [5299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5061), - [5301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5066), - [5303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5090), - [5305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5074), - [5307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5076), - [5309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5077), - [5311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5143), - [5313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5149), - [5315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5150), - [5317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5042), - [5319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5084), - [5321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5086), - [5323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5112), - [5325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5113), - [5327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5135), - [5329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5073), - [5331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5075), - [5333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5078), - [5335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5092), - [5337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5094), - [5339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5097), - [5341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5119), - [5343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5071), - [5345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5103), - [5347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(1656), - [5350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1688), - [5353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(8631), - [5356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1695), - [5359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(8540), - [5362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4887), - [5364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4942), - [5366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7114), - [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), - [5370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(1669), - [5373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(408), - [5376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(1674), - [5379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7771), - [5381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_condition_clause, 3, 0, 14), - [5383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 3, 0, 14), - [5385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7771), - [5388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), - [5390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2, 0, 0), - [5392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2, 0, 0), - [5394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), - [5396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 3, 0, 0), - [5398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 3, 0, 0), - [5400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1692), - [5403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), - [5405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), - [5407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(6989), - [5410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(7907), - [5413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_condition_clause, 4, 0, 153), - [5415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 4, 0, 153), - [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7267), - [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), - [5421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), - [5423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), - [5425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1868), - [5428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1698), - [5431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(8561), - [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7166), - [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), - [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7498), - [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), - [5442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 2, 0, 0), - [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7766), - [5446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 7, 0, 217), - [5448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 7, 0, 217), - [5450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 0), - [5452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 0), - [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6637), - [5456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_method_definition, 3, 0, 68), - [5458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_method_definition, 3, 0, 68), - [5460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6636), - [5462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2975), - [5464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3282), - [5466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2999), - [5468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8306), - [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5591), - [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7249), - [5474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8308), - [5476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8509), - [5478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 5, 0, 0), - [5480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 5, 0, 0), - [5482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2, 0, 0), - [5484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2, 0, 0), - [5486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 0, 33), SHIFT(407), - [5489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), - [5491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), - [5493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 1, 0, 6), - [5495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 1, 0, 6), - [5497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8580), - [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5924), - [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [5503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5841), - [5505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, 0, 81), - [5507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, 0, 81), - [5509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 82), - [5511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 82), - [5513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 10), - [5515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 10), - [5517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, 0, 68), - [5519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 68), - [5521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, 0, 189), - [5523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 189), - [5525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, 0, 190), - [5527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 190), - [5529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 132), - [5531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 132), - [5533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 81), - [5535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 81), - [5537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, 0, 133), - [5539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, 0, 133), - [5541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, 0, 10), - [5543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, 0, 10), - [5545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, 0, 58), - [5547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, 0, 58), - [5549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, 0, 203), - [5551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, 0, 203), - [5553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, 0, 68), - [5555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, 0, 68), - [5557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declaration_list_item, 2, 0, 0), - [5559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_list_item, 2, 0, 0), - [5561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, 0, 207), - [5563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, 0, 207), - [5565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, 0, 189), - [5567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, 0, 189), - [5569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, 0, 208), - [5571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, 0, 208), - [5573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, 0, 190), - [5575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, 0, 190), - [5577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 7, 0, 216), - [5579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 7, 0, 216), - [5581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, 0, 183), - [5583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, 0, 183), - [5585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, 0, 58), - [5587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 58), - [5589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dependent_type, 2, -1, 0), - [5591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependent_type, 2, -1, 0), - [5593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), - [5595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8678), - [5597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_method_definition, 3, 0, 69), - [5599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_method_definition, 3, 0, 69), - [5601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, 0, 68), - [5603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 68), - [5605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dependent_type_identifier, 2, 0, 0), - [5607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependent_type_identifier, 2, 0, 0), - [5609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 6, 0, 203), - [5611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 6, 0, 203), - [5613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 6, 0, 217), - [5615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 6, 0, 217), - [5617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 0, 33), - [5619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type_identifier, 2, 0, 33), - [5621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 6, 0, 207), - [5623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 6, 0, 207), - [5625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_name, 1, 0, 0), - [5627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_name, 1, 0, 0), - [5629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decltype, 4, 0, 0), - [5631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decltype, 4, 0, 0), - [5633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 6, 0, 208), - [5635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 6, 0, 208), - [5637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 102), - [5639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 102), - [5641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 4, 0, 0), - [5643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 4, 0, 0), - [5645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7784), - [5647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decltype_auto, 4, 0, 0), - [5649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decltype_auto, 4, 0, 0), - [5651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 2, 0, 0), - [5653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 2, 0, 0), - [5655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 9), - [5657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 9), - [5659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 10), - [5661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 10), - [5663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 4, 0, 105), - [5665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 4, 0, 105), - [5667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 4, 0, 46), - [5669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 4, 0, 46), - [5671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7738), - [5673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2, 0, 0), - [5675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2, 0, 0), - [5677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 2, 0, 12), - [5679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 2, 0, 12), - [5681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 4, 0, 151), - [5683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 4, 0, 151), - [5685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 2, 0, 11), - [5687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 2, 0, 11), - [5689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7784), - [5692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 2, 0, 6), - [5694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 2, 0, 6), - [5696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 0, 33), SHIFT(416), - [5699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_placeholder_type_specifier, 1, 0, 0), - [5701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_placeholder_type_specifier, 1, 0, 0), - [5703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(3369), - [5706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), - [5708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), - [5710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8540), - [5712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3368), - [5714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(3378), - [5717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3379), - [5719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3377), - [5721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(427), - [5724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), - [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [5728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 3, 0, 0), - [5730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 3, 0, 0), - [5732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 46), - [5734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 46), - [5736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 47), - [5738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 47), - [5740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 6, 0, 149), - [5742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 6, 0, 149), - [5744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), - [5746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), - [5748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), - [5750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__enum_base_clause, 2, 0, 100), - [5752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_base_clause, 2, 0, 100), - [5754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 48), - [5756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 48), - [5758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 49), - [5760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 49), - [5762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 2, 0, 12), - [5764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 2, 0, 12), - [5766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 1, 0, 13), - [5768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 1, 0, 13), - [5770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, 0, 12), - [5772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, 0, 12), - [5774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, 0, 12), - [5776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, 0, 12), - [5778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 5, 0, 150), - [5780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 5, 0, 150), - [5782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3, 0, 0), - [5784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3, 0, 0), - [5786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 3, 0, 104), - [5788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 3, 0, 104), - [5790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 3, 0, 50), - [5792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 3, 0, 50), - [5794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 3, 0, 9), - [5796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 3, 0, 9), - [5798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_placeholder_type_specifier, 2, 0, 27), - [5800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_placeholder_type_specifier, 2, 0, 27), - [5802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 4, 0, 0), - [5804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 4, 0, 0), - [5806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 97), - [5808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 97), - [5810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 99), - [5812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 99), - [5814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), - [5816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1946), - [5818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), - [5820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7738), - [5823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, 0, 20), - [5825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, 0, 20), - [5827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [5829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [5831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), - [5833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8043), - [5835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 0, 33), SHIFT(408), - [5838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_name, 1, 0, 1), - [5840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), - [5842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 93), - [5844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 93), - [5846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 0, 34), SHIFT(408), - [5849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5859), - [5851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 1, 1, 0), - [5853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), - [5855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4156), - [5857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4156), - [5859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 1, 1, 0), - [5861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5860), - [5863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [5865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, 1, 0), - [5867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 2, 1, 0), - [5869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 65), - [5871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 65), - [5873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 45), - [5875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 45), - [5877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(1918), - [5880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2229), - [5883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(8624), - [5886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [5888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 2), - [5890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 2), - [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [5894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, -1, 35), - [5896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 35), - [5898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, -1, 18), - [5900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 18), - [5902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, 0, 45), - [5904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 45), - [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), - [5908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 4, 0, 45), - [5910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 4, 0, 45), - [5912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string, 1, 0, 0), - [5914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string, 1, 0, 0), - [5916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 4, -1, 77), - [5918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 4, -1, 77), - [5920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, -1, 77), - [5922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 77), - [5924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [5926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, 0, 0), - [5928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 0), - [5930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, -1, 35), - [5932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 35), - [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [5936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 20), - [5938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 20), - [5940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [5942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, 0, 20), - [5944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 20), - [5946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_expression, 1, 0, 0), - [5949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_expression, 1, 0, 0), - [5952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), - [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6949), - [5956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7920), - [5958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3269), - [5960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), - [5962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(2010), - [5965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(6949), - [5968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(7920), - [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), - [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4254), - [5975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4254), - [5977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__enum_base_clause, 2, 0, 101), - [5979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_base_clause, 2, 0, 101), - [5981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), - [5983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 49), - [5985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 49), - [5987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6323), - [5989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_parameter_list, 4, 0, 0), - [5991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_parameter_list, 4, 0, 0), - [5993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_parameter_list, 2, 0, 0), - [5995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_parameter_list, 2, 0, 0), - [5997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_destructor_name, 2, 0, 0), - [5999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_destructor_name, 2, 0, 0), - [6001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(399), - [6004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [6006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), - [6008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [6010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6943), - [6012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7919), - [6014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8539), - [6016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8539), - [6018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [6020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5841), - [6022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), - [6024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 99), - [6026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 99), - [6028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_parameter_list, 3, 0, 0), - [6030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_parameter_list, 3, 0, 0), - [6032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), - [6034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4242), - [6036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4242), - [6038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type_declarator, 5, 1, 177), - [6040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 5, 1, 177), - [6042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [6044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7442), - [6046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), - [6048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2349), - [6050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), - [6052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2383), - [6054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8624), - [6056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2348), - [6058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 149), - [6060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 149), - [6062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 4, 0, 150), - [6064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 4, 0, 150), - [6066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type_declarator, 2, 1, 5), - [6068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 2, 1, 5), - [6070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(7826), - [6073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__lambda_capture_identifier, 1, 0, 0), SHIFT(8451), - [6076] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), REDUCE(sym__lambda_capture_identifier, 1, 0, 0), SHIFT(6061), - [6080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), - [6082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [6084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2337), - [6086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), - [6088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2363), - [6090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 97), - [6092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 97), - [6094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2196), - [6096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 102), - [6098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 102), - [6100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type_declarator, 4, 1, 87), - [6102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 4, 1, 87), - [6104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 3, 0, 46), - [6106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 3, 0, 46), - [6108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8451), - [6110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(6061), - [6113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), - [6115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), - [6117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 46), - [6119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 46), - [6121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 48), - [6123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 48), - [6125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 2, 0, 50), - [6127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 2, 0, 50), - [6129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 2, 0, 9), - [6131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 2, 0, 9), - [6133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type_declarator, 2, 1, 0), - [6135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type_declarator, 2, 1, 0), - [6137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(2196), - [6140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(7038), - [6143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(7906), - [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), - [6148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2198), - [6151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 9), - [6153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, 0, 9), - [6155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 1, 0, 11), - [6157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 1, 0, 11), - [6159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(421), - [6162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [6164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type_declarator, 3, 1, 41), - [6166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 3, 1, 41), - [6168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 3, 0, 105), - [6170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 3, 0, 105), - [6172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 92), - [6174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 92), - [6176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2293), - [6178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constraint_disjunction, 3, 0, 55), - [6180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint_disjunction, 3, 0, 55), - [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5457), - [6184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5457), - [6186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6338), - [6188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5, 0, 141), - [6190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5, 0, 141), - [6192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 0), - [6194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 0), - [6196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 1), - [6198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 1), - [6200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 43), - [6202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 43), - [6204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 116), - [6206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 116), - [6208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 3, -10, 0), - [6210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 3, -10, 0), - [6212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2285), - [6214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6998), - [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7916), - [6218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 3, 0, 26), - [6220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 3, 0, 26), - [6222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 5, 0, 179), - [6224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 5, 0, 179), - [6226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), - [6228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [6230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_capture_identifier, 2, 0, 0), - [6232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), REDUCE(sym__lambda_capture_identifier, 2, 0, 0), - [6235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), - [6237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(7442), - [6240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2265), - [6242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), - [6244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_capture_identifier, 1, 0, 0), - [6246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), REDUCE(sym__lambda_capture_identifier, 1, 0, 0), - [6249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_type_declarator, 2, 0, 0), - [6251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_type_declarator, 2, 0, 0), - [6253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requires_clause, 2, 0, 22), - [6255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_clause, 2, 0, 22), - [6257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5451), - [6259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5451), - [6261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), - [6263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 64), - [6265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 64), - [6267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2214), - [6269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 4, -10, 0), - [6271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 4, -10, 0), - [6273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, 0, 123), - [6275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, 0, 123), - [6277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 42), - [6279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 42), - [6281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2301), - [6283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(416), - [6286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, 0, 26), - [6288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, 0, 26), - [6290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), - [6292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2293), - [6295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_declarator, 2, 0, 89), - [6297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_declarator, 2, 0, 89), - [6299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(2301), - [6302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(6998), - [6305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(7916), - [6308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [6310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_field_identifier, 2, 1, 125), - [6312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_field_identifier, 2, 1, 125), - [6314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_field_identifier, 2, 1, 125), SHIFT(408), - [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), - [6319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), - [6321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5847), - [6323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(2600), - [6326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(1658), - [6329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2617), - [6331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(7977), - [6334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2575), - [6336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 10), - [6338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, 0, 10), - [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5997), - [6342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 47), - [6344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 47), - [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), - [6348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_method, 2, 0, 124), - [6350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_method, 2, 0, 124), - [6352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_declarator, 3, 0, 173), - [6354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_declarator, 3, 0, 173), - [6356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8599), - [6360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8599), - [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), - [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), - [6368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 1, 72), - [6370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 1, 72), - [6372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, 1, 72), SHIFT(408), - [6375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), - [6377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), - [6379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), - [6381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), - [6383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(2594), - [6386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(1658), - [6389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2544), - [6391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(7977), - [6394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2629), - [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), - [6398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_field_identifier, 2, 0, 33), - [6400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_field_identifier, 2, 0, 33), - [6402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4, 0, 0), - [6404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4, 0, 0), - [6406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2372), - [6408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2376), - [6410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [6412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), - [6416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(2376), - [6419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(7102), - [6422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(7915), - [6425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 4), - [6427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 4), - [6429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [6431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6105), - [6433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6105), - [6435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 4), - [6437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 4), - [6439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), - [6441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 2, 0, 14), - [6443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 2, 0, 14), - [6445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_co_await_expression, 2, 0, 4), - [6447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_co_await_expression, 2, 0, 4), - [6449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 55), - [6451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 55), - [6453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, 0, 20), - [6455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, 0, 20), - [6457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2550), - [6459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2504), - [6461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8362), - [6463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3, 0, 0), - [6465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3, 0, 0), - [6467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, 0, 86), - [6469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, 0, 86), - [6471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 1, 0, 2), - [6473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 1, 0, 2), - [6475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2558), - [6477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_name, 2, 0, 0), - [6479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_name, 2, 0, 0), - [6481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), - [6483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 40), - [6485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 40), - [6487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_declarator, 4, 0, 173), - [6489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_declarator, 4, 0, 173), - [6491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_expression, 2, 0, 4), - [6493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_expression, 2, 0, 4), - [6495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8560), - [6497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8560), - [6499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [6501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_method, 2, 0, 17), - [6503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_method, 2, 0, 17), - [6505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2, 0, 0), - [6507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2, 0, 0), - [6509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dependent_field_identifier, 2, 0, 0), - [6511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependent_field_identifier, 2, 0, 0), - [6513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 0, 76), - [6515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_identifier, 3, 0, 76), - [6517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 0, 76), SHIFT(408), - [6520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 29), - [6522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 29), - [6524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, 0, 55), - [6526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 55), - [6528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 63), - [6530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 63), - [6532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user_defined_literal, 2, 0, 0), - [6534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_defined_literal, 2, 0, 0), - [6536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_argument_list, 4, 0, 0), - [6538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_argument_list, 4, 0, 0), - [6540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5924), - [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [6544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dependent_identifier, 2, 0, 0), - [6546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependent_identifier, 2, 0, 0), - [6548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 7), - [6550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 7), - [6552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), - [6554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_argument_list, 2, 0, 0), - [6556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_argument_list, 2, 0, 0), - [6558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 4, 0, 86), - [6560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 4, 0, 86), - [6562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 91), - [6564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 91), - [6566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 3, 0, 0), - [6568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 3, 0, 0), - [6570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 0), - [6572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 0), - [6574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 73), - [6576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 73), - [6578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null, 1, 0, 0), - [6580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null, 1, 0, 0), - [6582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alignof_expression, 4, 0, 45), - [6584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alignof_expression, 4, 0, 45), - [6586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 4, 0, 109), - [6588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 4, 0, 109), - [6590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 114), - [6592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 114), - [6594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 115), - [6596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 115), - [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5429), - [6600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5429), - [6602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8580), - [6604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6022), - [6606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5, 0, 139), - [6608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5, 0, 139), - [6610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5, 0, 140), - [6612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5, 0, 140), - [6614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 4, 0, 0), - [6616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 4, 0, 0), - [6618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 5, 0, 161), - [6620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 5, 0, 161), - [6622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, 0, 163), - [6624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, 0, 163), - [6626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5417), - [6628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5417), - [6630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [6632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5, 0, 174), - [6634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5, 0, 174), - [6636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 6, 0, 186), - [6638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 6, 0, 186), - [6640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 5, 0, 0), - [6642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 5, 0, 0), - [6644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_offsetof_expression, 6, 0, 198), - [6646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_offsetof_expression, 6, 0, 198), - [6648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, 0, 200), - [6650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, 0, 200), - [6652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, 0, 201), - [6654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, 0, 201), - [6656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, 0, 213), - [6658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, 0, 213), - [6660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, 0, 214), - [6662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, 0, 214), - [6664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 8, 0, 0), - [6666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 8, 0, 0), - [6668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, 0, 221), - [6670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, 0, 221), - [6672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, 0, 222), - [6674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, 0, 222), - [6676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 9, 0, 0), - [6678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 9, 0, 0), - [6680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 9, 0, 225), - [6682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 9, 0, 225), - [6684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 2, 0, 8), - [6686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 2, 0, 8), - [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8623), - [6690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8623), - [6692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [6694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), - [6696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), - [6698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_name, 3, 0, 0), - [6700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_name, 3, 0, 0), - [6702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_argument_list, 3, 0, 0), - [6704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_argument_list, 3, 0, 0), - [6706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), - [6708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), - [6710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 2, 0, 30), - [6712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 2, 0, 30), - [6714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, 0, 164), - [6716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, 0, 164), - [6718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), - [6720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 0), SHIFT(1019), - [6723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2616), - [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), - [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6321), - [6731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 3, 0, 20), - [6733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 3, 0, 20), - [6735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), - [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), - [6739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), - [6741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, 0, 2), - [6743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, 0, 2), - [6745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 0, 34), SHIFT(407), - [6748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, 1, 0), - [6750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 3, 1, 0), - [6752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), - [6754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), - [6756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), - [6758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), - [6760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2975), - [6763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2574), - [6766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2999), - [6769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(8306), - [6772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(7249), - [6775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(8308), - [6778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(8509), - [6781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2622), - [6783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2602), - [6785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), - [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8614), - [6791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8614), - [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [6795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6090), - [6797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6328), - [6799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2585), - [6801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(2595), - [6804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(7061), - [6807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(7905), - [6810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), - [6812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), - [6814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2623), - [6816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [6818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2602), - [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), - [6823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), - [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), - [6827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), - [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), - [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8121), - [6833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2628), - [6835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2595), - [6837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2584), - [6839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 0, 34), SHIFT(416), - [6842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_class_specifier, 1, 0, 0), - [6844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_class_specifier, 1, 0, 0), - [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7041), - [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5987), - [6850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6279), - [6852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3058), - [6854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2850), - [6856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3057), - [6858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3074), - [6860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3075), - [6862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3073), - [6864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), - [6870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8731), - [6872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [6874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), - [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), - [6878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), - [6880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_requirement, 5, 0, 0), - [6882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_requirement, 5, 0, 0), - [6884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_requirement, 6, 0, 0), - [6886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_requirement, 6, 0, 0), - [6888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), - [6890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [6892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_requirement, 4, 0, 0), - [6894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_requirement, 4, 0, 0), - [6896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [6898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), - [6900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [6902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_requirement, 2, 0, 0), - [6904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_requirement, 2, 0, 0), - [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [6908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 0, 34), SHIFT(421), - [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), - [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [6915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_declspec_modifier, 4, 0, 0), - [6917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_declspec_modifier, 4, 0, 0), - [6919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__requirement, 1, 0, 66), - [6921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__requirement, 1, 0, 66), - [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), - [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [6933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extension_expression, 2, 0, 0), - [6935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extension_expression, 2, 0, 0), - [6937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), - [6939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), - [6941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [6945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), - [6947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), - [6949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), - [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [6953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), - [6955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [6957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), - [6959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [6961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), - [6963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), - [6965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), - [6967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_expression, 2, 0, 0), - [6969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_expression, 2, 0, 0), - [6971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6312), - [6973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), - [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [6977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [6981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [6983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), - [6985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8259), - [6987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_expression, 3, 0, 0), - [6989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_expression, 3, 0, 0), - [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), - [6993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [6995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [6997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), - [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [7001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), - [7005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_expression, 4, 0, 0), - [7007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_expression, 4, 0, 0), - [7009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), - [7011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 4, 0, 126), - [7013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 4, 0, 126), - [7015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_expression, 5, 0, 0), - [7017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_expression, 5, 0, 0), - [7019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, 0, 180), - [7021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, 0, 180), - [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6086), - [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6348), - [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), - [7033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 1), - [7036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_literal, 3, 0, 0), - [7038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_literal, 3, 0, 0), - [7040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 23), - [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5407), - [7044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5407), - [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), - [7048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 23), SHIFT(8508), - [7051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 23), SHIFT(8508), - [7054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 23), SHIFT(7423), - [7057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 23), - [7059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3992), - [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8581), - [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6750), - [7065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6750), - [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), - [7069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 23), SHIFT(5841), - [7072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5556), - [7074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8388), - [7076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 23), SHIFT(5434), - [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5434), - [7081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2430), - [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8508), - [7085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8508), - [7087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3788), - [7089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8373), - [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7452), - [7095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), - [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), - [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8175), - [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), - [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5275), - [7109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5275), - [7111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), - [7113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), - [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [7119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), - [7121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), - [7123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), - [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [7127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), - [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [7131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), - [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [7137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), - [7139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), - [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8417), - [7149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 23), SHIFT(7249), - [7152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7977), - [7154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 23), SHIFT(6750), - [7157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 23), SHIFT(6750), - [7160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3697), - [7162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 23), SHIFT(5444), - [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), - [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5269), - [7169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5269), - [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), - [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5272), - [7175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5272), - [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5850), - [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), - [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), - [7183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [7185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), - [7187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), - [7189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), - [7191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), - [7193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), - [7195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), - [7197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [7199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [7201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), - [7203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), - [7205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), - [7207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [7209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [7211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), - [7213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [7215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), - [7217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), - [7219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), - [7221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), - [7223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [7225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), - [7227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [7229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [7231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [7235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [7237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [7239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [7241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [7243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [7245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [7247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [7249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [7251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [7253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), - [7255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), - [7257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [7259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), - [7261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [7263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [7265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), - [7267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6166), - [7269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5996), - [7271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8685), - [7273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), - [7275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), - [7277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5249), - [7279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5249), - [7281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6651), - [7283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), - [7285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5257), - [7287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5257), - [7289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5807), - [7291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), - [7293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5263), - [7295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5263), - [7297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5838), - [7299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), - [7301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5444), - [7303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3735), - [7305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6070), - [7307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 23), SHIFT(8417), - [7310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 23), SHIFT(8417), - [7313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), - [7315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), - [7317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3757), - [7319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 23), SHIFT(5459), - [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), - [7324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 23), SHIFT(5999), - [7327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 23), SHIFT(5472), - [7330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), - [7332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 23), SHIFT(5480), - [7335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5999), - [7337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5472), - [7339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), - [7341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), - [7343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [7345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [7347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), - [7349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), - [7351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), - [7353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [7355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), - [7357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [7359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), - [7361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [7363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), - [7365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), - [7367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [7369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [7371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6590), - [7373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 0), SHIFT(1028), - [7376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), - [7378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3336), - [7380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), - [7382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8586), - [7384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [7386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [7388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5459), - [7390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), - [7392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2478), - [7394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), - [7396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8570), - [7398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [7400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5480), - [7402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), - [7404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), - [7406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), - [7408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3717), - [7410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), - [7412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3495), - [7414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), - [7416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8087), - [7418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(7452), - [7421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), - [7423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), - [7425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3587), - [7427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), - [7429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8774), - [7431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5800), - [7433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [7435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7460), - [7437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), - [7439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), - [7441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), - [7443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6628), - [7445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), - [7447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), - [7449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6602), - [7451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), - [7453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6629), - [7455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), - [7457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__binary_fold_operator, 3, 0, 135), - [7459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_fold_operator, 3, 0, 135), - [7461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), - [7463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), - [7465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), - [7467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3733), - [7469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), - [7471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), - [7473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), - [7475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [7477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), - [7479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [7481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), - [7483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [7485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6166), - [7487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [7489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [7491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), - [7493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), - [7495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), - [7497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), - [7499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [7501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 0, 76), SHIFT(399), - [7504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 2, 0, 113), - [7506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5166), - [7508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__constructor_specifiers, 1, 0, 0), REDUCE(aux_sym__declaration_specifiers_repeat1, 1, 0, 0), - [7511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_specifiers, 1, 0, 0), - [7513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constructor_specifiers, 1, 0, 0), - [7515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__constructor_specifiers, 1, 0, 0), REDUCE(aux_sym__declaration_specifiers_repeat1, 1, 0, 0), - [7518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 1, 0, 0), - [7520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [7522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3137), - [7524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), - [7526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(7460), - [7529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3151), - [7531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3151), - [7534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(6943), - [7537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(7919), - [7540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 0, 76), SHIFT(371), - [7543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, 1, 72), SHIFT(407), - [7546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_field_identifier, 2, 1, 125), SHIFT(407), - [7549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), - [7551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5469), - [7553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 23), SHIFT(5469), - [7556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3363), - [7558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), - [7560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), - [7562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), - [7564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6143), - [7566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6143), - [7568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 0, 76), SHIFT(407), - [7571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), - [7573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8147), - [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [7577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), - [7579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), - [7581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), - [7583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), - [7585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), - [7587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [7589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [7591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), - [7593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), - [7595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), - [7597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [7599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [7601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), - [7603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [7605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), - [7607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), - [7609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), - [7611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), - [7613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8186), - [7615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [7617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8190), - [7619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8192), - [7621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8194), - [7623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8198), - [7625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8203), - [7627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8208), - [7629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8231), - [7631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8260), - [7633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8264), - [7635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8271), - [7637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [7639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [7641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [7643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [7645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [7647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [7649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [7651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), - [7653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), - [7655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_initializer, 4, 0, 143), - [7657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3836), - [7659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [7661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), - [7663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6132), - [7665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6132), - [7667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), - [7669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), - [7671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), - [7673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), - [7675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [7677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [7679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), - [7681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), - [7683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), - [7685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [7687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), - [7689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), - [7691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [7693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [7695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), - [7697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), - [7699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [7701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [7703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5577), - [7705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3452), - [7707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), - [7709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), - [7711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5891), - [7713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), - [7715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [7717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), - [7719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_field_identifier, 2, 1, 125), SHIFT(416), - [7722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), - [7724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(1658), - [7727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(3269), - [7730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(3132), - [7733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(8417), - [7736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(7401), - [7739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(8279), - [7742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(7977), - [7745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), - [7747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), - [7749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), - [7751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), - [7753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(2975), - [7756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(3282), - [7759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(2999), - [7762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(8306), - [7765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(7249), - [7768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(8308), - [7771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(8509), - [7774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(4204), - [7777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), - [7779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), - [7781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(3761), - [7784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(3748), - [7787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4220), - [7789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, 1, 72), SHIFT(416), - [7792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6021), - [7794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [7796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [7798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), - [7800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), - [7802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), - [7804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [7806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), - [7808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [7810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), - [7812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [7814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), - [7816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), - [7818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [7820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [7822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [7824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), - [7826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3583), - [7828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), - [7830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3472), - [7832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), - [7834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3374), - [7836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3375), - [7838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7423), - [7840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), - [7842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [7844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), - [7846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5357), - [7848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5357), - [7850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3761), - [7852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), - [7854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3748), - [7856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), - [7858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3389), - [7860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3395), - [7862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3362), - [7864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 0, 34), SHIFT(427), - [7867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3763), - [7869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 23), SHIFT(5443), - [7872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3463), - [7874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3463), - [7877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(7007), - [7880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(7914), - [7883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(3472), - [7886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), - [7888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5345), - [7890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5345), - [7892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5483), - [7894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5456), - [7896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5483), - [7898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5456), - [7900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), - [7902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5352), - [7904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5352), - [7906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5443), - [7908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 0, 76), SHIFT(416), - [7911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3460), - [7913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), - [7915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), - [7917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [7919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [7921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), - [7923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), - [7925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), - [7927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [7929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), - [7931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [7933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), - [7935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [7937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [7939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [7941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5461), - [7943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5467), - [7945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5461), - [7947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5467), - [7949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6002), - [7951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6332), - [7953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [7955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4308), - [7957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5553), - [7959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6587), - [7961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), - [7963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_capture, 2, 0, 0), - [7965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), REDUCE(sym__lambda_capture, 2, 0, 0), - [7968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4001), - [7970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6630), - [7972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6255), - [7974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5062), - [7976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5083), - [7978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5108), - [7980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5199), - [7982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), - [7984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5406), - [7986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5406), - [7988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4980), - [7990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6593), - [7992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4882), - [7994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5243), - [7996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6194), - [7998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5115), - [8000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5124), - [8002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5128), - [8004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5183), - [8006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 0, 34), SHIFT(386), - [8009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3992), - [8012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(8581), - [8015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_call_modifier, 1, 0, 0), - [8017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_call_modifier, 1, 0, 0), - [8019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4189), - [8021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6632), - [8023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4069), - [8025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4356), - [8027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6186), - [8029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5057), - [8031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5059), - [8033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5064), - [8035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4948), - [8037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8625), - [8039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5170), - [8041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1, 0, 0), - [8043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1, 0, 0), - [8045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), - [8047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4513), - [8049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6579), - [8051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2323), - [8053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4038), - [8055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6592), - [8057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3931), - [8059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4208), - [8061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6270), - [8063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5082), - [8065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5091), - [8067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5132), - [8069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4612), - [8071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8602), - [8073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5231), - [8075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_pointer_modifier, 1, 0, 0), - [8077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_pointer_modifier, 1, 0, 0), - [8079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4880), - [8081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6615), - [8083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6172), - [8085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5104), - [8087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5102), - [8089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5139), - [8091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5224), - [8093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declarator, 1, 0, 0), - [8095] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(4043), - [8098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(4028), - [8101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [8103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4096), - [8105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8282), - [8107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3825), - [8109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5470), - [8111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5470), - [8113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5466), - [8115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5430), - [8117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6000), - [8119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3883), - [8121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5463), - [8123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5463), - [8125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4289), - [8127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4043), - [8129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028), - [8131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [8133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8309), - [8135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4181), - [8137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(3992), - [8140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4073), - [8142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(8581), - [8145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4180), - [8147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [8149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [8151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8678), - [8153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4195), - [8155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(3992), - [8158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4196), - [8160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(8581), - [8163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4194), - [8165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5986), - [8167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), - [8169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5628), - [8171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5628), - [8173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7045), - [8175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 1, 0, 58), - [8177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), - [8179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4025), - [8181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [8183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [8185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, 0, 20), - [8187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_descriptor, 2, 0, 20), - [8189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4633), - [8191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8227), - [8193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), - [8195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), - [8197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5692), - [8199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5692), - [8201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_attributes_start, 1, 0, 0), - [8203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_attributes_start, 1, 0, 0), - [8205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 1, 0, 2), - [8207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_descriptor, 1, 0, 2), - [8209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), - [8211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8362), - [8213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 0, 34), SHIFT(410), - [8216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4005), - [8218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5740), - [8220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5740), - [8222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), - [8224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5683), - [8226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5683), - [8228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), - [8230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5753), - [8232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5753), - [8234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6060), - [8236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3393), - [8238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5337), - [8240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4008), - [8242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5852), - [8244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5852), - [8246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3748), - [8248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3354), - [8250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3392), - [8252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6088), - [8254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5339), - [8256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), - [8258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5794), - [8260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5794), - [8262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6081), - [8264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6082), - [8266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3286), - [8268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5334), - [8270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), - [8272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5873), - [8274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5873), - [8276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3284), - [8278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3285), - [8280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), - [8282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5341), - [8284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), - [8286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5863), - [8288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5863), - [8290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2284), - [8292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), - [8294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4197), - [8296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), - [8298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8279), - [8300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4020), - [8302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5810), - [8304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5810), - [8306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_reference_declarator, 1, 0, 0), - [8308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_reference_declarator, 1, 0, 0), - [8310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4175), - [8312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), - [8314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5848), - [8316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5848), - [8318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), - [8320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5861), - [8322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5861), - [8324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4040), - [8326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5851), - [8328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5851), - [8330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4045), - [8332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5868), - [8334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5868), - [8336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4185), - [8338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6070), - [8340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(4058), - [8343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4375), - [8345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(4316), - [8348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4238), - [8350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(8638), - [8353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4371), - [8355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4387), - [8357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(4316), - [8360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4388), - [8362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(8638), - [8365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4383), - [8367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4091), - [8369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5910), - [8371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5910), - [8373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4107), - [8375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5946), - [8377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5946), - [8379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [8381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5267), - [8383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5267), - [8385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5268), - [8387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8540), - [8389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), - [8391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [8393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1332), - [8395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), - [8397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [8399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), - [8401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [8403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), - [8405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [8407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [8409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [8411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), - [8413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), - [8415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [8417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [8419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), - [8421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), - [8423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), - [8425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [8427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6283), - [8429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5388), - [8431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4144), - [8433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5948), - [8435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5948), - [8437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [8439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [8441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, 0, 2), - [8443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_descriptor, 2, 0, 2), - [8445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, 0, 20), - [8447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_descriptor, 3, 0, 20), - [8449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 3, 0, 148), - [8451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 3, 0, 148), - [8453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4316), - [8456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(8638), - [8459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6828), - [8461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4154), - [8463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5964), - [8465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5964), - [8467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4289), - [8470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(8309), - [8473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4169), - [8475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5961), - [8477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5961), - [8479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4924), - [8481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8272), - [8483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5947), - [8485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), - [8487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [8489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), - [8491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [8493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [8495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), - [8497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [8499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), - [8501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [8503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), - [8505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [8507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [8509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [8511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [8513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [8515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [8517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [8519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [8521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5474), - [8523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4058), - [8525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_function_specifier, 4, 0, 0), - [8527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_function_specifier, 4, 0, 0), - [8529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), - [8531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4192), - [8533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4193), - [8535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5473), - [8537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4186), - [8539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(1658), - [8542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(4186), - [8545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(3132), - [8548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(8417), - [8551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(7457), - [8554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(8279), - [8557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(7977), - [8560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_attributes_start, 2, 0, 0), - [8562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_attributes_start, 2, 0, 0), - [8564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [8566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4409), - [8568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4190), - [8570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6039), - [8572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6039), - [8574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4206), - [8576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4207), - [8578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4203), - [8580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6065), - [8582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_function_specifier, 1, 0, 0), - [8584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [8586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_function_specifier, 1, 0, 0), - [8588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(1695), - [8591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4393), - [8593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(8540), - [8596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(1695), - [8599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(8540), - [8602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4212), - [8604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6140), - [8606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6140), - [8608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5422), - [8610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5422), - [8612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(4217), - [8615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [8617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(2229), - [8620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4488), - [8622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(8624), - [8625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(2229), - [8628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(8624), - [8631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), - [8633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), - [8635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(8417), - [8638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(8417), - [8641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5477), - [8643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5477), - [8645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), - [8647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [8649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), - [8651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [8653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), - [8655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [8657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), - [8659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [8661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [8663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [8665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [8667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [8669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), - [8671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [8673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitfield_clause, 2, 0, 0), - [8675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bitfield_clause, 2, 0, 0), - [8677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6044), - [8679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6297), - [8681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [8683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [8685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4292), - [8687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6182), - [8689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6182), - [8691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [8693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [8695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3758), - [8697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [8699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 4, 0, 182), - [8701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_field_declaration_repeat1, 4, 0, 182), - [8703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comma_expression, 3, 0, 84), - [8705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4788), - [8707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [8709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), - [8711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [8713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), - [8715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [8717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [8719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), - [8721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [8723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), - [8725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [8727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), - [8729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [8731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), - [8733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [8735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [8737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [8739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [8741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4817), - [8743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), - [8745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [8747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 3, 0, 118), - [8749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_declaration, 4, 0, 192), - [8751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [8753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), - [8755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [8757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), - [8759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), - [8761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), - [8763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), - [8765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), - [8767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), - [8769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4350), - [8771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(8508), - [8774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(8508), - [8777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), - [8779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), - [8781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [8783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3809), - [8785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [8787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), - [8789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [8791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), - [8793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [8795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), - [8797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), - [8799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [8801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4359), - [8803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4217), - [8805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4811), - [8807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [8809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [8811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), - [8813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [8815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), - [8817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [8819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [8821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), - [8823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [8825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), - [8827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [8829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), - [8831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [8833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [8835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), - [8837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [8839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [8841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [8843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [8845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4831), - [8847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [8849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), - [8851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [8853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4840), - [8855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), - [8857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), - [8859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), - [8861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4379), - [8863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), SHIFT(1159), - [8866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), - [8868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4381), - [8870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3918), - [8872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4392), - [8874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8630), - [8876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8630), - [8878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [8880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4160), - [8882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4394), - [8884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), - [8886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [8888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), - [8890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [8892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), - [8894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3854), - [8896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [8898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [8900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), - [8902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [8904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_initializer_pair, 3, 0, 146), SHIFT(1159), - [8907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, 0, 146), - [8909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6433), - [8911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), - [8913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [8915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 1, 156), - [8917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [8919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [8921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), - [8923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [8925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), - [8927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [8929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [8931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), - [8933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [8935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), - [8937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [8939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), - [8941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [8943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [8945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [8947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [8949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [8951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [8953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [8955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter_declaration, 3, 0, 168), - [8957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 1, 157), - [8959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 1, 193), - [8961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_initializer, 5, 0, 188), - [8963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 1, 194), - [8965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [8967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6158), - [8969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8248), - [8971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [8973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [8975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [8977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [8979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [8981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_initializer, 3, 0, 84), - [8983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 1, 196), - [8985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6159), - [8987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8466), - [8989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5992), - [8991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6309), - [8993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [8995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 4, 0, 0), - [8997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [8999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2, 1, 0), - [9001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6160), - [9003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8195), - [9005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), - [9007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [9009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter_declaration, 4, 0, 203), - [9011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6161), - [9013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8088), - [9015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [9017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6164), - [9019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8456), - [9021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [9023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), - [9025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_argument_list_repeat1, 2, 0, 0), - [9027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [9029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [9031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [9033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6145), - [9035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8346), - [9037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [9039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [9041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [9043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [9045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6120), - [9047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8047), - [9049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, 0, 147), - [9051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [9053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [9055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [9057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [9059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 5, 1, 209), - [9061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [9063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [9065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [9067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [9069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), - [9071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [9073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [9075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4281), - [9077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [9079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [9081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7008), - [9083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7275), - [9085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [9087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [9089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [9091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7276), - [9093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [9095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5619), - [9097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4275), - [9099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [9101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [9103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), - [9105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [9107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), - [9109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), - [9111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [9113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_list, 2, 0, 0), REDUCE(sym_argument_list, 2, 0, 0), - [9116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [9118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [9120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [9122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [9124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [9126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unary_left_fold, 3, 0, 55), - [9128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_range_loop_body, 4, 0, 195), - [9130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), - [9132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [9134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [9136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), - [9138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [9140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [9142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), - [9144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [9146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), - [9148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [9150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), - [9152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [9154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), - [9156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [9158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), - [9160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), - [9162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4177), - [9164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [9166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [9168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [9170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [9172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [9174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4463), - [9176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), - [9178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [9180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [9182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 23), - [9184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 23), SHIFT(8508), - [9187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 23), SHIFT(8508), - [9190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 23), SHIFT(7423), - [9193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 23), - [9195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 23), SHIFT(5841), - [9198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 23), SHIFT(5434), - [9201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), - [9203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [9205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [9207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), - [9209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [9211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), - [9213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7478), - [9215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_expression_lhs, 3, 0, 55), - [9217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [9219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4859), - [9221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7248), - [9223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [9225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [9227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [9229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [9231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [9233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), - [9235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), - [9237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), - [9239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), - [9241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4013), - [9243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_range_loop_body, 5, 0, 210), - [9245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7142), - [9247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_fold, 3, 0, 85), - [9249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [9251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7285), - [9253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), - [9255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), - [9257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3786), - [9259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3790), - [9261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), - [9263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), - [9265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [9267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(7249), - [9270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 23), SHIFT(6750), - [9273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 23), SHIFT(6750), - [9276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 23), SHIFT(7249), - [9279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5431), - [9281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 23), SHIFT(5444), - [9284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_capture, 1, 0, 0), - [9286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), REDUCE(sym__lambda_capture, 1, 0, 0), - [9289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5475), - [9291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 23), SHIFT(8417), - [9294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 23), SHIFT(8417), - [9297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 23), SHIFT(5999), - [9300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 23), SHIFT(5480), - [9303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6091), - [9305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6014), - [9307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(5021), - [9310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(4984), - [9313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(4985), - [9316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 23), SHIFT(5459), - [9319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(5035), - [9322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(5038), - [9325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(5007), - [9328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 23), SHIFT(5472), - [9331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3274), - [9333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7347), - [9335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 1, 0, 0), - [9337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5193), - [9339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6069), - [9341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 23), SHIFT(5469), - [9344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 23), - [9346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 23), SHIFT(8508), - [9349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 3, 0, 23), SHIFT(8508), - [9352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 23), SHIFT(7423), - [9355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 3, 0, 23), - [9357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 23), SHIFT(5841), - [9360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 23), SHIFT(5434), - [9363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3119), - [9365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6030), - [9367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 23), SHIFT(7249), - [9370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 23), SHIFT(6750), - [9373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 3, 0, 23), SHIFT(6750), - [9376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 23), SHIFT(5444), - [9379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 0), SHIFT(1027), - [9382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), - [9384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6580), - [9386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), - [9388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2316), - [9390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6179), - [9392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5127), - [9394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5129), - [9396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5131), - [9398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), - [9400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8543), - [9402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5211), - [9404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3980), - [9406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6594), - [9408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), - [9410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6215), - [9412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5137), - [9414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5140), - [9416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5141), - [9418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5187), - [9420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5029), - [9422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3237), - [9424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6626), - [9426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), - [9428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6192), - [9430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5136), - [9432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5142), - [9434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5145), - [9436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5207), - [9438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2586), - [9440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6620), - [9442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), - [9444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2715), - [9446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6180), - [9448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5106), - [9450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5107), - [9452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5148), - [9454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3111), - [9456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8616), - [9458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5175), - [9460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 0), SHIFT(1918), - [9463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 45), SHIFT(5023), - [9466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 23), SHIFT(8417), - [9469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 3, 0, 23), SHIFT(8417), - [9472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 23), SHIFT(5459), - [9475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 2), SHIFT(1918), - [9478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 23), SHIFT(5443), - [9481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), - [9483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), - [9485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2387), - [9487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6243), - [9489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5171), - [9491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 1, 0, 2), - [9493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 1, 0, 2), - [9495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 23), SHIFT(5999), - [9498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 23), SHIFT(5472), - [9501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2568), - [9503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6633), - [9505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), - [9507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2703), - [9509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6256), - [9511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5144), - [9513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5152), - [9515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5151), - [9517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2976), - [9519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8513), - [9521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5159), - [9523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 20), SHIFT(5016), - [9526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2722), - [9528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6578), - [9530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), - [9532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2859), - [9534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6249), - [9536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5058), - [9538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5047), - [9540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5056), - [9542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3491), - [9544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8584), - [9546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5169), - [9548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 23), SHIFT(5480), - [9551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 20), SHIFT(1918), - [9554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 2, 0, 20), - [9556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 2, 0, 20), - [9558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(5267), - [9561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(5267), - [9564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(5268), - [9567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 77), SHIFT(5024), - [9570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 4, 0, 45), SHIFT(1918), - [9573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 4, -1, 77), SHIFT(1918), - [9576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3361), - [9578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6634), - [9580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1860), - [9582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3737), - [9584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6193), - [9586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5122), - [9588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5125), - [9590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5126), - [9592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4081), - [9594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8632), - [9596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5213), - [9598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 18), SHIFT(1918), - [9601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 35), SHIFT(1918), - [9604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5258), - [9606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 35), SHIFT(5030), - [9609] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT(1918), - [9613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2936), - [9615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2971), - [9617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2756), - [9619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4231), - [9621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3170), - [9623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4042), - [9625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6604), - [9627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4895), - [9629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 23), SHIFT(5469), - [9632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2588), - [9634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4480), - [9636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4601), - [9638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3455), - [9640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1899), - [9642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3770), - [9644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3998), - [9646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2555), - [9648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5032), - [9650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6183), - [9652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5212), - [9654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 3, 0, 20), - [9656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 3, 0, 20), - [9658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 2, 0, 2), - [9660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 2, 0, 2), - [9662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 0), SHIFT(4995), - [9665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 23), - [9667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 23), SHIFT(8508), - [9670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 4, 0, 23), SHIFT(8508), - [9673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 23), SHIFT(7423), - [9676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 4, 0, 23), - [9678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 23), SHIFT(5443), - [9681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 23), SHIFT(5841), - [9684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 23), SHIFT(5434), - [9687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 23), SHIFT(7249), - [9690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 23), SHIFT(6750), - [9693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 4, 0, 23), SHIFT(6750), - [9696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 23), SHIFT(5444), - [9699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 23), SHIFT(8417), - [9702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 4, 0, 23), SHIFT(8417), - [9705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 23), SHIFT(5999), - [9708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 23), SHIFT(5480), - [9711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 23), SHIFT(5459), - [9714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 23), SHIFT(5472), - [9717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 23), SHIFT(5469), - [9720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [9722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [9724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2472), - [9726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7022), - [9728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [9730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [9732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4183), - [9734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6985), - [9736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4257), - [9738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [9740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [9742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3559), - [9744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7000), - [9746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [9748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [9750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4825), - [9752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6986), - [9754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [9756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [9758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3837), - [9760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7121), - [9762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [9764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [9766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3478), - [9768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7135), - [9770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [9772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), - [9774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [9776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [9778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), - [9780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [9782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7780), - [9784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [9786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [9788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [9790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7763), - [9792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 23), SHIFT(5443), - [9795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_attributes_end, 2, 0, 0), - [9797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_attributes_end, 2, 0, 0), - [9799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_attributes_end, 1, 0, 0), - [9801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_attributes_end, 1, 0, 0), - [9803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), - [9805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [9807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [9809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7728), - [9811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6554), - [9813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), - [9815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5449), - [9817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [9819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [9821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [9823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [9825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [9827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [9829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [9831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_qualifier, 1, 0, 0), - [9833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_qualifier, 1, 0, 0), - [9835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [9837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [9839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [9841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2459), - [9843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 23), - [9845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 5, 0, 23), - [9847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 23), - [9849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 6, 0, 23), - [9851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [9853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6210), - [9855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6971), - [9857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [9859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3214), - [9861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5425), - [9863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), - [9865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5424), - [9867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5423), - [9869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2460), - [9871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [9873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3839), - [9875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [9877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4222), - [9879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6878), - [9881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [9883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5520), - [9885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7023), - [9887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5578), - [9889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5579), - [9891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), - [9893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6612), - [9895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2271), - [9897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__preproc_expression, 1, 0, 0), - [9899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5524), - [9901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__preproc_expression, 1, 0, 0), - [9903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [9905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5926), - [9907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6994), - [9909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5898), - [9911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6265), - [9913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6484), - [9915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5427), - [9917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6264), - [9919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 23), SHIFT(5841), - [9922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 23), SHIFT(5444), - [9925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2215), - [9927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 23), SHIFT(5841), - [9930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 23), SHIFT(5444), - [9933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6235), - [9935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [9937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3526), - [9939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6234), - [9941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), - [9943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8432), - [9945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5460), - [9947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7280), - [9949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), - [9951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [9953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3642), - [9955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3435), - [9957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7227), - [9959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5817), - [9961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6618), - [9963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6019), - [9965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3838), - [9967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3674), - [9969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6230), - [9971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_attributes_end, 3, 0, 0), - [9973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_attributes_end, 3, 0, 0), - [9975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6020), - [9977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4174), - [9979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4795), - [9981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6487), - [9983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4214), - [9985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4126), - [9987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7202), - [9989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5885), - [9991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6881), - [9993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3524), - [9995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5228), - [9997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [9999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [10001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), - [10003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [10005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6726), - [10007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7767), - [10009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_specifier, 5, 0, 0), - [10011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_specifier, 5, 0, 0), - [10013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [10015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [10017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [10019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [10021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [10023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7656), - [10025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), - [10027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [10029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5435), - [10031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5436), - [10033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5438), - [10035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5673), - [10037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5721), - [10039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7821), - [10041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5770), - [10043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5770), - [10045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5546), - [10047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7424), - [10049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [10051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__function_postfix_repeat1, 2, 0, 0), - [10053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__function_postfix_repeat1, 2, 0, 0), - [10055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_postfix_repeat1, 2, 0, 0), SHIFT_REPEAT(5841), - [10058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5783), - [10060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5731), - [10062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5700), - [10064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5704), - [10066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5704), - [10068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5707), - [10070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5708), - [10072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5710), - [10074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5711), - [10076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5717), - [10078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5718), - [10080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5719), - [10082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5719), - [10084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5720), - [10086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_noexcept, 3, 0, 0), - [10088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_noexcept, 3, 0, 0), - [10090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_specifier, 3, 0, 0), - [10092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_specifier, 3, 0, 0), - [10094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 23), SHIFT(5434), - [10097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 23), SHIFT(5434), - [10100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_noexcept, 1, 0, 0), - [10102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [10104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_noexcept, 1, 0, 0), - [10106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5802), - [10108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8093), - [10110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [10112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [10114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7703), - [10116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5636), - [10118] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [10120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6576), - [10122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7544), - [10124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8031), - [10126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5581), - [10128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_postfix, 1, 0, 0), - [10130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_postfix, 1, 0, 0), - [10132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [10134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [10136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_noexcept, 4, 0, 0), - [10138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_noexcept, 4, 0, 0), - [10140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_specifier, 4, 0, 0), - [10142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_specifier, 4, 0, 0), - [10144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [10146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [10148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7817), - [10150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5853), - [10152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5580), - [10154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [10156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6773), - [10158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8111), - [10160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6327), - [10162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5858), - [10164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [10166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7222), - [10168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_binary_expression, 3, 0, 55), - [10170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_binary_expression, 3, 0, 55), - [10172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [10174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 4, 0, 0), - [10176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 4, 0, 0), - [10178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [10180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5587), - [10182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5656), - [10184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7591), - [10186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5666), - [10188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5666), - [10190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5880), - [10192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7254), - [10194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2901), - [10196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5654), - [10198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7270), - [10200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3056), - [10202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5793), - [10204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5867), - [10206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2945), - [10208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8323), - [10210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5659), - [10212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7169), - [10214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3011), - [10216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5872), - [10218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5808), - [10220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 2, 0, 0), - [10222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 2, 0, 0), - [10224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [10226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), - [10228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8430), - [10230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5676), - [10232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7192), - [10234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3042), - [10236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [10238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [10240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [10242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4047), - [10244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7472), - [10246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5840), - [10248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(7423), - [10251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [10253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [10255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [10257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [10259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [10261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 2, 0, 0), - [10263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 2, 0, 0), - [10265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [10267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_unary_expression, 2, 0, 4), - [10269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_unary_expression, 2, 0, 4), - [10271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5766), - [10273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), - [10275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8714), - [10277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5702), - [10279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7177), - [10281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3064), - [10283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5767), - [10285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 4, 0, 0), - [10287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 4, 0, 0), - [10289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5774), - [10291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5780), - [10293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5722), - [10295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5642), - [10297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5844), - [10299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5643), - [10301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5645), - [10303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5646), - [10305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5649), - [10307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5871), - [10309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5823), - [10311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), - [10313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5725), - [10315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7210), - [10317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5825), - [10319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5833), - [10321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5834), - [10323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5842), - [10325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 3, 0, 0), - [10327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 3, 0, 0), - [10329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [10331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3068), - [10333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5737), - [10335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7147), - [10337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5854), - [10339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5856), - [10341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5826), - [10343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5821), - [10345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5824), - [10347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [10349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [10351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), - [10353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8667), - [10355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5750), - [10357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7217), - [10359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3067), - [10361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6683), - [10363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5843), - [10365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5837), - [10367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [10369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [10371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [10373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5801), - [10375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), - [10377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5763), - [10379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7237), - [10381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2, 0, 0), - [10383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_parenthesized_expression, 3, 0, 0), - [10385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_parenthesized_expression, 3, 0, 0), - [10387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5831), - [10389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [10391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5699), - [10393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call_expression, 2, 0, 7), - [10395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call_expression, 2, 0, 7), - [10397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2295), - [10399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5772), - [10401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7160), - [10403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3190), - [10405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5773), - [10407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7244), - [10409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), - [10411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5775), - [10413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7245), - [10415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [10417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5857), - [10419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5798), - [10421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5805), - [10423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3817), - [10425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7246), - [10427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5879), - [10429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5764), - [10431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5815), - [10433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [10435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [10437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [10439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), - [10441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5788), - [10443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7537), - [10445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [10447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [10449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 1, 0, 39), - [10451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_function_declarator, 1, 0, 39), - [10453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5797), - [10455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(7457), - [10458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7098), - [10460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5796), - [10462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7292), - [10464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [10466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5724), - [10468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5726), - [10470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5727), - [10472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5729), - [10474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5730), - [10476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5738), - [10478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5739), - [10480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5741), - [10482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5742), - [10484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5743), - [10486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5897), - [10488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [10490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__abstract_declarator, 1, 0, 0), - [10492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__abstract_declarator, 1, 0, 0), - [10494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [10496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6653), - [10498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7242), - [10500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 2, 0, 0), - [10502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 2, 0, 0), - [10504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 2, 0, 24), - [10506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_function_declarator, 2, 0, 24), - [10508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6422), - [10510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 3, 0, 0), - [10512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_parenthesized_declarator, 3, 0, 0), - [10514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 4, 0, 0), - [10516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_parenthesized_declarator, 4, 0, 0), - [10518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, 0, 184), - [10520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 4, 0, 184), - [10522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, 0, 123), - [10524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 4, 0, 123), - [10526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, 0, 26), - [10528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 4, 0, 26), - [10530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, 0, 134), - [10532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 3, 0, 134), - [10534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, 0, 0), - [10536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 3, 0, 0), - [10538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6157), - [10540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, 0, 26), - [10542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 3, 0, 26), - [10544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [10546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [10548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 7, 0, 23), - [10550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 7, 0, 23), - [10552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [10554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5849), - [10556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7532), - [10558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [10560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_virtual_specifier, 1, 0, 0), - [10562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_virtual_specifier, 1, 0, 0), - [10564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [10566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [10568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 5, 0, 179), - [10570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 5, 0, 179), - [10572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [10574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6855), - [10576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7379), - [10578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trailing_return_type, 2, 0, 0), - [10580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trailing_return_type, 2, 0, 0), - [10582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 2, 0, 23), - [10584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), - [10586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5482), - [10588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 1, 0, 0), - [10590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6148), - [10592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 3, 0, 59), - [10594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5765), - [10596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6485), - [10598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 1, 0, 23), - [10600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 2, 0, 59), - [10602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6414), - [10604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [10606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5439), - [10608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5440), - [10610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6181), - [10612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6859), - [10614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), - [10616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 23), SHIFT(5999), - [10619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 23), SHIFT(5480), - [10622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6185), - [10624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6272), - [10626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6233), - [10628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 23), SHIFT(5999), - [10631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 23), SHIFT(5480), - [10634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [10636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_postfix_repeat1, 2, 0, 0), SHIFT_REPEAT(5999), - [10639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_declarator, 2, 0, 0), - [10641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_declarator, 2, 0, 0), - [10643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__class_declaration_repeat1, 2, 0, 0), - [10645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__class_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(8306), - [10648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_declaration_repeat1, 2, 0, 0), - [10650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__class_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(8509), - [10653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5970), - [10655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7082), - [10657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7912), - [10659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, 0, 5), - [10661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5959), - [10663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6454), - [10665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7445), - [10667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(5970), - [10670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(7082), - [10673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(7912), - [10676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7750), - [10678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 2, 0, 0), - [10680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6394), - [10682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 1, 0, 0), - [10684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 2, 1, 24), - [10686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 2, 1, 24), - [10688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2810), - [10690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3080), - [10692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2438), - [10694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2609), - [10696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, 0, 5), - [10698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_field_declaration_repeat1, 2, 0, 5), - [10700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [10702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4200), - [10704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4389), - [10706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, 0, 123), - [10708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, 0, 123), - [10710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, 0, 26), - [10712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, 0, 26), - [10714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3167), - [10716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(7966), - [10719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6350), - [10721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6852), - [10723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), - [10725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2288), - [10727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3328), - [10729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), - [10731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, 0, 38), - [10733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), - [10735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_descriptor, 2, 0, 38), - [10737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3193), - [10739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3385), - [10741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, 1, 5), - [10743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 2, 1, 5), - [10745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_reference_declarator, 2, 0, 0), - [10747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_reference_declarator, 2, 0, 0), - [10749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, 0, 83), - [10751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_descriptor, 3, 0, 83), - [10753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, 0, 64), - [10755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_descriptor, 3, 0, 64), - [10757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, 1, 41), - [10759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 3, 1, 41), - [10761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 4, 0, 136), - [10763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_descriptor, 4, 0, 136), - [10765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 4, 1, 87), - [10767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 4, 1, 87), - [10769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_structured_binding_declarator, 4, -1, 0), - [10771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_structured_binding_declarator, 4, -1, 0), - [10773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4386), - [10775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2341), - [10777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5465), - [10779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5464), - [10781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2473), - [10783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2599), - [10785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), - [10787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2346), - [10789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4026), - [10791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4198), - [10793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 4, -10, 0), - [10795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 4, -10, 0), - [10797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 23), SHIFT(5459), - [10800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3818), - [10802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_structured_binding_declarator, 3, -1, 0), - [10804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_structured_binding_declarator, 3, -1, 0), - [10806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 3, 0, 26), - [10808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 3, 0, 26), - [10810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 23), SHIFT(5472), - [10813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 5, 0, 179), - [10815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 5, 0, 179), - [10817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 23), SHIFT(5472), - [10820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4280), - [10822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 3, -10, 0), - [10824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 3, -10, 0), - [10826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2610), - [10828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2714), - [10830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2375), - [10832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570), - [10834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4853), - [10836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5015), - [10838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 5, 1, 177), - [10840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_declarator, 5, 1, 177), - [10842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2347), - [10844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6302), - [10846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6892), - [10848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 2, 1, 5), - [10850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_field_declarator, 2, 1, 5), - [10852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_field_declarator, 2, 1, 0), - [10854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_field_declarator, 2, 1, 0), - [10856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 23), SHIFT(5469), - [10859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3297), - [10861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6285), - [10863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6882), - [10865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_declarator, 2, 1, 0), - [10867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_declarator, 2, 1, 0), - [10869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 3, 1, 41), - [10871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_field_declarator, 3, 1, 41), - [10873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 4, 1, 87), - [10875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_declarator, 4, 1, 87), - [10877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6277), - [10879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6926), - [10881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 5, 1, 177), - [10883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_field_declarator, 5, 1, 177), - [10885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 2, 1, 5), - [10887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_declarator, 2, 1, 5), - [10889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6659), - [10891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 3, 0, 81), - [10893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6891), - [10895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5657), - [10897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8487), - [10899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 4, 1, 87), - [10901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_field_declarator, 4, 1, 87), - [10903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 3, 1, 41), - [10905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_declarator, 3, 1, 41), - [10907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6809), - [10909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6824), - [10911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 2, 0, 10), - [10913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6364), - [10915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [10917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6339), - [10919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7428), - [10921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6955), - [10923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6387), - [10925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6396), - [10927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6353), - [10929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6374), - [10931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 23), SHIFT(5469), - [10934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6355), - [10936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6354), - [10938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6366), - [10940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, 0, 68), - [10942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [10944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5426), - [10946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), - [10948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [10950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7409), - [10952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7066), - [10954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6371), - [10956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), - [10958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [10960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7455), - [10962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7033), - [10964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), - [10966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [10968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7447), - [10970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6991), - [10972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6375), - [10974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [10976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7363), - [10978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7006), - [10980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [10982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6379), - [10984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5454), - [10986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5455), - [10988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), - [10990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [10992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7268), - [10994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6954), - [10996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5421), - [10998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6359), - [11000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6352), - [11002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [11004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6376), - [11006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6393), - [11008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [11010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6382), - [11012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6383), - [11014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6400), - [11016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [11018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 23), SHIFT(5459), - [11021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5441), - [11023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5445), - [11025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6386), - [11027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6390), - [11029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [11031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7425), - [11033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7065), - [11035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [11037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [11039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [11041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2313), - [11043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7317), - [11045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5768), - [11047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8069), - [11049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), - [11051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), - [11053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, 0, 103), - [11055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [11057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, 0, 103), - [11059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3260), - [11061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [11063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), - [11065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4693), - [11067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_field_declarator, 2, 0, 0), - [11069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_field_declarator, 2, 0, 0), - [11071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, 0, 0), - [11073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, 0, 0), - [11075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4946), - [11077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), - [11079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 23), SHIFT(5443), - [11082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6757), - [11084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6322), - [11086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4903), - [11088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), - [11090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6877), - [11092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6862), - [11094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), - [11096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), - [11098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4662), - [11100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6724), - [11102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), - [11104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), - [11106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3994), - [11108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), - [11110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), - [11112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [11114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), - [11116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [11118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), - [11120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3174), - [11122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 4, -10, 0), - [11124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 4, -10, 0), - [11126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 3, -10, 0), - [11128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 3, -10, 0), - [11130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, 0, 123), - [11132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, 0, 123), - [11134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_field_declarator, 2, 1, 24), - [11136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_field_declarator, 2, 1, 24), - [11138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 3, 0, 26), - [11140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 3, 0, 26), - [11142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, 0, 26), - [11144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, 0, 26), - [11146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_lambda_declarator_repeat1, 2, 0, 0), - [11148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_lambda_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(6554), - [11151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 5, 0, 179), - [11153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 5, 0, 179), - [11155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6572), - [11157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6644), - [11159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6591), - [11161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6037), - [11163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7019), - [11165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6595), - [11167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 4, 0, 81), - [11169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7078), - [11171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5782), - [11173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8652), - [11175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 4, 0, 81), - [11177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7091), - [11179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5784), - [11181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8687), - [11183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6992), - [11185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6581), - [11187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6708), - [11189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6596), - [11191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7077), - [11193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6597), - [11195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 3, 0, 81), - [11197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5803), - [11199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 1, 0, 26), - [11201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_declarators, 1, 0, 26), - [11203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6709), - [11205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6600), - [11207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6832), - [11209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8681), - [11211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7005), - [11213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6601), - [11215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7317), - [11218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5661), - [11221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8726), - [11224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7666), - [11227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), - [11229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7103), - [11231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6613), - [11233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6923), - [11235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7662), - [11237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7364), - [11239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6685), - [11241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6617), - [11243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7133), - [11245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6605), - [11247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7261), - [11249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 23), SHIFT(5443), - [11252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 2, 0, 10), - [11254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6692), - [11256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6583), - [11258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5476), - [11260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5481), - [11262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6840), - [11264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6527), - [11266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 6, 0, 0), - [11268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6795), - [11270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8389), - [11272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 3, 0, 0), - [11274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7110), - [11276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6585), - [11278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 5, 0, 0), - [11280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6549), - [11282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 4, 0, 0), - [11284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6780), - [11286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6694), - [11288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6584), - [11290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 3, 0, 10), - [11292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6657), - [11294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6582), - [11296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6557), - [11298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 3, 0, 10), - [11300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__scope_resolution, 1, 0, 0), - [11302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__scope_resolution, 1, 0, 0), - [11304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), - [11306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4990), - [11308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), - [11310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5001), - [11312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), - [11314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5025), - [11316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2613), - [11318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6589), - [11320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [11322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), - [11324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4988), - [11326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_specifier, 1, 0, 0), - [11328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), - [11330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), - [11332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5010), - [11334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 1, 0, 0), - [11336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8261), - [11338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), - [11340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4978), - [11342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 5), - [11344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 5), - [11346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), - [11348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4979), - [11350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 1, 0, 0), - [11352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8017), - [11354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), - [11356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), - [11358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5014), - [11360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), - [11362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4983), - [11364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), - [11366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), - [11368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7484), - [11370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7125), - [11372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8368), - [11374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2744), - [11376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7764), - [11378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4444), - [11380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7876), - [11382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), - [11384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7815), - [11386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7004), - [11388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7032), - [11390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7001), - [11392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6884), - [11394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8583), - [11396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4847), - [11398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7629), - [11400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7282), - [11402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8460), - [11404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2601), - [11406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7861), - [11408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7273), - [11410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4046), - [11412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7704), - [11414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4742), - [11416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7823), - [11418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3986), - [11420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7105), - [11422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6931), - [11424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7042), - [11426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2953), - [11428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7100), - [11430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7207), - [11432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7449), - [11434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8174), - [11436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2947), - [11438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7829), - [11440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7014), - [11442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3150), - [11444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7657), - [11446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7027), - [11448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), - [11450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7651), - [11452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7012), - [11454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5809), - [11456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7561), - [11458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2631), - [11460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7637), - [11462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3708), - [11464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7550), - [11466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7141), - [11468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7132), - [11470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4229), - [11472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7752), - [11474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2559), - [11476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7762), - [11478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3456), - [11480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7592), - [11482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7492), - [11484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8397), - [11486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__scope_resolution, 2, 0, 31), - [11488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__scope_resolution, 2, 0, 31), - [11490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [11492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [11494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), - [11496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__scope_resolution, 2, 0, 15), - [11498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__scope_resolution, 2, 0, 15), - [11500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [11502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), - [11504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 1, 0, 6), - [11506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 1, 0, 6), - [11508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [11510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [11512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6378), - [11514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 3, 0, 23), - [11516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 4, 0, 23), - [11518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 4, 0, 59), - [11520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [11522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6075), - [11524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast, 3, 0, 60), - [11526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [11528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7826), - [11530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__lambda_capture_identifier, 1, 0, 0), SHIFT(6061), - [11533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [11535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [11537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), - [11539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6035), - [11541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [11543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [11545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [11547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), - [11549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [11551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), - [11553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [11555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7317), - [11558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2, 0, 0), - [11560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2, 0, 0), - [11562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2, 0, 0), SHIFT_REPEAT(6659), - [11565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2, 0, 0), - [11567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2, 0, 0), - [11569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), - [11571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), - [11573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), - [11575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), - [11577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6365), - [11579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [11581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [11583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 5, 0, 59), - [11585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5980), - [11587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, 0, 58), - [11589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), - [11591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6154), - [11593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6889), - [11595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [11597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2, 0, 0), - [11599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(6889), - [11602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6165), - [11604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [11606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [11608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8165), - [11610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [11612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7306), - [11614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 1, 0, 0), - [11616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6831), - [11618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 1, 0, 0), - [11620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), - [11622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5978), - [11624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6121), - [11626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6109), - [11628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6111), - [11630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), - [11632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6128), - [11634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6129), - [11636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6131), - [11638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6093), - [11640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6134), - [11642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6136), - [11644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6138), - [11646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2, 0, 0), SHIFT_REPEAT(1364), - [11649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2, 0, 0), - [11651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2, 0, 0), SHIFT_REPEAT(8165), - [11654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 3, 0, 68), - [11656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7176), - [11658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7250), - [11660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), - [11662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), - [11664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6151), - [11666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7450), - [11668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [11670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), - [11672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6126), - [11674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 132), - [11676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 132), - [11678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [11680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 3, 0, 10), - [11682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 3, 0, 10), - [11684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [11686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), - [11688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 3, 0, 0), - [11690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [11692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [11694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [11696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [11698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 4, 0, 0), - [11700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), - [11702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [11704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [11706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [11708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 81), - [11710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 81), - [11712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), - [11714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [11716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [11718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [11720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [11722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [11724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [11726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [11728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [11730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), - [11732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [11734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [11736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), - [11738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [11740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [11742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), - [11744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), - [11746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [11748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [11750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [11752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [11754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [11756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 6, 0, 183), - [11758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 6, 0, 183), - [11760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), - [11762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [11764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [11766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [11768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 4, 0, 81), - [11770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 4, 0, 81), - [11772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [11774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [11776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [11778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 82), - [11780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 82), - [11782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), - [11784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 10), - [11786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 10), - [11788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [11790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [11792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [11794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [11796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [11798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [11800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 5, 0, 133), - [11802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 5, 0, 133), - [11804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [11806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [11808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), - [11810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [11812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [11814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [11816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [11818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [11820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7259), - [11822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7639), - [11824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7736), - [11826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [11828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [11830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), - [11832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), - [11834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_access_specifier, 1, 0, 0), - [11836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_specifier, 1, 0, 0), - [11838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7801), - [11840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_name, 2, 0, 0), - [11842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8689), - [11844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7642), - [11846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, 0, 191), SHIFT_REPEAT(5947), - [11849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, 0, 191), - [11851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_field_declaration_repeat1, 2, 0, 191), - [11853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 121), SHIFT_REPEAT(5803), - [11856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 121), - [11858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 121), - [11860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [11862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 6), - [11864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8603), - [11866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6850), - [11868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5818), - [11870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [11872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_name_repeat1, 2, 0, 0), - [11874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_name_repeat1, 2, 0, 0), SHIFT_REPEAT(8689), - [11877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7628), - [11879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7689), - [11881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5433), - [11883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7294), - [11885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5432), - [11887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7658), - [11889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [11891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [11893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4099), - [11895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_qualifier, 1, 0, 0), - [11897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), - [11899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list, 1, 0, 0), - [11901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7593), - [11903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), - [11905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [11907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), - [11909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [11911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 2, 0, 90), - [11913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_declarators, 2, 0, 90), - [11915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [11917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), - [11919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [11921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [11923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [11925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6015), - [11927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [11929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [11931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [11933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [11935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [11937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [11939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), - [11941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4105), - [11943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 4, 0, 142), - [11945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8489), - [11947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6071), - [11949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [11951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter_declaration, 4, 0, 202), - [11953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [11955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [11957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4068), - [11959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [11961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), - [11963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_name, 1, 0, 0), - [11965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [11967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter_declaration, 3, 0, 167), - [11969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [11971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5819), - [11973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [11975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [11977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7741), - [11979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7618), - [11981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7590), - [11983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [11985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6674), - [11987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 3, 0, 199), - [11989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6170), - [11991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 2, 0, 212), - [11993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2392), - [11995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7039), - [11997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7039), - [11999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [12001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), - [12003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_operator_cast_identifier, 2, 0, 33), - [12005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), - [12007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3551), - [12009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6945), - [12011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6945), - [12013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3207), - [12015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7020), - [12017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3577), - [12019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3933), - [12021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6993), - [12023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6993), - [12025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3213), - [12027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2345), - [12029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6958), - [12031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6958), - [12033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2424), - [12035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2640), - [12037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [12039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7378), - [12041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8139), - [12043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5674), - [12045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2339), - [12047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [12049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8676), - [12051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3291), - [12053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [12055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, 0, 223), SHIFT_REPEAT(6170), - [12058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, 0, 223), - [12060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4205), - [12062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7807), - [12064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6259), - [12066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2644), - [12068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), - [12070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8324), - [12072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [12074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [12076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3408), - [12078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [12080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7938), - [12082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6923), - [12084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [12086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8345), - [12088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), - [12090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), - [12092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), - [12094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7064), - [12096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7064), - [12098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3764), - [12100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2382), - [12102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4362), - [12104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), - [12106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6978), - [12108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6978), - [12110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7302), - [12112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5886), - [12114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 3, 0, 0), - [12116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [12118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3953), - [12120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [12122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4243), - [12124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2446), - [12126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7015), - [12128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7015), - [12130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__namespace_specifier, 1, 0, 19), - [12132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6875), - [12134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2653), - [12136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6967), - [12138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6967), - [12140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [12142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [12144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3871), - [12146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7053), - [12148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7053), - [12150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), - [12152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7315), - [12154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7538), - [12156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 2, 0, 0), - [12158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [12160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [12162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2447), - [12164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5828), - [12166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8465), - [12168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [12170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 2, 0, 0), - [12172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(7020), - [12175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [12177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [12179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7759), - [12181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7718), - [12183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6860), - [12185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6675), - [12187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 2, 0, 162), - [12189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), - [12191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 3, 0, 5), - [12193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_field_declaration_repeat1, 3, 0, 5), - [12195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), - [12197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), - [12199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7579), - [12201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7774), - [12203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6430), - [12205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), - [12207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6987), - [12209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6987), - [12211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), - [12213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(7039), - [12216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(7039), - [12219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3658), - [12221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3340), - [12223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6960), - [12225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6960), - [12227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6851), - [12229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7426), - [12231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_declarator, 1, 0, 0), - [12233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3774), - [12235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 94), - [12237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2562), - [12239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7130), - [12241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7130), - [12243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 3, 0, 206), - [12245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_field_declaration_repeat1, 3, 0, 206), - [12247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2886), - [12249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3874), - [12251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), - [12253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), - [12255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), - [12257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8725), - [12259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list, 2, 0, 0), - [12261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list_no_comma, 2, 0, 0), - [12263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3749), - [12265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7089), - [12267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7089), - [12269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2769), - [12271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7124), - [12273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7124), - [12275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), - [12277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2282), - [12279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6499), - [12281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7546), - [12283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 4, 0, 0), - [12285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [12287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), - [12289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2520), - [12291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6950), - [12293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6950), - [12295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3474), - [12297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3729), - [12299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [12301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), - [12303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [12305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8384), - [12307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), - [12309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6250), - [12311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6966), - [12313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6966), - [12315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), - [12317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7713), - [12319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7716), - [12321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2855), - [12323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [12325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7945), - [12327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3709), - [12329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list_no_comma, 1, 0, 0), - [12331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, 0, 211), SHIFT_REPEAT(6674), - [12334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, 0, 211), - [12336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 2, 0, 162), - [12338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4351), - [12340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3699), - [12342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), - [12344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [12346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2639), - [12348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6952), - [12350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6952), - [12352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [12354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 6, 0, 204), - [12356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [12358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6434), - [12360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 3, 0, 219), - [12362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2391), - [12364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6937), - [12366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6937), - [12368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7677), - [12370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7602), - [12372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), - [12374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, 0, 211), SHIFT_REPEAT(6675), - [12377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, 0, 211), - [12379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3464), - [12381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7074), - [12383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7074), - [12385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), - [12387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), - [12389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 3, 0, 199), - [12391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7165), - [12393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 5, 0, 0), - [12395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7720), - [12397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7598), - [12399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2785), - [12401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8177), - [12403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7018), - [12405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7018), - [12407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6419), - [12409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [12411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2563), - [12413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785), - [12415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6876), - [12417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [12419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4749), - [12421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7559), - [12423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [12425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), - [12427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), - [12429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7775), - [12431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 2, 0, 103), - [12433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 4, 0, 218), - [12435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6318), - [12437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3, 0, 0), - [12439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7782), - [12441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 2, 0, 0), - [12443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, 0, 162), - [12445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), - [12447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5811), - [12449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 6, 0, 0), - [12451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [12453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8454), - [12455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 2, 0, 220), - [12457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4838), - [12459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6563), - [12461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [12463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [12465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [12467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [12469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7828), - [12471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 4, 0, 0), - [12473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), - [12475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [12477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [12479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [12481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [12483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), - [12485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7738), - [12487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7582), - [12489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), - [12491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), - [12493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6438), - [12495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6472), - [12497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6490), - [12499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6492), - [12501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4146), - [12503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), - [12505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [12507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), - [12509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7568), - [12511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), - [12513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), - [12515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), - [12517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [12519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), - [12521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5620), - [12523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4793), - [12525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6558), - [12527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4794), - [12529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [12531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [12533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [12535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), - [12537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [12539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [12541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [12543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [12545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [12547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), - [12549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3828), - [12551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6888), - [12553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), - [12555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), - [12557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), - [12559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), - [12561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), - [12563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), - [12565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), - [12567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), - [12569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), - [12571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4807), - [12573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5977), - [12575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4808), - [12577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), - [12579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), - [12581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), - [12583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), - [12585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), - [12587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5973), - [12589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6498), - [12591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), - [12593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4809), - [12595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7668), - [12597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4810), - [12599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8370), - [12601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6874), - [12603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4841), - [12605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4352), - [12607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4353), - [12609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4355), - [12611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4357), - [12613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4814), - [12615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7731), - [12617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7822), - [12619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), - [12621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [12623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), - [12625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3666), - [12627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3672), - [12629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), - [12631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), - [12633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6767), - [12635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3787), - [12638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2, 0, 0), - [12640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), - [12642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), - [12644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6841), - [12646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), - [12648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 4, 0, 218), - [12650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6867), - [12652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8120), - [12654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [12656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, 0, 212), - [12658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [12660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7860), - [12662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7017), - [12664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3802), - [12666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [12668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 3, 0, 224), - [12670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6010), - [12672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [12674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [12676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [12678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [12680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [12682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6506), - [12684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [12686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), - [12688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8180), - [12690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8360), - [12692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7996), - [12694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7670), - [12696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), - [12698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [12700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5900), - [12702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, 0, 226), SHIFT_REPEAT(8454), - [12705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, 0, 226), - [12707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 7, 0, 227), - [12709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 7, 0, 227), - [12711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7739), - [12713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1037), - [12716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), - [12718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6491), - [12720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [12722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5593), - [12724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [12726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [12728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_designator, 3, 0, 0), - [12730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), - [12732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), - [12734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [12736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1000), - [12739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), - [12741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), - [12743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7313), - [12745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [12747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [12749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5928), - [12751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_namespace_specifier, 2, 0, 0), - [12753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6880), - [12755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [12757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [12759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), - [12761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [12763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3815), - [12765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), - [12767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [12769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [12771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [12773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7895), - [12775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 2, 0, 0), - [12777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), - [12779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7715), - [12781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [12783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(5886), - [12786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), - [12788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), - [12790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), - [12792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [12794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__namespace_specifier, 2, 0, 61), - [12796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [12798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [12800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [12802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3847), - [12804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3851), - [12806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), - [12808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), - [12810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), - [12812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [12814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [12816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [12818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), - [12820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), - [12822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), - [12824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), - [12826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3800), - [12828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), - [12830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [12832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), - [12834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), - [12836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [12838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7722), - [12840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_type_parameter_declaration, 2, 0, 0), - [12842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5705), - [12844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_throw_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(3723), - [12847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_throw_specifier_repeat1, 2, 0, 0), - [12849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, 0, 162), - [12851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), - [12853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), - [12855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), - [12857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), - [12859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), - [12861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7661), - [12863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6948), - [12865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), - [12867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8126), - [12869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), - [12871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8707), - [12873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8708), - [12875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8710), - [12877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [12879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [12881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), - [12883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter_declaration, 2, 0, 68), - [12885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7756), - [12887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), - [12889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6996), - [12891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [12893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 2, 0, 70), - [12895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_declaration, 3, 0, 152), - [12897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), - [12899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [12901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [12903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [12905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7278), - [12907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7636), - [12909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7029), - [12911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [12913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [12915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 5, 0, 23), - [12917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [12919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), - [12921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), - [12923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), - [12925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [12927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7148), - [12929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_namespace_specifier, 3, 0, 0), - [12931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), - [12933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [12935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(7559), - [12938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2, 0, 0), - [12940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [12942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), - [12944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), - [12946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4178), - [12948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), - [12950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7707), - [12952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7051), - [12954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), - [12956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7771), - [12958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7855), - [12960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), - [12962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2, 3, 0), - [12964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8162), - [12966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8164), - [12968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8184), - [12970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), - [12972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(443), - [12975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2, 0, 0), - [12977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [12979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4827), - [12981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [12983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7360), - [12985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7361), - [12987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [12989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [12991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), - [12993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [12995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), - [12997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6957), - [12999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8163), - [13001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8167), - [13003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8168), - [13005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_declarator, 2, 0, 0), - [13007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 6, 0, 59), - [13009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8057), - [13011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8059), - [13013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8064), - [13015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7468), - [13017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7475), - [13019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7495), - [13021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7496), - [13023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8196), - [13025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_reference_declarator, 2, 0, 0), - [13027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7519), - [13029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), - [13031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2, 0, 0), - [13033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), - [13035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6061), - [13037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_structured_binding_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(8451), - [13040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_structured_binding_declarator_repeat1, 2, 0, 0), - [13042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7134), - [13044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1663), - [13047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_parameter_list_repeat1, 2, 0, 0), - [13049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6500), - [13051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_lambda_capture_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(5973), - [13054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_lambda_capture_specifier_repeat1, 2, 0, 0), - [13056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8023), - [13058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8025), - [13060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8026), - [13062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [13064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requires_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1780), - [13067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_requires_parameter_list_repeat1, 2, 0, 0), - [13069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6983), - [13071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1708), - [13074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), - [13076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8399), - [13078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8401), - [13080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8403), - [13082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), - [13084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6318), - [13087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), - [13089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6972), - [13091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6988), - [13093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6963), - [13095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subscript_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1067), - [13098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6944), - [13100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7087), - [13102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [13104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5494), - [13106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6843), - [13108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7712), - [13110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7838), - [13112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_designator, 2, 0, 98), - [13114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_range_designator, 5, 0, 205), - [13116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [13118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), - [13120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [13122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [13124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), - [13126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [13128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5783), - [13131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [13133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [13135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [13137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [13139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [13141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7784), - [13143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2, 0, 0), SHIFT_REPEAT(7731), - [13146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2, 0, 0), - [13148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7648), - [13150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 5, 0, 0), - [13152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), - [13154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3813), - [13156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), - [13158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [13160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), - [13162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [13164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [13166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [13168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [13170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), - [13172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 7, 0, 0), - [13174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), - [13176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), - [13178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), - [13180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), - [13182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), - [13184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [13186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, 0, 121), SHIFT_REPEAT(5228), - [13189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, 0, 121), - [13191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [13193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), - [13195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [13197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [13199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), - [13201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [13203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5893), - [13205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), - [13207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4187), - [13209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), - [13211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [13213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), - [13215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), - [13217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [13219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [13221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), - [13223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6661), - [13225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [13227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7650), - [13229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 3, 0, 0), - [13231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), - [13233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), - [13235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), - [13237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), - [13239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), - [13241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [13243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), - [13245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7603), - [13247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_partition, 2, 0, 0), - [13249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 4, 0, 94), - [13251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6810), - [13253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), - [13255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [13257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [13259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [13261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8099), - [13263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [13265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_pack_expansion, 2, 0, 28), - [13267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5806), - [13269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7959), - [13271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7687), - [13273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [13275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), - [13277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), - [13279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), - [13281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [13283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7909), - [13285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [13287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 2, 0, 0), - [13289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 2, 0, 0), - [13291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7638), - [13293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [13295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [13297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [13299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8506), - [13301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 6, 0, 0), - [13303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7630), - [13305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7799), - [13307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [13309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8660), - [13311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7152), - [13313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 1, 0, 0), - [13315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4922), - [13317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [13319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8042), - [13321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [13323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8359), - [13325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [13327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8206), - [13329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [13331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [13333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5968), - [13335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7697), - [13337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2, 2, 0), - [13339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), - [13341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_type_parameter_declaration, 3, 0, 166), - [13343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8462), - [13345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8149), - [13347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_template_parameter_declaration, 3, 0, 59), - [13349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7819), - [13351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 3, 0, 0), - [13353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 3, 0, 0), - [13355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 7, 0, 204), - [13357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7663), - [13359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), - [13361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8216), - [13363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 3, 0, 175), - [13365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, 0, 220), - [13367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7589), - [13369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7576), - [13371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), - [13373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8380), - [13375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 103), - [13377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [13379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8244), - [13381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 0), - [13383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [13385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8405), - [13387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), - [13389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8423), - [13391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [13393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7679), - [13395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5697), - [13397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8749), - [13399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 4, 0, 0), - [13401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 4, 0, 0), - [13403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7887), - [13405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_parameter_pack_expansion, 2, 0, 28), - [13407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7877), - [13409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [13411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8622), - [13413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4584), - [13415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [13417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 5, 0, 142), - [13419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [13421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7820), - [13423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8340), - [13425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8802), - [13427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7873), - [13429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [13431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8032), - [13433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), - [13435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8549), - [13437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), - [13439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8526), - [13441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8805), - [13443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8552), - [13445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8808), - [13447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8572), - [13449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8811), - [13451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8591), - [13453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8814), - [13455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 6), - [13457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8608), - [13459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8816), - [13461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8618), - [13463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8817), - [13465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8627), - [13467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8818), - [13469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8633), - [13471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8819), - [13473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8636), - [13475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8820), - [13477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8639), - [13479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8821), - [13481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8641), - [13483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8822), - [13485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8643), - [13487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8823), - [13489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8645), - [13491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8824), - [13493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8647), - [13495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8825), - [13497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8649), - [13499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8826), - [13501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [13503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8290), - [13505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [13507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [13509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [13511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3827), - [13513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), - [13515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), - [13517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [13519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [13521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), - [13523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [13525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [13527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), - [13529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8503), - [13531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [13533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [13535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [13537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7928), - [13539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7933), - [13541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), - [13543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [13545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8136), - [13547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8542), - [13549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [13551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [13553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), - [13555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), - [13557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), - [13559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), - [13561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [13563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [13565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), - [13567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), - [13569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), - [13571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [13573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6914), - [13575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3859), - [13577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [13579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4029), - [13581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [13583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6244), - [13585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [13587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), - [13589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), - [13591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), - [13593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), - [13595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), - [13597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), - [13599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [13601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [13603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [13605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), - [13607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7057), - [13609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [13611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), - [13613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4806), - [13615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), - [13617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3821), - [13619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [13621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8537), - [13623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [13625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8657), - [13627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), - [13629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8316), - [13631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), - [13633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [13635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [13637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unary_right_fold, 3, 0, 55), - [13639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [13641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [13643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7994), - [13645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [13647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [13649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [13651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [13653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), - [13655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [13657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), - [13659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [13661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8249), - [13663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5951), - [13665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6269), - [13667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [13669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4157), - [13671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), - [13673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [13675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [13677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [13679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8185), - [13681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [13683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [13685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [13687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [13689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), - [13691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8481), - [13693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4106), - [13695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), - [13697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [13699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [13701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4017), - [13703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8018), - [13705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6156), - [13707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [13709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [13711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8008), - [13713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [13715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), - [13717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8086), - [13719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8092), - [13721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), - [13723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), - [13725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [13727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8157), - [13729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [13731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), - [13733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [13735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8182), - [13737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [13739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), - [13741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), - [13743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), - [13745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7080), - [13747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [13749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), - [13751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4812), - [13753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [13755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 6, 0, 23), - [13757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7951), - [13759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), - [13761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [13763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [13765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [13767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7751), - [13769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), - [13771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [13773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [13775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4101), - [13777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [13779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [13781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), - [13783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8598), - [13785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8068), - [13787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), - [13789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8559), - [13791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), - [13793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_parameter_list, 3, 0, 0), - [13795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), - [13797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3857), - [13799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8176), - [13801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [13803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [13805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [13807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), - [13809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8201), - [13811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8010), - [13813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7510), - [13815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [13817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [13819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7520), - [13821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [13823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4815), - [13825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [13827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), - [13829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8265), - [13831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), - [13833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8395), - [13835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), - [13837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8314), - [13839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8321), - [13841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7088), - [13843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 7, 0, 59), - [13845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), - [13847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [13849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 5, 0, 183), - [13851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), - [13853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), - [13855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [13857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7477), - [13859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [13861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [13863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [13865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5648), - [13867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 6, 0, 183), - [13869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [13871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8579), - [13873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8113), - [13875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8029), - [13877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3841), - [13879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 5, 0, 183), - [13881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [13883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), - [13885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8722), - [13887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8080), - [13889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), - [13891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4792), - [13893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8446), - [13895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8090), - [13897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 5, 0, 0), - [13899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [13901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8424), - [13903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [13905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_parameter_list, 4, 0, 0), - [13907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8122), - [13909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), - [13911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 4, 0, 132), - [13913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8131), - [13915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8133), - [13917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [13919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6968), - [13921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [13923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), - [13925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [13927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 4, 0, 132), - [13929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), - [13931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), - [13933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [13935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), - [13937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [13939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [13941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [13943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), - [13945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [13947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [13949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4132), - [13951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [13953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8406), - [13955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), - [13957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 5, 0, 183), - [13959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [13961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), - [13963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [13965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), - [13967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8458), - [13969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [13971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), - [13973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [13975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), - [13977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [13979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [13981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 4, 0, 133), - [13983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [13985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8009), - [13987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8494), - [13989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8495), - [13991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [13993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8097), - [13995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [13997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [13999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 4, 0, 133), - [14001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8702), - [14003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8480), - [14005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 3, 0, 82), - [14007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8742), - [14009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), - [14011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8815), - [14013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [14015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [14017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8492), - [14019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [14021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [14023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7987), - [14025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [14027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8046), - [14029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [14031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8353), - [14033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), - [14035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8803), - [14037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7990), - [14039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8145), - [14041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [14043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [14045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8129), - [14047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8158), - [14049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6959), - [14051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [14053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8402), - [14055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8420), - [14057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8785), - [14059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8795), - [14061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7991), - [14063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7992), - [14065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8060), - [14067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8063), - [14069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8128), - [14071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8134), - [14073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8210), - [14075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8211), - [14077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [14079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [14081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7840), - [14083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [14085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8486), - [14087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [14089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [14091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), - [14093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [14095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [14097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [14099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [14101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [14103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), - [14105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), - [14107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [14109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), - [14111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [14113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3922), - [14115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [14117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), - [14119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7566), - [14121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8193), - [14123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), - [14125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [14127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [14129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [14131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8529), - [14133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [14135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [14137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [14139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), - [14141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8619), - [14143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [14145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), - [14147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [14149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [14151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 5, 0, 132), - [14153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8181), - [14155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [14157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4935), - [14159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6973), - [14161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [14163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8253), - [14165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [14167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [14169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 3, 0, 82), - [14171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8187), - [14173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [14175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), - [14177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [14179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8491), - [14181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7439), - [14183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), - [14185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [14187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [14189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8443), - [14191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7131), - [14193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), - [14195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), - [14197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4628), - [14199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5930), - [14201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [14203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [14205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [14207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6817), - [14209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), - [14211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 5, 0, 81), - [14213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [14215] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [14217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), - [14219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [14221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8089), - [14223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4251), - [14225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), - [14227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), - [14229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8091), - [14231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), - [14233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), - [14235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [14237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [14239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8382), - [14241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [14243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4252), - [14245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [14247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), - [14249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4256), - [14251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), - [14253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7611), - [14255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), - [14257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), - [14259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), - [14261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), - [14263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, 0, 132), - [14265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), - [14267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), - [14269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 4, 0, 133), - [14271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [14273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [14275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8656), - [14277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), - [14279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), - [14281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8170), - [14283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [14285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [14287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [14289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), - [14291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), - [14293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8673), - [14295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), - [14297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [14299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7691), - [14301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7735), - [14303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4921), - [14305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [14307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7761), - [14309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [14311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), - [14313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), - [14315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [14317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8400), - [14319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [14321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [14323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), - [14325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [14327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), - [14329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [14331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 3, 0, 82), - [14333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [14335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_based_modifier, 2, 0, 0), - [14337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [14339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), - [14341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [14343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6836), - [14345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), - [14347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [14349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), - [14351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [14353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8709), - [14355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6162), - [14357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7104), - [14359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [14361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8355), - [14363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), - [14365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3929), - [14367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), - [14369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), - [14371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6953), - [14373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [14375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_parameter_list, 2, 0, 0), - [14377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), - [14379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6829), - [14381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [14383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3096), - [14385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7659), - [14387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [14389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [14391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), - [14393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [14395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 5, 0, 183), - [14397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [14399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [14401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [14403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, 0, 132), - [14405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7669), - [14407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8793), - [14409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6776), - [14411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8352), - [14413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [14415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7924), - [14417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), - [14419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 4, 0, 133), - [14421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8416), - [14423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [14425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7944), - [14427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7955), - [14429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [14431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [14433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [14435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7705), - [14437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [14439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), - [14441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5870), - [14443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [14445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7714), - [14447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8809), - [14449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8055), - [14451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), - [14453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [14455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [14457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8061), - [14459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5609), - [14461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8073), - [14463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5610), - [14465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5611), - [14467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8079), - [14469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [14471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8081), - [14473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7732), - [14475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [14477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), - [14479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [14481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8538), - [14483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [14485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7737), - [14487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8130), - [14489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), - [14491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [14493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8135), - [14495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8613), - [14497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8146), - [14499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [14501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), - [14503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8152), - [14505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [14507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [14509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7749), - [14511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [14513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), - [14515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7323), - [14517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [14519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8183), - [14521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [14523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), - [14525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [14527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8188), - [14529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), - [14531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8199), - [14533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [14535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8205), - [14537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [14539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7979), - [14541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7765), - [14543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [14545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [14547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7048), - [14549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), - [14551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [14553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [14555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8237), - [14557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), - [14559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), - [14561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8251), - [14563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 4, 0, 82), - [14565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7781), - [14567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [14569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [14571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [14573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8263), - [14575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [14577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [14579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8266), - [14581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [14583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7786), - [14585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [14587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [14589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [14591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8275), - [14593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), - [14595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8277), - [14597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7787), - [14599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [14601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [14603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8283), - [14605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8284), - [14607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [14609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8287), - [14611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8288), - [14613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [14615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8291), - [14617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8292), - [14619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8293), - [14621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8294), - [14623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8295), - [14625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8296), - [14627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8297), - [14629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8298), - [14631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8299), - [14633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8300), - [14635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8301), - [14637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8302), - [14639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), - [14641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6429), - [14643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [14645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [14647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8339), - [14649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [14651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6819), - [14653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [14655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [14657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6838), - [14659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), - [14661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), - [14663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4834), - [14665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6942), - [14667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8378), - [14669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), - [14671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [14673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [14675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8547), - [14677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [14679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [14681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 4, 0, 10), - [14683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), - [14685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5884), - [14687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(7995), - [14690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [14692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6480), - [14694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8828), - [14696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6941), - [14698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [14700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), - [14702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6976), - [14704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8024), - [14706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), - [14708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [14710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), - [14712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3863), - [14714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), - [14716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8692), - [14718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), - [14720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [14722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [14724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), - [14726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [14728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), - [14730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), - [14732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), - [14734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [14736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), - [14738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8381), - [14740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), - [14742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), - [14744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6511), - [14746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [14748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [14750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8721), - [14752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [14754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [14756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4083), - [14758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [14760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [14762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [14764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8525), - [14766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), - [14768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), - [14770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7037), - [14772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8535), - [14774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7970), - [14776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5887), - [14778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8169), - [14780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [14782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [14784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8551), - [14786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [14788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), - [14790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7047), - [14792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8557), - [14794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [14796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [14798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [14800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [14802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8571), - [14804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [14806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7055), - [14808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8577), - [14810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), - [14812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [14814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8590), - [14816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [14818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [14820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7063), - [14822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8596), - [14824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [14826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8607), - [14828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [14830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7072), - [14832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8612), - [14834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), - [14836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7076), - [14838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8621), - [14840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), - [14842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8629), - [14844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), - [14846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8634), - [14848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), - [14850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8637), - [14852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [14854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8640), - [14856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [14858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8642), - [14860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8125), - [14862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8644), - [14864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), - [14866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8646), - [14868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4267), - [14870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8648), - [14872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8650), - [14874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), - [14876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8672), - [14878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8735), - [14880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), - [14882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8745), - [14884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), - [14886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), - [14888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8756), - [14890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), - [14892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), - [14894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8765), - [14896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), - [14898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8773), - [14900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), - [14902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8779), - [14904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8782), - [14906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8784), - [14908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8786), - [14910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8788), - [14912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8790), - [14914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8792), - [14916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8794), - [14918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8796), - [14920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8798), - [14922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8800), - [14924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 5, 0, 133), - [14926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [14928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), - [14930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [14932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [14934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [14936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [14938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [14940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 3, 0, 82), + [2594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7901), + [2596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7901), + [2599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3815), + [2601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3805), + [2603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3772), + [2605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 51), + [2607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 51), + [2609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), + [2611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 3, 0, 169), + [2613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 3, 0, 169), + [2615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 106), + [2617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 106), + [2619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), + [2621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), + [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [2625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7177), + [2627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 5, 0, 176), + [2629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 5, 0, 176), + [2631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_finally_clause, 2, 0, 9), + [2633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_finally_clause, 2, 0, 9), + [2635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 154), + [2637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 154), + [2639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), + [2641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), + [2643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, 0, 155), + [2645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, 0, 155), + [2647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, 0, 159), + [2649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, 0, 159), + [2651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_range_loop, 5, 0, 160), + [2653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_range_loop, 5, 0, 160), + [2655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, 0, 52), + [2657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, 0, 52), + [2659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 5, 0, 175), + [2661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 5, 0, 175), + [2663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 3, 0, 68), + [2665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 3, 0, 68), + [2667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_try_statement, 3, 0, 9), + [2669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_try_statement, 3, 0, 9), + [2671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, 0, 137), + [2673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, 0, 137), + [2675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_except_clause, 3, 0, 188), + [2677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_except_clause, 3, 0, 188), + [2679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 6, 0, 205), + [2681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 6, 0, 205), + [2683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 2, 0, 0), + [2685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 2, 0, 0), + [2687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 107), + [2689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 107), + [2691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_statement, 2, 0, 0), + [2693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_statement, 2, 0, 0), + [2695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), + [2697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), + [2699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_co_return_statement, 2, 0, 0), + [2701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_co_return_statement, 2, 0, 0), + [2703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 4, 0, 88), + [2705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 4, 0, 88), + [2707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_leave_statement, 2, 0, 0), + [2709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_leave_statement, 2, 0, 0), + [2711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), + [2713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, 0, 0), + [2715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, 0, 0), + [2717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, 0, 53), + [2719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, 0, 53), + [2721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, 0, 54), + [2723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, 0, 54), + [2725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), + [2727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), + [2729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 2, 0, 0), + [2731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, 0, 117), + [2733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, 0, 117), + [2735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), + [2737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), + [2739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3, 0, 0), + [2741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3, 0, 0), + [2743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, 0, 120), + [2745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, 0, 120), + [2747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0), + [2749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0), + [2751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_co_return_statement, 3, 0, 0), + [2753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_co_return_statement, 3, 0, 0), + [2755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 0), + [2757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), + [2759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, 0, 137), + [2761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, 0, 137), + [2763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_co_yield_statement, 3, 0, 0), + [2765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_co_yield_statement, 3, 0, 0), + [2767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 0), + [2769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 0), + [2771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, 0, 88), + [2773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, 0, 88), + [2775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 52), + [2777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 52), + [2779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 4, 0, 79), + [2781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 4, 0, 79), + [2783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 2, 0, 9), + [2785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 2, 0, 9), + [2787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 2, 0, 25), + [2789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 2, 0, 25), + [2791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 2, 0, 26), + [2793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 2, 0, 26), + [2795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__empty_declaration, 2, 0, 0), + [2797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__empty_declaration, 2, 0, 0), + [2799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_declaration, 2, 0, 26), + [2801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_declaration, 2, 0, 26), + [2803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_definition, 2, 0, 25), + [2805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_definition, 2, 0, 25), + [2807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_include, 3, 0, 36), + [2809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_include, 3, 0, 36), + [2811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 3, 0, 10), + [2813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 3, 0, 10), + [2815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 3, 0, 10), + [2817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 3, 0, 10), + [2819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 3, 0, 37), + [2821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 3, 0, 37), + [2823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_linkage_specification, 3, 0, 44), + [2825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_linkage_specification, 3, 0, 44), + [2827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_declaration, 3, 0, 0), + [2829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_declaration, 3, 0, 0), + [2831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 3, 0, 46), + [2833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 3, 0, 46), + [2835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_instantiation, 3, 0, 5), + [2837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_instantiation, 3, 0, 5), + [2839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_declaration, 3, 0, 59), + [2841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_declaration, 3, 0, 59), + [2843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2, 0, 0), + [2845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2, 0, 0), + [2847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 3, 0, 62), + [2849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 3, 0, 62), + [2851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 3, 0, 48), + [2853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 3, 0, 48), + [2855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, 0, 69), + [2857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, 0, 69), + [2859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 3, 0, 71), + [2861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 3, 0, 71), + [2863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 3, 0, 78), + [2865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 3, 0, 78), + [2867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 3, 0, 5), + [2869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 3, 0, 5), + [2871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_declaration, 3, 0, 5), + [2873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_declaration, 3, 0, 5), + [2875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_definition, 3, 0, 78), + [2877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_definition, 3, 0, 78), + [2879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 4, 0, 80), + [2881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 4, 0, 80), + [2883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 4, 0, 81), + [2885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 4, 0, 81), + [2887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, 0, 82), + [2889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, 0, 82), + [2891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, 0, 10), + [2893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, 0, 10), + [2895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_declaration, 4, 0, 0), + [2897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_declaration, 4, 0, 0), + [2899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 4, 0, 95), + [2901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 4, 0, 95), + [2903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 4, 0, 96), + [2905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 4, 0, 96), + [2907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 4, 0, 97), + [2909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 4, 0, 97), + [2911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_instantiation, 4, 0, 60), + [2913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_instantiation, 4, 0, 60), + [2915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_declaration, 4, 0, 59), + [2917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_declaration, 4, 0, 59), + [2919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3, 0, 0), + [2921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3, 0, 0), + [2923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, 0, 118), + [2925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, 0, 118), + [2927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, 0, 122), + [2929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, 0, 122), + [2931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_method_clause, 3, 0, 0), + [2933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_method_clause, 3, 0, 0), + [2935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_method_clause, 3, 0, 0), + [2937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_method_clause, 3, 0, 0), + [2939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pure_virtual_clause, 3, 0, 0), + [2941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pure_virtual_clause, 3, 0, 0), + [2943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_declaration, 4, 0, 127), + [2945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_declaration, 4, 0, 127), + [2947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 4, 0, 130), + [2949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 4, 0, 130), + [2951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 5, 0, 131), + [2953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 5, 0, 131), + [2955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, 0, 132), + [2957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, 0, 132), + [2959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, 0, 81), + [2961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, 0, 81), + [2963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 5, 0, 133), + [2965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 5, 0, 133), + [2967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alias_declaration, 5, 0, 138), + [2969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias_declaration, 5, 0, 138), + [2971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 5, 0, 144), + [2973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 5, 0, 144), + [2975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 5, 0, 145), + [2977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 5, 0, 145), + [2979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3851), + [2981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8279), + [2983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5830), + [2985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), + [2987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8753), + [2989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), + [2991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5752), + [2993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8907), + [2995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7874), + [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4845), + [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8858), + [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), + [3003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5327), + [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [3007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3137), + [3009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3824), + [3011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6570), + [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5557), + [3015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8880), + [3017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3127), + [3019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2711), + [3021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6356), + [3023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5181), + [3025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5182), + [3027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5183), + [3029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5258), + [3031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8233), + [3033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7167), + [3035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), + [3037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8901), + [3039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_alias_definition, 5, 0, 170), + [3041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_alias_definition, 5, 0, 170), + [3043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_alias_definition, 5, 0, 171), + [3045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_alias_definition, 5, 0, 171), + [3047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_assert_declaration, 5, 0, 172), + [3049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_assert_declaration, 5, 0, 172), + [3051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concept_definition, 5, 0, 10), + [3053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concept_definition, 5, 0, 10), + [3055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), SHIFT(2003), + [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [3060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), SHIFT(1260), + [3063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), SHIFT(6650), + [3066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), SHIFT(7149), + [3069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), SHIFT(8078), + [3072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), SHIFT(7893), + [3075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, 0, 179), + [3077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, 0, 179), + [3079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_declaration, 5, 0, 0), + [3081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_declaration, 5, 0, 0), + [3083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_declaration, 5, 0, 183), + [3085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_declaration, 5, 0, 183), + [3087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, 0, 184), + [3089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, 0, 184), + [3091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alias_declaration, 6, 0, 186), + [3093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias_declaration, 6, 0, 186), + [3095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_assert_declaration, 7, 0, 218), + [3097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_assert_declaration, 7, 0, 218), + [3099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7853), + [3101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_friend_declaration, 2, 0, 0), + [3103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_friend_declaration, 2, 0, 0), + [3105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_declaration, 2, 0, 26), + [3107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_declaration, 2, 0, 26), + [3109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7853), + [3112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_friend_declaration, 3, 0, 0), + [3114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_friend_declaration, 3, 0, 0), + [3116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_declaration, 3, 0, 5), + [3118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_declaration, 3, 0, 5), + [3120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_friend_declaration, 4, 0, 0), + [3122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_friend_declaration, 4, 0, 0), + [3124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_friend_declaration, 5, 0, 0), + [3126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_friend_declaration, 5, 0, 0), + [3128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), + [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [3134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), + [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [3138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), + [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6668), + [3142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4313), + [3144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5032), + [3146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6364), + [3148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5184), + [3150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5185), + [3152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5186), + [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [3156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), + [3158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8674), + [3160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8940), + [3162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8967), + [3164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6857), + [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4825), + [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7498), + [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7050), + [3172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4856), + [3174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4853), + [3176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2733), + [3178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8697), + [3180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5240), + [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [3184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), + [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8041), + [3188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), + [3190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5097), + [3192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5449), + [3194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), + [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [3198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), + [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [3202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), + [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [3206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), + [3208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), + [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [3214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), + [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [3218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), + [3220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), + [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [3224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), + [3226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), + [3228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 2, 0, 10), + [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [3232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, 0, 81), + [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [3236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 3, 0, 10), + [3238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, 0, 81), + [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), + [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [3248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8018), + [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), + [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6591), + [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), + [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [3260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(2003), + [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [3265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(1260), + [3268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(6650), + [3271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(7149), + [3274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(8078), + [3277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(7893), + [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), + [3282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_init_statement, 1, 0, 0), SHIFT(2003), + [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [3287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_init_statement, 1, 0, 0), SHIFT(1260), + [3290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_init_statement, 1, 0, 0), + [3292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_init_statement, 1, 0, 0), SHIFT(6650), + [3295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_statement, 1, 0, 0), + [3297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_init_statement, 1, 0, 0), SHIFT(7149), + [3300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_init_statement, 1, 0, 0), SHIFT(8078), + [3303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_init_statement, 1, 0, 0), SHIFT(7893), + [3306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), + [3308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8018), + [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), + [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4438), + [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), + [3317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 2, 0, 3), + [3319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 2, 0, 3), + [3321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__block_item, 1, 0, 0), REDUCE(sym_statement, 1, 0, 0), + [3324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__block_item, 1, 0, 0), REDUCE(sym_statement, 1, 0, 0), + [3327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), + [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [3331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), + [3333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), + [3335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4069), + [3337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4107), + [3339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4325), + [3341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8442), + [3343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3819), + [3345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3821), + [3347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), + [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [3353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), + [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [3357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), + [3359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), + [3361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5141), + [3363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), + [3365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [3367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(2237), + [3370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1270), + [3373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(6666), + [3376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(7177), + [3379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_expression_statement, 2, 0, 0), + [3381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_expression_statement, 2, 0, 0), + [3383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_declaration, 4, 0, 0), + [3385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_declaration, 4, 0, 0), + [3387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 4, 0, 47), + [3389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 4, 0, 47), + [3391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 4, 0, 110), + [3393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 4, 0, 110), + [3395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 4, 0, 47), + [3397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 4, 0, 47), + [3399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 4, 0, 111), + [3401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 4, 0, 111), + [3403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 5, 0, 47), + [3405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 5, 0, 47), + [3407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 5, 0, 165), + [3409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 5, 0, 165), + [3411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 5, 0, 110), + [3413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 5, 0, 110), + [3415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 5, 0, 47), + [3417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 5, 0, 47), + [3419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 5, 0, 111), + [3421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 5, 0, 111), + [3423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 5, 0, 112), + [3425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 5, 0, 112), + [3427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_module_fragment_declaration, 4, 0, 0), + [3429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_module_fragment_declaration, 4, 0, 0), + [3431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 4, 0, 10), + [3433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 4, 0, 10), + [3435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 4, 0, 112), + [3437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 4, 0, 112), + [3439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 4, 0, 56), + [3441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 4, 0, 56), + [3443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 6, 0, 165), + [3445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 6, 0, 165), + [3447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 4, 0, 10), + [3449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 4, 0, 10), + [3451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__top_level_item, 1, 0, 0), REDUCE(sym__top_level_statement, 1, 0, 0), + [3454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__top_level_item, 1, 0, 0), REDUCE(sym__top_level_statement, 1, 0, 0), + [3457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_declaration, 2, 0, 0), + [3459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_declaration, 2, 0, 0), + [3461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_module_fragment_declaration, 2, 0, 0), + [3463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_module_fragment_declaration, 2, 0, 0), + [3465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 4, 0, 57), + [3467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 4, 0, 57), + [3469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 3, 0, 10), + [3471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 3, 0, 10), + [3473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3851), + [3476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8279), + [3479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5830), + [3482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), + [3484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8753), + [3487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7874), + [3490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4845), + [3493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8858), + [3496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2946), + [3499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5327), + [3502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5327), + [3505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(600), + [3508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3137), + [3511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3824), + [3514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3211), + [3517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3168), + [3520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8820), + [3523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6570), + [3526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5557), + [3529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7450), + [3532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8738), + [3535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7825), + [3538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2385), + [3541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8880), + [3544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1680), + [3547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3127), + [3550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8709), + [3553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2711), + [3556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6356), + [3559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5181), + [3562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5182), + [3565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5183), + [3568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2453), + [3571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8102), + [3574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4243), + [3577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5258), + [3580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8233), + [3583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7167), + [3586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(842), + [3589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1668), + [3592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8901), + [3595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_expression_statement, 1, 0, 0), + [3597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_expression_statement, 1, 0, 0), + [3599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_declaration, 3, 0, 0), + [3601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_declaration, 3, 0, 0), + [3603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 3, 0, 10), + [3605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 3, 0, 10), + [3607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 3, 0, 56), + [3609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 3, 0, 56), + [3611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 3, 0, 57), + [3613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 3, 0, 57), + [3615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), + [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [3619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), + [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6685), + [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [3625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), + [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4269), + [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7544), + [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7174), + [3633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), + [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8037), + [3637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), + [3639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5068), + [3641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5435), + [3643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8118), + [3645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5865), + [3647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8856), + [3649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7758), + [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [3653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3107), + [3655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3816), + [3657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6555), + [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), + [3661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3014), + [3663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7238), + [3665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), + [3667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8884), + [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4047), + [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4038), + [3675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8118), + [3678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5865), + [3681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8856), + [3684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7758), + [3687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(814), + [3690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3107), + [3693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3816), + [3696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6555), + [3699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), + [3701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3014), + [3704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7238), + [3707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1670), + [3710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8884), + [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), + [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5002), + [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), + [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), + [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), + [3731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8332), + [3733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5849), + [3735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 1, 0, 0), + [3737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8850), + [3739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7970), + [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [3743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3151), + [3745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3826), + [3747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6578), + [3749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3131), + [3751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7179), + [3753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), + [3755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8908), + [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), + [3759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8332), + [3762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5849), + [3765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8850), + [3768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7970), + [3771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(823), + [3774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3151), + [3777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3826), + [3780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6578), + [3783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3131), + [3786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7179), + [3789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1665), + [3792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8908), + [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), + [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), + [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), + [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), + [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4722), + [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), + [3817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 2, 0, 0), + [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4771), + [3823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), + [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4989), + [3831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), + [3833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), + [3835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), + [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [3839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), + [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6683), + [3843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), + [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4455), + [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7538), + [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7090), + [3851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), + [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8048), + [3855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), + [3857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2266), + [3859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), + [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [3863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), + [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6659), + [3867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), + [3869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), + [3871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), + [3873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5083), + [3875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2318), + [3877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), + [3879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [3881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7085), + [3883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2333), + [3885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), + [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [3889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1536), + [3891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6681), + [3893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), + [3895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), + [3897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), + [3899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pack_expansion, 2, 0, 28), + [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [3903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pack_expansion, 2, 0, 28), + [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [3907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2913), + [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), + [3911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3316), + [3913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), + [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6697), + [3917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2695), + [3919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3043), + [3921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6362), + [3923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5124), + [3925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5126), + [3927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5127), + [3929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5276), + [3931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3222), + [3933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8577), + [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5973), + [3937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5973), + [3939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5897), + [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8228), + [3943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 4, 0, 0), + [3945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 4, 0, 0), + [3947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(2318), + [3950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1346), + [3953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(6668), + [3956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(7085), + [3959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 3, 0, 0), + [3961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 3, 0, 0), + [3963] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(2217), + [3966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1245), + [3969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(6665), + [3972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(7131), + [3975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2889), + [3977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8877), + [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5553), + [3981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3119), + [3983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7116), + [3985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), + [3987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5542), + [3989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8489), + [3991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3106), + [3993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7045), + [3995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), + [3997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8888), + [3999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3124), + [4001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7155), + [4003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), + [4005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8897), + [4007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8894), + [4009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8905), + [4011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3128), + [4013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7173), + [4015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), + [4017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8911), + [4019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8902), + [4021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8914), + [4023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8909), + [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [4027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), + [4029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), + [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6107), + [4033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), + [4035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8694), + [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [4039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), + [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [4045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), + [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5909), + [4049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), + [4052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), + [4055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), + [4057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), + [4059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), + [4061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), + [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [4065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), + [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6183), + [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6481), + [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6131), + [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [4079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), + [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6156), + [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [4085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), + [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5913), + [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [4091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), + [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), + [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), + [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [4101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), + [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), + [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5892), + [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), + [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6201), + [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6202), + [4125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2232), + [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [4129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), + [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6167), + [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6160), + [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [4139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), + [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6504), + [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [4145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), + [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5958), + [4149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(141), + [4152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1315), + [4155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1343), + [4158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1343), + [4161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(5723), + [4164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), + [4166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), + [4168] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), + [4172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), + [4174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), + [4176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), + [4179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), + [4182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(395), + [4185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), + [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6794), + [4189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 1), + [4192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_name, 1, 0, 1), + [4194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2660), + [4196] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), + [4200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), + [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [4204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7889), + [4207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1685), + [4210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(147), + [4213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1364), + [4216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1344), + [4219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(6656), + [4222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7889), + [4224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), + [4226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), + [4228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), + [4230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(2333), + [4233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(168), + [4236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1550), + [4239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1550), + [4242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1536), + [4245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(6681), + [4248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1551), + [4251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1209), + [4254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8282), + [4257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8703), + [4260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8721), + [4263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(6824), + [4266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(4294), + [4269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(7338), + [4272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(7101), + [4275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(3898), + [4278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(3918), + [4281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1552), + [4284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(7875), + [4287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1553), + [4290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(5083), + [4293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(5427), + [4296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), + [4298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), + [4300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), + [4302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), + [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [4306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3217), + [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4262), + [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), + [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4627), + [4316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4627), + [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5781), + [4320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), + [4322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 2, 0, 0), + [4324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_capture_specifier, 2, 0, 0), + [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), + [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [4332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6642), + [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5695), + [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5574), + [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5981), + [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5984), + [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3959), + [4356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), + [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), + [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3869), + [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), + [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [4370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2196), + [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8248), + [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), + [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8860), + [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4885), + [4382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(2003), + [4385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(164), + [4388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1265), + [4391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1265), + [4394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1259), + [4397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(2782), + [4400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1260), + [4403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(6650), + [4406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1444), + [4409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), + [4411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(5723), + [4414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(7149), + [4417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1428), + [4420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1133), + [4423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(8282), + [4426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(8703), + [4429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(8721), + [4432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(6824), + [4435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(4294), + [4438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(7338), + [4441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(7101), + [4444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(3898), + [4447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(3918), + [4450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(8078), + [4453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(6642), + [4456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(7893), + [4459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1267), + [4462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(7875), + [4465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1284), + [4468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(5112), + [4471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(5427), + [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4286), + [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8440), + [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), + [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), + [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8874), + [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), + [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), + [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4281), + [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8516), + [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), + [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), + [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), + [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), + [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), + [4504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(419), + [4507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), + [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7081), + [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8046), + [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), + [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), + [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), + [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), + [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4850), + [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3742), + [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3916), + [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), + [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), + [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), + [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), + [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4882), + [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), + [4541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2308), + [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8096), + [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6556), + [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7699), + [4553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4906), + [4555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), + [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [4559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8492), + [4561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), + [4563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8494), + [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), + [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), + [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4860), + [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [4577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8128), + [4579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), + [4581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8132), + [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), + [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), + [4587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2296), + [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8340), + [4591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_default_capture, 1, 0, 0), + [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), + [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [4597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8887), + [4599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), + [4601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8892), + [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4171), + [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [4609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8319), + [4612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8841), + [4615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8712), + [4618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8353), + [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), + [4623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8932), + [4626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8587), + [4629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8601), + [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), + [4634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8692), + [4637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8852), + [4640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8521), + [4643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8793), + [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), + [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [4650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), + [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [4656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), + [4658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), + [4660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), + [4662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), + [4664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 1, 81), + [4666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 1, 158), + [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [4670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), + [4672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 1, 198), + [4674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), + [4676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8373), + [4679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), + [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [4683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), + [4685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 1, 108), + [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [4689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), + [4691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), + [4693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 2, 1, 0), + [4695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 2, 1, 108), + [4697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), + [4699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), + [4701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8470), + [4704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8861), + [4707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8873), + [4710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8201), + [4713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8218), + [4716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8057), + [4719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8073), + [4722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8081), + [4725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8093), + [4728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8734), + [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6174), + [4733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8156), + [4736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8185), + [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), + [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5832), + [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5677), + [4745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8344), + [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6508), + [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8533), + [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), + [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6196), + [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [4764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8568), + [4767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8305), + [4770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8224), + [4772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8335), + [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [4777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8341), + [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6101), + [4782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8662), + [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [4787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8387), + [4790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8600), + [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [4795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8328), + [4797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8903), + [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), + [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8681), + [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [4807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8482), + [4809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8404), + [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [4814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8061), + [4816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8471), + [4818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8855), + [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8720), + [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8654), + [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [4828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8682), + [4830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8686), + [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5907), + [4835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8702), + [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), + [4839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8113), + [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6189), + [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [4845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8468), + [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6199), + [4850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8594), + [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6496), + [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6141), + [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), + [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5900), + [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6177), + [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6103), + [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8701), + [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8466), + [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5890), + [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5891), + [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), + [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [4901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3630), + [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5843), + [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5734), + [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5790), + [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5803), + [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5807), + [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5813), + [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5836), + [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5839), + [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5726), + [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5768), + [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5747), + [4925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 0, 34), + [4927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_identifier, 2, 0, 33), + [4929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_qualified_identifier, 2, 0, 33), REDUCE(sym_qualified_type_identifier, 2, 0, 34), + [4932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type_identifier, 2, 0, 34), + [4934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 0, 33), + [4936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 0, 33), REDUCE(sym_qualified_type_identifier, 2, 0, 34), + [4939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 0, 33), SHIFT(407), + [4942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), + [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5842), + [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5800), + [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5784), + [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5727), + [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5831), + [4954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), + [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5771), + [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5773), + [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5826), + [4962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), + [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5828), + [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5827), + [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5862), + [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5863), + [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5868), + [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5867), + [4976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 4, 3, 0), + [4978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 4, 3, 0), + [4980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 4, 2, 0), + [4982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 4, 2, 0), + [4984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_type, 2, 0, 16), + [4986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_function, 2, 0, 17), + [4988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_template_type, 2, 0, 16), REDUCE(sym_template_function, 2, 0, 17), + [4991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_type, 2, 0, 16), + [4993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_function, 2, 0, 17), + [4995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_template_type, 2, 0, 16), REDUCE(sym_template_function, 2, 0, 17), + [4998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 3, 3, 0), + [5000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 3, 3, 0), + [5002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 4, 1, 0), + [5004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 4, 1, 0), + [5006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 2, 0, 0), + [5008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 2, 0, 0), + [5010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 3, 1, 0), + [5012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 3, 1, 0), + [5014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 3, 2, 0), + [5016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 3, 2, 0), + [5018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3140), + [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4208), + [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6058), + [5026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6058), + [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6746), + [5030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), + [5032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3732), + [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5801), + [5038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 0, 33), SHIFT(377), + [5041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(377), + [5044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), + [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [5048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7205), + [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8038), + [5052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(414), + [5055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), + [5057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), + [5059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1610), + [5062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(8748), + [5065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(418), + [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), + [5070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), + [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7077), + [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8045), + [5078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), + [5080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), + [5082] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(1608), + [5085] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(391), + [5088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alignas_qualifier, 4, 0, 0), + [5090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alignas_qualifier, 4, 0, 0), + [5092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2347), + [5094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), + [5096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), + [5098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), + [5100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), + [5102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8748), + [5104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2346), + [5106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(2282), + [5109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), + [5111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), + [5113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2286), + [5115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2281), + [5117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(2269), + [5120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), + [5122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2268), + [5124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2351), + [5126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), + [5128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2350), + [5130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2566), + [5132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), + [5134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), + [5136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8733), + [5138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2597), + [5140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requires_expression, 3, 0, 67), + [5142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_expression, 3, 0, 67), + [5144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requirement_seq, 3, 0, 0), + [5146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requirement_seq, 3, 0, 0), + [5148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 4, 0, 128), + [5150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 4, 0, 128), + [5152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 4, 0, 129), + [5154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 4, 0, 129), + [5156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 3, 0, 74), + [5158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 3, 0, 74), + [5160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 3, 0, 75), + [5162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 3, 0, 75), + [5164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), + [5167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), + [5170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 5, 0, 182), + [5172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 5, 0, 182), + [5174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2605), + [5176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), + [5178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2604), + [5180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__requirement_clause_constraint, 3, 0, 0), + [5182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__requirement_clause_constraint, 3, 0, 0), + [5184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constraint_conjunction, 3, 0, 55), + [5186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint_conjunction, 3, 0, 55), + [5188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requires_expression, 2, 0, 21), + [5190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_expression, 2, 0, 21), + [5192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 2, 0, 32), + [5194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 2, 0, 32), + [5196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fold_expression, 3, 0, 40), + [5198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fold_expression, 3, 0, 40), + [5200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requirement_seq, 2, 0, 0), + [5202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requirement_seq, 2, 0, 0), + [5204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2635), + [5206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), + [5208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), + [5210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8768), + [5212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2634), + [5214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2638), + [5216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2639), + [5218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2607), + [5220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1672), + [5223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(8733), + [5226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2895), + [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6715), + [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [5238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1679), + [5241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(8768), + [5244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(1667), + [5247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2898), + [5249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5120), + [5251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5121), + [5253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5122), + [5255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5114), + [5257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5118), + [5259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5119), + [5261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5142), + [5263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5143), + [5265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5144), + [5267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5224), + [5269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5225), + [5271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5116), + [5273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5145), + [5275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5146), + [5277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5147), + [5279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2776), + [5281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), + [5283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2778), + [5285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8764), + [5287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2803), + [5289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5150), + [5291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5151), + [5293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5152), + [5295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5153), + [5297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5154), + [5299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5155), + [5301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5159), + [5303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5160), + [5305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5161), + [5307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5163), + [5309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5164), + [5311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5165), + [5313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5166), + [5315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5167), + [5317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5168), + [5319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5172), + [5321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5173), + [5323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5174), + [5325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5175), + [5327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5176), + [5329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5177), + [5331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5156), + [5333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5157), + [5335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5158), + [5337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1680), + [5340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(8709), + [5343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5138), + [5345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5139), + [5347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5140), + [5349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2793), + [5351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), + [5353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2777), + [5355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(1675), + [5358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1711), + [5361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(8764), + [5364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1702), + [5367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(8673), + [5370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4908), + [5372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4970), + [5374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7137), + [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), + [5378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(1689), + [5381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(416), + [5384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(1688), + [5387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7905), + [5389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_condition_clause, 3, 0, 14), + [5391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 3, 0, 14), + [5393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), + [5395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 3, 0, 0), + [5397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 3, 0, 0), + [5399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), + [5401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2, 0, 0), + [5403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2, 0, 0), + [5405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7905), + [5408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1714), + [5411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), + [5413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), + [5415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(7040), + [5418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(8039), + [5421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_condition_clause, 4, 0, 153), + [5423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 4, 0, 153), + [5425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), + [5427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), + [5429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1866), + [5432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1716), + [5435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(8694), + [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7550), + [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), + [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7306), + [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), + [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7442), + [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), + [5450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 2, 0, 0), + [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7750), + [5454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, 0, 10), + [5456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, 0, 10), + [5458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 7, 0, 220), + [5460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 7, 0, 220), + [5462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, 0, 58), + [5464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 58), + [5466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, 0, 68), + [5468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 68), + [5470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2, 0, 0), + [5472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2, 0, 0), + [5474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 0, 33), SHIFT(414), + [5477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), + [5479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), + [5481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6465), + [5483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3054), + [5485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3363), + [5487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3130), + [5489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8439), + [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5569), + [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7687), + [5495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8441), + [5497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8642), + [5499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_method_definition, 3, 0, 69), + [5501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_method_definition, 3, 0, 69), + [5503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_method_definition, 3, 0, 68), + [5505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_method_definition, 3, 0, 68), + [5507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 6, 0, 204), + [5509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 6, 0, 204), + [5511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 6, 0, 220), + [5513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 6, 0, 220), + [5515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 0), + [5517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 0), + [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6776), + [5521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_name, 1, 0, 0), + [5523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_name, 1, 0, 0), + [5525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decltype, 4, 0, 0), + [5527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decltype, 4, 0, 0), + [5529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 6, 0, 211), + [5531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 6, 0, 211), + [5533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dependent_type, 2, -1, 0), + [5535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependent_type, 2, -1, 0), + [5537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), + [5539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8627), + [5541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 0, 33), + [5543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type_identifier, 2, 0, 33), + [5545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dependent_type_identifier, 2, 0, 0), + [5547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependent_type_identifier, 2, 0, 0), + [5549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, 0, 81), + [5551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, 0, 81), + [5553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 82), + [5555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 82), + [5557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 1, 0, 6), + [5559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 1, 0, 6), + [5561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8713), + [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6030), + [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [5567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5940), + [5569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 10), + [5571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 10), + [5573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, 0, 68), + [5575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 68), + [5577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, 0, 190), + [5579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 190), + [5581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, 0, 191), + [5583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 191), + [5585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 132), + [5587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 132), + [5589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 81), + [5591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 81), + [5593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, 0, 133), + [5595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, 0, 133), + [5597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, 0, 204), + [5599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, 0, 204), + [5601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 5, 0, 0), + [5603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 5, 0, 0), + [5605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, 0, 68), + [5607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, 0, 68), + [5609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, 0, 210), + [5611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, 0, 210), + [5613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, 0, 190), + [5615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, 0, 190), + [5617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 6, 0, 210), + [5619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 6, 0, 210), + [5621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, 0, 211), + [5623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, 0, 211), + [5625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, 0, 58), + [5627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, 0, 58), + [5629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, 0, 191), + [5631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, 0, 191), + [5633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declaration_list_item, 2, 0, 0), + [5635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_list_item, 2, 0, 0), + [5637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, 0, 184), + [5639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, 0, 184), + [5641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 7, 0, 219), + [5643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 7, 0, 219), + [5645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 6, 0, 149), + [5647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 6, 0, 149), + [5649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(3484), + [5652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), + [5654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), + [5656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8673), + [5658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3483), + [5660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, 0, 12), + [5662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, 0, 12), + [5664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7870), + [5666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_placeholder_type_specifier, 2, 0, 27), + [5668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_placeholder_type_specifier, 2, 0, 27), + [5670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), + [5672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), + [5674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), + [5676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7919), + [5678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7919), + [5681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 4, 0, 105), + [5683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 4, 0, 105), + [5685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 4, 0, 46), + [5687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 4, 0, 46), + [5689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 4, 0, 151), + [5691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 4, 0, 151), + [5693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 102), + [5695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 102), + [5697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 2, 0, 0), + [5699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 2, 0, 0), + [5701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 5, 0, 150), + [5703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 5, 0, 150), + [5705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 9), + [5707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 9), + [5709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7870), + [5712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 10), + [5714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 10), + [5716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2, 0, 0), + [5718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2, 0, 0), + [5720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 2, 0, 12), + [5722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 2, 0, 12), + [5724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 2, 0, 11), + [5726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 2, 0, 11), + [5728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 2, 0, 6), + [5730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 2, 0, 6), + [5732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), + [5734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2111), + [5736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), + [5738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_placeholder_type_specifier, 1, 0, 0), + [5740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_placeholder_type_specifier, 1, 0, 0), + [5742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 4, 0, 0), + [5744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 4, 0, 0), + [5746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(434), + [5749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), + [5751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [5753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decltype_auto, 4, 0, 0), + [5755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decltype_auto, 4, 0, 0), + [5757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 0, 33), SHIFT(423), + [5760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 2, 0, 12), + [5762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 2, 0, 12), + [5764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 3, 0, 0), + [5766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 3, 0, 0), + [5768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 46), + [5770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 46), + [5772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 47), + [5774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 47), + [5776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__enum_base_clause, 2, 0, 100), + [5778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_base_clause, 2, 0, 100), + [5780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 48), + [5782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 48), + [5784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 49), + [5786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 49), + [5788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 1, 0, 13), + [5790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 1, 0, 13), + [5792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 4, 0, 0), + [5794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 4, 0, 0), + [5796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 97), + [5798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 97), + [5800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3, 0, 0), + [5802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3, 0, 0), + [5804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 3, 0, 104), + [5806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 3, 0, 104), + [5808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 3, 0, 50), + [5810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 3, 0, 50), + [5812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 3, 0, 9), + [5814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 3, 0, 9), + [5816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, 0, 12), + [5818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, 0, 12), + [5820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 99), + [5822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 99), + [5824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(3492), + [5827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3493), + [5829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3491), + [5831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 0, 34), SHIFT(416), + [5834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_name, 1, 0, 1), + [5836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), + [5838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 0, 33), SHIFT(416), + [5841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 65), + [5843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 65), + [5845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [5847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [5849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2321), + [5851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8157), + [5853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, 0, 20), + [5855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, 0, 20), + [5857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 93), + [5859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 93), + [5861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5873), + [5863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 1, 1, 0), + [5865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [5867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4207), + [5869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4207), + [5871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 1, 1, 0), + [5873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5896), + [5875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [5877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, 1, 0), + [5879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 2, 1, 0), + [5881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 45), + [5883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 45), + [5885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, -1, 77), + [5887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 77), + [5889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [5891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, 0, 0), + [5893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 0), + [5895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [5897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2313), + [5900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(8757), + [5903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, 0, 26), + [5905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, 0, 26), + [5907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_declarator, 2, 0, 89), + [5909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_declarator, 2, 0, 89), + [5911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 4, 0, 45), + [5913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 4, 0, 45), + [5915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string, 1, 0, 0), + [5917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string, 1, 0, 0), + [5919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 2), + [5921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 2), + [5923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [5925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 1), + [5927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 1), + [5929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, -1, 18), + [5931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 18), + [5933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, 0, 45), + [5935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 45), + [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [5939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 3, 0, 26), + [5941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 3, 0, 26), + [5943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 4, -10, 0), + [5945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 4, -10, 0), + [5947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 43), + [5949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 43), + [5951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 4, -1, 77), + [5953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 4, -1, 77), + [5955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(1974), + [5958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 5, 0, 180), + [5960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 5, 0, 180), + [5962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, 0, 123), + [5964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, 0, 123), + [5966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 20), + [5968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 20), + [5970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [5972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, -1, 35), + [5974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 35), + [5976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [5978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, 0, 20), + [5980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 20), + [5982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 42), + [5984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 42), + [5986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, -1, 35), + [5988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 35), + [5990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 0), + [5992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 0), + [5994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 3, -10, 0), + [5996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 3, -10, 0), + [5998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [6000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4283), + [6002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4283), + [6004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_destructor_name, 2, 0, 0), + [6006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_destructor_name, 2, 0, 0), + [6008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_expression, 1, 0, 0), + [6011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_expression, 1, 0, 0), + [6014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [6016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4304), + [6018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4304), + [6020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_parameter_list, 3, 0, 0), + [6022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_parameter_list, 3, 0, 0), + [6024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(407), + [6027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7098), + [6029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8051), + [6031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8672), + [6033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8672), + [6035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [6037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5940), + [6039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3258), + [6041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), + [6043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), + [6045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(2087), + [6048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(7098), + [6051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(8051), + [6054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_parameter_list, 2, 0, 0), + [6056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_parameter_list, 2, 0, 0), + [6058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__enum_base_clause, 2, 0, 101), + [6060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_base_clause, 2, 0, 101), + [6062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2261), + [6064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [6066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 49), + [6068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 49), + [6070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6442), + [6072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 99), + [6074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 99), + [6076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), + [6078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [6080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7096), + [6082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8050), + [6084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), + [6086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_parameter_list, 4, 0, 0), + [6088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_parameter_list, 4, 0, 0), + [6090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type_declarator, 2, 1, 5), + [6092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 2, 1, 5), + [6094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [6096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7497), + [6098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), + [6100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 1, 0, 11), + [6102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 1, 0, 11), + [6104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 2, 0, 50), + [6106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 2, 0, 50), + [6108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 2, 0, 9), + [6110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 2, 0, 9), + [6112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type_declarator, 4, 1, 87), + [6114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 4, 1, 87), + [6116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(7918), + [6119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__lambda_capture_identifier, 1, 0, 0), SHIFT(8400), + [6122] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), REDUCE(sym__lambda_capture_identifier, 1, 0, 0), SHIFT(6116), + [6126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), + [6128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [6130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2220), + [6133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), + [6135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2313), + [6137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2398), + [6139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8757), + [6141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), + [6143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), + [6145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type_declarator, 5, 1, 178), + [6147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 5, 1, 178), + [6149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 97), + [6151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 97), + [6153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 4, 0, 150), + [6155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 4, 0, 150), + [6157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 9), + [6159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, 0, 9), + [6161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 102), + [6163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 102), + [6165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 3, 0, 105), + [6167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 3, 0, 105), + [6169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 3, 0, 46), + [6171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 3, 0, 46), + [6173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8400), + [6175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(6116), + [6178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), + [6180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(2233), + [6183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(7205), + [6186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(8038), + [6189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), + [6191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), + [6193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(429), + [6196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [6198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type_declarator, 2, 1, 0), + [6200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type_declarator, 2, 1, 0), + [6202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type_declarator, 3, 1, 41), + [6204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 3, 1, 41), + [6206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 46), + [6208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 46), + [6210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 48), + [6212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 48), + [6214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 149), + [6216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 149), + [6218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2396), + [6220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2367), + [6222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2365), + [6224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5, 0, 141), + [6226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5, 0, 141), + [6228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2319), + [6230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7086), + [6232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8047), + [6234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2334), + [6236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), + [6238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [6240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2278), + [6242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2279), + [6244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_type_declarator, 2, 0, 0), + [6246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_type_declarator, 2, 0, 0), + [6248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constraint_disjunction, 3, 0, 55), + [6250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint_disjunction, 3, 0, 55), + [6252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5552), + [6254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5552), + [6256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6425), + [6258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2295), + [6260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), + [6262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 64), + [6264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 64), + [6266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2259), + [6268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_capture_identifier, 2, 0, 0), + [6270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), REDUCE(sym__lambda_capture_identifier, 2, 0, 0), + [6273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), + [6275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(7497), + [6278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_capture_identifier, 1, 0, 0), + [6280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), REDUCE(sym__lambda_capture_identifier, 1, 0, 0), + [6283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 116), + [6285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 116), + [6287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(2319), + [6290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(7086), + [6293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(8047), + [6296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2258), + [6298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requires_clause, 2, 0, 22), + [6300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_clause, 2, 0, 22), + [6302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5551), + [6304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5551), + [6306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(423), + [6309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 92), + [6311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 92), + [6313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2334), + [6316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 47), + [6318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 47), + [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6168), + [6322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [6326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), + [6328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), + [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), + [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), + [6334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), + [6336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), + [6338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), + [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), + [6342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_method, 2, 0, 124), + [6344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_method, 2, 0, 124), + [6346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_declarator, 3, 0, 173), + [6348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_declarator, 3, 0, 173), + [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), + [6352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_field_identifier, 2, 1, 125), + [6354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_field_identifier, 2, 1, 125), + [6356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_field_identifier, 2, 1, 125), SHIFT(416), + [6359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8732), + [6361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8732), + [6363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [6365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5923), + [6367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(2668), + [6370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(1680), + [6373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2595), + [6375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(8709), + [6378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2666), + [6380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(2681), + [6383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(1680), + [6386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2647), + [6388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(8709), + [6391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2680), + [6393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 10), + [6395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, 0, 10), + [6397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 1, 72), + [6399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 1, 72), + [6401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, 1, 72), SHIFT(416), + [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), + [6406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_field_identifier, 2, 0, 33), + [6408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_field_identifier, 2, 0, 33), + [6410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 4), + [6412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 4), + [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), + [6418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6290), + [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6290), + [6422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 2, 0, 14), + [6424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 2, 0, 14), + [6426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 0, 76), + [6428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_identifier, 3, 0, 76), + [6430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 0, 76), SHIFT(416), + [6433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_co_await_expression, 2, 0, 4), + [6435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_co_await_expression, 2, 0, 4), + [6437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_method, 2, 0, 17), + [6439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_method, 2, 0, 17), + [6441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [6443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [6445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 40), + [6447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 40), + [6449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), + [6451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(2415), + [6454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(7081), + [6457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(8046), + [6460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, 0, 86), + [6462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, 0, 86), + [6464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_name, 2, 0, 0), + [6466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_name, 2, 0, 0), + [6468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), + [6470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2415), + [6472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2483), + [6474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8323), + [6476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 1, 0, 2), + [6478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 1, 0, 2), + [6480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), + [6482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dependent_field_identifier, 2, 0, 0), + [6484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependent_field_identifier, 2, 0, 0), + [6486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, 0, 20), + [6488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, 0, 20), + [6490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2586), + [6492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2419), + [6494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3, 0, 0), + [6496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3, 0, 0), + [6498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_declarator, 4, 0, 173), + [6500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_declarator, 4, 0, 173), + [6502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2, 0, 0), + [6504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2, 0, 0), + [6506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4, 0, 0), + [6508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4, 0, 0), + [6510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_expression, 2, 0, 4), + [6512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_expression, 2, 0, 4), + [6514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 4), + [6516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 4), + [6518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 55), + [6520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 55), + [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8693), + [6524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8693), + [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [6528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6030), + [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [6532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, 0, 216), + [6534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, 0, 216), + [6536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, 0, 217), + [6538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, 0, 217), + [6540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 8, 0, 0), + [6542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 8, 0, 0), + [6544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, 0, 224), + [6546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, 0, 224), + [6548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, 0, 225), + [6550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, 0, 225), + [6552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 9, 0, 0), + [6554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 9, 0, 0), + [6556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 9, 0, 228), + [6558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 9, 0, 228), + [6560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5, 0, 140), + [6562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5, 0, 140), + [6564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 7), + [6566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 7), + [6568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 4, 0, 0), + [6570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 4, 0, 0), + [6572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 2, 0, 8), + [6574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 2, 0, 8), + [6576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alignof_expression, 4, 0, 45), + [6578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alignof_expression, 4, 0, 45), + [6580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), + [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8756), + [6586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8756), + [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [6590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 4, 0, 109), + [6592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 4, 0, 109), + [6594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 114), + [6596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 114), + [6598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 115), + [6600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 115), + [6602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 5, 0, 161), + [6604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 5, 0, 161), + [6606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, 0, 163), + [6608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, 0, 163), + [6610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, 0, 164), + [6612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, 0, 164), + [6614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 4, 0, 86), + [6616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 4, 0, 86), + [6618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5516), + [6620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5517), + [6622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5516), + [6624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5517), + [6626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 2, 0, 30), + [6628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 2, 0, 30), + [6630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 29), + [6632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 29), + [6634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 0), + [6636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 0), + [6638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user_defined_literal, 2, 0, 0), + [6640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_defined_literal, 2, 0, 0), + [6642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_argument_list, 4, 0, 0), + [6644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_argument_list, 4, 0, 0), + [6646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dependent_identifier, 2, 0, 0), + [6648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependent_identifier, 2, 0, 0), + [6650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5, 0, 174), + [6652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5, 0, 174), + [6654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_argument_list, 3, 0, 0), + [6656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_argument_list, 3, 0, 0), + [6658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), + [6660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), + [6662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, 0, 55), + [6664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 55), + [6666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 91), + [6668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 91), + [6670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 6, 0, 187), + [6672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 6, 0, 187), + [6674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 5, 0, 0), + [6676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 5, 0, 0), + [6678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_name, 3, 0, 0), + [6680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_name, 3, 0, 0), + [6682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 63), + [6684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 63), + [6686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_offsetof_expression, 6, 0, 199), + [6688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_offsetof_expression, 6, 0, 199), + [6690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_argument_list, 2, 0, 0), + [6692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_argument_list, 2, 0, 0), + [6694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, 0, 201), + [6696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, 0, 201), + [6698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, 0, 202), + [6700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, 0, 202), + [6702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 73), + [6704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 73), + [6706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8713), + [6708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6118), + [6710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 3, 0, 0), + [6712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 3, 0, 0), + [6714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), + [6716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), + [6718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5, 0, 139), + [6720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5, 0, 139), + [6722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null, 1, 0, 0), + [6724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null, 1, 0, 0), + [6726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), + [6728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [6730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), + [6732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), + [6734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, 0, 2), + [6736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, 0, 2), + [6738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2592), + [6740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6464), + [6742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 3, 0, 20), + [6744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 3, 0, 20), + [6746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 0, 34), SHIFT(414), + [6749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), + [6751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), + [6753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(3054), + [6756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2592), + [6759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(3130), + [6762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(8439), + [6765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(7687), + [6768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(8441), + [6771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(8642), + [6774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 0), SHIFT(1027), + [6777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2677), + [6779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), + [6781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, 1, 0), + [6783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 3, 1, 0), + [6785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), + [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), + [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), + [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8747), + [6793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8747), + [6795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [6797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2674), + [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6091), + [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6460), + [6803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), + [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8236), + [6809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 0, 34), SHIFT(423), + [6812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), + [6814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [6816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), + [6818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), + [6820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), + [6822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), + [6824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), + [6826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2664), + [6828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2670), + [6830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2678), + [6832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2679), + [6834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(2670), + [6837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(7174), + [6840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(8037), + [6843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2674), + [6846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2609), + [6848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2610), + [6850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6094), + [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6422), + [6854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3061), + [6856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2880), + [6858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3060), + [6860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3147), + [6862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3149), + [6864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3146), + [6866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_class_specifier, 1, 0, 0), + [6868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_class_specifier, 1, 0, 0), + [6870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7135), + [6872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [6874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [6876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), + [6878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_requirement, 5, 0, 0), + [6880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_requirement, 5, 0, 0), + [6882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), + [6884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [6886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [6888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [6890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), + [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8803), + [6894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__requirement, 1, 0, 66), + [6896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__requirement, 1, 0, 66), + [6898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), + [6900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [6902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_requirement, 6, 0, 0), + [6904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_requirement, 6, 0, 0), + [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), + [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), + [6910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_requirement, 4, 0, 0), + [6912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_requirement, 4, 0, 0), + [6914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_requirement, 2, 0, 0), + [6916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_requirement, 2, 0, 0), + [6918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), + [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [6922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_declspec_modifier, 4, 0, 0), + [6924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_declspec_modifier, 4, 0, 0), + [6926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 0, 34), SHIFT(429), + [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), + [6933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), + [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [6937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), + [6941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8388), + [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [6947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_expression, 3, 0, 0), + [6949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_expression, 3, 0, 0), + [6951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), + [6953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), + [6955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [6959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), + [6961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), + [6963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), + [6965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [6967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), + [6969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [6971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), + [6973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [6975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), + [6977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), + [6979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), + [6981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), + [6983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [6985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_expression, 4, 0, 0), + [6987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_expression, 4, 0, 0), + [6989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 4, 0, 126), + [6991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 4, 0, 126), + [6993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_expression, 5, 0, 0), + [6995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_expression, 5, 0, 0), + [6997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, 0, 181), + [6999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, 0, 181), + [7001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), + [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6175), + [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6421), + [7009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [7015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extension_expression, 2, 0, 0), + [7017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extension_expression, 2, 0, 0), + [7019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_expression, 2, 0, 0), + [7021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_expression, 2, 0, 0), + [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6467), + [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [7033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [7035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [7039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [7041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2496), + [7043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 1), + [7046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 23), + [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5486), + [7050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5486), + [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), + [7054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 23), SHIFT(8641), + [7057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 23), SHIFT(8641), + [7060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 23), SHIFT(7478), + [7063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 23), + [7065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4036), + [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8714), + [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6862), + [7071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6862), + [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), + [7075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5663), + [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8211), + [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5543), + [7081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_literal, 3, 0, 0), + [7083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_literal, 3, 0, 0), + [7085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 23), SHIFT(5940), + [7088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 23), SHIFT(5543), + [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7515), + [7095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), + [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), + [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5332), + [7101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5332), + [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8880), + [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), + [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5307), + [7109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5307), + [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), + [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5317), + [7115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5317), + [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), + [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), + [7123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), + [7125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), + [7127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), + [7129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), + [7131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), + [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [7137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), + [7139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), + [7141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), + [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [7147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), + [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [7151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), + [7153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), + [7155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), + [7157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), + [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [7161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), + [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [7183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [7185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [7187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [7189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), + [7191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), + [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [7195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), + [7197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [7199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [7201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), + [7203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6284), + [7205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6128), + [7207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8899), + [7209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6427), + [7211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), + [7213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5346), + [7215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5346), + [7217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5895), + [7219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), + [7221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5325), + [7223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5325), + [7225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), + [7227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), + [7229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [7231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [7233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), + [7235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), + [7237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), + [7239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [7241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), + [7243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [7245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), + [7247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [7249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), + [7251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), + [7253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [7255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [7257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), + [7259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5330), + [7261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5330), + [7263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5931), + [7265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), + [7267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5355), + [7269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5355), + [7271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), + [7273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5310), + [7275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5310), + [7277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5967), + [7279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [7281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), + [7283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8641), + [7285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8641), + [7287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), + [7289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [7291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [7293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), + [7295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8300), + [7297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [7299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8820), + [7301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 23), SHIFT(7687), + [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8709), + [7306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 23), SHIFT(6862), + [7309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 23), SHIFT(6862), + [7312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), + [7314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5521), + [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), + [7318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3755), + [7320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 23), SHIFT(5521), + [7323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), + [7325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), + [7327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), + [7329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [7331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [7333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), + [7335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), + [7337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), + [7339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [7341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), + [7343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [7345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), + [7347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [7349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), + [7351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), + [7353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [7355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [7357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), + [7359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6093), + [7361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5497), + [7363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [7365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7532), + [7367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), + [7369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 23), SHIFT(8820), + [7372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 23), SHIFT(8820), + [7375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), + [7377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), + [7379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2513), + [7381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), + [7383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8508), + [7385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [7387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [7389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6166), + [7391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), + [7393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3809), + [7395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5518), + [7397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6689), + [7399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), + [7401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), + [7403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), + [7405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), + [7407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3520), + [7409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), + [7411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8536), + [7413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 23), SHIFT(5518), + [7416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), + [7418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3586), + [7420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), + [7422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8345), + [7424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3813), + [7426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 23), SHIFT(6093), + [7429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 23), SHIFT(5498), + [7432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5897), + [7434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 23), SHIFT(5497), + [7437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6690), + [7439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), + [7441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3817), + [7443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), + [7445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3770), + [7447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5498), + [7449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6740), + [7451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 0), SHIFT(1031), + [7454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), + [7456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(7515), + [7459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), + [7461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3347), + [7463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), + [7465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8548), + [7467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6717), + [7469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), + [7471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), + [7473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), + [7475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), + [7477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__binary_fold_operator, 3, 0, 135), + [7479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_fold_operator, 3, 0, 135), + [7481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3825), + [7483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [7485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), + [7487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), + [7489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3827), + [7491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6284), + [7493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), + [7495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), + [7497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [7499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [7501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), + [7503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), + [7505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), + [7507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [7509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), + [7511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [7513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), + [7515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), + [7517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), + [7519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [7521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [7523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 0, 76), SHIFT(407), + [7526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3231), + [7528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, 1, 72), SHIFT(414), + [7531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 0, 76), SHIFT(377), + [7534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), + [7536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3748), + [7538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5508), + [7540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 23), SHIFT(5508), + [7543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [7545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__constructor_specifiers, 1, 0, 0), REDUCE(aux_sym__declaration_specifiers_repeat1, 1, 0, 0), + [7548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_specifiers, 1, 0, 0), + [7550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constructor_specifiers, 1, 0, 0), + [7552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__constructor_specifiers, 1, 0, 0), REDUCE(aux_sym__declaration_specifiers_repeat1, 1, 0, 0), + [7555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 1, 0, 0), + [7557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3181), + [7559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_field_identifier, 2, 1, 125), SHIFT(414), + [7562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), + [7564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3231), + [7567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(7096), + [7570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(8050), + [7573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3480), + [7575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 2, 0, 113), + [7577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5255), + [7579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(7532), + [7582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), + [7584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), + [7586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [7588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [7590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), + [7592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), + [7594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), + [7596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [7598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), + [7600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [7602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), + [7604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [7606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), + [7608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), + [7610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [7612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [7614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6278), + [7616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6278), + [7618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), + [7620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8825), + [7622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), + [7624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), + [7626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), + [7628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), + [7630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), + [7632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), + [7634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [7636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [7638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), + [7640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), + [7642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), + [7644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [7646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [7648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), + [7650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [7652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), + [7654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), + [7656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), + [7658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), + [7660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8832), + [7662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [7664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8834), + [7666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8836), + [7668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8838), + [7670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8839), + [7672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8840), + [7674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8842), + [7676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8844), + [7678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8845), + [7680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8846), + [7682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8847), + [7684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [7686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [7688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [7690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [7692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [7694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [7696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [7698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), + [7700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), + [7702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), + [7704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [7706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [7708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), + [7710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), + [7712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), + [7714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [7716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), + [7718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), + [7720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [7722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [7724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), + [7726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), + [7728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [7730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [7732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), + [7734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6219), + [7736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6219), + [7738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), + [7740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5631), + [7742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(1680), + [7745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(3258), + [7748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(3168), + [7751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(8820), + [7754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(7450), + [7757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(8738), + [7760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(8709), + [7763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_field_identifier, 2, 1, 125), SHIFT(423), + [7766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_initializer, 4, 0, 143), + [7768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), + [7770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), + [7772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), + [7774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [7776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5982), + [7778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [7780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), + [7782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4285), + [7784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 0, 76), SHIFT(414), + [7787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), + [7789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), + [7791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6105), + [7793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [7795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), + [7797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), + [7799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), + [7801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), + [7803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), + [7805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(3054), + [7808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(3363), + [7811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(3130), + [7814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(8439), + [7817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(7687), + [7820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(8441), + [7823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(8642), + [7826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(4243), + [7829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, 1, 72), SHIFT(423), + [7832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), + [7834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), + [7836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), + [7838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(3758), + [7841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(3760), + [7844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [7846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3420), + [7848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [7850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), + [7852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5443), + [7854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5443), + [7856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3758), + [7858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3758), + [7860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), + [7862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), + [7864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6184), + [7866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), + [7868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5430), + [7870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5430), + [7872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 0, 76), SHIFT(423), + [7875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3569), + [7877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5546), + [7879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5549), + [7881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5546), + [7883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5549), + [7885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), + [7887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5441), + [7889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5441), + [7891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), + [7893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(3472), + [7896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), + [7898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3472), + [7900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3489), + [7902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3490), + [7904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3496), + [7906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3499), + [7908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3479), + [7910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 0, 34), SHIFT(434), + [7913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), + [7915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 23), SHIFT(5505), + [7918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7478), + [7920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3757), + [7922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3418), + [7924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5505), + [7926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3595), + [7928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3569), + [7931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(7077), + [7934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(8045), + [7937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), + [7939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), + [7941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), + [7943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), + [7945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), + [7947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [7949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), + [7951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [7953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), + [7955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [7957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [7959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [7961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [7963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6146), + [7965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6439), + [7967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), + [7969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5469), + [7971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5469), + [7973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [7975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_capture, 2, 0, 0), + [7977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), REDUCE(sym__lambda_capture, 2, 0, 0), + [7980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4370), + [7982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5614), + [7984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6727), + [7986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), + [7988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5545), + [7990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5545), + [7992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [7994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5544), + [7996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5544), + [7998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4268), + [8000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6731), + [8002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4150), + [8004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4381), + [8006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6379), + [8008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5215), + [8010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5216), + [8012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5217), + [8014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4979), + [8016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8758), + [8018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5259), + [8020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4631), + [8022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6738), + [8024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), + [8026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4078), + [8028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6719), + [8030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4024), + [8032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4237), + [8034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6371), + [8036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5200), + [8038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5201), + [8040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5203), + [8042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4672), + [8044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8735), + [8046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5249), + [8048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3943), + [8050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_pointer_modifier, 1, 0, 0), + [8052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_pointer_modifier, 1, 0, 0), + [8054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1, 0, 0), + [8056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1, 0, 0), + [8058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4055), + [8060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6729), + [8062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6372), + [8064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5212), + [8066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5213), + [8068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5214), + [8070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5261), + [8072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4931), + [8074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6743), + [8076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6384), + [8078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5221), + [8080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5222), + [8082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5223), + [8084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5281), + [8086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5063), + [8088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6724), + [8090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4916), + [8092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5305), + [8094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6370), + [8096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5128), + [8098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5129), + [8100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5130), + [8102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5254), + [8104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4036), + [8107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(8714), + [8110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 0, 34), SHIFT(391), + [8113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), + [8115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5488), + [8117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5488), + [8119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_call_modifier, 1, 0, 0), + [8121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_call_modifier, 1, 0, 0), + [8123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declarator, 1, 0, 0), + [8125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [8127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4145), + [8129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8415), + [8131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6187), + [8133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5504), + [8135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), + [8137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5520), + [8139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5520), + [8141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4325), + [8143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4069), + [8145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4107), + [8147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [8149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8442), + [8151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3940), + [8153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5519), + [8155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5519), + [8157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5503), + [8159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(4069), + [8162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(4107), + [8165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4239), + [8167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(4036), + [8170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4257), + [8172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(8714), + [8175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4247), + [8177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [8179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [8181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8627), + [8183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), + [8185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5682), + [8187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5682), + [8189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7206), + [8191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 1, 0, 58), + [8193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4085), + [8195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4085), + [8197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [8199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [8201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4241), + [8203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(4036), + [8206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4113), + [8208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(8714), + [8211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4236), + [8213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 1, 0, 2), + [8215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_descriptor, 1, 0, 2), + [8217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4730), + [8219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8352), + [8221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, 0, 20), + [8223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_descriptor, 2, 0, 20), + [8225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), + [8227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 0, 34), SHIFT(418), + [8230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4034), + [8232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5811), + [8234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5811), + [8236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4035), + [8238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5741), + [8240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5741), + [8242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), + [8244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8323), + [8246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_attributes_start, 1, 0, 0), + [8248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_attributes_start, 1, 0, 0), + [8250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), + [8252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5737), + [8254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5737), + [8256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4056), + [8258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5838), + [8260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5838), + [8262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4059), + [8264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5947), + [8266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5947), + [8268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), + [8270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5413), + [8272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4096), + [8274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5942), + [8276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5942), + [8278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3760), + [8280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), + [8282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), + [8284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6191), + [8286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5416), + [8288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), + [8290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5916), + [8292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5916), + [8294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6127), + [8296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6136), + [8298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3326), + [8300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5414), + [8302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4105), + [8304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5880), + [8306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5880), + [8308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3331), + [8310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3318), + [8312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4082), + [8314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5872), + [8316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5872), + [8318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3539), + [8320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5419), + [8322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4104), + [8324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5918), + [8326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5918), + [8328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3535), + [8330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3536), + [8332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4092), + [8334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5939), + [8336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5939), + [8338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4087), + [8340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5950), + [8342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5950), + [8344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4250), + [8346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), + [8348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), + [8350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8738), + [8352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), + [8354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5944), + [8356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5944), + [8358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6159), + [8360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_reference_declarator, 1, 0, 0), + [8362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_reference_declarator, 1, 0, 0), + [8364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4263), + [8366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(4160), + [8369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6166), + [8371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4119), + [8373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5998), + [8375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5998), + [8377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4409), + [8379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(4321), + [8382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4411), + [8384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(8771), + [8387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4408), + [8389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4399), + [8391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(4321), + [8394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4290), + [8396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(8771), + [8399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4395), + [8401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), + [8403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [8405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), + [8407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [8409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), + [8411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [8413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [8415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [8417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), + [8419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6441), + [8421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5452), + [8423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4173), + [8425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6064), + [8427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6064), + [8429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [8431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [8433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [8435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [8437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), + [8439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [8441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), + [8443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), + [8445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), + [8447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), + [8449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3855), + [8451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [8453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, 0, 20), + [8455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_descriptor, 3, 0, 20), + [8457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4175), + [8459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6073), + [8461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6073), + [8463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [8465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5308), + [8467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5308), + [8469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5311), + [8471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8673), + [8473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6930), + [8475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4189), + [8477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6085), + [8479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6085), + [8481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4185), + [8483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6068), + [8485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6068), + [8487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, 0, 2), + [8489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_descriptor, 2, 0, 2), + [8491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 3, 0, 148), + [8493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 3, 0, 148), + [8495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4321), + [8498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(8771), + [8501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4985), + [8503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8405), + [8505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4325), + [8508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(8442), + [8511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_attributes_start, 2, 0, 0), + [8513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_attributes_start, 2, 0, 0), + [8515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4229), + [8517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6110), + [8519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6110), + [8521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6060), + [8523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), + [8525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [8527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), + [8529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [8531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [8533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), + [8535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [8537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), + [8539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [8541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), + [8543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [8545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [8547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), + [8549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [8551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [8553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [8555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [8557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6098), + [8559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(1702), + [8562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4384), + [8564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(8673), + [8567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), + [8569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4264), + [8571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4248), + [8573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4240), + [8575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4259), + [8577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(1680), + [8580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(4240), + [8583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(3168), + [8586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(8820), + [8589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(7315), + [8592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(8738), + [8595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(8709), + [8598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4245), + [8600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(1702), + [8603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(8673), + [8606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_function_specifier, 1, 0, 0), + [8608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [8610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_function_specifier, 1, 0, 0), + [8612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4160), + [8614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4255), + [8616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4388), + [8618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5554), + [8620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5550), + [8622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_function_specifier, 4, 0, 0), + [8624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_function_specifier, 4, 0, 0), + [8626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [8628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [8630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [8632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(2313), + [8635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(8757), + [8638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4277), + [8640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6227), + [8642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6227), + [8644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5513), + [8646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5513), + [8648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(4282), + [8651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5512), + [8653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5512), + [8655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), + [8657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), + [8659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(8820), + [8662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(8820), + [8665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(2313), + [8668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4560), + [8670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(8757), + [8673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), + [8675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [8677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), + [8679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [8681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), + [8683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [8685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), + [8687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [8689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), + [8691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [8693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [8695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [8697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [8699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [8701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [8703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6090), + [8705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6393), + [8707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [8709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [8711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [8713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), + [8715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4352), + [8717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6381), + [8719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6381), + [8721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 4, 0, 183), + [8723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_field_declaration_repeat1, 4, 0, 183), + [8725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [8727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitfield_clause, 2, 0, 0), + [8729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bitfield_clause, 2, 0, 0), + [8731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4383), + [8733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_initializer_pair, 3, 0, 146), SHIFT(1194), + [8736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, 0, 146), + [8738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4282), + [8740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4857), + [8742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [8744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), + [8746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [8748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), + [8750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [8752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [8754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), + [8756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [8758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), + [8760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [8762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), + [8764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [8766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), + [8768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [8770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [8772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [8774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [8776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4843), + [8778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), + [8780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [8782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [8784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), + [8786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4165), + [8788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [8790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4854), + [8792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [8794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), + [8796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [8798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4405), + [8800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), + [8802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [8804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [8806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [8808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4406), + [8810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [8812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [8814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), + [8816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [8818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), + [8820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), + [8822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4871), + [8824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4416), + [8826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4417), + [8828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), + [8830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [8832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), + [8834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [8836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), + [8838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [8840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [8842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), + [8844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [8846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), + [8848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [8850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), + [8852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [8854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [8856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), + [8858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [8860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [8862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [8864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [8866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), + [8868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), + [8870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [8872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), + [8874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), + [8876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), + [8878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comma_expression, 3, 0, 84), + [8880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [8882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), + [8884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [8886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), + [8888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), + [8890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3871), + [8892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4439), + [8894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(8641), + [8897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(8641), + [8900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), + [8902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8763), + [8904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8763), + [8906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [8908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), + [8910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4890), + [8912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [8914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), + [8916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [8918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [8920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), + [8922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), + [8924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), + [8926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6607), + [8928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 3, 0, 119), + [8930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_declaration, 4, 0, 193), + [8932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), + [8934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), SHIFT(1194), + [8937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), + [8939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), + [8941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [8943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6285), + [8945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8134), + [8947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_argument_list_repeat1, 2, 0, 0), + [8949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2, 1, 0), + [8951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 1, 195), + [8953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [8955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), + [8957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [8959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), + [8961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [8963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [8965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), + [8967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [8969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), + [8971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [8973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), + [8975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [8977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [8979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [8981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [8983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [8985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [8987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [8989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_initializer, 3, 0, 84), + [8991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6287), + [8993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8539), + [8995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_initializer, 5, 0, 189), + [8997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 4, 0, 0), + [8999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [9001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [9003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6288), + [9005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8127), + [9007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter_declaration, 3, 0, 168), + [9009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), + [9011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [9013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [9015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 5, 1, 212), + [9017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, 0, 147), + [9019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [9021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [9023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [9025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6286), + [9027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8722), + [9029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [9031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter_declaration, 4, 0, 204), + [9033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [9035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 1, 194), + [9037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [9039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [9041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6279), + [9043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8538), + [9045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [9047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6282), + [9049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8784), + [9051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [9053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [9055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [9057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [9059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 1, 156), + [9061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [9063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [9065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6129), + [9067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6426), + [9069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [9071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 1, 197), + [9073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 1, 157), + [9075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [9077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), + [9079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [9081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [9083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6283), + [9085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8613), + [9087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [9089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [9091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [9093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [9095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7375), + [9097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7586), + [9099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), + [9101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [9103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [9105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), + [9107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [9109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), + [9111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4947), + [9113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [9115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7623), + [9117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [9119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4639), + [9121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [9123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [9125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unary_left_fold, 3, 0, 55), + [9127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [9129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4367), + [9131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [9133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), + [9135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [9137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [9139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 23), + [9141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 23), SHIFT(8641), + [9144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 23), SHIFT(8641), + [9147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 23), SHIFT(7478), + [9150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 23), + [9152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7362), + [9154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_range_loop_body, 5, 0, 213), + [9156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [9158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [9160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [9162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [9164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7664), + [9166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [9168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [9170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [9172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [9174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [9176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), + [9178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [9180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_list, 2, 0, 0), REDUCE(sym_argument_list, 2, 0, 0), + [9183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_expression_lhs, 3, 0, 55), + [9185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [9187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), + [9189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [9191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [9193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 23), SHIFT(5940), + [9196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 23), SHIFT(5543), + [9199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [9201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [9203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [9205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [9207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4335), + [9209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [9211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), + [9213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [9215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), + [9217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [9219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [9221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [9223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), + [9225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_range_loop_body, 4, 0, 196), + [9227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_fold, 3, 0, 85), + [9229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [9231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7129), + [9233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), + [9235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [9237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3712), + [9239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), + [9241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [9243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [9245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), + [9247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [9249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [9251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), + [9253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [9255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7531), + [9257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4254), + [9259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [9261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), + [9263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [9265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [9267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [9269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), + [9271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [9273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), + [9275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5575), + [9277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [9279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(7687), + [9282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [9284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3829), + [9286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3837), + [9288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), + [9290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3841), + [9292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), + [9294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [9296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [9298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5501), + [9300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5502), + [9302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 23), SHIFT(6862), + [9305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 23), SHIFT(6862), + [9308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 23), SHIFT(7687), + [9311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 23), SHIFT(5521), + [9314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_capture, 1, 0, 0), + [9316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), REDUCE(sym__lambda_capture, 1, 0, 0), + [9319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3274), + [9321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7602), + [9323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 1, 0, 0), + [9325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5287), + [9327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 23), SHIFT(6093), + [9330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 23), SHIFT(5497), + [9333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 23), SHIFT(8820), + [9336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 23), SHIFT(8820), + [9339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(5061), + [9342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(5067), + [9345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(5058), + [9348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6193), + [9350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(5099), + [9353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(5096), + [9356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(5089), + [9359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 23), SHIFT(5518), + [9362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6162), + [9364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6198), + [9366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 23), SHIFT(5498), + [9369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3236), + [9371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 23), + [9373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 23), SHIFT(8641), + [9376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 3, 0, 23), SHIFT(8641), + [9379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 23), SHIFT(7478), + [9382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 3, 0, 23), + [9384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 23), SHIFT(5508), + [9387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 23), SHIFT(5940), + [9390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 23), SHIFT(5543), + [9393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 23), SHIFT(6862), + [9396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 3, 0, 23), SHIFT(6862), + [9399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6108), + [9401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 23), SHIFT(7687), + [9404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 0), SHIFT(1026), + [9407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 23), SHIFT(5521), + [9410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3478), + [9412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6732), + [9414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1860), + [9416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3752), + [9418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6382), + [9420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5218), + [9422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5219), + [9424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5220), + [9426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4125), + [9428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8765), + [9430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5292), + [9432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 2), SHIFT(1974), + [9435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3356), + [9437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6699), + [9439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), + [9441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6377), + [9443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5134), + [9445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5135), + [9447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5136), + [9449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5260), + [9451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 4, 0, 45), SHIFT(1974), + [9454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 4, -1, 77), SHIFT(1974), + [9457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2774), + [9459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6708), + [9461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), + [9463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2890), + [9465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6367), + [9467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5193), + [9469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5194), + [9471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5197), + [9473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3511), + [9475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8717), + [9477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5252), + [9479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 23), SHIFT(5518), + [9482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 20), SHIFT(5075), + [9485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 35), SHIFT(5086), + [9488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 23), SHIFT(6093), + [9491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 23), SHIFT(5498), + [9494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5098), + [9496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2630), + [9498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6728), + [9500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), + [9502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2799), + [9504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6375), + [9506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5209), + [9508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5210), + [9510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5211), + [9512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3157), + [9514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8749), + [9516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5246), + [9518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 23), SHIFT(8820), + [9521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 3, 0, 23), SHIFT(8820), + [9524] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT(1974), + [9528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), + [9530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6695), + [9532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), + [9534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2343), + [9536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6338), + [9538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5178), + [9540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5179), + [9542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5180), + [9544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), + [9546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8676), + [9548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5291), + [9550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 23), SHIFT(5497), + [9553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), + [9555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), + [9557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2400), + [9559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6324), + [9561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5266), + [9563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 20), SHIFT(1974), + [9566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(5308), + [9569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(5308), + [9572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(5311), + [9575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 35), SHIFT(1974), + [9578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2599), + [9580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6713), + [9582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), + [9584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2736), + [9586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6323), + [9588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5169), + [9590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5227), + [9592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5171), + [9594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3082), + [9596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8646), + [9598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5231), + [9600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 45), SHIFT(5050), + [9603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 2, 0, 20), + [9605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 2, 0, 20), + [9607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 0), SHIFT(1974), + [9610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4052), + [9612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6694), + [9614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2223), + [9616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6366), + [9618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5188), + [9620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5191), + [9622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5192), + [9624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5273), + [9626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 18), SHIFT(1974), + [9629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 77), SHIFT(5051), + [9632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 23), SHIFT(5505), + [9635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 1, 0, 2), + [9637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 1, 0, 2), + [9639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5354), + [9641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2986), + [9643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3192), + [9645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4919), + [9647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2765), + [9649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4782), + [9651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 23), SHIFT(5508), + [9654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3739), + [9656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2576), + [9658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), + [9660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6706), + [9662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4547), + [9664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4031), + [9666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2751), + [9668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4106), + [9670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2632), + [9672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4309), + [9674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3512), + [9676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5109), + [9678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6376), + [9680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5278), + [9682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 0), SHIFT(5047), + [9685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 3, 0, 20), + [9687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 3, 0, 20), + [9689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 23), + [9691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 23), SHIFT(8641), + [9694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 4, 0, 23), SHIFT(8641), + [9697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 23), SHIFT(7478), + [9700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 4, 0, 23), + [9702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 23), SHIFT(5940), + [9705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 23), SHIFT(5543), + [9708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 23), SHIFT(5505), + [9711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 2, 0, 2), + [9713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 2, 0, 2), + [9715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 23), SHIFT(7687), + [9718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 23), SHIFT(6862), + [9721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 4, 0, 23), SHIFT(6862), + [9724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 23), SHIFT(5521), + [9727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 23), SHIFT(6093), + [9730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 23), SHIFT(5498), + [9733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 23), SHIFT(8820), + [9736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 4, 0, 23), SHIFT(8820), + [9739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 23), SHIFT(5518), + [9742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 23), SHIFT(5497), + [9745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 23), SHIFT(5508), + [9748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [9750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [9752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3425), + [9754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7133), + [9756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [9758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [9760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3716), + [9762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7241), + [9764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [9766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [9768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4253), + [9770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7240), + [9772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [9774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [9776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3938), + [9778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7188), + [9780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4288), + [9782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [9784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [9786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2489), + [9788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7151), + [9790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [9792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [9794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4849), + [9796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7105), + [9798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [9800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [9802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [9804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [9806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), + [9808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [9810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7862), + [9812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_attributes_end, 2, 0, 0), + [9814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_attributes_end, 2, 0, 0), + [9816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_attributes_end, 1, 0, 0), + [9818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_attributes_end, 1, 0, 0), + [9820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), + [9822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [9824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [9826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7915), + [9828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 23), SHIFT(5505), + [9831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [9833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [9835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [9837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7897), + [9839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [9841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6662), + [9843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), + [9845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [9847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5506), + [9849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [9851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [9853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [9855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [9857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [9859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_qualifier, 1, 0, 0), + [9861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_qualifier, 1, 0, 0), + [9863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [9865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [9867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [9869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5639), + [9871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7220), + [9873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [9875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6006), + [9877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7053), + [9879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5933), + [9881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [9883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6722), + [9885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6192), + [9887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6172), + [9889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3303), + [9891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [9893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4880), + [9895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4287), + [9897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [9899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3875), + [9901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3878), + [9903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6620), + [9905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [9907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6363), + [9909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7146), + [9911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6360), + [9913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6973), + [9915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6540), + [9917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4279), + [9919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5970), + [9921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), + [9923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [9925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), + [9927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2529), + [9929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6000), + [9931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5535), + [9933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6339), + [9935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), + [9937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8621), + [9939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5525), + [9941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7247), + [9943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), + [9945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 23), + [9947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 5, 0, 23), + [9949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 23), + [9951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 6, 0, 23), + [9953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5533), + [9955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5562), + [9957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 23), SHIFT(5940), + [9960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 23), SHIFT(5521), + [9963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 23), SHIFT(5940), + [9966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 23), SHIFT(5521), + [9969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2202), + [9971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6705), + [9973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2325), + [9975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5672), + [9977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [9979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3697), + [9981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3671), + [9983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [9985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3574), + [9987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__preproc_expression, 1, 0, 0), + [9989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5592), + [9991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__preproc_expression, 1, 0, 0), + [9993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_attributes_end, 3, 0, 0), + [9995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_attributes_end, 3, 0, 0), + [9997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3467), + [9999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4252), + [10001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2271), + [10003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3521), + [10005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7624), + [10007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5638), + [10009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7034), + [10011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4163), + [10013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7509), + [10015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6020), + [10017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5986), + [10019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6385), + [10021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5534), + [10023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5810), + [10025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5829), + [10027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5757), + [10029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5758), + [10031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5758), + [10033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5759), + [10035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5760), + [10037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5761), + [10039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5762), + [10041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5763), + [10043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5764), + [10045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5765), + [10047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5765), + [10049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5766), + [10051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6391), + [10053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7253), + [10055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5669), + [10057] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [10059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_noexcept, 4, 0, 0), + [10061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_noexcept, 4, 0, 0), + [10063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4702), + [10065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [10067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [10069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [10071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), + [10073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [10075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6824), + [10077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [10079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [10081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7791), + [10083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_specifier, 4, 0, 0), + [10085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_specifier, 4, 0, 0), + [10087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5547), + [10089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5754), + [10091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5818), + [10093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7842), + [10095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5864), + [10097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5864), + [10099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5563), + [10101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7479), + [10103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_postfix, 1, 0, 0), + [10105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_postfix, 1, 0, 0), + [10107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [10109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8064), + [10111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5693), + [10113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_specifier, 3, 0, 0), + [10115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_specifier, 3, 0, 0), + [10117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5961), + [10119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [10121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [10123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7940), + [10125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5496), + [10127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__function_postfix_repeat1, 2, 0, 0), + [10129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__function_postfix_repeat1, 2, 0, 0), + [10131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_postfix_repeat1, 2, 0, 0), SHIFT_REPEAT(5940), + [10134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [10136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [10138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7839), + [10140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_noexcept, 1, 0, 0), + [10142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [10144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_noexcept, 1, 0, 0), + [10146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5951), + [10148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5617), + [10150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_specifier, 5, 0, 0), + [10152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_specifier, 5, 0, 0), + [10154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5555), + [10156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_noexcept, 3, 0, 0), + [10158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_noexcept, 3, 0, 0), + [10160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [10162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [10164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [10166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8581), + [10168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [10170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [10172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 23), SHIFT(5543), + [10175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 23), SHIFT(5543), + [10178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [10180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [10182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7697), + [10184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5572), + [10186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5841), + [10188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7876), + [10190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5725), + [10192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5725), + [10194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5964), + [10196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7244), + [10198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), + [10200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8213), + [10202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5721), + [10204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7540), + [10206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3031), + [10208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6840), + [10210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8307), + [10212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6436), + [10214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5956), + [10216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7462), + [10218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5920), + [10220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [10222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [10224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5919), + [10226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [10228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2, 0, 0), + [10230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1894), + [10232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8295), + [10234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5742), + [10236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7597), + [10238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3081), + [10240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [10242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 4, 0, 0), + [10244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 4, 0, 0), + [10246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), + [10248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8383), + [10250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5749), + [10252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7644), + [10254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3074), + [10256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5936), + [10258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5876), + [10260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5938), + [10262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 2, 0, 0), + [10264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 2, 0, 0), + [10266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 2, 0, 0), + [10268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 2, 0, 0), + [10270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_unary_expression, 2, 0, 4), + [10272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_unary_expression, 2, 0, 4), + [10274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5852), + [10276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5853), + [10278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5854), + [10280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5855), + [10282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5856), + [10284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5857), + [10286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5858), + [10288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5859), + [10290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5860), + [10292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5861), + [10294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [10296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3173), + [10298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5769), + [10300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7673), + [10302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [10304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [10306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), + [10308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5774), + [10310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7676), + [10312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5962), + [10314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5960), + [10316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5932), + [10318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5930), + [10320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3848), + [10322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7682), + [10324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [10326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call_expression, 2, 0, 7), + [10328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call_expression, 2, 0, 7), + [10330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [10332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5941), + [10334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5875), + [10336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2922), + [10338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5796), + [10340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7264), + [10342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3052), + [10344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5937), + [10346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5902), + [10348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5910), + [10350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [10352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4063), + [10354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7648), + [10356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [10358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(7478), + [10361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6782), + [10363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [10365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5735), + [10367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5945), + [10369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [10371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2288), + [10373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5816), + [10375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7441), + [10377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5966), + [10379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), + [10381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5819), + [10383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7485), + [10385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5921), + [10387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [10389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [10391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [10393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 3, 0, 0), + [10395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 3, 0, 0), + [10397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5963), + [10399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [10401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [10403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3091), + [10405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5833), + [10407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7273), + [10409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5905), + [10411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [10413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5908), + [10415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [10417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5903), + [10419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [10421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [10423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), + [10425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8219), + [10427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5844), + [10429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7472), + [10431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3122), + [10433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), + [10435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5846), + [10437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7423), + [10439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5954), + [10441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5928), + [10443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5878), + [10445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5894), + [10447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_parenthesized_expression, 3, 0, 0), + [10449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_parenthesized_expression, 3, 0, 0), + [10451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_binary_expression, 3, 0, 55), + [10453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_binary_expression, 3, 0, 55), + [10455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [10457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [10459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5756), + [10461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5955), + [10463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 4, 0, 0), + [10465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 4, 0, 0), + [10467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [10469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [10471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3005), + [10473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5869), + [10475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7366), + [10477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5776), + [10479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5720), + [10481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5797), + [10483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5798), + [10485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5799), + [10487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [10489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5777), + [10491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5778), + [10493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5780), + [10495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5792), + [10497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5795), + [10499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [10501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 4, 0, 0), + [10503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_parenthesized_declarator, 4, 0, 0), + [10505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 23), SHIFT(5518), + [10508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, 0, 185), + [10510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 4, 0, 185), + [10512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, 0, 123), + [10514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 4, 0, 123), + [10516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, 0, 26), + [10518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 4, 0, 26), + [10520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [10522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6410), + [10524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7658), + [10526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5917), + [10528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7507), + [10530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5978), + [10532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 3, 0, 59), + [10534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), + [10536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5509), + [10538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 5, 0, 180), + [10540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 5, 0, 180), + [10542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trailing_return_type, 2, 0, 0), + [10544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trailing_return_type, 2, 0, 0), + [10546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5949), + [10548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6218), + [10550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [10552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [10554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, 0, 134), + [10556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 3, 0, 134), + [10558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [10560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, 0, 0), + [10562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 3, 0, 0), + [10564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 2, 0, 23), + [10566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 7, 0, 23), + [10568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 7, 0, 23), + [10570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, 0, 26), + [10572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 3, 0, 26), + [10574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 2, 0, 59), + [10576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6619), + [10578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [10580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7198), + [10582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5926), + [10584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7400), + [10586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6235), + [10588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 1, 0, 23), + [10590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6543), + [10592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6544), + [10594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_virtual_specifier, 1, 0, 0), + [10596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_virtual_specifier, 1, 0, 0), + [10598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(7315), + [10601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [10603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 1, 0, 0), + [10605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 3, 0, 0), + [10607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_parenthesized_declarator, 3, 0, 0), + [10609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__abstract_declarator, 1, 0, 0), + [10611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__abstract_declarator, 1, 0, 0), + [10613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 1, 0, 39), + [10615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_function_declarator, 1, 0, 39), + [10617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [10619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [10621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6984), + [10623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7530), + [10625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 2, 0, 0), + [10627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 2, 0, 0), + [10629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 2, 0, 24), + [10631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_function_declarator, 2, 0, 24), + [10633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [10635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5851), + [10637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), + [10639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 23), SHIFT(5518), + [10642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5515), + [10644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [10646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 23), SHIFT(6093), + [10649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 23), SHIFT(5497), + [10652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [10654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [10656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 23), SHIFT(6093), + [10659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 23), SHIFT(5497), + [10662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5514), + [10664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), + [10666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [10668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5558), + [10670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5559), + [10672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [10674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [10676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [10678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [10680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [10682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6361), + [10684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7005), + [10686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6386), + [10688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6325), + [10690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [10692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_postfix_repeat1, 2, 0, 0), SHIFT_REPEAT(6093), + [10695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6340), + [10697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6069), + [10699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7067), + [10701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8043), + [10703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__class_declaration_repeat1, 2, 0, 0), + [10705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__class_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(8439), + [10708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_declaration_repeat1, 2, 0, 0), + [10710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__class_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(8642), + [10713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6558), + [10715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7284), + [10717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(6069), + [10720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(7067), + [10723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(8043), + [10726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6489), + [10728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 1, 0, 0), + [10730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8034), + [10732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, 0, 5), + [10734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_declarator, 2, 0, 0), + [10736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_declarator, 2, 0, 0), + [10738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 2, 0, 0), + [10740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6050), + [10742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4077), + [10744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4244), + [10746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2414), + [10748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2568), + [10750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 4, 0, 136), + [10752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), + [10754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_descriptor, 4, 0, 136), + [10756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2465), + [10758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2640), + [10760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, 1, 41), + [10762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 3, 1, 41), + [10764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2830), + [10766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3039), + [10768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 5, 0, 180), + [10770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 5, 0, 180), + [10772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2463), + [10774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2645), + [10776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_structured_binding_declarator, 3, -1, 0), + [10778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_structured_binding_declarator, 3, -1, 0), + [10780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2224), + [10782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), + [10784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, 0, 38), + [10786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_descriptor, 2, 0, 38), + [10788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3191), + [10790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8204), + [10793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6406), + [10795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6987), + [10797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4249), + [10799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4412), + [10801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, 1, 5), + [10803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 2, 1, 5), + [10805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_reference_declarator, 2, 0, 0), + [10807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_reference_declarator, 2, 0, 0), + [10809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_structured_binding_declarator, 4, -1, 0), + [10811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_structured_binding_declarator, 4, -1, 0), + [10813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, 0, 83), + [10815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_descriptor, 3, 0, 83), + [10817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, 0, 64), + [10819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_descriptor, 3, 0, 64), + [10821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, 0, 5), + [10823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_field_declaration_repeat1, 2, 0, 5), + [10825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [10827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3234), + [10829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3494), + [10831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 4, 1, 87), + [10833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 4, 1, 87), + [10835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 3, 0, 26), + [10837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 3, 0, 26), + [10839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3946), + [10841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), + [10843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4372), + [10845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), + [10847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 3, -10, 0), + [10849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 3, -10, 0), + [10851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), + [10853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2291), + [10855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5500), + [10857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2641), + [10859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2783), + [10861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 23), SHIFT(5498), + [10864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3355), + [10866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5499), + [10868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4929), + [10870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5082), + [10872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 23), SHIFT(5498), + [10875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4380), + [10877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, 0, 123), + [10879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, 0, 123), + [10881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 4, -10, 0), + [10883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 4, -10, 0), + [10885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, 0, 26), + [10887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, 0, 26), + [10889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 2, 1, 24), + [10891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 2, 1, 24), + [10893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_declarator, 2, 1, 0), + [10895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_declarator, 2, 1, 0), + [10897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 2, 1, 5), + [10899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_declarator, 2, 1, 5), + [10901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 3, 1, 41), + [10903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_declarator, 3, 1, 41), + [10905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 5, 1, 178), + [10907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_declarator, 5, 1, 178), + [10909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6812), + [10911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 3, 0, 81), + [10913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6961), + [10915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5834), + [10917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8661), + [10919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3367), + [10921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6466), + [10923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7031), + [10925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6902), + [10927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 4, 1, 87), + [10929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_field_declarator, 4, 1, 87), + [10931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6931), + [10933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 4, 1, 87), + [10935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_declarator, 4, 1, 87), + [10937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 2, 0, 10), + [10939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_field_declarator, 2, 1, 0), + [10941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_field_declarator, 2, 1, 0), + [10943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 23), SHIFT(5508), + [10946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 5, 1, 178), + [10948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_field_declarator, 5, 1, 178), + [10950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 3, 1, 41), + [10952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_field_declarator, 3, 1, 41), + [10954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2393), + [10956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6446), + [10958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6974), + [10960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 2, 1, 5), + [10962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_field_declarator, 2, 1, 5), + [10964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6447), + [10966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6976), + [10968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), + [10970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6407), + [10972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7461), + [10974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7165), + [10976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [10978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7502), + [10980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7178), + [10982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 23), SHIFT(5508), + [10985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [10987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [10989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [10991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7256), + [10993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7107), + [10995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [10997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7257), + [10999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7134), + [11001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6519), + [11003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6473), + [11005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [11007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [11009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7484), + [11011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7171), + [11013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [11015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), + [11017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6477), + [11019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5523), + [11021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [11023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7410), + [11025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7152), + [11027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [11029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7522), + [11031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7187), + [11033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6521), + [11035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5560), + [11037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5561), + [11039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6472), + [11041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5522), + [11043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6495), + [11045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [11047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6492), + [11049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6474), + [11051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, 0, 68), + [11053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [11055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6517), + [11057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6479), + [11059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6482), + [11061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [11063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6486), + [11065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6493), + [11067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6516), + [11069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6512), + [11071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6497), + [11073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6503), + [11075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6488), + [11077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6510), + [11079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [11081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6498), + [11083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [11085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7620), + [11087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5848), + [11089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8651), + [11091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4781), + [11093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7024), + [11095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6396), + [11097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7025), + [11099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 23), SHIFT(5505), + [11102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4712), + [11104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3215), + [11106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6865), + [11108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [11110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), + [11112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), + [11114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), + [11116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), + [11118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [11120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4986), + [11122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4996), + [11124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_field_declarator, 2, 0, 0), + [11126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_field_declarator, 2, 0, 0), + [11128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6876), + [11130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), + [11132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4045), + [11134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, 0, 103), + [11136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [11138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, 0, 103), + [11140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), + [11142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), + [11144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, 0, 0), + [11146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, 0, 0), + [11148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2370), + [11150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), + [11152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [11154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), + [11156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), + [11158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), + [11160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 3, 0, 177), + [11162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), + [11164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3270), + [11166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), + [11168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_field_declarator, 2, 1, 24), + [11170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_field_declarator, 2, 1, 24), + [11172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 3, -10, 0), + [11174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 3, -10, 0), + [11176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, 0, 26), + [11178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, 0, 26), + [11180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 5, 0, 180), + [11182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 5, 0, 180), + [11184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 3, 0, 26), + [11186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 3, 0, 26), + [11188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, 0, 123), + [11190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, 0, 123), + [11192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 4, -10, 0), + [11194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 4, -10, 0), + [11196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_lambda_declarator_repeat1, 2, 0, 0), + [11198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_lambda_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(6662), + [11201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6911), + [11203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7039), + [11205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5750), + [11207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8071), + [11209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6663), + [11211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5922), + [11213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 1, 0, 26), + [11215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_declarators, 1, 0, 26), + [11217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8268), + [11219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7048), + [11221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5753), + [11223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8306), + [11225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6906), + [11227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7169), + [11229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6725), + [11231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6769), + [11233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6737), + [11235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 4, 0, 81), + [11237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 4, 0, 81), + [11239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5511), + [11241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 3, 0, 81), + [11243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 3, 0, 10), + [11245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 3, 0, 10), + [11247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6778), + [11249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6734), + [11251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7113), + [11253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6688), + [11255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6925), + [11257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6814), + [11259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6723), + [11261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7153), + [11263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6745), + [11265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 4, 0, 0), + [11267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7620), + [11270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5733), + [11273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8152), + [11276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7708), + [11279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), + [11281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6807), + [11283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6714), + [11285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7190), + [11287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6721), + [11289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 2, 0, 10), + [11291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6675), + [11293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6770), + [11295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6704), + [11297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7230), + [11299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6726), + [11301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6641), + [11303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 3, 0, 0), + [11305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7160), + [11307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6718), + [11309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6173), + [11311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 23), SHIFT(5505), + [11314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 5, 0, 0), + [11316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6886), + [11318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5510), + [11320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7020), + [11322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7769), + [11324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7378), + [11326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7200), + [11328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6691), + [11330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 6, 0, 0), + [11332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7499), + [11334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6652), + [11336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6813), + [11338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6739), + [11340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6801), + [11342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6742), + [11344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8445), + [11346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2612), + [11348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6687), + [11350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [11352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__scope_resolution, 1, 0, 0), + [11354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__scope_resolution, 1, 0, 0), + [11356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), + [11358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5077), + [11360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), + [11362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5076), + [11364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 1, 0, 0), + [11366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8374), + [11368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), + [11370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5065), + [11372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 5), + [11374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 5), + [11376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), + [11378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5049), + [11380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), + [11382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), + [11384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5084), + [11386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 1, 0, 0), + [11388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8854), + [11390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_specifier, 1, 0, 0), + [11392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), + [11394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5107), + [11396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), + [11398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5059), + [11400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), + [11402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5106), + [11404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), + [11406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), + [11408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), + [11410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), + [11412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5044), + [11414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2663), + [11416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7914), + [11418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7128), + [11420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7565), + [11422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6995), + [11424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8590), + [11426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7651), + [11428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7161), + [11430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7127), + [11432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4032), + [11434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7759), + [11436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), + [11438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7834), + [11440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2767), + [11442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3779), + [11444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7747), + [11446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), + [11448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7884), + [11450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3007), + [11452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7948), + [11454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7202), + [11456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2789), + [11458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7984), + [11460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7373), + [11462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7089), + [11464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8255), + [11466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7147), + [11468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7503), + [11470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8070), + [11472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2588), + [11474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7734), + [11476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7279), + [11478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7191), + [11480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4098), + [11482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7841), + [11484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7199), + [11486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5893), + [11488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7829), + [11490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4799), + [11492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7860), + [11494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7037), + [11496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7038), + [11498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4952), + [11500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2618), + [11502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7900), + [11504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4305), + [11506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7706), + [11508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3513), + [11510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7757), + [11512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7438), + [11514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8930), + [11516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7340), + [11518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8087), + [11520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4591), + [11522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7486), + [11524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7104), + [11526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7166), + [11528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3247), + [11530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7794), + [11532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [11534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6200), + [11536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 4, 0, 59), + [11538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6515), + [11540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 4, 0, 23), + [11542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 3, 0, 23), + [11544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [11546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [11548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), + [11550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [11552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), + [11554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2, 0, 0), SHIFT_REPEAT(6812), + [11557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2, 0, 0), + [11559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2, 0, 0), + [11561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__scope_resolution, 2, 0, 31), + [11563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__scope_resolution, 2, 0, 31), + [11565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [11567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), + [11569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [11571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7918), + [11573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__lambda_capture_identifier, 1, 0, 0), SHIFT(6116), + [11576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [11578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [11580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__scope_resolution, 2, 0, 15), + [11582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__scope_resolution, 2, 0, 15), + [11584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 5, 0, 59), + [11586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6471), + [11588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [11590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3774), + [11592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [11594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6164), + [11596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [11598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), + [11600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast, 3, 0, 60), + [11602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 1, 0, 6), + [11604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 1, 0, 6), + [11606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [11608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [11610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), + [11612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [11614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), + [11616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [11618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [11620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [11622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7620), + [11625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2, 0, 0), + [11627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2, 0, 0), + [11629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [11631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6211), + [11633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6968), + [11635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7289), + [11637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 3, 0, 68), + [11639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7323), + [11641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), + [11643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), + [11645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7606), + [11647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), + [11649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6209), + [11651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6268), + [11653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [11655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2, 0, 0), + [11657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(6968), + [11660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [11662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [11664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8620), + [11666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [11668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, 0, 58), + [11670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6246), + [11672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6247), + [11674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6260), + [11676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6262), + [11678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 1, 0, 0), + [11680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6885), + [11682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 1, 0, 0), + [11684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6265), + [11686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6266), + [11688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6271), + [11690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2, 0, 0), SHIFT_REPEAT(1241), + [11693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2, 0, 0), + [11695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2, 0, 0), SHIFT_REPEAT(8620), + [11698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6273), + [11700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6274), + [11702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6178), + [11704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6275), + [11706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6089), + [11708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6212), + [11710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7319), + [11712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), + [11714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [11716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), + [11718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [11720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [11722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [11724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [11726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [11728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 4, 0, 81), + [11730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 4, 0, 81), + [11732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 4, 0, 0), + [11734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [11736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [11738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [11740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [11742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [11744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [11746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [11748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 5, 0, 133), + [11750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 5, 0, 133), + [11752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 132), + [11754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 132), + [11756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [11758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [11760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), + [11762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [11764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 3, 0, 10), + [11766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 3, 0, 10), + [11768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), + [11770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [11772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [11774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [11776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 81), + [11778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 81), + [11780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [11782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [11784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [11786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [11788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 10), + [11790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 10), + [11792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [11794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), + [11796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), + [11798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 3, 0, 0), + [11800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [11802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [11804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), + [11806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [11808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [11810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [11812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [11814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [11816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [11818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), + [11820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [11822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [11824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [11826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [11828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), + [11830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [11832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [11834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [11836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), + [11838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), + [11840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [11842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), + [11844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [11846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), + [11848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [11850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [11852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [11854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 6, 0, 184), + [11856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 6, 0, 184), + [11858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 82), + [11860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 82), + [11862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5948), + [11864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [11866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter_declaration, 4, 0, 203), + [11868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [11870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [11872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 2, 0, 90), + [11874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_declarators, 2, 0, 90), + [11876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), + [11878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list, 1, 0, 0), + [11880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [11882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [11884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 6), + [11886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8141), + [11888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [11890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [11892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [11894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_qualifier, 1, 0, 0), + [11896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [11898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_name, 2, 0, 0), + [11900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8161), + [11902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_name_repeat1, 2, 0, 0), + [11904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_name_repeat1, 2, 0, 0), SHIFT_REPEAT(8161), + [11907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7720), + [11909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5556), + [11911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5532), + [11913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7701), + [11915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [11917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [11919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [11921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [11923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [11925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 4, 0, 142), + [11927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8510), + [11929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [11931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7317), + [11933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6983), + [11935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), + [11937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7818), + [11939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [11941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [11943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [11945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8003), + [11947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [11949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7598), + [11951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [11953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), + [11955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [11957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [11959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4126), + [11961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_access_specifier, 1, 0, 0), + [11963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_specifier, 1, 0, 0), + [11965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), + [11967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7770), + [11969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [11971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4151), + [11973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter_declaration, 3, 0, 167), + [11975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 121), SHIFT_REPEAT(5922), + [11978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 121), + [11980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 121), + [11982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [11984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [11986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4127), + [11988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [11990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4137), + [11992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5881), + [11994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_name, 1, 0, 0), + [11996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6112), + [11998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6097), + [12000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8029), + [12002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [12004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7993), + [12006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [12008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [12010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7725), + [12012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [12014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, 0, 192), SHIFT_REPEAT(6060), + [12017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, 0, 192), + [12019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_field_declaration_repeat1, 2, 0, 192), + [12021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4414), + [12023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7120), + [12025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [12027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [12029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), + [12031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7044), + [12033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7044), + [12035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, 0, 226), SHIFT_REPEAT(6267), + [12038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, 0, 226), + [12040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3402), + [12042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), + [12044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7124), + [12046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7124), + [12048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7722), + [12050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7910), + [12052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), + [12054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list_no_comma, 1, 0, 0), + [12056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4016), + [12058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7052), + [12060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7052), + [12062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4002), + [12064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [12066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [12068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [12070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [12072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_operator_cast_identifier, 2, 0, 33), + [12074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7405), + [12076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6027), + [12078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 5, 0, 0), + [12080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2719), + [12082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7063), + [12084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7063), + [12086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6805), + [12088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 2, 0, 162), + [12090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4251), + [12092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2687), + [12094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6608), + [12096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6369), + [12098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7069), + [12100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7069), + [12102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3170), + [12104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6374), + [12106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3729), + [12108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), + [12110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7103), + [12112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7103), + [12114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2606), + [12116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7075), + [12118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7075), + [12120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2903), + [12122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2587), + [12124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [12126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3892), + [12128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7079), + [12130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7079), + [12132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), + [12134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7581), + [12136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8606), + [12138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3894), + [12140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), + [12142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2651), + [12144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7082), + [12146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7082), + [12148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2652), + [12150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), + [12152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2476), + [12154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7087), + [12156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7087), + [12158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2477), + [12160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), + [12162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8639), + [12164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7115), + [12166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7115), + [12168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3801), + [12170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7091), + [12172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7091), + [12174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3804), + [12176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4440), + [12178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2406), + [12180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7094), + [12182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7094), + [12184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2407), + [12186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), + [12188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3692), + [12190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7097), + [12192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7097), + [12194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3694), + [12196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), + [12198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7099), + [12200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7099), + [12202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), + [12204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3407), + [12206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7112), + [12208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7112), + [12210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2952), + [12212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), + [12214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__namespace_specifier, 1, 0, 19), + [12216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6972), + [12218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5871), + [12220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7020), + [12222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [12224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8105), + [12226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 94), + [12228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 3, 0, 200), + [12230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4276), + [12232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3426), + [12234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), + [12236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7694), + [12238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7716), + [12240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8357), + [12242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7877), + [12244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7826), + [12246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7262), + [12248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 4, 0, 0), + [12250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6781), + [12252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 2, 0, 162), + [12254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 2, 0, 0), + [12256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(7120), + [12259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [12261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), + [12263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(7124), + [12266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(7124), + [12269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2470), + [12271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7143), + [12273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7143), + [12275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7008), + [12277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [12279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), + [12281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7339), + [12283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [12285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8115), + [12287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [12289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3305), + [12291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7145), + [12293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7145), + [12295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 6, 0, 207), + [12297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [12299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8670), + [12301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3280), + [12303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), + [12305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5751), + [12307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3379), + [12309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [12311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6993), + [12313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7251), + [12315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 3, 0, 0), + [12317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [12319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8559), + [12321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [12323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7892), + [12325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7949), + [12327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), + [12329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 3, 0, 5), + [12331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_field_declaration_repeat1, 3, 0, 5), + [12333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 3, 0, 209), + [12335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_field_declaration_repeat1, 3, 0, 209), + [12337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [12339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [12341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [12343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8222), + [12345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3830), + [12347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785), + [12349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [12351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [12353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7858), + [12355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7709), + [12357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8008), + [12359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8017), + [12361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2829), + [12363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7185), + [12365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7185), + [12367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [12369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8372), + [12371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, 0, 214), SHIFT_REPEAT(6805), + [12374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, 0, 214), + [12376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [12378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 3, 0, 200), + [12380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4708), + [12382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2852), + [12384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6267), + [12386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 2, 0, 215), + [12388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [12390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [12392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [12394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), + [12396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6574), + [12398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), + [12400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [12402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [12404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7028), + [12406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2426), + [12408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7217), + [12410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7217), + [12412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7248), + [12414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_declarator, 1, 0, 0), + [12416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), + [12418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8785), + [12420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7815), + [12422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7971), + [12424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), + [12426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6579), + [12428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), + [12430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3810), + [12432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2410), + [12434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3786), + [12436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [12438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), + [12440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), + [12442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), + [12444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3800), + [12446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), + [12448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list, 2, 0, 0), + [12450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7397), + [12452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 2, 0, 0), + [12454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [12456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, 0, 214), SHIFT_REPEAT(6781), + [12459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, 0, 214), + [12461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list_no_comma, 2, 0, 0), + [12463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 3, 0, 222), + [12465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6557), + [12467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [12469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), + [12471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7903), + [12473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7106), + [12475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), + [12477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7853), + [12479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), + [12481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_declarator, 2, 0, 0), + [12483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), + [12485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6071), + [12487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [12489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_reference_declarator, 2, 0, 0), + [12491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6511), + [12493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [12495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), + [12497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6660), + [12499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8060), + [12501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8065), + [12503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8066), + [12505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8459), + [12507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8478), + [12509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8480), + [12511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1020), + [12514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1695), + [12517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_parameter_list_repeat1, 2, 0, 0), + [12519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(7460), + [12522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2, 0, 0), + [12524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), + [12526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [12528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [12530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7789), + [12532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 3, 0, 0), + [12534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [12536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), + [12538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [12540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3658), + [12542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), + [12544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), + [12546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7460), + [12548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), + [12550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), + [12552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), + [12554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6646), + [12556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_structured_binding_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(8400), + [12559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_structured_binding_declarator_repeat1, 2, 0, 0), + [12561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [12563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6078), + [12565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6614), + [12567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_lambda_capture_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(6078), + [12570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_lambda_capture_specifier_repeat1, 2, 0, 0), + [12572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7938), + [12574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 2, 0, 0), + [12576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), + [12578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), + [12580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7779), + [12582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 2, 0, 0), + [12584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4878), + [12586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [12588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [12590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [12592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4228), + [12594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [12596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), + [12598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8018), + [12600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [12602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [12604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [12606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), + [12608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_designator, 2, 0, 98), + [12610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7870), + [12612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(6027), + [12615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [12617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7766), + [12619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), + [12621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [12623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [12625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6964), + [12627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8948), + [12629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [12631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4201), + [12633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [12635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [12637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), + [12639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4865), + [12641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4866), + [12643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [12645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [12647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [12649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [12651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [12653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [12655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [12657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), + [12659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), + [12661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requires_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1791), + [12664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_requires_parameter_list_repeat1, 2, 0, 0), + [12666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [12668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7111), + [12670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), + [12672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [12674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5608), + [12676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4863), + [12678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4868), + [12680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [12682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3835), + [12685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2, 0, 0), + [12687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [12689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4901), + [12691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4844), + [12693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4875), + [12695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4883), + [12697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_throw_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(3811), + [12700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_throw_specifier_repeat1, 2, 0, 0), + [12702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 5, 0, 23), + [12704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), + [12706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6116), + [12708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [12710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [12712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1729), + [12715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), + [12717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [12719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7771), + [12721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 2, 0, 103), + [12723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 4, 0, 221), + [12725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), + [12727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, 0, 215), + [12729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), + [12731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), + [12733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [12735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [12737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [12739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [12741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [12743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), + [12745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [12747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6609), + [12749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_range_designator, 5, 0, 208), + [12751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3922), + [12753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5987), + [12755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [12757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [12759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6615), + [12761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6616), + [12763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [12765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [12767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6462), + [12770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), + [12772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6617), + [12774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [12776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7809), + [12778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [12780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8823), + [12782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [12784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3929), + [12786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 6, 0, 0), + [12788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7801), + [12790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7142), + [12792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7882), + [12794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7960), + [12796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 4, 0, 0), + [12798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7640), + [12800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subscript_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1112), + [12803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1056), + [12806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [12808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2, 3, 0), + [12810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [12812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [12814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [12816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8450), + [12818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8451), + [12820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8453), + [12822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 2, 0, 70), + [12824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_declaration, 3, 0, 152), + [12826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [12828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), + [12830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5583), + [12832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6043), + [12834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [12836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [12838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [12840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), + [12842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5670), + [12844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), + [12846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3911), + [12848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [12850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), + [12852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), + [12854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), + [12856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), + [12858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), + [12860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [12862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [12864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [12866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6624), + [12868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [12870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8016), + [12872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8024), + [12874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), + [12876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), + [12878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), + [12880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), + [12882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5879), + [12884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [12886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(448), + [12889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2, 0, 0), + [12891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), + [12893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), + [12895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), + [12897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), + [12899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7845), + [12901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), + [12903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7102), + [12905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [12907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [12909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [12911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [12913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8128), + [12915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8131), + [12917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8132), + [12919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6587), + [12921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), + [12923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [12925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__namespace_specifier, 2, 0, 61), + [12927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [12929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [12931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), + [12933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910), + [12935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [12937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7919), + [12939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), + [12941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), + [12943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3852), + [12945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), + [12947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), + [12949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [12951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7144), + [12953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [12955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [12957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8077), + [12959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8079), + [12961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8080), + [12963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), + [12965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5866), + [12967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5810), + [12970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [12972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7901), + [12974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6462), + [12976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3, 0, 0), + [12978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3917), + [12980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7967), + [12982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [12984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [12986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7184), + [12988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [12990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), + [12992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2, 0, 0), + [12994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8492), + [12996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8493), + [12998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8494), + [13000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [13002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), + [13004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8671), + [13006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 3, 0, 227), + [13008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, 0, 162), + [13010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6035), + [13012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), + [13014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7010), + [13016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [13018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7880), + [13020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), + [13022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), + [13024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), + [13026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7216), + [13028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), + [13030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), + [13032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [13034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), + [13036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7889), + [13038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8887), + [13040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8890), + [13042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8892), + [13044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), + [13046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [13048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [13050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), + [13052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, 0, 229), SHIFT_REPEAT(8671), + [13055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, 0, 229), + [13057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [13059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7066), + [13061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_designator, 3, 0, 0), + [13063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7043), + [13065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), + [13067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [13069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [13071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [13073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7036), + [13075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [13077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), + [13079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [13081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6138), + [13083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), + [13085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7062), + [13087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), + [13089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7068), + [13091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7074), + [13093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [13095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), + [13097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), + [13099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7401), + [13101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), + [13103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [13105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6565), + [13107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 6, 0, 59), + [13109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), + [13111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), + [13113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [13115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), + [13117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), + [13119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7905), + [13121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), + [13123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), + [13125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [13127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4887), + [13129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [13131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7632), + [13133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7636), + [13135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [13137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [13139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [13141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7439), + [13143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7823), + [13145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [13147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), + [13149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), + [13151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 7, 0, 230), + [13153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7275), + [13155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7277), + [13157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [13159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8023), + [13161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 5, 0, 0), + [13163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7291), + [13165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7294), + [13167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 7, 0, 0), + [13169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7305), + [13171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), + [13173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), + [13175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [13177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_namespace_specifier, 2, 0, 0), + [13179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7000), + [13181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8230), + [13183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7902), + [13185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_type_parameter_declaration, 2, 0, 0), + [13187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), + [13189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), + [13191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [13193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), + [13195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), + [13197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), + [13199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), + [13201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [13203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter_declaration, 2, 0, 68), + [13205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), + [13207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), + [13209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), + [13211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), + [13213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [13215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), + [13217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), + [13219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 7, 0, 230), + [13221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7021), + [13223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), + [13225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), + [13227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), + [13229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4442), + [13231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4443), + [13233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4444), + [13235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4445), + [13237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [13239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [13241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_namespace_specifier, 3, 0, 0), + [13243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), + [13245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [13247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), + [13249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [13251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), + [13253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), + [13255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), + [13257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), + [13259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6935), + [13261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), + [13263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), + [13265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7863), + [13267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), + [13269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [13271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [13273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), + [13275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [13277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6480), + [13279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), + [13281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), + [13283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8546), + [13285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), + [13287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 4, 0, 221), + [13289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), + [13291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [13293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675), + [13295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, 0, 162), + [13297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), + [13299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [13301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), + [13303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [13305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [13307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), + [13309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [13311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [13313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [13315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [13317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 2, 0, 223), + [13319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6919), + [13321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [13323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, 0, 121), SHIFT_REPEAT(4702), + [13326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, 0, 121), + [13328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), + [13330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4267), + [13332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), + [13334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2, 0, 0), SHIFT_REPEAT(8016), + [13337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2, 0, 0), + [13339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [13341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [13343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [13345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7822), + [13347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [13349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8162), + [13351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6937), + [13353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), + [13355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [13357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [13359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 4, 0, 206), + [13361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7797), + [13363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), + [13365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4048), + [13367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 4, 0, 94), + [13369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7987), + [13371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [13373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [13375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8350), + [13377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7848), + [13379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), + [13381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8122), + [13383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7748), + [13385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2, 2, 0), + [13387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6065), + [13389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, 0, 223), + [13391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [13393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 103), + [13395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_partition, 2, 0, 0), + [13397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 0), + [13399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8007), + [13401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [13403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8089), + [13405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [13407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 2, 0, 0), + [13409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 2, 0, 0), + [13411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), + [13413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), + [13415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7777), + [13417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7912), + [13419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [13421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8555), + [13423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7830), + [13425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5755), + [13427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8696), + [13429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 6), + [13431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [13433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7895), + [13435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [13437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8277), + [13439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8826), + [13441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8821), + [13443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5904), + [13445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8655), + [13447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [13449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8543), + [13451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 4, 0, 0), + [13453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 4, 0, 0), + [13455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7751), + [13457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4664), + [13459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7807), + [13461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_type_parameter_declaration, 3, 0, 166), + [13463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7681), + [13465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 1, 0, 0), + [13467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_pack_expansion, 2, 0, 28), + [13469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [13471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8506), + [13473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7724), + [13475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_parameter_pack_expansion, 2, 0, 28), + [13477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [13479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8110), + [13481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 7, 0, 207), + [13483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 5, 0, 142), + [13485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7850), + [13487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), + [13489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [13491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_template_parameter_declaration, 3, 0, 59), + [13493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [13495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8177), + [13497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [13499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8628), + [13501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [13503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8227), + [13505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), + [13507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [13509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8205), + [13511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7952), + [13513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [13515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [13517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8473), + [13519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8935), + [13521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [13523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8962), + [13525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7871), + [13527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 6, 0, 0), + [13529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 3, 0, 0), + [13531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 3, 0, 0), + [13533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5008), + [13535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8659), + [13537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8938), + [13539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8685), + [13541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8941), + [13543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8705), + [13545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8944), + [13547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8724), + [13549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8947), + [13551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8741), + [13553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8949), + [13555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8751), + [13557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8950), + [13559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8760), + [13561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8951), + [13563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8766), + [13565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8952), + [13567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8769), + [13569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8953), + [13571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8772), + [13573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8954), + [13575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8774), + [13577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8955), + [13579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8776), + [13581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8956), + [13583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8778), + [13585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8957), + [13587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8780), + [13589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8958), + [13591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8782), + [13593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8959), + [13595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [13597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), + [13599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), + [13601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), + [13603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8232), + [13605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), + [13607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [13609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), + [13611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [13613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [13615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [13617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [13619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8075), + [13621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8090), + [13623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6560), + [13625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [13627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [13629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [13631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [13633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [13635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [13637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8061), + [13639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [13641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), + [13643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4846), + [13645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), + [13647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4904), + [13649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8318), + [13651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4068), + [13653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), + [13655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), + [13657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [13659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [13661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [13663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [13665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8507), + [13667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), + [13669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [13671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [13673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [13675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), + [13677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4178), + [13679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4144), + [13681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8113), + [13683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [13685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [13687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3961), + [13689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7078), + [13691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [13693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), + [13695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), + [13697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [13699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), + [13701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8224), + [13703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), + [13705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4861), + [13707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [13709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), + [13711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8456), + [13713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [13715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), + [13717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4295), + [13719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [13721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), + [13723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4884), + [13725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), + [13727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6952), + [13729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8666), + [13731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7109), + [13733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4296), + [13735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302), + [13737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [13739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8482), + [13741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [13743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), + [13745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [13747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), + [13749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6559), + [13751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [13753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), + [13755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8146), + [13757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), + [13759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), + [13761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7196), + [13763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [13765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 5, 0, 184), + [13767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), + [13769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [13771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [13773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8563), + [13775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), + [13777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [13779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), + [13781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [13783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [13785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8624), + [13787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [13789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [13791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3942), + [13793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), + [13795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8891), + [13797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), + [13799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [13801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8091), + [13803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4065), + [13805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [13807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [13809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8121), + [13811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8123), + [13813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), + [13815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [13817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3879), + [13819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), + [13821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [13823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), + [13825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7164), + [13827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4369), + [13829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [13831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), + [13833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [13835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7138), + [13837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), + [13839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5935), + [13841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), + [13843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), + [13845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8518), + [13847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [13849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), + [13851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [13853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), + [13855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [13857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [13859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [13861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), + [13863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unary_right_fold, 3, 0, 55), + [13865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), + [13867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), + [13869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), + [13871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8082), + [13873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), + [13875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [13877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [13879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), + [13881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), + [13883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [13885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8117), + [13887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8165), + [13889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), + [13891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8137), + [13893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [13895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), + [13897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [13899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), + [13901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [13903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8181), + [13905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 5, 0, 0), + [13907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [13909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [13911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8192), + [13913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8195), + [13915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 4, 0, 10), + [13917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), + [13919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [13921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [13923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [13925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3984), + [13927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [13929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), + [13931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7176), + [13933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [13935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), + [13937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), + [13939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 5, 0, 184), + [13941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [13943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), + [13945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), + [13947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3666), + [13949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), + [13951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [13953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [13955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), + [13957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, 0, 132), + [13959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), + [13961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [13963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), + [13965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [13967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), + [13969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8496), + [13971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [13973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [13975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [13977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6576), + [13979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8053), + [13981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8532), + [13983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8554), + [13985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [13987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), + [13989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8541), + [13991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8092), + [13993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6912), + [13995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), + [13997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), + [13999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8314), + [14001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 4, 0, 133), + [14003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), + [14005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8509), + [14007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8562), + [14009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [14011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), + [14013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [14015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), + [14017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8970), + [14019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8571), + [14021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [14023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7207), + [14025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [14027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [14029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), + [14031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8833), + [14033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6893), + [14035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [14037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [14039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [14041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [14043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [14045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [14047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8900), + [14049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6024), + [14051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [14053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6025), + [14055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6026), + [14057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [14059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), + [14061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [14063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8275), + [14065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), + [14067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), + [14069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), + [14071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), + [14073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), + [14075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3951), + [14077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), + [14079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8384), + [14081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [14083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8656), + [14085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8549), + [14087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8650), + [14089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), + [14091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), + [14093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [14095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [14097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), + [14099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), + [14101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), + [14103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), + [14105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 5, 0, 132), + [14107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [14109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3136), + [14111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8879), + [14113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5676), + [14115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), + [14117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8160), + [14119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), + [14121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [14123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8235), + [14125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), + [14127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5678), + [14129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), + [14131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5679), + [14133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8020), + [14135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8759), + [14137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8570), + [14139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7162), + [14141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8458), + [14143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [14145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [14147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8298), + [14149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [14151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8114), + [14153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8253), + [14155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8316), + [14157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6951), + [14159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [14161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8612), + [14163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8657), + [14165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), + [14167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8960), + [14169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8056), + [14171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8111), + [14173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8120), + [14175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8182), + [14177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8184), + [14179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8241), + [14181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8242), + [14183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8317), + [14185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8322), + [14187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8366), + [14189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8367), + [14191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 5, 0, 184), + [14193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [14195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7957), + [14197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8564), + [14199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [14201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [14203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 5, 0, 81), + [14205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3763), + [14207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8485), + [14209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [14211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [14213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [14215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [14217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [14219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8328), + [14221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [14223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6353), + [14225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [14227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [14229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), + [14231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8014), + [14233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 6, 0, 23), + [14235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8813), + [14237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [14239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [14241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), + [14243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [14245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8835), + [14247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [14249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), + [14251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [14253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8598), + [14255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [14257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [14259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), + [14261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [14263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 6, 0, 184), + [14265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [14267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [14269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7122), + [14271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [14273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8371), + [14275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [14277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [14279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 3, 0, 82), + [14281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8471), + [14283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 4, 0, 132), + [14285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [14287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 4, 0, 132), + [14289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 3, 0, 82), + [14291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), + [14293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), + [14295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [14297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [14299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8903), + [14301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7136), + [14303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8638), + [14305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), + [14307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8297), + [14309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 4, 0, 133), + [14311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [14313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [14315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4129), + [14317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 4, 0, 133), + [14319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [14321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [14323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [14325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), + [14327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [14329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), + [14331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8513), + [14333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [14335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [14337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [14339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [14341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [14343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), + [14345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [14347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5748), + [14349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_parameter_list, 4, 0, 0), + [14351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), + [14353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [14355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4080), + [14357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), + [14359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7150), + [14361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 5, 0, 133), + [14363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [14365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [14367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4152), + [14369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [14371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [14373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [14375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), + [14377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4858), + [14379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8585), + [14381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7130), + [14383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [14385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6343), + [14387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [14389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7300), + [14391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [14393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8739), + [14395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7310), + [14397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [14399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [14401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [14403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [14405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), + [14407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), + [14409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [14411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [14413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7466), + [14415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [14417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [14419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [14421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4067), + [14423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [14425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [14427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, 0, 132), + [14429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [14431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [14433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), + [14435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [14437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [14439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8469), + [14441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [14443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), + [14445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), + [14447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 4, 0, 133), + [14449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [14451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_based_modifier, 2, 0, 0), + [14453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [14455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8667), + [14457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7307), + [14459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), + [14461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), + [14463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), + [14465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [14467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8124), + [14469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), + [14471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [14473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [14475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [14477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [14479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [14481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [14483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [14485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8718), + [14487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8799), + [14489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7798), + [14491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [14493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [14495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), + [14497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [14499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [14501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [14503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [14505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), + [14507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6226), + [14509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7808), + [14511] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [14513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8866), + [14515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8212), + [14517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6953), + [14519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), + [14521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [14523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8882), + [14525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4066), + [14527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6248), + [14529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 7, 0, 59), + [14531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [14533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8058), + [14535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6981), + [14537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [14539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8069), + [14541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [14543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [14545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7764), + [14547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7843), + [14549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [14551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), + [14553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), + [14555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [14557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [14559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7851), + [14561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), + [14563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8169), + [14565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), + [14567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [14569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [14571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8175), + [14573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8188), + [14575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [14577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4995), + [14579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8194), + [14581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [14583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7865), + [14585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [14587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), + [14589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8544), + [14591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [14593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [14595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [14597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7869), + [14599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8245), + [14601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5007), + [14603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), + [14605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [14607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8250), + [14609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [14611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8261), + [14613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8688), + [14615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [14617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8267), + [14619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [14621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7888), + [14623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [14625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), + [14627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), + [14629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [14631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), + [14633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [14635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8308), + [14637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [14639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [14641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [14643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8313), + [14645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [14647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8324), + [14649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [14651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [14653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8330), + [14655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [14657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [14659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7898), + [14661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [14663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [14665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [14667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6894), + [14669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8247), + [14671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8797), + [14673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [14675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8362), + [14677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), + [14679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [14681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8376), + [14683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [14685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7917), + [14687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [14689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [14691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [14693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8392), + [14695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [14697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [14699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8395), + [14701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [14703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7922), + [14705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [14707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [14709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8702), + [14711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8408), + [14713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [14715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8410), + [14717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7925), + [14719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [14721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [14723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8416), + [14725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8417), + [14727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [14729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8420), + [14731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8421), + [14733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [14735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8424), + [14737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8425), + [14739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8426), + [14741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8427), + [14743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8428), + [14745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8429), + [14747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8430), + [14749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8431), + [14751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8432), + [14753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8433), + [14755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8434), + [14757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8435), + [14759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [14761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [14763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [14765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [14767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8472), + [14769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [14771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8736), + [14773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [14775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), + [14777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), + [14779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8385), + [14781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), + [14783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8816), + [14785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [14787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), + [14789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), + [14791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), + [14793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8455), + [14795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7197), + [14797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8511), + [14799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [14801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [14803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), + [14805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [14807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8278), + [14809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [14811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), + [14813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), + [14815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [14817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), + [14819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [14821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7972), + [14823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8575), + [14825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_parameter_list, 3, 0, 0), + [14827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), + [14829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8640), + [14831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [14833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [14835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [14837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8552), + [14839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [14841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [14843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [14845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4179), + [14847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 3, 0, 82), + [14849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8315), + [14851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4821), + [14853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [14855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6079), + [14857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [14859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [14861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [14863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), + [14865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8675), + [14867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [14869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [14871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8658), + [14873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [14875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 3, 0, 82), + [14877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7211), + [14879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8668), + [14881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8682), + [14883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7355), + [14885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8796), + [14887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [14889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [14891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8684), + [14893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [14895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7215), + [14897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8690), + [14899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 4, 0, 82), + [14901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [14903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [14905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8704), + [14907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), + [14909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7219), + [14911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8710), + [14913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8223), + [14916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8855), + [14918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [14920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8723), + [14922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), + [14924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [14926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7222), + [14928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8729), + [14930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [14932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [14934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8740), + [14936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8229), + [14938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7224), + [14940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8745), + [14942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), + [14944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7226), + [14946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8754), + [14948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8762), + [14950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8767), + [14952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8770), + [14954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [14956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8773), + [14958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8775), + [14960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_parameter_list, 2, 0, 0), + [14962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8777), + [14964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8779), + [14966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8781), + [14968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8783), + [14970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3828), + [14972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8805), + [14974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 5, 0, 184), + [14976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3836), + [14978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8878), + [14980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), + [14982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8889), + [14984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7927), + [14986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), + [14988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8898), + [14990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [14992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), + [14994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8906), + [14996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8139), + [14998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8912), + [15000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8915), + [15002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8917), + [15004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8919), + [15006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8921), + [15008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8923), + [15010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8925), + [15012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8927), + [15014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8929), + [15016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8931), + [15018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8933), + [15020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), + [15022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [15024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), + [15026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3930), + [15028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [15030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [15032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [15034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [15036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [15038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), }; enum ts_external_scanner_symbol_identifiers { diff --git a/src/tree_sitter/array.h b/src/tree_sitter/array.h index 15a3b23..a17a574 100644 --- a/src/tree_sitter/array.h +++ b/src/tree_sitter/array.h @@ -14,6 +14,7 @@ extern "C" { #include #ifdef _MSC_VER +#pragma warning(push) #pragma warning(disable : 4101) #elif defined(__GNUC__) || defined(__clang__) #pragma GCC diagnostic push @@ -278,7 +279,7 @@ static inline void _array__splice(Array *self, size_t element_size, #define _compare_int(a, b) ((int)*(a) - (int)(b)) #ifdef _MSC_VER -#pragma warning(default : 4101) +#pragma warning(pop) #elif defined(__GNUC__) || defined(__clang__) #pragma GCC diagnostic pop #endif diff --git a/test/corpus/microsoft.txt b/test/corpus/microsoft.txt index 7698f41..1d52ad7 100644 --- a/test/corpus/microsoft.txt +++ b/test/corpus/microsoft.txt @@ -12,6 +12,7 @@ union __declspec(noinline) u2 { class __declspec(uuid) u2 { }; +int __cdecl f2(); --- (translation_unit @@ -29,4 +30,10 @@ class __declspec(uuid) u2 { (ms_declspec_modifier (identifier)) name: (type_identifier) - body: (field_declaration_list))) + body: (field_declaration_list)) + (declaration + type: (primitive_type) + declarator: (ms_call_modifier) + declarator: (function_declarator + declarator: (identifier) + parameters: (parameter_list))))